diff --git a/doc/information.rst b/doc/information.rst index ec4cef3d..86821505 100644 --- a/doc/information.rst +++ b/doc/information.rst @@ -77,9 +77,9 @@ HDF5 compression filters and compression libraries sources were obtained from: * `SZ plugin `_ (commit `f466775 `_) using `SZ `_, ZLib and ZStd. -* `H5Z-SPERR plugin `_ (v0.2.3) using `SPERR `_ (v0.8.4). -* `SZ3 plugin `_ - (commit `4bbe9df7e4bcb `_) +* `H5Z-SPERR plugin `_ (v0.2.3) + using `SPERR `_ (v0.8.4). +* `SZ3 plugin `_ (v3.3.0) using `SZ3 `_ and ZStd. * `HDF5-ZFP plugin `_ (v1.1.1) using `zfp `_ (v1.0.1). diff --git a/lib/SZ3/.clang-format b/lib/SZ3/.clang-format new file mode 100644 index 00000000..a5c47981 --- /dev/null +++ b/lib/SZ3/.clang-format @@ -0,0 +1,164 @@ +--- +BasedOnStyle: Google +AccessModifierOffset: -1 +AlignAfterOpenBracket: Align +AlignConsecutiveAssignments: false +AlignConsecutiveDeclarations: false +AlignConsecutiveMacros: false +AlignEscapedNewlines: Left +AlignOperands: true +AlignTrailingComments: true +AllowAllArgumentsOnNextLine: true +AllowAllConstructorInitializersOnNextLine: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: Never +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: All +AllowShortIfStatementsOnASingleLine: WithoutElse +AllowShortLambdasOnASingleLine: All +AllowShortLoopsOnASingleLine: true +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: true +AlwaysBreakTemplateDeclarations: Yes +BinPackArguments: true +BinPackParameters: true +BraceWrapping: + AfterCaseLabel: false + AfterClass: false + AfterControlStatement: false + AfterEnum: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + AfterExternBlock: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true +BreakAfterJavaFieldAnnotations: false +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Attach +BreakBeforeTernaryOperators: true +BreakConstructorInitializers: BeforeColon +BreakInheritanceList: BeforeColon +BreakStringLiterals: true +ColumnLimit: 120 +CommentPragmas: "^ IWYU pragma:" +CompactNamespaces: false +ConstructorInitializerAllOnOneLineOrOnePerLine: true +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DeriveLineEnding: true +DerivePointerAlignment: true +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +FixNamespaceComments: true +ForEachMacros: + - foreach + - Q_FOREACH + - BOOST_FOREACH +IncludeBlocks: Regroup +IncludeCategories: + - Regex: ^ + Priority: 2 + SortPriority: 0 + - Regex: ^<.*\.h> + Priority: 1 + SortPriority: 0 + - Regex: ^<.* + Priority: 2 + SortPriority: 0 + - Regex: .* + Priority: 3 + SortPriority: 0 +IncludeIsMainRegex: ([-_](test|unittest))?$ +IncludeIsMainSourceRegex: "" +IndentCaseLabels: true +IndentGotoLabels: true +IndentPPDirectives: None +IndentWidth: 4 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: false +Language: Cpp +MacroBlockBegin: "" +MacroBlockEnd: "" +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +ObjCBinPackProtocolList: Never +ObjCBlockIndentWidth: 2 +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: true +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 1 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyBreakTemplateDeclaration: 10 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 200 +PointerAlignment: Left +RawStringFormats: + - Language: Cpp + Delimiters: + - cc + - CC + - cpp + - Cpp + - CPP + - c++ + - C++ + CanonicalDelimiter: "" + BasedOnStyle: google + - Language: TextProto + Delimiters: + - pb + - PB + - proto + - PROTO + EnclosingFunctions: + - EqualsProto + - EquivToProto + - PARSE_PARTIAL_TEXT_PROTO + - PARSE_TEST_PROTO + - PARSE_TEXT_PROTO + - ParseTextOrDie + - ParseTextProtoOrDie + CanonicalDelimiter: "" + BasedOnStyle: google +ReflowComments: true +SortIncludes: true +SortUsingDeclarations: true +SpaceAfterCStyleCast: false +SpaceAfterLogicalNot: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeCpp11BracedList: false +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true +SpaceBeforeParens: ControlStatements +SpaceBeforeRangeBasedForLoopColon: true +SpaceBeforeSquareBrackets: false +SpaceInEmptyBlock: false +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 2 +SpacesInAngles: false +SpacesInCStyleCastParentheses: false +SpacesInConditionalStatement: false +SpacesInContainerLiterals: true +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Auto +StatementMacros: + - Q_UNUSED + - QT_REQUIRE_VERSION +TabWidth: 8 +UseCRLF: false +UseTab: Never diff --git a/lib/SZ3/.github/workflows/cmake.yml b/lib/SZ3/.github/workflows/cmake.yml index 8003c662..47c852a3 100644 --- a/lib/SZ3/.github/workflows/cmake.yml +++ b/lib/SZ3/.github/workflows/cmake.yml @@ -1,46 +1,248 @@ -name: CMake +name: Cross-Platform SZ3 Verification -on: [push] +on: [ push ] env: - # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release + TEST_URL: https://raw.githubusercontent.com/szcompressor/SZ3/master/tools/sz3/testfloat_8_8_128.dat + DIMS: "128 8 8" + MODE: ABS + TOL: 1 jobs: - build: - # The CMake configure and build commands are platform agnostic and should work equally - # well on Windows or Mac. You can convert this to a matrix build if you need - # cross-platform coverage. - # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + build-linux: + name: Build & Test (Linux) runs-on: ubuntu-latest + outputs: + digest: ${{ steps.calc.outputs.digest }} + steps: + - uses: actions/checkout@v2 + + - name: Install HDF5 + run: | + sudo apt-get update + sudo apt-get install -y libhdf5-dev + + - name: Create build dir + run: cmake -E make_directory build + + - name: Configure + shell: bash + working-directory: build + run: | + cmake .. \ + -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \ + -DBUILD_TESTING=ON \ + -DBUILD_H5Z_FILTER=ON + + - name: Build + shell: bash + working-directory: build + run: cmake --build . --config ${{ env.BUILD_TYPE }} --parallel 4 + + - name: Run CTest + shell: bash + working-directory: build + run: ctest --output-on-failure -C ${{ env.BUILD_TYPE }} + + - name: Download test data + shell: bash + run: | + curl -L -o input.dat ${{ env.TEST_URL }} + + - name: Run sz3 and check error + shell: bash + working-directory: build + run: | + ./tools/sz3/sz3 -f -i ../input.dat -3 ${{ env.DIMS }} -M ${{ env.MODE }} ${{ env.TOL }} -a \ + -o out.dat -z out.sz3 \ + | tee sz3.log + ERR=$(grep -E 'Max absolute error =' sz3.log \ + | sed -E 's/.*Max absolute error = *([0-9]+(\.[0-9]+)?([eE][+-]?[0-9]+)?).*/\1/') + + [ -n "$ERR" ] || { echo "Could not parse Max absolute error!"; exit 1; } + echo "Parsed error: $ERR" + awk -v err="$ERR" -v tol="${{ env.TOL }}" 'BEGIN { if (err > tol) exit 1; }' + + - name: Compute SHA256 of compressed + id: calc + shell: bash + working-directory: build + run: | + DIGEST=$(sha256sum out.sz3 | awk '{print $1}') + echo "::set-output name=digest::$DIGEST" + + - name: Upload Linux-compressed artifact + uses: actions/upload-artifact@v4 + with: + name: temp-linux-out-sz3 + path: build/out.sz3 + + build-macos: + name: Build & Test (macOS) + runs-on: macos-latest + outputs: + digest: ${{ steps.calc.outputs.digest }} + steps: + - uses: actions/checkout@v2 + + - name: Install HDF5 + run: | + brew update + brew install hdf5 + + - name: Create build dir + run: cmake -E make_directory build + + - name: Configure + shell: bash + working-directory: build + run: | + cmake .. \ + -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \ + -DBUILD_TESTING=ON \ + -DBUILD_H5Z_FILTER=ON + + - name: Build + shell: bash + working-directory: build + run: cmake --build . --config ${{ env.BUILD_TYPE }} --parallel 4 + + - name: Run CTest + shell: bash + working-directory: build + run: ctest --output-on-failure -C ${{ env.BUILD_TYPE }} + + - name: Download test data + shell: bash + run: | + curl -L -o input.dat ${{ env.TEST_URL }} + + - name: Run sz3 and check error + shell: bash + working-directory: build + run: | + ./tools/sz3/sz3 -f -i ../input.dat -3 ${{ env.DIMS }} -M ${{ env.MODE }} ${{ env.TOL }} -a \ + -o out.dat -z out.sz3 \ + | tee sz3.log + ERR=$(grep -E 'Max absolute error =' sz3.log \ + | sed -E 's/.*Max absolute error = *([0-9]+(\.[0-9]+)?([eE][+-]?[0-9]+)?).*/\1/') + [ -n "$ERR" ] || { echo "Could not parse Max absolute error!"; exit 1; } + echo "Parsed error: $ERR" + awk -v err="$ERR" -v tol="${{ env.TOL }}" 'BEGIN { if (err > tol) exit 1; }' + + - name: Compute SHA256 of compressed + id: calc + shell: bash + working-directory: build + run: | + DIGEST=$(shasum -a 256 out.sz3 | awk '{print $1}') + echo "::set-output name=digest::$DIGEST" + + build-windows: + name: Build & Test (Windows) + runs-on: windows-latest + needs: build-linux + steps: + - uses: actions/checkout@v2 + + # - name: Bootstrap vcpkg & install HDF5 + # shell: pwsh + # run: | + # git clone https://github.com/microsoft/vcpkg.git C:\vcpkg + # cd C:\vcpkg + # .\bootstrap-vcpkg.bat + # .\vcpkg.exe install hdf5:x64-windows + # echo "VCPKG_ROOT=C:\vcpkg" | Out-File -FilePath $Env:GITHUB_ENV -Encoding ASCII + + - name: Create build dir + shell: pwsh + run: cmake -E make_directory build + + - name: Configure + shell: pwsh + working-directory: build + run: | + cmake .. ` + -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} + + - name: Build + shell: pwsh + working-directory: build + run: cmake --build . --config ${{ env.BUILD_TYPE }} --parallel 4 + + # - name: Run CTest + # shell: pwsh + # working-directory: build + # run: ctest --output-on-failure -C ${{ env.BUILD_TYPE }} + + - name: Download test data + shell: pwsh + run: Invoke-WebRequest -UseBasicParsing -Uri ${{ env.TEST_URL }} -OutFile input.dat + + - name: Run sz3 and check error + shell: pwsh + working-directory: build + run: | + .\tools\sz3\Release\sz3.exe -f -i ..\input.dat -3 ${{ env.DIMS }} -M ${{ env.MODE }} ${{ env.TOL }} -a ` + -o out.dat -z out.sz3 2>&1 | Tee-Object sz3.log + $match = Select-String -Pattern 'Max absolute error =\s*([0-9]+(\.[0-9]+)?([eE][+-]?[0-9]+)?)' -Path sz3.log + if (-not $match) { + Write-Error "Could not parse Max absolute error!" + exit 1 + } + + $err = [double]$match.Matches[0].Groups[1].Value + Write-Host "Parsed error: $err" + + if ($err -gt [double]${{ env.TOL }}) { + Write-Error "Error $err exceeds tolerance ${{ env.TOL }}" + exit 1 + } + + + - name: Download Linux-compressed artifact + uses: actions/download-artifact@v4 + with: + name: temp-linux-out-sz3 + path: . + + - name: Run sz3 to decompress and check error + shell: pwsh + working-directory: build + run: | + .\tools\sz3\Release\sz3.exe -f -i ..\input.dat -z ..\out.sz3 -a -o out_recon.dat ` + 2>&1 | Tee-Object sz3.log + + $match = Select-String -Pattern 'Max absolute error =\s*([0-9]+(\.[0-9]+)?([eE][+-]?[0-9]+)?)' -Path sz3.log + if (-not $match) { + Write-Error "Could not parse Max absolute error!" + exit 1 + } + + $err = [double]$match.Matches[0].Groups[1].Value + Write-Host "Parsed error: $err" + + if ($err -gt [double]${{ env.TOL }}) { + Write-Error "Error $err exceeds tolerance ${{ env.TOL }}" + exit 1 + } + + compare: + name: Compare Digests (Linux vs macOS) + runs-on: ubuntu-latest + needs: [ build-linux, build-macos ] steps: - - uses: actions/checkout@v2 - - - name: Create Build Environment - # Some projects don't allow in-source building, so create a separate build directory - # We'll use this as our working directory for all subsequent commands - run: cmake -E make_directory ${{github.workspace}}/build - - - name: Configure CMake - # Use a bash shell so we can use the same syntax for environment variable - # access regardless of the host operating system - shell: bash - working-directory: ${{github.workspace}}/build - # Note the current convention is to use the -S and -B options here to specify source - # and build directories, but this is only available with CMake 3.13 and higher. - # The CMake binaries on the Github Actions machines are (as of this writing) 3.12 - run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE - - - name: Build - working-directory: ${{github.workspace}}/build - shell: bash - # Execute the build. You can specify a specific target with "--target " - run: cmake --build . --config $BUILD_TYPE - -# - name: Test -# working-directory: ${{github.workspace}}/build -# shell: bash -# # Execute tests defined by the CMake configuration. -# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail -# run: ctest -C $BUILD_TYPE + - name: Check that Linux and macOS digests match + shell: bash + run: | + L=${{ needs.build-linux.outputs.digest }} + M=${{ needs.build-macos.outputs.digest }} + echo "linux: $L" + echo "macos: $M" + if [[ "$L" != "$M" ]]; then + echo "::error ::Compressed outputs differ between Linux and macOS!" + exit 1 + fi + echo "Linux and macOS compressed outputs are identical." \ No newline at end of file diff --git a/lib/SZ3/CMakeLists.txt b/lib/SZ3/CMakeLists.txt index edd2ee27..636200c3 100644 --- a/lib/SZ3/CMakeLists.txt +++ b/lib/SZ3/CMakeLists.txt @@ -1,26 +1,35 @@ cmake_minimum_required(VERSION 3.18) -project(SZ3 VERSION 3.1.7) +project(SZ3 VERSION 3.3.0) + +#data version defines the version of the compressed data format +#it is not always equal to the program version (e.g., SZ3 v3.1.0 and SZ3 v.3.1.1 may use the same data version of v.3.1.0) +#only update data version if the new version of the program changes compressed data format +set(SZ3_DATA_VERSION 3.3.0) + include(GNUInstallDirs) -include(CTest) + option(BUILD_SHARED_LIBS "build shared libraries by default" ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) if (MSVC) - set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj") -endif() + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj") +else () #-Wunused-parameter -Wsign-compare + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-sign-compare -Wno-unused-parameter -Wsuggest-override -Wold-style-cast -Wcast-qual -Wzero-as-null-pointer-constant -Wextra-semi -Wnon-virtual-dtor -Wcast-align -Wunused-variable") +endif () set(default_build_type "Release") -if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) - message(STATUS "No build type was set. Setting build type to ${default_build_type}.") - set(CMAKE_BUILD_TYPE ${default_build_type} CACHE - STRING "Choose the type to build" FORCE) - set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" - "MinSizeRel" "RelWithDebInfo") -endif() +if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + message(STATUS "No build type was set. Setting build type to ${default_build_type}.") + set(CMAKE_BUILD_TYPE ${default_build_type} CACHE + STRING "Choose the type to build" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" + "MinSizeRel" "RelWithDebInfo") +endif () find_package(PkgConfig) -find_package(OpenMP) -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/SZ3/version.hpp.in ${CMAKE_CURRENT_BINARY_DIR}/include/SZ3/version.hpp) +configure_file( + ${CMAKE_CURRENT_SOURCE_DIR}/include/SZ3/version.hpp.in + ${CMAKE_CURRENT_BINARY_DIR}/include/SZ3/version.hpp) add_library(${PROJECT_NAME} INTERFACE) target_include_directories( @@ -28,80 +37,97 @@ target_include_directories( $ $ $ - ) +) target_compile_features(${PROJECT_NAME} - INTERFACE cxx_std_17 - ) + INTERFACE cxx_std_17 +) -target_link_libraries(${PROJECT_NAME} INTERFACE OpenMP::OpenMP_CXX) +find_package(OpenMP) +if (OpenMP_FOUND) + target_link_libraries(${PROJECT_NAME} INTERFACE OpenMP::OpenMP_CXX) +endif () if (MSVC) option(SZ3_USE_BUNDLED_ZSTD "prefer the bundled version of Zstd" ON) -else() +else () option(SZ3_USE_BUNDLED_ZSTD "prefer the bundled version of Zstd" OFF) -endif() -option(SZ3_DEBUG_TIMINGS "print debug timing information" ON) +endif () + +option(SZ3_DEBUG_TIMINGS "print debug timing information" OFF) +if (SZ3_DEBUG_TIMINGS) + target_compile_definitions(${PROJECT_NAME} INTERFACE SZ3_DEBUG_TIMINGS=1) +else () + target_compile_definitions(${PROJECT_NAME} INTERFACE SZ3_DEBUG_TIMINGS=0) +endif () -if(SZ3_DEBUG_TIMINGS) - target_compile_definitions(${PROJECT_NAME} INTERFACE SZ3_DEBUG_TIMINGS=1) -else() - target_compile_definitions(${PROJECT_NAME} INTERFACE SZ3_DEBUG_TIMINGS=0) -endif() +option(SZ3_USE_SKA_HASH "use ska hashmap instead of std hashmap, default is ska for better speed" ON) +if (SZ3_USE_SKA_HASH) + target_compile_definitions(${PROJECT_NAME} INTERFACE SZ3_USE_SKA_HASH=1) +else () + target_compile_definitions(${PROJECT_NAME} INTERFACE SZ3_USE_SKA_HASH=0) +endif () pkg_search_module(ZSTD IMPORTED_TARGET libzstd) -if(ZSTD_FOUND AND NOT SZ3_USE_BUNDLED_ZSTD) - target_link_libraries(${PROJECT_NAME} INTERFACE PkgConfig::ZSTD) -else() - add_subdirectory(tools/zstd) - target_link_libraries(${PROJECT_NAME} INTERFACE zstd) -endif() +if (ZSTD_FOUND AND NOT SZ3_USE_BUNDLED_ZSTD) + target_link_libraries(${PROJECT_NAME} INTERFACE PkgConfig::ZSTD) +else () + add_subdirectory(tools/zstd) + target_link_libraries(${PROJECT_NAME} INTERFACE zstd) +endif () + +option(BUILD_TESTING "Build tests" OFF) +if (BUILD_TESTING) + enable_testing() + add_subdirectory(tools/test) +endif () find_package(GSL) if (GSL_FOUND) - target_compile_definitions(${PROJECT_NAME} INTERFACE -DENABLE_GSL="TRUE") - target_link_libraries(${PROJECT_NAME} INTERFACE GSL::gsl) -endif() + target_compile_definitions(${PROJECT_NAME} INTERFACE -DSZ3_ENABLE_GSL) + target_link_libraries(${PROJECT_NAME} INTERFACE GSL::gsl) +endif () +#if (BUILD_SZ3_BINARY) add_subdirectory(tools/sz3) add_subdirectory(tools/sz3c) - +#endif () option(BUILD_H5Z_FILTER "build the H5Z-SZ3 filter" OFF) -if(BUILD_H5Z_FILTER) - add_subdirectory(tools/H5Z-SZ3) -endif() +if (BUILD_H5Z_FILTER) + add_subdirectory(tools/H5Z-SZ3) +endif () option(BUILD_MDZ "build MDZ (MMD-SZ)" OFF) -if(BUILD_MDZ) - add_subdirectory(tools/mdz) -endif() +if (BUILD_MDZ) + add_subdirectory(tools/mdz) +endif () -install(TARGETS ${PROJECT_NAME} - EXPORT SZ3Targets - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} - INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} - ) +install(TARGETS ${PROJECT_NAME} + EXPORT SZ3Targets + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} +) install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) install(FILES - "${CMAKE_CURRENT_BINARY_DIR}/include/SZ3/version.hpp" - DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/SZ3/" - ) + "${CMAKE_CURRENT_BINARY_DIR}/include/SZ3/version.hpp" + DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/SZ3/" +) install(EXPORT SZ3Targets NAMESPACE SZ3:: DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/SZ3) include(CMakePackageConfigHelpers) configure_package_config_file(${CMAKE_CURRENT_SOURCE_DIR}/SZ3Config.cmake.in - "${CMAKE_CURRENT_BINARY_DIR}/SZ3Config.cmake" - INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/SZ3 - ) + "${CMAKE_CURRENT_BINARY_DIR}/SZ3Config.cmake" + INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/SZ3 +) write_basic_package_version_file( - "${CMAKE_CURRENT_BINARY_DIR}/SZ3ConfigVersion.cmake" - VERSION ${PROJECT_VERSION} - COMPATIBILITY AnyNewerVersion - ) + "${CMAKE_CURRENT_BINARY_DIR}/SZ3ConfigVersion.cmake" + VERSION ${PROJECT_VERSION} + COMPATIBILITY AnyNewerVersion +) install(FILES - ${CMAKE_CURRENT_BINARY_DIR}/SZ3Config.cmake - ${CMAKE_CURRENT_BINARY_DIR}/SZ3ConfigVersion.cmake - DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/SZ3 - ) + ${CMAKE_CURRENT_BINARY_DIR}/SZ3Config.cmake + ${CMAKE_CURRENT_BINARY_DIR}/SZ3ConfigVersion.cmake + DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/SZ3 +) #export sz3 target for external use export(TARGETS SZ3 FILE SZ3.cmake) diff --git a/lib/SZ3/README.md b/lib/SZ3/README.md index 56a8d1a3..a6b2c8bd 100644 --- a/lib/SZ3/README.md +++ b/lib/SZ3/README.md @@ -1,50 +1,11 @@ SZ3: A Modular Error-bounded Lossy Compression Framework for Scientific Datasets ===== -(C) 2016 by Mathematics and Computer Science (MCS), Argonne National Laboratory. See COPYRIGHT in top-level directory. +(C) 2016 by Mathematics and Computer Science (MCS), Argonne National Laboratory. See COPYRIGHT in the top-level directory. -* Major Authors: Sheng Di, Kai Zhao, Xin Liang +* Major Authors: Sheng Di, Kai Zhao, Xin Liang, Jinyang Liu * Supervisor: Franck Cappello * Other Contributors: Robert Underwood, Sihuan Li, Ali M. Gok -## Citations - -**Kindly note**: If you mention SZ in your paper, the most appropriate citation is including these three references (**TBD22, ICDE21, Bigdata18**), because they cover the design and implementation of the latest version of SZ. - -* SZ3 Framework: Xin Liang, Kai Zhao, Sheng Di, Sihuan Li, Robert Underwood, Ali M Gok, Jiannan Tian, Junjing Deng, Jon C Calhoun, Dingwen Tao, Zizhong Chen, and Franck Cappello. - "[SZ3: A modular framework for composing prediction-based error-bounded lossy compressors](https://ieeexplore.ieee.org/abstract/document/9866018)", - IEEE Transactions on Big Data (TBD 22). - -* SZ3 Algorithm: Kai Zhao, Sheng Di, Maxim Dmitriev, Thierry-Laurent D. Tonellot, Zizhong Chen, and Franck - Cappello. "[Optimizing Error-Bounded Lossy Compression for Scientific Data by Dynamic Spline Interpolation](https://ieeexplore.ieee.org/document/9458791)" - , Proceeding of the 37th IEEE International Conference on Data Engineering (ICDE 21), Chania, Crete, Greece, Apr 19 - - 22, 2021. - -* SZauto: Kai Zhao, Sheng Di, Xin Liang, Sihuan Li, Dingwen Tao, Zizhong Chen, and Franck - Cappello. "[Significantly Improving Lossy Compression for HPC Datasets with Second-Order Prediction and Parameter Optimization](https://dl.acm.org/doi/10.1145/3369583.3392688)" - , Proceedings of the 29th International Symposium on High-Performance Parallel and Distributed Computing (HPDC 20), - Stockholm, Sweden, 2020. (code: https://github.com/szcompressor/SZauto/) - -* SZ 2.0+: Xin Liang, Sheng Di, Dingwen Tao, Zizhong Chen, Franck - Cappello, "[Error-Controlled Lossy Compression Optimized for High Compression Ratios of Scientific Datasets](https://ieeexplore.ieee.org/document/8622520)" - , in IEEE International Conference on Big Data (Bigdata 2018), Seattle, WA, USA, 2018. - -* SZ 1.4.0-1.4.13: Dingwen Tao, Sheng Di, Franck - Cappello. "[Significantly Improving Lossy Compression for Scientific Data Sets Based on Multidimensional Prediction and Error-Controlled Quantization](https://ieeexplore.ieee.org/document/7967203)" - , in IEEE International Parallel and Distributed Processing Symposium (IPDPS 2017), Orlando, Florida, USA, 2017. - -* SZ 0.1-1.0: Sheng Di, Franck - Cappello. "[Fast Error-bounded Lossy HPC Data Compression with SZ](https://ieeexplore.ieee.org/document/7516069)", in - IEEE International Parallel and Distributed Processing Symposium (IPDPS 2016), Chicago, IL, USA, 2016. - -* Point-wise relative error bound mode (i.e., PW_REL): Xin Liang, Sheng Di, Dingwen Tao, Zizhong Chen, Franck - Cappello, "[An Efficient Transformation Scheme for Lossy Data Compression with Point-wise Relative Error Bound](https://ieeexplore.ieee.org/document/8514879)" - , in IEEE International Conference on Clustering Computing (CLUSTER 2018), Belfast, UK, 2018. (Best Paper) - -## 3rd party libraries/tools - -* Zstandard (https://facebook.github.io/zstd/). Zstandard v1.4.5 is included and will be used if libzstd can not be found by - pkg-config. - ## Installation * mkdir build && cd build @@ -54,27 +15,11 @@ SZ3: A Modular Error-bounded Lossy Compression Framework for Scientific Datasets Then, you'll find all the executables in [INSTALL_DIR]/bin and header files in [INSTALL_DIR]/include -## Testing Examples -You can use the executable 'sz3' command to do the compression/decompression. +## How to run -SZ3 simplifies command line arguments in the previous version. If you are a new user, please follow the instructions -given by the executable. - - -## Backward Compatibility with SZ2 -For backward compatibility, most of the SZ2 command line parameters are supported in SZ3. **Exceptions are listed below**. -Scripts without parameters below should work fine by replacing SZ2 with SZ3. - -| Parameter | Explanation | SZ3 roadmap | -|-----------|---------------------------------|------------------------------------------| -| -c | Config file | SZ3 has different config format with SZ2 | -| -p | Print configuration info | Will be supported soon | -| -T | Tucker Tensor Decomposition | Will be supported later | -| -P | Point-wise relative error bound | Will be supported later | - - -## API +#### SZ3 Executable +* You can use the executable 'tools/sz3/sz3' to do the compression/decompression. #### SZ3 C++ API * Located in 'include/SZ3/api/sz.hpp'. @@ -85,44 +30,61 @@ Scripts without parameters below should work fine by replacing SZ2 with SZ3. * Located in 'tools/sz3c/include/sz3c.h' * Compatible with SZ2 API -#### Python API +#### SZ3 Python API * Located in 'tools/pysz/pysz.py' * Test file provided ('tools/pysz/test.py') * Compatible with both SZ3 and SZ2 * Requiring SZ2/3 dynamic library -## H5Z-SZ3 - -Use examples/print_h5repack_args.c to construct the cd_values parameters based on the specified error configuration. - -* Example: +#### H5Z-SZ3 +* Located in 'tools/H5Z-SZ3' +* Please add "-DBUILD_H5Z_FILTER=ON" to enable this function for CMake. +* sz3ToHDF5 and HDF5ToSz3 are provided for testing. -Compression: +#### Third-Party APIs -[sdi@localhost build]$ h5repack -f UD=32024,0,5,0,981668463,0,0,0 -i ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.h5 -o ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.sz3.h5 +* [SZ3 Fortran API](https://github.com/ofmla/sz3_simple_example) (by [Oscar Mojica](https://github.com/ofmla)) +* [SZ3 Rust API](https://github.com/juntyr/sz3-rs) (by [Juniper Tyree](https://github.com/juntyr)) +* [SZ3 Numcodecs API](https://github.com/juntyr/numcodecs-rs/blob/main/codecs/sz3/) (by [Juniper Tyree](https://github.com/juntyr)) -Decompression: +[//]: # (* Use examples/print_h5repack_args.c to construct the cd_values parameters based on the specified error configuration.) +[//]: # () +[//]: # (* Compression example: ) +[//]: # (`h5repack -f UD=32024,0,5,0,981668463,0,0,0 -i ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.h5 -o ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.sz3.h5`) +[//]: # () +[//]: # (* Decompression example:) +[//]: # (`h5repack -f NONE -i ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.sz3.h5 -o ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.sz3.out.h5`) +[//]: # () +[//]: # (* Alternatively, the error bound information can also be given through sz3.config ( when there are no cd_values for h5repack). Example (You need to put sz3.config in the current local directory so that it will read sz3.config to get error bounds):) +[//]: # (`h5repack -f UD=32024,0 -i ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.h5 -o ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.sz3.h5`) -[sdi@localhost build]$ h5repack -f NONE -i ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.sz3.h5 -o ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.sz3.out.h5 +## Citations +[//]: # (**Kindly note**: If you mention SZ3 in your paper, the most appropriate citation is to include these three references (**TBD22, ICDE21, Bigdata18**) because they cover the design and implementation of the latest version of SZ.) +* QOZv2 (the enhanced interpolation-based algorithm): [High-performance Effective Scientific Error-bounded Lossy Compression with Auto-tuned Multi-component Interpolation](https://dl.acm.org/doi/10.1145/3639259). +* SZ3's interpolation-based algorithm: [Optimizing Error-Bounded Lossy Compression for Scientific Data by Dynamic Spline Interpolation](https://ieeexplore.ieee.org/document/9458791). +* The software engineering design of SZ3: [SZ3: A modular framework for composing prediction-based error-bounded lossy compressors](https://ieeexplore.ieee.org/abstract/document/9866018). -Alternatively, the error bound information can also be given through sz3.config (when there are no cd_values for h5repack) - -* Example (You need to put sz3.config in the current local directory so that it will read sz3.config to get error bounds): - -[sdi@localhost build]$ h5repack -f UD=32024,0 -i ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.h5 -o ~/Data/CESM-ATM-tylor/1800x3600/CLDLOW_1_1800_3600.dat.sz3.h5 ## Version history Version New features -* SZ 3.0.0 SZ3 is the C++ version of SZ with modular and composable design. +* SZ 3.0.0 SZ3 is the C++ version of SZ with a modular and composable design. * SZ 3.0.1 Improve the build process. * SZ 3.1.0 The default algorithm is now interpolation+Lorenzo. * SZ 3.1.1 Add OpenMP support. Works for all algorithms. Please enable it using the config file. -* SZ 3.1.2 Support configuration file (INI format). Example can be found in 'tools/sz3/sz3.config'. +* SZ 3.1.2 Support configuration file (INI format). An example can be found in 'tools/sz3/sz3.config'. * SZ 3.1.3 Support more error control mode: PSNR, L2Norm, ABS_AND_REL, ABS_OR_REL. Support INT32 and INT64 datatype. -* SZ 3.1.4 Support running on Windows. Please refer to https://github.com/szcompressor/SZ3/issues/5#issuecomment-1094039224 for instructions. +* SZ 3.1.4 Support running on Windows natively with Visual Studio. Please refer to https://github.com/szcompressor/SZ3/issues/5#issuecomment-1094039224 for details. * SZ 3.1.5 Support HDF5 by H5Z-SZ3. Please add "-DBUILD_H5Z_FILTER=ON" to enable this function for CMake. * SZ 3.1.6 Support C API and Python API. -* SZ 3.1.7 Initial MDZ(https://github.com/szcompressor/SZ3/tree/master/tools/mdz) support. \ No newline at end of file +* SZ 3.1.7 Initial MDZ(https://github.com/szcompressor/SZ3/tree/master/tools/mdz) support. +* SZ 3.1.8 namespace changed from SZ to SZ3. H5Z-SZ3 supports configuration files now. +* SZ 3.2.0 API reconstructed for FZ. H5Z-SZ3 rewrite. Compression version checking. +* SZ 3.3.0 Add key QoZ v1 and v2 features to improve compression speed and data quality. The full QoZ is available from **a separate branch** (https://github.com/szcompressor/SZ3/tree/QoZ). + + +## 3rd party libraries/tools +* [Zstandard](https://facebook.github.io/zstd/) v1.4.5 will be fetched if libzstd can not be found by pkg-config. +* The source code of ska_hash is included in SZ3. \ No newline at end of file diff --git a/lib/SZ3/include/SZ3/api/impl/SZAlgoInterp.hpp b/lib/SZ3/include/SZ3/api/impl/SZAlgoInterp.hpp new file mode 100644 index 00000000..7b97df91 --- /dev/null +++ b/lib/SZ3/include/SZ3/api/impl/SZAlgoInterp.hpp @@ -0,0 +1,272 @@ +#ifndef SZ3_SZALGO_INTERP_HPP +#define SZ3_SZALGO_INTERP_HPP + +#include "SZ3/api/impl/SZAlgoLorenzoReg.hpp" +#include "SZ3/decomposition/BlockwiseDecomposition.hpp" +#include "SZ3/decomposition/InterpolationDecomposition.hpp" +#include "SZ3/lossless/Lossless_zstd.hpp" +#include "SZ3/quantizer/LinearQuantizer.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/Extraction.hpp" +#include "SZ3/utils/QuantOptimizatioin.hpp" +#include "SZ3/utils/Sample.hpp" +#include "SZ3/utils/Statistic.hpp" + +namespace SZ3 { +template +size_t SZ_compress_Interp(Config &conf, T *data, uchar *cmpData, size_t cmpCap) { + assert(N == conf.N); + assert(conf.cmprAlgo == ALGO_INTERP); + calAbsErrorBound(conf, data); + if (conf.interpAnchorStride < 0) { //set default anchor stride + std::array anchor_strides = {4096, 128, 32, 16}; + conf.interpAnchorStride = anchor_strides[N - 1]; + } + + auto sz = make_compressor_sz_generic( + make_decomposition_interpolation(conf, LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)), + HuffmanEncoder(), Lossless_zstd()); + return sz->compress(conf, data, cmpData, cmpCap); +} + +template +void SZ_decompress_Interp(const Config &conf, const uchar *cmpData, size_t cmpSize, T *decData) { + assert(conf.cmprAlgo == ALGO_INTERP); + auto cmpDataPos = cmpData; + auto sz = make_compressor_sz_generic( + make_decomposition_interpolation(conf, LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)), + HuffmanEncoder(), Lossless_zstd()); + sz->decompress(conf, cmpDataPos, cmpSize, decData); +} + +template +double interp_compress_test(const std::vector> sampled_blocks, const Config conf, int block_size, + uchar *cmpData, size_t cmpCap) { //test interp cmp on a set of sampled data blocks and return the compression ratio + auto sz = + make_decomposition_interpolation(conf, LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)); + + std::vector total_quant_bins; + for (int k = 0; k < sampled_blocks.size(); k++) { + auto cur_block = sampled_blocks[k]; + auto quant_bins = sz.compress(conf, cur_block.data()); + total_quant_bins.insert(total_quant_bins.end(), quant_bins.begin(), quant_bins.end()); //merge the quant bins. Lossless them together + } + + auto encoder = HuffmanEncoder(); + auto lossless = Lossless_zstd(); + encoder.preprocess_encode(total_quant_bins, sz.get_out_range().second); + size_t bufferSize = + std::max(1000, 1.2 * (sz.size_est() + encoder.size_est() + sizeof(T) * total_quant_bins.size())); + + auto buffer = static_cast(malloc(bufferSize)); + uchar *buffer_pos = buffer; + sz.save(buffer_pos); + encoder.save(buffer_pos); + + // store the size of quant_inds is necessary as it is not always equal to conf.num + write(total_quant_bins.size(), buffer_pos); + encoder.encode(total_quant_bins, buffer_pos); + encoder.postprocess_encode(); + auto cmpSize = lossless.compress(buffer, buffer_pos - buffer, cmpData, cmpCap); + free(buffer); + auto compression_ratio = conf.num * sampled_blocks.size() * sizeof(T) * 1.0 / cmpSize; + return compression_ratio; +} + +template +double lorenzo_compress_test(const std::vector> sampled_blocks, const Config &conf, uchar *cmpData, + size_t cmpCap) { //test lorenzo cmp on a set of sampled data blocks and return the compression ratio + std::vector total_quant_bins; + // if ((N == 3 && !conf.regression2) || (N == 1 && !conf.regression && !conf.regression2)) { + std::vector>> predictors; + predictors.push_back(std::make_shared>(conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.absErrorBound)); + auto sz = make_decomposition_blockwise(conf, ComposedPredictor(predictors), + LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)); + // auto sz = make_decomposition_lorenzo_regression(conf, LinearQuantizer(conf.absErrorBound, + // conf.quantbinCnt / 2)); + for (int k = 0; k < sampled_blocks.size(); k++) { + auto cur_block = sampled_blocks[k]; + auto quant_bins = sz.compress(conf, cur_block.data()); + total_quant_bins.insert(total_quant_bins.end(), quant_bins.begin(), quant_bins.end()); //merge the quant bins. Lossless them together + } + auto encoder = HuffmanEncoder(); + auto lossless = Lossless_zstd(); + encoder.preprocess_encode(total_quant_bins, conf.quantbinCnt); + size_t bufferSize = std::max(1000, 1.2 * (encoder.size_est() + sizeof(T) * total_quant_bins.size())); + + auto buffer = static_cast(malloc(bufferSize)); + uchar *buffer_pos = buffer; + sz.save(buffer_pos); + encoder.save(buffer_pos); + + // store the size of quant_inds is necessary as it is not always equal to conf.num + write(total_quant_bins.size(), buffer_pos); + encoder.encode(total_quant_bins, buffer_pos); + encoder.postprocess_encode(); + auto cmpSize = lossless.compress(buffer, buffer_pos - buffer, cmpData, cmpCap); + free(buffer); + auto compression_ratio = conf.num * sampled_blocks.size() * sizeof(T) * 1.0 / cmpSize; + return compression_ratio; + // } + // else{ + // return 0.0; + // } +} + +template +size_t SZ_compress_Interp_lorenzo(Config &conf, T *data, uchar *cmpData, size_t cmpCap) { + assert(conf.cmprAlgo == ALGO_INTERP_LORENZO); + + // Timer timer(true); + calAbsErrorBound(conf, data); + + if (conf.interpAnchorStride < 0) { //set default anchor stride + std::array anchor_strides = {4096, 128, 32, 16}; + conf.interpAnchorStride = anchor_strides[N - 1]; + } + + std::array sample_Rates = {0.005, 0.005, 0.005, 0.005}; //default data sample rate. todo: add a config var to control + auto sampleRate = sample_Rates[N - 1]; + std::array sampleBlock_Sizes = {4096, 128, 32, 16}; //default sampled data block rate. Should better be no smaller than the anchor stride. todo: add a config var to control + size_t sampleBlockSize = sampleBlock_Sizes[N - 1]; + size_t shortest_edge = conf.dims[0]; + for (size_t i = 0; i < N; i++) { + shortest_edge = conf.dims[i] < shortest_edge ? conf.dims[i] : shortest_edge; + } + //Automatically adjust sampleblocksize. + while (sampleBlockSize >= shortest_edge) sampleBlockSize /= 2; + while (sampleBlockSize >= 16 && (pow(sampleBlockSize + 1, N) / conf.num) > 1.5 * sampleRate) sampleBlockSize /= 2; + if (sampleBlockSize < 8) sampleBlockSize = 8; + + bool to_tune = pow(sampleBlockSize + 1, N) <= 0.05 * conf.num; // to further revise + if (!to_tune) { // if the sampled data would be too many (currently it is 5% of the input), skip the tuning + conf.cmprAlgo = ALGO_INTERP; + return SZ_compress_Interp(conf, data, cmpData, cmpCap); + } + std::vector> sampled_blocks; + size_t per_block_ele_num = pow(sampleBlockSize + 1, N); + size_t sampling_num; + std::vector> starts; + auto profStride = sampleBlockSize / 4; //larger is faster, smaller is better + profiling_block(data, conf.dims, starts, sampleBlockSize, conf.absErrorBound, profStride); //filter out the non-constant data blocks + size_t num_filtered_blocks = starts.size(); + bool profiling = num_filtered_blocks * per_block_ele_num >= 0.5 * sampleRate * conf.num; // temp. to refine + // bool profiling = false; + sampleBlocks(data, conf.dims, sampleBlockSize, sampled_blocks, sampleRate, profiling, starts); //sample out same data blocks + sampling_num = sampled_blocks.size() * per_block_ele_num; + + if (sampling_num == 0 || sampling_num >= conf.num * 0.2) { + conf.cmprAlgo = ALGO_INTERP; + return SZ_compress_Interp(conf, data, cmpData, cmpCap); + } + double best_lorenzo_ratio = 0, best_interp_ratio = 0, ratio; + size_t bufferCap = conf.num * sizeof(T); + auto buffer = static_cast(malloc(bufferCap)); + Config lorenzo_config = conf; + + { + // tune interp + conf.interpDirection = 0; + conf.interpAlpha = 1.25; + conf.interpBeta = 2.0; + auto testConfig = conf; + std::vector dims(N, sampleBlockSize + 1); + testConfig.setDims(dims.begin(), dims.end()); + for (auto &interp_op : {INTERP_ALGO_LINEAR, INTERP_ALGO_CUBIC}) { + testConfig.interpAlgo = interp_op; + ratio = interp_compress_test(sampled_blocks, testConfig, sampleBlockSize, buffer, bufferCap); + if (ratio > best_interp_ratio) { + best_interp_ratio = ratio; + conf.interpAlgo = interp_op; + } + } + + testConfig.interpAlgo = conf.interpAlgo; + testConfig.interpDirection = factorial(N) - 1; + ratio = interp_compress_test(sampled_blocks, testConfig, sampleBlockSize, buffer, bufferCap); + if (ratio > best_interp_ratio * 1.02) { + best_interp_ratio = ratio; + conf.interpDirection = testConfig.interpDirection; + } + testConfig.interpDirection = conf.interpDirection; + //test more alpha-beta pairs for best compression ratio, + auto alphalist = std::vector{1.0, 1.5, 2.0}; + auto betalist = std::vector{1.0, 2.5, 3.0}; + for (auto i = 0; i < alphalist.size(); i++) { + auto alpha = alphalist[i]; + auto beta = betalist[i]; + testConfig.interpAlpha = alpha; + testConfig.interpBeta = beta; + ratio = interp_compress_test(sampled_blocks, testConfig, sampleBlockSize, buffer, bufferCap); + if (ratio > best_interp_ratio * 1.02) { + best_interp_ratio = ratio; + conf.interpAlpha = alpha; + conf.interpBeta = beta; + } + } + } + { + // only test lorenzo for 1D + if (N == 1 && best_interp_ratio < 50) { + std::vector sample_dims(N, sampleBlockSize + 1); + lorenzo_config.cmprAlgo = ALGO_LORENZO_REG; + lorenzo_config.setDims(sample_dims.begin(), sample_dims.end()); + lorenzo_config.lorenzo = true; + lorenzo_config.lorenzo2 = true; + lorenzo_config.regression = false; + lorenzo_config.regression2 = false; + lorenzo_config.openmp = false; + lorenzo_config.blockSize = 5; + // lorenzo_config.quantbinCnt = 65536 * 2; + best_lorenzo_ratio = lorenzo_compress_test(sampled_blocks, lorenzo_config, buffer, bufferCap); + // delete[]cmprData; + // printf("Lorenzo ratio = %.2f\n", ratio); + } + } + + bool useInterp = + !(best_lorenzo_ratio >= best_interp_ratio * 1.1 && best_lorenzo_ratio < 50 && best_interp_ratio < 50); //1.1 is a fix coefficient. subject to revise + size_t cmpSize = 0; + if (useInterp) { + conf.cmprAlgo = ALGO_INTERP; + cmpSize = SZ_compress_Interp(conf, data, cmpData, cmpCap); + } else { + // no need to tune lorenzo for 3D anymore + // if (N == 3) { + // float pred_freq, mean_freq; + // T mean_guess; + // lorenzo_config.quantbinCnt = optimize_quant_invl_3d( + // data, conf.dims[0], conf.dims[1], conf.dims[2], conf.absErrorBound, pred_freq, mean_freq, + // mean_guess); + // lorenzo_config.pred_dim = 2; + // ratio = + // lorenzo_compress_test(sampled_blocks, lorenzo_config, buffer, bufferCap); + // if (ratio > best_lorenzo_ratio * 1.02) { + // best_lorenzo_ratio = ratio; + // } else { + // lorenzo_config.pred_dim = 3; + // } + // } + + if (conf.relErrorBound < 1.01e-6 && best_lorenzo_ratio > 5 && lorenzo_config.quantbinCnt != 16384) { + auto quant_num = lorenzo_config.quantbinCnt; + lorenzo_config.quantbinCnt = 16384; + ratio = lorenzo_compress_test(sampled_blocks, lorenzo_config, buffer, bufferCap); + if (ratio > best_lorenzo_ratio * 1.02) { + best_lorenzo_ratio = ratio; + } else { + lorenzo_config.quantbinCnt = quant_num; + } + } + lorenzo_config.setDims(conf.dims.begin(), conf.dims.end()); + conf = lorenzo_config; + // double tuning_time = timer.stop(); + cmpSize = SZ_compress_LorenzoReg(conf, data, cmpData, cmpCap); + } + + free(buffer); + return cmpSize; +} +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/api/impl/SZAlgoLorenzoReg.hpp b/lib/SZ3/include/SZ3/api/impl/SZAlgoLorenzoReg.hpp new file mode 100644 index 00000000..52242373 --- /dev/null +++ b/lib/SZ3/include/SZ3/api/impl/SZAlgoLorenzoReg.hpp @@ -0,0 +1,86 @@ +#ifndef SZ3_SZALGO_LORENZO_REG_HPP +#define SZ3_SZALGO_LORENZO_REG_HPP + +#include +#include + +#include "SZ3/compressor/SZGenericCompressor.hpp" +#include "SZ3/decomposition/BlockwiseDecomposition.hpp" +#include "SZ3/def.hpp" +#include "SZ3/lossless/Lossless_zstd.hpp" +#include "SZ3/predictor/ComposedPredictor.hpp" +#include "SZ3/predictor/LorenzoPredictor.hpp" +#include "SZ3/predictor/RegressionPredictor.hpp" +#include "SZ3/quantizer/LinearQuantizer.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/Iterator.hpp" +#include "SZ3/utils/QuantOptimizatioin.hpp" +#include "SZ3/utils/Statistic.hpp" + +namespace SZ3 { +template +std::shared_ptr> make_compressor_lorenzo_regression(const Config &conf, + Quantizer quantizer, + Encoder encoder, + Lossless lossless) { + std::vector>> predictors; + + int methodCnt = (conf.lorenzo + conf.lorenzo2 + conf.regression); + int use_single_predictor = (methodCnt == 1); + if (methodCnt == 0) { + throw std::invalid_argument("All lorenzo and regression methods are disabled."); + } + if (conf.lorenzo) { + if (use_single_predictor) { + return make_compressor_sz_generic( + make_decomposition_blockwise(conf, LorenzoPredictor(conf.absErrorBound), quantizer), + encoder, lossless); + } else { + predictors.push_back(std::make_shared>(conf.absErrorBound)); + } + } + if (conf.lorenzo2) { + if (use_single_predictor) { + return make_compressor_sz_generic( + make_decomposition_blockwise(conf, LorenzoPredictor(conf.absErrorBound), quantizer), + encoder, lossless); + } else { + predictors.push_back(std::make_shared>(conf.absErrorBound)); + } + } + if (conf.regression) { + if (use_single_predictor) { + return make_compressor_sz_generic( + make_decomposition_blockwise(conf, RegressionPredictor(conf.blockSize, conf.absErrorBound), + quantizer), + encoder, lossless); + } else { + predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); + } + } + + return make_compressor_sz_generic( + make_decomposition_blockwise(conf, ComposedPredictor(predictors), quantizer), encoder, lossless); +} + +template +size_t SZ_compress_LorenzoReg(Config &conf, T *data, uchar *cmpData, size_t cmpCap) { + assert(N == conf.N); + assert(conf.cmprAlgo == ALGO_LORENZO_REG); + calAbsErrorBound(conf, data); + + auto quantizer = LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2); + auto sz = make_compressor_lorenzo_regression(conf, quantizer, HuffmanEncoder(), Lossless_zstd()); + return sz->compress(conf, data, cmpData, cmpCap); +} + +template +void SZ_decompress_LorenzoReg(const Config &conf, const uchar *cmpData, size_t cmpSize, T *decData) { + assert(conf.cmprAlgo == ALGO_LORENZO_REG); + auto cmpDataPos = cmpData; + LinearQuantizer quantizer; + auto sz = make_compressor_lorenzo_regression(conf, quantizer, HuffmanEncoder(), Lossless_zstd()); + sz->decompress(conf, cmpDataPos, cmpSize, decData); +} +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/api/impl/SZAlgoNopred.hpp b/lib/SZ3/include/SZ3/api/impl/SZAlgoNopred.hpp new file mode 100644 index 00000000..cb496058 --- /dev/null +++ b/lib/SZ3/include/SZ3/api/impl/SZAlgoNopred.hpp @@ -0,0 +1,36 @@ +#ifndef SZ3_SZALGO_NOPRED_HPP +#define SZ3_SZALGO_NOPRED_HPP + +#include "SZ3/compressor/SZGenericCompressor.hpp" +#include "SZ3/decomposition/NoPredictionDecomposition.hpp" +#include "SZ3/encoder/HuffmanEncoder.hpp" +#include "SZ3/lossless/Lossless_zstd.hpp" +#include "SZ3/quantizer/LinearQuantizer.hpp" +#include "SZ3/utils/Config.hpp" + +namespace SZ3 { +template +size_t SZ_compress_nopred(Config &conf, T *data, uchar *cmpData, size_t cmpCap) { + assert(N == conf.N); + assert(conf.cmprAlgo == ALGO_NOPRED); + calAbsErrorBound(conf, data); + + auto sz = make_compressor_sz_generic( + make_decomposition_noprediction(conf, LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)), + HuffmanEncoder(), Lossless_zstd()); + return sz->compress(conf, data, cmpData, cmpCap); + // return cmpData; +} + +template +void SZ_decompress_nopred(const Config &conf, const uchar *cmpData, size_t cmpSize, T *decData) { + assert(conf.cmprAlgo == ALGO_NOPRED); + auto cmpDataPos = cmpData; + auto sz = make_compressor_sz_generic( + make_decomposition_noprediction(conf, LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)), + HuffmanEncoder(), Lossless_zstd()); + sz->decompress(conf, cmpDataPos, cmpSize, decData); +} + +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/api/impl/SZDispatcher.hpp b/lib/SZ3/include/SZ3/api/impl/SZDispatcher.hpp index 6ff0689b..688d01c1 100644 --- a/lib/SZ3/include/SZ3/api/impl/SZDispatcher.hpp +++ b/lib/SZ3/include/SZ3/api/impl/SZDispatcher.hpp @@ -1,50 +1,94 @@ #ifndef SZ3_IMPL_SZDISPATCHER_HPP #define SZ3_IMPL_SZDISPATCHER_HPP -#include "SZ3/utils/MemoryUtil.hpp" -#include "SZ3/utils/Statistic.hpp" +#include "SZ3/api/impl/SZAlgoInterp.hpp" +#include "SZ3/api/impl/SZAlgoLorenzoReg.hpp" +#include "SZ3/api/impl/SZAlgoNopred.hpp" #include "SZ3/utils/Config.hpp" -#include "SZ3/api/impl/SZInterp.hpp" -#include "SZ3/api/impl/SZLorenzoReg.hpp" -#include - - -template -char *SZ_compress_dispatcher(SZ::Config &conf, T *data, size_t &outSize) { +#include "SZ3/utils/Statistic.hpp" +namespace SZ3 { +template +size_t SZ_compress_dispatcher(Config &conf, const T *data, uchar *cmpData, size_t cmpCap) { assert(N == conf.N); - SZ::calAbsErrorBound(conf, data); + calAbsErrorBound(conf, data); + size_t cmpSize = 0; - char *cmpData; + // if absErrorBound is 0, use lossless only mode if (conf.absErrorBound == 0) { - auto zstd = SZ::Lossless_zstd(); - cmpData = (char *) zstd.compress((SZ::uchar *) data, conf.num * sizeof(T), outSize); - } else if (conf.cmprAlgo == SZ::ALGO_LORENZO_REG) { - cmpData = (char *) SZ_compress_LorenzoReg(conf, data, outSize); - } else if (conf.cmprAlgo == SZ::ALGO_INTERP) { - cmpData = (char *) SZ_compress_Interp(conf, data, outSize); - } else if (conf.cmprAlgo == SZ::ALGO_INTERP_LORENZO) { - cmpData = (char *) SZ_compress_Interp_lorenzo(conf, data, outSize); + conf.cmprAlgo = ALGO_LOSSLESS; } - return cmpData; -} + // do lossy compression + bool isCmpCapSufficient = true; + if (conf.cmprAlgo != ALGO_LOSSLESS) { + try { + std::vector dataCopy(data, data + conf.num); + if (conf.cmprAlgo == ALGO_LORENZO_REG) { + cmpSize = SZ_compress_LorenzoReg(conf, dataCopy.data(), cmpData, cmpCap); + } else if (conf.cmprAlgo == ALGO_INTERP) { + cmpSize = SZ_compress_Interp(conf, dataCopy.data(), cmpData, cmpCap); + } else if (conf.cmprAlgo == ALGO_INTERP_LORENZO) { + cmpSize = SZ_compress_Interp_lorenzo(conf, dataCopy.data(), cmpData, cmpCap); + } else if (conf.cmprAlgo == ALGO_NOPRED) { + cmpSize = SZ_compress_nopred(conf, dataCopy.data(), cmpData, cmpCap); + } else { + throw std::invalid_argument("Unknown compression algorithm"); + } -template -void SZ_decompress_dispatcher(SZ::Config &conf, char *cmpData, size_t cmpSize, T *decData) { - if (conf.absErrorBound == 0) { - auto zstd = SZ::Lossless_zstd(); - auto zstdOut = zstd.decompress((SZ::uchar *) cmpData, cmpSize); - memcpy(decData, zstdOut, conf.num * sizeof(T)); - } else if (conf.cmprAlgo == SZ::ALGO_LORENZO_REG) { + } catch (std::length_error &e) { + if (std::string(e.what()) == SZ3_ERROR_COMP_BUFFER_NOT_LARGE_ENOUGH) { + isCmpCapSufficient = false; + printf("SZ is downgraded to lossless mode.\n"); + } else { + throw; + } + } + } + + // do lossless only compression if 1) cmpr algorithm is lossless or 2) compressed buffer not large enough for lossy + if (conf.cmprAlgo == ALGO_LOSSLESS || !isCmpCapSufficient) { + conf.cmprAlgo = ALGO_LOSSLESS; + auto zstd = Lossless_zstd(); + return zstd.compress(reinterpret_cast(data), conf.num * sizeof(T), cmpData, cmpCap); + } + + // if lossy compression ratio < 3, test if lossless only mode has a better ratio than lossy + if (conf.num * sizeof(T) / 1.0 / cmpSize < 3) { + auto zstd = Lossless_zstd(); + auto zstdCmpCap = ZSTD_compressBound(conf.num * sizeof(T)) + sizeof(size_t); + auto zstdCmpData = static_cast(malloc(zstdCmpCap)); + size_t zstdCmpSize = + zstd.compress(reinterpret_cast(data), conf.num * sizeof(T), zstdCmpData, zstdCmpCap); + if (zstdCmpSize < cmpSize && zstdCmpSize <= cmpCap) { + conf.cmprAlgo = ALGO_LOSSLESS; + memcpy(cmpData, zstdCmpData, zstdCmpSize); + cmpSize = zstdCmpSize; + } + free(zstdCmpData); + } + return cmpSize; +} + +template +void SZ_decompress_dispatcher(Config &conf, const uchar *cmpData, size_t cmpSize, T *decData) { + if (conf.cmprAlgo == ALGO_LOSSLESS) { + auto zstd = Lossless_zstd(); + size_t decDataSize = 0; + auto decDataPos = reinterpret_cast(decData); + zstd.decompress(cmpData, cmpSize, decDataPos, decDataSize); + if (decDataSize != conf.num * sizeof(T)) { + throw std::runtime_error("Decompressed data size does not match the original data size"); + } + } else if (conf.cmprAlgo == ALGO_LORENZO_REG) { SZ_decompress_LorenzoReg(conf, cmpData, cmpSize, decData); - } else if (conf.cmprAlgo == SZ::ALGO_INTERP) { + } else if (conf.cmprAlgo == ALGO_INTERP) { SZ_decompress_Interp(conf, cmpData, cmpSize, decData); + } else if (conf.cmprAlgo == ALGO_NOPRED) { + SZ_decompress_nopred(conf, cmpData, cmpSize, decData); } else { - printf("SZ_decompress_dispatcher, Method not supported\n"); - exit(0); + throw std::invalid_argument("Unknown compression algorithm"); } - } - -#endif \ No newline at end of file +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/api/impl/SZImpl.hpp b/lib/SZ3/include/SZ3/api/impl/SZImpl.hpp index ca025807..f72da5d4 100644 --- a/lib/SZ3/include/SZ3/api/impl/SZImpl.hpp +++ b/lib/SZ3/include/SZ3/api/impl/SZImpl.hpp @@ -1,32 +1,27 @@ #ifndef SZ3_IMPL_SZ_HPP #define SZ3_IMPL_SZ_HPP -#include "SZ3/def.hpp" #include "SZ3/api/impl/SZDispatcher.hpp" #include "SZ3/api/impl/SZImplOMP.hpp" -#include +#include "SZ3/def.hpp" -template -char *SZ_compress_impl(SZ::Config &conf, const T *data, size_t &outSize) { +namespace SZ3 { +template +size_t SZ_compress_impl(Config &conf, const T *data, uchar *cmpData, size_t cmpCap) { #ifndef _OPENMP - conf.openmp=false; + conf.openmp = false; #endif if (conf.openmp) { - //dataCopy for openMP is handled by each thread - return SZ_compress_OMP(conf, data, outSize); + return SZ_compress_OMP(conf, data, cmpData, cmpCap); } else { - std::vector dataCopy(data, data + conf.num); - return SZ_compress_dispatcher(conf, dataCopy.data(), outSize); + return SZ_compress_dispatcher(conf, data, cmpData, cmpCap); } } - -template -void SZ_decompress_impl(SZ::Config &conf, char *cmpData, size_t cmpSize, T *decData) { - - +template +void SZ_decompress_impl(Config &conf, const uchar *cmpData, size_t cmpSize, T *decData) { #ifndef _OPENMP - conf.openmp=false; + conf.openmp = false; #endif if (conf.openmp) { SZ_decompress_OMP(conf, cmpData, cmpSize, decData); @@ -35,4 +30,18 @@ void SZ_decompress_impl(SZ::Config &conf, char *cmpData, size_t cmpSize, T *decD } } -#endif \ No newline at end of file +template +size_t SZ_compress_size_bound(const Config &conf) { + bool omp = conf.openmp; +#ifndef _OPENMP + omp = false; +#endif + if (omp) { + return 4096 + SZ_compress_size_bound_omp(conf); + } else { + return 4096 + conf.size_est() + ZSTD_compressBound(conf.num * sizeof(T)); + } +} + +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/api/impl/SZImplOMP.hpp b/lib/SZ3/include/SZ3/api/impl/SZImplOMP.hpp index 07c642b0..2dcac38e 100644 --- a/lib/SZ3/include/SZ3/api/impl/SZImplOMP.hpp +++ b/lib/SZ3/include/SZ3/api/impl/SZImplOMP.hpp @@ -1,46 +1,45 @@ #ifndef SZ3_IMPL_SZDISPATCHER_OMP_HPP #define SZ3_IMPL_SZDISPATCHER_OMP_HPP -#include "SZ3/api/impl/SZDispatcher.hpp" #include #include +#include "SZ3/api/impl/SZDispatcher.hpp" -#include "omp.h" +#ifdef _OPENMP -template -char *SZ_compress_OMP(SZ::Config &conf, const T *data, size_t &outSize) { - unsigned char *buffer, *buffer_pos; +#include +#endif +namespace SZ3 { +template +size_t SZ_compress_OMP(Config &conf, const T *data, uchar *cmpData, size_t cmpCap) { #ifdef _OPENMP + unsigned char *buffer_pos = cmpData; - assert(N == conf.N); - - std::vector compressed_t; + std::vector compressed_t; std::vector cmp_size_t, cmp_start_t; std::vector min_t, max_t; - std::vector conf_t; -// SZ::Timer timer(true); + std::vector conf_t; + // Timer timer(true); int nThreads = 1; - double eb; + // double eb; #pragma omp parallel - { #pragma omp single - { - nThreads = omp_get_num_threads(); - if (conf.dims[0] < nThreads) { - nThreads = conf.dims[0]; - } - printf("OpenMP threads = %d\n", nThreads); - compressed_t.resize(nThreads); - cmp_size_t.resize(nThreads + 1); - cmp_start_t.resize(nThreads + 1); - conf_t.resize(nThreads); - min_t.resize(nThreads); - max_t.resize(nThreads); - } - - + { nThreads = omp_get_num_threads(); } + if (conf.dims[0] < nThreads) { + nThreads = conf.dims[0]; + omp_set_num_threads(nThreads); + } + printf("OpenMP enabled for compression, threads = %d\n", nThreads); + compressed_t.resize(nThreads); + cmp_size_t.resize(nThreads + 1); + cmp_start_t.resize(nThreads + 1); + conf_t.resize(nThreads); + min_t.resize(nThreads); + max_t.resize(nThreads); +#pragma omp parallel + { int tid = omp_get_thread_num(); auto dims_t = conf.dims; @@ -48,79 +47,92 @@ char *SZ_compress_OMP(SZ::Config &conf, const T *data, size_t &outSize) { int hi = (tid + 1) * conf.dims[0] / nThreads; dims_t[0] = hi - lo; auto it = dims_t.begin(); - size_t num_t_base = std::accumulate(++it, dims_t.end(), (size_t) 1, std::multiplies()); + size_t num_t_base = std::accumulate(++it, dims_t.end(), static_cast(1), std::multiplies()); size_t num_t = dims_t[0] * num_t_base; -// T *data_t = data + lo * num_t_base; - std::vector data_t(data + lo * num_t_base, data + lo * num_t_base + num_t); - if (conf.errorBoundMode != SZ::EB_ABS) { - auto minmax = std::minmax_element(data_t.begin(), data_t.end()); + const T *data_t = data + lo * num_t_base; + // std::vector data_t(data + lo * num_t_base, data + lo * num_t_base + num_t); + if (conf.errorBoundMode != EB_ABS) { + auto minmax = std::minmax_element(data_t, data_t + num_t); min_t[tid] = *minmax.first; max_t[tid] = *minmax.second; #pragma omp barrier #pragma omp single { T range = *std::max_element(max_t.begin(), max_t.end()) - *std::min_element(min_t.begin(), min_t.end()); - SZ::calAbsErrorBound(conf, data, range); -// timer.stop("OMP init"); -// timer.start(); + calAbsErrorBound(conf, data, range); + // timer.stop("OMP init"); + // timer.start(); } } conf_t[tid] = conf; conf_t[tid].setDims(dims_t.begin(), dims_t.end()); - compressed_t[tid] = SZ_compress_dispatcher(conf_t[tid], data_t.data(), cmp_size_t[tid]); + size_t cmp_size_cap = ZSTD_compressBound(conf_t[tid].num * sizeof(T)); + compressed_t[tid] = static_cast(malloc(cmp_size_cap)); + // we have to use conf_t[tid].N instead of N since each chunk may be a slice of the original data + if (conf_t[tid].N==1) { + cmp_size_t[tid] = SZ_compress_dispatcher(conf_t[tid], data_t, compressed_t[tid], cmp_size_cap); + } else if (conf_t[tid].N==2) { + cmp_size_t[tid] = SZ_compress_dispatcher(conf_t[tid], data_t, compressed_t[tid], cmp_size_cap); + }else if ( conf_t[tid].N==3) { + cmp_size_t[tid] = SZ_compress_dispatcher(conf_t[tid], data_t, compressed_t[tid], cmp_size_cap); + } else if (conf_t[tid].N==4) { + cmp_size_t[tid] = SZ_compress_dispatcher(conf_t[tid], data_t, compressed_t[tid], cmp_size_cap); + } else { + throw std::invalid_argument("Unsupported N"); + } #pragma omp barrier #pragma omp single { -// timer.stop("OMP compression"); -// timer.start(); + // timer.stop("OMP compression"); + // timer.start(); cmp_start_t[0] = 0; for (int i = 1; i <= nThreads; i++) { cmp_start_t[i] = cmp_start_t[i - 1] + cmp_size_t[i - 1]; } - size_t bufferSize = sizeof(int) + (nThreads + 1) * SZ::Config::size_est() + cmp_start_t[nThreads]; - buffer = new SZ::uchar[bufferSize]; - buffer_pos = buffer; - SZ::write(nThreads, buffer_pos); + // size_t bufferSize = sizeof(int) + (nThreads + 1) * Config::size_est() + cmp_start_t[nThreads]; + // buffer = new uchar[bufferSize]; + // buffer_pos = buffer; + write(nThreads, buffer_pos); for (int i = 0; i < nThreads; i++) { conf_t[i].save(buffer_pos); } - SZ::write(cmp_size_t.data(), nThreads, buffer_pos); + write(cmp_size_t.data(), nThreads, buffer_pos); } memcpy(buffer_pos + cmp_start_t[tid], compressed_t[tid], cmp_size_t[tid]); - delete[] compressed_t[tid]; + free(compressed_t[tid]); } - outSize = buffer_pos - buffer + cmp_start_t[nThreads]; -// timer.stop("OMP memcpy"); + return buffer_pos - cmpData + cmp_start_t[nThreads]; + // timer.stop("OMP memcpy"); +#else + return SZ_compress_dispatcher(conf, data, cmpData, cmpCap); #endif - return (char *) buffer; } - -template -void SZ_decompress_OMP(const SZ::Config &conf, char *cmpData, size_t cmpSize, T *decData) { +template +void SZ_decompress_OMP(Config &conf, const uchar *cmpData, size_t cmpSize, T *decData) { #ifdef _OPENMP - const unsigned char *cmpr_data_pos = (unsigned char *) cmpData; + auto cmpr_data_pos = cmpData; int nThreads = 1; - SZ::read(nThreads, cmpr_data_pos); + read(nThreads, cmpr_data_pos); omp_set_num_threads(nThreads); - printf("OpenMP threads = %d\n", nThreads); + printf("OpenMP enabled for decompression, threads = %d\n", nThreads); - std::vector conf_t(nThreads); + std::vector conf_t(nThreads); for (int i = 0; i < nThreads; i++) { conf_t[i].load(cmpr_data_pos); } std::vector cmp_start_t, cmp_size_t; cmp_size_t.resize(nThreads); - SZ::read(cmp_size_t.data(), nThreads, cmpr_data_pos); - char *cmpr_data_p = cmpData + (cmpr_data_pos - (unsigned char *) cmpData); + read(cmp_size_t.data(), nThreads, cmpr_data_pos); + auto cmpr_data_p = cmpr_data_pos; cmp_start_t.resize(nThreads + 1); cmp_start_t[0] = 0; @@ -136,12 +148,36 @@ void SZ_decompress_OMP(const SZ::Config &conf, char *cmpData, size_t cmpSize, T int hi = (tid + 1) * conf.dims[0] / nThreads; dims_t[0] = hi - lo; auto it = dims_t.begin(); - size_t num_t_base = std::accumulate(++it, dims_t.end(), (size_t) 1, std::multiplies()); + size_t num_t_base = std::accumulate(++it, dims_t.end(), static_cast(1), std::multiplies()); + + SZ_decompress_dispatcher(conf_t[tid], cmpr_data_p + cmp_start_t[tid], cmp_size_t[tid], + decData + lo * num_t_base); + } +#else + SZ_decompress_dispatcher(conf, cmpData, cmpSize, decData); +#endif +} - SZ_decompress_dispatcher(conf_t[tid], cmpr_data_p + cmp_start_t[tid], cmp_size_t[tid], decData + lo * num_t_base); +template +size_t SZ_compress_size_bound_omp(const Config &conf) { +#ifdef _OPENMP + int nThreads = 1; +#pragma omp parallel +#pragma omp single + { nThreads = omp_get_num_threads(); } + if (conf.dims[0] < nThreads) { + nThreads = conf.dims[0]; } + size_t chunk_size = conf.dims[0] / nThreads * (conf.num / conf.dims[0]); + size_t last_chunk_size = (conf.dims[0] - conf.dims[0] / nThreads * (nThreads-1)) * (conf.num / conf.dims[0]); + //for each thread, we save conf, compressed size, and compressed data + return sizeof(int) + nThreads * conf.size_est() + nThreads * sizeof(size_t) + + (nThreads-1) * ZSTD_compressBound(chunk_size * sizeof(T)) + ZSTD_compressBound(last_chunk_size * sizeof(T)); +#else + return conf.size_est() + ZSTD_compressBound(conf.num * sizeof(T)); #endif } +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/api/impl/SZInterp.hpp b/lib/SZ3/include/SZ3/api/impl/SZInterp.hpp deleted file mode 100644 index ae010bc4..00000000 --- a/lib/SZ3/include/SZ3/api/impl/SZInterp.hpp +++ /dev/null @@ -1,169 +0,0 @@ -#ifndef SZ3_SZINTERP_HPP -#define SZ3_SZINTERP_HPP - -#include "SZ3/compressor/SZInterpolationCompressor.hpp" -#include "SZ3/compressor/deprecated/SZBlockInterpolationCompressor.hpp" -#include "SZ3/quantizer/IntegerQuantizer.hpp" -#include "SZ3/lossless/Lossless_zstd.hpp" -#include "SZ3/utils/Iterator.hpp" -#include "SZ3/utils/Statistic.hpp" -#include "SZ3/utils/Extraction.hpp" -#include "SZ3/utils/QuantOptimizatioin.hpp" -#include "SZ3/utils/Config.hpp" -#include "SZ3/api/impl/SZLorenzoReg.hpp" -#include -#include - - -template -char *SZ_compress_Interp(SZ::Config &conf, T *data, size_t &outSize) { - - - assert(N == conf.N); - assert(conf.cmprAlgo == SZ::ALGO_INTERP); - SZ::calAbsErrorBound(conf, data); - - auto sz = SZ::SZInterpolationCompressor, SZ::HuffmanEncoder, SZ::Lossless_zstd>( - SZ::LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2), - SZ::HuffmanEncoder(), - SZ::Lossless_zstd()); - char *cmpData = (char *) sz.compress(conf, data, outSize); - return cmpData; -} - - -template -void SZ_decompress_Interp(const SZ::Config &conf, char *cmpData, size_t cmpSize, T *decData) { - assert(conf.cmprAlgo == SZ::ALGO_INTERP); - SZ::uchar const *cmpDataPos = (SZ::uchar *) cmpData; - auto sz = SZ::SZInterpolationCompressor, SZ::HuffmanEncoder, SZ::Lossless_zstd>( - SZ::LinearQuantizer(), - SZ::HuffmanEncoder(), - SZ::Lossless_zstd()); - sz.decompress(cmpDataPos, cmpSize, decData); -} - - -template -double do_not_use_this_interp_compress_block_test(T *data, std::vector dims, size_t num, - double eb, int interp_op, int direction_op, int block_size) { - - std::vector data1(data, data + num); - size_t outSize = 0; - - SZ::Config conf; - conf.absErrorBound = eb; - conf.setDims(dims.begin(), dims.end()); - conf.blockSize = block_size; - conf.interpAlgo = interp_op; - conf.interpDirection = direction_op; - auto sz = SZ::SZBlockInterpolationCompressor, SZ::HuffmanEncoder, SZ::Lossless_zstd>( - SZ::LinearQuantizer(eb), - SZ::HuffmanEncoder(), - SZ::Lossless_zstd()); - char *cmpData = (char *) sz.compress(conf, data1.data(), outSize); - delete[]cmpData; - auto compression_ratio = num * sizeof(T) * 1.0 / outSize; - return compression_ratio; -} - -template -char *SZ_compress_Interp_lorenzo(SZ::Config &conf, T *data, size_t &outSize) { - assert(conf.cmprAlgo == SZ::ALGO_INTERP_LORENZO); - - SZ::Timer timer(true); - - SZ::calAbsErrorBound(conf, data); - - size_t sampling_num, sampling_block; - std::vector sample_dims(N); - std::vector sampling_data = SZ::sampling(data, conf.dims, sampling_num, sample_dims, sampling_block); - - double best_lorenzo_ratio = 0, best_interp_ratio = 0, ratio; - size_t sampleOutSize; - char *cmprData; - SZ::Config lorenzo_config = conf; - { - //test lorenzo - lorenzo_config.cmprAlgo = SZ::ALGO_LORENZO_REG; - lorenzo_config.setDims(sample_dims.begin(), sample_dims.end()); - lorenzo_config.lorenzo = true; - lorenzo_config.lorenzo2 = true; - lorenzo_config.regression = false; - lorenzo_config.regression2 = false; - lorenzo_config.openmp = false; - lorenzo_config.blockSize = 5; -// lorenzo_config.quantbinCnt = 65536 * 2; - std::vector data1(sampling_data); - cmprData = SZ_compress_LorenzoReg(lorenzo_config, data1.data(), sampleOutSize); - delete[]cmprData; -// printf("Lorenzo ratio = %.2f\n", ratio); - best_lorenzo_ratio = sampling_num * 1.0 * sizeof(T) / sampleOutSize; - } - - { - //tune interp - for (auto &interp_op: {SZ::INTERP_ALGO_LINEAR, SZ::INTERP_ALGO_CUBIC}) { - ratio = do_not_use_this_interp_compress_block_test(sampling_data.data(), sample_dims, sampling_num, conf.absErrorBound, - interp_op, conf.interpDirection, sampling_block); - if (ratio > best_interp_ratio) { - best_interp_ratio = ratio; - conf.interpAlgo = interp_op; - } - } - - int direction_op = SZ::factorial(N) - 1; - ratio = do_not_use_this_interp_compress_block_test(sampling_data.data(), sample_dims, sampling_num, conf.absErrorBound, - conf.interpAlgo, direction_op, sampling_block); - if (ratio > best_interp_ratio * 1.02) { - best_interp_ratio = ratio; - conf.interpDirection = direction_op; - } - } - - bool useInterp = !(best_lorenzo_ratio > best_interp_ratio && best_lorenzo_ratio < 80 && best_interp_ratio < 80); - - if (useInterp) { - conf.cmprAlgo = SZ::ALGO_INTERP; - double tuning_time = timer.stop(); - return SZ_compress_Interp(conf, data, outSize); - } else { - //further tune lorenzo - if (N == 3) { - float pred_freq, mean_freq; - T mean_guess; - lorenzo_config.quantbinCnt = SZ::optimize_quant_invl_3d(data, conf.dims[0], conf.dims[1], conf.dims[2], - conf.absErrorBound, pred_freq, mean_freq, mean_guess); - lorenzo_config.pred_dim = 2; - cmprData = SZ_compress_LorenzoReg(lorenzo_config, sampling_data.data(), sampleOutSize); - delete[]cmprData; - ratio = sampling_num * 1.0 * sizeof(T) / sampleOutSize; - if (ratio > best_lorenzo_ratio * 1.02) { - best_lorenzo_ratio = ratio; - } else { - lorenzo_config.pred_dim = 3; - } - } - - if (conf.relErrorBound < 1.01e-6 && best_lorenzo_ratio > 5 && lorenzo_config.quantbinCnt != 16384) { - auto quant_num = lorenzo_config.quantbinCnt; - lorenzo_config.quantbinCnt = 16384; - cmprData = SZ_compress_LorenzoReg(lorenzo_config, sampling_data.data(), sampleOutSize); - delete[]cmprData; - ratio = sampling_num * 1.0 * sizeof(T) / sampleOutSize; - if (ratio > best_lorenzo_ratio * 1.02) { - best_lorenzo_ratio = ratio; - } else { - lorenzo_config.quantbinCnt = quant_num; - } - } - lorenzo_config.setDims(conf.dims.begin(), conf.dims.end()); - conf = lorenzo_config; - double tuning_time = timer.stop(); - return SZ_compress_LorenzoReg(conf, data, outSize); - } - - -} - -#endif diff --git a/lib/SZ3/include/SZ3/api/impl/SZLorenzoReg.hpp b/lib/SZ3/include/SZ3/api/impl/SZLorenzoReg.hpp deleted file mode 100644 index e9666a92..00000000 --- a/lib/SZ3/include/SZ3/api/impl/SZLorenzoReg.hpp +++ /dev/null @@ -1,120 +0,0 @@ -#ifndef SZ3_SZ_LORENZO_REG_HPP -#define SZ3_SZ_LORENZO_REG_HPP - -#include "SZ3/compressor/SZGeneralCompressor.hpp" -#include "SZ3/frontend/SZFastFrontend.hpp" -#include "SZ3/frontend/SZGeneralFrontend.hpp" -#include "SZ3/quantizer/IntegerQuantizer.hpp" -#include "SZ3/predictor/ComposedPredictor.hpp" -#include "SZ3/predictor/LorenzoPredictor.hpp" -#include "SZ3/predictor/RegressionPredictor.hpp" -#include "SZ3/predictor/PolyRegressionPredictor.hpp" -#include "SZ3/lossless/Lossless_zstd.hpp" -#include "SZ3/utils/Iterator.hpp" -#include "SZ3/utils/Statistic.hpp" -#include "SZ3/utils/Extraction.hpp" -#include "SZ3/utils/QuantOptimizatioin.hpp" -#include "SZ3/utils/Config.hpp" -#include "SZ3/def.hpp" -#include -#include - - -template -std::shared_ptr> -make_lorenzo_regression_compressor(const SZ::Config &conf, Quantizer quantizer, Encoder encoder, Lossless lossless) { - std::vector>> predictors; - - int methodCnt = (conf.lorenzo + conf.lorenzo2 + conf.regression + conf.regression2); - int use_single_predictor = (methodCnt == 1); - if (methodCnt == 0) { - printf("All lorenzo and regression methods are disabled.\n"); - exit(0); - } - if (conf.lorenzo) { - if (use_single_predictor) { - return SZ::make_sz_general_compressor( - SZ::make_sz_general_frontend(conf, SZ::LorenzoPredictor(conf.absErrorBound), quantizer), - encoder, lossless); - } else { - predictors.push_back(std::make_shared>(conf.absErrorBound)); - } - } - if (conf.lorenzo2) { - if (use_single_predictor) { - return SZ::make_sz_general_compressor( - SZ::make_sz_general_frontend(conf, SZ::LorenzoPredictor(conf.absErrorBound), quantizer), - encoder, lossless); - } else { - predictors.push_back(std::make_shared>(conf.absErrorBound)); - } - } - if (conf.regression) { - if (use_single_predictor) { - return SZ::make_sz_general_compressor( - SZ::make_sz_general_frontend(conf, SZ::RegressionPredictor(conf.blockSize, conf.absErrorBound), - quantizer), encoder, lossless); - } else { - predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); - } - } - - if (conf.regression2) { - if (use_single_predictor) { - return SZ::make_sz_general_compressor( - SZ::make_sz_general_frontend(conf, SZ::PolyRegressionPredictor(conf.blockSize, conf.absErrorBound), - quantizer), encoder, lossless); - } else { - predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); - } - } - return SZ::make_sz_general_compressor( - SZ::make_sz_general_frontend(conf, SZ::ComposedPredictor(predictors), - quantizer), encoder, lossless); -} - - -template -char *SZ_compress_LorenzoReg(SZ::Config &conf, T *data, size_t &outSize) { - - assert(N == conf.N); - assert(conf.cmprAlgo == SZ::ALGO_LORENZO_REG); - SZ::calAbsErrorBound(conf, data); - - char *cmpData; - auto quantizer = SZ::LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2); - if (N == 3 && !conf.regression2) { - // use fast version for 3D - auto sz = SZ::make_sz_general_compressor(SZ::make_sz_fast_frontend(conf, quantizer), SZ::HuffmanEncoder(), - SZ::Lossless_zstd()); - cmpData = (char *) sz->compress(conf, data, outSize); - } else { - auto sz = make_lorenzo_regression_compressor(conf, quantizer, SZ::HuffmanEncoder(), SZ::Lossless_zstd()); - cmpData = (char *) sz->compress(conf, data, outSize); - } - return cmpData; -} - - -template -void SZ_decompress_LorenzoReg(const SZ::Config &conf, char *cmpData, size_t cmpSize, T *decData) { - assert(conf.cmprAlgo == SZ::ALGO_LORENZO_REG); - - SZ::uchar const *cmpDataPos = (SZ::uchar *) cmpData; - SZ::LinearQuantizer quantizer; - if (N == 3 && !conf.regression2) { - // use fast version for 3D - auto sz = SZ::make_sz_general_compressor(SZ::make_sz_fast_frontend(conf, quantizer), - SZ::HuffmanEncoder(), SZ::Lossless_zstd()); - sz->decompress(cmpDataPos, cmpSize, decData); - return; - - } else { - auto sz = make_lorenzo_regression_compressor(conf, quantizer, SZ::HuffmanEncoder(), SZ::Lossless_zstd()); - sz->decompress(cmpDataPos, cmpSize, decData); - return; - } - -} - -#endif \ No newline at end of file diff --git a/lib/SZ3/include/SZ3/api/sz.hpp b/lib/SZ3/include/SZ3/api/sz.hpp index 2ce34428..2e215cf0 100644 --- a/lib/SZ3/include/SZ3/api/sz.hpp +++ b/lib/SZ3/include/SZ3/api/sz.hpp @@ -1,18 +1,18 @@ #ifndef SZ3_SZ_HPP #define SZ3_SZ_HPP - #include "SZ3/api/impl/SZImpl.hpp" #include "SZ3/version.hpp" -#include /** * API for compression * @tparam T source data type - * @param config compression configuration. Please update the config with 1). data dimension and shape and 2). desired settings. + * @param config compression configuration. Please update the config with 1). data dimension and shape and 2). desired +settings. * @param data source data - * @param cmpSize compressed data size in bytes - * @return compressed data, remember to 'delete []' when the data is no longer needed. + * @param cmpData pre-allocated buffer for compressed data + * @param cmpCap pre-allocated buffer size (in bytes) for compressed data + * @return compressed data size (in bytes) The compression algorithms are: ALGO_INTERP_LORENZO: @@ -21,122 +21,153 @@ The compression algorithms are: ALGO_INTERP: The whole dataset will be compressed by interpolation predictor with default settings. ALGO_LORENZO_REG: - The whole dataset will be compressed by lorenzo and/or regression based predictors block by block with default settings. - The four predictors ( 1st-order lorenzo, 2nd-order lorenzo, 1st-order regression, 2nd-order regression) - can be enabled or disabled independently by conf settings (lorenzo, lorenzo2, regression, regression2). + The whole dataset will be compressed by lorenzo and/or regression based predictors block by block with default +settings. The four predictors ( 1st-order lorenzo, 2nd-order lorenzo, 1st-order regression, 2nd-order regression) can be +enabled or disabled independently by conf settings (lorenzo, lorenzo2, regression, regression2). Interpolation+lorenzo example: -SZ::Config conf(100, 200, 300); // 300 is the fastest dimension -conf.cmprAlgo = SZ::ALGO_INTERP_LORENZO; -conf.errorBoundMode = SZ::EB_ABS; // refer to def.hpp for all supported error bound mode +SZ3::Config conf(100, 200, 300); // 300 is the fastest dimension +conf.cmprAlgo = SZ3::ALGO_INTERP_LORENZO; +conf.errorBoundMode = SZ3::EB_ABS; // refer to def.hpp for all supported error bound mode conf.absErrorBound = 1E-3; // absolute error bound 1e-3 char *compressedData = SZ_compress(conf, data, outSize); Interpolation example: -SZ::Config conf(100, 200, 300); // 300 is the fastest dimension -conf.cmprAlgo = SZ::ALGO_INTERP; -conf.errorBoundMode = SZ::EB_REL; // refer to def.hpp for all supported error bound mode +SZ3::Config conf(100, 200, 300); // 300 is the fastest dimension +conf.cmprAlgo = SZ3::ALGO_INTERP; +conf.errorBoundMode = SZ3::EB_REL; // refer to def.hpp for all supported error bound mode conf.relErrorBound = 1E-3; // value-rang-based error bound 1e-3 char *compressedData = SZ_compress(conf, data, outSize); Lorenzo/regression example : -SZ::Config conf(100, 200, 300); // 300 is the fastest dimension -conf.cmprAlgo = SZ::ALGO_LORENZO_REG; +SZ3::Config conf(100, 200, 300); // 300 is the fastest dimension +conf.cmprAlgo = SZ3::ALGO_LORENZO_REG; conf.lorenzo = true; // only use 1st order lorenzo conf.lorenzo2 = false; conf.regression = false; conf.regression2 = false; -conf.errorBoundMode = SZ::EB_ABS; // refer to def.hpp for all supported error bound mode +conf.errorBoundMode = SZ3::EB_ABS; // refer to def.hpp for all supported error bound mode conf.absErrorBound = 1E-3; // absolute error bound 1e-3 char *compressedData = SZ_compress(conf, data, outSize); */ -template -char *SZ_compress(const SZ::Config &conf, const T *data, size_t &cmpSize) { - SZ::Config confCopy(conf); - char *cmpData; +template +size_t SZ_compress(const SZ3::Config &config, const T *data, char *cmpData, size_t cmpCap) { + using namespace SZ3; + Config conf(config); + + if (cmpCap < SZ_compress_size_bound(conf)) { + throw std::invalid_argument(SZ3_ERROR_COMP_BUFFER_NOT_LARGE_ENOUGH); + } + + auto confEstSize = conf.size_est(); + auto cmpDataPos = reinterpret_cast(cmpData) + confEstSize; + memset(cmpData, 0, confEstSize); + auto cmpDataCap = cmpCap - conf.size_est(); + + size_t cmpDataLen = 0; if (conf.N == 1) { - cmpData = SZ_compress_impl(confCopy, data, cmpSize); + cmpDataLen = SZ_compress_impl(conf, data, cmpDataPos, cmpDataCap); } else if (conf.N == 2) { - cmpData = SZ_compress_impl(confCopy, data, cmpSize); + cmpDataLen = SZ_compress_impl(conf, data, cmpDataPos, cmpDataCap); } else if (conf.N == 3) { - cmpData = SZ_compress_impl(confCopy, data, cmpSize); + cmpDataLen = SZ_compress_impl(conf, data, cmpDataPos, cmpDataCap); } else if (conf.N == 4) { - cmpData = SZ_compress_impl(confCopy, data, cmpSize); + cmpDataLen = SZ_compress_impl(conf, data, cmpDataPos, cmpDataCap); } else { - printf("Data dimension higher than 4 is not supported.\n"); - exit(0); + throw std::invalid_argument("Data dimension higher than 4 is not supported."); } - { - //save config - SZ::uchar *cmpDataPos = (SZ::uchar *) cmpData + cmpSize; - confCopy.save(cmpDataPos); - size_t newSize = (char *) cmpDataPos - cmpData; - SZ::write(int(newSize - cmpSize), cmpDataPos); - cmpSize = (char *) cmpDataPos - cmpData; + + auto cmpConfPos = reinterpret_cast(cmpData); + auto confSize = conf.save(cmpConfPos); + if (confSize > confEstSize) { + throw std::length_error("buffer allocated for config is not large enough."); } - return cmpData; + + return confSize + cmpDataLen; } +/** + * API for compression + * @tparam T source data type + * @param config config compression configuration + * @param data source data + * @param cmpSize compressed data size (in bytes) + * @return compressed data, remember to 'delete []' when the data is no longer needed. + * + * Similar with SZ_compress(SZ3::Config &conf, const T *data, char *cmpData, size_t cmpCap) + * The only difference is this one doesn't need the pre-allocated buffer (thus remember to do 'delete []' yourself) + */ +template +char *SZ_compress(const SZ3::Config &config, const T *data, size_t &cmpSize) { + using namespace SZ3; + + size_t bufferLen = SZ_compress_size_bound(config); + auto buffer = new char[bufferLen]; + cmpSize = SZ_compress(config, data, buffer, bufferLen); + + return buffer; +} /** * API for decompression - * Similar with SZ_decompress(SZ::Config &conf, char *cmpData, size_t cmpSize) - * The only difference is this one needs pre-allocated decData as input * @tparam T decompressed data type - * @param conf configuration placeholder. It will be overwritten by the compression configuration + * @param config configuration placeholder. It will be overwritten by the compression configuration * @param cmpData compressed data * @param cmpSize compressed data size in bytes - * @param decData pre-allocated memory space for decompressed data + * @param decData pre-allocated buffer for decompressed data example: auto decData = new float[100*200*300]; - SZ::Config conf; + SZ3::Config conf; SZ_decompress(conf, cmpData, cmpSize, decData); */ -template -void SZ_decompress(SZ::Config &conf, char *cmpData, size_t cmpSize, T *&decData) { - { - //load config - int confSize; - memcpy(&confSize, cmpData + (cmpSize - sizeof(int)), sizeof(int)); - SZ::uchar const *cmpDataPos = (SZ::uchar *) cmpData + (cmpSize - sizeof(int) - confSize); - conf.load(cmpDataPos); - } +template +void SZ_decompress(SZ3::Config &config, const char *cmpData, size_t cmpSize, T *&decData) { + using namespace SZ3; + auto cmpConfPos = reinterpret_cast(cmpData); + config.load(cmpConfPos); + + auto cmpDataPos = reinterpret_cast(cmpData) + config.size_est(); + auto cmpDataSize = cmpSize - config.size_est(); + if (decData == nullptr) { - decData = new T[conf.num]; + decData = new T[config.num]; } - if (conf.N == 1) { - SZ_decompress_impl(conf, cmpData, cmpSize, decData); - } else if (conf.N == 2) { - SZ_decompress_impl(conf, cmpData, cmpSize, decData); - } else if (conf.N == 3) { - SZ_decompress_impl(conf, cmpData, cmpSize, decData); - } else if (conf.N == 4) { - SZ_decompress_impl(conf, cmpData, cmpSize, decData); + if (config.N == 1) { + SZ_decompress_impl(config, cmpDataPos, cmpDataSize, decData); + } else if (config.N == 2) { + SZ_decompress_impl(config, cmpDataPos, cmpDataSize, decData); + } else if (config.N == 3) { + SZ_decompress_impl(config, cmpDataPos, cmpDataSize, decData); + } else if (config.N == 4) { + SZ_decompress_impl(config, cmpDataPos, cmpDataSize, decData); } else { - printf("Data dimension higher than 4 is not supported.\n"); - exit(0); + throw std::invalid_argument("Data dimension higher than 4 is not supported."); } } /** * API for decompression + * Similar with SZ_decompress(SZ3::Config &config, char *cmpData, size_t cmpSize, T *&decData) + * The only difference is this one doesn't need pre-allocated buffer for decompressed data + * * @tparam T decompressed data type - * @param conf configuration placeholder. It will be overwritten by the compression configuration + * @param config configuration placeholder. It will be overwritten by the compression configuration * @param cmpData compressed data * @param cmpSize compressed data size in bytes * @return decompressed data, remember to 'delete []' when the data is no longer needed. example: - SZ::Config conf; + SZ3::Config conf; float decompressedData = SZ_decompress(conf, cmpData, cmpSize) */ -template -T *SZ_decompress(SZ::Config &conf, char *cmpData, size_t cmpSize) { +template +T *SZ_decompress(SZ3::Config &config, const char *cmpData, size_t cmpSize) { + using namespace SZ3; T *decData = nullptr; - SZ_decompress(conf, cmpData, cmpSize, decData); + SZ_decompress(config, cmpData, cmpSize, decData); return decData; } -#endif \ No newline at end of file +#endif diff --git a/lib/SZ3/include/SZ3/compressor/Compressor.hpp b/lib/SZ3/include/SZ3/compressor/Compressor.hpp index d13e8eeb..a65b564c 100644 --- a/lib/SZ3/include/SZ3/compressor/Compressor.hpp +++ b/lib/SZ3/include/SZ3/compressor/Compressor.hpp @@ -1,20 +1,40 @@ -#ifndef SZ_COMPRESSOR_HPP -#define SZ_COMPRESSOR_HPP +#ifndef SZ3_COMPRESSOR_HPP +#define SZ3_COMPRESSOR_HPP #include "SZ3/def.hpp" #include "SZ3/utils/Config.hpp" -namespace SZ { - namespace concepts { - template - class CompressorInterface { - public: - virtual T *decompress(uchar const *cmpData, const size_t &cmpSize, size_t num) = 0; +namespace SZ3::concepts { - virtual T *decompress(uchar const *cmpData, const size_t &cmpSize, T *decData) = 0; +/** + * Compressor describes the whole compression workflow. + * Compressor is implemented using modules (decomposition or predictor, encoder, lossless, etc.). + * @tparam T input data type + */ +template +class CompressorInterface { + public: + virtual ~CompressorInterface() = default; + + /** + * decompress data + * @param cmpData compressed data in bytes + * @param cmpSize size of compressed data in bytes + * @param decData pre-allocated space to store the decompress data + * @return pointer to the decompress data + */ + virtual T *decompress(const Config &conf, uchar const *cmpData, size_t cmpSize, T *decData) = 0; + + /** + * compress data + * @param conf compression configuration + * @param data input data in original format + * @param cmpData compressed data in bytes + * @param cmpCap size of the compressed buffer in bytes + * @return size of the compressed data in bytes + */ + virtual size_t compress(const Config &conf, T *data, uchar *cmpData, size_t cmpCap) = 0; +}; +} // namespace SZ3::concepts - virtual uchar *compress(const Config &conf, T *data, size_t &compressed_size) = 0; - }; - } -} #endif diff --git a/lib/SZ3/include/SZ3/compressor/SZGeneralCompressor.hpp b/lib/SZ3/include/SZ3/compressor/SZGeneralCompressor.hpp deleted file mode 100644 index 926333c7..00000000 --- a/lib/SZ3/include/SZ3/compressor/SZGeneralCompressor.hpp +++ /dev/null @@ -1,99 +0,0 @@ -#ifndef SZ_GENERAL_COMPRESSOR_HPP -#define SZ_GENERAL_COMPRESSOR_HPP - -#include "SZ3/compressor/Compressor.hpp" -#include "SZ3/frontend/Frontend.hpp" -#include "SZ3/encoder/Encoder.hpp" -#include "SZ3/lossless/Lossless.hpp" -#include "SZ3/utils/FileUtil.hpp" -#include "SZ3/utils/Config.hpp" -#include "SZ3/utils/Timer.hpp" -#include "SZ3/def.hpp" -#include - -namespace SZ { - template - class SZGeneralCompressor : public concepts::CompressorInterface { - public: - - - SZGeneralCompressor(Frontend frontend, Encoder encoder, Lossless lossless) : - frontend(frontend), encoder(encoder), lossless(lossless) { - static_assert(std::is_base_of, Frontend>::value, - "must implement the frontend interface"); - static_assert(std::is_base_of, Encoder>::value, - "must implement the encoder interface"); - static_assert(std::is_base_of::value, - "must implement the lossless interface"); - } - - uchar *compress(const Config &conf, T *data, size_t &compressed_size) { - - std::vector quant_inds = frontend.compress(data); - - encoder.preprocess_encode(quant_inds, 0); - size_t bufferSize = 1.2 * (frontend.size_est() + encoder.size_est() + sizeof(T) * quant_inds.size()); - - uchar *buffer = new uchar[bufferSize]; - uchar *buffer_pos = buffer; - - frontend.save(buffer_pos); - - encoder.save(buffer_pos); - encoder.encode(quant_inds, buffer_pos); - encoder.postprocess_encode(); - - assert(buffer_pos - buffer < bufferSize); - - uchar *lossless_data = lossless.compress(buffer, buffer_pos - buffer, compressed_size); - lossless.postcompress_data(buffer); - - return lossless_data; - } - - T *decompress(uchar const *cmpData, const size_t &cmpSize, size_t num) { - T *dec_data = new T[num]; - return decompress(cmpData, cmpSize, dec_data); - } - - T *decompress(uchar const *cmpData, const size_t &cmpSize, T *decData) { - size_t remaining_length = cmpSize; - - Timer timer(true); - auto compressed_data = lossless.decompress(cmpData, remaining_length); - uchar const *compressed_data_pos = compressed_data; -// timer.stop("Lossless"); - - frontend.load(compressed_data_pos, remaining_length); - - encoder.load(compressed_data_pos, remaining_length); - - timer.start(); - auto quant_inds = encoder.decode(compressed_data_pos, frontend.get_num_elements()); - encoder.postprocess_decode(); -// timer.stop("Decoder"); - - lossless.postdecompress_data(compressed_data); - - timer.start(); - frontend.decompress(quant_inds, decData); -// timer.stop("Prediction & Recover"); - return decData; - } - - - private: - Frontend frontend; - Encoder encoder; - Lossless lossless; - }; - - template - std::shared_ptr> - make_sz_general_compressor(Frontend frontend, Encoder encoder, Lossless lossless) { - return std::make_shared>(frontend, encoder, lossless); - } - - -} -#endif diff --git a/lib/SZ3/include/SZ3/compressor/SZGenericCompressor.hpp b/lib/SZ3/include/SZ3/compressor/SZGenericCompressor.hpp new file mode 100644 index 00000000..b49310a0 --- /dev/null +++ b/lib/SZ3/include/SZ3/compressor/SZGenericCompressor.hpp @@ -0,0 +1,100 @@ +#ifndef SZ3_COMPRESSOR_TYPE_ONE_HPP +#define SZ3_COMPRESSOR_TYPE_ONE_HPP + +#include + +#include "SZ3/compressor/Compressor.hpp" +#include "SZ3/decomposition/Decomposition.hpp" +#include "SZ3/def.hpp" +#include "SZ3/encoder/Encoder.hpp" +#include "SZ3/lossless/Lossless.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/FileUtil.hpp" +#include "SZ3/utils/Timer.hpp" + +namespace SZ3 { +/** + * SZGenericCompressor glues together decomposition, encoder, and lossless modules to form the compressor. + * It only takes Decomposition, not Predictor. + * @tparam T original data type + * @tparam N original data dimension + * @tparam Decomposition decomposition module + * @tparam Encoder encoder module + * @tparam Lossless lossless module + */ +template +class SZGenericCompressor : public concepts::CompressorInterface { + public: + SZGenericCompressor(Decomposition decomposition, Encoder encoder, Lossless lossless) + : decomposition(decomposition), encoder(encoder), lossless(lossless) { + static_assert(std::is_base_of, Decomposition>::value, + "must implement the frontend interface"); + static_assert(std::is_base_of, Encoder>::value, + "must implement the encoder interface"); + static_assert(std::is_base_of::value, + "must implement the lossless interface"); + } + + size_t compress(const Config &conf, T *data, uchar *cmpData, size_t cmpCap) override { + std::vector quant_inds = decomposition.compress(conf, data); + + if (decomposition.get_out_range().first != 0) { + throw std::runtime_error("The output range of the decomposition must start from 0 for this compressor"); + } + encoder.preprocess_encode(quant_inds, decomposition.get_out_range().second); + size_t bufferSize = std::max( + 1000, 1.2 * (decomposition.size_est() + encoder.size_est() + sizeof(T) * quant_inds.size())); + + auto buffer = static_cast(malloc(bufferSize)); + uchar *buffer_pos = buffer; + + decomposition.save(buffer_pos); + encoder.save(buffer_pos); + + //store the size of quant_inds is necessary as it is not always equal to conf.num + write(quant_inds.size(), buffer_pos); + encoder.encode(quant_inds, buffer_pos); + encoder.postprocess_encode(); + + auto cmpSize = lossless.compress(buffer, buffer_pos - buffer, cmpData, cmpCap); + free(buffer); + + return cmpSize; + } + + T *decompress(const Config &conf, uchar const *cmpData, size_t cmpSize, T *decData) override { + uchar *buffer = nullptr; + size_t bufferSize = 0; + lossless.decompress(cmpData, cmpSize, buffer, bufferSize); + + uchar const *bufferPos = buffer; + + decomposition.load(bufferPos, bufferSize); + encoder.load(bufferPos, bufferSize); + + size_t quant_inds_size = 0; + read(quant_inds_size, bufferPos); + auto quant_inds = encoder.decode(bufferPos, quant_inds_size); + encoder.postprocess_decode(); + + free(buffer); + + decomposition.decompress(conf, quant_inds, decData); + return decData; + } + + private: + Decomposition decomposition; + Encoder encoder; + Lossless lossless; +}; + +template +std::shared_ptr> make_compressor_sz_generic( + Decomposition decomposition, Encoder encoder, Lossless lossless) { + return std::make_shared>(decomposition, encoder, + lossless); +} + +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/compressor/SZInterpolationCompressor.hpp b/lib/SZ3/include/SZ3/compressor/SZInterpolationCompressor.hpp deleted file mode 100644 index 3c641015..00000000 --- a/lib/SZ3/include/SZ3/compressor/SZInterpolationCompressor.hpp +++ /dev/null @@ -1,483 +0,0 @@ -#ifndef _SZ_INTERPOLATION_COMPRESSSOR_HPP -#define _SZ_INTERPOLATION_COMPRESSSOR_HPP - -#include "SZ3/predictor/Predictor.hpp" -#include "SZ3/predictor/LorenzoPredictor.hpp" -#include "SZ3/quantizer/Quantizer.hpp" -#include "SZ3/encoder/Encoder.hpp" -#include "SZ3/lossless/Lossless.hpp" -#include "SZ3/utils/Iterator.hpp" -#include "SZ3/utils/MemoryUtil.hpp" -#include "SZ3/utils/Config.hpp" -#include "SZ3/utils/FileUtil.hpp" -#include "SZ3/utils/Interpolators.hpp" -#include "SZ3/utils/Timer.hpp" -#include "SZ3/def.hpp" -#include "SZ3/utils/Config.hpp" -#include -#include - -namespace SZ { - template - class SZInterpolationCompressor { - public: - - - SZInterpolationCompressor(Quantizer quantizer, Encoder encoder, Lossless lossless) : - quantizer(quantizer), encoder(encoder), lossless(lossless) { - - static_assert(std::is_base_of, Quantizer>::value, - "must implement the quatizer interface"); - static_assert(std::is_base_of, Encoder>::value, - "must implement the encoder interface"); - static_assert(std::is_base_of::value, - "must implement the lossless interface"); - } - - T *decompress(uchar const *cmpData, const size_t &cmpSize, size_t num) { - T *dec_data = new T[num]; - return decompress(cmpData, cmpSize, dec_data); - } - - T *decompress(uchar const *cmpData, const size_t &cmpSize, T *decData) { - size_t remaining_length = cmpSize; - uchar *buffer = lossless.decompress(cmpData, remaining_length); - uchar const *buffer_pos = buffer; - - read(global_dimensions.data(), N, buffer_pos, remaining_length); - read(blocksize, buffer_pos, remaining_length); - read(interpolator_id, buffer_pos, remaining_length); - read(direction_sequence_id, buffer_pos, remaining_length); - - init(); - - quantizer.load(buffer_pos, remaining_length); - encoder.load(buffer_pos, remaining_length); - quant_inds = encoder.decode(buffer_pos, num_elements); - - encoder.postprocess_decode(); - - lossless.postdecompress_data(buffer); - double eb = quantizer.get_eb(); - - *decData = quantizer.recover(0, quant_inds[quant_index++]); - - for (uint level = interpolation_level; level > 0 && level <= interpolation_level; level--) { - if (level >= 3) { - quantizer.set_eb(eb * eb_ratio); - } else { - quantizer.set_eb(eb); - } - size_t stride = 1U << (level - 1); - auto inter_block_range = std::make_shared< - SZ::multi_dimensional_range>(decData, - std::begin(global_dimensions), std::end(global_dimensions), - stride * blocksize, 0); - auto inter_begin = inter_block_range->begin(); - auto inter_end = inter_block_range->end(); - for (auto block = inter_begin; block != inter_end; ++block) { - auto end_idx = block.get_global_index(); - for (int i = 0; i < N; i++) { - end_idx[i] += stride * blocksize; - if (end_idx[i] > global_dimensions[i] - 1) { - end_idx[i] = global_dimensions[i] - 1; - } - } - block_interpolation(decData, block.get_global_index(), end_idx, PB_recover, - interpolators[interpolator_id], direction_sequence_id, stride); - - } - } - quantizer.postdecompress_data(); -// timer.stop("Interpolation Decompress"); - - return decData; - } - - // compress given the error bound - uchar *compress(const Config &conf, T *data, size_t &compressed_size) { - std::copy_n(conf.dims.begin(), N, global_dimensions.begin()); - blocksize = conf.interpBlockSize; - interpolator_id = conf.interpAlgo; - direction_sequence_id = conf.interpDirection; - - init(); - - quant_inds.reserve(num_elements); - size_t interp_compressed_size = 0; - - double eb = quantizer.get_eb(); - - quant_inds.push_back(quantizer.quantize_and_overwrite(*data, 0)); - - Timer timer; - timer.start(); - - for (uint level = interpolation_level; level > 0 && level <= interpolation_level; level--) { - if (level >= 3) { - quantizer.set_eb(eb * eb_ratio); - } else { - quantizer.set_eb(eb); - } - size_t stride = 1U << (level - 1); - - auto inter_block_range = std::make_shared< - SZ::multi_dimensional_range>(data, std::begin(global_dimensions), - std::end(global_dimensions), - blocksize * stride, 0); - - auto inter_begin = inter_block_range->begin(); - auto inter_end = inter_block_range->end(); - - for (auto block = inter_begin; block != inter_end; ++block) { - auto end_idx = block.get_global_index(); - for (int i = 0; i < N; i++) { - end_idx[i] += blocksize * stride; - if (end_idx[i] > global_dimensions[i] - 1) { - end_idx[i] = global_dimensions[i] - 1; - } - } - - block_interpolation(data, block.get_global_index(), end_idx, PB_predict_overwrite, - interpolators[interpolator_id], direction_sequence_id, stride); - } - } - assert(quant_inds.size() == num_elements); -// timer.stop("Prediction & Quantization"); - -// writefile("pred.dat", preds.data(), num_elements); -// writefile("quant.dat", quant_inds.data(), num_elements); - encoder.preprocess_encode(quant_inds, 0); - size_t bufferSize = 1.2 * (quantizer.size_est() + encoder.size_est() + sizeof(T) * quant_inds.size()); - - uchar *buffer = new uchar[bufferSize]; - uchar *buffer_pos = buffer; - - write(global_dimensions.data(), N, buffer_pos); - write(blocksize, buffer_pos); - write(interpolator_id, buffer_pos); - write(direction_sequence_id, buffer_pos); - - quantizer.save(buffer_pos); - quantizer.postcompress_data(); - - - timer.start(); - encoder.save(buffer_pos); - encoder.encode(quant_inds, buffer_pos); - encoder.postprocess_encode(); -// timer.stop("Coding"); - assert(buffer_pos - buffer < bufferSize); - - timer.start(); - uchar *lossless_data = lossless.compress(buffer, - buffer_pos - buffer, - compressed_size); - lossless.postcompress_data(buffer); -// timer.stop("Lossless"); - - compressed_size += interp_compressed_size; - return lossless_data; - } - - private: - - enum PredictorBehavior { - PB_predict_overwrite, PB_predict, PB_recover - }; - - void init() { - assert(blocksize % 2 == 0 && "Interpolation block size should be even numbers"); - num_elements = 1; - interpolation_level = -1; - for (int i = 0; i < N; i++) { - if (interpolation_level < ceil(log2(global_dimensions[i]))) { - interpolation_level = (uint) ceil(log2(global_dimensions[i])); - } - num_elements *= global_dimensions[i]; - } - - dimension_offsets[N - 1] = 1; - for (int i = N - 2; i >= 0; i--) { - dimension_offsets[i] = dimension_offsets[i + 1] * global_dimensions[i + 1]; - } - - dimension_sequences = std::vector>(); - auto sequence = std::array(); - for (int i = 0; i < N; i++) { - sequence[i] = i; - } - do { - dimension_sequences.push_back(sequence); - } while (std::next_permutation(sequence.begin(), sequence.end())); - } - - inline void quantize(size_t idx, T &d, T pred) { - quant_inds.push_back(quantizer.quantize_and_overwrite(d, pred)); - } - - inline void recover(size_t idx, T &d, T pred) { - d = quantizer.recover(pred, quant_inds[quant_index++]); - }; - - - double block_interpolation_1d(T *data, size_t begin, size_t end, size_t stride, - const std::string &interp_func, - const PredictorBehavior pb) { - size_t n = (end - begin) / stride + 1; - if (n <= 1) { - return 0; - } - double predict_error = 0; - - size_t stride3x = 3 * stride; - size_t stride5x = 5 * stride; - if (interp_func == "linear" || n < 5) { - if (pb == PB_predict_overwrite) { - for (size_t i = 1; i + 1 < n; i += 2) { - T *d = data + begin + i * stride; - quantize(d - data, *d, interp_linear(*(d - stride), *(d + stride))); - } - if (n % 2 == 0) { - T *d = data + begin + (n - 1) * stride; - if (n < 4) { - quantize(d - data, *d, *(d - stride)); - } else { - quantize(d - data, *d, interp_linear1(*(d - stride3x), *(d - stride))); - } - } - } else { - for (size_t i = 1; i + 1 < n; i += 2) { - T *d = data + begin + i * stride; - recover(d - data, *d, interp_linear(*(d - stride), *(d + stride))); - } - if (n % 2 == 0) { - T *d = data + begin + (n - 1) * stride; - if (n < 4) { - recover(d - data, *d, *(d - stride)); - } else { - recover(d - data, *d, interp_linear1(*(d - stride3x), *(d - stride))); - } - } - } - } else { - if (pb == PB_predict_overwrite) { - - T *d; - size_t i; - for (i = 3; i + 3 < n; i += 2) { - d = data + begin + i * stride; - quantize(d - data, *d, - interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); - } - d = data + begin + stride; - quantize(d - data, *d, interp_quad_1(*(d - stride), *(d + stride), *(d + stride3x))); - - d = data + begin + i * stride; - quantize(d - data, *d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); - if (n % 2 == 0) { - d = data + begin + (n - 1) * stride; - quantize(d - data, *d, interp_quad_3(*(d - stride5x), *(d - stride3x), *(d - stride))); - } - - } else { - T *d; - - size_t i; - for (i = 3; i + 3 < n; i += 2) { - d = data + begin + i * stride; - recover(d - data, *d, interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); - } - d = data + begin + stride; - - recover(d - data, *d, interp_quad_1(*(d - stride), *(d + stride), *(d + stride3x))); - - d = data + begin + i * stride; - recover(d - data, *d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); - - if (n % 2 == 0) { - d = data + begin + (n - 1) * stride; - recover(d - data, *d, interp_quad_3(*(d - stride5x), *(d - stride3x), *(d - stride))); - } - } - } - - return predict_error; - } - - template - typename std::enable_if::type - block_interpolation(T *data, std::array begin, std::array end, const PredictorBehavior pb, - const std::string &interp_func, const int direction, size_t stride = 1) { - return block_interpolation_1d(data, begin[0], end[0], stride, interp_func, pb); - } - - template - typename std::enable_if::type - block_interpolation(T *data, std::array begin, std::array end, const PredictorBehavior pb, - const std::string &interp_func, const int direction, size_t stride = 1) { - double predict_error = 0; - size_t stride2x = stride * 2; - const std::array dims = dimension_sequences[direction]; - for (size_t j = (begin[dims[1]] ? begin[dims[1]] + stride2x : 0); j <= end[dims[1]]; j += stride2x) { - size_t begin_offset = begin[dims[0]] * dimension_offsets[dims[0]] + j * dimension_offsets[dims[1]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[0]] - begin[dims[0]]) * dimension_offsets[dims[0]], - stride * dimension_offsets[dims[0]], interp_func, pb); - } - for (size_t i = (begin[dims[0]] ? begin[dims[0]] + stride : 0); i <= end[dims[0]]; i += stride) { - size_t begin_offset = i * dimension_offsets[dims[0]] + begin[dims[1]] * dimension_offsets[dims[1]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[1]] - begin[dims[1]]) * dimension_offsets[dims[1]], - stride * dimension_offsets[dims[1]], interp_func, pb); - } - return predict_error; - } - - template - typename std::enable_if::type - block_interpolation(T *data, std::array begin, std::array end, const PredictorBehavior pb, - const std::string &interp_func, const int direction, size_t stride = 1) { - double predict_error = 0; - size_t stride2x = stride * 2; - const std::array dims = dimension_sequences[direction]; - for (size_t j = (begin[dims[1]] ? begin[dims[1]] + stride2x : 0); j <= end[dims[1]]; j += stride2x) { - for (size_t k = (begin[dims[2]] ? begin[dims[2]] + stride2x : 0); k <= end[dims[2]]; k += stride2x) { - size_t begin_offset = begin[dims[0]] * dimension_offsets[dims[0]] + j * dimension_offsets[dims[1]] + - k * dimension_offsets[dims[2]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[0]] - begin[dims[0]]) * - dimension_offsets[dims[0]], - stride * dimension_offsets[dims[0]], interp_func, pb); - } - } - for (size_t i = (begin[dims[0]] ? begin[dims[0]] + stride : 0); i <= end[dims[0]]; i += stride) { - for (size_t k = (begin[dims[2]] ? begin[dims[2]] + stride2x : 0); k <= end[dims[2]]; k += stride2x) { - size_t begin_offset = i * dimension_offsets[dims[0]] + begin[dims[1]] * dimension_offsets[dims[1]] + - k * dimension_offsets[dims[2]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[1]] - begin[dims[1]]) * - dimension_offsets[dims[1]], - stride * dimension_offsets[dims[1]], interp_func, pb); - } - } - for (size_t i = (begin[dims[0]] ? begin[dims[0]] + stride : 0); i <= end[dims[0]]; i += stride) { - for (size_t j = (begin[dims[1]] ? begin[dims[1]] + stride : 0); j <= end[dims[1]]; j += stride) { - size_t begin_offset = i * dimension_offsets[dims[0]] + j * dimension_offsets[dims[1]] + - begin[dims[2]] * dimension_offsets[dims[2]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[2]] - begin[dims[2]]) * - dimension_offsets[dims[2]], - stride * dimension_offsets[dims[2]], interp_func, pb); - } - } - return predict_error; - } - - - template - typename std::enable_if::type - block_interpolation(T *data, std::array begin, std::array end, const PredictorBehavior pb, - const std::string &interp_func, const int direction, size_t stride = 1) { - double predict_error = 0; - size_t stride2x = stride * 2; - max_error = 0; - const std::array dims = dimension_sequences[direction]; - for (size_t j = (begin[dims[1]] ? begin[dims[1]] + stride2x : 0); j <= end[dims[1]]; j += stride2x) { - for (size_t k = (begin[dims[2]] ? begin[dims[2]] + stride2x : 0); k <= end[dims[2]]; k += stride2x) { - for (size_t t = (begin[dims[3]] ? begin[dims[3]] + stride2x : 0); - t <= end[dims[3]]; t += stride2x) { - size_t begin_offset = - begin[dims[0]] * dimension_offsets[dims[0]] + j * dimension_offsets[dims[1]] + - k * dimension_offsets[dims[2]] + - t * dimension_offsets[dims[3]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[0]] - begin[dims[0]]) * - dimension_offsets[dims[0]], - stride * dimension_offsets[dims[0]], interp_func, pb); - } - } - } - max_error = 0; - for (size_t i = (begin[dims[0]] ? begin[dims[0]] + stride : 0); i <= end[dims[0]]; i += stride) { - for (size_t k = (begin[dims[2]] ? begin[dims[2]] + stride2x : 0); k <= end[dims[2]]; k += stride2x) { - for (size_t t = (begin[dims[3]] ? begin[dims[3]] + stride2x : 0); - t <= end[dims[3]]; t += stride2x) { - size_t begin_offset = - i * dimension_offsets[dims[0]] + begin[dims[1]] * dimension_offsets[dims[1]] + - k * dimension_offsets[dims[2]] + - t * dimension_offsets[dims[3]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[1]] - begin[dims[1]]) * - dimension_offsets[dims[1]], - stride * dimension_offsets[dims[1]], interp_func, pb); - } - } - } - max_error = 0; - for (size_t i = (begin[dims[0]] ? begin[dims[0]] + stride : 0); i <= end[dims[0]]; i += stride) { - for (size_t j = (begin[dims[1]] ? begin[dims[1]] + stride : 0); j <= end[dims[1]]; j += stride) { - for (size_t t = (begin[dims[3]] ? begin[dims[3]] + stride2x : 0); - t <= end[dims[3]]; t += stride2x) { - size_t begin_offset = i * dimension_offsets[dims[0]] + j * dimension_offsets[dims[1]] + - begin[dims[2]] * dimension_offsets[dims[2]] + - t * dimension_offsets[dims[3]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[2]] - begin[dims[2]]) * - dimension_offsets[dims[2]], - stride * dimension_offsets[dims[2]], interp_func, pb); - } - } - } - - max_error = 0; - for (size_t i = (begin[dims[0]] ? begin[dims[0]] + stride : 0); i <= end[dims[0]]; i += stride) { - for (size_t j = (begin[dims[1]] ? begin[dims[1]] + stride : 0); j <= end[dims[1]]; j += stride) { - for (size_t k = (begin[dims[2]] ? begin[dims[2]] + stride : 0); k <= end[dims[2]]; k += stride) { - size_t begin_offset = - i * dimension_offsets[dims[0]] + j * dimension_offsets[dims[1]] + - k * dimension_offsets[dims[2]] + - begin[dims[3]] * dimension_offsets[dims[3]]; - predict_error += block_interpolation_1d(data, begin_offset, - begin_offset + - (end[dims[3]] - begin[dims[3]]) * - dimension_offsets[dims[3]], - stride * dimension_offsets[dims[3]], interp_func, pb); - } - } - } - return predict_error; - } - - int interpolation_level = -1; - uint blocksize; - int interpolator_id; - double eb_ratio = 0.5; - std::vector interpolators = {"linear", "cubic"}; - std::vector quant_inds; - size_t quant_index = 0; // for decompress - double max_error; - Quantizer quantizer; - Encoder encoder; - Lossless lossless; - size_t num_elements; - std::array global_dimensions; - std::array dimension_offsets; - std::vector> dimension_sequences; - int direction_sequence_id; - }; - - -}; - - -#endif - diff --git a/lib/SZ3/include/SZ3/compressor/SZTruncateCompressor.hpp b/lib/SZ3/include/SZ3/compressor/SZTruncateCompressor.hpp deleted file mode 100644 index a96cc62b..00000000 --- a/lib/SZ3/include/SZ3/compressor/SZTruncateCompressor.hpp +++ /dev/null @@ -1,78 +0,0 @@ -#ifndef SZ_Truncate_COMPRESSOR_HPP -#define SZ_Truncate_COMPRESSOR_HPP - -#include "SZ3/compressor/Compressor.hpp" -#include "SZ3/frontend/Frontend.hpp" -#include "SZ3/encoder/Encoder.hpp" -#include "SZ3/lossless/Lossless.hpp" -#include "SZ3/utils/FileUtil.hpp" -#include "SZ3/utils/Config.hpp" -#include "SZ3/utils/Timer.hpp" -#include "SZ3/utils/ByteUtil.hpp" -#include "SZ3/utils/MemoryUtil.hpp" -#include "SZ3/def.hpp" -#include - -namespace SZ { - template - class SZTruncateCompressor : public concepts::CompressorInterface { - public: - - - SZTruncateCompressor(const Config &conf, Lossless lossless, int byteLens) : - lossless(lossless), conf(conf), byteLen(byteLens) { - static_assert(std::is_base_of::value, - "must implement the lossless interface"); - } - - uchar *compress(const Config &conf, T *data, size_t &compressed_size) { - - auto compressed_data = new uchar[conf.num * sizeof(T)]; - auto compressed_data_pos = (uchar *) compressed_data; - - Timer timer(true); - truncateArray(data, conf.num, byteLen, compressed_data_pos); - timer.stop("Prediction & Quantization"); - - uchar *lossless_data = lossless.compress(compressed_data, - (uchar *) compressed_data_pos - compressed_data, - compressed_size); - lossless.postcompress_data(compressed_data); - return lossless_data; - } - - T *decompress(uchar const *cmpData, const size_t &cmpSize, size_t num) { - T *dec_data = new T[num]; - return decompress(cmpData, cmpSize, dec_data); - } - - T *decompress(uchar const *cmpData, const size_t& cmpSize, T *decData) { - size_t remaining_length = cmpSize; - - auto compressed_data = lossless.decompress(cmpData, remaining_length); - auto compressed_data_pos = (uchar *) compressed_data; - - Timer timer(true); -// auto dec_data = new T[conf.num]; - truncateArrayRecover(compressed_data_pos, conf.num, byteLen, decData); - - lossless.postdecompress_data(compressed_data); - timer.stop("Prediction & Recover"); - return decData; - } - - - - private: - Lossless lossless; - Config conf; - int byteLen = 2; - }; - - template - SZTruncateCompressor - make_sz_truncate_compressor(const Config &conf, Lossless lossless, int byteLens) { - return SZTruncateCompressor(conf, lossless, byteLens); - } -} -#endif diff --git a/lib/SZ3/include/SZ3/compressor/deprecated/SZBlockInterpolationCompressor.hpp b/lib/SZ3/include/SZ3/compressor/deprecated/SZBlockInterpolationCompressor.hpp deleted file mode 100644 index 3f470e89..00000000 --- a/lib/SZ3/include/SZ3/compressor/deprecated/SZBlockInterpolationCompressor.hpp +++ /dev/null @@ -1,519 +0,0 @@ -#ifndef _SZ_BLOCK_INTERPOLATION_COMPRESSOR_HPP -#define _SZ_BLOCK_INTERPOLATION_COMPRESSOR_HPP - -#include "SZ3/predictor/Predictor.hpp" -#include "SZ3/quantizer/Quantizer.hpp" -#include "SZ3/encoder/Encoder.hpp" -#include "SZ3/lossless/Lossless.hpp" -#include "SZ3/utils/Iterator.hpp" -#include "SZ3/utils/MemoryUtil.hpp" -#include "SZ3/utils/Config.hpp" -#include "SZ3/utils/FileUtil.hpp" -#include "SZ3/utils/Interpolators.hpp" -#include "SZ3/def.hpp" -#include -#include - -namespace SZ { - template - class SZBlockInterpolationCompressor { - public: - - - SZBlockInterpolationCompressor(Quantizer quantizer, Encoder encoder, Lossless lossless) : - quantizer(quantizer), encoder(encoder), lossless(lossless) { - - static_assert(std::is_base_of, Quantizer>::value, - "must implement the quatizer interface"); - static_assert(std::is_base_of, Encoder>::value, - "must implement the encoder interface"); - static_assert(std::is_base_of::value, - "must implement the lossless interface"); - - } - - T *decompress(uchar const *cmpData, const size_t &cmpSize, size_t num) { - T *dec_data = new T[num]; - return decompress(cmpData, cmpSize, dec_data); - } - - T *decompress(uchar const *cmpData, const size_t &cmpSize, T *decData) { - - size_t remaining_length = cmpSize; - - uchar *buffer = lossless.decompress(cmpData, remaining_length); - uchar const *buffer_pos = buffer; - - read(global_dimensions.data(), N, buffer_pos, remaining_length); - num_elements = 1; - for (const auto &d: global_dimensions) { - num_elements *= d; - } - read(block_size, buffer_pos, remaining_length); - read(interpolator_id, buffer_pos, remaining_length); - read(direction_sequence_id, buffer_pos, remaining_length); - - quantizer.load(buffer_pos, remaining_length); - encoder.load(buffer_pos, remaining_length); - quant_inds = encoder.decode(buffer_pos, num_elements); - - encoder.postprocess_decode(); - - lossless.postdecompress_data(buffer); - - auto range = std::make_shared>(decData, - std::begin(global_dimensions), - std::end(global_dimensions), - block_size, - 0); - - quantizer.predecompress_data(); - -// debug.resize(num_elements, 0); - - auto inter_begin = range->begin(); - auto inter_end = range->end(); - size_t block_idx = 0; - - for (auto block = inter_begin; block != inter_end; block++) { - auto interp_end_idx = block.get_global_index(); - uint max_interp_level = 1; - auto block_global_idx = block.get_global_index(); - for (int i = 0; i < N; i++) { - size_t block_dim = (block_global_idx[i] + block_size > global_dimensions[i]) ? - global_dimensions[i] - block_global_idx[i] : block_size; - interp_end_idx[i] += block_dim - 1; - if (max_interp_level < ceil(log2(block_dim))) { - max_interp_level = (uint) ceil(log2(block_dim)); - } - } - - *block = quantizer.recover(0, quant_inds[quant_index++]); - - for (uint level = max_interp_level; level > 0 && level <= max_interp_level; level--) { - size_t stride_ip = 1U << (level - 1); - block_interpolation(decData, block.get_global_index(), interp_end_idx, PB_recover, - interpolators[interpolator_id], direction_sequence_id, stride_ip); - } - } - - -// assert(quant_index == num_elements); - quantizer.postdecompress_data(); - - return decData; - } - - - // compress given the error bound - uchar *compress(const Config &conf, T *data, size_t &compressed_size) { - - block_size = conf.blockSize; - num_elements = conf.num; - interpolator_id = conf.interpAlgo; - direction_sequence_id = conf.interpDirection; - - - std::copy_n(conf.dims.begin(), N, global_dimensions.begin()); - - quant_inds.clear(); - auto range = std::make_shared>(data, - std::begin(global_dimensions), - std::end(global_dimensions), - block_size, 0); - quantizer.precompress_data(); - for (auto block = range->begin(); block != range->end(); ++block) { - - auto block_global_idx = block.get_global_index(); - auto interp_end_idx = block.get_global_index(); - uint max_interp_level = 1; - for (int i = 0; i < N; i++) { - size_t block_dim = (block_global_idx[i] + block_size > global_dimensions[i]) ? - global_dimensions[i] - block_global_idx[i] : block_size; - interp_end_idx[i] += block_dim - 1; - if (max_interp_level < ceil(log2(block_dim))) { - max_interp_level = (uint) ceil(log2(block_dim)); - } - } - quant_inds.push_back(quantizer.quantize_and_overwrite(*block, 0)); - - for (uint level = max_interp_level; level > 0 && level <= max_interp_level; level--) { - uint stride_ip = 1U << (level - 1); - block_interpolation(data, block.get_global_index(), interp_end_idx, PB_predict_overwrite, - interpolators[interpolator_id], direction_sequence_id, stride_ip); - } - } - quantizer.postcompress_data(); -// predictor.print(); - - encoder.preprocess_encode(quant_inds, 0); - size_t bufferSize = 1.2 * (quantizer.size_est() + encoder.size_est() + sizeof(T) * quant_inds.size()); - - uchar *buffer = new uchar[bufferSize]; - uchar *buffer_pos = buffer; - - write(global_dimensions.data(), N, buffer_pos); - write(block_size, buffer_pos); - write(interpolator_id, buffer_pos); - write(direction_sequence_id, buffer_pos); - - quantizer.save(buffer_pos); - - encoder.save(buffer_pos); - encoder.encode(quant_inds, buffer_pos); - encoder.postprocess_encode(); - - assert(buffer_pos - buffer < bufferSize); - - uchar *lossless_data = lossless.compress(buffer, - buffer_pos - buffer, - compressed_size); - lossless.postcompress_data(buffer); - - return lossless_data; - } - - private: - - enum PredictorBehavior { - PB_predict_overwrite, PB_predict, PB_recover - }; - - size_t offset2(std::array idx) { - size_t offset = idx[0]; - for (int i = 1; i < N; i++) { - offset = offset * global_dimensions[i] + idx[i]; - } - return offset; - } - - template - size_t offset(Args &&... args) { - std::array idx{static_cast(std::forward(args))...}; - return offset2(idx); - } - - inline void quantize(T &d, T pred) { - quant_inds.push_back(quantizer.quantize_and_overwrite(d, pred)); - } - - inline void recover(T &d, T pred) { - d = quantizer.recover(pred, quant_inds[quant_index++]); - }; - - - double block_interpolation_1d(T *data, size_t begin, size_t end, size_t stride, - const std::string &interp_func, - const PredictorBehavior pb) { - size_t n = (end - begin) / stride + 1; - if (n <= 1) { - return 0; - } - double predict_error = 0; - - size_t stride3x = 3 * stride; - size_t stride5x = 5 * stride; - if (interp_func == "linear" || n < 5) { - if (pb == PB_predict_overwrite) { - for (size_t i = 1; i + 1 < n; i += 2) { - T *d = data + begin + i * stride; - quantize(*d, interp_linear(*(d - stride), *(d + stride))); - } - if (n % 2 == 0) { - T *d = data + begin + (n - 1) * stride; - if (n < 4) { - quantize(*d, *(d - stride)); - } else { - quantize(*d, interp_linear1(*(d - stride3x), *(d - stride))); - } - } - } else { - for (size_t i = 1; i + 1 < n; i += 2) { - T *d = data + begin + i * stride; - recover(*d, interp_linear(*(d - stride), *(d + stride))); - } - if (n % 2 == 0) { - T *d = data + begin + (n - 1) * stride; - if (n < 4) { - recover(*d, *(d - stride)); - } else { - recover(*d, interp_linear1(*(d - stride3x), *(d - stride))); - } - } - } - } else { - if (pb == PB_predict_overwrite) { - - T *d = data + begin + stride; - quantize(*d, interp_quad_1(*(d - stride), *(d + stride), *(d + stride3x))); - - for (size_t i = 3; i + 3 < n; i += 2) { - d = data + begin + i * stride; - quantize(*d, interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); - } - if (n % 2 == 0) { - d = data + begin + (n - 3) * stride; - quantize(*d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); - d += 2 * stride; - quantize(*d, interp_quad_3(*(d - stride5x), *(d - stride3x), *(d - stride))); - } else { - d = data + begin + (n - 2) * stride; - quantize(*d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); - } - } else { - T *d = data + begin + stride; - recover(*d, interp_quad_1(*(d - stride), *(d + stride), *(d + stride3x))); - - for (size_t i = 3; i + 3 < n; i += 2) { - d = data + begin + i * stride; - recover(*d, interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); - } - if (n % 2 == 0) { - d = data + begin + (n - 3) * stride; - recover(*d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); - d += 2 * stride; - recover(*d, interp_quad_3(*(d - stride5x), *(d - stride3x), *(d - stride))); - } else { - d = data + begin + (n - 2) * stride; - recover(*d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); - } - - } - } - return predict_error; - } - - template - typename std::enable_if::type - block_interpolation(T *data, std::array begin, std::array end, const PredictorBehavior pb, - const std::string &interp_func, const int direction, uint stride_ip = 1) { - return block_interpolation_1d(data, offset2(begin), offset2(end), stride_ip, interp_func, pb); - } - - template - typename std::enable_if::type - block_interpolation(T *data, std::array begin, std::array end, const PredictorBehavior pb, - const std::string &interp_func, const int direction, uint stride_ip = 1) { - double predict_error = 0; - size_t stride_ip2 = stride_ip * 2; - if (direction == 0) { - for (size_t j = begin[1]; j <= end[1]; j += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(begin[0], j), offset(end[0], j), - stride_ip * global_dimensions[1], - interp_func, pb); - } - for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { - predict_error += block_interpolation_1d(data, offset(i, begin[1]), offset(i, end[1]), stride_ip, interp_func, - pb); - } - } else { - for (size_t i = begin[0]; i <= end[0]; i += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(i, begin[1]), offset(i, end[1]), stride_ip, interp_func, - pb); - } - for (size_t j = begin[1]; j <= end[1]; j += stride_ip) { - predict_error += block_interpolation_1d(data, offset(begin[0], j), offset(end[0], j), - stride_ip * global_dimensions[1], - interp_func, pb); - } - } - return predict_error; - } - - template - typename std::enable_if::type - block_interpolation(T *data, std::array begin, std::array end, const PredictorBehavior pb, - const std::string &interp_func, const int direction, uint stride_ip = 1) { - double predict_error = 0; - size_t stride_ip2 = stride_ip * 2; - for (size_t j = begin[1]; j <= end[1]; j += stride_ip2) { - for (size_t k = begin[2]; k <= end[2]; k += stride_ip2) { - for (size_t t = (begin[3] ? begin[3] + stride_ip2 : 0); t <= end[3]; t += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(begin[0], j, k, t), offset(end[0], j, k, t), - stride_ip * global_dimensions[1] * global_dimensions[2] * - global_dimensions[3], - interp_func, pb); - } - } - } - for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { - for (size_t k = begin[2]; k <= end[2]; k += stride_ip2) { - for (size_t t = (begin[3] ? begin[3] + stride_ip2 : 0); t <= end[3]; t += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(i, begin[1], k, t), offset(i, end[1], k, t), - stride_ip * global_dimensions[2] * global_dimensions[3], - interp_func, pb); - } - } - } - for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { - for (size_t j = begin[1]; j <= end[1]; j += stride_ip) { - for (size_t t = (begin[3] ? begin[3] + stride_ip2 : 0); t <= end[3]; t += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(i, j, begin[2], t), offset(i, j, end[2], t), - stride_ip * global_dimensions[3], - interp_func, pb); - } - } - } - for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { - for (size_t j = begin[1]; j <= end[1]; j += stride_ip) { - for (size_t k = begin[2]; k <= end[2]; k += stride_ip) { - predict_error += block_interpolation_1d(data, offset(i, j, k, begin[3]), offset(i, j, k, end[3]), - stride_ip, interp_func, pb); - } - } - } - return predict_error; - } - - template - typename std::enable_if::type - block_interpolation(T *data, std::array begin, std::array end, const PredictorBehavior pb, - const std::string &interp_func, const int direction, uint stride_ip = 1) { - double predict_error = 0; - size_t stride_ip2 = stride_ip * 2; - - if (direction == 0 || direction == 1) { - for (size_t j = begin[1]; j <= end[1]; j += stride_ip2) { - for (size_t k = begin[2]; k <= end[2]; k += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(begin[0], j, k), offset(end[0], j, k), - stride_ip * global_dimensions[1] * global_dimensions[2], - interp_func, - pb); - } - } - if (direction == 0) { - for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { - for (size_t k = begin[2]; k <= end[2]; k += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(i, begin[1], k), offset(i, end[1], k), - stride_ip * global_dimensions[2], - interp_func, pb); - } - } - for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { - for (size_t j = begin[1]; j <= end[1]; j += stride_ip) { - predict_error += block_interpolation_1d(data, offset(i, j, begin[2]), offset(i, j, end[2]), stride_ip, - interp_func, - pb); - } - } - } else { - for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { - for (size_t j = begin[1]; j <= end[1]; j += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(i, j, begin[2]), offset(i, j, end[2]), stride_ip, - interp_func, - pb); - } - } - for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { - for (size_t k = begin[2]; k <= end[2]; k += stride_ip) { - predict_error += block_interpolation_1d(data, offset(i, begin[1], k), offset(i, end[1], k), - stride_ip * global_dimensions[2], - interp_func, pb); - } - } - } - - } else if (direction == 2 || direction == 3) { - for (size_t k = begin[0]; k <= end[0]; k += stride_ip2) { - for (size_t j = begin[2]; j <= end[2]; j += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(k, begin[1], j), offset(k, end[1], j), - stride_ip * global_dimensions[2], - interp_func, - pb); - } - } - if (direction == 2) { - for (size_t i = begin[1]; i <= end[1]; i += stride_ip) { - for (size_t j = begin[2]; j <= end[2]; j += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(begin[0], i, j), offset(end[0], i, j), - stride_ip * global_dimensions[1] * global_dimensions[2], - interp_func, - pb); - } - } - for (size_t k = begin[0]; k <= end[0]; k += stride_ip) { - for (size_t i = begin[1]; i <= end[1]; i += stride_ip) { - predict_error += block_interpolation_1d(data, offset(k, i, begin[2]), offset(k, i, end[2]), - stride_ip, - interp_func, pb); - } - } - } else { - for (size_t k = begin[0]; k <= end[0]; k += stride_ip2) { - for (size_t i = begin[1]; i <= end[1]; i += stride_ip) { - predict_error += block_interpolation_1d(data, offset(k, i, begin[2]), offset(k, i, end[2]), - stride_ip, - interp_func, pb); - } - } - for (size_t i = begin[1]; i <= end[1]; i += stride_ip) { - for (size_t j = begin[2]; j <= end[2]; j += stride_ip) { - predict_error += block_interpolation_1d(data, offset(begin[0], i, j), offset(end[0], i, j), - stride_ip * global_dimensions[1] * global_dimensions[2], - interp_func, - pb); - } - } - } - - } else if (direction == 4 || direction == 5) { - - for (size_t j = begin[0]; j <= end[0]; j += stride_ip2) { - for (size_t k = begin[1]; k <= end[1]; k += stride_ip2) { - predict_error += block_interpolation_1d(data, offset(j, k, begin[2]), offset(j, k, end[2]), - stride_ip, interp_func, pb); - } - } - if (direction == 4) { - for (size_t k = begin[1]; k <= end[1]; k += stride_ip2) { - for (size_t i = begin[2]; i <= end[2]; i += stride_ip) { - predict_error += block_interpolation_1d(data, offset(begin[0], k, i), offset(end[0], k, i), - stride_ip * global_dimensions[1] * global_dimensions[2], - interp_func, pb); - } - } - for (size_t j = begin[0]; j <= end[0]; j += stride_ip) { - for (size_t i = begin[2]; i <= end[2]; i += stride_ip) { - predict_error += block_interpolation_1d(data, offset(j, begin[1], i), offset(j, end[1], i), - stride_ip * global_dimensions[2], interp_func, - pb); - } - } - } else { - for (size_t j = begin[0]; j <= end[0]; j += stride_ip2) { - for (size_t i = begin[2]; i <= end[2]; i += stride_ip) { - predict_error += block_interpolation_1d(data, offset(j, begin[1], i), offset(j, end[1], i), - stride_ip * global_dimensions[2], interp_func, - pb); - } - } - for (size_t k = begin[1]; k <= end[1]; k += stride_ip) { - for (size_t i = begin[2]; i <= end[2]; i += stride_ip) { - predict_error += block_interpolation_1d(data, offset(begin[0], k, i), offset(end[0], k, i), - stride_ip * global_dimensions[1] * global_dimensions[2], - interp_func, pb); - } - } - } - } - return predict_error; - } - - int interpolator_id; - int direction_sequence_id; - std::vector interpolators = {"linear", "cubic"}; - std::vector quant_inds; - size_t quant_index = 0; // for decompress - Quantizer quantizer; - Encoder encoder; - Lossless lossless; - uint block_size; - size_t num_elements; - std::array global_dimensions; - }; - -}; - - -#endif - diff --git a/lib/SZ3/include/SZ3/compressor/specialized/SZExaaltCompressor.hpp b/lib/SZ3/include/SZ3/compressor/specialized/SZExaaltCompressor.hpp new file mode 100644 index 00000000..a62e33f6 --- /dev/null +++ b/lib/SZ3/include/SZ3/compressor/specialized/SZExaaltCompressor.hpp @@ -0,0 +1,212 @@ +#ifndef SZ3_EXAALT_COMPRESSSOR_HPP +#define SZ3_EXAALT_COMPRESSSOR_HPP + +#include "SZ3/def.hpp" +#include "SZ3/encoder/Encoder.hpp" +#include "SZ3/lossless/Lossless.hpp" +#include "SZ3/predictor/LorenzoPredictor.hpp" +#include "SZ3/predictor/Predictor.hpp" +#include "SZ3/quantizer/Quantizer.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/Iterator.hpp" +#include "SZ3/utils/MemoryUtil.hpp" + +/** + * specialized compressor for solid-state molecular dynamics simulation data + * it utilizes the data character of levels to boost compression ratio + * see ICDE'22 MDZ paper for details + */ +namespace SZ3 { +template +class SZExaaltCompressor : public SZ3::concepts::CompressorInterface { + public: + SZExaaltCompressor(Quantizer quantizer, Encoder encoder, Lossless lossless, int timestep_op) + : quantizer(quantizer), encoder(encoder), lossless(lossless), timestep_op(timestep_op) { + static_assert(std::is_base_of, Quantizer>::value, + "must implement the quatizer interface"); + static_assert(std::is_base_of, Encoder>::value, + "must implement the encoder interface"); + static_assert(std::is_base_of::value, + "must implement the lossless interface"); + } + + // compress given the error bound + // uchar *compress(T *data, size_t &compressed_size) { + size_t compress(const Config &conf, T *data, uchar *cmpData, size_t cmpCap) override { + assert(!(timestep_op > 0 && conf.dims.size() != 2) && "timestep prediction requires 2d dataset"); + + std::vector quant_inds(conf.num); + std::vector pred_inds(conf.num); + quantizer.precompress_data(); + + // Timer timer(true); + + auto l0 = quantize_to_level(data[0]); + pred_inds[0] = l0 + level_num; + quant_inds[0] = quantizer.quantize_and_overwrite(data[0], level(l0)); + + if (timestep_op == 0) { + for (size_t i = 1; i < conf.num; i++) { + auto l = quantize_to_level(data[i]); + pred_inds[i] = l - l0 + level_num; + quant_inds[i] = quantizer.quantize_and_overwrite(data[i], level(l)); + l0 = l; + } + } else { + std::vector levels(conf.dims[1]); + levels[0] = l0; + for (size_t i = 1; i < conf.dims[1]; i++) { + levels[i] = quantize_to_level(data[i]); + pred_inds[i] = levels[i] - levels[i - 1] + level_num; + quant_inds[i] = quantizer.quantize_and_overwrite(data[i], level(levels[i])); + } + auto pred_idx = conf.dims[1]; + if (timestep_op == 1) { + for (size_t i = 0; i < conf.dims[1]; i++) { + for (size_t t = 1; t < conf.dims[0]; t++) { + size_t idx = t * conf.dims[1] + i; + quant_inds[pred_idx++] = + quantizer.quantize_and_overwrite(data[idx], data[(t - 1) * conf.dims[1] + i]); + } + } + pred_inds.resize(conf.dims[1]); + } else { + for (size_t i = 0; i < conf.dims[1]; i++) { + l0 = levels[i]; + for (size_t t = 1; t < conf.dims[0]; t++) { + size_t idx = t * conf.dims[1] + i; + auto l = quantize_to_level(data[idx]); + pred_inds[pred_idx] = l - l0 + level_num; + quant_inds[pred_idx++] = quantizer.quantize_and_overwrite(data[idx], level(l)); + l0 = l; + } + } + } + assert(pred_idx == conf.num); + } + + // timer.stop("Predition & Quantization"); + + quantizer.postcompress_data(); + + auto buffer = static_cast(malloc(4 * conf.num * sizeof(T))); + uchar *buffer_pos = buffer; + quantizer.save(buffer_pos); + // quantizer.print(); + + + if (quantizer.get_out_range().first != 0) { + throw std::runtime_error("The output range of the quantizer must start from 0 for this compressor"); + } + encoder.preprocess_encode(quant_inds, quantizer.get_out_range().second); + encoder.save(buffer_pos); + encoder.encode(quant_inds, buffer_pos); + encoder.postprocess_encode(); + + // std::cout << *std::min_element(pred_inds.begin(), pred_inds.end()) << std::endl; + // std::cout << *std::max_element(pred_inds.begin(), pred_inds.end()) << std::endl; + + encoder.preprocess_encode(pred_inds, level_num * 2 + 1); + encoder.save(buffer_pos); + encoder.encode(pred_inds, buffer_pos); + encoder.postprocess_encode(); + + auto cmpSize = lossless.compress(buffer, buffer_pos - buffer, cmpData, cmpCap); + free(buffer); + return cmpSize; + } + + // T *decompress(uchar const *lossless_compressed_data, const size_t length) { + T *decompress(const Config &conf, uchar const *cmpData, size_t cmpSize, T *dec_data) override { + uchar *buffer = nullptr; + size_t bufferSize = 0; + lossless.decompress(cmpData, cmpSize, buffer, bufferSize); + size_t remaining_length = cmpSize; + uchar const *buffer_pos = buffer; + + quantizer.load(buffer_pos, remaining_length); + encoder.load(buffer_pos, remaining_length); + auto quant_inds = encoder.decode(buffer_pos, conf.num); + encoder.postprocess_decode(); + + encoder.load(buffer_pos, remaining_length); + auto pred_inds_num = (timestep_op == 1) ? conf.dims[1] : conf.num; + auto pred_inds = encoder.decode(buffer_pos, pred_inds_num); + encoder.postprocess_decode(); + + free(buffer); + + quantizer.predecompress_data(); + + auto l = pred_inds[0] - level_num; + dec_data[0] = quantizer.recover(level(l), quant_inds[0]); + + if (timestep_op == 0) { + for (size_t i = 1; i < conf.num; i++) { + l += pred_inds[i] - level_num; + dec_data[i] = quantizer.recover(level(l), quant_inds[i]); + } + } else { + std::vector levels(conf.dims[1]); + levels[0] = l; + for (size_t i = 1; i < conf.dims[1]; i++) { + l += pred_inds[i] - level_num; + dec_data[i] = quantizer.recover(level(l), quant_inds[i]); + levels[i] = l; + } + auto pred_idx = conf.dims[1]; + if (timestep_op == 1) { + for (size_t i = 0; i < conf.dims[1]; i++) { + for (size_t t = 1; t < conf.dims[0]; t++) { + dec_data[t * conf.dims[1] + i] = + quantizer.recover(dec_data[(t - 1) * conf.dims[1] + i], quant_inds[pred_idx++]); + } + } + } else { + for (size_t i = 0; i < conf.dims[1]; i++) { + l = levels[i]; + for (size_t t = 1; t < conf.dims[0]; t++) { + size_t idx = t * conf.dims[1] + i; + l += pred_inds[pred_idx] - level_num; + dec_data[idx] = quantizer.recover(level(l), quant_inds[pred_idx++]); + } + } + } + assert(pred_idx == conf.num); + } + + quantizer.postdecompress_data(); + encoder.postprocess_decode(); + return dec_data; + } + + void set_level(float level_start_, float level_offset_, int level_num_) { + this->level_start = level_start_; + this->level_offset = level_offset_; + this->level_num = level_num_ + 200; + } + + inline int quantize_to_level(T data) { return round((data - level_start) / level_offset); } + + inline T level(int l) { return level_start + l * level_offset; } + + private: + Quantizer quantizer; + Encoder encoder; + Lossless lossless; + float level_start{}; + float level_offset{}; + int level_num{}; + int timestep_op; +}; + +template +std::shared_ptr> make_compressor_exaalt(Quantizer quantizer, + Encoder encoder, + Lossless lossless, + int timestep_op) { + return std::make_shared>(quantizer, encoder, lossless, + timestep_op); +} +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/compressor/specialized/SZTruncateCompressor.hpp b/lib/SZ3/include/SZ3/compressor/specialized/SZTruncateCompressor.hpp new file mode 100644 index 00000000..f4d3b766 --- /dev/null +++ b/lib/SZ3/include/SZ3/compressor/specialized/SZTruncateCompressor.hpp @@ -0,0 +1,71 @@ +#ifndef SZ3_Truncate_COMPRESSOR_HPP +#define SZ3_Truncate_COMPRESSOR_HPP + +#include + +#include "SZ3/compressor/Compressor.hpp" +#include "SZ3/decomposition/Decomposition.hpp" +#include "SZ3/def.hpp" +#include "SZ3/encoder/Encoder.hpp" +#include "SZ3/lossless/Lossless.hpp" +#include "SZ3/utils/ByteUtil.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/FileUtil.hpp" +#include "SZ3/utils/MemoryUtil.hpp" +#include "SZ3/utils/Timer.hpp" + +/** + */ +namespace SZ3 { +template +class SZTruncateCompressor : public concepts::CompressorInterface { + public: + SZTruncateCompressor(const Config &conf, Lossless lossless, int byteLens) + : lossless(lossless), conf(conf), byteLen(byteLens) { + static_assert(std::is_base_of::value, + "must implement the lossless interface"); + } + + size_t compress(const Config &conf, T *data, uchar *cmpData, size_t cmpCap) override { + auto buffer = static_cast(malloc(conf.num * sizeof(T))); + auto buffer_pos = buffer; + + // Timer timer(true); + truncateArray(data, conf.num, byteLen, buffer_pos); + // timer.stop("Prediction & Quantization"); + + auto cmpSize = lossless.compress(buffer, buffer_pos - buffer, cmpData, cmpCap); + free(buffer); + return cmpSize; + // lossless.postcompress_data(buffer); + // return lossless_data; + } + + T *decompress(const Config &conf, uchar const *cmpData, size_t cmpSize, T *decData) override { + uchar *buffer = nullptr; + size_t bufferSize = 0; + lossless.decompress(cmpData, cmpSize, buffer, bufferSize); + // size_t remaining_length = bufferCap; + uchar const *buffer_pos = buffer; + + // Timer timer(true); + // auto dec_data = new T[conf.num]; + truncateArrayRecover(buffer_pos, conf.num, byteLen, decData); + + lossless.postdecompress_data(buffer); + // timer.stop("Prediction & Recover"); + return decData; + } + + private: + Lossless lossless; + Config conf; + int byteLen = 2; +}; + +template +SZTruncateCompressor make_sz_truncate_compressor(const Config &conf, Lossless lossless, int byteLens) { + return SZTruncateCompressor(conf, lossless, byteLens); +} +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/decomposition/BlockwiseDecomposition.hpp b/lib/SZ3/include/SZ3/decomposition/BlockwiseDecomposition.hpp new file mode 100644 index 00000000..f462f717 --- /dev/null +++ b/lib/SZ3/include/SZ3/decomposition/BlockwiseDecomposition.hpp @@ -0,0 +1,96 @@ +#ifndef SZ3_BLOCKWISE_DECOMPOSITION_HPP +#define SZ3_BLOCKWISE_DECOMPOSITION_HPP + +#include + +#include "Decomposition.hpp" +#include "SZ3/def.hpp" +#include "SZ3/predictor/LorenzoPredictor.hpp" +#include "SZ3/predictor/Predictor.hpp" +#include "SZ3/quantizer/LinearQuantizer.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/FileUtil.hpp" +#include "SZ3/utils/Iterator.hpp" +#include "SZ3/utils/Timer.hpp" + +namespace SZ3 { +template +class BlockwiseDecomposition : public concepts::DecompositionInterface { + public: + using Block_iter = typename block_data::block_iterator; + + BlockwiseDecomposition(const Config &conf, Predictor predictor, Quantizer quantizer) + : fallback_predictor(conf.absErrorBound), predictor(predictor), quantizer(quantizer) { + static_assert(std::is_base_of, Predictor>::value, + "must implement the Predictor interface"); + } + + std::vector compress(const Config &conf, T *data) override { + auto data_with_padding = std::make_shared>(data, conf.dims, predictor.get_padding(), true); + auto block = data_with_padding->block_iter(conf.blockSize); + std::vector quant_inds; + quant_inds.reserve(conf.num); + do { + concepts::PredictorInterface *predictor_withfallback = &predictor; + if (!predictor.precompress(block)) { + predictor_withfallback = &fallback_predictor; + } + predictor_withfallback->precompress_block_commit(); + Block_iter::foreach (block, [&](T *c, const std::array &index) { + T pred = predictor_withfallback->predict(block, c, index); + quant_inds.push_back(quantizer.quantize_and_overwrite(*c, pred)); + }); + + } while (block.next()); + return quant_inds; + } + + T *decompress(const Config &conf, std::vector &quant_inds, T *dec_data) override { + int *quant_inds_pos = &quant_inds[0]; + + auto data_with_padding = + std::make_shared>(dec_data, conf.dims, predictor.get_padding(), false); + auto block = data_with_padding->block_iter(conf.blockSize); + do { + concepts::PredictorInterface *predictor_withfallback = &predictor; + if (!predictor.predecompress(block)) { + predictor_withfallback = &fallback_predictor; + } + Block_iter::foreach (block, [&](T *c, const std::array &index) { + T pred = predictor_withfallback->predict(block, c, index); + *c = quantizer.recover(pred, *(quant_inds_pos++)); + }); + + } while (block.next()); + + return dec_data; + } + + void save(uchar *&c) override { + fallback_predictor.save(c); + predictor.save(c); + quantizer.save(c); + } + + void load(const uchar *&c, size_t &remaining_length) override { + fallback_predictor.load(c, remaining_length); + predictor.load(c, remaining_length); + quantizer.load(c, remaining_length); + } + + std::pair get_out_range() override { return quantizer.get_out_range(); } + + private: + Predictor predictor; + Quantizer quantizer; + LorenzoPredictor fallback_predictor; +}; + +template +BlockwiseDecomposition make_decomposition_blockwise(const Config &conf, Predictor predictor, + Quantizer quantizer) { + return BlockwiseDecomposition(conf, predictor, quantizer); +} + +} // namespace SZ3 +#endif diff --git a/lib/SZ3/include/SZ3/decomposition/Decomposition.hpp b/lib/SZ3/include/SZ3/decomposition/Decomposition.hpp new file mode 100644 index 00000000..2661d101 --- /dev/null +++ b/lib/SZ3/include/SZ3/decomposition/Decomposition.hpp @@ -0,0 +1,65 @@ +#ifndef SZ3_DECOMPOSITION_INTERFACE +#define SZ3_DECOMPOSITION_INTERFACE + +#include + +#include "SZ3/def.hpp" + +namespace SZ3::concepts { + +/** + * Decomposition represents the lossy part in compressors (which typically converts original data to integers, e.g., + * prediction + quantization). Note: SZ3 has both Predictor and Decomposition interfaces. You should choose Predictor + * interface only when the new prediction method takes scalar value. In all other cases, use this Decomposition + * interface. + * @tparam Ti original data type + * @tparam To decomposed data type + * @tparam N original data dimension + */ +template > +class DecompositionInterface { + public: + virtual ~DecompositionInterface() = default; + + /** + * predict the data and quantize the error + * @param data original input + * @return quantized prediction error + */ + virtual std::vector compress(const Config &conf, Ti *data) = 0; + + /** + * reverse of compress(), reconstruct the data + * @param quant_inds quantized prediction error + * @param dec_data place to write the reconstructed data + * @return same value with dec_data + */ + virtual Ti *decompress(const Config &conf, std::vector &quant_inds, Ti *dec_data) = 0; + + /** + * serialize the frontend and store it to a buffer + * @param c One large buffer is pre-allocated, and the start location of the serialized frontend in the buffer is + * indicated by c. After saving the frontend to the buffer, this function should change c to indicate the next empty + * location in the buffer + */ + virtual void save(uchar *&c) = 0; + + /** + * deserialize the frontend from a buffer + * @param c start location of the frontend in the buffer + * @param remaining_length the remaining length of the buffer + */ + virtual void load(const uchar *&c, size_t &remaining_length) = 0; + + virtual size_t size_est() { return 0; } + + virtual std::pair get_out_range() = 0; + + virtual void print() {} + + // virtual void clear() {}; +}; + +} // namespace SZ3::concepts + +#endif diff --git a/lib/SZ3/include/SZ3/decomposition/InterpolationDecomposition.hpp b/lib/SZ3/include/SZ3/decomposition/InterpolationDecomposition.hpp new file mode 100644 index 00000000..68494a9e --- /dev/null +++ b/lib/SZ3/include/SZ3/decomposition/InterpolationDecomposition.hpp @@ -0,0 +1,482 @@ +#ifndef SZ3_INTERPOLATION_DECOMPOSITION_HPP +#define SZ3_INTERPOLATION_DECOMPOSITION_HPP + +#include +#include + +#include "Decomposition.hpp" +#include "SZ3/def.hpp" +#include "SZ3/quantizer/Quantizer.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/FileUtil.hpp" +#include "SZ3/utils/Interpolators.hpp" +#include "SZ3/utils/Iterator.hpp" +#include "SZ3/utils/MemoryUtil.hpp" +#include "SZ3/utils/Timer.hpp" + +namespace SZ3 { +template +class InterpolationDecomposition : public concepts::DecompositionInterface { + public: + InterpolationDecomposition(const Config &conf, Quantizer quantizer) : quantizer(quantizer) { + static_assert(std::is_base_of, Quantizer>::value, + "must implement the quantizer interface"); + } + + T *decompress(const Config &conf, std::vector &quant_inds, T *dec_data) override { + init(); + + this->quant_inds = quant_inds.data(); + double eb = quantizer.get_eb(); + + if (anchor_stride == 0) { // check whether used anchor points + *dec_data = quantizer.recover(0, this->quant_inds[quant_index++]); // no anchor points + } else { + recover_anchor_grid(dec_data); // recover anchor points + interp_level--; + } + + for (uint level = interp_level; level > 0 && level <= interp_level; level--) { + // set level-wise error bound + if (eb_alpha < 0) { + if (level >= 3) { + quantizer.set_eb(eb * eb_ratio); + } else { + quantizer.set_eb(eb); + } + } else if (eb_alpha >= 1) { + double cur_ratio = pow(eb_alpha, level - 1); + if (cur_ratio > eb_beta) { + cur_ratio = eb_beta; + } + quantizer.set_eb(eb / cur_ratio); + } + size_t stride = 1U << (level - 1); + auto interp_block_size = blocksize * stride; + auto inter_block_range = std::make_shared>( + dec_data, std::begin(original_dimensions), std::end(original_dimensions), interp_block_size, 0); + auto inter_begin = inter_block_range->begin(); + auto inter_end = inter_block_range->end(); + for (auto block = inter_begin; block != inter_end; ++block) { + auto end_idx = block.get_global_index(); + for (int i = 0; i < N; i++) { + end_idx[i] += interp_block_size; + if (end_idx[i] > original_dimensions[i] - 1) { + end_idx[i] = original_dimensions[i] - 1; + } + } + interpolation( + dec_data, block.get_global_index(), end_idx, interpolators[interp_id], + [&](size_t idx, T &d, T pred) { d = quantizer.recover(pred, quant_inds[quant_index++]); }, + direction_sequence_id, stride); + } + } + quantizer.postdecompress_data(); + return dec_data; + } + + // compress given the error bound + std::vector compress(const Config &conf, T *data) override { + std::copy_n(conf.dims.begin(), N, original_dimensions.begin()); + + interp_id = conf.interpAlgo; + direction_sequence_id = conf.interpDirection; + anchor_stride = conf.interpAnchorStride; + blocksize = 32; // a empirical value. Can be very large but not helpful + eb_alpha = conf.interpAlpha; + eb_beta = conf.interpBeta; + + init(); + std::vector quant_inds_vec(num_elements); + quant_inds = quant_inds_vec.data(); + double eb = quantizer.get_eb(); + if (anchor_stride == 0) { // check whether to use anchor points + quant_inds[quant_index++] = quantizer.quantize_and_overwrite(*data, 0); // no + } else { + build_anchor_grid(data); // losslessly saving anchor points + interp_level--; + } + + for (uint level = interp_level; level > 0 && level <= interp_level; level--) { + double cur_eb = eb; + // set level-wise error bound + if (eb_alpha < 0) { + if (level >= 3) { + cur_eb = eb * eb_ratio; + } else { + cur_eb = eb; + } + } else if (eb_alpha >= 1) { + double cur_ratio = pow(eb_alpha, level - 1); + if (cur_ratio > eb_beta) { + cur_ratio = eb_beta; + } + cur_eb = eb / cur_ratio; + } + quantizer.set_eb(cur_eb); + size_t stride = 1U << (level - 1); + + auto interp_block_size = blocksize * stride; + + auto inter_block_range = std::make_shared>( + data, std::begin(original_dimensions), std::end(original_dimensions), interp_block_size, 0); + + auto inter_begin = inter_block_range->begin(); + auto inter_end = inter_block_range->end(); + + for (auto block = inter_begin; block != inter_end; ++block) { + auto end_idx = block.get_global_index(); + for (int i = 0; i < N; i++) { + end_idx[i] += interp_block_size; + if (end_idx[i] > original_dimensions[i] - 1) { + end_idx[i] = original_dimensions[i] - 1; + } + } + + interpolation( + data, block.get_global_index(), end_idx, interpolators[interp_id], + [&](size_t idx, T &d, T pred) { + quant_inds[quant_index++] = (quantizer.quantize_and_overwrite(d, pred)); + }, + direction_sequence_id, stride); + } + } + quantizer.set_eb(eb); + quantizer.postcompress_data(); + return quant_inds_vec; + } + + void save(uchar *&c) override { + write(original_dimensions.data(), N, c); + write(blocksize, c); + write(interp_id, c); + write(direction_sequence_id, c); + write(anchor_stride, c); + write(eb_alpha, c); + write(eb_beta, c); + + quantizer.save(c); + } + + void load(const uchar *&c, size_t &remaining_length) override { + read(original_dimensions.data(), N, c, remaining_length); + read(blocksize, c, remaining_length); + read(interp_id, c, remaining_length); + read(direction_sequence_id, c, remaining_length); + read(anchor_stride, c, remaining_length); + read(eb_alpha, c, remaining_length); + read(eb_beta, c, remaining_length); + + quantizer.load(c, remaining_length); + } + + std::pair get_out_range() override { return quantizer.get_out_range(); } + + private: + void init() { + quant_index = 0; + assert(blocksize % 2 == 0 && "Interpolation block size should be even numbers"); + assert((anchor_stride & anchor_stride - 1) == 0 && "Anchor stride should be 0 or 2's exponentials"); + num_elements = 1; + interp_level = -1; + bool use_anchor = false; + for (int i = 0; i < N; i++) { + if (interp_level < ceil(log2(original_dimensions[i]))) { + interp_level = static_cast(ceil(log2(original_dimensions[i]))); + } + if (original_dimensions[i] > anchor_stride) + use_anchor = true; + num_elements *= original_dimensions[i]; + } + if (!use_anchor) + anchor_stride = 0; + if (anchor_stride > 0) { + int max_interpolation_level = static_cast(log2(anchor_stride)) + 1; + if (max_interpolation_level <= interp_level) { + interp_level = max_interpolation_level; + } + } + + original_dim_offsets[N - 1] = 1; + for (int i = N - 2; i >= 0; i--) { + original_dim_offsets[i] = original_dim_offsets[i + 1] * original_dimensions[i + 1]; + } + + dim_sequences = std::vector>(); + auto sequence = std::array(); + for (int i = 0; i < N; i++) { + sequence[i] = i; + } + do { + dim_sequences.push_back(sequence); + } while (std::next_permutation(sequence.begin(), sequence.end())); + } + + void build_anchor_grid(T *data) { // store anchor points. steplength: anchor_stride on each dimension + std::array strides; + std::array begins{0}; + std::fill(strides.begin(), strides.end(), anchor_stride); + foreach + (data, 0, begins, original_dimensions, strides, original_dim_offsets, + [&](T *d) { quant_inds[quant_index++] = quantizer.force_save_unpred(*d); }); + } + + void recover_anchor_grid(T *data) { // recover anchor points. steplength: anchor_stride on each dimension + std::array strides; + std::array begins{0}; + std::fill(strides.begin(), strides.end(), anchor_stride); + foreach + (data, 0, begins, original_dimensions, strides, original_dim_offsets, [&](T *d) { + *d = quantizer.recover_unpred(); + quant_index++; + }); + } + + /** + * Do interpolations along a certain dimension, and move through that dimension only. + * This is the original API, described in the ICDE'21 paper. + * @tparam QuantizeFunc + * @param data + * @param begin + * @param end + * @param stride + * @param interp_func + * @param quantize_func + * @return + */ + template + double interpolation_1d(T *data, size_t begin, size_t end, size_t stride, const std::string &interp_func, + QuantizeFunc &&quantize_func) { + size_t n = (end - begin) / stride + 1; + if (n <= 1) { + return 0; + } + double predict_error = 0; + + size_t stride3x = 3 * stride; + size_t stride5x = 5 * stride; + if (interp_func == "linear" || n < 5) { + // if (pb == PB_predict_overwrite) { + for (size_t i = 1; i + 1 < n; i += 2) { + T *d = data + begin + i * stride; + quantize_func(d - data, *d, interp_linear(*(d - stride), *(d + stride))); + } + if (n % 2 == 0) { + T *d = data + begin + (n - 1) * stride; + if (n < 4) { + quantize_func(d - data, *d, *(d - stride)); + } else { + quantize_func(d - data, *d, interp_linear1(*(d - stride3x), *(d - stride))); + } + } + // } + } else { + T *d; + size_t i; + for (i = 3; i + 3 < n; i += 2) { + d = data + begin + i * stride; + quantize_func(d - data, *d, + interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); + } + d = data + begin + stride; + quantize_func(d - data, *d, interp_quad_1(*(d - stride), *(d + stride), *(d + stride3x))); + + d = data + begin + i * stride; + quantize_func(d - data, *d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); + if (n % 2 == 0) { + d = data + begin + (n - 1) * stride; + quantize_func(d - data, *d, interp_quad_3(*(d - stride5x), *(d - stride3x), *(d - stride))); + } + } + + return predict_error; + } + + /** + * Do all interpolations along a certain dimension on the full data grid. Moving on the fastest-dim. + * This is the new API, described in the SIGMOD'24 paper. + * @tparam QuantizeFunc + * @param data + * @param begin_idx + * @param end_idx + * @param direction + * @param strides + * @param math_stride + * @param interp_func + * @param quantize_func + * @return + */ + template + double interpolation_1d_fastest_dim_first(T *data, const std::array &begin_idx, + const std::array &end_idx, const size_t &direction, + std::array &strides, const size_t &math_stride, + const std::string &interp_func, QuantizeFunc &&quantize_func) { + for (size_t i = 0; i < N; i++) { + if (end_idx[i] < begin_idx[i]) return 0; + } + size_t math_begin_idx = begin_idx[direction], math_end_idx = end_idx[direction]; + size_t n = (math_end_idx - math_begin_idx) / math_stride + 1; + if (n <= 1) { + return 0; + } + double predict_error = 0.0; + size_t offset = 0; + size_t stride = math_stride * original_dim_offsets[direction]; + std::array begins, ends, dim_offsets; + for (size_t i = 0; i < N; i++) { + begins[i] = 0; + ends[i] = end_idx[i] - begin_idx[i] + 1; + dim_offsets[i] = original_dim_offsets[i]; + offset += original_dim_offsets[i] * begin_idx[i]; + } + dim_offsets[direction] = stride; + size_t stride2x = 2 * stride; + if (interp_func == "linear") { + begins[direction] = 1; + ends[direction] = n - 1; + strides[direction] = 2; + foreach + (data, offset, begins, ends, strides, dim_offsets, + [&](T *d) { quantize_func(d - data, *d, interp_linear(*(d - stride), *(d + stride))); }); + if (n % 2 == 0) { + begins[direction] = n - 1; + ends[direction] = n; + foreach + (data, offset, begins, ends, strides, dim_offsets, [&](T *d) { + if (n < 3) + quantize_func(d - data, *d, *(d - stride)); + else + quantize_func(d - data, *d, interp_linear1(*(d - stride2x), *(d - stride))); + }); + } + } else { + size_t stride3x = 3 * stride; + size_t i_start = 3; + begins[direction] = i_start; + ends[direction] = (n >= 3) ? (n - 3) : 0; + strides[direction] = 2; + foreach + (data, offset, begins, ends, strides, dim_offsets, [&](T *d) { + quantize_func(d - data, *d, + interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); + }); + std::vector boundaries; + boundaries.push_back(1); + if (n % 2 == 1 && n > 3) { + boundaries.push_back(n - 2); + } + if (n % 2 == 0 && n > 4) { + boundaries.push_back(n - 3); + } + if (n % 2 == 0 && n > 2) { + boundaries.push_back(n - 1); + } + for (auto boundary : boundaries) { + begins[direction] = boundary; + ends[direction] = boundary + 1; + foreach + (data, offset, begins, ends, strides, dim_offsets, [&](T *d) { + if (boundary >= 3) { + if (boundary + 3 < n) + quantize_func( + d - data, *d, + interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); + else if (boundary + 1 < n) + quantize_func(d - data, *d, + interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); + else + quantize_func(d - data, *d, interp_linear1(*(d - stride3x), *(d - stride))); + } else { + if (boundary + 3 < n) + quantize_func(d - data, *d, + interp_quad_1(*(d - stride), *(d + stride), *(d + stride3x))); + else if (boundary + 1 < n) + quantize_func(d - data, *d, interp_linear(*(d - stride), *(d + stride))); + else + quantize_func(d - data, *d, *(d - stride)); + } + }); + } + } + return predict_error; + } + + template + double interpolation(T *data, std::array begin, std::array end, + const std::string &interp_func, QuantizeFunc &&quantize_func, const int direction, + size_t stride = 1) { + if constexpr (N == 1) { // old API + return interpolation_1d(data, begin[0], end[0], stride, interp_func, quantize_func); + } else if constexpr (N == 2) { // old API + double predict_error = 0; + size_t stride2x = stride * 2; + const std::array dims = dim_sequences[direction]; + for (size_t j = (begin[dims[1]] ? begin[dims[1]] + stride2x : 0); j <= end[dims[1]]; j += stride2x) { + size_t begin_offset = + begin[dims[0]] * original_dim_offsets[dims[0]] + j * original_dim_offsets[dims[1]]; + predict_error += interpolation_1d( + data, begin_offset, begin_offset + (end[dims[0]] - begin[dims[0]]) * original_dim_offsets[dims[0]], + stride * original_dim_offsets[dims[0]], interp_func, quantize_func); + } + for (size_t i = (begin[dims[0]] ? begin[dims[0]] + stride : 0); i <= end[dims[0]]; i += stride) { + size_t begin_offset = + i * original_dim_offsets[dims[0]] + begin[dims[1]] * original_dim_offsets[dims[1]]; + predict_error += interpolation_1d( + data, begin_offset, begin_offset + (end[dims[1]] - begin[dims[1]]) * original_dim_offsets[dims[1]], + stride * original_dim_offsets[dims[1]], interp_func, quantize_func); + } + return predict_error; + } else if constexpr (N == 3 || N == 4) { // new API (for faster speed) + double predict_error = 0; + size_t stride2x = stride * 2; + const std::array dims = dim_sequences[direction]; + std::array strides; + std::array begin_idx = begin, end_idx = end; + strides[dims[0]] = 1; + for (int i = 1; i < N; i++) { + begin_idx[dims[i]] = (begin[dims[i]] ? begin[dims[i]] + stride2x : 0); + strides[dims[i]] = stride2x; + } + + predict_error += interpolation_1d_fastest_dim_first(data, begin_idx, end_idx, dims[0], strides, stride, + interp_func, quantize_func); + for (int i = 1; i < N; i++) { + begin_idx[dims[i]] = begin[dims[i]]; + begin_idx[dims[i - 1]] = (begin[dims[i - 1]] ? begin[dims[i - 1]] + stride : 0); + strides[dims[i - 1]] = stride; + predict_error += interpolation_1d_fastest_dim_first(data, begin_idx, end_idx, dims[i], strides, stride, + interp_func, quantize_func); + } + return predict_error; + } else { + throw std::runtime_error("Unsupported dimension in InterpolationDecomposition"); + } + } + + int interp_level = -1; + int interp_id; + uint blocksize; + std::vector interpolators = {"linear", "cubic"}; + int *quant_inds; + size_t quant_index = 0; + double max_error; + Quantizer quantizer; + size_t num_elements; + std::array original_dimensions; + std::array original_dim_offsets; + std::vector> dim_sequences; + int direction_sequence_id; + int anchor_stride = 0; + double eb_alpha = -1; + double eb_beta = -1; + double eb_ratio = 0.5; // To be deprecated +}; + +template +InterpolationDecomposition make_decomposition_interpolation(const Config &conf, Quantizer quantizer) { + return InterpolationDecomposition(conf, quantizer); +} + +} // namespace SZ3 + +#endif diff --git a/lib/SZ3/include/SZ3/decomposition/NoPredictionDecomposition.hpp b/lib/SZ3/include/SZ3/decomposition/NoPredictionDecomposition.hpp new file mode 100644 index 00000000..34348dd3 --- /dev/null +++ b/lib/SZ3/include/SZ3/decomposition/NoPredictionDecomposition.hpp @@ -0,0 +1,52 @@ +#ifndef SZ3_NO_PREDICTION_DECOMPOSITION_HPP +#define SZ3_NO_PREDICTION_DECOMPOSITION_HPP + +#include "Decomposition.hpp" +#include "SZ3/def.hpp" +#include "SZ3/quantizer/Quantizer.hpp" +#include "SZ3/utils/Config.hpp" + +namespace SZ3 { +template +class NoPredictionDecomposition : public concepts::DecompositionInterface { + public: + NoPredictionDecomposition(const Config &conf, Quantizer quantizer) : quantizer(quantizer) { + static_assert(std::is_base_of, Quantizer>::value, + "must implement the quantizer interface"); + } + + T *decompress(const Config &conf, std::vector &quant_inds, T *dec_data) override { + for (size_t i = 0; i < conf.num; i++) { + dec_data[i] = quantizer.recover(0, quant_inds[i]); + } + quantizer.postdecompress_data(); + return dec_data; + } + + std::vector compress(const Config &conf, T *data) override { + std::vector quant_inds(conf.num); + for (size_t i = 0; i < conf.num; i++) { + quant_inds[i] = quantizer.quantize_and_overwrite(data[i], 0); + } + quantizer.postcompress_data(); + return quant_inds; + } + + void save(uchar *&c) override { quantizer.save(c); } + + void load(const uchar *&c, size_t &remaining_length) override { quantizer.load(c, remaining_length); } + + std::pair get_out_range() override { return quantizer.get_out_range(); } + + private: + Quantizer quantizer; +}; + +template +NoPredictionDecomposition make_decomposition_noprediction(const Config &conf, Quantizer quantizer) { + return NoPredictionDecomposition(conf, quantizer); +} + +} // namespace SZ3 + +#endif diff --git a/lib/SZ3/include/SZ3/decomposition/TimeSeriesDecomposition.hpp b/lib/SZ3/include/SZ3/decomposition/TimeSeriesDecomposition.hpp new file mode 100644 index 00000000..593c2dd9 --- /dev/null +++ b/lib/SZ3/include/SZ3/decomposition/TimeSeriesDecomposition.hpp @@ -0,0 +1,208 @@ +#ifndef SZ3_TIME_SERIES_DECOMPOSITION_HPP +#define SZ3_TIME_SERIES_DECOMPOSITION_HPP + +#include "Decomposition.hpp" +#include "SZ3/def.hpp" +#include "SZ3/predictor/LorenzoPredictor.hpp" +#include "SZ3/predictor/Predictor.hpp" +#include "SZ3/quantizer/Quantizer.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/Iterator.hpp" +#include "SZ3/utils/MemoryUtil.hpp" + +namespace SZ3 { + +template +class TimeSeriesDecomposition : public concepts::DecompositionInterface { + public: + TimeSeriesDecomposition(const Config &conf, Predictor predictor, Quantizer quantizer, T *data_ts0) + : fallback_predictor(LorenzoPredictor(conf.absErrorBound)), + predictor(predictor), + quantizer(quantizer), + block_size(conf.blockSize), + stride(conf.stride), + num_elements(conf.num), + data_ts0(data_ts0) { + static_assert(std::is_base_of, Predictor>::value, + "must implement the predictor interface"); + static_assert(std::is_base_of, Quantizer>::value, + "must implement the quantizer interface"); + assert((conf.dims.size() == 2) && "timestep prediction requires 2d dataset"); + global_dimensions[0] = conf.dims[0]; + global_dimensions[1] = conf.dims[1]; + } + + ~TimeSeriesDecomposition() = default; + + std::vector compress(const Config &conf, T *data) override { + std::vector quant_inds(num_elements); + size_t quant_count = 0; + if (data_ts0 != nullptr) { + for (size_t j = 0; j < global_dimensions[1]; j++) { + quant_inds[quant_count++] = quantizer.quantize_and_overwrite(data[j], data_ts0[j]); + } + } else { + std::array global_dims; + for (int i = 0; i < N - 1; i++) { + global_dims[i] = global_dimensions[i + 1]; + }; + + auto inter_block_range = std::make_shared>( + data, std::begin(global_dims), std::end(global_dims), stride, 0); + auto intra_block_range = std::make_shared>( + data, std::begin(global_dims), std::end(global_dims), 1, 0); + + // std::array intra_block_dims; + predictor.precompress_data(inter_block_range->begin()); + quantizer.precompress_data(); + auto inter_begin = inter_block_range->begin(); + auto inter_end = inter_block_range->end(); + for (auto block = inter_begin; block != inter_end; ++block) { + intra_block_range->update_block_range(block, block_size); + + // // std::cout << *block << " " << lp.predict(block) << std::endl; + // for (int i = 0; i < intra_block_dims.size(); i++) { + // size_t cur_index = block.get_local_index(i); + // size_t dims = inter_block_range->get_dimensions(i); + // intra_block_dims[i] = (cur_index == dims - 1 && + // global_dims[i] - cur_index * stride < block_size) ? + // global_dims[i] - cur_index * stride : block_size; + // } + // + // intra_block_range->set_dimensions(intra_block_dims.begin(), + // intra_block_dims.end()); intra_block_range->set_offsets(block.get_offset()); + // intra_block_range->set_starting_position(block.get_local_index()); + concepts::PredictorInterface *predictor_withfallback = &predictor; + if (!predictor.precompress_block(intra_block_range)) { + predictor_withfallback = &fallback_predictor; + } + predictor_withfallback->precompress_block_commit(); + // quantizer.precompress_block(); + auto intra_begin = intra_block_range->begin(); + auto intra_end = intra_block_range->end(); + for (auto element = intra_begin; element != intra_end; ++element) { + quant_inds[quant_count++] = + quantizer.quantize_and_overwrite(*element, predictor_withfallback->predict(element)); + } + } + predictor.postcompress_data(inter_block_range->begin()); + } + for (size_t j = 0; j < global_dimensions[1]; j++) { + for (size_t i = 1; i < global_dimensions[0]; i++) { + size_t idx = i * global_dimensions[1] + j; + size_t idx_prev = (i - 1) * global_dimensions[1] + j; + quant_inds[quant_count++] = quantizer.quantize_and_overwrite(data[idx], data[idx_prev]); + } + } + assert(quant_count == num_elements); + quantizer.postcompress_data(); + return quant_inds; + } + + T *decompress(const Config &conf, std::vector &quant_inds, T *dec_data) override { + int const *quant_inds_pos = quant_inds.data(); + // std::array intra_block_dims; + // auto dec_data = new T[num_elements]; + + if (data_ts0 != nullptr) { + for (size_t j = 0; j < global_dimensions[1]; j++) { + dec_data[j] = quantizer.recover(data_ts0[j], *(quant_inds_pos++)); + } + } else { + std::array global_dims; + for (int i = 0; i < N - 1; i++) { + global_dims[i] = global_dimensions[i + 1]; + }; + auto inter_block_range = std::make_shared>( + dec_data, std::begin(global_dims), std::end(global_dims), stride, 0); + + auto intra_block_range = std::make_shared>( + dec_data, std::begin(global_dims), std::end(global_dims), 1, 0); + + predictor.predecompress_data(inter_block_range->begin()); + quantizer.predecompress_data(); + + auto inter_begin = inter_block_range->begin(); + auto inter_end = inter_block_range->end(); + for (auto block = inter_begin; block != inter_end; block++) { + intra_block_range->update_block_range(block, block_size); + // for (int i = 0; i < intra_block_dims.size(); i++) { + // size_t cur_index = block.get_local_index(i); + // size_t dims = inter_block_range->get_dimensions(i); + // intra_block_dims[i] = (cur_index == dims - 1) ? global_dims[i] - cur_index * + // block_size + // : block_size; + // } + // intra_block_range->set_dimensions(intra_block_dims.begin(), + // intra_block_dims.end()); intra_block_range->set_offsets(block.get_offset()); + // intra_block_range->set_starting_position(block.get_local_index()); + + concepts::PredictorInterface *predictor_withfallback = &predictor; + if (!predictor.predecompress_block(intra_block_range)) { + predictor_withfallback = &fallback_predictor; + } + auto intra_begin = intra_block_range->begin(); + auto intra_end = intra_block_range->end(); + for (auto element = intra_begin; element != intra_end; ++element) { + *element = quantizer.recover(predictor_withfallback->predict(element), *(quant_inds_pos++)); + } + } + predictor.postdecompress_data(inter_block_range->begin()); + } + + for (size_t j = 0; j < global_dimensions[1]; j++) { + for (size_t i = 1; i < global_dimensions[0]; i++) { + size_t idx = i * global_dimensions[1] + j; + size_t idx_prev = (i - 1) * global_dimensions[1] + j; + dec_data[idx] = quantizer.recover(dec_data[idx_prev], *(quant_inds_pos++)); + } + } + + quantizer.postdecompress_data(); + return dec_data; + } + + void save(uchar *&c) override { + write(global_dimensions.data(), N, c); + write(block_size, c); + + predictor.save(c); + quantizer.save(c); + } + + void load(const uchar *&c, size_t &remaining_length) override { + read(global_dimensions.data(), N, c, remaining_length); + num_elements = 1; + for (const auto &d : global_dimensions) { + num_elements *= d; + // std::cout << d << " "; + } + // std::cout << std::endl; + read(block_size, c, remaining_length); + stride = block_size; + predictor.load(c, remaining_length); + quantizer.load(c, remaining_length); + } + + std::pair get_out_range() override { return quantizer.get_out_range(); } + + private: + Predictor predictor; + LorenzoPredictor fallback_predictor; + Quantizer quantizer; + uint block_size; + uint stride; + size_t num_elements; + std::array global_dimensions; + T *data_ts0 = nullptr; +}; + +template +TimeSeriesDecomposition make_decomposition_timeseries(const Config &conf, + Predictor predictor, + Quantizer quantizer, T *data_ts0) { + return TimeSeriesDecomposition(conf, predictor, quantizer, data_ts0); +} +} // namespace SZ3 + +#endif diff --git a/lib/SZ3/include/SZ3/def.hpp b/lib/SZ3/include/SZ3/def.hpp index 12320d2e..49b34ddf 100644 --- a/lib/SZ3/include/SZ3/def.hpp +++ b/lib/SZ3/include/SZ3/def.hpp @@ -1,14 +1,20 @@ -#ifndef _DEF_HPP -#define _DEF_HPP +#ifndef SZ3_DEF_HPP +#define SZ3_DEF_HPP -#include +namespace SZ3 { -namespace SZ { - - typedef unsigned int uint; - typedef unsigned char uchar; - -} +typedef unsigned int uint; +typedef unsigned char uchar; +#define SZ3_ERROR_COMP_BUFFER_NOT_LARGE_ENOUGH \ + "The buffer for compressed data is not large enough." +} // namespace SZ3 +#ifdef _MSC_VER +#define ALWAYS_INLINE __forceinline +#elif defined(__GNUC__) || defined(__clang__) +#define ALWAYS_INLINE inline __attribute__((always_inline)) +#else +#define ALWAYS_INLINE inline +#endif #endif diff --git a/lib/SZ3/include/SZ3/encoder/ArithmeticEncoder.hpp b/lib/SZ3/include/SZ3/encoder/ArithmeticEncoder.hpp index 7a04b811..3a3c5878 100644 --- a/lib/SZ3/include/SZ3/encoder/ArithmeticEncoder.hpp +++ b/lib/SZ3/include/SZ3/encoder/ArithmeticEncoder.hpp @@ -1,699 +1,683 @@ -#ifndef SZ_ArithmeticEncoder_HPP -#define SZ_ArithmeticEncoder_HPP +#ifndef SZ3_ArithmeticEncoder_HPP +#define SZ3_ArithmeticEncoder_HPP -#include "SZ3/utils/ByteUtil.hpp" -#include "SZ3/encoder/Encoder.hpp" #include #include -namespace SZ { -#define ONE_FOURTH (0x40000000000) //44 bits are absolutely enough to deal with a large dataset (support at most 16TB per process) +#include "SZ3/encoder/Encoder.hpp" +#include "SZ3/utils/ByteUtil.hpp" + +namespace SZ3 { +#define ONE_FOURTH \ + (0x40000000000) // 44 bits are absolutely enough to deal with a large dataset (support at most 16TB per process) #define ONE_HALF (0x80000000000) #define THREE_FOURTHS (0xC0000000000) #define MAX_CODE (0xFFFFFFFFFFF) -#define MAX_INTERVALS 1048576 //the limit to the arithmetic coding (at most 2^(20) intervals) - - - template - class ArithmeticEncoder : public concepts::EncoderInterface { - public: - struct Prob { - size_t low; - size_t high; - int state; - }; - - struct AriCoder { - int numOfRealStates; //the # real states menas the number of states after the optimization of # intervals - int numOfValidStates; //the # valid states means the number of non-zero frequency cells (some states/codes actually didn't appear) - size_t total_frequency; - Prob *cumulative_frequency; //used to encode data more efficiencly - }; - - -// ArithmeticEncoder(int stateNum, bool transform = false) { - ArithmeticEncoder(bool transform = false) { -// assert(stateNum <= 4096 && "StateNum of Arithmetic Encoder should be <= 4096"); -// ariCoder.numOfRealStates = stateNum; - ariCoder.numOfRealStates = 0; - ariCoder.numOfValidStates = 0; - ariCoder.total_frequency = 0; - ariCoder.cumulative_frequency = NULL; - this->transform = transform; - } +#define MAX_INTERVALS 1048576 // the limit to the arithmetic coding (at most 2^(20) intervals) + +template +class ArithmeticEncoder : public concepts::EncoderInterface { + public: + struct Prob { + size_t low; + size_t high; + int state; + }; - ~ArithmeticEncoder() { - if (ariCoder.cumulative_frequency != NULL) { - free(ariCoder.cumulative_frequency); - } + struct AriCoder { + int numOfRealStates; // the # real states menas the number of states after the optimization of # intervals + int numOfValidStates; // the # valid states means the number of non-zero frequency cells (some states/codes + // actually didn't appear) + size_t total_frequency; + Prob *cumulative_frequency; // used to encode data more efficiencly + }; + + // ArithmeticEncoder(int stateNum, bool transform = false) { + ArithmeticEncoder(bool transform = false) { + // assert(stateNum <= 4096 && "StateNum of Arithmetic Encoder should be <= 4096"); + // ariCoder.numOfRealStates = stateNum; + ariCoder.numOfRealStates = 0; + ariCoder.numOfValidStates = 0; + ariCoder.total_frequency = 0; + ariCoder.cumulative_frequency = nullptr; + this->transform = transform; + } + + ~ArithmeticEncoder() override { + if (ariCoder.cumulative_frequency != nullptr) { + free(ariCoder.cumulative_frequency); } + } - void postprocess_encode() { - if (transform) { - bins_transform.clear(); + void postprocess_encode() override { + if (transform) { + bins_transform.clear(); + } + } + + void preprocess_decode() override{} + + void postprocess_decode() override{} + + void preprocess_encode(const std::vector &bins, int stateNum) override { + assert(stateNum <= 4096 && "StateNum of Arithmetic Encoder should be <= 4096"); + ariCoder.numOfRealStates = stateNum; + const T *s = bins.data(); + size_t length = bins.size(); + if (transform) { + bins_transform = bins; + for (size_t i = 0; i < bins_transform.size(); i++) { + T x = bins_transform[i]; + bins_transform[i] = fabs(x - ariCoder.numOfRealStates / 2) * 2; + if (x - ariCoder.numOfRealStates / 2 < 0) { + bins_transform[i] -= 1; + } } - }; - - void preprocess_decode() {}; - void postprocess_decode() {}; + s = bins_transform.data(); + } + size_t i; // # states is in the range of integer. + int index = 0; + size_t *freq = static_cast(malloc(ariCoder.numOfRealStates * sizeof(size_t))); + memset(freq, 0, ariCoder.numOfRealStates * sizeof(size_t)); + for (i = 0; i < length; i++) { + index = s[i]; + freq[index]++; + } - void preprocess_encode(const std::vector &bins, int stateNum) { - assert(stateNum <= 4096 && "StateNum of Arithmetic Encoder should be <= 4096"); - ariCoder.numOfRealStates = stateNum; - const T *s = bins.data(); - size_t length = bins.size(); - if (transform) { - bins_transform = bins; - for (size_t i = 0; i < bins_transform.size(); i++) { - T x = bins_transform[i]; - bins_transform[i] = fabs(x - ariCoder.numOfRealStates / 2) * 2; - if (x - ariCoder.numOfRealStates / 2 < 0) { - bins_transform[i] -= 1; - } + int counter = 0; + size_t _sum = 0, sum = 0, freqDiv = 0; + ariCoder.cumulative_frequency = static_cast(malloc(ariCoder.numOfRealStates * sizeof(Prob))); + + memset(ariCoder.cumulative_frequency, 0, ariCoder.numOfRealStates * sizeof(Prob)); + + if (length <= MAX_INTERVALS) { + for (index = 0; index < ariCoder.numOfRealStates; index++) { + if (freq[index]) { + sum += freq[index]; + (ariCoder.cumulative_frequency[index]).low = _sum; + (ariCoder.cumulative_frequency[index]).high = sum; + (ariCoder.cumulative_frequency[index]).state = index; + _sum = sum; + counter++; } - - s = bins_transform.data(); } - - - size_t i; //# states is in the range of integer. - int index = 0; - size_t *freq = (size_t *) malloc(ariCoder.numOfRealStates * sizeof(size_t)); - memset(freq, 0, ariCoder.numOfRealStates * sizeof(size_t)); - for (i = 0; i < length; i++) { - index = s[i]; - freq[index]++; + ariCoder.numOfValidStates = counter; + ariCoder.total_frequency = sum; + } else { + int intvSize = length % MAX_INTERVALS == 0 ? length / MAX_INTERVALS : length / MAX_INTERVALS + 1; + for (index = 0; index < ariCoder.numOfRealStates; index++) { + if (freq[index]) { + freqDiv = + freq[index] / intvSize; // control the sum of frequency to be no greater than MAX_INTERVALS + if (freqDiv == 0) freqDiv = 1; + sum += freqDiv; + (ariCoder.cumulative_frequency[index]).low = _sum; + (ariCoder.cumulative_frequency[index]).high = sum; + (ariCoder.cumulative_frequency[index]).state = index; + _sum = sum; + counter++; + } } + ariCoder.numOfValidStates = counter; + ariCoder.total_frequency = sum; + } - int counter = 0; - size_t _sum = 0, sum = 0, freqDiv = 0; - ariCoder.cumulative_frequency = (Prob *) malloc(ariCoder.numOfRealStates * sizeof(Prob)); - - memset(ariCoder.cumulative_frequency, 0, ariCoder.numOfRealStates * sizeof(Prob)); - - if (length <= MAX_INTERVALS) { - for (index = 0; index < ariCoder.numOfRealStates; index++) { - if (freq[index]) { - sum += freq[index]; - (ariCoder.cumulative_frequency[index]).low = _sum; - (ariCoder.cumulative_frequency[index]).high = sum; - (ariCoder.cumulative_frequency[index]).state = index; - _sum = sum; - counter++; + free(freq); + } + + void save(uchar *&p) override { + int numOfRealStates = ariCoder.numOfRealStates; + int numOfValidStates = ariCoder.numOfValidStates; + uint64_t total_frequency = ariCoder.total_frequency; + Prob *cumulative_frequency = ariCoder.cumulative_frequency; + + // unsigned int outSize = 0; + + int32ToBytes_bigEndian(p, numOfRealStates); + p += sizeof(int); + int32ToBytes_bigEndian(p, numOfValidStates); + p += sizeof(int); + int64ToBytes_bigEndian(p, total_frequency); + p += sizeof(uint64_t); + size_t i = 0; + if (total_frequency <= 65536) { + uint16_t low, high; + if (numOfRealStates <= 256) { + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) // if this state cell is not null + { + low = static_cast(cumulative_frequency[i].low); + int16ToBytes_bigEndian(p, low); + p += sizeof(uint16_t); + int16ToBytes_bigEndian(p, high); + p += sizeof(uint16_t); + *(p++) = static_cast(cumulative_frequency[i].state); + // if(((unsigned char)cumulative_frequency[i].state)==129) + } + } + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 5; // 2*sizeof(uint16_t)+1 + } else if (numOfRealStates <= 65536) { + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) { + low = static_cast(cumulative_frequency[i].low); + int16ToBytes_bigEndian(p, low); + p += sizeof(uint16_t); + int16ToBytes_bigEndian(p, high); + p += sizeof(uint16_t); + uint16_t state = static_cast(cumulative_frequency[i].state); + int16ToBytes_bigEndian(p, state); + p += sizeof(uint16_t); } } - ariCoder.numOfValidStates = counter; - ariCoder.total_frequency = sum; + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 6; } else { - int intvSize = length % MAX_INTERVALS == 0 ? length / MAX_INTERVALS : length / MAX_INTERVALS + 1; - for (index = 0; index < ariCoder.numOfRealStates; index++) { - if (freq[index]) { - freqDiv = freq[index] / - intvSize; //control the sum of frequency to be no greater than MAX_INTERVALS - if (freqDiv == 0) - freqDiv = 1; - sum += freqDiv; - (ariCoder.cumulative_frequency[index]).low = _sum; - (ariCoder.cumulative_frequency[index]).high = sum; - (ariCoder.cumulative_frequency[index]).state = index; - _sum = sum; - counter++; + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) { + low = static_cast(cumulative_frequency[i].low); + int16ToBytes_bigEndian(p, low); + p += sizeof(uint16_t); + int16ToBytes_bigEndian(p, high); + p += sizeof(uint16_t); + int32ToBytes_bigEndian(p, cumulative_frequency[i].state); + p += sizeof(uint32_t); } } - ariCoder.numOfValidStates = counter; - ariCoder.total_frequency = sum; + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 8; } - - free(freq); - } - - - uint save(uchar *&p) { - - int numOfRealStates = ariCoder.numOfRealStates; - int numOfValidStates = ariCoder.numOfValidStates; - uint64_t total_frequency = ariCoder.total_frequency; - Prob *cumulative_frequency = ariCoder.cumulative_frequency; - - unsigned int outSize = 0; - - intToBytes_bigEndian(p, numOfRealStates); - p += sizeof(int); - intToBytes_bigEndian(p, numOfValidStates); - p += sizeof(int); - int64ToBytes_bigEndian(p, total_frequency); - p += sizeof(uint64_t); - size_t i = 0; - if (total_frequency <= 65536) { - uint16_t low, high; - if (numOfRealStates <= 256) { - for (i = 0; i < numOfRealStates; i++) { - high = (uint16_t) (cumulative_frequency[i].high); - if (high != 0) //if this state cell is not null - { - low = (uint16_t) (cumulative_frequency[i].low); - int16ToBytes_bigEndian(p, low); - p += sizeof(uint16_t); - int16ToBytes_bigEndian(p, high); - p += sizeof(uint16_t); - *(p++) = (unsigned char) cumulative_frequency[i].state; - //if(((unsigned char)cumulative_frequency[i].state)==129) - } - } - outSize = - 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 5; //2*sizeof(uint16_t)+1 - } else if (numOfRealStates <= 65536) { - for (i = 0; i < numOfRealStates; i++) { - high = (uint16_t) (cumulative_frequency[i].high); - if (high != 0) { - low = (uint16_t) (cumulative_frequency[i].low); - int16ToBytes_bigEndian(p, low); - p += sizeof(uint16_t); - int16ToBytes_bigEndian(p, high); - p += sizeof(uint16_t); - uint16_t state = (uint16_t) cumulative_frequency[i].state; - int16ToBytes_bigEndian(p, state); - p += sizeof(uint16_t); - } + } else if (total_frequency <= 4294967296) { + uint32_t low, high; + if (numOfRealStates <= 256) { + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) { + low = static_cast(cumulative_frequency[i].low); + int32ToBytes_bigEndian(p, low); + p += sizeof(uint32_t); + int32ToBytes_bigEndian(p, high); + p += sizeof(uint32_t); + *(p++) = static_cast(cumulative_frequency[i].state); } - outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 6; - } else { - for (i = 0; i < numOfRealStates; i++) { - high = (uint16_t) (cumulative_frequency[i].high); - if (high != 0) { - low = (uint16_t) (cumulative_frequency[i].low); - int16ToBytes_bigEndian(p, low); - p += sizeof(uint16_t); - int16ToBytes_bigEndian(p, high); - p += sizeof(uint16_t); - int32ToBytes_bigEndian(p, cumulative_frequency[i].state); - p += sizeof(uint32_t); - } - } - outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 8; } - } else if (total_frequency <= 4294967296) { - uint32_t low, high; - if (numOfRealStates <= 256) { - for (i = 0; i < numOfRealStates; i++) { - high = (uint32_t) (cumulative_frequency[i].high); - if (high != 0) { - low = (uint32_t) (cumulative_frequency[i].low); - int32ToBytes_bigEndian(p, low); - p += sizeof(uint32_t); - int32ToBytes_bigEndian(p, high); - p += sizeof(uint32_t); - *(p++) = (unsigned char) cumulative_frequency[i].state; - } - } - outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 9; - } else if (numOfRealStates <= 65536) { - for (i = 0; i < numOfRealStates; i++) { - high = (uint32_t) (cumulative_frequency[i].high); - if (high != 0) { - low = (uint32_t) (cumulative_frequency[i].low); - int32ToBytes_bigEndian(p, low); - p += sizeof(uint32_t); - int32ToBytes_bigEndian(p, high); - p += sizeof(uint32_t); - uint16_t state = (uint16_t) cumulative_frequency[i].state; - int16ToBytes_bigEndian(p, state); - p += sizeof(uint16_t); - - } + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 9; + } else if (numOfRealStates <= 65536) { + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) { + low = static_cast(cumulative_frequency[i].low); + int32ToBytes_bigEndian(p, low); + p += sizeof(uint32_t); + int32ToBytes_bigEndian(p, high); + p += sizeof(uint32_t); + uint16_t state = static_cast(cumulative_frequency[i].state); + int16ToBytes_bigEndian(p, state); + p += sizeof(uint16_t); } - outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 10; - } else { - for (i = 0; i < numOfRealStates; i++) { - high = (uint32_t) (cumulative_frequency[i].high); - if (high != 0) { - low = (uint32_t) (cumulative_frequency[i].low); - int32ToBytes_bigEndian(p, low); - p += sizeof(uint32_t); - int32ToBytes_bigEndian(p, high); - p += sizeof(uint32_t); - int32ToBytes_bigEndian(p, cumulative_frequency[i].state); - p += sizeof(uint32_t); - } - } - outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 12; } + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 10; } else { - uint64_t low, high; - if (numOfRealStates <= 256) { - for (i = 0; i < numOfRealStates; i++) { - high = (uint64_t) (cumulative_frequency[i].high); - if (high != 0) { - low = (uint64_t) (cumulative_frequency[i].low); - int64ToBytes_bigEndian(p, low); - p += sizeof(uint64_t); - int64ToBytes_bigEndian(p, high); - p += sizeof(uint64_t); - *(p++) = (unsigned char) cumulative_frequency[i].state; - } - } - outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 17; - } else if (numOfRealStates <= 65536) { - for (i = 0; i < numOfRealStates; i++) { - high = (uint64_t) (cumulative_frequency[i].high); - if (high != 0) { - low = (uint64_t) (cumulative_frequency[i].low); - int64ToBytes_bigEndian(p, low); - p += sizeof(uint64_t); - int64ToBytes_bigEndian(p, high); - p += sizeof(uint64_t); - uint16_t state = (uint16_t) cumulative_frequency[i].state; - int16ToBytes_bigEndian(p, state); - p += sizeof(uint16_t); - } + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) { + low = static_cast(cumulative_frequency[i].low); + int32ToBytes_bigEndian(p, low); + p += sizeof(uint32_t); + int32ToBytes_bigEndian(p, high); + p += sizeof(uint32_t); + int32ToBytes_bigEndian(p, cumulative_frequency[i].state); + p += sizeof(uint32_t); } - outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 18; - } else { - for (i = 0; i < numOfRealStates; i++) { - high = (uint64_t) (cumulative_frequency[i].high); - if (high != 0) { - low = (uint64_t) (cumulative_frequency[i].low); - int64ToBytes_bigEndian(p, low); - p += sizeof(uint64_t); - int64ToBytes_bigEndian(p, high); - p += sizeof(uint64_t); - int32ToBytes_bigEndian(p, cumulative_frequency[i].state); - p += sizeof(uint32_t); - } - } - outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 20; } + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 12; } - return outSize; - } - -/** - * Reconstruct AriCoder based on the bytes loaded from compressed data - * @param AriCoder** ariCoder (ourput) - * @param unsigned char* bytes (input) - * - * @return offset - * */ - void load(const uchar *&p, size_t &remaining_length) { - -// int unpad_ariCoder(AriCoder **ariCoder, unsigned char *bytes) { - int offset = 0; - - int numOfRealStates = ariCoder.numOfRealStates = bytesToInt_bigEndian(p); - p += sizeof(int); - int numOfValidStates = ariCoder.numOfValidStates = bytesToInt_bigEndian(p); - p += sizeof(int); - size_t total_frequency = ariCoder.total_frequency = bytesToInt64_bigEndian(p); - p += sizeof(uint64_t); - - ariCoder.cumulative_frequency = (Prob *) malloc(ariCoder.numOfRealStates * sizeof(Prob)); - memset(ariCoder.cumulative_frequency, 0, ariCoder.numOfRealStates * sizeof(Prob)); - - size_t i = 0; - const uchar *low_p = NULL, *high_p = NULL, *state_p = NULL; - int state = 0; - if (total_frequency <= 65536) { - if (numOfRealStates <= 256) { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint16_t); - state_p = high_p + sizeof(uint16_t); - state = *state_p; - ariCoder.cumulative_frequency[state].low = bytesToUInt16_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt16_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + 1; - } - offset = 2 * sizeof(int) + sizeof(uint64_t) + - ariCoder.numOfValidStates * 5; //2*sizeof(uint16_t)+1 - } else if (numOfRealStates <= 65536) { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint16_t); - state_p = high_p + sizeof(uint16_t); - state = bytesToUInt16_bigEndian(state_p); - - ariCoder.cumulative_frequency[state].low = bytesToUInt16_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt16_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + sizeof(uint16_t); - } - offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 6; - } else { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint16_t); - state_p = high_p + sizeof(uint16_t); - state = bytesToUInt32_bigEndian(state_p); - - ariCoder.cumulative_frequency[state].low = bytesToUInt16_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt16_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + sizeof(uint32_t); + } else { + uint64_t low, high; + if (numOfRealStates <= 256) { + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) { + low = static_cast(cumulative_frequency[i].low); + int64ToBytes_bigEndian(p, low); + p += sizeof(uint64_t); + int64ToBytes_bigEndian(p, high); + p += sizeof(uint64_t); + *(p++) = static_cast(cumulative_frequency[i].state); } - offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 8; } - } else if (total_frequency <= 4294967296) { - if (numOfRealStates <= 256) { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint32_t); - state_p = high_p + sizeof(uint32_t); - state = *state_p; - - ariCoder.cumulative_frequency[state].low = bytesToUInt32_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt32_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + 1; - } - offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 9; - } else if (numOfRealStates <= 65536) { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint32_t); - state_p = high_p + sizeof(uint32_t); - state = bytesToUInt16_bigEndian(state_p); - - ariCoder.cumulative_frequency[state].low = bytesToUInt32_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt32_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + sizeof(uint16_t); - } - offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 10; - } else { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint32_t); - state_p = high_p + sizeof(uint32_t); - state = bytesToUInt32_bigEndian(state_p); - - ariCoder.cumulative_frequency[state].low = bytesToUInt32_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt32_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + sizeof(uint32_t); + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 17; + } else if (numOfRealStates <= 65536) { + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) { + low = static_cast(cumulative_frequency[i].low); + int64ToBytes_bigEndian(p, low); + p += sizeof(uint64_t); + int64ToBytes_bigEndian(p, high); + p += sizeof(uint64_t); + uint16_t state = static_cast(cumulative_frequency[i].state); + int16ToBytes_bigEndian(p, state); + p += sizeof(uint16_t); } - offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 12; } + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 18; } else { - if (numOfRealStates <= 256) { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint64_t); - state_p = high_p + sizeof(uint64_t); - state = *state_p; - - ariCoder.cumulative_frequency[state].low = bytesToUInt64_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt64_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + 1; - } - offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 17; - } else if (numOfRealStates <= 65536) { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint64_t); - state_p = high_p + sizeof(uint64_t); - state = bytesToUInt16_bigEndian(state_p); - - ariCoder.cumulative_frequency[state].low = bytesToUInt64_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt64_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + sizeof(uint16_t); - } - offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 18; - } else { - for (i = 0; i < numOfValidStates; i++) { - low_p = p; - high_p = low_p + sizeof(uint64_t); - state_p = high_p + sizeof(uint64_t); - state = bytesToUInt32_bigEndian(state_p); - - ariCoder.cumulative_frequency[state].low = bytesToUInt64_bigEndian(low_p); - ariCoder.cumulative_frequency[state].high = bytesToUInt64_bigEndian(high_p); - ariCoder.cumulative_frequency[state].state = state; - - p = state_p + sizeof(uint32_t); + for (i = 0; i < numOfRealStates; i++) { + high = static_cast(cumulative_frequency[i].high); + if (high != 0) { + low = static_cast(cumulative_frequency[i].low); + int64ToBytes_bigEndian(p, low); + p += sizeof(uint64_t); + int64ToBytes_bigEndian(p, high); + p += sizeof(uint64_t); + int32ToBytes_bigEndian(p, cumulative_frequency[i].state); + p += sizeof(uint32_t); } - offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 20; } + // outSize = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 20; } - remaining_length -= offset; } - -/** - * Arithmetic Encoding - * @param AriCoder *ariCoder (input) - * @param int *s (input) - * @param size_t length (input) - * @param unsigned char *out (output) - * @param size_t *outSize (output) - * - * */ - // void ari_encode(AriCoder *ariCoder, int *s, size_t length, unsigned char *out, size_t *outSize) { - size_t encode(const std::vector &bins, uchar *&bytes) { - const T *s = transform ? bins_transform.data() : bins.data(); - size_t length = transform ? bins_transform.size() : bins.size(); -// unsigned char *bytes = out; - size_t outSize = 0; - - int pending_bits = 0; - size_t low = 0; - size_t high = MAX_CODE; - size_t i = 0, range = 0; - size_t count = ariCoder.total_frequency; - int c = 0, lackBits = 0; - - - Prob *cumulative_frequency = ariCoder.cumulative_frequency; - unsigned int buf = 0; - - for (i = 0; i < length; i++) { - c = s[i]; - Prob p = cumulative_frequency[c]; - range = high - low + 1; - high = low + (range * p.high / count) - 1; - low = low + (range * p.low / count); - for (;;) { - if (high < ONE_HALF) { - buf = output_bit_0_plus_pending(pending_bits); - put_codes_to_output(buf, pending_bits + 1, &bytes, &lackBits, &outSize); - pending_bits = 0; - } else if (low >= ONE_HALF) { - buf = output_bit_1_plus_pending(pending_bits); - put_codes_to_output(buf, pending_bits + 1, &bytes, &lackBits, &outSize); - pending_bits = 0; - } else if (low >= ONE_FOURTH && high < THREE_FOURTHS) { - pending_bits++; - low -= ONE_FOURTH; - high -= ONE_FOURTH; - } else - break; - high <<= 1; - high++; - low <<= 1; - high &= MAX_CODE; - low &= MAX_CODE; + // return outSize; + } + + /** + * Reconstruct AriCoder based on the bytes loaded from compressed data + * @param AriCoder** ariCoder (ourput) + * @param unsigned char* bytes (input) + * + * @return offset + * */ + void load(const uchar *&p, size_t &remaining_length) override { + // int unpad_ariCoder(AriCoder **ariCoder, unsigned char *bytes) { + int offset = 0; + + int numOfRealStates = ariCoder.numOfRealStates = bytesToInt32_bigEndian(p); + p += sizeof(int); + int numOfValidStates = ariCoder.numOfValidStates = bytesToInt32_bigEndian(p); + p += sizeof(int); + size_t total_frequency = ariCoder.total_frequency = bytesToInt64_bigEndian(p); + p += sizeof(uint64_t); + + ariCoder.cumulative_frequency = static_cast(malloc(ariCoder.numOfRealStates * sizeof(Prob))); + memset(ariCoder.cumulative_frequency, 0, ariCoder.numOfRealStates * sizeof(Prob)); + + size_t i = 0; + const uchar *low_p = nullptr, *high_p = nullptr, *state_p = nullptr; + int state = 0; + if (total_frequency <= 65536) { + if (numOfRealStates <= 256) { + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint16_t); + state_p = high_p + sizeof(uint16_t); + state = *state_p; + ariCoder.cumulative_frequency[state].low = bytesToInt16_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt16_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; + + p = state_p + 1; } - } - pending_bits++; - if (low < ONE_FOURTH) { - buf = output_bit_0_plus_pending(pending_bits); - put_codes_to_output(buf, pending_bits + 1, &bytes, &lackBits, &outSize); + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 5; // 2*sizeof(uint16_t)+1 + } else if (numOfRealStates <= 65536) { + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint16_t); + state_p = high_p + sizeof(uint16_t); + state = bytesToInt16_bigEndian(state_p); + + ariCoder.cumulative_frequency[state].low = bytesToInt16_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt16_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; + + p = state_p + sizeof(uint16_t); + } + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 6; } else { - buf = output_bit_1_plus_pending(pending_bits); - put_codes_to_output(buf, pending_bits + 1, &bytes, &lackBits, &outSize); - } - bytes += 1; - return outSize; - } + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint16_t); + state_p = high_p + sizeof(uint16_t); + state = bytesToInt32_bigEndian(state_p); - /** - * Arithmetic Decoding algorithm - * @param AriCoder *ariCoder (input): the encoder with the constructed frequency information - * @param unsigned char *s (input): the compressed stream of bytes - * @param size_t s_len (input): the number of bytes in the 'unsigned char *s' - * @param size_t targetLength (input): the target number of elements in the type array - * @param int *out (output) : the result (type array decompressed from the stream 's') - * - * */ - std::vector decode(const uchar *&bytes, size_t targetLength) { - std::vector out(targetLength); - -// void ari_decode(AriCoder *ariCoder, unsigned char *s, size_t s_len, size_t targetLength, int *out) { - size_t high = MAX_CODE; - size_t low = 0, i = 0; - size_t range = 0, scaled_value = 0; - size_t total_frequency = ariCoder.total_frequency; - const uchar *sp = bytes + 5; - unsigned int offset = 4; - size_t value = (bytesToUInt64_bigEndian(bytes) >> 20); //alignment with the MAX_CODE - size_t s_counter = sizeof(int); - - for (i = 0; i < targetLength; i++) { - range = high - low + 1; - scaled_value = ((value - low + 1) * ariCoder.total_frequency - 1) / range; - Prob *p = getCode(scaled_value); -// out[i] = p->state; //output the state to the 'out' array - if (transform) { - T x = p->state; //output the state to the 'out' array - if (x % 2 == 0) { - out[i] = ariCoder.numOfRealStates / 2 + std::ceil(x / 2.0); - } else { - out[i] = ariCoder.numOfRealStates / 2 - std::ceil(x / 2.0); - } - } else { - out[i] = p->state; //output the state to the 'out' array - } + ariCoder.cumulative_frequency[state].low = bytesToInt16_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt16_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; - if (i == targetLength - 1) { - break; - } - high = low + (range * p->high) / total_frequency - 1; - low = low + (range * p->low) / total_frequency; - - for (;;) { - if (high < ONE_HALF) { - //do nothing, bit is a zero - } else if (low >= ONE_HALF) { - value -= ONE_HALF; //subtract one half from all three code values - low -= ONE_HALF; - high -= ONE_HALF; - } else if (low >= ONE_FOURTH && high < THREE_FOURTHS) { - value -= ONE_FOURTH; - low -= ONE_FOURTH; - high -= ONE_FOURTH; - } else - break; - low <<= 1; - high <<= 1; - high++; - value <<= 1; - //load one bit from the input byte stream -// if (s_counter < s_len) { - value += get_bit(sp, offset++); - if (offset == 8) { - sp++; - s_counter++; - offset = 0; - } -// } + p = state_p + sizeof(uint32_t); } + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 8; } - bytes += s_counter; - return out; - } + } else if (total_frequency <= 4294967296) { + if (numOfRealStates <= 256) { + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint32_t); + state_p = high_p + sizeof(uint32_t); + state = *state_p; + + ariCoder.cumulative_frequency[state].low = bytesToInt32_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt32_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; + + p = state_p + 1; + } + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 9; + } else if (numOfRealStates <= 65536) { + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint32_t); + state_p = high_p + sizeof(uint32_t); + state = bytesToInt16_bigEndian(state_p); + + ariCoder.cumulative_frequency[state].low = bytesToInt32_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt32_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; + + p = state_p + sizeof(uint16_t); + } + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 10; + } else { + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint32_t); + state_p = high_p + sizeof(uint32_t); + state = bytesToInt32_bigEndian(state_p); - AriCoder ariCoder; + ariCoder.cumulative_frequency[state].low = bytesToInt32_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt32_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; - private: - bool transform; - std::vector bins_transform; + p = state_p + sizeof(uint32_t); + } + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 12; + } + } else { + if (numOfRealStates <= 256) { + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint64_t); + state_p = high_p + sizeof(uint64_t); + state = *state_p; + + ariCoder.cumulative_frequency[state].low = bytesToInt64_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt64_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; + + p = state_p + 1; + } + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 17; + } else if (numOfRealStates <= 65536) { + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint64_t); + state_p = high_p + sizeof(uint64_t); + state = bytesToInt16_bigEndian(state_p); + + ariCoder.cumulative_frequency[state].low = bytesToInt64_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt64_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; + + p = state_p + sizeof(uint16_t); + } + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 18; + } else { + for (i = 0; i < numOfValidStates; i++) { + low_p = p; + high_p = low_p + sizeof(uint64_t); + state_p = high_p + sizeof(uint64_t); + state = bytesToInt32_bigEndian(state_p); - inline void output_bit_1(unsigned int *buf) { - (*buf) = (*buf) << 1; - (*buf) |= 1; - } + ariCoder.cumulative_frequency[state].low = bytesToInt64_bigEndian(low_p); + ariCoder.cumulative_frequency[state].high = bytesToInt64_bigEndian(high_p); + ariCoder.cumulative_frequency[state].state = state; - inline void output_bit_0(unsigned int *buf) { - (*buf) = (*buf) << 1; - //(*byte) |= 0; //actually doesn't have to set the bit to 0 + p = state_p + sizeof(uint32_t); + } + offset = 2 * sizeof(int) + sizeof(uint64_t) + ariCoder.numOfValidStates * 20; + } } - - //TODO: problematic - inline unsigned int output_bit_1_plus_pending(int pending_bits) { - unsigned int buf = 0, pbits = pending_bits; - output_bit_1(&buf); - while (pbits--) - output_bit_0(&buf); - buf = buf << (32 - (pending_bits + - 1)); //alignment to the left leading bit, which would be easier for the final output - return buf; + remaining_length -= offset; + } + + /** + * Arithmetic Encoding + * @param AriCoder *ariCoder (input) + * @param int *s (input) + * @param size_t length (input) + * @param unsigned char *out (output) + * @param size_t *outSize (output) + * + * */ + // void ari_encode(AriCoder *ariCoder, int *s, size_t length, unsigned char *out, size_t *outSize) { + size_t encode(const std::vector &bins, uchar *&bytes) override { + const T *s = transform ? bins_transform.data() : bins.data(); + size_t length = transform ? bins_transform.size() : bins.size(); + // unsigned char *bytes = out; + size_t outSize = 0; + + int pending_bits = 0; + size_t low = 0; + size_t high = MAX_CODE; + size_t i = 0, range = 0; + size_t count = ariCoder.total_frequency; + int c = 0, lackBits = 0; + + Prob *cumulative_frequency = ariCoder.cumulative_frequency; + unsigned int buf = 0; + + for (i = 0; i < length; i++) { + c = s[i]; + Prob p = cumulative_frequency[c]; + range = high - low + 1; + high = low + (range * p.high / count) - 1; + low = low + (range * p.low / count); + for (;;) { + if (high < ONE_HALF) { + buf = output_bit_0_plus_pending(pending_bits); + put_codes_to_output(buf, pending_bits + 1, &bytes, &lackBits, &outSize); + pending_bits = 0; + } else if (low >= ONE_HALF) { + buf = output_bit_1_plus_pending(pending_bits); + put_codes_to_output(buf, pending_bits + 1, &bytes, &lackBits, &outSize); + pending_bits = 0; + } else if (low >= ONE_FOURTH && high < THREE_FOURTHS) { + pending_bits++; + low -= ONE_FOURTH; + high -= ONE_FOURTH; + } else + break; + high <<= 1; + high++; + low <<= 1; + high &= MAX_CODE; + low &= MAX_CODE; + } } - - inline unsigned int output_bit_0_plus_pending(int pending_bits) { - unsigned int buf = 0, pbits = pending_bits; - //output_bit_0(&buf); - while (pbits--) - output_bit_1(&buf); - buf = buf << (32 - (pending_bits + 1)); //alignment to the left leading bit - return buf; + pending_bits++; + if (low < ONE_FOURTH) { + buf = output_bit_0_plus_pending(pending_bits); + put_codes_to_output(buf, pending_bits + 1, &bytes, &lackBits, &outSize); + } else { + buf = output_bit_1_plus_pending(pending_bits); + put_codes_to_output(buf, pending_bits + 1, &bytes, &lackBits, &outSize); } + bytes += 1; + return outSize; + } + + /** + * Arithmetic Decoding algorithm + * @param AriCoder *ariCoder (input): the encoder with the constructed frequency information + * @param unsigned char *s (input): the compressed stream of bytes + * @param size_t s_len (input): the number of bytes in the 'unsigned char *s' + * @param size_t targetLength (input): the target number of elements in the type array + * @param int *out (output) : the result (type array decompressed from the stream 's') + * + * */ + std::vector decode(const uchar *&bytes, size_t targetLength) override { + std::vector out(targetLength); + + // void ari_decode(AriCoder *ariCoder, unsigned char *s, size_t s_len, size_t targetLength, int *out) { + size_t high = MAX_CODE; + size_t low = 0, i = 0; + size_t range = 0, scaled_value = 0; + size_t total_frequency = ariCoder.total_frequency; + const uchar *sp = bytes + 5; + unsigned int offset = 4; + size_t value = (bytesToInt64_bigEndian(bytes) >> 20); // alignment with the MAX_CODE + size_t s_counter = sizeof(int); + + for (i = 0; i < targetLength; i++) { + range = high - low + 1; + scaled_value = ((value - low + 1) * ariCoder.total_frequency - 1) / range; + Prob *p = getCode(scaled_value); + // out[i] = p->state; //output the state to the 'out' array + if (transform) { + T x = p->state; // output the state to the 'out' array + if (x % 2 == 0) { + out[i] = ariCoder.numOfRealStates / 2 + std::ceil(x / 2.0); + } else { + out[i] = ariCoder.numOfRealStates / 2 - std::ceil(x / 2.0); + } + } else { + out[i] = p->state; // output the state to the 'out' array + } -/** - * Get the integer code based on Arithmetic Coding Value - * @param AriCoder *ariCoder (input) - * @param size_t scaled_value (input) - * - * @return Prob* (output) - * - * */ - Prob *getCode(size_t scaled_value) { - int numOfRealStates = ariCoder.numOfRealStates; - int i = 0; - Prob *p = ariCoder.cumulative_frequency; - for (i = 0; i < numOfRealStates; i++, p++) { - if (scaled_value < p->high) + if (i == targetLength - 1) { + break; + } + high = low + (range * p->high) / total_frequency - 1; + low = low + (range * p->low) / total_frequency; + + for (;;) { + if (high < ONE_HALF) { + // do nothing, bit is a zero + } else if (low >= ONE_HALF) { + value -= ONE_HALF; // subtract one half from all three code values + low -= ONE_HALF; + high -= ONE_HALF; + } else if (low >= ONE_FOURTH && high < THREE_FOURTHS) { + value -= ONE_FOURTH; + low -= ONE_FOURTH; + high -= ONE_FOURTH; + } else break; + low <<= 1; + high <<= 1; + high++; + value <<= 1; + // load one bit from the input byte stream + // if (s_counter < s_len) { + value += get_bit(sp, offset++); + if (offset == 8) { + sp++; + s_counter++; + offset = 0; + } + // } } - return p; } - -/** - * Get one bit from the input stream of bytes - * @param unsigned char* p (input): the current location to be read (byte) of the byte stream - * @param int offset (input): the offset of the specified byte in the byte stream - * - * @return unsigned char (output) : 1 or 0 - * */ - inline unsigned char get_bit(const uchar *p, int offset) { - return ((*p) >> (7 - offset)) & 0x01; + bytes += s_counter; + return out; + } + + AriCoder ariCoder; + + private: + bool transform; + std::vector bins_transform; + + inline void output_bit_1(unsigned int *buf) { + (*buf) = (*buf) << 1; + (*buf) |= 1; + } + + inline void output_bit_0(unsigned int *buf) { + (*buf) = (*buf) << 1; + //(*byte) |= 0; //actually doesn't have to set the bit to 0 + } + + // TODO: problematic + inline unsigned int output_bit_1_plus_pending(int pending_bits) { + unsigned int buf = 0, pbits = pending_bits; + output_bit_1(&buf); + while (pbits--) output_bit_0(&buf); + buf = buf << (32 - (pending_bits + + 1)); // alignment to the left leading bit, which would be easier for the final output + return buf; + } + + inline unsigned int output_bit_0_plus_pending(int pending_bits) { + unsigned int buf = 0, pbits = pending_bits; + // output_bit_0(&buf); + while (pbits--) output_bit_1(&buf); + buf = buf << (32 - (pending_bits + 1)); // alignment to the left leading bit + return buf; + } + + /** + * Get the integer code based on Arithmetic Coding Value + * @param AriCoder *ariCoder (input) + * @param size_t scaled_value (input) + * + * @return Prob* (output) + * + * */ + Prob *getCode(size_t scaled_value) { + int numOfRealStates = ariCoder.numOfRealStates; + int i = 0; + Prob *p = ariCoder.cumulative_frequency; + for (i = 0; i < numOfRealStates; i++, p++) { + if (scaled_value < p->high) break; } - - /** - * put 'buf_nbBits' bits represented by buf into a long byte stream (the current output byte pointer is p, where offset is the number of bits already filled out for this byte so far) - * */ - void put_codes_to_output(unsigned int buf, int bitSize, unsigned char **p, int *lackBits, size_t *outSize) { - int byteSize, byteSizep; - if (*lackBits == 0) { - byteSize = bitSize % 8 == 0 ? bitSize / 8 : bitSize / 8 + - 1; //it's equal to the number of bytes involved (for *outSize) - byteSizep = bitSize >> 3; //it's used to move the pointer p for next data - intToBytes_bigEndian(*p, buf); - (*p) += byteSizep; - *outSize += byteSize; + return p; + } + + /** + * Get one bit from the input stream of bytes + * @param unsigned char* p (input): the current location to be read (byte) of the byte stream + * @param int offset (input): the offset of the specified byte in the byte stream + * + * @return unsigned char (output) : 1 or 0 + * */ + inline unsigned char get_bit(const uchar *p, int offset) { return ((*p) >> (7 - offset)) & 0x01; } + + /** + * put 'buf_nbBits' bits represented by buf into a long byte stream (the current output byte pointer is p, where + * offset is the number of bits already filled out for this byte so far) + * */ + void put_codes_to_output(unsigned int buf, int bitSize, unsigned char **p, int *lackBits, size_t *outSize) { + int byteSize, byteSizep; + if (*lackBits == 0) { + byteSize = bitSize % 8 == 0 ? bitSize / 8 + : bitSize / 8 + 1; // it's equal to the number of bytes involved (for *outSize) + byteSizep = bitSize >> 3; // it's used to move the pointer p for next data + int32ToBytes_bigEndian(*p, buf); + (*p) += byteSizep; + *outSize += byteSize; + (*lackBits) = bitSize % 8 == 0 ? 0 : 8 - bitSize % 8; + } else { + **p = (**p) | static_cast(buf >> (32 - *lackBits)); + if ((*lackBits) < bitSize) { + (*p)++; + int newCode = buf << (*lackBits); + int32ToBytes_bigEndian(*p, newCode); + bitSize -= *lackBits; + byteSizep = bitSize >> 3; // =bitSize/8 + byteSize = bitSize % 8 == 0 ? byteSizep : byteSizep + 1; + *p += byteSizep; + (*outSize) += byteSize; (*lackBits) = bitSize % 8 == 0 ? 0 : 8 - bitSize % 8; } else { - **p = (**p) | (unsigned char) (buf >> (32 - *lackBits)); - if ((*lackBits) < bitSize) { - (*p)++; - int newCode = buf << (*lackBits); - intToBytes_bigEndian(*p, newCode); - bitSize -= *lackBits; - byteSizep = bitSize >> 3; // =bitSize/8 - byteSize = bitSize % 8 == 0 ? byteSizep : byteSizep + 1; - *p += byteSizep; - (*outSize) += byteSize; - (*lackBits) = bitSize % 8 == 0 ? 0 : 8 - bitSize % 8; - } else { - (*lackBits) -= bitSize; - if (*lackBits == 0) - (*p)++; - } + (*lackBits) -= bitSize; + if (*lackBits == 0) (*p)++; } } + } +}; - }; - -} +} // namespace SZ3 #endif /* ----- #ifndef _ArithmeticEncoder_H ----- */ - diff --git a/lib/SZ3/include/SZ3/encoder/BypassEncoder.hpp b/lib/SZ3/include/SZ3/encoder/BypassEncoder.hpp index cf78ff93..9c3ef8e6 100644 --- a/lib/SZ3/include/SZ3/encoder/BypassEncoder.hpp +++ b/lib/SZ3/include/SZ3/encoder/BypassEncoder.hpp @@ -1,49 +1,42 @@ -#ifndef _SZ_BYPASS_ENCODER_HPP -#define _SZ_BYPASS_ENCODER_HPP +#ifndef SZ3_BYPASS_ENCODER_HPP +#define SZ3_BYPASS_ENCODER_HPP -#include "Encoder.hpp" -#include "SZ3/def.hpp" +#include #include -namespace SZ { - - template - class BypassEncoder : public concepts::EncoderInterface { - public: - - ~BypassEncoder() = default; +#include "Encoder.hpp" +#include "SZ3/def.hpp" - void preprocess_encode(const std::vector &bins, int stateNum) { - assert(stateNum <= 256 && "stateNum should be no more than 256."); - }; +namespace SZ3 { - size_t encode(const std::vector &bins, uchar *&bytes) { - for (auto &bin: bins) { - *bytes++ = uchar(bin); - } - return 0; - }; +template +class BypassEncoder : public concepts::EncoderInterface { + public: + void preprocess_encode(const std::vector &bins, int stateNum) override { + } - void postprocess_encode() {}; + size_t encode(const std::vector &bins, uchar *&bytes) override { + memcpy(bytes, &bins[0], sizeof(T) * bins.size()); + bytes += sizeof(T) * bins.size(); + return 0; + } - void preprocess_decode() {}; + void postprocess_encode() override {} - std::vector decode(const uchar *&bytes, size_t targetLength) { - std::vector bins(targetLength); - for (auto &bin: bins) { - bin = *bytes++; - } - return bins; - }; + void preprocess_decode() override {} - void postprocess_decode() {}; + std::vector decode(const uchar *&bytes, size_t targetLength) override { + std::vector bins(targetLength); + memcpy(bins.data(), bytes, sizeof(T) * targetLength); + bytes += sizeof(T) * targetLength; + return bins; + } - uint save(uchar *&c) { - return 0; - }; + void postprocess_decode() override {} - void load(const uchar *&c, size_t &remaining_length) {}; + void save(uchar *&c) override {} - }; -} + void load(const uchar *&c, size_t &remaining_length) override {} +}; +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/encoder/Encoder.hpp b/lib/SZ3/include/SZ3/encoder/Encoder.hpp index 18fc1794..822502dd 100644 --- a/lib/SZ3/include/SZ3/encoder/Encoder.hpp +++ b/lib/SZ3/include/SZ3/encoder/Encoder.hpp @@ -1,37 +1,72 @@ -#ifndef _SZ_ENCODER_HPP -#define _SZ_ENCODER_HPP +#ifndef SZ3_ENCODER_HPP +#define SZ3_ENCODER_HPP -namespace SZ { - namespace concepts { +#include - template - class EncoderInterface { - public: +#include "SZ3/def.hpp" +namespace SZ3 { +namespace concepts { - virtual ~EncoderInterface() = default; +/** + * Encoder changes the input to a more compact representative + * Usually this step is lossless instead of lossy + * Examples: huffman, runlenth, etc. + * @tparam T + */ +template > +class EncoderInterface { + public: + virtual ~EncoderInterface() = default; - virtual void preprocess_encode(const std::vector &bins, int stateNum) = 0; + /** + * init the encoder + * E.g., Huffman will build tree in this step + * @param bins to-be-encoded integers + * @param stateNum stateNum > 0 indicates the bins has a range of [0, stateNum). stateNum == 0 means no such + * guarantee + */ + virtual void preprocess_encode(const std::vector &bins, int stateNum) = 0; - virtual size_t encode(const std::vector &bins, uchar *&bytes) = 0; + /** + * encode the input (in vector format) to a more compact representative(in byte stream format) + * @param bins input in vector + * @param bytes output in byte stream + * @return size of output (# of bytes) + */ + virtual size_t encode(const std::vector &bins, uchar *&bytes) = 0; - virtual void postprocess_encode() = 0; + /** + * reverse of encode() + * @param bytes input in byte stream + * @param targetLength size of the output vector + * @return output in vector + */ + virtual std::vector decode(const uchar *&bytes, size_t targetLength) = 0; - virtual void preprocess_decode() = 0; + /** + * serialize the encoder and store it to a buffer + * @param c One large buffer is pre-allocated, and the start location of the serialized encoder in the buffer is + * indicated by c. After saving the encoder to the buffer, this function should change c to indicate the next empty + * location in the buffer + */ + virtual void save(uchar *&c) = 0; - virtual std::vector decode(const uchar *&bytes, size_t targetLength) = 0; + /** + * deserialize the encoder from a buffer + * @param c start location of the encoder in the buffer + * @param remaining_length the remaining length of the buffer + */ + virtual void load(const uchar *&c, size_t &remaining_length) = 0; - virtual void postprocess_decode() = 0; + virtual void postprocess_decode() = 0; - virtual uint save(uchar *&c) = 0; + virtual void postprocess_encode() = 0; - virtual void load(const uchar *&c, size_t &remaining_length) = 0; + virtual void preprocess_decode() = 0; - // return the size of the encoder itself (such as the tree size of the huffman encoder) - virtual size_t size_est() { - return 0; - } - - }; - } -} + // return the size of the encoder itself (such as the tree size of the huffman encoder) + virtual size_t size_est() { return 0; } +}; +} // namespace concepts +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/encoder/HuffmanEncoder.hpp b/lib/SZ3/include/SZ3/encoder/HuffmanEncoder.hpp index ee5a7488..054835d0 100644 --- a/lib/SZ3/include/SZ3/encoder/HuffmanEncoder.hpp +++ b/lib/SZ3/include/SZ3/encoder/HuffmanEncoder.hpp @@ -1,648 +1,658 @@ -#ifndef _SZ_HUFFMAN_ENCODER_HPP -#define _SZ_HUFFMAN_ENCODER_HPP +#ifndef SZ3_HUFFMAN_ENCODER_HPP +#define SZ3_HUFFMAN_ENCODER_HPP + +#include #include "SZ3/def.hpp" #include "SZ3/encoder/Encoder.hpp" #include "SZ3/utils/ByteUtil.hpp" #include "SZ3/utils/MemoryUtil.hpp" #include "SZ3/utils/Timer.hpp" +#if INTPTR_MAX == INT64_MAX // 64bit system #include "SZ3/utils/ska_hash/unordered_map.hpp" +#endif // INTPTR_MAX == INT64_MAX #include +#include #include #include -#include #include #include +#include #include #include -#include - - -namespace SZ { - - - template - class HuffmanEncoder : public concepts::EncoderInterface { - - public: - - typedef struct node_t { - struct node_t *left, *right; - size_t freq; - char t; //in_node:0; otherwise:1 - T c; - } *node; - - typedef struct HuffmanTree { - unsigned int stateNum; - unsigned int allNodes; - struct node_t *pool; - node *qqq, *qq; //the root node of the HuffmanTree is qq[1] - int n_nodes; //n_nodes is for compression - int qend; - uint64_t **code; - unsigned char *cout; - int n_inode; //n_inode is for decompression - int maxBitCount; - } HuffmanTree; - - - HuffmanEncoder() { - int x = 1; - char *y = (char *) &x; - if (*y == 1) - sysEndianType = 0; - else //=0 - sysEndianType = 1; - } - - ~HuffmanEncoder() { - SZ_FreeHuffman(); - } - - //build huffman tree - HuffmanTree *createHuffmanTree(int stateNum) { - HuffmanTree *huffmanTree = (HuffmanTree *) malloc(sizeof(HuffmanTree)); - memset(huffmanTree, 0, sizeof(HuffmanTree)); - huffmanTree->stateNum = stateNum; - huffmanTree->allNodes = 2 * stateNum; - - huffmanTree->pool = (struct node_t *) malloc(huffmanTree->allNodes * 2 * sizeof(struct node_t)); - huffmanTree->qqq = (node *) malloc(huffmanTree->allNodes * 2 * sizeof(node)); - huffmanTree->code = (uint64_t **) malloc(huffmanTree->stateNum * sizeof(uint64_t *)); - huffmanTree->cout = (unsigned char *) malloc(huffmanTree->stateNum * sizeof(unsigned char)); - - memset(huffmanTree->pool, 0, huffmanTree->allNodes * 2 * sizeof(struct node_t)); - memset(huffmanTree->qqq, 0, huffmanTree->allNodes * 2 * sizeof(node)); - memset(huffmanTree->code, 0, huffmanTree->stateNum * sizeof(uint64_t *)); - memset(huffmanTree->cout, 0, huffmanTree->stateNum * sizeof(unsigned char)); - huffmanTree->qq = huffmanTree->qqq - 1; - huffmanTree->n_nodes = 0; - huffmanTree->n_inode = 0; - huffmanTree->qend = 1; - - return huffmanTree; - } - - /** - * build huffman tree using bins - * @param bins - * @param stateNum is no longer needed - */ - void preprocess_encode(const std::vector &bins, int stateNum) { - preprocess_encode(bins.data(), bins.size(), stateNum); - } - /** - * build huffman tree using bins - * @param bins - * @param num_bin - * @param stateNum is no longer needed - */ - void preprocess_encode(const T *bins, size_t num_bin, int stateNum) { - nodeCount = 0; - if (num_bin == 0) { - printf("Huffman bins should not be empty\n"); - exit(0); - } - init(bins, num_bin); - for (int i = 0; i < huffmanTree->stateNum; i++) - if (huffmanTree->code[i]) nodeCount++; - nodeCount = nodeCount * 2 - 1; - } - - //save the huffman Tree in the compressed data - uint save(uchar *&c) { - auto cc = c; - write(offset, c); - int32ToBytes_bigEndian(c, nodeCount); - c += sizeof(int); - int32ToBytes_bigEndian(c, huffmanTree->stateNum / 2); - c += sizeof(int); - uint totalSize = 0;// = convert_HuffTree_to_bytes_anyStates(nodeCount, c); - // std::cout << "nodeCount = " << nodeCount << std::endl; - if (nodeCount <= 256) - totalSize = convert_HuffTree_to_bytes_anyStates(nodeCount, c); - else if (nodeCount <= 65536) - totalSize = convert_HuffTree_to_bytes_anyStates(nodeCount, c); - else - totalSize = convert_HuffTree_to_bytes_anyStates(nodeCount, c); - c += totalSize; - return c - cc; - } - - size_t size_est() { - size_t b = (nodeCount <= 256) ? sizeof(unsigned char) : ((nodeCount <= 65536) ? sizeof(unsigned short) : sizeof(unsigned int)); - return 1 + 2 * nodeCount * b + nodeCount * sizeof(unsigned char) + nodeCount * sizeof(T) + sizeof(int) + sizeof(int) + sizeof(T); +namespace SZ3 { + +template +class HuffmanEncoder : public concepts::EncoderInterface { + public: + typedef struct node_t { + struct node_t *left, *right; + size_t freq; + char t; // in_node:0; otherwise:1 + T c; + } *node; + + typedef struct HuffmanTree { + unsigned int stateNum; + unsigned int allNodes; + struct node_t *pool; + node *qqq, *qq; // the root node of the HuffmanTree is qq[1] + int n_nodes; // n_nodes is for compression + int qend; + uint64_t **code; + unsigned char *cout; + int n_inode; // n_inode is for decompression + int maxBitCount; + } HuffmanTree; + + HuffmanEncoder() { + int x = 1; + char *y = reinterpret_cast(&x); + if (*y == 1) + sysEndianType = 0; + else //=0 + sysEndianType = 1; + } + + ~HuffmanEncoder() override { SZ_FreeHuffman(); } + + // build huffman tree + HuffmanTree *createHuffmanTree(int stateNum) { + HuffmanTree *huffmanTree = static_cast(malloc(sizeof(HuffmanTree))); + memset(huffmanTree, 0, sizeof(HuffmanTree)); + huffmanTree->stateNum = stateNum; + huffmanTree->allNodes = 2 * stateNum; + + huffmanTree->pool = static_cast(malloc(huffmanTree->allNodes * 2 * sizeof(struct node_t))); + huffmanTree->qqq = static_cast(malloc(huffmanTree->allNodes * 2 * sizeof(node))); + huffmanTree->code = static_cast(malloc(huffmanTree->stateNum * sizeof(uint64_t *))); + huffmanTree->cout = static_cast(malloc(huffmanTree->stateNum * sizeof(unsigned char))); + + memset(huffmanTree->pool, 0, huffmanTree->allNodes * 2 * sizeof(struct node_t)); + memset(huffmanTree->qqq, 0, huffmanTree->allNodes * 2 * sizeof(node)); + memset(huffmanTree->code, 0, huffmanTree->stateNum * sizeof(uint64_t *)); + memset(huffmanTree->cout, 0, huffmanTree->stateNum * sizeof(unsigned char)); + huffmanTree->qq = huffmanTree->qqq - 1; + huffmanTree->n_nodes = 0; + huffmanTree->n_inode = 0; + huffmanTree->qend = 1; + + return huffmanTree; + } + + /** + * build huffman tree using bins + * @param bins + * @param stateNum + */ + void preprocess_encode(const std::vector &bins, int stateNum) override { + preprocess_encode(bins.data(), bins.size(), stateNum); + } + + /** + * build huffman tree using bins + * @param bins + * @param num_bin + * @param stateNum + */ + void preprocess_encode(const T *bins, size_t num_bin, int stateNum) { + nodeCount = 0; + if (num_bin == 0) { + throw std::invalid_argument("Huffman bins should not be empty"); } + init(bins, num_bin); + for (int i = 0; i < huffmanTree->stateNum; i++) + if (huffmanTree->code[i]) nodeCount++; + nodeCount = nodeCount * 2 - 1; + } + + // save the huffman Tree in the compressed data + void save(uchar *&c) override { + // auto cc = c; + write(offset, c); + int32ToBytes_bigEndian(c, nodeCount); + c += sizeof(int); + int32ToBytes_bigEndian(c, huffmanTree->stateNum / 2); + c += sizeof(int); + uint totalSize = 0; // = convert_HuffTree_to_bytes_anyStates(nodeCount, c); + // std::cout << "nodeCount = " << nodeCount << std::endl; + if (nodeCount <= 256) + totalSize = convert_HuffTree_to_bytes_anyStates(nodeCount, c); + else if (nodeCount <= 65536) + totalSize = convert_HuffTree_to_bytes_anyStates(nodeCount, c); + else + totalSize = convert_HuffTree_to_bytes_anyStates(nodeCount, c); + c += totalSize; + // return c - cc; + } + + size_t size_est() override { + size_t b = (nodeCount <= 256) ? sizeof(unsigned char) + : ((nodeCount <= 65536) ? sizeof(unsigned short) : sizeof(unsigned int)); + return 1 + 2 * nodeCount * b + nodeCount * sizeof(unsigned char) + nodeCount * sizeof(T) + sizeof(int) + + sizeof(int) + sizeof(T); + } + + // perform encoding + size_t encode(const std::vector &bins, uchar *&bytes) override { + return encode(bins.data(), bins.size(), bytes); + } + + // perform encoding + size_t encode(const T *bins, size_t num_bin, uchar *&bytes) { + size_t outSize = 0; + size_t i = 0; + unsigned char bitSize = 0, byteSize, byteSizep; + int state; + uchar *p = bytes + sizeof(size_t); + int lackBits = 0; + // int64_t totalBitSize = 0, maxBitSize = 0, bitSize21 = 0, bitSize32 = 0; + for (i = 0; i < num_bin; i++) { + state = bins[i] - offset; + bitSize = huffmanTree->cout[state]; + + if (lackBits == 0) { + byteSize = bitSize % 8 == 0 + ? bitSize / 8 + : bitSize / 8 + 1; // it's equal to the number of bytes involved (for *outSize) + byteSizep = bitSize / 8; // it's used to move the pointer p for next data + if (byteSize <= 8) { + int64ToBytes_bigEndian(p, (huffmanTree->code[state])[0]); + p += byteSizep; + } else // byteSize>8 + { + int64ToBytes_bigEndian(p, (huffmanTree->code[state])[0]); + p += 8; + int64ToBytes_bigEndian(p, (huffmanTree->code[state])[1]); + p += (byteSizep - 8); + } + outSize += byteSize; + lackBits = bitSize % 8 == 0 ? 0 : 8 - bitSize % 8; + } else { + *p = (*p) | static_cast((huffmanTree->code[state])[0] >> (64 - lackBits)); + if (lackBits < bitSize) { + p++; - //perform encoding - size_t encode(const std::vector &bins, uchar *&bytes) { - return encode(bins.data(), bins.size(), bytes); - } + int64_t newCode = (huffmanTree->code[state])[0] << lackBits; + int64ToBytes_bigEndian(p, newCode); - //perform encoding - size_t encode(const T *bins, size_t num_bin, uchar *&bytes) { - size_t outSize = 0; - size_t i = 0; - unsigned char bitSize = 0, byteSize, byteSizep; - int state; - uchar *p = bytes + sizeof(size_t); - int lackBits = 0; - //int64_t totalBitSize = 0, maxBitSize = 0, bitSize21 = 0, bitSize32 = 0; - for (i = 0; i < num_bin; i++) { - state = bins[i] - offset; - bitSize = huffmanTree->cout[state]; - - if (lackBits == 0) { - byteSize = bitSize % 8 == 0 ? bitSize / 8 : bitSize / 8 + - 1; //it's equal to the number of bytes involved (for *outSize) - byteSizep = bitSize / 8; //it's used to move the pointer p for next data - if (byteSize <= 8) { - int64ToBytes_bigEndian(p, (huffmanTree->code[state])[0]); + if (bitSize <= 64) { + bitSize -= lackBits; + byteSize = bitSize % 8 == 0 ? bitSize / 8 : bitSize / 8 + 1; + byteSizep = bitSize / 8; p += byteSizep; - } else //byteSize>8 + outSize += byteSize; + lackBits = bitSize % 8 == 0 ? 0 : 8 - bitSize % 8; + } else // bitSize > 64 { - int64ToBytes_bigEndian(p, (huffmanTree->code[state])[0]); - p += 8; - int64ToBytes_bigEndian(p, (huffmanTree->code[state])[1]); - p += (byteSizep - 8); - } - outSize += byteSize; - lackBits = bitSize % 8 == 0 ? 0 : 8 - bitSize % 8; - } else { - *p = (*p) | (unsigned char) ((huffmanTree->code[state])[0] >> (64 - lackBits)); - if (lackBits < bitSize) { - p++; - - int64_t newCode = (huffmanTree->code[state])[0] << lackBits; - int64ToBytes_bigEndian(p, newCode); + byteSizep = 7; // must be 7 bytes, because lackBits!=0 + p += byteSizep; + outSize += byteSize; - if (bitSize <= 64) { + bitSize -= 64; + if (lackBits < bitSize) { + *p = (*p) | static_cast((huffmanTree->code[state])[0] >> (64 - lackBits)); + p++; + newCode = (huffmanTree->code[state])[1] << lackBits; + int64ToBytes_bigEndian(p, newCode); bitSize -= lackBits; byteSize = bitSize % 8 == 0 ? bitSize / 8 : bitSize / 8 + 1; byteSizep = bitSize / 8; p += byteSizep; outSize += byteSize; lackBits = bitSize % 8 == 0 ? 0 : 8 - bitSize % 8; - } else //bitSize > 64 + } else // lackBits >= bitSize { - byteSizep = 7; //must be 7 bytes, because lackBits!=0 - p += byteSizep; - outSize += byteSize; - - bitSize -= 64; - if (lackBits < bitSize) { - *p = (*p) | (unsigned char) ((huffmanTree->code[state])[0] >> (64 - lackBits)); - p++; - newCode = (huffmanTree->code[state])[1] << lackBits; - int64ToBytes_bigEndian(p, newCode); - bitSize -= lackBits; - byteSize = bitSize % 8 == 0 ? bitSize / 8 : bitSize / 8 + 1; - byteSizep = bitSize / 8; - p += byteSizep; - outSize += byteSize; - lackBits = bitSize % 8 == 0 ? 0 : 8 - bitSize % 8; - } else //lackBits >= bitSize - { - *p = (*p) | (unsigned char) ((huffmanTree->code[state])[0] >> (64 - bitSize)); - lackBits -= bitSize; - } + *p = (*p) | static_cast((huffmanTree->code[state])[0] >> (64 - bitSize)); + lackBits -= bitSize; } - } else //lackBits >= bitSize - { - lackBits -= bitSize; - if (lackBits == 0) - p++; } + } else // lackBits >= bitSize + { + lackBits -= bitSize; + if (lackBits == 0) p++; } } - *reinterpret_cast(bytes) = outSize; - bytes += sizeof(size_t) + outSize; - return outSize; } - - void postprocess_encode() { - SZ_FreeHuffman(); - } - - void preprocess_decode() {}; - - //perform decoding - std::vector decode(const uchar *&bytes, size_t targetLength) { - node t = treeRoot; - std::vector out(targetLength); - size_t i = 0, byteIndex = 0, count = 0; - int r; - node n = treeRoot; - size_t encodedLength = *reinterpret_cast(bytes); - bytes += sizeof(size_t); - if (n->t) //root->t==1 means that all state values are the same (constant) - { - for (count = 0; count < targetLength; count++) - out[count] = n->c + offset; - return out; - } - - for (i = 0; count < targetLength; i++) { - byteIndex = i >> 3; //i/8 - r = i % 8; - if (((bytes[byteIndex] >> (7 - r)) & 0x01) == 0) - n = n->left; - else - n = n->right; - - if (n->t) { - out[count] = n->c + offset; - n = t; - count++; - } - } - bytes += encodedLength; + write(outSize, bytes); + bytes += outSize; // move pointer to end of encoded array + return outSize; + } + + void postprocess_encode() override { SZ_FreeHuffman(); } + + void preprocess_decode() override {} + + // perform decoding + std::vector decode(const uchar *&bytes, size_t targetLength) override { + node t = treeRoot; + std::vector out(targetLength); + size_t i = 0, byteIndex = 0, count = 0; + int r; + node n = treeRoot; + size_t encodedLength = 0; + read(encodedLength, bytes); + if (n->t) // root->t==1 means that all state values are the same (constant) + { + for (count = 0; count < targetLength; count++) out[count] = n->c + offset; return out; } - //empty function - void postprocess_decode() { - SZ_FreeHuffman(); - } - - //load Huffman tree - void load(const uchar *&c, size_t &remaining_length) { - read(offset, c, remaining_length); - nodeCount = bytesToInt32_bigEndian(c); - int stateNum = bytesToInt32_bigEndian(c + sizeof(int)) * 2; - size_t encodeStartIndex; - if (nodeCount <= 256) - encodeStartIndex = 1 + 3 * nodeCount * sizeof(unsigned char) + nodeCount * sizeof(T); - else if (nodeCount <= 65536) - encodeStartIndex = - 1 + 2 * nodeCount * sizeof(unsigned short) + nodeCount * sizeof(unsigned char) + - nodeCount * sizeof(T); + for (i = 0; count < targetLength; i++) { + byteIndex = i >> 3; // i/8 + r = i % 8; + if (((bytes[byteIndex] >> (7 - r)) & 0x01) == 0) + n = n->left; else - encodeStartIndex = - 1 + 2 * nodeCount * sizeof(unsigned int) + nodeCount * sizeof(unsigned char) + - nodeCount * sizeof(T); - - huffmanTree = createHuffmanTree(stateNum); - treeRoot = reconstruct_HuffTree_from_bytes_anyStates(c + sizeof(int) + sizeof(int), nodeCount); - c += sizeof(int) + sizeof(int) + encodeStartIndex; - loaded = true; - } + n = n->right; - bool isLoaded() { return loaded; } - - private: - HuffmanTree *huffmanTree = NULL; - node treeRoot; - unsigned int nodeCount = 0; - uchar sysEndianType; //0: little endian, 1: big endian - bool loaded = false; - T offset; - - - node reconstruct_HuffTree_from_bytes_anyStates(const unsigned char *bytes, uint nodeCount) { - if (nodeCount <= 256) { - unsigned char *L = (unsigned char *) malloc(nodeCount * sizeof(unsigned char)); - memset(L, 0, nodeCount * sizeof(unsigned char)); - unsigned char *R = (unsigned char *) malloc(nodeCount * sizeof(unsigned char)); - memset(R, 0, nodeCount * sizeof(unsigned char)); - T *C = (T *) malloc(nodeCount * sizeof(T)); - memset(C, 0, nodeCount * sizeof(T)); - unsigned char *t = (unsigned char *) malloc(nodeCount * sizeof(unsigned char)); - memset(t, 0, nodeCount * sizeof(unsigned char)); - // TODO: Endian type - // unsigned char cmpSysEndianType = bytes[0]; - // if(cmpSysEndianType!=(unsigned char)sysEndianType) - // { - // unsigned char* p = (unsigned char*)(bytes+1+2*nodeCount*sizeof(unsigned char)); - // size_t i = 0, size = nodeCount*sizeof(unsigned int); - // while(1) - // { - // symTransform_4bytes(p); - // i+=sizeof(unsigned int); - // if(inew_node2(C[0], t[0]); - this->unpad_tree(L, R, C, t, 0, root); - free(L); - free(R); - free(C); - free(t); - return root; - } else if (nodeCount <= 65536) { - unsigned short *L = (unsigned short *) malloc(nodeCount * sizeof(unsigned short)); - memset(L, 0, nodeCount * sizeof(unsigned short)); - unsigned short *R = (unsigned short *) malloc(nodeCount * sizeof(unsigned short)); - memset(R, 0, nodeCount * sizeof(unsigned short)); - T *C = (T *) malloc(nodeCount * sizeof(T)); - memset(C, 0, nodeCount * sizeof(T)); - unsigned char *t = (unsigned char *) malloc(nodeCount * sizeof(unsigned char)); - memset(t, 0, nodeCount * sizeof(unsigned char)); - - // TODO: Endian type - // unsigned char cmpSysEndianType = bytes[0]; - // if(cmpSysEndianType!=(unsigned char)sysEndianType) - // { - // unsigned char* p = (unsigned char*)(bytes+1); - // size_t i = 0, size = 3*nodeCount*sizeof(unsigned int); - // while(1) - // { - // symTransform_4bytes(p); - // i+=sizeof(unsigned int); - // if(inew_node2(0, 0); - this->unpad_tree(L, R, C, t, 0, root); - free(L); - free(R); - free(C); - free(t); - return root; - } else //nodeCount>65536 - { - unsigned int *L = (unsigned int *) malloc(nodeCount * sizeof(unsigned int)); - memset(L, 0, nodeCount * sizeof(unsigned int)); - unsigned int *R = (unsigned int *) malloc(nodeCount * sizeof(unsigned int)); - memset(R, 0, nodeCount * sizeof(unsigned int)); - T *C = (T *) malloc(nodeCount * sizeof(T)); - memset(C, 0, nodeCount * sizeof(T)); - unsigned char *t = (unsigned char *) malloc(nodeCount * sizeof(unsigned char)); - memset(t, 0, nodeCount * sizeof(unsigned char)); - // TODO: Endian type - // unsigned char cmpSysEndianType = bytes[0]; - // if(cmpSysEndianType!=(unsigned char)sysEndianType) - // { - // unsigned char* p = (unsigned char*)(bytes+1); - // size_t i = 0, size = 3*nodeCount*sizeof(unsigned int); - // while(1) - // { - // symTransform_4bytes(p); - // i+=sizeof(unsigned int); - // if(inew_node2(0, 0); - this->unpad_tree(L, R, C, t, 0, root); - free(L); - free(R); - free(C); - free(t); - return root; + if (n->t) { + out[count] = n->c + offset; + n = t; + count++; } } + bytes += encodedLength; + return out; + } + + // empty function + void postprocess_decode() override { SZ_FreeHuffman(); } + + // load Huffman tree + void load(const uchar *&c, size_t &remaining_length) override { + read(offset, c, remaining_length); + nodeCount = bytesToInt32_bigEndian(c); + int stateNum = bytesToInt32_bigEndian(c + sizeof(int)) * 2; + size_t encodeStartIndex; + if (nodeCount <= 256) + encodeStartIndex = 1 + 3 * nodeCount * sizeof(unsigned char) + nodeCount * sizeof(T); + else if (nodeCount <= 65536) + encodeStartIndex = + 1 + 2 * nodeCount * sizeof(unsigned short) + nodeCount * sizeof(unsigned char) + nodeCount * sizeof(T); + else + encodeStartIndex = + 1 + 2 * nodeCount * sizeof(unsigned int) + nodeCount * sizeof(unsigned char) + nodeCount * sizeof(T); + + huffmanTree = createHuffmanTree(stateNum); + treeRoot = reconstruct_HuffTree_from_bytes_anyStates(c + sizeof(int) + sizeof(int), nodeCount); + c += sizeof(int) + sizeof(int) + encodeStartIndex; + loaded = true; + } + + bool isLoaded() const { return loaded; } + + private: + HuffmanTree *huffmanTree = nullptr; + node treeRoot; + unsigned int nodeCount = 0; + uchar sysEndianType; // 0: little endian, 1: big endian + bool loaded = false; + T offset; + + node reconstruct_HuffTree_from_bytes_anyStates(const unsigned char *bytes, uint nodeCount) { + if (nodeCount <= 256) { + unsigned char *L = static_cast(malloc(nodeCount * sizeof(unsigned char))); + memset(L, 0, nodeCount * sizeof(unsigned char)); + unsigned char *R = static_cast(malloc(nodeCount * sizeof(unsigned char))); + memset(R, 0, nodeCount * sizeof(unsigned char)); + T *C = static_cast(malloc(nodeCount * sizeof(T))); + memset(C, 0, nodeCount * sizeof(T)); + unsigned char *t = static_cast(malloc(nodeCount * sizeof(unsigned char))); + memset(t, 0, nodeCount * sizeof(unsigned char)); + // TODO: Endian type + // unsigned char cmpSysEndianType = bytes[0]; + // if(cmpSysEndianType!=(unsigned char)sysEndianType) + // { + // unsigned char* p = (unsigned char*)(bytes+1+2*nodeCount*sizeof(unsigned char)); + // size_t i = 0, size = nodeCount*sizeof(unsigned int); + // while(1) + // { + // symTransform_4bytes(p); + // i+=sizeof(unsigned int); + // if(inew_node2(C[0], t[0]); + this->unpad_tree(L, R, C, t, 0, root); + free(L); + free(R); + free(C); + free(t); + return root; + } else if (nodeCount <= 65536) { + unsigned short *L = static_cast(malloc(nodeCount * sizeof(unsigned short))); + memset(L, 0, nodeCount * sizeof(unsigned short)); + unsigned short *R = static_cast(malloc(nodeCount * sizeof(unsigned short))); + memset(R, 0, nodeCount * sizeof(unsigned short)); + T *C = static_cast(malloc(nodeCount * sizeof(T))); + memset(C, 0, nodeCount * sizeof(T)); + unsigned char *t = static_cast(malloc(nodeCount * sizeof(unsigned char))); + memset(t, 0, nodeCount * sizeof(unsigned char)); - node new_node(size_t freq, T c, node a, node b) { - node n = huffmanTree->pool + huffmanTree->n_nodes++; - if (freq) { - n->c = c; - n->freq = freq; - n->t = 1; - } else { - n->left = a; - n->right = b; - n->freq = a->freq + b->freq; - n->t = 0; - //n->c = 0; - } - return n; + // TODO: Endian type + // unsigned char cmpSysEndianType = bytes[0]; + // if(cmpSysEndianType!=(unsigned char)sysEndianType) + // { + // unsigned char* p = (unsigned char*)(bytes+1); + // size_t i = 0, size = 3*nodeCount*sizeof(unsigned int); + // while(1) + // { + // symTransform_4bytes(p); + // i+=sizeof(unsigned int); + // if(inew_node2(0, 0); + this->unpad_tree(L, R, C, t, 0, root); + free(L); + free(R); + free(C); + free(t); + return root; + } else // nodeCount>65536 + { + unsigned int *L = static_cast(malloc(nodeCount * sizeof(unsigned int))); + memset(L, 0, nodeCount * sizeof(unsigned int)); + unsigned int *R = static_cast(malloc(nodeCount * sizeof(unsigned int))); + memset(R, 0, nodeCount * sizeof(unsigned int)); + T *C = static_cast(malloc(nodeCount * sizeof(T))); + memset(C, 0, nodeCount * sizeof(T)); + unsigned char *t = static_cast(malloc(nodeCount * sizeof(unsigned char))); + memset(t, 0, nodeCount * sizeof(unsigned char)); + // TODO: Endian type + // unsigned char cmpSysEndianType = bytes[0]; + // if(cmpSysEndianType!=(unsigned char)sysEndianType) + // { + // unsigned char* p = (unsigned char*)(bytes+1); + // size_t i = 0, size = 3*nodeCount*sizeof(unsigned int); + // while(1) + // { + // symTransform_4bytes(p); + // i+=sizeof(unsigned int); + // if(inew_node2(0, 0); + this->unpad_tree(L, R, C, t, 0, root); + free(L); + free(R); + free(C); + free(t); + return root; } - - node new_node2(T c, unsigned char t) { - huffmanTree->pool[huffmanTree->n_nodes].c = c; - huffmanTree->pool[huffmanTree->n_nodes].t = t; - return huffmanTree->pool + huffmanTree->n_nodes++; + } + + node new_node(size_t freq, T c, node a, node b) { + node n = huffmanTree->pool + huffmanTree->n_nodes++; + if (freq) { + n->c = c; + n->freq = freq; + n->t = 1; + // printf("new_node: c = %d, freq = %zu, t = %d \n", n->c, n->freq, n->t); + } else { + n->left = a; + n->right = b; + n->freq = a->freq + b->freq; + n->t = 0; + // printf("new_node: c = %d, freq = %zu, t = %d, left = %d, right = %d \n", n->c, n->freq, n->t, n->left->c, + // n->right->c); + // n->c = 0; } - - /* priority queue */ - void qinsert(node n) { - int j, i = huffmanTree->qend++; - while ((j = (i >> 1))) //j=i/2 - { - if (huffmanTree->qq[j]->freq <= n->freq) break; - huffmanTree->qq[i] = huffmanTree->qq[j], i = j; - } - huffmanTree->qq[i] = n; + return n; + } + + node new_node2(T c, unsigned char t) { + huffmanTree->pool[huffmanTree->n_nodes].c = c; + huffmanTree->pool[huffmanTree->n_nodes].t = t; + return huffmanTree->pool + huffmanTree->n_nodes++; + } + + /* priority queue */ + void qinsert(node n) { + int j, i = huffmanTree->qend++; + while ((j = (i >> 1))) // j=i/2 + { + if (huffmanTree->qq[j]->freq <= n->freq) break; + huffmanTree->qq[i] = huffmanTree->qq[j], i = j; } - - node qremove() { - int i, l; - node n = huffmanTree->qq[i = 1]; - node p; - if (huffmanTree->qend < 2) return 0; - huffmanTree->qend--; - huffmanTree->qq[i] = huffmanTree->qq[huffmanTree->qend]; - - while ((l = (i << 1)) < huffmanTree->qend) { //l=(i*2) - if (l + 1 < huffmanTree->qend && huffmanTree->qq[l + 1]->freq < huffmanTree->qq[l]->freq) l++; - if (huffmanTree->qq[i]->freq > huffmanTree->qq[l]->freq) { - p = huffmanTree->qq[i]; - huffmanTree->qq[i] = huffmanTree->qq[l]; - huffmanTree->qq[l] = p; - i = l; - } else { - break; - } + huffmanTree->qq[i] = n; + } + + node qremove() { + int i = 1, l; + node n = huffmanTree->qq[i = 1]; + node p; + if (huffmanTree->qend < 2) return nullptr; + huffmanTree->qend--; + huffmanTree->qq[i] = huffmanTree->qq[huffmanTree->qend]; + + while ((l = (i << 1)) < huffmanTree->qend) { // l=(i*2) + if (l + 1 < huffmanTree->qend && huffmanTree->qq[l + 1]->freq < huffmanTree->qq[l]->freq) l++; + if (huffmanTree->qq[i]->freq > huffmanTree->qq[l]->freq) { + p = huffmanTree->qq[i]; + huffmanTree->qq[i] = huffmanTree->qq[l]; + huffmanTree->qq[l] = p; + i = l; + } else { + break; } - return n; } - - /* walk the tree and put 0s and 1s */ - /** - * @out1 should be set to 0. - * @out2 should be 0 as well. - * @index: the index of the byte - * */ - void build_code(node n, int len, uint64_t out1, uint64_t out2) { - if (n->t) { - huffmanTree->code[n->c] = (uint64_t *) malloc(2 * sizeof(uint64_t)); - if (len <= 64) { - (huffmanTree->code[n->c])[0] = out1 << (64 - len); - (huffmanTree->code[n->c])[1] = out2; - } else { - (huffmanTree->code[n->c])[0] = out1; - (huffmanTree->code[n->c])[1] = out2 << (128 - len); - } - huffmanTree->cout[n->c] = (unsigned char) len; - return; - } - int index = len >> 6; //=len/64 - if (index == 0) { - out1 = out1 << 1; - out1 = out1 | 0; - build_code(n->left, len + 1, out1, 0); - out1 = out1 | 1; - build_code(n->right, len + 1, out1, 0); + return n; + } + + /* walk the tree and put 0s and 1s */ + /** + * @out1 should be set to 0. + * @out2 should be 0 as well. + * @index: the index of the byte + * */ + void build_code(node n, int len, uint64_t out1, uint64_t out2) { + if (n->t) { + huffmanTree->code[n->c] = static_cast(malloc(2 * sizeof(uint64_t))); + if (len <= 64) { + (huffmanTree->code[n->c])[0] = out1 << (64 - len); + (huffmanTree->code[n->c])[1] = out2; } else { - if (len % 64 != 0) - out2 = out2 << 1; - out2 = out2 | 0; - build_code(n->left, len + 1, out1, out2); - out2 = out2 | 1; - build_code(n->right, len + 1, out1, out2); + (huffmanTree->code[n->c])[0] = out1; + (huffmanTree->code[n->c])[1] = out2 << (128 - len); } + huffmanTree->cout[n->c] = static_cast(len); + // std::cout << "build_code: c = " << n->c << ", len = " << len << ", out1 = " << out1 << ", out2 = " << out2 + // << ", code0 = " << (huffmanTree->code[n->c])[0] << ", code1 = " << (huffmanTree->code[n->c])[1] + // << std::endl; + return; + } + int index = len >> 6; //=len/64 + if (index == 0) { + out1 = out1 << 1; + out1 = out1 | 0; + build_code(n->left, len + 1, out1, 0); + out1 = out1 | 1; + build_code(n->right, len + 1, out1, 0); + } else { + if (len % 64 != 0) out2 = out2 << 1; + out2 = out2 | 0; + build_code(n->left, len + 1, out1, out2); + out2 = out2 | 1; + build_code(n->right, len + 1, out1, out2); + } + } + + /** + * Compute the frequency of the data and build the Huffman tree + * @param HuffmanTree* huffmanTree (output) + * @param int *s (input) + * @param size_t length (input) + * */ + void init(const T *s, size_t length) { + T max = s[0]; + offset = s[0]; // offset is min + +#if (SZ3_USE_SKA_HASH) && (INTPTR_MAX == INT64_MAX) // use ska for 64bit system + ska::unordered_map frequency; +#else // most likely 32bit system + std::unordered_map frequency; +#endif // INTPTR_MAX == INT64_MAX + + for (size_t i = 0; i < length; i++) { + frequency[s[i]] += 1; } - /** - * Compute the frequency of the data and build the Huffman tree - * @param HuffmanTree* huffmanTree (output) - * @param int *s (input) - * @param size_t length (input) - * */ - void init(const T *s, size_t length) { - T max = s[0]; - offset = s[0]; //offset is min - - ska::unordered_map frequency; - for (size_t i = 0; i < length; i++) { - frequency[s[i]]++; - } - - for (const auto &kv: frequency) { - auto k = kv.first; - if (k > max) { - max = k; - } - if (k < offset) { - offset = k; - } + for (const auto &kv : frequency) { + auto k = kv.first; + if (k > max) { + max = k; } - - int stateNum = max - offset + 2; - huffmanTree = createHuffmanTree(stateNum); - - for (const auto &f: frequency) { - qinsert(new_node(f.second, f.first - offset, 0, 0)); + if (k < offset) { + offset = k; } + } - while (huffmanTree->qend > 2) - qinsert(new_node(0, 0, qremove(), qremove())); - - build_code(huffmanTree->qq[1], 0, 0, 0); - treeRoot = huffmanTree->qq[1]; + int stateNum = max - offset + 2; + huffmanTree = createHuffmanTree(stateNum); + // to produce the same huffman three on linux & win, we need to iterate through ordered_map in a fixed order + std::vector frequencyList(stateNum, 0); + for (const auto &kv : frequency) { + frequencyList[kv.first - offset] = kv.second; } - - template - void pad_tree(T1 *L, T1 *R, T *C, unsigned char *t, unsigned int i, node root) { - C[i] = root->c; - t[i] = root->t; - node lroot = root->left; - if (lroot != 0) { - huffmanTree->n_inode++; - L[i] = huffmanTree->n_inode; - pad_tree(L, R, C, t, huffmanTree->n_inode, lroot); - } - node rroot = root->right; - if (rroot != 0) { - huffmanTree->n_inode++; - R[i] = huffmanTree->n_inode; - pad_tree(L, R, C, t, huffmanTree->n_inode, rroot); + for (size_t i = 0; i < stateNum; i++) { + if (frequencyList[i] != 0) { + qinsert(new_node(frequencyList[i], i, nullptr, nullptr)); } } - - template - void unpad_tree(T1 *L, T1 *R, T *C, unsigned char *t, unsigned int i, node root) { - //root->c = C[i]; - if (root->t == 0) { - T1 l, r; - l = L[i]; - if (l != 0) { - node lroot = new_node2(C[l], t[l]); - root->left = lroot; - unpad_tree(L, R, C, t, l, lroot); - } - r = R[i]; - if (r != 0) { - node rroot = new_node2(C[r], t[r]); - root->right = rroot; - unpad_tree(L, R, C, t, r, rroot); - } - } + // for (const auto &f : frequency) { + // qinsert(new_node(f.second, f.first - offset, nullptr, nullptr)); + // } + + while (huffmanTree->qend > 2) { + auto left = qremove(); + auto right = qremove(); + qinsert(new_node(0, 0, left, right)); } - template - unsigned int convert_HuffTree_to_bytes_anyStates(unsigned int nodeCount, unsigned char *out) { - T1 *L = (T1 *) malloc(nodeCount * sizeof(T1)); - memset(L, 0, nodeCount * sizeof(T1)); - T1 *R = (T1 *) malloc(nodeCount * sizeof(T1)); - memset(R, 0, nodeCount * sizeof(T1)); - T *C = (T *) malloc(nodeCount * sizeof(T)); - memset(C, 0, nodeCount * sizeof(T)); - unsigned char *t = (unsigned char *) malloc(nodeCount * sizeof(unsigned char)); - memset(t, 0, nodeCount * sizeof(unsigned char)); - - pad_tree(L, R, C, t, 0, huffmanTree->qq[1]); - - unsigned int totalSize = - 1 + 2 * nodeCount * sizeof(T1) + nodeCount * sizeof(unsigned char) + nodeCount * sizeof(T); - //*out = (unsigned char*)malloc(totalSize); - out[0] = (unsigned char) sysEndianType; - memcpy(out + 1, L, nodeCount * sizeof(T1)); - memcpy(out + 1 + nodeCount * sizeof(T1), R, nodeCount * sizeof(T1)); - memcpy(out + 1 + 2 * nodeCount * sizeof(T1), C, nodeCount * sizeof(T)); - memcpy(out + 1 + 2 * nodeCount * sizeof(T1) + nodeCount * sizeof(T), t, nodeCount * sizeof(unsigned char)); - - free(L); - free(R); - free(C); - free(t); - return totalSize; + build_code(huffmanTree->qq[1], 0, 0, 0); + treeRoot = huffmanTree->qq[1]; + } + + template + void pad_tree(T1 *L, T1 *R, T *C, unsigned char *t, unsigned int i, node root) { + C[i] = root->c; + t[i] = root->t; + node lroot = root->left; + if (lroot != nullptr) { + huffmanTree->n_inode++; + L[i] = huffmanTree->n_inode; + pad_tree(L, R, C, t, huffmanTree->n_inode, lroot); } - - void SZ_FreeHuffman() { - if (huffmanTree != NULL) { - size_t i; - free(huffmanTree->pool); - huffmanTree->pool = NULL; - free(huffmanTree->qqq); - huffmanTree->qqq = NULL; - for (i = 0; i < huffmanTree->stateNum; i++) { - if (huffmanTree->code[i] != NULL) - free(huffmanTree->code[i]); - } - free(huffmanTree->code); - huffmanTree->code = NULL; - free(huffmanTree->cout); - huffmanTree->cout = NULL; - free(huffmanTree); - huffmanTree = NULL; + node rroot = root->right; + if (rroot != nullptr) { + huffmanTree->n_inode++; + R[i] = huffmanTree->n_inode; + pad_tree(L, R, C, t, huffmanTree->n_inode, rroot); + } + } + + template + void unpad_tree(T1 *L, T1 *R, T *C, unsigned char *t, unsigned int i, node root) { + // root->c = C[i]; + if (root->t == 0) { + T1 l, r; + l = L[i]; + if (l != 0) { + node lroot = new_node2(C[l], t[l]); + root->left = lroot; + unpad_tree(L, R, C, t, l, lroot); + } + r = R[i]; + if (r != 0) { + node rroot = new_node2(C[r], t[r]); + root->right = rroot; + unpad_tree(L, R, C, t, r, rroot); } } - - }; -} + } + + template + unsigned int convert_HuffTree_to_bytes_anyStates(unsigned int nodeCount, unsigned char *out) { + T1 *L = static_cast(malloc(nodeCount * sizeof(T1))); + memset(L, 0, nodeCount * sizeof(T1)); + T1 *R = static_cast(malloc(nodeCount * sizeof(T1))); + memset(R, 0, nodeCount * sizeof(T1)); + T *C = static_cast(malloc(nodeCount * sizeof(T))); + memset(C, 0, nodeCount * sizeof(T)); + unsigned char *t = static_cast(malloc(nodeCount * sizeof(unsigned char))); + memset(t, 0, nodeCount * sizeof(unsigned char)); + + pad_tree(L, R, C, t, 0, huffmanTree->qq[1]); + + unsigned int totalSize = + 1 + 2 * nodeCount * sizeof(T1) + nodeCount * sizeof(unsigned char) + nodeCount * sizeof(T); + //*out = (unsigned char*)malloc(totalSize); + out[0] = sysEndianType; + memcpy(out + 1, L, nodeCount * sizeof(T1)); + memcpy(out + 1 + nodeCount * sizeof(T1), R, nodeCount * sizeof(T1)); + memcpy(out + 1 + 2 * nodeCount * sizeof(T1), C, nodeCount * sizeof(T)); + memcpy(out + 1 + 2 * nodeCount * sizeof(T1) + nodeCount * sizeof(T), t, nodeCount * sizeof(unsigned char)); + + free(L); + free(R); + free(C); + free(t); + return totalSize; + } + + void SZ_FreeHuffman() { + if (huffmanTree != nullptr) { + size_t i; + free(huffmanTree->pool); + huffmanTree->pool = nullptr; + free(huffmanTree->qqq); + huffmanTree->qqq = nullptr; + for (i = 0; i < huffmanTree->stateNum; i++) { + if (huffmanTree->code[i] != nullptr) free(huffmanTree->code[i]); + } + free(huffmanTree->code); + huffmanTree->code = nullptr; + free(huffmanTree->cout); + huffmanTree->cout = nullptr; + free(huffmanTree); + huffmanTree = nullptr; + } + } +}; +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/encoder/RunlengthEncoder.hpp b/lib/SZ3/include/SZ3/encoder/RunlengthEncoder.hpp index f366e3b1..1d00a574 100644 --- a/lib/SZ3/include/SZ3/encoder/RunlengthEncoder.hpp +++ b/lib/SZ3/include/SZ3/encoder/RunlengthEncoder.hpp @@ -1,67 +1,65 @@ -#ifndef _SZ_RUNLENGTH_ENCODER_HPP -#define _SZ_RUNLENGTH_ENCODER_HPP +#ifndef SZ3_RUNLENGTH_ENCODER_HPP +#define SZ3_RUNLENGTH_ENCODER_HPP -#include "Encoder.hpp" -#include "SZ3/utils/MemoryUtil.hpp" -#include "SZ3/def.hpp" #include -namespace SZ { - - template - class RunlengthEncoder : public concepts::EncoderInterface { - public: +#include "Encoder.hpp" +#include "SZ3/def.hpp" +#include "SZ3/utils/MemoryUtil.hpp" - ~RunlengthEncoder() = default; +namespace SZ3 { - void preprocess_encode(const std::vector &bins, int stateNum) { - }; +template +class RunlengthEncoder : public concepts::EncoderInterface { + public: + void preprocess_encode(const std::vector &bins, int stateNum) override {} - size_t encode(const std::vector &bins, uchar *&bytes) { - int max = 0; - size_t s = 0; - for (size_t i = 1; i < bins.size(); i++) { - if (bins[i] != bins[i - 1]) { - write(bins[i - 1], bytes); - write(int(i - s), bytes); - if (int(i - s) > max) { - max = int(i - s); - } - s = i; + size_t encode(const std::vector &bins, uchar *&bytes) override { + auto bytespos = bytes; + int max = 0; + size_t s = 0; + for (size_t i = 1; i < bins.size(); i++) { + if (bins[i] != bins[i - 1]) { + write(bins[i - 1], bytes); + write(int(i - s), bytes); + if (int(i - s) > max) { + max = int(i - s); } + s = i; } - write(bins[bins.size() - 1], bytes); - write(int(bins.size() - s), bytes); - return 0; - }; + } + write(bins[bins.size() - 1], bytes); + write(int(bins.size() - s), bytes); + return bytes - bytespos; + } - void postprocess_encode() {}; + void postprocess_encode() override {} - void preprocess_decode() {}; + void preprocess_decode() override {} - std::vector decode(const uchar *&bytes, size_t targetLength) { - std::vector bins(targetLength, 0); - T value; - int cnt; - for (size_t i = 0; i < bins.size();) { - read(value, bytes); - read(cnt, bytes); - for (size_t j = i; j < i + cnt; j++) { - bins[j] = value; - } - i += cnt; + std::vector decode(const uchar *&bytes, size_t targetLength) override { + std::vector bins(targetLength, 0); + T value; + int cnt; + for (size_t i = 0; i < bins.size();) { + read(value, bytes); + read(cnt, bytes); + if (i + cnt > bins.size()) { + throw std::runtime_error("Decoded length exceeds targetLength"); } - return bins; - }; - - void postprocess_decode() {}; + for (size_t j = i; j < i + cnt; j++) { + bins[j] = value; + } + i += cnt; + } + return bins; + } - uint save(uchar *&c) { - return 0; - }; + void postprocess_decode() override {} - void load(const uchar *&c, size_t &remaining_length) {}; + void save(uchar *&c) override {} - }; -} + void load(const uchar *&c, size_t &remaining_length) override {} +}; +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/frontend/Frontend.hpp b/lib/SZ3/include/SZ3/frontend/Frontend.hpp deleted file mode 100644 index e4ae6523..00000000 --- a/lib/SZ3/include/SZ3/frontend/Frontend.hpp +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef SZ3_FRONTEND_INTERFACE -#define SZ3_FRONTEND_INTERFACE -/** - * Frontend is the combination of Predictor and Quantizer - * For compression, it takes the original data as input, and outputs integer values - * which will be used for lossless compression by the Encoder and Lossless modules. - */ - -#include "SZ3/def.hpp" -#include - -namespace SZ { - - - namespace concepts { - - template - class FrontendInterface { - public: - - virtual ~FrontendInterface() = default; - - virtual std::vector compress(T *data) = 0; - - virtual T *decompress(std::vector &quant_inds, T *dec_data) = 0; - - virtual void save(uchar *&c) = 0; - - virtual void load(const uchar *&c, size_t &remaining_length) = 0; - - virtual size_t size_est() = 0; - - virtual int get_radius() const = 0; - - virtual size_t get_num_elements() const = 0; - - virtual void print() = 0; - - virtual void clear() = 0; - }; - - } - -} - -#endif diff --git a/lib/SZ3/include/SZ3/frontend/SZFastFrontend.hpp b/lib/SZ3/include/SZ3/frontend/SZFastFrontend.hpp deleted file mode 100644 index f0860496..00000000 --- a/lib/SZ3/include/SZ3/frontend/SZFastFrontend.hpp +++ /dev/null @@ -1,605 +0,0 @@ -#ifndef SZ3_SZFASTFRONTEND -#define SZ3_SZFASTFRONTEND - -/** - * This module is the implementation of the prediction and quantization methods in SZ2. - * It has better speed than SZFrontend since multidimensional iterator is not used. - * Currently only 3D data is supported. - */ - -#include "Frontend.hpp" -#include "SZ3/predictor/MetaLorenzoPredictor.hpp" -#include "SZ3/predictor/MetaRegressionPredictor.hpp" -#include "SZ3/utils/MetaDef.hpp" -#include "SZ3/encoder/HuffmanEncoder.hpp" -#include "SZ3/utils/MemoryUtil.hpp" -#include "SZ3/utils/Config.hpp" -#include - -namespace SZ { - using namespace SZMETA; - - template - class SZFastFrontend : public concepts::FrontendInterface { - public: - SZFastFrontend(const Config &conf, Quantizer quantizer) : - quantizer(quantizer), - params(false, conf.blockSize, conf.pred_dim, 0, conf.lorenzo, conf.lorenzo2, - conf.regression, conf.absErrorBound), - precision(conf.absErrorBound), - conf(conf) { - assert(N == 3 && "SZMeta Front only support 3D data"); - } - - ~SZFastFrontend() { - clear(); - } - - void print() {}; - - - std::vector compress(T *data) { - return compress_3d(data); - }; - - T *decompress(std::vector &quant_inds, T *dec_data) { - return decompress_3d(quant_inds, dec_data); - }; - - - void save(uchar *&c) { - - write(params, c); - write(precision, c); -// write(intv_radius, c); - write(mean_info.use_mean, c); - write(mean_info.mean, c); - write(reg_count, c); -// write(unpred_count_buffer, size.block_size * size.block_size, c); -// T *unpred_data_buffer_pos = unpred_data_buffer; -// for (int i = 0; i < size.block_size; i++) { -// for (int j = 0; j < size.block_size; j++) { -// write(unpred_data_buffer_pos, -// unpred_count_buffer[i * size.block_size + j], c); -//// write_array_to_dst(c, unpred_data_buffer_pos, -//// unpred_count_buffer[i * size.block_size + j]); -// unpred_data_buffer_pos += est_unpred_count_per_index; -// } -// } - -// Huffman_encode_tree_and_data(SELECTOR_RADIUS, indicator, size.num_blocks, c); -// indicator_huffman.preprocess_encode(indicator, SELECTOR_RADIUS); - indicator_huffman.save(c); - indicator_huffman.encode(indicator, c); - indicator_huffman.postprocess_encode(); - auto *c2 = c; - -// convertIntArray2ByteArray_fast_1b_to_result_sz(indicator, size.num_blocks, c); - - if (reg_count) { - encode_regression_coefficients(reg_params_type, reg_unpredictable_data, RegCoeffNum3d * reg_count, - reg_unpredictable_data_pos - reg_unpredictable_data, reg_huffman, c); - } - - quantizer.save(c); - } - - void load(const uchar *&c, size_t &remaining_length) { - clear(); - const uchar *c_pos = c; - - read(params, c, remaining_length); - read(precision, c, remaining_length); -// read(intv_radius, c, remaining_length); - read(mean_info.use_mean, c, remaining_length); - read(mean_info.mean, c, remaining_length); - read(reg_count, c, remaining_length); - - size_t r1 = conf.dims[0]; - size_t r2 = conf.dims[1]; - size_t r3 = conf.dims[2]; - size = SZMETA::DSize_3d(r1, r2, r3, params.block_size); - // prepare unpred buffer for vectorization - est_unpred_count_per_index = size.num_blocks * size.block_size * 1; - // if(!params.block_independant) est_unpred_count_per_index /= 20; -// unpred_count_buffer = (int *) malloc(size.block_size * size.block_size * sizeof(T)); -// read(unpred_count_buffer, size.block_size * size.block_size, c, remaining_length); -// unpred_data_buffer = (T *) malloc( -// size.block_size * size.block_size * est_unpred_count_per_index * sizeof(T)); -// T *unpred_data_buffer_pos = unpred_data_buffer; -// for (int i = 0; i < size.block_size; i++) { -// for (int j = 0; j < size.block_size; j++) { -// memcpy(unpred_data_buffer_pos, c, -// unpred_count_buffer[i * size.block_size + j] * sizeof(T)); -// c += unpred_count_buffer[i * size.block_size + j] * sizeof(T); -// unpred_data_buffer_pos += est_unpred_count_per_index; -// } -// } -// memset(unpred_count_buffer, 0, size.block_size * size.block_size * sizeof(int)); -// unsigned char * indicator = convertByteArray2IntArray_fast_1b_sz(size.num_blocks, c, (size.num_blocks - 1)/8 + 1); - indicator_huffman = HuffmanEncoder(); - indicator_huffman.load(c, remaining_length); - indicator = indicator_huffman.decode(c, size.num_blocks); - indicator_huffman.postprocess_decode(); - - - if (reg_count) { - reg_params = decode_regression_coefficients(c, reg_count, size.block_size, precision, - params); - } - quantizer.load(c, remaining_length); - remaining_length -= c_pos - c; - } - - - void clear() { - if (reg_params_type != nullptr) { - free(reg_params_type); - reg_params_type = nullptr; - } - if (reg_unpredictable_data != nullptr) { - free(reg_unpredictable_data); - reg_unpredictable_data = nullptr; - } -// if (unpred_data_buffer != nullptr) { -// free(unpred_data_buffer); -// unpred_data_buffer = nullptr; -// } -// if (unpred_count_buffer != nullptr) { -// free(unpred_count_buffer); -// unpred_count_buffer = nullptr; -// } - if (reg_params != nullptr) { - free(reg_params); - reg_params = nullptr; - } - quantizer.clear(); - } - - size_t size_est() { - return quantizer.size_est() //unpred - + indicator.size() * sizeof(int) + indicator_huffman.size_est()//loren or reg indicator - + RegCoeffNum3d * reg_count * sizeof(int) + reg_huffman.size_est() // reg coeff quant - + (reg_unpredictable_data_pos - reg_unpredictable_data) * sizeof(float); //reg coeff unpred - } - - int get_radius() const { -// return capacity; - return quantizer.get_radius(); - } - - size_t get_num_elements() const { return size.num_elements; }; - - private: - // unsigned char * -// compress_3d(const T *data, size_t r1, size_t r2, size_t r3, double precision, size_t &compressed_size, -// const SZMETA::meta_params ¶ms, SZMETA::CompressStats &compress_info) { - std::vector compress_3d(const T *data) { - clear(); - - size_t r1 = conf.dims[0]; - size_t r2 = conf.dims[1]; - size_t r3 = conf.dims[2]; - size = SZMETA::DSize_3d(r1, r2, r3, conf.blockSize); - -// capacity = 0; // num of quant intervals -// mean_info = optimize_quant_invl_3d(data, r1, r2, r3, conf.absErrorBound, capacity); -// if (conf.quantbinCnt > 0) { -// capacity = conf.quantbinCnt; -// } -// intv_radius = (capacity >> 1); - std::vector type(size.num_elements); -// int *type = (int *) malloc(size.num_elements * sizeof(int)); -// indicator = (int *) malloc(size.num_blocks * sizeof(int)); - indicator.resize(size.num_blocks); - - reg_params_type = (int *) malloc(RegCoeffNum3d * size.num_blocks * sizeof(int)); - reg_unpredictable_data = (float *) malloc(RegCoeffNum3d * size.num_blocks * sizeof(float)); - reg_unpredictable_data_pos = reg_unpredictable_data; - - // prepare unpred buffer for vectorization - est_unpred_count_per_index = size.num_blocks * size.block_size * 1; - // if(!params.block_independant) est_unpred_count_per_index /= 20; -// unpred_data_buffer = (T *) malloc( -// size.block_size * size.block_size * est_unpred_count_per_index * sizeof(T)); -// unpred_count_buffer = (int *) malloc(size.block_size * size.block_size * sizeof(int)); -// memset(unpred_count_buffer, 0, size.block_size * size.block_size * sizeof(int)); -// T precision_t = (T) precision; - reg_count = 0; - size_t lorenzo_count = 0; - size_t lorenzo_2layer_count = 0; - - int *type_pos = type.data(); - int *indicator_pos = indicator.data(); - - float *reg_params = (float *) malloc(RegCoeffNum3d * (size.num_blocks + 1) * sizeof(float)); - for (int i = 0; i < RegCoeffNum3d; i++) { - reg_params[i] = 0; - } - float *reg_params_pos = reg_params + RegCoeffNum3d; - int *reg_params_type_pos = reg_params_type; - - - T reg_precisions[RegCoeffNum3d]; - T reg_recip_precisions[RegCoeffNum3d]; - for (int i = 0; i < RegCoeffNum3d - 1; i++) { - reg_precisions[i] = params.regression_param_eb_linear; - reg_recip_precisions[i] = 1.0 / reg_precisions[i]; - } - reg_precisions[RegCoeffNum3d - 1] = params.regression_param_eb_independent; - reg_recip_precisions[RegCoeffNum3d - 1] = 1.0 / reg_precisions[RegCoeffNum3d - 1]; - - // maintain a buffer of (block_size+1)*(r2+1)*(r3+1) - // 2-layer use_lorenzo - size_t buffer_dim0_offset = - (size.d2 + params.lorenzo_padding_layer) * (size.d3 + params.lorenzo_padding_layer); - size_t buffer_dim1_offset = size.d3 + params.lorenzo_padding_layer; - T *pred_buffer = (T *) malloc( - (size.block_size + params.lorenzo_padding_layer) * (size.d2 + params.lorenzo_padding_layer) * - (size.d3 + params.lorenzo_padding_layer) * sizeof(T)); - memset(pred_buffer, 0, - (size.block_size + params.lorenzo_padding_layer) * (size.d2 + params.lorenzo_padding_layer) * - (size.d3 + params.lorenzo_padding_layer) * sizeof(T)); -// int capacity_lorenzo = mean_info.use_mean ? capacity - 2 : capacity; - T recip_precision = (T) 1.0 / conf.absErrorBound; -// { -// float mean_freq, pred_freq; -// T mean_guess; -// optimize_quant_invl_3d(data, r1, r2, r3, precision, pred_freq, mean_freq, mean_guess); -// if (mean_freq > 0.5 || mean_freq > pred_freq) { -// // compute mean -// float sum = 0.0; -// size_t mean_count = 0; -// for (size_t i = 0; i < size.num_elements; i++) { -// if (fabs(data[i] - mean_guess) < precision) { -// sum += data[i]; -// mean_count++; -// } -// } -// if (mean_count > 0) { -// mean_info.use_mean = true; -// mean_info.mean = sum / mean_count; -// printf("\nuse mean %.5f\n", mean_info.mean); -// } -// } -// } - size_t block_cnt = 0; - const T *x_data_pos = data; - std::vector reg_params_ori(8, 0); - std::vector reg_params_ori_cnt(4, 0); - for (size_t i = 0; i < size.num_x; i++) { - const T *y_data_pos = x_data_pos; - T *pred_buffer_pos = pred_buffer; - for (size_t j = 0; j < size.num_y; j++) { - const T *z_data_pos = y_data_pos; - for (size_t k = 0; k < size.num_z; k++) { - int size_x = ((i + 1) * size.block_size < size.d1) ? size.block_size : size.d1 - - i * size.block_size; - int size_y = ((j + 1) * size.block_size < size.d2) ? size.block_size : size.d2 - - j * size.block_size; - int size_z = ((k + 1) * size.block_size < size.d3) ? size.block_size : size.d3 - - k * size.block_size; - int min_size = MIN(size_x, size_y); - min_size = MIN(min_size, size_z); - - bool enable_regression = params.use_regression_linear && min_size >= 2; -// bool enable_regression = params.use_regression_linear && min_size >= 1; - - if (enable_regression) { - compute_regression_coeffcients_3d(z_data_pos, size_x, size_y, size_z, size.dim0_offset, - size.dim1_offset, - reg_params_pos); - } - - int selection_result = meta_blockwise_selection_3d(z_data_pos, mean_info, size.dim0_offset, - size.dim1_offset, - min_size, conf.absErrorBound, reg_params_pos, - params.prediction_dim, - params.use_lorenzo, - params.use_lorenzo_2layer, - enable_regression); - *indicator_pos = selection_result; - - if (selection_result == SELECTOR_REGRESSION) { - // regression - for (int e = 0; e < 4; e++) { - reg_params_ori[e + 4] = reg_params_ori[e]; - reg_params_ori[e] = reg_params_pos[e]; - } - compress_regression_coefficient_3d(RegCoeffNum3d, reg_precisions, reg_recip_precisions, - reg_params_pos, - reg_params_type_pos, - reg_unpredictable_data_pos); - for (int e = 0; e < 4; e++) { - if (fabs(reg_params_ori[e + 4] - reg_params_ori[e]) < precision * 1e-3) { - if (reg_params_ori_cnt[e]++ == 100) { - reg_params_type_pos[e] = 0; - reg_params_pos[e] = reg_params_ori[e]; - *(reg_unpredictable_data_pos++) = reg_params_ori[e]; - } - } else { - reg_params_ori_cnt[e] = 0; - } - } - //printf("%lu %.5f %.5f %.5f %.5f -> ", block_cnt, reg_params_pos[0], reg_params_pos[1], reg_params_pos[2], -// reg_params_pos[3]); -// printf("%.5f %.5f %.5f %.5f\n", reg_params_pos[0], reg_params_pos[1], reg_params_pos[2], reg_params_pos[3]); - - regression_predict_quantize_3d(z_data_pos, reg_params_pos, pred_buffer_pos, precision, - recip_precision, capacity, intv_radius, - size_x, size_y, size_z, buffer_dim0_offset, - buffer_dim1_offset, size.dim0_offset, size.dim1_offset, - type_pos, unpred_count_buffer, unpred_data_buffer, - est_unpred_count_per_index, - params.lorenzo_padding_layer, quantizer); - reg_count++; - reg_params_pos += RegCoeffNum3d; - reg_params_type_pos += RegCoeffNum3d; - } else { - // Lorenzo - lorenzo_predict_quantize_3d(mean_info, z_data_pos, pred_buffer_pos, precision, - recip_precision, - capacity, - intv_radius, - size_x, size_y, size_z, buffer_dim0_offset, - buffer_dim1_offset, - size.dim0_offset, - size.dim1_offset, type_pos, unpred_count_buffer, - unpred_data_buffer, - est_unpred_count_per_index, - params.lorenzo_padding_layer, - (selection_result == SELECTOR_LORENZO_2LAYER), quantizer, - params.prediction_dim); -// - if (selection_result == SELECTOR_LORENZO_2LAYER) { - lorenzo_2layer_count++; - } else { - lorenzo_count++; - } - } - pred_buffer_pos += size.block_size; - indicator_pos++; - z_data_pos += size_z; - } - y_data_pos += size.block_size * size.dim1_offset; - pred_buffer_pos += size.block_size * buffer_dim1_offset - size.block_size * size.num_z; - } - // copy bottom of buffer to top of buffer - memcpy(pred_buffer, pred_buffer + size.block_size * buffer_dim0_offset, - params.lorenzo_padding_layer * buffer_dim0_offset * sizeof(T)); - x_data_pos += size.block_size * size.dim0_offset; - } - free(pred_buffer); - free(reg_params); - - if (reg_count) { - reg_huffman = HuffmanEncoder(); - reg_huffman.preprocess_encode(reg_params_type, RegCoeffNum3d * reg_count, 0); - } - indicator_huffman = HuffmanEncoder(); - indicator_huffman.preprocess_encode(indicator, SELECTOR_RADIUS); - -// printf("%lu %lu\n", reg_count, block_cnt); - - return type; - } - - //T * -// meta_decompress_3d(const unsigned char *compressed, size_t r1, size_t r2, size_t r3) { - T *decompress_3d(std::vector &quant_inds, T *dec_data) { - - int *type = quant_inds.data(); -// T *dec_data = new T[size.num_elements]; -// dec_data_sp_float = (float *) dec_data; - const float *reg_params_pos = (const float *) (reg_params + RegCoeffNum3d);; - - const int *type_pos = type; - const int *indicator_pos = indicator.data(); -// const float *reg_params_pos = reg_params; - // add one more ghost layer - size_t buffer_dim0_offset = - (size.d2 + params.lorenzo_padding_layer) * (size.d3 + params.lorenzo_padding_layer); - size_t buffer_dim1_offset = size.d3 + params.lorenzo_padding_layer; - T *pred_buffer = (T *) malloc( - (size.block_size + params.lorenzo_padding_layer) * (size.d2 + params.lorenzo_padding_layer) * - (size.d3 + params.lorenzo_padding_layer) * sizeof(T)); - memset(pred_buffer, 0, - (size.block_size + params.lorenzo_padding_layer) * (size.d2 + params.lorenzo_padding_layer) * - (size.d3 + params.lorenzo_padding_layer) * sizeof(T)); - T *x_data_pos = dec_data; - for (size_t i = 0; i < size.num_x; i++) { - T *y_data_pos = x_data_pos; - T *pred_buffer_pos = pred_buffer; - for (size_t j = 0; j < size.num_y; j++) { - T *z_data_pos = y_data_pos; - for (size_t k = 0; k < size.num_z; k++) { - int size_x = ((i + 1) * size.block_size < size.d1) ? size.block_size : size.d1 - - i * size.block_size; - int size_y = ((j + 1) * size.block_size < size.d2) ? size.block_size : size.d2 - - j * size.block_size; - int size_z = ((k + 1) * size.block_size < size.d3) ? size.block_size : size.d3 - - k * size.block_size; - if (*indicator_pos == SELECTOR_REGRESSION) { - // regression - regression_predict_recover_3d(reg_params_pos, pred_buffer_pos, precision, - intv_radius, - size_x, size_y, size_z, buffer_dim0_offset, - buffer_dim1_offset, - size.dim0_offset, size.dim1_offset, type_pos, - unpred_count_buffer, - unpred_data_buffer, est_unpred_count_per_index, - z_data_pos, - params.lorenzo_padding_layer, quantizer); - reg_params_pos += RegCoeffNum3d; - } else { - // Lorenzo - lorenzo_predict_recover_3d(mean_info, pred_buffer_pos, precision, intv_radius, size_x, - size_y, - size_z, - buffer_dim0_offset, buffer_dim1_offset, size.dim0_offset, - size.dim1_offset, - type_pos, - unpred_count_buffer, unpred_data_buffer, - est_unpred_count_per_index, - z_data_pos, - params.lorenzo_padding_layer, - *indicator_pos == SELECTOR_LORENZO_2LAYER, quantizer, - params.prediction_dim); - } - pred_buffer_pos += size.block_size; - indicator_pos++; - z_data_pos += size_z; - } - y_data_pos += size.block_size * size.dim1_offset; - pred_buffer_pos += size.block_size * buffer_dim1_offset - size.block_size * size.num_z; - } - memcpy(pred_buffer, pred_buffer + size.block_size * buffer_dim0_offset, - params.lorenzo_padding_layer * buffer_dim0_offset * sizeof(T)); - x_data_pos += size.block_size * size.dim0_offset; - } - free(pred_buffer); - -// free(unpred_count_buffer); -// free(unpred_data_buffer); - return dec_data; - } - - - inline void - meta_block_error_estimation_3d(const T *data_pos, const float *reg_params_pos, - const meanInfo &mean_info, int x, int y, int z, size_t dim0_offset, - size_t dim1_offset, - T precision, double &err_lorenzo, double &err_lorenzo_2layer, double &err_reg, - const int pred_dim, - const bool use_lorenzo, const bool use_lorenzo_2layer, - const bool use_regression) { - T noise = 0; - T noise_2layer = 0; - const T *cur_data_pos = data_pos + x * dim0_offset + y * dim1_offset + z; - T cur_data = *cur_data_pos; - if (use_regression) { - err_reg += fabs(cur_data - regression_predict_3d(reg_params_pos, x, y, z)); - } - double lorenzo_predict = 0; - double lorenzo_2layer_predict = 0; - if (pred_dim == 3) { - if (use_lorenzo_2layer) { - lorenzo_2layer_predict = lorenzo_predict_3d_2layer(cur_data_pos, dim0_offset, dim1_offset); - noise_2layer = Lorenze2LayerNoise3d * precision; - } - if (use_lorenzo) { - lorenzo_predict = lorenzo_predict_3d(cur_data_pos, dim0_offset, dim1_offset); - noise = LorenzeNoise3d * precision; - } - } else if (pred_dim == 2) { - if (use_lorenzo_2layer) { - lorenzo_2layer_predict = lorenzo_predict_2d_2layer(cur_data_pos, dim0_offset, dim1_offset); - noise_2layer = Lorenze2LayerNoise2d * precision; - - } - if (use_lorenzo) { - lorenzo_predict = lorenzo_predict_2d(cur_data_pos, dim0_offset, dim1_offset); - noise = LorenzeNoise2d * precision; - } - } else { - if (use_lorenzo_2layer) { - lorenzo_2layer_predict = lorenzo_predict_1d_2layer(cur_data_pos, dim0_offset); - noise_2layer = Lorenze2LayerNoise1d * precision; - - } - if (use_lorenzo) { - lorenzo_predict = lorenzo_predict_1d(cur_data_pos, dim0_offset); - noise = LorenzeNoise1d * precision; - } - } - err_lorenzo += mean_info.use_mean ? MIN(fabs(cur_data - mean_info.mean), - fabs(cur_data - lorenzo_predict) + noise) : - fabs(cur_data - lorenzo_predict) + noise; - err_lorenzo_2layer += mean_info.use_mean ? MIN(fabs(cur_data - mean_info.mean), - fabs(cur_data - lorenzo_2layer_predict) + noise_2layer) : - fabs(cur_data - lorenzo_2layer_predict) + noise_2layer; - } - - - inline int - meta_blockwise_selection_3d(const T *data_pos, const meanInfo &mean_info, size_t dim0_offset, - size_t dim1_offset, - int min_size, - T precision, const float *reg_params_pos, const int pred_dim, - const bool use_lorenzo, const bool use_lorenzo_2layer, const bool use_regression) { - double err_lorenzo = 0; - double err_lorenzo_2layer = 0; - double err_reg = 0; - for (int i = 2; i < min_size - 1; i++) { - int bmi = min_size - i; - meta_block_error_estimation_3d(data_pos, reg_params_pos, mean_info, i, i, i, dim0_offset, dim1_offset, - precision, err_lorenzo, err_lorenzo_2layer, err_reg, pred_dim, - use_lorenzo, - use_lorenzo_2layer, use_regression); - meta_block_error_estimation_3d(data_pos, reg_params_pos, mean_info, i, i, bmi, dim0_offset, - dim1_offset, precision, err_lorenzo, err_lorenzo_2layer, err_reg, - pred_dim, - use_lorenzo, use_lorenzo_2layer, use_regression); - meta_block_error_estimation_3d(data_pos, reg_params_pos, mean_info, i, bmi, i, dim0_offset, - dim1_offset, precision, err_lorenzo, err_lorenzo_2layer, err_reg, - pred_dim, - use_lorenzo, use_lorenzo_2layer, use_regression); - meta_block_error_estimation_3d(data_pos, reg_params_pos, mean_info, i, bmi, bmi, dim0_offset, - dim1_offset, precision, err_lorenzo, err_lorenzo_2layer, err_reg, - pred_dim, - use_lorenzo, use_lorenzo_2layer, use_regression); - } - if (min_size > 3) { - meta_block_error_estimation_3d(data_pos, reg_params_pos, mean_info, min_size - 1, min_size - 1, - min_size - 1, - dim0_offset, dim1_offset, - precision, err_lorenzo, err_lorenzo_2layer, err_reg, pred_dim, - use_lorenzo, - use_lorenzo_2layer, use_regression); - } - - if (use_regression && (!use_lorenzo || err_reg <= err_lorenzo) - && (!use_lorenzo_2layer || err_reg < err_lorenzo_2layer)) { - return SELECTOR_REGRESSION; - } else if (use_lorenzo_2layer && (!use_lorenzo || err_lorenzo_2layer <= err_lorenzo) - && (!use_regression || err_lorenzo_2layer <= err_reg)) { - return SELECTOR_LORENZO_2LAYER; - } else { - return SELECTOR_LORENZO; - } - } - - meta_params params; - SZMETA::DSize_3d size; - double precision; - size_t reg_count = 0; - std::vector indicator; - int *reg_params_type = nullptr; - float *reg_unpredictable_data = nullptr; - float *reg_params = nullptr; - float *reg_unpredictable_data_pos; - - SZMETA::meanInfo mean_info; - int capacity = 0; // not used, capacity is controlled by quantizer - int intv_radius = 0; //not used, capacity is controlled by quantizer - int est_unpred_count_per_index = 0; // not used, unpredictable data is controlled by quantizer - int *unpred_count_buffer = nullptr; // not used, unpredictable data is controlled by quantizer - T *unpred_data_buffer = nullptr; // not used, unpredictable data is controlled by quantizer - - HuffmanEncoder indicator_huffman; - HuffmanEncoder reg_huffman; - - Quantizer quantizer; - Config conf; - - }; - - template - SZFastFrontend - make_sz_fast_frontend(const Config &conf, Predictor predictor) { - return SZFastFrontend(conf, predictor); - } -} - - -#endif diff --git a/lib/SZ3/include/SZ3/frontend/SZGeneralFrontend.hpp b/lib/SZ3/include/SZ3/frontend/SZGeneralFrontend.hpp deleted file mode 100644 index f0ac042f..00000000 --- a/lib/SZ3/include/SZ3/frontend/SZGeneralFrontend.hpp +++ /dev/null @@ -1,152 +0,0 @@ -#ifndef SZ3_FRONTEND -#define SZ3_FRONTEND -/** - * This module is the implementation of general frontend in SZ3 - */ - -#include "Frontend.hpp" -#include "SZ3/def.hpp" -#include "SZ3/predictor/Predictor.hpp" -#include "SZ3/predictor/LorenzoPredictor.hpp" -#include "SZ3/quantizer/Quantizer.hpp" -#include "SZ3/utils/Iterator.hpp" -#include "SZ3/utils/Config.hpp" -#include "SZ3/utils/MemoryUtil.hpp" - -namespace SZ { - - - template - class SZGeneralFrontend : public concepts::FrontendInterface { - public: - - SZGeneralFrontend(const Config &conf, Predictor predictor, Quantizer quantizer) : - fallback_predictor(LorenzoPredictor(conf.absErrorBound)), - predictor(predictor), - quantizer(quantizer), - block_size(conf.blockSize), - num_elements(conf.num) { - std::copy_n(conf.dims.begin(), N, global_dimensions.begin()); - } - - ~SZGeneralFrontend() = default; - - std::vector compress(T *data) { - std::vector quant_inds(num_elements); - auto block_range = std::make_shared>( - data, std::begin(global_dimensions), std::end(global_dimensions), block_size, 0); - - auto element_range = std::make_shared>( - data, std::begin(global_dimensions), std::end(global_dimensions), 1, 0); - - predictor.precompress_data(block_range->begin()); - quantizer.precompress_data(); - size_t quant_count = 0; - for (auto block = block_range->begin(); block != block_range->end(); ++block) { - - element_range->update_block_range(block, block_size); - - concepts::PredictorInterface *predictor_withfallback = &predictor; - if (!predictor.precompress_block(element_range)) { - predictor_withfallback = &fallback_predictor; - } - predictor_withfallback->precompress_block_commit(); - - for (auto element = element_range->begin(); element != element_range->end(); ++element) { - quant_inds[quant_count++] = quantizer.quantize_and_overwrite( - *element, predictor_withfallback->predict(element)); - } - } - - predictor.postcompress_data(block_range->begin()); - quantizer.postcompress_data(); - return quant_inds; - } - - T *decompress(std::vector &quant_inds, T *dec_data) { - - int const *quant_inds_pos = (int const *) quant_inds.data(); - std::array intra_block_dims; -// auto dec_data = new T[num_elements]; - auto block_range = std::make_shared>( - dec_data, std::begin(global_dimensions), std::end(global_dimensions), block_size, 0); - - auto element_range = std::make_shared>( - dec_data, std::begin(global_dimensions), std::end(global_dimensions), 1, 0); - - predictor.predecompress_data(block_range->begin()); - quantizer.predecompress_data(); - - for (auto block = block_range->begin(); block != block_range->end(); ++block) { - - element_range->update_block_range(block, block_size); - - concepts::PredictorInterface *predictor_withfallback = &predictor; - if (!predictor.predecompress_block(element_range)) { - predictor_withfallback = &fallback_predictor; - } - for (auto element = element_range->begin(); element != element_range->end(); ++element) { - *element = quantizer.recover(predictor_withfallback->predict(element), *(quant_inds_pos++)); - } - } - predictor.postdecompress_data(block_range->begin()); - quantizer.postdecompress_data(); - return dec_data; - } - - void save(uchar *&c) { - write(global_dimensions.data(), N, c); - write(block_size, c); - - predictor.save(c); - quantizer.save(c); - } - - void load(const uchar *&c, size_t &remaining_length) { - read(global_dimensions.data(), N, c, remaining_length); - num_elements = 1; - for (const auto &d: global_dimensions) { - num_elements *= d; - } - read(block_size, c, remaining_length); - predictor.load(c, remaining_length); - quantizer.load(c, remaining_length); - } - - size_t size_est() { - return quantizer.size_est(); - } - - void print() { -// predictor.print(); -// quantizer.print(); - } - - void clear() { - predictor.clear(); - fallback_predictor.clear(); - quantizer.clear(); - } - - int get_radius() const { return quantizer.get_radius(); } - - size_t get_num_elements() const { return num_elements; }; - - private: - Predictor predictor; - LorenzoPredictor fallback_predictor; - Quantizer quantizer; - uint block_size; - size_t num_elements; - std::array global_dimensions; - - }; - - template - SZGeneralFrontend - make_sz_general_frontend(const Config &conf, Predictor predictor, Quantizer quantizer) { - return SZGeneralFrontend(conf, predictor, quantizer); - } -} - -#endif diff --git a/lib/SZ3/include/SZ3/lossless/Lossless.hpp b/lib/SZ3/include/SZ3/lossless/Lossless.hpp index d24ecaea..acf29630 100644 --- a/lib/SZ3/include/SZ3/lossless/Lossless.hpp +++ b/lib/SZ3/include/SZ3/lossless/Lossless.hpp @@ -2,24 +2,39 @@ // Created by Kai Zhao on 6/12/20. // -#ifndef SZ_LOSSLESS_HPP -#define SZ_LOSSLESS_HPP - - -namespace SZ { - namespace concepts { - - class LosslessInterface { - public: - virtual void postcompress_data(uchar *data) = 0; - - virtual void postdecompress_data(uchar *data) = 0; - - virtual uchar *compress(uchar *data, size_t dataLength, size_t &outSize) = 0; - - virtual uchar *decompress(const uchar *data, size_t& compressedSize) = 0; - }; - } -} - -#endif //SZ_LOSSLESS_HPP +#ifndef SZ3_LOSSLESS_HPP +#define SZ3_LOSSLESS_HPP + +namespace SZ3::concepts { + +/** + * Lossless compressors is used in addition to lossy compression to further reduce the data size + * Usually this module calls into existing lossless compress APIs, instead of re-implementing the lossless algorithms. + */ +class LosslessInterface { + public: + virtual ~LosslessInterface() = default; + + /** + * compress data with lossless compressors + * @param src data to be compressed + * @param srcLen length (in bytes) of the data to be compressed + * @param dst compressed data + * @param dstCap capacity (in bytes) for storing the compressed data + * @return length (in bytes) of the data compressed + */ + virtual size_t compress(const uchar *src, size_t srcLen, uchar *dst, size_t dstCap) = 0; + + /** + * reverse of compress(), decompress the data with lossless compressors + * @param src data to be decompressed + * @param srcLen length (in bytes) of the data to be decompressed (as input) or the data decompressed (as output). + * @param dst decompressed data + * @param dstLen length (in bytes) of the decompressed data + * @return length (in bytes) of the data decompressed + */ + virtual size_t decompress(const uchar *src, const size_t srcLen, uchar *&dst, size_t &dstLen) = 0; +}; +} // namespace SZ3::concepts + +#endif // SZ_LOSSLESS_HPP diff --git a/lib/SZ3/include/SZ3/lossless/Lossless_bypass.hpp b/lib/SZ3/include/SZ3/lossless/Lossless_bypass.hpp index 81e2589b..c281dc52 100644 --- a/lib/SZ3/include/SZ3/lossless/Lossless_bypass.hpp +++ b/lib/SZ3/include/SZ3/lossless/Lossless_bypass.hpp @@ -2,32 +2,30 @@ // Created by Kai Zhao on 4/21/20. // -#ifndef SZ_LOSSLESS_BYPASS_HPP -#define SZ_LOSSLESS_BYPASS_HPP +#ifndef SZ3_LOSSLESS_BYPASS_HPP +#define SZ3_LOSSLESS_BYPASS_HPP -#include "zstd.h" +#include #include "SZ3/def.hpp" -#include "SZ3/utils/MemoryUtil.hpp" -#include "SZ3/utils/FileUtil.hpp" #include "SZ3/lossless/Lossless.hpp" -namespace SZ { - class Lossless_bypass : public concepts::LosslessInterface { - - public: - - void postcompress_data(uchar *data) {}; - - void postdecompress_data(uchar *data) {}; - - uchar *compress(uchar *data, size_t dataLength, size_t &outSize) { - outSize = dataLength; - return data; - } - - uchar *decompress(const uchar *data, size_t &compressedSize) { - return (uchar *) data; +namespace SZ3 { +class Lossless_bypass : public concepts::LosslessInterface { +public: + size_t compress(const uchar *src, size_t srcLen, uchar *dst, size_t dstCap) override { + std::memcpy(dst, src, srcLen); + // dst = src; + return srcLen; + } + + size_t decompress(const uchar *src, const size_t srcLen, uchar *&dst, size_t &dstLen) override { + dstLen = srcLen; + if (dst == nullptr) { + dst = static_cast(malloc(dstLen)); } - }; -} -#endif //SZ_LOSSLESS_BYPASS_HPP + std::memcpy(dst, src, dstLen); + return dstLen; + } +}; +} // namespace SZ3 +#endif // SZ_LOSSLESS_BYPASS_HPP diff --git a/lib/SZ3/include/SZ3/lossless/Lossless_zstd.hpp b/lib/SZ3/include/SZ3/lossless/Lossless_zstd.hpp index b2364965..3cb9953a 100644 --- a/lib/SZ3/include/SZ3/lossless/Lossless_zstd.hpp +++ b/lib/SZ3/include/SZ3/lossless/Lossless_zstd.hpp @@ -2,56 +2,50 @@ // Created by Kai Zhao on 4/21/20. // -#ifndef SZ_LOSSLESS_ZSTD_HPP -#define SZ_LOSSLESS_ZSTD_HPP +#ifndef SZ3_LOSSLESS_ZSTD_HPP +#define SZ3_LOSSLESS_ZSTD_HPP + +#include -#include "zstd.h" #include "SZ3/def.hpp" -#include "SZ3/utils/MemoryUtil.hpp" -#include "SZ3/utils/FileUtil.hpp" #include "SZ3/lossless/Lossless.hpp" +#include "SZ3/utils/MemoryUtil.hpp" +#include "zstd.h" -namespace SZ { - class Lossless_zstd : public concepts::LosslessInterface { - - public: - Lossless_zstd() = default; - - Lossless_zstd(int comp_level) : compression_level(comp_level) {}; - - uchar *compress(uchar *data, size_t dataLength, size_t &outSize) { - size_t estimatedCompressedSize = (dataLength < 100 ? 200 : size_t(dataLength * 1.2)) + SZ::Config::size_est(); - uchar *compressBytes = new uchar[estimatedCompressedSize]; - uchar *compressBytesPos = compressBytes; - write(dataLength, compressBytesPos); - - outSize = ZSTD_compress(compressBytesPos, estimatedCompressedSize, data, dataLength, - compression_level); - outSize += sizeof(size_t); - return compressBytes; - } - - void postcompress_data(uchar *data) { - delete[] data; - } - - uchar *decompress(const uchar *data, size_t &compressedSize) { - const uchar *dataPos = data; - size_t dataLength = 0; - read(dataLength, dataPos, compressedSize); - - uchar *oriData = new uchar[dataLength]; - ZSTD_decompress(oriData, dataLength, dataPos, compressedSize); - compressedSize = dataLength; - return oriData; +namespace SZ3 { +class Lossless_zstd : public concepts::LosslessInterface { + public: + Lossless_zstd() = default; + + Lossless_zstd(int comp_level) : compression_level(comp_level) {} + + /** + * Attention + * When dstCap is smaller than the space needed, ZSTD will not throw any errors. + * Instead, it will write a portion of the compressed data to dst and stops. + * This behavior is not desirable in SZ, as we need the whole compressed data for decompression. + * Therefore, we need to check if the dst buffer (dstCap) is large enough for zstd + */ + size_t compress(const uchar *src, size_t srcLen, uchar *dst, size_t dstCap) override { + write(srcLen, dst); + dstCap -= sizeof(size_t); // reserve space for srcLen + if (dstCap < ZSTD_compressBound(srcLen)) { + throw std::length_error(SZ3_ERROR_COMP_BUFFER_NOT_LARGE_ENOUGH); } - - void postdecompress_data(uchar *data) { - delete[] data; + size_t dstLen = ZSTD_compress(dst, dstCap, src, srcLen, compression_level); + return dstLen + sizeof(size_t); + } + + size_t decompress(const uchar *src, const size_t srcLen, uchar *&dst, size_t &dstLen) override { + read(dstLen, src); + if (dst == nullptr) { + dst = static_cast(malloc(dstLen)); } - - private: - int compression_level = 3; //default setting of level is 3 - }; -} -#endif //SZ_LOSSLESS_ZSTD_HPP + return ZSTD_decompress(dst, dstLen, src, srcLen - sizeof(dstLen)); + } + + private: + int compression_level = 3; // default setting of level is 3 +}; +} // namespace SZ3 +#endif // SZ_LOSSLESS_ZSTD_HPP diff --git a/lib/SZ3/include/SZ3/predictor/ComposedPredictor.hpp b/lib/SZ3/include/SZ3/predictor/ComposedPredictor.hpp index 425faa92..8e763fc8 100644 --- a/lib/SZ3/include/SZ3/predictor/ComposedPredictor.hpp +++ b/lib/SZ3/include/SZ3/predictor/ComposedPredictor.hpp @@ -1,276 +1,118 @@ -#ifndef _SZ_COMPOSED_PREDICTOR_HPP -#define _SZ_COMPOSED_PREDICTOR_HPP +#ifndef SZ3_COMPOSED_PREDICTOR_HPP +#define SZ3_COMPOSED_PREDICTOR_HPP -#include "SZ3/def.hpp" -#include "SZ3/utils/Iterator.hpp" -#include "SZ3/predictor/Predictor.hpp" -#include "SZ3/encoder/HuffmanEncoder.hpp" #include #include #include -namespace SZ { - - template - class ComposedPredictor : public concepts::PredictorInterface { - public: - using Range = multi_dimensional_range; - using iterator = typename multi_dimensional_range::iterator; - - void precompress_data(const iterator &iter) const noexcept { - for (const auto &p:predictors) { - p->precompress_data(iter); - } - } - - void postcompress_data(const iterator &iter) const noexcept { - for (const auto &p:predictors) { - p->postcompress_data(iter); - } - } - - void predecompress_data(const iterator &iter) const noexcept { - for (const auto &p:predictors) { - p->predecompress_data(iter); - } - } - - void postdecompress_data(const iterator &iter) const noexcept { - for (const auto &p:predictors) { - p->postdecompress_data(iter); - } - } - - - bool precompress_block(const std::shared_ptr &range) { - std::vector precompress_block_result; - for (const auto &p:predictors) { - precompress_block_result.push_back(p->precompress_block(range)); - } - const auto &dims = range->get_dimensions(); - int min_dimension = *std::min_element(dims.begin(), dims.end()); - - do_estimate_error(range->begin(), min_dimension); - - sid = std::distance(predict_error.begin(), std::min_element(predict_error.begin(), predict_error.end())); - return precompress_block_result[sid]; - } - - void precompress_block_commit() { - selection.push_back(sid); - predictors[sid]->precompress_block_commit(); - } - - bool predecompress_block(const std::shared_ptr &range) { - sid = selection[current_index++]; - return predictors[sid]->predecompress_block(range); - } - - void save(uchar *&c) const { - auto tmp = c; - for (const auto &p:predictors) { - p->save(c); - } - // store selection - - *reinterpret_cast(c) = (size_t) selection.size(); - c += sizeof(size_t); - if (selection.size()) { - HuffmanEncoder selection_encoder; - selection_encoder.preprocess_encode(selection, 0); - selection_encoder.save(c); - selection_encoder.encode(selection, c); - selection_encoder.postprocess_encode(); - } -// *reinterpret_cast(c) = (size_t) selection.size(); -// c += sizeof(size_t); -// memcpy(c, selection.data(), selection.size() * sizeof(int)); -// c += selection.size() * sizeof(int); - } - - void load(const uchar *&c, size_t &remaining_length) { - auto tmp = c; - for (const auto &p:predictors) { - p->load(c, remaining_length); - } - - // load selection - // TODO: check correctness - size_t selection_size = *reinterpret_cast(c); - c += sizeof(size_t); - if (selection_size > 0) { - remaining_length -= sizeof(size_t); - HuffmanEncoder selection_encoder; - selection_encoder.load(c, remaining_length); - this->selection = selection_encoder.decode(c, selection_size); - selection_encoder.postprocess_decode(); - } -// size_t selection_size = *reinterpret_cast(c); -// c += sizeof(size_t); -// this->selection = std::vector(reinterpret_cast(c), -// reinterpret_cast(c) + selection_size); -// c += selection_size * sizeof(int); - } - - inline T predict(const iterator &iter) const noexcept { - return predictors[sid]->predict(iter); - } - - int get_sid() const { return sid; } - - void set_sid(int _sid) { - sid = _sid; - } - - T estimate_error(const iterator &iter) const noexcept { - return predictors[sid]->estimate_error(iter); - } - - void print() const { - std::vector cnt(predictors.size(), 0); - size_t cnt_total = 0; - for (auto &sel:selection) { - cnt[sel]++; - cnt_total++; - } - for (int i = 0; i < predictors.size(); i++) { -// predictors[i]->print(); - printf("Blocks:%ld, Percentage:%.2f\n", cnt[i], 1.0 * cnt[i] / cnt_total); - } - } - -// template -// void instantiate(P1 p1) { -// predictors.push_back(std::move(p1)); -// } -// -// template -// void unpack(P1 p1) { -// instantiate(p1); -// } -// -// template -// void unpack(P1 p1, Rest... Rs) { -// instantiate(p1); -// unpack(Rs...); -// } -// -// template -// ComposedPredictor(Predictors &&... Ps) { -// unpack(Ps...); -// } - - ComposedPredictor(std::vector> - - > predictors) { - this->predictors = predictors; - predict_error.resize(predictors.size()); - } - - void clear() { - for (auto &pred:predictors) { - pred->clear(); - } - selection.clear(); - } - - private: - std::vector>> - predictors; - std::vector selection; - int sid = 0; // selected index - size_t current_index = 0; // for decompression only - std::vector predict_error; - - template - inline typename std::enable_if::type - do_estimate_error(const iterator &iter, int min_dimension) { - std::fill(predict_error.begin(), predict_error.end(), 0); - auto iter1 = iter; - iter1.move(min_dimension - 1); - for (int p = 0; p < predictors.size(); p++) { - predict_error[p] += predictors[p]->estimate_error(iter); - predict_error[p] += predictors[p]->estimate_error(iter1); - } - } - - template - inline typename std::enable_if::type - do_estimate_error(const iterator &iter, int min_dimension) { - std::fill(predict_error.begin(), predict_error.end(), 0); - auto iter1 = iter, iter2 = iter; - iter2.move(0, min_dimension - 1); - for (int i = 2; i < min_dimension; i++) { - for (int p = 0; p < predictors.size(); p++) { - predict_error[p] += predictors[p]->estimate_error(iter1); - predict_error[p] += predictors[p]->estimate_error(iter2); - } - iter1.move(1, 1); - iter2.move(1, -1); - } - } - - template - inline typename std::enable_if::type - do_estimate_error(const iterator &iter, int min_dimension) { - std::fill(predict_error.begin(), predict_error.end(), 0); -// std::vector err(predictors.size(), 0); - auto iter1 = iter, iter2 = iter, iter3 = iter, iter4 = iter; - iter2.move(0, 0, min_dimension - 1); - iter3.move(0, min_dimension - 1, 0); - iter4.move(0, min_dimension - 1, min_dimension - 1); - for (int i = 2; i < min_dimension; i++) { - for (int p = 0; p < predictors.size(); p++) { - predict_error[p] += predictors[p]->estimate_error(iter1); - predict_error[p] += predictors[p]->estimate_error(iter2); - predict_error[p] += predictors[p]->estimate_error(iter3); - predict_error[p] += predictors[p]->estimate_error(iter4); - } - iter1.move(1, 1, 1); - iter2.move(1, 1, -1); - iter3.move(1, -1, 1); - iter4.move(1, -1, -1); - } - } - - template - inline typename std::enable_if= 4, void>::type - do_estimate_error(const iterator &iter, int min_dimension) { - std::fill(predict_error.begin(), predict_error.end(), 0); -// std::vector err(predictors.size(), 0); - auto iter1 = iter, iter2 = iter, iter3 = iter, iter4 = iter, - iter5 = iter, iter6 = iter, iter7 = iter, iter8 = iter;; - iter2.move(0, 0, 0, min_dimension - 1); - iter3.move(0, 0, min_dimension - 1, 0); - iter4.move(0, 0, min_dimension - 1, min_dimension - 1); - iter5.move(0, min_dimension - 1, 0, 0); - iter6.move(0, min_dimension - 1, 0, min_dimension - 1); - iter7.move(0, min_dimension - 1, min_dimension - 1, 0); - iter8.move(0, min_dimension - 1, min_dimension - 1, min_dimension - 1); - for (int i = 2; i < min_dimension; i++) { - for (int p = 0; p < predictors.size(); p++) { - predict_error[p] += predictors[p]->estimate_error(iter1); - predict_error[p] += predictors[p]->estimate_error(iter2); - predict_error[p] += predictors[p]->estimate_error(iter3); - predict_error[p] += predictors[p]->estimate_error(iter4); - predict_error[p] += predictors[p]->estimate_error(iter5); - predict_error[p] += predictors[p]->estimate_error(iter6); - predict_error[p] += predictors[p]->estimate_error(iter7); - predict_error[p] += predictors[p]->estimate_error(iter8); - } - iter1.move(1, 1, 1, 1); - iter2.move(1, 1, 1, -1); - iter3.move(1, 1, -1, 1); - iter4.move(1, 1, -1, -1); - iter5.move(1, -1, 1, 1); - iter6.move(1, -1, 1, -1); - iter7.move(1, -1, -1, 1); - iter8.move(1, -1, -1, -1); - } - } - }; - -} +#include "SZ3/encoder/HuffmanEncoder.hpp" +#include "SZ3/predictor/Predictor.hpp" +namespace SZ3 { + +template +class ComposedPredictor : public concepts::PredictorInterface { + public: + using block_iter = typename block_data::block_iterator; + + ComposedPredictor(std::vector>> predictors) + : predictors(predictors) { + if (predictors.empty()) { + throw std::invalid_argument("Empty predictor list for ComposedPredictor."); + } + } + + bool precompress(const block_iter &block) override { + std::vector predict_error(predictors.size(), 0); + std::vector isvalid(predictors.size()); + for (int i = 0; i < predictors.size(); i++) { + isvalid[i] = predictors[i]->precompress(block); + if (isvalid[i]) { + block_iter::foreach_sampling(block, [&](T *c, const std::array &index) { + predict_error[i] += predictors[i]->estimate_error(block, c, index); + }); + } else { + predict_error[i] = std::numeric_limits::max(); + } + } + sid = std::distance(predict_error.begin(), std::min_element(predict_error.begin(), predict_error.end())); + return isvalid[sid]; + } + + void precompress_block_commit() override { + selection.push_back(sid); + predictors[sid]->precompress_block_commit(); + } + + bool predecompress(const block_iter &block) override { + sid = selection[current_index++]; + return predictors[sid]->predecompress(block); + } + + void save(uchar *&c) override { + for (const auto &p : predictors) { + p->save(c); + } + write(selection.size(), c); + if (selection.size() > 0) { + HuffmanEncoder selection_encoder; + selection_encoder.preprocess_encode(selection, predictors.size()); + selection_encoder.save(c); + selection_encoder.encode(selection, c); + selection_encoder.postprocess_encode(); + } + } + + void load(const uchar *&c, size_t &remaining_length) override { + for (const auto &p : predictors) { + p->load(c, remaining_length); + } + size_t selection_size = 0; + read(selection_size, c, remaining_length); + if (selection_size > 0) { + HuffmanEncoder selection_encoder; + selection_encoder.load(c, remaining_length); + this->selection = selection_encoder.decode(c, selection_size); + selection_encoder.postprocess_decode(); + } + } + + ALWAYS_INLINE T predict(const block_iter &block, T *d, const std::array &index) override { + return predictors[sid]->predict(block, d, index); + } + + ALWAYS_INLINE T estimate_error(const block_iter &block, T *d, const std::array &index) override { + return predictors[sid]->estimate_error(block, d, index); + } + + void print() const override { + std::vector cnt(predictors.size(), 0); + size_t cnt_total = 0; + for (auto &sel : selection) { + cnt[sel]++; + cnt_total++; + } + for (size_t i = 0; i < predictors.size(); i++) { + // predictors[i]->print(); + printf("Blocks:%zu, Percentage:%.2f\n", cnt[i], 1.0 * cnt[i] / cnt_total); + } + } + + size_t get_padding() override { + size_t max_padding = 0; + for (const auto &p : predictors) { + max_padding = std::max(max_padding, p->get_padding()); + } + return max_padding; + } + + private: + std::vector>> predictors; + std::vector selection; + int sid = 0; // selected index + size_t current_index = 0; // for decompression only +}; + +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/predictor/LorenzoPredictor.hpp b/lib/SZ3/include/SZ3/predictor/LorenzoPredictor.hpp index 404a4212..1c6bb86c 100644 --- a/lib/SZ3/include/SZ3/predictor/LorenzoPredictor.hpp +++ b/lib/SZ3/include/SZ3/predictor/LorenzoPredictor.hpp @@ -1,155 +1,111 @@ -#ifndef _SZ_LORENZO_PREDICTOR_HPP -#define _SZ_LORENZO_PREDICTOR_HPP +#ifndef SZ3_LORENZO_PREDICTOR_HPP +#define SZ3_LORENZO_PREDICTOR_HPP -#include "SZ3/def.hpp" #include "SZ3/predictor/Predictor.hpp" -#include "SZ3/utils/Iterator.hpp" -#include -namespace SZ { - - // N-dimension L-layer lorenzo predictor - template - class LorenzoPredictor : public concepts::PredictorInterface { - public: - static const uint8_t predictor_id = 0b00000001; - using Range = multi_dimensional_range; - using iterator = typename multi_dimensional_range::iterator; - - LorenzoPredictor() { - this->noise = 0; - } - - LorenzoPredictor(double eb) { - this->noise = 0; - if (L == 1) { - if (N == 1) { - this->noise = 0.5 * eb; - } else if (N == 2) { - this->noise = 0.81 * eb; - } else if (N == 3) { - this->noise = 1.22 * eb; - } else if (N == 4) { - this->noise = 1.79 * eb; - } - } else if (L == 2) { - if (N == 1) { - this->noise = 1.08 * eb; - } else if (N == 2) { - this->noise = 2.76 * eb; - } else if (N == 3) { - this->noise = 6.8 * eb; - } +namespace SZ3 { + +// N-dimension L-layer lorenzo predictor +template +class LorenzoPredictor : public concepts::PredictorInterface { + public: + static const uint8_t predictor_id = 0b00000001; + using block_iter = typename block_data::block_iterator; + + LorenzoPredictor() { this->noise = 0; } + + LorenzoPredictor(double eb) { + this->noise = 0; + if (L == 1) { + if (N == 1) { + this->noise = 0.5 * eb; + } else if (N == 2) { + this->noise = 0.81 * eb; + } else if (N == 3) { + this->noise = 1.22 * eb; + } else if (N == 4) { + this->noise = 1.79 * eb; + } + } else if (L == 2) { + if (N == 1) { + this->noise = 1.08 * eb; + } else if (N == 2) { + this->noise = 2.76 * eb; + } else if (N == 3) { + this->noise = 6.8 * eb; } } - - void precompress_data(const iterator &) const {} - - void postcompress_data(const iterator &) const {} - - void predecompress_data(const iterator &) const {} - - void postdecompress_data(const iterator &) const {} - - bool precompress_block(const std::shared_ptr &) { return true; } - - void precompress_block_commit() noexcept {} - - bool predecompress_block(const std::shared_ptr &) { return true; } - - /* - * save doesn't need to store anything except the id - */ - // std::string save() const { - // return std::string(1, predictor_id); - // } - void save(uchar *&c) const { - c[0] = predictor_id; - c += sizeof(uint8_t); - } - - /* - * just verifies the ID, increments - */ - // static LorenzoPredictor load(const unsigned char*& c, size_t& remaining_length) { - // assert(remaining_length > sizeof(uint8_t)); - // c += 1; - // remaining_length -= sizeof(uint8_t); - // return LorenzoPredictor{}; - // } - void load(const uchar *&c, size_t &remaining_length) { - c += sizeof(uint8_t); - remaining_length -= sizeof(uint8_t); - } - - void print() const { - std::cout << L << "-Layer " << N << "D Lorenzo predictor, noise = " << noise << "\n"; - } - - inline T estimate_error(const iterator &iter) const noexcept { - return fabs(*iter - predict(iter)) + this->noise; - } - - inline T predict(const iterator &iter) const noexcept { - return do_predict(iter); - } - - void clear() {} - - protected: - T noise = 0; - - private: - template - inline typename std::enable_if::type do_predict(const iterator &iter) const noexcept { - return iter.prev(1); - } - - template - inline typename std::enable_if::type do_predict(const iterator &iter) const noexcept { - return iter.prev(0, 1) + iter.prev(1, 0) - iter.prev(1, 1); - } - - template - inline typename std::enable_if::type do_predict(const iterator &iter) const noexcept { - return iter.prev(0, 0, 1) + iter.prev(0, 1, 0) + iter.prev(1, 0, 0) - - iter.prev(0, 1, 1) - iter.prev(1, 0, 1) - iter.prev(1, 1, 0) - + iter.prev(1, 1, 1); - - } - - template - inline typename std::enable_if::type do_predict(const iterator &iter) const noexcept { - return iter.prev(0, 0, 0, 1) + iter.prev(0, 0, 1, 0) - iter.prev(0, 0, 1, 1) + iter.prev(0, 1, 0, 0) - - iter.prev(0, 1, 0, 1) - iter.prev(0, 1, 1, 0) + iter.prev(0, 1, 1, 1) + iter.prev(1, 0, 0, 0) - - iter.prev(1, 0, 0, 1) - iter.prev(1, 0, 1, 0) + iter.prev(1, 0, 1, 1) - iter.prev(1, 1, 0, 0) - + iter.prev(1, 1, 0, 1) + iter.prev(1, 1, 1, 0) - iter.prev(1, 1, 1, 1); - } - - template - inline typename std::enable_if::type do_predict(const iterator &iter) const noexcept { - return 2 * iter.prev(1) - iter.prev(2); - } - - template - inline typename std::enable_if::type do_predict(const iterator &iter) const noexcept { - return 2 * iter.prev(0, 1) - iter.prev(0, 2) + 2 * iter.prev(1, 0) - - 4 * iter.prev(1, 1) + 2 * iter.prev(1, 2) - iter.prev(2, 0) - + 2 * iter.prev(2, 1) - iter.prev(2, 2); + } + + bool precompress(const block_iter &) override { return true; } + + void precompress_block_commit() noexcept override {} + + bool predecompress(const block_iter &) override { return true; } + + void save(uchar *&c) override {} + + void load(const uchar *&c, size_t &remaining_length) override {} + + void print() const override { + std::cout << L << "-Layer " << N << "D Lorenzo predictor, noise = " << noise << "\n"; + } + + size_t get_padding() override { return 2; } + + ALWAYS_INLINE T estimate_error(const block_iter &block, T *d, const std::array &index) override { + return fabs(*d - predict(block, d, index)) + this->noise; + } + + ALWAYS_INLINE T predict(const block_iter &block, T *d, const std::array &index) override { + auto ds = block.get_dim_strides(); + if constexpr (N == 1 && L == 1) { + return prev1(d, 1); + } else if constexpr (N == 2 && L == 1) { + return prev2(d, ds, 0, 1) + prev2(d, ds, 1, 0) - prev2(d, ds, 1, 1); + } else if constexpr (N == 3 && L == 1) { + return prev3(d, ds, 0, 0, 1) + prev3(d, ds, 0, 1, 0) + prev3(d, ds, 1, 0, 0) - prev3(d, ds, 0, 1, 1) - + prev3(d, ds, 1, 0, 1) - prev3(d, ds, 1, 1, 0) + prev3(d, ds, 1, 1, 1); + } else if constexpr (N == 4 && L == 1) { + return prev4(d, ds, 0, 0, 0, 1) + prev4(d, ds, 0, 0, 1, 0) - prev4(d, ds, 0, 0, 1, 1) + + prev4(d, ds, 0, 1, 0, 0) - prev4(d, ds, 0, 1, 0, 1) - prev4(d, ds, 0, 1, 1, 0) + + prev4(d, ds, 0, 1, 1, 1) + prev4(d, ds, 1, 0, 0, 0) - prev4(d, ds, 1, 0, 0, 1) - + prev4(d, ds, 1, 0, 1, 0) + prev4(d, ds, 1, 0, 1, 1) - prev4(d, ds, 1, 1, 0, 0) + + prev4(d, ds, 1, 1, 0, 1) + prev4(d, ds, 1, 1, 1, 0) - prev4(d, ds, 1, 1, 1, 1); + } else if constexpr (N == 1 && L == 2) { + return 2 * prev1(d, 1) - prev1(d, 2); + } else if constexpr (N == 2 && L == 2) { + return 2 * prev2(d, ds, 0, 1) - prev2(d, ds, 0, 2) + 2 * prev2(d, ds, 1, 0) - 4 * prev2(d, ds, 1, 1) + + 2 * prev2(d, ds, 1, 2) - prev2(d, ds, 2, 0) + 2 * prev2(d, ds, 2, 1) - prev2(d, ds, 2, 2); + } else if constexpr (N == 3 && L == 2) { + return 2 * prev3(d, ds, 0, 0, 1) - prev3(d, ds, 0, 0, 2) + 2 * prev3(d, ds, 0, 1, 0) - + 4 * prev3(d, ds, 0, 1, 1) + 2 * prev3(d, ds, 0, 1, 2) - prev3(d, ds, 0, 2, 0) + + 2 * prev3(d, ds, 0, 2, 1) - prev3(d, ds, 0, 2, 2) + 2 * prev3(d, ds, 1, 0, 0) - + 4 * prev3(d, ds, 1, 0, 1) + 2 * prev3(d, ds, 1, 0, 2) - 4 * prev3(d, ds, 1, 1, 0) + + 8 * prev3(d, ds, 1, 1, 1) - 4 * prev3(d, ds, 1, 1, 2) + 2 * prev3(d, ds, 1, 2, 0) - + 4 * prev3(d, ds, 1, 2, 1) + 2 * prev3(d, ds, 1, 2, 2) - prev3(d, ds, 2, 0, 0) + + 2 * prev3(d, ds, 2, 0, 1) - prev3(d, ds, 2, 0, 2) + 2 * prev3(d, ds, 2, 1, 0) - + 4 * prev3(d, ds, 2, 1, 1) + 2 * prev3(d, ds, 2, 1, 2) - prev3(d, ds, 2, 2, 0) + + 2 * prev3(d, ds, 2, 2, 1) - prev3(d, ds, 2, 2, 2); + } else { + static_assert(N <= 4 && L <= 2, "Unsupported dimension or layer configuration"); + return T(0); } - - template - inline typename std::enable_if::type do_predict(const iterator &iter) const noexcept { - return 2 * iter.prev(0, 0, 1) - iter.prev(0, 0, 2) + 2 * iter.prev(0, 1, 0) - - 4 * iter.prev(0, 1, 1) + 2 * iter.prev(0, 1, 2) - iter.prev(0, 2, 0) - + 2 * iter.prev(0, 2, 1) - iter.prev(0, 2, 2) + 2 * iter.prev(1, 0, 0) - - 4 * iter.prev(1, 0, 1) + 2 * iter.prev(1, 0, 2) - 4 * iter.prev(1, 1, 0) - + 8 * iter.prev(1, 1, 1) - 4 * iter.prev(1, 1, 2) + 2 * iter.prev(1, 2, 0) - - 4 * iter.prev(1, 2, 1) + 2 * iter.prev(1, 2, 2) - iter.prev(2, 0, 0) - + 2 * iter.prev(2, 0, 1) - iter.prev(2, 0, 2) + 2 * iter.prev(2, 1, 0) - - 4 * iter.prev(2, 1, 1) + 2 * iter.prev(2, 1, 2) - iter.prev(2, 2, 0) - + 2 * iter.prev(2, 2, 1) - iter.prev(2, 2, 2); - }; - }; -} + } + + protected: + T noise = 0; + + private: + // Helper functions for Lorenzo prediction + ALWAYS_INLINE T prev1(T *d, size_t i) { return d[-i]; } + ALWAYS_INLINE T prev2(T *d, const std::array &ds, size_t j, size_t i) { return d[-j * ds[0] - i]; } + ALWAYS_INLINE T prev3(T *d, const std::array &ds, size_t k, size_t j, size_t i) { + return d[-k * ds[1] - j * ds[0] - i]; + } + ALWAYS_INLINE T prev4(T *d, const std::array &ds, size_t t, size_t k, size_t j, size_t i) { + return d[-t * ds[2] - k * ds[1] - j * ds[0] - i]; + } +}; +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/predictor/MetaLorenzoPredictor.hpp b/lib/SZ3/include/SZ3/predictor/MetaLorenzoPredictor.hpp deleted file mode 100644 index f6e37539..00000000 --- a/lib/SZ3/include/SZ3/predictor/MetaLorenzoPredictor.hpp +++ /dev/null @@ -1,200 +0,0 @@ -#ifndef _meta_lorenzo_hpp -#define _meta_lorenzo_hpp - -#include "SZ3/utils/MetaDef.hpp" - -namespace SZMETA { - - template - inline T - lorenzo_predict_1d(const T *data_pos, size_t dim0_offset) { - return data_pos[-1]; - } - - template - inline T - lorenzo_predict_1d_2layer(const T *data_pos, size_t dim0_offset) { - return 2 * data_pos[-1] - data_pos[-2]; - } - - - template - inline T - lorenzo_predict_2d(const T *data_pos, size_t dim0_offset, size_t dim1_offset) { - return data_pos[-1] + data_pos[-dim0_offset] - data_pos[-1 - dim0_offset]; - } - - template - inline T - lorenzo_predict_2d_2layer(const T *data_pos, size_t dim0_offset, size_t dim1_offset) { - return 2 * data_pos[-dim0_offset] - - data_pos[-2 * dim0_offset] - + 2 * data_pos[-1] - - 4 * data_pos[-1 - dim0_offset] - + 2 * data_pos[-1 - 2 * dim0_offset] - - data_pos[-2] - + 2 * data_pos[-2 - dim0_offset] - - data_pos[-2 - 2 * dim0_offset]; - } - - template - inline T - lorenzo_predict_3d(const T *data_pos, size_t dim0_offset, size_t dim1_offset) { - return data_pos[-1] + data_pos[-dim1_offset] + data_pos[-dim0_offset] - - data_pos[-dim1_offset - 1] - data_pos[-dim0_offset - 1] - - data_pos[-dim0_offset - dim1_offset] + data_pos[-dim0_offset - dim1_offset - 1]; - } - - template - inline T - lorenzo_predict_3d_2layer(const T *data_pos, size_t dim0_offset, size_t dim1_offset) { - return 2 * data_pos[-1] - - data_pos[-2] - + 2 * data_pos[-dim1_offset] - - 4 * data_pos[-dim1_offset - 1] - + 2 * data_pos[-dim1_offset - 2] - - data_pos[-2 * dim1_offset] - + 2 * data_pos[-2 * dim1_offset - 1] - - data_pos[-2 * dim1_offset - 2] - + 2 * data_pos[-dim0_offset] - - 4 * data_pos[-dim0_offset - 1] - + 2 * data_pos[-dim0_offset - 2] - - 4 * data_pos[-dim0_offset - dim1_offset] - + 8 * data_pos[-dim0_offset - dim1_offset - 1] - - 4 * data_pos[-dim0_offset - dim1_offset - 2] - + 2 * data_pos[-dim0_offset - 2 * dim1_offset] - - 4 * data_pos[-dim0_offset - 2 * dim1_offset - 1] - + 2 * data_pos[-dim0_offset - 2 * dim1_offset - 2] - - data_pos[-2 * dim0_offset] - + 2 * data_pos[-2 * dim0_offset - 1] - - data_pos[-2 * dim0_offset - 2] - + 2 * data_pos[-2 * dim0_offset - dim1_offset] - - 4 * data_pos[-2 * dim0_offset - dim1_offset - 1] - + 2 * data_pos[-2 * dim0_offset - dim1_offset - 2] - - data_pos[-2 * dim0_offset - 2 * dim1_offset] - + 2 * data_pos[-2 * dim0_offset - 2 * dim1_offset - 1] - - data_pos[-2 * dim0_offset - 2 * dim1_offset - 2]; - } - - - template - inline void - lorenzo_predict_quantize_3d(const meanInfo &mean_info, const T *data_pos, T *buffer, T precision, - T recip_precision, int capacity, int intv_radius, - int size_x, int size_y, int size_z, size_t buffer_dim0_offset, - size_t buffer_dim1_offset, - size_t dim0_offset, size_t dim1_offset, int *&type_pos, int *unpred_count_buffer, - T *unpred_buffer, size_t offset, int padding_layer, - bool use_2layer, Quantizer &quantizer, int pred_dim) { - - const T *cur_data_pos = data_pos; - T *buffer_pos = buffer + padding_layer * (buffer_dim0_offset + buffer_dim1_offset + 1); - int radius = quantizer.get_radius(); - for (int i = 0; i < size_x; i++) { - for (int j = 0; j < size_y; j++) { - for (int k = 0; k < size_z; k++) { - - T *cur_buffer_pos = buffer_pos + k; - T cur_data = cur_data_pos[k]; - T pred; - if (mean_info.use_mean && fabs(cur_data - mean_info.mean) <= precision) { - type_pos[k] = radius; - *cur_buffer_pos = mean_info.mean; - } else { - if (use_2layer) { - if (pred_dim == 3) { - pred = lorenzo_predict_3d_2layer(cur_buffer_pos, buffer_dim0_offset, buffer_dim1_offset); - } else if (pred_dim == 2) { - pred = lorenzo_predict_2d_2layer(cur_buffer_pos, buffer_dim0_offset, buffer_dim1_offset); - } else { - pred = lorenzo_predict_1d_2layer(cur_buffer_pos, buffer_dim0_offset); - } - } else { - if (pred_dim == 3) { - pred = lorenzo_predict_3d(cur_buffer_pos, buffer_dim0_offset, buffer_dim1_offset); - } else if (pred_dim == 2) { - pred = lorenzo_predict_2d(cur_buffer_pos, buffer_dim0_offset, buffer_dim1_offset); - } else { - pred = lorenzo_predict_1d(cur_buffer_pos, buffer_dim0_offset); - } - } -// *cur_buffer_pos = cur_data; -// type_pos[k] = quantizer.quantize_and_overwrite(*cur_buffer_pos, pred); - type_pos[k] = quantizer.quantize_and_overwrite(cur_data, pred, *cur_buffer_pos); - if (mean_info.use_mean && type_pos[k] >= radius) { - type_pos[k] += 1; - } - } - } - type_pos += size_z; - buffer_pos += buffer_dim1_offset; - cur_data_pos += dim1_offset; - } - buffer_pos += buffer_dim0_offset - size_y * buffer_dim1_offset; - cur_data_pos += dim0_offset - size_y * dim1_offset; - } - } - - template - inline void - lorenzo_predict_recover_3d(const meanInfo &mean_info, T *buffer, T precision, int intv_radius, - int size_x, int size_y, int size_z, size_t buffer_dim0_offset, - size_t buffer_dim1_offset, - size_t dim0_offset, size_t dim1_offset, - const int *&type_pos, int *unpred_count_buffer, const T *unpred_data_buffer, - const int offset, - T *dec_data_pos, const int layer, - bool use_2layer, Quantizer &quantizer, int pred_dim) { - T *cur_data_pos = dec_data_pos; - T *buffer_pos = buffer + layer * (buffer_dim0_offset + buffer_dim1_offset + 1); - int radius = quantizer.get_radius(); - for (int i = 0; i < size_x; i++) { - for (int j = 0; j < size_y; j++) { - for (int k = 0; k < size_z; k++) { - int index = j * size_z + k; - int type_val = type_pos[index]; - T *cur_buffer_pos = buffer_pos + k; - if (type_val == 0) { - cur_data_pos[k] = *cur_buffer_pos = quantizer.recover_unpred(); - } else if (mean_info.use_mean && type_val == radius) { - cur_data_pos[k] = *cur_buffer_pos = mean_info.mean; - } else { - T pred; -// pred = predict(cur_buffer_pos, buffer_dim1_offset, buffer_dim0_offset); - if (use_2layer) { - if (pred_dim == 3) { - pred = lorenzo_predict_3d_2layer(cur_buffer_pos, buffer_dim0_offset, - buffer_dim1_offset); - } else if (pred_dim == 2) { - pred = lorenzo_predict_2d_2layer(cur_buffer_pos, buffer_dim0_offset, - buffer_dim1_offset); - } else { - pred = lorenzo_predict_1d_2layer(cur_buffer_pos, buffer_dim0_offset); - } - } else { - if (pred_dim == 3) { - pred = lorenzo_predict_3d(cur_buffer_pos, buffer_dim0_offset, buffer_dim1_offset); - } else if (pred_dim == 2) { - pred = lorenzo_predict_2d(cur_buffer_pos, buffer_dim0_offset, buffer_dim1_offset); - } else { - pred = lorenzo_predict_1d(cur_buffer_pos, buffer_dim0_offset); - } - } - if (mean_info.use_mean && type_val > radius) { - type_val -= 1; - } - cur_data_pos[k] = *cur_buffer_pos = quantizer.recover_pred(pred, type_val); - } - - } - buffer_pos += buffer_dim1_offset; - cur_data_pos += dim1_offset; - } - type_pos += size_y * size_z; - buffer_pos += buffer_dim0_offset - size_y * buffer_dim1_offset; - cur_data_pos += dim0_offset - size_y * dim1_offset; - } - } - -} -#endif diff --git a/lib/SZ3/include/SZ3/predictor/MetaRegressionPredictor.hpp b/lib/SZ3/include/SZ3/predictor/MetaRegressionPredictor.hpp deleted file mode 100644 index 4f6ed681..00000000 --- a/lib/SZ3/include/SZ3/predictor/MetaRegressionPredictor.hpp +++ /dev/null @@ -1,253 +0,0 @@ -#ifndef _meta_regression_hpp -#define _meta_regression_hpp - -#include "SZ3/utils/MetaDef.hpp" -#include "SZ3/encoder/HuffmanEncoder.hpp" -#include "SZ3/utils/MemoryUtil.hpp" - -namespace SZMETA { - - template - inline int - quantize_reg_coeff(float pred, T cur_data, double precision, double recip_precision, int capacity, int intv_radius, - T *&unpredictable_data_pos, T *decompressed) { - double diff = cur_data - pred; - double quant_diff = fabs(diff) * recip_precision + 1; - if (quant_diff < capacity) { - quant_diff = (diff > 0) ? quant_diff : -quant_diff; - int quant_index = (int) (quant_diff / 2) + intv_radius; - T decompressed_data = pred + 2 * (quant_index - intv_radius) * precision; - *decompressed = decompressed_data; - if (fabs(decompressed_data - cur_data) <= precision) return quant_index; - } - *decompressed = cur_data; - *(unpredictable_data_pos++) = cur_data; - return 0; - } - - template - inline T - recover_reg_coeff(float pred, double precision, int type_val, int intv_radius, const T *&unpredictable_data_pos) { - if (type_val == 0) { - return *(unpredictable_data_pos++); - } else { - return pred + 2 * (type_val - intv_radius) * precision; - } - } - - template - inline void - compress_regression_coefficient_3d(const int coeff_num, const T *precisions, const T *recip_precisions, - float *reg_params_pos, - int *reg_params_type_pos, float *®_unpredictable_data_pos) { - float *prev_reg_params = reg_params_pos - coeff_num; - for (int i = 0; i < coeff_num; i++) { - *(reg_params_type_pos++) = quantize_reg_coeff(*prev_reg_params, *reg_params_pos, precisions[i], - recip_precisions[i], - RegCoeffCapacity, RegCoeffRadius, reg_unpredictable_data_pos, - reg_params_pos); - prev_reg_params++, reg_params_pos++; - } - } - - template - float * - decode_regression_coefficients(const unsigned char *&compressed_pos, size_t reg_count, int block_size, T precision, - const meta_params ¶ms) { - size_t reg_unpredictable_count = 0; - size_t remaining_length = RegCoeffNum3d * reg_count;//fake, has no meaning - SZ::read(reg_unpredictable_count, compressed_pos, remaining_length); - const float *reg_unpredictable_data_pos = (const float *) compressed_pos; - compressed_pos += reg_unpredictable_count * sizeof(float); - -// int *reg_type = Huffman_decode_tree_and_data(2 * RegCoeffCapacity, RegCoeffNum3d * reg_count, compressed_pos); - SZ::HuffmanEncoder selector_encoder = SZ::HuffmanEncoder(); - selector_encoder.load(compressed_pos, remaining_length); - auto reg_vector = selector_encoder.decode(compressed_pos, RegCoeffNum3d * reg_count); - selector_encoder.postprocess_decode(); - int *reg_type = reg_vector.data(); - - float *reg_params = (float *) malloc(RegCoeffNum3d * (reg_count + 1) * sizeof(float)); - for (int i = 0; i < RegCoeffNum3d; i++) - reg_params[i] = 0; - T reg_precisions[RegCoeffNum3d]; - for (int i = 0; i < RegCoeffNum3d - 1; i++) { - reg_precisions[i] = params.regression_param_eb_linear; - } - reg_precisions[RegCoeffNum3d - 1] = params.regression_param_eb_independent; - float *prev_reg_params = reg_params; - float *reg_params_pos = reg_params + RegCoeffNum3d; - const int *type_pos = (const int *) reg_type; - for (int i = 0; i < reg_count; i++) { - for (int j = 0; j < RegCoeffNum3d; j++) { - *reg_params_pos = recover_reg_coeff(*prev_reg_params, reg_precisions[j], *(type_pos++), RegCoeffRadius, - reg_unpredictable_data_pos); - prev_reg_params++, reg_params_pos++; - } - } -// free(reg_type); - return reg_params; - } - - void - encode_regression_coefficients(const int *reg_params_type, const float *reg_unpredictable_data, size_t reg_count, - size_t reg_unpredictable_count, SZ::HuffmanEncoder ®_huffman, unsigned char *&compressed_pos) { - SZ::write(reg_unpredictable_count, compressed_pos); - SZ::write(reg_unpredictable_data, reg_unpredictable_count, compressed_pos); - -// reg_huffman.preprocess_encode(reg_params_type, reg_count, 0); - reg_huffman.save(compressed_pos); - reg_huffman.encode(reg_params_type, reg_count, compressed_pos); - reg_huffman.postprocess_encode(); -// Huffman_encode_tree_and_data(2 * RegCoeffCapacity, reg_params_type, reg_count, compressed_pos); - } - - template - inline void - compute_regression_coeffcients_3d(const T *data_pos, int size_x, int size_y, int size_z, size_t dim0_offset, - size_t dim1_offset, float *reg_params_pos) { - /*Calculate regression coefficients*/ - const T *cur_data_pos = data_pos; - float fx = 0.0; - float fy = 0.0; - float fz = 0.0; - float f = 0; - float sum_x, sum_y; - T curData; - for (int i = 0; i < size_x; i++) { - sum_x = 0; - for (int j = 0; j < size_y; j++) { - sum_y = 0; - for (int k = 0; k < size_z; k++) { - curData = *cur_data_pos; - sum_y += curData; - fz += curData * k; - cur_data_pos++; - } - fy += sum_y * j; - sum_x += sum_y; - cur_data_pos += (dim1_offset - size_z); - } - fx += sum_x * i; - f += sum_x; - cur_data_pos += (dim0_offset - size_y * dim1_offset); - } - float coeff = 1.0 / (size_x * size_y * size_z); - reg_params_pos[0] = (2 * fx / (size_x - 1) - f) * 6 * coeff / (size_x + 1); - reg_params_pos[1] = (2 * fy / (size_y - 1) - f) * 6 * coeff / (size_y + 1); - reg_params_pos[2] = (2 * fz / (size_z - 1) - f) * 6 * coeff / (size_z + 1); - reg_params_pos[3] = f * coeff - ((size_x - 1) * reg_params_pos[0] / 2 + (size_y - 1) * reg_params_pos[1] / 2 + - (size_z - 1) * reg_params_pos[2] / 2); - } - - - template - inline T - regression_predict_3d(const float *reg_params_pos, int x, int y, int z) { - return reg_params_pos[0] * x + reg_params_pos[1] * y + reg_params_pos[2] * z + reg_params_pos[3]; - } - - template - inline void - regression_predict_quantize_3d(const T *data_pos, const float *reg_params_pos, T *buffer, T precision, - T recip_precision, int capacity, - int intv_radius, int size_x, int size_y, int size_z, size_t buffer_dim0_offset, - size_t buffer_dim1_offset, - size_t dim0_offset, size_t dim1_offset, int *&type_pos, - int *unpred_count_buffer, T *unpred_buffer, size_t offset, int lorenzo_layer, - Quantizer &quantizer) { - for (int i = 0; i < size_x; i++) { -// const T *cur_data_pos = data_pos + i * dim0_offset; - // T * buffer_pos = buffer + (i+1)*buffer_dim0_offset + buffer_dim1_offset + 1; - T *buffer_pos = - buffer + (i + lorenzo_layer) * buffer_dim0_offset + lorenzo_layer * buffer_dim1_offset + - lorenzo_layer; - for (int j = 0; j < size_y; j++) { - for (int k = 0; k < size_z; k++) { - T cur_data = data_pos[i * dim0_offset + j * dim1_offset + k]; - T pred = (T) (reg_params_pos[0] * (float) i + reg_params_pos[1] * (float) j + - reg_params_pos[2] * (float) k + - reg_params_pos[3]); - -// buffer_pos[j * buffer_dim1_offset + k] = cur_data; -// type_pos[j * size_z + k] = quantizer.quantize_and_overwrite(buffer_pos[j * buffer_dim1_offset + k], pred); - - type_pos[j * size_z + k] = quantizer.quantize_and_overwrite(cur_data, pred, - buffer_pos[j * buffer_dim1_offset + - k]); - -// T diff = cur_data - pred; -// int quant_index = (int) (fabs(diff) * recip_precision) + 1; -// if (quant_index < capacity) { -// quant_index >>= 1; -// int half_index = quant_index; -// quant_index <<= 1; -// if (diff < 0) { -// quant_index = -quant_index; -// type_pos[j * size_z + k] = intv_radius - half_index; -// } else type_pos[j * size_z + k] = intv_radius + half_index; -// T decompressed_data = pred + (T) quant_index * precision; -// if (fabs(cur_data - decompressed_data) > precision) { -// int index = j * size_z + k; -// type_pos[index] = 0; -// unpred_buffer[index * offset + unpred_count_buffer[index]] = buffer_pos[ -// j * buffer_dim1_offset + -// k] = cur_data; -// unpred_count_buffer[index]++; -// } else buffer_pos[j * buffer_dim1_offset + k] = decompressed_data; -// } else { -// int index = j * size_z + k; -// type_pos[index] = 0; -// unpred_buffer[index * offset + unpred_count_buffer[index]] = buffer_pos[j * buffer_dim1_offset + -// k] = cur_data; -// unpred_count_buffer[index]++; -// } - } - } - type_pos += size_y * size_z; - } -// exit(0); - - } - - template - inline void - regression_predict_recover_3d(const float *reg_params_pos, T *buffer, T precision, int intv_radius, - int size_x, int size_y, int size_z, size_t buffer_dim0_offset, - size_t buffer_dim1_offset, - size_t dim0_offset, size_t dim1_offset, const int *&type_pos, - int *unpred_count_buffer, - const T *unpred_data_buffer, const int offset, T *dec_data_pos, - int lorenzo_layer, Quantizer &quantizer) { - T *cur_data_pos = dec_data_pos; - T *buffer_pos = buffer + lorenzo_layer * (buffer_dim0_offset + buffer_dim1_offset + 1); - for (int i = 0; i < size_x; i++) { - for (int j = 0; j < size_y; j++) { - for (int k = 0; k < size_z; k++) { - int index = j * size_z + k; - int type_val = type_pos[index]; - if (type_val == 0) { - cur_data_pos[j * dim1_offset + k] = buffer_pos[j * buffer_dim1_offset + k] - = quantizer.recover_unpred(); -// cur_data_pos[j * dim1_offset + k] = buffer_pos[j * buffer_dim1_offset + k] = unpred_data_buffer[ -// index * offset + unpred_count_buffer[index]]; -// unpred_count_buffer[index]++; - } else { - - T pred = (T) (reg_params_pos[0] * (float) i + reg_params_pos[1] * (float) j + - reg_params_pos[2] * (float) k + - reg_params_pos[3]); - cur_data_pos[j * dim1_offset + k] = buffer_pos[j * buffer_dim1_offset + - k] = quantizer.recover_pred(pred, type_val); -// cur_data_pos[j * dim1_offset + k] = buffer_pos[j * buffer_dim1_offset + k] = -// pred + (T) (2 * (type_val - intv_radius)) * precision; - } - } - } - type_pos += size_y * size_z; - cur_data_pos += dim0_offset; - buffer_pos += buffer_dim0_offset; - } - } -} -#endif diff --git a/lib/SZ3/include/SZ3/predictor/PolyRegressionCoeffAux.hpp b/lib/SZ3/include/SZ3/predictor/PolyRegressionCoeffAux.hpp deleted file mode 100644 index 98deae2e..00000000 --- a/lib/SZ3/include/SZ3/predictor/PolyRegressionCoeffAux.hpp +++ /dev/null @@ -1,18 +0,0 @@ -// -// Created by Kai Zhao on 7/27/21. -// - -#ifndef SZ3_POLYREGRESSIONCOEFF_HPP -#define SZ3_POLYREGRESSIONCOEFF_HPP - -namespace SZ { -float COEFF_1D[]={ -3.0, 1.0, -1.5, 0.5, -1.5, 6.5, -3.0, 0.5, -3.0, 1.5, 4.0, 0.949999988079071, -1.0499999523162842, 0.25, -1.0499999523162842, 2.450000047683716, -0.75, 0.25, -0.75, 0.25, 5.0, 0.8857142925262451, -0.7714285850524902, 0.1428571492433548, -0.7714285850524902, 1.2428570985794067, -0.2857142984867096, 0.1428571492433548, -0.2857142984867096, 0.0714285746216774, 6.0, 0.8214285969734192, -0.5892857313156128, 0.0892857164144516, -0.5892857313156128, 0.7267857193946838, -0.1339285671710968, 0.0892857164144516, -0.1339285671710968, 0.02678571455180645, 7.0, 0.761904776096344, -0.4642857015132904, 0.0595238097012043, -0.4642857015132904, 0.4642857015132904, -0.0714285746216774, 0.0595238097012043, -0.0714285746216774, 0.011904762126505375, 8.0, 0.7083333134651184, -0.375, 0.0416666679084301, -0.375, 0.3154761791229248, -0.0416666679084301,0.0416666679084301, -0.0416666679084301, 0.0059523810632526875, 9.0, 0.6606060862541199, -0.30909091234207153, 0.03030303120613098, -0.30909091234207153, 0.22445887327194214, -0.025974025949835777, 0.03030303120613098, -0.025974025949835777, 0.003246753243729472, 10.0, 0.6181818246841431, -0.2590909004211426, 0.022727273404598236, -0.2590909004211426, 0.16553030908107758, -0.017045455053448677, 0.022727273404598236,-0.017045455053448677, 0.0018939394503831863, 11.0, 0.5804196000099182, -0.220279723405838, 0.017482517287135124, -0.220279723405838, 0.12564103305339813, -0.011655011214315891, 0.017482517287135124, -0.011655011214315891, 0.0011655011912807822, 12.0, 0.5467032790184021, -0.1895604431629181, 0.01373626384884119, -0.1895604431629181, 0.09765234589576721, -0.008241758681833744, 0.01373626384884119, -0.008241758681833744, 0.0007492507575079799, 13.0, 0.5164835453033447, -0.16483516991138458, 0.010989011265337467, -0.16483516991138458, 0.07742257416248322, -0.005994006060063839, 0.010989011265337467, -0.005994006060063839, 0.0004995004856027663, 14.0, 0.4892857074737549, -0.14464285969734192, 0.008928571827709675, -0.14464285969734192, 0.06243131682276726, -0.004464285913854837, 0.008928571827709675, -0.004464285913854837, 0.00034340660204179585, 15.0, 0.4647058844566345, -0.12794117629528046, 0.007352941203862429, -0.12794117629528046, 0.05108274146914482, -0.003393665188923478, 0.007352941203862429, -0.003393665188923478, 0.00024240465427283198, 16.0, 0.4424019753932953, -0.11397058516740799, 0.006127451080828905, -0.11397058516740799, 0.04233193397521973, -0.0026260504964739084, 0.006127451080828905, -0.0026260504964739084, 0.00017507003212813288, 17.0, 0.42208462953567505, -0.10216718167066574, 0.005159958731383085, -0.10216718167066574, 0.03547471761703491, -0.0020639835856854916, 0.005159958731383085, -0.0020639835856854916, 0.00012899897410534322, 18.0, 0.4035087823867798, -0.09210526198148727, 0.004385964944958687, -0.09210526198148727, 0.030024509876966476, -0.0016447368543595076, 0.004385964944958687, -0.0016447368543595076, 9.67492233030498e-05, 19.0, 0.3864661753177643, -0.08345864713191986, 0.003759398590773344, -0.08345864713191986, 0.02563762292265892, -0.0013268465409055352, 0.003759398590773344, -0.0013268465409055352, 7.371369429165497e-05, 20.0, 0.37077921628952026, -0.07597402483224869, 0.003246753243729472, -0.07597402483224869, 0.022066529840230942, -0.0010822510812431574, 0.003246753243729472, -0.0010822510812431574, 5.696058360626921e-05, 21.0, 0.3562958836555481, -0.06945228576660156, 0.0028232636395841837, -0.06945228576660156, 0.019129840657114983, -0.0008915569633245468, 0.0028232636395841837, -0.0008915569633245468, 4.4577845983440056e-05, 22.0, 0.3428853750228882, -0.06373517960309982, 0.002470355713739991, -0.06373517960309982, 0.016692547127604485, -0.000741106690838933, 0.002470355713739991, -0.000741106690838933, 3.5290795494802296e-05, 23.0, 0.33043476939201355, -0.05869565159082413,0.0021739129442721605, -0.05869565159082413, 0.014652738347649574, -0.0006211180007085204, 0.0021739129442721605, -0.0006211180007085204, 2.8232636395841837e-05, 24.0, 0.3188461661338806, -0.054230768233537674, 0.001923076924867928, -0.054230768233537674, 0.012932502664625645, -0.0005244755302555859, 0.001923076924867928, -0.0005244755302555859, 2.28032840823289e-05, 25.0, 0.30803418159484863, -0.050256408751010895, 0.0017094017239287496,-0.050256408751010895, 0.011471572332084179, -0.00044593086931854486, 0.0017094017239287496, -0.00044593086931854486, 1.8580452888272703e-05, 26.0, 0.29792430996894836, -0.04670329764485359, 0.001526251551695168, -0.04670329764485359, 0.010222832672297955, -0.000381562887923792, 0.001526251551695168, -0.000381562887923792, 1.5262516171787865e-05, 27.0, 0.28845101594924927, -0.043513957411050797, 0.0013683633878827095, -0.043513957411050797, 0.009149088524281979, -0.0003284072154201567, 0.0013683633878827095, -0.0003284072154201567, 1.2631046956812497e-05, 28.0, 0.27955666184425354, -0.040640395134687424, 0.001231527072377503, -0.040640395134687424, 0.008220706135034561, -0.00028419855516403913, 0.001231527072377503, -0.00028419855516403913, 1.0525872312427964e-05, 29.0, 0.27119022607803345, -0.03804226964712143, 0.0011123470030725002, -0.03804226964712143, 0.007413881365209818, -0.00024718823260627687, 0.0011123470030725002, -0.00024718823260627687, 8.828151294437703e-06, 30.0, 0.2633064389228821, -0.03568548336625099, 0.0010080644860863686, -0.03568548336625099, 0.006709339562803507, -0.00021601382468361408, 0.0010080644860863686, -0.00021601382468361408, 7.4487525125732645e-06, 31.0, 0.25586509704589844, -0.033541057258844376, 0.0009164222865365446, -0.033541057258844376, 0.0060913641937077045, -0.00018960461602546275, 0.0009164222865365446, -0.00018960461602546275, 6.320153715932975e-06, 32.0, 0.24883021414279938, -0.031584225594997406, 0.0008355614845640957, -0.031584225594997406, 0.005547050386667252, -0.00016711230273358524, 0.0008355614845640957, -0.00016711230273358524, 5.390719252318377e-06, 33.0, 0.242169588804245, -0.029793735593557358, 0.0007639419636689126, -0.029793735593557358, 0.005065735895186663, -0.00014785972598474473,0.0007639419636689126, -0.00014785972598474473, 4.620616437023273e-06, 34.0, 0.2358543425798416, -0.028151260688900948, 0.0007002801285125315, -0.028151260688900948, 0.004638560116291046, -0.00013130252773407847, 0.0007002801285125315, -0.00013130252773407847, 3.97886424252647e-06, 35.0, 0.2298584282398224, -0.02664092741906643, 0.000643500650767237, -0.02664092741906643, 0.004258116241544485, -0.00011700011964421719, 0.000643500650767237,-0.00011700011964421719, 3.441179842411657e-06, 36.0, 0.2241583615541458, -0.025248933583498, 0.0005926979356445372, -0.025248933583498, 0.003918181639164686, -0.00010459376062499359, 0.0005926979356445372, -0.00010459376062499359, 2.9883931347285397e-06, 37.0, 0.21873290836811066, -0.023963235318660736, 0.0005471057957038283, -0.023963235318660736, 0.003613503649830818, -9.378956747241318e-05, 0.0005471057957038283, -9.378956747241318e-05, 2.6052657631225884e-06, 38.0, 0.2135627567768097, -0.02277327887713909, 0.0005060728872194886, -0.02277327887713909, 0.0033396249637007713, -8.43454763526097e-05, 0.0005060728872194886, -8.43454763526097e-05, 2.279607542732265e-06, 39.0, 0.20863039791584015, -0.021669793874025345, 0.0004690431524068117, -0.021669793874025345, 0.0030927490442991257, -7.60610491852276e-05, 0.0004690431524068117, -7.60610491852276e-05, 2.0016066173411673e-06, 40.0, 0.20391985774040222, -0.020644599571824074, 0.0004355400742497295, -0.020644599571824074, 0.0028696272056549788, -6.876948464196175e-05, 0.0004355400742497295, -6.876948464196175e-05, 1.7633201423450373e-06, 41.0, 0.19941657781600952, -0.019690463319420815, 0.0004051535506732762, -0.019690463319420815, 0.0026674687396734953, -6.233131716726348e-05, 0.0004051535506732762, -6.233131716726348e-05, 1.5582828609694843e-06, 42.0, 0.19510722160339355, -0.018800966441631317, 0.0003775294462684542, -0.018800966441631317, 0.002483867574483156, -5.662941839545965e-05, 0.0003775294462684542, -5.662941839545965e-05, 1.3812052657158347e-06, 43.0, 0.19097957015037537, -0.017970401793718338, 0.00035236080293543637, -0.017970401793718338, 0.0023167417384684086, -5.15649990120437e-05, 0.00035236080293543637, -5.15649990120437e-05, 1.2277380392333725e-06, 44.0, 0.187022402882576, -0.01719367504119873, 0.0003293807676527649, -0.01719367504119873, 0.00216428330168128, -4.705439641838893e-05, 0.0003293807676527649, -4.705439641838893e-05, 1.094288222702744e-06, 45.0, 0.18322540819644928, -0.016466235741972923, 0.00030835645156912506, -0.016466235741972923, 0.0020249176304787397, -4.30264844908379e-05, 0.00030835645156912506, -4.30264844908379e-05, 9.77874606178375e-07, 46.0, 0.17957909405231476, -0.015783995389938354, 0.00028908418607898057, -0.015783995389938354, 0.0018972682300955057, -3.9420570828951895e-05, 0.00028908418607898057, -3.9420570828951895e-05, 8.760126775086974e-07, 47.0, 0.17607468366622925, -0.015143291093409061, 0.00027138515724800527, -0.015143291093409061, 0.0017801292706280947, -3.618468690547161e-05, 0.00027138515724800527, -3.618468690547161e-05, 7.866236160225526e-07, 48.0, 0.1727040857076645, -0.01454081665724516,0.00025510202976875007, -0.01454081665724516, 0.001672440441325307, -3.3274180168518797e-05, 0.00025510202976875007, -3.3274180168518797e-05, 7.079612487359555e-07, 49.0, 0.16945978999137878, -0.013973589055240154, 0.00024009603657759726, -0.013973589055240154, 0.001573267625644803, -3.065055716433562e-05, 0.00024009603657759726, -3.065055716433562e-05, 6.385532742569922e-07, 50.0, 0.1663348376750946, -0.013438913971185684, 0.0002262443449581042,-0.013438913971185684, 0.0014817849732935429, -2.8280543119763024e-05, 0.0002262443449581042, -2.8280543119763024e-05, 5.771539122179092e-07, 51.0, 0.1633228063583374, -0.012934346683323383, 0.000213438062928617, -0.012934346683323383, 0.0013972613960504532, -2.613527249195613e-05, 0.000213438062928617, -2.613527249195613e-05, 5.227054771239636e-07, 52.0, 0.16041767597198486, -0.012457667849957943, 0.00020158039114903659, -0.012457667849957943, 0.001319047180004418, -2.4189646865124814e-05, 0.00020158039114903659, -2.4189646865124814e-05, 4.7430680183424556e-07, 53.0, 0.1576138734817505, -0.01200686115771532, 0.00019058509496971965, -0.01200686115771532, 0.00124656455591321, -2.2421776520786807e-05, 0.00019058509496971965, -2.2421776520786807e-05, 4.311879990837042e-07, 54.0, 0.15490619838237762, -0.011580086313188076, 0.0001803751802071929, -0.011580086313188076, 0.001179297687485814, -2.0812520233448595e-05, 0.0001803751802071929, -2.0812520233448595e-05, 3.926890599359467e-07, 55.0, 0.15228982269763947, -0.011175666004419327, 0.00017088174354285002, -0.011175666004419327, 0.0011167856864631176, -1.9345103282830678e-05, 0.00017088174354285002, -1.9345103282830678e-05, 3.582426586490328e-07, 56.0, 0.1497601717710495, -0.010792066343128681, 0.00016204304120037705, -0.010792066343128681, 0.0010586157441139221, -1.8004782759817317e-05, 0.00016204304120037705, -1.8004782759817317e-05, 3.273596860253747e-07, 57.0, 0.14731305837631226, -0.010427881963551044, 0.00015380355762317777, -0.010427881963551044, 0.0010044171940535307, -1.6778571080067195e-05, 0.00015380355762317777, -1.6778571080067195e-05, 2.996173407154856e-07, 58.0, 0.1449444741010666, -0.010081823915243149, 0.00014611337974201888, -0.010081823915243149, 0.0009538567392155528, -1.5655004972359166e-05,0.00014611337974201888, -1.5655004972359166e-05, 2.7464921004138887e-07, 59.0, 0.14265073835849762, -0.009752709418535233, 0.00013892748393118382, -0.009752709418535233, 0.0009066342026926577, -1.4623945389757864e-05, 0.00013892748393118382, -1.4623945389757864e-05, 2.521369992791733e-07, 60.0, 0.1404283493757248, -0.00943944975733757, 0.00013220518303569406, -0.00943944975733757, 0.0008624785114079714, -1.3676398339157458e-05, 0.00013220518303569406,-1.3676398339157458e-05, 2.318033551773624e-07, 61.0, 0.13827402889728546, -0.00914104375988245, 0.00012590970436576754, -0.00914104375988245, 0.0008211446111090481, -1.2804375728592277e-05, 0.00012590970436576754, -1.2804375728592277e-05, 2.1340626688015618e-07, 62.0, 0.1361847221851349, -0.008856566622853279, 0.0001200076803797856, -0.008856566622853279, 0.0007824107306078076, -1.200076803797856e-05, 0.0001200076803797856, -1.200076803797856e-05, 1.967339073871699e-07, 63.0, 0.13415750861167908, -0.00858516525477171, 0.00011446886492194608, -0.00858516525477171, 0.0007460754713974893, -1.1259232451266143e-05, 0.00011446886492194608, -1.1259232451266143e-05, 1.8160052661642112e-07, 64.0, 0.13218969106674194, -0.008326048962771893, 0.00010926573304459453, -0.008326048962771893, 0.0007119560614228249, -1.0574103725957684e-05, 0.00010926573304459453, -1.0574103725957684e-05, 1.6784291290150577e-07, 65.0, 0.13027867674827576, -0.008078488521277905, 0.00010437324090162292, -0.008078488521277905, 0.0006798860267736018, -9.940308700606693e-06, 0.00010437324090162292, -9.940308700606693e-06, 1.5531732344697957e-07, 66.0, 0.1284220665693283, -0.007841806858778, 9.976853471016511e-05, -0.007841806858778, 0.0006497137947008014, -9.353299901704304e-06, 9.976853471016511e-05, -9.353299901704304e-06, 1.4389692637450935e-07, 67.0, 0.12661755084991455, -0.0076153757981956005, 9.543077612761408e-05, -0.0076153757981956005, 0.0006213010638020933, -8.80899460753426e-06, 9.543077612761408e-05, -8.80899460753426e-06, 1.3346961225124687e-07, 68.0, 0.12486299127340317, -0.0073986114002764225, 9.134088759310544e-05, -0.0073986114002764225, 0.0005945213488303125, -8.303716640511993e-06, 9.134088759310544e-05, -8.303716640511993e-06, 1.239360756244423e-07, 69.0, 0.12315633147954941, -0.007190972100943327, 8.748140680836514e-05, -0.007190972100943327, 0.000569258991163224, -7.834156349417754e-06, 8.748140680836514e-05, -7.834156349417754e-06, 1.1520818077315198e-07, 70.0, 0.12149564176797867, -0.00699195172637701, 8.383634849451482e-05, -0.00699195172637701, 0.0005454079946503043, -7.397325134661514e-06, 8.383634849451482e-05, -7.397325134661514e-06, 1.072076116770404e-07, 71.0, 0.1198790892958641, -0.006801080424338579, 8.039102249313146e-05, -0.006801080424338579, 0.0005228712107054889, -6.990523615968414e-06, 8.039102249313146e-05, -6.990523615968414e-06, 9.986462146116537e-08, 72.0, 0.11830494552850723, -0.006617919076234102, 7.713192462688312e-05, -0.006617919076234102, 0.0005015592905692756, -6.611307981074788e-06, 7.713192462688312e-05, -6.611307981074788e-06, 9.31170163198658e-08, 73.0, 0.11677156388759613, -0.006442058365792036,7.404664938803762e-05, -0.006442058365792036, 0.00048139013233594596, -6.257463155634468e-06, 7.404664938803762e-05, -6.257463155634468e-06, 8.690921049492317e-08, 74.0, 0.11527737975120544, -0.006273115053772926, 7.112375897122547e-05, -0.006273115053772926, 0.0004622881824616343, -5.926979611103889e-06, 7.112375897122547e-05, -5.926979611103889e-06, 8.119150152197108e-08, 75.0, 0.11382091790437698, -0.006110731512308121, 6.83527032379061e-05,-0.006110731512308121, 0.0004441837372723967, -5.618030172627186e-06, 6.83527032379061e-05, -5.618030172627186e-06, 7.591932416062264e-08, 76.0, 0.11240075528621674, -0.005954571533948183, 6.572374695679173e-05, -0.005954571533948183, 0.0004270125355105847, -5.328952738636872e-06, 6.572374695679173e-05, -5.328952738636872e-06, 7.105270327656399e-08, 77.0, 0.11101556569337845, -0.0058043221943080425, 6.322791159618646e-05, -0.0058043221943080425, 0.0004107152053620666, -5.058233000454493e-06, 6.322791159618646e-05, -5.058233000454493e-06, 6.655569961822039e-08, 78.0, 0.10966406762599945, -0.005659688264131546, 6.085686618462205e-05, -0.005659688264131546, 0.00039523682789877057, -4.8044894356280565e-06, 6.085686618462205e-05, -4.8044894356280565e-06, 6.239596217483268e-08, 79.0, 0.10834505409002304, -0.00552039360627532, 5.860290548298508e-05, -0.00552039360627532, 0.00038052664604038, -4.566460120258853e-06, 5.860290548298508e-05, -4.566460120258853e-06, 5.854436224694837e-08, 80.0, 0.1070573627948761, -0.005386178847402334, 5.645889905281365e-05, -0.005386178847402334, 0.00036653754068538547, -4.342992269812385e-06, 5.645889905281365e-05, -4.342992269812385e-06, 5.497458488434859e-08, 81.0, 0.10579989105463028, -0.005256799515336752, 5.441821485874243e-05, -0.005256799515336752, 0.0003532258851919323, -4.133029051445192e-06, 5.441821485874243e-05, -4.133029051445192e-06, 5.166286243252216e-08, 82.0, 0.10457159578800201, -0.005132026504725218, 5.2474708354566246e-05, -0.005132026504725218, 0.00034055113792419434, -3.935603217541939e-06, 5.2474708354566246e-05, -3.935603217541939e-06, 4.858769031557131e-08, 83.0, 0.10337147116661072, -0.005011643283069134, 5.062265699962154e-05, -0.005011643283069134, 0.00032847566762939095, -3.749826646526344e-06,5.062265699962154e-05, -3.749826646526344e-06, 4.5729592557108845e-08, 84.0, 0.10219855606555939, -0.004895446356385946, 4.8856752982828766e-05, -0.004895446356385946, 0.0003169644623994827, -3.574884203771944e-06, 4.8856752982828766e-05, -3.574884203771944e-06, 4.307089440658274e-08, 85.0, 0.1010519340634346, -0.004783244337886572, 4.717203773907386e-05, -0.004783244337886572, 0.00030598495504818857, -3.4100266930181533e-06, 4.717203773907386e-05,-3.4100266930181533e-06, 4.0595555361733204e-08, 86.0, 0.09993074089288712, -0.004674856085330248, 4.556389831122942e-05, -0.004674856085330248, 0.00029550676117651165, -3.254564262533677e-06, 4.556389831122942e-05, -3.254564262533677e-06, 3.828899153290877e-08, 87.0, 0.09883413463830948, -0.004570110235363245, 4.4028038246324286e-05, -0.004570110235363245, 0.00028550165006890893, -3.107861402895651e-06, 4.4028038246324286e-05, -3.107861402895651e-06, 3.613792287637807e-08, 88.0, 0.09776131808757782, -0.004468845669180155, 4.256043757777661e-05, -0.004468845669180155, 0.00027594316634349525, -2.969332626889809e-06, 4.256043757777661e-05, -2.969332626889809e-06, 3.4130259507492156e-08, 89.0, 0.09671153128147125, -0.004370910115540028, 4.1157345549436286e-05, -0.004370910115540028, 0.0002668066881597042, -2.838437467289623e-06, 4.1157345549436286e-05, -2.838437467289623e-06, 3.2254973802992026e-08, 90.0, 0.09568402916193008, -0.004276158753782511, 3.981525878771208e-05, -0.004276158753782511, 0.00025806916528381407, -2.714676611503819e-06, 3.981525878771208e-05, -2.714676611503819e-06, 3.050198316145725e-08, 91.0, 0.0946781113743782, -0.004184455145150423, 3.853089583572e-05, -0.004184455145150423, 0.00024970906088128686, -2.5975882635975722e-06, 3.853089583572e-05, -2.5975882635975722e-06, 2.886209315988708e-08, 92.0, 0.09369311481714249, -0.00409567030146718, 3.730118623934686e-05, -0.00409567030146718, 0.00024170620599761605, -2.4867456431820756e-06, 3.730118623934686e-05, -2.4867456431820756e-06, 2.7326874985078575e-08, 93.0, 0.092728391289711, -0.004009680822491646, 3.612325235735625e-05, -0.004009680822491646, 0.0002340417413506657, -2.3817528926883824e-06, 3.612325235735625e-05, -2.3817528926883824e-06, 2.5888619248348732e-08, 94.0, 0.0917833149433136, -0.003926371689885855, 3.499440208543092e-05, -0.003926371689885855, 0.00022669794270768762, -2.2822434857516782e-06, 3.499440208543092e-05, -2.2822434857516782e-06, 2.454025249676306e-08, 95.0, 0.09085729718208313, -0.0038456320762634277, 3.391209975234233e-05, -0.0038456320762634277, 0.00021965823543723673, -2.1878774987271754e-06, 3.391209975234233e-05, -2.1878774987271754e-06, 2.3275291027857747e-08, 96.0, 0.08994977176189423, -0.0037673574406653643, 3.287397339590825e-05, -0.0037673574406653643, 0.0002129070198861882, -2.098338882206008e-06, 3.287397339590825e-05, -2.098338882206008e-06, 2.2087776940793447e-08, 97.0, 0.08906017988920212, -0.003691448364406824, 3.187779293511994e-05, -0.003691448364406824, 0.00020642968593165278, -2.0133343241468538e-06, 3.187779293511994e-05, -2.0133343241468538e-06, 2.0972231951077447e-08, 98.0, 0.08818800002336502, -0.003617810783907771,3.092145925620571e-05, -0.003617810783907771, 0.00020021246746182442, -1.9325912035128567e-06, 3.092145925620571e-05, -1.9325912035128567e-06, 1.992362008707005e-08, 99.0, 0.08733273297548294, -0.003546354593709111, 3.0003000574652106e-05, -0.003546354593709111, 0.00019424244237598032, -1.8558556575953844e-06, 3.0003000574652106e-05, -1.8558556575953844e-06, 1.8937303281063578e-08, 100.0, 0.08649388700723648, -0.0034769948106259108, 2.9120559702278115e-05,-0.0034769948106259108, 0.00018850744527298957, -1.7828913314588135e-06, 2.9120559702278115e-05, -1.7828913314588135e-06, 1.800900406578876e-08, 101.0, 0.08567098528146744, -0.003409649943932891, 2.8272386771277525e-05, -0.003409649943932891, 0.00018299602379556745, -1.7134780136984773e-06, 2.8272386771277525e-05, -1.7134780136984773e-06, 1.713478070541896e-08, 102.0, 0.08486359566450119, -0.003344242926687002, 2.745683741522953e-05, -0.003344242926687002, 0.00017769739497452974, -1.6474102721986128e-06, 2.745683741522953e-05, -1.6474102721986128e-06, 1.6310993444790256e-08, 103.0, 0.08407127112150192, -0.0032806999515742064, 2.6672356398194097e-05, -0.0032806999515742064, 0.00017260137246921659, -1.5844964309508214e-06, 2.6672356398194097e-05, -1.5844964309508214e-06, 1.5534279640405657e-08, 104.0, 0.08329359441995621, -0.0032189509365707636, 2.5917479433701374e-05, -0.0032189509365707636, 0.00016769836656749249, -1.5245575468725292e-06, 2.5917479433701374e-05, -1.5245575468725292e-06, 1.4801529779617795e-08, 105.0, 0.08253016322851181, -0.0031589288264513016, 2.5190820451825857e-05, -0.0031589288264513016, 0.00016297934053000063, -1.4674263866254478e-06, 2.5190820451825857e-05, -1.4674263866254478e-06, 1.410986971706052e-08, 106.0, 0.08178059756755829, -0.003100570058450103, 2.4491075237165205e-05, -0.003100570058450103, 0.0001584357232786715, -1.4129466308077099e-06, 2.4491075237165205e-05, -1.4129466308077099e-06, 1.345663491747473e-08, 107.0, 0.0810445174574852, -0.0030438138637691736, 2.381700869591441e-05, -0.0030438138637691736, 0.0001540594530524686, -1.3609719644591678e-06, 2.381700869591441e-05, -1.3609719644591678e-06, 1.28393580212105e-08, 108.0, 0.08032156527042389, -0.0029886015690863132, 2.31674548558658e-05, -0.0029886015690863132, 0.00014984289009589702, -1.311365394940367e-06,2.31674548558658e-05, -1.311365394940367e-06, 1.2255751080658683e-08, 109.0, 0.0796113908290863, -0.0029348782263696194, 2.2541307771462016e-05, -0.0029348782263696194, 0.0001457788166590035, -1.2639985698115197e-06, 2.2541307771462016e-05, -1.2639985698115197e-06, 1.1703689573039355e-08, 110.0, 0.07891365140676498, -0.0028825902845710516, 2.1937521523796022e-05, -0.0028825902845710516, 0.00014186040789354593, -1.2187512083983165e-06, 2.1937521523796022e-05,-1.2187512083983165e-06, 1.1181203518617622e-08, 111.0, 0.07822804152965546, -0.0028316874522715807, 2.1355110220611095e-05, -0.0028316874522715807, 0.00013808117364533246, -1.1755106470445753e-06, 2.1355110220611095e-05, -1.1755106470445753e-06, 1.0686460605313641e-08, 112.0, 0.07755422592163086, -0.0027821213006973267, 2.0793133444385603e-05, -0.0027821213006973267, 0.0001344350166618824, -1.1341709296175395e-06, 2.0793133444385603e-05, -1.1341709296175395e-06, 1.021775553056159e-08, 113.0, 0.07689192146062851, -0.002733845030888915, 2.0250703528290614e-05, -0.002733845030888915, 0.00013091610162518919, -1.0946325801342027e-06, 2.0250703528290614e-05, -1.0946325801342027e-06, 9.773505560417561e-09, 114.0, 0.07624083012342453, -0.0026868144050240517, 1.9726978280232288e-05, -0.0026868144050240517, 0.00012751895701512694, -1.0568023753876332e-06, 1.9726978280232288e-05, -1.0568023753876332e-06, 9.352233654169595e-09, 115.0, 0.07560066133737564, -0.002640987280756235, 1.9221159163862467e-05, -0.002640987280756235, 0.00012423832959029824, -1.02059254913911e-06, 1.9221159163862467e-05, -1.02059254913911e-06, 8.952565799802414e-09, 116.0, 0.07497115433216095, -0.0025963224470615387, 1.873248584161047e-05, -0.0025963224470615387, 0.00012106929352739826, -9.859202236839337e-07, 1.873248584161047e-05, -9.859202236839337e-07, 8.573219467677973e-09, 117.0, 0.07435203343629837, -0.002552781254053116, 1.826023799367249e-05, -0.002552781254053116, 0.00011800712672993541, -9.527080351290351e-07, 1.826023799367249e-05, -9.527080351290351e-07, 8.213000057821773e-09, 118.0, 0.0737430602312088, -0.0025103262159973383, 1.7803731680032797e-05, -0.0025103262159973383, 0.00011504736903589219, -9.208826554640837e-07, 1.7803731680032797e-05, -9.208826554640837e-07, 7.870792018138673e-09, 119.0, 0.07314396649599075, -0.0024689214769750834, 1.7362317521474324e-05, -0.0024689214769750834, 0.00011218577128602192, -8.903752473088389e-07, 1.7362317521474324e-05, -8.903752473088389e-07, 7.545552627163943e-09, 120.0, 0.07255452871322632, -0.002428532810881734, 1.6935375242610462e-05, -0.002428532810881734, 0.00010941829532384872, -8.611207249487052e-07, 1.6935375242610462e-05, -8.611207249487052e-07, 7.2363088854388025e-09, 121.0, 0.07197451591491699, -0.0023891269229352474, 1.6522317309863865e-05, -0.0023891269229352474, 0.00010674110671970993, -8.330579817084072e-07, 1.6522317309863865e-05, -8.330579817084072e-07, 6.942149965993849e-09, 122.0, 0.07140369713306427, -0.0023506726138293743, 1.6122583474498242e-05, -0.0023506726138293743, 0.00010415055294288322, -8.061291509875446e-07, 1.6122583474498242e-05, -8.061291509875446e-07, 6.6622245498138e-09, 123.0, 0.07084185630083084, -0.0023131391499191523,1.5735640772618353e-05, -0.0023131391499191523, 0.00010164316336158663, -7.802797199474298e-07, 1.5735640772618353e-05, -7.802797199474298e-07, 6.395735496766974e-09, 124.0, 0.07028878480195999, -0.002276497660204768, 1.5360983525170013e-05, -0.002276497660204768, 9.921561286319047e-05, -7.554581884505751e-07, 1.5360983525170013e-05, -7.554581884505751e-07, 6.141936292891614e-09, 125.0, 0.0697442814707756, -0.00224071997217834, 1.4998125152487773e-05,-0.00224071997217834, 9.686475823400542e-05, -7.316158416870167e-07, 1.4998125152487773e-05, -7.316158416870167e-07, 5.900127941771416e-09, 126.0, 0.06920814514160156, -0.0022057790774852037, 1.4646606359747238e-05, -0.0022057790774852037, 9.458759450353682e-05, -7.08706750174315e-07, 1.4646606359747238e-05, -7.08706750174315e-07, 5.6696540795542205e-09, 127.0, 0.06868018954992294, -0.0021716488990932703, 1.4305987861007452e-05, -0.0021716488990932703, 9.238125494448468e-05, -6.866874286970415e-07, 1.4305987861007452e-05, -6.866874286970415e-07, 5.449900086773596e-09, 128.0, 0.06816022098064423, -0.002138304989784956, 1.3975849469716195e-05, -0.002138304989784956, 9.024301107274368e-05, -6.655166657765221e-07, 1.3975849469716195e-05, -6.655166657765221e-07, 5.240288647456737e-09, 129.0, 0.06764806061983109, -0.0021057231351733208, 1.365579191769939e-05, -0.0021057231351733208, 8.817025081953034e-05, -6.451555236708373e-07, 1.365579191769939e-05, -6.451555236708373e-07, 5.040277528678416e-09, 130.0, 0.06714354455471039, -0.002073880285024643, 1.334543321718229e-05, -0.002073880285024643, 8.616048580734059e-05, -6.255671678445651e-07, 1.334543321718229e-05, -6.255671678445651e-07, 4.849357804204146e-09, 131.0, 0.06664649397134781, -0.0020427543204277754, 1.3044408660789486e-05, -0.0020427543204277754, 8.421133679803461e-05, -6.067166964385251e-07, 1.3044408660789486e-05, -6.067166964385251e-07, 4.667051189954918e-09, 132.0, 0.06615674495697021, -0.002012323820963502, 1.2752369002555497e-05, -0.002012323820963502, 8.232054824475199e-05, -5.885709128961025e-07, 1.2752369002555497e-05, -5.885709128961025e-07, 4.492907379471944e-09, 133.0, 0.06567413359880447, -0.001982568297535181, 1.2468983186408877e-05, -0.001982568297535181, 8.04859446361661e-05, -5.710984964935051e-07,1.2468983186408877e-05, -5.710984964935051e-07, 4.326503599827447e-09, 134.0, 0.06519851833581924, -0.001953467959538102, 1.2193931979709305e-05, -0.001953467959538102, 7.87054596003145e-05, -5.542696612792497e-07, 1.2193931979709305e-05, -5.542696612792497e-07, 4.167441058910981e-09, 135.0, 0.0647297352552414, -0.0019250035984441638, 1.1926911611226387e-05, -0.0019250035984441638, 7.697709952481091e-05, -5.380561560741626e-07, 1.1926911611226387e-05,-5.380561560741626e-07, 4.015344501340223e-09, 136.0, 0.06426764279603958, -0.0018971568206325173, 1.1667631042655557e-05, -0.0018971568206325173, 7.529897993663326e-05, -5.224312644713791e-07, 1.1667631042655557e-05, -5.224312644713791e-07, 3.869860876193343e-09, 137.0, 0.06381210684776306, -0.001869909930974245, 1.1415811968618073e-05, -0.001869909930974245, 7.366929639829323e-05, -5.07369406932412e-07, 1.1415811968618073e-05, -5.07369406932412e-07, 3.730657560652162e-09, 138.0, 0.0633629709482193, -0.0018432459328323603, 1.1171186997671612e-05, -0.0018432459328323603, 7.20862954040058e-05, -4.928464818476641e-07, 1.1171186997671612e-05, -4.928464818476641e-07, 3.597419695466897e-09, 139.0, 0.06292012333869934, -0.0018171480624005198, 1.093350238079438e-05, -0.0018171480624005198, 7.054833258735016e-05, -4.788395244759158e-07, 1.093350238079438e-05, -4.788395244759158e-07, 3.4698515172237876e-09, 140.0, 0.06248341128230095, -0.001791600720025599, 1.0702512554416899e-05, -0.001791600720025599, 6.90538072376512e-05, -4.653266501009057e-07, 1.0702512554416899e-05, -4.653266501009057e-07, 3.3476736938098384e-09, 141.0, 0.06205271929502487, -0.001766588189639151, 1.0477984687895514e-05, -0.001766588189639151, 6.760119867976755e-05, -4.522871108747495e-07, 1.0477984687895514e-05, -4.522871108747495e-07, 3.2306222141897933e-09, 142.0, 0.06162792444229126, -0.0017420959193259478, 1.0259693226544186e-05, -0.0017420959193259478, 6.618905172217637e-05, -4.397011537093931e-07, 1.0259693226544186e-05, -4.397011537093931e-07, 3.1184477222723217e-09, 143.0, 0.06120890751481056, -0.0017181094735860825, 1.0047423529613297e-05, -0.0017181094735860825, 6.481596938101575e-05, -4.275499634331936e-07, 1.0047423529613297e-05, -4.275499634331936e-07, 3.010915072820808e-09, 144.0, 0.06079554557800293, -0.0016946149989962578, 9.840970051300246e-06, -0.0016946149989962578, 6.348060560412705e-05, -4.158156343692099e-07, 9.840970051300246e-06, -4.158156343692099e-07, 2.907801555096512e-09, 145.0, 0.06038772687315941, -0.0016715992242097855, 9.640133612265345e-06, -0.0016715992242097855, 6.218167254701257e-05, -4.0448114191349305e-07, 9.640133612265345e-06, -4.0448114191349305e-07, 2.80889689285857e-09, 146.0, 0.05998534336686134, -0.0016490491107106209, 9.444725947105326e-06, -0.0016490491107106209, 6.09179369348567e-05, -3.9353022884824895e-07, 9.444725947105326e-06, -3.9353022884824895e-07, 2.7140016900517594e-09, 147.0, 0.05958828330039978, -0.0016269522020593286, 9.254563337890431e-06, -0.0016269522020593286, 5.968822006252594e-05, -3.829474621852569e-07, 9.254563337890431e-06, -3.829474621852569e-07, 2.6229276528511036e-09, 148.0, 0.05919644609093666, -0.0016052966238930821,9.069472071132623e-06, -0.0016052966238930821, 5.849137596669607e-05, -3.727180342139036e-07, 9.069472071132623e-06, -3.727180342139036e-07, 2.5354969235280578e-09, 149.0, 0.05880972370505333, -0.0015840703854337335, 8.889283890312072e-06, -0.0015840703854337335, 5.732632052968256e-05, -3.6282790460973047e-07, 8.889283890312072e-06, -3.6282790460973047e-07, 2.451540082049064e-09, 150.0, 0.058428023010492325, -0.001563262427225709, 8.713837814866565e-06,-0.001563262427225709, 5.619200237561017e-05, -3.532636867475958e-07, 8.713837814866565e-06, -3.532636867475958e-07, 2.3708972562985764e-09, 151.0, 0.05805124342441559, -0.001542861806228757, 8.5429783212021e-06, -0.001542861806228757, 5.5087417422328144e-05, -3.44012534014837e-07, 8.5429783212021e-06, -3.44012534014837e-07, 2.293417011856036e-09, 152.0, 0.05767929181456566, -0.001522857928648591, 8.376556252187584e-06, -0.001522857928648591, 5.4011590691516176e-05, -3.350622534981085e-07, 8.376556252187584e-06, -3.350622534981085e-07, 2.2189552417728464e-09, 153.0, 0.057312075048685074, -0.0015032405499368906, 8.214429726649541e-06, -0.0015032405499368906, 5.296360177453607e-05, -3.264011638748343e-07, 8.214429726649541e-06, -3.264011638748343e-07, 2.1473760547507936e-09, 154.0, 0.05694950371980667, -0.0014839998912066221, 8.056459591898602e-06, -0.0014839998912066221, 5.194254845264368e-05, -3.180181522566272e-07, 8.056459591898602e-06, -3.180181522566272e-07, 2.0785499987852063e-09, 155.0, 0.05659148842096329, -0.0014651261735707521, 7.902514880697709e-06, -0.0014651261735707521, 5.0947572162840515e-05, -3.0990253208074137e-07, 7.902514880697709e-06, -3.0990253208074137e-07, 2.012354061164956e-09, 156.0, 0.05623794347047806, -0.0014466103166341782, 7.752466444799211e-06, -0.0014466103166341782, 4.9977850721916184e-05, -3.020441567969101e-07, 7.752466444799211e-06, -3.020441567969101e-07, 1.948672112561667e-09, 157.0, 0.055888790637254715, -0.0014284432400017977, 7.6061937761551235e-06, -0.0014284432400017977, 4.903258377453312e-05, -2.944333061805082e-07, 7.6061937761551235e-06, -2.944333061805082e-07, 1.8873931306728764e-09, 158.0, 0.055543944239616394, -0.0014106162125244737, 7.463577730959514e-06, -0.0014106162125244737, 4.8111003707163036e-05, -2.87060686332552e-07,7.463577730959514e-06, -2.87060686332552e-07, 1.8284119773781526e-09, 159.0, 0.055203329771757126, -0.0013931208522990346, 7.324505077122012e-06, -0.0013931208522990346, 4.72123792860657e-05, -2.7991737283628026e-07, 7.324505077122012e-06, -2.7991737283628026e-07, 1.7716289546498842e-09, 160.0, 0.054866861552000046, -0.0013759488938376307, 7.188865765783703e-06, -0.0013759488938376307, 4.633599382941611e-05, -2.729948960222828e-07, 7.188865765783703e-06,-2.729948960222828e-07, 1.7169491384194657e-09, 161.0, 0.05453447252511978, -0.0013590925373136997, 7.0565556598012336e-06, -0.0013590925373136997, 4.548116339719854e-05, -2.66285098859953e-07, 7.0565556598012336e-06, -2.66285098859953e-07, 1.6642819344880877e-09, 162.0, 0.054206084460020065, -0.001342544099316001, 6.927471986273304e-06, -0.001342544099316001, 4.4647236791206524e-05, -2.59780193800907e-07, 6.927471986273304e-06, -2.59780193800907e-07, 1.613541633638249e-09, 163.0, 0.053881626576185226, -0.0013262960128486156, 6.801517884014174e-06, -0.0013262960128486156, 4.38335700891912e-05, -2.53472734357274e-07, 6.801517884014174e-06, -2.53472734357274e-07, 1.564646412433035e-09, 164.0, 0.053561028093099594, -0.0013103411765769124, 6.678599220322212e-06, -0.0013103411765769124, 4.303955574869178e-05, -2.4735552983656817e-07, 6.678599220322212e-06, -2.4735552983656817e-07, 1.5175185552607218e-09, 165.0, 0.053244221955537796, -0.001294672372750938, 6.558624136232538e-06, -0.001294672372750938, 4.2264608055120334e-05, -2.4142175902852614e-07, 6.558624136232538e-06, -2.4142175902852614e-07, 1.4720838992232643e-09, 166.0, 0.05293114110827446, -0.00127928308211267, 6.441505775001133e-06, -0.00127928308211267, 4.150815220782533e-05, -2.3566485651826952e-07, 6.441505775001133e-06, -2.3566485651826952e-07, 1.4282718341362965e-09, 167.0, 0.05262172222137451, -0.0012641665525734425, 6.3271595536207315e-06, -0.0012641665525734425, 4.076963887200691e-05, -2.3007854110801418e-07, 6.3271595536207315e-06, -2.3007854110801418e-07, 1.386015302529131e-09, 168.0, 0.05231589823961258, -0.0012493162648752332, 6.215504072315525e-06, -0.0012493162648752332, 4.004854417871684e-05, -2.2465677318450616e-07, 6.215504072315525e-06, -2.2465677318450616e-07, 1.3452501335109446e-09, 169.0, 0.05201360583305359, -0.001234726165421307, 6.10646020504646e-06, -0.001234726165421307, 3.9344355172943324e-05, -2.193937689298764e-07, 6.10646020504646e-06, -2.193937689298764e-07, 1.3059152648153827e-09, 170.0, 0.051714785397052765, -0.0012203902006149292, 5.999952009005938e-06, -0.0012203902006149292, 3.865658072754741e-05, -2.1428400032164063e-07, 5.999952009005938e-06, -2.1428400032164063e-07, 1.2679526317782575e-09, 171.0, 0.05141938105225563, -0.0012063024332746863, 5.8959067246178165e-06, -0.0012063024332746863, 3.798474426730536e-05, -2.0932212407842599e-07, 5.8959067246178165e-06, -2.0932212407842599e-07, 1.2313066122260352e-09, 172.0, 0.05112732946872711, -0.0011924572754651308, 5.794252956548007e-06, -0.0011924572754651308, 3.732838376890868e-05, -2.045030527142444e-07, 5.794252956548007e-06, -2.045030527142444e-07, 1.1959242485204413e-09, 173.0, 0.05083857849240303, -0.001178849022835493,5.694922947441228e-06, -0.001178849022835493, 3.668706267490052e-05, -1.998218550625097e-07, 5.694922947441228e-06, -1.998218550625097e-07, 1.1617550255138553e-09, 174.0, 0.05055306851863861, -0.001165472436696291, 5.597850304184249e-06, -0.001165472436696291, 3.606034442782402e-05, -1.952738557520206e-07, 5.597850304184249e-06, -1.952738557520206e-07, 1.1287505374824036e-09, 175.0, 0.050270747393369675, -0.0011523222783580422, 5.502971816895297e-06,-0.0011523222783580422, 3.54478252120316e-05, -1.9085450730926823e-07, 5.502971816895297e-06, -1.9085450730926823e-07, 1.0968649322151691e-09, 176.0, 0.049991559237241745, -0.0011393933091312647, 5.41022473043995e-06, -0.0011393933091312647, 3.484909757389687e-05, -1.8655947542356444e-07, 5.41022473043995e-06, -1.8655947542356444e-07, 1.0660541338580742e-09, 177.0, 0.04971545562148094, -0.0011266808724030852, 5.319550837157294e-06, -0.0011266808724030852, 3.426377952564508e-05, -1.8238459631447768e-07, 5.319550837157294e-06, -1.8238459631447768e-07, 1.0362760649584857e-09, 178.0, 0.049442388117313385, -0.0011141798458993435, 5.2308914746390656e-06, -0.0011141798458993435, 3.3691496355459094e-05, -1.7832584831012355e-07, 5.2308914746390656e-06, -1.7832584831012355e-07, 1.0074906464652145e-09, 179.0, 0.0491723008453846, -0.00110188580583781, 5.144191618455807e-06, -0.00110188580583781, 3.313188790343702e-05, -1.7437938026887423e-07, 5.144191618455807e-06, -1.7437938026887423e-07, 9.796594646616086e-10, 180.0, 0.0489051453769207, -0.0010897942120209336, 5.059397153672762e-06, -0.0010897942120209336, 3.258460128563456e-05, -1.7054148315764905e-07, 5.059397153672762e-06, -1.7054148315764905e-07, 9.527456601432505e-10, 181.0, 0.04864088073372841, -0.0010779004078358412, 4.976456239091931e-06, -0.0010779004078358412, 3.204930544598028e-05, -1.668085900519145e-07, 4.976456239091931e-06, -1.668085900519145e-07, 9.267144274183181e-10, 182.0, 0.048379454761743546, -0.0010662003187462687, 4.8953183977573644e-06, -0.0010662003187462687, 3.152566932840273e-05, -1.6317729034653894e-07, 4.8953183977573644e-06, -1.6317729034653894e-07, 9.015319601957117e-10, 183.0, 0.04812082275748253, -0.0010546897538006306, 4.815934971702518e-06, -0.0010546897538006306, 3.1013380066724494e-05, -1.59644258701519e-07,4.815934971702518e-06, -1.59644258701519e-07, 8.771662285411708e-10, 184.0, 0.04786494001746178, -0.0010433645220473409, 4.738258667202899e-06, -0.0010433645220473409, 3.0512132070725784e-05, -1.5620632609625318e-07, 4.738258667202899e-06, -1.5620632609625318e-07, 8.535864792769132e-10, 185.0, 0.04761176556348801, -0.0010322207817807794, 4.662243554776069e-06, -0.0010322207817807794, 3.0021627026144415e-05, -1.5286045140783244e-07, 4.662243554776069e-06,-1.5286045140783244e-07, 8.307633470039377e-10, 186.0, 0.04736125469207764, -0.001021254574880004, 4.587846433423692e-06, -0.001021254574880004, 2.9541579351644032e-05, -1.4960367877847602e-07, 4.587846433423692e-06, -1.4960367877847602e-07, 8.086685765462676e-10, 187.0, 0.047113366425037384, -0.0010104621760547161, 4.515023192652734e-06, -0.0010104621760547161, 2.907171074184589e-05, -1.464331944589503e-07, 4.515023192652734e-06, -1.464331944589503e-07, 7.872751894844043e-10, 188.0, 0.04686805605888367, -0.0009998399764299393, 4.443733359948965e-06, -0.0009998399764299393, 2.8611755624297075e-05, -1.4334624154344056e-07, 4.443733359948965e-06, -1.4334624154344056e-07, 7.665574286441768e-10, 189.0, 0.0466252900660038, -0.0009893844835460186, 4.373936462798156e-06, -0.0009893844835460186, 2.8161453883512877e-05, -1.4034020523467916e-07, 4.373936462798156e-06, -1.4034020523467916e-07, 7.464904805409844e-10, 190.0, 0.0463850237429142, -0.0009790920885279775, 4.305593847675482e-06, -0.0009790920885279775, 2.77205508609768e-05, -1.3741257021138154e-07, 4.305593847675482e-06, -1.3741257021138154e-07, 7.270506419132516e-10, 191.0, 0.046147219836711884, -0.0009689594153314829, 4.238667315803468e-06, -0.0009689594153314829, 2.728880281210877e-05, -1.3456087799568195e-07, 4.238667315803468e-06, -1.3456087799568195e-07, 7.082150976778223e-10, 192.0, 0.045911844819784164, -0.0009589832043275237, 4.173120942141395e-06, -0.0009589832043275237, 2.6865976906265132e-05, -1.3178276958569768e-07, 4.173120942141395e-06, -1.3178276958569768e-07, 6.89962142974565e-10, 193.0, 0.04567885398864746, -0.0009491603705100715, 4.108919256395893e-06, -0.0009491603705100715, 2.6451840312802233e-05, -1.2907599966638372e-07, 4.108919256395893e-06, -1.2907599966638372e-07, 6.722707945883144e-10, 194.0, 0.045448217540979385, -0.0009394875960424542, 4.046027697768295e-06, -0.0009394875960424542, 2.604617111501284e-05, -1.2643836555525922e-07, 4.046027697768295e-06, -1.2643836555525922e-07, 6.551210685046271e-10, 195.0, 0.04521989822387695, -0.0009299619705416262, 3.984413069701986e-06, -0.0009299619705416262, 2.5648756491136737e-05, -1.2386776404582633e-07, 3.984413069701986e-06, -1.2386776404582633e-07, 6.384935913317236e-10, 196.0, 0.04499386250972748, -0.0009205805254168808, 3.924043085135054e-06, -0.0009205805254168808, 2.5259385438403115e-05, -1.2136216298586078e-07, 3.924043085135054e-06, -1.2136216298586078e-07, 6.223700443896973e-10, 197.0, 0.044770073145627975, -0.0009113402920775115, 3.864886821247637e-06, -0.0009113402920775115, 2.487785604898818e-05, -1.1891958706655714e-07, 3.864886821247637e-06, -1.1891958706655714e-07, 6.067326085990032e-10, 198.0, 0.04454850032925606, -0.0009022384765557945,3.8069133552198764e-06, -0.0009022384765557945, 2.450397369102575e-05, -1.1653816045509302e-07, 3.8069133552198764e-06, -1.1653816045509302e-07, 5.915642975473645e-10, 199.0, 0.04432910680770874, -0.0008932723430916667, 3.75009381059499e-06, -0.0008932723430916667, 2.4137543732649647e-05, -1.1421604995121015e-07, 3.75009381059499e-06, -1.1421604995121015e-07, 5.768487354451679e-10, 200.0, 0.044111866503953934, -0.0008844392141327262, 3.6943993109161966e-06,-0.0008844392141327262, 2.3778384274919517e-05, -1.1195149340892385e-07, 3.6943993109161966e-06, -1.1195149340892385e-07, 5.625703236589175e-10, 201.0, 0.043896742165088654, -0.0008757364121265709, 3.6398023439687677e-06, -0.0008757364121265709, 2.342631523788441e-05, -1.0974277842024094e-07, 3.6398023439687677e-06, -1.0974277842024094e-07, 5.48713907644327e-10, 202.0, 0.04368370771408081, -0.0008671614923514426, 3.5862758522853255e-06, -0.0008671614923514426, 2.3081163817550987e-05, -1.0758827073686916e-07, 3.5862758522853255e-06, -1.0758827073686916e-07, 5.352650545020765e-10, 203.0, 0.04347272962331772, -0.0008587118354626, 3.533793687893194e-06, -0.0008587118354626, 2.2742759028915316e-05, -1.0548637874308042e-07, 3.533793687893194e-06, -1.0548637874308042e-07, 5.222097754220556e-10, 204.0, 0.04326377809047699, -0.0008503851713612676, 3.4823306123143993e-06, -0.0008503851713612676, 2.2410937162931077e-05, -1.0343556056113812e-07, 3.4823306123143993e-06, -1.0343556056113812e-07, 5.0953480323912e-10, 205.0, 0.043056827038526535, -0.0008421789389103651, 3.4318620691919932e-06, -0.0008421789389103651, 2.2085539967520162e-05, -1.0143434536757923e-07, 3.4318620691919932e-06, -1.0143434536757923e-07, 4.972272038550329e-10, 206.0, 0.04285184666514397, -0.0008340909844264388, 3.3823641842900543e-06, -0.0008340909844264388, 2.1766411009593867e-05, -9.948129786607751e-08, 3.3823641842900543e-06, -9.948129786607751e-08, 4.852745982830697e-10, 207.0, 0.0426488071680069, -0.0008261189796030521, 3.3338133107463364e-06, -0.0008261189796030521, 2.14534011320211e-05, -9.757502539287088e-08, 3.3338133107463364e-06, -9.757502539287088e-08, 4.736651626480182e-10, 208.0, 0.04244768247008324, -0.0008182607125490904, 3.2861873933143215e-06, -0.0008182607125490904, 2.1146364815649576e-05, -9.571419923304347e-08,3.2861873933143215e-06, -9.571419923304347e-08, 4.62387433897149e-10, 209.0, 0.0422484464943409, -0.0008105140295810997, 3.2394643767474918e-06, -0.0008105140295810997, 2.0845158360316418e-05, -9.389751909338884e-08, 3.2394643767474918e-06, -9.389751909338884e-08, 4.5143039306694277e-10, 210.0, 0.04205107316374779, -0.0008028768352232873, 3.1936228879203554e-06, -0.0008028768352232873, 2.0549647160805762e-05, -9.21237415241194e-08, 3.1936228879203554e-06,-9.21237415241194e-08, 4.4078343752751437e-10, 211.0, 0.04185553267598152, -0.0007953470339998603, 3.1486424632021226e-06, -0.0007953470339998603, 2.025969479291234e-05, -9.039164439172964e-08, 3.1486424632021226e-06, -9.039164439172964e-08, 4.3043640873818845e-10, 212.0, 0.04166180267930031, -0.0007879227632656693, 3.104502411588328e-06, -0.0007879227632656693, 1.9975172108388506e-05, -8.870006951156029e-08, 3.104502411588328e-06, -8.870006951156029e-08, 4.203794812251971e-10, 213.0, 0.04146985709667206, -0.0007806018693372607, 3.0611838610639097e-06, -0.0007806018693372607, 1.9695951777976006e-05, -8.704788001523411e-08, 3.0611838610639097e-06, -8.704788001523411e-08, 4.1060321809283096e-10, 214.0, 0.04127967357635498, -0.000773382605984807, 3.018667484866455e-06, -0.000773382605984807, 1.9421911929384805e-05, -8.543398166693805e-08, 3.018667484866455e-06, -8.543398166693805e-08, 4.0109851551228815e-10, 215.0, 0.041091226041316986, -0.0007662629941478372, 2.976934638354578e-06, -0.0007662629941478372, 1.915293250931427e-05, -8.385731575799582e-08, 2.976934638354578e-06, -8.385731575799582e-08, 3.918566027216741e-10, 216.0, 0.040904488414525986, -0.0007592412293888628, 2.935967813755269e-06, -0.0007592412293888628, 1.888889710244257e-05, -8.231685200144057e-08, 2.935967813755269e-06, -8.231685200144057e-08, 3.828690697815773e-10, 217.0, 0.04071944206953049, -0.0007523155654780567, 2.8957490485481685e-06, -0.0007523155654780567, 1.862969293142669e-05, -8.081160274286958e-08, 2.8957490485481685e-06, -8.081160274286958e-08, 3.7412778430834237e-10, 218.0, 0.0405360646545887, -0.0007454842561855912, 2.8562615170812933e-06, -0.0007454842561855912, 1.837520903791301e-05, -7.934059453873488e-08, 2.8562615170812933e-06, -7.934059453873488e-08, 3.6562486371849445e-10, 219.0, 0.040354326367378235, -0.0007387455552816391, 2.817488621076336e-06, -0.0007387455552816391, 1.8125339920516126e-05, -7.790291078890732e-08, 2.817488621076336e-06, -7.790291078890732e-08, 3.5735281400661734e-10, 220.0, 0.0401742123067379, -0.0007320977747440338, 2.779414444376016e-06, -0.0007320977747440338, 1.7879980077850632e-05, -7.64976491041125e-08, 2.779414444376016e-06, -7.64976491041125e-08, 3.493043354563241e-10, 221.0, 0.0399957001209259, -0.0007255393429659307, 2.7420232981967274e-06, -0.0007255393429659307, 1.7639029465499334e-05, -7.512392841135807e-08, 2.7420232981967274e-06, -7.512392841135807e-08, 3.41472405906984e-10, 222.0, 0.039818767458200455, -0.0007190686883404851, 2.70529972112854e-06, -0.0007190686883404851, 1.740238985803444e-05, -7.378090316478847e-08, 2.70529972112854e-06, -7.378090316478847e-08, 3.3385025299814686e-10, 223.0, 0.03964339196681976, -0.0007126841810531914,2.6692291612562258e-06, -0.0007126841810531914, 1.7169963030028157e-05, -7.246775624025759e-08, 2.6692291612562258e-06, -7.246775624025759e-08, 3.2643135416954294e-10, 224.0, 0.039469555020332336, -0.0007063843077048659, 2.6337968392908806e-06, -0.0007063843077048659, 1.6941656213020906e-05, -7.118369893532872e-08, 2.6337968392908806e-06, -7.118369893532872e-08, 3.1920940890550753e-10, 225.0, 0.039297234266996384, -0.0007001676131039858, 2.5989888854383025e-06,-0.0007001676131039858, 1.6717380276531912e-05, -6.99279567584199e-08, 2.5989888854383025e-06, -6.99279567584199e-08, 3.121783664905564e-10, 226.0, 0.03912641108036041, -0.0006940326420590281, 2.564791657277965e-06, -0.0006940326420590281, 1.6497046090080403e-05, -6.86997765342312e-08, 2.564791657277965e-06, -6.86997765342312e-08, 3.053323427426591e-10, 227.0, 0.03895706683397293, -0.0006879779393784702, 2.5311919671366923e-06, -0.0006879779393784702, 1.6280566342175007e-05, -6.749844772002689e-08, 2.5311919671366923e-06, -6.749844772002689e-08, 2.9866570327996556e-10, 228.0, 0.038789182901382446, -0.0006820021662861109, 2.498176399967633e-06, -0.0006820021662861109, 1.606785735930316e-05, -6.632326687849854e-08, 2.498176399967633e-06, -6.632326687849854e-08, 2.9217298025407956e-10, 229.0, 0.038622740656137466, -0.0006761038675904274, 2.4657324502186384e-06, -0.0006761038675904274, 1.585883910593111e-05, -6.517354478319248e-08, 2.4657324502186384e-06, -6.517354478319248e-08, 2.858488723500585e-10, 230.0, 0.0384577177464962, -0.0006702817627228796, 2.4338480670849094e-06, -0.0006702817627228796, 1.5653429727535695e-05, -6.404863484021917e-08, 2.4338480670849094e-06, -6.404863484021917e-08, 2.79688355808716e-10, 231.0, 0.03829410299658775, -0.0006645345129072666, 2.4025109723879723e-06, -0.0006645345129072666, 1.5451552826561965e-05, -6.294788335026169e-08, 2.4025109723879723e-06, -6.294788335026169e-08, 2.7368646238201677e-10, 232.0, 0.038131870329380035, -0.0006588608957827091, 2.3717095700703794e-06, -0.0006588608957827091, 1.5253132005454972e-05, -6.18706792465673e-08, 2.3717095700703794e-06, -6.18706792465673e-08, 2.678384458665306e-10, 233.0, 0.03797100856900215, -0.0006532596307806671, 2.341432264074683e-06, -0.0006532596307806671, 1.5058094504638575e-05, -6.081642567323797e-08,2.341432264074683e-06, -6.081642567323797e-08, 2.621397543478565e-10, 234.0, 0.03781149908900261, -0.0006477294955402613, 2.3116683678381378e-06, -0.0006477294955402613, 1.4866367564536631e-05, -5.978452577437565e-08, 2.3116683678381378e-06, -5.978452577437565e-08, 2.56585946933896e-10, 235.0, 0.03765331953763962, -0.0006422692677006125, 2.2824067400506465e-06, -0.0006422692677006125, 1.4677882063551806e-05, -5.877442177393277e-08, 2.2824067400506465e-06,-5.877442177393277e-08, 2.511727492660043e-10, 236.0, 0.03749646246433258, -0.0006368777831085026, 2.253636921523139e-06, -0.0006368777831085026, 1.4492569789581466e-05, -5.778556300128912e-08, 2.253636921523139e-06, -5.778556300128912e-08, 2.45895998007839e-10, 237.0, 0.037340905517339706, -0.0006315539358183742, 2.22534868044022e-06, -0.0006315539358183742, 1.4310363440017682e-05, -5.6817409443965516e-08, 2.22534868044022e-06, -5.6817409443965516e-08, 2.4075175186766273e-10, 238.0, 0.0371866337954998, -0.0006262965616770089, 2.197531784986495e-06, -0.0006262965616770089, 1.4131199350231327e-05, -5.5869449511192215e-08, 2.197531784986495e-06, -5.5869449511192215e-08, 2.3573606955373805e-10, 239.0, 0.037033628672361374, -0.0006211045547388494, 2.17017645809392e-06, -0.0006211045547388494, 1.3955012946098577e-05, -5.4941178717626826e-08, 2.17017645809392e-06, -5.4941178717626826e-08, 2.308452873300837e-10, 240.0, 0.03688187897205353, -0.0006159768090583384, 2.1432736048154766e-06, -0.0006159768090583384, 1.3781744200969115e-05, -5.4032106788781675e-08, 2.1432736048154766e-06, -5.4032106788781675e-08, 2.260757553385062e-10, 241.0, 0.03673136979341507, -0.0006109123351052403, 2.1168134480831213e-06, -0.0006109123351052403, 1.361133126920322e-05, -5.31417576610238e-08, 2.1168134480831213e-06, -5.31417576610238e-08, 2.2142399025426585e-10, 242.0, 0.03658208250999451, -0.0006059100851416588, 2.0907868929498363e-06, -0.0006059100851416588, 1.344371685263468e-05, -5.2269673034288644e-08, 2.0907868929498363e-06, -5.2269673034288644e-08, 2.168866197749253e-10, 243.0, 0.036434002220630646, -0.0006009690114296973, 2.06518552658963e-06, -0.0006009690114296973, 1.3278843653097283e-05, -5.141540526665267e-08, 2.06518552658963e-06, -5.141540526665267e-08, 2.124603548647741e-10, 244.0, 0.03628711774945259, -0.0005960881244391203, 2.040000254055485e-06, -0.0005960881244391203, 1.3116654372424819e-05, -5.0578520927047066e-08, 2.040000254055485e-06, -5.0578520927047066e-08, 2.081420591437677e-10, 245.0, 0.03614141047000885, -0.0005912664346396923, 2.0152228898950852e-06, -0.0005912664346396923, 1.2957096259924583e-05, -4.975859368983038e-08, 2.0152228898950852e-06, -4.975859368983038e-08, 2.0392865174301278e-10, 246.0, 0.035996872931718826, -0.0005865030107088387, 1.9908452486561146e-06, -0.0005865030107088387, 1.2800116564903874e-05, -4.895521144021586e-08, 1.9908452486561146e-06, -4.895521144021586e-08, 1.9981719057149405e-10, 247.0, 0.03585348278284073, -0.0005817969795316458, 1.966859144886257e-06, -0.0005817969795316458, 1.2645661627175286e-05, -4.8167979826985174e-08, 1.966859144886257e-06, -4.8167979826985174e-08, 1.9580480292713531e-10, 248.0, 0.03571123257279396, -0.0005771472933702171,1.943256847880548e-06, -0.0005771472933702171, 1.2493681424530223e-05, -4.7396508051633646e-08, 1.943256847880548e-06, -4.7396508051633646e-08, 1.918886993745872e-10, 249.0, 0.03557010367512703, -0.0005725531373172998, 1.9200306269340217e-06, -0.0005725531373172998, 1.234412775374949e-05, -4.6640423079225e-08, 1.9200306269340217e-06, -4.6640423079225e-08, 1.8806621537859058e-10, 250.0, 0.03543008863925934, -0.0005680136382579803, 1.8971732060890645e-06,-0.0005680136382579803, 1.219695059262449e-05, -4.589935187482297e-08, 1.8971732060890645e-06, -4.589935187482297e-08, 1.8433474191503763e-10, 251.0, 0.035291172564029694, -0.0005635279230773449, 1.8746770820143865e-06, -0.0005635279230773449, 1.2052104466420133e-05, -4.5172942719773346e-08, 1.8746770820143865e-06, -4.5172942719773346e-08, 1.806917671043351e-10, 252.0, 0.0351533368229866, -0.0005590951186604798, 1.8525352061260492e-06, -0.0005590951186604798, 1.190954299090663e-05, -4.446084389542193e-08, 1.8525352061260492e-06, -4.446084389542193e-08, 1.7713484845582883e-10, 253.0, 0.03501657769083977, -0.0005547144101001322, 1.8307406435269513e-06, -0.0005547144101001322, 1.1769220691348892e-05, -4.3762724999396596e-08, 1.8307406435269513e-06, -4.3762724999396596e-08, 1.7366161286780368e-10, 254.0, 0.034880876541137695, -0.0005503850406967103, 1.8092866866936674e-06, -0.0005503850406967103, 1.1631094821495935e-05, -4.307825562932521e-08, 1.8092866866936674e-06, -4.307825562932521e-08, 1.7026978438305918e-10, 255.0, 0.03474622219800949, -0.0005461060791276395, 1.788166628102772e-06, -0.0005461060791276395, 1.1495121725602075e-05, -4.240711248826301e-08, 1.788166628102772e-06, -4.240711248826301e-08, 1.6695714255554606e-10, 256.0, 0.03461260721087456, -0.0005418768851086497, 1.7673739876045147e-06, -0.0005418768851086497, 1.136125956691103e-05, -4.174899359554729e-08, 1.7673739876045147e-06, -4.174899359554729e-08, 1.6372153632815412e-10, 257.0, 0.0344800129532814, -0.0005376965855248272, 1.746902512422821e-06, -0.0005376965855248272, 1.1229468327655923e-05, -4.110358631237432e-08, 1.746902512422821e-06, -4.110358631237432e-08, 1.6056088403271218e-10, 258.0, 0.03434842824935913, -0.0005335644818842411, 1.7267459497816162e-06, -0.0005335644818842411, 1.1099707080575172e-05, -4.047060642164979e-08,1.7267459497816162e-06, -4.047060642164979e-08, 1.5747317338998812e-10, 259.0, 0.034217849373817444, -0.0005294798174872994, 1.706898274278501e-06, -0.0005294798174872994, 1.0971937626891304e-05, -3.9849766153565724e-08, 1.706898274278501e-06, -3.9849766153565724e-08, 1.5445644763190103e-10, 260.0, 0.03408825397491455, -0.0005254418938420713, 1.687353574197914e-06, -0.0005254418938420713, 1.0846121767826844e-05, -3.9240781291027815e-08, 1.687353574197914e-06,-3.9240781291027815e-08, 1.5150880550152124e-10, 261.0, 0.03395964205265045, -0.0005214500124566257, 1.6681062788848067e-06, -0.0005214500124566257, 1.072222221409902e-05, -3.864338893322383e-08, 1.6681062788848067e-06, -3.864338893322383e-08, 1.4862841513085812e-10, 262.0, 0.033831991255283356, -0.0005175034166313708, 1.6491504766236176e-06, -0.0005175034166313708, 1.060020258591976e-05, -3.8057319073914186e-08, 1.6491504766236176e-06, -3.8057319073914186e-08, 1.4581348628528445e-10, 263.0, 0.03370530158281326, -0.0005136014660820365, 1.6304808241329738e-06, -0.0005136014660820365, 1.0480027412995696e-05, -3.748231947042768e-08, 1.6304808241329738e-06, -3.748231947042768e-08, 1.4306228424132428e-10, 264.0, 0.03357955440878868, -0.0005097434623166919, 1.6120919781315024e-06, -0.0005097434623166919, 1.036166213452816e-05, -3.691813788009313e-08, 1.6120919781315024e-06, -3.691813788009313e-08, 1.4037314366444065e-10, 265.0, 0.03345474228262901, -0.0005059288232587278, 1.5939785953378305e-06, -0.0005059288232587278, 1.0245073099213187e-05, -3.636452916566668e-08, 1.5939785953378305e-06, -3.636452916566668e-08, 1.3774442697567224e-10, 266.0, 0.033330854028463364, -0.0005021567922085524, 1.5761355598442606e-06, -0.0005021567922085524, 1.0130225746252108e-05, -3.5821262400759224e-08, 1.5761355598442606e-06, -3.5821262400759224e-08, 1.3517457986278458e-10, 267.0, 0.03320787847042084, -0.0004984267870895565, 1.558557869429933e-06, -0.0004984267870895565, 1.0017089152825065e-05, -3.5288103106267954e-08, 1.558557869429933e-06, -3.5288103106267954e-08, 1.326620341357554e-10, 268.0, 0.033085811883211136, -0.0004947382258251309, 1.5412405218739877e-06, -0.0004947382258251309, 9.905631486617494e-06, -3.476482390851743e-08, 1.5412405218739877e-06, -3.476482390851743e-08, 1.3020533262686484e-10, 269.0, 0.03296463564038277, -0.0004910904099233449, 1.5241788560160785e-06, -0.0004910904099233449, 9.795820005820133e-06, -3.425120809197324e-08, 1.5241788560160785e-06, -3.425120809197324e-08, 1.2780301816839312e-10, 270.0, 0.03284434229135513, -0.00048748281551524997, 1.5073679833221831e-06, -0.00048748281551524997, 9.687626516097225e-06, -3.374704604652834e-08, 1.5073679833221831e-06, -3.374704604652834e-08, 1.2545370298155945e-10, 271.0, 0.032724928110837936, -0.0004839148314204067, 1.4908035836924682e-06, -0.0004839148314204067, 9.581020094628911e-06, -3.3252124609362e-08, 1.4908035836924682e-06, -3.3252124609362e-08, 1.2315601316537084e-10, 272.0, 0.032606374472379684, -0.0004803858755622059, 1.4744808822797495e-06, -0.0004803858755622059, 9.475972547079436e-06, -3.276624127579453e-08, 1.4744808822797495e-06, -3.276624127579453e-08, 1.2090864420777336e-10, 273.0, 0.03248867765069008, -0.00047689536586403847,1.4583956726710312e-06, -0.00047689536586403847, 9.372455679113045e-06, -3.228920064657359e-08, 1.4583956726710312e-06, -3.228920064657359e-08, 1.187103054745009e-10, 274.0, 0.03237183019518852, -0.00047344277845695615, 1.4425435210796422e-06, -0.00047344277845695615, 9.270440386899281e-06, -3.182081087516053e-08, 1.4425435210796422e-06, -3.182081087516053e-08, 1.1655974796465074e-10, 275.0, 0.03225581720471382, -0.0004700275312643498, 1.4269203347794246e-06,-0.0004700275312643498, 9.169900295091793e-06, -3.136088366773038e-08, 1.4269203347794246e-06, -3.136088366773038e-08, 1.1445578512736532e-10, 276.0, 0.03214063495397568, -0.0004666491295211017, 1.4115219073573826e-06, -0.0004666491295211017, 9.070808118849527e-06, -3.0909237835885506e-08, 1.4115219073573826e-06, -3.0909237835885506e-08, 1.1239723041178706e-10, 277.0, 0.032026272267103195, -0.00046330702025443316, 1.396344259774196e-06, -0.00046330702025443316, 8.973139301815536e-06, -3.04656921912283e-08, 1.396344259774196e-06, -3.04656921912283e-08, 1.1038293890042183e-10, 278.0, 0.03191271796822548, -0.00046000065049156547, 1.3813834129905445e-06, -0.00046000065049156547, 8.87686837813817e-06, -3.00300726507885e-08, 1.3813834129905445e-06, -3.00300726507885e-08, 1.0841181424803281e-10, 279.0, 0.03179996833205223, -0.0004567295836750418, 1.3666355016539455e-06, -0.0004567295836750418, 8.781968972471077e-06, -2.9602214013380035e-08, 1.3666355016539455e-06, -2.9602214013380035e-08, 1.0648278092606489e-10, 280.0, 0.031688012182712555, -0.00045349326683208346, 1.3520968877855921e-06, -0.00045349326683208346, 8.688417437952012e-06, -2.918194574874633e-08, 1.3520968877855921e-06, -2.918194574874633e-08, 1.0459479116153858e-10, 281.0, 0.031576842069625854, -0.00045029123430140316, 1.3377637060330017e-06, -0.00045029123430140316, 8.596190127718728e-06, -2.8769111537485514e-08, 1.3377637060330017e-06, -2.8769111537485514e-08, 1.0274682493705001e-10, 282.0, 0.031466446816921234, -0.00044712299131788313, 1.323632318417367e-06, -0.00044712299131788313, 8.50526339490898e-06, -2.8363549731125204e-08, 1.323632318417367e-06, -2.8363549731125204e-08, 1.0093790386855872e-10, 283.0, 0.031356822699308395, -0.0004439881013240665, 1.3096994280203944e-06, -0.0004439881013240665, 8.415614502155222e-06, -2.7965111115690888e-08,1.3096994280203944e-06, -2.7965111115690888e-08, 9.916706344981208e-11, 284.0, 0.031247958540916443, -0.00044088601134717464, 1.2959612831764389e-06, -0.00044088601134717464, 8.327220712089911e-06, -2.757364470085122e-08, 1.2959612831764389e-06, -2.757364470085122e-08, 9.743337386902695e-11, 285.0, 0.03113984875380993, -0.00043781634303741157, 1.2824145869672066e-06, -0.00043781634303741157, 8.240061106334906e-06, -2.7189003048988525e-08, 1.2824145869672066e-06,-2.7189003048988525e-08, 9.573592613110193e-11, 286.0, 0.031032484024763107, -0.00043477863073349, 1.2690561561612412e-06, -0.00043477863073349, 8.154113857017364e-06, -2.6811045827912494e-08, 1.2690561561612412e-06, -2.6811045827912494e-08, 9.407384593540513e-11, 287.0, 0.03092585690319538, -0.0004317724087741226, 1.2558825801534113e-06, -0.0004317724087741226, 8.069357136264443e-06, -2.6439632705432814e-08, 1.2558825801534113e-06, -2.6439632705432814e-08, 9.244626592019856e-11, 288.0, 0.030819959938526154, -0.000428797269705683, 1.2428906757122604e-06, -0.000428797269705683, 7.985771844687406e-06, -2.607462867842969e-08, 1.2428906757122604e-06, -2.607462867842969e-08, 9.085236729600155e-11, 289.0, 0.030714785680174828, -0.00042585277697071433, 1.2300773732931702e-06, -0.00042585277697071433, 7.90333615441341e-06, -2.5715902296497006e-08, 1.2300773732931702e-06, -2.5715902296497006e-08, 8.929133127333344e-11, 290.0, 0.030610326677560806, -0.0004229385231155902, 1.2174396033515222e-06, -0.0004229385231155902, 7.822031875548419e-06, -2.5363323885585487e-08, 1.2174396033515222e-06, -2.5363323885585487e-08, 8.77623668182892e-11, 291.0, 0.030506575480103493, -0.00042005404247902334, 1.204974296342698e-06, -0.00042005404247902334, 7.741838999208994e-06, -2.5016767324359535e-08, 1.204974296342698e-06, -2.5016767324359535e-08, 8.626471759143328e-11, 292.0, 0.03040352649986744, -0.0004171989858150482, 1.192678723782592e-06, -0.0004171989858150482, 7.662737516511697e-06, -2.467611004419723e-08, 1.192678723782592e-06, -2.467611004419723e-08, 8.479762725333018e-11, 293.0, 0.0303011704236269, -0.00041437294567003846, 1.1805497024397482e-06, -0.00041437294567003846, 7.584711056551896e-06, -2.4341231252833495e-08, 1.1805497024397482e-06, -2.4341231252833495e-08, 8.336038109790778e-11, 294.0, 0.030199501663446426, -0.00041157554369419813, 1.1685847312037367e-06, -0.00041157554369419813, 7.507740065193502e-06, -2.401201371071693e-08, 1.1685847312037367e-06, -2.401201371071693e-08, 8.195226441909398e-11, 295.0, 0.030098510906100273, -0.0004088063433300704, 1.1567808542167768e-06, -0.0004088063433300704, 7.431807262037182e-06, -2.368834373100981e-08, 1.1567808542167768e-06, -2.368834373100981e-08, 8.05725972052862e-11, 296.0, 0.02999819442629814, -0.0004060649953316897, 1.145135342994763e-06, -0.0004060649953316897, 7.3568944571889006e-06, -2.3370109403231254e-08, 1.145135342994763e-06, -2.3370109403231254e-08, 7.922071332266967e-11, 297.0, 0.029898544773459435, -0.00040335115045309067, 1.1336456964272656e-06, -0.00040335115045309067, 7.282985734491376e-06, -2.305720059325722e-08, 1.1336456964272656e-06, -2.305720059325722e-08, 7.78959466374296e-11, 298.0, 0.029799556359648705, -0.00040066440124064684,1.122309299717017e-06, -0.00040066440124064684, 7.210063358797925e-06, -2.2749512496034185e-08, 1.122309299717017e-06, -2.2749512496034185e-08, 7.659768652690246e-11, 299.0, 0.029701218008995056, -0.0003980044275522232, 1.1111234243799117e-06, -0.0003980044275522232, 7.138111413951265e-06, -2.2446938530151783e-08, 1.1111234243799117e-06, -2.2446938530151783e-08, 7.532529461284909e-11, 300.0, 0.02960352972149849, -0.00039537085103802383, 1.1000857966791955e-06,-0.00039537085103802383, 7.067113529046765e-06, -2.2149379219627008e-08, 1.1000857966791955e-06, -2.2149379219627008e-08, 7.407818802818156e-11, 301.0, 0.02950648032128811, -0.00039276332245208323, 1.0891939155044383e-06, -0.00039276332245208323, 6.997054242674494e-06, -2.1856733312120014e-08, 1.0891939155044383e-06, -2.1856733312120014e-08, 7.285577696691803e-11, 302.0, 0.029410064220428467, -0.0003901814925484359, 1.0784452797452104e-06, -0.0003901814925484359, 6.927918093424523e-06, -2.1568904884361473e-08, 1.0784452797452104e-06, -2.1568904884361473e-08, 7.165749243975839e-11, 303.0, 0.029314277693629265, -0.0003876250411849469, 1.0678376156647573e-06, -0.0003876250411849469, 6.859689619886922e-06, -2.1285799789438897e-08, 1.0678376156647573e-06, -2.1285799789438897e-08, 7.048277933519032e-11, 304.0, 0.029219111427664757, -0.0003850936482194811, 1.0573685358394869e-06, -0.0003850936482194811, 6.79235381539911e-06, -2.100732210408296e-08, 1.0573685358394869e-06, -2.100732210408296e-08, 6.933109641948931e-11, 305.0, 0.029124563559889793, -0.0003825869644060731, 1.04703599390632e-06, -0.0003825869644060731, 6.7258970375405625e-06, -2.0733386563165368e-08, 1.04703599390632e-06, -2.0733386563165368e-08, 6.820193021450649e-11, 306.0, 0.02903062291443348, -0.0003801046696025878, 1.0368376024416648e-06, -0.0003801046696025878, 6.660303824901348e-06, -2.0463900796130474e-08, 1.0368376024416648e-06, -2.0463900796130474e-08, 6.709475336430515e-11, 307.0, 0.028937287628650665, -0.00037764644366689026, 1.0267712013956043e-06, -0.00037764644366689026, 6.595560989808291e-06, -2.0198777761493147e-08, 1.0267712013956043e-06, -2.0198777761493147e-08, 6.600908014631202e-11, 308.0, 0.028844550251960754, -0.00037521199556067586, 1.0168347444050596e-06, -0.00037521199556067586, 6.5316548898408655e-06, -1.9937935746838775e-08,1.0168347444050596e-06, -1.9937935746838775e-08, 6.494441789905991e-11, 309.0, 0.0287524051964283, -0.00037280103424564004, 1.007026071420114e-06, -0.00037280103424564004, 6.4685714278311934e-06, -1.9681289487039066e-08, 1.007026071420114e-06, -1.9681289487039066e-08, 6.390029477776338e-11, 310.0, 0.02866084687411785, -0.0003704132104758173, 9.973430223908508e-07, -0.0003704132104758173, 6.406297416106099e-06, -1.9428760822393087e-08, 9.973430223908508e-07,-1.9428760822393087e-08, 6.287625281542475e-11, 311.0, 0.028569871559739113, -0.0003680482623167336, 9.877838920147042e-07, -0.0003680482623167336, 6.344820576487109e-06, -1.9180269816843065e-08, 9.877838920147042e-07, -1.9180269816843065e-08, 6.187183404504637e-11, 312.0, 0.028479469940066338, -0.0003657058987300843, 9.783464065549197e-07, -0.0003657058987300843, 6.284128176048398e-06, -1.8935738310688066e-08, 9.783464065549197e-07, -1.8935738310688066e-08, 6.08866151941001e-11, 313.0, 0.028389638289809227, -0.00036338582867756486, 9.690288607089315e-07, -0.00036338582867756486, 6.22420702711679e-06, -1.8695089920583996e-08, 9.690288607089315e-07, -1.8695089920583996e-08, 5.992015911227e-11, 314.0, 0.028300372883677483, -0.0003610877611208707, 9.598292081136606e-07, -0.0003610877611208707, 6.165045306261163e-06, -1.845825359225728e-08, 9.598292081136606e-07, -1.845825359225728e-08, 5.897205640481573e-11, 315.0, 0.028211666271090508, -0.0003588114050216973, 9.507456866231223e-07, -0.0003588114050216973, 6.1066307353030425e-06, -1.82251564950775e-08, 9.507456866231223e-07, -1.82251564950775e-08, 5.804190114644392e-11, 316.0, 0.028123514726758003, -0.0003565565275494009, 9.417763635610754e-07, -0.0003565565275494009, 6.048952400306007e-06, -1.799572757477108e-08, 9.417763635610754e-07, -1.799572757477108e-08, 5.712929088130814e-11, 317.0, 0.028035910800099373, -0.00035432283766567707, 9.329195336249541e-07, -0.00035432283766567707, 5.991997568344232e-06, -1.7769895777064448e-08, 9.329195336249541e-07, -1.7769895777064448e-08, 5.623384743969062e-11, 318.0, 0.027948852628469467, -0.0003521100734360516, 9.241734346687736e-07, -0.0003521100734360516, 5.9357557802286465e-06, -1.7547597153111383e-08, 9.241734346687736e-07, -1.7547597153111383e-08, 5.535519265187361e-11, 319.0, 0.02786233276128769, -0.0003499179729260504, 9.155363045465492e-07, -0.0003499179729260504, 5.880215667275479e-06, -1.7328762424995148e-08, 9.155363045465492e-07, -1.7328762424995148e-08, 5.4492962225927144e-11, 320.0, 0.02777634747326374, -0.0003477462742011994, 9.070064379557152e-07, -0.0003477462742011994, 5.825366315548308e-06, -1.7113329420226364e-08, 9.070064379557152e-07, -1.7113329420226364e-08, 5.364679880881518e-11, 321.0, 0.027690889313817024, -0.00034559471532702446, 8.985822432805435e-07, -0.00034559471532702446, 5.7711972658580635e-06, -1.6901232413601974e-08, 8.985822432805435e-07, -1.6901232413601974e-08, 5.281635545584251e-11, 322.0, 0.02760595642030239, -0.00034346309257671237, 8.902620152184682e-07, -0.00034346309257671237, 5.717697604268324e-06, -1.6692412785346278e-08, 8.902620152184682e-07, -1.6692412785346278e-08, 5.200128522231395e-11, 323.0, 0.027521543204784393, -0.0003413511149119586,8.8204421899718e-07, -0.0003413511149119586, 5.664856871590018e-06, -1.6486808362969896e-08, 8.8204421899718e-07, -1.6486808362969896e-08, 5.120126544966297e-11, 324.0, 0.027437645941972733, -0.0003392585495021194, 8.739272630009509e-07, -0.0003392585495021194, 5.612665518128779e-06, -1.628435875034029e-08, 8.739272630009509e-07, -1.628435875034029e-08, 5.0415970009876077e-11, 325.0, 0.027354257181286812, -0.0003371851926203817, 8.659095556140528e-07,-0.0003371851926203817, 5.561113539442886e-06, -1.6085007104038596e-08, 8.659095556140528e-07, -1.6085007104038596e-08, 4.96450866527276e-11, 326.0, 0.027271373197436333, -0.0003351307532284409, 8.579896757510141e-07, -0.0003351307532284409, 5.5101904763432685e-06, -1.5888698357002795e-08, 8.579896757510141e-07, -1.5888698357002795e-08, 4.888829965854491e-11, 327.0, 0.027188990265130997, -0.0003330950567033142, 8.501660317961068e-07, -0.0003330950567033142, 5.4598876886302605e-06, -1.5695373889457187e-08, 8.501660317961068e-07, -1.5695373889457187e-08, 4.814531759378404e-11, 328.0, 0.027107104659080505, -0.0003310778411105275, 8.424372595072782e-07, -0.0003310778411105275, 5.410195171862142e-06, -1.550498041069659e-08, 8.424372595072782e-07, -1.550498041069659e-08, 4.741584208600713e-11, 329.0, 0.027025708928704262, -0.0003290789027232677, 8.348018809556379e-07, -0.0003290789027232677, 5.361103831091896e-06, -1.531746640637266e-08, 8.348018809556379e-07, -1.531746640637266e-08, 4.669959211001107e-11, 330.0, 0.026944801211357117, -0.000327098008710891, 8.272584750557144e-07, -0.000327098008710891, 5.312604571372503e-06, -1.5132776809423376e-08, 8.272584750557144e-07, -1.5132776809423376e-08, 4.599628317114579e-11, 331.0, 0.02686437778174877, -0.0003251349553465843, 8.198057344088738e-07, -0.0003251349553465843, 5.2646887525042985e-06, -1.4950863658214075e-08, 8.198057344088738e-07, -1.4950863658214075e-08, 4.5305648121996e-11, 332.0, 0.02678443118929863, -0.00032318950979970396, 8.124421810862259e-07, -0.00032318950979970396, 5.217347279540263e-06, -1.4771676326574834e-08, 8.124421810862259e-07, -1.4771676326574834e-08, 4.4627419815146396e-11, 333.0, 0.026704959571361542, -0.0003212614683434367, 8.051666213759745e-07, -0.0003212614683434367, 5.1705715122807305e-06, -1.459516507651415e-08,8.051666213759745e-07, -1.459516507651415e-08, 4.3961341511522534e-11, 334.0, 0.02662595920264721, -0.0003193506272509694, 7.979775773492293e-07, -0.0003193506272509694, 5.124353720020736e-06, -1.4421281946397357e-08, 7.979775773492293e-07, -1.4421281946397357e-08, 4.3307153002603016e-11, 335.0, 0.026547424495220184, -0.0003174568118993193, 7.908739689810318e-07, -0.0003174568118993193, 5.078684807813261e-06, -1.4249980750946634e-08, 7.908739689810318e-07,-1.4249980750946634e-08, 4.266461489654816e-11, 336.0, 0.02646934986114502, -0.00031557976035401225, 7.838543751859106e-07, -0.00031557976035401225, 5.033557044953341e-06, -1.4081216193062573e-08, 7.838543751859106e-07, -1.4081216193062573e-08, 4.203348086262437e-11, 337.0, 0.026391735300421715, -0.000313719327095896, 7.769176022520696e-07, -0.000313719327095896, 4.9889622459886596e-06, -1.3914942087467352e-08, 7.769176022520696e-07, -1.3914942087467352e-08, 4.141351844788588e-11, 338.0, 0.026314573362469673, -0.0003118752792943269, 7.700624564677128e-07, -0.0003118752792943269, 4.944892680214252e-06, -1.3751114913418405e-08, 7.700624564677128e-07, -1.3751114913418405e-08, 4.080449519938689e-11, 339.0, 0.026237862184643745, -0.00031004747143015265, 7.632876872776251e-07, -0.00031004747143015265, 4.901340616925154e-06, -1.3589692038351586e-08, 7.632876872776251e-07, -1.3589692038351586e-08, 4.020618907252249e-11, 340.0, 0.026161596179008484, -0.0003082356706727296, 7.565922146568482e-07, -0.0003082356706727296, 4.85829878016375e-06, -1.343063082970275e-08, 7.565922146568482e-07, -1.343063082970275e-08, 3.961837802268775e-11, 341.0, 0.02608577162027359, -0.00030643970239907503, 7.499747880501673e-07, -0.00030643970239907503, 4.815759439225076e-06, -1.327388954308617e-08, 7.499747880501673e-07, -1.327388954308617e-08, 3.90408504136186e-11, 342.0, 0.026010386645793915, -0.0003046593628823757, 7.43434270589205e-07, -0.0003046593628823757, 4.773714863404166e-06, -1.3119428210472961e-08, 7.43434270589205e-07, -1.3119428210472961e-08, 3.847339807849792e-11, 343.0, 0.02593543566763401, -0.00030289453570730984, 7.369696390924219e-07, -0.00030289453570730984, 4.732158686238108e-06, -1.2967207752012655e-08, 7.369696390924219e-07, -1.2967207752012655e-08, 3.79158128505086e-11, 344.0, 0.025860914960503578, -0.0003011449589394033, 7.305797566914407e-07, -0.0003011449589394033, 4.691083631769288e-06, -1.2817188199676366e-08, 7.305797566914407e-07, -1.2817188199676366e-08, 3.7367896971174375e-11, 345.0, 0.02578682266175747, -0.00029941051616333425, 7.242634865178843e-07, -0.00029941051616333425, 4.650481969292741e-06, -1.2669332249970466e-08, 7.242634865178843e-07, -1.2669332249970466e-08, 3.682945268201898e-11, 346.0, 0.025713151320815086, -0.00029769103275611997, 7.180198053902132e-07, -0.00029769103275611997, 4.6103477870929055e-06, -1.252360171122291e-08, 7.180198053902132e-07, -1.252360171122291e-08, 3.630029610235397e-11, 347.0, 0.02563990093767643, -0.0002959862758871168, 7.118477469703066e-07, -0.0002959862758871168, 4.570674263959518e-06, -1.2379961056296906e-08, 7.118477469703066e-07, -1.2379961056296906e-08, 3.5780232943150025e-11, 348.0, 0.0255670677870512, -0.00029429615824483335,7.057461743897875e-07, -0.00029429615824483335, 4.531454578682315e-06, -1.223837298169883e-08, 7.057461743897875e-07, -1.223837298169883e-08, 3.5269086262612603e-11, 349.0, 0.025494646281003952, -0.00029262047610245645, 6.99714178153954e-07, -0.00029262047610245645, 4.492682364798384e-06, -1.2098803736648733e-08, 6.99714178153954e-07, -1.2098803736648733e-08, 3.476667911894715e-11, 350.0, 0.025422632694244385, -0.00029095905483700335, 6.937506782378478e-07,-0.00029095905483700335, 4.454351255844813e-06, -1.1961218682188246e-08, 6.937506782378478e-07, -1.1961218682188246e-08, 3.427283457035912e-11, 351.0, 0.02535102516412735, -0.0002893117198254913, 6.878548219901859e-07, -0.0002893117198254913, 4.4164544306113385e-06, -1.182558406753742e-08, 6.878548219901859e-07, -1.182558406753742e-08, 3.378738261394787e-11, 352.0, 0.025279821828007698, -0.0002876783546525985, 6.8202552938601e-07, -0.0002876783546525985, 4.378986886877101e-06, -1.1691866141916307e-08, 6.8202552938601e-07, -1.1691866141916307e-08, 3.331016018570665e-11, 353.0, 0.025209015235304832, -0.0002860587846953422, 6.762619477740373e-07, -0.0002860587846953422, 4.341941803431837e-06, -1.1560032930901798e-08, 6.762619477740373e-07, -1.1560032930901798e-08, 3.284100075218177e-11, 354.0, 0.025138605386018753, -0.0002844528644345701, 6.705631108161469e-07, -0.0002844528644345701, 4.305313268559985e-06, -1.1430052460070783e-08, 6.705631108161469e-07, -1.1430052460070783e-08, 3.2379751657707345e-11, 355.0, 0.025068586692214012, -0.00028286041924729943, 6.649281090176373e-07, -0.00028286041924729943, 4.269095825293334e-06, -1.1301893643178573e-08, 6.649281090176373e-07, -1.1301893643178573e-08, 3.1926253307723584e-11, 356.0, 0.02499895729124546, -0.000281281303614378, 6.593560897272255e-07, -0.000281281303614378, 4.2332831071689725e-06, -1.1175527170337318e-08, 6.593560897272255e-07, -1.1175527170337318e-08, 3.1480356516011554e-11, 357.0, 0.02492971532046795, -0.0002797153720166534, 6.538461434502096e-07, -0.0002797153720166534, 4.19787011196604e-06, -1.1050921067123909e-08, 6.538461434502096e-07, -1.1050921067123909e-08, 3.104191209635232e-11, 358.0, 0.02486085332930088, -0.00027816250803880394, 6.483974175353069e-07, -0.00027816250803880394, 4.162850927968975e-06, -1.0928046023650495e-08,6.483974175353069e-07, -1.0928046023650495e-08, 3.06107743319739e-11, 359.0, 0.024792373180389404, -0.00027662250795401633, 6.430090593312343e-07, -0.00027662250795401633, 4.128220098209567e-06, -1.0806875394564486e-08, 6.430090593312343e-07, -1.0806875394564486e-08, 3.0186800975551265e-11, 360.0, 0.024724267423152924, -0.00027509525534696877, 6.376802730301279e-07, -0.00027509525534696877, 4.093972620466957e-06, -1.0687378981799611e-08, 6.376802730301279e-07,-1.0687378981799611e-08, 2.976985671865329e-11, 361.0, 0.02465653419494629, -0.00027358063380233943, 6.324102059807046e-07, -0.00027358063380233943, 4.060102583025582e-06, -1.056952925182486e-08, 6.324102059807046e-07, -1.056952925182486e-08, 2.935980278340189e-11, 362.0, 0.0245891734957695, -0.00027207849780097604, 6.271980055316817e-07, -0.00027207849780097604, 4.026605438411934e-06, -1.0453300447466063e-08, 6.271980055316817e-07, -1.0453300447466063e-08, 2.895651080025985e-11, 363.0, 0.02452217787504196, -0.0002705887018237263, 6.220429895620327e-07, -0.0002705887018237263, 3.993475729657803e-06, -1.0338664147013787e-08, 6.220429895620327e-07, -1.0338664147013787e-08, 2.855984546079604e-11, 364.0, 0.024455547332763672, -0.00026911107124760747, 6.16944248577056e-07, -0.00026911107124760747, 3.960708454542328e-06, -1.0225595481472283e-08, 6.16944248577056e-07, -1.0225595481472283e-08, 2.816968359964367e-11, 365.0, 0.024389276280999184, -0.00026764554786495864, 6.119011004557251e-07, -0.00026764554786495864, 3.928298610844649e-06, -1.0114067805488958e-08, 6.119011004557251e-07, -1.0114067805488958e-08, 2.7785900316712464e-11, 366.0, 0.024323364719748497, -0.0002661919570527971, 6.069128062335949e-07, -0.0002661919570527971, 3.896241196343908e-06, -1.000405713824648e-08, 6.069128062335949e-07, -1.000405713824648e-08, 2.7408375916082584e-11, 367.0, 0.024257808923721313, -0.0002647501532919705, 6.019785132593825e-07, -0.0002647501532919705, 3.864531663566595e-06, -9.89553772257068e-09, 6.019785132593825e-07, -9.89553772257068e-09, 2.7036987232387233e-11, 368.0, 0.024192605167627335, -0.0002633200492709875, 5.970976530988992e-07, -0.0002633200492709875, 3.833165465039201e-06, -9.788485577644224e-09, 5.970976530988992e-07, -9.788485577644224e-09, 2.667162324332395e-11, 369.0, 0.024127749726176262, -0.00026190149947069585, 5.922693731008621e-07, -0.00026190149947069585, 3.8021380532882176e-06, -9.6828776108282e-09, 5.922693731008621e-07, -9.6828776108282e-09, 2.6312167722419844e-11, 370.0, 0.024063242599368095, -0.0002604943874757737, 5.87492991144245e-07, -0.0002604943874757737, 3.7714441987191094e-06, -9.578689841305277e-09, 5.87492991144245e-07, -9.578689841305277e-09, 2.5958509647372452e-11, 371.0, 0.023999078199267387, -0.00025909856776706874, 5.827678251080215e-07, -0.00025909856776706874, 3.741080035979394e-06, -9.475900064614962e-09, 5.827678251080215e-07, -9.475900064614962e-09, 2.5610539730602788e-11, 372.0, 0.023935256525874138, -0.00025771395303308964, 5.780932497145841e-07, -0.00025771395303308964, 3.711041017595562e-06, -9.374485188118342e-09, 5.780932497145841e-07, -9.374485188118342e-09, 2.5268152153978818e-11, 373.0, 0.0238717719912529, -0.0002563403977546841,5.734684691560687e-07, -0.0002563403977546841, 3.6813225960941054e-06, -9.274423007354926e-09, 5.734684691560687e-07, -9.274423007354926e-09, 2.4931244568815458e-11, 374.0, 0.02380862459540367, -0.00025497781462036073, 5.688929149982869e-07, -0.00025497781462036073, 3.6519206787488656e-06, -9.17569220604264e-09, 5.688929149982869e-07, -9.17569220604264e-09, 2.4599711156980675e-11, 375.0, 0.023745808750391006, -0.0002536260581109673, 5.64365961963631e-07,-0.0002536260581109673, 3.6228309454600094e-06, -9.078272356077832e-09, 5.64365961963631e-07, -9.078272356077832e-09, 2.427345650868329e-11, 376.0, 0.023683324456214905, -0.0002522850118111819, 5.59886814244237e-07, -0.0002522850118111819, 3.594049530875054e-06, -8.982142141178429e-09, 5.59886814244237e-07, -8.982142141178429e-09, 2.3952378275238217e-11, 377.0, 0.023621169850230217, -0.00025095458840951324, 5.554550170927541e-07, -0.00025095458840951324, 3.5655721148941666e-06, -8.887280245062357e-09, 5.554550170927541e-07, -8.887280245062357e-09, 2.3636384516301234e-11, 378.0, 0.023559337481856346, -0.000249634642386809, 5.510698315447371e-07, -0.000249634642386809, 3.537394832164864e-06, -8.793668015982803e-09, 5.510698315447371e-07, -8.793668015982803e-09, 2.3325378087357684e-11, 379.0, 0.02349782921373844, -0.0002483250864315778, 5.467306891659973e-07, -0.0002483250864315778, 3.5095135899609886e-06, -8.701284137657694e-09, 5.467306891659973e-07, -8.701284137657694e-09, 2.3019270517510293e-11, 380.0, 0.023436643183231354, -0.00024702580412849784, 5.424370215223462e-07, -0.00024702580412849784, 3.4819245229300577e-06, -8.610111734697057e-09, 5.424370215223462e-07, -8.610111734697057e-09, 2.271797160113831e-11, 381.0, 0.023375771939754486, -0.00024573670816607773, 5.381881464927574e-07, -0.00024573670816607773, 3.4546239930932643e-06, -8.520129490818817e-09, 5.381881464927574e-07, -8.520129490818817e-09, 2.242139286734446e-11, 382.0, 0.023315217345952988, -0.00024445768212899566, 5.339835524864611e-07, -0.00024445768212899566, 3.4276079077244503e-06, -8.431319642454582e-09, 5.339835524864611e-07, -8.431319642454582e-09, 2.2129447579954942e-11, 383.0, 0.02325497567653656, -0.00024318859505001456, 5.298226710692688e-07, -0.00024318859505001456, 3.4008730835921597e-06, -8.343663537857537e-09,5.298226710692688e-07, -8.343663537857537e-09, 2.1842052472242912e-11, 384.0, 0.023195045068860054, -0.0002419293741695583, 5.25704876963573e-07, -0.0002419293741695583, 3.3744154279702343e-06, -8.257144301637709e-09, 5.25704876963573e-07, -8.257144301637709e-09, 2.1559124277481523e-11, 385.0, 0.02313542179763317, -0.00024067991762422025, 5.21629658578604e-07, -0.00024067991762422025, 3.3482315302535426e-06, -8.171743282048283e-09, 5.21629658578604e-07,-8.171743282048283e-09, 2.1280581463667403e-11, 386.0, 0.023076104000210762, -0.0002394400944467634, 5.175963906367542e-07, -0.0002394400944467634, 3.3223177524632774e-06, -8.087443603699285e-09, 5.175963906367542e-07, -8.087443603699285e-09, 2.100634770296761e-11, 387.0, 0.023017089813947678, -0.0002382098464295268, 5.136046752340917e-07, -0.0002382098464295268, 3.2966709113679826e-06, -8.00422839120074e-09, 5.136046752340917e-07, -8.00422839120074e-09, 2.0736343198102247e-11, 388.0, 0.02295837737619877, -0.00023698904260527343, 5.09653887093009e-07, -0.00023698904260527343, 3.2712871416151756e-06, -7.922080769162676e-09, 5.09653887093009e-07, -7.922080769162676e-09, 2.047049335596185e-11, 389.0, 0.022899962961673737, -0.0002357776102144271, 5.057434577793174e-07, -0.0002357776102144271, 3.2461634873470757e-06, -7.840983862195117e-09, 5.057434577793174e-07, -7.840983862195117e-09, 2.0208721848713473e-11, 390.0, 0.02284184657037258, -0.00023457543284166604, 5.01872989389085e-07, -0.00023457543284166604, 3.2212963105848758e-06, -7.760922571264928e-09, 5.01872989389085e-07, -7.760922571264928e-09, 1.9950957552694604e-11, 391.0, 0.022784022614359856, -0.00023338243772741407, 4.980419134881231e-07, -0.00023338243772741407, 3.1966824280971196e-06, -7.681880020982135e-09, 4.980419134881231e-07, -7.681880020982135e-09, 1.9697129344242725e-11, 392.0, 0.02272649109363556, -0.00023219850845634937, 4.94249718485662e-07, -0.00023219850845634937, 3.1723188840260264e-06, -7.603842000492023e-09, 4.94249718485662e-07, -7.603842000492023e-09, 1.9447164364971847e-11, 393.0, 0.022669250145554543, -0.0002310235722688958, 4.90495892790932e-07, -0.0002310235722688958, 3.148202040392789e-06, -7.526791634404617e-09, 4.90495892790932e-07, -7.526791634404617e-09, 1.920099843011336e-11, 394.0, 0.022612296044826508, -0.00022985752730164677, 4.86780038500001e-07, -0.00022985752730164677, 3.1243291687133024e-06, -7.450714711865203e-09, 4.86780038500001e-07, -7.450714711865203e-09, 1.895856215072822e-11, 395.0, 0.022555626928806305, -0.0002287002862431109, 4.831015871786803e-07, -0.0002287002862431109, 3.10069708575611e-06, -7.375596577929855e-09, 4.831015871786803e-07, -7.375596577929855e-09, 1.8719789607324344e-11, 396.0, 0.022499240934848785, -0.00022755177633371204, 4.794601409230381e-07, -0.00022755177633371204, 3.0773028356634313e-06, -7.301423021743858e-09, 4.794601409230381e-07, -7.301423021743858e-09, 1.8484614880409644e-11, 397.0, 0.02244313806295395, -0.00022641188115812838, 4.758551597205951e-07, -0.00022641188115812838, 3.05414323520381e-06, -7.228179388363287e-09, 4.758551597205951e-07, -7.228179388363287e-09, 1.8252978989385937e-11, 398.0, 0.022387312725186348, -0.000225280542508699,4.722862456674193e-07, -0.000225280542508699, 3.0312153285194654e-06, -7.155852355111847e-09, 4.722862456674193e-07, -7.155852355111847e-09, 1.8024816014761136e-11, 399.0, 0.022331764921545982, -0.00022415764397010207, 4.687529155944503e-07, -0.00022415764397010207, 3.0085166144999675e-06, -7.084427267045612e-09, 4.687529155944503e-07, -7.084427267045612e-09, 1.7800068710660533e-11, 400.0, 0.022276490926742554, -0.0002230431418865919, 4.652547715977562e-07,-0.0002230431418865919, 2.986043682540185e-06, -7.013891245577497e-09, 4.652547715977562e-07, -7.013891245577497e-09, 1.7578674627038993e-11, 401.0, 0.022221490740776062, -0.0002219369198428467, 4.617913305082766e-07, -0.0002219369198428467, 2.963794258903363e-06, -6.9442305239419966e-09, 4.617913305082766e-07, -6.9442305239419966e-09, 1.736057651802181e-11, 402.0, 0.022166762501001358, -0.00022083890507929027, 4.583621944220795e-07, -0.00022083890507929027, 2.9417651603580453e-06, -6.8754331117304446e-09, 4.583621944220795e-07, -6.8754331117304446e-09, 1.714571887245775e-11, 403.0, 0.022112302482128143, -0.0002197490248363465, 4.54966908591814e-07, -0.0002197490248363465, 2.9199538857938023e-06, -6.807485242177336e-09, 4.54966908591814e-07, -6.807485242177336e-09, 1.693404270974863e-11, 404.0, 0.02205810882151127, -0.00021866719180252403, 4.516051035352575e-07, -0.00021866719180252403, 2.8983577067265287e-06, -6.740374480784794e-09, 4.516051035352575e-07, -6.740374480784794e-09, 1.6725495988190175e-11, 405.0, 0.022004181519150734, -0.00021759331866633147, 4.4827632450505916e-07, -0.00021759331866633147, 2.876973894672119e-06, -6.674088837144154e-09, 4.4827632450505916e-07, -6.674088837144154e-09, 1.6520021461907675e-11, 406.0, 0.02195051498711109, -0.0002165273472201079, 4.449801735972869e-07, -0.0002165273472201079, 2.855800175893819e-06, -6.60861632084675e-09, 4.449801735972869e-07, -6.60861632084675e-09, 1.63175705586438e-11, 407.0, 0.02189711108803749, -0.000215469190152362, 4.4171625290800876e-07, -0.000215469190152362, 2.8348335945338476e-06, -6.543944497394705e-09, 4.4171625290800876e-07, -6.543944497394705e-09, 1.61180895019708e-11, 408.0, 0.021843966096639633, -0.00021441876015160233, 4.3848416453329264e-07, -0.00021441876015160233, 2.8140716494817752e-06, -6.480061820468563e-09,4.3848416453329264e-07, -6.480061820468563e-09, 1.5921527984907868e-11, 409.0, 0.02179107815027237, -0.00021337599901016802, 4.352835674126254e-07, -0.00021337599901016802, 2.7935120670008473e-06, -6.4169567437488695e-09, 4.352835674126254e-07, -6.4169567437488695e-09, 1.5727835700474202e-11, 410.0, 0.0217384472489357, -0.0002123408339684829, 4.321140352203656e-07, -0.0002123408339684829, 2.7731521186069585e-06, -6.354618165005377e-09, 4.321140352203656e-07,-6.354618165005377e-09, 1.5536964076412474e-11, 411.0, 0.021686067804694176, -0.00021131317771505564, 4.2897517005258123e-07, -0.00021131317771505564, 2.75298975793703e-06, -6.293034537918629e-09, 4.2897517005258123e-07, -6.293034537918629e-09, 1.5348864540465357e-11, 412.0, 0.021633941680192947, -0.00021029295749031007, 4.258666592704685e-07, -0.00021029295749031007, 2.733022256506956e-06, -6.23219520434759e-09, 4.258666592704685e-07, -6.23219520434759e-09, 1.5163491989822475e-11, 413.0, 0.021582065150141716, -0.00020928011508658528, 4.2278810497009545e-07, -0.00020928011508658528, 2.713247340579983e-06, -6.172089062062014e-09, 4.2278810497009545e-07, -6.172089062062014e-09, 1.4980799586949978e-11, 414.0, 0.021530436351895332, -0.0002082745631923899, 4.1973916609094886e-07, -0.0002082745631923899, 2.693662963793031e-06, -6.112706341099283e-09, 4.1973916609094886e-07, -6.112706341099283e-09, 1.4800740494314013e-11, 415.0, 0.021479053422808647, -0.00020727625815197825, 4.167194447290967e-07, -0.00020727625815197825, 2.674266397661995e-06, -6.054035495139942e-09, 4.167194447290967e-07, -6.054035495139942e-09, 1.4623274813274634e-11, 416.0, 0.02142791636288166, -0.00020628509810194373, 4.137286282457353e-07, -0.00020628509810194373, 2.6550555958237965e-06, -5.996067198310584e-09, 4.137286282457353e-07, -5.996067198310584e-09, 1.444835483893625e-11, 417.0, 0.021377021446824074, -0.00020530103938654065, 4.1076637558035145e-07, -0.00020530103938654065, 2.636028511915356e-06, -5.938791236559382e-09, 4.1076637558035145e-07, -5.938791236559382e-09, 1.4275939805297178e-11, 418.0, 0.021326368674635887, -0.00020432399469427764, 4.07832345672432e-07, -0.00020432399469427764, 2.617182872199919e-06, -5.88219739583451e-09, 4.07832345672432e-07, -5.88219739583451e-09, 1.4105988078993992e-11, 419.0, 0.021275954321026802, -0.00020335392036940902, 4.049261690397543e-07, -0.00020335392036940902, 2.598516175567056e-06, -5.8262759061733504e-09, 4.049261690397543e-07, -5.8262759061733504e-09, 1.3938458894025008e-11, 420.0, 0.02122577838599682, -0.00020239072910044342, 4.0204756146522413e-07, -0.00020239072910044342, 2.5800268304010388e-06, -5.771017441702497e-09, 4.0204756146522413e-07, -5.771017441702497e-09, 1.377331148438854e-11, 421.0, 0.021175839006900787, -0.00020143437723163515, 3.9919615346661885e-07, -0.00020143437723163515, 2.5617123355914373e-06, -5.7164126765485435e-09, 3.9919615346661885e-07, -5.7164126765485435e-09, 1.361050595144464e-11, 422.0, 0.02112613245844841, -0.00020048477745149285, 3.9637163240513473e-07, -0.00020048477745149285, 2.543570872148848e-06, -5.662452284838082e-09, 3.9637163240513473e-07, -5.662452284838082e-09, 1.3450004998638576e-11, 423.0, 0.021076660603284836, -0.00019954188610427082,3.9357371406367747e-07, -0.00019954188610427082, 2.525600166336517e-06, -5.609126940697706e-09, 3.9357371406367747e-07, -5.609126940697706e-09, 1.3291769594692138e-11, 424.0, 0.021027417853474617, -0.0001986056158784777, 3.9080208580344333e-07, -0.0001986056158784777, 2.50779839916504e-06, -5.556427762343219e-09, 3.9080208580344333e-07, -5.556427762343219e-09, 1.313576331041233e-11, 425.0, 0.020978406071662903, -0.0001976759231183678, 3.8805640656391915e-07,-0.0001976759231183678, 2.4901635242713382e-06, -5.504346312079633e-09, 3.8805640656391915e-07, -5.504346312079633e-09, 1.298194798188268e-11, 426.0, 0.020929623395204544, -0.0001967527496162802, 3.8533639212801063e-07, -0.0001967527496162802, 2.4726937226660084e-06, -5.452873264033542e-09, 3.8533639212801063e-07, -5.452873264033542e-09, 1.2830289781995408e-11, 427.0, 0.020881064236164093, -0.000195836037164554, 3.82641729856914e-07, -0.000195836037164554, 2.4553869479859713e-06, -5.402000624599168e-09, 3.82641729856914e-07, -5.402000624599168e-09, 1.2680753148919255e-11, 428.0, 0.020832732319831848, -0.00019492569845169783, 3.7997213553353504e-07, -0.00019492569845169783, 2.438241153868148e-06, -5.351719956081524e-09, 3.7997213553353504e-07, -5.351719956081524e-09, 1.2533302520822964e-11, 429.0, 0.020784622058272362, -0.00019402170437388122, 3.7732729651906993e-07, -0.00019402170437388122, 2.4212547486968106e-06, -5.302023264874833e-09, 3.7732729651906993e-07, -5.302023264874833e-09, 1.2387904070598754e-11, 430.0, 0.020736733451485634, -0.00019312398217152804, 3.7470698543984327e-07, -0.00019312398217152804, 2.4044256861088797e-06, -5.252901669194898e-09, 3.7470698543984327e-07, -5.252901669194898e-09, 1.2244525705862319e-11, 431.0, 0.020689066499471664, -0.00019223247363697737, 3.7211086123534187e-07, -0.00019223247363697737, 2.3877523744886275e-06, -5.2043476195251515e-09, 3.7211086123534187e-07, -5.2043476195251515e-09, 1.2103134466867616e-11, 432.0, 0.020641617476940155, -0.0001913471205625683, 3.695386681101809e-07, -0.0001913471205625683, 2.371232767472975e-06, -5.156353566349026e-09, 3.695386681101809e-07, -5.156353566349026e-09, 1.19636973938686e-11, 433.0, 0.020594384521245956, -0.00019046787929255515, 3.66990121847266e-07, -0.00019046787929255515, 2.3548650460725185e-06, -5.108911071971534e-09,3.66990121847266e-07, -5.108911071971534e-09, 1.1826183261842704e-11, 434.0, 0.02054736763238907, -0.00018959467706736177, 3.644649666512123e-07, -0.00018959467706736177, 2.3386478460452054e-06, -5.062013475054528e-09, 3.644649666512123e-07, -5.062013475054528e-09, 1.16905617131291e-11, 435.0, 0.020500564947724342, -0.00018872745567932725, 3.6196291830492555e-07, -0.00018872745567932725, 2.3225791210279567e-06, -5.0156523379030205e-09, 3.6196291830492555e-07,-5.0156523379030205e-09, 1.1556802390066956e-11, 436.0, 0.020453976467251778, -0.00018786618602462113, 3.5948372101302084e-07, -0.00018786618602462113, 2.3066572794050444e-06, -4.9698209991788644e-09, 3.5948372101302084e-07, -4.9698209991788644e-09, 1.1424875802357182e-11, 437.0, 0.020407598465681076, -0.00018701079534366727, 3.5702709055840387e-07, -0.00018701079534366727, 2.2908807295607403e-06, -4.924511909365492e-09, 3.5702709055840387e-07, -4.924511909365492e-09, 1.1294751592338947e-11, 438.0, 0.02036142908036709, -0.00018616123998071998, 3.5459282798910863e-07, -0.00018616123998071998, 2.2752474251319654e-06, -4.879717963035546e-09, 3.5459282798910863e-07, -4.879717963035546e-09, 1.1166402004436637e-11, 439.0, 0.020315470173954964, -0.00018531744717620313, 3.521806206663314e-07, -0.00018531744717620313, 2.259756456624018e-06, -4.835432054761668e-09, 3.521806206663314e-07, -4.835432054761668e-09, 1.1039799283074636e-11, 440.0, 0.020269716158509254, -0.00018447938782628626, 3.497902696381061e-07, -0.00018447938782628626, 2.2444055503001437e-06, -4.791647523205711e-09, 3.497902696381061e-07, -4.791647523205711e-09, 1.091491480531559e-11, 441.0, 0.02022416889667511, -0.00018364698917139322, 3.474214906873385e-07, -0.00018364698917139322, 2.2291933419182897e-06, -4.748357262940317e-09, 3.474214906873385e-07, -4.748357262940317e-09, 1.0791721682945621e-11, 442.0, 0.02017882652580738, -0.00018282022210769355, 3.4507402801864373e-07, -0.00018282022210769355, 2.2141184672364034e-06, -4.705555056716548e-09, 3.4507402801864373e-07, -4.705555056716548e-09, 1.0670193027750852e-11, 443.0, 0.02013368532061577, -0.00018199902842752635, 3.4274771110176516e-07, -0.00018199902842752635, 2.1991791072650813e-06, -4.663233799107047e-09, 3.4274771110176516e-07, -4.663233799107047e-09, 1.0550302818879143e-11, 444.0, 0.020088747143745422, -0.0001811833499232307, 3.404422272978991e-07, -0.0001811833499232307, 2.1843738977622706e-06, -4.621387716952086e-09, 3.404422272978991e-07, -4.621387716952086e-09, 1.0432025902840092e-11, 445.0, 0.020044008269906044, -0.00018037314293906093, 3.3815737765507947e-07, -0.00018037314293906093, 2.1697012471122434e-06, -4.580009704824306e-09, 3.3815737765507947e-07, -4.580009704824306e-09, 1.0315337126143298e-11, 446.0, 0.019999468699097633, -0.00017956836381927133, 3.358929347996309e-07, -0.00017956836381927133, 2.1551595636992715e-06, -4.5390935454747705e-09, 3.358929347996309e-07, -4.5390935454747705e-09, 1.0200210467936621e-11, 447.0, 0.019955124706029892, -0.000178768954356201, 3.3364864293616847e-07, -0.000178768954356201, 2.1407477106549777e-06, -4.498633465743751e-09, 3.3364864293616847e-07, -4.498633465743751e-09, 1.0086622509453136e-11, 448.0, 0.01991098001599312, -0.00017797487089410424,3.314243315344356e-07, -0.00017797487089410424, 2.126464096363634e-06, -4.45862324838231e-09, 3.314243315344356e-07, -4.45862324838231e-09, 9.974548964564178e-12, 449.0, 0.019867029041051865, -0.00017718605522532016, 3.292197447990475e-07, -0.00017718605522532016, 2.112307129209512e-06, -4.4190566761415084e-09, 3.292197447990475e-07, -4.4190566761415084e-09, 9.863966414502823e-12, 450.0, 0.019823269918560982, -0.00017640249279793352, 3.270346553563286e-07,-0.00017640249279793352, 2.0982756723242346e-06, -4.379928419950829e-09, 3.270346553563286e-07, -4.379928419950829e-09, 9.754851440502144e-12, 451.0, 0.01977970451116562, -0.00017562409630045295, 3.2486886425431294e-07, -0.00017562409630045295, 2.084368134092074e-06, -4.341231818472124e-09, 3.2486886425431294e-07, -4.341231818472124e-09, 9.647182358518691e-12, 452.0, 0.019736330956220627, -0.00017485085118096322, 3.227221441193251e-07, -0.00017485085118096322, 2.0705833776446525e-06, -4.302961986724085e-09, 3.227221441193251e-07, -4.302961986724085e-09, 9.54093574978554e-12, 453.0, 0.019693145528435707, -0.00017408271378371865, 3.2059429599939904e-07, -0.00017408271378371865, 2.0569198113662424e-06, -4.265112707457774e-09, 3.2059429599939904e-07, -4.265112707457774e-09, 9.43608993025924e-12, 454.0, 0.01965015009045601, -0.0001733196113491431, 3.1848512094256876e-07, -0.0001733196113491431, 2.0433762983884662e-06, -4.227678651602673e-09, 3.1848512094256876e-07, -4.227678651602673e-09, 9.332624083258079e-12, 455.0, 0.019607342779636383, -0.0001725615147734061, 3.1639441999686824e-07, -0.0001725615147734061, 2.029951247095596e-06, -4.190654490088264e-09, 3.1639441999686824e-07, -4.190654490088264e-09, 9.230516524738608e-12, 456.0, 0.01956471987068653, -0.00017180838040076196, 3.1432196578862204e-07, -0.00017180838040076196, 2.0166435206192546e-06, -4.1540348938440275e-09, 3.1432196578862204e-07, -4.1540348938440275e-09, 9.129746438019115e-12, 457.0, 0.019522281363606453, -0.00017106017912738025, 3.122675877875736e-07, -0.00017106017912738025, 2.0034519820910646e-06, -4.117814089710237e-09, 3.122675877875736e-07, -4.117814089710237e-09, 9.030293873779627e-12, 458.0, 0.01948002725839615, -0.00017031683819368482, 3.102310586200474e-07, -0.00017031683819368482, 1.9903752672689734e-06, -4.081987636794793e-09,3.102310586200474e-07, -4.081987636794793e-09, 8.932138882700169e-12, 459.0, 0.01943795569241047, -0.00016957834304776043, 3.082121793340775e-07, -0.00016957834304776043, 1.9774120119109284e-06, -4.0465497619379676e-09, 3.082121793340775e-07, -4.0465497619379676e-09, 8.83526064809903e-12, 460.0, 0.019396066665649414, -0.00016884463548194617, 3.0621080782111676e-07, -0.00016884463548194617, 1.964561306522228e-06, -4.011495580158453e-09, 3.0621080782111676e-07,-4.011495580158453e-09, 8.739640955379713e-12, 461.0, 0.019354356452822685, -0.0001681156863924116, 3.042267167074897e-07, -0.0001681156863924116, 1.9518215594871435e-06, -3.9768197623857304e-09, 3.042267167074897e-07, -3.9768197623857304e-09, 8.64526072258398e-12, 462.0, 0.019312825053930283, -0.000167391452123411, 3.022597354629397e-07, -0.000167391452123411, 1.9391916339372983e-06, -3.942518311816912e-09, 3.022597354629397e-07, -3.942518311816912e-09, 8.552100867753598e-12, 463.0, 0.019271472468972206, -0.0001666718744672835, 3.0030966513550084e-07, -0.0001666718744672835, 1.9266706203779904e-06, -3.908585899381478e-09, 3.0030966513550084e-07, -3.908585899381478e-09, 8.46014230893033e-12, 464.0, 0.019230296835303307, -0.0001659569243201986, 2.983763636166259e-07, -0.0001659569243201986, 1.9142569271934917e-06, -3.875017640098122e-09, 2.983763636166259e-07, -3.875017640098122e-09, 8.369368566241153e-12, 465.0, 0.019189296290278435, -0.00016524657257832587, 2.9645960353263945e-07, -0.00016524657257832587, 1.901949872262776e-06, -3.841809093074744e-09, 2.9645960353263945e-07, -3.841809093074744e-09, 8.279760557727833e-12, 466.0, 0.01914846897125244, -0.00016454077558591962, 2.945592143532849e-07, -0.00016454077558591962, 1.8897480913437903e-06, -3.808955373330036e-09, 2.945592143532849e-07, -3.808955373330036e-09, 8.191301803517348e-12, 467.0, 0.019107816740870476, -0.00016383948968723416, 2.926750255483057e-07, -0.00016383948968723416, 1.87765033388132e-06, -3.7764520399719e-09, 2.926750255483057e-07, -3.7764520399719e-09, 8.1039740890132e-12, 468.0, 0.01906733587384224, -0.00016314267122652382, 2.908068950091547e-07, -0.00016314267122652382, 1.8656556903806631e-06, -3.744294652108238e-09, 2.908068950091547e-07, -3.744294652108238e-09, 8.017761801704104e-12, 469.0, 0.019027026370167732, -0.00016245029109995812, 2.8895462378386583e-07, -0.00016245029109995812, 1.8537630239734426e-06, -3.7124789908915545e-09, 2.8895462378386583e-07, -3.7124789908915545e-09, 7.932647594355302e-12, 470.0, 0.018986886367201805, -0.0001617623056517914, 2.8711804134218255e-07, -0.0001617623056517914, 1.8419710841044434e-06, -3.6810006154297525e-09, 2.8711804134218255e-07, -3.6810006154297525e-09, 7.848614987093772e-12, 471.0, 0.018946915864944458, -0.00016107868577819318, 2.852970055755577e-07, -0.00016107868577819318, 1.8302790749658016e-06, -3.649855084830733e-09, 2.852970055755577e-07, -3.649855084830733e-09, 7.765649234769967e-12, 472.0, 0.01890711300075054, -0.00016039938782341778, 2.834913175320253e-07, -0.00016039938782341778, 1.818685746002302e-06, -3.619038180247003e-09, 2.834913175320253e-07, -3.619038180247003e-09, 7.683732990149128e-12, 473.0, 0.018867477774620056, -0.00015972438268363476,2.8170086352474755e-07, -0.00015972438268363476, 1.8071901877192431e-06, -3.588545904875673e-09, 2.8170086352474755e-07, -3.588545904875673e-09, 7.60285150808171e-12, 474.0, 0.018828008323907852, -0.00015905362670309842, 2.7992541618004907e-07, -0.00015905362670309842, 1.7957912632482476e-06, -3.55837403986925e-09, 2.7992541618004907e-07, -3.55837403986925e-09, 7.522989176056427e-12, 475.0, 0.01878870278596878, -0.0001583870907779783, 2.7816489023280155e-07,-0.0001583870907779783, 1.7844880630946136e-06, -3.528518588424845e-09, 2.7816489023280155e-07, -3.528518588424845e-09, 7.444132116285473e-12, 476.0, 0.01874956116080284, -0.00015772473125252873, 2.76419086731039e-07, -0.00015772473125252873, 1.773279450389964e-06, -3.4989757757841744e-09, 2.76419086731039e-07, -3.4989757757841744e-09, 7.366264716257565e-12, 477.0, 0.018710583448410034, -0.00015706651902291924, 2.746878635662142e-07, -0.00015706651902291924, 1.762164515639597e-06, -3.4697413830997448e-09, 2.746878635662142e-07, -3.4697413830997448e-09, 7.289372230823155e-12, 478.0, 0.01867176592350006, -0.00015641242498531938, 2.7297105020807066e-07, -0.00015641242498531938, 1.751142349348811e-06, -3.4408116356132723e-09, 2.7297105020807066e-07, -3.4408116356132723e-09, 7.213441649556174e-12, 479.0, 0.01863311044871807, -0.00015576239093206823, 2.712685329697706e-07, -0.00015576239093206823, 1.7402118146492285e-06, -3.412182980611078e-09, 2.712685329697706e-07, -3.412182980611078e-09, 7.138457793626207e-12, 480.0, 0.018594613298773766, -0.0001551164168631658, 2.6958014132105745e-07, -0.0001551164168631658, 1.7293721157329855e-06, -3.383851199245669e-09, 2.6958014132105745e-07, -3.383851199245669e-09, 7.064407652607185e-12, 481.0, 0.018556276336312294, -0.00015447444457095116, 2.6790573315338406e-07, -0.00015447444457095116, 1.7186222294185427e-06, -3.3558129608479703e-09, 2.6790573315338406e-07, -3.3558129608479703e-09, 6.991276915030431e-12, 482.0, 0.018518095836043358, -0.0001538364595035091, 2.662451663582033e-07, -0.0001538364595035091, 1.7079613598980359e-06, -3.328064490659699e-09, 2.662451663582033e-07, -3.328064490659699e-09, 6.919053004150744e-12, 483.0, 0.018480073660612106, -0.0001532024034531787, 2.645982704052585e-07, -0.0001532024034531787, 1.6973883703030879e-06, -3.300602235967176e-09,2.645982704052585e-07, -3.300602235967176e-09, 6.847722475861184e-12, 484.0, 0.01844220608472824, -0.00015257227641995996, 2.629649600294215e-07, -0.00015257227641995996, 1.6869024648258346e-06, -3.2734228661013276e-09, 2.629649600294215e-07, -3.2734228661013276e-09, 6.777272753416552e-12, 485.0, 0.018404493108391762, -0.00015194602019619197, 2.613450647004356e-07, -0.00015194602019619197, 1.676502847658412e-06, -3.246522384259265e-09, 2.613450647004356e-07,-3.246522384259265e-09, 6.7076908263907775e-12, 486.0, 0.01836693473160267, -0.00015132360567804426, 2.597384138880443e-07, -0.00015132360567804426, 1.6661884956192807e-06, -3.219897903861124e-09, 2.597384138880443e-07, -3.219897903861124e-09, 6.638964551719528e-12, 487.0, 0.018329529091715813, -0.0001507050183136016, 2.581449507488287e-07, -0.0001507050183136016, 1.6559584992137388e-06, -3.1935456501486215e-09, 2.581449507488287e-07, -3.1935456501486215e-09, 6.571081352657604e-12, 488.0, 0.018292276188731194, -0.00015009021444711834, 2.5656444790911337e-07, -0.00015009021444711834, 1.64581217632076e-06, -3.167462514497288e-09, 2.5656444790911337e-07, -3.167462514497288e-09, 6.5040295198215414e-12, 489.0, 0.018255174160003662, -0.00014947915042284876, 2.5499684852547944e-07, -0.00014947915042284876, 1.6357485037588049e-06, -3.1416449441934446e-09, 2.5499684852547944e-07, -3.1416449441934446e-09, 6.437797343827878e-12, 490.0, 0.01821822114288807, -0.00014887182624079287, 2.534419820676703e-07, -0.00014887182624079287, 1.625766799406847e-06, -3.1160900526572277e-09, 2.534419820676703e-07, -3.1160900526572277e-09, 6.372372247931413e-12, 491.0, 0.018181419000029564, -0.00014826819824520499, 2.5189976327055774e-07, -0.00014826819824520499, 1.6158661537701846e-06, -3.0907945092195632e-09, 2.5189976327055774e-07, -3.0907945092195632e-09, 6.30774382379129e-12, 492.0, 0.018144764006137848, -0.00014766822278033942, 2.503699931821757e-07, -0.00014766822278033942, 1.606045657354116e-06, -3.0657549832113773e-09, 2.503699931821757e-07, -3.0657549832113773e-09, 6.243900362024046e-12, 493.0, 0.01810825802385807, -0.00014707188529428095, 2.4885261495910527e-07, -0.00014707188529428095, 1.5963046280376147e-06, -3.040968588052806e-09, 2.4885261495910527e-07, -3.040968588052806e-09, 6.1808305869270885e-12, 494.0, 0.018071897327899933, -0.0001464791566831991, 2.4734745807108993e-07, -0.0001464791566831991, 1.5866421563259792e-06, -3.01643221511938e-09, 2.4734745807108993e-07, -3.01643221511938e-09, 6.1185236564786916e-12, 495.0, 0.018035681918263435, -0.00014589000784326345, 2.4585440883129195e-07, -0.00014589000784326345, 1.5770575600981829e-06, -2.992142755786631e-09, 2.4585440883129195e-07, -2.992142755786631e-09, 6.0569691623379995e-12, 496.0, 0.017999611794948578, -0.00014530439511872828, 2.443733535528736e-07, -0.00014530439511872828, 1.5675499298595241e-06, -2.9680973234746943e-09, 2.443733535528736e-07, -2.9680973234746943e-09, 5.9961562624832876e-12, 497.0, 0.01796368695795536, -0.00014472230395767838, 2.4290417854899715e-07, -0.00014472230395767838, 1.5581186971758143e-06, -2.9442930316037064e-09, 2.4290417854899715e-07, -2.9442930316037064e-09, 5.9360745485737e-12, 498.0, 0.017927903681993484, -0.00014414370525628328,2.4144674171111546e-07, -0.00014414370525628328, 1.548762838865514e-06, -2.920726771549198e-09, 2.4144674171111546e-07, -2.920726771549198e-09, 5.8767140459492495e-12, 499.0, 0.0178922638297081, -0.00014356856991071254, 2.4000095777410024e-07, -0.00014356856991071254, 1.539481900181272e-06, -2.89739587877591e-09, 2.4000095777410024e-07, -2.89739587877591e-09, 5.818063912588212e-12, 500.0, 0.017856763675808907, -0.0001429968688171357, 2.3856668462940434e-07,-0.0001429968688171357, 1.5302748579415493e-06, -2.874297466703979e-09, 2.3856668462940434e-07, -2.874297466703979e-09, 5.7601150411923374e-12, 501.0, 0.017821406945586205, -0.0001424285874236375, 2.3714382280104473e-07, -0.0001424285874236375, 1.5211410300253192e-06, -2.851428870798145e-09, 2.3714382280104473e-07, -2.851428870798145e-09, 5.70285745710164e-12, 502.0, 0.017786188051104546, -0.00014186366752255708, 2.3573225860218372e-07, -0.00014186366752255708, 1.5120798479983932e-06, -2.8287872044785445e-09, 2.3573225860218372e-07, -2.8287872044785445e-09, 5.646281619337001e-12, 503.0, 0.01775110699236393, -0.00014130212366580963, 2.3433186413512885e-07, -0.00014130212366580963, 1.5030905160529073e-06, -2.8063695811653133e-09, 2.3433186413512885e-07, -2.8063695811653133e-09, 5.590377986919304e-12, 504.0, 0.017716165632009506, -0.00014074388309381902, 2.3294255413475184e-07, -0.00014074388309381902, 1.4941722383809974e-06, -2.7841737804124023e-09, 2.3294255413475184e-07, -2.7841737804124023e-09, 5.535137018869429e-12, 505.0, 0.017681362107396126, -0.00014018896035850048, 2.3156418649250554e-07, -0.00014018896035850048, 1.4853243328616372e-06, -2.7621971376845522e-09, 2.3156418649250554e-07, -2.7621971376845522e-09, 5.480549607889129e-12, 506.0, 0.01764669455587864, -0.00013963731180410832, 2.3019669015411637e-07, -0.00013963731180410832, 1.476546231060638e-06, -2.740436766401899e-09, 2.3019669015411637e-07, -2.740436766401899e-09, 5.426607514041892e-12, 507.0, 0.017612161114811897, -0.0001390889083268121, 2.2883992301103717e-07, -0.0001390889083268121, 1.467837137170136e-06, -2.718890224073789e-09, 2.2883992301103717e-07, -2.718890224073789e-09, 5.373300762667732e-12, 508.0, 0.01757776364684105, -0.00013854373537469655, 2.2749381400899438e-07, -0.00013854373537469655, 1.4591963690691045e-06, -2.6975550682095673e-09,2.2749381400899438e-07, -2.6975550682095673e-09, 5.320621547511006e-12, 509.0, 0.017543500289320946, -0.00013800174929201603, 2.2615823525029555e-07, -0.00013800174929201603, 1.4506233583233552e-06, -2.67642885631858e-09, 2.2615823525029555e-07, -2.67642885631858e-09, 5.268560327592597e-12, 510.0, 0.017509371042251587, -0.00013746295007877052, 2.2483308725895768e-07, -0.00013746295007877052, 1.4421173091250239e-06, -2.6555089238655682e-09, 2.2483308725895768e-07,-2.6555089238655682e-09, 5.217109730337732e-12, 511.0, 0.017475374042987823, -0.00013692729407921433, 2.2351827055899776e-07, -0.00013692729407921433, 1.433677653039922e-06, -2.6347930504044825e-09, 2.2351827055899776e-07, -2.6347930504044825e-09, 5.166260648448162e-12, 512.0, 0.017441507428884506, -0.00013639476674143225, 2.2221368567443278e-07, -0.00013639476674143225, 1.4253037079470232e-06, -2.6142787934446687e-09, 2.2221368567443278e-07, -2.6142787934446687e-09, 5.116005275668245e-12, 513.0, 0.017407773062586784, -0.0001358653389615938, 2.2091924734013446e-07, -0.0001358653389615938, 1.416994905412139e-06, -2.5939637104954727e-09, 2.2091924734013446e-07, -2.5939637104954727e-09, 5.06633537206147e-12, 514.0, 0.01737416908144951, -0.00013533898163586855, 2.1963482765841036e-07, -0.00013533898163586855, 1.408750449627405e-06, -2.573845581110845e-09, 2.1963482765841036e-07, -2.573845581110845e-09, 5.0172431313721955e-12, 515.0, 0.01734069362282753, -0.00013481568021234125, 2.183603555749869e-07, -0.00013481568021234125, 1.4005699995323084e-06, -2.553922184844737e-09, 2.183603555749869e-07, -2.553922184844737e-09, 4.96872031366391e-12, 516.0, 0.017307348549365997, -0.00013429540558718145, 2.1709571740302636e-07, -0.00013429540558718145, 1.3924526456321473e-06, -2.5341913012510986e-09, 2.1709571740302636e-07, -2.5341913012510986e-09, 4.9207595463618414e-12, 517.0, 0.017274130135774612, -0.00013377814320847392, 2.1584082787740044e-07, -0.00013377814320847392, 1.3843979331795708e-06, -2.514650487839276e-09, 2.1584082787740044e-07, -2.514650487839276e-09, 4.873353456891216e-12, 518.0, 0.017241038382053375, -0.0001332638639723882, 2.1459558752212615e-07, -0.0001332638639723882, 1.3764051800535526e-06, -2.4952975241632203e-09, 2.1459558752212615e-07, -2.4952975241632203e-09, 4.826494238996393e-12, 519.0, 0.017208075150847435, -0.00013275253877509385, 2.133599110720752e-07, -0.00013275253877509385, 1.368473817819904e-06, -2.4761306338660916e-09, 2.133599110720752e-07, -2.4761306338660916e-09, 4.780174953783467e-12, 520.0, 0.017175236716866493, -0.00013224415306467563, 2.1213371326211927e-07, -0.00013224415306467563, 1.3606033917312743e-06, -2.457147152412631e-09, 2.1213371326211927e-07, -2.457147152412631e-09, 4.734387794996797e-12, 521.0, 0.01714252308011055, -0.00013173867773730308, 2.1091688040542067e-07, -0.00013173867773730308, 1.3527931059797993e-06, -2.438345525490604e-09, 2.1091688040542067e-07, -2.438345525490604e-09, 4.689125823742479e-12, 522.0, 0.017109934240579605, -0.0001312361127929762, 2.097093414477058e-07, -0.0001312361127929762, 1.3450425058181281e-06, -2.4197230885647514e-09, 2.097093414477058e-07, -2.4197230885647514e-09, 4.6443821011266095e-12, 523.0, 0.01707746833562851, -0.00013073640002403408,2.0851099691299169e-07, -0.00013073640002403408, 1.3373510228120722e-06, -2.401278287322839e-09, 2.0851099691299169e-07, -2.401278287322839e-09, 4.600150121936153e-12, 524.0, 0.017045125365257263, -0.00013023953943047673, 2.0732177574700472e-07, -0.00013023953943047673, 1.3297180885274429e-06, -2.383008901318817e-09, 2.0732177574700472e-07, -2.383008901318817e-09, 4.5564225135963365e-12, 525.0, 0.017012905329465866, -0.00012974550190847367, 2.061415784737619e-07,-0.00012974550190847367, 1.3221431345300516e-06, -2.364912932151242e-09, 2.061415784737619e-07, -2.364912932151242e-09, 4.5131927708941255e-12, 526.0, 0.01698080636560917, -0.00012925428745802492, 2.0497031982813496e-07, -0.00012925428745802492, 1.314625478698872e-06, -2.3469883814186687e-09, 2.0497031982813496e-07, -2.3469883814186687e-09, 4.470453954935616e-12, 527.0, 0.016948828473687172, -0.00012876583787146956, 2.0380791454499558e-07, -0.00012876583787146956, 1.3071648936602287e-06, -2.3292332507196534e-09, 2.0380791454499558e-07, -2.3292332507196534e-09, 4.428199994188642e-12, 528.0, 0.016916971653699875, -0.00012828016770072281, 2.026542915700702e-07, -0.00012828016770072281, 1.2997604699194198e-06, -2.3116457636973564e-09, 2.026542915700702e-07, -2.3116457636973564e-09, 4.386424817121037e-12, 529.0, 0.01688523404300213, -0.000127797233290039, 2.015093514273758e-07, -0.000127797233290039, 1.29241198010277e-06, -2.2942241439949385e-09, 2.015093514273758e-07, -2.2942241439949385e-09, 4.3451214848388986e-12, 530.0, 0.016853613778948784, -0.0001273170200875029, 2.003730088517841e-07, -0.0001273170200875029, 1.285118742089253e-06, -2.2769661711663503e-09, 2.003730088517841e-07, -2.2769661711663503e-09, 4.3042834921291906e-12, 531.0, 0.01682211458683014, -0.00012683949898928404, 1.9924520699987625e-07, -0.00012683949898928404, 1.2778803011315176e-06, -2.2598700688547524e-09, 1.9924520699987625e-07, -2.2598700688547524e-09, 4.2639056348214854e-12, 532.0, 0.016790730878710747, -0.00012636466999538243, 1.9812586060652393e-07, -0.00012636466999538243, 1.2706962024822133e-06, -2.2429342827479104e-09, 1.9812586060652393e-07, -2.2429342827479104e-09, 4.223981407702748e-12, 533.0, 0.016759464517235756, -0.0001258925040019676, 1.9701487019574415e-07, -0.0001258925040019676, 1.2635657640203135e-06, -2.22615681444438e-09,1.9701487019574415e-07, -2.22615681444438e-09, 4.184505172921682e-12, 534.0, 0.016728313639760017, -0.00012542297190520912, 1.9591217892411805e-07, -0.00012542297190520912, 1.2564885309984675e-06, -2.2095358875873217e-09, 1.9591217892411805e-07, -2.2095358875873217e-09, 4.145470425265252e-12, 535.0, 0.01669727824628353, -0.00012495607370510697, 1.9481768731566262e-07, -0.00012495607370510697, 1.2494640486693243e-06, -2.193069725819896e-09, 1.9481768731566262e-07,-2.193069725819896e-09, 4.10687196056303e-12, 536.0, 0.016666360199451447, -0.00012449176574591547, 1.9373135273781372e-07, -0.00012449176574591547, 1.2424919759723707e-06, -2.176756774829869e-09, 1.9373135273781372e-07, -2.176756774829869e-09, 4.068704140963719e-12, 537.0, 0.016635553911328316, -0.00012403004802763462, 1.9265306150373362e-07, -0.00012403004802763462, 1.2355715170997428e-06, -2.1605952582604004e-09, 1.9265306150373362e-07, -2.1605952582604004e-09, 4.030960894935154e-12, 538.0, 0.016604861244559288, -0.00012357089144643396, 1.9158277098085819e-07, -0.00012357089144643396, 1.228702444677765e-06, -2.1445831777100466e-09, 1.9158277098085819e-07, -2.1445831777100466e-09, 3.993637451987775e-12, 539.0, 0.016574284061789513, -0.00012311428145039827, 1.9052039590405911e-07, -0.00012311428145039827, 1.2218841902722488e-06, -2.1287194229557826e-09, 1.9052039590405911e-07, -2.1287194229557826e-09, 3.956727740589416e-12, 540.0, 0.016543816775083542, -0.00012266018893569708, 1.8946585100820812e-07, -0.00012266018893569708, 1.2151162991358433e-06, -2.1130019955961643e-09, 1.8946585100820812e-07, -2.1130019955961643e-09, 3.92022655656965e-12, 541.0, 0.016513463109731674, -0.0001222086139023304, 1.8841907944988634e-07, -0.0001222086139023304, 1.2083982028343598e-06, -2.097429341318957e-09, 1.8841907944988634e-07, -2.097429341318957e-09, 3.884128695758049e-12, 542.0, 0.01648321934044361, -0.00012175952724646777, 1.8737999596396548e-07, -0.00012175952724646777, 1.201729673994123e-06, -2.0820001278565314e-09, 1.8737999596396548e-07, -2.0820001278565314e-09, 3.848428953984184e-12, 543.0, 0.016453085467219353, -0.00012131290714023635, 1.863485579178814e-07, -0.00012131290714023635, 1.1951100304941065e-06, -2.066712134762838e-09, 1.863485579178814e-07, -2.066712134762838e-09, 3.813122127077628e-12, 544.0, 0.016423063352704048, -0.00012086874630767852, 1.853246658356511e-07, -0.00012086874630767852, 1.188538931273797e-06, -2.0515644738594574e-09, 1.853246658356511e-07, -2.0515644738594574e-09, 3.778203444548822e-12, 545.0, 0.0163931492716074, -0.00012042701564496383, 1.84308248663001e-07, -0.00012042701564496383, 1.182015921585844e-06, -2.03655536878955e-09, 1.84308248663001e-07, -2.03655536878955e-09, 3.743667702227338e-12, 546.0, 0.016363345086574554, -0.00011998770060017705, 1.8329926376736694e-07, -0.00011998770060017705, 1.175540546682896e-06, -2.0216830431962762e-09, 1.8329926376736694e-07, -2.0216830431962762e-09, 3.7095101296236166e-12, 547.0, 0.016333648934960365, -0.00011955078662140295, 1.8229762588362064e-07, -0.00011955078662140295, 1.1691124655044405e-06, -2.0069463868566118e-09, 1.8229762588362064e-07, -2.0069463868566118e-09, 3.675725956248099e-12, 548.0, 0.01630406081676483, -0.00011911625188076869,1.8130327816834324e-07, -0.00011911625188076869, 1.1627311096162884e-06, -1.992343845458322e-09, 1.8130327816834324e-07, -1.992343845458322e-09, 3.642310411611227e-12, 549.0, 0.016274578869342804, -0.00011868408910231665, 1.8031614956726116e-07, -0.00011868408910231665, 1.1563960242710891e-06, -1.9778736426445676e-09, 1.8031614956726116e-07, -1.9778736426445676e-09, 3.6092585083830064e-12, 550.0, 0.016245203092694283, -0.00011825426918221638, 1.7933616902610083e-07,-0.00011825426918221638, 1.150106982095167e-06, -1.963534668192324e-09, 1.7933616902610083e-07, -1.963534668192324e-09, 3.5765659097547475e-12, 551.0, 0.016215933486819267, -0.00011782678484451026, 1.783632797014434e-07, -0.00011782678484451026, 1.1438634146543336e-06, -1.9493253677893563e-09, 1.783632797014434e-07, -1.9493253677893563e-09, 3.544228062077326e-12, 552.0, 0.01618676818907261, -0.00011740160698536783, 1.7739741053901525e-07, -0.00011740160698536783, 1.1376649808880757e-06, -1.9352444091680354e-09, 1.7739741053901525e-07, -1.9352444091680354e-09, 3.512240411701617e-12, 553.0, 0.016157709062099457, -0.0001169787283288315, 1.7643850469539757e-07, -0.0001169787283288315, 1.13151133973588e-06, -1.9212904600607317e-09, 1.7643850469539757e-07, -1.9212904600607317e-09, 3.480598621818931e-12, 554.0, 0.01612875424325466, -0.000116558134322986, 1.7548650532717147e-07, -0.000116558134322986, 1.125401922763558e-06, -1.9074619661552106e-09, 1.7548650532717147e-07, -1.9074619661552106e-09, 3.449298355620578e-12, 555.0, 0.016099901869893074, -0.00011613980313995853, 1.7454132716920867e-07, -0.00011613980313995853, 1.1193363889105967e-06, -1.8937575951838426e-09, 1.7454132716920867e-07, -1.8937575951838426e-09, 3.4183350594574335e-12, 556.0, 0.016071153804659843, -0.00011572372022783384, 1.7360294179979974e-07, -0.00011572372022783384, 1.113314283429645e-06, -1.880176236923603e-09, 1.7360294179979974e-07, -1.880176236923603e-09, 3.3877048302016766e-12, 557.0, 0.01604250632226467, -0.00011530986375873908, 1.7267126395381638e-07, -0.00011530986375873908, 1.1073354926338652e-06, -1.8667163370622575e-09, 1.7267126395381638e-07, -1.8667163370622575e-09, 3.357403331044617e-12, 558.0, 0.016013963147997856, -0.00011489822645671666, 1.7174623678783973e-07, -0.00011489822645671666, 1.101399334402231e-06, -1.8533765633321764e-09,1.7174623678783973e-07, -1.8533765633321764e-09, 3.3274266588584345e-12, 559.0, 0.01598551869392395, -0.00011448879376985133, 1.7082780345845094e-07, -0.00011448879376985133, 1.0955054676742293e-06, -1.8401559165326375e-09, 1.7082780345845094e-07, -1.8401559165326375e-09, 3.2977704768344385e-12, 560.0, 0.015957176685333252, -0.00011408154387027025, 1.6991590712223115e-07, -0.00011408154387027025, 1.0896536650761846e-06, -1.8270528423514065e-09, 1.6991590712223115e-07,-1.8270528423514065e-09, 3.2684308818448082e-12, 561.0, 0.015928935259580612, -0.0001136764622060582, 1.690105051466162e-07, -0.0001136764622060582, 1.083843471860746e-06, -1.8140661195431562e-09, 1.690105051466162e-07, -1.8140661195431562e-09, 3.239403970761723e-12, 562.0, 0.01590079255402088, -0.00011327353422529995, 1.681115122664778e-07, -0.00011327353422529995, 1.0780744332805625e-06, -1.8011947489071645e-09, 1.681115122664778e-07, -1.8011947489071645e-09, 3.2106858404573613e-12, 563.0, 0.01587275043129921, -0.00011287274537608027, 1.6721888584925182e-07, -0.00011287274537608027, 1.0723463219619589e-06, -1.7884371761311968e-09, 1.6721888584925182e-07, -1.7884371761311968e-09, 3.1822725878039027e-12, 564.0, 0.015844807028770447, -0.00011247407383052632, 1.6633255484066467e-07, -0.00011247407383052632, 1.0666586831575842e-06, -1.775792402014531e-09, 1.6633255484066467e-07, -1.775792402014531e-09, 3.154160743354395e-12, 565.0, 0.015816960483789444, -0.0001120775195886381, 1.6545249081900693e-07, -0.0001120775195886381, 1.0610112894937629e-06, -1.7632592053118401e-09, 1.6545249081900693e-07, -1.7632592053118401e-09, 3.126346187140583e-12, 566.0, 0.01578921265900135, -0.00011168305354658514, 1.64578622730005e-07, -0.00011168305354658514, 1.0554035725363065e-06, -1.7508364758000994e-09, 1.64578622730005e-07, -1.7508364758000994e-09, 3.0988254497155143e-12, 567.0, 0.015761561691761017, -0.00011129066842840984, 1.6371089373024006e-07, -0.00011129066842840984, 1.0498354185983771e-06, -1.7385227701893768e-09, 1.6371089373024006e-07, -1.7385227701893768e-09, 3.0715950616322374e-12, 568.0, 0.015734007582068443, -0.00011090034968219697, 1.6284926118714793e-07, -0.00011090034968219697, 1.0443062592457864e-06, -1.7263173113235553e-09, 1.6284926118714793e-07, -1.7263173113235553e-09, 3.0446513366033656e-12, 569.0, 0.01570654846727848, -0.00011051207548007369, 1.6199366825730976e-07, -0.00011051207548007369, 1.0388158671048586e-06, -1.7142186559127026e-09, 1.6199366825730976e-07, -1.7142186559127026e-09, 3.0179905883415126e-12, 570.0, 0.015679186210036278, -0.00011012583854608238, 1.6114404388645198e-07, -0.00011012583854608238, 1.0333640148019185e-06, -1.7022258047560967e-09, 1.6114404388645198e-07, -1.7022258047560967e-09, 2.9916095642401608e-12, 571.0, 0.015651918947696686, -0.00010974162432830781, 1.6030035965286515e-07, -0.00010974162432830781, 1.0279501339027775e-06, -1.6903377586530155e-09, 1.6030035965286515e-07, -1.6903377586530155e-09, 2.9655047948523583e-12, 572.0, 0.015624746680259705, -0.00010935941827483475, 1.5946255871313042e-07, -0.00010935941827483475, 1.02257399703376e-06, -1.6785531853358293e-09, 1.5946255871313042e-07, -1.6785531853358293e-09, 2.939672810731153e-12, 573.0, 0.01559766847640276, -0.00010897920583374798,1.586305700129742e-07, -0.00010897920583374798, 1.0172353768211906e-06, -1.6668711966261185e-09, 1.586305700129742e-07, -1.6668711966261185e-09, 2.914110359270028e-12, 574.0, 0.015570683404803276, -0.00010860097245313227, 1.578043793415418e-07, -0.00010860097245313227, 1.0119337048308807e-06, -1.655290571278556e-09, 1.578043793415418e-07, -1.655290571278556e-09, 2.8888144047028996e-12, 575.0, 0.015543792396783829, -0.00010822470358107239, 1.5698390143370489e-07,-0.00010822470358107239, 1.0066689810628304e-06, -1.643810421114722e-09, 1.5698390143370489e-07, -1.643810421114722e-09, 2.863781260742382e-12, 576.0, 0.015516993589699268, -0.00010785038466565311, 1.5616910786775406e-07, -0.00010785038466565311, 1.001440637082851e-06, -1.632429635911592e-09, 1.5616910786775406e-07, -1.632429635911592e-09, 2.839008108462826e-12, 577.0, 0.015490286983549595, -0.00010747800843091682, 1.5535994180027046e-07, -0.00010747800843091682, 9.96248445517267e-07, -1.6211472164684437e-09, 1.5535994180027046e-07, -1.6211472164684437e-09, 2.814491695257715e-12, 578.0, 0.015463672578334808, -0.00010710755304899067, 1.5455634638783522e-07, -0.00010710755304899067, 9.910920653055655e-07, -1.6099620525622527e-09, 1.5455634638783522e-07, -1.6099620525622527e-09, 2.7902287685205307e-12, 579.0, 0.01543714851140976, -0.00010673901124391705, 1.537582932087389e-07, -0.00010673901124391705, 9.85971155387233e-07, -1.5988731449922966e-09, 1.537582932087389e-07, -1.5988731449922966e-09, 2.7662165093256252e-12, 580.0, 0.015410715714097023, -0.00010637236846378073, 1.5296572541956266e-07, -0.00010637236846378073, 9.80885602075432e-07, -1.5878796055801558e-09, 1.5296572541956266e-07, -1.5878796055801558e-09, 2.742451665066481e-12, 581.0, 0.015384374186396599, -0.00010600761015666649, 1.5217860038774234e-07, -0.00010600761015666649, 9.758348369359737e-07, -1.5769803241028058e-09, 1.5217860038774234e-07, -1.5769803241028058e-09, 2.718931633657884e-12, 582.0, 0.015358121134340763, -0.0001056447290466167, 1.5139686126985907e-07, -0.0001056447290466167, 9.708187462820206e-07, -1.5661744123818266e-09, 1.5139686126985907e-07, -1.5661744123818266e-09, 2.695652945652882e-12, 583.0, 0.015331958420574665, -0.00010528370330575854, 1.5062046543334873e-07, -0.00010528370330575854, 9.658369890530594e-07, -1.5554608712164963e-09,1.5062046543334873e-07, -1.5554608712164963e-09, 2.672613215806696e-12, 584.0, 0.015305884182453156, -0.00010492453293409199, 1.4984937024564715e-07, -0.00010492453293409199, 9.60889224188577e-07, -1.5448389234506976e-09, 1.4984937024564715e-07, -1.5448389234506976e-09, 2.649809408353243e-12, 585.0, 0.015279899351298809, -0.0001045671888277866, 1.490835330741902e-07, -0.0001045671888277866, 9.559752243148978e-07, -1.5343073478391034e-09, 1.490835330741902e-07,-1.5343073478391034e-09, 2.6272387043668743e-12, 586.0, 0.015254002064466476, -0.00010421167098684236, 1.48322897075559e-07, -0.00010421167098684236, 9.510947052149277e-07, -1.5238653672255964e-09, 1.48322897075559e-07, -1.5238653672255964e-09, 2.604898068081507e-12, 587.0, 0.015228192321956158, -0.00010385796485934407, 1.4756743382804416e-07, -0.00010385796485934407, 9.462472689847345e-07, -1.5135122044540594e-09, 1.4756743382804416e-07, -1.5135122044540594e-09, 2.582785331092796e-12, 588.0, 0.015202469192445278, -0.00010350604861741886, 1.4681708648822678e-07, -0.00010350604861741886, 9.414328019374807e-07, -1.5032466382791654e-09, 1.4681708648822678e-07, -1.5032466382791654e-09, 2.5608972407942243e-12, 589.0, 0.015176833607256413, -0.00010315592226106673, 1.4607182663439744e-07, -0.00010315592226106673, 9.366509061692341e-07, -1.493068113589402e-09, 1.4607182663439744e-07, -1.493068113589402e-09, 2.539231411941012e-12, 590.0, 0.015151284635066986, -0.00010280757123837247, 1.4533159742313728e-07, -0.00010280757123837247, 9.319012974629004e-07, -1.4829755201617445e-09, 1.4533159742313728e-07, -1.4829755201617445e-09, 2.5177852424479452e-12, 591.0, 0.01512582041323185, -0.00010246098099742085, 1.4459637043273688e-07, -0.00010246098099742085, 9.271838052882231e-07, -1.4729680808400758e-09, 1.4459637043273688e-07, -1.4729680808400758e-09, 2.49655613022981e-12, 592.0, 0.015100442804396152, -0.00010211614426225424, 1.4386607460892264e-07, -0.00010211614426225424, 9.22498088584689e-07, -1.4630449074459762e-09, 1.4386607460892264e-07, -1.4630449074459762e-09, 2.475541256360958e-12, 593.0, 0.015075149945914745, -0.0001017730392049998, 1.431407099516946e-07, -0.0001017730392049998, 9.178438631352037e-07, -1.4532051118010259e-09, 1.431407099516946e-07, -1.4532051118010259e-09, 2.454738452437044e-12, 594.0, 0.015049940906465054, -0.00010143166582565755, 1.4242019119592442e-07, -0.00010143166582565755, 9.132209015660919e-07, -1.4434479167491077e-09, 1.4242019119592442e-07, -1.4434479167491077e-09, 2.43414489953242e-12, 595.0, 0.015024816617369652, -0.00010109200229635462, 1.4170451834161213e-07, -0.00010109200229635462, 9.086289765036781e-07, -1.4337725451341043e-09, 1.4170451834161213e-07, -1.4337725451341043e-09, 2.4137584292427405e-12, 596.0, 0.014999776147305965, -0.00010075404861709103, 1.4099362033448415e-07, -0.00010075404861709103, 9.040677468874492e-07, -1.4241779977552937e-09, 1.4099362033448415e-07, -1.4241779977552937e-09, 2.393576439482792e-12, 597.0, 0.01497481856495142, -0.00010041777568403631, 1.4028748296368576e-07, -0.00010041777568403631, 8.995369853437296e-07, -1.4146637195011635e-09, 1.4028748296368576e-07, -1.4146637195011635e-09, 2.373596761848229e-12, 598.0, 0.01494994480162859, -0.00010008319077314809,1.395860493857981e-07, -0.00010008319077314809, 8.95036464498844e-07, -1.4052286001486891e-09, 1.395860493857981e-07, -1.4052286001486891e-09, 2.353816794253838e-12, 599.0, 0.014925152994692326, -9.975027933251113e-05, 1.3888927696825704e-07, -9.975027933251113e-05, 8.905659569791169e-07, -1.3958720845863581e-09, 1.3888927696825704e-07, -1.3958720845863581e-09, 2.3342343682952738e-12, 600.0, 0.014900443144142628, -9.941901953425258e-05, 1.3819713728935312e-07,-9.941901953425258e-05, 8.861251217240351e-07, -1.386593284635751e-09, 1.3819713728935312e-07, -1.386593284635751e-09, 2.3148468818873225e-12, 601.0, 0.014875814318656921, -9.908941137837246e-05, 1.3750958771652222e-07, -9.908941137837246e-05, 8.817137882033421e-07, -1.3773915341630527e-09, 1.3750958771652222e-07, -1.3773915341630527e-09, 2.295652600306508e-12, 602.0, 0.014851267449557781, -9.876143303699791e-05, 1.368265998280549e-07, -9.876143303699791e-05, 8.773316721999436e-07, -1.3682659449898438e-09, 1.368265998280549e-07, -1.3682659449898438e-09, 2.276648704627182e-12, 603.0, 0.014826801605522633, -9.843508451012895e-05, 1.361481167805323e-07, -9.843508451012895e-05, 8.72978546340164e-07, -1.3592157399600069e-09, 1.361481167805323e-07, -1.3592157399600069e-09, 2.2578334601258687e-12, 604.0, 0.014802416786551476, -9.811035124585032e-05, 1.3547411015224498e-07, -9.811035124585032e-05, 8.686541832503281e-07, -1.3502403639620297e-09, 1.3547411015224498e-07, -1.3502403639620297e-09, 2.2392044815577883e-12, 605.0, 0.01477811112999916, -9.778722596820444e-05, 1.3480455152148352e-07, -9.778722596820444e-05, 8.643582987133414e-07, -1.3413388177951902e-09, 1.3480455152148352e-07, -1.3413388177951902e-09, 2.220759600518596e-12, 606.0, 0.014753885567188263, -9.746568684931844e-05, 1.3413939825568377e-07, -9.746568684931844e-05, 8.600907221989473e-07, -1.3325105463479758e-09, 1.3413939825568377e-07, -1.3325105463479758e-09, 2.202496865444381e-12, 607.0, 0.014729739166796207, -9.714573388919234e-05, 1.334786219331363e-07, -9.714573388919234e-05, 8.558512263334705e-07, -1.323754883486572e-09, 1.334786219331363e-07, -1.323754883486572e-09, 2.1844138910903643e-12, 608.0, 0.01470567099750042, -9.682735981186852e-05, 1.3282216571042227e-07, -9.682735981186852e-05, 8.516394700563978e-07, -1.315070941032559e-09,1.3282216571042227e-07, -1.315070941032559e-09, 2.1665089427330697e-12, 609.0, 0.014681681990623474, -9.651054278947413e-05, 1.3217000116583222e-07, -9.651054278947413e-05, 8.474553965243103e-07, -1.306458052852122e-09, 1.3217000116583222e-07, -1.306458052852122e-09, 2.1487796351277177e-12, 610.0, 0.014657771214842796, -9.619527554605156e-05, 1.3152211408851144e-07, -9.619527554605156e-05, 8.43298607833276e-07, -1.2979156638337486e-09, 1.3152211408851144e-07,-1.2979156638337486e-09, 2.1312242335508325e-12, 611.0, 0.014633938670158386, -9.58815508056432e-05, 1.3087844763504108e-07, -9.58815508056432e-05, 8.391689902964572e-07, -1.2894428857990192e-09, 1.3087844763504108e-07, -1.2894428857990192e-09, 2.1138407864385034e-12, 612.0, 0.014610182493925095, -9.556936129229143e-05, 1.302389733837117e-07, -9.556936129229143e-05, 8.350663165401784e-07, -1.2810391636364216e-09, 1.302389733837117e-07, -1.2810391636364216e-09, 2.0966271253863855e-12, 613.0, 0.014586503617465496, -9.525869245408103e-05, 1.296036629128139e-07, -9.525869245408103e-05, 8.309903023473453e-07, -1.2727038312121408e-09, 1.296036629128139e-07, -1.2727038312121408e-09, 2.0795812988305684e-12, 614.0, 0.01456290204077959, -9.494954429101199e-05, 1.289724878006382e-07, -9.494954429101199e-05, 8.269407771877013e-07, -1.2644361113700597e-09, 1.289724878006382e-07, -1.2644361113700597e-09, 2.062701572047576e-12, 615.0, 0.014539375901222229, -9.464188769925386e-05, 1.2834539120376576e-07, -9.464188769925386e-05, 8.229175705309899e-07, -1.256235448998666e-09, 1.2834539120376576e-07, -1.256235448998666e-09, 2.045985993473498e-12, 616.0, 0.014515926130115986, -9.433572995476425e-05, 1.2772234470048716e-07, -9.433572995476425e-05, 8.189203413166979e-07, -1.2481011779641449e-09, 1.2772234470048716e-07, -1.2481011779641449e-09, 2.0294328283848584e-12, 617.0, 0.014492551796138287, -9.403104922967032e-05, 1.2710333407994767e-07, -9.403104922967032e-05, 8.149490327014064e-07, -1.2400326321326816e-09, 1.2710333407994767e-07, -1.2400326321326816e-09, 2.013039908377312e-12, 618.0, 0.014469252899289131, -9.372784552397206e-05, 1.2648833092043787e-07, -9.372784552397206e-05, 8.110033036246023e-07, -1.2320291453704613e-09, 1.2648833092043787e-07, -1.2320291453704613e-09, 1.9968057155678176e-12, 619.0, 0.01444602757692337, -9.342611156171188e-05, 1.258772641676842e-07, -9.342611156171188e-05, 8.070830403994478e-07, -1.2240901625659717e-09, 1.258772641676842e-07, -1.2240901625659717e-09, 1.9807282983924646e-12, 620.0, 0.014422877691686153, -9.312582551501691e-05, 1.2527014803254133e-07, -9.312582551501691e-05, 8.031880156522675e-07, -1.216215017585398e-09, 1.2527014803254133e-07, -1.216215017585398e-09, 1.9648061389682114e-12, 621.0, 0.014399802312254906, -9.282698738388717e-05, 1.2466691146073572e-07, -9.282698738388717e-05, 7.993179451659671e-07, -1.2084030442949256e-09, 1.2466691146073572e-07, -1.2084030442949256e-09, 1.9490372857311478e-12, 622.0, 0.014376799575984478, -9.252958261640742e-05, 1.2406755445226736e-07, -9.252958261640742e-05, 7.954727720971277e-07, -1.2006537986053445e-09, 1.2406755445226736e-07, -1.2006537986053445e-09, 1.9334200039577976e-12, 623.0, 0.014353870414197445, -9.223361121257767e-05,1.234720343745721e-07, -9.223361121257767e-05, 7.916522122286551e-07, -1.1929665033605374e-09, 1.234720343745721e-07, -1.1929665033605374e-09, 1.917952558924685e-12, 624.0, 0.014331014826893806, -9.193905134452507e-05, 1.228803085950858e-07, -9.193905134452507e-05, 7.878560381868738e-07, -1.1853406034489922e-09, 1.228803085950858e-07, -1.1853406034489922e-09, 1.902633432748768e-12, 625.0, 0.014308231882750988, -9.164590301224962e-05, 1.2229237711380847e-07,-9.164590301224962e-05, 7.84084136284946e-07, -1.1777756547814988e-09, 1.2229237711380847e-07, -1.1777756547814988e-09, 1.8874608907065715e-12, 626.0, 0.014285520650446415, -9.135415166383609e-05, 1.2170816887646652e-07, -9.135415166383609e-05, 7.803362223057775e-07, -1.1702708802019401e-09, 1.2170816887646652e-07, -1.1702708802019401e-09, 1.8724334149150534e-12, 627.0, 0.014262882061302662, -9.106379729928449e-05, 1.2112768388305994e-07, -9.106379729928449e-05, 7.766122394059494e-07, -1.1628258356211063e-09, 1.2112768388305994e-07, -1.1628258356211063e-09, 1.857549270650738e-12, 628.0, 0.014240315183997154, -9.077481809072196e-05, 1.2055089371187933e-07, -9.077481809072196e-05, 7.729118465249485e-07, -1.1554398549051825e-09, 1.2055089371187933e-07, -1.1554398549051825e-09, 1.842806723190149e-12, 629.0, 0.014217819087207317, -9.048721403814852e-05, 1.199777415195058e-07, -9.048721403814852e-05, 7.692349299759371e-07, -1.1481123829426565e-09, 1.199777415195058e-07, -1.1481123829426565e-09, 1.8282044714906798e-12, 630.0, 0.014195393770933151, -9.020097786560655e-05, 1.1940822730593936e-07, -9.020097786560655e-05, 7.655813192286587e-07, -1.1408429756443184e-09, 1.1940822730593936e-07, -1.1408429756443184e-09, 1.8137407808288541e-12, 631.0, 0.014173039235174656, -8.991609502118081e-05, 1.1884231554404323e-07, -8.991609502118081e-05, 7.619508437528566e-07, -1.1336309668763533e-09, 1.1884231554404323e-07, -1.1336309668763533e-09, 1.799414241741848e-12, 632.0, 0.014150755479931831, -8.96325582289137e-05, 1.1827997070668061e-07, -8.96325582289137e-05, 7.583432193314366e-07, -1.1264759125495516e-09, 1.1827997070668061e-07, -1.1264759125495516e-09, 1.7852233363466197e-12, 633.0, 0.014128541573882103, -8.93503674888052e-05, 1.1772116437214208e-07, -8.93503674888052e-05, 7.547583891209797e-07, -1.1193771465300983e-09,1.1772116437214208e-07, -1.1193771465300983e-09, 1.7711664383399106e-12, 634.0, 0.014106396585702896, -8.90695009729825e-05, 1.1716588232957292e-07, -8.90695009729825e-05, 7.511960689043917e-07, -1.1123343357510862e-09, 1.1716588232957292e-07, -1.1123343357510862e-09, 1.7572421382588965e-12, 635.0, 0.014084321446716785, -8.878995868144557e-05, 1.1661407484098163e-07, -8.878995868144557e-05, 7.476561449948349e-07, -1.105346703056398e-09, 1.1661407484098163e-07,-1.105346703056398e-09, 1.7434490266407532e-12, 636.0, 0.014062315225601196, -8.851173333823681e-05, 1.1606573480094085e-07, -8.851173333823681e-05, 7.441384468620527e-07, -1.0984139153791261e-09, 1.1606573480094085e-07, -1.0984139153791261e-09, 1.7297856940226564e-12, 637.0, 0.014040377922356129, -8.823481039144099e-05, 1.1552082668231378e-07, -8.823481039144099e-05, 7.406428039757884e-07, -1.0915354176077585e-09, 1.1552082668231378e-07, -1.0915354176077585e-09, 1.7162506225215646e-12, 638.0, 0.014018508605659008, -8.795918256510049e-05, 1.1497932206339101e-07, -8.795918256510049e-05, 7.371689889623667e-07, -1.0847105436084803e-09, 1.1497932206339101e-07, -1.0847105436084803e-09, 1.7028424026746536e-12, 639.0, 0.013996708206832409, -8.76848425832577e-05, 1.1444119962789046e-07, -8.76848425832577e-05, 7.33716831291531e-07, -1.0779390713366865e-09, 1.1444119962789046e-07, -1.0779390713366865e-09, 1.6895596250190992e-12, 640.0, 0.013974973931908607, -8.741179044591263e-05, 1.1390642384867533e-07, -8.741179044591263e-05, 7.302862741198624e-07, -1.0712203346585625e-09, 1.1390642384867533e-07, -1.0712203346585625e-09, 1.6764010969325116e-12, 641.0, 0.013953308574855328, -8.714001160115004e-05, 1.1337498051489092e-07, -8.714001160115004e-05, 7.268770332302665e-07, -1.0645537784625958e-09, 1.1337498051489092e-07, -1.0645537784625958e-09, 1.6633653005318494e-12, 642.0, 0.013931709341704845, -8.68694914970547e-05, 1.1284683409940044e-07, -8.68694914970547e-05, 7.234889380924869e-07, -1.0579390696818791e-09, 1.1284683409940044e-07, -1.0579390696818791e-09, 1.6504510431947228e-12, 643.0, 0.013910177163779736, -8.660023740958422e-05, 1.1232197039134917e-07, -8.660023740958422e-05, 7.201219318631047e-07, -1.0513756532049001e-09, 1.1232197039134917e-07, -1.0513756532049001e-09, 1.6376568070380904e-12, 644.0, 0.013888711109757423, -8.633222751086578e-05, 1.1180034675817296e-07, -8.633222751086578e-05, 7.167757303250255e-07, -1.044863084942449e-09, 1.1180034675817296e-07, -1.044863084942449e-09, 1.6249813994395623e-12, 645.0, 0.013867311179637909, -8.606546180089936e-05, 1.1128195609444447e-07, -8.606546180089936e-05, 7.134502766348305e-07, -1.0384008097830133e-09, 1.1128195609444447e-07, -1.0384008097830133e-09, 1.612423627776749e-12, 646.0, 0.013845978304743767, -8.579993300372735e-05, 1.1076676287302689e-07, -8.579993300372735e-05, 7.101453434188443e-07, -1.0319884946596858e-09, 1.1076676287302689e-07, -1.0319884946596858e-09, 1.599982082586826e-12, 647.0, 0.013824709691107273, -8.553562656743452e-05, 1.102547386722108e-07, -8.553562656743452e-05, 7.068607601468102e-07, -1.0256254734386516e-09, 1.102547386722108e-07, -1.0256254734386516e-09, 1.5876555712474039e-12, 648.0, 0.013803506270051003, -8.527254249202088e-05,1.097458692811415e-07, -8.527254249202088e-05, 7.035964699753094e-07, -1.019311524075306e-09, 1.097458692811415e-07, -1.019311524075306e-09, 1.5754427927158754e-12, 649.0, 0.01378236897289753, -8.50106735015288e-05, 1.0924013338353689e-07, -8.50106735015288e-05, 7.003521886872477e-07, -1.0130460914581363e-09, 1.0924013338353689e-07, -1.0130460914581363e-09, 1.5633426627900682e-12, 650.0, 0.01376129500567913, -8.475000504404306e-05, 1.0873749545226019e-07,-8.475000504404306e-05, 6.971278594392061e-07, -1.0068286204756305e-09, 1.0873749545226019e-07, -1.0068286204756305e-09, 1.5513538804273752e-12, 651.0, 0.013740286231040955, -8.449052984360605e-05, 1.0823793417102934e-07, -8.449052984360605e-05, 6.939232548575092e-07, -1.0006588890831836e-09, 1.0823793417102934e-07, -1.0006588890831836e-09, 1.5394751445851895e-12, 652.0, 0.013719340786337852, -8.423224790021777e-05, 1.0774142822356225e-07, -8.423224790021777e-05, 6.907382612553192e-07, -9.945362311469808e-10, 1.0774142822356225e-07, -9.945362311469808e-10, 1.5277054794815559e-12, 653.0, 0.013698459602892399, -8.39751519379206e-05, 1.0724795629357686e-07, -8.39751519379206e-05, 6.875727649457986e-07, -9.884604246224171e-10, 1.0724795629357686e-07, -9.884604246224171e-10, 1.5160435840738673e-12, 654.0, 0.013677641749382019, -8.371922740479931e-05, 1.0675748995936374e-07, -8.371922740479931e-05, 6.844265953986906e-07, -9.824309143979804e-10, 1.0675748995936374e-07, -9.824309143979804e-10, 1.5044883741599513e-12, 655.0, 0.013656887225806713, -8.34644670248963e-05, 1.0627001501006816e-07, -8.34644670248963e-05, 6.812995252403198e-07, -9.76447367406763e-10, 1.0627001501006816e-07, -9.76447367406763e-10, 1.4930386571174181e-12, 656.0, 0.013636195100843906, -8.321087807416916e-05, 1.0578550302398071e-07, -8.321087807416916e-05, 6.781915544706862e-07, -9.70509228537253e-10, 1.0578550302398071e-07, -9.70509228537253e-10, 1.4816934571643126e-12, 657.0, 0.013615566305816174, -8.295843872474506e-05, 1.053039326848193e-07, -8.295843872474506e-05, 6.751023988726956e-07, -9.646161647225426e-10, 1.053039326848193e-07, -9.646161647225426e-10, 1.4704514732580276e-12, 658.0, 0.01359499990940094, -8.27071417006664e-05, 1.0482527557087451e-07, -8.27071417006664e-05, 6.720320016029291e-07, -9.587677318734222e-10,1.0482527557087451e-07, -9.587677318734222e-10, 1.4593116211963908e-12, 659.0, 0.013574494980275631, -8.245698700193316e-05, 1.0434951747129162e-07, -8.245698700193316e-05, 6.6898019213113e-07, -9.529635969229844e-10, 1.0434951747129162e-07, -9.529635969229844e-10, 1.4482730336176641e-12, 660.0, 0.013554051518440247, -8.220796735258773e-05, 1.0387663706978856e-07, -8.220796735258773e-05, 6.659467999270419e-07, -9.472033157820192e-10, 1.0387663706978856e-07,-9.472033157820192e-10, 1.4373344094792406e-12, 661.0, 0.013533670455217361, -8.19600754766725e-05, 1.034066059446559e-07, -8.19600754766725e-05, 6.629317681472457e-07, -9.414865553836194e-10, 1.034066059446559e-07, -9.414865553836194e-10, 1.426494772999165e-12, 662.0, 0.013513349927961826, -8.171329682227224e-05, 1.0293940277961156e-07, -8.171329682227224e-05, 6.599348694180662e-07, -9.358127606162725e-10, 1.0293940277961156e-07, -9.358127606162725e-10, 1.415753039975265e-12, 663.0, 0.013493090867996216, -8.146763866534457e-05, 1.0247502046922818e-07, -8.146763866534457e-05, 6.569560468960844e-07, -9.301817094353737e-10, 1.0247502046922818e-07, -9.301817094353737e-10, 1.4051083430458022e-12, 664.0, 0.01347289141267538, -8.122308645397425e-05, 1.0201341638094163e-07, -8.122308645397425e-05, 6.539951300510438e-07, -9.245929022405619e-10, 1.0201341638094163e-07, -9.245929022405619e-10, 1.3945594895883873e-12, 665.0, 0.01345275342464447, -8.097962563624606e-05, 1.0155459051475191e-07, -8.097962563624606e-05, 6.510519483526878e-07, -9.190460614760809e-10, 1.0155459051475191e-07, -9.190460614760809e-10, 1.3841055038210648e-12, 666.0, 0.013432675041258335, -8.07372634881176e-05, 1.0109850734352221e-07, -8.07372634881176e-05, 6.481263881141786e-07, -9.135406875415697e-10, 1.0109850734352221e-07, -9.135406875415697e-10, 1.3737454099618795e-12, 667.0, 0.01341265719383955, -8.049598545767367e-05, 1.0064514555097048e-07, -8.049598545767367e-05, 6.452183356486785e-07, -9.080765028812721e-10, 1.0064514555097048e-07, -9.080765028812721e-10, 1.3634782322288763e-12, 668.0, 0.013392698019742966, -8.025579154491425e-05, 1.0019449803166935e-07, -8.025579154491425e-05, 6.423276772693498e-07, -9.026531189171294e-10, 1.0019449803166935e-07, -9.026531189171294e-10, 1.3533029948400999e-12, 669.0, 0.013372798450291157, -8.001666719792411e-05, 9.97465363639094e-08, -8.001666719792411e-05, 6.394542992893548e-07, -8.972701470710831e-10, 9.97465363639094e-08, -8.972701470710831e-10, 1.3432188304338122e-12, 670.0, 0.013352957554161549, -7.977861241670325e-05, 9.930123923140854e-08, -7.977861241670325e-05, 6.365979743350181e-07, -8.919272542762258e-10, 9.930123923140854e-08, -8.919272542762258e-10, 1.3332246548078408e-12, 671.0, 0.013333176262676716, -7.954161992529407e-05, 9.885858531788472e-08, -7.954161992529407e-05, 6.337586455629207e-07, -8.8662410746565e-10, 9.885858531788472e-08, -8.8662410746565e-10, 1.3233194921802305e-12, 672.0, 0.01331345271319151, -7.930567517178133e-05, 9.84185604124832e-08, -7.930567517178133e-05, 6.30936199286225e-07, -8.81360262550146e-10, 9.84185604124832e-08, -8.81360262550146e-10, 1.3135025836094605e-12, 673.0, 0.013293787837028503, -7.907078543212265e-05,9.798115030434928e-08, -7.907078543212265e-05, 6.281304649746744e-07, -8.761354419739575e-10, 9.798115030434928e-08, -8.761354419739575e-10, 1.3037729533135756e-12, 674.0, 0.013274181634187698, -7.883693615440279e-05, 9.754631946634618e-08, -7.883693615440279e-05, 6.253413289414311e-07, -8.70949257159026e-10, 9.754631946634618e-08, -8.70949257159026e-10, 1.2941297339308377e-12, 675.0, 0.013254632242023945, -7.860412006266415e-05, 9.711406079304652e-08,-7.860412006266415e-05, 6.225686774996575e-07, -8.658014305495954e-10, 9.711406079304652e-08, -8.658014305495954e-10, 1.2845718412590745e-12, 676.0, 0.013235140591859818, -7.837233715690672e-05, 9.668435296816824e-08, -7.837233715690672e-05, 6.198124538059346e-07, -8.606915735676068e-10, 9.668435296816824e-08, -8.606915735676068e-10, 1.2750986247769824e-12, 677.0, 0.013215705752372742, -7.814157288521528e-05, 9.625717467542927e-08, -7.814157288521528e-05, 6.170724304865871e-07, -8.556193531461531e-10, 9.625717467542927e-08, -8.556193531461531e-10, 1.2657091087026062e-12, 678.0, 0.013196328654885292, -7.791183452354744e-05, 9.583251170397489e-08, -7.791183452354744e-05, 6.14348550698196e-07, -8.505844362183268e-10, 9.583251170397489e-08, -8.505844362183268e-10, 1.256402425674208e-12, 679.0, 0.013177008368074894, -7.768310024403036e-05, 9.541034273752302e-08, -7.768310024403036e-05, 6.116406439105049e-07, -8.455864897172205e-10, 9.541034273752302e-08, -8.455864897172205e-10, 1.2471777083300495e-12, 680.0, 0.013157743960618973, -7.745537732262164e-05, 9.49906464597916e-08, -7.745537732262164e-05, 6.089486532800947e-07, -8.406252360870781e-10, 9.49906464597916e-08, -8.406252360870781e-10, 1.2380341977286102e-12, 681.0, 0.013138535432517529, -7.722865120740607e-05, 9.457341576535327e-08, -7.722865120740607e-05, 6.062724651201279e-07, -8.357002867498409e-10, 9.457341576535327e-08, -8.357002867498409e-10, 1.2289710265081522e-12, 682.0, 0.013119383715093136, -7.700291462242603e-05, 9.415861512707124e-08, -7.700291462242603e-05, 6.036119089003478e-07, -8.308113086386015e-10, 9.415861512707124e-08, -8.308113086386015e-10, 1.2199873273069373e-12, 683.0, 0.01310028787702322, -7.677817484363914e-05, 9.374624454494551e-08, -7.677817484363914e-05, 6.009668709339167e-07, -8.259580797087551e-10,9.374624454494551e-08, -8.259580797087551e-10, 1.2110822327632276e-12, 684.0, 0.013081246986985207, -7.655441004317254e-05, 9.333627559726665e-08, -7.655441004317254e-05, 5.983372943774157e-07, -8.211402668933943e-10, 9.333627559726665e-08, -8.211402668933943e-10, 1.2022550923557196e-12, 685.0, 0.01306226197630167, -7.633162749698386e-05, 9.292869407317994e-08, -7.633162749698386e-05, 5.957230087005883e-07, -8.163574816144603e-10, 9.292869407317994e-08,-8.163574816144603e-10, 1.1935050387226753e-12, 686.0, 0.013043330982327461, -7.610981265315786e-05, 9.252347865640331e-08, -7.610981265315786e-05, 5.931239570600155e-07, -8.116095018273484e-10, 9.252347865640331e-08, -8.116095018273484e-10, 1.184831312922574e-12, 687.0, 0.01302445586770773, -7.588896551169455e-05, 9.212062224150941e-08, -7.588896551169455e-05, 5.905400257688598e-07, -8.068959389539998e-10, 9.212062224150941e-08, -8.068959389539998e-10, 1.176233156013895e-12, 688.0, 0.013005634769797325, -7.566907879663631e-05, 9.17200964067888e-08, -7.566907879663631e-05, 5.879710442968644e-07, -8.022165709498097e-10, 9.17200964067888e-08, -8.022165709498097e-10, 1.1677097006349002e-12, 689.0, 0.012986867688596249, -7.545014523202553e-05, 9.132189404681412e-08, -7.545014523202553e-05, 5.854169558006106e-07, -7.975711202590219e-10, 9.132189404681412e-08, -7.975711202590219e-10, 1.1592602962642862e-12, 690.0, 0.012968155555427074, -7.523216481786221e-05, 9.092598673987595e-08, -7.523216481786221e-05, 5.828776465932606e-07, -7.929591983035778e-10, 9.092598673987595e-08, -7.929591983035778e-10, 1.1508841839605322e-12, 691.0, 0.012949496507644653, -7.501512300223112e-05, 9.053236738054693e-08, -7.501512300223112e-05, 5.803530029879767e-07, -7.883805830388724e-10, 9.053236738054693e-08, -7.883805830388724e-10, 1.1425804963619002e-12, 692.0, 0.01293089147657156, -7.479901978513226e-05, 9.014101465254498e-08, -7.479901978513226e-05, 5.778429112979211e-07, -7.838349413979984e-10, 9.014101465254498e-08, -7.838349413979984e-10, 1.134348691367304e-12, 693.0, 0.01291233953088522, -7.458384789060801e-05, 8.975192145044275e-08, -7.458384789060801e-05, 5.753472578362562e-07, -7.793219958251996e-10, 8.975192145044275e-08, -7.793219958251996e-10, 1.1261879016150056e-12, 694.0, 0.012893840670585632, -7.436960004270077e-05, 8.936505935253081e-08, -7.436960004270077e-05, 5.728659289161442e-07, -7.748415242758711e-10, 8.936505935253081e-08, -7.748415242758711e-10, 1.1180974765837015e-12, 695.0, 0.012875394895672798, -7.415627624141052e-05, 8.898041414795443e-08, -7.415627624141052e-05, 5.703989245375851e-07, -7.703931936831054e-10, 8.898041414795443e-08, -7.703931936831054e-10, 1.110076657331871e-12, 696.0, 0.012857002206146717, -7.394387648673728e-05, 8.859797873128628e-08, -7.394387648673728e-05, 5.679460173269035e-07, -7.659767820022978e-10, 8.859797873128628e-08, -7.659767820022978e-10, 1.1021247933382106e-12, 697.0, 0.012838661670684814, -7.37323789508082e-05, 8.821773178624426e-08, -7.37323789508082e-05, 5.655071504406806e-07, -7.615919006553895e-10, 8.821773178624426e-08, -7.615919006553895e-10, 1.0942412340814167e-12, 698.0, 0.01282037328928709, -7.352179090958089e-05,8.783965199654631e-08, -7.352179090958089e-05, 5.630822670354974e-07, -7.572383831089269e-10, 8.783965199654631e-08, -7.572383831089269e-10, 1.0864252206199687e-12, 699.0, 0.012802137061953545, -7.331210508709773e-05, 8.746373225676507e-08, -7.331210508709773e-05, 5.606711965810973e-07, -7.529159518071538e-10, 8.746373225676507e-08, -7.529159518071538e-10, 1.078676102432563e-12, 700.0, 0.012783952057361603, -7.310331420740113e-05, 8.708995835604583e-08,-7.310331420740113e-05, 5.582738822340616e-07, -7.486242736831628e-10, 8.708995835604583e-08, -7.486242736831628e-10, 1.0709932289978963e-12, 701.0, 0.01276581920683384, -7.289541099453345e-05, 8.67183089781065e-08, -7.289541099453345e-05, 5.558902103075525e-07, -7.443631822035002e-10, 8.67183089781065e-08, -7.443631822035002e-10, 1.0633759497946649e-12, 702.0, 0.012747738510370255, -7.26883954484947e-05, 8.63487699120924e-08, -7.26883954484947e-05, 5.535200671147322e-07, -7.401323443012586e-10, 8.63487699120924e-08, -7.401323443012586e-10, 1.0558236143015653e-12, 703.0, 0.012729708105325699, -7.248226029332727e-05, 8.598132694714877e-08, -7.248226029332727e-05, 5.51163395812182e-07, -7.35931482420682e-10, 8.598132694714877e-08, -7.35931482420682e-10, 1.048335463577077e-12, 704.0, 0.012711727991700172, -7.227699825307354e-05, 8.561596587242093e-08, -7.227699825307354e-05, 5.48820082713064e-07, -7.317604300283165e-10, 8.561596587242093e-08, -7.317604300283165e-10, 1.0409109555201135e-12, 705.0, 0.012693800032138824, -7.207260932773352e-05, 8.52526795824815e-08, -7.207260932773352e-05, 5.464900709739595e-07, -7.276188540572548e-10, 8.52526795824815e-08, -7.276188540572548e-10, 1.0335495480295886e-12, 706.0, 0.012675921432673931, -7.186909351730719e-05, 8.489143965562107e-08, -7.186909351730719e-05, 5.441731900646118e-07, -7.235065879740432e-10, 8.489143965562107e-08, -7.235065879740432e-10, 1.0262504821639817e-12, 707.0, 0.012658093124628067, -7.166642899392173e-05, 8.453223188098491e-08, -7.166642899392173e-05, 5.418693831416022e-07, -7.194232432006231e-10, 8.453223188098491e-08, -7.194232432006231e-10, 1.0190131074019892e-12, 708.0, 0.012640316039323807, -7.146462303353474e-05, 8.417505625857302e-08, -7.146462303353474e-05, 5.395785933615116e-07, -7.153687642258433e-10,8.417505625857302e-08, -7.153687642258433e-10, 1.0118369900627422e-12, 709.0, 0.012622587382793427, -7.12636683601886e-05, 8.381988436667598e-08, -7.12636683601886e-05, 5.373007070375024e-07, -7.113427624716451e-10, 8.381988436667598e-08, -7.113427624716451e-10, 1.0047213712047198e-12, 710.0, 0.012604909017682076, -7.106355769792572e-05, 8.346671620529378e-08, -7.106355769792572e-05, 5.350355536393181e-07, -7.073450158934236e-10, 8.346671620529378e-08,-7.073450158934236e-10, 9.976658171470532e-13, 711.0, 0.012587280012667179, -7.086429104674608e-05, 8.311552335271699e-08, -7.086429104674608e-05, 5.327831900103774e-07, -7.033753579577251e-10, 8.311552335271699e-08, -7.033753579577251e-10, 9.906694605280042e-13, 712.0, 0.012569700367748737, -7.066586113069206e-05, 8.276629870351826e-08, -7.066586113069206e-05, 5.305434456204239e-07, -6.994335111087935e-10, 8.276629870351826e-08, -6.994335111087935e-10, 9.837320845071384e-13, 713.0, 0.01255217008292675, -7.046826794976369e-05, 8.241902804684287e-08, -7.046826794976369e-05, 5.283162067826197e-07, -6.955191977908726e-10, 8.241902804684287e-08, -6.955191977908726e-10, 9.76852821722718e-13, 714.0, 0.012534688226878643, -7.027149695204571e-05, 8.20736971718361e-08, -7.027149695204571e-05, 5.26101416653546e-07, -6.916322514705087e-10, 8.20736971718361e-08, -6.916322514705087e-10, 9.700312384938736e-13, 715.0, 0.01251725573092699, -7.007554813753814e-05, 8.173029186764325e-08, -7.007554813753814e-05, 5.238989615463652e-07, -6.877723945919456e-10, 8.173029186764325e-08, -6.877723945919456e-10, 9.63266684299302e-13, 716.0, 0.012499870732426643, -6.988042150624096e-05, 8.138879792340958e-08, -6.988042150624096e-05, 5.217088414610771e-07, -6.839394606217297e-10, 8.138879792340958e-08, -6.839394606217297e-10, 9.565587254581343e-13, 717.0, 0.012482534162700176, -6.968610978219658e-05, 8.104920823370776e-08, -6.968610978219658e-05, 5.195308858674252e-07, -6.801331720041048e-10, 8.104920823370776e-08, -6.801331720041048e-10, 9.499067114490667e-13, 718.0, 0.012465246021747589, -6.949260568944737e-05, 8.07115014822557e-08, -6.949260568944737e-05, 5.173650379219907e-07, -6.763533622056173e-10, 8.07115014822557e-08, -6.763533622056173e-10, 9.433101001710131e-13, 719.0, 0.012448005378246307, -6.929990195203573e-05, 8.037567056362604e-08, -6.929990195203573e-05, 5.152112407813547e-07, -6.725997536705108e-10, 8.037567056362604e-08, -6.725997536705108e-10, 9.367684579431046e-13, 720.0, 0.012430812232196331, -6.910800584591925e-05, 8.004170126696408e-08, -6.910800584591925e-05, 5.130693239152606e-07, -6.688721243541806e-10, 8.004170126696408e-08, -6.688721243541806e-10, 9.302811342440376e-13, 721.0, 0.01241366658359766, -6.891689554322511e-05, 7.970957227598774e-08, -6.891689554322511e-05, 5.109392873237084e-07, -6.65170307723173e-10, 7.970957227598774e-08, -6.65170307723173e-10, 9.23847695392943e-13, 722.0, 0.012396568432450294, -6.872658559586853e-05, 7.937928359069701e-08, -6.872658559586853e-05, 5.088210741632793e-07, -6.614940817328829e-10, 7.937928359069701e-08, -6.614940817328829e-10, 9.174674908685176e-13, 723.0, 0.01237951684743166, -6.853706145193428e-05,7.905082100023719e-08, -6.853706145193428e-05, 5.067144570602977e-07, -6.578431688275543e-10, 7.905082100023719e-08, -6.578431688275543e-10, 9.111400869898922e-13, 724.0, 0.012362511828541756, -6.834832311142236e-05, 7.87241631883262e-08, -6.834832311142236e-05, 5.046195497016015e-07, -6.542174579848847e-10, 7.87241631883262e-08, -6.542174579848847e-10, 9.048650500761979e-13, 725.0, 0.012345554307103157, -6.816035602241755e-05, 7.839930304953668e-08,-6.816035602241755e-05, 5.025361247135152e-07, -6.50616671649118e-10, 7.839930304953668e-08, -6.50616671649118e-10, 8.986417838162397e-13, 726.0, 0.01232864335179329, -6.797316746087745e-05, 7.807623347844128e-08, -6.797316746087745e-05, 5.004641252526199e-07, -6.470405877756491e-10, 7.807623347844128e-08, -6.470405877756491e-10, 8.924698003190401e-13, 727.0, 0.012311778031289577, -6.778675015084445e-05, 7.775493315875792e-08, -6.778675015084445e-05, 4.984035513189156e-07, -6.434890953421757e-10, 7.775493315875792e-08, -6.434890953421757e-10, 8.863486116936214e-13, 728.0, 0.012294959276914597, -6.760109681636095e-05, 7.743538787963189e-08, -6.760109681636095e-05, 4.963542892255646e-07, -6.399619167929416e-10, 7.743538787963189e-08, -6.399619167929416e-10, 8.802777300490061e-13, 729.0, 0.012278185226023197, -6.741620018146932e-05, 7.711759764106318e-08, -6.741620018146932e-05, 4.943162252857292e-07, -6.364588300833418e-10, 7.711759764106318e-08, -6.364588300833418e-10, 8.742566674942165e-13, 730.0, 0.012261458672583103, -6.723206752212718e-05, 7.680154112676973e-08, -6.723206752212718e-05, 4.922892458125716e-07, -6.32979724191074e-10, 7.680154112676973e-08, -6.32979724191074e-10, 8.68284936138275e-13, 731.0, 0.012244775891304016, -6.704869156237692e-05, 7.648721123132418e-08, -6.704869156237692e-05, 4.902734076495108e-07, -6.295243770715331e-10, 7.648721123132418e-08, -6.295243770715331e-10, 8.623621565104211e-13, 732.0, 0.01222813967615366, -6.68660577503033e-05, 7.617459374387181e-08, -6.68660577503033e-05, 4.882685402662901e-07, -6.260925666801143e-10, 7.617459374387181e-08, -6.260925666801143e-10, 8.564877322994602e-13, 733.0, 0.012211548164486885, -6.668417336186394e-05, 7.58636744535579e-08, -6.668417336186394e-05, 4.862745868194907e-07, -6.226840709722126e-10,7.58636744535579e-08, -6.226840709722126e-10, 8.506612840346317e-13, 734.0, 0.012195001356303692, -6.650302384514362e-05, 7.555444625495511e-08, -6.650302384514362e-05, 4.842914336222748e-07, -6.192987789255255e-10, 7.555444625495511e-08, -6.192987789255255e-10, 8.448823238249581e-13, 735.0, 0.012178500182926655, -6.632261647609994e-05, 7.524690204263607e-08, -6.632261647609994e-05, 4.823191375180613e-07, -6.15936412984297e-10, 7.524690204263607e-08,-6.15936412984297e-10, 8.39150472199679e-13, 736.0, 0.012162042781710625, -6.614294397877529e-05, 7.49410205003187e-08, -6.614294397877529e-05, 4.803574711331748e-07, -6.125968621262246e-10, 7.49410205003187e-08, -6.125968621262246e-10, 8.334651328475995e-13, 737.0, 0.012145630083978176, -6.596399907721207e-05, 7.463679452257566e-08, -6.596399907721207e-05, 4.784064344676153e-07, -6.092799598178544e-10, 7.463679452257566e-08, -6.092799598178544e-10, 8.278259805080679e-13, 738.0, 0.012129262089729309, -6.578577449545264e-05, 7.433420989855222e-08, -6.578577449545264e-05, 4.764659706779639e-07, -6.059854285034305e-10, 7.433420989855222e-08, -6.059854285034305e-10, 8.222325815002152e-13, 739.0, 0.012112937867641449, -6.560827750945464e-05, 7.403325952282103e-08, -6.560827750945464e-05, 4.745359660773829e-07, -6.027131016494991e-10, 7.403325952282103e-08, -6.027131016494991e-10, 8.166844479330637e-13, 740.0, 0.012096656486392021, -6.543149356730282e-05, 7.373393628995473e-08, -6.543149356730282e-05, 4.7261639224416285e-07, -5.99462923744909e-10, 7.373393628995473e-08, -5.99462923744909e-10, 8.111812003358532e-13, 741.0, 0.012080419808626175, -6.525542994495481e-05, 7.343621888367124e-08, -6.525542994495481e-05, 4.7070713549146603e-07, -5.962345617227527e-10, 7.343621888367124e-08, -5.962345617227527e-10, 8.057223508176059e-13, 742.0, 0.012064226903021336, -6.508007209049538e-05, 7.314010730397058e-08, -6.508007209049538e-05, 4.68808167397583e-07, -5.930279045607278e-10, 7.314010730397058e-08, -5.930279045607278e-10, 8.003075741176702e-13, 743.0, 0.012048076838254929, -6.49054127279669e-05, 7.284558733999802e-08, -6.49054127279669e-05, 4.669194026973855e-07, -5.898427857253807e-10, 7.284558733999802e-08, -5.898427857253807e-10, 7.949363823450684e-13, 744.0, 0.012031970545649529, -6.473146640928462e-05, 7.255263767547149e-08, -6.473146640928462e-05, 4.6504075612574525e-07, -5.866790386832577e-10, 7.255263767547149e-08, -5.866790386832577e-10, 7.896083960290401e-13, 745.0, 0.012015906162559986, -6.455821130657569e-05, 7.226126541581834e-08, -6.455821130657569e-05, 4.6317217083924334e-07, -5.835364413897537e-10, 7.226126541581834e-08, -5.835364413897537e-10, 7.843231814887164e-13, 746.0, 0.01199988555163145, -6.438565469579771e-05, 7.197144924475651e-08, -6.438565469579771e-05, 4.613135899944609e-07, -5.804148828225664e-10, 7.197144924475651e-08, -5.804148828225664e-10, 7.790803592533369e-13, 747.0, 0.011983906850218773, -6.421378930099308e-05, 7.168317495143128e-08, -6.421378930099308e-05, 4.5946495674797916e-07, -5.773141409370908e-10, 7.168317495143128e-08, -5.773141409370908e-10, 7.738796040622498e-13, 748.0, 0.011967971920967102, -6.404260784620419e-05,7.139644253584265e-08, -6.404260784620419e-05, 4.576261574129603e-07, -5.742341047110244e-10, 7.139644253584265e-08, -5.742341047110244e-10, 7.687203738143689e-13, 749.0, 0.011952077969908714, -6.387211033143103e-05, 7.11112377871359e-08, -6.387211033143103e-05, 4.5579716356769495e-07, -5.711746076109137e-10, 7.11112377871359e-08, -5.711746076109137e-10, 7.63602397459151e-13, 750.0, 0.011936226859688759, -6.37022967566736e-05, 7.082754649445633e-08,-6.37022967566736e-05, 4.539779183687642e-07, -5.681354275921535e-10, 7.082754649445633e-08, -5.681354275921535e-10, 7.585252413157273e-13, 751.0, 0.011920417658984661, -6.35331598459743e-05, 7.054536865780392e-08, -6.35331598459743e-05, 4.5216833655103983e-07, -5.651164536324416e-10, 7.054536865780392e-08, -5.651164536324416e-10, 7.534885801234459e-13, 752.0, 0.011904650367796421, -6.33646923233755e-05, 7.026468296089661e-08, -6.33646923233755e-05, 4.503683612711029e-07, -5.621174636871729e-10, 7.026468296089661e-08, -5.621174636871729e-10, 7.484919802014378e-13, 753.0, 0.011888924054801464, -6.31968941888772e-05, 6.998548229830703e-08, -6.31968941888772e-05, 4.485779356855346e-07, -5.591383467340449e-10, 6.998548229830703e-08, -5.591383467340449e-10, 7.435350620789427e-13, 754.0, 0.011873239651322365, -6.302975816652179e-05, 6.97077666700352e-08, -6.302975816652179e-05, 4.4679697452920664e-07, -5.561789917507554e-10, 6.97077666700352e-08, -5.561789917507554e-10, 7.386175004953088e-13, 755.0, 0.011857597157359123, -6.286329153226689e-05, 6.943151475979903e-08, -6.286329153226689e-05, 4.450254209587001e-07, -5.532391211815479e-10, 6.943151475979903e-08, -5.532391211815479e-10, 7.337389159797758e-13, 756.0, 0.011841995641589165, -6.269747973419726e-05, 6.915671946217117e-08, -6.269747973419726e-05, 4.432632181305962e-07, -5.503187350264227e-10, 6.915671946217117e-08, -5.503187350264227e-10, 7.288989290615833e-13, 757.0, 0.011826434172689915, -6.253232277231291e-05, 6.888337367172426e-08, -6.253232277231291e-05, 4.415103376231855e-07, -5.474175002184722e-10, 6.888337367172426e-08, -5.474175002184722e-10, 7.240972686901881e-13, 758.0, 0.011810914613306522, -6.236782064661384e-05, 6.861146317760358e-08, -6.236782064661384e-05, 4.397666657496302e-07, -5.445354167576966e-10,6.861146317760358e-08, -5.445354167576966e-10, 7.193334469746127e-13, 759.0, 0.011795435100793839, -6.220396608114243e-05, 6.834098087438178e-08, -6.220396608114243e-05, 4.3803217408822093e-07, -5.416722625994908e-10, 6.834098087438178e-08, -5.416722625994908e-10, 7.146071928643138e-13, 760.0, 0.011779996566474438, -6.204075179994106e-05, 6.807192676205887e-08, -6.204075179994106e-05, 4.363067773738294e-07, -5.388279267215523e-10, 6.807192676205887e-08,-5.388279267215523e-10, 7.099181810986399e-13, 761.0, 0.011764598079025745, -6.187818507896736e-05, 6.780427952435275e-08, -6.187818507896736e-05, 4.3459044718474615e-07, -5.360021870792764e-10, 6.780427952435275e-08, -5.360021870792764e-10, 7.052660322068305e-13, 762.0, 0.011749239638447762, -6.17162513663061e-05, 6.753803205583608e-08, -6.17162513663061e-05, 4.328830698341335e-07, -5.331949881615117e-10, 6.753803205583608e-08, -5.331949881615117e-10, 7.006504209282338e-13, 763.0, 0.011733921244740486, -6.155495793791488e-05, 6.72731772510815e-08, -6.155495793791488e-05, 4.3118467374370084e-07, -5.304061079236533e-10, 6.72731772510815e-08, -5.304061079236533e-10, 6.960710220021982e-13, 764.0, 0.011718643829226494, -6.139429024187848e-05, 6.70097008992343e-08, -6.139429024187848e-05, 4.2949511680490104e-07, -5.276354353433987e-10, 6.70097008992343e-08, -5.276354353433987e-10, 6.915274559579632e-13, 765.0, 0.01170340459793806, -6.123425555415452e-05, 6.674760300029448e-08, -6.123425555415452e-05, 4.278143990177341e-07, -5.248828593984456e-10, 6.674760300029448e-08, -5.248828593984456e-10, 6.870194517449857e-13, 766.0, 0.01168820634484291, -6.107483932282776e-05, 6.64868693434073e-08, -6.107483932282776e-05, 4.2614243511707173e-07, -5.221482135553401e-10, 6.64868693434073e-08, -5.221482135553401e-10, 6.82546684102614e-13, 767.0, 0.01167304627597332, -6.091604882385582e-05, 6.622749282314544e-08, -6.091604882385582e-05, 4.244791398377856e-07, -5.194313312806287e-10, 6.622749282314544e-08, -5.194313312806287e-10, 6.781087735600877e-13, 768.0, 0.011657926253974438, -6.0757876781281084e-05, 6.596946633408152e-08, -6.0757876781281084e-05, 4.228245131798758e-07, -5.167321015520088e-10, 6.596946633408152e-08, -5.167321015520088e-10, 6.737055032769723e-13, 769.0, 0.01164284534752369, -6.0600323195103556e-05, 6.571277566536082e-08, -6.0600323195103556e-05, 4.211784982999234e-07, -5.140504133471779e-10, 6.571277566536082e-08, -5.140504133471779e-10, 6.693364395723989e-13, 770.0, 0.0116278026252985, -6.044337715138681e-05, 6.5457413711556e-08, -6.044337715138681e-05, 4.1954098151109065e-07, -5.113860446215313e-10, 6.5457413711556e-08, -5.113860446215313e-10, 6.650013656059328e-13, 771.0, 0.01161279994994402, -6.028704228810966e-05, 6.520337336723969e-08, -6.028704228810966e-05, 4.179119628133776e-07, -5.087389398639175e-10, 6.520337336723969e-08, -5.087389398639175e-10, 6.606999561169224e-13, 772.0, 0.011597834527492523, -6.0131311329314485e-05, 6.495064752698454e-08, -6.0131311329314485e-05, 4.16291356941656e-07, -5.06108932540883e-10, 6.495064752698454e-08, -5.06108932540883e-10, 6.564318316346074e-13, 773.0, 0.011582908220589161, -5.997618427500129e-05,6.469922908536319e-08, -5.997618427500129e-05, 4.146791354742163e-07, -5.034959116301252e-10, 6.469922908536319e-08, -5.034959116301252e-10, 6.521968295286618e-13, 774.0, 0.011568021029233932, -5.982165748719126e-05, 6.444910383152092e-08, -5.982165748719126e-05, 4.130752131459303e-07, -5.008997661093417e-10, 6.444910383152092e-08, -5.008997661093417e-10, 6.479945161182166e-13, 775.0, 0.011553171090781689, -5.966772368992679e-05, 6.420026466003037e-08,-5.966772368992679e-05, 4.1147953311337915e-07, -4.983202739339276e-10, 6.420026466003037e-08, -4.983202739339276e-10, 6.438246745628373e-13, 776.0, 0.011538360267877579, -5.951438652118668e-05, 6.39527044654642e-08, -5.951438652118668e-05, 4.098920953765628e-07, -4.957573795927317e-10, 6.39527044654642e-08, -4.957573795927317e-10, 6.396869796018723e-13, 777.0, 0.011523586697876453, -5.936163870501332e-05, 6.370641614239503e-08, -5.936163870501332e-05, 4.0831278624864353e-07, -4.932109720634514e-10, 6.370641614239503e-08, -4.932109720634514e-10, 6.355811601847783e-13, 778.0, 0.011508850380778313, -5.920948024140671e-05, 6.346139258539552e-08, -5.920948024140671e-05, 4.0674160572962137e-07, -4.906808848126332e-10, 6.346139258539552e-08, -4.906808848126332e-10, 6.315068910509036e-13, 779.0, 0.011494152247905731, -5.905790385440923e-05, 6.321761958361094e-08, -5.905790385440923e-05, 4.05178468554368e-07, -4.881669513068232e-10, 6.321761958361094e-08, -4.881669513068232e-10, 6.274639553598138e-13, 780.0, 0.011479491367936134, -5.890690954402089e-05, 6.29750971370413e-08, -5.890690954402089e-05, 4.036233178794646e-07, -4.856691715460215e-10, 6.29750971370413e-08, -4.856691715460215e-10, 6.234520820609657e-13, 781.0, 0.011464868672192097, -5.875649367226288e-05, 6.273381814025925e-08, -5.875649367226288e-05, 4.020761252832017e-07, -4.83187267974472e-10, 6.273381814025925e-08, -4.83187267974472e-10, 6.194708916835989e-13, 782.0, 0.011450282298028469, -5.8606652601156384e-05, 6.24937612769827e-08, -5.8606652601156384e-05, 4.0053683392216044e-07, -4.807212405921746e-10, 6.24937612769827e-08, -4.807212405921746e-10, 6.15520167387279e-13, 783.0, 0.011435733176767826, -5.8457382692722604e-05, 6.225493365263901e-08, -5.8457382692722604e-05, 3.99005386952922e-07, -4.782709228656756e-10,6.225493365263901e-08, -4.782709228656756e-10, 6.115996381214628e-13, 784.0, 0.011421221308410168, -5.830868394696154e-05, 6.201732105637348e-08, -5.830868394696154e-05, 3.9748172753206745e-07, -4.758362037726727e-10, 6.201732105637348e-08, -4.758362037726727e-10, 6.077090870457158e-13, 785.0, 0.01140674576163292, -5.816055272589438e-05, 6.178090927733138e-08, -5.816055272589438e-05, 3.959658272378874e-07, -4.734169722908632e-10, 6.178090927733138e-08,-4.734169722908632e-10, 6.038481346892777e-13, 786.0, 0.011392307467758656, -5.801298175356351e-05, 6.154570542094007e-08, -5.801298175356351e-05, 3.944576008052536e-07, -4.710130618867936e-10, 6.154570542094007e-08, -4.710130618867936e-10, 6.000166184218225e-13, 787.0, 0.011377904564142227, -5.786597466794774e-05, 6.131169527634484e-08, -5.786597466794774e-05, 3.92957048234166e-07, -4.686244170493126e-10, 6.131169527634484e-08, -4.686244170493126e-10, 5.962142671928072e-13, 788.0, 0.011363538913428783, -5.7719524193089455e-05, 6.107886463269097e-08, -5.7719524193089455e-05, 3.9146411268120573e-07, -4.662508712449664e-10, 6.107886463269097e-08, -4.662508712449664e-10, 5.924407557415801e-13, 789.0, 0.01134920958429575, -5.7573630328988656e-05, 6.084721348997846e-08, -5.7573630328988656e-05, 3.8997870888124453e-07, -4.638923412070284e-10, 6.084721348997846e-08, -4.638923412070284e-10, 5.886958672277065e-13, 790.0, 0.011334916576743126, -5.7428289437666535e-05, 6.06167276373526e-08, -5.7428289437666535e-05, 3.8850080841257295e-07, -4.615486881576203e-10, 6.06167276373526e-08, -4.615486881576203e-10, 5.849793306006434e-13, 791.0, 0.011320658959448338, -5.7283497881144285e-05, 6.038740707481338e-08, -5.7283497881144285e-05, 3.8703038285348157e-07, -4.5921985658559095e-10, 6.038740707481338e-08, -4.5921985658559095e-10, 5.812909290199564e-13, 792.0, 0.011306436732411385, -5.71392520214431e-05, 6.015924469693346e-08, -5.71392520214431e-05, 3.855673469388421e-07, -4.5690565220191104e-10, 6.015924469693346e-08, -4.5690565220191104e-10, 5.776304456452108e-13, 793.0, 0.011292250826954842, -5.6995551858562976e-05, 5.99322262928581e-08, -5.6995551858562976e-05, 3.841116722469451e-07, -4.5460604725100495e-10, 5.99322262928581e-08, -4.5460604725100495e-10, 5.739975010056464e-13, 794.0, 0.011278100311756134, -5.68523901165463e-05, 5.970635186258733e-08, -5.68523901165463e-05, 3.8266333035608113e-07, -4.52320875199419e-10, 5.970635186258733e-08, -4.52320875199419e-10, 5.703920408911545e-13, 795.0, 0.011263985186815262, -5.6709770433371887e-05, 5.9481614300693764e-08, -5.6709770433371887e-05, 3.8122226442283136e-07, -4.500500250248507e-10, 5.9481614300693764e-08, -4.500500250248507e-10, 5.668136316208661e-13, 796.0, 0.011249905452132225, -5.656768553308211e-05, 5.92579993963227e-08, -5.656768553308211e-05, 3.797884176037769e-07, -4.4779344121614884e-10, 5.92579993963227e-08, -4.4779344121614884e-10, 5.632621647745639e-13, 797.0, 0.011235861107707024, -5.6426131777698174e-05, 5.9035503596760464e-08, -5.6426131777698174e-05, 3.7836176147720835e-07, -4.455509572398597e-10, 5.9035503596760464e-08, -4.455509572398597e-10, 5.597373693017049e-13, 798.0, 0.011221851222217083, -5.628511280519888e-05,5.881411979657969e-08, -5.628511280519888e-05, 3.769422391997068e-07, -4.433225175848321e-10, 5.881411979657969e-08, -4.433225175848321e-10, 5.562390283618546e-13, 799.0, 0.011207876726984978, -5.61446177016478e-05, 5.859384089035302e-08, -5.61446177016478e-05, 3.7552979392785346e-07, -4.411079557176123e-10, 5.859384089035302e-08, -4.411079557176123e-10, 5.527668709044697e-13, 800.0, 0.011193936690688133, -5.600465010502376e-05, 5.837466332536678e-08,-5.600465010502376e-05, 3.741244256616483e-07, -4.389072438826247e-10, 5.837466332536678e-08, -4.389072438826247e-10, 5.493206800891159e-13, 801.0, 0.011180032044649124, -5.586520637734793e-05, 5.8156576443479935e-08, -5.586520637734793e-05, 3.7272604913596297e-07, -4.367202155464156e-10, 5.8156576443479935e-08, -4.367202155464156e-10, 5.459002932854673e-13, 802.0, 0.011166160926222801, -5.572628288064152e-05, 5.793957313926512e-08, -5.572628288064152e-05, 3.713346075073787e-07, -4.3454678744225816e-10, 5.793957313926512e-08, -4.3454678744225816e-10, 5.425053852328721e-13, 803.0, 0.011152324266731739, -5.5587875976925716e-05, 5.7723649860008663e-08, -5.5587875976925716e-05, 3.699501007758954e-07, -4.3238687630342554e-10, 5.7723649860008663e-08, -4.3238687630342554e-10, 5.391357933010044e-13, 804.0, 0.011138522066175938, -5.544998202822171e-05, 5.7508795947569524e-08, -5.544998202822171e-05, 3.685724720980943e-07, -4.3024037110761526e-10, 5.7508795947569524e-08, -4.3024037110761526e-10, 5.357912464393211e-13, 805.0, 0.011124754324555397, -5.531260103452951e-05, 5.7295011401947704e-08, -5.531260103452951e-05, 3.672016930522659e-07, -4.2810716083252487e-10, 5.7295011401947704e-08, -4.2810716083252487e-10, 5.324715820174963e-13, 806.0, 0.011111020110547543, -5.51757329958491e-05, 5.708228201228849e-08, -5.51757329958491e-05, 3.6583767837328196e-07, -4.259871622114275e-10, 5.708228201228849e-08, -4.259871622114275e-10, 5.291765831950956e-13, 807.0, 0.011097320355474949, -5.5039370636222884e-05, 5.6870604225878196e-08, -5.5039370636222884e-05, 3.6448042806114245e-07, -4.2388026422202074e-10, 5.6870604225878196e-08, -4.2388026422202074e-10, 5.259060331316845e-13, 808.0, 0.011083654128015041, -5.490351395565085e-05, 5.665997093728947e-08, -5.490351395565085e-05, 3.631298568507191e-07, -4.217863835975777e-10,5.665997093728947e-08, -4.217863835975777e-10, 5.226597149868284e-13, 809.0, 0.011070020496845245, -5.476815567817539e-05, 5.6450378593808637e-08, -5.476815567817539e-05, 3.6178596474201186e-07, -4.197054093157959e-10, 5.6450378593808637e-08, -4.197054093157959e-10, 5.194374119200929e-13, 810.0, 0.01105642132461071, -5.4633303079754114e-05, 5.624181653729465e-08, -5.4633303079754114e-05, 3.604486948916019e-07, -4.1763725810994856e-10, 5.624181653729465e-08,-4.1763725810994856e-10, 5.162389070910434e-13, 811.0, 0.011042855679988861, -5.44989452464506e-05, 5.603428476774752e-08, -5.44989452464506e-05, 3.5911801887777983e-07, -4.155818467133088e-10, 5.603428476774752e-08, -4.155818467133088e-10, 5.130639836592454e-13, 812.0, 0.011029322631657124, -5.4365082178264856e-05, 5.582776907431253e-08, -5.4365082178264856e-05, 3.5779387985712674e-07, -4.135390363479985e-10, 5.582776907431253e-08, -4.135390363479985e-10, 5.099124789943732e-13, 813.0, 0.011015823110938072, -5.423171023721807e-05, 5.562226945698967e-08, -5.423171023721807e-05, 3.564762209862238e-07, -4.1150877150286647e-10, 5.562226945698967e-08, -4.1150877150286647e-10, 5.067841762559921e-13, 814.0, 0.011002357117831707, -5.409883306128904e-05, 5.5417775257637913e-08, -5.409883306128904e-05, 3.5516504226507095e-07, -4.0949094115561024e-10, 5.5417775257637913e-08, -4.0949094115561024e-10, 5.036789128137764e-13, 815.0, 0.010988922789692879, -5.396643973654136e-05, 5.521428292354358e-08, -5.396643973654136e-05, 3.538602868502494e-07, -4.074854897950786e-10, 5.521428292354358e-08, -4.074854897950786e-10, 5.005964176171829e-13, 816.0, 0.010975521989166737, -5.383453390095383e-05, 5.501178534927931e-08, -5.383453390095383e-05, 3.525619263200497e-07, -4.0549227864339343e-10, 5.501178534927931e-08, -4.0549227864339343e-10, 4.975365280358857e-13, 817.0, 0.010962153784930706, -5.3703108278568834e-05, 5.481027542941774e-08, -5.3703108278568834e-05, 3.512698754093435e-07, -4.035112244338279e-10, 5.481027542941774e-08, -4.035112244338279e-10, 4.944990814395589e-13, 818.0, 0.010948818176984787, -5.357216650736518e-05, 5.4609749611245206e-08, -5.357216650736518e-05, 3.4998416253984033e-07, -4.0154229941080644e-10, 5.4609749611245206e-08, -4.0154229941080644e-10, 4.914838067776595e-13, 819.0, 0.01093551516532898, -5.344170131138526e-05, 5.441020434204802e-08, -5.344170131138526e-05, 3.4870470244641183e-07, -3.995853370408753e-10, 5.441020434204802e-08, -3.995853370408753e-10, 4.884906498400787e-13, 820.0, 0.010922243818640709, -5.3311712690629065e-05, 5.4211625410971465e-08, -5.3311712690629065e-05, 3.474314667073486e-07, -3.9764028181288325e-10, 5.4211625410971465e-08, -3.9764028181288325e-10, 4.85519285366165e-13, 821.0, 0.01090900506824255, -5.318219700711779e-05, 5.4014012818015544e-08, -5.318219700711779e-05, 3.461644269009412e-07, -3.9570705046010346e-10, 5.4014012818015544e-08, -3.9570705046010346e-10, 4.825696049357009e-13, 822.0, 0.010895797982811928, -5.305315426085144e-05, 5.38173594577529e-08, -5.305315426085144e-05, 3.4490355460548017e-07, -3.937855597158091e-10, 5.38173594577529e-08, -3.937855597158091e-10, 4.79641391708252e-13, 823.0, 0.010882623493671417, -5.29245771758724e-05,5.3621661777469853e-08, -5.29245771758724e-05, 3.436487929775467e-07, -3.918757263132733e-10, 5.3621661777469853e-08, -3.918757263132733e-10, 4.767344288433839e-13, 824.0, 0.010869479738175869, -5.279647302813828e-05, 5.342690911902537e-08, -5.279647302813828e-05, 3.424000851737219e-07, -3.8997743923019357e-10, 5.342690911902537e-08, -3.8997743923019357e-10, 4.738486621309879e-13, 825.0, 0.010856368578970432, -5.266882726573385e-05, 5.3233097929705764e-08,-5.266882726573385e-05, 3.411574596157152e-07, -3.8809064295541873e-10, 5.3233097929705764e-08, -3.8809064295541873e-10, 4.709837663104122e-13, 826.0, 0.010843289084732533, -5.2541647164616734e-05, 5.3040224656797363e-08, -5.2541647164616734e-05, 3.399208026166889e-07, -3.862152264666463e-10, 5.3040224656797363e-08, -3.862152264666463e-10, 4.681396871715482e-13, 827.0, 0.01083024125546217, -5.241492544882931e-05, 5.284828219487281e-08, -5.241492544882931e-05, 3.386901425983524e-07, -3.8435113425272505e-10, 5.284828219487281e-08, -3.8435113425272505e-10, 4.653161536638528e-13, 828.0, 0.010817224159836769, -5.2288662118371576e-05, 5.265726343850474e-08, -5.2288662118371576e-05, 3.374653942955774e-07, -3.824982830469281e-10, 5.265726343850474e-08, -3.824982830469281e-10, 4.625130573671088e-13, 829.0, 0.010804237797856331, -5.216285717324354e-05, 5.2467164834979485e-08, -5.216285717324354e-05, 3.36246557708364e-07, -3.806565895825287e-10, 5.2467164834979485e-08, -3.806565895825287e-10, 4.597301814408816e-13, 830.0, 0.010791284032166004, -5.203750333748758e-05, 5.227798283158336e-08, -5.203750333748758e-05, 3.350335759932932e-07, -3.7882594283722426e-10, 5.227798283158336e-08, -3.7882594283722426e-10, 4.569673632548454e-13, 831.0, 0.010778360068798065, -5.19126006111037e-05, 5.2089706770175326e-08, -5.19126006111037e-05, 3.3382642072865565e-07, -3.7700631505543925e-10, 5.2089706770175326e-08, -3.7700631505543925e-10, 4.5422446728372867e-13, 832.0, 0.010765467770397663, -5.17881489940919e-05, 5.190233309804171e-08, -5.17881489940919e-05, 3.326250634927419e-07, -3.7519759521487117e-10, 5.190233309804171e-08, -3.7519759521487117e-10, 4.5150130379215114e-13, 833.0, 0.010752606205642223, -5.166414121049456e-05, 5.171585826246883e-08, -5.166414121049456e-05, 3.314294758638425e-07, -3.733997000487932e-10,5.171585826246883e-08, -3.733997000487932e-10, 4.48797710149787e-13, 834.0, 0.010739774443209171, -5.15405808982905e-05, 5.1530275158029326e-08, -5.15405808982905e-05, 3.3023960099853866e-07, -3.7161254629047846e-10, 5.1530275158029326e-08, -3.7161254629047846e-10, 4.46113496621256e-13, 835.0, 0.010726974345743656, -5.1417460781522095e-05, 5.1345576679295846e-08, -5.1417460781522095e-05, 3.290554104751209e-07, -3.6983610618435137e-10, 5.1345576679295846e-08,-3.6983610618435137e-10, 4.4344855478634093e-13, 836.0, 0.010714204050600529, -5.1294784498168156e-05, 5.1161762826268387e-08, -5.1294784498168156e-05, 3.2787687587187975e-07, -3.680702409525338e-10, 5.1161762826268387e-08, -3.680702409525338e-10, 4.408026678046073e-13, 837.0, 0.010701464489102364, -5.117254477227107e-05, 5.097882294080591e-08, -5.117254477227107e-05, 3.2670396876710583e-07, -3.663148950838746e-10, 5.097882294080591e-08, -3.663148950838746e-10, 4.3817572725583787e-13, 838.0, 0.01068875566124916, -5.105074160383083e-05, 5.079675702290842e-08, -5.105074160383083e-05, 3.255366323173803e-07, -3.645700408227981e-10, 5.079675702290842e-08, -3.645700408227981e-10, 4.355675434046524e-13, 839.0, 0.010676075704395771, -5.0929371354868636e-05, 5.061555441443488e-08, -5.0929371354868636e-05, 3.243748665227031e-07, -3.628355393914262e-10, 5.061555441443488e-08, -3.628355393914262e-10, 4.329779536207251e-13, 840.0, 0.010663426481187344, -5.080843766336329e-05, 5.043521511538529e-08, -5.080843766336329e-05, 3.232186145396554e-07, -3.611113352786077e-10, 5.043521511538529e-08, -3.611113352786077e-10, 4.3040682237878436e-13, 841.0, 0.010650807991623878, -5.068792961537838e-05, 5.025573202033229e-08, -5.068792961537838e-05, 3.220678763682372e-07, -3.593973729731914e-10, 5.025573202033229e-08, -3.593973729731914e-10, 4.278539870485043e-13, 842.0, 0.010638218373060226, -5.0567850848892704e-05, 5.007709802384852e-08, -5.0567850848892704e-05, 3.209225667433202e-07, -3.576935414528748e-10, 5.007709802384852e-08, -3.576935414528748e-10, 4.253193121046134e-13, 843.0, 0.010625658556818962, -5.0448201363906264e-05, 4.989930957322031e-08, -5.0448201363906264e-05, 3.197826856649044e-07, -3.5599981296208227e-10, 4.989930957322031e-08, -3.5599981296208227e-10, 4.228026349167857e-13, 844.0, 0.010613128542900085, -5.032897388446145e-05, 4.972235956302029e-08, -5.032897388446145e-05, 3.186482047112804e-07, -3.54316104234087e-10, 4.972235956302029e-08, -3.54316104234087e-10, 4.2030379285469543e-13, 845.0, 0.010600627399981022, -5.0210168410558254e-05, 4.954624799324847e-08, -5.0210168410558254e-05, 3.175190670390293e-07, -3.526423320021621e-10, 4.954624799324847e-08, -3.526423320021621e-10, 4.178226774981253e-13, 846.0, 0.01058815699070692, -5.0091781304217875e-05, 4.937096775847749e-08, -5.0091781304217875e-05, 3.1639527264815115e-07, -3.509784407551564e-10, 4.937096775847749e-08, -3.509784407551564e-10, 4.153590991116951e-13, 847.0, 0.010575714521110058, -4.997381620341912e-05, 4.919651175327999e-08, -4.997381620341912e-05, 3.1527676469522703e-07, -3.49324347226343e-10, 4.919651175327999e-08, -3.49324347226343e-10, 4.129129221701333e-13, 848.0, 0.010563301853835583, -4.985626583220437e-05,4.9022876424942297e-08, -4.985626583220437e-05, 3.1416354318025697e-07, -3.4767996814899504e-10, 4.9022876424942297e-08, -3.4767996814899504e-10, 4.1048403825322266e-13, 849.0, 0.010550918988883495, -4.973913019057363e-05, 4.8850058220750725e-08, -4.973913019057363e-05, 3.130555512598221e-07, -3.4604527576753696e-10, 4.8850058220750725e-08, -3.4604527576753696e-10, 4.0807225762558297e-13, 850.0, 0.010538564063608646, -4.9622405640548095e-05, 4.867805003527792e-08,-4.9622405640548095e-05, 3.1195273209050356e-07, -3.444201590596663e-10, 4.867805003527792e-08, -3.444201590596663e-10, 4.05677471866997e-13, 851.0, 0.010526238940656185, -4.950609218212776e-05, 4.85068483158102e-08, -4.950609218212776e-05, 3.108551140940108e-07, -3.4280459026980736e-10, 4.85068483158102e-08, -3.4280459026980736e-10, 4.0329951834713884e-13, 852.0, 0.010513941757380962, -4.939018617733382e-05, 4.8336449509633894e-08, -4.939018617733382e-05, 3.097626404269249e-07, -3.411984861312334e-10, 4.8336449509633894e-08, -3.411984861312334e-10, 4.009382886457913e-13, 853.0, 0.010501673445105553, -4.927468762616627e-05, 4.8166850064035316e-08, -4.927468762616627e-05, 3.086752826675365e-07, -3.396017633772175e-10, 4.8166850064035316e-08, -3.396017633772175e-10, 3.9859362013262845e-13, 854.0, 0.010489434003829956, -4.915959289064631e-05, 4.799803932087343e-08, -4.915959289064631e-05, 3.0759298397242674e-07, -3.3801436649660843e-10, 4.799803932087343e-08, -3.3801436649660843e-10, 3.9626537728237876e-13, 855.0, 0.010477223433554173, -4.9044901970773935e-05, 4.783001728014824e-08, -4.9044901970773935e-05, 3.06515772763305e-07, -3.36436239978255e-10, 4.783001728014824e-08, -3.36436239978255e-10, 3.93953451674825e-13, 856.0, 0.010465040802955627, -4.893061122857034e-05, 4.7662780389146064e-08, -4.893061122857034e-05, 3.05443563775043e-07, -3.3486732831100596e-10, 4.7662780389146064e-08, -3.3486732831100596e-10, 3.9165768067964124e-13, 857.0, 0.01045288611203432, -4.881672066403553e-05, 4.7496321542439546e-08, -4.881672066403553e-05, 3.0437635700764076e-07, -3.3330752047255885e-10, 4.7496321542439546e-08, -3.3330752047255885e-10, 3.893779558766103e-13, 858.0, 0.010440760292112827, -4.870322663919069e-05, 4.7330637187315006e-08, -4.870322663919069e-05, 3.033140956176794e-07, -3.3175681646291366e-10,4.7330637187315006e-08, -3.3175681646291366e-10, 3.8711411463540624e-13, 859.0, 0.010428661480545998, -4.8590125516057014e-05, 4.7165723771058765e-08, -4.8590125516057014e-05, 3.022568080268684e-07, -3.302150775041923e-10, 4.7165723771058765e-08, -3.302150775041923e-10, 3.8486607564086617e-13, 860.0, 0.010416591539978981, -4.847742093261331e-05, 4.700157063552979e-08, -4.847742093261331e-05, 3.012044089700794e-07, -3.2868233135197045e-10, 4.700157063552979e-08,-3.2868233135197045e-10, 3.826336762626642e-13, 861.0, 0.010404549539089203, -4.836510925088078e-05, 4.683818488615543e-08, -4.836510925088078e-05, 3.001568984473124e-07, -3.2715843922836996e-10, 4.683818488615543e-08, -3.2715843922836996e-10, 3.804167809755288e-13, 862.0, 0.010392535477876663, -4.8253183194901794e-05, 4.667555231208098e-08, -4.8253183194901794e-05, 2.991142196151486e-07, -3.2564337337781524e-10, 4.667555231208098e-08, -3.2564337337781524e-10, 3.7821530846429696e-13, 863.0, 0.010380548425018787, -4.8141650040633976e-05, 4.651366936059276e-08, -4.8141650040633976e-05, 2.98076372473588e-07, -3.2413707828915506e-10, 4.651366936059276e-08, -3.2413707828915506e-10, 3.760290960986429e-13, 864.0, 0.010368590243160725, -4.80304988741409e-05, 4.635253603169076e-08, -4.80304988741409e-05, 2.970433286009211e-07, -3.2263947069566257e-10, 4.635253603169076e-08, -3.2263947069566257e-10, 3.7385800835329497e-13, 865.0, 0.010356658138334751, -4.791973333340138e-05, 4.619214877266131e-08, -4.791973333340138e-05, 2.960150595754385e-07, -3.2115049508618654e-10, 4.619214877266131e-08, -3.2115049508618654e-10, 3.717019639130903e-13, 866.0, 0.010344753973186016, -4.780935341841541e-05, 4.6032496925363375e-08, -4.780935341841541e-05, 2.9499150855372136e-07, -3.1967012370515135e-10, 4.6032496925363375e-08, -3.1967012370515135e-10, 3.695608272527573e-13, 867.0, 0.01033287774771452, -4.769935185322538e-05, 4.587358404251063e-08, -4.769935185322538e-05, 2.939727039574791e-07, -3.1819824553025455e-10, 4.587358404251063e-08, -3.1819824553025455e-10, 3.674344899520787e-13, 868.0, 0.010321028530597687, -4.7589728637831286e-05, 4.571539591324836e-08, -4.7589728637831286e-05, 2.929585605215834e-07, -3.1673486056149613e-10, 4.571539591324836e-08, -3.1673486056149613e-10, 3.653227893807287e-13, 869.0, 0.010309205390512943, -4.748048377223313e-05, 4.555793964300392e-08, -4.748048377223313e-05, 2.9194907824603433e-07, -3.1527985777657364e-10, 4.555793964300392e-08, -3.1527985777657364e-10, 3.632256442235443e-13, 870.0, 0.010297410190105438, -4.73716136184521e-05, 4.540120457363628e-08, -4.73716136184521e-05, 2.909442287091224e-07, -3.1383320941991144e-10, 4.540120457363628e-08, -3.1383320941991144e-10, 3.6114291895525397e-13, 871.0, 0.010285641998052597, -4.726312181446701e-05, 4.5245183599718075e-08, -4.726312181446701e-05, 2.899439834891382e-07, -3.123948322247827e-10, 4.5245183599718075e-08, -3.123948322247827e-10, 3.5907453226069475e-13, 872.0, 0.01027390081435442, -4.715499744634144e-05, 4.508988027396299e-08, -4.715499744634144e-05, 2.889483141643723e-07, -3.109646984356118e-10, 4.508988027396299e-08, -3.109646984356118e-10, 3.5702032150954077e-13, 873.0, 0.010262185707688332, -4.7047247790033e-05,4.4935287490943665e-08, -4.7047247790033e-05, 2.8795722073482466e-07, -3.095427525412475e-10, 4.4935287490943665e-08, -3.095427525412475e-10, 3.549802053866291e-13, 874.0, 0.010250498540699482, -4.6939861931605265e-05, 4.478139814523274e-08, -4.6939861931605265e-05, 2.869706463570765e-07, -3.081288835193874e-10, 4.478139814523274e-08, -3.081288835193874e-10, 3.529540754717425e-13, 875.0, 0.010238836519420147, -4.6832847147015855e-05, 4.462821223683022e-08,-4.6832847147015855e-05, 2.859885626094183e-07, -3.06723119125607e-10, 4.462821223683022e-08, -3.06723119125607e-10, 3.509417691345551e-13, 876.0, 0.010227201506495476, -4.6726196160307154e-05, 4.4475726213022426e-08, -4.6726196160307154e-05, 2.850109694918501e-07, -3.0532534833760394e-10, 4.4475726213022426e-08, -3.0532534833760394e-10, 3.4894325927001257e-13, 877.0, 0.010215593501925468, -4.661990897147916e-05, 4.432392941566832e-08, -4.661990897147916e-05, 2.840378101609531e-07, -3.0393551564422694e-10, 4.432392941566832e-08, -3.0393551564422694e-10, 3.4695835614273474e-13, 878.0, 0.01020401157438755, -4.651398558053188e-05, 4.4172825397481574e-08, -4.651398558053188e-05, 2.830690846167272e-07, -3.02553621045476e-10, 4.4172825397481574e-08, -3.02553621045476e-10, 3.4498700554261297e-13, 879.0, 0.010192455723881721, -4.64084223494865e-05, 4.402240705303484e-08, -4.64084223494865e-05, 2.82104764437463e-07, -3.0117952576347307e-10, 4.402240705303484e-08, -3.0117952576347307e-10, 3.430290719443757e-13, 880.0, 0.010180925950407982, -4.630321927834302e-05, 4.3872670829614435e-08, -4.630321927834302e-05, 2.811448212014511e-07, -2.9981325755379373e-10, 4.3872670829614435e-08, -2.9981325755379373e-10, 3.4108447403286e-13, 881.0, 0.010169422253966331, -4.619837272912264e-05, 4.372361317450668e-08, -4.619837272912264e-05, 2.8018919806527265e-07, -2.9845470539413554e-10, 4.372361317450668e-08, -2.9845470539413554e-10, 3.3915307628279434e-13, 882.0, 0.01015794463455677, -4.6093879063846543e-05, 4.35752305349979e-08, -4.6093879063846543e-05, 2.7923792345063703e-07, -2.971038415289229e-10, 4.35752305349979e-08, -2.971038415289229e-10, 3.3723479737901574e-13, 883.0, 0.010146492160856724, -4.598974192049354e-05, 4.342751935837441e-08, -4.598974192049354e-05, 2.782909689358348e-07, -2.9576063820258014e-10,4.342751935837441e-08, -2.9576063820258014e-10, 3.3532950179625265e-13, 884.0, 0.010135066695511341, -4.588595766108483e-05, 4.328047253920886e-08, -4.588595766108483e-05, 2.773482776774472e-07, -2.9442498439280484e-10, 4.328047253920886e-08, -2.9442498439280484e-10, 3.3343713532439645e-13, 885.0, 0.010123665444552898, -4.57825226476416e-05, 4.313409007750124e-08, -4.57825226476416e-05, 2.764098212537647e-07, -2.93096880099597e-10, 4.313409007750124e-08,-2.93096880099597e-10, 3.315575624381756e-13, 886.0, 0.01011229120194912, -4.5679440518142655e-05, 4.298836842053788e-08, -4.5679440518142655e-05, 2.7547562808649673e-07, -2.9177624205622976e-10, 4.298836842053788e-08, -2.9177624205622976e-10, 3.296906747173728e-13, 887.0, 0.010100942105054855, -4.557670035865158e-05, 4.284330046289142e-08, -4.557670035865158e-05, 2.7454561291051505e-07, -2.904630425071275e-10, 4.284330046289142e-08, -2.904630425071275e-10, 3.2783639084682514e-13, 888.0, 0.010089618153870106, -4.547430944512598e-05, 4.269888265184818e-08, -4.547430944512598e-05, 2.7361977572581964e-07, -2.89157225941139e-10, 4.269888265184818e-08, -2.89157225941139e-10, 3.259946295113697e-13, 889.0, 0.01007831934839487, -4.537226413958706e-05, 4.255511498740816e-08, -4.537226413958706e-05, 2.726981165324105e-07, -2.8785873684711305e-10, 4.255511498740816e-08, -2.8785873684711305e-10, 3.241652551857349e-13, 890.0, 0.010067046619951725, -4.5270560804056004e-05, 4.241199391685768e-08, -4.5270560804056004e-05, 2.7178057848686876e-07, -2.865675197138984e-10, 4.241199391685768e-08, -2.865675197138984e-10, 3.2234818655475783e-13, 891.0, 0.010055799037218094, -4.5169199438532814e-05, 4.226951233476939e-08, -4.5169199438532814e-05, 2.7086716158919444e-07, -2.852835467859194e-10, 4.226951233476939e-08, -2.852835467859194e-10, 3.205433151982212e-13, 892.0, 0.010044575668871403, -4.506818004301749e-05, 4.21276666884296e-08, -4.506818004301749e-05, 2.6995780899596866e-07, -2.8400676255202484e-10, 4.21276666884296e-08, -2.8400676255202484e-10, 3.187505598009621e-13, 893.0, 0.0100333783775568, -4.496749534155242e-05, 4.1986456977838316e-08, -4.496749534155242e-05, 2.6905254912890086e-07, -2.827370837454879e-10, 4.1986456977838316e-08, -2.827370837454879e-10, 3.169698390478176e-13, 894.0, 0.010022205300629139, -4.486715261009522e-05, 4.184587965028186e-08, -4.486715261009522e-05, 2.681513251445722e-07, -2.8147451036630855e-10, 4.184587965028186e-08, -2.8147451036630855e-10, 3.1520101741351614e-13, 895.0, 0.010011057369410992, -4.476714093470946e-05, 4.170592760033287e-08, -4.476714093470946e-05, 2.672541370429826e-07, -2.802189869033356e-10, 4.170592760033287e-08, -2.802189869033356e-10, 3.134440677930034e-13, 896.0, 0.009999933652579784, -4.4667463953373954e-05, 4.156659727527767e-08, -4.4667463953373954e-05, 2.663609279807133e-07, -2.7897045784541774e-10, 4.156659727527767e-08, -2.7897045784541774e-10, 3.1169882755595346e-13, 897.0, 0.009988835081458092, -4.45681216660887e-05, 4.1427888675116264e-08, -4.45681216660887e-05, 2.6547169795776426e-07, -2.777288399258282e-10, 4.1427888675116264e-08, -2.777288399258282e-10, 3.0996524249225776e-13, 898.0, 0.009977761656045914, -4.4469106796896085e-05,4.128979469442129e-08, -4.4469106796896085e-05, 2.6458641855242604e-07, -2.7649416090014256e-10, 4.128979469442129e-08, -2.7649416090014256e-10, 3.0824320418169904e-13, 899.0, 0.009966711513698101, -4.437042662175372e-05, 4.1152315333192746e-08, -4.437042662175372e-05, 2.637050613429892e-07, -2.7526630974605837e-10, 4.1152315333192746e-08, -2.7526630974605837e-10, 3.0653265841416866e-13, 900.0, 0.009955686517059803, -4.427207022672519e-05, 4.101544348600328e-08,-4.427207022672519e-05, 2.628276263294538e-07, -2.740452864635756e-10, 4.101544348600328e-08, -2.740452864635756e-10, 3.0483346966439506e-13, 901.0, 0.00994468666613102, -4.41740412497893e-05, 4.0879179152852885e-08, -4.41740412497893e-05, 2.619540850901103e-07, -2.7283100778596747e-10, 4.0879179152852885e-08, -2.7283100778596747e-10, 3.031455566172153e-13, 902.0, 0.009933710098266602, -4.407633969094604e-05, 4.074351878102789e-08, -4.407633969094604e-05, 2.610844092032494e-07, -2.716234737132339e-10, 4.074351878102789e-08, -2.716234737132339e-10, 3.014688921675751e-13, 903.0, 0.009922757744789124, -4.397895827423781e-05, 4.060845881781461e-08, -4.397895827423781e-05, 2.6021857024716155e-07, -2.704225732230725e-10, 4.060845881781461e-08, -2.704225732230725e-10, 2.9980331368514856e-13, 904.0, 0.009911829605698586, -4.388190427562222e-05, 4.047399215778569e-08, -4.388190427562222e-05, 2.5935656822184683e-07, -2.6922833407105884e-10, 4.047399215778569e-08, -2.6922833407105884e-10, 2.9814876695982706e-13, 905.0, 0.009900925680994987, -4.378516678116284e-05, 4.034011880094113e-08, -4.378516678116284e-05, 2.5849834628388635e-07, -2.680406729904661e-10, 4.034011880094113e-08, -2.680406729904661e-10, 2.9650517067644766e-13, 906.0, 0.00989004597067833, -4.368874942883849e-05, 4.0206838747280926e-08, -4.368874942883849e-05, 2.5764393285498954e-07, -2.66859534470143e-10, 4.0206838747280926e-08, -2.66859534470143e-10, 2.948724164147931e-13, 907.0, 0.009879189543426037, -4.3592652218649164e-05, 4.007414133866405e-08, -4.3592652218649164e-05, 2.5679327109173755e-07, -2.6568491851008957e-10, 4.007414133866405e-08, -2.6568491851008957e-10, 2.932504770698091e-13, 908.0, 0.009868357330560684, -4.349687151261605e-05, 3.9942030127804173e-08, -4.349687151261605e-05, 2.5594636099413037e-07, -2.64516741843579e-10,3.9942030127804173e-08, -2.64516741843579e-10, 2.916391900111698e-13, 909.0, 0.009857549332082272, -4.340140367276035e-05, 3.981049800927394e-08, -4.340140367276035e-05, 2.5510314571874915e-07, -2.633550044706112e-10, 3.981049800927394e-08, -2.633550044706112e-10, 2.900385552388751e-13, 910.0, 0.00984676368534565, -4.330625233706087e-05, 3.967954143035968e-08, -4.330625233706087e-05, 2.542636536873033e-07, -2.6219962312445944e-10, 3.967954143035968e-08,-2.6219962312445944e-10, 2.8844841012259925e-13, 911.0, 0.009836002252995968, -4.321141022955999e-05, 3.954916039106138e-08, -4.321141022955999e-05, 2.53427828056374e-07, -2.61050570049548e-10, 3.954916039106138e-08, -2.61050570049548e-10, 2.868687546623422e-13, 912.0, 0.009825265035033226, -4.3116884626215324e-05, 3.9419347785951686e-08, -4.3116884626215324e-05, 2.525956688259612e-07, -2.599077897347257e-10, 3.9419347785951686e-08, -2.599077897347257e-10, 2.8529945333283235e-13, 913.0, 0.009814550168812275, -4.3022664613090456e-05, 3.92901036150306e-08, -4.3022664613090456e-05, 2.517671475743555e-07, -2.5877128217999257e-10, 3.92901036150306e-08, -2.5877128217999257e-10, 2.837404248189068e-13, 914.0, 0.009803859516978264, -4.292875382816419e-05, 3.916142432558445e-08, -4.292875382816419e-05, 2.5094223587984743e-07, -2.576409641186217e-10, 3.916142432558445e-08, -2.576409641186217e-10, 2.821916420155113e-13, 915.0, 0.009793191216886044, -4.283515227143653e-05, 3.9033306364899545e-08, -4.283515227143653e-05, 2.5012093374243705e-07, -2.565168077950375e-10, 3.9033306364899545e-08, -2.565168077950375e-10, 2.8065296939737416e-13, 916.0, 0.009782547131180763, -4.274185266694985e-05, 3.890574618026221e-08, -4.274185266694985e-05, 2.493032127404149e-07, -2.5539878545366435e-10, 3.890574618026221e-08, -2.5539878545366435e-10, 2.7912435275438685e-13, 917.0, 0.009771925397217274, -4.264886229066178e-05, 3.877874377167245e-08, -4.264886229066178e-05, 2.4848904445207154e-07, -2.54286841583351e-10, 3.877874377167245e-08, -2.54286841583351e-10, 2.776057107713864e-13, 918.0, 0.00976132694631815, -4.255617022863589e-05, 3.8652292033702906e-08, -4.255617022863589e-05, 2.47678428877407e-07, -2.531809484285219e-10, 3.8652292033702906e-08, -2.531809484285219e-10, 2.760969892382642e-13, 919.0, 0.009750750847160816, -4.24637837568298e-05, 3.8526387413639895e-08, -4.24637837568298e-05, 2.4687130917300237e-07, -2.5208105047802576e-10, 3.8526387413639895e-08, -2.5208105047802576e-10, 2.745981068398573e-13, 920.0, 0.009740198962390423, -4.2371695599285886e-05, 3.840102991148342e-08, -4.2371695599285886e-05, 2.4606771376056713e-07, -2.50987119976287e-10, 3.840102991148342e-08, -2.50987119976287e-10, 2.7310895515594846e-13, 921.0, 0.009729668498039246, -4.227990939398296e-05, 3.82762159745198e-08, -4.227990939398296e-05, 2.4526761421839183e-07, -2.4989912916772994e-10, 3.82762159745198e-08, -2.4989912916772994e-10, 2.7162947997642906e-13, 922.0, 0.009719161316752434, -4.218841786496341e-05, 3.815194205003536e-08, -4.218841786496341e-05, 2.444709537030576e-07, -2.488170225412034e-10, 3.815194205003536e-08, -2.488170225412034e-10, 2.7015962709119046e-13, 923.0, 0.009708677418529987, -4.2097224650206044e-05,3.8028208138030095e-08, -4.2097224650206044e-05, 2.436777606362739e-07, -2.477407723411318e-10, 3.8028208138030095e-08, -2.477407723411318e-10, 2.6869931518506973e-13, 924.0, 0.009698215872049332, -4.200632611173205e-05, 3.790500713307665e-08, -4.200632611173205e-05, 2.428879781746218e-07, -2.4667032305636383e-10, 3.790500713307665e-08, -2.4667032305636383e-10, 2.6724843583784963e-13, 925.0, 0.009687776677310467, -4.191572224954143e-05, 3.778233548246135e-08,-4.191572224954143e-05, 2.4210163473981083e-07, -2.456056469313239e-10, 3.778233548246135e-08, -2.456056469313239e-10, 2.6580698904953015e-13, 926.0, 0.009677359834313393, -4.182541306363419e-05, 3.766019318618419e-08, -4.182541306363419e-05, 2.4131864506671263e-07, -2.4454671621043644e-10, 3.766019318618419e-08, -2.4454671621043644e-10, 2.6437483929483974e-13, 927.0, 0.00966696534305811, -4.17353912780527e-05, 3.753858024424517e-08, -4.17353912780527e-05, 2.4053903757703665e-07, -2.4349347538255017e-10, 3.753858024424517e-08, -2.4349347538255017e-10, 2.6295193236366976e-13, 928.0, 0.009656593203544617, -4.164566416875459e-05, 3.741748599850325e-08, -4.164566416875459e-05, 2.397628122707829e-07, -2.424459244476651e-10, 3.741748599850325e-08, -2.424459244476651e-10, 2.615382140459116e-13, 929.0, 0.00964624248445034, -4.155622445978224e-05, 3.729691400167212e-08, -4.155622445978224e-05, 2.3898988388282305e-07, -2.414039801390544e-10, 3.729691400167212e-08, -2.414039801390544e-10, 2.601336030264023e-13, 930.0, 0.00963591504842043, -4.1467068513156846e-05, 3.7176860701038095e-08, -4.1467068513156846e-05, 2.3822029504572129e-07, -2.4036764245671804e-10, 3.7176860701038095e-08, -2.4036764245671804e-10, 2.587380450950333e-13, 931.0, 0.009625609032809734, -4.137820360483602e-05, 3.7057322543887494e-08, -4.137820360483602e-05, 2.3745400312691345e-07, -2.393368281339292e-10, 3.7057322543887494e-08, -2.393368281339292e-10, 2.5735143183158726e-13, 932.0, 0.00961532536894083, -4.128962245886214e-05, 3.693829242479296e-08, -4.128962245886214e-05, 2.3669099391554482e-07, -2.383115649262635e-10, 3.693829242479296e-08, -2.383115649262635e-10, 2.5597376323606424e-13, 933.0, 0.009605064056813717, -4.1201328713214025e-05, 3.681977389646818e-08, -4.1201328713214025e-05, 2.359312532007607e-07, -2.3729176956699405e-10,3.681977389646818e-08, -2.3729176956699405e-10, 2.5460490378319267e-13, 934.0, 0.00959482416510582, -4.1113315091934055e-05, 3.670176340619946e-08, -4.1113315091934055e-05, 2.3517476677170635e-07, -2.362774420561209e-10, 3.670176340619946e-08, -2.362774420561209e-10, 2.5324485347297254e-13, 935.0, 0.009584606625139713, -4.102558159502223e-05, 3.6584253848559456e-08, -4.102558159502223e-05, 2.3442149199581763e-07, -2.352685268824928e-10, 3.6584253848559456e-08,-2.352685268824928e-10, 2.518934767801323e-13, 936.0, 0.009574409574270248, -4.093813186045736e-05, 3.646724522354816e-08, -4.093813186045736e-05, 2.3367144308394927e-07, -2.342649685349585e-10, 3.646724522354816e-08, -2.342649685349585e-10, 2.5055077370467194e-13, 937.0, 0.009564235806465149, -4.085095861228183e-05, 3.635073753116558e-08, -4.085095861228183e-05, 2.3292459161439183e-07, -2.33266767013518e-10, 3.635073753116558e-08, -2.33266767013518e-10, 2.492166358263742e-13, 938.0, 0.009554082527756691, -4.0764065488474444e-05, 3.623472366598435e-08, -4.0764065488474444e-05, 2.321809233762906e-07, -2.3227388068480792e-10, 3.623472366598435e-08, -2.3227388068480792e-10, 2.478910089351305e-13, 939.0, 0.00954395066946745, -4.06774488510564e-05, 3.611920362800447e-08, -4.06774488510564e-05, 2.3144040994793613e-07, -2.312862679154648e-10, 3.611920362800447e-08, -2.312862679154648e-10, 2.4657383882083217e-13, 940.0, 0.009533841162919998, -4.059110870002769e-05, 3.6004177417225947e-08, -4.059110870002769e-05, 2.3070303711847373e-07, -2.3030390094991304e-10, 3.6004177417225947e-08, -2.3030390094991304e-10, 2.452650712733706e-13, 941.0, 0.009523752145469189, -4.0505041397409514e-05, 3.588963437550774e-08, -4.0505041397409514e-05, 2.299688048879034e-07, -2.293267381547892e-10, 3.588963437550774e-08, -2.293267381547892e-10, 2.4396462497758287e-13, 942.0, 0.00951368547976017, -4.041924694320187e-05, 3.577557805556353e-08, -4.041924694320187e-05, 2.2923768483451568e-07, -2.283547517745177e-10, 3.577557805556353e-08, -2.283547517745177e-10, 2.42672418618306e-13, 943.0, 0.009503639303147793, -4.0333728975383565e-05, 3.5662004904679634e-08, -4.0333728975383565e-05, 2.2850964853660116e-07, -2.2738791405352288e-10, 3.5662004904679634e-08, -2.2738791405352288e-10, 2.4138845219554006e-13, 944.0, 0.009493614546954632, -4.024847658001818e-05, 3.554891137014238e-08, -4.024847658001818e-05, 2.2778469599415985e-07, -2.2642619723622914e-10, 3.554891137014238e-08, -2.2642619723622914e-10, 2.4011261728906774e-13, 945.0, 0.009483610279858112, -4.016349703306332e-05, 3.543629745195176e-08, -4.016349703306332e-05, 2.2706281299633702e-07, -2.2546954581148526e-10, 3.543629745195176e-08, -2.2546954581148526e-10, 2.3884485968878044e-13, 946.0, 0.009473628364503384, -4.007878669654019e-05, 3.532415604468042e-08, -4.007878669654019e-05, 2.2634397112142324e-07, -2.2451794590150342e-10, 3.532415604468042e-08, -2.2451794590150342e-10, 2.3758512518456953e-13, 947.0, 0.009463666006922722, -3.9994345570448786e-05, 3.521249070104204e-08, -3.9994345570448786e-05, 2.256281703694185e-07, -2.235713558729202e-10, 3.521249070104204e-08, -2.235713558729202e-10, 2.363333595663264e-13, 948.0, 0.00945372600108385, -3.99101700168103e-05,3.510129076289559e-08, -3.99101700168103e-05, 2.249153823186134e-07, -2.226297618479478e-10, 3.510129076289559e-08, -2.226297618479478e-10, 2.350895086239424e-13, 949.0, 0.009443805553019047, -3.982625639764592e-05, 3.499056333566841e-08, -3.982625639764592e-05, 2.242055785472985e-07, -2.2169310831543498e-10, 3.499056333566841e-08, -2.2169310831543498e-10, 2.338534910422546e-13, 950.0, 0.009433906525373459, -3.974261198891327e-05, 3.488029776121948e-08,-3.974261198891327e-05, 2.234987732663285e-07, -2.2076138139759394e-10, 3.488029776121948e-08, -2.2076138139759394e-10, 2.326252797162087e-13, 951.0, 0.009424027986824512, -3.9659229514654726e-05, 3.477049759226247e-08, -3.9659229514654726e-05, 2.2279493805399397e-07, -2.1983453946106124e-10, 3.477049759226247e-08, -2.1983453946106124e-10, 2.314047662255875e-13, 952.0, 0.009414170868694782, -3.957610533689149e-05, 3.466115572337003e-08, -3.957610533689149e-05, 2.220940444885855e-07, -2.1891255475026128e-10, 3.466115572337003e-08, -2.1891255475026128e-10, 2.301919776754452e-13, 953.0, 0.009404333308339119, -3.9493246731581166e-05, 3.455227215454215e-08, -3.9493246731581166e-05, 2.2139609257010306e-07, -2.1799539950961844e-10, 3.455227215454215e-08, -2.1799539950961844e-10, 2.289867785405103e-13, 954.0, 0.009394517168402672, -3.941064642276615e-05, 3.444384333306516e-08, -3.941064642276615e-05, 2.2070105387683725e-07, -2.170830459835571e-10, 3.444384333306516e-08, -2.170830459835571e-10, 2.277891417157285e-13, 955.0, 0.009384721517562866, -3.9328304410446435e-05, 3.4335869258939056e-08, -3.9328304410446435e-05, 2.2000892840878805e-07, -2.1617546641650165e-10, 3.4335869258939056e-08, -2.1617546641650165e-10, 2.2659902654351832e-13, 956.0, 0.009374945424497128, -3.9246220694622025e-05, 3.422834637945016e-08, -3.9246220694622025e-05, 2.1931970195510075e-07, -2.1527261917508866e-10, 3.422834637945016e-08, -2.1527261917508866e-10, 2.2541635170871682e-13, 957.0, 0.00936518982052803, -3.916439527529292e-05, 3.412127114188479e-08, -3.916439527529292e-05, 2.1863334609406593e-07, -2.1437447650374253e-10, 3.412127114188479e-08, -2.1437447650374253e-10, 2.242410901062697e-13, 958.0, 0.00935545563697815, -3.908282451448031e-05, 3.401464354624295e-08, -3.908282451448031e-05, 2.1794984661482886e-07, -2.1348101064688763e-10,3.401464354624295e-08, -2.1348101064688763e-10, 2.23073160421014e-13, 959.0, 0.00934574007987976, -3.9001508412184194e-05, 3.390845648709728e-08, -3.9001508412184194e-05, 2.1726918930653483e-07, -2.1259220772673615e-10, 3.390845648709728e-08, -2.1259220772673615e-10, 2.2191253554789542e-13, 960.0, 0.009336045943200588, -3.892044333042577e-05, 3.3802713517161465e-08, -3.892044333042577e-05, 2.1659137416918384e-07, -2.1170801223213687e-10, 3.3802713517161465e-08,-2.1170801223213687e-10, 2.2075914772427818e-13, 961.0, 0.009326371364295483, -3.883963290718384e-05, 3.369740753100814e-08, -3.883963290718384e-05, 2.1591637278106646e-07, -2.1082842416308978e-10, 3.369740753100814e-08, -2.1082842416308978e-10, 2.1961294274005366e-13, 962.0, 0.009316716343164444, -3.87590735044796e-05, 3.3592542081350985e-08, -3.87590735044796e-05, 2.1524417093132797e-07, -2.0995338800844365e-10, 3.3592542081350985e-08, -2.0995338800844365e-10, 2.1847386638511324e-13, 963.0, 0.009307081811130047, -3.867876512231305e-05, 3.3488110062762644e-08, -3.867876512231305e-05, 2.1457475440911367e-07, -2.0908288989041068e-10, 3.3488110062762644e-08, -2.0908288989041068e-10, 2.1734187800187543e-13, 964.0, 0.009297467768192291, -3.859870776068419e-05, 3.338410792252944e-08, -3.859870776068419e-05, 2.1390810900356882e-07, -2.0821688817562745e-10, 3.338410792252944e-08, -2.0821688817562745e-10, 2.1621692338023163e-13, 965.0, 0.009287872351706028, -3.851889414363541e-05, 3.3280539213365046e-08, -3.851889414363541e-05, 2.1324423471469345e-07, -2.0735538286409394e-10, 3.3280539213365046e-08, -2.0735538286409394e-10, 2.1509893475754605e-13, 966.0, 0.009278297424316406, -3.843933154712431e-05, 3.317739682984211e-08, -3.843933154712431e-05, 2.125830889099234e-07, -2.0649831844465893e-10, 3.317739682984211e-08, -2.0649831844465893e-10, 2.1398788502876437e-13, 967.0, 0.009268742054700851, -3.836001269519329e-05, 3.307468077196063e-08, -3.836001269519329e-05, 2.1192468580011337e-07, -2.0564568103953462e-10, 3.307468077196063e-08, -2.0564568103953462e-10, 2.1288371998377797e-13, 968.0, 0.009259207174181938, -3.828094122582115e-05, 3.2972387487006927e-08, -3.828094122582115e-05, 2.1126899696355395e-07, -2.0479742901535758e-10, 3.2972387487006927e-08, -2.0479742901535758e-10, 2.1178638541247824e-13, 969.0, 0.009249690920114517, -3.820211350102909e-05, 3.2870516974981e-08, -3.820211350102909e-05, 2.106159939785357e-07, -2.039535623721278e-10, 3.2870516974981e-08, -2.039535623721278e-10, 2.1069582710475654e-13, 970.0, 0.009240194223821163, -3.81235295208171e-05, 3.2769062130455495e-08, -3.81235295208171e-05, 2.0996570526676805e-07, -2.0311402559869407e-10, 3.2769062130455495e-08, -2.0311402559869407e-10, 2.096120044030314e-13, 971.0, 0.009230717085301876, -3.804518564720638e-05, 3.266802650614409e-08, -3.804518564720638e-05, 2.0931807398483215e-07, -2.0227880481726856e-10, 3.266802650614409e-08, -2.0227880481726856e-10, 2.085348630971942e-13, 972.0, 0.009221259504556656, -3.7967085518175736e-05, 3.25674065493331e-08, -3.7967085518175736e-05, 2.08673100132728e-07, -2.0144788615006348e-10, 3.25674065493331e-08, -2.0144788615006348e-10, 2.0746434897713634e-13, 973.0, 0.009211821481585503, -3.788922185776755e-05,3.246719870730885e-08, -3.788922185776755e-05, 2.0803078371045558e-07, -2.006212140859276e-10, 3.246719870730885e-08, -2.006212140859276e-10, 2.0640043493780347e-13, 974.0, 0.009202402085065842, -3.781160194193944e-05, 3.236740298007135e-08, -3.781160194193944e-05, 2.0739109629630548e-07, -1.997987886248609e-10, 3.236740298007135e-08, -1.997987886248609e-10, 2.0534305321655982e-13, 975.0, 0.009193003177642822, -3.7734218494733796e-05, 3.22680158149069e-08,-3.7734218494733796e-05, 2.0675403789027769e-07, -1.9898056813349996e-10, 3.22680158149069e-08, -1.9898056813349996e-10, 2.0429216315582394e-13, 976.0, 0.00918362196534872, -3.765707151615061e-05, 3.216903365910184e-08, -3.765707151615061e-05, 2.0611958007066278e-07, -1.9816653873405699e-10, 3.216903365910184e-08, -1.9816653873405699e-10, 2.0324772409801434e-13, 977.0, 0.00917426124215126, -3.758016100618988e-05, 3.2070456512656165e-08, -3.758016100618988e-05, 2.0548770862660604e-07, -1.9735665879316855e-10, 3.2070456512656165e-08, -1.9735665879316855e-10, 2.0220969538554956e-13, 978.0, 0.009164918214082718, -3.750348696485162e-05, 3.197228082285619e-08, -3.750348696485162e-05, 2.0485842355810746e-07, -1.9655091443304684e-10, 3.197228082285619e-08, -1.9655091443304684e-10, 2.0117800925579382e-13, 979.0, 0.009155595675110817, -3.742704575415701e-05, 3.187450658970192e-08, -3.742704575415701e-05, 2.0423171065431234e-07, -1.9574927789811625e-10, 3.187450658970192e-08, -1.9574927789811625e-10, 2.001526386036928e-13, 980.0, 0.009146290831267834, -3.735084101208486e-05, 3.177713026047968e-08, -3.735084101208486e-05, 2.0360754149351123e-07, -1.9495172143280115e-10, 3.177713026047968e-08, -1.9495172143280115e-10, 1.991335292191379e-13, 981.0, 0.009137005545198917, -3.727486546267755e-05, 3.168015183518946e-08, -3.727486546267755e-05, 2.0298591607570415e-07, -1.9415823115931374e-10, 3.168015183518946e-08, -1.9415823115931374e-10, 1.9812064044454764e-13, 982.0, 0.009127738885581493, -3.7199122743913904e-05, 3.1583564208403914e-08, -3.7199122743913904e-05, 2.0236682019003638e-07, -1.933687654442906e-10, 3.1583564208403914e-08, -1.933687654442906e-10, 1.9711393162234053e-13, 983.0, 0.009118490852415562, -3.71236092178151e-05, 3.148737093283671e-08, -3.71236092178151e-05, 2.017502396256532e-07, -1.9258331040994392e-10,3.148737093283671e-08, -1.9258331040994392e-10, 1.9611334854240797e-13, 984.0, 0.009109261445701122, -3.704832852235995e-05, 3.139156845577418e-08, -3.704832852235995e-05, 2.0113616017169988e-07, -1.9180183830069808e-10, 3.139156845577418e-08, -1.9180183830069808e-10, 1.9511886409969564e-13, 985.0, 0.00910005159676075, -3.697327338159084e-05, 3.129615322450263e-08, -3.697327338159084e-05, 2.0052456761732174e-07, -1.9102433523876527e-10, 3.129615322450263e-08,-1.9102433523876527e-10, 1.9413042408409492e-13, 986.0, 0.009090859442949295, -3.689845107146539e-05, 3.1201125239022076e-08, -3.689845107146539e-05, 1.9991546196251875e-07, -1.9025075959078208e-10, 3.1201125239022076e-08, -1.9025075959078208e-10, 1.9314797428549718e-13, 987.0, 0.009081685915589333, -3.6823850678047165e-05, 3.110648094661883e-08, -3.6823850678047165e-05, 1.993088147855815e-07, -1.894810974789607e-10, 3.110648094661883e-08, -1.894810974789607e-10, 1.9217150115137527e-13, 988.0, 0.009072531014680862, -3.674947947729379e-05, 3.101221679457922e-08, -3.674947947729379e-05, 1.9870461187565525e-07, -1.887153211477255e-10, 3.101221679457922e-08, -1.887153211477255e-10, 1.912009369190934e-13, 989.0, 0.009063394740223885, -3.6675330193247646e-05, 3.0918336335616914e-08, -3.6675330193247646e-05, 1.9810285323274002e-07, -1.8795341671928867e-10, 3.0918336335616914e-08, -1.8795341671928867e-10, 1.902362409310701e-13, 990.0, 0.009054277092218399, -3.660140646388754e-05, 3.0824832464304563e-08, -3.660140646388754e-05, 1.975035246459811e-07, -1.871953425602868e-10, 3.0824832464304563e-08, -1.871953425602868e-10, 1.8927739963477824e-13, 991.0, 0.009045177139341831, -3.652770828921348e-05, 3.0731705180642166e-08, -3.652770828921348e-05, 1.9690661190452374e-07, -1.864410986707199e-10, 3.0731705180642166e-08, -1.864410986707199e-10, 1.8832433171505486e-13, 992.0, 0.009036095812916756, -3.645422839326784e-05, 3.063895448462972e-08, -3.645422839326784e-05, 1.9631210079751327e-07, -1.8569064341722452e-10, 3.063895448462972e-08, -1.8569064341722452e-10, 1.873770236193728e-13, 993.0, 0.009027032181620598, -3.638097405200824e-05, 3.054657682355355e-08, -3.638097405200824e-05, 1.9571997711409495e-07, -1.8494394904422506e-10, 3.054657682355355e-08, -1.8494394904422506e-10, 1.8643543469015061e-13, 994.0, 0.009017987176775932, -3.630793798947707e-05, 3.0454568644699975e-08, -3.630793798947707e-05, 1.9513024085426878e-07, -1.8420101555172153e-10, 3.0454568644699975e-08, -1.8420101555172153e-10, 1.8549951071727966e-13, 995.0, 0.009008960798382759, -3.623512020567432e-05, 3.0362929948068995e-08, -3.623512020567432e-05, 1.9454286359632533e-07, -1.834618151841383e-10, 3.0362929948068995e-08, -1.834618151841383e-10, 1.8456922459570563e-13, 996.0, 0.008999952115118504, -3.6162524338578805e-05, 3.027165718094693e-08, -3.6162524338578805e-05, 1.939578453402646e-07, -1.8272630630811193e-10, 3.027165718094693e-08, -1.8272630630811193e-10, 1.8364453566784705e-13, 997.0, 0.008990961126983166, -3.609014311223291e-05, 3.018075389604746e-08, -3.609014311223291e-05, 1.933751718752319e-07, -1.8199448892364245e-10, 3.018075389604746e-08, -1.8199448892364245e-10, 1.827253897235953e-13, 998.0, 0.008981987833976746, -3.601798016461544e-05,3.0090209435229553e-08, -3.601798016461544e-05, 1.9279482899037248e-07, -1.8126632139736643e-10, 3.0090209435229553e-08, -1.8126632139736643e-10, 1.818117596578961e-13, 999.0, 0.008973033167421818, -3.594603549572639e-05, 3.000003090392056e-08, -3.594603549572639e-05, 1.9221680247483164e-07, -1.8054180372928386e-10, 3.000003090392056e-08, -1.8054180372928386e-10, 1.8090361836569507e-13, 1000.0, 0.008964096195995808, -3.5874305467586964e-05, 2.9910211196693126e-08,-3.5874305467586964e-05, 1.9164109232860937e-07, -1.7982089428603132e-10, 2.9910211196693126e-08, -1.7982089428603132e-10, 1.8000089808435649e-13, 1001.0, 0.00895517598837614, -3.5802790080197155e-05, 2.982074676083357e-08, -3.5802790080197155e-05, 1.9106767012999626e-07, -1.791035930676088e-10, 2.982074676083357e-08, -1.791035930676088e-10, 1.7910358526135317e-13, 1002.0, 0.008946274407207966, -3.573148569557816e-05, 2.9731641149055577e-08, -3.573148569557816e-05, 1.904965358789923e-07, -1.783898445628651e-10, 2.9731641149055577e-08, -1.783898445628651e-10, 1.7821163923910366e-13, 1003.0, 0.008937390521168709, -3.566039595170878e-05, 2.964289080864546e-08, -3.566039595170878e-05, 1.8992767536474275e-07, -1.77679662649588e-10, 2.964289080864546e-08, -1.77679662649588e-10, 1.7732500580749933e-13, 1004.0, 0.00892852433025837, -3.558952084858902e-05, 2.9554492186889547e-08, -3.558952084858902e-05, 1.8936107437639293e-07, -1.769730056944141e-10, 2.9554492186889547e-08, -1.769730056944141e-10, 1.7644367141401301e-13, 1005.0, 0.008919675834476948, -3.551885311026126e-05, 2.9466445283787834e-08, -3.551885311026126e-05, 1.8879673291394283e-07, -1.7626985981955556e-10, 2.9466445283787834e-08, -1.7626985981955556e-10, 1.7556759540106326e-13, 1006.0, 0.00891084410250187, -3.5448396374704316e-05, 2.9378746546626644e-08, -3.5448396374704316e-05, 1.8823463676653773e-07, -1.755701972694368e-10, 2.9378746546626644e-08, -1.755701972694368e-10, 1.7469672355854143e-13, 1007.0, 0.008902030065655708, -3.537815064191818e-05, 2.9291397751762815e-08, -3.537815064191818e-05, 1.876747575124682e-07, -1.7487401804405778e-10, 2.9291397751762815e-08, -1.7487401804405778e-10, 1.7383102878139323e-13, 1008.0, 0.008893233723938465, -3.530811227392405e-05, 2.920439357012583e-08, -3.530811227392405e-05, 1.8711709515173425e-07, -1.741812666322673e-10,2.920439357012583e-08, -1.741812666322673e-10, 1.7297047041203717e-13, 1009.0, 0.00888445507735014, -3.523828127072193e-05, 2.911773222535885e-08, -3.523828127072193e-05, 1.8656164968433586e-07, -1.7349195691185315e-10, 2.911773222535885e-08, -1.7349195691185315e-10, 1.721150348979461e-13, 1010.0, 0.008875693194568157, -3.5168657632311806e-05, 2.9031415493818713e-08, -3.5168657632311806e-05, 1.8600839268856362e-07, -1.7280604724945192e-10, 2.9031415493818713e-08,-1.7280604724945192e-10, 1.7126466802901141e-13, 1011.0, 0.008866949006915092, -3.509923772071488e-05, 2.894543982279174e-08, -3.509923772071488e-05, 1.8545732416441751e-07, -1.721235237672758e-10, 2.894543982279174e-08, -1.721235237672758e-10, 1.7041932914765162e-13, 1012.0, 0.00885822158306837, -3.503002881188877e-05, 2.8859801659564255e-08, -3.503002881188877e-05, 1.8490842990104284e-07, -1.7144437258753698e-10, 2.8859801659564255e-08, -1.7144437258753698e-10, 1.6957899114881242e-13, 1013.0, 0.008849511854350567, -3.4961019991897047e-05, 2.8774501004136255e-08, -3.4961019991897047e-05, 1.8436169568758487e-07, -1.7076855207687203e-10, 2.8774501004136255e-08, -1.7076855207687203e-10, 1.687436269274395e-13, 1014.0, 0.008840818889439106, -3.489221489871852e-05, 2.868953785650774e-08, -3.489221489871852e-05, 1.8381712152404361e-07, -1.7009607611306876e-10, 2.868953785650774e-08, -1.7009607611306876e-10, 1.6791319582595138e-13, 1015.0, 0.008832142688333988, -3.482361353235319e-05, 2.8604906887608195e-08, -3.482361353235319e-05, 1.8327469319956435e-07, -1.6942690306276376e-10, 2.8604906887608195e-08, -1.6942690306276376e-10, 1.6708767073929376e-13, 1016.0, 0.008823484182357788, -3.475521589280106e-05, 2.8520609873794456e-08, -3.475521589280106e-05, 1.8273438229243766e-07, -1.687610051703814e-10, 2.8520609873794456e-08, -1.687610051703814e-10, 1.66266997457358e-13, 1017.0, 0.008814842440187931, -3.468701834208332e-05, 2.8436643262352845e-08, -3.468701834208332e-05, 1.8219620301351824e-07, -1.6809838243592168e-10, 2.8436643262352845e-08, -1.6809838243592168e-10, 1.6545116242761698e-13, 1018.0, 0.008806217461824417, -3.461902088019997e-05, 2.8353007053283363e-08, -3.461902088019997e-05, 1.816601411519514e-07, -1.674390209815968e-10, 2.8353007053283363e-08, -1.674390209815968e-10, 1.6464013854501636e-13, 1019.0, 0.008797609247267246, -3.455122350715101e-05, 2.826969769387233e-08, -3.455122350715101e-05, 1.8112616828602768e-07, -1.6678287917404333e-10, 2.826969769387233e-08, -1.6678287917404333e-10, 1.6383385804692036e-13, 1020.0, 0.008789017796516418, -3.4483626222936437e-05, 2.818671340776291e-08, -3.4483626222936437e-05, 1.805942844157471e-07, -1.6612994313547347e-10, 2.818671340776291e-08, -1.6612994313547347e-10, 1.6303233448585613e-13, 1021.0, 0.008780443109571934, -3.441622538957745e-05, 2.8104054194955097e-08, -3.441622538957745e-05, 1.8006448954110965e-07, -1.654801989880994e-10, 2.8104054194955097e-08, -1.654801989880994e-10, 1.622355000991879e-13, 1022.0, 0.008771885186433792, -3.434902100707404e-05, 2.8021718279092056e-08, -3.434902100707404e-05, 1.7953676945126062e-07, -1.6483363285413333e-10, 2.8021718279092056e-08, -1.6483363285413333e-10, 1.6144332778186138e-13, 1023.0, 0.008763344027101994, -3.428201671340503e-05,2.7939703883816946e-08, -3.428201671340503e-05, 1.790110957244906e-07, -1.6419023085578743e-10, 2.7939703883816946e-08, -1.6419023085578743e-10, 1.6065580398134938e-13, 1024.0, 0.008754819631576538, -3.421520523261279e-05, 2.785800923277293e-08, -3.421520523261279e-05, 1.7848748257165425e-07, -1.635499513596983e-10, 2.785800923277293e-08, -1.635499513596983e-10, 1.5987287448754328e-13, 1025.0, 0.008746311068534851, -3.414859020267613e-05, 2.7776632549603164e-08,-3.414859020267613e-05, 1.779659015710422e-07, -1.6291279436586592e-10, 2.7776632549603164e-08, -1.6291279436586592e-10, 1.5909452574791594e-13, 1026.0, 0.008737820200622082, -3.408217162359506e-05, 2.7695572057950812e-08, -3.408217162359506e-05, 1.7744636693350913e-07, -1.622787459965025e-10, 2.7695572057950812e-08, -1.622787459965025e-10, 1.5832071710488588e-13, 1027.0, 0.008729345165193081, -3.4015942219411954e-05, 2.7614825981459035e-08, -3.4015942219411954e-05, 1.769288360264909e-07, -1.616477646182446e-10, 2.7614825981459035e-08, -1.616477646182446e-10, 1.5755143500592594e-13, 1028.0, 0.008720885962247849, -3.394990926608443e-05, 2.753439432012783e-08, -3.394990926608443e-05, 1.7641332306084223e-07, -1.6101985023109222e-10, 2.753439432012783e-08, -1.6101985023109222e-10, 1.5678661168840036e-13, 1029.0, 0.008712444454431534, -3.388406548765488e-05, 2.745427529760036e-08, -3.388406548765488e-05, 1.758998138257084e-07, -1.6039498895725757e-10, 2.745427529760036e-08, -1.6039498895725757e-10, 1.5602626070483627e-13, 1030.0, 0.008704017847776413, -3.38184145221021e-05, 2.7374467137519787e-08, -3.38184145221021e-05, 1.7538827989938e-07, -1.5977315304116502e-10, 2.7374467137519787e-08, -1.5977315304116502e-10, 1.552703142925979e-13, 1031.0, 0.00869560893625021, -3.37529563694261e-05, 2.729496628717243e-08, -3.37529563694261e-05, 1.748787354927117e-07, -1.5915432860502676e-10, 2.729496628717243e-08, -1.5915432860502676e-10, 1.5451875889915812e-13, 1032.0, 0.0086872149258852, -3.368768739164807e-05, 2.7215774522915126e-08, -3.368768739164807e-05, 1.7437116639484884e-07, -1.585384878932672e-10, 2.7215774522915126e-08, -1.585384878932672e-10, 1.5377156741946257e-13, 1033.0, 0.008678838610649109, -3.36226039507892e-05, 2.71368882920342e-08, -3.36226039507892e-05, 1.7386555839493667e-07, -1.579256309058863e-10,2.71368882920342e-08, -1.579256309058863e-10, 1.5302871274845697e-13, 1034.0, 0.008670477196574211, -3.3557713322807103e-05, 2.7058305818172812e-08, -3.3557713322807103e-05, 1.733619114929752e-07, -1.5731572988730846e-10, 2.7058305818172812e-08, -1.5731572988730846e-10, 1.5229015422855985e-13, 1035.0, 0.008662132546305656, -3.349300823174417e-05, 2.698002710133096e-08, -3.349300823174417e-05, 1.72860197267255e-07, -1.567087709597459e-10, 2.698002710133096e-08,-1.567087709597459e-10, 1.5155587830724404e-13, 1036.0, 0.00865380372852087, -3.34284886776004e-05, 2.690205036515181e-08, -3.34284886776004e-05, 1.7236041571777605e-07, -1.5610474024541077e-10, 2.690205036515181e-08, -1.5610474024541077e-10, 1.5082584432692808e-13, 1037.0, 0.008645490743219852, -3.3364158298354596e-05, 2.6824373833278514e-08, -3.3364158298354596e-05, 1.7186256684453838e-07, -1.5550362386651528e-10, 2.6824373833278514e-08, -1.5550362386651528e-10, 1.501000116300305e-13, 1038.0, 0.008637193590402603, -3.330000981804915e-05, 2.674699572935424e-08, -3.330000981804915e-05, 1.7136663643668726e-07, -1.5490538018969602e-10, 2.674699572935424e-08, -1.5490538018969602e-10, 1.493783802165513e-13, 1039.0, 0.008628912270069122, -3.323604687466286e-05, 2.6669916053378984e-08, -3.323604687466286e-05, 1.7087259607251326e-07, -1.5431002309274078e-10, 2.6669916053378984e-08, -1.5431002309274078e-10, 1.4866090942890903e-13, 1040.0, 0.008620647713541985, -3.3172269468195736e-05, 2.659313125263907e-08, -3.3172269468195736e-05, 1.7038047417372582e-07, -1.5371752482007395e-10, 2.659313125263907e-08, -1.5371752482007395e-10, 1.479475586095222e-13, 1041.0, 0.00861239805817604, -3.310867759864777e-05, 2.6516639550777654e-08, -3.310867759864777e-05, 1.6989022810776078e-07, -1.531278576161199e-10, 2.6516639550777654e-08, -1.531278576161199e-10, 1.472383277583908e-13, 1042.0, 0.008604164235293865, -3.304526399006136e-05, 2.644044272415158e-08, -3.304526399006136e-05, 1.6940185787461814e-07, -1.5254102148087867e-10, 2.644044272415158e-08, -1.5254102148087867e-10, 1.4653316266540622e-13, 1043.0, 0.008595946244895458, -3.2982035918394104e-05, 2.636453722004717e-08, -3.2982035918394104e-05, 1.6891536347429792e-07, -1.519569886587746e-10, 2.636453722004717e-08, -1.519569886587746e-10, 1.4583203622551416e-13, 1044.0, 0.00858774408698082, -3.2918989745667204e-05, 2.6288923038464418e-08, -3.2918989745667204e-05, 1.6843073069594539e-07, -1.513757452720199e-10, 2.6288923038464418e-08, -1.513757452720199e-10, 1.451349484387146e-13, 1045.0, 0.00857955776154995, -3.285612183390185e-05, 2.621359662668965e-08, -3.285612183390185e-05, 1.6794794532870583e-07, -1.507972913206146e-10, 2.621359662668965e-08, -1.507972913206146e-10, 1.4444184509489894e-13, 1046.0, 0.008571387268602848, -3.279343218309805e-05, 2.6138556208366026e-08, -3.279343218309805e-05, 1.6746700737257925e-07, -1.5022158517119522e-10, 2.6138556208366026e-08, -1.5022158517119522e-10, 1.4375271264154e-13, 1047.0, 0.00856323167681694, -3.27309244312346e-05, 2.6063803559850385e-08, -3.27309244312346e-05, 1.6698790261671093e-07, -1.496486407015496e-10, 2.6063803559850385e-08, -1.496486407015496e-10, 1.4306752397358347e-13, 1048.0, 0.008555091917514801, -3.2668594940332696e-05,2.5989336904785887e-08, -3.2668594940332696e-05, 1.6651061685024615e-07, -1.490784162783143e-10, 2.5989336904785887e-08, -1.490784162783143e-10, 1.4238625198597504e-13, 1049.0, 0.008546967059373856, -3.260644371039234e-05, 2.5915150914102014e-08, -3.260644371039234e-05, 1.6603515007318492e-07, -1.4851089802370154e-10, 2.5915150914102014e-08, -1.4851089802370154e-10, 1.417088695736604e-13, 1050.0, 0.008538858033716679, -3.2544467103434727e-05, 2.5841249140512446e-08,-3.2544467103434727e-05, 1.6556150228552724e-07, -1.479460859377113e-10, 2.5841249140512446e-08, -1.479460859377113e-10, 1.4103534963158526e-13, 1051.0, 0.00853076484054327, -3.248267239541747e-05, 2.5767628031303502e-08, -3.248267239541747e-05, 1.6508964506556367e-07, -1.4738395226476797e-10, 2.5767628031303502e-08, -1.4738395226476797e-10, 1.4036566505469528e-13, 1052.0, 0.008522686548531055, -3.242104867240414e-05, 2.5694284033761505e-08, -3.242104867240414e-05, 1.6461957841329422e-07, -1.4682448312708374e-10, 2.5694284033761505e-08, -1.4682448312708374e-10, 1.3969978873793615e-13, 1053.0, 0.008514623157680035, -3.235960321035236e-05, 2.5621220700600134e-08, -3.235960321035236e-05, 1.6415130232871888e-07, -1.462676646468708e-10, 2.5621220700600134e-08, -1.462676646468708e-10, 1.3903770712878072e-13, 1054.0, 0.008506575599312782, -3.2298328733304515e-05, 2.554843270274887e-08, -3.2298328733304515e-05, 1.6368480260098295e-07, -1.4571349682412915e-10, 2.554843270274887e-08, -1.4571349682412915e-10, 1.3837939312217468e-13, 1055.0, 0.008498542942106724, -3.223722887923941e-05, 2.547592004020771e-08, -3.223722887923941e-05, 1.632200650192317e-07, -1.4516193802549537e-10, 2.547592004020771e-08, -1.4516193802549537e-10, 1.3772480606053655e-13, 1056.0, 0.008490525186061859, -3.2176303648157045e-05, 2.540368271297666e-08, -3.2176303648157045e-05, 1.6275707537261042e-07, -1.4461298825096947e-10, 2.540368271297666e-08, -1.4461298825096947e-10, 1.370739323913392e-13, 1057.0, 0.008482523262500763, -3.211555304005742e-05, 2.533171716834204e-08, -3.211555304005742e-05, 1.6229584787197382e-07, -1.4406664750055143e-10, 2.533171716834204e-08, -1.4406664750055143e-10, 1.3642674500952828e-13, 1058.0, 0.00847453624010086, -3.205496977898292e-05, 2.5260023406303844e-08, -3.205496977898292e-05, 1.6183635409561248e-07, -1.4352286026309002e-10,2.5260023406303844e-08, -1.4352286026309002e-10, 1.357832168100495e-13, 1059.0, 0.008466564118862152, -3.1994561140891165e-05, 2.518860142686208e-08, -3.1994561140891165e-05, 1.613785940435264e-07, -1.4298165429416088e-10, 2.518860142686208e-08, -1.4298165429416088e-10, 1.3514333424037572e-13, 1060.0, 0.008458606898784637, -3.193432348780334e-05, 2.5117445900946223e-08, -3.193432348780334e-05, 1.6092256771571556e-07, -1.4244298796040056e-10, 2.5117445900946223e-08,-1.4244298796040056e-10, 1.345070701954526e-13, 1061.0, 0.008450664579868317, -3.187425318174064e-05, 2.5046560381269956e-08, -3.187425318174064e-05, 1.6046824669047055e-07, -1.4190686126180907e-10, 2.5046560381269956e-08, -1.4190686126180907e-10, 1.3387439757022584e-13, 1062.0, 0.00844273716211319, -3.1814353860681877e-05, 2.497593953876276e-08, -3.1814353860681877e-05, 1.6001564517864608e-07, -1.413732464428108e-10, 2.497593953876276e-08, -1.413732464428108e-10, 1.3324528925964113e-13, 1063.0, 0.008434824645519257, -3.175462188664824e-05, 2.4905585149781473e-08, -3.175462188664824e-05, 1.5956473475853272e-07, -1.4084214350340574e-10, 2.4905585149781473e-08, -1.4084214350340574e-10, 1.3261971815864415e-13, 1064.0, 0.008426927030086517, -3.1695057259639725e-05, 2.4835495437969257e-08, -3.1695057259639725e-05, 1.5911551543013047e-07, -1.4031352468801828e-10, 2.4835495437969257e-08, -1.4031352468801828e-10, 1.3199767071470775e-13, 1065.0, 0.008419043384492397, -3.1635663617635146e-05, 2.4765666850612433e-08, -3.1635663617635146e-05, 1.5866798719343933e-07, -1.3978738999664841e-10, 2.4765666850612433e-08, -1.3978738999664841e-10, 1.3137913337530477e-13, 1066.0, 0.008411175571382046, -3.1576433684676886e-05, 2.4696099387711e-08, -3.1576433684676886e-05, 1.5822213583760458e-07, -1.3926372555150834e-10, 2.4696099387711e-08, -1.3926372555150834e-10, 1.3076406548285374e-13, 1067.0, 0.008403321728110313, -3.151737109874375e-05, 2.46267948256218e-08, -3.151737109874375e-05, 1.5777794715177151e-07, -1.3874250359702245e-10, 2.46267948256218e-08, -1.3874250359702245e-10, 1.3015243993230036e-13, 1068.0, 0.00839548371732235, -3.145847222185694e-05, 2.4557746058917473e-08, -3.145847222185694e-05, 1.5733542113594012e-07, -1.3822371025540292e-10, 2.4557746058917473e-08, -1.3822371025540292e-10, 1.2954425672364461e-13, 1069.0, 0.00838765874505043, -3.139974069199525e-05, 2.4488958416668538e-08, -3.139974069199525e-05, 1.568945577901104e-07, -1.3770735940443757e-10, 2.4488958416668538e-08, -1.3770735940443757e-10, 1.2893947519930504e-13, 1070.0, 0.00837984960526228, -3.134117287117988e-05, 2.4420424793447637e-08, -3.134117287117988e-05, 1.5645532869257295e-07, -1.3719339553297516e-10, 2.4420424793447637e-08, -1.3719339553297516e-10, 1.2833806825422733e-13, 1071.0, 0.008372054435312748, -3.128276875941083e-05, 2.435214874196845e-08, -3.128276875941083e-05, 1.5601773384332773e-07, -1.366818463965913e-10, 2.435214874196845e-08, -1.366818463965913e-10, 1.2774003588841149e-13, 1072.0, 0.008364273235201836, -3.12245283566881e-05, 2.4284124933160456e-08, -3.12245283566881e-05, 1.5558178745322948e-07, -1.361726703619226e-10, 2.4284124933160456e-08, -1.361726703619226e-10, 1.2714535099680319e-13, 1073.0, 0.008356506936252117, -3.116644802503288e-05,2.4216355143380497e-08, -3.116644802503288e-05, 1.5514744688971405e-07, -1.3566585355118121e-10, 2.4216355143380497e-08, -1.3566585355118121e-10, 1.2655397292182097e-13, 1074.0, 0.008348755538463593, -3.110853140242398e-05, 2.4148837596271733e-08, -3.110853140242398e-05, 1.5471472636363615e-07, -1.3516140984215497e-10, 2.4148837596271733e-08, -1.3516140984215497e-10, 1.2596590166346483e-13, 1075.0, 0.008341018110513687, -3.10507784888614e-05, 2.4081570515477324e-08,-3.10507784888614e-05, 1.5428362587499578e-07, -1.3465929760148043e-10, 2.4081570515477324e-08, -1.3465929760148043e-10, 1.253810965641533e-13, 1076.0, 0.008333294652402401, -3.099318200838752e-05, 2.401455390099727e-08, -3.099318200838752e-05, 1.538541170020835e-07, -1.341595168291576e-10, 2.401455390099727e-08, -1.341595168291576e-10, 1.247995576238864e-13, 1077.0, 0.008325586095452309, -3.0935749236959964e-05, 2.3947784200117894e-08, -3.0935749236959964e-05, 1.5342618553404463e-07, -1.336620536473987e-10, 2.3947784200117894e-08, -1.336620536473987e-10, 1.2422124418508262e-13, 1078.0, 0.008317891508340836, -3.087847289862111e-05, 2.3881263189196034e-08, -3.087847289862111e-05, 1.5299985989258857e-07, -1.3316689417841587e-10, 2.3881263189196034e-08, -1.3316689417841587e-10, 1.2364614269521484e-13, 1079.0, 0.008310211822390556, -3.082135663134977e-05, 2.381498731551801e-08, -3.082135663134977e-05, 1.525751116560059e-07, -1.3267402454442134e-10, 2.381498731551801e-08, -1.3267402454442134e-10, 1.230742396017559e-13, 1080.0, 0.008302545174956322, -3.0764400435145944e-05, 2.3748956579083824e-08, -3.0764400435145944e-05, 1.521519266134419e-07, -1.321834308676273e-10, 2.3748956579083824e-08, -1.321834308676273e-10, 1.2250549424712431e-13, 1081.0, 0.008294893428683281, -3.070760067203082e-05, 2.3683170979893475e-08, -3.070760067203082e-05, 1.5173030476489657e-07, -1.3169511314803373e-10, 2.3683170979893475e-08, -1.3169511314803373e-10, 1.2193992018384725e-13, 1082.0, 0.008287254720926285, -3.0650957342004403e-05, 2.3617626965233285e-08, -3.0650957342004403e-05, 1.513102318995152e-07, -1.3120904363006503e-10, 2.3617626965233285e-08, -1.3120904363006503e-10, 1.2137746320181608e-13, 1083.0, 0.008279630914330482, -3.059447044506669e-05, 2.3552324535103253e-08, -3.059447044506669e-05, 1.508917222281525e-07, -1.3072520843593338e-10,2.3552324535103253e-08, -1.3072520843593338e-10, 1.208181233010308e-13, 1084.0, 0.0082720210775733, -3.053813998121768e-05, 2.348726368950338e-08, -3.053813998121768e-05, 1.5047474732909905e-07, -1.302436075656388e-10, 2.348726368950338e-08, -1.302436075656388e-10, 1.2026187337643712e-13, 1085.0, 0.008264425210654736, -3.0481964131467976e-05, 2.3422440875719985e-08, -3.0481964131467976e-05, 1.5005930720235483e-07, -1.2976421326360565e-10, 2.3422440875719985e-08,-1.2976421326360565e-10, 1.197086863229807e-13, 1086.0, 0.008256843313574791, -3.0425944714806974e-05, 2.335785609375307e-08, -3.0425944714806974e-05, 1.4964540184791986e-07, -1.2928702552983395e-10, 2.335785609375307e-08, -1.2928702552983395e-10, 1.191585485881344e-13, 1087.0, 0.008249275386333466, -3.037007809325587e-05, 2.3293509343602636e-08, -3.037007809325587e-05, 1.492330170549394e-07, -1.288120304865359e-10, 2.3293509343602636e-08, -1.288120304865359e-10, 1.1861144661937106e-13, 1088.0, 0.00824172142893076, -3.0314366085804068e-05, 2.3229398848911842e-08, -3.0314366085804068e-05, 1.4882213861255877e-07, -1.2833922813371146e-10, 2.3229398848911842e-08, -1.2833922813371146e-10, 1.1806736686416353e-13, 1089.0, 0.008234180510044098, -3.0258806873462163e-05, 2.3165524609680688e-08, -3.0258806873462163e-05, 1.4841276652077795e-07, -1.2786857683799724e-10, 2.3165524609680688e-08, -1.2786857683799724e-10, 1.1752626866493032e-13, 1090.0, 0.00822665449231863, -3.0203400456230156e-05, 2.3101883073195495e-08, -3.0203400456230156e-05, 1.4800490077959694e-07, -1.2740009047718104e-10, 2.3101883073195495e-08, -1.2740009047718104e-10, 1.169881384691443e-13, 1091.0, 0.008219141513109207, -3.0148146834108047e-05, 2.3038474239456264e-08, -3.0148146834108047e-05, 1.4759852717816102e-07, -1.2693374129568724e-10, 2.3038474239456264e-08, -1.2693374129568724e-10, 1.1645297627680545e-13, 1092.0, 0.008211642503738403, -3.0093044188106433e-05, 2.2975296332106154e-08, -3.0093044188106433e-05, 1.471936457164702e-07, -1.2646952929351585e-10, 2.2975296332106154e-08, -1.2646952929351585e-10, 1.1592074143033232e-13, 1093.0, 0.008204156532883644, -3.0038092518225312e-05, 2.2912351127502006e-08, -3.0038092518225312e-05, 1.4679022797281505e-07, -1.2600742671509124e-10, 2.2912351127502006e-08, -1.2600742671509124e-10, 1.1539142037719774e-13, 1094.0, 0.008196684531867504, -2.9983290005475283e-05, 2.284963507293014e-08, -2.9983290005475283e-05, 1.46388302368905e-07, -1.2554744743820123e-10, 2.284963507293014e-08, -1.2554744743820123e-10, 1.1486499956487456e-13, 1095.0, 0.008189226500689983, -2.9928638468845747e-05, 2.278714639203372e-08, -2.9928638468845747e-05, 1.4598782627217588e-07, -1.250895498294824e-10, 2.278714639203372e-08, -1.250895498294824e-10, 1.1434145188830847e-13, 1096.0, 0.008181781508028507, -2.9874136089347303e-05, 2.272488686116958e-08, -2.9874136089347303e-05, 1.4558881389348244e-07, -1.2463374776672254e-10, 2.272488686116958e-08, -1.2463374776672254e-10, 1.1382077734749946e-13, 1097.0, 0.00817435048520565, -2.981978286697995e-05, 2.2662852927624044e-08, -2.981978286697995e-05, 1.4519125102196995e-07, -1.2418001349434604e-10, 2.2662852927624044e-08, -1.2418001349434604e-10, 1.1330293528486607e-13, 1098.0, 0.008166933432221413, -2.9765576982754283e-05,2.2601046367753952e-08, -2.9765576982754283e-05, 1.4479515186849312e-07, -1.237283470123529e-10, 2.2601046367753952e-08, -1.237283470123529e-10, 1.127879257004083e-13, 1099.0, 0.008159528486430645, -2.9711520255659707e-05, 2.2539461852488785e-08, -2.9711520255659707e-05, 1.4440047380048782e-07, -1.2327873444295534e-10, 2.2539461852488785e-08, -1.2327873444295534e-10, 1.1227571471280826e-13, 1100.0, 0.008152138441801071, -2.9657609047717415e-05, 2.247810293454222e-08,-2.9657609047717415e-05, 1.4400723102880875e-07, -1.2283116190836552e-10, 2.247810293454222e-08, -1.2283116190836552e-10, 1.1176630232206594e-13, 1101.0, 0.008144760504364967, -2.960384517791681e-05, 2.2416966061200583e-08, -2.960384517791681e-05, 1.436154235534559e-07, -1.2238561553079563e-10, 2.2416966061200583e-08, -1.2238561553079563e-10, 1.1125965464686347e-13, 1102.0, 0.008137396536767483, -2.955022682726849e-05, 2.235604945610703e-08, -2.955022682726849e-05, 1.4322502295271988e-07, -1.219420953102457e-10, 2.235604945610703e-08, -1.219420953102457e-10, 1.1075575813467367e-13, 1103.0, 0.008130045607686043, -2.949675399577245e-05, 2.2295354895618402e-08, -2.949675399577245e-05, 1.4283604343745537e-07, -1.2150057349114007e-10, 2.2295354895618402e-08, -1.2150057349114007e-10, 1.102545992329694e-13, 1104.0, 0.008122708648443222, -2.9443426683428697e-05, 2.223487882702102e-08, -2.9443426683428697e-05, 1.4244848500766238e-07, -1.2106105007347878e-10, 2.223487882702102e-08, -1.2106105007347878e-10, 1.097561643892235e-13, 1105.0, 0.008115383796393871, -2.9390244890237227e-05, 2.2174623026671725e-08, -2.9390244890237227e-05, 1.4206230503077677e-07, -1.20623511179474e-10, 2.2174623026671725e-08, -1.20623511179474e-10, 1.0926042649838166e-13, 1106.0, 0.00810807291418314, -2.9337204978219233e-05, 2.2114582165499996e-08, -2.9337204978219233e-05, 1.4167753192850796e-07, -1.2018794293133794e-10, 2.2114582165499996e-08, -1.2018794293133794e-10, 1.0876737200791672e-13, 1107.0, 0.008100775070488453, -2.9284310585353523e-05, 2.2054759796219514e-08, -2.9284310585353523e-05, 1.4129415149000124e-07, -1.197543453290706e-10, 2.2054759796219514e-08, -1.197543453290706e-10, 1.0827698736530153e-13, 1108.0, 0.00809349026530981, -2.9231556254671887e-05, 2.19951523661166e-08, -2.9231556254671887e-05, 1.4091213529354718e-07, -1.1932270449488414e-10,2.19951523661166e-08, -1.1932270449488414e-10, 1.0778925224174535e-13, 1109.0, 0.008086218498647213, -2.9178947443142533e-05, 2.1935759875191252e-08, -2.9178947443142533e-05, 1.405315117608552e-07, -1.1889300655099078e-10, 2.1935759875191252e-08, -1.1889300655099078e-10, 1.0730415308472102e-13, 1110.0, 0.00807895977050066, -2.9126478693797253e-05, 2.1876580547086633e-08, -2.9126478693797253e-05, 1.401522524702159e-07, -1.184652376196027e-10, 2.1876580547086633e-08,-1.184652376196027e-10, 1.0682166956543782e-13, 1111.0, 0.008071714080870152, -2.907415182562545e-05, 2.181761438180274e-08, -2.907415182562545e-05, 1.3977435742162925e-07, -1.180393838229321e-10, 2.181761438180274e-08, -1.180393838229321e-10, 1.0634178813136858e-13, 1112.0, 0.008064481429755688, -2.902196501963772e-05, 2.175885960298274e-08, -2.902196501963772e-05, 1.3939781240424054e-07, -1.176154590387668e-10, 2.175885960298274e-08, -1.176154590387668e-10, 1.0586449522998614e-13, 1113.0, 0.008057261817157269, -2.8969920094823465e-05, 2.1700314434269785e-08, -2.8969920094823465e-05, 1.390226316289045e-07, -1.1719342163374336e-10, 2.1700314434269785e-08, -1.1719342163374336e-10, 1.0538976375623621e-13, 1114.0, 0.008050055243074894, -2.8918015232193284e-05, 2.164198065202072e-08, -2.8918015232193284e-05, 1.3864878667391167e-07, -1.1677327160786177e-10, 2.164198065202072e-08, -1.1677327160786177e-10, 1.049175869338552e-13, 1115.0, 0.00804286077618599, -2.8866248612757772e-05, 2.1583854703521865e-08, -2.8866248612757772e-05, 1.3827627753926208e-07, -1.1635501590001596e-10, 2.1583854703521865e-08, -1.1635501590001596e-10, 1.0444795121031594e-13, 1116.0, 0.008035680279135704, -2.881462023651693e-05, 2.152593836513006e-08, -2.881462023651693e-05, 1.3790510422495572e-07, -1.1593862675463029e-10, 2.152593836513006e-08, -1.1593862675463029e-10, 1.0398082948056414e-13, 1117.0, 0.008028511889278889, -2.876313192246016e-05, 2.1468228084131624e-08, -2.876313192246016e-05, 1.375352667309926e-07, -1.1552409723281087e-10, 2.1468228084131624e-08, -1.1552409723281087e-10, 1.0351621496833621e-13, 1118.0, 0.008021356537938118, -2.8711780032608658e-05, 2.141072386052656e-08, -2.8711780032608658e-05, 1.3716673663566326e-07, -1.151114134567699e-10, 2.141072386052656e-08, -1.151114134567699e-10, 1.0305408734484142e-13, 1119.0, 0.008014213293790817, -2.8660566385951824e-05, 2.1353423917958025e-08, -2.8660566385951824e-05, 1.3679954236067715e-07, -1.1470058236540126e-10, 2.1353423917958025e-08, -1.1470058236540126e-10, 1.0259443305755261e-13, 1120.0, 0.008007083088159561, -2.8609489163500257e-05, 2.1296330032782862e-08, -2.8609489163500257e-05, 1.3643364127347013e-07, -1.1429157620312935e-10, 2.1296330032782862e-08, -1.1429157620312935e-10, 1.0213723855394263e-13, 1121.0, 0.00799996592104435, -2.8558548365253955e-05, 2.123943865228739e-08, -2.8558548365253955e-05, 1.360690475848969e-07, -1.1388438803106027e-10, 2.123943865228739e-08, -1.1388438803106027e-10, 1.0168249028148432e-13, 1122.0, 0.007992861792445183, -2.850774399121292e-05, 2.118274977647161e-08, -2.850774399121292e-05, 1.3570574708410277e-07, -1.1347901784919401e-10, 2.118274977647161e-08, -1.1347901784919401e-10, 1.0123016791138695e-13, 1123.0, 0.007985769771039486, -2.845707604137715e-05,2.1126261628978682e-08, -2.845707604137715e-05, 1.3534375398194243e-07, -1.1307544484084886e-10, 2.1126261628978682e-08, -1.1307544484084886e-10, 1.0078025111485978e-13, 1124.0, 0.007978689856827259, -2.840654087776784e-05, 2.1069975986165446e-08, -2.840654087776784e-05, 1.3498302564585174e-07, -1.1267366900602482e-10, 2.1069975986165446e-08, -1.1267366900602482e-10, 1.003327398919028e-13, 1125.0, 0.007971622981131077, -2.8356142138363793e-05, 2.1013889295318222e-08,-2.8356142138363793e-05, 1.3462359049754014e-07, -1.1227366952804019e-10, 2.1013889295318222e-08, -1.1227366952804019e-10, 9.988760713746173e-14, 1126.0, 0.007964568212628365, -2.8305876185186207e-05, 2.0957999780080172e-08, -2.8305876185186207e-05, 1.342654343261529e-07, -1.1187544640689495e-10, 2.0957999780080172e-08, -1.1187544640689495e-10, 9.944484607527296e-14, 1127.0, 0.007957526482641697, -2.825574301823508e-05, 2.0902310993164974e-08, -2.825574301823508e-05, 1.3390854292083532e-07, -1.1147899270369521e-10, 2.0902310993164974e-08, -1.1147899270369521e-10, 9.900442960028219e-14, 1128.0, 0.0079504968598485, -2.8205744456499815e-05, 2.084681760550211e-08, -2.8205744456499815e-05, 1.3355291628158739e-07, -1.1108428760175926e-10, 2.084681760550211e-08, -1.1108428760175926e-10, 9.856635771248942e-14, 1129.0, 0.007943479344248772, -2.815587868099101e-05, 2.079152139344842e-08, -2.815587868099101e-05, 1.331985401975544e-07, -1.1069133110108709e-10, 2.079152139344842e-08, -1.1069133110108709e-10, 9.813061008310392e-14, 1130.0, 0.007936474867165089, -2.8106143872719258e-05, 2.0736420580647064e-08, -2.8106143872719258e-05, 1.3284542887959105e-07, -1.103001093238909e-10, 2.0736420580647064e-08, -1.103001093238909e-10, 9.769717315959853e-14, 1131.0, 0.007929482497274876, -2.8056540031684563e-05, 2.0681513390741202e-08, -2.8056540031684563e-05, 1.3249355390598794e-07, -1.0991060839238287e-10, 2.0681513390741202e-08, -1.0991060839238287e-10, 9.726602661318251e-14, 1132.0, 0.007922502234578133, -2.8007068976876326e-05, 2.0626799823730835e-08, -2.8007068976876326e-05, 1.3214292948759976e-07, -1.0952283524545692e-10, 2.0626799823730835e-08, -1.0952283524545692e-10, 9.683716366759229e-14, 1133.0, 0.00791553407907486, -2.7957728889305145e-05, 2.0572279879615962e-08, -2.7957728889305145e-05, 1.317935414135718e-07, -1.0913676212753742e-10,2.0572279879615962e-08, -1.0913676212753742e-10, 9.641057077030071e-14, 1134.0, 0.007908578962087631, -2.7908517949981615e-05, 2.0517951782039745e-08, -2.7908517949981615e-05, 1.3144537547304935e-07, -1.0875239597751829e-10, 2.0517951782039745e-08, -1.0875239597751829e-10, 9.598622759251704e-14, 1135.0, 0.007901635952293873, -2.785943797789514e-05, 2.0463815531002183e-08, -2.785943797789514e-05, 1.3109844587688713e-07, -1.0836971597871781e-10, 2.0463815531002183e-08,-1.0836971597871781e-10, 9.55641273579777e-14, 1136.0, 0.00789470411837101, -2.7810485335066915e-05, 2.0409867573789597e-08, -2.7810485335066915e-05, 1.307527242033757e-07, -1.0798872213113597e-10, 2.0409867573789597e-08, -1.0798872213113597e-10, 9.514424973789196e-14, 1137.0, 0.007887785322964191, -2.7761663659475744e-05, 2.0356111463115667e-08, -2.7761663659475744e-05, 1.3040822466336977e-07, -1.0760939361809108e-10, 2.0356111463115667e-08, -1.0760939361809108e-10, 9.472658117973265e-14, 1138.0, 0.007880878634750843, -2.771296931314282e-05, 2.0302541869909874e-08, -2.771296931314282e-05, 1.3006493304601463e-07, -1.0723173737847702e-10, 2.0302541869909874e-08, -1.0723173737847702e-10, 9.43111149072362e-14, 1139.0, 0.00787398312240839, -2.766440411505755e-05, 2.0249160570529057e-08, -2.766440411505755e-05, 1.2972283514045557e-07, -1.068557325956121e-10, 2.0249160570529057e-08, -1.068557325956121e-10, 9.389783059161189e-14, 1140.0, 0.007867100648581982, -2.7615966246230528e-05, 2.0195967564973216e-08, -2.7615966246230528e-05, 1.293819451575473e-07, -1.064813723306024e-10, 2.0195967564973216e-08, -1.064813723306024e-10, 9.348672145659612e-14, 1141.0, 0.007860230281949043, -2.756765388767235e-05, 2.0142959300528673e-08, -2.756765388767235e-05, 1.2904224888643512e-07, -1.0610865658344792e-10, 2.0142959300528673e-08, -1.0610865658344792e-10, 9.307776717339816e-14, 1142.0, 0.007853371091187, -2.751946885837242e-05, 2.0090137553552267e-08, -2.751946885837242e-05, 1.28703746327119e-07, -1.0573756453746697e-10, 2.0090137553552267e-08, -1.0573756453746697e-10, 9.267095418949087e-14, 1143.0, 0.007846524007618427, -2.747141115833074e-05, 2.003749877133032e-08, -2.747141115833074e-05, 1.2836642326874426e-07, -1.0536809619265952e-10, 2.003749877133032e-08, -1.0536809619265952e-10, 9.226628250487423e-14, 1144.0, 0.007839689031243324, -2.74234789685579e-05, 1.998504473021967e-08, -2.74234789685579e-05, 1.2803026550045615e-07, -1.0500023767123778e-10, 1.998504473021967e-08, -1.0500023767123778e-10, 9.186372501449394e-14, 1145.0, 0.007832866162061691, -2.7375670470064506e-05, 1.9932773653863478e-08, -2.7375670470064506e-05, 1.276952872331094e-07, -1.0463398203430785e-10, 1.9932773653863478e-08, -1.0463398203430785e-10, 9.146326816582284e-14, 1146.0, 0.007826055400073528, -2.732798930082936e-05, 1.9880683765904905e-08, -2.732798930082936e-05, 1.2736148846670403e-07, -1.0426932234297581e-10, 1.9880683765904905e-08, -1.0426932234297581e-10, 9.106491195886093e-14, 1147.0, 0.00781925581395626, -2.728043000388425e-05, 1.982877684270079e-08, -2.728043000388425e-05, 1.2702884077953058e-07, -1.0390625165834777e-10, 1.982877684270079e-08, -1.0390625165834777e-10, 9.06686292885539e-14, 1148.0, 0.007812468335032463, -2.7232996217207983e-05,1.9777049331537455e-08, -2.7232996217207983e-05, 1.2669735838244378e-07, -1.0354476304152982e-10, 1.9777049331537455e-08, -1.0354476304152982e-10, 9.027442015490175e-14, 1149.0, 0.0078056929633021355, -2.718568612181116e-05, 1.97255012324149e-08, -2.718568612181116e-05, 1.263670128537342e-07, -1.0318484261473415e-10, 1.97255012324149e-08, -1.0318484261473415e-10, 8.988226422911375e-14, 1150.0, 0.007798928767442703, -2.7138499717693776e-05, 1.9674132545333123e-08,-2.7138499717693776e-05, 1.2603783261511126e-07, -1.0282648343906686e-10, 1.9674132545333123e-08, -1.0282648343906686e-10, 8.949214795866273e-14, 1151.0, 0.007792176678776741, -2.709143518586643e-05, 1.9622943270292126e-08, -2.709143518586643e-05, 1.2570977503401082e-07, -1.0246967857563405e-10, 1.9622943270292126e-08, -1.0246967857563405e-10, 8.910406456728512e-14, 1152.0, 0.007785435765981674, -2.7044492526329122e-05, 1.957192985457823e-08, -2.7044492526329122e-05, 1.253828685321423e-07, -1.0211442108554181e-10, 1.957192985457823e-08, -1.0211442108554181e-10, 8.871800050245376e-14, 1153.0, 0.007778706960380077, -2.6997673558071256e-05, 1.9521094074548273e-08, -2.6997673558071256e-05, 1.2505709889865102e-07, -1.0176069709100233e-10, 1.9521094074548273e-08, -1.0176069709100233e-10, 8.833394221164151e-14, 1154.0, 0.007771989796310663, -2.6950974643114023e-05, 1.9470434153845417e-08, -2.6950974643114023e-05, 1.2473245192268223e-07, -1.0140850659201561e-10, 1.9470434153845417e-08, -1.0140850659201561e-10, 8.79518761423212e-14, 1155.0, 0.0077652838081121445, -2.6904397600446828e-05, 1.9419948316112823e-08, -2.6904397600446828e-05, 1.2440892760423594e-07, -1.0105784264968776e-10, 1.9419948316112823e-08, -1.0105784264968776e-10, 8.757178874196567e-14, 1156.0, 0.007758589927107096, -2.6857940611080267e-05, 1.936963833770733e-08, -2.6857940611080267e-05, 1.2408651173245744e-07, -1.0070869138623095e-10, 1.936963833770733e-08, -1.0070869138623095e-10, 8.719367323431135e-14, 1157.0, 0.007751907221972942, -2.681160367501434e-05, 1.9319500665915257e-08, -2.681160367501434e-05, 1.2376521851820144e-07, -1.003610458627513e-10, 1.9319500665915257e-08, -1.003610458627513e-10, 8.68175092905675e-14, 1158.0, 0.007745236158370972, -2.6765386792249046e-05, 1.9269537077093446e-08, -2.6765386792249046e-05, 1.2344503375061322e-07, -1.0001489914035488e-10,1.9269537077093446e-08, -1.0001489914035488e-10, 8.644329691073413e-14, 1159.0, 0.007738576270639896, -2.6719288143794984e-05, 1.9219744018528218e-08, -2.6719288143794984e-05, 1.231259574296928e-07, -9.967023734125391e-11, 1.9219744018528218e-08, -9.967023734125391e-11, 8.60710157660205e-14, 1160.0, 0.007731928024441004, -2.6673309548641555e-05, 1.917012326657641e-08, -2.6673309548641555e-05, 1.2280796113373071e-07, -9.932706740434227e-11, 1.917012326657641e-08,-9.932706740434227e-11, 8.570065908016303e-14, 1161.0, 0.007725291419774294, -2.662745100678876e-05, 1.9120673044881187e-08, -2.662745100678876e-05, 1.2249107328443642e-07, -9.898536851293827e-11, 1.9120673044881187e-08, -9.898536851293827e-11, 8.533221330063456e-14, 1162.0, 0.007718665990978479, -2.6581708880257793e-05, 1.9071393353442545e-08, -2.6581708880257793e-05, 1.221752796709552e-07, -9.864514066704189e-11, 1.9071393353442545e-08, -9.864514066704189e-11, 8.496566487490795e-14, 1163.0, 0.00771205173805356, -2.6536084988038056e-05, 1.9022282415903646e-08, -2.6536084988038056e-05, 1.2186056608243234e-07, -9.830636998886533e-11, 1.9022282415903646e-08, -9.830636998886533e-11, 8.46010070267196e-14, 1164.0, 0.007705449126660824, -2.6490577511140145e-05, 1.897334023226449e-08, -2.6490577511140145e-05, 1.2154691830801312e-07, -9.796905647840859e-11, 1.897334023226449e-08, -9.796905647840859e-11, 8.423822620354238e-14, 1165.0, 0.007698857691138983, -2.6445188268553466e-05, 1.892456502616824e-08, -2.6445188268553466e-05, 1.2123436476940697e-07, -9.763318625788386e-11, 1.892456502616824e-08, -9.763318625788386e-11, 8.387730885284911e-14, 1166.0, 0.007692277431488037, -2.6399915441288613e-05, 1.887595857397173e-08, -2.6399915441288613e-05, 1.2092287704490445e-07, -9.729875238839725e-11, 1.887595857397173e-08, -9.729875238839725e-11, 8.351824142211264e-14, 1167.0, 0.007685708813369274, -2.6354757210356183e-05, 1.8827517322961285e-08, -2.6354757210356183e-05, 1.2061245513450558e-07, -9.696575486994874e-11, 1.8827517322961285e-08, -9.696575486994874e-11, 8.316102391133298e-14, 1168.0, 0.007679150905460119, -2.6309717213734984e-05, 1.8779241273136904e-08, -2.6309717213734984e-05, 1.2030308482735563e-07, -9.663417288585663e-11, 1.8779241273136904e-08, -9.663417288585663e-11, 8.280563599171939e-14, 1169.0, 0.007672604639083147, -2.626479181344621e-05, 1.8731130424498588e-08, -2.626479181344621e-05, 1.1999478033430933e-07, -9.630401337501482e-11, 1.8731130424498588e-08, -9.630401337501482e-11, 8.245206411074471e-14, 1170.0, 0.007666069082915783, -2.6219981009489857e-05, 1.8683183000689496e-08, -2.6219981009489857e-05, 1.1968752744451194e-07, -9.59752624596355e-11, 1.8683183000689496e-08, -9.59752624596355e-11, 8.210030826840894e-14, 1171.0, 0.007659544702619314, -2.6175282982876524e-05, 1.863540077806647e-08, -2.6175282982876524e-05, 1.1938132615796349e-07, -9.564790626193087e-11, 1.863540077806647e-08, -9.564790626193087e-11, 8.175034813592136e-14, 1172.0, 0.007653031498193741, -2.613070137158502e-05, 1.8587780203915827e-08, -2.613070137158502e-05, 1.1907616226380924e-07, -9.532195172079483e-11, 1.8587780203915827e-08, -9.532195172079483e-11, 8.140217693701837e-14, 1173.0, 0.007646529469639063, -2.6086234356625937e-05,1.854032305459441e-08, -2.6086234356625937e-05, 1.1877204286747656e-07, -9.499737801954566e-11, 1.854032305459441e-08, -9.499737801954566e-11, 8.105578789543641e-14, 1174.0, 0.00764003861695528, -2.604187830002047e-05, 1.849302577738854e-08, -2.604187830002047e-05, 1.1846895375811073e-07, -9.467419209707728e-11, 1.849302577738854e-08, -9.467419209707728e-11, 8.071116068238474e-14, 1175.0, 0.007633558474481106, -2.599763683974743e-05, 1.8445890148655053e-08,-2.599763683974743e-05, 1.1816690204113911e-07, -9.435237313670797e-11, 1.8445890148655053e-08, -9.435237313670797e-11, 8.036829529786335e-14, 1176.0, 0.007627089507877827, -2.5953508156817406e-05, 1.8398914392037113e-08, -2.5953508156817406e-05, 1.1786586640027963e-07, -9.403192807733163e-11, 1.8398914392037113e-08, -9.403192807733163e-11, 8.002717141308152e-14, 1177.0, 0.007620631251484156, -2.5909490432241e-05, 1.835209673117788e-08, -2.5909490432241e-05, 1.17565861046387e-07, -9.371283610226655e-11, 1.835209673117788e-08, -9.371283610226655e-11, 7.968778225177567e-14, 1178.0, 0.00761418417096138, -2.5865585485007614e-05, 1.8305438942434193e-08, -2.5865585485007614e-05, 1.172668717686065e-07, -9.339509721151273e-11, 1.8305438942434193e-08, -9.339509721151273e-11, 7.935012781394579e-14, 1179.0, 0.007607747800648212, -2.5821791496127844e-05, 1.8258939249449213e-08, -2.5821791496127844e-05, 1.1696889146151079e-07, -9.307870446617628e-11, 1.8258939249449213e-08, -9.307870446617628e-11, 7.901418099453758e-14, 1180.0, 0.007601322140544653, -2.5778110284591094e-05, 1.821259765222294e-08, -2.5778110284591094e-05, 1.1667192012509986e-07, -9.276365092736327e-11, 1.821259765222294e-08, -9.276365092736327e-11, 7.867994179355103e-14, 1181.0, 0.007594907656311989, -2.5734538212418556e-05, 1.8166410598041693e-08, -2.5734538212418556e-05, 1.163759577593737e-07, -9.244992965617982e-11, 1.8166410598041693e-08, -9.244992965617982e-11, 7.8347396658459e-14, 1182.0, 0.007588503882288933, -2.5691077098599635e-05, 1.8120381639619154e-08, -2.5691077098599635e-05, 1.1608099015347761e-07, -9.213753371373201e-11, 1.8120381639619154e-08, -9.213753371373201e-11, 7.801653881299789e-14, 1183.0, 0.007582110818475485, -2.5647725124144927e-05, 1.8074507224241643e-08, -2.5647725124144927e-05, 1.1578701730741159e-07, -9.182645616112595e-11,1.8074507224241643e-08, -9.182645616112595e-11, 7.768735470464055e-14, 1184.0, 0.007575728930532932, -2.5604484108043835e-05, 1.802878735190916e-08, -2.5604484108043835e-05, 1.1549403922117563e-07, -9.151668312057382e-11, 1.802878735190916e-08, -9.151668312057382e-11, 7.735983755712342e-14, 1185.0, 0.0075693572871387005, -2.556135041231755e-05, 1.7983222022621703e-08, -2.556135041231755e-05, 1.1520205589476973e-07, -9.120822153096952e-11, 1.7983222022621703e-08,-9.120822153096952e-11, 7.703397381791932e-14, 1186.0, 0.007562996819615364, -2.5518327674944885e-05, 1.7937809460022436e-08, -2.5518327674944885e-05, 1.1491104601191182e-07, -9.090106445341917e-11, 1.7937809460022436e-08, -9.090106445341917e-11, 7.670975671076469e-14, 1187.0, 0.0075566465966403484, -2.5475412257947028e-05, 1.7892549664111357e-08, -2.5475412257947028e-05, 1.1462101667802926e-07, -9.059519107124103e-11, 1.7892549664111357e-08, -9.059519107124103e-11, 7.638717268313236e-14, 1188.0, 0.007550307083874941, -2.5432605980313383e-05, 1.7847442634888466e-08, -2.5432605980313383e-05, 1.1433196789312206e-07, -9.029060138443512e-11, 1.7847442634888466e-08, -9.029060138443512e-11, 7.606622173502234e-14, 1189.0, 0.007543978281319141, -2.5389907023054548e-05, 1.7802486595996925e-08, -2.5389907023054548e-05, 1.1404388544633548e-07, -8.998729539300143e-11, 1.7802486595996925e-08, -8.998729539300143e-11, 7.574688353764389e-14, 1190.0, 0.00753766018897295, -2.534731538617052e-05, 1.7757681547436732e-08, -2.534731538617052e-05, 1.1375676933766954e-07, -8.968526615804606e-11, 1.7757681547436732e-08, -8.968526615804606e-11, 7.542915131473343e-14, 1191.0, 0.007531352341175079, -2.5304831069661304e-05, 1.771302748920789e-08, -2.5304831069661304e-05, 1.1347061956712423e-07, -8.93844928628873e-11, 1.771302748920789e-08, -8.93844928628873e-11, 7.51130182900274e-14, 1192.0, 0.007525055669248104, -2.5262454073526897e-05, 1.7668522644953555e-08, -2.5262454073526897e-05, 1.131854290292722e-07, -8.908498938531295e-11, 1.7668522644953555e-08, -8.908498938531295e-11, 7.47984776872622e-14, 1193.0, 0.007518768776208162, -2.5220182578777894e-05, 1.762416701467373e-08, -2.5220182578777894e-05, 1.1290119061868609e-07, -8.87867279697474e-11, 1.762416701467373e-08, -8.87867279697474e-11, 7.448551595391067e-14, 1194.0, 0.007512493059039116, -2.5178016585414298e-05, 1.7579958822011577e-08, -2.5178016585414298e-05, 1.1261790433536589e-07, -8.848972249397846e-11, 1.7579958822011577e-08, -8.848972249397846e-11, 7.417411953744568e-14, 1195.0, 0.007506227120757103, -2.5135956093436107e-05, 1.7535898066967093e-08, -2.5135956093436107e-05, 1.1233557017931162e-07, -8.819395908021832e-11, 1.7535898066967093e-08, -8.819395908021832e-11, 7.386428843786721e-14, 1196.0, 0.007499971892684698, -2.5094002921832725e-05, 1.749198474954028e-08, -2.5094002921832725e-05, 1.1205417393966854e-07, -8.789942385067917e-11, 1.749198474954028e-08, -8.789942385067917e-11, 7.355600232638454e-14, 1197.0, 0.007493727374821901, -2.5052153432625346e-05, 1.7448218869731136e-08, -2.5052153432625346e-05, 1.1177371561643668e-07, -8.760612374425492e-11, 1.7448218869731136e-08, -8.760612374425492e-11, 7.324926120299766e-14, 1198.0, 0.007487493101507425, -2.501040762581397e-05,1.7404598651182823e-08, -2.501040762581397e-05, 1.1149419520961601e-07, -8.731403794426384e-11, 1.7404598651182823e-08, -8.731403794426384e-11, 7.294405829144299e-14, 1199.0, 0.00748126907274127, -2.4968767320387997e-05, 1.7361122317538502e-08, -2.4968767320387997e-05, 1.1121559850835183e-07, -8.702317338959986e-11, 1.7361122317538502e-08, -8.702317338959986e-11, 7.264038003919338e-14, 1200.0, 0.007475055288523436, -2.4927230697358027e-05, 1.731779342151185e-08,-2.4927230697358027e-05, 1.1093793972349886e-07, -8.673351620247516e-11, 1.731779342151185e-08, -8.673351620247516e-11, 7.233821289372167e-14, 1201.0, 0.007468852214515209, -2.488579775672406e-05, 1.7274606634032352e-08, -2.488579775672406e-05, 1.1066119753877501e-07, -8.644506638288973e-11, 1.7274606634032352e-08, -8.644506638288973e-11, 7.203755685502786e-14, 1202.0, 0.007462658919394016, -2.484446667949669e-05, 1.7231563731456845e-08, -2.484446667949669e-05, 1.1038537905960766e-07, -8.615781699194969e-11, 1.7231563731456845e-08, -8.615781699194969e-11, 7.17383983705848e-14, 1203.0, 0.007456476334482431, -2.4803241103654727e-05, 1.718866293742849e-08, -2.4803241103654727e-05, 1.1011047718056943e-07, -8.587175415186721e-11, 1.718866293742849e-08, -8.587175415186721e-11, 7.14407306641289e-14, 1204.0, 0.007450303994119167, -2.476211557222996e-05, 1.7145904251947286e-08, -2.476211557222996e-05, 1.0983648479623298e-07, -8.55868778626423e-11, 1.7145904251947286e-08, -8.55868778626423e-11, 7.114454018313301e-14, 1205.0, 0.007444141432642937, -2.4721093723201193e-05, 1.7103289451370074e-08, -2.4721093723201193e-05, 1.0956339480117094e-07, -8.530318812427495e-11, 1.7103289451370074e-08, -8.530318812427495e-11, 7.084982015133356e-14, 1206.0, 0.007437989115715027, -2.4680173737579025e-05, 1.7060813206626335e-08, -2.4680173737579025e-05, 1.0929122140623804e-07, -8.502066412008347e-11, 1.7060813206626335e-08, -8.502066412008347e-11, 7.055657056873055e-14, 1207.0, 0.007431847508996725, -2.4639353796374053e-05, 1.701847907042975e-08, -2.4639353796374053e-05, 1.0901994329515219e-07, -8.473931278896174e-11, 1.701847907042975e-08, -8.473931278896174e-11, 7.026477110653323e-14, 1208.0, 0.007425715681165457, -2.459863571857568e-05, 1.6976285266423474e-08, -2.459863571857568e-05, 1.087495604679134e-07, -8.445912719201587e-11,1.6976285266423474e-08, -8.445912719201587e-11, 6.997442176474161e-14, 1209.0, 0.007419593632221222, -2.4558019504183903e-05, 1.6934230018250673e-08, -2.4558019504183903e-05, 1.0848007292452166e-07, -8.418009345145805e-11, 1.6934230018250673e-08, -8.418009345145805e-11, 6.968550899082854e-14, 1210.0, 0.007413482293486595, -2.4517503334209323e-05, 1.6892313325911346e-08, -2.4517503334209323e-05, 1.0821147355954963e-07, -8.390221850618218e-11, 1.6892313325911346e-08,-8.390221850618218e-11, 6.939802600853043e-14, 1211.0, 0.007407380733639002, -2.4477087208651938e-05, 1.685053518940549e-08, -2.4477087208651938e-05, 1.079437623729973e-07, -8.362548153950655e-11, 1.685053518940549e-08, -8.362548153950655e-11, 6.911197281784728e-14, 1212.0, 0.007401288952678442, -2.4436771127511747e-05, 1.680889383237627e-08, -2.4436771127511747e-05, 1.0767693225943731e-07, -8.334988949032507e-11, 1.680889383237627e-08, -8.334988949032507e-11, 6.882732231372479e-14, 1213.0, 0.007395207416266203, -2.4396553271799348e-05, 1.6767391031180523e-08, -2.4396553271799348e-05, 1.074109761134423e-07, -8.307542848084992e-11, 1.6767391031180523e-08, -8.307542848084992e-11, 6.854408127242653e-14, 1214.0, 0.007389136124402285, -2.4356435460504144e-05, 1.672602323310457e-08, -2.4356435460504144e-05, 1.0714590104043964e-07, -8.280209851108111e-11, 1.672602323310457e-08, -8.280209851108111e-11, 6.826224291768893e-14, 1215.0, 0.0073830741457641125, -2.4316417693626136e-05, 1.668479221450525e-08, -2.4316417693626136e-05, 1.0688169993500196e-07, -8.252989264212474e-11, 1.668479221450525e-08, -8.252989264212474e-11, 6.798178692072124e-14, 1216.0, 0.007377022877335548, -2.4276496333186515e-05, 1.6643697975382565e-08, -2.4276496333186515e-05, 1.0661835858627455e-07, -8.225880393508689e-11, 1.6643697975382565e-08, -8.225880393508689e-11, 6.770272005778705e-14, 1217.0, 0.0073709809221327305, -2.423667501716409e-05, 1.6602736963022835e-08, -2.423667501716409e-05, 1.0635589120511213e-07, -8.198882545107367e-11, 1.6602736963022835e-08, -8.198882545107367e-11, 6.742502200009562e-14, 1218.0, 0.007364949211478233, -2.4196951926569454e-05, 1.65619109537829e-08, -2.4196951926569454e-05, 1.0609427647523262e-07, -8.171995025119116e-11, 1.65619109537829e-08, -8.171995025119116e-11, 6.714868597138338e-14, 1219.0, 0.00735892727971077, -2.4157325242413208e-05, 1.6521218171305918e-08, -2.4157325242413208e-05, 1.0583352150206338e-07, -8.145218527433329e-11, 1.6521218171305918e-08, -8.145218527433329e-11, 6.687371197165032e-14, 1220.0, 0.007352915126830339, -2.411779496469535e-05, 1.6480658615591892e-08, -2.411779496469535e-05, 1.0557361918017705e-07, -8.118550970381833e-11, 1.6480658615591892e-08, -8.118550970381833e-11, 6.660008644836929e-14, 1221.0, 0.007346912752836943, -2.4078362912405282e-05, 1.644023228664082e-08, -2.4078362912405282e-05, 1.0531456950957363e-07, -8.091992353964628e-11, 1.644023228664082e-08, -8.091992353964628e-11, 6.632780940154029e-14, 1222.0, 0.007340920157730579, -2.4039027266553603e-05, 1.6399937408095866e-08, -2.4039027266553603e-05, 1.0505636538482577e-07, -8.065542678181714e-11, 1.6399937408095866e-08, -8.065542678181714e-11, 6.605686050237258e-14, 1223.0, 0.0073349373415112495, -2.3999788027140312e-05,1.6359773979957026e-08, -2.3999788027140312e-05, 1.0479900680593346e-07, -8.039200555254311e-11, 1.6359773979957026e-08, -8.039200555254311e-11, 6.578723975086617e-14, 1224.0, 0.007328964304178953, -2.396064519416541e-05, 1.6319742002224302e-08, -2.396064519416541e-05, 1.0454248666746935e-07, -8.012966679071809e-11, 1.6319742002224302e-08, -8.012966679071809e-11, 6.551894037075748e-14, 1225.0, 0.00732300104573369, -2.392159694863949e-05, 1.6279839698540854e-08,-2.392159694863949e-05, 1.0428680496943343e-07, -7.986838967966037e-11, 1.6279839698540854e-08, -7.986838967966037e-11, 6.525194880951934e-14, 1226.0, 0.0073170471005141735, -2.388264510955196e-05, 1.6240068845263522e-08, -2.388264510955196e-05, 1.0403195460639836e-07, -7.960818115826385e-11, 1.6240068845263522e-08, -7.960818115826385e-11, 6.498626506715177e-14, 1227.0, 0.0073111033998429775, -2.3843787857913412e-05, 1.6200425889678627e-08, -2.3843787857913412e-05, 1.0377793557836412e-07, -7.934902734874072e-11, 1.6200425889678627e-08, -7.934902734874072e-11, 6.472188236739118e-14, 1228.0, 0.007305169012397528, -2.380502519372385e-05, 1.6160912608143008e-08, -2.380502519372385e-05, 1.0352474077990337e-07, -7.909092825109099e-11, 1.6160912608143008e-08, -7.909092825109099e-11, 6.445878715771042e-14, 1229.0, 0.007299244403839111, -2.3766357116983272e-05, 1.6121529000656665e-08, -2.3766357116983272e-05, 1.032723702110161e-07, -7.883387692642074e-11, 1.6121529000656665e-08, -7.883387692642074e-11, 6.41969726618459e-14, 1230.0, 0.007293329108506441, -2.372778362769168e-05, 1.608227151450592e-08, -2.372778362769168e-05, 1.0302081676627495e-07, -7.857787337472999e-11, 1.608227151450592e-08, -7.857787337472999e-11, 6.393643210353406e-14, 1231.0, 0.007287423592060804, -2.3689302906859666e-05, 1.604314192604761e-08, -2.3689302906859666e-05, 1.0277008044567992e-07, -7.832290371823092e-11, 1.604314192604761e-08, -7.832290371823092e-11, 6.36771587065113e-14, 1232.0, 0.007281527854502201, -2.3650916773476638e-05, 1.60041384589249e-08, -2.3650916773476638e-05, 1.0252016124923102e-07, -7.806896795692353e-11, 1.60041384589249e-08, -7.806896795692353e-11, 6.341914569451407e-14, 1233.0, 0.007275641430169344, -2.361262340855319e-05, 1.5965262889494625e-08, -2.361262340855319e-05, 1.0227104496607353e-07, -7.781606609080782e-11,1.5965262889494625e-08, -7.781606609080782e-11, 6.316238629127877e-14, 1234.0, 0.00726976478472352, -2.3574422812089324e-05, 1.5926511665043108e-08, -2.3574422812089324e-05, 1.0202273870163481e-07, -7.756417730320209e-11, 1.5926511665043108e-08, -7.756417730320209e-11, 6.29068804968054e-14, 1235.0, 0.0072638969868421555, -2.3536314984085038e-05, 1.588788656192719e-08, -2.3536314984085038e-05, 1.0177523535048749e-07, -7.731331547189413e-11, 1.588788656192719e-08,-7.731331547189413e-11, 6.265260798230324e-14, 1236.0, 0.007258039433509111, -2.3498299924540333e-05, 1.5849385803790028e-08, -2.3498299924540333e-05, 1.0152853491263159e-07, -7.706346671909614e-11, 1.5849385803790028e-08, -7.706346671909614e-11, 6.239956874777228e-14, 1237.0, 0.007252190727740526, -2.3460375814465806e-05, 1.5811009390631625e-08, -2.3460375814465806e-05, 1.0128263028263973e-07, -7.681462410591422e-11, 1.5811009390631625e-08, -7.681462410591422e-11, 6.214774924068536e-14, 1238.0, 0.0072463518008589745, -2.342254447285086e-05, 1.577275732245198e-08, -2.342254447285086e-05, 1.0103751435508457e-07, -7.656678069345446e-11, 1.577275732245198e-08, -7.656678069345446e-11, 6.189715623730607e-14, 1239.0, 0.007240522187203169, -2.338480408070609e-05, 1.5734627822894254e-08, -2.338480408070609e-05, 1.0079319423539346e-07, -7.631994342061077e-11, 1.5734627822894254e-08, -7.631994342061077e-11, 6.164776940884367e-14, 1240.0, 0.0072347018867731094, -2.3347154638031498e-05, 1.5696620891958446e-08, -2.3347154638031498e-05, 1.0054965571271168e-07, -7.607409840959534e-11, 1.5696620891958446e-08, -7.607409840959534e-11, 6.139959553156174e-14, 1241.0, 0.007228890899568796, -2.3309596144827083e-05, 1.5658738306001396e-08, -2.3309596144827083e-05, 1.003069058924666e-07, -7.582923872151426e-11, 1.5658738306001396e-08, -7.582923872151426e-11, 6.115261427666954e-14, 1242.0, 0.007223089225590229, -2.3272128601092845e-05, 1.5620974735952586e-08, -2.3272128601092845e-05, 1.000649305638035e-07, -7.558536435636753e-11, 1.5620974735952586e-08, -7.558536435636753e-11, 6.09068188679035e-14, 1243.0, 0.007217296864837408, -2.3234752006828785e-05, 1.5583333734525695e-08, -2.3234752006828785e-05, 9.982373683214973e-08, -7.534246837526126e-11, 1.5583333734525695e-08, -7.534246837526126e-11, 6.066221608152719e-14, 1244.0, 0.007211513817310333, -2.31974645430455e-05, 1.5545815301720722e-08, -2.31974645430455e-05, 9.95833246975053e-08, -7.510055077819544e-11, 1.5545815301720722e-08, -7.510055077819544e-11, 6.041878558874988e-14, 1245.0, 0.007205740083009005, -2.3160266209742986e-05, 1.550841410846715e-08, -2.3160266209742986e-05, 9.934367284358814e-08, -7.485960462627617e-11, 1.550841410846715e-08, -7.485960462627617e-11, 6.017653416583515e-14, 1246.0, 0.007199975196272135, -2.312315882591065e-05, 1.5471135483835496e-08, -2.312315882591065e-05, 9.910479548125295e-08, -7.461962298060953e-11, 1.5471135483835496e-08, -7.461962298060953e-11, 5.993544148399227e-14, 1247.0, 0.007194220088422298, -2.3086138753569685e-05, 1.5433974098755243e-08, -2.3086138753569685e-05, 9.886667839964502e-08, -7.438059890230164e-11, 1.5433974098755243e-08, -7.438059890230164e-11, 5.969550754322123e-14, 1248.0, 0.007188473828136921, -2.3049207811709493e-05,1.539693350594007e-08, -2.3049207811709493e-05, 9.862932870419172e-08, -7.414253239135249e-11, 1.539693350594007e-08, -7.414253239135249e-11, 5.945672556725845e-14, 1249.0, 0.00718273688107729, -2.3012366000330076e-05, 1.5360010152676296e-08, -2.3012366000330076e-05, 9.839273928946568e-08, -7.390542344776208e-11, 1.5360010152676296e-08, -7.390542344776208e-11, 5.921908877984036e-14, 1250.0, 0.007177009247243404, -2.297561331943143e-05, 1.5323204038963922e-08,-2.297561331943143e-05, 9.815690305003955e-08, -7.366925125484869e-11, 1.5323204038963922e-08, -7.366925125484869e-11, 5.898259040470338e-14, 1251.0, 0.007171290460973978, -2.2938947950024158e-05, 1.528651694115979e-08, -2.2938947950024158e-05, 9.792181998591332e-08, -7.343402969040014e-11, 1.528651694115979e-08, -7.343402969040014e-11, 5.874722366558394e-14, 1252.0, 0.007165580987930298, -2.2902369892108254e-05, 1.5249947082907056e-08, -2.2902369892108254e-05, 9.768748299165964e-08, -7.319974487662861e-11, 1.5249947082907056e-08, -7.319974487662861e-11, 5.851298178621844e-14, 1253.0, 0.0071598803624510765, -2.286587914568372e-05, 1.5213492687848884e-08, -2.286587914568372e-05, 9.745389917270586e-08, -7.296638987464021e-11, 1.5213492687848884e-08, -7.296638987464021e-11, 5.82798647666069e-14, 1254.0, 0.007154189050197601, -2.2829475710750557e-05, 1.5177153755985273e-08, -2.2829475710750557e-05, 9.722105431819728e-08, -7.273396468443494e-11, 1.5177153755985273e-08, -7.273396468443494e-11, 5.804785905422216e-14, 1255.0, 0.007148506585508585, -2.2793159587308764e-05, 1.5140932063673063e-08, -2.2793159587308764e-05, 9.698895553356124e-08, -7.250246930601278e-11, 1.5140932063673063e-08, -7.250246930601278e-11, 5.781695787280064e-14, 1256.0, 0.0071428329683840275, -2.2756928956368938e-05, 1.5104825834555413e-08, -2.2756928956368938e-05, 9.675759571337039e-08, -7.227188986158595e-11, 1.5104825834555413e-08, -7.227188986158595e-11, 5.758716122234234e-14, 1257.0, 0.007137168664485216, -2.2720785636920482e-05, 1.5068833292275485e-08, -2.2720785636920482e-05, 9.652696775219738e-08, -7.204222635115443e-11, 1.5068833292275485e-08, -7.204222635115443e-11, 5.735846232658368e-14, 1258.0, 0.007131513208150864, -2.2684727809973992e-05, 1.503295443683328e-08, -2.2684727809973992e-05, 9.62970716500422e-08, -7.181347877471822e-11,1.503295443683328e-08, -7.181347877471822e-11, 5.71308476329975e-14, 1259.0, 0.00712586659938097, -2.264875547552947e-05, 1.4997189268228794e-08, -2.264875547552947e-05, 9.606790740690485e-08, -7.158563325448952e-11, 1.4997189268228794e-08, -7.158563325448952e-11, 5.690431714158381e-14, 1260.0, 0.0071202293038368225, -2.2612870452576317e-05, 1.496153956281887e-08, -2.2612870452576317e-05, 9.583946791735798e-08, -7.135868979046833e-11, 1.496153956281887e-08,-7.135868979046833e-11, 5.667886407607903e-14, 1261.0, 0.007114600855857134, -2.2577069103135727e-05, 1.492599999153299e-08, -2.2577069103135727e-05, 9.561175318140158e-08, -7.113264838265465e-11, 1.492599999153299e-08, -7.113264838265465e-11, 5.6454485048351363e-14, 1262.0, 0.007108980789780617, -2.2541353246197104e-05, 1.489057499526325e-08, -2.2541353246197104e-05, 9.53847560936083e-08, -7.090750209215457e-11, 1.489057499526325e-08, -7.090750209215457e-11, 5.623116650587366e-14, 1263.0, 0.007103370036929846, -2.2505721062771045e-05, 1.4855261909474393e-08, -2.2505721062771045e-05, 9.51584837594055e-08, -7.06832439800742e-11, 1.4855261909474393e-08, -7.06832439800742e-11, 5.600890844864592e-14, 1264.0, 0.007097768131643534, -2.247017437184695e-05, 1.4820059845987998e-08, -2.247017437184695e-05, 9.493292196793846e-08, -7.045987404641352e-11, 1.4820059845987998e-08, -7.045987404641352e-11, 5.578770410040457e-14, 1265.0, 0.0070921750739216805, -2.243471135443542e-05, 1.4784968804804066e-08, -2.243471135443542e-05, 9.470807071920717e-08, -7.023737841338473e-11, 1.4784968804804066e-08, -7.023737841338473e-11, 5.556754668488602e-14, 1266.0, 0.007086590863764286, -2.2399332010536455e-05, 1.4749988785922596e-08, -2.2399332010536455e-05, 9.4483937118639e-08, -7.001577095877565e-11, 1.4749988785922596e-08, -7.001577095877565e-11, 5.534843281395849e-14, 1267.0, 0.007081015035510063, -2.236403634015005e-05, 1.471511890116517e-08, -2.236403634015005e-05, 9.426049984995188e-08, -6.979503086590455e-11, 1.471511890116517e-08, -6.979503086590455e-11, 5.5130355711358395e-14, 1268.0, 0.0070754485204815865, -2.232882434327621e-05, 1.4680358262353366e-08, -2.232882434327621e-05, 9.403777312400052e-08, -6.957515813477144e-11, 1.4680358262353366e-08, -6.957515813477144e-11, 5.4913305212690375e-14, 1269.0, 0.007069890387356281, -2.2293696019914933e-05, 1.4645707757665605e-08, -2.2293696019914933e-05, 9.381574272993021e-08, -6.935615276537632e-11, 1.4645707757665605e-08, -6.935615276537632e-11, 5.469728131795443e-14, 1270.0, 0.007064341101795435, -2.2258649551076815e-05, 1.4611165610745047e-08, -2.2258649551076815e-05, 9.35944157731683e-08, -6.913800781882529e-11, 1.4611165610745047e-08, -6.913800781882529e-11, 5.4482277250886973e-14, 1271.0, 0.00705880019813776, -2.222368675575126e-05, 1.4576732709770113e-08, -2.222368675575126e-05, 9.337378514828742e-08, -6.892072329511834e-11, 1.4576732709770113e-08, -6.892072329511834e-11, 5.4268286235224436e-14, 1272.0, 0.007053268142044544, -2.2188805814948864e-05, 1.4542407278383962e-08, -2.2188805814948864e-05, 9.315384374986024e-08, -6.870428531646766e-11, 1.4542407278383962e-08, -6.870428531646766e-11, 5.4055301494703237e-14, 1273.0, 0.007047744933515787, -2.215400672866963e-05,1.4508190204765015e-08, -2.215400672866963e-05, 9.293459157788675e-08, -6.848870082176717e-11, 1.4508190204765015e-08, -6.848870082176717e-11, 5.3843319641191587e-14, 1274.0, 0.007042230572551489, -2.2119289496913552e-05, 1.4474079712556431e-08, -2.2119289496913552e-05, 9.271602863236694e-08, -6.827396287212295e-11, 1.4474079712556431e-08, -6.827396287212295e-11, 5.363233389842591e-14, 1275.0, 0.007036724593490362, -2.2084654119680636e-05, 1.4440076689936632e-08,-2.2084654119680636e-05, 9.249815491330082e-08, -6.806006452864111e-11, 1.4440076689936632e-08, -6.806006452864111e-11, 5.342234087827441e-14, 1276.0, 0.007031226996332407, -2.2050098777981475e-05, 1.4406179360548776e-08, -2.2050098777981475e-05, 9.228095620983368e-08, -6.784699885242773e-11, 1.4406179360548776e-08, -6.784699885242773e-11, 5.321333380447352e-14, 1277.0, 0.007025738246738911, -2.2015625290805474e-05, 1.4372388612571285e-08, -2.2015625290805474e-05, 9.206443962739286e-08, -6.763477278237673e-11, 1.4372388612571285e-08, -6.763477278237673e-11, 5.300530590075965e-14, 1278.0, 0.007020257879048586, -2.198123183916323e-05, 1.4338703557825738e-08, -2.198123183916323e-05, 9.184859806055101e-08, -6.742337244070029e-11, 1.4338703557825738e-08, -6.742337244070029e-11, 5.279825377900102e-14, 1279.0, 0.00701478635892272, -2.1946920242044143e-05, 1.4305123308133716e-08, -2.1946920242044143e-05, 9.16334386147355e-08, -6.721279782739842e-11, 1.4305123308133716e-08, -6.721279782739842e-11, 5.259217405106584e-14, 1280.0, 0.0070093232207000256, -2.1912688680458814e-05, 1.4271647863495218e-08, -2.1912688680458814e-05, 9.141893997366424e-08, -6.700304200357721e-11, 1.4271647863495218e-08, -6.700304200357721e-11, 5.238705316442695e-14, 1281.0, 0.007003868464380503, -2.187853715440724e-05, 1.4238277223910245e-08, -2.187853715440724e-05, 9.120511634819195e-08, -6.679410496923666e-11, 1.4238277223910245e-08, -6.679410496923666e-11, 5.2182897895347927e-14, 1282.0, 0.006998422089964151, -2.184446384490002e-05, 1.4205010501200377e-08, -2.184446384490002e-05, 9.099196063289128e-08, -6.658598672437677e-11, 1.4205010501200377e-08, -6.658598672437677e-11, 5.197969130316983e-14, 1283.0, 0.006992984563112259, -2.1810472389915958e-05, 1.4171846807187194e-08, -2.1810472389915958e-05, 9.077946572233486e-08, -6.637867339120973e-11,1.4171846807187194e-08, -6.637867339120973e-11, 5.177743677602445e-14, 1284.0, 0.006987554952502251, -2.177655915147625e-05, 1.4138786141870696e-08, -2.177655915147625e-05, 9.05676316165227e-08, -6.617216496973555e-11, 1.4138786141870696e-08, -6.617216496973555e-11, 5.1576124149516414e-14, 1285.0, 0.006982134189456701, -2.1742724129580893e-05, 1.4105828505250884e-08, -2.1742724129580893e-05, 9.035645121002744e-08, -6.596646145995422e-11, 1.4105828505250884e-08,-6.596646145995422e-11, 5.1375750035513937e-14, 1286.0, 0.006976721808314323, -2.1708969143219292e-05, 1.4072973897327756e-08, -2.1708969143219292e-05, 9.01459387137038e-08, -6.576155592297184e-11, 1.4072973897327756e-08, -6.576155592297184e-11, 5.117631104588523e-14, 1287.0, 0.006971317809075117, -2.1675292373402044e-05, 1.4040220541744475e-08, -2.1675292373402044e-05, 8.99360728112697e-08, -6.55574483587884e-11, 1.4040220541744475e-08, -6.55574483587884e-11, 5.097780040436671e-14, 1288.0, 0.006965921726077795, -2.164169382012915e-05, 1.4007568438501039e-08, -2.164169382012915e-05, 8.972685350272513e-08, -6.535413182851002e-11, 1.4007568438501039e-08, -6.535413182851002e-11, 5.0780211334694805e-14, 1289.0, 0.006960534490644932, -2.1608173483400606e-05, 1.3975018475775869e-08, -2.1608173483400606e-05, 8.951828789349747e-08, -6.515159939324278e-11, 1.3975018475775869e-08, -6.515159939324278e-11, 5.0583540448737724e-14, 1290.0, 0.00695515563711524, -2.1574731363216415e-05, 1.3942568877212125e-08, -2.1574731363216415e-05, 8.931036887815935e-08, -6.494985105298667e-11, 1.3942568877212125e-08, -6.494985105298667e-11, 5.038778435836368e-14, 1291.0, 0.006949784699827433, -2.1541365640587173e-05, 1.3910219642809807e-08, -2.1541365640587173e-05, 8.910308935128342e-08, -6.474888680774171e-11, 1.3910219642809807e-08, -6.474888680774171e-11, 5.0192936287309087e-14, 1292.0, 0.006944422144442797, -2.1508078134502284e-05, 1.3877969884390495e-08, -2.1508078134502284e-05, 8.889645641829702e-08, -6.454869971861399e-11, 1.3877969884390495e-08, -6.454869971861399e-11, 4.9998989459310375e-14, 1293.0, 0.006939067970961332, -2.1474867025972344e-05, 1.384582049013261e-08, -2.1474867025972344e-05, 8.869045586834545e-08, -6.43492828467096e-11, 1.384582049013261e-08, -6.43492828467096e-11, 4.980594387436754e-14, 1294.0, 0.0069337221793830395, -2.1441732314997353e-05, 1.3813769683679311e-08, -2.1441732314997353e-05, 8.848509480685607e-08, -6.415063619202854e-11, 1.3813769683679311e-08, -6.415063619202854e-11, 4.961379275621701e-14, 1295.0, 0.006928384304046631, -2.1408675820566714e-05, 1.3781818353209019e-08, -2.1408675820566714e-05, 8.828036612840151e-08, -6.395275281567692e-11, 1.3781818353209019e-08, -6.395275281567692e-11, 4.94225293285952e-14, 1296.0, 0.006923054810613394, -2.1375695723691024e-05, 1.3749964722364894e-08, -2.1375695723691024e-05, 8.807626983298178e-08, -6.375563271765472e-11, 1.3749964722364894e-08, -6.375563271765472e-11, 4.923215020337032e-14, 1297.0, 0.006917733699083328, -2.134279020538088e-05, 1.3718209679325355e-08, -2.134279020538088e-05, 8.787280592059687e-08, -6.355926895906805e-11, 1.3718209679325355e-08, -6.355926895906805e-11, 4.90426486042788e-14, 1298.0, 0.006912420503795147, -2.1309961084625684e-05,1.3686552335911983e-08, -2.1309961084625684e-05, 8.766996018039208e-08, -6.336366847881081e-11, 1.3686552335911983e-08, -6.336366847881081e-11, 4.8854024531320636e-14, 1299.0, 0.006907115690410137, -2.1277208361425437e-05, 1.3654991803946359e-08, -2.1277208361425437e-05, 8.746773971779476e-08, -6.316881739909519e-11, 1.3654991803946359e-08, -6.316881739909519e-11, 4.866626782010046e-14, 1300.0, 0.006901818793267012, -2.124453203578014e-05, 1.3623528971606902e-08,-2.124453203578014e-05, 8.72661445328049e-08, -6.297470878102729e-11, 1.3623528971606902e-08, -6.297470878102729e-11, 4.847937847061827e-14, 1301.0, 0.006896530278027058, -2.1211928469710983e-05, 1.3592162062536772e-08, -2.1211928469710983e-05, 8.706516751999516e-08, -6.278134956350101e-11, 1.3592162062536772e-08, -6.278134956350101e-11, 4.82933463184787e-14, 1302.0, 0.006891249213367701, -2.1179401301196776e-05, 1.356089196491439e-08, -2.1179401301196776e-05, 8.686480867936552e-08, -6.258873280762245e-11, 1.356089196491439e-08, -6.258873280762245e-11, 4.8108174751813546e-14, 1303.0, 0.006885976996272802, -2.1146948711248115e-05, 1.3529717790561335e-08, -2.1146948711248115e-05, 8.666506090548864e-08, -6.23968515744977e-11, 1.3529717790561335e-08, -6.23968515744977e-11, 4.792385021809564e-14, 1304.0, 0.006880712229758501, -2.1114570699865e-05, 1.3498638651299188e-08, -2.1114570699865e-05, 8.646592419836452e-08, -6.220570586412677e-11, 1.3498638651299188e-08, -6.220570586412677e-11, 4.7740376105456783e-14, 1305.0, 0.006875455845147371, -2.1082267267047428e-05, 1.346765454712795e-08, -2.1082267267047428e-05, 8.626739855799315e-08, -6.201529567650965e-11, 1.346765454712795e-08, -6.201529567650965e-11, 4.75577422495016e-14, 1306.0, 0.006870207376778126, -2.1050036593806e-05, 1.3436765478047619e-08, -2.1050036593806e-05, 8.606948398437453e-08, -6.182560713385854e-11, 1.3436765478047619e-08, -6.182560713385854e-11, 4.7375945262098304e-14, 1307.0, 0.006864967290312052, -2.1017880499130115e-05, 1.3405971444058196e-08, -2.1017880499130115e-05, 8.587216626665395e-08, -6.163664717506734e-11, 1.3405971444058196e-08, -6.163664717506734e-11, 4.7194985143246895e-14, 1308.0, 0.006859734654426575, -2.0985798983019777e-05, 1.3375270668802841e-08, -2.0985798983019777e-05, 8.567545961568612e-08, -6.144840886124214e-11,1.3375270668802841e-08, -6.144840886124214e-11, 4.701484834042022e-14, 1309.0, 0.006854510400444269, -2.095379022648558e-05, 1.3344663152281555e-08, -2.095379022648558e-05, 8.547934982061633e-08, -6.126088525348905e-11, 1.3344663152281555e-08, -6.126088525348905e-11, 4.683554162988185e-14, 1310.0, 0.006849294062703848, -2.0921854229527526e-05, 1.3314149782672757e-08, -2.0921854229527526e-05, 8.528383688144459e-08, -6.107408329070196e-11, 1.3314149782672757e-08,-6.107408329070196e-11, 4.6657051459104634e-14, 1311.0, 0.0068440851755440235, -2.0889992811135016e-05, 1.3283728783619608e-08, -2.0889992811135016e-05, 8.508892079817088e-08, -6.088798215619917e-11, 1.3283728783619608e-08, -6.088798215619917e-11, 4.647937782808857e-14, 1312.0, 0.006838884670287371, -2.0858202333329245e-05, 1.3253401043300528e-08, -2.0858202333329245e-05, 8.48946015707952e-08, -6.070259572776848e-11, 1.3253401043300528e-08, -6.070259572776848e-11, 4.6302517348701874e-14, 1313.0, 0.006833692081272602, -2.0826484615099616e-05, 1.3223164785358676e-08, -2.0826484615099616e-05, 8.470086498846285e-08, -6.051791706651599e-11, 1.3223164785358676e-08, -6.051791706651599e-11, 4.6126459856549173e-14, 1314.0, 0.00682850694283843, -2.079483965644613e-05, 1.3193020897972474e-08, -2.079483965644613e-05, 8.450772526202854e-08, -6.03339392335478e-11, 1.3193020897972474e-08, -6.03339392335478e-11, 4.595120873976226e-14, 1315.0, 0.00682333018630743, -2.076326563837938e-05, 1.31629684929635e-08, -2.076326563837938e-05, 8.431516818063756e-08, -6.015065528996999e-11, 1.31629684929635e-08, -6.015065528996999e-11, 4.577675383394576e-14, 1316.0, 0.006818160880357027, -2.0731764379888773e-05, 1.3133007570331756e-08, -2.0731764379888773e-05, 8.412320084971725e-08, -5.996807217467648e-11, 1.3133007570331756e-08, -5.996807217467648e-11, 4.5603095139099686e-14, 1317.0, 0.006812999490648508, -2.0700335880974308e-05, 1.3103136353720402e-08, -2.0700335880974308e-05, 8.393180905841291e-08, -5.978617600987945e-11, 1.3103136353720402e-08, -5.978617600987945e-11, 4.543022587896045e-14, 1318.0, 0.006807846017181873, -2.0668976503657177e-05, 1.3073356619486276e-08, -2.0668976503657177e-05, 8.374099991215189e-08, -5.960497373447282e-11, 1.3073356619486276e-08, -5.960497373447282e-11, 4.525813927726448e-14, 1319.0, 0.006802700459957123, -2.063768988591619e-05, 1.304366747945096e-08, -2.063768988591619e-05, 8.35507734109342e-08, -5.942445147066877e-11, 1.304366747945096e-08, -5.942445147066877e-11, 4.508683872214356e-14, 1320.0, 0.006797562353312969, -2.0606474208761938e-05, 1.3014067157257614e-08, -2.0606474208761938e-05, 8.336111534390511e-08, -5.924461615736121e-11, 1.3014067157257614e-08, -5.924461615736121e-11, 4.491631404920232e-14, 1321.0, 0.0067924321629107, -2.0575329472194426e-05, 1.2984557429263077e-08, -2.0575329472194426e-05, 8.317203281649199e-08, -5.906546085565623e-11, 1.2984557429263077e-08, -5.906546085565623e-11, 4.474656187030898e-14, 1322.0, 0.006787309888750315, -2.054425385722425e-05, 1.2955135630932091e-08, -2.054425385722425e-05, 8.298352582869484e-08, -5.888697862665992e-11, 1.2955135630932091e-08, -5.888697862665992e-11, 4.457757879733175e-14, 1323.0, 0.0067821950651705265, -2.051324918284081e-05,1.2925803538621494e-08, -2.051324918284081e-05, 8.279558727508629e-08, -5.87091764092662e-11, 1.2925803538621494e-08, -5.87091764092662e-11, 4.4409361442138834e-14, 1324.0, 0.006777087692171335, -2.048231544904411e-05, 1.2896559375974448e-08, -2.048231544904411e-05, 8.2608210050239e-08, -5.853204032568726e-11, 1.2896559375974448e-08, -5.853204032568726e-11, 4.424190641659845e-14, 1325.0, 0.0067719887010753155, -2.0451450836844742e-05, 1.2867404031169372e-08,-2.0451450836844742e-05, 8.242140125958031e-08, -5.83555703759231e-11, 1.2867404031169372e-08, -5.83555703759231e-11, 4.407520694444701e-14, 1326.0, 0.006766896694898605, -2.0420657165232114e-05, 1.2838335727849426e-08, -2.0420657165232114e-05, 8.223515379768287e-08, -5.817977002942065e-11, 1.2838335727849426e-08, -5.817977002942065e-11, 4.390925963755274e-14, 1327.0, 0.0067618126049637794, -2.038993261521682e-05, 1.280935535419303e-08, -2.038993261521682e-05, 8.204947476997404e-08, -5.800462887783908e-11, 1.280935535419303e-08, -5.800462887783908e-11, 4.374406449591563e-14, 1328.0, 0.006756736431270838, -2.035927536780946e-05, 1.2780462022021766e-08, -2.035927536780946e-05, 8.186434286017175e-08, -5.783014692117838e-11, 1.2780462022021766e-08, -5.783014692117838e-11, 4.357961135514031e-14, 1329.0, 0.006751667708158493, -2.0328689060988836e-05, 1.2751655731335632e-08, -2.0328689060988836e-05, 8.16797722791307e-08, -5.765631722054465e-11, 1.2751655731335632e-08, -5.765631722054465e-11, 4.341590360335858e-14, 1330.0, 0.006746606435626745, -2.0298171875765547e-05, 1.2722935593956208e-08, -2.0298171875765547e-05, 8.149576302685091e-08, -5.748314324538484e-11, 1.2722935593956208e-08, -5.748314324538484e-11, 4.325293107617506e-14, 1331.0, 0.006741552613675594, -2.026772199315019e-05, 1.2694301609883496e-08, -2.026772199315019e-05, 8.13122937870503e-08, -5.731061805680504e-11, 1.2694301609883496e-08, -5.731061805680504e-11, 4.309069038545797e-14, 1332.0, 0.006736506707966328, -2.0237341232132167e-05, 1.2665753779117495e-08, -2.0237341232132167e-05, 8.112938587601093e-08, -5.713874165480526e-11, 1.2665753779117495e-08, -5.713874165480526e-11, 4.292918153120731e-14, 1333.0, 0.006731468252837658, -2.020702959271148e-05, 1.2637292101658204e-08, -2.020702959271148e-05, 8.094701797745074e-08, -5.696750710049159e-11,1.2637292101658204e-08, -5.696750710049159e-11, 4.27683977371595e-14, 1334.0, 0.006726437248289585, -2.017678525589872e-05, 1.2608914801148785e-08, -2.017678525589872e-05, 8.076520430222445e-08, -5.6796910924417077e-11, 1.2608914801148785e-08, -5.6796910924417077e-11, 4.260833561518275e-14, 1335.0, 0.006721413694322109, -2.0146608221693896e-05, 1.2580621877589238e-08, -2.0146608221693896e-05, 8.058392353404997e-08, -5.662695659602868e-11, 1.2580621877589238e-08,-5.662695659602868e-11, 4.244899177714527e-14, 1336.0, 0.0067163980565965176, -2.0116500309086405e-05, 1.2552414219157981e-08, -2.0116500309086405e-05, 8.040319698920939e-08, -5.6457637176432485e-11, 1.2552414219157981e-08, -5.6457637176432485e-11, 4.229036622304706e-14, 1337.0, 0.0067113894037902355, -2.008645788009744e-05, 1.2524290937676597e-08, -2.008645788009744e-05, 8.022300335142063e-08, -5.628894919618155e-11, 1.2524290937676597e-08, -5.628894919618155e-11, 4.213244540036097e-14, 1338.0, 0.00670638820156455, -2.0056484572705813e-05, 1.2496252033145083e-08, -2.0056484572705813e-05, 8.004334972611105e-08, -5.612089265527587e-11, 1.2496252033145083e-08, -5.612089265527587e-11, 4.197523608535057e-14, 1339.0, 0.0067013949155807495, -2.0026576748932712e-05, 1.2468295729206602e-08, -2.0026576748932712e-05, 7.986422900785328e-08, -5.595346061482154e-11, 1.2468295729206602e-08, -5.595346061482154e-11, 4.18187281136205e-14, 1340.0, 0.006696408614516258, -1.9996736227767542e-05, 1.2440423802217992e-08, -1.9996736227767542e-05, 7.96856483020747e-08, -5.578665307481856e-11, 1.2440423802217992e-08, -5.578665307481856e-11, 4.1662921485170756e-14, 1341.0, 0.006691430229693651, -1.9966963009210303e-05, 1.2412633587643995e-08, -1.9966963009210303e-05, 7.950759339792057e-08, -5.562046656581998e-11, 1.2412633587643995e-08, -5.562046656581998e-11, 4.150780942373776e-14, 1342.0, 0.006686458829790354, -1.9937255274271592e-05, 1.238492686184145e-08, -1.9937255274271592e-05, 7.933007140081827e-08, -5.545489761837885e-11, 1.238492686184145e-08, -5.545489761837885e-11, 4.135339192932151e-14, 1343.0, 0.006681494880467653, -1.9907614841940813e-05, 1.2357302736631937e-08, -1.9907614841940813e-05, 7.915307520534043e-08, -5.528994623249517e-11, 1.2357302736631937e-08, -5.528994623249517e-11, 4.1199662225658434e-14, 1344.0, 0.00667653838172555, -1.987803989322856e-05, 1.2329760323837036e-08, -1.987803989322856e-05, 7.897661191691441e-08, -5.512560546927503e-11, 1.2329760323837036e-08, -5.512560546927503e-11, 4.104661692461674e-14, 1345.0, 0.006671588867902756, -1.9848530428134836e-05, 1.2302299623456747e-08, -1.9848530428134836e-05, 7.880066732468549e-08, -5.4961875328718435e-11, 1.2302299623456747e-08, -5.4961875328718435e-11, 4.0894252638064635e-14, 1346.0, 0.006666647270321846, -1.9819088265649043e-05, 1.2274920635491071e-08, -1.9819088265649043e-05, 7.862524142865368e-08, -5.4798755810825384e-11, 1.2274920635491071e-08, -5.4798755810825384e-11, 4.0742569366002124e-14, 1347.0, 0.006661712657660246, -1.9789709767792374e-05, 1.2247623359940008e-08, -1.9789709767792374e-05, 7.845034133424633e-08, -5.463623650725502e-11, 1.2247623359940008e-08, -5.463623650725502e-11, 4.059155694403384e-14, 1348.0, 0.006656785029917955, -1.9760396753554232e-05,1.2220406020446717e-08, -1.9760396753554232e-05, 7.827595993603609e-08, -5.44743208874543e-11, 1.2220406020446717e-08, -5.44743208874543e-11, 4.0441218760291567e-14, 1349.0, 0.006651865318417549, -1.973114922293462e-05, 1.2193269505189619e-08, -1.973114922293462e-05, 7.810209723402295e-08, -5.431300548197626e-11, 1.2193269505189619e-08, -5.431300548197626e-11, 4.029154803851173e-14, 1350.0, 0.0066469525918364525, -1.9701967175933532e-05, 1.2166213814168714e-08,-1.9701967175933532e-05, 7.792874612277956e-08, -5.415228682137396e-11, 1.2166213814168714e-08, -5.415228682137396e-11, 4.0142541390562544e-14, 1351.0, 0.0066420468501746655, -1.967284879356157e-05, 1.2139238059205582e-08, -1.967284879356157e-05, 7.775590660230591e-08, -5.399216143620045e-11, 1.2139238059205582e-08, -5.399216143620045e-11, 3.9994195428312215e-14, 1352.0, 0.006637149024754763, -1.9643795894808136e-05, 1.2112341352121803e-08, -1.9643795894808136e-05, 7.758357867260202e-08, -5.3832629326455717e-11, 1.2112341352121803e-08, -5.3832629326455717e-11, 3.9846503375497166e-14, 1353.0, 0.006632257718592882, -1.9614806660683826e-05, 1.2085524581095797e-08, -1.9614806660683826e-05, 7.741175522824051e-08, -5.3673683553245866e-11, 1.2085524581095797e-08, -5.3673683553245866e-11, 3.969946862024919e-14, 1354.0, 0.006627373863011599, -1.958588109118864e-05, 1.2058786857949144e-08, -1.958588109118864e-05, 7.724044337464875e-08, -5.3515324116570895e-11, 1.2058786857949144e-08, -5.3515324116570895e-11, 3.95530843863047e-14, 1355.0, 0.006622497458010912, -1.9557019186322577e-05, 1.2032127294503425e-08, -1.9557019186322577e-05, 7.706963600639938e-08, -5.3357551016430804e-11, 1.2032127294503425e-08, -5.3357551016430804e-11, 3.940734728553191e-14, 1356.0, 0.006617628037929535, -1.9528222765075043e-05, 1.200554677893706e-08, -1.9528222765075043e-05, 7.68993331234924e-08, -5.320035384448474e-11, 1.200554677893706e-08, -5.320035384448474e-11, 3.926225392979904e-14, 1357.0, 0.0066127656027674675, -1.949948818946723e-05, 1.1979044423071628e-08, -1.949948818946723e-05, 7.672952762050045e-08, -5.30437395396266e-11, 1.1979044423071628e-08, -5.30437395396266e-11, 3.911780093097429e-14, 1358.0, 0.006607910618185997, -1.9470819097477943e-05, 1.1952620226907129e-08, -1.9470819097477943e-05, 7.656022660285089e-08, -5.2887701162962486e-11,1.1952620226907129e-08, -5.2887701162962486e-11, 3.897398828905767e-14, 1359.0, 0.006603062618523836, -1.9442211851128377e-05, 1.1926273302265145e-08, -1.9442211851128377e-05, 7.639142296511636e-08, -5.2732235245045445e-11, 1.1926273302265145e-08, -5.2732235245045445e-11, 3.88308058396538e-14, 1360.0, 0.006598221603780985, -1.9413666450418532e-05, 1.1900004537324094e-08, -1.9413666450418532e-05, 7.622310960186951e-08, -5.2577338316428524e-11, 1.1900004537324094e-08,-5.2577338316428524e-11, 3.868825358276269e-14, 1361.0, 0.006593387573957443, -1.938518471433781e-05, 1.1873812155727137e-08, -1.938518471433781e-05, 7.605529361853769e-08, -5.242301037711172e-11, 1.1873812155727137e-08, -5.242301037711172e-11, 3.854633151838434e-14, 1362.0, 0.0065885609947144985, -1.9356766642886214e-05, 1.1847696157474275e-08, -1.9356766642886214e-05, 7.58879750151209e-08, -5.226924795764809e-11, 1.1847696157474275e-08, -5.226924795764809e-11, 3.8405032870255165e-14, 1363.0, 0.006583741400390863, -1.9328410417074338e-05, 1.1821657430743926e-08, -1.9328410417074338e-05, 7.572113958076443e-08, -5.211605105803763e-11, 1.1821657430743926e-08, -5.211605105803763e-11, 3.826435425024338e-14, 1364.0, 0.006578928325325251, -1.9300116036902182e-05, 1.1795695087357672e-08, -1.9300116036902182e-05, 7.555479442089563e-08, -5.196341273938643e-11, 1.1795695087357672e-08, -5.196341273938643e-11, 3.812429565834899e-14, 1365.0, 0.006574123166501522, -1.9271883502369747e-05, 1.1769808239137092e-08, -1.9271883502369747e-05, 7.538893953551451e-08, -5.1811336471141445e-11, 1.1769808239137092e-08, -5.1811336471141445e-11, 3.798485031830841e-14, 1366.0, 0.006569324526935816, -1.9243714632466435e-05, 1.1743996886082186e-08, -1.9243714632466435e-05, 7.52235678191937e-08, -5.165981184496182e-11, 1.1743996886082186e-08, -5.165981184496182e-11, 3.784601484198985e-14, 1367.0, 0.006564532872289419, -1.921560578921344e-05, 1.1718261916371375e-08, -1.921560578921344e-05, 7.505867927193322e-08, -5.150884233029451e-11, 1.1718261916371375e-08, -5.150884233029451e-11, 3.7707792617525104e-14, 1368.0, 0.006559748202562332, -1.9187558791600168e-05, 1.1692601553647819e-08, -1.9187558791600168e-05, 7.489427389373304e-08, -5.1358424457692564e-11, 1.1692601553647819e-08, -5.1358424457692564e-11, 3.7570170092387015e-14, 1369.0, 0.006554970517754555, -1.9159573639626615e-05, 1.1667015797911517e-08, -1.9159573639626615e-05, 7.473034457916583e-08, -5.1208554757709024e-11, 1.1667015797911517e-08, -5.1208554757709024e-11, 3.743315404283916e-14, 1370.0, 0.006550199817866087, -1.913164851430338e-05, 1.164150464916247e-08, -1.913164851430338e-05, 7.456689132823158e-08, -5.105923323034389e-11, 1.164150464916247e-08, -5.105923323034389e-11, 3.729673430448617e-14, 1371.0, 0.006545436102896929, -1.9103785234619863e-05, 1.1616068107400679e-08, -1.9103785234619863e-05, 7.440392124635764e-08, -5.0910452936703265e-11, 1.1616068107400679e-08, -5.0910452936703265e-11, 3.716091426545984e-14, 1372.0, 0.00654067937284708, -1.907598380057607e-05, 1.1590705284447722e-08, -1.907598380057607e-05, 7.42414201226893e-08, -5.0762213876787143e-11, 1.1590705284447722e-08, -5.0762213876787143e-11, 3.7025683761364794e-14, 1373.0, 0.006535929162055254, -1.9048240574193187e-05,1.156541706848202e-08, -1.9048240574193187e-05, 7.407939506265393e-08, -5.0614516050595526e-11, 1.156541706848202e-08, -5.0614516050595526e-11, 3.689104618033283e-14, 1374.0, 0.006531186401844025, -1.9020559193450026e-05, 1.1540201683146734e-08, -1.9020559193450026e-05, 7.391784606625151e-08, -5.046735251923451e-11, 1.1540201683146734e-08, -5.046735251923451e-11, 3.6756994746100363e-14, 1375.0, 0.006526450160890818, -1.8992939658346586e-05, 1.1515059128441862e-08,-1.8992939658346586e-05, 7.375675892262734e-08, -5.0320726752151046e-11, 1.1515059128441862e-08, -5.0320726752151046e-11, 3.662352607053561e-14, 1376.0, 0.00652172090485692, -1.896537833090406e-05, 1.1489990292545826e-08, -1.896537833090406e-05, 7.359614073720877e-08, -5.017463181045123e-11, 1.1489990292545826e-08, -5.017463181045123e-11, 3.6490640153638565e-14, 1377.0, 0.006516998168081045, -1.893787703011185e-05, 1.1464994287280206e-08, -1.893787703011185e-05, 7.34359915099958e-08, -5.0029064224688113e-11, 1.1464994287280206e-08, -5.0029064224688113e-11, 3.6358330219145654e-14, 1378.0, 0.006512282881885767, -1.8910435755969957e-05, 1.1440070224466581e-08, -1.8910435755969957e-05, 7.327630413556108e-08, -4.9884027464308645e-11, 1.1440070224466581e-08, -4.9884027464308645e-11, 3.6226599655188665e-14, 1379.0, 0.006507574114948511, -1.888305450847838e-05, 1.1415218104104952e-08, -1.888305450847838e-05, 7.31170786139046e-08, -4.973951459041892e-11, 1.1415218104104952e-08, -4.973951459041892e-11, 3.609543829737223e-14, 1380.0, 0.006502871867269278, -1.885573146864772e-05, 1.1390438814373738e-08, -1.885573146864772e-05, 7.295831494502636e-08, -4.959552213357199e-11, 1.1390438814373738e-08, -4.959552213357199e-11, 3.596484614569635e-14, 1381.0, 0.006498176604509354, -1.8828468455467373e-05, 1.13657305789161e-08, -1.8828468455467373e-05, 7.280001312892637e-08, -4.9452053563214804e-11, 1.13657305789161e-08, -4.9452053563214804e-11, 3.583482320016103e-14, 1382.0, 0.006493488326668739, -1.8801265468937345e-05, 1.1341093397732038e-08, -1.8801265468937345e-05, 7.264216606017726e-08, -4.930910194045346e-11, 1.1341093397732038e-08, -4.930910194045346e-11, 3.570535929637089e-14, 1383.0, 0.006488806568086147, -1.877412069006823e-05, 1.1316528158999972e-08, -1.877412069006823e-05, 7.248477373877904e-08, -4.9166667265287956e-11,1.1316528158999972e-08, -4.9166667265287956e-11, 3.557646121058952e-14, 1384.0, 0.006484131794422865, -1.874703411886003e-05, 1.1292033974541482e-08, -1.874703411886003e-05, 7.232783616473171e-08, -4.902474953771829e-11, 1.1292033974541482e-08, -4.902474953771829e-11, 3.544811877842155e-14, 1385.0, 0.006479463540017605, -1.872000575531274e-05, 1.1267609956178148e-08, -1.872000575531274e-05, 7.217135333803526e-08, -4.8883338349403616e-11, 1.1267609956178148e-08,-4.8883338349403616e-11, 3.532033199986698e-14, 1386.0, 0.006474802270531654, -1.869303741841577e-05, 1.1243256103909971e-08, -1.869303741841577e-05, 7.20153252586897e-08, -4.874244063923783e-11, 1.1243256103909971e-08, -4.874244063923783e-11, 3.5193097486794014e-14, 1387.0, 0.006470147520303726, -1.866612547019031e-05, 1.121897241773695e-08, -1.866612547019031e-05, 7.185973771584031e-08, -4.860204599888007e-11, 1.121897241773695e-08, -4.860204599888007e-11, 3.506641185107087e-14, 1388.0, 0.00646549928933382, -1.8639273548615165e-05, 1.1194758897659085e-08, -1.8639273548615165e-05, 7.170460492034181e-08, -4.84621578977773e-11, 1.1194758897659085e-08, -4.84621578977773e-11, 3.494027509269755e-14, 1389.0, 0.006460858043283224, -1.861247801571153e-05, 1.1170614655497957e-08, -1.861247801571153e-05, 7.154991266133948e-08, -4.832277633592952e-11, 1.1170614655497957e-08, -4.832277633592952e-11, 3.481468043541047e-14, 1390.0, 0.00645622331649065, -1.858574069046881e-05, 1.1146540579431985e-08, -1.858574069046881e-05, 7.139566804426067e-08, -4.818389090499586e-11, 1.1146540579431985e-08, -4.818389090499586e-11, 3.4689627879209636e-14, 1391.0, 0.0064515951089560986, -1.8559061572887003e-05, 1.112253489310433e-08, -1.8559061572887003e-05, 7.12418710691054e-08, -4.804550507442329e-11, 1.112253489310433e-08, -4.804550507442329e-11, 3.4565114035963254e-14, 1392.0, 0.0064469738863408566, -1.8532438843976706e-05, 1.1098598484693412e-08, -1.8532438843976706e-05, 7.108850752501894e-08, -4.7907618844211797e-11, 1.1098598484693412e-08, -4.7907618844211797e-11, 3.4441135517539537e-14, 1393.0, 0.0064423587173223495, -1.8505874322727323e-05, 1.107473046602081e-08, -1.8505874322727323e-05, 7.093559162285601e-08, -4.777022527546748e-11, 1.107473046602081e-08, -4.777022527546748e-11, 3.4317688935806695e-14, 1394.0, 0.006437750533223152, -1.847936619014945e-05, 1.1050930837086526e-08, -1.847936619014945e-05, 7.078310915176189e-08, -4.763332089874339e-11, 1.1050930837086526e-08, -4.763332089874339e-11, 3.419477429076473e-14, 1395.0, 0.006433148868381977, -1.8452914446243085e-05, 1.1027199597890558e-08, -1.8452914446243085e-05, 7.063106721716395e-08, -4.749690918348648e-11, 1.1027199597890558e-08, -4.749690918348648e-11, 3.407238819428185e-14, 1396.0, 0.006428553722798824, -1.8426520909997635e-05, 1.1003535860254487e-08, -1.8426520909997635e-05, 7.047945871363481e-08, -4.736098666024979e-11, 1.1003535860254487e-08, -4.736098666024979e-11, 3.395052725822627e-14, 1397.0, 0.006423965562134981, -1.8400183762423694e-05, 1.0979939624178314e-08, -1.8400183762423694e-05, 7.032827653574714e-08, -4.722554639013943e-11, 1.0979939624178314e-08, -4.722554639013943e-11, 3.3829188094466195e-14, 1398.0, 0.006419383455067873, -1.837390118453186e-05,1.0956411777840458e-08, -1.837390118453186e-05, 7.017753489435563e-08, -4.709059531204929e-11, 1.0956411777840458e-08, -4.709059531204929e-11, 3.370837070300163e-14, 1399.0, 0.006414807867258787, -1.834767681430094e-05, 1.0932950544884079e-08, -1.834767681430094e-05, 7.002721957860558e-08, -4.6956119548191566e-11, 1.0932950544884079e-08, -4.6956119548191566e-11, 3.3588068307568997e-14, 1400.0, 0.006410238798707724, -1.832150883274153e-05, 1.0909555925309178e-08,-1.832150883274153e-05, 6.987733769392435e-08, -4.682212950690712e-11, 1.0909555925309178e-08, -4.682212950690712e-11, 3.346828429630008e-14, 1401.0, 0.00640567671507597, -1.8295395420864224e-05, 1.0886227919115754e-08, -1.8295395420864224e-05, 6.972788213488457e-08, -4.6688611310408135e-11, 1.0886227919115754e-08, -4.6688611310408135e-11, 3.334900850479952e-14, 1402.0, 0.006401120685040951, -1.826933839765843e-05, 1.0862967414482227e-08, -1.826933839765843e-05, 6.957884579605889e-08, -4.655557189758852e-11, 1.0862967414482227e-08, -4.655557189758852e-11, 3.32302443211991e-14, 1403.0, 0.006396571174263954, -1.8243335944134742e-05, 1.0839771746873339e-08, -1.8243335944134742e-05, 6.943024288830202e-08, -4.6423007799001326e-11, 1.0839771746873339e-08, -4.6423007799001326e-11, 3.3111988357367034e-14, 1404.0, 0.00639202818274498, -1.8217389879282564e-05, 1.0816643580824348e-08, -1.8217389879282564e-05, 6.928205920075925e-08, -4.6290912075752644e-11, 1.0816643580824348e-08, -4.6290912075752644e-11, 3.299423383703974e-14, 1405.0, 0.006387491710484028, -1.8191500203101896e-05, 1.0793580251799995e-08, -1.8191500203101896e-05, 6.913429473343058e-08, -4.615928819728943e-11, 1.0793580251799995e-08, -4.615928819728943e-11, 3.287698414834901e-14, 1406.0, 0.006382961757481098, -1.816566327761393e-05, 1.07705826479787e-08, -1.816566327761393e-05, 6.898695659174336e-08, -4.602812922471777e-11, 1.07705826479787e-08, -4.602812922471777e-11, 3.276023590316306e-14, 1407.0, 0.0063784378580749035, -1.8139882740797475e-05, 1.0747649881182042e-08, -1.8139882740797475e-05, 6.884003056484289e-08, -4.589743862748463e-11, 1.0747649881182042e-08, -4.589743862748463e-11, 3.26439823252183e-14, 1408.0, 0.006373920477926731, -1.8114156773663126e-05, 1.0724782839588443e-08, -1.8114156773663126e-05, 6.869352375815652e-08, -4.57672094666961e-11,1.0724782839588443e-08, -4.57672094666961e-11, 3.252822341451474e-14, 1409.0, 0.006369409617036581, -1.8088487195200287e-05, 1.0701979746841062e-08, -1.8088487195200287e-05, 6.854742906625688e-08, -4.563744174235218e-11, 1.0701979746841062e-08, -4.563744174235218e-11, 3.241295578292058e-14, 1410.0, 0.006364905275404453, -1.806287036743015e-05, 1.0679242379296738e-08, -1.806287036743015e-05, 6.840175359457135e-08, -4.550813545445287e-11, 1.0679242379296738e-08,-4.550813545445287e-11, 3.2298179430435836e-14, 1411.0, 0.0063604069873690605, -1.803730810934212e-05, 1.0656568960598634e-08, -1.803730810934212e-05, 6.825649023767255e-08, -4.5379283664104264e-11, 1.0656568960598634e-08, -4.5379283664104264e-11, 3.218389096892871e-14, 1412.0, 0.00635591521859169, -1.8011800420936197e-05, 1.0633959490746747e-08, -1.8011800420936197e-05, 6.811163189013314e-08, -4.5250889840753317e-11, 1.0633959490746747e-08, -4.5250889840753317e-11, 3.207008362213562e-14, 1413.0, 0.006351429969072342, -1.7986345483222976e-05, 1.061141396974108e-08, -1.7986345483222976e-05, 6.796718565738047e-08, -4.5122950514953075e-11, 1.061141396974108e-08, -4.5122950514953075e-11, 3.195676416632015e-14, 1414.0, 0.006346950773149729, -1.7960946934181266e-05, 1.058893150940321e-08, -1.7960946934181266e-05, 6.782315153941454e-08, -4.499546221725659e-11, 1.058893150940321e-08, -4.499546221725659e-11, 3.184392243708693e-14, 1415.0, 0.006342477630823851, -1.7935599316842854e-05, 1.0566513886089979e-08, -1.7935599316842854e-05, 6.767952243080799e-08, -4.48684214782169e-11, 1.0566513886089979e-08, -4.48684214782169e-11, 3.1731558434435966e-14, 1416.0, 0.006338011473417282, -1.7910308088175952e-05, 1.0544158435266127e-08, -1.7910308088175952e-05, 6.753629833156083e-08, -4.474183176728097e-11, 1.0544158435266127e-08, -4.474183176728097e-11, 3.161966877023546e-14, 1417.0, 0.006333550903946161, -1.788506779121235e-05, 1.0521866045110073e-08, -1.788506779121235e-05, 6.739347924167305e-08, -4.461568614555489e-11, 1.0521866045110073e-08, -4.461568614555489e-11, 3.150825344448542e-14, 1418.0, 0.00632909731939435, -1.7859882063930854e-05, 1.0499636715621818e-08, -1.7859882063930854e-05, 6.72510580557173e-08, -4.448998808248561e-11, 1.0499636715621818e-08, -4.448998808248561e-11, 3.139730906905405e-14, 1419.0, 0.0063246493227779865, -1.783474908734206e-05, 1.0477470446801362e-08, -1.783474908734206e-05, 6.710904187912092e-08, -4.436473063917923e-11, 1.0477470446801362e-08, -4.436473063917923e-11, 3.128683225580957e-14, 1420.0, 0.006320207845419645, -1.7809670680435374e-05, 1.0455365462291866e-08, -1.7809670680435374e-05, 6.696742360645658e-08, -4.4239913815635745e-11, 1.0455365462291866e-08, -4.4239913815635745e-11, 3.117682300475197e-14, 1421.0, 0.006315772887319326, -1.7784643205231987e-05, 1.0433323538450168e-08, -1.7784643205231987e-05, 6.682620323772426e-08, -4.411553414240821e-11, 1.0433323538450168e-08, -4.411553414240821e-11, 3.1067277927749465e-14, 1422.0, 0.0063113439828157425, -1.7759670299710706e-05, 1.0411343787097849e-08, -1.7759670299710706e-05, 6.668538077292396e-08, -4.399159161949662e-11, 1.0411343787097849e-08, -4.399159161949662e-11, 3.095819363667027e-14, 1423.0, 0.006306921131908894, -1.7734748325892724e-05,1.038942443187807e-08, -1.7734748325892724e-05, 6.65449562120557e-08, -4.386808624690097e-11, 1.038942443187807e-08, -4.386808624690097e-11, 3.0849566743382587e-14, 1424.0, 0.00630250433459878, -1.7709879102767445e-05, 1.0367567249147669e-08, -1.7709879102767445e-05, 6.64049224496921e-08, -4.374501108572737e-11, 1.0367567249147669e-08, -4.374501108572737e-11, 3.074140063601821e-14, 1425.0, 0.006298094056546688, -1.768506263033487e-05, 1.0345771350728228e-08,-1.768506263033487e-05, 6.626527948583316e-08, -4.362236960542276e-11, 1.0345771350728228e-08, -4.362236960542276e-11, 3.063368515018178e-14, 1426.0, 0.0062936898320913315, -1.7660297089605592e-05, 1.0324036736619746e-08, -1.7660297089605592e-05, 6.61260273204789e-08, -4.3500154867093244e-11, 1.0324036736619746e-08, -4.3500154867093244e-11, 3.052642367400507e-14, 1427.0, 0.00628929166123271, -1.7635584299569018e-05, 1.0302362518643804e-08, -1.7635584299569018e-05, 6.598717305905666e-08, -4.337837034018577e-11, 1.0302362518643804e-08, -4.337837034018577e-11, 3.0419612819356304e-14, 1428.0, 0.006284900009632111, -1.7610924260225147e-05, 1.0280749584978821e-08, -1.7610924260225147e-05, 6.584870249071173e-08, -4.325701255525338e-11, 1.0280749584978821e-08, -4.325701255525338e-11, 3.0313252586235476e-14, 1429.0, 0.006280513945966959, -1.7586315152584575e-05, 1.0259197047446378e-08, -1.7586315152584575e-05, 6.571061561544411e-08, -4.3136074573402183e-11, 1.0259197047446378e-08, -4.3136074573402183e-11, 3.020733619837901e-14, 1430.0, 0.00627613440155983, -1.7561756976647303e-05, 1.0237704017868055e-08, -1.7561756976647303e-05, 6.557291953868116e-08, -4.3015563333526075e-11, 1.0237704017868055e-08, -4.3015563333526075e-11, 3.0101863655786903e-14, 1431.0, 0.006271760910749435, -1.7537251551402733e-05, 1.021627138442227e-08, -1.7537251551402733e-05, 6.543560715499552e-08, -4.289547189673115e-11, 1.021627138442227e-08, -4.289547189673115e-11, 2.999683157032737e-14, 1432.0, 0.006267393007874489, -1.7512797057861462e-05, 1.0194898258930607e-08, -1.7512797057861462e-05, 6.529867135895984e-08, -4.2775796793570464e-11, 1.0194898258930607e-08, -4.2775796793570464e-11, 2.989223994200041e-14, 1433.0, 0.0062630316242575645, -1.7488391677034087e-05, 1.0173584641393063e-08, -1.7488391677034087e-05, 6.516212636142882e-08, -4.265654149349096e-11,1.0173584641393063e-08, -4.265654149349096e-11, 2.978808538267423e-14, 1434.0, 0.006258676294237375, -1.7464039046899416e-05, 1.0152330531809639e-08, -1.7464039046899416e-05, 6.502595795154775e-08, -4.2537699057598743e-11, 1.0152330531809639e-08, -4.2537699057598743e-11, 2.968436789234884e-14, 1435.0, 0.006254327017813921, -1.7439737348468043e-05, 1.0131135930180335e-08, -1.7439737348468043e-05, 6.489016612931664e-08, -4.241927295534076e-11, 1.0131135930180335e-08,-4.241927295534076e-11, 2.958108069476065e-14, 1436.0, 0.006249983794987202, -1.741548658173997e-05, 1.0109999948326731e-08, -1.741548658173997e-05, 6.475475800016284e-08, -4.2301256247823105e-11, 1.0109999948326731e-08, -4.2301256247823105e-11, 2.947822717804145e-14, 1437.0, 0.006245646625757217, -1.7391284927725792e-05, 1.0088922586248827e-08, -1.7391284927725792e-05, 6.461971935323163e-08, -4.218364893504578e-11, 1.0088922586248827e-08, -4.218364893504578e-11, 2.9375800565927673e-14, 1438.0, 0.006241315510123968, -1.7367134205414914e-05, 1.0067904732125044e-08, -1.7367134205414914e-05, 6.448506439937773e-08, -4.206645448645574e-11, 1.0067904732125044e-08, -4.206645448645574e-11, 2.927380085841931e-14, 1439.0, 0.0062369899824261665, -1.7343034414807335e-05, 1.004694372142012e-08, -1.7343034414807335e-05, 6.435077892774643e-08, -4.1949662493712125e-11, 1.004694372142012e-08, -4.1949662493712125e-11, 2.9172228055516364e-14, 1440.0, 0.006232670973986387, -1.7318985555903055e-05, 1.0026042218669318e-08, -1.7318985555903055e-05, 6.421686293833773e-08, -4.183327642626189e-11, 1.0026042218669318e-08, -4.183327642626189e-11, 2.9071075380955255e-14, 1441.0, 0.006228357553482056, -1.729498580971267e-05, 1.0005197559337375e-08, -1.729498580971267e-05, 6.408332353657897e-08, -4.171729628410503e-11, 1.0005197559337375e-08, -4.171729628410503e-11, 2.8970342834735985e-14, 1442.0, 0.006224050652235746, -1.7271035176236182e-05, 9.984411519781133e-09, -1.7271035176236182e-05, 6.395014651161546e-08, -4.160171512834765e-11, 9.984411519781133e-09, -4.160171512834765e-11, 2.887003041685855e-14, 1443.0, 0.006219749338924885, -1.724713365547359e-05, 9.963682323643752e-09, -1.724713365547359e-05, 6.38173460743019e-08, -4.148653295898974e-11, 9.963682323643752e-09, -4.148653295898974e-11, 2.877013473919117e-14, 1444.0, 0.006215453613549471, -1.7223283066414297e-05, 9.943010859103651e-09, -1.7223283066414297e-05, 6.368490801378357e-08, -4.137175324547826e-11, 9.943010859103651e-09, -4.137175324547826e-11, 2.8670652413602046e-14, 1445.0, 0.006211164407432079, -1.71994815900689e-05, 9.922396237982412e-09, -1.71994815900689e-05, 6.355283943548784e-08, -4.125736557947235e-11, 9.922396237982412e-09, -4.125736557947235e-11, 2.8571583440091183e-14, 1446.0, 0.006206880789250135, -1.71757310454268e-05, 9.901839348458452e-09, -1.71757310454268e-05, 6.34211403394147e-08, -4.1143376899865913e-11, 9.901839348458452e-09, -4.1143376899865913e-11, 2.847292443052679e-14, 1447.0, 0.0062026032246649265, -1.7152027794509195e-05, 9.881338414174934e-09, -1.7152027794509195e-05, 6.328979651470945e-08, -4.102978026776505e-11, 9.881338414174934e-09, -4.102978026776505e-11, 2.8374673690842976e-14, 1448.0, 0.006198331248015165, -1.7128373656305484e-05,9.860894323310276e-09, -1.7128373656305484e-05, 6.315881506679943e-08, -4.0916575683169754e-11, 9.860894323310276e-09, -4.0916575683169754e-11, 2.8276831221039737e-14, 1449.0, 0.006194065324962139, -1.710476863081567e-05, 9.84050618768606e-09, -1.710476863081567e-05, 6.302820310111201e-08, -4.080375967663308e-11, 9.84050618768606e-09, -4.080375967663308e-11, 2.8179391938919392e-14, 1450.0, 0.006189805455505848, -1.708121271803975e-05, 9.820174895480704e-09,-1.708121271803975e-05, 6.289794640679247e-08, -4.069133224815502e-11, 9.820174895480704e-09, -4.069133224815502e-11, 2.808235584448194e-14, 1451.0, 0.006185551173985004, -1.7057704098988324e-05, 9.79989955851579e-09, -1.7057704098988324e-05, 6.276804498384081e-08, -4.057929339773558e-11, 9.79989955851579e-09, -4.057929339773558e-11, 2.798571954959559e-14, 1452.0, 0.006181302946060896, -1.7034246411640197e-05, 9.779679288612897e-09, -1.7034246411640197e-05, 6.263850593768439e-08, -4.046763965592781e-11, 9.779679288612897e-09, -4.046763965592781e-11, 2.7889483054260346e-14, 1453.0, 0.006177060771733522, -1.701083419902716e-05, 9.759514973950445e-09, -1.701083419902716e-05, 6.250932216289584e-08, -4.0356367553284755e-11, 9.759514973950445e-09, -4.0356367553284755e-11, 2.7793642970344416e-14, 1454.0, 0.006172824185341597, -1.698747291811742e-05, 9.739406614528434e-09, -1.698747291811742e-05, 6.238048655404782e-08, -4.0245480559253366e-11, 9.739406614528434e-09, -4.0245480559253366e-11, 2.7698197603781907e-14, 1455.0, 0.0061685931868851185, -1.6964157111942768e-05, 9.719352433990025e-09, -1.6964157111942768e-05, 6.225201332199504e-08, -4.013497173493974e-11, 9.719352433990025e-09, -4.013497173493974e-11, 2.7603145260506924e-14, 1456.0, 0.006164368242025375, -1.6940892237471417e-05, 9.699354208692057e-09, -1.6940892237471417e-05, 6.212388825588278e-08, -4.002484454979083e-11, 9.699354208692057e-09, -4.002484454979083e-11, 2.7508484246453573e-14, 1457.0, 0.00616014888510108, -1.6917672837735154e-05, 9.67941016227769e-09, -1.6917672837735154e-05, 6.19961184611384e-08, -3.991509206491273e-11, 9.67941016227769e-09, -3.991509206491273e-11, 2.7414212867555958e-14, 1458.0, 0.006155935116112232, -1.6894502550712787e-05, 9.659521182925346e-09, -1.6894502550712787e-05, 6.186869683233454e-08, -3.980571774975239e-11,9.659521182925346e-09, -3.980571774975239e-11, 2.732032773568229e-14, 1459.0, 0.0061517274007201195, -1.6871377738425508e-05, 9.639686382456603e-09, -1.6871377738425508e-05, 6.17416233694712e-08, -3.969671813486286e-11, 9.639686382456603e-09, -3.969671813486286e-11, 2.7226828850832573e-14, 1460.0, 0.006147525738924742, -1.6848302038852125e-05, 9.619905760871461e-09, -1.6848302038852125e-05, 6.161489807254839e-08, -3.9588089750797195e-11, 9.619905760871461e-09,-3.9588089750797195e-11, 2.7133714518940907e-14, 1461.0, 0.006143329199403524, -1.6825273633003235e-05, 9.600179318169921e-09, -1.6825273633003235e-05, 6.148851383613874e-08, -3.9479832597555387e-11, 9.600179318169921e-09, -3.9479832597555387e-11, 2.7040981351875507e-14, 1462.0, 0.006139138713479042, -1.6802292520878837e-05, 9.580507054351983e-09, -1.6802292520878837e-05, 6.136248487109697e-08, -3.937194667513744e-11, 9.580507054351983e-09, -3.937194667513744e-11, 2.6948627655570476e-14, 1463.0, 0.006134954281151295, -1.677935870247893e-05, 9.560888081239227e-09, -1.677935870247893e-05, 6.123679696656836e-08, -3.9264428514096394e-11, 9.560888081239227e-09, -3.9264428514096394e-11, 2.6856653430025815e-14, 1464.0, 0.006130774971097708, -1.6756470358814113e-05, 9.541322398831653e-09, -1.6756470358814113e-05, 6.111145012255292e-08, -3.915727464498531e-11, 9.541322398831653e-09, -3.915727464498531e-11, 2.6765055287109735e-14, 1465.0, 0.006126601714640856, -1.673363112786319e-05, 9.52181089530768e-09, -1.673363112786319e-05, 6.098644433905065e-08, -3.905048853725113e-11, 9.52181089530768e-09, -3.905048853725113e-11, 2.667383153275634e-14, 1466.0, 0.0061224340461194515, -1.6710835552657954e-05, 9.50235179431047e-09, -1.6710835552657954e-05, 6.086177961606154e-08, -3.89440667214469e-11, 9.50235179431047e-09, -3.89440667214469e-11, 2.658298047289974e-14, 1467.0, 0.006118271965533495, -1.6688089090166613e-05, 9.482945984018443e-09, -1.6688089090166613e-05, 6.07374559535856e-08, -3.883800572812568e-11, 9.482945984018443e-09, -3.883800572812568e-11, 2.6492500413474035e-14, 1468.0, 0.006114115472882986, -1.666538810241036e-05, 9.463593464431597e-09, -1.666538810241036e-05, 6.061347335162282e-08, -3.873230555728746e-11, 9.463593464431597e-09, -3.873230555728746e-11, 2.6402389660413333e-14, 1469.0, 0.006109964568167925, -1.6642732589389198e-05, 9.444293347371513e-09, -1.6642732589389198e-05, 6.048982470474584e-08, -3.8626966208932245e-11, 9.444293347371513e-09, -3.8626966208932245e-11, 2.631264651965174e-14, 1470.0, 0.006105819251388311, -1.6620124370092526e-05, 9.425044744659772e-09, -1.6620124370092526e-05, 6.036651001295468e-08, -3.852198421361308e-11, 9.425044744659772e-09, -3.852198421361308e-11, 2.622326929712336e-14, 1471.0, 0.006101679988205433, -1.6597561625530943e-05, 9.405849432653213e-09, -1.6597561625530943e-05, 6.024352927624932e-08, -3.8417356101883016e-11, 9.405849432653213e-09, -3.8417356101883016e-11, 2.61342562987623e-14, 1472.0, 0.006097545847296715, -1.6575046174693853e-05, 9.386705634994996e-09, -1.6575046174693853e-05, 6.012088960005713e-08, -3.8313085343189e-11, 9.386705634994996e-09, -3.8313085343189e-11, 2.6045605830502666e-14, 1473.0, 0.006093417759984732, -1.6552574379602447e-05,9.367614239863542e-09, -1.6552574379602447e-05, 5.999857677352338e-08, -3.820916846808409e-11, 9.367614239863542e-09, -3.820916846808409e-11, 2.5957314504212667e-14, 1474.0, 0.006089294794946909, -1.6530149878235534e-05, 9.34857435908043e-09, -1.6530149878235534e-05, 5.987659790207545e-08, -3.810560200712132e-11, 9.34857435908043e-09, -3.810560200712132e-11, 2.5869384013958198e-14, 1475.0, 0.006085177883505821, -1.6507769032614306e-05, 9.329585992645661e-09,-1.6507769032614306e-05, 5.975494588028596e-08, -3.800238942974765e-11, 9.329585992645661e-09, -3.800238942974765e-11, 2.5781809277541576e-14, 1476.0, 0.006081066094338894, -1.648543548071757e-05, 9.310649140559235e-09, -1.648543548071757e-05, 5.963362781358228e-08, -3.789952379706918e-11, 9.310649140559235e-09, -3.789952379706918e-11, 2.5694591989028695e-14, 1477.0, 0.0060769603587687016, -1.6463147403555922e-05, 9.291763802821151e-09, -1.6463147403555922e-05, 5.951263659653705e-08, -3.77970051090859e-11, 9.291763802821151e-09, -3.77970051090859e-11, 2.5607727066221872e-14, 1478.0, 0.00607285974547267, -1.644090298213996e-05, 9.27292909125299e-09, -1.644090298213996e-05, 5.939197222915027e-08, -3.769483336579782e-11, 9.27292909125299e-09, -3.769483336579782e-11, 2.5521214509121107e-14, 1479.0, 0.006068764720112085, -1.6418704035459086e-05, 9.254145005854753e-09, -1.6418704035459086e-05, 5.927163471142194e-08, -3.759300509775798e-11, 9.254145005854753e-09, -3.759300509775798e-11, 2.5435052623660505e-14, 1480.0, 0.006064675282686949, -1.63965505635133e-05, 9.235412434804857e-09, -1.63965505635133e-05, 5.915162049063838e-08, -3.749152377441334e-11, 9.235412434804857e-09, -3.749152377441334e-11, 2.5349238021708277e-14, 1481.0, 0.00606059143319726, -1.63744407473132e-05, 9.216729601746465e-09, -1.63744407473132e-05, 5.903193311951327e-08, -3.7390382456869986e-11, 9.216729601746465e-09, -3.7390382456869986e-11, 2.5263772397330318e-14, 1482.0, 0.006056512705981731, -1.6352378224837594e-05, 9.198097394857996e-09, -1.6352378224837594e-05, 5.891256549261925e-08, -3.728958461457488e-11, 9.198097394857996e-09, -3.728958461457488e-11, 2.517865236239484e-14, 1483.0, 0.006052440032362938, -1.6330357539118268e-05, 9.17951492596103e-09, -1.6330357539118268e-05, 5.8793521162670004e-08, -3.718912330863411e-11,9.17951492596103e-09, -3.718912330863411e-11, 2.5093876222835945e-14, 1484.0, 0.006048372481018305, -1.630838232813403e-05, 9.160983083233987e-09, -1.630838232813403e-05, 5.867479657695185e-08, -3.708900200849463e-11, 9.160983083233987e-09, -3.708900200849463e-11, 2.5009440590521848e-14, 1485.0, 0.006044310517609119, -1.6286450772895478e-05, 9.142500978498447e-09, -1.6286450772895478e-05, 5.855638818275111e-08, -3.6989217244709494e-11, 9.142500978498447e-09,-3.6989217244709494e-11, 2.492534715951844e-14, 1486.0, 0.006040253676474094, -1.6264564692392014e-05, 9.12406861175441e-09, -1.6264564692392014e-05, 5.8438303085495136e-08, -3.688976554783174e-11, 9.12406861175441e-09, -3.688976554783174e-11, 2.4841592541693935e-14, 1487.0, 0.006036202888935804, -1.6242722267634235e-05, 9.105685983001877e-09, -1.6242722267634235e-05, 5.832053417975658e-08, -3.679065038730833e-11, 9.105685983001877e-09, -3.679065038730833e-11, 2.4758176737048332e-14, 1488.0, 0.006032157223671675, -1.6220923498622142e-05, 9.087352204062427e-09, -1.6220923498622142e-05, 5.8203077912821755e-08, -3.669186482424536e-11, 9.087352204062427e-09, -3.669186482424536e-11, 2.4675094663383947e-14, 1489.0, 0.0060281166806817055, -1.6199168385355733e-05, 9.06906816311448e-09, -1.6199168385355733e-05, 5.808594139011802e-08, -3.659341232808977e-11, 9.06906816311448e-09, -3.659341232808977e-11, 2.4592348014766674e-14, 1490.0, 0.006024081725627184, -1.617745692783501e-05, 9.050832083801197e-09, -1.617745692783501e-05, 5.7969117506218026e-08, -3.649529289884157e-11, 9.050832083801197e-09, -3.649529289884157e-11, 2.4509933403064725e-14, 1491.0, 0.00602005235850811, -1.6155790945049375e-05, 9.032645742479417e-09, -1.6155790945049375e-05, 5.7852606261121764e-08, -3.639749959760685e-11, 9.032645742479417e-09, -3.639749959760685e-11, 2.44278508282781e-14, 1492.0, 0.006016028579324484, -1.6134166799020022e-05, 9.014508250970721e-09, -1.6134166799020022e-05, 5.7736407654829236e-08, -3.630003242438562e-11, 9.014508250970721e-09, -3.630003242438562e-11, 2.4346098596340904e-14, 1493.0, 0.006012009922415018, -1.6112586308736354e-05, 8.996418721096688e-09, -1.6112586308736354e-05, 5.7620518134626764e-08, -3.620289137917787e-11, 8.996418721096688e-09, -3.620289137917787e-11, 2.4264673319121348e-14, 1494.0, 0.006007996387779713, -1.6091047655208968e-05, 8.97837804103574e-09, -1.6091047655208968e-05, 5.7504941253228026e-08, -3.6106076461983605e-11, 8.97837804103574e-09, -3.6106076461983605e-11, 2.4183574996619432e-14, 1495.0, 0.006003988441079855, -1.606955447641667e-05, 8.960385322609454e-09, -1.606955447641667e-05, 5.7389669905205665e-08, -3.600958420335587e-11, 8.960385322609454e-09, -3.600958420335587e-11, 2.4102800240703368e-14, 1496.0, 0.005999985616654158, -1.6048103134380654e-05, 8.942440565817833e-09, -1.6048103134380654e-05, 5.727470764327336e-08, -3.591341460329467e-11, 8.942440565817833e-09, -3.591341460329467e-11, 2.402235074543905e-14, 1497.0, 0.005995988380163908, -1.6026695448090322e-05, 8.924543770660875e-09, -1.6026695448090322e-05, 5.716005446743111e-08, -3.5817564192353046e-11, 8.924543770660875e-09, -3.5817564192353046e-11, 2.3942223122694686e-14, 1498.0, 0.005991996265947819, -1.6005329598556273e-05,8.906694048960162e-09, -1.6005329598556273e-05, 5.7045706824965237e-08, -3.5722036439977956e-11, 8.906694048960162e-09, -3.5722036439977956e-11, 2.3862415678404386e-14, 1499.0, 0.005988009739667177, -1.5984007404767908e-05, 8.888893177072532e-09, -1.5984007404767908e-05, 5.693166116316206e-08, -3.562682440727549e-11, 8.888893177072532e-09, -3.562682440727549e-11, 2.3782926718502254e-14, 1500.0, 0.005984028335660696, -1.5962727047735825e-05, 8.871138490462727e-09,-1.5962727047735825e-05, 5.6817921034735264e-08, -3.553193156369261e-11, 8.871138490462727e-09, -3.553193156369261e-11, 2.370375624298829e-14, 1501.0, 0.0059800525195896626, -1.5941488527460024e-05, 8.853431765487585e-09, -1.5941488527460024e-05, 5.6704482886971164e-08, -3.54373509703354e-11, 8.853431765487585e-09, -3.54373509703354e-11, 2.3624900863730702e-14, 1502.0, 0.005976081360131502, -1.5920293662929907e-05, 8.835772113968687e-09, -1.5920293662929907e-05, 5.659134671986976e-08, -3.5343089566097774e-11, 8.835772113968687e-09, -3.5343089566097774e-11, 2.3546360580729495e-14, 1503.0, 0.0059721157886087894, -1.5899140635156073e-05, 8.818159535906034e-09, -1.5899140635156073e-05, 5.647851253343106e-08, -3.524913694263887e-11, 8.818159535906034e-09, -3.524913694263887e-11, 2.346813369991877e-14, 1504.0, 0.005968155805021524, -1.587802944413852e-05, 8.800593143121205e-09, -1.587802944413852e-05, 5.636597677494137e-08, -3.5155500038852594e-11, 8.800593143121205e-09, -3.5155500038852594e-11, 2.3390218527232637e-14, 1505.0, 0.0059642004780471325, -1.585696190886665e-05, 8.78307382379262e-09, -1.585696190886665e-05, 5.6253742997114387e-08, -3.506217191584504e-11, 8.78307382379262e-09, -3.506217191584504e-11, 2.3312613368605198e-14, 1506.0, 0.005960250739008188, -1.583593439136166e-05, 8.76560068974186e-09, -1.583593439136166e-05, 5.614180409452274e-08, -3.4969152573616213e-11, 8.76560068974186e-09, -3.4969152573616213e-11, 2.323531652997056e-14, 1507.0, 0.005956306587904692, -1.5814948710612953e-05, 8.748173740968923e-09, -1.5814948710612953e-05, 5.6030160067166435e-08, -3.487644201216611e-11, 8.748173740968923e-09, -3.487644201216611e-11, 2.315832801132872e-14, 1508.0, 0.005952367093414068, -1.579400668560993e-05, 8.730793865652231e-09, -1.579400668560993e-05, 5.591881446775915e-08, -3.478404023149473e-11,8.730793865652231e-09, -3.478404023149473e-11, 2.3081644424547895e-14, 1509.0, 0.005948432721197605, -1.5773104678373784e-05, 8.713459287434944e-09, -1.5773104678373784e-05, 5.58077637435872e-08, -3.469194029270817e-11, 8.713459287434944e-09, -3.469194029270817e-11, 2.300526576962808e-14, 1510.0, 0.00594450393691659, -1.5752242688904516e-05, 8.69617089449548e-09, -1.5752242688904516e-05, 5.5697007894650596e-08, -3.460014913470033e-11, 8.69617089449548e-09,-3.460014913470033e-11, 2.2929190352503383e-14, 1511.0, 0.005940580274909735, -1.5731424355180934e-05, 8.678927798655423e-09, -1.5731424355180934e-05, 5.558654336823565e-08, -3.4508659818577314e-11, 8.678927798655423e-09, -3.4508659818577314e-11, 2.2853416479107908e-14, 1512.0, 0.00593666173517704, -1.571064603922423e-05, 8.661729999914769e-09, -1.571064603922423e-05, 5.547637016434237e-08, -3.441747234433912e-11, 8.661729999914769e-09, -3.441747234433912e-11, 2.277794245537576e-14, 1513.0, 0.005932748317718506, -1.5689909560023807e-05, 8.64457838645194e-09, -1.5689909560023807e-05, 5.536648828297075e-08, -3.432658671198574e-11, 8.64457838645194e-09, -3.432658671198574e-11, 2.270276828130694e-14, 1514.0, 0.005928840022534132, -1.5669214917579666e-05, 8.627472070088515e-09, -1.5669214917579666e-05, 5.525689772412079e-08, -3.423599945207023e-11, 8.627472070088515e-09, -3.423599945207023e-11, 2.262789056876966e-14, 1515.0, 0.0059249368496239185, -1.5648560292902403e-05, 8.610410162646076e-09, -1.5648560292902403e-05, 5.5147594935078814e-08, -3.414571056459259e-11, 8.610410162646076e-09, -3.414571056459259e-11, 2.255330931776392e-14, 1516.0, 0.0059210387989878654, -1.5627945685992017e-05, 8.593393552303041e-09, -1.5627945685992017e-05, 5.503857991584482e-08, -3.405572004955282e-11, 8.593393552303041e-09, -3.405572004955282e-11, 2.2479022834223823e-14, 1517.0, 0.005917145870625973, -1.5607372915837914e-05, 8.576421350880992e-09, -1.5607372915837914e-05, 5.492985266641881e-08, -3.396602790695091e-11, 8.576421350880992e-09, -3.396602790695091e-11, 2.240503111814937e-14, 1518.0, 0.005913258530199528, -1.5586840163450688e-05, 8.559494446558347e-09, -1.5586840163450688e-05, 5.482141318680078e-08, -3.387662719789297e-11, 8.559494446558347e-09, -3.387662719789297e-11, 2.2331330781408774e-14, 1519.0, 0.005909375846385956, -1.556634742883034e-05, 8.542611951156687e-09, -1.556634742883034e-05, 5.471325792427706e-08, -3.378752139182595e-11, 8.542611951156687e-09, -3.378752139182595e-11, 2.225792012993614e-14, 1520.0, 0.005905498284846544, -1.5545896530966274e-05, 8.525773864676012e-09, -1.5545896530966274e-05, 5.460538687884764e-08, -3.369871048874984e-11, 8.525773864676012e-09, -3.369871048874984e-11, 2.2184799163731464e-14, 1521.0, 0.005901625845581293, -1.5525483831879683e-05, 8.508979298937902e-09, -1.5525483831879683e-05, 5.4497796497798845e-08, -3.3610191019217694e-11, 8.508979298937902e-09, -3.3610191019217694e-11, 2.2111966188728856e-14, 1522.0, 0.005897758528590202, -1.5505112969549373e-05, 8.492230030299197e-09, -1.5505112969549373e-05, 5.4390490333844355e-08, -3.352195951378256e-11, 8.492230030299197e-09, -3.352195951378256e-11, 2.2039421204928314e-14, 1523.0, 0.005893896333873272, -1.548478212498594e-05,8.475523394224638e-09, -1.548478212498594e-05, 5.428346838698417e-08, -3.3434019441891394e-11, 8.475523394224638e-09, -3.3434019441891394e-11, 2.196716082419805e-14, 1524.0, 0.005890038795769215, -1.5464491298189387e-05, 8.458861167071063e-09, -1.5464491298189387e-05, 5.417672355179093e-08, -3.334636733409724e-11, 8.458861167071063e-09, -3.334636733409724e-11, 2.1895185046538063e-14, 1525.0, 0.005886186845600605, -1.5444238670170307e-05, 8.442242460660054e-09,-1.5444238670170307e-05, 5.4070259380978314e-08, -3.325899972095314e-11, 8.442242460660054e-09, -3.325899972095314e-11, 2.1823490483816564e-14, 1526.0, 0.0058823395520448685, -1.542402787890751e-05, 8.42566816317003e-09, -1.542402787890751e-05, 5.3964075874546324e-08, -3.317192007190606e-11, 8.42566816317003e-09, -3.317192007190606e-11, 2.175207883009945e-14, 1527.0, 0.005878497380763292, -1.5403855286422186e-05, 8.409135610065732e-09, -1.5403855286422186e-05, 5.385816947978128e-08, -3.3085124917509035e-11, 8.409135610065732e-09, -3.3085124917509035e-11, 2.1680946697254927e-14, 1528.0, 0.0058746603317558765, -1.538372271170374e-05, 8.392647465882419e-09, -1.538372271170374e-05, 5.3752536643969506e-08, -3.299861425776207e-11, 8.392647465882419e-09, -3.299861425776207e-11, 2.1610094085283e-14, 1529.0, 0.005870827939361334, -1.5363630154752173e-05, 8.376201954263252e-09, -1.5363630154752173e-05, 5.3647184472538356e-08, -3.2912384623218216e-11, 8.376201954263252e-09, -3.2912384623218216e-11, 2.153951930011777e-14, 1530.0, 0.005867001134902239, -1.534357579657808e-05, 8.35979996338665e-09, -1.534357579657808e-05, 5.3542105860060474e-08, -3.282643948332442e-11, 8.35979996338665e-09, -3.282643948332442e-11, 2.1469220647693348e-14, 1531.0, 0.005863178987056017, -1.5323561456170864e-05, 8.343439716895773e-09, -1.5323561456170864e-05, 5.343730080653586e-08, -3.274077189918678e-11, 8.343439716895773e-09, -3.274077189918678e-11, 2.1399196433943835e-14, 1532.0, 0.005859361495822668, -1.5303587133530527e-05, 8.327122991147462e-09, -1.5303587133530527e-05, 5.333276931196451e-08, -3.265538534025225e-11, 8.327122991147462e-09, -3.265538534025225e-11, 2.1329446658869232e-14, 1533.0, 0.005855549592524767, -1.5283651009667665e-05, 8.310848009784877e-09, -1.5283651009667665e-05, 5.322851137634643e-08, -3.2570272867626926e-11,8.310848009784877e-09, -3.2570272867626926e-11, 2.1259969628403645e-14, 1534.0, 0.005851742345839739, -1.5263753084582277e-05, 8.294616549164857e-09, -1.5263753084582277e-05, 5.312452344696794e-08, -3.248544142020471e-11, 8.294616549164857e-09, -3.248544142020471e-11, 2.1190765342547074e-14, 1535.0, 0.005847940221428871, -1.5243894267769065e-05, 8.278426832930563e-09, -1.5243894267769065e-05, 5.302080552382904e-08, -3.2400887528538647e-11, 8.278426832930563e-09,-3.2400887528538647e-11, 2.1121828719101836e-14, 1536.0, 0.0058441427536308765, -1.5224074559228029e-05, 8.262278861081995e-09, -1.5224074559228029e-05, 5.291735760692973e-08, -3.231660425373484e-11, 8.262278861081995e-09, -3.231660425373484e-11, 2.105316314619972e-14, 1537.0, 0.005840350408107042, -1.5204293049464468e-05, 8.246172633619153e-09, -1.5204293049464468e-05, 5.281417969627e-08, -3.2232598534687185e-11, 8.246172633619153e-09, -3.2232598534687185e-11, 2.098476354164304e-14, 1538.0, 0.005836562719196081, -1.5184550647973083e-05, 8.230109038720457e-09, -1.5184550647973083e-05, 5.271127179184987e-08, -3.2148863432501784e-11, 8.230109038720457e-09, -3.2148863432501784e-11, 2.0916631599497693e-14, 1539.0, 0.00583278015255928, -1.5164846445259172e-05, 8.214086300029066e-09, -1.5164846445259172e-05, 5.2608626788241963e-08, -3.2065398947178636e-11, 8.214086300029066e-09, -3.2065398947178636e-11, 2.084876393163189e-14, 1540.0, 0.005829002242535353, -1.5145180441322736e-05, 8.198106193901822e-09, -1.5145180441322736e-05, 5.250625179087365e-08, -3.198220854816469e-11, 8.198106193901822e-09, -3.198220854816469e-11, 2.0781162232111523e-14, 1541.0, 0.005825229454785585, -1.5125553545658477e-05, 8.182166943981883e-09, -1.5125553545658477e-05, 5.2404139694317564e-08, -3.189928529656605e-11, 8.182166943981883e-09, -3.189928529656605e-11, 2.0713821418738912e-14, 1542.0, 0.0058214617893099785, -1.510596393927699e-05, 8.166268550269251e-09, -1.510596393927699e-05, 5.230229405128739e-08, -3.1816629192382706e-11, 8.166268550269251e-09, -3.1816629192382706e-11, 2.064674318557995e-14, 1543.0, 0.005817698780447245, -1.5086412531672977e-05, 8.150411900942345e-09, -1.5086412531672977e-05, 5.220071130906945e-08, -3.1734243705061616e-11, 8.150411900942345e-09, -3.1734243705061616e-11, 2.0579924144502847e-14, 1544.0, 0.005813940428197384, -1.5066898413351737e-05, 8.134596107822745e-09, -1.5066898413351737e-05, 5.2099391467663736e-08, -3.1652125365155825e-11, 8.134596107822745e-09, -3.1652125365155825e-11, 2.0513365989573498e-14, 1545.0, 0.0058101871982216835, -1.5047422493807971e-05, 8.11882117091045e-09, -1.5047422493807971e-05, 5.1998334527070256e-08, -3.1570270703218384e-11, 8.11882117091045e-09, -3.1570270703218384e-11, 2.0447065332660115e-14, 1546.0, 0.005806438624858856, -1.502798477304168e-05, 8.103087090205463e-09, -1.502798477304168e-05, 5.189753693457533e-08, -3.148867971924929e-11, 8.103087090205463e-09, -3.148867971924929e-11, 2.0381022173762697e-14, 1547.0, 0.005802695173770189, -1.5008584341558162e-05, 8.087392977529362e-09, -1.5008584341558162e-05, 5.179700224289263e-08, -3.1407352413248546e-11, 8.087392977529362e-09, -3.1407352413248546e-11, 2.031523481881535e-14, 1548.0, 0.0057989563792943954, -1.4989222108852118e-05,8.071740609238987e-09, -1.4989222108852118e-05, 5.169672689930849e-08, -3.132628878521615e-11, 8.071740609238987e-09, -3.132628878521615e-11, 2.024970157375218e-14, 1549.0, 0.005795222241431475, -1.4969896255934145e-05, 8.056127320799078e-09, -1.4969896255934145e-05, 5.1596707351109217e-08, -3.124548536570515e-11, 8.056127320799078e-09, -3.124548536570515e-11, 2.0184422438573185e-14, 1550.0, 0.005791492760181427, -1.4950608601793647e-05, 8.040554888566476e-09,-1.4950608601793647e-05, 5.14969471510085e-08, -3.116494215471555e-11, 8.040554888566476e-09, -3.116494215471555e-11, 2.0119395719212473e-14, 1551.0, 0.00578776840120554, -1.493135732744122e-05, 8.02502331254118e-09, -1.493135732744122e-05, 5.139744629900633e-08, -3.108465915224734e-11, 8.02502331254118e-09, -3.108465915224734e-11, 2.0054619721604147e-14, 1552.0, 0.0057840486988425255, -1.4912144251866266e-05, 8.00953081636635e-09, -1.4912144251866266e-05, 5.129819768967536e-08, -3.100463635830053e-11, 8.00953081636635e-09, -3.100463635830053e-11, 1.9990092751682315e-14, 1553.0, 0.005780334118753672, -1.4892967556079384e-05, 7.994078288220408e-09, -1.4892967556079384e-05, 5.1199204875729265e-08, -3.092486683398121e-11, 7.994078288220408e-09, -3.092486683398121e-11, 1.992581650351287e-14, 1554.0, 0.005776624195277691, -1.4873828149575274e-05, 7.978665728103351e-09, -1.4873828149575274e-05, 5.110046785716804e-08, -3.084535751818329e-11, 7.978665728103351e-09, -3.084535751818329e-11, 1.9861787588964022e-14, 1555.0, 0.005772918462753296, -1.4854725122859236e-05, 7.963292247836762e-09, -1.4854725122859236e-05, 5.100198663399169e-08, -3.0766101472012863e-11, 7.963292247836762e-09, -3.0766101472012863e-11, 1.9798006008035773e-14, 1556.0, 0.005769218318164349, -1.483565938542597e-05, 7.947958735599059e-09, -1.483565938542597e-05, 5.090375410077286e-08, -3.068709869546993e-11, 7.947958735599059e-09, -3.068709869546993e-11, 1.9734468372596334e-14, 1557.0, 0.005765522364526987, -1.4816630027780775e-05, 7.932664303211823e-09, -1.4816630027780775e-05, 5.08057773629389e-08, -3.0608349188554484e-11, 7.932664303211823e-09, -3.0608349188554484e-11, 1.9671176376711598e-14, 1558.0, 0.005761831067502499, -1.4797637959418353e-05, 7.917408950675053e-09, -1.4797637959418353e-05, 5.0708049315062453e-08, -3.0529856420713486e-11,7.917408950675053e-09, -3.0529856420713486e-11, 1.960812832631567e-14, 1559.0, 0.0057581448927521706, -1.47786813613493e-05, 7.90219267798875e-09, -1.47786813613493e-05, 5.0610573509857204e-08, -3.0451609983606076e-11, 7.90219267798875e-09, -3.0451609983606076e-11, 1.954532252734266e-14, 1560.0, 0.005754462908953428, -1.4759762052563019e-05, 7.887016373331335e-09, -1.4759762052563019e-05, 5.051334639460947e-08, -3.037361681612616e-11, 7.887016373331335e-09,-3.037361681612616e-11, 1.9482757285726668e-14, 1561.0, 0.005750786047428846, -1.4740878214070108e-05, 7.871877372167546e-09, -1.4740878214070108e-05, 5.0416367969319253e-08, -3.029587344882678e-11, 7.871877372167546e-09, -3.029587344882678e-11, 1.9420432601467696e-14, 1562.0, 0.0057471138425171375, -1.4722030755365267e-05, 7.856778339032644e-09, -1.4722030755365267e-05, 5.031963823398655e-08, -3.0218376412260994e-11, 7.856778339032644e-09, -3.0218376412260994e-11, 1.935834678049985e-14, 1563.0, 0.005743446294218302, -1.4703219676448498e-05, 7.841717497569789e-09, -1.4703219676448498e-05, 5.022315718861137e-08, -3.014112917587575e-11, 7.841717497569789e-09, -3.014112917587575e-11, 1.9296498128757236e-14, 1564.0, 0.005739783402532339, -1.46844449773198e-05, 7.826694847778981e-09, -1.46844449773198e-05, 5.012692128048002e-08, -3.006412827022409e-11, 7.826694847778981e-09, -3.006412827022409e-11, 1.9234886646239853e-14, 1565.0, 0.0057361251674592495, -1.466570574848447e-05, 7.81171127783864e-09, -1.466570574848447e-05, 5.003093050959251e-08, -2.998737369530602e-11, 7.81171127783864e-09, -2.998737369530602e-11, 1.91735123329477e-14, 1566.0, 0.005732471588999033, -1.4647002899437211e-05, 7.796765011391926e-09, -1.4647002899437211e-05, 4.9935184875948835e-08, -2.9910861981674586e-11, 7.796765011391926e-09, -2.9910861981674586e-11, 1.911237180074899e-14, 1567.0, 0.0057288226671516895, -1.4628335520683322e-05, 7.78185693661726e-09, -1.4628335520683322e-05, 4.9839684379549e-08, -2.983459659877674e-11, 7.78185693661726e-09, -2.983459659877674e-11, 1.9051466743709618e-14, 1568.0, 0.005725178401917219, -1.4609703612222802e-05, 7.76698705351464e-09, -1.4609703612222802e-05, 4.974442546767932e-08, -2.9758574077165534e-11, 7.76698705351464e-09, -2.9758574077165534e-11, 1.8990792079631898e-14, 1569.0, 0.005721538793295622, -1.459110717405565e-05, 7.752155362084068e-09, -1.459110717405565e-05, 4.964941169305348e-08, -2.968279094739401e-11, 7.752155362084068e-09, -2.968279094739401e-11, 1.893035119664762e-14, 1570.0, 0.005717903841286898, -1.4572546206181869e-05, 7.737360974147123e-09, -1.4572546206181869e-05, 4.955463595024412e-08, -2.9607250678909125e-11, 7.737360974147123e-09, -2.9607250678909125e-11, 1.8870140706624995e-14, 1571.0, 0.0057142735458910465, -1.4554020708601456e-05, 7.722604777882225e-09, -1.4554020708601456e-05, 4.9460105344678595e-08, -2.9531949802263924e-11, 7.722604777882225e-09, -2.9531949802263924e-11, 1.881015891549813e-14, 1572.0, 0.005710647441446781, -1.4535530681314413e-05, 7.707885885110954e-09, -1.4535530681314413e-05, 4.936581277092955e-08, -2.945688831745841e-11, 7.707885885110954e-09, -2.945688831745841e-11, 1.8750405823267022e-14, 1573.0, 0.005707026459276676, -1.4517076124320738e-05,7.693204295833311e-09, -1.4517076124320738e-05, 4.9271761781710666e-08, -2.9382066224492576e-11, 7.693204295833311e-09, -2.9382066224492576e-11, 1.8690881429931673e-14, 1574.0, 0.005703409668058157, -1.4498656128125731e-05, 7.678559121870876e-09, -1.4498656128125731e-05, 4.917794527159458e-08, -2.930748005391948e-11, 7.678559121870876e-09, -2.930748005391948e-11, 1.8631582347360294e-14, 1575.0, 0.005699797999113798, -1.4480271602224093e-05, 7.663952139580488e-09,-1.4480271602224093e-05, 4.9084370346008654e-08, -2.923312980573911e-11, 7.663952139580488e-09, -2.923312980573911e-11, 1.857251026961878e-14, 1576.0, 0.005696190521121025, -1.4461921637121122e-05, 7.649381572605307e-09, -1.4461921637121122e-05, 4.899103345223921e-08, -2.915901547995148e-11, 7.649381572605307e-09, -2.915901547995148e-11, 1.851366180857534e-14, 1577.0, 0.005692587234079838, -1.4443606232816819e-05, 7.634848309123754e-09, -1.4443606232816819e-05, 4.889793103757256e-08, -2.9085137076556578e-11, 7.634848309123754e-09, -2.9085137076556578e-11, 1.8455036964229975e-14, 1578.0, 0.005688989069312811, -1.4425326298805885e-05, 7.620352349135828e-09, -1.4425326298805885e-05, 4.8805063102008717e-08, -2.9011492860830934e-11, 7.620352349135828e-09, -2.9011492860830934e-11, 1.839663404251679e-14, 1579.0, 0.00568539509549737, -1.4407080925593618e-05, 7.60589191628469e-09, -1.4407080925593618e-05, 4.871243319826135e-08, -2.8938081098051072e-11, 7.60589191628469e-09, -2.8938081098051072e-11, 1.8338454737501682e-14, 1580.0, 0.005681806243956089, -1.4388870113180019e-05, 7.59146878692718e-09, -1.4388870113180019e-05, 4.862003422090311e-08, -2.8864900053493514e-11, 7.59146878692718e-09, -2.8864900053493514e-11, 1.8280493966986965e-14, 1581.0, 0.005678221117705107, -1.4370693861565087e-05, 7.577082072884878e-09, -1.4370693861565087e-05, 4.8527873275361344e-08, -2.8791951461881737e-11, 7.577082072884878e-09, -2.8791951461881737e-11, 1.8222755119104428e-14, 1582.0, 0.005674641113728285, -1.4352552170748822e-05, 7.562731774157783e-09, -1.4352552170748822e-05, 4.8435939703495023e-08, -2.8719233588492266e-11, 7.562731774157783e-09, -2.8719233588492266e-11, 1.8165233111656388e-14, 1583.0, 0.005671065300703049, -1.4334444131236523e-05, 7.548417002567476e-09, -1.4334444131236523e-05, 4.834424416344518e-08, -2.8646744698601623e-11,7.548417002567476e-09, -2.8646744698601623e-11, 1.810792963870874e-14, 1584.0, 0.005667494144290686, -1.4316370652522892e-05, 7.534138646292377e-09, -1.4316370652522892e-05, 4.8252775997070785e-08, -2.857448479220981e-11, 7.534138646292377e-09, -2.857448479220981e-11, 1.805084300619559e-14, 1585.0, 0.005663927644491196, -1.4298331734607928e-05, 7.519896705332485e-09, -1.4298331734607928e-05, 4.816153875708551e-08, -2.8502452134593348e-11, 7.519896705332485e-09,-2.8502452134593348e-11, 1.799397152005104e-14, 1586.0, 0.0056603653356432915, -1.4280326467996929e-05, 7.505690291509381e-09, -1.4280326467996929e-05, 4.8070532443489356e-08, -2.8430644991028764e-11, 7.505690291509381e-09, -2.8430644991028764e-11, 1.7937315180275096e-14, 1587.0, 0.00565680768340826, -1.4262355762184598e-05, 7.491519404823066e-09, -1.4262355762184598e-05, 4.7979753503568645e-08, -2.8359065096239533e-11, 7.491519404823066e-09, -2.8359065096239533e-11, 1.7880873986867753e-14, 1588.0, 0.005653254222124815, -1.424441779818153e-05, 7.477384933451958e-09, -1.424441779818153e-05, 4.788920549003706e-08, -2.828771071550218e-11, 7.477384933451958e-09, -2.828771071550218e-11, 1.7824644551697223e-14, 1589.0, 0.005649705417454243, -1.422651439497713e-05, 7.463285101039219e-09, -1.422651439497713e-05, 4.779888485018091e-08, -2.8216580114093226e-11, 7.463285101039219e-09, -2.8216580114093226e-11, 1.7768626874763507e-14, 1590.0, 0.0056461612693965435, -1.4208644643076696e-05, 7.449221683941687e-09, -1.4208644643076696e-05, 4.770878803128653e-08, -2.8145673292012674e-11, 7.449221683941687e-09, -2.8145673292012674e-11, 1.7712820956066605e-14, 1591.0, 0.00564262131229043, -1.4190809451974928e-05, 7.4351929058025235e-09, -1.4190809451974928e-05, 4.761892213878127e-08, -2.8074988514537047e-11, 7.4351929058025235e-09, -2.8074988514537047e-11, 1.7657225101540622e-14, 1592.0, 0.00563908601179719, -1.4173006093187723e-05, 7.421199210710938e-09, -1.4173006093187723e-05, 4.75292765145241e-08, -2.8004525781666345e-11, 7.421199210710938e-09, -2.8004525781666345e-11, 1.7601839311185558e-14, 1593.0, 0.005635554902255535, -1.4155237295199186e-05, 7.407241042756141e-09, -1.4155237295199186e-05, 4.743985826394237e-08, -2.7934283358677092e-11, 7.407241042756141e-09, -2.7934283358677092e-11, 1.7546660196869623e-14, 1594.0, 0.005632028449326754, -1.4137502148514614e-05, 7.393317513759712e-09, -1.4137502148514614e-05, 4.735066738703608e-08, -2.7864262980292764e-11, 7.393317513759712e-09, -2.7864262980292764e-11, 1.7491689452658714e-14, 1595.0, 0.005628506187349558, -1.4119799743639305e-05, 7.379429067810861e-09, -1.4119799743639305e-05, 4.726169677837788e-08, -2.7794459442342934e-11, 7.379429067810861e-09, -2.7794459442342934e-11, 1.7436925384486934e-14, 1596.0, 0.005624988116323948, -1.4102130990067963e-05, 7.365575260820378e-09, -1.4102130990067963e-05, 4.7172949990681445e-08, -2.7724876214274552e-11, 7.365575260820378e-09, -2.7724876214274552e-11, 1.7382367992354285e-14, 1597.0, 0.005621474701911211, -1.4084494978305884e-05, 7.351756092788264e-09, -1.4084494978305884e-05, 4.7084423471233094e-08, -2.7655509826640667e-11, 7.351756092788264e-09, -2.7655509826640667e-11, 1.7328013888128976e-14, 1598.0, 0.005617965944111347, -1.4066891708353069e-05,7.337971563714518e-09, -1.4066891708353069e-05, 4.699612077274651e-08, -2.758636027944128e-11, 7.337971563714518e-09, -2.758636027944128e-11, 1.727386307181101e-14, 1599.0, 0.005614461377263069, -1.404932208970422e-05, 7.3242216735991406e-09, -1.404932208970422e-05, 4.690803478979433e-08, -2.7517425837952914e-11, 7.3242216735991406e-09, -2.7517425837952914e-11, 1.7219915543400383e-14, 1600.0, 0.005610961001366377, -1.4031785212864634e-05, 7.310505978352921e-09,-1.4031785212864634e-05, 4.682017262780391e-08, -2.7448708236899044e-11, 7.310505978352921e-09, -2.7448708236899044e-11, 1.7166171302897097e-14, 1601.0, 0.00560746481642127, -1.4014281077834312e-05, 7.296824477975861e-09, -1.4014281077834312e-05, 4.6732527181347905e-08, -2.738020400683272e-11, 7.296824477975861e-09, -2.738020400683272e-11, 1.7112626962169364e-14, 1602.0, 0.005603973288089037, -1.3996809684613254e-05, 7.2831767283787485e-09, -1.3996809684613254e-05, 4.664510200313998e-08, -2.731191314775394e-11, 7.2831767283787485e-09, -2.731191314775394e-11, 1.7059284215283077e-14, 1603.0, 0.005600486416369677, -1.3979370123706758e-05, 7.269563617740005e-09, -1.3979370123706758e-05, 4.6557893540466466e-08, -2.7243835659662707e-11, 7.269563617740005e-09, -2.7243835659662707e-11, 1.7006139674106448e-14, 1604.0, 0.005597003269940615, -1.3961964214104228e-05, 7.255983813792e-09, -1.3961964214104228e-05, 4.6470905346041036e-08, -2.7175969807835543e-11, 7.255983813792e-09, -2.7175969807835543e-11, 1.6953193338639476e-14, 1605.0, 0.005593524780124426, -1.394459013681626e-05, 7.242438204713153e-09, -1.394459013681626e-05, 4.6384130314436334e-08, -2.7108315592272447e-11, 7.242438204713153e-09, -2.7108315592272447e-11, 1.6900445208882162e-14, 1606.0, 0.005590050481259823, -1.3927249710832257e-05, 7.228926346414255e-09, -1.3927249710832257e-05, 4.629757199836604e-08, -2.7040871278249945e-11, 7.228926346414255e-09, -2.7040871278249945e-11, 1.6847895284834505e-14, 1607.0, 0.005586580839008093, -1.3909940207668114e-05, 7.215447794806096e-09, -1.3909940207668114e-05, 4.621123039783015e-08, -2.6973636865768036e-11, 7.215447794806096e-09, -2.6973636865768036e-11, 1.6795540178364717e-14, 1608.0, 0.005583114922046661, -1.3892663446313236e-05, 7.202002993977885e-09, -1.3892663446313236e-05, 4.612510196011499e-08, -2.6906610620103244e-11,7.202002993977885e-09, -2.6906610620103244e-11, 1.6743379889472797e-14, 1609.0, 0.005579653661698103, -1.387541851727292e-05, 7.188591499840413e-09, -1.387541851727292e-05, 4.6039190237934235e-08, -2.683979254125557e-11, 7.188591499840413e-09, -2.683979254125557e-11, 1.6691414418158745e-14, 1610.0, 0.00557619659230113, -1.3858206330041867e-05, 7.17521286830447e-09, -1.3858206330041867e-05, 4.595348812586053e-08, -2.6773182629225012e-11, 7.17521286830447e-09,-2.6773182629225012e-11, 1.6639642070356668e-14, 1611.0, 0.005572744179517031, -1.3841025975125376e-05, 7.161867987548476e-09, -1.3841025975125376e-05, 4.5867999176607555e-08, -2.6706779149288096e-11, 7.161867987548476e-09, -2.6706779149288096e-11, 1.658806115200067e-14, 1612.0, 0.00556929549202323, -1.3823877452523448e-05, 7.14855596939401e-09, -1.3823877452523448e-05, 4.5782723390175306e-08, -2.6640580366721345e-11, 7.14855596939401e-09, -2.6640580366721345e-11, 1.6536673357156646e-14, 1613.0, 0.0055658514611423016, -1.3806760762236081e-05, 7.135276813841074e-09, -1.3806760762236081e-05, 4.569765721385011e-08, -2.6574588016248235e-11, 7.135276813841074e-09, -2.6574588016248235e-11, 1.6485476991758702e-14, 1614.0, 0.005562411155551672, -1.3789675904263277e-05, 7.122030520889666e-09, -1.3789675904263277e-05, 4.5612804200345636e-08, -2.6508798628421815e-11, 7.122030520889666e-09, -2.6508798628421815e-11, 1.6434468667675048e-14, 1615.0, 0.0055589755065739155, -1.3772622878605034e-05, 7.108817090539787e-09, -1.3772622878605034e-05, 4.5528160796948214e-08, -2.644321393796556e-11, 7.108817090539787e-09, -2.644321393796556e-11, 1.6383651773037473e-14, 1616.0, 0.005555544048547745, -1.3755600775766652e-05, 7.0956365227914375e-09, -1.3755600775766652e-05, 4.544372345094416e-08, -2.6377830475432518e-11, 7.0956365227914375e-09, -2.6377830475432518e-11, 1.633302291971419e-14, 1617.0, 0.005552117247134447, -1.3738610505242832e-05, 7.082488373555407e-09, -1.3738610505242832e-05, 4.535949571504716e-08, -2.6312649975546165e-11, 7.082488373555407e-09, -2.6312649975546165e-11, 1.62825804136393e-14, 1618.0, 0.005548694171011448, -1.3721652067033574e-05, 7.069372642831695e-09, -1.3721652067033574e-05, 4.527547758925721e-08, -2.6247670703583026e-11, 7.069372642831695e-09, -2.6247670703583026e-11, 1.6232325948878704e-14, 1619.0, 0.0055452752858400345, -1.3704725461138878e-05, 7.056289330620302e-09, -1.3704725461138878e-05, 4.51916690735743e-08, -2.6182890924819624e-11, 7.056289330620302e-09, -2.6182890924819624e-11, 1.6182256137300607e-14, 1620.0, 0.005541860591620207, -1.368782886856934e-05, 7.043237992832019e-09, -1.368782886856934e-05, 4.510806306257109e-08, -2.6118312373979435e-11, 7.043237992832019e-09, -2.6118312373979435e-11, 1.6132372672970907e-14, 1621.0, 0.005538450554013252, -1.3670964108314365e-05, 7.030219073556054e-09, -1.3670964108314365e-05, 4.502466310896125e-08, -2.6053931581615508e-11, 7.030219073556054e-09, -2.6053931581615508e-11, 1.6082673861823708e-14, 1622.0, 0.005535044241696596, -1.3654131180373952e-05, 7.017232572792409e-09, -1.3654131180373952e-05, 4.494147276545846e-08, -2.5989750282451318e-11, 7.017232572792409e-09, -2.5989750282451318e-11, 1.6033158009793116e-14, 1623.0, 0.005531642120331526, -1.3637328265758697e-05,7.004277602362663e-09, -1.3637328265758697e-05, 4.4858484926635356e-08, -2.5925765007039914e-11, 7.004277602362663e-09, -2.5925765007039914e-11, 1.598382511687913e-14, 1624.0, 0.005528244189918041, -1.3620557183458004e-05, 6.991354606356026e-09, -1.3620557183458004e-05, 4.4775699592491947e-08, -2.586197749010477e-11, 6.991354606356026e-09, -2.586197749010477e-11, 1.5934675183081753e-14, 1625.0, 0.00552485091611743, -1.360381611448247e-05, 6.978463140683289e-09,-1.360381611448247e-05, 4.469312031574191e-08, -2.5798385996922413e-11, 6.978463140683289e-09, -2.5798385996922413e-11, 1.5885704820269193e-14, 1626.0, 0.005521461367607117, -1.3587106877821498e-05, 6.96560364943366e-09, -1.3587106877821498e-05, 4.461074354367156e-08, -2.5734988792769364e-11, 6.96560364943366e-09, -2.5734988792769364e-11, 1.5836915722507346e-14, 1627.0, 0.0055180760100483894, -1.3570427654485684e-05, 6.9527756885179315e-09, -1.3570427654485684e-05, 4.4528565723567226e-08, -2.56717876123691e-11, 6.9527756885179315e-09, -2.56717876123691e-11, 1.5788306195730316e-14, 1628.0, 0.005514694843441248, -1.355377935396973e-05, 6.939979257936102e-09, -1.355377935396973e-05, 4.444659396085626e-08, -2.5608778986274672e-11, 6.939979257936102e-09, -2.5608778986274672e-11, 1.5739876239938104e-14, 1629.0, 0.005511317867785692, -1.3537161976273637e-05, 6.927213913598962e-09, -1.3537161976273637e-05, 4.436482115011131e-08, -2.554596464920955e-11, 6.927213913598962e-09, -2.554596464920955e-11, 1.5691624161064816e-14, 1630.0, 0.005507945083081722, -1.3520574611902703e-05, 6.914480099595721e-09, -1.3520574611902703e-05, 4.428325084404605e-08, -2.5483342866450265e-11, 6.914480099595721e-09, -2.5483342866450265e-11, 1.564354995911045e-14, 1631.0, 0.005504576023668051, -1.3504018170351628e-05, 6.90177737183717e-09, -1.3504018170351628e-05, 4.4201879489946805e-08, -2.5420911903273335e-11, 6.90177737183717e-09, -2.5420911903273335e-11, 1.5595651940009114e-14, 1632.0, 0.005501211620867252, -1.3487491742125712e-05, 6.889105730323308e-09, -1.3487491742125712e-05, 4.412070708781357e-08, -2.5358671759678764e-11, 6.889105730323308e-09, -2.5358671759678764e-11, 1.5547928409694912e-14, 1633.0, 0.005497850943356752, -1.3470995327224955e-05, 6.876465175054136e-09, -1.3470995327224955e-05, 4.403973008493267e-08, -2.529662243566655e-11,6.876465175054136e-09, -2.529662243566655e-11, 1.550038106223374e-14, 1634.0, 0.005494494456797838, -1.3454529835144058e-05, 6.8638557060296534e-09, -1.3454529835144058e-05, 4.395895558673146e-08, -2.5234763931236692e-11, 6.8638557060296534e-09, -2.5234763931236692e-11, 1.54530082035597e-14, 1635.0, 0.00549114216119051, -1.343809435638832e-05, 6.8512768791606504e-09, -1.343809435638832e-05, 4.387837648778259e-08, -2.517309277694224e-11, 6.8512768791606504e-09,-2.517309277694224e-11, 1.5405809833672797e-14, 1636.0, 0.005487794056534767, -1.342168889095774e-05, 6.838728694447127e-09, -1.342168889095774e-05, 4.379799634079973e-08, -2.511161070750667e-11, 6.838728694447127e-09, -2.511161070750667e-11, 1.5358784258507133e-14, 1637.0, 0.005484449677169323, -1.3405313438852318e-05, 6.826211151889083e-09, -1.3405313438852318e-05, 4.371780804035552e-08, -2.5050315988206506e-11, 6.826211151889083e-09, -2.5050315988206506e-11, 1.5311929783996814e-14, 1638.0, 0.0054811094887554646, -1.3388968000072055e-05, 6.813724251486519e-09, -1.3388968000072055e-05, 4.363781869187733e-08, -2.4989208619041747e-11, 6.813724251486519e-09, -2.4989208619041747e-11, 1.526524641014184e-14, 1639.0, 0.005477773491293192, -1.337265257461695e-05, 6.801267549150225e-09, -1.337265257461695e-05, 4.355802474265147e-08, -2.4928286865288918e-11, 6.801267549150225e-09, -2.4928286865288918e-11, 1.5218734136942212e-14, 1640.0, 0.005474441684782505, -1.3356367162487004e-05, 6.7888414889694104e-09, -1.3356367162487004e-05, 4.3478422639964265e-08, -2.4867550726948018e-11, 6.7888414889694104e-09, -2.4867550726948018e-11, 1.517239296439793e-14, 1641.0, 0.005471113603562117, -1.3340110854187515e-05, 6.776445626854866e-09, -1.3340110854187515e-05, 4.3399015936529395e-08, -2.4807000204019047e-11, 6.776445626854866e-09, -2.4807000204019047e-11, 1.5126219504377203e-14, 1642.0, 0.005467789713293314, -1.3323884559213184e-05, 6.764079962806591e-09, -1.3323884559213184e-05, 4.331980463234686e-08, -2.474663356177853e-11, 6.764079962806591e-09, -2.474663356177853e-11, 1.5080215450945927e-14, 1643.0, 0.005464470013976097, -1.330768736806931e-05, 6.751744052735376e-09, -1.330768736806931e-05, 4.32407816219893e-08, -2.4686450800226467e-11, 6.751744052735376e-09, -2.4686450800226467e-11, 1.5034379110038208e-14, 1644.0, 0.005461154505610466, -1.3291520190250594e-05, 6.73943834073043e-09, -1.3291520190250594e-05, 4.3161954010884074e-08, -2.462645018463938e-11, 6.73943834073043e-09, -2.462645018463938e-11, 1.498870878758815e-14, 1645.0, 0.005457842722535133, -1.3275383025757037e-05, 6.727162382702545e-09, -1.3275383025757037e-05, 4.3083318246317504e-08, -2.4566631715017273e-11, 6.727162382702545e-09, -2.4566631715017273e-11, 1.494320617766165e-14, 1646.0, 0.005454534664750099, -1.3259274055599235e-05, 6.71491662274093e-09, -1.3259274055599235e-05, 4.300487077557591e-08, -2.4506995391360142e-11, 6.71491662274093e-09, -2.4506995391360142e-11, 1.489786958619281e-14, 1647.0, 0.005451230797916651, -1.3243195098766591e-05, 6.702700172667164e-09, -1.3243195098766591e-05, 4.292661515137297e-08, -2.4447537744221037e-11, 6.702700172667164e-09, -2.4447537744221037e-11, 1.485269731911574e-14, 1648.0, 0.005447931122034788, -1.3227145245764405e-05,6.690513476570459e-09, -1.3227145245764405e-05, 4.284854782099501e-08, -2.438826224304691e-11, 6.690513476570459e-09, -2.438826224304691e-11, 1.480768768236454e-14, 1649.0, 0.005444635637104511, -1.3211124496592674e-05, 6.6783560903616035e-09, -1.3211124496592674e-05, 4.27706723371557e-08, -2.4329167153114284e-11, 6.6783560903616035e-09, -2.4329167153114284e-11, 1.4762844064071003e-14, 1650.0, 0.005441343877464533, -1.3195132851251401e-05, 6.666228458129808e-09,-1.3195132851251401e-05, 4.269298514714137e-08, -2.4270249004976208e-11, 6.666228458129808e-09, -2.4270249004976208e-11, 1.4718161382037444e-14, 1651.0, 0.005438055843114853, -1.3179170309740584e-05, 6.654130135785863e-09, -1.3179170309740584e-05, 4.261548269823834e-08, -2.4211509533356157e-11, 6.654130135785863e-09, -2.4211509533356157e-11, 1.4673643024395652e-14, 1652.0, 0.005434771999716759, -1.3163235962565523e-05, 6.642060679240558e-09, -1.3163235962565523e-05, 4.253817209587396e-08, -2.4152948738254132e-11, 6.642060679240558e-09, -2.4152948738254132e-11, 1.4629283908947945e-14, 1653.0, 0.00543149234727025, -1.314733162871562e-05, 6.630020976672313e-09, -1.314733162871562e-05, 4.24610426819072e-08, -2.4094564884946656e-11, 6.630020976672313e-09, -2.4094564884946656e-11, 1.458508742382611e-14, 1654.0, 0.00542821642011404, -1.3131455489201471e-05, 6.618010139902708e-09, -1.3131455489201471e-05, 4.23841051144791e-08, -2.4036356238710255e-11, 6.618010139902708e-09, -2.4036356238710255e-11, 1.454105018089836e-14, 1655.0, 0.005424944218248129, -1.311560845351778e-05, 6.6060281689317435e-09, -1.311560845351778e-05, 4.230735228816229e-08, -2.3978322799544927e-11, 6.6060281689317435e-09, -2.3978322799544927e-11, 1.449717218016469e-14, 1656.0, 0.005421676207333803, -1.3099789612169843e-05, 6.594075063759419e-09, -1.3099789612169843e-05, 4.2230780650243105e-08, -2.3920466302174148e-11, 6.594075063759419e-09, -2.3920466302174148e-11, 1.4453453421625108e-14, 1657.0, 0.005418411921709776, -1.3083999874652363e-05, 6.582150824385735e-09, -1.3083999874652363e-05, 4.2154397306148894e-08, -2.3862783277150967e-11, 6.582150824385735e-09, -2.3862783277150967e-11, 1.4409892211213714e-14, 1658.0, 0.0054151518270373344, -1.3068238331470639e-05, 6.570255450810691e-09, -1.3068238331470639e-05, 4.207819870316598e-08, -2.3805273724475384e-11,6.570255450810691e-09, -2.3805273724475384e-11, 1.4366490242996403e-14, 1659.0, 0.005411895923316479, -1.3052504982624669e-05, 6.558388498945078e-09, -1.3052504982624669e-05, 4.2002181288580687e-08, -2.37479376441474e-11, 6.558388498945078e-09, -2.37479376441474e-11, 1.4323242434775493e-14, 1660.0, 0.005408643279224634, -1.3036800737609155e-05, 6.546550412878105e-09, -1.3036800737609155e-05, 4.192634861510669e-08, -2.3690773301443535e-11, 6.546550412878105e-09,-2.3690773301443535e-11, 1.4280152174682773e-14, 1661.0, 0.005405394826084375, -1.3021123777434696e-05, 6.534740748520562e-09, -1.3021123777434696e-05, 4.185069713003031e-08, -2.363378243108727e-11, 6.534740748520562e-09, -2.363378243108727e-11, 1.4237217768652347e-14, 1662.0, 0.005402150563895702, -1.3005475921090692e-05, 6.52295906178324e-09, -1.3005475921090692e-05, 4.177522683335155e-08, -2.357696156363165e-11, 6.52295906178324e-09, -2.357696156363165e-11, 1.4194437522618321e-14, 1663.0, 0.005398910026997328, -1.2989856259082444e-05, 6.511206240844558e-09, -1.2989856259082444e-05, 4.169994127778409e-08, -2.3520310699076674e-11, 6.511206240844558e-09, -2.3520310699076674e-11, 1.4151811436580695e-14, 1664.0, 0.005395673215389252, -1.297426479140995e-05, 6.499481397526097e-09, -1.297426479140995e-05, 4.162483335790057e-08, -2.346383157214582e-11, 6.499481397526097e-09, -2.346383157214582e-11, 1.410933951053947e-14, 1665.0, 0.005392440129071474, -1.295870060857851e-05, 6.487784531827856e-09, -1.295870060857851e-05, 4.154990662641467e-08, -2.3407520713392138e-11, 6.487784531827856e-09, -2.3407520713392138e-11, 1.4067020050428751e-14, 1666.0, 0.005389211233705282, -1.2943165529577527e-05, 6.4761160878390456e-09, -1.2943165529577527e-05, 4.1475161083326384e-08, -2.33513798575391e-11, 6.4761160878390456e-09, -2.33513798575391e-11, 1.402485220921559e-14, 1667.0, 0.005385986063629389, -1.2927657735417597e-05, 6.464475177381246e-09, -1.2927657735417597e-05, 4.140059317592204e-08, -2.3295405535139757e-11, 6.464475177381246e-09, -2.3295405535139757e-11, 1.3982836833932935e-14, 1668.0, 0.005382764618843794, -1.291217722609872e-05, 6.452862244543667e-09, -1.291217722609872e-05, 4.1326202904201637e-08, -2.3239599480917583e-11, 6.452862244543667e-09, -2.3239599480917583e-11, 1.3940972230514891e-14, 1669.0, 0.005379547365009785, -1.28967258206103e-05, 6.441277289326308e-09, -1.28967258206103e-05, 4.125199382087885e-08, -2.318396169487258e-11, 6.441277289326308e-09, -2.318396169487258e-11, 1.3899257551928512e-14, 1670.0, 0.005376333836466074, -1.288130079046823e-05, 6.42971986763996e-09, -1.288130079046823e-05, 4.117795882052633e-08, -2.3128488707557793e-11, 6.42971986763996e-09, -2.3128488707557793e-11, 1.3857692798173796e-14, 1671.0, 0.005373124033212662, -1.2865903954661917e-05, 6.418190423573833e-09, -1.2865903954661917e-05, 4.1104101455857744e-08, -2.30731822536967e-11, 6.418190423573833e-09, -2.30731822536967e-11, 1.3816277122217797e-14, 1672.0, 0.005369917955249548, -1.2850535313191358e-05, 6.4066880689495065e-09, -1.2850535313191358e-05, 4.10304217268731e-08, -2.3018040598565825e-11, 6.4066880689495065e-09, -2.3018040598565825e-11, 1.3775009677027567e-14, 1673.0, 0.00536671606823802, -1.2835193956561852e-05,6.3952136919454006e-09, -1.2835193956561852e-05, 4.09569196335724e-08, -2.2963065476888644e-11, 6.3952136919454006e-09, -2.2963065476888644e-11, 1.3733890462603107e-14, 1674.0, 0.00536351790651679, -1.2819878975278698e-05, 6.3837664043830955e-09, -1.2819878975278698e-05, 4.0883591623241955e-08, -2.290825168449473e-11, 6.3837664043830955e-09, -2.290825168449473e-11, 1.3692917784878522e-14, 1675.0, 0.005360323470085859, -1.2804592188331299e-05, 6.372346206262591e-09,-1.2804592188331299e-05, 4.0810437695881774e-08, -2.2853602690831032e-11, 6.372346206262591e-09, -2.2853602690831032e-11, 1.365209249088676e-14, 1676.0, 0.005357132758945227, -1.2789332686224952e-05, 6.360953541673098e-09, -1.2789332686224952e-05, 4.0737457851491854e-08, -2.2799116761174076e-11, 6.360953541673098e-09, -2.2799116761174076e-11, 1.3611412886561924e-14, 1677.0, 0.0053539457730948925, -1.2774101378454361e-05, 6.349587966525405e-09, -1.2774101378454361e-05, 4.0664652090072195e-08, -2.2744792160800387e-11, 6.349587966525405e-09, -2.2744792160800387e-11, 1.3570878971904017e-14, 1678.0, 0.005350762978196144, -1.275889553653542e-05, 6.338249480819513e-09, -1.275889553653542e-05, 4.05920204116228e-08, -2.269063062443344e-11, 6.338249480819513e-09, -2.269063062443344e-11, 1.3530489052847143e-14, 1679.0, 0.005347583442926407, -1.2743717888952233e-05, 6.3269376404662125e-09, -1.2743717888952233e-05, 4.051956281614366e-08, -2.263662868262628e-11, 6.3269376404662125e-09, -2.263662868262628e-11, 1.349024397642425e-14, 1680.0, 0.005344408098608255, -1.27285675262101e-05, 6.315652889554713e-09, -1.27285675262101e-05, 4.044727575092111e-08, -2.258278807010239e-11, 6.315652889554713e-09, -2.258278807010239e-11, 1.3450142048569442e-14, 1681.0, 0.005341236013919115, -1.2713443538814317e-05, 6.3043952280850135e-09, -1.2713443538814317e-05, 4.0375162768668815e-08, -2.2529107052138286e-11, 6.3043952280850135e-09, -2.2529107052138286e-11, 1.341018326928272e-14, 1682.0, 0.0053380681201815605, -1.2698346836259589e-05, 6.2931642119679054e-09, -1.2698346836259589e-05, 4.0303220316673105e-08, -2.2475585628733974e-11, 6.2931642119679054e-09, -2.2475585628733974e-11, 1.3370366791531137e-14, 1683.0, 0.005334903951734304, -1.2683276509051211e-05, 6.281959841203388e-09, -1.2683276509051211e-05, 4.02314448422203e-08, -2.242222379988945e-11,6.281959841203388e-09, -2.242222379988945e-11, 1.3330691768281746e-14, 1684.0, 0.005331743508577347, -1.2668233466683887e-05, 6.2707816717022524e-09, -1.2668233466683887e-05, 4.015984345073775e-08, -2.2369019830881243e-11, 6.2707816717022524e-09, -2.2369019830881243e-11, 1.3291158199534546e-14, 1685.0, 0.005328586790710688, -1.2653216799662914e-05, 6.259630591642917e-09, -1.2653216799662914e-05, 4.008841258951179e-08, -2.2315973721709348e-11, 6.259630591642917e-09,-2.2315973721709348e-11, 1.325176523825659e-14, 1686.0, 0.005325433798134327, -1.2638227417482994e-05, 6.2485057128469634e-09, -1.2638227417482994e-05, 4.001714870582873e-08, -2.226308373765029e-11, 6.2485057128469634e-09, -2.226308373765029e-11, 1.3212512884447879e-14, 1687.0, 0.005322284530848265, -1.2623264410649426e-05, 6.237407035314391e-09, -1.2623264410649426e-05, 3.9946055352402254e-08, -2.2210351613427548e-11, 6.237407035314391e-09, -2.2210351613427548e-11, 1.3173399444042517e-14, 1688.0, 0.005319138988852501, -1.260832777916221e-05, 6.226334559045199e-09, -1.260832777916221e-05, 3.987512897651868e-08, -2.2157773879594167e-11, 6.226334559045199e-09, -2.2157773879594167e-11, 1.3134424917040505e-14, 1689.0, 0.005315997172147036, -1.2593417523021344e-05, 6.2152887281285984e-09, -1.2593417523021344e-05, 3.980436957817801e-08, -2.21053540055971e-11, 6.2152887281285984e-09, -2.21053540055971e-11, 1.3095588456408895e-14, 1690.0, 0.005312859080731869, -1.257853364222683e-05, 6.204268654386169e-09, -1.257853364222683e-05, 3.9733780710093924e-08, -2.205308678726592e-11, 6.204268654386169e-09, -2.205308678726592e-11, 1.3056890062147688e-14, 1691.0, 0.005309724714607, -1.256367704627337e-05, 6.193274337817911e-09, -1.256367704627337e-05, 3.966335526683906e-08, -2.2000975694047575e-11, 6.193274337817911e-09, -2.2000975694047575e-11, 1.3018328887223936e-14, 1692.0, 0.00530659407377243, -1.2548845916171558e-05, 6.182306666602244e-09, -1.2548845916171558e-05, 3.9593096801127103e-08, -2.1949017256495118e-11, 6.182306666602244e-09, -2.1949017256495118e-11, 1.2979904084604692e-14, 1693.0, 0.005303466692566872, -1.2534041161416098e-05, 6.171364308471539e-09, -1.2534041161416098e-05, 3.952300531295805e-08, -2.1897213209332023e-11, 6.171364308471539e-09, -2.1897213209332023e-11, 1.2941614807257008e-14, 1694.0, 0.005300343502312899, -1.251926278200699e-05, 6.160448151604214e-09, -1.251926278200699e-05, 3.94530808023319e-08, -2.1845560083111337e-11, 6.160448151604214e-09, -2.1845560083111337e-11, 1.2903461902213833e-14, 1695.0, 0.005297224037349224, -1.2504509868449531e-05, 6.149557307821851e-09, -1.2504509868449531e-05, 3.938331616382129e-08, -2.1794061347280014e-11, 6.149557307821851e-09, -2.1794061347280014e-11, 1.2865442828376324e-14, 1696.0, 0.005294107832014561, -1.2489783330238424e-05, 6.1386926653028695e-09, -1.2489783330238424e-05, 3.931372205556727e-08, -2.1742711797667624e-11, 6.1386926653028695e-09, -2.1742711797667624e-11, 1.2827559279810375e-14, 1697.0, 0.005290995351970196, -1.2475083167373668e-05, 6.127853335868849e-09, -1.2475083167373668e-05, 3.924428781942879e-08, -2.169151490372112e-11, 6.127853335868849e-09, -2.169151490372112e-11, 1.2789808715417145e-14, 1698.0, 0.005287887062877417, -1.2460409379855264e-05,6.11703931951979e-09, -1.2460409379855264e-05, 3.917501700811954e-08, -2.1640468930717027e-11, 6.11703931951979e-09, -2.1640468930717027e-11, 1.2752191982229582e-14, 1699.0, 0.005284781567752361, -1.2445760148693807e-05, 6.106251060344903e-09, -1.2445760148693807e-05, 3.910590962163951e-08, -2.1589572143931868e-11, 6.106251060344903e-09, -2.1589572143931868e-11, 1.271470738618179e-14, 1700.0, 0.005281680263578892, -1.2431138202373404e-05, 6.095487670165767e-09,-1.2431138202373404e-05, 3.903696565998871e-08, -2.1538826278089118e-11, 6.095487670165767e-09, -2.1538826278089118e-11, 1.267735492727377e-14, 1701.0, 0.005278582684695721, -1.2416540812409949e-05, 6.084750037160802e-09, -1.2416540812409949e-05, 3.896818157045345e-08, -2.1488227863741827e-11, 6.084750037160802e-09, -2.1488227863741827e-11, 1.2640134605505522e-14, 1702.0, 0.005275488365441561, -1.2401969797792844e-05, 6.074037273151589e-09, -1.2401969797792844e-05, 3.889956090574742e-08, -2.143777863561347e-11, 6.074037273151589e-09, -2.143777863561347e-11, 1.260304472681115e-14, 1703.0, 0.005272398237138987, -1.238742424902739e-05, 6.0633498222273374e-09, -1.238742424902739e-05, 3.8831103665870614e-08, -2.138747685898057e-11, 6.0633498222273374e-09, -2.138747685898057e-11, 1.2566085291190656e-14, 1704.0, 0.005269311368465424, -1.2372904166113585e-05, 6.052687684388047e-09, -1.2372904166113585e-05, 3.8762802745395675e-08, -2.1337324268566604e-11, 6.052687684388047e-09, -2.1337324268566604e-11, 1.2529256298644039e-14, 1705.0, 0.005266227759420872, -1.235840954905143e-05, 6.042049971455299e-09, -1.235840954905143e-05, 3.869466169703628e-08, -2.128731739492462e-11, 6.042049971455299e-09, -2.128731739492462e-11, 1.2492556902138352e-14, 1706.0, 0.005263148341327906, -1.2343940397840925e-05, 6.031437571607512e-09, -1.2343940397840925e-05, 3.862668407350611e-08, -2.123745623805462e-11, 6.031437571607512e-09, -2.123745623805462e-11, 1.2455986254640648e-14, 1707.0, 0.005260072182863951, -1.2329496712482069e-05, 6.0208500407554766e-09, -1.2329496712482069e-05, 3.855886276937781e-08, -2.1187742532680076e-11, 6.0208500407554766e-09, -2.1187742532680076e-11, 1.2419543509117979e-14, 1708.0, 0.005256999749690294, -1.2315078492974862e-05, 6.010286934809983e-09, -1.2315078492974862e-05, 3.8491201337365055e-08, -2.113817280935404e-11,6.010286934809983e-09, -2.113817280935404e-11, 1.2383229512603292e-14, 1709.0, 0.005253931041806936, -1.2300684829824604e-05, 5.999748697860241e-09, -1.2300684829824604e-05, 3.842369622475417e-08, -2.1088748802799984e-11, 5.999748697860241e-09, -2.1088748802799984e-11, 1.2347042571030694e-14, 1710.0, 0.005250865593552589, -1.2286317542020697e-05, 5.989235329906251e-09, -1.2286317542020697e-05, 3.8356350984258825e-08, -2.1039468778294435e-11, 5.989235329906251e-09,-2.1039468778294435e-11, 1.2310981837367237e-14, 1711.0, 0.005247803870588541, -1.2271974810573738e-05, 5.978746386858802e-09, -1.2271974810573738e-05, 3.828916206316535e-08, -2.099033273583739e-11, 5.978746386858802e-09, -2.099033273583739e-11, 1.2275048158645867e-14, 1712.0, 0.005244745872914791, -1.2257656635483727e-05, 5.968281868717895e-09, -1.2257656635483727e-05, 3.822212946147374e-08, -2.094133894070538e-11, 5.968281868717895e-09, -2.094133894070538e-11, 1.2239239840800692e-14, 1713.0, 0.005241691134870052, -1.2243364835740067e-05, 5.95784177548353e-09, -1.2243364835740067e-05, 3.8155253179184e-08, -2.089248912762187e-11, 5.95784177548353e-09, -2.089248912762187e-11, 1.220355688383171e-14, 1714.0, 0.005238640122115612, -1.2229096682858653e-05, 5.947425663066497e-09, -1.2229096682858653e-05, 3.808853321629613e-08, -2.0843781561863395e-11, 5.947425663066497e-09, -2.0843781561863395e-11, 1.2167998440705974e-14, 1715.0, 0.00523559283465147, -1.221485399582889e-05, 5.937034419645215e-09, -1.221485399582889e-05, 3.802196957281012e-08, -2.0795216243429948e-11, 5.937034419645215e-09, -2.0795216243429948e-11, 1.2132564511423485e-14, 1716.0, 0.0052325488068163395, -1.2200636774650775e-05, 5.926666712952056e-09, -1.2200636774650775e-05, 3.795556224872598e-08, -2.0746791437598056e-11, 5.926666712952056e-09, -2.0746791437598056e-11, 1.2097255095984243e-14, 1717.0, 0.005229508504271507, -1.2186443200334907e-05, 5.916323431165438e-09, -1.2186443200334907e-05, 3.788930769133003e-08, -2.0698508879091193e-11, 5.916323431165438e-09, -2.0698508879091193e-11, 1.2062067653289404e-14, 1718.0, 0.005226471461355686, -1.2172275091870688e-05, 5.906004574285362e-09, -1.2172275091870688e-05, 3.782320590062227e-08, -2.065036509846241e-11, 5.906004574285362e-09, -2.065036509846241e-11, 1.2027003877404865e-14, 1719.0, 0.005223438143730164, -1.2158131539763417e-05, 5.895709254133408e-09, -1.2158131539763417e-05, 3.7757260429316375e-08, -2.060236183043518e-11, 5.895709254133408e-09, -2.060236183043518e-11, 1.1992062074264731e-14, 1720.0, 0.005220408085733652, -1.2144012544013094e-05, 5.885437914798786e-09, -1.2144012544013094e-05, 3.769146772469867e-08, -2.0554499075009502e-11, 5.885437914798786e-09, -2.0554499075009502e-11, 1.1957241396836054e-14, 1721.0, 0.005217381753027439, -1.2129918104619719e-05, 5.8751905562814954e-09, -1.2129918104619719e-05, 3.762582423405547e-08, -2.050677336273843e-11, 5.8751905562814954e-09, -2.050677336273843e-11, 1.1922542692151782e-14, 1722.0, 0.005214359145611525, -1.2115849131077994e-05, 5.864966734492327e-09, -1.2115849131077994e-05, 3.756033706281414e-08, -2.0459186428345433e-11, 5.864966734492327e-09, -2.0459186428345433e-11, 1.188796426614602e-14, 1723.0, 0.005211339797824621, -1.2101803804398514e-05,5.854766893520491e-09, -1.2101803804398514e-05, 3.749499910554732e-08, -2.0411738271830515e-11, 5.854766893520491e-09, -2.0411738271830515e-11, 1.1853506965851714e-14, 1724.0, 0.005208324175328016, -1.2087782124581281e-05, 5.844590589276777e-09, -1.2087782124581281e-05, 3.742981391496869e-08, -2.03644271584702e-11, 5.844590589276777e-09, -2.03644271584702e-11, 1.1819168250170025e-14, 1725.0, 0.0052053118124604225, -1.2073785910615698e-05, 5.834437821761185e-09,-1.2073785910615698e-05, 3.736478149107825e-08, -2.0317253088264486e-11, 5.834437821761185e-09, -2.0317253088264486e-11, 1.1784949813166846e-14, 1726.0, 0.00520230270922184, -1.205981334351236e-05, 5.824308590973715e-09, -1.205981334351236e-05, 3.7299898281162314e-08, -2.0270216061213375e-11, 5.824308590973715e-09, -2.0270216061213375e-11, 1.1750849960776282e-14, 1727.0, 0.005199297331273556, -1.204586533276597e-05, 5.814202896914367e-09, -1.204586533276597e-05, 3.723516428522089e-08, -2.022331434259339e-11, 5.814202896914367e-09, -2.022331434259339e-11, 1.1716867845965387e-14, 1728.0, 0.00519629567861557, -1.2031941878376529e-05, 5.804120295493931e-09, -1.2031941878376529e-05, 3.7170579503253975e-08, -2.017654793240453e-11, 5.804120295493931e-09, -2.017654793240453e-11, 1.1683004315767107e-14, 1729.0, 0.0051932972855865955, -1.2018042070849333e-05, 5.794061230801617e-09, -1.2018042070849333e-05, 3.710614748797525e-08, -2.0129918565370275e-11, 5.794061230801617e-09, -2.0129918565370275e-11, 1.1649257676115549e-14, 1730.0, 0.005190302152186632, -1.2004166819679085e-05, 5.7840252587482155e-09, -1.2004166819679085e-05, 3.7041861133957354e-08, -2.0083421037320193e-11, 5.7840252587482155e-09, -2.0083421037320193e-11, 1.1615628774043658e-14, 1731.0, 0.005187310744076967, -1.1990315215371083e-05, 5.774012823422936e-09, -1.1990315215371083e-05, 3.697772399391397e-08, -2.0037060552424713e-11, 5.774012823422936e-09, -2.0037060552424713e-11, 1.1582115068452595e-14, 1732.0, 0.0051843225955963135, -1.1976487257925328e-05, 5.764023036647359e-09, -1.1976487257925328e-05, 3.691373606784509e-08, -1.9990831906513407e-11, 5.764023036647359e-09, -1.9990831906513407e-11, 1.1548718253408252e-14, 1733.0, 0.005181338172405958, -1.1962682947341818e-05, 5.754056342510694e-09, -1.1962682947341818e-05, 3.684989380303705e-08, -1.994473683430975e-11,5.754056342510694e-09, -1.994473683430975e-11, 1.1515436634844736e-14, 1734.0, 0.005178356543183327, -1.1948903193115257e-05, 5.744112741012941e-09, -1.1948903193115257e-05, 3.6786197199489834e-08, -1.989877360109027e-11, 5.744112741012941e-09, -1.989877360109027e-11, 1.1482270212762047e-14, 1735.0, 0.005175379104912281, -1.1935147085750941e-05, 5.7341922321541006e-09, -1.1935147085750941e-05, 3.672264980991713e-08, -1.9852943941578438e-11, 5.7341922321541006e-09,-1.9852943941578438e-11, 1.1449218140127237e-14, 1736.0, 0.005172404460608959, -1.1921414625248872e-05, 5.724294371844962e-09, -1.1921414625248872e-05, 3.6659248081605256e-08, -1.980724612105078e-11, 5.724294371844962e-09, -1.980724612105078e-11, 1.1416280416940306e-14, 1737.0, 0.005169433541595936, -1.190770672110375e-05, 5.7144191600855265e-09, -1.190770672110375e-05, 3.659599201455421e-08, -1.9761680139507298e-11, 5.7144191600855265e-09, -1.9761680139507298e-11, 1.1383456196168307e-14, 1738.0, 0.005166466347873211, -1.1894021554326173e-05, 5.704566596875793e-09, -1.1894021554326173e-05, 3.6532881608764e-08, -1.9716244262224514e-11, 5.704566596875793e-09, -1.9716244262224514e-11, 1.1350744630778294e-14, 1739.0, 0.00516350194811821, -1.1880360034410842e-05, 5.694736682215762e-09, -1.1880360034410842e-05, 3.646991686423462e-08, -1.9670938489202427e-11, 5.694736682215762e-09, -1.9670938489202427e-11, 1.1318146567803212e-14, 1740.0, 0.005160541273653507, -1.1866722161357757e-05, 5.684929416105433e-09, -1.1866722161357757e-05, 3.640709778096607e-08, -1.962576282044104e-11, 5.684929416105433e-09, -1.962576282044104e-11, 1.1285660313177168e-14, 1741.0, 0.005157583858817816, -1.1853107025672216e-05, 5.675144798544807e-09, -1.1853107025672216e-05, 3.634442080624467e-08, -1.958071725594035e-11, 5.675144798544807e-09, -1.958071725594035e-11, 1.1253285866900161e-14, 1742.0, 0.005154630169272423, -1.1839516446343623e-05, 5.665382385444673e-09, -1.1839516446343623e-05, 3.62818894927841e-08, -1.9535801795700358e-11, 5.665382385444673e-09, -1.9535801795700358e-11, 1.1221023228972192e-14, 1743.0, 0.005151679739356041, -1.1825948604382575e-05, 5.655642620894241e-09, -1.1825948604382575e-05, 3.621950028787069e-08, -1.949101470499759e-11, 5.655642620894241e-09, -1.949101470499759e-11, 1.1188871552360313e-14, 1744.0, 0.00514873256906867, -1.1812404409283772e-05, 5.645925060804302e-09, -1.1812404409283772e-05, 3.6157253191504424e-08, -1.9446354249108566e-11, 5.645925060804302e-09, -1.9446354249108566e-11, 1.1156829990031578e-14, 1745.0, 0.005145788658410311, -1.1798882951552514e-05, 5.6362297051748556e-09, -1.1798882951552514e-05, 3.609514820368531e-08, -1.940182389748024e-11, 5.6362297051748556e-09, -1.940182389748024e-11, 1.1124898541985985e-14, 1746.0, 0.005142848007380962, -1.1785385140683502e-05, 5.6265565540059015e-09, -1.1785385140683502e-05, 3.603318887712703e-08, -1.9357418445942187e-11, 5.6265565540059015e-09, -1.9357418445942187e-11, 1.1093077208223535e-14, 1747.0, 0.0051399110816419125, -1.1771910067182034e-05, 5.61690560729744e-09, -1.1771910067182034e-05, 3.5971368106402224e-08, -1.9313141363941355e-11, 5.61690560729744e-09, -1.9313141363941355e-11, 1.1061364294678334e-14, 1748.0, 0.005136977415531874, -1.1758458640542813e-05,5.607276420960261e-09, -1.1758458640542813e-05, 3.590968944422457e-08, -1.926899091675427e-11, 5.607276420960261e-09, -1.926899091675427e-11, 1.102976064838333e-14, 1749.0, 0.005134047009050846, -1.1745029951271135e-05, 5.597669439083575e-09, -1.1745029951271135e-05, 3.5848152890594065e-08, -1.922496710438093e-11, 5.597669439083575e-09, -1.922496710438093e-11, 1.0998264575272625e-14, 1750.0, 0.00513111986219883, -1.1731623999367002e-05, 5.588084217578171e-09,-1.1731623999367002e-05, 3.5786754892797035e-08, -1.918106819209786e-11, 5.588084217578171e-09, -1.918106819209786e-11, 1.096687692237917e-14, 1751.0, 0.005128196440637112, -1.1718241694325116e-05, 5.57852120053326e-09, -1.1718241694325116e-05, 3.5725499003547156e-08, -1.9137294179905062e-11, 5.57852120053326e-09, -1.9137294179905062e-11, 1.0935596842670016e-14, 1752.0, 0.0051252758130431175, -1.1704882126650773e-05, 5.568979943859631e-09, -1.1704882126650773e-05, 3.566438167013075e-08, -1.9093645067802534e-11, 5.568979943859631e-09, -1.9093645067802534e-11, 1.0904423489112216e-14, 1753.0, 0.005122358910739422, -1.1691545296343975e-05, 5.559460447557285e-09, -1.1691545296343975e-05, 3.560340289254782e-08, -1.9050120855790276e-11, 5.559460447557285e-09, -1.9050120855790276e-11, 1.087335686170577e-14, 1754.0, 0.005119445268064737, -1.1678230293910019e-05, 5.549962267537012e-09, -1.1678230293910019e-05, 3.554256622351204e-08, -1.9006719809144812e-11, 5.549962267537012e-09, -1.9006719809144812e-11, 1.084239611341773e-14, 1755.0, 0.005116534419357777, -1.166493893833831e-05, 5.5404858478880215e-09, -1.166493893833831e-05, 3.5481864557596055e-08, -1.896344366258962e-11, 5.5404858478880215e-09, -1.896344366258962e-11, 1.0811541244248098e-14, 1756.0, 0.005113627761602402, -1.1651670320134144e-05, 5.531031188610314e-09, -1.1651670320134144e-05, 3.542130144751354e-08, -1.8920288946677744e-11, 5.531031188610314e-09, -1.8920288946677744e-11, 1.0780791407163925e-14, 1757.0, 0.005110723897814751, -1.1638424439297523e-05, 5.521597845614679e-09, -1.1638424439297523e-05, 3.5360876893264503e-08, -1.8877257396132663e-11, 5.521597845614679e-09, -1.8877257396132663e-11, 1.0750146602165212e-14, 1758.0, 0.005107823293656111, -1.1625200386333745e-05, 5.512186262990326e-09, -1.1625200386333745e-05, 3.530059089484894e-08, -1.8834349010954377e-11,5.512186262990326e-09, -1.8834349010954377e-11, 1.0719606829251958e-14, 1759.0, 0.005104925949126482, -1.1611999980232213e-05, 5.502795552558837e-09, -1.1611999980232213e-05, 3.5240439899553166e-08, -1.879156205641941e-11, 5.502795552558837e-09, -1.879156205641941e-11, 1.068917039435827e-14, 1760.0, 0.005102031864225864, -1.1598820492508821e-05, 5.49342660249863e-09, -1.1598820492508821e-05, 3.518042746009087e-08, -1.874889653252776e-11, 5.49342660249863e-09,-1.874889653252776e-11, 1.0658838144517093e-14, 1761.0, 0.005099141504615545, -1.1585664651647676e-05, 5.484078968720496e-09, -1.1585664651647676e-05, 3.5120550023748365e-08, -1.8706352439279428e-11, 5.484078968720496e-09, -1.8706352439279428e-11, 1.0628609232695482e-14, 1762.0, 0.00509625393897295, -1.1572530638659373e-05, 5.474752207135225e-09, -1.1572530638659373e-05, 3.5060807590525656e-08, -1.866392804195094e-11, 5.474752207135225e-09, -1.866392804195094e-11, 1.0598482811860488e-14, 1763.0, 0.005093370098620653, -1.1559419363038614e-05, 5.465446761832027e-09, -1.1559419363038614e-05, 3.500120016042274e-08, -1.8621623340542293e-11, 5.465446761832027e-09, -1.8621623340542293e-11, 1.0568458034979165e-14, 1764.0, 0.00509048905223608, -1.1546329915290698e-05, 5.4561621887216916e-09, -1.1546329915290698e-05, 3.49417312861533e-08, -1.8579440069776965e-11, 5.4561621887216916e-09, -1.8579440069776965e-11, 1.0538536596117407e-14, 1765.0, 0.005087611265480518, -1.1533263204910327e-05, 5.446898487804219e-09, -1.1533263204910327e-05, 3.488239386228997e-08, -1.8537374760208003e-11, 5.446898487804219e-09, -1.8537374760208003e-11, 1.0508715954176372e-14, 1766.0, 0.005084737204015255, -1.1520218322402798e-05, 5.43765610316882e-09, -1.1520218322402798e-05, 3.482319144154644e-08, -1.8495429146558884e-11, 5.43765610316882e-09, -1.8495429146558884e-11, 1.0478996956189007e-14, 1767.0, 0.0050818659365177155, -1.1507195267768111e-05, 5.428434590726283e-09, -1.1507195267768111e-05, 3.4764124023922705e-08, -1.845360149410613e-11, 5.428434590726283e-09, -1.845360149410613e-11, 1.0449377908089419e-14, 1768.0, 0.005078997928649187, -1.1494194950500969e-05, 5.41923395047661e-09, -1.1494194950500969e-05, 3.470518805670508e-08, -1.841189353757322e-11, 5.41923395047661e-09, -1.841189353757322e-11, 1.0419860503943501e-14, 1769.0, 0.005076133646070957, -1.148121646110667e-05, 5.410053738330589e-09, -1.148121646110667e-05, 3.4646387092607256e-08, -1.83703018075132e-11, 5.410053738330589e-09, -1.83703018075132e-11, 1.0390442202652412e-14, 1770.0, 0.005073272157460451, -1.1468259799585212e-05, 5.4008948424666414e-09, -1.1468259799585212e-05, 3.4587717578915544e-08, -1.8328828038649547e-11, 5.4008948424666414e-09, -1.8328828038649547e-11, 1.0361123851249099e-14, 1771.0, 0.005070413928478956, -1.1455324965936597e-05, 5.391755930617137e-09, -1.1455324965936597e-05, 3.452918306834363e-08, -1.8287470496258784e-11, 5.391755930617137e-09, -1.8287470496258784e-11, 1.0331904602700615e-14, 1772.0, 0.0050675589591264725, -1.1442411960160825e-05, 5.382638335049705e-09, -1.1442411960160825e-05, 3.447077645546415e-08, -1.8246230915064388e-11, 5.382638335049705e-09, -1.8246230915064388e-11, 1.0302784457006959e-14, 1773.0, 0.005064707249403, -1.1429520782257896e-05,5.373540723496717e-09, -1.1429520782257896e-05, 3.441250484570446e-08, -1.820510756034288e-11, 5.373540723496717e-09, -1.820510756034288e-11, 1.0273762567135185e-14, 1774.0, 0.0050618587993085384, -1.141665234172251e-05, 5.3644639841365915e-09, -1.141665234172251e-05, 3.435436468635089e-08, -1.816409869737079e-11, 5.3644639841365915e-09, -1.816409869737079e-11, 1.0244838933085292e-14, 1775.0, 0.005059013143181801, -1.1403803910070565e-05, 5.355407228790909e-09,-1.1403803910070565e-05, 3.429635242468976e-08, -1.8123206060871588e-11, 5.355407228790909e-09, -1.8123206060871588e-11, 1.0216012707824334e-14, 1776.0, 0.005056171212345362, -1.1390978215786163e-05, 5.34637134563809e-09, -1.1390978215786163e-05, 3.423847161343474e-08, -1.80824279161218e-11, 5.34637134563809e-09, -1.80824279161218e-11, 1.0187283044319363e-14, 1777.0, 0.005053332075476646, -1.1378174349374603e-05, 5.337355446499714e-09, -1.1378174349374603e-05, 3.418072225258584e-08, -1.804176426312143e-11, 5.337355446499714e-09, -1.804176426312143e-11, 1.0158651636636273e-14, 1778.0, 0.00505049666389823, -1.1365391401341185e-05, 5.328359975464991e-09, -1.1365391401341185e-05, 3.412310078942937e-08, -1.800121510187047e-11, 5.328359975464991e-09, -1.800121510187047e-11, 1.0130115943676223e-14, 1779.0, 0.005047664046287537, -1.1352630281180609e-05, 5.319384488444712e-09, -1.1352630281180609e-05, 3.406561077667902e-08, -1.7960780432368928e-11, 5.319384488444712e-09, -1.7960780432368928e-11, 1.0101675965439212e-14, 1780.0, 0.005044834688305855, -1.1339890988892876e-05, 5.310429429528085e-09, -1.1339890988892876e-05, 3.400824866162111e-08, -1.7920458519893323e-11, 5.310429429528085e-09, -1.7920458519893323e-11, 1.0073332548958189e-14, 1781.0, 0.005042008124291897, -1.1327172614983283e-05, 5.301494354625902e-09, -1.1327172614983283e-05, 3.395101799696931e-08, -1.7880251099167133e-11, 5.301494354625902e-09, -1.7880251099167133e-11, 1.0045084847200205e-14, 1782.0, 0.005039185285568237, -1.1314476068946533e-05, 5.292579263738162e-09, -1.1314476068946533e-05, 3.3893911677296273e-08, -1.7840154700743405e-11, 5.292579263738162e-09, -1.7840154700743405e-11, 1.0016931166099367e-14, 1783.0, 0.005036365240812302, -1.1301800441287924e-05, 5.283684156864865e-09, -1.1301800441287924e-05, 3.383693680802935e-08, -1.7800171059345615e-11,5.283684156864865e-09, -1.7800171059345615e-11, 9.98887235268862e-15, 1784.0, 0.005033548455685377, -1.1289145732007455e-05, 5.274809034006012e-09, -1.1289145732007455e-05, 3.3780086283741184e-08, -1.7760298440250288e-11, 5.274809034006012e-09, -1.7760298440250288e-11, 9.960908406967967e-15, 1785.0, 0.005030734930187464, -1.1276512850599829e-05, 5.2659534510723915e-09, -1.1276512850599829e-05, 3.3723367209859134e-08, -1.77205385781809e-11, 5.2659534510723915e-09,-1.77205385781809e-11, 9.933037634871512e-15, 1786.0, 0.0050279246643185616, -1.1263900887570344e-05, 5.2571182962424245e-09, -1.1263900887570344e-05, 3.366677248095584e-08, -1.7680889738413974e-11, 5.2571182962424245e-09, -1.7680889738413974e-11, 9.905260883432201e-15, 1787.0, 0.005025117192417383, -1.1251310752413701e-05, 5.248302237248481e-09, -1.1251310752413701e-05, 3.361030209703131e-08, -1.764135192094951e-11, 5.248302237248481e-09, -1.764135192094951e-11, 9.877577305617089e-15, 1788.0, 0.005022312980145216, -1.1238740626140498e-05, 5.239506162268981e-09, -1.1238740626140498e-05, 3.355395961079921e-08, -1.760192512578751e-11, 5.239506162268981e-09, -1.760192512578751e-11, 9.849986054393228e-15, 1789.0, 0.00501951202750206, -1.1226192327740137e-05, 5.230730071303924e-09, -1.1226192327740137e-05, 3.349774502225955e-08, -1.7562607618204495e-11, 5.230730071303924e-09, -1.7562607618204495e-11, 9.822487129760617e-15, 1790.0, 0.005016713868826628, -1.1213664947717916e-05, 5.221973076174891e-09, -1.1213664947717916e-05, 3.344165477869865e-08, -1.7523399398200468e-11, 5.221973076174891e-09, -1.7523399398200468e-11, 9.795080531719257e-15, 1791.0, 0.005013919435441494, -1.1201158486073837e-05, 5.2132360650603005e-09, -1.1201158486073837e-05, 3.3385688880116504e-08, -1.7484302200498902e-11, 5.2132360650603005e-09, -1.7484302200498902e-11, 9.767766260269147e-15, 1792.0, 0.005011127330362797, -1.1188672942807898e-05, 5.204518149781734e-09, -1.1188672942807898e-05, 3.332984732651312e-08, -1.7445312555652848e-11, 5.204518149781734e-09, -1.7445312555652848e-11, 9.740542621344394e-15, 1793.0, 0.005008338950574398, -1.11762083179201e-05, 5.195819774428401e-09, -1.11762083179201e-05, 3.327413367060217e-08, -1.7406430463662304e-11, 5.195819774428401e-09, -1.7406430463662304e-11, 9.713410461977944e-15, 1794.0, 0.005005553364753723, -1.1163764611410443e-05, 5.187140939000301e-09, -1.1163764611410443e-05, 3.32185408069563e-08, -1.7367659393974222e-11, 5.187140939000301e-09, -1.7367659393974222e-11, 9.686368088103903e-15, 1795.0, 0.005002771038562059, -1.1151340913784225e-05, 5.178481199408225e-09, -1.1151340913784225e-05, 3.3163072288289186e-08, -1.7328994142418175e-11, 5.178481199408225e-09, -1.7328994142418175e-11, 9.659417193788166e-15, 1796.0, 0.004999991971999407, -1.1138939044030849e-05, 5.169840555652172e-09, -1.1138939044030849e-05, 3.310772811460083e-08, -1.7290436443717638e-11, 5.169840555652172e-09, -1.7290436443717638e-11, 9.63255523793189e-15, 1797.0, 0.004997215699404478, -1.1126557183160912e-05, 5.161219451821353e-09, -1.1126557183160912e-05, 3.305250473317756e-08, -1.7251986297872612e-11, 5.161219451821353e-09, -1.7251986297872612e-11, 9.605783067568024e-15, 1798.0, 0.004994442220777273, -1.1114196240669116e-05,5.152617443826557e-09, -1.1114196240669116e-05, 3.299740569673304e-08, -1.7213643704883097e-11, 5.152617443826557e-09, -1.7213643704883097e-11, 9.579100682696566e-15, 1799.0, 0.004991672467440367, -1.110185530706076e-05, 5.144034531667785e-09, -1.110185530706076e-05, 3.294243100526728e-08, -1.7175406930025616e-11, 5.144034531667785e-09, -1.7175406930025616e-11, 9.55250723628457e-15, 1800.0, 0.004988905508071184, -1.1089535291830543e-05, 5.135470715345036e-09,-1.1089535291830543e-05, 3.288757355335292e-08, -1.7137277708023646e-11, 5.135470715345036e-09, -1.7137277708023646e-11, 9.526001881299088e-15, 1801.0, 0.004986141342669725, -1.1077236194978468e-05, 5.126925550769101e-09, -1.1077236194978468e-05, 3.283284044641732e-08, -1.7099252569430234e-11, 5.126925550769101e-09, -1.7099252569430234e-11, 9.499584617740121e-15, 1802.0, 0.004983380436897278, -1.1064957107009832e-05, 5.1183999261184e-09, -1.1064957107009832e-05, 3.277823168446048e-08, -1.7061333248968857e-11, 5.1183999261184e-09, -1.7061333248968857e-11, 9.473255445607669e-15, 1803.0, 0.004980622790753841, -1.1052698027924635e-05, 5.109892953214512e-09, -1.1052698027924635e-05, 3.272374016205504e-08, -1.702351801191604e-11, 5.109892953214512e-09, -1.702351801191604e-11, 9.447013517868783e-15, 1804.0, 0.004977867938578129, -1.1040459867217578e-05, 5.101404632057438e-09, -1.1040459867217578e-05, 3.2669369431914674e-08, -1.6985808592995255e-11, 5.101404632057438e-09, -1.6985808592995255e-11, 9.420858834523465e-15, 1805.0, 0.004975116346031427, -1.102824171539396e-05, 5.0929354067363874e-09, -1.102824171539396e-05, 3.261511949403939e-08, -1.694820325748303e-11, 5.0929354067363874e-09, -1.694820325748303e-11, 9.394791395571714e-15, 1806.0, 0.00497236754745245, -1.1016044481948484e-05, 5.084484389072941e-09, -1.1016044481948484e-05, 3.2560990348429186e-08, -1.6910702005379363e-11, 5.084484389072941e-09, -1.6910702005379363e-11, 9.368810353980583e-15, 1807.0, 0.004969622008502483, -1.1003866347891744e-05, 5.076052467245518e-09, -1.1003866347891744e-05, 3.250698199508406e-08, -1.6873304836684255e-11, 5.076052467245518e-09, -1.6873304836684255e-11, 9.342914862717124e-15, 1808.0, 0.004966879263520241, -1.0991709132213145e-05, 5.067639197164908e-09, -1.0991709132213145e-05, 3.2453090881290336e-08, -1.683601001667423e-11,5.067639197164908e-09, -1.683601001667423e-11, 9.317105768814286e-15, 1809.0, 0.004964139778167009, -1.0979571925417986e-05, 5.0592445788311124e-09, -1.0979571925417986e-05, 3.239932055976169e-08, -1.6798819280072763e-11, 5.0592445788311124e-09, -1.6798819280072763e-11, 9.29138222523912e-15, 1810.0, 0.004961403086781502, -1.0967455637000967e-05, 5.0508681681549206e-09, -1.0967455637000967e-05, 3.2345667477784446e-08, -1.676173089215638e-11, 5.0508681681549206e-09,-1.676173089215638e-11, 9.265744231991627e-15, 1811.0, 0.004958669655025005, -1.0955358447972685e-05, 5.042510409225542e-09, -1.0955358447972685e-05, 3.229213518807228e-08, -1.6724744852925078e-11, 5.042510409225542e-09, -1.6724744852925078e-11, 9.240190095005912e-15, 1812.0, 0.004955939017236233, -1.0943281267827842e-05, 5.034171302042978e-09, -1.0943281267827842e-05, 3.2238720137911514e-08, -1.6687859427655383e-11, 5.034171302042978e-09, -1.6687859427655383e-11, 9.21472150834787e-15, 1813.0, 0.004953211639076471, -1.0931224096566439e-05, 5.025850402518017e-09, -1.0931224096566439e-05, 3.218542232730215e-08, -1.6651078085794246e-11, 5.025850402518017e-09, -1.6651078085794246e-11, 9.189335930918658e-15, 1814.0, 0.004950487054884434, -1.0919186934188474e-05, 5.0175477106506605e-09, -1.0919186934188474e-05, 3.2132238203530505e-08, -1.661439562317124e-11, 5.0175477106506605e-09, -1.661439562317124e-11, 9.164035056784172e-15, 1815.0, 0.004947765730321407, -1.0907169780693948e-05, 5.009263226440908e-09, -1.0907169780693948e-05, 3.207917487202394e-08, -1.6577815509233318e-11, 5.009263226440908e-09, -1.6577815509233318e-11, 9.138818038911464e-15, 1816.0, 0.004945046734064817, -1.0895172636082862e-05, 5.0009969498887585e-09, -1.0895172636082862e-05, 3.202622878006878e-08, -1.6541336009257002e-11, 5.0009969498887585e-09, -1.6541336009257002e-11, 9.11368318323464e-15, 1817.0, 0.004942331463098526, -1.0883194590860512e-05, 4.992749325083423e-09, -1.0883194590860512e-05, 3.1973399927665014e-08, -1.6504955388518816e-11, 4.992749325083423e-09, -1.6504955388518816e-11, 9.088632183819594e-15, 1818.0, 0.004939618986099958, -1.0871236554521602e-05, 4.984519463846482e-09, -1.0871236554521602e-05, 3.192068476209897e-08, -1.6468677116465713e-11, 4.984519463846482e-09, -1.6468677116465713e-11, 9.063663346600432e-15, 1819.0, 0.004936909303069115, -1.085929852706613e-05, 4.976307810267144e-09, -1.085929852706613e-05, 3.186808683608433e-08, -1.6432495988927265e-11, 4.976307810267144e-09, -1.6432495988927265e-11, 9.038776671577153e-15, 1820.0, 0.004934202414005995, -1.0847379598999396e-05, 4.968113920256201e-09, -1.0847379598999396e-05, 3.181560259690741e-08, -1.6396415475350423e-11, 4.968113920256201e-09, -1.6396415475350423e-11, 9.013972158749758e-15, 1821.0, 0.004931498784571886, -1.08354806798161e-05, 4.959938237902861e-09, -1.08354806798161e-05, 3.176323559728189e-08, -1.6360433841011712e-11, 4.959938237902861e-09, -1.6360433841011712e-11, 8.989249808118247e-15, 1822.0, 0.0049287984147667885, -1.0823601769516245e-05, 4.9517803191179155e-09, -1.0823601769516245e-05, 3.1710982284494094e-08, -1.6324551085911132e-11, 4.9517803191179155e-09, -1.6324551085911132e-11, 8.964607925616725e-15, 1823.0, 0.0049261003732681274, -1.0811741958605126e-05,4.943640607990574e-09, -1.0811741958605126e-05, 3.165884265854402e-08, -1.6288765475325206e-11, 4.943640607990574e-09, -1.6288765475325206e-11, 8.94004735827814e-15, 1824.0, 0.0049234055913984776, -1.0799901247082744e-05, 4.935518660431626e-09, -1.0799901247082744e-05, 3.160682027214534e-08, -1.625307874397741e-11, 4.935518660431626e-09, -1.625307874397741e-11, 8.915567259069543e-15, 1825.0, 0.004920714069157839, -1.0788080544443801e-05, 4.927414032351862e-09,-1.0788080544443801e-05, 3.155490801987071e-08, -1.6217490891867747e-11, 4.927414032351862e-09, -1.6217490891867747e-11, 8.891167627990935e-15, 1826.0, 0.004918024875223637, -1.0776278941193596e-05, 4.9193276119297025e-09, -1.0776278941193596e-05, 3.1503113007147476e-08, -1.6181998449549262e-11, 4.9193276119297025e-09, -1.6181998449549262e-11, 8.866848465042317e-15, 1827.0, 0.004915338940918446, -1.0764496437332127e-05, 4.911258510986727e-09, -1.0764496437332127e-05, 3.1451428128548287e-08, -1.614660315174543e-11, 4.911258510986727e-09, -1.614660315174543e-11, 8.842608923190741e-15, 1828.0, 0.004912655800580978, -1.0752733942354098e-05, 4.903207617701355e-09, -1.0752733942354098e-05, 3.13998604895005e-08, -1.611130673317973e-11, 4.903207617701355e-09, -1.611130673317973e-11, 8.818449002436207e-15, 1829.0, 0.004909975919872522, -1.0740990546764806e-05, 4.8951735998059576e-09, -1.0740990546764806e-05, 3.134840298457675e-08, -1.6076103989681734e-11, 4.8951735998059576e-09, -1.6076103989681734e-11, 8.794367855745767e-15, 1830.0, 0.00490729883313179, -1.0729266250564251e-05, 4.887157789568164e-09, -1.0729266250564251e-05, 3.129705561377705e-08, -1.604099839069839e-11, 4.887157789568164e-09, -1.604099839069839e-11, 8.770365483119422e-15, 1831.0, 0.004904624540358782, -1.0717561053752434e-05, 4.879158854720345e-09, -1.0717561053752434e-05, 3.1245821929815065e-08, -1.6005989936229703e-11, 4.879158854720345e-09, -1.6005989936229703e-11, 8.746441884557171e-15, 1832.0, 0.004901953041553497, -1.0705874956329353e-05, 4.871177683440919e-09, -1.0705874956329353e-05, 3.1194701932690805e-08, -1.5971075156828718e-11, 4.871177683440919e-09, -1.5971075156828718e-11, 8.722597060059015e-15, 1833.0, 0.004899284336715937, -1.069420795829501e-05, 4.863214275729888e-09, -1.069420795829501e-05, 3.114369206969059e-08, -1.593625578721891e-11,4.863214275729888e-09, -1.593625578721891e-11, 8.69882931555906e-15, 1834.0, 0.004896618891507387, -1.0682560059649404e-05, 4.855267743408831e-09, -1.0682560059649404e-05, 3.109279234081441e-08, -1.5901531827400284e-11, 4.855267743408831e-09, -1.5901531827400284e-11, 8.675140345123199e-15, 1835.0, 0.0048939562402665615, -1.0670931260392535e-05, 4.847338530566958e-09, -1.0670931260392535e-05, 3.104200629877596e-08, -1.586690154264936e-11, 4.847338530566958e-09,-1.586690154264936e-11, 8.65152760765259e-15, 1836.0, 0.004891296848654747, -1.0659321560524404e-05, 4.839426637204269e-09, -1.0659321560524404e-05, 3.099132683814787e-08, -1.5832366667689612e-11, 4.839426637204269e-09, -1.5832366667689612e-11, 8.62799279721313e-15, 1837.0, 0.004888639785349369, -1.0647730050550308e-05, 4.831532063320765e-09, -1.0647730050550308e-05, 3.09407610643575e-08, -1.579792546779757e-11, 4.831532063320765e-09, -1.579792546779757e-11, 8.604534219738922e-15, 1838.0, 0.004885985981673002, -1.0636158549459651e-05, 4.8236543648272345e-09, -1.0636158549459651e-05, 3.08903018719775e-08, -1.5763576208249752e-11, 4.8236543648272345e-09, -1.5763576208249752e-11, 8.581152722262914e-15, 1839.0, 0.004883334506303072, -1.062460523826303e-05, 4.8157939858128884e-09, -1.062460523826303e-05, 3.083995636643522e-08, -1.5729322358493114e-11, 4.8157939858128884e-09, -1.5729322358493114e-11, 8.557846610719212e-15, 1840.0, 0.004880686290562153, -1.0613071026455145e-05, 4.8079509262777265e-09, -1.0613071026455145e-05, 3.07897174423033e-08, -1.5695160449080703e-11, 4.8079509262777265e-09, -1.5695160449080703e-11, 8.534616732140763e-15, 1841.0, 0.004878041334450245, -1.0601555004541297e-05, 4.800124742132539e-09, -1.0601555004541297e-05, 3.0739588652295424e-08, -1.5661092214735994e-11, 4.800124742132539e-09, -1.5661092214735994e-11, 8.511463086527567e-15, 1842.0, 0.0048753987066447735, -1.0590058082016185e-05, 4.7923154333773255e-09, -1.0590058082016185e-05, 3.068956999641159e-08, -1.5627114186012037e-11, 4.7923154333773255e-09, -1.5627114186012037e-11, 8.488383979813729e-15, 1843.0, 0.004872758872807026, -1.057858025887981e-05, 4.784523000012086e-09, -1.057858025887981e-05, 3.0639657921938124e-08, -1.5593229832355782e-11, 4.784523000012086e-09, -1.5593229832355782e-11, 8.465380259032197e-15, 1844.0, 0.0048701222985982895, -1.0567120625637472e-05, 4.776747442036822e-09, -1.0567120625637472e-05, 3.058985242887502e-08, -1.5559437419043753e-11, 4.776747442036822e-09, -1.5559437419043753e-11, 8.442451077150023e-15, 1845.0, 0.004867488518357277, -1.0555679182289168e-05, 4.768988759451531e-09, -1.0555679182289168e-05, 3.054015706993596e-08, -1.5525736946075952e-11, 4.768988759451531e-09, -1.5525736946075952e-11, 8.419596434167207e-15, 1846.0, 0.004864857066422701, -1.0544256838329602e-05, 4.761246952256215e-09, -1.0544256838329602e-05, 3.049056829240726e-08, -1.54921266787289e-11, 4.761246952256215e-09, -1.54921266787289e-11, 8.39681633008375e-15, 1847.0, 0.004862228874117136, -1.0532853593758773e-05, 4.753521576361663e-09, -1.0532853593758773e-05, 3.044108609628893e-08, -1.54586066170026e-11, 4.753521576361663e-09, -1.54586066170026e-11, 8.374109917866704e-15, 1848.0, 0.004859603475779295, -1.0521467629587278e-05,4.745813075857086e-09, -1.0521467629587278e-05, 3.039171403429464e-08, -1.542517849562053e-11, 4.745813075857086e-09, -1.542517849562053e-11, 8.351477197516069e-15, 1849.0, 0.004856981337070465, -1.051010076480452e-05, 4.738121450742483e-09, -1.051010076480452e-05, 3.034244500099703e-08, -1.5391840579859206e-11, 4.738121450742483e-09, -1.5391840579859206e-11, 8.328918169031845e-15, 1850.0, 0.004854361526668072, -1.0498752999410499e-05, 4.730446256928644e-09,-1.0498752999410499e-05, 3.029328610182347e-08, -1.5358592869718635e-11, 4.730446256928644e-09, -1.5358592869718635e-11, 8.306431985381085e-15, 1851.0, 0.004851744510233402, -1.0487422514415812e-05, 4.72278793850478e-09, -1.0487422514415812e-05, 3.024423023134659e-08, -1.5325433630475338e-11, 4.72278793850478e-09, -1.5325433630475338e-11, 8.284017799530842e-15, 1852.0, 0.004849130287766457, -1.0476111128809862e-05, 4.71514560729247e-09, -1.0476111128809862e-05, 3.019528094228008e-08, -1.5292364596852792e-11, 4.71514560729247e-09, -1.5292364596852792e-11, 8.26167730554701e-15, 1853.0, 0.004846519324928522, -1.0464817023603246e-05, 4.707520151470135e-09, -1.0464817023603246e-05, 3.014643823462393e-08, -1.525938403412752e-11, 4.707520151470135e-09, -1.525938403412752e-11, 8.239408809363694e-15, 1854.0, 0.004843910690397024, -1.0453542017785367e-05, 4.699911126948564e-09, -1.0453542017785367e-05, 3.0097702108378144e-08, -1.5226493677023e-11, 4.699911126948564e-09, -1.5226493677023e-11, 8.217212310980895e-15, 1855.0, 0.00484130484983325, -1.0442285201861523e-05, 4.6923180896385475e-09, -1.0442285201861523e-05, 3.0049069010829044e-08, -1.5193691790815755e-11, 4.6923180896385475e-09, -1.5193691790815755e-11, 8.195086963365666e-15, 1856.0, 0.004838702268898487, -1.0431046575831715e-05, 4.684741927718505e-09, -1.0431046575831715e-05, 3.000053894197663e-08, -1.516097664078231e-11, 4.684741927718505e-09, -1.516097664078231e-11, 8.173033613550953e-15, 1857.0, 0.004836102016270161, -1.041982523020124e-05, 4.677181753010018e-09, -1.041982523020124e-05, 2.995211545453458e-08, -1.5128351696369613e-11, 4.677181753010018e-09, -1.5128351696369613e-11, 8.151051414503809e-15, 1858.0, 0.004833505023270845, -1.0408622983959503e-05, 4.669638009602295e-09, -1.0408622983959503e-05, 2.990379499578921e-08, -1.509581175340724e-11,4.669638009602295e-09, -1.509581175340724e-11, 8.129139519191288e-15, 1859.0, 0.004830910358577967, -1.03974380181171e-05, 4.6621102534061265e-09, -1.03974380181171e-05, 2.985558111845421e-08, -1.5063362016065618e-11, 4.6621102534061265e-09, -1.5063362016065618e-11, 8.107298774646336e-15, 1860.0, 0.004828318953514099, -1.0386272151663434e-05, 4.6545989285107225e-09, -1.0386272151663434e-05, 2.9807466717102216e-08, -1.503099728017432e-11, 4.6545989285107225e-09,-1.503099728017432e-11, 8.085528333836006e-15, 1861.0, 0.004825729876756668, -1.0375123565609101e-05, 4.647103590826873e-09, -1.0375123565609101e-05, 2.9759458897160584e-08, -1.4998721015180294e-11, 4.647103590826873e-09, -1.4998721015180294e-11, 8.063828196760298e-15, 1862.0, 0.004823143593966961, -1.0363993169448804e-05, 4.6396242403545784e-09, -1.0363993169448804e-05, 2.971155410591564e-08, -1.4966529751636592e-11, 4.6396242403545784e-09, -1.4966529751636592e-11, 8.042197516386265e-15, 1863.0, 0.004820560570806265, -1.035288005368784e-05, 4.632161321183048e-09, -1.035288005368784e-05, 2.966375056701054e-08, -1.493442522426669e-11, 4.632161321183048e-09, -1.493442522426669e-11, 8.020637139746854e-15, 1864.0, 0.004817979875952005, -1.0341785127820913e-05, 4.6247139451338626e-09, -1.0341785127820913e-05, 2.9616050056802123e-08, -1.4902407433070586e-11, 4.6247139451338626e-09, -1.4902407433070586e-11, 7.99914537277617e-15, 1865.0, 0.00481540197506547, -1.033070839184802e-05, 4.617282556296232e-09, -1.033070839184802e-05, 2.9568452575290394e-08, -1.487047637804828e-11, 4.617282556296232e-09, -1.487047637804828e-11, 7.977723062507162e-15, 1866.0, 0.004812826868146658, -1.0319648936274461e-05, 4.609867154670155e-09, -1.0319648936274461e-05, 2.952095634611851e-08, -1.4838628589752823e-11, 4.609867154670155e-09, -1.4838628589752823e-11, 7.956369361906881e-15, 1867.0, 0.00481025455519557, -1.0308607670594938e-05, 4.6024677402556335e-09, -1.0308607670594938e-05, 2.9473561369286472e-08, -1.4806867537631163e-11, 4.6024677402556335e-09, -1.4806867537631163e-11, 7.935084270975327e-15, 1868.0, 0.004807685036212206, -1.0297583685314748e-05, 4.595084313052666e-09, -1.0297583685314748e-05, 2.942626764479428e-08, -1.477518975223635e-11, 4.595084313052666e-09, -1.477518975223635e-11, 7.913867789712502e-15, 1869.0, 0.004805118311196566, -1.0286577889928594e-05, 4.587716428972044e-09, -1.0286577889928594e-05, 2.9379075172641933e-08, -1.4743598703015337e-11, 4.587716428972044e-09, -1.4743598703015337e-11, 7.892718224052509e-15, 1870.0, 0.004802553914487362, -1.0275589374941774e-05, 4.580364088013766e-09, -1.0275589374941774e-05, 2.9331983952829432e-08, -1.471209092052117e-11, 4.580364088013766e-09, -1.471209092052117e-11, 7.871637268061244e-15, 1871.0, 0.004799992777407169, -1.0264618140354287e-05, 4.573027734267043e-09, -1.0264618140354287e-05, 2.9284993985356778e-08, -1.468066640475385e-11, 4.573027734267043e-09, -1.468066640475385e-11, 7.85062407470576e-15, 1872.0, 0.004797433968633413, -1.0253665095660836e-05, 4.565706923642665e-09, -1.0253665095660836e-05, 2.923810349386713e-08, -1.4649326890436853e-11, 4.565706923642665e-09, -1.4649326890436853e-11, 7.829677796953108e-15, 1873.0, 0.004794877953827381, -1.0242729331366718e-05,4.558402100229841e-09, -1.0242729331366718e-05, 2.9191312478360487e-08, -1.4618070642846703e-11, 4.558402100229841e-09, -1.4618070642846703e-11, 7.808799281836237e-15, 1874.0, 0.00479232519865036, -1.0231810847471934e-05, 4.551112375850153e-09, -1.0231810847471934e-05, 2.914462271519369e-08, -1.4586899396706876e-11, 4.551112375850153e-09, -1.4586899396706876e-11, 7.787986835289251e-15, 1875.0, 0.004789774771779776, -1.0220909643976483e-05, 4.5438381945928086e-09,-1.0220909643976483e-05, 2.9098030651653062e-08, -1.455580968257042e-11, 4.5438381945928086e-09, -1.455580968257042e-11, 7.767240457312152e-15, 1876.0, 0.004787226673215628, -1.0210026630375069e-05, 4.536580000547019e-09, -1.0210026630375069e-05, 2.905153984045228e-08, -1.4524802367799072e-11, 4.536580000547019e-09, -1.4524802367799072e-11, 7.746560994937885e-15, 1877.0, 0.004784681834280491, -1.0199160897172987e-05, 4.529336905534365e-09, -1.0199160897172987e-05, 2.9005146728877662e-08, -1.4493877452392834e-11, 4.529336905534365e-09, -1.4493877452392834e-11, 7.725947601133504e-15, 1878.0, 0.004782139323651791, -1.0188311534875538e-05, 4.522108909554845e-09, -1.0188311534875538e-05, 2.8958853093286052e-08, -1.4463035803713442e-11, 4.522108909554845e-09, -1.4463035803713442e-11, 7.70540027589901e-15, 1879.0, 0.004779599606990814, -1.0177480362472124e-05, 4.51489690078688e-09, -1.0177480362472124e-05, 2.891265715732061e-08, -1.4432275687037421e-11, 4.51489690078688e-09, -1.4432275687037421e-11, 7.684917325168506e-15, 1880.0, 0.004777062684297562, -1.0166666470468044e-05, 4.50769999105205e-09, -1.0166666470468044e-05, 2.8866558920981333e-08, -1.4401597102364772e-11, 4.50769999105205e-09, -1.4401597102364772e-11, 7.664500443007888e-15, 1881.0, 0.004774528555572033, -1.0155868949368596e-05, 4.500518180350355e-09, -1.0155868949368596e-05, 2.8820560160625064e-08, -1.4371000049695493e-11, 4.500518180350355e-09, -1.4371000049695493e-11, 7.64414878238421e-15, 1882.0, 0.004771997220814228, -1.0145089618163183e-05, 4.493351912771004e-09, -1.0145089618163183e-05, 2.877465909989496e-08, -1.4340484529029585e-11, 4.493351912771004e-09, -1.4340484529029585e-11, 7.623862343297469e-15, 1883.0, 0.00476946821436286, -1.0134326657862402e-05, 4.486200744224789e-09, -1.0134326657862402e-05, 2.8728853962434187e-08, -1.431004967300531e-11,4.486200744224789e-09, -1.431004967300531e-11, 7.603639431681773e-15, 1884.0, 0.004766942001879215, -1.0123581887455657e-05, 4.479064674711708e-09, -1.0123581887455657e-05, 2.868314652459958e-08, -1.4279695481622667e-11, 4.479064674711708e-09, -1.4279695481622667e-11, 7.583481741603015e-15, 1885.0, 0.004764418583363295, -1.0112853487953544e-05, 4.471943704231762e-09, -1.0112853487953544e-05, 2.8637536786391138e-08, -1.4249421954881658e-11, 4.471943704231762e-09,-1.4249421954881658e-11, 7.563387578995301e-15, 1886.0, 0.0047618974931538105, -1.0102141459356062e-05, 4.464837832784951e-09, -1.0102141459356062e-05, 2.8592022971452025e-08, -1.4219228225420544e-11, 4.464837832784951e-09, -1.4219228225420544e-11, 7.543356943858631e-15, 1887.0, 0.0047593796625733376, -1.0091447620652616e-05, 4.4577470603712754e-09, -1.0091447620652616e-05, 2.854660507978224e-08, -1.4189115160601062e-11, 4.4577470603712754e-09, -1.4189115160601062e-11, 7.523390683225953e-15, 1888.0, 0.004756864160299301, -1.0080770152853802e-05, 4.4506709429015245e-09, -1.0080770152853802e-05, 2.850128488773862e-08, -1.4159081025699738e-11, 4.4506709429015245e-09, -1.4159081025699738e-11, 7.503487103031371e-15, 1889.0, 0.004754350986331701, -1.0070109965454321e-05, 4.443610368554118e-09, -1.0070109965454321e-05, 2.845605884260749e-08, -1.4129126688078308e-11, 4.443610368554118e-09, -1.4129126688078308e-11, 7.483647897340781e-15, 1890.0, 0.0047518410719931126, -1.0059466148959473e-05, 4.436564449150637e-09, -1.0059466148959473e-05, 2.8410930497102527e-08, -1.4099251280375036e-11, 4.436564449150637e-09, -1.4099251280375036e-11, 7.46387052505534e-15, 1891.0, 0.00474933348596096, -1.0048839612863958e-05, 4.429533184691081e-09, -1.0048839612863958e-05, 2.836589629851005e-08, -1.406945480258992e-11, 4.429533184691081e-09, -1.406945480258992e-11, 7.444155833207997e-15, 1892.0, 0.004746828228235245, -1.0038229447673075e-05, 4.42251701926466e-09, -1.0038229447673075e-05, 2.8320956246830065e-08, -1.4039737254722962e-11, 4.42251701926466e-09, -1.4039737254722962e-11, 7.42450382179875e-15, 1893.0, 0.00474432623013854, -1.0027636562881526e-05, 4.415515952871374e-09, -1.0027636562881526e-05, 2.8276112118419405e-08, -1.4010097769412422e-11, 4.415515952871374e-09, -1.4010097769412422e-11, 7.4049144908276e-15, 1894.0, 0.004741826560348272, -1.0017060048994608e-05, 4.408529097332803e-09, -1.0017060048994608e-05, 2.8231362136921234e-08, -1.3980537214020039e-11, 4.408529097332803e-09, -1.3980537214020039e-11, 7.385386993261599e-15, 1895.0, 0.004739329684525728, -1.0006500815507025e-05, 4.401557340827367e-09, -1.0006500815507025e-05, 2.818670807869239e-08, -1.3951053853822337e-11, 4.401557340827367e-09, -1.3951053853822337e-11, 7.3659204820678e-15, 1896.0, 0.004736835137009621, -9.995957952924073e-06, 4.394600239265856e-09, -9.995957952924073e-06, 2.8142146391019196e-08, -1.3921648556181054e-11, 4.394600239265856e-09, -1.3921648556181054e-11, 7.346516651312099e-15, 1897.0, 0.004734343383461237, -9.985431461245753e-06, 4.38765779264827e-09, -9.985431461245753e-06, 2.809767885025849e-08, -1.3892320453734452e-11, 4.38765779264827e-09, -1.3892320453734452e-11, 7.327172959895652e-15, 1898.0, 0.004731854423880577, -9.974922249966767e-06,4.380730000974609e-09, -9.974922249966767e-06, 2.805330545641027e-08, -1.3863069546482532e-11, 4.380730000974609e-09, -1.3863069546482532e-11, 7.307891101884356e-15, 1899.0, 0.004729367792606354, -9.964429409592412e-06, 4.373816420155663e-09, -9.964429409592412e-06, 2.800902620947454e-08, -1.3833895834425292e-11, 4.373816420155663e-09, -1.3833895834425292e-11, 7.288670230245261e-15, 1900.0, 0.004726883955299854, -9.95395294012269e-06, 4.366917938369852e-09,-9.95395294012269e-06, 2.796483933309446e-08, -1.3804798450200995e-11, 4.366917938369852e-09, -1.3804798450200995e-11, 7.269509497945421e-15, 1901.0, 0.004724402446299791, -9.9434928415576e-06, 4.360033667438756e-09, -9.9434928415576e-06, 2.7920744827270028e-08, -1.377577739380964e-11, 4.360033667438756e-09, -1.377577739380964e-11, 7.250408904984837e-15, 1902.0, 0.004721923731267452, -9.933049113897141e-06, 4.353163607362376e-09, -9.933049113897141e-06, 2.7876742692001244e-08, -1.374683266525123e-11, 4.353163607362376e-09, -1.374683266525123e-11, 7.231369298396455e-15, 1903.0, 0.004719447810202837, -9.922621757141314e-06, 4.34630864631913e-09, -9.922621757141314e-06, 2.783283470364495e-08, -1.3717964264525762e-11, 4.34630864631913e-09, -1.3717964264525762e-11, 7.21238898411438e-15, 1904.0, 0.004716974217444658, -9.912211680784822e-06, 4.33946745204139e-09, -9.912211680784822e-06, 2.7789017309487463e-08, -1.3689171324271499e-11, 4.33946745204139e-09, -1.3689171324271499e-11, 7.193468809171561e-15, 1905.0, 0.004714503418654203, -9.901817065838259e-06, 4.332640912707575e-09, -9.901817065838259e-06, 2.7745292285885625e-08, -1.3660454711850178e-11, 4.332640912707575e-09, -1.3660454711850178e-11, 7.174608773567997e-15, 1906.0, 0.004712034948170185, -9.89143973129103e-06, 4.325828584228475e-09, -9.89143973129103e-06, 2.7701659632839437e-08, -1.3631812692538325e-11, 4.325828584228475e-09, -1.3631812692538325e-11, 7.155807183237793e-15, 1907.0, 0.004709569271653891, -9.88107785815373e-06, 4.31903046660409e-09, -9.88107785815373e-06, 2.7658117573992058e-08, -1.360324526633594e-11, 4.31903046660409e-09, -1.360324526633594e-11, 7.137064885213897e-15, 1908.0, 0.004707105923444033, -9.870732355921064e-06, 4.312246559834421e-09, -9.870732355921064e-06, 2.761466610934349e-08, -1.3574753300604758e-11,4.312246559834421e-09, -1.3574753300604758e-11, 7.118381032463362e-15, 1909.0, 0.004704645369201899, -9.860403224593028e-06, 4.305476863919466e-09, -9.860403224593028e-06, 2.7571307015250568e-08, -1.3546335927983044e-11, 4.305476863919466e-09, -1.3546335927983044e-11, 7.099756472019134e-15, 1910.0, 0.004702187608927488, -9.850090464169625e-06, 4.298721378859227e-09, -9.850090464169625e-06, 2.7528038515356457e-08, -1.3517992281109059e-11, 4.298721378859227e-09,-1.3517992281109059e-11, 7.081190356848267e-15, 1911.0, 0.004699732176959515, -9.839794074650854e-06, 4.291980104653703e-09, -9.839794074650854e-06, 2.7484858833304315e-08, -1.3489723227344541e-11, 4.291980104653703e-09, -1.3489723227344541e-11, 7.062682263434287e-15, 1912.0, 0.0046972790732979774, -9.829513146542013e-06, 4.2852530413028944e-09, -9.829513146542013e-06, 2.7441771521807823e-08, -1.3461527899327752e-11, 4.2852530413028944e-09, -1.3461527899327752e-11, 7.044232191777194e-15, 1913.0, 0.004694828763604164, -9.819248589337803e-06, 4.278539744717591e-09, -9.819248589337803e-06, 2.73987730281533e-08, -1.3433405429696954e-11, 4.278539744717591e-09, -1.3433405429696954e-11, 7.025839718360514e-15, 1914.0, 0.004692381247878075, -9.809000403038226e-06, 4.271840658987003e-09, -9.809000403038226e-06, 2.7355865128697587e-08, -1.3405357553175623e-11, 4.271840658987003e-09, -1.3405357553175623e-11, 7.007505266700721e-15, 1915.0, 0.004689936060458422, -9.798767678148579e-06, 4.26515534002192e-09, -9.798767678148579e-06, 2.7313046047083844e-08, -1.3377382535040283e-11, 4.26515534002192e-09, -1.3377382535040283e-11, 6.989227989764868e-15, 1916.0, 0.004687493201345205, -9.788551324163564e-06, 4.258484231911552e-09, -9.788551324163564e-06, 2.727031578331207e-08, -1.3349480375290934e-11, 4.258484231911552e-09, -1.3349480375290934e-11, 6.971007887552954e-15, 1917.0, 0.004685053136199713, -9.77835134108318e-06, 4.25182689056669e-09, -9.77835134108318e-06, 2.7227676113739108e-08, -1.3321650206565838e-11, 4.25182689056669e-09, -1.3321650206565838e-11, 6.952844536548507e-15, 1918.0, 0.004682615399360657, -9.768166819412727e-06, 4.245183315987333e-09, -9.768166819412727e-06, 2.7185125262008114e-08, -1.3293893763588471e-11, 4.245183315987333e-09, -1.3293893763588471e-11, 6.934738360267999e-15, 1919.0, 0.004680180456489325, -9.757998668646906e-06, 4.2385535081734815e-09, -9.757998668646906e-06, 2.714266145176225e-08, -1.326620844427362e-11, 4.2385535081734815e-09, -1.326620844427362e-11, 6.916688511678483e-15, 1920.0, 0.004677747841924429, -9.747845979291014e-06, 4.231937911214345e-09, -9.747845979291014e-06, 2.7100286459358358e-08, -1.3238595983344759e-11, 4.231937911214345e-09, -1.3238595983344759e-11, 6.89869499077996e-15, 1921.0, 0.004675318021327257, -9.737708751345053e-06, 4.225335636931504e-09, -9.737708751345053e-06, 2.7058000284796435e-08, -1.3211054646078413e-11, 4.225335636931504e-09, -1.3211054646078413e-11, 6.8807577975724295e-15, 1922.0, 0.004672890529036522, -9.727587894303724e-06, 4.218747573503379e-09, -9.727587894303724e-06, 2.7015802928076482e-08, -1.318358529983632e-11, 4.218747573503379e-09, -1.318358529983632e-11, 6.8628765085394176e-15, 1923.0, 0.004670465365052223, -9.717482498672325e-06,4.212172832751548e-09, -9.717482498672325e-06, 2.697369083648482e-08, -1.3156187077256742e-11, 4.212172832751548e-09, -1.3156187077256742e-11, 6.845050700164451e-15, 1924.0, 0.004668042995035648, -9.707392564450856e-06, 4.205611858765224e-09, -9.707392564450856e-06, 2.693166756273513e-08, -1.3128860845701418e-11, 4.205611858765224e-09, -1.3128860845701418e-11, 6.827280795964003e-15, 1925.0, 0.00466562295332551, -9.69731900113402e-06, 4.199064207455194e-09,-9.69731900113402e-06, 2.6889731330470568e-08, -1.310160487044687e-11, 4.199064207455194e-09, -1.310160487044687e-11, 6.8095659489051264e-15, 1926.0, 0.0046632057055830956, -9.687260899227113e-06, 4.19253032291067e-09, -9.687260899227113e-06, 2.6847882139691137e-08, -1.30744191514931e-11, 4.19253032291067e-09, -1.30744191514931e-11, 6.7919061589878215e-15, 1927.0, 0.004660790786147118, -9.677218258730136e-06, 4.186010205131652e-09, -9.677218258730136e-06, 2.6806119990396837e-08, -1.3047304556201844e-11, 4.186010205131652e-09, -1.3047304556201844e-11, 6.774301426212088e-15, 1928.0, 0.004658378195017576, -9.66719107964309e-06, 4.1795034100289286e-09, -9.66719107964309e-06, 2.6764444882587668e-08, -1.3020260217211366e-11, 4.1795034100289286e-09, -1.3020260217211366e-11, 6.756751327061453e-15, 1929.0, 0.004655968397855759, -9.657180271460675e-06, 4.173010381691711e-09, -9.657180271460675e-06, 2.672285503990679e-08, -1.2993285267159926e-11, 4.173010381691711e-09, -1.2993285267159926e-11, 6.739255861535915e-15, 1930.0, 0.004653560929000378, -9.647184015193488e-06, 4.166530231941579e-09, -9.647184015193488e-06, 2.6681352238711042e-08, -1.2966380573409264e-11, 4.166530231941579e-09, -1.2966380573409264e-11, 6.721814606119002e-15, 1931.0, 0.0046511562541127205, -9.637204129830934e-06, 4.160063848956952e-09, -9.637204129830934e-06, 2.6639934702643586e-08, -1.2939545268597641e-11, 4.160063848956952e-09, -1.2939545268597641e-11, 6.704427984327186e-15, 1932.0, 0.0046487539075315, -9.62723970587831e-06, 4.153610788648621e-09, -9.62723970587831e-06, 2.659860420806126e-08, -1.2912780220086795e-11, 4.153610788648621e-09, -1.2912780220086795e-11, 6.687094725611048e-15, 1933.0, 0.004646353889256716, -9.617289833840914e-06, 4.147171051016585e-09, -9.617289833840914e-06, 2.6557357202250387e-08, -1.288608369315325e-11,4.147171051016585e-09, -1.288608369315325e-11, 6.66981525348706e-15, 1934.0, 0.004643956199288368, -9.60735633270815e-06, 4.140744636060845e-09, -9.60735633270815e-06, 2.6516197237924644e-08, -1.2859455687797006e-11, 4.140744636060845e-09, -1.2859455687797006e-11, 6.652589567955223e-15, 1935.0, 0.0046415613032877445, -9.597437383490615e-06, 4.1343315437814e-09, -9.597437383490615e-06, 2.6475120762370352e-08, -1.28328970713798e-11, 4.1343315437814e-09,-1.28328970713798e-11, 6.635417245499063e-15, 1936.0, 0.004639168735593557, -9.58753389568301e-06, 4.127931774178251e-09, -9.58753389568301e-06, 2.6434129551944352e-08, -1.2806406976539897e-11, 4.127931774178251e-09, -1.2806406976539897e-11, 6.6182978626021065e-15, 1937.0, 0.004636778496205807, -9.577646778780036e-06, 4.121544883162187e-09, -9.577646778780036e-06, 2.6393223606646643e-08, -1.2779984535915556e-11, 4.121544883162187e-09, -1.2779984535915556e-11, 6.601231842780827e-15, 1938.0, 0.00463439105078578, -9.56777421379229e-06, 4.115171314822419e-09, -9.56777421379229e-06, 2.6352401150120386e-08, -1.2753630616868517e-11, 4.115171314822419e-09, -1.2753630616868517e-11, 6.584218339002277e-15, 1939.0, 0.00463200593367219, -9.557916200719774e-06, 4.108811069158946e-09, -9.557916200719774e-06, 2.631166218236558e-08, -1.2727345219398778e-11, 4.108811069158946e-09, -1.2727345219398778e-11, 6.567257351266457e-15, 1940.0, 0.004629623144865036, -9.548074558551889e-06, 4.102463702082559e-09, -9.548074558551889e-06, 2.6271008479739066e-08, -1.2701126608782864e-11, 4.102463702082559e-09, -1.2701126608782864e-11, 6.5503488795733665e-15, 1941.0, 0.004627242684364319, -9.538247468299232e-06, 4.096129657682468e-09, -9.538247468299232e-06, 2.6230438265884004e-08, -1.2674975652382514e-11, 4.096129657682468e-09, -1.2674975652382514e-11, 6.533492500406532e-15, 1942.0, 0.0046248650178313255, -9.528435839456506e-06, 4.089808491869462e-09, -9.528435839456506e-06, 2.6189951540800394e-08, -1.2648892350197727e-11, 4.089808491869462e-09, -1.2648892350197727e-11, 6.516688213765954e-15, 1943.0, 0.004622489679604769, -9.518638762529008e-06, 4.083500204643542e-09, -9.518638762529008e-06, 2.6149548304488235e-08, -1.2622875834866765e-11, 4.083500204643542e-09, -1.2622875834866765e-11, 6.499936019651632e-15, 1944.0, 0.0046201166696846485, -9.50885714701144e-06, 4.077205240093917e-09, -9.50885714701144e-06, 2.610922678059069e-08, -1.2596926106389628e-11, 4.077205240093917e-09, -1.2596926106389628e-11, 6.483235071030619e-15, 1945.0, 0.004617745988070965, -9.499090992903803e-06, 4.0709227100421685e-09, -9.499090992903803e-06, 2.6068988745464594e-08, -1.2571043164766316e-11, 4.0709227100421685e-09, -1.2571043164766316e-11, 6.466585791419389e-15, 1946.0, 0.004615378100425005, -9.489339390711393e-06, 4.064653502666715e-09, -9.489339390711393e-06, 2.602883419910995e-08, -1.2545226142635091e-11, 4.064653502666715e-09, -1.2545226142635091e-11, 6.449987757301467e-15, 1947.0, 0.004613012541085482, -9.479603249928914e-06, 4.058396729789138e-09, -9.479603249928914e-06, 2.598876136516992e-08, -1.2519475907357691e-11, 4.058396729789138e-09, -1.2519475907357691e-11, 6.433440968676854e-15, 1948.0, 0.004610649310052395, -9.469881661061663e-06,4.052153279587856e-09, -9.469881661061663e-06, 2.5948772020001343e-08, -1.2493791591572379e-11, 4.052153279587856e-09, -1.2493791591572379e-11, 6.416945002029077e-15, 1949.0, 0.004608288407325745, -9.460175533604342e-06, 4.0459222638844494e-09, -9.460175533604342e-06, 2.5908862610890537e-08, -1.2468173195279153e-11, 4.0459222638844494e-09, -1.2468173195279153e-11, 6.400499857358135e-15, 1950.0, 0.004605930298566818, -9.45048395806225e-06, 4.039704126768129e-09,-9.45048395806225e-06, 2.5869036690551184e-08, -1.2442620718478015e-11, 4.039704126768129e-09, -1.2442620718478015e-11, 6.384105111147554e-15, 1951.0, 0.004603574052453041, -9.440806934435386e-06, 4.033498868238894e-09, -9.440806934435386e-06, 2.5829290706269603e-08, -1.2417133293807225e-11, 4.033498868238894e-09, -1.2417133293807225e-11, 6.367760763397335e-15, 1952.0, 0.004601220600306988, -9.431145372218452e-06, 4.027306044207535e-09, -9.431145372218452e-06, 2.5789628210759474e-08, -1.2391710921266785e-11, 4.027306044207535e-09, -1.2391710921266785e-11, 6.351466390591004e-15, 1953.0, 0.004598869476467371, -9.421498361916747e-06, 4.021126098763261e-09, -9.421498361916747e-06, 2.575004565130712e-08, -1.2366353600856694e-11, 4.021126098763261e-09, -1.2366353600856694e-11, 6.335222416245035e-15, 1954.0, 0.004596520680934191, -9.41186590353027e-06, 4.014958587816864e-09, -9.41186590353027e-06, 2.5710543027912536e-08, -1.2341061332576952e-11, 4.014958587816864e-09, -1.2341061332576952e-11, 6.31902799332648e-15, 1955.0, 0.004594174213707447, -9.402248906553723e-06, 4.008803955457552e-09, -9.402248906553723e-06, 2.5671122116932565e-08, -1.231583411642756e-11, 4.008803955457552e-09, -1.231583411642756e-11, 6.302883121835339e-15, 1956.0, 0.004591830540448427, -9.392646461492404e-06, 4.0026617575961154e-09, -9.392646461492404e-06, 2.5631782918367207e-08, -1.2290671085046778e-11, 4.0026617575961154e-09, -1.2290671085046778e-11, 6.2867882252880865e-15, 1957.0, 0.004589488729834557, -9.383057658851612e-06, 3.996531994232555e-09, -9.383057658851612e-06, 2.5592523655859623e-08, -1.226557137107287e-11, 3.996531994232555e-09, -1.226557137107287e-11, 6.270742033135301e-15, 1958.0, 0.00458714971318841, -9.37348431762075e-06, 3.99041510945608e-09, -9.37348431762075e-06, 2.555334255305297e-08, -1.224053670922931e-11,3.99041510945608e-09, -1.224053670922931e-11, 6.25474539240993e-15, 1959.0, 0.0045848130248487, -9.363926437799819e-06, 3.9843102150882714e-09, -9.363926437799819e-06, 2.5514243162660932e-08, -1.2215565364792624e-11, 3.9843102150882714e-09, -1.2215565364792624e-11, 6.238797456079026e-15, 1960.0, 0.0045824781991541386, -9.354382200399414e-06, 3.978218199307548e-09, -9.354382200399414e-06, 2.5475223708326666e-08, -1.219065820512455e-11, 3.978218199307548e-09,-1.219065820512455e-11, 6.222898647659063e-15, 1961.0, 0.004580146167427301, -9.344852514914237e-06, 3.972138173935491e-09, -9.344852514914237e-06, 2.5436282413693334e-08, -1.2165814362863347e-11, 3.972138173935491e-09, -1.2165814362863347e-11, 6.207048120117093e-15, 1962.0, 0.004577816464006901, -9.335337381344289e-06, 3.9660710271505195e-09, -9.335337381344289e-06, 2.5397421055117775e-08, -1.2141032970647281e-11, 3.9660710271505195e-09, -1.2141032970647281e-11, 6.191245873453117e-15, 1963.0, 0.004575489554554224, -9.325836799689569e-06, 3.960015870774214e-09, -9.325836799689569e-06, 2.535863963259999e-08, -1.2116315763199825e-11, 3.960015870774214e-09, -1.2116315763199825e-11, 6.175491907667134e-15, 1964.0, 0.0045731645077466965, -9.316351679444779e-06, 3.953973148895784e-09, -9.316351679444779e-06, 2.5319936369783136e-08, -1.2091661005797505e-11, 3.953973148895784e-09, -1.2091661005797505e-11, 6.159786222759145e-15, 1965.0, 0.0045708417892456055, -9.306880201620515e-06, 3.94794241742602e-09, -9.306880201620515e-06, 2.5281311266667217e-08, -1.206706869844032e-11, 3.94794241742602e-09, -1.206706869844032e-11, 6.1441283952126755e-15, 1966.0, 0.004568521399050951, -9.297422366216779e-06, 3.941924564543342e-09, -9.297422366216779e-06, 2.524276609960907e-08, -1.204253884112827e-11, 3.941924564543342e-09, -1.204253884112827e-11, 6.128518425027726e-15, 1967.0, 0.00456620380282402, -9.287979992222972e-06, 3.93591825798012e-09, -9.287979992222972e-06, 2.520429731589502e-08, -1.2018071433861355e-11, 3.93591825798012e-09, -1.2018071433861355e-11, 6.112955888687823e-15, 1968.0, 0.004563888069242239, -9.278552170144394e-06, 3.929924385914774e-09, -9.278552170144394e-06, 2.516590846823874e-08, -1.1993666476639575e-11, 3.929924385914774e-09, -1.1993666476639575e-11, 6.097440786192966e-15, 1969.0, 0.0045615751296281815, -9.269137990486342e-06, 3.923942948347303e-09, -9.269137990486342e-06, 2.5127597780283395e-08, -1.1969323102101193e-11, 3.923942948347303e-09, -1.1969323102101193e-11, 6.081973117543155e-15, 1970.0, 0.004559264052659273, -9.25973836274352e-06, 3.917973501188499e-09, -9.25973836274352e-06, 2.5089363475672144e-08, -1.1945041310246207e-11, 3.917973501188499e-09, -1.1945041310246207e-11, 6.066552035705443e-15, 1971.0, 0.004556955769658089, -9.250353286915924e-06, 3.91201604443836e-09, -9.250353286915924e-06, 2.5051207330761827e-08, -1.1920821101074619e-11, 3.91201604443836e-09, -1.1920821101074619e-11, 6.051178387712778e-15, 1972.0, 0.004554649814963341, -9.240981853508856e-06, 3.906070578096887e-09, -9.240981853508856e-06, 2.5013127569195603e-08, -1.1896662474586428e-11, 3.906070578096887e-09, -1.1896662474586428e-11, 6.0358509030157374e-15, 1973.0, 0.004552345722913742, -9.231625881511718e-06,3.9001375462532906e-09, -9.231625881511718e-06, 2.4975125967330314e-08, -1.1872564563419896e-11, 3.9001375462532906e-09, -1.1872564563419896e-11, 6.02057042864727e-15, 1974.0, 0.004550044424831867, -9.222282642440405e-06, 3.89421606072915e-09, -9.222282642440405e-06, 2.493720074880912e-08, -1.1848528234936762e-11, 3.89421606072915e-09, -1.1848528234936762e-11, 6.005336117574428e-15, 1975.0, 0.004547744989395142, -9.212954864779022e-06, 3.888307009702885e-09,-9.212954864779022e-06, 2.4899353689988857e-08, -1.1824552621775286e-11, 3.888307009702885e-09, -1.1824552621775286e-11, 5.990147969797211e-15, 1976.0, 0.00454544834792614, -9.203640729538165e-06, 3.882409504996076e-09, -9.203640729538165e-06, 2.486158123815585e-08, -1.1800636856573732e-11, 3.882409504996076e-09, -1.1800636856573732e-11, 5.975005985315619e-15, 1977.0, 0.004543154034763575, -9.194340236717835e-06, 3.876524434787143e-09, -9.194340236717835e-06, 2.4823886946023777e-08, -1.1776782674055575e-11, 3.876524434787143e-09, -1.1776782674055575e-11, 5.959910164129653e-15, 1978.0, 0.004540861584246159, -9.185054295812733e-06, 3.870650910897666e-09, -9.185054295812733e-06, 2.4786267260878958e-08, -1.1752988339497339e-11, 3.870650910897666e-09, -1.1752988339497339e-11, 5.944860082722839e-15, 1979.0, 0.0045385719276964664, -9.175781997328158e-06, 3.864788933327645e-09, -9.175781997328158e-06, 2.4748723959078234e-08, -1.1729253852899024e-11, 3.864788933327645e-09, -1.1729253852899024e-11, 5.9298553175787024e-15, 1980.0, 0.0045362841337919235, -9.166524250758812e-06, 3.8589393902555e-09, -9.166524250758812e-06, 2.4711257040621604e-08, -1.170557921426063e-11, 3.8589393902555e-09, -1.170557921426063e-11, 5.914895868697244e-15, 1981.0, 0.004533998668193817, -9.157280146609992e-06, 3.853101393502811e-09, -9.157280146609992e-06, 2.467386472915223e-08, -1.1681964423582158e-11, 3.853101393502811e-09, -1.1681964423582158e-11, 5.899981736078464e-15, 1982.0, 0.004531715996563435, -9.1480505943764e-06, 3.8472749430695785e-09, -9.1480505943764e-06, 2.4636548801026947e-08, -1.165840861350187e-11, 3.8472749430695785e-09, -1.165840861350187e-11, 5.885112919722362e-15, 1983.0, 0.004529435187578201, -9.138834684563335e-06, 3.841460483045012e-09, -9.138834684563335e-06, 2.459930747988892e-08, -1.1634912651381502e-11,3.841460483045012e-09, -1.1634912651381502e-11, 5.870288996112465e-15, 1984.0, 0.0045271567068994045, -9.129632417170797e-06, 3.835657569339901e-09, -9.129632417170797e-06, 2.456214076573815e-08, -1.1611475669859317e-11, 3.835657569339901e-09, -1.1611475669859317e-11, 5.8555099652487716e-15, 1985.0, 0.004524880554527044, -9.120443792198785e-06, 3.829866646043456e-09, -9.120443792198785e-06, 2.4525050434931472e-08, -1.1588098536297053e-11, 3.829866646043456e-09,-1.1588098536297053e-11, 5.8407754036148094e-15, 1986.0, 0.004522606730461121, -9.111269719142001e-06, 3.8240868249772575e-09, -9.111269719142001e-06, 2.448803293475521e-08, -1.1564779515971235e-11, 3.8240868249772575e-09, -1.1564779515971235e-11, 5.826085311210578e-15, 1987.0, 0.0045203352347016335, -9.102109288505744e-06, 3.818318994319725e-09, -9.102109288505744e-06, 2.4451091817923043e-08, -1.1541518608881862e-11, 3.818318994319725e-09, -1.1541518608881862e-11, 5.8114396880360776e-15, 1988.0, 0.004518066067248583, -9.092962500290014e-06, 3.812562709981648e-09, -9.092962500290014e-06, 2.441422353172129e-08, -1.1518316682390672e-11, 3.812562709981648e-09, -1.1518316682390672e-11, 5.796837687058361e-15, 1989.0, 0.004515799228101969, -9.08382935449481e-06, 3.806817971963028e-09, -9.08382935449481e-06, 2.4377429852506793e-08, -1.1495172869135928e-11, 3.806817971963028e-09, -1.1495172869135928e-11, 5.782280155310375e-15, 1990.0, 0.004513534717261791, -9.074710760614835e-06, 3.8010852243530735e-09, -9.074710760614835e-06, 2.434070900392271e-08, -1.1472087169117628e-11, 3.8010852243530735e-09, -1.1472087169117628e-11, 5.767766669275646e-15, 1991.0, 0.004511272069066763, -9.065604899660684e-06, 3.795363578973365e-09, -9.065604899660684e-06, 2.4304062762325884e-08, -1.1449059582335774e-11, 3.795363578973365e-09, -1.1449059582335774e-11, 5.753296381921227e-15, 1992.0, 0.0045090122148394585, -9.056513590621762e-06, 3.789653035823903e-09, -9.056513590621762e-06, 2.4267491127716312e-08, -1.1426090108790365e-11, 3.789653035823903e-09, -1.1426090108790365e-11, 5.7388701402800654e-15, 1993.0, 0.004506754223257303, -9.047435014508665e-06, 3.783954483083107e-09, -9.047435014508665e-06, 2.4230990547380316e-08, -1.1403177881119664e-11, 3.783954483083107e-09, -1.1403177881119664e-11, 5.72448667380274e-15, 1994.0, 0.0045044985599815845, -9.038370990310796e-06, 3.7782670325725576e-09, -9.038370990310796e-06, 2.4194564574031574e-08, -1.138032289932367e-11, 3.7782670325725576e-09, -1.138032289932367e-11, 5.7101468295221985e-15, 1995.0, 0.004502245225012302, -9.029319699038751e-06, 3.772591128381464e-09, -9.029319699038751e-06, 2.4158211431313248e-08, -1.1357525163402382e-11, 3.772591128381464e-09, -1.1357525163402382e-11, 5.695850183921967e-15, 1996.0, 0.004499994218349457, -9.020282959681936e-06, 3.766926770509826e-09, -9.020282959681936e-06, 2.4121931119225337e-08, -1.1334784673355802e-11, 3.766926770509826e-09, -1.1334784673355802e-11, 5.6815963134855714e-15, 1997.0, 0.00449774507433176, -9.011258953250945e-06, 3.761273514868435e-09, -9.011258953250945e-06, 2.4085723637767842e-08, -1.1312100561822191e-11, 3.761273514868435e-09, -1.1312100561822191e-11, 5.667385218213012e-15, 1998.0, 0.004495498724281788, -9.00224858924048e-06,3.75563136145729e-09, -9.00224858924048e-06, 2.4049588986940762e-08, -1.1289473696163288e-11, 3.75563136145729e-09, -1.1289473696163288e-11, 5.653216474587816e-15, 1999.0, 0.004493254236876965, -8.993251867650542e-06, 3.750000754365601e-09, -8.993251867650542e-06, 2.4013525390387258e-08, -1.1266903209017354e-11, 3.750000754365601e-09, -1.1266903209017354e-11, 5.639090506126456e-15, 2000.0, 0.004491012077778578, -8.984268788481131e-06, 3.744381693593368e-09,-8.984268788481131e-06, 2.397753462446417e-08, -1.1244389100384389e-11, 3.744381693593368e-09, -1.1244389100384389e-11, 5.625006889312459e-15, 2001.0, 0.004488772246986628, -8.975299351732247e-06, 3.738773290962172e-09, -8.975299351732247e-06, 2.3941614912814657e-08, -1.1221931370264393e-11, 3.738773290962172e-09, -1.1221931370264393e-11, 5.610965624145824e-15, 2002.0, 0.004486534278839827, -8.966343557403889e-06, 3.7331764346504315e-09, -8.966343557403889e-06, 2.390576803179556e-08, -1.1199529151295629e-11, 3.7331764346504315e-09, -1.1199529151295629e-11, 5.596966287110079e-15, 2003.0, 0.0044842991046607494, -8.957400496001355e-06, 3.727590680568937e-09, -8.957400496001355e-06, 2.386999220505004e-08, -1.1177183310839833e-11, 3.727590680568937e-09, -1.1177183310839833e-11, 5.583008454688749e-15, 2004.0, 0.0044820657931268215, -8.948471077019349e-06, 3.7220160287176896e-09, -8.948471077019349e-06, 2.3834287432578094e-08, -1.115489298153527e-11, 3.7220160287176896e-09, -1.115489298153527e-11, 5.5690929739147816e-15, 2005.0, 0.00447983480989933, -8.939554390963167e-06, 3.716452479096688e-09, -8.939554390963167e-06, 2.3798653714379725e-08, -1.1132658163381937e-11, 3.716452479096688e-09, -1.1132658163381937e-11, 5.555218574238756e-15, 2006.0, 0.004477606154978275, -8.930652256822214e-06, 3.7109000317059326e-09, -8.930652256822214e-06, 2.3763091050454932e-08, -1.1110478856379835e-11, 3.7109000317059326e-09, -1.1110478856379835e-11, 5.54138610269362e-15, 2007.0, 0.00447537936270237, -8.921761946112383e-06, 3.7053584645008186e-09, -8.921761946112383e-06, 2.3727599440803715e-08, -1.1088355060528965e-11, 3.7053584645008186e-09, -1.1088355060528965e-11, 5.527594712246425e-15, 2008.0, 0.004473154898732901, -8.912886187317781e-06, 3.699828221570556e-09, -8.912886187317781e-06, 2.3692178885426074e-08, -1.1066285908467588e-11,3.699828221570556e-09, -1.1066285908467588e-11, 5.513844402897173e-15, 2009.0, 0.004470933228731155, -8.904023161449004e-06, 3.6943088588259343e-09, -8.904023161449004e-06, 2.365682760796517e-08, -1.1044271400195704e-11, 3.6943088588259343e-09, -1.1044271400195704e-11, 5.500135174645862e-15, 2010.0, 0.004468712955713272, -8.895172868506052e-06, 3.688800376266954e-09, -8.895172868506052e-06, 2.362154738477784e-08, -1.1022311535713314e-11, 3.688800376266954e-09,-1.1022311535713314e-11, 5.486466603976019e-15, 2011.0, 0.004466495476663113, -8.886336217983626e-06, 3.6833027738936153e-09, -8.886336217983626e-06, 2.358633821586409e-08, -1.1000407182382155e-11, 3.6833027738936153e-09, -1.1000407182382155e-11, 5.472839114404118e-15, 2012.0, 0.004464279860258102, -8.877513209881727e-06, 3.6778162737505227e-09, -8.877513209881727e-06, 2.3551198324867073e-08, -1.0978556605478751e-11, 3.6778162737505227e-09, -1.0978556605478751e-11, 5.459252282413686e-15, 2013.0, 0.004462066572159529, -8.868702934705652e-06, 3.6723406537930714e-09, -8.868702934705652e-06, 2.3516127711786794e-08, -1.0956759805003102e-11, 3.6723406537930714e-09, -1.0956759805003102e-11, 5.445705684488248e-15, 2014.0, 0.004459855612367392, -8.859905392455403e-06, 3.6668759140212615e-09, -8.859905392455403e-06, 2.348112637662325e-08, -1.0935017648316947e-11, 3.6668759140212615e-09, -1.0935017648316947e-11, 5.432199320627804e-15, 2015.0, 0.004457646515220404, -8.85112149262568e-06, 3.661421832390488e-09, -8.85112149262568e-06, 2.3446196095733285e-08, -1.0913329268058547e-11, 3.661421832390488e-09, -1.0913329268058547e-11, 5.418733614348829e-15, 2016.0, 0.004455439746379852, -8.842350325721782e-06, 3.6559788529899606e-09, -8.842350325721782e-06, 2.3411333316403216e-08, -1.0891694664227902e-11, 3.6559788529899606e-09, -1.0891694664227902e-11, 5.405307295101901e-15, 2017.0, 0.0044532353058457375, -8.833591891743708e-06, 3.6505465317304697e-09, -8.833591891743708e-06, 2.3376539814989883e-08, -1.0870113836825013e-11, 3.6505465317304697e-09, -1.0870113836825013e-11, 5.391921209919968e-15, 2018.0, 0.004451032727956772, -8.824847100186162e-06, 3.6451248686120152e-09, -8.824847100186162e-06, 2.3341815591493287e-08, -1.084858591848814e-11, 3.6451248686120152e-09, -1.084858591848814e-11, 5.378574935286555e-15, 2019.0, 0.004448832478374243, -8.81611504155444e-06, 3.639713863634597e-09, -8.81611504155444e-06, 2.3307160645913427e-08, -1.0827111776579024e-11, 3.639713863634597e-09, -1.0827111776579024e-11, 5.365268471201664e-15, 2020.0, 0.00444663455709815, -8.807395715848543e-06, 3.6343137388428204e-09, -8.807395715848543e-06, 2.3272573201893465e-08, -1.0805690543735924e-11, 3.6343137388428204e-09, -1.0805690543735924e-11, 5.352000970632346e-15, 2021.0, 0.004444438498467207, -8.798690032563172e-06, 3.62892427219208e-09, -8.798690032563172e-06, 2.323805503579024e-08, -1.0784322219958842e-11, 3.62892427219208e-09, -1.0784322219958842e-11, 5.3387732806115494e-15, 2022.0, 0.0044422447681427, -8.789996172708925e-06, 3.623545463682376e-09, -8.789996172708925e-06, 2.320360614760375e-08, -1.0763005937886039e-11, 3.623545463682376e-09, -1.0763005937886039e-11, 5.325584554106326e-15, 2023.0, 0.00444005336612463, -8.781315955275204e-06,3.6181773133137085e-09, -8.781315955275204e-06, 2.316922298462032e-08, -1.0741743432240991e-11, 3.6181773133137085e-09, -1.0741743432240991e-11, 5.312434791116677e-15, 2024.0, 0.004437863826751709, -8.772648470767308e-06, 3.6128195990414724e-09, -8.772648470767308e-06, 2.3134909099553624e-08, -1.0720532968300223e-11, 3.6128195990414724e-09, -1.0720532968300223e-11, 5.299324415159075e-15, 2025.0, 0.0044356766156852245, -8.763993719185237e-06, 3.6074725429102728e-09,-8.763993719185237e-06, 2.3100662716046827e-08, -1.0699374546063734e-11, 3.6074725429102728e-09, -1.0699374546063734e-11, 5.286252579200573e-15, 2026.0, 0.004433491732925177, -8.75535170052899e-06, 3.6021361449201095e-09, -8.75535170052899e-06, 2.3066483834099927e-08, -1.0678269032893262e-11, 3.6021361449201095e-09, -1.0678269032893262e-11, 5.273219283241171e-15, 2027.0, 0.004431308712810278, -8.746722414798569e-06, 3.5968101830263777e-09, -8.746722414798569e-06, 2.3032372453712924e-08, -1.0657214694065331e-11, 3.5968101830263777e-09, -1.0657214694065331e-11, 5.260224527280869e-15, 2028.0, 0.004429128021001816, -8.738106771488674e-06, 3.5914946572290773e-09, -8.738106771488674e-06, 2.2998328574885818e-08, -1.0636213264303418e-11, 3.5914946572290773e-09, -1.0636213264303418e-11, 5.247268311319667e-15, 2029.0, 0.00442694965749979, -8.729502951609902e-06, 3.5861895675282085e-09, -8.729502951609902e-06, 2.296435042126177e-08, -1.0615263008884046e-11, 3.5861895675282085e-09, -1.0615263008884046e-11, 5.234350635357566e-15, 2030.0, 0.004424773156642914, -8.720911864656955e-06, 3.580895135968376e-09, -8.720911864656955e-06, 2.293043976919762e-08, -1.0594363927807215e-11, 3.580895135968376e-09, -1.0594363927807215e-11, 5.221470652361617e-15, 2031.0, 0.004422598518431187, -8.712333510629833e-06, 3.57561091846037e-09, -8.712333510629833e-06, 2.2896596618693366e-08, -1.0573516888434664e-11, 3.57561091846037e-09, -1.0573516888434664e-11, 5.208628785848294e-15, 2032.0, 0.004420426674187183, -8.703767889528535e-06, 3.5703371370487957e-09, -8.703767889528535e-06, 2.286281919339217e-08, -1.0552720156042916e-11, 3.5703371370487957e-09, -1.0552720156042916e-11, 5.195825035817598e-15, 2033.0, 0.004418256226927042, -8.695215001353063e-06, 3.565073791733653e-09, -8.695215001353063e-06, 2.282910926965087e-08, -1.0531975465355448e-11,3.565073791733653e-09, -1.0531975465355448e-11, 5.183058978753055e-15, 2034.0, 0.0044160885736346245, -8.686673936608713e-06, 3.5598206604703364e-09, -8.686673936608713e-06, 2.279546507111263e-08, -1.0511281081648782e-11, 3.5598206604703364e-09, -1.0511281081648782e-11, 5.170330191138191e-15, 2035.0, 0.004413922782987356, -8.67814651428489e-06, 3.5545779653034515e-09, -8.67814651428489e-06, 2.2761886597777448e-08, -1.0490637872284658e-11, 3.5545779653034515e-09,-1.0490637872284658e-11, 5.15763909648948e-15, 2036.0, 0.004411758854985237, -8.66963091539219e-06, 3.549345484188393e-09, -8.66963091539219e-06, 2.2728373849645322e-08, -1.0470045837263076e-11, 3.549345484188393e-09, -1.0470045837263076e-11, 5.1449856948069216e-15, 2037.0, 0.004409597255289555, -8.661128049425315e-06, 3.5441232171251613e-09, -8.661128049425315e-06, 2.2694926826716255e-08, -1.0449503241860558e-11, 3.5441232171251613e-09, -1.0449503241860558e-11, 5.132369139057569e-15, 2038.0, 0.004407437983900309, -8.652637916384265e-06, 3.538911386158361e-09, -8.652637916384265e-06, 2.2661545528990246e-08, -1.0429011820800582e-11, 3.538911386158361e-09, -1.0429011820800582e-11, 5.119789852757895e-15, 2039.0, 0.004405280575156212, -8.64416051626904e-06, 3.5337095471987823e-09, -8.64416051626904e-06, 2.2628229956467294e-08, -1.0408569839359672e-11, 3.5337095471987823e-09, -1.0408569839359672e-11, 5.107247412391427e-15, 2040.0, 0.004403125494718552, -8.635694939584937e-06, 3.528518144335635e-09, -8.635694939584937e-06, 2.25949801091474e-08, -1.0388179032261302e-11, 3.528518144335635e-09, -1.0388179032261302e-11, 5.0947418179581646e-15, 2041.0, 0.004400972276926041, -8.62724209582666e-06, 3.5233367334797094e-09, -8.62724209582666e-06, 2.2561795987030564e-08, -1.036783679742026e-11, 3.5233367334797094e-09, -1.036783679742026e-11, 5.082273069458108e-15, 2042.0, 0.004398821387439966, -8.618801984994207e-06, 3.5181655366756104e-09, -8.618801984994207e-06, 2.2528674037403107e-08, -1.034754573692176e-11, 3.5181655366756104e-09, -1.034754573692176e-11, 5.069841166891256e-15, 2043.0, 0.004396672360599041, -8.610373697592877e-06, 3.513004331878733e-09, -8.610373697592877e-06, 2.2495619589335547e-08, -1.0327303248680586e-11, 3.513004331878733e-09, -1.0327303248680586e-11, 5.057445263224663e-15, 2044.0, 0.004394525662064552, -8.601958143117372e-06, 3.507853341133682e-09, -8.601958143117372e-06, 2.2462629090114206e-08, -1.0307110200058478e-11, 3.507853341133682e-09, -1.0307110200058478e-11, 5.045085781974802e-15, 2045.0, 0.004392380826175213, -8.59355441207299e-06, 3.502712342395853e-09, -8.59355441207299e-06, 2.2429702539739083e-08, -1.0286967458417173e-11, 3.502712342395853e-09, -1.0286967458417173e-11, 5.032762723141673e-15, 2046.0, 0.00439023831859231, -8.585163413954433e-06, 3.497581335665245e-09, -8.585163413954433e-06, 2.2396839938210178e-08, -1.0266873289033196e-11, 3.497581335665245e-09, -1.0266873289033196e-11, 5.020475663208802e-15, 2047.0, 0.004388097673654556, -8.576784239266999e-06, 3.492460542986464e-09, -8.576784239266999e-06, 2.236404306188433e-08, -1.0246827691906546e-11, 3.492460542986464e-09, -1.0246827691906546e-11, 5.0082246021761895e-15, 2048.0, 0.004385959357023239, -8.56841779750539e-06,3.4873495202702998e-09, -8.56841779750539e-06, 2.2331308358047863e-08, -1.0226831534398961e-11, 3.4873495202702998e-09, -1.0226831534398961e-11, 4.996009540043835e-15, 2049.0, 0.004383822903037071, -8.560063179174904e-06, 3.482248711605962e-09, -8.560063179174904e-06, 2.2298637603057614e-08, -1.0206883949148704e-11, 3.482248711605962e-09, -1.0206883949148704e-11, 4.983830053295266e-15, 2050.0, 0.00438168877735734, -8.551721293770242e-06, 3.477157672904241e-09,-8.551721293770242e-06, 2.2266032573270422e-08, -1.0186984936155774e-11, 3.477157672904241e-09, -1.0186984936155774e-11, 4.971686141930481e-15, 2051.0, 0.004379556514322758, -8.543391231796704e-06, 3.4720766262097413e-09, -8.543391231796704e-06, 2.223348971597261e-08, -1.0167134495420171e-11, 3.4720766262097413e-09, -1.0167134495420171e-11, 4.9595778059494805e-15, 2052.0, 0.004377426579594612, -8.53507390274899e-06, 3.4670053494778585e-09, -8.53507390274899e-06, 2.2201010807521016e-08, -1.0147332626941896e-11, 3.4670053494778585e-09, -1.0147332626941896e-11, 4.947505045352265e-15, 2053.0, 0.004375298507511616, -8.5267683971324e-06, 3.4619440647531974e-09, -8.5267683971324e-06, 2.21685940715588e-08, -1.012757846335921e-11, 3.4619440647531974e-09, -1.012757846335921e-11, 4.9354674366223605e-15, 2054.0, 0.004373172298073769, -8.518474714946933e-06, 3.456892549991153e-09, -8.518474714946933e-06, 2.2136241284442804e-08, -1.0107872872033852e-11, 3.456892549991153e-09, -1.0107872872033852e-11, 4.9234645562432934e-15, 2055.0, 0.004371048416942358, -8.510192856192589e-06, 3.451850805191725e-09, -8.510192856192589e-06, 2.2103950669816186e-08, -1.0088214985604083e-11, 3.451850805191725e-09, -1.0088214985604083e-11, 4.911497251248011e-15, 2056.0, 0.004368926398456097, -8.50192373036407e-06, 3.446819052399519e-09, -8.50192373036407e-06, 2.2071724004035786e-08, -1.0068604804069903e-11, 3.446819052399519e-09, -1.0068604804069903e-11, 4.8995642510870924e-15, 2057.0, 0.004366806708276272, -8.493666427966673e-06, 3.4417968475253247e-09, -8.493666427966673e-06, 2.2039557734387927e-08, -1.0049042327431312e-11, 3.4417968475253247e-09, -1.0049042327431312e-11, 4.887666402793485e-15, 2058.0, 0.004364688880741596, -8.4854209490004e-06, 3.436784634658352e-09, -8.4854209490004e-06, 2.2007455413586285e-08, -1.0029527555688311e-11,3.436784634658352e-09, -1.0029527555688311e-11, 4.875803282850715e-15, 2059.0, 0.004362573381513357, -8.477188202959951e-06, 3.431781969709391e-09, -8.477188202959951e-06, 2.1975415265274023e-08, -1.0010059621479162e-11, 3.431781969709391e-09, -1.0010059621479162e-11, 4.8639744677423085e-15, 2060.0, 0.004360459744930267, -8.468966370855924e-06, 3.4267890747230467e-09, -8.468966370855924e-06, 2.194343906580798e-08, -9.990638524803863e-12, 3.4267890747230467e-09,-9.990638524803863e-12, 4.852179957468266e-15, 2061.0, 0.004358347970992327, -8.460757271677721e-06, 3.421805949699319e-09, -8.460757271677721e-06, 2.1911523262474475e-08, -9.971265133024154e-12, 3.421805949699319e-09, -9.971265133024154e-12, 4.840420175545061e-15, 2062.0, 0.004356238525360823, -8.452559995930642e-06, 3.4168323725936034e-09, -8.452559995930642e-06, 2.187966785527351e-08, -9.951938578778297e-12, 3.4168323725936034e-09, -9.951938578778297e-12, 4.828694274939746e-15, 2063.0, 0.004354130942374468, -8.444374543614686e-06, 3.4118683434058994e-09, -8.444374543614686e-06, 2.1847876396918764e-08, -9.93265886206629e-12, 3.4118683434058994e-09, -9.93265886206629e-12, 4.817002679168795e-15, 2064.0, 0.0043520256876945496, -8.436200914729852e-06, 3.406914084180812e-09, -8.436200914729852e-06, 2.1816145334696557e-08, -9.913425982888135e-12, 3.406914084180812e-09, -9.913425982888135e-12, 4.80534454119926e-15, 2065.0, 0.0043499222956597805, -8.428039109276142e-06, 3.4019693728737366e-09, -8.428039109276142e-06, 2.178447644496373e-08, -9.894239941243832e-12, 3.4019693728737366e-09, -9.894239941243832e-12, 4.7937207080640896e-15, 2066.0, 0.004347820766270161, -8.419889127253555e-06, 3.397034209484673e-09, -8.419889127253555e-06, 2.175286795136344e-08, -9.875099869771642e-12, 3.397034209484673e-09, -9.875099869771642e-12, 4.782130756246809e-15, 2067.0, 0.00434572109952569, -8.41175096866209e-06, 3.392108594013621e-09, -8.41175096866209e-06, 2.1721321630252532e-08, -9.856005768471565e-12, 3.392108594013621e-09, -9.856005768471565e-12, 4.770573838714471e-15, 2068.0, 0.004343623761087656, -8.40362463350175e-06, 3.3871925264605807e-09, -8.40362463350175e-06, 2.1689835705274163e-08, -9.836957637343602e-12, 3.3871925264605807e-09, -9.836957637343602e-12, 4.759050802500024e-15, 2069.0, 0.0043415287509560585, -8.395510121772531e-06, 3.3822860068255522e-09, -8.395510121772531e-06, 2.1658410176428333e-08, -9.81795634374949e-12, 3.3822860068255522e-09, -9.81795634374949e-12, 4.747561224086993e-15, 2070.0, 0.004339435137808323, -8.387407433474436e-06, 3.3773888130639307e-09, -8.387407433474436e-06, 2.1627046820071882e-08, -9.799000152965753e-12, 3.3773888130639307e-09, -9.799000152965753e-12, 4.736104679958905e-15, 2071.0, 0.004337343852967024, -8.379316568607464e-06, 3.372501167220321e-09, -8.379316568607464e-06, 2.1595742083491132e-08, -9.78008993235413e-12, 3.372501167220321e-09, -9.78008993235413e-12, 4.72468117011576e-15, 2072.0, 0.004335254896432161, -8.371236617676914e-06, 3.367622847250118e-09, -8.371236617676914e-06, 2.156449951939976e-08, -9.76122568191462e-12, 3.367622847250118e-09, -9.76122568191462e-12, 4.713291118074031e-15, 2073.0, 0.004333167336881161, -8.363169399672188e-06,3.362754075197927e-09, -8.363169399672188e-06, 2.153331557508409e-08, -9.742406534285486e-12, 3.362754075197927e-09, -9.742406534285486e-12, 4.701933676800772e-15, 2074.0, 0.004331082105636597, -8.355113095603883e-06, 3.3578946290191425e-09, -8.355113095603883e-06, 2.1502192026900957e-08, -9.723632489466727e-12, 3.3578946290191425e-09, -9.723632489466727e-12, 4.6906092698124555e-15, 2075.0, 0.004328999202698469, -8.347068614966702e-06, 3.353044508713765e-09,-8.347068614966702e-06, 2.1471128874850365e-08, -9.704904414820081e-12, 3.353044508713765e-09, -9.704904414820081e-12, 4.679317473592608e-15, 2076.0, 0.004326917696744204, -8.339035957760643e-06, 3.3482037142817944e-09, -8.339035957760643e-06, 2.1440126118932312e-08, -9.686220575622073e-12, 3.3482037142817944e-09, -9.686220575622073e-12, 4.6680582881412306e-15, 2077.0, 0.0043248385190963745, -8.331015123985708e-06, 3.3433722457232307e-09, -8.331015123985708e-06, 2.140918198278996e-08, -9.66758183923444e-12, 3.3433722457232307e-09, -9.66758183923444e-12, 4.656831713458322e-15, 2078.0, 0.004322761204093695, -8.323005204147194e-06, 3.3385501030380738e-09, -8.323005204147194e-06, 2.1378298242780147e-08, -9.648988205657183e-12, 3.3385501030380738e-09, -9.648988205657183e-12, 4.645637326027409e-15, 2079.0, 0.004320686217397451, -8.315007107739802e-06, 3.3337370641817188e-09, -8.315007107739802e-06, 2.1347473122546035e-08, -9.630439674890301e-12, 3.3337370641817188e-09, -9.630439674890301e-12, 4.634475125848492e-15, 2080.0, 0.00431861262768507, -8.307020834763534e-06, 3.3289333511987707e-09, -8.307020834763534e-06, 2.131670839844446e-08, -9.611934512210318e-12, 3.3289333511987707e-09, -9.611934512210318e-12, 4.6233451129215706e-15, 2081.0, 0.004316541366279125, -8.299045475723688e-06, 3.3241389640892294e-09, -8.299045475723688e-06, 2.128600051776175e-08, -9.593474452340711e-12, 3.3241389640892294e-09, -9.593474452340711e-12, 4.612247710763118e-15, 2082.0, 0.00431447196751833, -8.291081940114964e-06, 3.319353902853095e-09, -8.291081940114964e-06, 2.1255353033211577e-08, -9.575058627919741e-12, 3.319353902853095e-09, -9.575058627919741e-12, 4.6011816488237146e-15, 2083.0, 0.0043124048970639706, -8.283130227937363e-06, 3.3145777234011575e-09, -8.283130227937363e-06, 2.1224764168437105e-08, -9.556687038947409e-12,3.3145777234011575e-09, -9.556687038947409e-12, 4.5901477741363064e-15, 2084.0, 0.004310339689254761, -8.275189429696184e-06, 3.309810869822627e-09, -8.275189429696184e-06, 2.1194233923438333e-08, -9.538359685423714e-12, 3.309810869822627e-09, -9.538359685423714e-12, 4.579145239667947e-15, 2085.0, 0.0043082763440907, -8.267259545391425e-06, 3.3050531200728983e-09, -8.267259545391425e-06, 2.116376229821526e-08, -9.520076567348656e-12, 3.3050531200728983e-09,-9.520076567348656e-12, 4.568174892451583e-15, 2086.0, 0.004306214861571789, -8.259342394012492e-06, 3.3003044741519716e-09, -8.259342394012492e-06, 2.113334929276789e-08, -9.50183594999876e-12, 3.3003044741519716e-09, -9.50183594999876e-12, 4.557235461937793e-15, 2087.0, 0.004304155241698027, -8.251435247075278e-06, 3.295564932059847e-09, -8.251435247075278e-06, 2.1102994907096218e-08, -9.48364043545924e-12, 3.295564932059847e-09, -9.48364043545924e-12, 4.546327795159526e-15, 2088.0, 0.004302097950130701, -8.243539923569188e-06, 3.290834493796524e-09, -8.243539923569188e-06, 2.1072697364843407e-08, -9.46548742164488e-12, 3.290834493796524e-09, -9.46548742164488e-12, 4.535451468600307e-15, 2089.0, 0.004300042521208525, -8.23565642349422e-06, 3.286112937317398e-09, -8.23565642349422e-06, 2.1042458442366296e-08, -9.44737777591742e-12, 3.286112937317398e-09, -9.44737777591742e-12, 4.524606482260137e-15, 2090.0, 0.004297988954931498, -8.227783837355673e-06, 3.281400706711679e-09, -8.227783837355673e-06, 2.1012278139664886e-08, -9.429312365638598e-12, 3.281400706711679e-09, -9.429312365638598e-12, 4.513792412622541e-15, 2091.0, 0.004295937716960907, -8.21992307464825e-06, 3.276697135845552e-09, -8.21992307464825e-06, 2.0982154680382337e-08, -9.411289456084937e-12, 3.276697135845552e-09, -9.411289456084937e-12, 4.50300925968752e-15, 2092.0, 0.004293887875974178, -8.212072316382546e-06, 3.272002890852832e-09, -8.212072316382546e-06, 2.0952089840875487e-08, -9.393309914618175e-12, 3.272002890852832e-09, -9.393309914618175e-12, 4.492257023455074e-15, 2093.0, 0.004291840363293886, -8.204234291042667e-06, 3.267317305599704e-09, -8.204234291042667e-06, 2.092208006843066e-08, -9.375372873876575e-12, 3.267317305599704e-09, -9.375372873876575e-12, 4.481535703925203e-15, 2094.0, 0.004289794713258743, -8.196406270144507e-06, 3.262640824175378e-09, -8.196406270144507e-06, 2.0892128915761532e-08, -9.357478333860136e-12, 3.262640824175378e-09, -9.357478333860136e-12, 4.470844877581433e-15, 2095.0, 0.00428775092586875, -8.18859007267747e-06, 3.257973224535249e-09, -8.18859007267747e-06, 2.0862236382868105e-08, -9.339627161930597e-12, 3.257973224535249e-09, -9.339627161930597e-12, 4.460184967940237e-15, 2096.0, 0.004285709001123905, -8.180784789146855e-06, 3.2533145066793168e-09, -8.180784789146855e-06, 2.08323989170367e-08, -9.321818490726219e-12, 3.2533145066793168e-09, -9.321818490726219e-12, 4.4495551279686695e-15, 2097.0, 0.004283669404685497, -8.172991329047363e-06, 3.2486648926521866e-09, -8.172991329047363e-06, 2.0802618294624153e-08, -9.304052320247003e-12, 3.2486648926521866e-09, -9.304052320247003e-12, 4.4389562046996765e-15, 2098.0, 0.004281631205230951, -8.16520787338959e-06,3.2440239383646485e-09, -8.16520787338959e-06, 2.077289451563047e-08, -9.28632778313121e-12, 3.2440239383646485e-09, -9.28632778313121e-12, 4.428386927583837e-15, 2099.0, 0.004279595334082842, -8.157436241162941e-06, 3.2393916438167025e-09, -8.157436241162941e-06, 2.0743229356412485e-08, -9.268645746740578e-12, 3.2393916438167025e-09, -9.268645746740578e-12, 4.417848567170573e-15, 2100.0, 0.004277561325579882, -8.149675522872712e-06, 3.2347684530975584e-09,-8.149675522872712e-06, 2.0713617487899683e-08, -9.251006211075108e-12, 3.2347684530975584e-09, -9.251006211075108e-12, 4.4073398529104624e-15, 2101.0, 0.004275529179722071, -8.141925718518905e-06, 3.2301539221180064e-09, -8.141925718518905e-06, 2.068406423916258e-08, -9.233408308773061e-12, 3.2301539221180064e-09, -9.233408308773061e-12, 4.396860784803506e-15, 2102.0, 0.004273498896509409, -8.134187737596221e-06, 3.2255482729226514e-09, -8.134187737596221e-06, 2.06545660574875e-08, -9.215852039834438e-12, 3.2255482729226514e-09, -9.215852039834438e-12, 4.3864122098826504e-15, 2103.0, 0.004271470941603184, -8.126459761115257e-06, 3.2209512834668885e-09, -8.126459761115257e-06, 2.062512471923128e-08, -9.198337404259238e-12, 3.2209512834668885e-09, -9.198337404259238e-12, 4.375993281114949e-15, 2104.0, 0.0042694443836808205, -8.118743608065415e-06, 3.2163629537507177e-09, -8.118743608065415e-06, 2.0595738448037082e-08, -9.180864402047462e-12, 3.2163629537507177e-09, -9.180864402047462e-12, 4.365603998500401e-15, 2105.0, 0.004267420154064894, -8.111037459457293e-06, 3.211783505818744e-09, -8.111037459457293e-06, 2.0566409020261744e-08, -9.163433033199109e-12, 3.211783505818744e-09, -9.163433033199109e-12, 4.355243938522534e-15, 2106.0, 0.004265397787094116, -8.103343134280294e-06, 3.207212495581757e-09, -8.103343134280294e-06, 2.0537134659548428e-08, -9.14604329771418e-12, 3.207212495581757e-09, -9.14604329771418e-12, 4.344913948214294e-15, 2107.0, 0.004263377282768488, -8.095659723039716e-06, 3.2026503671289674e-09, -8.095659723039716e-06, 2.0507915365897134e-08, -9.128694328230935e-12, 3.2026503671289674e-09, -9.128694328230935e-12, 4.334612757026261e-15, 2108.0, 0.004261358641088009, -8.08798722573556e-06, 3.19809689841577e-09, -8.08798722573556e-06, 2.04787529156647e-08, -9.111386992111115e-12,3.19809689841577e-09, -9.111386992111115e-12, 4.324341211991382e-15, 2109.0, 0.004259341862052679, -8.080324732873123e-06, 3.1935518673975594e-09, -8.080324732873123e-06, 2.0449643756137448e-08, -9.09412042199298e-12, 3.1935518673975594e-09, -9.09412042199298e-12, 4.314098889593183e-15, 2110.0, 0.0042573269456624985, -8.07267406344181e-06, 3.189015718163546e-09, -8.07267406344181e-06, 2.0420591440029057e-08, -9.07689461787653e-12, 3.189015718163546e-09,-9.07689461787653e-12, 4.30388536631519e-15, 2111.0, 0.004255313891917467, -8.065034307946917e-06, 3.1844880066245196e-09, -8.065034307946917e-06, 2.0391594190982687e-08, -9.059709579761765e-12, 3.1844880066245196e-09, -9.059709579761765e-12, 4.293701065673878e-15, 2112.0, 0.004253303166478872, -8.057404556893744e-06, 3.1799687327804804e-09, -8.057404556893744e-06, 2.03626502326415e-08, -9.042565307648687e-12, 3.1799687327804804e-09, -9.042565307648687e-12, 4.2835459876692464e-15, 2113.0, 0.004251293838024139, -8.049786629271694e-06, 3.1754581186760333e-09, -8.049786629271694e-06, 2.0333763117719172e-08, -9.025461801537293e-12, 3.1754581186760333e-09, -9.025461801537293e-12, 4.273419285268348e-15, 2114.0, 0.004249286837875843, -8.042178706091363e-06, 3.1709561643111783e-09, -8.042178706091363e-06, 2.0304929293502028e-08, -9.008398194065848e-12, 3.1709561643111783e-09, -9.008398194065848e-12, 4.2633213819876555e-15, 2115.0, 0.004247281234711409, -8.034582606342155e-06, 3.1664626476413105e-09, -8.034582606342155e-06, 2.0276148759990065e-08, -8.991375352596087e-12, 3.1664626476413105e-09, -8.991375352596087e-12, 4.25325227782717e-15, 2116.0, 0.004245277959853411, -8.026996511034667e-06, 3.1619775686664298e-09, -8.026996511034667e-06, 2.0247425069896963e-08, -8.974392409766274e-12, 3.1619775686664298e-09, -8.974392409766274e-12, 4.2432115492704175e-15, 2117.0, 0.004243276547640562, -8.019420420168899e-06, 3.157500927386536e-09, -8.019420420168899e-06, 2.0218754670509043e-08, -8.957449365576409e-12, 3.157500927386536e-09, -8.957449365576409e-12, 4.233199196317398e-15, 2118.0, 0.004241276998072863, -8.011856152734254e-06, 3.15303272380163e-09, -8.011856152734254e-06, 2.0190137561826305e-08, -8.94054622002649e-12, 3.15303272380163e-09, -8.94054622002649e-12, 4.223215218968112e-15, 2119.0, 0.004239278845489025, -8.004301889741328e-06, 3.1485729579117105e-09, -8.004301889741328e-06, 2.0161575520205588e-08, -8.923683840478258e-12, 3.1485729579117105e-09, -8.923683840478258e-12, 4.213259617222558e-15, 2120.0, 0.004237283021211624, -7.996759450179525e-06, 3.1441216297167784e-09, -7.996759450179525e-06, 2.0133066769290053e-08, -8.906860492208235e-12, 3.1441216297167784e-09, -8.906860492208235e-12, 4.203331967564264e-15, 2121.0, 0.004235289059579372, -7.98922610556474e-06, 3.1396787392168335e-09, -7.98922610556474e-06, 2.01046113090797e-08, -8.89007704257816e-12, 3.1396787392168335e-09, -8.89007704257816e-12, 4.1934322699932296e-15, 2122.0, 0.00423329696059227, -7.981704584381077e-06, 3.1352440643672708e-09, -7.981704584381077e-06, 2.007620913957453e-08, -8.873332624226293e-12, 3.1352440643672708e-09, -8.873332624226293e-12, 4.183560948025928e-15, 2123.0, 0.004231306724250317, -7.974193067639135e-06,3.1308180492573e-09, -7.974193067639135e-06, 2.004786203713138e-08, -8.856628104514375e-12, 3.1308180492573e-09, -8.856628104514375e-12, 4.173717154629412e-15, 2124.0, 0.004229318350553513, -7.966692464833613e-06, 3.1264000277531068e-09, -7.966692464833613e-06, 2.0019568225393414e-08, -8.839962616080665e-12, 3.1264000277531068e-09, -8.839962616080665e-12, 4.163901313320156e-15, 2125.0, 0.004227331839501858, -7.959202775964513e-06, 3.1219904439439006e-09,-7.959202775964513e-06, 1.999132592800379e-08, -8.823336158925166e-12, 3.1219904439439006e-09, -8.823336158925166e-12, 4.154113000581685e-15, 2126.0, 0.004225347191095352, -7.951723091537133e-06, 3.1175890757850766e-09, -7.951723091537133e-06, 1.9963138697676186e-08, -8.806748733047876e-12, 3.1175890757850766e-09, -8.806748733047876e-12, 4.144352639930474e-15, 2127.0, 0.004223364405333996, -7.944253411551472e-06, 3.1131961453212398e-09, -7.944253411551472e-06, 1.9935002981696925e-08, -8.790201205810533e-12, 3.1131961453212398e-09, -8.790201205810533e-12, 4.1346193843335745e-15, 2128.0, 0.004221383482217789, -7.936795554996934e-06, 3.108811430507785e-09, -7.936795554996934e-06, 1.9906920556422847e-08, -8.773691842489661e-12, 3.108811430507785e-09, -8.773691842489661e-12, 4.124913657307461e-15, 2129.0, 0.004219404421746731, -7.929347702884115e-06, 3.104434709300108e-09, -7.929347702884115e-06, 1.987888964549711e-08, -8.757220643085262e-12, 3.104434709300108e-09, -8.757220643085262e-12, 4.1152354588521334e-15, 2130.0, 0.004217427223920822, -7.921909855213016e-06, 3.1000664257874178e-09, -7.921909855213016e-06, 1.9850913801633396e-08, -8.740788474959071e-12, 3.1000664257874178e-09, -8.740788474959071e-12, 4.105584365451118e-15, 2131.0, 0.004215451888740063, -7.914482921478339e-06, 3.09570635792511e-09, -7.914482921478339e-06, 1.9822989472118024e-08, -8.72439533811109e-12, 3.09570635792511e-09, -8.72439533811109e-12, 4.0959603771044146e-15, 2132.0, 0.0042134784162044525, -7.90706599218538e-06, 3.0913542836685792e-09, -7.90706599218538e-06, 1.9795116656950995e-08, -8.708040365179581e-12, 3.0913542836685792e-09, -8.708040365179581e-12, 4.086363493812023e-15, 2133.0, 0.004211506340652704, -7.899659976828843e-06, 3.087010425062431e-09, -7.899659976828843e-06, 1.9767297132489148e-08, -8.691723556164543e-12,3.087010425062431e-09, -8.691723556164543e-12, 4.076793292057471e-15, 2134.0, 0.0042095365934073925, -7.892263965914026e-06, 3.0826747821066647e-09, -7.892263965914026e-06, 1.9739529122375643e-08, -8.675444911065977e-12, 3.0826747821066647e-09, -8.675444911065977e-12, 4.06725019535723e-15, 2135.0, 0.00420756870880723, -7.88487886893563e-06, 3.078347132756676e-09, -7.88487886893563e-06, 1.971181262661048e-08, -8.659204429883882e-12, 3.078347132756676e-09,-8.659204429883882e-12, 4.057734203711302e-15, 2136.0, 0.004205602686852217, -7.877503776398953e-06, 3.074027699057069e-09, -7.877503776398953e-06, 1.968414764519366e-08, -8.643002112618259e-12, 3.074027699057069e-09, -8.643002112618259e-12, 4.048244470086738e-15, 2137.0, 0.004203638061881065, -7.870138688303996e-06, 3.06971625896324e-09, -7.870138688303996e-06, 1.9656535954482024e-08, -8.626837091907369e-12, 3.06971625896324e-09, -8.626837091907369e-12, 4.038781418000013e-15, 2138.0, 0.0042016757652163506, -7.86278451414546e-06, 3.0654130345197927e-09, -7.86278451414546e-06, 1.962897577811873e-08, -8.610711102474689e-12, 3.0654130345197927e-09, -8.610711102474689e-12, 4.0293450474511265e-15, 2139.0, 0.004199715331196785, -7.855440344428644e-06, 3.061117803682123e-09, -7.855440344428644e-06, 1.9601465339746937e-08, -8.594621542235004e-12, 3.061117803682123e-09, -8.594621542235004e-12, 4.0199353584400785e-15, 2140.0, 0.004197756294161081, -7.848106179153547e-06, 3.0568303444056255e-09, -7.848106179153547e-06, 1.9574008192080328e-08, -8.57857014591179e-12, 3.0568303444056255e-09, -8.57857014591179e-12, 4.010551503933922e-15, 2141.0, 0.004195799119770527, -7.840782927814871e-06, 3.0525511007795103e-09, -7.840782927814871e-06, 1.954660078240522e-08, -8.56255604614331e-12, 3.0525511007795103e-09, -8.56255604614331e-12, 4.0011943309656035e-15, 2142.0, 0.004193844273686409, -7.833469680917915e-06, 3.0482798507591724e-09, -7.833469680917915e-06, 1.9519246663435297e-08, -8.546579242929564e-12, 3.0482798507591724e-09, -8.546579242929564e-12, 3.9918629925021765e-15, 2143.0, 0.004191890824586153, -7.826166438462678e-06, 3.044016594344612e-09, -7.826166438462678e-06, 1.9491942282456876e-08, -8.530639736270551e-12, 3.044016594344612e-09, -8.530639736270551e-12, 3.982557912060114e-15, 2144.0, 0.004189939238131046, -7.818873200449161e-06, 3.0397611094912236e-09, -7.818873200449161e-06, 1.9464687639469958e-08, -8.514737526166272e-12, 3.0397611094912236e-09, -8.514737526166272e-12, 3.973279089639417e-15, 2145.0, 0.004187989514321089, -7.811590876372065e-06, 3.0355136182436127e-09, -7.811590876372065e-06, 1.943748628718822e-08, -8.498871745254988e-12, 3.0355136182436127e-09, -8.498871745254988e-12, 3.964026101723611e-15, 2146.0, 0.0041860416531562805, -7.804318556736689e-06, 3.031274120601779e-09, -7.804318556736689e-06, 1.941033289654115e-08, -8.483043260898437e-12, 3.031274120601779e-09, -8.483043260898437e-12, 3.9547989483126964e-15, 2147.0, 0.0041840956546366215, -7.797056241543032e-06, 3.0270423945211178e-09, -7.797056241543032e-06, 1.938323102024242e-08, -8.46725207309662e-12, 3.0270423945211178e-09, -8.46725207309662e-12, 3.945597205890199e-15, 2148.0, 0.004182151518762112, -7.789803930791095e-06,3.022818662046234e-09, -7.789803930791095e-06, 1.9356180658292033e-08, -8.451496447126061e-12, 3.022818662046234e-09, -8.451496447126061e-12, 3.9364212979725935e-15, 2149.0, 0.004180208779871464, -7.782561624480877e-06, 3.0186027011325223e-09, -7.782561624480877e-06, 1.932918003433315e-08, -8.435778985071973e-12, 3.0186027011325223e-09, -8.435778985071973e-12, 3.927271224559879e-15, 2150.0, 0.004178268369287252, -7.775329322612379e-06, 3.014394733824588e-09,-7.775329322612379e-06, 1.9302229148365768e-08, -8.420097084849143e-12, 3.014394733824588e-09, -8.420097084849143e-12, 3.918146562135582e-15, 2151.0, 0.004176329355686903, -7.768107934680302e-06, 3.010194538077826e-09, -7.768107934680302e-06, 1.927532977674673e-08, -8.404451613819308e-12, 3.010194538077826e-09, -8.404451613819308e-12, 3.909047310699703e-15, 2152.0, 0.004174392204731703, -7.760895641695242e-06, 3.0060018918476317e-09, -7.760895641695242e-06, 1.9248478366762356e-08, -8.388842571982469e-12, 3.0060018918476317e-09, -8.388842571982469e-12, 3.899973470252241e-15, 2153.0, 0.004172456916421652, -7.753694262646604e-06, 3.0018172392232145e-09, -7.753694262646604e-06, 1.9221678471126324e-08, -8.373269959338625e-12, 3.0018172392232145e-09, -8.373269959338625e-12, 3.890924617276723e-15, 2154.0, 0.00417052349075675, -7.746501978544984e-06, 2.9976403581599698e-09, -7.746501978544984e-06, 1.9194926537124957e-08, -8.357732908526039e-12, 2.9976403581599698e-09, -8.357732908526039e-12, 3.881901175289623e-15, 2155.0, 0.004168591927736998, -7.739320608379785e-06, 2.9934712486578974e-09, -7.739320608379785e-06, 1.916822611747193e-08, -8.342232286906448e-12, 2.9934712486578974e-09, -8.342232286906448e-12, 3.872902720774467e-15, 2156.0, 0.004166661761701107, -7.732148333161604e-06, 2.9893096886723924e-09, -7.732148333161604e-06, 1.914157365945357e-08, -8.326768094479853e-12, 2.9893096886723924e-09, -8.326768094479853e-12, 3.863929253731255e-15, 2157.0, 0.004164733923971653, -7.724986971879844e-06, 2.98515590024806e-09, -7.724986971879844e-06, 1.9114970939426712e-08, -8.311339463884515e-12, 2.98515590024806e-09, -8.311339463884515e-12, 3.854981197676461e-15, 2158.0, 0.004162807483226061, -7.717834705545101e-06, 2.9810098833848997e-09, -7.717834705545101e-06, 1.9088417957391357e-08, -8.295946395120435e-12,2.9810098833848997e-09, -8.295946395120435e-12, 3.846057282060663e-15, 2159.0, 0.004160882905125618, -7.710692443652079e-06, 2.976871638082912e-09, -7.710692443652079e-06, 1.9061912936990666e-08, -8.280588020825874e-12, 2.976871638082912e-09, -8.280588020825874e-12, 3.837158777433283e-15, 2160.0, 0.004158960189670324, -7.703560186200775e-06, 2.9727407202528866e-09, -7.703560186200775e-06, 1.9035459430938317e-08, -8.265266075724309e-12, 2.9727407202528866e-09,-8.265266075724309e-12, 3.8282844132449e-15, 2161.0, 0.00415703933686018, -7.696437933191191e-06, 2.9686177960286386e-09, -7.696437933191191e-06, 1.9009052110163793e-08, -8.249979692454001e-12, 2.9686177960286386e-09, -8.249979692454001e-12, 3.81943503652846e-15, 2162.0, 0.004155119881033897, -7.689325684623327e-06, 2.964502199276353e-09, -7.689325684623327e-06, 1.8982696303737612e-08, -8.234728871014951e-12, 2.964502199276353e-09, -8.234728871014951e-12, 3.810610223767491e-15, 2163.0, 0.004153202287852764, -7.682223440497182e-06, 2.96039437408524e-09, -7.682223440497182e-06, 1.8956386682589255e-08, -8.21951274404542e-12, 2.96039437408524e-09, -8.21951274404542e-12, 3.801809551445519e-15, 2164.0, 0.004151287022978067, -7.675131200812757e-06, 2.9562940984106945e-09, -7.675131200812757e-06, 1.89301267994324e-08, -8.20433131154541e-12, 2.9562940984106945e-09, -8.20433131154541e-12, 3.793033443079017e-15, 2165.0, 0.004149372689425945, -7.66804805607535e-06, 2.9522013722527163e-09, -7.66804805607535e-06, 1.890391487791021e-08, -8.189185440876656e-12, 2.9522013722527163e-09, -8.189185440876656e-12, 3.784281898667986e-15, 2166.0, 0.00414746068418026, -7.660974915779661e-06, 2.9481164176559105e-09, -7.660974915779661e-06, 1.8877752694379524e-08, -8.17407513203916e-12, 2.9481164176559105e-09, -8.17407513203916e-12, 3.775554071179478e-15, 2167.0, 0.004145550541579723, -7.653911779925693e-06, 2.944038790531067e-09, -7.653911779925693e-06, 1.88516384724835e-08, -8.158998650309446e-12, 2.944038790531067e-09, -8.158998650309446e-12, 3.76685080764644e-15, 2168.0, 0.004143641795963049, -7.646858648513444e-06, 2.9399684908781865e-09, -7.646858648513444e-06, 1.8825570435865302e-08, -8.143957730410989e-12, 2.9399684908781865e-09, -8.143957730410989e-12, 3.758171261035925e-15, 2169.0, 0.004141734912991524, -7.639814612048212e-06, 2.935905962786478e-09, -7.639814612048212e-06, 1.8799552137238607e-08, -8.128950637620314e-12, 2.935905962786478e-09, -8.128950637620314e-12, 3.749515854864407e-15, 2170.0, 0.004139829892665148, -7.6327805800247e-06, 2.931850984211337e-09, -7.6327805800247e-06, 1.8773581800246575e-08, -8.113978239299158e-12, 2.931850984211337e-09, -8.113978239299158e-12, 3.7408845891318855e-15, 2171.0, 0.004137926269322634, -7.625756097695557e-06, 2.927803111063554e-09, -7.625756097695557e-06, 1.8747659424889207e-08, -8.099040535447521e-12, 2.927803111063554e-09, -8.099040535447521e-12, 3.732277040321887e-15, 2172.0, 0.004136024974286556, -7.618741619808134e-06, 2.923763009476943e-09, -7.618741619808134e-06, 1.8721783234809664e-08, -8.084137526065405e-12, 2.923763009476943e-09, -8.084137526065405e-12, 3.723692784917939e-15, 2173.0, 0.004134125076234341, -7.611736691615079e-06,2.9197302353622945e-09, -7.611736691615079e-06, 1.8695955006364784e-08, -8.06926834379107e-12, 2.9197302353622945e-09, -8.06926834379107e-12, 3.715132669952987e-15, 2174.0, 0.004132226575165987, -7.604741313116392e-06, 2.9157047887196086e-09, -7.604741313116392e-06, 1.8670176515911407e-08, -8.054432988624516e-12, 2.9157047887196086e-09, -8.054432988624516e-12, 3.706596271910558e-15, 2175.0, 0.00413033040240407, -7.597755939059425e-06, 2.91168689159349e-09,-7.597755939059425e-06, 1.8644442434379016e-08, -8.039632327927482e-12, 2.91168689159349e-09, -8.039632327927482e-12, 3.6980831672741785e-15, 2176.0, 0.004128435626626015, -7.590779659949476e-06, 2.9076763219393342e-09, -7.590779659949476e-06, 1.8618758090838128e-08, -8.024865494338229e-12, 2.9076763219393342e-09, -8.024865494338229e-12, 3.689593356043849e-15, 2177.0, 0.004126542713493109, -7.583813385281246e-06, 2.903673079757141e-09, -7.583813385281246e-06, 1.8593119932575064e-08, -8.010132487856758e-12, 2.903673079757141e-09, -8.010132487856758e-12, 3.681127261736042e-15, 2178.0, 0.004124651663005352, -7.576856660307385e-06, 2.89967716504691e-09, -7.576856660307385e-06, 1.8567527959589825e-08, -7.995433308483069e-12, 2.89967716504691e-09, -7.995433308483069e-12, 3.672684037317811e-15, 2179.0, 0.004122762009501457, -7.5699094850278925e-06, 2.8956885778086416e-09, -7.5699094850278925e-06, 1.854198394823925e-08, -7.98076795621716e-12, 2.8956885778086416e-09, -7.98076795621716e-12, 3.664264529822103e-15, 2180.0, 0.004120874684303999, -7.562971404695418e-06, 2.891707318042336e-09, -7.562971404695418e-06, 1.8516486122166498e-08, -7.966136431059034e-12, 2.891707318042336e-09, -7.966136431059034e-12, 3.655867892215971e-15, 2181.0, 0.004118988756090403, -7.5560433288046625e-06, 2.8877333857479925e-09, -7.5560433288046625e-06, 1.849103448137157e-08, -7.951537865646952e-12, 2.8877333857479925e-09, -7.951537865646952e-12, 3.647494548015889e-15, 2182.0, 0.004117104224860668, -7.549124802608276e-06, 2.8837667809256118e-09, -7.549124802608276e-06, 1.8465630802211308e-08, -7.93697312734265e-12, 2.8837667809256118e-09, -7.93697312734265e-12, 3.6391440737053825e-15, 2183.0, 0.004115221556276083, -7.542215371358907e-06, 2.8798075035751936e-09, -7.542215371358907e-06, 1.844027330832887e-08, -7.922441348784393e-12,2.8798075035751936e-09, -7.922441348784393e-12, 3.630816469284452e-15, 2184.0, 0.004113340750336647, -7.535315944551257e-06, 2.875855331652133e-09, -7.535315944551257e-06, 1.8414961999724255e-08, -7.907942529972178e-12, 2.875855331652133e-09, -7.907942529972178e-12, 3.622511734753097e-15, 2185.0, 0.00411146180704236, -7.528425612690626e-06, 2.87191026515643e-09, -7.528425612690626e-06, 1.8389696876397466e-08, -7.893477538267746e-12, 2.87191026515643e-09,-7.893477538267746e-12, 3.614229870111318e-15, 2186.0, 0.0041095842607319355, -7.521544830524363e-06, 2.8679725261326894e-09, -7.521544830524363e-06, 1.83644779383485e-08, -7.879045506309357e-12, 2.8679725261326894e-09, -7.879045506309357e-12, 3.6059704518426414e-15, 2187.0, 0.00410770857706666, -7.514673598052468e-06, 2.8640421145809114e-09, -7.514673598052468e-06, 1.83393069619342e-08, -7.864646434097011e-12, 2.8640421145809114e-09, -7.864646434097011e-12, 3.597733903463541e-15, 2188.0, 0.004105834756046534, -7.507811460527591e-06, 2.860118808456491e-09, -7.507811460527591e-06, 1.8314178618084043e-08, -7.85028032163071e-12, 2.860118808456491e-09, -7.85028032163071e-12, 3.589519801457542e-15, 2189.0, 0.0041039627976715565, -7.500959327444434e-06, 2.8562026077594282e-09, -7.500959327444434e-06, 1.828909823586855e-08, -7.835946301548713e-12, 2.8562026077594282e-09, -7.835946301548713e-12, 3.581328569341119e-15, 2190.0, 0.004102092236280441, -7.494115834560944e-06, 2.852293512489723e-09, -7.494115834560944e-06, 1.8264064038930883e-08, -7.821646108574498e-12, 2.852293512489723e-09, -7.821646108574498e-12, 3.573159360081325e-15, 2191.0, 0.004100223071873188, -7.487282346119173e-06, 2.8483915226473755e-09, -7.487282346119173e-06, 1.82390742509142e-08, -7.807378007984589e-12, 2.8483915226473755e-09, -7.807378007984589e-12, 3.565012597194633e-15, 2192.0, 0.004098356235772371, -7.480457497877069e-06, 2.8444968602769904e-09, -7.480457497877069e-06, 1.8214130648175342e-08, -7.793141999778985e-12, 2.8444968602769904e-09, -7.793141999778985e-12, 3.556888280681044e-15, 2193.0, 0.0040964907966554165, -7.473642654076684e-06, 2.840609081289358e-09, -7.473642654076684e-06, 1.818923145435747e-08, -7.778938951319425e-12, 2.840609081289358e-09, -7.778938951319425e-12, 3.5487859870240827e-15, 2194.0, 0.004094626754522324, -7.4668369052233174e-06, 2.8367284077290833e-09, -7.4668369052233174e-06, 1.816438022217426e-08, -7.76476799524417e-12, 2.8367284077290833e-09, -7.76476799524417e-12, 3.5407057162237503e-15, 2195.0, 0.004092765040695667, -7.460040251316968e-06, 2.832854839596166e-09, -7.460040251316968e-06, 1.8139571622555195e-08, -7.750629131553222e-12, 2.832854839596166e-09, -7.750629131553222e-12, 3.5326476800382834e-15, 2196.0, 0.004090904723852873, -7.453253147104988e-06, 2.8289883768906066e-09, -7.453253147104988e-06, 1.8114809208213956e-08, -7.736522360246578e-12, 2.8289883768906066e-09, -7.736522360246578e-12, 3.524611666709445e-15, 2197.0, 0.00408904580399394, -7.446475137840025e-06, 2.8251290196124046e-09, -7.446475137840025e-06, 1.80900912027937e-08, -7.722448548685978e-12, 2.8251290196124046e-09, -7.722448548685978e-12, 3.5165974644789984e-15, 2198.0, 0.004087188746780157, -7.43970622352208e-06,2.8212765457169553e-09, -7.43970622352208e-06, 1.806541938265127e-08, -7.708405962147946e-12, 2.8212765457169553e-09, -7.708405962147946e-12, 3.5086052851051805e-15, 2199.0, 0.004085333552211523, -7.432946858898504e-06, 2.8174311772488636e-09, -7.432946858898504e-06, 1.8040791971429826e-08, -7.69439546799422e-12, 2.8174311772488636e-09, -7.69439546799422e-12, 3.5006349168297543e-15, 2200.0, 0.004083480220288038, -7.426196589221945e-06, 2.8135926921635246e-09,-7.426196589221945e-06, 1.8016208969129366e-08, -7.68041619886306e-12, 2.8135926921635246e-09, -7.68041619886306e-12, 3.492686147894483e-15, 2201.0, 0.004081628285348415, -7.419455414492404e-06, 2.8097610904609382e-09, -7.419455414492404e-06, 1.799167037574989e-08, -7.666469889477945e-12, 2.8097610904609382e-09, -7.666469889477945e-12, 3.484758978299367e-15, 2202.0, 0.004079777747392654, -7.412723334709881e-06, 2.8059365941857095e-09, -7.412723334709881e-06, 1.79671761912914e-08, -7.652553937753659e-12, 2.8059365941857095e-09, -7.652553937753659e-12, 3.4768534080444058e-15, 2203.0, 0.00407792953774333, -7.406000349874375e-06, 2.8021189812932334e-09, -7.406000349874375e-06, 1.7942726415753896e-08, -7.638670945775416e-12, 2.8021189812932334e-09, -7.638670945775416e-12, 3.4689694371295996e-15, 2204.0, 0.00407608225941658, -7.3992869147332385e-06, 2.79830825178351e-09, -7.3992869147332385e-06, 1.7918322825494215e-08, -7.624818311458004e-12, 2.79830825178351e-09, -7.624818311458004e-12, 3.4611068537967115e-15, 2205.0, 0.004074237309396267, -7.3925821197917685e-06, 2.7945046277011443e-09, -7.3925821197917685e-06, 1.789396186779868e-08, -7.610997769524896e-12, 2.7945046277011443e-09, -7.610997769524896e-12, 3.4532656580457417e-15, 2206.0, 0.004072393756359816, -7.385886874544667e-06, 2.7907076649569262e-09, -7.385886874544667e-06, 1.786964531902413e-08, -7.597207585252619e-12, 2.7907076649569262e-09, -7.597207585252619e-12, 3.445445638118453e-15, 2207.0, 0.0040705520659685135, -7.379200724244583e-06, 2.786917585595461e-09, -7.379200724244583e-06, 1.7845373179170565e-08, -7.583449493364647e-12, 2.786917585595461e-09, -7.583449493364647e-12, 3.437647005773083e-15, 2208.0, 0.004068711772561073, -7.3725232141441666e-06, 2.783134611661353e-09, -7.3725232141441666e-06, 1.7821143671881146e-08, -7.569721759137504e-12,2.783134611661353e-09, -7.569721759137504e-12, 3.429869549251394e-15, 2209.0, 0.004066872876137495, -7.365855253738118e-06, 2.779358299065393e-09, -7.365855253738118e-06, 1.779695857351271e-08, -7.556026117294667e-12, 2.779358299065393e-09, -7.556026117294667e-12, 3.422113268553386e-15, 2210.0, 0.004065036308020353, -7.359195933531737e-06, 2.775588647807581e-09, -7.359195933531737e-06, 1.7772817884065262e-08, -7.54236083311266e-12, 2.775588647807581e-09,-7.54236083311266e-12, 3.414377951920823e-15, 2211.0, 0.0040632011368870735, -7.352545708272373e-06, 2.771826101977126e-09, -7.352545708272373e-06, 1.7748719827181958e-08, -7.528725906591482e-12, 2.771826101977126e-09, -7.528725906591482e-12, 3.4066633875954678e-15, 2212.0, 0.004061367362737656, -7.345904577960027e-06, 2.7680702174848193e-09, -7.345904577960027e-06, 1.772466617921964e-08, -7.51512307245461e-12, 2.7680702174848193e-09, -7.51512307245461e-12, 3.3989699990937938e-15, 2213.0, 0.004059535451233387, -7.339272542594699e-06, 2.764321216375265e-09, -7.339272542594699e-06, 1.7700656940178305e-08, -7.50154972861683e-12, 2.764321216375265e-09, -7.50154972861683e-12, 3.3912973628993275e-15, 2214.0, 0.004057705402374268, -7.332649602176389e-06, 2.7605788766038586e-09, -7.332649602176389e-06, 1.7676688557344278e-08, -7.488007609801617e-12, 2.7605788766038586e-09, -7.488007609801617e-12, 3.383645479012069e-15, 2215.0, 0.00405587675049901, -7.326035301957745e-06, 2.7568431981706e-09, -7.326035301957745e-06, 1.7652766359788075e-08, -7.474495848647233e-12, 2.7568431981706e-09, -7.474495848647233e-12, 3.376014347432018e-15, 2216.0, 0.0040540494956076145, -7.319430096686119e-06, 2.753114403120094e-09, -7.319430096686119e-06, 1.7628885018439178e-08, -7.46101444515368e-12, 2.753114403120094e-09, -7.46101444515368e-12, 3.368403968159175e-15, 2217.0, 0.004052224103361368, -7.31283353161416e-06, 2.7493922694077355e-09, -7.31283353161416e-06, 1.7605048086011266e-08, -7.447564266682694e-12, 2.7493922694077355e-09, -7.447564266682694e-12, 3.360814129435303e-15, 2218.0, 0.004050400573760271, -7.30624651623657e-06, 2.74567701907813e-09, -7.30624651623657e-06, 1.758125200979066e-08, -7.434143578510799e-12, 2.74567701907813e-09, -7.434143578510799e-12, 3.353244619502165e-15, 2219.0, 0.004048578441143036, -7.299667686311295e-06, 2.741968208042067e-09, -7.299667686311295e-06, 1.755750034249104e-08, -7.420753247999734e-12, 2.741968208042067e-09, -7.420753247999734e-12, 3.3456956501179977e-15, 2220.0, 0.00404675817117095, -7.293098406080389e-06, 2.738266280388757e-09, -7.293098406080389e-06, 1.7533791307755564e-08, -7.40739240778776e-12, 2.738266280388757e-09, -7.40739240778776e-12, 3.3381670095245647e-15, 2221.0, 0.004044939298182726, -7.2865373113017995e-06, 2.7345707920289897e-09, -7.2865373113017995e-06, 1.7510124905584235e-08, -7.394062792598355e-12, 2.7345707920289897e-09, -7.394062792598355e-12, 3.3306589094801026e-15, 2222.0, 0.004043122287839651, -7.279985766217578e-06, 2.730882187051975e-09, -7.279985766217578e-06, 1.748650113597705e-08, -7.38076266770804e-12, 2.730882187051975e-09, -7.38076266770804e-12, 3.3231709264681377e-15, 2223.0, 0.004041306674480438, -7.273442406585673e-06,2.7272000213685033e-09, -7.273442406585673e-06, 1.7462919998934012e-08, -7.367492033116818e-12, 2.7272000213685033e-09, -7.367492033116818e-12, 3.3157030604886702e-15, 2224.0, 0.004039492923766375, -7.266908141900785e-06, 2.7235245170231792e-09, -7.266908141900785e-06, 1.743938149445512e-08, -7.354251756186425e-12, 2.7235245170231792e-09, -7.354251756186425e-12, 3.3082553115417e-15, 2225.0, 0.004037680570036173, -7.260382972162915e-06, 2.719855674016003e-09,-7.260382972162915e-06, 1.7415885622540372e-08, -7.341040969555124e-12, 2.719855674016003e-09, -7.341040969555124e-12, 3.300827891385464e-15, 2226.0, 0.00403587007895112, -7.2538659878773615e-06, 2.7161934923469744e-09, -7.2538659878773615e-06, 1.739243060683293e-08, -7.327859673222914e-12, 2.7161934923469744e-09, -7.327859673222914e-12, 3.2934201647452513e-15, 2227.0, 0.00403406098484993, -7.247358098538825e-06, 2.7125377499714887e-09, -7.247358098538825e-06, 1.7369018223689636e-08, -7.314708734551534e-12, 2.7125377499714887e-09, -7.314708734551534e-12, 3.286032555137536e-15, 2228.0, 0.0040322537533938885, -7.240859304147307e-06, 2.7088884468895458e-09, -7.240859304147307e-06, 1.7345648473110487e-08, -7.301586418817507e-12, 2.7088884468895458e-09, -7.301586418817507e-12, 3.2786646390458446e-15, 2229.0, 0.004030447918921709, -7.234368695208104e-06, 2.7052460271903556e-09, -7.234368695208104e-06, 1.7322319578738643e-08, -7.288493593382572e-12, 2.7052460271903556e-09, -7.288493593382572e-12, 3.2713168399866504e-15, 2230.0, 0.004028643947094679, -7.2278871812159196e-06, 2.7016098247401032e-09, -7.2278871812159196e-06, 1.7299033316930945e-08, -7.275430691927598e-12, 2.7016098247401032e-09, -7.275430691927598e-12, 3.263988522685243e-15, 2231.0, 0.004026841372251511, -7.221413852676051e-06, 2.6979802836279987e-09, -7.221413852676051e-06, 1.7275787911330553e-08, -7.262396413409977e-12, 2.6979802836279987e-09, -7.262396413409977e-12, 3.256680110658096e-15, 2232.0, 0.004025040194392204, -7.2149496190832e-06, 2.694357181809437e-09, -7.2149496190832e-06, 1.7252585138294307e-08, -7.249391625191448e-12, 2.694357181809437e-09, -7.249391625191448e-12, 3.249391180388736e-15, 2233.0, 0.0040232413448393345, -7.208494025690015e-06, 2.690740519284418e-09, -7.208494025690015e-06, 1.7229423221465368e-08, -7.2364158935911416e-12,2.690740519284418e-09, -7.2364158935911416e-12, 3.2421217318771628e-15, 2234.0, 0.004021443426609039, -7.202047072496498e-06, 2.687130518097547e-09, -7.202047072496498e-06, 1.7206302160843734e-08, -7.223469218609058e-12, 2.687130518097547e-09, -7.223469218609058e-12, 3.2348719768816132e-15, 2235.0, 0.004019647371023893, -7.1956087595026474e-06, 2.6835267341596136e-09, -7.1956087595026474e-06, 1.7183223732786246e-08, -7.210551166564327e-12, 2.6835267341596136e-09,-7.210551166564327e-12, 3.2276414918856137e-15, 2236.0, 0.004017852712422609, -7.189179086708464e-06, 2.679929611559828e-09, -7.189179086708464e-06, 1.7160186160936064e-08, -7.19766217113782e-12, 2.679929611559828e-09, -7.19766217113782e-12, 3.220430488647401e-15, 2237.0, 0.0040160599164664745, -7.182758054113947e-06, 2.6763389282535854e-09, -7.182758054113947e-06, 1.7137189445293188e-08, -7.184802232329535e-12, 2.6763389282535854e-09, -7.184802232329535e-12, 3.213238967166975e-15, 2238.0, 0.004014268517494202, -7.176345661719097e-06, 2.6727544621962807e-09, -7.176345661719097e-06, 1.711423358585762e-08, -7.171970916458603e-12, 2.6727544621962807e-09, -7.171970916458603e-12, 3.2060665039278626e-15, 2239.0, 0.004012478981167078, -7.169941909523914e-06, 2.6691764354325187e-09, -7.169941909523914e-06, 1.7091320358986195e-08, -7.159167789844156e-12, 2.6691764354325187e-09, -7.159167789844156e-12, 3.1989133106883e-15, 2240.0, 0.004010690841823816, -7.163546342781046e-06, 2.6656048479622996e-09, -7.163546342781046e-06, 1.7068446211965238e-08, -7.146393719847932e-12, 2.6656048479622996e-09, -7.146393719847932e-12, 3.1917791756900507e-15, 2241.0, 0.004008904565125704, -7.157159870985197e-06, 2.6620396997856233e-09, -7.157159870985197e-06, 1.7045612921151587e-08, -7.1336478391081926e-12, 2.6620396997856233e-09, -7.1336478391081926e-12, 3.1846643106913514e-15, 2242.0, 0.004007119685411453, -7.150781584641663e-06, 2.658480768857885e-09, -7.150781584641663e-06, 1.7022820486545243e-08, -7.1209305813058066e-12, 2.658480768857885e-09, -7.1209305813058066e-12, 3.1775682921757285e-15, 2243.0, 0.004005336202681065, -7.144411938497797e-06, 2.6549282772236893e-09, -7.144411938497797e-06, 1.7000070684503044e-08, -7.108241512759905e-12, 2.6549282772236893e-09, -7.108241512759905e-12, 3.1704913319014188e-15, 2244.0, 0.004003554582595825, -7.138050477806246e-06, 2.6513820028384316e-09, -7.138050477806246e-06, 1.6977358185954472e-08, -7.0955806334704885e-12, 2.6513820028384316e-09, -7.0955806334704885e-12, 3.1634332181101855e-15, 2245.0, 0.004001774359494448, -7.131698112061713e-06, 2.6478421677467168e-09, -7.131698112061713e-06, 1.6954688319970046e-08, -7.0829479434375564e-12, 2.6478421677467168e-09, -7.0829479434375564e-12, 3.1563939508020286e-15, 2246.0, 0.0039999959990382195, -7.125353931769496e-06, 2.64430854990394e-09, -7.125353931769496e-06, 1.6932057533836087e-08, -7.070343442661109e-12, 2.64430854990394e-09, -7.070343442661109e-12, 3.149373529976948e-15, 2247.0, 0.003998218569904566, -7.119017936929595e-06, 2.6407811493101008e-09, -7.119017936929595e-06, 1.6909467603909434e-08, -7.057767131141146e-12, 2.6407811493101008e-09, -7.057767131141146e-12, 3.1423717438767073e-15, 2248.0, 0.003996443469077349, -7.1126905822893605e-06,2.6372601880098046e-09, -7.1126905822893605e-06, 1.6886918530190087e-08, -7.045218575196799e-12, 2.6372601880098046e-09, -7.045218575196799e-12, 3.135388804259543e-15, 2249.0, 0.0039946697652339935, -7.106371867848793e-06, 2.6337454439584462e-09, -7.106371867848793e-06, 1.6864408536321207e-08, -7.032697774828067e-12, 2.6337454439584462e-09, -7.032697774828067e-12, 3.1284242876089812e-15, 2250.0, 0.0039928974583745, -7.100061338860542e-06, 2.630236917156026e-09,-7.100061338860542e-06, 1.6841939398659633e-08, -7.02020516371582e-12, 2.630236917156026e-09, -7.02020516371582e-12, 3.121478405683259e-15, 2251.0, 0.003991126548498869, -7.093759450071957e-06, 2.6267346076025433e-09, -7.093759450071957e-06, 1.6819509340848526e-08, -7.00773987449832e-12, 2.6267346076025433e-09, -7.00773987449832e-12, 3.1145511584823767e-15, 2252.0, 0.003989357501268387, -7.087465746735688e-06, 2.6232385152979987e-09, -7.087465746735688e-06, 1.6797120139244726e-08, -6.995302340856435e-12, 2.6232385152979987e-09, -6.995302340856435e-12, 3.10764212248986e-15, 2253.0, 0.003987589851021767, -7.081180228851736e-06, 2.619748418197787e-09, -7.081180228851736e-06, 1.677477001749139e-08, -6.982892562790166e-12, 2.619748418197787e-09, -6.982892562790166e-12, 3.1007515094639464e-15, 2254.0, 0.003985824063420296, -7.07490335116745e-06, 2.6162647603911182e-09, -7.07490335116745e-06, 1.6752458975588524e-08, -6.970510106618644e-12, 2.6162647603911182e-09, -6.970510106618644e-12, 3.0938793194046355e-15, 2255.0, 0.003984059672802687, -7.06863465893548e-06, 2.6127873198333873e-09, -7.06863465893548e-06, 1.6730187013536124e-08, -6.958155406022737e-12, 2.6127873198333873e-09, -6.958155406022737e-12, 3.0870253405536905e-15, 2256.0, 0.00398229667916894, -7.062374606903177e-06, 2.6093158744799894e-09, -7.062374606903177e-06, 1.670795590769103e-08, -6.945827593640708e-12, 2.6093158744799894e-09, -6.945827593640708e-12, 3.0801895729111115e-15, 2257.0, 0.003980535548180342, -7.056122285575839e-06, 2.6058506463755293e-09, -7.056122285575839e-06, 1.6685763881696403e-08, -6.933527536834294e-12, 2.6058506463755293e-09, -6.933527536834294e-12, 3.0733720164768984e-15, 2258.0, 0.003978775814175606, -7.049878604448168e-06, 2.602391635520007e-09, -7.049878604448168e-06, 1.6663610935552242e-08, -6.921254368241758e-12,2.602391635520007e-09, -6.921254368241758e-12, 3.0665724594928145e-15, 2259.0, 0.003977017477154732, -7.043643563520163e-06, 2.598938619868818e-09, -7.043643563520163e-06, 1.664149706925855e-08, -6.9090080878631e-12, 2.598938619868818e-09, -6.9090080878631e-12, 3.0597911137170966e-15, 2260.0, 0.003975261002779007, -7.037416253297124e-06, 2.5954918214665668e-09, -7.037416253297124e-06, 1.661942228281532e-08, -6.896789563060057e-12, 2.5954918214665668e-09,-6.896789563060057e-12, 3.053027555633271e-15, 2261.0, 0.003973505925387144, -7.031197583273752e-06, 2.5920510182686485e-09, -7.031197583273752e-06, 1.659738657622256e-08, -6.884597492790023e-12, 2.5920510182686485e-09, -6.884597492790023e-12, 3.0462819969995746e-15, 2262.0, 0.003971752244979143, -7.024986643955344e-06, 2.588616210275063e-09, -7.024986643955344e-06, 1.6575389949480268e-08, -6.872432744414736e-12, 2.588616210275063e-09, -6.872432744414736e-12, 3.0395544378160073e-15, 2263.0, 0.003970000427216291, -7.018784344836604e-06, 2.5851876195304158e-09, -7.018784344836604e-06, 1.655343240258844e-08, -6.860294450572457e-12, 2.5851876195304158e-09, -6.860294450572457e-12, 3.0328446663243323e-15, 2264.0, 0.003968250006437302, -7.012590231170179e-06, 2.5817650239901013e-09, -7.012590231170179e-06, 1.6531513935547082e-08, -6.848183044944056e-12, 2.5817650239901013e-09, -6.848183044944056e-12, 3.026152470766313e-15, 2265.0, 0.003966500982642174, -7.006404302956071e-06, 2.57834842365412e-09, -7.006404302956071e-06, 1.650963277199935e-08, -6.836098527529533e-12, 2.57834842365412e-09, -6.836098527529533e-12, 3.0194782746584227e-15, 2266.0, 0.003964753821492195, -7.000226560194278e-06, 2.5749380405670763e-09, -7.000226560194278e-06, 1.6487790688302084e-08, -6.824040464648018e-12, 2.5749380405670763e-09, -6.824040464648018e-12, 3.012821442725951e-15, 2267.0, 0.003963007591664791, -6.9940570028848015e-06, 2.571533430639761e-09, -6.9940570028848015e-06, 1.6465987684455285e-08, -6.812009289980381e-12, 2.571533430639761e-09, -6.812009289980381e-12, 3.006182398485372e-15, 2268.0, 0.003961263690143824, -6.98789517628029e-06, 2.568135037961383e-09, -6.98789517628029e-06, 1.6444223760458954e-08, -6.800004569845752e-12, 2.568135037961383e-09, -6.800004569845752e-12, 2.9995609301784482e-15, 2269.0, 0.003959520719945431, -6.981741989875445e-06, 2.5647424184427337e-09, -6.981741989875445e-06, 1.642249713995625e-08, -6.7880258705632635e-12, 2.5647424184427337e-09, -6.7880258705632635e-12, 2.9929568260469433e-15, 2270.0, 0.003957779612392187, -6.975596988922916e-06, 2.561356016173022e-09, -6.975596988922916e-06, 1.640080959930401e-08, -6.776074059494652e-12, 2.561356016173022e-09, -6.776074059494652e-12, 2.986370086090857e-15, 2271.0, 0.003956039901822805, -6.969459718675353e-06, 2.5579753870630384e-09, -6.969459718675353e-06, 1.63791593621454e-08, -6.764148269278181e-12, 2.5579753870630384e-09, -6.764148269278181e-12, 2.9798009220684263e-15, 2272.0, 0.003954301588237286, -6.963330633880105e-06, 2.5546007531573878e-09, -6.963330633880105e-06, 1.635754642848042e-08, -6.752248499913849e-12, 2.5546007531573878e-09, -6.752248499913849e-12, 2.9732491222214143e-15, 2273.0, 0.003952565137296915, -6.957209734537173e-06,2.55123211445607e-09, -6.957209734537173e-06, 1.6335972574665902e-08, -6.7403751850825255e-12, 2.55123211445607e-09, -6.7403751850825255e-12, 2.966714474791584e-15, 2274.0, 0.003950830083340406, -6.951097020646557e-06, 2.5478692489144805e-09, -6.951097020646557e-06, 1.6314436024345014e-08, -6.728527891103342e-12, 2.5478692489144805e-09, -6.728527891103342e-12, 2.960196979778936e-15, 2275.0, 0.00394909642636776, -6.9449920374609064e-06, 2.544512378577224e-09,-6.9449920374609064e-06, 1.6292938553874592e-08, -6.716706617976298e-12, 2.544512378577224e-09, -6.716706617976298e-12, 2.9536968489417064e-15, 2276.0, 0.003947364166378975, -6.938895239727572e-06, 2.5411612813996953e-09, -6.938895239727572e-06, 1.6271478386897797e-08, -6.704911365701394e-12, 2.5411612813996953e-09, -6.704911365701394e-12, 2.947213658763422e-15, 2277.0, 0.003945633769035339, -6.932806627446553e-06, 2.5378161794264997e-09, -6.932806627446553e-06, 1.625005552341463e-08, -6.69314170059776e-12, 2.5378161794264997e-09, -6.69314170059776e-12, 2.9407478327605563e-15, 2278.0, 0.003943904768675566, -6.926725745870499e-06, 2.534477072657637e-09, -6.926725745870499e-06, 1.622866996342509e-08, -6.681398056346266e-12, 2.534477072657637e-09, -6.681398056346266e-12, 2.934298735658399e-15, 2279.0, 0.003942177165299654, -6.920653049746761e-06, 2.5311437390485025e-09, -6.920653049746761e-06, 1.620732170692918e-08, -6.669680432946912e-12, 2.5311437390485025e-09, -6.669680432946912e-12, 2.9278665792151866e-15, 2280.0, 0.0039404514245688915, -6.914588084327988e-06, 2.527816178599096e-09, -6.914588084327988e-06, 1.6186012530283733e-08, -6.657987963037959e-12, 2.527816178599096e-09, -6.657987963037959e-12, 2.921451575189156e-15, 2281.0, 0.003938726615160704, -6.9085313043615315e-06, 2.5244943913094176e-09, -6.9085313043615315e-06, 1.6164738880775076e-08, -6.646321513981146e-12, 2.5244943913094176e-09, -6.646321513981146e-12, 2.915053300063834e-15, 2282.0, 0.003937003668397665, -6.902482709847391e-06, 2.521178599224072e-09, -6.902482709847391e-06, 1.6143504311116885e-08, -6.634680218414735e-12, 2.521178599224072e-09, -6.634680218414735e-12, 2.90867175383922e-15, 2283.0, 0.003935282584279776, -6.896441846038215e-06, 2.5178683582538497e-09, -6.896441846038215e-06, 1.6122305268595483e-08, -6.623064943700463e-12,2.5178683582538497e-09, -6.623064943700463e-12, 2.9023071482735512e-15, 2284.0, 0.003933562431484461, -6.890408712934004e-06, 2.5145641124879603e-09, -6.890408712934004e-06, 1.6101143529567707e-08, -6.611474822476593e-12, 2.5145641124879603e-09, -6.611474822476593e-12, 2.895959059850354e-15, 2285.0, 0.003931844141334295, -6.884383765282109e-06, 2.511265639881799e-09, -6.884383765282109e-06, 1.608001909403356e-08, -6.5999098547431245e-12, 2.511265639881799e-09,-6.5999098547431245e-12, 2.8896277003278648e-15, 2286.0, 0.003930126782506704, -6.87836654833518e-06, 2.5079729404353657e-09, -6.87836654833518e-06, 1.605893196199304e-08, -6.588370040500058e-12, 2.5079729404353657e-09, -6.588370040500058e-12, 2.883313069706084e-15, 2287.0, 0.00392841175198555, -6.872357062093215e-06, 2.5046860141486604e-09, -6.872357062093215e-06, 1.6037882133446146e-08, -6.576855813428262e-12, 2.5046860141486604e-09, -6.576855813428262e-12, 2.877014744468538e-15, 2288.0, 0.00392669765278697, -6.866355761303566e-06, 2.5014046389770783e-09, -6.866355761303566e-06, 1.601686783203604e-08, -6.565366739846867e-12, 2.5014046389770783e-09, -6.565366739846867e-12, 2.8707331481317e-15, 2289.0, 0.003924984950572252, -6.860362191218883e-06, 2.498129259009829e-09, -6.860362191218883e-06, 1.5995890834119564e-08, -6.553902386075006e-12, 2.498129259009829e-09, -6.553902386075006e-12, 2.8644678571790967e-15, 2290.0, 0.003923274111002684, -6.854376806586515e-06, 2.494859430157703e-09, -6.854376806586515e-06, 1.5974951139696714e-08, -6.5424631857935456e-12, 2.494859430157703e-09, -6.5424631857935456e-12, 2.858219083368965e-15, 2291.0, 0.003921564668416977, -6.848398697911762e-06, 2.4915953744653052e-09, -6.848398697911762e-06, 1.595404697241065e-08, -6.531049139002487e-12, 2.4915953744653052e-09, -6.531049139002487e-12, 2.8519866149430678e-15, 2292.0, 0.003919856622815132, -6.842428774689324e-06, 2.4883368698880304e-09, -6.842428774689324e-06, 1.5933178332261377e-08, -6.5196598120209615e-12, 2.4883368698880304e-09, -6.5196598120209615e-12, 2.8457704519014053e-15, 2293.0, 0.003918149974197149, -6.836466582171852e-06, 2.4850841384704836e-09, -6.836466582171852e-06, 1.591234699560573e-08, -6.508295204848968e-12, 2.4850841384704836e-09, -6.508295204848968e-12, 2.8395703824857406e-15, 2294.0, 0.003916445188224316, -6.830512120359344e-06, 2.481837180212665e-09, -6.830512120359344e-06, 1.589155296244371e-08, -6.496955751167377e-12, 2.481837180212665e-09, -6.496955751167377e-12, 2.8333866184543106e-15, 2295.0, 0.003914741799235344, -6.824565389251802e-06, 2.4785957730699693e-09, -6.824565389251802e-06, 1.587079445641848e-08, -6.485640583614449e-12, 2.4785957730699693e-09, -6.485640583614449e-12, 2.827219159807115e-15, 2296.0, 0.003913039341568947, -6.818626388849225e-06, 2.4753599170423968e-09, -6.818626388849225e-06, 1.5850071477530037e-08, -6.474350135871054e-12, 2.4753599170423968e-09, -6.474350135871054e-12, 2.821067583027681e-15, 2297.0, 0.003911338746547699, -6.812695119151613e-06, 2.4721298341745523e-09, -6.812695119151613e-06, 1.582938580213522e-08, -6.463084407937192e-12, 2.4721298341745523e-09, -6.463084407937192e-12, 2.814932311632481e-15, 2298.0, 0.0039096400141716, -6.806771580158966e-06,2.468905302421831e-09, -6.806771580158966e-06, 1.5808735653877193e-08, -6.451842966131993e-12, 2.468905302421831e-09, -6.451842966131993e-12, 2.8088127103468056e-15, 2299.0, 0.003907942213118076, -6.8008562266186345e-06, 2.465686321784233e-09, -6.8008562266186345e-06, 1.5788121032755953e-08, -6.440626244136327e-12, 2.465686321784233e-09, -6.440626244136327e-12, 2.8027094144453648e-15, 2300.0, 0.003906246041879058, -6.794948149035918e-06, 2.4624731143063627e-09,-6.794948149035918e-06, 1.57675419387715e-08, -6.429433374588456e-12, 2.4624731143063627e-09, -6.429433374588456e-12, 2.796621788653448e-15, 2301.0, 0.003904551500454545, -6.789047802158166e-06, 2.459265235899011e-09, -6.789047802158166e-06, 1.5746998371923837e-08, -6.418265224850117e-12, 2.459265235899011e-09, -6.418265224850117e-12, 2.7905500447292925e-15, 2302.0, 0.0039028581231832504, -6.783155185985379e-06, 2.456063130651387e-09, -6.783155185985379e-06, 1.57264921085698e-08, -6.407121361240442e-12, 2.456063130651387e-09, -6.407121361240442e-12, 2.784494182672898e-15, 2303.0, 0.0039011663757264614, -6.777270300517557e-06, 2.452866576518886e-09, -6.777270300517557e-06, 1.5706019595995713e-08, -6.396001350078562e-12, 2.452866576518886e-09, -6.396001350078562e-12, 2.7784539907260274e-15, 2304.0, 0.003899476258084178, -6.77139269100735e-06, 2.4496753514569036e-09, -6.77139269100735e-06, 1.5685584386915252e-08, -6.384905625045345e-12, 2.4496753514569036e-09, -6.384905625045345e-12, 2.772429680646918e-15, 2305.0, 0.003897787304595113, -6.765523266949458e-06, 2.446489899554649e-09, -6.765523266949458e-06, 1.566518292861474e-08, -6.373833752459923e-12, 2.446489899554649e-09, -6.373833752459923e-12, 2.766421040677333e-15, 2306.0, 0.003896099980920553, -6.759661118849181e-06, 2.4433099987675178e-09, -6.759661118849181e-06, 1.5644818773807856e-08, -6.362786166003165e-12, 2.4433099987675178e-09, -6.362786166003165e-12, 2.760427859059035e-15, 2307.0, 0.0038944140542298555, -6.753806701453868e-06, 2.4401354270509046e-09, -6.753806701453868e-06, 1.562448836978092e-08, -6.351762431994201e-12, 2.4401354270509046e-09, -6.351762431994201e-12, 2.7544503475502614e-15, 2308.0, 0.0038927297573536634, -6.747960014763521e-06, 2.4369664064494145e-09, -6.747960014763521e-06, 1.5604193492890772e-08, -6.340762550433032e-12,2.4369664064494145e-09, -6.340762550433032e-12, 2.7484882943927752e-15, 2309.0, 0.0038910466246306896, -6.742120604030788e-06, 2.4338029369630476e-09, -6.742120604030788e-06, 1.5583934143137412e-08, -6.329786521319658e-12, 2.4338029369630476e-09, -6.329786521319658e-12, 2.7425416995865764e-15, 2310.0, 0.0038893651217222214, -6.73628892400302e-06, 2.430644796547199e-09, -6.73628892400302e-06, 1.5563708544164e-08, -6.3188339109732095e-12, 2.430644796547199e-09,-6.3188339109732095e-12, 2.736610563131665e-15, 2311.0, 0.003887685015797615, -6.730464974680217e-06, 2.4274922072464733e-09, -6.730464974680217e-06, 1.5543518472327378e-08, -6.3079051530745556e-12, 2.4274922072464733e-09, -6.3079051530745556e-12, 2.730694885028041e-15, 2312.0, 0.0038860065396875143, -6.724648301315028e-06, 2.424345169060871e-09, -6.724648301315028e-06, 1.5523363927627543e-08, -6.297000247623696e-12, 2.424345169060871e-09, -6.297000247623696e-12, 2.7247944535174675e-15, 2313.0, 0.003884329227730632, -6.7188393586548045e-06, 2.4212034599457866e-09, -6.7188393586548045e-06, 1.5503244910064495e-08, -6.286118760939763e-12, 2.4212034599457866e-09, -6.286118760939763e-12, 2.7189094803581814e-15, 2314.0, 0.003882653545588255, -6.713037691952195e-06, 2.4180670799012205e-09, -6.713037691952195e-06, 1.5483159643281397e-08, -6.275260693022755e-12, 2.4180670799012205e-09, -6.275260693022755e-12, 2.713039542033709e-15, 2315.0, 0.00388097926042974, -6.707243755954551e-06, 2.4149362509717776e-09, -6.707243755954551e-06, 1.5463108127278247e-08, -6.264426043872673e-12, 2.4149362509717776e-09, -6.264426043872673e-12, 2.7071850620605242e-15, 2316.0, 0.0038793066050857306, -6.701457550661871e-06, 2.411810751112853e-09, -6.701457550661871e-06, 1.5443092138411885e-08, -6.2536148134895164e-12, 2.411810751112853e-09, -6.2536148134895164e-12, 2.7013454051639163e-15, 2317.0, 0.0038776351138949394, -6.695678621326806e-06, 2.408690802369051e-09, -6.695678621326806e-06, 1.542311167668231e-08, -6.242827001873286e-12, 2.408690802369051e-09, -6.242827001873286e-12, 2.6955212066185957e-15, 2318.0, 0.003875965252518654, -6.689906967949355e-06, 2.405575960651163e-09, -6.689906967949355e-06, 1.5403164965732685e-08, -6.2320621753431116e-12, 2.405575960651163e-09, -6.2320621753431116e-12, 2.689711831149852e-15, 2319.0, 0.0038742965552955866, -6.684143045276869e-06, 2.4024666700483976e-09, -6.684143045276869e-06, 1.538325200556301e-08, -6.221320767579863e-12, 2.4024666700483976e-09, -6.221320767579863e-12, 2.6839174905159222e-15, 2320.0, 0.003872629487887025, -6.678386398561997e-06, 2.3993627085161506e-09, -6.678386398561997e-06, 1.536337457253012e-08, -6.2106023449026715e-12, 2.3993627085161506e-09, -6.2106023449026715e-12, 2.678138184716806e-15, 2321.0, 0.003870963817462325, -6.67263702780474e-06, 2.396264076054422e-09, -6.67263702780474e-06, 1.534352911392034e-08, -6.1999073409924055e-12, 2.396264076054422e-09, -6.1999073409924055e-12, 2.672373701994267e-15, 2322.0, 0.003869299776852131, -6.666895387752447e-06, 2.3931707726632112e-09, -6.666895387752447e-06, 1.532371918244735e-08, -6.189234888487327e-12, 2.3931707726632112e-09, -6.189234888487327e-12, 2.6666242541065416e-15, 2323.0, 0.003867636900395155, -6.661161023657769e-06,2.390082798342519e-09, -6.661161023657769e-06, 1.5303944778111145e-08, -6.1785858547491745e-12, 2.390082798342519e-09, -6.1785858547491745e-12, 2.660889629295393e-15, 2324.0, 0.0038659756537526846, -6.655433935520705e-06, 2.3870001530923446e-09, -6.655433935520705e-06, 1.528420234819805e-08, -6.16795937241621e-12, 2.3870001530923446e-09, -6.16795937241621e-12, 2.6551698275608217e-15, 2325.0, 0.0038643155712634325, -6.649714578088606e-06, 2.3839228369126886e-09,-6.649714578088606e-06, 1.5264495445421744e-08, -6.157355875169301e-12, 2.3839228369126886e-09, -6.157355875169301e-12, 2.6494646371445904e-15, 2326.0, 0.003862657118588686, -6.644002496614121e-06, 2.3808508498035508e-09, -6.644002496614121e-06, 1.5244820517068547e-08, -6.146774929327581e-12, 2.3808508498035508e-09, -6.146774929327581e-12, 2.643774269804936e-15, 2327.0, 0.0038610000628978014, -6.63829769109725e-06, 2.3777839697203262e-09, -6.63829769109725e-06, 1.5225181115852138e-08, -6.136216968571917e-12, 2.3777839697203262e-09, -6.136216968571917e-12, 2.638098302025385e-15, 2328.0, 0.0038593444041907787, -6.632600161537994e-06, 2.37472241870762e-09, -6.632600161537994e-06, 1.5205573689058838e-08, -6.125681559221441e-12, 2.37472241870762e-09, -6.125681559221441e-12, 2.6324371573224108e-15, 2329.0, 0.003857690142467618, -6.626909907936351e-06, 2.3716661967654318e-09, -6.626909907936351e-06, 1.5186001789402326e-08, -6.1151687012761524e-12, 2.3716661967654318e-09, -6.1151687012761524e-12, 2.626790623937777e-15, 2330.0, 0.003856037277728319, -6.621226930292323e-06, 2.368615303893762e-09, -6.621226930292323e-06, 1.5166461864168923e-08, -6.104678394736052e-12, 2.368615303893762e-09, -6.104678394736052e-12, 2.621158701871483e-15, 2331.0, 0.003854386042803526, -6.615551228605909e-06, 2.365569518048005e-09, -6.615551228605909e-06, 1.5146957466072308e-08, -6.094210639601139e-12, 2.365569518048005e-09, -6.094210639601139e-12, 2.6155409676070556e-15, 2332.0, 0.003852735972031951, -6.60988325762446e-06, 2.362528839228162e-09, -6.60988325762446e-06, 1.5127485042398803e-08, -6.083765435871413e-12, 2.362528839228162e-09, -6.083765435871413e-12, 2.6099378446609684e-15, 2333.0, 0.003851087298244238, -6.604222107853275e-06, 2.3594934894788366e-09, -6.604222107853275e-06, 1.5108046369505246e-08, -6.073342349866007e-12,2.3594934894788366e-09, -6.073342349866007e-12, 2.6043491212749846e-15, 2334.0, 0.0038494402542710304, -6.598568688787054e-06, 2.3564632467554247e-09, -6.598568688787054e-06, 1.5088639671034798e-08, -6.062941381584919e-12, 2.3564632467554247e-09, -6.062941381584919e-12, 2.598774797449104e-15, 2335.0, 0.0038477943744510412, -6.592922090931097e-06, 2.353438333102531e-09, -6.592922090931097e-06, 1.506926849970114e-08, -6.0525629647090184e-12, 2.353438333102531e-09,-6.0525629647090184e-12, 2.59321466142509e-15, 2336.0, 0.0038461501244455576, -6.587282769032754e-06, 2.3504185264755506e-09, -6.587282769032754e-06, 1.5049929302790588e-08, -6.042207099238306e-12, 2.3504185264755506e-09, -6.042207099238306e-12, 2.5876689249611793e-15, 2337.0, 0.0038445070385932922, -6.581650723092025e-06, 2.3474038268744835e-09, -6.581650723092025e-06, 1.5030622080303147e-08, -6.031872917811043e-12, 2.3474038268744835e-09, -6.031872917811043e-12, 2.582137376299135e-15, 2338.0, 0.0038428655825555325, -6.576026407856261e-06, 2.3443944563439345e-09, -6.576026407856261e-06, 1.5011348608595654e-08, -6.021560854108099e-12, 2.3443944563439345e-09, -6.021560854108099e-12, 2.5766200154389574e-15, 2339.0, 0.0038412255235016346, -6.57040845908341e-06, 2.341389970794694e-09, -6.57040845908341e-06, 1.499210888766811e-08, -6.0112709081294735e-12, 2.341389970794694e-09, -6.0112709081294735e-12, 2.5711166306224094e-15, 2340.0, 0.003839586628600955, -6.564798241015524e-06, 2.3383908143159715e-09, -6.564798241015524e-06, 1.4972901141163675e-08, -6.001003079875167e-12, 2.3383908143159715e-09, -6.001003079875167e-12, 2.5656276453659647e-15, 2341.0, 0.003837949363514781, -6.5591952989052515e-06, 2.3353967648631624e-09, -6.5591952989052515e-06, 1.495372714543919e-08, -5.99075693566431e-12, 2.3353967648631624e-09, -5.99075693566431e-12, 2.560152424394913e-15, 2342.0, 0.003836313495412469, -6.553599178005243e-06, 2.3324076003916616e-09, -6.553599178005243e-06, 1.493458512413781e-08, -5.9805324754969025e-12, 2.3324076003916616e-09, -5.9805324754969025e-12, 2.5546913912257276e-15, 2343.0, 0.003834678791463375, -6.548010333062848e-06, 2.329423764990679e-09, -6.548010333062848e-06, 1.4915476853616383e-08, -5.970330133053814e-12, 2.329423764990679e-09, -5.970330133053814e-12, 2.549244334100172e-15, 2344.0, 0.003833045717328787, -6.542428764078068e-06, 2.3264450366156098e-09, -6.542428764078068e-06, 1.4896399669339644e-08, -5.960149474654175e-12, 2.3264450366156098e-09, -5.960149474654175e-12, 2.5438110412600093e-15, 2345.0, 0.003831413807347417, -6.5368540163035505e-06, 2.323471193221849e-09, -6.5368540163035505e-06, 1.4877355347664434e-08, -5.949990500297986e-12, 2.323471193221849e-09, -5.949990500297986e-12, 2.538391936221713e-15, 2346.0, 0.0038297835271805525, -6.5312865444866475e-06, 2.320502678898606e-09, -6.5312865444866475e-06, 1.4858343888590753e-08, -5.939853209985246e-12, 2.320502678898606e-09, -5.939853209985246e-12, 2.532986383710573e-15, 2347.0, 0.00382815464399755, -6.525726348627359e-06, 2.3175390495566717e-09, -6.525726348627359e-06, 1.48393652921186e-08, -5.929737170035088e-12, 2.3175390495566717e-09, -5.929737170035088e-12, 2.5275948072430625e-15, 2348.0, 0.003826526924967766, -6.520172973978333e-06,2.3145805272406506e-09, -6.520172973978333e-06, 1.4820417781891138e-08, -5.9196432478092476e-12, 2.3145805272406506e-09, -5.9196432478092476e-12, 2.522216995060945e-15, 2349.0, 0.0038249006029218435, -6.514626875286922e-06, 2.3116268899059378e-09, -6.514626875286922e-06, 1.4801503134265204e-08, -5.909570142265119e-12, 2.3116268899059378e-09, -5.909570142265119e-12, 2.5168527354059835e-15, 2350.0, 0.003823275910690427, -6.509088052553125e-06, 2.3086783595971383e-09,-6.509088052553125e-06, 1.4782620461062379e-08, -5.89951915444531e-12, 2.3086783595971383e-09, -5.89951915444531e-12, 2.511502240036415e-15, 2351.0, 0.0038216523826122284, -6.503556051029591e-06, 2.305734936314252e-09, -6.503556051029591e-06, 1.4763770650461083e-08, -5.889488983307212e-12, 2.305734936314252e-09, -5.889488983307212e-12, 2.506165508952239e-15, 2352.0, 0.003820030251517892, -6.49803087071632e-06, 2.3027963980126742e-09, -6.49803087071632e-06, 1.4744951926104477e-08, -5.8794804962125635e-12, 2.3027963980126742e-09, -5.8794804962125635e-12, 2.5008423303952195e-15, 2353.0, 0.0038184095174074173, -6.492512966360664e-06, 2.2998629667370096e-09, -6.492512966360664e-06, 1.47261660643494e-08, -5.869492825799627e-12, 2.2998629667370096e-09, -5.869492825799627e-12, 2.495532704365356e-15, 2354.0, 0.0038167901802808046, -6.487002337962622e-06, 2.2969344204426534e-09, -6.487002337962622e-06, 1.4707411288839012e-08, -5.859526405749271e-12, 2.2969344204426534e-09, -5.859526405749271e-12, 2.4902366308626484e-15, 2355.0, 0.003815172240138054, -6.481498530774843e-06, 2.2940109811742104e-09, -6.481498530774843e-06, 1.4688688487751733e-08, -5.849581669742365e-12, 2.2940109811742104e-09, -5.849581669742365e-12, 2.48495389812886e-15, 2356.0, 0.003813555696979165, -6.476001544797327e-06, 2.291092204842471e-09, -6.476001544797327e-06, 1.4669997661087564e-08, -5.839657316736302e-12, 2.291092204842471e-09, -5.839657316736302e-12, 2.479684717922228e-15, 2357.0, 0.003811940550804138, -6.470511834777426e-06, 2.2881787575812496e-09, -6.470511834777426e-06, 1.4651338808846504e-08, -5.829754647773688e-12, 2.2881787575812496e-09, -5.829754647773688e-12, 2.474428878484515e-15, 2358.0, 0.0038103265687823296, -6.465028491220437e-06, 2.2852699732567316e-09, -6.465028491220437e-06, 1.4632711042850133e-08, -5.8198723618119175e-12,2.2852699732567316e-09, -5.8198723618119175e-12, 2.469186591573958e-15, 2359.0, 0.003808713983744383, -6.459552878368413e-06, 2.282366073913522e-09, -6.459552878368413e-06, 1.4614115251276871e-08, -5.810011326212727e-12, 2.282366073913522e-09, -5.810011326212727e-12, 2.4639574336740837e-15, 2360.0, 0.0038071030285209417, -6.4540836319793016e-06, 2.279467281596226e-09, -6.4540836319793016e-06, 1.45955505459483e-08, -5.800171107295249e-12, 2.279467281596226e-09,-5.800171107295249e-12, 2.4587416165431286e-15, 2361.0, 0.003805493237450719, -6.448621661547804e-06, 2.276573374260238e-09, -6.448621661547804e-06, 1.4577017815042836e-08, -5.790352138740351e-12, 2.276573374260238e-09, -5.790352138740351e-12, 2.453538928422856e-15, 2362.0, 0.003803884843364358, -6.44316651232657e-06, 2.2736843519055583e-09, -6.44316651232657e-06, 1.4558516170382063e-08, -5.780553553186296e-12, 2.2736843519055583e-09, -5.780553553186296e-12, 2.4483495810715024e-15, 2363.0, 0.003802277846261859, -6.43771863906295e-06, 2.270800214532187e-09, -6.43771863906295e-06, 1.454004561196598e-08, -5.770775350633084e-12, 2.270800214532187e-09, -5.770775350633084e-12, 2.4431733627308314e-15, 2364.0, 0.003800672013312578, -6.432277132262243e-06, 2.267920962140124e-09, -6.432277132262243e-06, 1.4521606139794585e-08, -5.761018398442452e-12, 2.267920962140124e-09, -5.761018398442452e-12, 2.4380102734008428e-15, 2365.0, 0.003799067810177803, -6.42684290141915e-06, 2.2650463726847647e-09, -6.42684290141915e-06, 1.45031986420463e-08, -5.7512818292526635e-12, 2.2650463726847647e-09, -5.7512818292526635e-12, 2.4328603130815366e-15, 2366.0, 0.003797464771196246, -6.42141549178632e-06, 2.2621768902553185e-09, -6.42141549178632e-06, 1.4484821342364285e-08, -5.7415656430637174e-12, 2.2621768902553185e-09, -5.7415656430637174e-12, 2.427723270014676e-15, 2367.0, 0.003795863129198551, -6.415994448616402e-06, 2.2593120707625758e-09, -6.415994448616402e-06, 1.4466475128926959e-08, -5.731870273556483e-12, 2.2593120707625758e-09, -5.731870273556483e-12, 2.422599355958498e-15, 2368.0, 0.003794262884184718, -6.410580681404099e-06, 2.2564523582957463e-09, -6.410580681404099e-06, 1.4448160889912742e-08, -5.722195287050091e-12, 2.2564523582957463e-09, -5.722195287050091e-12, 2.4174883591547656e-15, 2369.0, 0.0037926638033241034, -6.405173735402059e-06, 2.2535973087656203e-09, -6.405173735402059e-06, 1.4429876848964795e-08, -5.7125402498636735e-12, 2.2535973087656203e-09, -5.7125402498636735e-12, 2.4123902796034788e-15, 2370.0, 0.003791066352277994, -6.399774065357633e-06, 2.2507469221721976e-09, -6.399774065357633e-06, 1.4411623894261538e-08, -5.702906029358967e-12, 2.2507469221721976e-09, -5.702906029358967e-12, 2.4073053290628744e-15, 2371.0, 0.0037894700653851032, -6.3943807617761195e-06, 2.2479014205600834e-09, -6.3943807617761195e-06, 1.439340113762455e-08, -5.693292191855104e-12, 2.2479014205600834e-09, -5.693292191855104e-12, 2.402232872258242e-15, 2372.0, 0.0037878751754760742, -6.388994279404869e-06, 2.2450608039292774e-09, -6.388994279404869e-06, 1.4375209467232253e-08, -5.683698303671214e-12, 2.2450608039292774e-09, -5.683698303671214e-12, 2.397173544464292e-15, 2373.0, 0.003786281682550907, -6.3836146182438824e-06,2.24222507227978e-09, -6.3836146182438824e-06, 1.4357047994906225e-08, -5.674124798488167e-12, 2.24222507227978e-09, -5.674124798488167e-12, 2.392126922164551e-15, 2374.0, 0.0037846893537789583, -6.378241778293159e-06, 2.2393940035669857e-09, -6.378241778293159e-06, 1.4338917608824886e-08, -5.664571242625094e-12, 2.2393940035669857e-09, -5.664571242625094e-12, 2.387092793600782e-15, 2375.0, 0.003783098654821515, -6.372875759552699e-06, 2.236567597790895e-09,-6.372875759552699e-06, 1.4320818308988237e-08, -5.655038069762863e-12, 2.236567597790895e-09, -5.655038069762863e-12, 2.3820715822894583e-15, 2376.0, 0.00378150912001729, -6.367516107275151e-06, 2.2337460769961126e-09, -6.367516107275151e-06, 1.4302748319039438e-08, -5.6455248462206065e-12, 2.2337460769961126e-09, -5.6455248462206065e-12, 2.3770630764723437e-15, 2377.0, 0.0037799207493662834, -6.362163730955217e-06, 2.2309292191380337e-09, -6.362163730955217e-06, 1.4284709415335328e-08, -5.636031571998323e-12, 2.2309292191380337e-09, -5.636031571998323e-12, 2.372067064391201e-15, 2378.0, 0.0037783340085297823, -6.356818175845547e-06, 2.228117024216658e-09, -6.356818175845547e-06, 1.4266700709697488e-08, -5.626558247096014e-12, 2.228117024216658e-09, -5.626558247096014e-12, 2.367083757804267e-15, 2379.0, 0.0037767484318464994, -6.351478987198789e-06, 2.225309714276591e-09, -6.351478987198789e-06, 1.4248722202125919e-08, -5.6171048715136784e-12, 2.225309714276591e-09, -5.6171048715136784e-12, 2.3621129449533053e-15, 2380.0, 0.0037751642521470785, -6.346146619762294e-06, 2.2225070672732272e-09, -6.346146619762294e-06, 1.4230773892620618e-08, -5.6076714452513166e-12, 2.2225070672732272e-09, -5.6076714452513166e-12, 2.3571548375965522e-15, 2381.0, 0.0037735814694315195, -6.340821073536063e-06, 2.219709083206567e-09, -6.340821073536063e-06, 1.4212855781181588e-08, -5.5982575346280594e-12, 2.219709083206567e-09, -5.5982575346280594e-12, 2.3522090122175343e-15, 2382.0, 0.0037719998508691788, -6.335501893772744e-06, 2.21691576207661e-09, -6.335501893772744e-06, 1.4194967867808828e-08, -5.588863573324776e-12, 2.21691576207661e-09, -5.588863573324776e-12, 2.3472756805744885e-15, 2383.0, 0.0037704196292907, -6.330189989967039e-06, 2.2141273259279615e-09, -6.330189989967039e-06, 1.4177109264323917e-08, -5.579489127660597e-12,2.2141273259279615e-09, -5.579489127660597e-12, 2.3423548426674146e-15, 2384.0, 0.003768840804696083, -6.3248844526242465e-06, 2.2113433306714114e-09, -6.3248844526242465e-06, 1.4159280858905277e-08, -5.5701341976355234e-12, 2.2113433306714114e-09, -5.5701341976355234e-12, 2.337446286738076e-15, 2385.0, 0.0037672631442546844, -6.3195852817443665e-06, 2.2085642203961697e-09, -6.3195852817443665e-06, 1.4141482651552906e-08, -5.560799216930423e-12, 2.2085642203961697e-09,-5.560799216930423e-12, 2.3325500127864725e-15, 2386.0, 0.0037656868807971478, -6.31429293207475e-06, 2.2057895510130265e-09, -6.31429293207475e-06, 1.4123714642266805e-08, -5.551483751864428e-12, 2.2057895510130265e-09, -5.551483751864428e-12, 2.327666232570841e-15, 2387.0, 0.003764112014323473, -6.3090074036153965e-06, 2.2030195445665868e-09, -6.3090074036153965e-06, 1.4105975942868554e-08, -5.542187802437537e-12, 2.2030195445665868e-09, -5.542187802437537e-12, 2.322794522574708e-15, 2388.0, 0.0037625383120030165, -6.303728696366306e-06, 2.2002544231014554e-09, -6.303728696366306e-06, 1.4088266553358153e-08, -5.532910934968882e-12, 2.2002544231014554e-09, -5.532910934968882e-12, 2.31793509455631e-15, 2389.0, 0.003760966006666422, -6.298456355580129e-06, 2.1974937425284224e-09, -6.298456355580129e-06, 1.4070587361914022e-08, -5.523654016820201e-12, 2.1974937425284224e-09, -5.523654016820201e-12, 2.3130879485156472e-15, 2390.0, 0.0037593950983136892, -6.2931903812568635e-06, 2.194737502847488e-09, -6.2931903812568635e-06, 1.4052937480357741e-08, -5.514416180629755e-12, 2.194737502847488e-09, -5.514416180629755e-12, 2.308252872694483e-15, 2391.0, 0.003757825354114175, -6.2879312281438615e-06, 2.191986148147862e-09, -6.2879312281438615e-06, 1.403531690868931e-08, -5.505197426397546e-12, 2.191986148147862e-09, -5.505197426397546e-12, 2.303429867092817e-15, 2392.0, 0.0037562570068985224, -6.282678896241123e-06, 2.1892392343403344e-09, -6.282678896241123e-06, 1.401772653508715e-08, -5.495998187804441e-12, 2.1892392343403344e-09, -5.495998187804441e-12, 2.298619143468886e-15, 2393.0, 0.003754689823836088, -6.277432930801297e-06, 2.1864969834695103e-09, -6.277432930801297e-06, 1.4000164583194419e-08, -5.486818031169571e-12, 2.1864969834695103e-09, -5.486818031169571e-12, 2.293820278306217e-15, 2394.0, 0.003753124037757516, -6.272193786571734e-06, 2.1837593955353896e-09, -6.272193786571734e-06, 1.3982632829367958e-08, -5.477657390173807e-12, 2.1837593955353896e-09, -5.477657390173807e-12, 2.289033483363046e-15, 2395.0, 0.0037515596486628056, -6.266960554057732e-06, 2.1810262484933673e-09, -6.266960554057732e-06, 1.3965129497250928e-08, -5.468515397455409e-12, 2.1810262484933673e-09, -5.468515397455409e-12, 2.2842587586393735e-15, 2396.0, 0.0037499964237213135, -6.261734597501345e-06, 2.1782977643880486e-09, -6.261734597501345e-06, 1.3947656363200167e-08, -5.459392486695247e-12, 2.1782977643880486e-09, -5.459392486695247e-12, 2.2794958923769626e-15, 2397.0, 0.0037484345957636833, -6.256514552660519e-06, 2.1755737211748283e-09, -6.256514552660519e-06, 1.3930211650858837e-08, -5.45028909157419e-12, 2.1755737211748283e-09, -5.45028909157419e-12, 2.274744884575813e-15, 2398.0, 0.003746874164789915, -6.251301329029957e-06,2.1728541188537065e-09, -6.251301329029957e-06, 1.3912796248405357e-08, -5.441204344730499e-12, 2.1728541188537065e-09, -5.441204344730499e-12, 2.270005946994162e-15, 2399.0, 0.003745314897969365, -6.246094926609658e-06, 2.170139179469288e-09, -6.246094926609658e-06, 1.3895409267661307e-08, -5.432138246164175e-12, 2.170139179469288e-09, -5.432138246164175e-12, 2.265278656115536e-15, 2400.0, 0.003743757028132677, -6.24089443590492e-06, 2.167428903021573e-09,-6.24089443590492e-06, 1.3878051596805108e-08, -5.423091229556087e-12, 2.167428903021573e-09, -5.423091229556087e-12, 2.2605632236981713e-15, 2401.0, 0.0037422003224492073, -6.235700766410446e-06, 2.164722845421352e-09, -6.235700766410446e-06, 1.3860723235836758e-08, -5.414063294906235e-12, 2.164722845421352e-09, -5.414063294906235e-12, 2.255859649742068e-15, 2402.0, 0.0037406450137495995, -6.230513463378884e-06, 2.162021450757834e-09, -6.230513463378884e-06, 1.384342329657784e-08, -5.4050540085337495e-12, 2.162021450757834e-09, -5.4050540085337495e-12, 2.2511677224889897e-15, 2403.0, 0.00373909086920321, -6.225332981557585e-06, 2.1593247190310194e-09, -6.225332981557585e-06, 1.382615266720677e-08, -5.396063370438631e-12, 2.1593247190310194e-09, -5.396063370438631e-12, 2.246487653697173e-15, 2404.0, 0.0037375381216406822, -6.220158411451848e-06, 2.1566322061516985e-09, -6.220158411451848e-06, 1.3808910459545132e-08, -5.387091380620879e-12, 2.1566322061516985e-09, -5.387091380620879e-12, 2.241819019850144e-15, 2405.0, 0.003735986538231373, -6.2149906625563744e-06, 2.153944356209081e-09, -6.2149906625563744e-06, 1.3791696673592924e-08, -5.378138039080493e-12, 2.153944356209081e-09, -5.378138039080493e-12, 2.2371622444643767e-15, 2406.0, 0.0037344363518059254, -6.209829280123813e-06, 2.151260725113957e-09, -6.209829280123813e-06, 1.3774511309350146e-08, -5.369203345817475e-12, 2.151260725113957e-09, -5.369203345817475e-12, 2.2325169040233973e-15, 2407.0, 0.00373288756236434, -6.204674264154164e-06, 2.1485817569555365e-09, -6.204674264154164e-06, 1.3757355254995218e-08, -5.360287300831823e-12, 2.1485817569555365e-09, -5.360287300831823e-12, 2.2278832102854427e-15, 2408.0, 0.0037313399370759726, -6.1995256146474276e-06, 2.1459072296892145e-09, -6.1995256146474276e-06, 1.3740226734171301e-08, -5.351389470442669e-12,2.1459072296892145e-09, -5.351389470442669e-12, 2.2232611632505127e-15, 2409.0, 0.0037297934759408236, -6.194383786350954e-06, 2.143236921270386e-09, -6.194383786350954e-06, 1.3723127523235235e-08, -5.342510288330882e-12, 2.143236921270386e-09, -5.342510288330882e-12, 2.218650339402134e-15, 2410.0, 0.0037282484117895365, -6.189247869770043e-06, 2.140571275788261e-09, -6.189247869770043e-06, 1.3706055845830178e-08, -5.333649320815592e-12, 2.140571275788261e-09,-5.333649320815592e-12, 2.21405116225678e-15, 2411.0, 0.0037267047446221113, -6.184118319652043e-06, 2.1379100711982346e-09, -6.184118319652043e-06, 1.3689013478312972e-08, -5.324807001577669e-12, 2.1379100711982346e-09, -5.324807001577669e-12, 2.209463420056214e-15, 2412.0, 0.0037251622416079044, -6.178995590744307e-06, 2.1352530854557017e-09, -6.178995590744307e-06, 1.3671998644326777e-08, -5.315982896936244e-12, 2.1352530854557017e-09, -5.315982896936244e-12, 2.2048871128004357e-15, 2413.0, 0.003723620902746916, -6.173878773552133e-06, 2.1326005406052673e-09, -6.173878773552133e-06, 1.3655012232050012e-08, -5.307177006891317e-12, 2.1326005406052673e-09, -5.307177006891317e-12, 2.2003222404894454e-15, 2414.0, 0.003722080960869789, -6.168768322822871e-06, 2.1299524366469313e-09, -6.168768322822871e-06, 1.3638054241482678e-08, -5.2983893314428876e-12, 2.1299524366469313e-09, -5.2983893314428876e-12, 2.1957685913650063e-15, 2415.0, 0.0037205421831458807, -6.163664693303872e-06, 2.127308773580694e-09, -6.163664693303872e-06, 1.3621123784446354e-08, -5.289619870590956e-12, 2.127308773580694e-09, -5.289619870590956e-12, 2.1912261654271183e-15, 2416.0, 0.003719004802405834, -6.158566975500435e-06, 2.124669551406555e-09, -6.158566975500435e-06, 1.3604220860941041e-08, -5.280868624335522e-12, 2.124669551406555e-09, -5.280868624335522e-12, 2.1866951744340182e-15, 2417.0, 0.0037174688186496496, -6.15347562415991e-06, 2.1220345480799097e-09, -6.15347562415991e-06, 1.3587347247323578e-08, -5.272135592676586e-12, 2.1220345480799097e-09, -5.272135592676586e-12, 2.1821751948692325e-15, 2418.0, 0.0037159337662160397, -6.148390639282297e-06, 2.119403763600758e-09, -6.148390639282297e-06, 1.3570500279058706e-08, -5.263420341933278e-12, 2.119403763600758e-09, -5.263420341933278e-12, 2.1776666502492346e-15, 2419.0, 0.0037144003435969353, -6.143312020867597e-06, 2.1167776420583095e-09, -6.143312020867597e-06, 1.3553681732503264e-08, -5.2547228721055994e-12, 2.1167776420583095e-09, -5.2547228721055994e-12, 2.173169117057551e-15, 2420.0, 0.0037128678523004055, -6.13823976891581e-06, 2.1141557393633548e-09, -6.13823976891581e-06, 1.3536890719478833e-08, -5.2460436168744184e-12, 2.1141557393633548e-09, -5.2460436168744184e-12, 2.1686828070524187e-15, 2421.0, 0.0037113367579877377, -6.133173428679584e-06, 2.1115380555158936e-09, -6.133173428679584e-06, 1.3520128128163833e-08, -5.237382576239735e-12, 2.1115380555158936e-09, -5.237382576239735e-12, 2.1642077202338374e-15, 2422.0, 0.0037098070606589317, -6.12811345490627e-06, 2.108924812560531e-09, -6.12811345490627e-06, 1.3503392182201424e-08, -5.228738882839812e-12, 2.108924812560531e-09, -5.228738882839812e-12, 2.1597434330853336e-15, 2423.0, 0.003708278527483344, -6.123059847595869e-06,2.1063157884526618e-09, -6.123059847595869e-06, 1.3486684657948445e-08, -5.220113404036386e-12, 2.1063157884526618e-09, -5.220113404036386e-12, 2.155290369123381e-15, 2424.0, 0.0037067511584609747, -6.11801260674838e-06, 2.103711205236891e-09, -6.11801260674838e-06, 1.3470004667226476e-08, -5.211505706148589e-12, 2.103711205236891e-09, -5.211505706148589e-12, 2.1508483165897426e-15, 2425.0, 0.0037052251864224672, -6.112971732363803e-06, 2.101110618824009e-09,-6.112971732363803e-06, 1.3453351321857099e-08, -5.202915355495552e-12, 2.101110618824009e-09, -5.202915355495552e-12, 2.1464172754844186e-15, 2426.0, 0.003703700378537178, -6.107936769694788e-06, 2.0985146953478306e-09, -6.107936769694788e-06, 1.3436726398197152e-08, -5.194343219439013e-12, 2.0985146953478306e-09, -5.194343219439013e-12, 2.1419972458074088e-15, 2427.0, 0.003702176734805107, -6.102908173488686e-06, 2.0959227686745407e-09, -6.102908173488686e-06, 1.3420128119889796e-08, -5.185788430617233e-12, 2.0959227686745407e-09, -5.185788430617233e-12, 2.1375880158004765e-15, 2428.0, 0.003700654488056898, -6.097885488998145e-06, 2.0933352828933494e-09, -6.097885488998145e-06, 1.340355737511345e-08, -5.177250989030213e-12, 2.0933352828933494e-09, -5.177250989030213e-12, 2.1331895854636218e-15, 2429.0, 0.003699133638292551, -6.092869170970516e-06, 2.0907520159596515e-09, -6.092869170970516e-06, 1.3387014163868116e-08, -5.168731762039691e-12, 2.0907520159596515e-09, -5.168731762039691e-12, 2.1288021665550813e-15, 2430.0, 0.0036976137198507786, -6.0878592194058e-06, 2.0881729678734473e-09, -6.0878592194058e-06, 1.3370498486153792e-08, -5.16022944860306e-12, 2.0881729678734473e-09, -5.16022944860306e-12, 2.1244255473166183e-15, 2431.0, 0.003696095198392868, -6.0828551795566455e-06, 2.0855981386347366e-09, -6.0828551795566455e-06, 1.335400945379206e-08, -5.151744916082057e-12, 2.0855981386347366e-09, -5.151744916082057e-12, 2.120059727748233e-15, 2432.0, 0.0036945778410881758, -6.077857506170403e-06, 2.0830275282435196e-09, -6.077857506170403e-06, 1.3337547066782918e-08, -5.1432777307958144e-12, 2.0830275282435196e-09, -5.1432777307958144e-12, 2.115704496091688e-15, 2433.0, 0.0036930618807673454, -6.072866199247073e-06, 2.080461136699796e-09, -6.072866199247073e-06, 1.3321112213304787e-08, -5.134827892744331e-12,2.080461136699796e-09, -5.134827892744331e-12, 2.1113602758634576e-15, 2434.0, 0.0036915470845997334, -6.067880804039305e-06, 2.077898964003566e-09, -6.067880804039305e-06, 1.3304704893357666e-08, -5.126395401927608e-12, 2.077898964003566e-09, -5.126395401927608e-12, 2.107026431788831e-15, 2435.0, 0.003690033685415983, -6.062901320547098e-06, 2.0753410101548297e-09, -6.062901320547098e-06, 1.3288324218763137e-08, -5.117980258345645e-12, 2.0753410101548297e-09,-5.117980258345645e-12, 2.1027035991425186e-15, 2436.0, 0.0036885212175548077, -6.057928203517804e-06, 2.072787275153587e-09, -6.057928203517804e-06, 1.3271970189521198e-08, -5.109582461998441e-12, 2.072787275153587e-09, -5.109582461998441e-12, 2.09839114264981e-15, 2437.0, 0.003687010146677494, -6.052960998204071e-06, 2.0702377589998378e-09, -6.052960998204071e-06, 1.3255642805631851e-08, -5.101202012885997e-12, 2.0702377589998378e-09, -5.101202012885997e-12, 2.0940894858271792e-15, 2438.0, 0.0036855004727840424, -6.048000159353251e-06, 2.067692461693582e-09, -6.048000159353251e-06, 1.3239342067095095e-08, -5.092838477327444e-12, 2.067692461693582e-09, -5.092838477327444e-12, 2.089798205158152e-15, 2439.0, 0.0036839917302131653, -6.043045232217992e-06, 2.065151161190215e-09, -6.043045232217992e-06, 1.3223068862089349e-08, -5.084491855322781e-12, 2.065151161190215e-09, -5.084491855322781e-12, 2.0855177241592025e-15, 2440.0, 0.00368248438462615, -6.038096671545645e-06, 2.0626140795343417e-09, -6.038096671545645e-06, 1.3206821414257774e-08, -5.076162580552879e-12, 2.0626140795343417e-09, -5.076162580552879e-12, 2.0812476193138568e-15, 2441.0, 0.0036809782031923532, -6.03315402258886e-06, 2.060081216725962e-09, -6.03315402258886e-06, 1.3190600611778791e-08, -5.067850653017736e-12, 2.060081216725962e-09, -5.067850653017736e-12, 2.076987890622115e-15, 2442.0, 0.0036794734187424183, -6.028217285347637e-06, 2.0575525727650756e-09, -6.028217285347637e-06, 1.3174407342830818e-08, -5.059555205355615e-12, 2.0575525727650756e-09, -5.059555205355615e-12, 2.0727387498422137e-15, 2443.0, 0.0036779697984457016, -6.023286914569326e-06, 2.055027925607078e-09, -6.023286914569326e-06, 1.3158239831057017e-08, -5.0512771049282534e-12, 2.055027925607078e-09, -5.0512771049282534e-12, 2.0684999852159163e-15, 2444.0, 0.003676467342302203, -6.018362455506576e-06, 2.052507497296574e-09, -6.018362455506576e-06, 1.3142098964635807e-08, -5.043015918054783e-12, 2.052507497296574e-09, -5.043015918054783e-12, 2.0642718085014597e-15, 2445.0, 0.003674966050311923, -6.013443908159388e-06, 2.0499910657889586e-09, -6.013443908159388e-06, 1.3125983855388768e-08, -5.034771211054334e-12, 2.0499910657889586e-09, -5.034771211054334e-12, 2.06005379618237e-15, 2446.0, 0.003673466155305505, -6.008531272527762e-06, 2.047478853128837e-09, -6.008531272527762e-06, 1.310989627967274e-08, -5.026543851288645e-12, 2.047478853128837e-09, -5.026543851288645e-12, 2.0558461600168844e-15, 2447.0, 0.003671967424452305, -6.003625003359048e-06, 2.0449706372716037e-09, -6.003625003359048e-06, 1.3093833572952462e-08, -5.018332971395978e-12, 2.0449706372716037e-09, -5.018332971395978e-12, 2.0516489000050025e-15, 2448.0, 0.003670469857752323, -5.998724645905895e-06,2.042466640261864e-09, -5.998724645905895e-06, 1.3077798399763196e-08, -5.0101390050572014e-12, 2.042466640261864e-09, -5.0101390050572014e-12, 2.0474618043884877e-15, 2449.0, 0.0036689734552055597, -5.993830200168304e-06, 2.039966640055013e-09, -5.993830200168304e-06, 1.3061788983748102e-08, -5.001961518591447e-12, 2.039966640055013e-09, -5.001961518591447e-12, 2.04328487316734e-15, 2450.0, 0.0036674784496426582, -5.988941666146275e-06, 2.037470858695656e-09,-5.988941666146275e-06, 1.3045805324907178e-08, -4.993800945679583e-12, 2.037470858695656e-09, -4.993800945679583e-12, 2.039118318099796e-15, 2451.0, 0.003665984608232975, -5.984059043839807e-06, 2.034979074139187e-09, -5.984059043839807e-06, 1.3029848311418846e-08, -4.985656852640741e-12, 2.034979074139187e-09, -4.985656852640741e-12, 2.034961927427619e-15, 2452.0, 0.00366449193097651, -5.979182787996251e-06, 2.032491286385607e-09, -5.979182787996251e-06, 1.3013916166926265e-08, -4.9775296731557894e-12, 2.032491286385607e-09, -4.9775296731557894e-12, 2.030815912909046e-15, 2453.0, 0.0036630004178732634, -5.974311989120906e-06, 2.0300074954349157e-09, -5.974311989120906e-06, 1.2998011555964695e-08, -4.969418539862991e-12, 2.0300074954349157e-09, -4.969418539862991e-12, 2.0266796392693666e-15, 2454.0, 0.0036615103017538786, -5.969447556708474e-06, 2.027527923331718e-09, -5.969447556708474e-06, 1.2982131813998876e-08, -4.961324320124083e-12, 2.027527923331718e-09, -4.961324320124083e-12, 2.022553741783291e-15, 2455.0, 0.0036600211169570684, -5.964589036011603e-06, 2.0250523480314087e-09, -5.964589036011603e-06, 1.2966277829207229e-08, -4.953246580258197e-12, 2.0250523480314087e-09, -4.953246580258197e-12, 2.0184377969343454e-15, 2456.0, 0.00365853332914412, -5.959736427030293e-06, 2.022580769533988e-09, -5.959736427030293e-06, 1.2950450489768173e-08, -4.945184886584464e-12, 2.022580769533988e-09, -4.945184886584464e-12, 2.014332016480767e-15, 2457.0, 0.0036570467054843903, -5.9548892750171944e-06, 2.0201131878394563e-09, -5.9548892750171944e-06, 1.2934648019324868e-08, -4.9371401064646214e-12, 2.0201131878394563e-09, -4.9371401064646214e-12, 2.010236188664319e-15, 2458.0, 0.0036555612459778786, -5.950048489467008e-06, 2.017649602947813e-09, -5.950048489467008e-06, 1.2918872194234154e-08, -4.929111372536932e-12,2.017649602947813e-09, -4.929111372536932e-12, 2.006150313485001e-15, 2459.0, 0.003654077183455229, -5.945213615632383e-06, 2.0151900148590585e-09, -5.945213615632383e-06, 1.2903121238139192e-08, -4.921099118482264e-12, 2.0151900148590585e-09, -4.921099118482264e-12, 2.0020743909428132e-15, 2460.0, 0.0036525942850857973, -5.94038465351332e-06, 2.0127344235731925e-09, -5.94038465351332e-06, 1.2887396039218402e-08, -4.913102910619749e-12, 2.0127344235731925e-09,-4.913102910619749e-12, 1.9980084210377558e-15, 2461.0, 0.0036511123180389404, -5.935561148362467e-06, 2.0102828290902153e-09, -5.935561148362467e-06, 1.2871696597471782e-08, -4.9051231826302555e-12, 2.0102828290902153e-09, -4.9051231826302555e-12, 1.9939524037698286e-15, 2462.0, 0.0036496317479759455, -5.930744009674527e-06, 2.0078352314101267e-09, -5.930744009674527e-06, 1.2856022024720914e-08, -4.897159500832915e-12, 2.0078352314101267e-09, -4.897159500832915e-12, 1.9899063391390316e-15, 2463.0, 0.003648152342066169, -5.925932327954797e-06, 2.0053916305329267e-09, -5.925932327954797e-06, 1.2840373209144218e-08, -4.889211865227727e-12, 2.0053916305329267e-09, -4.889211865227727e-12, 1.985870015387128e-15, 2464.0, 0.003646674333140254, -5.92112701269798e-06, 2.0029520264586154e-09, -5.92112701269798e-06, 1.2824750150741693e-08, -4.881280275814692e-12, 2.0029520264586154e-09, -4.881280275814692e-12, 1.981843432514118e-15, 2465.0, 0.003645197255536914, -5.916327154409373e-06, 2.0005164191871927e-09, -5.916327154409373e-06, 1.2809152849513339e-08, -4.873365166274679e-12, 2.0005164191871927e-09, -4.873365166274679e-12, 1.977826802278238e-15, 2466.0, 0.0036437215749174356, -5.911533207836328e-06, 1.9980845866740538e-09, -5.911533207836328e-06, 1.2793579529102317e-08, -4.86546566924595e-12, 1.9980845866740538e-09, -4.86546566924595e-12, 1.9738197011630147e-15, 2467.0, 0.003642246825620532, -5.9067451729788445e-06, 1.9956567509638035e-09, -5.9067451729788445e-06, 1.2778031965865466e-08, -4.857582652090242e-12, 1.9956567509638035e-09, -4.857582652090242e-12, 1.9698225526849217e-15, 2468.0, 0.0036407734733074903, -5.9019625950895716e-06, 1.993232912056442e-09, -5.9019625950895716e-06, 1.2762510159802787e-08, -4.849715247445818e-12, 1.993232912056442e-09, -4.849715247445818e-12, 1.965835145085722e-15, 2469.0, 0.003639301285147667, -5.897186383663211e-06, 1.990813069951969e-09, -5.897186383663211e-06, 1.2747013222735859e-08, -4.841863888993547e-12, 1.990813069951969e-09, -4.841863888993547e-12, 1.961857266607179e-15, 2470.0, 0.0036378302611410618, -5.892415629205061e-06, 1.9883970026057796e-09, -5.892415629205061e-06, 1.2731541154664683e-08, -4.83402814305256e-12, 1.9883970026057796e-09, -4.83402814305256e-12, 1.9578891290075295e-15, 2471.0, 0.003636360401287675, -5.887650786462473e-06, 1.985984932062479e-09, -5.887650786462473e-06, 1.2716093955589258e-08, -4.8262084433037256e-12, 1.985984932062479e-09, -4.8262084433037256e-12, 1.9539305205285365e-15, 2472.0, 0.00363489193841815, -5.882891400688095e-06, 1.983576636277462e-09, -5.882891400688095e-06, 1.2700671625509585e-08, -4.818404789747044e-12, 1.983576636277462e-09, -4.818404789747044e-12, 1.949981652928437e-15, 2473.0, 0.0036334244068711996, -5.878137926629279e-06,1.981172337295334e-09, -5.878137926629279e-06, 1.2685275052604084e-08, -4.810616748701646e-12, 1.981172337295334e-09, -4.810616748701646e-12, 1.946042314448994e-15, 2474.0, 0.0036319580394774675, -5.873390364286024e-06, 1.9787718130714893e-09, -5.873390364286024e-06, 1.2669902460515914e-08, -4.802844320167532e-12, 1.9787718130714893e-09, -4.802844320167532e-12, 1.9421125050902077e-15, 2475.0, 0.0036304930690675974, -5.868648713658331e-06, 1.9763752856505334e-09,-5.868648713658331e-06, 1.2654555625601915e-08, -4.795087504144702e-12, 1.9763752856505334e-09, -4.795087504144702e-12, 1.938192224852078e-15, 2476.0, 0.003629029029980302, -5.8639125199988484e-06, 1.9739825329878613e-09, -5.8639125199988484e-06, 1.2639232771505249e-08, -4.787346300633155e-12, 1.9739825329878613e-09, -4.787346300633155e-12, 1.934281473734605e-15, 2477.0, 0.0036275663878768682, -5.8591822380549274e-06, 1.971593777128078e-09, -5.8591822380549274e-06, 1.2623934786404334e-08, -4.7796211433137614e-12, 1.971593777128078e-09, -4.7796211433137614e-12, 1.9303800399795516e-15, 2478.0, 0.003626104909926653, -5.854457413079217e-06, 1.969208796026578e-09, -5.854457413079217e-06, 1.260866167029917e-08, -4.7719111648247825e-12, 1.969208796026578e-09, -4.7719111648247825e-12, 1.926488135345155e-15, 2479.0, 0.003624644363299012, -5.849738499819068e-06, 1.966827589683362e-09, -5.849738499819068e-06, 1.2593413423189759e-08, -4.764216798847087e-12, 1.966827589683362e-09, -4.764216798847087e-12, 1.9226057598314148e-15, 2480.0, 0.0036231852136552334, -5.84502504352713e-06, 1.9644501580984297e-09, -5.84502504352713e-06, 1.2578189156897679e-08, -4.756538045380676e-12, 1.9644501580984297e-09, -4.756538045380676e-12, 1.9187327016800945e-15, 2481.0, 0.003621727228164673, -5.840317498950753e-06, 1.962076723316386e-09, -5.840317498950753e-06, 1.256298975960135e-08, -4.7488749044255485e-12, 1.962076723316386e-09, -4.7488749044255485e-12, 1.914868960891194e-15, 2482.0, 0.0036202704068273306, -5.835615866089938e-06, 1.959707063292626e-09, -5.835615866089938e-06, 1.2547814343122354e-08, -4.741226942300836e-12, 1.959707063292626e-09, -4.741226942300836e-12, 1.9110145374647133e-15, 2483.0, 0.0036188147496432066, -5.830919690197334e-06, 1.95734117802715e-09, -5.830919690197334e-06, 1.253266379563911e-08, -4.733594159006538e-12,1.95734117802715e-09, -4.733594159006538e-12, 1.9071694314006524e-15, 2484.0, 0.003617360256612301, -5.82622897127294e-06, 1.9549792895645624e-09, -5.82622897127294e-06, 1.2517538117151616e-08, -4.725976988223524e-12, 1.9549792895645624e-09, -4.725976988223524e-12, 1.9033334309407745e-15, 2485.0, 0.0036159069277346134, -5.8215441640641075e-06, 1.9526209538156536e-09, -5.8215441640641075e-06, 1.2502435531303036e-08, -4.718375429951793e-12, 1.9526209538156536e-09,-4.718375429951793e-12, 1.899506959601553e-15, 2486.0, 0.0036144547630101442, -5.816864813823486e-06, 1.9502666148696335e-09, -5.816864813823486e-06, 1.2487358702628626e-08, -4.710788616829609e-12, 1.9502666148696335e-09, -4.710788616829609e-12, 1.895689593866515e-15, 2487.0, 0.0036130037624388933, -5.8121913752984256e-06, 1.947915828637292e-09, -5.8121913752984256e-06, 1.2472304966593128e-08, -4.703217416218708e-12, 1.947915828637292e-09, -4.703217416218708e-12, 1.8918815454938964e-15, 2488.0, 0.0036115539260208607, -5.807523393741576e-06, 1.9455690392078395e-09, -5.807523393741576e-06, 1.2457276099553383e-08, -4.695661394438222e-12, 1.9455690392078395e-09, -4.695661394438222e-12, 1.888082602725461e-15, 2489.0, 0.0036101052537560463, -5.802860869152937e-06, 1.9432258024920657e-09, -5.802860869152937e-06, 1.2442271213330969e-08, -4.688120117807282e-12, 1.9432258024920657e-09, -4.688120117807282e-12, 1.8842927655612083e-15, 2490.0, 0.00360865774564445, -5.79820425627986e-06, 1.9408865625791805e-09, -5.79820425627986e-06, 1.2427290307925887e-08, -4.680594453687625e-12, 1.9408865625791805e-09, -4.680594453687625e-12, 1.8805120340011387e-15, 2491.0, 0.0036072114016860723, -5.793553100374993e-06, 1.938550875379974e-09, -5.793553100374993e-06, 1.2412333383338137e-08, -4.673083534717515e-12, 1.938550875379974e-09, -4.673083534717515e-12, 1.876740408045252e-15, 2492.0, 0.0036057662218809128, -5.788907856185688e-06, 1.9362189629390514e-09, -5.788907856185688e-06, 1.2397400439567718e-08, -4.665588228258688e-12, 1.9362189629390514e-09, -4.665588228258688e-12, 1.8729778876935485e-15, 2493.0, 0.0036043222062289715, -5.784267614217242e-06, 1.9338908252564124e-09, -5.784267614217242e-06, 1.2382491476614632e-08, -4.658107233268538e-12, 1.9338908252564124e-09, -4.658107233268538e-12, 1.869224472946028e-15, 2494.0, 0.003602879121899605, -5.779633283964358e-06, 1.931566462332057e-09, -5.779633283964358e-06, 1.2367606494478878e-08, -4.650641850789672e-12, 1.931566462332057e-09, -4.650641850789672e-12, 1.8654799520444534e-15, 2495.0, 0.0036014374345541, -5.775004410679685e-06, 1.9292458741659857e-09, -5.775004410679685e-06, 1.2352745493160455e-08, -4.6431912134603515e-12, 1.9292458741659857e-09, -4.6431912134603515e-12, 1.861744536747062e-15, 2496.0, 0.0035999969113618135, -5.770381449110573e-06, 1.926928838713593e-09, -5.770381449110573e-06, 1.2337907584480945e-08, -4.635755321280577e-12, 1.926928838713593e-09, -4.635755321280577e-12, 1.8580182270538535e-15, 2497.0, 0.0035985575523227453, -5.765763489762321e-06, 1.924615800064089e-09, -5.765763489762321e-06, 1.2323093656618767e-08, -4.628334174250348e-12, 1.924615800064089e-09, -4.628334174250348e-12, 1.8543005994483544e-15, 2498.0, 0.0035971191246062517, -5.761151442129631e-06,1.9223060920836588e-09, -5.761151442129631e-06, 1.230830370957392e-08, -4.620928206050534e-12, 1.9223060920836588e-09, -4.620928206050534e-12, 1.8505920774470382e-15, 2499.0, 0.00359568209387362, -5.756544851465151e-06, 1.9200003809061172e-09, -5.756544851465151e-06, 1.2293537743346405e-08, -4.613536983000266e-12, 1.9200003809061172e-09, -4.613536983000266e-12, 1.8468922375334314e-15, 2500.0, 0.0035942462272942066, -5.7519437177688815e-06, 1.9176982224422545e-09,-5.7519437177688815e-06, 1.2278794869757803e-08, -4.6061605050995436e-12, 1.9176982224422545e-09, -4.6061605050995436e-12, 1.8432015032240076e-15, 2501.0, 0.003592811292037368, -5.747348041040823e-06, 1.9153996166920706e-09, -5.747348041040823e-06, 1.2264075976986533e-08, -4.598798772348367e-12, 1.9153996166920706e-09, -4.598798772348367e-12, 1.8395194510022932e-15, 2502.0, 0.0035913775209337473, -5.742758276028326e-06, 1.9131047857001704e-09, -5.742758276028326e-06, 1.2249380176854174e-08, -4.591451784746736e-12, 1.9131047857001704e-09, -4.591451784746736e-12, 1.835846292626525e-15, 2503.0, 0.0035899451468139887, -5.7381735132366884e-06, 1.910813729466554e-09, -5.7381735132366884e-06, 1.2234708357539148e-08, -4.584119108613782e-12, 1.910813729466554e-09, -4.584119108613782e-12, 1.832182028096703e-15, 2504.0, 0.0035885137040168047, -5.733594662160613e-06, 1.9085262259466163e-09, -5.733594662160613e-06, 1.2220059630863034e-08, -4.576801611311243e-12, 1.9085262259466163e-09, -4.576801611311243e-12, 1.82852644565459e-15, 2505.0, 0.003587083425372839, -5.729020813305397e-06, 1.9062424971849623e-09, -5.729020813305397e-06, 1.2205433996825832e-08, -4.569498425477381e-12, 1.9062424971849623e-09, -4.569498425477381e-12, 1.8248795453001867e-15, 2506.0, 0.0035856543108820915, -5.724452876165742e-06, 1.9039620990923822e-09, -5.724452876165742e-06, 1.2190832343605962e-08, -4.562209551112195e-12, 1.9039620990923822e-09, -4.562209551112195e-12, 1.8212413270334927e-15, 2507.0, 0.0035842263605445623, -5.719889941246947e-06, 1.901685697802691e-09, -5.719889941246947e-06, 1.2176253783025004e-08, -4.5549358555774244e-12, 1.901685697802691e-09, -4.5549358555774244e-12, 1.8176120026127448e-15, 2508.0, 0.0035827995743602514, -5.715332918043714e-06, 1.8994126271820733e-09, -5.715332918043714e-06, 1.2161698315082958e-08, -4.5476760378304615e-12,1.8994126271820733e-09, -4.5476760378304615e-12, 1.8139913602797063e-15, 2509.0, 0.003581373719498515, -5.7107808970613405e-06, 1.8971433313197394e-09, -5.7107808970613405e-06, 1.2147165939779825e-08, -4.540430965233044e-12, 1.8971433313197394e-09, -4.540430965233044e-12, 1.8103791882761403e-15, 2510.0, 0.0035799492616206408, -5.7062347877945285e-06, 1.8948778102156894e-09, -5.7062347877945285e-06, 1.2132656657115604e-08, -4.533200204104304e-12, 1.8948778102156894e-09,-4.533200204104304e-12, 1.8067756983602837e-15, 2511.0, 0.003578525735065341, -5.701693680748576e-06, 1.892615619780713e-09, -5.701693680748576e-06, 1.2118170467090295e-08, -4.5259837544442405e-12, 1.892615619780713e-09, -4.5259837544442405e-12, 1.8031808905321365e-15, 2512.0, 0.003577103605493903, -5.697158485418186e-06, 1.8903572041040206e-09, -5.697158485418186e-06, 1.2103707369703898e-08, -4.518782049933723e-12, 1.8903572041040206e-09, -4.518782049933723e-12, 1.7995945530334618e-15, 2513.0, 0.00357568240724504, -5.692628292308655e-06, 1.888102119096402e-09, -5.692628292308655e-06, 1.2089267364956413e-08, -4.511594223211013e-12, 1.888102119096402e-09, -4.511594223211013e-12, 1.7960168976224964e-15, 2514.0, 0.003574262373149395, -5.688103556167334e-06, 1.885850808847067e-09, -5.688103556167334e-06, 1.207485045284784e-08, -4.504421141637849e-12, 1.885850808847067e-09, -4.504421141637849e-12, 1.7924477125410036e-15, 2515.0, 0.0035728432703763247, -5.683584276994225e-06, 1.883603273356016e-09, -5.683584276994225e-06, 1.206045663337818e-08, -4.4972619378524925e-12, 1.883603273356016e-09, -4.4972619378524925e-12, 1.7888869977889833e-15, 2516.0, 0.0035714255645871162, -5.679070454789326e-06, 1.8813590685340387e-09, -5.679070454789326e-06, 1.2046085018369013e-08, -4.490117045535813e-12, 1.8813590685340387e-09, -4.490117045535813e-12, 1.7853347533664356e-15, 2517.0, 0.0035700087901204824, -5.674561634805286e-06, 1.87911841642574e-09, -5.674561634805286e-06, 1.2031737384177177e-08, -4.48298646468781e-12, 1.87911841642574e-09, -4.48298646468781e-12, 1.7817909792733604e-15, 2518.0, 0.0035685934126377106, -5.6700587265368085e-06, 1.8768813170311205e-09, -5.6700587265368085e-06, 1.2017411066267414e-08, -4.4758697616276155e-12, 1.8768813170311205e-09, -4.4758697616276155e-12, 1.7782556755097578e-15, 2519.0, 0.0035671789664775133, -5.6655608204891905e-06, 1.8746477703501796e-09, -5.6655608204891905e-06, 1.2003108729174983e-08, -4.4687673700360975e-12, 1.8746477703501796e-09, -4.4687673700360975e-12, 1.7747288420756277e-15, 2520.0, 0.0035657656844705343, -5.661068371409783e-06, 1.8724179984275224e-09, -5.661068371409783e-06, 1.1988828596543044e-08, -4.461678856232387e-12, 1.8724179984275224e-09, -4.461678856232387e-12, 1.7712103730918517e-15, 2521.0, 0.00356435333378613, -5.656581379298586e-06, 1.870191557173939e-09, -5.656581379298586e-06, 1.1974570668371598e-08, -4.454604653897354e-12, 1.870191557173939e-09, -4.454604653897354e-12, 1.76770026855843e-15, 2522.0, 0.0035629423800855875, -5.652099389408249e-06, 1.8679686686340347e-09, -5.652099389408249e-06, 1.1960335832839064e-08, -4.447544329350128e-12, 1.8679686686340347e-09, -4.447544329350128e-12, 1.7641984225962438e-15, 2523.0, 0.0035615323577076197, -5.647622856486123e-06,1.865749332807809e-09, -5.647622856486123e-06, 1.1946123201767023e-08, -4.4404978825907104e-12, 1.865749332807809e-09, -4.4404978825907104e-12, 1.7607049410844119e-15, 2524.0, 0.00356012349948287, -5.643151780532207e-06, 1.863533327650657e-09, -5.643151780532207e-06, 1.1931933663333893e-08, -4.4334657472999695e-12, 1.863533327650657e-09, -4.4334657472999695e-12, 1.757219824022934e-15, 2525.0, 0.003558715805411339, -5.638685706799151e-06, 1.8613209862294866e-09,-5.638685706799151e-06, 1.1917766329361257e-08, -4.426447056116167e-12, 1.8613209862294866e-09, -4.426447056116167e-12, 1.753742965532692e-15, 2526.0, 0.0035573092754930258, -5.634225544781657e-06, 1.8591121975219949e-09, -5.634225544781657e-06, 1.1903621199849113e-08, -4.419442676401042e-12, 1.8591121975219949e-09, -4.419442676401042e-12, 1.7502742597345672e-15, 2527.0, 0.0035559036768972874, -5.629769930237671e-06, 1.8569068505058794e-09, -5.629769930237671e-06, 1.1889498274797461e-08, -4.412451740792855e-12, 1.8569068505058794e-09, -4.412451740792855e-12, 1.7468139183867966e-15, 2528.0, 0.003554499475285411, -5.625320227409247e-06, 1.8547049451811404e-09, -5.625320227409247e-06, 1.1875397554206302e-08, -4.405475116653346e-12, 1.8547049451811404e-09, -4.405475116653346e-12, 1.7433617297311433e-15, 2529.0, 0.003553096204996109, -5.620875526801683e-06, 1.85250659257008e-09, -5.620875526801683e-06, 1.1861319926254055e-08, -4.398511936620775e-12, 1.85250659257008e-09, -4.398511936620775e-12, 1.7399176937676073e-15, 2530.0, 0.0035516938660293818, -5.6164358284149785e-06, 1.8503116816503962e-09, -5.6164358284149785e-06, 1.18472645027623e-08, -4.391562634376012e-12, 1.8503116816503962e-09, -4.391562634376012e-12, 1.7364818104961886e-15, 2531.0, 0.0035502929240465164, -5.6120020417438354e-06, 1.8481202124220886e-09, -5.6120020417438354e-06, 1.1833230395552619e-08, -4.3846267762381874e-12, 1.8481202124220886e-09, -4.3846267762381874e-12, 1.7330540799168873e-15, 2532.0, 0.0035488929133862257, -5.607572802546201e-06, 1.8459321848851573e-09, -5.607572802546201e-06, 1.1819219380981849e-08, -4.377704795888171e-12, 1.8459321848851573e-09, -4.377704795888171e-12, 1.7296345020297033e-15, 2533.0, 0.0035474940668791533, -5.603149475064129e-06, 1.8437477100619049e-09, -5.603149475064129e-06, 1.1805229682693152e-08, -4.370796693325962e-12,1.8437477100619049e-09, -4.370796693325962e-12, 1.7262229709555182e-15, 2534.0, 0.003546096384525299, -5.598730695055565e-06, 1.8415665659077263e-09, -5.598730695055565e-06, 1.1791262188864948e-08, -4.3639020348706925e-12, 1.8415665659077263e-09, -4.3639020348706925e-12, 1.7228195925734504e-15, 2535.0, 0.0035446996334940195, -5.594317372015212e-06, 1.8393889744672265e-09, -5.594317372015212e-06, 1.1777317787675656e-08, -4.3570208205223615e-12, 1.8393889744672265e-09,-4.3570208205223615e-12, 1.7194241551252631e-15, 2536.0, 0.003543304046615958, -5.589909505943069e-06, 1.8372147136958006e-09, -5.589909505943069e-06, 1.1763393814590017e-08, -4.350153483961838e-12, 1.8372147136958006e-09, -4.350153483961838e-12, 1.7160367644900748e-15, 2537.0, 0.003541909623891115, -5.5855066420917865e-06, 1.835043894615751e-09, -5.5855066420917865e-06, 1.174949293414329e-08, -4.343299157827385e-12, 1.835043894615751e-09, -4.343299157827385e-12, 1.7126574206678853e-15, 2538.0, 0.0035405163653194904, -5.581109235208714e-06, 1.8328765172270778e-09, -5.581109235208714e-06, 1.1735613369978637e-08, -4.3364587094807394e-12, 1.8328765172270778e-09, -4.3364587094807394e-12, 1.7092860177795764e-15, 2539.0, 0.0035391240380704403, -5.576716830546502e-06, 1.8307125815297809e-09, -5.576716830546502e-06, 1.1721756010274476e-08, -4.329631705241033e-12, 1.8307125815297809e-09, -4.329631705241033e-12, 1.7059226617042664e-15, 2540.0, 0.0035377328749746084, -5.572329428105149e-06, 1.8285520875238603e-09, -5.572329428105149e-06, 1.1707919966852387e-08, -4.322818145108265e-12, 1.8285520875238603e-09, -4.322818145108265e-12, 1.7025671406837185e-15, 2541.0, 0.003536342876031995, -5.5679474826320074e-06, 1.8263949241870137e-09, -5.5679474826320074e-06, 1.1694106127890791e-08, -4.316018029082436e-12, 1.8263949241870137e-09, -4.316018029082436e-12, 1.6992196664761695e-15, 2542.0, 0.003534953808411956, -5.563570539379725e-06, 1.8242410915192409e-09, -5.563570539379725e-06, 1.1680313605211268e-08, -4.3092309234826764e-12, 1.8242410915192409e-09, -4.3092309234826764e-12, 1.6958799214442642e-15, 2543.0, 0.003533565904945135, -5.559199053095654e-06, 1.8220907005428444e-09, -5.559199053095654e-06, 1.1666543286992237e-08, -4.302457261989856e-12, 1.8220907005428444e-09, -4.302457261989856e-12, 1.6925482232253578e-15, 2544.0, 0.0035321791656315327, -5.554832114285091e-06, 1.8199437512578243e-09, -5.554832114285091e-06, 1.1652794285055279e-08, -4.295697044603974e-12, 1.8199437512578243e-09, -4.295697044603974e-12, 1.689224254182095e-15, 2545.0, 0.0035307935904711485, -5.550470632442739e-06, 1.817800132641878e-09, -5.550470632442739e-06, 1.1639067487578814e-08, -4.2889502713250316e-12, 1.817800132641878e-09, -4.2889502713250316e-12, 1.6859081201935945e-15, 2546.0, 0.003529408946633339, -5.546114607568597e-06, 1.8156598446950056e-09, -5.546114607568597e-06, 1.1625361118206001e-08, -4.282216508472159e-12, 1.8156598446950056e-09, -4.282216508472159e-12, 1.682599821259856e-15, 2547.0, 0.003528025234118104, -5.541763584915316e-06, 1.8135228874172071e-09, -5.541763584915316e-06, 1.1611676953293681e-08, -4.2754961897262245e-12, 1.8135228874172071e-09, -4.2754961897262245e-12, 1.6792993573808796e-15, 2548.0, 0.003526642918586731, -5.537417109735543e-06,1.811389371830785e-09, -5.537417109735543e-06, 1.1598014104663434e-08, -4.26878888140636e-12, 1.811389371830785e-09, -4.26878888140636e-12, 1.676006622677547e-15, 2549.0, 0.0035252615343779325, -5.533076546271332e-06, 1.8092591869134367e-09, -5.533076546271332e-06, 1.158437257231526e-08, -4.262094583512566e-12, 1.8092591869134367e-09, -4.262094583512566e-12, 1.672721617149858e-15, 2550.0, 0.0035238813143223524, -5.528740530280629e-06, 1.8071323326651623e-09,-5.528740530280629e-06, 1.1570753244427578e-08, -4.25541372972571e-12, 1.8071323326651623e-09, -4.25541372972571e-12, 1.6694443407978127e-15, 2551.0, 0.003522502025589347, -5.524409971258137e-06, 1.8050086980636593e-09, -5.524409971258137e-06, 1.155715434464355e-08, -4.248745452684055e-12, 1.8050086980636593e-09, -4.248745452684055e-12, 1.6661746877422927e-15, 2552.0, 0.0035211239010095596, -5.5200839597091544e-06, 1.8028885051535326e-09, -5.5200839597091544e-06, 1.1543576761141594e-08, -4.242090619749339e-12, 1.8028885051535326e-09, -4.242090619749339e-12, 1.6629128697415348e-15, 2553.0, 0.0035197469405829906, -5.515763405128382e-06, 1.8007716429124798e-09, -5.515763405128382e-06, 1.1530020493921711e-08, -4.235448797240693e-12, 1.8007716429124798e-09, -4.235448797240693e-12, 1.6596585691581837e-15, 2554.0, 0.0035183709114789963, -5.51144785276847e-06, 1.798658111340501e-09, -5.51144785276847e-06, 1.15164855429839e-08, -4.2288199851581165e-12, 1.798658111340501e-09, -4.2288199851581165e-12, 1.6564119977504764e-15, 2555.0, 0.00351699604652822, -5.507137757376768e-06, 1.7965477994152934e-09, -5.507137757376768e-06, 1.1502971908328163e-08, -4.222203749820741e-12, 1.7965477994152934e-09, -4.222203749820741e-12, 1.6531730496392944e-15, 2556.0, 0.0035156221129000187, -5.502832209458575e-06, 1.7944408181591598e-09, -5.502832209458575e-06, 1.1489479589954499e-08, -4.215600958590304e-12, 1.7944408181591598e-09, -4.215600958590304e-12, 1.6499416189455192e-15, 2557.0, 0.0035142493434250355, -5.498531663761241e-06, 1.7923371675721e-09, -5.498531663761241e-06, 1.1476007699684487e-08, -4.209010744105068e-12, 1.7923371675721e-09, -4.209010744105068e-12, 1.6467179174273878e-15, 2558.0, 0.0035128777381032705, -5.494236575032119e-06, 1.7902367366318117e-09, -5.494236575032119e-06, 1.1462558013874968e-08, -4.202433540045902e-12,1.7902367366318117e-09, -4.202433540045902e-12, 1.6435016274475448e-15, 2559.0, 0.00351150706410408, -5.489946033776505e-06, 1.7881396363605973e-09, -5.489946033776505e-06, 1.1449127867990683e-08, -4.195869346412806e-12, 1.7881396363605973e-09, -4.195869346412806e-12, 1.640292960764227e-15, 2560.0, 0.003510137554258108, -5.485660949489102e-06, 1.7860457557361542e-09, -5.485660949489102e-06, 1.143571992656689e-08, -4.189317729524911e-12, 1.7860457557361542e-09,-4.189317729524911e-12, 1.6370917056191979e-15, 2561.0, 0.0035087689757347107, -5.481380867422558e-06, 1.783955205780785e-09, -5.481380867422558e-06, 1.142233241324675e-08, -4.182778689382216e-12, 1.783955205780785e-09, -4.182778689382216e-12, 1.6338979678915755e-15, 2562.0, 0.0035074015613645315, -5.477105332829524e-06, 1.7818678754721873e-09, -5.477105332829524e-06, 1.1408965328030263e-08, -4.176252659665591e-12, 1.7818678754721873e-09, -4.176252659665591e-12, 1.63071174758136e-15, 2563.0, 0.0035060353111475706, -5.4728352552047e-06, 1.7797838758326634e-09, -5.4728352552047e-06, 1.1395619559095849e-08, -4.1697396403750364e-12, 1.7797838758326634e-09, -4.1697396403750364e-12, 1.6275330446885515e-15, 2564.0, 0.0035046699922531843, -5.468570179800736e-06, 1.7777029848176085e-09, -5.468570179800736e-06, 1.1382295106443507e-08, -4.163238764148813e-12, 1.7777029848176085e-09, -4.163238764148813e-12, 1.624361647454913e-15, 2565.0, 0.0035033058375120163, -5.4643096518702805e-06, 1.7756254244716274e-09, -5.4643096518702805e-06, 1.136899108189482e-08, -4.15675089834866e-12, 1.7756254244716274e-09, -4.15675089834866e-12, 1.6211977676386814e-15, 2566.0, 0.003501942614093423, -5.460054580908036e-06, 1.7735510837724178e-09, -5.460054580908036e-06, 1.1355707485449784e-08, -4.150275609293708e-12, 1.7735510837724178e-09, -4.150275609293708e-12, 1.6180411934816198e-15, 2567.0, 0.0035005805548280478, -5.4558040574193e-06, 1.771480073742282e-09, -5.4558040574193e-06, 1.1342444317108402e-08, -4.143812896983956e-12, 1.771480073742282e-09, -4.143812896983956e-12, 1.6148920308628467e-15, 2568.0, 0.003499219659715891, -5.451558990898775e-06, 1.7694121723366152e-09, -5.451558990898775e-06, 1.1329202465049093e-08, -4.137362761419405e-12, 1.7694121723366152e-09, -4.137362761419405e-12, 1.6117501739032437e-15, 2569.0, 0.0034978596959263086, -5.447318471851759e-06, 1.7673474905777198e-09, -5.447318471851759e-06, 1.1315981041093437e-08, -4.130925202600055e-12, 1.7673474905777198e-09, -4.130925202600055e-12, 1.6086157284819292e-15, 2570.0, 0.003496500663459301, -5.443082955025602e-06, 1.7652860284655958e-09, -5.443082955025602e-06, 1.1302780045241434e-08, -4.124500220525906e-12, 1.7652860284655958e-09, -4.124500220525906e-12, 1.6054885887197847e-15, 2571.0, 0.0034951427951455116, -5.438852440420305e-06, 1.7632277860002432e-09, -5.438852440420305e-06, 1.1289599477493084e-08, -4.118087381516089e-12, 1.7632277860002432e-09, -4.118087381516089e-12, 1.6023686487376919e-15, 2572.0, 0.0034937860909849405, -5.434626928035868e-06, 1.761172763181662e-09, -5.434626928035868e-06, 1.1276439337848387e-08, -4.1116875529323416e-12, 1.761172763181662e-09, -4.1116875529323416e-12, 1.5992561202938876e-15, 2573.0, 0.003492430318146944, -5.430406417872291e-06,1.7591209600098523e-09, -5.430406417872291e-06, 1.1263299626307344e-08, -4.105299867412926e-12, 1.7591209600098523e-09, -4.105299867412926e-12, 1.5961506857510165e-15, 2574.0, 0.003491075476631522, -5.426190455182223e-06, 1.7570722654625115e-09, -5.426190455182223e-06, 1.1250181231048373e-08, -4.098924324957842e-12, 1.7570722654625115e-09, -4.098924324957842e-12, 1.5930526627464339e-15, 2575.0, 0.0034897217992693186, -5.421979494713014e-06, 1.7550267905619421e-09,-5.421979494713014e-06, 1.1237082375714635e-08, -4.092561359247959e-12, 1.7550267905619421e-09, -4.092561359247959e-12, 1.5899617336427845e-15, 2576.0, 0.0034883692860603333, -5.417773536464665e-06, 1.7529844242858417e-09, -5.417773536464665e-06, 1.1224003948484551e-08, -4.086210970283277e-12, 1.7529844242858417e-09, -4.086210970283277e-12, 1.5868780043191868e-15, 2577.0, 0.0034870177041739225, -5.413572580437176e-06, 1.7509452776565126e-09, -5.413572580437176e-06, 1.121094594935812e-08, -4.079872724382927e-12, 1.7509452776565126e-09, -4.079872724382927e-12, 1.5838014747756408e-15, 2578.0, 0.00348566728644073, -5.4093766266305465e-06, 1.748909350673955e-09, -5.4093766266305465e-06, 1.1197907490156922e-08, -4.0735466215469085e-12, 1.748909350673955e-09, -4.0735466215469085e-12, 1.580732039133028e-15, 2579.0, 0.0034843178000301123, -5.405185220297426e-06, 1.7468765323158664e-09, -5.405185220297426e-06, 1.1184890347237797e-08, -4.067232661775222e-12, 1.7468765323158664e-09, -4.067232661775222e-12, 1.577669803270467e-15, 2580.0, 0.003482969244942069, -5.400998816185165e-06, 1.7448468225822467e-09, -5.400998816185165e-06, 1.1171892744243905e-08, -4.060931278748736e-12, 1.7448468225822467e-09, -4.060931278748736e-12, 1.574614661308839e-15, 2581.0, 0.0034816220868378878, -5.396817414293764e-06, 1.7428203324953984e-09, -5.396817414293764e-06, 1.1158914681175247e-08, -4.054642038786582e-12, 1.7428203324953984e-09, -4.054642038786582e-12, 1.5715666132481445e-15, 2582.0, 0.0034802756272256374, -5.392640559875872e-06, 1.7407968400107166e-09, -5.392640559875872e-06, 1.1145957934388662e-08, -4.04836494188876e-12, 1.7407968400107166e-09, -4.04836494188876e-12, 1.5685256590883831e-15, 2583.0, 0.0034789303317666054, -5.3884687076788396e-06, 1.7387765671728062e-09, -5.3884687076788396e-06, 1.113302072752731e-08, -4.04209998805527e-12,1.7387765671728062e-09, -4.04209998805527e-12, 1.565491798829555e-15, 2584.0, 0.0034775862004607916, -5.384301857702667e-06, 1.7367595139816672e-09, -5.384301857702667e-06, 1.1120103060591191e-08, -4.0358471772861115e-12, 1.7367595139816672e-09, -4.0358471772861115e-12, 1.5624649265925418e-15, 2585.0, 0.0034762427676469088, -5.380139555200003e-06, 1.7347454583926947e-09, -5.380139555200003e-06, 1.1107205821758726e-08, -4.029606075900416e-12, 1.7347454583926947e-09,-4.029606075900416e-12, 1.5594451482564618e-15, 2586.0, 0.003474900731816888, -5.375982254918199e-06, 1.7327345114281911e-09, -5.375982254918199e-06, 1.1094329011029913e-08, -4.023377551259921e-12, 1.7327345114281911e-09, -4.023377551259921e-12, 1.5564322520630783e-15, 2587.0, 0.0034735596273094416, -5.371829502109904e-06, 1.730726784110459e-09, -5.371829502109904e-06, 1.1081471740226334e-08, -4.017160736002889e-12, 1.730726784110459e-09, -4.017160736002889e-12, 1.553426449770628e-15, 2588.0, 0.00347221945412457, -5.367681751522468e-06, 1.7287220543948933e-09, -5.367681751522468e-06, 1.1068634009347988e-08, -4.010956063810189e-12, 1.7287220543948933e-09, -4.010956063810189e-12, 1.5504275296208741e-15, 2589.0, 0.0034708804450929165, -5.363539003155893e-06, 1.7267204333037967e-09, -5.363539003155893e-06, 1.1055815818394876e-08, -4.004763101000952e-12, 1.7267204333037967e-09, -4.004763101000952e-12, 1.5474355974929351e-15, 2590.0, 0.0034695423673838377, -5.359400802262826e-06, 1.724721920837169e-09, -5.359400802262826e-06, 1.1043018055545417e-08, -3.998582281256047e-12, 1.724721920837169e-09, -3.998582281256047e-12, 1.5444505475076926e-15, 2591.0, 0.003468205453827977, -5.355267603590619e-06, 1.7227265169950101e-09, -5.355267603590619e-06, 1.1030239832621191e-08, -3.992413604575473e-12, 1.7227265169950101e-09, -3.992413604575473e-12, 1.5414724855442648e-15, 2592.0, 0.0034668694715946913, -5.351138952391921e-06, 1.7207341107550178e-09, -5.351138952391921e-06, 1.1017481149622199e-08, -3.9862566372783625e-12, 1.7207341107550178e-09, -3.9862566372783625e-12, 1.5385011998444152e-15, 2593.0, 0.00346553442068398, -5.347015303414082e-06, 1.7187448131394945e-09, -5.347015303414082e-06, 1.100474289472686e-08, -3.980111379364715e-12, 1.7187448131394945e-09, -3.980111379364715e-12, 1.5355369021663803e-15, 2594.0, 0.003464200533926487, -5.3428962019097526e-06, 1.71675862414844e-09, -5.3428962019097526e-06, 1.0992023291578334e-08, -3.973978264515399e-12, 1.71675862414844e-09, -3.973978264515399e-12, 1.5325793807519235e-15, 2595.0, 0.0034628675784915686, -5.338781647878932e-06, 1.7147754327595521e-09, -5.338781647878932e-06, 1.0979324116533462e-08, -3.9678568590495455e-12, 1.7147754327595521e-09, -3.9678568590495455e-12, 1.5296286356010448e-15, 2596.0, 0.0034615357872098684, -5.334672550816322e-06, 1.7127953499951332e-09, -5.334672550816322e-06, 1.0966643593235403e-08, -3.961747162967155e-12, 1.7127953499951332e-09, -3.961747162967155e-12, 1.5266847725928625e-15, 2597.0, 0.003460204927250743, -5.33056754647987e-06, 1.7108182648328807e-09, -5.33056754647987e-06, 1.0953983498040998e-08, -3.955649176268228e-12, 1.7108182648328807e-09, -3.955649176268228e-12, 1.5237477917273766e-15, 2598.0, 0.003458874998614192, -5.326467544364277e-06,1.7088442882950972e-09, -5.326467544364277e-06, 1.0941342054593406e-08, -3.949562898952763e-12, 1.7088442882950972e-09, -3.949562898952763e-12, 1.5208174812463503e-15, 2599.0, 0.0034575462341308594, -5.322372089722194e-06, 1.7068733093594801e-09, -5.322372089722194e-06, 1.0928721039249467e-08, -3.943488331020761e-12, 1.7068733093594801e-09, -3.943488331020761e-12, 1.5178939470289021e-15, 2600.0, 0.0034562184009701014, -5.31828163730097e-06, 1.7049053280260296e-09,-5.31828163730097e-06, 1.0916118675652342e-08, -3.9374254724722224e-12, 1.7049053280260296e-09, -3.9374254724722224e-12, 1.514977189075032e-15, 2601.0, 0.0034548917319625616, -5.314195732353255e-06, 1.7029403442947455e-09, -5.314195732353255e-06, 1.090353585198045e-08, -3.931374323307146e-12, 1.7029403442947455e-09, -3.931374323307146e-12, 1.5120671015056214e-15, 2602.0, 0.0034535659942775965, -5.310114374879049e-06, 1.7009784691879304e-09, -5.310114374879049e-06, 1.0890972568233792e-08, -3.925334883525533e-12, 1.7009784691879304e-09, -3.925334883525533e-12, 1.5091637901997888e-15, 2603.0, 0.003452241187915206, -5.306038019625703e-06, 1.6990195916832818e-09, -5.306038019625703e-06, 1.0878427936233948e-08, -3.919307153127383e-12, 1.6990195916832818e-09, -3.919307153127383e-12, 1.5062670433992975e-15, 2604.0, 0.0034509175457060337, -5.3019662118458655e-06, 1.6970637117807996e-09, -5.3019662118458655e-06, 1.0865902844159336e-08, -3.913290698431826e-12, 1.6970637117807996e-09, -3.913290698431826e-12, 1.5033770728623843e-15, 2605.0, 0.003449594834819436, -5.297899406286888e-06, 1.695110829480484e-09, -5.297899406286888e-06, 1.0853397292009959e-08, -3.907285519438863e-12, 1.695110829480484e-09, -3.907285519438863e-12, 1.5004937727099306e-15, 2606.0, 0.003448273055255413, -5.293836693454068e-06, 1.6931608337600323e-09, -5.293836693454068e-06, 1.0840911279785814e-08, -3.9012924835102325e-12, 1.6931608337600323e-09, -3.9012924835102325e-12, 1.4976170370628182e-15, 2607.0, 0.0034469524398446083, -5.289778982842108e-06, 1.6912139466640497e-09, -5.289778982842108e-06, 1.0828443919308484e-08, -3.8953102896033265e-12, 1.6912139466640497e-09, -3.8953102896033265e-12, 1.4947469718001654e-15, 2608.0, 0.003445632755756378, -5.285725819703657e-06, 1.6892700571702335e-09, -5.285725819703657e-06, 1.0815995210577967e-08, -3.889340238760752e-12,1.6892700571702335e-09, -3.889340238760752e-12, 1.4918834710428539e-15, 2609.0, 0.0034443142358213663, -5.281677658786066e-06, 1.6873290542562813e-09, -5.281677658786066e-06, 1.0803566041772683e-08, -3.883381029939903e-12, 1.6873290542562813e-09, -3.883381029939903e-12, 1.4890265347908835e-15, 2610.0, 0.003442996647208929, -5.2776335905946326e-06, 1.6853911599667981e-09, -5.2776335905946326e-06, 1.0791155524714213e-08, -3.8774335305025165e-12, 1.6853911599667981e-09,-3.8774335305025165e-12, 1.4861761630442544e-15, 2611.0, 0.0034416799899190664, -5.273594524624059e-06, 1.683456152257179e-09, -5.273594524624059e-06, 1.0778764547580977e-08, -3.871497306767724e-12, 1.683456152257179e-09, -3.871497306767724e-12, 1.4833323558029665e-15, 2612.0, 0.0034403642639517784, -5.269560006126994e-06, 1.6815240311274238e-09, -5.269560006126994e-06, 1.0766392222194554e-08, -3.865572792416394e-12, 1.6815240311274238e-09, -3.865572792416394e-12, 1.4804950071879014e-15, 2613.0, 0.0034390497021377087, -5.265530489850789e-06, 1.6795950186221376e-09, -5.265530489850789e-06, 1.0754039436733365e-08, -3.859659120086789e-12, 1.6795950186221376e-09, -3.859659120086789e-12, 1.477664328957296e-15, 2614.0, 0.0034377360716462135, -5.261505066300742e-06, 1.6776688926967154e-09, -5.261505066300742e-06, 1.074170441484057e-08, -3.853756723459778e-12, 1.6776688926967154e-09, -3.853756723459778e-12, 1.4748400034737949e-15, 2615.0, 0.003436423372477293, -5.257484190224204e-06, 1.6757456533511572e-09, -5.257484190224204e-06, 1.0729388932873007e-08, -3.84786603621623e-12, 1.6757456533511572e-09, -3.84786603621623e-12, 1.4720221366165166e-15, 2616.0, 0.0034351118374615908, -5.253468316368526e-06, 1.6738254116077655e-09, -5.253468316368526e-06, 1.0717092990830679e-08, -3.8419861909944064e-12, 1.6738254116077655e-09, -3.8419861909944064e-12, 1.4692108342645796e-15, 2617.0, 0.003433801233768463, -5.249456989986356e-06, 1.671908056444238e-09, -5.249456989986356e-06, 1.0704814812356744e-08, -3.836118055156046e-12, 1.671908056444238e-09, -3.836118055156046e-12, 1.466405884659747e-15, 2618.0, 0.00343249156139791, -5.245450211077696e-06, 1.6699936988828767e-09, -5.245450211077696e-06, 1.0692555285629624e-08, -3.83026076133941e-12, 1.6699936988828767e-09, -3.83026076133941e-12, 1.4636074995602556e-15, 2619.0, 0.0034311830531805754, -5.241447979642544e-06, 1.6680822279013796e-09, -5.241447979642544e-06, 1.0680315298827736e-08, -3.824414743225368e-12, 1.6680822279013796e-09, -3.824414743225368e-12, 1.4608153613287502e-15, 2620.0, 0.0034298754762858152, -5.237450295680901e-06, 1.6661736434997465e-09, -5.237450295680901e-06, 1.0668093075594243e-08, -3.818579567133051e-12, 1.6661736434997465e-09, -3.818579567133051e-12, 1.4580296817234676e-15, 2621.0, 0.0034285688307136297, -5.233457159192767e-06, 1.6642679456779774e-09, -5.233457159192767e-06, 1.0655890392285983e-08, -3.812756100424197e-12, 1.6642679456779774e-09, -3.812756100424197e-12, 1.4552503548652894e-15, 2622.0, 0.003427263116464019, -5.229468570178142e-06, 1.6623652454583748e-09, -5.229468570178142e-06, 1.0643705472546117e-08, -3.806943475737068e-12, 1.6623652454583748e-09, -3.806943475737068e-12, 1.4524773807542157e-15, 2623.0, 0.003425958566367626, -5.2254845286370255e-06,1.6604654318186363e-09, -5.2254845286370255e-06, 1.0631539204553064e-08, -3.8011416930716635e-12, 1.6604654318186363e-09, -3.8011416930716635e-12, 1.4497107593902463e-15, 2624.0, 0.003424654947593808, -5.221505034569418e-06, 1.6585683937364593e-09, -5.221505034569418e-06, 1.0619392476485245e-08, -3.795351186108853e-12, 1.6585683937364593e-09, -3.795351186108853e-12, 1.4469504907733814e-15, 2625.0, 0.0034233522601425648, -5.2175300879753195e-06, 1.6566743532564487e-09,-5.2175300879753195e-06, 1.060726351198582e-08, -3.789571521167767e-12, 1.6566743532564487e-09, -3.789571521167767e-12, 1.4441964690245024e-15, 2626.0, 0.003422050504013896, -5.21355968885473e-06, 1.6547831993563022e-09, -5.21355968885473e-06, 1.059515231105479e-08, -3.783803131929275e-12, 1.6547831993563022e-09, -3.783803131929275e-12, 1.4414488000227279e-15, 2627.0, 0.0034207499120384455, -5.209594291955e-06, 1.6528949320360198e-09, -5.209594291955e-06, 1.0583060650048992e-08, -3.778045584712508e-12, 1.6528949320360198e-09, -3.778045584712508e-12, 1.4387073778889393e-15, 2628.0, 0.0034194502513855696, -5.205632987781428e-06, 1.6510094402732989e-09, -5.205632987781428e-06, 1.0570986752611589e-08, -3.772298879517466e-12, 1.6510094402732989e-09, -3.772298879517466e-12, 1.4359720967440184e-15, 2629.0, 0.0034181515220552683, -5.201676231081365e-06, 1.649126835090442e-09, -5.201676231081365e-06, 1.0558931506920999e-08, -3.766563016344149e-12, 1.649126835090442e-09, -3.766563016344149e-12, 1.4332431683462018e-15, 2630.0, 0.0034168539568781853, -5.1977235671074595e-06, 1.6472472275097516e-09, -5.1977235671074595e-06, 1.0546894912977223e-08, -3.760838428873425e-12, 1.6472472275097516e-09, -3.760838428873425e-12, 1.4305204868163713e-15, 2631.0, 0.0034155570901930332, -5.193775905354414e-06, 1.6453702844643203e-09, -5.193775905354414e-06, 1.053487608260184e-08, -3.755124249743558e-12, 1.6453702844643203e-09, -3.755124249743558e-12, 1.4278039462754083e-15, 2632.0, 0.0034142613876610994, -5.189832791074878e-06, 1.6434963390210555e-09, -5.189832791074878e-06, 1.0522875903973272e-08, -3.749421346316284e-12, 1.6434963390210555e-09, -3.749421346316284e-12, 1.4250936526024314e-15, 2633.0, 0.0034129666164517403, -5.185893769521499e-06, 1.6416251691353523e-09, -5.185893769521499e-06, 1.0510893488913098e-08, -3.743728851229866e-12,1.6416251691353523e-09, -3.743728851229866e-12, 1.422389499918322e-15, 2634.0, 0.0034116727765649557, -5.18195975018898e-06, 1.639756885829513e-09, -5.18195975018898e-06, 1.0498929725599737e-08, -3.738047631846042e-12, 1.639756885829513e-09, -3.738047631846042e-12, 1.4196914882230803e-15, 2635.0, 0.0034103801008313894, -5.1780298235826194e-06, 1.6378913780812354e-09, -5.1780298235826194e-06, 1.048698372585477e-08, -3.732376820803074e-12, 1.6378913780812354e-09,-3.732376820803074e-12, 1.4169996175167061e-15, 2636.0, 0.0034090883564203978, -5.1741044444497675e-06, 1.6360287569128218e-09, -5.1741044444497675e-06, 1.0475055489678198e-08, -3.7267168517818305e-12, 1.6360287569128218e-09, -3.7267168517818305e-12, 1.4143137819200811e-15, 2637.0, 0.0034077975433319807, -5.170183612790424e-06, 1.6341689113019697e-09, -5.170183612790424e-06, 1.0463145905248439e-08, -3.721067724782312e-12, 1.6341689113019697e-09, -3.721067724782312e-12, 1.4116341931914422e-15, 2638.0, 0.0034065076615661383, -5.16626732860459e-06, 1.6323119522709817e-09, -5.16626732860459e-06, 1.0451254084387074e-08, -3.7154290061236495e-12, 1.6323119522709817e-09, -3.7154290061236495e-12, 1.4089606395725524e-15, 2639.0, 0.0034052187111228704, -5.162355137144914e-06, 1.6304576577752528e-09, -5.162355137144914e-06, 1.0439380915272523e-08, -3.709801563167581e-12, 1.6304576577752528e-09, -3.709801563167581e-12, 1.4062931210634118e-15, 2640.0, 0.003403930924832821, -5.1584474931587465e-06, 1.6286063608816903e-09, -5.1584474931587465e-06, 1.0427525509726365e-08, -3.704184094871499e-12, 1.6286063608816903e-09, -3.704184094871499e-12, 1.4036317435431388e-15, 2641.0, 0.0034026438370347023, -5.154544396646088e-06, 1.626757728523387e-09, -5.154544396646088e-06, 1.0415687867748602e-08, -3.698577468597142e-12, 1.626757728523387e-09, -3.698577468597142e-12, 1.400976401132615e-15, 2642.0, 0.003401357913389802, -5.150645847606938e-06, 1.6249119827449476e-09, -5.150645847606938e-06, 1.0403867989339233e-08, -3.6929816843445096e-12, 1.6249119827449476e-09, -3.6929816843445096e-12, 1.3983269879527219e-15, 2643.0, 0.0034000729210674763, -5.146751391293947e-06, 1.6230689015017674e-09, -5.146751391293947e-06, 1.0392065874498257e-08, -3.687396308432733e-12, 1.6230689015017674e-09, -3.687396308432733e-12, 1.3956837157616964e-15, 2644.0, 0.003398788860067725, -5.142861937201815e-06, 1.6212287068384512e-09, -5.142861937201815e-06, 1.0380281523225676e-08, -3.681821340861813e-12, 1.6212287068384512e-09, -3.681821340861813e-12, 1.3930463728013018e-15, 2645.0, 0.0033975059632211924, -5.13897612108849e-06, 1.6193912877326966e-09, -5.13897612108849e-06, 1.0368515823699909e-08, -3.676257215312617e-12, 1.6193912877326966e-09, -3.676257215312617e-12, 1.3904149590715379e-15, 2646.0, 0.0033962237648665905, -5.135095307196025e-06, 1.6175566441845035e-09, -5.135095307196025e-06, 1.0356766999564115e-08, -3.6707034981042774e-12, 1.6175566441845035e-09, -3.6707034981042774e-12, 1.3877895804515232e-15, 2647.0, 0.003394942730665207, -5.131218586029718e-06, 1.615724776193872e-09, -5.131218586029718e-06, 1.0345035938996716e-08, -3.6651601892367935e-12, 1.615724776193872e-09, -3.6651601892367935e-12, 1.3851701310621392e-15, 2648.0, 0.003393662627786398, -5.1273464123369195e-06,1.6138955727384996e-09, -5.1273464123369195e-06, 1.033332353017613e-08, -3.6596272887101655e-12, 1.6138955727384996e-09, -3.6596272887101655e-12, 1.3825566109033861e-15, 2649.0, 0.0033923834562301636, -5.123478331370279e-06, 1.6120692558629912e-09, -5.123478331370279e-06, 1.032162799674552e-08, -3.654104796524393e-12, 1.6120692558629912e-09, -3.654104796524393e-12, 1.3799489140961453e-15, 2650.0, 0.003391105215996504, -5.119614797877148e-06, 1.610245603522742e-09,-5.119614797877148e-06, 1.0309950226883302e-08, -3.648592712679477e-12, 1.610245603522742e-09, -3.648592712679477e-12, 1.3773472523986537e-15, 2651.0, 0.0033898279070854187, -5.115755811857525e-06, 1.6084248377623567e-09, -5.115755811857525e-06, 1.0298290220589479e-08, -3.643091037175417e-12, 1.6084248377623567e-09, -3.643091037175417e-12, 1.3747514140526745e-15, 2652.0, 0.003388551762327552, -5.111900918564061e-06, 1.606606625514928e-09, -5.111900918564061e-06, 1.028664797786405e-08, -3.6375999868526465e-12, 1.606606625514928e-09, -3.6375999868526465e-12, 1.3721615049373261e-15, 2653.0, 0.003387276316061616, -5.108050572744105e-06, 1.6047912998473635e-09, -5.108050572744105e-06, 1.0275022610528595e-08, -3.6321191280302978e-12, 1.6047912998473635e-09, -3.6321191280302978e-12, 1.3695773132943716e-15, 2654.0, 0.0033860020339488983, -5.104204774397658e-06, 1.602978638715058e-09, -5.104204774397658e-06, 1.0263415006761534e-08, -3.6266484607083704e-12, 1.602978638715058e-09, -3.6266484607083704e-12, 1.366999050882048e-15, 2655.0, 0.0033847284503281116, -5.100363068777369e-06, 1.601168753140314e-09, -5.100363068777369e-06, 1.0251825166562867e-08, -3.621188201727299e-12, 1.601168753140314e-09, -3.621188201727299e-12, 1.3644266118212366e-15, 2656.0, 0.0033834560308605433, -5.0965254558832385e-06, 1.5993615321008292e-09, -5.0965254558832385e-06, 1.0240252201754174e-08, -3.6157383510870833e-12, 1.5993615321008292e-09, -3.6157383510870833e-12, 1.3618599961119377e-15, 2657.0, 0.0033821845427155495, -5.0926923904626165e-06, 1.597557086618906e-09, -5.0926923904626165e-06, 1.0228697888692295e-08, -3.6102984751068545e-12, 1.597557086618906e-09, -3.6102984751068545e-12, 1.3592990978750327e-15, 2658.0, 0.0033809139858931303, -5.088863872515503e-06, 1.5957553056722418e-09, -5.088863872515503e-06, 1.0217159562841971e-08, -3.6048690074674816e-12,1.5957553056722418e-09, -3.6048690074674816e-12, 1.3567440229896401e-15, 2659.0, 0.0033796443603932858, -5.085039447294548e-06, 1.5939563002831392e-09, -5.085039447294548e-06, 1.020563900056004e-08, -3.59944973132853e-12, 1.5939563002831392e-09, -3.59944973132853e-12, 1.35419477145576e-15, 2660.0, 0.0033783758990466595, -5.081219114799751e-06, 1.5921599594292957e-09, -5.081219114799751e-06, 1.0194136201846504e-08, -3.5940404298495654e-12, 1.5921599594292957e-09,-3.5940404298495654e-12, 1.3516511315151553e-15, 2661.0, 0.003377108136191964, -5.077403329778463e-06, 1.5903662831107113e-09, -5.077403329778463e-06, 1.0182650278522942e-08, -3.5886415367114566e-12, 1.5903662831107113e-09, -3.5886415367114566e-12, 1.349113314926063e-15, 2662.0, 0.003375841537490487, -5.073592092230683e-06, 1.5885753823496884e-09, -5.073592092230683e-06, 1.0171182118767774e-08, -3.5832526182333346e-12, 1.5885753823496884e-09, -3.5832526182333346e-12, 1.3465812158093646e-15, 2663.0, 0.003374575637280941, -5.069784492661711e-06, 1.5867870351016222e-09, -5.069784492661711e-06, 1.015973083440258e-08, -3.577873891255634e-12, 1.5867870351016222e-09, -3.577873891255634e-12, 1.3440548341650603e-15, 2664.0, 0.003373310901224613, -5.065981895313598e-06, 1.5850014634111176e-09, -5.065981895313598e-06, 1.0148296425427361e-08, -3.5725051389379203e-12, 1.5850014634111176e-09, -3.5725051389379203e-12, 1.3415340641140315e-15, 2665.0, 0.0033720468636602163, -5.062182935944293e-06, 1.583218556255872e-09, -5.062182935944293e-06, 1.0136878891842116e-08, -3.567146578120628e-12, 1.583218556255872e-09, -3.567146578120628e-12, 1.3390190115353967e-15, 2666.0, 0.0033707839902490377, -5.058388524048496e-06, 1.5814383136358856e-09, -5.058388524048496e-06, 1.0125479121825265e-08, -3.561798208803757e-12, 1.5814383136358856e-09, -3.561798208803757e-12, 1.3365095705500374e-15, 2667.0, 0.0033695220481604338, -5.054598659626208e-06, 1.5796608465734607e-09, -5.054598659626208e-06, 1.0114096227198388e-08, -3.5564595973064383e-12, 1.5796608465734607e-09, -3.5564595973064383e-12, 1.334005847037072e-15, 2668.0, 0.0033682610373944044, -5.0508128879300784e-06, 1.5778859330239925e-09, -5.0508128879300784e-06, 1.0102731096139905e-08, -3.5511309604691066e-12, 1.5778859330239925e-09, -3.5511309604691066e-12, 1.3315077351173823e-15, 2669.0, 0.0033670009579509497, -5.047031208960107e-06, 1.5761136840097834e-09, -5.047031208960107e-06, 1.0091381952292977e-08, -3.545812515132196e-12, 1.5761136840097834e-09, -3.545812515132196e-12, 1.3290151289118497e-15, 2670.0, 0.003365741576999426, -5.043253622716293e-06, 1.5743440995308333e-09, -5.043253622716293e-06, 1.0080050572014443e-08, -3.540503827614838e-12, 1.5743440995308333e-09, -3.540503827614838e-12, 1.3265282401787111e-15, 2671.0, 0.0033644833602011204, -5.039480583945988e-06, 1.5725771795871424e-09, -5.039480583945988e-06, 1.0068735178947463e-08, -3.5352053315979015e-12, 1.5725771795871424e-09, -3.5352053315979015e-12, 1.3240468571597296e-15, 2672.0, 0.0033632260747253895, -5.035711637901841e-06, 1.570812813156408e-09, -5.035711637901841e-06, 1.0057437549448878e-08, -3.5299163765600827e-12, 1.570812813156408e-09, -3.5299163765600827e-12, 1.3215710857340237e-15, 2673.0, 0.003361969953402877, -5.031947239331203e-06,1.5690512222832353e-09, -5.031947239331203e-06, 1.0046156795340266e-08, -3.5246376130226853e-12, 1.5690512222832353e-09, -3.5246376130226853e-12, 1.3191009259015934e-15, 2674.0, 0.003360714530572295, -5.0281864787393715e-06, 1.5672921849230192e-09, -5.0281864787393715e-06, 1.003489291662163e-08, -3.5193686073048402e-12, 1.5672921849230192e-09, -3.5193686073048402e-12, 1.3166361659042018e-15, 2675.0, 0.003359460039064288, -5.024430265621049e-06, 1.5655357010757598e-09,-5.024430265621049e-06, 1.0023645025114547e-08, -3.5141093594065476e-12, 1.5655357010757598e-09, -3.5141093594065476e-12, 1.3141770175000857e-15, 2676.0, 0.0033582064788788557, -5.020678599976236e-06, 1.5637819927860619e-09, -5.020678599976236e-06, 1.0012414897175859e-08, -3.5088600861682417e-12, 1.5637819927860619e-09, -3.5088600861682417e-12, 1.3117233748101268e-15, 2677.0, 0.003356953850015998, -5.01693057231023e-06, 1.5620308380093206e-09, -5.01693057231023e-06, 1.0001201644627145e-08, -3.5036205707494883e-12, 1.5620308380093206e-09, -3.5036205707494883e-12, 1.309275237834325e-15, 2678.0, 0.0033557021524757147, -5.013187092117732e-06, 1.560282236745536e-09, -5.013187092117732e-06, 9.990004379289985e-09, -3.4983908131502872e-12, 1.560282236745536e-09, -3.4983908131502872e-12, 1.3068326065726805e-15, 2679.0, 0.003354451386258006, -5.009447704651393e-06, 1.5585363000170105e-09, -5.009447704651393e-06, 9.9788239893428e-09, -3.4931708133706385e-12, 1.5585363000170105e-09, -3.4931708133706385e-12, 1.3043953751460747e-15, 2680.0, 0.0033532017841935158, -5.005712409911212e-06, 1.556793027823744e-09, -5.005712409911212e-06, 9.967660474785589e-09, -3.4879603545701077e-12, 1.556793027823744e-09, -3.4879603545701077e-12, 1.3019635435545076e-15, 2681.0, 0.0033519528806209564, -5.001981207897188e-06, 1.5550523091434343e-09, -5.001981207897188e-06, 9.956513835618352e-09, -3.4827598704295637e-12, 1.5550523091434343e-09, -3.4827598704295637e-12, 1.2995372176770976e-15, 2682.0, 0.0033507049083709717, -4.998254098609323e-06, 1.5533141439760811e-09, -4.998254098609323e-06, 9.94538318366267e-09, -3.4775689272681376e-12, 1.5533141439760811e-09, -3.4775689272681376e-12, 1.2971163975138448e-15, 2683.0, 0.0033494578674435616, -4.994531536794966e-06, 1.551578643343987e-09, -4.994531536794966e-06, 9.934269407096963e-09, -3.472387741926264e-12,1.551578643343987e-09, -3.472387741926264e-12, 1.2947008713065124e-15, 2684.0, 0.003348211757838726, -4.9908130677067675e-06, 1.5498455852025472e-09, -4.9908130677067675e-06, 9.92317250592123e-09, -3.467216097563508e-12, 1.5498455852025472e-09, -3.467216097563508e-12, 1.2922907449342187e-15, 2685.0, 0.003346966579556465, -4.987098691344727e-06, 1.548115302618669e-09, -4.987098691344727e-06, 9.91209159195705e-09, -3.4620542110203045e-12, 1.548115302618669e-09,-3.4620542110203045e-12, 1.2898861242760821e-15, 2686.0, 0.003345722332596779, -4.983388407708844e-06, 1.5463874625254448e-09, -4.983388407708844e-06, 9.901027553382846e-09, -3.456901865456219e-12, 1.5463874625254448e-09, -3.456901865456219e-12, 1.2874866916947475e-15, 2687.0, 0.003344479249790311, -4.9796822167991195e-06, 1.5446621759451773e-09, -4.9796822167991195e-06, 9.889980390198616e-09, -3.451759060871251e-12, 1.5446621759451773e-09, -3.451759060871251e-12, 1.28509276482757e-15, 2688.0, 0.003343236865475774, -4.975980118615553e-06, 1.542939553900169e-09, -4.975980118615553e-06, 9.87894832604752e-09, -3.446626014105836e-12, 1.542939553900169e-09, -3.446626014105836e-12, 1.282704131916313e-15, 2689.0, 0.0033419954124838114, -4.972282113158144e-06, 1.5412193743458147e-09, -4.972282113158144e-06, 9.86793402546482e-09, -3.441502291479104e-12, 1.5412193743458147e-09, -3.441502291479104e-12, 1.2803207929609761e-15, 2690.0, 0.0033407548908144236, -4.968588200426893e-06, 1.5395018593267196e-09, -4.968588200426893e-06, 9.856935712093673e-09, -3.4363881098314897e-12, 1.5395018593267196e-09, -3.4363881098314897e-12, 1.2779427479615597e-15, 2691.0, 0.0033395150676369667, -4.9648988351691514e-06, 1.537786897820581e-09, -4.9648988351691514e-06, 9.845953385934081e-09, -3.4312834691629934e-12, 1.537786897820581e-09, -3.4312834691629934e-12, 1.275570102797182e-15, 2692.0, 0.003338276408612728, -4.961213107890217e-06, 1.5360743788050968e-09, -4.961213107890217e-06, 9.834987046986043e-09, -3.426188369473615e-12, 1.5360743788050968e-09, -3.426188369473615e-12, 1.2732026457096062e-15, 2693.0, 0.003337038680911064, -4.95753147333744e-06, 1.5343645243248716e-09, -4.95753147333744e-06, 9.82403758342798e-09, -3.42110259392292e-12, 1.5343645243248716e-09, -3.42110259392292e-12, 1.2708404825779508e-15, 2694.0, 0.003335801884531975, -4.953854386258172e-06, 1.5326571123353006e-09, -4.953854386258172e-06, 9.813104107081472e-09, -3.416026359351343e-12, 1.5326571123353006e-09, -3.416026359351343e-12, 1.2684836134022157e-15, 2695.0, 0.00333456601947546, -4.950180937157711e-06, 1.5309522538586862e-09, -4.950180937157711e-06, 9.802187506124937e-09, -3.410959448918449e-12, 1.5309522538586862e-09, -3.410959448918449e-12, 1.2661319323032825e-15, 2696.0, 0.0033333308529108763, -4.946512035530759e-06, 1.5292499488950284e-09, -4.946512035530759e-06, 9.791286892379958e-09, -3.4059018626242388e-12, 1.5292499488950284e-09, -3.4059018626242388e-12, 1.2637854392811513e-15, 2697.0, 0.0033320968504995108, -4.942846771882614e-06, 1.5275501974443273e-09, -4.942846771882614e-06, 9.780401377668113e-09, -3.4008538173091463e-12, 1.5275501974443273e-09, -3.4008538173091463e-12, 1.2614442402149404e-15, 2698.0, 0.0033308635465800762, -4.939185600960627e-06,1.5258528884842804e-09, -4.939185600960627e-06, 9.769532738346243e-09, -3.395815096132737e-12, 1.5258528884842804e-09, -3.395815096132737e-12, 1.2591082292255315e-15, 2699.0, 0.00332963140681386, -4.935528977512149e-06, 1.52415813303719e-09, -4.935528977512149e-06, 9.758680974414347e-09, -3.390785482254577e-12, 1.52415813303719e-09, -3.390785482254577e-12, 1.2567774063129244e-15, 2700.0, 0.0033283999655395746, -4.931875992042478e-06, 1.522465820080754e-09,-4.931875992042478e-06, 9.747844309515585e-09, -3.3857654093555345e-12, 1.522465820080754e-09, -3.3857654093555345e-12, 1.2544517714771193e-15, 2701.0, 0.003327169455587864, -4.928227099298965e-06, 1.5207760606372744e-09, -4.928227099298965e-06, 9.737023631828379e-09, -3.3807546605951755e-12, 1.5207760606372744e-09, -3.3807546605951755e-12, 1.2521313247181162e-15, 2702.0, 0.003325939876958728, -4.92458229928161e-06, 1.5190888547067516e-09, -4.92458229928161e-06, 9.726218941352727e-09, -3.3757530191330654e-12, 1.5190888547067516e-09, -3.3757530191330654e-12, 1.2498159601567966e-15, 2703.0, 0.0033247112296521664, -4.920941591990413e-06, 1.517404091266883e-09, -4.920941591990413e-06, 9.715431126267049e-09, -3.3707607018096386e-12, 1.517404091266883e-09, -3.3707607018096386e-12, 1.2475057836722789e-15, 2704.0, 0.0033234835136681795, -4.917304977425374e-06, 1.5157218813399709e-09, -4.917304977425374e-06, 9.704658410214506e-09, -3.3657774917844607e-12, 1.5157218813399709e-09, -3.3657774917844607e-12, 1.2452006893854447e-15, 2705.0, 0.0033222567290067673, -4.913672000839142e-06, 1.5140420028814106e-09, -4.913672000839142e-06, 9.693901681373518e-09, -3.3608036058979662e-12, 1.5140420028814106e-09, -3.3608036058979662e-12, 1.2429007831754125e-15, 2706.0, 0.0033210308756679296, -4.910043571726419e-06, 1.5123647889581093e-09, -4.910043571726419e-06, 9.683160939744084e-09, -3.355839044150155e-12, 1.5123647889581093e-09, -3.355839044150155e-12, 1.2406058532839453e-15, 2707.0, 0.003319805720821023, -4.906418780592503e-06, 1.5106899065031598e-09, -4.906418780592503e-06, 9.672436185326205e-09, -3.3508833728601584e-12, 1.5106899065031598e-09, -3.3508833728601584e-12, 1.2383161114692801e-15, 2708.0, 0.0033185817301273346, -4.902798082184745e-06, 1.509017577561167e-09, -4.902798082184745e-06, 9.661727418119881e-09, -3.345937025708845e-12,1.509017577561167e-09, -3.345937025708845e-12, 1.23603134597318e-15, 2709.0, 0.003317358437925577, -4.899181476503145e-06, 1.5073476911098282e-09, -4.899181476503145e-06, 9.651034638125111e-09, -3.3409997858557805e-12, 1.5073476911098282e-09, -3.3409997858557805e-12, 1.233751768553882e-15, 2710.0, 0.0033161360770463943, -4.895568963547703e-06, 1.5056802471491437e-09, -4.895568963547703e-06, 9.640356957163476e-09, -3.3360714364605304e-12, 1.5056802471491437e-09,-3.3360714364605304e-12, 1.231477167453149e-15, 2711.0, 0.003314914647489786, -4.891960088571068e-06, 1.5040153567014158e-09, -4.891960088571068e-06, 9.629695263413396e-09, -3.3311524112039637e-12, 1.5040153567014158e-09, -3.3311524112039637e-12, 1.229207542670981e-15, 2712.0, 0.0033136941492557526, -4.888355761067942e-06, 1.5023527977220397e-09, -4.888355761067942e-06, 9.61904955687487e-09, -3.3262422764052113e-12, 1.5023527977220397e-09, -3.3262422764052113e-12, 1.2269430000864967e-15, 2713.0, 0.0033124745823442936, -4.884755071543623e-06, 1.5006927922556201e-09, -4.884755071543623e-06, 9.60841894936948e-09, -3.3213414657451423e-12, 1.5006927922556201e-09, -3.3213414657451423e-12, 1.2246834338205774e-15, 2714.0, 0.0033112559467554092, -4.881158019998111e-06, 1.4990351182575523e-09, -4.881158019998111e-06, 9.597804329075643e-09, -3.3164493287024532e-12, 1.4990351182575523e-09, -3.3164493287024532e-12, 1.2224288438732233e-15, 2715.0, 0.003310038009658456, -4.877565515926108e-06, 1.4973799977724411e-09, -4.877565515926108e-06, 9.587205695993362e-09, -3.3115665157984475e-12, 1.4973799977724411e-09, -3.3115665157984475e-12, 1.2201792302444343e-15, 2716.0, 0.0033088212367147207, -4.873976649832912e-06, 1.4957272087556817e-09, -4.873976649832912e-06, 9.576622161944215e-09, -3.3066923765118217e-12, 1.4957272087556817e-09, -3.3066923765118217e-12, 1.2179345929342104e-15, 2717.0, 0.0033076051622629166, -4.870391876465874e-06, 1.4940769732518788e-09, -4.870391876465874e-06, 9.566054615106623e-09, -3.3018273445234447e-12, 1.4940769732518788e-09, -3.3018273445234447e-12, 1.2156949319425516e-15, 2718.0, 0.003306390019133687, -4.866811195824994e-06, 1.4924290692164277e-09, -4.866811195824994e-06, 9.555502167302166e-09, -3.2969714198333167e-12, 1.4924290692164277e-09, -3.2969714198333167e-12, 1.213460247269458e-15, 2719.0, 0.003305175807327032, -4.863234153162921e-06, 1.4907836076716308e-09, -4.863234153162921e-06, 9.544964818530843e-09, -3.2921241687605685e-12, 1.4907836076716308e-09, -3.2921241687605685e-12, 1.211230433035811e-15, 2720.0, 0.003303962294012308, -4.859661203227006e-06, 1.489140588617488e-09, -4.859661203227006e-06, 9.534444345149495e-09, -3.287286024986069e-12, 1.489140588617488e-09, -3.287286024986069e-12, 1.2090054892416107e-15, 2721.0, 0.0033027499448508024, -4.856092346017249e-06, 1.487499901031697e-09, -4.856092346017249e-06, 9.523938082622863e-09, -3.2824565548289497e-12, 1.487499901031697e-09, -3.2824565548289497e-12, 1.2067855217659756e-15, 2722.0, 0.0033015382941812277, -4.852527126786299e-06, 1.48586165593656e-09, -4.852527126786299e-06, 9.513447807307784e-09, -3.277636191970079e-12, 1.48586165593656e-09, -3.277636191970079e-12, 1.2045704247297872e-15, 2723.0, 0.0033003275748342276, -4.848966000281507e-06,1.4842258533320773e-09, -4.848966000281507e-06, 9.502972631025841e-09, -3.2728245027285885e-12, 1.4842258533320773e-09, -3.2728245027285885e-12, 1.2023601981330455e-15, 2724.0, 0.003299117786809802, -4.845408966502873e-06, 1.4825924932182488e-09, -4.845408966502873e-06, 9.492513441955452e-09, -3.2680217039449122e-12, 1.4825924932182488e-09, -3.2680217039449122e-12, 1.2001548419757506e-15, 2725.0, 0.003297908930107951, -4.841855570703046e-06, 1.480961464572772e-09,-4.841855570703046e-06, 9.482069351918199e-09, -3.263227578778616e-12, 1.480961464572772e-09, -3.263227578778616e-12, 1.1979543562579023e-15, 2726.0, 0.003296701004728675, -4.838305812882027e-06, 1.4793328784179494e-09, -4.838305812882027e-06, 9.47164036091408e-09, -3.2584423440701338e-12, 1.4793328784179494e-09, -3.2584423440701338e-12, 1.1957586351003823e-15, 2727.0, 0.0032954937778413296, -4.834760602534516e-06, 1.4777066237314784e-09, -4.834760602534516e-06, 9.461226468943096e-09, -3.253665999819466e-12, 1.4777066237314784e-09, -3.253665999819466e-12, 1.193567784382309e-15, 2728.0, 0.003294287482276559, -4.831219030165812e-06, 1.4760827005133592e-09, -4.831219030165812e-06, 9.450827676005247e-09, -3.248898112345744e-12, 1.4760827005133592e-09, -3.248898112345744e-12, 1.1913818041036825e-15, 2729.0, 0.003293082118034363, -4.827681095775915e-06, 1.4744613308081966e-09, -4.827681095775915e-06, 9.440444870278952e-09, -3.2441393321702705e-12, 1.4744613308081966e-09, -3.2441393321702705e-12, 1.1892005883853843e-15, 2730.0, 0.0032918776851147413, -4.824147254112177e-06, 1.4728421815490833e-09, -4.824147254112177e-06, 9.430077163585793e-09, -3.2393890087717425e-12, 1.4728421815490833e-09, -3.2393890087717425e-12, 1.1870241372274144e-15, 2731.0, 0.003290673950687051, -4.820617505174596e-06, 1.4712254747806242e-09, -4.820617505174596e-06, 9.419724555925768e-09, -3.2346473589905944e-12, 1.4712254747806242e-09, -3.2346473589905944e-12, 1.1848525565088912e-15, 2732.0, 0.0032894713804125786, -4.817091394215822e-06, 1.4696110994805167e-09, -4.817091394215822e-06, 9.409386159120459e-09, -3.229914382826826e-12, 1.4696110994805167e-09, -3.229914382826826e-12, 1.1826856344715779e-15, 2733.0, 0.0032882695086300373, -4.813568921235856e-06, 1.467999055648761e-09, -4.813568921235856e-06, 9.399063749526704e-09, -3.2251902971208724e-12,1.467999055648761e-09, -3.2251902971208724e-12, 1.1805234769945929e-15, 2734.0, 0.0032870685681700706, -4.810050540982047e-06, 1.4663894543076594e-09, -4.810050540982047e-06, 9.388756438966084e-09, -3.220474668191864e-12, 1.4663894543076594e-09, -3.220474668191864e-12, 1.1783660840779362e-15, 2735.0, 0.003285868326202035, -4.8065362534543965e-06, 1.4647821844349096e-09, -4.8065362534543965e-06, 9.378464227438599e-09, -3.215767496039801e-12, 1.4647821844349096e-09,-3.215767496039801e-12, 1.1762134557216078e-15, 2736.0, 0.0032846692483872175, -4.803025603905553e-06, 1.463177135008209e-09, -4.803025603905553e-06, 9.368187114944249e-09, -3.211069214345552e-12, 1.463177135008209e-09, -3.211069214345552e-12, 1.1740654860464893e-15, 2737.0, 0.003283470869064331, -4.799518592335517e-06, 1.4615745280721626e-09, -4.799518592335517e-06, 9.357925101483033e-09, -3.206379389428249e-12, 1.4615745280721626e-09, -3.206379389428249e-12, 1.171922280931699e-15, 2738.0, 0.003282273421064019, -4.796015673491638e-06, 1.4599743636267704e-09, -4.796015673491638e-06, 9.347677298876533e-09, -3.201698021287891e-12, 1.4599743636267704e-09, -3.201698021287891e-12, 1.1697837344981188e-15, 2739.0, 0.0032810766715556383, -4.792516392626567e-06, 1.4583764196274274e-09, -4.792516392626567e-06, 9.337445483481588e-09, -3.197025326764913e-12, 1.4583764196274274e-09, -3.197025326764913e-12, 1.1676498467457484e-15, 2740.0, 0.0032798810862004757, -4.7890212044876534e-06, 1.456780807096436e-09, -4.7890212044876534e-06, 9.327227878941358e-09, -3.1923610890188803e-12, 1.456780807096436e-09, -3.1923610890188803e-12, 1.1655207235537063e-15, 2741.0, 0.003278686199337244, -4.785529654327547e-06, 1.4551875260337965e-09, -4.785529654327547e-06, 9.317025373434262e-09, -3.187705308049793e-12, 1.4551875260337965e-09, -3.187705308049793e-12, 1.1633961531637557e-15, 2742.0, 0.003277492243796587, -4.782042196893599e-06, 1.4535965764395087e-09, -4.782042196893599e-06, 9.306837078781882e-09, -3.1830582006980856e-12, 1.4535965764395087e-09, -3.1830582006980856e-12, 1.161276241455015e-15, 2743.0, 0.003276298986747861, -4.778557922691107e-06, 1.4520079583135725e-09, -4.778557922691107e-06, 9.296664771341057e-09, -3.178419333282889e-12, 1.4520079583135725e-09, -3.178419333282889e-12, 1.1591609884274842e-15, 2744.0, 0.003275106893852353, -4.7750781959621236e-06, 1.4504216716559881e-09, -4.7750781959621236e-06, 9.286506674754946e-09, -3.1737891394850726e-12, 1.4504216716559881e-09, -3.1737891394850726e-12, 1.1570503940811633e-15, 2745.0, 0.0032739154994487762, -4.7716016524645966e-06, 1.448837605444453e-09, -4.7716016524645966e-06, 9.276363677201971e-09, -3.169167185623767e-12, 1.448837605444453e-09, -3.169167185623767e-12, 1.1549443525369339e-15, 2746.0, 0.003272725036367774, -4.7681292016932275e-06, 1.4472558707012695e-09, -4.7681292016932275e-06, 9.26623489050371e-09, -3.1645536885394066e-12, 1.4472558707012695e-09, -3.1645536885394066e-12, 1.152842863794796e-15, 2747.0, 0.0032715352717787027, -4.7646608436480165e-06, 1.4456764674264377e-09, -4.7646608436480165e-06, 9.256121202838585e-09, -3.1599486482319916e-12, 1.4456764674264377e-09, -3.1599486482319916e-12, 1.150746033733868e-15, 2748.0, 0.003270346438512206, -4.761195668834262e-06,1.4440993956199577e-09, -4.761195668834262e-06, 9.246022614206595e-09, -3.155352064701522e-12, 1.4440993956199577e-09, -3.155352064701522e-12, 1.1486537564750314e-15, 2749.0, 0.003269158536568284, -4.757734586746665e-06, 1.4425246552818294e-09, -4.757734586746665e-06, 9.23593823642932e-09, -3.1507637211075634e-12, 1.4425246552818294e-09, -3.1507637211075634e-12, 1.1465661378974048e-15, 2750.0, 0.0032679715659469366, -4.754277142637875e-06, 1.4409521353897503e-09,-4.754277142637875e-06, 9.22586895768518e-09, -3.1461836174501157e-12, 1.4409521353897503e-09, -3.1461836174501157e-12, 1.1444829662427512e-15, 2751.0, 0.00326678529381752, -4.750823791255243e-06, 1.4393818359437205e-09, -4.750823791255243e-06, 9.215813889795754e-09, -3.1416119705696133e-12, 1.4393818359437205e-09, -3.1416119705696133e-12, 1.1424043473901892e-15, 2752.0, 0.0032655999530106783, -4.747374077851418e-06, 1.4378138679660424e-09, -4.747374077851418e-06, 9.205773032761044e-09, -3.1370485636256218e-12, 1.4378138679660424e-09, -3.1370485636256218e-12, 1.1403302813397186e-15, 2753.0, 0.003264415543526411, -4.743928002426401e-06, 1.436248231456716e-09, -4.743928002426401e-06, 9.19574727475947e-09, -3.132493396618141e-12, 1.436248231456716e-09, -3.132493396618141e-12, 1.1382606622122211e-15, 2754.0, 0.003263231832534075, -4.74048556498019e-06, 1.4346848153934388e-09, -4.74048556498019e-06, 9.18573572761261e-09, -3.1279464695471715e-12, 1.4346848153934388e-09, -3.1279464695471715e-12, 1.1361955958868152e-15, 2755.0, 0.0032620492856949568, -4.737047220260138e-06, 1.4331237307985134e-09, -4.737047220260138e-06, 9.175739279498885e-09, -3.123407999253147e-12, 1.4331237307985134e-09, -3.123407999253147e-12, 1.1341350823635007e-15, 2756.0, 0.003260867204517126, -4.733612058771541e-06, 1.4315647556273348e-09, -4.733612058771541e-06, 9.165757042239875e-09, -3.1188775520551992e-12, 1.4315647556273348e-09, -3.1188775520551992e-12, 1.1320790157631593e-15, 2757.0, 0.0032596862874925137, -4.730180990009103e-06, 1.4300082229468103e-09, -4.730180990009103e-06, 9.15578901583558e-09, -3.114355344793762e-12, 1.4300082229468103e-09, -3.114355344793762e-12, 1.130027396085791e-15, 2758.0, 0.003258506068959832, -4.726753559225472e-06, 1.4284537996900326e-09, -4.726753559225472e-06, 9.14583608846442e-09, -3.109841377468836e-12,1.4284537996900326e-09, -3.109841377468836e-12, 1.1279802233313957e-15, 2759.0, 0.0032573267817497253, -4.723330221167998e-06, 1.4269017079016066e-09, -4.723330221167998e-06, 9.135897371947976e-09, -3.1053356500804208e-12, 1.4269017079016066e-09, -3.1053356500804208e-12, 1.1259374974999735e-15, 2760.0, 0.0032561481930315495, -4.719910066341981e-06, 1.42535183655923e-09, -4.719910066341981e-06, 9.125972866286247e-09, -3.100837945788082e-12, 1.42535183655923e-09,-3.100837945788082e-12, 1.1238992185915245e-15, 2761.0, 0.003254970535635948, -4.716494004242122e-06, 1.423804296685205e-09, -4.716494004242122e-06, 9.116062571479233e-09, -3.096348481432254e-12, 1.423804296685205e-09, -3.096348481432254e-12, 1.1218653866060485e-15, 2762.0, 0.0032537938095629215, -4.71308158012107e-06, 1.4222588662349267e-09, -4.71308158012107e-06, 9.106166487526934e-09, -3.091867257012937e-12, 1.4222588662349267e-09, -3.091867257012937e-12, 1.1198360015435456e-15, 2763.0, 0.003252617781981826, -4.709672793978825e-06, 1.4207157672530002e-09, -4.709672793978825e-06, 9.09628550260777e-09, -3.0873938388492617e-12, 1.4207157672530002e-09, -3.0873938388492617e-12, 1.1178109575248974e-15, 2764.0, 0.0032514429185539484, -4.706267645815387e-06, 1.419174888717123e-09, -4.706267645815387e-06, 9.086418728543322e-09, -3.0829286606220974e-12, 1.419174888717123e-09, -3.0829286606220974e-12, 1.1157903604292222e-15, 2765.0, 0.0032502685207873583, -4.702866135630757e-06, 1.4176361196049925e-09, -4.702866135630757e-06, 9.076565277155169e-09, -3.0784715054910095e-12, 1.4176361196049925e-09, -3.0784715054910095e-12, 1.1137741043774018e-15, 2766.0, 0.0032490952871739864, -4.699468718172284e-06, 1.4160996819612137e-09, -4.699468718172284e-06, 9.06672692480015e-09, -3.0740225902964324e-12, 1.4160996819612137e-09, -3.0740225902964324e-12, 1.111762189369436e-15, 2767.0, 0.0032479227520525455, -4.696074483945267e-06, 1.4145654647634842e-09, -4.696074483945267e-06, 9.056901895121428e-09, -3.0695814813574973e-12, 1.4145654647634842e-09, -3.0695814813574973e-12, 1.1097547212844433e-15, 2768.0, 0.0032467509154230356, -4.692683887697058e-06, 1.413033468011804e-09, -4.692683887697058e-06, 9.04709196447584e-09, -3.0651483955146386e-12, 1.413033468011804e-09, -3.0651483955146386e-12, 1.1077514883641869e-15, 2769.0, 0.003245580242946744, -4.689297384175006e-06, 1.411503691706173e-09, -4.689297384175006e-06, 9.037296244684967e-09, -3.0607235496082907e-12, 1.411503691706173e-09, -3.0607235496082907e-12, 1.1057527023669036e-15, 2770.0, 0.0032444100361317396, -4.685914518631762e-06, 1.4099760248242887e-09, -4.685914518631762e-06, 9.02751384757039e-09, -3.0563065099575848e-12, 1.4099760248242887e-09, -3.0563065099575848e-12, 1.1037581515343565e-15, 2771.0, 0.0032432409934699535, -4.682534836319974e-06, 1.4084506894107562e-09, -4.682534836319974e-06, 9.017746549488947e-09, -3.0518974934029552e-12, 1.4084506894107562e-09, -3.0518974934029552e-12, 1.1017680476247825e-15, 2772.0, 0.0032420726493000984, -4.6791592467343435e-06, 1.4069274634209705e-09, -4.6791592467343435e-06, 9.0079925740838e-09, -3.0474962831039676e-12, 1.4069274634209705e-09, -3.0474962831039676e-12, 1.0997821788799448e-15, 2773.0, 0.003240905236452818, -4.67578729512752e-06,1.405406457877234e-09, -4.67578729512752e-06, 8.998252809533369e-09, -3.0431030959010563e-12, 1.405406457877234e-09, -3.0431030959010563e-12, 1.0978005452998434e-15, 2774.0, 0.0032397385220974684, -4.672418981499504e-06, 1.4038876727795468e-09, -4.672418981499504e-06, 8.988527255837653e-09, -3.0387179317942214e-12, 1.4038876727795468e-09, -3.0387179317942214e-12, 1.0958232527635966e-15, 2775.0, 0.0032385727390646935, -4.6690538511029445e-06, 1.4023709971056064e-09,-4.6690538511029445e-06, 8.978815024818232e-09, -3.034340357102594e-12, 1.4023709971056064e-09, -3.034340357102594e-12, 1.0938501953920861e-15, 2776.0, 0.003237407887354493, -4.665692813432543e-06, 1.4008565418777152e-09, -4.665692813432543e-06, 8.969117892831946e-09, -3.0299710223474774e-12, 1.4008565418777152e-09, -3.0299710223474774e-12, 1.091881373185312e-15, 2777.0, 0.003236243734136224, -4.662335413740948e-06, 1.3993443070958733e-09, -4.662335413740948e-06, 8.959434083521955e-09, -3.0256092770075682e-12, 1.3993443070958733e-09, -3.0256092770075682e-12, 1.0899168920223924e-15, 2778.0, 0.003235080512240529, -4.65898165202816e-06, 1.3978341817377782e-09, -4.65898165202816e-06, 8.94976448506668e-09, -3.0212555547637354e-12, 1.3978341817377782e-09, -3.0212555547637354e-12, 1.0879566460242091e-15, 2779.0, 0.0032339179888367653, -4.655631073546829e-06, 1.3963262768257323e-09, -4.655631073546829e-06, 8.9401082092877e-09, -3.0169096387755445e-12, 1.3963262768257323e-09, -3.0169096387755445e-12, 1.0860005293116437e-15, 2780.0, 0.003232756396755576, -4.652284587791655e-06, 1.3948205923597357e-09, -4.652284587791655e-06, 8.930466144363436e-09, -3.0125715290429955e-12, 1.3948205923597357e-09, -3.0125715290429955e-12, 1.084048753642933e-15, 2781.0, 0.0032315957359969616, -4.648941285267938e-06, 1.3933170173174858e-09, -4.648941285267938e-06, 8.920838290293887e-09, -3.008241008725654e-12, 1.3933170173174858e-09, -3.008241008725654e-12, 1.0821011072598401e-15, 2782.0, 0.003230435773730278, -4.645602075470379e-06, 1.3918155516989827e-09, -4.645602075470379e-06, 8.911223758900633e-09, -3.0039185115043887e-12, 1.3918155516989827e-09, -3.0039185115043887e-12, 1.0801576960414836e-15, 2783.0, 0.0032292765099555254, -4.6422660489042755e-06, 1.390316306526529e-09, -4.6422660489042755e-06, 8.901623438362094e-09, -2.999603603698331e-12,1.390316306526529e-09, -2.999603603698331e-12, 1.0782184141087448e-15, 2784.0, 0.003228118410333991, -4.63893411506433e-06, 1.388819170777822e-09, -4.63893411506433e-06, 8.89203732867827e-09, -2.9952967189883495e-12, 1.388819170777822e-09, -2.9952967189883495e-12, 1.0762833673407424e-15, 2785.0, 0.003226960776373744, -4.6356053644558415e-06, 1.3873242554751641e-09, -4.6356053644558415e-06, 8.882464541670743e-09, -2.990997206853141e-12, 1.3873242554751641e-09,-2.990997206853141e-12, 1.0743524498583578e-15, 2786.0, 0.0032258043065667152, -4.63228025182616e-06, 1.3858314495962532e-09, -4.63228025182616e-06, 8.87290507733951e-09, -2.986705717814009e-12, 1.3858314495962532e-09, -2.986705717814009e-12, 1.0724257675407095e-15, 2787.0, 0.0032246485352516174, -4.628958777175285e-06, 1.384340753141089e-09, -4.628958777175285e-06, 8.863359823862993e-09, -2.982421818190084e-12, 1.384340753141089e-09, -2.982421818190084e-12, 1.0705031086295606e-15, 2788.0, 0.0032234934624284506, -4.625640485755866e-06, 1.3828521661096715e-09, -4.625640485755866e-06, 8.853827893062771e-09, -2.9781455079813668e-12, 1.3828521661096715e-09, -2.9781455079813668e-12, 1.068584684883148e-15, 2789.0, 0.0032223393209278584, -4.622326287062606e-06, 1.3813657995243034e-09, -4.622326287062606e-06, 8.844309284938845e-09, -2.973876787187857e-12, 1.3813657995243034e-09, -2.973876787187857e-12, 1.066670284543235e-15, 2790.0, 0.0032211861107498407, -4.6190152716008015e-06, 1.379881542362682e-09, -4.6190152716008015e-06, 8.834804887669634e-09, -2.969615872649989e-12, 1.379881542362682e-09, -2.969615872649989e-12, 1.064760119368058e-15, 2791.0, 0.003220033599063754, -4.615708348865155e-06, 1.3783993946248074e-09, -4.615708348865155e-06, 8.825313813076718e-09, -2.965362547527328e-12, 1.3783993946248074e-09, -2.965362547527328e-12, 1.0628539775993807e-15, 2792.0, 0.003218882018700242, -4.612404609360965e-06, 1.3769193563106796e-09, -4.612404609360965e-06, 8.815836949338518e-09, -2.961116811819875e-12, 1.3769193563106796e-09, -2.961116811819875e-12, 1.0609519651163211e-15, 2793.0, 0.003217731136828661, -4.609104053088231e-06, 1.3754414274202986e-09, -4.609104053088231e-06, 8.806373408276613e-09, -2.956878665527629e-12, 1.3754414274202986e-09, -2.956878665527629e-12, 1.059053976039761e-15, 2794.0, 0.0032165811862796545, -4.605807589541655e-06, 1.3739656079536644e-09, -4.605807589541655e-06, 8.796923189891004e-09, -2.952648325491025e-12, 1.3739656079536644e-09, -2.952648325491025e-12, 1.0571601162488189e-15, 2795.0, 0.003215431934222579, -4.602514763973886e-06, 1.3724920089330794e-09, -4.602514763973886e-06, 8.78748629418169e-09, -2.948425358029194e-12, 1.3724920089330794e-09, -2.948425358029194e-12, 1.0552702798643761e-15, 2796.0, 0.003214283613488078, -4.5992251216375735e-06, 1.3710204083139388e-09, -4.5992251216375735e-06, 8.778063609327091e-09, -2.944209763142136e-12, 1.3710204083139388e-09, -2.944209763142136e-12, 1.0533845727655512e-15, 2797.0, 0.003213135991245508, -4.595939117280068e-06, 1.369550917118545e-09, -4.595939117280068e-06, 8.768653358970369e-09, -2.9400019745107198e-12, 1.369550917118545e-09, -2.9400019745107198e-12, 1.0515028890732258e-15, 2798.0, 0.003211989300325513, -4.5926562961540185e-06,1.3680835353468979e-09, -4.5926562961540185e-06, 8.759257319468361e-09, -2.9358015584540764e-12, 1.3680835353468979e-09, -2.9358015584540764e-12, 1.0496251229082814e-15, 2799.0, 0.0032108433078974485, -4.589377567754127e-06, 1.3666182629989976e-09, -4.589377567754127e-06, 8.749874602642649e-09, -2.9316087318126405e-12, 1.3666182629989976e-09, -2.9316087318126405e-12, 1.047751486028955e-15, 2800.0, 0.003209698246791959, -4.586102022585692e-06, 1.365155100074844e-09,-4.586102022585692e-06, 8.740505208493232e-09, -2.9274232777459774e-12, 1.365155100074844e-09, -2.9274232777459774e-12, 1.0458818725561279e-15, 2801.0, 0.0032085538841784, -4.582830115396064e-06, 1.363693935552135e-09, -4.582830115396064e-06, 8.731149137020111e-09, -2.9232454130945218e-12, 1.363693935552135e-09, -2.9232454130945218e-12, 1.0440161766106818e-15, 2802.0, 0.003207410452887416, -4.579561391437892e-06, 1.362234991475475e-09, -4.579561391437892e-06, 8.721806388223285e-09, -2.919074921017839e-12, 1.362234991475475e-09, -2.919074921017839e-12, 1.0421545040717353e-15, 2803.0, 0.0032062679529190063, -4.576296305458527e-06, 1.3607780458002594e-09, -4.576296305458527e-06, 8.712476962102755e-09, -2.9149118015159292e-12, 1.3607780458002594e-09, -2.9149118015159292e-12, 1.0402968549392882e-15, 2804.0, 0.003205125918611884, -4.573034857457969e-06, 1.3593230985264881e-09, -4.573034857457969e-06, 8.70316085865852e-09, -2.9107562714292268e-12, 1.3593230985264881e-09, -2.9107562714292268e-12, 1.0384431233342222e-15, 2805.0, 0.00320398504845798, -4.569777047436219e-06, 1.3578703716987661e-09, -4.569777047436219e-06, 8.693858077890582e-09, -2.9066078970768627e-12, 1.3578703716987661e-09, -2.9066078970768627e-12, 1.0365934151356556e-15, 2806.0, 0.003202844876796007, -4.566522420645924e-06, 1.3564196432724884e-09, -4.566522420645924e-06, 8.684568619798938e-09, -2.902467112139706e-12, 1.3564196432724884e-09, -2.902467112139706e-12, 1.03474762446447e-15, 2807.0, 0.003201705403625965, -4.563271431834437e-06, 1.3549710242699575e-09, -4.563271431834437e-06, 8.67529248438359e-09, -2.8983336997773224e-12, 1.3549710242699575e-09, -2.8983336997773224e-12, 1.0329057513206656e-15, 2808.0, 0.0032005668617784977, -4.560023626254406e-06, 1.353524403668871e-09, -4.560023626254406e-06, 8.666028783466118e-09, -2.8942076599897115e-12,1.353524403668871e-09, -2.8942076599897115e-12, 1.0310679015833606e-15, 2809.0, 0.0031994290184229612, -4.556779458653182e-06, 1.3520798924915312e-09, -4.556779458653182e-06, 8.65677929340336e-09, -2.890088775936439e-12, 1.3520798924915312e-09, -2.890088775936439e-12, 1.0292338634943182e-15, 2810.0, 0.0031982921063899994, -4.553538929030765e-06, 1.3506373797156357e-09, -4.553538929030765e-06, 8.64754223783848e-09, -2.8859772644579396e-12, 1.3506373797156357e-09,-2.8859772644579396e-12, 1.0274038488117753e-15, 2811.0, 0.0031971558928489685, -4.550301582639804e-06, 1.349196976363487e-09, -4.550301582639804e-06, 8.638318504949893e-09, -2.881873125554213e-12, 1.349196976363487e-09, -2.881873125554213e-12, 1.025577645777495e-15, 2812.0, 0.0031960206106305122, -4.5470678742276505e-06, 1.3477585714127827e-09, -4.5470678742276505e-06, 8.629108094737603e-09, -2.8777763592252592e-12, 1.3477585714127827e-09, -2.8777763592252592e-12, 1.0237553602705958e-15, 2813.0, 0.003194886026903987, -4.543837803794304e-06, 1.346322275885825e-09, -4.543837803794304e-06, 8.619911007201608e-09, -2.873686748630644e-12, 1.346322275885825e-09, -2.873686748630644e-12, 1.0219369922910776e-15, 2814.0, 0.0031937523745000362, -4.5406109165924136e-06, 1.3448879787603119e-09, -4.5406109165924136e-06, 8.61072635416349e-09, -2.8696045106108015e-12, 1.3448879787603119e-09, -2.8696045106108015e-12, 1.0201224359598221e-15, 2815.0, 0.0031926194205880165, -4.537387212621979e-06, 1.343455680036243e-09, -4.537387212621979e-06, 8.601555023801666e-09, -2.8655294283252974e-12, 1.343455680036243e-09, -2.8655294283252974e-12, 1.0183117971559476e-15, 2816.0, 0.0031914871651679277, -4.534167146630352e-06, 1.3420254907359208e-09, -4.534167146630352e-06, 8.592397016116138e-09, -2.8614617186145663e-12, 1.3420254907359208e-09, -2.8614617186145663e-12, 1.0165049700003358e-15, 2817.0, 0.0031903558410704136, -4.530950718617532e-06, 1.340597299837043e-09, -4.530950718617532e-06, 8.583251442928486e-09, -2.857400947797739e-12, 1.340597299837043e-09, -2.857400947797739e-12, 1.014702060372105e-15, 2818.0, 0.003189225448295474, -4.527737473836169e-06, 1.3391711073396095e-09, -4.527737473836169e-06, 8.574119192417129e-09, -2.853347549555685e-12, 1.3391711073396095e-09, -2.853347549555685e-12, 1.0129029623921369e-15, 2819.0, 0.003188095521181822, -4.524527867033612e-06, 1.3377470242659228e-09, -4.524527867033612e-06, 8.564999376403648e-09, -2.849301307047969e-12, 1.3377470242659228e-09, -2.849301307047969e-12, 1.0111076760604314e-15, 2820.0, 0.003186966758221388, -4.5213214434625115e-06, 1.336324828571378e-09, -4.5213214434625115e-06, 8.555892883066463e-09, -2.8452622202745914e-12, 1.336324828571378e-09, -2.8452622202745914e-12, 1.0093162013769886e-15, 2821.0, 0.003185838460922241, -4.518118657870218e-06, 1.33490474230058e-09, -4.518118657870218e-06, 8.546799712405573e-09, -2.841230506075987e-12, 1.33490474230058e-09, -2.841230506075987e-12, 1.0075285383418084e-15, 2822.0, 0.003184711327776313, -4.514919055509381e-06, 1.3334866544312263e-09, -4.514919055509381e-06, 8.537718976242559e-09, -2.837205730771286e-12, 1.3334866544312263e-09, -2.837205730771286e-12, 1.0057446869548908e-15, 2823.0, 0.0031835846602916718, -4.511723091127351e-06,1.3320705649633169e-09, -4.511723091127351e-06, 8.52865156275584e-09, -2.833188111200924e-12, 1.3320705649633169e-09, -2.833188111200924e-12, 1.0039645413371175e-15, 2824.0, 0.0031824589241296053, -4.508530309976777e-06, 1.3306564738968518e-09, -4.508530309976777e-06, 8.519596583766997e-09, -2.8291774305244655e-12, 1.3306564738968518e-09, -2.8291774305244655e-12, 1.0021883132467252e-15, 2825.0, 0.0031813341192901134, -4.50534116680501e-06, 1.329244381231831e-09,-4.50534116680501e-06, 8.51055403927603e-09, -2.82517412242278e-12, 1.329244381231831e-09, -2.82517412242278e-12, 1.0004157909254772e-15, 2826.0, 0.003180209780111909, -4.5021552068647e-06, 1.3278342869682547e-09, -4.5021552068647e-06, 8.501524817461359e-09, -2.8211777532149984e-12, 1.3278342869682547e-09, -2.8211777532149984e-12, 9.986469743733734e-16, 2827.0, 0.0031790866050869226, -4.498972430155845e-06, 1.3264261911061226e-09, -4.498972430155845e-06, 8.492508030144563e-09, -2.8171883229011208e-12, 1.3264261911061226e-09, -2.8171883229011208e-12, 9.968819694695322e-16, 2828.0, 0.0031779638957232237, -4.495793291425798e-06, 1.3250200936454348e-09, -4.495793291425798e-06, 8.483504565504063e-09, -2.813206265162016e-12, 1.3250200936454348e-09, -2.813206265162016e-12, 9.951206703348353e-16, 2829.0, 0.0031768421176820993, -4.492617335927207e-06, 1.3236159945861914e-09, -4.492617335927207e-06, 8.474513535361439e-09, -2.8092309294763806e-12, 1.3236159945861914e-09, -2.8092309294763806e-12, 9.93363182848401e-16, 2830.0, 0.0031757212709635496, -4.489445018407423e-06, 1.3222138939283923e-09, -4.489445018407423e-06, 8.46553493971669e-09, -2.8052627495250837e-12, 1.3222138939283923e-09, -2.8052627495250837e-12, 9.916092952519926e-16, 2831.0, 0.003174601122736931, -4.486275884119095e-06, 1.320813680649735e-09, -4.486275884119095e-06, 8.456568778569817e-09, -2.8013015084676907e-12, 1.320813680649735e-09, -2.8013015084676907e-12, 9.898592193038468e-16, 2832.0, 0.003173481673002243, -4.483109933062224e-06, 1.3194154657725221e-09, -4.483109933062224e-06, 8.44761594009924e-09, -2.797347423144636e-12, 1.3194154657725221e-09, -2.797347423144636e-12, 9.881128491248453e-16, 2833.0, 0.00317236315459013, -4.479947619984159e-06, 1.3180192492967535e-09, -4.479947619984159e-06, 8.438675536126539e-09, -2.793400059875051e-12,1.3180192492967535e-09, -2.793400059875051e-12, 9.863700788358696e-16, 2834.0, 0.0031712453346699476, -4.476788490137551e-06, 1.3166250312224292e-09, -4.476788490137551e-06, 8.429747566651713e-09, -2.789459852339804e-12, 1.3166250312224292e-09, -2.789459852339804e-12, 9.846311201951565e-16, 2835.0, 0.0031701282132416964, -4.47363299826975e-06, 1.3152328115495493e-09, -4.47363299826975e-06, 8.420832031674763e-09, -2.785526583698461e-12, 1.3152328115495493e-09,-2.785526583698461e-12, 9.828957614444692e-16, 2836.0, 0.0031690120231360197, -4.470480234886054e-06, 1.3138424792558112e-09, -4.470480234886054e-06, 8.411929819374109e-09, -2.781600253951022e-12, 1.3138424792558112e-09, -2.781600253951022e-12, 9.811641084629262e-16, 2837.0, 0.003167896531522274, -4.467331564228516e-06, 1.3124541453635175e-09, -4.467331564228516e-06, 8.40303915339291e-09, -2.7776806462570525e-12, 1.3124541453635175e-09, -2.7776806462570525e-12, 9.79436055371409e-16, 2838.0, 0.003166781971231103, -4.4641856220550835e-06, 1.3110676988503656e-09, -4.4641856220550835e-06, 8.394161810088008e-09, -2.7737681942974213e-12, 1.3110676988503656e-09, -2.7737681942974213e-12, 9.777117080490361e-16, 2839.0, 0.003165667876601219, -4.461043317860458e-06, 1.309683250738658e-09, -4.461043317860458e-06, 8.38529690128098e-09, -2.7698624643912595e-12, 1.309683250738658e-09, -2.7698624643912595e-12, 9.75990960616689e-16, 2840.0, 0.0031645549461245537, -4.457904196897289e-06, 1.3083008010283947e-09, -4.457904196897289e-06, 8.37644442697183e-09, -2.7659636733790016e-12, 1.3083008010283947e-09, -2.7659636733790016e-12, 9.742739189534861e-16, 2841.0, 0.0031634424813091755, -4.454768259165576e-06, 1.3069202386972734e-09, -4.454768259165576e-06, 8.367603498982135e-09, -2.762071604420213e-12, 1.3069202386972734e-09, -2.762071604420213e-12, 9.72560477180309e-16, 2842.0, 0.003162330947816372, -4.45163595941267e-06, 1.3055416747675963e-09, -4.45163595941267e-06, 8.358775893668735e-09, -2.7581864743553286e-12, 1.3055416747675963e-09, -2.7581864743553286e-12, 9.708506352971579e-16, 2843.0, 0.003161220345646143, -4.44850684289122e-06, 1.3041649982170611e-09, -4.44850684289122e-06, 8.349960722853211e-09, -2.754308283184348e-12, 1.3041649982170611e-09, -2.754308283184348e-12, 9.691443933040325e-16, 2844.0, 0.0031601102091372013, -4.4453809096012264e-06, 1.3027902090456678e-09, -4.4453809096012264e-06, 8.341157986535563e-09, -2.7504368140668367e-12, 1.3027902090456678e-09, -2.7504368140668367e-12, 9.67441751200933e-16, 2845.0, 0.0031590010039508343, -4.442258159542689e-06, 1.3014174182757188e-09, -4.442258159542689e-06, 8.332367684715791e-09, -2.746572067002795e-12, 1.3014174182757188e-09, -2.746572067002795e-12, 9.657427089878592e-16, 2846.0, 0.003157892730087042, -4.439139047462959e-06, 1.3000465148849116e-09, -4.439139047462959e-06, 8.323588929215475e-09, -2.742714258832657e-12, 1.3000465148849116e-09, -2.742714258832657e-12, 9.64047160785693e-16, 2847.0, 0.0031567849218845367, -4.436023118614685e-06, 1.2986776098955488e-09, -4.436023118614685e-06, 8.314823496391455e-09, -2.7388631727159884e-12, 1.2986776098955488e-09, -2.7388631727159884e-12, 9.623553183526709e-16, 2848.0, 0.0031556780450046062, -4.432910372997867e-06,1.2973105922853279e-09, -4.432910372997867e-06, 8.30606960988689e-09, -2.7350188086527893e-12, 1.2973105922853279e-09, -2.7350188086527893e-12, 9.606669699305562e-16, 2849.0, 0.0031545720994472504, -4.429800810612505e-06, 1.2959454620542488e-09, -4.429800810612505e-06, 8.297328157880202e-09, -2.7311811666430597e-12, 1.2959454620542488e-09, -2.7311811666430597e-12, 9.58982115519349e-16, 2850.0, 0.0031534668523818254, -4.4266944314586e-06, 1.2945822192023115e-09,-4.4266944314586e-06, 8.288599140371389e-09, -2.7273502466867994e-12, 1.2945822192023115e-09, -2.7273502466867994e-12, 9.573008609981676e-16, 2851.0, 0.0031523623038083315, -4.4235916902835015e-06, 1.2932209747518186e-09, -4.4235916902835015e-06, 8.279882557360452e-09, -2.7235260487840085e-12, 1.2932209747518186e-09, -2.7235260487840085e-12, 9.55623206367012e-16, 2852.0, 0.0031512584537267685, -4.420492132339859e-06, 1.2918616176804676e-09, -4.420492132339859e-06, 8.271177520668971e-09, -2.719708572934687e-12, 1.2918616176804676e-09, -2.719708572934687e-12, 9.53949045746764e-16, 2853.0, 0.00315015553496778, -4.4173957576276734e-06, 1.2905041479882584e-09, -4.4173957576276734e-06, 8.262485806653785e-09, -2.715897819138835e-12, 1.2905041479882584e-09, -2.715897819138835e-12, 9.522783791374233e-16, 2854.0, 0.0031490533147007227, -4.414302566146944e-06, 1.289148565675191e-09, -4.414302566146944e-06, 8.253804750779636e-09, -2.7120937873964523e-12, 1.289148565675191e-09, -2.7120937873964523e-12, 9.5061120653899e-16, 2855.0, 0.0031479517929255962, -4.41121255789767e-06, 1.2877948707412656e-09, -4.41121255789767e-06, 8.245137017581783e-09, -2.7082962608671046e-12, 1.2877948707412656e-09, -2.7082962608671046e-12, 9.489475279514641e-16, 2856.0, 0.0031468512024730444, -4.408126187627204e-06, 1.286443063186482e-09, -4.408126187627204e-06, 8.236480830703385e-09, -2.7045054563912263e-12, 1.286443063186482e-09, -2.7045054563912263e-12, 9.472873433748457e-16, 2857.0, 0.00314575107768178, -4.405042545840843e-06, 1.2850932540331428e-09, -4.405042545840843e-06, 8.227837078322864e-09, -2.7007213739688174e-12, 1.2850932540331428e-09, -2.7007213739688174e-12, 9.456307586882531e-16, 2858.0, 0.0031446521170437336, -4.401962542033289e-06, 1.283745221236643e-09, -4.401962542033289e-06, 8.219205760440218e-09, -2.6969437967594434e-12,1.283745221236643e-09, -2.6969437967594434e-12, 9.439775621334495e-16, 2859.0, 0.0031435536220669746, -4.39888526670984e-06, 1.282399075819285e-09, -4.39888526670984e-06, 8.210585988877028e-09, -2.6931727247631043e-12, 1.282399075819285e-09, -2.6931727247631043e-12, 9.42327753710435e-16, 2860.0, 0.0031424560584127903, -4.395811629365198e-06, 1.2810549288033712e-09, -4.395811629365198e-06, 8.201978651811714e-09, -2.6894083748202346e-12, 1.2810549288033712e-09,-2.6894083748202346e-12, 9.406815451774462e-16, 2861.0, 0.003141359193250537, -4.392741175252013e-06, 1.279712558144297e-09, -4.392741175252013e-06, 8.193382861065857e-09, -2.6856505300904e-12, 1.279712558144297e-09, -2.6856505300904e-12, 9.390387247762465e-16, 2862.0, 0.0031402630265802145, -4.389673904370284e-06, 1.2783720748643645e-09, -4.389673904370284e-06, 8.184799504817875e-09, -2.6818994074140345e-12, 1.2783720748643645e-09, -2.6818994074140345e-12, 9.373992925068358e-16, 2863.0, 0.0031391677912324667, -4.386609816720011e-06, 1.277033478963574e-09, -4.386609816720011e-06, 8.176227694889349e-09, -2.678154789950704e-12, 1.277033478963574e-09, -2.678154789950704e-12, 9.357633542483325e-16, 2864.0, 0.00313807325437665, -4.383548912301194e-06, 1.2756966594196228e-09, -4.383548912301194e-06, 8.167668319458699e-09, -2.674416460859974e-12, 1.2756966594196228e-09, -2.674416460859974e-12, 9.341308041216183e-16, 2865.0, 0.003136979416012764, -4.380491191113833e-06, 1.274361838277116e-09, -4.380491191113833e-06, 8.159120490347505e-09, -2.6706848538227135e-12, 1.274361838277116e-09, -2.6706848538227135e-12, 9.325017480058114e-16, 2866.0, 0.0031358865089714527, -4.377436653157929e-06, 1.2730287934914486e-09, -4.377436653157929e-06, 8.150584207555767e-09, -2.6669597519984878e-12, 1.2730287934914486e-09, -2.6669597519984878e-12, 9.308759741426752e-16, 2867.0, 0.0031347943004220724, -4.374385753180832e-06, 1.271697636084923e-09, -4.374385753180832e-06, 8.142060359261905e-09, -2.663241155387297e-12, 1.271697636084923e-09, -2.663241155387297e-12, 9.292536942904464e-16, 2868.0, 0.003133702790364623, -4.37133758168784e-06, 1.2703683660575393e-09, -4.37133758168784e-06, 8.133548945465918e-09, -2.659529063989141e-12, 1.2703683660575393e-09, -2.659529063989141e-12, 9.276348025700066e-16, 2869.0, 0.0031326119787991047, -4.368292593426304e-06, 1.269040872386995e-09, -4.368292593426304e-06, 8.125048189810968e-09, -2.6558232609635857e-12, 1.269040872386995e-09, -2.6558232609635857e-12, 9.260192989813559e-16, 2870.0, 0.003131522098556161, -4.365250788396224e-06, 1.2677152660955926e-09, -4.365250788396224e-06, 8.116559868653894e-09, -2.652123963151065e-12, 1.2677152660955926e-09, -2.652123963151065e-12, 9.244070776453757e-16, 2871.0, 0.0031304326839745045, -4.362212166597601e-06, 1.266391547183332e-09, -4.362212166597601e-06, 8.108083981994696e-09, -2.6484311705515795e-12, 1.266391547183332e-09, -2.6484311705515795e-12, 9.22798350320303e-16, 2872.0, 0.0031293442007154226, -4.359176728030434e-06, 1.2650696046279108e-09, -4.359176728030434e-06, 8.099618753476534e-09, -2.6447448831651288e-12, 1.2650696046279108e-09, -2.6447448831651288e-12, 9.211929052479009e-16, 2873.0, 0.0031282566487789154, -4.356144927442074e-06,1.2637495494516315e-09, -4.356144927442074e-06, 8.091165959456248e-09, -2.6410648841512785e-12, 1.2637495494516315e-09, -2.6410648841512785e-12, 9.195908483072878e-16, 2874.0, 0.0031271695625036955, -4.353115855337819e-06, 1.2624312706321916e-09, -4.353115855337819e-06, 8.082724711755418e-09, -2.637391390350463e-12, 1.2624312706321916e-09, -2.637391390350463e-12, 9.179920736193453e-16, 2875.0, 0.00312608340755105, -4.3500899664650206e-06, 1.2611148791918936e-09,-4.3500899664650206e-06, 8.074295898552464e-09, -2.633724184922248e-12, 1.2611148791918936e-09, -2.633724184922248e-12, 9.163966870631918e-16, 2876.0, 0.003124997951090336, -4.347067260823678e-06, 1.2598003751307374e-09, -4.347067260823678e-06, 8.065877743490546e-09, -2.6300632678666336e-12, 1.2598003751307374e-09, -2.6300632678666336e-12, 9.148046886388273e-16, 2877.0, 0.0031239131931215525, -4.344047283666441e-06, 1.2584876474264206e-09, -4.344047283666441e-06, 8.057472022926504e-09, -2.626408856024054e-12, 1.2584876474264206e-09, -2.626408856024054e-12, 9.13215866588015e-16, 2878.0, 0.0031228293664753437, -4.341030944488011e-06, 1.2571766960789432e-09, -4.341030944488011e-06, 8.049077848681918e-09, -2.6227607325540747e-12, 1.2571766960789432e-09, -2.6227607325540747e-12, 9.116304326689919e-16, 2879.0, 0.003121746238321066, -4.338017788541038e-06, 1.2558675210883052e-09, -4.338017788541038e-06, 8.040695220756788e-09, -2.6191191142971304e-12, 1.2558675210883052e-09, -2.6191191142971304e-12, 9.100482810026392e-16, 2880.0, 0.003120663808658719, -4.335007361078169e-06, 1.2545602334768091e-09, -4.335007361078169e-06, 8.032324139151115e-09, -2.615483567572352e-12, 1.2545602334768091e-09, -2.615483567572352e-12, 9.084694115889572e-16, 2881.0, 0.003119582077488303, -4.332000571594108e-06, 1.2532548332444549e-09, -4.332000571594108e-06, 8.023964603864897e-09, -2.611854309220174e-12, 1.2532548332444549e-09, -2.611854309220174e-12, 9.068939303070642e-16, 2882.0, 0.0031185010448098183, -4.328996510594152e-06, 1.2519510983466375e-09, -4.328996510594152e-06, 8.015616614898136e-09, -2.608231556081031e-12, 1.2519510983466375e-09, -2.608231556081031e-12, 9.053216253987234e-16, 2883.0, 0.003117420943453908, -4.325996087573003e-06, 1.250649250827962e-09, -4.325996087573003e-06, 8.00728106042925e-09, -2.604614874474054e-12,1.250649250827962e-09, -2.604614874474054e-12, 9.037526027430532e-16, 2884.0, 0.0031163415405899286, -4.3229983930359595e-06, 1.249349179666126e-09, -4.3229983930359595e-06, 7.9989561641014e-09, -2.6010046980801116e-12, 1.249349179666126e-09, -2.6010046980801116e-12, 9.021868623400537e-16, 2885.0, 0.0031152628362178802, -4.320003881730372e-06, 1.2480509958834318e-09, -4.320003881730372e-06, 7.990642814093007e-09, -2.5974005932183353e-12, 1.2480509958834318e-09,-2.5974005932183353e-12, 9.006242983106063e-16, 2886.0, 0.003114184830337763, -4.31701209890889e-06, 1.2467544774352746e-09, -4.31701209890889e-06, 7.98234101040407e-09, -2.5938027767291594e-12, 1.2467544774352746e-09, -2.5938027767291594e-12, 8.99065122412948e-16, 2887.0, 0.00311310775578022, -4.314023954066215e-06, 1.2454598463662592e-09, -4.314023954066215e-06, 7.974051641213009e-09, -2.590211248612584e-12, 1.2454598463662592e-09, -2.590211248612584e-12, 8.975091228888418e-16, 2888.0, 0.0031120311468839645, -4.3110385377076454e-06, 1.2441669916540832e-09, -4.3110385377076454e-06, 7.965772930162984e-09, -2.5866257920281743e-12, 1.2441669916540832e-09, -2.5866257920281743e-12, 8.959562997382878e-16, 2889.0, 0.0031109554693102837, -4.308056759327883e-06, 1.2428759132987466e-09, -4.308056759327883e-06, 7.957505765432416e-09, -2.583046623816365e-12, 1.2428759132987466e-09, -2.583046623816365e-12, 8.944067588404045e-16, 2890.0, 0.0031098804902285337, -4.305077709432226e-06, 1.2415866113002494e-09, -4.305077709432226e-06, 7.949249258842883e-09, -2.579473527136722e-12, 1.2415866113002494e-09, -2.579473527136722e-12, 8.928603943160734e-16, 2891.0, 0.003108806209638715, -4.302101388020674e-06, 1.2402990856585916e-09, -4.302101388020674e-06, 7.941005186751227e-09, -2.575906718829679e-12, 1.2402990856585916e-09, -2.575906718829679e-12, 8.913172061652944e-16, 2892.0, 0.0031077328603714705, -4.299128704587929e-06, 1.2390134473960757e-09, -4.299128704587929e-06, 7.932772660979026e-09, -2.5723461988952367e-12, 1.2390134473960757e-09, -2.5723461988952367e-12, 8.897773002671861e-16, 2893.0, 0.0031066599767655134, -4.2961587496392895e-06, 1.2377294744680967e-09, -4.2961587496392895e-06, 7.924550793347862e-09, -2.5687917504929603e-12, 1.2377294744680967e-09, -2.5687917504929603e-12, 8.8824057074263e-16, 2894.0, 0.003105588024482131, -4.293192432669457e-06, 1.236447277896957e-09, -4.293192432669457e-06, 7.916340472036154e-09, -2.5652433736228497e-12, 1.236447277896957e-09, -2.5652433736228497e-12, 8.867069646520669e-16, 2895.0, 0.0031045167706906796, -4.290228389436379e-06, 1.2351668576826569e-09, -4.290228389436379e-06, 7.908141697043902e-09, -2.561701068284905e-12, 1.2351668576826569e-09, -2.561701068284905e-12, 8.851765878746152e-16, 2896.0, 0.003103446215391159, -4.287267984182108e-06, 1.233888213825196e-09, -4.287267984182108e-06, 7.899954468371106e-09, -2.558165051319561e-12, 1.233888213825196e-09, -2.558165051319561e-12, 8.836493874707157e-16, 2897.0, 0.003102376591414213, -4.2843107621592935e-06, 1.2326113463245747e-09, -4.2843107621592935e-06, 7.891777897839347e-09, -2.554634889045948e-12, 1.2326113463245747e-09, -2.554634889045948e-12, 8.821253105008092e-16, 2898.0, 0.0031013074330985546, -4.281356268620584e-06,1.2313362551807927e-09, -4.281356268620584e-06, 7.883612873627044e-09, -2.5511110151449357e-12, 1.2313362551807927e-09, -2.5511110151449357e-12, 8.806044099044549e-16, 2899.0, 0.0031002392061054707, -4.27840450356598e-06, 1.2300628293715477e-09, -4.27840450356598e-06, 7.875459395734197e-09, -2.547593212776089e-12, 1.2300628293715477e-09, -2.547593212776089e-12, 8.790866327420936e-16, 2900.0, 0.0030991716776043177, -4.275456376490183e-06, 1.2287912909414445e-09,-4.275456376490183e-06, 7.867316575982386e-09, -2.544081265098974e-12, 1.2287912909414445e-09, -2.544081265098974e-12, 8.775720319532845e-16, 2901.0, 0.0030981048475950956, -4.2725109778984915e-06, 1.2275214178458782e-09, -4.2725109778984915e-06, 7.859185302550031e-09, -2.5405756057944595e-12, 1.2275214178458782e-09, -2.5405756057944595e-12, 8.760605545984684e-16, 2902.0, 0.0030970387160778046, -4.269568762538256e-06, 1.2262533211071514e-09, -4.269568762538256e-06, 7.851065575437133e-09, -2.5370758011816763e-12, 1.2262533211071514e-09, -2.5370758011816763e-12, 8.745521477380861e-16, 2903.0, 0.0030959732830524445, -4.266629730409477e-06, 1.224987000725264e-09, -4.266629730409477e-06, 7.84295650646527e-09, -2.533582068101059e-12, 1.224987000725264e-09, -2.533582068101059e-12, 8.73046917251256e-16, 2904.0, 0.0030949085485190153, -4.263693426764803e-06, 1.2237223456779134e-09, -4.263693426764803e-06, 7.834858983812865e-09, -2.5300944065526076e-12, 1.2237223456779134e-09, -2.5300944065526076e-12, 8.715447572588597e-16, 2905.0, 0.0030938447453081608, -4.260760306351585e-06, 1.2224594669874023e-09, -4.260760306351585e-06, 7.826772119301495e-09, -2.526612816536322e-12, 1.2224594669874023e-09, -2.526612816536322e-12, 8.700457207004564e-16, 2906.0, 0.003092781640589237, -4.257830369169824e-06, 1.2211983646537306e-09, -4.257830369169824e-06, 7.818696801109581e-09, -2.523137081211768e-12, 1.2211983646537306e-09, -2.523137081211768e-12, 8.685497546364869e-16, 2907.0, 0.003091719001531601, -4.254903160472168e-06, 1.2199389276545958e-09, -4.254903160472168e-06, 7.810633029237124e-09, -2.51966741741938e-12, 1.2199389276545958e-09, -2.51966741741938e-12, 8.670569120065104e-16, 2908.0, 0.0030906572937965393, -4.251979135005968e-06, 1.2186812670123004e-09, -4.251979135005968e-06, 7.802579915505703e-09, -2.5162036083187234e-12,1.2186812670123004e-09, -2.5162036083187234e-12, 8.655671398709677e-16, 2909.0, 0.0030895965173840523, -4.249057838023873e-06, 1.2174253827268444e-09, -4.249057838023873e-06, 7.794537459915318e-09, -2.5127458707502326e-12, 1.2174253827268444e-09, -2.5127458707502326e-12, 8.640803852902996e-16, 2910.0, 0.0030885362066328526, -4.246139724273235e-06, 1.2161711637759254e-09, -4.246139724273235e-06, 7.78650655064439e-09, -2.5092939878734732e-12, 1.2161711637759254e-09,-2.5092939878734732e-12, 8.625967541436245e-16, 2911.0, 0.003087476594373584, -4.243224793754052e-06, 1.2149186101595433e-09, -4.243224793754052e-06, 7.778486299514498e-09, -2.5058479596884453e-12, 1.2149186101595433e-09, -2.5058479596884453e-12, 8.61116140551824e-16, 2912.0, 0.0030864179134368896, -4.2403125917189755e-06, 1.2136678329000006e-09, -4.2403125917189755e-06, 7.770476706525642e-09, -2.5024080030355833e-12, 1.2136678329000006e-09, -2.5024080030355833e-12, 8.596385974544572e-16, 2913.0, 0.003085359698161483, -4.237403572915355e-06, 1.2124188319972973e-09, -4.237403572915355e-06, 7.762478659856242e-09, -2.4989739010744527e-12, 1.2124188319972973e-09, -2.4989739010744527e-12, 8.581640719119651e-16, 2914.0, 0.0030843024142086506, -4.23449773734319e-06, 1.211171496429131e-09, -4.23449773734319e-06, 7.754492159506299e-09, -2.4955456538050536e-12, 1.211171496429131e-09, -2.4955456538050536e-12, 8.566926168639068e-16, 2915.0, 0.0030832458287477493, -4.231594630255131e-06, 1.2099258261955015e-09, -4.231594630255131e-06, 7.746515429118972e-09, -2.492123261227386e-12, 1.2099258261955015e-09, -2.492123261227386e-12, 8.5522417937072305e-16, 2916.0, 0.003082189941778779, -4.228694706398528e-06, 1.2086819323187115e-09, -4.228694706398528e-06, 7.738550245051101e-09, -2.4887067233414495e-12, 1.2086819323187115e-09, -2.4887067233414495e-12, 8.537587594324139e-16, 2917.0, 0.0030811347533017397, -4.22579751102603e-06, 1.2074397037764584e-09, -4.22579751102603e-06, 7.730595719124267e-09, -2.4852960401472446e-12, 1.2074397037764584e-09, -2.4852960401472446e-12, 8.522963041094202e-16, 2918.0, 0.0030800802633166313, -4.222903044137638e-06, 1.2061991405687422e-09, -4.222903044137638e-06, 7.722652739516889e-09, -2.481891211644771e-12, 1.2061991405687422e-09, -2.481891211644771e-12, 8.508369192808602e-16, 2919.0, 0.003079026471823454, -4.220012215228053e-06, 1.2049603537178655e-09, -4.220012215228053e-06, 7.714720418050547e-09, -2.478492237834029e-12, 1.2049603537178655e-09, -2.478492237834029e-12, 8.493804990676156e-16, 2920.0, 0.0030779733788222075, -4.217124114802573e-06, 1.2037232322015257e-09, -4.217124114802573e-06, 7.706798754725241e-09, -2.4750991187150184e-12, 1.2037232322015257e-09, -2.4750991187150184e-12, 8.479270964092457e-16, 2921.0, 0.0030769212171435356, -4.214238742861198e-06, 1.2024877760197228e-09, -4.214238742861198e-06, 7.698887749540972e-09, -2.4717118542877392e-12, 1.2024877760197228e-09, -2.4717118542877392e-12, 8.464766583661911e-16, 2922.0, 0.003075869521126151, -4.21135655415128e-06, 1.2012539851724569e-09, -4.21135655415128e-06, 7.69098740249774e-09, -2.468330227711757e-12, 1.2012539851724569e-09, -2.468330227711757e-12, 8.450291849384519e-16, 2923.0, 0.003074818756431341, -4.208477093925467e-06,1.2000219706820303e-09, -4.208477093925467e-06, 7.683098601773963e-09, -2.464954455827506e-12, 1.2000219706820303e-09, -2.464954455827506e-12, 8.435846761260281e-16, 2924.0, 0.0030737686902284622, -4.20560081693111e-06, 1.1987916215261407e-09, -4.20560081693111e-06, 7.675220459191223e-09, -2.461584321794552e-12, 1.1987916215261407e-09, -2.461584321794552e-12, 8.421431319289197e-16, 2925.0, 0.0030727190896868706, -4.202727268420858e-06, 1.197562937704788e-09,-4.202727268420858e-06, 7.6673520865711e-09, -2.458220259293764e-12, 1.197562937704788e-09, -2.458220259293764e-12, 8.407045523471266e-16, 2926.0, 0.0030716704204678535, -4.199856903142063e-06, 1.1963359192179723e-09, -4.199856903142063e-06, 7.659495260270432e-09, -2.4548616178038385e-12, 1.1963359192179723e-09, -2.4548616178038385e-12, 8.39268937380649e-16, 2927.0, 0.0030706224497407675, -4.196989266347373e-06, 1.1951105660656935e-09, -4.196989266347373e-06, 7.651649092110802e-09, -2.4515088310056443e-12, 1.1951105660656935e-09, -2.4515088310056443e-12, 8.378362340899276e-16, 2928.0, 0.0030695751775056124, -4.194124812784139e-06, 1.1938868782479517e-09, -4.194124812784139e-06, 7.643813582092207e-09, -2.4481618988991816e-12, 1.1938868782479517e-09, -2.4481618988991816e-12, 8.364064954145215e-16, 2929.0, 0.0030685286037623882, -4.1912630877050105e-06, 1.1926649667870493e-09, -4.1912630877050105e-06, 7.635988730214649e-09, -2.4448203878035812e-12, 1.1926649667870493e-09, -2.4448203878035812e-12, 8.349796684148716e-16, 2930.0, 0.003067482728511095, -4.188404091109987e-06, 1.1914446096383813e-09, -4.188404091109987e-06, 7.628175424656547e-09, -2.4414847313997123e-12, 1.1914446096383813e-09, -2.4414847313997123e-12, 8.33555753090978e-16, 2931.0, 0.003066437551751733, -4.18554827774642e-06, 1.1902259178242502e-09, -4.18554827774642e-06, 7.620371889061062e-09, -2.438154929687575e-12, 1.1902259178242502e-09, -2.438154929687575e-12, 8.321347494428405e-16, 2932.0, 0.0030653933063149452, -4.1826956476143096e-06, 1.1890088913446561e-09, -4.1826956476143096e-06, 7.612579011606613e-09, -2.4348305489863e-12, 1.1890088913446561e-09, -2.4348305489863e-12, 8.307166574704592e-16, 2933.0, 0.003064349526539445, -4.179845745966304e-06, 1.1877936412219015e-09, -4.179845745966304e-06, 7.6047967922932e-09, -2.431512022976756e-12,1.1877936412219015e-09, -2.431512022976756e-12, 8.29301477173834e-16, 2934.0, 0.0030633064452558756, -4.176998572802404e-06, 1.1865799454113812e-09, -4.176998572802404e-06, 7.597025231120824e-09, -2.428198917978075e-12, 1.1865799454113812e-09, -2.428198917978075e-12, 8.278892085529651e-16, 2935.0, 0.003062264295294881, -4.17415458286996e-06, 1.185367914935398e-09, -4.17415458286996e-06, 7.589264328089484e-09, -2.424891667671125e-12, 1.185367914935398e-09,-2.424891667671125e-12, 8.264797986682931e-16, 2936.0, 0.0030612226109951735, -4.171313321421621e-06, 1.1841574387716491e-09, -4.171313321421621e-06, 7.581514083199181e-09, -2.4215900552154723e-12, 1.1841574387716491e-09, -2.4215900552154723e-12, 8.250732475198182e-16, 2937.0, 0.003060181625187397, -4.168474788457388e-06, 1.1829487389647397e-09, -4.168474788457388e-06, 7.573773608271495e-09, -2.418293863770682e-12, 1.1829487389647397e-09, -2.418293863770682e-12, 8.236695551075402e-16, 2938.0, 0.003059141570702195, -4.165639438724611e-06, 1.1817417044923673e-09, -4.165639438724611e-06, 7.566044679663264e-09, -2.4150033101771884e-12, 1.1817417044923673e-09, -2.4150033101771884e-12, 8.222687743710184e-16, 2939.0, 0.0030581019818782806, -4.162806817475939e-06, 1.1805362243322293e-09, -4.162806817475939e-06, 7.55832552101765e-09, -2.4117186112754263e-12, 1.1805362243322293e-09, -2.4117186112754263e-12, 8.208708523706936e-16, 2940.0, 0.0030570633243769407, -4.159976924711373e-06, 1.1793324095066282e-09, -4.159976924711373e-06, 7.550617020513073e-09, -2.408439116544092e-12, 1.1793324095066282e-09, -2.408439116544092e-12, 8.194757361670065e-16, 2941.0, 0.0030560253653675318, -4.1571502151782624e-06, 1.178130260015564e-09, -4.1571502151782624e-06, 7.542919178149532e-09, -2.4051654765044894e-12, 1.178130260015564e-09, -2.4051654765044894e-12, 8.180834786995165e-16, 2942.0, 0.00305498787201941, -4.1543262341292575e-06, 1.1769296648367344e-09, -4.1543262341292575e-06, 7.535231993927027e-09, -2.401897257475749e-12, 1.1769296648367344e-09, -2.401897257475749e-12, 8.166940799682234e-16, 2943.0, 0.003053951309993863, -4.151505436311709e-06, 1.1757307349924417e-09, -4.151505436311709e-06, 7.52755546784556e-09, -2.3986346762983057e-12, 1.1757307349924417e-09, -2.3986346762983057e-12, 8.153075399731273e-16, 2944.0, 0.003052915446460247, -4.148687366978265e-06, 1.174533470482686e-09, -4.148687366978265e-06, 7.519888711726708e-09, -2.3953777329721593e-12, 1.174533470482686e-09, -2.3953777329721593e-12, 8.139237528351098e-16, 2945.0, 0.0030518800485879183, -4.145872026128927e-06, 1.1733378713074671e-09, -4.145872026128927e-06, 7.512232613748893e-09, -2.3921259938164408e-12, 1.1733378713074671e-09, -2.3921259938164408e-12, 8.125428244332893e-16, 2946.0, 0.003050845582038164, -4.1430594137636945e-06, 1.1721438264444828e-09, -4.1430594137636945e-06, 7.504587173912114e-09, -2.3888801093524537e-12, 1.1721438264444828e-09, -2.3888801093524537e-12, 8.1116470182810655e-16, 2947.0, 0.003049811813980341, -4.140249984629918e-06, 1.1709514469160354e-09, -4.140249984629918e-06, 7.496951504037952e-09, -2.3856394290588945e-12, 1.1709514469160354e-09, -2.3856394290588945e-12, 8.097893850195616e-16, 2948.0, 0.003048778511583805, -4.137443283980247e-06,1.1697606216998224e-09, -4.137443283980247e-06, 7.489326492304826e-09, -2.3824043866166322e-12, 1.1697606216998224e-09, -2.3824043866166322e-12, 8.084168740076544e-16, 2949.0, 0.003047746140509844, -4.134639311814681e-06, 1.1685714618181464e-09, -4.134639311814681e-06, 7.481712138712737e-09, -2.379174982025667e-12, 1.1685714618181464e-09, -2.379174982025667e-12, 8.070471158528258e-16, 2950.0, 0.0030467144679278135, -4.131838522880571e-06, 1.1673838562487049e-09,-4.131838522880571e-06, 7.474107555083265e-09, -2.3759507816051295e-12, 1.1673838562487049e-09, -2.3759507816051295e-12, 8.05680163494635e-16, 2951.0, 0.003045683493837714, -4.129040007683216e-06, 1.1661979160138003e-09, -4.129040007683216e-06, 7.466513629594829e-09, -2.372732219035889e-12, 1.1661979160138003e-09, -2.372732219035889e-12, 8.043160169330819e-16, 2952.0, 0.003044652985408902, -4.1262446757173166e-06, 1.1650135300911302e-09, -4.1262446757173166e-06, 7.45892947406901e-09, -2.369519077477511e-12, 1.1650135300911302e-09, -2.369519077477511e-12, 8.029545702890482e-16, 2953.0, 0.0030436234083026648, -4.123452526982874e-06, 1.163830809502997e-09, -4.123452526982874e-06, 7.451355976684226e-09, -2.3663113569299954e-12, 1.163830809502997e-09, -2.3663113569299954e-12, 8.015959823812115e-16, 2954.0, 0.0030425945296883583, -4.120662651985185e-06, 1.1626496432270983e-09, -4.120662651985185e-06, 7.44379313744048e-09, -2.3631090573933422e-12, 1.1626496432270983e-09, -2.3631090573933422e-12, 8.002400943908942e-16, 2955.0, 0.003041566349565983, -4.117875960218953e-06, 1.161470031263434e-09, -4.117875960218953e-06, 7.43624006815935e-09, -2.359911962027117e-12, 1.161470031263434e-09, -2.359911962027117e-12, 7.988869592576555e-16, 2956.0, 0.0030405386351048946, -4.115091996936826e-06, 1.1602920846343068e-09, -4.115091996936826e-06, 7.428697212930047e-09, -2.3567205045121886e-12, 1.1602920846343068e-09, -2.3567205045121886e-12, 7.975365769814953e-16, 2957.0, 0.003039511851966381, -4.112310762138804e-06, 1.159115692317414e-09, -4.112310762138804e-06, 7.42116457175257e-09, -2.3535344680081227e-12, 1.159115692317414e-09, -2.3535344680081227e-12, 7.961889475624137e-16, 2958.0, 0.0030384857673197985, -4.109532255824888e-06, 1.157940965335058e-09, -4.109532255824888e-06, 7.41364214462692e-09, -2.3503536356744847e-12,1.157940965335058e-09, -2.3503536356744847e-12, 7.948440180608515e-16, 2959.0, 0.003037460148334503, -4.106756932742428e-06, 1.1567677926649367e-09, -4.106756932742428e-06, 7.406129931553096e-09, -2.3471784411921437e-12, 1.1567677926649367e-09, -2.3471784411921437e-12, 7.935018414163678e-16, 2960.0, 0.0030364354606717825, -4.103984338144073e-06, 1.1555961743070498e-09, -4.103984338144073e-06, 7.398627932531099e-09, -2.3440084508802306e-12, 1.1555961743070498e-09,-2.3440084508802306e-12, 7.921623646894036e-16, 2961.0, 0.003035411238670349, -4.101214017282473e-06, 1.1544261102613973e-09, -4.101214017282473e-06, 7.391136147560928e-09, -2.3408436647387454e-12, 1.1544261102613973e-09, -2.3408436647387454e-12, 7.908255878799587e-16, 2962.0, 0.0030343879479914904, -4.098446879652329e-06, 1.1532577115502818e-09, -4.098446879652329e-06, 7.3836541325533744e-09, -2.337684516448557e-12, 1.1532577115502818e-09, -2.337684516448557e-12, 7.894915639275924e-16, 2963.0, 0.003033365122973919, -4.095682925253641e-06, 1.1520907561290983e-09, -4.095682925253641e-06, 7.376182331597647e-09, -2.3345305723287968e-12, 1.1520907561290983e-09, -2.3345305723287968e-12, 7.881601869531862e-16, 2964.0, 0.003032343229278922, -4.092921244591707e-06, 1.1509254660424517e-09, -4.092921244591707e-06, 7.368720744693746e-09, -2.3313818323794644e-12, 1.1509254660424517e-09, -2.3313818323794644e-12, 7.868315098962994e-16, 2965.0, 0.0030313218012452126, -4.090162292413879e-06, 1.1497617302680396e-09, -4.090162292413879e-06, 7.361268927752462e-09, -2.3282385134409944e-12, 1.1497617302680396e-09, -2.3282385134409944e-12, 7.855055856964912e-16, 2966.0, 0.0030303013045340776, -4.087406523467507e-06, 1.1485996598281645e-09, -4.087406523467507e-06, 7.353827324863005e-09, -2.3251003986729524e-12, 1.1485996598281645e-09, -2.3251003986729524e-12, 7.84182255535084e-16, 2967.0, 0.00302928127348423, -4.0846534830052406e-06, 1.1474390326782213e-09, -4.0846534830052406e-06, 7.346395936025374e-09, -2.3219677049157728e-12, 1.1474390326782213e-09, -2.3219677049157728e-12, 7.828616782307553e-16, 2968.0, 0.0030282619409263134, -4.081903171027079e-06, 1.1462799598405127e-09, -4.081903171027079e-06, 7.33897431715036e-09, -2.318840215329021e-12, 1.1462799598405127e-09, -2.318840215329021e-12, 7.8154369496482765e-16, 2969.0, 0.0030272433068603277, -4.079155587533023e-06, 1.145122552337341e-09, -4.079155587533023e-06, 7.331562912327172e-09, -2.3157179299126973e-12, 1.145122552337341e-09, -2.3157179299126973e-12, 7.802284116164193e-16, 2970.0, 0.003026225371286273, -4.0764107325230725e-06, 1.1439665881241012e-09, -4.0764107325230725e-06, 7.324161277466601e-09, -2.312601065507236e-12, 1.1439665881241012e-09, -2.312601065507236e-12, 7.789157752459712e-16, 2971.0, 0.003025208367034793, -4.073668605997227e-06, 1.1428122892453985e-09, -4.073668605997227e-06, 7.3167698566578565e-09, -2.309489188431768e-12, 1.1428122892453985e-09, -2.309489188431768e-12, 7.776057858534832e-16, 2972.0, 0.0030241918284446, -4.070929207955487e-06, 1.1416594336566277e-09, -4.070929207955487e-06, 7.309388205811729e-09, -2.3063827323671626e-12, 1.1416594336566277e-09, -2.3063827323671626e-12, 7.762984434389554e-16, 2973.0, 0.0030231759883463383, -4.068192538397852e-06,1.1405082434023939e-09, -4.068192538397852e-06, 7.302016324928218e-09, -2.303281480472985e-12, 1.1405082434023939e-09, -2.303281480472985e-12, 7.749937480023878e-16, 2974.0, 0.0030221606139093637, -4.065459052071674e-06, 1.139358496438092e-09, -4.065459052071674e-06, 7.294654214007323e-09, -2.3001854327492355e-12, 1.139358496438092e-09, -2.3001854327492355e-12, 7.736916995437803e-16, 2975.0, 0.003021146170794964, -4.06272783948225e-06, 1.1382103037860247e-09,-4.06272783948225e-06, 7.287302317138256e-09, -2.297094589195914e-12, 1.1382103037860247e-09, -2.297094589195914e-12, 7.723922451235738e-16, 2976.0, 0.003020132426172495, -4.059999810124282e-06, 1.1370636654461919e-09, -4.059999810124282e-06, 7.279960634321014e-09, -2.2940087329725856e-12, 1.1370636654461919e-09, -2.2940087329725856e-12, 7.710953847417682e-16, 2977.0, 0.003019119380041957, -4.057274054503068e-06, 1.1359185814185935e-09, -4.057274054503068e-06, 7.27262827737718e-09, -2.2909282977601197e-12, 1.1359185814185935e-09, -2.2909282977601197e-12, 7.698011713379229e-16, 2978.0, 0.0030181067995727062, -4.054551482113311e-06, 1.1347750517032296e-09, -4.054551482113311e-06, 7.265305690395962e-09, -2.287853066718082e-12, 1.1347750517032296e-09, -2.287853066718082e-12, 7.685095519724785e-16, 2979.0, 0.00301709515042603, -4.051831183460308e-06, 1.1336330763001001e-09, -4.051831183460308e-06, 7.257993317466571e-09, -2.2847828230060374e-12, 1.1336330763001001e-09, -2.2847828230060374e-12, 7.672205795849942e-16, 2980.0, 0.0030160839669406414, -4.049114068038762e-06, 1.1324926552092052e-09, -4.049114068038762e-06, 7.250690714499797e-09, -2.281717783464421e-12, 1.1324926552092052e-09, -2.281717783464421e-12, 7.659341482963518e-16, 2981.0, 0.0030150734819471836, -4.04639968110132e-06, 1.1313536774082422e-09, -4.04639968110132e-06, 7.243397881495639e-09, -2.2786579480932323e-12, 1.1313536774082422e-09, -2.2786579480932323e-12, 7.646503110461103e-16, 2982.0, 0.0030140639282763004, -4.0436875679006334e-06, 1.1302162539195137e-09, -4.0436875679006334e-06, 7.236114374364888e-09, -2.275603100052037e-12, 1.1302162539195137e-09, -2.275603100052037e-12, 7.633690678342697e-16, 2983.0, 0.0030130548402667046, -4.040978637931403e-06, 1.1290803847430197e-09, -4.040978637931403e-06, 7.228841081285964e-09, -2.27255345618127e-12,1.1290803847430197e-09, -2.27255345618127e-12, 7.62090365721271e-16, 2984.0, 0.0030120464507490396, -4.0382719816989265e-06, 1.1279459588564578e-09, -4.0382719816989265e-06, 7.221577558169656e-09, -2.2695090164809306e-12, 1.1279459588564578e-09, -2.2695090164809306e-12, 7.608142576466732e-16, 2985.0, 0.0030110387597233057, -4.0355685086979065e-06, 1.1268130872821303e-09, -4.0355685086979065e-06, 7.214323360926755e-09, -2.2664695641105848e-12, 1.1268130872821303e-09,-2.2664695641105848e-12, 7.595407436104763e-16, 2986.0, 0.003010031534358859, -4.032867309433641e-06, 1.1256817700200372e-09, -4.032867309433641e-06, 7.207079377735681e-09, -2.263435315910667e-12, 1.1256817700200372e-09, -2.263435315910667e-12, 7.582697706731212e-16, 2987.0, 0.003009025240316987, -4.0301692934008315e-06, 1.1245520070701787e-09, -4.0301692934008315e-06, 7.199844720418014e-09, -2.260405838200308e-12, 1.1245520070701787e-09, -2.260405838200308e-12, 7.570013388346079e-16, 2988.0, 0.003008019644767046, -4.0274735511047766e-06, 1.1234236874102521e-09, -4.0274735511047766e-06, 7.192619833062963e-09, -2.2573817815008113e-12, 1.1234236874102521e-09, -2.2573817815008113e-12, 7.557354480949364e-16, 2989.0, 0.0030070145148783922, -4.024780992040178e-06, 1.1222968110402576e-09, -4.024780992040178e-06, 7.185404715670529e-09, -2.2543624952908736e-12, 1.1222968110402576e-09, -2.2543624952908736e-12, 7.544720984541066e-16, 2990.0, 0.003006010316312313, -4.0220907067123335e-06, 1.1211714889824975e-09, -4.0220907067123335e-06, 7.178199368240712e-09, -2.251348413251364e-12, 1.1211714889824975e-09, -2.251348413251364e-12, 7.532112899121186e-16, 2991.0, 0.0030050065834075212, -4.0194031498685945e-06, 1.120047721236972e-09, -4.0194031498685945e-06, 7.1710033466843015e-09, -2.2483393185418477e-12, 1.120047721236972e-09, -2.2483393185418477e-12, 7.519529695294131e-16, 2992.0, 0.0030040035489946604, -4.016718776256312e-06, 1.1189253967813784e-09, -4.016718776256312e-06, 7.163817095090508e-09, -2.2453354280027593e-12, 1.1189253967813784e-09, -2.2453354280027593e-12, 7.506971902455494e-16, 2993.0, 0.0030030012130737305, -4.014036676380783e-06, 1.1178046266380193e-09, -4.014036676380783e-06, 7.156640613459331e-09, -2.24233630795323e-12, 1.1178046266380193e-09, -2.24233630795323e-12, 7.494439520605274e-16, 2994.0, 0.0030019995756447315, -4.01135730498936e-06, 1.1166854108068947e-09, -4.01135730498936e-06, 7.149473457701561e-09, -2.2393423920741284e-12, 1.1166854108068947e-09, -2.2393423920741284e-12, 7.481932020347881e-16, 2995.0, 0.0030009986367076635, -4.0086806620820425e-06, 1.1155675272433996e-09, -4.0086806620820425e-06, 7.142315627817197e-09, -2.236353246684586e-12, 1.1155675272433996e-09, -2.236353246684586e-12, 7.469449931078904e-16, 2996.0, 0.002999998163431883, -4.006006292911479e-06, 1.114451197992139e-09, -4.006006292911479e-06, 7.1351680119846606e-09, -2.2333693054654713e-12, 1.114451197992139e-09, -2.2333693054654713e-12, 7.456992194007162e-16, 2997.0, 0.002998998621478677, -4.003335106972372e-06, 1.1133364230531129e-09, -4.003335106972372e-06, 7.128029277936321e-09, -2.2303901347359156e-12, 1.1133364230531129e-09, -2.2303901347359156e-12, 7.444559867923837e-16, 2998.0, 0.002997999545186758, -4.00066664951737e-06,1.1122230914040188e-09, -4.00066664951737e-06, 7.120900313850598e-09, -2.227416168176788e-12, 1.1122230914040188e-09, -2.227416168176788e-12, 7.432152423433337e-16, 2999.0, 0.0029970011673867702, -3.998000465799123e-06, 1.1111112030448567e-09, -3.998000465799123e-06, 7.113781119727491e-09, -2.224446972107219e-12, 1.1111112030448567e-09, -2.224446972107219e-12, 7.419769331140072e-16, 3000.0, 0.0029960034880787134, -3.995337010564981e-06, 1.110000868997929e-09,-3.995337010564981e-06, 7.106671251477792e-09, -2.2214827633676437e-12, 1.110000868997929e-09, -2.2214827633676437e-12, 7.407411649835223e-16, 3001.0, 0.0029950065072625875, -3.992676283814944e-06, 1.1088919782409334e-09, -3.992676283814944e-06, 7.099570709101499e-09, -2.2185235419580618e-12, 1.1088919782409334e-09, -2.2185235419580618e-12, 7.395078320727609e-16, 3002.0, 0.0029940102249383926, -3.990018285549013e-06, 1.1077845307738698e-09, -3.990018285549013e-06, 7.0924794925986134e-09, -2.2155690910380388e-12, 1.1077845307738698e-09, -2.2155690910380388e-12, 7.382769343817228e-16, 3003.0, 0.0029930146411061287, -3.987363015767187e-06, 1.1066786376190407e-09, -3.987363015767187e-06, 7.085398046058344e-09, -2.2126196274480092e-12, 1.1066786376190407e-09, -2.2126196274480092e-12, 7.370485248499672e-16, 3004.0, 0.002992019522935152, -3.984710474469466e-06, 1.1055741877541436e-09, -3.984710474469466e-06, 7.078325925391482e-09, -2.209675151187973e-12, 1.1055741877541436e-09, -2.209675151187973e-12, 7.35822550537935e-16, 3005.0, 0.0029910251032561064, -3.9820602069085e-06, 1.1044711811791785e-09, -3.9820602069085e-06, 7.071263130598027e-09, -2.2067356622579304e-12, 1.1044711811791785e-09, -2.2067356622579304e-12, 7.345990643851854e-16, 3006.0, 0.0029900313820689917, -3.979412667831639e-06, 1.1033696178941454e-09, -3.979412667831639e-06, 7.064210105767188e-09, -2.203800726977012e-12, 1.1033696178941454e-09, -2.203800726977012e-12, 7.333779605125999e-16, 3007.0, 0.002989038359373808, -3.976767857238883e-06, 1.1022694978990444e-09, -3.976767857238883e-06, 7.057165962720546e-09, -2.2008709958665218e-12, 1.1022694978990444e-09, -2.2008709958665218e-12, 7.32159344799297e-16, 3008.0, 0.002988046035170555, -3.974125775130233e-06, 1.1011709322161778e-09, -3.974125775130233e-06, 7.0501311455473115e-09, -2.1979460352455904e-12,1.1011709322161778e-09, -2.1979460352455904e-12, 7.309431113661582e-16, 3009.0, 0.0029870544094592333, -3.971486421505688e-06, 1.1000738098232432e-09, -3.971486421505688e-06, 7.043106098336693e-09, -2.195025845114218e-12, 1.1000738098232432e-09, -2.195025845114218e-12, 7.297293131527428e-16, 3010.0, 0.0029860632494091988, -3.968849341617897e-06, 1.0989781307202406e-09, -3.968849341617897e-06, 7.036090376999482e-09, -2.192110642312839e-12, 1.0989781307202406e-09,-2.192110642312839e-12, 7.285179501590508e-16, 3011.0, 0.002985072787851095, -3.966215444961563e-06, 1.09788389490717e-09, -3.966215444961563e-06, 7.029083537446468e-09, -2.189200210001019e-12, 1.09788389490717e-09, -2.189200210001019e-12, 7.273090223850821e-16, 3012.0, 0.0029840830247849226, -3.963583367294632e-06, 1.0967911023840315e-09, -3.963583367294632e-06, 7.02208646785607e-09, -2.1862945481787577e-12, 1.0967911023840315e-09, -2.1862945481787577e-12, 7.261024768912775e-16, 3013.0, 0.002983093960210681, -3.960954472859157e-06, 1.095699753150825e-09, -3.960954472859157e-06, 7.0150982800498696e-09, -2.1833936568460555e-12, 1.095699753150825e-09, -2.1833936568460555e-12, 7.248983136776371e-16, 3014.0, 0.0029821055941283703, -3.958328306907788e-06, 1.0946098472075505e-09, -3.958328306907788e-06, 7.008119418117076e-09, -2.1804977528433467e-12, 1.0946098472075505e-09, -2.1804977528433467e-12, 7.236965327441609e-16, 3015.0, 0.0029811179265379906, -3.955704414693173e-06, 1.093521384554208e-09, -3.955704414693173e-06, 7.001149882057689e-09, -2.177606619330197e-12, 1.093521384554208e-09, -2.177606619330197e-12, 7.22497187030408e-16, 3016.0, 0.002980130724608898, -3.9530832509626634e-06, 1.0924343651907975e-09, -3.9530832509626634e-06, 6.994189671871709e-09, -2.1747200394661714e-12, 1.0924343651907975e-09, -2.1747200394661714e-12, 7.213002235968193e-16, 3017.0, 0.0029791442211717367, -3.950464360968908e-06, 1.0913489001396215e-09, -3.950464360968908e-06, 6.987238787559136e-09, -2.1718384469321395e-12, 1.0913489001396215e-09, -2.1718384469321395e-12, 7.201055895038355e-16, 3018.0, 0.0029781584162265062, -3.947848654206609e-06, 1.090264767356075e-09, -3.947848654206609e-06, 6.9802967850307596e-09, -2.1689616248876664e-12, 1.090264767356075e-09, -2.1689616248876664e-12, 7.18913390630575e-16, 3019.0, 0.0029771733097732067, -3.945235221181065e-06, 1.0891820778624606e-09, -3.945235221181065e-06, 6.97336410837579e-09, -2.1660895733327523e-12, 1.0891820778624606e-09, -2.1660895733327523e-12, 7.177235210979196e-16, 3020.0, 0.0029761886689811945, -3.942624516639626e-06, 1.0881008316587781e-09, -3.942624516639626e-06, 6.966440757594228e-09, -2.163222292267397e-12, 1.0881008316587781e-09, -2.163222292267397e-12, 7.165360338454282e-16, 3021.0, 0.002975204959511757, -3.940016085834941e-06, 1.0870209177227252e-09, -3.940016085834941e-06, 6.959526288596862e-09, -2.1603595648511664e-12, 1.0870209177227252e-09, -2.1603595648511664e-12, 7.153508759335419e-16, 3022.0, 0.0029742217157036066, -3.9374103835143615e-06, 1.0859425580989068e-09, -3.9374103835143615e-06, 6.952621145472904e-09, -2.157501824764929e-12, 1.0859425580989068e-09, -2.157501824764929e-12, 7.141681003018196e-16, 3023.0, 0.0029732391703873873, -3.934807409677887e-06,1.0848656417650204e-09, -3.934807409677887e-06, 6.945725328222352e-09, -2.1546486383278163e-12, 1.0848656417650204e-09, -2.1546486383278163e-12, 7.129876540107024e-16, 3024.0, 0.0029722570907324553, -3.9322071643255185e-06, 1.0837900576987636e-09, -3.9322071643255185e-06, 6.938838392755997e-09, -2.1518002223802624e-12, 1.0837900576987636e-09, -2.1518002223802624e-12, 7.1180953706019e-16, 3025.0, 0.002971275942400098, -3.929609192709904e-06, 1.0827159169224387e-09,-3.929609192709904e-06, 6.931960783163049e-09, -2.1489565769222674e-12, 1.0827159169224387e-09, -2.1489565769222674e-12, 7.106338023898419e-16, 3026.0, 0.0029702952597290277, -3.927013949578395e-06, 1.081643219436046e-09, -3.927013949578395e-06, 6.925092055354298e-09, -2.146117485113397e-12, 1.081643219436046e-09, -2.146117485113397e-12, 7.094603441205394e-16, 3027.0, 0.0029693152755498886, -3.9244209801836405e-06, 1.080571965239585e-09, -3.9244209801836405e-06, 6.918232209329744e-09, -2.1432831637940852e-12, 1.080571965239585e-09, -2.1432831637940852e-12, 7.08289215191842e-16, 3028.0, 0.0029683359898626804, -3.921831194020342e-06, 1.0795020433107538e-09, -3.921831194020342e-06, 6.911381689178597e-09, -2.1404536129643326e-12, 1.0795020433107538e-09, -2.1404536129643326e-12, 7.071204156037494e-16, 3029.0, 0.0029673574026674032, -3.919243226846447e-06, 1.0784335646718546e-09, -3.919243226846447e-06, 6.904540050811647e-09, -2.1376286157837043e-12, 1.0784335646718546e-09, -2.1376286157837043e-12, 7.059539453562619e-16, 3030.0, 0.0029663792811334133, -3.9166584429040086e-06, 1.0773665293228873e-09, -3.9166584429040086e-06, 6.897707738318104e-09, -2.1348081722522005e-12, 1.0773665293228873e-09, -2.1348081722522005e-12, 7.047898044493792e-16, 3031.0, 0.0029654018580913544, -3.914075932698324e-06, 1.0763009372638521e-09, -3.914075932698324e-06, 6.890884307608758e-09, -2.1319924992102557e-12, 1.0763009372638521e-09, -2.1319924992102557e-12, 7.036278870039831e-16, 3032.0, 0.0029644251335412264, -3.911496150976745e-06, 1.0752366774724464e-09, -3.911496150976745e-06, 6.884069758683609e-09, -2.1291815966578698e-12, 1.0752366774724464e-09, -2.1291815966578698e-12, 7.024683518387512e-16, 3033.0, 0.0029634491074830294, -3.908918642991921e-06, 1.0741738609709728e-09, -3.908918642991921e-06, 6.877264091542656e-09, -2.1263752477546083e-12,1.0741738609709728e-09, -2.1263752477546083e-12, 7.013110401350058e-16, 3034.0, 0.0029624735470861197, -3.906343863491202e-06, 1.0731123767371287e-09, -3.906343863491202e-06, 6.870467750275111e-09, -2.1235734525004712e-12, 1.0731123767371287e-09, -2.1235734525004712e-12, 7.001560577718654e-16, 3035.0, 0.002961498685181141, -3.903771357727237e-06, 1.0720523357932166e-09, -3.903771357727237e-06, 6.863679846702553e-09, -2.1207762108954586e-12, 1.0720523357932166e-09,-2.1207762108954586e-12, 6.990033518097707e-16, 3036.0, 0.002960524521768093, -3.901201580447378e-06, 1.0709937381392365e-09, -3.901201580447378e-06, 6.8569012690034015e-09, -2.117983739780005e-12, 1.0709937381392365e-09, -2.117983739780005e-12, 6.978529222487217e-16, 3037.0, 0.0029595510568469763, -3.8986345316516235e-06, 1.069936472752886e-09, -3.8986345316516235e-06, 6.850131573088447e-09, -2.1151956054732413e-12, 1.069936472752886e-09, -2.1151956054732413e-12, 6.967047690887185e-16, 3038.0, 0.0029585780575871468, -3.896069756592624e-06, 1.0688806506564674e-09, -3.896069756592624e-06, 6.84337075895769e-09, -2.1124122416560365e-12, 1.0688806506564674e-09, -2.1124122416560365e-12, 6.955588923297611e-16, 3039.0, 0.002957605989649892, -3.8935077100177296e-06, 1.0678261608276785e-09, -3.8935077100177296e-06, 6.836618826611129e-09, -2.109633431487956e-12, 1.0678261608276785e-09, -2.109633431487956e-12, 6.944152390322901e-16, 3040.0, 0.0029566343873739243, -3.89094793717959e-06, 1.0667731142888215e-09, -3.89094793717959e-06, 6.829875776048766e-09, -2.1068591749690002e-12, 1.0667731142888215e-09, -2.1068591749690002e-12, 6.93273862135865e-16, 3041.0, 0.002955663250759244, -3.888390892825555e-06, 1.065721400017594e-09, -3.888390892825555e-06, 6.8231416072706e-09, -2.1040894720991687e-12, 1.065721400017594e-09, -2.1040894720991687e-12, 6.921347087009264e-16, 3042.0, 0.0029546930454671383, -3.885836576955626e-06, 1.0646710180139962e-09, -3.885836576955626e-06, 6.81641632027663e-09, -2.1013245397188962e-12, 1.0646710180139962e-09, -2.1013245397188962e-12, 6.909978316670335e-16, 3043.0, 0.00295372330583632, -3.883284534822451e-06, 1.0636220793003304e-09, -3.883284534822451e-06, 6.809699470977648e-09, -2.0985639441473136e-12, 1.0636220793003304e-09, -2.0985639441473136e-12, 6.898631780946271e-16, 3044.0, 0.0029527542646974325, -3.8807347664260305e-06, 1.0625745838765965e-09, -3.8807347664260305e-06, 6.802991947552073e-09, -2.0958079022248555e-12, 1.0625745838765965e-09, -2.0958079022248555e-12, 6.887308009232665e-16, 3045.0, 0.0029517856892198324, -3.8781877265137155e-06, 1.0615284207204922e-09, -3.8781877265137155e-06, 6.796292861821485e-09, -2.0930561971110873e-12, 1.0615284207204922e-09, -2.0930561971110873e-12, 6.876005942738333e-16, 3046.0, 0.002950818045064807, -3.875643415085506e-06, 1.0604835898320175e-09, -3.875643415085506e-06, 6.789603101964303e-09, -2.090309262486878e-12, 1.0604835898320175e-09, -2.090309262486878e-12, 6.864726640254458e-16, 3047.0, 0.0029498508665710688, -3.87310137739405e-06, 1.0594400912111723e-09, -3.87310137739405e-06, 6.782921779802109e-09, -2.0875666646713587e-12, 1.0594400912111723e-09, -2.0875666646713587e-12, 6.853469042989856e-16, 3048.0, 0.0029488843865692616, -3.8705616134393495e-06,1.0583980358802592e-09, -3.8705616134393495e-06, 6.776249339424112e-09, -2.0848286205049638e-12, 1.0583980358802592e-09, -2.0848286205049638e-12, 6.842234209735712e-16, 3049.0, 0.0029479183722287416, -3.868024577968754e-06, 1.0573573128169755e-09, -3.868024577968754e-06, 6.769585336741102e-09, -2.0820951299876933e-12, 1.0573573128169755e-09, -2.0820951299876933e-12, 6.831021081700841e-16, 3050.0, 0.0029469530563801527, -3.865490270982264e-06, 1.056318033043624e-09,-3.865490270982264e-06, 6.762930215842289e-09, -2.0793661931195473e-12, 1.056318033043624e-09, -2.0793661931195473e-12, 6.819829658885244e-16, 3051.0, 0.0029459884390234947, -3.862958237732528e-06, 1.0552799745155994e-09, -3.862958237732528e-06, 6.756283976727673e-09, -2.0766415930600912e-12, 1.0552799745155994e-09, -2.0766415930600912e-12, 6.808661000080104e-16, 3052.0, 0.0029450245201587677, -3.860428478219546e-06, 1.054243359277507e-09, -3.860428478219546e-06, 6.749646175308044e-09, -2.073921329809325e-12, 1.054243359277507e-09, -2.073921329809325e-12, 6.797513517098645e-16, 3053.0, 0.002944061066955328, -3.85790144719067e-06, 1.053208076307044e-09, -3.85790144719067e-06, 6.743017255672612e-09, -2.071205837048118e-12, 1.053208076307044e-09, -2.071205837048118e-12, 6.786388268732052e-16, 3054.0, 0.0029430983122438192, -3.855376689898549e-06, 1.052174236626513e-09, -3.855376689898549e-06, 6.736397217821377e-09, -2.068494464255166e-12, 1.052174236626513e-09, -2.068494464255166e-12, 6.775285254980324e-16, 3055.0, 0.0029421362560242414, -3.852854661090532e-06, 1.0511416181913091e-09, -3.852854661090532e-06, 6.729785617665129e-09, -2.065787645111339e-12, 1.0511416181913091e-09, -2.065787645111339e-12, 6.764203417052278e-16, 3056.0, 0.0029411748982965946, -3.85033490601927e-06, 1.0501104430460373e-09, -3.85033490601927e-06, 6.723182455203869e-09, -2.063085379616636e-12, 1.0501104430460373e-09, -2.063085379616636e-12, 6.753143813739097e-16, 3057.0, 0.002940214006230235, -3.847817879432114e-06, 1.049080600168395e-09, -3.847817879432114e-06, 6.716588174526805e-09, -2.060387450930623e-12, 1.049080600168395e-09, -2.060387450930623e-12, 6.742105386249597e-16, 3058.0, 0.0029392538126558065, -3.845303126581712e-06, 1.0480520895583822e-09, -3.845303126581712e-06, 6.710002331544729e-09, -2.0576938590533e-12,1.0480520895583822e-09, -2.0576938590533e-12, 6.731089193374963e-16, 3059.0, 0.0029382940847426653, -3.842791102215415e-06, 1.047024911215999e-09, -3.842791102215415e-06, 6.703425370346849e-09, -2.0550048208251015e-12, 1.047024911215999e-09, -2.0550048208251015e-12, 6.72009417632401e-16, 3060.0, 0.002937335055321455, -3.840280896838522e-06, 1.0459990651412454e-09, -3.840280896838522e-06, 6.696856846843957e-09, -2.052320119405593e-12, 1.0459990651412454e-09,-2.052320119405593e-12, 6.70912086449233e-16, 3061.0, 0.0029363767243921757, -3.8377738746930845e-06, 1.0449746623564238e-09, -3.8377738746930845e-06, 6.690297205125262e-09, -2.0496397547947742e-12, 1.0449746623564238e-09, -2.0496397547947742e-12, 6.698168728484332e-16, 3062.0, 0.0029354190919548273, -3.835269126284402e-06, 1.0439514808169292e-09, -3.835269126284402e-06, 6.683745557012344e-09, -2.0469637269926455e-12, 1.0439514808169292e-09, -2.0469637269926455e-12, 6.687238297695608e-16, 3063.0, 0.0029344619251787663, -3.832766651612474e-06, 1.0429296315450642e-09, -3.832766651612474e-06, 6.677202790683623e-09, -2.0442920359992067e-12, 1.0429296315450642e-09, -2.0442920359992067e-12, 6.676329572126156e-16, 3064.0, 0.002933505456894636, -3.8302664506773e-06, 1.0419092255631313e-09, -3.8302664506773e-06, 6.670668462049889e-09, -2.041624681814458e-12, 1.0419092255631313e-09, -2.041624681814458e-12, 6.665441492984794e-16, 3065.0, 0.002932549687102437, -3.827768978226231e-06, 1.0408900408265254e-09, -3.827768978226231e-06, 6.664143015200352e-09, -2.0389618812788335e-12, 1.0408900408265254e-09, -2.0389618812788335e-12, 6.654575119062706e-16, 3066.0, 0.002931594382971525, -3.825273779511917e-06, 1.039872188357549e-09, -3.825273779511917e-06, 6.657625561956593e-09, -2.0363032007114645e-12, 1.039872188357549e-09, -2.0363032007114645e-12, 6.643729920964298e-16, 3067.0, 0.0029306397773325443, -3.822781309281709e-06, 1.0388556681562022e-09, -3.822781309281709e-06, 6.65111699049703e-09, -2.03364907379322e-12, 1.0388556681562022e-09, -2.03364907379322e-12, 6.632906428085165e-16, 3068.0, 0.0029296858701854944, -3.820291112788254e-06, 1.0378405912447874e-09, -3.820291112788254e-06, 6.644616412643245e-09, -2.030999066843231e-12, 1.0378405912447874e-09, -2.030999066843231e-12, 6.62210358163412e-16, 3069.0, 0.002928732428699732, -3.8178031900315545e-06, 1.0368267355786998e-09, -3.8178031900315545e-06, 6.638124716573657e-09, -2.0283536135423663e-12, 1.0368267355786998e-09, -2.0283536135423663e-12, 6.611321911006757e-16, 3070.0, 0.0029277796857059, -3.81531799575896e-06, 1.0358142121802416e-09, -3.81531799575896e-06, 6.631641458199056e-09, -2.025712280209757e-12, 1.0358142121802416e-09, -2.025712280209757e-12, 6.600560886807483e-16, 3071.0, 0.0029268276412039995, -3.81283507522312e-06, 1.034803021049413e-09, -3.81283507522312e-06, 6.625166637519442e-09, -2.023075283685838e-12, 1.034803021049413e-09, -2.023075283685838e-12, 6.589821567827483e-16, 3072.0, 0.002925876062363386, -3.8103544284240343e-06, 1.0337930511639115e-09, -3.8103544284240343e-06, 6.618700254534815e-09, -2.020442407130174e-12, 1.0337930511639115e-09, -2.020442407130174e-12, 6.579102895275571e-16, 3073.0, 0.0029249251820147038, -3.807876510109054e-06,1.032784524568342e-09, -3.807876510109054e-06, 6.6122418651559656e-09, -2.0178140842236347e-12, 1.032784524568342e-09, -2.0178140842236347e-12, 6.568405398547342e-16, 3074.0, 0.0029239750001579523, -3.805400865530828e-06, 1.0317772192180996e-09, -3.805400865530828e-06, 6.605792357561313e-09, -2.015189881285351e-12, 1.0317772192180996e-09, -2.015189881285351e-12, 6.557728548247201e-16, 3075.0, 0.002923025283962488, -3.8029274946893565e-06, 1.0307712461354868e-09,-3.8029274946893565e-06, 6.599351287661648e-09, -2.012570015155757e-12, 1.0307712461354868e-09, -2.012570015155757e-12, 6.54707234437515e-16, 3076.0, 0.002922076266258955, -3.800456624958315e-06, 1.0297666053205035e-09, -3.800456624958315e-06, 6.59291821136776e-09, -2.0099542689944183e-12, 1.0297666053205035e-09, -2.0099542689944183e-12, 6.536436786931188e-16, 3077.0, 0.002921127947047353, -3.797988256337703e-06, 1.0287632967731497e-09, -3.797988256337703e-06, 6.586493572768859e-09, -2.0073430764822042e-12, 1.0287632967731497e-09, -2.0073430764822042e-12, 6.525822405310908e-16, 3078.0, 0.002920180093497038, -3.795522161453846e-06, 1.027761209471123e-09, -3.795522161453846e-06, 6.580077371864945e-09, -2.004735787097811e-12, 1.027761209471123e-09, -2.004735787097811e-12, 6.515228670118717e-16, 3079.0, 0.002919232938438654, -3.7930585676804185e-06, 1.026760454436726e-09, -3.7930585676804185e-06, 6.573669608656019e-09, -2.002132834522108e-12, 1.026760454436726e-09, -2.002132834522108e-12, 6.504655581354615e-16, 3080.0, 0.0029182862490415573, -3.790597475017421e-06, 1.0257610316699584e-09, -3.790597475017421e-06, 6.5672698390528694e-09, -1.9995342187550946e-12, 1.0257610316699584e-09, -1.9995342187550946e-12, 6.49410260962301e-16, 3081.0, 0.0029173402581363916, -3.788138656091178e-06, 1.0247629411708203e-09, -3.788138656091178e-06, 6.560878951233917e-09, -1.996939722956337e-12, 1.0247629411708203e-09, -1.996939722956337e-12, 6.483570813715087e-16, 3082.0, 0.002916394965723157, -3.785682110901689e-06, 1.0237660719170094e-09, -3.785682110901689e-06, 6.554496057020742e-09, -1.994349563966269e-12, 1.0237660719170094e-09, -1.994349563966269e-12, 6.473059134839661e-16, 3083.0, 0.002915450371801853, -3.7832280668226304e-06, 1.022770534930828e-09, -3.7832280668226304e-06, 6.5481211564133446e-09, -1.991763308104022e-12,1.022770534930828e-09, -1.991763308104022e-12, 6.462567572996733e-16, 3084.0, 0.0029145062435418367, -3.780776296480326e-06, 1.0217762191899737e-09, -3.780776296480326e-06, 6.541754693500934e-09, -1.9891816058908995e-12, 1.0217762191899737e-09, -1.9891816058908995e-12, 6.452097186977486e-16, 3085.0, 0.0029135625809431076, -3.7783270272484515e-06, 1.020783235716749e-09, -3.7783270272484515e-06, 6.535396668283511e-09, -1.986603806805598e-12, 1.020783235716749e-09,-1.986603806805598e-12, 6.441646388595144e-16, 3086.0, 0.0029126196168363094, -3.775880259127007e-06, 1.0197915845111538e-09, -3.775880259127007e-06, 6.529046636671865e-09, -1.9840303445289864e-12, 1.0197915845111538e-09, -1.9840303445289864e-12, 6.431216236640891e-16, 3087.0, 0.0029116773512214422, -3.7734357647423167e-06, 1.0188011545508857e-09, -3.7734357647423167e-06, 6.522705042755206e-09, -1.9814610022206303e-12, 1.0188011545508857e-09, -1.9814610022206303e-12, 6.420806731114728e-16, 3088.0, 0.002910735784098506, -3.770993544094381e-06, 1.0178120568582472e-09, -3.770993544094381e-06, 6.516371442444324e-09, -1.9788957798805296e-12, 1.0178120568582472e-09, -1.9788957798805296e-12, 6.41041681322547e-16, 3089.0, 0.002909794682636857, -3.768553824556875e-06, 1.0168241804109357e-09, -3.768553824556875e-06, 6.51004627982843e-09, -1.9763346775086843e-12, 1.0168241804109357e-09, -1.9763346775086843e-12, 6.400047541764301e-16, 3090.0, 0.002908854279667139, -3.7661163787561236e-06, 1.0158376362312538e-09, -3.7661163787561236e-06, 6.503729110818313e-09, -1.9737776951050945e-12, 1.0158376362312538e-09, -1.9737776951050945e-12, 6.389697857940037e-16, 3091.0, 0.0029079143423587084, -3.7636812066921266e-06, 1.014852313296899e-09, -3.7636812066921266e-06, 6.497419935413973e-09, -1.9712250495101946e-12, 1.014852313296899e-09, -1.9712250495101946e-12, 6.379368820543863e-16, 3092.0, 0.0029069751035422087, -3.7612485357385594e-06, 1.0138683226301737e-09, -3.7612485357385594e-06, 6.49111919770462e-09, -1.9686763070431157e-12, 1.0138683226301737e-09, -1.9686763070431157e-12, 6.369059370784594e-16, 3093.0, 0.00290603656321764, -3.7588181385217467e-06, 1.0128855532087755e-09, -3.7588181385217467e-06, 6.4848268976902546e-09, -1.9661316845442922e-12, 1.0128855532087755e-09, -1.9661316845442922e-12, 6.358770038057823e-16, 3094.0, 0.0029050984885543585, -3.756390242415364e-06, 1.0119041160550069e-09, -3.756390242415364e-06, 6.4785421471924565e-09, -1.9635913988541587e-12, 1.0119041160550069e-09, -1.9635913988541587e-12, 6.348500822363548e-16, 3095.0, 0.002904161112383008, -3.7539646200457355e-06, 1.0109239001465653e-09, -3.7539646200457355e-06, 6.4722658343896455e-09, -1.961055016291846e-12, 1.0109239001465653e-09, -1.961055016291846e-12, 6.338251194306179e-16, 3096.0, 0.002903224201872945, -3.7515412714128615e-06, 1.0099449054834508e-09, -3.7515412714128615e-06, 6.465997515192612e-09, -1.958522753697789e-12, 1.0099449054834508e-09, -1.958522753697789e-12, 6.328021683281307e-16, 3097.0, 0.0029022879898548126, -3.7491204238904174e-06, 1.008967243087966e-09, -3.7491204238904174e-06, 6.4597371896013556e-09, -1.9559946110719872e-12, 1.008967243087966e-09, -1.9559946110719872e-12, 6.317812289288933e-16, 3098.0, 0.0029013522434979677, -3.7467018501047278e-06,1.007990801937808e-09, -3.7467018501047278e-06, 6.453485301705086e-09, -1.953470588414441e-12, 1.007990801937808e-09, -1.953470588414441e-12, 6.307621953537872e-16, 3099.0, 0.0029004174284636974, -3.7442855500557926e-06, 1.0070156930552798e-09, -3.7442855500557926e-06, 6.447240963325385e-09, -1.9509504688847157e-12, 1.0070156930552798e-09, -1.9509504688847157e-12, 6.297451734819308e-16, 3100.0, 0.002899482846260071, -3.741871751117287e-06, 1.0060416943957762e-09,-3.741871751117287e-06, 6.44100506264067e-09, -1.9484346861636803e-12, 1.0060416943957762e-09, -1.9484346861636803e-12, 6.287301103737649e-16, 3101.0, 0.002898549195379019, -3.739459998541861e-06, 1.0050691390262045e-09, -3.739459998541861e-06, 6.434777155561733e-09, -1.945922806570466e-12, 1.0050691390262045e-09, -1.945922806570466e-12, 6.277170060292896e-16, 3102.0, 0.002897616010159254, -3.7370507470768644e-06, 1.0040976938796575e-09, -3.7370507470768644e-06, 6.428557242088573e-09, -1.9434148301050724e-12, 1.0040976938796575e-09, -1.9434148301050724e-12, 6.267058604485047e-16, 3103.0, 0.0028966832906007767, -3.7346439967222977e-06, 1.00312758100074e-09, -3.7346439967222977e-06, 6.42234532222119e-09, -1.940911190448369e-12, 1.00312758100074e-09, -1.940911190448369e-12, 6.256966736314104e-16, 3104.0, 0.0028957512695342302, -3.73223929273081e-06, 1.0021586893671497e-09, -3.73223929273081e-06, 6.416141395959585e-09, -1.9384114539194863e-12, 1.0021586893671497e-09, -1.9384114539194863e-12, 6.246894455780067e-16, 3105.0, 0.0028948199469596148, -3.7298370898497524e-06, 1.0011910189788864e-09, -3.7298370898497524e-06, 6.409945463303757e-09, -1.9359156205184247e-12, 1.0011910189788864e-09, -1.9359156205184247e-12, 6.236841762882934e-16, 3106.0, 0.0028938890900462866, -3.727437160705449e-06, 1.0002245698359502e-09, -3.727437160705449e-06, 6.403757524253706e-09, -1.9334239070856185e-12, 1.0002245698359502e-09, -1.9334239070856185e-12, 6.226808128227115e-16, 3107.0, 0.0028929589316248894, -3.7250395052979e-06, 9.992594529606436e-10, -3.7250395052979e-06, 6.3975775788094325e-09, -1.9309360967806333e-12, 9.992594529606436e-10, -1.9309360967806333e-12, 6.216793551812609e-16, 3108.0, 0.0028920292388647795, -3.7226441236271057e-06, 9.98295557330664e-10, -3.7226441236271057e-06, 6.391405626970936e-09, -1.9284524064439035e-12,9.98295557330664e-10, -1.9284524064439035e-12, 6.2067990924306e-16, 3109.0, 0.0028911002445966005, -3.7202510156930657e-06, 9.973328829460115e-10, -3.7202510156930657e-06, 6.3852412246490076e-09, -1.9259726192349946e-12, 9.973328829460115e-10, -1.9259726192349946e-12, 6.196823161894313e-16, 3110.0, 0.002890171715989709, -3.7178604088694556e-06, 9.963714298066861e-10, -3.7178604088694556e-06, 6.379085260022066e-09, -1.9234969519943412e-12, 9.963714298066861e-10,-1.9234969519943412e-12, 6.186866818994931e-16, 3111.0, 0.0028892438858747482, -3.7154718484089244e-06, 9.954111979126878e-10, -3.7154718484089244e-06, 6.372936844911692e-09, -1.9210251878815088e-12, 9.954111979126878e-10, -1.9210251878815088e-12, 6.176930063732454e-16, 3112.0, 0.0028883167542517185, -3.713085789058823e-06, 9.94452298286319e-10, -3.713085789058823e-06, 6.366796423407095e-09, -1.9185573268964973e-12, 9.94452298286319e-10, -1.9185573268964973e-12, 6.167011837315698e-16, 3113.0, 0.002887390088289976, -3.7107020034454763e-06, 9.93494508882975e-10, -3.7107020034454763e-06, 6.3606639955082755e-09, -1.9160935858797412e-12, 9.93494508882975e-10, -1.9160935858797412e-12, 6.157113198535847e-16, 3114.0, 0.0028864641208201647, -3.708320491568884e-06, 9.925380517472604e-10, -3.708320491568884e-06, 6.354539561215233e-09, -1.913633747990806e-12, 9.925380517472604e-10, -1.913633747990806e-12, 6.147233088601718e-16, 3115.0, 0.0028855386190116405, -3.705941253429046e-06, 9.915827048345704e-10, -3.705941253429046e-06, 6.3484226764387586e-09, -1.911177813229692e-12, 9.915827048345704e-10, -1.911177813229692e-12, 6.137372566304494e-16, 3116.0, 0.0028846138156950474, -3.7035642890259624e-06, 9.9062869018951e-10, -3.7035642890259624e-06, 6.342313785268061e-09, -1.9087257815963987e-12, 9.9062869018951e-10, -1.9087257815963987e-12, 6.127530572852991e-16, 3117.0, 0.0028836894780397415, -3.7011895983596332e-06, 9.896757857674743e-10, -3.7011895983596332e-06, 6.336212887703141e-09, -1.9062776530909264e-12, 9.896757857674743e-10, -1.9062776530909264e-12, 6.117707637642801e-16, 3118.0, 0.0028827658388763666, -3.698817408803734e-06, 9.88724213613068e-10, -3.698817408803734e-06, 6.330119539654788e-09, -1.9038336445537096e-12, 9.88724213613068e-10, -1.9038336445537096e-12, 6.107903760673924e-16, 3119.0, 0.0028818428982049227, -3.6964472656109137e-06, 9.87773862703989e-10, -3.6964472656109137e-06, 6.324034185212213e-09, -1.9013933223038793e-12, 9.87773862703989e-10, -1.9013933223038793e-12, 6.098118412550769e-16, 3120.0, 0.002880920423194766, -3.694079396154848e-06, 9.868246220179344e-10, -3.694079396154848e-06, 6.317956380286205e-09, -1.89895690318187e-12, 9.868246220179344e-10, -1.89895690318187e-12, 6.088352122668927e-16, 3121.0, 0.0028799984138458967, -3.6917138004355365e-06, 9.858767135995095e-10, -3.6917138004355365e-06, 6.311886568965974e-09, -1.896524604028116e-12, 9.858767135995095e-10, -1.896524604028116e-12, 6.078604361632806e-16, 3122.0, 0.0028790771029889584, -3.689350705826655e-06, 9.849299154041091e-10, -3.689350705826655e-06, 6.305824307162311e-09, -1.8940959911617483e-12, 9.849299154041091e-10, -1.8940959911617483e-12, 6.068875658837999e-16, 3123.0, 0.002878156490623951, -3.6869896575808525e-06,9.839844494763383e-10, -3.6869896575808525e-06, 6.299770038964425e-09, -1.8916714982636362e-12, 9.839844494763383e-10, -1.8916714982636362e-12, 6.059165484888912e-16, 3124.0, 0.002877236343920231, -3.6846308830718044e-06, 9.830400937715922e-10, -3.6846308830718044e-06, 6.2937237643723165e-09, -1.8892506916529106e-12, 9.830400937715922e-10, -1.8892506916529106e-12, 6.049473839785547e-16, 3125.0, 0.002876316662877798, -3.6822743822995108e-06, 9.820969593121731e-10,-3.6822743822995108e-06, 6.2876845952075655e-09, -1.886833788170006e-12, 9.820969593121731e-10, -1.886833788170006e-12, 6.039800723527903e-16, 3126.0, 0.0028753976803272963, -3.6799201552639715e-06, 9.811550460980811e-10, -3.6799201552639715e-06, 6.281653863737802e-09, -1.884420787814922e-12, 9.811550460980811e-10, -1.884420787814922e-12, 6.030146665511572e-16, 3127.0, 0.0028744793962687254, -3.6775682019651867e-06, 9.802143541293162e-10, -3.6775682019651867e-06, 6.275630237695395e-09, -1.8820116905876594e-12, 9.802143541293162e-10, -1.8820116905876594e-12, 6.02051060694537e-16, 3128.0, 0.002873561577871442, -3.6752185224031564e-06, 9.792748834058784e-10, -3.6752185224031564e-06, 6.2696146052587665e-09, -1.879606279647783e-12, 9.792748834058784e-10, -1.879606279647783e-12, 6.010893077224889e-16, 3129.0, 0.0028726444579660892, -3.6728711165778805e-06, 9.783365229054652e-10, -3.6728711165778805e-06, 6.263606522338705e-09, -1.8772047718357276e-12, 9.783365229054652e-10, -1.8772047718357276e-12, 6.00129407635013e-16, 3130.0, 0.002871727803722024, -3.670525984489359e-06, 9.773994946726816e-10, -3.670525984489359e-06, 6.257606433024421e-09, -1.8748071671514932e-12, 9.773994946726816e-10, -1.8748071671514932e-12, 5.991713604321092e-16, 3131.0, 0.0028708118479698896, -3.6681828987639165e-06, 9.764635766629226e-10, -3.6681828987639165e-06, 6.251613449137494e-09, -1.8724132487546452e-12, 9.764635766629226e-10, -1.8724132487546452e-12, 5.982151131742183e-16, 3132.0, 0.0028698963578790426, -3.665842314148904e-06, 9.755288798984907e-10, -3.665842314148904e-06, 6.245628458856345e-09, -1.870023233485618e-12, 9.755288798984907e-10, -1.870023233485618e-12, 5.972607188008995e-16, 3133.0, 0.0028689815662801266, -3.66350377589697e-06, 9.745952933570834e-10, -3.66350377589697e-06, 6.239651018091763e-09, -1.867637121344412e-12,9.745952933570834e-10, -1.867637121344412e-12, 5.963081773121528e-16, 3134.0, 0.002868067240342498, -3.661167511381791e-06, 9.736630390833056e-10, -3.661167511381791e-06, 6.233681126843749e-09, -1.8652546954905924e-12, 9.736630390833056e-10, -1.8652546954905924e-12, 5.953574357684191e-16, 3135.0, 0.0028671536128968, -3.658833520603366e-06, 9.727318950325525e-10, -3.658833520603366e-06, 6.2277192292015116e-09, -1.8628761727645937e-12, 9.727318950325525e-10,-1.8628761727645937e-12, 5.944084941696983e-16, 3136.0, 0.0028662404511123896, -3.656501803561696e-06, 9.71801861204824e-10, -3.656501803561696e-06, 6.221764436986632e-09, -1.8605013363259815e-12, 9.71801861204824e-10, -1.8605013363259815e-12, 5.934613525159903e-16, 3137.0, 0.00286532798781991, -3.65417236025678e-06, 9.70873159644725e-10, -3.65417236025678e-06, 6.21581763837753e-09, -1.85813040301519e-12, 9.70873159644725e-10, -1.85813040301519e-12, 5.925160637468545e-16, 3138.0, 0.002864415990188718, -3.651844963314943e-06, 9.699455683076508e-10, -3.651844963314943e-06, 6.209878389284995e-09, -1.8557631559917853e-12, 9.699455683076508e-10, -1.8557631559917853e-12, 5.915725749227317e-16, 3139.0, 0.0028635046910494566, -3.6495198401098605e-06, 9.69019087193601e-10, -3.6495198401098605e-06, 6.203946245619818e-09, -1.853399595255767e-12, 9.69019087193601e-10, -1.853399595255767e-12, 5.906308860436217e-16, 3140.0, 0.0028625938575714827, -3.6471969906415325e-06, 9.68093938347181e-10, -3.6471969906415325e-06, 6.198022095560418e-09, -1.8510399376475695e-12, 9.68093938347181e-10, -1.8510399376475695e-12, 5.896909971095246e-16, 3141.0, 0.0028616837225854397, -3.644876414909959e-06, 9.671698997237854e-10, -3.644876414909959e-06, 6.192105495017586e-09, -1.8486839663267585e-12, 9.671698997237854e-10, -1.8486839663267585e-12, 5.887528551808813e-16, 3142.0, 0.002860774053260684, -3.642557885541464e-06, 9.662469713234145e-10, -3.642557885541464e-06, 6.186196443991321e-09, -1.8463318981337684e-12, 9.662469713234145e-10, -1.8463318981337684e-12, 5.878165661368101e-16, 3143.0, 0.0028598650824278593, -3.640241629909724e-06, 9.653252641683707e-10, -3.640241629909724e-06, 6.1802944983924135e-09, -1.8439832993877303e-12, 9.653252641683707e-10, -1.8439832993877303e-12, 5.868820240981926e-16, 3144.0, 0.002858956577256322, -3.6379276480147382e-06, 9.64404778258654e-10, -3.6379276480147382e-06, 6.1744005463992835e-09, -1.841638603769513e-12, 9.64404778258654e-10, -1.841638603769513e-12, 5.85949282004588e-16, 3145.0, 0.002858048537746072, -3.635615939856507e-06, 9.63485402571962e-10, -3.635615939856507e-06, 6.168513699833511e-09, -1.8392975944386825e-12, 9.63485402571962e-10, -1.8392975944386825e-12, 5.850183398559963e-16, 3146.0, 0.0028571414295583963, -3.6333062780613545e-06, 9.62567248130597e-10, -3.6333062780613545e-06, 6.162634402784306e-09, -1.8369602713952382e-12, 9.62567248130597e-10, -1.8369602713952382e-12, 5.840891447128583e-16, 3147.0, 0.0028562345542013645, -3.6309988900029566e-06, 9.616502039122565e-10, -3.6309988900029566e-06, 6.1567626552516685e-09, -1.834626851479615e-12, 9.616502039122565e-10, -1.834626851479615e-12, 5.831616965751741e-16, 3148.0, 0.0028553283773362637, -3.6286935483076377e-06,9.607343809392432e-10, -3.6286935483076377e-06, 6.1508984572355985e-09, -1.8322969010109436e-12, 9.607343809392432e-10, -1.8322969010109436e-12, 5.822360483825027e-16, 3149.0, 0.0028544228989630938, -3.6263907077227486e-06, 9.598196681892546e-10, -3.6263907077227486e-06, 6.145041808736096e-09, -1.8299706368296587e-12, 9.598196681892546e-10, -1.8299706368296587e-12, 5.813122001348443e-16, 3150.0, 0.002853517886251211, -3.624089686127263e-06, 9.589060656622905e-10,-3.624089686127263e-06, 6.139192265663951e-09, -1.8276482757761947e-12, 9.589060656622905e-10, -1.8276482757761947e-12, 5.803900459530804e-16, 3151.0, 0.002852613339200616, -3.6217911656422075e-06, 9.57993795402956e-10, -3.6217911656422075e-06, 6.133350272108373e-09, -1.8253293841696827e-12, 9.57993795402956e-10, -1.8253293841696827e-12, 5.794696917163294e-16, 3152.0, 0.0028517094906419516, -3.619494691520231e-06, 9.570825243443437e-10, -3.619494691520231e-06, 6.127515828069363e-09, -1.8230143956909917e-12, 9.570825243443437e-10, -1.8230143956909917e-12, 5.785510315454729e-16, 3153.0, 0.0028508061077445745, -3.6172004911350086e-06, 9.561724745310585e-10, -3.6172004911350086e-06, 6.121688489457711e-09, -1.8207028766592526e-12, 9.561724745310585e-10, -1.8207028766592526e-12, 5.776341713196293e-16, 3154.0, 0.0028499034233391285, -3.6149083371128654e-06, 9.552635349407979e-10, -3.6149083371128654e-06, 6.1158687003626255e-09, -1.8183950439149e-12, 9.552635349407979e-10, -1.8183950439149e-12, 5.767190051596803e-16, 3155.0, 0.0028490014374256134, -3.6126184568274766e-06, 9.543558165958643e-10, -3.6126184568274766e-06, 6.110056460784108e-09, -1.8160908974579337e-12, 9.543558165958643e-10, -1.8160908974579337e-12, 5.758056389447441e-16, 3156.0, 0.002848099684342742, -3.610330622905167e-06, 9.534492084739554e-10, -3.610330622905167e-06, 6.104251326632948e-09, -1.813790437288354e-12, 9.534492084739554e-10, -1.813790437288354e-12, 5.748939667957025e-16, 3157.0, 0.0028471986297518015, -3.6080450627196115e-06, 9.525437105750711e-10, -3.6080450627196115e-06, 6.098453741998355e-09, -1.8114936634061607e-12, 9.525437105750711e-10, -1.8114936634061607e-12, 5.739840416521145e-16, 3158.0, 0.002846298273652792, -3.6057617762708105e-06, 9.51639433921514e-10, -3.6057617762708105e-06, 6.09266326279112e-09, -1.8092003589709194e-12,9.51639433921514e-10, -1.8092003589709194e-12, 5.730758105744211e-16, 3159.0, 0.0028453983832150698, -3.6034805361850886e-06, 9.507362674909814e-10, -3.6034805361850886e-06, 6.086880333100453e-09, -1.8069108492432817e-12, 9.507362674909814e-10, -1.8069108492432817e-12, 5.721693794417406e-16, 3160.0, 0.0028444991912692785, -3.6012013424624456e-06, 9.498342112834735e-10, -3.6012013424624456e-06, 6.081104508837143e-09, -1.804624808962596e-12, 9.498342112834735e-10,-1.804624808962596e-12, 5.712645894353954e-16, 3161.0, 0.0028436004649847746, -3.5989246498502325e-06, 9.489333763212926e-10, -3.5989246498502325e-06, 6.0753362340904005e-09, -1.8023424549692968e-12, 9.489333763212926e-10, -1.8023424549692968e-12, 5.703615464345039e-16, 3162.0, 0.002842702204361558, -3.596649776227423e-06, 9.48033540559834e-10, -3.596649776227423e-06, 6.069575064771016e-09, -1.800063787263384e-12, 9.48033540559834e-10, -1.800063787263384e-12, 5.694601974995069e-16, 3163.0, 0.0028418046422302723, -3.594377176341368e-06, 9.471349260437023e-10, -3.594377176341368e-06, 6.063821000878988e-09, -1.7977885890044232e-12, 9.471349260437023e-10, -1.7977885890044232e-12, 5.685605955699636e-16, 3164.0, 0.002840907545760274, -3.5921068501920672e-06, 9.462375327728978e-10, -3.5921068501920672e-06, 6.0580744865035285e-09, -1.7955170770328488e-12, 9.462375327728978e-10, -1.7955170770328488e-12, 5.676626877063149e-16, 3165.0, 0.0028400111477822065, -3.5898385704058455e-06, 9.453411387028154e-10, -3.5898385704058455e-06, 6.052335077555426e-09, -1.7932491429284436e-12, 9.453411387028154e-10, -1.7932491429284436e-12, 5.667664739085606e-16, 3166.0, 0.0028391152154654264, -3.587572336982703e-06, 9.444459658780602e-10, -3.587572336982703e-06, 6.0466032181238916e-09, -1.7909846782709904e-12, 9.444459658780602e-10, -1.7909846782709904e-12, 5.658719541767009e-16, 3167.0, 0.0028382199816405773, -3.5853083772963146e-06, 9.435519032763295e-10, -3.5853083772963146e-06, 6.040878464119714e-09, -1.7887238999009236e-12, 9.435519032763295e-10, -1.7887238999009236e-12, 5.649791285107356e-16, 3168.0, 0.0028373252134770155, -3.5830464639730053e-06, 9.426589508976235e-10, -3.5830464639730053e-06, 6.035160815542895e-09, -1.786466699398026e-12, 9.426589508976235e-10, -1.786466699398026e-12, 5.640879969106649e-16, 3169.0, 0.002836430910974741, -3.5807868243864505e-06, 9.417671087419421e-10, -3.5807868243864505e-06, 6.029450272393433e-09, -1.7842129683420804e-12, 9.417671087419421e-10, -1.7842129683420804e-12, 5.631985593764887e-16, 3170.0, 0.0028355373069643974, -3.5785292311629746e-06, 9.408763768092854e-10, -3.5785292311629746e-06, 6.023747278760538e-09, -1.781962815153304e-12, 9.408763768092854e-10, -1.781962815153304e-12, 5.623107629686478e-16, 3171.0, 0.002834644168615341, -3.576273911676253e-06, 9.399868661219557e-10, -3.576273911676253e-06, 6.018050946465792e-09, -1.7797162398316968e-12, 9.399868661219557e-10, -1.7797162398316968e-12, 5.614247135662606e-16, 3172.0, 0.002833751728758216, -3.5740206385526108e-06, 9.390983546353482e-10, -3.5740206385526108e-06, 6.012362163687612e-09, -1.7774732423772588e-12, 9.390983546353482e-10, -1.7774732423772588e-12, 5.605403052902087e-16, 3173.0, 0.002832859754562378, -3.5717694117920473e-06,9.382110643940678e-10, -3.5717694117920473e-06, 6.006680486336791e-09, -1.7752337143697727e-12, 9.382110643940678e-10, -1.7752337143697727e-12, 5.596575381404921e-16, 3174.0, 0.0028319682460278273, -3.569520231394563e-06, 9.373247733535095e-10, -3.569520231394563e-06, 6.001006358502536e-09, -1.7729977642294559e-12, 9.373247733535095e-10, -1.7729977642294559e-12, 5.5877646505667e-16, 3175.0, 0.0028310774359852076, -3.567273324733833e-06, 9.364397035582783e-10,-3.567273324733833e-06, 5.99533889200643e-09, -1.770765283536091e-12, 9.364397035582783e-10, -1.770765283536091e-12, 5.578970330991832e-16, 3176.0, 0.002830187091603875, -3.5650286918098573e-06, 9.355557439860718e-10, -3.5650286918098573e-06, 5.989678530937681e-09, -1.768536272289678e-12, 9.355557439860718e-10, -1.768536272289678e-12, 5.57019295207591e-16, 3177.0, 0.0028292974457144737, -3.5627858778752852e-06, 9.346727836145874e-10, -3.5627858778752852e-06, 5.9840257193854995e-09, -1.7663108389104343e-12, 9.346727836145874e-10, -1.7663108389104343e-12, 5.56143198442334e-16, 3178.0, 0.0028284082654863596, -3.5605453376774676e-06, 9.3379104448843e-10, -3.5605453376774676e-06, 5.978379569171466e-09, -1.7640888749781425e-12, 9.3379104448843e-10, -1.7640888749781425e-12, 5.552687957429716e-16, 3179.0, 0.0028275197837501764, -3.558306843842729e-06, 9.329104155852974e-10, -3.558306843842729e-06, 5.97274052438479e-09, -1.7618704889130199e-12, 9.329104155852974e-10, -1.7618704889130199e-12, 5.543959812303852e-16, 3180.0, 0.0028266317676752806, -3.556070623744745e-06, 9.320308969051894e-10, -3.556070623744745e-06, 5.967109029114681e-09, -1.759655463874632e-12, 9.320308969051894e-10, -1.759655463874632e-12, 5.535248607836934e-16, 3181.0, 0.002825744217261672, -3.553836222636164e-06, 9.311524329369547e-10, -3.553836222636164e-06, 5.96148419518272e-09, -1.7574440167034133e-12, 9.311524329369547e-10, -1.7574440167034133e-12, 5.526553285237776e-16, 3182.0, 0.0028248573653399944, -3.551604095264338e-06, 9.302750791917447e-10, -3.551604095264338e-06, 5.955866466678117e-09, -1.7552359305589293e-12, 9.302750791917447e-10, -1.7552359305589293e-12, 5.517874903297564e-16, 3183.0, 0.002823970979079604, -3.5493740142555907e-06, 9.293988356695593e-10, -3.5493740142555907e-06, 5.950255843600871e-09, -1.7530314222816146e-12,9.293988356695593e-10, -1.7530314222816146e-12, 5.509212403225112e-16, 3184.0, 0.002823085058480501, -3.547146206983598e-06, 9.285237023703985e-10, -3.547146206983598e-06, 5.944652325950983e-09, -1.7508303834512517e-12, 9.285237023703985e-10, -1.7508303834512517e-12, 5.500566314416014e-16, 3185.0, 0.002822199836373329, -3.544920446074684e-06, 9.276496237831111e-10, -3.544920446074684e-06, 5.939055913728453e-09, -1.7486327056476236e-12, 9.276496237831111e-10,-1.7486327056476236e-12, 5.491936636870269e-16, 3186.0, 0.0028213150799274445, -3.542696504155174e-06, 9.267767109299996e-10, -3.542696504155174e-06, 5.93346660693328e-09, -1.7464384972909475e-12, 9.267767109299996e-10, -1.7464384972909475e-12, 5.483323370587877e-16, 3187.0, 0.0028204310219734907, -3.5404750633460935e-06, 9.259048527887614e-10, -3.5404750633460935e-06, 5.927883961476255e-09, -1.7442477583812233e-12, 9.259048527887614e-10, -1.7442477583812233e-12, 5.474725986173246e-16, 3188.0, 0.0028195474296808243, -3.5382554415264167e-06, 9.250341048705479e-10, -3.5382554415264167e-06, 5.922308421446587e-09, -1.742060488918451e-12, 9.250341048705479e-10, -1.742060488918451e-12, 5.466145013021968e-16, 3189.0, 0.002818664303049445, -3.536037866069819e-06, 9.241644116642078e-10, -3.536037866069819e-06, 5.916739986844277e-09, -1.7398765804824134e-12, 9.241644116642078e-10, -1.7398765804824134e-12, 5.45757992173845e-16, 3190.0, 0.002817781874909997, -3.5338225643499754e-06, 9.232958286808923e-10, -3.5338225643499754e-06, 5.911178657669325e-09, -1.7376960330731106e-12, 9.232958286808923e-10, -1.7376960330731106e-12, 5.449031241718286e-16, 3191.0, 0.002816899912431836, -3.531609308993211e-06, 9.224283559206015e-10, -3.531609308993211e-06, 5.90562398983252e-09, -1.735519063530977e-12, 9.224283559206015e-10, -1.735519063530977e-12, 5.440498443565883e-16, 3192.0, 0.0028160186484456062, -3.5293980999995256e-06, 9.21561937872184e-10, -3.5293980999995256e-06, 5.900076427423073e-09, -1.7333453465953608e-12, 9.21561937872184e-10, -1.7333453465953608e-12, 5.431981527281241e-16, 3193.0, 0.00281513761729002, -3.527188937368919e-06, 9.206966300467911e-10, -3.527188937368919e-06, 5.894535970440984e-09, -1.7311750991066965e-12, 9.206966300467911e-10, -1.7311750991066965e-12, 5.423481022259953e-16, 3194.0, 0.0028142575174570084, -3.5249818211013917e-06, 9.198324324444229e-10, -3.5249818211013917e-06, 5.889002174797042e-09, -1.7290083210649843e-12, 9.198324324444229e-10, -1.7290083210649843e-12, 5.414996399106425e-16, 3195.0, 0.0028133776504546404, -3.5227767511969432e-06, 9.189692895539281e-10, -3.5227767511969432e-06, 5.883475484580458e-09, -1.7268447956297894e-12, 9.189692895539281e-10, -1.7268447956297894e-12, 5.406527128425066e-16, 3196.0, 0.0028124984819442034, -3.5205737276555737e-06, 9.181072013753067e-10, -3.5205737276555737e-06, 5.877955455702022e-09, -1.7246847396415466e-12, 9.181072013753067e-10, -1.7246847396415466e-12, 5.39807426900706e-16, 3197.0, 0.0028116200119256973, -3.5183729778509587e-06, 9.172461679085586e-10, -3.5183729778509587e-06, 5.872442532250943e-09, -1.7225280446800384e-12, 9.172461679085586e-10, -1.7225280446800384e-12, 5.389637291456815e-16, 3198.0, 0.002810741774737835, -3.516174047035747e-06,9.163863001759864e-10, -3.516174047035747e-06, 5.866936714227222e-09, -1.720374710745265e-12, 9.163863001759864e-10, -1.720374710745265e-12, 5.381216195774331e-16, 3199.0, 0.0028098642360419035, -3.51397738995729e-06, 9.155274316441364e-10, -3.51397738995729e-06, 5.861437113452439e-09, -1.7182247378372262e-12, 9.155274316441364e-10, -1.7182247378372262e-12, 5.372810452564016e-16, 3200.0, 0.002808987395837903, -3.511782779241912e-06, 9.14669673335311e-10,-3.511782779241912e-06, 5.855945062194223e-09, -1.7160781259559221e-12, 9.14669673335311e-10, -1.7160781259559221e-12, 5.364420591221462e-16, 3201.0, 0.002808110788464546, -3.5095899875159375e-06, 9.13812969738359e-10, -3.5095899875159375e-06, 5.850459672274155e-09, -1.7139348751013528e-12, 9.13812969738359e-10, -1.7139348751013528e-12, 5.35604661174667e-16, 3202.0, 0.0028072348795831203, -3.5073994695267174e-06, 9.129573208532804e-10, -3.5073994695267174e-06, 5.844980943692235e-09, -1.7117949852735181e-12, 9.129573208532804e-10, -1.7117949852735181e-12, 5.347687984744046e-16, 3203.0, 0.0028063596691936255, -3.5052109979005763e-06, 9.121027821912264e-10, -3.5052109979005763e-06, 5.8395093205376725e-09, -1.7096584564724182e-12, 9.121027821912264e-10, -1.7096584564724182e-12, 5.339345239609183e-16, 3204.0, 0.002805484924465418, -3.503024572637514e-06, 9.112492982410458e-10, -3.503024572637514e-06, 5.834044358721258e-09, -1.7075251802778357e-12, 9.112492982410458e-10, -1.7075251802778357e-12, 5.331018376342081e-16, 3205.0, 0.0028046106453984976, -3.5008399663638556e-06, 9.103968690027386e-10, -3.5008399663638556e-06, 5.8285860582429905e-09, -1.705395265109988e-12, 9.103968690027386e-10, -1.705395265109988e-12, 5.322706865547148e-16, 3206.0, 0.0028037368319928646, -3.4986576338269515e-06, 9.095454944763048e-10, -3.4986576338269515e-06, 5.823134863192081e-09, -1.7032687109688749e-12, 9.095454944763048e-10, -1.7032687109688749e-12, 5.314410707224384e-16, 3207.0, 0.0028028637170791626, -3.4964773476531263e-06, 9.086951746617444e-10, -3.4964773476531263e-06, 5.817690329479319e-09, -1.7011454094342793e-12, 9.086951746617444e-10, -1.7011454094342793e-12, 5.306130430769382e-16, 3208.0, 0.002801991067826748, -3.4942988804687047e-06, 9.078459095590574e-10, -3.4942988804687047e-06, 5.812252457104705e-09, -1.6990254689264184e-12,9.078459095590574e-10, -1.6990254689264184e-12, 5.297865506786548e-16, 3209.0, 0.0028011188842356205, -3.4921226870210376e-06, 9.06997754679395e-10, -3.4921226870210376e-06, 5.806821690157449e-09, -1.696908781025075e-12, 9.06997754679395e-10, -1.696908781025075e-12, 5.289615935275883e-16, 3210.0, 0.002800247399136424, -3.489948312562774e-06, 9.061505990004548e-10, -3.489948312562774e-06, 5.80139758454834e-09, -1.694795345730249e-12, 9.061505990004548e-10,-1.694795345730249e-12, 5.281381716237387e-16, 3211.0, 0.002799376379698515, -3.4877762118412647e-06, 9.05304498033388e-10, -3.4877762118412647e-06, 5.795980140277379e-09, -1.6926852714621576e-12, 9.05304498033388e-10, -1.6926852714621576e-12, 5.27316284967106e-16, 3212.0, 0.0027985060587525368, -3.485605930109159e-06, 9.044595072893458e-10, -3.485605930109159e-06, 5.790569357344566e-09, -1.6905784498005838e-12, 9.044595072893458e-10, -1.6905784498005838e-12, 5.264959335576902e-16, 3213.0, 0.002797636203467846, -3.483437922113808e-06, 9.036155157460257e-10, -3.483437922113808e-06, 5.785165235749901e-09, -1.6884749891657447e-12, 9.036155157460257e-10, -1.6884749891657447e-12, 5.256771173954913e-16, 3214.0, 0.0027967668138444424, -3.48127173310786e-06, 9.027725789145791e-10, -3.48127173310786e-06, 5.779768219582593e-09, -1.6863746727172058e-12, 9.027725789145791e-10, -1.6863746727172058e-12, 5.248598364805093e-16, 3215.0, 0.002795897889882326, -3.4791075904649915e-06, 9.019306967950058e-10, -3.4791075904649915e-06, 5.774377420664223e-09, -1.6842777172954015e-12, 9.019306967950058e-10, -1.6842777172954015e-12, 5.240440908127442e-16, 3216.0, 0.002795029664412141, -3.476945494185202e-06, 9.01089869387306e-10, -3.476945494185202e-06, 5.7689937271732106e-09, -1.6821840144801148e-12, 9.01089869387306e-10, -1.6821840144801148e-12, 5.232298274526368e-16, 3217.0, 0.002794161904603243, -3.4747852168948157e-06, 9.002500966914795e-10, -3.4747852168948157e-06, 5.763616695020346e-09, -1.6800934558511282e-12, 9.002500966914795e-10, -1.6800934558511282e-12, 5.224171522793055e-16, 3218.0, 0.002793294610455632, -3.472627213341184e-06, 8.994113787075264e-10, -3.472627213341184e-06, 5.758246324205629e-09, -1.6780062582488764e-12, 8.994113787075264e-10, -1.6780062582488764e-12, 5.216059064740727e-16, 3219.0, 0.0027924280147999525, -3.4704712561506312e-06, 8.985736599242955e-10, -3.4704712561506312e-06, 5.75288261472906e-09, -1.675922313253142e-12, 8.985736599242955e-10, -1.675922313253142e-12, 5.20796248855616e-16, 3220.0, 0.00279156188480556, -3.468317117949482e-06, 8.97736995852938e-10, -3.468317117949482e-06, 5.747525122501429e-09, -1.6738415124437078e-12, 8.97736995852938e-10, -1.6738415124437078e-12, 5.199880206052578e-16, 3221.0, 0.002790696220472455, -3.466165026111412e-06, 8.969013864934539e-10, -3.466165026111412e-06, 5.7421747357011554e-09, -1.671763964240791e-12, 8.969013864934539e-10, -1.671763964240791e-12, 5.191813805416757e-16, 3222.0, 0.002789831254631281, -3.4640149806364207e-06, 8.960667763346919e-10, -3.4640149806364207e-06, 5.73683101023903e-09, -1.6696896686443918e-12, 8.960667763346919e-10, -1.6696896686443918e-12, 5.183761698461921e-16, 3223.0, 0.002788966754451394, -3.4618669815245084e-06,8.952332208878033e-10, -3.4618669815245084e-06, 5.7314939461150516e-09, -1.6676185172342928e-12, 8.952332208878033e-10, -1.6676185172342928e-12, 5.175724943979254e-16, 3224.0, 0.0027881027199327946, -3.4597208014019998e-06, 8.944007201527882e-10, -3.4597208014019998e-06, 5.7261630992400114e-09, -1.6655507268509284e-12, 8.944007201527882e-10, -1.6655507268509284e-12, 5.167703012573163e-16, 3225.0, 0.0027872391510754824, -3.4575768950162455e-06, 8.935692186184951e-10,-3.4575768950162455e-06, 5.720839357792329e-09, -1.663485972233647e-12, 8.935692186184951e-10, -1.663485972233647e-12, 5.15969590424365e-16, 3226.0, 0.002786376280710101, -3.455434807619895e-06, 8.927387717960755e-10, -3.455434807619895e-06, 5.715521833593584e-09, -1.6614245786431003e-12, 8.927387717960755e-10, -1.6614245786431003e-12, 5.151704148386306e-16, 3227.0, 0.002785513876006007, -3.4532945392129477e-06, 8.919093796855293e-10, -3.4532945392129477e-06, 5.710210970732987e-09, -1.6593662208186366e-12, 8.919093796855293e-10, -1.6593662208186366e-12, 5.143726686209946e-16, 3228.0, 0.0027846519369632006, -3.451156544542755e-06, 8.91080931264554e-10, -3.451156544542755e-06, 5.704906769210538e-09, -1.6573111156006903e-12, 8.91080931264554e-10, -1.6573111156006903e-12, 5.135764047110164e-16, 3229.0, 0.002783790696412325, -3.449020368861966e-06, 8.902535930666033e-10, -3.449020368861966e-06, 5.699609229026237e-09, -1.6552592629892615e-12, 8.902535930666033e-10, -1.6552592629892615e-12, 5.127816760482551e-16, 3230.0, 0.0027829299215227365, -3.4468862395442557e-06, 8.894272540693748e-10, -3.4468862395442557e-06, 5.694317906090873e-09, -1.6532104461439157e-12, 8.894272540693748e-10, -1.6532104461439157e-12, 5.119883767535922e-16, 3231.0, 0.0027820696122944355, -3.4447541565896245e-06, 8.886019142728685e-10, -3.4447541565896245e-06, 5.689033688582867e-09, -1.6511648819050873e-12, 8.886019142728685e-10, -1.6511648819050873e-12, 5.11196559766587e-16, 3232.0, 0.0027812100015580654, -3.442623892624397e-06, 8.877775736770843e-10, -3.442623892624397e-06, 5.683755688323799e-09, -1.649122461852559e-12, 8.877775736770843e-10, -1.649122461852559e-12, 5.104062250872396e-16, 3233.0, 0.0027803508564829826, -3.440495675022248e-06, 8.869542877931735e-10, -3.440495675022248e-06, 5.678483905313669e-09, -1.647083185986331e-12,8.869542877931735e-10, -1.647083185986331e-12, 5.096173197759906e-16, 3234.0, 0.002779492177069187, -3.4383695037831785e-06, 8.861320566211361e-10, -3.4383695037831785e-06, 5.673219227730897e-09, -1.6450471627266205e-12, 8.861320566211361e-10, -1.6450471627266205e-12, 5.088298967723993e-16, 3235.0, 0.002778633963316679, -3.436245378907188e-06, 8.853107691386697e-10, -3.436245378907188e-06, 5.667960767397062e-09, -1.643014175232993e-12, 8.853107691386697e-10,-1.643014175232993e-12, 5.080439560764657e-16, 3236.0, 0.002777776448056102, -3.4341230730206007e-06, 8.844905363680766e-10, -3.4341230730206007e-06, 5.6627085243121655e-09, -1.6409843319256656e-12, 8.844905363680766e-10, -1.6409843319256656e-12, 5.072594447486306e-16, 3237.0, 0.002776919398456812, -3.432002586123417e-06, 8.836713027982057e-10, -3.432002586123417e-06, 5.657462942565417e-09, -1.6389576328046385e-12, 8.836713027982057e-10, -1.6389576328046385e-12, 5.064764157284532e-16, 3238.0, 0.0027760628145188093, -3.429884372962988e-06, 8.828531239402082e-10, -3.429884372962988e-06, 5.652224022156815e-09, -1.6369340778699115e-12, 8.828531239402082e-10, -1.6369340778699115e-12, 5.056948160763743e-16, 3239.0, 0.002775206696242094, -3.4277679787919624e-06, 8.820358887717816e-10, -3.4277679787919624e-06, 5.646991763086362e-09, -1.6349136671214848e-12, 8.820358887717816e-10, -1.6349136671214848e-12, 5.049146457923939e-16, 3240.0, 0.0027743512764573097, -3.4256534036103403e-06, 8.812197083152284e-10, -3.4256534036103403e-06, 5.6417657212648464e-09, -1.632896292139141e-12, 8.812197083152284e-10, -1.632896292139141e-12, 5.041359578160712e-16, 3241.0, 0.0027734963223338127, -3.4235411021654727e-06, 8.804045270593974e-10, -3.4235411021654727e-06, 5.636545896692269e-09, -1.6308820613430974e-12, 8.804045270593974e-10, -1.6308820613430974e-12, 5.03358699207847e-16, 3242.0, 0.002772641833871603, -3.421430392336333e-06, 8.795903450042886e-10, -3.421430392336333e-06, 5.631332733457839e-09, -1.628870974733354e-12, 8.795903450042886e-10, -1.628870974733354e-12, 5.02582817028162e-16, 3243.0, 0.0027717880439013243, -3.419321956243948e-06, 8.787771621499019e-10, -3.419321956243948e-06, 5.626125787472347e-09, -1.626863032309911e-12, 8.787771621499019e-10, -1.626863032309911e-12, 5.01808470095694e-16, 3244.0, 0.002770934486761689, -3.4172153391409665e-06, 8.779649784962373e-10, -3.4172153391409665e-06, 5.620925502825003e-09, -1.6248581256525507e-12, 8.779649784962373e-10, -1.6248581256525507e-12, 5.010354995917652e-16, 3245.0, 0.002770081628113985, -3.4151105410273885e-06, 8.77153794043295e-10, -3.4151105410273885e-06, 5.615731435426596e-09, -1.6228562547612735e-12, 8.77153794043295e-10, -1.6228562547612735e-12, 5.00263958455935e-16, 3246.0, 0.002769229467958212, -3.4130077892768895e-06, 8.763436087910748e-10, -3.4130077892768895e-06, 5.610544029366338e-09, -1.6208575280562965e-12, 8.763436087910748e-10, -1.6208575280562965e-12, 4.994938466882032e-16, 3247.0, 0.0027683775406330824, -3.4109070838894695e-06, 8.755344227395767e-10, -3.4109070838894695e-06, 5.605362840555017e-09, -1.6188618371174024e-12, 8.755344227395767e-10, -1.6188618371174024e-12, 4.987251642885699e-16, 3248.0, 0.002767526311799884, -3.408808197491453e-06,8.747262358888008e-10, -3.408808197491453e-06, 5.600188313081844e-09, -1.6168691819445913e-12, 8.747262358888008e-10, -1.6168691819445913e-12, 4.979578583174759e-16, 3249.0, 0.0027666755486279726, -3.4067113574565155e-06, 8.739190482387471e-10, -3.4067113574565155e-06, 5.595019558768399e-09, -1.6148796709580804e-12, 8.739190482387471e-10, -1.6148796709580804e-12, 4.971920346540397e-16, 3250.0, 0.0027658252511173487, -3.4046163364109816e-06, 8.731128597894156e-10,-3.4046163364109816e-06, 5.589857909882312e-09, -1.6128931957376524e-12, 8.731128597894156e-10, -1.6128931957376524e-12, 4.964275874191426e-16, 3251.0, 0.0027649756520986557, -3.4025233617285267e-06, 8.723076705408062e-10, -3.4025233617285267e-06, 5.584702034155953e-09, -1.6109097562833075e-12, 8.723076705408062e-10, -1.6109097562833075e-12, 4.956645695523441e-16, 3252.0, 0.0027641262859106064, -3.4004322060354752e-06, 8.715034249817677e-10, -3.4004322060354752e-06, 5.579552819767741e-09, -1.6089294610152627e-12, 8.715034249817677e-10, -1.6089294610152627e-12, 4.949029281140849e-16, 3253.0, 0.002763277618214488, -3.3983428693318274e-06, 8.707002341346026e-10, -3.3983428693318274e-06, 5.574409378539258e-09, -1.6069520930930836e-12, 8.707002341346026e-10, -1.6069520930930836e-12, 4.941427160439242e-16, 3254.0, 0.0027624296490103006, -3.3962555789912585e-06, 8.698979869770085e-10, -3.3962555789912585e-06, 5.569273042738132e-09, -1.6049777609369875e-12, 8.698979869770085e-10, -1.6049777609369875e-12, 4.933838804023027e-16, 3255.0, 0.002761581912636757, -3.3941703350137686e-06, 8.690967390201365e-10, -3.3941703350137686e-06, 5.564142480096734e-09, -1.6030065729671916e-12, 8.690967390201365e-10, -1.6030065729671916e-12, 4.926264741287798e-16, 3256.0, 0.002760734874755144, -3.3920869100256823e-06, 8.682964347528355e-10, -3.3920869100256823e-06, 5.559018578793484e-09, -1.6010383123432614e-12, 8.682964347528355e-10, -1.6010383123432614e-12, 4.918704442837961e-16, 3257.0, 0.0027598883025348186, -3.3900053040269995e-06, 8.674971296862566e-10, -3.3900053040269995e-06, 5.553900450649962e-09, -1.5990730874854142e-12, 8.674971296862566e-10, -1.5990730874854142e-12, 4.911157908673517e-16, 3258.0, 0.0027590421959757805, -3.3879257443913957e-06, 8.666988238203999e-10, -3.3879257443913957e-06, 5.548788983844588e-09, -1.59711089839365e-12,8.666988238203999e-10, -1.59711089839365e-12, 4.903625668190058e-16, 3259.0, 0.0027581965550780296, -3.3858480037451955e-06, 8.659015171552653e-10, -3.3858480037451955e-06, 5.543683734288152e-09, -1.5951516366477514e-12, 8.659015171552653e-10, -1.5951516366477514e-12, 4.896107191991992e-16, 3260.0, 0.0027573516126722097, -3.383772309462074e-06, 8.651051541797017e-10, -3.383772309462074e-06, 5.538584701980653e-09, -1.593195519088153e-12, 8.651051541797017e-10,-1.593195519088153e-12, 4.888602480079319e-16, 3261.0, 0.002756507135927677, -3.3816984341683565e-06, 8.643097904048602e-10, -3.3816984341683565e-06, 5.533491886922093e-09, -1.5912423288744204e-12, 8.643097904048602e-10, -1.5912423288744204e-12, 4.881111532452039e-16, 3262.0, 0.002755663124844432, -3.3796263778640423e-06, 8.635153703195897e-10, -3.3796263778640423e-06, 5.52840528911247e-09, -1.5892920660065535e-12, 8.635153703195897e-10, -1.5892920660065535e-12, 4.873634349110152e-16, 3263.0, 0.002754819579422474, -3.377556367922807e-06, 8.627219494350413e-10, -3.377556367922807e-06, 5.523325352640995e-09, -1.5873448389047695e-12, 8.627219494350413e-10, -1.5873448389047695e-12, 4.866170930053657e-16, 3264.0, 0.0027539764996618032, -3.3754881769709755e-06, 8.619294722400639e-10, -3.3754881769709755e-06, 5.5182511893292485e-09, -1.5854006475690685e-12, 8.619294722400639e-10, -1.5854006475690685e-12, 4.858720745886964e-16, 3265.0, 0.0027531341183930635, -3.373422032382223e-06, 8.611379942458086e-10, -3.373422032382223e-06, 5.51318324326644e-09, -1.5834593835792332e-12, 8.611379942458086e-10, -1.5834593835792332e-12, 4.851284855401255e-16, 3266.0, 0.002752292202785611, -3.3713577067828737e-06, 8.603474599411243e-10, -3.3713577067828737e-06, 5.508121514452569e-09, -1.5815211553554809e-12, 8.603474599411243e-10, -1.5815211553554809e-12, 4.843862729200939e-16, 3267.0, 0.002751450752839446, -3.369295200172928e-06, 8.595579248371621e-10, -3.369295200172928e-06, 5.5030660028876355e-09, -1.579585746057377e-12, 8.595579248371621e-10, -1.579585746057377e-12, 4.836453837890424e-16, 3268.0, 0.0027506097685545683, -3.367234512552386e-06, 8.587693334227708e-10, -3.367234512552386e-06, 5.49801670857164e-09, -1.577653372525356e-12, 8.587693334227708e-10, -1.577653372525356e-12, 4.829058710865302e-16, 3269.0, 0.0027497694827616215, -3.365175871294923e-06, 8.579817412091018e-10, -3.365175871294923e-06, 5.492973631504583e-09, -1.5757240347594181e-12, 8.579817412091018e-10, -1.5757240347594181e-12, 4.821676818729981e-16, 3270.0, 0.002748929662629962, -3.3631190490268636e-06, 8.571950926850036e-10, -3.3631190490268636e-06, 5.4879367716864635e-09, -1.5737975159191286e-12, 8.571950926850036e-10, -1.5737975159191286e-12, 4.814308690880053e-16, 3271.0, 0.0027480903081595898, -3.361064273121883e-06, 8.564093878504764e-10, -3.361064273121883e-06, 5.482906129117282e-09, -1.5718740328449221e-12, 8.564093878504764e-10, -1.5718740328449221e-12, 4.806954327315517e-16, 3272.0, 0.002747251419350505, -3.3590110888326308e-06, 8.556246267055201e-10, -3.3590110888326308e-06, 5.4778817037970384e-09, -1.5699534771165813e-12, 8.556246267055201e-10, -1.5699534771165813e-12, 4.799613198640783e-16, 3273.0, 0.0027464129962027073, -3.3569599509064574e-06,8.54840864761286e-10, -3.3569599509064574e-06, 5.472863051636523e-09, -1.5680358487341062e-12, 8.54840864761286e-10, -1.5680358487341062e-12, 4.792285304855849e-16, 3274.0, 0.0027455752715468407, -3.354910859343363e-06, 8.540580465066228e-10, -3.354910859343363e-06, 5.467850616724945e-09, -1.5661210392772795e-12, 8.540580465066228e-10, -1.5661210392772795e-12, 4.784971175356308e-16, 3275.0, 0.0027447377797216177, -3.3528633593959967e-06, 8.532761719415305e-10,-3.3528633593959967e-06, 5.4628443990623055e-09, -1.5642092655865358e-12, 8.532761719415305e-10, -1.5642092655865358e-12, 4.777670280746568e-16, 3276.0, 0.0027439009863883257, -3.3508179058117094e-06, 8.524952410660092e-10, -3.3508179058117094e-06, 5.457844398648604e-09, -1.5623004192416579e-12, 8.524952410660092e-10, -1.5623004192416579e-12, 4.770383150422221e-16, 3277.0, 0.0027430648915469646, -3.3487742712168256e-06, 8.5171530939121e-10, -3.3487742712168256e-06, 5.45285017139463e-09, -1.5603943918224283e-12, 8.5171530939121e-10, -1.5603943918224283e-12, 4.763108725592082e-16, 3278.0, 0.0027422290295362473, -3.3467324556113454e-06, 8.509362658948305e-10, -3.3467324556113454e-06, 5.447862161389594e-09, -1.5584914001692818e-12, 8.509362658948305e-10, -1.5584914001692818e-12, 4.755848065047337e-16, 3279.0, 0.002741393633186817, -3.3446924589952687e-06, 8.501582215991732e-10, -3.3446924589952687e-06, 5.442880368633496e-09, -1.5565912274417837e-12, 8.501582215991732e-10, -1.5565912274417837e-12, 4.748600639392392e-16, 3280.0, 0.002740558935329318, -3.342654508742271e-06, 8.493811209930868e-10, -3.342654508742271e-06, 5.437904793126336e-09, -1.5546939820601513e-12, 8.493811209930868e-10, -1.5546939820601513e-12, 4.7413659192316565e-16, 3281.0, 0.0027397247031331062, -3.340618377478677e-06, 8.486049640765714e-10, -3.340618377478677e-06, 5.432934990778904e-09, -1.5527995556041674e-12, 8.486049640765714e-10, -1.5527995556041674e-12, 4.734144963356314e-16, 3282.0, 0.0027388909365981817, -3.3385840652044863e-06, 8.478297508496269e-10, -3.3385840652044863e-06, 5.42797140568041e-09, -1.5509080564940492e-12, 8.478297508496269e-10, -1.5509080564940492e-12, 4.726937242370772e-16, 3283.0, 0.0027380576357245445, -3.336551571919699e-06, 8.470554813122533e-10, -3.336551571919699e-06, 5.4230135937416435e-09, -1.5490194847297967e-12,8.470554813122533e-10, -1.5490194847297967e-12, 4.719742226879438e-16, 3284.0, 0.0027372250333428383, -3.3345208976243157e-06, 8.462821554644506e-10, -3.3345208976243157e-06, 5.418061999051815e-09, -1.5471337318911926e-12, 8.462821554644506e-10, -1.5471337318911926e-12, 4.712560975673498e-16, 3285.0, 0.0027363926637917757, -3.3324920423183357e-06, 8.455097177950677e-10, -3.3324920423183357e-06, 5.413116621610925e-09, -1.545250797978237e-12, 8.455097177950677e-10,-1.545250797978237e-12, 4.705392429961766e-16, 3286.0, 0.002735560992732644, -3.3304652333754348e-06, 8.447382793264069e-10, -3.3304652333754348e-06, 5.408177017329763e-09, -1.5433707914111472e-12, 8.447382793264069e-10, -1.5433707914111472e-12, 4.698237119139836e-16, 3287.0, 0.0027347297873347998, -3.3284402434219373e-06, 8.43967784547317e-10, -3.3284402434219373e-06, 5.403243630297538e-09, -1.541493712189923e-12, 8.43967784547317e-10, -1.541493712189923e-12, 4.691094513812114e-16, 3288.0, 0.0027338990475982428, -3.326416845084168e-06, 8.431982334577981e-10, -3.326416845084168e-06, 5.398316016425042e-09, -1.53961934347413e-12, 8.431982334577981e-10, -1.53961934347413e-12, 4.683965143374193e-16, 3289.0, 0.002733068773522973, -3.3243954931094777e-06, 8.424295705466989e-10, -3.3243954931094777e-06, 5.393394619801484e-09, -1.5377479021042029e-12, 8.424295705466989e-10, -1.5377479021042029e-12, 4.676849007826073e-16, 3290.0, 0.0027322391979396343, -3.322375960124191e-06, 8.416618513251706e-10, -3.322375960124191e-06, 5.388478996337653e-09, -1.5358792796599241e-12, 8.416618513251706e-10, -1.5358792796599241e-12, 4.669745577772161e-16, 3291.0, 0.0027314098551869392, -3.3203582461283077e-06, 8.408950757932132e-10, -3.3203582461283077e-06, 5.383569146033551e-09, -1.534013584561511e-12, 8.408950757932132e-10, -1.534013584561511e-12, 4.662655382608051e-16, 3292.0, 0.002730581210926175, -3.3183425784955034e-06, 8.401292439508268e-10, -3.3183425784955034e-06, 5.378665512978387e-09, -1.5321505999685292e-12, 8.401292439508268e-10, -1.5321505999685292e-12, 4.655577892938149e-16, 3293.0, 0.0027297530323266983, -3.3163285024784273e-06, 8.393643557980113e-10, -3.3163285024784273e-06, 5.37376809717216e-09, -1.5302904343011958e-12, 8.393643557980113e-10, -1.5302904343011958e-12, 4.648513108762456e-16, 3294.0, 0.002728925319388509, -3.3143162454507546e-06, 8.386003558236155e-10, -3.3143162454507546e-06, 5.368876454525662e-09, -1.5284331959797282e-12, 8.386003558236155e-10, -1.5284331959797282e-12, 4.641461030080972e-16, 3295.0, 0.0027280980721116066, -3.312306034786161e-06, 8.378372995387906e-10, -3.312306034786161e-06, 5.363990585038891e-09, -1.526578776583909e-12, 8.378372995387906e-10, -1.526578776583909e-12, 4.634422186289289e-16, 3296.0, 0.0027272712904959917, -3.3102974157372955e-06, 8.370751314323854e-10, -3.3102974157372955e-06, 5.359110488711849e-09, -1.524727067693521e-12, 8.370751314323854e-10, -1.524727067693521e-12, 4.627396047991814e-16, 3297.0, 0.0027264452073723078, -3.3082906156778336e-06, 8.363139625267024e-10, -3.3082906156778336e-06, 5.354236609633745e-09, -1.5228781777287814e-12, 8.363139625267024e-10, -1.5228781777287814e-12, 4.620383144584141e-16, 3298.0, 0.002725619589909911, -3.3062858619814506e-06,8.355536817994391e-10, -3.3062858619814506e-06, 5.349368503715368e-09, -1.5210321066896904e-12, 8.355536817994391e-10, -1.5210321066896904e-12, 4.613382417275084e-16, 3299.0, 0.002724794205278158, -3.3042826999007957e-06, 8.347942892505955e-10, -3.3042826999007957e-06, 5.34450661504593e-09, -1.5191888545762477e-12, 8.347942892505955e-10, -1.5191888545762477e-12, 4.606394395460236e-16, 3300.0, 0.002723969519138336, -3.30228158418322e-06, 8.340358403913228e-10,-3.30228158418322e-06, 5.3396500554470094e-09, -1.5173484213884536e-12, 8.340358403913228e-10, -1.5173484213884536e-12, 4.599419079139597e-16, 3301.0, 0.002723145531490445, -3.300282060081372e-06, 8.332783352216211e-10, -3.300282060081372e-06, 5.334799713097027e-09, -1.515510807126308e-12, 8.332783352216211e-10, -1.515510807126308e-12, 4.592456997708758e-16, 3302.0, 0.0027223217766731977, -3.2982845823426032e-06, 8.32521718230339e-10, -3.2982845823426032e-06, 5.329955143906773e-09, -1.5136759033695935e-12, 8.32521718230339e-10, -1.5136759033695935e-12, 4.585507092376537e-16, 3303.0, 0.0027214984875172377, -3.2962886962195626e-06, 8.317660449286279e-10, -3.2962886962195626e-06, 5.325116791965456e-09, -1.5118437101183102e-12, 8.317660449286279e-10, -1.5118437101183102e-12, 4.578569892538524e-16, 3304.0, 0.0027206758968532085, -3.294294856459601e-06, 8.310112598053365e-10, -3.294294856459601e-06, 5.320283769094658e-09, -1.5100143357926754e-12, 8.310112598053365e-10, -1.5100143357926754e-12, 4.571644868799128e-16, 3305.0, 0.002719853539019823, -3.2923026083153673e-06, 8.302573628604648e-10, -3.2923026083153673e-06, 5.315456963472798e-09, -1.508187780392689e-12, 8.302573628604648e-10, -1.508187780392689e-12, 4.564733079949533e-16, 3306.0, 0.0027190318796783686, -3.290312179160537e-06, 8.29504409605164e-10, -3.290312179160537e-06, 5.3106359310106654e-09, -1.506363935498134e-12, 8.29504409605164e-10, -1.506363935498134e-12, 4.557833467198555e-16, 3307.0, 0.0027182106859982014, -3.288323796368786e-06, 8.287524000394342e-10, -3.288323796368786e-06, 5.305820671708261e-09, -1.5045429095292273e-12, 8.287524000394342e-10, -1.5045429095292273e-12, 4.550946559941785e-16, 3308.0, 0.0027173899579793215, -3.286337005192763e-06, 8.28001278652124e-10, -3.286337005192763e-06, 5.301011185565585e-09, -1.5027245940657519e-12,8.28001278652124e-10, -1.5027245940657519e-12, 4.544071828783633e-16, 3309.0, 0.002716569695621729, -3.2843520330061438e-06, 8.272510454432336e-10, -3.2843520330061438e-06, 5.296207472582637e-09, -1.5009089891077076e-12, 8.272510454432336e-10, -1.5009089891077076e-12, 4.537209803119689e-16, 3310.0, 0.0027157501317560673, -3.282368879808928e-06, 8.265017004127628e-10, -3.282368879808928e-06, 5.291409532759417e-09, -1.4990962030753119e-12, 8.265017004127628e-10,-1.4990962030753119e-12, 4.530359953554362e-16, 3311.0, 0.0027149308007210493, -3.2803875456011156e-06, 8.25753299071863e-10, -3.2803875456011156e-06, 5.286617810185135e-09, -1.4972861275483473e-12, 8.25753299071863e-10, -1.4972861275483473e-12, 4.523522809483243e-16, 3312.0, 0.0027141121681779623, -3.2784080303827068e-06, 8.250057859093829e-10, -3.2784080303827068e-06, 5.281831416681371e-09, -1.495478762526814e-12, 8.250057859093829e-10, -1.495478762526814e-12, 4.516697841510742e-16, 3313.0, 0.002713293768465519, -3.276430106780026e-06, 8.242591609253225e-10, -3.276430106780026e-06, 5.277050796337335e-09, -1.4936741080107119e-12, 8.242591609253225e-10, -1.4936741080107119e-12, 4.509885579032449e-16, 3314.0, 0.0027124760672450066, -3.2744542295404244e-06, 8.235134241196818e-10, -3.2744542295404244e-06, 5.272276393242237e-09, -1.491872164000041e-12, 8.235134241196818e-10, -1.491872164000041e-12, 4.503085492652773e-16, 3315.0, 0.0027116588316857815, -3.272479943916551e-06, 8.22768631003612e-10, -3.272479943916551e-06, 5.267507319217657e-09, -1.4900730389150185e-12, 8.22768631003612e-10, -1.4900730389150185e-12, 4.496297582371714e-16, 3316.0, 0.0027108420617878437, -3.270507477282081e-06, 8.220247260659619e-10, -3.270507477282081e-06, 5.262744018352805e-09, -1.48827651591521e-12, 8.220247260659619e-10, -1.48827651591521e-12, 4.489521848189272e-16, 3317.0, 0.0027100257575511932, -3.2685368296370143e-06, 8.212817093067315e-10, -3.2685368296370143e-06, 5.2579864906476814e-09, -1.4864827034208328e-12, 8.212817093067315e-10, -1.4864827034208328e-12, 4.482758290105446e-16, 3318.0, 0.00270920991897583, -3.2665680009813514e-06, 8.205395807259208e-10, -3.2665680009813514e-06, 5.253234736102286e-09, -1.4846916014318867e-12, 8.205395807259208e-10, -1.4846916014318867e-12, 4.476007437515829e-16, 3319.0, 0.002708394778892398, -3.264600991315092e-06, 8.197983403235298e-10, -3.264600991315092e-06, 5.248488754716618e-09, -1.4829033183685891e-12, 8.197983403235298e-10, -1.4829033183685891e-12, 4.469268231629237e-16, 3320.0, 0.0027075798716396093, -3.262635800638236e-06, 8.190580436107098e-10, -3.262635800638236e-06, 5.2437485464906786e-09, -1.4811175289702883e-12, 8.190580436107098e-10, -1.4811175289702883e-12, 4.462541731236854e-16, 3321.0, 0.0027067656628787518, -3.2606722015771084e-06, 8.183185795651582e-10, -3.2606722015771084e-06, 5.239014111424467e-09, -1.4793345584976358e-12, 8.183185795651582e-10, -1.4793345584976358e-12, 4.455826877547496e-16, 3322.0, 0.002705951686948538, -3.258710421505384e-06, 8.175800036980263e-10, -3.258710421505384e-06, 5.234285005428774e-09, -1.4775542985304146e-12, 8.175800036980263e-10, -1.4775542985304146e-12, 4.449124729352346e-16, 3323.0, 0.002705138409510255, -3.2567504604230635e-06,8.168423715204653e-10, -3.2567504604230635e-06, 5.229562116682018e-09, -1.4757766406484074e-12, 8.168423715204653e-10, -1.4757766406484074e-12, 4.442434227860221e-16, 3324.0, 0.002704325597733259, -3.2547923183301464e-06, 8.161055720101729e-10, -3.2547923183301464e-06, 5.224844557005781e-09, -1.4740016932718314e-12, 8.161055720101729e-10, -1.4740016932718314e-12, 4.435755637768917e-16, 3325.0, 0.002703513251617551, -3.2528357678529574e-06, 8.153696606783001e-10,-3.2528357678529574e-06, 5.220132770489272e-09, -1.4722293479804693e-12, 8.153696606783001e-10, -1.4722293479804693e-12, 4.4290894884740255e-16, 3326.0, 0.00270270137116313, -3.250881036365172e-06, 8.146346930359982e-10, -3.250881036365172e-06, 5.215426313043281e-09, -1.4704597131945385e-12, 8.146346930359982e-10, -1.4704597131945385e-12, 4.422435250579955e-16, 3327.0, 0.002701889956369996, -3.24892812386679e-06, 8.139005580609648e-10, -3.24892812386679e-06, 5.210726072846228e-09, -1.4686926804938216e-12, 8.139005580609648e-10, -1.4686926804938216e-12, 4.415792924086705e-16, 3328.0, 0.0027010792400687933, -3.2469770303578116e-06, 8.131673112643512e-10, -3.2469770303578116e-06, 5.206031161719693e-09, -1.466928358298536e-12, 8.131673112643512e-10, -1.466928358298536e-12, 4.409162508994276e-16, 3329.0, 0.002700268756598234, -3.2450277558382368e-06, 8.124349526461572e-10, -3.2450277558382368e-06, 5.201341579663676e-09, -1.4651667466086815e-12, 8.124349526461572e-10, -1.4651667466086815e-12, 4.402544270000464e-16, 3330.0, 0.0026994587387889624, -3.24308007293439e-06, 8.117034822063829e-10, -3.24308007293439e-06, 5.196658214856598e-09, -1.4634076285838238e-12, 8.117034822063829e-10, -1.4634076285838238e-12, 4.3959376777096763e-16, 3331.0, 0.0026986494194716215, -3.241134209019947e-06, 8.109728444338771e-10, -3.241134209019947e-06, 5.191980179120037e-09, -1.4616513294846145e-12, 8.109728444338771e-10, -1.4616513294846145e-12, 4.3893432615175055e-16, 3332.0, 0.0026978403329849243, -3.239189936721232e-06, 8.10243094839791e-10, -3.239189936721232e-06, 5.1873079165432046e-09, -1.459897524050402e-12, 8.10243094839791e-10, -1.459897524050402e-12, 4.3827604920283595e-16, 3333.0, 0.002697031944990158, -3.2372474834119203e-06, 8.095142889352758e-10, -3.2372474834119203e-06, 5.18264098303689e-09, -1.4581464291216206e-12,8.095142889352758e-10, -1.4581464291216206e-12, 4.3761896339400343e-16, 3334.0, 0.002696224022656679, -3.2353068490920123e-06, 8.087862601868778e-10, -3.2353068490920123e-06, 5.177979822690304e-09, -1.456397827857836e-12, 8.087862601868778e-10, -1.456397827857836e-12, 4.36963068725253e-16, 3335.0, 0.0026954165659844875, -3.233368033761508e-06, 8.080591751280508e-10, -3.233368033761508e-06, 5.173324435503446e-09, -1.4546519370994826e-12, 8.080591751280508e-10,-1.4546519370994826e-12, 4.36308338726805e-16, 3336.0, 0.0026946095749735832, -3.2314308100467315e-06, 8.073329227364923e-10, -3.2314308100467315e-06, 5.168674377387106e-09, -1.4529087568465604e-12, 8.073329227364923e-10, -1.4529087568465604e-12, 4.356547998684391e-16, 3337.0, 0.0026938030496239662, -3.2294954053213587e-06, 8.066075585233534e-10, -3.2294954053213587e-06, 5.164029648341284e-09, -1.451168070258635e-12, 8.066075585233534e-10, -1.451168070258635e-12, 4.350024256803757e-16, 3338.0, 0.0026929969899356365, -3.2275618195853895e-06, 8.058830824886343e-10, -3.2275618195853895e-06, 5.1593911365444e-09, -1.4494299857559234e-12, 8.058830824886343e-10, -1.4494299857559234e-12, 4.3435121616261475e-16, 3339.0, 0.002692191395908594, -3.2256298254651483e-06, 8.051594391211836e-10, -3.2256298254651483e-06, 5.1547575097288245e-09, -1.4476945033384259e-12, 8.051594391211836e-10, -1.4476945033384259e-12, 4.3370117131515628e-16, 3340.0, 0.002691386267542839, -3.2236996503343107e-06, 8.044366839321526e-10, -3.2236996503343107e-06, 5.150129656072977e-09, -1.4459617314263595e-12, 8.044366839321526e-10, -1.4459617314263595e-12, 4.330523176077799e-16, 3341.0, 0.0026905816048383713, -3.2217710668192012e-06, 8.037147614103901e-10, -3.2217710668192012e-06, 5.1455075755768576e-09, -1.44423145317929e-12, 8.037147614103901e-10, -1.44423145317929e-12, 4.3240462857070596e-16, 3342.0, 0.0026897776406258345, -3.2198443022934953e-06, 8.029937270670473e-10, -3.2198443022934953e-06, 5.140890824151256e-09, -1.4425037770174343e-12, 8.029937270670473e-10, -1.4425037770174343e-12, 4.317580777341549e-16, 3343.0, 0.0026889739092439413, -3.217919356757193e-06, 8.022735809021242e-10, -3.217919356757193e-06, 5.136279845885383e-09, -1.4407785945205753e-12, 8.022735809021242e-10, -1.4407785945205753e-12, 4.3111269156790634e-16, 3344.0, 0.002688170876353979, -3.2159960028366186e-06, 8.015542674044696e-10, -3.2159960028366186e-06, 5.131674196690028e-09, -1.4390561225291476e-12, 8.015542674044696e-10, -1.4390561225291476e-12, 4.3046847007196024e-16, 3345.0, 0.0026873680762946606, -3.214074467905448e-06, 8.008357865740834e-10, -3.214074467905448e-06, 5.127073876565191e-09, -1.4373361442027166e-12, 8.008357865740834e-10, -1.4373361442027166e-12, 4.298254132463166e-16, 3346.0, 0.002686565974727273, -3.212154524590005e-06, 8.001181939221169e-10, -3.212154524590005e-06, 5.1224793296000826e-09, -1.4356187679614996e-12, 8.001181939221169e-10, -1.4356187679614996e-12, 4.2918349462119586e-16, 3347.0, 0.002685764105990529, -3.210236400263966e-06, 7.994014894485701e-10, -3.210236400263966e-06, 5.117890111705492e-09, -1.4339039938054965e-12, 7.994014894485701e-10, -1.4339039938054965e-12, 4.285427406663776e-16, 3348.0, 0.002684962935745716, -3.2083200949273305e-06,7.986856176422918e-10, -3.2083200949273305e-06, 5.11330622288142e-09, -1.4321917133144901e-12, 7.986856176422918e-10, -1.4321917133144901e-12, 4.279031249120822e-16, 3349.0, 0.0026841622311621904, -3.206405381206423e-06, 7.97970578503282e-10, -3.206405381206423e-06, 5.108728107217075e-09, -1.4304820349086977e-12, 7.97970578503282e-10, -1.4304820349086977e-12, 4.2726464735830965e-16, 3350.0, 0.0026833617594093084, -3.2044922591012437e-06, 7.972563720315406e-10,-3.2044922591012437e-06, 5.104155320623249e-09, -1.428774850167902e-12, 7.972563720315406e-10, -1.428774850167902e-12, 4.2662730800506e-16, 3351.0, 0.0026825619861483574, -3.202580955985468e-06, 7.96543053738219e-10, -3.202580955985468e-06, 5.099587863099941e-09, -1.4270702675123204e-12, 7.96543053738219e-10, -1.4270702675123204e-12, 4.259911333221128e-16, 3352.0, 0.0026817626785486937, -3.2006714718590956e-06, 7.95830623623317e-10, -3.2006714718590956e-06, 5.0950261787363615e-09, -1.4253682869419526e-12, 7.95830623623317e-10, -1.4253682869419526e-12, 4.253560703699089e-16, 3353.0, 0.0026809638366103172, -3.1987635793484515e-06, 7.951189706645323e-10, -3.1987635793484515e-06, 5.0904698234433e-09, -1.4236686916163643e-12, 7.951189706645323e-10, -1.4236686916163643e-12, 4.2472217208800746e-16, 3354.0, 0.002680165460333228, -3.196857505827211e-06, 7.944082058841673e-10, -3.196857505827211e-06, 5.0859187972207565e-09, -1.42197169837599e-12, 7.944082058841673e-10, -1.42197169837599e-12, 4.240893855368493e-16, 3355.0, 0.0026793675497174263, -3.1949530239216983e-06, 7.936982737710707e-10, -3.1949530239216983e-06, 5.081373100068731e-09, -1.4202773072208297e-12, 7.936982737710707e-10, -1.4202773072208297e-12, 4.23457737186214e-16, 3356.0, 0.002678570104762912, -3.1930503610055894e-06, 7.929891743252426e-10, -3.1930503610055894e-06, 5.076833176076434e-09, -1.4185853013104488e-12, 7.929891743252426e-10, -1.4185853013104488e-12, 4.228272270361016e-16, 3357.0, 0.0026777731254696846, -3.1911492897052085e-06, 7.922809630578342e-10, -3.1911492897052085e-06, 5.072298137065445e-09, -1.4168958974852819e-12, 7.922809630578342e-10, -1.4168958974852819e-12, 4.2219782861673244e-16, 3358.0, 0.0026769766118377447, -3.1892498100205557e-06, 7.915735844576943e-10, -3.1892498100205557e-06, 5.067768871214184e-09, -1.4152089873251117e-12,7.915735844576943e-10, -1.4152089873251117e-12, 4.2156954192810656e-16, 3359.0, 0.002676180796697736, -3.1873521493253065e-06, 7.908670385248229e-10, -3.1873521493253065e-06, 5.063244934433442e-09, -1.4135245708299382e-12, 7.908670385248229e-10, -1.4135245708299382e-12, 4.2094239344000355e-16, 3360.0, 0.0026753852143883705, -3.185456307619461e-06, 7.901613252592199e-10, -3.185456307619461e-06, 5.0587263267232174e-09, -1.4118427564199787e-12, 7.901613252592199e-10,-1.4118427564199787e-12, 4.203163831524234e-16, 3361.0, 0.0026745900977402925, -3.1835620575293433e-06, 7.894564446608854e-10, -3.1835620575293433e-06, 5.054213048083511e-09, -1.4101633272547986e-12, 7.894564446608854e-10, -1.4101633272547986e-12, 4.1969145812580696e-16, 3362.0, 0.002673795446753502, -3.181669399054954e-06, 7.887523967298193e-10, -3.181669399054954e-06, 5.049705542603533e-09, -1.4084863917546153e-12, 7.887523967298193e-10, -1.4084863917546153e-12, 4.1906767129971337e-16, 3363.0, 0.002673001494258642, -3.179778559569968e-06, 7.880491814660218e-10, -3.179778559569968e-06, 5.045202922104863e-09, -1.406812058339646e-12, 7.880491814660218e-10, -1.406812058339646e-12, 4.1844496973458345e-16, 3364.0, 0.002672207774594426, -3.17788931170071e-06, 7.873468543806439e-10, -3.17788931170071e-06, 5.040705630676712e-09, -1.405140110169456e-12, 7.873468543806439e-10, -1.405140110169456e-12, 4.178234063699764e-16, 3365.0, 0.0026714145205914974, -3.176001882820856e-06, 7.866453044513833e-10, -3.176001882820856e-06, 5.036214112408288e-09, -1.4034706556642629e-12, 7.866453044513833e-10, -1.4034706556642629e-12, 4.1720292826633303e-16, 3366.0, 0.0026706219650804996, -3.1741158181830542e-06, 7.859446427005423e-10, -3.1741158181830542e-06, 5.031727479121173e-09, -1.4018036948240664e-12, 7.859446427005423e-10, -1.4018036948240664e-12, 4.1658356189343292e-16, 3367.0, 0.0026698296424001455, -3.1722317999083316e-06, 7.852447581058186e-10, -3.1722317999083316e-06, 5.027246618993786e-09, -1.4001392276488667e-12, 7.852447581058186e-10, -1.4001392276488667e-12, 4.159653072512761e-16, 3368.0, 0.0026690377853810787, -3.170349373249337e-06, 7.845457061783634e-10, -3.170349373249337e-06, 5.022770643847707e-09, -1.3984772541386636e-12, 7.845457061783634e-10, -1.3984772541386636e-12, 4.1534816433986253e-16, 3369.0, 0.002668246626853943, -3.1684685382060707e-06, 7.838475424293279e-10, -3.1684685382060707e-06, 5.018300441861356e-09, -1.39681766587324e-12, 7.838475424293279e-10, -1.39681766587324e-12, 4.1473208021963303e-16, 3370.0, 0.0026674557011574507, -3.1665892947785323e-06, 7.831501558364096e-10, -3.1665892947785323e-06, 5.013835124856314e-09, -1.3951605712728132e-12, 7.831501558364096e-10, -1.3951605712728132e-12, 4.141171342999264e-16, 3371.0, 0.0026666654739528894, -3.1647118703403976e-06, 7.824536019107597e-10, -3.1647118703403976e-06, 5.00937513692179e-09, -1.3935059703373831e-12, 7.824536019107597e-10, -1.3935059703373831e-12, 4.1350324717140386e-16, 3372.0, 0.002665875479578972, -3.162836037517991e-06, 7.817578806523784e-10, -3.162836037517991e-06, 5.004920478057784e-09, -1.3918537546467324e-12, 7.817578806523784e-10, -1.3918537546467324e-12, 4.1289047177362457e-16, 3373.0, 0.0026650861836969852, -3.1609617963113124e-06,7.810629920612655e-10, -3.1609617963113124e-06, 5.000471148264296e-09, -1.3902040326210785e-12, 7.810629920612655e-10, -1.3902040326210785e-12, 4.1227878163680896e-16, 3374.0, 0.0026642971206456423, -3.1590893740940373e-06, 7.803689361374211e-10, -3.1590893740940373e-06, 4.9960271475413265e-09, -1.3885568042604213e-12, 7.803689361374211e-10, -1.3885568042604213e-12, 4.11668176760957e-16, 3375.0, 0.0026635087560862303, -3.1572185434924904e-06, 7.796756573696939e-10,-3.1572185434924904e-06, 4.991588475888875e-09, -1.3869119611445435e-12, 7.796756573696939e-10, -1.3869119611445435e-12, 4.1105865714606874e-16, 3376.0, 0.002662720624357462, -3.155349531880347e-06, 7.789832112692352e-10, -3.155349531880347e-06, 4.987155133306942e-09, -1.3852695032734452e-12, 7.789832112692352e-10, -1.3852695032734452e-12, 4.1045022279214414e-16, 3377.0, 0.0026619331911206245, -3.153482111883932e-06, 7.78291597836045e-10, -3.153482111883932e-06, 4.982726675706317e-09, -1.3836295390673437e-12, 7.78291597836045e-10, -1.3836295390673437e-12, 4.098428736991832e-16, 3378.0, 0.002661145990714431, -3.1516162835032446e-06, 7.776008170701232e-10, -3.1516162835032446e-06, 4.9783035471762105e-09, -1.3819919601060215e-12, 7.776008170701232e-10, -1.3819919601060215e-12, 4.0923660986718594e-16, 3379.0, 0.002660359488800168, -3.1497520467382856e-06, 7.769108689714699e-10, -3.1497520467382856e-06, 4.973885747716622e-09, -1.3803568748096962e-12, 7.769108689714699e-10, -1.3803568748096962e-12, 4.0863140482637274e-16, 3380.0, 0.002659573219716549, -3.1478894015890546e-06, 7.762216980289338e-10, -3.1478894015890546e-06, 4.969473277327552e-09, -1.3787241747581502e-12, 7.762216980289338e-10, -1.3787241747581502e-12, 4.080272850465232e-16, 3381.0, 0.0026587876491248608, -3.146028575429227e-06, 7.755333597536662e-10, -3.146028575429227e-06, 4.965066136009e-09, -1.3770938599513838e-12, 7.755333597536662e-10, -1.3770938599513838e-12, 4.0742422405785775e-16, 3382.0, 0.0026580023113638163, -3.144169340885128e-06, 7.748458541456671e-10, -3.144169340885128e-06, 4.960663879671756e-09, -1.3754659303893968e-12, 7.748458541456671e-10, -1.3754659303893968e-12, 4.0682222186037636e-16, 3383.0, 0.002657217439264059, -3.142311925330432e-06, 7.741591256937852e-10, -3.142311925330432e-06, 4.956266952405031e-09, -1.3738404944924065e-12,7.741591256937852e-10, -1.3738404944924065e-12, 4.0622130492385864e-16, 3384.0, 0.002656433265656233, -3.140455874017789e-06, 7.734732299091718e-10, -3.140455874017789e-06, 4.9518749101196136e-09, -1.3722174438401957e-12, 7.734732299091718e-10, -1.3722174438401957e-12, 4.05621446778525e-16, 3385.0, 0.0026556493248790503, -3.1386016416945495e-06, 7.727881112806756e-10, -3.1386016416945495e-06, 4.9474886409939245e-09, -1.3705966700125471e-12, 7.727881112806756e-10,-1.3705966700125471e-12, 4.05022673894155e-16, 3386.0, 0.0026548660825937986, -3.136749000987038e-06, 7.721038253194479e-10, -3.136749000987038e-06, 4.943107256849544e-09, -1.3689783898498953e-12, 7.721038253194479e-10, -1.3689783898498953e-12, 4.044249333311895e-16, 3387.0, 0.0026540830731391907, -3.1348979518952547e-06, 7.714203165143374e-10, -3.1348979518952547e-06, 4.938730757686471e-09, -1.3673624949320229e-12, 7.714203165143374e-10, -1.3673624949320229e-12, 4.0382825155940803e-16, 3388.0, 0.0026533007621765137, -3.133048721792875e-06, 7.707376958876466e-10, -3.133048721792875e-06, 4.934360031683127e-09, -1.36574898525893e-12, 7.707376958876466e-10, -1.36574898525893e-12, 4.0323265504859024e-16, 3389.0, 0.0026525186840444803, -3.1312008559325477e-06, 7.700557969059219e-10, -3.1312008559325477e-06, 4.929994190661091e-09, -1.3641378608306165e-12, 7.700557969059219e-10, -1.3641378608306165e-12, 4.0263809085917693e-16, 3390.0, 0.0026517370715737343, -3.129354809061624e-06, 7.693747305914655e-10, -3.129354809061624e-06, 4.9256332346203635e-09, -1.3625290132268653e-12, 7.693747305914655e-10, -1.3625290132268653e-12, 4.020445589911681e-16, 3391.0, 0.002650956157594919, -3.1275103538064286e-06, 7.686944969442777e-10, -3.1275103538064286e-06, 4.921277607650154e-09, -1.3609226592881107e-12, 7.686944969442777e-10, -1.3609226592881107e-12, 4.014521123841229e-16, 3392.0, 0.0026501754764467478, -3.1256674901669612e-06, 7.680150404532071e-10, -3.1256674901669612e-06, 4.916927309750463e-09, -1.3593185821739184e-12, 7.680150404532071e-10, -1.3593185821739184e-12, 4.008606980984822e-16, 3393.0, 0.0026493952609598637, -3.123826218143222e-06, 7.673363611182538e-10, -3.123826218143222e-06, 4.91258189683208e-09, -1.3577169987247228e-12, 7.673363611182538e-10, -1.3577169987247228e-12, 4.0027031613424594e-16, 3394.0, 0.002648615511134267, -3.121986765108886e-06, 7.666585144505689e-10, -3.121986765108886e-06, 4.908241812984215e-09, -1.3561175836798722e-12, 7.666585144505689e-10, -1.3561175836798722e-12, 3.9968099296119376e-16, 3395.0, 0.002647836459800601, -3.1201489036902785e-06, 7.659814449390012e-10, -3.1201489036902785e-06, 4.903906614117659e-09, -1.3545206623000183e-12, 7.659814449390012e-10, -1.3545206623000183e-12, 3.9909270210954605e-16, 3396.0, 0.002647057641297579, -3.1183124065137235e-06, 7.653051525835508e-10, -3.1183124065137235e-06, 4.899576744321621e-09, -1.3529260177447266e-12, 7.653051525835508e-10, -1.3529260177447266e-12, 3.985054700490824e-16, 3397.0, 0.002646279288455844, -3.116477728326572e-06, 7.646296928953689e-10, -3.116477728326572e-06, 4.895251759506891e-09, -1.3513337584342144e-12, 7.646296928953689e-10, -1.3513337584342144e-12, 3.979192703100232e-16, 3398.0, 0.0026455014012753963, -3.1146446417551488e-06,7.639550103633042e-10, -3.1146446417551488e-06, 4.89093165967347e-09, -1.3497438843684817e-12, 7.639550103633042e-10, -1.3497438843684817e-12, 3.973340764225889e-16, 3399.0, 0.002644723979756236, -3.1128131467994535e-06, 7.632811604985079e-10, -3.1128131467994535e-06, 4.886617332999776e-09, -1.3481562871273112e-12, 7.632811604985079e-10, -1.3481562871273112e-12, 3.9674994132633866e-16, 3400.0, 0.002643947023898363, -3.110983470833162e-06, 7.626080877898289e-10,-3.110983470833162e-06, 4.8823074472181816e-09, -1.3465710751309201e-12, 7.626080877898289e-10, -1.3465710751309201e-12, 3.961668385514929e-16, 3401.0, 0.0026431705337017775, -3.109155159108923e-06, 7.619357922372672e-10, -3.109155159108923e-06, 4.878002890507105e-09, -1.3449881399590913e-12, 7.619357922372672e-10, -1.3449881399590913e-12, 3.9558474162827196e-16, 3402.0, 0.002642394509166479, -3.107328439000412e-06, 7.612642738408226e-10, -3.107328439000412e-06, 4.873703218777337e-09, -1.3434074816118247e-12, 7.612642738408226e-10, -1.3434074816118247e-12, 3.950036770264555e-16, 3403.0, 0.002641618950292468, -3.1055035378813045e-06, 7.605935326004953e-10, -3.1055035378813045e-06, 4.8694088761180865e-09, -1.3418292085093375e-12, 7.605935326004953e-10, -1.3418292085093375e-12, 3.9442364474604353e-16, 3404.0, 0.0026408438570797443, -3.10368000100425e-06, 7.599236240274365e-10, -3.10368000100425e-06, 4.865119418440145e-09, -1.3402533206516298e-12, 7.599236240274365e-10, -1.3402533206516298e-12, 3.93844644787036e-16, 3405.0, 0.002640069229528308, -3.1018582831165986e-06, 7.592544926104949e-10, -3.1018582831165986e-06, 4.860834845743511e-09, -1.3386796011982671e-12, 7.592544926104949e-10, -1.3386796011982671e-12, 3.9326665067965336e-16, 3406.0, 0.002639295067638159, -3.100037929471e-06, 7.585861383496706e-10, -3.100037929471e-06, 4.856555602117396e-09, -1.3371082669896839e-12, 7.585861383496706e-10, -1.3371082669896839e-12, 3.9268966242389557e-16, 3407.0, 0.0026385211385786533, -3.098219394814805e-06, 7.579185612449635e-10, -3.098219394814805e-06, 4.852281243472589e-09, -1.3355393180258801e-12, 7.579185612449635e-10, -1.3355393180258801e-12, 3.9211370648954225e-16, 3408.0, 0.002637747908011079, -3.0964024517743383e-06, 7.572517612963736e-10, -3.0964024517743383e-06, 4.848011769809091e-09, -1.3339725374664213e-12,7.572517612963736e-10, -1.3339725374664213e-12, 3.915387564068138e-16, 3409.0, 0.0026369751431047916, -3.0945871003495995e-06, 7.56585738503901e-10, -3.0945871003495995e-06, 4.8437476252161105e-09, -1.332408142151742e-12, 7.56585738503901e-10, -1.332408142151742e-12, 3.909648121757102e-16, 3410.0, 0.002636202611029148, -3.0927731131669134e-06, 7.559204928675456e-10, -3.0927731131669134e-06, 4.8394883656044385e-09, -1.3308460236616249e-12, 7.559204928675456e-10,-1.3308460236616249e-12, 3.9039190026601107e-16, 3411.0, 0.0026354307774454355, -3.090960944973631e-06, 7.552560798984587e-10, -3.090960944973631e-06, 4.835233990974075e-09, -1.32928618199607e-12, 7.552560798984587e-10, -1.32928618199607e-12, 3.898199677381572e-16, 3412.0, 0.0026346591766923666, -3.0891503683960764e-06, 7.545923885743377e-10, -3.0891503683960764e-06, 4.83098450132502e-09, -1.3277286171550773e-12, 7.545923885743377e-10, -1.3277286171550773e-12, 3.892490675317078e-16, 3413.0, 0.0026338882744312286, -3.08734138343425e-06, 7.539295299174853e-10, -3.08734138343425e-06, 4.826740340746483e-09, -1.3261733291386468e-12, 7.539295299174853e-10, -1.3261733291386468e-12, 3.8867914670710367e-16, 3414.0, 0.0026331176050007343, -3.0855339900881518e-06, 7.532673929055989e-10, -3.0855339900881518e-06, 4.822500621060044e-09, -1.3246203179467786e-12, 7.532673929055989e-10, -1.3246203179467786e-12, 3.88110258203904e-16, 3415.0, 0.0026323474012315273, -3.083727960984106e-06, 7.526060330498296e-10, -3.083727960984106e-06, 4.818266230444124e-09, -1.3230695835794726e-12, 7.526060330498296e-10, -1.3230695835794726e-12, 3.8754232261277e-16, 3416.0, 0.0026315776631236076, -3.081923750869464e-06, 7.519455058613289e-10, -3.081923750869464e-06, 4.814036724809512e-09, -1.3215210176165115e-12, 7.519455058613289e-10, -1.3215210176165115e-12, 3.8697541934304045e-16, 3417.0, 0.0026308083906769753, -3.08012113237055e-06, 7.512857003177942e-10, -3.08012113237055e-06, 4.809812104156208e-09, -1.31997483689833e-12, 7.512857003177942e-10, -1.31997483689833e-12, 3.8640949545515617e-16, 3418.0, 0.002630039816722274, -3.078319878113689e-06, 7.506266719303767e-10, -3.078319878113689e-06, 4.805592812573423e-09, -1.3184309330047106e-12, 7.506266719303767e-10, -1.3184309330047106e-12, 3.8584457741889676e-16, 3419.0, 0.002629271475598216, -3.076520442846231e-06, 7.499684206990764e-10, -3.076520442846231e-06, 4.801377961882736e-09, -1.3168891975154362e-12, 7.499684206990764e-10, -1.3168891975154362e-12, 3.852806387644826e-16, 3420.0, 0.002628503367304802, -3.074722371820826e-06, 7.493109466238934e-10, -3.074722371820826e-06, 4.797168440262567e-09, -1.3153498472709413e-12, 7.493109466238934e-10, -1.3153498472709413e-12, 3.847177059616933e-16, 3421.0, 0.002627735957503319, -3.0729261197848246e-06, 7.486541941936764e-10, -3.0729261197848246e-06, 4.792963359534497e-09, -1.313812557010574e-12, 7.486541941936764e-10, -1.313812557010574e-12, 3.841557260709697e-16, 3422.0, 0.002626969013363123, -3.0711312319908757e-06, 7.479982744307279e-10, -3.0711312319908757e-06, 4.788763607876945e-09, -1.3122776519949864e-12, 7.479982744307279e-10, -1.3122776519949864e-12, 3.8359475203187093e-16, 3423.0, 0.0026262025348842144, -3.0693381631863303e-06,7.473430763127453e-10, -3.0693381631863303e-06, 4.784568741200701e-09, -1.3107450238039609e-12, 7.473430763127453e-10, -1.3107450238039609e-12, 3.8303475737461743e-16, 3424.0, 0.0026254362892359495, -3.0675464586238377e-06, 7.4668865535088e-10, -3.0675464586238377e-06, 4.780378315416556e-09, -1.309214455597063e-12, 7.4668865535088e-10, -1.309214455597063e-12, 3.824757420992092e-16, 3425.0, 0.0026246707420796156, -3.065756345677073e-06, 7.46035011545132e-10,-3.065756345677073e-06, 4.776193218702929e-09, -1.3076862726349447e-12, 7.46035011545132e-10, -1.3076862726349447e-12, 3.819177326754258e-16, 3426.0, 0.0026239054277539253, -3.0639678243460367e-06, 7.453821448955011e-10, -3.0639678243460367e-06, 4.77201300697061e-09, -1.3061602580771714e-12, 7.453821448955011e-10, -1.3061602580771714e-12, 3.813606761637081e-16, 3427.0, 0.002623140811920166, -3.0621808946307283e-06, 7.447299998908363e-10, -3.0621808946307283e-06, 4.7678376802196e-09, -1.3046365203439603e-12, 7.447299998908363e-10, -1.3046365203439603e-12, 3.8080457256405606e-16, 3428.0, 0.0026223764289170504, -3.0603953291574726e-06, 7.440786320422887e-10, -3.0603953291574726e-06, 4.763666794360688e-09, -1.3031149510150941e-12, 7.440786320422887e-10, -1.3031149510150941e-12, 3.8024947481602887e-16, 3429.0, 0.002621612511575222, -3.0586115826736204e-06, 7.434280413498584e-10, -3.0586115826736204e-06, 4.7595012375722945e-09, -1.3015956585107902e-12, 7.434280413498584e-10, -1.3015956585107902e-12, 3.7969532998006735e-16, 3430.0, 0.002620849059894681, -3.0568294278054964e-06, 7.427781723023941e-10, -3.0568294278054964e-06, 4.755340565765209e-09, -1.3000785344108312e-12, 7.427781723023941e-10, -1.3000785344108312e-12, 3.791421645259511e-16, 3431.0, 0.0026200860738754272, -3.055048637179425e-06, 7.42129080411047e-10, -3.055048637179425e-06, 4.7511843348502225e-09, -1.2985635787152172e-12, 7.42129080411047e-10, -1.2985635787152172e-12, 3.785899784536801e-16, 3432.0, 0.002619323553517461, -3.0532694381690817e-06, 7.414807656758171e-10, -3.0532694381690817e-06, 4.747032988916544e-09, -1.2970508998441654e-12, 7.414807656758171e-10, -1.2970508998441654e-12, 3.7803871882369515e-16, 3433.0, 0.0026185614988207817, -3.0514918307744665e-06, 7.408331725855533e-10, -3.0514918307744665e-06, 4.742886972053384e-09, -1.2955403893774586e-12,7.408331725855533e-10, -1.2955403893774586e-12, 3.7748846504533507e-16, 3434.0, 0.00261779990978539, -3.0497158149955794e-06, 7.401863566514066e-10, -3.0497158149955794e-06, 4.738745396082322e-09, -1.2940320473150968e-12, 7.401863566514066e-10, -1.2940320473150968e-12, 3.7693913770926106e-16, 3435.0, 0.0026170385535806417, -3.047941163458745e-06, 7.39540262362226e-10, -3.047941163458745e-06, 4.734608705092569e-09, -1.2925259820772972e-12, 7.39540262362226e-10,-1.2925259820772972e-12, 3.763907897550323e-16, 3436.0, 0.0026162778958678246, -3.046168330911314e-06, 7.388949452291627e-10, -3.046168330911314e-06, 4.730476899084124e-09, -1.2910220852438425e-12, 7.388949452291627e-10, -1.2910220852438425e-12, 3.758433947128692e-16, 3437.0, 0.002615517470985651, -3.044396862605936e-06, 7.382503497410653e-10, -3.044396862605936e-06, 4.7263495339677775e-09, -1.2895202483945156e-12, 7.382503497410653e-10, -1.2895202483945156e-12, 3.752969525827718e-16, 3438.0, 0.0026147577445954084, -3.0426269859162858e-06, 7.376065314090852e-10, -3.0426269859162858e-06, 4.722227497921949e-09, -1.2880207967899682e-12, 7.376065314090852e-10, -1.2880207967899682e-12, 3.7475146336474e-16, 3439.0, 0.0026139982510358095, -3.0408587008423638e-06, 7.369634902332223e-10, -3.0408587008423638e-06, 4.718109902768219e-09, -1.2865234051695484e-12, 7.369634902332223e-10, -1.2865234051695484e-12, 3.742069270587739e-16, 3440.0, 0.002613239223137498, -3.03909200738417e-06, 7.363211707023254e-10, -3.03909200738417e-06, 4.713997192595798e-09, -1.2850281819534737e-12, 7.363211707023254e-10, -1.2850281819534737e-12, 3.7366331719509386e-16, 3441.0, 0.0026124806609004736, -3.0373266781680286e-06, 7.356795728163945e-10, -3.0373266781680286e-06, 4.709889367404685e-09, -1.2835351271417439e-12, 7.356795728163945e-10, -1.2835351271417439e-12, 3.7312068671325907e-16, 3442.0, 0.0026117225643247366, -3.0355629405676154e-06, 7.350387520865809e-10, -3.0355629405676154e-06, 4.70578642719488e-09, -1.2820443491545763e-12, 7.350387520865809e-10, -1.2820443491545763e-12, 3.7257898267371034e-16, 3443.0, 0.002610964933410287, -3.0338007945829304e-06, 7.343986530017332e-10, -3.0338007945829304e-06, 4.701687927877174e-09, -1.2805556311515365e-12, 7.343986530017332e-10, -1.2805556311515365e-12, 3.720382315462273e-16, 3444.0, 0.002610207535326481, -3.0320402402139734e-06, 7.337592755618516e-10, -3.0320402402139734e-06, 4.697594313540776e-09, -1.2790690815528416e-12, 7.337592755618516e-10, -1.2790690815528416e-12, 3.7149843333080987e-16, 3445.0, 0.002609450835734606, -3.030281050087069e-06, 7.331206752780872e-10, -3.030281050087069e-06, 4.6935055841856865e-09, -1.2775847003584917e-12, 7.331206752780872e-10, -1.2775847003584917e-12, 3.7095956155767853e-16, 3446.0, 0.0026086943689733744, -3.028523451575893e-06, 7.324827966392888e-10, -3.028523451575893e-06, 4.6894212957226955e-09, -1.2761024875684868e-12, 7.324827966392888e-10, -1.2761024875684868e-12, 3.7042161622683324e-16, 3447.0, 0.002607938600704074, -3.026767444680445e-06, 7.318456951566077e-10, -3.026767444680445e-06, 4.685341892241013e-09, -1.2746224431828268e-12, 7.318456951566077e-10, -1.2746224431828268e-12, 3.698846238080536e-16, 3448.0, 0.002607183065265417, -3.0250128020270495e-06,7.312093153188925e-10, -3.0250128020270495e-06, 4.6812673737406385e-09, -1.2731444587812946e-12, 7.312093153188925e-10, -1.2731444587812946e-12, 3.6934855783156005e-16, 3449.0, 0.0026064279954880476, -3.0232599783630576e-06, 7.305736571261434e-10, -3.0232599783630576e-06, 4.677197296132363e-09, -1.2716686427841073e-12, 7.305736571261434e-10, -1.2716686427841073e-12, 3.6881341829735255e-16, 3450.0, 0.0026056733913719654, -3.0215085189411184e-06, 7.299387205783603e-10,-3.0215085189411184e-06, 4.673132103505395e-09, -1.270194995191265e-12, 7.299387205783603e-10, -1.270194995191265e-12, 3.682792052054311e-16, 3451.0, 0.0026049192529171705, -3.019758423761232e-06, 7.293045611866944e-10, -3.019758423761232e-06, 4.669071795859736e-09, -1.2687235160027677e-12, 7.293045611866944e-10, -1.2687235160027677e-12, 3.677459450255753e-16, 3452.0, 0.002604165580123663, -3.018010147570749e-06, 7.286711234399945e-10, -3.018010147570749e-06, 4.6650159291061755e-09, -1.267254096798398e-12, 7.286711234399945e-10, -1.267254096798398e-12, 3.67213584818226e-16, 3453.0, 0.002603412140160799, -3.0162632356223185e-06, 7.280384073382606e-10, -3.0162632356223185e-06, 4.660964503244713e-09, -1.2657868459983734e-12, 7.280384073382606e-10, -1.2657868459983734e-12, 3.666821775229423e-16, 3454.0, 0.002602659398689866, -3.0145176879159408e-06, 7.274064128814928e-10, -3.0145176879159408e-06, 4.6569184064537694e-09, -1.2643217636026938e-12, 7.274064128814928e-10, -1.2643217636026938e-12, 3.661516702001651e-16, 3455.0, 0.0026019068900495768, -3.0127739591989666e-06, 7.267751955808421e-10, -3.0127739591989666e-06, 4.652876750554924e-09, -1.2628587411911418e-12, 7.267751955808421e-10, -1.2628587411911418e-12, 3.6562208931967396e-16, 3456.0, 0.0026011548470705748, -3.0110313673503697e-06, 7.261446444140063e-10, -3.0110313673503697e-06, 4.648839535548177e-09, -1.2613977787637176e-12, 7.261446444140063e-10, -1.2613977787637176e-12, 3.6509343488146887e-16, 3457.0, 0.00260040326975286, -3.0092905944911763e-06, 7.255148704032877e-10, -3.0092905944911763e-06, 4.6448072055227385e-09, -1.2599389847406384e-12, 7.255148704032877e-10, -1.2599389847406384e-12, 3.6456568041577024e-16, 3458.0, 0.0025996521580964327, -3.0075511858740356e-06, 7.24885818037535e-10, -3.0075511858740356e-06, 4.6407793163893984e-09, -1.258482359121904e-12,7.24885818037535e-10, -1.258482359121904e-12, 3.6403885239235767e-16, 3459.0, 0.0025989015121012926, -3.005813368872623e-06, 7.242574873167484e-10, -3.005813368872623e-06, 4.636756312237367e-09, -1.2570277934872975e-12, 7.242574873167484e-10, -1.2570277934872975e-12, 3.6351295081123115e-16, 3460.0, 0.00259815133176744, -3.0040771434869384e-06, 7.236298782409278e-10, -3.0040771434869384e-06, 4.6327377489774335e-09, -1.2555752878368187e-12, 7.236298782409278e-10,-1.2555752878368187e-12, 3.629879492026111e-16, 3461.0, 0.0025974013842642307, -3.0023422823433066e-06, 7.230029908100732e-10, -3.0023422823433066e-06, 4.628724070698809e-09, -1.2541248421704676e-12, 7.230029908100732e-10, -1.2541248421704676e-12, 3.624638475664975e-16, 3462.0, 0.0025966521352529526, -3.000609012815403e-06, 7.223768250241847e-10, -3.000609012815403e-06, 4.624714833312282e-09, -1.2526765649084615e-12, 7.223768250241847e-10, -1.2526765649084615e-12, 3.6194064590289036e-16, 3463.0, 0.002595903119072318, -2.9988771075295517e-06, 7.217514363944133e-10, -2.9988771075295517e-06, 4.620710480907064e-09, -1.2512304560508003e-12, 7.217514363944133e-10, -1.2512304560508003e-12, 3.614183706815693e-16, 3464.0, 0.002595154568552971, -2.9971467938594287e-06, 7.211267138984567e-10, -2.9971467938594287e-06, 4.616710569393945e-09, -1.2497862987570496e-12, 7.211267138984567e-10, -1.2497862987570496e-12, 3.6089699543275465e-16, 3465.0, 0.002594406483694911, -2.9954178444313584e-06, 7.205027130474662e-10, -2.9954178444313584e-06, 4.612715098772924e-09, -1.2483443098676439e-12, 7.205027130474662e-10, -1.2483443098676439e-12, 3.603765201564465e-16, 3466.0, 0.0025936588644981384, -2.9936907139926916e-06, 7.198794338414416e-10, -2.9936907139926916e-06, 4.608724513133211e-09, -1.2469043809623659e-12, 7.198794338414416e-10, -1.2469043809623659e-12, 3.598569448526448e-16, 3467.0, 0.0025929114781320095, -2.991964720422402e-06, 7.19256876280383e-10, -2.991964720422402e-06, 4.604738368385597e-09, -1.2454664036209984e-12, 7.19256876280383e-10, -1.2454664036209984e-12, 3.5933826952134953e-16, 3468.0, 0.0025921647902578115, -2.9902403184678406e-06, 7.186350403642905e-10, -2.9902403184678406e-06, 4.600757108619291e-09, -1.244030703104193e-12, 7.186350403642905e-10, -1.244030703104193e-12, 3.5882049416256074e-16, 3469.0, 0.0025914183352142572, -2.988517508129007e-06, 7.180139260931639e-10, -2.988517508129007e-06, 4.596780289745084e-09, -1.2425969541512982e-12, 7.180139260931639e-10, -1.2425969541512982e-12, 3.583036187762784e-16, 3470.0, 0.0025906723458319902, -2.986796289405902e-06, 7.173935334670034e-10, -2.986796289405902e-06, 4.592807911762975e-09, -1.2411652651825311e-12, 7.173935334670034e-10, -1.2411652651825311e-12, 3.577876168927229e-16, 3471.0, 0.0025899268221110106, -2.985076207551174e-06, 7.167738069746576e-10, -2.985076207551174e-06, 4.588839974672965e-09, -1.2397356361978917e-12, 7.167738069746576e-10, -1.2397356361978917e-12, 3.572725149816739e-16, 3472.0, 0.002589181764051318, -2.9833579446858494e-06, 7.161548576384291e-10, -2.9833579446858494e-06, 4.584876922564263e-09, -1.23830806719738e-12, 7.161548576384291e-10, -1.23830806719738e-12, 3.5675831304313134e-16, 3473.0, 0.002588437171652913, -2.9816410460625775e-06,7.155365744360154e-10, -2.9816410460625775e-06, 4.580918311347659e-09, -1.2368826666012134e-12, 7.155365744360154e-10, -1.2368826666012134e-12, 3.5624498460731563e-16, 3474.0, 0.0025876930449157953, -2.9799255116813583e-06, 7.149190683897189e-10, -2.9799255116813583e-06, 4.576964141023154e-09, -1.2354592175689572e-12, 7.149190683897189e-10, -1.2354592175689572e-12, 3.557325561440064e-16, 3475.0, 0.002586949151009321, -2.9782115689158672e-06, 7.143021729660859e-10,-2.9782115689158672e-06, 4.573014855679958e-09, -1.2340378285208287e-12, 7.143021729660859e-10, -1.2340378285208287e-12, 3.55221001183424e-16, 3476.0, 0.0025862057227641344, -2.9764992177661043e-06, 7.136860546985702e-10, -2.9764992177661043e-06, 4.5690700112288596e-09, -1.2326183910366106e-12, 7.136860546985702e-10, -1.2326183910366106e-12, 3.5471034619534805e-16, 3477.0, 0.002585462760180235, -2.9747880034847185e-06, 7.130706580760204e-10, -2.9747880034847185e-06, 4.56512960766986e-09, -1.2312011219567376e-12, 7.130706580760204e-10, -1.2312011219567376e-12, 3.5420053824021937e-16, 3478.0, 0.0025847202632576227, -2.9730786081927363e-06, 7.124559275872855e-10, -2.9730786081927363e-06, 4.561193645002959e-09, -1.229785804440775e-12, 7.124559275872855e-10, -1.229785804440775e-12, 3.5369163025759714e-16, 3479.0, 0.002583978231996298, -2.9713705771428067e-06, 7.118419187435165e-10, -2.9713705771428067e-06, 4.557262123228156e-09, -1.2283725469089402e-12, 7.118419187435165e-10, -1.2283725469089402e-12, 3.5318362224748137e-16, 3480.0, 0.0025832364335656166, -2.96966391033493e-06, 7.112286315447136e-10, -2.96966391033493e-06, 4.553335486434662e-09, -1.226961349361233e-12, 7.112286315447136e-10, -1.226961349361233e-12, 3.5267646127031286e-16, 3481.0, 0.0025824953336268663, -2.967958835142781e-06, 7.106160104797254e-10, -2.967958835142781e-06, 4.549413290533266e-09, -1.2255522117976536e-12, 7.106160104797254e-10, -1.2255522117976536e-12, 3.521701737958712e-16, 3482.0, 0.0025817544665187597, -2.966255124192685e-06, 7.100041110597033e-10, -2.966255124192685e-06, 4.545495091434759e-09, -1.2241450257979847e-12, 7.100041110597033e-10, -1.2241450257979847e-12, 3.516647598241564e-16, 3483.0, 0.0025810140650719404, -2.964553004858317e-06, 7.093929332846471e-10, -2.964553004858317e-06, 4.54158177731756e-09, -1.2227398997824435e-12,7.093929332846471e-10, -1.2227398997824435e-12, 3.5116021935516846e-16, 3484.0, 0.0025802741292864084, -2.9628522497660015e-06, 7.087824216434058e-10, -2.9628522497660015e-06, 4.53767290409246e-09, -1.2213367253308127e-12, 7.087824216434058e-10, -1.2213367253308127e-12, 3.5065655238890737e-16, 3485.0, 0.0025795346591621637, -2.961153086289414e-06, 7.081726316471304e-10, -2.961153086289414e-06, 4.533768915848668e-09, -1.2199356108633097e-12, 7.081726316471304e-10,-1.2199356108633097e-12, 3.5015373245559354e-16, 3486.0, 0.0025787954218685627, -2.9594552870548796e-06, 7.07563563295821e-10, -2.9594552870548796e-06, 4.529868924407765e-09, -1.2185365563799344e-12, 7.07563563295821e-10, -1.2185365563799344e-12, 3.4965181249478616e-16, 3487.0, 0.002578056650236249, -2.9577588520623976e-06, 7.069551610783265e-10, -2.9577588520623976e-06, 4.52597337385896e-09, -1.2171394534604696e-12, 7.069551610783265e-10, -1.2171394534604696e-12, 3.4915071309714644e-16, 3488.0, 0.0025773183442652225, -2.9560640086856438e-06, 7.063474249946466e-10, -2.9560640086856438e-06, 4.522082708291464e-09, -1.2157443021049152e-12, 7.063474249946466e-10, -1.2157443021049152e-12, 3.4865051367201317e-16, 3489.0, 0.0025765805039554834, -2.954370756924618e-06, 7.057404660670841e-10, -2.954370756924618e-06, 4.518196039526856e-09, -1.2143512107334886e-12, 7.057404660670841e-10, -1.2143512107334886e-12, 3.4815116127982716e-16, 3490.0, 0.0025758431293070316, -2.9526786420319695e-06, 7.05134117762185e-10, -2.9526786420319695e-06, 4.514313811654347e-09, -1.2129600709259725e-12, 7.05134117762185e-10, -1.2129600709259725e-12, 3.476526559205884e-16, 3491.0, 0.002575106220319867, -2.950988118755049e-06, 7.045285466134033e-10, -2.950988118755049e-06, 4.510436468763146e-09, -1.211570991102584e-12, 7.045285466134033e-10, -1.211570991102584e-12, 3.471550240640765e-16, 3492.0, 0.0025743695441633463, -2.9492991870938567e-06, 7.03923586087285e-10, -2.9492991870938567e-06, 4.506563122674834e-09, -1.210183862843106e-12, 7.03923586087285e-10, -1.210183862843106e-12, 3.4665821277073225e-16, 3493.0, 0.0025736333336681128, -2.947611619674717e-06, 7.03319402717284e-10, -2.947611619674717e-06, 4.50269466156783e-09, -1.2087986861475386e-12, 7.03319402717284e-10, -1.2087986861475386e-12, 3.4616230144989446e-16, 3494.0, 0.0025728975888341665, -2.94592541649763e-06, 7.027158299699465e-10, -2.94592541649763e-06, 4.4988301972637146e-09, -1.2074155694360988e-12, 7.027158299699465e-10, -1.2074155694360988e-12, 3.456672106922243e-16, 3495.0, 0.0025721623096615076, -2.9442405775625957e-06, 7.021129788675751e-10, -2.9442405775625957e-06, 4.494970617940908e-09, -1.2060344042885696e-12, 7.021129788675751e-10, -1.2060344042885696e-12, 3.4517296696750144e-16, 3496.0, 0.002571427496150136, -2.9425573302432895e-06, 7.015108494101696e-10, -2.9425573302432895e-06, 4.4911150354209894e-09, -1.2046551907049508e-12, 7.015108494101696e-10, -1.2046551907049508e-12, 3.446795967455054e-16, 3497.0, 0.002570692915469408, -2.9408756745397113e-06, 7.009093860865789e-10, -2.9408756745397113e-06, 4.48726389379317e-09, -1.2032779286852424e-12, 7.009093860865789e-10, -1.2032779286852424e-12, 3.4418704708667704e-16, 3498.0, 0.0025699588004499674, -2.9391951557045104e-06,7.00308588896803e-10, -2.9391951557045104e-06, 4.4834171930574485e-09, -1.2019026182294446e-12, 7.00308588896803e-10, -1.2019026182294446e-12, 3.436953444607959e-16, 3499.0, 0.002569225151091814, -2.9375162284850376e-06, 6.997085133519931e-10, -2.9375162284850376e-06, 4.479574933213826e-09, -1.2005293677577744e-12, 6.997085133519931e-10, -1.2005293677577744e-12, 3.4320448886786205e-16, 3500.0, 0.002568491967394948, -2.9358386655076174e-06, 6.99109103940998e-10,-2.9358386655076174e-06, 4.4757371142623015e-09, -1.1991579604297975e-12, 6.99109103940998e-10, -1.1991579604297975e-12, 3.4271448030787543e-16, 3501.0, 0.0025677592493593693, -2.9341626941459253e-06, 6.985103606638177e-10, -2.9341626941459253e-06, 4.471903736202876e-09, -1.1977886130859483e-12, 6.985103606638177e-10, -1.1977886130859483e-12, 3.422253187808361e-16, 3502.0, 0.002567026764154434, -2.932488087026286e-06, 6.979123390316033e-10, -2.932488087026286e-06, 4.4680747990355485e-09, -1.1964211088857923e-12, 6.979123390316033e-10, -1.1964211088857923e-12, 3.4173697781696437e-16, 3503.0, 0.00256629497744143, -2.930814844148699e-06, 6.973149835332038e-10, -2.930814844148699e-06, 4.46424985867111e-09, -1.195055664669764e-12, 6.973149835332038e-10, -1.195055664669764e-12, 3.412494838860399e-16, 3504.0, 0.0025655634235590696, -2.9291431928868406e-06, 6.96718294168619e-10, -2.9291431928868406e-06, 4.46042935919877e-09, -1.1936921720176463e-12, 6.96718294168619e-10, -1.1936921720176463e-12, 3.407628105182831e-16, 3505.0, 0.002564832102507353, -2.927472678493359e-06, 6.961223264490002e-10, -2.927472678493359e-06, 4.456613744707738e-09, -1.1923305225092218e-12, 6.961223264490002e-10, -1.1923305225092218e-12, 3.4027698418347358e-16, 3506.0, 0.002564101479947567, -2.925803755715606e-06, 6.955270248631962e-10, -2.925803755715606e-06, 4.452801682930385e-09, -1.190970932984925e-12, 6.955270248631962e-10, -1.190970932984925e-12, 3.397919784118317e-16, 3507.0, 0.002563371090218425, -2.9241364245535806e-06, 6.949323339000557e-10, -2.9241364245535806e-06, 4.4489945061343406e-09, -1.1896131866043214e-12, 6.949323339000557e-10, -1.1896131866043214e-12, 3.3930781967313705e-16, 3508.0, 0.00256264116615057, -2.9224702302599326e-06, 6.943384200930325e-10, -2.9224702302599326e-06, 4.4451917702303945e-09, -1.1882573917876282e-12,6.943384200930325e-10, -1.1882573917876282e-12, 3.3882445502783046e-16, 3509.0, 0.0025619117077440023, -2.9208056275820127e-06, 6.937451169086728e-10, -2.9208056275820127e-06, 4.441393031129337e-09, -1.1869035485348456e-12, 6.937451169086728e-10, -1.1869035485348456e-12, 3.3834193741547113e-16, 3510.0, 0.002561182714998722, -2.9191423891461454e-06, 6.931525353692791e-10, -2.9191423891461454e-06, 4.437598732920378e-09, -1.1855516568459734e-12, 6.931525353692791e-10,-1.1855516568459734e-12, 3.3786024036627945e-16, 3511.0, 0.002560454187914729, -2.9174807423260063e-06, 6.92560564452549e-10, -2.9174807423260063e-06, 4.433808875603518e-09, -1.1842016083007945e-12, 6.92560564452549e-10, -1.1842016083007945e-12, 3.37379390350035e-16, 3512.0, 0.00255972589366138, -2.9158202323742444e-06, 6.919693151807849e-10, -2.9158202323742444e-06, 4.430023015089546e-09, -1.182853511319526e-12, 6.919693151807849e-10, -1.182853511319526e-12, 3.3689933442717865e-16, 3513.0, 0.002558998065069318, -2.9141613140382105e-06, 6.913787320428355e-10, -2.9141613140382105e-06, 4.426241595467673e-09, -1.181507365902168e-12, 6.913787320428355e-10, -1.181507365902168e-12, 3.364200990674899e-16, 3514.0, 0.002558270702138543, -2.9125037599442294e-06, 6.907888150387009e-10, -2.9125037599442294e-06, 4.422464616737898e-09, -1.1801631720487205e-12, 6.907888150387009e-10, -1.1801631720487205e-12, 3.3594168427096885e-16, 3515.0, 0.002557543572038412, -2.9108477974659763e-06, 6.901995641683811e-10, -2.9108477974659763e-06, 4.418691634811012e-09, -1.1788208213389662e-12, 6.901995641683811e-10, -1.1788208213389662e-12, 3.3546409003761544e-16, 3516.0, 0.002556817140430212, -2.9091929718561005e-06, 6.896110349430273e-10, -2.9091929718561005e-06, 4.414923537865434e-09, -1.1774804221931223e-12, 6.896110349430273e-10, -1.1774804221931223e-12, 3.3498731636742967e-16, 3517.0, 0.0025560909416526556, -2.9075397378619527e-06, 6.890231163403371e-10, -2.9075397378619527e-06, 4.411158993633535e-09, -1.1761418661909717e-12, 6.890231163403371e-10, -1.1761418661909717e-12, 3.3451133679063196e-16, 3518.0, 0.0025553652085363865, -2.9058878681098577e-06, 6.884358638714616e-10, -2.9058878681098577e-06, 4.407399334382944e-09, -1.1748052617527316e-12, 6.884358638714616e-10, -1.1748052617527316e-12, 3.340361777770019e-16, 3519.0, 0.0025546399410814047, -2.9042373625998152e-06, 6.878492775364009e-10, -2.9042373625998152e-06, 4.403643671935242e-09, -1.1734705004581847e-12, 6.878492775364009e-10, -1.1734705004581847e-12, 3.335618393265395e-16, 3520.0, 0.0025539149064570665, -2.9025882213318255e-06, 6.872634128463062e-10, -2.9025882213318255e-06, 4.399892450379639e-09, -1.1721376907275483e-12, 6.872634128463062e-10, -1.1721376907275483e-12, 3.3308829496946513e-16, 3521.0, 0.0025531903374940157, -2.9009404443058884e-06, 6.866781587788751e-10, -2.9009404443058884e-06, 4.396145225626924e-09, -1.170806724140605e-12, 6.866781587788751e-10, -1.170806724140605e-12, 3.3261554470577883e-16, 3522.0, 0.002552466234192252, -2.8992942588956794e-06, 6.860935708452587e-10, -2.8992942588956794e-06, 4.392402441766308e-09, -1.1694777091175723e-12, 6.860935708452587e-10, -1.1694777091175723e-12, 3.3214361500526017e-16, 3523.0, 0.002551742596551776, -2.897649437727523e-06,6.855097045566083e-10, -2.897649437727523e-06, 4.38866365470858e-09, -1.1681505372382328e-12, 6.855097045566083e-10, -1.1681505372382328e-12, 3.3167250586790917e-16, 3524.0, 0.002551019424572587, -2.8960059808014194e-06, 6.849264488906215e-10, -2.8960059808014194e-06, 4.384929308542951e-09, -1.1668253169228038e-12, 6.849264488906215e-10, -1.1668253169228038e-12, 3.312021643541666e-16, 3525.0, 0.0025502964854240417, -2.8943638881173683e-06, 6.843438593584494e-10,-2.8943638881173683e-06, 4.38119895918021e-09, -1.1655018313308507e-12, 6.843438593584494e-10, -1.1655018313308507e-12, 3.307326434035917e-16, 3526.0, 0.002549574011936784, -2.89272315967537e-06, 6.837619359600922e-10, -2.89272315967537e-06, 4.377473050709568e-09, -1.1641802973028081e-12, 6.837619359600922e-10, -1.1641802973028081e-12, 3.3026391654640487e-16, 3527.0, 0.002548852004110813, -2.8910837954754243e-06, 6.831806786955497e-10, -2.8910837954754243e-06, 4.373751583131025e-09, -1.162860714838676e-12, 6.831806786955497e-10, -1.162860714838676e-12, 3.297960102523857e-16, 3528.0, 0.002548130229115486, -2.8894460228912067e-06, 6.826000320536707e-10, -2.8894460228912067e-06, 4.37003411235537e-09, -1.16154286709802e-12, 6.826000320536707e-10, -1.16154286709802e-12, 3.2932887158197493e-16, 3529.0, 0.00254740915261209, -2.8878096145490417e-06, 6.820201070567578e-10, -2.8878096145490417e-06, 4.366320638382604e-09, -1.1602269709212742e-12, 6.820201070567578e-10, -1.1602269709212742e-12, 3.2886252700495223e-16, 3530.0, 0.0025466883089393377, -2.886174343075254e-06, 6.814407926825083e-10, -2.886174343075254e-06, 4.362611605301936e-09, -1.1589129178882218e-12, 6.814407926825083e-10, -1.1589129178882218e-12, 3.283969765213176e-16, 3531.0, 0.002545967698097229, -2.8845406632171944e-06, 6.808621444420737e-10, -2.8845406632171944e-06, 4.358907013113367e-09, -1.1576007079988626e-12, 6.808621444420737e-10, -1.1576007079988626e-12, 3.27932220131071e-16, 3532.0, 0.0025452477857470512, -2.8829083476011874e-06, 6.802841623354539e-10, -2.8829083476011874e-06, 4.355206417727686e-09, -1.1562904496734139e-12, 6.802841623354539e-10, -1.1562904496734139e-12, 3.2746825783421245e-16, 3533.0, 0.002544528106227517, -2.881277396227233e-06, 6.797068463626488e-10, -2.881277396227233e-06, 4.351509819144894e-09, -1.1549819260714411e-12,6.797068463626488e-10, -1.1549819260714411e-12, 3.2700506316096236e-16, 3534.0, 0.0025438088923692703, -2.8796478090953315e-06, 6.791301965236585e-10, -2.8796478090953315e-06, 4.347817661454201e-09, -1.1536752456131616e-12, 6.791301965236585e-10, -1.1536752456131616e-12, 3.265426890508799e-16, 3535.0, 0.002543090144172311, -2.8780195862054825e-06, 6.785541573073317e-10, -2.8780195862054825e-06, 4.344129500566396e-09, -1.1523705167187925e-12, 6.785541573073317e-10,-1.1523705167187925e-12, 3.2608108256440593e-16, 3536.0, 0.0025423718616366386, -2.876392727557686e-06, 6.779787842248197e-10, -2.876392727557686e-06, 4.34044533648148e-09, -1.1510675225478995e-12, 6.779787842248197e-10, -1.1510675225478995e-12, 3.256202437015404e-16, 3537.0, 0.00254165381193161, -2.874767460525618e-06, 6.774040772761225e-10, -2.874767460525618e-06, 4.336765613288662e-09, -1.1497664799409169e-12, 6.774040772761225e-10, -1.1497664799409169e-12, 3.251601989320629e-16, 3538.0, 0.002540936227887869, -2.873143330361927e-06, 6.768299809500888e-10, -2.873143330361927e-06, 4.333089886898733e-09, -1.1484671720574102e-12, 6.768299809500888e-10, -1.1484671720574102e-12, 3.2470092178619385e-16, 3539.0, 0.002540219109505415, -2.871520791813964e-06, 6.762566062690212e-10, -2.871520791813964e-06, 4.329418601400903e-09, -1.147169815737814e-12, 6.762566062690212e-10, -1.147169815737814e-12, 3.2424243873371286e-16, 3540.0, 0.0025395022239536047, -2.8698993901343783e-06, 6.756837866994658e-10, -2.8698993901343783e-06, 4.325751312705961e-09, -1.1458741941416939e-12, 6.756837866994658e-10, -1.1458741941416939e-12, 3.237847233048403e-16, 3541.0, 0.0025387860368937254, -2.8682793526968453e-06, 6.751116887748765e-10, -2.8682793526968453e-06, 4.322088020813908e-09, -1.144580415689267e-12, 6.751116887748765e-10, -1.144580415689267e-12, 3.233278019693558e-16, 3542.0, 0.0025380700826644897, -2.8666609068750404e-06, 6.745402014729507e-10, -2.8666609068750404e-06, 4.318429169813953e-09, -1.1432884803805332e-12, 6.745402014729507e-10, -1.1432884803805332e-12, 3.228716482574798e-16, 3543.0, 0.0025373543612658978, -2.865043825295288e-06, 6.739693803048397e-10, -2.865043825295288e-06, 4.314774315616887e-09, -1.1419983882154927e-12, 6.739693803048397e-10, -1.1419983882154927e-12, 3.224162356994326e-16, 3544.0, 0.0025366393383592367, -2.863427880583913e-06, 6.733991697593922e-10, -2.863427880583913e-06, 4.31112345822271e-09, -1.1407100307739282e-12, 6.733991697593922e-10, -1.1407100307739282e-12, 3.2196161723477344e-16, 3545.0, 0.0025359245482832193, -2.861813527488266e-06, 6.728296253477595e-10, -2.861813527488266e-06, 4.307476597631421e-09, -1.1394235164760569e-12, 6.728296253477595e-10, -1.1394235164760569e-12, 3.2150776639372275e-16, 3546.0, 0.0025352102238684893, -2.8602003112609964e-06, 6.722606915587903e-10, -2.8602003112609964e-06, 4.303834177932231e-09, -1.1381388453218788e-12, 6.722606915587903e-10, -1.1381388453218788e-12, 3.210546831762805e-16, 3547.0, 0.0025344963651150465, -2.8585886866494548e-06, 6.716924239036359e-10, -2.8585886866494548e-06, 4.300195755035929e-09, -1.136856017311394e-12, 6.716924239036359e-10, -1.136856017311394e-12, 3.206023675824467e-16, 3548.0, 0.0025337827391922474, -2.8569781989062903e-06,6.711248223822963e-10, -2.8569781989062903e-06, 4.296561328942516e-09, -1.135574924024385e-12, 6.711248223822963e-10, -1.135574924024385e-12, 3.2015081961222136e-16, 3549.0, 0.0025330695789307356, -2.855369302778854e-06, 6.705578314836202e-10, -2.855369302778854e-06, 4.292931343741202e-09, -1.1342956738810694e-12, 6.705578314836202e-10, -1.1342956738810694e-12, 3.1970003926560446e-16, 3550.0, 0.002532356884330511, -2.8537617708934704e-06, 6.699914512076077e-10,-2.8537617708934704e-06, 4.289304911253566e-09, -1.133018266881447e-12, 6.699914512076077e-10, -1.133018266881447e-12, 3.192500000728164e-16, 3551.0, 0.0025316444225609303, -2.852155375876464e-06, 6.6942573706541e-10, -2.852155375876464e-06, 4.285682919658029e-09, -1.1317425946053006e-12, 6.6942573706541e-10, -1.1317425946053006e-12, 3.188007285036368e-16, 3552.0, 0.0025309326592832804, -2.85055034510151e-06, 6.68860689057027e-10, -2.85055034510151e-06, 4.282064924865381e-09, -1.1304687654728474e-12, 6.68860689057027e-10, -1.1304687654728474e-12, 3.1835222455806565e-16, 3553.0, 0.002530221128836274, -2.8489469059422845e-06, 6.682962516713076e-10, -2.8489469059422845e-06, 4.278450926875621e-09, -1.1291966710638701e-12, 6.682962516713076e-10, -1.1291966710638701e-12, 3.1790446176632335e-16, 3554.0, 0.0025295098312199116, -2.847344603651436e-06, 6.677324249082517e-10, -2.847344603651436e-06, 4.27484092568875e-09, -1.127926419798586e-12, 6.677324249082517e-10, -1.127926419798586e-12, 3.174574665981895e-16, 3555.0, 0.00252879923209548, -2.8457438929763157e-06, 6.671692642790106e-10, -2.8457438929763157e-06, 4.271235365393977e-09, -1.126657903256778e-12, 6.671692642790106e-10, -1.126657903256778e-12, 3.170112390536641e-16, 3556.0, 0.002528088865801692, -2.8441443191695726e-06, 6.66606714272433e-10, -2.8441443191695726e-06, 4.267633357812883e-09, -1.1253912298586632e-12, 6.66606714272433e-10, -1.1253912298586632e-12, 3.1656575266296753e-16, 3557.0, 0.0025273789651691914, -2.842546109604882e-06, 6.660448303996702e-10, -2.842546109604882e-06, 4.264035791123888e-09, -1.1241262911840244e-12, 6.660448303996702e-10, -1.1241262911840244e-12, 3.161210074260998e-16, 3558.0, 0.0025266692973673344, -2.8409492642822443e-06, 6.65483557149571e-10, -2.8409492642822443e-06, 4.260442221237781e-09, -1.1228630872328615e-12,6.65483557149571e-10, -1.1228630872328615e-12, 3.1567700334306096e-16, 3559.0, 0.0025259600952267647, -2.839353783201659e-06, 6.649228945221353e-10, -2.839353783201659e-06, 4.256852648154563e-09, -1.121601726425392e-12, 6.649228945221353e-10, -1.121601726425392e-12, 3.1523376688363054e-16, 3560.0, 0.0025252513587474823, -2.8377596663631266e-06, 6.643628980285143e-10, -2.8377596663631266e-06, 4.253267071874234e-09, -1.1203421003413983e-12, 6.643628980285143e-10,-1.1203421003413983e-12, 3.1479127157802897e-16, 3561.0, 0.0025245430879294872, -2.8361669137666468e-06, 6.63803512157557e-10, -2.8361669137666468e-06, 4.249685492396793e-09, -1.1190843174010978e-12, 6.63803512157557e-10, -1.1190843174010978e-12, 3.1434951742625626e-16, 3562.0, 0.0025238352827727795, -2.8345755254122196e-06, 6.632447369092631e-10, -2.8345755254122196e-06, 4.246107909722241e-09, -1.1178282691842734e-12, 6.632447369092631e-10, -1.1178282691842734e-12, 3.13908530898092e-16, 3563.0, 0.0025231277104467154, -2.8329852739261696e-06, 6.62686627794784e-10, -2.8329852739261696e-06, 4.2425343238505775e-09, -1.1165739556909249e-12, 6.62686627794784e-10, -1.1165739556909249e-12, 3.1346825905397696e-16, 3564.0, 0.002522420370951295, -2.8313966140558477e-06, 6.621291293029685e-10, -2.8313966140558477e-06, 4.238964734781803e-09, -1.1153213769210524e-12, 6.621291293029685e-10, -1.1153213769210524e-12, 3.130287283636908e-16, 3565.0, 0.0025217137299478054, -2.829809091053903e-06, 6.615722414338165e-10, -2.829809091053903e-06, 4.2353991425159165e-09, -1.1140705328746559e-12, 6.615722414338165e-10, -1.1140705328746559e-12, 3.1258993882723345e-16, 3566.0, 0.0025210073217749596, -2.828222932294011e-06, 6.610159641873281e-10, -2.828222932294011e-06, 4.231837547052919e-09, -1.1128215319719525e-12, 6.610159641873281e-10, -1.1128215319719525e-12, 3.1215189044460497e-16, 3567.0, 0.002520301379263401, -2.826638137776172e-06, 6.604603530746544e-10, -2.826638137776172e-06, 4.22827994839281e-09, -1.1115742657927252e-12, 6.604603530746544e-10, -1.1115742657927252e-12, 3.1171458321580534e-16, 3568.0, 0.00251959590241313, -2.825054707500385e-06, 6.599053525846443e-10, -2.825054707500385e-06, 4.22472634653559e-09, -1.1103286259167566e-12, 6.599053525846443e-10, -1.1103286259167566e-12, 3.1127801714083455e-16, 3569.0, 0.0025188906583935022, -2.823472641466651e-06, 6.593509627172978e-10, -2.823472641466651e-06, 4.2211767414812584e-09, -1.1090848291844813e-12, 6.593509627172978e-10, -1.1090848291844813e-12, 3.10842165749913e-16, 3570.0, 0.002518185880035162, -2.8218919396749698e-06, 6.587971834726147e-10, -2.8218919396749698e-06, 4.217631577319025e-09, -1.1078427671756819e-12, 6.587971834726147e-10, -1.1078427671756819e-12, 3.104070555128203e-16, 3571.0, 0.002517481567338109, -2.8203123747516656e-06, 6.582440703617465e-10, -2.8203123747516656e-06, 4.214089521781261e-09, -1.1066024398903584e-12, 6.582440703617465e-10, -1.1066024398903584e-12, 3.0997268642955647e-16, 3572.0, 0.0025167774874716997, -2.8187344014440896e-06, 6.576915123623905e-10, -2.8187344014440896e-06, 4.210551907135596e-09, -1.105363847328511e-12, 6.576915123623905e-10, -1.105363847328511e-12, 3.0953903203034187e-16, 3573.0, 0.0025160738732665777, -2.8171575650048908e-06,6.571396204968494e-10, -2.8171575650048908e-06, 4.207018289292819e-09, -1.1041269894901395e-12, 6.571396204968494e-10, -1.1041269894901395e-12, 3.091061187849561e-16, 3574.0, 0.002515370724722743, -2.8155820928077446e-06, 6.565883392539718e-10, -2.8155820928077446e-06, 4.2034886682529304e-09, -1.102891866375244e-12, 6.565883392539718e-10, -1.102891866375244e-12, 3.086739202236196e-16, 3575.0, 0.002514667809009552, -2.8140077574789757e-06, 6.560376686337577e-10,-2.8140077574789757e-06, 4.199963044015931e-09, -1.1016584779838245e-12, 6.560376686337577e-10, -1.1016584779838245e-12, 3.0824243634633235e-16, 3576.0, 0.0025139653589576483, -2.812435013765935e-06, 6.554876086362071e-10, -2.812435013765935e-06, 4.19644097249261e-09, -1.100426824315881e-12, 6.554876086362071e-10, -1.100426824315881e-12, 3.0781169362287394e-16, 3577.0, 0.002513263374567032, -2.8108634069212712e-06, 6.549381592613202e-10, -2.8108634069212712e-06, 4.192922897772178e-09, -1.0991969053714135e-12, 6.549381592613202e-10, -1.0991969053714135e-12, 3.0738166558346477e-16, 3578.0, 0.0025125618558377028, -2.8092933916923357e-06, 6.543893205090967e-10, -2.8092933916923357e-06, 4.189409263943844e-09, -1.0979686127302046e-12, 6.543893205090967e-10, -1.0979686127302046e-12, 3.0695237869788445e-16, 3579.0, 0.0025118605699390173, -2.8077245133317774e-06, 6.538410923795368e-10, -2.8077245133317774e-06, 4.185899182829189e-09, -1.096742163232689e-12, 6.538410923795368e-10, -1.096742163232689e-12, 3.0652378002657377e-16, 3580.0, 0.002511159749701619, -2.8061567718395963e-06, 6.532934748726404e-10, -2.8061567718395963e-06, 4.182392654428213e-09, -1.0955173400384322e-12, 6.532934748726404e-10, -1.0955173400384322e-12, 3.0609592250909195e-16, 3581.0, 0.0025104591622948647, -2.8045906219631433e-06, 6.527464679884076e-10, -2.8045906219631433e-06, 4.1788905669193355e-09, -1.094294143147434e-12, 6.527464679884076e-10, -1.094294143147434e-12, 3.0566877967565936e-16, 3582.0, 0.0025097590405493975, -2.8030256089550676e-06, 6.522001272379896e-10, -2.8030256089550676e-06, 4.1753924762133465e-09, -1.093072789400129e-12, 6.522001272379896e-10, -1.093072789400129e-12, 3.0524232505649642e-16, 3583.0, 0.0025090593844652176, -2.8014619601890445e-06, 6.516543415990839e-10, -2.8014619601890445e-06, 4.171897938221036e-09, -1.0918530619560829e-12,6.516543415990839e-10, -1.0918530619560829e-12, 3.0481661159116233e-16, 3584.0, 0.002508360194042325, -2.799899675665074e-06, 6.511091665828417e-10, -2.799899675665074e-06, 4.168407397031615e-09, -1.0906350692355127e-12, 6.511091665828417e-10, -1.0906350692355127e-12, 3.043916128098775e-16, 3585.0, 0.002507661236450076, -2.798338528009481e-06, 6.50564602189263e-10, -2.798338528009481e-06, 4.164920852645082e-09, -1.0894188112384184e-12, 6.50564602189263e-10,-1.0894188112384184e-12, 3.039673022428623e-16, 3586.0, 0.0025069627445191145, -2.7967789719696157e-06, 6.500206484183479e-10, -2.7967789719696157e-06, 4.161437860972228e-09, -1.088204179544583e-12, 6.500206484183479e-10, -1.088204179544583e-12, 3.0354370635989633e-16, 3587.0, 0.00250626471824944, -2.7952205527981278e-06, 6.494773052700964e-10, -2.7952205527981278e-06, 4.1579593101914725e-09, -1.0869912825742234e-12, 6.494773052700964e-10, -1.0869912825742234e-12, 3.031208251609796e-16, 3588.0, 0.0025055669248104095, -2.793663270495017e-06, 6.489345727445084e-10, -2.793663270495017e-06, 4.154484312124396e-09, -1.0857801203273398e-12, 6.489345727445084e-10, -1.0857801203273398e-12, 3.0269865864611216e-16, 3589.0, 0.002504869597032666, -2.7921075798076345e-06, 6.483924508415839e-10, -2.7921075798076345e-06, 4.151012866770998e-09, -1.084570584383715e-12, 6.483924508415839e-10, -1.084570584383715e-12, 3.0227720681529394e-16, 3590.0, 0.0025041725020855665, -2.790553025988629e-06, 6.478508840501718e-10, -2.790553025988629e-06, 4.147545862309698e-09, -1.083362674743349e-12, 6.478508840501718e-10, -1.083362674743349e-12, 3.0185641672896577e-16, 3591.0, 0.002503476105630398, -2.7889998364116764e-06, 6.473099833925744e-10, -2.7889998364116764e-06, 4.144082410562078e-09, -1.082156608246676e-12, 6.473099833925744e-10, -1.082156608246676e-12, 3.0143636779646644e-16, 3592.0, 0.0025027799420058727, -2.787447783703101e-06, 6.467696378464893e-10, -2.787447783703101e-06, 4.140622955617346e-09, -1.0809520596330446e-12, 6.467696378464893e-10, -1.0809520596330446e-12, 3.0101700707823675e-16, 3593.0, 0.0025020840112119913, -2.7858973226102535e-06, 6.46229958434219e-10, -2.7858973226102535e-06, 4.1371670533862925e-09, -1.0797492457428892e-12, 6.46229958434219e-10, -1.0797492457428892e-12, 3.005983345742767e-16, 3594.0, 0.002501388546079397, -2.7843479983857833e-06, 6.456908341334611e-10, -2.7843479983857833e-06, 4.133715592047338e-09, -1.0785481665762098e-12, 6.456908341334611e-10, -1.0785481665762098e-12, 3.001803767543659e-16, 3595.0, 0.0025006935466080904, -2.7827998110296903e-06, 6.451522649442154e-10, -2.7827998110296903e-06, 4.130267239332852e-09, -1.0773486052925718e-12, 6.451522649442154e-10, -1.0773486052925718e-12, 2.9976310714872477e-16, 3596.0, 0.002499999012798071, -2.7812532152893255e-06, 6.446143618887845e-10, -2.7812532152893255e-06, 4.126823327510465e-09, -1.076150887152627e-12, 6.446143618887845e-10, -1.076150887152627e-12, 2.9934655222713287e-16, 3597.0, 0.002499304711818695, -2.779707756417338e-06, 6.440770139448659e-10, -2.779707756417338e-06, 4.1233829684017564e-09, -1.0749546868957238e-12, 6.440770139448659e-10, -1.0749546868957238e-12, 2.989306855198106e-16, 3598.0, 0.0024986108765006065, -2.7781634344137274e-06,6.435402766236109e-10, -2.7781634344137274e-06, 4.119946162006727e-09, -1.0737602213622965e-12, 6.435402766236109e-10, -1.0737602213622965e-12, 2.98515507026758e-16, 3599.0, 0.0024979172740131617, -2.7766204766521696e-06, 6.430041499250194e-10, -2.7766204766521696e-06, 4.116513796503796e-09, -1.072567382132128e-12, 6.430041499250194e-10, -1.072567382132128e-12, 2.98101016747975e-16, 3600.0, 0.0024972243700176477, -2.7750788831326645e-06, 6.424686338490915e-10,-2.7750788831326645e-06, 4.113084983714543e-09, -1.0713762776254354e-12, 6.424686338490915e-10, -1.0713762776254354e-12, 2.976872146834617e-16, 3601.0, 0.002496531466022134, -2.773538653855212e-06, 6.419336728846758e-10, -2.773538653855212e-06, 4.10965972363897e-09, -1.0701866910017843e-12, 6.419336728846758e-10, -1.0701866910017843e-12, 2.97274100833218e-16, 3602.0, 0.002495839260518551, -2.771999561446137e-06, 6.413993225429238e-10, -2.771999561446137e-06, 4.106238460366285e-09, -1.0689988391016092e-12, 6.413993225429238e-10, -1.0689988391016092e-12, 2.9686167519724397e-16, 3603.0, 0.0024951472878456116, -2.7704618332791142e-06, 6.408655828238352e-10, -2.7704618332791142e-06, 4.102821193896489e-09, -1.06781272192491e-12, 6.408655828238352e-10, -1.06781272192491e-12, 2.964499377755396e-16, 3604.0, 0.0024944557808339596, -2.7689254693541443e-06, 6.40332398216259e-10, -2.7689254693541443e-06, 4.099407480140371e-09, -1.0666281226312524e-12, 6.40332398216259e-10, -1.0666281226312524e-12, 2.960388885681048e-16, 3605.0, 0.0024937645066529512, -2.7673902422975516e-06, 6.397998242313463e-10, -2.7673902422975516e-06, 4.095997319097933e-09, -1.0654451496408535e-12, 6.397998242313463e-10, -1.0654451496408535e-12, 2.956285275749397e-16, 3606.0, 0.00249307369813323, -2.765856152109336e-06, 6.392678608690971e-10, -2.765856152109336e-06, 4.092591154858383e-09, -1.0642639113739305e-12, 6.392678608690971e-10, -1.0642639113739305e-12, 2.9521882832626465e-16, 3607.0, 0.0024923833552747965, -2.7643236535368487e-06, 6.387364526183603e-10, -2.7643236535368487e-06, 4.089188987421721e-09, -1.0630842994102663e-12, 6.387364526183603e-10, -1.0630842994102663e-12, 2.9480981729185923e-16, 3608.0, 0.0024916932452470064, -2.7627922918327386e-06, 6.38205654990287e-10, -2.7627922918327386e-06, 4.085790372698739e-09, -1.0619062053296435e-12,6.38205654990287e-10, -1.0619062053296435e-12, 2.9440149447172346e-16, 3609.0, 0.0024910036008805037, -2.7612620669970056e-06, 6.376754124737261e-10, -2.7612620669970056e-06, 4.082395754778645e-09, -1.0607298459724968e-12, 6.376754124737261e-10, -1.0607298459724968e-12, 2.9399385986585732e-16, 3610.0, 0.002490314422175288, -2.7597332064033253e-06, 6.371457805798286e-10, -2.7597332064033253e-06, 4.07900468957223e-09, -1.0595551129186087e-12, 6.371457805798286e-10,-1.0595551129186087e-12, 2.9358688700448124e-16, 3611.0, 0.0024896254763007164, -2.7582057100516977e-06, 6.366167593085947e-10, -2.7582057100516977e-06, 4.0756171770794936e-09, -1.0583820061679794e-12, 6.366167593085947e-10, -1.0583820061679794e-12, 2.931806023573748e-16, 3612.0, 0.002488936996087432, -2.7566793505684473e-06, 6.360882931488732e-10, -2.7566793505684473e-06, 4.072233661389646e-09, -1.0572104173003916e-12, 6.360882931488732e-10, -1.0572104173003916e-12, 2.927749794547584e-16, 3613.0, 0.0024882489815354347, -2.7551543553272495e-06, 6.355604376118151e-10, -2.7551543553272495e-06, 4.068853698413477e-09, -1.0560405631562797e-12, 6.355604376118151e-10, -1.0560405631562797e-12, 2.9237004476641163e-16, 3614.0, 0.002487561199814081, -2.7536307243281044e-06, 6.350331371862694e-10, -2.7536307243281044e-06, 4.065477732240197e-09, -1.0548723353154266e-12, 6.350331371862694e-10, -1.0548723353154266e-12, 2.919657718225549e-16, 3615.0, 0.002486873883754015, -2.7521082301973365e-06, 6.345064473833872e-10, -2.7521082301973365e-06, 4.0621053187805956e-09, -1.053705625357615e-12, 6.345064473833872e-10, -1.053705625357615e-12, 2.9156216062318824e-16, 3616.0, 0.0024861868005245924, -2.750586872934946e-06, 6.339803126920174e-10, -2.750586872934946e-06, 4.058736902123883e-09, -1.0525406501232792e-12, 6.339803126920174e-10, -1.0525406501232792e-12, 2.911592376380912e-16, 3617.0, 0.002485500182956457, -2.749066879914608e-06, 6.334547331121598e-10, -2.749066879914608e-06, 4.055372038180849e-09, -1.051377192771985e-12, 6.334547331121598e-10, -1.051377192771985e-12, 2.907569763974842e-16, 3618.0, 0.002484814031049609, -2.7475482511363225e-06, 6.329298196661171e-10, -2.7475482511363225e-06, 4.052010726951494e-09, -1.0502153617239496e-12, 6.329298196661171e-10, -1.0502153617239496e-12, 2.9035537690136727e-16, 3619.0, 0.002484128111973405, -2.7460307592264144e-06, 6.324054058204354e-10, -2.7460307592264144e-06, 4.048653412525027e-09, -1.0490551569791728e-12, 6.324054058204354e-10, -1.0490551569791728e-12, 2.8995443914974037e-16, 3620.0, 0.002483442658558488, -2.744514631558559e-06, 6.318816025974172e-10, -2.744514631558559e-06, 4.04529965081224e-09, -1.0478965785376548e-12, 6.318816025974172e-10, -1.0478965785376548e-12, 2.895541631426035e-16, 3621.0, 0.002482757670804858, -2.7429996407590806e-06, 6.313583544859114e-10, -2.7429996407590806e-06, 4.041949885902341e-09, -1.0467395179791783e-12, 6.313583544859114e-10, -1.0467395179791783e-12, 2.891545488799567e-16, 3622.0, 0.002482072915881872, -2.741486014201655e-06, 6.308357169970691e-10, -2.741486014201655e-06, 4.0386032296169105e-09, -1.0455840837239605e-12, 6.308357169970691e-10, -1.0455840837239605e-12, 2.887556228315795e-16, 3623.0, 0.0024813886266201735, -2.7399735245126067e-06,6.303136346197391e-10, -2.7399735245126067e-06, 4.035260570134369e-09, -1.0444302757720014e-12, 6.303136346197391e-10, -1.0444302757720014e-12, 2.883573320579128e-16, 3624.0, 0.0024807045701891184, -2.738462399065611e-06, 6.297921628650727e-10, -2.738462399065611e-06, 4.031921907454716e-09, -1.0432779857030838e-12, 6.297921628650727e-10, -1.0432779857030838e-12, 2.879597030287361e-16, 3625.0, 0.0024800209794193506, -2.7369524104869924e-06, 6.292712462219185e-10,-2.7369524104869924e-06, 4.0285863533995325e-09, -1.0421274303576422e-12, 6.292712462219185e-10, -1.0421274303576422e-12, 2.8756273574404945e-16, 3626.0, 0.00247933785431087, -2.7354437861504266e-06, 6.287508846902767e-10, -2.7354437861504266e-06, 4.025254796147237e-09, -1.0409782844750248e-12, 6.287508846902767e-10, -1.0409782844750248e-12, 2.8716643020385284e-16, 3627.0, 0.0024786549620330334, -2.733936298682238e-06, 6.282311337812985e-10, -2.733936298682238e-06, 4.021926791608621e-09, -1.0398308733158834e-12, 6.282311337812985e-10, -1.0398308733158834e-12, 2.867707864081463e-16, 3628.0, 0.002477972535416484, -2.7324299480824266e-06, 6.277119379838325e-10, -2.7324299480824266e-06, 4.018602783872893e-09, -1.0386849800397835e-12, 6.277119379838325e-10, -1.0386849800397835e-12, 2.8637577788715016e-16, 3629.0, 0.0024772905744612217, -2.7309251890983433e-06, 6.271932972978789e-10, -2.7309251890983433e-06, 4.015282328850844e-09, -1.037540604646725e-12, 6.271932972978789e-10, -1.037540604646725e-12, 2.859814311106441e-16, 3630.0, 0.002476608846336603, -2.7294213396089617e-06, 6.266752672345888e-10, -2.7294213396089617e-06, 4.011964982453264e-09, -1.0363978555569253e-12, 6.266752672345888e-10, -1.0363978555569253e-12, 2.8558771960884844e-16, 3631.0, 0.002475927583873272, -2.727918854361633e-06, 6.261577367716598e-10, -2.727918854361633e-06, 4.008652076947783e-09, -1.0352567327703843e-12, 6.261577367716598e-10, -1.0352567327703843e-12, 2.8519469632132244e-16, 3632.0, 0.0024752465542405844, -2.7264177333563566e-06, 6.256408724425455e-10, -2.7264177333563566e-06, 4.00534228006677e-09, -1.0341171278668848e-12, 6.256408724425455e-10, -1.0341171278668848e-12, 2.848022818387273e-16, 3633.0, 0.002474565990269184, -2.7249177492194576e-06, 6.251245077137924e-10, -2.7249177492194576e-06, 4.0020364799886465e-09, -1.0329790408464268e-12,6.251245077137924e-10, -1.0329790408464268e-12, 2.8441052910062217e-16, 3634.0, 0.0024738856591284275, -2.723418901950936e-06, 6.246086980965515e-10, -2.723418901950936e-06, 3.998733788534992e-09, -1.0318425801292275e-12, 6.246086980965515e-10, -1.0318425801292275e-12, 2.840194381070071e-16, 3635.0, 0.002473206026479602, -2.7219214189244667e-06, 6.240934991019742e-10, -2.7219214189244667e-06, 3.995435093884225e-09, -1.0307076372950696e-12, 6.240934991019742e-10,-1.0307076372950696e-12, 2.8362898238810247e-16, 3636.0, 0.002472526393830776, -2.720425072766375e-06, 6.235788552189092e-10, -2.720425072766375e-06, 3.992139951947138e-09, -1.0295743207641705e-12, 6.235788552189092e-10, -1.0295743207641705e-12, 2.832391619439083e-16, 3637.0, 0.0024718474596738815, -2.7189300908503355e-06, 6.230647664473565e-10, -2.7189300908503355e-06, 3.988848806812939e-09, -1.028442522116313e-12, 6.230647664473565e-10, -1.028442522116313e-12, 2.8284997677442453e-16, 3638.0, 0.0024711687583476305, -2.7174362458026735e-06, 6.225512882984674e-10, -2.7174362458026735e-06, 3.985560770303209e-09, -1.027312349771714e-12, 6.225512882984674e-10, -1.027312349771714e-12, 2.824614533494308e-16, 3639.0, 0.002470490289852023, -2.715943764997064e-06, 6.220383097499393e-10, -2.715943764997064e-06, 3.982276730596368e-09, -1.0261835868899394e-12, 6.220383097499393e-10, -1.0261835868899394e-12, 2.8207356519914756e-16, 3640.0, 0.002469812287017703, -2.714452421059832e-06, 6.215259418240748e-10, -2.714452421059832e-06, 3.978995799513996e-09, -1.0250565587316407e-12, 6.215259418240748e-10, -1.0250565587316407e-12, 2.8168631232357473e-16, 3641.0, 0.0024691347498446703, -2.712962213990977e-06, 6.210141290097226e-10, -2.712962213990977e-06, 3.975718865234512e-09, -1.0239309400361662e-12, 6.210141290097226e-10, -1.0239309400361662e-12, 2.8129969472271235e-16, 3642.0, 0.002468457678332925, -2.7114733711641748e-06, 6.205028157957315e-10, -2.7114733711641748e-06, 3.972445483668707e-09, -1.0228068392237333e-12, 6.205028157957315e-10, -1.0228068392237333e-12, 2.8091373886634e-16, 3643.0, 0.002467780839651823, -2.7099856652057497e-06, 6.19992113204404e-10, -2.7099856652057497e-06, 3.969175654816581e-09, -1.021684364714559e-12, 6.19992113204404e-10, -1.021684364714559e-12, 2.805283918148985e-16, 3644.0, 0.002467104233801365, -2.708499096115702e-06, 6.194820212357399e-10, -2.708499096115702e-06, 3.965909378678134e-09, -1.0205634080884263e-12, 6.194820212357399e-10, -1.0205634080884263e-12, 2.8014368003816744e-16, 3645.0, 0.002466428093612194, -2.7070138912677066e-06, 6.18972428867437e-10, -2.7070138912677066e-06, 3.962646655253366e-09, -1.019443969345335e-12, 6.18972428867437e-10, -1.019443969345335e-12, 2.797596035361468e-16, 3646.0, 0.0024657524190843105, -2.705530050661764e-06, 6.184633916106463e-10, -2.705530050661764e-06, 3.959387484542276e-09, -1.0183261569055024e-12, 6.184633916106463e-10, -1.0183261569055024e-12, 2.7937616230883664e-16, 3647.0, 0.0024650769773870707, -2.7040471195505233e-06, 6.17954909465368e-10, -2.7040471195505233e-06, 3.956132310634075e-09, -1.0172097539284941e-12, 6.17954909465368e-10, -1.0172097539284941e-12, 2.789933563562369e-16, 3648.0, 0.002464402001351118, -2.7025655526813352e-06,6.174470379427532e-10, -2.7025655526813352e-06, 3.952880245350343e-09, -1.0160949772547445e-12, 6.174470379427532e-10, -1.0160949772547445e-12, 2.78611159208568e-16, 3649.0, 0.002463727490976453, -2.7010853500542e-06, 6.169396660204995e-10, -2.7010853500542e-06, 3.94963173278029e-09, -1.0149816100438191e-12, 6.169396660204995e-10, -1.0149816100438191e-12, 2.7822962380538913e-16, 3650.0, 0.0024630532134324312, -2.699606056921766e-06, 6.164328492097582e-10,-2.699606056921766e-06, 3.9463867729239155e-09, -1.0138698691361525e-12, 6.164328492097582e-10, -1.0138698691361525e-12, 2.778486972071411e-16, 3651.0, 0.002462379401549697, -2.698128128031385e-06, 6.159266430216803e-10, -2.698128128031385e-06, 3.94314580987043e-09, -1.0127596461115274e-12, 6.159266430216803e-10, -1.0127596461115274e-12, 2.7746837941382393e-16, 3652.0, 0.0024617058224976063, -2.6966515633830568e-06, 6.154209364339636e-10, -2.6966515633830568e-06, 3.939907955441413e-09, -1.0116508325497264e-12, 6.154209364339636e-10, -1.0116508325497264e-12, 2.770886968952172e-16, 3653.0, 0.002461032709106803, -2.69517590822943e-06, 6.149157849577591e-10, -2.69517590822943e-06, 3.936673653726075e-09, -1.0105436452911842e-12, 6.149157849577591e-10, -1.0105436452911842e-12, 2.767096496513209e-16, 3654.0, 0.0024603598285466433, -2.6937016173178563e-06, 6.144112441042182e-10, -2.6937016173178563e-06, 3.9334433488136256e-09, -1.0094379759156835e-12, 6.144112441042182e-10, -1.0094379759156835e-12, 2.7633121121235543e-16, 3655.0, 0.002459687413647771, -2.692228690648335e-06, 6.139072028510384e-10, -2.692228690648335e-06, 3.930216152525645e-09, -1.008333716003007e-12, 6.139072028510384e-10, -1.008333716003007e-12, 2.759534080481004e-16, 3656.0, 0.002459015464410186, -2.6907566734735155e-06, 6.134037167093709e-10, -2.6907566734735155e-06, 3.9269925089513436e-09, -1.0072310823935893e-12, 6.134037167093709e-10, -1.0072310823935893e-12, 2.7557621368877623e-16, 3657.0, 0.0024583437480032444, -2.6892860205407487e-06, 6.129007856792157e-10, -2.6892860205407487e-06, 3.923772418090721e-09, -1.0061298582469957e-12, 6.129007856792157e-10, -1.0061298582469957e-12, 2.751996546041625e-16, 3658.0, 0.0024576724972575903, -2.6878167318500346e-06, 6.123984097605728e-10, -2.6878167318500346e-06, 3.920555879943777e-09, -1.005030260403661e-12,6.123984097605728e-10, -1.005030260403661e-12, 2.748236778547e-16, 3659.0, 0.00245700147934258, -2.686348352654022e-06, 6.118965889534422e-10, -2.686348352654022e-06, 3.9173428945105115e-09, -1.0039320720231504e-12, 6.118965889534422e-10, -1.0039320720231504e-12, 2.7444833637994793e-16, 3660.0, 0.0024563309270888567, -2.6848813377000624e-06, 6.11395323257824e-10, -2.6848813377000624e-06, 3.914133461790925e-09, -1.0028354015256813e-12, 6.11395323257824e-10,-1.0028354015256813e-12, 2.740736301799063e-16, 3661.0, 0.002455660607665777, -2.68341545961448e-06, 6.108945571625668e-10, -2.68341545961448e-06, 3.910927137695808e-09, -1.0017402489112537e-12, 6.108945571625668e-10, -1.0017402489112537e-12, 2.736995063150159e-16, 3662.0, 0.002454990753903985, -2.68195094577095e-06, 6.103944016899732e-10, -2.68195094577095e-06, 3.907724810403579e-09, -1.0006465057596503e-12, 6.103944016899732e-10, -1.0006465057596503e-12, 2.73326017724836e-16, 3663.0, 0.00245432136580348, -2.680487341422122e-06, 6.098947458177406e-10, -2.680487341422122e-06, 3.904525591735819e-09, -9.995543889113057e-13, 6.098947458177406e-10, -9.995543889113057e-13, 2.729531379395869e-16, 3664.0, 0.002453652210533619, -2.6790251013153465e-06, 6.093956450570204e-10, -2.6790251013153465e-06, 3.901330369870948e-09, -9.984636815257852e-13, 6.093956450570204e-10, -9.984636815257852e-13, 2.72580840489489e-16, 3665.0, 0.002452983520925045, -2.6775639980769483e-06, 6.088970994078124e-10, -2.6775639980769483e-06, 3.8981382566305456e-09, -9.973744920233063e-13, 6.088970994078124e-10, -9.973744920233063e-13, 2.722091783141016e-16, 3666.0, 0.0024523150641471148, -2.6761042590806028e-06, 6.083991088701168e-10, -2.6761042590806028e-06, 3.894949696103822e-09, -9.962867119836516e-13, 6.083991088701168e-10, -9.962867119836516e-13, 2.71838124943645e-16, 3667.0, 0.002451647073030472, -2.6746456569526345e-06, 6.079016179327823e-10, -2.6746456569526345e-06, 3.8917646882907775e-09, -9.952004498270384e-13, 6.079016179327823e-10, -9.952004498270384e-13, 2.7146768037811925e-16, 3668.0, 0.0024509793147444725, -2.6731881916930433e-06, 6.074046821069601e-10, -2.6731881916930433e-06, 3.888582789102202e-09, -9.941157055534666e-13, 6.074046821069601e-10, -9.941157055534666e-13, 2.7109781814774474e-16, 3669.0, 0.0024503120221197605, -2.6717318633018294e-06, 6.069083013926502e-10, -2.6717318633018294e-06, 3.885404886716515e-09, -9.930324791629364e-13, 6.069083013926502e-10, -9.930324791629364e-13, 2.7072859119208067e-16, 3670.0, 0.002449645195156336, -2.6702766717789927e-06, 6.064124757898526e-10, -2.6702766717789927e-06, 3.882230092955297e-09, -9.919506622352303e-13, 6.064124757898526e-10, -9.919506622352303e-13, 2.7035994657156784e-16, 3671.0, 0.002448978601023555, -2.6688228444982087e-06, 6.059172052985673e-10, -2.6688228444982087e-06, 3.879058851907757e-09, -9.908702547703485e-13, 6.059172052985673e-10, -9.908702547703485e-13, 2.6999191075598584e-16, 3672.0, 0.002448312472552061, -2.667370154085802e-06, 6.054224344076431e-10, -2.667370154085802e-06, 3.875891163573897e-09, -9.897914736087254e-13, 6.054224344076431e-10, -9.897914736087254e-13, 2.696244572755551e-16, 3673.0, 0.002447646576911211, -2.6659186005417723e-06,6.049282186282312e-10, -2.6659186005417723e-06, 3.872727027953715e-09, -9.887139934897093e-13, 6.049282186282312e-10, -9.887139934897093e-13, 2.6925763906983477e-16, 3674.0, 0.0024469811469316483, -2.66446818386612e-06, 6.044345024491804e-10, -2.66446818386612e-06, 3.869566000958002e-09, -9.87638139673952e-13, 6.044345024491804e-10, -9.87638139673952e-13, 2.688914031992657e-16, 3675.0, 0.002446315949782729, -2.6630191314325202e-06, 6.039413413816419e-10,-2.6630191314325202e-06, 3.8664085266759685e-09, -9.865635869008016e-13, 6.039413413816419e-10, -9.865635869008016e-13, 2.6852574966384785e-16, 3676.0, 0.0024456512182950974, -2.6615709884936223e-06, 6.034487354256157e-10, -2.6615709884936223e-06, 3.863254605107613e-09, -9.8549066043091e-13, 6.034487354256157e-10, -9.8549066043091e-13, 2.6816070493336085e-16, 3677.0, 0.002444986719638109, -2.660124209796777e-06, 6.029566845811019e-10, -2.660124209796777e-06, 3.860103792163727e-09, -9.844190350036253e-13, 6.029566845811019e-10, -9.844190350036253e-13, 2.677962690078047e-16, 3678.0, 0.0024443226866424084, -2.658678567968309e-06, 6.024651333369491e-10, -2.658678567968309e-06, 3.8569569760227296e-09, -9.83348927459382e-13, 6.024651333369491e-10, -9.83348927459382e-13, 2.6743241541739976e-16, 3679.0, 0.002443659119307995, -2.6572342903818935e-06, 6.019741372043086e-10, -2.6572342903818935e-06, 3.853813268506201e-09, -9.822803377981804e-13, 6.019741372043086e-10, -9.822803377981804e-13, 2.6706914416214607e-16, 3680.0, 0.002442995784804225, -2.65579092229018e-06, 6.014836406720292e-10, -2.65579092229018e-06, 3.850672669614141e-09, -9.812131575998029e-13, 6.014836406720292e-10, -9.812131575998029e-13, 2.6670648171182323e-16, 3681.0, 0.0024423329159617424, -2.654348918440519e-06, 6.009936992512621e-10, -2.654348918440519e-06, 3.84753606752497e-09, -9.801473868642496e-13, 6.009936992512621e-10, -9.801473868642496e-13, 2.663444015966516e-16, 3682.0, 0.0024416702799499035, -2.652908051459235e-06, 6.005043129420073e-10, -2.652908051459235e-06, 3.844402574060268e-09, -9.790831340117379e-13, 6.005043129420073e-10, -9.790831340117379e-13, 2.6598290381663124e-16, 3683.0, 0.0024410078767687082, -2.651468093972653e-06, 6.000154262331137e-10, -2.651468093972653e-06, 3.841272189220035e-09, -9.780202906220503e-13,6.000154262331137e-10, -9.780202906220503e-13, 2.656220148415417e-16, 3684.0, 0.002440346172079444, -2.6500297281017993e-06, 5.995270946357323e-10, -2.6500297281017993e-06, 3.838145801182691e-09, -9.76958856695187e-13, 5.995270946357323e-10, -9.76958856695187e-13, 2.652617082016034e-16, 3685.0, 0.0024396847002208233, -2.648592271725647e-06, 5.99039262638712e-10, -2.648592271725647e-06, 3.835022521769815e-09, -9.758989406513652e-13, 5.99039262638712e-10,-9.758989406513652e-13, 2.6490198389681635e-16, 3686.0, 0.0024390234611928463, -2.6471559522178723e-06, 5.98551985753204e-10, -2.6471559522178723e-06, 3.831902350981409e-09, -9.748403256501503e-13, 5.98551985753204e-10, -9.748403256501503e-13, 2.645428419271805e-16, 3687.0, 0.0024383626878261566, -2.64572099695215e-06, 5.980652084680571e-10, -2.64572099695215e-06, 3.828785732906681e-09, -9.73783228531977e-13, 5.980652084680571e-10, -9.73783228531977e-13, 2.6418428229269594e-16, 3688.0, 0.0024377021472901106, -2.6442869511811296e-06, 5.975789862944225e-10, -2.6442869511811296e-06, 3.825672667545632e-09, -9.72727649296845e-13, 5.975789862944225e-10, -9.72727649296845e-13, 2.638263049933626e-16, 3689.0, 0.002437042072415352, -2.6428542696521617e-06, 5.97093263721149e-10, -2.6428542696521617e-06, 3.822563154898262e-09, -9.716733711043202e-13, 5.97093263721149e-10, -9.716733711043202e-13, 2.634689100291805e-16, 3690.0, 0.0024363824632018805, -2.641422724991571e-06, 5.966080962593878e-10, -2.641422724991571e-06, 3.819456750875361e-09, -9.706206107948367e-13, 5.966080962593878e-10, -9.706206107948367e-13, 2.631120974001496e-16, 3691.0, 0.0024357230868190527, -2.6399923171993578e-06, 5.961234283979877e-10, -2.6399923171993578e-06, 3.8163534554769285e-09, -9.695691515279603e-13, 5.961234283979877e-10, -9.695691515279603e-13, 2.6275586710626997e-16, 3692.0, 0.0024350639432668686, -2.6385630462755216e-06, 5.956393156480999e-10, -2.6385630462755216e-06, 3.813253712792175e-09, -9.685192101441253e-13, 5.956393156480999e-10, -9.685192101441253e-13, 2.6240021914754157e-16, 3693.0, 0.002434405265375972, -2.6371349122200627e-06, 5.951557024985732e-10, -2.6371349122200627e-06, 3.8101575228211004e-09, -9.674706782231146e-13, 5.951557024985732e-10, -9.674706782231146e-13, 2.620451535239644e-16, 3694.0, 0.0024337470531463623, -2.6357081424066564e-06, 5.946726444605588e-10, -2.6357081424066564e-06, 3.807064441474495e-09, -9.664235557649281e-13, 5.946726444605588e-10, -9.664235557649281e-13, 2.616906437657589e-16, 3695.0, 0.0024330890737473965, -2.634282282087952e-06, 5.941900860229055e-10, -2.634282282087952e-06, 3.803974912841568e-09, -9.653778427695658e-13, 5.941900860229055e-10, -9.653778427695658e-13, 2.613367163427046e-16, 3696.0, 0.002432431560009718, -2.6328577860113e-06, 5.937080271856132e-10, -2.6328577860113e-06, 3.80088849283311e-09, -9.643335392370278e-13, 5.937080271856132e-10, -9.643335392370278e-13, 2.6098337125480154e-16, 3697.0, 0.002431774279102683, -2.63143419942935e-06, 5.932265234598333e-10, -2.63143419942935e-06, 3.797805625538331e-09, -9.632907535875312e-13, 5.932265234598333e-10, -9.632907535875312e-13, 2.606306085020497e-16, 3698.0, 0.0024311174638569355, -2.6300119770894526e-06,5.927455193344144e-10, -2.6300119770894526e-06, 3.794725866868021e-09, -9.622492689806417e-13, 5.927455193344144e-10, -9.622492689806417e-13, 2.6027840161466954e-16, 3699.0, 0.0024304608814418316, -2.6285908916179324e-06, 5.922650703205079e-10, -2.6285908916179324e-06, 3.791649660911389e-09, -9.612091938365763e-13, 5.922650703205079e-10, -9.612091938365763e-13, 2.599267770624406e-16, 3700.0, 0.002429804764688015, -2.627170715641114e-06, 5.917851209069624e-10,-2.627170715641114e-06, 3.788577007668437e-09, -9.601705281553352e-13, 5.917851209069624e-10, -9.601705281553352e-13, 2.595757083755833e-16, 3701.0, 0.002429148880764842, -2.625751903906348e-06, 5.913056710937781e-10, -2.625751903906348e-06, 3.785507018960743e-09, -9.591332719369183e-13, 5.913056710937781e-10, -9.591332719369183e-13, 2.5922522202387723e-16, 3702.0, 0.0024284934625029564, -2.6243342290399596e-06, 5.90826776392106e-10, -2.6243342290399596e-06, 3.782441027055938e-09, -9.580974251813257e-13, 5.90826776392106e-10, -9.580974251813257e-13, 2.588752915375428e-16, 3703.0, 0.0024278382770717144, -2.6229176910419483e-06, 5.903483257796438e-10, -2.6229176910419483e-06, 3.779377699686393e-09, -9.570629878885573e-13, 5.903483257796438e-10, -9.570629878885573e-13, 2.5852591691658e-16, 3704.0, 0.0024271835573017597, -2.621502289912314e-06, 5.898704857898451e-10, -2.621502289912314e-06, 3.776317925030526e-09, -9.56029960058613e-13, 5.898704857898451e-10, -9.56029960058613e-13, 2.5817712463076844e-16, 3705.0, 0.0024265290703624487, -2.6200880256510573e-06, 5.893930898892563e-10, -2.6200880256510573e-06, 3.7732617030883375e-09, -9.549982332712759e-13, 5.893930898892563e-10, -9.549982332712759e-13, 2.578289146801081e-16, 3706.0, 0.002425875049084425, -2.6186748982581776e-06, 5.889162491001798e-10, -2.6186748982581776e-06, 3.770208589770618e-09, -9.539680243669801e-13, 5.889162491001798e-10, -9.539680243669801e-13, 2.5748123412503983e-16, 3707.0, 0.002425221260637045, -2.617262907733675e-06, 5.884399079114644e-10, -2.617262907733675e-06, 3.767159029166578e-09, -9.529391165052914e-13, 5.884399079114644e-10, -9.529391165052914e-13, 2.571341359051228e-16, 3708.0, 0.002424567937850952, -2.61585205407755e-06, 5.8796406632311e-10, -2.61585205407755e-06, 3.764112133097797e-09, -9.519116181064269e-13,5.8796406632311e-10, -9.519116181064269e-13, 2.5678759355057736e-16, 3709.0, 0.0024239150807261467, -2.6144425646634772e-06, 5.87488779846268e-10, -2.6144425646634772e-06, 3.761069233831904e-09, -9.508855291703866e-13, 5.87488779846268e-10, -9.508855291703866e-13, 2.564416070614036e-16, 3710.0, 0.002423262456431985, -2.6130339847441064e-06, 5.870139374586358e-10, -2.6130339847441064e-06, 3.7580289991012705e-09, -9.498607412769533e-13, 5.870139374586358e-10,-9.498607412769533e-13, 2.5609617643760144e-16, 3711.0, 0.0024226100649684668, -2.611626541693113e-06, 5.86539650182516e-10, -2.611626541693113e-06, 3.754992317084316e-09, -9.488373628463442e-13, 5.86539650182516e-10, -9.488373628463442e-13, 2.5575132814895053e-16, 3712.0, 0.002421958139166236, -2.6102202355104964e-06, 5.860658625067572e-10, -2.6102202355104964e-06, 3.75195874369183e-09, -9.478153938785594e-13, 5.860658625067572e-10, -9.478153938785594e-13, 2.5540700925589166e-16, 3713.0, 0.0024213066790252924, -2.6088150661962572e-06, 5.855926299425107e-10, -2.6088150661962572e-06, 3.748928723013023e-09, -9.467948343735988e-13, 5.855926299425107e-10, -9.467948343735988e-13, 2.55063272697984e-16, 3714.0, 0.002420655218884349, -2.6074110337503953e-06, 5.851198414674741e-10, -2.6074110337503953e-06, 3.745901810958685e-09, -9.457755759112452e-13, 5.851198414674741e-10, -9.457755759112452e-13, 2.547200655356684e-16, 3715.0, 0.0024200044572353363, -2.6060081381729105e-06, 5.846476081039498e-10, -2.6060081381729105e-06, 3.742878451618026e-09, -9.447577269117158e-13, 5.846476081039498e-10, -9.447577269117158e-13, 2.5437744070850405e-16, 3716.0, 0.0024193539284169674, -2.604606379463803e-06, 5.841758743407865e-10, -2.604606379463803e-06, 3.739857756812626e-09, -9.437412873750106e-13, 5.841758743407865e-10, -9.437412873750106e-13, 2.540353452769317e-16, 3717.0, 0.002418703632429242, -2.6032057576230727e-06, 5.837046401779844e-10, -2.6032057576230727e-06, 3.736840614720904e-09, -9.427261488809124e-13, 5.837046401779844e-10, -9.427261488809124e-13, 2.5369380571073103e-16, 3718.0, 0.002418053802102804, -2.6018062726507196e-06, 5.832339056155433e-10, -2.6018062726507196e-06, 3.733827025342862e-09, -9.417124198496385e-13, 5.832339056155433e-10, -9.417124198496385e-13, 2.5335282200990197e-16, 3719.0, 0.0024174044374376535, -2.6004079245467437e-06, 5.827636706534634e-10, -2.6004079245467437e-06, 3.730816100500078e-09, -9.406999918609715e-13, 5.827636706534634e-10, -9.406999918609715e-13, 2.5301236770466494e-16, 3720.0, 0.0024167553056031466, -2.599010713311145e-06, 5.822939352917444e-10, -2.599010713311145e-06, 3.727808728370974e-09, -9.396889733351288e-13, 5.822939352917444e-10, -9.396889733351288e-13, 2.5267249573457916e-16, 3721.0, 0.0024161064065992832, -2.5976146389439236e-06, 5.818247550415379e-10, -2.5976146389439236e-06, 3.724804686910943e-09, -9.386793642721103e-13, 5.818247550415379e-10, -9.386793642721103e-13, 2.523331531600854e-16, 3722.0, 0.002415457973256707, -2.5962197014450794e-06, 5.813560188805411e-10, -2.5962197014450794e-06, 3.7218037540753812e-09, -9.376710562516988e-13, 5.813560188805411e-10, -9.376710562516988e-13, 2.519943664509633e-16, 3723.0, 0.0024148100055754185, -2.5948259008146124e-06,5.808878378310567e-10, -2.5948259008146124e-06, 3.7188059298642884e-09, -9.366640492738942e-13, 5.808878378310567e-10, -9.366640492738942e-13, 2.516561091374332e-16, 3724.0, 0.0024141622707247734, -2.5934332370525226e-06, 5.804201008707821e-10, -2.5934332370525226e-06, 3.7158114363222694e-09, -9.35658451758914e-13, 5.804201008707821e-10, -9.35658451758914e-13, 2.5131840768927475e-16, 3725.0, 0.002413514768704772, -2.5920414827851346e-06, 5.799529190220198e-10,-2.5920414827851346e-06, 3.7128202734493243e-09, -9.346541552865406e-13, 5.799529190220198e-10, -9.346541552865406e-13, 2.5098126210648794e-16, 3726.0, 0.002412867732346058, -2.5906510927597992e-06, 5.794862367736187e-10, -2.5906510927597992e-06, 3.7098319971562432e-09, -9.336512682769915e-13, 5.794862367736187e-10, -9.336512682769915e-13, 2.5064461944951356e-16, 3727.0, 0.0024122209288179874, -2.5892616122291656e-06, 5.790199986144273e-10, -2.5892616122291656e-06, 3.706847273576841e-09, -9.326496823100494e-13, 5.790199986144273e-10, -9.326496823100494e-13, 2.503085591276904e-16, 3728.0, 0.0024115745909512043, -2.5878734959405847e-06, 5.785543155667483e-10, -2.5878734959405847e-06, 3.7038654365773027e-09, -9.316495058059315e-13, 5.785543155667483e-10, -9.316495058059315e-13, 2.499730282014593e-16, 3729.0, 0.0024109287187457085, -2.5864862891467055e-06, 5.780891321194304e-10, -2.5864862891467055e-06, 3.7008871522914433e-09, -9.306505219242034e-13, 5.780891321194304e-10, -9.306505219242034e-13, 2.4963802667082023e-16, 3730.0, 0.0024102828465402126, -2.5851002192212036e-06, 5.776243927613223e-10, -2.5851002192212036e-06, 3.697911754585448e-09, -9.296530559255167e-13, 5.776243927613223e-10, -9.296530559255167e-13, 2.493035810055528e-16, 3731.0, 0.0024096376728266478, -2.583715286164079e-06, 5.771602085147265e-10, -2.583715286164079e-06, 3.6949396875485263e-09, -9.286567825492198e-13, 5.771602085147265e-10, -9.286567825492198e-13, 2.489696647358774e-16, 3732.0, 0.0024089927319437265, -2.5823314899753314e-06, 5.766965238684918e-10, -2.5823314899753314e-06, 3.6919707291360737e-09, -9.27661918635747e-13, 5.766965238684918e-10, -9.27661918635747e-13, 2.48636277861794e-16, 3733.0, 0.002408348023891449, -2.580948830654961e-06, 5.76233283311467e-10, -2.580948830654961e-06, 3.689005101392695e-09, -9.266683557648814e-13,5.76233283311467e-10, -9.266683557648814e-13, 2.4830342038330267e-16, 3734.0, 0.0024077037815004587, -2.579567308202968e-06, 5.757705978659544e-10, -2.579567308202968e-06, 3.6860423602291803e-09, -9.256762023568399e-13, 5.757705978659544e-10, -9.256762023568399e-13, 2.4797111877018297e-16, 3735.0, 0.002407059771940112, -2.578186922619352e-06, 5.753083565096517e-10, -2.578186922619352e-06, 3.6830831717793444e-09, -9.246852415711881e-13, 5.753083565096517e-10,-9.246852415711881e-13, 2.476393465526553e-16, 3736.0, 0.002406416228041053, -2.576807446530438e-06, 5.748466147537101e-10, -2.576807446530438e-06, 3.6801268699093725e-09, -9.236956902483606e-13, 5.748466147537101e-10, -9.236956902483606e-13, 2.4730807726094006e-16, 3737.0, 0.002405772916972637, -2.5754293346835766e-06, 5.743854281092808e-10, -2.5754293346835766e-06, 3.6771736766638696e-09, -9.2270743996814e-13, 5.743854281092808e-10, -9.2270743996814e-13, 2.4697736383459646e-16, 3738.0, 0.002405130071565509, -2.574052132331417e-06, 5.739246855540614e-10, -2.574052132331417e-06, 3.6742238140874406e-09, -9.217205991507438e-13, 5.739246855540614e-10, -9.217205991507438e-13, 2.466471798038449e-16, 3739.0, 0.002404487458989024, -2.5726760668476345e-06, 5.73464442599203e-10, -2.5726760668476345e-06, 3.6712770601354805e-09, -9.207349509557372e-13, 5.73464442599203e-10, -9.207349509557372e-13, 2.4631752516868536e-16, 3740.0, 0.002403845312073827, -2.5713011382322293e-06, 5.730046437335545e-10, -2.5713011382322293e-06, 3.6683336368525943e-09, -9.197507122235549e-13, 5.730046437335545e-10, -9.197507122235549e-13, 2.4598839992911786e-16, 3741.0, 0.002403203397989273, -2.5699273464852013e-06, 5.725453999794183e-10, -2.5699273464852013e-06, 3.665393100149572e-09, -9.187676661137623e-13, 5.725453999794183e-10, -9.187676661137623e-13, 2.456598040851424e-16, 3742.0, 0.002402561716735363, -2.5685546916065505e-06, 5.720866558256432e-10, -2.5685546916065505e-06, 3.662455672071019e-09, -9.177860294667939e-13, 5.720866558256432e-10, -9.177860294667939e-13, 2.4533173763675897e-16, 3743.0, 0.002401920733973384, -2.5671829462226015e-06, 5.71628355761078e-10, -2.5671829462226015e-06, 3.6595215746615395e-09, -9.168056938624325e-13, 5.71628355761078e-10, -9.168056938624325e-13, 2.4500420058396757e-16, 3744.0, 0.002401279751211405, -2.5658123377070297e-06, 5.711705552968738e-10, -2.5658123377070297e-06, 3.656590585876529e-09, -9.15826659300678e-13, 5.711705552968738e-10, -9.15826659300678e-13, 2.446771664569886e-16, 3745.0, 0.002400639234110713, -2.5644430934335105e-06, 5.707132544330307e-10, -2.5644430934335105e-06, 3.6536627057159876e-09, -9.148489257815307e-13, 5.707132544330307e-10, -9.148489257815307e-13, 2.4435068819538127e-16, 3746.0, 0.0023999991826713085, -2.5630745312810177e-06, 5.702564531695486e-10, -2.5630745312810177e-06, 3.650737934179915e-09, -9.138724933049902e-13, 5.702564531695486e-10, -9.138724933049902e-13, 2.440247128595864e-16, 3747.0, 0.0023993593640625477, -2.5617073333705775e-06, 5.698000959952765e-10, -2.5617073333705775e-06, 3.6478162712683115e-09, -9.128973618710567e-13, 5.698000959952765e-10, -9.128973618710567e-13, 2.436992404496039e-16, 3748.0, 0.0023987197782844305, -2.5603412723285146e-06,5.693442939325166e-10, -2.5603412723285146e-06, 3.644897716981177e-09, -9.119235314797303e-13, 5.693442939325166e-10, -9.119235314797303e-13, 2.433743239049931e-16, 3749.0, 0.0023980806581676006, -2.5589761207811534e-06, 5.688889359589666e-10, -2.5589761207811534e-06, 3.6419822713185113e-09, -9.109510021310108e-13, 5.688889359589666e-10, -9.109510021310108e-13, 2.430499102861947e-16, 3750.0, 0.0023974417708814144, -2.5576121061021695e-06, 5.684340775857777e-10,-2.5576121061021695e-06, 3.6390699342803146e-09, -9.099797738248983e-13, 5.684340775857777e-10, -9.099797738248983e-13, 2.427259995932087e-16, 3751.0, 0.0023968033492565155, -2.5562492282915628e-06, 5.679796633017986e-10, -2.5562492282915628e-06, 3.636160705866587e-09, -9.090099007715013e-13, 5.679796633017986e-10, -9.090099007715013e-13, 2.424026447655944e-16, 3752.0, 0.0023961651604622602, -2.5548874873493332e-06, 5.675258041293318e-10, -2.5548874873493332e-06, 3.633254586077328e-09, -9.080412203404942e-13, 5.675258041293318e-10, -9.080412203404942e-13, 2.420797663940129e-16, 3753.0, 0.0023955274373292923, -2.553526883275481e-06, 5.670723890460749e-10, -2.553526883275481e-06, 3.630351574912538e-09, -9.070738951622026e-13, 5.670723890460749e-10, -9.070738951622026e-13, 2.4175744388780303e-16, 3754.0, 0.002394889947026968, -2.5521671886963304e-06, 5.666194180520279e-10, -2.5521671886963304e-06, 3.6274516723722172e-09, -9.061078168164094e-13, 5.666194180520279e-10, -9.061078168164094e-13, 2.41435597837626e-16, 3755.0, 0.002394252922385931, -2.550808630985557e-06, 5.661670021694931e-10, -2.550808630985557e-06, 3.6245548784563653e-09, -9.051430395132232e-13, 5.661670021694931e-10, -9.051430395132232e-13, 2.41114281183041e-16, 3756.0, 0.0023936161305755377, -2.549451210143161e-06, 5.657150303761682e-10, -2.549451210143161e-06, 3.6216609711203773e-09, -9.041795632526439e-13, 5.657150303761682e-10, -9.041795632526439e-13, 2.4079349392404803e-16, 3757.0, 0.002392979571595788, -2.548094926169142e-06, 5.652635026720532e-10, -2.548094926169142e-06, 3.6187703944534633e-09, -9.03217333824563e-13, 5.652635026720532e-10, -9.03217333824563e-13, 2.404732095908675e-16, 3758.0, 0.0023923437111079693, -2.546739551689825e-06, 5.648125300794504e-10, -2.546739551689825e-06, 3.6158827043664132e-09, -9.022564054390891e-13,5.648125300794504e-10, -9.022564054390891e-13, 2.401534281834994e-16, 3759.0, 0.0023917078506201506, -2.545385314078885e-06, 5.643620015760575e-10, -2.545385314078885e-06, 3.612998122903832e-09, -9.012967780962222e-13, 5.643620015760575e-10, -9.012967780962222e-13, 2.3983414970194373e-16, 3760.0, 0.002391072455793619, -2.5440322133363225e-06, 5.639119171618745e-10, -2.5440322133363225e-06, 3.61011665006572e-09, -9.003383975858537e-13, 5.639119171618745e-10,-9.003383975858537e-13, 2.395154006159801e-16, 3761.0, 0.0023904372937977314, -2.542680249462137e-06, 5.634623878592038e-10, -2.542680249462137e-06, 3.607238285852077e-09, -8.993812639079835e-13, 5.634623878592038e-10, -8.993812639079835e-13, 2.391971544558289e-16, 3762.0, 0.002389802597463131, -2.5413291950826533e-06, 5.630132471345917e-10, -2.5413291950826533e-06, 3.6043630302629026e-09, -8.984254312727202e-13, 5.630132471345917e-10, -8.984254312727202e-13, 2.3887941122149013e-16, 3763.0, 0.002389168133959174, -2.5399795049452223e-06, 5.625646615214919e-10, -2.5399795049452223e-06, 3.6014906612535924e-09, -8.974708454699554e-13, 5.625646615214919e-10, -8.974708454699554e-13, 2.385621709129638e-16, 3764.0, 0.0023885341361165047, -2.5386304969288176e-06, 5.621165199976019e-10, -2.5386304969288176e-06, 3.598621400868751e-09, -8.965175607097975e-13, 5.621165199976019e-10, -8.965175607097975e-13, 2.382454335302499e-16, 3765.0, 0.002387900371104479, -2.5372828531544656e-06, 5.616688225629218e-10, -2.5372828531544656e-06, 3.595755249108379e-09, -8.95565522782138e-13, 5.616688225629218e-10, -8.95565522782138e-13, 2.379291990733484e-16, 3766.0, 0.0023872670717537403, -2.5359361188748153e-06, 5.61221680239754e-10, -2.5359361188748153e-06, 3.5928922059724755e-09, -8.946147858970854e-13, 5.61221680239754e-10, -8.946147858970854e-13, 2.37613494012039e-16, 3767.0, 0.0023866340052336454, -2.5345905214635422e-06, 5.607749264946449e-10, -2.5345905214635422e-06, 3.590032049416436e-09, -8.936652416344226e-13, 5.607749264946449e-10, -8.936652416344226e-13, 2.3729826540676237e-16, 3768.0, 0.0023860011715441942, -2.5332460609206464e-06, 5.60328727861048e-10, -2.5332460609206464e-06, 3.5871750014848658e-09, -8.927169984143668e-13, 5.60328727861048e-10, -8.927169984143668e-13, 2.369835397272982e-16, 3769.0, 0.0023853688035160303, -2.531902737246128e-06, 5.598829178055098e-10, -2.531902737246128e-06, 3.5843208401331594e-09, -8.917700020268093e-13, 5.598829178055098e-10, -8.917700020268093e-13, 2.3666931697364645e-16, 3770.0, 0.0023847369011491537, -2.530560323066311e-06, 5.594376628614839e-10, -2.530560323066311e-06, 3.581469787405922e-09, -8.908242524717502e-13, 5.594376628614839e-10, -8.908242524717502e-13, 2.3635559714580714e-16, 3771.0, 0.002384104998782277, -2.5292190457548713e-06, 5.589928520066678e-10, -2.5292190457548713e-06, 3.5786218433031536e-09, -8.898798039592981e-13, 5.589928520066678e-10, -8.898798039592981e-13, 2.3604238024378026e-16, 3772.0, 0.0023834737949073315, -2.5278786779381335e-06, 5.585484852410616e-10, -2.5278786779381335e-06, 3.575777007824854e-09, -8.889365480692357e-13, 5.585484852410616e-10, -8.889365480692357e-13, 2.357296662675658e-16, 3773.0, 0.002382842591032386, -2.526539446989773e-06,5.581046180758165e-10, -2.526539446989773e-06, 3.5729350589264186e-09, -8.879945932217803e-13, 5.581046180758165e-10, -8.879945932217803e-13, 2.354174287473842e-16, 3774.0, 0.0023822118528187275, -2.5252013529097894e-06, 5.576611949997812e-10, -2.5252013529097894e-06, 3.570095996607847e-09, -8.870538309967146e-13, 5.576611949997812e-10, -8.870538309967146e-13, 2.351057206227946e-16, 3775.0, 0.0023815815802663565, -2.5238643956981832e-06, 5.57218271524107e-10,-2.5238643956981832e-06, 3.5672600429137447e-09, -8.86114369814256e-13, 5.57218271524107e-10, -8.86114369814256e-13, 2.3479448895423786e-16, 3776.0, 0.002380951540544629, -2.5225283479812788e-06, 5.567757921376426e-10, -2.5225283479812788e-06, 3.564427197844111e-09, -8.85176101254187e-13, 5.567757921376426e-10, -8.85176101254187e-13, 2.3448373374171394e-16, 3777.0, 0.0023803217336535454, -2.5211934371327516e-06, 5.563337568403881e-10, -2.5211934371327516e-06, 3.5615972393543416e-09, -8.84239133736725e-13, 5.563337568403881e-10, -8.84239133736725e-13, 2.3417348145500245e-16, 3778.0, 0.002379692392423749, -2.519859435778926e-06, 5.558922211434947e-10, -2.519859435778926e-06, 3.558770167444436e-09, -8.833033588416528e-13, 5.558922211434947e-10, -8.833033588416528e-13, 2.338637320941034e-16, 3779.0, 0.002379063284024596, -2.5185267986671533e-06, 5.554511850469623e-10, -2.5185267986671533e-06, 3.5559462041589995e-09, -8.823688307790789e-13, 5.554511850469623e-10, -8.823688307790789e-13, 2.3355448565901677e-16, 3780.0, 0.0023784346412867308, -2.517194843676407e-06, 5.550105930396398e-10, -2.517194843676407e-06, 3.553125349498032e-09, -8.814355495490034e-13, 5.550105930396398e-10, -8.814355495490034e-13, 2.3324571567996297e-16, 3781.0, 0.002377806231379509, -2.515864252927713e-06, 5.545704451215272e-10, -2.515864252927713e-06, 3.5503073814169284e-09, -8.805034609413176e-13, 5.545704451215272e-10, -8.805034609413176e-13, 2.32937422156942e-16, 3782.0, 0.0023771782871335745, -2.514534571673721e-06, 5.541307412926244e-10, -2.514534571673721e-06, 3.547492299915689e-09, -8.795726191661302e-13, 5.541307412926244e-10, -8.795726191661302e-13, 2.326296315597335e-16, 3783.0, 0.0023765505757182837, -2.5132060272881063e-06, 5.536915370640827e-10, -2.5132060272881063e-06, 3.5446803270389182e-09, -8.786430242234411e-13,5.536915370640827e-10, -8.786430242234411e-13, 2.323223174185578e-16, 3784.0, 0.0023759230971336365, -2.5118783923971932e-06, 5.532528324359021e-10, -2.5118783923971932e-06, 3.5418712407420117e-09, -8.777146761132504e-13, 5.532528324359021e-10, -8.777146761132504e-13, 2.320155062031945e-16, 3785.0, 0.0023752960842102766, -2.5105518943746574e-06, 5.528145163857801e-10, -2.5105518943746574e-06, 3.539065041024969e-09, -8.767875206254494e-13, 5.528145163857801e-10,-8.767875206254494e-13, 2.3170917144386407e-16, 3786.0, 0.0023746693041175604, -2.509226533220499e-06, 5.523766999360191e-10, -2.509226533220499e-06, 3.5362619499323955e-09, -8.758616119701468e-13, 5.523766999360191e-10, -8.758616119701468e-13, 2.3140333961034606e-16, 3787.0, 0.0023740429896861315, -2.507902081561042e-06, 5.519393830866193e-10, -2.507902081561042e-06, 3.533461745419686e-09, -8.749368959372339e-13, 5.519393830866193e-10, -8.749368959372339e-13, 2.310979577630813e-16, 3788.0, 0.0023734169080853462, -2.5065787667699624e-06, 5.51502454815278e-10, -2.5065787667699624e-06, 3.5306646495314453e-09, -8.740134267368194e-13, 5.51502454815278e-10, -8.740134267368194e-13, 2.3079307884162894e-16, 3789.0, 0.0023727910593152046, -2.5052563614735845e-06, 5.510660261442979e-10, -2.5052563614735845e-06, 3.5278704402230687e-09, -8.730912043689032e-13, 5.510660261442979e-10, -8.730912043689032e-13, 2.3048870284598903e-16, 3790.0, 0.0023721656762063503, -2.5039353204192594e-06, 5.506300970736788e-10, -2.5039353204192594e-06, 3.525079117494556e-09, -8.721701204132681e-13, 5.506300970736788e-10, -8.721701204132681e-13, 2.3018477683660235e-16, 3791.0, 0.0023715405259281397, -2.5026149614859605e-06, 5.501945565811184e-10, -2.5026149614859605e-06, 3.5222906813459076e-09, -8.712502832901314e-13, 5.501945565811184e-10, -8.712502832901314e-13, 2.298813537530281e-16, 3792.0, 0.0023709158413112164, -2.5012959667947143e-06, 5.49759515688919e-10, -2.5012959667947143e-06, 3.519505353821728e-09, -8.703316929994931e-13, 5.49759515688919e-10, -8.703316929994931e-13, 2.2957838065570707e-16, 3793.0, 0.0023702913895249367, -2.4999776542244945e-06, 5.493249188859295e-10, -2.4999776542244945e-06, 3.5167226908328075e-09, -8.694142953312445e-13, 5.493249188859295e-10, -8.694142953312445e-13, 2.292759104841985e-16, 3794.0, 0.0023696674033999443, -2.4986607058963273e-06, 5.488907661721498e-10, -2.4986607058963273e-06, 3.513943136468356e-09, -8.684980902853856e-13, 5.488907661721498e-10, -8.684980902853856e-13, 2.289739167687227e-16, 3795.0, 0.0023690436501055956, -2.497344667062862e-06, 5.484571130587312e-10, -2.497344667062862e-06, 3.5111666907283734e-09, -8.675830778619165e-13, 5.484571130587312e-10, -8.675830778619165e-13, 2.286723995092798e-16, 3796.0, 0.0023684201296418905, -2.496029537724098e-06, 5.480239040345225e-10, -2.496029537724098e-06, 3.50839290952365e-09, -8.666693122709457e-13, 5.480239040345225e-10, -8.666693122709457e-13, 2.283713587058697e-16, 3797.0, 0.0023677970748394728, -2.494715772627387e-06, 5.475911390995236e-10, -2.494715772627387e-06, 3.5056220148987904e-09, -8.657567393023646e-13, 5.475911390995236e-10, -8.657567393023646e-13, 2.2807079435849243e-16, 3798.0, 0.0023671742528676987, -2.4934026896517025e-06,5.471588182537346e-10, -2.4934026896517025e-06, 3.5028542288984e-09, -8.648453589561733e-13, 5.471588182537346e-10, -8.648453589561733e-13, 2.27770706467148e-16, 3799.0, 0.002366551896557212, -2.492090743544395e-06, 5.467269414971554e-10, -2.492090743544395e-06, 3.5000893294778734e-09, -8.639351712323717e-13, 5.467269414971554e-10, -8.639351712323717e-13, 2.274710685620568e-16, 3800.0, 0.0023659297730773687, -2.490779934305465e-06, 5.462955643409373e-10,-2.490779934305465e-06, 3.497327316637211e-09, -8.630261761309599e-13, 5.462955643409373e-10, -8.630261761309599e-13, 2.27171933582778e-16, 3801.0, 0.0023653078824281693, -2.489470261934912e-06, 5.45864631273929e-10, -2.489470261934912e-06, 3.4945679683318076e-09, -8.621183736519378e-13, 5.45864631273929e-10, -8.621183736519378e-13, 2.2687324858975246e-16, 3802.0, 0.002364686457440257, -2.4881614990590606e-06, 5.454341422961306e-10, -2.4881614990590606e-06, 3.491811728650873e-09, -8.612117637953054e-13, 5.454341422961306e-10, -8.612117637953054e-13, 2.2657506652253934e-16, 3803.0, 0.0023640652652829885, -2.486853645677911e-06, 5.450040974075421e-10, -2.486853645677911e-06, 3.489058375549803e-09, -8.603064007711714e-13, 5.450040974075421e-10, -8.603064007711714e-13, 2.2627730797179985e-16, 3804.0, 0.0023634445387870073, -2.485546929165139e-06, 5.445744966081634e-10, -2.485546929165139e-06, 3.4863081310732014e-09, -8.594021761593185e-13, 5.445744966081634e-10, -8.594021761593185e-13, 2.259800523468728e-16, 3805.0, 0.0023628240451216698, -2.484241349520744e-06, 5.441453398979945e-10, -2.484241349520744e-06, 3.483560551131859e-09, -8.584991441698553e-13, 5.441453398979945e-10, -8.584991441698553e-13, 2.2568327317797857e-16, 3806.0, 0.002362203784286976, -2.4829366793710506e-06, 5.437166827881867e-10, -2.4829366793710506e-06, 3.4808158577703807e-09, -8.575973048027818e-13, 5.437166827881867e-10, -8.575973048027818e-13, 2.2538694399533757e-16, 3807.0, 0.0023615839891135693, -2.481632918716059e-06, 5.432884142564376e-10, -2.481632918716059e-06, 3.4780740509887664e-09, -8.566966038479895e-13, 5.432884142564376e-10, -8.566966038479895e-13, 2.250910647989498e-16, 3808.0, 0.0023609644267708063, -2.480330294929445e-06, 5.428606453250495e-10, -2.480330294929445e-06, 3.475335130787016e-09, -8.557971497256955e-13,5.428606453250495e-10, -8.557971497256955e-13, 2.2479568852837447e-16, 3809.0, 0.0023603453300893307, -2.4790288080112077e-06, 5.424333204828713e-10, -2.4790288080112077e-06, 3.47259909716513e-09, -8.548988340156827e-13, 5.424333204828713e-10, -8.548988340156827e-13, 2.2450073577427276e-16, 3810.0, 0.0023597264662384987, -2.4777282305876724e-06, 5.420064397299029e-10, -2.4777282305876724e-06, 3.4698659501231077e-09, -8.540017109280595e-13, 5.420064397299029e-10,-8.540017109280595e-13, 2.242062859459835e-16, 3811.0, 0.0023591078352183104, -2.476428562658839e-06, 5.415800030661444e-10, -2.476428562658839e-06, 3.4671356896609495e-09, -8.531057804628261e-13, 5.415800030661444e-10, -8.531057804628261e-13, 2.2391228610394744e-16, 3812.0, 0.0023584896698594093, -2.4751300315983826e-06, 5.411540104915957e-10, -2.4751300315983826e-06, 3.4644080937340505e-09, -8.522109884098739e-13, 5.411540104915957e-10, -8.522109884098739e-13, 2.236187362481646e-16, 3813.0, 0.002357871737331152, -2.4738326374063035e-06, 5.407284620062569e-10, -2.4738326374063035e-06, 3.4616836064316203e-09, -8.513174431894199e-13, 5.407284620062569e-10, -8.513174431894199e-13, 2.2332566284841463e-16, 3814.0, 0.002357254270464182, -2.4725361527089262e-06, 5.403033576101279e-10, -2.4725361527089262e-06, 3.4589617836644493e-09, -8.504249821711385e-13, 5.403033576101279e-10, -8.504249821711385e-13, 2.2303303943491787e-16, 3815.0, 0.0023566370364278555, -2.471240804879926e-06, 5.398786973032088e-10, -2.471240804879926e-06, 3.456243069521747e-09, -8.495337137752468e-13, 5.398786973032088e-10, -8.495337137752468e-13, 2.2274089247745394e-16, 3816.0, 0.0023560200352221727, -2.469946366545628e-06, 5.394544810854995e-10, -2.469946366545628e-06, 3.4535270199143042e-09, -8.486436380017448e-13, 5.394544810854995e-10, -8.486436380017448e-13, 2.2244919550624324e-16, 3817.0, 0.0023554034996777773, -2.4686528377060313e-06, 5.390307089570001e-10, -2.4686528377060313e-06, 3.4508138568867253e-09, -8.477547548506326e-13, 5.390307089570001e-10, -8.477547548506326e-13, 2.2215794852128577e-16, 3818.0, 0.0023547871969640255, -2.467360445734812e-06, 5.386073809177105e-10, -2.467360445734812e-06, 3.4481035804390103e-09, -8.468669559016928e-13, 5.386073809177105e-10, -8.468669559016928e-13, 2.2186716475747133e-16, 3819.0, 0.002354171359911561, -2.4660689632582944e-06, 5.381844969676308e-10, -2.4660689632582944e-06, 3.4453959685265545e-09, -8.459803495751428e-13, 5.381844969676308e-10, -8.459803495751428e-13, 2.2157684421479992e-16, 3820.0, 0.0023535555228590965, -2.464778617650154e-06, 5.37762057106761e-10, -2.464778617650154e-06, 3.4426912431939627e-09, -8.450949358709825e-13, 5.37762057106761e-10, -8.450949358709825e-13, 2.2128697365838174e-16, 3821.0, 0.002352940384298563, -2.463489408910391e-06, 5.373400613351009e-10, -2.463489408910391e-06, 3.43998962648584e-09, -8.442106605791033e-13, 5.373400613351009e-10, -8.442106605791033e-13, 2.2099755308821679e-16, 3822.0, 0.0023523252457380295, -2.462200882291654e-06, 5.369185096526508e-10, -2.462200882291654e-06, 3.437290452268371e-09, -8.433275236995053e-13, 5.369185096526508e-10, -8.433275236995053e-13, 2.2070859573919486e-16, 3823.0, 0.0023517105728387833, -2.46091371991497e-06,5.364974020594104e-10, -2.46091371991497e-06, 3.4345943866753714e-09, -8.424455794422969e-13, 5.364974020594104e-10, -8.424455794422969e-13, 2.2042008837642617e-16, 3824.0, 0.0023510963656008244, -2.459627239659312e-06, 5.3607673855538e-10, -2.459627239659312e-06, 3.431900985617631e-09, -8.415647193872611e-13, 5.3607673855538e-10, -8.415647193872611e-13, 2.201320309999107e-16, 3825.0, 0.002350482391193509, -2.4583418962720316e-06, 5.356565191405593e-10,-2.4583418962720316e-06, 3.429210471139754e-09, -8.406851061647236e-13, 5.356565191405593e-10, -8.406851061647236e-13, 2.1984442360964846e-16, 3826.0, 0.0023498686496168375, -2.4570576897531282e-06, 5.352367438149486e-10, -2.4570576897531282e-06, 3.4265226211971367e-09, -8.398065771443586e-13, 5.352367438149486e-10, -8.398065771443586e-13, 2.1955726620563945e-16, 3827.0, 0.0023492551408708096, -2.4557743927289266e-06, 5.348173570673964e-10, -2.4557743927289266e-06, 3.423837879878988e-09, -8.389291865362747e-13, 5.348173570673964e-10, -8.389291865362747e-13, 2.1927057202277347e-16, 3828.0, 0.002348642097786069, -2.4544920051994268e-06, 5.343984699202053e-10, -2.4544920051994268e-06, 3.4211555810514938e-09, -8.380529885505805e-13, 5.343984699202053e-10, -8.380529885505805e-13, 2.1898431459127092e-16, 3829.0, 0.0023480295203626156, -2.453210754538304e-06, 5.339799713510729e-10, -2.453210754538304e-06, 3.4184763908484683e-09, -8.371778747670588e-13, 5.339799713510729e-10, -8.371778747670588e-13, 2.186985071460216e-16, 3830.0, 0.0023474169429391623, -2.4519304133718833e-06, 5.335619168711503e-10, -2.4519304133718833e-06, 3.415799865180702e-09, -8.363039536059269e-13, 5.335619168711503e-10, -8.363039536059269e-13, 2.184131496870255e-16, 3831.0, 0.0023468048311769962, -2.4506512090738397e-06, 5.331443064804375e-10, -2.4506512090738397e-06, 3.4131260040481948e-09, -8.354311708570761e-13, 5.331443064804375e-10, -8.354311708570761e-13, 2.1812824221428264e-16, 3832.0, 0.0023461931850761175, -2.449372914270498e-06, 5.327271401789346e-10, -2.449372914270498e-06, 3.4104552515401565e-09, -8.345594723103977e-13, 5.327271401789346e-10, -8.345594723103977e-13, 2.178437714929032e-16, 3833.0, 0.002345581538975239, -2.4480955289618578e-06, 5.323104179666416e-10, -2.4480955289618578e-06, 3.4077869415227724e-09, -8.336889663861091e-13,5.323104179666416e-10, -8.336889663861091e-13, 2.17559750757777e-16, 3834.0, 0.002344970591366291, -2.446819280521595e-06, 5.318940843324071e-10, -2.446819280521595e-06, 3.4051217401298572e-09, -8.328195988741016e-13, 5.318940843324071e-10, -8.328195988741016e-13, 2.1727618000890402e-16, 3835.0, 0.0023443596437573433, -2.445543941576034e-06, 5.314782502985338e-10, -2.445543941576034e-06, 3.4024589812275963e-09, -8.319513155642666e-13, 5.314782502985338e-10,-8.319513155642666e-13, 2.1699304601139447e-16, 3836.0, 0.002343749161809683, -2.44426973949885e-06, 5.310628048427191e-10, -2.44426973949885e-06, 3.3997993309498042e-09, -8.310842248768213e-13, 5.310628048427191e-10, -8.310842248768213e-13, 2.1671034876524835e-16, 3837.0, 0.002343138912692666, -2.442996446916368e-06, 5.306478034761142e-10, -2.442996446916368e-06, 3.3971421231626664e-09, -8.302182183915485e-13, 5.306478034761142e-10, -8.302182183915485e-13, 2.1642810150535545e-16, 3838.0, 0.0023425291292369366, -2.4417240638285875e-06, 5.302332461987191e-10, -2.4417240638285875e-06, 3.3944878019553926e-09, -8.293533503185568e-13, 5.302332461987191e-10, -8.293533503185568e-13, 2.1614629099682599e-16, 3839.0, 0.0023419195786118507, -2.4404528176091844e-06, 5.298190774993827e-10, -2.4404528176091844e-06, 3.3918363673279828e-09, -8.284896206578463e-13, 5.298190774993827e-10, -8.284896206578463e-13, 2.1586493047454975e-16, 3840.0, 0.0023413102608174086, -2.439182480884483e-06, 5.294054084004074e-10, -2.439182480884483e-06, 3.389187597235832e-09, -8.276269751993082e-13, 5.294054084004074e-10, -8.276269751993082e-13, 2.1558400670363694e-16, 3841.0, 0.0023407014086842537, -2.4379130536544835e-06, 5.289921278794907e-10, -2.4379130536544835e-06, 3.3865417137235454e-09, -8.267654681530512e-13, 5.289921278794907e-10, -8.267654681530512e-13, 2.1530351968408756e-16, 3842.0, 0.0023400927893817425, -2.436644763292861e-06, 5.285792914477838e-10, -2.436644763292861e-06, 3.383898494746518e-09, -8.259050995190753e-13, 5.285792914477838e-10, -8.259050995190753e-13, 2.150234561810118e-16, 3843.0, 0.002339484402909875, -2.4353773824259406e-06, 5.281668435941356e-10, -2.4353773824259406e-06, 3.3812579403047494e-09, -8.250458692973806e-13, 5.281668435941356e-10, -8.250458692973806e-13, 2.1474384266418928e-16, 3844.0, 0.0023388764820992947, -2.434110911053722e-06, 5.277548953408484e-10, -2.434110911053722e-06, 3.378620272442845e-09, -8.241877232778583e-13, 5.277548953408484e-10, -8.241877232778583e-13, 2.1446466589873018e-16, 3845.0, 0.002338268794119358, -2.43284557654988e-06, 5.273433356656199e-10, -2.43284557654988e-06, 3.3759852691161996e-09, -8.233307156706171e-13, 5.273433356656199e-10, -8.233307156706171e-13, 2.1418592588463452e-16, 3846.0, 0.0023376615718007088, -2.4315811515407404e-06, 5.269321645684499e-10, -2.4315811515407404e-06, 3.3733529303248133e-09, -8.224747922655484e-13, 5.269321645684499e-10, -8.224747922655484e-13, 2.1390762262190227e-16, 3847.0, 0.002337054582312703, -2.430317863399978e-06, 5.265214930716411e-10, -2.430317863399978e-06, 3.370723478113291e-09, -8.216200072727609e-13, 5.265214930716411e-10, -8.216200072727609e-13, 2.1362974287564366e-16, 3848.0, 0.002336447825655341, -2.429055484753917e-06,5.261112101528909e-10, -2.429055484753917e-06, 3.368096690437028e-09, -8.207663064821458e-13, 5.261112101528909e-10, -8.207663064821458e-13, 2.1335229988074847e-16, 3849.0, 0.002335841301828623, -2.427794015602558e-06, 5.257013713233505e-10, -2.427794015602558e-06, 3.365472567296024e-09, -8.199137441038118e-13, 5.257013713233505e-10, -8.199137441038118e-13, 2.1307529363721672e-16, 3850.0, 0.002335235243663192, -2.4265334559459006e-06, 5.252919210718687e-10,-2.4265334559459006e-06, 3.362851108690279e-09, -8.190622659276503e-13, 5.252919210718687e-10, -8.190622659276503e-13, 2.1279871091015859e-16, 3851.0, 0.0023346294183284044, -2.4252740331576206e-06, 5.248829149095968e-10, -2.4252740331576206e-06, 3.360232536664398e-09, -8.182118719536613e-13, 5.248829149095968e-10, -8.182118719536613e-13, 2.1252256493446388e-16, 3852.0, 0.0023340240586549044, -2.4240155198640423e-06, 5.244743528365348e-10, -2.4240155198640423e-06, 3.3576166291737763e-09, -8.173626163919534e-13, 5.244743528365348e-10, -8.173626163919534e-13, 2.122468557101326e-16, 3853.0, 0.002333418931812048, -2.4227581434388412e-06, 5.240661793415313e-10, -2.4227581434388412e-06, 3.3550033862184137e-09, -8.16514445032418e-13, 5.240661793415313e-10, -8.16514445032418e-13, 2.1197157000227496e-16, 3854.0, 0.002332814037799835, -2.4215014491346665e-06, 5.236584499357377e-10, -2.4215014491346665e-06, 3.352393029842915e-09, -8.156674120851637e-13, 5.236584499357377e-10, -8.156674120851637e-13, 2.1169670781089094e-16, 3855.0, 0.0023322096094489098, -2.420245891698869e-06, 5.23251164619154e-10, -2.420245891698869e-06, 3.3497853380026754e-09, -8.148214633400819e-13, 5.23251164619154e-10, -8.148214633400819e-13, 2.1142226913598055e-16, 3856.0, 0.002331605413928628, -2.4189914711314486e-06, 5.228442678806289e-10, -2.4189914711314486e-06, 3.34718008865309e-09, -8.139765987971725e-13, 5.228442678806289e-10, -8.139765987971725e-13, 2.1114826721243358e-16, 3857.0, 0.00233100145123899, -2.4177377326850547e-06, 5.224378152313136e-10, -2.4177377326850547e-06, 3.3445777258833687e-09, -8.131328184564357e-13, 5.224378152313136e-10, -8.131328184564357e-13, 2.1087468880536024e-16, 3858.0, 0.002330397954210639, -2.416485131107038e-06, 5.220318066712082e-10, -2.416485131107038e-06, 3.3419782496935113e-09, -8.122901223178713e-13,5.220318066712082e-10, -8.122901223178713e-13, 2.1060153391476053e-16, 3859.0, 0.002329794690012932, -2.415233439023723e-06, 5.216261866891614e-10, -2.415233439023723e-06, 3.339381215994308e-09, -8.114485103814795e-13, 5.216261866891614e-10, -8.114485103814795e-13, 2.1032880254063445e-16, 3860.0, 0.0023291916586458683, -2.413982883808785e-06, 5.212209552851732e-10, -2.413982883808785e-06, 3.336786846830364e-09, -8.106080368573687e-13, 5.212209552851732e-10,-8.106080368573687e-13, 2.10056494682982e-16, 3861.0, 0.002328589092940092, -2.4127330107148737e-06, 5.208161679703949e-10, -2.4127330107148737e-06, 3.334195364246284e-09, -8.097686475354304e-13, 5.208161679703949e-10, -8.097686475354304e-13, 2.0978462357669296e-16, 3862.0, 0.0023279867600649595, -2.4114842744893394e-06, 5.204118247448264e-10, -2.4114842744893394e-06, 3.331606324152858e-09, -8.08930288205556e-13, 5.204118247448264e-10, -8.08930288205556e-13, 2.0951316275198776e-16, 3863.0, 0.0023273846600204706, -2.410236447758507e-06, 5.200078700973165e-10, -2.410236447758507e-06, 3.3290201706392963e-09, -8.080930672879627e-13, 5.200078700973165e-10, -8.080930672879627e-13, 2.0924212544375619e-16, 3864.0, 0.002326783025637269, -2.4089897578960517e-06, 5.196043595390165e-10, -2.4089897578960517e-06, 3.3264366816609936e-09, -8.072569305725419e-13, 5.196043595390165e-10, -8.072569305725419e-13, 2.0897149841710844e-16, 3865.0, 0.002326181624084711, -2.4077439775282983e-06, 5.192012375587751e-10, -2.4077439775282983e-06, 3.323855635173345e-09, -8.064218238491849e-13, 5.192012375587751e-10, -8.064218238491849e-13, 2.0870130814182412e-16, 3866.0, 0.002325580455362797, -2.4064991066552466e-06, 5.187985596677436e-10, -2.4064991066552466e-06, 3.3212774752655605e-09, -8.055878555381091e-13, 5.187985596677436e-10, -8.055878555381091e-13, 2.0843152814812362e-16, 3867.0, 0.00232497975230217, -2.4052551452768967e-06, 5.183962703547706e-10, -2.4052551452768967e-06, 3.318701979893035e-09, -8.047549172190971e-13, 5.183962703547706e-10, -8.047549172190971e-13, 2.0816215843600695e-16, 3868.0, 0.0023243792820721865, -2.4040120933932485e-06, 5.179944251310076e-10, -2.4040120933932485e-06, 3.3161291490557687e-09, -8.039230631022576e-13, 5.179944251310076e-10, -8.039230631022576e-13, 2.078932122403639e-16, 3869.0, 0.0023237792775034904, -2.4027701783779776e-06, 5.175929684853031e-10, -2.4027701783779776e-06, 3.3135587607091566e-09, -8.030922931875906e-13, 5.175929684853031e-10, -8.030922931875906e-13, 2.076246895611945e-16, 3870.0, 0.0023231792729347944, -2.4015291728574084e-06, 5.171919559288085e-10, -2.4015291728574084e-06, 3.3109912589424084e-09, -8.02262607475096e-13, 5.171919559288085e-10, -8.02262607475096e-13, 2.073565771636089e-16, 3871.0, 0.0023225797340273857, -2.400289076831541e-06, 5.167913319503725e-10, -2.400289076831541e-06, 3.3084264217109194e-09, -8.01434005964774e-13, 5.167913319503725e-10, -8.01434005964774e-13, 2.0708888828249695e-16, 3872.0, 0.0023219806607812643, -2.399050117674051e-06, 5.163911520611464e-10, -2.399050117674051e-06, 3.3058640269700845e-09, -8.006064344465158e-13, 5.163911520611464e-10, -8.006064344465158e-13, 2.0682160968296881e-16, 3873.0, 0.002321381587535143, -2.397811840637587e-06,5.159913607499789e-10, -2.397811840637587e-06, 3.3033045188091137e-09, -7.997799471304301e-13, 5.159913607499789e-10, -7.997799471304301e-13, 2.065547413650245e-16, 3874.0, 0.002320782979950309, -2.3965747004695004e-06, 5.155920135280212e-10, -2.3965747004695004e-06, 3.300747453138797e-09, -7.989545440165169e-13, 5.155920135280212e-10, -7.989545440165169e-13, 2.0628828332866403e-16, 3875.0, 0.002320184838026762, -2.3953384697961155e-06, 5.151930548841221e-10,-2.3953384697961155e-06, 3.2981930520037395e-09, -7.981301708946675e-13, 5.151930548841221e-10, -7.981301708946675e-13, 2.0602224880877717e-16, 3876.0, 0.0023195866961032152, -2.3941031486174325e-06, 5.147944848182817e-10, -2.3941031486174325e-06, 3.295641315403941e-09, -7.973068819749907e-13, 5.147944848182817e-10, -7.973068819749907e-13, 2.0575661133558434e-16, 3877.0, 0.0023189890198409557, -2.3928689643071266e-06, 5.143963588416511e-10, -2.3928689643071266e-06, 3.2930922433394016e-09, -7.964846772574863e-13, 5.143963588416511e-10, -7.964846772574863e-13, 2.0549139737886514e-16, 3878.0, 0.0023183918092399836, -2.391635462117847e-06, 5.139986214430792e-10, -2.391635462117847e-06, 3.2905458358101214e-09, -7.956635025320458e-13, 5.139986214430792e-10, -7.956635025320458e-13, 2.0522659370372976e-16, 3879.0, 0.0023177945986390114, -2.3904030967969447e-06, 5.136012726225658e-10, -2.3904030967969447e-06, 3.2880020928161002e-09, -7.948433577986691e-13, 5.136012726225658e-10, -7.948433577986691e-13, 2.0496218707528841e-16, 3880.0, 0.0023171978536993265, -2.389171640970744e-06, 5.132043678912623e-10, -2.389171640970744e-06, 3.2854607923127332e-09, -7.940242972674649e-13, 5.132043678912623e-10, -7.940242972674649e-13, 2.046982039633207e-16, 3881.0, 0.002316601574420929, -2.3879410946392454e-06, 5.128079072491687e-10, -2.3879410946392454e-06, 3.2829221563446254e-09, -7.932063209384332e-13, 5.128079072491687e-10, -7.932063209384332e-13, 2.04434617898047e-16, 3882.0, 0.0023160052951425314, -2.386711685176124e-06, 5.124117796739824e-10, -2.386711685176124e-06, 3.2803861849117766e-09, -7.923893746014654e-13, 5.124117796739824e-10, -7.923893746014654e-13, 2.0417144211435712e-16, 3883.0, 0.002315409481525421, -2.3854829578340286e-06, 5.12016096188006e-10, -2.3854829578340286e-06, 3.277852878014187e-09, -7.915734582565614e-13,5.12016096188006e-10, -7.915734582565614e-13, 2.0390867661225108e-16, 3884.0, 0.0023148139007389545, -2.3842553673603106e-06, 5.116208012800882e-10, -2.3842553673603106e-06, 3.2753222356518563e-09, -7.9075862611383e-13, 5.116208012800882e-10, -7.9075862611383e-13, 2.0364630815683906e-16, 3885.0, 0.0023142187856137753, -2.3830286863812944e-06, 5.112259504613803e-10, -2.3830286863812944e-06, 3.27279403578018e-09, -7.899448239631623e-13, 5.112259504613803e-10,-7.899448239631623e-13, 2.0338434998301086e-16, 3886.0, 0.0023136239033192396, -2.38180291489698e-06, 5.10831488220731e-10, -2.38180291489698e-06, 3.2702685004437626e-09, -7.891320518045586e-13, 5.10831488220731e-10, -7.891320518045586e-13, 2.031228020907665e-16, 3887.0, 0.0023130292538553476, -2.3805780529073672e-06, 5.104374145581403e-10, -2.3805780529073672e-06, 3.2677454075979995e-09, -7.883203638481273e-13, 5.104374145581403e-10, -7.883203638481273e-13, 2.0286165124521616e-16, 3888.0, 0.0023124348372220993, -2.3793543277861318e-06, 5.100437849847594e-10, -2.3793543277861318e-06, 3.2652252013321004e-09, -7.875097058837599e-13, 5.100437849847594e-10, -7.875097058837599e-13, 2.0260089744635984e-16, 3889.0, 0.0023118408862501383, -2.3781312847859226e-06, 5.096505439894372e-10, -2.3781312847859226e-06, 3.2627074375568554e-09, -7.867000779114564e-13, 5.096505439894372e-10, -7.867000779114564e-13, 2.0234055392908735e-16, 3890.0, 0.002311247168108821, -2.3769093786540907e-06, 5.092576915721736e-10, -2.3769093786540907e-06, 3.2601921162722647e-09, -7.858914799312167e-13, 5.092576915721736e-10, -7.858914799312167e-13, 2.0208060745850889e-16, 3891.0, 0.002310653915628791, -2.3756883820169605e-06, 5.088652277329686e-10, -2.3756883820169605e-06, 3.257679681567538e-09, -7.850839661531495e-13, 5.088652277329686e-10, -7.850839661531495e-13, 2.0182107126951425e-16, 3892.0, 0.0023100608959794044, -2.3744680675008567e-06, 5.084732079829735e-10, -2.3744680675008567e-06, 3.2551696893534654e-09, -7.842774281570375e-13, 5.084732079829735e-10, -7.842774281570375e-13, 2.0156191889232383e-16, 3893.0, 0.0023094681091606617, -2.3732491172268055e-06, 5.080815768110369e-10, -2.3732491172268055e-06, 3.252662139630047e-09, -7.83471974363098e-13, 5.080815768110369e-10, -7.83471974363098e-13, 2.0130317679671725e-16, 3894.0, 0.0023088755551725626, -2.3720308490737807e-06, 5.07690334217159e-10, -2.3720308490737807e-06, 3.2501572544418877e-09, -7.826675505612224e-13, 5.07690334217159e-10, -7.826675505612224e-13, 2.0104483174780469e-16, 3895.0, 0.002308283466845751, -2.3708134904154576e-06, 5.072994802013397e-10, -2.3708134904154576e-06, 3.2476550337889876e-09, -7.81864102541302e-13, 5.072994802013397e-10, -7.81864102541302e-13, 2.0078688374558615e-16, 3896.0, 0.0023076916113495827, -2.3695972686255118e-06, 5.069090702747303e-10, -2.3695972686255118e-06, 3.2451552556267416e-09, -7.810617387235541e-13, 5.069090702747303e-10, -7.810617387235541e-13, 2.0052933279006164e-16, 3897.0, 0.002307099988684058, -2.3683817289565923e-06, 5.065190489261795e-10, -2.3683817289565923e-06, 3.2426581419997547e-09, -7.802604048978701e-13, 5.065190489261795e-10, -7.802604048978701e-13, 2.0027217888123115e-16, 3898.0, 0.0023065085988491774, -2.36716732615605e-06,5.061294161556873e-10, -2.36716732615605e-06, 3.240163470863422e-09, -7.794601010642499e-13, 5.061294161556873e-10, -7.794601010642499e-13, 2.000154220190947e-16, 3899.0, 0.002305917674675584, -2.3659538328502094e-06, 5.057401719632537e-10, -2.3659538328502094e-06, 3.2376714642623483e-09, -7.78660773012585e-13, 5.057401719632537e-10, -7.78660773012585e-13, 1.9975904896876246e-16, 3900.0, 0.002305326983332634, -2.3647410216653952e-06, 5.0535137186003e-10,-2.3647410216653952e-06, 3.2351821221965338e-09, -7.778625291630925e-13, 5.0535137186003e-10, -7.778625291630925e-13, 1.9950308620001405e-16, 3901.0, 0.0023047367576509714, -2.3635293473489583e-06, 5.049629048237136e-10, -2.3635293473489583e-06, 3.2326952226213734e-09, -7.770652610955553e-13, 5.049629048237136e-10, -7.770652610955553e-13, 1.9924750724306987e-16, 3902.0, 0.0023041467647999525, -2.362318582527223e-06, 5.045748818766072e-10, -2.362318582527223e-06, 3.2302107655368673e-09, -7.762690772301906e-13, 5.045748818766072e-10, -7.762690772301906e-13, 1.989923253328197e-16, 3903.0, 0.0023035570047795773, -2.361108954573865e-06, 5.041872475075593e-10, -2.361108954573865e-06, 3.22772897298762e-09, -7.754738691467811e-13, 5.041872475075593e-10, -7.754738691467811e-13, 1.9873752723437377e-16, 3904.0, 0.0023029674775898457, -2.3599000087415334e-06, 5.0380000171657e-10, -2.3599000087415334e-06, 3.2252496229290273e-09, -7.746796368453268e-13, 5.0380000171657e-10, -7.746796368453268e-13, 1.9848312618262186e-16, 3905.0, 0.0023023784160614014, -2.3586919724039035e-06, 5.034131445036394e-10, -2.3586919724039035e-06, 3.2227729374056935e-09, -7.73886488746045e-13, 5.034131445036394e-10, -7.73886488746045e-13, 1.9822912217756398e-16, 3906.0, 0.0023017895873636007, -2.357485072934651e-06, 5.030267313799186e-10, -2.357485072934651e-06, 3.220298694373014e-09, -7.730943164287185e-13, 5.030267313799186e-10, -7.730943164287185e-13, 1.9797550198431032e-16, 3907.0, 0.0023012009914964437, -2.3562788555864245e-06, 5.026406513231052e-10, -2.3562788555864245e-06, 3.2178268938309884e-09, -7.723031741034558e-13, 5.026406513231052e-10, -7.723031741034558e-13, 1.9772226560286089e-16, 3908.0, 0.0023006126284599304, -2.3550737751065753e-06, 5.022550153555017e-10, -2.3550737751065753e-06, 3.215357757824222e-09, -7.71513061770257e-13,5.022550153555017e-10, -7.71513061770257e-13, 1.9746942626810548e-16, 3909.0, 0.0023000247310847044, -2.3538693767477525e-06, 5.018697124548055e-10, -2.3538693767477525e-06, 3.21289106430811e-09, -7.707239252190135e-13, 5.018697124548055e-10, -7.707239252190135e-13, 1.972169707451543e-16, 3910.0, 0.002299437066540122, -2.352666115257307e-06, 5.014848536433192e-10, -2.352666115257307e-06, 3.210427035327257e-09, -7.699358186598337e-13, 5.014848536433192e-10,-7.699358186598337e-13, 1.9696491226889714e-16, 3911.0, 0.002298849867656827, -2.351463763261563e-06, 5.011003834098915e-10, -2.351463763261563e-06, 3.207965448837058e-09, -7.691487420927179e-13, 5.011003834098915e-10, -7.691487420927179e-13, 1.967132243695544e-16, 3912.0, 0.002298262668773532, -2.350262320760521e-06, 5.007163017545224e-10, -2.350262320760521e-06, 3.205506304837513e-09, -7.683626413075573e-13, 5.007163017545224e-10, -7.683626413075573e-13, 1.964619335169057e-16, 3913.0, 0.002297675935551524, -2.3490615603805054e-06, 5.00332608677212e-10, -2.3490615603805054e-06, 3.2030498253732276e-09, -7.675775163043519e-13, 5.00332608677212e-10, -7.675775163043519e-13, 1.962110264760612e-16, 3914.0, 0.0022970896679908037, -2.347861936868867e-06, 4.999493041779601e-10, -2.347861936868867e-06, 3.200595788399596e-09, -7.667934212932104e-13, 4.999493041779601e-10, -7.667934212932104e-13, 1.9596050324702095e-16, 3915.0, 0.0022965034004300833, -2.34666322285193e-06, 4.995663882567669e-10, -2.34666322285193e-06, 3.198144193916619e-09, -7.660103562741327e-13, 4.995663882567669e-10, -7.660103562741327e-13, 1.957103638297849e-16, 3916.0, 0.00229591759853065, -2.3454654183296952e-06, 4.991839164247835e-10, -2.3454654183296952e-06, 3.1956952639689007e-09, -7.652282670370103e-13, 4.991839164247835e-10, -7.652282670370103e-13, 1.954605949894633e-16, 3917.0, 0.0022953320294618607, -2.344268523302162e-06, 4.988017776597076e-10, -2.344268523302162e-06, 3.1932485544672318e-09, -7.644471535818431e-13, 4.988017776597076e-10, -7.644471535818431e-13, 1.9521122319583571e-16, 3918.0, 0.002294746693223715, -2.3430725377693307e-06, 4.984200274726902e-10, -2.3430725377693307e-06, 3.190804509500822e-09, -7.636670701187398e-13, 4.984200274726902e-10, -7.636670701187398e-13, 1.9496223521401235e-16, 3919.0, 0.0022941618226468563, -2.341877461731201e-06, 4.980386658637315e-10, -2.341877461731201e-06, 3.1883631290696712e-09, -7.628879624375917e-13, 4.980386658637315e-10, -7.628879624375917e-13, 1.9471361780910341e-16, 3920.0, 0.0022935771849006414, -2.340683295187773e-06, 4.976577483439826e-10, -2.340683295187773e-06, 3.1859239690845698e-09, -7.621098305383989e-13, 4.976577483439826e-10, -7.621098305383989e-13, 1.944653842159987e-16, 3921.0, 0.0022929927799850702, -2.339490038139047e-06, 4.972771638911411e-10, -2.339490038139047e-06, 3.1834874736347274e-09, -7.613327286312699e-13, 4.972771638911411e-10, -7.613327286312699e-13, 1.942175344346982e-16, 3922.0, 0.0022924088407307863, -2.3382979179586982e-06, 4.968969680163582e-10, -2.3382979179586982e-06, 3.181053420675539e-09, -7.605566025060961e-13, 4.968969680163582e-10, -7.605566025060961e-13, 1.9397005523031215e-16, 3923.0, 0.002291825134307146, -2.3371064798993757e-06,4.965171607196339e-10, -2.3371064798993757e-06, 3.178621810207005e-09, -7.597814521628776e-13, 4.965171607196339e-10, -7.597814521628776e-13, 1.937229598377303e-16, 3924.0, 0.0022912416607141495, -2.335915951334755e-06, 4.961377975121195e-10, -2.335915951334755e-06, 3.1761926422291253e-09, -7.59007331811723e-13, 4.961377975121195e-10, -7.59007331811723e-13, 1.934762482569527e-16, 3925.0, 0.0022906584199517965, -2.334726332264836e-06, 4.957587673715125e-10,-2.334726332264836e-06, 3.1737659167418997e-09, -7.582341330324149e-13, 4.957587673715125e-10, -7.582341330324149e-13, 1.932299072530895e-16, 3926.0, 0.002290075644850731, -2.3335376226896187e-06, 4.953801258089641e-10, -2.3335376226896187e-06, 3.171341633745328e-09, -7.574619642451708e-13, 4.953801258089641e-10, -7.574619642451708e-13, 1.9298393682614073e-16, 3927.0, 0.0022894928697496653, -2.3323498226091033e-06, 4.950018728244743e-10, -2.3323498226091033e-06, 3.1689200152840158e-09, -7.566907712398818e-13, 4.950018728244743e-10, -7.566907712398818e-13, 1.9273835021099619e-16, 3928.0, 0.0022889107931405306, -2.3311629320232896e-06, 4.946240084180431e-10, -2.3311629320232896e-06, 3.1665008393133576e-09, -7.559205540165481e-13, 4.946240084180431e-10, -7.559205540165481e-13, 1.9249313417276607e-16, 3929.0, 0.002288328716531396, -2.3299769509321777e-06, 4.942465325896706e-10, -2.3299769509321777e-06, 3.1640838837887486e-09, -7.551513125751697e-13, 4.942465325896706e-10, -7.551513125751697e-13, 1.9224830194634017e-16, 3930.0, 0.0022877471055835485, -2.3287918793357676e-06, 4.938694453393566e-10, -2.3287918793357676e-06, 3.1616695927993987e-09, -7.543830469157464e-13, 4.938694453393566e-10, -7.543830469157464e-13, 1.920038270619389e-16, 3931.0, 0.002287165727466345, -2.3276077172340592e-06, 4.934927466671013e-10, -2.3276077172340592e-06, 3.159257744300703e-09, -7.536157570382784e-13, 4.934927466671013e-10, -7.536157570382784e-13, 1.9175973598934185e-16, 3932.0, 0.0022865845821797848, -2.3264244646270527e-06, 4.931163810617534e-10, -2.3264244646270527e-06, 3.1568483382926615e-09, -7.528494429427657e-13, 4.931163810617534e-10, -7.528494429427657e-13, 1.9151601549365923e-16, 3933.0, 0.0022860036697238684, -2.325242121514748e-06, 4.927404595456153e-10, -2.325242121514748e-06, 3.154441374775274e-09, -7.520841046292082e-13,4.927404595456153e-10, -7.520841046292082e-13, 1.9127266557489103e-16, 3934.0, 0.0022854232229292393, -2.324060687897145e-06, 4.923648710963846e-10, -2.324060687897145e-06, 3.152036853748541e-09, -7.513197420976059e-13, 4.923648710963846e-10, -7.513197420976059e-13, 1.9102968623303725e-16, 3935.0, 0.002284843008965254, -2.3228801637742436e-06, 4.919897267363638e-10, -2.3228801637742436e-06, 3.149634775212462e-09, -7.505563553479588e-13, 4.919897267363638e-10,-7.505563553479588e-13, 1.907870774680979e-16, 3936.0, 0.0022842632606625557, -2.321700549146044e-06, 4.916149154432503e-10, -2.321700549146044e-06, 3.1472351391670372e-09, -7.49793944380267e-13, 4.916149154432503e-10, -7.49793944380267e-13, 1.9054483928007297e-16, 3937.0, 0.0022836835123598576, -2.3205218440125464e-06, 4.912404927281955e-10, -2.3205218440125464e-06, 3.1448379456122666e-09, -7.490325091945305e-13, 4.912404927281955e-10, -7.490325091945305e-13, 1.9030297166896246e-16, 3938.0, 0.0022831042297184467, -2.319343821000075e-06, 4.908664585911993e-10, -2.319343821000075e-06, 3.14244319454815e-09, -7.482719955806405e-13, 4.908664585911993e-10, -7.482719955806405e-13, 1.9006147463476638e-16, 3939.0, 0.0022825251799076796, -2.318166934855981e-06, 4.904927575211104e-10, -2.318166934855981e-06, 3.140050663930083e-09, -7.475125119588144e-13, 4.904927575211104e-10, -7.475125119588144e-13, 1.8982033494259492e-16, 3940.0, 0.002281946362927556, -2.3169909582065884e-06, 4.901195005402315e-10, -2.3169909582065884e-06, 3.137660797847275e-09, -7.467539499088349e-13, 4.901195005402315e-10, -7.467539499088349e-13, 1.8957956582733789e-16, 3941.0, 0.00228136801160872, -2.3158156636782223e-06, 4.897465766262599e-10, -2.3158156636782223e-06, 3.135273374255121e-09, -7.459963094307021e-13, 4.897465766262599e-10, -7.459963094307021e-13, 1.8933916728899528e-16, 3942.0, 0.0022807898931205273, -2.3146415060182335e-06, 4.893740412903469e-10, -2.3146415060182335e-06, 3.132888171109016e-09, -7.45239698944633e-13, 4.893740412903469e-10, -7.45239698944633e-13, 1.890991393275671e-16, 3943.0, 0.0022802120074629784, -2.313468030479271e-06, 4.890018945324925e-10, -2.313468030479271e-06, 3.1305056324981706e-09, -7.444840100304106e-13, 4.890018945324925e-10, -7.444840100304106e-13, 1.8885946870816352e-16, 3944.0, 0.0022796345874667168, -2.3122956918086857e-06, 4.886301363526968e-10, -2.3122956918086857e-06, 3.1281253143333743e-09, -7.437292968981435e-13, 4.886301363526968e-10, -7.437292968981435e-13, 1.8862015543078458e-16, 3945.0, 0.002279057167470455, -2.3111240352591267e-06, 4.882587667509597e-10, -2.3111240352591267e-06, 3.125747660703837e-09, -7.429755595478316e-13, 4.882587667509597e-10, -7.429755595478316e-13, 1.8838122596520987e-16, 3946.0, 0.002278480213135481, -2.3099532882042695e-06, 4.8788773021613e-10, -2.3099532882042695e-06, 3.123372227520349e-09, -7.422227437693663e-13, 4.8788773021613e-10, -7.422227437693663e-13, 1.8814264060676997e-16, 3947.0, 0.0022779034916311502, -2.308783450644114e-06, 4.875170822593589e-10, -2.308783450644114e-06, 3.1209992368275152e-09, -7.414708495627476e-13, 4.875170822593589e-10, -7.414708495627476e-13, 1.879044258252445e-16, 3948.0, 0.002277327235788107, -2.3076145225786604e-06,4.871468228806464e-10, -2.3076145225786604e-06, 3.1186284665807307e-09, -7.407199853481927e-13, 4.871468228806464e-10, -7.407199853481927e-13, 1.8766656838574365e-16, 3949.0, 0.0022767509799450636, -2.3064465040079085e-06, 4.867769520799925e-10, -2.3064465040079085e-06, 3.1162603608692052e-09, -7.399699884953759e-13, 4.867769520799925e-10, -7.399699884953759e-13, 1.8742908152315723e-16, 3950.0, 0.0022761751897633076, -2.3052793949318584e-06, 4.86407414346246e-10,-2.3052793949318584e-06, 3.113894475603729e-09, -7.392210216346229e-13, 4.86407414346246e-10, -7.392210216346229e-13, 1.8719195200259543e-16, 3951.0, 0.002275599632412195, -2.3041129679768346e-06, 4.860382651905581e-10, -2.3041129679768346e-06, 3.111531032828907e-09, -7.384729221356079e-13, 4.860382651905581e-10, -7.384729221356079e-13, 1.8695517982405825e-16, 3952.0, 0.00227502454072237, -2.302947677890188e-06, 4.856695046129289e-10, -2.302947677890188e-06, 3.109170032544739e-09, -7.377258526286568e-13, 4.856695046129289e-10, -7.377258526286568e-13, 1.867187649875457e-16, 3953.0, 0.0022744496818631887, -2.301783069924568e-06, 4.853011326133583e-10, -2.301783069924568e-06, 3.1068114747512254e-09, -7.369796504834436e-13, 4.853011326133583e-10, -7.369796504834436e-13, 1.8648270749305776e-16, 3954.0, 0.0022738748230040073, -2.300619598827325e-06, 4.84933093680695e-10, -2.300619598827325e-06, 3.104455137403761e-09, -7.362344241201857e-13, 4.84933093680695e-10, -7.362344241201857e-13, 1.8624702057548425e-16, 3955.0, 0.002273300662636757, -2.299456809851108e-06, 4.845654433260904e-10, -2.299456809851108e-06, 3.1021012425469507e-09, -7.35490173538883e-13, 4.845654433260904e-10, -7.35490173538883e-13, 1.8601167776504556e-16, 3956.0, 0.0022727265022695065, -2.298294930369593e-06, 4.841981815495444e-10, -2.298294930369593e-06, 3.0997497901807947e-09, -7.34746844529427e-13, 4.841981815495444e-10, -7.34746844529427e-13, 1.857766922966315e-16, 3957.0, 0.0022721528075635433, -2.29713396038278e-06, 4.838312528399058e-10, -2.29713396038278e-06, 3.0974007803052928e-09, -7.340044370918175e-13, 4.838312528399058e-10, -7.340044370918175e-13, 1.8554206417024206e-16, 3958.0, 0.002271579345688224, -2.2959738998906687e-06, 4.834647127083258e-10, -2.2959738998906687e-06, 3.09505399087584e-09, -7.332629512260547e-13,4.834647127083258e-10, -7.332629512260547e-13, 1.8530779338587724e-16, 3959.0, 0.002271006116643548, -2.294814748893259e-06, 4.830985611548044e-10, -2.294814748893259e-06, 3.0927096439370416e-09, -7.325224411422471e-13, 4.830985611548044e-10, -7.325224411422471e-13, 1.8507387994353704e-16, 3960.0, 0.002270433120429516, -2.293656280016876e-06, 4.827327426681904e-10, -2.293656280016876e-06, 3.0903677394888973e-09, -7.317828526302861e-13, 4.827327426681904e-10,-7.317828526302861e-13, 1.8484032384322147e-16, 3961.0, 0.002269860589876771, -2.2924989480088698e-06, 4.823673127596351e-10, -2.2924989480088698e-06, 3.0880280554868023e-09, -7.310441856901717e-13, 4.823673127596351e-10, -7.310441856901717e-13, 1.8460711185004072e-16, 3962.0, 0.0022692882921546698, -2.29134229812189e-06, 4.820022714291383e-10, -2.29134229812189e-06, 3.0856908139753614e-09, -7.303064403219039e-13, 4.820022714291383e-10, -7.303064403219039e-13, 1.843742571988846e-16, 3963.0, 0.002268716227263212, -2.290186557729612e-06, 4.81637563165549e-10, -2.290186557729612e-06, 3.0833557929099698e-09, -7.295696165254828e-13, 4.81637563165549e-10, -7.295696165254828e-13, 1.841417598897531e-16, 3964.0, 0.0022681443952023983, -2.289031726832036e-06, 4.812732434800182e-10, -2.289031726832036e-06, 3.0810232143352323e-09, -7.288337685110169e-13, 4.812732434800182e-10, -7.288337685110169e-13, 1.839096066877564e-16, 3965.0, 0.0022675730288028717, -2.2878778054291615e-06, 4.809092568613949e-10, -2.2878778054291615e-06, 3.078693078251149e-09, -7.280988420683976e-13, 4.809092568613949e-10, -7.280988420683976e-13, 1.8367781082778435e-16, 3966.0, 0.002267001662403345, -2.286724793520989e-06, 4.805456588208301e-10, -2.286724793520989e-06, 3.076365162613115e-09, -7.273647829875163e-13, 4.805456588208301e-10, -7.273647829875163e-13, 1.834463590749471e-16, 3967.0, 0.002266430761665106, -2.2855724637338426e-06, 4.80182449358324e-10, -2.2855724637338426e-06, 3.074039689465735e-09, -7.266316996885902e-13, 4.80182449358324e-10, -7.266316996885902e-13, 1.832152646641345e-16, 3968.0, 0.002265860326588154, -2.284421043441398e-06, 4.798196284738765e-10, -2.284421043441398e-06, 3.0717164367644045e-09, -7.258995379615107e-13, 4.798196284738765e-10, -7.258995379615107e-13, 1.829845143604567e-16, 3969.0, 0.002265289891511202, -2.2832705326436553e-06, 4.794570851451851e-10, -2.2832705326436553e-06, 3.069395626553728e-09, -7.251682978062779e-13, 4.794570851451851e-10, -7.251682978062779e-13, 1.8275410816391373e-16, 3970.0, 0.002264719922095537, -2.2821209313406143e-06, 4.790949859057037e-10, -2.2821209313406143e-06, 3.067077258833706e-09, -7.244379792228917e-13, 4.790949859057037e-10, -7.244379792228917e-13, 1.8252405930939538e-16, 3971.0, 0.002264150185510516, -2.280972239532275e-06, 4.787332197331295e-10, -2.280972239532275e-06, 3.064761111559733e-09, -7.23708582211352e-13, 4.787332197331295e-10, -7.23708582211352e-13, 1.8229435456201186e-16, 3972.0, 0.002263580681756139, -2.2798244572186377e-06, 4.783718421386141e-10, -2.2798244572186377e-06, 3.062447184731809e-09, -7.229800525615504e-13, 4.783718421386141e-10, -7.229800525615504e-13, 1.8206499392176315e-16, 3973.0, 0.0022630116436630487, -2.2786773570260266e-06,4.78010797611006e-10, -2.2786773570260266e-06, 3.0601357003945395e-09, -7.22252498693704e-13, 4.78010797611006e-10, -7.22252498693704e-13, 1.8183597738864927e-16, 3974.0, 0.0022624426055699587, -2.2775311663281173e-06, 4.776500861503052e-10, -2.2775311663281173e-06, 3.057826436503319e-09, -7.215258663977042e-13, 4.776500861503052e-10, -7.215258663977042e-13, 1.8160730496267021e-16, 3975.0, 0.002261874033138156, -2.2763858851249097e-06, 4.772898187788144e-10,-2.2763858851249097e-06, 3.055519615102753e-09, -7.208001014634424e-13, 4.772898187788144e-10, -7.208001014634424e-13, 1.8137898987871578e-16, 3976.0, 0.002261305693536997, -2.275241513416404e-06, 4.769298289630797e-10, -2.275241513416404e-06, 3.053215014148236e-09, -7.200752581010272e-13, 4.769298289630797e-10, -7.200752581010272e-13, 1.8115100566700636e-16, 3977.0, 0.002260737819597125, -2.2740980512026e-06, 4.765702832365548e-10, -2.2740980512026e-06, 3.0509128556843734e-09, -7.193513363104587e-13, 4.765702832365548e-10, -7.193513363104587e-13, 1.8092337879732157e-16, 3978.0, 0.0022601699456572533, -2.272955271109822e-06, 4.762110705769373e-10, -2.272955271109822e-06, 3.04861291766656e-09, -7.186283360917367e-13, 4.762110705769373e-10, -7.186283360917367e-13, 1.806960827998818e-16, 3979.0, 0.002259602537378669, -2.2718134005117463e-06, 4.758521909842273e-10, -2.2718134005117463e-06, 3.0463154221394007e-09, -7.179062574448614e-13, 4.758521909842273e-10, -7.179062574448614e-13, 1.8046914414446665e-16, 3980.0, 0.002259035361930728, -2.270672439408372e-06, 4.754936999695758e-10, -2.270672439408372e-06, 3.0440201470582906e-09, -7.17185046159724e-13, 4.754936999695758e-10, -7.17185046159724e-13, 1.8024253636129652e-16, 3981.0, 0.002258468419313431, -2.2695323877997e-06, 4.751355420218317e-10, -2.2695323877997e-06, 3.04172709242323e-09, -7.164647564464333e-13, 4.751355420218317e-10, -7.164647564464333e-13, 1.8001627268526122e-16, 3982.0, 0.002257901942357421, -2.268393245685729e-06, 4.747777726521463e-10, -2.268393245685729e-06, 3.039436480278823e-09, -7.157453340948805e-13, 4.747777726521463e-10, -7.157453340948805e-13, 1.7979033988147093e-16, 3983.0, 0.0022573356982320547, -2.267254785692785e-06, 4.744203363493682e-10, -2.267254785692785e-06, 3.037148088580466e-09, -7.15026887525283e-13,4.744203363493682e-10, -7.15026887525283e-13, 1.7956476441970527e-16, 3984.0, 0.0022567694541066885, -2.2661172351945424e-06, 4.740632886246487e-10, -2.2661172351945424e-06, 3.0348621393727626e-09, -7.143093083174235e-13, 4.740632886246487e-10, -7.143093083174235e-13, 1.7933951983018463e-16, 3985.0, 0.0022562039084732533, -2.2649805941910017e-06, 4.737065739668367e-10, -2.2649805941910017e-06, 3.0325781885665037e-09, -7.135925964713019e-13, 4.737065739668367e-10,-7.135925964713019e-13, 1.7911460611290902e-16, 3986.0, 0.002255638362839818, -2.2638446353084873e-06, 4.73350192375932e-10, -2.2638446353084873e-06, 3.030296680250899e-09, -7.12876806197027e-13, 4.73350192375932e-10, -7.12876806197027e-13, 1.7889004973765802e-16, 3987.0, 0.0022550730500370264, -2.26270981329435e-06, 4.72994199363086e-10, -2.26270981329435e-06, 3.0280176144259485e-09, -7.121619374945987e-13, 4.72994199363086e-10, -7.121619374945987e-13, 1.7866581099976224e-16, 3988.0, 0.002254508202895522, -2.2615756734012393e-06, 4.726385949282985e-10, -2.2615756734012393e-06, 3.0257405470024423e-09, -7.114479361539083e-13, 4.726385949282985e-10, -7.114479361539083e-13, 1.784419163690013e-16, 3989.0, 0.0022539435885846615, -2.2604424430028303e-06, 4.722833235604185e-10, -2.2604424430028303e-06, 3.0234659220695903e-09, -7.107348563850646e-13, 4.722833235604185e-10, -7.107348563850646e-13, 1.7821836584537516e-16, 3990.0, 0.0022533792071044445, -2.2593098947254475e-06, 4.719283852594458e-10, -2.2593098947254475e-06, 3.0211937396273925e-09, -7.100226439779589e-13, 4.719283852594458e-10, -7.100226439779589e-13, 1.7799514619399405e-16, 3991.0, 0.002252815291285515, -2.258178483316442e-06, 4.715738355365318e-10, -2.258178483316442e-06, 3.018923555586639e-09, -7.093113531426998e-13, 4.715738355365318e-10, -7.093113531426998e-13, 1.7777225741485796e-16, 3992.0, 0.002252251608297229, -2.257047754028463e-06, 4.712196188805251e-10, -2.257047754028463e-06, 3.0166558140365396e-09, -7.086009296691786e-13, 4.712196188805251e-10, -7.086009296691786e-13, 1.775497127428567e-16, 3993.0, 0.002251687925308943, -2.25591770686151e-06, 4.708657352914258e-10, -2.25591770686151e-06, 3.0143902929324895e-09, -7.078913735573955e-13, 4.708657352914258e-10, -7.078913735573955e-13, 1.7732749894310045e-16, 3994.0, 0.002251124707981944, -2.2547887965629343e-06, 4.705122402803852e-10, -2.2547887965629343e-06, 3.0121269922744887e-09, -7.07182739017459e-13, 4.705122402803852e-10, -7.07182739017459e-13, 1.7710561601558923e-16, 3995.0, 0.0022505619563162327, -2.253660568385385e-06, 4.701590783362519e-10, -2.253660568385385e-06, 3.009865912062537e-09, -7.064749718392604e-13, 4.701590783362519e-10, -7.064749718392604e-13, 1.7688406396032302e-16, 3996.0, 0.0022499992046505213, -2.2525332497025374e-06, 4.698063049701773e-10, -2.2525332497025374e-06, 3.0076072743412396e-09, -7.057681262329085e-13, 4.698063049701773e-10, -7.057681262329085e-13, 1.7666285601219164e-16, 3997.0, 0.002249436918646097, -2.2514068405143917e-06, 4.6945386467101e-10, -2.2514068405143917e-06, 3.0053506350213866e-09, -7.05062093778186e-13, 4.6945386467101e-10, -7.05062093778186e-13, 1.7644196570141548e-16, 3998.0, 0.0022488748654723167, -2.2502811134472722e-06,4.691017574387502e-10, -2.2502811134472722e-06, 3.0030964381921876e-09, -7.0435698289531e-13, 4.691017574387502e-10, -7.0435698289531e-13, 1.7622141949777414e-16, 3999.0, 0.00224831304512918, -2.2491562958748545e-06, 4.687500387845489e-10, -2.2491562958748545e-06, 3.000844461809038e-09, -7.036527935842807e-13, 4.687500387845489e-10, -7.036527935842807e-13, 1.7600119093148802e-16, 4000.0, 0.002247751457616687, -2.2480323877971387e-06, 4.68398653197255e-10,-2.2480323877971387e-06, 2.9985947058719375e-09, -7.029494174248807e-13, 4.68398653197255e-10, -7.029494174248807e-13, 1.7578130647233673e-16, 4001.0, 0.002247190335765481, -2.2469093892141245e-06, 4.680476006768686e-10, -2.2469093892141245e-06, 2.9963473924254913e-09, -7.022469628373273e-13, 4.680476006768686e-10, -7.022469628373273e-13, 1.7556173965054065e-16, 4002.0, 0.002246629213914275, -2.2457870727521367e-06, 4.676969367345407e-10, -2.2457870727521367e-06, 2.9941020773804894e-09, -7.01545375611512e-13, 4.676969367345407e-10, -7.01545375611512e-13, 1.753425037009896e-16, 4003.0, 0.0022460685577243567, -2.2446656657848507e-06, 4.673466058591202e-10, -2.2446656657848507e-06, 2.9918592048261416e-09, -7.008446557474346e-13, 4.673466058591202e-10, -7.008446557474346e-13, 1.7512361185857337e-16, 4004.0, 0.002245508134365082, -2.2435451683122665e-06, 4.669966080506072e-10, -2.2435451683122665e-06, 2.9896183306732382e-09, -7.001448574552038e-13, 4.669966080506072e-10, -7.001448574552038e-13, 1.7490502441862255e-16, 4005.0, 0.0022449481766670942, -2.2424253529607086e-06, 4.666469433090015e-10, -2.2424253529607086e-06, 2.987379899010989e-09, -6.994458723146024e-13, 4.666469433090015e-10, -6.994458723146024e-13, 1.7468678108580656e-16, 4006.0, 0.0022443882189691067, -2.2413064471038524e-06, 4.662976671454544e-10, -2.2413064471038524e-06, 2.985143687794789e-09, -6.98747754535739e-13, 4.662976671454544e-10, -6.98747754535739e-13, 1.744688553903458e-16, 4007.0, 0.0022438287269324064, -2.240188450741698e-06, 4.659487240488147e-10, -2.240188450741698e-06, 2.9829094749800333e-09, -6.980505583287222e-13, 4.659487240488147e-10, -6.980505583287222e-13, 1.7425126056713004e-16, 4008.0, 0.00224326946772635, -2.23907113650057e-06, 4.6560014177465803e-10, -2.23907113650057e-06, 2.980677704655932e-09, -6.973541752733348e-13,4.6560014177465803e-10, -6.973541752733348e-13, 1.7403398338126951e-16, 4009.0, 0.002242710441350937, -2.2379547317541437e-06, 4.6525192032298435e-10, -2.2379547317541437e-06, 2.9784481547778796e-09, -6.966587137897939e-13, 4.6525192032298435e-10, -6.966587137897939e-13, 1.73817037067654e-16, 4010.0, 0.0022421516478061676, -2.2368392365024192e-06, 4.6490400418264244e-10, -2.2368392365024192e-06, 2.9762208253458766e-09, -6.959641196679911e-13, 4.6490400418264244e-10,-6.959641196679911e-13, 1.7360042162628352e-16, 4011.0, 0.0022415933199226856, -2.235724423371721e-06, 4.6455647662035915e-10, -2.235724423371721e-06, 2.973995716359923e-09, -6.952703386978176e-13, 4.6455647662035915e-10, -6.952703386978176e-13, 1.7338412382226825e-16, 4012.0, 0.0022410352248698473, -2.2346105197357247e-06, 4.6420925436940763e-10, -2.2346105197357247e-06, 2.9717728278200184e-09, -6.945774250893821e-13, 4.6420925436940763e-10, -6.945774250893821e-13, 1.73168156890498e-16, 4013.0, 0.002240477129817009, -2.23349752559443e-06, 4.6386242069651473e-10, -2.23349752559443e-06, 2.9695519376815582e-09, -6.938854330527933e-13, 4.6386242069651473e-10, -6.938854330527933e-13, 1.7295249436119318e-16, 4014.0, 0.0022399197332561016, -2.2323852135741618e-06, 4.635158923349536e-10, -2.2323852135741618e-06, 2.9673334900337522e-09, -6.931942541678338e-13, 4.635158923349536e-10, -6.931942541678338e-13, 1.7273717593902318e-16, 4015.0, 0.0022393623366951942, -2.2312738110485952e-06, 4.631697247958755e-10, -2.2312738110485952e-06, 2.9651172628319955e-09, -6.925039426446122e-13, 4.631697247958755e-10, -6.925039426446122e-13, 1.725221619193186e-16, 4016.0, 0.0022388051729649305, -2.2301633180177305e-06, 4.6282391807928036e-10, -2.2301633180177305e-06, 2.962903256076288e-09, -6.918144984831287e-13, 4.6282391807928036e-10, -6.918144984831287e-13, 1.7230747877185903e-16, 4017.0, 0.002238248474895954, -2.229053507107892e-06, 4.6247844442959263e-10, -2.229053507107892e-06, 2.960691247722025e-09, -6.911259216833832e-13, 4.6247844442959263e-10, -6.911259216833832e-13, 1.720931132617547e-16, 4018.0, 0.0022376920096576214, -2.2279446056927554e-06, 4.621333038468123e-10, -2.2279446056927554e-06, 2.958481681858416e-09, -6.904382122453756e-13, 4.621333038468123e-10, -6.904382122453756e-13, 1.7187906538900557e-16, 4019.0, 0.0022371357772499323, -2.2268366137723206e-06, 4.617884963309393e-10, -2.2268366137723206e-06, 2.9562741143962512e-09, -6.897513159589974e-13, 4.617884963309393e-10, -6.897513159589974e-13, 1.7166533515361167e-16, 4020.0, 0.002236579777672887, -2.225729303972912e-06, 4.6144404963754937e-10, -2.225729303972912e-06, 2.954068767380136e-09, -6.890652870343572e-13, 4.6144404963754937e-10, -6.890652870343572e-13, 1.7145192255557299e-16, 4021.0, 0.002236024010926485, -2.2246229036682053e-06, 4.610999637666424e-10, -2.2246229036682053e-06, 2.9518658628546746e-09, -6.88380125471455e-13, 4.610999637666424e-10, -6.88380125471455e-13, 1.7123884082977933e-16, 4022.0, 0.0022354687098413706, -2.223517185484525e-06, 4.6075618320706724e-10, -2.223517185484525e-06, 2.9496649567306577e-09, -6.876958312702908e-13, 4.6075618320706724e-10, -6.876958312702908e-13, 1.7102606350645109e-16, 4023.0, 0.0022349136415868998, -2.222412376795546e-06,4.6041276346997506e-10, -2.222412376795546e-06, 2.947466049008085e-09, -6.870123502207559e-13, 4.6041276346997506e-10, -6.870123502207559e-13, 1.7081361705536787e-16, 4024.0, 0.0022343588061630726, -2.2213084776012693e-06, 4.600697045553659e-10, -2.2213084776012693e-06, 2.9452695837761667e-09, -6.86329736532959e-13, 4.600697045553659e-10, -6.86329736532959e-13, 1.7060147500675007e-16, 4025.0, 0.002233804203569889, -2.2202052605280187e-06, 4.597269509520885e-10,-2.2202052605280187e-06, 2.9430753389902975e-09, -6.856479359967915e-13, 4.597269509520885e-10, -6.856479359967915e-13, 1.703896505954875e-16, 4026.0, 0.002233249833807349, -2.21910295294947e-06, 4.593845581712941e-10, -2.21910295294947e-06, 2.9408830926058727e-09, -6.849670570324706e-13, 4.593845581712941e-10, -6.849670570324706e-13, 1.7017814382158013e-16, 4027.0, 0.0022326959297060966, -2.218001554865623e-06, 4.590424984574071e-10, -2.218001554865623e-06, 2.938693066667497e-09, -6.842869370096705e-13, 4.590424984574071e-10, -6.842869370096705e-13, 1.69966954685028e-16, 4028.0, 0.002232142025604844, -2.216900838902802e-06, 4.5870077181042745e-10, -2.216900838902802e-06, 2.9365052611751707e-09, -6.836077385587169e-13, 4.5870077181042745e-10, -6.836077385587169e-13, 1.6975608318583107e-16, 4029.0, 0.002231588587164879, -2.2158010324346833e-06, 4.5835940598593083e-10, -2.2158010324346833e-06, 2.9343196761288937e-09, -6.829293532593927e-13, 4.5835940598593083e-10, -6.829293532593927e-13, 1.6954551608909957e-16, 4030.0, 0.0022310353815555573, -2.2147019080875907e-06, 4.580183732283416e-10, -2.2147019080875907e-06, 2.932136089484061e-09, -6.822517811116979e-13, 4.580183732283416e-10, -6.822517811116979e-13, 1.693352666297233e-16, 4031.0, 0.002230482641607523, -2.2136036932352e-06, 4.5767764578208414e-10, -2.2136036932352e-06, 2.9299549453298823e-09, -6.815750763257411e-13, 4.5767764578208414e-10, -6.815750763257411e-13, 1.6912532157281244e-16, 4032.0, 0.0022299299016594887, -2.212506387877511e-06, 4.573372791583097e-10, -2.212506387877511e-06, 2.927775799577148e-09, -6.808991846914136e-13, 4.573372791583097e-10, -6.808991846914136e-13, 1.689157073881466e-16, 4033.0, 0.0022293776273727417, -2.211409764640848e-06, 4.5699727335701823e-10, -2.211409764640848e-06, 2.925598652225858e-09, -6.802241604188242e-13,4.5699727335701823e-10, -6.802241604188242e-13, 1.6870638437105638e-16, 4034.0, 0.0022288253530859947, -2.2103140508988872e-06, 4.5665757286705855e-10, -2.2103140508988872e-06, 2.9234239473652224e-09, -6.795499492978641e-13, 4.5665757286705855e-10, -6.795499492978641e-13, 1.6849739222621118e-16, 4035.0, 0.002228273544460535, -2.2092190192779526e-06, 4.5631820544400625e-10, -2.2092190192779526e-06, 2.921251240906031e-09, -6.788766055386419e-13, 4.5631820544400625e-10,-6.788766055386419e-13, 1.682886912489416e-16, 4036.0, 0.002227721968665719, -2.2081248971517198e-06, 4.5597919884343696e-10, -2.2081248971517198e-06, 2.9190807548928888e-09, -6.782040749310492e-13, 4.5597919884343696e-10, -6.782040749310492e-13, 1.6808030790902724e-16, 4037.0, 0.0022271708585321903, -2.2070314571465133e-06, 4.5564052530977506e-10, -2.2070314571465133e-06, 2.916912267281191e-09, -6.775323574750858e-13, 4.5564052530977506e-10, -6.775323574750858e-13, 1.678722422064681e-16, 4038.0, 0.0022266197483986616, -2.2059389266360085e-06, 4.5530218484302054e-10, -2.2059389266360085e-06, 2.9147460001155423e-09, -6.768615073808604e-13, 4.5530218484302054e-10, -6.768615073808604e-13, 1.6766448090637439e-16, 4039.0, 0.00222606910392642, -2.2048473056202056e-06, 4.549641496875978e-10, -2.2048473056202056e-06, 2.912581953395943e-09, -6.761914704382643e-13, 4.549641496875978e-10, -6.761914704382643e-13, 1.674570240087461e-16, 4040.0, 0.002225518459454179, -2.203756366725429e-06, 4.5462647535465806e-10, -2.203756366725429e-06, 2.910420127122393e-09, -6.755222466472977e-13, 4.5462647535465806e-10, -6.755222466472977e-13, 1.67249884748473e-16, 4041.0, 0.0022249682806432247, -2.202666337325354e-06, 4.542891340886257e-10, -2.202666337325354e-06, 2.908260299250287e-09, -6.74853890218069e-13, 4.542891340886257e-10, -6.74853890218069e-13, 1.6704303665577555e-16, 4042.0, 0.002224418567493558, -2.2015769900463056e-06, 4.5395212588950073e-10, -2.2015769900463056e-06, 2.9061026918242305e-09, -6.741863469404696e-13, 4.5395212588950073e-10, -6.741863469404696e-13, 1.668365062004333e-16, 4043.0, 0.002223868854343891, -2.200488552261959e-06, 4.5361545075728316e-10, -2.200488552261959e-06, 2.9039470827996183e-09, -6.735196168144997e-13, 4.5361545075728316e-10, -6.735196168144997e-13, 1.666302801475565e-16, 4044.0, 0.002223319374024868, -2.1994007965986384e-06, 4.5327910869197297e-10, -2.1994007965986384e-06, 2.9017936942210554e-09, -6.728536998401591e-13, 4.5327910869197297e-10, -6.728536998401591e-13, 1.6642435849714509e-16, 4045.0, 0.002222770359367132, -2.1983139504300198e-06, 4.5294309969357016e-10, -2.1983139504300198e-06, 2.8996425260885417e-09, -6.721885960174478e-13, 4.5294309969357016e-10, -6.721885960174478e-13, 1.662187544840889e-16, 4046.0, 0.00222222157754004, -2.197228013756103e-06, 4.5260742376207475e-10, -2.197228013756103e-06, 2.8974933563574723e-09, -6.715243595564746e-13, 4.5260742376207475e-10, -6.715243595564746e-13, 1.6601344163860834e-16, 4047.0, 0.0022216730285435915, -2.1961427592032123e-06, 4.522720808974867e-10, -2.1961427592032123e-06, 2.8953461850278472e-09, -6.708609362471307e-13, 4.522720808974867e-10, -6.708609362471307e-13, 1.658084331955932e-16, 4048.0, 0.0022211247123777866, -2.195058186771348e-06,4.5193704334423046e-10, -2.195058186771348e-06, 2.8932014561888764e-09, -6.701983260894162e-13, 4.5193704334423046e-10, -6.701983260894162e-13, 1.6560372915504348e-16, 4049.0, 0.0022205766290426254, -2.1939745238341857e-06, 4.516023666134572e-10, -2.1939745238341857e-06, 2.891058503706745e-09, -6.695364748732224e-13, 4.516023666134572e-10, -6.695364748732224e-13, 1.6539932951695918e-16, 4050.0, 0.002220028778538108, -2.192891770391725e-06, 4.5126802294959134e-10,-2.192891770391725e-06, 2.8889179937152676e-09, -6.688754910187666e-13, 4.5126802294959134e-10, -6.688754910187666e-13, 1.651952342813403e-16, 4051.0, 0.0022194813936948776, -2.1918096990702907e-06, 4.5093398459705725e-10, -2.1918096990702907e-06, 2.8867792600806297e-09, -6.682153203159402e-13, 4.5093398459705725e-10, -6.682153203159402e-13, 1.6499144344818683e-16, 4052.0, 0.002218934241682291, -2.190728537243558e-06, 4.5060027931143054e-10, -2.190728537243558e-06, 2.884642968936646e-09, -6.675559627647432e-13, 4.5060027931143054e-10, -6.675559627647432e-13, 1.6478795701749878e-16, 4053.0, 0.002218387322500348, -2.189648057537852e-06, 4.5026693484828684e-10, -2.189648057537852e-06, 2.8825086761941066e-09, -6.668974725752841e-13, 4.5026693484828684e-10, -6.668974725752841e-13, 1.6458476175438636e-16, 4054.0, 0.002217840636149049, -2.1885684873268474e-06, 4.499338956964749e-10, -2.1885684873268474e-06, 2.8803763818530115e-09, -6.662397413273458e-13, 4.499338956964749e-10, -6.662397413273458e-13, 1.6438187089373935e-16, 4055.0, 0.002217294182628393, -2.1874895992368693e-06, 4.4960118961157036e-10, -2.1874895992368693e-06, 2.8782463079579657e-09, -6.655828232310368e-13, 4.4960118961157036e-10, -6.655828232310368e-13, 1.6417928443555776e-16, 4056.0, 0.002216747961938381, -2.186411620641593e-06, 4.492687888379976e-10, -2.186411620641593e-06, 2.876118232464364e-09, -6.649266640762486e-13, 4.492687888379976e-10, -6.649266640762486e-13, 1.639769891449518e-16, 4057.0, 0.0022162022069096565, -2.185334324167343e-06, 4.489367488869078e-10, -2.185334324167343e-06, 2.873992155372207e-09, -6.642713722831983e-13, 4.489367488869078e-10, -6.642713722831983e-13, 1.6377499825681125e-16, 4058.0, 0.0022156566847115755, -2.1842579371877946e-06, 4.486050142471498e-10, -2.1842579371877946e-06, 2.871868520770704e-09, -6.636168936417774e-13,4.486050142471498e-10, -6.636168936417774e-13, 1.6357329853624632e-16, 4059.0, 0.0022151111625134945, -2.1831822323292727e-06, 4.482736126742992e-10, -2.1831822323292727e-06, 2.8697466625260404e-09, -6.629632281519859e-13, 4.482736126742992e-10, -6.629632281519859e-13, 1.633719032181468e-16, 4060.0, 0.0022145661059767008, -2.182107209591777e-06, 4.47942544168356e-10, -2.182107209591777e-06, 2.867627024727426e-09, -6.623103216037152e-13, 4.47942544168356e-10,-6.623103216037152e-13, 1.6317081230251271e-16, 4061.0, 0.0022140215151011944, -2.1810333237226587e-06, 4.4761180872932016e-10, -2.1810333237226587e-06, 2.865509385330256e-09, -6.616582282070738e-13, 4.4761180872932016e-10, -6.616582282070738e-13, 1.6297001255445424e-16, 4062.0, 0.002213476924225688, -2.179959892600891e-06, 4.472813786016161e-10, -2.179959892600891e-06, 2.8633939663791352e-09, -6.610069479620617e-13, 4.472813786016161e-10, -6.610069479620617e-13, 1.6276950397397139e-16, 4063.0, 0.0022129325661808252, -2.1788873709738255e-06, 4.469512815408194e-10, -2.1788873709738255e-06, 2.8612805458294588e-09, -6.60356480868679e-13, 4.469512815408194e-10, -6.60356480868679e-13, 1.6256929979595395e-16, 4064.0, 0.00221238867379725, -2.1778157588414615e-06, 4.4662151754693014e-10, -2.1778157588414615e-06, 2.8591693457258316e-09, -6.597068269269257e-13, 4.4662151754693014e-10, -6.597068269269257e-13, 1.6236938678551214e-16, 4065.0, 0.002211845014244318, -2.176744828830124e-06, 4.462920588643726e-10, -2.176744828830124e-06, 2.8570599219790438e-09, -6.590579319266932e-13, 4.462920588643726e-10, -6.590579319266932e-13, 1.6216976494264594e-16, 4066.0, 0.00221130158752203, -2.175674808313488e-06, 4.459629332487225e-10, -2.175674808313488e-06, 2.85495294072291e-09, -6.584098500780899e-13, 4.459629332487225e-10, -6.584098500780899e-13, 1.6197044750224516e-16, 4067.0, 0.0022107583936303854, -2.1746054699178785e-06, 4.4563414069997975e-10, -2.1746054699178785e-06, 2.852847735823616e-09, -6.577625813811161e-13, 4.4563414069997975e-10, -6.577625813811161e-13, 1.617714079945302e-16, 4068.0, 0.0022102154325693846, -2.1735368136432953e-06, 4.453056534625688e-10, -2.1735368136432953e-06, 2.850744751370371e-09, -6.57116071625663e-13, 4.453056534625688e-10, -6.57116071625663e-13, 1.6157267288928066e-16, 4069.0, 0.0022096727043390274, -2.172469066863414e-06, 4.449774992920652e-10, -2.172469066863414e-06, 2.8486437653185703e-09, -6.564703750218392e-13, 4.449774992920652e-10, -6.564703750218392e-13, 1.6137422895160674e-16, 4070.0, 0.0022091304417699575, -2.1714022295782343e-06, 4.44649678188469e-10, -2.1714022295782343e-06, 2.846544777668214e-09, -6.558254915696449e-13, 4.44649678188469e-10, -6.558254915696449e-13, 1.6117607618150844e-16, 4071.0, 0.0022085881792008877, -2.170336074414081e-06, 4.443221623962046e-10, -2.170336074414081e-06, 2.844448010463907e-09, -6.551813670589712e-13, 4.443221623962046e-10, -6.551813670589712e-13, 1.6097822781387555e-16, 4072.0, 0.002208046382293105, -2.169270601370954e-06, 4.4399497967084756e-10, -2.169270601370954e-06, 2.842353241661044e-09, -6.54538055699927e-13, 4.4399497967084756e-10, -6.54538055699927e-13, 1.607806573789285e-16, 4073.0, 0.0022075048182159662, -2.1682060378225287e-06,4.436681022568223e-10, -2.1682060378225287e-06, 2.8402604712596258e-09, -6.538955032824034e-13, 4.436681022568223e-10, -6.538955032824034e-13, 1.6058337811155704e-16, 4074.0, 0.002206963486969471, -2.16714215639513e-06, 4.433415579097044e-10, -2.16714215639513e-06, 2.8381699213042566e-09, -6.532537640165093e-13, 4.433415579097044e-10, -6.532537640165093e-13, 1.6038639001176121e-16, 4075.0, 0.0022064223885536194, -2.1660791844624327e-06, 4.430153188739183e-10,-2.1660791844624327e-06, 2.836081147705727e-09, -6.526128379022444e-13, 4.430153188739183e-10, -6.526128379022444e-13, 1.60189693079541e-16, 4076.0, 0.002205881755799055, -2.165016894650762e-06, 4.426894129050396e-10, -2.165016894650762e-06, 2.8339945945532463e-09, -6.519726165193918e-13, 4.426894129050396e-10, -6.519726165193918e-13, 1.5999328731489641e-16, 4077.0, 0.002205341123044491, -2.163955514333793e-06, 4.423638400030683e-10, -2.163955514333793e-06, 2.83191003980221e-09, -6.513332624982771e-13, 4.423638400030683e-10, -6.513332624982771e-13, 1.5979717271782744e-16, 4078.0, 0.002204800955951214, -2.1628948161378503e-06, 4.420385724124287e-10, -2.1628948161378503e-06, 2.829827705497223e-09, -6.506946674186831e-13, 4.420385724124287e-10, -6.506946674186831e-13, 1.5960133605344429e-16, 4079.0, 0.002204260788857937, -2.161834800062934e-06, 4.4171361013312094e-10, -2.161834800062934e-06, 2.8277471475490756e-09, -6.500568312806099e-13, 4.4171361013312094e-10, -6.500568312806099e-13, 1.5940579055663675e-16, 4080.0, 0.002203721087425947, -2.1607756934827194e-06, 4.4138898092072054e-10, -2.1607756934827194e-06, 2.8256688100469773e-09, -6.49419808294166e-13, 4.4138898092072054e-10, -6.49419808294166e-13, 1.5921053622740483e-16, 4081.0, 0.002203181618824601, -2.159717269023531e-06, 4.4106468477522753e-10, -2.159717269023531e-06, 2.8235924709463234e-09, -6.487835442492429e-13, 4.4106468477522753e-10, -6.487835442492429e-13, 1.5901557306574854e-16, 4082.0, 0.002202642383053899, -2.1586597540590446e-06, 4.407406939410663e-10, -2.1586597540590446e-06, 2.8215181302471137e-09, -6.481480391458405e-13, 4.407406939410663e-10, -6.481480391458405e-13, 1.5882088783677806e-16, 4083.0, 0.0022021036129444838, -2.1576029212155845e-06, 4.4041700841823683e-10, -2.1576029212155845e-06, 2.8194457879493484e-09, -6.475133471940675e-13,4.4041700841823683e-10, -6.475133471940675e-13, 1.586264937753832e-16, 4084.0, 0.0022015648428350687, -2.1565467704931507e-06, 4.4009365596231476e-10, -2.1565467704931507e-06, 2.8173756660976323e-09, -6.468794141838152e-13, 4.4009365596231476e-10, -6.468794141838152e-13, 1.5843239088156395e-16, 4085.0, 0.002201026538386941, -2.1554915292654186e-06, 4.3977060881772445e-10, -2.1554915292654186e-06, 2.8153073206027557e-09, -6.462462943251923e-13, 4.3977060881772445e-10,-6.462462943251923e-13, 1.5823856592043052e-16, 4086.0, 0.002200488233938813, -2.1544371975323884e-06, 4.394478669844659e-10, -2.1544371975323884e-06, 2.8132411955539283e-09, -6.456139334080901e-13, 4.394478669844659e-10, -6.456139334080901e-13, 1.5804501889198292e-16, 4087.0, 0.0021999503951519728, -2.1533835479203844e-06, 4.3912545821811477e-10, -2.1533835479203844e-06, 2.8111768468619402e-09, -6.449823314325087e-13, 4.3912545821811477e-10, -6.449823314325087e-13, 1.5785176303111093e-16, 4088.0, 0.002199412789195776, -2.152330580429407e-06, 4.388033547630954e-10, -2.152330580429407e-06, 2.8091147186160015e-09, -6.44351488398448e-13, 4.388033547630954e-10, -6.44351488398448e-13, 1.5765879833781456e-16, 4089.0, 0.002198875416070223, -2.1512782950594556e-06, 4.384815843749834e-10, -2.1512782950594556e-06, 2.807054588771507e-09, -6.437214585160167e-13, 4.384815843749834e-10, -6.437214585160167e-13, 1.574660983423142e-16, 4090.0, 0.0021983382757753134, -2.150226919184206e-06, 4.381601192982032e-10, -2.150226919184206e-06, 2.804996457328457e-09, -6.430921333649975e-13, 4.381601192982032e-10, -6.430921333649975e-13, 1.5727370274927927e-16, 4091.0, 0.002197801601141691, -2.149176225429983e-06, 4.3783895953275476e-10, -2.149176225429983e-06, 2.802940324286851e-09, -6.424636213656076e-13, 4.3783895953275476e-10, -6.424636213656076e-13, 1.5708157185404035e-16, 4092.0, 0.002197264926508069, -2.1481264411704615e-06, 4.375181328342137e-10, -2.1481264411704615e-06, 2.8008861896466897e-09, -6.418358683077385e-13, 4.375181328342137e-10, -6.418358683077385e-13, 1.5688973212637706e-16, 4093.0, 0.002196728717535734, -2.1470773390319664e-06, 4.371975836914288e-10, -2.1470773390319664e-06, 2.7988340534079725e-09, -6.412088741913902e-13, 4.371975836914288e-10, -6.412088741913902e-13, 1.5669817033139958e-16, 4094.0, 0.0021961925085633993, -2.146029146388173e-06, 4.368773953711269e-10, -2.146029146388173e-06, 2.7967839155706997e-09, -6.405826932266712e-13, 4.368773953711269e-10, -6.405826932266712e-13, 1.5650688646910791e-16, 4095.0, 0.0021956567652523518, -2.144981635865406e-06, 4.3655748460658117e-10, -2.144981635865406e-06, 2.7947357761348712e-09, -6.399572169933643e-13, 4.3655748460658117e-10, -6.399572169933643e-13, 1.5631588053950207e-16, 4096.0, 0.002195121254771948, -2.1439348074636655e-06, 4.362379069089428e-10, -2.1439348074636655e-06, 2.792689635100487e-09, -6.393325539116868e-13, 4.362379069089428e-10, -6.393325539116868e-13, 1.5612516577747184e-16 -}; -float COEFF_2D[]={3.0,3.0,0.8055555820465088,-0.75,-0.75,0.1666666716337204,0.25,0.1666666716337204,-0.75,2.4166667461395264,0.25,-1.0,-0.25,1.0568469258165716e-15,-0.75,0.25,2.4166667461395264,1.3263072704585962e-15,-0.25,-1.0,0.1666666716337204,-1.0,1.3263072704585962e-15,0.5,-2.22164248328831e-16,-5.523053980374432e-16,0.25,-0.25,-0.25,-2.22164248328831e-16,0.25,5.551115123125783e-17,0.1666666716337204,1.0568469258165716e-15,-1.0,-5.523053980374432e-16,5.551115123125783e-17,0.5,3.0,4.0,0.7083333134651184,-0.6000000238418579,-0.5,0.125,0.15000000596046448,0.0833333358168602,-0.6000000238418579,1.850000023841858,0.15000000596046448,-0.75,-0.15000000596046448,3.7470027081099033e-16,-0.5,0.15000000596046448,0.9166666865348816,7.160938297074023e-16,-0.10000000149011612,-0.25,0.125,-0.75,7.160938297074023e-16,0.375,-1.332267682489747e-16,-1.942890293094024e-16,0.15000000596046448,-0.15000000596046448,-0.10000000149011612,-1.332267682489747e-16,0.10000000149011612,0.0,0.0833333358168602,3.7470027081099033e-16,-0.25,-1.942890293094024e-16,0.0,0.0833333358168602,3.0,5.0,0.6285714507102966,-0.5,-0.3571428656578064,0.10000000149011612,0.10000000149011612,0.0476190485060215,-0.5,1.5,0.10000000149011612,-0.6000000238418579,-0.10000000149011612,2.7799883379704194e-16,-0.3571428656578064,0.10000000149011612,0.4642857015132904,4.2327252813834093e-16,-0.05000000074505806,-0.095238097012043,0.10000000149011612,-0.6000000238418579,4.2327252813834093e-16,0.30000001192092896,-1.734723475976807e-17,-1.017103663475367e-16,0.10000000149011612,-0.10000000149011612,-0.05000000074505806,-1.734723475976807e-17,0.05000000074505806,-2.4267354972492796e-17,0.0476190485060215,2.7799883379704194e-16,-0.095238097012043,-1.017103663475367e-16,-2.4267354972492796e-17,0.02380952425301075,3.0,6.0,0.5634920597076416,-0.4285714328289032,-0.2678571343421936,0.0833333358168602,0.0714285746216774,0.02976190485060215,-0.4285714328289032,1.2619047164916992,0.0714285746216774,-0.5,-0.0714285746216774,-4.3864884957874625e-17,-0.2678571343421936,0.0714285746216774,0.2708333432674408,2.0816681711721685e-17,-0.02857142873108387,-0.0446428582072258,0.0833333358168602,-0.5,2.0816681711721685e-17,0.25,-1.3183898417423734e-16,1.9841698812956457e-17,0.0714285746216774,-0.0714285746216774,-0.02857142873108387,-1.3183898417423734e-16,0.02857142873108387,1.3976100498363069e-18,0.02976190485060215,-4.3864884957874625e-17,-0.0446428582072258,1.9841698812956457e-17,1.3976100498363069e-18,0.008928571827709675,3.0,7.0,0.5099206566810608,-0.375,-0.2083333283662796,0.0714285746216774,0.0535714291036129,0.01984127052128315,-0.375,1.0892857313156128,0.0535714291036129,-0.4285714328289032,-0.0535714291036129,-1.0297899670939703e-16,-0.2083333283662796,0.0535714291036129,0.1726190447807312,-2.5673907444456745e-16,-0.01785714365541935,-0.02380952425301075,0.0714285746216774,-0.4285714328289032,-2.5673907444456745e-16,0.2142857164144516,7.806255641895632e-18,4.017801192755022e-17,0.0535714291036129,-0.0535714291036129,-0.01785714365541935,7.806255641895632e-18,0.01785714365541935,4.845782847013246e-18,0.01984127052128315,-1.0297899670939703e-16,-0.02380952425301075,4.017801192755022e-17,4.845782847013246e-18,0.003968254197388887,3.0,8.0,0.4652777910232544,-0.3333333432674408,-0.1666666716337204,0.0625,0.0416666679084301,0.013888888992369175,-0.3333333432674408,0.9583333134651184,0.0416666679084301,-0.375,-0.0416666679084301,-2.5459871483108444e-17,-0.1666666716337204,0.0416666679084301,0.1170634925365448,-1.8041124150158794e-16,-0.011904762126505375,-0.013888888992369175,0.0625,-0.375,-1.8041124150158794e-16,0.1875,7.19910242530375e-17,1.3278689841463738e-17,0.0416666679084301,-0.0416666679084301,-0.011904762126505375,7.19910242530375e-17,0.011904762126505375,-7.012253036916953e-20,0.013888888992369175,-2.5459871483108444e-17,-0.013888888992369175,1.3278689841463738e-17,-7.012253036916953e-20,0.0019841270986944437,3.0,9.0,0.4276094138622284,-0.30000001192092896,-0.13636364042758942,0.0555555559694767,0.03333333507180214,0.010101010091602802,-0.30000001192092896,0.855555534362793,0.03333333507180214,-0.3333333432674408,-0.03333333507180214,-3.681689503015839e-18,-0.13636364042758942,0.03333333507180214,0.08315295726060867,-1.734723475976807e-17,-0.008333333767950535,-0.008658008649945259,0.0555555559694767,-0.3333333432674408,-1.734723475976807e-17,0.1666666716337204,2.42861286636753e-17,1.5182107859480362e-19,0.03333333507180214,-0.03333333507180214,-0.008333333767950535,2.42861286636753e-17,0.008333333767950535,7.446803582927678e-19,0.010101010091602802,-3.681689503015839e-18,-0.008658008649945259,1.5182107859480362e-19,7.446803582927678e-19,0.0010822510812431574,3.0,10.0,0.3954545557498932,-0.27272728085517883,-0.11363636702299118,0.05000000074505806,0.027272727340459824,0.007575757801532745,-0.27272728085517883,0.7727272510528564,0.027272727340459824,-0.30000001192092896,-0.027272727340459824,-4.055391919384127e-17,-0.11363636702299118,0.027272727340459824,0.06123737245798111,-1.2663481374630692e-16,-0.0060606058686971664,-0.005681818351149559,0.05000000074505806,-0.30000001192092896,-1.2663481374630692e-16,0.15000000596046448,-1.691355389077387e-17,1.4568716884228975e-17,0.027272727340459824,-0.027272727340459824,-0.0060606058686971664,-1.691355389077387e-17,0.0060606058686971664,1.7457127772097272e-18,0.007575757801532745,-4.055391919384127e-17,-0.005681818351149559,1.4568716884228975e-17,1.7457127772097272e-18,0.0006313131307251751,3.0,11.0,0.36771562695503235,-0.25,-0.09615384787321091,0.04545454680919647,0.022727273404598236,0.005827505607157946,-0.25,0.7045454382896423,0.022727273404598236,-0.27272728085517883,-0.022727273404598236,2.106507081478156e-17,-0.09615384787321091,0.022727273404598236,0.046425797045230865,8.760353553682876e-17,-0.004545454401522875,-0.0038850039709359407,0.04545454680919647,-0.27272728085517883,8.760353553682876e-17,0.13636364042758942,-7.806255641895632e-18,-8.062835487381005e-18,0.022727273404598236,-0.022727273404598236,-0.004545454401522875,-7.806255641895632e-18,0.004545454401522875,-6.548483369743558e-19,0.005827505607157946,2.106507081478156e-17,-0.0038850039709359407,-8.062835487381005e-18,-6.548483369743558e-19,0.0003885003970935941,3.0,12.0,0.343559205532074,-0.23076923191547394,-0.08241758495569229,0.0416666679084301,0.01923076994717121,0.004578754771500826,-0.23076923191547394,0.6474359035491943,0.01923076994717121,-0.25,-0.01923076994717121,-3.230205804724087e-17,-0.08241758495569229,0.01923076994717121,0.03604728728532791,-1.4051260155412137e-16,-0.003496503457427025,-0.002747252816334367,0.0416666679084301,-0.25,-1.4051260155412137e-16,0.125,-1.734723475976807e-18,1.1934361700206845e-17,0.01923076994717121,-0.01923076994717121,-0.003496503457427025,-1.734723475976807e-18,0.003496503457427025,1.1515164763738447e-18,0.004578754771500826,-3.230205804724087e-17,-0.002747252816334367,1.1934361700206845e-17,1.1515164763738447e-18,0.00024975024280138314,3.0,13.0,0.3223443329334259,-0.2142857164144516,-0.0714285746216774,0.03846153989434242,0.016483517363667488,0.0036630036775022745,-0.2142857164144516,0.598901093006134,0.016483517363667488,-0.23076923191547394,-0.016483517363667488,-2.689321335726278e-18,-0.0714285746216774,0.016483517363667488,0.028554778546094894,4.336808689942018e-18,-0.002747252816334367,-0.001998001942411065,0.03846153989434242,-0.23076923191547394,4.336808689942018e-18,0.11538461595773697,-2.3852447794681098e-17,1.6681929257188608e-18,0.016483517363667488,-0.016483517363667488,-0.002747252816334367,-2.3852447794681098e-17,0.002747252816334367,-2.6825249160831612e-20,0.0036630036775022745,-2.689321335726278e-18,-0.001998001942411065,1.6681929257188608e-18,-2.6825249160831612e-20,0.00016650016186758876,3.0,14.0,0.3035714328289032,-0.20000000298023224,-0.0625,0.0357142873108387,0.014285714365541935,0.0029761905316263437,-0.20000000298023224,0.5571428537368774,0.014285714365541935,-0.2142857164144516,-0.014285714365541935,6.341216335915234e-20,-0.0625,0.014285714365541935,0.02300824224948883,4.336808689942018e-18,-0.002197802299633622,-0.0014880952658131719,0.0357142873108387,-0.2142857164144516,4.336808689942018e-18,0.1071428582072258,-6.7220534694101275e-18,-7.106535470876659e-20,0.014285714365541935,-0.014285714365541935,-0.002197802299633622,-6.7220534694101275e-18,0.002197802299633622,3.456084353221006e-20,0.0029761905316263437,6.341216335915234e-20,-0.0014880952658131719,-7.106535470876659e-20,3.456084353221006e-20,0.00011446886492194608,3.0,15.0,0.286846399307251,-0.1875,-0.05514705926179886,0.03333333507180214,0.012500000186264515,0.0024509804788976908,-0.1875,0.5208333134651184,0.012500000186264515,-0.20000000298023224,-0.012500000186264515,-7.719195709605038e-18,-0.05514705926179886,0.012500000186264515,0.018813295289874077,-3.382710778154774e-17,-0.0017857142956927419,-0.0011312217684462667,0.03333333507180214,-0.20000000298023224,-3.382710778154774e-17,0.10000000149011612,-4.7704895589362195e-18,3.05664143328326e-18,0.012500000186264515,-0.012500000186264515,-0.0017857142956927419,-4.7704895589362195e-18,0.0017857142956927419,1.9264749538085035e-19,0.0024509804788976908,-7.719195709605038e-18,-0.0011312217684462667,3.05664143328326e-18,1.9264749538085035e-19,8.080155384959653e-05,3.0,16.0,0.27185457944869995,-0.1764705926179886,-0.04901960864663124,0.03125,0.011029412038624287,0.0020424837712198496,-0.1764705926179886,0.4889705777168274,0.011029412038624287,-0.1875,-0.011029412038624287,-2.4773186670416935e-18,-0.04901960864663124,0.011029412038624287,0.015581232495605946,-3.0791341698588326e-17,-0.00147058826405555,-0.0008753501460887492,0.03125,-0.1875,-3.0791341698588326e-17,0.09375,4.119968255444917e-18,1.3621976206322992e-18,0.011029412038624287,-0.011029412038624287,-0.00147058826405555,4.119968255444917e-18,0.00147058826405555,-3.98633685267076e-20,0.0020424837712198496,-2.4773186670416935e-18,-0.0008753501460887492,1.3621976206322992e-18,-3.98633685267076e-20,5.835667616338469e-05,3.0,17.0,0.2583419382572174,-0.1666666716337204,-0.04385964944958687,0.029411764815449715,0.009803921915590763,0.0017199862049892545,-0.1666666716337204,0.46078431606292725,0.009803921915590763,-0.1764705926179886,-0.009803921915590763,5.0455051923238686e-18,-0.04385964944958687,0.009803921915590763,0.013050395995378494,3.642919299551295e-17,-0.0012254902394488454,-0.0006879944703541696,0.029411764815449715,-0.1764705926179886,3.642919299551295e-17,0.0882352963089943,1.5178830414797062e-18,-2.085634998517728e-18,0.009803921915590763,-0.009803921915590763,-0.0012254902394488454,1.5178830414797062e-18,0.0012254902394488454,-7.927333221781104e-20,0.0017199862049892545,5.0455051923238686e-18,-0.0006879944703541696,-2.085634998517728e-18,-7.927333221781104e-20,4.29996543971356e-05,3.0,18.0,0.24610136449337006,-0.15789473056793213,-0.03947368264198303,0.02777777798473835,0.008771929889917374,0.001461988314986229,-0.15789473056793213,0.4356725215911865,0.008771929889917374,-0.1666666716337204,-0.008771929889917374,9.63485501841047e-18,-0.03947368264198303,0.008771929889917374,0.011040161363780499,8.803721640582296e-17,-0.0010319917928427458,-0.0005482456181198359,0.02777777798473835,-0.1666666716337204,8.803721640582296e-17,0.0833333358168602,-9.107298248878237e-18,-4.113769777524751e-18,0.008771929889917374,-0.008771929889917374,-0.0010319917928427458,-9.107298248878237e-18,0.0010319917928427458,-1.0051453547930291e-19,0.001461988314986229,9.63485501841047e-18,-0.0005482456181198359,-4.113769777524751e-18,-1.0051453547930291e-19,3.2249743526335806e-05,3.0,19.0,0.23496240377426147,-0.15000000596046448,-0.0357142873108387,0.02631578966975212,0.007894736714661121,0.0012531328247860074,-0.15000000596046448,0.4131578803062439,0.007894736714661121,-0.15789473056793213,-0.007894736714661121,-3.82387564645911e-18,-0.0357142873108387,0.007894736714661121,0.009423067793250084,-9.974659986866641e-18,-0.0008771930006332695,-0.0004422821803018451,0.02631578966975212,-0.15789473056793213,-9.974659986866641e-18,0.07894736528396606,-4.7704895589362195e-18,1.0251911075859714e-18,0.007894736714661121,-0.007894736714661121,-0.0008771930006332695,-4.7704895589362195e-18,0.0008771930006332695,1.4906749773319116e-19,0.0012531328247860074,-3.82387564645911e-18,-0.0004422821803018451,1.0251911075859714e-18,1.4906749773319116e-19,2.457123264321126e-05,3.0,20.0,0.22478355467319489,-0.1428571492433548,-0.03246753290295601,0.02500000037252903,0.0071428571827709675,0.0010822510812431574,-0.1428571492433548,0.3928571343421936,0.0071428571827709675,-0.15000000596046448,-0.0071428571827709675,5.183211325569553e-18,-0.03246753290295601,0.0071428571827709675,0.008107389323413372,4.5536491244391186e-17,-0.0007518797065131366,-0.0003607503604143858,0.02500000037252903,-0.15000000596046448,4.5536491244391186e-17,0.07500000298023224,-4.87890977618477e-18,-2.0000997668912226e-18,0.0071428571827709675,-0.0071428571827709675,-0.0007518797065131366,-4.87890977618477e-18,0.0007518797065131366,-1.0733119519803317e-19,0.0010822510812431574,5.183211325569553e-18,-0.0003607503604143858,-2.0000997668912226e-18,-1.0733119519803317e-19,1.8986860595759936e-05,3.0,21.0,0.2154463827610016,-0.13636364042758942,-0.02964426949620247,0.02380952425301075,0.006493506487458944,0.0009410878992639482,-0.13636364042758942,0.3744588792324066,0.006493506487458944,-0.1428571492433548,-0.006493506487458944,7.694037011274238e-19,-0.02964426949620247,0.006493506487458944,0.007025964092463255,-3.469446951953614e-18,-0.0006493506371043622,-0.0002971856447402388,0.02380952425301075,-0.1428571492433548,-3.469446951953614e-18,0.0714285746216774,1.6696713456276768e-17,-5.269699365864142e-19,0.006493506487458944,-0.006493506487458944,-0.0006493506371043622,1.6696713456276768e-17,0.0006493506371043622,2.2139086813785446e-20,0.0009410878992639482,7.694037011274238e-19,-0.0002971856447402388,-5.269699365864142e-19,2.2139086813785446e-20,1.485928260080982e-05,3.0,22.0,0.20685112476348877,-0.1304347813129425,-0.027173912152647972,0.022727273404598236,0.005928853526711464,0.0008234519045799971,-0.1304347813129425,0.35770750045776367,0.005928853526711464,-0.13636364042758942,-0.005928853526711464,4.330676438169644e-19,-0.027173912152647972,0.005928853526711464,0.006128835026174784,1.214306433183765e-17,-0.0005646527279168367,-0.0002470355830155313,0.022727273404598236,-0.13636364042758942,1.214306433183765e-17,0.06818182021379471,-8.782037597132586e-18,-2.0912811265838616e-19,0.005928853526711464,-0.005928853526711464,-0.0005646527279168367,-8.782037597132586e-18,0.0005646527279168367,-2.6793032333897876e-21,0.0008234519045799971,4.330676438169644e-19,-0.0002470355830155313,-2.0912811265838616e-19,-2.6793032333897876e-21,1.1763599104597233e-05,3.0,23.0,0.19891303777694702,-0.125,-0.02500000037252903,0.021739130839705467,0.005434782709926367,0.0007246377062983811,-0.125,0.34239131212234497,0.005434782709926367,-0.1304347813129425,-0.005434782709926367,-4.521681075305782e-18,-0.02500000037252903,0.005434782709926367,0.005378317553550005,-3.881443777498106e-17,-0.0004940711660310626,-0.00020703933842014521,0.021739130839705467,-0.1304347813129425,-3.881443777498106e-17,0.06521739065647125,-3.2526065174565133e-19,1.7203713753611292e-18,0.005434782709926367,-0.005434782709926367,-0.0004940711660310626,-3.2526065174565133e-19,0.0004940711660310626,7.37890407460535e-20,0.0007246377062983811,-4.521681075305782e-18,-0.00020703933842014521,1.7203713753611292e-18,7.37890407460535e-20,9.410879101778846e-06,3.0,24.0,0.191559836268425,-0.11999999731779099,-0.023076923564076424,0.02083333395421505,0.004999999888241291,0.0006410256610251963,-0.11999999731779099,0.3283333480358124,0.004999999888241291,-0.125,-0.004999999888241291,2.4665967519417812e-18,-0.023076923564076424,0.004999999888241291,0.00474561657756567,1.7997756063259374e-17,-0.00043478261795826256,-0.00017482518160250038,0.02083333395421505,-0.125,1.7997756063259374e-17,0.0625,6.613633252161577e-18,-9.69912695200584e-19,0.004999999888241291,-0.004999999888241291,-0.00043478261795826256,6.613633252161577e-18,0.00043478261795826256,-4.055486890058206e-20,0.0006410256610251963,2.4665967519417812e-18,-0.00017482518160250038,-9.69912695200584e-19,-4.055486890058206e-20,7.6010946941096336e-06,3.0,25.0,0.18472933769226074,-0.11538461595773697,-0.021367521956562996,0.019999999552965164,0.004615384619683027,0.0005698005552403629,-0.11538461595773697,0.3153846263885498,0.004615384619683027,-0.11999999731779099,-0.004615384619683027,2.2074622625321143e-19,-0.021367521956562996,0.004615384619683027,0.004208472557365894,5.854691731421724e-18,-0.0003846153849735856,-0.00014864362310618162,0.019999999552965164,-0.11999999731779099,5.854691731421724e-18,0.05999999865889549,-1.3010426069826053e-18,-1.8245816827314852e-19,0.004615384619683027,-0.004615384619683027,-0.0003846153849735856,-1.3010426069826053e-18,0.0003846153849735856,1.3096981667512234e-20,0.0005698005552403629,2.2074622625321143e-19,-0.00014864362310618162,-1.8245816827314852e-19,1.3096981667512234e-20,6.193484296090901e-06,3.0,26.0,0.17836792767047882,-0.1111111119389534,-0.01984127052128315,0.01923076994717121,0.004273504484444857,0.000508750497829169,-0.1111111119389534,0.3034188151359558,0.004273504484444857,-0.11538461595773697,-0.004273504484444857,2.314000333694377e-18,-0.01984127052128315,0.004273504484444857,0.0037494911812245846,4.0549161250957866e-17,-0.0003418803389649838,-0.00012718762445729226,0.01923076994717121,-0.11538461595773697,4.0549161250957866e-17,0.057692307978868484,-1.1546753136970622e-17,-1.0457557481922288e-18,0.004273504484444857,-0.004273504484444857,-0.0003418803389649838,-1.1546753136970622e-17,0.0003418803389649838,-1.0521707503312535e-20,0.000508750497829169,2.314000333694377e-18,-0.00012718762445729226,-1.0457557481922288e-18,-1.0521707503312535e-20,5.0875050874310546e-06,3.0,27.0,0.17242899537086487,-0.1071428582072258,-0.018472906202077866,0.018518518656492233,0.003968254197388887,0.0004561211389955133,-0.1071428582072258,0.29232802987098694,0.003968254197388887,-0.1111111119389534,-0.003968254197388887,1.1194859751042601e-18,-0.018472906202077866,0.003968254197388887,0.0033549463842064142,6.5052130349130266e-18,-0.0003052503161597997,-0.00010946907423203811,0.018518518656492233,-0.1111111119389534,6.5052130349130266e-18,0.0555555559694767,2.1141942363467336e-18,-3.7290377348686807e-19,0.003968254197388887,-0.003968254197388887,-0.0003052503161597997,2.1141942363467336e-18,0.0003052503161597997,-2.2863493466403028e-20,0.0004561211389955133,1.1194859751042601e-18,-0.00010946907423203811,-3.7290377348686807e-19,-2.2863493466403028e-20,4.2103488340217154e-06,3.0,28.0,0.16687192022800446,-0.1034482792019844,-0.017241379246115685,0.01785714365541935,0.0036945813335478306,0.0004105090338271111,-0.1034482792019844,0.282019704580307,0.0036945813335478306,-0.1071428582072258,-0.0036945813335478306,-6.9748179443201e-19,-0.017241379246115685,0.0036945813335478306,0.003013908164575696,-1.3444106938820255e-17,-0.0002736726892180741,-9.473285172134638e-05,0.01785714365541935,-0.1071428582072258,-1.3444106938820255e-17,0.0535714291036129,4.7704895589362195e-18,2.506275313456243e-19,0.0036945813335478306,-0.0036945813335478306,-0.0002736726892180741,4.7704895589362195e-18,0.0002736726892180741,1.319903345999883e-20,0.0004105090338271111,-6.9748179443201e-19,-9.473285172134638e-05,2.506275313456243e-19,1.319903345999883e-20,3.5086241041426547e-06,3.0,29.0,0.16166110336780548,-0.10000000149011612,-0.016129031777381897,0.017241379246115685,0.003448275849223137,0.00037078236346133053,-0.10000000149011612,0.27241379022598267,0.003448275849223137,-0.1034482792019844,-0.003448275849223137,-2.889353046585995e-18,-0.016129031777381897,0.003448275849223137,0.0027175992727279663,-3.3393426912553537e-17,-0.00024630542611703277,-8.239607996074483e-05,0.017241379246115685,-0.1034482792019844,-3.3393426912553537e-17,0.0517241396009922,-1.6263032587282567e-19,1.1389375407987508e-18,0.003448275849223137,-0.003448275849223137,-0.00024630542611703277,-1.6263032587282567e-19,0.00024630542611703277,3.285008539143408e-20,0.00037078236346133053,-2.889353046585995e-18,-8.239607996074483e-05,1.1389375407987508e-18,3.285008539143408e-20,2.942717173937126e-06,3.0,30.0,0.15676523745059967,-0.09677419066429138,-0.015120967291295528,0.01666666753590107,0.003225806402042508,0.00033602150506339967,-0.09677419066429138,0.2634408473968506,0.003225806402042508,-0.10000000149011612,-0.003225806402042508,9.808280671662572e-19,-0.015120967291295528,0.003225806402042508,0.0024589160457253456,9.540979117872439e-18,-0.0002224694035248831,-7.200460822787136e-05,0.01666666753590107,-0.10000000149011612,9.540979117872439e-18,0.05000000074505806,2.1141942363467336e-18,-3.55015837644044e-19,0.003225806402042508,-0.003225806402042508,-0.0002224694035248831,2.1141942363467336e-18,0.0002224694035248831,-1.3177292503938037e-20,0.00033602150506339967,9.808280671662572e-19,-7.200460822787136e-05,-3.55015837644044e-19,-1.3177292503938037e-20,2.4829175799823133e-06,3.0,31.0,0.15215665102005005,-0.09375,-0.014204545877873898,0.016129031777381897,0.0030241934582591057,0.0003054740955121815,-0.09375,0.25504031777381897,0.0030241934582591057,-0.09677419066429138,-0.0030241934582591057,1.1424140775157346e-18,-0.014204545877873898,0.0030241934582591057,0.002232067519798875,5.637851296924623e-18,-0.00020161290012765676,-6.320153624983504e-05,0.016129031777381897,-0.09677419066429138,5.637851296924623e-18,0.04838709533214569,7.047314121155779e-18,-4.410307823270417e-19,0.0030241934582591057,-0.0030241934582591057,-0.00020161290012765676,7.047314121155779e-18,0.00020161290012765676,-1.2163913050823182e-20,0.0003054740955121815,1.1424140775157346e-18,-6.320153624983504e-05,-4.410307823270417e-19,-1.2163913050823182e-20,2.1067178295197664e-06,3.0,32.0,0.14781083166599274,-0.09090909361839294,-0.013368983753025532,0.015625,0.0028409091755747795,0.00027852048515342176,-0.09090909361839294,0.24715909361839294,0.0028409091755747795,-0.09375,-0.0028409091755747795,1.622282643963366e-18,-0.013368983753025532,0.0028409091755747795,0.0020323011558502913,2.0708261494473135e-17,-0.0001832844573073089,-5.5704098485875875e-05,0.015625,-0.09375,2.0708261494473135e-17,0.046875,-1.3010426069826053e-18,-5.795589780052387e-19,0.0028409091755747795,-0.0028409091755747795,-0.0001832844573073089,-1.3010426069826053e-18,0.0001832844573073089,-2.083577974817719e-20,0.00027852048515342176,1.622282643963366e-18,-5.5704098485875875e-05,-5.795589780052387e-19,-2.083577974817719e-20,1.7969064174394589e-06,3.0,33.0,0.14370596408843994,-0.0882352963089943,-0.012605042196810246,0.01515151560306549,0.002673796843737364,0.00025464731152169406,-0.0882352963089943,0.2397504448890686,0.002673796843737364,-0.09090909361839294,-0.002673796843737364,-1.928142498224622e-18,-0.012605042196810246,0.002673796843737364,0.0018556909635663033,-2.5695591487906455e-17,-0.00016711230273358524,-4.9286576540907845e-05,0.01515151560306549,-0.09090909361839294,-2.5695591487906455e-17,0.04545454680919647,7.589415207398531e-19,7.277841603056065e-19,0.002673796843737364,-0.002673796843737364,-0.00016711230273358524,7.589415207398531e-19,0.00016711230273358524,2.1551444458813278e-20,0.00025464731152169406,-1.928142498224622e-18,-4.9286576540907845e-05,7.277841603056065e-19,2.1551444458813278e-20,1.5402055169033702e-06,3.0,34.0,0.1398226022720337,-0.08571428805589676,-0.011904762126505375,0.014705882407724857,0.002521008485928178,0.00023342670465353876,-0.08571428805589676,0.23277311027050018,0.002521008485928178,-0.0882352963089943,-0.002521008485928178,-1.0437436313521936e-18,-0.011904762126505375,0.002521008485928178,0.001698975102044642,-2.0599841277224584e-17,-0.00015278838691301644,-4.376750803203322e-05,0.014705882407724857,-0.0882352963089943,-2.0599841277224584e-17,0.04411764815449715,5.095750210681871e-18,4.1692420603662053e-19,0.002521008485928178,-0.002521008485928178,-0.00015278838691301644,5.095750210681871e-18,0.00015278838691301644,9.384066781381463e-21,0.00023342670465353876,-1.0437436313521936e-18,-4.376750803203322e-05,4.1692420603662053e-19,9.384066781381463e-21,1.326288042946544e-06,3.0,35.0,0.1361432820558548,-0.0833333358168602,-0.011261261068284512,0.014285714365541935,0.0023809524718672037,0.00021450022177305073,-0.0833333358168602,0.2261904776096344,0.0023809524718672037,-0.08571428805589676,-0.0023809524718672037,7.613106694117815e-19,-0.011261261068284512,0.0023809524718672037,0.0015594280557706952,1.940721888749053e-17,-0.00014005602861288935,-3.900003866874613e-05,0.014285714365541935,-0.08571428805589676,1.940721888749053e-17,0.04285714402794838,-5.692061405548898e-18,-3.369362285436549e-19,0.0023809524718672037,-0.0023809524718672037,-0.00014005602861288935,-5.692061405548898e-18,0.00014005602861288935,-3.4673306975981025e-21,0.00021450022177305073,7.613106694117815e-19,-3.900003866874613e-05,-3.369362285436549e-19,-3.4673306975981025e-21,1.1470599474705523e-06,3.0,36.0,0.1326523870229721,-0.0810810774564743,-0.010668563656508923,0.013888888992369175,0.0022522523067891598,0.00019756598339881748,-0.0810810774564743,0.2199699729681015,0.0022522523067891598,-0.0833333358168602,-0.0022522523067891598,-6.085709421232524e-19,-0.010668563656508923,0.0022522523067891598,0.00143476075027138,-6.179952383167375e-18,-0.00012870013597421348,-3.486458444967866e-05,0.013888888992369175,-0.0833333358168602,-6.179952383167375e-18,0.0416666679084301,1.0842021724855044e-19,1.7901709692492792e-19,0.0022522523067891598,-0.0022522523067891598,-0.00012870013597421348,1.0842021724855044e-19,0.00012870013597421348,1.0879522087172107e-20,0.00019756598339881748,-6.085709421232524e-19,-3.486458444967866e-05,1.7901709692492792e-19,1.0879522087172107e-20,9.961310070139007e-07,3.0,37.0,0.12933582067489624,-0.07894736528396606,-0.010121457278728485,0.013513513840734959,0.002133712638169527,0.0001823686034185812,-0.07894736528396606,0.2140825092792511,0.002133712638169527,-0.0810810774564743,-0.002133712638169527,1.9524203784500242e-19,-0.010121457278728485,0.002133712638169527,0.001323040807619691,3.577867169202165e-18,-0.00011853959586005658,-3.126318915747106e-05,0.013513513840734959,-0.0810810774564743,3.577867169202165e-18,0.04054053872823715,2.710505431213761e-19,-9.004854876844477e-20,0.002133712638169527,-0.002133712638169527,-0.00011853959586005658,2.710505431213761e-19,0.00011853959586005658,-1.011592007899594e-21,0.0001823686034185812,1.9524203784500242e-19,-3.126318915747106e-05,-9.004854876844477e-20,-1.011592007899594e-21,8.684219210408628e-07,3.0,38.0,0.12618084251880646,-0.07692307978868484,-0.009615384973585606,0.01315789483487606,0.0020242915488779545,0.0001686909527052194,-0.07692307978868484,0.20850202441215515,0.0020242915488779545,-0.07894736528396606,-0.0020242915488779545,-1.3008796524019324e-18,-0.009615384973585606,0.0020242915488779545,0.0012226295657455921,-2.677979366039196e-17,-0.00010942116205114871,-2.8115160603192635e-05,0.01315789483487606,-0.07894736528396606,-2.677979366039196e-17,0.03947368264198303,6.5052130349130266e-18,5.184037058616034e-19,0.0020242915488779545,-0.0020242915488779545,-0.00010942116205114871,6.5052130349130266e-18,0.00010942116205114871,1.1111552711341766e-20,0.0001686909527052194,-1.3008796524019324e-18,-2.8115160603192635e-05,5.184037058616034e-19,1.1111552711341766e-20,7.59869180910755e-07,3.0,39.0,0.12317594140768051,-0.07500000298023224,-0.009146341122686863,0.012820512987673283,0.001923076924867928,0.00015634771261829883,-0.07500000298023224,0.20320512354373932,0.001923076924867928,-0.07692307978868484,-0.001923076924867928,7.084148473832765e-19,-0.009146341122686863,0.001923076924867928,0.001132130972109735,1.1167282376600696e-17,-0.00010121457307832316,-2.5353683668072335e-05,0.012820512987673283,-0.07692307978868484,1.1167282376600696e-17,0.03846153989434242,4.336808689942018e-19,-2.825273380784255e-19,0.001923076924867928,-0.001923076924867928,-0.00010121457307832316,4.336808689942018e-19,0.00010121457307832316,-5.521034769943656e-21,0.00015634771261829883,7.084148473832765e-19,-2.5353683668072335e-05,-2.825273380784255e-19,-5.521034769943656e-21,6.672021868325828e-07,3.0,40.0,0.12031068652868271,-0.0731707289814949,-0.008710801601409912,0.012500000186264515,0.0018292682943865657,0.00014518001989927143,-0.0731707289814949,0.1981707364320755,0.0018292682943865657,-0.07500000298023224,-0.0018292682943865657,1.02043998894262e-18,-0.008710801601409912,0.0018292682943865657,0.0010503510711714625,1.3227266504323154e-17,-9.380863048136234e-05,-2.2923160940990783e-05,0.012500000186264515,-0.07500000298023224,1.3227266504323154e-17,0.03750000149011612,2.520770051028798e-18,-3.8778159908061167e-19,0.0018292682943865657,-0.0018292682943865657,-9.380863048136234e-05,2.520770051028798e-18,9.380863048136234e-05,-8.964049669486324e-21,0.00014518001989927143,1.02043998894262e-18,-2.2923160940990783e-05,-3.8778159908061167e-19,-8.964049669486324e-21,5.877733997294854e-07,3.0,41.0,0.11757556349039078,-0.0714285746216774,-0.008305647410452366,0.012195121496915817,0.001742160296998918,0.00013505118840839714,-0.0714285746216774,0.19337978959083557,0.001742160296998918,-0.0731707289814949,-0.001742160296998918,-1.2114813580678338e-19,-0.008305647410452366,0.001742160296998918,0.0009762642439454794,-4.445228907190568e-18,-8.710801193956286e-05,-2.0777104509761557e-05,0.012195121496915817,-0.0731707289814949,-4.445228907190568e-18,0.03658536449074745,1.1926223897340549e-18,6.812704761426485e-20,0.001742160296998918,-0.001742160296998918,-8.710801193956286e-05,1.1926223897340549e-18,8.710801193956286e-05,-5.861842875838307e-22,0.00013505118840839714,-1.2114813580678338e-19,-2.0777104509761557e-05,6.812704761426485e-20,-5.861842875838307e-22,5.19427658218774e-07,3.0,42.0,0.11496191471815109,-0.06976744532585144,-0.007928118109703064,0.011904762126505375,0.001661129528656602,0.000125843143905513,-0.06976744532585144,0.18881505727767944,0.001661129528656602,-0.0714285746216774,-0.001661129528656602,2.6556713699136795e-19,-0.007928118109703064,0.001661129528656602,0.0009089865488931537,7.047314121155779e-18,-8.103071013465524e-05,-1.8876471585826948e-05,0.011904762126505375,-0.0714285746216774,7.047314121155779e-18,0.0357142873108387,-3.63207727782644e-18,-9.001192663929369e-20,0.001661129528656602,-0.001661129528656602,-8.103071013465524e-05,-3.63207727782644e-18,8.103071013465524e-05,-3.330263073468301e-21,0.000125843143905513,2.6556713699136795e-19,-1.8876471585826948e-05,-9.001192663929369e-20,-3.330263073468301e-21,4.604017647125147e-07,3.0,43.0,0.11246182769536972,-0.06818182021379471,-0.007575757801532745,0.011627906933426857,0.0015856237150728703,0.0001174536082544364,-0.06818182021379471,0.18446089327335358,0.0015856237150728703,-0.06976744532585144,-0.0015856237150728703,-3.6907374630498855e-19,-0.007575757801532745,0.0015856237150728703,0.0008477531373500824,-7.806255641895632e-18,-7.550588634330779e-05,-1.7188333004014567e-05,0.011627906933426857,-0.06976744532585144,-7.806255641895632e-18,0.03488372266292572,1.0570971181733668e-18,1.4430499243172003e-19,0.0015856237150728703,-0.0015856237150728703,-7.550588634330779e-05,1.0570971181733668e-18,7.550588634330779e-05,2.650469647862814e-21,0.0001174536082544364,-3.6907374630498855e-19,-1.7188333004014567e-05,1.4430499243172003e-19,2.650469647862814e-21,4.0924601307779085e-07,3.0,44.0,0.11006807535886765,-0.06666667014360428,-0.007246376946568489,0.011363636702299118,0.0015151514671742916,0.0001097935892175883,-0.06666667014360428,0.18030303716659546,0.0015151514671742916,-0.06818182021379471,-0.0015151514671742916,3.0553143770867836e-19,-0.007246376946568489,0.0015151514671742916,0.0007918999181129038,7.48099499014998e-18,-7.047216058708727e-05,-1.5684798199799843e-05,0.011363636702299118,-0.06818182021379471,7.48099499014998e-18,0.034090910106897354,-2.2497195079074217e-18,-1.0306650399130265e-19,0.0015151514671742916,-0.0015151514671742916,-7.047216058708727e-05,-2.2497195079074217e-18,7.047216058708727e-05,-2.938506215615996e-21,0.0001097935892175883,3.0553143770867836e-19,-1.5684798199799843e-05,-1.0306650399130265e-19,-2.938506215615996e-21,3.6476274090091465e-07,3.0,45.0,0.10777401179075241,-0.06521739065647125,-0.00693802023306489,0.011111111380159855,0.0014492754125967622,0.00010278548870701343,-0.06521739065647125,0.17632849514484406,0.0014492754125967622,-0.06666667014360428,-0.0014492754125967622,1.8952819729091288e-19,-0.00693802023306489,0.0014492754125967622,0.0007408486562781036,2.2768245622195593e-18,-6.587615644093603e-05,-1.4342161193781067e-05,0.011111111380159855,-0.06666667014360428,2.2768245622195593e-18,0.03333333507180214,1.463672932855431e-18,-7.482136215051968e-20,0.0014492754125967622,-0.0014492754125967622,-6.587615644093603e-05,1.463672932855431e-18,6.587615644093603e-05,-1.3210641857452632e-21,0.00010278548870701343,1.8952819729091288e-19,-1.4342161193781067e-05,-7.482136215051968e-20,-1.3210641857452632e-21,3.2595821153336146e-07,3.0,46.0,0.10557354241609573,-0.06382978707551956,-0.0066489363089203835,0.010869565419852734,0.001387604046612978,9.636139293434098e-05,-0.06382978707551956,0.17252543568611145,0.001387604046612978,-0.06521739065647125,-0.001387604046612978,-2.8353107005297033e-19,-0.0066489363089203835,0.001387604046612978,0.0006940940511412919,-7.37257477290143e-18,-6.167129322420806e-05,-1.3140190276317298e-05,0.010869565419852734,-0.06521739065647125,-7.37257477290143e-18,0.032608695328235626,1.3010426069826053e-18,1.1374691142657102e-19,0.001387604046612978,-0.001387604046612978,-6.167129322420806e-05,1.3010426069826053e-18,6.167129322420806e-05,1.98695265678612e-21,9.636139293434098e-05,-2.8353107005297033e-19,-1.3140190276317298e-05,1.1374691142657102e-19,1.98695265678612e-21,2.920042163623293e-07,3.0,47.0,0.10346106439828873,-0.0625,-0.0063775512389838696,0.010638297535479069,0.0013297871919348836,9.046171908266842e-05,-0.0625,0.16888298094272614,0.0013297871919348836,-0.06382978707551956,-0.0013297871919348836,2.1971866113726743e-19,-0.0063775512389838696,0.0013297871919348836,0.000651193258818239,5.7462715141731735e-18,-5.781683648820035e-05,-1.206156230182387e-05,0.010638297535479069,-0.06382978707551956,5.7462715141731735e-18,0.03191489353775978,-1.734723475976807e-18,-7.74983771066827e-20,0.0013297871919348836,-0.0013297871919348836,-5.781683648820035e-05,-1.734723475976807e-18,5.781683648820035e-05,-1.9827789893741e-21,9.046171908266842e-05,2.1971866113726743e-19,-1.206156230182387e-05,-7.74983771066827e-20,-1.9827789893741e-21,2.622078625336144e-07,3.0,48.0,0.10143140703439713,-0.06122449040412903,-0.006122448947280645,0.010416666977107525,0.0012755101779475808,8.50340147735551e-05,-0.06122449040412903,0.16539116203784943,0.0012755101779475808,-0.0625,-0.0012755101779475808,2.925069102773598e-19,-0.006122448947280645,0.0012755101779475808,0.0006117572193033993,4.7704895589362195e-18,-5.427702853921801e-05,-1.1091393389506266e-05,0.010416666977107525,-0.0625,4.7704895589362195e-18,0.03125,7.318364664277155e-19,-1.133202025527673e-19,0.0012755101779475808,-0.0012755101779475808,-5.427702853921801e-05,7.318364664277155e-19,5.427702853921801e-05,-1.710354445940898e-21,8.50340147735551e-05,2.925069102773598e-19,-1.1091393389506266e-05,-1.133202025527673e-19,-1.710354445940898e-21,2.3598708764893672e-07,3.0,49.0,0.0994797945022583,-0.05999999865889549,-0.0058823530562222,0.010204081423580647,0.0012244897661730647,8.003201219253242e-05,-0.05999999865889549,0.1620408147573471,0.0012244897661730647,-0.06122449040412903,-0.0012244897661730647,-1.72636975312124e-19,-0.0058823530562222,0.0012244897661730647,0.0005754429148510098,-2.3310346708438345e-18,-5.10204081365373e-05,-1.0216852388111874e-05,0.010204081423580647,-0.06122449040412903,-2.3310346708438345e-18,0.030612245202064514,-5.149960319306146e-19,6.434667065618412e-20,0.0012244897661730647,-0.0012244897661730647,-5.10204081365373e-05,-5.149960319306146e-19,5.10204081365373e-05,1.1332996393023028e-21,8.003201219253242e-05,-1.72636975312124e-19,-1.0216852388111874e-05,6.434667065618412e-20,1.1332996393023028e-21,2.1285109141899738e-07,3.0,50.0,0.09760180860757828,-0.05882352963089943,-0.005656108725816011,0.009999999776482582,0.001176470541395247,7.54147840780206e-05,-0.05882352963089943,0.15882353484630585,0.001176470541395247,-0.05999999865889549,-0.001176470541395247,-1.0278375039347729e-19,-0.005656108725816011,0.001176470541395247,0.0005419475492089987,-5.854691731421724e-18,-4.801920658792369e-05,-9.426848009752575e-06,0.009999999776482582,-0.05999999865889549,-5.854691731421724e-18,0.029999999329447746,3.1170812458958252e-18,4.34649613813775e-20,0.001176470541395247,-0.001176470541395247,-4.801920658792369e-05,3.1170812458958252e-18,4.801920658792369e-05,5.750090694303036e-22,7.54147840780206e-05,-1.0278375039347729e-19,-9.426848009752575e-06,4.34649613813775e-20,5.750090694303036e-22,1.923846468798729e-07,3.0,51.0,0.09579337388277054,-0.057692307978868484,-0.005442670546472073,0.009803921915590763,0.0011312217684462667,7.114602340152487e-05,-0.057692307978868484,0.15573152899742126,0.0011312217684462667,-0.05882352963089943,-0.0011312217684462667,-1.5701967610015212e-19,-0.005442670546472073,0.0011312217684462667,0.0005110026686452329,-2.6020852139652106e-18,-4.5248867536429316e-05,-8.71175780048361e-06,0.009803921915590763,-0.05882352963089943,-2.6020852139652106e-18,0.029411764815449715,-6.2341624917916505e-19,6.214978880916839e-20,0.0011312217684462667,-0.0011312217684462667,-4.5248867536429316e-05,-6.2341624917916505e-19,4.5248867536429316e-05,8.606023645660604e-22,7.114602340152487e-05,-1.5701967610015212e-19,-8.71175780048361e-06,6.214978880916839e-20,8.606023645660604e-22,1.7423515430436964e-07,3.0,52.0,0.09405069053173065,-0.056603774428367615,-0.005241089966148138,0.009615384973585606,0.0010885341325774789,6.719346129102632e-05,-0.056603774428367615,0.15275761485099792,0.0010885341325774789,-0.057692307978868484,-0.0010885341325774789,4.350233831283753e-19,-0.005241089966148138,0.0010885341325774789,0.00048237002920359373,9.107298248878237e-18,-4.2687610402936116e-05,-8.06321531854337e-06,0.009615384973585606,-0.057692307978868484,9.107298248878237e-18,0.028846153989434242,-4.0657581468206416e-20,-1.636553189740525e-19,0.0010885341325774789,-0.0010885341325774789,-4.2687610402936116e-05,-4.0657581468206416e-20,4.2687610402936116e-05,-3.14130763735927e-21,6.719346129102632e-05,4.350233831283753e-19,-8.06321531854337e-06,-1.636553189740525e-19,-3.14130763735927e-21,1.5810226727808185e-07,3.0,53.0,0.09237024188041687,-0.0555555559694767,-0.005050505045801401,0.009433962404727936,0.0010482179932296276,6.352836498990655e-05,-0.0555555559694767,0.14989517629146576,0.0010482179932296276,-0.056603774428367615,-0.0010482179932296276,-1.5389015457483138e-19,-0.005050505045801401,0.0010482179932296276,0.00045583758037537336,-6.667843360785852e-18,-4.0316077502211556e-05,-7.473925506928936e-06,0.009433962404727936,-0.056603774428367615,-6.667843360785852e-18,0.028301887214183807,1.9244588561617704e-18,7.86327131451314e-20,0.0010482179932296276,-0.0010482179932296276,-4.0316077502211556e-05,1.9244588561617704e-18,4.0316077502211556e-05,-1.063123734377094e-22,6.352836498990655e-05,-1.5389015457483138e-19,-7.473925506928936e-06,7.86327131451314e-20,-1.063123734377094e-22,1.4372933776485297e-07,3.0,54.0,0.09074875712394714,-0.05454545468091965,-0.004870129749178886,0.009259259328246117,0.001010101055726409,6.01250612817239e-05,-0.05454545468091965,0.14713804423809052,0.001010101055726409,-0.0555555559694767,-0.001010101055726409,-6.581976704383526e-21,-0.004870129749178886,0.001010101055726409,0.0004312162345740944,1.1926223897340549e-18,-3.811701753875241e-05,-6.937506896065315e-06,0.009259259328246117,-0.0555555559694767,1.1926223897340549e-18,0.02777777798473835,-1.179069862577986e-18,-5.96570735708913e-21,0.001010101055726409,-0.001010101055726409,-3.811701753875241e-05,-1.179069862577986e-18,3.811701753875241e-05,5.570240505332232e-22,6.01250612817239e-05,-6.581976704383526e-21,-6.937506896065315e-06,-5.96570735708913e-21,5.570240505332232e-22,1.3089635331198224e-07,3.0,55.0,0.08918318152427673,-0.0535714291036129,-0.004699247889220715,0.00909090880304575,0.0009740259847603738,5.696058360626921e-05,-0.0535714291036129,0.14448052644729614,0.0009740259847603738,-0.05454545468091965,-0.0009740259847603738,4.5939924548227373e-20,-0.004699247889220715,0.0009740259847603738,0.0004083369276486337,1.6263032587282567e-19,-3.607503458624706e-05,-6.44836791252601e-06,0.00909090880304575,-0.05454545468091965,1.6263032587282567e-19,0.027272727340459824,2.0328790734103208e-19,-1.3013521243968907e-20,0.0009740259847603738,-0.0009740259847603738,-3.607503458624706e-05,2.0328790734103208e-19,3.607503458624706e-05,-4.625779374020145e-22,5.696058360626921e-05,4.5939924548227373e-20,-6.44836791252601e-06,-1.3013521243968907e-20,-4.625779374020145e-22,1.1941422428662918e-07,3.0,56.0,0.08767068386077881,-0.05263157933950424,-0.004537205211818218,0.008928571827709675,0.000939849647693336,5.4014344641473144e-05,-0.05263157933950424,0.14191728830337524,0.000939849647693336,-0.0535714291036129,-0.000939849647693336,2.524871626096142e-19,-0.004537205211818218,0.000939849647693336,0.00038704826147295535,5.637851296924623e-18,-3.417635161895305e-05,-6.001594101689989e-06,0.008928571827709675,-0.0535714291036129,5.637851296924623e-18,0.02678571455180645,-4.607859233063394e-19,-8.586439781151306e-20,0.000939849647693336,-0.000939849647693336,-3.417635161895305e-05,-4.607859233063394e-19,3.417635161895305e-05,-2.1861783803053064e-21,5.4014344641473144e-05,2.524871626096142e-19,-6.001594101689989e-06,-8.586439781151306e-20,-2.1861783803053064e-21,1.091198882363642e-07,3.0,57.0,0.08620860427618027,-0.0517241396009922,-0.004383401479572058,0.008771929889917374,0.0009074410190805793,5.1267852541059256e-05,-0.0517241396009922,0.13944344222545624,0.0009074410190805793,-0.05263157933950424,-0.0009074410190805793,-4.700516192495948e-20,-0.004383401479572058,0.0009074410190805793,0.00036721432115882635,-2.4936649967166602e-18,-3.2408606784883887e-05,-5.592856723524164e-06,0.008771929889917374,-0.05263157933950424,-2.4936649967166602e-18,0.02631578966975212,8.131516293641283e-19,2.6643115945292226e-20,0.0009074410190805793,-0.0009074410190805793,-3.2408606784883887e-05,8.131516293641283e-19,3.2408606784883887e-05,-2.7502909708497773e-22,5.1267852541059256e-05,-4.700516192495948e-20,-5.592856723524164e-06,2.6643115945292226e-20,-2.7502909708497773e-22,9.987244453668609e-08,3.0,58.0,0.08479446917772293,-0.050847455859184265,-0.0042372881434857845,0.008620689623057842,0.0008766803075559437,4.870445991400629e-05,-0.050847455859184265,0.13705435395240784,0.0008766803075559437,-0.0517241396009922,-0.0008766803075559437,-1.1203502237480132e-19,-0.0042372881434857845,0.0008766803075559437,0.0003487129579298198,-2.3852447794681098e-18,-3.076071152463555e-05,-5.2183349907863885e-06,0.008620689623057842,-0.0517241396009922,-2.3852447794681098e-18,0.0258620698004961,1.3552527156068805e-19,3.630700241826389e-20,0.0008766803075559437,-0.0008766803075559437,-3.076071152463555e-05,1.3552527156068805e-19,3.076071152463555e-05,1.0360739085072318e-21,4.870445991400629e-05,-1.1203502237480132e-19,-5.2183349907863885e-06,3.630700241826389e-20,1.0360739085072318e-21,9.154973668046296e-08,3.0,59.0,0.08342595398426056,-0.05000000074505806,-0.004098360426723957,0.008474576286971569,0.0008474576170556247,4.6309160097735e-05,-0.05000000074505806,0.1347457617521286,0.0008474576170556247,-0.050847455859184265,-0.0008474576170556247,-1.4342046493826235e-19,-0.004098360426723957,0.0008474576170556247,0.00033143407199531794,-5.637851296924623e-18,-2.9222675948403776e-05,-4.874648311670171e-06,0.008474576286971569,-0.050847455859184265,-5.637851296924623e-18,0.025423727929592133,1.734723475976807e-18,5.757381273582797e-20,0.0008474576170556247,-0.0008474576170556247,-2.9222675948403776e-05,1.734723475976807e-18,2.9222675948403776e-05,8.698746230242537e-22,4.6309160097735e-05,-1.4342046493826235e-19,-4.874648311670171e-06,5.757381273582797e-20,8.698746230242537e-22,8.404565932096375e-08,3.0,60.0,0.08210089057683945,-0.04918032884597778,-0.003966155461966991,0.008333333767950535,0.0008196721319109201,4.4068394345231354e-05,-0.04918032884597778,0.13251365721225739,0.0008196721319109201,-0.05000000074505806,-0.0008196721319109201,-1.2775357851038991e-20,-0.003966155461966991,0.0008196721319109201,0.00031527833198197186,-2.927345865710862e-18,-2.7785496058641e-05,-4.5587994463858195e-06,0.008333333767950535,-0.05000000074505806,-2.927345865710862e-18,0.02500000037252903,1.599198204416119e-18,1.2032073870555441e-20,0.0008196721319109201,-0.0008196721319109201,-2.7785496058641e-05,1.599198204416119e-18,2.7785496058641e-05,-3.1884634451104262e-22,4.4068394345231354e-05,-1.2775357851038991e-20,-4.5587994463858195e-06,1.2032073870555441e-20,-3.1884634451104262e-22,7.72677850591208e-08,3.0,61.0,0.08081723749637604,-0.04838709533214569,-0.003840245772153139,0.008196720853447914,0.0007932310691103339,4.196989902993664e-05,-0.04838709533214569,0.13035431504249573,0.0007932310691103339,-0.04918032884597778,-0.0007932310691103339,2.0062432114512598e-19,-0.003840245772153139,0.0007932310691103339,0.0003001559234689921,4.553649124439119e-18,-2.6441037334734574e-05,-4.2681253944465425e-06,0.008196720853447914,-0.04918032884597778,4.553649124439119e-18,0.02459016442298889,6.505213034913027e-19,-8.58725080589252e-20,0.0007932310691103339,-0.0007932310691103339,-2.6441037334734574e-05,6.505213034913027e-19,2.6441037334734574e-05,-8.69933390006249e-22,4.196989902993664e-05,2.0062432114512598e-19,-4.2681253944465425e-06,-8.58725080589252e-20,-8.69933390006249e-22,7.113542466186118e-08,3.0,62.0,0.07957309484481812,-0.0476190485060215,-0.0037202381063252687,0.008064515888690948,0.0007680491544306278,4.00025601265952e-05,-0.0476190485060215,0.12826420366764069,0.0007680491544306278,-0.04838709533214569,-0.0007680491544306278,1.633457595545016e-19,-0.0037202381063252687,0.0007680491544306278,0.0002859855303540826,2.927345865710862e-18,-2.5181940145557746e-05,-4.00025601265952e-06,0.008064515888690948,-0.04838709533214569,2.927345865710862e-18,0.024193547666072845,7.453889935837843e-19,-5.743382534185044e-20,0.0007680491544306278,-0.0007680491544306278,-2.5181940145557746e-05,7.453889935837843e-19,2.5181940145557746e-05,-1.0994063377945651e-21,4.00025601265952e-05,1.633457595545016e-19,-4.00025601265952e-06,-5.743382534185044e-20,-1.0994063377945651e-21,6.557796439210506e-08,3.0,63.0,0.07836665958166122,-0.046875,-0.0036057692486792803,0.007936508394777775,0.0007440476329065859,3.815628951997496e-05,-0.046875,0.126240074634552,0.0007440476329065859,-0.0476190485060215,-0.0007440476329065859,-1.2196948738095732e-19,-0.0036057692486792803,0.0007440476329065859,0.00027269337442703545,-4.716279450311944e-18,-2.400153607595712e-05,-3.7530776353378315e-06,0.007936508394777775,-0.0476190485060215,-4.716279450311944e-18,0.02380952425301075,1.043544591017298e-18,5.045652456322297e-20,0.0007440476329065859,-0.0007440476329065859,-2.400153607595712e-05,1.043544591017298e-18,2.400153607595712e-05,4.975260153597923e-22,3.815628951997496e-05,-1.2196948738095732e-19,-3.7530776353378315e-06,5.045652456322297e-20,4.975260153597923e-22,6.053350887214037e-08,3.0,64.0,0.07719624042510986,-0.04615384712815285,-0.003496503457427025,0.0078125,0.0007211538613773882,3.6421912227524444e-05,-0.04615384712815285,0.12427884340286255,0.0007211538613773882,-0.046875,-0.0007211538613773882,-2.997140961804431e-20,-0.003496503457427025,0.0007211538613773882,0.0002602124586701393,-1.599198204416119e-18,-2.2893773348187096e-05,-3.5247010146122193e-06,0.0078125,-0.046875,-1.599198204416119e-18,0.0234375,1.7618285302889447e-19,1.912526232988416e-20,0.0007211538613773882,-0.0007211538613773882,-2.2893773348187096e-05,1.7618285302889447e-19,2.2893773348187096e-05,-2.301533876507235e-22,3.6421912227524444e-05,-2.997140961804431e-20,-3.5247010146122193e-06,1.912526232988416e-20,-2.301533876507235e-22,5.5947637633835257e-08,4.0,3.0,0.7083333134651184,-0.5,-0.6000000238418579,0.0833333358168602,0.15000000596046448,0.125,-0.5,0.9166666865348816,0.15000000596046448,-0.25,-0.10000000149011612,-0.0,-0.6000000238418579,0.15000000596046448,1.850000023841858,0.0,-0.15000000596046448,-0.75,0.0833333358168602,-0.25,0.0,0.0833333358168602,0.0,-0.0,0.15000000596046448,-0.10000000149011612,-0.15000000596046448,0.0,0.10000000149011612,-0.0,0.125,-0.0,-0.75,-0.0,-0.0,0.375,4.0,4.0,0.6150000095367432,-0.39750000834465027,-0.39750000834465027,0.0625,0.09000000357627869,0.0625,-0.39750000834465027,0.7024999856948853,0.09000000357627869,-0.1875,-0.05999999865889549,2.42861286636753e-17,-0.39750000834465027,0.09000000357627869,0.7024999856948853,-4.8745728682331544e-18,-0.05999999865889549,-0.1875,0.0625,-0.1875,-4.8745728682331544e-18,0.0625,1.818928601178327e-18,6.569939400857418e-19,0.09000000357627869,-0.05999999865889549,-0.05999999865889549,1.818928601178327e-18,0.03999999910593033,-1.3877787807814457e-17,0.0625,2.42861286636753e-17,-0.1875,6.569939400857418e-19,-1.3877787807814457e-17,0.0625,4.0,5.0,0.5414285659790039,-0.33000001311302185,-0.28285714983940125,0.05000000074505806,0.05999999865889549,0.0357142873108387,-0.33000001311302185,0.5699999928474426,0.05999999865889549,-0.15000000596046448,-0.03999999910593033,1.5612511283791264e-17,-0.28285714983940125,0.05999999865889549,0.3557142913341522,-0.0,-0.029999999329447746,-0.0714285746216774,0.05000000074505806,-0.15000000596046448,-0.0,0.05000000074505806,0.0,0.0,0.05999999865889549,-0.03999999910593033,-0.029999999329447746,0.0,0.019999999552965164,-8.673617379884035e-18,0.0357142873108387,1.5612511283791264e-17,-0.0714285746216774,0.0,-8.673617379884035e-18,0.01785714365541935,4.0,6.0,0.48273810744285583,-0.28214284777641296,-0.21160714328289032,0.0416666679084301,0.04285714402794838,0.0223214291036129,-0.28214284777641296,0.47976189851760864,0.04285714402794838,-0.125,-0.02857142873108387,-5.204170427930421e-18,-0.21160714328289032,0.04285714402794838,0.20741070806980133,-0.0,-0.017142856493592262,-0.0334821417927742,0.0416666679084301,-0.125,-0.0,0.0416666679084301,0.0,0.0,0.04285714402794838,-0.02857142873108387,-0.017142856493592262,0.0,0.011428571306169033,2.168404344971009e-18,0.0223214291036129,-5.204170427930421e-18,-0.0334821417927742,0.0,2.168404344971009e-18,0.0066964286379516125,4.0,7.0,0.43511903285980225,-0.24642856419086456,-0.16428571939468384,0.0357142873108387,0.03214285895228386,0.014880952425301075,-0.24642856419086456,0.41428571939468384,0.03214285895228386,-0.1071428582072258,-0.02142857201397419,-2.388327019866605e-17,-0.16428571939468384,0.03214285895228386,0.13214285671710968,-9.020562075079397e-17,-0.010714286006987095,-0.01785714365541935,0.0357142873108387,-0.1071428582072258,-9.020562075079397e-17,0.0357142873108387,3.209238430557093e-17,4.915177096551851e-18,0.03214285895228386,-0.02142857201397419,-0.010714286006987095,3.209238430557093e-17,0.0071428571827709675,2.167486174491075e-18,0.014880952425301075,-2.388327019866605e-17,-0.01785714365541935,4.915177096551851e-18,2.167486174491075e-18,0.0029761905316263437,4.0,8.0,0.3958333432674408,-0.21875,-0.13124999403953552,0.03125,0.02500000037252903,0.010416666977107525,-0.21875,0.3645833432674408,0.02500000037252903,-0.09375,-0.01666666753590107,-4.231812338684947e-17,-0.13124999403953552,0.02500000037252903,0.08958332985639572,-5.0306980803327406e-17,-0.0071428571827709675,-0.010416666977107525,0.03125,-0.09375,-5.0306980803327406e-17,0.03125,-1.3877787807814457e-17,9.91759693230967e-18,0.02500000037252903,-0.01666666753590107,-0.0071428571827709675,-1.3877787807814457e-17,0.004761904943734407,2.6865389069408028e-18,0.010416666977107525,-4.231812338684947e-17,-0.010416666977107525,9.91759693230967e-18,2.6865389069408028e-18,0.0014880952658131719,4.0,9.0,0.3629292845726013,-0.1966666728258133,-0.10727272927761078,0.02777777798473835,0.019999999552965164,0.007575757801532745,-0.1966666728258133,0.32555556297302246,0.019999999552965164,-0.0833333358168602,-0.013333333656191826,6.6685077936128855e-19,-0.10727272927761078,0.019999999552965164,0.06361471861600876,-1.0408340855860843e-17,-0.004999999888241291,-0.006493506487458944,0.02777777798473835,-0.0833333358168602,-1.0408340855860843e-17,0.02777777798473835,6.071532165918825e-18,-3.215344357306472e-19,0.019999999552965164,-0.013333333656191826,-0.004999999888241291,6.071532165918825e-18,0.0033333334140479565,3.8543910113404393e-19,0.007575757801532745,6.6685077936128855e-19,-0.006493506487458944,-3.215344357306472e-19,3.8543910113404393e-19,0.000811688310932368,4.0,10.0,0.33500000834465027,-0.1786363571882248,-0.0893181785941124,0.02500000037252903,0.016363635659217834,0.005681818351149559,-0.1786363571882248,0.2940908968448639,0.016363635659217834,-0.07500000298023224,-0.010909090749919415,2.0155916603524526e-17,-0.0893181785941124,0.016363635659217834,0.04683712124824524,5.377642775528102e-17,-0.003636363660916686,-0.004261363763362169,0.02500000037252903,-0.07500000298023224,5.377642775528102e-17,0.02500000037252903,-2.8189256484623115e-18,-4.794762760421282e-18,0.016363635659217834,-0.010909090749919415,-0.003636363660916686,-2.8189256484623115e-18,0.002424242440611124,-9.585165245038644e-19,0.005681818351149559,2.0155916603524526e-17,-0.004261363763362169,-4.794762760421282e-18,-9.585165245038644e-19,0.0004734848625957966,4.0,11.0,0.31101399660110474,-0.16363635659217834,-0.0755244791507721,0.022727273404598236,0.013636363670229912,0.004370629321783781,-0.16363635659217834,0.26818183064460754,0.013636363670229912,-0.06818182021379471,-0.00909090880304575,-4.128593267692007e-18,-0.0755244791507721,0.013636363670229912,0.03550116717815399,-2.7755575615628914e-17,-0.0027272726874798536,-0.002913752803578973,0.022727273404598236,-0.06818182021379471,-2.7755575615628914e-17,0.022727273404598236,8.673617379884035e-18,1.2833702033881396e-18,0.013636363670229912,-0.00909090880304575,-0.0027272726874798536,8.673617379884035e-18,0.001818181830458343,4.2545207626052425e-20,0.004370629321783781,-4.128593267692007e-18,-0.002913752803578973,1.2833702033881396e-18,4.2545207626052425e-20,0.00029137529782019556,4.0,12.0,0.29020145535469055,-0.15096153318881989,-0.06469780206680298,0.02083333395421505,0.011538461782038212,0.0034340659622102976,-0.15096153318881989,0.24647435545921326,0.011538461782038212,-0.0625,-0.007692307699471712,-2.7077170053688448e-17,-0.06469780206680298,0.011538461782038212,0.02755993977189064,-9.540979117872439e-17,-0.0020979021210223436,-0.002060439670458436,0.02083333395421505,-0.0625,-9.540979117872439e-17,0.02083333395421505,7.48099499014998e-18,7.004733344763387e-18,0.011538461782038212,-0.007692307699471712,-0.0020979021210223436,7.48099499014998e-18,0.001398601452820003,7.81562842541647e-19,0.0034340659622102976,-2.7077170053688448e-17,-0.002060439670458436,7.004733344763387e-18,7.81562842541647e-19,0.00018731268937699497,4.0,13.0,0.2719780206680298,-0.14010989665985107,-0.05604395642876625,0.01923076994717121,0.009890110231935978,0.002747252816334367,-0.14010989665985107,0.22802197933197021,0.009890110231935978,-0.057692307978868484,-0.006593406666070223,-6.865819527823375e-18,-0.05604395642876625,0.009890110231935978,0.021828172728419304,-2.42861286636753e-17,-0.0016483516665175557,-0.0014985015150159597,0.01923076994717121,-0.057692307978868484,-2.42861286636753e-17,0.01923076994717121,1.4094628242311558e-18,1.6981201134858762e-18,0.009890110231935978,-0.006593406666070223,-0.0016483516665175557,1.4094628242311558e-18,0.001098901149816811,2.0593884025850554e-19,0.002747252816334367,-6.865819527823375e-18,-0.0014985015150159597,1.6981201134858762e-18,2.0593884025850554e-19,0.00012487512140069157,4.0,14.0,0.2558928430080414,-0.1307142823934555,-0.049017857760190964,0.01785714365541935,0.008571428246796131,0.0022321429569274187,-0.1307142823934555,0.21214285492897034,0.008571428246796131,-0.0535714291036129,-0.0057142856530845165,-3.732828703616011e-18,-0.049017857760190964,0.008571428246796131,0.01758585125207901,-1.5395670849294163e-17,-0.0013186812866479158,-0.0011160714784637094,0.01785714365541935,-0.0535714291036129,-1.5395670849294163e-17,0.01785714365541935,-5.421010862427522e-19,9.46042330673835e-19,0.008571428246796131,-0.0057142856530845165,-0.0013186812866479158,-5.421010862427522e-19,0.0008791208965703845,9.360309249460145e-20,0.0022321429569274187,-3.732828703616011e-18,-0.0011160714784637094,9.46042330673835e-19,9.360309249460145e-20,8.585165051044896e-05,4.0,15.0,0.241593137383461,-0.12250000238418579,-0.04323529452085495,0.01666666753590107,0.007499999832361937,0.0018382353009656072,-0.12250000238418579,0.19833333790302277,0.007499999832361937,-0.05000000074505806,-0.004999999888241291,1.2788129552008553e-18,-0.04323529452085495,0.007499999832361937,0.014377827756106853,6.938893903907228e-18,-0.0010714285308495164,-0.0008484162972308695,0.01666666753590107,-0.05000000074505806,6.938893903907228e-18,0.01666666753590107,9.75781955236954e-19,-5.505737938595563e-19,0.007499999832361937,-0.004999999888241291,-0.0010714285308495164,9.75781955236954e-19,0.0007142857066355646,4.601274875387472e-20,0.0018382353009656072,1.2788129552008553e-18,-0.0008484162972308695,-5.505737938595563e-19,4.601274875387472e-20,6.0601163568207994e-05,4.0,16.0,0.2287990152835846,-0.11525735259056091,-0.03841911628842354,0.015625,0.0066176471300423145,0.0015318627702072263,-0.11525735259056091,0.18621324002742767,0.0066176471300423145,-0.046875,-0.004411764908581972,4.155188365156506e-18,-0.03841911628842354,0.0066176471300423145,0.011906513012945652,1.0191500421363742e-17,-0.0008823529351502657,-0.0006565126241184771,0.015625,-0.046875,1.0191500421363742e-17,0.015625,1.6263032587282567e-18,-7.813607002794544e-19,0.0066176471300423145,-0.004411764908581972,-0.0008823529351502657,1.6263032587282567e-18,0.0005882352706976235,-1.9829735868443774e-19,0.0015318627702072263,4.155188365156506e-18,-0.0006565126241184771,-7.813607002794544e-19,-1.9829735868443774e-19,4.376750803203322e-05,4.0,17.0,0.2172858566045761,-0.10882353037595749,-0.034365326166152954,0.014705882407724857,0.0058823530562222,0.0012899896828457713,-0.10882353037595749,0.17549020051956177,0.0058823530562222,-0.04411764815449715,-0.003921568859368563,-8.57845942694473e-20,-0.034365326166152954,0.0058823530562222,0.0099716205149889,5.854691731421724e-18,-0.000735294132027775,-0.0005159958964213729,0.014705882407724857,-0.04411764815449715,5.854691731421724e-18,0.014705882407724857,-1.5178830414797062e-18,-1.86305449925618e-19,0.0058823530562222,-0.003921568859368563,-0.000735294132027775,-1.5178830414797062e-18,0.0004901961074210703,5.2935907976471174e-20,0.0012899896828457713,-8.57845942694473e-20,-0.0005159958964213729,-1.86305449925618e-19,5.2935907976471174e-20,3.2249743526335806e-05,4.0,18.0,0.20687134563922882,-0.10307017713785172,-0.030921053141355515,0.013888888992369175,0.005263158120214939,0.0010964912362396717,-0.10307017713785172,0.1659356653690338,0.005263158120214939,-0.0416666679084301,-0.003508772002533078,2.7199084068269576e-18,-0.030921053141355515,0.005263158120214939,0.008434919640421867,7.37257477290143e-18,-0.0006191950524225831,-0.0004111842135898769,0.013888888992369175,-0.0416666679084301,7.37257477290143e-18,0.013888888992369175,9.75781955236954e-19,-4.948306610662789e-19,0.005263158120214939,-0.003508772002533078,-0.0006191950524225831,9.75781955236954e-19,0.0004127967113163322,-1.2268914743857553e-19,0.0010964912362396717,2.7199084068269576e-18,-0.0004111842135898769,-4.948306610662789e-19,-1.2268914743857553e-19,2.418730582576245e-05,4.0,19.0,0.19740600883960724,-0.09789473563432693,-0.027969924733042717,0.01315789483487606,0.00473684212192893,0.000939849647693336,-0.09789473563432693,0.15736842155456543,0.00473684212192893,-0.03947368264198303,-0.0031578948255628347,7.100504936470236e-19,-0.027969924733042717,0.00473684212192893,0.0071988794952631,8.565197162635485e-18,-0.0005263157654553652,-0.0003317116352263838,0.01315789483487606,-0.03947368264198303,8.565197162635485e-18,0.01315789483487606,-2.1141942363467336e-18,-1.9766758989494932e-19,0.00473684212192893,-0.0031578948255628347,-0.0005263157654553652,-2.1141942363467336e-18,0.0003508772060740739,-8.56293977381913e-21,0.000939849647693336,7.100504936470236e-19,-0.0003317116352263838,-1.9766758989494932e-19,-8.56293977381913e-21,1.8428423572913744e-05,4.0,20.0,0.1887662410736084,-0.09321428835391998,-0.025422077625989914,0.012500000186264515,0.004285714123398066,0.000811688310932368,-0.09321428835391998,0.14964285492897034,0.004285714123398066,-0.03750000149011612,-0.0028571428265422583,-1.9546546708327124e-18,-0.025422077625989914,0.004285714123398066,0.006193323992192745,-1.929879867024198e-17,-0.000451127823907882,-0.00027056277031078935,0.012500000186264515,-0.03750000149011612,-1.929879867024198e-17,0.012500000186264515,6.396792817664476e-18,4.045969918616842e-19,0.004285714123398066,-0.0028571428265422583,-0.000451127823907882,6.396792817664476e-18,0.00030075188260525465,6.33088368684171e-20,0.000811688310932368,-1.9546546708327124e-18,-0.00027056277031078935,4.045969918616842e-19,6.33088368684171e-20,1.4240145901567303e-05,4.0,21.0,0.1808488667011261,-0.08896104246377945,-0.023207226768136024,0.011904762126505375,0.0038961039390414953,0.0007058159098960459,-0.08896104246377945,0.14264069497585297,0.0038961039390414953,-0.0357142873108387,-0.002597402548417449,1.8173501337744228e-18,-0.023207226768136024,0.0038961039390414953,0.0053668757900595665,8.456776945386935e-18,-0.00038961038808338344,-0.0002228892408311367,0.011904762126505375,-0.0357142873108387,8.456776945386935e-18,0.011904762126505375,1.951563910473908e-18,-4.984891258192361e-19,0.0038961039390414953,-0.002597402548417449,-0.00038961038808338344,1.951563910473908e-18,0.0002597402490209788,-2.1036204641246507e-20,0.0007058159098960459,1.8173501337744228e-18,-0.0002228892408311367,-4.984891258192361e-19,-2.1036204641246507e-20,1.1144461495860014e-05,4.0,22.0,0.17356719076633453,-0.08507905155420303,-0.02126976288855076,0.011363636702299118,0.0035573123022913933,0.0006175889284349978,-0.08507905155420303,0.13626481592655182,0.0035573123022913933,-0.034090910106897354,-0.0023715414572507143,-1.1177203580867657e-18,-0.02126976288855076,0.0035573123022913933,0.004681324120610952,-8.023096076392733e-18,-0.00033879163675010204,-0.00018527667270973325,0.011363636702299118,-0.034090910106897354,-8.023096076392733e-18,0.011363636702299118,1.870248747537495e-18,2.4666078671812624e-19,0.0035573123022913933,-0.0023715414572507143,-0.00033879163675010204,1.870248747537495e-18,0.0002258610911667347,3.4377076958078307e-20,0.0006175889284349978,-1.1177203580867657e-18,-0.00018527667270973325,2.4666078671812624e-19,3.4377076958078307e-20,8.822698873700574e-06,4.0,23.0,0.166847825050354,-0.08152174204587936,-0.019565217196941376,0.010869565419852734,0.0032608695328235626,0.0005434782360680401,-0.08152174204587936,0.1304347813129425,0.0032608695328235626,-0.032608695328235626,-0.0021739129442721605,-2.6091131472446143e-18,-0.019565217196941376,0.0032608695328235626,0.0041078487411141396,-1.8756697583999227e-17,-0.0002964426821563393,-0.0001552795001771301,0.010869565419852734,-0.032608695328235626,-1.8756697583999227e-17,0.010869565419852734,3.876022766635678e-18,5.669181072817799e-19,0.0032608695328235626,-0.0021739129442721605,-0.0002964426821563393,3.876022766635678e-18,0.00019762845477089286,6.793945856097431e-20,0.0005434782360680401,-2.6091131472446143e-18,-0.0001552795001771301,5.669181072817799e-19,6.793945856097431e-20,7.058159098960459e-06,4.0,24.0,0.16062819957733154,-0.07824999839067459,-0.018057692795991898,0.010416666977107525,0.003000000026077032,0.000480769231216982,-0.07824999839067459,0.125083327293396,0.003000000026077032,-0.03125,-0.0020000000949949026,7.929048329082444e-19,-0.018057692795991898,0.003000000026077032,0.003624429926276207,6.179952383167375e-18,-0.00026086956495419145,-0.00013111888256389648,0.010416666977107525,-0.03125,6.179952383167375e-18,0.010416666977107525,-1.6534083130403943e-18,-1.1272971191767808e-19,0.003000000026077032,-0.0020000000949949026,-0.00026086956495419145,-1.6534083130403943e-18,0.0001739130384521559,-3.6466651507660895e-20,0.000480769231216982,7.929048329082444e-19,-0.00013111888256389648,-1.1272971191767808e-19,-3.6466651507660895e-20,5.700821020582225e-06,4.0,25.0,0.1548546999692917,-0.07523076981306076,-0.016717948019504547,0.009999999776482582,0.002769230864942074,0.0004273504309821874,-0.07523076981306076,0.12015384435653687,0.002769230864942074,-0.029999999329447746,-0.0018461538711562753,9.824585435511758e-19,-0.016717948019504547,0.002769230864942074,0.003214046824723482,3.577867169202165e-18,-0.0002307692338945344,-0.00011148271732963622,0.009999999776482582,-0.029999999329447746,3.577867169202165e-18,0.009999999776482582,1.4094628242311558e-18,-2.3716601990633045e-19,0.002769230864942074,-0.0018461538711562753,-0.0002307692338945344,1.4094628242311558e-18,0.0001538461510790512,-1.6325540299727726e-20,0.0004273504309821874,9.824585435511758e-19,-0.00011148271732963622,-2.3716601990633045e-19,-1.6325540299727726e-20,4.645113222068176e-06,4.0,26.0,0.14948107302188873,-0.0724359005689621,-0.01552197802811861,0.009615384973585606,0.0025641026441007853,0.000381562887923792,-0.0724359005689621,0.11559829115867615,0.0025641026441007853,-0.028846153989434242,-0.0017094017239287496,-1.228668232492125e-18,-0.01552197802811861,0.0025641026441007853,0.0028634003829210997,-7.589415207398531e-18,-0.00020512820628937334,-9.5390721980948e-05,0.009615384973585606,-0.028846153989434242,-7.589415207398531e-18,0.009615384973585606,3.5236570605778894e-19,2.568396318965034e-19,0.0025641026441007853,-0.0017094017239287496,-0.00020512820628937334,3.5236570605778894e-19,0.00013675213267561048,2.8924790267443184e-20,0.000381562887923792,-1.228668232492125e-18,-9.5390721980948e-05,2.568396318965034e-19,2.8924790267443184e-20,3.815629042946966e-06,4.0,27.0,0.14446724951267242,-0.06984127312898636,-0.01444991771131754,0.009259259328246117,0.0023809524718672037,0.0003420908469706774,-0.06984127312898636,0.11137565970420837,0.0023809524718672037,-0.02777777798473835,-0.0015873016091063619,9.512073498161927e-19,-0.01444991771131754,0.0023809524718672037,0.002561997389420867,7.426784881525705e-18,-0.00018315018678549677,-8.210180385503918e-05,0.009259259328246117,-0.02777777798473835,7.426784881525705e-18,0.009259259328246117,-3.2526065174565133e-19,-2.3312268352398883e-19,0.0023809524718672037,-0.0015873016091063619,-0.00018315018678549677,-3.2526065174565133e-19,0.00012210012937430292,-1.3369935113783394e-20,0.0003420908469706774,9.512073498161927e-19,-8.210180385503918e-05,-2.3312268352398883e-19,-1.3369935113783394e-20,3.1577617392031243e-06,4.0,28.0,0.13977833092212677,-0.06742610782384872,-0.01348522212356329,0.008928571827709675,0.002216748660430312,0.00030788176809437573,-0.06742610782384872,0.10745073854923248,0.002216748660430312,-0.02678571455180645,-0.0014778325567021966,-5.498877509390201e-19,-0.01348522212356329,0.002216748660430312,0.002301482018083334,-8.72782748850831e-18,-0.00016420360771007836,-7.104963879100978e-05,0.008928571827709675,-0.02678571455180645,-8.72782748850831e-18,0.008928571827709675,2.656295322589486e-18,1.5393137143379125e-19,0.002216748660430312,-0.0014778325567021966,-0.00016420360771007836,2.656295322589486e-18,0.00010946907423203811,5.372046536146428e-21,0.00030788176809437573,-5.498877509390201e-19,-7.104963879100978e-05,1.5393137143379125e-19,5.372046536146428e-21,2.631468078106991e-06,4.0,29.0,0.1353837549686432,-0.06517241150140762,-0.012614015489816666,0.008620689623057842,0.0020689654629677534,0.00027808675076812506,-0.06517241150140762,0.10379310697317123,0.0020689654629677534,-0.0258620698004961,-0.0013793103862553835,6.980682137875218e-19,-0.012614015489816666,0.0020689654629677534,0.0020751452539116144,5.2583805365546965e-18,-0.00014778325567021966,-6.179705815156922e-05,0.008620689623057842,-0.0258620698004961,5.2583805365546965e-18,0.008620689623057842,-6.2341624917916505e-19,-1.5864327654622886e-19,0.0020689654629677534,-0.0013793103862553835,-0.00014778325567021966,-6.2341624917916505e-19,9.85221704468131e-05,-1.3319654811002388e-20,0.00027808675076812506,6.980682137875218e-19,-6.179705815156922e-05,-1.5864327654622886e-19,-1.3319654811002388e-20,2.2070378236094257e-06,4.0,30.0,0.13125671446323395,-0.06306451559066772,-0.011824596673250198,0.008333333767950535,0.0019354838877916336,0.00025201612152159214,-0.06306451559066772,0.10037634521722794,0.0019354838877916336,-0.02500000037252903,-0.0012903226306661963,-6.2303870585302e-20,-0.011824596673250198,0.0019354838877916336,0.0018775573698803782,-1.0299920638612292e-18,-0.00013348164793569595,-5.400345617090352e-05,0.008333333767950535,-0.02500000037252903,-1.0299920638612292e-18,0.008333333767950535,7.318364664277155e-19,9.765554563513963e-21,0.0019354838877916336,-0.0012903226306661963,-0.00013348164793569595,7.318364664277155e-19,8.898776286514476e-05,1.735758543879401e-21,0.00025201612152159214,-6.2303870585302e-20,-5.400345617090352e-05,9.765554563513963e-21,1.735758543879401e-21,1.8621881281433161e-06,4.0,31.0,0.12737353146076202,-0.06108871102333069,-0.011107037775218487,0.008064515888690948,0.0018145161448046565,0.00022910557163413614,-0.06108871102333069,0.0971774160861969,0.0018145161448046565,-0.024193547666072845,-0.001209677429869771,-1.5076598128915868e-18,-0.011107037775218487,0.0018145161448046565,0.0017042926046997309,-1.3118846287074604e-17,-0.0001209677429869771,-4.740115400636569e-05,0.008064515888690948,-0.024193547666072845,-1.3118846287074604e-17,0.008064515888690948,5.421010862427522e-19,3.7751473671518006e-19,0.0018145161448046565,-0.001209677429869771,-0.0001209677429869771,5.421010862427522e-19,8.064516441663727e-05,1.936183760066146e-20,0.00022910557163413614,-1.5076598128915868e-18,-4.740115400636569e-05,3.7751473671518006e-19,1.936183760066146e-20,1.5800384289832436e-06,4.0,32.0,0.12371323257684708,-0.05923295393586159,-0.01045287400484085,0.0078125,0.001704545458778739,0.00020889037114102393,-0.05923295393586159,0.09417613595724106,0.001704545458778739,-0.0234375,-0.0011363636003807187,-1.9038120144821405e-19,-0.01045287400484085,0.001704545458778739,0.0015517185674980283,-1.6263032587282567e-19,-0.0001099706714740023,-4.177807568339631e-05,0.0078125,-0.0234375,-1.6263032587282567e-19,0.0078125,-1.0028870095490916e-18,5.973022735631396e-20,0.001704545458778739,-0.0011363636003807187,-0.0001099706714740023,-1.0028870095490916e-18,7.331378583330661e-05,-7.024018509829848e-22,0.00020889037114102393,-1.9038120144821405e-19,-4.177807568339631e-05,5.973022735631396e-20,-7.024018509829848e-22,1.3476798130795942e-06,4.0,33.0,0.1202571913599968,-0.057486630976200104,-0.00985485129058361,0.007575757801532745,0.0016042781062424183,0.00019098549091722816,-0.057486630976200104,0.09135472029447556,0.0016042781062424183,-0.022727273404598236,-0.0010695187374949455,-1.6308734316126121e-18,-0.00985485129058361,0.0016042781062424183,0.0014168351190164685,-1.3064636178450328e-17,-0.00010026738164015114,-3.696493149618618e-05,0.007575757801532745,-0.022727273404598236,-1.3064636178450328e-17,0.007575757801532745,-3.6591823321385775e-19,4.0494624302594056e-19,0.0016042781062424183,-0.0010695187374949455,-0.00010026738164015114,-3.6591823321385775e-19,6.68449210934341e-05,2.0233522791991827e-20,0.00019098549091722816,-1.6308734316126121e-18,-3.696493149618618e-05,4.0494624302594056e-19,2.0233522791991827e-20,1.1551541092558182e-06,4.0,34.0,0.11698879301548004,-0.05584033578634262,-0.009306722320616245,0.007352941203862429,0.0015126049984246492,0.00017507003212813288,-0.05584033578634262,0.08869747817516327,0.0015126049984246492,-0.022058824077248573,-0.0010084033710882068,8.051306140605665e-19,-0.009306722320616245,0.0015126049984246492,0.0012971495743840933,7.643625316022806e-18,-9.167303505819291e-05,-3.282563193351962e-05,0.007352941203862429,-0.022058824077248573,7.643625316022806e-18,0.007352941203862429,-7.047314121155779e-19,-1.792536188813298e-19,0.0015126049984246492,-0.0010084033710882068,-9.167303505819291e-05,-7.047314121155779e-19,6.111535185482353e-05,-1.3114790284489132e-20,0.00017507003212813288,8.051306140605665e-19,-3.282563193351962e-05,-1.792536188813298e-19,-1.3114790284489132e-20,9.947160606316174e-07,4.0,35.0,0.11389318108558655,-0.05428571254014969,-0.008803089149296284,0.0071428571827709675,0.0014285714132711291,0.00016087516269180924,-0.05428571254014969,0.08619047701358795,0.0014285714132711291,-0.02142857201397419,-0.0009523809421807528,7.168512624507048e-19,-0.008803089149296284,0.0014285714132711291,0.0011905793799087405,6.830473686658678e-18,-8.403361425735056e-05,-2.9250029911054298e-05,0.0071428571827709675,-0.02142857201397419,6.830473686658678e-18,0.0071428571827709675,-4.2012834183813297e-19,-1.7435249620377069e-19,0.0014285714132711291,-0.0009523809421807528,-8.403361425735056e-05,-4.2012834183813297e-19,5.602241071755998e-05,-8.388018539245442e-21,0.00016087516269180924,7.168512624507048e-19,-2.9250029911054298e-05,-1.7435249620377069e-19,-8.388018539245442e-21,8.602949606029142e-07,4.0,36.0,0.11095701158046722,-0.05281531438231468,-0.008339260704815388,0.0069444444961845875,0.0013513513840734959,0.0001481744839111343,-0.05281531438231468,0.08382131904363632,0.0013513513840734959,-0.02083333395421505,-0.0009009009227156639,-5.02938737129312e-19,-0.008339260704815388,0.0013513513840734959,0.0010953755117952824,-6.993104012531504e-18,-7.722008012933657e-05,-2.6148440156248398e-05,0.0069444444961845875,-0.02083333395421505,-6.993104012531504e-18,0.0069444444961845875,1.4230153513872246e-18,1.2522400365165307e-19,0.0013513513840734959,-0.0009009009227156639,-7.722008012933657e-05,1.4230153513872246e-18,5.148005220689811e-05,5.526127504486469e-21,0.0001481744839111343,-5.02938737129312e-19,-2.6148440156248398e-05,1.2522400365165307e-19,5.526127504486469e-21,7.470982836821349e-07,4.0,37.0,0.10816828906536102,-0.05142247676849365,-0.007911150343716145,0.006756756920367479,0.0012802275596186519,0.00013677644892595708,-0.05142247676849365,0.08157894760370255,0.0012802275596186519,-0.020270269364118576,-0.0008534850785508752,-1.0070656158109798e-18,-0.007911150343716145,0.0012802275596186519,0.0010100615909323096,-1.0570971181733668e-17,-7.112375897122547e-05,-2.3447391868103296e-05,0.006756756920367479,-0.020270269364118576,-1.0570971181733668e-17,0.006756756920367479,4.472333961502706e-19,2.5947187570201197e-19,0.0012802275596186519,-0.0008534850785508752,-7.112375897122547e-05,4.472333961502706e-19,4.741583688883111e-05,9.236465125241898e-21,0.00013677644892595708,-1.0070656158109798e-18,-2.3447391868103296e-05,2.5947187570201197e-19,9.236465125241898e-21,6.513164407806471e-07,4.0,38.0,0.10551619529724121,-0.05010121315717697,-0.007515182252973318,0.00657894741743803,0.0012145749060437083,0.00012651822180487216,-0.05010121315717697,0.07945343852043152,0.0012145749060437083,-0.019736841320991516,-0.0008097165846265852,-2.8082877438933616e-19,-0.007515182252973318,0.0012145749060437083,0.0009333852794952691,-3.550762114890027e-18,-6.565269723068923e-05,-2.1086369088152424e-05,0.00657894741743803,-0.019736841320991516,-3.550762114890027e-18,0.00657894741743803,6.369687763352339e-19,6.780891912055578e-20,0.0012145749060437083,-0.0008097165846265852,-6.565269723068923e-05,6.369687763352339e-19,4.3768464820459485e-05,3.6066670099606726e-21,0.00012651822180487216,-2.8082877438933616e-19,-2.1086369088152424e-05,6.780891912055578e-20,3.6066670099606726e-21,5.699018856830662e-07,4.0,39.0,0.10299093276262283,-0.048846155405044556,-0.007148217409849167,0.006410256493836641,0.0011538461549207568,0.00011726078810170293,-0.048846155405044556,0.07743589580059052,0.0011538461549207568,-0.01923076994717121,-0.0007692307699471712,-2.0422533561960194e-19,-0.007148217409849167,0.0011538461549207568,0.0008642803877592087,-3.7947076036992655e-18,-6.072874384699389e-05,-1.90152622963069e-05,0.006410256493836641,-0.01923076994717121,-3.7947076036992655e-18,0.006410256493836641,1.1248597539537109e-18,5.280093536495725e-20,0.0011538461549207568,-0.0007692307699471712,-6.072874384699389e-05,1.1248597539537109e-18,4.048582923132926e-05,2.174043705342639e-21,0.00011726078810170293,-2.0422533561960194e-19,-1.90152622963069e-05,5.280093536495725e-20,2.174043705342639e-21,5.004016543352918e-07,4.0,40.0,0.10058362036943436,-0.047652438282966614,-0.006807491183280945,0.0062500000931322575,0.0010975609766319394,0.00010888501856243238,-0.047652438282966614,0.07551829516887665,0.0010975609766319394,-0.01875000074505806,-0.0007317073177546263,-4.730451018758932e-19,-0.006807491183280945,0.0010975609766319394,0.0008018345688469708,-5.773376568485311e-18,-5.6285178288817406e-05,-1.719237116049044e-05,0.0062500000931322575,-0.01875000074505806,-5.773376568485311e-18,0.0062500000931322575,7.453889935837843e-19,1.0810143605763928e-19,0.0010975609766319394,-0.0007317073177546263,-5.6285178288817406e-05,7.453889935837843e-19,3.752345219254494e-05,5.953474939104862e-21,0.00010888501856243238,-4.730451018758932e-19,-1.719237116049044e-05,1.0810143605763928e-19,5.953474939104862e-21,4.4083003558625933e-07,4.0,41.0,0.0982862040400505,-0.046515680849552155,-0.006490559782832861,0.006097560748457909,0.0010452962014824152,0.00010128838766831905,-0.046515680849552155,0.07369337975978851,0.0010452962014824152,-0.018292682245373726,-0.0006968640955165029,4.022795419780403e-19,-0.006490559782832861,0.0010452962014824152,0.0007452644058503211,3.144186300207963e-18,-5.2264807891333476e-05,-1.558282929181587e-05,0.006097560748457909,-0.018292682245373726,3.144186300207963e-18,0.006097560748457909,2.846030702774449e-19,-8.802091582957563e-20,0.0010452962014824152,-0.0006968640955165029,-5.2264807891333476e-05,2.846030702774449e-19,3.484320404822938e-05,-5.537472157340663e-21,0.00010128838766831905,4.022795419780403e-19,-1.558282929181587e-05,-8.802091582957563e-20,-5.537472157340663e-21,3.895707152423711e-07,4.0,42.0,0.09609131515026093,-0.045431893318891525,-0.0061952583491802216,0.0059523810632526875,0.0009966777870431542,9.438236156711355e-05,-0.045431893318891525,0.07195459306240082,0.0009966777870431542,-0.01785714365541935,-0.0006644517998211086,-1.5899353583685678e-19,-0.0061952583491802216,0.0009966777870431542,0.0006938945152796805,7.589415207398531e-19,-4.861842535319738e-05,-1.4157354598864913e-05,0.0059523810632526875,-0.01785714365541935,7.589415207398531e-19,0.0059523810632526875,-1.2332799712022613e-18,3.147672323652597e-20,0.0009966777870431542,-0.0006644517998211086,-4.861842535319738e-05,-1.2332799712022613e-18,3.2412284781457856e-05,2.6281767668474048e-21,9.438236156711355e-05,-1.5899353583685678e-19,-1.4157354598864913e-05,3.147672323652597e-20,2.6281767668474048e-21,3.4530131642895867e-07,4.0,43.0,0.09399224817752838,-0.04439746215939522,-0.0059196618385612965,0.0058139534667134285,0.0009513741824775934,8.809020073385909e-05,-0.04439746215939522,0.07029598206281662,0.0009513741824775934,-0.01744186133146286,-0.0006342494743876159,3.3792801809810597e-19,-0.0059196618385612965,0.0009513741824775934,0.0006471407250501215,3.469446951953614e-18,-4.530353544396348e-05,-1.2891249753010925e-05,0.0058139534667134285,-0.01744186133146286,3.469446951953614e-18,0.0058139534667134285,-1.6940658945086007e-19,-7.874723242353024e-20,0.0009513741824775934,-0.0006342494743876159,-4.530353544396348e-05,-1.6940658945086007e-19,3.020235635631252e-05,-3.757615354848096e-21,8.809020073385909e-05,3.3792801809810597e-19,-1.2891249753010925e-05,-7.874723242353024e-20,-3.757615354848096e-21,3.0693450980834314e-07,4.0,44.0,0.0919828712940216,-0.043409090489149094,-0.005662055220454931,0.005681818351149559,0.0009090909152291715,8.234519191319123e-05,-0.043409090489149094,0.06871212273836136,0.0009090909152291715,-0.017045455053448677,-0.000606060610152781,3.6261188890790673e-19,-0.005662055220454931,0.0009090909152291715,0.0006044957553967834,4.30970363562988e-18,-4.2283296352252364e-05,-1.1763599104597233e-05,0.005681818351149559,-0.017045455053448677,4.30970363562988e-18,0.005681818351149559,-8.131516293641283e-20,-9.575327094875062e-20,0.0009090909152291715,-0.000606060610152781,-4.2283296352252364e-05,-8.131516293641283e-20,2.8188866053824313e-05,-2.474967811662882e-21,8.234519191319123e-05,3.6261188890790673e-19,-1.1763599104597233e-05,-9.575327094875062e-20,-2.474967811662882e-21,2.73572055675686e-07,4.0,45.0,0.09005755931138992,-0.042463768273591995,-0.0054209064692258835,0.0055555556900799274,0.0008695652359165251,7.708911289228126e-05,-0.042463768273591995,0.06719806790351868,0.0008695652359165251,-0.01666666753590107,-0.0005797101184725761,2.343224056049204e-19,-0.0054209064692258835,0.0008695652359165251,0.0005655179265886545,2.8731357570865868e-18,-3.952569022658281e-05,-1.0756621122709475e-05,0.0055555556900799274,-0.01666666753590107,2.8731357570865868e-18,0.0055555556900799274,6.098637220230962e-20,-6.637896294834741e-20,0.0008695652359165251,-0.0005797101184725761,-3.952569022658281e-05,6.098637220230962e-20,2.6350460757385008e-05,-1.2089038665102928e-21,7.708911289228126e-05,2.343224056049204e-19,-1.0756621122709475e-05,-6.637896294834741e-20,-1.2089038665102928e-21,2.4446865154459374e-07,4.0,46.0,0.08821114897727966,-0.04155874252319336,-0.00519484281539917,0.005434782709926367,0.0008325624512508512,7.227104651974514e-05,-0.04155874252319336,0.06574930250644684,0.0008325624512508512,-0.016304347664117813,-0.0005550416535697877,-3.9220603308079297e-19,-0.00519484281539917,0.0008325624512508512,0.0005298212054185569,-3.767602549387128e-18,-3.700277375173755e-05,-9.855142707237974e-06,0.005434782709926367,-0.016304347664117813,-3.767602549387128e-18,0.005434782709926367,-2.981555974335137e-19,9.145868491769454e-20,0.0008325624512508512,-0.0005550416535697877,-3.700277375173755e-05,-2.981555974335137e-19,2.4668517653481103e-05,4.0963336987850566e-21,7.227104651974514e-05,-3.9220603308079297e-19,-9.855142707237974e-06,9.145868491769454e-20,4.0963336987850566e-21,2.1900316937717434e-07,4.0,47.0,0.08643888682126999,-0.04069149121642113,-0.004982631187886,0.005319148767739534,0.0007978723151609302,6.784628931200132e-05,-0.04069149121642113,0.06436169892549515,0.0007978723151609302,-0.01595744676887989,-0.0005319148767739534,-1.3938025633261194e-20,-0.004982631187886,0.0007978723151609302,0.0004970674635842443,1.2197274440461925e-18,-3.4690103348111734e-05,-9.046171726367902e-06,0.005319148767739534,-0.01595744676887989,1.2197274440461925e-18,0.005319148767739534,-6.369687763352339e-19,-1.4903128919434636e-21,0.0007978723151609302,-0.0005319148767739534,-3.4690103348111734e-05,-6.369687763352339e-19,2.312673495907802e-05,9.46980538473197e-22,6.784628931200132e-05,-1.3938025633261194e-20,-9.046171726367902e-06,-1.4903128919434636e-21,9.46980538473197e-22,1.9665590400563815e-07,4.0,48.0,0.08473639190196991,-0.03985969349741936,-0.00478316331282258,0.0052083334885537624,0.0007653061184100807,6.377550744218752e-05,-0.03985969349741936,0.06303146481513977,0.0007653061184100807,-0.015625,-0.0005102040595375001,1.2089906396952542e-19,-0.00478316331282258,0.0007653061184100807,0.0004669594345614314,1.5720931501039814e-18,-3.256621857872233e-05,-8.318545042129699e-06,0.0052083334885537624,-0.015625,1.5720931501039814e-18,0.0052083334885537624,-1.5585406229479126e-19,-3.227005083627541e-20,0.0007653061184100807,-0.0005102040595375001,-3.256621857872233e-05,-1.5585406229479126e-19,2.1710811779485084e-05,-8.945039459578593e-22,6.377550744218752e-05,1.2089906396952542e-19,-8.318545042129699e-06,-3.227005083627541e-20,-8.945039459578593e-22,1.7699031218398886e-07,4.0,49.0,0.08309964090585709,-0.039061225950717926,-0.0045954380184412,0.005102040711790323,0.0007346938946284354,6.0024009144399315e-05,-0.039061225950717926,0.06175510212779045,0.0007346938946284354,-0.015306122601032257,-0.0004897959297522902,1.4115479139108547e-19,-0.0045954380184412,0.0007346938946284354,0.00043923527118749917,2.574980159653073e-18,-3.061224560951814e-05,-7.662639291083906e-06,0.005102040711790323,-0.015306122601032257,2.574980159653073e-18,0.005102040711790323,-3.9302328752599536e-19,-4.174101681841469e-20,0.0007346938946284354,-0.0004897959297522902,-3.061224560951814e-05,-3.9302328752599536e-19,2.0408162527019158e-05,-1.11465629389171e-22,6.0024009144399315e-05,1.4115479139108547e-19,-7.662639291083906e-06,-4.174101681841469e-20,-1.11465629389171e-22,1.5963831856424804e-07,4.0,50.0,0.08152488619089127,-0.03829411789774895,-0.004418551921844482,0.004999999888241291,0.0007058823248371482,5.656108623952605e-05,-0.03829411789774895,0.06052941083908081,0.0007058823248371482,-0.014999999664723873,-0.00047058824566192925,-2.581522382816543e-19,-0.004418551921844482,0.0007058823248371482,0.0004136635398026556,-2.656295322589486e-18,-2.8811524316552095e-05,-7.070135779940756e-06,0.004999999888241291,-0.014999999664723873,-2.656295322589486e-18,0.004999999888241291,-3.8624702394796095e-19,6.25556759959905e-20,0.0007058823248371482,-0.00047058824566192925,-2.8811524316552095e-05,-3.8624702394796095e-19,1.9207682271371596e-05,2.042198870519929e-21,5.656108623952605e-05,-2.581522382816543e-19,-7.070135779940756e-06,6.25556759959905e-20,2.042198870519929e-21,1.442884780544773e-07,4.0,51.0,0.08000867813825607,-0.03755656257271767,-0.00425168639048934,0.0049019609577953815,0.0006787330494262278,5.335951573215425e-05,-0.03755656257271767,0.05935143306851387,0.0006787330494262278,-0.014705882407724857,-0.0004524886899162084,1.0236000127530286e-19,-0.00425168639048934,0.0006787330494262278,0.0003900393203366548,4.607859233063394e-19,-2.714932088565547e-05,-6.533818122989032e-06,0.0049019609577953815,-0.014705882407724857,4.607859233063394e-19,0.0049019609577953815,5.353248226647178e-19,-2.6230406134003684e-20,0.0006787330494262278,-0.0004524886899162084,-2.714932088565547e-05,5.353248226647178e-19,1.8099546650773846e-05,-7.771469897325274e-22,5.335951573215425e-05,1.0236000127530286e-19,-6.533818122989032e-06,-2.6230406134003684e-20,-7.771469897325274e-22,1.306763692809909e-07,4.0,52.0,0.07854781299829483,-0.03684687986969948,-0.004094097763299942,0.004807692486792803,0.000653120456263423,5.0395097787259147e-05,-0.03684687986969948,0.05821843072772026,0.000653120456263423,-0.014423076994717121,-0.00043541364721022546,-6.958858528376655e-20,-0.004094097763299942,0.000653120456263423,0.0003681806556414813,-1.8431436932253575e-18,-2.5612567696953192e-05,-6.0474117162812036e-06,0.004807692486792803,-0.014423076994717121,-1.8431436932253575e-18,0.004807692486792803,6.098637220230962e-19,1.8112210033163918e-20,0.000653120456263423,-0.00043541364721022546,-2.5612567696953192e-05,6.098637220230962e-19,1.7075044524972327e-05,4.4048478334603275e-22,5.0395097787259147e-05,-6.958858528376655e-20,-6.0474117162812036e-06,1.8112210033163918e-20,4.4048478334603275e-22,1.1857670045856139e-07,4.0,53.0,0.07713931798934937,-0.03616352379322052,-0.00394511129707098,0.004716981202363968,0.0006289308075793087,4.764627374242991e-05,-0.03616352379322052,0.05712788179516792,0.0006289308075793087,-0.014150943607091904,-0.0004192872147541493,2.9344134002620916e-19,-0.00394511129707098,0.0006289308075793087,0.0003479256120044738,3.496552006265752e-18,-2.4189646865124814e-05,-5.605444130196702e-06,0.004716981202363968,-0.014150943607091904,3.496552006265752e-18,0.004716981202363968,2.1006417091906648e-19,-6.911053951319626e-20,0.0006289308075793087,-0.0004192872147541493,-2.4189646865124814e-05,2.1006417091906648e-19,1.612643063708674e-05,-2.50245177608788e-21,4.764627374242991e-05,2.9344134002620916e-19,-5.605444130196702e-06,-6.911053951319626e-20,-2.50245177608788e-21,1.0779699977092605e-07,4.0,54.0,0.07578042149543762,-0.03550504893064499,-0.0038041125517338514,0.004629629664123058,0.000606060610152781,4.5093795051798224e-05,-0.03550504893064499,0.056077439337968826,0.000606060610152781,-0.013888888992369175,-0.0004040404164697975,-4.4094533069235585e-20,-0.0038041125517338514,0.000606060610152781,0.00032912971801124513,-6.776263578034403e-20,-2.2870211978442967e-05,-5.203130058362149e-06,0.004629629664123058,-0.013888888992369175,-6.776263578034403e-20,0.004629629664123058,-1.5585406229479126e-19,6.5938706568632436e-21,0.000606060610152781,-0.0004040404164697975,-2.2870211978442967e-05,-1.5585406229479126e-19,1.5246807379298843e-05,6.942532333764138e-22,4.5093795051798224e-05,-4.4094533069235585e-20,-5.203130058362149e-06,6.5938706568632436e-21,6.942532333764138e-22,9.817226498398668e-08,4.0,55.0,0.07446856051683426,-0.03487012907862663,-0.003670539939776063,0.004545454401522875,0.0005844155675731599,4.2720435885712504e-05,-0.03487012907862663,0.055064935237169266,0.0005844155675731599,-0.013636363670229912,-0.00038961038808338344,-9.211341129722734e-20,-0.003670539939776063,0.0005844155675731599,0.00031166395638138056,-4.743384504624082e-19,-2.1645020751748234e-05,-4.8362758207076695e-06,0.004545454401522875,-0.013636363670229912,-4.743384504624082e-19,0.004545454401522875,-2.642742795433417e-19,1.9219971278847213e-20,0.0005844155675731599,-0.00038961038808338344,-2.1645020751748234e-05,-2.642742795433417e-19,1.4430014743993524e-05,9.835194648868797e-22,4.2720435885712504e-05,-9.211341129722734e-20,-4.8362758207076695e-06,1.9219971278847213e-20,9.835194648868797e-22,8.95606646622582e-08,4.0,56.0,0.07320132106542587,-0.034257519990205765,-0.003543881233781576,0.004464285913854837,0.0005639097653329372,4.051076030009426e-05,-0.034257519990205765,0.054088346660137177,0.0005639097653329372,-0.013392857275903225,-0.0003759398532565683,-2.304167430957806e-19,-0.003543881233781576,0.0005639097653329372,0.00029541263938881457,-2.8324781756183803e-18,-2.0505809516180307e-05,-4.501195689954329e-06,0.004464285913854837,-0.013392857275903225,-2.8324781756183803e-18,0.004464285913854837,-1.4907779871675686e-19,5.229473314181747e-20,0.0005639097653329372,-0.0003759398532565683,-2.0505809516180307e-05,-1.4907779871675686e-19,1.3670540283783339e-05,2.1119752710391847e-21,4.051076030009426e-05,-2.304167430957806e-19,-4.501195689954329e-06,5.229473314181747e-20,2.1119752710391847e-21,8.183992150634367e-08,4.0,57.0,0.07197647541761398,-0.033666063100099564,-0.0034236672800034285,0.004385964944958687,0.0005444646230898798,3.845088940579444e-05,-0.033666063100099564,0.053145796060562134,0.0005444646230898798,-0.01315789483487606,-0.00036297639599069953,1.4736249754496037e-19,-0.0034236672800034285,0.0005444646230898798,0.00028027204098179936,2.371692252312041e-18,-1.9445164070930332e-05,-4.194642770016799e-06,0.004385964944958687,-0.01315789483487606,2.371692252312041e-18,0.004385964944958687,-3.5914196963582334e-19,-3.098905502898621e-20,0.0005444646230898798,-0.00036297639599069953,-1.9445164070930332e-05,-3.5914196963582334e-19,1.2963442713953555e-05,-1.5999615790304061e-21,3.845088940579444e-05,1.4736249754496037e-19,-4.194642770016799e-06,-3.098905502898621e-20,-1.5999615790304061e-21,7.49043351788714e-08,4.0,58.0,0.07079193741083145,-0.033094681799411774,-0.003309468040242791,0.004310344811528921,0.0005260081961750984,3.652834493550472e-05,-0.033094681799411774,0.05223553627729416,0.0005260081961750984,-0.01293103490024805,-0.0003506721113808453,-7.728846871713743e-21,-0.003309468040242791,0.0005260081961750984,0.0002661488251760602,-1.8973538018496328e-19,-1.8456426914781332e-05,-3.913751243089791e-06,0.004310344811528921,-0.01293103490024805,-1.8973538018496328e-19,0.004310344811528921,2.846030702774449e-19,-3.961800930868333e-21,0.0005260081961750984,-0.0003506721113808453,-1.8456426914781332e-05,2.846030702774449e-19,1.2304284609854221e-05,5.571096766513195e-22,3.652834493550472e-05,-7.728846871713743e-21,-3.913751243089791e-06,-3.961800930868333e-21,5.571096766513195e-22,6.866230251034722e-08,4.0,59.0,0.06964573264122009,-0.03254237398505211,-0.0032008890993893147,0.0042372881434857845,0.0005084745935164392,3.4731870982795954e-05,-0.03254237398505211,0.05135593190789223,0.0005084745935164392,-0.012711863964796066,-0.000338983052643016,-2.6136640687926823e-20,-0.0032008890993893147,0.0005084745935164392,0.00025295894010923803,-2.439454888092385e-19,-1.7533606296638027e-05,-3.655986347439466e-06,0.0042372881434857845,-0.012711863964796066,-2.439454888092385e-19,0.0042372881434857845,-9.486769009248164e-20,4.085082749984628e-21,0.0005084745935164392,-0.000338983052643016,-1.7533606296638027e-05,-9.486769009248164e-20,1.168907056126045e-05,5.271202395042417e-22,3.4731870982795954e-05,-2.6136640687926823e-20,-3.655986347439466e-06,4.085082749984628e-21,5.271202395042417e-22,6.303424981979333e-08,4.0,60.0,0.06853605061769485,-0.03200819715857506,-0.0030975674744695425,0.004166666883975267,0.0004918032791465521,3.3051295758923516e-05,-0.03200819715857506,0.050505463033914566,0.0004918032791465521,-0.012500000186264515,-0.00032786885276436806,3.2553279012821344e-21,-0.0030975674744695425,0.0004918032791465521,0.00024062657030299306,-2.710505431213761e-20,-1.667129799898248e-05,-3.4190995847893646e-06,0.004166666883975267,-0.012500000186264515,-2.710505431213761e-20,0.004166666883975267,-1.8634724839594607e-19,5.998225087126554e-21,0.0004918032791465521,-0.00032786885276436806,-1.667129799898248e-05,-1.8634724839594607e-19,1.111419805965852e-05,-6.192628283051071e-22,3.3051295758923516e-05,3.2553279012821344e-21,-3.4190995847893646e-06,5.998225087126554e-21,-6.192628283051071e-22,5.79508387943406e-08,4.0,61.0,0.06746115535497665,-0.03149127587676048,-0.0029991690535098314,0.004098360426723957,0.0004759386647492647,3.1477426091441885e-05,-0.03149127587676048,0.04968270659446716,0.0004759386647492647,-0.012295082211494446,-0.00031729243346489966,3.027758922931111e-20,-0.0029991690535098314,0.0004759386647492647,0.00022908308892510831,3.1170812458958252e-19,-1.5864621673244983e-05,-3.201093932148069e-06,0.004098360426723957,-0.012295082211494446,3.1170812458958252e-19,0.004098360426723957,-1.6940658945086007e-20,-2.2404475677198938e-21,0.0004759386647492647,-0.00031729243346489966,-1.5864621673244983e-05,-1.6940658945086007e-20,1.057641475199489e-05,-5.377135433669798e-22,3.1477426091441885e-05,3.027758922931111e-20,-3.201093932148069e-06,-2.2404475677198938e-21,-5.377135433669798e-22,5.3351566720039045e-08,4.0,62.0,0.06641945242881775,-0.030990783125162125,-0.002905386034399271,0.004032257944345474,0.0004608294984791428,3.00019200949464e-05,-0.030990783125162125,0.04888632893562317,0.0004608294984791428,-0.012096773833036423,-0.00030721965595148504,5.783945403473113e-20,-0.002905386034399271,0.0004608294984791428,0.0002182664320571348,1.328147661294743e-18,-1.5109163541637827e-05,-3.00019200949464e-06,0.004032257944345474,-0.012096773833036423,1.328147661294743e-18,0.004032257944345474,-1.2197274440461925e-19,-1.6444378042535466e-20,0.0004608294984791428,-0.00030721965595148504,-1.5109163541637827e-05,-1.2197274440461925e-19,1.0072775694425218e-05,-1.8817042484502747e-22,3.00019200949464e-05,5.783945403473113e-20,-3.00019200949464e-06,-1.6444378042535466e-20,-1.8817042484502747e-22,4.918347684679247e-08,4.0,63.0,0.06540941447019577,-0.0305059514939785,-0.00281593413092196,0.003968254197388887,0.00044642857392318547,2.861721623048652e-05,-0.0305059514939785,0.0481150783598423,0.00044642857392318547,-0.011904762126505375,-0.00029761905898340046,-6.213711614369013e-20,-0.00281593413092196,0.00044642857392318547,0.0002081202546833083,-2.019326546254252e-18,-1.4400921827473212e-05,-2.814808112816536e-06,0.003968254197388887,-0.011904762126505375,-2.019326546254252e-18,0.003968254197388887,5.590417451878382e-19,1.6023113697372963e-20,0.00044642857392318547,-0.00029761905898340046,-1.4400921827473212e-05,5.590417451878382e-19,9.600614248483907e-06,3.341965932282338e-22,2.861721623048652e-05,-6.213711614369013e-20,-2.814808112816536e-06,1.6023113697372963e-20,3.341965932282338e-22,4.540013165410528e-08,4.0,64.0,0.0644296333193779,-0.03003605827689171,-0.0027305507101118565,0.00390625,0.0004326922935433686,2.731643326114863e-05,-0.03003605827689171,0.04736778885126114,0.0004326922935433686,-0.01171875,-0.0002884615387301892,-7.514760089164089e-20,-0.0027305507101118565,0.0004326922935433686,0.0001985934068216011,-1.0164395367051604e-18,-1.3736264008912258e-05,-2.643525931489421e-06,0.00390625,-0.01171875,-1.0164395367051604e-18,0.00390625,1.6940658945086007e-20,1.6188249320676664e-20,0.0004326922935433686,-0.0002884615387301892,-1.3736264008912258e-05,1.6940658945086007e-20,9.157509339274839e-06,6.65787092948205e-22,2.731643326114863e-05,-7.514760089164089e-20,-2.643525931489421e-06,1.6188249320676664e-20,6.65787092948205e-22,4.196072822537644e-08,5.0,3.0,0.6285714507102966,-0.3571428656578064,-0.5,0.0476190485060215,0.10000000149011612,0.10000000149011612,-0.3571428656578064,0.4642857015132904,0.10000000149011612,-0.095238097012043,-0.05000000074505806,-1.9984013913857226e-16,-0.5,0.10000000149011612,1.5,-7.6127900080203e-17,-0.10000000149011612,-0.6000000238418579,0.0476190485060215,-0.095238097012043,-7.6127900080203e-17,0.02380952425301075,-1.734723475976807e-18,3.9798673516078305e-17,0.10000000149011612,-0.05000000074505806,-0.10000000149011612,-1.734723475976807e-18,0.05000000074505806,-7.105427178102809e-19,0.10000000149011612,-1.9984013913857226e-16,-0.6000000238418579,3.9798673516078305e-17,-7.105427178102809e-19,0.30000001192092896,5.0,4.0,0.5414285659790039,-0.28285714983940125,-0.33000001311302185,0.0357142873108387,0.05999999865889549,0.05000000074505806,-0.28285714983940125,0.3557142913341522,0.05999999865889549,-0.0714285746216774,-0.029999999329447746,-0.0,-0.33000001311302185,0.05999999865889549,0.5699999928474426,1.1102229998097382e-18,-0.03999999910593033,-0.15000000596046448,0.0357142873108387,-0.0714285746216774,1.1102229998097382e-18,0.01785714365541935,-5.551114999048691e-19,-0.0,0.05999999865889549,-0.029999999329447746,-0.03999999910593033,-5.551114999048691e-19,0.019999999552965164,-0.0,0.05000000074505806,-0.0,-0.15000000596046448,-0.0,-0.0,0.05000000074505806,5.0,5.0,0.47428572177886963,-0.23428571224212646,-0.23428571224212646,0.02857142873108387,0.03999999910593033,0.02857142873108387,-0.23428571224212646,0.28857141733169556,0.03999999910593033,-0.05714285746216774,-0.019999999552965164,0.0,-0.23428571224212646,0.03999999910593033,0.28857141733169556,-2.002366448564771e-18,-0.019999999552965164,-0.05714285746216774,0.02857142873108387,-0.05714285746216774,-2.002366448564771e-18,0.014285714365541935,5.724587698198132e-19,1.7966779079897452e-19,0.03999999910593033,-0.019999999552965164,-0.019999999552965164,5.724587698198132e-19,0.009999999776482582,-4.336808689942018e-19,0.02857142873108387,0.0,-0.05714285746216774,1.7966779079897452e-19,-4.336808689942018e-19,0.014285714365541935,5.0,6.0,0.4214285612106323,-0.20000000298023224,-0.17499999701976776,0.02380952425301075,0.02857142873108387,0.01785714365541935,-0.20000000298023224,0.24285714328289032,0.02857142873108387,-0.0476190485060215,-0.014285714365541935,0.0,-0.17499999701976776,0.02857142873108387,0.16821429133415222,-1.1672211206886234e-18,-0.011428571306169033,-0.02678571455180645,0.02380952425301075,-0.0476190485060215,-1.1672211206886234e-18,0.011904762126505375,5.129825192232957e-19,-3.097720631294624e-20,0.02857142873108387,-0.014285714365541935,-0.011428571306169033,5.129825192232957e-19,0.0057142856530845165,-2.168404344971009e-19,0.01785714365541935,0.0,-0.02678571455180645,-3.097720631294624e-20,-2.168404344971009e-19,0.0053571430034935474,5.0,7.0,0.378911554813385,-0.1744897961616516,-0.13571429252624512,0.020408162847161293,0.02142857201397419,0.011904762126505375,-0.1744897961616516,0.20969387888908386,0.02142857201397419,-0.040816325694322586,-0.010714286006987095,4.336808689942018e-19,-0.13571429252624512,0.02142857201397419,0.1071428582072258,-0.0,-0.0071428571827709675,-0.014285714365541935,0.020408162847161293,-0.040816325694322586,-0.0,0.010204081423580647,0.0,0.0,0.02142857201397419,-0.010714286006987095,-0.0071428571827709675,0.0,0.0035714285913854837,0.0,0.011904762126505375,4.336808689942018e-19,-0.014285714365541935,0.0,0.0,0.0023809524718672037,5.0,8.0,0.3440476059913635,-0.1547619104385376,-0.10833333432674408,0.01785714365541935,0.01666666753590107,0.008333333767950535,-0.1547619104385376,0.184523805975914,0.01666666753590107,-0.0357142873108387,-0.008333333767950535,-1.504127338085679e-18,-0.10833333432674408,0.01666666753590107,0.07261905074119568,1.734723475976807e-17,-0.004761904943734407,-0.008333333767950535,0.01785714365541935,-0.0357142873108387,1.734723475976807e-17,0.008928571827709675,-4.0115480381963664e-18,-3.835599535774766e-19,0.01666666753590107,-0.008333333767950535,-0.004761904943734407,-4.0115480381963664e-18,0.0023809524718672037,4.544395351528911e-19,0.008333333767950535,-1.504127338085679e-18,-0.008333333767950535,-3.835599535774766e-19,4.544395351528911e-19,0.0011904762359336019,5.0,9.0,0.31497836112976074,-0.13904762268066406,-0.08848484605550766,0.01587301678955555,0.013333333656191826,0.0060606058686971664,-0.13904762268066406,0.16476190090179443,0.013333333656191826,-0.0317460335791111,-0.006666666828095913,3.4394800595171962e-18,-0.08848484605550766,0.013333333656191826,0.051558442413806915,8.673617379884035e-18,-0.0033333334140479565,-0.005194805096834898,0.01587301678955555,-0.0317460335791111,8.673617379884035e-18,0.007936508394777775,-1.0842021724855044e-18,-8.335106121905897e-19,0.013333333656191826,-0.006666666828095913,-0.0033333334140479565,-1.0842021724855044e-18,0.0016666667070239782,9.997916221487357e-20,0.0060606058686971664,3.4394800595171962e-18,-0.005194805096834898,-8.335106121905897e-19,9.997916221487357e-20,0.0006493506371043622,5.0,10.0,0.2903895974159241,-0.126233771443367,-0.07363636046648026,0.014285714365541935,0.010909090749919415,0.004545454401522875,-0.126233771443367,0.14883117377758026,0.010909090749919415,-0.02857142873108387,-0.005454545374959707,-8.453610498002082e-18,-0.07363636046648026,0.010909090749919415,0.03795454651117325,-1.951563910473908e-17,-0.002424242440611124,-0.003409090917557478,0.014285714365541935,-0.02857142873108387,-1.951563910473908e-17,0.0071428571827709675,1.734723475976807e-18,1.69396404789568e-18,0.010909090749919415,-0.005454545374959707,-0.002424242440611124,1.734723475976807e-18,0.001212121220305562,2.6348194391409247e-19,0.004545454401522875,-8.453610498002082e-18,-0.003409090917557478,1.69396404789568e-18,2.6348194391409247e-19,0.0003787878667935729,5.0,11.0,0.2693306803703308,-0.11558441817760468,-0.06223776191473007,0.012987012974917889,0.00909090880304575,0.003496503457427025,-0.11558441817760468,0.13571429252624512,0.00909090880304575,-0.025974025949835777,-0.004545454401522875,1.0213634120194436e-17,-0.06223776191473007,0.00909090880304575,0.028764568269252777,1.474514954580286e-17,-0.001818181830458343,-0.0023310023825615644,0.012987012974917889,-0.025974025949835777,1.474514954580286e-17,0.006493506487458944,2.8189256484623115e-18,-1.911967394936454e-18,0.00909090880304575,-0.004545454401522875,-0.001818181830458343,2.8189256484623115e-18,0.0009090909152291715,-3.6663255537158557e-19,0.003496503457427025,1.0213634120194436e-17,-0.0023310023825615644,-1.911967394936454e-18,-3.6663255537158557e-19,0.00023310023243539035,5.0,12.0,0.2510989010334015,-0.10659340769052505,-0.05329670384526253,0.011904762126505375,0.007692307699471712,0.002747252816334367,-0.10659340769052505,0.12472527474164963,0.007692307699471712,-0.02380952425301075,-0.003846153849735856,3.898690410551775e-18,-0.05329670384526253,0.007692307699471712,0.022327672690153122,9.107298248878237e-18,-0.001398601452820003,-0.0016483516665175557,0.011904762126505375,-0.02380952425301075,9.107298248878237e-18,0.0059523810632526875,-3.7947076036992655e-19,-6.47880322590574e-19,0.007692307699471712,-0.003846153849735856,-0.001398601452820003,-3.7947076036992655e-19,0.0006993007264100015,-1.5142448426517566e-19,0.002747252816334367,3.898690410551775e-18,-0.0016483516665175557,-6.47880322590574e-19,-1.5142448426517566e-19,0.00014985015150159597,5.0,13.0,0.2351648360490799,-0.09890110045671463,-0.04615384712815285,0.010989011265337467,0.006593406666070223,0.002197802299633622,-0.09890110045671463,0.11538461595773697,0.006593406666070223,-0.021978022530674934,-0.0032967033330351114,-1.5103603507964193e-18,-0.04615384712815285,0.006593406666070223,0.01768231764435768,-1.2576745200831851e-17,-0.001098901149816811,-0.0011988012120127678,0.010989011265337467,-0.021978022530674934,-1.2576745200831851e-17,0.005494505632668734,4.065758146820642e-18,2.909853115405685e-19,0.006593406666070223,-0.0032967033330351114,-0.001098901149816811,4.065758146820642e-18,0.0005494505749084055,7.653830314325707e-21,0.002197802299633622,-1.5103603507964193e-18,-0.0011988012120127678,2.909853115405685e-19,7.653830314325707e-21,9.990009857574478e-05,5.0,14.0,0.22112244367599487,-0.09224490076303482,-0.04035714268684387,0.010204081423580647,0.0057142856530845165,0.0017857142956927419,-0.09224490076303482,0.10734693706035614,0.0057142856530845165,-0.020408162847161293,-0.0028571428265422583,9.53749069043415e-19,-0.04035714268684387,0.0057142856530845165,0.01424450520426035,-3.903127820947816e-18,-0.0008791208965703845,-0.0008928571478463709,0.010204081423580647,-0.020408162847161293,-3.903127820947816e-18,0.005102040711790323,2.439454888092385e-18,-1.0869003322460758e-19,0.0057142856530845165,-0.0028571428265422583,-0.0008791208965703845,2.439454888092385e-18,0.00043956044828519225,-5.947244427323005e-20,0.0017857142956927419,9.53749069043415e-19,-0.0008928571478463709,-1.0869003322460758e-19,-5.947244427323005e-20,6.868132186355069e-05,5.0,15.0,0.2086554616689682,-0.08642856776714325,-0.035588234663009644,0.009523809887468815,0.004999999888241291,0.00147058826405555,-0.08642856776714325,0.10035714507102966,0.004999999888241291,-0.01904761977493763,-0.0024999999441206455,-6.224005230857382e-19,-0.035588234663009644,0.004999999888241291,0.0116451196372509,2.8189256484623115e-18,-0.0007142857066355646,-0.0006787330494262278,0.009523809887468815,-0.01904761977493763,2.8189256484623115e-18,0.004761904943734407,-1.7618285302889447e-18,6.236981238975896e-20,0.004999999888241291,-0.0024999999441206455,-0.0007142857066355646,-1.7618285302889447e-18,0.0003571428533177823,3.7033128055591936e-20,0.00147058826405555,-6.224005230857382e-19,-0.0006787330494262278,6.236981238975896e-20,3.7033128055591936e-20,4.848093158216216e-05,5.0,16.0,0.19751401245594025,-0.08130252361297607,-0.031617648899555206,0.008928571827709675,0.004411764908581972,0.0012254902394488454,-0.08130252361297607,0.09422268718481064,0.004411764908581972,-0.01785714365541935,-0.002205882454290986,1.4294539184801842e-18,-0.031617648899555206,0.004411764908581972,0.009642857126891613,-2.168404344971009e-18,-0.0005882352706976235,-0.0005252101109363139,0.008928571827709675,-0.01785714365541935,-2.168404344971009e-18,0.004464285913854837,2.7647155398380363e-18,-2.3432491299615222e-19,0.004411764908581972,-0.002205882454290986,-0.0005882352706976235,2.7647155398380363e-18,0.00029411763534881175,-4.3678225345399864e-20,0.0012254902394488454,1.4294539184801842e-18,-0.0005252101109363139,-2.3432491299615222e-19,-4.3678225345399864e-20,3.501400715322234e-05,5.0,17.0,0.18749815225601196,-0.07675070315599442,-0.02827657386660576,0.008403361774981022,0.003921568859368563,0.0010319917928427458,-0.07675070315599442,0.08879552036523819,0.003921568859368563,-0.016806723549962044,-0.0019607844296842813,2.9427885005666144e-18,-0.02827657386660576,0.003921568859368563,0.008075335063040257,6.938893903907228e-18,-0.0004901961074210703,-0.0004127967113163322,0.008403361774981022,-0.016806723549962044,6.938893903907228e-18,0.004201680887490511,1.1655173354219173e-18,-5.359689378679552e-19,0.003921568859368563,-0.0019607844296842813,-0.0004901961074210703,1.1655173354219173e-18,0.00024509805371053517,-7.195997639063683e-20,0.0010319917928427458,2.9427885005666144e-18,-0.0004127967113163322,-5.359689378679552e-19,-7.195997639063683e-20,2.5799794457270764e-05,5.0,18.0,0.17844611406326294,-0.07268170267343521,-0.025438595563173294,0.007936508394777775,0.003508772002533078,0.0008771930006332695,-0.07268170267343521,0.0839598998427391,0.003508772002533078,-0.01587301678955555,-0.001754386001266539,-3.632175712319334e-18,-0.025438595563173294,0.003508772002533078,0.0068304953165352345,-1.1872013788716274e-17,-0.0004127967113163322,-0.0003289473825134337,0.007936508394777775,-0.01587301678955555,-1.1872013788716274e-17,0.003968254197388887,-6.505213034913027e-19,7.13505523668081e-19,0.003508772002533078,-0.001754386001266539,-0.0004127967113163322,-6.505213034913027e-19,0.0002063983556581661,6.225880862896346e-20,0.0008771930006332695,-3.632175712319334e-18,-0.0003289473825134337,7.13505523668081e-19,6.225880862896346e-20,1.9349845388205722e-05,5.0,19.0,0.17022556066513062,-0.06902255862951279,-0.02300751954317093,0.007518797181546688,0.0031578948255628347,0.0007518797065131366,-0.06902255862951279,0.07962405681610107,0.0031578948255628347,-0.015037594363093376,-0.0015789474127814174,-1.4120689601485806e-18,-0.02300751954317093,0.0031578948255628347,0.005829279311001301,-6.396792817664476e-18,-0.0003508772060740739,-0.00026536930818110704,0.007518797181546688,-0.015037594363093376,-6.396792817664476e-18,0.003759398590773344,5.421010862427522e-19,2.5469741505575003e-19,0.0031578948255628347,-0.0015789474127814174,-0.0003508772060740739,5.421010862427522e-19,0.00017543860303703696,2.837895769190902e-20,0.0007518797065131366,-1.4120689601485806e-18,-0.00026536930818110704,2.5469741505575003e-19,2.837895769190902e-20,1.4742739040229935e-05,5.0,20.0,0.1627272665500641,-0.0657142847776413,-0.02090909145772457,0.0071428571827709675,0.0028571428265422583,0.0006493506371043622,-0.0657142847776413,0.07571428269147873,0.0028571428265422583,-0.014285714365541935,-0.0014285714132711291,-3.5825457027467646e-18,-0.02090909145772457,0.0028571428265422583,0.005014809779822826,-1.1600963245594897e-17,-0.00030075188260525465,-0.00021645022206939757,0.0071428571827709675,-0.014285714365541935,-1.1600963245594897e-17,0.0035714285913854837,2.710505431213761e-20,5.96708810247724e-19,0.0028571428265422583,-0.0014285714132711291,-0.00030075188260525465,2.710505431213761e-20,0.00015037594130262733,9.279584176493212e-20,0.0006493506371043622,-3.5825457027467646e-18,-0.00021645022206939757,5.96708810247724e-19,9.279584176493212e-20,1.1392116903152782e-05,5.0,21.0,0.1558602899312973,-0.06270872056484222,-0.019085261970758438,0.006802720949053764,0.002597402548417449,0.0005646527279168367,-0.06270872056484222,0.072170689702034,0.002597402548417449,-0.013605441898107529,-0.0012987012742087245,-1.859184586459139e-18,-0.019085261970758438,0.002597402548417449,0.004345448687672615,-7.209944447028604e-18,-0.0002597402490209788,-0.00017831138393376023,0.006802720949053764,-0.013605441898107529,-7.209944447028604e-18,0.003401360474526882,2.981555974335137e-19,3.363503261760259e-19,0.002597402548417449,-0.0012987012742087245,-0.0002597402490209788,2.981555974335137e-19,0.0001298701245104894,4.052698709782534e-20,0.0005646527279168367,-1.859184586459139e-18,-0.00017831138393376023,3.363503261760259e-19,4.052698709782534e-20,8.915569196688011e-06,5.0,22.0,0.14954827725887299,-0.05996612086892128,-0.017490118741989136,0.006493506487458944,0.0023715414572507143,0.0004940711660310626,-0.05996612086892128,0.06894409656524658,0.0023715414572507143,-0.012987012974917889,-0.0011857707286253572,7.608591838936924e-19,-0.017490118741989136,0.0023715414572507143,0.0037902314215898514,1.5178830414797062e-18,-0.0002258610911667347,-0.00014822134107816964,0.006493506487458944,-0.012987012974917889,1.5178830414797062e-18,0.003246753243729472,3.6591823321385775e-19,-1.18891457848768e-19,0.0023715414572507143,-0.0011857707286253572,-0.0002258610911667347,3.6591823321385775e-19,0.00011293054558336735,-1.9230236719495967e-20,0.0004940711660310626,7.608591838936924e-19,-0.00014822134107816964,-1.18891457848768e-19,-1.9230236719495967e-20,7.058159098960459e-06,5.0,23.0,0.14372670650482178,-0.05745341628789902,-0.01608695648610592,0.006211180239915848,0.0021739129442721605,0.00043478261795826256,-0.05745341628789902,0.0659937858581543,0.0021739129442721605,-0.012422360479831696,-0.0010869564721360803,-2.5771548691822632e-20,-0.01608695648610592,0.0021739129442721605,0.003325804602354765,-3.577867169202165e-18,-0.00019762845477089286,-0.00012422360305208713,0.006211180239915848,-0.012422360479831696,-3.577867169202165e-18,0.003105590119957924,1.1384122811097797e-18,2.5562640350713244e-20,0.0021739129442721605,-0.0010869564721360803,-0.00019762845477089286,1.1384122811097797e-18,9.881422738544643e-05,-2.446037290907875e-21,0.00043478261795826256,-2.5771548691822632e-20,-0.00012422360305208713,2.5562640350713244e-20,-2.446037290907875e-21,5.6465273701178376e-06,5.0,24.0,0.13834065198898315,-0.055142857134342194,-0.014846153557300568,0.0059523810632526875,0.0020000000949949026,0.0003846153849735856,-0.055142857134342194,0.0632857158780098,0.0020000000949949026,-0.011904762126505375,-0.0010000000474974513,6.878884638803497e-19,-0.014846153557300568,0.0020000000949949026,0.0029343266505748034,2.439454888092385e-18,-0.0001739130384521559,-0.00010489510168554261,0.0059523810632526875,-0.011904762126505375,2.439454888092385e-18,0.0029761905316263437,2.0328790734103208e-19,-1.2032491015153412e-19,0.0020000000949949026,-0.0010000000474974513,-0.0001739130384521559,2.0328790734103208e-19,8.695651922607794e-05,-1.2404755087221092e-20,0.0003846153849735856,6.878884638803497e-19,-0.00010489510168554261,-1.2032491015153412e-19,-1.2404755087221092e-20,4.56065663456684e-06,5.0,25.0,0.13334310054779053,-0.05301098898053169,-0.013743589632213116,0.0057142856530845165,0.0018461538711562753,0.0003418803389649838,-0.05301098898053169,0.06079120934009552,0.0018461538711562753,-0.011428571306169033,-0.0009230769355781376,4.572672520769037e-19,-0.013743589632213116,0.0018461538711562753,0.0026020067743957043,3.63207727782644e-18,-0.0001538461510790512,-8.918617822928354e-05,0.0057142856530845165,-0.011428571306169033,3.63207727782644e-18,0.0028571428265422583,-5.149960319306146e-19,-9.244460665967533e-20,0.0018461538711562753,-0.0009230769355781376,-0.0001538461510790512,-5.149960319306146e-19,7.69230755395256e-05,-4.384916334989494e-21,0.0003418803389649838,4.572672520769037e-19,-8.918617822928354e-05,-9.244460665967533e-20,-4.384916334989494e-21,3.716090759553481e-06,5.0,26.0,0.12869353592395782,-0.051037851721048355,-0.012759462930262089,0.005494505632668734,0.0017094017239287496,0.0003052503161597997,-0.051037851721048355,0.058485958725214005,0.0017094017239287496,-0.010989011265337467,-0.0008547008619643748,9.228038287375e-19,-0.012759462930262089,0.0017094017239287496,0.002318070735782385,3.903127820947816e-18,-0.00013675213267561048,-7.631257903994992e-05,0.005494505632668734,-0.010989011265337467,3.903127820947816e-18,0.002747252816334367,9.486769009248164e-20,-1.5642462304699678e-19,0.0017094017239287496,-0.0008547008619643748,-0.00013675213267561048,9.486769009248164e-20,6.837606633780524e-05,-1.892190676175396e-20,0.0003052503161597997,9.228038287375e-19,-7.631257903994992e-05,-1.5642462304699678e-19,-1.892190676175396e-20,3.0525029615091626e-06,5.0,27.0,0.12435686588287354,-0.04920634999871254,-0.011877394281327724,0.005291005130857229,0.0015873016091063619,0.0002736726892180741,-0.04920634999871254,0.05634920671582222,0.0015873016091063619,-0.010582010261714458,-0.0007936508045531809,3.754650607054561e-19,-0.011877394281327724,0.0015873016091063619,0.0020740178879350424,1.4907779871675686e-18,-0.00012210012937430292,-6.568144453922287e-05,0.005291005130857229,-0.010582010261714458,1.4907779871675686e-18,0.0026455025654286146,4.607859233063394e-19,-8.545142142834743e-20,0.0015873016091063619,-0.0007936508045531809,-0.00012210012937430292,4.607859233063394e-19,6.105006468715146e-05,-1.2832532873862276e-21,0.0002736726892180741,3.754650607054561e-19,-6.568144453922287e-05,-8.545142142834743e-20,-1.2832532873862276e-21,2.5262095277867047e-06,5.0,28.0,0.12030260264873505,-0.047501757740974426,-0.011083743534982204,0.005102040711790323,0.0014778325567021966,0.00024630542611703277,-0.047501757740974426,0.05436312407255173,0.0014778325567021966,-0.010204081423580647,-0.0007389162783510983,2.248279748352485e-19,-0.011083743534982204,0.0014778325567021966,0.0018630794947966933,9.75781955236954e-19,-0.00010946907423203811,-5.683971176040359e-05,0.005102040711790323,-0.010204081423580647,9.75781955236954e-19,0.0025510203558951616,1.3552527156068805e-19,-5.0702601101934694e-20,0.0014778325567021966,-0.0007389162783510983,-0.00010946907423203811,1.3552527156068805e-19,5.4734537116019055e-05,-1.2881201426528833e-21,0.00024630542611703277,2.248279748352485e-19,-5.683971176040359e-05,-5.0702601101934694e-20,-1.2881201426528833e-21,2.1051744170108577e-06,5.0,29.0,0.11650405079126358,-0.04591133072972298,-0.010367074981331825,0.004926108289510012,0.0013793103862553835,0.0002224694035248831,-0.04591133072972298,0.052512314170598984,0.0013793103862553835,-0.009852216579020023,-0.0006896551931276917,-1.0504978712464188e-18,-0.010367074981331825,0.0013793103862553835,0.0016798205906525254,-4.9060148304969076e-18,-9.85221704468131e-05,-4.9437647248851135e-05,0.004926108289510012,-0.009852216579020023,-4.9060148304969076e-18,0.002463054144755006,-1.7618285302889447e-19,1.794881633590798e-19,0.0013793103862553835,-0.0006896551931276917,-9.85221704468131e-05,-1.7618285302889447e-19,4.926108522340655e-05,1.693220134644008e-20,0.0002224694035248831,-1.0504978712464188e-18,-4.9437647248851135e-05,1.794881633590798e-19,1.693220134644008e-20,1.7656302588875405e-06,5.0,30.0,0.11293778568506241,-0.044423963874578476,-0.00971774198114872,0.004761904943734407,0.0012903226306661963,0.00020161290012765676,-0.044423963874578476,0.05078341066837311,0.0012903226306661963,-0.009523809887468815,-0.0006451613153330982,-2.6037851735215837e-19,-0.00971774198114872,0.0012903226306661963,0.0015198434703052044,-2.1141942363467336e-18,-8.898776286514476e-05,-4.320276639191434e-05,0.004761904943734407,-0.009523809887468815,-2.1141942363467336e-18,0.0023809524718672037,2.371692252312041e-19,5.3023821765949075e-20,0.0012903226306661963,-0.0006451613153330982,-8.898776286514476e-05,2.371692252312041e-19,4.449388143257238e-05,1.5023638592977563e-21,0.00020161290012765676,-2.6037851735215837e-19,-4.320276639191434e-05,5.3023821765949075e-20,1.5023638592977563e-21,1.489750502514653e-06,5.0,31.0,0.10958316177129745,-0.04302995279431343,-0.009127565659582615,0.004608294926583767,0.001209677429869771,0.0001832844573073089,-0.04302995279431343,0.04916474595665932,0.001209677429869771,-0.009216589853167534,-0.0006048387149348855,3.844057716032062e-19,-0.009127565659582615,0.001209677429869771,0.0013795631239190698,1.8973538018496328e-18,-8.064516441663727e-05,-3.792092320509255e-05,0.004608294926583767,-0.009216589853167534,1.8973538018496328e-18,0.0023041474632918835,-4.0657581468206416e-20,-6.315849032973705e-20,0.001209677429869771,-0.0006048387149348855,-8.064516441663727e-05,-4.0657581468206416e-20,4.0322582208318636e-05,-6.397755342473584e-21,0.0001832844573073089,3.844057716032062e-19,-3.792092320509255e-05,-6.315849032973705e-20,-6.397755342473584e-21,1.264030743186595e-06,5.0,32.0,0.10642188787460327,-0.04172077775001526,-0.00858957227319479,0.004464285913854837,0.0011363636003807187,0.00016711230273358524,-0.04172077775001526,0.04764610528945923,0.0011363636003807187,-0.008928571827709675,-0.0005681818001903594,2.855707164977671e-19,-0.00858957227319479,0.0011363636003807187,0.001256037619896233,4.87890977618477e-19,-7.331378583330661e-05,-3.342246054671705e-05,0.004464285913854837,-0.008928571827709675,4.87890977618477e-19,0.0022321429569274187,3.5914196963582334e-19,-4.167757917401526e-20,0.0011363636003807187,-0.0005681818001903594,-7.331378583330661e-05,3.5914196963582334e-19,3.6656892916653305e-05,-5.783180342185858e-21,0.00016711230273358524,2.855707164977671e-19,-3.342246054671705e-05,-4.167757917401526e-20,-5.783180342185858e-21,1.0781438959384104e-06,5.0,33.0,0.10343773663043976,-0.040488921105861664,-0.008097784593701363,0.0043290043249726295,0.0010695187374949455,0.00015278838691301644,-0.040488921105861664,0.04621848836541176,0.0010695187374949455,-0.008658008649945259,-0.0005347593687474728,-6.307743826193422e-19,-0.008097784593701363,0.0010695187374949455,0.0011468370212242007,-3.63207727782644e-18,-6.68449210934341e-05,-2.9571945560746826e-05,0.0043290043249726295,-0.008658008649945259,-3.63207727782644e-18,0.0021645021624863148,-8.131516293641283e-20,1.1433030640296819e-19,0.0010695187374949455,-0.0005347593687474728,-6.68449210934341e-05,-8.131516293641283e-20,3.342246054671705e-05,8.234745364472347e-21,0.00015278838691301644,-6.307743826193422e-19,-2.9571945560746826e-05,1.1433030640296819e-19,8.234745364472347e-21,9.241232987733383e-07,5.0,34.0,0.10061624646186829,-0.03932772949337959,-0.007647058926522732,0.004201680887490511,0.0010084033710882068,0.00014005602861288935,-0.03932772949337959,0.04487394914031029,0.0010084033710882068,-0.008403361774981022,-0.0005042016855441034,-4.553351132623446e-19,-0.007647058926522732,0.0010084033710882068,0.0010499426862224936,-2.520770051028798e-18,-6.111535185482353e-05,-2.626050445542205e-05,0.004201680887490511,-0.008403361774981022,-2.520770051028798e-18,0.0021008404437452555,-1.3552527156068805e-19,8.015947529840261e-20,0.0010084033710882068,-0.0005042016855441034,-6.111535185482353e-05,-1.3552527156068805e-19,3.0557675927411765e-05,6.175337057853802e-21,0.00014005602861288935,-4.553351132623446e-19,-2.626050445542205e-05,8.015947529840261e-20,6.175337057853802e-21,7.95772848505294e-07,5.0,35.0,0.097944475710392,-0.03823129087686539,-0.007232947275042534,0.004081632476300001,0.0009523809421807528,0.00012870013597421348,-0.03823129087686539,0.043605443090200424,0.0009523809421807528,-0.008163264952600002,-0.0004761904710903764,1.4757394558904424e-19,-0.007232947275042534,0.0009523809421807528,0.0009636680479161441,2.439454888092385e-19,-5.602241071755998e-05,-2.3400023565045558e-05,0.004081632476300001,-0.008163264952600002,2.439454888092385e-19,0.0020408162381500006,3.5914196963582334e-19,-2.9708182006319186e-20,0.0009523809421807528,-0.0004761904710903764,-5.602241071755998e-05,3.5914196963582334e-19,2.801120535877999e-05,-1.3982221029050786e-21,0.00012870013597421348,1.4757394558904424e-19,-2.3400023565045558e-05,-2.9708182006319186e-20,-1.3982221029050786e-21,6.882359571136476e-07,5.0,36.0,0.09541082382202148,-0.03719433769583702,-0.006851588375866413,0.003968254197388887,0.0009009009227156639,0.00011853959586005658,-0.03719433769583702,0.04240669310092926,0.0009009009227156639,-0.007936508394777775,-0.00045045046135783195,3.891235962269024e-19,-0.006851588375866413,0.0009009009227156639,0.0008865964482538402,1.5856456772600502e-18,-5.148005220689811e-05,-2.0918751033605076e-05,0.003968254197388887,-0.007936508394777775,1.5856456772600502e-18,0.0019841270986944437,3.8624702394796095e-19,-6.681175289212311e-20,0.0009009009227156639,-0.00045045046135783195,-5.148005220689811e-05,3.8624702394796095e-19,2.5740026103449054e-05,-5.114738435679884e-21,0.00011853959586005658,3.891235962269024e-19,-2.0918751033605076e-05,-6.681175289212311e-20,-5.114738435679884e-21,5.976785928396566e-07,5.0,37.0,0.09300485998392105,-0.03621215373277664,-0.0064996168948709965,0.0038610037881881,0.0008534850785508752,0.00010942116205114871,-0.03621215373277664,0.04127210006117821,0.0008534850785508752,-0.0077220075763762,-0.0004267425392754376,5.983977708868895e-20,-0.0064996168948709965,0.0008534850785508752,0.0008175324182957411,-1.0842021724855044e-19,-4.741583688883111e-05,-1.8757913494482636e-05,0.0038610037881881,-0.0077220075763762,-1.0842021724855044e-19,0.00193050189409405,2.303929616531697e-19,-1.0767536049399205e-20,0.0008534850785508752,-0.0004267425392754376,-4.741583688883111e-05,2.303929616531697e-19,2.3707918444415554e-05,-7.202429816509529e-22,0.00010942116205114871,5.983977708868895e-20,-1.8757913494482636e-05,-1.0767536049399205e-20,-7.202429816509529e-22,5.210531526245177e-07,5.0,38.0,0.09071717411279678,-0.035280510783195496,-0.006174088921397924,0.003759398590773344,0.0008097165846265852,0.00010121457307832316,-0.035280510783195496,0.04019664600491524,0.0008097165846265852,-0.007518797181546688,-0.0004048582923132926,-3.8616919142219854e-19,-0.006174088921397924,0.0008097165846265852,0.0007554619223810732,-2.0599841277224584e-18,-4.3768464820459485e-05,-1.686909672571346e-05,0.003759398590773344,-0.007518797181546688,-2.0599841277224584e-18,0.001879699295386672,-1.8973538018496328e-19,6.551852709023034e-20,0.0008097165846265852,-0.0004048582923132926,-4.3768464820459485e-05,-1.8973538018496328e-19,2.1884232410229743e-05,4.9366910400021125e-21,0.00010121457307832316,-3.8616919142219854e-19,-1.686909672571346e-05,6.551852709023034e-20,4.9366910400021125e-21,4.5592150854645297e-07,5.0,39.0,0.08853926509618759,-0.03439560532569885,-0.005872420035302639,0.0036630036775022745,0.0007692307699471712,9.380863048136234e-05,-0.03439560532569885,0.03917582333087921,0.0007692307699471712,-0.007326007355004549,-0.0003846153849735856,1.0818160149122304e-19,-0.005872420035302639,0.0007692307699471712,0.0006995215080678463,1.734723475976807e-18,-4.048582923132926e-05,-1.5212210200843401e-05,0.0036630036775022745,-0.007326007355004549,1.734723475976807e-18,0.0018315018387511373,-2.642742795433417e-19,-2.8880245298987496e-20,0.0007692307699471712,-0.0003846153849735856,-4.048582923132926e-05,-2.642742795433417e-19,2.024291461566463e-05,6.26572047421425e-22,9.380863048136234e-05,1.0818160149122304e-19,-1.5212210200843401e-05,-2.8880245298987496e-20,6.26572047421425e-22,4.003213120995497e-07,5.0,40.0,0.08646341413259506,-0.03355400636792183,-0.005592334549874067,0.0035714285913854837,0.0007317073177546263,8.710801193956286e-05,-0.03355400636792183,0.038205575197935104,0.0007317073177546263,-0.0071428571827709675,-0.00036585365887731314,5.002374237426552e-19,-0.005592334549874067,0.0007317073177546263,0.0006489723455160856,3.943785402416022e-18,-3.752345219254494e-05,-1.3753897292190231e-05,0.0035714285913854837,-0.0071428571827709675,3.943785402416022e-18,0.0017857142956927419,-1.8634724839594607e-19,-8.97172306213746e-20,0.0007317073177546263,-0.00036585365887731314,-3.752345219254494e-05,-1.8634724839594607e-19,1.876172609627247e-05,-5.324990541387888e-21,8.710801193956286e-05,5.002374237426552e-19,-1.3753897292190231e-05,-8.97172306213746e-20,-5.324990541387888e-21,3.526640171003237e-07,5.0,41.0,0.08448261767625809,-0.032752614468336105,-0.00533182080835104,0.003484320593997836,0.0006968640955165029,8.103071013465524e-05,-0.032752614468336105,0.03728222846984863,0.0006968640955165029,-0.006968641187995672,-0.00034843204775825143,3.5364536739010555e-20,-0.00533182080835104,0.0006968640955165029,0.0006031801458448172,2.168404344971009e-19,-3.484320404822938e-05,-1.2466262887755875e-05,0.003484320593997836,-0.006968641187995672,2.168404344971009e-19,0.001742160296998918,-3.7269449679189215e-20,-5.0166698732719e-21,0.0006968640955165029,-0.00034843204775825143,-3.484320404822938e-05,-3.7269449679189215e-20,1.742160202411469e-05,-6.857223274642855e-22,8.103071013465524e-05,3.5364536739010555e-20,-1.2466262887755875e-05,-5.0166698732719e-21,-6.857223274642855e-22,3.1165657787823875e-07,5.0,42.0,0.0825904980301857,-0.031988609582185745,-0.00508909672498703,0.003401360474526882,0.0006644517998211086,7.550588634330779e-05,-0.031988609582185745,0.036402467638254166,0.0006644517998211086,-0.006802720949053764,-0.0003322258999105543,7.992738651309613e-20,-0.00508909672498703,0.0006644517998211086,0.0005615980480797589,1.0842021724855044e-18,-3.2412284781457856e-05,-1.132588386099087e-05,0.003401360474526882,-0.006802720949053764,1.0842021724855044e-18,0.001700680237263441,-8.470329472543003e-20,-1.9988149033683348e-20,0.0006644517998211086,-0.0003322258999105543,-3.2412284781457856e-05,-8.470329472543003e-20,1.6206142390728928e-05,-4.4431328309125136e-23,7.550588634330779e-05,7.992738651309613e-20,-1.132588386099087e-05,-1.9988149033683348e-20,-4.4431328309125136e-23,2.7624105314316694e-07,5.0,43.0,0.0807812362909317,-0.0312594398856163,-0.004862579051405191,0.003322259057313204,0.0006342494743876159,7.047216058708727e-05,-0.0312594398856163,0.03556327521800995,0.0006342494743876159,-0.006644518114626408,-0.00031712473719380796,-1.139459000626783e-19,-0.004862579051405191,0.0006342494743876159,0.000523753056768328,-4.336808689942018e-19,-3.020235635631252e-05,-1.03129996205098e-05,0.003322259057313204,-0.006644518114626408,-4.336808689942018e-19,0.001661129528656602,-2.270048298641525e-19,2.1440090115609728e-20,0.0006342494743876159,-0.00031712473719380796,-3.020235635631252e-05,-2.270048298641525e-19,1.510117817815626e-05,8.471614874056407e-22,7.047216058708727e-05,-1.139459000626783e-19,-1.03129996205098e-05,2.1440090115609728e-20,8.471614874056407e-22,2.4554759647799074e-07,5.0,44.0,0.0790494978427887,-0.03056277148425579,-0.004650856368243694,0.003246753243729472,0.000606060610152781,6.587615644093603e-05,-0.03056277148425579,0.034761905670166016,0.000606060610152781,-0.006493506487458944,-0.0003030303050763905,1.1158351100731807e-19,-0.004650856368243694,0.000606060610152781,0.000489234400447458,2.032879073410321e-18,-2.8188866053824313e-05,-9.410879101778846e-06,0.003246753243729472,-0.006493506487458944,2.032879073410321e-18,0.001623376621864736,-4.0996394647108136e-19,-2.5030134753446563e-20,0.000606060610152781,-0.0003030303050763905,-2.8188866053824313e-05,-4.0996394647108136e-19,1.4094433026912156e-05,-4.857264737532116e-22,6.587615644093603e-05,1.1158351100731807e-19,-9.410879101778846e-06,-2.5030134753446563e-20,-4.857264737532116e-22,2.1885765022489068e-07,5.0,45.0,0.07739042490720749,-0.029896480962634087,-0.004452667199075222,0.0031746032182127237,0.0005797101184725761,6.167129322420806e-05,-0.029896480962634087,0.0339958593249321,0.0005797101184725761,-0.0063492064364254475,-0.00028985505923628807,5.7126094766935105e-21,-0.004452667199075222,0.0005797101184725761,0.0004576844221446663,4.336808689942018e-19,-2.6350460757385008e-05,-8.60529689816758e-06,0.0031746032182127237,-0.0063492064364254475,4.336808689942018e-19,0.0015873016091063619,-5.759824041329242e-20,-5.559328223984746e-21,0.0005797101184725761,-0.00028985505923628807,-2.6350460757385008e-05,-5.759824041329242e-20,1.3175230378692504e-05,6.890704803379842e-22,6.167129322420806e-05,5.7126094766935105e-21,-8.60529689816758e-06,-5.559328223984746e-21,6.890704803379842e-22,1.9557492692001688e-07,5.0,46.0,0.07579952478408813,-0.029258623719215393,-0.004266882315278053,0.003105590119957924,0.0005550416535697877,5.781683648820035e-05,-0.029258623719215393,0.03326285257935524,0.0005550416535697877,-0.006211180239915848,-0.00027752082678489387,-1.5233297414700323e-19,-0.004266882315278053,0.0005550416535697877,0.00042879069223999977,-2.15485181781494e-18,-2.4668517653481103e-05,-7.884113983891439e-06,0.003105590119957924,-0.006211180239915848,-2.15485181781494e-18,0.001552795059978962,2.303929616531697e-19,3.313698781701927e-20,0.0005550416535697877,-0.00027752082678489387,-2.4668517653481103e-05,2.303929616531697e-19,1.2334258826740552e-05,6.138725228070702e-22,5.781683648820035e-05,-1.5233297414700323e-19,-7.884113983891439e-06,3.313698781701927e-20,6.138725228070702e-22,1.752025298173976e-07,5.0,47.0,0.07427268475294113,-0.028647417202591896,-0.004092487972229719,0.0030395137146115303,0.0005319148767739534,5.427702853921801e-05,-0.028647417202591896,0.032560791820287704,0.0005319148767739534,-0.006079027429223061,-0.0002659574383869767,5.50643858642379e-20,-0.004092487972229719,0.0005319148767739534,0.0004022793145850301,6.505213034913027e-19,-2.312673495907802e-05,-7.236937108245911e-06,0.0030395137146115303,-0.006079027429223061,6.505213034913027e-19,0.0015197568573057652,-1.5924219408380846e-19,-7.25091984679779e-21,0.0005319148767739534,-0.0002659574383869767,-2.312673495907802e-05,-1.5924219408380846e-19,1.156336747953901e-05,-9.403547127145157e-22,5.427702853921801e-05,5.50643858642379e-20,-7.236937108245911e-06,-7.25091984679779e-21,-9.403547127145157e-22,1.5732472036233958e-07,5.0,48.0,0.07280611991882324,-0.02806122414767742,-0.0039285714738070965,0.0029761905316263437,0.0005102040595375001,5.10204081365373e-05,-0.02806122414767742,0.031887754797935486,0.0005102040595375001,-0.0059523810632526875,-0.00025510202976875007,3.484268270771763e-20,-0.0039285714738070965,0.0005102040595375001,0.0003779097169172019,2.303929616531697e-19,-2.1710811779485084e-05,-6.654835942754289e-06,0.0029761905316263437,-0.0059523810632526875,2.303929616531697e-19,0.0014880952658131719,3.7269449679189215e-20,-7.306153539731312e-21,0.0005102040595375001,-0.00025510202976875007,-2.1710811779485084e-05,3.7269449679189215e-20,1.0855405889742542e-05,-1.734018127395866e-22,5.10204081365373e-05,3.484268270771763e-20,-6.654835942754289e-06,-7.306153539731312e-21,-1.734018127395866e-22,1.4159225258936203e-07,5.0,49.0,0.07139632850885391,-0.02749854139983654,-0.003774309763684869,0.0029154520016163588,0.0004897959297522902,4.801920658792369e-05,-0.02749854139983654,0.03124198317527771,0.0004897959297522902,-0.0058309040032327175,-0.0002448979648761451,-1.1147017433870124e-19,-0.003774309763684869,0.0004897959297522902,0.0003554698487278074,-1.7753810574450135e-18,-2.0408162527019158e-05,-6.130111614766065e-06,0.0029154520016163588,-0.0058309040032327175,-1.7753810574450135e-18,0.0014577260008081794,2.574980159653073e-19,2.373088442713151e-20,0.0004897959297522902,-0.0002448979648761451,-2.0408162527019158e-05,2.574980159653073e-19,1.0204081263509579e-05,4.824785882560101e-22,4.801920658792369e-05,-1.1147017433870124e-19,-6.130111614766065e-06,2.373088442713151e-20,4.824785882560101e-22,1.2771066337791126e-07,5.0,50.0,0.07004007697105408,-0.026957983151078224,-0.0036289591807872057,0.0028571428265422583,0.00047058824566192925,4.5248867536429316e-05,-0.026957983151078224,0.03062184900045395,0.00047058824566192925,-0.0057142856530845165,-0.00023529412283096462,-6.2543101881327414e-21,-0.0036289591807872057,0.00047058824566192925,0.00033477236866019666,8.402566836762659e-19,-1.9207682271371596e-05,-5.6561084420536645e-06,0.0028571428265422583,-0.0057142856530845165,8.402566836762659e-19,0.0014285714132711291,-3.049318610115481e-19,-3.021288294511479e-21,0.00047058824566192925,-0.00023529412283096462,-1.9207682271371596e-05,-3.049318610115481e-19,9.603841135685798e-06,6.155394553195619e-22,4.5248867536429316e-05,-6.2543101881327414e-21,-5.6561084420536645e-06,-3.021288294511479e-21,6.155394553195619e-22,1.1543078670683826e-07,5.0,51.0,0.06873437017202377,-0.026438267901539803,-0.003491846611723304,0.002801120514050126,0.0004524886899162084,4.2687610402936116e-05,-0.026438267901539803,0.03002585656940937,0.0004524886899162084,-0.005602241028100252,-0.0002262443449581042,-5.479369747112845e-20,-0.003491846611723304,0.0004524886899162084,0.0003156513557769358,-7.182839392716467e-19,-1.8099546650773846e-05,-5.227054316492286e-06,0.002801120514050126,-0.005602241028100252,-7.182839392716467e-19,0.001400560257025063,1.3891340334970526e-19,9.613041522487365e-21,0.0004524886899162084,-0.0002262443449581042,-1.8099546650773846e-05,1.3891340334970526e-19,9.049773325386923e-06,4.898240571086447e-22,4.2687610402936116e-05,-5.479369747112845e-20,-5.227054316492286e-06,9.613041522487365e-21,4.898240571086447e-22,1.0454109400370726e-07,5.0,52.0,0.06747644394636154,-0.025938212871551514,-0.0033623608760535717,0.002747252816334367,0.00043541364721022546,4.0316077502211556e-05,-0.025938212871551514,0.029452621936798096,0.00043541364721022546,-0.005494505632668734,-0.00021770682360511273,-3.4616581288329354e-20,-0.0033623608760535717,0.00043541364721022546,0.0002979595446959138,-4.743384504624082e-20,-1.7075044524972327e-05,-4.837929282075493e-06,0.002747252816334367,-0.005494505632668734,-4.743384504624082e-20,0.0013736264081671834,-7.115076756936123e-20,3.3649309480325445e-21,0.00043541364721022546,-0.00021770682360511273,-1.7075044524972327e-05,-7.115076756936123e-20,8.537522262486164e-06,6.557146644748534e-22,4.0316077502211556e-05,-3.4616581288329354e-20,-4.837929282075493e-06,3.3649309480325445e-21,6.557146644748534e-22,9.486136320902006e-08,5.0,53.0,0.06626371294260025,-0.02545672282576561,-0.003239946672692895,0.002695417730137706,0.0004192872147541493,3.811701753875241e-05,-0.02545672282576561,0.0289008691906929,0.0004192872147541493,-0.005390835460275412,-0.00020964360737707466,-4.2540612896243635e-20,-0.003239946672692895,0.0004192872147541493,0.0002815657644532621,-7.521652571618187e-19,-1.612643063708674e-05,-4.484355031308951e-06,0.002695417730137706,-0.005390835460275412,-7.521652571618187e-19,0.001347708865068853,1.4907779871675686e-19,6.6978781175754165e-21,0.0004192872147541493,-0.00020964360737707466,-1.612643063708674e-05,1.4907779871675686e-19,8.06321531854337e-06,4.908015378117477e-22,3.811701753875241e-05,-4.2540612896243635e-20,-4.484355031308951e-06,6.6978781175754165e-21,4.908015378117477e-22,8.623759839565537e-08,5.0,54.0,0.06509379297494888,-0.02499278448522091,-0.0031240980606526136,0.0026455025654286146,0.0004040404164697975,3.607503458624706e-05,-0.02499278448522091,0.02836940810084343,0.0004040404164697975,-0.005291005130857229,-0.00020202020823489875,3.890099558279044e-20,-0.0031240980606526136,0.0004040404164697975,0.00026635313406586647,3.3203691532368573e-19,-1.5246807379298843e-05,-4.162503955740249e-06,0.0026455025654286146,-0.005291005130857229,3.3203691532368573e-19,0.0013227512827143073,-4.0657581468206416e-20,-4.881094243860249e-21,0.0004040404164697975,-0.00020202020823489875,-1.5246807379298843e-05,-4.0657581468206416e-20,7.623403689649422e-06,-4.942512202393919e-22,3.607503458624706e-05,3.890099558279044e-20,-4.162503955740249e-06,-4.881094243860249e-21,-4.942512202393919e-22,7.853781625044576e-08,5.0,55.0,0.06396445631980896,-0.0245454553514719,-0.003014354035258293,0.002597402548417449,0.00038961038808338344,3.417635161895305e-05,-0.0245454553514719,0.027857143431901932,0.00038961038808338344,-0.005194805096834898,-0.00019480519404169172,4.400677114494827e-20,-0.003014354035258293,0.00038961038808338344,0.00025221717078238726,2.0328790734103208e-19,-1.4430014743993524e-05,-3.869020929414546e-06,0.002597402548417449,-0.005194805096834898,2.0328790734103208e-19,0.0012987012742087245,1.1180834903756764e-19,-7.916388265183835e-21,0.00038961038808338344,-0.00019480519404169172,-1.4430014743993524e-05,1.1180834903756764e-19,7.215007371996762e-06,-4.161849392135454e-22,3.417635161895305e-05,4.400677114494827e-20,-3.869020929414546e-06,-7.916388265183835e-21,-4.161849392135454e-22,7.164852888763562e-08,5.0,56.0,0.06287362426519394,-0.024113856256008148,-0.0029102929402142763,0.0025510203558951616,0.0003759398532565683,3.2408606784883887e-05,-0.024113856256008148,0.02736305072903633,0.0003759398532565683,-0.005102040711790323,-0.00018796992662828416,1.268379751984118e-19,-0.0029102929402142763,0.0003759398532565683,0.00023906421847641468,1.6466320494623599e-18,-1.3670540283783339e-05,-3.6009564610139932e-06,0.0025510203558951616,-0.005102040711790323,1.6466320494623599e-18,0.0012755101779475808,-1.8126505071242027e-19,-2.2215439461733212e-20,0.0003759398532565683,-0.00018796992662828416,-1.3670540283783339e-05,-1.8126505071242027e-19,6.8352701418916695e-06,-1.0060567034562901e-21,3.2408606784883887e-05,1.268379751984118e-19,-3.6009564610139932e-06,-2.2215439461733212e-20,-1.0060567034562901e-21,6.547193720507494e-08,5.0,57.0,0.06181936338543892,-0.023697173222899437,-0.0028115292079746723,0.002506265649572015,0.00036297639599069953,3.076071152463555e-05,-0.023697173222899437,0.02688618004322052,0.00036297639599069953,-0.00501253129914403,-0.00018148819799534976,-5.086464045249629e-22,-0.0028115292079746723,0.00036297639599069953,0.00022681031259708107,-1.3552527156068805e-20,-1.2963442713953555e-05,-3.355714170538704e-06,0.002506265649572015,-0.00501253129914403,-1.3552527156068805e-20,0.0012531328247860074,-2.371692252312041e-20,1.3800855217399999e-21,0.00036297639599069953,-0.00018148819799534976,-1.2963442713953555e-05,-2.371692252312041e-20,6.481721356976777e-06,-1.859785022446676e-22,3.076071152463555e-05,-5.086464045249629e-22,-3.355714170538704e-06,1.3800855217399999e-21,-1.859785022446676e-22,5.992346530092618e-08,5.0,58.0,0.060799866914749146,-0.02329464815557003,-0.0027177089359611273,0.002463054144755006,0.0003506721113808453,2.9222675948403776e-05,-0.02329464815557003,0.026425648480653763,0.0003506721113808453,-0.004926108289510012,-0.00017533605569042265,1.5155821610577075e-19,-0.0027177089359611273,0.0003506721113808453,0.00021537991415243596,1.362028979184915e-18,-1.2304284609854221e-05,-3.131000994471833e-06,0.002463054144755006,-0.004926108289510012,1.362028979184915e-18,0.001231527072377503,1.1350241493207625e-19,-2.7563028028156423e-20,0.0003506721113808453,-0.00017533605569042265,-1.2304284609854221e-05,1.1350241493207625e-19,6.152142304927111e-06,-1.0336670875745152e-21,2.9222675948403776e-05,1.5155821610577075e-19,-3.131000994471833e-06,-2.7563028028156423e-20,-1.0336670875745152e-21,5.4929842008277774e-08,5.0,59.0,0.05981343984603882,-0.022905569523572922,-0.002628508023917675,0.002421307610347867,0.000338983052643016,2.7785496058641e-05,-0.022905569523572922,0.0259806290268898,0.000338983052643016,-0.004842615220695734,-0.000169491526321508,3.840274527952368e-20,-0.002628508023917675,0.000338983052643016,0.00020470497838687152,1.3552527156068805e-19,-1.168907056126045e-05,-2.9247889870021027e-06,0.002421307610347867,-0.004842615220695734,1.3552527156068805e-19,0.0012106538051739335,1.5415999640028266e-19,-6.667261125801017e-21,0.000338983052643016,-0.000169491526321508,-1.168907056126045e-05,1.5415999640028266e-19,5.844535280630225e-06,-2.7684425971700404e-22,2.7785496058641e-05,3.840274527952368e-20,-2.9247889870021027e-06,-6.667261125801017e-21,-2.7684425971700404e-22,5.042739914529193e-08,5.0,60.0,0.05885850265622139,-0.022529274225234985,-0.0025436277501285076,0.0023809524718672037,0.00032786885276436806,2.6441037334734574e-05,-0.022529274225234985,0.025550350546836853,0.00032786885276436806,-0.004761904943734407,-0.00016393442638218403,-9.247684731651929e-20,-0.0025436277501285076,0.00032786885276436806,0.00019472409621812403,-7.453889935837843e-19,-1.111419805965852e-05,-2.7352796223567566e-06,0.0023809524718672037,-0.004761904943734407,-7.453889935837843e-19,0.0011904762359336019,-9.825582188149884e-20,1.6529912072165144e-20,0.00032786885276436806,-0.00016393442638218403,-1.111419805965852e-05,-9.825582188149884e-20,5.55709902982926e-06,6.941071237149924e-22,2.6441037334734574e-05,-9.247684731651929e-20,-2.7352796223567566e-06,1.6529912072165144e-20,6.941071237149924e-22,4.6360671746015214e-08,5.0,61.0,0.05793356895446777,-0.022165143862366676,-0.002462793607264757,0.0023419202771037817,0.00031729243346489966,2.5181940145557746e-05,-0.022165143862366676,0.025134094059467316,0.00031729243346489966,-0.004683840554207563,-0.00015864621673244983,-3.13178431666047e-20,-0.002462793607264757,0.00031729243346489966,0.00018538175208959728,-2.710505431213761e-19,-1.057641475199489e-05,-2.5608751457184553e-06,0.0023419202771037817,-0.004683840554207563,-2.710505431213761e-19,0.0011709601385518909,-3.218725199566341e-20,5.088533208471362e-21,0.00031729243346489966,-0.00015864621673244983,-1.057641475199489e-05,-3.218725199566341e-20,5.288207375997445e-06,2.992880719116874e-22,2.5181940145557746e-05,-3.13178431666047e-20,-2.5608751457184553e-06,5.088533208471362e-21,2.992880719116874e-22,4.268125408657397e-08,5.0,62.0,0.05703724920749664,-0.021812595427036285,-0.0023857527412474155,0.0023041474632918835,0.00030721965595148504,2.400153607595712e-05,-0.021812595427036285,0.024731183424592018,0.00030721965595148504,-0.004608294926583767,-0.00015360982797574252,5.839334192771488e-20,-0.0023857527412474155,0.00030721965595148504,0.00017662769823800772,7.724940478959219e-19,-1.0072775694425218e-05,-2.400153562120977e-06,0.0023041474632918835,-0.004608294926583767,7.724940478959219e-19,0.0011520737316459417,-2.371692252312041e-20,-1.1938597614575547e-20,0.00030721965595148504,-0.00015360982797574252,-1.0072775694425218e-05,-2.371692252312041e-20,5.036387847212609e-06,-2.2849064556736037e-22,2.400153607595712e-05,5.839334192771488e-20,-2.400153562120977e-06,-1.1938597614575547e-20,-2.2849064556736037e-22,3.934678005634851e-08,5.0,63.0,0.05616823583841324,-0.021471088752150536,-0.0023122711572796106,0.0022675737272948027,0.00029761905898340046,2.2893773348187096e-05,-0.021471088752150536,0.02434098720550537,0.00029761905898340046,-0.004535147454589605,-0.00014880952949170023,-3.594708514774956e-20,-0.0023122711572796106,0.00029761905898340046,0.00016841632896102965,-4.54009659728305e-19,-9.600614248483907e-06,-2.251846581202699e-06,0.0022675737272948027,-0.004535147454589605,-4.54009659728305e-19,0.0011337868636474013,4.0657581468206416e-20,6.594613423048051e-21,0.00029761905898340046,-0.00014880952949170023,-9.600614248483907e-06,4.0657581468206416e-20,4.800307124241954e-06,2.0857570686464937e-22,2.2893773348187096e-05,-3.594708514774956e-20,-2.251846581202699e-06,6.594613423048051e-21,2.0857570686464937e-22,3.632010603382696e-08,5.0,64.0,0.05532529950141907,-0.02114010974764824,-0.0022421327885240316,0.0022321429569274187,0.0002884615387301892,2.1853147700312547e-05,-0.02114010974764824,0.02396291121840477,0.0002884615387301892,-0.004464285913854837,-0.0001442307693650946,-2.3200697197401965e-20,-0.0022421327885240316,0.0002884615387301892,0.00016070622950792313,-2.981555974335137e-19,-9.157509339274839e-06,-2.114820745191537e-06,0.0022321429569274187,-0.004464285913854837,-2.981555974335137e-19,0.0011160714784637094,-1.6940658945086007e-21,4.5554100530227505e-21,0.0002884615387301892,-0.0001442307693650946,-9.157509339274839e-06,-1.6940658945086007e-21,4.578754669637419e-06,6.19531659479832e-23,2.1853147700312547e-05,-2.3200697197401965e-20,-2.114820745191537e-06,4.5554100530227505e-21,6.19531659479832e-23,3.3568582580301154e-08,6.0,3.0,0.5634920597076416,-0.2678571343421936,-0.4285714328289032,0.02976190485060215,0.0714285746216774,0.0833333358168602,-0.2678571343421936,0.2708333432674408,0.0714285746216774,-0.0446428582072258,-0.02857142873108387,-5.551115123125783e-17,-0.4285714328289032,0.0714285746216774,1.2619047164916992,-1.9278643587436512e-17,-0.0714285746216774,-0.5,0.02976190485060215,-0.0446428582072258,-1.9278643587436512e-17,0.008928571827709675,2.5714039943283313e-34,9.639321793718256e-18,0.0714285746216774,-0.02857142873108387,-0.0714285746216774,2.5714039943283313e-34,0.02857142873108387,6.669048149348036e-18,0.0833333358168602,-5.551115123125783e-17,-0.5,9.639321793718256e-18,6.669048149348036e-18,0.25,6.0,4.0,0.48273810744285583,-0.21160714328289032,-0.28214284777641296,0.0223214291036129,0.04285714402794838,0.0416666679084301,-0.21160714328289032,0.20741070806980133,0.04285714402794838,-0.0334821417927742,-0.017142856493592262,7.920909492240382e-17,-0.28214284777641296,0.04285714402794838,0.47976189851760864,4.2405920337065846e-17,-0.02857142873108387,-0.125,0.0223214291036129,-0.0334821417927742,4.2405920337065846e-17,0.0066964286379516125,-3.0902312217062954e-19,-1.3877787807814457e-17,0.04285714402794838,-0.017142856493592262,-0.02857142873108387,-3.0902312217062954e-19,0.011428571306169033,-6.546769761707078e-18,0.0416666679084301,7.920909492240382e-17,-0.125,-1.3877787807814457e-17,-6.546769761707078e-18,0.0416666679084301,6.0,5.0,0.4214285612106323,-0.17499999701976776,-0.20000000298023224,0.01785714365541935,0.02857142873108387,0.02380952425301075,-0.17499999701976776,0.16821429133415222,0.02857142873108387,-0.02678571455180645,-0.011428571306169033,3.642919299551295e-17,-0.20000000298023224,0.02857142873108387,0.24285714328289032,3.5840918687477487e-17,-0.014285714365541935,-0.0476190485060215,0.01785714365541935,-0.02678571455180645,3.5840918687477487e-17,0.0053571430034935474,-3.409332014526629e-18,-6.810790923982979e-18,0.02857142873108387,-0.011428571306169033,-0.014285714365541935,-3.409332014526629e-18,0.0057142856530845165,-8.673617379884035e-19,0.02380952425301075,3.642919299551295e-17,-0.0476190485060215,-6.810790923982979e-18,-8.673617379884035e-19,0.011904762126505375,6.0,6.0,0.37358278036117554,-0.14923469722270966,-0.14923469722270966,0.014880952425301075,0.020408162847161293,0.014880952425301075,-0.14923469722270966,0.14153911173343658,0.020408162847161293,-0.0223214291036129,-0.008163264952600002,1.8214596497756474e-17,-0.14923469722270966,0.020408162847161293,0.14153911173343658,2.7557229285267273e-17,-0.008163264952600002,-0.0223214291036129,0.014880952425301075,-0.0223214291036129,2.7557229285267273e-17,0.004464285913854837,-3.1072456548222635e-18,-3.803812380701637e-18,0.020408162847161293,-0.008163264952600002,-0.008163264952600002,-3.1072456548222635e-18,0.003265306120738387,4.336808689942018e-19,0.014880952425301075,1.8214596497756474e-17,-0.0223214291036129,-3.803812380701637e-18,4.336808689942018e-19,0.004464285913854837,6.0,7.0,0.335317462682724,-0.1301020383834839,-0.11564625799655914,0.012755102477967739,0.015306122601032257,0.009920635260641575,-0.1301020383834839,0.12219388037919998,0.015306122601032257,-0.01913265325129032,-0.006122448947280645,1.474514954580286e-17,-0.11564625799655914,0.015306122601032257,0.09013605117797852,1.9921266970439158e-17,-0.005102040711790323,-0.011904762126505375,0.012755102477967739,-0.01913265325129032,1.9921266970439158e-17,0.0038265306502580643,-1.994980759670438e-18,-2.4684804489917176e-18,0.015306122601032257,-0.006122448947280645,-0.005102040711790323,-1.994980759670438e-18,0.0020408162381500006,-6.505213034913027e-19,0.009920635260641575,1.474514954580286e-17,-0.011904762126505375,-2.4684804489917176e-18,-6.505213034913027e-19,0.0019841270986944437,6.0,8.0,0.304067462682724,-0.1153273805975914,-0.092261902987957,0.01116071455180645,0.011904762126505375,0.0069444444961845875,-0.1153273805975914,0.1075148805975914,0.011904762126505375,-0.0167410708963871,-0.004761904943734407,1.0842021724855044e-17,-0.092261902987957,0.011904762126505375,0.06108276546001434,1.6743705586875906e-17,-0.003401360474526882,-0.0069444444961845875,0.01116071455180645,-0.0167410708963871,1.6743705586875906e-17,0.0033482143189758062,-2.071553075769625e-18,-1.6521176010920818e-18,0.011904762126505375,-0.004761904943734407,-0.003401360474526882,-2.071553075769625e-18,0.0013605442363768816,-7.589415207398531e-19,0.0069444444961845875,1.0842021724855044e-17,-0.0069444444961845875,-1.6521176010920818e-18,-7.589415207398531e-19,0.0009920635493472219,6.0,9.0,0.2780904173851013,-0.10357142984867096,-0.07532467693090439,0.009920635260641575,0.009523809887468815,0.005050505045801401,-0.10357142984867096,0.0959920659661293,0.009523809887468815,-0.014880952425301075,-0.003809523768723011,5.9631119486702744e-18,-0.07532467693090439,0.009523809887468815,0.04336219280958176,1.2560099018184834e-17,-0.0023809524718672037,-0.0043290043249726295,0.009920635260641575,-0.014880952425301075,1.2560099018184834e-17,0.0029761905316263437,-1.2889663904247905e-18,-1.1672103673406602e-18,0.009523809887468815,-0.003809523768723011,-0.0023809524718672037,-1.2889663904247905e-18,0.0009523809421807528,-5.421010862427522e-20,0.005050505045801401,5.9631119486702744e-18,-0.0043290043249726295,-1.1672103673406602e-18,-5.421010862427522e-20,0.0005411255406215787,6.0,10.0,0.25616884231567383,-0.09399350732564926,-0.06266234070062637,0.008928571827709675,0.007792207878082991,0.0037878789007663727,-0.09399350732564926,0.0867045447230339,0.007792207878082991,-0.013392857275903225,-0.0031168831046670675,-1.0690490508441455e-17,-0.06266234070062637,0.007792207878082991,0.03191738948225975,-6.5052130349130266e-18,-0.0017316017765551805,-0.0028409091755747795,0.008928571827709675,-0.013392857275903225,-6.5052130349130266e-18,0.0026785715017467737,-2.8189256484623115e-18,1.5456012434208988e-18,0.007792207878082991,-0.0031168831046670675,-0.0017316017765551805,-2.8189256484623115e-18,0.0006926406640559435,4.370459431236441e-19,0.0037878789007663727,-1.0690490508441455e-17,-0.0028409091755747795,1.5456012434208988e-18,4.370459431236441e-19,0.00031565656536258757,6.0,11.0,0.23742923140525818,-0.08603896200656891,-0.05294705182313919,0.008116883225739002,0.006493506487458944,0.002913752803578973,-0.08603896200656891,0.079058438539505,0.006493506487458944,-0.012175324372947216,-0.002597402548417449,-8.45449206573991e-19,-0.05294705182313919,0.006493506487458944,0.02418692409992218,-5.854691731421724e-18,-0.0012987012742087245,-0.0019425019854679704,0.008116883225739002,-0.012175324372947216,-5.854691731421724e-18,0.002435064874589443,2.2497195079074217e-18,3.361031284198433e-20,0.006493506487458944,-0.002597402548417449,-0.0012987012742087245,2.2497195079074217e-18,0.0005194804980419576,5.833390770823324e-20,0.002913752803578973,-8.45449206573991e-19,-0.0019425019854679704,3.361031284198433e-20,5.833390770823324e-20,0.00019425019854679704,6.0,12.0,0.2212301641702652,-0.07932692021131516,-0.04532967135310173,0.0074404762126505375,0.005494505632668734,0.002289377385750413,-0.07932692021131516,0.0726533904671669,0.005494505632668734,-0.01116071455180645,-0.002197802299633622,-8.362523023308967e-18,-0.04532967135310173,0.005494505632668734,0.018772894516587257,-2.0383000842727483e-17,-0.0009990009712055326,-0.0013736264081671834,0.0074404762126505375,-0.01116071455180645,-2.0383000842727483e-17,0.0022321429569274187,1.951563910473908e-18,1.2418289862305734e-18,0.005494505632668734,-0.002197802299633622,-0.0009990009712055326,1.951563910473908e-18,0.0003996003943029791,2.7509310402189347e-19,0.002289377385750413,-8.362523023308967e-18,-0.0013736264081671834,1.2418289862305734e-18,2.7509310402189347e-19,0.00012487512140069157,6.0,13.0,0.20709052681922913,-0.07358712702989578,-0.039246466010808945,0.006868131924420595,0.0047095762565732,0.0018315018387511373,-0.07358712702989578,0.06720957905054092,0.0047095762565732,-0.010302198119461536,-0.0018838304094970226,4.46889123579326e-18,-0.039246466010808945,0.0047095762565732,0.014866086654365063,1.0842021724855044e-17,-0.0007849293760955334,-0.0009990009712055326,0.006868131924420595,-0.010302198119461536,1.0842021724855044e-17,0.002060439670458436,-1.3552527156068805e-18,-5.961656110792181e-19,0.0047095762565732,-0.0018838304094970226,-0.0007849293760955334,-1.3552527156068805e-18,0.00031397174461744726,-1.8980575516051564e-19,0.0018315018387511373,4.46889123579326e-18,-0.0009990009712055326,-5.961656110792181e-19,-1.8980575516051564e-19,8.325008093379438e-05,6.0,14.0,0.19464285671710968,-0.06862244755029678,-0.03431122377514839,0.0063775512389838696,0.004081632476300001,0.0014880952658131719,-0.06862244755029678,0.06252551078796387,0.004081632476300001,-0.00956632662564516,-0.0016326530603691936,2.1222633832221884e-18,-0.03431122377514839,0.004081632476300001,0.011975078843533993,8.456776945386935e-18,-0.0006279434892348945,-0.0007440476329065859,0.0063775512389838696,-0.00956632662564516,8.456776945386935e-18,0.0019132653251290321,-1.5449880957918438e-18,-2.8216456768103273e-19,0.004081632476300001,-0.0016326530603691936,-0.0006279434892348945,-1.5449880957918438e-18,0.00025117740733549,-9.53980162627047e-20,0.0014880952658131719,2.1222633832221884e-18,-0.0007440476329065859,-2.8216456768103273e-19,-9.53980162627047e-20,5.723443246097304e-05,6.0,15.0,0.1836017668247223,-0.06428571790456772,-0.03025210089981556,0.0059523810632526875,0.0035714285913854837,0.0012254902394488454,-0.06428571790456772,0.05845238268375397,0.0035714285913854837,-0.008928571827709675,-0.0014285714132711291,3.2430668502470924e-18,-0.03025210089981556,0.0035714285913854837,0.0097893001511693,8.023096076392733e-18,-0.0005102040595375001,-0.0005656108842231333,0.0059523810632526875,-0.008928571827709675,8.023096076392733e-18,0.0017857142956927419,-3.3881317890172014e-19,-5.078777808680778e-19,0.0035714285913854837,-0.0014285714132711291,-0.0005102040595375001,-3.3881317890172014e-19,0.0002040816325461492,-6.350496914647167e-20,0.0012254902394488454,3.2430668502470924e-18,-0.0005656108842231333,-5.078777808680778e-19,-6.350496914647167e-20,4.0400776924798265e-05,6.0,16.0,0.173742413520813,-0.06046481058001518,-0.02687324956059456,0.005580357275903225,0.0031512605492025614,0.0010212418856099248,-0.06046481058001518,0.05487788841128349,0.0031512605492025614,-0.00837053544819355,-0.001260504242964089,-1.0878370108922156e-18,-0.02687324956059456,0.0031512605492025614,0.008105742745101452,-5.312590645178972e-18,-0.0004201680712867528,-0.0004376750730443746,0.005580357275903225,-0.00837053544819355,-5.312590645178972e-18,0.0016741071594879031,7.995991022080595e-19,2.0493146351938666e-19,0.0031512605492025614,-0.001260504242964089,-0.0004201680712867528,7.995991022080595e-19,0.00016806722851470113,9.419428752568105e-21,0.0010212418856099248,-1.0878370108922156e-18,-0.0004376750730443746,2.0493146351938666e-19,9.419428752568105e-21,2.9178338081692345e-05,6.0,17.0,0.1648852527141571,-0.05707282945513725,-0.024030664935708046,0.005252100992947817,0.002801120514050126,0.0008599931024946272,-0.05707282945513725,0.05171568691730499,0.002801120514050126,-0.007878151722252369,-0.0011204482289031148,2.4664075343766597e-18,-0.024030664935708046,0.002801120514050126,0.006787803024053574,6.938893903907228e-18,-0.00035014006425626576,-0.0003439972351770848,0.005252100992947817,-0.007878151722252369,6.938893903907228e-18,0.0015756302746012807,-1.6263032587282567e-19,-4.04079176798226e-19,0.002801120514050126,-0.0011204482289031148,-0.00035014006425626576,-1.6263032587282567e-19,0.00014005602861288935,-3.7884700802692475e-20,0.0008599931024946272,2.4664075343766597e-18,-0.0003439972351770848,-4.04079176798226e-19,-3.7884700802692475e-20,2.14998271985678e-05,6.0,18.0,0.1568852663040161,-0.05404135212302208,-0.021616540849208832,0.004960317630320787,0.002506265649572015,0.0007309941574931145,-0.05404135212302208,0.04889828711748123,0.002506265649572015,-0.0074404762126505375,-0.0010025062365457416,2.7316121853139704e-18,-0.021616540849208832,0.002506265649572015,0.005741221830248833,8.565197162635485e-18,-0.0002948547771666199,-0.0002741228090599179,0.004960317630320787,-0.0074404762126505375,8.565197162635485e-18,0.0014880952658131719,-6.776263578034403e-19,-3.713450808694826e-19,0.002506265649572015,-0.0010025062365457416,-0.0002948547771666199,-6.776263578034403e-19,0.00011794191232183948,-8.087183936452416e-20,0.0007309941574931145,2.7316121853139704e-18,-0.0002741228090599179,-3.713450808694826e-19,-8.087183936452416e-20,1.6124871763167903e-05,6.0,19.0,0.1496240645647049,-0.051315788179636,-0.019548872485756874,0.004699247889220715,0.002255639061331749,0.0006265664123930037,-0.051315788179636,0.0463721789419651,0.002255639061331749,-0.007048872299492359,-0.000902255647815764,-1.752333944422908e-18,-0.019548872485756874,0.002255639061331749,0.004899503663182259,-3.144186300207963e-18,-0.0002506265591364354,-0.00022114109015092254,0.004699247889220715,-0.007048872299492359,-3.144186300207963e-18,0.001409774413332343,-4.0657581468206416e-19,2.2865577896923176e-19,0.002255639061331749,-0.000902255647815764,-0.0002506265591364354,-4.0657581468206416e-19,0.00010025062510976568,5.491934491370555e-20,0.0006265664123930037,-1.752333944422908e-18,-0.00022114109015092254,2.2865577896923176e-19,5.491934491370555e-20,1.228561632160563e-05,6.0,20.0,0.14300401508808136,-0.048852041363716125,-0.0177643783390522,0.004464285913854837,0.0020408162381500006,0.0005411255406215787,-0.048852041363716125,0.04409438744187355,0.0020408162381500006,-0.0066964286379516125,-0.0008163265301845968,3.660358996559934e-18,-0.0177643783390522,0.0020408162381500006,0.004214812070131302,1.1167282376600696e-17,-0.00021482276497408748,-0.0001803751802071929,0.004464285913854837,-0.0066964286379516125,1.1167282376600696e-17,0.0013392857508733869,-2.439454888092385e-19,-5.341516737609645e-19,0.0020408162381500006,-0.0008163265301845968,-0.00021482276497408748,-2.439454888092385e-19,8.592911035520956e-05,-7.899450126554678e-20,0.0005411255406215787,3.660358996559934e-18,-0.0001803751802071929,-5.341516737609645e-19,-7.899450126554678e-20,9.493430297879968e-06,6.0,21.0,0.136943981051445,-0.04661409929394722,-0.01621359959244728,0.004251700825989246,0.001855287584476173,0.0004705439496319741,-0.04661409929394722,0.04202999547123909,0.001855287584476173,-0.0063775512389838696,-0.000742115022148937,-2.5725443066195604e-20,-0.01621359959244728,0.001855287584476173,0.0036521286237984896,1.1926223897340549e-18,-0.00018552875553723425,-0.0001485928223701194,0.004251700825989246,-0.0063775512389838696,1.1926223897340549e-18,0.0012755101779475808,-5.285485590866834e-19,1.7407891590969158e-20,0.001855287584476173,-0.000742115022148937,-0.00018552875553723425,-5.285485590866834e-19,7.421150075970218e-05,-1.4084606844177314e-21,0.0004705439496319741,-2.5725443066195604e-20,-0.0001485928223701194,1.7407891590969158e-20,-1.4084606844177314e-21,7.42964130040491e-06,6.0,22.0,0.13137586414813995,-0.04457227513194084,-0.014857425354421139,0.004058441612869501,0.0016939581837505102,0.00041172595228999853,-0.04457227513194084,0.040150340646505356,0.0016939581837505102,-0.006087662186473608,-0.0006775832735002041,1.0876337312566807e-18,-0.014857425354421139,0.0016939581837505102,0.0031854144763201475,4.445228907190568e-18,-0.00016132935706991702,-0.00012351779150776565,0.004058441612869501,-0.006087662186473608,4.445228907190568e-18,0.0012175324372947216,-3.1848438816761693e-19,-1.706382743076486e-19,0.0016939581837505102,-0.0006775832735002041,-0.00016132935706991702,-3.1848438816761693e-19,6.453174137277529e-05,-1.4562225493899085e-20,0.00041172595228999853,1.0876337312566807e-18,-0.00012351779150776565,-1.706382743076486e-19,-1.4562225493899085e-20,5.881799552298617e-06,6.0,23.0,0.1262422353029251,-0.04270186275243759,-0.01366459671407938,0.003881987649947405,0.001552795059978962,0.00036231885314919055,-0.04270186275243759,0.03843167796730995,0.001552795059978962,-0.005822981242090464,-0.0006211180007085204,-4.2268122800362475e-19,-0.01366459671407938,0.001552795059978962,0.0027950310613960028,-1.0842021724855044e-19,-0.00014116318197920918,-0.00010351966921007261,0.003881987649947405,-0.005822981242090464,-1.0842021724855044e-19,0.0011645962949842215,-4.336808689942018e-19,5.441495861050427e-20,0.001552795059978962,-0.0006211180007085204,-0.00014116318197920918,-4.336808689942018e-19,5.6465272791683674e-05,8.460937256740119e-21,0.00036231885314919055,-4.2268122800362475e-19,-0.00010351966921007261,5.441495861050427e-20,8.460937256740119e-21,4.705439550889423e-06,6.0,24.0,0.12149420380592346,-0.040982142090797424,-0.012609889730811119,0.0037202381063252687,0.0014285714132711291,0.00032051283051259816,-0.040982142090797424,0.03685416653752327,0.0014285714132711291,-0.005580357275903225,-0.0005714285653084517,7.54960054882391e-20,-0.012609889730811119,0.0014285714132711291,0.002465976169332862,1.4365678785432934e-18,-0.00012422360305208713,-8.741259080125019e-05,0.0037202381063252687,-0.005580357275903225,1.4365678785432934e-18,0.0011160714784637094,-3.3203691532368573e-19,-2.4535702082577195e-20,0.0014285714132711291,-0.0005714285653084517,-0.00012422360305208713,-3.3203691532368573e-19,4.9689442676026374e-05,2.78300130916582e-21,0.00032051283051259816,7.54960054882391e-20,-8.741259080125019e-05,-2.4535702082577195e-20,2.78300130916582e-21,3.8005473470548168e-06,6.0,25.0,0.11708994954824448,-0.03939560428261757,-0.011672771535813808,0.0035714285913854837,0.0013186812866479158,0.00028490027762018144,-0.03939560428261757,0.03540109843015671,0.0013186812866479158,-0.0053571430034935474,-0.0005274725263006985,-4.4786308092922804e-20,-0.011672771535813808,0.0013186812866479158,0.0021866539027541876,5.692061405548898e-19,-0.00010989011207129806,-7.432181155309081e-05,0.0035714285913854837,-0.0053571430034935474,5.692061405548898e-19,0.0010714285308495164,-1.0164395367051604e-19,-1.1962681575877268e-21,0.0013186812866479158,-0.0005274725263006985,-0.00010989011207129806,-1.0164395367051604e-19,4.395604264573194e-05,3.900437296452039e-21,0.00028490027762018144,-4.4786308092922804e-20,-7.432181155309081e-05,-1.1962681575877268e-21,3.900437296452039e-21,3.0967421480454504e-06,6.0,26.0,0.11299348622560501,-0.037927351891994476,-0.010836386121809483,0.0034340659622102976,0.0012210012646391988,0.0002543752489145845,-0.037927351891994476,0.03405830264091492,0.0012210012646391988,-0.005151099059730768,-0.0004884005174972117,1.4228227734008646e-19,-0.010836386121809483,0.0012210012646391988,0.0019480057526379824,-9.75781955236954e-19,-9.76800947682932e-05,-6.359381222864613e-05,0.0034340659622102976,-0.005151099059730768,-9.75781955236954e-19,0.001030219835229218,5.55653613398821e-19,-1.8011156673526068e-20,0.0012210012646391988,-0.0004884005174972117,-9.76800947682932e-05,5.55653613398821e-19,3.907203790731728e-05,-2.9869647419551467e-21,0.0002543752489145845,1.4228227734008646e-19,-6.359381222864613e-05,-1.8011156673526068e-20,-2.9869647419551467e-21,2.5437525437155273e-06,6.0,27.0,0.10917368531227112,-0.036564625799655914,-0.010086793452501297,0.003306878264993429,0.0011337868636474013,0.00022806056949775666,-0.036564625799655914,0.03281367942690849,0.0011337868636474013,-0.004960317630320787,-0.00045351474545896053,-8.674250173052639e-20,-0.010086793452501297,0.0011337868636474013,0.0017428840510547161,1.3552527156068805e-18,-8.721437188796699e-05,-5.4734537116019055e-05,0.003306878264993429,-0.004960317630320787,1.3552527156068805e-18,0.0009920635493472219,-5.827586677109586e-19,1.3809426512990475e-20,0.0011337868636474013,-0.00045351474545896053,-8.721437188796699e-05,-5.827586677109586e-19,3.488575021037832e-05,1.7954492378185485e-21,0.00022806056949775666,-8.674250173052639e-20,-5.4734537116019055e-05,1.3809426512990475e-20,1.7954492378185485e-21,2.1051744170108577e-06,6.0,28.0,0.10560344904661179,-0.035296447575092316,-0.009412385523319244,0.0031887756194919348,0.0010555946500971913,0.00020525451691355556,-0.035296447575092316,0.031656842678785324,0.0010555946500971913,-0.00478316331282258,-0.00042223784839734435,-5.597557054540481e-19,-0.009412385523319244,0.0010555946500971913,0.0015655981842428446,-1.4772254600114998e-18,-7.819219899829477e-05,-4.736642586067319e-05,0.0031887756194919348,-0.00478316331282258,-1.4772254600114998e-18,0.0009566326625645161,-3.1170812458958252e-19,8.363665178789144e-20,0.0010555946500971913,-0.00042223784839734435,-7.819219899829477e-05,-3.1170812458958252e-19,3.127687887172215e-05,8.661658610048506e-21,0.00020525451691355556,-5.597557054540481e-19,-4.736642586067319e-05,8.363665178789144e-20,8.661658610048506e-21,1.7543120520713273e-06,6.0,29.0,0.10225912183523178,-0.03411329910159111,-0.008803432807326317,0.0030788176227360964,0.000985221704468131,0.00018539118173066527,-0.03411329910159111,0.030578818172216415,0.000985221704468131,-0.004618226550519466,-0.0003940886817872524,-1.901794210775394e-19,-0.008803432807326317,0.000985221704468131,0.001411579316481948,-8.131516293641283e-19,-7.037297473289073e-05,-4.1198039980372414e-05,0.0030788176227360964,-0.004618226550519466,-8.131516293641283e-19,0.0009236453333869576,9.825582188149884e-20,1.8886455933274954e-20,0.000985221704468131,-0.0003940886817872524,-7.037297473289073e-05,9.825582188149884e-20,2.814919025695417e-05,5.4888862015663265e-21,0.00018539118173066527,-1.901794210775394e-19,-4.1198039980372414e-05,1.8886455933274954e-20,5.4888862015663265e-21,1.471358586968563e-06,6.0,30.0,0.09911994636058807,-0.03300691395998001,-0.008251728489995003,0.0029761905316263437,0.0009216589969582856,0.00016801075253169984,-0.03300691395998001,0.029571812599897385,0.0009216589969582856,-0.004464285913854837,-0.0003686636046040803,2.8854603346233206e-19,-0.008251728489995003,0.0009216589969582856,0.0012771299807354808,1.4365678785432934e-18,-6.356268568197265e-05,-3.600230411393568e-05,0.0029761905316263437,-0.004464285913854837,1.4365678785432934e-18,0.0008928571478463709,-1.7279472123987727e-19,-3.4896420366965164e-20,0.0009216589969582856,-0.0003686636046040803,-6.356268568197265e-05,-1.7279472123987727e-19,2.5425075364182703e-05,-6.198368868034575e-21,0.00016801075253169984,2.8854603346233206e-19,-3.600230411393568e-05,-3.4896420366965164e-20,-6.198368868034575e-21,1.2414587899911567e-06,6.0,31.0,0.09616760909557343,-0.03197004646062851,-0.007750314194709063,0.002880184445530176,0.0008640552987344563,0.00015273704775609076,-0.03197004646062851,0.028629032894968987,0.0008640552987344563,-0.004320276435464621,-0.0003456221311353147,9.908190389480082e-20,-0.007750314194709063,0.0008640552987344563,0.0011592365335673094,6.776263578034403e-19,-5.760368730989285e-05,-3.160076812491752e-05,0.002880184445530176,-0.004320276435464621,6.776263578034403e-19,0.0008640552987344563,-1.0503208545953324e-19,-1.2589389231643744e-20,0.0008640552987344563,-0.0003456221311353147,-5.760368730989285e-05,-1.0503208545953324e-19,2.304147528775502e-05,-1.772337658023039e-21,0.00015273704775609076,9.908190389480082e-20,-3.160076812491752e-05,-1.2589389231643744e-20,-1.772337658023039e-21,1.0533589147598832e-06,6.0,32.0,0.09338593482971191,-0.030996346846222878,-0.00729325832799077,0.0027901786379516125,0.000811688310932368,0.00013926024257671088,-0.030996346846222878,0.02774452045559883,0.000811688310932368,-0.004185267724096775,-0.0003246753185521811,9.270524610081196e-20,-0.00729325832799077,0.000811688310932368,0.0010554258478805423,7.995991022080595e-19,-5.236698780208826e-05,-2.7852049242937937e-05,0.0027901786379516125,-0.004185267724096775,7.995991022080595e-19,0.0008370535797439516,-1.4568966692773966e-19,-1.3590215572728253e-20,0.000811688310932368,-0.0003246753185521811,-5.236698780208826e-05,-1.4568966692773966e-19,2.0946794393239543e-05,-1.6292483367484365e-21,0.00013926024257671088,9.270524610081196e-20,-2.7852049242937937e-05,-1.3590215572728253e-20,-1.6292483367484365e-21,8.984532087197294e-07,6.0,33.0,0.09076054394245148,-0.030080214142799377,-0.0068754772655665874,0.0027056278195232153,0.0007639419636689126,0.00012732365576084703,-0.030080214142799377,0.02691303752362728,0.0007639419636689126,-0.004058441612869501,-0.0003055767738260329,-3.8223879104286455e-19,-0.0068754772655665874,0.0007639419636689126,0.0009636552422307432,-2.3310346708438345e-18,-4.774637272930704e-05,-2.4643288270453922e-05,0.0027056278195232153,-0.004058441612869501,-2.3310346708438345e-18,0.000811688310932368,1.7618285302889447e-19,5.472760703265517e-20,0.0007639419636689126,-0.0003055767738260329,-4.774637272930704e-05,1.7618285302889447e-19,1.9098548364127055e-05,5.3019163220448496e-21,0.00012732365576084703,-3.8223879104286455e-19,-2.4643288270453922e-05,5.472760703265517e-20,5.3019163220448496e-21,7.701027584516851e-07,6.0,34.0,0.0882786437869072,-0.029216686263680458,-0.006492597050964832,0.0026260504964739084,0.0007202881388366222,0.00011671335232676938,-0.029216686263680458,0.0261299517005682,0.0007202881388366222,-0.0039390758611261845,-0.00028811523225158453,-1.3348540539604107e-19,-0.006492597050964832,0.0007202881388366222,0.0008822279050946236,-5.692061405548898e-19,-4.365382483229041e-05,-2.188375401601661e-05,0.0026260504964739084,-0.0039390758611261845,-5.692061405548898e-19,0.0007878151373006403,-1.6940658945086007e-20,1.673944241432108e-20,0.0007202881388366222,-0.00028811523225158453,-4.365382483229041e-05,-1.6940658945086007e-20,1.7461530660511926e-05,2.445114386757639e-21,0.00011671335232676938,-1.3348540539604107e-19,-2.188375401601661e-05,1.673944241432108e-20,2.445114386757639e-21,6.63144021473272e-07,6.0,35.0,0.0859287828207016,-0.028401359915733337,-0.006140834651887417,0.0025510203558951616,0.0006802721181884408,0.00010725011088652536,-0.028401359915733337,0.02539115585386753,0.0006802721181884408,-0.0038265306502580643,-0.0002721088530961424,-2.015043799245713e-20,-0.006140834651887417,0.0006802721181884408,0.0008097260142676532,-5.421010862427522e-20,-4.001600609626621e-05,-1.9500019334373064e-05,0.0025510203558951616,-0.0038265306502580643,-5.421010862427522e-20,0.0007653061184100807,-4.0657581468206416e-20,5.039753786137742e-21,0.0006802721181884408,-0.0002721088530961424,-4.001600609626621e-05,-4.0657581468206416e-20,1.6006402802304365e-05,-7.591674739291218e-22,0.00010725011088652536,-2.015043799245713e-20,-1.9500019334373064e-05,5.039753786137742e-21,-7.591674739291218e-22,5.735299737352761e-07,6.0,36.0,0.08370070904493332,-0.027630308642983437,-0.0058169071562588215,0.0024801588151603937,0.000643500650767237,9.878299169940874e-05,-0.027630308642983437,0.024692997336387634,0.000643500650767237,-0.0037202381063252687,-0.00025740027194842696,-1.6699255330600355e-19,-0.0058169071562588215,0.000643500650767237,0.0007449589320458472,-7.860465750519907e-19,-3.6771463783225045e-05,-1.743229222483933e-05,0.0024801588151603937,-0.0037202381063252687,-7.860465750519907e-19,0.0007440476329065859,-4.0657581468206416e-20,2.530453899696396e-20,0.000643500650767237,-0.00025740027194842696,-3.6771463783225045e-05,-4.0657581468206416e-20,1.4708585695188958e-05,1.4944690908195983e-21,9.878299169940874e-05,-1.6699255330600355e-19,-1.743229222483933e-05,2.530453899696396e-20,1.4944690908195983e-21,4.980655035069503e-07,6.0,37.0,0.08158519864082336,-0.026900019496679306,-0.00551795307546854,0.002413127338513732,0.0006096321740187705,9.11843017092906e-05,-0.026900019496679306,0.02403220906853676,0.0006096321740187705,-0.0036196911241859198,-0.00024385287542827427,1.380463758960819e-19,-0.00551795307546854,0.0006096321740187705,0.0006869217613711953,6.911788849595091e-19,-3.386845492059365e-05,-1.563159457873553e-05,0.002413127338513732,-0.0036196911241859198,6.911788849595091e-19,0.000723938224837184,9.147955830346444e-20,-2.3837711895185892e-20,0.0006096321740187705,-0.00024385287542827427,-3.386845492059365e-05,9.147955830346444e-20,1.354738196823746e-05,-9.513677663094783e-22,9.11843017092906e-05,1.380463758960819e-19,-1.563159457873553e-05,-2.3837711895185892e-20,-9.513677663094783e-22,4.342109605204314e-07,6.0,38.0,0.07957393676042557,-0.026207344606518745,-0.0052414690144360065,0.0023496239446103573,0.0005783690139651299,8.43454763526097e-05,-0.026207344606518745,0.02340587042272091,0.0005783690139651299,-0.0035244361497461796,-0.00023134759976528585,-1.2004784342042007e-19,-0.0052414690144360065,0.0005783690139651299,0.0006347621674649417,-4.0657581468206416e-19,-3.126318915747106e-05,-1.4057580301596317e-05,0.0023496239446103573,-0.0035244361497461796,-4.0657581468206416e-19,0.0007048872066661716,-3.049318610115481e-20,1.1824659139751336e-20,0.0005783690139651299,-0.00023134759976528585,-3.126318915747106e-05,-3.049318610115481e-20,1.2505275662988424e-05,2.751641349258222e-21,8.43454763526097e-05,-1.2004784342042007e-19,-1.4057580301596317e-05,1.1824659139751336e-20,2.751641349258222e-21,3.799345904553775e-07,6.0,39.0,0.07765939831733704,-0.025549450889229774,-0.00498525844886899,0.002289377385750413,0.0005494505749084055,7.817385630914941e-05,-0.025549450889229774,0.02281135506927967,0.0005494505749084055,-0.0034340659622102976,-0.00021978022414259613,1.5101112660344642e-19,-0.00498525844886899,0.0005494505749084055,0.0005877543007954955,1.3213713977167085e-18,-2.891844997066073e-05,-1.2676841834036168e-05,0.002289377385750413,-0.0034340659622102976,1.3213713977167085e-18,0.0006868132040835917,-1.3891340334970526e-19,-2.3971393652579838e-20,0.0005494505749084055,-0.00021978022414259613,-2.891844997066073e-05,-1.3891340334970526e-19,1.1567380170163233e-05,-1.3036925850880826e-21,7.817385630914941e-05,1.5101112660344642e-19,-1.2676841834036168e-05,-2.3971393652579838e-20,-1.3036925850880826e-21,3.336010934162914e-07,6.0,40.0,0.07583478838205338,-0.0249237809330225,-0.004747386556118727,0.0022321429569274187,0.0005226481007412076,7.259000994963571e-05,-0.0249237809330225,0.02224629744887352,0.0005226481007412076,-0.0033482143189758062,-0.0002090592315653339,5.015164065283756e-20,-0.004747386556118727,0.0005226481007412076,0.0005452773766592145,5.421010862427522e-19,-2.6802465072250925e-05,-1.1461580470495392e-05,0.0022321429569274187,-0.0033482143189758062,5.421010862427522e-19,0.0006696428754366934,-1.5246593050577406e-19,-3.96062841850591e-21,0.0005226481007412076,-0.0002090592315653339,-2.6802465072250925e-05,-1.5246593050577406e-19,1.072098621079931e-05,-1.4916959355042715e-21,7.259000994963571e-05,5.015164065283756e-20,-1.1461580470495392e-05,-3.96062841850591e-21,-1.4916959355042715e-21,2.938866998647427e-07,6.0,41.0,0.07409390062093735,-0.024328023195266724,-0.00452614389359951,0.002177700400352478,0.0004977600765414536,6.752559420419857e-05,-0.024328023195266724,0.02170856110751629,0.0004977600765414536,-0.003266550600528717,-0.00019910403352696449,-2.275125119651069e-19,-0.00452614389359951,0.0004977600765414536,0.0005067980964668095,-1.2197274440461925e-18,-2.488800419087056e-05,-1.0388552254880778e-05,0.002177700400352478,-0.003266550600528717,-1.2197274440461925e-18,0.000653310096822679,-2.202285662861181e-20,3.210091501922819e-20,0.0004977600765414536,-0.00019910403352696449,-2.488800419087056e-05,-2.202285662861181e-20,9.955201676348224e-06,2.6402569157443035e-21,6.752559420419857e-05,-2.275125119651069e-19,-1.0388552254880778e-05,3.210091501922819e-20,2.6402569157443035e-21,2.59713829109387e-07,6.0,42.0,0.07243112474679947,-0.023760085925459862,-0.004320015665143728,0.002125850412994623,0.00047460844507440925,6.29215719527565e-05,-0.023760085925459862,0.021196210756897926,0.00047460844507440925,-0.0031887756194919348,-0.0001898433838505298,1.1091348178645305e-19,-0.004320015665143728,0.00047460844507440925,0.0004718569980468601,1.0503208545953324e-18,-2.3151631467044353e-05,-9.438235792913474e-06,0.002125850412994623,-0.0031887756194919348,1.0503208545953324e-18,0.0006377550889737904,-1.0672615135404184e-19,-1.687263626440059e-20,0.00047460844507440925,-0.0001898433838505298,-2.3151631467044353e-05,-1.0672615135404184e-19,9.260652404918801e-06,-9.58591965152875e-22,6.29215719527565e-05,1.1091348178645305e-19,-9.438235792913474e-06,-1.687263626440059e-20,-9.58591965152875e-22,2.3020088235625735e-07,6.0,43.0,0.07084130495786667,-0.0232180617749691,-0.004127655178308487,0.0020764118526130915,0.0004530353471636772,5.87268041272182e-05,-0.0232180617749691,0.020707489922642708,0.0004530353471636772,-0.003114617895334959,-0.00018121414177585393,-1.209267098965606e-19,-0.004127655178308487,0.0004530353471636772,0.000440056377556175,-1.2807138162485021e-18,-2.1573110643657856e-05,-8.594166502007283e-06,0.0020764118526130915,-0.003114617895334959,-1.2807138162485021e-18,0.0006229236023500562,2.185345003916095e-19,1.575909444795223e-20,0.0004530353471636772,-0.00018121414177585393,-2.1573110643657856e-05,2.185345003916095e-19,8.629244803159963e-06,1.8243145292430247e-21,5.87268041272182e-05,-1.209267098965606e-19,-8.594166502007283e-06,1.575909444795223e-20,1.8243145292430247e-21,2.0462300653889542e-07,6.0,44.0,0.06931974738836288,-0.022700216621160507,-0.003947863820940256,0.0020292208064347506,0.00043290044413879514,5.489679460879415e-05,-0.022700216621160507,0.020240800455212593,0.00043290044413879514,-0.003043831093236804,-0.00017316016601398587,9.435738427802178e-20,-0.003947863820940256,0.00043290044413879514,0.0004110511508770287,9.622294280808852e-19,-2.0134903024882078e-05,-7.842399099899922e-06,0.0020292208064347506,-0.003043831093236804,9.622294280808852e-19,0.0006087662186473608,-4.743384504624082e-20,-1.6795249640687134e-20,0.00043290044413879514,-0.00017316016601398587,-2.0134903024882078e-05,-4.743384504624082e-20,8.053961209952831e-06,-2.7867045377992896e-22,5.489679460879415e-05,9.435738427802178e-20,-7.842399099899922e-06,-1.6795249640687134e-20,-2.7867045377992896e-22,1.8238137045045733e-07,6.0,45.0,0.06786216050386429,-0.022204969078302383,-0.003779569175094366,0.0019841270986944437,0.00041407867684029043,5.1392744353506714e-05,-0.022204969078302383,0.019794685766100883,0.00041407867684029043,-0.0029761905316263437,-0.00016563147073611617,-3.442119218035638e-20,-0.003779569175094366,0.00041407867684029043,0.0003845406463369727,-7.115076756936123e-19,-1.8821758203557692e-05,-7.171080596890533e-06,0.0019841270986944437,-0.0029761905316263437,-7.115076756936123e-19,0.0005952381179668009,1.1858461261560205e-19,7.752095170570458e-21,0.00041407867684029043,-0.00016563147073611617,-1.8821758203557692e-05,1.1858461261560205e-19,7.5287030085746665e-06,-1.8102369845341064e-22,5.1392744353506714e-05,-3.442119218035638e-20,-7.171080596890533e-06,7.752095170570458e-21,-1.8102369845341064e-22,1.6297910576668073e-07,6.0,46.0,0.06646458059549332,-0.021730870008468628,-0.003621811745688319,0.0019409938249737024,0.0003964583156630397,4.818069646717049e-05,-0.021730870008468628,0.01936781406402588,0.0003964583156630397,-0.002911490621045232,-0.00015858332335483283,-1.1865511683812512e-19,-0.003621811745688319,0.0003964583156630397,0.00036026228917762637,-3.4558944247975454e-19,-1.7620368453208357e-05,-6.570095138158649e-06,0.0019409938249737024,-0.002911490621045232,-3.4558944247975454e-19,0.0005822981474921107,-1.6263032587282567e-19,1.6115202164004843e-20,0.0003964583156630397,-0.00015858332335483283,-1.7620368453208357e-05,-1.6263032587282567e-19,7.048147836030694e-06,1.268190865614359e-21,4.818069646717049e-05,-1.1865511683812512e-19,-6.570095138158649e-06,1.6115202164004843e-20,1.268190865614359e-21,1.4600210818116466e-07,6.0,47.0,0.06512338668107986,-0.021276595070958138,-0.0034737298265099525,0.0018996960716322064,0.0003799392143264413,4.523085954133421e-05,-0.021276595070958138,0.018958967179059982,0.0003799392143264413,-0.0028495441656559706,-0.00015197567699942738,6.206682517866873e-20,-0.0034737298265099525,0.0003799392143264413,0.0003379859554115683,4.87890977618477e-19,-1.6519095879630186e-05,-6.030781150911935e-06,0.0018996960716322064,-0.0028495441656559706,4.87890977618477e-19,0.0005699088214896619,-7.962109704190423e-20,-6.934548304096833e-21,0.0003799392143264413,-0.00015197567699942738,-1.6519095879630186e-05,-7.962109704190423e-20,6.607638624700485e-06,-1.0065127029248313e-21,4.523085954133421e-05,6.206682517866873e-20,-6.030781150911935e-06,-6.934548304096833e-21,-1.0065127029248313e-21,1.311039312668072e-07,6.0,48.0,0.06383523344993591,-0.020840926095843315,-0.0033345480915158987,0.0018601190531626344,0.00036443150020204484,4.251700738677755e-05,-0.020840926095843315,0.018567025661468506,0.00036443150020204484,-0.0027901786379516125,-0.00014577258843928576,-1.4852872850460638e-20,-0.0033345480915158987,0.00036443150020204484,0.00031750937341712415,6.776263578034403e-20,-1.550772321934346e-05,-5.545696694753133e-06,0.0018601190531626344,-0.0027901786379516125,6.776263578034403e-20,0.0005580357392318547,-4.0657581468206416e-20,1.2316313404647192e-21,0.00036443150020204484,-0.00014577258843928576,-1.550772321934346e-05,-4.0657581468206416e-20,6.203089014888974e-06,2.2482008208625425e-22,4.251700738677755e-05,-1.4852872850460638e-20,-5.545696694753133e-06,1.2316313404647192e-21,2.2482008208625425e-22,1.1799354382446836e-07,6.0,49.0,0.06259703636169434,-0.020422739908099174,-0.0032035671174526215,0.0018221574136987329,0.0003498542355373502,4.001600609626621e-05,-0.020422739908099174,0.018190961331129074,0.0003498542355373502,-0.00273323617875576,-0.00013994169421494007,-1.818351203261371e-19,-0.0032035671174526215,0.0003498542355373502,0.00029865442775189877,-1.463672932855431e-18,-1.4577259207726456e-05,-5.108426194055937e-06,0.0018221574136987329,-0.00273323617875576,-1.463672932855431e-18,0.000546647235751152,8.639736061993863e-20,2.4656798416198118e-20,0.0003498542355373502,-0.00013994169421494007,-1.4577259207726456e-05,8.639736061993863e-20,5.830903774040053e-06,1.979439570768344e-21,4.001600609626621e-05,-1.818351203261371e-19,-5.108426194055937e-06,2.4656798416198118e-20,1.979439570768344e-21,1.0642554570949869e-07,6.0,50.0,0.06140594556927681,-0.02002100832760334,-0.003080155234783888,0.0017857142956927419,0.00033613445702940226,3.77073920390103e-05,-0.02002100832760334,0.017829831689596176,0.00033613445702940226,-0.0026785715017467737,-0.000134453788632527,-1.2844688026391866e-19,-0.003080155234783888,0.00033613445702940226,0.0002812636084854603,-1.0028870095490916e-18,-1.3719773960474413e-05,-4.713424004876288e-06,0.0017857142956927419,-0.0026785715017467737,-1.0028870095490916e-18,0.0005357142654247582,3.7269449679189215e-20,1.659851151745736e-20,0.00033613445702940226,-0.000134453788632527,-1.3719773960474413e-05,3.7269449679189215e-20,5.487909675139235e-06,1.4544016211312982e-21,3.77073920390103e-05,-1.2844688026391866e-19,-4.713424004876288e-06,1.659851151745736e-20,1.4544016211312982e-21,9.619232343993644e-08,6.0,51.0,0.06025932356715202,-0.019634777680039406,-0.002963739912956953,0.0017507002921774983,0.0003232062153983861,3.5573011700762436e-05,-0.019634777680039406,0.017482763156294823,0.0003232062153983861,-0.0026260504964739084,-0.0001292824890697375,8.68297628228022e-20,-0.002963739912956953,0.0003232062153983861,0.00026519750826992095,6.098637220230962e-19,-1.2928247997479048e-05,-4.355878900241805e-06,0.0017507002921774983,-0.0026260504964739084,6.098637220230962e-19,0.0005252101109363139,3.5575383784680614e-20,-1.3197584278339728e-20,0.0003232062153983861,-0.0001292824890697375,-1.2928247997479048e-05,3.5575383784680614e-20,5.171299108042149e-06,-5.864743359614623e-22,3.5573011700762436e-05,8.68297628228022e-20,-4.355878900241805e-06,-1.3197584278339728e-20,-5.864743359614623e-22,8.711757715218482e-08,6.0,52.0,0.059154726564884186,-0.019263166934251785,-0.002853802405297756,0.0017170329811051488,0.00031100973137654364,3.359673064551316e-05,-0.019263166934251785,0.017148947343230247,0.00031100973137654364,-0.002575549529865384,-0.0001244039012817666,8.274652143825342e-20,-0.002853802405297756,0.00031100973137654364,0.00025033234851434827,3.8624702394796095e-19,-1.2196460374980234e-05,-4.031607659271685e-06,0.0017170329811051488,-0.002575549529865384,3.8624702394796095e-19,0.000515109917614609,6.606856988583543e-20,-1.1171374671735543e-20,0.00031100973137654364,-0.0001244039012817666,-1.2196460374980234e-05,6.606856988583543e-20,4.8785841499920934e-06,-7.866659281512269e-22,3.359673064551316e-05,8.274652143825342e-20,-4.031607659271685e-06,-1.1171374671735543e-20,-7.866659281512269e-22,7.905113363904093e-08,6.0,53.0,0.058089882135391235,-0.018905360251665115,-0.002749870764091611,0.0016846361104398966,0.0002994908718392253,3.1764182494953275e-05,-0.018905360251665115,0.016827642917633057,0.0002994908718392253,-0.0025269542820751667,-0.00011979634291492403,2.4761520370320255e-21,-0.002749870764091611,0.0002994908718392253,0.00023655795666854829,2.642742795433417e-19,-1.1518879546201788e-05,-3.736962753464468e-06,0.0016846361104398966,-0.0025269542820751667,2.642742795433417e-19,0.0005053908098489046,-7.962109704190423e-20,-6.683507772942029e-22,0.0002994908718392253,-0.00011979634291492403,-1.1518879546201788e-05,-7.962109704190423e-20,4.6075520003796555e-06,-8.868314343065818e-23,3.1764182494953275e-05,2.4761520370320255e-21,-3.736962753464468e-06,-6.683507772942029e-22,-8.868314343065818e-23,7.186466888242649e-08,6.0,54.0,0.05706268921494484,-0.018560606986284256,-0.002651515183970332,0.0016534391324967146,0.00028860027668997645,3.006253064086195e-05,-0.018560606986284256,0.016518156975507736,0.00028860027668997645,-0.0024801588151603937,-0.0001154401179519482,-4.9950438662356837e-20,-0.002651515183970332,0.00028860027668997645,0.0002237760490970686,-3.2864878353466853e-19,-1.0890576959354803e-05,-3.4687534480326576e-06,0.0016534391324967146,-0.0024801588151603937,-3.2864878353466853e-19,0.0004960317746736109,5.082197683525802e-21,5.4901197023430536e-21,0.00028860027668997645,-0.0001154401179519482,-1.0890576959354803e-05,5.082197683525802e-21,4.356230874691391e-06,6.241996082024016e-22,3.006253064086195e-05,-4.9950438662356837e-20,-3.4687534480326576e-06,5.4901197023430536e-21,6.241996082024016e-22,6.544817665599112e-08,6.0,55.0,0.05607118457555771,-0.01822820119559765,-0.0025583438109606504,0.001623376621864736,0.00027829312602989376,2.8480291803134605e-05,-0.01822820119559765,0.01621985249221325,0.00027829312602989376,-0.002435064874589443,-0.00011131725477753207,-6.473831482683384e-20,-0.0025583438109606504,0.00027829312602989376,0.0002118988340953365,-5.996993266560446e-19,-1.0307153388566803e-05,-3.224183956263005e-06,0.001623376621864736,-0.002435064874589443,-5.996993266560446e-19,0.0004870129923801869,2.0328790734103208e-20,1.0102116906420744e-20,0.00027829312602989376,-0.00011131725477753207,-1.0307153388566803e-05,2.0328790734103208e-20,4.122861355426721e-06,5.130813931558899e-22,2.8480291803134605e-05,-6.473831482683384e-20,-3.224183956263005e-06,1.0102116906420744e-20,5.130813931558899e-22,5.970711214331459e-08,6.0,56.0,0.0551135390996933,-0.01790749281644821,-0.00246999878436327,0.0015943878097459674,0.0002685284707695246,2.7007172320736572e-05,-0.01790749281644821,0.015932129696011543,0.0002685284707695246,-0.00239158165641129,-0.00010741138248704374,-3.162860135180895e-20,-0.00246999878436327,0.0002685284707695246,0.00020084762945771217,2.0328790734103208e-20,-9.764671631273814e-06,-3.0007970508449944e-06,0.0015943878097459674,-0.00239158165641129,2.0328790734103208e-20,0.00047831633128225803,-6.945670167485263e-20,3.957347564933758e-21,0.0002685284707695246,-0.00010741138248704374,-9.764671631273814e-06,-6.945670167485263e-20,3.905868652509525e-06,3.289072619260652e-22,2.7007172320736572e-05,-3.162860135180895e-20,-3.0007970508449944e-06,3.957347564933758e-21,3.289072619260652e-22,5.45599441181821e-08,6.0,57.0,0.05418804660439491,-0.017597874626517296,-0.0023861525114625692,0.0015664160018786788,0.0002592688542790711,2.5633926270529628e-05,-0.017597874626517296,0.015654437243938446,0.0002592688542790711,-0.0023496239446103573,-0.00010370754171162844,-4.6989907551241266e-20,-0.0023861525114625692,0.0002592688542790711,0.00019055185839533806,-4.845028458294598e-19,-9.259601938538253e-06,-2.796428361762082e-06,0.0015664160018786788,-0.0023496239446103573,-4.845028458294598e-19,0.000469924823846668,1.2705494208814505e-20,7.486616238174252e-21,0.0002592688542790711,-0.00010370754171162844,-9.259601938538253e-06,1.2705494208814505e-20,3.7038407754153013e-06,2.772765050059672e-22,2.5633926270529628e-05,-4.6989907551241266e-20,-2.796428361762082e-06,7.486616238174252e-21,2.772765050059672e-22,4.9936222268343045e-08,6.0,58.0,0.05329311639070511,-0.017298780381679535,-0.002306504175066948,0.0015394088113680482,0.00025048007955774665,2.4352229957003146e-05,-0.017298780381679535,0.01538626104593277,0.00025048007955774665,-0.002309113275259733,-0.00010019203182309866,-5.918600067439089e-20,-0.002306504175066948,0.00025048007955774665,0.00018094806000590324,-5.72594272343907e-19,-8.788774721324444e-06,-2.6091674953931943e-06,0.0015394088113680482,-0.002309113275259733,-5.72594272343907e-19,0.0004618226666934788,1.9481757786848908e-20,8.881413195381283e-21,0.00025048007955774665,-0.00010019203182309866,-8.788774721324444e-06,1.9481757786848908e-20,3.5155098885297775e-06,3.5376549336170417e-22,2.4352229957003146e-05,-5.918600067439089e-20,-2.6091674953931943e-06,8.881413195381283e-21,3.5376549336170417e-22,4.577486834023148e-08,6.0,59.0,0.0524272620677948,-0.017009684816002846,-0.0022307783365249634,0.0015133172273635864,0.00024213074357248843,2.31545800488675e-05,-0.017009684816002846,0.015127118676900864,0.00024213074357248843,-0.0022699758410453796,-9.685230179456994e-05,3.8013217528019366e-20,-0.0022307783365249634,0.00024213074357248843,0.00017197903071064502,4.54009659728305e-19,-8.349335985258222e-06,-2.4373241558350855e-06,0.0015133172273635864,-0.0022699758410453796,4.54009659728305e-19,0.00045399516238830984,-2.710505431213761e-20,-6.258353598832091e-21,0.00024213074357248843,-9.685230179456994e-05,-8.349335985258222e-06,-2.710505431213761e-20,3.339734576002229e-06,-1.6856454291232033e-22,2.31545800488675e-05,3.8013217528019366e-20,-2.4373241558350855e-06,-6.258353598832091e-21,-1.6856454291232033e-22,4.2022829660481875e-08,6.0,60.0,0.05158908665180206,-0.016730094328522682,-0.00215872167609632,0.0014880952658131719,0.00023419203353114426,2.2034197172615677e-05,-0.016730094328522682,0.014876561239361763,0.00023419203353114426,-0.0022321429569274187,-9.367681195726618e-05,2.6401369180099336e-20,-0.00215872167609632,0.00023419203353114426,0.00016359319852199405,2.744386749103933e-19,-7.938712769828271e-06,-2.2793997231929097e-06,0.0014880952658131719,-0.0022321429569274187,2.744386749103933e-19,0.00044642857392318547,-3.7269449679189215e-20,-3.412704465426925e-21,0.00023419203353114426,-9.367681195726618e-05,-7.938712769828271e-06,-3.7269449679189215e-20,3.175485289830249e-06,-2.7432169711227346e-22,2.2034197172615677e-05,2.6401369180099336e-20,-2.2793997231929097e-06,-3.412704465426925e-21,-2.7432169711227346e-22,3.86338925295604e-08,6.0,61.0,0.05077728256583214,-0.016459545120596886,-0.002090100897476077,0.001463700202293694,0.0002266374503960833,2.098494951496832e-05,-0.016459545120596886,0.014634169638156891,0.0002266374503960833,-0.002195550361648202,-9.065498306881636e-05,7.367064405853332e-21,-0.002090100897476077,0.0002266374503960833,0.00015574389544781297,3.7269449679189215e-20,-7.554581770818913e-06,-2.1340626972232712e-06,0.001463700202293694,-0.002195550361648202,3.7269449679189215e-20,0.0004391100665088743,-8.470329472543003e-22,-5.863038410317387e-22,0.0002266374503960833,-9.065498306881636e-05,-7.554581770818913e-06,-8.470329472543003e-22,3.0218327538023004e-06,-1.2113287365805208e-22,2.098494951496832e-05,7.367064405853332e-21,-2.1340626972232712e-06,-5.863038410317387e-22,-1.2113287365805208e-22,3.556771233093059e-08,6.0,62.0,0.04999062791466713,-0.016197608783841133,-0.0020247010979801416,0.001440092222765088,0.00021944261970929801,2.00012800632976e-05,-0.016197608783841133,0.014399549923837185,0.00021944261970929801,-0.0021601382177323103,-8.777704351814464e-05,2.672535740834303e-21,-0.0020247010979801416,0.00021944261970929801,0.00014838889183010906,3.1170812458958252e-19,-7.1948397817322984e-06,-2.00012800632976e-06,0.001440092222765088,-0.0021601382177323103,3.1170812458958252e-19,0.00043202764936722815,-9.232659125071874e-20,-5.682366291392216e-22,0.00021944261970929801,-8.777704351814464e-05,-7.1948397817322984e-06,-9.232659125071874e-20,2.8779359126929194e-06,-2.454596557947268e-23,2.00012800632976e-05,2.672535740834303e-21,-2.00012800632976e-06,-5.682366291392216e-22,-2.454596557947268e-23,3.278898219605253e-08,6.0,63.0,0.04922797158360481,-0.015943877398967743,-0.0019623234402388334,0.0014172336086630821,0.00021258502965793014,1.907814475998748e-05,-0.015943877398967743,0.014172335155308247,0.00021258502965793014,-0.002125850412994623,-8.50340147735551e-05,-4.71202854329464e-20,-0.0019623234402388334,0.00021258502965793014,0.00014148987247608602,-4.2012834183813297e-19,-6.857581865915563e-06,-1.8765388176689157e-06,0.0014172336086630821,-0.002125850412994623,-4.2012834183813297e-19,0.00042517005931586027,1.1858461261560205e-20,6.274186352744239e-21,0.00021258502965793014,-8.50340147735551e-05,-6.857581865915563e-06,1.1858461261560205e-20,2.74303260994202e-06,3.90511315902721e-22,1.907814475998748e-05,-4.71202854329464e-20,-1.8765388176689157e-06,6.274186352744239e-21,3.90511315902721e-22,3.026675443607019e-08,6.0,64.0,0.048488229513168335,-0.01569797471165657,-0.0019027846865355968,0.0013950893189758062,0.00020604395831469446,1.8210956113762222e-05,-0.01569797471165657,0.013952180743217468,0.00020604395831469446,-0.0020926338620483875,-8.241758041549474e-05,6.402627953269404e-21,-0.0019027846865355968,0.00020604395831469446,0.00013501204375643283,-6.776263578034403e-21,-6.541078164445935e-06,-1.7623505073061096e-06,0.0013950893189758062,-0.0020926338620483875,-6.776263578034403e-21,0.0004185267898719758,2.541098841762901e-20,-6.623135806103358e-22,0.00020604395831469446,-8.241758041549474e-05,-6.541078164445935e-06,2.541098841762901e-20,2.6164311748289037e-06,-8.619763835581127e-23,1.8210956113762222e-05,6.402627953269404e-21,-1.7623505073061096e-06,-6.623135806103358e-22,-8.619763835581127e-23,2.7973818816917628e-08,7.0,3.0,0.5099206566810608,-0.2083333283662796,-0.375,0.01984127052128315,0.0535714291036129,0.0714285746216774,-0.2083333283662796,0.1726190447807312,0.0535714291036129,-0.02380952425301075,-0.01785714365541935,9.51619744846484e-17,-0.375,0.0535714291036129,1.0892857313156128,2.734381792799951e-18,-0.0535714291036129,-0.4285714328289032,0.01984127052128315,-0.02380952425301075,2.734381792799951e-18,0.003968254197388887,1.734723475976807e-18,-3.101914268979206e-18,0.0535714291036129,-0.01785714365541935,-0.0535714291036129,1.734723475976807e-18,0.01785714365541935,-7.799276222759154e-17,0.0714285746216774,9.51619744846484e-17,-0.4285714328289032,-3.101914268979206e-18,-7.799276222759154e-17,0.2142857164144516,7.0,4.0,0.43511903285980225,-0.16428571939468384,-0.24642856419086456,0.014880952425301075,0.03214285895228386,0.0357142873108387,-0.16428571939468384,0.13214285671710968,0.03214285895228386,-0.01785714365541935,-0.010714286006987095,-0.0,-0.24642856419086456,0.03214285895228386,0.41428571939468384,-1.105266636976897e-18,-0.02142857201397419,-0.1071428582072258,0.014880952425301075,-0.01785714365541935,-1.105266636976897e-18,0.0029761905316263437,4.336808689942018e-19,7.930164376674537e-20,0.03214285895228386,-0.010714286006987095,-0.02142857201397419,4.336808689942018e-19,0.0071428571827709675,-4.039686241093583e-18,0.0357142873108387,-0.0,-0.1071428582072258,7.930164376674537e-20,-4.039686241093583e-18,0.0357142873108387,7.0,5.0,0.378911554813385,-0.13571429252624512,-0.1744897961616516,0.011904762126505375,0.02142857201397419,0.020408162847161293,-0.13571429252624512,0.1071428582072258,0.02142857201397419,-0.014285714365541935,-0.0071428571827709675,-0.0,-0.1744897961616516,0.02142857201397419,0.20969387888908386,0.0,-0.010714286006987095,-0.040816325694322586,0.011904762126505375,-0.014285714365541935,0.0,0.0023809524718672037,1.0842021724855044e-19,-0.0,0.02142857201397419,-0.0071428571827709675,-0.010714286006987095,1.0842021724855044e-19,0.0035714285913854837,-0.0,0.020408162847161293,-0.0,-0.040816325694322586,-0.0,-0.0,0.010204081423580647,7.0,6.0,0.335317462682724,-0.11564625799655914,-0.1301020383834839,0.009920635260641575,0.015306122601032257,0.012755102477967739,-0.11564625799655914,0.09013605117797852,0.015306122601032257,-0.011904762126505375,-0.005102040711790323,-2.168404344971009e-18,-0.1301020383834839,0.015306122601032257,0.12219388037919998,-0.0,-0.006122448947280645,-0.01913265325129032,0.009920635260641575,-0.011904762126505375,-0.0,0.0019841270986944437,-1.0842021724855044e-19,5.421010862427522e-20,0.015306122601032257,-0.005102040711790323,-0.006122448947280645,-1.0842021724855044e-19,0.0020408162381500006,8.673617379884035e-19,0.012755102477967739,-2.168404344971009e-18,-0.01913265325129032,5.421010862427522e-20,8.673617379884035e-19,0.0038265306502580643,7.0,7.0,0.300595223903656,-0.10076530277729034,-0.10076530277729034,0.008503401651978493,0.011479591950774193,0.008503401651978493,-0.10076530277729034,0.07780612260103226,0.011479591950774193,-0.010204081423580647,-0.0038265306502580643,-3.469446951953614e-18,-0.10076530277729034,0.011479591950774193,0.07780612260103226,3.670061411554875e-18,-0.0038265306502580643,-0.010204081423580647,0.008503401651978493,-0.010204081423580647,3.670061411554875e-18,0.001700680237263441,-4.515453335871447e-19,-2.1026896274415871e-19,0.011479591950774193,-0.0038265306502580643,-0.0038265306502580643,-4.515453335871447e-19,0.0012755101779475808,1.8973538018496328e-18,0.008503401651978493,-3.469446951953614e-18,-0.010204081423580647,-2.1026896274415871e-19,1.8973538018496328e-18,0.001700680237263441,7.0,8.0,0.2723214328289032,-0.0892857164144516,-0.0803571417927742,0.0074404762126505375,0.008928571827709675,0.0059523810632526875,-0.0892857164144516,0.0684523805975914,0.008928571827709675,-0.008928571827709675,-0.0029761905316263437,-1.0842021724855044e-18,-0.0803571417927742,0.008928571827709675,0.052721086889505386,-1.8291301421247611e-19,-0.0025510203558951616,-0.0059523810632526875,0.0074404762126505375,-0.008928571827709675,-1.8291301421247611e-19,0.0014880952658131719,6.306074084578802e-20,-6.453584379265945e-21,0.008928571827709675,-0.0029761905316263437,-0.0025510203558951616,6.306074084578802e-20,0.0008503401186317205,2.710505431213761e-19,0.0059523810632526875,-1.0842021724855044e-18,-0.0059523810632526875,-6.453584379265945e-21,2.710505431213761e-19,0.0008503401186317205,7.0,9.0,0.2488696426153183,-0.08015873283147812,-0.06558441370725632,0.006613756529986858,0.0071428571827709675,0.0043290043249726295,-0.08015873283147812,0.06111111119389534,0.0071428571827709675,-0.007936508394777775,-0.0023809524718672037,8.673617379884035e-19,-0.06558441370725632,0.0071428571827709675,0.037422697991132736,-0.0,-0.0017857142956927419,-0.003710575168952346,0.006613756529986858,-0.007936508394777775,-0.0,0.0013227512827143073,0.0,0.0,0.0071428571827709675,-0.0023809524718672037,-0.0017857142956927419,0.0,0.0005952381179668009,-2.168404344971009e-19,0.0043290043249726295,8.673617379884035e-19,-0.003710575168952346,0.0,-2.168404344971009e-19,0.00046382189611904323,7.0,10.0,0.22911255061626434,-0.072727270424366,-0.05454545468091965,0.0059523810632526875,0.005844155792146921,0.003246753243729472,-0.072727270424366,0.055194806307554245,0.005844155792146921,-0.0071428571827709675,-0.0019480519695207477,1.0842021724855044e-19,-0.05454545468091965,0.005844155792146921,0.027543289586901665,-0.0,-0.0012987012742087245,-0.002435064874589443,0.0059523810632526875,-0.0071428571827709675,-0.0,0.0011904762359336019,0.0,0.0,0.005844155792146921,-0.0019480519695207477,-0.0012987012742087245,0.0,0.00043290044413879514,0.0,0.003246753243729472,1.0842021724855044e-19,-0.002435064874589443,0.0,0.0,0.00027056277031078935,7.0,11.0,0.2122460901737213,-0.06655844300985336,-0.04607892036437988,0.005411255639046431,0.004870129749178886,0.002497502602636814,-0.06655844300985336,0.05032467469573021,0.004870129749178886,-0.006493506487458944,-0.001623376621864736,-2.710505431213761e-19,-0.04607892036437988,0.004870129749178886,0.020870795473456383,-0.0,-0.0009740259847603738,-0.0016650016186758876,0.005411255639046431,-0.006493506487458944,-0.0,0.0010822510812431574,0.0,0.0,0.004870129749178886,-0.001623376621864736,-0.0009740259847603738,0.0,0.0003246753185521811,5.421010862427522e-20,0.002497502602636814,-2.710505431213761e-19,-0.0016650016186758876,0.0,5.421010862427522e-20,0.00016650016186758876,7.0,12.0,0.19768227636814117,-0.061355311423540115,-0.039442699402570724,0.004960317630320787,0.004120879340916872,0.0019623234402388334,-0.061355311423540115,0.04624542221426964,0.004120879340916872,-0.0059523810632526875,-0.0013736264081671834,1.483565489213989e-18,-0.039442699402570724,0.004120879340916872,0.016198087483644485,3.903127820947816e-18,-0.0007492507575079799,-0.0011773940641433,0.004960317630320787,-0.0059523810632526875,3.903127820947816e-18,0.0009920635493472219,-6.369687763352339e-19,-1.944407454006829e-19,0.004120879340916872,-0.0013736264081671834,-0.0007492507575079799,-6.369687763352339e-19,0.00024975024280138314,-5.437713448452558e-20,0.0019623234402388334,1.483565489213989e-18,-0.0011773940641433,-1.944407454006829e-19,-5.437713448452558e-20,0.00010703581938287243,7.0,13.0,0.18498168885707855,-0.056907378137111664,-0.03414442762732506,0.004578754771500826,0.0035321821924299,0.0015698587521910667,-0.056907378137111664,0.04277864843606949,0.0035321821924299,-0.005494505632668734,-0.0011773940641433,-4.221657704049123e-18,-0.03414442762732506,0.0035321821924299,0.012826459482312202,-9.324138683375338e-18,-0.00058869703207165,-0.0008562865550629795,0.004578754771500826,-0.005494505632668734,-9.324138683375338e-18,0.0009157509193755686,8.402566836762659e-19,5.390321427726039e-19,0.0035321821924299,-0.0011773940641433,-0.00058869703207165,8.402566836762659e-19,0.00019623234402388334,1.0599682362301442e-19,0.0015698587521910667,-4.221657704049123e-18,-0.0008562865550629795,5.390321427726039e-19,1.0599682362301442e-19,7.135721534723416e-05,7.0,14.0,0.17380952835083008,-0.05306122452020645,-0.02984693832695484,0.004251700825989246,0.0030612244736403227,0.0012755101779475808,-0.05306122452020645,0.03979591652750969,0.0030612244736403227,-0.005102040711790323,-0.0010204081190750003,-1.125662429340617e-18,-0.02984693832695484,0.0030612244736403227,0.010331632569432259,-3.577867169202165e-18,-0.00047095760237425566,-0.0006377550889737904,0.004251700825989246,-0.005102040711790323,-3.577867169202165e-18,0.0008503401186317205,6.911788849595091e-19,9.149511963873809e-20,0.0030612244736403227,-0.0010204081190750003,-0.00047095760237425566,6.911788849595091e-19,0.00015698587230872363,6.78568115855529e-20,0.0012755101779475808,-1.125662429340617e-18,-0.0006377550889737904,9.149511963873809e-20,6.78568115855529e-20,4.9058086005970836e-05,7.0,15.0,0.16390639543533325,-0.04970237985253334,-0.026313025504350662,0.003968254197388887,0.0026785715017467737,0.0010504202218726277,-0.04970237985253334,0.0372023805975914,0.0026785715017467737,-0.004761904943734407,-0.0008928571478463709,-2.3289833663222796e-19,-0.026313025504350662,0.0026785715017467737,0.008445493876934052,-1.4094628242311558e-18,-0.00038265305920504034,-0.00048480930854566395,0.003968254197388887,-0.004761904943734407,-1.4094628242311558e-18,0.0007936508045531809,3.6591823321385775e-19,2.7026220122352186e-20,0.0026785715017467737,-0.0008928571478463709,-0.00038265305920504034,3.6591823321385775e-19,0.00012755101488437504,9.704748710555646e-21,0.0010504202218726277,-2.3289833663222796e-19,-0.00048480930854566395,2.7026220122352186e-20,9.704748710555646e-21,3.462923632469028e-05,7.0,16.0,0.1550682783126831,-0.04674369841814041,-0.023371849209070206,0.0037202381063252687,0.002363445470109582,0.0008753501460887492,-0.04674369841814041,0.03492647036910057,0.002363445470109582,-0.004464285913854837,-0.0007878151373006403,-2.5683879437613317e-18,-0.023371849209070206,0.002363445470109582,0.006992796901613474,-4.553649124439119e-18,-0.00031512606074102223,-0.00037515006260946393,0.0037202381063252687,-0.004464285913854837,-4.553649124439119e-18,0.0007440476329065859,1.3552527156068805e-20,2.9775413049308994e-19,0.002363445470109582,-0.0007878151373006403,-0.00031512606074102223,1.3552527156068805e-20,0.0001050420178216882,8.046700554051334e-20,0.0008753501460887492,-2.5683879437613317e-18,-0.00037515006260946393,2.9775413049308994e-19,8.046700554051334e-20,2.501000381016638e-05,7.0,17.0,0.1471325308084488,-0.04411764815449715,-0.02089783363044262,0.0035014005843549967,0.0021008404437452555,0.0007371369865722954,-0.04411764815449715,0.03291316702961922,0.0021008404437452555,-0.004201680887490511,-0.0007002801285125315,5.896903378465764e-20,-0.02089783363044262,0.0021008404437452555,0.005855631548911333,3.2526065174565133e-19,-0.00026260505546815693,-0.0002948547771666199,0.0035014005843549967,-0.004201680887490511,3.2526065174565133e-19,0.0007002801285125315,-1.3552527156068805e-19,-5.813463311320325e-21,0.0021008404437452555,-0.0007002801285125315,-0.00026260505546815693,-1.3552527156068805e-19,8.753501606406644e-05,8.126965709750926e-22,0.0007371369865722954,5.896903378465764e-20,-0.0002948547771666199,-5.813463311320325e-21,8.126965709750926e-22,1.8428423572913744e-05,7.0,18.0,0.13996797800064087,-0.041771095246076584,-0.01879699155688286,0.003306878264993429,0.001879699295386672,0.0006265664123930037,-0.041771095246076584,0.031119465827941895,0.001879699295386672,-0.003968254197388887,-0.0006265664123930037,5.922829286814708e-19,-0.01879699155688286,0.001879699295386672,0.004952638875693083,3.7947076036992655e-19,-0.00022114109015092254,-0.000234962411923334,0.003306878264993429,-0.003968254197388887,3.7947076036992655e-19,0.0006613756413571537,3.049318610115481e-19,-5.929806426034622e-20,0.001879699295386672,-0.0006265664123930037,-0.00022114109015092254,3.049318610115481e-19,7.371369429165497e-05,-2.9128021435364074e-20,0.0006265664123930037,5.922829286814708e-19,-0.000234962411923334,-5.929806426034622e-20,-2.9128021435364074e-20,1.3821318134432659e-05,7.0,19.0,0.13346759974956512,-0.039661653339862823,-0.01699785143136978,0.0031328320037573576,0.0016917292959988117,0.0005370569415390491,-0.039661653339862823,0.029511278495192528,0.0016917292959988117,-0.003759398590773344,-0.0005639097653329372,1.622021565082529e-18,-0.01699785143136978,0.0016917292959988117,0.004226427525281906,4.9873299934333204e-18,-0.00018796992662828416,-0.00018954950792249292,0.0031328320037573576,-0.003759398590773344,4.9873299934333204e-18,0.0006265664123930037,-3.2526065174565133e-19,-2.0091074535691953e-19,0.0016917292959988117,-0.0005639097653329372,-0.00018796992662828416,-3.2526065174565133e-19,6.265663978410885e-05,-3.4173002453673525e-20,0.0005370569415390491,1.622021565082529e-18,-0.00018954950792249292,-2.0091074535691953e-19,-3.4173002453673525e-20,1.053052801580634e-05,7.0,20.0,0.12754328548908234,-0.037755101919174194,-0.015445268712937832,0.0029761905316263437,0.0015306122368201613,0.00046382189611904323,-0.037755101919174194,0.02806122414767742,0.0015306122368201613,-0.0035714285913854837,-0.0005102040595375001,1.4397232623874535e-18,-0.015445268712937832,0.0015306122368201613,0.00363571266643703,5.5294310796760726e-18,-0.0001611170737305656,-0.00015460730355698615,0.0029761905316263437,-0.0035714285913854837,5.5294310796760726e-18,0.0005952381179668009,-5.692061405548898e-19,-1.771439464278016e-19,0.0015306122368201613,-0.0005102040595375001,-0.0001611170737305656,-5.692061405548898e-19,5.370569124352187e-05,-3.3230291205175835e-20,0.00046382189611904323,1.4397232623874535e-18,-0.00015460730355698615,-1.771439464278016e-19,-3.3230291205175835e-20,8.137226359394845e-06,7.0,21.0,0.12212184071540833,-0.03602350130677223,-0.014096152037382126,0.0028344672173261642,0.0013914656592532992,0.00040332338539883494,-0.03602350130677223,0.02674706280231476,0.0013914656592532992,-0.003401360474526882,-0.00046382189611904323,1.6598220388655832e-19,-0.014096152037382126,0.0013914656592532992,0.0031502740457654,-1.1926223897340549e-18,-0.00013914656301494688,-0.00012736527423840016,0.0028344672173261642,-0.003401360474526882,-1.1926223897340549e-18,0.0005668934318237007,3.7947076036992655e-19,-4.087331647275007e-21,0.0013914656592532992,-0.00046382189611904323,-0.00013914656301494688,3.7947076036992655e-19,4.638218888430856e-05,-8.59735824211958e-21,0.00040332338539883494,1.6598220388655832e-19,-0.00012736527423840016,-4.087331647275007e-21,-8.59735824211958e-21,6.368264166667359e-06,7.0,22.0,0.11714191734790802,-0.03444381803274155,-0.01291643176227808,0.0027056278195232153,0.0012704686960205436,0.00035290795494802296,-0.03444381803274155,0.025550536811351776,0.0012704686960205436,-0.003246753243729472,-0.00042348954593762755,7.316689106548852e-19,-0.01291643176227808,0.0012704686960205436,0.0027476404793560505,1.0299920638612292e-18,-0.00012099701416445896,-0.00010587238648440689,0.0027056278195232153,-0.003246753243729472,1.0299920638612292e-18,0.0005411255406215787,3.015437292225309e-19,-9.397643529419843e-20,0.0012704686960205436,-0.00042348954593762755,-0.00012099701416445896,3.015437292225309e-19,4.0332339267479256e-05,-1.280392466274048e-20,0.00035290795494802296,7.316689106548852e-19,-0.00010587238648440689,-9.397643529419843e-20,-1.280392466274048e-20,5.041542408434907e-06,7.0,23.0,0.11255175620317459,-0.03299689292907715,-0.011878881603479385,0.0025879917666316032,0.0011645962949842215,0.0003105590003542602,-0.03299689292907715,0.02445652149617672,0.0011645962949842215,-0.003105590119957924,-0.0003881987649947405,1.0865045263229692e-18,-0.011878881603479385,0.0011645962949842215,0.0024108656216412783,3.74049749507499e-18,-0.00010587238648440689,-8.873114711605012e-05,0.0025879917666316032,-0.003105590119957924,3.74049749507499e-18,0.0005175983533263206,-2.439454888092385e-19,-1.3322331838883248e-19,0.0011645962949842215,-0.0003881987649947405,-0.00010587238648440689,-2.439454888092385e-19,3.5290795494802296e-05,-2.0179613880508098e-20,0.0003105590003542602,1.0865045263229692e-18,-8.873114711605012e-05,-1.3322331838883248e-19,-2.0179613880508098e-20,4.033233835798455e-06,7.0,24.0,0.108307383954525,-0.03166666626930237,-0.010961538180708885,0.0024801588151603937,0.0010714285308495164,0.00027472528745420277,-0.03166666626930237,0.023452380672097206,0.0010714285308495164,-0.0029761905316263437,-0.0003571428533177823,9.151842286755736e-20,-0.010961538180708885,0.0010714285308495164,0.002127003390341997,1.6805133673525319e-18,-9.316769865108654e-05,-7.492507575079799e-05,0.0024801588151603937,-0.0029761905316263437,1.6805133673525319e-18,0.0004960317746736109,-3.2864878353466853e-19,-1.8063884590814922e-20,0.0010714285308495164,-0.0003571428533177823,-9.316769865108654e-05,-3.2864878353466853e-19,3.105590076302178e-05,6.165648987657023e-22,0.00027472528745420277,9.151842286755736e-20,-7.492507575079799e-05,-1.8063884590814922e-20,6.165648987657023e-22,3.257611979279318e-06,7.0,25.0,0.10437118262052536,-0.03043956123292446,-0.010146520100533962,0.0023809524718672037,0.0009890110231935978,0.00024420025874860585,-0.03043956123292446,0.02252747304737568,0.0009890110231935978,-0.0028571428265422583,-0.00032967032166197896,-6.204273354332813e-19,-0.010146520100533962,0.0009890110231935978,0.0018860487034544349,-2.3310346708438345e-18,-8.241758041549474e-05,-6.370441406033933e-05,0.0023809524718672037,-0.0028571428265422583,-2.3310346708438345e-18,0.0004761904710903764,1.0164395367051604e-19,8.214308671904745e-20,0.0009890110231935978,-0.00032967032166197896,-8.241758041549474e-05,1.0164395367051604e-19,2.7472528017824516e-05,7.542550288130316e-21,0.00024420025874860585,-6.204273354332813e-19,-6.370441406033933e-05,8.214308671904745e-20,7.542550288130316e-21,2.654350510056247e-06,7.0,26.0,0.10071079432964325,-0.029304029420018196,-0.0094191525131464,0.002289377385750413,0.0009157509193755686,0.00021803592971991748,-0.029304029420018196,0.021672772243618965,0.0009157509193755686,-0.002747252816334367,-0.0003052503161597997,3.090965086005995e-19,-0.0094191525131464,0.0009157509193755686,0.001680184854194522,1.0570971181733668e-18,-7.326007471419871e-05,-5.450898242997937e-05,0.002289377385750413,-0.002747252816334367,1.0570971181733668e-18,0.0004578754596877843,-8.470329472543003e-20,-2.8131679156369684e-20,0.0009157509193755686,-0.0003052503161597997,-7.326007471419871e-05,-8.470329472543003e-20,2.44200236920733e-05,-8.223535613143833e-21,0.00021803592971991748,3.090965086005995e-19,-5.450898242997937e-05,-2.8131679156369684e-20,-8.223535613143833e-21,2.180359388148645e-06,7.0,27.0,0.09729824215173721,-0.028250189498066902,-0.00876730028539896,0.002204585587605834,0.0008503401186317205,0.0001954804902197793,-0.028250189498066902,0.020880574360489845,0.0008503401186317205,-0.0026455025654286146,-0.00028344671591185033,-7.932270714556221e-19,-0.00876730028539896,0.0008503401186317205,0.00150324497371912,-2.6969529040576923e-18,-6.541077891597524e-05,-4.691531648859382e-05,0.002204585587605834,-0.0026455025654286146,-2.6969529040576923e-18,0.00044091709423810244,-1.3552527156068805e-20,9.806806480714637e-20,0.0008503401186317205,-0.00028344671591185033,-6.541077891597524e-05,-1.3552527156068805e-20,2.1803592971991748e-05,1.2192566296436335e-20,0.0001954804902197793,-7.932270714556221e-19,-4.691531648859382e-05,9.806806480714637e-20,1.2192566296436335e-20,1.804435328267573e-06,7.0,28.0,0.0941091924905777,-0.027269529178738594,-0.008180858567357063,0.002125850412994623,0.000791696016676724,0.0001759324368322268,-0.027269529178738594,0.0201442651450634,0.000791696016676724,-0.0025510203558951616,-0.00026389866252429783,-2.705339429794426e-19,-0.008180858567357063,0.000791696016676724,0.0013503191294148564,-1.4907779871675686e-18,-5.864414561074227e-05,-4.059979255544022e-05,0.002125850412994623,-0.0025510203558951616,-1.4907779871675686e-18,0.00042517005931586027,1.3213713977167085e-19,3.356396164711295e-20,0.000791696016676724,-0.00026389866252429783,-5.864414561074227e-05,1.3213713977167085e-19,1.9548049749573693e-05,4.342142050032553e-21,0.0001759324368322268,-2.705339429794426e-19,-4.059979255544022e-05,3.356396164711295e-20,4.342142050032553e-21,1.5036961258374504e-06,7.0,29.0,0.09112241119146347,-0.026354679837822914,-0.0076513588428497314,0.0020525450818240643,0.0007389162783510983,0.00015890672511886805,-0.026354679837822914,0.01945812813937664,0.0007389162783510983,-0.002463054144755006,-0.00024630542611703277,3.9276070938029806e-19,-0.0076513588428497314,0.0007389162783510983,0.0012174651492387056,1.6195269951502222e-18,-5.2779731049668044e-05,-3.531260517775081e-05,0.0020525450818240643,-0.002463054144755006,1.6195269951502222e-18,0.0004105090338271111,-4.743384504624082e-20,-4.9731642927988025e-20,0.0007389162783510983,-0.00024630542611703277,-5.2779731049668044e-05,-4.743384504624082e-20,1.759324368322268e-05,-5.428184957874929e-21,0.00015890672511886805,3.9276070938029806e-19,-3.531260517775081e-05,-4.9731642927988025e-20,-5.428184957874929e-21,1.2611644706339575e-06,7.0,30.0,0.08831924945116043,-0.02549923211336136,-0.0071716587990522385,0.0019841270986944437,0.0006912442622706294,0.00014400921645574272,-0.02549923211336136,0.018817204982042313,0.0006912442622706294,-0.0023809524718672037,-0.0002304147492395714,1.6071801354357378e-19,-0.0071716587990522385,0.0006912442622706294,0.0011014931369572878,1.5788694136820158e-18,-4.767201608046889e-05,-3.0859118851367384e-05,0.0019841270986944437,-0.0023809524718672037,1.5788694136820158e-18,0.00039682540227659047,-2.236166980751353e-19,-2.433646141487702e-20,0.0006912442622706294,-0.0002304147492395714,-4.767201608046889e-05,-2.236166980751353e-19,1.5890671420493163e-05,-6.454185781576536e-22,0.00014400921645574272,1.6071801354357378e-19,-3.0859118851367384e-05,-2.433646141487702e-20,-6.454185781576536e-22,1.064107550519111e-06,7.0,31.0,0.08568330109119415,-0.02469758130609989,-0.006735703907907009,0.0019201228860765696,0.0006480414886027575,0.00013091746950522065,-0.02469758130609989,0.018217165023088455,0.0006480414886027575,-0.0023041474632918835,-0.00021601382468361408,1.952754611116284e-19,-0.006735703907907009,0.0006480414886027575,0.000999803189188242,1.2061749168901237e-18,-4.320276639191434e-05,-2.7086372938356362e-05,0.0019201228860765696,-0.0023041474632918835,1.2061749168901237e-18,0.0003840245772153139,-1.3044307387716225e-19,-2.465694866580157e-20,0.0006480414886027575,-0.00021601382468361408,-4.320276639191434e-05,-1.3044307387716225e-19,1.4400921827473212e-05,-2.4430561287490597e-21,0.00013091746950522065,1.952754611116284e-19,-2.7086372938356362e-05,-2.465694866580157e-20,-2.4430561287490597e-21,9.028790941556508e-07,7.0,32.0,0.08320004492998123,-0.023944804444909096,-0.006338330917060375,0.0018601190531626344,0.0006087662186473608,0.00011936592636629939,-0.023944804444909096,0.01765422150492668,0.0006087662186473608,-0.0022321429569274187,-0.000202922077733092,-1.9641609147755073e-19,-0.006338330917060375,0.0006087662186473608,0.0009102614712901413,-1.0638733817514012e-18,-3.9275240851566195e-05,-2.387318636465352e-05,0.0018601190531626344,-0.0022321429569274187,-1.0638733817514012e-18,0.00037202381645329297,4.743384504624082e-20,2.6434462866949993e-20,0.0006087662186473608,-0.000202922077733092,-3.9275240851566195e-05,4.743384504624082e-20,1.3091746950522065e-05,1.6013533063720587e-21,0.00011936592636629939,-1.9641609147755073e-19,-2.387318636465352e-05,2.6434462866949993e-20,1.6013533063720587e-21,7.701027584516851e-07,7.0,33.0,0.08085658401250839,-0.02323656715452671,-0.005975117441266775,0.001803751802071929,0.0005729564581997693,0.00010913456208072603,-0.02323656715452671,0.017125030979514122,0.0005729564581997693,-0.0021645021624863148,-0.00019098549091722816,1.3918426945739943e-20,-0.005975117441266775,0.0005729564581997693,0.0008311059209518135,-7.453889935837843e-20,-3.580977863748558e-05,-2.1122817997820675e-05,0.001803751802071929,-0.0021645021624863148,-7.453889935837843e-20,0.0003607503604143858,4.743384504624082e-20,-2.3944544210001676e-21,0.0005729564581997693,-0.00019098549091722816,-3.580977863748558e-05,4.743384504624082e-20,1.193659318232676e-05,1.66397901726251e-22,0.00010913456208072603,1.3918426945739943e-20,-2.1122817997820675e-05,-2.3944544210001676e-21,1.66397901726251e-22,6.600880624318961e-07,7.0,34.0,0.07864145934581757,-0.022569026798009872,-0.005642256699502468,0.0017507002921774983,0.0005402161041274667,0.00010004001524066553,-0.022569026798009872,0.016626650467514992,0.0005402161041274667,-0.0021008404437452555,-0.00018007203470915556,-3.2778580151122844e-19,-0.005642256699502468,0.0005402161041274667,0.0007608725572936237,-1.0503208545953324e-18,-3.274036862421781e-05,-1.8757502402877435e-05,0.0017507002921774983,-0.0021008404437452555,-1.0503208545953324e-18,0.00035014006425626576,-1.2366681029912785e-19,4.108214161112206e-20,0.0005402161041274667,-0.00018007203470915556,-3.274036862421781e-05,-1.2366681029912785e-19,1.0913456208072603e-05,4.1756170217937036e-21,0.00010004001524066553,-3.2778580151122844e-19,-1.8757502402877435e-05,4.108214161112206e-20,4.1756170217937036e-21,5.684091775037814e-07,7.0,35.0,0.07654440402984619,-0.02193877473473549,-0.005336458794772625,0.001700680237263441,0.0005102040595375001,9.192866127705202e-05,-0.02193877473473549,0.01615646295249462,0.0005102040595375001,-0.0020408162381500006,-0.0001700680295471102,-3.393242472733072e-19,-0.005336458794772625,0.0005102040595375001,0.0006983383209444582,-1.8431436932253575e-18,-3.0012004572199658e-05,-1.6714302546461113e-05,0.001700680237263441,-0.0020408162381500006,-1.8431436932253575e-18,0.0003401360590942204,7.623296525288703e-20,4.35472884705464e-20,0.0005102040595375001,-0.0001700680295471102,-3.0012004572199658e-05,7.623296525288703e-20,1.0004001524066553e-05,3.398347550361588e-21,9.192866127705202e-05,-3.393242472733072e-19,-1.6714302546461113e-05,4.35472884705464e-20,3.398347550361588e-21,4.915971203445224e-07,7.0,36.0,0.07455623149871826,-0.021342771127820015,-0.005054866895079613,0.0016534391324967146,0.0004826254735235125,8.467114093946293e-05,-0.021342771127820015,0.015712140128016472,0.0004826254735235125,-0.0019841270986944437,-0.00016087516269180924,-6.664207100662463e-20,-0.005054866895079613,0.0004826254735235125,0.0006424760795198381,1.6263032587282567e-19,-2.7578598746913485e-05,-1.4941965673642699e-05,0.0016534391324967146,-0.0019841270986944437,1.6263032587282567e-19,0.0003306878206785768,-1.5924219408380846e-19,1.1444367699891483e-20,0.0004826254735235125,-0.00016087516269180924,-2.7578598746913485e-05,-1.5924219408380846e-19,9.192865945806261e-06,-4.317894409559329e-22,8.467114093946293e-05,-6.664207100662463e-20,-1.4941965673642699e-05,1.1444367699891483e-20,-4.317894409559329e-22,4.2691328872024314e-07,7.0,37.0,0.07266867905855179,-0.020778296515345573,-0.004794991575181484,0.001608751597814262,0.00045722414506599307,7.815797289367765e-05,-0.020778296515345573,0.0152916070073843,0.00045722414506599307,-0.00193050189409405,-0.00015240804350469261,1.698099563217533e-19,-0.004794991575181484,0.00045722414506599307,0.0005924188299104571,4.811147140404426e-19,-2.5401341190445237e-05,-1.3398509508988354e-05,0.001608751597814262,-0.00193050189409405,4.811147140404426e-19,0.0003217503253836185,9.317362419797304e-20,-2.162832701934096e-20,0.00045722414506599307,-0.00015240804350469261,-2.5401341190445237e-05,9.317362419797304e-20,8.467113730148412e-06,-1.6450561500342049e-21,7.815797289367765e-05,1.698099563217533e-19,-1.3398509508988354e-05,-2.162832701934096e-20,-1.6450561500342049e-21,3.7218083548395953e-07,7.0,38.0,0.07087430357933044,-0.02024291455745697,-0.004554655868560076,0.0015664160018786788,0.0004337767604738474,7.229612674564123e-05,-0.02024291455745697,0.01489300187677145,0.0004337767604738474,-0.001879699295386672,-0.00014459225349128246,-8.580874406592473e-20,-0.004554655868560076,0.0004337767604738474,0.0005474314675666392,-2.371692252312041e-19,-2.3447391868103296e-05,-1.2049354154441971e-05,0.0015664160018786788,-0.001879699295386672,-2.371692252312041e-19,0.00031328320619650185,-4.0657581468206416e-20,1.0926519516897043e-20,0.0004337767604738474,-0.00014459225349128246,-2.3447391868103296e-05,-4.0657581468206416e-20,7.815797289367765e-06,9.336327595213678e-22,7.229612674564123e-05,-8.580874406592473e-20,-1.2049354154441971e-05,1.0926519516897043e-20,9.336327595213678e-22,3.2565822039032355e-07,7.0,39.0,0.06916636973619461,-0.01973443292081356,-0.004331948701292276,0.001526251551695168,0.00041208791662938893,6.700616359012201e-05,-0.01973443292081356,0.014514652080833912,0.00041208791662938893,-0.0018315018387511373,-0.00013736264372710139,-7.642900059571356e-20,-0.004331948701292276,0.00041208791662938893,0.0005068877944722772,-2.846030702774449e-19,-2.168883838749025e-05,-1.0865864169318229e-05,0.001526251551695168,-0.0018315018387511373,-2.846030702774449e-19,0.0003052503161597997,-1.6940658945086007e-20,7.631588526253407e-21,0.00041208791662938893,-0.00013736264372710139,-2.168883838749025e-05,-1.6940658945086007e-20,7.229612492665183e-06,1.1063102464886677e-21,6.700616359012201e-05,-7.642900059571356e-20,-1.0865864169318229e-05,7.631588526253407e-21,1.1063102464886677e-21,2.859437984170654e-07,7.0,40.0,0.067538782954216,-0.01925087161362171,-0.004125186707824469,0.0014880952658131719,0.0003919860755559057,6.22200095676817e-05,-0.01925087161362171,0.014155052602291107,0.0003919860755559057,-0.0017857142956927419,-0.0001306620251853019,7.14511116799004e-20,-0.004125186707824469,0.0003919860755559057,0.00047025230014696717,4.404571325722362e-19,-2.0101850168430246e-05,-9.824211701925378e-06,0.0014880952658131719,-0.0017857142956927419,4.404571325722362e-19,0.00029761905898340046,-5.759824041329242e-20,-5.4871175375514976e-21,0.0003919860755559057,-0.0001306620251853019,-2.0101850168430246e-05,-5.759824041329242e-20,6.700616268062731e-06,-1.5784096466642784e-21,6.22200095676817e-05,7.14511116799004e-20,-9.824211701925378e-06,-5.4871175375514976e-21,-1.5784096466642784e-21,2.5190286123688566e-07,7.0,41.0,0.06598600745201111,-0.018790442496538162,-0.003932883497327566,0.0014518002280965447,0.00037332007195800543,5.7879078667610884e-05,-0.018790442496538162,0.013812841847538948,0.00037332007195800543,-0.001742160296998918,-0.0001244400191353634,-7.321282543887936e-20,-0.003932883497327566,0.00037332007195800543,0.0004370649694465101,-2.371692252312041e-19,-1.866600359790027e-05,-8.904473361326382e-06,0.0014518002280965447,-0.001742160296998918,-2.371692252312041e-19,0.00029036003979854286,-4.404571325722362e-20,9.14429668704689e-21,0.00037332007195800543,-0.0001244400191353634,-1.866600359790027e-05,-4.404571325722362e-20,6.22200104771764e-06,7.516958883058478e-22,5.7879078667610884e-05,-7.321282543887936e-20,-8.904473361326382e-06,9.14429668704689e-21,7.516958883058478e-22,2.226118454018433e-07,7.0,42.0,0.0645030066370964,-0.01835152693092823,-0.003753721248358488,0.0014172336086630821,0.00035595634835772216,5.393277751863934e-05,-0.01835152693092823,0.013486790470778942,0.00035595634835772216,-0.001700680237263441,-0.00011865211126860231,-8.528816957964184e-20,-0.003753721248358488,0.00035595634835772216,0.0004069293790962547,-4.641740550953566e-19,-1.7363723600283265e-05,-8.089917173492722e-06,0.0014172336086630821,-0.001700680237263441,-4.641740550953566e-19,0.00028344671591185033,1.1858461261560205e-20,1.0146990646858179e-20,0.00035595634835772216,-0.00011865211126860231,-1.7363723600283265e-05,1.1858461261560205e-20,5.787907866761088e-06,9.169661606997396e-22,5.393277751863934e-05,-8.528816957964184e-20,-8.089917173492722e-06,1.0146990646858179e-20,9.169661606997396e-22,1.9731504607989336e-07,7.0,43.0,0.0630851686000824,-0.017932647839188576,-0.00358652975410223,0.0013842746848240495,0.0003397765103727579,5.0337261200184e-05,-0.017932647839188576,0.013175778090953827,0.0003397765103727579,-0.001661129528656602,-0.0001132588367909193,-8.26718296138793e-20,-0.00358652975410223,0.0003397765103727579,0.00037950259866192937,-3.8285889215894375e-19,-1.6179834346985444e-05,-7.366428235400235e-06,0.0013842746848240495,-0.001661129528656602,-3.8285889215894375e-19,0.0002768549311440438,-5.929230630780102e-21,9.459232780579384e-21,0.0003397765103727579,-0.0001132588367909193,-1.6179834346985444e-05,-5.929230630780102e-21,5.393277660914464e-06,8.195349979031746e-22,5.0337261200184e-05,-8.26718296138793e-20,-7.366428235400235e-06,9.459232780579384e-21,8.195349979031746e-22,1.7539115049203247e-07,7.0,44.0,0.061728306114673615,-0.01753246784210205,-0.0034302654676139355,0.0013528139097616076,0.0003246753185521811,4.705439641838893e-05,-0.01753246784210205,0.012878787703812122,0.0003246753185521811,-0.001623376621864736,-0.00010822511103469878,-1.663862977716618e-20,-0.0034302654676139355,0.0003246753185521811,0.0003544868668541312,1.9989977555201488e-19,-1.510117817815626e-05,-6.722056241414975e-06,0.0013528139097616076,-0.001623376621864736,1.9989977555201488e-19,0.00027056277031078935,-6.098637220230962e-20,2.0417216664702554e-21,0.0003246753185521811,-0.00010822511103469878,-1.510117817815626e-05,-6.098637220230962e-20,5.0337257562205195e-06,1.659154596401668e-22,4.705439641838893e-05,-1.663862977716618e-20,-6.722056241414975e-06,2.0417216664702554e-21,1.659154596401668e-22,1.5632689098765695e-07,7.0,45.0,0.06042856723070145,-0.017149757593870163,-0.003283996367827058,0.0013227512827143073,0.0003105590003542602,4.405092113302089e-05,-0.017149757593870163,0.012594892643392086,0.0003105590003542602,-0.0015873016091063619,-0.00010351966921007261,9.190562740476314e-20,-0.003283996367827058,0.0003105590003542602,0.0003316228976473212,5.759824041329242e-19,-1.4116318197920918e-05,-6.146640316728735e-06,0.0013227512827143073,-0.0015873016091063619,5.759824041329242e-19,0.00026455026818439364,-1.3552527156068805e-20,-1.1825863559959653e-20,0.0003105590003542602,-0.00010351966921007261,-1.4116318197920918e-05,-1.3552527156068805e-20,4.705439550889423e-06,-6.089432654873679e-22,4.405092113302089e-05,9.190562740476314e-20,-6.146640316728735e-06,-1.1825863559959653e-20,-6.089432654873679e-22,1.3969636825095222e-07,7.0,46.0,0.05918241664767265,-0.016783401370048523,-0.003146887756884098,0.0012939958833158016,0.00029734373674727976,4.129773878958076e-05,-0.016783401370048523,0.012323245406150818,0.00029734373674727976,-0.001552795059978962,-9.911457891575992e-05,-3.0600393636082443e-21,-0.003146887756884098,0.00029734373674727976,0.00031068414682522416,-2.0328790734103208e-20,-1.321527724940097e-05,-5.631510248349514e-06,0.0012939958833158016,-0.001552795059978962,-2.0328790734103208e-20,0.0002587991766631603,4.235164736271502e-21,6.598159838755337e-22,0.00029734373674727976,-9.911457891575992e-05,-1.321527724940097e-05,4.235164736271502e-21,4.405092113302089e-06,-8.91542259197072e-23,4.129773878958076e-05,-3.0600393636082443e-21,-5.631510248349514e-06,6.598159838755337e-22,-8.91542259197072e-23,1.251446661854061e-07,7.0,47.0,0.057986605912446976,-0.016432370990514755,-0.0030181906186044216,0.001266464008949697,0.00028495441074483097,3.876930713886395e-05,-0.016432370990514755,0.012063070200383663,0.00028495441074483097,-0.0015197568573057652,-9.498480358161032e-05,-2.5903157650923794e-20,-0.0030181906186044216,0.00028495441074483097,0.00029147215536795557,-2.168404344971009e-19,-1.238932236446999e-05,-5.169240921532037e-06,0.001266464008949697,-0.0015197568573057652,-2.168404344971009e-19,0.0002532928192522377,1.7787691892340307e-20,2.9915830997257705e-21,0.00028495441074483097,-9.498480358161032e-05,-1.238932236446999e-05,1.7787691892340307e-20,4.129773969907546e-06,2.611652642616147e-22,3.876930713886395e-05,-2.5903157650923794e-20,-5.169240921532037e-06,2.9915830997257705e-21,2.611652642616147e-22,1.1237480634918029e-07,7.0,48.0,0.056838151067495346,-0.01609572395682335,-0.0028972302097827196,0.0012400794075801969,0.000273323617875576,3.644314710982144e-05,-0.01609572395682335,0.011813653632998466,0.000273323617875576,-0.0014880952658131719,-9.110787505051121e-05,7.40874267649864e-20,-0.0028972302097827196,0.000273323617875576,0.0002738124458119273,4.845028458294598e-19,-1.1630791959760245e-05,-4.7534540499327704e-06,0.0012400794075801969,-0.0014880952658131719,4.845028458294598e-19,0.00024801588733680546,-1.6093625997831706e-20,-9.152344734354376e-21,0.000273323617875576,-9.110787505051121e-05,-1.1630791959760245e-05,-1.6093625997831706e-20,3.876930804835865e-06,-7.240481942222493e-22,3.644314710982144e-05,7.40874267649864e-20,-4.7534540499327704e-06,-9.152344734354376e-21,-7.240481942222493e-22,1.0113732429317679e-07,7.0,49.0,0.0557342953979969,-0.015772594138979912,-0.002783399075269699,0.0012147716479375958,0.00026239067665301263,3.429943535593338e-05,-0.015772594138979912,0.011574343778192997,0.00026239067665301263,-0.0014577260008081794,-8.746355888433754e-05,-3.1144807322216263e-20,-0.002783399075269699,0.00026239067665301263,0.00025755134993232787,-1.8973538018496328e-19,-1.0932944860542193e-05,-4.378651283332147e-06,0.0012147716479375958,-0.0014577260008081794,-1.8973538018496328e-19,0.00024295432376675308,-1.9481757786848908e-20,5.1674182892515045e-21,0.00026239067665301263,-8.746355888433754e-05,-1.0932944860542193e-05,-1.9481757786848908e-20,3.644314801931614e-06,-3.764752842100791e-23,3.429943535593338e-05,-3.1144807322216263e-20,-4.378651283332147e-06,5.1674182892515045e-21,-3.764752842100791e-23,9.12218993676106e-08,7.0,50.0,0.0546724833548069,-0.015462185256183147,-0.0026761472690850496,0.0011904762359336019,0.0002521008427720517,3.2320622267434373e-05,-0.015462185256183147,0.011344538070261478,0.0002521008427720517,-0.0014285714132711291,-8.403361425735056e-05,-9.029794372312951e-20,-0.0026761472690850496,0.0002521008427720517,0.0002425530692562461,-5.421010862427522e-19,-1.0289830242982134e-05,-4.040077783429297e-06,0.0011904762359336019,-0.0014285714132711291,-5.421010862427522e-19,0.0002380952355451882,-1.1858461261560205e-20,1.2331477709382691e-20,0.0002521008427720517,-8.403361425735056e-05,-1.0289830242982134e-05,-1.1858461261560205e-20,3.4299434901186032e-06,5.244035287644053e-22,3.2320622267434373e-05,-9.029794372312951e-20,-4.040077783429297e-06,1.2331477709382691e-20,5.244035287644053e-22,8.24505619334559e-08,7.0,51.0,0.05365036800503731,-0.015163757838308811,-0.00257497769780457,0.0011671335669234395,0.00024240465427283198,3.0491151846945286e-05,-0.015163757838308811,0.011123680509626865,0.00024240465427283198,-0.001400560257025063,-8.080155384959653e-05,7.492777118150639e-20,-0.00257497769780457,0.00024240465427283198,0.00022869733220431954,6.2002811739014785e-19,-9.69618577073561e-06,-3.733610355993733e-06,0.0011671335669234395,-0.001400560257025063,6.2002811739014785e-19,0.00023342670465353876,-4.0657581468206416e-20,-9.524621246442988e-21,0.00024240465427283198,-8.080155384959653e-05,-9.69618577073561e-06,-4.0657581468206416e-20,3.232061999369762e-06,-5.249571702803512e-22,3.0491151846945286e-05,7.492777118150639e-20,-3.733610355993733e-06,-9.524621246442988e-21,-5.249571702803512e-22,7.467220797252594e-08,7.0,52.0,0.05266575515270233,-0.014876632951200008,-0.002479438902810216,0.0011446886928752065,0.00023325730580836535,2.8797197956009768e-05,-0.014876632951200008,0.01091125886887312,0.00023325730580836535,-0.0013736264081671834,-7.775243284413591e-05,8.531554408803852e-20,-0.002479438902810216,0.00023325730580836535,0.00021587735682260245,7.453889935837843e-19,-9.147345735982526e-06,-3.455663772911066e-06,0.0011446886928752065,-0.0013736264081671834,7.453889935837843e-19,0.00022893772984389216,-3.134021904840911e-20,-1.1792869231717731e-20,0.00023325730580836535,-7.775243284413591e-05,-9.147345735982526e-06,-3.134021904840911e-20,3.0491150937450584e-06,-3.747598462182472e-22,2.8797197956009768e-05,8.531554408803852e-20,-3.455663772911066e-06,-1.1792869231717731e-20,-3.747598462182472e-22,6.775811556281042e-08,7.0,53.0,0.051716625690460205,-0.014600180089473724,-0.002389120403677225,0.0011230907402932644,0.00022461815387941897,2.7226442398387007e-05,-0.014600180089473724,0.010706798173487186,0.00022461815387941897,-0.001347708865068853,-7.487271795980632e-05,-2.993908171949512e-20,-0.002389120403677225,0.00022461815387941897,0.0002039981191046536,-4.675621868843738e-19,-8.63915920490399e-06,-3.203110964022926e-06,0.0011230907402932644,-0.001347708865068853,-4.675621868843738e-19,0.00022461815387941897,7.623296525288703e-20,4.439669794647466e-21,0.00022461815387941897,-7.487271795980632e-05,-8.63915920490399e-06,7.623296525288703e-20,2.879719886550447e-06,7.287326017387455e-23,2.7226442398387007e-05,-2.993908171949512e-20,-3.203110964022926e-06,4.439669794647466e-21,7.287326017387455e-23,6.159828558338631e-08,7.0,54.0,0.05080109462141991,-0.0143338143825531,-0.002303648740053177,0.001102292793802917,0.00021645022206939757,2.5767882107174955e-05,-0.0143338143825531,0.010509860701858997,0.00021645022206939757,-0.0013227512827143073,-7.215006917249411e-05,4.840196463359324e-21,-0.002303648740053177,0.00021645022206939757,0.0001929748832480982,8.809142651444724e-20,-8.167932719516102e-06,-2.9732173061347567e-06,0.001102292793802917,-0.0013227512827143073,8.809142651444724e-20,0.00022045854711905122,-1.5246593050577406e-20,-1.0718693619167363e-21,0.00021645022206939757,-7.215006917249411e-05,-8.167932719516102e-06,-1.5246593050577406e-20,2.7226442398387007e-06,5.338337865955835e-23,2.5767882107174955e-05,4.840196463359324e-21,-2.9732173061347567e-06,-1.0718693619167363e-21,5.338337865955835e-23,5.60984396713593e-08,7.0,55.0,0.04991740733385086,-0.014076994732022285,-0.0022226832807064056,0.0010822510812431574,0.00020871985179837793,2.4411678168689832e-05,-0.014076994732022285,0.010320036672055721,0.00020871985179837793,-0.0012987012742087245,-6.957328150747344e-05,-5.652477323570027e-20,-0.0022226832807064056,0.00020871985179837793,0.0001827319065341726,-4.743384504624082e-19,-7.730364814051427e-06,-2.7635862807073863e-06,0.0010822510812431574,-0.0012987012742087245,-4.743384504624082e-19,0.00021645022206939757,3.218725199566341e-20,6.6557076583097676e-21,0.00020871985179837793,-6.957328150747344e-05,-7.730364814051427e-06,3.218725199566341e-20,2.576788347141701e-06,4.539216215386178e-22,2.4411678168689832e-05,-5.652477323570027e-20,-2.7635862807073863e-06,6.6557076583097676e-21,4.539216215386178e-22,5.1177522664147546e-08,7.0,56.0,0.04906393215060234,-0.013829216361045837,-0.002145912731066346,0.0010629252064973116,0.00020139635307714343,2.3149004846345633e-05,-0.013829216361045837,0.010136949829757214,0.00020139635307714343,-0.0012755101779475808,-6.713211769238114e-05,-7.443766020622018e-20,-0.002145912731066346,0.00020139635307714343,0.00017320133338216692,-6.505213034913027e-19,-7.32350372345536e-06,-2.5721117253851844e-06,0.0010629252064973116,-0.0012755101779475808,-6.505213034913027e-19,0.00021258502965793014,5.421010862427522e-20,8.51049943104011e-21,0.00020139635307714343,-6.713211769238114e-05,-7.32350372345536e-06,5.421010862427522e-20,2.4411679078184534e-06,6.551463817005067e-22,2.3149004846345633e-05,-7.443766020622018e-20,-2.5721117253851844e-06,8.51049943104011e-21,6.551463817005067e-22,4.6765666894543756e-08,7.0,57.0,0.048239145427942276,-0.01359000988304615,-0.00207305233925581,0.0010442773345857859,0.00019445164070930332,2.197193680331111e-05,-0.01359000988304615,0.009960245341062546,0.00019445164070930332,-0.0012531328247860074,-6.481721356976777e-05,4.332287695530018e-20,-0.00207305233925581,0.00019445164070930332,0.00016432226402685046,1.4230153513872246e-19,-6.94470145390369e-06,-2.396938725723885e-06,0.0010442773345857859,-0.0012531328247860074,1.4230153513872246e-19,0.0002088554756483063,3.6422416731934915e-20,-4.757255854976327e-21,0.00019445164070930332,-6.481721356976777e-05,-6.94470145390369e-06,3.6422416731934915e-20,2.3149004846345633e-06,-4.918429856679332e-22,2.197193680331111e-05,4.332287695530018e-20,-2.396938725723885e-06,-4.757255854976327e-21,-4.918429856679332e-22,4.2802476230008324e-08,7.0,58.0,0.047441624104976654,-0.013358937576413155,-0.002003840636461973,0.0010262725409120321,0.00018786005966831,2.0873339963145554e-05,-0.013358937576413155,0.009789596311748028,0.00018786005966831,-0.001231527072377503,-6.262001988943666e-05,2.867150497894003e-20,-0.002003840636461973,0.00018786005966831,0.00015603999781887978,3.6591823321385775e-19,-6.591581040993333e-06,-2.236429281765595e-06,0.0010262725409120321,-0.001231527072377503,3.6591823321385775e-19,0.00020525451691355556,-5.336307567702092e-20,-2.8503918913851e-21,0.00018786005966831,-6.262001988943666e-05,-6.591581040993333e-06,-5.336307567702092e-20,2.197193680331111e-06,-3.416720663580488e-22,2.0873339963145554e-05,2.867150497894003e-20,-2.236429281765595e-06,-2.8503918913851e-21,-3.416720663580488e-22,3.9235601434484124e-08,7.0,59.0,0.04667004197835922,-0.013135593384504318,-0.001938038389198482,0.001008878112770617,0.00018159806495532393,1.984678237931803e-05,-0.013135593384504318,0.009624697268009186,0.00018159806495532393,-0.0012106538051739335,-6.053268589312211e-05,-2.3267448411013006e-20,-0.001938038389198482,0.00018159806495532393,0.00014830517466180027,-4.760325163569168e-19,-6.262001988943666e-06,-2.0891350231977412e-06,0.001008878112770617,-0.0012106538051739335,-4.760325163569168e-19,0.00020177561964374036,8.809142651444724e-20,2.833380162761994e-21,0.00018159806495532393,-6.053268589312211e-05,-6.262001988943666e-06,8.809142651444724e-20,2.0873339963145554e-06,1.8136538251045445e-22,1.984678237931803e-05,-2.3267448411013006e-20,-2.0891350231977412e-06,2.833380162761994e-21,1.8136538251045445e-22,3.601957132559619e-08,7.0,60.0,0.0459231473505497,-0.0129195936024189,-0.0018754249904304743,0.0009920635493472219,0.0001756440324243158,1.8886454199673608e-05,-0.0129195936024189,0.009465261362493038,0.0001756440324243158,-0.0011904762359336019,-5.8548008382786065e-05,7.090857167094512e-21,-0.0018754249904304743,0.0001756440324243158,0.00014107332390267402,2.524158182817815e-19,-5.954034804744879e-06,-1.953771061380394e-06,0.0009920635493472219,-0.0011904762359336019,2.524158182817815e-19,0.00019841270113829523,-6.013933925505532e-20,-5.721251959092073e-22,0.0001756440324243158,-5.8548008382786065e-05,-5.954034804744879e-06,-6.013933925505532e-20,1.9846781924570678e-06,-1.186275650190405e-22,1.8886454199673608e-05,7.090857167094512e-21,-1.953771061380394e-06,-5.721251959092073e-22,-1.186275650190405e-22,3.3114766040398536e-08,7.0,61.0,0.04519978165626526,-0.012710584327578545,-0.0018157977610826492,0.0009758001542650163,0.0001699780987109989,1.7987100363825448e-05,-0.012710584327578545,0.009311022236943245,0.0001699780987109989,-0.0011709601385518909,-5.6659362599020824e-05,-9.374415263843588e-21,-0.0018157977610826492,0.0001699780987109989,0.00013430418039206415,-2.202285662861181e-20,-5.665936441801023e-06,-1.8291965488970163e-06,0.0009758001542650163,-0.0011709601385518909,-2.202285662861181e-20,0.00019516002794262022,-1.6517142471458857e-20,1.3090064531198473e-21,0.0001699780987109989,-5.6659362599020824e-05,-5.665936441801023e-06,-1.6517142471458857e-20,1.8886454427047283e-06,3.447488447694642e-23,1.7987100363825448e-05,-9.374415263843588e-21,-1.8291965488970163e-06,1.3090064531198473e-21,3.447488447694642e-23,3.048661056936908e-08,7.0,62.0,0.04449884966015816,-0.012508229352533817,-0.0017589697381481528,0.0009600614430382848,0.0001645819575060159,1.7143955119536258e-05,-0.012508229352533817,0.009161729365587234,0.0001645819575060159,-0.0011520737316459417,-5.4860654927324504e-05,1.9418890444707744e-20,-0.0017589697381481528,0.0001645819575060159,0.00012796134978998452,2.168404344971009e-19,-5.396129836299224e-06,-1.7143954664788907e-06,0.0009600614430382848,-0.0011520737316459417,2.168404344971009e-19,0.00019201228860765696,-3.3457801416544863e-20,-1.5992757622920687e-21,0.0001645819575060159,-5.4860654927324504e-05,-5.396129836299224e-06,-3.3457801416544863e-20,1.7987099454330746e-06,-2.810055073029321e-22,1.7143955119536258e-05,1.9418890444707744e-20,-1.7143954664788907e-06,-1.5992757622920687e-21,-2.810055073029321e-22,2.810484289739179e-08,7.0,63.0,0.04381931573152542,-0.012312216684222221,-0.0017047683941200376,0.0009448223863728344,0.0001594387722434476,1.635269472899381e-05,-0.012312216684222221,0.009017148986458778,0.0001594387722434476,-0.0011337868636474013,-5.3146257414482534e-05,-2.940830318487457e-20,-0.0017047683941200376,0.0001594387722434476,0.00012201177014503628,-1.7110065534536867e-19,-5.143186172062997e-06,-1.6084618437162135e-06,0.0009448223863728344,-0.0011337868636474013,-1.7110065534536867e-19,0.0001889644772745669,-5.929230630780102e-21,2.840285384120643e-21,0.0001594387722434476,-5.3146257414482534e-05,-5.143186172062997e-06,-5.929230630780102e-21,1.7143954664788907e-06,3.3670605443105046e-22,1.635269472899381e-05,-2.940830318487457e-20,-1.6084618437162135e-06,2.840285384120643e-21,3.3670605443105046e-22,2.5942931358713395e-08,7.0,64.0,0.043160226196050644,-0.012122252956032753,-0.0016530344728380442,0.0009300595265813172,0.00015453297237399966,1.5609390175086446e-05,-0.012122252956032753,0.008877060376107693,0.00015453297237399966,-0.0011160714784637094,-5.1510989578673616e-05,4.8012558051123963e-20,-0.0016530344728380442,0.00015453297237399966,0.00011642543540801853,4.2351647362715017e-19,-4.905808509647613e-06,-1.5105862303244066e-06,0.0009300595265813172,-0.0011160714784637094,4.2351647362715017e-19,0.00018601190822664648,-1.9481757786848908e-20,-5.839111968761221e-21,0.00015453297237399966,-5.1510989578673616e-05,-4.905808509647613e-06,-1.9481757786848908e-20,1.6352695411114837e-06,-3.4462482952427623e-22,1.5609390175086446e-05,4.8012558051123963e-20,-1.5105862303244066e-06,-5.839111968761221e-21,-3.4462482952427623e-22,2.3977557717103082e-08,8.0,3.0,0.4652777910232544,-0.1666666716337204,-0.3333333432674408,0.013888888992369175,0.0416666679084301,0.0625,-0.1666666716337204,0.1170634925365448,0.0416666679084301,-0.013888888992369175,-0.011904762126505375,-1.6653345369377348e-16,-0.3333333432674408,0.0416666679084301,0.9583333134651184,-2.8955338228410526e-17,-0.0416666679084301,-0.375,0.013888888992369175,-0.013888888992369175,-2.8955338228410526e-17,0.0019841270986944437,-6.505213034913027e-19,1.621239259018207e-17,0.0416666679084301,-0.011904762126505375,-0.0416666679084301,-6.505213034913027e-19,0.011904762126505375,1.4094628242311558e-17,0.0625,-1.6653345369377348e-16,-0.375,1.621239259018207e-17,1.4094628242311558e-17,0.1875,8.0,4.0,0.3958333432674408,-0.13124999403953552,-0.21875,0.010416666977107525,0.02500000037252903,0.03125,-0.13124999403953552,0.08958332985639572,0.02500000037252903,-0.010416666977107525,-0.0071428571827709675,1.3877787807814457e-17,-0.21875,0.02500000037252903,0.3645833432674408,-1.4408852650324526e-17,-0.01666666753590107,-0.09375,0.010416666977107525,-0.010416666977107525,-1.4408852650324526e-17,0.0014880952658131719,8.673617379884035e-19,3.501908000732033e-18,0.02500000037252903,-0.0071428571827709675,-0.01666666753590107,8.673617379884035e-19,0.004761904943734407,-2.2680270000966903e-17,0.03125,1.3877787807814457e-17,-0.09375,3.501908000732033e-18,-2.2680270000966903e-17,0.03125,8.0,5.0,0.3440476059913635,-0.10833333432674408,-0.1547619104385376,0.008333333767950535,0.01666666753590107,0.01785714365541935,-0.10833333432674408,0.07261905074119568,0.01666666753590107,-0.008333333767950535,-0.004761904943734407,9.540979117872439e-18,-0.1547619104385376,0.01666666753590107,0.184523805975914,7.110765491583496e-18,-0.008333333767950535,-0.0357142873108387,0.008333333767950535,-0.008333333767950535,7.110765491583496e-18,0.0011904762359336019,1.1559820626095005e-19,-1.9005051531883067e-18,0.01666666753590107,-0.004761904943734407,-0.008333333767950535,1.1559820626095005e-19,0.0023809524718672037,4.119968255444917e-18,0.01785714365541935,9.540979117872439e-18,-0.0357142873108387,-1.9005051531883067e-18,4.119968255444917e-18,0.008928571827709675,8.0,6.0,0.304067462682724,-0.092261902987957,-0.1153273805975914,0.0069444444961845875,0.011904762126505375,0.01116071455180645,-0.092261902987957,0.06108276546001434,0.011904762126505375,-0.0069444444961845875,-0.003401360474526882,-0.0,-0.1153273805975914,0.011904762126505375,0.1075148805975914,2.168404344971009e-19,-0.004761904943734407,-0.0167410708963871,0.0069444444961845875,-0.0069444444961845875,2.168404344971009e-19,0.0009920635493472219,-5.421010862427522e-20,-0.0,0.011904762126505375,-0.003401360474526882,-0.004761904943734407,-5.421010862427522e-20,0.0013605442363768816,-0.0,0.01116071455180645,-0.0,-0.0167410708963871,-0.0,-0.0,0.0033482143189758062,8.0,7.0,0.2723214328289032,-0.0803571417927742,-0.0892857164144516,0.0059523810632526875,0.008928571827709675,0.0074404762126505375,-0.0803571417927742,0.052721086889505386,0.008928571827709675,-0.0059523810632526875,-0.0025510203558951616,-1.951563910473908e-18,-0.0892857164144516,0.008928571827709675,0.0684523805975914,-0.0,-0.0029761905316263437,-0.008928571827709675,0.0059523810632526875,-0.0059523810632526875,-0.0,0.0008503401186317205,0.0,2.710505431213761e-20,0.008928571827709675,-0.0025510203558951616,-0.0029761905316263437,0.0,0.0008503401186317205,6.505213034913027e-19,0.0074404762126505375,-1.951563910473908e-18,-0.008928571827709675,2.710505431213761e-20,6.505213034913027e-19,0.0014880952658131719,8.0,8.0,0.2465277761220932,-0.0711805522441864,-0.0711805522441864,0.0052083334885537624,0.0069444444961845875,0.0052083334885537624,-0.0711805522441864,0.0463789664208889,0.0069444444961845875,-0.0052083334885537624,-0.0019841270986944437,6.505213034913027e-19,-0.0711805522441864,0.0069444444961845875,0.0463789664208889,3.2181872736742404e-19,-0.0019841270986944437,-0.0052083334885537624,0.0052083334885537624,-0.0052083334885537624,3.2181872736742404e-19,0.0007440476329065859,-4.087270012625849e-20,-3.614007349324157e-20,0.0069444444961845875,-0.0019841270986944437,-0.0019841270986944437,-4.087270012625849e-20,0.0005668934318237007,-1.3552527156068805e-19,0.0052083334885537624,6.505213034913027e-19,-0.0052083334885537624,-3.614007349324157e-20,-1.3552527156068805e-19,0.0007440476329065859,8.0,9.0,0.2251683473587036,-0.06388889253139496,-0.05808080732822418,0.004629629664123058,0.0055555556900799274,0.0037878789007663727,-0.06388889253139496,0.04140211641788483,0.0055555556900799274,-0.004629629664123058,-0.0015873016091063619,3.2526065174565133e-19,-0.05808080732822418,0.0055555556900799274,0.03291847184300423,-1.1420889179868189e-19,-0.0013888889225199819,-0.003246753243729472,0.004629629664123058,-0.004629629664123058,-1.1420889179868189e-19,0.0006613756413571537,3.192373034707992e-20,-2.2880890108660784e-21,0.0055555556900799274,-0.0015873016091063619,-0.0013888889225199819,3.192373034707992e-20,0.00039682540227659047,-8.131516293641283e-20,0.0037878789007663727,3.2526065174565133e-19,-0.003246753243729472,-2.2880890108660784e-21,-8.131516293641283e-20,0.000405844155466184,8.0,10.0,0.20719696581363678,-0.05795454606413841,-0.04829545319080353,0.004166666883975267,0.004545454401522875,0.0028409091755747795,-0.05795454606413841,0.037391774356365204,0.004545454401522875,-0.004166666883975267,-0.0012987012742087245,1.0842021724855044e-19,-0.04829545319080353,0.004545454401522875,0.024226641282439232,-1.0092936267908914e-18,-0.001010101055726409,-0.0021306818816810846,0.004166666883975267,-0.004166666883975267,-1.0092936267908914e-18,0.0005952381179668009,2.88369611347311e-19,-1.2037062152420224e-35,0.004545454401522875,-0.0012987012742087245,-0.001010101055726409,2.88369611347311e-19,0.00028860027668997645,-1.3552527156068805e-20,0.0028409091755747795,1.0842021724855044e-19,-0.0021306818816810846,-1.2037062152420224e-35,-1.3552527156068805e-20,0.0002367424312978983,8.0,11.0,0.19187062978744507,-0.05303030461072922,-0.04079253971576691,0.0037878789007663727,0.0037878789007663727,0.0021853146608918905,-0.05303030461072922,0.034090910106897354,0.0037878789007663727,-0.0037878789007663727,-0.0010822510812431574,2.168404344971009e-19,-0.04079253971576691,0.0037878789007663727,0.018356643617153168,-0.0,-0.0007575757335871458,-0.0014568764017894864,0.0037878789007663727,-0.0037878789007663727,-0.0,0.0005411255406215787,0.0,0.0,0.0037878789007663727,-0.0010822510812431574,-0.0007575757335871458,0.0,0.00021645022206939757,-4.743384504624082e-20,0.0021853146608918905,2.168404344971009e-19,-0.0014568764017894864,0.0,-4.743384504624082e-20,0.00014568764891009778,8.0,12.0,0.1786477416753769,-0.048878204077482224,-0.03491300344467163,0.0034722222480922937,0.0032051282469183207,0.0017170329811051488,-0.048878204077482224,0.03132631257176399,0.0032051282469183207,-0.0034722222480922937,-0.0009157509193755686,-1.3552527156068805e-19,-0.03491300344467163,0.0032051282469183207,0.014246170409023762,-0.0,-0.0005827505956403911,-0.001030219835229218,0.0034722222480922937,-0.0034722222480922937,-0.0,0.0004960317746736109,0.0,0.0,0.0032051282469183207,-0.0009157509193755686,-0.0005827505956403911,0.0,0.00016650016186758876,2.710505431213761e-20,0.0017170329811051488,-1.3552527156068805e-19,-0.001030219835229218,0.0,2.710505431213761e-20,9.365634468849748e-05,8.0,13.0,0.16712453961372375,-0.04532967135310173,-0.030219780281186104,0.0032051282469183207,0.002747252816334367,0.0013736264081671834,-0.04532967135310173,0.02897697500884533,0.002747252816334367,-0.0032051282469183207,-0.0007849293760955334,1.6263032587282567e-19,-0.030219780281186104,0.002747252816334367,0.011280386708676815,-0.0,-0.0004578754596877843,-0.0007492507575079799,0.0032051282469183207,-0.0032051282469183207,-0.0,0.0004578754596877843,0.0,0.0,0.002747252816334367,-0.0007849293760955334,-0.0004578754596877843,0.0,0.00013082155783195049,-2.371692252312041e-20,0.0013736264081671834,1.6263032587282567e-19,-0.0007492507575079799,0.0,-2.371692252312041e-20,6.243756070034578e-05,8.0,14.0,0.1569940447807312,-0.04226190596818924,-0.0264136902987957,0.0029761905316263437,0.0023809524718672037,0.0011160714784637094,-0.04226190596818924,0.026955781504511833,0.0023809524718672037,-0.0029761905316263437,-0.0006802721181884408,-5.161631837749269e-18,-0.0264136902987957,0.0023809524718672037,0.009085966274142265,-7.806255641895632e-18,-0.00036630037357099354,-0.0005580357392318547,0.0029761905316263437,-0.0029761905316263437,-7.806255641895632e-18,0.00042517005931586027,1.0842021724855044e-19,5.492902680428154e-19,0.0023809524718672037,-0.0006802721181884408,-0.00036630037357099354,1.0842021724855044e-19,0.00010465725063113496,1.469880302967182e-19,0.0011160714784637094,-5.161631837749269e-18,-0.0005580357392318547,5.492902680428154e-19,1.469880302967182e-19,4.292582525522448e-05,8.0,15.0,0.14801879227161407,-0.03958333283662796,-0.023284314200282097,0.0027777778450399637,0.0020833334419876337,0.0009191176504828036,-0.03958333283662796,0.02519841305911541,0.0020833334419876337,-0.0027777778450399637,-0.0005952381179668009,-1.1551651700558161e-18,-0.023284314200282097,0.0020833334419876337,0.007427009288221598,-3.415236843329339e-18,-0.00029761905898340046,-0.00042420814861543477,0.0027777778450399637,-0.0027777778450399637,-3.415236843329339e-18,0.00039682540227659047,4.472333961502706e-19,1.3040716906869862e-19,0.0020833334419876337,-0.0005952381179668009,-0.00029761905898340046,4.472333961502706e-19,8.50340147735551e-05,3.2434365741315094e-20,0.0009191176504828036,-1.1551651700558161e-18,-0.00042420814861543477,1.3040716906869862e-19,3.2434365741315094e-20,3.0300581784103997e-05,8.0,16.0,0.1400122493505478,-0.037224262952804565,-0.020680146291851997,0.0026041667442768812,0.0018382353009656072,0.0007659313851036131,-0.037224262952804565,0.023656338453292847,0.0018382353009656072,-0.0026041667442768812,-0.0005252101109363139,2.714029220623237e-19,-0.020680146291851997,0.0018382353009656072,0.006149334833025932,-7.589415207398531e-19,-0.00024509805371053517,-0.00032825631205923855,0.0026041667442768812,-0.0026041667442768812,-7.589415207398531e-19,0.00037202381645329297,2.981555974335137e-19,-1.4316153801948765e-20,0.0018382353009656072,-0.0005252101109363139,-0.00024509805371053517,2.981555974335137e-19,7.002801430644467e-05,-1.578562400427788e-20,0.0007659313851036131,2.714029220623237e-19,-0.00032825631205923855,-1.4316153801948765e-20,-1.578562400427788e-20,2.188375401601661e-05,8.0,17.0,0.13282594084739685,-0.03513072058558464,-0.01848985254764557,0.0024509804788976908,0.0016339869471266866,0.0006449948414228857,-0.03513072058558464,0.022292250767350197,0.0016339869471266866,-0.0024509804788976908,-0.0004668534093070775,-2.4641961187077875e-19,-0.01848985254764557,0.0016339869471266866,0.005149208940565586,-1.7889335846010823e-18,-0.00020424836839083582,-0.00025799794821068645,0.0024509804788976908,-0.0024509804788976908,-1.7889335846010823e-18,0.00035014006425626576,3.9979955110402976e-19,1.9817305541035604e-20,0.0016339869471266866,-0.0004668534093070775,-0.00020424836839083582,3.9979955110402976e-19,5.835667616338469e-05,8.640414447031385e-21,0.0006449948414228857,-2.4641961187077875e-19,-0.00025799794821068645,1.9817305541035604e-20,8.640414447031385e-21,1.6124871763167903e-05,8.0,18.0,0.12634015083312988,-0.03326023370027542,-0.01663011685013771,0.002314814832061529,0.001461988314986229,0.0005482456181198359,-0.03326023370027542,0.021076997742056847,0.001461988314986229,-0.002314814832061529,-0.0004177109512966126,1.464208532302059e-18,-0.01663011685013771,0.001461988314986229,0.004355059005320072,3.144186300207963e-18,-0.0001719986175885424,-0.00020559210679493845,0.002314814832061529,-0.002314814832061529,3.144186300207963e-18,0.0003306878206785768,-9.147955830346444e-20,-1.4526850274897946e-19,0.001461988314986229,-0.0004177109512966126,-0.0001719986175885424,-9.147955830346444e-20,4.914246528642252e-05,-4.1026665580118456e-20,0.0005482456181198359,1.464208532302059e-18,-0.00020559210679493845,-1.4526850274897946e-19,-4.1026665580118456e-20,1.2093652912881225e-05,8.0,19.0,0.12045739591121674,-0.031578946858644485,-0.015037594363093376,0.0021929824724793434,0.0013157895300537348,0.000469924823846668,-0.031578946858644485,0.019987469539046288,0.0013157895300537348,-0.0021929824724793434,-0.0003759398532565683,8.193429211527229e-19,-0.015037594363093376,0.0013157895300537348,0.0037163987290114164,2.0599841277224584e-18,-0.00014619882858823985,-0.0001658558176131919,0.0021929824724793434,-0.0021929824724793434,2.0599841277224584e-18,0.00031328320619650185,-8.470329472543003e-20,-9.875653757073192e-20,0.0013157895300537348,-0.0003759398532565683,-0.00014619882858823985,-8.470329472543003e-20,4.17710944020655e-05,-8.108416951918313e-21,0.000469924823846668,8.193429211527229e-19,-0.0001658558176131919,-9.875653757073192e-20,-8.108416951918313e-21,9.214211786456872e-06,8.0,20.0,0.11509740352630615,-0.03005952388048172,-0.013663419522345066,0.0020833334419876337,0.0011904762359336019,0.000405844155466184,-0.03005952388048172,0.019005101174116135,0.0011904762359336019,-0.0020833334419876337,-0.0003401360590942204,-7.471516120715582e-19,-0.013663419522345066,0.0011904762359336019,0.003196912817656994,-2.168404344971009e-18,-0.0001253132795682177,-0.00013528138515539467,0.0020833334419876337,-0.0020833334419876337,-2.168404344971009e-18,0.00029761905898340046,1.4907779871675686e-19,8.00789350486038e-20,0.0011904762359336019,-0.0003401360590942204,-0.0001253132795682177,1.4907779871675686e-19,3.580379416234791e-05,1.6776407047944545e-20,0.000405844155466184,-7.471516120715582e-19,-0.00013528138515539467,8.00789350486038e-20,1.6776407047944545e-20,7.120072950783651e-06,8.0,21.0,0.11019355058670044,-0.028679654002189636,-0.012469414621591568,0.0019841270986944437,0.0010822510812431574,0.00035290795494802296,-0.028679654002189636,0.01811482198536396,0.0010822510812431574,-0.0019841270986944437,-0.0003092146071139723,1.1683621129460637e-19,-0.012469414621591568,0.0010822510812431574,0.002770017832517624,7.860465750519907e-19,-0.00010822511103469878,-0.00011144462041556835,0.0019841270986944437,-0.0019841270986944437,7.860465750519907e-19,0.00028344671591185033,-9.825582188149884e-20,-1.9179158316670818e-20,0.0010822510812431574,-0.0003092146071139723,-0.00010822511103469878,-9.825582188149884e-20,3.092145925620571e-05,-6.114107719118013e-22,0.00035290795494802296,1.1683621129460637e-19,-0.00011144462041556835,-1.9179158316670818e-20,-6.114107719118013e-22,5.572230747930007e-06,8.0,22.0,0.10569005459547043,-0.027420949190855026,-0.011425395496189594,0.0018939394503831863,0.0009881423320621252,0.0003087944642174989,-0.027420949190855026,0.017304252833127975,0.0009881423320621252,-0.0018939394503831863,-0.00028232636395841837,-1.176860489011251e-19,-0.011425395496189594,0.0009881423320621252,0.002415949013084173,-4.87890977618477e-19,-9.410879283677787e-05,-9.263833635486662e-05,0.0018939394503831863,-0.0018939394503831863,-4.87890977618477e-19,0.00027056277031078935,7.115076756936123e-20,1.2393953271643886e-20,0.0009881423320621252,-0.00028232636395841837,-9.410879283677787e-05,7.115076756936123e-20,2.68882249656599e-05,1.7211189010656328e-21,0.0003087944642174989,-1.176860489011251e-19,-9.263833635486662e-05,1.2393953271643886e-20,1.7211189010656328e-21,4.411349436850287e-06,8.0,23.0,0.10153985768556595,-0.026268115267157555,-0.010507246479392052,0.0018115942366421223,0.0009057971183210611,0.00027173911803402007,-0.026268115267157555,0.01656314730644226,0.0009057971183210611,-0.0018115942366421223,-0.0002587991766631603,-4.711866338346397e-19,-0.010507246479392052,0.0009057971183210611,0.002119800541549921,-1.6263032587282567e-18,-8.234519191319123e-05,-7.763975008856505e-05,0.0018115942366421223,-0.0018115942366421223,-1.6263032587282567e-18,0.0002587991766631603,1.1180834903756764e-19,5.106533272523627e-20,0.0009057971183210611,-0.0002587991766631603,-8.234519191319123e-05,1.1180834903756764e-19,2.3527198209194466e-05,8.488890953124296e-21,0.00027173911803402007,-4.711866338346397e-19,-7.763975008856505e-05,5.106533272523627e-20,8.488890953124296e-21,3.5290795494802296e-06,8.0,24.0,0.0977029949426651,-0.025208333507180214,-0.009695513173937798,0.0017361111240461469,0.0008333333535119891,0.000240384615608491,-0.025208333507180214,0.015882937237620354,0.0008333333535119891,-0.0017361111240461469,-0.0002380952355451882,1.9003591816595852e-19,-0.009695513173937798,0.0008333333535119891,0.0018701859517022967,-4.336808689942018e-19,-7.246376480907202e-05,-6.555944128194824e-05,0.0017361111240461469,-0.0017361111240461469,-4.336808689942018e-19,0.00024801588733680546,1.9481757786848908e-19,-1.2996941281007334e-20,0.0008333333535119891,-0.0002380952355451882,-7.246376480907202e-05,1.9481757786848908e-19,2.070393384201452e-05,-6.918503908270145e-21,0.000240384615608491,1.9003591816595852e-19,-6.555944128194824e-05,-1.2996941281007334e-20,-6.918503908270145e-21,2.8504105102911126e-06,8.0,25.0,0.09414529800415039,-0.024230768904089928,-0.00897435937076807,0.0016666667070239782,0.0007692307699471712,0.0002136752154910937,-0.024230768904089928,0.015256410464644432,0.0007692307699471712,-0.0016666667070239782,-0.00021978022414259613,2.3533740791531127e-19,-0.00897435937076807,0.0007692307699471712,0.0016583054093644023,3.7947076036992655e-19,-6.410256173694506e-05,-5.574135866481811e-05,0.0016666667070239782,-0.0016666667070239782,3.7947076036992655e-19,0.0002380952355451882,8.470329472543003e-20,-2.7886733528651686e-20,0.0007692307699471712,-0.00021978022414259613,-6.410256173694506e-05,8.470329472543003e-20,1.8315018678549677e-05,-3.222114459035178e-21,0.0002136752154910937,2.3533740791531127e-19,-5.574135866481811e-05,-2.7886733528651686e-20,-3.222114459035178e-21,2.322556611034088e-06,8.0,26.0,0.09083740413188934,-0.02332621067762375,-0.008330789394676685,0.0016025641234591603,0.0007122507086023688,0.000190781443961896,-0.02332621067762375,0.01467745192348957,0.0007122507086023688,-0.0016025641234591603,-0.0002035002107731998,-3.523830510012584e-19,-0.008330789394676685,0.0007122507086023688,0.0014772842405363917,-1.599198204416119e-18,-5.698005770682357e-05,-4.7695360990474e-05,0.0016025641234591603,-0.0016025641234591603,-1.599198204416119e-18,0.00022893772984389216,1.6263032587282567e-19,3.846812162848378e-20,0.0007122507086023688,-0.0002035002107731998,-5.698005770682357e-05,1.6263032587282567e-19,1.6280017007375136e-05,5.1214697794732476e-21,0.000190781443961896,-3.523830510012584e-19,-4.7695360990474e-05,3.846812162848378e-20,5.1214697794732476e-21,1.907814521473483e-06,8.0,27.0,0.08775390684604645,-0.022486772388219833,-0.007754059508442879,0.0015432098880410194,0.0006613756413571537,0.0001710454234853387,-0.022486772388219833,0.01414084155112505,0.0006613756413571537,-0.0015432098880410194,-0.0001889644772745669,4.161179892827169e-19,-0.007754059508442879,0.0006613756413571537,0.00132169877178967,1.81603863891322e-18,-5.087505269329995e-05,-4.105090192751959e-05,0.0015432098880410194,-0.0015432098880410194,1.81603863891322e-18,0.00022045854711905122,-1.7110065534536867e-19,-4.2200968013085387e-20,0.0006613756413571537,-0.0001889644772745669,-5.087505269329995e-05,-1.7110065534536867e-19,1.4535728951159399e-05,-7.900887514427702e-21,0.0001710454234853387,4.161179892827169e-19,-4.105090192751959e-05,-4.2200968013085387e-20,-7.900887514427702e-21,1.5788808696015622e-06,8.0,28.0,0.08487274497747421,-0.021705664694309235,-0.007235221564769745,0.0014880952658131719,0.0006157635361887515,0.00015394088404718786,-0.021705664694309235,0.013642095029354095,0.0006157635361887515,-0.0014880952658131719,-0.0001759324368322268,-4.283827513214055e-19,-0.007235221564769745,0.0006157635361887515,0.0011872306931763887,-1.463672932855431e-18,-4.5612116082338616e-05,-3.552481939550489e-05,0.0014880952658131719,-0.0014880952658131719,-1.463672932855431e-18,0.00021258502965793014,6.776263578034403e-20,4.550473707314498e-20,0.0006157635361887515,-0.0001759324368322268,-4.5612116082338616e-05,6.776263578034403e-20,1.3032033166382462e-05,5.995134065042634e-21,0.00015394088404718786,-4.283827513214055e-19,-3.552481939550489e-05,4.550473707314498e-20,5.995134065042634e-21,1.3157340390534955e-06,8.0,29.0,0.0821746364235878,-0.02097701095044613,-0.006766777951270342,0.0014367816038429737,0.0005747126415371895,0.00013904337538406253,-0.02097701095044613,0.013177339918911457,0.0005747126415371895,-0.0014367816038429737,-0.00016420360771007836,-6.140415011043719e-20,-0.006766777951270342,0.0005747126415371895,0.0010704133892431855,-2.439454888092385e-19,-4.105090192751959e-05,-3.089852907578461e-05,0.0014367816038429737,-0.0014367816038429737,-2.439454888092385e-19,0.00020525451691355556,3.3881317890172014e-21,7.12796074121149e-21,0.0005747126415371895,-0.00016420360771007836,-4.105090192751959e-05,3.3881317890172014e-21,1.1728829122148454e-05,1.1249425099812638e-21,0.00013904337538406253,-6.140415011043719e-20,-3.089852907578461e-05,7.12796074121149e-21,1.1249425099812638e-21,1.1035189118047128e-06,8.0,30.0,0.07964269816875458,-0.020295698195695877,-0.006342405918985605,0.0013888889225199819,0.0005376344197429717,0.00012600806076079607,-0.020295698195695877,0.012743216007947922,0.0005376344197429717,-0.0013888889225199819,-0.00015360982797574252,-2.309413565498982e-19,-0.006342405918985605,0.0005376344197429717,0.0009684413089416921,-8.809142651444724e-19,-3.707823634613305e-05,-2.700172808545176e-05,0.0013888889225199819,-0.0013888889225199819,-8.809142651444724e-19,0.00019841270113829523,4.912791094074942e-20,2.24751854831848e-20,0.0005376344197429717,-0.00015360982797574252,-3.707823634613305e-05,4.912791094074942e-20,1.0593781553325243e-05,4.036983489834377e-21,0.00012600806076079607,-2.309413565498982e-19,-2.700172808545176e-05,2.24751854831848e-20,4.036983489834377e-21,9.310940640716581e-07,8.0,31.0,0.0772620365023613,-0.019657257944345474,-0.005956744775176048,0.0013440860202535987,0.0005040322430431843,0.00011455278581706807,-0.019657257944345474,0.01233678963035345,0.0005040322430431843,-0.0013440860202535987,-0.00014400921645574272,-3.3892451224229094e-19,-0.005956744775176048,0.0005040322430431843,0.0008790280553512275,-1.0299920638612292e-18,-3.360215123393573e-05,-2.3700577003182843e-05,0.0013440860202535987,-0.0013440860202535987,-1.0299920638612292e-18,0.00019201228860765696,-8.470329472543003e-21,3.6070108876821216e-20,0.0005040322430431843,-0.00014400921645574272,-3.360215123393573e-05,-8.470329472543003e-21,9.600614248483907e-06,4.554199978259465e-21,0.00011455278581706807,-3.3892451224229094e-19,-2.3700577003182843e-05,3.6070108876821216e-20,4.554199978259465e-21,7.900192144916218e-07,8.0,32.0,0.07501949369907379,-0.01905776560306549,-0.00560522498562932,0.0013020833721384406,0.0004734848625957966,0.00010444518557051197,-0.01905776560306549,0.011955492198467255,0.0004734848625957966,-0.0013020833721384406,-0.00013528138515539467,2.0187538012282415e-19,-0.00560522498562932,0.0004734848625957966,0.0008002971881069243,8.673617379884035e-19,-3.054740955121815e-05,-2.0889037841698155e-05,0.0013020833721384406,-0.0013020833721384406,8.673617379884035e-19,0.00018601190822664648,-2.0328790734103208e-20,-2.3035246534607154e-20,0.0004734848625957966,-0.00013528138515539467,-3.054740955121815e-05,-2.0328790734103208e-20,8.727831300348043e-06,-1.9100545462322736e-21,0.00010444518557051197,2.0187538012282415e-19,-2.0889037841698155e-05,-2.3035246534607154e-20,-1.9100545462322736e-21,6.738399065397971e-07,8.0,33.0,0.07290340214967728,-0.018493760377168655,-0.005283931735903025,0.0012626262614503503,0.000445632787887007,9.549274545861408e-05,-0.018493760377168655,0.011597063392400742,0.000445632787887007,-0.0012626262614503503,-0.00012732365576084703,-2.097252724371641e-19,-0.005283931735903025,0.000445632787887007,0.000730699161067605,-7.860465750519907e-19,-2.7852049242937937e-05,-1.848246574809309e-05,0.0012626262614503503,-0.0012626262614503503,-7.860465750519907e-19,0.0001803751802071929,1.0164395367051604e-20,2.045562240204945e-20,0.000445632787887007,-0.00012732365576084703,-2.7852049242937937e-05,1.0164395367051604e-20,7.95772848505294e-06,3.1306219421073126e-21,9.549274545861408e-05,-2.097252724371641e-19,-1.848246574809309e-05,2.045562240204945e-20,3.1306219421073126e-21,5.775770546279091e-07,8.0,34.0,0.07090336084365845,-0.01796218566596508,-0.00498949596658349,0.0012254902394488454,0.0004201680712867528,8.753501606406644e-05,-0.01796218566596508,0.011259503662586212,0.0004201680712867528,-0.0012254902394488454,-0.00012004801828879863,1.1984824732355044e-19,-0.00498949596658349,0.0004201680712867528,0.0006689465371891856,3.8285889215894375e-19,-2.5464731152169406e-05,-1.641281596675981e-05,0.0012254902394488454,-0.0012254902394488454,3.8285889215894375e-19,0.00017507003212813288,-2.541098841762901e-21,-1.1830308847958559e-20,0.0004201680712867528,-0.00012004801828879863,-2.5464731152169406e-05,-2.541098841762901e-21,7.275637472048402e-06,-1.4658340205617018e-21,8.753501606406644e-05,1.1984824732355044e-19,-1.641281596675981e-05,-1.1830308847958559e-20,-1.4658340205617018e-21,4.973580303158087e-07,8.0,35.0,0.06901007890701294,-0.01746031828224659,-0.00471900450065732,0.0011904762359336019,0.00039682540227659047,8.043758134590462e-05,-0.01746031828224659,0.010941043496131897,0.00039682540227659047,-0.0011904762359336019,-0.00011337868636474013,1.7956863252304472e-19,-0.00471900450065732,0.00039682540227659047,0.0006139638717286289,6.979551485375435e-19,-2.3342670829151757e-05,-1.4625014955527149e-05,0.0011904762359336019,-0.0011904762359336019,6.979551485375435e-19,0.0001700680295471102,0.0,-1.9234261147046494e-20,0.00039682540227659047,-0.00011337868636474013,-2.3342670829151757e-05,0.0,6.669334197795251e-06,-1.9065386247321398e-21,8.043758134590462e-05,1.7956863252304472e-19,-1.4625014955527149e-05,-1.9234261147046494e-20,-1.9065386247321398e-21,4.301474803014571e-07,8.0,36.0,0.06721524149179459,-0.016985734924674034,-0.004469930659979582,0.0011574074160307646,0.00037537538446485996,7.408724195556715e-05,-0.016985734924674034,0.010640104301273823,0.00037537538446485996,-0.0011574074160307646,-0.00010725011088652536,-7.830492990271019e-20,-0.004469930659979582,0.00037537538446485996,0.0005648477817885578,-1.1519648082658485e-19,-2.145002144970931e-05,-1.3074220078124199e-05,0.0011574074160307646,-0.0011574074160307646,-1.1519648082658485e-19,0.0001653439103392884,-4.828087799349512e-20,8.596903454341389e-21,0.00037537538446485996,-0.00010725011088652536,-2.145002144970931e-05,-4.828087799349512e-20,6.128577751951525e-06,8.2012342502959705e-22,7.408724195556715e-05,-7.830492990271019e-20,-1.3074220078124199e-05,8.596903454341389e-21,8.2012342502959705e-22,3.7354914184106747e-07,8.0,37.0,0.06551136076450348,-0.016536273062229156,-0.004240070004016161,0.0011261261533945799,0.0003556187730282545,6.838822446297854e-05,-0.016536273062229156,0.01035527978092432,0.0003556187730282545,-0.0011261261533945799,-0.00010160536476178095,-2.0432290415779199e-19,-0.004240070004016161,0.0003556187730282545,0.0005208360380493104,-8.470329472543003e-19,-1.975659870367963e-05,-1.1723695934051648e-05,0.0011261261533945799,-0.0011261261533945799,-8.470329472543003e-19,0.00016087516269180924,2.286988957586611e-20,2.0855186180829507e-20,0.0003556187730282545,-0.00010160536476178095,-1.975659870367963e-05,2.286988957586611e-20,5.644742486765608e-06,2.6315616238413016e-21,6.838822446297854e-05,-2.0432290415779199e-19,-1.1723695934051648e-05,2.0855186180829507e-20,2.6315616238413016e-21,3.2565822039032355e-07,8.0,38.0,0.06389170140028,-0.01610998623073101,-0.004027496557682753,0.0010964912362396717,0.0003373819054104388,6.325911090243608e-05,-0.01610998623073101,0.010085309855639935,0.0003373819054104388,-0.0010964912362396717,-9.639483323553577e-05,1.3840812524240607e-20,-0.004027496557682753,0.0003373819054104388,0.000481282128021121,1.2536087619363645e-19,-1.823686034185812e-05,-1.0543184544076212e-05,0.0010964912362396717,-0.0010964912362396717,1.2536087619363645e-19,0.00015664160309825093,1.6093625997831706e-20,-4.723076493571695e-21,0.0003373819054104388,-9.639483323553577e-05,-1.823686034185812e-05,1.6093625997831706e-20,5.210531526245177e-06,8.415297021181848e-22,6.325911090243608e-05,1.3840812524240607e-20,-1.0543184544076212e-05,-4.723076493571695e-21,8.415297021181848e-22,2.849509428415331e-07,8.0,39.0,0.06235016509890556,-0.015705129131674767,-0.003830519039183855,0.0010683761211112142,0.00032051283051259816,5.8630394050851464e-05,-0.015705129131674767,0.009829060174524784,0.00032051283051259816,-0.0010683761211112142,-9.157509339274839e-05,-3.535286896872958e-20,-0.003830519039183855,0.00032051283051259816,0.000445635465439409,-1.1858461261560205e-19,-1.686909672571346e-05,-9.50763114815345e-06,0.0010683761211112142,-0.0010683761211112142,-1.1858461261560205e-19,0.00015262515807989985,-6.776263578034403e-21,3.005164331018447e-21,0.00032051283051259816,-9.157509339274839e-05,-1.686909672571346e-05,-6.776263578034403e-21,4.8197416617767885e-06,6.070742836089438e-22,5.8630394050851464e-05,-3.535286896872958e-20,-9.50763114815345e-06,3.005164331018447e-21,6.070742836089438e-22,2.502008271676459e-07,8.0,40.0,0.06088124215602875,-0.015320122241973877,-0.0036476480308920145,0.0010416667209938169,0.0003048780490644276,5.444250928121619e-05,-0.015320122241973877,0.009585510939359665,0.0003048780490644276,-0.0010416667209938169,-8.710801193956286e-05,-1.4088205443349025e-19,-0.0036476480308920145,0.0003048780490644276,0.00041342509211972356,-7.555533889508359e-19,-1.5634772353223525e-05,-8.59618558024522e-06,0.0010416667209938169,-0.0010416667209938169,-7.555533889508359e-19,0.00014880952949170023,2.202285662861181e-20,1.6031744163842217e-20,0.0003048780490644276,-8.710801193956286e-05,-1.5634772353223525e-05,2.202285662861181e-20,4.4670778152067214e-06,1.118957264521171e-21,5.444250928121619e-05,-1.4088205443349025e-19,-8.59618558024522e-06,1.6031744163842217e-20,1.118957264521171e-21,2.2041501779312966e-07,8.0,41.0,0.05947991833090782,-0.01495354250073433,-0.0034775680396705866,0.0010162601247429848,0.00029036003979854286,5.064419383415952e-05,-0.01495354250073433,0.009353741072118282,0.00029036003979854286,-0.0010162601247429848,-8.296001033158973e-05,-3.0445808200659844e-21,-0.0034775680396705866,0.00029036003979854286,0.0003842465812340379,1.0503208545953324e-19,-1.4518001989927143e-05,-7.791414645907935e-06,0.0010162601247429848,-0.0010162601247429848,1.0503208545953324e-19,0.00014518001989927143,-4.912791094074942e-20,1.9925837857413027e-21,0.00029036003979854286,-8.296001033158973e-05,-1.4518001989927143e-05,-4.912791094074942e-20,4.148000698478427e-06,-5.567579835271103e-22,5.064419383415952e-05,-3.0445808200659844e-21,-7.791414645907935e-06,1.9925837857413027e-21,-5.567579835271103e-22,1.9478535762118554e-07,8.0,42.0,0.05814163386821747,-0.014604097232222557,-0.0033191130496561527,0.0009920635493472219,0.0002768549311440438,4.7191180783556774e-05,-0.014604097232222557,0.009132917039096355,0.0002768549311440438,-0.0009920635493472219,-7.910140993772075e-05,4.108324182596024e-21,-0.0033191130496561527,0.0002768549311440438,0.00035775135620497167,2.337810934421869e-19,-1.3505118658940773e-05,-7.0786772994324565e-06,0.0009920635493472219,-0.0009920635493472219,2.337810934421869e-19,0.00014172335795592517,-2.795208725939191e-20,-2.799239373500183e-21,0.0002768549311440438,-7.910140993772075e-05,-1.3505118658940773e-05,-2.795208725939191e-20,3.8586053960898425e-06,5.452127454328239e-22,4.7191180783556774e-05,4.108324182596024e-21,-7.0786772994324565e-06,-2.799239373500183e-21,5.452127454328239e-22,1.7265065821447934e-07,8.0,43.0,0.056862227618694305,-0.014270612969994545,-0.0031712474301457405,0.0009689922444522381,0.0002642706094775349,4.4045100366929546e-05,-0.014270612969994545,0.008922278881072998,0.0002642706094775349,-0.0009689922444522381,-7.550588634330779e-05,9.071839058120226e-20,-0.0031712474301457405,0.0002642706094775349,0.0003336378140375018,7.047314121155779e-19,-1.2584315300046e-05,-6.4456248765054625e-06,0.0009689922444522381,-0.0009689922444522381,7.047314121155779e-19,0.0001384274655720219,-6.268043809681823e-20,-1.01895137080158e-20,0.0002642706094775349,-7.550588634330779e-05,-1.2584315300046e-05,-6.268043809681823e-20,3.595518592192093e-06,-8.053716503713172e-22,4.4045100366929546e-05,9.071839058120226e-20,-6.4456248765054625e-06,-1.01895137080158e-20,-8.053716503713172e-22,1.5346725490417157e-07,8.0,44.0,0.0556378997862339,-0.013952020555734634,-0.0030330477748066187,0.0009469697251915932,0.00025252526393160224,4.1172595956595615e-05,-0.013952020555734634,0.008721140213310719,0.00025252526393160224,-0.0009469697251915932,-7.215006917249411e-05,2.5019069597166532e-20,-0.0030330477748066187,0.00025252526393160224,0.00031164416577667,6.776263578034403e-20,-1.174536100734258e-05,-5.881799552298617e-06,0.0009469697251915932,-0.0009469697251915932,6.776263578034403e-20,0.00013528138515539467,8.470329472543003e-22,-1.384055827121541e-21,0.00025252526393160224,-7.215006917249411e-05,-1.174536100734258e-05,8.470329472543003e-22,3.355817398187355e-06,-6.918268739367968e-22,4.1172595956595615e-05,2.5019069597166532e-20,-5.881799552298617e-06,-1.384055827121541e-21,-6.918268739367968e-22,1.36786027837843e-07,8.0,45.0,0.05446517467498779,-0.013647343032062054,-0.0029036900959908962,0.0009259259095415473,0.00024154588754754514,3.854455644614063e-05,-0.013647343032062054,0.008528870530426502,0.00024154588754754514,-0.0009259259095415473,-6.901311280671507e-05,2.2139991542580426e-20,-0.0029036900959908962,0.00024154588754754514,0.0002915424411185086,5.759824041329242e-20,-1.0979359103657771e-05,-5.378310561354738e-06,0.0009259259095415473,-0.0009259259095415473,5.759824041329242e-20,0.00013227513409219682,2.0328790734103208e-20,-3.02965784365861e-21,0.00024154588754754514,-6.901311280671507e-05,-1.0979359103657771e-05,2.0328790734103208e-20,3.1369595490104984e-06,-1.1144833598040676e-23,3.854455644614063e-05,2.2139991542580426e-20,-5.378310561354738e-06,-3.02965784365861e-21,-1.1144833598040676e-23,1.2223432577229687e-07,8.0,46.0,0.0533408485352993,-0.013355689123272896,-0.002782435156404972,0.0009057971183210611,0.0002312673459528014,3.613552325987257e-05,-0.013355689123272896,0.00834489706903696,0.0002312673459528014,-0.0009057971183210611,-6.607638351852074e-05,2.2938430860021504e-20,-0.002782435156404972,0.0002312673459528014,0.0002731334534473717,8.131516293641283e-20,-1.0278548870701343e-05,-4.927571353618987e-06,0.0009057971183210611,-0.0009057971183210611,8.131516293641283e-20,0.00012939958833158016,1.3552527156068805e-20,-2.830782096702303e-21,0.0002312673459528014,-6.607638351852074e-05,-1.0278548870701343e-05,1.3552527156068805e-20,2.9367281513259513e-06,-9.423640234816477e-23,3.613552325987257e-05,2.2938430860021504e-20,-4.927571353618987e-06,-2.830782096702303e-21,-9.423640234816477e-23,1.0950158468858717e-07,8.0,47.0,0.052261997014284134,-0.013076241128146648,-0.002668620552867651,0.0008865247946232557,0.00022163119865581393,3.392314465600066e-05,-0.013076241128146648,0.008168692700564861,0.00022163119865581393,-0.0008865247946232557,-6.332320481305942e-05,3.506336221668456e-21,-0.002668620552867651,0.00022163119865581393,0.0002562426379881799,0.0,-9.636139111535158e-06,-4.523085863183951e-06,0.0008865247946232557,-0.0008865247946232557,0.0,0.00012664640962611884,8.470329472543003e-22,-4.270770257218578e-22,0.00022163119865581393,-6.332320481305942e-05,-9.636139111535158e-06,8.470329472543003e-22,2.753182570813806e-06,1.1155159787290019e-23,3.392314465600066e-05,3.506336221668456e-21,-4.523085863183951e-06,-4.270770257218578e-22,1.1155159787290019e-23,9.832795200281907e-08,8.0,48.0,0.05122590810060501,-0.012808248400688171,-0.0025616497732698917,0.0008680555620230734,0.00021258502965793014,3.188775372109376e-05,-0.012808248400688171,0.007999776862561703,0.00021258502965793014,-0.0008680555620230734,-6.073858094168827e-05,-2.119098111984769e-20,-0.0025616497732698917,0.00021258502965793014,0.00024071666121017188,-8.809142651444724e-20,-9.046171726367902e-06,-4.1592725210648496e-06,0.0008680555620230734,-0.0008680555620230734,-8.809142651444724e-20,0.00012400794366840273,1.0164395367051604e-20,1.4779608195370916e-21,0.00021258502965793014,-6.073858094168827e-05,-9.046171726367902e-06,1.0164395367051604e-20,2.5846204607660184e-06,3.9695892220569477e-22,3.188775372109376e-05,-2.119098111984769e-20,-4.1592725210648496e-06,1.4779608195370916e-21,3.9695892220569477e-22,8.849515609199443e-08,8.0,49.0,0.05023009330034256,-0.012551020830869675,-0.002460984280332923,0.0008503401186317205,0.0002040816325461492,3.0012004572199658e-05,-0.012551020830869675,0.007837706245481968,0.0002040816325461492,-0.0008503401186317205,-5.8309036830905825e-05,-2.5943358305576444e-20,-0.002460984280332923,0.0002040816325461492,0.0002264203503727913,-2.829090043829363e-19,-8.50340165925445e-06,-3.831319645541953e-06,0.0008503401186317205,-0.0008503401186317205,-2.829090043829363e-19,0.00012147716188337654,3.176373552203626e-20,2.8605755429352004e-21,0.0002040816325461492,-5.8309036830905825e-05,-8.50340165925445e-06,3.176373552203626e-20,2.4295432012877427e-06,1.5681765934888494e-22,3.0012004572199658e-05,-2.5943358305576444e-20,-3.831319645541953e-06,2.8605755429352004e-21,1.5681765934888494e-22,7.981915928212402e-08,8.0,50.0,0.04927224665880203,-0.012303921394050121,-0.00236613885499537,0.0008333333535119891,0.0001960784284165129,2.8280543119763024e-05,-0.012303921394050121,0.007682072930037975,0.0001960784284165129,-0.0008333333535119891,-5.602241071755998e-05,-2.1561378704099583e-20,-0.00236613885499537,0.0001960784284165129,0.00021323433611541986,-3.2017845406212553e-19,-8.003201401152182e-06,-3.535067889970378e-06,0.0008333333535119891,-0.0008333333535119891,-3.2017845406212553e-19,0.0001190476177725941,4.870439446712227e-20,2.484892161477993e-21,0.0001960784284165129,-5.602241071755998e-05,-8.003201401152182e-06,4.870439446712227e-20,2.286628841829952e-06,6.079304185721621e-23,2.8280543119763024e-05,-2.1561378704099583e-20,-3.535067889970378e-06,2.484892161477993e-21,6.079304185721621e-23,7.214423902723865e-08,8.0,51.0,0.04835024103522301,-0.012066365219652653,-0.002276672748848796,0.0008169934735633433,0.0001885369565570727,2.6679757866077125e-05,-0.012066365219652653,0.007532500196248293,0.0001885369565570727,-0.0008169934735633433,-5.3867701353738084e-05,2.3086520423475504e-20,-0.002276672748848796,0.0001885369565570727,0.0002010528405662626,2.591920818598159e-19,-7.54147822590312e-06,-3.266909061494516e-06,0.0008169934735633433,-0.0008169934735633433,2.591920818598159e-19,0.00011671335232676938,-2.583450489125616e-20,-2.9538021907029078e-21,0.0001885369565570727,-5.3867701353738084e-05,-7.54147822590312e-06,-2.583450489125616e-20,2.1547079995798413e-06,-5.989386033212185e-23,2.6679757866077125e-05,2.3086520423475504e-20,-3.266909061494516e-06,-2.9538021907029078e-21,-5.989386033212185e-23,6.533818464049546e-08,8.0,52.0,0.0474621020257473,-0.011837808415293694,-0.0021921866573393345,0.0008012820617295802,0.0001814223505789414,2.5197548893629573e-05,-0.011837808415293694,0.0073886411264538765,0.0001814223505789414,-0.0008012820617295802,-5.183495886740275e-05,-2.9757305548712325e-20,-0.0021921866573393345,0.0001814223505789414,0.00018978200387209654,-1.1350241493207625e-19,-7.114601885405136e-06,-3.0237058581406018e-06,0.0008012820617295802,-0.0008012820617295802,-1.1350241493207625e-19,0.00011446886492194608,-1.1011428314305904e-20,2.7879973104289913e-21,0.0001814223505789414,-5.183495886740275e-05,-7.114601885405136e-06,-1.1011428314305904e-20,2.032743395830039e-06,3.469423892678452e-22,2.5197548893629573e-05,-2.9757305548712325e-20,-3.0237058581406018e-06,2.7879973104289913e-21,3.469423892678452e-22,5.9288350229280695e-08,8.0,53.0,0.046605996787548065,-0.0116177499294281,-0.0021123180631548166,0.0007861634949222207,0.000174703003722243,2.3823136871214956e-05,-0.0116177499294281,0.007250174880027771,0.000174703003722243,-0.0007861634949222207,-4.9915142881218344e-05,7.815567550093265e-20,-0.0021123180631548166,0.000174703003722243,0.0001793382689356804,4.3198680309969317e-19,-6.719346401951043e-06,-2.802722065098351e-06,0.0007861634949222207,-0.0007861634949222207,4.3198680309969317e-19,0.00011230907693970948,-5.082197683525802e-21,-7.489826409809297e-21,0.000174703003722243,-4.9915142881218344e-05,-6.719346401951043e-06,-5.082197683525802e-21,1.919813257700298e-06,-7.939866583258738e-22,2.3823136871214956e-05,7.815567550093265e-20,-2.802722065098351e-06,-7.489826409809297e-21,-7.939866583258738e-22,5.3898499885463025e-08,8.0,54.0,0.04578022286295891,-0.011405724100768566,-0.002036736346781254,0.0007716049440205097,0.00016835016140248626,2.2546897525899112e-05,-0.011405724100768566,0.007116802968084812,0.00016835016140248626,-0.0007716049440205097,-4.810004975297488e-05,1.3083269977558495e-21,-0.002036736346781254,0.00016835016140248626,0.00016964712995104492,5.082197683525802e-21,-6.352836408041185e-06,-2.6015650291810744e-06,0.0007716049440205097,-0.0007716049440205097,5.082197683525802e-21,0.00011022927355952561,2.329340604949326e-20,-1.2556307863644983e-21,0.00016835016140248626,-4.810004975297488e-05,-6.352836408041185e-06,2.329340604949326e-20,1.8150961977880797e-06,2.6373384585611223e-22,2.2546897525899112e-05,1.3083269977558495e-21,-2.6015650291810744e-06,-1.2556307863644983e-21,2.6373384585611223e-22,4.908613249199334e-08,8.0,55.0,0.04498319700360298,-0.011201298795640469,-0.001965140225365758,0.0007575757335871458,0.00016233765927609056,2.1360217942856252e-05,-0.011201298795640469,0.006988249719142914,0.00016233765927609056,-0.0007575757335871458,-4.638218888430856e-05,4.088358272119239e-20,-0.001965140225365758,0.00016233765927609056,0.0001606419828021899,1.7618285302889447e-19,-6.01250621912186e-06,-2.4181379103538347e-06,0.0007575757335871458,-0.0007575757335871458,1.7618285302889447e-19,0.00010822511103469878,1.3129010682441655e-20,-4.198658929394064e-21,0.00016233765927609056,-4.638218888430856e-05,-6.01250621912186e-06,1.3129010682441655e-20,1.717858822303242e-06,-3.078916540012919e-22,2.1360217942856252e-05,4.088358272119239e-20,-2.4181379103538347e-06,-4.198658929394064e-21,-3.078916540012919e-22,4.47803323311291e-08,8.0,56.0,0.044213443994522095,-0.011004072614014149,-0.001897253911010921,0.0007440476329065859,0.00015664160309825093,2.025538015004713e-05,-0.011004072614014149,0.006864259019494057,0.00015664160309825093,-0.0007440476329065859,-4.475474270293489e-05,-2.2590585256571617e-20,-0.001897253911010921,0.00015664160309825093,0.000152263164636679,-3.1679032227310833e-19,-5.696058451576391e-06,-2.2505978449771646e-06,0.0007440476329065859,-0.0007440476329065859,-3.1679032227310833e-19,0.00010629251482896507,5.421010862427522e-20,2.0645420366848805e-21,0.00015664160309825093,-4.475474270293489e-05,-5.696058451576391e-06,5.421010862427522e-20,1.627445271878969e-06,2.263401476308555e-22,2.025538015004713e-05,-2.2590585256571617e-20,-2.2505978449771646e-06,2.0645420366848805e-21,2.263401476308555e-22,4.0919960753171836e-08,8.0,57.0,0.04346958547830582,-0.010813672095537186,-0.001832825830206275,0.0007309941574931145,0.0001512401649961248,1.922544470289722e-05,-0.010813672095537186,0.006744591519236565,0.0001512401649961248,-0.0007309941574931145,-4.3211475713178515e-05,3.6572398147922703e-20,-0.001832825830206275,0.0001512401649961248,0.00014445716806221753,2.422514229147299e-19,-5.4014344641473144e-06,-2.0973213850083994e-06,0.0007309941574931145,-0.0007309941574931145,2.422514229147299e-19,0.00010442773782415316,-1.2281977735187355e-20,-3.2990301390991053e-21,0.0001512401649961248,-4.3211475713178515e-05,-5.4014344641473144e-06,-1.2281977735187355e-20,1.5432669897563756e-06,-3.7460548191631354e-22,1.922544470289722e-05,3.6572398147922703e-20,-2.0973213850083994e-06,-3.2990301390991053e-21,-3.7460548191631354e-22,3.74521675894357e-08,8.0,58.0,0.042750339955091476,-0.010629748925566673,-0.0017716247821226716,0.0007183908019214869,0.00014611337974201888,1.826417246775236e-05,-0.010629748925566673,0.006629025097936392,0.00014611337974201888,-0.0007183908019214869,-4.174667992629111e-05,1.7424100776683502e-20,-0.0017716247821226716,0.00014611337974201888,0.00013717584079131484,1.4060746924421386e-19,-5.1267852541059256e-06,-1.9568756215448957e-06,0.0007183908019214869,-0.0007183908019214869,1.4060746924421386e-19,0.00010262725845677778,-9.317362419797304e-21,-1.7134933297936596e-21,0.00014611337974201888,-4.174667992629111e-05,-5.1267852541059256e-06,-9.317362419797304e-21,1.4647957868874073e-06,-1.799410909906343e-22,1.826417246775236e-05,1.7424100776683502e-20,-1.9568756215448957e-06,-1.7134933297936596e-21,-1.799410909906343e-22,3.433115125517361e-08,8.0,59.0,0.04205450415611267,-0.010451977141201496,-0.0017134388908743858,0.0007062146905809641,0.00014124294102657586,1.7365935491397977e-05,-0.010451977141201496,0.006517352536320686,0.00014124294102657586,-0.0007062146905809641,-4.035512392874807e-05,-2.1398845791668583e-20,-0.0017134388908743858,0.00014124294102657586,0.0001303758326685056,-2.354751593366955e-19,-4.870445991400629e-06,-1.827993173719733e-06,0.0007062146905809641,-0.0007062146905809641,-2.354751593366955e-19,0.00010088780982187018,2.286988957586611e-20,2.594647679264164e-21,0.00014124294102657586,-4.035512392874807e-05,-4.870445991400629e-06,2.286988957586611e-20,1.391555997543037e-06,8.38679175325274e-23,1.7365935491397977e-05,-2.1398845791668583e-20,-1.827993173719733e-06,2.594647679264164e-21,8.38679175325274e-23,3.1517124909896665e-08,8.0,60.0,0.04138095676898956,-0.010280054993927479,-0.0016580732772126794,0.0006944444612599909,0.00013661202683579177,1.6525647879461758e-05,-0.010280054993927479,0.0064093805849552155,0.00013661202683579177,-0.0006944444612599909,-3.9032005588524044e-05,4.489672701117583e-20,-0.0016580732772126794,0.00013661202683579177,0.00012401801359374076,4.1335207826009857e-19,-4.6309160097735e-06,-1.7095497923946823e-06,0.0006944444612599909,-0.0006944444612599909,4.1335207826009857e-19,9.920635056914762e-05,-2.795208725939191e-20,-4.766002643719222e-21,0.00013661202683579177,-3.9032005588524044e-05,-4.6309160097735e-06,-2.795208725939191e-20,1.3231189086582162e-06,-2.7892657482774887e-22,1.6525647879461758e-05,4.489672701117583e-20,-1.7095497923946823e-06,-4.766002643719222e-21,-2.7892657482774887e-22,2.89754193971703e-08,8.0,61.0,0.04072863981127739,-0.010113696567714214,-0.0016053486615419388,0.0006830600905232131,0.00013220518303569406,1.5738713045720942e-05,-0.010113696567714214,0.0063049281015992165,0.00013220518303569406,-0.0006830600905232131,-3.7772908399347216e-05,-1.688080790412382e-20,-0.0016053486615419388,0.00013220518303569406,0.00011806701513705775,-1.1011428314305904e-19,-4.406839252624195e-06,-1.6005469660740346e-06,0.0006830600905232131,-0.0006830600905232131,-1.1011428314305904e-19,9.758001397131011e-05,-9.740878893424454e-21,2.2888978141749834e-21,0.00013220518303569406,-3.7772908399347216e-05,-4.406839252624195e-06,-9.740878893424454e-21,1.2590969618031522e-06,1.1525331189343168e-23,1.5738713045720942e-05,-1.688080790412382e-20,-1.6005469660740346e-06,2.2888978141749834e-21,1.1525331189343168e-23,2.6675783360019523e-08,8.0,62.0,0.04009656608104706,-0.009952637366950512,-0.0015550995012745261,0.0006720430101267993,0.00012800819240510464,1.50009600474732e-05,-0.009952637366950512,0.006203825585544109,0.00012800819240510464,-0.0006720430101267993,-3.657376873889007e-05,1.9237143354493358e-20,-0.0015550995012745261,0.00012800819240510464,0.00011249080853303894,1.1519648082658485e-19,-4.196989721094724e-06,-1.50009600474732e-06,0.0006720430101267993,-0.0006720430101267993,1.1519648082658485e-19,9.600614430382848e-05,-2.541098841762901e-21,-1.647123697668804e-21,0.00012800819240510464,-3.657376873889007e-05,-4.196989721094724e-06,-2.541098841762901e-21,1.1991400015176623e-06,-1.894590322891496e-22,1.50009600474732e-05,1.9237143354493358e-20,-1.50009600474732e-06,-1.647123697668804e-21,-1.894590322891496e-22,2.4591738423396237e-08,8.0,63.0,0.03948380798101425,-0.0097966268658638,-0.00150717340875417,0.0006613756413571537,0.00012400794366840273,1.430860811524326e-05,-0.0097966268658638,0.0061059147119522095,0.00012400794366840273,-0.0006613756413571537,-3.543083948898129e-05,-6.43005747240799e-20,-0.00150717340875417,0.00012400794366840273,0.00010726033360697329,-4.2012834183813297e-19,-4.00025601265952e-06,-1.407404056408268e-06,0.0006613756413571537,-0.0006613756413571537,-4.2012834183813297e-19,9.448223863728344e-05,-2.541098841762901e-21,6.616650839347913e-21,0.00012400794366840273,-3.543083948898129e-05,-4.00025601265952e-06,-2.541098841762901e-21,1.1429302730903146e-06,4.4265022546352615e-22,1.430860811524326e-05,-6.43005747240799e-20,-1.407404056408268e-06,6.616650839347913e-21,4.4265022546352615e-22,2.270006582705264e-08,8.0,64.0,0.03888949751853943,-0.009645432233810425,-0.0014614291721954942,0.0006510416860692203,0.0001201923078042455,1.3658216630574316e-05,-0.009645432233810425,0.006011046469211578,0.0001201923078042455,-0.0006510416860692203,-3.4340660931775346e-05,2.6433968497287022e-20,-0.0014614291721954942,0.0001201923078042455,0.00010234920773655176,1.2366681029912785e-19,-3.815629042946966e-06,-1.3217629657447105e-06,0.0006510416860692203,-0.0006510416860692203,1.2366681029912785e-19,9.300595411332324e-05,8.893845946170154e-21,-2.5588068884407147e-21,0.0001201923078042455,-3.4340660931775346e-05,-3.815629042946966e-06,8.893845946170154e-21,1.0901796940743225e-06,-2.180908839945528e-22,1.3658216630574316e-05,2.6433968497287022e-20,-1.3217629657447105e-06,-2.5588068884407147e-21,-2.180908839945528e-22,2.098036411268822e-08,9.0,3.0,0.4276094138622284,-0.13636364042758942,-0.30000001192092896,0.010101010091602802,0.03333333507180214,0.0555555559694767,-0.13636364042758942,0.08315295726060867,0.03333333507180214,-0.008658008649945259,-0.008333333767950535,6.245004513516506e-17,-0.30000001192092896,0.03333333507180214,0.855555534362793,9.1184254824783e-18,-0.03333333507180214,-0.3333333432674408,0.010101010091602802,-0.008658008649945259,9.1184254824783e-18,0.0010822510812431574,2.129164512298627e-20,-4.573942346406882e-18,0.03333333507180214,-0.008333333767950535,-0.03333333507180214,2.129164512298627e-20,0.008333333767950535,-1.5612511283791264e-17,0.0555555559694767,6.245004513516506e-17,-0.3333333432674408,-4.573942346406882e-18,-1.5612511283791264e-17,0.1666666716337204,9.0,4.0,0.3629292845726013,-0.10727272927761078,-0.1966666728258133,0.007575757801532745,0.019999999552965164,0.02777777798473835,-0.10727272927761078,0.06361471861600876,0.019999999552965164,-0.006493506487458944,-0.004999999888241291,1.2335811476632919e-17,-0.1966666728258133,0.019999999552965164,0.32555556297302246,6.9333567568867984e-18,-0.013333333656191826,-0.0833333358168602,0.007575757801532745,-0.006493506487458944,6.9333567568867984e-18,0.000811688310932368,-3.4990545448293553e-34,-2.3111188500305484e-18,0.019999999552965164,-0.004999999888241291,-0.013333333656191826,-3.4990545448293553e-34,0.0033333334140479565,4.205580208073236e-18,0.02777777798473835,1.2335811476632919e-17,-0.0833333358168602,-2.3111188500305484e-18,4.205580208073236e-18,0.02777777798473835,9.0,5.0,0.31497836112976074,-0.08848484605550766,-0.13904762268066406,0.0060606058686971664,0.013333333656191826,0.01587301678955555,-0.08848484605550766,0.051558442413806915,0.013333333656191826,-0.005194805096834898,-0.0033333334140479565,5.204170427930421e-18,-0.13904762268066406,0.013333333656191826,0.16476190090179443,1.5120418021865864e-18,-0.006666666828095913,-0.0317460335791111,0.0060606058686971664,-0.005194805096834898,1.5120418021865864e-18,0.0006493506371043622,-2.0844886812850942e-20,-3.959003509434255e-19,0.013333333656191826,-0.0033333334140479565,-0.006666666828095913,-2.0844886812850942e-20,0.0016666667070239782,-5.421010862427522e-19,0.01587301678955555,5.204170427930421e-18,-0.0317460335791111,-3.959003509434255e-19,-5.421010862427522e-19,0.007936508394777775,9.0,6.0,0.2780904173851013,-0.07532467693090439,-0.10357142984867096,0.005050505045801401,0.009523809887468815,0.009920635260641575,-0.07532467693090439,0.04336219280958176,0.009523809887468815,-0.0043290043249726295,-0.0023809524718672037,1.428607092328083e-17,-0.10357142984867096,0.009523809887468815,0.0959920659661293,1.1392235798545717e-17,-0.003809523768723011,-0.014880952425301075,0.005050505045801401,-0.0043290043249726295,1.1392235798545717e-17,0.0005411255406215787,-4.87890977618477e-19,-1.888134460332423e-18,0.009523809887468815,-0.0023809524718672037,-0.003809523768723011,-4.87890977618477e-19,0.0009523809421807528,3.276019347706944e-19,0.009920635260641575,1.428607092328083e-17,-0.014880952425301075,-1.888134460332423e-18,3.276019347706944e-19,0.0029761905316263437,9.0,7.0,0.2488696426153183,-0.06558441370725632,-0.08015873283147812,0.0043290043249726295,0.0071428571827709675,0.006613756529986858,-0.06558441370725632,0.037422697991132736,0.0071428571827709675,-0.003710575168952346,-0.0017857142956927419,8.963118186568407e-18,-0.08015873283147812,0.0071428571827709675,0.06111111119389534,9.308985561733979e-18,-0.0023809524718672037,-0.007936508394777775,0.0043290043249726295,-0.003710575168952346,9.308985561733979e-18,0.00046382189611904323,-5.421010862427522e-19,-1.1900968005287773e-18,0.0071428571827709675,-0.0017857142956927419,-0.0023809524718672037,-5.421010862427522e-19,0.0005952381179668009,1.8588538434610885e-19,0.006613756529986858,8.963118186568407e-18,-0.007936508394777775,-1.1900968005287773e-18,1.8588538434610885e-19,0.0013227512827143073,9.0,8.0,0.2251683473587036,-0.05808080732822418,-0.06388889253139496,0.0037878789007663727,0.0055555556900799274,0.004629629664123058,-0.05808080732822418,0.03291847184300423,0.0055555556900799274,-0.003246753243729472,-0.0013888889225199819,5.312590645178972e-18,-0.06388889253139496,0.0055555556900799274,0.04140211641788483,6.808437181549959e-18,-0.0015873016091063619,-0.004629629664123058,0.0037878789007663727,-0.003246753243729472,6.808437181549959e-18,0.000405844155466184,-3.0168393633635866e-19,-8.01984432600721e-19,0.0055555556900799274,-0.0013888889225199819,-0.0015873016091063619,-3.0168393633635866e-19,0.00039682540227659047,3.2526065174565133e-19,0.004629629664123058,5.312590645178972e-18,-0.004629629664123058,-8.01984432600721e-19,3.2526065174565133e-19,0.0006613756413571537,9.0,9.0,0.20556677877902985,-0.05212121084332466,-0.05212121084332466,0.003367003286257386,0.004444444552063942,0.003367003286257386,-0.05212121084332466,0.029384318739175797,0.004444444552063942,-0.0028860028833150864,-0.0011111111380159855,3.63207727782644e-18,-0.05212121084332466,0.004444444552063942,0.029384318739175797,5.94327202167819e-18,-0.0011111111380159855,-0.0028860028833150864,0.003367003286257386,-0.0028860028833150864,5.94327202167819e-18,0.0003607503604143858,-3.738111130706563e-19,-5.566178474991164e-19,0.004444444552063942,-0.0011111111380159855,-0.0011111111380159855,-3.738111130706563e-19,0.00027777778450399637,2.0328790734103208e-19,0.003367003286257386,3.63207727782644e-18,-0.0028860028833150864,-5.566178474991164e-19,2.0328790734103208e-19,0.0003607503604143858,9.0,10.0,0.18909090757369995,-0.04727272689342499,-0.04333333298563957,0.0030303029343485832,0.003636363660916686,0.0025252525229007006,-0.04727272689342499,0.026536796241998672,0.003636363660916686,-0.002597402548417449,-0.0009090909152291715,-1.951563910473908e-18,-0.04333333298563957,0.003636363660916686,0.021624580025672913,-2.7645792618321182e-18,-0.000808080832939595,-0.0018939394503831863,0.0030303029343485832,-0.002597402548417449,-2.7645792618321182e-18,0.0003246753185521811,2.2528126981092755e-19,2.0824804418541803e-19,0.003636363660916686,-0.0009090909152291715,-0.000808080832939595,2.2528126981092755e-19,0.00020202020823489875,6.776263578034403e-20,0.0025252525229007006,-1.951563910473908e-18,-0.0018939394503831863,2.0824804418541803e-19,6.776263578034403e-20,0.00021043770539108664,9.0,11.0,0.17505121231079102,-0.043250687420368195,-0.036596737802028656,0.002754820976406336,0.0030303029343485832,0.0019425019854679704,-0.043250687420368195,0.024193231016397476,0.0030303029343485832,-0.0023612750228494406,-0.0007575757335871458,-1.4907779871675686e-18,-0.036596737802028656,0.0030303029343485832,0.01638435572385788,-2.2197133243919075e-18,-0.000606060610152781,-0.001295001246035099,0.002754820976406336,-0.0023612750228494406,-2.2197133243919075e-18,0.00029515937785618007,1.7697533082981148e-19,1.5511488594459563e-19,0.0030303029343485832,-0.0007575757335871458,-0.000606060610152781,1.7697533082981148e-19,0.00015151515253819525,4.0657581468206416e-20,0.0019425019854679704,-1.4907779871675686e-18,-0.001295001246035099,1.5511488594459563e-19,4.0657581468206416e-20,0.00012950012751389295,9.0,12.0,0.16294631361961365,-0.03986014053225517,-0.03131868317723274,0.0025252525229007006,0.0025641026441007853,0.001526251551695168,-0.03986014053225517,0.022230546921491623,0.0025641026441007853,-0.0021645021624863148,-0.0006410256610251963,1.9244588561617704e-18,-0.03131868317723274,0.0025641026441007853,0.01271506305783987,3.590200018545024e-18,-0.0004662004648707807,-0.0009157509193755686,0.0025252525229007006,-0.0021645021624863148,3.590200018545024e-18,0.00027056277031078935,-2.2944092846690944e-19,-2.4294876202050624e-19,0.0025641026441007853,-0.0006410256610251963,-0.0004662004648707807,-2.2944092846690944e-19,0.00011655011621769518,-6.776263578034403e-21,0.001526251551695168,1.9244588561617704e-18,-0.0009157509193755686,-2.4294876202050624e-19,-6.776263578034403e-21,8.325008093379438e-05,9.0,13.0,0.15240314602851868,-0.03696303814649582,-0.027106227353215218,0.0023310023825615644,0.002197802299633622,0.0012210012646391988,-0.03696303814649582,0.02056276984512806,0.002197802299633622,-0.001998001942411065,-0.0005494505749084055,2.3852447794681098e-18,-0.027106227353215218,0.002197802299633622,0.010067709721624851,4.770245954245823e-18,-0.00036630037357099354,-0.000666000647470355,0.0023310023825615644,-0.001998001942411065,4.770245954245823e-18,0.00024975024280138314,-2.154849827411591e-19,-2.9576370129474007e-19,0.002197802299633622,-0.0005494505749084055,-0.00036630037357099354,-2.154849827411591e-19,9.157509339274839e-05,0.0,0.0012210012646391988,2.3852447794681098e-18,-0.000666000647470355,-2.9576370129474007e-19,0.0,5.550005516852252e-05,9.0,14.0,0.14313852787017822,-0.03445887565612793,-0.02369047701358795,0.0021645021624863148,0.0019047618843615055,0.0009920635493472219,-0.03445887565612793,0.019128015264868736,0.0019047618843615055,-0.001855287584476173,-0.0004761904710903764,1.2332799712022613e-18,-0.02369047701358795,0.0019047618843615055,0.008108974434435368,2.5027569524195368e-18,-0.00029304029885679483,-0.0004960317746736109,0.0021645021624863148,-0.001855287584476173,2.5027569524195368e-18,0.00023191094805952162,-1.2361715361298053e-19,-1.5448372128782353e-19,0.0019047618843615055,-0.0004761904710903764,-0.00029304029885679483,-1.2361715361298053e-19,7.326007471419871e-05,0.0,0.0009920635493472219,1.2332799712022613e-18,-0.0004960317746736109,-1.5448372128782353e-19,0.0,3.815628951997496e-05,9.0,15.0,0.13493365049362183,-0.03227272629737854,-0.02088235318660736,0.002020202111452818,0.0016666667070239782,0.0008169934735633433,-0.03227272629737854,0.017880592495203018,0.0016666667070239782,-0.0017316017765551805,-0.00041666667675599456,-4.87890977618477e-19,-0.02088235318660736,0.0016666667070239782,0.006628240924328566,-1.2579137200368202e-18,-0.0002380952355451882,-0.0003770739131141454,0.002020202111452818,-0.0017316017765551805,-1.2579137200368202e-18,0.00021645022206939757,9.374300880274509e-20,6.30672613554604e-20,0.0016666667070239782,-0.00041666667675599456,-0.0002380952355451882,9.374300880274509e-20,5.952380888629705e-05,0.0,0.0008169934735633433,-4.87890977618477e-19,-0.0003770739131141454,6.30672613554604e-20,0.0,2.6933850676869042e-05,9.0,16.0,0.12761685252189636,-0.030347593128681183,-0.01854575239121914,0.0018939394503831863,0.00147058826405555,0.0006808278849348426,-0.030347593128681183,0.016786033287644386,0.00147058826405555,-0.001623376621864736,-0.0003676470660138875,4.82183224596708e-19,-0.01854575239121914,0.00147058826405555,0.005487862043082714,1.0299920638612292e-18,-0.0001960784284165129,-0.0002917833917308599,0.0018939394503831863,-0.001623376621864736,1.0299920638612292e-18,0.000202922077733092,-1.0164395367051604e-20,-5.3241745083265585e-20,0.00147058826405555,-0.0003676470660138875,-0.0001960784284165129,-1.0164395367051604e-20,4.901960710412823e-05,-1.1675412008115902e-20,0.0006808278849348426,4.82183224596708e-19,-0.0002917833917308599,-5.3241745083265585e-20,-1.1675412008115902e-20,1.9452225387794897e-05,9.0,17.0,0.12105158716440201,-0.028639335185289383,-0.016580667346715927,0.001782531151548028,0.0013071895809844136,0.0005733287543989718,-0.028639335185289383,0.01581784151494503,0.0013071895809844136,-0.0015278839273378253,-0.0003267973952461034,9.157892337454737e-19,-0.016580667346715927,0.0013071895809844136,0.004595229867845774,1.463672932855431e-18,-0.0001633986976230517,-0.00022933150466997176,0.001782531151548028,-0.0015278839273378253,1.463672932855431e-18,0.00019098549091722816,-4.404571325722362e-20,-7.925484990099931e-20,0.0013071895809844136,-0.0003267973952461034,-0.0001633986976230517,-4.404571325722362e-20,4.0849674405762926e-05,-2.72510840019959e-20,0.0005733287543989718,9.157892337454737e-19,-0.00022933150466997176,-7.925484990099931e-20,-2.72510840019959e-20,1.4333219041873235e-05,9.0,18.0,0.11512788385152817,-0.027113238349556923,-0.01491228025406599,0.001683501643128693,0.0011695906287059188,0.000487329438328743,-0.027113238349556923,0.014955317601561546,0.0011695906287059188,-0.0014430014416575432,-0.0002923976571764797,-1.0317722599370199e-18,-0.01491228025406599,0.0011695906287059188,0.003886452177539468,-2.222614453595284e-18,-0.00013759889407083392,-0.00018274853937327862,0.001683501643128693,-0.0014430014416575432,-2.222614453595284e-18,0.0001803751802071929,8.470329472543003e-20,1.0492808042220177e-19,0.0011695906287059188,-0.0002923976571764797,-0.00013759889407083392,8.470329472543003e-20,3.439972351770848e-05,1.7675095162630794e-20,0.000487329438328743,-1.0317722599370199e-18,-0.00018274853937327862,1.0492808042220177e-19,1.7675095162630794e-20,1.07499135992839e-05,9.0,19.0,0.10975620895624161,-0.02574162743985653,-0.013483709655702114,0.0015948963118717074,0.0010526315309107304,0.0004177109512966126,-0.02574162743985653,0.014182046055793762,0.0010526315309107304,-0.0013670539483428001,-0.0002631578827276826,-5.352539436259797e-19,-0.013483709655702114,0.0010526315309107304,0.003316461108624935,-1.1926223897340549e-18,-0.00011695906141540036,-0.00014742738858330995,0.0015948963118717074,-0.0013670539483428001,-1.1926223897340549e-18,0.00017088174354285002,4.743384504624082e-20,5.1887482399454354e-20,0.0010526315309107304,-0.0002631578827276826,-0.00011695906141540036,4.743384504624082e-20,2.923976535385009e-05,1.0633700811227539e-20,0.0004177109512966126,-5.352539436259797e-19,-0.00014742738858330995,5.1887482399454354e-20,1.0633700811227539e-20,8.19041088107042e-06,9.0,20.0,0.10486291348934174,-0.024502163752913475,-0.012251081876456738,0.0015151514671742916,0.0009523809421807528,0.0003607503604143858,-0.024502163752913475,0.013484848663210869,0.0009523809421807528,-0.0012987012742087245,-0.0002380952355451882,-1.2672444207439949e-18,-0.012251081876456738,0.0009523809421807528,0.00285283918492496,-2.032879073410321e-18,-0.00010025062510976568,-0.0001202501225634478,0.0015151514671742916,-0.0012987012742087245,-2.032879073410321e-18,0.00016233765927609056,-6.606856988583543e-20,1.177181150745586e-19,0.0009523809421807528,-0.0002380952355451882,-0.00010025062510976568,-6.606856988583543e-20,2.506265627744142e-05,2.786303932774602e-20,0.0003607503604143858,-1.2672444207439949e-18,-0.0001202501225634478,1.177181150745586e-19,2.786303932774602e-20,6.3289535319199786e-06,9.0,21.0,0.10038689523935318,-0.023376623168587685,-0.011180124245584011,0.0014430014416575432,0.0008658008882775903,0.00031369595672003925,-0.023376623168587685,0.012853019870817661,0.0008658008882775903,-0.0012368584284558892,-0.00021645022206939757,7.689252805406384e-19,-0.011180124245584011,0.0008658008882775903,0.0024718581698834896,1.328147661294743e-18,-8.658008300699294e-05,-9.9061886430718e-05,0.0014430014416575432,-0.0012368584284558892,1.328147661294743e-18,0.00015460730355698615,3.218725199566341e-20,-7.204911156398796e-20,0.0008658008882775903,-0.00021645022206939757,-8.658008300699294e-05,3.218725199566341e-20,2.1645020751748234e-05,-1.3957600086975437e-20,0.00031369595672003925,7.689252805406384e-19,-9.9061886430718e-05,-7.204911156398796e-20,-1.3957600086975437e-20,4.95309404868749e-06,9.0,22.0,0.09627699851989746,-0.02234998159110546,-0.010243741795420647,0.001377410488203168,0.0007905138190835714,0.00027448395849205554,-0.02234998159110546,0.012277774512767792,0.0007905138190835714,-0.0011806375114247203,-0.00019762845477089286,4.4039157850869135e-19,-0.010243741795420647,0.0007905138190835714,0.0021558755543082952,1.4907779871675686e-18,-7.528703281423077e-05,-8.234519191319123e-05,0.001377410488203168,-0.0011806375114247203,1.4907779871675686e-18,0.00014757968892809004,-1.0672615135404184e-19,-4.694699755696508e-20,0.0007905138190835714,-0.00019762845477089286,-7.528703281423077e-05,-1.0672615135404184e-19,1.8821758203557692e-05,-5.211958007049007e-21,0.00027448395849205554,4.4039157850869135e-19,-8.234519191319123e-05,-4.694699755696508e-20,-5.211958007049007e-21,3.921199549949961e-06,9.0,23.0,0.09249012172222137,-0.02140974998474121,-0.009420289658010006,0.0013175230706110597,0.0007246377062983811,0.00024154588754754514,-0.02140974998474121,0.011751835234463215,0.0007246377062983811,-0.0011293054558336735,-0.00018115942657459527,-2.205958086286975e-19,-0.009420289658010006,0.0007246377062983811,0.001891586696729064,-1.0028870095490916e-18,-6.587615644093603e-05,-6.901311280671507e-05,0.0013175230706110597,-0.0011293054558336735,-1.0028870095490916e-18,0.00014116318197920918,8.978549240895584e-20,2.5649334371905056e-20,0.0007246377062983811,-0.00018115942657459527,-6.587615644093603e-05,8.978549240895584e-20,1.6469039110234007e-05,9.660724365053855e-22,0.00024154588754754514,-2.205958086286975e-19,-6.901311280671507e-05,2.5649334371905056e-20,9.660724365053855e-22,3.1369595490104984e-06,9.0,24.0,0.08898963779211044,-0.02054545469582081,-0.008692307397723198,0.0012626262614503503,0.0006666666595265269,0.0002136752154910937,-0.02054545469582081,0.011269119568169117,0.0006666666595265269,-0.0010822510812431574,-0.00016666666488163173,1.9343880995903096e-19,-0.008692307397723198,0.0006666666595265269,0.001668828772380948,4.336808689942018e-19,-5.79710140300449e-05,-5.827505810884759e-05,0.0012626262614503503,-0.0010822510812431574,4.336808689942018e-19,0.00013528138515539467,1.0164395367051604e-20,-1.9869729727943286e-20,0.0006666666595265269,-0.00016666666488163173,-5.79710140300449e-05,1.0164395367051604e-20,1.4492753507511225e-05,-3.118500999635283e-21,0.0002136752154910937,1.9343880995903096e-19,-5.827505810884759e-05,-1.9869729727943286e-20,-3.118500999635283e-21,2.5336980797874276e-06,9.0,25.0,0.08574428409337997,-0.019748251885175705,-0.008045583963394165,0.001212121220305562,0.0006153846043162048,0.0001899335184134543,-0.019748251885175705,0.010824508965015411,0.0006153846043162048,-0.0010389609960839152,-0.0001538461510790512,2.055310789906081e-19,-0.008045583963394165,0.0006153846043162048,0.001479747355915606,9.622294280808852e-19,-5.1282051572343335e-05,-4.954787436872721e-05,0.001212121220305562,-0.0010389609960839152,9.622294280808852e-19,0.0001298701245104894,-9.486769009248164e-20,-2.1871931709737827e-20,0.0006153846043162048,-0.0001538461510790512,-5.1282051572343335e-05,-9.486769009248164e-20,1.2820512893085834e-05,-1.862101900614423e-21,0.0001899335184134543,2.055310789906081e-19,-4.954787436872721e-05,-2.1871931709737827e-20,-1.862101900614423e-21,2.0644947653636336e-06,9.0,26.0,0.08272714912891388,-0.019010618329048157,-0.007468457333743572,0.0011655011912807822,0.0005698005552403629,0.0001695835089776665,-0.019010618329048157,0.010413660667836666,0.0005698005552403629,-0.0009990009712055326,-0.00014245013881009072,-2.421245023894913e-19,-0.007468457333743572,0.0005698005552403629,0.0013182064285501838,-5.149960319306146e-19,-4.5584045437863097e-05,-4.2395877244416624e-05,0.0011655011912807822,-0.0009990009712055326,-5.149960319306146e-19,0.00012487512140069157,-1.3552527156068805e-20,2.2091908438301514e-20,0.0005698005552403629,-0.00014245013881009072,-4.5584045437863097e-05,-1.3552527156068805e-20,1.1396011359465774e-05,3.981135873789976e-21,0.0001695835089776665,-2.421245023894913e-19,-4.2395877244416624e-05,2.2091908438301514e-20,3.981135873789976e-21,1.6958350670392974e-06,9.0,27.0,0.07991500198841095,-0.01832611858844757,-0.006951286457479,0.0011223345063626766,0.0005291005363687873,0.0001520403748145327,-0.01832611858844757,0.010032868012785912,0.0005291005363687873,-0.0009620009805075824,-0.00013227513409219682,-4.669429387983013e-19,-0.006951286457479,0.0005291005363687873,0.0011793655576184392,-1.0570971181733668e-18,-4.0700040699448436e-05,-3.648969141067937e-05,0.0011223345063626766,-0.0009620009805075824,-1.0570971181733668e-18,0.0001202501225634478,-2.710505431213761e-20,4.3721245199601157e-20,0.0005291005363687873,-0.00013227513409219682,-4.0700040699448436e-05,-2.710505431213761e-20,1.0175010174862109e-05,6.52563067970832e-21,0.0001520403748145327,-4.669429387983013e-19,-3.648969141067937e-05,4.3721245199601157e-20,6.52563067970832e-21,1.403449687131797e-06,9.0,28.0,0.07728765159845352,-0.017689207568764687,-0.006486042868345976,0.0010822510812431574,0.0004926108522340655,0.00013683634460903704,-0.017689207568764687,0.009678949601948261,0.0004926108522340655,-0.0009276437922380865,-0.00012315271305851638,-4.667972774623095e-20,-0.006486042868345976,0.0004926108522340655,0.001059370581060648,-4.2012834183813297e-19,-3.648969141067937e-05,-3.157761602778919e-05,0.0010822510812431574,-0.0009276437922380865,-4.2012834183813297e-19,0.00011595547402976081,5.336307567702092e-20,7.169519296850177e-21,0.0004926108522340655,-0.00012315271305851638,-3.648969141067937e-05,5.336307567702092e-20,9.122422852669843e-06,-8.802399271527212e-22,0.00013683634460903704,-4.667972774623095e-20,-3.157761602778919e-05,7.169519296850177e-21,-8.802399271527212e-22,1.1695414059431641e-06,9.0,29.0,0.07482747733592987,-0.017095088958740234,-0.006065999157726765,0.0010449320543557405,0.0004597701190505177,0.00012359411630313843,-0.017095088958740234,0.00934915617108345,0.0004597701190505177,-0.000895656063221395,-0.00011494252976262942,-2.3946478067800946e-19,-0.006065999157726765,0.0004597701190505177,0.0009551274706609547,-5.692061405548898e-19,-3.284072226961143e-05,-2.746535938058514e-05,0.0010449320543557405,-0.000895656063221395,-5.692061405548898e-19,0.00011195700790267438,-2.286988957586611e-20,2.3050118014174636e-20,0.0004597701190505177,-0.00011494252976262942,-3.284072226961143e-05,-2.286988957586611e-20,8.210180567402858e-06,2.7132271300788733e-21,0.00012359411630313843,-2.3946478067800946e-19,-2.746535938058514e-05,2.3050118014174636e-20,2.7132271300788733e-21,9.809057246457087e-07,9.0,30.0,0.07251900434494019,-0.016539588570594788,-0.0056854840368032455,0.001010101055726409,0.00043010752415284514,0.00011200716835446656,-0.016539588570594788,0.009041102603077888,0.00043010752415284514,-0.0008658008882775903,-0.00010752688103821129,1.4959564609195773e-20,-0.0056854840368032455,0.00043010752415284514,0.0008641325403004885,2.710505431213761e-20,-2.966258762171492e-05,-2.400153607595712e-05,0.001010101055726409,-0.0008658008882775903,2.710505431213761e-20,0.00010822511103469878,9.317362419797304e-21,-2.792645556561592e-21,0.00043010752415284514,-0.00010752688103821129,-2.966258762171492e-05,9.317362419797304e-21,7.41564690542873e-06,3.861158081823785e-22,0.00011200716835446656,1.4959564609195773e-20,-2.400153607595712e-05,-2.792645556561592e-21,3.861158081823785e-22,8.276391554318252e-07,9.0,31.0,0.07034865021705627,-0.0160190612077713,-0.0053396872244775295,0.0009775171056389809,0.0004032258002553135,0.00010182469850406051,-0.0160190612077713,0.008752705529332161,0.0004032258002553135,-0.0008378718048334122,-0.00010080645006382838,1.9915661839512134e-19,-0.0053396872244775295,0.0004032258002553135,0.0007843451458029449,6.505213034913027e-19,-2.688172025955282e-05,-2.1067178749945015e-05,0.0009775171056389809,-0.0008378718048334122,6.505213034913027e-19,0.00010473397560417652,-5.929230630780102e-21,-1.9207654042538416e-20,0.0004032258002553135,-0.00010080645006382838,-2.688172025955282e-05,-5.929230630780102e-21,6.720430064888205e-06,-2.2147365082259512e-21,0.00010182469850406051,1.9915661839512134e-19,-2.1067178749945015e-05,-1.9207654042538416e-20,-2.2147365082259512e-21,7.022392765065888e-07,9.0,32.0,0.06830436736345291,-0.015530303120613098,-0.005024509970098734,0.0009469697251915932,0.0003787878667935729,9.284016414312646e-05,-0.015530303120613098,0.00848214328289032,0.0003787878667935729,-0.000811688310932368,-9.469696669839323e-05,-4.896738297195158e-20,-0.005024509970098734,0.0003787878667935729,0.0007140905945561826,-2.574980159653073e-19,-2.4437928004772402e-05,-1.856803282862529e-05,0.0009469697251915932,-0.000811688310932368,-2.574980159653073e-19,0.000101461038866546,1.2705494208814505e-20,5.371736747313504e-21,0.0003787878667935729,-9.469696669839323e-05,-2.4437928004772402e-05,1.2705494208814505e-20,6.109482001193101e-06,4.651348564768893e-22,9.284016414312646e-05,-4.896738297195158e-20,-1.856803282862529e-05,5.371736747313504e-21,4.651348564768893e-22,5.989688247609593e-07,9.0,33.0,0.0663754940032959,-0.015070491470396519,-0.004736440256237984,0.0009182736393995583,0.0003565062361303717,8.488243474857882e-05,-0.015070491470396519,0.008227809332311153,0.0003565062361303717,-0.0007870916742831469,-8.912655903259292e-05,-2.519076708917325e-19,-0.004736440256237984,0.0003565062361303717,0.0006519861053675413,-8.538092108323347e-19,-2.228163975814823e-05,-1.6428859453299083e-05,0.0009182736393995583,-0.0007870916742831469,-8.538092108323347e-19,9.838645928539336e-05,7.623296525288703e-21,2.425493081016513e-20,0.0003565062361303717,-8.912655903259292e-05,-2.228163975814823e-05,7.623296525288703e-21,5.570409939537058e-06,2.8560781522512268e-21,8.488243474857882e-05,-2.519076708917325e-19,-1.6428859453299083e-05,2.425493081016513e-20,2.8560781522512268e-21,5.134018579155963e-07,9.0,34.0,0.06455253064632416,-0.01463712751865387,-0.004472455475479364,0.000891265575774014,0.00033613445702940226,7.780890155117959e-05,-0.01463712751865387,0.007988286204636097,0.00033613445702940226,-0.0007639419636689126,-8.403361425735056e-05,2.028410230151003e-19,-0.004472455475479364,0.00033613445702940226,0.00059688271721825,7.589415207398531e-19,-2.0371784557937644e-05,-1.4589169040846173e-05,0.000891265575774014,-0.0007639419636689126,7.589415207398531e-19,9.549274545861408e-05,-1.6093625997831706e-20,-1.9634572942669544e-20,0.00033613445702940226,-8.403361425735056e-05,-2.0371784557937644e-05,-1.6093625997831706e-20,5.092946139484411e-06,-2.220464976305951e-21,7.780890155117959e-05,2.028410230151003e-19,-1.4589169040846173e-05,-1.9634572942669544e-20,-2.220464976305951e-21,4.420960237894178e-07,9.0,35.0,0.0628269836306572,-0.014227993786334991,-0.004229944199323654,0.0008658008882775903,0.0003174603043589741,7.150007149903104e-05,-0.014227993786334991,0.007762317080050707,0.0003174603043589741,-0.000742115022148937,-7.936507608974352e-05,5.774507789671766e-20,-0.004229944199323654,0.0003174603043589741,0.0005478205275721848,2.168404344971009e-19,-1.8674136299523525e-05,-1.3000012586417142e-05,0.0008658008882775903,-0.000742115022148937,2.168404344971009e-19,9.276437776861712e-05,-1.1858461261560205e-20,-4.357715906106494e-21,0.0003174603043589741,-7.936507608974352e-05,-1.8674136299523525e-05,-1.1858461261560205e-20,4.668534074880881e-06,-1.0123563825623169e-21,7.150007149903104e-05,5.774507789671766e-20,-1.3000012586417142e-05,-4.357715906106494e-21,-1.0123563825623169e-21,3.823533347713237e-07,9.0,36.0,0.06119125336408615,-0.01384111400693655,-0.004006638191640377,0.0008417508215643466,0.00030030030757188797,6.585533265024424e-05,-0.01384111400693655,0.007548782508820295,0.00030030030757188797,-0.0007215007208287716,-7.507507689297199e-05,-1.343506104673774e-19,-0.004006638191640377,0.00030030030757188797,0.0005039935931563377,-6.844026213814747e-19,-1.7160016795969568e-05,-1.1621528756222688e-05,0.0008417508215643466,-0.0007215007208287716,-6.844026213814747e-19,9.018759010359645e-05,6.013933925505532e-20,1.163523801065096e-20,0.00030030030757188797,-7.507507689297199e-05,-1.7160016795969568e-05,6.013933925505532e-20,4.290004198992392e-06,1.8131732384193094e-21,6.585533265024424e-05,-1.343506104673774e-19,-1.1621528756222688e-05,1.163523801065096e-20,1.8131732384193094e-21,3.3204366900463356e-07,9.0,37.0,0.05963851138949394,-0.013474718667566776,-0.0038005616515874863,0.0008190008229576051,0.0002844950358849019,6.0789534472860396e-05,-0.013474718667566776,0.007346683647483587,0.0002844950358849019,-0.0007020006887614727,-7.112375897122547e-05,-2.3905364606417646e-20,-0.0038005616515874863,0.0002844950358849019,0.0004647215246222913,-2.574980159653073e-19,-1.5805278962943703e-05,-1.0421063052490354e-05,0.0008190008229576051,-0.0007020006887614727,-2.574980159653073e-19,8.775008609518409e-05,3.7269449679189215e-20,2.342743717760491e-21,0.0002844950358849019,-7.112375897122547e-05,-1.5805278962943703e-05,3.7269449679189215e-20,3.951319740735926e-06,2.412498459314733e-22,6.0789534472860396e-05,-2.3905364606417646e-20,-1.0421063052490354e-05,2.342743717760491e-21,2.412498459314733e-22,2.894739736802876e-07,9.0,38.0,0.05816259607672691,-0.013127223588526249,-0.003609986510127783,0.0007974481559358537,0.0002699055476114154,5.623032120638527e-05,-0.013127223588526249,0.007155125495046377,0.0002699055476114154,-0.0006835269741714001,-6.747638690285385e-05,8.081762672265926e-20,-0.003609986510127783,0.0002699055476114154,0.00042942739673890173,2.879912020664621e-19,-1.4589488273486495e-05,-9.371719897899311e-06,0.0007974481559358537,-0.0006835269741714001,2.879912020664621e-19,8.544087177142501e-05,1.6940658945086007e-21,-7.557257785603708e-21,0.0002699055476114154,-6.747638690285385e-05,-1.4589488273486495e-05,1.6940658945086007e-21,3.6473720683716238e-06,-8.28538816461652e-22,5.623032120638527e-05,8.081762672265926e-20,-9.371719897899311e-06,-7.557257785603708e-21,-8.28538816461652e-22,2.5328972697025165e-07,9.0,39.0,0.05675794929265976,-0.012797202914953232,-0.0034333958756178617,0.0007770007941871881,0.00025641024694778025,5.211590541875921e-05,-0.012797202914953232,0.006973304320126772,0.00025641024694778025,-0.000666000647470355,-6.410256173694506e-05,1.0234809762930034e-19,-0.0034333958756178617,0.00025641024694778025,0.00039761990774422884,3.3203691532368573e-19,-1.3495277016772889e-05,-8.451227586192545e-06,0.0007770007941871881,-0.000666000647470355,3.3203691532368573e-19,8.325008093379438e-05,-2.541098841762901e-21,-8.618292212406993e-21,0.00025641024694778025,-6.410256173694506e-05,-1.3495277016772889e-05,-2.541098841762901e-21,3.373819254193222e-06,-1.2675158531149795e-21,5.211590541875921e-05,1.0234809762930034e-19,-8.451227586192545e-06,-8.618292212406993e-21,-1.2675158531149795e-21,2.2240072894419427e-07,9.0,40.0,0.05541952699422836,-0.012483370490372181,-0.0032694542314857244,0.0007575757335871458,0.0002439024392515421,4.839333996642381e-05,-0.012483370490372181,0.006800496019423008,0.0002439024392515421,-0.0006493506371043622,-6.097560981288552e-05,1.8520697992154173e-19,-0.0032694542314857244,0.0002439024392515421,0.0003688787401188165,7.335305323222241e-19,-1.250781770067988e-05,-7.641054253326729e-06,0.0007575757335871458,-0.0006493506371043622,7.335305323222241e-19,8.116882963804528e-05,-1.0587911840678754e-20,-1.6875180814136472e-20,0.0002439024392515421,-6.097560981288552e-05,-1.250781770067988e-05,-1.0587911840678754e-20,3.12695442516997e-06,-1.9188811045899043e-21,4.839333996642381e-05,1.8520697992154173e-19,-7.641054253326729e-06,-1.6875180814136472e-20,-1.9188811045899043e-21,1.95924457102592e-07,9.0,41.0,0.05414275825023651,-0.012184563092887402,-0.0031169813591986895,0.0007390982937067747,0.00023228803183883429,4.5017062802799046e-05,-0.012184563092887402,0.006636046804487705,0.00023228803183883429,-0.000633512856438756,-5.807200795970857e-05,1.4647350779983888e-20,-0.0031169813591986895,0.00023228803183883429,0.0003428430063650012,1.7110065534536867e-19,-1.1614401955739595e-05,-6.925701654836303e-06,0.0007390982937067747,-0.000633512856438756,1.7110065534536867e-19,7.91891070548445e-05,-2.752857078576476e-20,-1.5296062934462374e-21,0.00023228803183883429,-5.807200795970857e-05,-1.1614401955739595e-05,-2.752857078576476e-20,2.9036004889348987e-06,-6.685379708315682e-23,4.5017062802799046e-05,1.4647350779983888e-20,-6.925701654836303e-06,-1.5296062934462374e-21,-6.685379708315682e-23,1.7314253852873662e-07,9.0,42.0,0.052923474460840225,-0.011899728327989578,-0.0029749320819973946,0.0007215007208287716,0.0002214839478256181,4.1947714635170996e-05,-0.011899728327989578,0.006479363888502121,0.0002214839478256181,-0.0006184292142279446,-5.537098695640452e-05,-4.853292251107944e-20,-0.0029749320819973946,0.0002214839478256181,0.0003192016447428614,-1.4399560103323106e-19,-1.0804094927152619e-05,-6.292157650023e-06,0.0007215007208287716,-0.0006184292142279446,-1.4399560103323106e-19,7.730365177849308e-05,-1.6093625997831706e-20,4.873506234989139e-21,0.0002214839478256181,-5.537098695640452e-05,-1.0804094927152619e-05,-1.6093625997831706e-20,2.7010237317881547e-06,3.491692489399755e-22,4.1947714635170996e-05,-4.853292251107944e-20,-6.292157650023e-06,4.873506234989139e-21,3.491692489399755e-22,1.5346725490417157e-07,9.0,43.0,0.05175789073109627,-0.011627906933426857,-0.002842377172783017,0.0007047216058708727,0.00021141649631317705,3.9151200326159596e-05,-0.011627906933426857,0.006329910364001989,0.00021141649631317705,-0.0006040470907464623,-5.285412407829426e-05,-2.6528397949675912e-20,-0.002842377172783017,0.00021141649631317705,0.0002976855612359941,-5.421010862427522e-20,-1.0067451512441039e-05,-5.729444183089072e-06,0.0007047216058708727,-0.0006040470907464623,-5.421010862427522e-20,7.550588634330779e-05,-4.658681209898652e-21,2.079929494393249e-21,0.00021141649631317705,-5.285412407829426e-05,-1.0067451512441039e-05,-4.658681209898652e-21,2.5168628781102598e-06,3.7335309896495915e-22,3.9151200326159596e-05,-2.6528397949675912e-20,-5.729444183089072e-06,2.079929494393249e-21,3.7335309896495915e-22,1.3641533769259695e-07,9.0,44.0,0.05064252391457558,-0.011368228122591972,-0.0027184891514480114,0.000688705244101584,0.00020202020823489875,3.6597863072529435e-05,-0.011368228122591972,0.00618719682097435,0.00020202020823489875,-0.0005903187557123601,-5.0505052058724687e-05,5.31278720397203e-21,-0.0027184891514480114,0.00020202020823489875,0.0002780610811896622,-9.825582188149884e-20,-9.396288078278303e-06,-5.228266218182398e-06,0.000688705244101584,-0.0005903187557123601,-9.825582188149884e-20,7.378984446404502e-05,3.7269449679189215e-20,-1.1610421986429195e-21,0.00020202020823489875,-5.0505052058724687e-05,-9.396288078278303e-06,3.7269449679189215e-20,2.3490720195695758e-06,8.486886211439527e-23,3.6597863072529435e-05,5.31278720397203e-21,-5.228266218182398e-06,-1.1610421986429195e-21,8.486886211439527e-23,1.2158758977420803e-07,9.0,45.0,0.04957420751452446,-0.011119894683361053,-0.0026025285478681326,0.0006734006456099451,0.0001932367158588022,3.4261829569004476e-05,-0.011119894683361053,0.006050776690244675,0.0001932367158588022,-0.0005772005533799529,-4.830917896470055e-05,4.656324391387729e-20,-0.0026025285478681326,0.0001932367158588022,0.00026012479793280363,2.778268066994105e-19,-8.783486919128336e-06,-4.780720246344572e-06,0.0006734006456099451,-0.0005772005533799529,2.778268066994105e-19,7.215006917249411e-05,-1.3129010682441655e-20,-4.793728946214304e-21,0.0001932367158588022,-4.830917896470055e-05,-8.783486919128336e-06,-1.3129010682441655e-20,2.195871729782084e-06,-3.0463394876354224e-22,3.4261829569004476e-05,4.656324391387729e-20,-4.780720246344572e-06,-4.793728946214304e-21,-3.0463394876354224e-22,1.0865273480931137e-07,9.0,46.0,0.04855002462863922,-0.0108821801841259,-0.0024938329588621855,0.0006587615353055298,0.00018501387967262417,3.2120464311446995e-05,-0.0108821801841259,0.005920243915170431,0.00018501387967262417,-0.0005646527279168367,-4.625346991815604e-05,8.053204261617532e-20,-0.0024938329588621855,0.00018501387967262417,0.0002436989452689886,3.8794108984246956e-19,-8.222838914662134e-06,-4.380063273856649e-06,0.0006587615353055298,-0.0005646527279168367,3.8794108984246956e-19,7.058159098960459e-05,-1.5246593050577406e-20,-7.047811463499076e-21,0.00018501387967262417,-4.625346991815604e-05,-8.222838914662134e-06,-1.5246593050577406e-20,2.0557097286655335e-06,-8.523833679449693e-22,3.2120464311446995e-05,8.053204261617532e-20,-4.380063273856649e-06,-7.047811463499076e-21,-8.523833679449693e-22,9.733474115591889e-08,9.0,47.0,0.04756729304790497,-0.010654416866600513,-0.002391807734966278,0.0006447453051805496,0.00017730495892465115,3.0153905754559673e-05,-0.010654416866600513,0.005795224104076624,0.00017730495892465115,-0.0005526388413272798,-4.4326239731162786e-05,3.1546334039364e-21,-0.002391807734966278,0.00017730495892465115,0.00022862778860144317,5.759824041329242e-20,-7.708911653026007e-06,-4.020520918857073e-06,0.0006447453051805496,-0.0005526388413272798,5.759824041329242e-20,6.907985516590998e-05,-7.623296525288703e-21,-7.966922619041646e-22,0.00017730495892465115,-4.4326239731162786e-05,-7.708911653026007e-06,-7.623296525288703e-21,1.9272279132565018e-06,1.0961979584514971e-22,3.0153905754559673e-05,3.1546334039364e-21,-4.020520918857073e-06,-7.966922619041646e-22,1.0961979584514971e-22,8.74026255814897e-08,9.0,48.0,0.04662354663014412,-0.01043599285185337,-0.002295918297022581,0.0006313131307251751,0.0001700680295471102,2.8344671591185033e-05,-0.01043599285185337,0.005675376392900944,0.0001700680295471102,-0.0005411255406215787,-4.251700738677755e-05,1.727467350708264e-20,-0.002295918297022581,0.0001700680295471102,0.00021477446716744453,2.947674656444965e-19,-7.236937108245911e-06,-3.6971309782529715e-06,0.0006313131307251751,-0.0005411255406215787,2.947674656444965e-19,6.764069257769734e-05,-3.9387032047324966e-20,-2.267101120358071e-21,0.0001700680295471102,-4.251700738677755e-05,-7.236937108245911e-06,-3.9387032047324966e-20,1.8092342770614778e-06,3.708800831359637e-23,2.8344671591185033e-05,1.727467350708264e-20,-3.6971309782529715e-06,-2.267101120358071e-21,3.708800831359637e-23,7.866236018116979e-08,9.0,49.0,0.04571651667356491,-0.01022634468972683,-0.0022056822199374437,0.0006184292142279446,0.00016326530021615326,2.6677336791181006e-05,-0.01022634468972683,0.005560385063290596,0.00016326530021615326,-0.000530082150362432,-4.0816325054038316e-05,-5.2110827627192207e-20,-0.0022056822199374437,0.00016326530021615326,0.0002020183892454952,-2.456395547037471e-19,-6.80272114550462e-06,-3.405617462703958e-06,0.0006184292142279446,-0.000530082150362432,-2.456395547037471e-19,6.6260268795304e-05,4.235164736271502e-21,4.462138976608861e-21,0.00016326530021615326,-4.0816325054038316e-05,-6.80272114550462e-06,4.235164736271502e-21,1.700680286376155e-06,5.184676596860921e-22,2.6677336791181006e-05,-5.2110827627192207e-20,-3.405617462703958e-06,4.462138976608861e-21,5.184676596860921e-22,7.095036380633246e-08,9.0,50.0,0.04484409838914871,-0.010024955496191978,-0.002120663644745946,0.000606060610152781,0.00015686274855397642,2.51382607530104e-05,-0.010024955496191978,0.005449961870908737,0.00015686274855397642,-0.0005194804980419576,-3.9215687138494104e-05,-3.629851089228815e-21,-0.002120663644745946,0.00015686274855397642,0.00019025302026420832,-1.8634724839594607e-19,-6.402561211871216e-06,-3.1422825941263e-06,0.000606060610152781,-0.0005194804980419576,-1.8634724839594607e-19,6.49350622552447e-05,4.0234064994579266e-20,3.234195163290154e-22,0.00015686274855397642,-3.9215687138494104e-05,-6.402561211871216e-06,4.0234064994579266e-20,1.600640302967804e-06,5.118146276925115e-23,2.51382607530104e-05,-3.629851089228815e-21,-3.1422825941263e-06,3.234195163290154e-22,5.118146276925115e-23,6.41282156266243e-08,9.0,51.0,0.04400434345006943,-0.009831344708800316,-0.0020404679235070944,0.0005941770505160093,0.0001508295681560412,2.371533992118202e-05,-0.009831344708800316,0.005343839060515165,0.0001508295681560412,-0.0005092946230433881,-3.77073920390103e-05,6.906435310821253e-20,-0.0020404679235070944,0.0001508295681560412,0.00017938399105332792,4.557037256228136e-19,-6.033182671671966e-06,-2.90391926682787e-06,0.0005941770505160093,-0.0005092946230433881,4.557037256228136e-19,6.366182788042352e-05,-3.049318610115481e-20,-6.207191589372763e-21,0.0001508295681560412,-3.77073920390103e-05,-6.033182671671966e-06,-3.049318610115481e-20,1.5082956679179915e-06,-5.698161684851892e-22,2.371533992118202e-05,6.906435310821253e-20,-2.90391926682787e-06,-6.207191589372763e-21,-5.698161684851892e-22,5.8078384768123215e-08,9.0,52.0,0.0431954599916935,-0.009645071811974049,-0.0019647369626909494,0.0005827505956403911,0.00014513787755277008,2.2397820430342108e-05,-0.009645071811974049,0.005241770762950182,0.00014513787755277008,-0.0004995004856027663,-3.628446938819252e-05,-3.757691206664032e-20,-0.0019647369626909494,0.00014513787755277008,0.0001693275262368843,-1.5585406229479126e-19,-5.691681508324109e-06,-2.687738515305682e-06,0.0005827505956403911,-0.0004995004856027663,-1.5585406229479126e-19,6.243756070034578e-05,-8.893845946170154e-21,3.6604858524616874e-21,0.00014513787755277008,-3.628446938819252e-05,-5.691681508324109e-06,-8.893845946170154e-21,1.4229203770810273e-06,2.175177544588044e-22,2.2397820430342108e-05,-3.757691206664032e-20,-2.687738515305682e-06,3.6604858524616874e-21,2.175177544588044e-22,5.270075575936062e-08,9.0,53.0,0.04241577163338661,-0.009465726092457771,-0.001893145265057683,0.0005717552849091589,0.00013976240006741136,2.1176121663302183e-05,-0.009465726092457771,0.005143528804183006,0.00013976240006741136,-0.0004900759668089449,-3.494060001685284e-05,-2.1393417418898704e-20,-0.001893145265057683,0.00013976240006741136,0.00016000907635316253,-1.3891340334970526e-19,-5.375477030611364e-06,-2.491308350727195e-06,0.0005717552849091589,-0.0004900759668089449,-1.3891340334970526e-19,6.125949585111812e-05,4.446922973085077e-21,2.073443113999062e-21,0.00013976240006741136,-3.494060001685284e-05,-5.375477030611364e-06,4.446922973085077e-21,1.343869257652841e-06,1.6079403580395266e-22,2.1176121663302183e-05,-2.1393417418898704e-20,-2.491308350727195e-06,2.073443113999062e-21,1.6079403580395266e-22,4.790977925495099e-08,9.0,54.0,0.04166372865438461,-0.00929292943328619,-0.0018253967864438891,0.0005611672531813383,0.000134680129121989,2.0041687093907967e-05,-0.00929292943328619,0.005048901773989201,0.000134680129121989,-0.0004810004902537912,-3.367003228049725e-05,1.8634375872773687e-20,-0.0018253967864438891,0.000134680129121989,0.0001513621537014842,6.098637220230962e-20,-5.082269126432948e-06,-2.3125023744796636e-06,0.0005611672531813383,-0.0004810004902537912,6.098637220230962e-20,6.01250612817239e-05,6.3527471044072525e-21,-1.4196397395907015e-21,0.000134680129121989,-3.367003228049725e-05,-5.082269126432948e-06,6.3527471044072525e-21,1.270567281608237e-06,-1.7949648898445173e-22,2.0041687093907967e-05,1.8634375872773687e-20,-2.3125023744796636e-06,-1.4196397395907015e-21,-1.7949648898445173e-22,4.363212013913653e-08,9.0,55.0,0.0409378819167614,-0.009126327931880951,-0.0017612212104722857,0.0005509642069227993,0.0001298701245104894,1.8986860595759936e-05,-0.009126327931880951,0.004957693628966808,0.0001298701245104894,-0.0004722550220321864,-3.246753112762235e-05,-8.457978308904394e-21,-0.0017612212104722857,0.0001298701245104894,0.00014332731370814145,1.1858461261560205e-20,-4.8100046114996076e-06,-2.149455895050778e-06,0.0005509642069227993,-0.0004722550220321864,1.1858461261560205e-20,5.90318777540233e-05,-1.0164395367051604e-20,5.77340109229021e-22,0.0001298701245104894,-3.246753112762235e-05,-4.8100046114996076e-06,-1.0164395367051604e-20,1.2025011528749019e-06,8.717052473300224e-23,1.8986860595759936e-05,-8.457978308904394e-21,-2.149455895050778e-06,5.77340109229021e-22,8.717052473300224e-23,3.980473906040061e-08,9.0,56.0,0.04023689031600952,-0.008965595625340939,-0.0017003716202452779,0.0005411255406215787,0.0001253132795682177,1.8004782759817317e-05,-0.008965595625340939,0.004869723226875067,0.0001253132795682177,-0.00046382189611904323,-3.1328319892054424e-05,2.2969566455265883e-20,-0.0017003716202452779,0.0001253132795682177,0.00013585135457105935,6.268043809681823e-20,-4.556846761261113e-06,-2.0005313672299962e-06,0.0005411255406215787,-0.00046382189611904323,6.268043809681823e-20,5.7977737014880404e-05,9.529120656610879e-21,-1.8927411067119132e-21,0.0001253132795682177,-3.1328319892054424e-05,-4.556846761261113e-06,9.529120656610879e-21,1.1392116903152782e-06,-2.309734495824678e-22,1.8004782759817317e-05,2.2969566455265883e-20,-2.0005313672299962e-06,-1.8927411067119132e-21,-2.309734495824678e-22,3.637329726302596e-08,9.0,57.0,0.0395594984292984,-0.008810427039861679,-0.0016426220536231995,0.0005316321039572358,0.00012099213199689984,1.7089285393012688e-05,-0.008810427039861679,0.004784820135682821,0.00012099213199689984,-0.0004556846688501537,-3.024803299922496e-05,-7.115549800848927e-21,-0.0016426220536231995,0.00012099213199689984,0.00012888650235254318,-1.3213713977167085e-19,-4.3211475713178515e-06,-1.86428565029928e-06,0.0005316321039572358,-0.0004556846688501537,-1.3213713977167085e-19,5.696058360626921e-05,1.7364175418713157e-20,9.30925641330139e-22,0.00012099213199689984,-3.024803299922496e-05,-4.3211475713178515e-06,1.7364175418713157e-20,1.0802868928294629e-06,1.699313280498717e-24,1.7089285393012688e-05,-7.115549800848927e-21,-1.86428565029928e-06,9.30925641330139e-22,1.699313280498717e-24,3.329081366132414e-08,9.0,58.0,0.03890453279018402,-0.00866053905338049,-0.0015877654077485204,0.0005224660271778703,0.0001168907037936151,1.6234820577665232e-05,-0.00866053905338049,0.004702826961874962,0.0001168907037936151,-0.0004478280316106975,-2.9222675948403776e-05,6.581474822240382e-20,-0.0015877654077485204,0.0001168907037936151,0.0001223897997988388,3.8709405689521525e-19,-4.1014282032847404e-06,-1.7394449969287962e-06,0.0005224660271778703,-0.0004478280316106975,3.8709405689521525e-19,5.597850395133719e-05,0.0,-6.398916545726069e-21,0.0001168907037936151,-2.9222675948403776e-05,-4.1014282032847404e-06,0.0,1.0253570508211851e-06,-3.7766545443500412e-22,1.6234820577665232e-05,6.581474822240382e-20,-1.7394449969287962e-06,-6.398916545726069e-21,-3.7766545443500412e-22,3.051658126196344e-08,9.0,59.0,0.03827090188860893,-0.00851566530764103,-0.001535611692816019,0.0005136106628924608,0.00011299434845568612,1.54363860929152e-05,-0.00851566530764103,0.004623596556484699,0.00011299434845568612,-0.0004402377235237509,-2.824858711392153e-05,1.668015359768149e-20,-0.001535611692816019,0.00011299434845568612,0.00011632256064331159,9.402065714522734e-20,-3.896356702171033e-06,-1.6248827705567237e-06,0.0005136106628924608,-0.0004402377235237509,9.402065714522734e-20,5.502971544046886e-05,4.658681209898652e-21,-1.882066518621501e-21,0.00011299434845568612,-2.824858711392153e-05,-3.896356702171033e-06,4.658681209898652e-21,9.740891755427583e-07,-4.2414558073273306e-23,1.54363860929152e-05,1.668015359768149e-20,-1.6248827705567237e-06,-1.882066518621501e-21,-4.2414558073273306e-23,2.801522036577353e-08,9.0,60.0,0.03765757381916046,-0.008375559002161026,-0.0014859862858429551,0.0005050505278632045,0.00010928962001344189,1.4689464478578884e-05,-0.008375559002161026,0.004546992015093565,0.00010928962001344189,-0.00043290044413879514,-2.7322405003360473e-05,1.2992728637555709e-20,-0.0014859862858429551,0.00010928962001344189,0.00011064987484132871,1.5924219408380846e-19,-3.704732762344065e-06,-1.5195997775663272e-06,0.0005050505278632045,-0.00043290044413879514,1.5924219408380846e-19,5.411255551734939e-05,-1.7999450129153882e-20,-1.4082497493225625e-21,0.00010928962001344189,-2.7322405003360473e-05,-3.704732762344065e-06,-1.7999450129153882e-20,9.261831905860163e-07,-4.8459084852671716e-23,1.4689464478578884e-05,1.2992728637555709e-20,-1.5195997775663272e-06,-1.4082497493225625e-21,-4.8459084852671716e-23,2.5755928945159212e-08,9.0,61.0,0.0370635911822319,-0.0082399882376194,-0.0014387281844392419,0.000496771011967212,0.0001057641493389383,1.3989966646477114e-05,-0.0082399882376194,0.004472884815186262,0.0001057641493389383,-0.0004258037079125643,-2.6441037334734574e-05,-1.5239437615161396e-20,-0.0014387281844392419,0.0001057641493389383,0.00010534017928875983,-1.3213713977167085e-19,-3.5254715839982964e-06,-1.4227084648155142e-06,0.000496771011967212,-0.0004258037079125643,-1.3213713977167085e-19,5.3225463489070535e-05,1.122318655111948e-20,1.3775835831147754e-21,0.0001057641493389383,-2.6441037334734574e-05,-3.5254715839982964e-06,1.122318655111948e-20,8.813678959995741e-07,1.0376162641055709e-22,1.3989966646477114e-05,-1.5239437615161396e-20,-1.4227084648155142e-06,1.3775835831147754e-21,1.0376162641055709e-22,2.3711807628501447e-08,9.0,62.0,0.03648805618286133,-0.00810873694717884,-0.0013936891919001937,0.0004887585528194904,0.00010240655683446676,1.3334186405700166e-05,-0.00810873694717884,0.004401154350489378,0.00010240655683446676,-0.0004189359024167061,-2.560163920861669e-05,-3.1024588252409045e-20,-0.0013936891919001937,0.00010240655683446676,0.00010036489402409643,-1.8634724839594607e-19,-3.357591822350514e-06,-1.3334187087821192e-06,0.0004887585528194904,-0.0004189359024167061,-1.8634724839594607e-19,5.236698780208826e-05,2.752857078576476e-21,2.7074988639472652e-21,0.00010240655683446676,-2.560163920861669e-05,-3.357591822350514e-06,2.752857078576476e-21,8.393979555876285e-07,2.3304763627044525e-22,1.3334186405700166e-05,-3.1024588252409045e-20,-1.3334187087821192e-06,2.7074988639472652e-21,2.3304763627044525e-22,2.185932324039186e-08,9.0,63.0,0.03593011945486069,-0.007981602102518082,-0.0013507326366379857,0.0004810004902537912,9.920635056914762e-05,1.2718763173324987e-05,-0.007981602102518082,0.004331688396632671,9.920635056914762e-05,-0.0004122861137147993,-2.4801587642286904e-05,-2.967823871437962e-20,-0.0013507326366379857,9.920635056914762e-05,9.569809481035918e-05,-2.278518628114068e-19,-3.200204901077086e-06,-1.2510258784459438e-06,0.0004810004902537912,-0.0004122861137147993,-2.278518628114068e-19,5.153576421434991e-05,8.258571235729428e-21,2.8952727000162455e-21,9.920635056914762e-05,-2.4801587642286904e-05,-3.200204901077086e-06,8.258571235729428e-21,8.000512252692715e-07,1.587168072683247e-22,1.2718763173324987e-05,-2.967823871437962e-20,-1.2510258784459438e-06,2.8952727000162455e-21,1.587168072683247e-22,2.0177836290713458e-08,9.0,64.0,0.03538898751139641,-0.007858391851186752,-0.001309731975197792,0.0004734848625957966,9.61538462433964e-05,1.2140637409174815e-05,-0.007858391851186752,0.004264381248503923,9.61538462433964e-05,-0.000405844155466184,-2.40384615608491e-05,1.0515654706115406e-21,-0.001309731975197792,9.61538462433964e-05,9.13162439246662e-05,-2.456395547037471e-20,-3.0525029615091626e-06,-1.1749003760996857e-06,0.0004734848625957966,-0.000405844155466184,-2.456395547037471e-20,5.0730519433273e-05,6.988021814847978e-21,-5.368933047303927e-23,9.61538462433964e-05,-2.40384615608491e-05,-3.0525029615091626e-06,6.988021814847978e-21,7.631257403772906e-07,-1.633364745480512e-23,1.2140637409174815e-05,1.0515654706115406e-21,-1.1749003760996857e-06,-5.368933047303927e-23,-1.633364745480512e-23,1.8649211952492806e-08,10.0,3.0,0.3954545557498932,-0.11363636702299118,-0.27272728085517883,0.007575757801532745,0.027272727340459824,0.05000000074505806,-0.11363636702299118,0.06123737245798111,0.027272727340459824,-0.005681818351149559,-0.0060606058686971664,6.418476861114186e-17,-0.27272728085517883,0.027272727340459824,0.7727272510528564,4.67420987153811e-18,-0.027272727340459824,-0.30000001192092896,0.007575757801532745,-0.005681818351149559,4.67420987153811e-18,0.0006313131307251751,2.8841544232312525e-19,-2.9779784181858453e-18,0.027272727340459824,-0.0060606058686971664,-0.027272727340459824,2.8841544232312525e-19,0.0060606058686971664,-3.642919299551295e-17,0.05000000074505806,6.418476861114186e-17,-0.30000001192092896,-2.9779784181858453e-18,-3.642919299551295e-17,0.15000000596046448,10.0,4.0,0.33500000834465027,-0.0893181785941124,-0.1786363571882248,0.005681818351149559,0.016363635659217834,0.02500000037252903,-0.0893181785941124,0.04683712124824524,0.016363635659217834,-0.004261363763362169,-0.003636363660916686,4.440892164675075e-17,-0.1786363571882248,0.016363635659217834,0.2940908968448639,1.0260960431761045e-17,-0.010909090749919415,-0.07500000298023224,0.005681818351149559,-0.004261363763362169,1.0260960431761045e-17,0.0004734848625957966,-7.589415207398531e-19,-2.046997392105376e-18,0.016363635659217834,-0.003636363660916686,-0.010909090749919415,-7.589415207398531e-19,0.002424242440611124,-1.4287812965650867e-17,0.02500000037252903,4.440892164675075e-17,-0.07500000298023224,-2.046997392105376e-18,-1.4287812965650867e-17,0.02500000037252903,10.0,5.0,0.2903895974159241,-0.07363636046648026,-0.126233771443367,0.004545454401522875,0.010909090749919415,0.014285714365541935,-0.07363636046648026,0.03795454651117325,0.010909090749919415,-0.003409090917557478,-0.002424242440611124,-1.1275702593849246e-17,-0.126233771443367,0.010909090749919415,0.14883117377758026,-4.649420095760508e-18,-0.005454545374959707,-0.02857142873108387,0.004545454401522875,-0.003409090917557478,-4.649420095760508e-18,0.0003787878667935729,7.997864586168028e-20,1.1234028820998518e-18,0.010909090749919415,-0.002424242440611124,-0.005454545374959707,7.997864586168028e-20,0.001212121220305562,0.0,0.014285714365541935,-1.1275702593849246e-17,-0.02857142873108387,1.1234028820998518e-18,0.0,0.0071428571827709675,10.0,6.0,0.25616884231567383,-0.06266234070062637,-0.09399350732564926,0.0037878789007663727,0.007792207878082991,0.008928571827709675,-0.06266234070062637,0.03191738948225975,0.007792207878082991,-0.0028409091755747795,-0.0017316017765551805,1.0408340855860843e-17,-0.09399350732564926,0.007792207878082991,0.0867045447230339,-4.591150701677706e-19,-0.0031168831046670675,-0.013392857275903225,0.0037878789007663727,-0.0028409091755747795,-4.591150701677706e-19,0.00031565656536258757,2.5374878429599376e-20,8.169409566749308e-20,0.007792207878082991,-0.0017316017765551805,-0.0031168831046670675,2.5374878429599376e-20,0.0006926406640559435,-4.065758146820642e-18,0.008928571827709675,1.0408340855860843e-17,-0.013392857275903225,8.169409566749308e-20,-4.065758146820642e-18,0.0026785715017467737,10.0,7.0,0.22911255061626434,-0.05454545468091965,-0.072727270424366,0.003246753243729472,0.005844155792146921,0.0059523810632526875,-0.05454545468091965,0.027543289586901665,0.005844155792146921,-0.002435064874589443,-0.0012987012742087245,-0.0,-0.072727270424366,0.005844155792146921,0.055194806307554245,0.0,-0.0019480519695207477,-0.0071428571827709675,0.003246753243729472,-0.002435064874589443,0.0,0.00027056277031078935,0.0,-0.0,0.005844155792146921,-0.0012987012742087245,-0.0019480519695207477,0.0,0.00043290044413879514,-0.0,0.0059523810632526875,-0.0,-0.0071428571827709675,-0.0,-0.0,0.0011904762359336019,10.0,8.0,0.20719696581363678,-0.04829545319080353,-0.05795454606413841,0.0028409091755747795,0.004545454401522875,0.004166666883975267,-0.04829545319080353,0.024226641282439232,0.004545454401522875,-0.0021306818816810846,-0.001010101055726409,-0.0,-0.05795454606413841,0.004545454401522875,0.037391774356365204,1.0842021724855044e-19,-0.0012987012742087245,-0.004166666883975267,0.0028409091755747795,-0.0021306818816810846,1.0842021724855044e-19,0.0002367424312978983,-1.3552527156068805e-20,-0.0,0.004545454401522875,-0.001010101055726409,-0.0012987012742087245,-1.3552527156068805e-20,0.00028860027668997645,-0.0,0.004166666883975267,-0.0,-0.004166666883975267,-0.0,-0.0,0.0005952381179668009,10.0,9.0,0.18909090757369995,-0.04333333298563957,-0.04727272689342499,0.0025252525229007006,0.003636363660916686,0.0030303029343485832,-0.04333333298563957,0.021624580025672913,0.003636363660916686,-0.0018939394503831863,-0.000808080832939595,-2.710505431213761e-19,-0.04727272689342499,0.003636363660916686,0.026536796241998672,9.206800683641642e-20,-0.0009090909152291715,-0.002597402548417449,0.0025252525229007006,-0.0018939394503831863,9.206800683641642e-20,0.00021043770539108664,-3.1540427048905706e-21,-9.011550354603468e-21,0.003636363660916686,-0.000808080832939595,-0.0009090909152291715,-3.1540427048905706e-21,0.00020202020823489875,9.486769009248164e-20,0.0030303029343485832,-2.710505431213761e-19,-0.002597402548417449,-9.011550354603468e-21,9.486769009248164e-20,0.0003246753185521811,10.0,10.0,0.1738843023777008,-0.039297521114349365,-0.039297521114349365,0.0022727272007614374,0.0029752065893262625,0.0022727272007614374,-0.039297521114349365,0.019528236240148544,0.0029752065893262625,-0.001704545458778739,-0.0006611570133827627,5.421010862427522e-20,-0.039297521114349365,0.0029752065893262625,0.019528236240148544,-0.0,-0.0006611570133827627,-0.001704545458778739,0.0022727272007614374,-0.001704545458778739,-0.0,0.00018939393339678645,1.3552527156068805e-20,-6.776263578034403e-21,0.0029752065893262625,-0.0006611570133827627,-0.0006611570133827627,1.3552527156068805e-20,0.00014692379045300186,0.0,0.0022727272007614374,5.421010862427522e-20,-0.001704545458778739,-6.776263578034403e-21,0.0,0.00018939393339678645,10.0,11.0,0.16093452274799347,-0.03595041483640671,-0.033184997737407684,0.00206611561588943,0.002479338785633445,0.0017482517287135124,-0.03595041483640671,0.017803030088543892,0.002479338785633445,-0.0015495867701247334,-0.0005509642069227993,-1.8973538018496328e-19,-0.033184997737407684,0.002479338785633445,0.014795507304370403,5.133222771975533e-20,-0.0004958677454851568,-0.0011655011912807822,0.00206611561588943,-0.0015495867701247334,5.133222771975533e-20,0.000172176311025396,-8.496650618128382e-21,-6.555126655960189e-22,0.002479338785633445,-0.0005509642069227993,-0.0004958677454851568,-8.496650618128382e-21,0.00011019283556379378,4.0657581468206416e-20,0.0017482517287135124,-1.8973538018496328e-19,-0.0011655011912807822,-6.555126655960189e-22,4.0657581468206416e-20,0.00011655011621769518,10.0,12.0,0.14977522194385529,-0.03312937170267105,-0.0283966027200222,0.0018939394503831863,0.0020979021210223436,0.0013736264081671834,-0.03312937170267105,0.01635829359292984,0.0020979021210223436,-0.0014204545877873898,-0.0004662004648707807,0.0,-0.0283966027200222,0.0020979021210223436,0.011481700465083122,1.1950544558313256e-19,-0.0003814367519225925,-0.0008241758332587779,0.0018939394503831863,-0.0014204545877873898,1.1950544558313256e-19,0.00015782828268129379,-1.0746387206022983e-20,-5.190171006754898e-21,0.0020979021210223436,-0.0004662004648707807,-0.0003814367519225925,-1.0746387206022983e-20,8.47637202241458e-05,3.3881317890172014e-21,0.0013736264081671834,0.0,-0.0008241758332587779,-5.190171006754898e-21,3.3881317890172014e-21,7.492507575079799e-05,10.0,13.0,0.1400599330663681,-0.030719280242919922,-0.024575425311923027,0.0017482517287135124,0.0017982018180191517,0.001098901149816811,-0.030719280242919922,0.015130702406167984,0.0017982018180191517,-0.0013111887965351343,-0.0003996003943029791,-6.776263578034403e-20,-0.024575425311923027,0.0017982018180191517,0.00909090880304575,-0.0,-0.00029970030300319195,-0.0005994006060063839,0.0017482517287135124,-0.0013111887965351343,-0.0,0.00014568764891009778,0.0,0.0,0.0017982018180191517,-0.0003996003943029791,-0.00029970030300319195,0.0,6.660006329184398e-05,1.0164395367051604e-20,0.001098901149816811,-6.776263578034403e-20,-0.0005994006060063839,0.0,1.0164395367051604e-20,4.995004928787239e-05,10.0,14.0,0.13152597844600677,-0.02863636426627636,-0.021477272734045982,0.001623376621864736,0.0015584415523335338,0.0008928571478463709,-0.02863636426627636,0.014074675738811493,0.0015584415523335338,-0.0012175324372947216,-0.00034632033202797174,4.0657581468206416e-20,-0.021477272734045982,0.0015584415523335338,0.007322052959352732,-0.0,-0.00023976023658178747,-0.00044642857392318547,0.001623376621864736,-0.0012175324372947216,-0.0,0.00013528138515539467,0.0,0.0,0.0015584415523335338,-0.00034632033202797174,-0.00023976023658178747,0.0,5.328005499904975e-05,-5.082197683525802e-21,0.0008928571478463709,4.0657581468206416e-20,-0.00044642857392318547,0.0,-5.082197683525802e-21,3.4340660931775346e-05,10.0,15.0,0.12397059053182602,-0.026818182319402695,-0.018930481746792793,0.0015151514671742916,0.0013636363437399268,0.000735294132027775,-0.026818182319402695,0.013156565837562084,0.0013636363437399268,-0.0011363636003807187,-0.0003030303050763905,3.7947076036992655e-19,-0.018930481746792793,0.0013636363437399268,0.005984897259622812,9.661707369045472e-19,-0.00019480519404169172,-0.0003393665247131139,0.0015151514671742916,-0.0011363636003807187,9.661707369045472e-19,0.00012626263196580112,-1.3852906809524927e-20,-5.232951673281018e-20,0.0013636363437399268,-0.0003030303050763905,-0.00019480519404169172,-1.3852906809524927e-20,4.329004150349647e-05,1.0164395367051604e-20,0.000735294132027775,3.7947076036992655e-19,-0.0003393665247131139,-5.232951673281018e-20,1.0164395367051604e-20,2.424046579108108e-05,10.0,16.0,0.11723484843969345,-0.025217246264219284,-0.016811497509479523,0.0014204545877873898,0.0012032085796818137,0.0006127451197244227,-0.025217246264219284,0.012350991368293762,0.0012032085796818137,-0.0010653409408405423,-0.0002673796843737364,-4.0657581468206416e-20,-0.016811497509479523,0.0012032085796818137,0.0049551185220479965,-0.0,-0.00016042780771385878,-0.00026260505546815693,0.0014204545877873898,-0.0010653409408405423,-0.0,0.00011837121564894915,0.0,0.0,0.0012032085796818137,-0.0002673796843737364,-0.00016042780771385878,0.0,3.565062434063293e-05,3.3881317890172014e-21,0.0006127451197244227,-4.0657581468206416e-20,-0.00026260505546815693,0.0,3.3881317890172014e-21,1.750700357661117e-05,10.0,17.0,0.11119242012500763,-0.023796791210770607,-0.015029552392661572,0.001336898421868682,0.0010695187374949455,0.0005159958964213729,-0.023796791210770607,0.011638442985713482,0.0010695187374949455,-0.0010026737581938505,-0.00023767082893755287,1.0835589361616679e-18,-0.015029552392661572,0.0010695187374949455,0.00414907606318593,1.6534083130403943e-18,-0.0001336898421868682,-0.0002063983556581661,0.001336898421868682,-0.0010026737581938505,1.6534083130403943e-18,0.00011140819697175175,-1.6940658945086007e-20,-9.031868139958015e-20,0.0010695187374949455,-0.00023767082893755287,-0.0001336898421868682,-1.6940658945086007e-20,2.970885361719411e-05,-2.564155855102963e-20,0.0005159958964213729,1.0835589361616679e-18,-0.0002063983556581661,-9.031868139958015e-20,-2.564155855102963e-20,1.2899897228635382e-05,10.0,18.0,0.10574162751436234,-0.02252791076898575,-0.013516746461391449,0.0012626262614503503,0.0009569377871230245,0.0004385965003166348,-0.02252791076898575,0.011003676801919937,0.0009569377871230245,-0.0009469697251915932,-0.00021265284158289433,-1.0245112685200294e-18,-0.013516746461391449,0.0009569377871230245,0.0035090651363134384,-2.087089182034596e-18,-0.00011258091399213299,-0.00016447369125671685,0.0012626262614503503,-0.0009469697251915932,-2.087089182034596e-18,0.00010521885269554332,1.1011428314305904e-19,8.813847241178619e-20,0.0009569377871230245,-0.00021265284158289433,-0.00011258091399213299,1.1011428314305904e-19,2.5017981897690333e-05,2.1781891807591723e-20,0.0004385965003166348,-1.0245112685200294e-18,-0.00016447369125671685,8.813847241178619e-20,2.1781891807591723e-20,9.674922694102861e-06,10.0,19.0,0.10079972445964813,-0.021387560293078423,-0.012221463024616241,0.0011961722047999501,0.0008612440433353186,0.0003759398532565683,-0.021387560293078423,0.010434608906507492,0.0008612440433353186,-0.000897129182703793,-0.00019138756033498794,2.47725006274964e-19,-0.012221463024616241,0.0008612440433353186,0.0029943843837827444,8.131516293641283e-19,-9.569378016749397e-05,-0.00013268465409055352,0.0011961722047999501,-0.000897129182703793,8.131516293641283e-19,9.968101949198171e-05,-6.437450399132683e-20,-2.6729973140784562e-20,0.0008612440433353186,-0.00019138756033498794,-9.569378016749397e-05,-6.437450399132683e-20,2.1265284885885194e-05,-1.8336651436772118e-21,0.0003759398532565683,2.47725006274964e-19,-0.00013268465409055352,-2.6729973140784562e-20,-1.8336651436772118e-21,7.371369520114968e-06,10.0,20.0,0.0962987020611763,-0.020357143133878708,-0.011103896424174309,0.0011363636003807187,0.0007792207761667669,0.0003246753185521811,-0.020357143133878708,0.009921536780893803,0.0007792207761667669,-0.0008522727293893695,-0.00017316016601398587,-7.089873597647398e-19,-0.011103896424174309,0.0007792207761667669,0.0025757576804608107,-1.5720931501039814e-18,-8.202323806472123e-05,-0.00010822511103469878,0.0011363636003807187,-0.0008522727293893695,-1.5720931501039814e-18,9.469696669839323e-05,6.098637220230962e-20,6.182159843878944e-20,0.0007792207761667669,-0.00017316016601398587,-8.202323806472123e-05,6.098637220230962e-20,1.8227387045044452e-05,1.3536069977729408e-20,0.0003246753185521811,-7.089873597647398e-19,-0.00010822511103469878,6.182159843878944e-20,1.3536069977729408e-20,5.696058451576391e-06,10.0,21.0,0.09218212962150574,-0.019421488046646118,-0.01013294979929924,0.0010822510812431574,0.0007083825184963644,0.00028232636395841837,-0.019421488046646118,0.009456578642129898,0.0007083825184963644,-0.000811688310932368,-0.00015741834067739546,-2.165888681933082e-19,-0.01013294979929924,0.0007083825184963644,0.0022317562252283096,-3.2526065174565133e-19,-7.083825039444491e-05,-8.915569196688011e-05,0.0010822510812431574,-0.000811688310932368,-3.2526065174565133e-19,9.018759010359645e-05,-1.1858461261560205e-20,1.5979420143336836e-20,0.0007083825184963644,-0.00015741834067739546,-7.083825039444491e-05,-1.1858461261560205e-20,1.5741834431537427e-05,4.603524661250774e-21,0.00028232636395841837,-2.165888681933082e-19,-8.915569196688011e-05,1.5979420143336836e-20,4.603524661250774e-21,4.457784598344006e-06,10.0,22.0,0.08840280026197433,-0.018568091094493866,-0.009284045547246933,0.001033057807944715,0.0006467840285040438,0.0002470355830155313,-0.018568091094493866,0.009033267386257648,0.0006467840285040438,-0.0007747933850623667,-0.00014372979057952762,-2.2777082496077074e-19,-0.009284045547246933,0.0006467840285040438,0.0019464477663859725,-2.981555974335137e-19,-6.159848271636292e-05,-7.411067053908482e-05,0.001033057807944715,-0.0007747933850623667,-2.981555974335137e-19,8.6088155512698e-05,-2.710505431213761e-20,1.971297577069022e-20,0.0006467840285040438,-0.00014372979057952762,-6.159848271636292e-05,-2.710505431213761e-20,1.3688551007362548e-05,2.7482203435022042e-21,0.0002470355830155313,-2.2777082496077074e-19,-7.411067053908482e-05,1.971297577069022e-20,2.7482203435022042e-21,3.5290795494802296e-06,10.0,23.0,0.08492095023393631,-0.017786560580134392,-0.008537549525499344,0.0009881423320621252,0.0005928853643126786,0.00021739130897913128,-0.017786560580134392,0.008646245114505291,0.0005928853643126786,-0.000741106690838933,-0.00013175231288187206,3.055639303971152e-19,-0.008537549525499344,0.0005928853643126786,0.0017078178934752941,7.995991022080595e-19,-5.3898671467322856e-05,-6.211180152604356e-05,0.0009881423320621252,-0.000741106690838933,7.995991022080595e-19,8.234519191319123e-05,-4.2351647362715017e-20,-2.76785069653128e-20,0.0005928853643126786,-0.00013175231288187206,-5.3898671467322856e-05,-4.2351647362715017e-20,1.1977482245129067e-05,-3.6416073129053685e-21,0.00021739130897913128,3.055639303971152e-19,-6.211180152604356e-05,-2.76785069653128e-20,-3.6416073129053685e-21,2.8232636850589188e-06,10.0,24.0,0.08170279860496521,-0.017068181186914444,-0.007877622731029987,0.0009469697251915932,0.0005454545607790351,0.0001923076924867928,-0.017068181186914444,0.008291034959256649,0.0005454545607790351,-0.0007102272938936949,-0.00012121212057536468,-1.7204640712885234e-19,-0.007877622731029987,0.0005454545607790351,0.001506689004600048,-5.014435047745458e-19,-4.7430828999495134e-05,-5.244755084277131e-05,0.0009469697251915932,-0.0007102272938936949,-5.014435047745458e-19,7.891414134064689e-05,1.8634724839594607e-20,1.8699063981614748e-20,0.0005454545607790351,-0.00012121212057536468,-4.7430828999495134e-05,1.8634724839594607e-20,1.0540184121055063e-05,-2.665118479328406e-22,0.0001923076924867928,-1.7204640712885234e-19,-5.244755084277131e-05,1.8699063981614748e-20,-2.665118479328406e-22,2.28032831728342e-06,10.0,25.0,0.07871950417757034,-0.01640559360384941,-0.007291375193744898,0.0009090909152291715,0.0005034964997321367,0.0001709401694824919,-0.01640559360384941,0.007963869720697403,0.0005034964997321367,-0.0006818181718699634,-0.00011188811186002567,2.9014740342944644e-19,-0.007291375193744898,0.0005034964997321367,0.0013359683798626065,1.2332799712022613e-18,-4.195804285700433e-05,-4.459308911464177e-05,0.0009090909152291715,-0.0006818181718699634,1.2332799712022613e-18,7.575757626909763e-05,-1.3552527156068805e-19,-2.3351717435916846e-20,0.0005034964997321367,-0.00011188811186002567,-4.195804285700433e-05,-1.3552527156068805e-19,9.324009624833707e-06,-5.195199925605922e-21,0.0001709401694824919,2.9014740342944644e-19,-4.459308911464177e-05,-2.3351717435916846e-20,-5.195199925605922e-21,1.8580453797767404e-06,10.0,26.0,0.07594627887010574,-0.015792541205883026,-0.006768231745809317,0.0008741258643567562,0.0004662004648707807,0.00015262515807989985,-0.015792541205883026,0.007661551237106323,0.0004662004648707807,-0.0006555943982675672,-0.0001036001049214974,2.3592080289170844e-19,-0.006768231745809317,0.0004662004648707807,0.0011901154648512602,6.911788849595091e-19,-3.729603849933483e-05,-3.815628951997496e-05,0.0008741258643567562,-0.0006555943982675672,6.911788849595091e-19,7.284382445504889e-05,-2.625802136488331e-20,-1.9786505987915075e-20,0.0004662004648707807,-0.0001036001049214974,-3.729603849933483e-05,-2.625802136488331e-20,8.288007848022971e-06,-2.7843440640224766e-21,0.00015262515807989985,2.3592080289170844e-19,-3.815628951997496e-05,-1.9786505987915075e-20,-2.7843440640224766e-21,1.5262514807545813e-06,10.0,27.0,0.07336169481277466,-0.015223665162920952,-0.006299447733908892,0.0008417508215643466,0.00043290044413879514,0.00013683634460903704,-0.015223665162920952,0.007381353061646223,0.00043290044413879514,-0.0006313131307251751,-9.620009950594977e-05,-2.680670060494739e-20,-0.006299447733908892,0.00043290044413879514,0.0010647589806467295,-2.439454888092385e-19,-3.330003164592199e-05,-3.284072226961143e-05,0.0008417508215643466,-0.0006313131307251751,-2.439454888092385e-19,7.014590664766729e-05,4.0657581468206416e-20,3.089646411475569e-21,0.00043290044413879514,-9.620009950594977e-05,-3.330003164592199e-05,4.0657581468206416e-20,7.400007234537043e-06,-3.558320060107956e-22,0.00013683634460903704,-2.680670060494739e-20,-3.284072226961143e-05,3.089646411475569e-21,-3.558320060107956e-22,1.2631047638933524e-06,10.0,28.0,0.07094715535640717,-0.01469435729086399,-0.005877743009477854,0.000811688310932368,0.00040304524009115994,0.00012315271305851638,-0.01469435729086399,0.007120932452380657,0.00040304524009115994,-0.0006087662186473608,-8.956560486694798e-05,-9.456383046433911e-20,-0.005877743009477854,0.00040304524009115994,0.0009564190404489636,-5.149960319306146e-19,-2.9855202228645794e-05,-2.8419855880201794e-05,0.000811688310932368,-0.0006087662186473608,-5.149960319306146e-19,6.764069257769734e-05,6.437450399132683e-20,7.359384712412373e-21,0.00040304524009115994,-8.956560486694798e-05,-2.9855202228645794e-05,6.437450399132683e-20,6.634489182033576e-06,1.893995408172989e-21,0.00012315271305851638,-9.456383046433911e-20,-2.8419855880201794e-05,7.359384712412373e-21,1.893995408172989e-21,1.0525872085054289e-06,10.0,29.0,0.06868641823530197,-0.014200626872479916,-0.005497016943991184,0.0007836990407668054,0.00037617553607560694,0.00011123470176244155,-0.014200626872479916,0.006878265645354986,0.00037617553607560694,-0.0005877742660231888,-8.359456842299551e-05,-2.5971354168784816e-19,-0.005497016943991184,0.00037617553607560694,0.0008623017347417772,-7.453889935837843e-19,-2.6869682187680155e-05,-2.4718823624425568e-05,0.0007836990407668054,-0.0005877742660231888,-7.453889935837843e-19,6.530825339723378e-05,2.710505431213761e-20,2.0469558456666407e-20,0.00037617553607560694,-8.359456842299551e-05,-2.6869682187680155e-05,2.710505431213761e-20,5.971040536678629e-06,4.434029376066263e-21,0.00011123470176244155,-2.5971354168784816e-19,-2.4718823624425568e-05,2.0469558456666407e-20,4.434029376066263e-21,8.828151294437703e-07,10.0,30.0,0.06656525284051895,-0.013739002868533134,-0.005152126308530569,0.0007575757335871458,0.00035190617199987173,0.00010080645006382838,-0.013739002868533134,0.006651596631854773,0.00035190617199987173,-0.0005681818001903594,-7.820136670488864e-05,-1.3045163002662335e-19,-0.005152126308530569,0.00035190617199987173,0.0007801462197676301,-4.0657581468206416e-19,-2.426938954158686e-05,-2.160138319595717e-05,0.0007575757335871458,-0.0005681818001903594,-4.0657581468206416e-19,6.313131598290056e-05,1.1011428314305904e-20,1.2524466054874702e-20,0.00035190617199987173,-7.820136670488864e-05,-2.426938954158686e-05,1.1011428314305904e-20,5.393197625380708e-06,1.089402521287306e-21,0.00010080645006382838,-1.3045163002662335e-19,-2.160138319595717e-05,1.2524466054874702e-20,1.089402521287306e-21,7.448752512573265e-07,10.0,31.0,0.06457111239433289,-0.013306451961398125,-0.004838709719479084,0.0007331378292292356,0.00032991202897392213,9.164222865365446e-05,-0.013306451961398125,0.006439393851906061,0.00032991202897392213,-0.0005498533719219267,-7.331378583330661e-05,1.7811311776237817e-19,-0.004838709719479084,0.00032991202897392213,0.0007081100484356284,3.049318610115481e-19,-2.1994135749991983e-05,-1.8960461602546275e-05,0.0007331378292292356,-0.0005498533719219267,3.049318610115481e-19,6.10948191024363e-05,3.049318610115481e-20,-1.3460273091755701e-20,0.00032991202897392213,-7.331378583330661e-05,-2.1994135749991983e-05,3.049318610115481e-20,4.88758541905554e-06,-3.141131336413284e-21,9.164222865365446e-05,1.7811311776237817e-19,-1.8960461602546275e-05,-1.3460273091755701e-20,-3.141131336413284e-21,6.320153715932975e-07,10.0,32.0,0.06269294023513794,-0.012900309637188911,-0.004553050734102726,0.0007102272938936949,0.0003099173482041806,8.355615136679262e-05,-0.012900309637188911,0.006240315269678831,0.0003099173482041806,-0.0005326704704202712,-6.887052586534992e-05,8.1343170754966e-20,-0.004553050734102726,0.0003099173482041806,0.0006446810439229012,1.5585406229479126e-19,-1.999466803681571e-05,-1.6711230273358524e-05,0.0007102272938936949,-0.0005326704704202712,1.5585406229479126e-19,5.918560782447457e-05,7.199780051661553e-21,-4.8858683038409016e-21,0.0003099173482041806,-6.887052586534992e-05,-1.999466803681571e-05,7.199780051661553e-21,4.443259513209341e-06,-1.7402573482021167e-21,8.355615136679262e-05,8.1343170754966e-20,-1.6711230273358524e-05,-4.8858683038409016e-21,-1.7402573482021167e-21,5.390719479692052e-07,10.0,33.0,0.060920897871255875,-0.012518230825662613,-0.004291964694857597,0.000688705244101584,0.0002916869125328958,7.639419345650822e-05,-0.012518230825662613,0.006053179036825895,0.0002916869125328958,-0.0005165289039723575,-6.481931632151827e-05,-1.6141306497796853e-19,-0.004291964694857597,0.0002916869125328958,0.0005886105354875326,-6.776263578034403e-19,-1.8230432033305988e-05,-1.4785972780373413e-05,0.000688705244101584,-0.0005165289039723575,-6.776263578034403e-19,5.7392102462472394e-05,4.870439446712227e-20,1.2432279037427654e-20,0.0002916869125328958,-6.481931632151827e-05,-1.8230432033305988e-05,4.870439446712227e-20,4.051207270094892e-06,2.744888598935334e-21,7.639419345650822e-05,-1.6141306497796853e-19,-1.4785972780373413e-05,1.2432279037427654e-20,2.744888598935334e-21,4.6206164938666916e-07,10.0,34.0,0.0592462457716465,-0.012158135883510113,-0.004052712116390467,0.000668449210934341,0.0002750190906226635,7.002801430644467e-05,-0.012158135883510113,0.005876941606402397,0.0002750190906226635,-0.0005013368790969253,-6.111535185482353e-05,-9.425341801478152e-20,-0.004052712116390467,0.0002750190906226635,0.0005388612044043839,-2.507217523872729e-19,-1.666782372922171e-05,-1.3130252227711026e-05,0.000668449210934341,-0.0005013368790969253,-2.507217523872729e-19,5.5704098485875875e-05,-2.964615315390051e-21,7.274415330485991e-21,0.0002750190906226635,-6.111535185482353e-05,-1.666782372922171e-05,-2.964615315390051e-21,3.7039608287159353e-06,1.2232761296534017e-21,7.002801430644467e-05,-9.425341801478152e-20,-1.3130252227711026e-05,7.274415330485991e-21,1.2232761296534017e-21,3.97886424252647e-07,10.0,35.0,0.05766116827726364,-0.011818181723356247,-0.003832923946902156,0.0006493506371043622,0.0002597402490209788,6.435006798710674e-05,-0.011818181723356247,0.0057106781750917435,0.0002597402490209788,-0.0004870129923801869,-5.77200589759741e-05,-3.109721858760032e-20,-0.003832923946902156,0.0002597402490209788,0.0004945663968101144,-1.3552527156068805e-20,-1.5278837963705882e-05,-1.1700011782522779e-05,0.0006493506371043622,-0.0004870129923801869,-1.3552527156068805e-20,5.411255551734939e-05,-1.4823076576950256e-20,2.2185282912291972e-21,0.0002597402490209788,-5.77200589759741e-05,-1.5278837963705882e-05,-1.4823076576950256e-20,3.3952974263229407e-06,7.484466901441e-22,6.435006798710674e-05,-3.109721858760032e-20,-1.1700011782522779e-05,2.2185282912291972e-21,7.484466901441e-22,3.441179785568238e-07,10.0,36.0,0.05615866929292679,-0.011496723629534245,-0.003630544524639845,0.0006313131307251751,0.00024570024106651545,5.926979793002829e-05,-0.011496723629534245,0.005553564988076687,0.00024570024106651545,-0.0004734848625957966,-5.46000555914361e-05,1.0259307879993528e-19,-0.003630544524639845,0.00024570024106651545,0.0004549982550088316,2.439454888092385e-19,-1.4040014320926275e-05,-1.0459375516802538e-05,0.0006313131307251751,-0.0004734848625957966,2.439454888092385e-19,5.260942634777166e-05,1.6940658945086007e-21,-7.563072283698587e-21,0.00024570024106651545,-5.46000555914361e-05,-1.4040014320926275e-05,1.6940658945086007e-21,3.1200031571643194e-06,-1.671275816552736e-21,5.926979793002829e-05,1.0259307879993528e-19,-1.0459375516802538e-05,-7.563072283698587e-21,-1.671275816552736e-21,2.988392964198283e-07,10.0,37.0,0.054732464253902435,-0.011192292906343937,-0.003443782450631261,0.0006142506026662886,0.00023276865249499679,5.4710581025574356e-05,-0.011192292906343937,0.005404866766184568,0.00023276865249499679,-0.0004606879665516317,-5.172636883798987e-05,-4.7452611706388116e-20,-0.003443782450631261,0.00023276865249499679,0.0004195425135549158,-8.809142651444724e-20,-1.2931592209497467e-05,-9.378956747241318e-06,0.0006142506026662886,-0.0004606879665516317,-8.809142651444724e-20,5.118755143485032e-05,-1.1011428314305904e-20,3.757905756635413e-21,0.00023276865249499679,-5.172636883798987e-05,-1.2931592209497467e-05,-1.1011428314305904e-20,2.8736869808199117e-06,5.603078323570559e-22,5.4710581025574356e-05,-4.7452611706388116e-20,-9.378956747241318e-06,3.757905756635413e-21,5.603078323570559e-22,2.6052657631225884e-07,10.0,38.0,0.05337688699364662,-0.010903569869697094,-0.003271071007475257,0.0005980861023999751,0.00022083180374465883,5.060728653916158e-05,-0.010903569869697094,0.005263924598693848,0.00022083180374465883,-0.0004485645913518965,-4.907373295282014e-05,-4.568335638666815e-20,-0.003271071007475257,0.00022083180374465883,0.00038767835940234363,-2.710505431213761e-20,-1.1936854207306169e-05,-8.43454836285673e-06,0.0005980861023999751,-0.0004485645913518965,-2.710505431213761e-20,4.984050974599086e-05,-2.414043899674756e-20,3.7752422182724315e-21,0.00022083180374465883,-4.907373295282014e-05,-1.1936854207306169e-05,-2.414043899674756e-20,2.6526342935540015e-06,5.387547892747736e-22,5.060728653916158e-05,-4.568335638666815e-20,-8.43454836285673e-06,3.7752422182724315e-21,5.387547892747736e-22,2.2796075427322648e-07,10.0,39.0,0.05208681523799896,-0.01062937080860138,-0.003111035330221057,0.0005827505956403911,0.00020979020337108523,4.690431524068117e-05,-0.01062937080860138,0.005130147561430931,0.00020979020337108523,-0.0004370629321783781,-4.662004721467383e-05,-5.995290696215265e-20,-0.003111035330221057,0.00020979020337108523,0.0003589620755519718,-9.486769009248164e-20,-1.1041590369131882e-05,-7.606105100421701e-06,0.0005827505956403911,-0.0004370629321783781,-9.486769009248164e-20,4.856254963669926e-05,-1.8211208365967457e-20,4.505450040391038e-21,0.00020979020337108523,-4.662004721467383e-05,-1.1041590369131882e-05,-1.8211208365967457e-20,2.453686647641007e-06,7.497449658674765e-22,4.690431524068117e-05,-5.995290696215265e-20,-7.606105100421701e-06,4.505450040391038e-21,7.497449658674765e-22,2.0016065604977484e-07,10.0,40.0,0.05085761845111847,-0.01036862563341856,-0.002962464466691017,0.0005681818001903594,0.00019955653988290578,4.355400596978143e-05,-0.01036862563341856,0.005003002472221851,0.00019955653988290578,-0.00042613636469468474,-4.434589936863631e-05,7.017268465615409e-20,-0.002962464466691017,0.00019955653988290578,0.00033301423536613584,3.6761229910836635e-19,-1.0233668945147656e-05,-6.876948646095116e-06,0.0005681818001903594,-0.00042613636469468474,3.6761229910836635e-19,4.734848334919661e-05,-2.159934015498466e-20,-6.0777580183473876e-21,0.00019955653988290578,-4.434589936863631e-05,-1.0233668945147656e-05,-2.159934015498466e-20,2.2741485281585483e-06,-6.400281211983229e-22,4.355400596978143e-05,7.017268465615409e-20,-6.876948646095116e-06,-6.0777580183473876e-21,-6.400281211983229e-22,1.7633200855016185e-07,10.0,41.0,0.04968508705496788,-0.010120367631316185,-0.002824288560077548,0.000554323720280081,0.00019005384820047766,4.051535506732762e-05,-0.010120367631316185,0.0048820083029568195,0.00019005384820047766,-0.000415742804761976,-4.223418727633543e-05,-2.3434886245982505e-20,-0.002824288560077548,0.00019005384820047766,0.00030950899235904217,-3.8963515573697816e-20,-9.502692591922823e-06,-6.233131443877937e-06,0.000554323720280081,-0.000415742804761976,-3.8963515573697816e-20,4.619364335667342e-05,-4.235164736271502e-22,1.335625775505625e-21,0.00019005384820047766,-4.223418727633543e-05,-9.502692591922823e-06,-4.235164736271502e-22,2.1117093638167717e-06,4.1259288316972687e-22,4.051535506732762e-05,-2.3434886245982505e-20,-6.233131443877937e-06,1.335625775505625e-21,4.1259288316972687e-22,1.5582828893911937e-07,10.0,42.0,0.04856538772583008,-0.009883721359074116,-0.002695560222491622,0.0005411255406215787,0.00018121414177585393,3.7752943171653897e-05,-0.009883721359074116,0.004766728729009628,0.00018121414177585393,-0.000405844155466184,-4.0269806049764156e-05,5.364171922117765e-20,-0.002695560222491622,0.00018121414177585393,0.00028816546546295285,1.8126505071242027e-19,-8.839713700581342e-06,-5.662941930495435e-06,0.0005411255406215787,-0.000405844155466184,1.8126505071242027e-19,4.5093795051798224e-05,0.0,-4.293749156920716e-21,0.00018121414177585393,-4.0269806049764156e-05,-8.839713700581342e-06,0.0,1.964380771823926e-06,-5.344925170058793e-22,3.7752943171653897e-05,5.364171922117765e-20,-5.662941930495435e-06,-4.293749156920716e-21,-5.344925170058793e-22,1.3812052657158347e-07,10.0,43.0,0.0474950335919857,-0.009657889604568481,-0.002575437305495143,0.0005285412189550698,0.00017297713202424347,3.523608029354364e-05,-0.009657889604568481,0.004656768403947353,0.00017297713202424347,-0.00039640592876821756,-3.843936065095477e-05,-4.060782784683106e-20,-0.002575437305495143,0.00017297713202424347,0.0002687406959012151,-8.470329472543003e-20,-8.23700611363165e-06,-5.1564998102549e-06,0.0005285412189550698,-0.00039640592876821756,-8.470329472543003e-20,4.4045100366929546e-05,-1.0164395367051604e-20,3.434929693731102e-21,0.00017297713202424347,-3.843936065095477e-05,-8.23700611363165e-06,-1.0164395367051604e-20,1.8304458535567392e-06,3.5435099223644645e-22,3.523608029354364e-05,-4.060782784683106e-20,-5.1564998102549e-06,3.434929693731102e-21,3.5435099223644645e-22,1.2277379823899537e-07,10.0,44.0,0.04647083580493927,-0.009442148730158806,-0.002463169163092971,0.0005165289039723575,0.00016528925334569067,3.2938078220468014e-05,-0.009442148730158806,0.004551767837256193,0.00016528925334569067,-0.00038739669253118336,-3.6730947613250464e-05,1.5720667707972592e-20,-0.002463169163092971,0.00016528925334569067,0.0002510237682145089,8.978549240895584e-20,-7.687872312089894e-06,-4.705439550889423e-06,0.0005165289039723575,-0.00038739669253118336,8.978549240895584e-20,4.3044077756349e-05,3.3881317890172014e-21,-2.1223235105285505e-21,0.00016528925334569067,-3.6730947613250464e-05,-7.687872312089894e-06,3.3881317890172014e-21,1.7084161072489223e-06,1.7536511713872618e-22,3.2938078220468014e-05,1.5720667707972592e-20,-4.705439550889423e-06,-2.1223235105285505e-21,1.7536511713872618e-22,1.0942882511244534e-07,10.0,45.0,0.04548986628651619,-0.009235836565494537,-0.0023580859415233135,0.0005050505278632045,0.00015810276090633124,3.083564661210403e-05,-0.009235836565494537,0.004451397806406021,0.00015810276090633124,-0.0003787878667935729,-3.5133947676513344e-05,8.196387286945901e-21,-0.0023580859415233135,0.00015810276090633124,0.00023483094992116094,3.049318610115481e-20,-7.18648925612797e-06,-4.30264844908379e-06,0.0005050505278632045,-0.0003787878667935729,3.049318610115481e-20,4.2087540350621566e-05,-5.082197683525802e-21,-7.125294618543783e-23,0.00015810276090633124,-3.5133947676513344e-05,-7.18648925612797e-06,-5.082197683525802e-21,1.5969976630003657e-06,-3.480581036450919e-22,3.083564661210403e-05,8.196387286945901e-21,-4.30264844908379e-06,-7.125294618543783e-23,-3.480581036450919e-22,9.778746346000844e-08,10.0,46.0,0.044549450278282166,-0.00903834868222475,-0.0022595871705561876,0.0004940711660310626,0.00015137498849071562,2.8908418244100176e-05,-0.00903834868222475,0.004355359822511673,0.00015137498849071562,-0.0003705533454194665,-3.363888754392974e-05,-5.66740987233117e-20,-0.0022595871705561876,0.00015137498849071562,0.0002200018207076937,-2.591920818598159e-19,-6.727777417836478e-06,-3.942056991945719e-06,0.0004940711660310626,-0.0003705533454194665,-2.591920818598159e-19,4.1172595956595615e-05,9.952637130238029e-21,4.484082688854958e-21,0.00015137498849071562,-3.363888754392974e-05,-6.727777417836478e-06,9.952637130238029e-21,1.4950616105124936e-06,6.009063253414273e-22,2.8908418244100176e-05,-5.66740987233117e-20,-3.942056991945719e-06,4.484082688854958e-21,6.009063253414273e-22,8.76012649086988e-08,10.0,47.0,0.043647121638059616,-0.008849130012094975,-0.0021671338472515345,0.0004835590079892427,0.00014506769366562366,2.7138514269609004e-05,-0.008849130012094975,0.00426337867975235,0.00014506769366562366,-0.00036266923416405916,-3.223726525902748e-05,4.039266072116497e-20,-0.0021671338472515345,0.00014506769366562366,0.000206395736313425,1.7448878713438587e-19,-6.307291187113151e-06,-3.6184685541229555e-06,0.0004835590079892427,-0.00036266923416405916,1.7448878713438587e-19,4.029658157378435e-05,1.2705494208814505e-21,-3.3799532830486534e-21,0.00014506769366562366,-3.223726525902748e-05,-6.307291187113151e-06,1.2705494208814505e-21,1.4016202385391807e-06,-3.5375292207431857e-22,2.7138514269609004e-05,4.039266072116497e-20,-3.6184685541229555e-06,-3.3799532830486534e-21,-3.5375292207431857e-22,7.866236018116979e-08,10.0,48.0,0.04278061166405678,-0.00866767205297947,-0.0020802412182092667,0.0004734848625957966,0.00013914656301494688,2.551020406826865e-05,-0.00866767205297947,0.004175202455371618,0.00013914656301494688,-0.00035511364694684744,-3.092145925620571e-05,-1.4203088551970423e-20,-0.0020802412182092667,0.00013914656301494688,0.0001938891364261508,-2.541098841762901e-21,-5.921130650676787e-06,-3.3274179713771446e-06,0.0004734848625957966,-0.00035511364694684744,-2.541098841762901e-21,3.9457070670323446e-05,-1.4399560103323106e-20,1.4872480221762734e-21,0.00013914656301494688,-3.092145925620571e-05,-5.921130650676787e-06,-1.4399560103323106e-20,1.3158067986296373e-06,2.0664793591612457e-23,2.551020406826865e-05,-1.4203088551970423e-20,-3.3274179713771446e-06,1.4872480221762734e-21,2.0664793591612457e-23,7.079612629468102e-08,10.0,49.0,0.04194783419370651,-0.008493506349623203,-0.0019984720274806023,0.00046382189611904323,0.00013358070282265544,2.4009603293961845e-05,-0.008493506349623203,0.004090599715709686,0.00013358070282265544,-0.0003478664148133248,-2.9684601031476632e-05,-3.949224554383259e-20,-0.0019984720274806023,0.00013358070282265544,0.00018237314361613244,-1.4230153513872246e-19,-5.565862920775544e-06,-3.0650558073830325e-06,0.00046382189611904323,-0.0003478664148133248,-1.4230153513872246e-19,3.865182588924654e-05,-4.870439446712227e-21,3.1994996722833406e-21,0.00013358070282265544,-2.9684601031476632e-05,-5.565862920775544e-06,-4.870439446712227e-21,1.2368583384159137e-06,3.3147498523989786e-22,2.4009603293961845e-05,-3.949224554383259e-20,-3.0650558073830325e-06,3.1994996722833406e-21,3.3147498523989786e-22,6.385533168895563e-08,10.0,50.0,0.04114685207605362,-0.008326203562319279,-0.0019214315107092261,0.00045454545761458576,0.00012834224617108703,2.2624433768214658e-05,-0.008326203562319279,0.0040093581192195415,0.00012834224617108703,-0.0003409090859349817,-2.8520498744910583e-05,4.466220757502641e-21,-0.0019214315107092261,0.00012834224617108703,0.00017175156972371042,-8.470329472543003e-22,-5.238458925305167e-06,-2.8280542210268322e-06,0.00045454545761458576,-0.0003409090859349817,-8.470329472543003e-22,3.787878813454881e-05,3.5998900258307764e-21,-3.5436841028523373e-22,0.00012834224617108703,-2.8520498744910583e-05,-5.238458925305167e-06,3.5998900258307764e-21,1.1641020591923734e-06,-9.936077810188624e-24,2.2624433768214658e-05,4.466220757502641e-21,-2.8280542210268322e-06,-3.5436841028523373e-22,-9.936077810188624e-24,5.771539335341913e-08,10.0,51.0,0.040375884622335434,-0.008165364153683186,-0.0018487616907805204,0.000445632787887007,0.00012340600369498134,2.1343805201468058e-05,-0.008165364153683186,0.00393128115683794,0.00012340600369498134,-0.0003342246054671705,-2.7423557185102254e-05,1.6521364000639718e-20,-0.0018487616907805204,0.00012340600369498134,0.00016193921328522265,1.4399560103323106e-20,-4.9362402023689356e-06,-2.613527158246143e-06,0.000445632787887007,-0.0003342246054671705,1.4399560103323106e-20,3.713606565725058e-05,8.893845946170154e-21,-1.3601492774819607e-21,0.00012340600369498134,-2.7423557185102254e-05,-4.9362402023689356e-06,8.893845946170154e-21,1.096942241929355e-06,-1.4569979453861105e-22,2.1343805201468058e-05,1.6521364000639718e-20,-2.613527158246143e-06,-1.3601492774819607e-21,-1.4569979453861105e-22,5.227054700185363e-08,10.0,52.0,0.03963327035307884,-0.008010621182620525,-0.0017801381181925535,0.0004370629321783781,0.00011874917254317552,2.0158038751105778e-05,-0.008010621182620525,0.0038561869878321886,0.00011874917254317552,-0.0003277971991337836,-2.638870500959456e-05,-2.9837681008623483e-20,-0.0017801381181925535,0.00011874917254317552,0.00015286046254914254,-1.1604351377383915e-19,-4.656830242311116e-06,-2.4189646410377463e-06,0.0004370629321783781,-0.0003277971991337836,-1.1604351377383915e-19,3.6421912227524444e-05,-2.117582368135751e-21,2.2959088564909022e-21,0.00011874917254317552,-2.638870500959456e-05,-4.656830242311116e-06,-2.117582368135751e-21,1.034851152326155e-06,2.3839846085789764e-22,2.0158038751105778e-05,-2.9837681008623483e-20,-2.4189646410377463e-06,2.2959088564909022e-21,2.3839846085789764e-22,4.743068160451003e-08,10.0,53.0,0.038917478173971176,-0.007861635647714138,-0.0017152659129351377,0.00042881647823378444,0.00011435105989221483,1.9058508769376203e-05,-0.007861635647714138,0.0037839082069694996,0.00011435105989221483,-0.0003216123441234231,-2.541134563216474e-05,-2.0257493258297392e-20,-0.0017152659129351377,0.00011435105989221483,0.00014444798580370843,-2.879912020664621e-20,-4.3981176531815436e-06,-2.2421775156544754e-06,0.00042881647823378444,-0.0003216123441234231,-2.879912020664621e-20,3.5734705306822434e-05,-1.164670302474663e-20,1.5071115650132874e-21,0.00011435105989221483,-2.541134563216474e-05,-4.3981176531815436e-06,-1.164670302474663e-20,9.773594911166583e-07,1.8605833496827597e-22,1.9058508769376203e-05,-2.0257493258297392e-20,-2.2421775156544754e-06,1.5071115650132874e-21,1.8605833496827597e-22,4.3118799197827684e-08,10.0,54.0,0.03822707757353783,-0.00771808996796608,-0.0016538763884454966,0.0004208754107821733,0.00011019283556379378,1.803751729312353e-05,-0.00771808996796608,0.0037142892833799124,0.00011019283556379378,-0.00031565656536258757,-2.448729719617404e-05,-4.8421615019902774e-20,-0.0016538763884454966,0.00011019283556379378,0.00013664175639860332,-1.7025362239811437e-19,-4.158220235694898e-06,-2.0812519778701244e-06,0.0004208754107821733,-0.00031565656536258757,-1.7025362239811437e-19,3.5072953323833644e-05,-1.122318655111948e-20,4.038603519832888e-21,0.00011019283556379378,-2.448729719617404e-05,-4.158220235694898e-06,-1.122318655111948e-20,9.240489475814684e-07,3.562683912417894e-22,1.803751729312353e-05,-4.8421615019902774e-20,-2.0812519778701244e-06,4.038603519832888e-21,3.562683912417894e-22,3.926890812522288e-08,10.0,55.0,0.03756074234843254,-0.007579693105071783,-0.0015957248397171497,0.0004132231406401843,0.00010625737922964618,1.7088175809476525e-05,-0.007579693105071783,0.0036471860948950052,0.00010625737922964618,-0.0003099173482041806,-2.361275073781144e-05,-2.3986604001548654e-21,-0.0015957248397171497,0.00010625737922964618,0.00012938813597429544,6.437450399132683e-20,-3.935458607884357e-06,-1.934510464707273e-06,0.0004132231406401843,-0.0003099173482041806,6.437450399132683e-20,3.443526293267496e-05,-1.122318655111948e-20,5.246129492466362e-23,0.00010625737922964618,-2.361275073781144e-05,-3.935458607884357e-06,-1.122318655111948e-20,8.74546344675764e-07,4.609804309600695e-23,1.7088175809476525e-05,-2.3986604001548654e-21,-1.934510464707273e-06,5.246129492466362e-23,4.609804309600695e-23,3.582426444381781e-08,10.0,56.0,0.03691723570227623,-0.007446172181516886,-0.001540587400086224,0.000405844155466184,0.00010252904758090153,1.6204303392441943e-05,-0.007446172181516886,0.003582464763894677,0.00010252904758090153,-0.0003043831093236804,-2.2784233806305565e-05,-1.4529574477923115e-20,-0.001540587400086224,0.00010252904758090153,0.00012263904500287026,-5.759824041329242e-20,-3.728329147634213e-06,-1.8004782305069966e-06,0.000405844155466184,-0.0003043831093236804,-5.759824041329242e-20,3.382034628884867e-05,4.235164736271502e-22,1.1428889567355225e-21,0.00010252904758090153,-2.2784233806305565e-05,-3.728329147634213e-06,4.235164736271502e-22,8.285175567834813e-07,1.480925169492295e-22,1.6204303392441943e-05,-1.4529574477923115e-20,-1.8004782305069966e-06,1.1428889567355225e-21,1.480925169492295e-22,3.273596860253747e-08,10.0,57.0,0.03629540279507637,-0.00731727434322238,-0.0014882591785863042,0.00039872407796792686,9.899356518872082e-05,1.5380355762317777e-05,-0.00731727434322238,0.003520000260323286,9.899356518872082e-05,-0.00029904305119998753,-2.1998570446157828e-05,-8.464109966948496e-22,-0.0014882591785863042,9.899356518872082e-05,0.0001163513952633366,-3.3881317890172014e-20,-3.53548443854379e-06,-1.677857085269352e-06,0.00039872407796792686,-0.00029904305119998753,-3.3881317890172014e-20,3.322700649732724e-05,7.835054762102278e-21,-2.0736804286029014e-22,9.899356518872082e-05,-2.1998570446157828e-05,-3.53548443854379e-06,7.835054762102278e-21,7.856631896174804e-07,8.128613987280731e-23,1.5380355762317777e-05,-8.464109966948496e-22,-1.677857085269352e-06,-2.0736804286029014e-22,8.128613987280731e-23,2.996173265046309e-08,10.0,58.0,0.035694170743227005,-0.0071927634999156,-0.0014385526301339269,0.0003918495203834027,9.563784988131374e-05,1.4611337974201888e-05,-0.0071927634999156,0.0034596771001815796,9.563784988131374e-05,-0.0002938871330115944,-2.1252855731290765e-05,-2.7223842779537767e-21,-0.0014385526301339269,9.563784988131374e-05,0.00011048638407373801,3.6422416731934915e-20,-3.355714170538704e-06,-1.5655004972359166e-06,0.0003918495203834027,-0.0002938871330115944,3.6422416731934915e-20,3.265412669861689e-05,-1.0164395367051604e-20,2.5474476953023156e-22,9.563784988131374e-05,-2.1252855731290765e-05,-3.355714170538704e-06,-1.0164395367051604e-20,7.45714260119712e-07,-1.6784658166981696e-23,1.4611337974201888e-05,-2.7223842779537767e-21,-1.5655004972359166e-06,2.5474476953023156e-22,-1.6784658166981696e-23,2.7464921004138887e-08,10.0,59.0,0.03511252999305725,-0.007072418928146362,-0.00139129557646811,0.0003852080262731761,9.244992543244734e-05,1.38927480293205e-05,-0.007072418928146362,0.003401386784389615,9.244992543244734e-05,-0.00028890601242892444,-2.0544426661217585e-05,4.497518719253976e-21,-0.00139129557646811,9.244992543244734e-05,0.00010500909411348403,7.623296525288703e-20,-3.1879283142188797e-06,-1.4623944935010513e-06,0.0003852080262731761,-0.00028890601242892444,7.623296525288703e-20,3.21006664307788e-05,-9.529120656610879e-21,-4.479105771714806e-22,9.244992543244734e-05,-2.0544426661217585e-05,-3.1879283142188797e-06,-9.529120656610879e-21,7.084285016389913e-07,1.2028665467641245e-23,1.38927480293205e-05,4.497518719253976e-21,-1.4623944935010513e-06,-4.479105771714806e-22,1.2028665467641245e-23,2.5213699572645965e-08,10.0,60.0,0.034549541771411896,-0.006956035736948252,-0.0013463294599205256,0.0003787878667935729,8.941877604229376e-05,1.3220518667367287e-05,-0.006956035736948252,0.0033450282644480467,8.941877604229376e-05,-0.0002840909000951797,-1.9870840333169326e-05,-3.278711303612921e-20,-0.0013463294599205256,8.941877604229376e-05,9.988799865823239e-05,-1.7025362239811437e-19,-3.0311450700537534e-06,-1.3676398111783783e-06,0.0003787878667935729,-0.0002840909000951797,-1.7025362239811437e-19,3.156565799145028e-05,1.2705494208814505e-21,2.7415396887551665e-21,8.941877604229376e-05,-1.9870840333169326e-05,-3.0311450700537534e-06,1.2705494208814505e-21,6.735878059771494e-07,2.1253745468309067e-22,1.3220518667367287e-05,-3.278711303612921e-20,-1.3676398111783783e-06,2.7415396887551665e-21,2.1253745468309067e-22,2.3180335873007607e-08,10.0,61.0,0.03400431573390961,-0.006843421142548323,-0.0013035087613388896,0.00037257824442349374,8.65343026816845e-05,1.2590970072778873e-05,-0.006843421142548323,0.0032905067782849073,8.65343026816845e-05,-0.0002794336760416627,-1.9229844838264398e-05,9.306834446239292e-21,-0.0013035087613388896,8.65343026816845e-05,9.509460505796596e-05,5.251604272976662e-20,-2.884476771214395e-06,-1.2804375728592277e-06,0.00037257824442349374,-0.0002794336760416627,5.251604272976662e-20,3.104818824795075e-05,-1.164670302474663e-21,-8.260345554299226e-22,8.65343026816845e-05,-1.9229844838264398e-05,-2.884476771214395e-06,-1.164670302474663e-21,6.409948127839016e-07,-3.090938464664125e-23,1.2590970072778873e-05,9.306834446239292e-21,-1.2804375728592277e-06,-8.260345554299226e-22,-3.090938464664125e-23,2.1340627043286986e-08,10.0,62.0,0.03347603231668472,-0.0067343944683671,-0.0012626990210264921,0.0003665689146146178,8.378717757295817e-05,1.200076803797856e-05,-0.0067343944683671,0.0032377345487475395,8.378717757295817e-05,-0.00027492668596096337,-1.8619373804540373e-05,-5.331772776175969e-21,-0.0012626990210264921,8.378717757295817e-05,9.060311276698485e-05,5.929230630780102e-21,-2.7471205612528138e-06,-1.2000767810604884e-06,0.0003665689146146178,-0.00027492668596096337,5.929230630780102e-21,3.054740955121815e-05,-6.3527471044072525e-21,4.435385964387754e-22,8.378717757295817e-05,-1.8619373804540373e-05,-2.7471205612528138e-06,-6.3527471044072525e-21,6.104712610977003e-07,3.769768735280548e-23,1.200076803797856e-05,-5.331772776175969e-21,-1.2000767810604884e-06,4.435385964387754e-22,3.769768735280548e-23,1.9673390028174254e-08,10.0,63.0,0.032963912934064865,-0.006628788076341152,-0.0012237762566655874,0.0003607503604143858,8.116882963804528e-05,1.1446886674093548e-05,-0.006628788076341152,0.003186628222465515,8.116882963804528e-05,-0.00027056277031078935,-1.803751729312353e-05,-5.724554320167946e-21,-0.0012237762566655874,8.116882963804528e-05,8.639012230560184e-05,-1.5246593050577406e-20,-2.618349299154943e-06,-1.1259232906013494e-06,0.0003607503604143858,-0.00027056277031078935,-1.5246593050577406e-20,3.006253064086195e-05,-5.399835038746165e-21,6.238984021761265e-22,8.116882963804528e-05,-1.803751729312353e-05,-2.618349299154943e-06,-5.399835038746165e-21,5.818554313918867e-07,-1.5151720826339633e-23,1.1446886674093548e-05,-5.724554320167946e-21,-1.1259232906013494e-06,6.238984021761265e-22,-1.5151720826339633e-23,1.816005301691348e-08,10.0,64.0,0.03246721997857094,-0.006526442244648933,-0.0011866259155794978,0.00035511364694684744,7.867132808314636e-05,1.0926573850156274e-05,-0.006526442244648933,0.0031371102668344975,7.867132808314636e-05,-0.0002663352352101356,-1.7482518160250038e-05,-1.6196105920908784e-20,-0.0011866259155794978,7.867132808314636e-05,8.243436604971066e-05,-5.929230630780102e-20,-2.4975024643936194e-06,-1.0574103725957684e-06,0.00035511364694684744,-0.0002663352352101356,-5.929230630780102e-20,2.9592803912237287e-05,-3.705769144237564e-21,1.1643663701450994e-21,7.867132808314636e-05,-1.7482518160250038e-05,-2.4975024643936194e-06,-3.705769144237564e-21,5.55000553958962e-07,1.5202982901227067e-22,1.0926573850156274e-05,-1.6196105920908784e-20,-1.0574103725957684e-06,1.1643663701450994e-21,1.5202982901227067e-22,1.6784291290150577e-08,11.0,3.0,0.36771562695503235,-0.09615384787321091,-0.25,0.005827505607157946,0.022727273404598236,0.04545454680919647,-0.09615384787321091,0.046425797045230865,0.022727273404598236,-0.0038850039709359407,-0.004545454401522875,2.42861286636753e-17,-0.25,0.022727273404598236,0.7045454382896423,5.670138224184099e-18,-0.022727273404598236,-0.27272728085517883,0.005827505607157946,-0.0038850039709359407,5.670138224184099e-18,0.0003885003970935941,-1.7221241193803408e-19,-2.408553074768629e-18,0.022727273404598236,-0.004545454401522875,-0.022727273404598236,-1.7221241193803408e-19,0.004545454401522875,0.0,0.04545454680919647,2.42861286636753e-17,-0.27272728085517883,-2.408553074768629e-18,0.0,0.13636364042758942,11.0,4.0,0.31101399660110474,-0.0755244791507721,-0.16363635659217834,0.004370629321783781,0.013636363670229912,0.022727273404598236,-0.0755244791507721,0.03550116717815399,0.013636363670229912,-0.002913752803578973,-0.0027272726874798536,-5.0464684441471866e-18,-0.16363635659217834,0.013636363670229912,0.26818183064460754,1.81816242513595e-18,-0.00909090880304575,-0.06818182021379471,0.004370629321783781,-0.002913752803578973,1.81816242513595e-18,0.00029137529782019556,-5.421010862427522e-20,-6.060541417119833e-19,0.013636363670229912,-0.0027272726874798536,-0.00909090880304575,-5.421010862427522e-20,0.001818181830458343,6.17190102067509e-18,0.022727273404598236,-5.0464684441471866e-18,-0.06818182021379471,-6.060541417119833e-19,6.17190102067509e-18,0.022727273404598236,11.0,5.0,0.2693306803703308,-0.06223776191473007,-0.11558441817760468,0.003496503457427025,0.00909090880304575,0.012987012974917889,-0.06223776191473007,0.028764568269252777,0.00909090880304575,-0.0023310023825615644,-0.001818181830458343,-1.6479873021779667e-17,-0.11558441817760468,0.00909090880304575,0.13571429252624512,-6.659369515795706e-19,-0.004545454401522875,-0.025974025949835777,0.003496503457427025,-0.0023310023825615644,-6.659369515795706e-19,0.00023310023243539035,-9.812765412299287e-20,2.927403303064646e-19,0.00909090880304575,-0.001818181830458343,-0.004545454401522875,-9.812765412299287e-20,0.0009090909152291715,6.830473686658678e-18,0.012987012974917889,-1.6479873021779667e-17,-0.025974025949835777,2.927403303064646e-19,6.830473686658678e-18,0.006493506487458944,11.0,6.0,0.23742923140525818,-0.05294705182313919,-0.08603896200656891,0.002913752803578973,0.006493506487458944,0.008116883225739002,-0.05294705182313919,0.02418692409992218,0.006493506487458944,-0.0019425019854679704,-0.0012987012742087245,-2.6020852139652106e-18,-0.08603896200656891,0.006493506487458944,0.079058438539505,-3.0315629714718773e-18,-0.002597402548417449,-0.012175324372947216,0.002913752803578973,-0.0019425019854679704,-3.0315629714718773e-18,0.00019425019854679704,1.9355598526267793e-19,3.665713698556508e-19,0.006493506487458944,-0.0012987012742087245,-0.002597402548417449,1.9355598526267793e-19,0.0005194804980419576,-3.2526065174565133e-19,0.008116883225739002,-2.6020852139652106e-18,-0.012175324372947216,3.665713698556508e-19,-3.2526065174565133e-19,0.002435064874589443,11.0,7.0,0.2122460901737213,-0.04607892036437988,-0.06655844300985336,0.002497502602636814,0.004870129749178886,0.005411255639046431,-0.04607892036437988,0.020870795473456383,0.004870129749178886,-0.0016650016186758876,-0.0009740259847603738,-1.9174706275517693e-18,-0.06655844300985336,0.004870129749178886,0.05032467469573021,5.421010862427522e-20,-0.001623376621864736,-0.006493506487458944,0.002497502602636814,-0.0016650016186758876,5.421010862427522e-20,0.00016650016186758876,-1.3552527156068805e-20,-2.667954898830925e-35,0.004870129749178886,-0.0009740259847603738,-0.001623376621864736,-1.3552527156068805e-20,0.0003246753185521811,6.3915687585058975e-19,0.005411255639046431,-1.9174706275517693e-18,-0.006493506487458944,-2.667954898830925e-35,6.3915687585058975e-19,0.0010822510812431574,11.0,8.0,0.19187062978744507,-0.04079253971576691,-0.05303030461072922,0.0021853146608918905,0.0037878789007663727,0.0037878789007663727,-0.04079253971576691,0.018356643617153168,0.0037878789007663727,-0.0014568764017894864,-0.0007575757335871458,-0.0,-0.05303030461072922,0.0037878789007663727,0.034090910106897354,5.421010862427522e-20,-0.0010822510812431574,-0.0037878789007663727,0.0021853146608918905,-0.0014568764017894864,5.421010862427522e-20,0.00014568764891009778,-6.776263578034403e-21,-0.0,0.0037878789007663727,-0.0007575757335871458,-0.0010822510812431574,-6.776263578034403e-21,0.00021645022206939757,-0.0,0.0037878789007663727,-0.0,-0.0037878789007663727,-0.0,-0.0,0.0005411255406215787,11.0,9.0,0.17505121231079102,-0.036596737802028656,-0.043250687420368195,0.0019425019854679704,0.0030303029343485832,0.002754820976406336,-0.036596737802028656,0.01638435572385788,0.0030303029343485832,-0.001295001246035099,-0.000606060610152781,-3.2526065174565133e-19,-0.043250687420368195,0.0030303029343485832,0.024193231016397476,-0.0,-0.0007575757335871458,-0.0023612750228494406,0.0019425019854679704,-0.001295001246035099,-0.0,0.00012950012751389295,-6.776263578034403e-21,3.3881317890172014e-21,0.0030303029343485832,-0.000606060610152781,-0.0007575757335871458,-6.776263578034403e-21,0.00015151515253819525,8.131516293641283e-20,0.002754820976406336,-3.2526065174565133e-19,-0.0023612750228494406,3.3881317890172014e-21,8.131516293641283e-20,0.00029515937785618007,11.0,10.0,0.16093452274799347,-0.033184997737407684,-0.03595041483640671,0.0017482517287135124,0.002479338785633445,0.00206611561588943,-0.033184997737407684,0.014795507304370403,0.002479338785633445,-0.0011655011912807822,-0.0004958677454851568,4.607859233063394e-19,-0.03595041483640671,0.002479338785633445,0.017803030088543892,-3.0883334238118544e-20,-0.0005509642069227993,-0.0015495867701247334,0.0017482517287135124,-0.0011655011912807822,-3.0883334238118544e-20,0.00011655011621769518,7.732034425128914e-21,-7.000272408187502e-22,0.002479338785633445,-0.0004958677454851568,-0.0005509642069227993,7.732034425128914e-21,0.00011019283556379378,-1.0842021724855044e-19,0.00206611561588943,4.607859233063394e-19,-0.0015495867701247334,-7.000272408187502e-22,-1.0842021724855044e-19,0.000172176311025396,11.0,11.0,0.1489192694425583,-0.03035600855946541,-0.03035600855946541,0.0015893197851255536,0.00206611561588943,0.0015893197851255536,-0.03035600855946541,0.013488027267158031,0.00206611561588943,-0.0010595464846119285,-0.0004132231406401843,-2.439454888092385e-19,-0.03035600855946541,0.00206611561588943,0.013488027267158031,-0.0,-0.0004132231406401843,-0.0010595464846119285,0.0015893197851255536,-0.0010595464846119285,-0.0,0.00010595464846119285,-3.3881317890172014e-21,1.6940658945086007e-21,0.00206611561588943,-0.0004132231406401843,-0.0004132231406401843,-3.3881317890172014e-21,8.264462667284533e-05,4.0657581468206416e-20,0.0015893197851255536,-2.439454888092385e-19,-0.0010595464846119285,1.6940658945086007e-21,4.0657581468206416e-20,0.00010595464846119285,11.0,12.0,0.13856975734233856,-0.0279720276594162,-0.025974025949835777,0.0014568764017894864,0.0017482517287135124,0.001248751301318407,-0.0279720276594162,0.012393162585794926,0.0017482517287135124,-0.0009712509927339852,-0.00034965036320500076,2.710505431213761e-20,-0.025974025949835777,0.0017482517287135124,0.010466805659234524,-1.815701349556103e-20,-0.00031786394538357854,-0.0007492507575079799,0.0014568764017894864,-0.0009712509927339852,-1.815701349556103e-20,9.712509927339852e-05,-2.836725639819502e-21,2.9938087729510993e-21,0.0017482517287135124,-0.00034965036320500076,-0.00031786394538357854,-2.836725639819502e-21,6.357279198709875e-05,-6.776263578034403e-21,0.001248751301318407,2.710505431213761e-20,-0.0007492507575079799,2.9938087729510993e-21,-6.776263578034403e-21,6.81137025821954e-05,11.0,13.0,0.12956275045871735,-0.02593560330569744,-0.022477522492408752,0.0013448090758174658,0.0014985015150159597,0.0009990009712055326,-0.02593560330569744,0.011462896130979061,0.0014985015150159597,-0.0008965393644757569,-0.00029970030300319195,-6.776263578034403e-20,-0.022477522492408752,0.0014985015150159597,0.008287167176604271,-0.0,-0.00024975024280138314,-0.0005449096206575632,0.0013448090758174658,-0.0008965393644757569,-0.0,8.965393499238417e-05,0.0,0.0,0.0014985015150159597,-0.00029970030300319195,-0.00024975024280138314,0.0,4.995004928787239e-05,1.1858461261560205e-20,0.0009990009712055326,-6.776263578034403e-20,-0.0005449096206575632,0.0,1.1858461261560205e-20,4.5409135054796934e-05,11.0,14.0,0.12165334820747375,-0.024175824597477913,-0.01964285783469677,0.001248751301318407,0.0012987012742087245,0.000811688310932368,-0.024175824597477913,0.010662670247256756,0.0012987012742087245,-0.0008325008093379438,-0.0002597402490209788,5.421010862427522e-20,-0.01964285783469677,0.0012987012742087245,0.006674575619399548,-0.0,-0.00019980019715148956,-0.000405844155466184,0.001248751301318407,-0.0008325008093379438,-0.0,8.325008093379438e-05,0.0,0.0,0.0012987012742087245,-0.0002597402490209788,-0.00019980019715148956,0.0,3.996003943029791e-05,-8.470329472543003e-21,0.000811688310932368,5.421010862427522e-20,-0.000405844155466184,0.0,-8.470329472543003e-21,3.121878035017289e-05,11.0,15.0,0.11465275287628174,-0.022639859467744827,-0.017312834039330482,0.0011655011912807822,0.0011363636003807187,0.000668449210934341,-0.022639859467744827,0.009966977871954441,0.0011363636003807187,-0.0007770007941871881,-0.00022727272880729288,-4.0657581468206416e-20,-0.017312834039330482,0.0011363636003807187,0.00545557402074337,-0.0,-0.00016233765927609056,-0.00030851500923745334,0.0011655011912807822,-0.0007770007941871881,-0.0,7.770007505314425e-05,0.0,0.0,0.0011363636003807187,-0.00022727272880729288,-0.00016233765927609056,0.0,3.246753112762235e-05,6.776263578034403e-21,0.000668449210934341,-4.0657581468206416e-20,-0.00030851500923745334,0.0,6.776263578034403e-21,2.2036787413526326e-05,11.0,16.0,0.10841303318738937,-0.02128753624856472,-0.01537433173507452,0.0010926573304459453,0.0010026737581938505,0.0005570409703068435,-0.02128753624856472,0.009356575086712837,0.0010026737581938505,-0.0007284382008947432,-0.00020053476328030229,8.809142651444724e-20,-0.01537433173507452,0.0010026737581938505,0.004516806919127703,-0.0,-0.0001336898421868682,-0.00023873185273259878,0.0010926573304459453,-0.0007284382008947432,-0.0,7.284382445504889e-05,0.0,0.0,0.0010026737581938505,-0.00020053476328030229,-0.0001336898421868682,0.0,2.6737967345979996e-05,-1.1858461261560205e-20,0.0005570409703068435,8.809142651444724e-20,-0.00023873185273259878,0.0,-1.1858461261560205e-20,1.591545697010588e-05,11.0,17.0,0.10281668603420258,-0.02008775621652603,-0.013744253665208817,0.0010283833835273981,0.000891265575774014,0.0004690871573984623,-0.02008775621652603,0.008816673420369625,0.000891265575774014,-0.0006855889223515987,-0.00017825311806518584,-1.043544591017298e-18,-0.013744253665208817,0.000891265575774014,0.0037820152938365936,-1.5072903733505053e-18,-0.00011140819697175175,-0.000187634868780151,0.0010283833835273981,-0.0006855889223515987,-1.5072903733505053e-18,6.855888932477683e-05,4.440080315338188e-20,7.478030038792467e-20,0.000891265575774014,-0.00017825311806518584,-0.00011140819697175175,4.440080315338188e-20,2.228163975814823e-05,3.7269449679189215e-20,0.0004690871573984623,-1.043544591017298e-18,-0.000187634868780151,7.478030038792467e-20,3.7269449679189215e-20,1.1727179298759438e-05,11.0,18.0,0.09776919335126877,-0.019016072154045105,-0.012360446155071259,0.0009712509927339852,0.0007974481559358537,0.00039872407796792686,-0.019016072154045105,0.008335718885064125,0.0007974481559358537,-0.0006475006230175495,-0.00015948963118717074,-6.098637220230962e-20,-0.012360446155071259,0.0007974481559358537,0.0031985880341380835,-0.0,-9.38174343900755e-05,-0.00014952152559999377,0.0009712509927339852,-0.0006475006230175495,-0.0,6.475006375694647e-05,0.0,0.0,0.0007974481559358537,-0.00015948963118717074,-9.38174343900755e-05,0.0,1.87634868780151e-05,7.623296525288703e-21,0.00039872407796792686,-6.098637220230962e-20,-0.00014952152559999377,0.0,7.623296525288703e-21,8.795384019322228e-06,11.0,19.0,0.0931936502456665,-0.018052998930215836,-0.011175666004419327,0.0009201325010508299,0.0007177033694460988,0.00034176348708570004,-0.018052998930215836,0.007904551923274994,0.0007177033694460988,-0.0006134216673672199,-0.00014354067388921976,2.370211599015571e-19,-0.011175666004419327,0.0007177033694460988,0.0027294170577079058,6.640738306473715e-19,-7.974481559358537e-05,-0.00012062241148669273,0.0009201325010508299,-0.0006134216673672199,6.640738306473715e-19,6.134216528153047e-05,-4.573977915173222e-20,-2.3494632273780988e-20,0.0007177033694460988,-0.00014354067388921976,-7.974481559358537e-05,-4.573977915173222e-20,1.5948962754919194e-05,9.248656749651035e-22,0.00034176348708570004,2.370211599015571e-19,-0.00012062241148669273,-2.3494632273780988e-20,9.248656749651035e-22,6.701245183649007e-06,11.0,20.0,0.08902688324451447,-0.017182817682623863,-0.010153482668101788,0.0008741258643567562,0.0006493506371043622,0.00029515937785618007,-0.017182817682623863,0.007515817414969206,0.0006493506371043622,-0.0005827505956403911,-0.0001298701245104894,1.0224423864104577e-18,-0.010153482668101788,0.0006493506371043622,0.0023478115908801556,1.2739375526704677e-18,-6.83527032379061e-05,-9.838645928539336e-05,0.0008741258643567562,-0.0005827505956403911,1.2739375526704677e-18,5.827505810884759e-05,3.5575383784680614e-20,-7.358305338648219e-20,0.0006493506371043622,-0.0001298701245104894,-6.83527032379061e-05,3.5575383784680614e-20,1.3670540283783339e-05,-2.4128223542428197e-20,0.00029515937785618007,1.0224423864104577e-18,-9.838645928539336e-05,-7.358305338648219e-20,-2.4128223542428197e-20,5.178234914637869e-06,11.0,21.0,0.08521649986505508,-0.016392698511481285,-0.009265437722206116,0.0008325008093379438,0.0005903187557123601,0.00025666033616289496,-0.016392698511481285,0.0071635437197983265,0.0005903187557123601,-0.0005550005589611828,-0.0001180637555080466,-2.2080676553429265e-19,-0.009265437722206116,0.0005903187557123601,0.0020342357456684113,-6.776263578034403e-19,-5.90318777540233e-05,-8.105063170660287e-05,0.0008325008093379438,-0.0005550005589611828,-6.776263578034403e-19,5.550005516852252e-05,5.336307567702092e-20,1.9363546891849118e-20,0.0005903187557123601,-0.0001180637555080466,-5.90318777540233e-05,5.336307567702092e-20,1.180637536890572e-05,1.873457256733379e-21,0.00025666033616289496,-2.2080676553429265e-19,-8.105063170660287e-05,1.9363546891849118e-20,1.873457256733379e-21,4.052531494380673e-06,11.0,22.0,0.08171867579221725,-0.015672074630856514,-0.008489040657877922,0.0007946598925627768,0.0005389867001213133,0.00022457778686657548,-0.015672074630856514,0.006842827890068293,0.0005389867001213133,-0.0005297732423059642,-0.00010779734293464571,-2.498999742980956e-19,-0.008489040657877922,0.0005389867001213133,0.0017741646151989698,-3.7947076036992655e-19,-5.133206650498323e-05,-6.737333751516417e-05,0.0007946598925627768,-0.0005297732423059642,-3.7947076036992655e-19,5.297732423059642e-05,-8.470329472543003e-21,1.9356399534368777e-20,0.0005389867001213133,-0.00010779734293464571,-5.133206650498323e-05,-8.470329472543003e-21,1.0266413482895587e-05,4.127528666856606e-21,0.00022457778686657548,-2.498999742980956e-19,-6.737333751516417e-05,1.9356399534368777e-20,4.127528666856606e-21,3.208254156561452e-06,11.0,23.0,0.07849650084972382,-0.015012161806225777,-0.0078063239343464375,0.0007601094548590481,0.0004940711660310626,0.00019762845477089286,-0.015012161806225777,0.006549609825015068,0.0004940711660310626,-0.0005067396559752524,-9.881422738544643e-05,-4.0926789983501213e-19,-0.0078063239343464375,0.0004940711660310626,0.0015566449146717787,-8.131516293641283e-19,-4.491555955610238e-05,-5.6465272791683674e-05,0.0007601094548590481,-0.0005067396559752524,-8.131516293641283e-19,5.0673963414737955e-05,2.710505431213761e-20,3.1012626445269704e-20,0.0004940711660310626,-9.881422738544643e-05,-4.491555955610238e-05,2.710505431213761e-20,8.983111911220476e-06,6.334462697019423e-21,0.00019762845477089286,-4.0926789983501213e-19,-5.6465272791683674e-05,3.1012626445269704e-20,6.334462697019423e-21,2.5666033707238967e-06,11.0,24.0,0.0755186453461647,-0.01440559420734644,-0.00720279710367322,0.0007284382008947432,0.00045454545761458576,0.00017482518160250038,-0.01440559420734644,0.006280497182160616,0.00045454545761458576,-0.0004856254963669926,-9.09090886125341e-05,5.274463457672179e-21,-0.00720279710367322,0.00045454545761458576,0.001373310456983745,-6.776263578034403e-20,-3.952569022658281e-05,-4.7679593990324065e-05,0.0007284382008947432,-0.0004856254963669926,-6.776263578034403e-20,4.856254963669926e-05,2.625802136488331e-20,-2.8779017052042402e-21,0.00045454545761458576,-9.09090886125341e-05,-3.952569022658281e-05,2.625802136488331e-20,7.905138772912323e-06,1.0931640120317916e-21,0.00017482518160250038,5.274463457672179e-21,-4.7679593990324065e-05,-2.8779017052042402e-21,1.0931640120317916e-21,2.0730258256662637e-06,11.0,25.0,0.07275835424661636,-0.013846153393387794,-0.006666666828095913,0.0006993007264100015,0.00041958040674217045,0.0001554001501062885,-0.013846153393387794,0.006032634060829878,0.00041958040674217045,-0.0004662004648707807,-8.391608571400866e-05,-2.187160665360649e-19,-0.006666666828095913,0.00041958040674217045,0.0012176953023299575,-8.402566836762659e-19,-3.4965036320500076e-05,-4.053916927659884e-05,0.0006993007264100015,-0.0004662004648707807,-8.402566836762659e-19,4.662004721467383e-05,7.115076756936123e-20,1.6643003171537628e-20,0.00041958040674217045,-8.391608571400866e-05,-3.4965036320500076e-05,7.115076756936123e-20,6.993006991251605e-06,3.86359989031537e-21,0.0001554001501062885,-2.187160665360649e-19,-4.053916927659884e-05,1.6643003171537628e-20,3.86359989031537e-21,1.689132091087231e-06,11.0,26.0,0.07019262760877609,-0.01332855224609375,-0.006188256200402975,0.0006724045379087329,0.0003885003970935941,0.0001387501397402957,-0.01332855224609375,0.005803598091006279,0.0003885003970935941,-0.00044826968223787844,-7.770007505314425e-05,1.5616280745842668e-19,-0.006188256200402975,0.0003885003970935941,0.0010847485391423106,5.692061405548898e-19,-3.108003147644922e-05,-3.468753493507393e-05,0.0006724045379087329,-0.00044826968223787844,5.692061405548898e-19,4.482696749619208e-05,-4.573977915173222e-20,-1.1631713607318374e-20,0.0003885003970935941,-7.770007505314425e-05,-3.108003147644922e-05,-4.573977915173222e-20,6.216006113390904e-06,-2.5914399310098202e-21,0.0001387501397402957,1.5616280745842668e-19,-3.468753493507393e-05,-1.1631713607318374e-20,-2.5914399310098202e-21,1.3875013564756955e-06,11.0,27.0,0.06780160963535309,-0.012848262675106525,-0.005759566091001034,0.0006475006230175495,0.0003607503604143858,0.0001243966689798981,-0.012848262675106525,0.00559132220223546,0.0003607503604143858,-0.00043166711111553013,-7.215006917249411e-05,-1.3945337134394339e-19,-0.005759566091001034,0.0003607503604143858,0.0009704854455776513,-1.5585406229479126e-19,-2.775002758426126e-05,-2.9855202228645794e-05,0.0006475006230175495,-0.00043166711111553013,-1.5585406229479126e-19,4.316671038395725e-05,-2.371692252312041e-20,1.0047781479933667e-20,0.0003607503604143858,-7.215006917249411e-05,-2.775002758426126e-05,-2.371692252312041e-20,5.550005425902782e-06,2.3176366859062325e-21,0.0001243966689798981,-1.3945337134394339e-19,-2.9855202228645794e-05,1.0047781479933667e-20,2.3176366859062325e-21,1.1482769650683622e-06,11.0,28.0,0.06556805223226547,-0.012401391752064228,-0.005373936612159014,0.0006243756506592035,0.00033587103825993836,0.00011195700790267438,-0.012401391752064228,0.005394031293690205,0.00033587103825993836,-0.0004162504046689719,-6.717420183122158e-05,1.93013509877208e-19,-0.005373936612159014,0.00033587103825993836,0.0008717336459085345,3.5914196963582334e-19,-2.487933488737326e-05,-2.5836232453002594e-05,0.0006243756506592035,-0.0004162504046689719,3.5914196963582334e-19,4.162504046689719e-05,-1.6940658945086007e-21,-1.2675707628826927e-20,0.00033587103825993836,-6.717420183122158e-05,-2.487933488737326e-05,-1.6940658945086007e-21,4.975866886525182e-06,-4.035119910075432e-21,0.00011195700790267438,1.93013509877208e-19,-2.5836232453002594e-05,-1.2675707628826927e-20,-4.035119910075432e-21,9.568974519424955e-07,11.0,29.0,0.06347689777612686,-0.011984567157924175,-0.005025786347687244,0.0006028454517945647,0.00031347962794825435,0.0001011224594549276,-0.011984567157924175,0.005210191942751408,0.00031347962794825435,-0.0004018969484604895,-6.269592267926782e-05,3.0982432414206957e-19,-0.005025786347687244,0.00031347962794825435,0.0007859462057240307,7.995991022080595e-19,-2.2391401216736995e-05,-2.247165684821084e-05,0.0006028454517945647,-0.0004018969484604895,7.995991022080595e-19,4.018969411845319e-05,-1.4823076576950256e-20,-2.4121354065934886e-20,0.00031347962794825435,-6.269592267926782e-05,-2.2391401216736995e-05,-1.4823076576950256e-20,4.4782805161958095e-06,-3.434649389363372e-21,0.0001011224594549276,3.0982432414206957e-19,-2.247165684821084e-05,-2.4121354065934886e-20,-3.434649389363372e-21,8.025592137528292e-07,11.0,30.0,0.061514962464571,-0.011594857089221478,-0.004710410721600056,0.0005827505956403911,0.00029325514333322644,9.164222865365446e-05,-0.011594857089221478,0.005038474220782518,0.00029325514333322644,-0.0003885003970935941,-5.865102502866648e-05,1.5600974027101316e-19,-0.004710410721600056,0.00029325514333322644,0.0007110624574124813,4.743384504624082e-19,-2.022449189098552e-05,-1.9637620425783098e-05,0.0005827505956403911,-0.0003885003970935941,4.743384504624082e-19,3.885003752657212e-05,-2.329340604949326e-20,-1.212276566211007e-20,0.00029325514333322644,-5.865102502866648e-05,-2.022449189098552e-05,-2.329340604949326e-20,4.044898560096044e-06,-1.9312750812875616e-21,9.164222865365446e-05,1.5600974027101316e-19,-1.9637620425783098e-05,-1.212276566211007e-20,-1.9312750812875616e-21,6.771593348275928e-07,11.0,31.0,0.05967062711715698,-0.011229697614908218,-0.004423820413649082,0.0005639521987177432,0.00027492668596096337,8.331111894221976e-05,-0.011229697614908218,0.004877716302871704,0.00027492668596096337,-0.0003759681130759418,-5.498533573700115e-05,1.5113917803967875e-20,-0.004423820413649082,0.00027492668596096337,0.0006454025860875845,-1.0842021724855044e-19,-1.8328446458326653e-05,-1.7236783605767414e-05,0.0005639521987177432,-0.0003759681130759418,-1.0842021724855044e-19,3.759681203518994e-05,1.5670109524204556e-20,3.7727599696154013e-22,0.00027492668596096337,-5.498533573700115e-05,-1.8328446458326653e-05,1.5670109524204556e-20,3.665689064291655e-06,-1.0763961360917076e-21,8.331111894221976e-05,1.5113917803967875e-20,-1.7236783605767414e-05,3.7727599696154013e-22,-1.0763961360917076e-21,5.745594080508454e-07,11.0,32.0,0.05793362855911255,-0.010886840522289276,-0.00416261563077569,0.0005463286652229726,0.00025826445198617876,7.596013892907649e-05,-0.010886840522289276,0.004726902116090059,0.00025826445198617876,-0.0003642191004473716,-5.1652892580023035e-05,6.29519859822829e-20,-0.00416261563077569,0.00025826445198617876,0.0005875884089618921,8.809142651444724e-20,-1.666222306084819e-05,-1.5192027603916358e-05,0.0005463286652229726,-0.0003642191004473716,8.809142651444724e-20,3.6421912227524444e-05,1.3552527156068805e-20,-5.07917734337899e-21,0.00025826445198617876,-5.1652892580023035e-05,-1.666222306084819e-05,1.3552527156068805e-20,3.3324447485938435e-06,-7.164758868385966e-22,7.596013892907649e-05,6.29519859822829e-20,-1.5192027603916358e-05,-5.07917734337899e-21,-7.164758868385966e-22,4.900654175798991e-07,11.0,33.0,0.05629486218094826,-0.01056430209428072,-0.0039238836616277695,0.0005297732423059642,0.00024307244166266173,6.94492700858973e-05,-0.01056430209428072,0.004585135728120804,0.00024307244166266173,-0.0003531821712385863,-4.86144854221493e-05,1.6605144148876842e-19,-0.0039238836616277695,0.00024307244166266173,0.0005364816170185804,5.89534931288993e-19,-1.5192027603916358e-05,-1.344179327134043e-05,0.0005297732423059642,-0.0003531821712385863,5.89534931288993e-19,3.5318218579050153e-05,-2.964615315390051e-20,-1.2545722334795327e-20,0.00024307244166266173,-4.86144854221493e-05,-1.5192027603916358e-05,-2.964615315390051e-20,3.0384053388843313e-06,-1.9173731559488072e-21,6.94492700858973e-05,1.6605144148876842e-19,-1.344179327134043e-05,-1.2545722334795327e-20,-1.9173731559488072e-21,4.2005603972938843e-07,11.0,34.0,0.05474623292684555,-0.010260327719151974,-0.00370511831715703,0.0005141916917636991,0.00022918258036952466,6.366182788042352e-05,-0.010260327719151974,0.0044516269117593765,0.00022918258036952466,-0.00034279446117579937,-4.5836517529096454e-05,-2.1009930024570585e-19,-0.00370511831715703,0.00022918258036952466,0.0004911365103907883,-6.437450399132683e-19,-1.3889853107684758e-05,-1.193659318232676e-05,0.0005141916917636991,-0.00034279446117579937,-6.437450399132683e-19,3.4279444662388414e-05,2.0328790734103208e-20,1.5058887675013225e-20,0.00022918258036952466,-4.5836517529096454e-05,-1.3889853107684758e-05,2.0328790734103208e-20,2.7779706215369515e-06,2.7460637366268493e-21,6.366182788042352e-05,-2.1009930024570585e-19,-1.193659318232676e-05,1.5058887675013225e-20,2.7460637366268493e-21,3.617149388901453e-07,11.0,35.0,0.05328050255775452,-0.009973360225558281,-0.00350415357388556,0.0004995004856027663,0.00021645022206939757,5.8500059822108597e-05,-0.009973360225558281,0.004325674381107092,0.00021645022206939757,-0.0003330003237351775,-4.329004150349647e-05,-5.328115894698403e-20,-0.00350415357388556,0.00021645022206939757,0.0004507632984314114,-2.236166980751353e-19,-1.2732365576084703e-05,-1.0636374099703971e-05,0.0004995004856027663,-0.0003330003237351775,-2.236166980751353e-19,3.330003164592199e-05,1.7364175418713157e-20,3.4405083161044335e-21,0.00021645022206939757,-4.329004150349647e-05,-1.2732365576084703e-05,1.7364175418713157e-20,2.5464730697422056e-06,8.233976143048222e-22,5.8500059822108597e-05,-5.328115894698403e-20,-1.0636374099703971e-05,3.4405083161044335e-21,8.233976143048222e-22,3.128345440472913e-07,11.0,36.0,0.05189118906855583,-0.009702010080218315,-0.0033191086258739233,0.0004856254963669926,0.00020475020573940128,5.388163117459044e-05,-0.009702010080218315,0.004206654150038958,0.00020475020573940128,-0.00032375031150877476,-4.095004260307178e-05,-8.977219935801817e-20,-0.0033191086258739233,0.00020475020573940128,0.0004146984138060361,-2.236166980751353e-19,-1.1700011782522779e-05,-9.50852336245589e-06,0.0004856254963669926,-0.00032375031150877476,-2.236166980751353e-19,3.237503187847324e-05,4.235164736271502e-21,5.563697579388359e-21,0.00020475020573940128,-4.095004260307178e-05,-1.1700011782522779e-05,4.235164736271502e-21,2.3400023110298207e-06,1.4425972327633158e-21,5.388163117459044e-05,-8.977219935801817e-20,-9.50852336245589e-06,5.563697579388359e-21,1.4425972327633158e-21,2.716720928219729e-07,11.0,37.0,0.050572469830513,-0.009445035830140114,-0.0031483452767133713,0.0004725004837382585,0.00019397387222852558,4.973689283360727e-05,-0.009445035830140114,0.0040940092876553535,0.00019397387222852558,-0.0003150003030896187,-3.87947766284924e-05,8.765891445165857e-20,-0.0031483452767133713,0.00019397387222852558,0.00038238195702433586,3.3203691532368573e-19,-1.0776326234918088e-05,-8.526324563717935e-06,0.0004725004837382585,-0.0003150003030896187,3.3203691532368573e-19,3.150003249174915e-05,-1.3129010682441655e-20,-7.029923682752617e-21,0.00019397387222852558,-3.87947766284924e-05,-1.0776326234918088e-05,-1.3129010682441655e-20,2.1552652924583526e-06,-8.203724273966083e-22,4.973689283360727e-05,8.765891445165857e-20,-8.526324563717935e-06,-7.029923682752617e-21,-8.203724273966083e-22,2.3684233951826172e-07,11.0,38.0,0.049319103360176086,-0.009201324544847012,-0.002990430686622858,0.00046006625052541494,0.00018402650312054902,4.6006625780137256e-05,-0.009201324544847012,0.003987240605056286,0.00018402650312054902,-0.00030671083368360996,-3.6805300624109805e-05,2.6459827584952107e-21,-0.002990430686622858,0.00018402650312054902,0.00035333915730006993,6.437450399132683e-20,-9.947378202923574e-06,-7.667770660191309e-06,0.00046006625052541494,-0.00030671083368360996,6.437450399132683e-20,3.0671082640765235e-05,-6.988021814847978e-21,-6.465318691541994e-22,0.00018402650312054902,-3.6805300624109805e-05,-9.947378202923574e-06,-6.988021814847978e-21,1.98947577700892e-06,1.2571832646259733e-22,4.6006625780137256e-05,2.6459827584952107e-21,-7.667770660191309e-06,-6.465318691541994e-22,1.2571832646259733e-22,2.072370506311927e-07,11.0,39.0,0.04812634363770485,-0.008969875983893871,-0.0028441071044653654,0.00044826968223787844,0.00017482518160250038,4.264028757461347e-05,-0.008969875983893871,0.003885900368914008,0.00017482518160250038,-0.0002988464548252523,-3.4965036320500076e-05,-1.1527737650555312e-19,-0.0028441071044653654,0.00017482518160250038,0.00032716564601287246,-4.54009659728305e-19,-9.201325156027451e-06,-6.914640835020691e-06,0.00044826968223787844,-0.0002988464548252523,-4.54009659728305e-19,2.9884644391131587e-05,2.4352197233561135e-20,8.65159754117219e-21,0.00017482518160250038,-3.4965036320500076e-05,-9.201325156027451e-06,2.4352197233561135e-20,1.8402649857307551e-06,1.213400853297483e-21,4.264028757461347e-05,-1.1527737650555312e-19,-6.914640835020691e-06,8.65159754117219e-21,1.213400853297483e-21,1.81964239232002e-07,11.0,40.0,0.04698989912867546,-0.008749786764383316,-0.002708267420530319,0.0004370629321783781,0.00016629711899440736,3.959455352742225e-05,-0.008749786764383316,0.0037895843852311373,0.00016629711899440736,-0.00029137529782019556,-3.325942452647723e-05,-6.617677544971502e-20,-0.002708267420530319,0.00016629711899440736,0.0003035154950339347,-2.1345230270808369e-19,-8.528057151124813e-06,-6.2517715377907734e-06,0.0004370629321783781,-0.00029137529782019556,-2.1345230270808369e-19,2.9137529054423794e-05,0.0,4.895986322163688e-21,0.00016629711899440736,-3.325942452647723e-05,-8.528057151124813e-06,0.0,1.70561145296233e-06,6.904057126170485e-22,3.959455352742225e-05,-6.617677544971502e-20,-6.2517715377907734e-06,4.895986322163688e-21,6.904057126170485e-22,1.6030182337090082e-07,11.0,41.0,0.04590588063001633,-0.008540240116417408,-0.0025819330476224422,0.00042640286847017705,0.000158378214109689,3.683214163174853e-05,-0.008540240116417408,0.0036979280412197113,0.000158378214109689,-0.00028426857898011804,-3.167564136674628e-05,4.295357312353793e-20,-0.0025819330476224422,0.000158378214109689,0.0002820916997734457,2.168404344971009e-19,-7.91891034168657e-06,-5.666483048116788e-06,0.00042640286847017705,-0.00028426857898011804,2.168404344971009e-19,2.8426857170416042e-05,-1.207021949837378e-20,-3.638437530948671e-21,0.000158378214109689,-3.167564136674628e-05,-7.91891034168657e-06,-1.207021949837378e-20,1.5837820228625787e-06,-2.8953378788596785e-22,3.683214163174853e-05,4.295357312353793e-20,-5.666483048116788e-06,-3.638437530948671e-21,-2.8953378788596785e-22,1.4166208472943254e-07,11.0,42.0,0.04487073794007301,-0.008340496569871902,-0.0024642376229166985,0.0004162504046689719,0.00015101177268661559,3.4320859413128346e-05,-0.008340496569871902,0.003610601183027029,0.00015101177268661559,-0.0002775002794805914,-3.020235635631252e-05,4.689489810307131e-20,-0.0024642376229166985,0.00015101177268661559,0.0002626382920425385,1.7957098481791167e-19,-7.366428235400235e-06,-5.148128821019782e-06,0.0004162504046689719,-0.0002775002794805914,1.7957098481791167e-19,2.775002758426126e-05,-4.235164736271502e-22,-3.9308450696925995e-21,0.00015101177268661559,-3.020235635631252e-05,-7.366428235400235e-06,-4.235164736271502e-22,1.4732856925547821e-06,-2.0389816559347224e-22,3.4320859413128346e-05,4.689489810307131e-20,-5.148128821019782e-06,-3.9308450696925995e-21,-2.0389816559347224e-22,1.2556411377318e-07,11.0,43.0,0.043881241232156754,-0.008149883709847927,-0.002354410942643881,0.0004065701796207577,0.00014414760516956449,3.2032799936132506e-05,-0.008149883709847927,0.003527304157614708,0.00014414760516956449,-0.0002710467961151153,-2.8829521397710778e-05,2.3088633611446636e-20,-0.002354410942643881,0.00014414760516956449,0.00024493373348377645,1.0164395367051604e-19,-6.864171609777259e-06,-4.687727141572395e-06,0.0004065701796207577,-0.0002710467961151153,1.0164395367051604e-19,2.7104677428724244e-05,-6.564505341220828e-21,-1.2608941672983288e-21,0.00014414760516956449,-2.8829521397710778e-05,-6.864171609777259e-06,-6.564505341220828e-21,1.3728343901675544e-06,-3.8799516515942808e-22,3.2032799936132506e-05,2.3088633611446636e-20,-4.687727141572395e-06,-1.2608941672983288e-21,-3.8799516515942808e-22,1.1161255031311157e-07,11.0,44.0,0.04293443635106087,-0.00796778965741396,-0.002251766622066498,0.0003973299462813884,0.00013774105173069984,2.9943705158075318e-05,-0.00796778965741396,0.0034477643202990294,0.00013774105173069984,-0.0002648866211529821,-2.7548208890948445e-05,3.8057617093633003e-20,-0.002251766622066498,0.00013774105173069984,0.00022878582240082324,1.5331296345302836e-19,-6.406560260074912e-06,-4.277672360331053e-06,0.0003973299462813884,-0.0002648866211529821,1.5331296345302836e-19,2.648866211529821e-05,-4.870439446712227e-21,-2.967373930421173e-21,0.00013774105173069984,-2.7548208890948445e-05,-6.406560260074912e-06,-4.870439446712227e-21,1.2813120520149823e-06,-2.981408535853298e-22,2.9943705158075318e-05,3.8057617093633003e-20,-4.277672360331053e-06,-2.967373930421173e-21,-2.981408535853298e-22,9.948075074817098e-08,11.0,45.0,0.04202761873602867,-0.00779365561902523,-0.002155692083761096,0.0003885003970935941,0.00013175231288187206,2.8032405680278316e-05,-0.00779365561902523,0.003371733007952571,0.00013175231288187206,-0.0002590002550277859,-2.6350460757385008e-05,-1.1862825770202416e-20,-0.002155692083761096,0.00013175231288187206,0.0002140271244570613,-1.4823076576950256e-19,-5.988741122564534e-06,-3.9114984247135e-06,0.0003885003970935941,-0.0002590002550277859,-1.4823076576950256e-19,2.590002623037435e-05,1.588186776101813e-20,1.0886877249547545e-21,0.00013175231288187206,-2.6350460757385008e-05,-5.988741122564534e-06,1.588186776101813e-20,1.1977482472502743e-06,3.384310155517302e-23,2.8032405680278316e-05,-1.1862825770202416e-20,-3.9114984247135e-06,1.0886877249547545e-21,3.384310155517302e-23,8.889769276265724e-08,11.0,46.0,0.04115831106901169,-0.007626970764249563,-0.0020656378474086523,0.00038005472742952406,0.00012614582374226302,2.6280380552634597e-05,-0.007626970764249563,0.003298982745036483,0.00012614582374226302,-0.0002533698279876262,-2.5229164748452604e-05,1.9307017498034215e-20,-0.0020656378474086523,0.00012614582374226302,0.00020051133469678462,1.1689054672109345e-19,-5.606480954156723e-06,-3.583688112485106e-06,0.00038005472742952406,-0.0002533698279876262,1.1689054672109345e-19,2.5336981707368977e-05,-6.3527471044072525e-21,-1.9357761070425865e-21,0.00012614582374226302,-2.5229164748452604e-05,-5.606480954156723e-06,-6.3527471044072525e-21,1.1212962363060797e-06,2.872916243122763e-23,2.6280380552634597e-05,1.9307017498034215e-20,-3.583688112485106e-06,-1.9357761070425865e-21,2.872916243122763e-23,7.963751613715431e-08,11.0,47.0,0.04032422602176666,-0.007467266637831926,-0.0019811117090284824,0.00037196846096776426,0.00012088975199731067,2.4671377104823478e-05,-0.007467266637831926,0.0032293060794472694,0.00012088975199731067,-0.0002479789836797863,-2.417794894427061e-05,3.175228424043123e-20,-0.0019811117090284824,0.00012088975199731067,0.0001881103089544922,1.3044307387716225e-19,-5.256075837678509e-06,-3.2895170534175122e-06,0.00037196846096776426,-0.0002479789836797863,1.3044307387716225e-19,2.479789691278711e-05,-5.505714157152952e-21,-2.3340512531349734e-21,0.00012088975199731067,-2.417794894427061e-05,-5.256075837678509e-06,-5.505714157152952e-21,1.0512152357478044e-06,-2.4847636718137505e-22,2.4671377104823478e-05,3.175228424043123e-20,-3.2895170534175122e-06,-2.3340512531349734e-21,-2.4847636718137505e-22,7.151123782023205e-08,11.0,48.0,0.03952327370643616,-0.007314114365726709,-0.0019016697769984603,0.0003642191004473716,0.00011595547402976081,2.319109444215428e-05,-0.007314114365726709,0.0031625120900571346,0.00011595547402976081,-0.0002428127481834963,-2.319109444215428e-05,-1.0166987778556327e-21,-0.0019016697769984603,0.00011595547402976081,0.00017671141540631652,-1.6940658945086007e-20,-4.934275239065755e-06,-3.0249254905356793e-06,0.0003642191004473716,-0.0002428127481834963,-1.6940658945086007e-20,2.428127481834963e-05,-8.470329472543003e-22,3.0801618042834646e-22,0.00011595547402976081,-2.319109444215428e-05,-4.934275239065755e-06,-8.470329472543003e-22,9.868550705505186e-07,-1.0078021812713929e-22,2.319109444215428e-05,-1.0166987778556327e-21,-3.0249254905356793e-06,3.0801618042834646e-22,-1.0078021812713929e-22,6.436011545929432e-08,11.0,49.0,0.03875351697206497,-0.007167118601500988,-0.0018269126303493977,0.0003567860694602132,0.00011131725477753207,2.1826912416145205e-05,-0.007167118601500988,0.003098425455391407,0.00011131725477753207,-0.00023785738449078053,-2.2263451683102176e-05,2.4295826167285353e-20,-0.0018269126303493977,0.00011131725477753207,0.0001662154245423153,1.2790197503539935e-19,-4.638218797481386e-06,-2.7864143703482114e-06,0.0003567860694602132,-0.00023785738449078053,1.2790197503539935e-19,2.3785738449078053e-05,-4.658681209898652e-21,-1.9016577340522584e-21,0.00011131725477753207,-2.2263451683102176e-05,-4.638218797481386e-06,-4.658681209898652e-21,9.276437822336447e-07,-2.0337583870002006e-22,2.1826912416145205e-05,2.4295826167285353e-20,-2.7864143703482114e-06,-1.9016577340522584e-21,-2.0337583870002006e-22,5.8050300566492297e-08,11.0,50.0,0.038013163954019547,-0.007025915198028088,-0.001756478799507022,0.00034965036320500076,0.00010695186938391998,2.056766788882669e-05,-0.007025915198028088,0.003036884590983391,0.00010695186938391998,-0.00023310023243539035,-2.139037496817764e-05,1.8218307255833782e-20,-0.001756478799507022,0.00010695186938391998,0.00015653464652132243,7.115076756936123e-20,-4.3653826651279815e-06,-2.5709584861033363e-06,0.00034965036320500076,-0.00023310023243539035,7.115076756936123e-20,2.3310023607336916e-05,6.352747104407253e-22,-1.517919136119658e-21,0.00010695186938391998,-2.139037496817764e-05,-4.3653826651279815e-06,6.352747104407253e-22,8.730764875508612e-07,-1.0603666339589104e-22,2.056766788882669e-05,1.8218307255833782e-20,-2.5709584861033363e-06,-1.517919136119658e-21,-1.0603666339589104e-22,5.246853973517318e-08,11.0,51.0,0.03730056434869766,-0.006890168879181147,-0.001690041390247643,0.00034279446117579937,0.00010283834126312286,1.9403460100875236e-05,-0.006890168879181147,0.0029777411837130785,0.00010283834126312286,-0.00022852963593322784,-2.056766788882669e-05,1.5710080765484194e-20,-0.001690041390247643,0.00010283834126312286,0.00014759143232367933,8.724439356719293e-20,-4.113533577765338e-06,-2.3759339455864392e-06,0.00034279446117579937,-0.00022852963593322784,8.724439356719293e-20,2.2852964320918545e-05,-5.505714157152952e-21,-1.1233940706876236e-21,0.00010283834126312286,-2.056766788882669e-05,-4.113533577765338e-06,-5.505714157152952e-21,8.227066814470163e-07,-1.4955242711664219e-22,1.9403460100875236e-05,1.5710080765484194e-20,-2.3759339455864392e-06,-1.1233940706876236e-21,-1.4955242711664219e-22,4.751867876962024e-08,11.0,52.0,0.03661418706178665,-0.0067595685832202435,-0.0016273035435006022,0.00033620226895436645,9.89576437859796e-05,1.832549060054589e-05,-0.0067595685832202435,0.0029208576306700706,9.89576437859796e-05,-0.00022413484111893922,-1.979152875719592e-05,-1.9787838847300536e-20,-0.0016273035435006022,9.89576437859796e-05,0.00013931684952694923,-9.825582188149884e-20,-3.880692020175047e-06,-2.1990588265907718e-06,0.00033620226895436645,-0.00022413484111893922,-9.825582188149884e-20,2.241348374809604e-05,3.917527381051139e-21,1.4110944953427599e-21,9.89576437859796e-05,-1.979152875719592e-05,-3.880692020175047e-06,3.917527381051139e-21,7.761383926663257e-07,1.801226173512565e-22,1.832549060054589e-05,-1.9787838847300536e-20,-2.1990588265907718e-06,1.4110944953427599e-21,1.801226173512565e-22,4.3118799197827684e-08,11.0,53.0,0.0359526127576828,-0.0066338274627923965,-0.0015679955249652267,0.0003298588271718472,9.529254748485982e-05,1.7325917724519968e-05,-0.0066338274627923965,0.0028661065734922886,9.529254748485982e-05,-0.00021990587993059307,-1.9058508769376203e-05,-5.2024712793987895e-21,-0.0015679955249652267,9.529254748485982e-05,0.0001316495327046141,-2.286988957586611e-20,-3.6650978927355027e-06,-2.0383433820825303e-06,0.0003298588271718472,-0.00021990587993059307,-2.286988957586611e-20,2.199058872065507e-05,-6.352747104407253e-22,4.755685706230575e-22,9.529254748485982e-05,-1.9058508769376203e-05,-3.6650978927355027e-06,-6.352747104407253e-22,7.330195899157843e-07,2.615758474301205e-23,1.7325917724519968e-05,-5.2024712793987895e-21,-2.0383433820825303e-06,4.755685706230575e-22,2.615758474301205e-23,3.919890900760947e-08,11.0,54.0,0.035314518958330154,-0.006512679159641266,-0.001511871931143105,0.00032375031150877476,9.182736539514735e-05,1.6397743820562027e-05,-0.006512679159641266,0.0028133706655353308,9.182736539514735e-05,-0.00021583355555776507,-1.8365473806625232e-05,2.3276368067579228e-20,-0.001511871931143105,9.182736539514735e-05,0.00012453479575924575,6.945670167485263e-20,-3.465183681328199e-06,-1.8920472939498723e-06,0.00032375031150877476,-0.00021583355555776507,6.945670167485263e-20,2.1583355191978626e-05,3.8116482626443515e-21,-1.7020745618796982e-21,9.182736539514735e-05,-1.8365473806625232e-05,-3.465183681328199e-06,3.8116482626443515e-21,6.93036724896956e-07,-1.9434488332640302e-22,1.6397743820562027e-05,2.3276368067579228e-20,-1.8920472939498723e-06,-1.7020745618796982e-21,-1.9434488332640302e-22,3.569900641764434e-08,11.0,55.0,0.03469867631793022,-0.006395876873284578,-0.0014587087789550424,0.00031786394538357854,8.854781481204554e-05,1.5534704289166257e-05,-0.006395876873284578,0.00276254047639668,8.854781481204554e-05,-0.0002119092969223857,-1.7709562598611228e-05,-3.096096966225062e-20,-0.0014587087789550424,8.854781481204554e-05,0.00011792371515184641,-1.3213713977167085e-19,-3.2795487641124055e-06,-1.7586457943252753e-06,0.00031786394538357854,-0.0002119092969223857,-1.3213713977167085e-19,2.119093005603645e-05,-2.0117032497289633e-21,2.5010740841594532e-21,8.854781481204554e-05,-1.7709562598611228e-05,-3.2795487641124055e-06,-2.0117032497289633e-21,6.559097300851136e-07,1.7509082073564997e-22,1.5534704289166257e-05,-3.096096966225062e-20,-1.7586457943252753e-06,2.5010740841594532e-21,1.7509082073564997e-22,3.2567513130743464e-08,11.0,56.0,0.034103941172361374,-0.006283190567046404,-0.001408301293849945,0.00031218782532960176,8.544087177142501e-05,1.4731185729033314e-05,-0.006283190567046404,0.002713514491915703,8.544087177142501e-05,-0.00020812520233448595,-1.7088175809476525e-05,-1.0925023483211059e-20,-0.001408301293849945,8.544087177142501e-05,0.0001117724968935363,2.710505431213761e-20,-3.1069409942574566e-06,-1.636798401705164e-06,0.00031218782532960176,-0.00020812520233448595,2.710505431213761e-20,2.0812520233448595e-05,-1.334076891925523e-20,8.370372591698087e-22,8.544087177142501e-05,-1.7088175809476525e-05,-3.1069409942574566e-06,-1.334076891925523e-20,6.213881533767562e-07,5.55024862429227e-23,1.4731185729033314e-05,-1.0925023483211059e-20,-1.636798401705164e-06,8.370372591698087e-22,5.55024862429227e-23,2.9759970487930332e-08,11.0,57.0,0.03352924808859825,-0.006174406502395868,-0.0013604623964056373,0.00030671083368360996,8.249464008258656e-05,1.3982142263557762e-05,-0.006174406502395868,0.0026661984156817198,8.249464008258656e-05,-0.00020447389397304505,-1.649892692512367e-05,-1.5256209025198335e-20,-0.0013604623964056373,8.249464008258656e-05,0.0001060418362612836,-7.962109704190423e-20,-2.9462371458066627e-06,-1.525324591966637e-06,0.00030671083368360996,-0.00020447389397304505,-7.962109704190423e-20,2.0447389033506624e-05,2.117582368135751e-21,1.1645845753823708e-21,8.249464008258656e-05,-1.649892692512367e-05,-2.9462371458066627e-06,2.117582368135751e-21,5.89247406423965e-07,1.0814500460562093e-22,1.3982142263557762e-05,-1.5256209025198335e-20,-1.525324591966637e-06,1.1645845753823708e-21,1.0814500460562093e-22,2.7237938127200323e-08,11.0,58.0,0.032973602414131165,-0.006069325376302004,-0.001315020490437746,0.00030142272589728236,7.969820580910891e-05,1.3283034604683053e-05,-0.006069325376302004,0.0026205044705420732,7.969820580910891e-05,-0.00020094847423024476,-1.5939642253215425e-05,3.0473863679033456e-20,-0.001315020490437746,7.969820580910891e-05,0.00010069639392895624,1.5585406229479126e-19,-2.796428361762082e-06,-1.4231823115551379e-06,0.00030142272589728236,-0.00020094847423024476,1.5585406229479126e-19,2.0094847059226595e-05,-4.446922973085077e-21,-2.112286271562459e-21,7.969820580910891e-05,-1.5939642253215425e-05,-2.796428361762082e-06,-4.446922973085077e-21,5.59285695089784e-07,-2.547880622167101e-22,1.3283034604683053e-05,3.0473863679033456e-20,-1.4231823115551379e-06,-2.112286271562459e-21,-2.547880622167101e-22,2.4968111134171522e-08,11.0,59.0,0.0324360691010952,-0.0059677609242498875,-0.0012718179496005177,0.0002963138686027378,7.704160088906065e-05,1.262977093574591e-05,-0.0059677609242498875,0.0025763502344489098,7.704160088906065e-05,-0.00019754256936721504,-1.540832090540789e-05,1.1271357704897189e-20,-0.0012718179496005177,7.704160088906065e-05,9.570432303007692e-05,2.583450489125616e-20,-2.6566069664113456e-06,-1.3294495602167444e-06,0.0002963138686027378,-0.00019754256936721504,2.583450489125616e-20,1.9754257664317265e-05,2.4352197233561135e-21,-7.288868272011598e-22,7.704160088906065e-05,-1.540832090540789e-05,-2.6566069664113456e-06,2.4352197233561135e-21,5.313214046509529e-07,-1.1327609672108944e-22,1.262977093574591e-05,1.1271357704897189e-20,-1.3294495602167444e-06,-7.288868272011598e-22,-1.1327609672108944e-22,2.2921543774145903e-08,11.0,60.0,0.031915780156850815,-0.005869540385901928,-0.0012307100696489215,0.00029137529782019556,7.451565033989027e-05,1.2018653251288924e-05,-0.005869540385901928,0.002533659338951111,7.451565033989027e-05,-0.00019425019854679704,-1.4903129340382293e-05,-3.382557003663313e-21,-0.0012307100696489215,7.451565033989027e-05,9.103690535994247e-05,-5.421010862427522e-20,-2.525954187149182e-06,-1.2433089295882382e-06,0.00029137529782019556,-0.00019425019854679704,-5.421010862427522e-20,1.942501876328606e-05,3.282252670610414e-21,4.507423480075088e-22,7.451565033989027e-05,-1.4903129340382293e-05,-2.525954187149182e-06,3.282252670610414e-21,5.051908260611526e-07,-3.6405460614850183e-23,1.2018653251288924e-05,-3.382557003663313e-21,-1.2433089295882382e-06,4.507423480075088e-22,-3.6405460614850183e-23,2.1073033096286053e-08,11.0,61.0,0.03141191601753235,-0.00577450031414628,-0.0011915635550394654,0.0002865986607503146,7.211192132672295e-05,1.1446336429798976e-05,-0.00577450031414628,0.0024923605378717184,7.211192132672295e-05,-0.00019106575928162783,-1.4422383173950948e-05,2.7473747855860032e-21,-0.0011915635550394654,7.211192132672295e-05,8.666816574987024e-05,3.8116482626443515e-21,-2.4037306047830498e-06,-1.1640341881502536e-06,0.0002865986607503146,-0.00019106575928162783,3.8116482626443515e-21,1.9106577383354306e-05,3.3881317890172014e-21,-3.6673853182911718e-22,7.211192132672295e-05,-1.4422383173950948e-05,-2.4037306047830498e-06,3.3881317890172014e-21,4.807461095879262e-07,3.3340313168621354e-23,1.1446336429798976e-05,2.7473747855860032e-21,-1.1640341881502536e-06,-3.6673853182911718e-22,3.3340313168621354e-23,1.9400570039351805e-08,11.0,62.0,0.030923712998628616,-0.0056824893690645695,-0.001154255704022944,0.0002819760993588716,6.982265040278435e-05,1.0909789125435054e-05,-0.0056824893690645695,0.002452386310324073,6.982265040278435e-05,-0.0001879840565379709,-1.3964529898657929e-05,2.841110141352495e-21,-0.001154255704022944,6.982265040278435e-05,8.257458102889359e-05,3.049318610115481e-20,-2.289267285959795e-06,-1.0909789125435054e-06,0.0002819760993588716,-0.0001879840565379709,3.049318610115481e-20,1.879840601759497e-05,-4.7645603283054394e-21,-1.17765472578266e-22,6.982265040278435e-05,-1.3964529898657929e-05,-2.289267285959795e-06,-4.7645603283054394e-21,4.5785344582327525e-07,-5.495413325048547e-23,1.0909789125435054e-05,2.841110141352495e-21,-1.0909789125435054e-06,-1.17765472578266e-22,-5.495413325048547e-23,1.78849006715609e-08,11.0,63.0,0.030450452119112015,-0.005593365058302879,-0.0011186730116605759,0.0002775002794805914,6.764069257769734e-05,1.0406260116724297e-05,-0.005593365058302879,0.002413674257695675,6.764069257769734e-05,-0.00018500018632039428,-1.3528138879337348e-05,-2.6498496663001827e-20,-0.0011186730116605759,6.764069257769734e-05,7.873483264120296e-05,-1.342547221398066e-19,-2.181957825087011e-06,-1.0235665968139074e-06,0.0002775002794805914,-0.00018500018632039428,-1.342547221398066e-19,1.850001899583731e-05,1.0587911840678754e-21,1.9845870333253176e-21,6.764069257769734e-05,-1.3528138879337348e-05,-2.181957825087011e-06,1.0587911840678754e-21,4.363915593330603e-07,1.6553862394118633e-22,1.0406260116724297e-05,-2.6498496663001827e-20,-1.0235665968139074e-06,1.9845870333253176e-21,1.6553862394118633e-22,1.6509138944797996e-08,11.0,64.0,0.029991457238793373,-0.005506992805749178,-0.0010847107041627169,0.0002731643326114863,6.555944128194824e-05,9.93324829323683e-06,-0.005506992805749178,0.00237616547383368,6.555944128194824e-05,-0.0001821095502236858,-1.3111887710692827e-05,1.287408880417187e-22,-0.0010847107041627169,6.555944128194824e-05,7.512953743571416e-05,-2.668153783851046e-20,-2.0812519778701244e-06,-9.612821258997428e-07,0.0002731643326114863,-0.0001821095502236858,-2.668153783851046e-20,1.8210956113762222e-05,6.45862622281404e-21,-2.160243208583634e-22,6.555944128194824e-05,-1.3111887710692827e-05,-2.0812519778701244e-06,6.45862622281404e-21,4.162504296800762e-07,5.200160358708599e-23,9.93324829323683e-06,1.287408880417187e-22,-9.612821258997428e-07,-2.160243208583634e-22,5.200160358708599e-23,1.5258446950383586e-08,12.0,3.0,0.343559205532074,-0.08241758495569229,-0.23076923191547394,0.004578754771500826,0.01923076994717121,0.0416666679084301,-0.08241758495569229,0.03604728728532791,0.01923076994717121,-0.002747252816334367,-0.003496503457427025,5.4643789493269423e-17,-0.23076923191547394,0.01923076994717121,0.6474359035491943,2.116658200596376e-18,-0.01923076994717121,-0.25,0.004578754771500826,-0.002747252816334367,2.116658200596376e-18,0.00024975024280138314,2.8566470489486844e-19,-1.804913680059841e-18,0.01923076994717121,-0.003496503457427025,-0.01923076994717121,2.8566470489486844e-19,0.003496503457427025,-3.0357660829594124e-17,0.0416666679084301,5.4643789493269423e-17,-0.25,-1.804913680059841e-18,-3.0357660829594124e-17,0.125,12.0,4.0,0.29020145535469055,-0.06469780206680298,-0.15096153318881989,0.0034340659622102976,0.011538461782038212,0.02083333395421505,-0.06469780206680298,0.02755993977189064,0.011538461782038212,-0.002060439670458436,-0.0020979021210223436,-1.3877787807814457e-17,-0.15096153318881989,0.011538461782038212,0.24647435545921326,-2.648389130294704e-18,-0.007692307699471712,-0.0625,0.0034340659622102976,-0.002060439670458436,-2.648389130294704e-18,0.00018731268937699497,1.0842021724855044e-19,6.65955925034871e-19,0.011538461782038212,-0.0020979021210223436,-0.007692307699471712,1.0842021724855044e-19,0.001398601452820003,3.2078229590928924e-18,0.02083333395421505,-1.3877787807814457e-17,-0.0625,6.65955925034871e-19,3.2078229590928924e-18,0.02083333395421505,12.0,5.0,0.2510989010334015,-0.05329670384526253,-0.10659340769052505,0.002747252816334367,0.007692307699471712,0.011904762126505375,-0.05329670384526253,0.022327672690153122,0.007692307699471712,-0.0016483516665175557,-0.001398601452820003,-5.637851296924623e-18,-0.10659340769052505,0.007692307699471712,0.12472527474164963,-9.309481456511205e-19,-0.003846153849735856,-0.02380952425301075,0.002747252816334367,-0.0016483516665175557,-9.309481456511205e-19,0.00014985015150159597,-8.999800674054807e-20,3.60132595967538e-19,0.007692307699471712,-0.001398601452820003,-0.003846153849735856,-8.999800674054807e-20,0.0006993007264100015,4.336808689942018e-19,0.011904762126505375,-5.637851296924623e-18,-0.02380952425301075,3.60132595967538e-19,4.336808689942018e-19,0.0059523810632526875,12.0,6.0,0.2212301641702652,-0.04532967135310173,-0.07932692021131516,0.002289377385750413,0.005494505632668734,0.0074404762126505375,-0.04532967135310173,0.018772894516587257,0.005494505632668734,-0.0013736264081671834,-0.0009990009712055326,-3.0357660829594124e-18,-0.07932692021131516,0.005494505632668734,0.0726533904671669,-1.3260710243669286e-18,-0.002197802299633622,-0.01116071455180645,0.002289377385750413,-0.0013736264081671834,-1.3260710243669286e-18,0.00012487512140069157,4.4506349460839085e-20,1.9329921030596557e-19,0.005494505632668734,-0.0009990009712055326,-0.002197802299633622,4.4506349460839085e-20,0.0003996003943029791,-1.6263032587282567e-19,0.0074404762126505375,-3.0357660829594124e-18,-0.01116071455180645,1.9329921030596557e-19,-1.6263032587282567e-19,0.0022321429569274187,12.0,7.0,0.19768227636814117,-0.039442699402570724,-0.061355311423540115,0.0019623234402388334,0.004120879340916872,0.004960317630320787,-0.039442699402570724,0.016198087483644485,0.004120879340916872,-0.0011773940641433,-0.0007492507575079799,-6.505213034913027e-19,-0.061355311423540115,0.004120879340916872,0.04624542221426964,-1.4825253095937036e-18,-0.0013736264081671834,-0.0059523810632526875,0.0019623234402388334,-0.0011773940641433,-1.4825253095937036e-18,0.00010703581938287243,9.274203625102496e-20,1.1996429817855221e-19,0.004120879340916872,-0.0007492507575079799,-0.0013736264081671834,9.274203625102496e-20,0.00024975024280138314,-2.981555974335137e-19,0.004960317630320787,-6.505213034913027e-19,-0.0059523810632526875,1.1996429817855221e-19,-2.981555974335137e-19,0.0009920635493472219,12.0,8.0,0.1786477416753769,-0.03491300344467163,-0.048878204077482224,0.0017170329811051488,0.0032051282469183207,0.0034722222480922937,-0.03491300344467163,0.014246170409023762,0.0032051282469183207,-0.001030219835229218,-0.0005827505956403911,2.3731381640227836e-18,-0.048878204077482224,0.0032051282469183207,0.03132631257176399,1.9173825328165324e-18,-0.0009157509193755686,-0.0034722222480922937,0.0017170329811051488,-0.001030219835229218,1.9173825328165324e-18,9.365634468849748e-05,-1.0842021724855044e-19,-1.8485231330921254e-19,0.0032051282469183207,-0.0005827505956403911,-0.0009157509193755686,-1.0842021724855044e-19,0.00016650016186758876,-9.707504740647353e-20,0.0034722222480922937,2.3731381640227836e-18,-0.0034722222480922937,-1.8485231330921254e-19,-9.707504740647353e-20,0.0004960317746736109,12.0,9.0,0.16294631361961365,-0.03131868317723274,-0.03986014053225517,0.001526251551695168,0.0025641026441007853,0.0025252525229007006,-0.03131868317723274,0.01271506305783987,0.0025641026441007853,-0.0009157509193755686,-0.0004662004648707807,1.2245830976394553e-18,-0.03986014053225517,0.0025641026441007853,0.022230546921491623,1.4242465063314332e-18,-0.0006410256610251963,-0.0021645021624863148,0.001526251551695168,-0.0009157509193755686,1.4242465063314332e-18,8.325008093379438e-05,-6.776263578034403e-20,-1.3059696824518833e-19,0.0025641026441007853,-0.0004662004648707807,-0.0006410256610251963,-6.776263578034403e-20,0.00011655011621769518,5.2995868877358465e-20,0.0025252525229007006,1.2245830976394553e-18,-0.0021645021624863148,-1.3059696824518833e-19,5.2995868877358465e-20,0.00027056277031078935,12.0,10.0,0.14977522194385529,-0.0283966027200222,-0.03312937170267105,0.0013736264081671834,0.0020979021210223436,0.0018939394503831863,-0.0283966027200222,0.011481700465083122,0.0020979021210223436,-0.0008241758332587779,-0.0003814367519225925,1.6805133673525319e-18,-0.03312937170267105,0.0020979021210223436,0.01635829359292984,8.846713194866882e-19,-0.0004662004648707807,-0.0014204545877873898,0.0013736264081671834,-0.0008241758332587779,8.846713194866882e-19,7.492507575079799e-05,1.8925125011324674e-21,-9.884231878519308e-20,0.0020979021210223436,-0.0003814367519225925,-0.0004662004648707807,1.8925125011324674e-21,8.47637202241458e-05,-1.4230153513872246e-19,0.0018939394503831863,1.6805133673525319e-18,-0.0014204545877873898,-9.884231878519308e-20,-1.4230153513872246e-19,0.00015782828268129379,12.0,11.0,0.13856975734233856,-0.025974025949835777,-0.0279720276594162,0.001248751301318407,0.0017482517287135124,0.0014568764017894864,-0.025974025949835777,0.010466805659234524,0.0017482517287135124,-0.0007492507575079799,-0.00031786394538357854,8.673617379884035e-19,-0.0279720276594162,0.0017482517287135124,0.012393162585794926,1.0837772084458053e-18,-0.00034965036320500076,-0.0009712509927339852,0.001248751301318407,-0.0007492507575079799,1.0837772084458053e-18,6.81137025821954e-05,-6.78462391833487e-20,-6.968892616947835e-20,0.0017482517287135124,-0.00031786394538357854,-0.00034965036320500076,-6.78462391833487e-20,6.357279198709875e-05,-1.0164395367051604e-20,0.0014568764017894864,8.673617379884035e-19,-0.0009712509927339852,-6.968892616947835e-20,-1.0164395367051604e-20,9.712509927339852e-05,12.0,12.0,0.1289212852716446,-0.023932797834277153,-0.023932797834277153,0.0011446886928752065,0.001479289960116148,0.0011446886928752065,-0.023932797834277153,0.00961698591709137,0.001479289960116148,-0.0006868132040835917,-0.0002689617977011949,5.285485590866834e-19,-0.023932797834277153,0.001479289960116148,0.00961698591709137,8.449387327384692e-19,-0.0002689617977011949,-0.0006868132040835917,0.0011446886928752065,-0.0006868132040835917,8.449387327384692e-19,6.243756070034578e-05,-4.0571373738741905e-20,-5.526051814229246e-20,0.001479289960116148,-0.0002689617977011949,-0.0002689617977011949,-4.0571373738741905e-20,4.8902147682383657e-05,1.3552527156068805e-20,0.0011446886928752065,5.285485590866834e-19,-0.0006868132040835917,-5.526051814229246e-20,1.3552527156068805e-20,6.243756070034578e-05,12.0,13.0,0.12052690982818604,-0.022189348936080933,-0.020710058510303497,0.0010566356359049678,0.0012679628562182188,0.0009157509193755686,-0.022189348936080933,0.008894951082766056,0.0012679628562182188,-0.0006339814281091094,-0.0002305386879015714,4.472333961502706e-19,-0.020710058510303497,0.0012679628562182188,0.007614180911332369,7.249278022528843e-19,-0.00021132713300175965,-0.0004995004856027663,0.0010566356359049678,-0.0006339814281091094,7.249278022528843e-19,5.763467197539285e-05,-3.367247417254798e-20,-4.5015143085741624e-20,0.0012679628562182188,-0.0002305386879015714,-0.00021132713300175965,-3.367247417254798e-20,3.8423117075581104e-05,8.470329472543003e-21,0.0009157509193755686,4.472333961502706e-19,-0.0004995004856027663,-4.5015143085741624e-20,8.470329472543003e-21,4.162504046689719e-05,12.0,14.0,0.11315737664699554,-0.020682888105511665,-0.01809752732515335,0.0009811617201194167,0.001098901149816811,0.0007440476329065859,-0.020682888105511665,0.008273868821561337,0.001098901149816811,-0.00058869703207165,-0.00019980019715148956,5.285485590866834e-19,-0.01809752732515335,0.001098901149816811,0.006132449489086866,4.693505513687134e-19,-0.00016906170640140772,-0.00037202381645329297,0.0009811617201194167,-0.00058869703207165,4.693505513687134e-19,5.3517909691436216e-05,-1.080774882095536e-21,-3.6096355705398436e-20,0.001098901149816811,-0.00019980019715148956,-0.00016906170640140772,-1.080774882095536e-21,3.073849075008184e-05,-2.0328790734103208e-20,0.0007440476329065859,5.285485590866834e-19,-0.00037202381645329297,-3.6096355705398436e-20,-2.0328790734103208e-20,2.861721623048652e-05,12.0,15.0,0.10663605481386185,-0.019368132576346397,-0.01595022715628147,0.0009157509193755686,0.000961538462433964,0.0006127451197244227,-0.019368132576346397,0.007733932696282864,0.000961538462433964,-0.0005494505749084055,-0.00017482518160250038,-6.301925127571995e-19,-0.01595022715628147,0.000961538462433964,0.005012389738112688,-1.0148269481009883e-18,-0.00013736264372710139,-0.00028280544211156666,0.0009157509193755686,-0.0005494505749084055,-1.0148269481009883e-18,4.995004928787239e-05,3.6281275808743786e-20,5.810486268908701e-20,0.000961538462433964,-0.00017482518160250038,-0.00013736264372710139,3.6281275808743786e-20,2.4975024643936194e-05,-2.541098841762901e-21,0.0006127451197244227,-6.301925127571995e-19,-0.00028280544211156666,5.810486268908701e-20,-2.541098841762901e-21,2.0200388462399133e-05,12.0,16.0,0.10082462430000305,-0.018210649490356445,-0.01416383869946003,0.0008585164905525744,0.0008484162972308695,0.0005106209428049624,-0.018210649490356445,0.007260202895849943,0.0008484162972308695,-0.000515109917614609,-0.00015425750461872667,2.439454888092385e-19,-0.01416383869946003,0.0008484162972308695,0.004149833228439093,5.153329012350768e-19,-0.0001131221724790521,-0.0002188375365221873,0.0008585164905525744,-0.000515109917614609,5.153329012350768e-19,4.682817234424874e-05,-2.8031244566604115e-20,-2.4077402017957337e-20,0.0008484162972308695,-0.00015425750461872667,-0.0001131221724790521,-2.8031244566604115e-20,2.056766788882669e-05,3.3881317890172014e-21,0.0005106209428049624,2.439454888092385e-19,-0.0002188375365221873,-2.4077402017957337e-20,3.3881317890172014e-21,1.4589169040846173e-05,12.0,17.0,0.0956132784485817,-0.01718379743397236,-0.012661744840443134,0.0008080155239440501,0.0007541478262282908,0.0004299965512473136,-0.01718379743397236,0.0068411980755627155,0.0007541478262282908,-0.00048480930854566395,-0.00013711777864955366,2.303929616531697e-19,-0.012661744840443134,0.0007541478262282908,0.0034747030586004257,4.432374417073918e-19,-9.426847827853635e-05,-0.0001719986175885424,0.0008080155239440501,-0.00048480930854566395,4.432374417073918e-19,4.407357482705265e-05,-2.1985290996574537e-20,-2.014489652858788e-20,0.0007541478262282908,-0.00013711777864955366,-9.426847827853635e-05,-2.1985290996574537e-20,1.7139722331194207e-05,-1.6940658945086007e-21,0.0004299965512473136,2.303929616531697e-19,-0.0001719986175885424,-2.014489652858788e-20,-1.6940658945086007e-21,1.07499135992839e-05,12.0,18.0,0.09091371297836304,-0.016266627237200737,-0.011386639438569546,0.000763125775847584,0.0006747638108208776,0.00036549707874655724,-0.016266627237200737,0.006467947270721197,0.0006747638108208776,-0.0004578754596877843,-0.00012268433056306094,1.8295911660692887e-19,-0.011386639438569546,0.0006747638108208776,0.002938654273748398,3.856093969426533e-19,-7.938397902762517e-05,-0.00013706140452995896,0.000763125775847584,-0.0004578754596877843,3.856093969426533e-19,4.162504046689719e-05,-1.7485376765497782e-20,-1.702587147287604e-20,0.0006747638108208776,-0.00012268433056306094,-7.938397902762517e-05,-1.7485376765497782e-20,1.4433450814976823e-05,0.0,0.00036549707874655724,1.8295911660692887e-19,-0.00013706140452995896,-1.702587147287604e-20,0.0,8.062435881583951e-06,12.0,19.0,0.08665413409471512,-0.015442452393472195,-0.010294968262314796,0.0007229612674564123,0.0006072874530218542,0.00031328320619650185,-0.015442452393472195,0.006133340299129486,0.0006072874530218542,-0.0004337767604738474,-0.00011041590187232941,1.9312351197398048e-19,-0.010294968262314796,0.0006072874530218542,0.0025075888261198997,2.6136040658865295e-19,-6.747638690285385e-05,-0.00011057054507546127,0.0007229612674564123,-0.0004337767604738474,2.6136040658865295e-19,3.943424962926656e-05,1.0532429383367696e-35,-1.4520023126787542e-20,0.0006072874530218542,-0.00011041590187232941,-6.747638690285385e-05,1.0532429383367696e-35,1.2268433238205034e-05,-3.8116482626443515e-21,0.00031328320619650185,1.9312351197398048e-19,-0.00011057054507546127,-1.4520023126787542e-20,-3.8116482626443515e-21,6.142808160802815e-06,12.0,20.0,0.0827755555510521,-0.014697802253067493,-0.009353146888315678,0.0006868132040835917,0.0005494505749084055,0.00027056277031078935,-0.014697802253067493,0.0058316681534051895,0.0005494505749084055,-0.00041208791662938893,-9.990009857574478e-05,1.1180834903756764e-19,-0.009353146888315678,0.0005494505749084055,0.002156980335712433,3.63306668923663e-19,-5.783689994132146e-05,-9.018759010359645e-05,0.0006868132040835917,-0.00041208791662938893,3.63306668923663e-19,3.7462537875398993e-05,-2.2930823060208004e-20,-1.2483533539250398e-20,0.0005494505749084055,-9.990009857574478e-05,-5.783689994132146e-05,-2.2930823060208004e-20,1.0515799658605829e-05,2.541098841762901e-21,0.00027056277031078935,1.1180834903756764e-19,-9.018759010359645e-05,-1.2483533539250398e-20,2.541098841762901e-21,4.746715148939984e-06,12.0,21.0,0.07922908663749695,-0.014021692797541618,-0.00853494368493557,0.0006541077746078372,0.0004995004856027663,0.00023527197481598705,-0.014021692797541618,0.005558294709771872,0.0004995004856027663,-0.0003924646880477667,-9.081827010959387e-05,9.59548380619236e-20,-0.00853494368493557,0.0004995004856027663,0.0018688786076381803,1.3552527156068805e-20,-4.995004928787239e-05,-7.42964111850597e-05,0.0006541077746078372,-0.0003924646880477667,1.3552527156068805e-20,3.567860767361708e-05,2.286988957586611e-20,-6.6466866236508946e-21,0.0004995004856027663,-9.081827010959387e-05,-4.995004928787239e-05,2.286988957586611e-20,9.081827556656208e-06,-1.1768803041874483e-21,0.00023527197481598705,9.59548380619236e-20,-7.42964111850597e-05,-6.6466866236508946e-21,-1.1768803041874483e-21,3.714820650202455e-06,12.0,22.0,0.07597384601831436,-0.013405073434114456,-0.007819626480340958,0.0006243756506592035,0.0004560656670946628,0.00020586297614499927,-0.013405073434114456,0.005309414118528366,0.0004560656670946628,-0.00037462537875398993,-8.292103302665055e-05,7.859508288960877e-20,-0.007819626480340958,0.0004560656670946628,0.0016299370909109712,1.2197274440461925e-19,-4.3434825784061104e-05,-6.175889575388283e-05,0.0006243756506592035,-0.00037462537875398993,1.2197274440461925e-19,3.40568512910977e-05,-4.235164736271502e-21,-3.798052289119078e-21,0.0004560656670946628,-8.292103302665055e-05,-4.3434825784061104e-05,-4.235164736271502e-21,7.897240720922127e-06,-2.53743670962715e-21,0.00020586297614499927,7.859508288960877e-20,-6.175889575388283e-05,-3.798052289119078e-21,-2.53743670962715e-21,2.9408997761493083e-06,12.0,23.0,0.07297539710998535,-0.012840420007705688,-0.0071906354278326035,0.0005972288781777024,0.0004180601972620934,0.00018115942657459527,-0.012840420007705688,0.005081874784082174,0.0004180601972620934,-0.0003583373036235571,-7.601094694109634e-05,-4.494098117394742e-19,-0.0071906354278326035,0.0004180601972620934,0.001430091680958867,-3.9302328752599536e-19,-3.800547347054817e-05,-5.1759834605036303e-05,0.0005972288781777024,-0.0003583373036235571,-3.9302328752599536e-19,3.257612115703523e-05,-5.293955920339377e-20,2.912274169661051e-20,0.0004180601972620934,-7.601094694109634e-05,-3.800547347054817e-05,-5.293955920339377e-20,6.910086085554212e-06,8.726940447161273e-21,0.00018115942657459527,-4.494098117394742e-19,-5.1759834605036303e-05,2.912274169661051e-20,8.726940447161273e-21,2.3527197754447116e-06,12.0,24.0,0.07020451873540878,-0.012321428395807743,-0.006634615361690521,0.0005723443464376032,0.0003846153849735856,0.00016025641525629908,-0.012321428395807743,0.004873043391853571,0.0003846153849735856,-0.00034340660204179585,-6.993007264100015e-05,1.0191159829746523e-19,-0.006634615361690521,0.0003846153849735856,0.0012616550084203482,2.574980159653073e-19,-3.3444815926486626e-05,-4.3706295400625095e-05,0.0005723443464376032,-0.00034340660204179585,2.574980159653073e-19,3.121878035017289e-05,-1.9481757786848908e-20,-5.752269717449874e-21,0.0003846153849735856,-6.993007264100015e-05,-3.3444815926486626e-05,-1.9481757786848908e-20,6.080875664338237e-06,-2.7590482104219444e-21,0.00016025641525629908,1.0191159829746523e-19,-4.3706295400625095e-05,-5.752269717449874e-21,-2.7590482104219444e-21,1.9002736735274084e-06,12.0,25.0,0.06763626635074615,-0.011842772364616394,-0.006140696816146374,0.0005494505749084055,0.0003550295950844884,0.00014245013881009072,-0.011842772364616394,0.0046807038597762585,0.0003550295950844884,-0.00032967032166197896,-6.45508334855549e-05,2.1259511094893147e-19,-0.006140696816146374,0.0003550295950844884,0.0011186861665919423,4.2012834183813297e-19,-2.958579898404423e-05,-3.7160905776545405e-05,0.0005494505749084055,-0.00032967032166197896,4.2012834183813297e-19,2.9970029572723433e-05,-8.046812998915853e-21,-1.5618325109801896e-20,0.0003550295950844884,-6.45508334855549e-05,-2.958579898404423e-05,-8.046812998915853e-21,5.379235972213792e-06,-3.1330002883167942e-21,0.00014245013881009072,2.1259511094893147e-19,-3.7160905776545405e-05,-1.5618325109801896e-20,-3.1330002883167942e-21,1.5483710740227252e-06,12.0,26.0,0.06524921208620071,-0.011399924755096436,-0.005699962377548218,0.0005283178179524839,0.0003287311119493097,0.00012718762445729226,-0.011399924755096436,0.004502975847572088,0.0003287311119493097,-0.0003169907140545547,-5.9769288782263175e-05,-9.07853082002881e-20,-0.005699962377548218,0.0003287311119493097,0.0009965443750843406,-1.8295911660692887e-19,-2.6298488592146896e-05,-3.1796906114323065e-05,0.0005283178179524839,-0.0003169907140545547,-1.8295911660692887e-19,2.8817335987696424e-05,1.2705494208814505e-21,6.86747962761398e-21,0.0003287311119493097,-5.9769288782263175e-05,-2.6298488592146896e-05,1.2705494208814505e-21,4.7815433390496764e-06,7.617173752973838e-22,0.00012718762445729226,-9.07853082002881e-20,-3.1796906114323065e-05,6.86747962761398e-21,7.617173752973838e-22,1.2718762718577636e-06,12.0,27.0,0.06302483379840851,-0.010989011265337467,-0.005305039696395397,0.000508750497829169,0.0003052503161597997,0.00011403028474887833,-0.010989011265337467,0.0043382542207837105,0.0003052503161597997,-0.0003052503161597997,-5.550005516852252e-05,3.8148303230632665e-20,-0.005305039696395397,0.0003052503161597997,0.0008915683720260859,7.453889935837843e-20,-2.3480792151531205e-05,-2.7367268558009528e-05,0.000508750497829169,-0.0003052503161597997,7.453889935837843e-20,2.775002758426126e-05,5.082197683525802e-21,-2.9103546098079167e-21,0.0003052503161597997,-5.550005516852252e-05,-2.3480792151531205e-05,5.082197683525802e-21,4.2692349779827055e-06,-4.007385883054366e-22,0.00011403028474887833,3.8148303230632665e-20,-2.7367268558009528e-05,-2.9103546098079167e-21,-4.007385883054366e-22,1.0525872085054289e-06,12.0,28.0,0.060947056859731674,-0.010606695897877216,-0.004949791356921196,0.0004905808600597084,0.00028419855516403913,0.00010262725845677778,-0.010606695897877216,0.004185162018984556,0.00028419855516403913,-0.000294348516035825,-5.167246490600519e-05,-2.2916392635928075e-20,-0.004949791356921196,0.00028419855516403913,0.0008008434670045972,-2.236166980751353e-19,-2.1051744624855928e-05,-2.3683212930336595e-05,0.0004905808600597084,-0.000294348516035825,-2.236166980751353e-19,2.6758954845718108e-05,2.752857078576476e-20,1.210809552508915e-21,0.00028419855516403913,-5.167246490600519e-05,-2.1051744624855928e-05,2.752857078576476e-20,3.827589807769982e-06,1.0026848721336604e-21,0.00010262725845677778,-2.2916392635928075e-20,-2.3683212930336595e-05,1.210809552508915e-21,1.0026848721336604e-21,8.771560260356637e-07,12.0,29.0,0.0590018630027771,-0.010250094346702099,-0.004629075061529875,0.0004736642586067319,0.00026525199064053595,9.269559086533263e-05,-0.010250094346702099,0.004042509011924267,0.00026525199064053595,-0.00028419855516403913,-4.822763366973959e-05,-2.86616065996881e-19,-0.004629075061529875,0.00026525199064053595,0.0007220295956358314,-4.675621868843738e-19,-1.8946569980471395e-05,-2.0599019990186207e-05,0.0004736642586067319,-0.00028419855516403913,-4.675621868843738e-19,2.5836232453002594e-05,-1.4823076576950256e-20,1.858787604388599e-20,0.00026525199064053595,-4.822763366973959e-05,-1.8946569980471395e-05,-1.4823076576950256e-20,3.4448310088919243e-06,4.2805344619590415e-21,9.269559086533263e-05,-2.86616065996881e-19,-2.0599019990186207e-05,1.858787604388599e-20,4.2805344619590415e-21,7.356792934842815e-07,12.0,30.0,0.05717695131897926,-0.009916695766150951,-0.004338554572314024,0.0004578754596877843,0.000248138967435807,8.400537626584992e-05,-0.009916695766150951,0.003909262828528881,0.000248138967435807,-0.00027472528745420277,-4.511617589741945e-05,2.656176143957793e-20,-0.004338554572314024,0.000248138967435807,0.0006532333209179342,6.776263578034403e-21,-1.711303229967598e-05,-1.800115205696784e-05,0.0004578754596877843,-0.00027472528745420277,6.776263578034403e-21,2.4975024643936194e-05,6.776263578034403e-21,-1.1667750086133416e-21,0.000248138967435807,-4.511617589741945e-05,-1.711303229967598e-05,6.776263578034403e-21,3.1114602734305663e-06,-8.037101704654025e-22,8.400537626584992e-05,2.656176143957793e-20,-1.800115205696784e-05,-1.1667750086133416e-21,-8.037101704654025e-22,6.207293949955783e-07,12.0,31.0,0.05546150729060173,-0.009604306891560555,-0.0040745544247329235,0.0004431052948348224,0.00023263027833309025,7.636852387804538e-05,-0.009604306891560555,0.003784521948546171,0.00023263027833309025,-0.00026586317108012736,-4.229641490383074e-05,1.3561031606741616e-19,-0.0040745544247329235,0.00023263027833309025,0.0005929114413447678,2.371692252312041e-19,-1.5508685464737937e-05,-1.580038406245876e-05,0.0004431052948348224,-0.00026586317108012736,2.371692252312041e-19,2.4169379685190506e-05,2.541098841762901e-21,-8.757912060311561e-21,0.00023263027833309025,-4.229641490383074e-05,-1.5508685464737937e-05,2.541098841762901e-21,2.819760993588716e-06,-2.1138301670172852e-21,7.636852387804538e-05,1.3561031606741616e-19,-1.580038406245876e-05,-8.757912060311561e-21,-2.1138301670172852e-21,5.266794573799416e-07,12.0,32.0,0.05384597182273865,-0.009311001747846603,-0.0038339418824762106,0.0004292582452762872,0.00021853146608918905,6.963012128835544e-05,-0.009311001747846603,0.003667497308924794,0.00021853146608918905,-0.0002575549588073045,-3.973299317294732e-05,-1.3602547349321255e-20,-0.0038339418824762106,0.00021853146608918905,0.0005397975910454988,-2.710505431213761e-20,-1.4098804058448877e-05,-1.3926024621468969e-05,0.0004292582452762872,-0.0002575549588073045,-2.710505431213761e-20,2.341408617212437e-05,-2.541098841762901e-21,1.2537729621347177e-21,0.00021853146608918905,-3.973299317294732e-05,-1.4098804058448877e-05,-2.541098841762901e-21,2.563419002399314e-06,-2.0903675504298398e-22,6.963012128835544e-05,-1.3602547349321255e-20,-1.3926024621468969e-05,1.2537729621347177e-21,-2.0903675504298398e-22,4.492266043598647e-07,12.0,33.0,0.05232186242938042,-0.009035082533955574,-0.003614033106714487,0.0004162504046689719,0.0002056766825262457,6.366182788042352e-05,-0.009035082533955574,0.003557494143024087,0.0002056766825262457,-0.00024975024280138314,-3.739575913641602e-05,-6.794082857886385e-20,-0.003614033106714487,0.0002056766825262457,0.0004928460111841559,-2.202285662861181e-19,-1.2854792657890357e-05,-1.2321644135226961e-05,0.0004162504046689719,-0.00024975024280138314,-2.202285662861181e-19,2.2704567527398467e-05,3.8116482626443515e-21,5.0023707154466e-21,0.0002056766825262457,-3.739575913641602e-05,-1.2854792657890357e-05,3.8116482626443515e-21,2.337234946026001e-06,6.657000027042686e-22,6.366182788042352e-05,-6.794082857886385e-20,-1.2321644135226961e-05,5.0023707154466e-21,6.657000027042686e-22,3.8505137922584254e-07,12.0,34.0,0.05088163539767265,-0.008775048889219761,-0.003412518883123994,0.00040400776197202504,0.00019392372632864863,5.835667616338469e-05,-0.008775048889219761,0.0034538989420980215,0.00019392372632864863,-0.00024240465427283198,-3.525885767885484e-05,-5.268829986115652e-20,-0.003412518883123994,0.00019392372632864863,0.0004511878942139447,-9.147955830346444e-20,-1.175295255961828e-05,-1.0941877008008305e-05,0.00040400776197202504,-0.00024240465427283198,-9.147955830346444e-20,2.2036787413526326e-05,-3.1763735522036263e-21,3.0879456021203635e-21,0.00019392372632864863,-3.525885767885484e-05,-1.175295255961828e-05,-3.1763735522036263e-21,2.1369005480664782e-06,8.74421289115811e-22,5.835667616338469e-05,-5.268829986115652e-20,-1.0941877008008305e-05,3.0879456021203635e-21,8.74421289115811e-22,3.31572010736636e-07,12.0,35.0,0.04951855167746544,-0.008529565297067165,-0.0032274031545966864,0.0003924646880477667,0.00018315018678549677,5.362505544326268e-05,-0.008529565297067165,0.0033561675809323788,0.00018315018678549677,-0.00023547880118712783,-3.330003164592199e-05,-5.392772499590353e-21,-0.0032274031545966864,0.00018315018678549677,0.0004140974779147655,6.776263578034403e-21,-1.0773540452646557e-05,-9.750009667186532e-06,0.0003924646880477667,-0.00023547880118712783,6.776263578034403e-21,2.1407164240372367e-05,-3.8116482626443515e-21,3.827542004970804e-22,0.00018315018678549677,-3.330003164592199e-05,-1.0773540452646557e-05,-3.8116482626443515e-21,1.958825578185497e-06,-5.855559882718147e-23,5.362505544326268e-05,-5.392772499590353e-21,-9.750009667186532e-06,3.827542004970804e-22,-5.855559882718147e-23,2.8676498686763807e-07,12.0,36.0,0.048226580023765564,-0.008297446183860302,-0.0030569536611437798,0.000381562887923792,0.00017325016960967332,4.939149584970437e-05,-0.008297446183860302,0.0032638157717883587,0.00017325016960967332,-0.00022893772984389216,-3.150003249174915e-05,-7.549682620650312e-20,-0.0030569536611437798,0.00017325016960967332,0.0003809652116615325,-1.8973538018496328e-19,-9.900009899865836e-06,-8.716146112419665e-06,0.000381562887923792,-0.00022893772984389216,-1.8973538018496328e-19,2.0812520233448595e-05,8.470329472543003e-22,4.86196448050461e-21,0.00017325016960967332,-3.150003249174915e-05,-9.900009899865836e-06,8.470329472543003e-22,1.8000017689701053e-06,9.039421050198642e-22,4.939149584970437e-05,-7.549682620650312e-20,-8.716146112419665e-06,4.86196448050461e-21,9.039421050198642e-22,2.4903275175347517e-07,12.0,37.0,0.04700029641389847,-0.00807762611657381,-0.0028996607288718224,0.00037125038215890527,0.00016413175035268068,4.55921508546453e-05,-0.00807762611657381,0.003176411148160696,0.00016413175035268068,-0.00022275022638496011,-2.984213460877072e-05,-2.76454779019475e-20,-0.0028996607288718224,0.00016413175035268068,0.0003512766561470926,-1.8295911660692887e-19,-9.11843017092906e-06,-7.815797289367765e-06,0.00037125038215890527,-0.00022275022638496011,-1.8295911660692887e-19,2.025001958827488e-05,1.9269999550035333e-20,1.880517978353665e-21,0.00016413175035268068,-2.984213460877072e-05,-9.11843017092906e-06,1.9269999550035333e-20,1.6578964050495415e-06,2.6485635074803104e-22,4.55921508546453e-05,-2.76454779019475e-20,-7.815797289367765e-06,1.880517978353665e-21,2.6485635074803104e-22,2.171054802602157e-07,12.0,38.0,0.04583481699228287,-0.007869155146181583,-0.0027542042080312967,0.00036148063372820616,0.00015571473340969533,4.217273817630485e-05,-0.007869155146181583,0.0030935662798583508,0.00015571473340969533,-0.0002168883802369237,-2.8311769710853696e-05,-9.936051512721487e-20,-0.0027542042080312967,0.00015571473340969533,0.00032459566136822104,-2.574980159653073e-19,-8.417012395511847e-06,-7.028790150798159e-06,0.00036148063372820616,-0.0002168883802369237,-2.574980159653073e-19,1.971712481463328e-05,-4.446922973085077e-21,6.792340285603768e-21,0.00015571473340969533,-2.8311769710853696e-05,-8.417012395511847e-06,-4.446922973085077e-21,1.5303659210985643e-06,1.0035272998497895e-21,4.217273817630485e-05,-9.936051512721487e-20,-7.028790150798159e-06,6.792340285603768e-21,1.0035272998497895e-21,1.8996729522768874e-07,12.0,39.0,0.044725727289915085,-0.007671175058931112,-0.0026194255333393812,0.00035221187863498926,0.00014792899310123175,3.908692815457471e-05,-0.007671175058931112,0.0030149337835609913,0.00014792899310123175,-0.00021132713300175965,-2.689618122531101e-05,9.137050617192668e-20,-0.0026194255333393812,0.00014792899310123175,0.00030055062961764634,1.9651164376299768e-19,-7.785736670484766e-06,-6.338420917018084e-06,0.00035221187863498926,-0.00021132713300175965,1.9651164376299768e-19,1.9211558537790552e-05,8.682087709356578e-21,-6.332913752854803e-21,0.00014792899310123175,-2.689618122531101e-05,-7.785736670484766e-06,8.682087709356578e-21,1.4155884855426848e-06,-9.46013003728387e-22,3.908692815457471e-05,9.137050617192668e-20,-6.338420917018084e-06,-6.332913752854803e-21,-9.46013003728387e-22,1.668005467081457e-07,12.0,40.0,0.04366903379559517,-0.007482913322746754,-0.0024943044409155846,0.00034340660204179585,0.00014071294572204351,3.629500497481786e-05,-0.007482913322746754,0.002940200036391616,0.00014071294572204351,-0.00020604395831469446,-2.5584171453374438e-05,4.0059109832675765e-20,-0.0024943044409155846,0.00014071294572204351,0.00027882386348210275,1.0164395367051604e-19,-7.216048288682941e-06,-5.730790235247696e-06,0.00034340660204179585,-0.00020604395831469446,1.0164395367051604e-19,1.8731268937699497e-05,1.4823076576950256e-21,-2.538434132733937e-21,0.00014071294572204351,-2.5584171453374438e-05,-7.216048288682941e-06,1.4823076576950256e-21,1.3120088624418713e-06,-4.829658392381726e-22,3.629500497481786e-05,4.0059109832675765e-20,-5.730790235247696e-06,-2.538434132733937e-21,-4.829658392381726e-22,1.4694334993237135e-07,12.0,41.0,0.04266111180186272,-0.007303671911358833,-0.0023779396433383226,0.00033503081067465246,0.00013401232718024403,3.3762797102099285e-05,-0.007303671911358833,0.002869082149118185,0.00013401232718024403,-0.00020101849804632366,-2.436587783449795e-05,-2.0283927494982144e-20,-0.0023779396433383226,0.00013401232718024403,0.0002591424563433975,-1.1519648082658485e-19,-6.700616268062731e-06,-5.194276127440389e-06,0.00033503081067465246,-0.00020101849804632366,-1.1519648082658485e-19,1.8274407921126112e-05,9.105604182983729e-21,1.5638349302584536e-21,0.00013401232718024403,-2.436587783449795e-05,-6.700616268062731e-06,9.105604182983729e-21,1.2182938462501625e-06,1.133356967402007e-22,3.3762797102099285e-05,-2.0283927494982144e-20,-5.194276127440389e-06,1.5638349302584536e-21,1.133356967402007e-22,1.298569145546935e-07,12.0,42.0,0.04169865697622299,-0.007132817525416613,-0.0022695327643305063,0.0003270538873039186,0.00012777920346707106,3.146078597637825e-05,-0.007132817525416613,0.002801323775202036,0.00012777920346707106,-0.00019623234402388334,-2.3232581952470355e-05,-9.35245862690042e-21,-0.0022695327643305063,0.00012777920346707106,0.00024127119104377925,-5.759824041329242e-20,-6.233131443877937e-06,-4.719117896456737e-06,0.0003270538873039186,-0.00019623234402388334,-5.759824041329242e-20,1.783930383680854e-05,2.329340604949326e-21,1.2465848110792459e-21,0.00012777920346707106,-2.3232581952470355e-05,-6.233131443877937e-06,2.329340604949326e-21,1.1332966778354603e-06,-1.4208971460083003e-22,3.146078597637825e-05,-9.35245862690042e-21,-4.719117896456737e-06,1.2465848110792459e-21,-1.4208971460083003e-22,1.1510044117812868e-07,12.0,43.0,0.040778666734695435,-0.006969774607568979,-0.0021683743689209223,0.0003194479795638472,0.00012197105388622731,2.93634020636091e-05,-0.006969774607568979,0.002736692549660802,0.00012197105388622731,-0.00019166879064869136,-2.2176554921315983e-05,-8.163426724475077e-20,-0.0021683743689209223,0.00012197105388622731,0.000225006602704525,-2.710505431213761e-19,-5.808145488117589e-06,-4.297083251003642e-06,0.0003194479795638472,-0.00019166879064869136,-2.710505431213761e-19,1.7424436009605415e-05,4.235164736271502e-21,5.634325394327176e-21,0.00012197105388622731,-2.2176554921315983e-05,-5.808145488117589e-06,4.235164736271502e-21,1.0560264627201832e-06,7.275792618517634e-22,2.93634020636091e-05,-8.163426724475077e-20,-4.297083251003642e-06,5.634325394327176e-21,7.275792618517634e-22,1.0231150326944771e-07,12.0,44.0,0.03989838808774948,-0.006814019288867712,-0.002073831856250763,0.00031218782532960176,0.00011655011621769518,2.7448397304397076e-05,-0.006814019288867712,0.002674976596608758,0.00011655011621769518,-0.00018731268937699497,-2.119093005603645e-05,1.792887158962265e-20,-0.002073831856250763,0.00011655011621769518,0.00021017208928242326,6.776263578034403e-21,-5.4209358495427296e-06,-3.921199549949961e-06,0.00031218782532960176,-0.00018731268937699497,6.776263578034403e-21,1.702842564554885e-05,5.082197683525802e-21,-8.325249747919445e-22,0.00011655011621769518,-2.119093005603645e-05,-5.4209358495427296e-06,5.082197683525802e-21,9.856246379058575e-07,-3.4179853653837384e-22,2.7448397304397076e-05,1.792887158962265e-20,-3.921199549949961e-06,-8.325249747919445e-22,-3.4179853653837384e-22,9.119068522522866e-08,12.0,45.0,0.03905530273914337,-0.0066650742664933205,-0.0019853413105010986,0.0003052503161597997,0.00011148271732963622,2.5696372176753357e-05,-0.0066650742664933205,0.0026159831322729588,0.00011148271732963622,-0.00018315018678549677,-2.026958463829942e-05,-2.285373208894005e-20,-0.0019853413105010986,0.00011148271732963622,0.00019661380792967975,-2.710505431213761e-20,-5.067396159574855e-06,-3.5855402984452667e-06,0.0003052503161597997,-0.00018315018678549677,-2.710505431213761e-20,1.6650015822960995e-05,-7.30565917006834e-21,1.5761547918963436e-21,0.00011148271732963622,-2.026958463829942e-05,-5.067396159574855e-06,-7.30565917006834e-21,9.21344792459422e-07,1.192571265085048e-22,2.5696372176753357e-05,-2.285373208894005e-20,-3.5855402984452667e-06,1.5761547918963436e-21,1.192571265085048e-22,8.148955288334037e-08,12.0,46.0,0.038247108459472656,-0.006522501353174448,-0.0019023963250219822,0.0002986144390888512,0.00010673877113731578,2.4090348233585246e-05,-0.006522501353174448,0.0025595356710255146,0.00010673877113731578,-0.00017916865181177855,-1.9407050785957836e-05,-3.591434689006836e-20,-0.0019023963250219822,0.00010673877113731578,0.00018419738626107574,-1.0164395367051604e-19,-4.743945737573085e-06,-3.2850475690793246e-06,0.0002986144390888512,-0.00017916865181177855,-1.0164395367051604e-19,1.6288060578517616e-05,-3.8116482626443515e-21,2.675976537532711e-21,0.00010673877113731578,-1.9407050785957836e-05,-4.743945737573085e-06,-3.8116482626443515e-21,8.625355576441507e-07,2.4693509705564148e-22,2.4090348233585246e-05,-3.591434689006836e-20,-3.2850475690793246e-06,2.675976537532711e-21,2.4693509705564148e-22,7.300105409058233e-08,12.0,47.0,0.03747167810797691,-0.006385901477187872,-0.001824543229304254,0.00029226092738099396,0.00010229132749373093,2.2615429770667106e-05,-0.006385901477187872,0.0025054733268916607,0.00010229132749373093,-0.00017535655933897942,-1.8598422684590332e-05,-1.2458953996595356e-20,-0.001824543229304254,0.00010229132749373093,0.00017280507017858326,-2.0328790734103208e-20,-4.447449100553058e-06,-3.0153905754559673e-06,0.00029226092738099396,-0.00017535655933897942,-2.0328790734103208e-20,1.5941504898364656e-05,-2.541098841762901e-21,9.188828528857115e-22,0.00010229132749373093,-1.8598422684590332e-05,-4.447449100553058e-06,-2.541098841762901e-21,8.086270781859639e-07,6.941202882257787e-23,2.2615429770667106e-05,-1.2458953996595356e-20,-3.0153905754559673e-06,9.188828528857115e-22,6.941202882257787e-23,6.55519656334036e-08,12.0,48.0,0.03672706335783005,-0.0062549058347940445,-0.0017513736383989453,0.0002861721732188016,9.811617201194167e-05,2.1258503693388775e-05,-0.0062549058347940445,0.002453647553920746,9.811617201194167e-05,-0.00017170330102089792,-1.783930383680854e-05,5.661036057970536e-20,-0.0017513736383989453,9.811617201194167e-05,0.00016233339556492865,1.2366681029912785e-19,-4.175155936536612e-06,-2.7728483473765664e-06,0.0002861721732188016,-0.00017170330102089792,1.2366681029912785e-19,1.5609390175086446e-05,1.1329065669526267e-20,-3.933882373504318e-21,9.811617201194167e-05,-1.783930383680854e-05,-4.175155936536612e-06,1.1329065669526267e-20,7.591193025291432e-07,-4.178874903736296e-22,2.1258503693388775e-05,5.661036057970536e-20,-2.7728483473765664e-06,-3.933882373504318e-21,-4.178874903736296e-22,5.899677191223418e-08,12.0,49.0,0.0360114611685276,-0.006129176821559668,-0.0016825192142277956,0.00028033190756104887,9.419152047485113e-05,2.0008003048133105e-05,-0.006129176821559668,0.00240392261184752,9.419152047485113e-05,-0.00016819914162624627,-1.7125730664702132e-05,-5.0692355048331547e-20,-0.0016825192142277956,9.419152047485113e-05,0.00015269119467120618,-2.1175823681357508e-19,-3.924646989617031e-06,-2.5542130970279686e-06,0.00028033190756104887,-0.00016819914162624627,-2.1175823681357508e-19,1.5290832379832864e-05,6.246867986000465e-21,3.505554277495652e-21,9.419152047485113e-05,-1.7125730664702132e-05,-3.924646989617031e-06,6.246867986000465e-21,7.135721489248681e-07,3.770786933828135e-22,2.0008003048133105e-05,-5.0692355048331547e-20,-2.5542130970279686e-06,3.505554277495652e-21,3.770786933828135e-22,5.3212772854749346e-08,12.0,50.0,0.03532320633530617,-0.00600840337574482,-0.0016176470089703798,0.00027472528745420277,9.049773507285863e-05,1.885369601950515e-05,-0.00600840337574482,0.002356173237785697,9.049773507285863e-05,-0.00016483516083098948,-1.6454134311061352e-05,-1.9998228681811704e-20,-0.0016176470089703798,9.049773507285863e-05,0.0001437979080947116,-7.496241583200558e-20,-3.6937851746188244e-06,-2.356712002438144e-06,0.00027472528745420277,-0.00016483516083098948,-7.496241583200558e-20,1.4985014786361717e-05,3.1763735522036263e-21,1.1198312971606069e-21,9.049773507285863e-05,-1.6454134311061352e-05,-3.6937851746188244e-06,3.1763735522036263e-21,6.715973199789005e-07,2.77593311545504e-22,1.885369601950515e-05,-1.9998228681811704e-20,-2.356712002438144e-06,1.1198312971606069e-21,2.77593311545504e-22,4.809616171996822e-08,12.0,51.0,0.034660764038562775,-0.0058922977186739445,-0.0015564559726044536,0.00026933851768262684,8.701705519342795e-05,1.7786505850381218e-05,-0.0058922977186739445,0.002310283947736025,8.701705519342795e-05,-0.00016160310769919306,-1.58212824317161e-05,1.2497350848213015e-20,-0.0015564559726044536,8.701705519342795e-05,0.00013558220234699547,3.134021904840911e-20,-3.480682153167436e-06,-2.1779394501209026e-06,0.00026933851768262684,-0.00016160310769919306,3.134021904840911e-20,1.4691191609017551e-05,3.3881317890172014e-21,-9.09921191054009e-22,8.701705519342795e-05,-1.58212824317161e-05,-3.480682153167436e-06,3.3881317890172014e-21,6.328513109110645e-07,-7.316080944015847e-23,1.7786505850381218e-05,1.2497350848213015e-20,-2.1779394501209026e-06,-9.09921191054009e-22,-7.316080944015847e-23,4.355878857609241e-08,12.0,52.0,0.03402270749211311,-0.005780594423413277,-0.0014986726455390453,0.00026415890897624195,8.373339369427413e-05,1.679836532275658e-05,-0.005780594423413277,0.00226614810526371,8.373339369427413e-05,-0.00015849535702727735,-1.5224252820189577e-05,2.819067070497664e-20,-0.0014986726455390453,8.373339369427413e-05,0.00012798074749298394,4.489274620447792e-20,-3.2836624086485244e-06,-2.0158038296358427e-06,0.00026415890897624195,-0.00015849535702727735,4.489274620447792e-20,1.4408667993848212e-05,8.364450354136216e-21,-1.8477540732267142e-21,8.373339369427413e-05,-1.5224252820189577e-05,-3.2836624086485244e-06,8.364450354136216e-21,5.970295546831039e-07,-2.3449742377472215e-22,1.679836532275658e-05,2.819067070497664e-20,-2.0158038296358427e-06,-1.8477540732267142e-21,-2.3449742377472215e-22,3.9525566819520463e-08,12.0,53.0,0.03340771794319153,-0.005673048086464405,-0.0014440485974773765,0.00025917479069903493,8.063215500442311e-05,1.5882091247476637e-05,-0.005673048086464405,0.002223667223006487,8.063215500442311e-05,-0.00015550486568827182,-1.466039157094201e-05,-1.871564394457632e-21,-0.0014440485974773765,8.063215500442311e-05,0.00012093717668903992,-8.470329472543003e-22,-3.1012368708616123e-06,-1.868481376732234e-06,0.00025917479069903493,-0.00015550486568827182,-8.470329472543003e-22,1.4136806385067757e-05,-6.352747104407253e-22,1.176756307874922e-22,8.063215500442311e-05,-1.466039157094201e-05,-3.1012368708616123e-06,-6.352747104407253e-22,5.638612492475659e-07,2.999500334962509e-23,1.5882091247476637e-05,-1.871564394457632e-21,-1.868481376732234e-06,1.176756307874922e-22,2.999500334962509e-23,3.593233444121324e-08,12.0,54.0,0.03281456232070923,-0.005569430533796549,-0.0013923576334491372,0.0002543752489145845,7.770007505314425e-05,1.5031265320430975e-05,-0.005569430533796549,0.0021827497985213995,7.770007505314425e-05,-0.00015262515807989985,-1.41272867040243e-05,-2.7747044614397144e-21,-0.0013923576334491372,7.770007505314425e-05,0.00011440123489592224,-2.498747194400186e-20,-2.9320783596631372e-06,-1.7343767240163288e-06,0.0002543752489145845,-0.00015262515807989985,-2.498747194400186e-20,1.387501379213063e-05,2.541098841762901e-21,1.3534879088063338e-22,7.770007505314425e-05,-1.41272867040243e-05,-2.9320783596631372e-06,2.541098841762901e-21,5.331051511348051e-07,4.6822223717887083e-23,1.5031265320430975e-05,-2.7747044614397144e-21,-1.7343767240163288e-06,1.3534879088063338e-22,4.6822223717887083e-23,3.272408832799556e-08,12.0,55.0,0.032242100685834885,-0.00546953035518527,-0.0013433934655040503,0.00024975024280138314,7.492507575079799e-05,1.4240145901567303e-05,-0.00546953035518527,0.0021433113142848015,7.492507575079799e-05,-0.00014985015150159597,-1.3622740880236961e-05,-6.279818289492989e-21,-0.0013433934655040503,7.492507575079799e-05,0.00010832798579940572,-5.802175688691957e-20,-2.775002712951391e-06,-1.6120919781315024e-06,0.00024975024280138314,-0.00014985015150159597,-5.802175688691957e-20,1.3622740880236961e-05,7.411538288475128e-21,1.93219866701362e-22,7.492507575079799e-05,-1.3622740880236961e-05,-2.775002712951391e-06,7.411538288475128e-21,5.045459374741768e-07,1.3394762245166706e-22,1.4240145901567303e-05,-6.279818289492989e-21,-1.6120919781315024e-06,1.93219866701362e-22,1.3394762245166706e-22,2.9853556071657295e-08,12.0,56.0,0.03168926760554314,-0.005373151507228613,-0.001296967500820756,0.0002452904300298542,7.229612674564123e-05,1.3503586160368286e-05,-0.005373151507228613,0.0021052726078778505,7.229612674564123e-05,-0.0001471742580179125,-1.3144749573257286e-05,-8.029394849154377e-22,-0.001296967500820756,7.229612674564123e-05,0.00010267720062984154,1.1858461261560205e-20,-2.6289499146514572e-06,-1.5003985254224972e-06,0.0002452904300298542,-0.0001471742580179125,1.1858461261560205e-20,1.3379477422859054e-05,-1.0587911840678754e-21,-5.412488266691714e-23,7.229612674564123e-05,-1.3144749573257286e-05,-2.6289499146514572e-06,-1.0587911840678754e-21,4.779909090757428e-07,3.8290958085185995e-23,1.3503586160368286e-05,-8.029394849154377e-22,-1.5003985254224972e-06,-5.412488266691714e-23,3.8290958085185995e-23,2.727997205909105e-08,12.0,57.0,0.031155070289969444,-0.00528011005371809,-0.0012529074447229505,0.00024098707945086062,6.980315811233595e-05,1.2816963135264814e-05,-0.00528011005371809,0.0020685605704784393,6.980315811233595e-05,-0.00014459225349128246,-1.2691482879745308e-05,1.1878526045969584e-20,-0.0012529074447229505,6.980315811233595e-05,9.741276153363287e-05,7.496241583200558e-20,-2.4929697701736586e-06,-1.398214180881041e-06,0.00024098707945086062,-0.00014459225349128246,7.496241583200558e-20,1.3144749573257286e-05,-3.0704944337968387e-21,-8.896005380322993e-22,6.980315811233595e-05,-1.2691482879745308e-05,-2.4929697701736586e-06,-3.0704944337968387e-21,4.5326723352445697e-07,-5.2807147322730614e-23,1.2816963135264814e-05,1.1878526045969584e-20,-1.398214180881041e-06,-8.896005380322993e-22,-5.2807147322730614e-23,2.4968111134171522e-08,12.0,58.0,0.03063858486711979,-0.005190236493945122,-0.0012110552052035928,0.00023683212930336595,6.743694393662736e-05,1.2176114978501573e-05,-0.005190236493945122,0.002033107215538621,6.743694393662736e-05,-0.00014209927758201957,-1.2261262781976257e-05,-1.4406516821521647e-20,-0.0012110552052035928,6.743694393662736e-05,9.250221046386287e-05,-8.597384414631148e-20,-2.3662087187403813e-06,-1.3045837476965971e-06,0.00023683212930336595,-0.00014209927758201957,-8.597384414631148e-20,1.2918116226501297e-05,4.870439446712227e-21,9.676126968891604e-22,6.743694393662736e-05,-1.2261262781976257e-05,-2.3662087187403813e-06,4.870439446712227e-21,4.302197567085386e-07,1.0885111715732787e-22,1.2176114978501573e-05,-1.4406516821521647e-20,-1.3045837476965971e-06,9.676126968891604e-22,1.0885111715732787e-22,2.288743417011574e-08,12.0,59.0,0.03013894334435463,-0.0051033711060881615,-0.001171265495941043,0.00023281802714336663,6.518905138364062e-05,1.157729002443375e-05,-0.0051033711060881615,0.0019988485146313906,6.518905138364062e-05,-0.00013969081919640303,-1.1852554052893538e-05,-1.03623500273932e-20,-0.001171265495941043,6.518905138364062e-05,8.791629079496488e-05,-4.955142741437657e-20,-2.247898237328627e-06,-1.2186620779175428e-06,0.00023281802714336663,-0.00013969081919640303,-4.955142741437657e-20,1.2699165381491184e-05,1.4823076576950256e-21,7.447224588778899e-22,6.518905138364062e-05,-1.1852554052893538e-05,-2.247898237328627e-06,1.4823076576950256e-21,4.087087575044279e-07,6.185455833483057e-23,1.157729002443375e-05,-1.03623500273932e-20,-1.2186620779175428e-06,7.447224588778899e-22,6.185455833483057e-23,2.1011414830240938e-08,12.0,60.0,0.0296553336083889,-0.005019365809857845,-0.0011334052542224526,0.00022893772984389216,6.305170245468616e-05,1.1017098586307839e-05,-0.005019365809857845,0.0019657255616039038,6.305170245468616e-05,-0.00013736264372710139,-1.1463946066214703e-05,2.2265999160114186e-22,-0.0011334052542224526,6.305170245468616e-05,8.362861262867227e-05,-1.2705494208814505e-21,-2.137345745722996e-06,-1.1396998615964549e-06,0.00022893772984389216,-0.00013736264372710139,-1.2705494208814505e-21,1.2487512321968097e-05,3.1763735522036263e-22,-2.4166045434352808e-23,6.305170245468616e-05,-1.1463946066214703e-05,-2.137345745722996e-06,3.1763735522036263e-22,3.8860832773934817e-07,9.979254534114085e-24,1.1017098586307839e-05,2.2265999160114186e-22,-1.1396998615964549e-06,-2.4166045434352808e-23,9.979254534114085e-24,1.93169462647802e-08,12.0,61.0,0.029186997562646866,-0.004938081372529268,-0.001097351429052651,0.00022518464538734406,6.101777762523852e-05,1.049247475748416e-05,-0.004938081372529268,0.0019336823606863618,6.101777762523852e-05,-0.00013511079305317253,-1.1094140973000322e-05,9.165334054910873e-21,-0.001097351429052651,6.101777762523852e-05,7.961531082401052e-05,1.9481757786848908e-20,-2.033925966316019e-06,-1.0670313486116356e-06,0.00022518464538734406,-0.00013511079305317253,1.9481757786848908e-20,1.228279961651424e-05,2.9116757561866574e-21,-5.624391956834437e-22,6.101777762523852e-05,-1.1094140973000322e-05,-2.033925966316019e-06,2.9116757561866574e-21,3.6980469531044946e-07,-6.699213804238362e-23,1.049247475748416e-05,9.165334054910873e-21,-1.0670313486116356e-06,-5.624391956834437e-22,-6.699213804238362e-23,1.7783856165465295e-08,12.0,62.0,0.02873322367668152,-0.0048593878746032715,-0.0010629910975694656,0.0002215526474174112,5.9080703067593277e-05,1.00006400316488e-05,-0.0048593878746032715,0.0019026672234758735,5.9080703067593277e-05,-0.00013293158554006368,-1.074194642569637e-05,6.034474015649703e-21,-0.0010629910975694656,5.9080703067593277e-05,7.585479033878073e-05,7.623296525288703e-20,-1.937072283908492e-06,-1.00006400316488e-06,0.0002215526474174112,-0.00013293158554006368,7.623296525288703e-20,1.2084689842595253e-05,-8.152692117322641e-21,-4.282868985367516e-22,5.9080703067593277e-05,-1.074194642569637e-05,-1.937072283908492e-06,-8.152692117322641e-21,3.521949452078843e-07,-3.6232529682651254e-23,1.00006400316488e-05,6.034474015649703e-21,-1.00006400316488e-06,-4.282868985367516e-22,-3.6232529682651254e-23,1.6394491098026265e-08,12.0,63.0,0.028293341398239136,-0.00478316331282258,-0.001030219835229218,0.00021803592971991748,5.723443246097304e-05,9.53907237999374e-06,-0.00478316331282258,0.0018726313719525933,5.723443246097304e-05,-0.00013082155783195049,-1.0406260116724297e-05,-1.3468275902623439e-20,-0.001030219835229218,5.723443246097304e-05,7.23274570191279e-05,-7.792703114739563e-20,-1.8462719708622899e-06,-9.382694088344579e-07,0.00021803592971991748,-0.00013082155783195049,-7.792703114739563e-20,1.1892869224539027e-05,4.605741650695258e-21,8.259877538901376e-22,5.723443246097304e-05,-1.0406260116724297e-05,-1.8462719708622899e-06,4.605741650695258e-21,3.3568582580301154e-07,1.194914118864682e-22,9.53907237999374e-06,-1.3468275902623439e-20,-9.382694088344579e-07,8.259877538901376e-22,1.194914118864682e-22,1.5133377218035093e-08,12.0,64.0,0.027866724878549576,-0.004709293134510517,-0.0009989410173147917,0.0002146291226381436,5.547337423195131e-05,9.105478056881111e-06,-0.004709293134510517,0.0018435290548950434,5.547337423195131e-05,-0.00012877747940365225,-1.008606795949163e-05,2.3124847804846406e-22,-0.0009989410173147917,5.547337423195131e-05,6.901549932081252e-05,-8.470329472543003e-22,-1.761059479576943e-06,-8.811752536530548e-07,0.0002146291226381436,-0.00012877747940365225,-8.470329472543003e-22,1.1707043086062185e-05,3.705769144237564e-22,9.688819614638865e-24,5.547337423195131e-05,-1.008606795949163e-05,-1.761059479576943e-06,3.705769144237564e-22,3.2019264040172857e-07,-1.3703272807879798e-23,9.105478056881111e-06,2.3124847804846406e-22,-8.811752536530548e-07,9.688819614638865e-24,-1.3703272807879798e-23,1.3986909408458814e-08,13.0,3.0,0.3223443329334259,-0.0714285746216774,-0.2142857164144516,0.0036630036775022745,0.016483517363667488,0.03846153989434242,-0.0714285746216774,0.028554778546094894,0.016483517363667488,-0.001998001942411065,-0.002747252816334367,-2.862293735361732e-17,-0.2142857164144516,0.016483517363667488,0.598901093006134,-4.747940615438024e-18,-0.016483517363667488,-0.23076923191547394,0.0036630036775022745,-0.001998001942411065,-4.747940615438024e-18,0.00016650016186758876,-3.448311117284995e-20,2.4721986258451434e-18,0.016483517363667488,-0.002747252816334367,-0.016483517363667488,-3.448311117284995e-20,0.002747252816334367,-6.071532165918825e-18,0.03846153989434242,-2.862293735361732e-17,-0.23076923191547394,2.4721986258451434e-18,-6.071532165918825e-18,0.11538461595773697,13.0,4.0,0.2719780206680298,-0.05604395642876625,-0.14010989665985107,0.002747252816334367,0.009890110231935978,0.01923076994717121,-0.05604395642876625,0.021828172728419304,0.009890110231935978,-0.0014985015150159597,-0.0016483516665175557,3.0357660829594124e-17,-0.14010989665985107,0.009890110231935978,0.22802197933197021,3.8779219733221e-18,-0.006593406666070223,-0.057692307978868484,0.002747252816334367,-0.0014985015150159597,3.8779219733221e-18,0.00012487512140069157,-1.1026449397241985e-19,-9.811610073628098e-19,0.009890110231935978,-0.0016483516665175557,-0.006593406666070223,-1.1026449397241985e-19,0.001098901149816811,-1.0842021724855044e-17,0.01923076994717121,3.0357660829594124e-17,-0.057692307978868484,-9.811610073628098e-19,-1.0842021724855044e-17,0.01923076994717121,13.0,5.0,0.2351648360490799,-0.04615384712815285,-0.09890110045671463,0.002197802299633622,0.006593406666070223,0.010989011265337467,-0.04615384712815285,0.01768231764435768,0.006593406666070223,-0.0011988012120127678,-0.001098901149816811,-1.734723475976807e-18,-0.09890110045671463,0.006593406666070223,0.11538461595773697,2.3620173410724676e-19,-0.0032967033330351114,-0.021978022530674934,0.002197802299633622,-0.0011988012120127678,2.3620173410724676e-19,9.990009857574478e-05,-2.5732960393129607e-20,-7.313075361247761e-20,0.006593406666070223,-0.001098901149816811,-0.0032967033330351114,-2.5732960393129607e-20,0.0005494505749084055,1.0299920638612292e-18,0.010989011265337467,-1.734723475976807e-18,-0.021978022530674934,-7.313075361247761e-20,1.0299920638612292e-18,0.005494505632668734,13.0,6.0,0.20709052681922913,-0.039246466010808945,-0.07358712702989578,0.0018315018387511373,0.0047095762565732,0.006868131924420595,-0.039246466010808945,0.014866086654365063,0.0047095762565732,-0.0009990009712055326,-0.0007849293760955334,8.673617379884035e-18,-0.07358712702989578,0.0047095762565732,0.06720957905054092,2.685284487541866e-18,-0.0018838304094970226,-0.010302198119461536,0.0018315018387511373,-0.0009990009712055326,2.685284487541866e-18,8.325008093379438e-05,-1.3395679494761973e-19,-3.2518033767805126e-19,0.0047095762565732,-0.0007849293760955334,-0.0018838304094970226,-1.3395679494761973e-19,0.00031397174461744726,-1.7076184216646695e-18,0.006868131924420595,8.673617379884035e-18,-0.010302198119461536,-3.2518033767805126e-19,-1.7076184216646695e-18,0.002060439670458436,13.0,7.0,0.18498168885707855,-0.03414442762732506,-0.056907378137111664,0.0015698587521910667,0.0035321821924299,0.004578754771500826,-0.03414442762732506,0.012826459482312202,0.0035321821924299,-0.0008562865550629795,-0.00058869703207165,2.0599841277224584e-18,-0.056907378137111664,0.0035321821924299,0.04277864843606949,9.832769353697204e-19,-0.0011773940641433,-0.005494505632668734,0.0015698587521910667,-0.0008562865550629795,9.832769353697204e-19,7.135721534723416e-05,-2.4843616834425792e-20,-1.2744667673167427e-19,0.0035321821924299,-0.00058869703207165,-0.0011773940641433,-2.4843616834425792e-20,0.00019623234402388334,-6.776263578034403e-20,0.004578754771500826,2.0599841277224584e-18,-0.005494505632668734,-1.2744667673167427e-19,-6.776263578034403e-20,0.0009157509193755686,13.0,8.0,0.16712453961372375,-0.030219780281186104,-0.04532967135310173,0.0013736264081671834,0.002747252816334367,0.0032051282469183207,-0.030219780281186104,0.011280386708676815,0.002747252816334367,-0.0007492507575079799,-0.0004578754596877843,-0.0,-0.04532967135310173,0.002747252816334367,0.02897697500884533,0.0,-0.0007849293760955334,-0.0032051282469183207,0.0013736264081671834,-0.0007492507575079799,0.0,6.243756070034578e-05,-3.3881317890172014e-21,-0.0,0.002747252816334367,-0.0004578754596877843,-0.0007849293760955334,-3.3881317890172014e-21,0.00013082155783195049,-0.0,0.0032051282469183207,-0.0,-0.0032051282469183207,-0.0,-0.0,0.0004578754596877843,13.0,9.0,0.15240314602851868,-0.027106227353215218,-0.03696303814649582,0.0012210012646391988,0.002197802299633622,0.0023310023825615644,-0.027106227353215218,0.010067709721624851,0.002197802299633622,-0.000666000647470355,-0.00036630037357099354,-6.106880075035053e-18,-0.03696303814649582,0.002197802299633622,0.02056276984512806,-4.654094079811739e-18,-0.0005494505749084055,-0.001998001942411065,0.0012210012646391988,-0.000666000647470355,-4.654094079811739e-18,5.550005516852252e-05,1.5246593050577406e-19,4.2251959174205306e-19,0.002197802299633622,-0.00036630037357099354,-0.0005494505749084055,1.5246593050577406e-19,9.157509339274839e-05,2.221907937954587e-19,0.0023310023825615644,-6.106880075035053e-18,-0.001998001942411065,4.2251959174205306e-19,2.221907937954587e-19,0.00024975024280138314,13.0,10.0,0.1400599330663681,-0.024575425311923027,-0.030719280242919922,0.001098901149816811,0.0017982018180191517,0.0017482517287135124,-0.024575425311923027,0.00909090880304575,0.0017982018180191517,-0.0005994006060063839,-0.00029970030300319195,-0.0,-0.030719280242919922,0.0017982018180191517,0.015130702406167984,1.3552527156068805e-20,-0.0003996003943029791,-0.0013111887965351343,0.001098901149816811,-0.0005994006060063839,1.3552527156068805e-20,4.995004928787239e-05,0.0,-0.0,0.0017982018180191517,-0.00029970030300319195,-0.0003996003943029791,0.0,6.660006329184398e-05,-0.0,0.0017482517287135124,-0.0,-0.0013111887965351343,-0.0,-0.0,0.00014568764891009778,13.0,11.0,0.12956275045871735,-0.022477522492408752,-0.02593560330569744,0.0009990009712055326,0.0014985015150159597,0.0013448090758174658,-0.022477522492408752,0.008287167176604271,0.0014985015150159597,-0.0005449096206575632,-0.00024975024280138314,-6.776263578034403e-20,-0.02593560330569744,0.0014985015150159597,0.011462896130979061,-1.988495502109309e-20,-0.00029970030300319195,-0.0008965393644757569,0.0009990009712055326,-0.0005449096206575632,-1.988495502109309e-20,4.5409135054796934e-05,3.908028940394201e-21,-1.3881802443695262e-22,0.0014985015150159597,-0.00024975024280138314,-0.00029970030300319195,3.908028940394201e-21,4.995004928787239e-05,1.6940658945086007e-20,0.0013448090758174658,-6.776263578034403e-20,-0.0008965393644757569,-1.3881802443695262e-22,1.6940658945086007e-20,8.965393499238417e-05,13.0,12.0,0.12052690982818604,-0.020710058510303497,-0.022189348936080933,0.0009157509193755686,0.0012679628562182188,0.0010566356359049678,-0.020710058510303497,0.007614180911332369,0.0012679628562182188,-0.0004995004856027663,-0.00021132713300175965,-9.486769009248164e-20,-0.022189348936080933,0.0012679628562182188,0.008894951082766056,1.5430280460939597e-20,-0.0002305386879015714,-0.0006339814281091094,0.0009157509193755686,-0.0004995004856027663,1.5430280460939597e-20,4.162504046689719e-05,-3.999208740237462e-22,-1.0997824666741745e-21,0.0012679628562182188,-0.00021132713300175965,-0.0002305386879015714,-3.999208740237462e-22,3.8423117075581104e-05,1.8634724839594607e-20,0.0010566356359049678,-9.486769009248164e-20,-0.0006339814281091094,-1.0997824666741745e-21,1.8634724839594607e-20,5.763467197539285e-05,13.0,13.0,0.11266755312681198,-0.019200580194592476,-0.019200580194592476,0.0008453085320070386,0.0010868252720683813,0.0008453085320070386,-0.019200580194592476,0.007042407989501953,0.0010868252720683813,-0.0004610773758031428,-0.0001811375404940918,0.0,-0.019200580194592476,0.0010868252720683813,0.007042407989501953,1.2216630466795666e-20,-0.0001811375404940918,-0.0004610773758031428,0.0008453085320070386,-0.0004610773758031428,1.2216630466795666e-20,3.8423117075581104e-05,-2.008289514115048e-21,8.942241464611083e-22,0.0010868252720683813,-0.0001811375404940918,-0.0001811375404940918,-2.008289514115048e-21,3.0189590688678436e-05,0.0,0.0008453085320070386,0.0,-0.0004610773758031428,8.942241464611083e-22,0.0,3.8423117075581104e-05,13.0,14.0,0.10576923191547394,-0.017896389588713646,-0.01677786558866501,0.0007849293760955334,0.0009419152047485113,0.0006868132040835917,-0.017896389588713646,0.006550592370331287,0.0009419152047485113,-0.00042814327753148973,-0.00015698587230872363,-1.3552527156068805e-19,-0.01677786558866501,0.0009419152047485113,0.005671869497746229,-4.1014954512102295e-19,-0.00014491003821603954,-0.00034340660204179585,0.0007849293760955334,-0.00042814327753148973,-4.1014954512102295e-19,3.567860767361708e-05,1.7255134596285342e-20,1.975054140272749e-20,0.0009419152047485113,-0.00015698587230872363,-0.00014491003821603954,1.7255134596285342e-20,2.4151671823346987e-05,-2.286988957586611e-20,0.0006868132040835917,-1.3552527156068805e-19,-0.00034340660204179585,1.975054140272749e-20,-2.286988957586611e-20,2.6415891625219956e-05,13.0,15.0,0.09966602176427841,-0.01675824262201786,-0.014786683954298496,0.0007326007471419871,0.0008241758332587779,0.0005656108842231333,-0.01675824262201786,0.006123043596744537,0.0008241758332587779,-0.0003996003943029791,-0.00013736264372710139,4.743384504624082e-20,-0.014786683954298496,0.0008241758332587779,0.0046358779072761536,8.041966237514175e-21,-0.00011773940059356391,-0.00026105117285624146,0.0007326007471419871,-0.0003996003943029791,8.041966237514175e-21,3.330003164592199e-05,-2.0424530225709294e-22,-2.9335111736076854e-23,0.0008241758332587779,-0.00013736264372710139,-0.00011773940059356391,-2.0424530225709294e-22,1.9623234038590454e-05,-6.776263578034403e-21,0.0005656108842231333,4.743384504624082e-20,-0.00026105117285624146,-2.9335111736076854e-23,-6.776263578034403e-21,1.8646511307451874e-05,13.0,16.0,0.09422807395458221,-0.015756303444504738,-0.013130252249538898,0.0006868132040835917,0.0007272139773704112,0.00047134238411672413,-0.015756303444504738,0.005747928749769926,0.0007272139773704112,-0.00037462537875398993,-0.00012120232713641599,1.3552527156068805e-20,-0.013130252249538898,0.0007272139773704112,0.003838073695078492,-0.0,-9.696186316432431e-05,-0.00020200388098601252,0.0006868132040835917,-0.00037462537875398993,-0.0,3.121878035017289e-05,8.470329472543003e-22,-4.235164736271502e-22,0.0007272139773704112,-0.00012120232713641599,-9.696186316432431e-05,8.470329472543003e-22,1.6160311133717187e-05,-8.470329472543003e-22,0.00047134238411672413,1.3552527156068805e-20,-0.00020200388098601252,-4.235164736271502e-22,-8.470329472543003e-22,1.3466925338434521e-05,13.0,17.0,0.08935233950614929,-0.014867485500872135,-0.011737488210201263,0.0006464124307967722,0.0006464124307967722,0.0003969199024140835,-0.014867485500872135,0.005416152533143759,0.0006464124307967722,-0.0003525885986164212,-0.00010773540270747617,-1.0503208545953324e-18,-0.011737488210201263,0.0006464124307967722,0.0032136335503309965,-1.4930058947499036e-18,-8.080155384959653e-05,-0.00015876795805525035,0.0006464124307967722,-0.0003525885986164212,-1.4930058947499036e-18,2.9382383218035102e-05,5.0742835683917156e-20,6.776010900206662e-20,0.0006464124307967722,-0.00010773540270747617,-8.080155384959653e-05,5.0742835683917156e-20,1.3466925338434521e-05,2.625802136488331e-20,0.0003969199024140835,-1.0503208545953324e-18,-0.00015876795805525035,6.776010900206662e-20,2.625802136488331e-20,9.922997378453147e-06,13.0,18.0,0.08495598286390305,-0.014073645696043968,-0.010555233806371689,0.0006105006323195994,0.0005783690139651299,0.0003373819054104388,-0.014073645696043968,0.005120610352605581,0.0005783690139651299,-0.0003330003237351775,-9.639483323553577e-05,-7.555533889508359e-19,-0.010555233806371689,0.0005783690139651299,0.002717838156968355,-1.2654076661938209e-18,-6.804340955568478e-05,-0.00012651822180487216,0.0006105006323195994,-0.0003330003237351775,-1.2654076661938209e-18,2.775002758426126e-05,3.2697163606862605e-20,5.740150713682405e-20,0.0005783690139651299,-9.639483323553577e-05,-6.804340955568478e-05,3.2697163606862605e-20,1.1340568562445696e-05,5.505714157152952e-21,0.0003373819054104388,-7.555533889508359e-19,-0.00012651822180487216,5.740150713682405e-20,5.505714157152952e-21,7.4422482612135354e-06,13.0,19.0,0.08097165822982788,-0.013360324315726757,-0.009543088264763355,0.0005783690139651299,0.0005205320776440203,0.0002891845069825649,-0.013360324315726757,0.004855670500546694,0.0005205320776440203,-0.0003154739970341325,-8.6755353549961e-05,-3.3881317890172014e-20,-0.009543088264763355,0.0005205320776440203,0.002319146180525422,-0.0,-5.783689994132146e-05,-0.00010206511797150597,0.0005783690139651299,-0.0003154739970341325,-0.0,2.6289499146514572e-05,0.0,0.0,0.0005205320776440203,-8.6755353549961e-05,-5.783689994132146e-05,0.0,9.639483323553577e-06,3.3881317890172014e-21,0.0002891845069825649,-3.3881317890172014e-20,-0.00010206511797150597,0.0,3.3881317890172014e-21,5.670284281222848e-06,13.0,20.0,0.07734408229589462,-0.012715855613350868,-0.008669901639223099,0.0005494505749084055,0.00047095760237425566,0.00024975024280138314,-0.012715855613350868,0.0046168118715286255,0.00047095760237425566,-0.00029970030300319195,-7.849293615436181e-05,-1.3552527156068805e-20,-0.008669901639223099,0.00047095760237425566,0.00199487223289907,-0.0,-4.957448618370108e-05,-8.325008093379438e-05,0.0005494505749084055,-0.00029970030300319195,-0.0,2.4975024643936194e-05,0.0,0.0,0.00047095760237425566,-7.849293615436181e-05,-4.957448618370108e-05,0.0,8.262414667115081e-06,1.2705494208814505e-21,0.00024975024280138314,-1.3552527156068805e-20,-8.325008093379438e-05,0.0,1.2705494208814505e-21,4.381583494250663e-06,13.0,21.0,0.074027419090271,-0.012130726128816605,-0.00791134312748909,0.0005232862313278019,0.00042814327753148973,0.00021717413619626313,-0.012130726128816605,0.004400361329317093,0.00042814327753148973,-0.00028542886138893664,-7.135721534723416e-05,-3.049318610115481e-20,-0.00791134312748909,0.00042814327753148973,0.0017284121131524444,-0.0,-4.2814328480744734e-05,-6.858130655018613e-05,0.0005232862313278019,-0.00028542886138893664,-0.0,2.3785738449078053e-05,0.0,0.0,0.00042814327753148973,-7.135721534723416e-05,-4.2814328480744734e-05,0.0,7.1357212618750054e-06,3.1763735522036263e-21,0.00021717413619626313,-3.049318610115481e-20,-6.858130655018613e-05,0.0,3.1763735522036263e-21,3.429065145610366e-06,13.0,22.0,0.07098336517810822,-0.011597098782658577,-0.007248186506330967,0.0004995004856027663,0.0003909134247805923,0.00019002736371476203,-0.011597098782658577,0.004203306511044502,0.0003909134247805923,-0.0002724548103287816,-6.515224231407046e-05,3.3881317890172014e-21,-0.007248186506330967,0.0003909134247805923,0.0015074211405590177,-0.0,-3.72298491129186e-05,-5.700820838683285e-05,0.0004995004856027663,-0.0002724548103287816,-0.0,2.2704567527398467e-05,0.0,0.0,0.0003909134247805923,-6.515224231407046e-05,-3.72298491129186e-05,0.0,6.204975306900451e-06,-2.117582368135751e-22,0.00019002736371476203,3.3881317890172014e-21,-5.700820838683285e-05,0.0,-2.117582368135751e-22,2.714676611503819e-06,13.0,23.0,0.0681796446442604,-0.0111084571108222,-0.0066650742664933205,0.00047778309090062976,0.0003583373036235571,0.00016722407599445432,-0.0111084571108222,0.0040231505408883095,0.0003583373036235571,-0.00026060896925628185,-5.972288636257872e-05,-3.026248995195775e-20,-0.0066650742664933205,0.0003583373036235571,0.0013225903967395425,2.0328790734103208e-20,-3.257612115703523e-05,-4.777830690727569e-05,0.00047778309090062976,-0.00026060896925628185,2.0328790734103208e-20,2.1717412892030552e-05,-1.0587911840678754e-20,1.7740663362563043e-21,0.0003583373036235571,-5.972288636257872e-05,-3.257612115703523e-05,-1.0587911840678754e-20,5.429353223007638e-06,8.164871422879882e-22,0.00016722407599445432,-3.026248995195775e-20,-4.777830690727569e-05,1.7740663362563043e-21,8.164871422879882e-22,2.17174124372832e-06,13.0,24.0,0.06558889895677567,-0.010659340769052505,-0.006149619817733765,0.0004578754596877843,0.00032967032166197896,0.00014792899310123175,-0.010659340769052505,0.0038578088860958815,0.00032967032166197896,-0.00024975024280138314,-5.494505603564903e-05,3.472268335776062e-21,-0.006149619817733765,0.00032967032166197896,0.0011668098159134388,8.809142651444724e-20,-2.8666985599556938e-05,-4.034427183796652e-05,0.0004578754596877843,-0.00024975024280138314,8.809142651444724e-20,2.0812520233448595e-05,-8.893845946170154e-21,3.5557616264201434e-22,0.00032967032166197896,-5.494505603564903e-05,-2.8666985599556938e-05,-8.893845946170154e-21,4.777830781677039e-06,-7.116776940251314e-22,0.00014792899310123175,3.472268335776062e-21,-4.034427183796652e-05,3.5557616264201434e-22,-7.116776940251314e-22,1.7540987755637616e-06,13.0,25.0,0.06318775564432144,-0.010245139710605145,-0.0056917439214885235,0.00043956044828519225,0.0003043110773433,0.00013149244477972388,-0.010245139710605145,0.003705525305122137,0.0003043110773433,-0.00023976023658178747,-5.071851046523079e-05,2.0521624629465218e-19,-0.0056917439214885235,0.0003043110773433,0.001034584129229188,4.1335207826009857e-19,-2.5359255232615396e-05,-3.430237484280951e-05,0.00043956044828519225,-0.00023976023658178747,4.1335207826009857e-19,1.9980019715148956e-05,-8.470329472543003e-21,-1.435904117800508e-20,0.0003043110773433,-5.071851046523079e-05,-2.5359255232615396e-05,-8.470329472543003e-21,4.226542841934133e-06,-2.384831378185528e-21,0.00013149244477972388,2.0521624629465218e-19,-3.430237484280951e-05,-1.435904117800508e-20,-2.384831378185528e-21,1.4292656942416215e-06,13.0,26.0,0.060956139117479324,-0.009861933067440987,-0.005283178295940161,0.0004226542660035193,0.0002817695203702897,0.00011740396439563483,-0.009861933067440987,0.003564811311662197,0.0002817695203702897,-0.0002305386879015714,-4.696158430306241e-05,1.3320954066175464e-19,-0.005283178295940161,0.0002817695203702897,0.0009216211037710309,1.6940658945086007e-19,-2.254156061098911e-05,-2.9350991098908707e-05,0.0004226542660035193,-0.0002305386879015714,1.6940658945086007e-19,1.9211558537790552e-05,1.2705494208814505e-20,-9.199961741745161e-21,0.0002817695203702897,-4.696158430306241e-05,-2.254156061098911e-05,1.2705494208814505e-20,3.75692684428941e-06,-8.424813839142434e-22,0.00011740396439563483,1.3320954066175464e-19,-2.9350991098908707e-05,-9.199961741745161e-21,-8.424813839142434e-22,1.1740396530512953e-06,13.0,27.0,0.05887671932578087,-0.009506366215646267,-0.004917086102068424,0.0004070004215463996,0.00026164311566390097,0.00010525872494326904,-0.009506366215646267,0.0034343963488936424,0.00026164311566390097,-0.0002220002206740901,-4.3607185943983495e-05,9.713544451588698e-20,-0.004917086102068424,0.00026164311566390097,0.0008245343924500048,1.8295911660692887e-19,-2.012639379245229e-05,-2.5262093913624994e-05,0.0004070004215463996,-0.0002220002206740901,1.8295911660692887e-19,1.850001899583731e-05,-2.964615315390051e-21,-5.665934356601785e-21,0.00026164311566390097,-4.3607185943983495e-05,-2.012639379245229e-05,-2.964615315390051e-21,3.3543990411999403e-06,-1.874549797532674e-21,0.00010525872494326904,9.713544451588698e-20,-2.5262093913624994e-05,-5.665934356601785e-21,-1.874549797532674e-21,9.71618987932743e-07,13.0,28.0,0.05693444609642029,-0.009175553917884827,-0.004587776958942413,0.0003924646880477667,0.00024359876988455653,9.473285172134638e-05,-0.009175553917884827,0.003313189372420311,0.00024359876988455653,-0.00021407163876574486,-4.059979255544022e-05,2.648833300434251e-20,-0.004587776958942413,0.00024359876988455653,0.0007406281656585634,2.0328790734103208e-19,-1.8044353055302054e-05,-2.1861427740077488e-05,0.0003924646880477667,-0.00021407163876574486,2.0328790734103208e-19,1.783930383680854e-05,-2.3081647812679684e-20,-1.58344058499922e-21,0.00024359876988455653,-4.059979255544022e-05,-1.8044353055302054e-05,-2.3081647812679684e-20,3.0073922516749008e-06,-6.25602998063677e-22,9.473285172134638e-05,2.648833300434251e-20,-2.1861427740077488e-05,-1.58344058499922e-21,-6.25602998063677e-22,8.096824899439525e-07,13.0,29.0,0.055116184055805206,-0.008866994641721249,-0.004290481563657522,0.0003789314068853855,0.00022735884704161435,8.556515967939049e-05,-0.008866994641721249,0.0032002481166273355,0.00022735884704161435,-0.00020668985962402076,-3.789313996094279e-05,6.282175673459408e-20,-0.004290481563657522,0.00022735884704161435,0.0006677380879409611,5.421010862427522e-20,-1.6239917385973968e-05,-1.9014480130863376e-05,0.0003789314068853855,-0.00020668985962402076,5.421010862427522e-20,1.7224154362338595e-05,8.682087709356578e-21,-3.770876094043087e-21,0.00022735884704161435,-3.789313996094279e-05,-1.6239917385973968e-05,8.682087709356578e-21,2.7066530492447782e-06,-1.0483692334155258e-21,8.556515967939049e-05,6.282175673459408e-20,-1.9014480130863376e-05,-3.770876094043087e-21,-1.0483692334155258e-21,6.790885436203098e-07,13.0,30.0,0.05341043323278427,-0.008578518405556679,-0.0040211803279817104,0.00036630037357099354,0.0002126905310433358,7.754342368571088e-05,-0.008578518405556679,0.00309475464746356,0.0002126905310433358,-0.00019980019715148956,-3.5448421840555966e-05,4.5655122385916244e-20,-0.0040211803279817104,0.0002126905310433358,0.0006041129236109555,2.1345230270808369e-19,-1.4668312360299751e-05,-1.661644819250796e-05,0.00036630037357099354,-0.00019980019715148956,2.1345230270808369e-19,1.6650015822960995e-05,-1.4823076576950256e-20,-3.0152829551864084e-21,0.0002126905310433358,-3.5448421840555966e-05,-1.4668312360299751e-05,-1.4823076576950256e-20,2.4447188025078503e-06,-8.67575238635941e-22,7.754342368571088e-05,4.5655122385916244e-20,-1.661644819250796e-05,-3.0152829551864084e-21,-8.67575238635941e-22,5.729809799959185e-07,13.0,31.0,0.051807064563035965,-0.008308224380016327,-0.00377646554261446,0.00035448421840555966,0.0001993973710341379,7.04940248397179e-05,-0.008308224380016327,0.0029959960374981165,0.0001993973710341379,-0.00019335503748152405,-3.323289638501592e-05,8.299240087533481e-20,-0.00377646554261446,0.0001993973710341379,0.0005483254208229482,2.439454888092385e-19,-1.3293158190208487e-05,-1.4584969903808087e-05,0.00035448421840555966,-0.00019335503748152405,2.439454888092385e-19,1.6112919183797203e-05,-7.623296525288703e-21,-5.874035308041011e-21,0.0001993973710341379,-3.323289638501592e-05,-1.3293158190208487e-05,-7.623296525288703e-21,2.215526365034748e-06,-6.146453793022461e-22,7.04940248397179e-05,8.299240087533481e-20,-1.4584969903808087e-05,-5.874035308041011e-21,-6.146453793022461e-22,4.861656748289533e-07,13.0,32.0,0.05029712989926338,-0.008054445497691631,-0.003553431946784258,0.00034340660204179585,0.00018731268937699497,6.427396147046238e-05,-0.008054445497691631,0.0029033466707915068,0.00018731268937699497,-0.00018731268937699497,-3.121878035017289e-05,-8.740215888199182e-20,-0.003553431946784258,0.00018731268937699497,0.0004992043250240386,-3.3881317890172014e-19,-1.2084689842595253e-05,-1.2854792657890357e-05,0.00034340660204179585,-0.00018731268937699497,-3.3881317890172014e-19,1.5609390175086446e-05,2.3081647812679684e-20,5.89446521514265e-21,0.00018731268937699497,-3.121878035017289e-05,-1.2084689842595253e-05,2.3081647812679684e-20,2.0141148979746504e-06,9.914756256761257e-22,6.427396147046238e-05,-8.740215888199182e-20,-1.2854792657890357e-05,5.89446521514265e-21,9.914756256761257e-22,4.146707226482249e-07,13.0,33.0,0.0488726943731308,-0.007815713994204998,-0.003349591512233019,0.0003330003237351775,0.0001762942993082106,5.8764766436070204e-05,-0.007815713994204998,0.002816256834194064,0.0001762942993082106,-0.00018163654021918774,-2.9382383218035102e-05,-3.5558239174015746e-20,-0.003349591512233019,0.0001762942993082106,0.00045578237040899694,-1.6601845766184287e-19,-1.1018393706763163e-05,-1.1373825145710725e-05,0.0003330003237351775,-0.00018163654021918774,-1.6601845766184287e-19,1.5136378351598978e-05,1.164670302474663e-20,2.535205583795244e-21,0.0001762942993082106,-2.9382383218035102e-05,-1.1018393706763163e-05,1.164670302474663e-20,1.8363989511271939e-06,1.492268232002904e-22,5.8764766436070204e-05,-3.5558239174015746e-20,-1.1373825145710725e-05,2.535205583795244e-21,1.492268232002904e-22,3.5543203580346017e-07,13.0,34.0,0.04752670228481293,-0.007590728811919689,-0.0031628035940229893,0.0003232062153983861,0.00016622032853774726,5.3867701353738084e-05,-0.007590728811919689,0.002734240610152483,0.00016622032853774726,-0.0001762942993082106,-2.7703388695954345e-05,7.243517872785148e-20,-0.0031628035940229893,0.00016622032853774726,0.00041725605842657387,2.202285662861181e-19,-1.0073959856526926e-05,-1.0100194231199566e-05,0.0003232062153983861,-0.0001762942993082106,2.202285662861181e-19,1.4691191609017551e-05,-9.529120656610879e-21,-4.5158200903067116e-21,0.00016622032853774726,-2.7703388695954345e-05,-1.0073959856526926e-05,-9.529120656610879e-21,1.6789932715255418e-06,-9.522466457103159e-22,5.3867701353738084e-05,7.243517872785148e-20,-1.0100194231199566e-05,-4.5158200903067116e-21,-9.522466457103159e-22,3.0606648238062917e-07,13.0,35.0,0.04625284671783447,-0.007378336042165756,-0.002991217188537121,0.00031397174461744726,0.00015698587230872363,4.950004949932918e-05,-0.007378336042165756,0.00265686702914536,0.00015698587230872363,-0.00017125731392297894,-2.616431265778374e-05,1.1466344046997685e-19,-0.002991217188537121,0.00015698587230872363,0.0003829541674349457,3.6253010142484055e-19,-9.234462595486548e-06,-9.000009413284715e-06,0.00031397174461744726,-0.00017125731392297894,3.6253010142484055e-19,1.4271442523750011e-05,-1.6728900708272432e-20,-7.157854757743472e-21,0.00015698587230872363,-2.616431265778374e-05,-9.234462595486548e-06,-1.6728900708272432e-20,1.5390771750389831e-06,-1.3692603811235482e-21,4.950004949932918e-05,1.1466344046997685e-19,-9.000009413284715e-06,-7.157854757743472e-21,-1.3692603811235482e-21,2.6470615921425633e-07,13.0,36.0,0.045045480132102966,-0.007177507039159536,-0.0028332264628261328,0.0003052503161597997,0.00014850015577394515,4.55921508546453e-05,-0.007177507039159536,0.0025837526191025972,0.00014850015577394515,-0.00016650016186758876,-2.475002474966459e-05,-5.313570440614541e-20,-0.0028332264628261328,0.00014850015577394515,0.00035231292713433504,-1.4568966692773966e-19,-8.485722901241388e-06,-8.045673894230276e-06,0.0003052503161597997,-0.00016650016186758876,-1.4568966692773966e-19,1.387501379213063e-05,2.541098841762901e-21,3.274563889491827e-21,0.00014850015577394515,-2.475002474966459e-05,-8.485722901241388e-06,2.541098841762901e-21,1.4142871123112855e-06,7.466055266566376e-22,4.55921508546453e-05,-5.313570440614541e-20,-8.045673894230276e-06,3.274563889491827e-21,7.466055266566376e-22,2.2987639169969043e-07,13.0,37.0,0.0438995286822319,-0.006987322587519884,-0.0026874318718910217,0.0002970003115478903,0.00014068435120861977,4.208506288705394e-05,-0.006987322587519884,0.0025145551189780235,0.00014068435120861977,-0.00016200015670619905,-2.3447391868103296e-05,5.023978385568847e-20,-0.0026874318718910217,0.00014068435120861977,0.0003248566063120961,1.1519648082658485e-19,-7.815797289367765e-06,-7.214582183223683e-06,0.0002970003115478903,-0.00016200015670619905,1.1519648082658485e-19,1.3500013665179722e-05,1.376428539288238e-21,-3.119677954862324e-21,0.00014068435120861977,-2.3447391868103296e-05,-7.815797289367765e-06,1.376428539288238e-21,1.3026328815612942e-06,-4.760592547278795e-22,4.208506288705394e-05,5.023978385568847e-20,-7.214582183223683e-06,-3.119677954862324e-21,-4.760592547278795e-22,2.004050543291669e-07,13.0,38.0,0.04281042888760567,-0.0068069580011069775,-0.0025526094250380993,0.0002891845069825649,0.0001334697735728696,3.892868335242383e-05,-0.0068069580011069775,0.0024489681236445904,0.0001334697735728696,-0.00015773699851706624,-2.2244961655815132e-05,-5.4145252494372236e-20,-0.0025526094250380993,0.0001334697735728696,0.00030018173856660724,-1.8634724839594607e-19,-7.214582183223683e-06,-6.488113740488188e-06,0.0002891845069825649,-0.00015773699851706624,-1.8634724839594607e-19,1.3144749573257286e-05,7.623296525288703e-21,3.5555369083472385e-21,0.0001334697735728696,-2.2244961655815132e-05,-7.214582183223683e-06,7.623296525288703e-21,1.2024303259750013e-06,4.345681498520324e-22,3.892868335242383e-05,-5.4145252494372236e-20,-6.488113740488188e-06,3.5555369083472385e-21,4.345681498520324e-22,1.7535442964344838e-07,13.0,39.0,0.041774049401283264,-0.0066356719471514225,-0.0024276848416775465,0.0002817695203702897,0.0001267962798010558,3.608024417189881e-05,-0.0066356719471514225,0.0023867159616202116,0.0001267962798010558,-0.00015369246830232441,-2.1132713300175965e-05,-1.840576706215361e-20,-0.0024276848416775465,0.0001267962798010558,0.00027794469497166574,-1.1180834903756764e-19,-6.673488314845599e-06,-5.850849902344635e-06,0.0002817695203702897,-0.00015369246830232441,-1.1180834903756764e-19,1.2807705388695467e-05,8.364450354136216e-21,1.5227189445202572e-21,0.0001267962798010558,-2.1132713300175965e-05,-6.673488314845599e-06,8.364450354136216e-21,1.1122481282654917e-06,-6.531644444067858e-24,3.608024417189881e-05,-1.840576706215361e-20,-5.850849902344635e-06,1.5227189445202572e-21,-6.531644444067858e-24,1.539697365160464e-07,13.0,40.0,0.04078665375709534,-0.006472795270383358,-0.002311712596565485,0.00027472528745420277,0.00012061109737260267,3.350308179506101e-05,-0.006472795270383358,0.002327550435438752,0.00012061109737260267,-0.00014985015150159597,-2.0101850168430246e-05,-4.621832090755262e-21,-0.002311712596565485,0.00012061109737260267,0.00025785164325498044,-6.098637220230962e-20,-6.185184247442521e-06,-5.289960427035112e-06,0.00027472528745420277,-0.00014985015150159597,-6.098637220230962e-20,1.2487512321968097e-05,5.1880768019325896e-21,5.202368790589983e-22,0.00012061109737260267,-2.0101850168430246e-05,-6.185184247442521e-06,5.1880768019325896e-21,1.0308640412404202e-06,-3.382936906453493e-23,3.350308179506101e-05,-4.621832090755262e-21,-5.289960427035112e-06,5.202368790589983e-22,-3.382936906453493e-23,1.3564000767019024e-07,13.0,41.0,0.03984484821557999,-0.006317724008113146,-0.0022038572933524847,0.00026802465436048806,0.00011486771109048277,3.116565858363174e-05,-0.006317724008113146,0.0022712480276823044,0.00011486771109048277,-0.0001461952633690089,-1.914461790875066e-05,4.737800712371922e-20,-0.0022038572933524847,0.00011486771109048277,0.00023965020955074579,1.2874900798265365e-19,-5.743385372625198e-06,-4.7947164603101555e-06,0.00026802465436048806,-0.0001461952633690089,1.2874900798265365e-19,1.2182938917248975e-05,-2.752857078576476e-21,-2.9295645466750753e-21,0.00011486771109048277,-1.914461790875066e-05,-5.743385372625198e-06,-2.752857078576476e-21,9.57230895437533e-07,-4.1485296335229783e-22,3.116565858363174e-05,4.737800712371922e-20,-4.7947164603101555e-06,-2.9295645466750753e-21,-4.1485296335229783e-22,1.1986792003426672e-07,13.0,42.0,0.038945551961660385,-0.0061699096113443375,-0.0021033782977610826,0.00026164311566390097,0.00010952502634609118,2.904072607634589e-05,-0.0061699096113443375,0.0022176052443683147,0.00010952502634609118,-0.00014271443069446832,-1.8254171664011665e-05,2.6439086677327193e-20,-0.0021033782977610826,0.00010952502634609118,0.00022312284272629768,1.2536087619363645e-19,-5.3426842896442395e-06,-4.356109002401354e-06,0.00026164311566390097,-0.00014271443069446832,1.2536087619363645e-19,1.1892869224539027e-05,-9.529120656610879e-21,-1.4130318872388847e-21,0.00010952502634609118,-1.8254171664011665e-05,-5.3426842896442395e-06,-9.529120656610879e-21,8.904473816073732e-07,-3.8095314900892666e-22,2.904072607634589e-05,2.6439086677327193e-20,-4.356109002401354e-06,-1.4130318872388847e-21,-3.8095314900892666e-22,1.0624655999436072e-07,13.0,43.0,0.0380859449505806,-0.006028854753822088,-0.002009618328884244,0.0002555584069341421,0.0001045466196956113,2.7104677428724244e-05,-0.006028854753822088,0.0021664381492882967,0.0001045466196956113,-0.00013939548807684332,-1.7424436009605415e-05,-2.2678806007604958e-20,-0.002009618328884244,0.0001045466196956113,0.00020808135741390288,-9.317362419797304e-20,-4.97841028845869e-06,-3.966538315580692e-06,0.0002555584069341421,-0.00013939548807684332,-9.317362419797304e-20,1.1616290976235177e-05,3.917527381051139e-21,1.4618731057803764e-21,0.0001045466196956113,-1.7424436009605415e-05,-4.97841028845869e-06,3.917527381051139e-21,8.297350291286421e-07,1.7781598806439027e-22,2.7104677428724244e-05,-2.2678806007604958e-20,-3.966538315580692e-06,1.4618731057803764e-21,1.7781598806439027e-22,9.444138981962169e-08,13.0,44.0,0.03726346045732498,-0.00589410588145256,-0.0019219910027459264,0.00024975024280138314,9.990009857574478e-05,2.5336981707368977e-05,-0.00589410588145256,0.002117579337209463,9.990009857574478e-05,-0.0001362274051643908,-1.6650015822960995e-05,-1.9110216366906217e-20,-0.0019219910027459264,9.990009857574478e-05,0.0001943624229170382,-2.371692252312041e-20,-4.64651611764566e-06,-3.6195688153384253e-06,0.00024975024280138314,-0.0001362274051643908,-2.371692252312041e-20,1.1352283763699234e-05,-4.129285617864714e-21,1.2737309158448686e-21,9.990009857574478e-05,-1.6650015822960995e-05,-4.64651611764566e-06,-4.129285617864714e-21,7.74419390836556e-07,1.0618889461793697e-22,2.5336981707368977e-05,-1.9110216366906217e-20,-3.6195688153384253e-06,1.2737309158448686e-21,1.0618889461793697e-22,8.417602259669366e-08,13.0,45.0,0.03647574409842491,-0.005765249021351337,-0.0018399731488898396,0.00024420025874860585,9.555661381455138e-05,2.3719727323623374e-05,-0.005765249021351337,0.002070876071229577,9.555661381455138e-05,-0.00013320012658368796,-1.5926103515084833e-05,1.654987896209163e-22,-0.0018399731488898396,9.555661381455138e-05,0.00018182377971243113,0.0,-4.34348248745664e-06,-3.3097294362960383e-06,0.00024420025874860585,-0.00013320012658368796,0.0,1.1100010851805564e-05,-6.352747104407253e-22,9.491065754107528e-23,9.555661381455138e-05,-1.5926103515084833e-05,-4.34348248745664e-06,-6.352747104407253e-22,7.239137858050526e-07,-2.560173757197522e-23,2.3719727323623374e-05,1.654987896209163e-22,-3.3097294362960383e-06,9.491065754107528e-23,-2.560173757197522e-23,7.522112355218269e-08,13.0,46.0,0.03572063893079758,-0.005641906522214413,-0.0017630958463996649,0.00023889154545031488,9.149037941824645e-05,2.223724550276529e-05,-0.005641906522214413,0.0020261884201318026,9.149037941824645e-05,-0.00013030448462814093,-1.524839626654284e-05,1.033204565172921e-20,-0.0017630958463996649,9.149037941824645e-05,0.0001703411398921162,5.421010862427522e-20,-4.066238943778444e-06,-3.0323515147756552e-06,0.00023889154545031488,-0.00013030448462814093,5.421010862427522e-20,1.0858706446015276e-05,-5.293955920339377e-21,-4.252597426317183e-22,9.149037941824645e-05,-1.524839626654284e-05,-4.066238943778444e-06,-5.293955920339377e-21,6.77706509577547e-07,-1.8257519221647588e-22,2.223724550276529e-05,1.033204565172921e-20,-3.0323515147756552e-06,-4.252597426317183e-22,-1.8257519221647588e-22,6.738559221730611e-08,13.0,47.0,0.0349961593747139,-0.005523731466382742,-0.0016909382538869977,0.0002338087506359443,8.767827966948971e-05,2.0875781046925113e-05,-0.005523731466382742,0.001983389025554061,8.767827966948971e-05,-0.00012753203918691725,-1.461304691474652e-05,-5.207380644801906e-22,-0.0016909382538869977,8.767827966948971e-05,0.0001598056114744395,2.0328790734103208e-20,-3.81209906663571e-06,-2.783437366815633e-06,0.0002338087506359443,-0.00012753203918691725,2.0328790734103208e-20,1.0627670235408004e-05,-4.129285617864714e-21,1.9770087432205597e-22,8.767827966948971e-05,-1.461304691474652e-05,-3.81209906663571e-06,-4.129285617864714e-21,6.353498633870913e-07,-9.427137728525865e-23,2.0875781046925113e-05,-5.207380644801906e-22,-2.783437366815633e-06,1.9770087432205597e-22,-9.427137728525865e-23,6.05095067385264e-08,13.0,48.0,0.03430048003792763,-0.005410405807197094,-0.001623121788725257,0.00022893772984389216,8.409957081312314e-05,1.9623234038590454e-05,-0.005410405807197094,0.001942360308021307,8.409957081312314e-05,-0.00012487512140069157,-1.4016595741850324e-05,2.4382486261147354e-20,-0.001623121788725257,8.409957081312314e-05,0.00015012150106485933,4.743384504624082e-20,-3.5787052183877677e-06,-2.5595522856747266e-06,0.00022893772984389216,-0.00012487512140069157,4.743384504624082e-20,1.0406260116724297e-05,1.7999450129153882e-21,-1.2522994456944117e-21,8.409957081312314e-05,-1.4016595741850324e-05,-3.5787052183877677e-06,1.7999450129153882e-21,5.964508886791009e-07,-3.2374788441397907e-22,1.9623234038590454e-05,2.4382486261147354e-20,-2.5595522856747266e-06,-1.2522994456944117e-21,-3.2374788441397907e-22,5.4458556775216493e-08,13.0,49.0,0.03363191336393356,-0.0053016371093690395,-0.0015593050047755241,0.00022426553186960518,8.073559001786634e-05,1.8468925190973096e-05,-0.0053016371093690395,0.0019029949326068163,8.073559001786634e-05,-0.0001223266590386629,-1.3455932275974192e-05,2.0311636429915536e-20,-0.0015593050047755241,8.073559001786634e-05,0.0001412044803146273,6.098637220230962e-20,-3.363983068993548e-06,-2.3577351839776384e-06,0.00022426553186960518,-0.0001223266590386629,6.098637220230962e-20,1.0193887646892108e-05,-1.0587911840678754e-22,-1.207749125606343e-21,8.073559001786634e-05,-1.3455932275974192e-05,-3.363983068993548e-06,-1.0587911840678754e-22,5.606638069366454e-07,-1.8104866432333907e-22,1.8468925190973096e-05,2.0311636429915536e-20,-2.3577351839776384e-06,-1.207749125606343e-21,-1.8104866432333907e-22,4.911948536800992e-08,13.0,50.0,0.03298891335725784,-0.0051971557550132275,-0.0014991795178502798,0.00021978022414259613,7.756948616588488e-05,1.740341031108983e-05,-0.0051971557550132275,0.0018651935970410705,7.756948616588488e-05,-0.00011988011829089373,-1.2928247997479048e-05,-3.8962643156645514e-20,-0.0014991795178502798,7.756948616588488e-05,0.0001329800725216046,-1.5754812818929986e-19,-3.1661015782447066e-06,-2.1754262888862286e-06,0.00021978022414259613,-0.00011988011829089373,-1.5754812818929986e-19,9.990009857574478e-06,3.1763735522036263e-21,2.654621706796918e-21,7.756948616588488e-05,-1.2928247997479048e-05,-3.1661015782447066e-06,3.1763735522036263e-21,5.276835963741178e-07,2.566081978278829e-22,1.740341031108983e-05,-3.8962643156645514e-20,-2.1754262888862286e-06,2.654621706796918e-21,2.566081978278829e-22,4.439645806542103e-08,13.0,51.0,0.032370030879974365,-0.005096713081002235,-0.0014424660475924611,0.00021547080541495234,7.45860452298075e-05,1.6418312952737324e-05,-0.005096713081002235,0.0018288649152964354,7.45860452298075e-05,-0.00011752953287214041,-1.243100814463105e-05,8.52020507074697e-21,-0.0014424660475924611,7.45860452298075e-05,0.00012538229930214584,6.945670167485263e-20,-2.983441845572088e-06,-2.0104055238334695e-06,0.00021547080541495234,-0.00011752953287214041,6.945670167485263e-20,9.794127436180133e-06,-3.8116482626443515e-21,-7.767045208062326e-22,7.45860452298075e-05,-1.243100814463105e-05,-2.983441845572088e-06,-3.8116482626443515e-21,4.97240307595348e-07,5.540280577893897e-24,1.6418312952737324e-05,8.52020507074697e-21,-2.0104055238334695e-06,-7.767045208062326e-22,5.540280577893897e-24,4.020811061877794e-08,13.0,52.0,0.031773943454027176,-0.005000079516321421,-0.001388911041431129,0.00021132713300175965,7.177147926995531e-05,1.550618435430806e-05,-0.005000079516321421,0.0017939244862645864,7.177147926995531e-05,-0.0001152693439507857,-1.1961913514824118e-05,-2.0370235390848956e-20,-0.001388911041431129,7.177147926995531e-05,0.00011835257464554161,-6.098637220230962e-20,-2.8145677788415924e-06,-1.8607420315674972e-06,0.00021132713300175965,-0.0001152693439507857,-6.098637220230962e-20,9.605779268895276e-06,-1.2705494208814505e-21,1.312852055369491e-21,7.177147926995531e-05,-1.1961913514824118e-05,-2.8145677788415924e-06,-1.2705494208814505e-21,4.6909462980693206e-07,1.2799515573990794e-22,1.550618435430806e-05,-2.0370235390848956e-20,-1.8607420315674972e-06,1.312852055369491e-21,1.2799515573990794e-22,3.648514024234828e-08,13.0,53.0,0.031199408695101738,-0.004907042719423771,-0.0013382843462750316,0.000207339835469611,6.911327363923192e-05,1.466039157094201e-05,-0.004907042719423771,0.0017602941952645779,6.911327363923192e-05,-0.00011309445108054206,-1.1518879546201788e-05,2.885530386481446e-20,-0.0013382843462750316,6.911327363923192e-05,0.00011183879541931674,8.766791004082009e-20,-2.6582029022392817e-06,-1.7247519963348168e-06,0.000207339835469611,-0.00011309445108054206,8.766791004082009e-20,9.424537893210072e-06,5.823351512373315e-22,-1.6842284834761326e-21,6.911327363923192e-05,-1.1518879546201788e-05,-2.6582029022392817e-06,5.823351512373315e-22,4.430338265137834e-07,-2.7253412567926817e-22,1.466039157094201e-05,2.885530386481446e-20,-1.7247519963348168e-06,-1.6842284834761326e-21,-2.7253412567926817e-22,3.316830898825174e-08,13.0,54.0,0.030645281076431274,-0.00481740478426218,-0.0012903762981295586,0.0002035002107731998,6.660006329184398e-05,1.387501379213063e-05,-0.00481740478426218,0.001727901748381555,6.660006329184398e-05,-0.00011100011033704504,-1.1100010851805564e-05,-1.1173546020843494e-21,-0.0012903762981295586,6.660006329184398e-05,0.00010579446097835898,-5.082197683525802e-21,-2.5132101200142642e-06,-1.6009631735869334e-06,0.0002035002107731998,-0.00011100011033704504,-5.082197683525802e-21,9.250009497918654e-06,1.2705494208814505e-21,9.463408921859203e-24,6.660006329184398e-05,-1.1100010851805564e-05,-2.5132101200142642e-06,1.2705494208814505e-21,4.188683533357107e-07,4.133799959591819e-23,1.387501379213063e-05,-1.1173546020843494e-21,-1.6009631735869334e-06,9.463408921859203e-24,4.133799959591819e-23,3.020685213073193e-08,13.0,55.0,0.030110491439700127,-0.004730983171612024,-0.0012449956266209483,0.00019980019715148956,6.42214945401065e-05,1.3144749573257286e-05,-0.004730983171612024,0.001696679973974824,6.42214945401065e-05,-0.00010898192704189569,-1.0703582120186184e-05,-1.3068517445593746e-20,-0.0012449956266209483,6.42214945401065e-05,0.00010017803288064897,-7.496241583200558e-20,-2.378573753958335e-06,-1.4880848766551935e-06,0.00019980019715148956,-0.00010898192704189569,-7.496241583200558e-20,9.081827556656208e-06,4.552802091491864e-21,8.658622114030355e-22,6.42214945401065e-05,-1.0703582120186184e-05,-2.378573753958335e-06,4.552802091491864e-21,3.9642895899305586e-07,6.96512745579133e-23,1.3144749573257286e-05,-1.3068517445593746e-20,-1.4880848766551935e-06,8.658622114030355e-22,6.96512745579133e-23,2.7557128134958475e-08,13.0,56.0,0.029594045132398605,-0.0046476079151034355,-0.0012019675923511386,0.00019623234402388334,6.196810863912106e-05,1.246484953298932e-05,-0.0046476079151034355,0.0016665664734318852,6.196810863912106e-05,-0.00010703581938287243,-1.0328018106520176e-05,1.0815222527036747e-20,-0.0012019675923511386,6.196810863912106e-05,9.495229460299015e-05,7.115076756936123e-20,-2.253385673611774e-06,-1.3849831930201617e-06,0.00019623234402388334,-0.00010703581938287243,7.115076756936123e-20,8.91965191840427e-06,-3.758708703440958e-21,-7.14390365797133e-22,6.196810863912106e-05,-1.0328018106520176e-05,-2.253385673611774e-06,-3.758708703440958e-21,3.7556429788310197e-07,-6.477923174194488e-23,1.246484953298932e-05,1.0815222527036747e-20,-1.3849831930201617e-06,-7.14390365797133e-22,-6.477923174194488e-23,2.518151376307287e-08,13.0,57.0,0.029095014557242393,-0.004567120689898729,-0.001161132357083261,0.00019278966647107154,5.983127630315721e-05,1.1831043593701907e-05,-0.004567120689898729,0.0016375035047531128,5.983127630315721e-05,-0.00010515799658605829,-9.971879080694634e-06,-3.011827416255404e-21,-0.001161132357083261,5.983127630315721e-05,9.008384949993342e-05,-3.5998900258307764e-20,-2.136831199095468e-06,-1.2906592701256159e-06,0.00019278966647107154,-0.00010515799658605829,-3.5998900258307764e-20,8.763166988501325e-06,4.393983413881683e-21,3.7140562227102193e-23,5.983127630315721e-05,-9.971879080694634e-06,-2.136831199095468e-06,4.393983413881683e-21,3.5613854265648115e-07,6.745630379901567e-23,1.1831043593701907e-05,-3.011827416255404e-21,-1.2906592701256159e-06,3.7140562227102193e-23,6.745630379901567e-23,2.304748747405938e-08,13.0,58.0,0.0286125335842371,-0.004489373881369829,-0.0011223434703424573,0.00018946570344269276,5.7803095842245966e-05,1.123949095926946e-05,-0.004489373881369829,0.0016094367019832134,5.7803095842245966e-05,-0.00010334492981201038,-9.633849913370796e-06,-3.822144732253252e-21,-0.0011223434703424573,5.7803095842245966e-05,8.554266969440505e-05,-4.701032857261367e-20,-2.028178869295516e-06,-1.2042312391713494e-06,0.00018946570344269276,-0.00010334492981201038,-4.701032857261367e-20,8.612077181169298e-06,4.4998625322884706e-21,2.673419820406228e-22,5.7803095842245966e-05,-9.633849913370796e-06,-2.028178869295516e-06,4.4998625322884706e-21,3.380297926014464e-07,1.476915326402184e-23,1.123949095926946e-05,-3.822144732253252e-21,-1.2042312391713494e-06,2.673419820406228e-22,1.476915326402184e-23,2.11268620375904e-08,13.0,59.0,0.028145791962742805,-0.004414229653775692,-0.0010854663560166955,0.00018625443044584244,5.587632767856121e-05,1.0686729183362331e-05,-0.004414229653775692,0.0015823160065338016,5.587632767856121e-05,-0.00010159332305192947,-9.312720976595301e-06,-1.8793583906883136e-21,-0.0010854663560166955,5.587632767856121e-05,8.130171045195311e-05,-1.4399560103323106e-20,-1.926769982674159e-06,-1.124918867390079e-06,0.00018625443044584244,-0.00010159332305192947,-1.4399560103323106e-20,8.466110557492357e-06,2.117582368135751e-22,1.481183410998228e-22,5.587632767856121e-05,-9.312720976595301e-06,-1.926769982674159e-06,2.117582368135751e-22,3.211283114978869e-07,-5.059116840906604e-24,1.0686729183362331e-05,-1.8793583906883136e-21,-1.124918867390079e-06,1.481183410998228e-22,-5.059116840906604e-24,1.9395152150991635e-08,13.0,60.0,0.027694031596183777,-0.004341559950262308,-0.0010503773810341954,0.00018315018678549677,5.404431794886477e-05,1.016962960420642e-05,-0.004341559950262308,0.0015560941537842155,5.404431794886477e-05,-9.990009857574478e-05,-9.007386324810795e-06,-9.399000259105208e-22,-0.0010503773810341954,5.404431794886477e-05,7.733656093478203e-05,-1.2705494208814505e-20,-1.8320107528779772e-06,-1.0520305977479438e-06,0.00018315018678549677,-9.990009857574478e-05,-1.2705494208814505e-20,8.325007911480498e-06,1.6940658945086007e-21,4.917523802598032e-23,5.404431794886477e-05,-9.007386324810795e-06,-1.8320107528779772e-06,1.6940658945086007e-21,3.053351065318566e-07,1.4285071924976588e-23,1.016962960420642e-05,-9.399000259105208e-22,-1.0520305977479438e-06,4.917523802598032e-23,1.4285071924976588e-23,1.783102732133557e-08,13.0,61.0,0.027256544679403305,-0.004271244164556265,-0.001016962924040854,0.0001801477192202583,5.230095121078193e-05,9.685360964795109e-06,-0.004271244164556265,0.0015307273715734482,5.230095121078193e-05,-9.826239693211392e-05,-8.71682550496189e-06,-9.805462796895379e-22,-0.001016962924040854,5.230095121078193e-05,7.362516043940559e-05,-4.235164736271502e-21,-1.7433650327802752e-06,-9.849519528870587e-07,0.0001801477192202583,-9.826239693211392e-05,-4.235164736271502e-21,8.188532774511259e-06,-1.5881867761018131e-22,5.464789113619143e-23,5.230095121078193e-05,-8.71682550496189e-06,-1.7433650327802752e-06,-1.5881867761018131e-22,2.905608482706157e-07,7.903700750187901e-24,9.685360964795109e-06,-9.805462796895379e-22,-9.849519528870587e-07,5.464789113619143e-23,7.903700750187901e-24,1.6415865999874768e-08,13.0,62.0,0.026832662522792816,-0.004203170072287321,-0.0009851179784163833,0.00017724210920277983,5.0640603149076924e-05,9.2313603090588e-06,-0.004203170072287321,0.0015061743324622512,5.0640603149076924e-05,-9.667751874076203e-05,-8.440100828011055e-06,3.275265256256328e-21,-0.0009851179784163833,5.0640603149076924e-05,7.014752918621525e-05,-9.740878893424454e-21,-1.6603476069576573e-06,-9.231359854311449e-07,0.00017724210920277983,-9.667751874076203e-05,-9.740878893424454e-21,8.056459591898602e-06,3.546950466627383e-21,-2.420147254651756e-22,5.0640603149076924e-05,-8.440100828011055e-06,-1.6603476069576573e-06,3.546950466627383e-21,2.7672462010741583e-07,-4.907887077779852e-24,9.2313603090588e-06,3.275265256256328e-21,-9.231359854311449e-07,-2.420147254651756e-22,-4.907887077779852e-24,1.5133377218035093e-08,13.0,63.0,0.026421761140227318,-0.004137231968343258,-0.0009547458030283451,0.00017442874377593398,4.9058086005970836e-05,8.805297511571553e-06,-0.004137231968343258,0.0014823966193944216,4.9058086005970836e-05,-9.514295379631221e-05,-8.176347364496905e-06,2.307339539359976e-20,-0.0009547458030283451,4.9058086005970836e-05,6.688553548883647e-05,8.046812998915853e-20,-1.5825188484086539e-06,-8.660948083161202e-07,0.00017442874377593398,-9.514295379631221e-05,8.046812998915853e-20,7.928579179861117e-06,9.529120656610879e-22,-1.3618174721719007e-21,4.9058086005970836e-05,-8.176347364496905e-06,-1.5825188484086539e-06,9.529120656610879e-22,2.6375315087534545e-07,-1.6073631642923945e-22,8.805297511571553e-06,2.307339539359976e-20,-8.660948083161202e-07,-1.3618174721719007e-21,-1.6073631642923945e-22,1.396927107322199e-08,13.0,64.0,0.02602325566112995,-0.004073330666869879,-0.0009257569327019155,0.00017170330102089792,4.754860492539592e-05,8.40505617816234e-06,-0.004073330666869879,0.0014593579107895494,4.754860492539592e-05,-9.365634468849748e-05,-7.924767487565987e-06,-8.704673617488397e-21,-0.0009257569327019155,4.754860492539592e-05,6.382272840710357e-05,-2.7316812548951186e-20,-1.5094794889591867e-06,-8.133925462061597e-07,0.00017170330102089792,-9.365634468849748e-05,-2.7316812548951186e-20,7.804695087543223e-06,-8.999725064576941e-22,5.211772012580218e-22,4.754860492539592e-05,-7.924767487565987e-06,-1.5094794889591867e-06,-8.999725064576941e-22,2.515799337743374e-07,6.364826395023486e-23,8.40505617816234e-06,-8.704673617488397e-21,-8.133925462061597e-07,5.211772012580218e-22,6.364826395023486e-23,1.2910993163472995e-08,14.0,3.0,0.3035714328289032,-0.0625,-0.20000000298023224,0.0029761905316263437,0.014285714365541935,0.0357142873108387,-0.0625,0.02300824224948883,0.014285714365541935,-0.0014880952658131719,-0.002197802299633622,-8.673617379884035e-19,-0.20000000298023224,0.014285714365541935,0.5571428537368774,2.1637371851598315e-18,-0.014285714365541935,-0.2142857164144516,0.0029761905316263437,-0.0014880952658131719,2.1637371851598315e-18,0.00011446886492194608,9.710156080692785e-21,-1.0895556854099476e-18,0.014285714365541935,-0.002197802299633622,-0.014285714365541935,9.710156080692785e-21,0.002197802299633622,1.1275702593849246e-17,0.0357142873108387,-8.673617379884035e-19,-0.2142857164144516,-1.0895556854099476e-18,1.1275702593849246e-17,0.1071428582072258,14.0,4.0,0.2558928430080414,-0.049017857760190964,-0.1307142823934555,0.0022321429569274187,0.008571428246796131,0.01785714365541935,-0.049017857760190964,0.01758585125207901,0.008571428246796131,-0.0011160714784637094,-0.0013186812866479158,-2.6020852139652106e-18,-0.1307142823934555,0.008571428246796131,0.21214285492897034,-2.628132511069046e-18,-0.0057142856530845165,-0.0535714291036129,0.0022321429569274187,-0.0011160714784637094,-2.628132511069046e-18,8.585165051044896e-05,1.9681029473822054e-19,4.2336184255139104e-19,0.008571428246796131,-0.0013186812866479158,-0.0057142856530845165,1.9681029473822054e-19,0.0008791208965703845,-3.469446951953614e-18,0.01785714365541935,-2.6020852139652106e-18,-0.0535714291036129,4.2336184255139104e-19,-3.469446951953614e-18,0.01785714365541935,14.0,5.0,0.22112244367599487,-0.04035714268684387,-0.09224490076303482,0.0017857142956927419,0.0057142856530845165,0.010204081423580647,-0.04035714268684387,0.01424450520426035,0.0057142856530845165,-0.0008928571478463709,-0.0008791208965703845,-1.951563910473908e-18,-0.09224490076303482,0.0057142856530845165,0.10734693706035614,-5.437507428781244e-19,-0.0028571428265422583,-0.020408162847161293,0.0017857142956927419,-0.0008928571478463709,-5.437507428781244e-19,6.868132186355069e-05,3.3133692019266127e-20,7.605264634169901e-20,0.0057142856530845165,-0.0008791208965703845,-0.0028571428265422583,3.3133692019266127e-20,0.00043956044828519225,4.336808689942018e-19,0.010204081423580647,-1.951563910473908e-18,-0.020408162847161293,7.605264634169901e-20,4.336808689942018e-19,0.005102040711790323,14.0,6.0,0.19464285671710968,-0.03431122377514839,-0.06862244755029678,0.0014880952658131719,0.004081632476300001,0.0063775512389838696,-0.03431122377514839,0.011975078843533993,0.004081632476300001,-0.0007440476329065859,-0.0006279434892348945,1.3010426069826053e-18,-0.06862244755029678,0.004081632476300001,0.06252551078796387,-4.631017705275464e-19,-0.0016326530603691936,-0.00956632662564516,0.0014880952658131719,-0.0007440476329065859,-4.631017705275464e-19,5.723443246097304e-05,2.1740460075543046e-20,6.258708300987337e-20,0.004081632476300001,-0.0006279434892348945,-0.0016326530603691936,2.1740460075543046e-20,0.00025117740733549,-7.318364664277155e-19,0.0063775512389838696,1.3010426069826053e-18,-0.00956632662564516,6.258708300987337e-20,-7.318364664277155e-19,0.0019132653251290321,14.0,7.0,0.17380952835083008,-0.02984693832695484,-0.05306122452020645,0.0012755101779475808,0.0030612244736403227,0.004251700825989246,-0.02984693832695484,0.010331632569432259,0.0030612244736403227,-0.0006377550889737904,-0.00047095760237425566,-4.87890977618477e-18,-0.05306122452020645,0.0030612244736403227,0.03979591652750969,-1.1197671131149516e-18,-0.0010204081190750003,-0.005102040711790323,0.0012755101779475808,-0.0006377550889737904,-1.1197671131149516e-18,4.9058086005970836e-05,5.910753483847199e-20,1.0376324209866518e-19,0.0030612244736403227,-0.00047095760237425566,-0.0010204081190750003,5.910753483847199e-20,0.00015698587230872363,1.043544591017298e-18,0.004251700825989246,-4.87890977618477e-18,-0.005102040711790323,1.0376324209866518e-19,1.043544591017298e-18,0.0008503401186317205,14.0,8.0,0.1569940447807312,-0.0264136902987957,-0.04226190596818924,0.0011160714784637094,0.0023809524718672037,0.0029761905316263437,-0.0264136902987957,0.009085966274142265,0.0023809524718672037,-0.0005580357392318547,-0.00036630037357099354,2.8189256484623115e-18,-0.04226190596818924,0.0023809524718672037,0.026955781504511833,3.20445245659068e-19,-0.0006802721181884408,-0.0029761905316263437,0.0011160714784637094,-0.0005580357392318547,3.20445245659068e-19,4.292582525522448e-05,3.6927194007222596e-20,-7.714480263125603e-20,0.0023809524718672037,-0.00036630037357099354,-0.0006802721181884408,3.6927194007222596e-20,0.00010465725063113496,-4.946672411965114e-19,0.0029761905316263437,2.8189256484623115e-18,-0.0029761905316263437,-7.714480263125603e-20,-4.946672411965114e-19,0.00042517005931586027,14.0,9.0,0.14313852787017822,-0.02369047701358795,-0.03445887565612793,0.0009920635493472219,0.0019047618843615055,0.0021645021624863148,-0.02369047701358795,0.008108974434435368,0.0019047618843615055,-0.0004960317746736109,-0.00029304029885679483,-4.0561879256273445e-19,-0.03445887565612793,0.0019047618843615055,0.019128015264868736,0.0,-0.0004761904710903764,-0.001855287584476173,0.0009920635493472219,-0.0004960317746736109,0.0,3.815628951997496e-05,0.0,-0.0,0.0019047618843615055,-0.00029304029885679483,-0.0004761904710903764,0.0,7.326007471419871e-05,1.0140469814068361e-19,0.0021645021624863148,-4.0561879256273445e-19,-0.001855287584476173,-0.0,1.0140469814068361e-19,0.00023191094805952162,14.0,10.0,0.13152597844600677,-0.021477272734045982,-0.02863636426627636,0.0008928571478463709,0.0015584415523335338,0.001623376621864736,-0.021477272734045982,0.007322052959352732,0.0015584415523335338,-0.00044642857392318547,-0.00023976023658178747,-0.0,-0.02863636426627636,0.0015584415523335338,0.014074675738811493,1.3552527156068805e-20,-0.00034632033202797174,-0.0012175324372947216,0.0008928571478463709,-0.00044642857392318547,1.3552527156068805e-20,3.4340660931775346e-05,-1.6940658945086007e-21,-0.0,0.0015584415523335338,-0.00023976023658178747,-0.00034632033202797174,-1.6940658945086007e-21,5.328005499904975e-05,-0.0,0.001623376621864736,-0.0,-0.0012175324372947216,-0.0,-0.0,0.00013528138515539467,14.0,11.0,0.12165334820747375,-0.01964285783469677,-0.024175824597477913,0.000811688310932368,0.0012987012742087245,0.001248751301318407,-0.01964285783469677,0.006674575619399548,0.0012987012742087245,-0.000405844155466184,-0.00019980019715148956,-1.2796794268925046e-18,-0.024175824597477913,0.0012987012742087245,0.010662670247256756,-1.2393041208083319e-18,-0.0002597402490209788,-0.0008325008093379438,0.000811688310932368,-0.000405844155466184,-1.2393041208083319e-18,3.121878035017289e-05,3.5575383784680614e-20,9.953586449237904e-20,0.0012987012742087245,-0.00019980019715148956,-0.0002597402490209788,3.5575383784680614e-20,3.996003943029791e-05,-2.8573502251707755e-21,0.001248751301318407,-1.2796794268925046e-18,-0.0008325008093379438,9.953586449237904e-20,-2.8573502251707755e-21,8.325008093379438e-05,14.0,12.0,0.11315737664699554,-0.01809752732515335,-0.020682888105511665,0.0007440476329065859,0.001098901149816811,0.0009811617201194167,-0.01809752732515335,0.006132449489086866,0.001098901149816811,-0.00037202381645329297,-0.00016906170640140772,-2.710505431213761e-20,-0.020682888105511665,0.001098901149816811,0.008273868821561337,-0.0,-0.00019980019715148956,-0.00058869703207165,0.0007440476329065859,-0.00037202381645329297,-0.0,2.861721623048652e-05,-1.6940658945086007e-21,0.0,0.001098901149816811,-0.00016906170640140772,-0.00019980019715148956,-1.6940658945086007e-21,3.073849075008184e-05,3.3881317890172014e-21,0.0009811617201194167,-2.710505431213761e-20,-0.00058869703207165,0.0,3.3881317890172014e-21,5.3517909691436216e-05,14.0,13.0,0.10576923191547394,-0.01677786558866501,-0.017896389588713646,0.0006868132040835917,0.0009419152047485113,0.0007849293760955334,-0.01677786558866501,0.005671869497746229,0.0009419152047485113,-0.00034340660204179585,-0.00014491003821603954,3.3881317890172014e-19,-0.017896389588713646,0.0009419152047485113,0.006550592370331287,-5.148753411093643e-20,-0.00015698587230872363,-0.00042814327753148973,0.0006868132040835917,-0.00034340660204179585,-5.148753411093643e-20,2.6415891625219956e-05,7.163136919877734e-21,-2.5640323030768987e-21,0.0009419152047485113,-0.00014491003821603954,-0.00015698587230872363,7.163136919877734e-21,2.4151671823346987e-05,-5.929230630780102e-20,0.0007849293760955334,3.3881317890172014e-19,-0.00042814327753148973,-2.5640323030768987e-21,-5.929230630780102e-20,3.567860767361708e-05,14.0,14.0,0.09928571432828903,-0.015637755393981934,-0.015637755393981934,0.0006377550889737904,0.0008163265301845968,0.0006377550889737904,-0.015637755393981934,0.005275706294924021,0.0008163265301845968,-0.0003188775444868952,-0.000125588703667745,-1.2197274440461925e-19,-0.015637755393981934,0.0008163265301845968,0.005275706294924021,1.7299305071643393e-19,-0.000125588703667745,-0.0003188775444868952,0.0006377550889737904,-0.0003188775444868952,1.7299305071643393e-19,2.4529043002985418e-05,-1.174141278150325e-20,-4.950439686511539e-21,0.0008163265301845968,-0.000125588703667745,-0.000125588703667745,-1.174141278150325e-20,1.932133818627335e-05,3.3034284942917713e-20,0.0006377550889737904,-1.2197274440461925e-19,-0.0003188775444868952,-4.950439686511539e-21,3.3034284942917713e-20,2.4529043002985418e-05,14.0,15.0,0.0935504212975502,-0.014642857015132904,-0.013781512156128883,0.0005952381179668009,0.0007142857066355646,0.0005252101109363139,-0.014642857015132904,0.004931318573653698,0.0007142857066355646,-0.00029761905898340046,-0.00010989011207129806,-3.9979955110402976e-19,-0.013781512156128883,0.0007142857066355646,0.004312032368034124,-3.386584185789903e-19,-0.0001020408162730746,-0.00024240465427283198,0.0005952381179668009,-0.00029761905898340046,-3.386584185789903e-19,2.2893773348187096e-05,2.7495838990432096e-20,8.450065970916155e-21,0.0007142857066355646,-0.00010989011207129806,-0.0001020408162730746,2.7495838990432096e-20,1.5698587958468124e-05,3.6422416731934915e-20,0.0005252101109363139,-3.9979955110402976e-19,-0.00024240465427283198,8.450065970916155e-21,3.6422416731934915e-20,1.731461816234514e-05,14.0,16.0,0.08844099938869476,-0.013767069205641747,-0.012237395159900188,0.0005580357392318547,0.0006302521214820445,0.0004376750730443746,-0.013767069205641747,0.0046291714534163475,0.0006302521214820445,-0.00027901786961592734,-9.696186316432431e-05,1.3552527156068805e-20,-0.012237395159900188,0.0006302521214820445,0.0035699279978871346,-0.0,-8.403361425735056e-05,-0.00018757503130473197,0.0005580357392318547,-0.00027901786961592734,-0.0,2.146291262761224e-05,-8.470329472543003e-22,4.235164736271502e-22,0.0006302521214820445,-9.696186316432431e-05,-8.403361425735056e-05,-8.470329472543003e-22,1.2928247997479048e-05,-1.6940658945086007e-21,0.0004376750730443746,1.3552527156068805e-20,-0.00018757503130473197,4.235164736271502e-22,-1.6940658945086007e-21,1.250500190508319e-05,14.0,17.0,0.08386038988828659,-0.012990196235477924,-0.010939112864434719,0.0005252101109363139,0.0005602241144515574,0.0003685684932861477,-0.012990196235477924,0.004361937288194895,0.0005602241144515574,-0.00026260505546815693,-8.618832362117246e-05,5.759824041329242e-20,-0.010939112864434719,0.0005602241144515574,0.0029890902806073427,-0.0,-7.002801430644467e-05,-0.00014742738858330995,0.0005252101109363139,-0.00026260505546815693,-0.0,2.0200388462399133e-05,0.0,0.0,0.0005602241144515574,-8.618832362117246e-05,-7.002801430644467e-05,0.0,1.0773540452646557e-05,-6.776263578034403e-21,0.0003685684932861477,5.759824041329242e-20,-0.00014742738858330995,0.0,-6.776263578034403e-21,9.214211786456872e-06,14.0,18.0,0.0797305777668953,-0.012296365574002266,-0.009837092831730843,0.0004960317746736109,0.0005012531182728708,0.00031328320619650185,-0.012296365574002266,0.0041238912381231785,0.0005012531182728708,-0.00024801588733680546,-7.711586658842862e-05,2.371692252312041e-20,-0.009837092831730843,0.0005012531182728708,0.0025279191322624683,-0.0,-5.897095616091974e-05,-0.000117481205961667,0.0004960317746736109,-0.00024801588733680546,-0.0,1.907814475998748e-05,0.0,0.0,0.0005012531182728708,-7.711586658842862e-05,-5.897095616091974e-05,0.0,9.072455213754438e-06,-2.541098841762901e-21,0.00031328320619650185,2.371692252312041e-20,-0.000117481205961667,0.0,-2.541098841762901e-21,6.910659067216329e-06,14.0,19.0,0.07598818838596344,-0.011672932654619217,-0.008893663063645363,0.000469924823846668,0.000451127823907882,0.0002685284707695246,-0.011672932654619217,0.003910497296601534,0.000451127823907882,-0.000234962411923334,-6.94042828399688e-05,-2.371692252312041e-20,-0.008893663063645363,0.000451127823907882,0.0021570734679698944,-0.0,-5.012531255488284e-05,-9.477475396124646e-05,0.000469924823846668,-0.000234962411923334,-0.0,1.8074031686410308e-05,0.0,0.0,0.000451127823907882,-6.94042828399688e-05,-5.012531255488284e-05,0.0,7.711586476943921e-06,2.541098841762901e-21,0.0002685284707695246,-2.371692252312041e-20,-9.477475396124646e-05,0.0,2.541098841762901e-21,5.26526400790317e-06,14.0,20.0,0.07258117198944092,-0.01110969390720129,-0.008079777471721172,0.00044642857392318547,0.0004081632650922984,0.00023191094805952162,-0.01110969390720129,0.0037181121297180653,0.0004081632650922984,-0.00022321428696159273,-6.27943518338725e-05,-1.0164395367051604e-20,-0.008079777471721172,0.0004081632650922984,0.001855450333096087,-0.0,-4.296455517760478e-05,-7.730365177849308e-05,0.00044642857392318547,-0.00022321428696159273,-0.0,1.7170330465887673e-05,0.0,0.0,0.0004081632650922984,-6.27943518338725e-05,-4.296455517760478e-05,0.0,6.609931460843654e-06,1.2705494208814505e-21,0.00023191094805952162,-1.0164395367051604e-20,-7.730365177849308e-05,0.0,1.2705494208814505e-21,4.068613179697422e-06,14.0,21.0,0.06946640461683273,-0.010598329827189445,-0.0073727513663470745,0.00042517005931586027,0.0003710575110744685,0.00020166169269941747,-0.010598329827189445,0.00354377762414515,0.0003710575110744685,-0.00021258502965793014,-5.7085770095000044e-05,8.470329472543003e-21,-0.0073727513663470745,0.0003710575110744685,0.0016076045576483011,-0.0,-3.710575037985109e-05,-6.368263711920008e-05,0.00042517005931586027,-0.00021258502965793014,-0.0,1.635269472899381e-05,0.0,0.0,0.0003710575110744685,-5.7085770095000044e-05,-3.710575037985109e-05,0.0,5.708577191398945e-06,-6.352747104407253e-22,0.00020166169269941747,8.470329472543003e-21,-6.368263711920008e-05,0.0,-6.352747104407253e-22,3.1841320833336795e-06,14.0,22.0,0.06660784780979156,-0.010131987743079662,-0.006754658184945583,0.000405844155466184,0.00033879163675010204,0.00017645397747401148,-0.010131987743079662,0.0033850660547614098,0.00033879163675010204,-0.000202922077733092,-5.2121791668469086e-05,-1.5585406229479126e-19,-0.006754658184945583,0.00033879163675010204,0.001402052934281528,-3.3078751070721267e-19,-3.226587068638764e-05,-5.2936193242203444e-05,0.000405844155466184,-0.000202922077733092,-3.3078751070721267e-19,1.5609390175086446e-05,9.020407003271468e-21,1.2959755311946528e-20,0.00033879163675010204,-5.2121791668469086e-05,-3.226587068638764e-05,9.020407003271468e-21,4.963980245520361e-06,-1.4823076576950256e-21,0.00017645397747401148,-1.5585406229479126e-19,-5.2936193242203444e-05,1.2959755311946528e-20,-1.4823076576950256e-21,2.5207712042174535e-06,14.0,23.0,0.06397515535354614,-0.009704968892037868,-0.006211180239915848,0.0003881987649947405,0.0003105590003542602,0.0001552795001771301,-0.009704968892037868,0.0032399664632976055,0.0003105590003542602,-0.00019409938249737024,-4.777830690727569e-05,1.6771252355635147e-19,-0.006211180239915848,0.0003105590003542602,0.0012301363749429584,2.9914027840457567e-19,-2.8232636395841837e-05,-4.436557355802506e-05,0.0003881987649947405,-0.00019409938249737024,2.9914027840457567e-19,1.493072159064468e-05,-7.549687952087854e-21,-1.1366695117255327e-20,0.0003105590003542602,-4.777830690727569e-05,-2.8232636395841837e-05,-7.549687952087854e-21,4.34348248745664e-06,-1.6940658945086007e-21,0.0001552795001771301,1.6771252355635147e-19,-4.436557355802506e-05,-1.1366695117255327e-20,-1.6940658945086007e-21,2.0166169178992277e-06,14.0,24.0,0.061542581766843796,-0.00931250024586916,-0.005730769131332636,0.00037202381645329297,0.0002857142826542258,0.00013736264372710139,-0.00931250024586916,0.003106799442321062,0.0002857142826542258,-0.00018601190822664648,-4.395604264573194e-05,1.581923597148109e-19,-0.005730769131332636,0.0002857142826542258,0.0010852408595383167,2.574980159653073e-19,-2.4844721338013187e-05,-3.7462537875398993e-05,0.00037202381645329297,-0.00018601190822664648,2.574980159653073e-19,1.430860811524326e-05,-2.329340604949326e-21,-9.858471018551963e-21,0.0002857142826542258,-4.395604264573194e-05,-2.4844721338013187e-05,-2.329340604949326e-21,3.822264716291102e-06,-2.060083016195337e-21,0.00013736264372710139,1.581923597148109e-19,-3.7462537875398993e-05,-9.858471018551963e-21,-2.060083016195337e-21,1.628805989639659e-06,14.0,25.0,0.059288155287504196,-0.008950549177825451,-0.005304029211401939,0.0003571428533177823,0.00026373626315034926,0.00012210012937430292,-0.008950549177825451,0.0029841505456715822,0.00026373626315034926,-0.00017857142665889114,-4.057481055497192e-05,3.828695291846333e-20,-0.005304029211401939,0.00026373626315034926,0.0009622551151551306,1.2197274440461925e-19,-2.197802132286597e-05,-3.1852207030169666e-05,0.0003571428533177823,-0.00017857142665889114,1.2197274440461925e-19,1.3736264008912258e-05,-7.623296525288703e-21,-2.8537864419018e-21,0.00026373626315034926,-4.057481055497192e-05,-2.197802132286597e-05,-7.623296525288703e-21,3.3812341371231014e-06,-1.3759849596457887e-22,0.00012210012937430292,3.828695291846333e-20,-3.1852207030169666e-05,-2.8537864419018e-21,-1.3759849596457887e-22,1.3271752550281235e-06,14.0,26.0,0.057193003594875336,-0.008615690283477306,-0.004923251457512379,0.00034340660204179585,0.00024420025874860585,0.00010901796485995874,-0.008615690283477306,0.002870820462703705,0.00024420025874860585,-0.00017170330102089792,-3.756926889764145e-05,2.89189890171628e-19,-0.004923251457512379,0.00024420025874860585,0.0008571864455007017,4.472333961502706e-19,-1.953601895365864e-05,-2.7254491214989685e-05,0.00034340660204179585,-0.00017170330102089792,4.472333961502706e-19,1.3207945812609978e-05,-1.9058241313221758e-21,-1.7338180621728824e-20,0.00024420025874860585,-3.756926889764145e-05,-1.953601895365864e-05,-1.9058241313221758e-21,3.005541429956793e-06,-4.022820445225107e-21,0.00010901796485995874,2.89189890171628e-19,-2.7254491214989685e-05,-1.7338180621728824e-20,-4.022820445225107e-21,1.0901796940743225e-06,14.0,27.0,0.05524083226919174,-0.008304988965392113,-0.00458206282928586,0.0003306878206785768,0.00022675737272948027,9.774024510988966e-05,-0.008304988965392113,0.002765785902738571,0.00022675737272948027,-0.0001653439103392884,-3.488575021037832e-05,-6.996595412650119e-20,-0.00458206282928586,0.00022675737272948027,0.0007668850012123585,-1.2536087619363645e-19,-1.744287510518916e-05,-2.345765824429691e-05,0.0003306878206785768,-0.0001653439103392884,-1.2536087619363645e-19,1.2718763173324987e-05,6.3527471044072525e-21,3.462435468582408e-21,0.00022675737272948027,-3.488575021037832e-05,-1.744287510518916e-05,6.3527471044072525e-21,2.683519142010482e-06,1.7039512682841062e-21,9.774024510988966e-05,-6.996595412650119e-20,-2.345765824429691e-05,3.462435468582408e-21,1.7039512682841062e-21,9.022176641337865e-07,14.0,28.0,0.05341748893260956,-0.008015922270715237,-0.004275158513337374,0.0003188775444868952,0.00021111892419867218,8.79662184161134e-05,-0.008015922270715237,0.002668167697265744,0.00021111892419867218,-0.0001594387722434476,-3.2479834771947935e-05,-4.514988628388254e-20,-0.004275158513337374,0.00021111892419867218,0.0006888431962579489,-4.0657581468206416e-20,-1.5638439435861073e-05,-2.029989627772011e-05,0.0003188775444868952,-0.0001594387722434476,-4.0657581468206416e-20,1.2264521501492709e-05,-2.964615315390051e-21,2.4427517925227127e-21,0.00021111892419867218,-3.2479834771947935e-05,-1.5638439435861073e-05,-2.964615315390051e-21,2.4059138468146557e-06,9.948412975728075e-22,8.79662184161134e-05,-4.514988628388254e-20,-2.029989627772011e-05,2.4427517925227127e-21,9.948412975728075e-22,7.518480629187252e-07,14.0,29.0,0.05171063169836998,-0.00774630531668663,-0.00399809330701828,0.00030788176809437573,0.0001970443408936262,7.945336255943403e-05,-0.00774630531668663,0.0025772072840481997,0.0001970443408936262,-0.00015394088404718786,-3.0314513423945755e-05,8.727050791762518e-20,-0.00399809330701828,0.0001970443408936262,0.0006210478022694588,1.0842021724855044e-19,-1.4074595128477085e-05,-1.7656302588875405e-05,0.00030788176809437573,-0.00015394088404718786,1.0842021724855044e-19,1.1841606465168297e-05,5.717472393966527e-21,-5.076846455041566e-21,0.0001970443408936262,-3.0314513423945755e-05,-1.4074595128477085e-05,5.717472393966527e-21,2.1653222574968822e-06,-1.4143205199265558e-21,7.945336255943403e-05,8.727050791762518e-20,-1.7656302588875405e-05,-5.076846455041566e-21,-1.4143205199265558e-21,6.305822353169788e-07,14.0,30.0,0.05010944604873657,-0.00749423960223794,-0.00374711980111897,0.00029761905898340046,0.00018433180230204016,7.200460822787136e-05,-0.00749423960223794,0.002492245752364397,0.00018433180230204016,-0.00014880952949170023,-2.8358737836242653e-05,1.0111915927063943e-19,-0.00374711980111897,0.00018433180230204016,0.0005618700524792075,1.5246593050577406e-19,-1.2712537682091352e-05,-1.5429559425683692e-05,0.00029761905898340046,-0.00014880952949170023,1.5246593050577406e-19,1.1446886674093548e-05,6.1409888675936775e-21,-6.762810180073695e-21,0.00018433180230204016,-2.8358737836242653e-05,-1.2712537682091352e-05,6.1409888675936775e-21,1.9557751329557505e-06,-7.250948422495221e-22,7.200460822787136e-05,1.0111915927063943e-19,-1.5429559425683692e-05,-6.762810180073695e-21,-7.250948422495221e-22,5.320537752595556e-07,14.0,31.0,0.04860442131757736,-0.007258064579218626,-0.0035190614871680737,0.00028801843291148543,0.00017281106556765735,6.545873475261033e-05,-0.007258064579218626,0.002412708243355155,0.00017281106556765735,-0.00014400921645574272,-2.6586316380416974e-05,-1.7861920043207004e-20,-0.0035190614871680737,0.00017281106556765735,0.0005099822301417589,-3.3881317890172014e-21,-1.152073764387751e-05,-1.3543186469178181e-05,0.00028801843291148543,-0.00014400921645574272,-3.3881317890172014e-21,1.107763182517374e-05,1.2705494208814505e-21,2.8211589529134673e-22,0.00017281106556765735,-2.6586316380416974e-05,-1.152073764387751e-05,1.2705494208814505e-21,1.7724211147651658e-06,6.336117664089704e-22,6.545873475261033e-05,-1.7861920043207004e-20,-1.3543186469178181e-05,2.8211589529134673e-22,6.336117664089704e-22,4.514395470778254e-07,14.0,32.0,0.047187142074108124,-0.007036323193460703,-0.0033112107776105404,0.00027901786961592734,0.00016233765927609056,5.9682963183149695e-05,-0.007036323193460703,0.0023380916099995375,0.00016233765927609056,-0.00013950893480796367,-2.4975024643936194e-05,-4.4842737320335405e-20,-0.0033112107776105404,0.00016233765927609056,0.000464294949779287,5.759824041329242e-20,-1.0473397196619771e-05,-1.193659318232676e-05,0.00027901786961592734,-0.00013950893480796367,5.759824041329242e-20,1.073145631380612e-05,-1.8846483076408183e-20,2.564209815713235e-21,0.00016233765927609056,-2.4975024643936194e-05,-1.0473397196619771e-05,-1.8846483076408183e-20,1.6112919638544554e-06,5.83708602249532e-22,5.9682963183149695e-05,-4.4842737320335405e-20,-1.193659318232676e-05,2.564209815713235e-21,5.83708602249532e-22,3.8505137922584254e-07,14.0,33.0,0.045850157737731934,-0.006827731151133776,-0.003121248446404934,0.00027056277031078935,0.00015278838691301644,5.4567281040363014e-05,-0.006827731151133776,0.0022679525427520275,0.00015278838691301644,-0.00013528138515539467,-2.350590511923656e-05,7.569785048239911e-20,-0.003121248446404934,0.00015278838691301644,0.00042390855378471315,1.4568966692773966e-19,-9.549274182063527e-06,-1.0561408998910338e-05,0.00027056277031078935,-0.00013528138515539467,1.4568966692773966e-19,1.0406260116724297e-05,1.5881867761018131e-21,-4.606049823941048e-21,0.00015278838691301644,-2.350590511923656e-05,-9.549274182063527e-06,1.5881867761018131e-21,1.469119069952285e-06,-7.338281509372684e-22,5.4567281040363014e-05,7.569785048239911e-20,-1.0561408998910338e-05,-4.606049823941048e-21,-7.338281509372684e-22,3.3004403121594805e-07,14.0,34.0,0.04458683356642723,-0.006631152238696814,-0.002947178902104497,0.00026260505546815693,0.00014405761612579226,5.002000762033276e-05,-0.006631152238696814,0.0022018998861312866,0.00014405761612579226,-0.00013130252773407847,-2.2162710592965595e-05,-5.1520291755663236e-20,-0.002947178902104497,0.00014405761612579226,0.00038807568489573896,-2.0667603913004928e-19,-8.730765330255963e-06,-9.378751201438718e-06,0.00026260505546815693,-0.00013130252773407847,-2.0667603913004928e-19,1.0100194231199566e-05,1.1540823906339842e-20,3.2952773321354645e-21,0.00014405761612579226,-2.2162710592965595e-05,-8.730765330255963e-06,1.1540823906339842e-20,1.343194639957801e-06,4.336116212945721e-22,5.002000762033276e-05,-5.1520291755663236e-20,-9.378751201438718e-06,3.2952773321354645e-21,4.336116212945721e-22,2.842045887518907e-07,14.0,35.0,0.04339125007390976,-0.006445578299462795,-0.002787277102470398,0.00025510202976875007,0.0001360544265480712,4.596433063852601e-05,-0.006445578299462795,0.002139586489647627,0.0001360544265480712,-0.00012755101488437504,-2.093144939863123e-05,-8.208168148326246e-20,-0.002787277102470398,0.0001360544265480712,0.00035617194953374565,-1.5924219408380846e-19,-8.003201401152182e-06,-8.357151273230556e-06,0.00025510202976875007,-0.00012755101488437504,-1.5924219408380846e-19,9.811617019295227e-06,1.376428539288238e-21,4.253520229493223e-21,0.0001360544265480712,-2.093144939863123e-05,-8.003201401152182e-06,1.376428539288238e-21,1.231261762768554e-06,1.3073956117731604e-21,4.596433063852601e-05,-8.208168148326246e-20,-8.357151273230556e-06,4.253520229493223e-21,1.3073956117731604e-21,2.457985601722612e-07,14.0,36.0,0.04225809499621391,-0.006270109210163355,-0.0026400459464639425,0.00024801588733680546,0.00012870013597421348,4.2335570469731465e-05,-0.006270109210163355,0.0020807036198675632,0.00012870013597421348,-0.00012400794366840273,-1.9800019799731672e-05,6.12579394748199e-20,-0.0026400459464639425,0.00012870013597421348,0.00032767304219305515,1.5585406229479126e-19,-7.354292847594479e-06,-7.470982836821349e-06,0.00024801588733680546,-0.00012400794366840273,1.5585406229479126e-19,9.53907237999374e-06,-2.6469779601696886e-21,-3.7287011919128195e-21,0.00012870013597421348,-1.9800019799731672e-05,-7.354292847594479e-06,-2.6469779601696886e-21,1.131429712586396e-06,-5.768593710824921e-22,4.2335570469731465e-05,6.12579394748199e-20,-7.470982836821349e-06,-3.7287011919128195e-21,-5.768593710824921e-22,2.1345664436012157e-07,14.0,37.0,0.04118260741233826,-0.006103942170739174,-0.0025041813496500254,0.00024131273676175624,0.00012192643771413714,3.9078986446838826e-05,-0.006103942170739174,0.002024975372478366,0.00012192643771413714,-0.00012065636838087812,-1.8757913494482636e-05,-1.500050681834288e-20,-0.0025041813496500254,0.00012192643771413714,0.00030213638092391193,-9.147955830346444e-20,-6.77369098411873e-06,-6.699254754494177e-06,0.00024131273676175624,-0.00012065636838087812,-9.147955830346444e-20,9.281259735871572e-06,6.776263578034403e-21,1.1787363108817033e-21,0.00012192643771413714,-1.8757913494482636e-05,-6.77369098411873e-06,6.776263578034403e-21,1.0421063052490354e-06,1.1062713966668074e-22,3.9078986446838826e-05,-1.500050681834288e-20,-6.699254754494177e-06,1.1787363108817033e-21,1.1062713966668074e-22,1.8609041774197976e-07,14.0,38.0,0.04016049578785896,-0.0059463563375175,-0.0023785424418747425,0.000234962411923334,0.00011567379988264292,3.6148063372820616e-05,-0.0059463563375175,0.0019721549469977617,0.00011567379988264292,-0.000117481205961667,-1.7795970052247867e-05,-4.454947190482338e-21,-0.0023785424418747425,0.00011567379988264292,0.0002791867882478982,-4.573977915173222e-20,-6.252637831494212e-06,-6.024677077220986e-06,0.000234962411923334,-0.000117481205961667,-4.573977915173222e-20,9.037015843205154e-06,3.282252670610414e-21,4.795523055726492e-22,0.00011567379988264292,-1.7795970052247867e-05,-6.252637831494212e-06,3.282252670610414e-21,9.619442380426335e-07,-1.127043682023087e-22,3.6148063372820616e-05,-4.454947190482338e-21,-6.024677077220986e-06,4.795523055726492e-22,-1.127043682023087e-22,1.6282911019516177e-07,14.0,39.0,0.03918788582086563,-0.005796703509986401,-0.0022621280513703823,0.00022893772984389216,0.00010989011207129806,3.350308179506101e-05,-0.005796703509986401,0.0019220203394070268,0.00010989011207129806,-0.00011446886492194608,-1.6906171367736533e-05,-3.243309912100212e-20,-0.0022621280513703823,0.00010989011207129806,0.0002585046458989382,-7.115076756936123e-20,-5.783690085081616e-06,-5.4329320846591145e-06,0.00022893772984389216,-0.00011446886492194608,-7.115076756936123e-20,8.805297511571553e-06,0.0,1.849108944986875e-21,0.00010989011207129806,-1.6906171367736533e-05,-5.783690085081616e-06,0.0,8.897984571376583e-07,3.5309088475910813e-22,3.350308179506101e-05,-3.243309912100212e-20,-5.4329320846591145e-06,1.849108944986875e-21,3.5309088475910813e-22,1.429718992085327e-07,14.0,40.0,0.03826126083731651,-0.005654398817569017,-0.0021540566813200712,0.00022321428696159273,0.00010452961578266695,3.111000478384085e-05,-0.005654398817569017,0.001874371781013906,0.00010452961578266695,-0.00011160714348079637,-1.6081479770946316e-05,3.5639112234764143e-20,-0.0021540566813200712,0.00010452961578266695,0.0002398165815975517,8.470329472543003e-20,-5.360493105399655e-06,-4.912105850962689e-06,0.00022321428696159273,-0.00011160714348079637,8.470329472543003e-20,8.585165232943837e-06,-1.4823076576950256e-21,-1.8522401548007506e-21,0.00010452961578266695,-1.6081479770946316e-05,-5.360493105399655e-06,-1.4823076576950256e-21,8.246912557297037e-07,-4.696220487670802e-22,3.111000478384085e-05,3.5639112234764143e-20,-4.912105850962689e-06,-1.8522401548007506e-21,-4.696220487670802e-22,1.2595143061844283e-07,14.0,41.0,0.03737743943929672,-0.005518914666026831,-0.0020535497460514307,0.00021777003712486476,9.955201676348224e-05,2.8939539333805442e-05,-0.005518914666026831,0.0018290289444848895,9.955201676348224e-05,-0.00010888501856243238,-1.531569432700053e-05,1.8776786647452054e-20,-0.0020535497460514307,9.955201676348224e-05,0.00022288788750302047,1.0333801956502464e-19,-4.977600838174112e-06,-4.452236680663191e-06,0.00021777003712486476,-0.00010888501856243238,1.0333801956502464e-19,8.375770448765252e-06,-6.03510974918689e-21,-1.4962435103635917e-21,9.955201676348224e-05,-1.531569432700053e-05,-4.977600838174112e-06,-6.03510974918689e-21,7.657847618247615e-07,4.9325790552019937e-23,2.8939539333805442e-05,1.8776786647452054e-20,-4.452236680663191e-06,-1.4962435103635917e-21,4.9325790552019937e-23,1.1130592270092166e-07,14.0,42.0,0.036533523350954056,-0.005389772355556488,-0.0019599171355366707,0.00021258502965793014,9.49216919252649e-05,2.696638875931967e-05,-0.005389772355556488,0.0017858283827081323,9.49216919252649e-05,-0.00010629251482896507,-1.4603337149310391e-05,-4.112343278709009e-20,-0.0019599171355366707,9.49216919252649e-05,0.00020751623378600925,-7.962109704190423e-20,-4.6303262024594005e-06,-4.044958586746361e-06,0.00021258502965793014,-0.00010629251482896507,-7.962109704190423e-20,8.176347364496905e-06,-2.8587361969832636e-21,2.4362193678952095e-21,9.49216919252649e-05,-1.4603337149310391e-05,-4.6303262024594005e-06,-2.8587361969832636e-21,7.123579166545824e-07,3.4967061106601053e-22,2.696638875931967e-05,-4.112343278709009e-20,-4.044958586746361e-06,2.4362193678952095e-21,3.4967061106601053e-22,9.865752303994668e-08,14.0,43.0,0.035726871341466904,-0.005266535561531782,-0.0018725460395216942,0.00020764119108207524,9.060707088792697e-05,2.5168630600092e-05,-0.005266535561531782,0.001744621666148305,9.060707088792697e-05,-0.00010382059554103762,-1.3939548807684332e-05,-2.790823053105526e-20,-0.0018725460395216942,9.060707088792697e-05,0.00019352659001015127,-1.4399560103323106e-19,-4.314622401579982e-06,-3.6832141177001176e-06,0.00020764119108207524,-0.00010382059554103762,-1.4399560103323106e-19,7.986200216691941e-06,1.122318655111948e-20,1.5499775345400772e-21,9.060707088792697e-05,-1.3939548807684332e-05,-4.314622401579982e-06,1.122318655111948e-20,6.63788057408965e-07,2.947898229470489e-22,2.5168630600092e-05,-2.790823053105526e-20,-3.6832141177001176e-06,1.5499775345400772e-21,2.947898229470489e-22,8.769557524601623e-08,14.0,44.0,0.034955061972141266,-0.005148809403181076,-0.0017908902373164892,0.000202922077733092,8.658008300699294e-05,2.3527198209194466e-05,-0.005148809403181076,0.00170527386944741,8.658008300699294e-05,-0.000101461038866546,-1.3320013749762438e-05,2.739458045122824e-20,-0.0017908902373164892,8.658008300699294e-05,0.00018076703418046236,7.962109704190423e-20,-4.026980604976416e-06,-3.3610281207074877e-06,0.000202922077733092,-0.000101461038866546,7.962109704190423e-20,7.804695087543223e-06,-1.0587911840678754e-22,-1.865766456130875e-21,8.658008300699294e-05,-1.3320013749762438e-05,-4.026980604976416e-06,-1.0587911840678754e-22,6.195355126692448e-07,-8.381376380910579e-23,2.3527198209194466e-05,2.739458045122824e-20,-3.3610281207074877e-06,-1.865766456130875e-21,-8.381376380910579e-23,7.816344549382848e-08,14.0,45.0,0.03421589359641075,-0.005036232061684132,-0.001714461948722601,0.00019841270113829523,8.281573536805809e-05,2.2025460566510446e-05,-0.005036232061684132,0.0016676620580255985,8.281573536805809e-05,-9.920635056914762e-05,-1.2740882084472105e-05,-1.4033584381056676e-20,-0.001714461948722601,8.281573536805809e-05,0.00016910526028368622,-5.251604272976662e-20,-3.7643515042873332e-06,-3.0733201583643677e-06,0.00019841270113829523,-9.920635056914762e-05,-5.251604272976662e-20,7.631258085893933e-06,1.6940658945086007e-21,8.938608413043742e-22,8.281573536805809e-05,-1.2740882084472105e-05,-3.7643515042873332e-06,1.6940658945086007e-21,5.791310400127259e-07,7.734221399993676e-23,2.2025460566510446e-05,-1.4033584381056676e-20,-3.0733201583643677e-06,8.938608413043742e-22,7.734221399993676e-23,6.984818412547611e-08,14.0,46.0,0.0335073359310627,-0.004928472451865673,-0.001642824150621891,0.00019409938249737024,7.929166167741641e-05,2.064886939479038e-05,-0.004928472451865673,0.0016316736582666636,7.929166167741641e-05,-9.704969124868512e-05,-1.2198716831335332e-05,-5.539287673382375e-21,-0.001642824150621891,7.929166167741641e-05,0.00015842563880141824,-2.202285662861181e-20,-3.524073918015347e-06,-2.815755124174757e-06,0.00019409938249737024,-9.704969124868512e-05,-2.202285662861181e-20,7.46536079532234e-06,7.411538288475128e-22,4.344182536582659e-22,7.929166167741641e-05,-1.2198716831335332e-05,-3.524073918015347e-06,7.411538288475128e-22,5.421651962933538e-07,6.123648344900719e-24,2.064886939479038e-05,-5.539287673382375e-21,-2.815755124174757e-06,4.344182536582659e-22,6.123648344900719e-24,6.257233309270305e-08,14.0,47.0,0.03282752260565758,-0.00482522789388895,-0.0015755846397951245,0.00018996960716322064,7.598783849971369e-05,1.9384653569431975e-05,-0.00482522789388895,0.0015972059918567538,7.598783849971369e-05,-9.498480358161032e-05,-1.1690437531797215e-05,-8.031215312931687e-21,-0.0015755846397951245,7.598783849971369e-05,0.00014862691750749946,-3.3881317890172014e-20,-3.3038193123502424e-06,-2.5846204607660184e-06,0.00018996960716322064,-9.498480358161032e-05,-3.3881317890172014e-20,7.30652345737326e-06,1.7470054537119944e-21,4.583121815233627e-22,7.598783849971369e-05,-1.1690437531797215e-05,-3.3038193123502424e-06,1.7470054537119944e-21,5.082798679723055e-07,5.0328227658720486e-23,1.9384653569431975e-05,-8.031215312931687e-21,-2.5846204607660184e-06,4.583121815233627e-22,5.0328227658720486e-23,5.6187403174590145e-08,14.0,48.0,0.032174743711948395,-0.004726220853626728,-0.0015123906778171659,0.00018601190822664648,7.288629421964288e-05,1.822157355491072e-05,-0.004726220853626728,0.001564164413139224,7.288629421964288e-05,-9.300595411332324e-05,-1.121327659348026e-05,9.308163266656919e-21,-0.0015123906778171659,7.288629421964288e-05,0.0001396200677845627,6.776263578034403e-20,-3.101544507444487e-06,-2.3767270249663852e-06,0.00018601190822664648,-9.300595411332324e-05,6.776263578034403e-20,7.15430405762163e-06,-4.0234064994579266e-21,-7.769899243708543e-22,7.288629421964288e-05,-1.121327659348026e-05,-3.101544507444487e-06,-4.0234064994579266e-21,4.771607109432807e-07,2.302087183546157e-23,1.822157355491072e-05,9.308163266656919e-21,-2.3767270249663852e-06,-7.769899243708543e-22,2.302087183546157e-23,5.0568662146588395e-08,14.0,49.0,0.0315474197268486,-0.004631195217370987,-0.0014529239851981401,0.00018221575010102242,6.997084710747004e-05,1.714971767796669e-05,-0.004631195217370987,0.0015324624255299568,6.997084710747004e-05,-9.110787505051121e-05,-1.0764745638880413e-05,-3.649180943050987e-20,-0.0014529239851981401,6.997084710747004e-05,0.00013132669846527278,-1.1689054672109345e-19,-2.9154518870200263e-06,-2.1893256416660734e-06,0.00018221575010102242,-9.110787505051121e-05,-1.1689054672109345e-19,7.008297870925162e-06,1.376428539288238e-21,2.153469203192516e-21,6.997084710747004e-05,-1.0764745638880413e-05,-2.9154518870200263e-06,1.376428539288238e-21,4.485310682866839e-07,2.9379199594347845e-22,1.714971767796669e-05,-3.649180943050987e-20,-2.1893256416660734e-06,2.153469203192516e-21,2.9379199594347845e-22,4.56109496838053e-08,14.0,50.0,0.030944084748625755,-0.004539915826171637,-0.0013968972489237785,0.00017857142665889114,6.72268943162635e-05,1.6160311133717187e-05,-0.004539915826171637,0.001502020051702857,6.72268943162635e-05,-8.928571332944557e-05,-1.0342598216084298e-05,-2.6593685037446864e-21,-0.0013968972489237785,6.72268943162635e-05,0.00012367749877739698,-8.470329472543003e-21,-2.7439548375696177e-06,-2.0200388917146483e-06,0.00017857142665889114,-8.928571332944557e-05,-8.470329472543003e-21,6.868132004456129e-06,-1.1117307432712692e-21,2.9833250260908783e-22,6.72268943162635e-05,-1.0342598216084298e-05,-2.7439548375696177e-06,-1.1117307432712692e-21,4.221468827836361e-07,-4.327374750591658e-23,1.6160311133717187e-05,-2.6593685037446864e-21,-2.0200388917146483e-06,2.9833250260908783e-22,-4.327374750591658e-23,4.122528096672795e-08,14.0,51.0,0.03036339394748211,-0.004452165681868792,-0.0013440499315038323,0.00017507003212813288,6.464124453486875e-05,1.5245575923472643e-05,-0.004452165681868792,0.00147276371717453,6.464124453486875e-05,-8.753501606406644e-05,-9.94480615190696e-06,6.263138160129114e-21,-0.0013440499315038323,6.464124453486875e-05,0.00011661110329441726,2.0328790734103208e-20,-2.5856495540210744e-06,-1.8668051779968664e-06,0.00017507003212813288,-8.753501606406644e-05,2.0328790734103208e-20,6.7334626692172606e-06,8.470329472543003e-22,-4.271462435331255e-22,6.464124453486875e-05,-9.94480615190696e-06,-2.5856495540210744e-06,8.470329472543003e-22,3.9779226312930405e-07,-2.483097786908541e-23,1.5245575923472643e-05,6.263138160129114e-21,-1.8668051779968664e-06,-4.271462435331255e-22,-2.483097786908541e-23,3.733610398626297e-08,14.0,52.0,0.029804091900587082,-0.004367743153125048,-0.0012941460590809584,0.00017170330102089792,6.22019506408833e-05,1.4398598978004884e-05,-0.004367743153125048,0.001444625318981707,6.22019506408833e-05,-8.585165051044896e-05,-9.569530448061414e-06,5.728789581839445e-21,-0.0012941460590809584,6.22019506408833e-05,0.00011007305874954909,3.3881317890172014e-21,-2.4392920749960467e-06,-1.727831886455533e-06,0.00017170330102089792,-8.585165051044896e-05,3.3881317890172014e-21,6.603972906304989e-06,2.064642808932357e-21,-3.7562787089302894e-22,6.22019506408833e-05,-9.569530448061414e-06,-2.4392920749960467e-06,2.064642808932357e-21,3.7527570384554565e-07,-3.0680176377463855e-23,1.4398598978004884e-05,5.728789581839445e-21,-1.727831886455533e-06,-3.7562787089302894e-22,-3.0680176377463855e-23,3.387905778140521e-08,14.0,53.0,0.029265021905303,-0.004286462906748056,-0.0012469710782170296,0.0001684636081336066,5.989817145746201e-05,1.3613221199193504e-05,-0.004286462906748056,0.0014175421092659235,5.989817145746201e-05,-8.42318040668033e-05,-9.215104000759311e-06,2.134152233677737e-21,-0.0012469710782170296,5.989817145746201e-05,0.00010401486360933632,2.795208725939191e-20,-2.3037760001898278e-06,-1.601555482011463e-06,0.0001684636081336066,-8.42318040668033e-05,2.795208725939191e-20,6.479369858425343e-06,-1.852884572118782e-21,-2.4358643931096346e-22,5.989817145746201e-05,-9.215104000759311e-06,-2.3037760001898278e-06,-1.852884572118782e-21,3.544270725797105e-07,3.0661398332475974e-23,1.3613221199193504e-05,2.134152233677737e-21,-1.601555482011463e-06,-2.4358643931096346e-22,3.0661398332475974e-23,3.079914279169316e-08,14.0,54.0,0.028745103627443314,-0.004208153113722801,-0.0012023294111713767,0.0001653439103392884,5.77200589759741e-05,1.2883941053587478e-05,-0.004208153113722801,0.001391455763950944,5.77200589759741e-05,-8.26719551696442e-05,-8.880008863343392e-06,2.290068105105097e-21,-0.0012023294111713767,5.77200589759741e-05,9.839329868555069e-05,2.964615315390051e-20,-2.1781154373456957e-06,-1.4866086530673783e-06,0.0001653439103392884,-8.26719551696442e-05,2.964615315390051e-20,6.359381586662494e-06,-1.7470054537119944e-21,-2.7529286692813467e-22,5.77200589759741e-05,-8.880008863343392e-06,-2.1781154373456957e-06,-1.7470054537119944e-21,3.3509468266856857e-07,2.3837732569652496e-23,1.2883941053587478e-05,2.290068105105097e-21,-1.4866086530673783e-06,-2.7529286692813467e-22,2.3837732569652496e-23,2.804921983567965e-08,14.0,55.0,0.028243334963917732,-0.004132653120905161,-0.0011600429425016046,0.00016233765927609056,5.5658627388766035e-05,1.2205839084344916e-05,-0.004132653120905161,0.0013663122663274407,5.5658627388766035e-05,-8.116882963804528e-05,-8.562865332351066e-06,5.868889663019563e-21,-0.0011600429425016046,5.5658627388766035e-05,9.316970681538805e-05,3.5575383784680614e-20,-2.0614306777133606e-06,-1.3817931403536932e-06,0.00016233765927609056,-8.116882963804528e-05,3.5575383784680614e-20,6.243756160984049e-06,-1.2176098616780567e-21,-4.50368087150523e-22,5.5658627388766035e-05,-8.562865332351066e-06,-2.0614306777133606e-06,-1.2176098616780567e-21,3.171431615101028e-07,-7.70337218571258e-25,1.2205839084344916e-05,5.868889663019563e-21,-1.3817931403536932e-06,-4.50368087150523e-22,-7.70337218571258e-25,2.5588761332073773e-08,14.0,56.0,0.027758782729506493,-0.004059814848005772,-0.001119948923587799,0.0001594387722434476,5.370569124352187e-05,1.1574502423172817e-05,-0.004059814848005772,0.0013420613249763846,5.370569124352187e-05,-7.97193861217238e-05,-8.262414667115081e-06,-2.4922762832528058e-20,-0.001119948923587799,5.370569124352187e-05,8.830948354443535e-05,-1.0757318430129614e-19,-1.9529343262547627e-06,-1.2860558626925922e-06,0.0001594387722434476,-7.97193861217238e-05,-1.0757318430129614e-19,6.1322607507463545e-06,3.22931311140702e-21,1.4559673270124319e-21,5.370569124352187e-05,-8.262414667115081e-06,-1.9529343262547627e-06,3.22931311140702e-21,3.004514326221397e-07,1.7609664994424297e-22,1.1574502423172817e-05,-2.4922762832528058e-20,-1.2860558626925922e-06,1.4559673270124319e-21,1.7609664994424297e-22,2.3382833447271878e-08,14.0,57.0,0.027290575206279755,-0.003989499527961016,-0.0010818982264027,0.00015664160309825093,5.185377085581422e-05,1.0985968401655555e-05,-0.003989499527961016,0.0013186563737690449,5.185377085581422e-05,-7.832080154912546e-05,-7.977503628353588e-06,2.955252382103968e-21,-0.0010818982264027,5.185377085581422e-05,8.378156780963764e-05,2.9857911390714087e-20,-1.8519203877076507e-06,-1.1984693628619425e-06,0.00015664160309825093,-7.832080154912546e-05,2.9857911390714087e-20,6.024677077220986e-06,-2.80579663777987e-21,-1.5518656005415204e-22,5.185377085581422e-05,-7.977503628353588e-06,-1.8519203877076507e-06,-2.80579663777987e-21,2.849108398095268e-07,-4.659077192829524e-23,1.0985968401655555e-05,2.955252382103968e-21,-1.1984693628619425e-06,-1.5518656005415204e-22,-4.659077192829524e-23,2.1401238115004162e-08,14.0,58.0,0.026837898418307304,-0.003921578638255596,-0.001045754412189126,0.00015394088404718786,5.009601591154933e-05,1.0436669981572777e-05,-0.003921578638255596,0.0012960537569597363,5.009601591154933e-05,-7.697044202359393e-05,-7.707079930696636e-06,1.0776667347879966e-20,-0.001045754412189126,5.009601591154933e-05,7.955803448567167e-05,2.795208725939191e-20,-1.7577549442648888e-06,-1.1182146408827975e-06,0.00015394088404718786,-7.697044202359393e-05,2.795208725939191e-20,5.920803232584149e-06,4.764560328305439e-22,-5.222367234952677e-22,5.009601591154933e-05,-7.707079930696636e-06,-1.7577549442648888e-06,4.764560328305439e-22,2.70423839765499e-07,-1.0742639649717528e-22,1.0436669981572777e-05,1.0776667347879966e-20,-1.1182146408827975e-06,-5.222367234952677e-22,-1.0742639649717528e-22,1.9617800717242062e-08,14.0,59.0,0.026399992406368256,-0.0038559322711080313,-0.0010113921016454697,0.0001513317256467417,4.842615089728497e-05,9.923391189659014e-06,-0.0038559322711080313,0.001274213078431785,4.842615089728497e-05,-7.566586282337084e-05,-7.450176781276241e-06,-1.3405202573122703e-20,-0.0010113921016454697,4.842615089728497e-05,7.56137233111076e-05,-1.3129010682441655e-20,-1.6698672880011145e-06,-1.0445675115988706e-06,0.0001513317256467417,-7.566586282337084e-05,-1.3129010682441655e-20,5.820450951432576e-06,-4.658681209898652e-21,7.687313963520807e-22,4.842615089728497e-05,-7.450176781276241e-06,-1.6698672880011145e-06,-4.658681209898652e-21,2.569026662513352e-07,8.993310300131174e-23,9.923391189659014e-06,-1.3405202573122703e-20,-1.0445675115988706e-06,7.687313963520807e-22,8.993310300131174e-23,1.8009785662798095e-08,14.0,60.0,0.025976145640015602,-0.0037924472708255053,-0.0009786960436031222,0.00014880952949170023,4.683840597863309e-05,9.443227099836804e-06,-0.0037924472708255053,0.0012530962703749537,4.683840597863309e-05,-7.440476474585012e-05,-7.205908787000226e-06,1.8424292999817958e-20,-0.0009786960436031222,4.683840597863309e-05,7.192593329818919e-05,7.792703114739563e-20,-1.5877426449151244e-06,-9.76885530690197e-07,0.00014880952949170023,-7.440476474585012e-05,7.792703114739563e-20,5.723443337046774e-06,-1.376428539288238e-21,-1.080580809691077e-21,4.683840597863309e-05,-7.205908787000226e-06,-1.5877426449151244e-06,-1.376428539288238e-21,2.442681079628528e-07,-1.138059461921338e-22,9.443227099836804e-06,1.8424292999817958e-20,-9.76885530690197e-07,-1.080580809691077e-21,-1.138059461921338e-22,1.6557383020199268e-08,14.0,61.0,0.025565695017576218,-0.0037310190964490175,-0.000947560416534543,0.00014637001731898636,4.532749153440818e-05,8.993550181912724e-06,-0.0037310190964490175,0.0012326680589467287,4.532749153440818e-05,-7.318500865949318e-05,-6.973460131121101e-06,-4.002408713478724e-21,-0.000947560416534543,4.532749153440818e-05,6.847414624644443e-05,-9.317362419797304e-21,-1.5109163769011502e-06,-9.145982744485082e-07,0.00014637001731898636,-7.318500865949318e-05,-9.317362419797304e-21,5.629616225633072e-06,-1.164670302474663e-21,2.378823312557169e-22,4.532749153440818e-05,-6.973460131121101e-06,-1.5109163769011502e-06,-1.164670302474663e-21,2.3244867008997971e-07,2.6019661880065018e-23,8.993550181912724e-06,-4.002408713478724e-21,-9.145982744485082e-07,2.378823312557169e-22,2.6019661880065018e-23,1.524330528468454e-08,14.0,62.0,0.025168010964989662,-0.0036715492606163025,-0.0009178873151540756,0.00014400921645574272,4.388852175907232e-05,8.571977559768129e-06,-0.0036715492606163025,0.0012128952657803893,4.388852175907232e-05,-7.200460822787136e-05,-6.752080480509903e-06,1.382873277924049e-20,-0.0009178873151540756,4.388852175907232e-05,6.523977208416909e-05,8.279747059410786e-20,-1.4389679563464597e-06,-8.571977332394454e-07,0.00014400921645574272,-7.200460822787136e-05,8.279747059410786e-20,5.53881591258687e-06,-4.341043854678289e-21,-7.785270545545573e-22,4.388852175907232e-05,-6.752080480509903e-06,-1.4389679563464597e-06,-4.341043854678289e-21,2.2137969324376172e-07,-1.0731801331968515e-22,8.571977559768129e-06,1.382873277924049e-20,-8.571977332394454e-07,-7.785270545545573e-22,-1.0731801331968515e-22,1.4052421448695895e-08,14.0,63.0,0.024782508611679077,-0.0036139455623924732,-0.000889586575794965,0.00014172335795592517,4.251700738677755e-05,8.176347364496905e-06,-0.0036139455623924732,0.001193746691569686,4.251700738677755e-05,-7.086167897796258e-05,-6.541078164445935e-06,-2.0880694282189755e-21,-0.000889586575794965,4.251700738677755e-05,6.220595969352871e-05,-1.8211208365967457e-20,-1.37151630497101e-06,-8.042309218581067e-07,0.00014172335795592517,-7.086167897796258e-05,-1.8211208365967457e-20,5.450898242997937e-06,1.9058241313221758e-21,5.52016904243183e-23,4.251700738677755e-05,-6.541078164445935e-06,-1.37151630497101e-06,1.9058241313221758e-21,2.1100251501593448e-07,4.02640128051141e-23,8.176347364496905e-06,-2.0880694282189755e-21,-8.042309218581067e-07,5.52016904243183e-23,4.02640128051141e-23,1.2971465679356697e-08,14.0,64.0,0.02440863847732544,-0.003558121621608734,-0.0008625749032944441,0.00013950893480796367,4.120879020774737e-05,7.804695087543223e-06,-0.003558121621608734,0.0011751934653148055,4.120879020774737e-05,-6.975446740398183e-05,-6.339813808153849e-06,1.0880335535294022e-20,-0.0008625749032944441,4.120879020774737e-05,5.9357404097681865e-05,4.912791094074942e-20,-1.3082155874144519e-06,-7.552931151622033e-07,0.00013950893480796367,-6.975446740398183e-05,4.912791094074942e-20,5.36572815690306e-06,-8.205631676526035e-22,-6.483919653033871e-22,4.120879020774737e-05,-6.339813808153849e-06,-1.3082155874144519e-06,-8.205631676526035e-22,2.0126394417729898e-07,-5.550354016109207e-23,7.804695087543223e-06,1.0880335535294022e-20,-7.552931151622033e-07,-6.483919653033871e-22,-5.550354016109207e-23,1.1988778858551541e-08,15.0,3.0,0.286846399307251,-0.05514705926179886,-0.1875,0.0024509804788976908,0.012500000186264515,0.03333333507180214,-0.05514705926179886,0.018813295289874077,0.012500000186264515,-0.0011312217684462667,-0.0017857142956927419,-2.7755575615628914e-17,-0.1875,0.012500000186264515,0.5208333134651184,-2.253276798131706e-18,-0.012500000186264515,-0.20000000298023224,0.0024509804788976908,-0.0011312217684462667,-2.253276798131706e-18,8.080155384959653e-05,3.893714272932415e-20,1.026240592988148e-18,0.012500000186264515,-0.0017857142956927419,-0.012500000186264515,3.893714272932415e-20,0.0017857142956927419,1.3010426069826053e-17,0.03333333507180214,-2.7755575615628914e-17,-0.20000000298023224,1.026240592988148e-18,1.3010426069826053e-17,0.10000000149011612,15.0,4.0,0.241593137383461,-0.04323529452085495,-0.12250000238418579,0.0018382353009656072,0.007499999832361937,0.01666666753590107,-0.04323529452085495,0.014377827756106853,0.007499999832361937,-0.0008484162972308695,-0.0010714285308495164,6.288372600415926e-18,-0.12250000238418579,0.007499999832361937,0.19833333790302277,9.743213739950356e-20,-0.004999999888241291,-0.05000000074505806,0.0018382353009656072,-0.0008484162972308695,9.743213739950356e-20,6.0601163568207994e-05,1.0771589234400715e-19,-3.0639454897908916e-19,0.007499999832361937,-0.0010714285308495164,-0.004999999888241291,1.0771589234400715e-19,0.0007142857066355646,-1.3010426069826053e-18,0.01666666753590107,6.288372600415926e-18,-0.05000000074505806,-3.0639454897908916e-19,-1.3010426069826053e-18,0.01666666753590107,15.0,5.0,0.2086554616689682,-0.035588234663009644,-0.08642856776714325,0.00147058826405555,0.004999999888241291,0.009523809887468815,-0.035588234663009644,0.0116451196372509,0.004999999888241291,-0.0006787330494262278,-0.0007142857066355646,4.7704895589362195e-18,-0.08642856776714325,0.004999999888241291,0.10035714507102966,6.624870397385533e-19,-0.0024999999441206455,-0.01904761977493763,0.00147058826405555,-0.0006787330494262278,6.624870397385533e-19,4.848093158216216e-05,-1.6414350740064938e-20,-1.1773587360833436e-19,0.004999999888241291,-0.0007142857066355646,-0.0024999999441206455,-1.6414350740064938e-20,0.0003571428533177823,-1.1655173354219173e-18,0.009523809887468815,4.7704895589362195e-18,-0.01904761977493763,-1.1773587360833436e-19,-1.1655173354219173e-18,0.004761904943734407,15.0,6.0,0.1836017668247223,-0.03025210089981556,-0.06428571790456772,0.0012254902394488454,0.0035714285913854837,0.0059523810632526875,-0.03025210089981556,0.0097893001511693,0.0035714285913854837,-0.0005656108842231333,-0.0005102040595375001,-1.951563910473908e-18,-0.06428571790456772,0.0035714285913854837,0.05845238268375397,-6.617166243955368e-19,-0.0014285714132711291,-0.008928571827709675,0.0012254902394488454,-0.0005656108842231333,-6.617166243955368e-19,4.0400776924798265e-05,2.3379284199182456e-20,9.20462028724574e-20,0.0035714285913854837,-0.0005102040595375001,-0.0014285714132711291,2.3379284199182456e-20,0.0002040816325461492,-4.0657581468206416e-20,0.0059523810632526875,-1.951563910473908e-18,-0.008928571827709675,9.20462028724574e-20,-4.0657581468206416e-20,0.0017857142956927419,15.0,7.0,0.16390639543533325,-0.026313025504350662,-0.04970237985253334,0.0010504202218726277,0.0026785715017467737,0.003968254197388887,-0.026313025504350662,0.008445493876934052,0.0026785715017467737,-0.00048480930854566395,-0.00038265305920504034,9.75781955236954e-19,-0.04970237985253334,0.0026785715017467737,0.0372023805975914,4.170417432317855e-19,-0.0008928571478463709,-0.004761904943734407,0.0010504202218726277,-0.00048480930854566395,4.170417432317855e-19,3.462923632469028e-05,-2.567674926998008e-20,-3.3023337724498457e-20,0.0026785715017467737,-0.00038265305920504034,-0.0008928571478463709,-2.567674926998008e-20,0.00012755101488437504,-1.7618285302889447e-19,0.003968254197388887,9.75781955236954e-19,-0.004761904943734407,-3.3023337724498457e-20,-1.7618285302889447e-19,0.0007936508045531809,15.0,8.0,0.14801879227161407,-0.023284314200282097,-0.03958333283662796,0.0009191176504828036,0.0020833334419876337,0.0027777778450399637,-0.023284314200282097,0.007427009288221598,0.0020833334419876337,-0.00042420814861543477,-0.00029761905898340046,-2.5478751053409354e-18,-0.03958333283662796,0.0020833334419876337,0.02519841305911541,-6.408804617532088e-19,-0.0005952381179668009,-0.0027777778450399637,0.0009191176504828036,-0.00042420814861543477,-6.408804617532088e-19,3.0300581784103997e-05,2.4468257782085714e-20,6.471194198246018e-20,0.0020833334419876337,-0.00029761905898340046,-0.0005952381179668009,2.4468257782085714e-20,8.50340147735551e-05,3.8624702394796095e-19,0.0027777778450399637,-2.5478751053409354e-18,-0.0027777778450399637,6.471194198246018e-20,3.8624702394796095e-19,0.00039682540227659047,15.0,9.0,0.13493365049362183,-0.02088235318660736,-0.03227272629737854,0.0008169934735633433,0.0016666667070239782,0.002020202111452818,-0.02088235318660736,0.006628240924328566,0.0016666667070239782,-0.0003770739131141454,-0.0002380952355451882,-1.0065935024763651e-18,-0.03227272629737854,0.0016666667070239782,0.017880592495203018,-1.0012919985329362e-18,-0.00041666667675599456,-0.0017316017765551805,0.0008169934735633433,-0.0003770739131141454,-1.0012919985329362e-18,2.6933850676869042e-05,4.573977915173222e-20,8.450391834841061e-20,0.0016666667070239782,-0.0002380952355451882,-0.00041666667675599456,4.573977915173222e-20,5.952380888629705e-05,-4.4115338600345855e-20,0.002020202111452818,-1.0065935024763651e-18,-0.0017316017765551805,8.450391834841061e-20,-4.4115338600345855e-20,0.00021645022206939757,15.0,10.0,0.12397059053182602,-0.018930481746792793,-0.026818182319402695,0.000735294132027775,0.0013636363437399268,0.0015151514671742916,-0.018930481746792793,0.005984897259622812,0.0013636363437399268,-0.0003393665247131139,-0.00019480519404169172,-2.5826580500987902e-18,-0.026818182319402695,0.0013636363437399268,0.013156565837562084,-1.7977722162413646e-18,-0.0003030303050763905,-0.0011363636003807187,0.000735294132027775,-0.0003393665247131139,-1.7977722162413646e-18,2.424046579108108e-05,6.437450399132683e-20,1.3048399346808948e-19,0.0013636363437399268,-0.00019480519404169172,-0.0003030303050763905,6.437450399132683e-20,4.329004150349647e-05,1.519532982458414e-19,0.0015151514671742916,-2.5826580500987902e-18,-0.0011363636003807187,1.3048399346808948e-19,1.519532982458414e-19,0.00012626263196580112,15.0,11.0,0.11465275287628174,-0.017312834039330482,-0.022639859467744827,0.000668449210934341,0.0011363636003807187,0.0011655011912807822,-0.017312834039330482,0.00545557402074337,0.0011363636003807187,-0.00030851500923745334,-0.00016233765927609056,-5.868319118423229e-19,-0.022639859467744827,0.0011363636003807187,0.009966977871954441,-6.174818486695565e-19,-0.00022727272880729288,-0.0007770007941871881,0.000668449210934341,-0.00030851500923745334,-6.174818486695565e-19,2.2036787413526326e-05,2.202285662861181e-20,4.684040758021938e-20,0.0011363636003807187,-0.00016233765927609056,-0.00022727272880729288,2.202285662861181e-20,3.246753112762235e-05,-1.3786756594327693e-20,0.0011655011912807822,-5.868319118423229e-19,-0.0007770007941871881,4.684040758021938e-20,-1.3786756594327693e-20,7.770007505314425e-05,15.0,12.0,0.10663605481386185,-0.01595022715628147,-0.019368132576346397,0.0006127451197244227,0.000961538462433964,0.0009157509193755686,-0.01595022715628147,0.005012389738112688,0.000961538462433964,-0.00028280544211156666,-0.00013736264372710139,-5.827586677109586e-19,-0.019368132576346397,0.000961538462433964,0.007733932696282864,-4.974677645578862e-19,-0.00017482518160250038,-0.0005494505749084055,0.0006127451197244227,-0.00028280544211156666,-4.974677645578862e-19,2.0200388462399133e-05,1.3786333310498613e-20,3.703622998288901e-20,0.000961538462433964,-0.00013736264372710139,-0.00017482518160250038,1.3786333310498613e-20,2.4975024643936194e-05,1.5246593050577406e-20,0.0009157509193755686,-5.827586677109586e-19,-0.0005494505749084055,3.703622998288901e-20,1.5246593050577406e-20,4.995004928787239e-05,15.0,13.0,0.09966602176427841,-0.014786683954298496,-0.01675824262201786,0.0005656108842231333,0.0008241758332587779,0.0007326007471419871,-0.014786683954298496,0.0046358779072761536,0.0008241758332587779,-0.00026105117285624146,-0.00011773940059356391,-4.1335207826009857e-19,-0.01675824262201786,0.0008241758332587779,0.006123043596744537,-5.020404189840794e-19,-0.00013736264372710139,-0.0003996003943029791,0.0005656108842231333,-0.00026105117285624146,-5.020404189840794e-19,1.8646511307451874e-05,2.1427028093632206e-20,2.8952374802167267e-20,0.0008241758332587779,-0.00011773940059356391,-0.00013736264372710139,2.1427028093632206e-20,1.9623234038590454e-05,1.6940658945086007e-21,0.0007326007471419871,-4.1335207826009857e-19,-0.0003996003943029791,2.8952374802167267e-20,1.6940658945086007e-21,3.330003164592199e-05,15.0,14.0,0.0935504212975502,-0.013781512156128883,-0.014642857015132904,0.0005252101109363139,0.0007142857066355646,0.0005952381179668009,-0.013781512156128883,0.004312032368034124,0.0007142857066355646,-0.00024240465427283198,-0.0001020408162730746,2.0328790734103208e-20,-0.014642857015132904,0.0007142857066355646,0.004931318573653698,1.3301454575704233e-19,-0.00010989011207129806,-0.00029761905898340046,0.0005252101109363139,-0.00024240465427283198,1.3301454575704233e-19,1.731461816234514e-05,4.659184061394076e-21,-1.4380551105105725e-20,0.0007142857066355646,-0.0001020408162730746,-0.00010989011207129806,4.659184061394076e-21,1.5698587958468124e-05,2.541098841762901e-20,0.0005952381179668009,2.0328790734103208e-20,-0.00029761905898340046,-1.4380551105105725e-20,2.541098841762901e-20,2.2893773348187096e-05,15.0,15.0,0.08814133703708649,-0.012904412113130093,-0.012904412113130093,0.0004901961074210703,0.0006249999860301614,0.0004901961074210703,-0.012904412113130093,0.004030515905469656,0.0006249999860301614,-0.0002262443449581042,-8.928571332944557e-05,-2.303929616531697e-19,-0.012904412113130093,0.0006249999860301614,0.004030515905469656,-3.6103505001583337e-19,-8.928571332944557e-05,-0.0002262443449581042,0.0004901961074210703,-0.0002262443449581042,-3.6103505001583337e-19,1.6160311133717187e-05,1.392703317840219e-20,1.857186072862771e-20,0.0006249999860301614,-8.928571332944557e-05,-8.928571332944557e-05,1.392703317840219e-20,1.2755102034134325e-05,-5.082197683525802e-21,0.0004901961074210703,-2.303929616531697e-19,-0.0002262443449581042,1.857186072862771e-20,-5.082197683525802e-21,1.6160311133717187e-05,15.0,16.0,0.08332312107086182,-0.012132353149354458,-0.01145833358168602,0.0004595588252414018,0.0005514706135727465,0.00040849673678167164,-0.012132353149354458,0.003783532651141286,0.0005514706135727465,-0.00021210407430771738,-7.878151518525556e-05,-2.303929616531697e-19,-0.01145833358168602,0.0005514706135727465,0.0033368347212672234,-2.999743091065764e-19,-7.352940883720294e-05,-0.00017507003212813288,0.0004595588252414018,-0.00021210407430771738,-2.999743091065764e-19,1.5150290892051999e-05,9.151235633786959e-21,1.5526663158173363e-20,0.0005514706135727465,-7.878151518525556e-05,-7.352940883720294e-05,9.151235633786959e-21,1.050420178216882e-05,1.6940658945086007e-21,0.00040849673678167164,-2.303929616531697e-19,-0.00017507003212813288,1.5526663158173363e-20,1.6940658945086007e-21,1.1671335414575879e-05,15.0,17.0,0.07900402694940567,-0.01144751999527216,-0.010242518037557602,0.00043252596515230834,0.0004901961074210703,0.0003439972351770848,-0.01144751999527216,0.003565091174095869,0.0004901961074210703,-0.00019962736405432224,-7.002801430644467e-05,-2.0667603913004928e-19,-0.010242518037557602,0.0004901961074210703,0.002793902764096856,-3.150735089117545e-19,-6.127451342763379e-05,-0.00013759889407083392,0.00043252596515230834,-0.00019962736405432224,-3.150735089117545e-19,1.4259097042668145e-05,1.5380368512025118e-20,1.3187939223150389e-20,0.0004901961074210703,-7.002801430644467e-05,-6.127451342763379e-05,1.5380368512025118e-20,8.753501788305584e-06,2.964615315390051e-21,0.0003439972351770848,-2.0667603913004928e-19,-0.00013759889407083392,1.3187939223150389e-20,2.964615315390051e-21,8.59993087942712e-06,15.0,18.0,0.07511036843061447,-0.010835913009941578,-0.009210526011884212,0.00040849673678167164,0.0004385965003166348,0.0002923976571764797,-0.010835913009941578,0.0033705115783959627,0.0004385965003166348,-0.0001885369565570727,-6.265663978410885e-05,-1.0164395367051604e-19,-0.009210526011884212,0.0004385965003166348,0.0023628310300409794,-2.754208743396176e-19,-5.159958891454153e-05,-0.0001096491250791587,0.00040849673678167164,-0.0001885369565570727,-2.754208743396176e-19,1.3466925338434521e-05,1.2790914339551243e-20,1.066355039911334e-20,0.0004385965003166348,-6.265663978410885e-05,-5.159958891454153e-05,1.2790914339551243e-20,7.371369520114968e-06,-5.929230630780102e-21,0.0002923976571764797,-1.0164395367051604e-19,-0.0001096491250791587,1.066355039911334e-20,-5.929230630780102e-21,6.449948614317691e-06,15.0,19.0,0.07158226519823074,-0.010286377742886543,-0.008327067829668522,0.0003869968932121992,0.00039473685319535434,0.0002506265591364354,-0.010286377742886543,0.0031960841733962297,0.00039473685319535434,-0.00017861396190710366,-5.639097798848525e-05,-1.0164395367051604e-19,-0.008327067829668522,0.00039473685319535434,0.0020161925349384546,-2.342577821195647e-19,-4.385965075925924e-05,-8.845643606036901e-05,0.0003869968932121992,-0.00017861396190710366,-2.342577821195647e-19,1.2758139746438246e-05,9.306033115020882e-21,9.395308844452655e-21,0.00039473685319535434,-5.639097798848525e-05,-4.385965075925924e-05,9.306033115020882e-21,6.265664069360355e-06,-3.8116482626443515e-21,0.0002506265591364354,-1.0164395367051604e-19,-8.845643606036901e-05,9.395308844452655e-21,-3.8116482626443515e-21,4.914246346743312e-06,15.0,20.0,0.06837057322263718,-0.009789915755391121,-0.007564934901893139,0.0003676470660138875,0.0003571428533177823,0.00021645022206939757,-0.009789915755391121,0.0030388308223336935,0.0003571428533177823,-0.00016968326235655695,-5.10204081365373e-05,-3.2526065174565133e-19,-0.007564934901893139,0.0003571428533177823,0.001734259887598455,-4.987815858645619e-19,-3.759398532565683e-05,-7.215006917249411e-05,0.0003676470660138875,-0.00016968326235655695,-4.987815858645619e-19,1.212023289554054e-05,1.661545417973049e-20,1.7863879750400416e-20,0.0003571428533177823,-5.10204081365373e-05,-3.759398532565683e-05,1.661545417973049e-20,5.3705693972005975e-06,6.776263578034403e-21,0.00021645022206939757,-3.2526065174565133e-19,-7.215006917249411e-05,1.7863879750400416e-20,6.776263578034403e-21,3.7973723010509275e-06,15.0,21.0,0.06543458253145218,-0.00933919008821249,-0.006902879569679499,0.00035014006425626576,0.0003246753185521811,0.00018821758567355573,-0.00933919008821249,0.002896333346143365,0.0003246753185521811,-0.00016160310769919306,-4.638218888430856e-05,-8.809142651444724e-20,-0.006902879569679499,0.0003246753185521811,0.0015025953762233257,-1.443952972901561e-19,-3.246753112762235e-05,-5.943713040323928e-05,0.00035014006425626576,-0.00016160310769919306,-1.443952972901561e-19,1.154307847173186e-05,6.406269486669198e-22,6.995545604130516e-21,0.0003246753185521811,-4.638218888430856e-05,-3.246753112762235e-05,6.406269486669198e-22,4.638218797481386e-06,-1.0587911840678754e-21,0.00018821758567355573,-8.809142651444724e-20,-5.943713040323928e-05,6.995545604130516e-21,-1.0587911840678754e-21,2.971856474687229e-06,15.0,22.0,0.0627402514219284,-0.008928156457841396,-0.0063241105526685715,0.0003342246054671705,0.0002964426821563393,0.00016469038382638246,-0.008928156457841396,0.0027666068635880947,0.0002964426821563393,-0.00015425750461872667,-4.2348954593762755e-05,-8.639736061993863e-20,-0.0063241105526685715,0.0002964426821563393,0.0013104649260640144,-1.642871557150723e-19,-2.8232636395841837e-05,-4.9407113692723215e-05,0.0003342246054671705,-0.00015425750461872667,-1.642871557150723e-19,1.1018393706763163e-05,5.1734686630679324e-21,6.09870814450614e-21,0.0002964426821563393,-4.2348954593762755e-05,-2.8232636395841837e-05,5.1734686630679324e-21,4.033233835798455e-06,4.235164736271502e-22,0.00016469038382638246,-8.639736061993863e-20,-4.9407113692723215e-05,6.09870814450614e-21,4.235164736271502e-22,2.3527197754447116e-06,15.0,23.0,0.06025895103812218,-0.00855179037898779,-0.005815217271447182,0.0003196930920239538,0.00027173911803402007,0.00014492752961814404,-0.00855179037898779,0.002648007357493043,0.00027173911803402007,-0.00014755065785720944,-3.8819875044282526e-05,-7.623296525288703e-20,-0.005815217271447182,0.00027173911803402007,0.0011497741797938943,-1.479885052476011e-19,-2.4703556846361607e-05,-4.140786768402904e-05,0.0003196930920239538,-0.00014755065785720944,-1.479885052476011e-19,1.0539332834014203e-05,4.329968197081888e-21,5.349033305217694e-21,0.00027173911803402007,-3.8819875044282526e-05,-2.4703556846361607e-05,4.329968197081888e-21,3.5290795494802296e-06,-1.0587911840678754e-22,0.00014492752961814404,-7.623296525288703e-20,-4.140786768402904e-05,5.349033305217694e-21,-1.0587911840678754e-22,1.8821757521436666e-06,15.0,24.0,0.05796637758612633,-0.008205882273614407,-0.005365384742617607,0.00030637255986221135,0.0002500000118743628,0.00012820512347389013,-0.008205882273614407,0.0025391618255525827,0.0002500000118743628,-0.00014140272105578333,-3.571428533177823e-05,-4.404571325722362e-20,-0.005365384742617607,0.0002500000118743628,0.001014340785332024,-1.8976674842475494e-19,-2.1739129806519486e-05,-3.4965036320500076e-05,0.00030637255986221135,-0.00014140272105578333,-1.8976674842475494e-19,1.0100194231199566e-05,1.1609185052529808e-20,4.717498275095147e-21,0.0002500000118743628,-3.571428533177823e-05,-2.1739129806519486e-05,1.1609185052529808e-20,3.1055901672516484e-06,-2.117582368135751e-21,0.00012820512347389013,-4.404571325722362e-20,-3.4965036320500076e-05,4.717498275095147e-21,-2.117582368135751e-21,1.5202189160845592e-06,15.0,25.0,0.05584179610013962,-0.007886878214776516,-0.0049658119678497314,0.00029411763534881175,0.0002307692338945344,0.00011396011541364715,-0.007886878214776516,0.002438914030790329,0.0002307692338945344,-0.00013574660988524556,-3.296703289379366e-05,-7.792703114739563e-20,-0.0049658119678497314,0.0002307692338945344,0.0008993868250399828,-1.715986568482168e-19,-1.92307688848814e-05,-2.9728726076427847e-05,0.00029411763534881175,-0.00013574660988524556,-1.715986568482168e-19,9.69618577073561e-06,1.0176856390615318e-20,4.181694456694624e-21,0.0002307692338945344,-3.296703289379366e-05,-1.92307688848814e-05,1.0176856390615318e-20,2.7472526653582463e-06,1.4823076576950256e-21,0.00011396011541364715,-7.792703114739563e-20,-2.9728726076427847e-05,4.181694456694624e-21,1.4823076576950256e-21,1.2386968819555477e-06,15.0,26.0,0.0538674034178257,-0.007591754663735628,-0.004609279800206423,0.00028280544211156666,0.0002136752154910937,0.0001017501053865999,-0.007591754663735628,0.002346283756196499,0.0002136752154910937,-0.00013052558642812073,-3.052503234357573e-05,-1.2393171489029796e-19,-0.004609279800206423,0.0002136752154910937,0.0008011803147383034,-1.0164395367051604e-19,-1.709401658445131e-05,-2.5437526346649975e-05,0.00028280544211156666,-0.00013052558642812073,-1.0164395367051604e-19,9.323255653725937e-06,-7.411538288475128e-21,6.053117083381257e-21,0.0002136752154910937,-3.052503234357573e-05,-1.709401658445131e-05,-7.411538288475128e-21,2.44200236920733e-06,2.5512665393900543e-21,0.0001017501053865999,-1.2393171489029796e-19,-2.5437526346649975e-05,6.053117083381257e-21,2.5512665393900543e-21,1.017501062960946e-06,15.0,27.0,0.05202781781554222,-0.007317927200347185,-0.004289819393306971,0.00027233114815317094,0.00019841270113829523,9.122423216467723e-05,-0.007317927200347185,0.0022604339756071568,0.00019841270113829523,-0.0001256913092220202,-2.8344671591185033e-05,-1.3834674585601522e-19,-0.004289819393306971,0.00019841270113829523,0.0007167768198996782,-2.0328790734103208e-19,-1.5262516171787865e-05,-2.1893814846407622e-05,0.00027233114815317094,-0.0001256913092220202,-2.0328790734103208e-19,8.977950528787915e-06,2.117582368135751e-21,7.064030342736224e-21,0.00019841270113829523,-2.8344671591185033e-05,-1.5262516171787865e-05,2.117582368135751e-21,2.180359388148645e-06,2.3292652781992082e-21,9.122423216467723e-05,-1.3834674585601522e-19,-2.1893814846407622e-05,7.064030342736224e-21,2.3292652781992082e-21,8.42069823647762e-07,15.0,28.0,0.050309691578149796,-0.007063169963657856,-0.004002463072538376,0.00026260505546815693,0.00018472906958777457,8.210180385503918e-05,-0.007063169963657856,0.0021806468721479177,0.00018472906958777457,-0.00012120232713641599,-2.6389865524834022e-05,-1.2049485699332255e-19,-0.004002463072538376,0.00018472906958777457,0.0006438325508497655,-1.6263032587282567e-19,-1.3683634279004764e-05,-1.8946569980471395e-05,0.00026260505546815693,-0.00012120232713641599,-1.6263032587282567e-19,8.65730908117257e-06,-2.329340604949326e-21,6.624050632317925e-21,0.00018472906958777457,-2.6389865524834022e-05,-1.3683634279004764e-05,-2.329340604949326e-21,1.954804929482634e-06,1.6138616868336348e-21,8.210180385503918e-05,-1.2049485699332255e-19,-1.8946569980471395e-05,6.624050632317925e-21,1.6138616868336348e-21,7.017248435658985e-07,15.0,29.0,0.048701390624046326,-0.0068255579099059105,-0.0037430478259921074,0.0002535496896598488,0.00017241379828192294,7.41564726922661e-05,-0.0068255579099059105,0.002106301486492157,0.00017241379828192294,-0.00011702293704729527,-2.4630542611703277e-05,-7.962609889967076e-20,-0.0037430478259921074,0.00017241379828192294,0.000580465653911233,-1.6601845766184287e-19,-1.2315271305851638e-05,-1.6479216355946846e-05,0.0002535496896598488,-0.00011702293704729527,-1.6601845766184287e-19,8.358781087736133e-06,4.9763185651190145e-21,4.2562865185632305e-21,0.00017241379828192294,-2.4630542611703277e-05,-1.2315271305851638e-05,4.9763185651190145e-21,1.7593243910596357e-06,1.2954592501311782e-21,7.41564726922661e-05,-7.962609889967076e-20,-1.6479216355946846e-05,4.2562865185632305e-21,1.2954592501311782e-21,5.885434006813739e-07,15.0,30.0,0.04719270393252373,-0.006603415589779615,-0.003508064430207014,0.00024509805371053517,0.00016129032883327454,6.720430246787146e-05,-0.006603415589779615,0.0020368595141917467,0.00016129032883327454,-0.0001131221724790521,-2.304147528775502e-05,-4.455291391321214e-20,-0.003508064430207014,0.00016129032883327454,0.0005251535912975669,-6.437450399132683e-20,-1.1123470358143095e-05,-1.4400921827473212e-05,0.00024509805371053517,-0.0001131221724790521,-6.437450399132683e-20,8.080155566858593e-06,1.6940658945086007e-21,1.8451574208057653e-21,0.00016129032883327454,-2.304147528775502e-05,-1.1123470358143095e-05,1.6940658945086007e-21,1.589067210261419e-06,8.107119736423993e-22,6.720430246787146e-05,-4.455291391321214e-20,-1.4400921827473212e-05,1.8451574208057653e-21,8.107119736423993e-22,4.965834818904113e-07,15.0,31.0,0.0457746647298336,-0.00639527989551425,-0.0032945380080491304,0.00023719164892099798,0.00015120967873372138,6.10948191024363e-05,-0.00639527989551425,0.0019718511030077934,0.00015120967873372138,-0.0001094730687327683,-2.160138319595717e-05,-1.0422989474876727e-19,-0.0032945380080491304,0.00015120967873372138,0.0004766554629895836,-2.0328790734103208e-19,-1.0080645552079659e-05,-1.264030743186595e-05,0.00023719164892099798,-0.0001094730687327683,-2.0328790734103208e-19,7.819505299266893e-06,3.3881317890172014e-21,5.694030224653745e-21,0.00015120967873372138,-2.160138319595717e-05,-1.0080645552079659e-05,3.3881317890172014e-21,1.4400922054846887e-06,1.440607637207927e-21,6.10948191024363e-05,-1.0422989474876727e-19,-1.264030743186595e-05,5.694030224653745e-21,1.440607637207927e-21,4.2134357158829516e-07,15.0,32.0,0.04443933814764023,-0.006199866533279419,-0.0030999332666397095,0.0002297794126207009,0.00014204545004758984,5.5704098485875875e-05,-0.006199866533279419,0.0019108648411929607,0.00014204545004758984,-0.00010605203715385869,-2.029220740951132e-05,2.2977581383037124e-20,-0.0030999332666397095,0.00014204545004758984,0.00043395289685577154,2.371692252312041e-20,-9.164223229163326e-06,-1.1140819879074115e-05,0.0002297794126207009,-0.00010605203715385869,2.371692252312041e-20,7.575145446025999e-06,1.4823076576950256e-21,-1.0553947150414538e-21,0.00014204545004758984,-2.029220740951132e-05,-9.164223229163326e-06,1.4823076576950256e-21,1.3091746495774714e-06,-4.013296407609516e-22,5.5704098485875875e-05,2.2977581383037124e-20,-1.1140819879074115e-05,-1.0553947150414538e-21,-4.013296407609516e-22,3.5938128917223366e-07,15.0,33.0,0.043179694563150406,-0.006016042549163103,-0.0029220778960734606,0.0002228163939435035,0.0001336898421868682,5.092946230433881e-05,-0.006016042549163103,0.001853538560681045,0.0001336898421868682,-0.00010283834126312286,-1.9098548364127055e-05,6.63280008677959e-20,-0.0029220778960734606,0.0001336898421868682,0.00039620502502657473,1.0842021724855044e-19,-8.355615136679262e-06,-9.85731549008051e-06,0.0002228163939435035,-0.00010283834126312286,1.0842021724855044e-19,7.3455958045087755e-06,-1.0587911840678754e-21,-3.1244499953590592e-21,0.0001336898421868682,-1.9098548364127055e-05,-8.355615136679262e-06,-1.0587911840678754e-21,1.193659272757941e-06,-1.0742251908805393e-21,5.092946230433881e-05,6.63280008677959e-20,-9.85731549008051e-06,-3.1244499953590592e-21,-1.0742251908805393e-21,3.080411090650159e-07,15.0,34.0,0.04198948293924332,-0.005842807702720165,-0.002759103663265705,0.00021626298257615417,0.00012605042138602585,4.6685341658303514e-05,-0.005842807702720165,0.001799552352167666,0.00012605042138602585,-9.981368202716112e-05,-1.8007202015724033e-05,-8.365313723900568e-20,-0.002759103663265705,0.00012605042138602585,0.0003627132682595402,-1.4907779871675686e-19,-7.639418981852941e-06,-8.753501788305584e-06,0.00021626298257615417,-9.981368202716112e-05,-1.4907779871675686e-19,7.1295485213340726e-06,-1.0587911840678754e-21,4.443629194815853e-21,0.00012605042138602585,-1.8007202015724033e-05,-7.639418981852941e-06,-1.0587911840678754e-21,1.0913456662819954e-06,1.042203749015808e-21,4.6685341658303514e-05,-8.365313723900568e-20,-8.753501788305584e-06,4.443629194815853e-21,1.042203749015808e-21,2.6525762564233446e-07,15.0,35.0,0.04086311161518097,-0.005679271649569273,-0.0026093951892107725,0.0002100840356433764,0.0001190476177725941,4.290004289941862e-05,-0.005679271649569273,0.0017486225115135312,0.0001190476177725941,-9.696186316432431e-05,-1.70068033185089e-05,-7.18267292261819e-20,-0.0026093951892107725,0.0001190476177725941,0.00033289400744251907,-1.8126505071242027e-19,-7.002801339694997e-06,-7.800007551850285e-06,0.0002100840356433764,-9.696186316432431e-05,-1.8126505071242027e-19,6.925847173988586e-06,6.776263578034403e-21,3.719991157777221e-21,0.0001190476177725941,-1.70068033185089e-05,-7.002801339694997e-06,6.776263578034403e-21,1.0004001751440228e-06,8.778107909227178e-22,4.290004289941862e-05,-7.18267292261819e-20,-7.800007551850285e-06,3.719991157777221e-21,8.778107909227178e-22,2.2941199517845234e-07,15.0,36.0,0.03979558125138283,-0.005524642299860716,-0.002471550600603223,0.00020424836839083582,0.00011261261533945799,3.951319740735926e-05,-0.005524642299860716,0.0017004965338855982,0.00011261261533945799,-9.426847827853635e-05,-1.6087516996776685e-05,9.561198462271744e-20,-0.002471550600603223,0.00011261261533945799,0.0003062571631744504,2.371692252312041e-19,-6.4350065258622635e-06,-6.972917162784142e-06,0.00020424836839083582,-9.426847827853635e-05,2.371692252312041e-19,6.7334626692172606e-06,-4.7645603283054394e-21,-5.3397077323840826e-21,0.00011261261533945799,-1.6087516996776685e-05,-6.4350065258622635e-06,-4.7645603283054394e-21,9.192866059493099e-07,-9.833379132827085e-22,3.951319740735926e-05,9.561198462271744e-20,-6.972917162784142e-06,-5.3397077323840826e-21,-9.833379132827085e-22,1.9922620708712202e-07,15.0,37.0,0.03878239914774895,-0.0053782109171152115,-0.002344348467886448,0.00019872814300470054,0.0001066856348188594,3.647372068371624e-05,-0.0053782109171152115,0.0016549491556361318,0.0001066856348188594,-9.172067802865058e-05,-1.5240804714267142e-05,3.2537640533262047e-20,-0.002344348467886448,0.0001066856348188594,0.0002823891118168831,5.929230630780102e-20,-5.926979611103889e-06,-6.252637831494212e-06,0.00019872814300470054,-9.172067802865058e-05,5.929230630780102e-20,6.5514773268660065e-06,2.0117032497289633e-21,-1.9127828690046348e-21,0.0001066856348188594,-1.5240804714267142e-05,-5.926979611103889e-06,2.0117032497289633e-21,8.467113730148412e-07,-2.357960781513332e-22,3.647372068371624e-05,3.2537640533262047e-20,-6.252637831494212e-06,-1.9127828690046348e-21,-2.357960781513332e-22,1.7368438420817256e-07,15.0,38.0,0.0378195196390152,-0.005239342804998159,-0.0022267205640673637,0.0001934984466060996,0.00010121457307832316,3.373819345142692e-05,-0.005239342804998159,0.0016117782797664404,0.00010121457307832316,-8.930698095355183e-05,-1.4459224985330366e-05,2.3740105794594985e-21,-0.0022267205640673637,0.00010121457307832316,0.0002609390649013221,-6.776263578034403e-21,-5.471058102557436e-06,-5.623031938739587e-06,0.0001934984466060996,-8.930698095355183e-05,-6.776263578034403e-21,6.379069873219123e-06,1.2705494208814505e-21,-3.0360901018838117e-22,0.00010121457307832316,-1.4459224985330366e-05,-5.471058102557436e-06,1.2705494208814505e-21,7.815797289367765e-07,1.211343251621177e-22,3.373819345142692e-05,2.3740105794594985e-21,-5.623031938739587e-06,-3.0360901018838117e-22,1.211343251621177e-22,1.51973836182151e-07,15.0,39.0,0.03690328821539879,-0.005107466131448746,-0.0021177297458052635,0.0001885369565570727,9.61538462433964e-05,3.126954470644705e-05,-0.005107466131448746,0.0015708028804510832,9.61538462433964e-05,-8.701705519342795e-05,-1.3736264008912258e-05,-2.422612327598069e-20,-0.0021177297458052635,9.61538462433964e-05,0.00024160837347153574,-5.082197683525802e-20,-5.060728653916158e-06,-5.070736733614467e-06,0.0001885369565570727,-8.701705519342795e-05,-5.082197683525802e-20,6.215504072315525e-06,-2.0117032497289633e-21,1.5781980047497385e-21,9.61538462433964e-05,-1.3736264008912258e-05,-5.060728653916158e-06,-2.0117032497289633e-21,7.22961260635202e-07,3.530773542168618e-23,3.126954470644705e-05,-2.422612327598069e-20,-5.070736733614467e-06,1.5781980047497385e-21,3.530773542168618e-23,1.3344043736651656e-07,15.0,40.0,0.03603039309382439,-0.004982065875083208,-0.0020165506284683943,0.00018382353300694376,9.146341471932828e-05,2.9036003979854286e-05,-0.004982065875083208,0.0015318595105782151,9.146341471932828e-05,-8.484163117827848e-05,-1.3066201972833369e-05,2.1744179157125267e-20,-0.0020165506284683943,9.146341471932828e-05,0.00022414149134419858,7.453889935837843e-20,-4.690431524068117e-06,-4.584632279147627e-06,0.00018382353300694376,-8.484163117827848e-05,7.453889935837843e-20,6.06011644777027e-06,-3.917527381051139e-21,-1.0338715603211485e-21,9.146341471932828e-05,-1.3066201972833369e-05,-4.690431524068117e-06,-3.917527381051139e-21,6.700616381749569e-07,-2.992851436600072e-22,2.9036003979854286e-05,2.1744179157125267e-20,-4.584632279147627e-06,-1.0338715603211485e-21,-2.992851436600072e-22,1.1755467710372614e-07,15.0,41.0,0.03519783541560173,-0.004862676840275526,-0.0019224536372348666,0.00017934002971742302,8.710801193956286e-05,2.7010237317881547e-05,-0.004862676840275526,0.0014948005555197597,8.710801193956286e-05,-8.277231972897425e-05,-1.244400209543528e-05,-1.717267947183608e-21,-0.0019224536372348666,8.710801193956286e-05,0.00020831904839724302,-8.470329472543003e-21,-4.355400506028673e-06,-4.155421265750192e-06,0.00017934002971742302,-8.277231972897425e-05,-8.470329472543003e-21,5.9123085520695895e-06,-1.7470054537119944e-21,4.404353059900573e-22,8.710801193956286e-05,-1.244400209543528e-05,-4.355400506028673e-06,-1.7470054537119944e-21,6.22200104771764e-07,-1.7657578512541249e-22,2.7010237317881547e-05,-1.717267947183608e-21,-4.155421265750192e-06,4.404353059900573e-22,-1.7657578512541249e-22,1.0388552595941292e-07,15.0,42.0,0.03440287709236145,-0.004748876206576824,-0.0018347931327298284,0.00017507003212813288,8.305647497763857e-05,2.5168630600092e-05,-0.004748876206576824,0.0014594926033169031,8.305647497763857e-05,-8.080155384959653e-05,-1.1865211490658112e-05,8.162151379991582e-21,-0.0018347931327298284,8.305647497763857e-05,0.00019395191338844597,-5.082197683525802e-21,-4.051535597682232e-06,-3.775294544539065e-06,0.00017507003212813288,-8.080155384959653e-05,-5.082197683525802e-21,5.77153923586593e-06,4.870439446712227e-21,-6.622219970146833e-22,8.305647497763857e-05,-1.1865211490658112e-05,-4.051535597682232e-06,4.870439446712227e-21,5.787907753074251e-07,6.495546326817126e-23,2.5168630600092e-05,8.162151379991582e-21,-3.775294544539065e-06,-6.622219970146833e-22,6.495546326817126e-23,9.208035578467388e-08,15.0,43.0,0.033643029630184174,-0.0046402812004089355,-0.0017529950710013509,0.0001709986390778795,7.928118429845199e-05,2.349072201468516e-05,-0.0046402812004089355,0.00142581423278898,7.928118429845199e-05,-7.892244320828468e-05,-1.132588386099087e-05,1.3761934713602567e-20,-0.0017529950710013509,7.928118429845199e-05,0.00018087650823872536,4.743384504624082e-20,-3.775294544539065e-06,-3.437666464378708e-06,0.0001709986390778795,-7.892244320828468e-05,4.743384504624082e-20,5.637317372020334e-06,-3.494010907423989e-21,-5.603489793418722e-22,7.928118429845199e-05,-1.132588386099087e-05,-3.775294544539065e-06,-3.494010907423989e-21,5.393278001974977e-07,-2.0691157638609306e-22,2.349072201468516e-05,1.3761934713602567e-20,-3.437666464378708e-06,-5.603489793418722e-22,-2.0691157638609306e-22,8.18492011944727e-08,15.0,44.0,0.03291602060198784,-0.004536542110145092,-0.0016765480395406485,0.00016711230273358524,7.575757626909763e-05,2.1958718207315542e-05,-0.004536542110145092,0.001393655315041542,7.575757626909763e-05,-7.712875230936334e-05,-1.0822510375874117e-05,-2.800089091553254e-20,-0.0016765480395406485,7.575757626909763e-05,0.00016895080625545233,-8.300922883092143e-20,-3.523608256728039e-06,-3.1369595490104984e-06,0.00016711230273358524,-7.712875230936334e-05,-8.300922883092143e-20,5.509196853381582e-06,2.2234614865425384e-21,1.4803510807016857e-21,7.575757626909763e-05,-1.0822510375874117e-05,-3.523608256728039e-06,2.2234614865425384e-21,5.03372575622052e-07,2.623450972532377e-22,2.1958718207315542e-05,-2.800089091553254e-20,-3.1369595490104984e-06,1.4803510807016857e-21,2.623450972532377e-22,7.295255244343934e-08,15.0,45.0,0.03221976384520531,-0.004437339957803488,-0.001604995341040194,0.0001633986976230517,7.246376480907202e-05,2.0557097741402686e-05,-0.004437339957803488,0.0013629152672365308,7.246376480907202e-05,-7.54147840780206e-05,-1.035196692100726e-05,8.727730469269746e-21,-0.001604995341040194,7.246376480907202e-05,0.00015805115981493145,2.710505431213761e-20,-3.293807594673126e-06,-2.868432147806743e-06,0.0001633986976230517,-7.54147840780206e-05,2.710505431213761e-20,5.386770226323279e-06,-1.0587911840678754e-21,-4.895663204736909e-22,7.246376480907202e-05,-1.035196692100726e-05,-3.293807594673126e-06,-1.0587911840678754e-21,4.7054393803591665e-07,-5.851375133388131e-23,2.0557097741402686e-05,8.727730469269746e-21,-2.868432147806743e-06,-4.895663204736909e-22,-5.851375133388131e-23,6.519164230667229e-08,15.0,46.0,0.03155234828591347,-0.00434238463640213,-0.0015379278920590878,0.0001598465460119769,6.938020669622347e-05,1.9272278223070316e-05,-0.00434238463640213,0.001333502121269703,6.938020669622347e-05,-7.377532892860472e-05,-9.911457709677052e-06,-1.643399143285167e-20,-0.0015379278920590878,6.938020669622347e-05,0.00014806950639467686,-4.743384504624082e-20,-3.083564706685138e-06,-2.6280379188392544e-06,0.0001598465460119769,-7.377532892860472e-05,-4.743384504624082e-20,5.269666417007102e-06,1.0587911840678754e-21,8.194467464559857e-22,6.938020669622347e-05,-9.911457709677052e-06,-3.083564706685138e-06,1.0587911840678754e-21,4.4050923975191836e-07,1.8832915628093242e-22,1.9272278223070316e-05,-1.643399143285167e-20,-2.6280379188392544e-06,8.194467464559857e-22,1.8832915628093242e-22,5.840084327246586e-08,15.0,47.0,0.030912019312381744,-0.00425140792503953,-0.0014749782858416438,0.00015644555969629437,6.648935959674418e-05,1.8092343452735804e-05,-0.00425140792503953,0.0013053318252786994,6.648935959674418e-05,-7.220564293675125e-05,-9.498479812464211e-06,-2.5070782117941734e-21,-0.0014749782858416438,6.648935959674418e-05,0.00013891117123421282,1.5246593050577406e-20,-2.8908418698847527e-06,-2.4123123694153037e-06,0.00015644555969629437,-7.220564293675125e-05,1.5246593050577406e-20,5.157545729161939e-06,-3.441071348220595e-21,1.4654246206845538e-22,6.648935959674418e-05,-9.498479812464211e-06,-2.8908418698847527e-06,-3.441071348220595e-21,4.129774140437803e-07,2.0932293169129282e-23,1.8092343452735804e-05,-2.5070782117941734e-21,-2.4123123694153037e-06,1.4654246206845538e-22,2.0932293169129282e-23,5.2441574638351085e-08,15.0,48.0,0.030297160148620605,-0.0041641658172011375,-0.001415816368535161,0.00015318627993110567,6.377550744218752e-05,1.70068033185089e-05,-0.0041641658172011375,0.0012783273123204708,6.377550744218752e-05,-7.070136052789167e-05,-9.11078677745536e-06,-8.738335183216617e-21,-0.001415816368535161,6.377550744218752e-05,0.0001304929901380092,-5.166900978251232e-20,-2.7138514724356355e-06,-2.218278723375988e-06,0.00015318627993110567,-7.070136052789167e-05,-5.166900978251232e-20,5.050097115599783e-06,3.441071348220595e-21,5.306117757360733e-22,6.377550744218752e-05,-9.11078677745536e-06,-2.7138514724356355e-06,3.441071348220595e-21,3.8769306343056087e-07,3.343702120471421e-23,1.70068033185089e-05,-8.738335183216617e-21,-2.218278723375988e-06,5.306117757360733e-22,3.343702120471421e-23,4.7197417529787344e-08,15.0,49.0,0.029706282541155815,-0.004080432001501322,-0.0013601440005004406,0.00015006001922301948,6.122449121903628e-05,1.6006402802304365e-05,-0.004080432001501322,0.0012524174526333809,6.122449121903628e-05,-6.925847264938056e-05,-8.746355888433754e-06,-5.616029778803605e-22,-0.0013601440005004406,6.122449121903628e-05,0.00012274165055714548,-3.049318610115481e-20,-2.5510203158773948e-06,-2.04337061404658e-06,0.00015006001922301948,-6.925847264938056e-05,-3.049318610115481e-20,4.947033630742226e-06,3.546950466627383e-21,2.7759936368636883e-23,6.122449121903628e-05,-8.746355888433754e-06,-2.5510203158773948e-06,3.546950466627383e-21,3.644314858775033e-07,1.8118839683320268e-23,1.6006402802304365e-05,-5.616029778803605e-22,-2.04337061404658e-06,2.7759936368636883e-23,1.8118839683320268e-23,4.257022112597042e-08,15.0,50.0,0.029138008132576942,-0.004000000189989805,-0.0013076922623440623,0.00014705881767440587,5.8823530707741156e-05,1.508295645180624e-05,-0.004000000189989805,0.0012275371700525284,5.8823530707741156e-05,-6.787330494262278e-05,-8.403361789532937e-06,1.1310583352714535e-20,-0.0013076922623440623,5.8823530707741156e-05,0.00011559238919289783,-5.082197683525802e-21,-2.4009602839214494e-06,-1.88536955647578e-06,0.00014705881767440587,-6.787330494262278e-05,-5.082197683525802e-21,4.848092885367805e-06,4.870439446712227e-21,-6.898084502484876e-22,5.8823530707741156e-05,-8.403361789532937e-06,-2.4009602839214494e-06,4.870439446712227e-21,3.429943546962022e-07,-3.590762943022693e-23,1.508295645180624e-05,1.1310583352714535e-20,-1.88536955647578e-06,-6.898084502484876e-22,-3.590762943022693e-23,3.8476930086517314e-08,15.0,51.0,0.028591066598892212,-0.003922677598893642,-0.0012582173803821206,0.0001441753120161593,5.656108623952605e-05,1.4229203770810273e-05,-0.003922677598893642,0.0012036262778565288,5.656108623952605e-05,-6.654245225945488e-05,-8.080155566858593e-06,1.782077023111319e-21,-0.0012582173803821206,5.656108623952605e-05,0.00010898786422330886,-8.470329472543003e-22,-2.2624433313467307e-06,-1.742351514621987e-06,0.0001441753120161593,-6.654245225945488e-05,-8.470329472543003e-22,4.753032499138499e-06,8.999725064576941e-22,-7.731187756496558e-23,5.656108623952605e-05,-8.080155566858593e-06,-2.2624433313467307e-06,8.999725064576941e-22,3.232061942526343e-07,-3.568095182683348e-23,1.4229203770810273e-05,1.782077023111319e-21,-1.742351514621987e-06,-7.731187756496558e-23,-3.568095182683348e-23,3.484703015033119e-08,15.0,52.0,0.02806427888572216,-0.003848288208246231,-0.0012114981655031443,0.00014140272105578333,5.442670590127818e-05,1.3438692803902086e-05,-0.003848288208246231,0.0011806291295215487,5.442670590127818e-05,-6.526279321406037e-05,-7.775243830110412e-06,-1.6672950098548246e-21,-0.0012114981655031443,5.442670590127818e-05,0.0001028771439450793,4.235164736271502e-21,-2.134380565621541e-06,-1.6126431319207768e-06,0.00014140272105578333,-6.526279321406037e-05,4.235164736271502e-21,4.6616278268629685e-06,-1.376428539288238e-21,1.2365190216592727e-22,5.442670590127818e-05,-7.775243830110412e-06,-2.134380565621541e-06,-1.376428539288238e-21,3.0491150937450584e-07,6.947491681394209e-24,1.3438692803902086e-05,-1.6672950098548246e-21,-1.6126431319207768e-06,1.2365190216592727e-22,6.947491681394209e-24,3.16204520345309e-08,15.0,53.0,0.02755654975771904,-0.003776667872443795,-0.00116733368486166,0.0001387347438139841,5.2410901844268665e-05,1.270567281608237e-05,-0.003776667872443795,0.0011584943858906627,5.2410901844268665e-05,-6.403141742339358e-05,-7.487271432182752e-06,-3.828037182427342e-21,-0.00116733368486166,5.2410901844268665e-05,9.721492824610323e-05,-3.049318610115481e-20,-2.0158038296358427e-06,-1.4947851241231547e-06,0.0001387347438139841,-6.403141742339358e-05,-3.049318610115481e-20,4.573672867991263e-06,2.276401045745932e-21,2.487242588322317e-22,5.2410901844268665e-05,-7.487271432182752e-06,-2.0158038296358427e-06,2.276401045745932e-21,2.8797200002372847e-07,7.596647686883295e-24,1.270567281608237e-05,-3.828037182427342e-21,-1.4947851241231547e-06,2.487242588322317e-22,7.596647686883295e-24,2.8745866131885123e-08,15.0,54.0,0.02706686407327652,-0.0037076647859066725,-0.0011255411664023995,0.00013616557407658547,5.0505052058724687e-05,1.202501243824372e-05,-0.0037076647859066725,0.0011371743166819215,5.0505052058724687e-05,-6.28456546110101e-05,-7.215007371996762e-06,2.7069017025529002e-20,-0.0011255411664023995,5.0505052058724687e-05,9.196079918183386e-05,1.0587911840678754e-19,-1.9058509224123554e-06,-1.3875013564756955e-06,0.00013616557407658547,-6.28456546110101e-05,1.0587911840678754e-19,4.488975264393957e-06,-2.8587361969832636e-21,-1.5955784911361554e-21,5.0505052058724687e-05,-7.215007371996762e-06,-1.9058509224123554e-06,-2.8587361969832636e-21,2.7226442966821196e-07,-1.3140904281511687e-22,1.202501243824372e-05,2.7069017025529002e-20,-1.3875013564756955e-06,-1.5955784911361554e-21,-1.3140904281511687e-22,2.617927208348192e-08,15.0,55.0,0.02659427560865879,-0.003641138318926096,-0.0010859535541385412,0.0001336898421868682,4.870129851042293e-05,1.1392116903152782e-05,-0.003641138318926096,0.0011166249169036746,4.870129851042293e-05,-6.170300184749067e-05,-6.9573284235957544e-06,1.584967718737532e-20,-0.0010859535541385412,4.870129851042293e-05,8.70786388986744e-05,2.710505431213761e-20,-1.8037518429991906e-06,-1.2896736052425695e-06,0.0001336898421868682,-6.170300184749067e-05,2.710505431213761e-20,4.407357209856855e-06,2.4352197233561135e-21,-8.506912423706085e-22,4.870129851042293e-05,-6.9573284235957544e-06,-1.8037518429991906e-06,2.4352197233561135e-21,2.576788347141701e-07,-1.1404894059449085e-22,1.1392116903152782e-05,1.584967718737532e-20,-1.2896736052425695e-06,-8.506912423706085e-22,-1.1404894059449085e-22,2.38828441467831e-08,15.0,56.0,0.026137907058000565,-0.003576957155019045,-0.0010484184604138136,0.00013130252773407847,4.699248165707104e-05,1.0802868928294629e-05,-0.003576957155019045,0.0010968050919473171,4.699248165707104e-05,-6.0601163568207994e-05,-6.713211405440234e-06,-9.96394300900101e-21,-0.0010484184604138136,4.699248165707104e-05,8.253610576502979e-05,-2.371692252312041e-20,-1.7088175354729174e-06,-1.2003188203379977e-06,0.00013130252773407847,-6.0601163568207994e-05,-2.371692252312041e-20,4.328654540586285e-06,-1.0058516248644817e-21,5.223567818141551e-22,4.699248165707104e-05,-6.713211405440234e-06,-1.7088175354729174e-06,-1.0058516248644817e-21,2.4411679078184534e-07,8.207441386551484e-23,1.0802868928294629e-05,-9.96394300900101e-21,-1.2003188203379977e-06,5.223567818141551e-22,8.207441386551484e-23,2.1823979068358312e-08,15.0,57.0,0.02569693699479103,-0.0035149995237588882,-0.001012796419672668,0.00012899897410534322,4.537204949883744e-05,1.0253570508211851e-05,-0.0035149995237588882,0.0010776766575872898,4.537204949883744e-05,-5.9537986089708284e-05,-6.481721356976777e-06,6.433112466898824e-21,-0.001012796419672668,4.537204949883744e-05,7.830415415810421e-05,3.6422416731934915e-20,-1.6204303392441943e-06,-1.118571390179568e-06,0.00012899897410534322,-5.9537986089708284e-05,3.6422416731934915e-20,4.2527130972302984e-06,-1.9587636905255695e-21,-3.6119981950670286e-22,4.537204949883744e-05,-6.481721356976777e-06,-1.6204303392441943e-06,-1.9587636905255695e-21,2.3149004846345633e-07,-2.765637155355585e-23,1.0253570508211851e-05,6.433112466898824e-21,-1.118571390179568e-06,-3.6119981950670286e-22,-2.765637155355585e-23,1.9974487841523114e-08,15.0,58.0,0.025270596146583557,-0.003455151803791523,-0.0009789597243070602,0.0001267748448299244,4.3834013922605664e-05,9.740891982801259e-06,-0.003455151803791523,0.0010592039907351136,4.3834013922605664e-05,-5.8511468523647636e-05,-6.262001988943666e-06,-1.1525004884918332e-20,-0.0009789597243070602,4.3834013922605664e-05,7.435669976985082e-05,-4.2351647362715017e-20,-1.5380355762317777e-06,-1.0436669981572777e-06,0.0001267748448299244,-5.8511468523647636e-05,-4.2351647362715017e-20,4.179390543868067e-06,7.411538288475128e-22,6.335632987949536e-22,4.3834013922605664e-05,-6.262001988943666e-06,-1.5380355762317777e-06,7.411538288475128e-22,2.197193680331111e-07,6.117729915959298e-23,9.740891982801259e-06,-1.1525004884918332e-20,-1.0436669981572777e-06,6.335632987949536e-22,6.117729915959298e-23,1.830994733609259e-08,15.0,59.0,0.024858171120285988,-0.0033973080571740866,-0.0009467907948419452,0.00012462612357921898,4.2372881580377e-05,9.261832019547e-06,-0.0033973080571740866,0.0010413539130240679,4.2372881580377e-05,-5.751974822487682e-05,-6.053268862160621e-06,-1.0793341822688872e-20,-0.0009467907948419452,4.2372881580377e-05,7.067021215334535e-05,-1.8634724839594607e-20,-1.4611338201575563e-06,-9.749296623340342e-07,0.00012462612357921898,-5.751974822487682e-05,-1.8634724839594607e-20,4.1085536395257805e-06,-1.879354351720479e-21,5.517823285644065e-22,4.2372881580377e-05,-6.053268862160621e-06,-1.4611338201575563e-06,-1.879354351720479e-21,2.087334110001393e-07,8.289824339694249e-23,9.261832019547e-06,-1.0793341822688872e-20,-9.749296623340342e-07,5.517823285644065e-22,8.289824339694249e-23,1.680913186419275e-08,15.0,60.0,0.0244589913636446,-0.003341369330883026,-0.0009161818888969719,0.00012254902685526758,4.098360659554601e-05,8.81367850524839e-06,-0.003341369330883026,0.0010240956908091903,4.098360659554601e-05,-5.656108623952605e-05,-5.854800747329136e-06,1.219385068820778e-20,-0.0009161818888969719,4.098360659554601e-05,6.722348916810006e-05,5.166900978251232e-20,-1.389274757457315e-06,-9.117598551711126e-07,0.00012254902685526758,-5.656108623952605e-05,5.166900978251232e-20,4.040077783429297e-06,-1.1911400820763599e-21,-6.641053677160186e-22,4.098360659554601e-05,-5.854800747329136e-06,-1.389274757457315e-06,-1.1911400820763599e-21,1.9846783061439055e-07,-8.85573611370425e-23,8.81367850524839e-06,1.219385068820778e-20,-9.117598551711126e-07,-6.641053677160186e-22,-8.85573611370425e-23,1.545355665655279e-08,15.0,61.0,0.024072427302598953,-0.0032872429583221674,-0.000887033820617944,0.00012054001854266971,3.966155418311246e-05,8.393979442189448e-06,-0.0032872429583221674,0.0010074001038447022,3.966155418311246e-05,-5.563385639106855e-05,-5.665936441801023e-06,1.3942615516308583e-20,-0.000887033820617944,3.966155418311246e-05,6.399733683792874e-05,4.2351647362715017e-20,-1.3220518439993612e-06,-8.536250675206247e-07,0.00012054001854266971,-5.563385639106855e-05,4.2351647362715017e-20,3.973847015004139e-06,4.499862532288471e-22,-7.443016994037067e-22,3.966155418311246e-05,-5.665936441801023e-06,-1.3220518439993612e-06,4.499862532288471e-22,1.8886454711264378e-07,-8.851263587916009e-23,8.393979442189448e-06,1.3942615516308583e-20,-8.536250675206247e-07,-7.443016994037067e-22,-8.851263587916009e-23,1.4227084399465184e-08,15.0,62.0,0.02369789406657219,-0.003234842326492071,-0.0008592549711465836,0.00011859582446049899,3.840245699393563e-05,8.00051202531904e-06,-0.003234842326492071,0.00099124014377594,3.840245699393563e-05,-5.473653436638415e-05,-5.48606521988404e-06,-1.3984386521655377e-20,-0.0008592549711465836,3.840245699393563e-05,6.0974394727963954e-05,-3.959879028413854e-20,-1.2590969618031522e-06,-8.000512252692715e-07,0.00011859582446049899,-5.473653436638415e-05,-3.959879028413854e-20,3.909752649633447e-06,-1.1117307432712692e-21,7.400086300050726e-22,3.840245699393563e-05,-5.48606521988404e-06,-1.2590969618031522e-06,-1.1117307432712692e-21,1.7987099454330746e-07,9.459691178185077e-23,8.00051202531904e-06,-1.3984386521655377e-20,-8.000512252692715e-07,7.400086300050726e-22,9.459691178185077e-23,1.3115593056056696e-08,15.0,63.0,0.02333483286201954,-0.003184086177498102,-0.000832760997582227,0.00011671335232676938,3.720238237292506e-05,7.631258085893933e-06,-0.003184086177498102,0.0009755905484780669,3.720238237292506e-05,-5.3867701353738084e-05,-5.314625923347194e-06,-1.8117995450690388e-20,-0.000832760997582227,3.720238237292506e-05,5.8138903114013374e-05,-8.470329472543003e-20,-1.2000767810604884e-06,-7.506155270675663e-07,0.00011671335232676938,-5.3867701353738084e-05,-8.470329472543003e-20,3.84769282391062e-06,2.6734477397713854e-21,9.860668419002449e-22,3.720238237292506e-05,-5.314625923347194e-06,-1.2000767810604884e-06,2.6734477397713854e-21,1.7143953812137624e-07,1.085323289991972e-22,7.631258085893933e-06,-1.8117995450690388e-20,-7.506155270675663e-07,9.860668419002449e-22,1.085323289991972e-22,1.2106701419156707e-08,15.0,64.0,0.022982729598879814,-0.003134898142889142,-0.0008074737852439284,0.00011488970631035045,3.605769234127365e-05,7.2843822636059485e-06,-0.003134898142889142,0.0009604274528101087,3.605769234127365e-05,-5.3026018576929346e-05,-5.151098775968421e-06,1.5529331502273379e-22,-0.0008074737852439284,3.605769234127365e-05,5.5476557463407516e-05,-1.7152417181899582e-20,-1.1446886674093548e-06,-7.04940248397179e-07,0.00011488970631035045,-5.3026018576929346e-05,-1.7152417181899582e-20,3.7875727230129996e-06,1.6675961149069038e-21,4.5180632573114746e-23,3.605769234127365e-05,-5.151098775968421e-06,-1.1446886674093548e-06,1.6675961149069038e-21,1.6352694842680648e-07,-2.417486647699499e-23,7.2843822636059485e-06,1.5529331502273379e-22,-7.04940248397179e-07,4.5180632573114746e-23,-2.417486647699499e-23,1.1189527526767051e-08,16.0,3.0,0.27185457944869995,-0.04901960864663124,-0.1764705926179886,0.0020424837712198496,0.011029412038624287,0.03125,-0.04901960864663124,0.015581232495605946,0.011029412038624287,-0.0008753501460887492,-0.00147058826405555,-2.2551405187698492e-17,-0.1764705926179886,0.011029412038624287,0.4889705777168274,1.0510805925229811e-21,-0.011029412038624287,-0.1875,0.0020424837712198496,-0.0008753501460887492,1.0510805925229811e-21,5.835667616338469e-05,1.146372162596195e-20,-7.621567847055438e-20,0.011029412038624287,-0.00147058826405555,-0.011029412038624287,1.146372162596195e-20,0.00147058826405555,2.3418766925686896e-17,0.03125,-2.2551405187698492e-17,-0.1875,-7.621567847055438e-20,2.3418766925686896e-17,0.09375,16.0,4.0,0.2287990152835846,-0.03841911628842354,-0.11525735259056091,0.0015318627702072263,0.0066176471300423145,0.015625,-0.03841911628842354,0.011906513012945652,0.0066176471300423145,-0.0006565126241184771,-0.0008823529351502657,-6.505213034913027e-19,-0.11525735259056091,0.0066176471300423145,0.18621324002742767,4.880027503987482e-19,-0.004411764908581972,-0.046875,0.0015318627702072263,-0.0006565126241184771,4.880027503987482e-19,4.376750803203322e-05,-5.374136540442188e-20,-1.6671124081190163e-20,0.0066176471300423145,-0.0008823529351502657,-0.004411764908581972,-5.374136540442188e-20,0.0005882352706976235,1.3010426069826053e-18,0.015625,-6.505213034913027e-19,-0.046875,-1.6671124081190163e-20,1.3010426069826053e-18,0.015625,16.0,5.0,0.19751401245594025,-0.031617648899555206,-0.08130252361297607,0.0012254902394488454,0.004411764908581972,0.008928571827709675,-0.031617648899555206,0.009642857126891613,0.004411764908581972,-0.0005252101109363139,-0.0005882352706976235,-9.540979117872439e-18,-0.08130252361297607,0.004411764908581972,0.09422268718481064,-3.880321572580328e-19,-0.002205882454290986,-0.01785714365541935,0.0012254902394488454,-0.0005252101109363139,-3.880321572580328e-19,3.501400715322234e-05,-1.434556556572128e-20,1.1669493143092173e-19,0.004411764908581972,-0.0005882352706976235,-0.002205882454290986,-1.434556556572128e-20,0.00029411763534881175,3.713392440762853e-18,0.008928571827709675,-9.540979117872439e-18,-0.01785714365541935,1.1669493143092173e-19,3.713392440762853e-18,0.004464285913854837,16.0,6.0,0.173742413520813,-0.02687324956059456,-0.06046481058001518,0.0010212418856099248,0.0031512605492025614,0.005580357275903225,-0.02687324956059456,0.008105742745101452,0.0031512605492025614,-0.0004376750730443746,-0.0004201680712867528,3.3610267347050637e-18,-0.06046481058001518,0.0031512605492025614,0.05487788841128349,3.0460241048320474e-19,-0.001260504242964089,-0.00837053544819355,0.0010212418856099248,-0.0004376750730443746,3.0460241048320474e-19,2.9178338081692345e-05,-5.457536541026707e-21,-5.663042617190831e-20,0.0031512605492025614,-0.0004201680712867528,-0.001260504242964089,-5.457536541026707e-21,0.00016806722851470113,-8.402566836762659e-19,0.005580357275903225,3.3610267347050637e-18,-0.00837053544819355,-5.663042617190831e-20,-8.402566836762659e-19,0.0016741071594879031,16.0,7.0,0.1550682783126831,-0.023371849209070206,-0.04674369841814041,0.0008753501460887492,0.002363445470109582,0.0037202381063252687,-0.023371849209070206,0.006992796901613474,0.002363445470109582,-0.00037515006260946393,-0.00031512606074102223,2.4936649967166602e-18,-0.04674369841814041,0.002363445470109582,0.03492647036910057,5.708043051971306e-19,-0.0007878151373006403,-0.004464285913854837,0.0008753501460887492,-0.00037515006260946393,5.708043051971306e-19,2.501000381016638e-05,-6.074363669779079e-21,-8.236116513272881e-20,0.002363445470109582,-0.00031512606074102223,-0.0007878151373006403,-6.074363669779079e-21,0.0001050420178216882,-2.778268066994105e-19,0.0037202381063252687,2.4936649967166602e-18,-0.004464285913854837,-8.236116513272881e-20,-2.778268066994105e-19,0.0007440476329065859,16.0,8.0,0.1400122493505478,-0.020680146291851997,-0.037224262952804565,0.0007659313851036131,0.0018382353009656072,0.0026041667442768812,-0.020680146291851997,0.006149334833025932,0.0018382353009656072,-0.00032825631205923855,-0.00024509805371053517,2.710505431213761e-18,-0.037224262952804565,0.0018382353009656072,0.023656338453292847,1.3361336765186361e-18,-0.0005252101109363139,-0.0026041667442768812,0.0007659313851036131,-0.00032825631205923855,1.3361336765186361e-18,2.188375401601661e-05,-3.3408357987899213e-20,-1.4529368005887404e-19,0.0018382353009656072,-0.00024509805371053517,-0.0005252101109363139,-3.3408357987899213e-20,7.002801430644467e-05,-1.0164395367051604e-19,0.0026041667442768812,2.710505431213761e-18,-0.0026041667442768812,-1.4529368005887404e-19,-1.0164395367051604e-19,0.00037202381645329297,16.0,9.0,0.12761685252189636,-0.01854575239121914,-0.030347593128681183,0.0006808278849348426,0.00147058826405555,0.0018939394503831863,-0.01854575239121914,0.005487862043082714,0.00147058826405555,-0.0002917833917308599,-0.0001960784284165129,8.131516293641283e-19,-0.030347593128681183,0.00147058826405555,0.016786033287644386,-1.0204860008641932e-19,-0.0003676470660138875,-0.001623376621864736,0.0006808278849348426,-0.0002917833917308599,-1.0204860008641932e-19,1.9452225387794897e-05,1.4180544447155693e-21,1.152647910817801e-20,0.00147058826405555,-0.0001960784284165129,-0.0003676470660138875,1.4180544447155693e-21,4.901960710412823e-05,-1.9651164376299768e-19,0.0018939394503831863,8.131516293641283e-19,-0.001623376621864736,1.152647910817801e-20,-1.9651164376299768e-19,0.000202922077733092,16.0,10.0,0.11723484843969345,-0.016811497509479523,-0.025217246264219284,0.0006127451197244227,0.0012032085796818137,0.0014204545877873898,-0.016811497509479523,0.0049551185220479965,0.0012032085796818137,-0.00026260505546815693,-0.00016042780771385878,-0.0,-0.025217246264219284,0.0012032085796818137,0.012350991368293762,1.3552527156068805e-20,-0.0002673796843737364,-0.0010653409408405423,0.0006127451197244227,-0.00026260505546815693,1.3552527156068805e-20,1.750700357661117e-05,-1.6940658945086007e-21,-0.0,0.0012032085796818137,-0.00016042780771385878,-0.0002673796843737364,-1.6940658945086007e-21,3.565062434063293e-05,-0.0,0.0014204545877873898,-0.0,-0.0010653409408405423,-0.0,-0.0,0.00011837121564894915,16.0,11.0,0.10841303318738937,-0.01537433173507452,-0.02128753624856472,0.0005570409703068435,0.0010026737581938505,0.0010926573304459453,-0.01537433173507452,0.004516806919127703,0.0010026737581938505,-0.00023873185273259878,-0.0001336898421868682,-0.0,-0.02128753624856472,0.0010026737581938505,0.009356575086712837,1.3552527156068805e-20,-0.00020053476328030229,-0.0007284382008947432,0.0005570409703068435,-0.00023873185273259878,1.3552527156068805e-20,1.591545697010588e-05,-1.6940658945086007e-21,-0.0,0.0010026737581938505,-0.0001336898421868682,-0.00020053476328030229,-1.6940658945086007e-21,2.6737967345979996e-05,-0.0,0.0010926573304459453,-0.0,-0.0007284382008947432,-0.0,-0.0,7.284382445504889e-05,16.0,12.0,0.10082462430000305,-0.01416383869946003,-0.018210649490356445,0.0005106209428049624,0.0008484162972308695,0.0008585164905525744,-0.01416383869946003,0.004149833228439093,0.0008484162972308695,-0.0002188375365221873,-0.0001131221724790521,-0.0,-0.018210649490356445,0.0008484162972308695,0.007260202895849943,-1.3552527156068805e-20,-0.00015425750461872667,-0.000515109917614609,0.0005106209428049624,-0.0002188375365221873,-1.3552527156068805e-20,1.4589169040846173e-05,8.470329472543003e-22,-0.0,0.0008484162972308695,-0.0001131221724790521,-0.00015425750461872667,8.470329472543003e-22,2.056766788882669e-05,-0.0,0.0008585164905525744,-0.0,-0.000515109917614609,-0.0,-0.0,4.682817234424874e-05,16.0,13.0,0.09422807395458221,-0.013130252249538898,-0.015756303444504738,0.00047134238411672413,0.0007272139773704112,0.0006868132040835917,-0.013130252249538898,0.003838073695078492,0.0007272139773704112,-0.00020200388098601252,-9.696186316432431e-05,1.3552527156068805e-20,-0.015756303444504738,0.0007272139773704112,0.005747928749769926,-0.0,-0.00012120232713641599,-0.00037462537875398993,0.00047134238411672413,-0.00020200388098601252,-0.0,1.3466925338434521e-05,-8.470329472543003e-22,4.235164736271502e-22,0.0007272139773704112,-9.696186316432431e-05,-0.00012120232713641599,-8.470329472543003e-22,1.6160311133717187e-05,-2.541098841762901e-21,0.0006868132040835917,1.3552527156068805e-20,-0.00037462537875398993,4.235164736271502e-22,-2.541098841762901e-21,3.121878035017289e-05,16.0,14.0,0.08844099938869476,-0.012237395159900188,-0.013767069205641747,0.0004376750730443746,0.0006302521214820445,0.0005580357392318547,-0.012237395159900188,0.0035699279978871346,0.0006302521214820445,-0.00018757503130473197,-8.403361425735056e-05,-6.776263578034403e-21,-0.013767069205641747,0.0006302521214820445,0.0046291714534163475,-0.0,-9.696186316432431e-05,-0.00027901786961592734,0.0004376750730443746,-0.00018757503130473197,-0.0,1.250500190508319e-05,0.0,0.0,0.0006302521214820445,-8.403361425735056e-05,-9.696186316432431e-05,0.0,1.2928247997479048e-05,0.0,0.0005580357392318547,-6.776263578034403e-21,-0.00027901786961592734,0.0,0.0,2.146291262761224e-05,16.0,15.0,0.08332312107086182,-0.01145833358168602,-0.012132353149354458,0.00040849673678167164,0.0005514706135727465,0.0004595588252414018,-0.01145833358168602,0.0033368347212672234,0.0005514706135727465,-0.00017507003212813288,-7.352940883720294e-05,1.3552527156068805e-20,-0.012132353149354458,0.0005514706135727465,0.003783532651141286,-0.0,-7.878151518525556e-05,-0.00021210407430771738,0.00040849673678167164,-0.00017507003212813288,-0.0,1.1671335414575879e-05,4.235164736271502e-22,-2.117582368135751e-22,0.0005514706135727465,-7.352940883720294e-05,-7.878151518525556e-05,4.235164736271502e-22,1.050420178216882e-05,-1.6940658945086007e-21,0.0004595588252414018,1.3552527156068805e-20,-0.00021210407430771738,-2.117582368135751e-22,-1.6940658945086007e-21,1.5150290892051999e-05,16.0,16.0,0.07876478135585785,-0.010772599838674068,-0.010772599838674068,0.00038296569255180657,0.00048659168533049524,0.00038296569255180657,-0.010772599838674068,0.0031323374714702368,0.00048659168533049524,-0.00016412815602961928,-6.48788918624632e-05,-2.371692252312041e-20,-0.010772599838674068,0.00048659168533049524,0.0031323374714702368,-0.0,-6.48788918624632e-05,-0.00016412815602961928,0.00038296569255180657,-0.00016412815602961928,-0.0,1.0941877008008305e-05,0.0,0.0,0.00048659168533049524,-6.48788918624632e-05,-6.48788918624632e-05,0.0,8.650518793729134e-06,2.964615315390051e-21,0.00038296569255180657,-2.371692252312041e-20,-0.00016412815602961928,0.0,2.964615315390051e-21,1.0941877008008305e-05,16.0,17.0,0.07467901706695557,-0.010164359584450722,-0.009629393927752972,0.00036043828004039824,0.00043252596515230834,0.00032249742071144283,-0.010164359584450722,0.002951474627479911,0.00043252596515230834,-0.00015447355690412223,-5.7670127716846764e-05,-2.371692252312041e-20,-0.009629393927752972,0.00043252596515230834,0.0026226628106087446,-0.0,-5.406574564403854e-05,-0.00012899897410534322,0.00036043828004039824,-0.00015447355690412223,-0.0,1.0298236702510621e-05,0.0,0.0,0.00043252596515230834,-5.7670127716846764e-05,-5.406574564403854e-05,0.0,7.2087659646058455e-06,2.541098841762901e-21,0.00032249742071144283,-2.371692252312041e-20,-0.00012899897410534322,0.0,2.541098841762901e-21,8.062435881583951e-06,16.0,18.0,0.07099601626396179,-0.00962117314338684,-0.008659055456519127,0.0003404139424674213,0.0003869968932121992,0.0002741228090599179,-0.00962117314338684,0.0027903704904019833,0.0003869968932121992,-0.00014589169586542994,-5.159958891454153e-05,6.776263578034403e-21,-0.008659055456519127,0.0003869968932121992,0.0022179996594786644,-0.0,-4.5529046474257484e-05,-0.00010279605339746922,0.0003404139424674213,-0.00014589169586542994,-0.0,9.726112693897448e-06,0.0,0.0,0.0003869968932121992,-5.159958891454153e-05,-4.5529046474257484e-05,0.0,6.070539711799938e-06,-4.235164736271502e-22,0.0002741228090599179,6.776263578034403e-21,-0.00010279605339746922,0.0,-4.235164736271502e-22,6.046826456440613e-06,16.0,19.0,0.06765903532505035,-0.009133126586675644,-0.007828394882380962,0.00032249742071144283,0.0003482972097117454,0.000234962411923334,-0.009133126586675644,0.002645953092724085,0.0003482972097117454,-0.00013821317406836897,-4.643962893169373e-05,-6.776263578034403e-21,-0.007828394882380962,0.0003482972097117454,0.0018925991607829928,6.566272389648523e-21,-3.8699690776411444e-05,-8.292790880659595e-05,0.00032249742071144283,-0.00013821317406836897,6.566272389648523e-21,9.214211786456872e-06,-5.577829725893693e-22,2.9923377934874646e-23,0.0003482972097117454,-4.643962893169373e-05,-3.8699690776411444e-05,-5.577829725893693e-22,5.159958618605742e-06,1.0587911840678754e-21,0.000234962411923334,-6.776263578034403e-21,-8.292790880659595e-05,2.9923377934874646e-23,1.0587911840678754e-21,4.607105893228436e-06,16.0,20.0,0.06462153047323227,-0.008692227303981781,-0.007111821789294481,0.00030637255986221135,0.00031512606074102223,0.000202922077733092,-0.008692227303981781,0.002515756292268634,0.00031512606074102223,-0.00013130252773407847,-4.201680712867528e-05,-3.3881317890172014e-21,-0.007111821789294481,0.00031512606074102223,0.0016279418487101793,5.6480578849652634e-21,-3.317116352263838e-05,-6.764069257769734e-05,0.00030637255986221135,-0.00013130252773407847,5.6480578849652634e-21,8.753501788305584e-06,-3.2684382898994773e-22,-1.2879667628493594e-22,0.00031512606074102223,-4.201680712867528e-05,-3.317116352263838e-05,-3.2684382898994773e-22,4.422821803018451e-06,6.352747104407253e-22,0.000202922077733092,-3.3881317890172014e-21,-6.764069257769734e-05,-1.2879667628493594e-22,6.352747104407253e-22,3.5600364753918257e-06,16.0,21.0,0.06184493005275726,-0.00829195324331522,-0.0064893546514213085,0.0002917833917308599,0.00028647822909988463,0.00017645397747401148,-0.00829195324331522,0.0023977772798389196,0.00028647822909988463,-0.0001250500208698213,-3.819709672825411e-05,1.6940658945086007e-21,-0.0064893546514213085,0.00028647822909988463,0.0014104737201705575,3.0290927516688526e-20,-2.8647822546190582e-05,-5.5722310207784176e-05,0.0002917833917308599,-0.0001250500208698213,3.0290927516688526e-20,8.336667633557227e-06,-4.038790120146852e-21,1.88079096131566e-37,0.00028647822909988463,-3.819709672825411e-05,-2.8647822546190582e-05,-4.038790120146852e-21,3.819709490926471e-06,-2.117582368135751e-22,0.00017645397747401148,1.6940658945086007e-21,-5.5722310207784176e-05,1.88079096131566e-37,-2.117582368135751e-22,2.7861153739650035e-06,16.0,22.0,0.05929701402783394,-0.007926935330033302,-0.005945201497524977,0.00027852048515342176,0.0002615670673549175,0.00015439723210874945,-0.007926935330033302,0.0022903727367520332,0.0002615670673549175,-0.00011936592636629939,-3.4875611163442954e-05,1.5246593050577406e-20,-0.005945201497524977,0.0002615670673549175,0.001230117748491466,-0.0,-2.4911150831030682e-05,-4.631916817743331e-05,0.00027852048515342176,-0.00011936592636629939,-0.0,7.95772848505294e-06,0.0,0.0,0.0002615670673549175,-3.4875611163442954e-05,-2.4911150831030682e-05,0.0,3.3214867016795324e-06,-1.4823076576950256e-21,0.00015439723210874945,1.5246593050577406e-20,-4.631916817743331e-05,0.0,-1.4823076576950256e-21,2.2056747184251435e-06,16.0,23.0,0.05695066228508949,-0.007592711132019758,-0.005466751754283905,0.0002664109051693231,0.00023976982629392296,0.00013586955901701003,-0.007592711132019758,0.0021921813022345304,0.00023976982629392296,-0.00011417610221542418,-3.196930992999114e-05,1.5246593050577406e-20,-0.005466751754283905,0.00023976982629392296,0.0010792756220325828,2.5352187508303854e-20,-2.1797255612909794e-05,-3.8819875044282526e-05,0.0002664109051693231,-0.00011417610221542418,2.5352187508303854e-20,7.611740329593886e-06,-3.380291748553204e-21,1.316553672920962e-36,0.00023976982629392296,-3.196930992999114e-05,-2.1797255612909794e-05,-3.380291748553204e-21,2.9063007787044626e-06,-1.2705494208814505e-21,0.00013586955901701003,1.5246593050577406e-20,-3.8819875044282526e-05,1.316553672920962e-36,-1.2705494208814505e-21,1.7645397747401148e-06,16.0,24.0,0.054782867431640625,-0.00728553906083107,-0.005043834913522005,0.0002553104714024812,0.00022058823378756642,0.0001201923078042455,-0.00728553906083107,0.002102065831422806,0.00022058823378756642,-0.00010941876826109365,-2.9411765353870578e-05,-5.929230630780102e-21,-0.005043834913522005,0.00022058823378756642,0.0009521432803012431,-0.0,-1.9181585230398923e-05,-3.277972064097412e-05,0.0002553104714024812,-0.00010941876826109365,-0.0,7.294584520423086e-06,0.0,0.0,0.00022058823378756642,-2.9411765353870578e-05,-1.9181585230398923e-05,0.0,2.5575448034942383e-06,5.293955920339377e-22,0.0001201923078042455,-5.929230630780102e-21,-3.277972064097412e-05,0.0,5.293955920339377e-22,1.4252052551455563e-06,16.0,25.0,0.052774008363485336,-0.007002262398600578,-0.0046681747771799564,0.00024509805371053517,0.00020361991482786834,0.00010683760774554685,-0.007002262398600578,0.002019069157540798,0.00020361991482786834,-0.0001050420178216882,-2.714932088565547e-05,4.235164736271502e-21,-0.0046681747771799564,0.00020361991482786834,0.0008442357066087425,-0.0,-1.6968326235655695e-05,-2.7870679332409054e-05,0.00024509805371053517,-0.0001050420178216882,-0.0,7.002801339694997e-06,0.0,0.0,0.00020361991482786834,-2.714932088565547e-05,-1.6968326235655695e-05,0.0,2.2624433313467307e-06,-4.235164736271502e-22,0.00010683760774554685,4.235164736271502e-21,-2.7870679332409054e-05,0.0,-4.235164736271502e-22,1.161278305517044e-06,16.0,26.0,0.05090722069144249,-0.006740196142345667,-0.004332983400672674,0.00023567119205836207,0.0001885369565570727,9.5390721980948e-05,-0.006740196142345667,0.0019423795165494084,0.0001885369565570727,-0.00010100194049300626,-2.51382607530104e-05,1.8634724839594607e-20,-0.004332983400672674,0.0001885369565570727,0.0007520492072217166,-0.0,-1.508295645180624e-05,-2.3847680495237e-05,0.00023567119205836207,-0.00010100194049300626,-0.0,6.7334626692172606e-06,0.0,0.0,0.0001885369565570727,-2.51382607530104e-05,-1.508295645180624e-05,0.0,2.011060814766097e-06,-1.376428539288238e-21,9.5390721980948e-05,1.8634724839594607e-20,-2.3847680495237e-05,0.0,-1.376428539288238e-21,9.539072607367416e-07,16.0,27.0,0.04916795715689659,-0.006497043184936047,-0.004032647702842951,0.0002269426331622526,0.00017507003212813288,8.552271174266934e-05,-0.006497043184936047,0.0018713041208684444,0.00017507003212813288,-9.726112330099568e-05,-2.3342670829151757e-05,-9.317362419797304e-21,-0.004032647702842951,0.00017507003212813288,0.0006728199659846723,-0.0,-1.3466925338434521e-05,-2.0525450963759795e-05,0.0002269426331622526,-9.726112330099568e-05,-0.0,6.484075129264966e-06,0.0,0.0,0.00017507003212813288,-2.3342670829151757e-05,-1.3466925338434521e-05,0.0,1.7955900375454803e-06,6.88214269644119e-22,8.552271174266934e-05,-9.317362419797304e-21,-2.0525450963759795e-05,0.0,6.88214269644119e-22,7.894404348007811e-07,16.0,28.0,0.04754358530044556,-0.006270827259868383,-0.0037624964024871588,0.0002188375365221873,0.00016299623530358076,7.697044202359393e-05,-0.006270827259868383,0.0018052479717880487,0.00016299623530358076,-9.378751565236598e-05,-2.1732830646215007e-05,-1.5416927633277974e-19,-0.0037624964024871588,0.00016299623530358076,0.0006043476168997586,-2.337810934421869e-19,-1.2073795005562715e-05,-1.7762409697752446e-05,0.0002188375365221873,-9.378751565236598e-05,-2.337810934421869e-19,6.252500952541595e-06,2.2234614865425384e-21,7.939832050083751e-21,0.00016299623530358076,-2.1732830646215007e-05,-1.2073795005562715e-05,2.2234614865425384e-21,1.6098393871288863e-06,2.0450923870767306e-21,7.697044202359393e-05,-1.5416927633277974e-19,-1.7762409697752446e-05,7.939832050083751e-21,2.0450923870767306e-21,6.578670195267478e-07,16.0,29.0,0.046023085713386536,-0.006059837527573109,-0.003518615383654833,0.000211291408049874,0.00015212981088552624,6.952168769203126e-05,-0.006059837527573109,0.001743697444908321,0.00015212981088552624,-9.055346163222566e-05,-2.0283976482460275e-05,2.3097760063165995e-20,-0.003518615383654833,0.00015212981088552624,0.0005448657320812345,8.809142651444724e-20,-1.0866415323107503e-05,-1.5449264537892304e-05,0.000211291408049874,-9.055346163222566e-05,8.809142651444724e-20,6.036897502781358e-06,-4.0234064994579266e-21,-1.7359427208126647e-21,0.00015212981088552624,-2.0283976482460275e-05,-1.0866415323107503e-05,-4.0234064994579266e-21,1.4488554143099464e-06,4.2057342922727507e-22,6.952168769203126e-05,2.3097760063165995e-20,-1.5449264537892304e-05,-1.7359427208126647e-21,4.2057342922727507e-22,5.517594559023564e-07,16.0,30.0,0.04459680616855621,-0.005862587131559849,-0.003297705203294754,0.00020424836839083582,0.00014231499517336488,6.300403038039804e-05,-0.005862587131559849,0.0016862067859619856,0.00014231499517336488,-8.753501606406644e-05,-1.8975331840920262e-05,-6.177502429289358e-20,-0.003297705203294754,0.00014231499517336488,0.0004929449642077088,-2.0328790734103208e-20,-9.814826626097783e-06,-1.350086404272588e-05,0.00020424836839083582,-8.753501606406644e-05,-2.0328790734103208e-20,5.835667707287939e-06,-8.682087709356578e-21,2.9753840114310125e-21,0.00014231499517336488,-1.8975331840920262e-05,-9.814826626097783e-06,-8.682087709356578e-21,1.3086436183584738e-06,9.87375467478698e-22,6.300403038039804e-05,-6.177502429289358e-20,-1.350086404272588e-05,2.9753840114310125e-21,9.87375467478698e-22,4.6554703203582903e-07,16.0,31.0,0.043256256729364395,-0.005677775014191866,-0.0030969681683927774,0.0001976597122848034,0.00013342029706109315,5.7276392908534035e-05,-0.005677775014191866,0.0016323868185281754,0.00013342029706109315,-8.471130422549322e-05,-1.778937439667061e-05,-5.1047929620629976e-20,-0.0030969681683927774,0.00013342029706109315,0.0004474204033613205,-1.2366681029912785e-19,-8.894687198335305e-06,-1.1850288501591422e-05,0.0001976597122848034,-8.471130422549322e-05,-1.2366681029912785e-19,5.647420039167628e-06,4.7645603283054394e-21,2.785546666695268e-21,0.00013342029706109315,-1.778937439667061e-05,-8.894687198335305e-06,4.7645603283054394e-21,1.1859582400575164e-06,4.996742413768902e-22,5.7276392908534035e-05,-5.1047929620629976e-20,-1.1850288501591422e-05,2.785546666695268e-21,4.996742413768902e-22,3.950096072458109e-07,16.0,32.0,0.04199392721056938,-0.005504261236637831,-0.0029140207916498184,0.00019148284627590328,0.00012533421977423131,5.2222592785255983e-05,-0.005504261236637831,0.0015818969113752246,0.00012533421977423131,-8.206407801480964e-05,-1.6711230273358524e-05,-1.5312462153613343e-20,-0.0029140207916498184,0.00012533421977423131,0.0004073362215422094,-3.049318610115481e-20,-8.08607910585124e-06,-1.0444518920849077e-05,0.00019148284627590328,-8.206407801480964e-05,-3.049318610115481e-20,5.4709385040041525e-06,-1.164670302474663e-21,1.2885193946233465e-21,0.00012533421977423131,-1.6711230273358524e-05,-8.08607910585124e-06,-1.164670302474663e-21,1.0781438959384104e-06,-2.5065024064422345e-22,5.2222592785255983e-05,-1.5312462153613343e-20,-1.0444518920849077e-05,1.2885193946233465e-21,-2.5065024064422345e-22,3.3691995326989854e-07,16.0,33.0,0.040803175419569016,-0.0053410399705171585,-0.002746820682659745,0.00018568032828625292,0.0001179616228910163,4.774637272930704e-05,-0.0053410399705171585,0.001534437295049429,0.0001179616228910163,-7.95772866695188e-05,-1.572821565787308e-05,-2.785015340476609e-20,-0.002746820682659745,0.0001179616228910163,0.00037190300645306706,-7.623296525288703e-20,-7.372601430688519e-06,-9.241232874046545e-06,0.00018568032828625292,-7.95772866695188e-05,-7.623296525288703e-20,5.305152171786176e-06,4.7645603283054394e-21,1.0728068063511775e-21,0.0001179616228910163,-1.572821565787308e-05,-7.372601430688519e-06,4.7645603283054394e-21,9.830134786170674e-07,5.725870013940109e-22,4.774637272930704e-05,-2.785015340476609e-20,-9.241232874046545e-06,1.0728068063511775e-21,5.725870013940109e-22,2.8878852731395455e-07,16.0,34.0,0.03967807814478874,-0.0051872218027710915,-0.0025936109013855457,0.00018021914002019912,0.00011122095747850835,4.376750803203322e-05,-0.0051872218027710915,0.0014897430082783103,0.00011122095747850835,-7.723677845206112e-05,-1.4829461179033387e-05,1.0201128163921354e-20,-0.0025936109013855457,0.00011122095747850835,0.0003404649905860424,-1.1858461261560205e-20,-6.740664048265899e-06,-8.206407983379904e-06,0.00018021914002019912,-7.723677845206112e-05,-1.1858461261560205e-20,5.149118351255311e-06,2.0117032497289633e-21,-1.650362646949671e-22,0.00011122095747850835,-1.4829461179033387e-05,-6.740664048265899e-06,2.0117032497289633e-21,8.987552178041369e-07,-3.696115758677066e-22,4.376750803203322e-05,1.0201128163921354e-20,-8.206407983379904e-06,-1.650362646949671e-22,-3.696115758677066e-22,2.4867901515790436e-07,16.0,35.0,0.038613349199295044,-0.005042016971856356,-0.0024528729263693094,0.00017507003212813288,0.0001050420178216882,4.021879067295231e-05,-0.005042016971856356,0.0014475790085271,0.0001050420178216882,-7.503000961150974e-05,-1.4005602679389995e-05,5.432719345504269e-20,-0.0024528729263693094,0.0001050420178216882,0.00031247432343661785,9.825582188149884e-20,-6.1789423853042535e-06,-7.3125074777635746e-06,0.00017507003212813288,-7.503000961150974e-05,9.825582188149884e-20,5.002000762033276e-06,5.293955920339377e-22,-2.792586587631205e-21,0.0001050420178216882,-1.4005602679389995e-05,-6.1789423853042535e-06,5.293955920339377e-22,8.238589543907437e-07,-5.180151943144063e-22,4.021879067295231e-05,5.432719345504269e-20,-7.3125074777635746e-06,-2.792586587631205e-21,-5.180151943144063e-22,2.1507374015072855e-07,16.0,36.0,0.03760426491498947,-0.0049047209322452545,-0.0023232889361679554,0.00017020697123371065,9.936407150235027e-05,3.7043620977783576e-05,-0.0049047209322452545,0.0014077365631237626,9.936407150235027e-05,-7.294584793271497e-05,-1.3248542927613016e-05,6.261602140661566e-21,-0.0023232889361679554,9.936407150235027e-05,0.0002874709607567638,-4.0657581468206416e-20,-5.677946774085285e-06,-6.5371100390620995e-06,0.00017020697123371065,-7.294584793271497e-05,-4.0657581468206416e-20,4.863056346948724e-06,6.511565782017434e-21,-3.347825464868575e-22,9.936407150235027e-05,-1.3248542927613016e-05,-5.677946774085285e-06,6.511565782017434e-21,7.570595812467218e-07,-1.5895648214399256e-23,3.7043620977783576e-05,6.261602140661566e-21,-6.5371100390620995e-06,-3.347825464868575e-22,-1.5895648214399256e-23,1.8677457092053373e-07,16.0,37.0,0.03664656728506088,-0.0047747050411999226,-0.002203709911555052,0.00016560677613597363,9.413438237970695e-05,3.419411223148927e-05,-0.0047747050411999226,0.0013700288254767656,9.413438237970695e-05,-7.097433262970299e-05,-1.2551250620163046e-05,-2.947581210885141e-20,-0.002203709911555052,9.413438237970695e-05,0.000265066628344357,-6.776263578034403e-20,-5.229687758401269e-06,-5.861847967025824e-06,0.00016560677613597363,-7.097433262970299e-05,-6.776263578034403e-20,4.731622539111413e-06,2.2234614865425384e-21,1.2873854544037456e-21,9.413438237970695e-05,-1.2551250620163046e-05,-5.229687758401269e-06,2.2234614865425384e-21,6.972917390157818e-07,4.56912073323453e-22,3.419411223148927e-05,-2.947581210885141e-20,-5.861847967025824e-06,1.2873854544037456e-21,4.56912073323453e-22,1.6282911019516177e-07,16.0,38.0,0.035736434161663055,-0.004651404917240143,-0.0020931323524564505,0.00016124871035572141,8.930698095355183e-05,3.162955545121804e-05,-0.004651404917240143,0.0013342887395992875,8.930698095355183e-05,-6.910658703418449e-05,-1.1907596672244836e-05,1.3571730024742253e-20,-0.0020931323524564505,8.930698095355183e-05,0.0002449321036692709,-8.470329472543003e-21,-4.8274041546392255e-06,-5.271592272038106e-06,0.00016124871035572141,-6.910658703418449e-05,-8.470329472543003e-21,4.607105893228436e-06,3.3881317890172014e-21,-5.5202355591833585e-22,8.930698095355183e-05,-1.1907596672244836e-05,-4.8274041546392255e-06,3.3881317890172014e-21,6.436538910747913e-07,-2.4483336965574096e-22,3.162955545121804e-05,1.3571730024742253e-20,-5.271592272038106e-06,-5.5202355591833585e-22,-2.4483336965574096e-22,1.4247547142076655e-07,16.0,39.0,0.03487040847539902,-0.0045343139208853245,-0.0019906742963939905,0.00015711413288954645,8.484163117827848e-05,2.9315197025425732e-05,-0.0045343139208853245,0.0013003662461414933,8.484163117827848e-05,-6.733462942065671e-05,-1.1312216884107329e-05,-4.154642581048586e-20,-0.0019906742963939905,8.484163117827848e-05,0.0002267869422212243,-9.317362419797304e-20,-4.465348865778651e-06,-4.753815574076725e-06,0.00015711413288954645,-6.733462942065671e-05,-9.317362419797304e-20,4.488975264393957e-06,9.529120656610879e-22,2.2967774365237612e-21,8.484163117827848e-05,-1.1312216884107329e-05,-4.465348865778651e-06,9.529120656610879e-22,5.953798449809256e-07,3.0939460441969345e-22,2.9315197025425732e-05,-4.154642581048586e-20,-4.753815574076725e-06,2.2967774365237612e-21,3.0939460441969345e-22,1.2510041358382296e-07,16.0,40.0,0.03404535725712776,-0.004422973375767469,-0.001895560068078339,0.00015318627993110567,8.070301555562764e-05,2.7221254640608095e-05,-0.004422973375767469,0.001268126186914742,8.070301555562764e-05,-6.565126386703923e-05,-1.0760401892184746e-05,-5.375467945799229e-21,-0.001895560068078339,8.070301555562764e-05,0.0002103913138853386,-2.371692252312041e-20,-4.138616077398183e-06,-4.29809279012261e-06,0.00015318627993110567,-6.565126386703923e-05,-2.371692252312041e-20,4.376750894152792e-06,9.529120656610879e-22,2.4775609299869757e-22,8.070301555562764e-05,-1.0760401892184746e-05,-4.138616077398183e-06,9.529120656610879e-22,5.518154466699343e-07,8.106713946374348e-23,2.7221254640608095e-05,-5.375467945799229e-21,-4.29809279012261e-06,2.4775609299869757e-22,8.106713946374348e-23,1.1020750889656483e-07,16.0,41.0,0.03325843811035156,-0.004316970705986023,-0.0018071039812639356,0.00014945001748856157,7.686001481488347e-05,2.532209691707976e-05,-0.004316970705986023,0.0012374462094157934,7.686001481488347e-05,-6.405000749509782e-05,-1.0248001672152895e-05,8.540824001543275e-21,-0.0018071039812639356,7.686001481488347e-05,0.00019553929450921714,3.3881317890172014e-21,-3.8430007407441735e-06,-3.895707322953967e-06,0.00014945001748856157,-6.405000749509782e-05,3.3881317890172014e-21,4.270000772521598e-06,2.6999175193730823e-21,-4.083124355455763e-22,7.686001481488347e-05,-1.0248001672152895e-05,-3.8430007407441735e-06,2.6999175193730823e-21,5.124001063450123e-07,-5.546634379168909e-23,2.532209691707976e-05,8.540824001543275e-21,-3.895707322953967e-06,-4.083124355455763e-22,-5.546634379168909e-23,9.739267881059277e-08,16.0,42.0,0.032507073134183884,-0.004215930588543415,-0.0017246988136321306,0.00014589169586542994,7.328512583626434e-05,2.3595590391778387e-05,-0.004215930588543415,0.0012082158355042338,7.328512583626434e-05,-6.252501043491066e-05,-9.771350050868932e-06,-8.114040810731393e-21,-0.0017246988136321306,7.328512583626434e-05,0.00018205335072707385,-3.3881317890172014e-21,-3.574884203771944e-06,-3.5393386497162282e-06,0.00014589169586542994,-6.252501043491066e-05,-3.3881317890172014e-21,4.168333816778613e-06,-1.2176098616780567e-21,3.5425892901336354e-22,7.328512583626434e-05,-9.771350050868932e-06,-3.574884203771944e-06,-1.2176098616780567e-21,4.7665125180174073e-07,1.268565833290716e-22,2.3595590391778387e-05,-8.114040810731393e-21,-3.5393386497162282e-06,3.5425892901336354e-22,1.268565833290716e-22,8.632532910723967e-08,16.0,43.0,0.0317889042198658,-0.004119512625038624,-0.0016478049801662564,0.0001424988586222753,6.995398871367797e-05,2.2022550183464773e-05,-0.004119512625038624,0.0011803347151726484,6.995398871367797e-05,-6.107093940954655e-05,-9.327198313258123e-06,2.664542461930656e-20,-0.0016478049801662564,6.995398871367797e-05,0.00016977991617750376,4.912791094074942e-20,-3.3311421248072293e-06,-3.2228124382527312e-06,0.0001424988586222753,-6.107093940954655e-05,4.912791094074942e-20,4.071395778737497e-06,8.470329472543003e-22,-1.2401454846603333e-21,6.995398871367797e-05,-9.327198313258123e-06,-3.3311421248072293e-06,8.470329472543003e-22,4.441522776232887e-07,-2.8005859653762827e-22,2.2022550183464773e-05,2.664542461930656e-20,-3.2228124382527312e-06,-1.2401454846603333e-21,-2.8005859653762827e-22,7.673362745208578e-08,16.0,44.0,0.031101778149604797,-0.004027406219393015,-0.0015759416855871677,0.00013926024257671088,6.68449210934341e-05,2.0586297978297807e-05,-0.004027406219393015,0.001153711462393403,6.68449210934341e-05,-5.9682963183149695e-05,-8.912656085158233e-06,1.7670576365417296e-20,-0.0015759416855871677,6.68449210934341e-05,0.00015858569531701505,5.505714157152952e-20,-3.109066028628149e-06,-2.9408997761493083e-06,0.00013926024257671088,-5.9682963183149695e-05,5.505714157152952e-20,3.97886424252647e-06,-1.852884572118782e-21,-9.04430517205279e-22,6.68449210934341e-05,-8.912656085158233e-06,-3.109066028628149e-06,-1.852884572118782e-21,4.1454214283476176e-07,-1.782468954452582e-22,2.0586297978297807e-05,1.7670576365417296e-20,-2.9408997761493083e-06,-9.04430517205279e-22,-1.782468954452582e-22,6.83930139189215e-08,16.0,45.0,0.030443726107478142,-0.00393932918086648,-0.0015086793573573232,0.00013616557407658547,6.393861985998228e-05,1.9272278223070316e-05,-0.00393932918086648,0.0011282629566267133,6.393861985998228e-05,-5.835667616338469e-05,-8.525149496563245e-06,1.6411368366215772e-20,-0.0015086793573573232,6.393861985998228e-05,0.00014835460751783103,3.9810548520952116e-20,-2.9063007787044626e-06,-2.689155280677369e-06,0.00013616557407658547,-5.835667616338469e-05,3.9810548520952116e-20,3.890444986609509e-06,4.235164736271502e-22,-9.007235525265624e-22,6.393861985998228e-05,-8.525149496563245e-06,-2.9063007787044626e-06,4.235164736271502e-22,3.87506787546954e-07,-8.93691558065001e-23,1.9272278223070316e-05,1.6411368366215772e-20,-2.689155280677369e-06,-9.007235525265624e-22,-8.93691558065001e-23,6.111716288614844e-08,16.0,46.0,0.02981293946504593,-0.0038550226017832756,-0.0014456334756687284,0.00013320545258466154,6.121782644186169e-05,1.8067761629936285e-05,-0.0038550226017832756,0.0011039129458367825,6.121782644186169e-05,-5.708805110771209e-05,-8.162376616382971e-06,-1.3698177182950628e-20,-0.0014456334756687284,6.121782644186169e-05,0.00013898521137889475,-5.929230630780102e-20,-2.7207922812522156e-06,-2.4637856768094935e-06,0.00013320545258466154,-5.708805110771209e-05,-5.929230630780102e-20,3.805870164796943e-06,2.6469779601696886e-21,7.151054650522722e-22,6.121782644186169e-05,-8.162376616382971e-06,-2.7207922812522156e-06,2.6469779601696886e-21,3.627723117460846e-07,1.246757174031593e-22,1.8067761629936285e-05,-1.3698177182950628e-20,-2.4637856768094935e-06,7.151054650522722e-22,1.246757174031593e-22,5.4750792344293586e-08,16.0,47.0,0.029207760468125343,-0.003774248994886875,-0.0013864588690921664,0.00013037129247095436,5.8667083067120984e-05,1.696157232800033e-05,-0.003774248994886875,0.001080591813661158,5.8667083067120984e-05,-5.587341365753673e-05,-7.822277439117897e-06,8.205581593324884e-21,-0.0013864588690921664,5.8667083067120984e-05,0.0001303886529058218,5.929230630780102e-21,-2.5507426926196786e-06,-2.2615429315919755e-06,0.00013037129247095436,-5.587341365753673e-05,5.929230630780102e-21,3.724894213519292e-06,2.1705219273391446e-21,-4.666556288408616e-22,5.8667083067120984e-05,-7.822277439117897e-06,-2.5507426926196786e-06,2.1705219273391446e-21,3.4009903515652695e-07,-2.9841345867062523e-23,1.696157232800033e-05,8.205581593324884e-21,-2.2615429315919755e-06,-4.666556288408616e-22,-2.9841345867062523e-23,4.916397600140954e-08,16.0,48.0,0.028626659885048866,-0.0036967911291867495,-0.0013308448251336813,0.0001276552357012406,5.6272507208632305e-05,1.594387686054688e-05,-0.0036967911291867495,0.001058235764503479,5.6272507208632305e-05,-5.470938413054682e-05,-7.503001143049914e-06,1.4062666565053877e-20,-0.0013308448251336813,5.6272507208632305e-05,0.00012248684652149677,3.3034284942917713e-20,-2.394574948993977e-06,-2.0796362605324248e-06,0.0001276552357012406,-5.470938413054682e-05,3.3034284942917713e-20,3.647292260211543e-06,-2.117582368135751e-22,-7.041348206195743e-22,5.6272507208632305e-05,-7.503001143049914e-06,-2.394574948993977e-06,-2.117582368135751e-22,3.192766371284961e-07,-1.083704926067693e-22,1.594387686054688e-05,1.4062666565053877e-20,-2.0796362605324248e-06,-7.041348206195743e-22,-1.083704926067693e-22,4.4247578045997216e-08,16.0,49.0,0.02806822769343853,-0.00362244900316,-0.0012785113649442792,0.0001250500208698213,5.4021609685150906e-05,1.5006002286099829e-05,-0.00362244900316,0.0010367861250415444,5.4021609685150906e-05,-5.3592866606777534e-05,-7.202881079138024e-06,-6.066371764124496e-21,-0.0012785113649442792,5.4021609685150906e-05,0.00011521097621880472,-7.623296525288703e-21,-2.250900251965504e-06,-1.9156598227709765e-06,0.0001250500208698213,-5.3592866606777534e-05,-7.623296525288703e-21,3.5728576222027186e-06,-2.6469779601696886e-22,2.1443268985244053e-22,5.4021609685150906e-05,-7.202881079138024e-06,-2.250900251965504e-06,-2.6469779601696886e-22,3.001200354901812e-07,9.337535120378518e-23,1.5006002286099829e-05,-6.066371764124496e-21,-1.9156598227709765e-06,2.1443268985244053e-22,9.337535120378518e-23,3.990957964106201e-08,16.0,50.0,0.02753116376698017,-0.003551037982106209,-0.0012292055180296302,0.00012254902685526758,5.1903112762374803e-05,1.4140271559881512e-05,-0.003551037982106209,0.0010161888785660267,5.1903112762374803e-05,-5.25210089108441e-05,-6.9204152168822475e-06,-1.8869497115130483e-20,-0.0012292055180296302,5.1903112762374803e-05,0.00010850027319975197,-4.0657581468206416e-20,-2.118494421665673e-06,-1.767533944985189e-06,0.00012254902685526758,-5.25210089108441e-05,-4.0657581468206416e-20,3.5014006698474986e-06,-1.402898318889935e-21,1.0083883995872807e-21,5.1903112762374803e-05,-6.9204152168822475e-06,-2.118494421665673e-06,-1.402898318889935e-21,2.8246591909919516e-07,1.1815910785908405e-22,1.4140271559881512e-05,-1.8869497115130483e-20,-1.767533944985189e-06,1.0083883995872807e-21,1.1815910785908405e-22,3.607211951361933e-08,16.0,51.0,0.027014266699552536,-0.0034823883324861526,-0.0011826979462057352,0.00012014609819743782,4.990684101358056e-05,1.3339878933038563e-05,-0.0034823883324861526,0.000996394082903862,4.990684101358056e-05,-5.149118442204781e-05,-6.654245225945488e-06,-3.0353689441769203e-21,-0.0011826979462057352,4.990684101358056e-05,0.00010230088810203597,-9.317362419797304e-21,-1.9962735677836463e-06,-1.633454530747258e-06,0.00012014609819743782,-5.149118442204781e-05,-9.317362419797304e-21,3.4327456432947656e-06,3.441071348220595e-22,1.4604915263454085e-22,4.990684101358056e-05,-6.654245225945488e-06,-1.9962735677836463e-06,3.441071348220595e-22,2.661698204065033e-07,1.3589785700332892e-23,1.3339878933038563e-05,-3.0353689441769203e-21,-1.633454530747258e-06,1.4604915263454085e-22,1.3589785700332892e-23,3.266909232024773e-08,16.0,52.0,0.026516418904066086,-0.003416342893615365,-0.001138780964538455,0.00011783559602918103,4.8023564886534587e-05,1.2598774446814787e-05,-0.003416342893615365,0.0009773557540029287,4.8023564886534587e-05,-5.050097024650313e-05,-6.403141924238298e-06,-2.530129812917337e-20,-0.001138780964538455,4.8023564886534587e-05,9.656502516008914e-05,-8.555032767268433e-20,-1.883277036540676e-06,-1.5118529290703009e-06,0.00011783559602918103,-5.050097024650313e-05,-8.555032767268433e-20,3.3667313346086303e-06,1.879354351720479e-21,1.3654186158933474e-21,4.8023564886534587e-05,-6.403141924238298e-06,-1.883277036540676e-06,1.879354351720479e-21,2.5110361434599326e-07,1.5872352205234993e-22,1.2598774446814787e-05,-2.530129812917337e-20,-1.5118529290703009e-06,1.3654186158933474e-21,1.5872352205234993e-22,2.9644175114640348e-08,16.0,53.0,0.026036586612462997,-0.0033527561463415623,-0.0010972656309604645,0.000115612281661015,4.624491339200176e-05,1.1911568435607478e-05,-0.0033527561463415623,0.0009590314002707601,4.624491339200176e-05,-4.954812175128609e-05,-6.165988452266902e-06,1.9735742624581035e-20,-0.0010972656309604645,4.624491339200176e-05,9.125016367761418e-05,6.268043809681823e-20,-1.778650471351284e-06,-1.4013610325491754e-06,0.000115612281661015,-4.954812175128609e-05,6.268043809681823e-20,3.303208131910651e-06,-1.7734752333136913e-21,-9.37847523431106e-22,4.624491339200176e-05,-6.165988452266902e-06,-1.778650471351284e-06,-1.7734752333136913e-21,2.3715340091712278e-07,-1.8207987592041846e-22,1.1911568435607478e-05,1.9735742624581035e-20,-1.4013610325491754e-06,-9.37847523431106e-22,-1.8207987592041846e-22,2.6949249942731512e-08,16.0,54.0,0.025573810562491417,-0.003291493281722069,-0.0010579800000414252,0.0001134713165811263,4.456327951629646e-05,1.1273448762949556e-05,-0.003291493281722069,0.0009413816151209176,4.456327951629646e-05,-4.863056165049784e-05,-5.941770723438822e-06,-7.752250973754683e-22,-0.0010579800000414252,4.456327951629646e-05,8.631835225969553e-05,-1.4399560103323106e-20,-1.6816331935842754e-06,-1.3007825145905372e-06,0.0001134713165811263,-4.863056165049784e-05,-1.4399560103323106e-20,3.242037564632483e-06,1.1911400820763599e-21,3.25069037103607e-23,4.456327951629646e-05,-5.941770723438822e-06,-1.6816331935842754e-06,1.1911400820763599e-21,2.2421775724978943e-07,1.6251604342940323e-23,1.1273448762949556e-05,-7.752250973754683e-22,-1.3007825145905372e-06,3.25069037103607e-23,1.6251604342940323e-23,2.454306624599667e-08,16.0,55.0,0.025127198547124863,-0.0032324292697012424,-0.0010207671439275146,0.00011140819697175175,4.297173290979117e-05,1.0680108971428126e-05,-0.0032324292697012424,0.0009243697277270257,4.297173290979117e-05,-4.774637272930704e-05,-5.729564691137057e-06,3.6360767542492706e-21,-0.0010207671439275146,4.297173290979117e-05,8.173569949576631e-05,-1.6940658945086007e-20,-1.591545697010588e-06,-1.2090689551769174e-06,0.00011140819697175175,-4.774637272930704e-05,-1.6940658945086007e-20,3.183091394021176e-06,2.9381455357883543e-21,-1.6671968124493426e-22,4.297173290979117e-05,-5.729564691137057e-06,-1.591545697010588e-06,2.9381455357883543e-21,2.122060891451838e-07,-2.157644069673112e-23,1.0680108971428126e-05,3.6360767542492706e-21,-1.2090689551769174e-06,-1.6671968124493426e-22,-2.157644069673112e-23,2.239016616556455e-08,16.0,56.0,0.02469591423869133,-0.0031754476949572563,-0.0009854837553575635,0.00010941876826109365,4.1463954403297976e-05,1.0127690075023565e-05,-0.0031754476949572563,0.000907961861230433,4.1463954403297976e-05,-4.689375782618299e-05,-5.528527253773063e-06,-1.0304814122793882e-20,-0.0009854837553575635,4.1463954403297976e-05,7.747183553874493e-05,-3.8116482626443515e-20,-1.507780098108924e-06,-1.1252989224885823e-06,0.00010941876826109365,-4.689375782618299e-05,-3.8116482626443515e-20,3.1262504762707977e-06,1.2176098616780567e-21,4.8905003941021635e-22,4.1463954403297976e-05,-5.528527253773063e-06,-1.507780098108924e-06,1.2176098616780567e-21,2.0103735209886509e-07,8.008120217173653e-23,1.0127690075023565e-05,-1.0304814122793882e-20,-1.1252989224885823e-06,4.8905003941021635e-22,8.008120217173653e-23,2.0459980376585918e-08,16.0,57.0,0.024279186502099037,-0.003120440524071455,-0.0009519988088868558,0.0001074991378118284,4.0034163248492405e-05,9.61272235144861e-06,-0.003120440524071455,0.0008921263506636024,4.0034163248492405e-05,-4.6071061660768464e-05,-5.337888524081791e-06,2.309434753924243e-21,-0.0009519988088868558,4.0034163248492405e-05,7.349951192736626e-05,3.218725199566341e-20,-1.429791495866084e-06,-1.0486606925041997e-06,0.0001074991378118284,-4.6071061660768464e-05,3.218725199566341e-20,3.0714040804014076e-06,-2.9381455357883543e-21,-1.0035978050820545e-22,4.0034163248492405e-05,-5.337888524081791e-06,-1.429791495866084e-06,-2.9381455357883543e-21,1.9063887179981975e-07,-2.7058964034588355e-23,9.61272235144861e-06,2.309434753924243e-21,-1.0486606925041997e-06,-1.0035978050820545e-22,-2.7058964034588355e-23,1.872608379471785e-08,16.0,58.0,0.023876287043094635,-0.0030673067085444927,-0.0009201919892802835,0.000105645704024937,3.8677073462167755e-05,9.13208623387618e-06,-0.0030673067085444927,0.0008768338011577725,3.8677073462167755e-05,-4.527673081611283e-05,-5.156943188922014e-06,-3.9717573904777296e-21,-0.0009201919892802835,3.8677073462167755e-05,6.979422323638573e-05,-3.3881317890172014e-21,-1.357090241072001e-06,-9.784378107724478e-07,0.000105645704024937,-4.527673081611283e-05,-3.3881317890172014e-21,3.018448751390679e-06,-1.5087774372967225e-21,2.6665366619093762e-22,3.8677073462167755e-05,-5.156943188922014e-06,-1.357090241072001e-06,-1.5087774372967225e-21,1.8094536358148616e-07,-1.0081686544935223e-23,9.13208623387618e-06,-3.9717573904777296e-21,-9.784378107724478e-07,2.6665366619093762e-22,-1.0081686544935223e-23,1.7165575627586804e-08,16.0,59.0,0.023486541584134102,-0.0030159521847963333,-0.0008899531094357371,0.00010385509813204408,3.738783561857417e-05,8.682967745698988e-06,-0.0030159521847963333,0.0008620566804893315,3.738783561857417e-05,-4.450932829058729e-05,-4.9850450523081236e-06,-2.0954488244014218e-21,-0.0008899531094357371,3.738783561857417e-05,6.633390148635954e-05,-2.202285662861181e-20,-1.2892357972305035e-06,-9.139965868598665e-07,0.00010385509813204408,-4.450932829058729e-05,-2.202285662861181e-20,2.9672885375475744e-06,1.2440796412797536e-21,1.810414446683345e-22,3.738783561857417e-05,-4.9850450523081236e-06,-1.2892357972305035e-06,1.2440796412797536e-21,1.7189809398132638e-07,-1.2424282367053203e-23,8.682967745698988e-06,-2.0954488244014218e-21,-9.139965868598665e-07,1.810414446683345e-22,-1.2424282367053203e-23,1.5758562454948333e-08,16.0,60.0,0.02310931496322155,-0.0029662889428436756,-0.0008611806551925838,0.00010212418419541791,3.616200410760939e-05,8.262823939730879e-06,-0.0029662889428436756,0.0008477694354951382,3.616200410760939e-05,-4.376750803203322e-05,-4.821600668947212e-06,7.754306909356757e-21,-0.0008611806551925838,3.616200410760939e-05,6.309863238129765e-05,2.202285662861181e-20,-1.225830715156917e-06,-8.547748961973411e-07,0.00010212418419541791,-4.376750803203322e-05,2.202285662861181e-20,2.9178338536439696e-06,2.117582368135751e-22,-3.5989730286709986e-22,3.616200410760939e-05,-4.821600668947212e-06,-1.225830715156917e-06,2.117582368135751e-22,1.6344409914381686e-07,-6.04034455442329e-23,8.262823939730879e-06,7.754306909356757e-21,-8.547748961973411e-07,-3.5989730286709986e-22,-6.04034455442329e-23,1.448770969858515e-08,16.0,61.0,0.022744012996554375,-0.0029182350262999535,-0.000833781436085701,0.00010045001545222476,3.499548984109424e-05,7.869356522860471e-06,-0.0029182350262999535,0.0008339480846188962,3.499548984109424e-05,-4.305000766180456e-05,-4.666065251512919e-06,-3.408039053681026e-21,-0.000833781436085701,3.499548984109424e-05,6.007041156408377e-05,-1.4399560103323106e-20,-1.1665163128782297e-06,-8.002734830370173e-07,0.00010045001545222476,-4.305000766180456e-05,-1.4399560103323106e-20,2.8700005714199506e-06,8.470329472543003e-22,1.2763043694443168e-22,3.499548984109424e-05,-4.666065251512919e-06,-1.1665163128782297e-06,8.470329472543003e-22,1.5553550269942207e-07,3.880849817066529e-23,7.869356522860471e-06,-3.408039053681026e-21,-8.002734830370173e-07,1.2763043694443168e-22,3.880849817066529e-23,1.3337891680009761e-08,16.0,62.0,0.022390080615878105,-0.0028717131353914738,-0.0008076693629845977,9.88298561424017e-05,3.3884520235005766e-05,7.5004800237366e-06,-0.0028717131353914738,0.0008205701597034931,3.3884520235005766e-05,-4.235565211274661e-05,-4.517936304182513e-06,3.830522763232836e-21,-0.0008076693629845977,3.3884520235005766e-05,5.723292997572571e-05,-7.199780051661553e-21,-1.1109679007859086e-06,-7.5004800237366e-07,9.88298561424017e-05,-4.235565211274661e-05,-7.199780051661553e-21,2.823710019583814e-06,2.064642808932357e-21,-1.5575058929049782e-22,3.3884520235005766e-05,-4.517936304182513e-06,-1.1109679007859086e-06,2.064642808932357e-21,1.4812906101724366e-07,-4.184123921090764e-23,7.5004800237366e-06,3.830522763232836e-21,-7.5004800237366e-07,-1.5575058929049782e-22,-4.184123921090764e-23,1.2295869211698118e-08,16.0,63.0,0.022046992555260658,-0.002826651558279991,-0.0007827650406397879,9.726112330099568e-05,3.282563193351962e-05,7.15430405762163e-06,-0.002826651558279991,0.0008076147059909999,3.282563193351962e-05,-4.1683339077280834e-05,-4.376750894152792e-06,-1.2548161871367505e-20,-0.0007827650406397879,3.282563193351962e-05,5.457140287035145e-05,-3.7269449679189215e-20,-1.0588912573439302e-06,-7.03702028204134e-07,9.726112330099568e-05,-4.1683339077280834e-05,-3.7269449679189215e-20,2.7788894385594176e-06,-4.764560328305439e-22,6.122276026692778e-22,3.282563193351962e-05,-4.376750894152792e-06,-1.0588912573439302e-06,-4.764560328305439e-22,1.4118550950570352e-07,8.005332698278964e-23,7.15430405762163e-06,-1.2548161871367505e-20,-7.03702028204134e-07,6.122276026692778e-22,8.005332698278964e-23,1.135003291352632e-08,16.0,64.0,0.021714260801672935,-0.002782982075586915,-0.0007589951273985207,9.574142313795164e-05,3.181561260134913e-05,6.829108315287158e-06,-0.002782982075586915,0.000795061991084367,3.181561260134913e-05,-4.103203900740482e-05,-4.242081558913924e-06,-4.685194610352964e-22,-0.0007589951273985207,3.181561260134913e-05,5.20723988302052e-05,-5.082197683525802e-21,-1.0100194458573242e-06,-6.608814828723553e-07,9.574142313795164e-05,-4.103203900740482e-05,-5.082197683525802e-21,2.7354692520020762e-06,1.852884572118782e-22,3.8565585809842396e-23,3.181561260134913e-05,-4.242081558913924e-06,-1.0100194458573242e-06,1.852884572118782e-22,1.3466924997374008e-07,1.4518258222483787e-24,6.829108315287158e-06,-4.685194610352964e-22,-6.608814828723553e-07,3.8565585809842396e-23,1.4518258222483787e-24,1.049018205634411e-08,17.0,3.0,0.2583419382572174,-0.04385964944958687,-0.1666666716337204,0.0017199862049892545,0.009803921915590763,0.029411764815449715,-0.04385964944958687,0.013050395995378494,0.009803921915590763,-0.0006879944703541696,-0.0012254902394488454,-2.905661822261152e-17,-0.1666666716337204,0.009803921915590763,0.46078431606292725,4.404379523217826e-19,-0.009803921915590763,-0.1764705926179886,0.0017199862049892545,-0.0006879944703541696,4.404379523217826e-19,4.29996543971356e-05,-3.84654720655842e-20,-6.120800490768555e-20,0.009803921915590763,-0.0012254902394488454,-0.009803921915590763,-3.84654720655842e-20,0.0012254902394488454,2.905661822261152e-17,0.029411764815449715,-2.905661822261152e-17,-0.1764705926179886,-6.120800490768555e-20,2.905661822261152e-17,0.0882352963089943,17.0,4.0,0.2172858566045761,-0.034365326166152954,-0.10882353037595749,0.0012899896828457713,0.0058823530562222,0.014705882407724857,-0.034365326166152954,0.0099716205149889,0.0058823530562222,-0.0005159958964213729,-0.000735294132027775,-4.9873299934333204e-18,-0.10882353037595749,0.0058823530562222,0.17549020051956177,-4.371193037042199e-19,-0.003921568859368563,-0.04411764815449715,0.0012899896828457713,-0.0005159958964213729,-4.371193037042199e-19,3.2249743526335806e-05,2.749720577714737e-20,5.972414628634199e-20,0.0058823530562222,-0.000735294132027775,-0.003921568859368563,2.749720577714737e-20,0.0004901961074210703,1.951563910473908e-18,0.014705882407724857,-4.9873299934333204e-18,-0.04411764815449715,5.972414628634199e-20,1.951563910473908e-18,0.014705882407724857,17.0,5.0,0.18749815225601196,-0.02827657386660576,-0.07675070315599442,0.0010319917928427458,0.003921568859368563,0.008403361774981022,-0.02827657386660576,0.008075335063040257,0.003921568859368563,-0.0004127967113163322,-0.0004901961074210703,-4.336808689942018e-19,-0.07675070315599442,0.003921568859368563,0.08879552036523819,4.558871529236472e-19,-0.0019607844296842813,-0.016806723549962044,0.0010319917928427458,-0.0004127967113163322,4.558871529236472e-19,2.5799794457270764e-05,-2.7655232817061943e-20,-5.796051967219651e-20,0.003921568859368563,-0.0004901961074210703,-0.0019607844296842813,-2.7655232817061943e-20,0.00024509805371053517,6.505213034913027e-19,0.008403361774981022,-4.336808689942018e-19,-0.016806723549962044,-5.796051967219651e-20,6.505213034913027e-19,0.004201680887490511,17.0,6.0,0.1648852527141571,-0.024030664935708046,-0.05707282945513725,0.0008599931024946272,0.002801120514050126,0.005252100992947817,-0.024030664935708046,0.006787803024053574,0.002801120514050126,-0.0003439972351770848,-0.00035014006425626576,-2.168404344971009e-18,-0.05707282945513725,0.002801120514050126,0.05171568691730499,-3.782017877620878e-19,-0.0011204482289031148,-0.007878151722252369,0.0008599931024946272,-0.0003439972351770848,-3.782017877620878e-19,2.14998271985678e-05,2.256257097566992e-20,1.975755951323712e-20,0.002801120514050126,-0.00035014006425626576,-0.0011204482289031148,2.256257097566992e-20,0.00014005602861288935,6.369687763352339e-19,0.005252100992947817,-2.168404344971009e-18,-0.007878151722252369,1.975755951323712e-20,6.369687763352339e-19,0.0015756302746012807,17.0,7.0,0.1471325308084488,-0.02089783363044262,-0.04411764815449715,0.0007371369865722954,0.0021008404437452555,0.0035014005843549967,-0.02089783363044262,0.005855631548911333,0.0021008404437452555,-0.0002948547771666199,-0.00026260505546815693,-9.75781955236954e-19,-0.04411764815449715,0.0021008404437452555,0.03291316702961922,-1.4375116916222164e-19,-0.0007002801285125315,-0.004201680887490511,0.0007371369865722954,-0.0002948547771666199,-1.4375116916222164e-19,1.8428423572913744e-05,-2.0455031097158445e-20,5.044799103198175e-20,0.0021008404437452555,-0.00026260505546815693,-0.0007002801285125315,-2.0455031097158445e-20,8.753501606406644e-05,-1.3552527156068805e-20,0.0035014005843549967,-9.75781955236954e-19,-0.004201680887490511,5.044799103198175e-20,-1.3552527156068805e-20,0.0007002801285125315,17.0,8.0,0.13282594084739685,-0.01848985254764557,-0.03513072058558464,0.0006449948414228857,0.0016339869471266866,0.0024509804788976908,-0.01848985254764557,0.005149208940565586,0.0016339869471266866,-0.00025799794821068645,-0.00020424836839083582,-4.336808689942018e-18,-0.03513072058558464,0.0016339869471266866,0.022292250767350197,-1.2006942249465005e-18,-0.0004668534093070775,-0.0024509804788976908,0.0006449948414228857,-0.00025799794821068645,-1.2006942249465005e-18,1.6124871763167903e-05,2.6769270682229366e-20,1.3549974528397255e-19,0.0016339869471266866,-0.00020424836839083582,-0.0004668534093070775,2.6769270682229366e-20,5.835667616338469e-05,4.472333961502706e-19,0.0024509804788976908,-4.336808689942018e-18,-0.0024509804788976908,1.3549974528397255e-19,4.472333961502706e-19,0.00035014006425626576,17.0,9.0,0.12105158716440201,-0.016580667346715927,-0.028639335185289383,0.0005733287543989718,0.0013071895809844136,0.001782531151548028,-0.016580667346715927,0.004595229867845774,0.0013071895809844136,-0.00022933150466997176,-0.0001633986976230517,-1.0299920638612292e-18,-0.028639335185289383,0.0013071895809844136,0.01581784151494503,-5.1815420750934207e-20,-0.0003267973952461034,-0.0015278839273378253,0.0005733287543989718,-0.00022933150466997176,-5.1815420750934207e-20,1.4333219041873235e-05,-1.0241227036584569e-20,1.684871749688331e-20,0.0013071895809844136,-0.0001633986976230517,-0.0003267973952461034,-1.0241227036584569e-20,4.0849674405762926e-05,1.6601845766184287e-19,0.001782531151548028,-1.0299920638612292e-18,-0.0015278839273378253,1.684871749688331e-20,1.6601845766184287e-19,0.00019098549091722816,17.0,10.0,0.11119242012500763,-0.015029552392661572,-0.023796791210770607,0.0005159958964213729,0.0010695187374949455,0.001336898421868682,-0.015029552392661572,0.00414907606318593,0.0010695187374949455,-0.0002063983556581661,-0.0001336898421868682,-1.0842021724855044e-18,-0.023796791210770607,0.0010695187374949455,0.011638442985713482,-9.584562437167245e-20,-0.00023767082893755287,-0.0010026737581938505,0.0005159958964213729,-0.0002063983556581661,-9.584562437167245e-20,1.2899897228635382e-05,-3.349984141714945e-21,1.0869208178909336e-20,0.0010695187374949455,-0.0001336898421868682,-0.00023767082893755287,-3.349984141714945e-21,2.970885361719411e-05,1.8126505071242027e-19,0.001336898421868682,-1.0842021724855044e-18,-0.0010026737581938505,1.0869208178909336e-20,1.8126505071242027e-19,0.00011140819697175175,17.0,11.0,0.10281668603420258,-0.013744253665208817,-0.02008775621652603,0.0004690871573984623,0.000891265575774014,0.0010283833835273981,-0.013744253665208817,0.0037820152938365936,0.000891265575774014,-0.000187634868780151,-0.00011140819697175175,6.459815811932468e-19,-0.02008775621652603,0.000891265575774014,0.008816673420369625,3.7469710105488303e-19,-0.00017825311806518584,-0.0006855889223515987,0.0004690871573984623,-0.000187634868780151,3.7469710105488303e-19,1.1727179298759438e-05,4.235164736271502e-21,-3.204869924306078e-20,0.000891265575774014,-0.00011140819697175175,-0.00017825311806518584,4.235164736271502e-21,2.228163975814823e-05,-1.902891517556734e-20,0.0010283833835273981,6.459815811932468e-19,-0.0006855889223515987,-3.204869924306078e-20,-1.902891517556734e-20,6.855888932477683e-05,17.0,12.0,0.0956132784485817,-0.012661744840443134,-0.01718379743397236,0.0004299965512473136,0.0007541478262282908,0.0008080155239440501,-0.012661744840443134,0.0034747030586004257,0.0007541478262282908,-0.0001719986175885424,-9.426847827853635e-05,-0.0,-0.01718379743397236,0.0007541478262282908,0.0068411980755627155,0.0,-0.00013711777864955366,-0.00048480930854566395,0.0004299965512473136,-0.0001719986175885424,0.0,1.07499135992839e-05,0.0,-0.0,0.0007541478262282908,-9.426847827853635e-05,-0.00013711777864955366,0.0,1.7139722331194207e-05,-0.0,0.0008080155239440501,-0.0,-0.00048480930854566395,-0.0,-0.0,4.407357482705265e-05,17.0,13.0,0.08935233950614929,-0.011737488210201263,-0.014867485500872135,0.0003969199024140835,0.0006464124307967722,0.0006464124307967722,-0.011737488210201263,0.0032136335503309965,0.0006464124307967722,-0.00015876795805525035,-8.080155384959653e-05,2.576722408818263e-19,-0.014867485500872135,0.0006464124307967722,0.005416152533143759,1.961387921018894e-19,-0.00010773540270747617,-0.0003525885986164212,0.0003969199024140835,-0.00015876795805525035,1.961387921018894e-19,9.922997378453147e-06,4.235164736271502e-21,-1.465083398584456e-20,0.0006464124307967722,-8.080155384959653e-05,-0.00010773540270747617,4.235164736271502e-21,1.3466925338434521e-05,-3.876482178224246e-21,0.0006464124307967722,2.576722408818263e-19,-0.0003525885986164212,-1.465083398584456e-20,-3.876482178224246e-21,2.9382383218035102e-05,17.0,14.0,0.08386038988828659,-0.010939112864434719,-0.012990196235477924,0.0003685684932861477,0.0005602241144515574,0.0005252101109363139,-0.010939112864434719,0.0029890902806073427,0.0005602241144515574,-0.00014742738858330995,-7.002801430644467e-05,6.776263578034403e-21,-0.012990196235477924,0.0005602241144515574,0.004361937288194895,7.566755014570296e-21,-8.618832362117246e-05,-0.00026260505546815693,0.0003685684932861477,-0.00014742738858330995,7.566755014570296e-21,9.214211786456872e-06,-9.9654584297326e-22,-2.437888925736794e-22,0.0005602241144515574,-7.002801430644467e-05,-8.618832362117246e-05,-9.9654584297326e-22,1.0773540452646557e-05,-8.470329472543003e-22,0.0005252101109363139,6.776263578034403e-21,-0.00026260505546815693,-2.437888925736794e-22,-8.470329472543003e-22,2.0200388462399133e-05,17.0,15.0,0.07900402694940567,-0.010242518037557602,-0.01144751999527216,0.0003439972351770848,0.0004901961074210703,0.00043252596515230834,-0.010242518037557602,0.002793902764096856,0.0004901961074210703,-0.00013759889407083392,-6.127451342763379e-05,0.0,-0.01144751999527216,0.0004901961074210703,0.003565091174095869,6.184447353701822e-21,-7.002801430644467e-05,-0.00019962736405432224,0.0003439972351770848,-0.00013759889407083392,6.184447353701822e-21,8.59993087942712e-06,3.0203724585549537e-22,-5.580565116859765e-22,0.0004901961074210703,-6.127451342763379e-05,-7.002801430644467e-05,3.0203724585549537e-22,8.753501788305584e-06,4.235164736271502e-22,0.00043252596515230834,0.0,-0.00019962736405432224,-5.580565116859765e-22,4.235164736271502e-22,1.4259097042668145e-05,17.0,16.0,0.07467901706695557,-0.009629393927752972,-0.010164359584450722,0.00032249742071144283,0.00043252596515230834,0.00036043828004039824,-0.009629393927752972,0.0026226628106087446,0.00043252596515230834,-0.00012899897410534322,-5.406574564403854e-05,0.0,-0.010164359584450722,0.00043252596515230834,0.002951474627479911,-5.119992325039303e-21,-5.7670127716846764e-05,-0.00015447355690412223,0.00032249742071144283,-0.00012899897410534322,-5.119992325039303e-21,8.062435881583951e-06,5.23558172796596e-22,5.62106624547577e-23,0.00043252596515230834,-5.406574564403854e-05,-5.7670127716846764e-05,5.23558172796596e-22,7.2087659646058455e-06,0.0,0.00036043828004039824,0.0,-0.00015447355690412223,5.62106624547577e-23,0.0,1.0298236702510621e-05,17.0,17.0,0.0708027258515358,-0.009085574187338352,-0.009085574187338352,0.0003035269910469651,0.00038446750841103494,0.0003035269910469651,-0.009085574187338352,0.002471215557307005,0.00038446750841103494,-0.00012141079059801996,-4.805843855137937e-05,-3.3881317890172014e-21,-0.009085574187338352,0.00038446750841103494,0.002471215557307005,-0.0,-4.805843855137937e-05,-0.00012141079059801996,0.0003035269910469651,-0.00012141079059801996,-0.0,7.588174412376247e-06,0.0,1.0587911840678754e-22,0.00038446750841103494,-4.805843855137937e-05,-4.805843855137937e-05,0.0,6.007304818922421e-06,0.0,0.0003035269910469651,-3.3881317890172014e-21,-0.00012141079059801996,1.0587911840678754e-22,0.0,7.588174412376247e-06,17.0,18.0,0.06730879843235016,-0.008599931374192238,-0.008169935084879398,0.0002866643771994859,0.0003439972351770848,0.00025799794821068645,-0.008599931374192238,0.002336314646527171,0.0003439972351770848,-0.00011466575233498588,-4.29996543971356e-05,3.3881317890172014e-21,-0.008169935084879398,0.0003439972351770848,0.0020899097435176373,3.625415494752713e-21,-4.0470265957992524e-05,-9.67492233030498e-05,0.0002866643771994859,-0.00011466575233498588,3.625415494752713e-21,7.166609520936618e-06,-4.937212066852793e-22,4.3925084711808604e-23,0.0003439972351770848,-4.29996543971356e-05,-4.0470265957992524e-05,-4.937212066852793e-22,5.0587832447490655e-06,-8.470329472543003e-22,0.00025799794821068645,3.3881317890172014e-21,-9.67492233030498e-05,4.3925084711808604e-23,-8.470329472543003e-22,5.6911308092821855e-06,17.0,19.0,0.06414332985877991,-0.00816359743475914,-0.007386112120002508,0.0002715767768677324,0.00030959752621129155,0.00022114109015092254,-0.00816359743475914,0.0022153875324875116,0.00030959752621129155,-0.00010863070929190144,-3.8699690776411444e-05,3.3881317890172014e-21,-0.007386112120002508,0.00030959752621129155,0.001783293322660029,3.0935207913710352e-21,-3.439972351770848e-05,-7.804979395586997e-05,0.0002715767768677324,-0.00010863070929190144,3.0935207913710352e-21,6.78941933074384e-06,-6.949487436375546e-22,7.636342694317474e-23,0.00030959752621129155,-3.8699690776411444e-05,-3.439972351770848e-05,-6.949487436375546e-22,4.29996543971356e-06,-4.235164736271502e-22,0.00022114109015092254,3.3881317890172014e-21,-7.804979395586997e-05,7.636342694317474e-23,-4.235164736271502e-22,4.3360996642149985e-06,17.0,20.0,0.061262112110853195,-0.00776942353695631,-0.00670995656400919,0.00025799794821068645,0.0002801120572257787,0.00019098549091722816,-0.00776942353695631,0.002106368774548173,0.0002801120572257787,-0.00010319917782908306,-3.501400715322234e-05,1.6940658945086007e-21,-0.00670995656400919,0.0002801120572257787,0.0015339150559157133,2.6609184576512646e-21,-2.948547808045987e-05,-6.366182788042352e-05,0.00025799794821068645,-0.00010319917782908306,2.6609184576512646e-21,6.449948614317691e-06,-2.6290739730647925e-22,-4.556549729838854e-24,0.0002801120572257787,-3.501400715322234e-05,-2.948547808045987e-05,-2.6290739730647925e-22,3.685684760057484e-06,0.0,0.00019098549091722816,1.6940658945086007e-21,-6.366182788042352e-05,-4.556549729838854e-24,0.0,3.3506225918245036e-06,17.0,21.0,0.05862851440906525,-0.007411577273160219,-0.00612260727211833,0.000245712319156155,0.00025464731152169406,0.00016607432917226106,-0.007411577273160219,0.0020075812935829163,0.00025464731152169406,-9.828493057284504e-05,-3.183091394021176e-05,-1.6940658945086007e-21,-0.00612260727211833,0.00025464731152169406,0.00132900255266577,-0.0,-2.5464731152169406e-05,-5.2444527682382613e-05,0.000245712319156155,-9.828493057284504e-05,-0.0,6.142808160802815e-06,-2.117582368135751e-22,1.0587911840678754e-22,0.00025464731152169406,-3.183091394021176e-05,-2.5464731152169406e-05,-2.117582368135751e-22,3.183091394021176e-06,1.0587911840678754e-22,0.00016607432917226106,-1.6940658945086007e-21,-5.2444527682382613e-05,1.0587911840678754e-22,1.0587911840678754e-22,2.6222262476949254e-06,17.0,22.0,0.056211937218904495,-0.0070852553471922874,-0.005609160754829645,0.00023454357869923115,0.00023250406957231462,0.00014531504712067544,-0.0070852553471922874,0.0019176487112417817,0.00023250406957231462,-9.38174343900755e-05,-2.9063008696539328e-05,8.470329472543003e-20,-0.005609160754829645,0.00023250406957231462,0.001159060513600707,1.1434379978671046e-19,-2.2143243768368848e-05,-4.359451122581959e-05,0.00023454357869923115,-9.38174343900755e-05,1.1434379978671046e-19,5.863589649379719e-06,3.118255581852225e-22,-4.528620387168543e-21,0.00023250406957231462,-2.9063008696539328e-05,-2.2143243768368848e-05,3.118255581852225e-22,2.767905471046106e-06,-7.411538288475128e-22,0.00014531504712067544,8.470329472543003e-20,-4.359451122581959e-05,-4.528620387168543e-21,-7.411538288475128e-22,2.0759291601279983e-06,17.0,23.0,0.053986627608537674,-0.006786467507481575,-0.0051577151753008366,0.0002243460330646485,0.0002131287328666076,0.00012787723971996456,-0.006786467507481575,0.0018354309722781181,0.0002131287328666076,-8.973841613624245e-05,-2.664109160832595e-05,6.606856988583543e-20,-0.0051577151753008366,0.0002131287328666076,0.0010169284651055932,1.1013264913759714e-19,-1.9375338524696417e-05,-3.653635212685913e-05,0.0002243460330646485,-8.973841613624245e-05,1.1013264913759714e-19,5.608651008515153e-06,-3.1657876699442845e-22,-3.985186150734645e-21,0.0002131287328666076,-2.664109160832595e-05,-1.9375338524696417e-05,-3.1657876699442845e-22,2.421917315587052e-06,-2.117582368135751e-22,0.00012787723971996456,6.606856988583543e-20,-3.653635212685913e-05,-3.985186150734645e-21,-2.117582368135751e-22,1.6607433508397662e-06,17.0,24.0,0.0519307516515255,-0.006511867977678776,-0.004758672788739204,0.0002149982756236568,0.0001960784284165129,0.0001131221724790521,-0.006511867977678776,0.001759975915774703,0.0001960784284165129,-8.59993087942712e-05,-2.4509803552064113e-05,-8.470329472543003e-22,-0.004758672788739204,0.0001960784284165129,0.0008971377974376082,-0.0,-1.705029899312649e-05,-3.0851500923745334e-05,0.0002149982756236568,-8.59993087942712e-05,-0.0,5.37495679964195e-06,0.0,0.0,0.0001960784284165129,-2.4509803552064113e-05,-1.705029899312649e-05,0.0,2.131287374140811e-06,0.0,0.0001131221724790521,-8.470329472543003e-22,-3.0851500923745334e-05,0.0,0.0,1.3413696251518559e-06,17.0,25.0,0.05002566799521446,-0.006258632987737656,-0.004404223058372736,0.0002063983556581661,0.00018099547014571726,0.0001005530430120416,-0.006258632987737656,0.0016904819058254361,0.00018099547014571726,-8.255933789769188e-05,-2.2624433768214658e-05,3.134021904840911e-20,-0.004404223058372736,0.00018099547014571726,0.0007954619941301644,4.1711613132577844e-20,-1.508295645180624e-05,-2.623122782097198e-05,0.0002063983556581661,-8.255933789769188e-05,4.1711613132577844e-20,5.159958618605742e-06,-2.585261723861423e-21,-8.174740640784049e-22,0.00018099547014571726,-2.2624433768214658e-05,-1.508295645180624e-05,-2.585261723861423e-21,1.88536955647578e-06,-1.2705494208814505e-21,0.0001005530430120416,3.134021904840911e-20,-2.623122782097198e-05,-8.174740640784049e-22,-1.2705494208814505e-21,1.092967863769445e-06,17.0,26.0,0.04825538024306297,-0.006024362053722143,-0.004087959881871939,0.00019845995120704174,0.00016758839774411172,8.977950346888974e-05,-0.006024362053722143,0.001626269076950848,0.00016758839774411172,-7.938397902762517e-05,-2.0948549718013965e-05,2.710505431213761e-20,-0.004087959881871939,0.00016758839774411172,0.0007085996912792325,6.329805120871124e-20,-1.3407072401605546e-05,-2.2444875867222436e-05,0.00019845995120704174,-7.938397902762517e-05,6.329805120871124e-20,4.961498689226573e-06,-7.240954501459157e-22,-1.7486888955055106e-21,0.00016758839774411172,-2.0948549718013965e-05,-1.3407072401605546e-05,-7.240954501459157e-22,1.6758840502006933e-06,-5.293955920339377e-23,8.977950346888974e-05,2.710505431213761e-20,-2.2444875867222436e-05,-1.7486888955055106e-21,-5.293955920339377e-23,8.977950187727401e-07,17.0,27.0,0.046606071293354034,-0.005807001143693924,-0.003804587060585618,0.00019110957509838045,0.00015561780310235918,8.049196912907064e-05,-0.005807001143693924,0.0015667573316022754,0.00015561780310235918,-7.644383003935218e-05,-1.9452225387794897e-05,2.1175823681357508e-20,-0.003804587060585618,0.00015561780310235918,0.0006339465035125613,5.242163428001047e-20,-1.1970600098720752e-05,-1.9318071281304583e-05,0.00019110957509838045,-7.644383003935218e-05,5.242163428001047e-20,4.777739377459511e-06,-7.745536189729442e-22,-1.3044013229688822e-21,0.00015561780310235918,-1.9452225387794897e-05,-1.1970600098720752e-05,-7.745536189729442e-22,1.496325012340094e-06,0.0,8.049196912907064e-05,2.1175823681357508e-20,-1.9318071281304583e-05,-1.3044013229688822e-21,0.0,7.430027721966326e-07,17.0,28.0,0.045065756887197495,-0.005604782607406378,-0.0035496957134455442,0.00018428424664307386,0.0001448855473427102,7.24427736713551e-05,-0.005604782607406378,0.0015114485286176205,0.0001448855473427102,-7.371369429165497e-05,-1.8110693417838775e-05,-1.6940658945086007e-21,-0.0035496957134455442,0.0001448855473427102,0.0005694290739484131,-0.0,-1.0732262126111891e-05,-1.6717562175472267e-05,0.00018428424664307386,-7.371369429165497e-05,-0.0,4.607105893228436e-06,0.0,0.0,0.0001448855473427102,-1.8110693417838775e-05,-1.0732262126111891e-05,0.0,1.3415327657639864e-06,1.0587911840678754e-22,7.24427736713551e-05,-1.6940658945086007e-21,-1.6717562175472267e-05,0.0,1.0587911840678754e-22,6.191689863044303e-07,17.0,29.0,0.04362398013472557,-0.005416177213191986,-0.0033195926807820797,0.00017792961443774402,0.0001352265098830685,6.543217750731856e-05,-0.005416177213191986,0.0014599125133827329,0.0001352265098830685,-7.117184577509761e-05,-1.6903313735383563e-05,0.0,-0.0033195926807820797,0.0001352265098830685,0.0005133829545229673,-0.0,-9.659035640652291e-06,-1.454048469895497e-05,0.00017792961443774402,-7.117184577509761e-05,-0.0,4.4482403609436005e-06,0.0,0.0,0.0001352265098830685,-1.6903313735383563e-05,-9.659035640652291e-06,0.0,1.2073794550815364e-06,5.293955920339377e-23,6.543217750731856e-05,0.0,-1.454048469895497e-05,0.0,5.293955920339377e-23,5.193030006012123e-07,17.0,30.0,0.04227157309651375,-0.005239855032414198,-0.003111163852736354,0.0001719986175885424,0.00012650221469812095,5.9297912230249494e-05,-0.005239855032414198,0.0014117758255451918,0.00012650221469812095,-6.879944703541696e-05,-1.581277683726512e-05,1.2985985176858841e-20,-0.003111163852736354,0.00012650221469812095,0.0004644613654818386,5.082197683525802e-20,-8.724290637474041e-06,-1.2706695997621864e-05,0.0001719986175885424,-6.879944703541696e-05,5.082197683525802e-20,4.29996543971356e-06,-3.5998900258307764e-21,-9.543174245191827e-22,0.00012650221469812095,-1.581277683726512e-05,-8.724290637474041e-06,-3.5998900258307764e-21,1.0905363296842552e-06,3.0791677133251413e-23,5.9297912230249494e-05,1.2985985176858841e-20,-1.2706695997621864e-05,-9.543174245191827e-22,3.0791677133251413e-23,4.381619191917707e-07,17.0,31.0,0.04100048542022705,-0.005074652843177319,-0.0029217698611319065,0.00016645027790218592,0.00011859582446049899,5.3907191613689065e-05,-0.005074652843177319,0.0013667128514498472,0.00011859582446049899,-6.658011261606589e-05,-1.4824478057562374e-05,-6.28968298375318e-20,-0.0029217698611319065,0.00011859582446049899,0.00042156665585935116,-1.5585406229479126e-19,-7.90638841863256e-06,-1.1153212653880473e-05,0.00016645027790218592,-6.658011261606589e-05,-1.5585406229479126e-19,4.161257038504118e-06,7.517417406881916e-21,3.142715217649674e-21,0.00011859582446049899,-1.4824478057562374e-05,-7.90638841863256e-06,7.517417406881916e-21,9.8829855232907e-07,6.958570065293899e-22,5.3907191613689065e-05,-6.28968298375318e-20,-1.1153212653880473e-05,3.142715217649674e-21,6.958570065293899e-22,3.7177375133978785e-07,17.0,32.0,0.03980359807610512,-0.004919551778584719,-0.002749161096289754,0.00016124871035572141,0.00011140819697175175,4.915067620459013e-05,-0.004919551778584719,0.0013244382571429014,0.00011140819697175175,-6.449948705267161e-05,-1.3926024621468969e-05,-3.425975625158929e-20,-0.002749161096289754,0.00011140819697175175,0.0003837980912066996,-4.743384504624082e-20,-7.1876256697578356e-06,-9.830135240918025e-06,0.00016124871035572141,-6.449948705267161e-05,-4.743384504624082e-20,4.031217940791976e-06,-1.0587911840678754e-22,1.579857313710442e-21,0.00011140819697175175,-1.3926024621468969e-05,-7.1876256697578356e-06,-1.0587911840678754e-22,8.984532087197294e-07,4.720568395520522e-22,4.915067620459013e-05,-3.425975625158929e-20,-9.830135240918025e-06,1.579857313710442e-21,4.720568395520522e-22,3.1710112580185523e-07,17.0,33.0,0.03867459297180176,-0.0047736517153680325,-0.0025914108846336603,0.00015636238094884902,0.00010485477832844481,4.493776214076206e-05,-0.0047736517153680325,0.0012847009347751737,0.00010485477832844481,-6.254495383473113e-05,-1.3106847291055601e-05,2.5777926625930457e-21,-0.0025914108846336603,0.00010485477832844481,0.0003504118649289012,-2.371692252312041e-20,-6.5534236455278005e-06,-8.697631528775673e-06,0.00015636238094884902,-6.254495383473113e-05,-2.371692252312041e-20,3.909059614670696e-06,1.6940658945086007e-21,6.644141846723073e-23,0.00010485477832844481,-1.3106847291055601e-05,-6.5534236455278005e-06,1.6940658945086007e-21,8.191779556909751e-07,-1.6471026950360634e-22,4.493776214076206e-05,2.5777926625930457e-21,-8.697631528775673e-06,6.644141846723073e-23,-1.6471026950360634e-22,2.718009852742398e-07,17.0,34.0,0.03760785982012749,-0.0046361577697098255,-0.002446861006319523,0.00015176349552348256,9.886307816486806e-05,4.1192946810042486e-05,-0.0046361577697098255,0.0012472791131585836,9.886307816486806e-05,-6.070539529900998e-05,-1.2357884770608507e-05,-4.896812937320744e-20,-0.002446861006319523,9.886307816486806e-05,0.000320790073601529,-5.759824041329242e-20,-5.991701527818805e-06,-7.72367729950929e-06,0.00015176349552348256,-6.070539529900998e-05,-5.759824041329242e-20,3.7940872061881237e-06,-2.1705219273391446e-21,2.11037341639593e-21,9.886307816486806e-05,-1.2357884770608507e-05,-5.991701527818805e-06,-2.1705219273391446e-21,7.489626909773506e-07,6.79910858595282e-22,4.1192946810042486e-05,-4.896812937320744e-20,-7.72367729950929e-06,2.11037341639593e-21,6.79910858595282e-22,2.3405084448313573e-07,17.0,35.0,0.036598384380340576,-0.004506363999098539,-0.0023140788543969393,0.00014742738858330995,9.337068331660703e-05,3.7852980312891304e-05,-0.004506363999098539,0.0012119760503992438,9.337068331660703e-05,-5.897095616091974e-05,-1.1671335414575879e-05,-2.02405667518956e-20,-0.0023140788543969393,9.337068331660703e-05,0.00029441656079143286,-7.115076756936123e-20,-5.492393029271625e-06,-6.882359684823314e-06,0.00014742738858330995,-5.897095616091974e-05,-7.115076756936123e-20,3.685684760057484e-06,3.3881317890172014e-21,1.0947448640423055e-21,9.337068331660703e-05,-1.1671335414575879e-05,-5.492393029271625e-06,3.3881317890172014e-21,6.865491286589531e-07,8.28855837571355e-23,3.7852980312891304e-05,-2.02405667518956e-20,-6.882359684823314e-06,1.0947448640423055e-21,8.28855837571355e-23,2.0242234199940867e-07,17.0,36.0,0.03564167767763138,-0.004383640829473734,-0.002191820414736867,0.00014333218859974295,8.832362073007971e-05,3.486458444967866e-05,-0.004383640829473734,0.0011786166578531265,8.832362073007971e-05,-5.733287616749294e-05,-1.1040452591259964e-05,4.2375606519910645e-20,-0.002191820414736867,8.832362073007971e-05,0.00027085779584012926,5.590417451878382e-20,-5.04706395076937e-06,-6.152573860163102e-06,0.00014333218859974295,-5.733287616749294e-05,5.590417451878382e-20,3.583304760468309e-06,1.9058241313221758e-21,-1.9089991639370583e-21,8.832362073007971e-05,-1.1040452591259964e-05,-5.04706395076937e-06,1.9058241313221758e-21,6.308829938461713e-07,-4.954087379337281e-22,3.486458444967866e-05,4.2375606519910645e-20,-6.152573860163102e-06,-1.9089991639370583e-21,-4.954087379337281e-22,1.7578783229055261e-07,17.0,37.0,0.03473370894789696,-0.004267425276339054,-0.0020790020935237408,0.00013945833779871464,8.36750041344203e-05,3.2182695576921105e-05,-0.004267425276339054,0.0011470448225736618,8.36750041344203e-05,-5.578333730227314e-05,-1.0459375516802538e-05,8.968329359804006e-21,-0.0020790020935237408,8.36750041344203e-05,0.0002497479144949466,2.371692252312041e-20,-4.648611593438545e-06,-5.517033514479408e-06,0.00013945833779871464,-5.578333730227314e-05,2.371692252312041e-20,3.486458581392071e-06,-5.293955920339377e-22,-4.532718525882053e-22,8.36750041344203e-05,-1.0459375516802538e-05,-4.648611593438545e-06,-5.293955920339377e-22,5.810764491798182e-07,-7.382574345261288e-23,3.2182695576921105e-05,8.968329359804006e-21,-5.517033514479408e-06,-4.532718525882053e-22,-7.382574345261288e-23,1.5325092306284205e-07,17.0,38.0,0.033870846033096313,-0.004157213494181633,-0.001974676502868533,0.0001357883884338662,7.938397902762517e-05,2.9768993044854142e-05,-0.004157213494181633,0.0011171206133440137,7.938397902762517e-05,-5.431535464595072e-05,-9.922997378453147e-06,2.820012188970991e-20,-0.001974676502868533,7.938397902762517e-05,0.00023077674268279225,3.3881317890172014e-20,-4.291026016289834e-06,-4.961498689226573e-06,0.0001357883884338662,-5.431535464595072e-05,3.3881317890172014e-20,3.39470966537192e-06,2.1705219273391446e-21,-1.3720630209040684e-21,7.938397902762517e-05,-9.922997378453147e-06,-4.291026016289834e-06,2.1705219273391446e-21,5.363782520362292e-07,-2.0974440745117792e-22,2.9768993044854142e-05,2.820012188970991e-20,-4.961498689226573e-06,-1.3720630209040684e-21,-2.0974440745117792e-22,1.340945630090573e-07,17.0,39.0,0.0330498106777668,-0.00405255239456892,-0.0018780119717121124,0.00013230663898866624,7.54147840780206e-05,2.7590773242991418e-05,-0.00405255239456892,0.0010887181852012873,7.54147840780206e-05,-5.292265268508345e-05,-9.426848009752575e-06,1.178393907383514e-20,-0.0018780119717121124,7.54147840780206e-05,0.00021368001762311906,1.8634724839594607e-20,-3.969199042330729e-06,-4.474179604585515e-06,0.00013230663898866624,-5.292265268508345e-05,1.8634724839594607e-20,3.3076657928177156e-06,-5.293955920339377e-23,-5.838225011424714e-22,7.54147840780206e-05,-9.426848009752575e-06,-3.969199042330729e-06,-5.293955920339377e-23,4.961498802913411e-07,-1.2273243113835062e-22,2.7590773242991418e-05,1.178393907383514e-20,-4.474179604585515e-06,-5.838225011424714e-22,-1.2273243113835062e-22,1.1774156405408576e-07,17.0,40.0,0.032267630100250244,-0.003953031729906797,-0.0017882762476801872,0.00012899897410534322,7.173600897658616e-05,2.5620003725634888e-05,-0.003953031729906797,0.0010617243824526668,7.173600897658616e-05,-5.159958891454153e-05,-8.96700112207327e-06,4.9673401011811196e-20,-0.0017882762476801872,7.173600897658616e-05,0.00019823176262434572,8.978549240895584e-20,-3.6787698718399042e-06,-4.045263722218806e-06,0.00012899897410534322,-5.159958891454153e-05,8.978549240895584e-20,3.2249743071588455e-06,1.0058516248644817e-21,-2.41202393108125e-21,7.173600897658616e-05,-8.96700112207327e-06,-3.6787698718399042e-06,1.0058516248644817e-21,4.5984623397998803e-07,-4.238582207930664e-22,2.5620003725634888e-05,4.9673401011811196e-20,-4.045263722218806e-06,-2.41202393108125e-21,-4.238582207930664e-22,1.0372471592745569e-07,17.0,41.0,0.03152161464095116,-0.003858282696455717,-0.001704822643660009,0.0001258526463061571,6.832001236034557e-05,2.3832561055314727e-05,-0.003858282696455717,0.0010360369924455881,6.832001236034557e-05,-5.0341059250058606e-05,-8.540001545043197e-06,-3.678861540522582e-21,-0.001704822643660009,6.832001236034557e-05,0.00018423792789690197,-5.082197683525802e-21,-3.4160004815930733e-06,-3.6665480820374796e-06,0.0001258526463061571,-5.0341059250058606e-05,-5.082197683525802e-21,3.146316203128663e-06,-5.823351512373315e-22,2.0877345220548293e-22,6.832001236034557e-05,-8.540001545043197e-06,-3.4160004815930733e-06,-5.823351512373315e-22,4.2700006019913417e-07,1.380629173121442e-23,2.3832561055314727e-05,-3.678861540522582e-21,-3.6665480820374796e-06,2.0877345220548293e-22,1.380629173121442e-23,9.166370062985152e-08,17.0,42.0,0.030809311196208,-0.003767969785258174,-0.0016270779306069016,0.0001228561595780775,6.514233245979995e-05,2.220761416538153e-05,-0.003767969785258174,0.001011563348583877,6.514233245979995e-05,-4.914246528642252e-05,-8.142791557474993e-06,2.246203298832778e-20,-0.0016270779306069016,6.514233245979995e-05,0.00017153125372715294,5.421010862427522e-20,-3.177674898324767e-06,-3.3311421248072293e-06,0.0001228561595780775,-4.914246528642252e-05,5.421010862427522e-20,3.0714040804014076e-06,-6.88214269644119e-22,-1.1300933046867011e-21,6.514233245979995e-05,-8.142791557474993e-06,-3.177674898324767e-06,-6.88214269644119e-22,3.972093622905959e-07,-1.5457132427872655e-22,2.220761416538153e-05,2.246203298832778e-20,-3.3311421248072293e-06,-1.1300933046867011e-21,-1.5457132427872655e-22,8.12473714972839e-08,17.0,43.0,0.030128486454486847,-0.0036817886866629124,-0.0015545330243185163,0.00011999903654213995,6.218132330104709e-05,2.0727107767015696e-05,-0.0036817886866629124,0.0009882193990051746,6.218132330104709e-05,-4.79996160720475e-05,-7.772665412630886e-06,-3.47067496296526e-21,-0.0015545330243185163,6.218132330104709e-05,0.000159967050421983,-1.6940658945086007e-20,-2.9610152978420956e-06,-3.0332350888784276e-06,0.00011999903654213995,-4.79996160720475e-05,-1.6940658945086007e-20,2.999976004502969e-06,5.823351512373315e-22,2.103803429367564e-22,6.218132330104709e-05,-7.772665412630886e-06,-2.9610152978420956e-06,5.823351512373315e-22,3.7012691223026195e-07,7.182069726753445e-24,2.0727107767015696e-05,-3.47067496296526e-21,-3.0332350888784276e-06,2.103803429367564e-22,7.182069726753445e-24,7.221988340688767e-08,17.0,44.0,0.02947709709405899,-0.0035994620993733406,-0.001486734370701015,0.00011727178934961557,5.941770723438822e-05,1.9375338524696417e-05,-0.0035994620993733406,0.0009659286588430405,5.941770723438822e-05,-4.690871719503775e-05,-7.427213404298527e-06,7.569383574837139e-21,-0.001486734370701015,5.941770723438822e-05,0.00014941969129722565,1.1011428314305904e-20,-2.763614247669466e-06,-2.767905471046106e-06,0.00011727178934961557,-4.690871719503775e-05,1.1011428314305904e-20,2.9317948246898595e-06,5.293955920339377e-23,-2.896408457771372e-22,5.941770723438822e-05,-7.427213404298527e-06,-2.763614247669466e-06,5.293955920339377e-23,3.4545178095868323e-07,-6.82333381015456e-23,1.9375338524696417e-05,7.569383574837139e-21,-2.767905471046106e-06,-2.896408457771372e-22,-6.82333381015456e-23,6.436989963276574e-08,17.0,45.0,0.028853274881839752,-0.003520736936479807,-0.0014232767280191183,0.00011466575233498588,5.683432755176909e-05,1.8138614905183204e-05,-0.003520736936479807,0.0009446214535273612,5.683432755176909e-05,-4.586629802361131e-05,-7.104290943971137e-06,-7.182770140573973e-22,-0.0014232767280191183,5.683432755176909e-05,0.00013977981870993972,-8.470329472543003e-21,-2.5833785457507474e-06,-2.5309695956821088e-06,0.00011466575233498588,-4.586629802361131e-05,-8.470329472543003e-21,2.8666436264757067e-06,2.3822801641527197e-22,9.859881577581145e-23,5.683432755176909e-05,-7.104290943971137e-06,-2.5833785457507474e-06,2.3822801641527197e-22,3.2292231821884343e-07,-4.003661576057509e-23,1.8138614905183204e-05,-7.182770140573973e-22,-2.5309695956821088e-06,9.859881577581145e-23,-4.003661576057509e-23,5.7522036911450414e-08,17.0,46.0,0.02825530804693699,-0.0034453822299838066,-0.0013637971132993698,0.00011217301653232425,5.4415846534539014e-05,1.700495158729609e-05,-0.0034453822299838066,0.0009242340456694365,5.4415846534539014e-05,-4.4869208068121225e-05,-6.801980816817377e-06,-3.0666382292566288e-21,-0.0013637971132993698,5.4415846534539014e-05,0.0001309518702328205,1.8634724839594607e-20,-2.4184819267247804e-06,-2.318857013960951e-06,0.00011217301653232425,-4.4869208068121225e-05,1.8634724839594607e-20,2.8043255042575765e-06,-2.6734477397713854e-21,7.624338755694907e-23,5.4415846534539014e-05,-6.801980816817377e-06,-2.4184819267247804e-06,-2.6734477397713854e-21,3.0231024084059754e-07,6.307656067500309e-23,1.700495158729609e-05,-3.0666382292566288e-21,-2.318857013960951e-06,7.624338755694907e-23,6.307656067500309e-23,5.1530157918477926e-08,17.0,47.0,0.02768162079155445,-0.003373185871168971,-0.0013079700293019414,0.00010978635691571981,5.214851989876479e-05,1.596383299329318e-05,-0.003373185871168971,0.000904708169400692,5.214851989876479e-05,-4.391454058350064e-05,-6.518564987345599e-06,1.2580396267811323e-21,-0.0013079700293019414,5.214851989876479e-05,0.00012285209959372878,-2.1175823681357508e-20,-2.2673268631479004e-06,-2.128510914189974e-06,0.00010978635691571981,-4.391454058350064e-05,-2.1175823681357508e-20,2.74465878646879e-06,2.8852059765849605e-21,-7.871885832108157e-23,5.214851989876479e-05,-6.518564987345599e-06,-2.2673268631479004e-06,2.8852059765849605e-21,2.8341585789348755e-07,-2.070834975763333e-23,1.596383299329318e-05,1.2580396267811323e-21,-2.128510914189974e-06,-7.871885832108157e-23,-2.070834975763333e-23,4.627197824902396e-08,17.0,48.0,0.027130763977766037,-0.0033039532136172056,-0.001255502225831151,0.0001074991378118284,5.002000762033276e-05,1.5006002286099829e-05,-0.0033039532136172056,0.0008859903900884092,5.002000762033276e-05,-4.29996543971356e-05,-6.252500952541595e-06,4.7096238024303585e-22,-0.001255502225831151,5.002000762033276e-05,0.00011540693958522752,-4.1504614415460717e-20,-2.128510914189974e-06,-1.957304675670457e-06,0.0001074991378118284,-4.29996543971356e-05,-4.1504614415460717e-20,2.687478399820975e-06,4.923379005915621e-21,-1.8999315738630028e-23,5.002000762033276e-05,-6.252500952541595e-06,-2.128510914189974e-06,4.923379005915621e-21,2.6606386427374673e-07,-1.5958052634028575e-24,1.5006002286099829e-05,4.7096238024303585e-22,-1.957304675670457e-06,-1.8999315738630028e-23,-1.5958052634028575e-24,4.1644778292493356e-08,17.0,49.0,0.026601402088999748,-0.003237505443394184,-0.0012061295565217733,0.00010530527652008459,4.801920658792369e-05,1.4123296750767622e-05,-0.003237505443394184,0.0008680314058437943,4.801920658792369e-05,-4.212211206322536e-05,-6.002400823490461e-06,1.7780943584882038e-20,-0.0012061295565217733,4.801920658792369e-05,0.00010855155414901674,2.710505431213761e-20,-2.0008003502880456e-06,-1.8029739976554993e-06,0.00010530527652008459,-4.212211206322536e-05,2.710505431213761e-20,2.632632003951585e-06,1.826414792517085e-21,-8.147523551158731e-22,4.801920658792369e-05,-6.002400823490461e-06,-2.0008003502880456e-06,1.826414792517085e-21,2.501000437860057e-07,-1.3749349542265033e-22,1.4123296750767622e-05,1.7780943584882038e-20,-1.8029739976554993e-06,-8.147523551158731e-22,-1.3749349542265033e-22,3.7561957100251675e-08,17.0,50.0,0.026092300191521645,-0.003173678182065487,-0.0011596131371334195,0.00010319917782908306,4.613610144588165e-05,1.3308490451890975e-05,-0.003173678182065487,0.0008507861639373004,4.613610144588165e-05,-4.127966894884594e-05,-5.767012680735206e-06,8.476045621771107e-22,-0.0011596131371334195,4.613610144588165e-05,0.0001022286742227152,9.317362419797304e-21,-1.8831061652235803e-06,-1.663561306486372e-06,0.00010319917782908306,-4.127966894884594e-05,9.317362419797304e-21,2.579979309302871e-06,-1.1117307432712692e-21,-1.842869793600384e-23,4.613610144588165e-05,-5.767012680735206e-06,-1.8831061652235803e-06,-1.1117307432712692e-21,2.3538827065294754e-07,-2.441290998831086e-23,1.3308490451890975e-05,8.476045621771107e-22,-1.663561306486372e-06,-1.842869793600384e-23,-2.441290998831086e-23,3.39502328472463e-08,17.0,51.0,0.025602318346500397,-0.0031123189255595207,-0.0011157370172441006,0.0001011756612570025,4.436163726495579e-05,1.2555179637274705e-05,-0.0031123189255595207,0.0008342127548530698,4.436163726495579e-05,-4.0470265957992524e-05,-5.545204658119474e-06,1.7744991924391525e-20,-0.0011157370172441006,4.436163726495579e-05,9.638757182983682e-05,5.251604272976662e-20,-1.774465431481076e-06,-1.5373690303022158e-06,0.0001011756612570025,-4.0470265957992524e-05,5.251604272976662e-20,2.5293916223745327e-06,-1.3234889800848443e-21,-8.240554611909041e-22,4.436163726495579e-05,-5.545204658119474e-06,-1.774465431481076e-06,-1.3234889800848443e-21,2.218081789351345e-07,-1.3235606717639108e-22,1.2555179637274705e-05,1.7744991924391525e-20,-1.5373690303022158e-06,-8.240554611909041e-22,-1.3235606717639108e-22,3.0747379753393034e-08,17.0,52.0,0.025130396708846092,-0.003053287509828806,-0.0010743049206212163,9.922997560352087e-05,4.2687610402936116e-05,1.185766996059101e-05,-0.003053287509828806,0.0008182728197425604,4.2687610402936116e-05,-3.969198951381259e-05,-5.3359513003670145e-06,-1.9504129225788703e-21,-0.0010743049206212163,4.2687610402936116e-05,9.098320151679218e-05,8.470329472543003e-22,-1.67402401984873e-06,-1.4229203770810273e-06,9.922997560352087e-05,-3.969198951381259e-05,8.470329472543003e-22,2.4807493446132867e-06,-6.88214269644119e-22,9.240146770641001e-23,4.2687610402936116e-05,-5.3359513003670145e-06,-1.67402401984873e-06,-6.88214269644119e-22,2.0925300248109124e-07,1.2425787513660365e-23,1.185766996059101e-05,-1.9504129225788703e-21,-1.4229203770810273e-06,9.240146770641001e-23,1.2425787513660365e-23,2.7900400212388377e-08,17.0,53.0,0.024675557389855385,-0.0029964540153741837,-0.0010351386154070497,9.735771163832396e-05,4.110658846911974e-05,1.1210888260393403e-05,-0.0029964540153741837,0.0008029306773096323,4.110658846911974e-05,-3.894308611052111e-05,-5.138323558639968e-06,-5.4796345418440904e-21,-0.0010351386154070497,4.110658846911974e-05,8.597550186095759e-05,4.235164736271502e-21,-1.5810226159373997e-06,-1.3189279570724466e-06,9.735771163832396e-05,-3.894308611052111e-05,4.235164736271502e-21,2.4339428819075692e-06,-1.9587636905255695e-21,2.220177452283216e-22,4.110658846911974e-05,-5.138323558639968e-06,-1.5810226159373997e-06,-1.9587636905255695e-21,1.9762782699217496e-07,6.03147838893733e-23,1.1210888260393403e-05,-5.4796345418440904e-21,-1.3189279570724466e-06,2.220177452283216e-22,6.03147838893733e-23,2.53640006775413e-08,17.0,54.0,0.0242368895560503,-0.0029416976030915976,-0.0009980760514736176,9.555478754919022e-05,3.961180482292548e-05,1.0610304343572352e-05,-0.0029416976030915976,0.0007881532656028867,3.961180482292548e-05,-3.822191501967609e-05,-4.951475602865685e-06,-2.895847445139128e-21,-0.0009980760514736176,3.961180482292548e-05,8.132873335853219e-05,-1.8634724839594607e-20,-1.4947851241231547e-06,-1.2242659295225167e-06,9.555478754919022e-05,-3.822191501967609e-05,-1.8634724839594607e-20,2.3888696887297556e-06,8.735027268559972e-22,2.0153467521255767e-22,3.961180482292548e-05,-4.951475602865685e-06,-1.4947851241231547e-06,8.735027268559972e-22,1.8684814051539433e-07,-1.685957865373325e-24,1.0610304343572352e-05,-2.895847445139128e-21,-1.2242659295225167e-06,2.0153467521255767e-22,-1.685957865373325e-24,2.3099357093769868e-08,17.0,55.0,0.02381354384124279,-0.0028889067471027374,-0.0009629689157009125,9.38174343900755e-05,3.819709672825411e-05,1.005186732072616e-05,-0.0028889067471027374,0.0007739100256003439,3.819709672825411e-05,-3.75269737560302e-05,-4.774637091031764e-06,3.833782210275464e-21,-0.0009629689157009125,3.819709672825411e-05,7.701093272771686e-05,2.0328790734103208e-20,-1.4147072988635045e-06,-1.1379472653061384e-06,9.38174343900755e-05,-3.75269737560302e-05,2.0328790734103208e-20,2.3454358597518876e-06,-1.3234889800848443e-21,-1.7576877410848415e-22,3.819709672825411e-05,-4.774637091031764e-06,-1.4147072988635045e-06,-1.3234889800848443e-21,1.7683841235793807e-07,-3.003403934265905e-23,1.005186732072616e-05,3.833782210275464e-21,-1.1379472653061384e-06,-1.7576877410848415e-22,-3.003403934265905e-23,2.1073097045132272e-08,17.0,56.0,0.023404734209179878,-0.00283797737210989,-0.0009296822245232761,9.214212332153693e-05,3.685684714582749e-05,9.531943760521244e-06,-0.00283797737210989,0.0007601724937558174,3.685684714582749e-05,-3.685684714582749e-05,-4.607105893228436e-06,1.0058597835795078e-20,-0.0009296822245232761,3.685684714582749e-05,7.299350545508787e-05,2.795208725939191e-20,-1.340249013992434e-06,-1.0591048749120091e-06,9.214212332153693e-05,-3.685684714582749e-05,2.795208725939191e-20,2.303552946614218e-06,-7.940933880509066e-23,-4.964628075643972e-22,3.685684714582749e-05,-4.607105893228436e-06,-1.340249013992434e-06,-7.940933880509066e-23,1.6753112674905424e-07,-5.699011382710124e-23,9.531943760521244e-06,1.0058597835795078e-20,-1.0591048749120091e-06,-4.964628075643972e-22,-5.699011382710124e-23,1.9256450656257584e-08,17.0,57.0,0.02300972118973732,-0.0027888126205652952,-0.0008980921702459455,9.052559471456334e-05,3.5585922887548804e-05,9.04726857697824e-06,-0.0027888126205652952,0.0007469141855835915,3.5585922887548804e-05,-3.621023643063381e-05,-4.4482403609436005e-06,-2.374083886725699e-21,-0.0008980921702459455,3.5585922887548804e-05,6.925076741026714e-05,-6.3527471044072525e-21,-1.270925849894411e-06,-9.869747827906394e-07,9.052559471456334e-05,-3.621023643063381e-05,-6.3527471044072525e-21,2.2631397769146133e-06,5.293955920339377e-23,1.1073742873211787e-22,3.5585922887548804e-05,-4.4482403609436005e-06,-1.270925849894411e-06,5.293955920339377e-23,1.5886573123680137e-07,1.3635227243917244e-23,9.04726857697824e-06,-2.374083886725699e-21,-9.869747827906394e-07,1.1073742873211787e-22,1.3635227243917244e-23,1.76245489313942e-08,17.0,58.0,0.022627821192145348,-0.002741322387009859,-0.000868085422553122,8.896480721887201e-05,3.437962004682049e-05,8.594905011705123e-06,-0.002741322387009859,0.0007341104210354388,3.437962004682049e-05,-3.5585922887548804e-05,-4.2974525058525614e-06,1.847746035680723e-20,-0.000868085422553122,3.437962004682049e-05,6.57596392557025e-05,5.802175688691957e-20,-1.2063024996677996e-06,-9.208826554640837e-07,8.896480721887201e-05,-3.5585922887548804e-05,5.802175688691957e-20,2.2241201804718003e-06,-8.205631676526035e-22,-8.399738917082462e-22,3.437962004682049e-05,-4.2974525058525614e-06,-1.2063024996677996e-06,-8.205631676526035e-22,1.5078781245847495e-07,-1.2845807194086611e-22,8.594905011705123e-06,1.847746035680723e-20,-9.208826554640837e-07,-8.399738917082462e-22,-1.2845807194086611e-22,1.6155835780296002e-08,17.0,59.0,0.022258389741182327,-0.0026954226195812225,-0.0008395578479394317,8.745693048695102e-05,3.323363125673495e-05,8.17220461613033e-06,-0.0026954226195812225,0.0007217382662929595,3.323363125673495e-05,-3.498277146718465e-05,-4.154203907091869e-06,2.6593255897114423e-22,-0.0008395578479394317,3.323363125673495e-05,6.249931902857497e-05,-1.1011428314305904e-20,-1.1459873121566488e-06,-8.602320917816542e-07,8.745693048695102e-05,-3.498277146718465e-05,-1.1011428314305904e-20,2.1864232166990405e-06,1.0323214044661785e-21,9.897133325019673e-24,3.323363125673495e-05,-4.154203907091869e-06,-1.1459873121566488e-06,1.0323214044661785e-21,1.432484140195811e-07,-9.010839420533909e-24,8.17220461613033e-06,2.6593255897114423e-22,-8.602320917816542e-07,9.897133325019673e-24,-9.010839420533909e-24,1.4831587513697286e-08,17.0,60.0,0.021900827065110207,-0.0026510346215218306,-0.0008124138112179935,8.59993087942712e-05,3.2144005672307685e-05,7.776775419188198e-06,-0.0026510346215218306,0.0007097763009369373,3.2144005672307685e-05,-3.439972351770848e-05,-4.018000709038461e-06,6.549499767921233e-21,-0.0008124138112179935,3.2144005672307685e-05,5.9451045672176406e-05,1.4399560103323106e-20,-1.0896272897298331e-06,-8.044939932005946e-07,8.59993087942712e-05,-3.439972351770848e-05,1.4399560103323106e-20,2.14998271985678e-06,4.499862532288471e-22,-2.8018496574375743e-22,3.2144005672307685e-05,-4.018000709038461e-06,-1.0896272897298331e-06,4.499862532288471e-22,1.3620341121622914e-07,-5.11362326403894e-23,7.776775419188198e-06,6.549499767921233e-21,-8.044939932005946e-07,-2.8018496574375743e-22,-5.11362326403894e-23,1.3635491846741843e-08,17.0,61.0,0.021554570645093918,-0.0026080848183482885,-0.0007865653024055064,8.458949014311656e-05,3.110710167675279e-05,7.406452823488507e-06,-0.0026080848183482885,0.0006982043851166964,3.110710167675279e-05,-3.383579314686358e-05,-3.888387709594099e-06,7.201715525047956e-21,-0.0007865653024055064,3.110710167675279e-05,5.659785165335052e-05,2.244637310223896e-20,-1.0369034271207056e-06,-7.531986057074391e-07,8.458949014311656e-05,-3.383579314686358e-05,2.244637310223896e-20,2.1147370716789737e-06,-1.0587911840678754e-22,-3.2896809887907583e-22,3.110710167675279e-05,-3.888387709594099e-06,-1.0369034271207056e-06,-1.0587911840678754e-22,1.296129283900882e-07,-4.5667094694371956e-23,7.406452823488507e-06,7.201715525047956e-21,-7.531986057074391e-07,-3.2896809887907583e-22,-4.5667094694371956e-23,1.2553309503005039e-08,17.0,62.0,0.02121909148991108,-0.0025665047578513622,-0.000761931121814996,8.322513895109296e-05,3.011957414855715e-05,7.0592755037068855e-06,-0.0025665047578513622,0.0006870037177577615,3.011957414855715e-05,-3.3290056308032945e-05,-3.7649467685696436e-06,-1.7255615637354458e-21,-0.000761931121814996,3.011957414855715e-05,5.3924377425573766e-05,-8.470329472543003e-22,-9.87527073448291e-07,-7.059275048959535e-07,8.322513895109296e-05,-3.3290056308032945e-05,-8.470329472543003e-22,2.080628519252059e-06,-5.029258124322408e-22,6.409965016020233e-23,3.011957414855715e-05,-3.7649467685696436e-06,-9.87527073448291e-07,-5.029258124322408e-22,1.2344088418103638e-07,1.9735218833561742e-23,7.0592755037068855e-06,-1.7255615637354458e-21,-7.059275048959535e-07,6.409965016020233e-23,1.9735218833561742e-23,1.157258289197216e-08,17.0,63.0,0.020893895998597145,-0.002526229713112116,-0.0007384364143945277,8.19041088107042e-05,2.9178338081692345e-05,6.7334626692172606e-06,-0.002526229713112116,0.0006761567783541977,2.9178338081692345e-05,-3.276164352428168e-05,-3.647292260211543e-06,1.2695691633879612e-20,-0.0007384364143945277,2.9178338081692345e-05,5.1416685892036185e-05,4.573977915173222e-20,-9.412366921424109e-07,-6.623077979384107e-07,8.19041088107042e-05,-3.276164352428168e-05,4.573977915173222e-20,2.047602720267605e-06,-3.8381180422460484e-22,-6.273431873552711e-22,2.9178338081692345e-05,-3.647292260211543e-06,-9.412366921424109e-07,-3.8381180422460484e-22,1.1765458651780136e-07,-6.324504874258382e-23,6.7334626692172606e-06,1.2695691633879612e-20,-6.623077979384107e-07,-6.273431873552711e-22,-6.324504874258382e-23,1.0682383866367218e-08,17.0,64.0,0.02057851478457451,-0.002487199380993843,-0.0007160119130276144,8.062435517786071e-05,2.8280543119763024e-05,6.4273963289451785e-06,-0.002487199380993843,0.0006656470941379666,2.8280543119763024e-05,-3.2249743526335806e-05,-3.535067889970378e-06,3.7755851266416e-21,-0.0007160119130276144,2.8280543119763024e-05,4.9062127800425515e-05,1.6940658945086007e-21,-8.977950187727401e-07,-6.220060981831921e-07,8.062435517786071e-05,-3.2249743526335806e-05,1.6940658945086007e-21,2.015608970395988e-06,1.283784310682299e-21,-1.9056747652429376e-22,2.8280543119763024e-05,-3.535067889970378e-06,-8.977950187727401e-07,1.283784310682299e-21,1.1222437734659252e-07,-1.7712558962191532e-23,6.4273963289451785e-06,3.7755851266416e-21,-6.220060981831921e-07,-1.9056747652429376e-22,-1.7712558962191532e-23,9.873112105651671e-09,18.0,3.0,0.24610136449337006,-0.03947368264198303,-0.15789473056793213,0.001461988314986229,0.008771929889917374,0.02777777798473835,-0.03947368264198303,0.011040161363780499,0.008771929889917374,-0.0005482456181198359,-0.0010319917928427458,-2.6020852139652106e-17,-0.15789473056793213,0.008771929889917374,0.4356725215911865,-1.827121127212023e-19,-0.008771929889917374,-0.1666666716337204,0.001461988314986229,-0.0005482456181198359,-1.827121127212023e-19,3.2249743526335806e-05,-7.208743329080389e-20,4.094677415011261e-19,0.008771929889917374,-0.0010319917928427458,-0.008771929889917374,-7.208743329080389e-20,0.0010319917928427458,2.0383000842727483e-17,0.02777777798473835,-2.6020852139652106e-17,-0.1666666716337204,4.094677415011261e-19,2.0383000842727483e-17,0.0833333358168602,18.0,4.0,0.20687134563922882,-0.030921053141355515,-0.10307017713785172,0.0010964912362396717,0.005263158120214939,0.013888888992369175,-0.030921053141355515,0.008434919640421867,0.005263158120214939,-0.0004111842135898769,-0.0006191950524225831,-4.9873299934333204e-18,-0.10307017713785172,0.005263158120214939,0.1659356653690338,-3.059244518972176e-19,-0.003508772002533078,-0.0416666679084301,0.0010964912362396717,-0.0004111842135898769,-3.059244518972176e-19,2.418730582576245e-05,-3.307639683714976e-20,1.956928642035409e-19,0.005263158120214939,-0.0006191950524225831,-0.003508772002533078,-3.307639683714976e-20,0.0004127967113163322,1.5178830414797062e-18,0.013888888992369175,-4.9873299934333204e-18,-0.0416666679084301,1.956928642035409e-19,1.5178830414797062e-18,0.013888888992369175,18.0,5.0,0.17844611406326294,-0.025438595563173294,-0.07268170267343521,0.0008771930006332695,0.003508772002533078,0.007936508394777775,-0.025438595563173294,0.0068304953165352345,0.003508772002533078,-0.0003289473825134337,-0.0004127967113163322,4.553649124439119e-18,-0.07268170267343521,0.003508772002533078,0.0839598998427391,-1.186377977440498e-19,-0.001754386001266539,-0.01587301678955555,0.0008771930006332695,-0.0003289473825134337,-1.186377977440498e-19,1.9349845388205722e-05,2.7535537197486106e-20,-3.127163737457537e-20,0.003508772002533078,-0.0004127967113163322,-0.001754386001266539,2.7535537197486106e-20,0.0002063983556581661,-1.951563910473908e-18,0.007936508394777775,4.553649124439119e-18,-0.01587301678955555,-3.127163737457537e-20,-1.951563910473908e-18,0.003968254197388887,18.0,6.0,0.1568852663040161,-0.021616540849208832,-0.05404135212302208,0.0007309941574931145,0.002506265649572015,0.004960317630320787,-0.021616540849208832,0.005741221830248833,0.002506265649572015,-0.0002741228090599179,-0.0002948547771666199,-2.4936649967166602e-18,-0.05404135212302208,0.002506265649572015,0.04889828711748123,1.8070795749456288e-19,-0.0010025062365457416,-0.0074404762126505375,0.0007309941574931145,-0.0002741228090599179,1.8070795749456288e-19,1.6124871763167903e-05,-2.498612292874506e-20,1.205374697195661e-20,0.002506265649572015,-0.0002948547771666199,-0.0010025062365457416,-2.498612292874506e-20,0.00011794191232183948,8.944667923005412e-19,0.004960317630320787,-2.4936649967166602e-18,-0.0074404762126505375,1.205374697195661e-20,8.944667923005412e-19,0.0014880952658131719,18.0,7.0,0.13996797800064087,-0.01879699155688286,-0.041771095246076584,0.0006265664123930037,0.001879699295386672,0.003306878264993429,-0.01879699155688286,0.004952638875693083,0.001879699295386672,-0.000234962411923334,-0.00022114109015092254,2.0057740190981832e-18,-0.041771095246076584,0.001879699295386672,0.031119465827941895,7.369587306721618e-19,-0.0006265664123930037,-0.003968254197388887,0.0006265664123930037,-0.000234962411923334,7.369587306721618e-19,1.3821318134432659e-05,-2.1375502173170968e-20,-8.126439472631739e-20,0.001879699295386672,-0.00022114109015092254,-0.0006265664123930037,-2.1375502173170968e-20,7.371369429165497e-05,-1.6940658945086007e-19,0.003306878264993429,2.0057740190981832e-18,-0.003968254197388887,-8.126439472631739e-20,-1.6940658945086007e-19,0.0006613756413571537,18.0,8.0,0.12634015083312988,-0.01663011685013771,-0.03326023370027542,0.0005482456181198359,0.001461988314986229,0.002314814832061529,-0.01663011685013771,0.004355059005320072,0.001461988314986229,-0.00020559210679493845,-0.0001719986175885424,1.5178830414797062e-18,-0.03326023370027542,0.001461988314986229,0.021076997742056847,6.114670565441654e-19,-0.0004177109512966126,-0.002314814832061529,0.0005482456181198359,-0.00020559210679493845,6.114670565441654e-19,1.2093652912881225e-05,-2.573980563581591e-20,-5.0988434008837246e-20,0.001461988314986229,-0.0001719986175885424,-0.0004177109512966126,-2.573980563581591e-20,4.914246528642252e-05,-1.0164395367051604e-19,0.002314814832061529,1.5178830414797062e-18,-0.002314814832061529,-5.0988434008837246e-20,-1.0164395367051604e-19,0.0003306878206785768,18.0,9.0,0.11512788385152817,-0.01491228025406599,-0.027113238349556923,0.000487329438328743,0.0011695906287059188,0.001683501643128693,-0.01491228025406599,0.003886452177539468,0.0011695906287059188,-0.00018274853937327862,-0.00013759889407083392,2.439454888092385e-19,-0.027113238349556923,0.0011695906287059188,0.014955317601561546,-1.4175281712456716e-19,-0.0002923976571764797,-0.0014430014416575432,0.000487329438328743,-0.00018274853937327862,-1.4175281712456716e-19,1.07499135992839e-05,8.939054113144304e-21,7.971426472074155e-21,0.0011695906287059188,-0.00013759889407083392,-0.0002923976571764797,8.939054113144304e-21,3.439972351770848e-05,-9.825582188149884e-20,0.001683501643128693,2.439454888092385e-19,-0.0014430014416575432,7.971426472074155e-21,-9.825582188149884e-20,0.0001803751802071929,18.0,10.0,0.10574162751436234,-0.013516746461391449,-0.02252791076898575,0.0004385965003166348,0.0009569377871230245,0.0012626262614503503,-0.013516746461391449,0.0035090651363134384,0.0009569377871230245,-0.00016447369125671685,-0.00011258091399213299,-1.0028870095490916e-18,-0.02252791076898575,0.0009569377871230245,0.011003676801919937,-3.303680267390717e-19,-0.00021265284158289433,-0.0009469697251915932,0.0004385965003166348,-0.00016447369125671685,-3.303680267390717e-19,9.674922694102861e-06,1.1063432448558774e-20,2.487029502476776e-20,0.0009569377871230245,-0.00011258091399213299,-0.00021265284158289433,1.1063432448558774e-20,2.5017981897690333e-05,1.1180834903756764e-19,0.0012626262614503503,-1.0028870095490916e-18,-0.0009469697251915932,2.487029502476776e-20,1.1180834903756764e-19,0.00010521885269554332,18.0,11.0,0.09776919335126877,-0.012360446155071259,-0.019016072154045105,0.00039872407796792686,0.0007974481559358537,0.0009712509927339852,-0.012360446155071259,0.0031985880341380835,0.0007974481559358537,-0.00014952152559999377,-9.38174343900755e-05,-7.260287796481924e-19,-0.019016072154045105,0.0007974481559358537,0.008335718885064125,-2.6826591713739877e-19,-0.00015948963118717074,-0.0006475006230175495,0.00039872407796792686,-0.00014952152559999377,-2.6826591713739877e-19,8.795384019322228e-06,9.317362419797304e-21,1.8695075096981167e-20,0.0007974481559358537,-9.38174343900755e-05,-0.00015948963118717074,9.317362419797304e-21,1.87634868780151e-05,8.164250673913362e-20,0.0009712509927339852,-7.260287796481924e-19,-0.0006475006230175495,1.8695075096981167e-20,8.164250673913362e-20,6.475006375694647e-05,18.0,12.0,0.09091371297836304,-0.011386639438569546,-0.016266627237200737,0.00036549707874655724,0.0006747638108208776,0.000763125775847584,-0.011386639438569546,0.002938654273748398,0.0006747638108208776,-0.00013706140452995896,-7.938397902762517e-05,4.8202719765366515e-19,-0.016266627237200737,0.0006747638108208776,0.006467947270721197,4.337376342637382e-19,-0.00012268433056306094,-0.0004578754596877843,0.00036549707874655724,-0.00013706140452995896,4.337376342637382e-19,8.062435881583951e-06,-1.3129010682441655e-20,-2.8958287851077314e-20,0.0006747638108208776,-7.938397902762517e-05,-0.00012268433056306094,-1.3129010682441655e-20,1.4433450814976823e-05,1.866133598307052e-21,0.000763125775847584,4.8202719765366515e-19,-0.0004578754596877843,-2.8958287851077314e-20,1.866133598307052e-21,4.162504046689719e-05,18.0,13.0,0.08495598286390305,-0.010555233806371689,-0.014073645696043968,0.0003373819054104388,0.0005783690139651299,0.0006105006323195994,-0.010555233806371689,0.002717838156968355,0.0005783690139651299,-0.00012651822180487216,-6.804340955568478e-05,6.678454640478836e-19,-0.014073645696043968,0.0005783690139651299,0.005120610352605581,6.483745113077861e-19,-9.639483323553577e-05,-0.0003330003237351775,0.0003373819054104388,-0.00012651822180487216,6.483745113077861e-19,7.4422482612135354e-06,-1.4399560103323106e-20,-3.9631651326441917e-20,0.0005783690139651299,-6.804340955568478e-05,-9.639483323553577e-05,-1.4399560103323106e-20,1.1340568562445696e-05,9.821027969188476e-22,0.0006105006323195994,6.678454640478836e-19,-0.0003330003237351775,-3.9631651326441917e-20,9.821027969188476e-22,2.775002758426126e-05,18.0,14.0,0.0797305777668953,-0.009837092831730843,-0.012296365574002266,0.00031328320619650185,0.0005012531182728708,0.0004960317746736109,-0.009837092831730843,0.0025279191322624683,0.0005012531182728708,-0.000117481205961667,-5.897095616091974e-05,3.034950482875435e-19,-0.012296365574002266,0.0005012531182728708,0.0041238912381231785,3.003644023135776e-19,-7.711586658842862e-05,-0.00024801588733680546,0.00031328320619650185,-0.000117481205961667,3.003644023135776e-19,6.910659067216329e-06,-7.199780051661553e-21,-1.8413694748219623e-20,0.0005012531182728708,-5.897095616091974e-05,-7.711586658842862e-05,-7.199780051661553e-21,9.072455213754438e-06,1.467346412067417e-21,0.0004960317746736109,3.034950482875435e-19,-0.00024801588733680546,-1.8413694748219623e-20,1.467346412067417e-21,1.907814475998748e-05,18.0,15.0,0.07511036843061447,-0.009210526011884212,-0.010835913009941578,0.0002923976571764797,0.0004385965003166348,0.00040849673678167164,-0.009210526011884212,0.0023628310300409794,0.0004385965003166348,-0.0001096491250791587,-5.159958891454153e-05,-1.5924219408380846e-19,-0.010835913009941578,0.0004385965003166348,0.0033705115783959627,-1.504838765111263e-19,-6.265663978410885e-05,-0.0001885369565570727,0.0002923976571764797,-0.0001096491250791587,-1.504838765111263e-19,6.449948614317691e-06,5.338542086266979e-21,7.570613036646031e-21,0.0004385965003166348,-5.159958891454153e-05,-6.265663978410885e-05,5.338542086266979e-21,7.371369520114968e-06,4.658681209898652e-21,0.00040849673678167164,-1.5924219408380846e-19,-0.0001885369565570727,7.570613036646031e-21,4.658681209898652e-21,1.3466925338434521e-05,18.0,16.0,0.07099601626396179,-0.008659055456519127,-0.00962117314338684,0.0002741228090599179,0.0003869968932121992,0.0003404139424674213,-0.008659055456519127,0.0022179996594786644,0.0003869968932121992,-0.00010279605339746922,-4.5529046474257484e-05,2.236166980751353e-19,-0.00962117314338684,0.0003869968932121992,0.0027903704904019833,2.25806581198687e-19,-5.159958891454153e-05,-0.00014589169586542994,0.0002741228090599179,-0.00010279605339746922,2.25806581198687e-19,6.046826456440613e-06,-4.599136322698338e-21,-1.2441342481248792e-20,0.0003869968932121992,-4.5529046474257484e-05,-5.159958891454153e-05,-4.599136322698338e-21,6.070539711799938e-06,-1.6940658945086007e-21,0.0003404139424674213,2.236166980751353e-19,-0.00014589169586542994,-1.2441342481248792e-20,-1.6940658945086007e-21,9.726112693897448e-06,18.0,17.0,0.06730879843235016,-0.008169935084879398,-0.008599931374192238,0.00025799794821068645,0.0003439972351770848,0.0002866643771994859,-0.008169935084879398,0.0020899097435176373,0.0003439972351770848,-9.67492233030498e-05,-4.0470265957992524e-05,-9.486769009248164e-20,-0.008599931374192238,0.0003439972351770848,0.002336314646527171,-8.272657216832411e-20,-4.29996543971356e-05,-0.00011466575233498588,0.00025799794821068645,-9.67492233030498e-05,-8.272657216832411e-20,5.6911308092821855e-06,-1.7149096443520061e-22,5.2248701833198604e-21,0.0003439972351770848,-4.0470265957992524e-05,-4.29996543971356e-05,-1.7149096443520061e-22,5.0587832447490655e-06,4.235164736271502e-22,0.0002866643771994859,-9.486769009248164e-20,-0.00011466575233498588,5.2248701833198604e-21,4.235164736271502e-22,7.166609520936618e-06,18.0,18.0,0.06398549675941467,-0.007733148522675037,-0.007733148522675037,0.0002436647191643715,0.0003077870060224086,0.0002436647191643715,-0.007733148522675037,0.001975815277546644,0.0003077870060224086,-9.137426968663931e-05,-3.621023643063381e-05,1.4399560103323106e-19,-0.007733148522675037,0.0003077870060224086,0.001975815277546644,1.9193420719888822e-19,-3.621023643063381e-05,-9.137426968663931e-05,0.0002436647191643715,-9.137426968663931e-05,1.9193420719888822e-19,5.37495679964195e-06,-5.211592480459964e-21,-8.558621309410236e-21,0.0003077870060224086,-3.621023643063381e-05,-3.621023643063381e-05,-5.211592480459964e-21,4.260027708369307e-06,2.117582368135751e-22,0.0002436647191643715,1.4399560103323106e-19,-9.137426968663931e-05,-8.558621309410236e-21,2.117582368135751e-22,5.37495679964195e-06,18.0,19.0,0.06097480654716492,-0.007340720389038324,-0.006991161964833736,0.00023084026179276407,0.0002770083083305508,0.0002088554756483063,-0.007340720389038324,0.0018735402263700962,0.0002770083083305508,-8.656509453430772e-05,-3.2589214242761955e-05,1.2536087619363645e-19,-0.006991161964833736,0.0002770083083305508,0.001685931347310543,1.6428516531172335e-19,-3.077870132983662e-05,-7.371369429165497e-05,0.00023084026179276407,-8.656509453430772e-05,1.6428516531172335e-19,5.092064384371042e-06,-3.8462557546394656e-21,-7.183012680592448e-21,0.0002770083083305508,-3.2589214242761955e-05,-3.077870132983662e-05,-3.8462557546394656e-21,3.621023552113911e-06,-2.117582368135751e-22,0.0002088554756483063,1.2536087619363645e-19,-7.371369429165497e-05,-7.183012680592448e-21,-2.117582368135751e-22,4.09520544053521e-06,18.0,20.0,0.058234602212905884,-0.006986215710639954,-0.006351104937493801,0.0002192982501583174,0.0002506265591364354,0.0001803751802071929,-0.006986215710639954,0.0017813375452533364,0.0002506265591364354,-8.223684562835842e-05,-2.948547808045987e-05,-6.268043809681823e-20,-0.006351104937493801,0.0002506265591364354,0.0014501631958410144,-9.225799342101366e-20,-2.638174373714719e-05,-6.01250612817239e-05,0.0002192982501583174,-8.223684562835842e-05,-9.225799342101366e-20,4.8374613470514305e-06,3.3724472652245882e-21,3.295703241293637e-21,0.0002506265591364354,-2.948547808045987e-05,-2.638174373714719e-05,3.3724472652245882e-21,3.103734570686356e-06,9.529120656610879e-22,0.0001803751802071929,-6.268043809681823e-20,-6.01250612817239e-05,3.295703241293637e-21,9.529120656610879e-22,3.1644767659599893e-06,18.0,21.0,0.05573001503944397,-0.006664388347417116,-0.005795120261609554,0.0002088554756483063,0.00022784233442507684,0.00015684797836001962,-0.006664388347417116,0.0016977883642539382,0.00022784233442507684,-7.832080154912546e-05,-2.680498073459603e-05,8.809142651444724e-20,-0.005795120261609554,0.00022784233442507684,0.0012564349453896284,1.3627193131048787e-19,-2.2784233806305565e-05,-4.9530943215359e-05,0.0002088554756483063,-7.832080154912546e-05,1.3627193131048787e-19,4.607105893228436e-06,-2.8946763464154474e-21,-5.58384516263835e-21,0.00022784233442507684,-2.680498073459603e-05,-2.2784233806305565e-05,-2.8946763464154474e-21,2.680498027984868e-06,5.293955920339377e-22,0.00015684797836001962,8.809142651444724e-20,-4.9530943215359e-05,-5.58384516263835e-21,5.293955920339377e-22,2.476547024343745e-06,18.0,22.0,0.0534319169819355,-0.0063709174282848835,-0.005309097934514284,0.00019936203898396343,0.0002080299600493163,0.00013724197924602777,-0.0063709174282848835,0.001621728646568954,0.0002080299600493163,-7.476076279999688e-05,-2.447411316097714e-05,1.6601845766184287e-19,-0.005309097934514284,0.0002080299600493163,0.0010957688791677356,2.6260590794661053e-19,-1.981237619474996e-05,-4.1172595956595615e-05,0.00019936203898396343,-7.476076279999688e-05,2.6260590794661053e-19,4.397692009661114e-06,-3.2658168988005406e-21,-1.02907124704957e-20,0.0002080299600493163,-2.447411316097714e-05,-1.981237619474996e-05,-3.2658168988005406e-21,2.3308678009925643e-06,6.352747104407253e-22,0.00013724197924602777,1.6601845766184287e-19,-4.1172595956595615e-05,-1.02907124704957e-20,6.352747104407253e-22,1.9605997749749804e-06,18.0,23.0,0.051315788179636,-0.006102212239056826,-0.004881769418716431,0.0001906941324705258,0.0001906941324705258,0.00012077294377377257,-0.006102212239056826,0.0015521941240876913,0.0001906941324705258,-7.151029421947896e-05,-2.2434604034060612e-05,8.046812998915853e-20,-0.004881769418716431,0.0001906941324705258,0.0009613955626264215,1.2789392294912403e-19,-1.733582939777989e-05,-3.4506556403357536e-05,0.0001906941324705258,-7.151029421947896e-05,1.2789392294912403e-19,4.206488029012689e-06,-3.994988321772755e-21,-4.269842102410157e-21,0.0001906941324705258,-2.2434604034060612e-05,-1.733582939777989e-05,-3.994988321772755e-21,2.039509354290203e-06,-6.352747104407253e-22,0.00012077294377377257,8.046812998915853e-20,-3.4506556403357536e-05,-4.269842102410157e-21,-6.352747104407253e-22,1.5684797745052492e-06,18.0,24.0,0.04936084896326065,-0.005855263210833073,-0.004504048731178045,0.00018274853937327862,0.00017543860303703696,0.00010683760774554685,-0.005855263210833073,0.0014883793191984296,0.00017543860303703696,-6.853070226497948e-05,-2.063983447442297e-05,6.860966872759833e-20,-0.004504048731178045,0.00017543860303703696,0.0008481443510390818,1.1524901972017903e-19,-1.5255530342983548e-05,-2.9137529054423794e-05,0.00018274853937327862,-6.853070226497948e-05,1.1524901972017903e-19,4.031217940791976e-06,-3.3691068368768735e-21,-3.765721967189186e-21,0.00017543860303703696,-2.063983447442297e-05,-1.5255530342983548e-05,-3.3691068368768735e-21,1.7947681953955907e-06,-3.1763735522036263e-22,0.00010683760774554685,6.860966872759833e-20,-2.9137529054423794e-05,-3.765721967189186e-21,-3.1763735522036263e-22,1.2668490398937138e-06,18.0,25.0,0.04754935950040817,-0.005627530161291361,-0.004168541170656681,0.00017543860303703696,0.00016194331692531705,9.496675920672715e-05,-0.005627530161291361,0.0014296062290668488,0.00016194331692531705,-6.578947068192065e-05,-1.9052155039389618e-05,-1.3552527156068805e-20,-0.004168541170656681,0.00016194331692531705,0.000752019404899329,-4.00562276252289e-20,-1.3495277016772889e-05,-2.4773937184363604e-05,0.00017543860303703696,-6.578947068192065e-05,-4.00562276252289e-20,3.869969077641144e-06,-1.692711865184094e-36,1.6690095517006681e-21,0.00016194331692531705,-1.9052155039389618e-05,-1.3495277016772889e-05,-1.692711865184094e-36,1.5876796624070266e-06,-1.2176098616780567e-21,9.496675920672715e-05,-1.3552527156068805e-20,-2.4773937184363604e-05,1.6690095517006681e-21,-1.2176098616780567e-21,1.0322473826818168e-06,18.0,26.0,0.045866090804338455,-0.0054168542847037315,-0.0038691814988851547,0.0001686909527052194,0.00014994751836638898,8.479175448883325e-05,-0.0054168542847037315,0.0013752998784184456,0.00014994751836638898,-6.325911090243608e-05,-1.764088483469095e-05,8.639736061993863e-20,-0.0038691814988851547,0.00014994751836638898,0.000669899454806,1.4756073654863754e-19,-1.1995801287412178e-05,-2.1197938622208312e-05,0.0001686909527052194,-6.325911090243608e-05,1.4756073654863754e-19,3.7211241306067677e-06,-1.2345512112866425e-21,-5.016551531514343e-21,0.00014994751836638898,-1.764088483469095e-05,-1.1995801287412178e-05,-1.2345512112866425e-21,1.4112707731328555e-06,-5.293955920339377e-23,8.479175448883325e-05,8.639736061993863e-20,-2.1197938622208312e-05,-5.016551531514343e-21,-5.293955920339377e-23,8.479175335196487e-07,18.0,27.0,0.044297900050878525,-0.005221386905759573,-0.003600956406444311,0.000162443146109581,0.00013923698861617595,7.602018740726635e-05,-0.005221386905759573,0.0013249695766717196,0.00013923698861617595,-6.091617979109287e-05,-1.638082176214084e-05,6.352747104407253e-20,-0.003600956406444311,0.00013923698861617595,0.0005993222584947944,1.3141707904844344e-19,-1.0710537026170641e-05,-1.8244845705339685e-05,0.000162443146109581,-6.091617979109287e-05,1.3141707904844344e-19,3.583304760468309e-06,-1.1831451471959004e-21,-4.267524542666588e-21,0.00013923698861617595,-1.638082176214084e-05,-1.0710537026170641e-05,-1.1831451471959004e-21,1.2600631862369482e-06,6.352747104407253e-22,7.602018740726635e-05,6.352747104407253e-20,-1.8244845705339685e-05,-4.267524542666588e-21,6.352747104407253e-22,7.017248435658985e-07,18.0,28.0,0.04283337667584419,-0.005039538722485304,-0.0033596924040466547,0.00015664160309825093,0.00012963442713953555,6.841817230451852e-05,-0.005039538722485304,0.0012781939003616571,0.00012963442713953555,-5.87406029808335e-05,-1.525110928923823e-05,4.0234064994579266e-20,-0.0033596924040466547,0.00012963442713953555,0.0005383276147767901,7.992298565374341e-20,-9.602550562703982e-06,-1.5788808013894595e-05,0.00015664160309825093,-5.87406029808335e-05,7.992298565374341e-20,3.4553295336081646e-06,-1.817721116201217e-21,-2.387864844977803e-21,0.00012963442713953555,-1.525110928923823e-05,-9.602550562703982e-06,-1.817721116201217e-21,1.1297117907815846e-06,0.0,6.841817230451852e-05,4.0234064994579266e-20,-1.5788808013894595e-05,-2.387864844977803e-21,0.0,5.847707029715821e-07,18.0,29.0,0.041462574154138565,-0.0048699332401156425,-0.003141892608255148,0.0001512401649961248,0.00012099213199689984,6.179705815156922e-05,-0.0048699332401156425,0.0012346090516075492,0.00012099213199689984,-5.6715063692536205e-05,-1.4234368791221641e-05,3.3881317890172014e-20,-0.003141892608255148,0.00012099213199689984,0.0004853418213315308,7.369394082500405e-20,-8.642295142635703e-06,-1.373267969029257e-05,0.0001512401649961248,-5.6715063692536205e-05,7.369394082500405e-20,3.3361802707077004e-06,-1.5795370235611479e-21,-2.1524241202652794e-21,0.00012099213199689984,-1.4234368791221641e-05,-8.642295142635703e-06,-1.5795370235611479e-21,1.0167406117034261e-06,2.117582368135751e-22,6.179705815156922e-05,3.3881317890172014e-20,-1.373267969029257e-05,-2.1524241202652794e-21,2.117582368135751e-22,4.904528623228543e-07,18.0,30.0,0.04017677530646324,-0.00471137510612607,-0.0029446096159517765,0.00014619882858823985,0.0001131861936300993,5.600358417723328e-05,-0.00471137510612607,0.001193899312056601,0.0001131861936300993,-5.482456253957935e-05,-1.3316022887011059e-05,-1.7364175418713157e-20,-0.0029446096159517765,0.0001131861936300993,0.00043909161468036473,-3.995357321874136e-20,-7.805943823768757e-06,-1.200076803797856e-05,0.00014619882858823985,-5.482456253957935e-05,-3.995357321874136e-20,3.2249743071588455e-06,1.3791226318081999e-21,9.734838415079221e-22,0.0001131861936300993,-1.3316022887011059e-05,-7.805943823768757e-06,1.3791226318081999e-21,9.183463589579333e-07,2.6469779601696886e-23,5.600358417723328e-05,-1.7364175418713157e-20,-1.200076803797856e-05,9.734838415079221e-22,2.6469779601696886e-23,4.138195777159126e-07,18.0,31.0,0.03896831348538399,-0.004562818445265293,-0.0027653444558382034,0.00014148274203762412,0.00010611205652821809,5.0912349252030253e-05,-0.004562818445265293,0.0011557891266420484,0.00010611205652821809,-5.3056028264109045e-05,-1.2483770660765003e-05,1.380436972526139e-20,-0.0027653444558382034,0.00010611205652821809,0.0003985392686445266,3.3881317890172014e-20,-7.074137101881206e-06,-1.0533589374972507e-05,0.00014148274203762412,-5.3056028264109045e-05,3.3881317890172014e-20,3.120942665191251e-06,-1.7999450129153882e-21,-5.548209450406709e-22,0.00010611205652821809,-1.2483770660765003e-05,-7.074137101881206e-06,-1.7999450129153882e-21,8.322514304381912e-07,-2.291152214559037e-22,5.0912349252030253e-05,1.380436972526139e-20,-1.0533589374972507e-05,-5.548209450406709e-22,-2.291152214559037e-22,3.511196382532944e-07,18.0,32.0,0.0378304123878479,-0.004423345439136028,-0.002601967891678214,0.00013706140452995896,9.968101949198171e-05,4.642008207156323e-05,-0.004423345439136028,0.0011200371664017439,9.968101949198171e-05,-5.139802669873461e-05,-1.1727179298759438e-05,-4.4519054438060017e-20,-0.002601967891678214,9.968101949198171e-05,0.00036283323424868286,-1.1011428314305904e-19,-6.4310333982575685e-06,-9.284016414312646e-06,0.00013706140452995896,-5.139802669873461e-05,-1.1011428314305904e-19,3.0234132282203063e-06,4.235164736271502e-21,2.1315400312306245e-21,9.968101949198171e-05,-1.1727179298759438e-05,-6.4310333982575685e-06,4.235164736271502e-21,7.565922146568482e-07,3.7982864987663946e-22,4.642008207156323e-05,-4.4519054438060017e-20,-9.284016414312646e-06,2.1315400312306245e-21,3.7982864987663946e-22,2.994844123804796e-07,18.0,33.0,0.03675707429647446,-0.004292147699743509,-0.0024526556953787804,0.00013290802598930895,9.38174343900755e-05,4.244121737428941e-05,-0.004292147699743509,0.0010864312062039971,9.38174343900755e-05,-4.984050974599086e-05,-1.1037344847864006e-05,-4.130380016589213e-20,-0.0024526556953787804,9.38174343900755e-05,0.00033127027563750744,-8.639736061993863e-20,-5.863589649379719e-06,-8.214429726649541e-06,0.00013290802598930895,-4.984050974599086e-05,-8.639736061993863e-20,2.9317948246898595e-06,1.852884572118782e-21,2.0491147951433398e-21,9.38174343900755e-05,-1.1037344847864006e-05,-5.863589649379719e-06,1.852884572118782e-21,6.898340529915004e-07,3.3863269257531536e-22,4.244121737428941e-05,-4.130380016589213e-20,-8.214429726649541e-06,2.0491147951433398e-21,3.3863269257531536e-22,2.5670092895779817e-07,18.0,34.0,0.035742953419685364,-0.004168509505689144,-0.0023158385884016752,0.00012899897410534322,8.845643606036901e-05,3.8904450775589794e-05,-0.004168509505689144,0.0010547833517193794,8.845643606036901e-05,-4.83746116515249e-05,-1.0406639376014937e-05,8.420917063170324e-20,-0.0023158385884016752,8.845643606036901e-05,0.00030326624982990324,1.6771252355635147e-19,-5.360996055969736e-06,-7.294584520423086e-06,0.00012899897410534322,-4.83746116515249e-05,1.6771252355635147e-19,2.8455654046410928e-06,-3.282252670610414e-21,-4.067108939223289e-21,8.845643606036901e-05,-1.0406639376014937e-05,-5.360996055969736e-06,-3.282252670610414e-21,6.307054150056501e-07,-7.445074343277884e-22,3.8904450775589794e-05,8.420917063170324e-20,-7.294584520423086e-06,-4.067108939223289e-21,-7.445074343277884e-22,2.210480118947089e-07,18.0,35.0,0.03478327766060829,-0.004051796160638332,-0.002190160099416971,0.0001253132795682177,8.3542188804131e-05,3.575003574951552e-05,-0.004051796160638332,0.0010249274782836437,8.3542188804131e-05,-4.699248165707104e-05,-9.828492693486623e-06,-1.9021634128251668e-21,-0.002190160099416971,8.3542188804131e-05,0.00027833308558911085,5.082197683525802e-21,-4.914246346743312e-06,-6.500006293208571e-06,0.0001253132795682177,-4.699248165707104e-05,5.082197683525802e-21,2.7642636268865317e-06,-8.470329472543003e-22,5.0678620740157934e-23,8.3542188804131e-05,-9.828492693486623e-06,-4.914246346743312e-06,-8.470329472543003e-22,5.781466256848944e-07,4.8795887438434016e-23,3.575003574951552e-05,-1.9021634128251668e-21,-6.500006293208571e-06,5.0678620740157934e-23,4.8795887438434016e-23,1.9117666738566186e-07,18.0,36.0,0.0338737852871418,-0.003941441420465708,-0.0020744428038597107,0.00012183235958218575,7.902639481471851e-05,3.292766632512212e-05,-0.003941441420465708,0.0009967155056074262,7.902639481471851e-05,-4.5687134843319654e-05,-9.29722318687709e-06,-6.160509683815075e-20,-0.0020744428038597107,7.902639481471851e-05,0.00025606100098229945,-1.0503208545953324e-19,-4.5157939894124866e-06,-5.810764378111344e-06,0.00012183235958218575,-4.5687134843319654e-05,-1.0503208545953324e-19,2.687478399820975e-06,3.705769144237564e-22,2.7321466651587147e-21,7.902639481471851e-05,-9.29722318687709e-06,-4.5157939894124866e-06,3.705769144237564e-22,5.31269904513465e-07,7.015352399469452e-22,3.292766632512212e-05,-6.160509683815075e-20,-5.810764378111344e-06,2.7321466651587147e-21,7.015352399469452e-22,1.6602183450231678e-07,18.0,37.0,0.033010635524988174,-0.0038369393441826105,-0.001967661315575242,0.00011853959586005658,7.486710819648579e-05,3.0394767236430198e-05,-0.0038369393441826105,0.0009700153605081141,7.486710819648579e-05,-4.4452346628531814e-05,-8.807895028439816e-06,-4.844877627079778e-20,-0.001967661315575242,7.486710819648579e-05,0.00023610411153640598,-1.0079692072326174e-19,-4.159283889748622e-06,-5.210531526245177e-06,0.00011853959586005658,-4.4452346628531814e-05,-1.0079692072326174e-19,2.6148438792006345e-06,2.329340604949326e-21,2.201838670290911e-21,7.486710819648579e-05,-8.807895028439816e-06,-4.159283889748622e-06,2.329340604949326e-21,4.893275331596669e-07,4.724492757642943e-22,3.0394767236430198e-05,-4.844877627079778e-20,-5.210531526245177e-06,2.201838670290911e-21,4.724492757642943e-22,1.447369868401438e-07,18.0,38.0,0.03219037875533104,-0.003737836377695203,-0.0018689181888476014,0.00011542013089638203,7.102777453837916e-05,2.8115160603192635e-05,-0.003737836377695203,0.0009447085321880877,7.102777453837916e-05,-4.328254726715386e-05,-8.356208127224818e-06,4.018221110992985e-20,-0.0018689181888476014,7.102777453837916e-05,0.0002181691088480875,8.639736061993863e-20,-3.839339115074836e-06,-4.6858599489496555e-06,0.00011542013089638203,-4.328254726715386e-05,8.639736061993863e-20,2.546032192185521e-06,-1.2705494208814505e-21,-1.9188792870543787e-21,7.102777453837916e-05,-8.356208127224818e-06,-3.839339115074836e-06,-1.2705494208814505e-21,4.5168692963670765e-07,-3.134348344318734e-22,2.8115160603192635e-05,4.018221110992985e-20,-4.6858599489496555e-06,-1.9188792870543787e-21,-3.134348344318734e-22,1.2664486348512582e-07,18.0,39.0,0.031409889459609985,-0.003643724601715803,-0.0017774266889318824,0.00011246064241277054,6.747638690285385e-05,2.6057952709379606e-05,-0.003643724601715803,0.0009206887916661799,6.747638690285385e-05,-4.217273817630485e-05,-7.938398084661458e-06,-1.5425914740607035e-21,-0.0017774266889318824,6.747638690285385e-05,0.00020200619474053383,0.0,-3.5513885450200178e-06,-4.225613793096272e-06,0.00011246064241277054,-4.217273817630485e-05,0.0,2.4807493446132867e-06,-1.5881867761018131e-22,6.402576860326295e-23,6.747638690285385e-05,-7.938398084661458e-06,-3.5513885450200178e-06,-1.5881867761018131e-22,4.178104120455828e-07,2.3789209735372352e-23,2.6057952709379606e-05,-1.5425914740607035e-21,-4.225613793096272e-06,6.402576860326295e-23,2.3789209735372352e-23,1.1120036447209714e-07,18.0,40.0,0.030666351318359375,-0.0035542361438274384,-0.0016924934461712837,0.0001096491250791587,6.418485281756148e-05,2.4196669983211905e-05,-0.0035542361438274384,0.0008978603291325271,6.418485281756148e-05,-4.111842281417921e-05,-7.551158887508791e-06,3.077533870056636e-20,-0.0016924934461712837,6.418485281756148e-05,0.00018740174709819257,6.776263578034403e-20,-3.291530902060913e-06,-3.8205271266633645e-06,0.0001096491250791587,-4.111842281417921e-05,6.776263578034403e-20,2.4187306735257152e-06,-1.3234889800848443e-21,-1.3666170786241081e-21,6.418485281756148e-05,-7.551158887508791e-06,-3.291530902060913e-06,-1.3234889800848443e-21,3.872389413572819e-07,-2.6132614139918183e-22,2.4196669983211905e-05,3.077533870056636e-20,-3.8205271266633645e-06,-1.3666170786241081e-21,-2.6132614139918183e-22,9.7962228551296e-08,18.0,41.0,0.02995719574391842,-0.0034690385218709707,-0.0016135062323883176,0.00010697475227061659,6.112843402661383e-05,2.2508531401399523e-05,-0.0034690385218709707,0.0008761367062106729,6.112843402661383e-05,-4.0115533920470625e-05,-7.191580152721144e-06,-4.5893718756198044e-20,-0.0016135062323883176,6.112843402661383e-05,0.00017417228082194924,-7.707999820014133e-20,-3.0564215194317512e-06,-3.4628508274181513e-06,0.00010697475227061659,-4.0115533920470625e-05,-7.707999820014133e-20,2.359737209189916e-06,-3.705769144237564e-22,1.980431541268554e-21,6.112843402661383e-05,-7.191580152721144e-06,-3.0564215194317512e-06,-3.705769144237564e-22,3.59579019004741e-07,4.611145183812954e-22,2.2508531401399523e-05,-4.5893718756198044e-20,-3.4628508274181513e-06,1.980431541268554e-21,4.611145183812954e-22,8.657126926436831e-08,18.0,42.0,0.02928009442985058,-0.003387829987332225,-0.001539922785013914,0.00010442773782415316,5.828524808748625e-05,2.0973857317585498e-05,-0.003387829987332225,0.0008554395753890276,5.828524808748625e-05,-3.916040077456273e-05,-6.8570880102925e-06,-3.2121953598782524e-21,-0.001539922785013914,5.828524808748625e-05,0.00016215968935284764,-4.1504614415460717e-20,-2.843182755896123e-06,-3.1460788250115e-06,0.00010442773782415316,-3.916040077456273e-05,-4.1504614415460717e-20,2.303552946614218e-06,3.3881317890172014e-21,2.3878582311679737e-22,5.828524808748625e-05,-6.8570880102925e-06,-2.843182755896123e-06,3.3881317890172014e-21,3.3449208558522514e-07,-2.7681735009380514e-23,2.0973857317585498e-05,-3.2121953598782524e-21,-3.1460788250115e-06,2.3878582311679737e-22,-2.7681735009380514e-23,7.673362745208578e-08,18.0,43.0,0.02863292209804058,-0.003310337197035551,-0.0014712609117850661,0.00010199918324360624,5.563591912505217e-05,1.9575600163079798e-05,-0.003310337197035551,0.000835697865113616,5.563591912505217e-05,-3.824969462584704e-05,-6.545402357005514e-06,-3.345407264143984e-20,-0.0014712609117850661,5.563591912505217e-05,0.00015122717013582587,-7.369186641112413e-20,-2.649329417181434e-06,-2.864722091544536e-06,0.00010199918324360624,-3.824969462584704e-05,-7.369186641112413e-20,2.249981889690389e-06,1.0058516248644817e-21,1.5028924592131268e-21,5.563591912505217e-05,-6.545402357005514e-06,-2.649329417181434e-06,1.0058516248644817e-21,3.1168582381724264e-07,2.430030608943344e-22,1.9575600163079798e-05,-3.345407264143984e-20,-2.864722091544536e-06,1.5028924592131268e-21,2.430030608943344e-22,6.820766884629847e-08,18.0,44.0,0.028013737872242928,-0.0032363105565309525,-0.0014070915058255196,9.968101949198171e-05,5.316321039572358e-05,1.8298931536264718e-05,-0.0032363105565309525,0.0008168468484655023,5.316321039572358e-05,-3.738038139999844e-05,-6.254495474422583e-06,5.5842934880680055e-21,-0.0014070915058255196,5.316321039572358e-05,0.00014125597954262048,2.541098841762901e-21,-2.4727075924602104e-06,-2.614133109091199e-06,9.968101949198171e-05,-3.738038139999844e-05,2.541098841762901e-21,2.198846004830557e-06,5.293955920339377e-22,-2.3310756445569308e-22,5.316321039572358e-05,-6.254495474422583e-06,-2.4727075924602104e-06,5.293955920339377e-22,2.909067688960931e-07,-3.780176966064034e-23,1.8298931536264718e-05,5.5842934880680055e-21,-2.614133109091199e-06,-2.3310756445569308e-22,-3.780176966064034e-23,6.079379488710401e-08,18.0,45.0,0.027420762926340103,-0.003165522590279579,-0.0013470308622345328,9.746589057613164e-05,5.0851765990955755e-05,1.7130914784502238e-05,-0.003165522590279579,0.0007988276774995029,5.0851765990955755e-05,-3.654970714705996e-05,-5.982560651318636e-06,9.935528062490106e-21,-0.0013470308622345328,5.0851765990955755e-05,0.00013214269711170346,2.0328790734103208e-20,-2.3114439500204753e-06,-2.390360123172286e-06,9.746589057613164e-05,-3.654970714705996e-05,2.0328790734103208e-20,2.14998271985678e-06,1.852884572118782e-22,-5.019584796358226e-22,5.0851765990955755e-05,-5.982560651318636e-06,-2.3114439500204753e-06,1.852884572118782e-22,2.719345957302721e-07,-4.459122094828257e-23,1.7130914784502238e-05,9.935528062490106e-21,-2.390360123172286e-06,-5.019584796358226e-22,-4.459122094828257e-23,5.4326367404655684e-08,18.0,46.0,0.02685237117111683,-0.0030977651476860046,-0.0012907355558127165,9.53470662352629e-05,4.868786345468834e-05,1.6060232155723497e-05,-0.0030977651476860046,0.0007815863937139511,4.868786345468834e-05,-3.575514710973948e-05,-5.7279839893453754e-06,1.8270973780811547e-20,-0.0012907355558127165,4.868786345468834e-05,0.0001237969845533371,6.776263578034403e-20,-2.1639050373778446e-06,-2.1900316369283246e-06,9.53470662352629e-05,-3.575514710973948e-05,6.776263578034403e-20,2.1032440145063447e-06,-2.9381455357883543e-21,-8.409270376301449e-22,4.868786345468834e-05,-5.7279839893453754e-06,-2.1639050373778446e-06,-2.9381455357883543e-21,2.5457705987719237e-07,-1.3368776535860001e-22,1.6060232155723497e-05,1.8270973780811547e-20,-2.1900316369283246e-06,-8.409270376301449e-22,-1.3368776535860001e-22,4.8667370577959446e-08,18.0,47.0,0.026307061314582825,-0.0030328480061143637,-0.001237897202372551,9.331840556114912e-05,4.665920278057456e-05,1.5076952877279837e-05,-0.0030328480061143637,0.0007650736952200532,4.665920278057456e-05,-3.499440208543092e-05,-5.48931757293758e-06,8.415231488928729e-21,-0.001237897202372551,4.665920278057456e-05,0.0001161396867246367,1.5246593050577406e-20,-2.0286609014874557e-06,-2.0102604594285367e-06,9.331840556114912e-05,-3.499440208543092e-05,1.5246593050577406e-20,2.0584941466950113e-06,1.0587911840678754e-22,-3.1294460471093284e-22,4.665920278057456e-05,-5.48931757293758e-06,-2.0286609014874557e-06,1.0587911840678754e-22,2.3866599008215417e-07,-1.009303919999444e-22,1.5076952877279837e-05,8.415231488928729e-21,-2.0102604594285367e-06,-3.1294460471093284e-22,-1.009303919999444e-22,4.370131279074485e-08,18.0,48.0,0.02578345686197281,-0.0029705960769206285,-0.0011882385006174445,9.137426968663931e-05,4.475474270293489e-05,1.4172335795592517e-05,-0.0029705960769206285,0.0007492442964576185,4.475474270293489e-05,-3.426535113248974e-05,-5.26526400790317e-06,-3.3261760419163363e-21,-0.0011882385006174445,4.475474270293489e-05,0.00010910124547081068,6.776263578034403e-21,-1.9044572354687261e-06,-1.8485654891264858e-06,9.137426968663931e-05,-3.426535113248974e-05,6.776263578034403e-21,2.015608970395988e-06,-1.6675961149069038e-21,1.58667506617192e-22,4.475474270293489e-05,-5.26526400790317e-06,-1.9044572354687261e-06,-1.6675961149069038e-21,2.2405379240808543e-07,1.3848743491967984e-23,1.4172335795592517e-05,-3.3261760419163363e-21,-1.8485654891264858e-06,1.58667506617192e-22,1.3848743491967984e-23,3.9331180090584894e-08,18.0,49.0,0.025280287489295006,-0.0029108484741300344,-0.001141509274020791,8.950948540586978e-05,4.296455517760478e-05,1.3338668395590503e-05,-0.0029108484741300344,0.0007340567535720766,4.296455517760478e-05,-3.356605884619057e-05,-5.054653229308315e-06,-1.4833886470463132e-20,-0.001141509274020791,4.296455517760478e-05,0.00010262036812491715,-3.5575383784680614e-20,-1.7901897990668658e-06,-1.702808731351979e-06,8.950948540586978e-05,-3.356605884619057e-05,-3.5575383784680614e-20,1.974473889276851e-06,3.1763735522036263e-22,6.486483892737947e-22,4.296455517760478e-05,-5.054653229308315e-06,-1.7901897990668658e-06,3.1763735522036263e-22,2.106105654320345e-07,1.2417424168115393e-22,1.3338668395590503e-05,-1.4833886470463132e-20,-1.702808731351979e-06,6.486483892737947e-22,1.2417424168115393e-22,3.547518190316623e-08,18.0,50.0,0.0247963797301054,-0.0028534571174532175,-0.0010974835604429245,8.771930151851848e-05,4.127966894884594e-05,1.25691303765052e-05,-0.0028534571174532175,0.0007194727659225464,4.127966894884594e-05,-3.2894735340960324e-05,-4.85643158754101e-06,-1.279831695979874e-20,-0.0010974835604429245,4.127966894884594e-05,9.664290701039135e-05,-3.9810548520952116e-20,-1.684884523456276e-06,-1.57114129706315e-06,8.771930151851848e-05,-3.2894735340960324e-05,-3.9810548520952116e-20,1.934984538820572e-06,1.1911400820763599e-21,6.06590364775245e-22,4.127966894884594e-05,-4.85643158754101e-06,-1.684884523456276e-06,1.1911400820763599e-21,1.9822169861072325e-07,6.568690772126666e-23,1.25691303765052e-05,-1.279831695979874e-20,-1.57114129706315e-06,6.06590364775245e-22,6.568690772126666e-23,3.206410781331215e-08,18.0,51.0,0.02433064952492714,-0.002798285335302353,-0.001055956701748073,8.59993087942712e-05,3.969198951381259e-05,1.185766996059101e-05,-0.002798285335302353,0.0007054570014588535,3.969198951381259e-05,-3.2249743526335806e-05,-4.669645932153799e-06,1.5506458625476902e-20,-0.001055956701748073,3.969198951381259e-05,9.112090629059821e-05,4.912791094074942e-20,-1.5876796624070266e-06,-1.451959633413935e-06,8.59993087942712e-05,-3.2249743526335806e-05,4.912791094074942e-20,1.8970436030940618e-06,-1.2440796412797536e-21,-7.225469098780796e-22,3.969198951381259e-05,-4.669645932153799e-06,-1.5876796624070266e-06,-1.2440796412797536e-21,1.867858401283229e-07,-9.51213465116417e-23,1.185766996059101e-05,1.5506458625476902e-20,-1.451959633413935e-06,-7.225469098780796e-22,-9.51213465116417e-23,2.9039192384061607e-08,18.0,52.0,0.02388208918273449,-0.0027452067006379366,-0.0010167432483285666,8.43454763526097e-05,3.819417906925082e-05,1.1198910215171054e-05,-0.0027452067006379366,0.0006919769803062081,3.819417906925082e-05,-3.162955545121804e-05,-4.4934326979273465e-06,-1.7685675642770657e-20,-0.0010167432483285666,3.819417906925082e-05,8.601179433753714e-05,-4.2351647362715017e-20,-1.4978108993091155e-06,-1.343869257652841e-06,8.43454763526097e-05,-3.162955545121804e-05,-4.2351647362715017e-20,1.8605620653033839e-06,3.1763735522036263e-22,7.337167259121277e-22,3.819417906925082e-05,-4.4934326979273465e-06,-1.4978108993091155e-06,3.1763735522036263e-22,1.762130494853409e-07,1.6485221397944818e-22,1.1198910215171054e-05,-1.7685675642770657e-20,-1.343869257652841e-06,7.337167259121277e-22,1.6485221397944818e-22,2.635037787968031e-08,18.0,53.0,0.023449769243597984,-0.0026941043324768543,-0.000979674281552434,8.275405707536265e-05,3.6779580113943666e-05,1.0588060831651092e-05,-0.0026941043324768543,0.0006790024344809353,3.6779580113943666e-05,-3.103277049376629e-05,-4.327009264670778e-06,-2.605778468771509e-21,-0.000979674281552434,3.6779580113943666e-05,8.127767796395347e-05,-1.4399560103323106e-20,-1.4145991826808313e-06,-1.2456541753635975e-06,8.275405707536265e-05,-3.103277049376629e-05,-1.4399560103323106e-20,1.8254570477438392e-06,9.529120656610879e-22,8.062609679796527e-23,3.6779580113943666e-05,-4.327009264670778e-06,-1.4145991826808313e-06,9.529120656610879e-22,1.664234332565684e-07,4.4477258946470725e-23,1.0588060831651092e-05,-2.605778468771509e-21,-1.2456541753635975e-06,8.062609679796527e-23,4.4477258946470725e-23,2.3954889627475495e-08,18.0,54.0,0.023032819852232933,-0.0026448697317391634,-0.0009445963660255075,8.12215730547905e-05,3.544213905115612e-05,1.0020843546953984e-05,-0.0026448697317391634,0.0006665055407211185,3.544213905115612e-05,-3.0458089895546436e-05,-4.169663498032605e-06,-2.0201186815506966e-20,-0.0009445963660255075,3.544213905115612e-05,7.688476762268692e-05,-5.675120746603812e-20,-1.3374392437981442e-06,-1.1562511872398318e-06,8.12215730547905e-05,-3.0458089895546436e-05,-5.675120746603812e-20,1.7916523802341544e-06,6.617444900424221e-22,9.255354368062979e-22,3.544213905115612e-05,-4.169663498032605e-06,-1.3374392437981442e-06,6.617444900424221e-22,1.5734579505988222e-07,1.293195459146909e-22,1.0020843546953984e-05,-2.0201186815506966e-20,-1.1562511872398318e-06,9.255354368062979e-22,1.293195459146909e-22,2.1816060069568266e-08,18.0,55.0,0.022630440071225166,-0.002597402548417449,-0.0009113693377003074,7.974481559358537e-05,3.417635161895305e-05,9.493430297879968e-06,-0.002597402548417449,0.0006544603384099901,3.417635161895305e-05,-2.9904305847594514e-05,-4.020746928290464e-06,-6.593265619481601e-21,-0.0009113693377003074,3.417635161895305e-05,7.280286808963865e-05,-1.9058241313221758e-20,-1.2657907291213633e-06,-1.074727947525389e-06,7.974481559358537e-05,-2.9904305847594514e-05,-1.9058241313221758e-20,1.759076781127078e-06,-2.6469779601696886e-23,3.087514492791104e-22,3.417635161895305e-05,-4.020746928290464e-06,-1.2657907291213633e-06,-2.6469779601696886e-23,1.4891655553128658e-07,3.0197497633108085e-23,9.493430297879968e-06,-6.593265619481601e-21,-1.074727947525389e-06,3.087514492791104e-22,3.0197497633108085e-23,1.9902369530200303e-08,18.0,56.0,0.022241875529289246,-0.0025516091845929623,-0.0008798652561381459,7.832080154912546e-05,3.2977179216686636e-05,9.002391379908659e-06,-0.0025516091845929623,0.0006428428459912539,3.2977179216686636e-05,-2.937030149041675e-05,-3.879668383888202e-06,1.8766884310011643e-21,-0.0008798652561381459,3.2977179216686636e-05,6.900492735439911e-05,2.117582368135751e-21,-1.1991701285296585e-06,-1.0002656836149981e-06,7.832080154912546e-05,-2.937030149041675e-05,2.117582368135751e-21,1.7276647668040823e-06,9.26442286059391e-23,-3.623661282669668e-23,3.2977179216686636e-05,-3.879668383888202e-06,-1.1991701285296585e-06,9.26442286059391e-23,1.4107884283021122e-07,-2.999973967050004e-23,9.002391379908659e-06,1.8766884310011643e-21,-1.0002656836149981e-06,-3.623661282669668e-23,-2.999973967050004e-23,1.818664863151298e-08,18.0,57.0,0.02186642959713936,-0.0025074027944356203,-0.0008499670657329261,7.694675150560215e-05,3.184003435308114e-05,8.544642696506344e-06,-0.0025074027944356203,0.0006316305953077972,3.184003435308114e-05,-2.885503272409551e-05,-3.7458864881045884e-06,-9.13335593097617e-21,-0.0008499670657329261,3.184003435308114e-05,6.546668009832501e-05,-2.329340604949326e-20,-1.137144181484473e-06,-9.3214282514964e-07,7.694675150560215e-05,-2.885503272409551e-05,-2.329340604949326e-20,1.69735483268596e-06,-2.117582368135751e-22,4.304310350989168e-22,3.184003435308114e-05,-3.7458864881045884e-06,-1.137144181484473e-06,-2.117582368135751e-22,1.33781668409938e-07,4.0388217376919335e-23,8.544642696506344e-06,-9.13335593097617e-21,-9.3214282514964e-07,4.304310350989168e-22,4.0388217376919335e-23,1.664540683066207e-08,18.0,58.0,0.021503446623682976,-0.002464702120050788,-0.0008215673733502626,7.56200824980624e-05,3.076071152463555e-05,8.117410288832616e-06,-0.002464702120050788,0.000620802806224674,3.076071152463555e-05,-2.8357531846268103e-05,-3.618907385316561e-06,4.991872226353782e-21,-0.0008215673733502626,3.076071152463555e-05,6.216629117261618e-05,1.2705494208814505e-20,-1.0793232831929345e-06,-8.697224984643981e-07,7.56200824980624e-05,-2.8357531846268103e-05,1.2705494208814505e-20,1.6680901353538502e-06,-1.3234889800848443e-22,-1.8664212990346297e-22,3.076071152463555e-05,-3.618907385316561e-06,-1.0793232831929345e-06,-1.3234889800848443e-22,1.2697920226401038e-07,-4.2169588363209594e-23,8.117410288832616e-06,4.991872226353782e-21,-8.697224984643981e-07,-1.8664212990346297e-22,-4.2169588363209594e-23,1.525829063098172e-08,18.0,59.0,0.0211523175239563,-0.0024234314914792776,-0.0007945676916278899,7.433838618453592e-05,2.9735354473814368e-05,7.7181930464576e-06,-0.0024234314914792776,0.0006103400373831391,2.9735354473814368e-05,-2.787689481920097e-05,-3.4982770102942595e-06,7.8632346406852e-21,-0.0007945676916278899,2.9735354473814368e-05,5.90841009397991e-05,3.2610768469290563e-20,-1.0253570508211851e-06,-8.124413852783618e-07,7.433838618453592e-05,-2.787689481920097e-05,3.2610768469290563e-20,1.6398173556808615e-06,-1.2308447514789052e-21,-3.611512761620392e-22,2.9735354473814368e-05,-3.4982770102942595e-06,-1.0253570508211851e-06,-1.2308447514789052e-21,1.2063024712460901e-07,-4.39055178059155e-23,7.7181930464576e-06,7.8632346406852e-21,-8.124413852783618e-07,-3.611512761620392e-22,-4.39055178059155e-23,1.4007610182886765e-08,18.0,60.0,0.020812472328543663,-0.0023835203610360622,-0.0007688775076530874,7.309941429411992e-05,2.8760425266227685e-05,7.344732239289442e-06,-0.0023835203610360622,0.0006002240697853267,2.8760425266227685e-05,-2.7412281269789673e-05,-3.3835794965852983e-06,7.857914512253292e-21,-0.0007688775076530874,2.8760425266227685e-05,5.620237425318919e-05,3.5151867311053464e-20,-9.749296623340342e-07,-7.597998887831636e-07,7.309941429411992e-05,-2.7412281269789673e-05,3.5151867311053464e-20,1.6124871535794227e-06,-1.164670302474663e-21,-3.7432651545667843e-22,2.8760425266227685e-05,-3.3835794965852983e-06,-9.749296623340342e-07,-1.164670302474663e-21,1.146976131849442e-07,-3.4694654814253754e-23,7.344732239289442e-06,7.857914512253292e-21,-7.597998887831636e-07,-3.7432651545667843e-22,-3.4694654814253754e-23,1.2877964472579606e-08,18.0,61.0,0.02048337273299694,-0.0023449023719877005,-0.0007444134680554271,7.190106407506391e-05,2.783266972983256e-05,6.994983323238557e-06,-0.0023449023719877005,0.0005904380232095718,2.783266972983256e-05,-2.696289993764367e-05,-3.2744317195465555e-06,-6.151805627351872e-21,-0.0007444134680554271,2.783266972983256e-05,5.350507126422599e-05,-1.0164395367051604e-20,-9.277556500819628e-07,-7.113542324077571e-07,7.190106407506391e-05,-2.696289993764367e-05,-1.0164395367051604e-20,1.586052917446068e-06,-8.337980574534519e-22,2.669022899047143e-22,2.783266972983256e-05,-3.2744317195465555e-06,-9.277556500819628e-07,-8.337980574534519e-22,1.0914772730075128e-07,4.4090458356535516e-23,6.994983323238557e-06,-6.151805627351872e-21,-7.113542324077571e-07,2.669022899047143e-22,4.4090458356535516e-23,1.1855903814250723e-08,18.0,62.0,0.02016451768577099,-0.0023075160570442677,-0.0007210987969301641,7.074137101881206e-05,2.6949093808070756e-05,6.667093202850083e-06,-0.0023075160570442677,0.0005809659487567842,2.6949093808070756e-05,-2.6528014132054523e-05,-3.1704814773547696e-06,-4.279753729476588e-21,-0.0007210987969301641,2.6949093808070756e-05,5.097766552353278e-05,-3.8116482626443515e-21,-8.835768312565051e-07,-6.667093543910596e-07,7.074137101881206e-05,-2.6528014132054523e-05,-3.8116482626443515e-21,1.5604713325956254e-06,-1.0323214044661785e-21,2.0365775865488433e-22,2.6949093808070756e-05,-3.1704814773547696e-06,-8.835768312565051e-07,-1.0323214044661785e-21,1.0395021377007652e-07,1.332846290370395e-23,6.667093202850083e-06,-4.279753729476588e-21,-6.667093543910596e-07,2.0365775865488433e-22,1.332846290370395e-23,1.092966162019593e-08,18.0,63.0,0.01985543966293335,-0.0022713032085448503,-0.0006988625391386449,6.961849430808797e-05,2.610693445603829e-05,6.359381586662494e-06,-0.0022713032085448503,0.0005717930616810918,2.610693445603829e-05,-2.610693445603829e-05,-3.0714040804014076e-06,-8.062999566410324e-21,-0.0006988625391386449,2.610693445603829e-05,4.860699118580669e-05,-4.2351647362715017e-20,-8.421591815022111e-07,-6.255129392229719e-07,6.961849430808797e-05,-2.610693445603829e-05,-4.2351647362715017e-20,1.5357020402007038e-06,1.9322939109238726e-21,3.614057058920783e-22,2.610693445603829e-05,-3.0714040804014076e-06,-8.421591815022111e-07,1.9322939109238726e-21,9.907754616733655e-08,5.231149023876215e-23,6.359381586662494e-06,-8.062999566410324e-21,-6.255129392229719e-07,3.614057058920783e-22,5.231149023876215e-23,1.0088918145356729e-08,18.0,64.0,0.01955569162964821,-0.002236209576949477,-0.0006776392692700028,6.853070226497948e-05,2.530364326958079e-05,6.070318704587407e-06,-0.002236209576949477,0.0005629052757285535,2.530364326958079e-05,-2.5699013349367306e-05,-2.976899168061209e-06,-1.5847637508618781e-22,-0.0006776392692700028,2.530364326958079e-05,4.6381082938751206e-05,5.082197683525802e-21,-8.032902769627981e-07,-5.874501880498428e-07,6.853070226497948e-05,-2.5699013349367306e-05,5.082197683525802e-21,1.5117066141101532e-06,-8.602678370551488e-22,2.9084014154501385e-23,2.530364326958079e-05,-2.976899168061209e-06,-8.032902769627981e-07,-8.602678370551488e-22,9.450474180994206e-08,-8.640322497404272e-24,6.070318704587407e-06,-1.5847637508618781e-22,-5.874501880498428e-07,2.9084014154501385e-23,-8.640322497404272e-24,9.324605976246403e-09,19.0,3.0,0.23496240377426147,-0.0357142873108387,-0.15000000596046448,0.0012531328247860074,0.007894736714661121,0.02631578966975212,-0.0357142873108387,0.009423067793250084,0.007894736714661121,-0.0004422821803018451,-0.0008771930006332695,1.8648277366750676e-17,-0.15000000596046448,0.007894736714661121,0.4131578803062439,5.561492496821051e-19,-0.007894736714661121,-0.15789473056793213,0.0012531328247860074,-0.0004422821803018451,5.561492496821051e-19,2.457123264321126e-05,1.7256829347188795e-20,-3.4164223999422806e-19,0.007894736714661121,-0.0008771930006332695,-0.007894736714661121,1.7256829347188795e-20,0.0008771930006332695,-1.0842021724855044e-17,0.02631578966975212,1.8648277366750676e-17,-0.15789473056793213,-3.4164223999422806e-19,-1.0842021724855044e-17,0.07894736528396606,19.0,4.0,0.19740600883960724,-0.027969924733042717,-0.09789473563432693,0.000939849647693336,0.00473684212192893,0.01315789483487606,-0.027969924733042717,0.0071988794952631,0.00473684212192893,-0.0003317116352263838,-0.0005263157654553652,-2.3852447794681098e-18,-0.09789473563432693,0.00473684212192893,0.15736842155456543,-5.850531504079071e-20,-0.0031578948255628347,-0.03947368264198303,0.000939849647693336,-0.0003317116352263838,-5.850531504079071e-20,1.8428423572913744e-05,1.2788839117877758e-20,-7.921046002890847e-21,0.00473684212192893,-0.0005263157654553652,-0.0031578948255628347,1.2788839117877758e-20,0.0003508772060740739,1.951563910473908e-18,0.01315789483487606,-2.3852447794681098e-18,-0.03947368264198303,-7.921046002890847e-21,1.951563910473908e-18,0.01315789483487606,19.0,5.0,0.17022556066513062,-0.02300751954317093,-0.06902255862951279,0.0007518797065131366,0.0031578948255628347,0.007518797181546688,-0.02300751954317093,0.005829279311001301,0.0031578948255628347,-0.00026536930818110704,-0.0003508772060740739,9.75781955236954e-19,-0.06902255862951279,0.0031578948255628347,0.07962405681610107,-1.9124499772756962e-19,-0.0015789474127814174,-0.015037594363093376,0.0007518797065131366,-0.00026536930818110704,-1.9124499772756962e-19,1.4742739040229935e-05,3.065158351441983e-21,4.249791615946912e-20,0.0031578948255628347,-0.0003508772060740739,-0.0015789474127814174,3.065158351441983e-21,0.00017543860303703696,-7.047314121155779e-19,0.007518797181546688,9.75781955236954e-19,-0.015037594363093376,4.249791615946912e-20,-7.047314121155779e-19,0.003759398590773344,19.0,6.0,0.1496240645647049,-0.019548872485756874,-0.051315788179636,0.0006265664123930037,0.002255639061331749,0.004699247889220715,-0.019548872485756874,0.004899503663182259,0.002255639061331749,-0.00022114109015092254,-0.0002506265591364354,3.7947076036992655e-18,-0.051315788179636,0.002255639061331749,0.0463721789419651,6.620896311530099e-19,-0.000902255647815764,-0.007048872299492359,0.0006265664123930037,-0.00022114109015092254,6.620896311530099e-19,1.228561632160563e-05,-1.2915084327694396e-20,-1.0525909483889076e-19,0.002255639061331749,-0.0002506265591364354,-0.000902255647815764,-1.2915084327694396e-20,0.00010025062510976568,-7.453889935837843e-19,0.004699247889220715,3.7947076036992655e-18,-0.007048872299492359,-1.0525909483889076e-19,-7.453889935837843e-19,0.001409774413332343,19.0,7.0,0.13346759974956512,-0.01699785143136978,-0.039661653339862823,0.0005370569415390491,0.0016917292959988117,0.0031328320037573576,-0.01699785143136978,0.004226427525281906,0.0016917292959988117,-0.00018954950792249292,-0.00018796992662828416,1.2468324983583301e-18,-0.039661653339862823,0.0016917292959988117,0.029511278495192528,5.219710256508149e-19,-0.0005639097653329372,-0.003759398590773344,0.0005370569415390491,-0.00018954950792249292,5.219710256508149e-19,1.053052801580634e-05,-2.356390218773377e-20,-4.6721784710500445e-20,0.0016917292959988117,-0.00018796992662828416,-0.0005639097653329372,-2.356390218773377e-20,6.265663978410885e-05,-8.131516293641283e-20,0.0031328320037573576,1.2468324983583301e-18,-0.003759398590773344,-4.6721784710500445e-20,-8.131516293641283e-20,0.0006265664123930037,19.0,8.0,0.12045739591121674,-0.015037594363093376,-0.031578946858644485,0.000469924823846668,0.0013157895300537348,0.0021929824724793434,-0.015037594363093376,0.0037163987290114164,0.0013157895300537348,-0.0001658558176131919,-0.00014619882858823985,-1.6263032587282567e-19,-0.031578946858644485,0.0013157895300537348,0.019987469539046288,-8.075290630207552e-20,-0.0003759398532565683,-0.0021929824724793434,0.000469924823846668,-0.0001658558176131919,-8.075290630207552e-20,9.214211786456872e-06,1.1153586249597818e-20,-5.4481685590308305e-21,0.0013157895300537348,-0.00014619882858823985,-0.0003759398532565683,1.1153586249597818e-20,4.17710944020655e-05,2.0328790734103208e-20,0.0021929824724793434,-1.6263032587282567e-19,-0.0021929824724793434,-5.4481685590308305e-21,2.0328790734103208e-20,0.00031328320619650185,19.0,9.0,0.10975620895624161,-0.013483709655702114,-0.02574162743985653,0.0004177109512966126,0.0010526315309107304,0.0015948963118717074,-0.013483709655702114,0.003316461108624935,0.0010526315309107304,-0.00014742738858330995,-0.00011695906141540036,5.421010862427522e-20,-0.02574162743985653,0.0010526315309107304,0.014182046055793762,5.448864230850685e-20,-0.0002631578827276826,-0.0013670539483428001,0.0004177109512966126,-0.00014742738858330995,5.448864230850685e-20,8.19041088107042e-06,1.054329740197631e-21,-7.788404683611128e-21,0.0010526315309107304,-0.00011695906141540036,-0.0002631578827276826,1.054329740197631e-21,2.923976535385009e-05,3.7269449679189215e-20,0.0015948963118717074,5.421010862427522e-20,-0.0013670539483428001,-7.788404683611128e-21,3.7269449679189215e-20,0.00017088174354285002,19.0,10.0,0.10079972445964813,-0.012221463024616241,-0.021387560293078423,0.0003759398532565683,0.0008612440433353186,0.0011961722047999501,-0.012221463024616241,0.0029943843837827444,0.0008612440433353186,-0.00013268465409055352,-9.569378016749397e-05,4.87890977618477e-19,-0.021387560293078423,0.0008612440433353186,0.010434608906507492,3.0194651448205596e-19,-0.00019138756033498794,-0.000897129182703793,0.0003759398532565683,-0.00013268465409055352,3.0194651448205596e-19,7.371369520114968e-06,-6.7556733239097246e-21,-2.42060269876222e-20,0.0008612440433353186,-9.569378016749397e-05,-0.00019138756033498794,-6.7556733239097246e-21,2.1265284885885194e-05,-3.3881317890172014e-21,0.0011961722047999501,4.87890977618477e-19,-0.000897129182703793,-2.42060269876222e-20,-3.3881317890172014e-21,9.968101949198171e-05,19.0,11.0,0.0931936502456665,-0.011175666004419327,-0.018052998930215836,0.00034176348708570004,0.0007177033694460988,0.0009201325010508299,-0.011175666004419327,0.0027294170577079058,0.0007177033694460988,-0.00012062241148669273,-7.974481559358537e-05,-6.776263578034403e-19,-0.018052998930215836,0.0007177033694460988,0.007904551923274994,-3.2740198970700384e-19,-0.00014354067388921976,-0.0006134216673672199,0.00034176348708570004,-0.00012062241148669273,-3.2740198970700384e-19,6.701245183649007e-06,4.2710848928129035e-21,2.8720315097429197e-20,0.0007177033694460988,-7.974481559358537e-05,-0.00014354067388921976,4.2710848928129035e-21,1.5948962754919194e-05,8.470329472543003e-21,0.0009201325010508299,-6.776263578034403e-19,-0.0006134216673672199,2.8720315097429197e-20,8.470329472543003e-21,6.134216528153047e-05,19.0,12.0,0.08665413409471512,-0.010294968262314796,-0.015442452393472195,0.00031328320619650185,0.0006072874530218542,0.0007229612674564123,-0.010294968262314796,0.0025075888261198997,0.0006072874530218542,-0.00011057054507546127,-6.747638690285385e-05,-0.0,-0.015442452393472195,0.0006072874530218542,0.006133340299129486,6.776263578034403e-21,-0.00011041590187232941,-0.0004337767604738474,0.00031328320619650185,-0.00011057054507546127,6.776263578034403e-21,6.142808160802815e-06,-8.470329472543003e-22,-0.0,0.0006072874530218542,-6.747638690285385e-05,-0.00011041590187232941,-8.470329472543003e-22,1.2268433238205034e-05,-0.0,0.0007229612674564123,-0.0,-0.0004337767604738474,-0.0,-0.0,3.943424962926656e-05,19.0,13.0,0.08097165822982788,-0.009543088264763355,-0.013360324315726757,0.0002891845069825649,0.0005205320776440203,0.0005783690139651299,-0.009543088264763355,0.002319146180525422,0.0005205320776440203,-0.00010206511797150597,-5.783689994132146e-05,-0.0,-0.013360324315726757,0.0005205320776440203,0.004855670500546694,-6.776263578034403e-21,-8.6755353549961e-05,-0.0003154739970341325,0.0002891845069825649,-0.00010206511797150597,-6.776263578034403e-21,5.670284281222848e-06,8.470329472543003e-22,-0.0,0.0005205320776440203,-5.783689994132146e-05,-8.6755353549961e-05,8.470329472543003e-22,9.639483323553577e-06,-0.0,0.0005783690139651299,-0.0,-0.0003154739970341325,-0.0,-0.0,2.6289499146514572e-05,19.0,14.0,0.07598818838596344,-0.008893663063645363,-0.011672932654619217,0.0002685284707695246,0.000451127823907882,0.000469924823846668,-0.008893663063645363,0.0021570734679698944,0.000451127823907882,-9.477475396124646e-05,-5.012531255488284e-05,-0.0,-0.011672932654619217,0.000451127823907882,0.003910497296601534,-3.3881317890172014e-21,-6.94042828399688e-05,-0.000234962411923334,0.0002685284707695246,-9.477475396124646e-05,-3.3881317890172014e-21,5.26526400790317e-06,4.235164736271502e-22,-0.0,0.000451127823907882,-5.012531255488284e-05,-6.94042828399688e-05,4.235164736271502e-22,7.711586476943921e-06,-0.0,0.000469924823846668,-0.0,-0.000234962411923334,-0.0,-0.0,1.8074031686410308e-05,19.0,15.0,0.07158226519823074,-0.008327067829668522,-0.010286377742886543,0.0002506265591364354,0.00039473685319535434,0.0003869968932121992,-0.008327067829668522,0.0020161925349384546,0.00039473685319535434,-8.845643606036901e-05,-4.385965075925924e-05,-0.0,-0.010286377742886543,0.00039473685319535434,0.0031960841733962297,0.0,-5.639097798848525e-05,-0.00017861396190710366,0.0002506265591364354,-8.845643606036901e-05,0.0,4.914246346743312e-06,0.0,-0.0,0.00039473685319535434,-4.385965075925924e-05,-5.639097798848525e-05,0.0,6.265664069360355e-06,-0.0,0.0003869968932121992,-0.0,-0.00017861396190710366,-0.0,-0.0,1.2758139746438246e-05,19.0,16.0,0.06765903532505035,-0.007828394882380962,-0.009133126586675644,0.000234962411923334,0.0003482972097117454,0.00032249742071144283,-0.007828394882380962,0.0018925991607829928,0.0003482972097117454,-8.292790880659595e-05,-3.8699690776411444e-05,1.6940658945086007e-20,-0.009133126586675644,0.0003482972097117454,0.002645953092724085,-2.2949984731409537e-21,-4.643962893169373e-05,-0.00013821317406836897,0.000234962411923334,-8.292790880659595e-05,-2.2949984731409537e-21,4.607105893228436e-06,4.0279957261730424e-23,1.4001705199212148e-23,0.0003482972097117454,-3.8699690776411444e-05,-4.643962893169373e-05,4.0279957261730424e-23,5.159958618605742e-06,-2.541098841762901e-21,0.00032249742071144283,1.6940658945086007e-20,-0.00013821317406836897,1.4001705199212148e-23,-2.541098841762901e-21,9.214211786456872e-06,19.0,17.0,0.06414332985877991,-0.007386112120002508,-0.00816359743475914,0.00022114109015092254,0.00030959752621129155,0.0002715767768677324,-0.007386112120002508,0.001783293322660029,0.00030959752621129155,-7.804979395586997e-05,-3.439972351770848e-05,2.0328790734103208e-20,-0.00816359743475914,0.00030959752621129155,0.0022153875324875116,-3.843084760992418e-21,-3.8699690776411444e-05,-0.00010863070929190144,0.00022114109015092254,-7.804979395586997e-05,-3.843084760992418e-21,4.3360996642149985e-06,2.7889148629468464e-22,-2.3313993615179972e-23,0.00030959752621129155,-3.439972351770848e-05,-3.8699690776411444e-05,2.7889148629468464e-22,4.29996543971356e-06,-2.541098841762901e-21,0.0002715767768677324,2.0328790734103208e-20,-0.00010863070929190144,-2.3313993615179972e-23,-2.541098841762901e-21,6.78941933074384e-06,19.0,18.0,0.06097480654716492,-0.006991161964833736,-0.007340720389038324,0.0002088554756483063,0.0002770083083305508,0.00023084026179276407,-0.006991161964833736,0.001685931347310543,0.0002770083083305508,-7.371369429165497e-05,-3.077870132983662e-05,1.5246593050577406e-20,-0.007340720389038324,0.0002770083083305508,0.0018735402263700962,-3.2500742138711073e-21,-3.2589214242761955e-05,-8.656509453430772e-05,0.0002088554756483063,-7.371369429165497e-05,-3.2500742138711073e-21,4.09520544053521e-06,6.918079917621694e-22,-6.159172881387265e-23,0.0002770083083305508,-3.077870132983662e-05,-3.2589214242761955e-05,6.918079917621694e-22,3.621023552113911e-06,-1.6940658945086007e-21,0.00023084026179276407,1.5246593050577406e-20,-8.656509453430772e-05,-6.159172881387265e-23,-1.6940658945086007e-21,5.092064384371042e-06,19.0,19.0,0.05810447037220001,-0.006636327598243952,-0.006636327598243952,0.00019786307530011982,0.00024930748622864485,0.00019786307530011982,-0.006636327598243952,0.0015986560611054301,0.00024930748622864485,-6.983403000049293e-05,-2.770083119685296e-05,6.776263578034403e-21,-0.006636327598243952,0.00024930748622864485,0.0015986560611054301,2.7732261992122027e-21,-2.770083119685296e-05,-6.983403000049293e-05,0.00019786307530011982,-6.983403000049293e-05,2.7732261992122027e-21,3.879668383888202e-06,-2.598115284611575e-22,-1.2114273126392372e-22,0.00024930748622864485,-2.770083119685296e-05,-2.770083119685296e-05,-2.598115284611575e-22,3.077870132983662e-06,-8.470329472543003e-22,0.00019786307530011982,6.776263578034403e-21,-6.983403000049293e-05,-1.2114273126392372e-22,-8.470329472543003e-22,3.879668383888202e-06,19.0,20.0,0.05549214035272598,-0.0063157896511256695,-0.006028708070516586,0.00018796992662828416,0.000225563911953941,0.00017088174354285002,-0.0063157896511256695,0.0015199764166027308,0.000225563911953941,-6.634232704527676e-05,-2.506265627744142e-05,3.3881317890172014e-21,-0.006028708070516586,0.000225563911953941,0.0013750884681940079,-0.0,-2.374356881773565e-05,-5.696058360626921e-05,0.00018796992662828416,-6.634232704527676e-05,-0.0,3.685684760057484e-06,1.0587911840678754e-22,-5.293955920339377e-23,0.000225563911953941,-2.506265627744142e-05,-2.374356881773565e-05,1.0587911840678754e-22,2.638174464664189e-06,-3.1763735522036263e-22,0.00017088174354285002,3.3881317890172014e-21,-5.696058360626921e-05,-5.293955920339377e-23,-3.1763735522036263e-22,2.997925548697822e-06,19.0,21.0,0.05310452729463577,-0.006024802103638649,-0.005500906612724066,0.00017901897081173956,0.00020505809516180307,0.0001485928223701194,-0.006024802103638649,0.001448681578040123,0.00020505809516180307,-6.318316445685923e-05,-2.2784233806305565e-05,-5.082197683525802e-21,-0.005500906612724066,0.00020505809516180307,0.0011913860216736794,-0.0,-2.0505809516180307e-05,-4.6924051275709644e-05,0.00017901897081173956,-6.318316445685923e-05,-0.0,3.5101759294775547e-06,1.0587911840678754e-22,-5.293955920339377e-23,0.00020505809516180307,-2.2784233806305565e-05,-2.0505809516180307e-05,1.0587911840678754e-22,2.2784233806305565e-06,6.352747104407253e-22,0.0001485928223701194,-5.082197683525802e-21,-4.6924051275709644e-05,-5.293955920339377e-23,6.352747104407253e-22,2.346202563785482e-06,19.0,22.0,0.050913844257593155,-0.005759458057582378,-0.005039525683969259,0.00017088174354285002,0.00018722696404438466,0.0001300187286688015,-0.005759458057582378,0.001383777940645814,0.00018722696404438466,-6.031120574334636e-05,-2.080299600493163e-05,-8.470329472543003e-22,-0.005039525683969259,0.00018722696404438466,0.0010390353854745626,1.802439075553335e-21,-1.7831138393376023e-05,-3.90056156902574e-05,0.00017088174354285002,-6.031120574334636e-05,1.802439075553335e-21,3.3506225918245036e-06,-1.368112127811683e-22,-1.4724399607146842e-23,0.00018722696404438466,-2.080299600493163e-05,-1.7831138393376023e-05,-1.368112127811683e-22,1.981237574000261e-06,1.0587911840678754e-22,0.0001300187286688015,-8.470329472543003e-22,-3.90056156902574e-05,-1.4724399607146842e-23,1.0587911840678754e-22,1.8574103251012275e-06,19.0,23.0,0.04889669641852379,-0.005516508594155312,-0.004633867181837559,0.0001634521031519398,0.00017162472067866474,0.00011441647802712396,-0.005516508594155312,0.0013244427973404527,0.00017162472067866474,-5.768897972302511e-05,-1.9069411791861057e-05,8.470329472543003e-22,-0.004633867181837559,0.00017162472067866474,0.0009116170112974942,-0.0,-1.560224700369872e-05,-3.2690422813175246e-05,0.0001634521031519398,-5.768897972302511e-05,-0.0,3.204943368473323e-06,-2.117582368135751e-22,5.293955920339377e-23,0.00017162472067866474,-1.9069411791861057e-05,-1.560224700369872e-05,-2.117582368135751e-22,1.7335829625153565e-06,-2.117582368135751e-22,0.00011441647802712396,8.470329472543003e-22,-3.2690422813175246e-05,5.293955920339377e-23,-2.117582368135751e-22,1.4859282373436145e-06,19.0,24.0,0.04703325778245926,-0.0052932328544557095,-0.004275303799659014,0.00015664160309825093,0.00015789474127814174,0.00010121457307832316,-0.0052932328544557095,0.0012699887156486511,0.00015789474127814174,-5.5285272537730634e-05,-1.7543859939905815e-05,4.235164736271502e-21,-0.004275303799659014,0.00015789474127814174,0.0008042278350330889,-0.0,-1.3729976672038902e-05,-2.7603975468082353e-05,0.00015664160309825093,-5.5285272537730634e-05,-0.0,3.0714040804014076e-06,-1.0587911840678754e-22,5.293955920339377e-23,0.00015789474127814174,-1.7543859939905815e-05,-1.3729976672038902e-05,-1.0587911840678754e-22,1.5255529888236197e-06,-4.764560328305439e-22,0.00010121457307832316,4.235164736271502e-21,-2.7603975468082353e-05,5.293955920339377e-23,-4.764560328305439e-22,1.2001728464383632e-06,19.0,25.0,0.045306600630283356,-0.005087333731353283,-0.003956815227866173,0.00015037594130262733,0.00014574898523278534,8.996851101983339e-05,-0.005087333731353283,0.0012198368785902858,0.00014574898523278534,-5.307386163622141e-05,-1.6194331692531705e-05,-5.929230630780102e-21,-0.003956815227866173,0.00014574898523278534,0.000713078654371202,-0.0,-1.2145748769398779e-05,-2.3470045562135056e-05,0.00015037594130262733,-5.307386163622141e-05,-0.0,2.9485479444701923e-06,0.0,0.0,0.00014574898523278534,-1.6194331692531705e-05,-1.2145748769398779e-05,0.0,1.3495276789399213e-06,3.705769144237564e-22,8.996851101983339e-05,-5.929230630780102e-21,-2.3470045562135056e-05,0.0,3.705769144237564e-22,9.779186029845732e-07,19.0,26.0,0.043702203780412674,-0.004896857310086489,-0.0036726430989801884,0.00014459225349128246,0.0001349527738057077,8.032903133425862e-05,-0.004896857310086489,0.0011734968284144998,0.0001349527738057077,-5.1032558985752985e-05,-1.4994751836638898e-05,3.3881317890172014e-21,-0.0036726430989801884,0.0001349527738057077,0.0006352098425850272,-0.0,-1.079622143151937e-05,-2.0082257833564654e-05,0.00014459225349128246,-5.1032558985752985e-05,-0.0,2.835142140611424e-06,0.0,0.0,0.0001349527738057077,-1.4994751836638898e-05,-1.079622143151937e-05,0.0,1.1995801969533204e-06,-2.117582368135751e-22,8.032903133425862e-05,3.3881317890172014e-21,-2.0082257833564654e-05,0.0,-2.117582368135751e-22,8.032902769627981e-07,19.0,27.0,0.04220753163099289,-0.004720133729279041,-0.003418027888983488,0.00013923698861617595,0.0001253132795682177,7.201913103926927e-05,-0.004720133729279041,0.0011305497027933598,0.0001253132795682177,-4.914246528642252e-05,-1.3923698134021834e-05,8.470329472543003e-22,-0.003418027888983488,0.0001253132795682177,0.0005682863411493599,-0.0,-9.639483323553577e-06,-1.7284590285271406e-05,0.00013923698861617595,-4.914246528642252e-05,-0.0,2.7301368845655816e-06,0.0,0.0,0.0001253132795682177,-1.3923698134021834e-05,-9.639483323553577e-06,0.0,1.0710537026170641e-06,-5.293955920339377e-23,7.201913103926927e-05,8.470329472543003e-22,-1.7284590285271406e-05,0.0,-5.293955920339377e-23,6.647919690294657e-07,19.0,28.0,0.0408116951584816,-0.00455572409555316,-0.0031890070531517267,0.0001342642353847623,0.00011667098442558199,6.481721356976777e-05,-0.00455572409555316,0.0010906358947977424,0.00011667098442558199,-4.738737698062323e-05,-1.2963442713953555e-05,-1.6940658945086007e-21,-0.0031890070531517267,0.00011667098442558199,0.0005104494048282504,-0.0,-8.642295142635703e-06,-1.4957819075789303e-05,0.0001342642353847623,-4.738737698062323e-05,-0.0,2.632632003951585e-06,0.0,0.0,0.00011667098442558199,-1.2963442713953555e-05,-8.642295142635703e-06,0.0,9.602550790077657e-07,1.0587911840678754e-22,6.481721356976777e-05,-1.6940658945086007e-21,-1.4957819075789303e-05,0.0,1.0587911840678754e-22,5.539932885767485e-07,19.0,29.0,0.039505213499069214,-0.004402385093271732,-0.0029822608921676874,0.00012963442713953555,0.00010889292025240138,5.8544581406749785e-05,-0.004402385093271732,0.0010534449247643352,0.00010889292025240138,-4.575332786771469e-05,-1.2099213563487865e-05,-4.658681209898652e-21,-0.0029822608921676874,0.00010889292025240138,0.0004602068802341819,-0.0,-7.778065992170013e-06,-1.300990697927773e-05,0.00012963442713953555,-4.575332786771469e-05,-0.0,2.541851699788822e-06,0.0,0.0,0.00010889292025240138,-1.2099213563487865e-05,-7.778065992170013e-06,0.0,8.642295483696216e-07,3.441071348220595e-22,5.8544581406749785e-05,-4.658681209898652e-21,-1.300990697927773e-05,0.0,3.441071348220595e-22,4.6463952685371623e-07,19.0,30.0,0.03827977180480957,-0.004259034525603056,-0.0027949914801865816,0.0001253132795682177,0.00010186757572228089,5.3056028264109045e-05,-0.004259034525603056,0.0010187074076384306,0.00010186757572228089,-4.422821803018451e-05,-1.1318618817313109e-05,-1.6940658945086007e-21,-0.0027949914801865816,0.00010186757572228089,0.00041635127854533494,-0.0,-7.025349987088703e-06,-1.1369148523954209e-05,0.0001253132795682177,-4.422821803018451e-05,-0.0,2.457123173371656e-06,0.0,0.0,0.00010186757572228089,-1.1318618817313109e-05,-7.025349987088703e-06,0.0,7.805944051142433e-07,1.0587911840678754e-22,5.3056028264109045e-05,-1.6940658945086007e-21,-1.1369148523954209e-05,0.0,1.0587911840678754e-22,3.9203959545375255e-07,19.0,31.0,0.037128057330846786,-0.004124727100133896,-0.0026248262729495764,0.0001212709175888449,9.550085087539628e-05,4.823275230592117e-05,-0.004124727100133896,0.0009861881844699383,9.550085087539628e-05,-4.280150096747093e-05,-1.0611205652821809e-05,3.8116482626443515e-21,-0.0026248262729495764,9.550085087539628e-05,0.00037789862835779786,-0.0,-6.366723482642556e-06,-9.979190508602187e-06,0.0001212709175888449,-4.280150096747093e-05,-0.0,2.377861164859496e-06,0.0,0.0,9.550085087539628e-05,-1.0611205652821809e-05,-6.366723482642556e-06,0.0,7.074136760820693e-07,-2.9116757561866574e-22,4.823275230592117e-05,3.8116482626443515e-21,-9.979190508602187e-06,0.0,-2.9116757561866574e-22,3.3263967225138913e-07,19.0,32.0,0.03604361042380333,-0.00399863300845027,-0.002469743834808469,0.000117481205961667,8.971292118076235e-05,4.397692100610584e-05,-0.00399863300845027,0.0009556813165545464,8.971292118076235e-05,-4.1463954403297976e-05,-9.968101949198171e-06,-1.6940658945086007e-21,-0.002469743834808469,8.971292118076235e-05,0.00034404138568788767,-0.0,-5.787930149381282e-06,-8.795384019322228e-06,0.000117481205961667,-4.1463954403297976e-05,-0.0,2.303552946614218e-06,0.0,0.0,8.971292118076235e-05,-9.968101949198171e-06,-5.787930149381282e-06,0.0,6.431033625631244e-07,1.0587911840678754e-22,4.397692100610584e-05,-1.6940658945086007e-21,-8.795384019322228e-06,0.0,1.0587911840678754e-22,2.8372207339089073e-07,19.0,33.0,0.03502070531249046,-0.0038800209295004606,-0.002328012604266405,0.00011392116721253842,8.443569095106795e-05,4.020746928290464e-05,-0.0038800209295004606,0.0009270055452361703,8.443569095106795e-05,-4.020746928290464e-05,-9.38174343900755e-06,3.889627806835947e-21,-0.002328012604266405,8.443569095106795e-05,0.00031411275267601013,-5.082197683525802e-21,-5.277230684441747e-06,-7.78209141572006e-06,0.00011392116721253842,-4.020746928290464e-05,-5.082197683525802e-21,2.233748318758444e-06,4.764560328305439e-22,1.4737075024171934e-23,8.443569095106795e-05,-9.38174343900755e-06,-5.277230684441747e-06,4.764560328305439e-22,5.863589649379719e-07,-1.6897971094040729e-22,4.020746928290464e-05,3.889627806835947e-21,-7.78209141572006e-06,1.4737075024171934e-23,-1.6897971094040729e-22,2.431903567412519e-07,19.0,34.0,0.03405425325036049,-0.003768244059756398,-0.0021981424652040005,0.00011057054507546127,7.961079245433211e-05,3.685684714582749e-05,-0.003768244059756398,0.000900000857654959,7.961079245433211e-05,-3.9024896977934986e-05,-8.845643606036901e-06,1.9635715162773206e-20,-0.0021981424652040005,7.961079245433211e-05,0.00028755879611708224,1.9481757786848908e-20,-4.8248966777464375e-06,-6.910659067216329e-06,0.00011057054507546127,-3.9024896977934986e-05,1.9481757786848908e-20,2.1680498321074992e-06,2.6469779601696886e-22,-6.891737264532595e-22,7.961079245433211e-05,-8.845643606036901e-06,-4.8248966777464375e-06,2.6469779601696886e-22,5.360996055969736e-07,-3.558434413384777e-22,3.685684714582749e-05,1.9635715162773206e-20,-6.910659067216329e-06,-6.891737264532595e-22,-3.558434413384777e-22,2.0941391198903148e-07,19.0,35.0,0.033139701932668686,-0.003662728238850832,-0.002078845864161849,0.00010741138248704374,7.518797065131366e-05,3.386845492059365e-05,-0.003662728238850832,0.0008745252271182835,7.518797065131366e-05,-3.790990012930706e-05,-8.35421906231204e-06,-1.1257815853540901e-20,-0.002078845864161849,7.518797065131366e-05,0.0002639167651068419,-1.6940658945086007e-20,-4.422821803018451e-06,-6.157900770631386e-06,0.00010741138248704374,-3.790990012930706e-05,-1.6940658945086007e-20,2.1061055122117978e-06,3.1763735522036263e-22,4.433091325786647e-22,7.518797065131366e-05,-8.35421906231204e-06,-4.422821803018451e-06,3.1763735522036263e-22,4.914246574116987e-07,1.347225867831817e-22,3.386845492059365e-05,-1.1257815853540901e-20,-6.157900770631386e-06,4.433091325786647e-22,1.347225867831817e-22,1.8111472854798194e-07,19.0,36.0,0.032272983342409134,-0.003562961472198367,-0.0019690049812197685,0.00010442773782415316,7.112375897122547e-05,3.119462780887261e-05,-0.003562961472198367,0.0008504524012096226,7.112375897122547e-05,-3.685684714582749e-05,-7.902639481471851e-06,5.0650194686485485e-20,-0.0019690049812197685,7.112375897122547e-05,0.0002427980216452852,1.0249098661777034e-19,-4.0642144085722975e-06,-5.504934506461723e-06,0.00010442773782415316,-3.685684714582749e-05,1.0249098661777034e-19,2.047602720267605e-06,-2.8322664173815668e-21,-2.0122380090702818e-21,7.112375897122547e-05,-7.902639481471851e-06,-4.0642144085722975e-06,-2.8322664173815668e-21,4.5157941030993243e-07,-6.3542359689253305e-22,3.119462780887261e-05,5.0650194686485485e-20,-5.504934506461723e-06,-2.0122380090702818e-21,-6.3542359689253305e-22,1.5728384994417866e-07,19.0,37.0,0.03145043924450874,-0.0034684862475842237,-0.001867646467871964,0.00010160536476178095,6.738040247000754e-05,2.8795042453566566e-05,-0.0034684862475842237,0.0008276695152744651,6.738040247000754e-05,-3.586071761674248e-05,-7.4867111834464595e-06,-2.324844910631843e-20,-0.001867646467871964,6.738040247000754e-05,0.0002238745946669951,-3.3881317890172014e-20,-3.7433555917232297e-06,-4.936292953061638e-06,0.00010160536476178095,-3.586071761674248e-05,-3.3881317890172014e-20,1.9922620140278013e-06,-6.088049308390284e-22,1.1301199618744103e-21,6.738040247000754e-05,-7.4867111834464595e-06,-3.7433555917232297e-06,-6.088049308390284e-22,4.159283832905203e-07,9.256598622591566e-23,2.8795042453566566e-05,-2.324844910631843e-20,-4.936292953061638e-06,1.1301199618744103e-21,9.256598622591566e-23,1.3711924395920505e-07,19.0,38.0,0.030668776482343674,-0.0033788925502449274,-0.0017739186296239495,9.893153765005991e-05,6.392499199137092e-05,2.6635414542397484e-05,-0.0033788925502449274,0.0008060756954364479,6.392499199137092e-05,-3.4917015000246465e-05,-7.1027770900400355e-06,-1.5384476950106607e-20,-0.0017739186296239495,6.392499199137092e-05,0.00020686838252004236,-1.6940658945086007e-20,-3.455405021668412e-06,-4.439235908648698e-06,9.893153765005991e-05,-3.4917015000246465e-05,-1.6940658945086007e-20,1.939834191944101e-06,-1.61465655570351e-21,8.364709958793793e-22,6.392499199137092e-05,-7.1027770900400355e-06,-3.455405021668412e-06,-1.61465655570351e-21,3.839338944544579e-07,4.166518754496766e-23,2.6635414542397484e-05,-1.5384476950106607e-20,-4.439235908648698e-06,8.364709958793793e-22,4.166518754496766e-23,1.1997934734608862e-07,19.0,39.0,0.029925024136900902,-0.0032938113436102867,-0.001687074196524918,9.639483323553577e-05,6.072874384699389e-05,2.4686481992830522e-05,-0.0032938113436102867,0.000785580079536885,6.072874384699389e-05,-3.402170477784239e-05,-6.747638508386444e-06,-2.5654704583538115e-20,-0.001687074196524918,6.072874384699389e-05,0.00019154252368025482,-5.082197683525802e-20,-3.196249735992751e-06,-4.003213234682335e-06,9.639483323553577e-05,-3.402170477784239e-05,-5.082197683525802e-20,1.8900947225120035e-06,1.2705494208814505e-21,9.931183748687069e-22,6.072874384699389e-05,-6.747638508386444e-06,-3.196249735992751e-06,1.2705494208814505e-21,3.5513886587068555e-07,2.844983309557611e-22,2.4686481992830522e-05,-2.5654704583538115e-20,-4.003213234682335e-06,9.931183748687069e-22,2.844983309557611e-22,1.0534771632819684e-07,19.0,40.0,0.02921648696064949,-0.0032129103783518076,-0.0016064551891759038,9.398496331414208e-05,5.776636680820957e-05,2.2923160940990783e-05,-0.0032129103783518076,0.0007661010604351759,5.776636680820957e-05,-3.317116352263838e-05,-6.418485099857207e-06,2.1879145306290658e-20,-0.0016064551891759038,5.776636680820957e-05,0.00017769441183190793,5.590417451878382e-20,-2.9623777209053515e-06,-3.619446488301037e-06,9.398496331414208e-05,-3.317116352263838e-05,5.590417451878382e-20,1.842842380028742e-06,-2.5940384009662948e-21,-8.1639212556967615e-22,5.776636680820957e-05,-6.418485099857207e-06,-2.9623777209053515e-06,-2.5940384009662948e-21,3.291530958904332e-07,-3.2322574684714414e-22,2.2923160940990783e-05,2.1879145306290658e-20,-3.619446488301037e-06,-8.1639212556967615e-22,-3.2322574684714414e-22,9.280632440322734e-08,19.0,41.0,0.028540723025798798,-0.0031358886044472456,-0.0015314804622903466,9.169264376396313e-05,5.5015589168760926e-05,2.13238708965946e-05,-0.0031358886044472456,0.0007475647726096213,5.5015589168760926e-05,-3.236210977775045e-05,-6.1128430388635024e-06,3.123251108536676e-20,-0.0015314804622903466,5.5015589168760926e-05,0.00016515010793227702,6.522153693858113e-20,-2.7507794584380463e-06,-3.280595592514146e-06,9.169264376396313e-05,-3.236210977775045e-05,6.522153693858113e-20,1.797895038180286e-06,-1.5352472168984194e-21,-1.2653568228589237e-21,5.5015589168760926e-05,-6.1128430388635024e-06,-2.7507794584380463e-06,-1.5352472168984194e-21,3.0564214625883324e-07,-3.72013903448707e-22,2.13238708965946e-05,3.123251108536676e-20,-3.280595592514146e-06,-1.2653568228589237e-21,-3.72013903448707e-22,8.20148926550246e-08,19.0,42.0,0.027895508334040642,-0.003062473377212882,-0.001461635110899806,8.950948540586978e-05,5.2456722187343985e-05,1.986997085623443e-05,-0.003062473377212882,0.0007299043936654925,5.2456722187343985e-05,-3.1591582228429615e-05,-5.8285249906475656e-06,2.056503480951806e-20,-0.001461635110899806,5.2456722187343985e-05,0.00015375965449493378,5.082197683525802e-20,-2.558864480306511e-06,-2.9804955374856945e-06,8.950948540586978e-05,-3.1591582228429615e-05,5.082197683525802e-20,1.7550879647387774e-06,-1.3234889800848443e-21,-9.201997583482257e-22,5.2456722187343985e-05,-5.8285249906475656e-06,-2.558864480306511e-06,-1.3234889800848443e-21,2.843182755896123e-07,-1.4774979790667803e-22,1.986997085623443e-05,2.056503480951806e-20,-2.9804955374856945e-06,-9.201997583482257e-22,-1.4774979790667803e-22,7.26950162288631e-08,19.0,43.0,0.027278820052742958,-0.0029924176633358,-0.0013964615063741803,8.742787031223997e-05,5.007232539355755e-05,1.854530637501739e-05,-0.0029924176633358,0.0007130592130124569,5.007232539355755e-05,-3.085689604631625e-05,-5.563591912505217e-06,9.904403776355664e-21,-0.0013964615063741803,5.007232539355755e-05,0.00014339333574753255,2.286988957586611e-20,-2.384396566412761e-06,-2.713947196752997e-06,8.742787031223997e-05,-3.085689604631625e-05,2.286988957586611e-20,1.714272002573125e-06,-6.352747104407253e-22,-3.5818571451648545e-22,5.007232539355755e-05,-5.563591912505217e-06,-2.384396566412761e-06,-6.352747104407253e-22,2.649329360338015e-07,-9.77605406234874e-23,1.854530637501739e-05,9.904403776355664e-21,-2.713947196752997e-06,-3.5818571451648545e-22,-9.77605406234874e-23,6.461779378241772e-08,19.0,44.0,0.02668880671262741,-0.0029254956170916557,-0.001335552311502397,8.544087177142501e-05,4.7846890083746985e-05,1.733582939777989e-05,-0.0029254956170916557,0.0006969741662032902,4.7846890083746985e-05,-3.015560287167318e-05,-5.3163212214712985e-06,-2.66751998901842e-20,-0.001335552311502397,4.7846890083746985e-05,0.00013393857807386667,-4.489274620447792e-20,-2.2254366740526166e-06,-2.476547024343745e-06,8.544087177142501e-05,-3.015560287167318e-05,-4.489274620447792e-20,1.6753112959122518e-06,-6.88214269644119e-22,1.167655604575509e-21,4.7846890083746985e-05,-5.3163212214712985e-06,-2.2254366740526166e-06,-6.88214269644119e-22,2.4727074787733727e-07,1.9898760112178007e-22,1.733582939777989e-05,-2.66751998901842e-20,-2.476547024343745e-06,1.167655604575509e-21,1.9898760112178007e-22,5.75941179192796e-08,19.0,45.0,0.0261237733066082,-0.0028615016490221024,-0.0012785432627424598,8.3542188804131e-05,4.5766591938445345e-05,1.6229287211899646e-05,-0.0028615016490221024,0.0006815988454036415,4.5766591938445345e-05,-2.948547808045987e-05,-5.085176780994516e-06,2.3397685736637493e-20,-0.0012785432627424598,4.5766591938445345e-05,0.00012529730156529695,5.929230630780102e-20,-2.0802995095436927e-06,-2.264551767439116e-06,8.3542188804131e-05,-2.948547808045987e-05,5.929230630780102e-20,1.6380821534767165e-06,-1.4823076576950256e-21,-9.754294123139123e-22,4.5766591938445345e-05,-5.085176780994516e-06,-2.0802995095436927e-06,-1.4823076576950256e-21,2.3114439784421847e-07,-2.1472882192537326e-22,1.6229287211899646e-05,2.3397685736637493e-20,-2.264551767439116e-06,-9.754294123139123e-22,-2.1472882192537326e-22,5.14670830398245e-08,19.0,46.0,0.025582168251276016,-0.0028002476319670677,-0.0012251082807779312,8.17260515759699e-05,4.3819076381623745e-05,1.5214956874842755e-05,-0.0028002476319670677,0.0006668873247690499,4.3819076381623745e-05,-2.8844489861512557e-05,-4.868786163569894e-06,1.4992464425590363e-20,-0.0012251082807779312,4.3819076381623745e-05,0.00011738385364878923,4.0657581468206416e-20,-1.9475144199532224e-06,-2.0747668258991325e-06,8.17260515759699e-05,-2.8844489861512557e-05,4.0657581468206416e-20,1.6024716842366615e-06,-9.793818452627848e-22,-6.338647067696205e-22,4.3819076381623745e-05,-4.868786163569894e-06,-1.9475144199532224e-06,-9.793818452627848e-22,2.1639050373778446e-07,-1.288226897621465e-22,1.5214956874842755e-05,1.4992464425590363e-20,-2.0747668258991325e-06,-6.338647067696205e-22,-1.288226897621465e-22,4.610593151710418e-08,19.0,47.0,0.02506256103515625,-0.002741561271250248,-0.0011749548139050603,7.998719956958666e-05,4.199328031972982e-05,1.4283428754424676e-05,-0.002741561271250248,0.000652797520160675,4.199328031972982e-05,-2.8230777388671413e-05,-4.665920187107986e-06,-1.2614501918052971e-20,-0.0011749548139050603,4.199328031972982e-05,0.00011012316826963797,-3.3034284942917713e-20,-1.8257948113387101e-06,-1.9044572354687261e-06,7.998719956958666e-05,-2.8230777388671413e-05,-3.3034284942917713e-20,1.568376546856598e-06,4.235164736271502e-22,5.841029569714956e-22,4.199328031972982e-05,-4.665920187107986e-06,-1.8257948113387101e-06,4.235164736271502e-22,2.0286609014874557e-07,7.052484650258057e-23,1.4283428754424676e-05,-1.2614501918052971e-20,-1.9044572354687261e-06,5.841029569714956e-22,7.052484650258057e-23,4.140124332252526e-08,19.0,48.0,0.024563640356063843,-0.0026852847076952457,-0.0011278195306658745,7.832080154912546e-05,4.02792684326414e-05,1.3426422810880467e-05,-0.0026852847076952457,0.0006392907816916704,4.02792684326414e-05,-2.7642636268865317e-05,-4.475474270293489e-06,1.828222634519911e-20,-0.0011278195306658745,4.02792684326414e-05,0.00010344928887207061,4.743384504624082e-20,-1.7140114323410671e-06,-1.75127263446484e-06,7.832080154912546e-05,-2.7642636268865317e-05,4.743384504624082e-20,1.5357020402007038e-06,-1.0852609636695723e-21,-7.521045308765267e-22,4.02792684326414e-05,-4.475474270293489e-06,-1.7140114323410671e-06,-1.0852609636695723e-21,1.9044571786253073e-07,-1.3198881140424362e-22,1.3426422810880467e-05,1.828222634519911e-20,-1.75127263446484e-06,-7.521045308765267e-22,-1.3198881140424362e-22,3.7261120411358206e-08,19.0,49.0,0.024084195494651794,-0.00263127195648849,-0.0010834649438038468,7.672241918044165e-05,3.866809856845066e-05,1.2636633982765488e-05,-0.00263127195648849,0.0006263317191042006,3.866809856845066e-05,-2.7078500352217816e-05,-4.2964552449120674e-06,-9.47418261612286e-21,-0.0010834649438038468,3.866809856845066e-05,9.730409510666505e-05,-3.006966962752766e-20,-1.6111707736854441e-06,-1.6131872371261124e-06,7.672241918044165e-05,-2.7078500352217816e-05,-3.006966962752766e-20,1.5043611938381218e-06,6.352747104407253e-22,4.557447611321177e-22,3.866809856845066e-05,-4.2964552449120674e-06,-1.6111707736854441e-06,6.352747104407253e-22,1.7901898274885752e-07,2.847643032985654e-23,1.2636633982765488e-05,-9.47418261612286e-21,-1.6131872371261124e-06,4.557447611321177e-22,2.847643032985654e-23,3.360806744012734e-08,19.0,50.0,0.023623107001185417,-0.0025793896056711674,-0.0010416766162961721,7.518797065131366e-05,3.715170169016346e-05,1.1907596672244836e-05,-0.0025793896056711674,0.0006138876779004931,3.715170169016346e-05,-2.6536930818110704e-05,-4.127966803935124e-06,-1.6587607919890718e-20,-0.0010416766162961721,3.715170169016346e-05,9.16362478164956e-05,-4.319868030996932e-20,-1.5163960824793321e-06,-1.4884495840306045e-06,7.518797065131366e-05,-2.6536930818110704e-05,-4.319868030996932e-20,1.4742739722350962e-06,6.749793798432706e-22,7.37547434467881e-22,3.715170169016346e-05,-4.127966803935124e-06,-1.5163960824793321e-06,6.749793798432706e-22,1.6848844097694382e-07,8.972583453163035e-23,1.1907596672244836e-05,-1.6587607919890718e-20,-1.4884495840306045e-06,7.37547434467881e-22,8.972583453163035e-23,3.0376522630604086e-08,19.0,51.0,0.023179341107606888,-0.0025295137893408537,-0.0010022602509707212,7.371369429165497e-05,3.572279092622921e-05,1.1233581972192042e-05,-0.0025295137893408537,0.000601928448304534,3.572279092622921e-05,-2.601659798528999e-05,-3.969199042330729e-06,-6.767232849852726e-21,-0.0010022602509707212,3.572279092622921e-05,8.640027954243124e-05,-2.668153783851046e-20,-1.4289116734289564e-06,-1.3755407053395174e-06,7.371369429165497e-05,-2.601659798528999e-05,-2.668153783851046e-20,1.4453665926339454e-06,1.2705494208814505e-21,2.6882453567145895e-22,3.572279092622921e-05,-3.969199042330729e-06,-1.4289116734289564e-06,1.2705494208814505e-21,1.5876796055636078e-07,6.107376905439178e-23,1.1233581972192042e-05,-6.767232849852726e-21,-1.3755407053395174e-06,2.6882453567145895e-22,6.107376905439178e-23,2.7510813183084792e-08,19.0,52.0,0.022751938551664352,-0.0024815304204821587,-0.0009650395950302482,7.229612674564123e-05,3.437475970713422e-05,1.0609493983793072e-05,-0.0024815304204821587,0.0005904263816773891,3.437475970713422e-05,-2.5516279492876492e-05,-3.819417997874552e-06,-5.729860716109216e-21,-0.0009650395950302482,3.437475970713422e-05,8.155580871971324e-05,-2.0752307207730358e-20,-1.348029854852939e-06,-1.2731393326248508e-06,7.229612674564123e-05,-2.5516279492876492e-05,-2.0752307207730358e-20,1.417571070305712e-06,8.867376166568457e-22,2.4561932755283076e-22,3.437475970713422e-05,-3.819417997874552e-06,-1.348029854852939e-06,8.867376166568457e-22,1.4978110129959532e-07,2.5180604177722983e-23,1.0609493983793072e-05,-5.729860716109216e-21,-1.2731393326248508e-06,2.4561932755283076e-22,2.5180604177722983e-23,2.4963515699027994e-08,19.0,53.0,0.022340012714266777,-0.0024353335611522198,-0.0009298546356149018,7.093204476404935e-05,3.310162355774082e-05,1.0030794328486081e-05,-0.0024353335611522198,0.0005793556338176131,3.310162355774082e-05,-2.5034840291482396e-05,-3.6779579204448964e-06,-6.754327539827192e-21,-0.0009298546356149018,3.310162355774082e-05,7.706691394560039e-05,-1.9058241313221758e-20,-1.2731393326248508e-06,-1.1800934771599714e-06,7.093204476404935e-05,-2.5034840291482396e-05,-1.9058241313221758e-20,1.3908244227422983e-06,1.3234889800848443e-22,3.1301175255118525e-22,3.310162355774082e-05,-3.6779579204448964e-06,-1.2731393326248508e-06,1.3234889800848443e-22,1.4145992111025407e-07,2.86490330959189e-23,1.0030794328486081e-05,-6.754327539827192e-21,-1.1800934771599714e-06,3.1301175255118525e-22,2.86490330959189e-23,2.2694106149856452e-08,19.0,54.0,0.021942734718322754,-0.002390825655311346,-0.0008965595625340939,6.961849430808797e-05,3.189792550983839e-05,9.493430297879968e-06,-0.002390825655311346,0.0005686924559995532,3.189792550983839e-05,-2.457123264321126e-05,-3.544213996065082e-06,-1.2447929229993672e-20,-0.0008965595625340939,3.189792550983839e-05,7.290155190275982e-05,-2.922263668027336e-20,-1.2036953194183297e-06,-1.0953958735626657e-06,6.961849430808797e-05,-2.457123264321126e-05,-2.922263668027336e-20,1.3650684422827908e-06,3.5734202462290796e-22,5.178785257402985e-22,3.189792550983839e-05,-3.544213996065082e-06,-1.2036953194183297e-06,3.5734202462290796e-22,1.3374392437981442e-07,9.539784541436529e-23,9.493430297879968e-06,-1.2447929229993672e-20,-1.0953958735626657e-06,5.178785257402985e-22,9.539784541436529e-23,2.0667846101218856e-08,19.0,55.0,0.0215593408793211,-0.0023479152005165815,-0.000865021429490298,6.83527032379061e-05,3.075871427427046e-05,8.993776646093465e-06,-0.0023479152005165815,0.0005584147293120623,3.075871427427046e-05,-2.4124481569742784e-05,-3.4176350709458347e-06,1.361622490999679e-20,-0.000865021429490298,3.075871427427046e-05,6.903109897393733e-05,3.218725199566341e-20,-1.1392116903152782e-06,-1.0181634024775121e-06,6.83527032379061e-05,-2.4124481569742784e-05,3.218725199566341e-20,1.340249013992434e-06,2.6469779601696886e-23,-5.8291368289255885e-22,3.075871427427046e-05,-3.4176350709458347e-06,-1.1392116903152782e-06,2.6469779601696886e-23,1.2657906722779444e-07,-9.118499370346127e-23,8.993776646093465e-06,1.361622490999679e-20,-1.0181634024775121e-06,-5.8291368289255885e-22,-9.118499370346127e-23,1.8854876771001727e-08,19.0,56.0,0.021189114078879356,-0.002306518144905567,-0.0008351186406798661,6.713211769238114e-05,2.9679462386411615e-05,8.528581020073034e-06,-0.002306518144905567,0.0005485019646584988,2.9679462386411615e-05,-2.3693688490311615e-05,-3.2977179671433987e-06,-8.397160339042573e-21,-0.0008351186406798661,2.9679462386411615e-05,6.54298928566277e-05,-2.0328790734103208e-20,-1.0792531384140602e-06,-9.476200943936419e-07,6.713211769238114e-05,-2.3693688490311615e-05,-2.0328790734103208e-20,1.3163160019757925e-06,-6.617444900424221e-23,3.9175844819589026e-22,2.9679462386411615e-05,-3.2977179671433987e-06,-1.0792531384140602e-06,-6.617444900424221e-23,1.1991701853730774e-07,3.599587772197219e-23,8.528581020073034e-06,-8.397160339042573e-21,-9.476200943936419e-07,3.9175844819589026e-22,3.599587772197219e-23,1.7229456972245316e-08,19.0,57.0,0.020831385627388954,-0.002266555791720748,-0.0008067401358857751,6.595435843337327e-05,2.8656031645368785e-05,8.094923941825982e-06,-0.002266555791720748,0.0005389349535107613,2.8656031645368785e-05,-2.327800939383451e-05,-3.184003617207054e-06,7.295825898977903e-21,-0.0008067401358857751,2.8656031645368785e-05,6.207492697285488e-05,1.9058241313221758e-20,-1.0234297178612906e-06,-8.830826345729292e-07,6.595435843337327e-05,-2.327800939383451e-05,1.9058241313221758e-20,1.2932226809425629e-06,-2.6469779601696886e-23,-3.304067287347093e-22,2.8656031645368785e-05,-3.184003617207054e-06,-1.0234297178612906e-06,-2.6469779601696886e-23,1.1371441388519088e-07,-2.9493982011501124e-23,8.094923941825982e-06,7.295825898977903e-21,-8.830826345729292e-07,-3.304067287347093e-22,-2.9493982011501124e-23,1.5769332506465616e-08,19.0,58.0,0.020485535264015198,-0.0022279545664787292,-0.0007797840517014265,6.481721356976777e-05,2.7684640372171998e-05,7.690177881158888e-06,-0.0022279545664787292,0.0005296960007399321,2.7684640372171998e-05,-2.2876663933857344e-05,-3.0760711524635553e-06,8.775517921103156e-21,-0.0007797840517014265,2.7684640372171998e-05,5.894550486118533e-05,3.3034284942917713e-20,-9.713909321362735e-07,-8.239476301241666e-07,6.481721356976777e-05,-2.2876663933857344e-05,3.3034284942917713e-20,1.270925849894411e-06,-1.2440796412797536e-21,-3.32737516097937e-22,2.7684640372171998e-05,-3.0760711524635553e-06,-9.713909321362735e-07,-1.2440796412797536e-21,1.0793232263495156e-07,-7.82875659760919e-23,7.690177881158888e-06,8.775517921103156e-21,-8.239476301241666e-07,-3.32737516097937e-22,-7.82875659760919e-23,1.4455221908349358e-08,19.0,59.0,0.020150981843471527,-0.002190646016970277,-0.0007541568484157324,6.371861672960222e-05,2.6761819754028693e-05,7.311972694878932e-06,-0.002190646016970277,0.0005207685171626508,2.6761819754028693e-05,-2.2488924514618702e-05,-2.973535629280377e-06,1.9335375848508334e-22,-0.0007541568484157324,2.6761819754028693e-05,5.602298188023269e-05,-8.470329472543003e-21,-9.228213571077504e-07,-7.69681321344251e-07,6.371861672960222e-05,-2.2488924514618702e-05,-8.470329472543003e-21,1.2493846952565946e-06,8.735027268559972e-22,4.764464473816846e-25,2.6761819754028693e-05,-2.973535629280377e-06,-9.228213571077504e-07,8.735027268559972e-22,1.0253570792428945e-07,5.91680684618428e-25,7.311972694878932e-06,1.9335375848508334e-22,-7.69681321344251e-07,4.764464473816846e-25,5.91680684618428e-25,1.327036791565206e-08,19.0,60.0,0.019827179610729218,-0.002154566813260317,-0.0007297726115211844,6.265663978410885e-05,2.5884382921503857e-05,6.95816743245814e-06,-0.002154566813260317,0.0005121369613334537,2.5884382921503857e-05,-2.2114109015092254e-05,-2.8760425720975036e-06,3.700684891527204e-21,-0.0007297726115211844,2.5884382921503857e-05,5.3290536015992984e-05,3.8116482626443515e-21,-8.774367188379983e-07,-7.198104299277475e-07,6.265663978410885e-05,-2.2114109015092254e-05,3.8116482626443515e-21,1.228561586685828e-06,7.543887186483612e-22,-1.7727161093091535e-22,2.5884382921503857e-05,-2.8760425720975036e-06,-8.774367188379983e-07,7.543887186483612e-22,9.749296481231795e-08,-5.6631598633783634e-24,6.95816743245814e-06,3.700684891527204e-21,-7.198104299277475e-07,-1.7727161093091535e-22,-5.6631598633783634e-24,1.2200176868759627e-08,19.0,61.0,0.01951361820101738,-0.002119656652212143,-0.0007065522368066013,6.162948557175696e-05,2.5049403120647185e-05,6.626826234423788e-06,-0.002119656652212143,0.000503786897752434,2.5049403120647185e-05,-2.175158260797616e-05,-2.783267063932726e-06,1.9075386731680193e-21,-0.0007065522368066013,2.5049403120647185e-05,5.073296051705256e-05,8.470329472543003e-21,-8.349800850737665e-07,-6.739145419487613e-07,6.162948557175696e-05,-2.175158260797616e-05,8.470329472543003e-21,1.2084212812624173e-06,-2.779326858178173e-22,-7.186480563618898e-23,2.5049403120647185e-05,-2.783267063932726e-06,-8.349800850737665e-07,-2.779326858178173e-22,9.277556500819628e-08,-1.697384752243723e-23,6.626826234423788e-06,1.9075386731680193e-21,-6.739145419487613e-07,-7.186480563618898e-23,-1.697384752243723e-23,1.1231908736419882e-08,19.0,62.0,0.01920981891453266,-0.002085859887301922,-0.0006844227318651974,6.063545879442245e-05,2.425418460916262e-05,6.316193776001455e-06,-0.002085859887301922,0.0004957047640345991,2.425418460916262e-05,-2.1400750483735465e-05,-2.6949094262818107e-06,-3.805074842493326e-21,-0.0006844227318651974,2.425418460916262e-05,4.833648563362658e-05,-2.244637310223896e-20,-7.952191367621708e-07,-6.316193434940942e-07,6.063545879442245e-05,-2.1400750483735465e-05,-2.244637310223896e-20,1.188930582429748e-06,1.283784310682299e-21,1.5450012484886492e-22,2.425418460916262e-05,-2.6949094262818107e-06,-7.952191367621708e-07,1.283784310682299e-21,8.835768028347957e-08,2.788798742621598e-23,6.316193776001455e-06,-3.805074842493326e-21,-6.316193434940942e-07,1.5450012484886492e-22,2.788798742621598e-23,1.0354415991287169e-08,19.0,63.0,0.018915334716439247,-0.0020531238988041878,-0.0006633169250562787,5.967299148323946e-05,2.349624082853552e-05,6.024677077220986e-06,-0.0020531238988041878,0.00048787790001370013,2.349624082853552e-05,-2.106105603161268e-05,-2.610693400129094e-06,-1.82584671169113e-21,-0.0006633169250562787,2.349624082853552e-05,4.608861854649149e-05,-7.199780051661553e-21,-7.579432690363319e-07,-5.925911636950332e-07,5.967299148323946e-05,-2.106105603161268e-05,-7.199780051661553e-21,1.1700586810547975e-06,-1.3234889800848443e-23,9.318873195715885e-23,2.349624082853552e-05,-2.610693400129094e-06,-7.579432690363319e-07,-1.3234889800848443e-23,8.421591957130659e-08,1.9238171776678277e-24,6.024677077220986e-06,-1.82584671169113e-21,-5.925911636950332e-07,9.318873195715885e-23,1.9238171776678277e-24,9.557922453495848e-09,19.0,64.0,0.01862974278628826,-0.0020213995594531298,-0.0006431725923903286,5.87406029808335e-05,2.2773279852117412e-05,5.750828222517157e-06,-0.0020213995594531298,0.0004802943440154195,2.2773279852117412e-05,-2.0731977201648988e-05,-2.530364326958079e-06,-3.0961682969213783e-23,-0.0006431725923903286,2.2773279852117412e-05,4.397802331368439e-05,2.117582368135751e-21,-7.22961260635202e-07,-5.565317451328156e-07,5.87406029808335e-05,-2.0731977201648988e-05,2.117582368135751e-21,1.151776473307109e-06,-3.044024654195142e-22,1.1662432848087864e-23,2.2773279852117412e-05,-2.530364326958079e-06,-7.22961260635202e-07,-3.044024654195142e-22,8.032903053845075e-08,2.400201502253226e-25,5.750828222517157e-06,-3.0961682969213783e-23,-5.565317451328156e-07,1.1662432848087864e-23,2.400201502253226e-25,8.83383766137058e-09,20.0,3.0,0.22478355467319489,-0.03246753290295601,-0.1428571492433548,0.0010822510812431574,0.0071428571827709675,0.02500000037252903,-0.03246753290295601,0.008107389323413372,0.0071428571827709675,-0.0003607503604143858,-0.0007518797065131366,-5.204170427930421e-18,-0.1428571492433548,0.0071428571827709675,0.3928571343421936,1.2051455423165897e-19,-0.0071428571827709675,-0.15000000596046448,0.0010822510812431574,-0.0003607503604143858,1.2051455423165897e-19,1.8986860595759936e-05,-3.440578594144758e-20,1.07744934138326e-19,0.0071428571827709675,-0.0007518797065131366,-0.0071428571827709675,-3.440578594144758e-20,0.0007518797065131366,3.469446951953614e-18,0.02500000037252903,-5.204170427930421e-18,-0.15000000596046448,1.07744934138326e-19,3.469446951953614e-18,0.07500000298023224,20.0,4.0,0.1887662410736084,-0.025422077625989914,-0.09321428835391998,0.000811688310932368,0.004285714123398066,0.012500000186264515,-0.025422077625989914,0.006193323992192745,0.004285714123398066,-0.00027056277031078935,-0.000451127823907882,-1.0842021724855044e-17,-0.09321428835391998,0.004285714123398066,0.14964285492897034,-9.34118522143883e-19,-0.0028571428265422583,-0.03750000149011612,0.000811688310932368,-0.00027056277031078935,-9.34118522143883e-19,1.4240145901567303e-05,4.223452052668207e-20,1.587362309675645e-19,0.004285714123398066,-0.000451127823907882,-0.0028571428265422583,4.223452052668207e-20,0.00030075188260525465,4.336808689942018e-18,0.012500000186264515,-1.0842021724855044e-17,-0.03750000149011612,1.587362309675645e-19,4.336808689942018e-18,0.012500000186264515,20.0,5.0,0.1627272665500641,-0.02090909145772457,-0.0657142847776413,0.0006493506371043622,0.0028571428265422583,0.0071428571827709675,-0.02090909145772457,0.005014809779822826,0.0028571428265422583,-0.00021645022206939757,-0.00030075188260525465,1.5178830414797062e-18,-0.0657142847776413,0.0028571428265422583,0.07571428269147873,-2.850785569579951e-20,-0.0014285714132711291,-0.014285714365541935,0.0006493506371043622,-0.00021645022206939757,-2.850785569579951e-20,1.1392116903152782e-05,2.1965537212688432e-20,-4.3249526068247186e-20,0.0028571428265422583,-0.00030075188260525465,-0.0014285714132711291,2.1965537212688432e-20,0.00015037594130262733,-1.0842021724855044e-19,0.0071428571827709675,1.5178830414797062e-18,-0.014285714365541935,-4.3249526068247186e-20,-1.0842021724855044e-19,0.0035714285913854837,20.0,6.0,0.14300401508808136,-0.0177643783390522,-0.048852041363716125,0.0005411255406215787,0.0020408162381500006,0.004464285913854837,-0.0177643783390522,0.004214812070131302,0.0020408162381500006,-0.0001803751802071929,-0.00021482276497408748,0.0,-0.048852041363716125,0.0020408162381500006,0.04409438744187355,-8.028784338971319e-20,-0.0008163265301845968,-0.0066964286379516125,0.0005411255406215787,-0.0001803751802071929,-8.028784338971319e-20,9.493430297879968e-06,7.75662608468746e-21,1.8965746930322487e-21,0.0020408162381500006,-0.00021482276497408748,-0.0008163265301845968,7.75662608468746e-21,8.592911035520956e-05,-2.710505431213761e-20,0.004464285913854837,0.0,-0.0066964286379516125,1.8965746930322487e-21,-2.710505431213761e-20,0.0013392857508733869,20.0,7.0,0.12754328548908234,-0.015445268712937832,-0.037755101919174194,0.00046382189611904323,0.0015306122368201613,0.0029761905316263437,-0.015445268712937832,0.00363571266643703,0.0015306122368201613,-0.00015460730355698615,-0.0001611170737305656,5.421010862427522e-19,-0.037755101919174194,0.0015306122368201613,0.02806122414767742,7.195578232643725e-20,-0.0005102040595375001,-0.0035714285913854837,0.00046382189611904323,-0.00015460730355698615,7.195578232643725e-20,8.137226359394845e-06,-5.702230944945384e-21,-1.7619272184290185e-21,0.0015306122368201613,-0.0001611170737305656,-0.0005102040595375001,-5.702230944945384e-21,5.370569124352187e-05,-1.8973538018496328e-19,0.0029761905316263437,5.421010862427522e-19,-0.0035714285913854837,-1.7619272184290185e-21,-1.8973538018496328e-19,0.0005952381179668009,20.0,8.0,0.11509740352630615,-0.013663419522345066,-0.03005952388048172,0.000405844155466184,0.0011904762359336019,0.0020833334419876337,-0.013663419522345066,0.003196912817656994,0.0011904762359336019,-0.00013528138515539467,-0.0001253132795682177,-9.215718466126788e-19,-0.03005952388048172,0.0011904762359336019,0.019005101174116135,-1.467533048732092e-19,-0.0003401360590942204,-0.0020833334419876337,0.000405844155466184,-0.00013528138515539467,-1.467533048732092e-19,7.120072950783651e-06,5.001574230989591e-21,1.565827373286166e-20,0.0011904762359336019,-0.0001253132795682177,-0.0003401360590942204,5.001574230989591e-21,3.580379416234791e-05,2.0328790734103208e-19,0.0020833334419876337,-9.215718466126788e-19,-0.0020833334419876337,1.565827373286166e-20,2.0328790734103208e-19,0.00029761905898340046,20.0,9.0,0.10486291348934174,-0.012251081876456738,-0.024502163752913475,0.0003607503604143858,0.0009523809421807528,0.0015151514671742916,-0.012251081876456738,0.00285283918492496,0.0009523809421807528,-0.0001202501225634478,-0.00010025062510976568,5.421010862427522e-19,-0.024502163752913475,0.0009523809421807528,0.013484848663210869,-5.2865293894022995e-20,-0.0002380952355451882,-0.0012987012742087245,0.0003607503604143858,-0.0001202501225634478,-5.2865293894022995e-20,6.3289535319199786e-06,8.878639232272389e-21,-5.70441319926649e-21,0.0009523809421807528,-0.00010025062510976568,-0.0002380952355451882,8.878639232272389e-21,2.506265627744142e-05,-1.0842021724855044e-19,0.0015151514671742916,5.421010862427522e-19,-0.0012987012742087245,-5.70441319926649e-21,-1.0842021724855044e-19,0.00016233765927609056,20.0,10.0,0.0962987020611763,-0.011103896424174309,-0.020357143133878708,0.0003246753185521811,0.0007792207761667669,0.0011363636003807187,-0.011103896424174309,0.0025757576804608107,0.0007792207761667669,-0.00010822511103469878,-8.202323806472123e-05,-5.692061405548898e-19,-0.020357143133878708,0.0007792207761667669,0.009921536780893803,-2.7345510546327948e-19,-0.00017316016601398587,-0.0008522727293893695,0.0003246753185521811,-0.00010822511103469878,-2.7345510546327948e-19,5.696058451576391e-06,9.678097985194953e-21,2.0006455251497486e-20,0.0007792207761667669,-8.202323806472123e-05,-0.00017316016601398587,9.678097985194953e-21,1.8227387045044452e-05,3.218725199566341e-20,0.0011363636003807187,-5.692061405548898e-19,-0.0008522727293893695,2.0006455251497486e-20,3.218725199566341e-20,9.469696669839323e-05,20.0,11.0,0.08902688324451447,-0.010153482668101788,-0.017182817682623863,0.00029515937785618007,0.0006493506371043622,0.0008741258643567562,-0.010153482668101788,0.0023478115908801556,0.0006493506371043622,-9.838645928539336e-05,-6.83527032379061e-05,-3.7947076036992655e-19,-0.017182817682623863,0.0006493506371043622,0.007515817414969206,4.308659733696838e-20,-0.0001298701245104894,-0.0005827505956403911,0.00029515937785618007,-9.838645928539336e-05,4.308659733696838e-20,5.178234914637869e-06,-2.425501360900574e-21,-2.1589971365195215e-21,0.0006493506371043622,-6.83527032379061e-05,-0.0001298701245104894,-2.425501360900574e-21,1.3670540283783339e-05,7.115076756936123e-20,0.0008741258643567562,-3.7947076036992655e-19,-0.0005827505956403911,-2.1589971365195215e-21,7.115076756936123e-20,5.827505810884759e-05,20.0,12.0,0.0827755555510521,-0.009353146888315678,-0.014697802253067493,0.00027056277031078935,0.0005494505749084055,0.0006868132040835917,-0.009353146888315678,0.002156980335712433,0.0005494505749084055,-9.018759010359645e-05,-5.783689994132146e-05,-0.0,-0.014697802253067493,0.0005494505749084055,0.0058316681534051895,0.0,-9.990009857574478e-05,-0.00041208791662938893,0.00027056277031078935,-9.018759010359645e-05,0.0,4.746715148939984e-06,0.0,-0.0,0.0005494505749084055,-5.783689994132146e-05,-9.990009857574478e-05,0.0,1.0515799658605829e-05,-0.0,0.0006868132040835917,-0.0,-0.00041208791662938893,-0.0,-0.0,3.7462537875398993e-05,20.0,13.0,0.07734408229589462,-0.008669901639223099,-0.012715855613350868,0.00024975024280138314,0.00047095760237425566,0.0005494505749084055,-0.008669901639223099,0.00199487223289907,0.00047095760237425566,-8.325008093379438e-05,-4.957448618370108e-05,-0.0,-0.012715855613350868,0.00047095760237425566,0.0046168118715286255,0.0,-7.849293615436181e-05,-0.00029970030300319195,0.00024975024280138314,-8.325008093379438e-05,0.0,4.381583494250663e-06,0.0,-0.0,0.00047095760237425566,-4.957448618370108e-05,-7.849293615436181e-05,0.0,8.262414667115081e-06,-0.0,0.0005494505749084055,-0.0,-0.00029970030300319195,-0.0,-0.0,2.4975024643936194e-05,20.0,14.0,0.07258117198944092,-0.008079777471721172,-0.01110969390720129,0.00023191094805952162,0.0004081632650922984,0.00044642857392318547,-0.008079777471721172,0.001855450333096087,0.0004081632650922984,-7.730365177849308e-05,-4.296455517760478e-05,-0.0,-0.01110969390720129,0.0004081632650922984,0.0037181121297180653,-3.3881317890172014e-21,-6.27943518338725e-05,-0.00022321428696159273,0.00023191094805952162,-7.730365177849308e-05,-3.3881317890172014e-21,4.068613179697422e-06,4.235164736271502e-22,-0.0,0.0004081632650922984,-4.296455517760478e-05,-6.27943518338725e-05,4.235164736271502e-22,6.609931460843654e-06,-0.0,0.00044642857392318547,-0.0,-0.00022321428696159273,-0.0,-0.0,1.7170330465887673e-05,20.0,15.0,0.06837057322263718,-0.007564934901893139,-0.009789915755391121,0.00021645022206939757,0.0003571428533177823,0.0003676470660138875,-0.007564934901893139,0.001734259887598455,0.0003571428533177823,-7.215006917249411e-05,-3.759398532565683e-05,1.6666213342537983e-19,-0.009789915755391121,0.0003571428533177823,0.0030388308223336935,1.4993213411785635e-19,-5.10204081365373e-05,-0.00016968326235655695,0.00021645022206939757,-7.215006917249411e-05,1.4993213411785635e-19,3.7973723010509275e-06,-1.9058241313221758e-21,-7.926329780612243e-21,0.0003571428533177823,-3.759398532565683e-05,-5.10204081365373e-05,-1.9058241313221758e-21,5.3705693972005975e-06,-2.2945523691436076e-21,0.0003676470660138875,1.6666213342537983e-19,-0.00016968326235655695,-7.926329780612243e-21,-2.2945523691436076e-21,1.212023289554054e-05,20.0,16.0,0.06462153047323227,-0.007111821789294481,-0.008692227303981781,0.000202922077733092,0.00031512606074102223,0.00030637255986221135,-0.007111821789294481,0.0016279418487101793,0.00031512606074102223,-6.764069257769734e-05,-3.317116352263838e-05,-3.3881317890172014e-21,-0.008692227303981781,0.00031512606074102223,0.002515756292268634,-2.1820707500173844e-21,-4.201680712867528e-05,-0.00013130252773407847,0.000202922077733092,-6.764069257769734e-05,-2.1820707500173844e-21,3.5600364753918257e-06,2.4820199504765194e-22,1.1388678865770086e-22,0.00031512606074102223,-3.317116352263838e-05,-4.201680712867528e-05,2.4820199504765194e-22,4.422821803018451e-06,-2.117582368135751e-22,0.00030637255986221135,-3.3881317890172014e-21,-0.00013130252773407847,1.1388678865770086e-22,-2.117582368135751e-22,8.753501788305584e-06,20.0,17.0,0.061262112110853195,-0.00670995656400919,-0.00776942353695631,0.00019098549091722816,0.0002801120572257787,0.00025799794821068645,-0.00670995656400919,0.0015339150559157133,0.0002801120572257787,-6.366182788042352e-05,-2.948547808045987e-05,1.6940658945086007e-21,-0.00776942353695631,0.0002801120572257787,0.002106368774548173,-0.0,-3.501400715322234e-05,-0.00010319917782908306,0.00019098549091722816,-6.366182788042352e-05,-0.0,3.3506225918245036e-06,-2.117582368135751e-22,1.0587911840678754e-22,0.0002801120572257787,-2.948547808045987e-05,-3.501400715322234e-05,-2.117582368135751e-22,3.685684760057484e-06,-4.235164736271502e-22,0.00025799794821068645,1.6940658945086007e-21,-0.00010319917782908306,1.0587911840678754e-22,-4.235164736271502e-22,6.449948614317691e-06,20.0,18.0,0.058234602212905884,-0.006351104937493801,-0.006986215710639954,0.0001803751802071929,0.0002506265591364354,0.0002192982501583174,-0.006351104937493801,0.0014501631958410144,0.0002506265591364354,-6.01250612817239e-05,-2.638174373714719e-05,3.3881317890172014e-21,-0.006986215710639954,0.0002506265591364354,0.0017813375452533364,1.5450640291949303e-21,-2.948547808045987e-05,-8.223684562835842e-05,0.0001803751802071929,-6.01250612817239e-05,1.5450640291949303e-21,3.1644767659599893e-06,-1.3145369865323962e-22,-7.132909335089701e-23,0.0002506265591364354,-2.638174373714719e-05,-2.948547808045987e-05,-1.3145369865323962e-22,3.103734570686356e-06,-2.117582368135751e-22,0.0002192982501583174,3.3881317890172014e-21,-8.223684562835842e-05,-7.132909335089701e-23,-2.117582368135751e-22,4.8374613470514305e-06,20.0,19.0,0.05549214035272598,-0.006028708070516586,-0.0063157896511256695,0.00017088174354285002,0.000225563911953941,0.00018796992662828416,-0.006028708070516586,0.0013750884681940079,0.000225563911953941,-5.696058360626921e-05,-2.374356881773565e-05,-1.0164395367051604e-20,-0.0063157896511256695,0.000225563911953941,0.0015199764166027308,-1.3183693864059303e-21,-2.506265627744142e-05,-6.634232704527676e-05,0.00017088174354285002,-5.696058360626921e-05,-1.3183693864059303e-21,2.997925548697822e-06,2.334966180323736e-22,-4.833632231860122e-23,0.000225563911953941,-2.374356881773565e-05,-2.506265627744142e-05,2.334966180323736e-22,2.638174464664189e-06,1.2705494208814505e-21,0.00018796992662828416,-1.0164395367051604e-20,-6.634232704527676e-05,-4.833632231860122e-23,1.2705494208814505e-21,3.685684760057484e-06,20.0,20.0,0.05299628898501396,-0.005737476982176304,-0.005737476982176304,0.00016233765927609056,0.0002040816325461492,0.00016233765927609056,-0.005737476982176304,0.0013074080925434828,0.0002040816325461492,-5.411255551734939e-05,-2.148227758880239e-05,3.3881317890172014e-21,-0.005737476982176304,0.0002040816325461492,0.0013074080925434828,-2.2679915108172375e-21,-2.148227758880239e-05,-5.411255551734939e-05,0.00016233765927609056,-5.411255551734939e-05,-2.2679915108172375e-21,2.8480292257881956e-06,3.7265811250745944e-23,9.387032040104429e-23,0.0002040816325461492,-2.148227758880239e-05,-2.148227758880239e-05,3.7265811250745944e-23,2.261292365801637e-06,-5.293955920339377e-22,0.00016233765927609056,3.3881317890172014e-21,-5.411255551734939e-05,9.387032040104429e-23,-5.293955920339377e-22,2.8480292257881956e-06,20.0,21.0,0.05071522668004036,-0.005473098251968622,-0.005235137417912483,0.00015460730355698615,0.00018552875553723425,0.00014116318197920918,-0.005473098251968622,0.0012460806174203753,0.00018552875553723425,-5.153576421434991e-05,-1.9529343262547627e-05,1.0926725019580474e-19,-0.005235137417912483,0.00018552875553723425,0.0011327443644404411,1.6226858945119857e-19,-1.8552875189925544e-05,-4.4577845983440056e-05,0.00015460730355698615,-5.153576421434991e-05,1.6226858945119857e-19,2.712408786464948e-06,-2.23423139427385e-21,-6.280014179432973e-21,0.00018552875553723425,-1.9529343262547627e-05,-1.8552875189925544e-05,-2.23423139427385e-21,1.9529343262547627e-06,8.470329472543003e-22,0.00014116318197920918,1.0926725019580474e-19,-4.4577845983440056e-05,-6.280014179432973e-21,8.470329472543003e-22,2.228892299172003e-06,20.0,22.0,0.04862237721681595,-0.0052320207469165325,-0.004796019289642572,0.00014757968892809004,0.00016939581837505102,0.00012351779150776565,-0.0052320207469165325,0.0011902510887011886,0.00016939581837505102,-4.919322964269668e-05,-1.7831138393376023e-05,6.776263578034403e-21,-0.004796019289642572,0.00016939581837505102,0.000987890176475048,-1.7137162808181368e-21,-1.613293534319382e-05,-3.705533526954241e-05,0.00014757968892809004,-4.919322964269668e-05,-1.7137162808181368e-21,2.5891174573189346e-06,1.3386530323848543e-22,6.428076000226659e-23,0.00016939581837505102,-1.7831138393376023e-05,-1.613293534319382e-05,1.3386530323848543e-22,1.6982037323032273e-06,-7.411538288475128e-22,0.00012351779150776565,6.776263578034403e-21,-3.705533526954241e-05,6.428076000226659e-23,-7.411538288475128e-22,1.7645397747401148e-06,20.0,23.0,0.046695370227098465,-0.005011293105781078,-0.004409938119351864,0.00014116318197920918,0.0001552795001771301,0.00010869565448956564,-0.005011293105781078,0.0011392117012292147,0.0001552795001771301,-4.705439641838893e-05,-1.6345211406587623e-05,6.776263578034403e-21,-0.004409938119351864,0.0001552795001771301,0.0008667419315315783,-1.5035575762413113e-21,-1.4116318197920918e-05,-3.105590076302178e-05,0.00014116318197920918,-4.705439641838893e-05,-1.5035575762413113e-21,2.476547024343745e-06,2.4487908572292033e-23,8.034317972291681e-23,0.0001552795001771301,-1.6345211406587623e-05,-1.4116318197920918e-05,2.4487908572292033e-23,1.4859282373436145e-06,-6.88214269644119e-22,0.00010869565448956564,6.776263578034403e-21,-3.105590076302178e-05,8.034317972291681e-23,-6.88214269644119e-22,1.4116318425294594e-06,20.0,24.0,0.044915251433849335,-0.004808441735804081,-0.004068681504577398,0.00013528138515539467,0.0001428571413271129,9.61538462433964e-05,-0.004808441735804081,0.0010923710651695728,0.0001428571413271129,-4.5093795051798224e-05,-1.5037593584565911e-05,5.929230630780102e-21,-0.004068681504577398,0.0001428571413271129,0.0007646375452168286,-0.0,-1.2422360669006594e-05,-2.6223775421385653e-05,0.00013528138515539467,-4.5093795051798224e-05,-0.0,2.373357574469992e-06,0.0,2.6469779601696886e-23,0.0001428571413271129,-1.5037593584565911e-05,-1.2422360669006594e-05,0.0,1.3076169125270098e-06,-5.293955920339377e-22,9.61538462433964e-05,5.929230630780102e-21,-2.6223775421385653e-05,2.6469779601696886e-23,-5.293955920339377e-22,1.14016415864171e-06,20.0,25.0,0.043265845626592636,-0.0046213786117732525,-0.003765567671507597,0.0001298701245104894,0.00013186813157517463,8.547008474124596e-05,-0.0046213786117732525,0.001049231505021453,0.00013186813157517463,-4.329004150349647e-05,-1.388085638609482e-05,4.235164736271502e-21,-0.003765567671507597,0.00013186813157517463,0.0006779741961508989,-0.0,-1.0989010661432985e-05,-2.2296544557320885e-05,0.0001298701245104894,-4.329004150349647e-05,-0.0,2.2784233806305565e-06,0.0,0.0,0.00013186813157517463,-1.388085638609482e-05,-1.0989010661432985e-05,0.0,1.1567379942789557e-06,-3.705769144237564e-22,8.547008474124596e-05,4.235164736271502e-21,-2.2296544557320885e-05,0.0,-3.705769144237564e-22,9.290226898883702e-07,20.0,26.0,0.0417332649230957,-0.00444832956418395,-0.0034951160196214914,0.00012487512140069157,0.00012210012937430292,7.631257903994992e-05,-0.00444832956418395,0.0010093707824125886,0.00012210012937430292,-4.162504046689719e-05,-1.285264443140477e-05,2.541098841762901e-21,-0.0034951160196214914,0.00012210012937430292,0.0006039377185516059,-0.0,-9.76800947682932e-06,-1.907814475998748e-05,0.00012487512140069157,-4.162504046689719e-05,-0.0,2.1907917471253313e-06,0.0,0.0,0.00012210012937430292,-1.285264443140477e-05,-9.76800947682932e-06,0.0,1.0282114999426994e-06,-3.1763735522036263e-22,7.631257903994992e-05,2.541098841762901e-21,-1.907814475998748e-05,0.0,-3.1763735522036263e-22,7.631257403772906e-07,20.0,27.0,0.04030552878975868,-0.004287775605916977,-0.0032527954317629337,0.0001202501225634478,0.00011337868636474013,6.841817230451852e-05,-0.004287775605916977,0.0009724286501295865,0.00011337868636474013,-4.0083374187815934e-05,-1.1934598660445772e-05,-6.776263578034403e-21,-0.0032527954317629337,0.00011337868636474013,0.00054030807223171,-0.0,-8.72143755259458e-06,-1.6420361134805717e-05,0.0001202501225634478,-4.0083374187815934e-05,-0.0,2.1096511773066595e-06,0.0,0.0,0.00011337868636474013,-1.1934598660445772e-05,-8.72143755259458e-06,0.0,9.180460551760916e-07,4.764560328305439e-22,6.841817230451852e-05,-6.776263578034403e-21,-1.6420361134805717e-05,0.0,4.764560328305439e-22,6.315523819466762e-07,20.0,28.0,0.03897223621606827,-0.004138411022722721,-0.0030348345171660185,0.00011595547402976081,0.00010555946209933609,6.157635652925819e-05,-0.004138411022722721,0.0009380959090776742,0.00010555946209933609,-3.865182588924654e-05,-1.1111522326245904e-05,9.740878893424454e-21,-0.0030348345171660185,0.00010555946209933609,0.0004853178979828954,-0.0,-7.819219717930537e-06,-1.4209927940100897e-05,0.00011595547402976081,-3.865182588924654e-05,-0.0,2.034306589848711e-06,0.0,0.0,0.00010555946209933609,-1.1111522326245904e-05,-7.819219717930537e-06,0.0,8.230757657656795e-07,-7.146840492458159e-22,6.157635652925819e-05,9.740878893424454e-21,-1.4209927940100897e-05,0.0,-7.146840492458159e-22,5.262936042527144e-07,20.0,29.0,0.03772431239485741,-0.003999104257673025,-0.0028380739968270063,0.00011195700790267438,9.85221704468131e-05,5.561735088122077e-05,-0.003999104257673025,0.0009061053860932589,9.85221704468131e-05,-3.731900142156519e-05,-1.0370754353061784e-05,2.964615315390051e-21,-0.0028380739968270063,9.85221704468131e-05,0.0004375483840703964,-0.0,-7.037297564238543e-06,-1.2359411812212784e-05,0.00011195700790267438,-3.731900142156519e-05,-0.0,1.9641579456219915e-06,0.0,0.0,9.85221704468131e-05,-1.0370754353061784e-05,-7.037297564238543e-06,0.0,7.407682005577954e-07,-2.3822801641527197e-22,5.561735088122077e-05,2.964615315390051e-21,-1.2359411812212784e-05,0.0,-2.3822801641527197e-22,4.4140756472188514e-07,20.0,30.0,0.03655381500720978,-0.0038688729982823133,-0.002659850288182497,0.00010822511103469878,9.216590115102008e-05,5.040322503191419e-05,-0.0038688729982823133,0.0008762252400629222,9.216590115102008e-05,-3.607503458624706e-05,-9.701673661766108e-06,2.837560373301906e-20,-0.002659850288182497,9.216590115102008e-05,0.00039585152990184724,3.7829027670058535e-20,-6.356268841045676e-06,-1.0800691597978584e-05,0.00010822511103469878,-3.607503458624706e-05,3.7829027670058535e-20,1.8986861505254637e-06,-4.054322223390802e-22,-9.799123636878768e-22,9.216590115102008e-05,-9.701673661766108e-06,-6.356268841045676e-06,-4.054322223390802e-22,6.690809186693514e-07,-6.88214269644119e-22,5.040322503191419e-05,2.837560373301906e-20,-1.0800691597978584e-05,-9.799123636878768e-22,-6.88214269644119e-22,3.7243762562866323e-07,20.0,31.0,0.035453759133815765,-0.0037468578666448593,-0.0024979053996503353,0.00010473397560417652,8.640553278382868e-05,4.582111432682723e-05,-0.0037468578666448593,0.0008482533157803118,8.640553278382868e-05,-3.4911325201392174e-05,-9.095319001062308e-06,3.3881317890172014e-21,-0.0024979053996503353,8.640553278382868e-05,0.00035929170553572476,-0.0,-5.760368821938755e-06,-9.480230801273137e-06,0.00010473397560417652,-3.4911325201392174e-05,-0.0,1.8374381625108072e-06,0.0,0.0,8.640553278382868e-05,-9.095319001062308e-06,-5.760368821938755e-06,0.0,6.063546038603818e-07,-2.117582368135751e-22,4.582111432682723e-05,3.3881317890172014e-21,-9.480230801273137e-06,0.0,-2.117582368135751e-22,3.1600768579664873e-07,20.0,32.0,0.03441797196865082,-0.0036323051899671555,-0.0023503152187913656,0.000101461038866546,8.116882963804528e-05,4.177807568339631e-05,-0.0036323051899671555,0.000822012429125607,8.116882963804528e-05,-3.382034628884867e-05,-8.544087904738262e-06,0.0,-0.0023503152187913656,8.116882963804528e-05,0.00032710115192458034,-0.0,-5.236698598309886e-06,-8.355615136679262e-06,0.000101461038866546,-3.382034628884867e-05,-0.0,1.7800182376959128e-06,0.0,0.0,8.116882963804528e-05,-8.544087904738262e-06,-5.236698598309886e-06,0.0,5.512314373845584e-07,2.6469779601696886e-23,4.177807568339631e-05,0.0,-8.355615136679262e-06,0.0,2.6469779601696886e-23,2.695359739846026e-07,20.0,33.0,0.033440981060266495,-0.00352455023676157,-0.002215431537479162,9.838645928539336e-05,7.639419345650822e-05,3.819709672825411e-05,-0.00352455023676157,0.0007973466417752206,7.639419345650822e-05,-3.2795487641124055e-05,-8.041493856580928e-06,-1.4823076576950256e-21,-0.002215431537479162,7.639419345650822e-05,0.00029864584212191403,-0.0,-4.774637091031764e-06,-7.3929863901867066e-06,9.838645928539336e-05,-3.2795487641124055e-05,-0.0,1.7260782669836772e-06,0.0,0.0,7.639419345650822e-05,-8.041493856580928e-06,-4.774637091031764e-06,0.0,5.02593366036308e-07,9.26442286059391e-23,3.819709672825411e-05,-1.4823076576950256e-21,-7.3929863901867066e-06,0.0,9.26442286059391e-23,2.3103082469333458e-07,20.0,34.0,0.032517917454242706,-0.003423005575314164,-0.0020918366499245167,9.549274545861408e-05,7.202880806289613e-05,3.501400715322234e-05,-0.003423005575314164,0.0007741182344034314,7.202880806289613e-05,-3.183091394021176e-05,-7.581980298709823e-06,-3.3881317890172014e-21,-0.0020918366499245167,7.202880806289613e-05,0.00027339914231561124,-0.0,-4.3653826651279815e-06,-6.565126113855513e-06,9.549274545861408e-05,-3.183091394021176e-05,-0.0,1.6753112959122518e-06,0.0,0.0,7.202880806289613e-05,-7.581980298709823e-06,-4.3653826651279815e-06,0.0,4.595139557750372e-07,2.117582368135751e-22,3.501400715322234e-05,-3.3881317890172014e-21,-6.565126113855513e-06,0.0,2.117582368135751e-22,1.989432121263235e-07,20.0,35.0,0.031644437462091446,-0.0033271489664912224,-0.001978304935619235,9.276437776861712e-05,6.80272132740356e-05,3.217503399355337e-05,-0.0033271489664912224,0.0007522052037529647,6.80272132740356e-05,-3.092145925620571e-05,-7.160759196267463e-06,-1.1298674859950613e-20,-0.001978304935619235,6.80272132740356e-05,0.00025092100258916616,-8.470329472543003e-22,-4.001600700576091e-06,-5.8500058912613895e-06,9.276437776861712e-05,-3.092145925620571e-05,-8.470329472543003e-22,1.627445271878969e-06,-1.6675961149069038e-21,4.648535423672002e-22,6.80272132740356e-05,-7.160759196267463e-06,-4.001600700576091e-06,-1.6675961149069038e-21,4.21221130864069e-07,1.459712257988795e-22,3.217503399355337e-05,-1.1298674859950613e-20,-5.8500058912613895e-06,4.648535423672002e-22,1.459712257988795e-22,1.720589892784119e-07,20.0,36.0,0.03081665001809597,-0.0032365156803280115,-0.0018737722421064973,9.018759010359645e-05,6.435006798710674e-05,2.9634898965014145e-05,-0.0032365156803280115,0.0007314987597055733,6.435006798710674e-05,-3.006253064086195e-05,-6.77369098411873e-06,3.431994979702386e-21,-0.0018737722421064973,6.435006798710674e-05,0.00023084197891876101,8.470329472543003e-22,-3.6771464237972395e-06,-5.229687758401269e-06,9.018759010359645e-05,-3.006253064086195e-05,8.470329472543003e-22,1.5822383829799946e-06,3.1763735522036263e-22,-1.1164762275544912e-22,6.435006798710674e-05,-6.77369098411873e-06,-3.6771464237972395e-06,3.1763735522036263e-22,3.870680700401863e-07,-7.224265738801536e-23,2.9634898965014145e-05,3.431994979702386e-21,-5.229687758401269e-06,-1.1164762275544912e-22,-7.224265738801536e-23,1.4941964820991416e-07,20.0,37.0,0.03003106452524662,-0.0031506898812949657,-0.0017773122526705265,8.775008609518409e-05,6.096321885706857e-05,2.7355290512787178e-05,-0.0031506898812949657,0.0007119019865058362,6.096321885706857e-05,-2.9250029911054298e-05,-6.417180884454865e-06,-1.8139620488374324e-21,-0.0017773122526705265,6.096321885706857e-05,0.00021285020920913666,-1.6940658945086007e-20,-3.386845492059365e-06,-4.689478373620659e-06,8.775008609518409e-05,-2.9250029911054298e-05,-1.6940658945086007e-20,1.5394751926578465e-06,1.7470054537119944e-21,3.540704354332264e-23,6.096321885706857e-05,-6.417180884454865e-06,-3.386845492059365e-06,1.7470054537119944e-21,3.5651004282044596e-07,4.0475130916012965e-23,2.7355290512787178e-05,-1.8139620488374324e-21,-4.689478373620659e-06,3.540704354332264e-23,4.0475130916012965e-23,1.3026328815612942e-07,20.0,38.0,0.029284531250596046,-0.003069299040362239,-0.0016881144838407636,8.544087177142501e-05,5.783689994132146e-05,2.530364326958079e-05,-0.003069299040362239,0.0006933279219083488,5.783689994132146e-05,-2.8480291803134605e-05,-6.088094778533559e-06,-1.3441504008227704e-20,-0.0016881144838407636,5.783689994132146e-05,0.0001966812851605937,3.3881317890172014e-21,-3.126318915747106e-06,-4.217274181428365e-06,8.544087177142501e-05,-2.8480291803134605e-05,3.3881317890172014e-21,1.498962774348911e-06,-1.7999450129153882e-21,3.792951022256714e-22,5.783689994132146e-05,-6.088094778533559e-06,-3.126318915747106e-06,-1.7999450129153882e-21,3.29086191186434e-07,2.8772390115567566e-22,2.530364326958079e-05,-1.3441504008227704e-20,-4.217274181428365e-06,3.792951022256714e-22,2.8772390115567566e-22,1.1398037713661324e-07,20.0,39.0,0.028574209660291672,-0.0029920078814029694,-0.0016054677544161677,8.325008093379438e-05,5.494505603564903e-05,2.3452157620340586e-05,-0.0029920078814029694,0.0006756985676474869,5.494505603564903e-05,-2.775002758426126e-05,-5.783690085081616e-06,-1.6417094007018288e-20,-0.0016054677544161677,5.494505603564903e-05,0.00018210998678114265,-3.134021904840911e-20,-2.891845042540808e-06,-3.8030525502108503e-06,8.325008093379438e-05,-2.775002758426126e-05,-3.134021904840911e-20,1.4605277556256624e-06,4.235164736271502e-22,7.264113943023508e-22,5.494505603564903e-05,-5.783690085081616e-06,-2.891845042540808e-06,4.235164736271502e-22,3.0440475029536174e-07,7.942606896716858e-23,2.3452157620340586e-05,-1.6417094007018288e-20,-3.8030525502108503e-06,7.264113943023508e-22,7.942606896716858e-23,1.0008032802488742e-07,20.0,40.0,0.027897529304027557,-0.002918514423072338,-0.0015287456335499883,8.116882963804528e-05,5.2264807891333476e-05,2.1777002984890714e-05,-0.002918514423072338,0.0006589436670765281,5.2264807891333476e-05,-2.7056277758674696e-05,-5.5015589168760926e-06,-1.4851275640630393e-21,-0.0015287456335499883,5.2264807891333476e-05,0.0001689437049208209,-8.470329472543003e-22,-2.6802465526998276e-06,-3.438474323047558e-06,8.116882963804528e-05,-2.7056277758674696e-05,-8.470329472543003e-22,1.4240146128940978e-06,1.852884572118782e-22,-8.473265423505619e-24,5.2264807891333476e-05,-5.5015589168760926e-06,-2.6802465526998276e-06,1.852884572118782e-22,2.821312250489427e-07,5.041577228653829e-23,2.1777002984890714e-05,-1.4851275640630393e-21,-3.438474323047558e-06,-8.473265423505619e-24,5.041577228653829e-23,8.816600427508092e-08,20.0,41.0,0.027252154424786568,-0.002848545089364052,-0.001457395264878869,7.91891070548445e-05,4.977600838174112e-05,2.025767753366381e-05,-0.002848545089364052,0.0006429996574297547,4.977600838174112e-05,-2.63963684119517e-05,-5.239579877525102e-06,-1.3254784140815197e-20,-0.001457395264878869,4.977600838174112e-05,0.0001570170425111428,-3.7269449679189215e-20,-2.488800419087056e-06,-3.1165657219389686e-06,7.91891070548445e-05,-2.63963684119517e-05,-3.7269449679189215e-20,1.38928248816228e-06,1.4293680984916318e-21,5.083510550020482e-22,4.977600838174112e-05,-5.239579877525102e-06,-2.488800419087056e-06,1.4293680984916318e-21,2.6197898250757135e-07,1.4491585612543862e-22,2.025767753366381e-05,-1.3254784140815197e-20,-3.1165657219389686e-06,5.083510550020482e-22,1.4491585612543862e-22,7.791414446955969e-08,20.0,42.0,0.02663596160709858,-0.00278185261413455,-0.001390926307067275,7.730365177849308e-05,4.746084596263245e-05,1.8876471585826948e-05,-0.00278185261413455,0.0006278090877458453,4.746084596263245e-05,-2.5767882107174955e-05,-4.995878498448292e-06,-1.1979307179175374e-20,-0.001390926307067275,4.746084596263245e-05,0.0001461874198867008,-1.9481757786848908e-20,-2.3151631012297003e-06,-2.8314709652477177e-06,7.730365177849308e-05,-2.5767882107174955e-05,-1.9481757786848908e-20,1.356204393232474e-06,-5.293955920339377e-22,6.140853764119606e-22,4.746084596263245e-05,-4.995878498448292e-06,-2.3151631012297003e-06,-5.293955920339377e-22,2.4370137907681055e-07,6.98970126184987e-24,1.8876471585826948e-05,-1.1979307179175374e-20,-2.8314709652477177e-06,6.140853764119606e-22,6.98970126184987e-24,6.906026328579173e-08,20.0,43.0,0.02604701556265354,-0.0027182120829820633,-0.0013289035996422172,7.550588634330779e-05,4.530353544396348e-05,1.761804014677182e-05,-0.0027182120829820633,0.0006133197457529604,4.530353544396348e-05,-2.5168630600092e-05,-4.768793132825522e-06,1.1338234126511108e-20,-0.0013289035996422172,4.530353544396348e-05,0.000136331538669765,9.317362419797304e-21,-2.157311200789991e-06,-2.57824990512745e-06,7.550588634330779e-05,-2.5168630600092e-05,9.317362419797304e-21,1.324664708590717e-06,7.676236084492097e-22,-3.894023163094996e-22,4.530353544396348e-05,-4.768793132825522e-06,-2.157311200789991e-06,7.676236084492097e-22,2.2708537983362476e-07,-1.2451612768658947e-22,1.761804014677182e-05,1.1338234126511108e-20,-2.57824990512745e-06,-3.894023163094996e-22,-1.2451612768658947e-22,6.138689911949768e-08,20.0,44.0,0.025483548641204834,-0.0026574183721095324,-0.001270939246751368,7.378984446404502e-05,4.329004150349647e-05,1.6469039110234007e-05,-0.0026574183721095324,0.0005994842504151165,4.329004150349647e-05,-2.459661482134834e-05,-4.556846761261113e-06,1.1183437453070752e-20,-0.001270939246751368,4.329004150349647e-05,0.00012734232586808503,1.2705494208814505e-20,-2.013490302488208e-06,-2.3527197754447116e-06,7.378984446404502e-05,-2.459661482134834e-05,1.2705494208814505e-20,1.2945587286594673e-06,6.088049308390284e-22,-4.535937078375355e-22,4.329004150349647e-05,-4.556846761261113e-06,-2.013490302488208e-06,6.088049308390284e-22,2.1194635735355405e-07,-1.0395325650165338e-22,1.6469039110234007e-05,1.1183437453070752e-20,-2.3527197754447116e-06,-4.535937078375355e-22,-1.0395325650165338e-22,5.471441255622267e-08,20.0,45.0,0.024943942204117775,-0.002599284751340747,-0.0012166864471510053,7.215006917249411e-05,4.140786768402904e-05,1.5417823306052014e-05,-0.002599284751340747,0.0005862592370249331,4.140786768402904e-05,-2.405002487648744e-05,-4.358722890174249e-06,2.364158123271846e-21,-0.0012166864471510053,4.140786768402904e-05,0.00011912654736079276,1.1434944787933055e-20,-1.8821757521436666e-06,-2.151324224541895e-06,7.215006917249411e-05,-2.405002487648744e-05,1.1434944787933055e-20,1.2657907291213633e-06,-1.164670302474663e-21,-2.7162790751489924e-23,4.140786768402904e-05,-4.358722890174249e-06,-1.8821757521436666e-06,-1.164670302474663e-21,1.981237716108808e-07,-8.69972908782157e-23,1.5417823306052014e-05,2.364158123271846e-21,-2.151324224541895e-06,-2.7162790751489924e-23,-8.69972908782157e-23,4.889373173000422e-08,20.0,46.0,0.024426711723208427,-0.0025436405558139086,-0.0011658351868391037,7.058159098960459e-05,3.964583083870821e-05,1.4454209122050088e-05,-0.0025436405558139086,0.0005736051825806499,3.964583083870821e-05,-2.3527198209194466e-05,-4.173245542915538e-06,-1.2360201233036168e-20,-0.0011658351868391037,3.964583083870821e-05,0.00011160276335431263,-8.893845946170154e-21,-1.7620369590076734e-06,-1.9710284959728597e-06,7.058159098960459e-05,-2.3527198209194466e-05,-8.893845946170154e-21,1.2382735121718724e-06,-1.1911400820763599e-21,4.691174302232284e-22,3.964583083870821e-05,-4.173245542915538e-06,-1.7620369590076734e-06,-1.1911400820763599e-21,1.8547757463238668e-07,9.58584707632547e-23,1.4454209122050088e-05,-1.2360201233036168e-20,-1.9710284959728597e-06,4.691174302232284e-22,9.58584707632547e-23,4.38006324543494e-08,20.0,47.0,0.023930495604872704,-0.0024903288576751947,-0.0011181067675352097,6.907985516590998e-05,3.7993919249856845e-05,1.3569257134804502e-05,-0.0024903288576751947,0.0005614859401248395,3.7993919249856845e-05,-2.302661960129626e-05,-3.999360160378274e-06,3.3738835221866188e-21,-0.0011181067675352097,3.7993919249856845e-05,0.00010469960398040712,8.470329472543003e-22,-1.6519096561751212e-06,-1.8092342770614778e-06,6.907985516590998e-05,-2.302661960129626e-05,8.470329472543003e-22,1.2119272696509142e-06,6.352747104407253e-22,-1.416125105511565e-22,3.7993919249856845e-05,-3.999360160378274e-06,-1.6519096561751212e-06,6.352747104407253e-22,1.738852262178625e-07,-4.0876172023009223e-23,1.3569257134804502e-05,3.3738835221866188e-21,-1.8092342770614778e-06,-1.416125105511565e-22,-4.0876172023009223e-23,3.9331180090584894e-08,20.0,48.0,0.023454036563634872,-0.0024392062332481146,-0.0010732507798820734,6.764069257769734e-05,3.644314710982144e-05,1.2755102034134325e-05,-0.0024392062332481146,0.0005498682148754597,3.644314710982144e-05,-2.2546897525899112e-05,-3.836120868072612e-06,7.372466929229069e-21,-0.0010732507798820734,3.644314710982144e-05,9.835435776039958e-05,1.4399560103323106e-20,-1.5507722537222435e-06,-1.6637089856885723e-06,6.764069257769734e-05,-2.2546897525899112e-05,1.4399560103323106e-20,1.186678787234996e-06,-2.514629062161204e-22,-2.349528426416371e-22,3.644314710982144e-05,-3.836120868072612e-06,-1.5507722537222435e-06,-2.514629062161204e-22,1.6323919282967836e-07,-1.0355867458774907e-22,1.2755102034134325e-05,7.372466929229069e-21,-1.6637089856885723e-06,-2.349528426416371e-22,-1.0355867458774907e-22,3.539806314734051e-08,20.0,49.0,0.02299617975950241,-0.0023901404347270727,-0.0010310410289093852,6.6260268795304e-05,3.498542355373502e-05,1.2004801646980923e-05,-0.0023901404347270727,0.0005387215642258525,3.498542355373502e-05,-2.2086756871431135e-05,-3.682676151584019e-06,-1.2863474396702196e-20,-0.0010310410289093852,3.498542355373502e-05,9.251177834812552e-05,-2.625802136488331e-20,-1.4577259435100132e-06,-1.5325279036915163e-06,6.6260268795304e-05,-2.2086756871431135e-05,-2.625802136488331e-20,1.1624608760030242e-06,1.7205356741102976e-22,5.200087278634339e-22,3.498542355373502e-05,-3.682676151584019e-06,-1.4577259435100132e-06,1.7205356741102976e-22,1.5344483017543098e-07,9.413522620390475e-23,1.2004801646980923e-05,-1.2863474396702196e-20,-1.5325279036915163e-06,5.200087278634339e-22,9.413522620390475e-23,3.1927665844477815e-08,20.0,50.0,0.02255585603415966,-0.002343009924516082,-0.0009912734385579824,6.49350622552447e-05,3.361344715813175e-05,1.1312216884107329e-05,-0.002343009924516082,0.0005280179320834577,3.361344715813175e-05,-2.1645020751748234e-05,-3.5382574878894957e-06,-2.0894016817592617e-21,-0.0009912734385579824,3.361344715813175e-05,8.712303679203615e-05,4.235164736271502e-22,-1.3719774187848088e-06,-1.4140271105134161e-06,6.49350622552447e-05,-2.1645020751748234e-05,4.235164736271502e-22,1.1392116903152782e-06,-6.749793798432706e-22,1.1100364719952462e-22,3.361344715813175e-05,-3.5382574878894957e-06,-1.3719774187848088e-06,-6.749793798432706e-22,1.4441866369452327e-07,-2.5978102715425712e-24,1.1312216884107329e-05,-2.0894016817592617e-21,-1.4140271105134161e-06,1.1100364719952462e-22,-2.5978102715425712e-24,2.8857696676709566e-08,20.0,51.0,0.02213207632303238,-0.002297702245414257,-0.0009537631995044649,6.366182788042352e-05,3.2320622267434373e-05,1.0671902600734029e-05,-0.002297702245414257,0.000517731299623847,3.2320622267434373e-05,-2.1220608687144704e-05,-3.4021704777842388e-06,1.0923521794970105e-20,-0.0009537631995044649,3.2320622267434373e-05,8.21449066279456e-05,2.795208725939191e-20,-1.2928247770105372e-06,-1.3067635791230714e-06,6.366182788042352e-05,-2.1220608687144704e-05,2.795208725939191e-20,1.116874159379222e-06,-4.235164736271502e-22,-4.471419615925311e-22,3.2320622267434373e-05,-3.4021704777842388e-06,-1.2928247770105372e-06,-4.235164736271502e-22,1.3608682536414562e-07,-7.061591260547928e-23,1.0671902600734029e-05,1.0923521794970105e-20,-1.3067635791230714e-06,-4.471419615925311e-22,-7.061591260547928e-23,2.6135273500926814e-08,20.0,52.0,0.021723926067352295,-0.0022541137877851725,-0.0009183426736854017,6.243756070034578e-05,3.110097532044165e-05,1.0079019375552889e-05,-0.0022541137877851725,0.0005078379181213677,3.110097532044165e-05,-2.0812520233448595e-05,-3.2737868878029985e-06,2.029168958336693e-21,-0.0009183426736854017,3.110097532044165e-05,7.753899990348145e-05,1.2705494208814505e-21,-1.2196460374980234e-06,-1.2094823205188732e-06,6.243756070034578e-05,-2.0812520233448595e-05,1.2705494208814505e-21,1.0953958735626657e-06,3.3087224502121107e-22,-1.1267810228960846e-22,3.110097532044165e-05,-3.2737868878029985e-06,-1.2196460374980234e-06,3.3087224502121107e-22,1.2838378893320623e-07,5.240998583366623e-24,1.0079019375552889e-05,2.029168958336693e-21,-1.2094823205188732e-06,-1.1267810228960846e-22,5.240998583366623e-24,2.3715340802255014e-08,20.0,53.0,0.02133055590093136,-0.002212148392572999,-0.0008848593570291996,6.125949585111812e-05,2.9949085728731006e-05,9.529254384688102e-06,-0.002212148392572999,0.0004983155522495508,2.9949085728731006e-05,-2.0419831344042905e-05,-3.152535327899386e-06,-3.045422742911134e-21,-0.0008848593570291996,2.9949085728731006e-05,7.327116327360272e-05,-8.470329472543003e-22,-1.1518880000949139e-06,-1.1210887578272377e-06,6.125949585111812e-05,-2.0419831344042905e-05,-8.470329472543003e-22,1.074727947525389e-06,-5.69100261436483e-22,1.0968192021915768e-22,2.9949085728731006e-05,-3.152535327899386e-06,-1.1518880000949139e-06,-5.69100261436483e-22,1.2125136095164635e-07,2.4842492082858015e-23,9.529254384688102e-06,-3.045422742911134e-21,-1.1210887578272377e-06,1.0968192021915768e-22,2.4842492082858015e-23,2.1559399598913842e-08,20.0,54.0,0.020951177924871445,-0.002171717118471861,-0.0008531745988875628,6.01250612817239e-05,2.886002948798705e-05,9.018758646561764e-06,-0.002171717118471861,0.0004891437129117548,2.886002948798705e-05,-2.0041687093907967e-05,-3.037897840840742e-06,-8.525195619403564e-21,-0.0008531745988875628,2.886002948798705e-05,6.931093230377883e-05,-2.159934015498466e-20,-1.0890577186728478e-06,-1.0406259889350622e-06,6.01250612817239e-05,-2.0041687093907967e-05,-2.159934015498466e-20,1.0548255886533298e-06,4.499862532288471e-22,3.3341237713602273e-22,2.886002948798705e-05,-3.037897840840742e-06,-1.0890577186728478e-06,4.499862532288471e-22,1.1463765048347341e-07,6.152509215548682e-23,9.018758646561764e-06,-8.525195619403564e-21,-1.0406259889350622e-06,3.3341237713602273e-22,6.152509215548682e-23,1.963445406261144e-08,20.0,55.0,0.020585058256983757,-0.002132737310603261,-0.0008231617975980043,5.90318777540233e-05,2.7829313694383018e-05,8.544087904738262e-06,-0.002132737310603261,0.0004803034826181829,2.7829313694383018e-05,-1.9677292584674433e-05,-2.929401489382144e-06,-6.96554415105413e-21,-0.0008231617975980043,2.7829313694383018e-05,6.563108036061749e-05,-1.5670109524204556e-20,-1.0307153388566803e-06,-9.672552323536365e-07,5.90318777540233e-05,-1.9677292584674433e-05,-1.5670109524204556e-20,1.0356469601902063e-06,0.0,2.9052426901678887e-22,2.7829313694383018e-05,-2.929401489382144e-06,-1.0307153388566803e-06,0.0,1.0849635145859793e-07,4.511704091782307e-23,8.544087904738262e-06,-6.96554415105413e-21,-9.672552323536365e-07,2.9052426901678887e-22,4.511704091782307e-23,1.7912132221908905e-08,20.0,56.0,0.020231515169143677,-0.002095132367685437,-0.0007947053527459502,5.7977737014880404e-05,2.6852845621760935e-05,8.102151696220972e-06,-0.002095132367685437,0.00047177710803225636,2.6852845621760935e-05,-1.932591294462327e-05,-2.8266154004086275e-06,2.7184951558257137e-21,-0.0007947053527459502,2.6852845621760935e-05,6.220722571015358e-05,3.3881317890172014e-21,-9.764671631273814e-07,-9.002391152534983e-07,5.7977737014880404e-05,-1.932591294462327e-05,3.3881317890172014e-21,1.0171532949243556e-06,4.367513634279986e-22,-1.2975603211988056e-22,2.6852845621760935e-05,-2.8266154004086275e-06,-9.764671631273814e-07,4.367513634279986e-22,1.0278601791924302e-07,-1.3183266940426006e-24,8.102151696220972e-06,2.7184951558257137e-21,-9.002391152534983e-07,-1.2975603211988056e-22,-1.3183266940426006e-24,1.6367984301268734e-08,20.0,57.0,0.019889909774065018,-0.002058830577880144,-0.0007676995010115206,5.696058360626921e-05,2.592688542790711e-05,7.690177881158888e-06,-0.002058830577880144,0.0004635482036974281,2.592688542790711e-05,-1.8986860595759936e-05,-2.729145990088e-06,1.0052270994630363e-21,-0.0007676995010115206,2.592688542790711e-05,5.901747863390483e-05,8.470329472543003e-21,-9.259601938538253e-07,-8.38928542634676e-07,5.696058360626921e-05,-1.8986860595759936e-05,8.470329472543003e-21,9.993084404413821e-07,-4.235164736271502e-22,-7.032780167023084e-23,2.592688542790711e-05,-2.729145990088e-06,-9.259601938538253e-07,-4.235164736271502e-22,9.74694955857558e-08,1.679025355738243e-24,7.690177881158888e-06,1.0052270994630363e-21,-8.38928542634676e-07,-7.032780167023084e-23,1.679025355738243e-24,1.4980866325231545e-08,20.0,58.0,0.019559647887945175,-0.0020237653516232967,-0.0007420472684316337,5.597850395133719e-05,2.5048007955774665e-05,7.305668987100944e-06,-0.0020237653516232967,0.0004556014318950474,2.5048007955774665e-05,-1.8659500710782595e-05,-2.636632416397333e-06,9.457744017035502e-21,-0.0007420472684316337,2.5048007955774665e-05,5.60421722184401e-05,1.7787691892340307e-20,-8.788774721324444e-07,-7.827502486179583e-07,5.597850395133719e-05,-1.8659500710782595e-05,1.7787691892340307e-20,9.820789728109958e-07,2.9116757561866574e-22,-3.6390100546392444e-22,2.5048007955774665e-05,-2.636632416397333e-06,-8.788774721324444e-07,2.9116757561866574e-22,9.251341737126495e-08,-7.537955962218309e-23,7.305668987100944e-06,9.457744017035502e-21,-7.827502486179583e-07,-3.6390100546392444e-22,-7.537955962218309e-23,1.3732460502069443e-08,20.0,59.0,0.01924017444252968,-0.0019898745231330395,-0.0007176596554927528,5.502971544046886e-05,2.4213075448642485e-05,6.94637401466025e-06,-0.0019898745231330395,0.00044792258995585144,2.4213075448642485e-05,-1.8343238480156288e-05,-2.548744760133559e-06,9.34803838050209e-21,-0.0007176596554927528,2.4213075448642485e-05,5.3263578593032435e-05,3.049318610115481e-20,-8.349336440005573e-07,-7.311972467505257e-07,5.502971544046886e-05,-1.8343238480156288e-05,3.049318610115481e-20,9.65433628152823e-07,-4.764560328305439e-22,-4.059550162381883e-22,2.4213075448642485e-05,-2.548744760133559e-06,-8.349336440005573e-07,-4.764560328305439e-22,8.788774863432991e-08,-4.8218292949962054e-23,6.94637401466025e-06,9.34803838050209e-21,-7.311972467505257e-07,-4.059550162381883e-22,-4.8218292949962054e-23,1.2606849786322982e-08,20.0,60.0,0.018930969759821892,-0.001957100350409746,-0.0006944549386389554,5.411255551734939e-05,2.3419202989316545e-05,6.6102593336836435e-06,-0.001957100350409746,0.00044049829011783004,2.3419202989316545e-05,-1.803751729312353e-05,-2.465179250066285e-06,-1.1193777210727665e-20,-0.0006944549386389554,2.3419202989316545e-05,5.066570156486705e-05,-2.879912020664621e-20,-7.938713224575622e-07,-6.838199055891891e-07,5.411255551734939e-05,-1.803751729312353e-05,-2.879912020664621e-20,9.493430752627319e-07,7.940933880509066e-23,4.473182625385172e-22,2.3419202989316545e-05,-2.465179250066285e-06,-7.938713224575622e-07,7.940933880509066e-23,8.35654034858635e-08,6.790209225199968e-23,6.6102593336836435e-06,-1.1193777210727665e-20,-6.838199055891891e-07,4.473182625385172e-22,6.790209225199968e-23,1.1590167936503804e-08,20.0,61.0,0.018631543964147568,-0.00192538823466748,-0.0006723577971570194,5.3225463489070535e-05,2.266374576720409e-05,6.2954850363894366e-06,-0.00192538823466748,0.0004333161050453782,2.266374576720409e-05,-1.774182055669371e-05,-2.3856573534430936e-06,-4.220970187713121e-21,-0.0006723577971570194,2.266374576720409e-05,4.823408380616456e-05,-1.0164395367051604e-20,-7.554581884505751e-07,-6.402187864296138e-07,5.3225463489070535e-05,-1.774182055669371e-05,-1.0164395367051604e-20,9.33780029299669e-07,0.0,1.7782322034116934e-22,2.266374576720409e-05,-2.3856573534430936e-06,-7.554581884505751e-07,0.0,7.952191083404614e-08,2.693434294422516e-23,6.2954850363894366e-06,-4.220970187713121e-21,-6.402187864296138e-07,1.7782322034116934e-22,2.693434294422516e-23,1.0670313521643493e-08,20.0,62.0,0.018341444432735443,-0.0018946875352412462,-0.000651298847515136,5.236698780208826e-05,2.194426087953616e-05,6.00038401898928e-06,-0.0018946875352412462,0.00042636439320631325,2.194426087953616e-05,-1.7455662600696087e-05,-2.309922365384409e-06,7.311981770316829e-21,-0.000651298847515136,2.194426087953616e-05,4.595563586917706e-05,2.456395547037471e-20,-7.194839781732298e-07,-6.000383905302442e-07,5.236698780208826e-05,-1.7455662600696087e-05,2.456395547037471e-20,9.187190812554036e-07,-5.823351512373315e-22,-2.9603869704509686e-22,2.194426087953616e-05,-2.309922365384409e-06,-7.194839781732298e-07,-5.823351512373315e-22,7.573515858894098e-08,-3.864397649571602e-23,6.00038401898928e-06,7.311981770316829e-21,-6.000383905302442e-07,-2.9603869704509686e-22,-3.864397649571602e-23,9.836695014087127e-09,20.0,63.0,0.018060239031910896,-0.0018649505218490958,-0.0006312140030786395,5.153576421434991e-05,2.1258503693388775e-05,5.723443337046774e-06,-0.0018649505218490958,0.0004196322406642139,2.1258503693388775e-05,-1.717858867777977e-05,-2.2377371351467445e-06,-6.577124692323663e-21,-0.0006312140030786395,2.1258503693388775e-05,4.3818476115120575e-05,-1.3129010682441655e-20,-6.85758152485505e-07,-5.629616453006747e-07,5.153576421434991e-05,-1.717858867777977e-05,-1.3129010682441655e-20,9.041362432071764e-07,-3.8381180422460484e-22,2.713239499417867e-22,2.1258503693388775e-05,-2.2377371351467445e-06,-6.85758152485505e-07,-3.8381180422460484e-22,7.218507391826279e-08,3.338309151778968e-23,5.723443337046774e-06,-6.577124692323663e-21,-5.629616453006747e-07,2.713239499417867e-22,3.338309151778968e-23,9.08002650845674e-09,20.0,64.0,0.017787525430321693,-0.001836132607422769,-0.0006120441830717027,5.0730519433273e-05,2.0604395103873685e-05,5.463286925078137e-06,-0.001836132607422769,0.0004131093737669289,2.0604395103873685e-05,-1.6910173144424334e-05,-2.168883838749025e-06,-3.536218121296934e-21,-0.0006120441830717027,2.0604395103873685e-05,4.18118252127897e-05,-4.446922973085077e-21,-6.541077937072259e-07,-5.287051862978842e-07,5.0730519433273e-05,-1.6910173144424334e-05,-4.446922973085077e-21,8.900091188479564e-07,-2.6469779601696886e-22,1.2264287964838993e-22,2.0604395103873685e-05,-2.168883838749025e-06,-6.541077937072259e-07,-2.6469779601696886e-22,6.88534527171214e-08,2.807641474203707e-23,5.463286925078137e-06,-3.536218121296934e-21,-5.287051862978842e-07,1.2264287964838993e-22,2.807641474203707e-23,8.392145645075288e-09,21.0,3.0,0.2154463827610016,-0.02964426949620247,-0.13636364042758942,0.0009410878992639482,0.006493506487458944,0.02380952425301075,-0.02964426949620247,0.007025964092463255,0.006493506487458944,-0.0002971856447402388,-0.0006493506371043622,4.7704895589362195e-18,-0.13636364042758942,0.006493506487458944,0.3744588792324066,6.079443011104552e-19,-0.006493506487458944,-0.1428571492433548,0.0009410878992639482,-0.0002971856447402388,6.079443011104552e-19,1.485928260080982e-05,-7.089742613920517e-22,-2.906638484750151e-19,0.006493506487458944,-0.0006493506371043622,-0.006493506487458944,-7.089742613920517e-22,0.0006493506371043622,2.168404344971009e-18,0.02380952425301075,4.7704895589362195e-18,-0.1428571492433548,-2.906638484750151e-19,2.168404344971009e-18,0.0714285746216774,21.0,4.0,0.1808488667011261,-0.023207226768136024,-0.08896104246377945,0.0007058159098960459,0.0038961039390414953,0.011904762126505375,-0.023207226768136024,0.0053668757900595665,0.0038961039390414953,-0.0002228892408311367,-0.00038961038808338344,7.589415207398531e-19,-0.08896104246377945,0.0038961039390414953,0.14264069497585297,8.239045120382231e-19,-0.002597402548417449,-0.0357142873108387,0.0007058159098960459,-0.0002228892408311367,8.239045120382231e-19,1.1144461495860014e-05,-3.748130808240509e-20,-1.343375823727297e-19,0.0038961039390414953,-0.00038961038808338344,-0.002597402548417449,-3.748130808240509e-20,0.0002597402490209788,1.734723475976807e-18,0.011904762126505375,7.589415207398531e-19,-0.0357142873108387,-1.343375823727297e-19,1.734723475976807e-18,0.011904762126505375,21.0,5.0,0.1558602899312973,-0.019085261970758438,-0.06270872056484222,0.0005646527279168367,0.002597402548417449,0.006802720949053764,-0.019085261970758438,0.004345448687672615,0.002597402548417449,-0.00017831138393376023,-0.0002597402490209788,-1.734723475976807e-18,-0.06270872056484222,0.002597402548417449,0.072170689702034,-6.2210935551011955e-19,-0.0012987012742087245,-0.013605441898107529,0.0005646527279168367,-0.00017831138393376023,-6.2210935551011955e-19,8.915569196688011e-06,1.8125874669142382e-20,1.0566982878711456e-19,0.002597402548417449,-0.0002597402490209788,-0.0012987012742087245,1.8125874669142382e-20,0.0001298701245104894,-3.2526065174565133e-19,0.006802720949053764,-1.734723475976807e-18,-0.013605441898107529,1.0566982878711456e-19,-3.2526065174565133e-19,0.003401360474526882,21.0,6.0,0.136943981051445,-0.01621359959244728,-0.04661409929394722,0.0004705439496319741,0.001855287584476173,0.004251700825989246,-0.01621359959244728,0.0036521286237984896,0.001855287584476173,-0.0001485928223701194,-0.00018552875553723425,9.75781955236954e-19,-0.04661409929394722,0.001855287584476173,0.04202999547123909,8.471029344889406e-20,-0.000742115022148937,-0.0063775512389838696,0.0004705439496319741,-0.0001485928223701194,8.471029344889406e-20,7.42964130040491e-06,-9.712556439276966e-22,-1.9851043847152684e-20,0.001855287584476173,-0.00018552875553723425,-0.000742115022148937,-9.712556439276966e-22,7.421150075970218e-05,-1.4907779871675686e-19,0.004251700825989246,9.75781955236954e-19,-0.0063775512389838696,-1.9851043847152684e-20,-1.4907779871675686e-19,0.0012755101779475808,21.0,7.0,0.12212184071540833,-0.014096152037382126,-0.03602350130677223,0.00040332338539883494,0.0013914656592532992,0.0028344672173261642,-0.014096152037382126,0.0031502740457654,0.0013914656592532992,-0.00012736527423840016,-0.00013914656301494688,-3.0899761915836876e-18,-0.03602350130677223,0.0013914656592532992,0.02674706280231476,-8.086295363528775e-19,-0.00046382189611904323,-0.003401360474526882,0.00040332338539883494,-0.00012736527423840016,-8.086295363528775e-19,6.368264166667359e-06,1.2960843409881204e-20,1.0649953617794499e-19,0.0013914656592532992,-0.00013914656301494688,-0.00046382189611904323,1.2960843409881204e-20,4.638218888430856e-05,2.371692252312041e-19,0.0028344672173261642,-3.0899761915836876e-18,-0.003401360474526882,1.0649953617794499e-19,2.371692252312041e-19,0.0005668934318237007,21.0,8.0,0.11019355058670044,-0.012469414621591568,-0.028679654002189636,0.00035290795494802296,0.0010822510812431574,0.0019841270986944437,-0.012469414621591568,0.002770017832517624,0.0010822510812431574,-0.00011144462041556835,-0.00010822511103469878,9.486769009248164e-19,-0.028679654002189636,0.0010822510812431574,0.01811482198536396,3.351750317725588e-19,-0.0003092146071139723,-0.0019841270986944437,0.00035290795494802296,-0.00011144462041556835,3.351750317725588e-19,5.572230747930007e-06,-1.0003166233437655e-20,-3.1977833129019714e-20,0.0010822510812431574,-0.00010822511103469878,-0.0003092146071139723,-1.0003166233437655e-20,3.092145925620571e-05,-5.421010862427522e-20,0.0019841270986944437,9.486769009248164e-19,-0.0019841270986944437,-3.1977833129019714e-20,-5.421010862427522e-20,0.00028344671591185033,21.0,9.0,0.10038689523935318,-0.011180124245584011,-0.023376623168587685,0.00031369595672003925,0.0008658008882775903,0.0014430014416575432,-0.011180124245584011,0.0024718581698834896,0.0008658008882775903,-9.9061886430718e-05,-8.658008300699294e-05,-1.0842021724855044e-19,-0.023376623168587685,0.0008658008882775903,0.012853019870817661,-2.583770860054267e-20,-0.00021645022206939757,-0.0012368584284558892,0.00031369595672003925,-9.9061886430718e-05,-2.583770860054267e-20,4.95309404868749e-06,-5.666165385561932e-21,1.1778076108126243e-20,0.0008658008882775903,-8.658008300699294e-05,-0.00021645022206939757,-5.666165385561932e-21,2.1645020751748234e-05,-4.2351647362715017e-20,0.0014430014416575432,-1.0842021724855044e-19,-0.0012368584284558892,1.1778076108126243e-20,-4.2351647362715017e-20,0.00015460730355698615,21.0,10.0,0.09218212962150574,-0.01013294979929924,-0.019421488046646118,0.00028232636395841837,0.0007083825184963644,0.0010822510812431574,-0.01013294979929924,0.0022317562252283096,0.0007083825184963644,-8.915569196688011e-05,-7.083825039444491e-05,1.8973538018496328e-19,-0.019421488046646118,0.0007083825184963644,0.009456578642129898,7.058159622209085e-20,-0.00015741834067739546,-0.000811688310932368,0.00028232636395841837,-8.915569196688011e-05,7.058159622209085e-20,4.457784598344006e-06,-9.837563503503867e-22,-4.829461290751391e-21,0.0007083825184963644,-7.083825039444491e-05,-0.00015741834067739546,-9.837563503503867e-22,1.5741834431537427e-05,-3.218725199566341e-20,0.0010822510812431574,1.8973538018496328e-19,-0.000811688310932368,-4.829461290751391e-21,-3.218725199566341e-20,9.018759010359645e-05,21.0,11.0,0.08521649986505508,-0.009265437722206116,-0.016392698511481285,0.00025666033616289496,0.0005903187557123601,0.0008325008093379438,-0.009265437722206116,0.0020342357456684113,0.0005903187557123601,-8.105063170660287e-05,-5.90318777540233e-05,3.1170812458958252e-19,-0.016392698511481285,0.0005903187557123601,0.0071635437197983265,1.6652638533204164e-19,-0.0001180637555080466,-0.0005550005589611828,0.00025666033616289496,-8.105063170660287e-05,1.6652638533204164e-19,4.052531494380673e-06,-2.5586305874947287e-21,-1.2625542032732427e-20,0.0005903187557123601,-5.90318777540233e-05,-0.0001180637555080466,-2.5586305874947287e-21,1.180637536890572e-05,2.541098841762901e-21,0.0008325008093379438,3.1170812458958252e-19,-0.0005550005589611828,-1.2625542032732427e-20,2.541098841762901e-21,5.550005516852252e-05,21.0,12.0,0.07922908663749695,-0.00853494368493557,-0.014021692797541618,0.00023527197481598705,0.0004995004856027663,0.0006541077746078372,-0.00853494368493557,0.0018688786076381803,0.0004995004856027663,-7.42964111850597e-05,-4.995004928787239e-05,-8.131516293641283e-20,-0.014021692797541618,0.0004995004856027663,0.005558294709771872,-3.129417481509317e-20,-9.081827010959387e-05,-0.0003924646880477667,0.00023527197481598705,-7.42964111850597e-05,-3.129417481509317e-20,3.714820650202455e-06,1.5524395883579337e-21,1.1314045555942467e-21,0.0004995004856027663,-4.995004928787239e-05,-9.081827010959387e-05,1.5524395883579337e-21,9.081827556656208e-06,8.470329472543003e-21,0.0006541077746078372,-8.131516293641283e-20,-0.0003924646880477667,1.1314045555942467e-21,8.470329472543003e-21,3.567860767361708e-05,21.0,13.0,0.074027419090271,-0.00791134312748909,-0.012130726128816605,0.00021717413619626313,0.00042814327753148973,0.0005232862313278019,-0.00791134312748909,0.0017284121131524444,0.00042814327753148973,-6.858130655018613e-05,-4.2814328480744734e-05,1.885013430333078e-19,-0.012130726128816605,0.00042814327753148973,0.004400361329317093,1.773932638343039e-19,-7.135721534723416e-05,-0.00028542886138893664,0.00021717413619626313,-6.858130655018613e-05,1.773932638343039e-19,3.429065145610366e-06,-5.082197683525802e-21,-1.0547607788449535e-20,0.00042814327753148973,-4.2814328480744734e-05,-7.135721534723416e-05,-5.082197683525802e-21,7.1357212618750054e-06,3.7418007762912044e-21,0.0005232862313278019,1.885013430333078e-19,-0.00028542886138893664,-1.0547607788449535e-20,3.7418007762912044e-21,2.3785738449078053e-05,21.0,14.0,0.06946640461683273,-0.0073727513663470745,-0.010598329827189445,0.00020166169269941747,0.0003710575110744685,0.00042517005931586027,-0.0073727513663470745,0.0016076045576483011,0.0003710575110744685,-6.368263711920008e-05,-3.710575037985109e-05,1.9963581446373097e-19,-0.010598329827189445,0.0003710575110744685,0.00354377762414515,1.5603478833393703e-19,-5.7085770095000044e-05,-0.00021258502965793014,0.00020166169269941747,-6.368263711920008e-05,1.5603478833393703e-19,3.1841320833336795e-06,-4.870439446712227e-21,-8.48423159983015e-21,0.0003710575110744685,-3.710575037985109e-05,-5.7085770095000044e-05,-4.870439446712227e-21,5.708577191398945e-06,-4.6078726101248625e-21,0.00042517005931586027,1.9963581446373097e-19,-0.00021258502965793014,-8.48423159983015e-21,-4.6078726101248625e-21,1.635269472899381e-05,21.0,15.0,0.06543458253145218,-0.006902879569679499,-0.00933919008821249,0.00018821758567355573,0.0003246753185521811,0.00035014006425626576,-0.006902879569679499,0.0015025953762233257,0.0003246753185521811,-5.943713040323928e-05,-3.246753112762235e-05,1.196063357684699e-19,-0.00933919008821249,0.0003246753185521811,0.002896333346143365,1.2578126489057238e-19,-4.638218888430856e-05,-0.00016160310769919306,0.00018821758567355573,-5.943713040323928e-05,1.2578126489057238e-19,2.971856474687229e-06,-2.964615315390051e-21,-6.927296741246355e-21,0.0003246753185521811,-3.246753112762235e-05,-4.638218888430856e-05,-2.964615315390051e-21,4.638218797481386e-06,2.7056556809758855e-21,0.00035014006425626576,1.196063357684699e-19,-0.00016160310769919306,-6.927296741246355e-21,2.7056556809758855e-21,1.154307847173186e-05,21.0,16.0,0.06184493005275726,-0.0064893546514213085,-0.00829195324331522,0.00017645397747401148,0.00028647822909988463,0.0002917833917308599,-0.0064893546514213085,0.0014104737201705575,0.00028647822909988463,-5.5722310207784176e-05,-2.8647822546190582e-05,1.3519641556840994e-19,-0.00829195324331522,0.00028647822909988463,0.0023977772798389196,1.1136235651573378e-19,-3.819709672825411e-05,-0.0001250500208698213,0.00017645397747401148,-5.5722310207784176e-05,1.1136235651573378e-19,2.7861153739650035e-06,-2.541098841762901e-21,-5.730091341172579e-21,0.00028647822909988463,-2.8647822546190582e-05,-3.819709672825411e-05,-2.541098841762901e-21,3.819709490926471e-06,-2.7459447890241165e-21,0.0002917833917308599,1.3519641556840994e-19,-0.0001250500208698213,-5.730091341172579e-21,-2.7459447890241165e-21,8.336667633557227e-06,21.0,17.0,0.05862851440906525,-0.00612260727211833,-0.007411577273160219,0.00016607432917226106,0.00025464731152169406,0.000245712319156155,-0.00612260727211833,0.00132900255266577,0.00025464731152169406,-5.2444527682382613e-05,-2.5464731152169406e-05,1.4568966692773966e-19,-0.007411577273160219,0.00025464731152169406,0.0020075812935829163,9.749642484273541e-20,-3.183091394021176e-05,-9.828493057284504e-05,0.00016607432917226106,-5.2444527682382613e-05,9.749642484273541e-20,2.6222262476949254e-06,-1.8634777750073242e-21,-4.9848795613415115e-21,0.00025464731152169406,-2.5464731152169406e-05,-3.183091394021176e-05,-1.8634777750073242e-21,3.183091394021176e-06,-5.717472393966527e-21,0.000245712319156155,1.4568966692773966e-19,-9.828493057284504e-05,-4.9848795613415115e-21,-5.717472393966527e-21,6.142808160802815e-06,21.0,18.0,0.05573001503944397,-0.005795120261609554,-0.006664388347417116,0.00015684797836001962,0.00022784233442507684,0.0002088554756483063,-0.005795120261609554,0.0012564349453896284,0.00022784233442507684,-4.9530943215359e-05,-2.2784233806305565e-05,8.809142651444724e-20,-0.006664388347417116,0.00022784233442507684,0.0016977883642539382,1.0039514359010825e-19,-2.680498073459603e-05,-7.832080154912546e-05,0.00015684797836001962,-4.9530943215359e-05,1.0039514359010825e-19,2.476547024343745e-06,-3.0673638298281383e-21,-4.049000630833054e-21,0.00022784233442507684,-2.2784233806305565e-05,-2.680498073459603e-05,-3.0673638298281383e-21,2.680498027984868e-06,-8.470329472543003e-22,0.0002088554756483063,8.809142651444724e-20,-7.832080154912546e-05,-4.049000630833054e-21,-8.470329472543003e-22,4.607105893228436e-06,21.0,19.0,0.05310452729463577,-0.005500906612724066,-0.006024802103638649,0.0001485928223701194,0.00020505809516180307,0.00017901897081173956,-0.005500906612724066,0.0011913860216736794,0.00020505809516180307,-4.6924051275709644e-05,-2.0505809516180307e-05,6.945670167485263e-20,-0.006024802103638649,0.00020505809516180307,0.001448681578040123,8.464067456812036e-20,-2.2784233806305565e-05,-6.318316445685923e-05,0.0001485928223701194,-4.6924051275709644e-05,8.464067456812036e-20,2.346202563785482e-06,-2.3899828797103363e-21,-3.3739027072838337e-21,0.00020505809516180307,-2.0505809516180307e-05,-2.2784233806305565e-05,-2.3899828797103363e-21,2.2784233806305565e-06,-2.117582368135751e-22,0.00017901897081173956,6.945670167485263e-20,-6.318316445685923e-05,-3.3739027072838337e-21,-2.117582368135751e-22,3.5101759294775547e-06,21.0,20.0,0.05071522668004036,-0.005235137417912483,-0.005473098251968622,0.00014116318197920918,0.00018552875553723425,0.00015460730355698615,-0.005235137417912483,0.0011327443644404411,0.00018552875553723425,-4.4577845983440056e-05,-1.8552875189925544e-05,-2.846030702774449e-19,-0.005473098251968622,0.00018552875553723425,0.0012460806174203753,-2.9623858051452794e-19,-1.9529343262547627e-05,-5.153576421434991e-05,0.00014116318197920918,-4.4577845983440056e-05,-2.9623858051452794e-19,2.228892299172003e-06,6.336899406314116e-21,1.1087251049673753e-20,0.00018552875553723425,-1.8552875189925544e-05,-1.9529343262547627e-05,6.336899406314116e-21,1.9529343262547627e-06,5.929230630780102e-21,0.00015460730355698615,-2.846030702774449e-19,-5.153576421434991e-05,1.1087251049673753e-20,5.929230630780102e-21,2.712408786464948e-06,21.0,21.0,0.04853161796927452,-0.004993876907974482,-0.004993876907974482,0.00013444112846627831,0.00016866250371094793,0.00013444112846627831,-0.004993876907974482,0.0010796072892844677,0.00016866250371094793,-4.2455092625459656e-05,-1.6866250007296912e-05,4.404571325722362e-20,-0.004993876907974482,0.00016866250371094793,0.0010796072892844677,6.810576710053722e-20,-1.6866250007296912e-05,-4.2455092625459656e-05,0.00013444112846627831,-4.2455092625459656e-05,6.810576710053722e-20,2.122754722222453e-06,-1.6992624305247663e-21,-2.572350961229312e-21,0.00016866250371094793,-1.6866250007296912e-05,-1.6866250007296912e-05,-1.6992624305247663e-21,1.6866250689417939e-06,6.352747104407253e-22,0.00013444112846627831,4.404571325722362e-20,-4.2455092625459656e-05,-2.572350961229312e-21,6.352747104407253e-22,2.122754722222453e-06,21.0,22.0,0.04652824252843857,-0.00477388221770525,-0.004574970342218876,0.00012833016808144748,0.0001539961958769709,0.00011763598740799353,-0.00477388221770525,0.001031234161928296,0.0001539961958769709,-4.0525315853301436e-05,-1.539962067909073e-05,4.1504614415460717e-20,-0.004574970342218876,0.0001539961958769709,0.0009415462263859808,6.118083073209348e-20,-1.4666305105492938e-05,-3.5290795494802296e-05,0.00012833016808144748,-4.0525315853301436e-05,6.118083073209348e-20,2.0262657471903367e-06,-1.588278056774878e-21,-2.1872852594404146e-21,0.0001539961958769709,-1.539962067909073e-05,-1.4666305105492938e-05,-1.588278056774878e-21,1.4666304650745587e-06,2.6469779601696886e-22,0.00011763598740799353,4.1504614415460717e-20,-3.5290795494802296e-05,-2.1872852594404146e-21,2.6469779601696886e-22,1.6805140603537438e-06,21.0,23.0,0.04468367248773575,-0.0045724594965577126,-0.0042066629976034164,0.00012275059998501092,0.00014116318197920918,0.00010351966921007261,-0.0045724594965577126,0.000987011706456542,0.00014116318197920918,-3.876334449159913e-05,-1.4116318197920918e-05,-9.317362419797304e-20,-0.0042066629976034164,0.00014116318197920918,0.0008260796312242746,-1.1192016059193009e-19,-1.2833016626245808e-05,-2.9577047826023772e-05,0.00012275059998501092,-3.876334449159913e-05,-1.1192016059193009e-19,1.9381673155294266e-06,2.4798159867033022e-21,3.95426260130159e-21,0.00014116318197920918,-1.4116318197920918e-05,-1.2833016626245808e-05,2.4798159867033022e-21,1.2833016853619483e-06,1.2705494208814505e-21,0.00010351966921007261,-9.317362419797304e-20,-2.9577047826023772e-05,3.95426260130159e-21,1.2705494208814505e-21,1.3444113164950977e-06,21.0,24.0,0.04297975078225136,-0.004387351684272289,-0.0038811189588159323,0.00011763598740799353,0.0001298701245104894,9.157509339274839e-05,-0.004387351684272289,0.0009464273462072015,0.0001298701245104894,-3.714820559252985e-05,-1.2987013178644702e-05,3.5575383784680614e-20,-0.0038811189588159323,0.0001298701245104894,0.0007287639891728759,5.959840837088539e-20,-1.1293054740235675e-05,-2.4975024643936194e-05,0.00011763598740799353,-3.714820559252985e-05,5.959840837088539e-20,1.8574103251012275e-06,-1.9823385399317226e-21,-1.69835346081356e-21,0.0001298701245104894,-1.2987013178644702e-05,-1.1293054740235675e-05,-1.9823385399317226e-21,1.1293054740235675e-06,-1.5881867761018131e-22,9.157509339274839e-05,3.5575383784680614e-20,-2.4975024643936194e-05,-1.69835346081356e-21,-1.5881867761018131e-22,1.08587062186416e-06,21.0,25.0,0.041400983929634094,-0.004216652829200029,-0.003591963555663824,0.00011293054558336735,0.00011988011829089373,8.140008139889687e-05,-0.004216652829200029,0.0009090497624129057,0.00011988011829089373,-3.5662276786752045e-05,-1.1988012374786194e-05,2.879912020664621e-20,-0.003591963555663824,0.00011988011829089373,0.0006461654556915164,5.182634211995932e-20,-9.990009857574478e-06,-2.1234804080449976e-05,0.00011293054558336735,-3.5662276786752045e-05,5.182634211995932e-20,1.7831139302870724e-06,-1.5953521069890187e-21,-1.4649305034570723e-21,0.00011988011829089373,-1.1988012374786194e-05,-9.990009857574478e-06,-1.5953521069890187e-21,9.990010312321829e-07,1.0587911840678754e-22,8.140008139889687e-05,2.879912020664621e-20,-2.1234804080449976e-05,-1.4649305034570723e-21,1.0587911840678754e-22,8.847835033520823e-07,21.0,26.0,0.03993407264351845,-0.0040587433613836765,-0.0033339676447212696,0.00010858706809813157,0.00011100011033704504,7.26786456652917e-05,-0.0040587433613836765,0.0008745132363401353,0.00011100011033704504,-3.4290653275093064e-05,-1.1100010851805564e-05,2.710505431213761e-20,-0.0033339676447212696,0.00011100011033704504,0.0005756016471423209,4.8256169203869365e-20,-8.880008863343392e-06,-1.8169661416322924e-05,0.00010858706809813157,-3.4290653275093064e-05,4.8256169203869365e-20,1.714532572805183e-06,-1.4326791433483489e-21,-1.3379841288243248e-21,0.00011100011033704504,-1.1100010851805564e-05,-8.880008863343392e-06,-1.4326791433483489e-21,8.880008977030229e-07,1.0587911840678754e-22,7.26786456652917e-05,2.710505431213761e-20,-1.8169661416322924e-05,-1.3379841288243248e-21,1.0587911840678754e-22,7.267864248206024e-07,21.0,27.0,0.03856753557920456,-0.003912237007170916,-0.003102808492258191,0.00010456531890667975,0.00010307152842869982,6.516016583191231e-05,-0.003912237007170916,0.0008425056003034115,0.00010307152842869982,-3.302062759757973e-05,-1.0307153388566803e-05,2.752857078576476e-20,-0.003102808492258191,0.00010307152842869982,0.0005149566568434238,4.404493777539935e-20,-7.928579179861117e-06,-1.5638439435861073e-05,0.00010456531890667975,-3.302062759757973e-05,4.404493777539935e-20,1.6510314253537217e-06,-1.2191323506033588e-21,-1.2251390025929757e-21,0.00010307152842869982,-1.0307153388566803e-05,-7.928579179861117e-06,-1.2191323506033588e-21,7.928579179861117e-07,-2.117582368135751e-22,6.516016583191231e-05,2.752857078576476e-20,-1.5638439435861073e-05,-1.2251390025929757e-21,-2.117582368135751e-22,6.014784617036639e-07,21.0,28.0,0.03729141876101494,-0.003775941440835595,-0.002894888399168849,0.00010083084634970874,9.596315067028627e-05,5.864414561074227e-05,-0.003775941440835595,0.0008127588662318885,9.596315067028627e-05,-3.184131855960004e-05,-9.596315067028627e-06,2.0328790734103208e-20,-0.002894888399168849,9.596315067028627e-05,0.00046254604239948094,4.0245852318308147e-20,-7.10838139639236e-06,-1.353326479147654e-05,0.00010083084634970874,-3.184131855960004e-05,4.0245852318308147e-20,1.5920660416668397e-06,-1.0539789558411845e-21,-1.1002246326778817e-21,9.596315067028627e-05,-9.596315067028627e-06,-7.10838139639236e-06,-1.0539789558411845e-21,7.108381510079198e-07,1.3234889800848443e-22,5.864414561074227e-05,2.0328790734103208e-20,-1.353326479147654e-05,-1.1002246326778817e-21,1.3234889800848443e-22,5.012320229980105e-07,21.0,29.0,0.03609703481197357,-0.003648824989795685,-0.002707192674279213,9.735392086440697e-05,8.956560486694798e-05,5.296890594763681e-05,-0.003648824989795685,0.0007850415422581136,8.956560486694798e-05,-3.07433438138105e-05,-8.956561032391619e-06,2.244637310223896e-20,-0.002707192674279213,8.956560486694798e-05,0.00041701740701682866,3.692753651169498e-20,-6.397543529601535e-06,-1.1770868695748504e-05,9.735392086440697e-05,-3.07433438138105e-05,3.692753651169498e-20,1.5371671224784222e-06,-9.158712974939398e-22,-9.91743712166156e-22,8.956560486694798e-05,-8.956561032391619e-06,-6.397543529601535e-06,-9.158712974939398e-22,6.397543188541022e-07,-1.5881867761018131e-22,5.296890594763681e-05,2.244637310223896e-20,-1.1770868695748504e-05,-9.91743712166156e-22,-1.5881867761018131e-22,4.203881474040827e-07,21.0,30.0,0.0349767729640007,-0.0035299903247505426,-0.002537180669605732,9.410879283677787e-05,8.378717757295817e-05,4.800307215191424e-05,-0.0035299903247505426,0.0007591527537442744,8.378717757295817e-05,-2.971856520161964e-05,-8.378718121093698e-06,2.329340604949326e-20,-0.002537180669605732,8.378717757295817e-05,0.00037727662129327655,3.401190902937882e-20,-5.778426384495106e-06,-1.0286372344125994e-05,9.410879283677787e-05,-2.971856520161964e-05,3.401190902937882e-20,1.4859282373436145e-06,-7.996639829756663e-22,-8.970782830815213e-22,8.378717757295817e-05,-8.378718121093698e-06,-5.778426384495106e-06,-7.996639829756663e-22,5.778426270808268e-07,-3.705769144237564e-22,4.800307215191424e-05,2.329340604949326e-20,-1.0286372344125994e-05,-8.970782830815213e-22,-3.705769144237564e-22,3.5470250736580056e-07,21.0,31.0,0.03392394259572029,-0.003418653504922986,-0.0023826980032026768,9.107302321353927e-05,7.855048170313239e-05,4.363915650174022e-05,-0.003418653504922986,0.0007349173538386822,7.855048170313239e-05,-2.8759901397279464e-05,-7.85504835221218e-06,1.9058241313221758e-20,-0.0023826980032026768,7.855048170313239e-05,0.0003424319438636303,3.1436055677191623e-20,-5.236698598309886e-06,-9.028791282617021e-06,9.107302321353927e-05,-2.8759901397279464e-05,3.1436055677191623e-20,1.4379951380760758e-06,-7.013182464000242e-22,-8.140958208943374e-22,7.855048170313239e-05,-7.85504835221218e-06,-5.236698598309886e-06,-7.013182464000242e-22,5.236698825683561e-07,-1.852884572118782e-22,4.363915650174022e-05,1.9058241313221758e-20,-9.028791282617021e-06,-8.140958208943374e-22,-1.852884572118782e-22,3.009596980518836e-07,21.0,32.0,0.03293263539671898,-0.003314126515761018,-0.002241909271106124,8.822698873700574e-05,7.378984446404502e-05,3.97886433347594e-05,-0.003314126515761018,0.0007121817907318473,7.378984446404502e-05,-2.7861155103892088e-05,-7.378984719252912e-06,1.9481757786848908e-20,-0.002241909271106124,7.378984446404502e-05,0.0003117515880148858,2.9148839891171414e-20,-4.7606354200979695e-06,-7.95772848505294e-06,8.822698873700574e-05,-2.7861155103892088e-05,2.9148839891171414e-20,1.3930576869825018e-06,-6.176382039806843e-22,-7.410469981482841e-22,7.378984446404502e-05,-7.378984719252912e-06,-4.7606354200979695e-06,-6.176382039806843e-22,4.760635192724294e-07,-3.1763735522036263e-22,3.97886433347594e-05,1.9481757786848908e-20,-7.95772848505294e-06,-7.410469981482841e-22,-3.1763735522036263e-22,2.5670092895779817e-07,21.0,33.0,0.03199760988354683,-0.0032158030662685633,-0.002113241935148835,8.555344538763165e-05,6.94492700858973e-05,3.637818736024201e-05,-0.0032158030662685633,0.0006908109644427896,6.94492700858973e-05,-2.701687662920449e-05,-6.944926553842379e-06,1.6517142471458857e-20,-0.002113241935148835,6.94492700858973e-05,0.0002846313000191003,2.7108372728110626e-20,-4.340579380368581e-06,-7.040939635771792e-06,8.555344538763165e-05,-2.701687662920449e-05,2.7108372728110626e-20,1.3508438314602245e-06,-5.46075872859106e-22,-6.764879343295428e-22,6.94492700858973e-05,-6.944926553842379e-06,-4.340579380368581e-06,-5.46075872859106e-22,4.340579096151487e-07,-1.7205356741102976e-22,3.637818736024201e-05,1.6517142471458857e-20,-7.040939635771792e-06,-6.764879343295428e-22,-1.7205356741102976e-22,2.200293636178685e-07,21.0,34.0,0.031114211305975914,-0.0031231464818120003,-0.0019953434821218252,8.303716458613053e-05,6.548073724843562e-05,3.3346670534228906e-05,-0.0031231464818120003,0.0006706856074742973,6.548073724843562e-05,-2.6222263841191307e-05,-6.548073997691972e-06,9.105604182983729e-21,-0.0019953434821218252,6.548073724843562e-05,0.00026056909700855613,3.012594375857541e-20,-3.968529654230224e-06,-6.252500952541595e-06,8.303716458613053e-05,-2.6222263841191307e-05,3.012594375857541e-20,1.3111131238474627e-06,-9.691699209378412e-22,-6.1921956086217755e-22,6.548073724843562e-05,-6.548073997691972e-06,-3.968529654230224e-06,-9.691699209378412e-22,3.968529540543386e-07,1.9852334701272664e-22,3.3346670534228906e-05,9.105604182983729e-21,-6.252500952541595e-06,-6.1921956086217755e-22,1.9852334701272664e-22,1.8946973057154537e-07,21.0,35.0,0.030278272926807404,-0.0030356806237250566,-0.0018870447529479861,8.066467853495851e-05,6.184291851241142e-05,3.0642888305010274e-05,-0.0030356806237250566,0.0006516998400911689,6.184291851241142e-05,-2.5473056666669436e-05,-6.184292033140082e-06,1.122318655111948e-20,-0.0018870447529479861,6.184291851241142e-05,0.00023914562189020216,2.7950403817598395e-20,-3.637818736024201e-06,-5.571434030571254e-06,8.066467853495851e-05,-2.5473056666669436e-05,2.7950403817598395e-20,1.2736527423840016e-06,-8.630227160410233e-22,-5.682404661586646e-22,6.184291851241142e-05,-6.184292033140082e-06,-3.637818736024201e-06,-8.630227160410233e-22,3.63781879286762e-07,-1.3234889800848443e-23,3.0642888305010274e-05,1.122318655111948e-20,-5.571434030571254e-06,-5.682404661586646e-22,-1.3234889800848443e-23,1.6386570678150747e-07,21.0,36.0,0.029486075043678284,-0.002952981274574995,-0.0017873307224363089,7.842398918000981e-05,5.8500059822108597e-05,2.822371243382804e-05,-0.002952981274574995,0.0006337595405057073,5.8500059822108597e-05,-2.47654716076795e-05,-5.8500058912613895e-06,6.988021814847978e-21,-0.0017873307224363089,5.8500059822108597e-05,0.00022000868921168149,2.6005041422348465e-20,-3.3428605092922226e-06,-4.980654921382666e-06,7.842398918000981e-05,-2.47654716076795e-05,2.6005041422348465e-20,1.2382735121718724e-06,-7.71018815298183e-22,-5.227100905254983e-22,5.8500059822108597e-05,-5.8500058912613895e-06,-3.3428605092922226e-06,-7.71018815298183e-22,3.3428605661356414e-07,1.9852334701272664e-22,2.822371243382804e-05,6.988021814847978e-21,-4.980654921382666e-06,-5.227100905254983e-22,1.9852334701272664e-22,1.4230442957341438e-07,21.0,37.0,0.028734268620610237,-0.002874668687582016,-0.0016953174490481615,7.630442269146442e-05,5.5421107390429825e-05,2.6052657631225884e-05,-0.002874668687582016,0.0006167807150632143,5.5421107390429825e-05,-2.4096134438877925e-05,-5.542111011891393e-06,1.736802859402749e-20,-0.0016953174490481615,5.5421107390429825e-05,0.00020286110520828515,2.964615315390051e-20,-3.078950385315693e-06,-4.466169684747001e-06,7.630442269146442e-05,-2.4096134438877925e-05,2.964615315390051e-20,1.2048067219438963e-06,-7.146840492458159e-22,-5.189050294154956e-22,5.5421107390429825e-05,-5.542111011891393e-06,-3.078950385315693e-06,-7.146840492458159e-22,3.0789504990025307e-07,-2.9458739492788194e-22,2.6052657631225884e-05,1.736802859402749e-20,-4.466169684747001e-06,-5.189050294154956e-22,-2.9458739492788194e-22,1.2406027849465318e-07,21.0,38.0,0.028019843623042107,-0.0028004031628370285,-0.0016102318186312914,7.42964111850597e-05,5.2578998293029144e-05,2.4098708308883943e-05,-0.0028004031628370285,0.0006006879848428071,5.2578998293029144e-05,-2.3462025637854822e-05,-5.2578998293029144e-06,-3.6123390940496995e-20,-0.0016102318186312914,5.2578998293029144e-05,0.00018745084526017308,-5.844527336054672e-20,-2.8421081879059784e-06,-4.0164513848139904e-06,7.42964111850597e-05,-2.3462025637854822e-05,-5.844527336054672e-20,1.173101281892741e-06,6.088049308390284e-22,1.3749809732162703e-21,5.2578998293029144e-05,-5.2578998293029144e-06,-2.8421081879059784e-06,6.088049308390284e-22,2.8421081310625596e-07,3.4344764710529475e-22,2.4098708308883943e-05,-3.6123390940496995e-20,-4.0164513848139904e-06,1.3749809732162703e-21,3.4344764710529475e-22,1.0855274013010785e-07,21.0,39.0,0.027340080589056015,-0.0027298787608742714,-0.001531395479105413,7.23913763067685e-05,4.995004928787239e-05,2.2335389076033607e-05,-0.0027298787608742714,0.0005854138289578259,4.995004928787239e-05,-2.2860434910398908e-05,-4.995004928787239e-06,-2.0489048950336786e-22,-0.001531395479105413,4.995004928787239e-05,0.00017356326861772686,5.082197683525802e-21,-2.6289499146514572e-06,-3.6219548746885266e-06,7.23913763067685e-05,-2.2860434910398908e-05,5.082197683525802e-21,1.1430217909946805e-06,-3.441071348220595e-22,7.456128386874342e-25,4.995004928787239e-05,-4.995004928787239e-06,-2.6289499146514572e-06,-3.441071348220595e-22,2.6289498578080384e-07,-1.642634492205583e-23,2.2335389076033607e-05,-2.0489048950336786e-22,-3.6219548746885266e-06,7.456128386874342e-25,-1.642634492205583e-23,9.531460420930671e-08,21.0,40.0,0.02669251523911953,-0.002662819577381015,-0.0014582107542082667,7.058159098960459e-05,4.7513462050119415e-05,2.0740002582897432e-05,-0.002662819577381015,0.0005708972457796335,4.7513462050119415e-05,-2.2288922991720028e-05,-4.751346295961412e-06,-2.543371972860288e-21,-0.0014582107542082667,4.7513462050119415e-05,0.00016101478831842542,1.4399560103323106e-20,-2.436587692500325e-06,-3.2747373097663512e-06,7.058159098960459e-05,-2.2288922991720028e-05,1.4399560103323106e-20,1.1144461495860014e-06,-1.9322939109238726e-21,1.6090575112990644e-22,4.7513462050119415e-05,-4.751346295961412e-06,-2.436587692500325e-06,-1.9322939109238726e-21,2.436587749343744e-07,-3.4236209876906373e-23,2.0740002582897432e-05,-2.543371972860288e-21,-3.2747373097663512e-06,1.6090575112990644e-22,-3.4236209876906373e-23,8.396762751772258e-08,21.0,41.0,0.026074914261698723,-0.002598976483568549,-0.0013901502825319767,6.886009214213118e-05,4.525091571849771e-05,1.929302561620716e-05,-0.002598976483568549,0.0005570832872763276,4.525091571849771e-05,-2.1745290723629296e-05,-4.525091753748711e-06,7.721291578482095e-21,-0.0013901502825319767,4.525091571849771e-05,0.00014964777801651508,3.006966962752766e-20,-2.2625458768743556e-06,-2.968157787108794e-06,6.886009214213118e-05,-2.1745290723629296e-05,3.006966962752766e-20,1.0872645361814648e-06,-1.5881867761018131e-21,-2.5584957869432445e-22,4.525091571849771e-05,-4.525091753748711e-06,-2.2625458768743556e-06,-1.5881867761018131e-21,2.2625458484526462e-07,-1.0187598378981472e-22,1.929302561620716e-05,7.721291578482095e-21,-2.968157787108794e-06,-2.5584957869432445e-22,-1.0187598378981472e-22,7.420394609880532e-08,21.0,42.0,0.025485243648290634,-0.0025381234008818865,-0.0013267463073134422,6.722056423313916e-05,4.314622128731571e-05,1.7977592506213114e-05,-0.0025381234008818865,0.0005439221276901662,4.314622128731571e-05,-2.1227546312729828e-05,-4.314622401579982e-06,5.579322326457018e-21,-0.0013267463073134422,4.314622128731571e-05,0.00013932633737567812,1.5670109524204556e-20,-2.1046937490609707e-06,-2.696638830457232e-06,6.722056423313916e-05,-2.1227546312729828e-05,1.5670109524204556e-20,1.0613773611112265e-06,-5.293955920339377e-22,-2.5937579956243685e-22,4.314622128731571e-05,-4.314622401579982e-06,-2.1046937490609707e-06,-5.293955920339377e-22,2.1046938059043896e-07,-2.7018482848376033e-23,1.7977592506213114e-05,5.579322326457018e-21,-2.696638830457232e-06,-2.5937579956243685e-22,-2.7018482848376033e-23,6.577167965815534e-08,21.0,43.0,0.024921651929616928,-0.0024800552055239677,-0.0012675836915150285,6.565729563590139e-05,4.1185030568158254e-05,1.67790858540684e-05,-0.0024800552055239677,0.0005313685978762805,4.1185030568158254e-05,-2.0733883502543904e-05,-4.118503056815825e-06,-2.2651359605580823e-21,-0.0012675836915150285,4.1185030568158254e-05,0.00012993294512853026,-1.1011428314305904e-20,-1.9611918560258346e-06,-2.455476078466745e-06,6.565729563590139e-05,-2.0733883502543904e-05,-1.1011428314305904e-20,1.03669412965246e-06,8.337980574534519e-22,7.240424134495359e-23,4.1185030568158254e-05,-4.118503056815825e-06,-1.9611918560258346e-06,8.337980574534519e-22,1.961191884447544e-07,4.318540455086269e-23,1.67790858540684e-05,-2.2651359605580823e-21,-2.455476078466745e-06,7.240424134495359e-23,4.318540455086269e-23,5.8463715646439596e-08,21.0,44.0,0.024382445961236954,-0.0024245847016572952,-0.0012122923508286476,6.416508404072374e-05,3.9354585169348866e-05,1.5684798199799843e-05,-0.0024245847016572952,0.0005193814286030829,3.9354585169348866e-05,-2.0262657926650718e-05,-3.935458607884357e-06,7.041674655770985e-21,-0.0012122923508286476,3.9354585169348866e-05,0.00012136557052144781,2.329340604949326e-20,-1.8304458535567392e-06,-2.240685489596217e-06,6.416508404072374e-05,-2.0262657926650718e-05,2.329340604949326e-20,1.0131328735951683e-06,-9.529120656610879e-22,-2.69677767626546e-22,3.9354585169348866e-05,-3.935458607884357e-06,-1.8304458535567392e-06,-9.529120656610879e-22,1.830445768291611e-07,-4.723189811863008e-23,1.5684798199799843e-05,7.041674655770985e-21,-2.240685489596217e-06,-2.69677767626546e-22,-4.723189811863008e-23,5.2108966031028103e-08,21.0,45.0,0.0238660778850317,-0.0023715414572507143,-0.0011605415493249893,6.273919279919937e-05,3.7643516407115385e-05,1.4683640984003432e-05,-0.0023715414572507143,0.0005079233087599277,3.7643516407115385e-05,-1.981237619474996e-05,-3.7643515042873332e-06,-5.1304702153961635e-21,-0.0011605415493249893,3.7643516407115385e-05,0.0001135353377321735,4.235164736271502e-21,-1.7110688759203185e-06,-2.048880105576245e-06,6.273919279919937e-05,-1.981237619474996e-05,4.235164736271502e-21,9.906187870001304e-07,-8.07328277851755e-22,1.2613818979079216e-22,3.7643516407115385e-05,-3.7643515042873332e-06,-1.7110688759203185e-06,-8.07328277851755e-22,1.711068904342028e-07,9.857143283606942e-23,1.4683640984003432e-05,-5.1304702153961635e-21,-2.048880105576245e-06,1.2613818979079216e-22,9.857143283606942e-23,4.656545726788863e-08,21.0,46.0,0.023371126502752304,-0.0023207697086036205,-0.0011120354756712914,6.137529999250546e-05,3.6041663406649604e-05,1.3765913536190055e-05,-0.0023207697086036205,0.0004969598376192153,3.6041663406649604e-05,-1.9381672245799564e-05,-3.604166522563901e-06,9.354192959688654e-21,-0.0011120354756712914,3.6041663406649604e-05,0.00010636462684487924,2.498747194400186e-20,-1.6018517499105656e-06,-1.8771700069919461e-06,6.137529999250546e-05,-1.9381672245799564e-05,2.498747194400186e-20,9.690836577647133e-07,-8.337980574534519e-22,-3.2086340504770758e-22,3.6041663406649604e-05,-3.604166522563901e-06,-1.6018517499105656e-06,-8.337980574534519e-22,1.6018518067539844e-07,-1.0140781061978416e-22,1.3765913536190055e-05,9.354192959688654e-21,-1.8771700069919461e-06,-3.2086340504770758e-22,-1.0140781061978416e-22,4.1714887544230805e-08,21.0,47.0,0.022896284237504005,-0.0022721264977008104,-0.0010665083536878228,6.0069440223742276e-05,3.453992758295499e-05,1.2923102076456416e-05,-0.0022721264977008104,0.0004864597285632044,3.453992758295499e-05,-1.8969296434079297e-05,-3.453992803770234e-06,-1.3018004296317068e-21,-0.0010665083536878228,3.453992758295499e-05,9.978542220778763e-05,8.046812998915853e-21,-1.501736051068292e-06,-1.7230803450729582e-06,6.0069440223742276e-05,-1.8969296434079297e-05,8.046812998915853e-21,9.484648444413324e-07,-8.337980574534519e-22,3.7017884890009463e-23,3.453992758295499e-05,-3.453992803770234e-06,-1.501736051068292e-06,-8.337980574534519e-22,1.501736051068292e-07,1.5545163625096802e-23,1.2923102076456416e-05,-1.3018004296317068e-21,-1.7230803450729582e-06,3.7017884890009463e-23,1.5545163625096802e-23,3.7458267598822204e-08,21.0,48.0,0.02244035340845585,-0.002225480740889907,-0.001023721182718873,5.881799370399676e-05,3.3130134397652e-05,1.2147716006438714e-05,-0.002225480740889907,0.00047639416879974306,3.3130134397652e-05,-1.8574102796264924e-05,-3.3130136216641404e-06,-1.7233349628096924e-23,-0.001023721182718873,3.3130134397652e-05,9.373795182909817e-05,-4.235164736271502e-21,-1.4097929579293123e-06,-1.584484721206536e-06,5.881799370399676e-05,-1.8574102796264924e-05,-4.235164736271502e-21,9.287051625506137e-07,3.044024654195142e-22,1.8065509530683707e-23,3.3130134397652e-05,-3.3130136216641404e-06,-1.4097929579293123e-06,3.044024654195142e-22,1.4097929579293123e-07,-1.7399792968211316e-23,1.2147716006438714e-05,-1.7233349628096924e-23,-1.584484721206536e-06,1.8065509530683707e-23,-1.7399792968211316e-23,3.371244261529682e-08,21.0,49.0,0.022002223879098892,-0.002180711831897497,-0.0009834583615884185,5.7617628044681624e-05,3.180493149557151e-05,1.1433145118644461e-05,-0.002180711831897497,0.0004667367320507765,3.180493149557151e-05,-1.8195039956481196e-05,-3.1804929676582105e-06,-1.2505467557973691e-20,-0.0009834583615884185,3.180493149557151e-05,8.816955960355699e-05,-3.4304834363799164e-20,-1.325205403190921e-06,-1.4595503898817697e-06,5.7617628044681624e-05,-1.8195039956481196e-05,-3.4304834363799164e-20,9.097519750866923e-07,8.337980574534519e-22,4.948009742487968e-22,3.180493149557151e-05,-3.1804929676582105e-06,-1.325205403190921e-06,8.337980574534519e-22,1.325205403190921e-07,7.139448045360897e-23,1.1433145118644461e-05,-1.2505467557973691e-20,-1.4595503898817697e-06,4.948009742487968e-22,7.139448045360897e-23,3.0407299789203535e-08,21.0,50.0,0.021580874919891357,-0.002137708943337202,-0.0009455250692553818,5.6465272791683674e-05,3.0557675927411765e-05,1.0773540452646557e-05,-0.002137708943337202,0.0004574631166178733,3.0557675927411765e-05,-1.7831138393376023e-05,-3.055767820114852e-06,-7.026863760721024e-21,-0.0009455250692553818,3.0557675927411765e-05,8.30337157822214e-05,-1.7364175418713157e-20,-1.2472521575546125e-06,-1.3466925565808197e-06,5.6465272791683674e-05,-1.7831138393376023e-05,-1.7364175418713157e-20,8.915569651435362e-07,5.955700410381799e-22,2.3348301175948034e-22,3.0557675927411765e-05,-3.055767820114852e-06,-1.2472521575546125e-06,5.955700410381799e-22,1.247252185976322e-07,7.8257393624189e-23,1.0773540452646557e-05,-7.026863760721024e-21,-1.3466925565808197e-06,2.3348301175948034e-22,7.8257393624189e-23,2.7483521236604247e-08,21.0,51.0,0.021175358444452286,-0.0020963691640645266,-0.000909745111130178,5.5358112149406224e-05,2.9382383218035102e-05,1.0163716979150195e-05,-0.0020963691640645266,0.00044855085434392095,2.9382383218035102e-05,-1.748150862113107e-05,-2.93823813990457e-06,-9.934507011421486e-21,-0.000909745111130178,2.9382383218035102e-05,7.828920934116468e-05,-2.879912020664621e-20,-1.1752953241739306e-06,-1.2445367474356317e-06,5.5358112149406224e-05,-1.748150862113107e-05,-2.879912020664621e-20,8.74075453793921e-07,1.0323214044661785e-21,3.5702986289638114e-22,2.9382383218035102e-05,-2.93823813990457e-06,-1.1752953241739306e-06,1.0323214044661785e-21,1.1752953099630759e-07,8.636747695326173e-23,1.0163716979150195e-05,-9.934507011421486e-21,-1.2445367474356317e-06,3.5702986289638114e-22,8.636747695326173e-23,2.4890736582960926e-08,21.0,52.0,0.020784800872206688,-0.002056597964838147,-0.0008759584161452949,5.4293534049065784e-05,2.8273612770135514e-05,9.59906628850149e-06,-0.002056597964838147,0.00043997925240546465,2.8273612770135514e-05,-1.7145326637546532e-05,-2.8273614134377567e-06,-8.567237437543677e-22,-0.0008759584161452949,2.8273612770135514e-05,7.38994640414603e-05,6.3527471044072525e-21,-1.1087691973443725e-06,-1.1518880000949139e-06,5.4293534049065784e-05,-1.7145326637546532e-05,6.3527471044072525e-21,8.572662864025915e-07,-9.661469554619363e-22,6.459586260224807e-23,2.8273612770135514e-05,-2.8273614134377567e-06,-1.1087691973443725e-06,-9.661469554619363e-22,1.1087691120792442e-07,-1.6091697504286592e-23,9.59906628850149e-06,-8.567237437543677e-22,-1.1518880000949139e-06,6.459586260224807e-23,-1.6091697504286592e-23,2.258603792881786e-08,21.0,53.0,0.02040838822722435,-0.0020183080341666937,-0.0008440196979790926,5.326912651071325e-05,2.7226442398387007e-05,9.075481102627236e-06,-0.0020183080341666937,0.00043172913137823343,2.7226442398387007e-05,-1.682182846707292e-05,-2.7226442398387007e-06,-4.192875531351512e-21,-0.0008440196979790926,2.7226442398387007e-05,6.983191997278482e-05,-1.6517142471458857e-20,-1.047170826495858e-06,-1.0677035788830835e-06,5.326912651071325e-05,-1.682182846707292e-05,-1.6517142471458857e-20,8.410914915657486e-07,6.485096002415737e-22,1.8457995914479386e-22,2.7226442398387007e-05,-2.7226442398387007e-06,-1.047170826495858e-06,6.485096002415737e-22,1.0471708833392768e-07,1.40543237993122e-23,9.075481102627236e-06,-4.192875531351512e-21,-1.0677035788830835e-06,1.8457995914479386e-22,1.40543237993122e-23,2.0532761269009825e-08,21.0,54.0,0.020045366138219833,-0.0019814178813248873,-0.0008137965924106538,5.2282659453339875e-05,2.6236390112899244e-05,8.589294338889886e-06,-0.0019814178813248873,0.0004237827379256487,2.6236390112899244e-05,-1.6510313798789866e-05,-2.623638920340454e-06,8.022649469947788e-21,-0.0008137965924106538,2.6236390112899244e-05,6.605755334021524e-05,2.286988957586611e-20,-9.900523991746013e-07,-9.910723974826396e-07,5.2282659453339875e-05,-1.6510313798789866e-05,2.286988957586611e-20,8.255157126768609e-07,-3.970466940254533e-22,-3.4613101111694557e-22,2.6236390112899244e-05,-2.623638920340454e-06,-9.900523991746013e-07,-3.970466940254533e-22,9.90052413385456e-08,-2.8184554950368387e-23,8.589294338889886e-06,8.022649469947788e-21,-9.910723974826396e-07,-3.4613101111694557e-22,-2.8184554950368387e-23,1.8699479298334154e-08,21.0,55.0,0.019695034250617027,-0.0019458519527688622,-0.0007851683767512441,5.133206650498323e-05,2.529937592044007e-05,8.137226359394845e-06,-0.0019458519527688622,0.0004161235992796719,2.529937592044007e-05,-1.6210125977522694e-05,-2.529937546569272e-06,5.188879344841351e-21,-0.0007851683767512441,2.529937592044007e-05,6.255041080294177e-05,1.1434944787933055e-20,-9.370139082420792e-07,-9.211954079546558e-07,5.133206650498323e-05,-1.6210125977522694e-05,1.1434944787933055e-20,8.105063216135022e-07,9.26442286059391e-23,-2.012436423365163e-22,2.529937592044007e-05,-2.529937546569272e-06,-9.370139082420792e-07,9.26442286059391e-23,9.370139508746433e-08,-3.197566899956677e-23,8.137226359394845e-06,5.188879344841351e-21,-9.211954079546558e-07,-2.012436423365163e-22,-3.197566899956677e-23,1.705917362926357e-08,21.0,56.0,0.019356735050678253,-0.0019115405157208443,-0.0007580246892757714,5.041542317485437e-05,2.4411678168689832e-05,7.716334948781878e-06,-0.0019115405157208443,0.00040873640682548285,2.4411678168689832e-05,-1.592065927980002e-05,-2.4411679078184534e-06,-4.03270783848453e-21,-0.0007580246892757714,2.4411678168689832e-05,5.92872456763871e-05,-8.893845946170154e-21,-8.876974106897251e-07,-8.573705940762011e-07,5.041542317485437e-05,-1.592065927980002e-05,-8.893845946170154e-21,7.960330208334199e-07,-1.5881867761018131e-22,1.8420592547974875e-22,2.4411678168689832e-05,-2.4411679078184534e-06,-8.876974106897251e-07,-1.5881867761018131e-22,8.876973822680156e-08,6.050064188522608e-24,7.716334948781878e-06,-4.03270783848453e-21,-8.573705940762011e-07,1.8420592547974875e-22,6.050064188522608e-24,1.5588556223633532e-08,21.0,57.0,0.019029861316084862,-0.0018784182611852884,-0.0007322647725231946,4.9530943215359e-05,2.3569897166453302e-05,7.3239789344370365e-06,-0.0018784182611852884,0.0004016069578938186,2.3569897166453302e-05,-1.5641349818906747e-05,-2.35698962569586e-06,-8.674245649408664e-21,-0.0007322647725231946,2.3569897166453302e-05,5.624720870400779e-05,-2.837560373301906e-20,-8.417820254180697e-07,-7.989795562934887e-07,4.9530943215359e-05,-1.5641349818906747e-05,-2.837560373301906e-20,7.820675023140211e-07,8.07328277851755e-22,3.4774288744914005e-22,2.3569897166453302e-05,-2.35698962569586e-06,-8.417820254180697e-07,8.07328277851755e-22,8.417820396289244e-08,4.471459879385914e-23,7.3239789344370365e-06,-8.674245649408664e-21,-7.989795562934887e-07,3.4774288744914005e-22,4.471459879385914e-23,1.4267492076669441e-08,21.0,58.0,0.01871384307742119,-0.0018464243039488792,-0.0007077960181050003,4.8676960432203487e-05,2.2770916984882206e-05,6.957779987715185e-06,-0.0018464243039488792,0.0003947219520341605,2.2770916984882206e-05,-1.537167190690525e-05,-2.2770916530134855e-06,-1.1096090734676847e-20,-0.0007077960181050003,2.2770916984882206e-05,5.3411546105053276e-05,-3.3881317890172014e-20,-7.989795562934887e-07,-7.454764272551984e-07,4.8676960432203487e-05,-1.537167190690525e-05,-3.3881317890172014e-20,7.685835612392111e-07,7.610061635487855e-22,4.299491357491354e-22,2.2770916984882206e-05,-2.2770916530134855e-06,-7.989795562934887e-07,7.610061635487855e-22,7.989795136609246e-08,6.294020764525745e-23,6.957779987715185e-06,-1.1096090734676847e-20,-7.454764272551984e-07,4.299491357491354e-22,6.294020764525745e-23,1.3078533811494708e-08,21.0,59.0,0.018408149480819702,-0.0018155020661652088,-0.0006845335592515767,4.785192868439481e-05,2.2011887267581187e-05,6.6155944296042435e-06,-0.0018155020661652088,0.0003880690492223948,2.2011887267581187e-05,-1.5111134416656569e-05,-2.2011886358086485e-06,3.980225490440028e-21,-0.0006845335592515767,2.2011887267581187e-05,5.0763363105943426e-05,1.2281977735187355e-20,-7.590305699523014e-07,-6.963783221181075e-07,4.785192868439481e-05,-1.5111134416656569e-05,1.2281977735187355e-20,7.555567549388797e-07,-1.9852334701272664e-22,-1.5550905901398087e-22,2.2011887267581187e-05,-2.2011886358086485e-06,-7.590305699523014e-07,-1.9852334701272664e-22,7.590305983740109e-08,-2.4849798512562172e-23,6.6155944296042435e-06,3.980225490440028e-21,-6.963783221181075e-07,-1.5550905901398087e-22,-2.4849798512562172e-23,1.200652288702031e-08,21.0,60.0,0.01811228320002556,-0.001785598578862846,-0.0006623994559049606,4.705439641838893e-05,2.1290185031830333e-05,6.2954850363894366e-06,-0.001785598578862846,0.00038163672434166074,2.1290185031830333e-05,-1.485928260080982e-05,-2.129018412233563e-06,3.2499508234037563e-21,-0.0006623994559049606,2.1290185031830333e-05,4.828741657547653e-05,1.3552527156068805e-20,-7.217012125693145e-07,-6.512570394079376e-07,4.705439641838893e-05,-1.485928260080982e-05,1.3552527156068805e-20,7.429641186718072e-07,-4.235164736271502e-22,-1.2439534992655652e-22,2.1290185031830333e-05,-2.129018412233563e-06,-7.217012125693145e-07,-4.235164736271502e-22,7.217011699367504e-08,-2.4207831396502365e-23,6.2954850363894366e-06,3.2499508234037563e-21,-6.512570394079376e-07,-1.2439534992655652e-22,-2.4207831396502365e-23,1.1038254754680565e-08,21.0,61.0,0.01782577484846115,-0.0017566642491146922,-0.000641321879811585,4.628301030606963e-05,2.0603405573638156e-05,5.995699666527798e-06,-0.0017566642491146922,0.00037541415076702833,2.0603405573638156e-05,-1.4615688087360468e-05,-2.0603404209396103e-06,-7.88995483629265e-21,-0.000641321879811585,2.0603405573638156e-05,4.5969925849931315e-05,-2.2658131339052534e-20,-6.867801403132034e-07,-6.097321829656721e-07,4.628301030606963e-05,-1.4615688087360468e-05,-2.2658131339052534e-20,7.307843929993396e-07,5.492479267352104e-22,2.9242892002990345e-22,2.0603405573638156e-05,-2.0603404209396103e-06,-6.867801403132034e-07,5.492479267352104e-22,6.867801971566223e-08,5.45206510276229e-23,5.995699666527798e-06,-7.88995483629265e-21,-6.097321829656721e-07,2.9242892002990345e-22,5.45206510276229e-23,1.0162203523123026e-08,21.0,62.0,0.01754819042980671,-0.0017286527436226606,-0.0006212345906533301,4.5536511606769636e-05,1.9949327906942926e-05,5.714651251764735e-06,-0.0017286527436226606,0.0003693912585731596,1.9949327906942926e-05,-1.4379950698639732e-05,-1.994932972593233e-06,-1.7068655855252568e-21,-0.0006212345906533301,1.9949327906942926e-05,4.379841629997827e-05,-4.658681209898652e-21,-6.540763592965959e-07,-5.714651365451573e-07,4.5536511606769636e-05,-1.4379950698639732e-05,-4.658681209898652e-21,7.189975690380379e-07,3.970466940254533e-23,6.899734673280853e-23,1.9949327906942926e-05,-1.994932972593233e-06,-6.540763592965959e-07,3.970466940254533e-23,6.540763308748865e-08,1.1532464858509082e-23,5.714651251764735e-06,-1.7068655855252568e-21,-5.714651365451573e-07,6.899734673280853e-23,1.1532464858509082e-23,9.368281261856737e-09,21.0,63.0,0.017279118299484253,-0.001701520523056388,-0.0006020764703862369,4.481371070141904e-05,1.932591294462327e-05,5.450898242997937e-06,-0.001701520523056388,0.00036355858901515603,1.932591294462327e-05,-1.4151697541819885e-05,-1.9325912035128567e-06,-7.454607418084005e-21,-0.0006020764703862369,1.932591294462327e-05,4.1761570173548535e-05,-2.329340604949326e-20,-6.234164970919664e-07,-5.361539479054045e-07,4.481371070141904e-05,-1.4151697541819885e-05,-2.329340604949326e-20,7.07584888459678e-07,5.029258124322408e-22,2.9522184104407137e-22,1.932591294462327e-05,-1.9325912035128567e-06,-6.234164970919664e-07,5.029258124322408e-22,6.234165539353853e-08,3.96387584961923e-23,5.450898242997937e-06,-7.454607418084005e-21,-5.361539479054045e-07,2.9522184104407137e-22,3.96387584961923e-23,8.647644378356745e-09,21.0,64.0,0.01701817288994789,-0.0016752269584685564,-0.0005837912322022021,4.411349436850287e-05,1.8731268937699497e-05,5.203130058362149e-06,-0.0016752269584685564,0.0003579072654247284,1.8731268937699497e-05,-1.3930577551946044e-05,-1.8731268482952146e-06,5.506163921464899e-23,-0.0005837912322022021,1.8731268937699497e-05,3.9849102904554456e-05,-6.352747104407253e-22,-5.946434384895838e-07,-5.035287244936626e-07,4.411349436850287e-05,-1.3930577551946044e-05,-6.352747104407253e-22,6.965288434912509e-07,5.955700410381799e-23,-1.018639678605064e-23,1.8731268937699497e-05,-1.8731268482952146e-06,-5.946434384895838e-07,5.955700410381799e-23,5.9464344559501114e-08,3.655329788165403e-24,5.203130058362149e-06,5.506163921464899e-23,-5.035287244936626e-07,-1.018639678605064e-23,3.655329788165403e-24,7.992519535093834e-09,22.0,3.0,0.20685112476348877,-0.027173912152647972,-0.1304347813129425,0.0008234519045799971,0.005928853526711464,0.022727273404598236,-0.027173912152647972,0.006128835026174784,0.005928853526711464,-0.0002470355830155313,-0.0005646527279168367,5.204170427930421e-18,-0.1304347813129425,0.005928853526711464,0.35770750045776367,5.934708117398852e-20,-0.005928853526711464,-0.13636364042758942,0.0008234519045799971,-0.0002470355830155313,5.934708117398852e-20,1.1763599104597233e-05,-2.0008526434203136e-20,8.977141741384536e-20,0.005928853526711464,-0.0005646527279168367,-0.005928853526711464,-2.0008526434203136e-20,0.0005646527279168367,-7.37257477290143e-18,0.022727273404598236,5.204170427930421e-18,-0.13636364042758942,8.977141741384536e-20,-7.37257477290143e-18,0.06818182021379471,22.0,4.0,0.17356719076633453,-0.02126976288855076,-0.08507905155420303,0.0006175889284349978,0.0035573123022913933,0.011363636702299118,-0.02126976288855076,0.004681324120610952,0.0035573123022913933,-0.00018527667270973325,-0.00033879163675010204,-1.0842021724855044e-19,-0.08507905155420303,0.0035573123022913933,0.13626481592655182,-2.0502656344043612e-19,-0.0023715414572507143,-0.034090910106897354,0.0006175889284349978,-0.00018527667270973325,-2.0502656344043612e-19,8.822698873700574e-06,3.42929048684025e-21,5.1293809057711364e-20,0.0035573123022913933,-0.00033879163675010204,-0.0023715414572507143,3.42929048684025e-21,0.0002258610911667347,-6.505213034913027e-19,0.011363636702299118,-1.0842021724855044e-19,-0.034090910106897354,5.1293809057711364e-20,-6.505213034913027e-19,0.011363636702299118,22.0,5.0,0.14954827725887299,-0.017490118741989136,-0.05996612086892128,0.0004940711660310626,0.0023715414572507143,0.006493506487458944,-0.017490118741989136,0.0037902314215898514,0.0023715414572507143,-0.00014822134107816964,-0.0002258610911667347,3.686287386450715e-18,-0.05996612086892128,0.0023715414572507143,0.06894409656524658,4.1191973748128057e-19,-0.0011857707286253572,-0.012987012974917889,0.0004940711660310626,-0.00014822134107816964,4.1191973748128057e-19,7.058159098960459e-06,-6.4710553385318596e-21,-8.314719997215586e-20,0.0023715414572507143,-0.0002258610911667347,-0.0011857707286253572,-6.4710553385318596e-21,0.00011293054558336735,-8.673617379884035e-19,0.006493506487458944,3.686287386450715e-18,-0.012987012974917889,-8.314719997215586e-20,-8.673617379884035e-19,0.003246753243729472,22.0,6.0,0.13137586414813995,-0.014857425354421139,-0.04457227513194084,0.00041172595228999853,0.0016939581837505102,0.004058441612869501,-0.014857425354421139,0.0031854144763201475,0.0016939581837505102,-0.00012351779150776565,-0.00016132935706991702,-2.927345865710862e-18,-0.04457227513194084,0.0016939581837505102,0.040150340646505356,-2.732753746258082e-19,-0.0006775832735002041,-0.006087662186473608,0.00041172595228999853,-0.00012351779150776565,-2.732753746258082e-19,5.881799552298617e-06,7.849342711791837e-22,5.089648771387315e-20,0.0016939581837505102,-0.00016132935706991702,-0.0006775832735002041,7.849342711791837e-22,6.453174137277529e-05,6.098637220230962e-19,0.004058441612869501,-2.927345865710862e-18,-0.006087662186473608,5.089648771387315e-20,6.098637220230962e-19,0.0012175324372947216,22.0,7.0,0.11714191734790802,-0.01291643176227808,-0.03444381803274155,0.00035290795494802296,0.0012704686960205436,0.0027056278195232153,-0.01291643176227808,0.0027476404793560505,0.0012704686960205436,-0.00010587238648440689,-0.00012099701416445896,-7.589415207398531e-19,-0.03444381803274155,0.0012704686960205436,0.025550536811351776,-1.0037350764721116e-19,-0.00042348954593762755,-0.003246753243729472,0.00035290795494802296,-0.00010587238648440689,-1.0037350764721116e-19,5.041542408434907e-06,4.43563728916127e-21,4.7871668351732155e-21,0.0012704686960205436,-0.00012099701416445896,-0.00042348954593762755,4.43563728916127e-21,4.0332339267479256e-05,1.6601845766184287e-19,0.0027056278195232153,-7.589415207398531e-19,-0.003246753243729472,4.7871668351732155e-21,1.6601845766184287e-19,0.0005411255406215787,22.0,8.0,0.10569005459547043,-0.011425395496189594,-0.027420949190855026,0.0003087944642174989,0.0009881423320621252,0.0018939394503831863,-0.011425395496189594,0.002415949013084173,0.0009881423320621252,-9.263833635486662e-05,-9.410879283677787e-05,6.776263578034403e-19,-0.027420949190855026,0.0009881423320621252,0.017304252833127975,2.390637531772861e-19,-0.00028232636395841837,-0.0018939394503831863,0.0003087944642174989,-9.263833635486662e-05,2.390637531772861e-19,4.411349436850287e-06,-2.9205037281830302e-21,-2.6941829928413304e-20,0.0009881423320621252,-9.410879283677787e-05,-0.00028232636395841837,-2.9205037281830302e-21,2.68882249656599e-05,-6.776263578034403e-21,0.0018939394503831863,6.776263578034403e-19,-0.0018939394503831863,-2.6941829928413304e-20,-6.776263578034403e-21,0.00027056277031078935,22.0,9.0,0.09627699851989746,-0.010243741795420647,-0.02234998159110546,0.00027448395849205554,0.0007905138190835714,0.001377410488203168,-0.010243741795420647,0.0021558755543082952,0.0007905138190835714,-8.234519191319123e-05,-7.528703281423077e-05,5.421010862427522e-19,-0.02234998159110546,0.0007905138190835714,0.012277774512767792,1.126433103177575e-19,-0.00019762845477089286,-0.0011806375114247203,0.00027448395849205554,-8.234519191319123e-05,1.126433103177575e-19,3.921199549949961e-06,-7.271233128703202e-22,-1.3439345583816823e-20,0.0007905138190835714,-7.528703281423077e-05,-0.00019762845477089286,-7.271233128703202e-22,1.8821758203557692e-05,-4.743384504624082e-20,0.001377410488203168,5.421010862427522e-19,-0.0011806375114247203,-1.3439345583816823e-20,-4.743384504624082e-20,0.00014757968892809004,22.0,10.0,0.08840280026197433,-0.009284045547246933,-0.018568091094493866,0.0002470355830155313,0.0006467840285040438,0.001033057807944715,-0.009284045547246933,0.0019464477663859725,0.0006467840285040438,-7.411067053908482e-05,-6.159848271636292e-05,5.55653613398821e-19,-0.018568091094493866,0.0006467840285040438,0.009033267386257648,1.0754233304938733e-19,-0.00014372979057952762,-0.0007747933850623667,0.0002470355830155313,-7.411067053908482e-05,1.0754233304938733e-19,3.5290795494802296e-06,-1.1860504777336187e-21,-1.0992411238152854e-20,0.0006467840285040438,-6.159848271636292e-05,-0.00014372979057952762,-1.1860504777336187e-21,1.3688551007362548e-05,-5.166900978251232e-20,0.001033057807944715,5.55653613398821e-19,-0.0007747933850623667,-1.0992411238152854e-20,-5.166900978251232e-20,8.6088155512698e-05,22.0,11.0,0.08171867579221725,-0.008489040657877922,-0.015672074630856514,0.00022457778686657548,0.0005389867001213133,0.0007946598925627768,-0.008489040657877922,0.0017741646151989698,0.0005389867001213133,-6.737333751516417e-05,-5.133206650498323e-05,5.421010862427522e-20,-0.015672074630856514,0.0005389867001213133,0.006842827890068293,-5.285431436386106e-20,-0.00010779734293464571,-0.0005297732423059642,0.00022457778686657548,-6.737333751516417e-05,-5.285431436386106e-20,3.208254156561452e-06,-4.546573700168121e-22,5.5053575162931454e-21,0.0005389867001213133,-5.133206650498323e-05,-0.00010779734293464571,-4.546573700168121e-22,1.0266413482895587e-05,-3.3881317890172014e-20,0.0007946598925627768,5.421010862427522e-20,-0.0005297732423059642,5.5053575162931454e-21,-3.3881317890172014e-20,5.297732423059642e-05,22.0,12.0,0.07597384601831436,-0.007819626480340958,-0.013405073434114456,0.00020586297614499927,0.0004560656670946628,0.0006243756506592035,-0.007819626480340958,0.0016299370909109712,0.0004560656670946628,-6.175889575388283e-05,-4.3434825784061104e-05,2.846030702774449e-19,-0.013405073434114456,0.0004560656670946628,0.005309414118528366,1.1752430924197685e-19,-8.292103302665055e-05,-0.00037462537875398993,0.00020586297614499927,-6.175889575388283e-05,1.1752430924197685e-19,2.9408997761493083e-06,-3.807702594966602e-21,-6.643569752172832e-21,0.0004560656670946628,-4.3434825784061104e-05,-8.292103302665055e-05,-3.807702594966602e-21,7.897240720922127e-06,-2.371692252312041e-20,0.0006243756506592035,2.846030702774449e-19,-0.00037462537875398993,-6.643569752172832e-21,-2.371692252312041e-20,3.40568512910977e-05,22.0,13.0,0.07098336517810822,-0.007248186506330967,-0.011597098782658577,0.00019002736371476203,0.0003909134247805923,0.0004995004856027663,-0.007248186506330967,0.0015074211405590177,0.0003909134247805923,-5.700820838683285e-05,-3.72298491129186e-05,-0.0,-0.011597098782658577,0.0003909134247805923,0.004203306511044502,0.0,-6.515224231407046e-05,-0.0002724548103287816,0.00019002736371476203,-5.700820838683285e-05,0.0,2.714676611503819e-06,-2.117582368135751e-22,-0.0,0.0003909134247805923,-3.72298491129186e-05,-6.515224231407046e-05,-2.117582368135751e-22,6.204975306900451e-06,-0.0,0.0004995004856027663,-0.0,-0.0002724548103287816,-0.0,-0.0,2.2704567527398467e-05,22.0,14.0,0.06660784780979156,-0.006754658184945583,-0.010131987743079662,0.00017645397747401148,0.00033879163675010204,0.000405844155466184,-0.006754658184945583,0.001402052934281528,0.00033879163675010204,-5.2936193242203444e-05,-3.226587068638764e-05,-0.0,-0.010131987743079662,0.00033879163675010204,0.0033850660547614098,1.6940658945086007e-21,-5.2121791668469086e-05,-0.000202922077733092,0.00017645397747401148,-5.2936193242203444e-05,1.6940658945086007e-21,2.5207712042174535e-06,-2.117582368135751e-22,-0.0,0.00033879163675010204,-3.226587068638764e-05,-5.2121791668469086e-05,-2.117582368135751e-22,4.963980245520361e-06,-0.0,0.000405844155466184,-0.0,-0.000202922077733092,-0.0,-0.0,1.5609390175086446e-05,22.0,15.0,0.0627402514219284,-0.0063241105526685715,-0.008928156457841396,0.00016469038382638246,0.0002964426821563393,0.0003342246054671705,-0.0063241105526685715,0.0013104649260640144,0.0002964426821563393,-4.9407113692723215e-05,-2.8232636395841837e-05,-0.0,-0.008928156457841396,0.0002964426821563393,0.0027666068635880947,-1.6940658945086007e-21,-4.2348954593762755e-05,-0.00015425750461872667,0.00016469038382638246,-4.9407113692723215e-05,-1.6940658945086007e-21,2.3527197754447116e-06,2.117582368135751e-22,-0.0,0.0002964426821563393,-2.8232636395841837e-05,-4.2348954593762755e-05,2.117582368135751e-22,4.033233835798455e-06,-0.0,0.0003342246054671705,-0.0,-0.00015425750461872667,-0.0,-0.0,1.1018393706763163e-05,22.0,16.0,0.05929701402783394,-0.005945201497524977,-0.007926935330033302,0.00015439723210874945,0.0002615670673549175,0.00027852048515342176,-0.005945201497524977,0.001230117748491466,0.0002615670673549175,-4.631916817743331e-05,-2.4911150831030682e-05,-0.0,-0.007926935330033302,0.0002615670673549175,0.0022903727367520332,0.0,-3.4875611163442954e-05,-0.00011936592636629939,0.00015439723210874945,-4.631916817743331e-05,0.0,2.2056747184251435e-06,-1.0587911840678754e-22,-0.0,0.0002615670673549175,-2.4911150831030682e-05,-3.4875611163442954e-05,-1.0587911840678754e-22,3.3214867016795324e-06,-0.0,0.00027852048515342176,-0.0,-0.00011936592636629939,-0.0,-0.0,7.95772848505294e-06,22.0,17.0,0.056211937218904495,-0.005609160754829645,-0.0070852553471922874,0.00014531504712067544,0.00023250406957231462,0.00023454357869923115,-0.005609160754829645,0.001159060513600707,0.00023250406957231462,-4.359451122581959e-05,-2.2143243768368848e-05,-2.810323900669949e-19,-0.0070852553471922874,0.00023250406957231462,0.0019176487112417817,-1.981361877119606e-19,-2.9063008696539328e-05,-9.38174343900755e-05,0.00014531504712067544,-4.359451122581959e-05,-1.981361877119606e-19,2.0759291601279983e-06,2.964615315390051e-21,9.73653377182785e-21,0.00023250406957231462,-2.2143243768368848e-05,-2.9063008696539328e-05,2.964615315390051e-21,2.767905471046106e-06,9.570646092713321e-21,0.00023454357869923115,-2.810323900669949e-19,-9.38174343900755e-05,9.73653377182785e-21,9.570646092713321e-21,5.863589649379719e-06,22.0,18.0,0.0534319169819355,-0.005309097934514284,-0.0063709174282848835,0.00013724197924602777,0.0002080299600493163,0.00019936203898396343,-0.005309097934514284,0.0010957688791677356,0.0002080299600493163,-4.1172595956595615e-05,-1.981237619474996e-05,-1.8804131429045468e-19,-0.0063709174282848835,0.0002080299600493163,0.001621728646568954,-1.40662541378434e-19,-2.447411316097714e-05,-7.476076279999688e-05,0.00013724197924602777,-4.1172595956595615e-05,-1.40662541378434e-19,1.9605997749749804e-06,1.911032582293454e-21,5.6903693042083445e-21,0.0002080299600493163,-1.981237619474996e-05,-2.447411316097714e-05,1.911032582293454e-21,2.3308678009925643e-06,6.988021814847978e-21,0.00019936203898396343,-1.8804131429045468e-19,-7.476076279999688e-05,5.6903693042083445e-21,6.988021814847978e-21,4.397692009661114e-06,22.0,19.0,0.050913844257593155,-0.005039525683969259,-0.005759458057582378,0.0001300187286688015,0.00018722696404438466,0.00017088174354285002,-0.005039525683969259,0.0010390353854745626,0.00018722696404438466,-3.90056156902574e-05,-1.7831138393376023e-05,1.1858461261560205e-20,-0.005759458057582378,0.00018722696404438466,0.001383777940645814,-0.0,-2.080299600493163e-05,-6.031120574334636e-05,0.0001300187286688015,-3.90056156902574e-05,-0.0,1.8574103251012275e-06,1.0587911840678754e-22,-5.293955920339377e-23,0.00018722696404438466,-1.7831138393376023e-05,-2.080299600493163e-05,1.0587911840678754e-22,1.981237574000261e-06,-1.0587911840678754e-21,0.00017088174354285002,1.1858461261560205e-20,-6.031120574334636e-05,-5.293955920339377e-23,-1.0587911840678754e-21,3.3506225918245036e-06,22.0,20.0,0.04862237721681595,-0.004796019289642572,-0.0052320207469165325,0.00012351779150776565,0.00016939581837505102,0.00014757968892809004,-0.004796019289642572,0.000987890176475048,0.00016939581837505102,-3.705533526954241e-05,-1.613293534319382e-05,-8.470329472543003e-22,-0.0052320207469165325,0.00016939581837505102,0.0011902510887011886,-0.0,-1.7831138393376023e-05,-4.919322964269668e-05,0.00012351779150776565,-3.705533526954241e-05,-0.0,1.7645397747401148e-06,-1.0587911840678754e-22,0.0,0.00016939581837505102,-1.613293534319382e-05,-1.7831138393376023e-05,-1.0587911840678754e-22,1.6982037323032273e-06,0.0,0.00014757968892809004,-8.470329472543003e-22,-4.919322964269668e-05,0.0,0.0,2.5891174573189346e-06,22.0,21.0,0.04652824252843857,-0.004574970342218876,-0.00477388221770525,0.00011763598740799353,0.0001539961958769709,0.00012833016808144748,-0.004574970342218876,0.0009415462263859808,0.0001539961958769709,-3.5290795494802296e-05,-1.4666305105492938e-05,8.470329472543003e-21,-0.00477388221770525,0.0001539961958769709,0.001031234161928296,-8.944530549631417e-22,-1.539962067909073e-05,-4.0525315853301436e-05,0.00011763598740799353,-3.5290795494802296e-05,-8.944530549631417e-22,1.6805140603537438e-06,1.3357041756578296e-23,8.680328789351651e-24,0.0001539961958769709,-1.4666305105492938e-05,-1.539962067909073e-05,1.3357041756578296e-23,1.4666304650745587e-06,-8.470329472543003e-22,0.00012833016808144748,8.470329472543003e-21,-4.0525315853301436e-05,8.680328789351651e-24,-8.470329472543003e-22,2.0262657471903367e-06,22.0,22.0,0.0446070097386837,-0.004373408388346434,-0.004373408388346434,0.00011228889343328774,0.00014060523244552314,0.00011228889343328774,-0.004373408388346434,0.0008993573719635606,0.00014060523244552314,-3.368666875758208e-05,-1.3390974345384166e-05,-5.929230630780102e-21,-0.004373408388346434,0.00014060523244552314,0.0008993573719635606,-7.80068173218997e-22,-1.3390974345384166e-05,-3.368666875758208e-05,0.00011228889343328774,-3.368666875758208e-05,-7.80068173218997e-22,1.604127078280726e-06,1.1614818781570534e-23,2.921852756061605e-23,0.00014060523244552314,-1.3390974345384166e-05,-1.3390974345384166e-05,1.1614818781570534e-23,1.2753308737956104e-06,4.764560328305439e-22,0.00011228889343328774,-5.929230630780102e-21,-3.368666875758208e-05,2.921852756061605e-23,4.764560328305439e-22,1.604127078280726e-06,22.0,23.0,0.042838115245103836,-0.004188864026218653,-0.004021309316158295,0.00010740676952991635,0.00012888813216704875,9.881422738544643e-05,-0.004188864026218653,0.0008607885683886707,0.00012888813216704875,-3.222203304176219e-05,-1.2275059816602152e-05,1.5246593050577406e-20,-0.004021309316158295,0.00012888813216704875,0.000789063167758286,-0.0,-1.1717102097463794e-05,-2.8232636395841837e-05,0.00010740676952991635,-3.222203304176219e-05,-0.0,1.534382477075269e-06,-5.293955920339377e-23,0.0,0.00012888813216704875,-1.2275059816602152e-05,-1.1717102097463794e-05,-5.293955920339377e-23,1.1159145287820138e-06,-1.4293680984916318e-21,9.881422738544643e-05,1.5246593050577406e-20,-2.8232636395841837e-05,0.0,-1.4293680984916318e-21,1.2833016853619483e-06,22.0,24.0,0.04120413959026337,-0.004019268788397312,-0.003710094140842557,0.00010293148807249963,0.00011857707431772724,8.741259080125019e-05,-0.004019268788397312,0.0008253928972408175,0.00011857707431772724,-3.087944787694141e-05,-1.1293054740235675e-05,9.317362419797304e-21,-0.003710094140842557,0.00011857707431772724,0.0006961070466786623,6.037766178331793e-22,-1.0311049663869198e-05,-2.3839796995162033e-05,0.00010293148807249963,-3.087944787694141e-05,6.037766178331793e-22,1.4704498880746542e-06,-8.943409956938332e-24,-2.067772775501446e-23,0.00011857707431772724,-1.1293054740235675e-05,-1.0311049663869198e-05,-8.943409956938332e-24,9.820047353059635e-07,-8.470329472543003e-22,8.741259080125019e-05,9.317362419797304e-21,-2.3839796995162033e-05,-2.067772775501446e-23,-8.470329472543003e-22,1.0365129128331318e-06,22.0,25.0,0.03969021141529083,-0.0038628762122243643,-0.0034336678218096495,9.881422738544643e-05,0.00010945575922960415,7.770007505314425e-05,-0.0038628762122243643,0.0007927941624075174,0.00010945575922960415,-2.964426857943181e-05,-1.0424358151794877e-05,4.235164736271502e-22,-0.0034336678218096495,0.00010945575922960415,0.0006172088906168938,-0.0,-9.12131326913368e-06,-2.026958463829942e-05,9.881422738544643e-05,-2.964426857943181e-05,-0.0,1.4116318425294594e-06,0.0,0.0,0.00010945575922960415,-1.0424358151794877e-05,-9.12131326913368e-06,0.0,8.686965315973794e-07,-5.293955920339377e-23,7.770007505314425e-05,4.235164736271502e-22,-2.026958463829942e-05,0.0,-5.293955920339377e-23,8.445660455436155e-07,22.0,26.0,0.0382835753262043,-0.0037182020023465157,-0.0031870303209871054,9.501368185738102e-05,0.00010134792682947591,6.937506987014785e-05,-0.0037182020023465157,0.0007626733276993036,0.00010134792682947591,-2.8504104193416424e-05,-9.652183507569134e-06,5.082197683525802e-21,-0.0031870303209871054,0.00010134792682947591,0.0005498064565472305,-9.53762167416103e-22,-8.107834219117649e-06,-1.7343767467536964e-05,9.501368185738102e-05,-2.8504104193416424e-05,-9.53762167416103e-22,1.3573383057519095e-06,1.7288352481396916e-22,-2.2852918615574585e-23,0.00010134792682947591,-9.652183507569134e-06,-8.107834219117649e-06,1.7288352481396916e-22,7.721747010691615e-07,-4.235164736271502e-22,6.937506987014785e-05,5.082197683525802e-21,-1.7343767467536964e-05,-2.2852918615574585e-23,-4.235164736271502e-22,6.937506782378478e-07,22.0,27.0,0.03697321563959122,-0.003583976300433278,-0.0029660493601113558,9.149465768132359e-05,9.410879283677787e-05,6.219833448994905e-05,-0.003583976300433278,0.0007347580976784229,9.410879283677787e-05,-2.7448397304397076e-05,-8.962741958384868e-06,5.929230630780102e-21,-0.0029660493601113558,9.410879283677787e-05,0.0004918785998597741,-0.0,-7.239137630676851e-06,-1.4927601114322897e-05,9.149465768132359e-05,-2.7448397304397076e-05,-0.0,1.3070665545455995e-06,0.0,0.0,9.410879283677787e-05,-8.962741958384868e-06,-7.239137630676851e-06,0.0,6.894416628711042e-07,-4.499862532288471e-22,6.219833448994905e-05,5.929230630780102e-21,-1.4927601114322897e-05,0.0,-4.499862532288471e-22,5.741384825341811e-07,22.0,28.0,0.03574957698583603,-0.003459106432273984,-0.0027672850992530584,8.822698873700574e-05,8.761852950556204e-05,5.597850395133719e-05,-0.003459106432273984,0.0007088147685863078,8.761852950556204e-05,-2.6468096621101722e-05,-8.344622074218933e-06,7.326834993749698e-20,-0.0027672850992530584,8.761852950556204e-05,0.00044181622797623277,9.170489393455125e-20,-6.490261512226425e-06,-1.2918116226501297e-05,8.822698873700574e-05,-2.6468096621101722e-05,9.170489393455125e-20,1.2603856021087267e-06,-1.3471409737766407e-21,-2.6813285738105137e-21,8.761852950556204e-05,-8.344622074218933e-06,-6.490261512226425e-06,-1.3471409737766407e-21,6.181201115396107e-07,-1.2440796412797536e-21,5.597850395133719e-05,7.326834993749698e-20,-1.2918116226501297e-05,-2.6813285738105137e-21,-1.2440796412797536e-21,4.784487259712478e-07,22.0,29.0,0.03460432589054108,-0.003342646872624755,-0.0025878555607050657,8.5184678027872e-05,8.17772961454466e-05,5.05612297274638e-05,-0.003342646872624755,0.0006846414180472493,8.17772961454466e-05,-2.555540413595736e-05,-7.788313268974889e-06,-1.6940658945086007e-21,-0.0025878555607050657,8.17772961454466e-05,0.0003983275673817843,-0.0,-5.841235179104842e-06,-1.123582842410542e-05,8.5184678027872e-05,-2.555540413595736e-05,-0.0,1.2169240335424547e-06,0.0,0.0,8.17772961454466e-05,-7.788313268974889e-06,-5.841235179104842e-06,0.0,5.563081231230171e-07,1.0587911840678754e-22,5.05612297274638e-05,-1.6940658945086007e-21,-1.123582842410542e-05,0.0,1.0587911840678754e-22,4.012796068764146e-07,22.0,30.0,0.03353016451001167,-0.0032337752636522055,-0.002425331389531493,8.234519191319123e-05,7.650133920833468e-05,4.582111432682723e-05,-0.0032337752636522055,0.000662062899209559,7.650133920833468e-05,-2.4703556846361607e-05,-7.285842002602294e-06,4.658681209898652e-21,-0.002425331389531493,7.650133920833468e-05,0.00036036749952472746,-0.0,-5.275954208627809e-06,-9.818810212891549e-06,8.234519191319123e-05,-2.4703556846361607e-05,-0.0,1.1763598877223558e-06,0.0,0.0,7.650133920833468e-05,-7.285842002602294e-06,-5.275954208627809e-06,0.0,5.024718348067836e-07,-2.9116757561866574e-22,4.582111432682723e-05,4.658681209898652e-21,-9.818810212891549e-06,0.0,-2.9116757561866574e-22,3.385796674137964e-07,22.0,31.0,0.03252067416906357,-0.003131773555651307,-0.002277653431519866,7.968889258336276e-05,7.172000186983496e-05,4.165555947110988e-05,-0.003131773555651307,0.0006409264169633389,7.172000186983496e-05,-2.390666850260459e-05,-6.830476650065975e-06,2.117582368135751e-21,-0.002277653431519866,7.172000186983496e-05,0.00032708418439142406,-0.0,-4.781333700520918e-06,-8.618391802883707e-06,7.968889258336276e-05,-2.390666850260459e-05,-0.0,1.1384128129066085e-06,0.0,0.0,7.172000186983496e-05,-6.830476650065975e-06,-4.781333700520918e-06,0.0,4.553651251626434e-07,-1.5881867761018131e-22,4.165555947110988e-05,2.117582368135751e-21,-8.618391802883707e-06,0.0,-1.5881867761018131e-22,2.872797040254227e-07,22.0,32.0,0.0315701887011528,-0.0030360110104084015,-0.0021430666092783213,7.719861605437472e-05,6.737333751516417e-05,3.7980069464538246e-05,-0.0030360110104084015,0.0006210979772731662,6.737333751516417e-05,-2.3159584088716656e-05,-6.416508313122904e-06,-2.117582368135751e-22,-0.0021430666092783213,6.737333751516417e-05,0.00029777863528579473,-0.0,-4.346667083154898e-06,-7.596013801958179e-06,7.719861605437472e-05,-2.3159584088716656e-05,-0.0,1.1028373592125718e-06,0.0,0.0,6.737333751516417e-05,-6.416508313122904e-06,-4.346667083154898e-06,0.0,4.139682800996525e-07,2.6469779601696886e-23,3.7980069464538246e-05,-2.117582368135751e-22,-7.596013801958179e-06,0.0,2.6469779601696886e-23,2.4503270878994954e-07,22.0,33.0,0.0306736771017313,-0.002945932326838374,-0.0020200677681714296,7.48592647141777e-05,6.341020343825221e-05,3.472463504294865e-05,-0.002945932326838374,0.000602459826041013,6.341020343825221e-05,-2.245777977805119e-05,-6.039066647645086e-06,1.4823076576950256e-21,-0.0020200677681714296,6.341020343825221e-05,0.00027187366504222155,-0.0,-3.963137714890763e-06,-6.720896635670215e-06,7.48592647141777e-05,-2.245777977805119e-05,-0.0,1.0694180900827632e-06,0.0,0.0,6.341020343825221e-05,-6.039066647645086e-06,-3.963137714890763e-06,0.0,3.774416654778179e-07,-9.26442286059391e-23,3.472463504294865e-05,1.4823076576950256e-21,-6.720896635670215e-06,0.0,-9.26442286059391e-23,2.1002801986469422e-07,22.0,34.0,0.029826674610376358,-0.0028610455337911844,-0.0019073637668043375,7.265752356033772e-05,5.9786761994473636e-05,3.183091394021176e-05,-0.0028610455337911844,0.000584907887969166,5.9786761994473636e-05,-2.1797255612909794e-05,-5.693977072951384e-06,-8.470329472543003e-22,-0.0019073637668043375,5.9786761994473636e-05,0.00024888975895009935,-0.0,-3.623440079536522e-06,-5.96829659116338e-06,7.265752356033772e-05,-2.1797255612909794e-05,-0.0,1.0379645800639992e-06,0.0,0.0,5.9786761994473636e-05,-5.693977072951384e-06,-3.623440079536522e-06,0.0,3.450895178502833e-07,5.293955920339377e-23,3.183091394021176e-05,-8.470329472543003e-22,-5.96829659116338e-06,0.0,5.293955920339377e-23,1.8085746944507264e-07,22.0,35.0,0.029025185853242874,-0.0027809147723019123,-0.001803836552426219,7.058159098960459e-05,5.6465272791683674e-05,2.9250029911054298e-05,-0.0027809147723019123,0.0005683498457074165,5.6465272791683674e-05,-2.1174477296881378e-05,-5.377645265980391e-06,-1.2705494208814505e-21,-0.001803836552426219,5.6465272791683674e-05,0.00022842633188702166,-6.2689045945067605e-21,-3.3214867016795324e-06,-5.318187049851986e-06,7.058159098960459e-05,-2.1174477296881378e-05,-6.2689045945067605e-21,1.0083084589496139e-06,5.970385592557904e-22,1.1754943508222875e-37,5.6465272791683674e-05,-5.377645265980391e-06,-3.3214867016795324e-06,5.970385592557904e-22,3.1633206276637793e-07,6.617444900424221e-23,2.9250029911054298e-05,-1.2705494208814505e-21,-5.318187049851986e-06,1.1754943508222875e-37,6.617444900424221e-23,1.5641727202364564e-07,22.0,36.0,0.028265640139579773,-0.0027051507495343685,-0.001708516268990934,6.862098962301388e-05,5.34130958840251e-05,2.694081558729522e-05,-0.0027051507495343685,0.0005527036846615374,5.34130958840251e-05,-2.0586297978297807e-05,-5.086961664346745e-06,-2.9434394917086937e-20,-0.001708516268990934,5.34130958840251e-05,0.0002101470308844,-3.4853177561739394e-20,-3.052176907658577e-06,-4.754261681227945e-06,6.862098962301388e-05,-2.0586297978297807e-05,-3.4853177561739394e-20,9.802998874874902e-07,1.5368699227131207e-22,7.80269061381677e-22,5.34130958840251e-05,-5.086961664346745e-06,-3.052176907658577e-06,1.5368699227131207e-22,2.906835163685173e-07,6.749793798432706e-22,2.694081558729522e-05,-2.9434394917086937e-20,-4.754261681227945e-06,7.80269061381677e-22,6.749793798432706e-22,1.3583604641098646e-07,22.0,37.0,0.027544831857085228,-0.002633406314998865,-0.0016205577412620187,6.676636985503137e-05,5.060188050265424e-05,2.4868446416803636e-05,-0.002633406314998865,0.0005378960049711168,5.060188050265424e-05,-2.002991095650941e-05,-4.819226887775585e-06,2.117582368135751e-22,-0.0016205577412620187,5.060188050265424e-05,0.00019376793352421373,-5.617937282337753e-21,-2.811215608744533e-06,-4.263162281858968e-06,6.676636985503137e-05,-2.002991095650941e-05,-5.617937282337753e-21,9.538052836433053e-07,5.35041665170109e-22,0.0,5.060188050265424e-05,-4.819226887775585e-06,-2.811215608744533e-06,5.35041665170109e-22,2.6773483341457904e-07,-1.3234889800848443e-23,2.4868446416803636e-05,2.117582368135751e-22,-4.263162281858968e-06,0.0,-1.3234889800848443e-23,1.1842116975913086e-07,22.0,38.0,0.026859868317842484,-0.002565369475632906,-0.0015392216155305505,6.500936433440074e-05,4.800691385753453e-05,2.3003312890068628e-05,-0.002565369475632906,0.0005238611483946443,4.800691385753453e-05,-1.95028078451287e-05,-4.572087163978722e-06,3.564049840852502e-21,-0.0015392216155305505,4.800691385753453e-05,0.00017904830747283995,1.0164395367051604e-20,-2.59496823673544e-06,-3.833885330095654e-06,6.500936433440074e-05,-1.95028078451287e-05,1.0164395367051604e-20,9.287051625506137e-07,-6.352747104407253e-22,-9.454222163301361e-23,4.800691385753453e-05,-4.572087163978722e-06,-2.59496823673544e-06,-6.352747104407253e-22,2.4713983748370083e-07,-3.520547380482057e-23,2.3003312890068628e-05,3.564049840852502e-21,-3.833885330095654e-06,-9.454222163301361e-23,-3.520547380482057e-23,1.0361852531559634e-07,22.0,39.0,0.026208141818642616,-0.0025007601361721754,-0.001463859574869275,6.334245699690655e-05,4.56065681646578e-05,2.1320143787306733e-05,-0.0025007601361721754,0.0005105402087792754,4.56065681646578e-05,-1.9002736735274084e-05,-4.34348248745664e-06,-4.084976929027358e-21,-0.001463859574869275,4.56065681646578e-05,0.0001657831307966262,-1.7787691892340307e-20,-2.4003456928767264e-06,-3.4573204175103456e-06,6.334245699690655e-05,-1.9002736735274084e-05,-1.7787691892340307e-20,9.048922038346063e-07,1.1779051922755114e-21,9.527571712446259e-23,4.56065681646578e-05,-4.34348248745664e-06,-2.4003456928767264e-06,1.1779051922755114e-21,2.2860434967242327e-07,6.134011373954336e-23,2.1320143787306733e-05,-4.084976929027358e-21,-3.4573204175103456e-06,9.527571712446259e-23,6.134011373954336e-23,9.0982119616001e-08,22.0,40.0,0.0255872905254364,-0.002439325675368309,-0.0013939003692939878,6.175889575388283e-05,4.338185681262985e-05,1.9797276763711125e-05,-0.002439325675368309,0.0004978799843229353,4.338185681262985e-05,-1.8527667634771205e-05,-4.131605237489566e-06,-2.4962821315512926e-20,-0.0013939003692939878,4.338185681262985e-05,0.0001537970529170707,-4.319868030996932e-20,-2.2247106699069263e-06,-3.1258857688953867e-06,6.175889575388283e-05,-1.8527667634771205e-05,-4.319868030996932e-20,8.822698873700574e-07,3.705769144237564e-22,9.204171557919302e-22,4.338185681262985e-05,-4.131605237489566e-06,-2.2247106699069263e-06,3.705769144237564e-22,2.1187719312365516e-07,2.394501828385128e-22,1.9797276763711125e-05,-2.4962821315512926e-20,-3.1258857688953867e-06,9.204171557919302e-22,2.394501828385128e-22,8.015091168545041e-08,22.0,41.0,0.024995172396302223,-0.0023808376863598824,-0.0013288395712152123,6.025257971487008e-05,4.131605237489566e-05,1.8416070815874264e-05,-0.0023808376863598824,0.0004858325410168618,4.131605237489566e-05,-1.8075774278258905e-05,-3.934862434107345e-06,7.953141256892758e-21,-0.0013288395712152123,4.131605237489566e-05,0.00014293950516730547,-1.2705494208814505e-20,-2.065802618744783e-06,-2.833241524058394e-06,6.025257971487008e-05,-1.8075774278258905e-05,-1.2705494208814505e-20,8.607511290392722e-07,1.9058241313221758e-21,-2.4945283814251934e-22,4.131605237489566e-05,-3.934862434107345e-06,-2.065802618744783e-06,1.9058241313221758e-21,1.9674311602102534e-07,-9.831900996817318e-23,1.8416070815874264e-05,7.953141256892758e-21,-2.833241524058394e-06,-2.4945283814251934e-22,-9.831900996817318e-23,7.083104236471627e-08,22.0,42.0,0.024429835379123688,-0.0023250889498740435,-0.001268230378627777,5.881799370399676e-05,3.9394377381540835e-05,1.7160429706564173e-05,-0.0023250889498740435,0.0004743544268421829,3.9394377381540835e-05,-1.7645397747401148e-05,-3.7518454973906046e-06,8.806727025562127e-21,-0.001268230378627777,3.9394377381540835e-05,0.0001330806699115783,-9.317362419797304e-21,-1.921677039717906e-06,-2.574064410509891e-06,5.881799370399676e-05,-1.7645397747401148e-05,-9.317362419797304e-21,8.402570301768719e-07,1.6543612251060553e-21,-2.289239258418312e-22,3.9394377381540835e-05,-3.7518454973906046e-06,-1.921677039717906e-06,1.6543612251060553e-21,1.8301685145161173e-07,-1.6229295987629397e-22,1.7160429706564173e-05,8.806727025562127e-21,-2.574064410509891e-06,-2.289239258418312e-22,-1.6229295987629397e-22,6.278205688659e-08,22.0,43.0,0.023889506235718727,-0.0022718915715813637,-0.0012116755824536085,5.7450131862424314e-05,3.7603724194923416e-05,1.6016399968066253e-05,-0.0022718915715813637,0.0004634062061086297,3.7603724194923416e-05,-1.7235039194929413e-05,-3.5813070553558646e-06,1.0640050068663737e-20,-0.0012116755824536085,3.7603724194923416e-05,0.00012410830822773278,2.541098841762901e-21,-1.7906535276779323e-06,-2.3438635707861977e-06,5.7450131862424314e-05,-1.7235039194929413e-05,2.541098841762901e-21,8.207161954487674e-07,1.0720260738687239e-21,-3.8412674274151804e-22,3.7603724194923416e-05,-3.5813070553558646e-06,-1.7906535276779323e-06,1.0720260738687239e-21,1.7053842782388529e-07,-1.0378677529621554e-22,1.6016399968066253e-05,1.0640050068663737e-20,-2.3438635707861977e-06,-3.8412674274151804e-22,-1.0378677529621554e-22,5.5806275156555785e-08,22.0,44.0,0.023372558876872063,-0.0022210744209587574,-0.0011588213965296745,5.614444671664387e-05,3.5932447644881904e-05,1.4971852579037659e-05,-0.0022210744209587574,0.0004529520228970796,3.5932447644881904e-05,-1.684333437879104e-05,-3.422137751840637e-06,-4.9111926321646686e-21,-0.0011588213965296745,3.5932447644881904e-05,0.00011592491500778124,-4.235164736271502e-22,-1.6712765500415117e-06,-2.1388361801655265e-06,5.614444671664387e-05,-1.684333437879104e-05,-4.235164736271502e-22,8.02063539140363e-07,-5.823351512373315e-22,1.6555307587296998e-22,3.5932447644881904e-05,-3.422137751840637e-06,-1.6712765500415117e-06,-5.823351512373315e-22,1.591692040392445e-07,5.213098939731672e-23,1.4971852579037659e-05,-4.9111926321646686e-21,-2.1388361801655265e-06,1.6555307587296998e-22,5.213098939731672e-23,4.974037537408549e-08,22.0,45.0,0.022877510637044907,-0.0021724810358136892,-0.0011093519860878587,5.489679460879415e-05,3.437016493990086e-05,1.4016202840139158e-05,-0.0021724810358136892,0.00044295916450209916,3.437016493990086e-05,-1.6469039110234007e-05,-3.2733491934777703e-06,-6.988129251392382e-21,-0.0011093519860878587,3.437016493990086e-05,0.0001084456525859423,-1.7787691892340307e-20,-1.5622803175574518e-06,-1.95574921235675e-06,5.489679460879415e-05,-1.6469039110234007e-05,-1.7787691892340307e-20,7.842398872526246e-07,9.26442286059391e-23,3.3443771960796727e-22,3.437016493990086e-05,-3.2733491934777703e-06,-1.5622803175574518e-06,9.26442286059391e-23,1.487886009954309e-07,-4.889755898734252e-24,1.4016202840139158e-05,-6.988129251392382e-21,-1.95574921235675e-06,3.3443771960796727e-22,-4.889755898734252e-24,4.444884638132862e-08,22.0,46.0,0.022402996197342873,-0.0021259684581309557,-0.0010629842290654778,5.370338476495817e-05,3.2907606509979814e-05,1.3140190276317298e-05,-0.0021259684581309557,0.00043339774128980935,3.2907606509979814e-05,-1.6111016520881094e-05,-3.134057806164492e-06,-8.410132695934164e-21,-0.0010629842290654778,3.2907606509979814e-05,0.00010159634985029697,-1.0587911840678754e-20,-1.4625602489104494e-06,-1.791844056242553e-06,5.370338476495817e-05,-1.6111016520881094e-05,-1.0587911840678754e-20,7.671912385376345e-07,-1.852884572118782e-22,2.890464864167075e-22,3.2907606509979814e-05,-3.134057806164492e-06,-1.4625602489104494e-06,-1.852884572118782e-22,1.3929145836755197e-07,9.138262544832448e-23,1.3140190276317298e-05,-8.410132695934164e-21,-1.791844056242553e-06,2.890464864167075e-22,9.138262544832448e-23,3.9818758068577154e-08,22.0,47.0,0.021947763860225677,-0.002081406069919467,-0.0010194642236456275,5.2560761105269194e-05,3.1536455935565755e-05,1.2335688552411739e-05,-0.002081406069919467,0.0004242404247634113,3.1536455935565755e-05,-1.5768227967782877e-05,-3.003472102136584e-06,-2.667918998650813e-21,-0.0010194642236456275,3.1536455935565755e-05,9.531204705126584e-05,1.6940658945086007e-21,-1.3711502333535464e-06,-1.6447585267087561e-06,5.2560761105269194e-05,-1.5768227967782877e-05,1.6940658945086007e-21,7.50868025534146e-07,-7.014491594449675e-22,1.2810352629562358e-22,3.1536455935565755e-05,-3.003472102136584e-06,-1.3711502333535464e-06,-7.014491594449675e-22,1.3058574666047207e-07,3.7227249363116025e-24,1.2335688552411739e-05,-2.667918998650813e-21,-1.6447585267087561e-06,1.2810352629562358e-22,3.7227249363116025e-24,3.575561891011603e-08,22.0,48.0,0.021510664373636246,-0.0020386737305670977,-0.0009785633301362395,5.1465744036249816e-05,3.024925354111474e-05,1.159554722107714e-05,-0.0020386737305670977,0.0004154620983172208,3.024925354111474e-05,-1.5439723938470706e-05,-2.880881311284611e-06,-5.569048807872595e-21,-0.0009785633301362395,3.024925354111474e-05,8.953564247349277e-05,-2.0752307207730358e-20,-1.287202280764177e-06,-1.5124627452678396e-06,5.1465744036249816e-05,-1.5439723938470706e-05,-2.0752307207730358e-20,7.352249440373271e-07,8.999725064576941e-22,2.3564537416399976e-22,3.024925354111474e-05,-2.880881311284611e-06,-1.287202280764177e-06,8.999725064576941e-22,1.2259069137599e-07,3.125045970306623e-23,1.159554722107714e-05,-5.569048807872595e-21,-1.5124627452678396e-06,2.3564537416399976e-22,3.125045970306623e-23,3.218005772964716e-08,22.0,49.0,0.021090634167194366,-0.0019976606126874685,-0.0009400756098330021,5.041542317485437e-05,2.903928361774888e-05,1.0913456208072603e-05,-0.0019976606126874685,0.0004070397117175162,2.903928361774888e-05,-1.512462677055737e-05,-2.7656460588332266e-06,8.103530608631855e-22,-0.0009400756098330021,2.903928361774888e-05,8.421685197390616e-05,0.0,-1.2099701507395366e-06,-1.3932071851741057e-06,5.041542317485437e-05,-1.512462677055737e-05,0.0,7.202203278211528e-07,1.852884572118782e-22,-3.23245790225024e-23,2.903928361774888e-05,-2.7656460588332266e-06,-1.2099701507395366e-06,1.852884572118782e-22,1.1523525245138444e-07,-8.888836559515143e-24,1.0913456208072603e-05,8.103530608631855e-22,-1.3932071851741057e-06,-3.23245790225024e-23,-8.888836559515143e-24,2.9025150283246148e-08,22.0,50.0,0.020686691626906395,-0.00195826543495059,-0.000903814856428653,4.9407113692723215e-05,2.7900488930754364e-05,1.0283833944413345e-05,-0.00195826543495059,0.0003989520773757249,2.7900488930754364e-05,-1.4822134289715905e-05,-2.6571892703941558e-06,1.6010344298615067e-21,-0.000903814856428653,2.7900488930754364e-05,7.931121945148334e-05,-4.235164736271502e-21,-1.1387954828023794e-06,-1.2854792430516682e-06,4.9407113692723215e-05,-1.4822134289715905e-05,-4.235164736271502e-21,7.058159212647297e-07,4.1028158382630173e-22,-2.352071934855857e-23,2.7900488930754364e-05,-2.6571892703941558e-06,-1.1387954828023794e-06,4.1028158382630173e-22,1.0845671027936987e-07,-3.244336569761058e-23,1.0283833944413345e-05,1.6010344298615067e-21,-1.2854792430516682e-06,-2.352071934855857e-23,-3.244336569761058e-23,2.623426986758659e-08,22.0,51.0,0.020297931507229805,-0.0019203941337764263,-0.000869612442329526,4.843834904022515e-05,2.6827392503037117e-05,9.701730050437618e-06,-0.0019203941337764263,0.00039117957931011915,2.6827392503037117e-05,-1.4531504348269664e-05,-2.5549898055032827e-06,2.394140593199409e-21,-0.000869612442329526,2.6827392503037117e-05,7.477938197553158e-05,4.235164736271502e-22,-1.0730957455962198e-06,-1.1879669727932196e-06,4.843834904022515e-05,-1.4531504348269664e-05,4.235164736271502e-22,6.919763677615265e-07,1.1911400820763599e-22,-4.5959591696253423e-23,2.6827392503037117e-05,-2.5549898055032827e-06,-1.0730957455962198e-06,1.1911400820763599e-22,1.021995927885655e-07,-4.1922883159154396e-23,9.701730050437618e-06,2.394140593199409e-21,-1.1879669727932196e-06,-4.5959591696253423e-23,-4.1922883159154396e-23,2.375933938481012e-08,22.0,52.0,0.019923511892557144,-0.001883959979750216,-0.0008373155142180622,4.750684092869051e-05,2.5815037588472478e-05,9.162745300272945e-06,-0.001883959979750216,0.00038370417314581573,2.5815037588472478e-05,-1.4252052096708212e-05,-2.458574954289361e-06,-1.4433081920764244e-20,-0.0008373155142180622,2.5815037588472478e-05,7.05864149495028e-05,-3.176373552203626e-20,-1.0123544598172884e-06,-1.0995294132953859e-06,4.750684092869051e-05,-1.4252052096708212e-05,-3.176373552203626e-20,6.786691528759548e-07,2.2499312661442353e-22,5.539568583595281e-22,2.5815037588472478e-05,-2.458574954289361e-06,-1.0123544598172884e-06,2.2499312661442353e-22,9.641470910537464e-08,9.203695085932548e-23,9.162745300272945e-06,-1.4433081920764244e-20,-1.0995294132953859e-06,5.539568583595281e-22,9.203695085932548e-23,2.1559399598913842e-08,22.0,53.0,0.019562656059861183,-0.0018488826462998986,-0.0008067851304076612,4.6610486606368795e-05,2.4858925826265477e-05,8.662958862259984e-06,-0.0018488826462998986,0.0003765091532841325,2.4858925826265477e-05,-1.3983145436213817e-05,-2.3675167994952062e-06,-1.6714884682092346e-21,-0.0008067851304076612,2.4858925826265477e-05,6.670120637863874e-05,-8.470329472543003e-22,-9.561125580148655e-07,-1.0191716910412651e-06,4.6610486606368795e-05,-1.3983145436213817e-05,-8.470329472543003e-22,6.658640927525994e-07,-1.3896634290890865e-22,5.53909350000372e-23,2.4858925826265477e-05,-2.3675167994952062e-06,-9.561125580148655e-07,-1.3896634290890865e-22,9.105833242983863e-08,1.3585409100030726e-23,8.662958862259984e-06,-1.6714884682092346e-21,-1.0191716910412651e-06,5.53909350000372e-23,1.3585409100030726e-23,1.9599454503804736e-08,22.0,54.0,0.019214637577533722,-0.001815087627619505,-0.0007778946892358363,4.5747328840661794e-05,2.3954964490258135e-05,8.198871910281014e-06,-0.001815087627619505,0.00036957900738343596,2.3954964490258135e-05,-1.3724198652198538e-05,-2.281425167893758e-06,-2.1106234285049e-21,-0.0007778946892358363,2.3954964490258135e-05,6.309602758847177e-05,-8.046812998915853e-21,-9.039609381034097e-07,-9.460236469749361e-07,4.5747328840661794e-05,-1.3724198652198538e-05,-8.046812998915853e-21,6.535332772727998e-07,9.926167350636332e-23,1.1448700452149094e-22,2.3954964490258135e-05,-2.281425167893758e-06,-9.039609381034097e-07,9.926167350636332e-23,8.609151791461045e-08,-1.2286540153253468e-23,8.198871910281014e-06,-2.1106234285049e-21,-9.460236469749361e-07,1.1448700452149094e-22,-1.2286540153253468e-23,1.784950320882217e-08,22.0,55.0,0.018878785893321037,-0.0017825060058385134,-0.0007505288813263178,4.491555955610238e-05,2.3099430109141394e-05,7.767352144583128e-06,-0.0017825060058385134,0.000362899387255311,2.3099430109141394e-05,-1.3474667866830714e-05,-2.199945811298676e-06,-1.0551683914788346e-20,-0.0007505288813263178,2.3099430109141394e-05,5.9746096667367965e-05,-2.5199230180815435e-20,-8.555344379601593e-07,-8.793228971626377e-07,4.491555955610238e-05,-1.3474667866830714e-05,-2.5199230180815435e-20,6.416508426809742e-07,3.3087224502121107e-22,4.015998981961931e-22,2.3099430109141394e-05,-2.199945811298676e-06,-8.555344379601593e-07,3.3087224502121107e-22,8.147947028191993e-08,6.073410448126534e-23,7.767352144583128e-06,-1.0551683914788346e-20,-8.793228971626377e-07,4.015998981961931e-22,6.073410448126534e-23,1.6283756565371732e-08,22.0,56.0,0.01855447143316269,-0.0017510736361145973,-0.0007245821761898696,4.411349436850287e-05,2.2288922991720028e-05,7.365592864516657e-06,-0.0017510736361145973,0.000356456934241578,2.2288922991720028e-05,-1.3234048310550861e-05,-2.122754722222453e-06,4.901955108829854e-21,-0.0007245821761898696,2.2288922991720028e-05,5.662921103066765e-05,1.2281977735187355e-20,-8.105063216135022e-07,-8.18399200852582e-07,4.411349436850287e-05,-1.3234048310550861e-05,1.2281977735187355e-20,6.301928010543634e-07,-1.9852334701272664e-22,-1.8176086057034709e-22,2.2288922991720028e-05,-2.122754722222453e-06,-8.105063216135022e-07,-1.9852334701272664e-22,7.719107486536814e-08,-3.0080717820142787e-23,7.365592864516657e-06,4.901955108829854e-21,-8.18399200852582e-07,-1.8176086057034709e-22,-3.0080717820142787e-23,1.4879985243965166e-08,22.0,57.0,0.018241113051772118,-0.001720730564557016,-0.0006999581819400191,4.333957258495502e-05,2.1520339942071587e-05,6.991071131778881e-06,-0.001720730564557016,0.00035023927921429276,2.1520339942071587e-05,-1.3001872503082268e-05,-2.0495563148870133e-06,-1.0225351469613373e-20,-0.0006999581819400191,2.1520339942071587e-05,5.372545274440199e-05,-2.583450489125616e-20,-7.685835612392111e-07,-7.626622959833185e-07,4.333957258495502e-05,-1.3001872503082268e-05,-2.583450489125616e-20,6.191367560859362e-07,2.5808035111654463e-22,3.765636744967873e-22,2.1520339942071587e-05,-2.0495563148870133e-06,-7.685835612392111e-07,2.5808035111654463e-22,7.319843575714913e-08,6.184605125882867e-23,6.991071131778881e-06,-1.0225351469613373e-20,-7.626622959833185e-07,3.765636744967873e-22,6.184605125882867e-23,1.3618969063600161e-08,22.0,58.0,0.0179381612688303,-0.0016914212610572577,-0.0006765684811398387,4.2592339013936e-05,2.0790837879758328e-05,6.641517302341526e-06,-0.0016914212610572577,0.0003442348097451031,2.0790837879758328e-05,-1.277770206797868e-05,-1.980079787244904e-06,4.562517424721528e-21,-0.0006765684811398387,2.0790837879758328e-05,5.101690476294607e-05,1.207021949837378e-20,-7.295030854947981e-07,-7.115911557775689e-07,4.2592339013936e-05,-1.277770206797868e-05,1.207021949837378e-20,6.084620167712274e-07,-1.7867101231145398e-22,-1.6173570853284585e-22,2.0790837879758328e-05,-1.980079787244904e-06,-7.295030854947981e-07,-1.7867101231145398e-22,6.947648500954529e-08,-3.235205662555306e-23,6.641517302341526e-06,4.562517424721528e-21,-7.115911557775689e-07,-1.6173570853284585e-22,-3.235205662555306e-23,1.2484055567085761e-08,22.0,59.0,0.017645107582211494,-0.001663093687966466,-0.000654331932310015,4.1870436689350754e-05,2.009781019296497e-05,6.314885467872955e-06,-0.001663093687966466,0.00033843275741674006,2.009781019296497e-05,-1.2561130461108405e-05,-1.914077074616216e-06,2.721509437520774e-21,-0.000654331932310015,2.009781019296497e-05,4.848743628826924e-05,1.4823076576950256e-20,-6.930279141670326e-07,-6.647247801083722e-07,4.1870436689350754e-05,-1.2561130461108405e-05,1.4823076576950256e-20,5.981490858175675e-07,-8.007108329513308e-22,-9.57913544774385e-23,2.009781019296497e-05,-1.914077074616216e-06,-6.930279141670326e-07,-8.007108329513308e-22,6.600265578526887e-08,-2.0749809131368126e-23,6.314885467872955e-06,2.721509437520774e-21,-6.647247801083722e-07,-9.57913544774385e-23,-2.0749809131368126e-23,1.1460771887072951e-08,22.0,60.0,0.0173614751547575,-0.0016356995329260826,-0.0006331739714369178,4.1172595956595615e-05,1.9438864910625853e-05,6.009326625644462e-06,-0.0016356995329260826,0.00033282305230386555,1.9438864910625853e-05,-1.2351778423180804e-05,-1.8513204622649937e-06,1.6795488596121657e-22,-0.0006331739714369178,1.9438864910625853e-05,4.6122484491206706e-05,-2.752857078576476e-21,-6.589445433746732e-07,-6.216544647941191e-07,4.1172595956595615e-05,-1.2351778423180804e-05,-2.752857078576476e-21,5.881799438611779e-07,1.7867101231145398e-22,1.9333212160817494e-23,1.9438864910625853e-05,-1.8513204622649937e-06,-6.589445433746732e-07,1.7867101231145398e-22,6.275662656207714e-08,-2.60234515678537e-23,6.009326625644462e-06,1.6795488596121657e-22,-6.216544647941191e-07,1.9333212160817494e-23,-2.60234515678537e-23,1.0536516548143027e-08,22.0,61.0,0.0170868169516325,-0.0016091931611299515,-0.0006130259716883302,4.0497634472558275e-05,1.881180469354149e-05,5.723168214899488e-06,-0.0016091931611299515,0.00032739632297307253,1.881180469354149e-05,-1.2149290341767482e-05,-1.7916004253493156e-06,-5.616113688360371e-21,-0.0006130259716883302,1.881180469354149e-05,4.390888716443442e-05,-1.1434944787933055e-20,-6.270601602409442e-07,-5.820170940751268e-07,4.0497634472558275e-05,-1.2149290341767482e-05,-1.1434944787933055e-20,5.785376515632379e-07,-7.279189390466644e-23,1.9732800186026335e-22,1.881180469354149e-05,-1.7916004253493156e-06,-6.270601602409442e-07,-7.279189390466644e-23,5.972001559939599e-08,4.3441443557148465e-23,5.723168214899488e-06,-5.616113688360371e-21,-5.820170940751268e-07,1.9732800186026335e-22,4.3441443557148465e-23,9.700285019675903e-09,22.0,62.0,0.016820712015032768,-0.0015835321974009275,-0.0005938245449215174,3.984444629168138e-05,1.8214605006505735e-05,5.454894562717527e-06,-0.0015835321974009275,0.00032214372185990214,1.8214605006505735e-05,-1.1953334251302294e-05,-1.7347242646792438e-06,-4.394038343844235e-21,-0.0005938245449215174,1.8214605006505735e-05,4.183472628938034e-05,-8.258571235729428e-21,-5.972001417831052e-07,-5.454894562717527e-07,3.984444629168138e-05,-1.1953334251302294e-05,-8.258571235729428e-21,5.692064064533042e-07,-1.9190590211230242e-22,1.694986299547489e-22,1.8214605006505735e-05,-1.7347242646792438e-06,-5.972001417831052e-07,-1.9190590211230242e-22,5.6876203302635986e-08,1.8420321810912203e-23,5.454894562717527e-06,-4.394038343844235e-21,-5.454894562717527e-07,1.694986299547489e-22,1.8420321810912203e-23,8.94245033578045e-09,22.0,63.0,0.016562769189476967,-0.001558676827698946,-0.000575511425267905,3.9211994590004906e-05,1.7645397747401148e-05,5.203130058362149e-06,-0.001558676827698946,0.0003170569834765047,1.7645397747401148e-05,-1.1763599104597233e-05,-1.6805140603537438e-06,-5.6982372135504016e-21,-0.000575511425267905,1.7645397747401148e-05,3.98891897930298e-05,-1.9481757786848908e-20,-5.692064064533042e-07,-5.117832984069537e-07,3.9211994590004906e-05,-1.1763599104597233e-05,-1.9481757786848908e-20,5.601713723990542e-07,5.624828165360588e-22,2.026767943420239e-22,1.7645397747401148e-05,-1.6805140603537438e-06,-5.692064064533042e-07,5.624828165360588e-22,5.421013327122637e-08,3.454577151788958e-23,5.203130058362149e-06,-5.6982372135504016e-21,-5.117832984069537e-07,2.026767943420239e-22,3.454577151788958e-23,8.254569472398998e-09,22.0,64.0,0.0163126178085804,-0.0015345896827057004,-0.0005580326542258263,3.859930802718736e-05,1.7102462152251974e-05,4.966624146618415e-06,-0.0015345896827057004,0.00031212842441163957,1.7102462152251974e-05,-1.1579792044358328e-05,-1.628805989639659e-06,-4.4516962252721626e-21,-0.0005580326542258263,1.7102462152251974e-05,3.806245877058245e-05,-1.291725244562808e-20,-5.4293531093208e-07,-4.806410629498714e-07,3.859930802718736e-05,-1.1579792044358328e-05,-1.291725244562808e-20,5.514186796062859e-07,2.3161057151484775e-22,1.4515810584310113e-22,1.7102462152251974e-05,-1.628805989639659e-06,-5.4293531093208e-07,2.3161057151484775e-22,5.170812755750376e-08,3.855489516685484e-23,4.966624146618415e-06,-4.4516962252721626e-21,-4.806410629498714e-07,1.4515810584310113e-22,3.855489516685484e-23,7.629223475191793e-09,23.0,3.0,0.19891303777694702,-0.02500000037252903,-0.125,0.0007246377062983811,0.005434782709926367,0.021739130839705467,-0.02500000037252903,0.005378317553550005,0.005434782709926367,-0.00020703933842014521,-0.0004940711660310626,3.469446951953614e-18,-0.125,0.005434782709926367,0.34239131212234497,-7.440638243930802e-20,-0.005434782709926367,-0.1304347813129425,0.0007246377062983811,-0.00020703933842014521,-7.440638243930802e-20,9.410879101778846e-06,1.7415413764664562e-20,-5.2464812461750886e-20,0.005434782709926367,-0.0004940711660310626,-0.005434782709926367,1.7415413764664562e-20,0.0004940711660310626,-2.6020852139652106e-18,0.021739130839705467,3.469446951953614e-18,-0.1304347813129425,-5.2464812461750886e-20,-2.6020852139652106e-18,0.06521739065647125,23.0,4.0,0.166847825050354,-0.019565217196941376,-0.08152174204587936,0.0005434782360680401,0.0032608695328235626,0.010869565419852734,-0.019565217196941376,0.0041078487411141396,0.0032608695328235626,-0.0001552795001771301,-0.0002964426821563393,8.673617379884035e-19,-0.08152174204587936,0.0032608695328235626,0.1304347813129425,7.90213755881668e-19,-0.0021739129442721605,-0.032608695328235626,0.0005434782360680401,-0.0001552795001771301,7.90213755881668e-19,7.058159098960459e-06,-1.4597291812640225e-20,-1.97553438970417e-19,0.0032608695328235626,-0.0002964426821563393,-0.0021739129442721605,-1.4597291812640225e-20,0.00019762845477089286,2.8189256484623115e-18,0.010869565419852734,8.673617379884035e-19,-0.032608695328235626,-1.97553438970417e-19,2.8189256484623115e-18,0.010869565419852734,23.0,5.0,0.14372670650482178,-0.01608695648610592,-0.05745341628789902,0.00043478261795826256,0.0021739129442721605,0.006211180239915848,-0.01608695648610592,0.003325804602354765,0.0021739129442721605,-0.00012422360305208713,-0.00019762845477089286,-8.673617379884035e-19,-0.05745341628789902,0.0021739129442721605,0.0659937858581543,4.925553909315267e-20,-0.0010869564721360803,-0.012422360479831696,0.00043478261795826256,-0.00012422360305208713,4.925553909315267e-20,5.6465273701178376e-06,-2.757477051934234e-21,-3.947671409692091e-21,0.0021739129442721605,-0.00019762845477089286,-0.0010869564721360803,-2.757477051934234e-21,9.881422738544643e-05,3.5236570605778894e-19,0.006211180239915848,-8.673617379884035e-19,-0.012422360479831696,-3.947671409692091e-21,3.5236570605778894e-19,0.003105590119957924,23.0,6.0,0.1262422353029251,-0.01366459671407938,-0.04270186275243759,0.00036231885314919055,0.001552795059978962,0.003881987649947405,-0.01366459671407938,0.0027950310613960028,0.001552795059978962,-0.00010351966921007261,-0.00014116318197920918,1.0842021724855044e-19,-0.04270186275243759,0.001552795059978962,0.03843167796730995,-1.0550034723442068e-19,-0.0006211180007085204,-0.005822981242090464,0.00036231885314919055,-0.00010351966921007261,-1.0550034723442068e-19,4.705439550889423e-06,8.537799622428627e-21,2.0616103518820406e-21,0.001552795059978962,-0.00014116318197920918,-0.0006211180007085204,8.537799622428627e-21,5.6465272791683674e-05,-1.3552527156068805e-20,0.003881987649947405,1.0842021724855044e-19,-0.005822981242090464,2.0616103518820406e-21,-1.3552527156068805e-20,0.0011645962949842215,23.0,7.0,0.11255175620317459,-0.011878881603479385,-0.03299689292907715,0.0003105590003542602,0.0011645962949842215,0.0025879917666316032,-0.011878881603479385,0.0024108656216412783,0.0011645962949842215,-8.873114711605012e-05,-0.00010587238648440689,-5.421010862427522e-20,-0.03299689292907715,0.0011645962949842215,0.02445652149617672,-1.8533493442254602e-19,-0.0003881987649947405,-0.003105590119957924,0.0003105590003542602,-8.873114711605012e-05,-1.8533493442254602e-19,4.033233835798455e-06,4.999633103048219e-21,1.6702232211453266e-20,0.0011645962949842215,-0.00010587238648440689,-0.0003881987649947405,4.999633103048219e-21,3.5290795494802296e-05,-1.5585406229479126e-19,0.0025879917666316032,-5.421010862427522e-20,-0.003105590119957924,1.6702232211453266e-20,-1.5585406229479126e-19,0.0005175983533263206,23.0,8.0,0.10153985768556595,-0.010507246479392052,-0.026268115267157555,0.00027173911803402007,0.0009057971183210611,0.0018115942366421223,-0.010507246479392052,0.002119800541549921,0.0009057971183210611,-7.763975008856505e-05,-8.234519191319123e-05,-7.318364664277155e-19,-0.026268115267157555,0.0009057971183210611,0.01656314730644226,-6.001336223270291e-20,-0.0002587991766631603,-0.0018115942366421223,0.00027173911803402007,-7.763975008856505e-05,-6.001336223270291e-20,3.5290795494802296e-06,-1.848767854153232e-21,9.228923564500887e-21,0.0009057971183210611,-8.234519191319123e-05,-0.0002587991766631603,-1.848767854153232e-21,2.3527198209194466e-05,1.4907779871675686e-19,0.0018115942366421223,-7.318364664277155e-19,-0.0018115942366421223,9.228923564500887e-21,1.4907779871675686e-19,0.0002587991766631603,23.0,9.0,0.09249012172222137,-0.009420289658010006,-0.02140974998474121,0.00024154588754754514,0.0007246377062983811,0.0013175230706110597,-0.009420289658010006,0.001891586696729064,0.0007246377062983811,-6.901311280671507e-05,-6.587615644093603e-05,5.421010862427522e-20,-0.02140974998474121,0.0007246377062983811,0.011751835234463215,-8.881112534615665e-20,-0.00018115942657459527,-0.0011293054558336735,0.00024154588754754514,-6.901311280671507e-05,-8.881112534615665e-20,3.1369595490104984e-06,1.3793800150334682e-21,8.720059661558024e-21,0.0007246377062983811,-6.587615644093603e-05,-0.00018115942657459527,1.3793800150334682e-21,1.6469039110234007e-05,-6.098637220230962e-20,0.0013175230706110597,5.421010862427522e-20,-0.0011293054558336735,8.720059661558024e-21,-6.098637220230962e-20,0.00014116318197920918,23.0,10.0,0.08492095023393631,-0.008537549525499344,-0.017786560580134392,0.00021739130897913128,0.0005928853643126786,0.0009881423320621252,-0.008537549525499344,0.0017078178934752941,0.0005928853643126786,-6.211180152604356e-05,-5.3898671467322856e-05,-2.710505431213761e-20,-0.017786560580134392,0.0005928853643126786,0.008646245114505291,5.4109567405758815e-20,-0.00013175231288187206,-0.000741106690838933,0.00021739130897913128,-6.211180152604356e-05,5.4109567405758815e-20,2.8232636850589188e-06,-6.124538858422187e-22,-6.12210467348239e-21,0.0005928853643126786,-5.3898671467322856e-05,-0.00013175231288187206,-6.124538858422187e-22,1.1977482245129067e-05,3.134021904840911e-20,0.0009881423320621252,-2.710505431213761e-20,-0.000741106690838933,-6.12210467348239e-21,3.134021904840911e-20,8.234519191319123e-05,23.0,11.0,0.07849650084972382,-0.0078063239343464375,-0.015012161806225777,0.00019762845477089286,0.0004940711660310626,0.0007601094548590481,-0.0078063239343464375,0.0015566449146717787,0.0004940711660310626,-5.6465272791683674e-05,-4.491555955610238e-05,2.439454888092385e-19,-0.015012161806225777,0.0004940711660310626,0.006549609825015068,4.09927091697383e-20,-9.881422738544643e-05,-0.0005067396559752524,0.00019762845477089286,-5.6465272791683674e-05,4.09927091697383e-20,2.5666033707238967e-06,-1.0063812345218108e-21,-3.44376291638566e-21,0.0004940711660310626,-4.491555955610238e-05,-9.881422738544643e-05,-1.0063812345218108e-21,8.983111911220476e-06,-2.0328790734103208e-20,0.0007601094548590481,2.439454888092385e-19,-0.0005067396559752524,-3.44376291638566e-21,-2.0328790734103208e-20,5.0673963414737955e-05,23.0,12.0,0.07297539710998535,-0.0071906354278326035,-0.012840420007705688,0.00018115942657459527,0.0004180601972620934,0.0005972288781777024,-0.0071906354278326035,0.001430091680958867,0.0004180601972620934,-5.1759834605036303e-05,-3.800547347054817e-05,2.507217523872729e-19,-0.012840420007705688,0.0004180601972620934,0.005081874784082174,-5.2609759708229465e-20,-7.601094694109634e-05,-0.0003583373036235571,0.00018115942657459527,-5.1759834605036303e-05,-5.2609759708229465e-20,2.3527197754447116e-06,3.0773697667935106e-21,1.5426358017326897e-21,0.0004180601972620934,-3.800547347054817e-05,-7.601094694109634e-05,3.0773697667935106e-21,6.910086085554212e-06,-4.870439446712227e-20,0.0005972288781777024,2.507217523872729e-19,-0.0003583373036235571,1.5426358017326897e-21,-4.870439446712227e-20,3.257612115703523e-05,23.0,13.0,0.0681796446442604,-0.0066650742664933205,-0.0111084571108222,0.00016722407599445432,0.0003583373036235571,0.00047778309090062976,-0.0066650742664933205,0.0013225903967395425,0.0003583373036235571,-4.777830690727569e-05,-3.257612115703523e-05,-4.0657581468206416e-20,-0.0111084571108222,0.0003583373036235571,0.0040231505408883095,1.66825899030794e-20,-5.972288636257872e-05,-0.00026060896925628185,0.00016722407599445432,-4.777830690727569e-05,1.66825899030794e-20,2.17174124372832e-06,-6.472598931064098e-22,-3.979004813386176e-22,0.0003583373036235571,-3.257612115703523e-05,-5.972288636257872e-05,-6.472598931064098e-22,5.429353223007638e-06,5.505714157152952e-21,0.00047778309090062976,-4.0657581468206416e-20,-0.00026060896925628185,-3.979004813386176e-22,5.505714157152952e-21,2.1717412892030552e-05,23.0,14.0,0.06397515535354614,-0.006211180239915848,-0.009704968892037868,0.0001552795001771301,0.0003105590003542602,0.0003881987649947405,-0.006211180239915848,0.0012301363749429584,0.0003105590003542602,-4.436557355802506e-05,-2.8232636395841837e-05,-0.0,-0.009704968892037868,0.0003105590003542602,0.0032399664632976055,3.3881317890172014e-21,-4.777830690727569e-05,-0.00019409938249737024,0.0001552795001771301,-4.436557355802506e-05,3.3881317890172014e-21,2.0166169178992277e-06,-2.117582368135751e-22,-0.0,0.0003105590003542602,-2.8232636395841837e-05,-4.777830690727569e-05,-2.117582368135751e-22,4.34348248745664e-06,-0.0,0.0003881987649947405,-0.0,-0.00019409938249737024,-0.0,-0.0,1.493072159064468e-05,23.0,15.0,0.06025895103812218,-0.005815217271447182,-0.00855179037898779,0.00014492752961814404,0.00027173911803402007,0.0003196930920239538,-0.005815217271447182,0.0011497741797938943,0.00027173911803402007,-4.140786768402904e-05,-2.4703556846361607e-05,-0.0,-0.00855179037898779,0.00027173911803402007,0.002648007357493043,0.0,-3.8819875044282526e-05,-0.00014755065785720944,0.00014492752961814404,-4.140786768402904e-05,0.0,1.8821757521436666e-06,0.0,-0.0,0.00027173911803402007,-2.4703556846361607e-05,-3.8819875044282526e-05,0.0,3.5290795494802296e-06,-0.0,0.0003196930920239538,-0.0,-0.00014755065785720944,-0.0,-0.0,1.0539332834014203e-05,23.0,16.0,0.05695066228508949,-0.005466751754283905,-0.007592711132019758,0.00013586955901701003,0.00023976982629392296,0.0002664109051693231,-0.005466751754283905,0.0010792756220325828,0.00023976982629392296,-3.8819875044282526e-05,-2.1797255612909794e-05,3.457116713399563e-20,-0.007592711132019758,0.00023976982629392296,0.0021921813022345304,1.6940658945086007e-21,-3.196930992999114e-05,-0.00011417610221542418,0.00013586955901701003,-3.8819875044282526e-05,1.6940658945086007e-21,1.7645397747401148e-06,-2.117582368135751e-22,-1.8764388645970986e-37,0.00023976982629392296,-2.1797255612909794e-05,-3.196930992999114e-05,-2.117582368135751e-22,2.9063007787044626e-06,-4.6094886011555386e-21,0.0002664109051693231,3.457116713399563e-20,-0.00011417610221542418,-1.8764388645970986e-37,-4.6094886011555386e-21,7.611740329593886e-06,23.0,17.0,0.053986627608537674,-0.0051577151753008366,-0.006786467507481575,0.00012787723971996456,0.0002131287328666076,0.0002243460330646485,-0.0051577151753008366,0.0010169284651055932,0.0002131287328666076,-3.653635212685913e-05,-1.9375338524696417e-05,-2.0906177018832e-19,-0.006786467507481575,0.0002131287328666076,0.0018354309722781181,-1.3174755062785545e-19,-2.664109160832595e-05,-8.973841613624245e-05,0.00012787723971996456,-3.653635212685913e-05,-1.3174755062785545e-19,1.6607433508397662e-06,1.6940658945086007e-21,5.6931230724780645e-21,0.0002131287328666076,-1.9375338524696417e-05,-2.664109160832595e-05,1.6940658945086007e-21,2.421917315587052e-06,9.344478434252558e-21,0.0002243460330646485,-2.0906177018832e-19,-8.973841613624245e-05,5.6931230724780645e-21,9.344478434252558e-21,5.608651008515153e-06,23.0,18.0,0.051315788179636,-0.004881769418716431,-0.006102212239056826,0.00012077294377377257,0.0001906941324705258,0.0001906941324705258,-0.004881769418716431,0.0009613955626264215,0.0001906941324705258,-3.4506556403357536e-05,-1.733582939777989e-05,-0.0,-0.006102212239056826,0.0001906941324705258,0.0015521941240876913,-8.470329472543003e-22,-2.2434604034060612e-05,-7.151029421947896e-05,0.00012077294377377257,-3.4506556403357536e-05,-8.470329472543003e-22,1.5684797745052492e-06,1.0587911840678754e-22,-0.0,0.0001906941324705258,-1.733582939777989e-05,-2.2434604034060612e-05,1.0587911840678754e-22,2.039509354290203e-06,-0.0,0.0001906941324705258,-0.0,-7.151029421947896e-05,-0.0,-0.0,4.206488029012689e-06,23.0,19.0,0.04889669641852379,-0.004633867181837559,-0.005516508594155312,0.00011441647802712396,0.00017162472067866474,0.0001634521031519398,-0.004633867181837559,0.0009116170112974942,0.00017162472067866474,-3.2690422813175246e-05,-1.560224700369872e-05,1.0164395367051604e-20,-0.005516508594155312,0.00017162472067866474,0.0013244427973404527,-0.0,-1.9069411791861057e-05,-5.768897972302511e-05,0.00011441647802712396,-3.2690422813175246e-05,-0.0,1.4859282373436145e-06,0.0,-5.293955920339377e-23,0.00017162472067866474,-1.560224700369872e-05,-1.9069411791861057e-05,0.0,1.7335829625153565e-06,-1.164670302474663e-21,0.0001634521031519398,1.0164395367051604e-20,-5.768897972302511e-05,-5.293955920339377e-23,-1.164670302474663e-21,3.204943368473323e-06,23.0,20.0,0.046695370227098465,-0.004409938119351864,-0.005011293105781078,0.00010869565448956564,0.0001552795001771301,0.00014116318197920918,-0.004409938119351864,0.0008667419315315783,0.0001552795001771301,-3.105590076302178e-05,-1.4116318197920918e-05,-5.929230630780102e-21,-0.005011293105781078,0.0001552795001771301,0.0011392117012292147,-9.881086411148976e-22,-1.6345211406587623e-05,-4.705439641838893e-05,0.00010869565448956564,-3.105590076302178e-05,-9.881086411148976e-22,1.4116318425294594e-06,6.71167717545213e-23,1.434340187803044e-23,0.0001552795001771301,-1.4116318197920918e-05,-1.6345211406587623e-05,6.71167717545213e-23,1.4859282373436145e-06,6.352747104407253e-22,0.00014116318197920918,-5.929230630780102e-21,-4.705439641838893e-05,1.434340187803044e-23,6.352747104407253e-22,2.476547024343745e-06,23.0,21.0,0.04468367248773575,-0.0042066629976034164,-0.0045724594965577126,0.00010351966921007261,0.00014116318197920918,0.00012275059998501092,-0.0042066629976034164,0.0008260796312242746,0.00014116318197920918,-2.9577047826023772e-05,-1.2833016626245808e-05,-3.7269449679189215e-20,-0.0045724594965577126,0.00014116318197920918,0.000987011706456542,-8.560961891270463e-22,-1.4116318197920918e-05,-3.876334449159913e-05,0.00010351966921007261,-2.9577047826023772e-05,-8.560961891270463e-22,1.3444113164950977e-06,6.518351348953979e-23,7.152063824501553e-24,0.00014116318197920918,-1.2833016626245808e-05,-1.4116318197920918e-05,6.518351348953979e-23,1.2833016853619483e-06,3.705769144237564e-21,0.00012275059998501092,-3.7269449679189215e-20,-3.876334449159913e-05,7.152063824501553e-24,3.705769144237564e-21,1.9381673155294266e-06,23.0,22.0,0.042838115245103836,-0.004021309316158295,-0.004188864026218653,9.881422738544643e-05,0.00012888813216704875,0.00010740676952991635,-0.004021309316158295,0.000789063167758286,0.00012888813216704875,-2.8232636395841837e-05,-1.1717102097463794e-05,2.286988957586611e-20,-0.004188864026218653,0.00012888813216704875,0.0008607885683886707,-0.0,-1.2275059816602152e-05,-3.222203304176219e-05,9.881422738544643e-05,-2.8232636395841837e-05,-0.0,1.2833016853619483e-06,-5.293955920339377e-23,0.0,0.00012888813216704875,-1.1717102097463794e-05,-1.2275059816602152e-05,-5.293955920339377e-23,1.1159145287820138e-06,-2.1705219273391446e-21,0.00010740676952991635,2.286988957586611e-20,-3.222203304176219e-05,0.0,-2.1705219273391446e-21,1.534382477075269e-06,23.0,23.0,0.041138939559459686,-0.0038516067434102297,-0.0038516067434102297,9.451795631321147e-05,0.00011814745084848255,9.451795631321147e-05,-0.0038516067434102297,0.0007552230381406844,0.00011814745084848255,-2.7005131414625794e-05,-1.0740676771092694e-05,8.470329472543003e-21,-0.0038516067434102297,0.00011814745084848255,0.0007552230381406844,6.550515669305864e-22,-1.0740676771092694e-05,-2.7005131414625794e-05,9.451795631321147e-05,-2.7005131414625794e-05,6.550515669305864e-22,1.2275060043975827e-06,-6.225560890815769e-23,3.046562277732275e-24,0.00011814745084848255,-1.0740676771092694e-05,-1.0740676771092694e-05,-6.225560890815769e-23,9.76425212684262e-07,-8.470329472543003e-22,9.451795631321147e-05,8.470329472543003e-21,-2.7005131414625794e-05,3.046562277732275e-24,-8.470329472543003e-22,1.2275060043975827e-06,23.0,24.0,0.039569396525621414,-0.0036956521216779947,-0.003553511807695031,9.057971328729764e-05,0.00010869565448956564,8.361203799722716e-05,-0.0036956521216779947,0.0007241671555675566,0.00010869565448956564,-2.5879917302518152e-05,-9.881422556645703e-06,8.470329472543003e-22,-0.003553511807695031,0.00010869565448956564,0.0006662524538114667,-0.0,-9.451795449422207e-06,-2.28032840823289e-05,9.057971328729764e-05,-2.5879917302518152e-05,-0.0,1.1763598877223558e-06,5.293955920339377e-23,-2.6469779601696886e-23,0.00010869565448956564,-9.881422556645703e-06,-9.451795449422207e-06,5.293955920339377e-23,8.592541576035728e-07,-5.293955920339377e-23,8.361203799722716e-05,8.470329472543003e-22,-2.28032840823289e-05,-2.6469779601696886e-23,-5.293955920339377e-23,9.9144710929977e-07,23.0,25.0,0.03811519965529442,-0.0035518393851816654,-0.0032887402921915054,8.695651922607794e-05,0.00010033445141743869,7.432181155309081e-05,-0.0035518393851816654,0.0006955653079785407,0.00010033445141743869,-2.4844721338013187e-05,-9.12131326913368e-06,-1.2705494208814505e-21,-0.0032887402921915054,0.00010033445141743869,0.000590737268794328,-5.12382904155971e-22,-8.361203981621657e-06,-1.938829882419668e-05,8.695651922607794e-05,-2.4844721338013187e-05,-5.12382904155971e-22,1.1293054740235675e-06,7.25218841717492e-24,-9.653111036903131e-24,0.00010033445141743869,-9.12131326913368e-06,-8.361203981621657e-06,7.25218841717492e-24,7.601094580422796e-07,1.0587911840678754e-22,7.432181155309081e-05,-1.2705494208814505e-21,-1.938829882419668e-05,-9.653111036903131e-24,1.0587911840678754e-22,8.07845822237141e-07,23.0,26.0,0.036764081567525864,-0.003418803447857499,-0.003052503103390336,8.361203799722716e-05,9.290226444136351e-05,6.63587634335272e-05,-0.003418803447857499,0.0006691376329399645,9.290226444136351e-05,-2.3889153453637846e-05,-8.445660569122992e-06,-2.117582368135751e-21,-0.003052503103390336,9.290226444136351e-05,0.0005262249615043402,-0.0,-7.432181519106962e-06,-1.65896908583818e-05,8.361203799722716e-05,-2.3889153453637846e-05,-0.0,1.08587062186416e-06,0.0,1.3234889800848443e-23,9.290226444136351e-05,-8.445660569122992e-06,-7.432181519106962e-06,0.0,6.756528705409437e-07,1.5881867761018131e-22,6.63587634335272e-05,-2.117582368135751e-21,-1.65896908583818e-05,1.3234889800848443e-23,1.5881867761018131e-22,6.635876275140618e-07,23.0,27.0,0.03550546243786812,-0.0032953761983662844,-0.0028408414218574762,8.051529584918171e-05,8.626638737041503e-05,5.949406113359146e-05,-0.0032953761983662844,0.0006446451880037785,8.626638737041503e-05,-2.300437154190149e-05,-7.842399099899922e-06,-6.776263578034403e-21,-0.0028408414218574762,8.626638737041503e-05,0.00047078108764253557,4.083375023897006e-22,-6.63587616145378e-06,-1.4278574781201314e-05,8.051529584918171e-05,-2.300437154190149e-05,4.083375023897006e-22,1.045653220899112e-06,-5.869526507272904e-23,1.408508937461582e-23,8.626638737041503e-05,-7.842399099899922e-06,-6.63587616145378e-06,-5.869526507272904e-23,6.032614692230709e-07,5.029258124322408e-22,5.949406113359146e-05,-6.776263578034403e-21,-1.4278574781201314e-05,1.408508937461582e-23,5.029258124322408e-22,5.491759793585516e-07,23.0,28.0,0.034330155700445175,-0.0031805525068193674,-0.00265046046115458,7.763975008856505e-05,8.031698234844953e-05,5.3544656111625955e-05,-0.0031805525068193674,0.0006218829075805843,8.031698234844953e-05,-2.218278677901253e-05,-7.301543973881053e-06,-6.056285572868247e-20,-0.00265046046115458,8.031698234844953e-05,0.00042286550160497427,-7.995746228318068e-20,-5.949406386207556e-06,-1.2356458682916127e-05,7.763975008856505e-05,-2.218278677901253e-05,-7.995746228318068e-20,1.0083084589496139e-06,1.1249426109554597e-21,2.349654189777325e-21,8.031698234844953e-05,-7.301543973881053e-06,-5.949406386207556e-06,1.1249426109554597e-21,5.408551260188688e-07,6.88214269644119e-22,5.3544656111625955e-05,-6.056285572868247e-20,-1.2356458682916127e-05,2.349654189777325e-21,6.88214269644119e-22,4.576466210437502e-07,23.0,29.0,0.03323015943169594,-0.0030734632164239883,-0.0024785993155092,7.496251782868057e-05,7.496251782868057e-05,4.83629155496601e-05,-0.0030734632164239883,0.0006006736657582223,7.496251782868057e-05,-2.141786171705462e-05,-6.814774224039866e-06,-2.964615315390051e-21,-0.0024785993155092,7.496251782868057e-05,0.00038124178536236286,6.613490750914019e-22,-5.354465429263655e-06,-1.0747314263426233e-05,7.496251782868057e-05,-2.141786171705462e-05,6.613490750914019e-22,9.735391586218611e-07,-9.288516881449894e-24,-5.408728950047883e-24,7.496251782868057e-05,-6.814774224039866e-06,-5.354465429263655e-06,-9.288516881449894e-24,4.867695793109306e-07,1.5881867761018131e-22,4.83629155496601e-05,-2.964615315390051e-21,-1.0747314263426233e-05,-5.408728950047883e-24,1.5881867761018131e-22,3.838326563254668e-07,23.0,30.0,0.0321984589099884,-0.0029733520932495594,-0.002322931308299303,7.246376480907202e-05,7.012622518232092e-05,4.382889164844528e-05,-0.0029733520932495594,0.0005808637361042202,7.012622518232092e-05,-2.070393384201452e-05,-6.375111752277007e-06,-4.235164736271502e-21,-0.002322931308299303,7.012622518232092e-05,0.0003449096402619034,7.118240561220425e-21,-4.8362917368649505e-06,-9.39190522331046e-06,7.246376480907202e-05,-2.070393384201452e-05,7.118240561220425e-21,9.410878760718333e-07,-6.471127232159318e-22,-3.76158192263132e-37,7.012622518232092e-05,-6.375111752277007e-06,-4.8362917368649505e-06,-6.471127232159318e-22,4.3966286966679036e-07,2.6469779601696886e-22,4.382889164844528e-05,-4.235164736271502e-21,-9.39190522331046e-06,-3.76158192263132e-37,2.6469779601696886e-22,3.2385881354457524e-07,23.0,31.0,0.03122888319194317,-0.0028795581310987473,-0.002181483432650566,7.012622518232092e-05,6.574334111064672e-05,3.984444629168138e-05,-0.0028795581310987473,0.0005623190081678331,6.574334111064672e-05,-2.0036064597661607e-05,-5.976667125651147e-06,0.0,-0.002181483432650566,6.574334111064672e-05,0.00031305369338952005,-0.0,-4.382889073895058e-06,-8.243679076258559e-06,7.012622518232092e-05,-2.0036064597661607e-05,-0.0,9.107302503252868e-07,0.0,0.0,6.574334111064672e-05,-5.976667125651147e-06,-4.382889073895058e-06,0.0,3.9844448451731296e-07,1.3234889800848443e-23,3.984444629168138e-05,0.0,-8.243679076258559e-06,0.0,1.3234889800848443e-23,2.7478930064717133e-07,23.0,32.0,0.030315987765789032,-0.002791502047330141,-0.002052574884146452,6.793477950850502e-05,6.175889575388283e-05,3.632876178016886e-05,-0.002791502047330141,0.0005449219606816769,6.175889575388283e-05,-1.9409937522141263e-05,-5.6144449445127975e-06,2.117582368135751e-21,-0.002052574884146452,6.175889575388283e-05,0.00028500499320216477,-0.0,-3.9844449020165484e-06,-7.265752174134832e-06,6.793477950850502e-05,-1.9409937522141263e-05,-0.0,8.822698873700574e-07,0.0,0.0,6.175889575388283e-05,-5.6144449445127975e-06,-3.9844449020165484e-06,0.0,3.6222223798176856e-07,-1.4558378780933287e-22,3.632876178016886e-05,2.117582368135751e-21,-7.265752174134832e-06,0.0,-1.4558378780933287e-22,2.3437910101620218e-07,23.0,33.0,0.029454944655299187,-0.0027086723130196333,-0.001934765954501927,6.587615644093603e-05,5.8126017393078655e-05,3.321486656204797e-05,-0.0027086723130196333,0.000528569333255291,5.8126017393078655e-05,-1.8821758203557692e-05,-5.28418331668945e-06,-2.752857078576476e-21,-0.001934765954501927,5.8126017393078655e-05,0.00026021103258244693,-0.0,-3.632876087067416e-06,-6.428683718695538e-06,6.587615644093603e-05,-1.8821758203557692e-05,-0.0,8.555344379601593e-07,0.0,0.0,5.8126017393078655e-05,-5.28418331668945e-06,-3.632876087067416e-06,0.0,3.3026145729309064e-07,1.852884572118782e-22,3.321486656204797e-05,-2.752857078576476e-21,-6.428683718695538e-06,0.0,1.852884572118782e-22,2.0089636620923557e-07,23.0,34.0,0.028641456738114357,-0.002630617469549179,-0.0018268176354467869,6.393861985998228e-05,5.48045318282675e-05,3.0446961318375543e-05,-0.002630617469549179,0.0005131696816533804,5.48045318282675e-05,-1.8268176063429564e-05,-4.982230166206136e-06,-2.964615315390051e-20,-0.0018268176354467869,5.48045318282675e-05,0.0002382128732278943,-3.779369801061457e-20,-3.3214867016795324e-06,-5.70880547456909e-06,6.393861985998228e-05,-1.8268176063429564e-05,-3.779369801061457e-20,8.303716754198831e-07,6.121496505900675e-22,7.726381384773227e-22,5.48045318282675e-05,-4.982230166206136e-06,-3.3214867016795324e-06,6.121496505900675e-22,3.0195334943527996e-07,6.88214269644119e-22,3.0446961318375543e-05,-2.964615315390051e-20,-5.70880547456909e-06,7.726381384773227e-22,6.88214269644119e-22,1.7299409194038162e-07,23.0,35.0,0.027871690690517426,-0.0025569358840584755,-0.0017276593716815114,6.211180152604356e-05,5.1759834605036303e-05,2.7978288926533423e-05,-0.0025569358840584755,0.0004986421554349363,5.1759834605036303e-05,-1.7746229787007906e-05,-4.705439550889423e-06,2.117582368135751e-21,-0.0017276593716815114,5.1759834605036303e-05,0.00021862713037990034,-0.0,-3.044696086362819e-06,-5.086961664346745e-06,6.211180152604356e-05,-1.7746229787007906e-05,-0.0,8.066467671596911e-07,0.0,0.0,5.1759834605036303e-05,-4.705439550889423e-06,-3.044696086362819e-06,0.0,2.7679055847329437e-07,-1.0587911840678754e-22,2.7978288926533423e-05,2.117582368135751e-21,-5.086961664346745e-06,0.0,-1.0587911840678754e-22,1.4961651118028385e-07,23.0,36.0,0.027142217382788658,-0.00248726992867887,-0.001636361819691956,6.0386471886886284e-05,4.8962006985675544e-05,2.5769477360881865e-05,-0.00248726992867887,0.0004849146062042564,4.8962006985675544e-05,-1.7253278201678768e-05,-4.451091626833659e-06,-1.9058241313221758e-21,-0.001636361819691956,4.8962006985675544e-05,0.0002011318429140374,-0.0,-2.7978289836028125e-06,-4.54755490864045e-06,6.0386471886886284e-05,-1.7253278201678768e-05,-0.0,7.842398872526246e-07,0.0,0.0,4.8962006985675544e-05,-4.451091626833659e-06,-2.7978289836028125e-06,0.0,2.5434809458602103e-07,9.26442286059391e-23,2.5769477360881865e-05,-1.9058241313221758e-21,-4.54755490864045e-06,0.0,9.26442286059391e-23,1.2993012887818622e-07,23.0,37.0,0.02644994854927063,-0.0024212999269366264,-0.0015521154273301363,5.8754405472427607e-05,4.638505924958736e-05,2.3787210011505522e-05,-0.0024212999269366264,0.0004719227727036923,4.638505924958736e-05,-1.6786972992122173e-05,-4.216823526803637e-06,-2.329340604949326e-21,-0.0015521154273301363,4.638505924958736e-05,0.00018545528291724622,-0.0,-2.5769477360881865e-06,-4.077807261637645e-06,5.8754405472427607e-05,-1.6786972992122173e-05,-0.0,7.630442269146442e-07,0.0,0.0,4.638505924958736e-05,-4.216823526803637e-06,-2.5769477360881865e-06,0.0,2.342679721323293e-07,1.3234889800848443e-22,2.3787210011505522e-05,-2.329340604949326e-21,-4.077807261637645e-06,0.0,1.3234889800848443e-22,1.1327242788183867e-07,23.0,38.0,0.025792114436626434,-0.0023587397299706936,-0.0014742122730240226,5.720823901356198e-05,4.4006337702739984e-05,2.2003168851369992e-05,-0.0023587397299706936,0.00045960902934893966,4.4006337702739984e-05,-1.6345211406587623e-05,-4.000576154794544e-06,2.117582368135751e-22,-0.0014742122730240226,4.4006337702739984e-05,0.0001713670208118856,-0.0,-2.378720864726347e-06,-3.66719473277044e-06,5.720823901356198e-05,-1.6345211406587623e-05,-0.0,7.429641186718072e-07,0.0,0.0,4.4006337702739984e-05,-4.000576154794544e-06,-2.378720864726347e-06,0.0,2.1624735779823823e-07,-1.9852334701272664e-23,2.2003168851369992e-05,2.117582368135751e-22,-3.66719473277044e-06,0.0,-1.9852334701272664e-23,9.911337173207357e-08,23.0,39.0,0.025166204199194908,-0.0022993311285972595,-0.0014020311646163464,5.574135866481811e-05,4.180601899861358e-05,2.0393181330291554e-05,-0.0022993311285972595,0.00044792162952944636,4.180601899861358e-05,-1.5926103515084833e-05,-3.8005473470548168e-06,6.352747104407253e-22,-0.0014020311646163464,4.180601899861358e-05,0.00015867083857301623,-0.0,-2.200316885136999e-06,-3.307002316432772e-06,5.574135866481811e-05,-1.5926103515084833e-05,-0.0,7.239137858050526e-07,0.0,0.0,4.180601899861358e-05,-3.8005473470548168e-06,-2.200316885136999e-06,0.0,2.000288077397272e-07,-3.970466940254533e-23,2.0393181330291554e-05,6.352747104407253e-22,-3.307002316432772e-06,0.0,-3.970466940254533e-23,8.702637188662266e-08,23.0,40.0,0.024569950997829437,-0.0022428419906646013,-0.001335024950094521,5.434782724478282e-05,3.976670268457383e-05,1.8936525520985015e-05,-0.0022428419906646013,0.0004368139780126512,3.976670268457383e-05,-1.552795038151089e-05,-3.615154810177046e-06,-2.375422643004199e-20,-0.001335024950094521,3.976670268457383e-05,0.00014719889441039413,-3.5151867311053464e-20,-2.0393181330291554e-06,-2.9899777018727036e-06,5.434782724478282e-05,-1.552795038151089e-05,-3.5151867311053464e-20,7.058159212647297e-07,2.9116757561866574e-22,7.682447007279955e-22,3.976670268457383e-05,-3.615154810177046e-06,-2.0393181330291554e-06,2.9116757561866574e-22,1.8539255108862562e-07,2.4977933820485946e-22,1.8936525520985015e-05,-2.375422643004199e-20,-2.9899777018727036e-06,7.682447007279955e-22,2.4977933820485946e-22,7.666609036505179e-08,23.0,41.0,0.02400129660964012,-0.002189062302932143,-0.0012727106222882867,5.3022267820779234e-05,3.787305104197003e-05,1.7615371689316817e-05,-0.002189062302932143,0.0004262439615558833,3.787305104197003e-05,-1.514921950729331e-05,-3.443004516157089e-06,-3.6729642435870906e-21,-0.0012727106222882867,3.787305104197003e-05,0.0001368070807075128,-3.4304834363799164e-20,-1.8936524384116638e-06,-2.7100572879135143e-06,5.3022267820779234e-05,-1.514921950729331e-05,-3.4304834363799164e-20,6.88600891862734e-07,2.1308172579365993e-21,1.8601082660911994e-22,3.787305104197003e-05,-3.443004516157089e-06,-1.8936524384116638e-06,2.1308172579365993e-21,1.721502229656835e-07,8.074804680530339e-24,1.7615371689316817e-05,-3.6729642435870906e-21,-2.7100572879135143e-06,1.8601082660911994e-22,8.074804680530339e-24,6.775142935566691e-08,23.0,42.0,0.023458367213606834,-0.0021378016099333763,-0.0012146600056439638,5.1759834605036303e-05,3.6111512599745765e-05,1.6414323908975348e-05,-0.0021378016099333763,0.0004161734541412443,3.6111512599745765e-05,-1.4788523913011886e-05,-3.2828647817950696e-06,-6.345149301039143e-22,-0.0012146600056439638,3.6111512599745765e-05,0.00012737115321215242,9.740878893424454e-21,-1.7615371916690492e-06,-2.462148586346302e-06,5.1759834605036303e-05,-1.4788523913011886e-05,9.740878893424454e-21,6.722056582475489e-07,-7.411538288475128e-22,-1.7217122759276528e-23,3.6111512599745765e-05,-3.2828647817950696e-06,-1.7615371916690492e-06,-7.411538288475128e-22,1.6013974857287394e-07,3.2424865331661337e-23,1.6414323908975348e-05,-6.345149301039143e-22,-2.462148586346302e-06,-1.7217122759276528e-23,3.2424865331661337e-23,6.005240749118457e-08,23.0,43.0,0.02293945476412773,-0.002088886918500066,-0.001160492654889822,5.055611836723983e-05,3.447007838985883e-05,1.5320036254706793e-05,-0.002088886918500066,0.0004065678804181516,3.447007838985883e-05,-1.4444604857999366e-05,-3.1336435313278344e-06,4.1618934168848526e-21,-0.001160492654889822,3.447007838985883e-05,0.00011878365330630913,-2.117582368135751e-21,-1.6414323908975348e-06,-2.2419565084419446e-06,5.055611836723983e-05,-1.4444604857999366e-05,-2.117582368135751e-21,6.565729790963815e-07,7.808584982500581e-22,-1.663026073289003e-22,3.447007838985883e-05,-3.1336435313278344e-06,-1.6414323908975348e-06,7.808584982500581e-22,1.4922112256954279e-07,-2.2100247493241492e-23,1.5320036254706793e-05,4.1618934168848526e-21,-2.2419565084419446e-06,-1.663026073289003e-22,-2.2100247493241492e-23,5.3379913822482195e-08,23.0,44.0,0.022443002089858055,-0.0020421608351171017,-0.0011098699178546667,4.9407113692723215e-05,3.2938078220468014e-05,1.4320902664621826e-05,-0.0020421608351171017,0.0003973957500420511,3.2938078220468014e-05,-1.4116318197920918e-05,-2.994370561282267e-06,1.2091967926525067e-21,-0.0011098699178546667,3.2938078220468014e-05,0.00011095131048932672,1.3552527156068805e-20,-1.5320035799959442e-06,-2.0458433027670253e-06,4.9407113692723215e-05,-1.4116318197920918e-05,1.3552527156068805e-20,6.416508426809742e-07,-8.867376166568457e-22,-9.38593079028074e-23,3.2938078220468014e-05,-2.994370561282267e-06,-1.5320035799959442e-06,-8.867376166568457e-22,1.3927305531069578e-07,3.641511311688647e-23,1.4320902664621826e-05,1.2091967926525067e-21,-2.0458433027670253e-06,-9.38593079028074e-23,3.641511311688647e-23,4.757774973995765e-08,23.0,45.0,0.021967582404613495,-0.001997479470446706,-0.001062489114701748,4.830917896470055e-05,3.150598786305636e-05,1.340680228167912e-05,-0.001997479470446706,0.0003886283957399428,3.150598786305636e-05,-1.3802622561343014e-05,-2.86418048744963e-06,5.732761906704904e-21,-0.001062489114701748,3.150598786305636e-05,0.00010379288869444281,5.082197683525802e-21,-1.432090243724815e-06,-1.8707166873355163e-06,4.830917896470055e-05,-1.3802622561343014e-05,5.082197683525802e-21,6.273919552768348e-07,9.26442286059391e-23,-1.453930349315632e-22,3.150598786305636e-05,-2.86418048744963e-06,-1.432090243724815e-06,9.26442286059391e-23,1.3019003120007255e-07,-8.931894638760459e-23,1.340680228167912e-05,5.732761906704904e-21,-1.8707166873355163e-06,-1.453930349315632e-22,-8.931894638760459e-23,4.251628737961255e-08,23.0,46.0,0.021511884406208992,-0.001954711740836501,-0.0010180791141465306,4.7258978156605735e-05,3.0165305361151695e-05,1.2568877536978107e-05,-0.001954711740836501,0.0003802395658567548,3.0165305361151695e-05,-1.3502565707312897e-05,-2.7423004667070927e-06,8.988478962537914e-21,-0.0010180791141465306,3.0165305361151695e-05,9.723740367917344e-05,3.8116482626443515e-21,-1.340680228167912e-06,-1.7139378769570612e-06,4.7258978156605735e-05,-1.3502565707312897e-05,3.8116482626443515e-21,6.137530021987914e-07,1.0058516248644817e-21,-3.113438355402839e-22,3.0165305361151695e-05,-2.7423004667070927e-06,-1.340680228167912e-06,1.0058516248644817e-21,1.2188002074253745e-07,-7.947429676747018e-23,1.2568877536978107e-05,8.988478962537914e-21,-1.7139378769570612e-06,-3.113438355402839e-22,-7.947429676747018e-23,3.8087506482042954e-08,23.0,47.0,0.021074708551168442,-0.0019137372728437185,-0.0009763965499587357,4.625346991815604e-05,2.8908418244100176e-05,1.1799354069808032e-05,-0.0019137372728437185,0.0003722052788361907,2.8908418244100176e-05,-1.321527724940097e-05,-2.6280379188392544e-06,1.0863515859591457e-21,-0.0009763965499587357,2.8908418244100176e-05,9.122268966166303e-05,1.2281977735187355e-20,-1.2568877991725458e-06,-1.5732472320451052e-06,4.625346991815604e-05,-1.321527724940097e-05,1.2281977735187355e-20,6.006944204273168e-07,-8.867376166568457e-22,-2.70275736814478e-23,2.8908418244100176e-05,-2.6280379188392544e-06,-1.2568877991725458e-06,-8.867376166568457e-22,1.1426251944612886e-07,-1.653988251670067e-23,1.1799354069808032e-05,1.0863515859591457e-21,-1.5732472320451052e-06,-2.70275736814478e-23,-1.653988251670067e-23,3.420102601126018e-08,23.0,48.0,0.020654946565628052,-0.0018744454719126225,-0.0009372227359563112,4.528985664364882e-05,2.7728483473765664e-05,1.1091393389506266e-05,-0.0018744454719126225,0.0003645035030785948,2.7728483473765664e-05,-1.2939958651259076e-05,-2.5207712042174535e-06,1.696978313434869e-20,-0.0009372227359563112,2.7728483473765664e-05,8.569409692427143e-05,3.091670257478196e-20,-1.1799354524555383e-06,-1.4467034361587139e-06,4.528985664364882e-05,-1.2939958651259076e-05,3.091670257478196e-20,5.881799438611779e-07,-1.4558378780933287e-22,-6.156836464712618e-22,2.7728483473765664e-05,-2.5207712042174535e-06,-1.1799354524555383e-06,-1.4558378780933287e-22,1.0726685673034808e-07,-1.076026343342889e-22,1.1091393389506266e-05,1.696978313434869e-20,-1.4467034361587139e-06,-6.156836464712618e-22,-1.076026343342889e-22,3.078092447594827e-08,23.0,49.0,0.020251579582691193,-0.001836734707467258,-0.0009003601153381169,4.436557355802506e-05,2.6619343771017157e-05,1.0438958270242438e-05,-0.001836734707467258,0.0003571140405256301,2.6619343771017157e-05,-1.2675877769652288e-05,-2.4199403014790732e-06,-5.426169512925398e-21,-0.0009003601153381169,2.6619343771017157e-05,8.0603473179508e-05,-1.6093625997831706e-20,-1.109139361687994e-06,-1.3326329053597874e-06,4.436557355802506e-05,-1.2675877769652288e-05,-1.6093625997831706e-20,5.761762622569222e-07,5.624828165360588e-22,1.8138085680597126e-22,2.6619343771017157e-05,-2.4199403014790732e-06,-1.109139361687994e-06,5.624828165360588e-22,1.0083084589496139e-07,4.7532056537623054e-23,1.0438958270242438e-05,-5.426169512925398e-21,-1.3326329053597874e-06,1.8138085680597126e-22,4.7532056537623054e-23,2.7763187304685744e-08,23.0,50.0,0.019863663241267204,-0.001800511498004198,-0.0008656305144540966,4.347825961303897e-05,2.5575447580195032e-05,9.836710887611844e-06,-0.001800511498004198,0.00035001826472580433,2.5575447580195032e-05,-1.2422360669006594e-05,-2.325040668438305e-06,1.0697332326083034e-20,-0.0008656305144540966,2.5575447580195032e-05,7.590829045511782e-05,2.202285662861181e-20,-1.0438958497616113e-06,-1.2295888609514805e-06,4.347825961303897e-05,-1.2422360669006594e-05,2.202285662861181e-20,5.646527370117838e-07,6.617444900424222e-24,-4.2662819542122325e-22,2.5575447580195032e-05,-2.325040668438305e-06,-1.0438958497616113e-06,6.617444900424222e-24,9.489961882991338e-08,-4.379560108282563e-23,9.836710887611844e-06,1.0697332326083034e-20,-1.2295888609514805e-06,-4.2662819542122325e-22,-4.379560108282563e-23,2.5093649824725617e-08,23.0,51.0,0.019490327686071396,-0.001765689579769969,-0.0008328724070452154,4.262574657332152e-05,2.4591776309534907e-05,9.279915502702352e-06,-0.001765689579769969,0.00034319900441914797,2.4591776309534907e-05,-1.2178784345451277e-05,-2.2356159661285346e-06,-7.462166245412509e-22,-0.0008328724070452154,2.4591776309534907e-05,7.157087384257466e-05,-1.122318655111948e-20,-9.836710432864493e-07,-1.1363162002453464e-06,4.262574657332152e-05,-1.2178784345451277e-05,-1.122318655111948e-20,5.535811169465887e-07,1.0257039595657543e-21,-1.9677232823862567e-23,2.4591776309534907e-05,-2.2356159661285346e-06,-9.836710432864493e-07,1.0257039595657543e-21,8.942463836092429e-08,4.3623594695607617e-23,9.279915502702352e-06,-7.462166245412509e-22,-1.1363162002453464e-06,-1.9677232823862567e-23,4.3623594695607617e-23,2.2726323933852655e-08,23.0,52.0,0.0191307682543993,-0.0017321890918537974,-0.000801939400844276,4.180601899861358e-05,2.366378430451732e-05,8.76436479302356e-06,-0.0017321890918537974,0.0003366403980180621,2.366378430451732e-05,-1.1944576726818923e-05,-2.151253283955157e-06,-2.811917289636622e-21,-0.000801939400844276,2.366378430451732e-05,6.755778304068372e-05,-3.8116482626443515e-21,-9.279915502702352e-07,-1.0517237569729332e-06,4.180601899861358e-05,-1.1944576726818923e-05,-3.8116482626443515e-21,5.4293531093208e-07,-1.3234889800848443e-22,9.736424845914057e-23,2.366378430451732e-05,-2.151253283955157e-06,-9.279915502702352e-07,-1.3234889800848443e-22,8.436286691448913e-08,2.4592733987099612e-23,8.76436479302356e-06,-2.811917289636622e-21,-1.0517237569729332e-06,9.736424845914057e-23,2.4592733987099612e-23,2.0622035634687563e-08,23.0,53.0,0.018784232437610626,-0.0016999362269416451,-0.0007726982585154474,4.101722879568115e-05,2.2787347916164435e-05,8.28630891192006e-06,-0.0016999362269416451,0.0003303277771919966,2.2787347916164435e-05,-1.1719207577698398e-05,-2.071577227980015e-06,-2.083274365605582e-21,-0.0007726982585154474,2.2787347916164435e-05,6.383925938280299e-05,5.717472393966527e-21,-8.764365020397236e-07,-9.748598586156731e-07,4.101722879568115e-05,-1.1719207577698398e-05,5.717472393966527e-21,5.326912742020795e-07,-7.279189390466644e-22,5.248450636793884e-23,2.2787347916164435e-05,-2.071577227980015e-06,-8.764365020397236e-07,-7.279189390466644e-22,7.967604176428722e-08,2.36266255028063e-23,8.28630891192006e-06,-2.083274365605582e-21,-9.748598586156731e-07,5.248450636793884e-23,2.36266255028063e-23,1.8747304153521327e-08,23.0,54.0,0.018450027331709862,-0.0016688625328242779,-0.0007450279081240296,4.0257647924590856e-05,2.1958718207315542e-05,7.842399099899922e-06,-0.0016688625328242779,0.00032424755045212805,2.1958718207315542e-05,-1.1502185770950746e-05,-1.9962469650636194e-06,-3.614677494867296e-21,-0.0007450279081240296,2.1958718207315542e-05,6.038874926161952e-05,-1.249373597200093e-20,-8.286308457172709e-07,-9.048922038346063e-07,4.0257647924590856e-05,-1.1502185770950746e-05,-1.249373597200093e-20,5.22826610449556e-07,4.963083675318166e-22,1.19659458191942e-22,2.1958718207315542e-05,-1.9962469650636194e-06,-8.286308457172709e-07,4.963083675318166e-22,7.533007817528414e-08,3.19708537926013e-23,7.842399099899922e-06,-3.614677494867296e-21,-9.048922038346063e-07,1.19659458191942e-22,3.19708537926013e-23,1.7073437774683953e-08,23.0,55.0,0.018127506598830223,-0.0016389045631513,-0.000718817813321948,3.952569022658281e-05,2.1174477296881378e-05,7.42964130040491e-06,-0.0016389045631513,0.00031838714494369924,2.1174477296881378e-05,-1.1293054740235675e-05,-1.9249525848863414e-06,3.445777553541624e-21,-0.000718817813321948,2.1174477296881378e-05,5.7182536693289876e-05,9.105604182983729e-21,-7.842398872526246e-07,-8.410914915657486e-07,3.952569022658281e-05,-1.1293054740235675e-05,9.105604182983729e-21,5.133206855134631e-07,1.3234889800848443e-23,-1.5455658204612978e-22,2.1174477296881378e-05,-1.9249525848863414e-06,-7.842398872526246e-07,1.3234889800848443e-23,7.129453649667994e-08,-1.6202357432956799e-25,7.42964130040491e-06,3.445777553541624e-21,-8.410914915657486e-07,-1.5455658204612978e-22,-1.6202357432956799e-25,1.557576823074669e-08,23.0,56.0,0.01781606860458851,-0.0016100032953545451,-0.0006939669256098568,3.8819875044282526e-05,2.0431512893992476e-05,7.0453493208333384e-06,-0.0016100032953545451,0.0003127348318230361,2.0431512893992476e-05,-1.1091393389506266e-05,-1.8574103251012275e-06,-8.563977990501048e-22,-0.0006939669256098568,2.0431512893992476e-05,5.4199375881580636e-05,-2.541098841762901e-21,-7.429641186718072e-07,-7.828165848877688e-07,3.8819875044282526e-05,-1.1091393389506266e-05,-2.541098841762901e-21,5.041542294748069e-07,7.279189390466644e-23,3.6031297576616615e-23,2.0431512893992476e-05,-1.8574103251012275e-06,-7.429641186718072e-07,7.279189390466644e-23,6.754219583626764e-08,8.062239802639592e-25,7.0453493208333384e-06,-8.563977990501048e-22,-7.828165848877688e-07,3.6031297576616615e-23,8.062239802639592e-25,1.4233028977628237e-08,23.0,57.0,0.0175151489675045,-0.0015821036649867892,-0.0006703829276375473,3.8138823583722115e-05,1.9726978280232288e-05,6.687111181236105e-06,-0.0015821036649867892,0.00030727972625754774,1.9726978280232288e-05,-1.0896806998061948e-05,-1.793361661839299e-06,6.39451558539915e-22,-0.0006703829276375473,1.9726978280232288e-05,5.142019654158503e-05,1.0587911840678754e-21,-7.045349548207014e-07,-7.295030854947981e-07,3.8138823583722115e-05,-1.0896806998061948e-05,1.0587911840678754e-21,4.953093935000652e-07,7.940933880509066e-23,-3.134975835837183e-23,1.9726978280232288e-05,-1.793361661839299e-06,-7.045349548207014e-07,7.940933880509066e-23,6.404863484021917e-08,1.7553068247665306e-24,6.687111181236105e-06,6.39451558539915e-22,-7.295030854947981e-07,-3.134975835837183e-23,1.7553068247665306e-24,1.3026840051111321e-08,23.0,58.0,0.017224226146936417,-0.001555154682137072,-0.0006479810690507293,3.748125891434029e-05,1.9058266843785532e-05,6.352755917760078e-06,-0.001555154682137072,0.0003020116710104048,1.9058266843785532e-05,-1.070893085852731e-05,-1.7325697854175814e-06,-3.8064291084083114e-21,-0.0006479810690507293,1.9058266843785532e-05,4.882785287918523e-05,-1.1858461261560205e-20,-6.687111522296618e-07,-6.806524197600083e-07,3.748125891434029e-05,-1.070893085852731e-05,-1.1858461261560205e-20,4.867695793109306e-07,4.1028158382630173e-22,1.2054794276316156e-22,1.9058266843785532e-05,-1.7325697854175814e-06,-6.687111522296618e-07,4.1028158382630173e-22,6.079191905428161e-08,3.34660449751391e-23,6.352755917760078e-06,-3.8064291084083114e-21,-6.806524197600083e-07,1.2054794276316156e-22,3.34660449751391e-23,1.1941270194881781e-08,23.0,59.0,0.016942810267210007,-0.001529108383692801,-0.0006266837590374053,3.684598414110951e-05,1.8422992070554756e-05,6.04032538831234e-06,-0.001529108383692801,0.0002969212073367089,1.8422992070554756e-05,-1.0527423910389189e-05,-1.6748174402891891e-06,-5.3372637529472865e-21,-0.0006266837590374053,1.8422992070554756e-05,4.640690895030275e-05,-1.0376153603865179e-20,-6.352755690386402e-07,-6.35823710126715e-07,3.684598414110951e-05,-1.0527423910389189e-05,-1.0376153603865179e-20,4.78519268654054e-07,-5.955700410381799e-23,1.7606100605310146e-22,1.8422992070554756e-05,-1.6748174402891891e-06,-6.352755690386402e-07,-5.955700410381799e-23,5.775232736482394e-08,3.653775574409937e-23,6.04032538831234e-06,-5.3372637529472865e-21,-6.35823710126715e-07,1.7606100605310146e-22,3.653775574409937e-23,1.096247803644701e-08,23.0,60.0,0.01667044125497341,-0.0015039201825857162,-0.0006064194021746516,3.623188240453601e-05,1.7818960259319283e-05,5.748051535192644e-06,-0.0015039201825857162,0.0002919995167758316,1.7818960259319283e-05,-1.035196692100726e-05,-1.6199054471144336e-06,-9.141148513568109e-22,-0.0006064194021746516,1.7818960259319283e-05,4.4143424020148814e-05,8.470329472543003e-22,-6.040324933564989e-07,-5.946259875599935e-07,3.623188240453601e-05,-1.035196692100726e-05,8.470329472543003e-22,4.7054393803591665e-07,-3.3087224502121107e-23,1.2464324157741317e-23,1.7818960259319283e-05,-1.6199054471144336e-06,-6.040324933564989e-07,-3.3087224502121107e-23,5.491204646546066e-08,1.8917783808631815e-23,5.748051535192644e-06,-9.141148513568109e-22,-5.946259875599935e-07,1.2464324157741317e-23,1.8917783808631815e-23,1.0078406553759578e-08,23.0,61.0,0.016406690701842308,-0.0014795484021306038,-0.0005871223984286189,3.5637920518638566e-05,1.7244154150830582e-05,5.474334557220573e-06,-0.0014795484021306038,0.00028723833383992314,1.7244154150830582e-05,-1.0182262485614046e-05,-1.56765042902407e-06,7.072933439534323e-22,-0.0005871223984286189,1.7244154150830582e-05,4.2024796130135655e-05,6.1409888675936775e-21,-5.748051421505807e-07,-5.567119956140232e-07,3.5637920518638566e-05,-1.0182262485614046e-05,6.1409888675936775e-21,4.628301155662484e-07,-3.970466940254533e-22,-1.8848430313288405e-23,1.7244154150830582e-05,-1.56765042902407e-06,-5.748051421505807e-07,-3.970466940254533e-22,5.225501453764991e-08,-1.1989169568699545e-23,5.474334557220573e-06,7.072933439534323e-22,-5.567119956140232e-07,-1.8848430313288405e-23,-1.1989169568699545e-23,9.278533497081298e-09,23.0,62.0,0.016151156276464462,-0.0014559540431946516,-0.0005687320372089744,3.506311259116046e-05,1.669672019488644e-05,5.21772517458885e-06,-0.0014559540431946516,0.00028262994601391256,1.669672019488644e-05,-1.0018032298830803e-05,-1.5178836747509195e-06,-1.4751754463440648e-21,-0.0005687320372089744,1.669672019488644e-05,4.0039627492660657e-05,-9.952637130238029e-21,-5.474334443533735e-07,-5.217725060902012e-07,3.506311259116046e-05,-1.0018032298830803e-05,-9.952637130238029e-21,4.553651251626434e-07,5.823351512373315e-22,5.258693837875998e-23,1.669672019488644e-05,-1.5178836747509195e-06,-5.474334443533735e-07,5.823351512373315e-22,4.976667966616333e-08,8.256144081118019e-24,5.21772517458885e-06,-1.4751754463440648e-21,-5.217725060902012e-07,5.258693837875998e-23,8.256144081118019e-24,8.55364756802146e-09,23.0,63.0,0.01590345799922943,-0.0014331004349514842,-0.0005511924391612411,3.4506556403357536e-05,1.617494854144752e-05,4.97690734846401e-06,-0.0014331004349514842,0.0002781671064440161,1.617494854144752e-05,-9.859016245172825e-06,-1.4704498880746542e-06,7.884340671002374e-21,-0.0005511924391612411,1.617494854144752e-05,3.8177564420038834e-05,2.4352197233561135e-20,-5.217725060902012e-07,-4.895318284070527e-07,3.4506556403357536e-05,-9.859016245172825e-06,2.4352197233561135e-20,4.481370865505596e-07,-5.889525961377557e-22,-2.778448382674119e-22,1.617494854144752e-05,-1.4704498880746542e-06,-5.217725060902012e-07,-5.889525961377557e-22,4.743386483596623e-08,-4.46036754842542e-23,4.97690734846401e-06,7.884340671002374e-21,-4.895318284070527e-07,-2.778448382674119e-22,-4.46036754842542e-23,7.895675224744991e-09,23.0,64.0,0.01566324383020401,-0.0014109532348811626,-0.0005344519740901887,3.396738975425251e-05,1.5677256669732742e-05,4.750684183818521e-06,-0.0014109532348811626,0.0002738430048339069,1.5677256669732742e-05,-9.704968761070631e-06,-1.4252052551455563e-06,7.879498756362098e-21,-0.0005344519740901887,1.5677256669732742e-05,3.642921001301147e-05,1.7575933655526732e-20,-4.97690734846401e-07,-4.5974363160894427e-07,3.396738975425251e-05,-9.704968761070631e-06,1.7575933655526732e-20,4.411349436850287e-07,1.1911400820763599e-22,-2.819831394673289e-22,1.5677256669732742e-05,-1.4252052551455563e-06,-4.97690734846401e-07,1.1911400820763599e-22,4.524461161281579e-08,-4.198474878678545e-23,4.750684183818521e-06,7.879498756362098e-21,-4.5974363160894427e-07,-2.819831394673289e-22,-4.198474878678545e-23,7.297517701232437e-09,24.0,3.0,0.191559836268425,-0.023076923564076424,-0.11999999731779099,0.0006410256610251963,0.004999999888241291,0.02083333395421505,-0.023076923564076424,0.00474561657756567,0.004999999888241291,-0.00017482518160250038,-0.00043478261795826256,-1.6046192152785466e-17,-0.11999999731779099,0.004999999888241291,0.3283333480358124,-8.544657466694575e-20,-0.004999999888241291,-0.125,0.0006410256610251963,-0.00017482518160250038,-8.544657466694575e-20,7.6010946941096336e-06,-1.0004309261334884e-20,9.719730211606946e-20,0.004999999888241291,-0.00043478261795826256,-0.004999999888241291,-1.0004309261334884e-20,0.00043478261795826256,1.214306433183765e-17,0.02083333395421505,-1.6046192152785466e-17,-0.125,9.719730211606946e-20,1.214306433183765e-17,0.0625,24.0,4.0,0.16062819957733154,-0.018057692795991898,-0.07824999839067459,0.000480769231216982,0.003000000026077032,0.010416666977107525,-0.018057692795991898,0.003624429926276207,0.003000000026077032,-0.00013111888256389648,-0.00026086956495419145,1.474514954580286e-17,-0.07824999839067459,0.003000000026077032,0.125083327293396,1.263423776892189e-18,-0.0020000000949949026,-0.03125,0.000480769231216982,-0.00013111888256389648,1.263423776892189e-18,5.700821020582225e-06,-3.270044324874441e-20,-2.613270608702094e-19,0.003000000026077032,-0.00026086956495419145,-0.0020000000949949026,-3.270044324874441e-20,0.0001739130384521559,-4.7704895589362195e-18,0.010416666977107525,1.474514954580286e-17,-0.03125,-2.613270608702094e-19,-4.7704895589362195e-18,0.010416666977107525,24.0,5.0,0.13834065198898315,-0.014846153557300568,-0.055142857134342194,0.0003846153849735856,0.0020000000949949026,0.0059523810632526875,-0.014846153557300568,0.0029343266505748034,0.0020000000949949026,-0.00010489510168554261,-0.0001739130384521559,5.421010862427522e-19,-0.055142857134342194,0.0020000000949949026,0.0632857158780098,1.5271934504124792e-19,-0.0010000000474974513,-0.011904762126505375,0.0003846153849735856,-0.00010489510168554261,1.5271934504124792e-19,4.56065663456684e-06,-6.705444719917003e-21,-1.850351169934125e-20,0.0020000000949949026,-0.0001739130384521559,-0.0010000000474974513,-6.705444719917003e-21,8.695651922607794e-05,-2.710505431213761e-20,0.0059523810632526875,5.421010862427522e-19,-0.011904762126505375,-1.850351169934125e-20,-2.710505431213761e-20,0.0029761905316263437,24.0,6.0,0.12149420380592346,-0.012609889730811119,-0.040982142090797424,0.00032051283051259816,0.0014285714132711291,0.0037202381063252687,-0.012609889730811119,0.002465976169332862,0.0014285714132711291,-8.741259080125019e-05,-0.00012422360305208713,-1.0299920638612292e-18,-0.040982142090797424,0.0014285714132711291,0.03685416653752327,-1.087093297973348e-19,-0.0005714285653084517,-0.005580357275903225,0.00032051283051259816,-8.741259080125019e-05,-1.087093297973348e-19,3.8005473470548168e-06,8.325530961054938e-22,1.6906298637922378e-20,0.0014285714132711291,-0.00012422360305208713,-0.0005714285653084517,8.325530961054938e-22,4.9689442676026374e-05,2.439454888092385e-19,0.0037202381063252687,-1.0299920638612292e-18,-0.005580357275903225,1.6906298637922378e-20,2.439454888092385e-19,0.0011160714784637094,24.0,7.0,0.108307383954525,-0.010961538180708885,-0.03166666626930237,0.00027472528745420277,0.0010714285308495164,0.0024801588151603937,-0.010961538180708885,0.002127003390341997,0.0010714285308495164,-7.492507575079799e-05,-9.316769865108654e-05,1.4094628242311558e-18,-0.03166666626930237,0.0010714285308495164,0.023452380672097206,3.2834569938835027e-19,-0.0003571428533177823,-0.0029761905316263437,0.00027472528745420277,-7.492507575079799e-05,3.2834569938835027e-19,3.257611979279318e-06,-3.673614113511699e-21,-4.5238956833748306e-20,0.0010714285308495164,-9.316769865108654e-05,-0.0003571428533177823,-3.673614113511699e-21,3.105590076302178e-05,-4.0657581468206416e-20,0.0024801588151603937,1.4094628242311558e-18,-0.0029761905316263437,-4.5238956833748306e-20,-4.0657581468206416e-20,0.0004960317746736109,24.0,8.0,0.0977029949426651,-0.009695513173937798,-0.025208333507180214,0.000240384615608491,0.0008333333535119891,0.0017361111240461469,-0.009695513173937798,0.0018701859517022967,0.0008333333535119891,-6.555944128194824e-05,-7.246376480907202e-05,1.1384122811097797e-18,-0.025208333507180214,0.0008333333535119891,0.015882937237620354,4.452920549513969e-19,-0.0002380952355451882,-0.0017361111240461469,0.000240384615608491,-6.555944128194824e-05,4.452920549513969e-19,2.8504105102911126e-06,-9.993168980253127e-21,-4.2483598826288564e-20,0.0008333333535119891,-7.246376480907202e-05,-0.0002380952355451882,-9.993168980253127e-21,2.070393384201452e-05,-6.776263578034403e-21,0.0017361111240461469,1.1384122811097797e-18,-0.0017361111240461469,-4.2483598826288564e-20,-6.776263578034403e-21,0.00024801588733680546,24.0,9.0,0.08898963779211044,-0.008692307397723198,-0.02054545469582081,0.0002136752154910937,0.0006666666595265269,0.0012626262614503503,-0.008692307397723198,0.001668828772380948,0.0006666666595265269,-5.827505810884759e-05,-5.79710140300449e-05,4.0657581468206416e-19,-0.02054545469582081,0.0006666666595265269,0.011269119568169117,7.24568211330971e-20,-0.00016666666488163173,-0.0010822510812431574,0.0002136752154910937,-5.827505810884759e-05,7.24568211330971e-20,2.5336980797874276e-06,-6.111959997971895e-22,-7.823647101349862e-21,0.0006666666595265269,-5.79710140300449e-05,-0.00016666666488163173,-6.111959997971895e-22,1.4492753507511225e-05,-5.421010862427522e-20,0.0012626262614503503,4.0657581468206416e-19,-0.0010822510812431574,-7.823647101349862e-21,-5.421010862427522e-20,0.00013528138515539467,24.0,10.0,0.08170279860496521,-0.007877622731029987,-0.017068181186914444,0.0001923076924867928,0.0005454545607790351,0.0009469697251915932,-0.007877622731029987,0.001506689004600048,0.0005454545607790351,-5.244755084277131e-05,-4.7430828999495134e-05,1.6263032587282567e-19,-0.017068181186914444,0.0005454545607790351,0.008291034959256649,3.18479043805378e-20,-0.00012121212057536468,-0.0007102272938936949,0.0001923076924867928,-5.244755084277131e-05,3.18479043805378e-20,2.28032831728342e-06,-2.601162736329978e-21,-6.1990251876859445e-24,0.0005454545607790351,-4.7430828999495134e-05,-0.00012121212057536468,-2.601162736329978e-21,1.0540184121055063e-05,-1.8634724839594607e-20,0.0009469697251915932,1.6263032587282567e-19,-0.0007102272938936949,-6.1990251876859445e-24,-1.8634724839594607e-20,7.891414134064689e-05,24.0,11.0,0.0755186453461647,-0.00720279710367322,-0.01440559420734644,0.00017482518160250038,0.00045454545761458576,0.0007284382008947432,-0.00720279710367322,0.001373310456983745,0.00045454545761458576,-4.7679593990324065e-05,-3.952569022658281e-05,-4.472333961502706e-19,-0.01440559420734644,0.00045454545761458576,0.006280497182160616,-6.272855028166555e-20,-9.09090886125341e-05,-0.0004856254963669926,0.00017482518160250038,-4.7679593990324065e-05,-6.272855028166555e-20,2.0730258256662637e-06,2.8014884727389534e-21,2.1577107252641595e-21,0.00045454545761458576,-3.952569022658281e-05,-9.09090886125341e-05,2.8014884727389534e-21,7.905138772912323e-06,7.623296525288703e-20,0.0007284382008947432,-4.472333961502706e-19,-0.0004856254963669926,2.1577107252641595e-21,7.623296525288703e-20,4.856254963669926e-05,24.0,12.0,0.07020451873540878,-0.006634615361690521,-0.012321428395807743,0.00016025641525629908,0.0003846153849735856,0.0005723443464376032,-0.006634615361690521,0.0012616550084203482,0.0003846153849735856,-4.3706295400625095e-05,-3.3444815926486626e-05,1.2874900798265365e-19,-0.012321428395807743,0.0003846153849735856,0.004873043391853571,4.0738422217212136e-20,-6.993007264100015e-05,-0.00034340660204179585,0.00016025641525629908,-4.3706295400625095e-05,4.0738422217212136e-20,1.9002736735274084e-06,-1.2262878869935651e-21,-2.3598782310057727e-21,0.0003846153849735856,-3.3444815926486626e-05,-6.993007264100015e-05,-1.2262878869935651e-21,6.080875664338237e-06,-1.0164395367051604e-20,0.0005723443464376032,1.2874900798265365e-19,-0.00034340660204179585,-2.3598782310057727e-21,-1.0164395367051604e-20,3.121878035017289e-05,24.0,13.0,0.06558889895677567,-0.006149619817733765,-0.010659340769052505,0.00014792899310123175,0.00032967032166197896,0.0004578754596877843,-0.006149619817733765,0.0011668098159134388,0.00032967032166197896,-4.034427183796652e-05,-2.8666985599556938e-05,1.6263032587282567e-19,-0.010659340769052505,0.00032967032166197896,0.0038578088860958815,7.171394185719059e-20,-5.494505603564903e-05,-0.00024975024280138314,0.00014792899310123175,-4.034427183796652e-05,7.171394185719059e-20,1.7540987755637616e-06,-1.5132475649478117e-21,-4.322465410432091e-21,0.00032967032166197896,-2.8666985599556938e-05,-5.494505603564903e-05,-1.5132475649478117e-21,4.777830781677039e-06,-3.3881317890172014e-21,0.0004578754596877843,1.6263032587282567e-19,-0.00024975024280138314,-4.322465410432091e-21,-3.3881317890172014e-21,2.0812520233448595e-05,24.0,14.0,0.061542581766843796,-0.005730769131332636,-0.00931250024586916,0.00013736264372710139,0.0002857142826542258,0.00037202381645329297,-0.005730769131332636,0.0010852408595383167,0.0002857142826542258,-3.7462537875398993e-05,-2.4844721338013187e-05,-6.776263578034403e-20,-0.00931250024586916,0.0002857142826542258,0.003106799442321062,-7.491214522274738e-20,-4.395604264573194e-05,-0.00018601190822664648,0.00013736264372710139,-3.7462537875398993e-05,-7.491214522274738e-20,1.628805989639659e-06,1.3174216426035105e-21,4.2376159858504e-21,0.0002857142826542258,-2.4844721338013187e-05,-4.395604264573194e-05,1.3174216426035105e-21,3.822264716291102e-06,-5.293955920339377e-21,0.00037202381645329297,-6.776263578034403e-20,-0.00018601190822664648,4.2376159858504e-21,-5.293955920339377e-21,1.430860811524326e-05,24.0,15.0,0.05796637758612633,-0.005365384742617607,-0.008205882273614407,0.00012820512347389013,0.0002500000118743628,0.00030637255986221135,-0.005365384742617607,0.001014340785332024,0.0002500000118743628,-3.4965036320500076e-05,-2.1739129806519486e-05,-1.7734708389166871e-19,-0.008205882273614407,0.0002500000118743628,0.0025391618255525827,-1.2463118657109104e-19,-3.571428533177823e-05,-0.00014140272105578333,0.00012820512347389013,-3.4965036320500076e-05,-1.2463118657109104e-19,1.5202189160845592e-06,2.2234614865425384e-21,7.087157472557897e-21,0.0002500000118743628,-2.1739129806519486e-05,-3.571428533177823e-05,2.2234614865425384e-21,3.1055901672516484e-06,2.0489239539131487e-21,0.00030637255986221135,-1.7734708389166871e-19,-0.00014140272105578333,7.087157472557897e-21,2.0489239539131487e-21,1.0100194231199566e-05,24.0,16.0,0.054782867431640625,-0.005043834913522005,-0.00728553906083107,0.0001201923078042455,0.00022058823378756642,0.0002553104714024812,-0.005043834913522005,0.0009521432803012431,0.00022058823378756642,-3.277972064097412e-05,-1.9181585230398923e-05,7.941588516415719e-20,-0.00728553906083107,0.00022058823378756642,0.002102065831422806,6.090808731214972e-20,-2.9411765353870578e-05,-0.00010941876826109365,0.0001201923078042455,-3.277972064097412e-05,6.090808731214972e-20,1.4252052551455563e-06,-1.4823076576950256e-21,-2.9311621604021034e-21,0.00022058823378756642,-1.9181585230398923e-05,-2.9411765353870578e-05,-1.4823076576950256e-21,2.5575448034942383e-06,-1.599888069815814e-21,0.0002553104714024812,7.941588516415719e-20,-0.00010941876826109365,-2.9311621604021034e-21,-1.599888069815814e-21,7.294584520423086e-06,24.0,17.0,0.0519307516515255,-0.004758672788739204,-0.006511867977678776,0.0001131221724790521,0.0001960784284165129,0.0002149982756236568,-0.004758672788739204,0.0008971377974376082,0.0001960784284165129,-3.0851500923745334e-05,-1.705029899312649e-05,6.651944148081365e-20,-0.006511867977678776,0.0001960784284165129,0.001759975915774703,5.3638316794673674e-20,-2.4509803552064113e-05,-8.59993087942712e-05,0.0001131221724790521,-3.0851500923745334e-05,5.3638316794673674e-20,1.3413696251518559e-06,-1.164670302474663e-21,-2.4524222932094105e-21,0.0001960784284165129,-1.705029899312649e-05,-2.4509803552064113e-05,-1.164670302474663e-21,2.131287374140811e-06,-1.2642164202907873e-21,0.0002149982756236568,6.651944148081365e-20,-8.59993087942712e-05,-2.4524222932094105e-21,-1.2642164202907873e-21,5.37495679964195e-06,24.0,18.0,0.04936084896326065,-0.004504048731178045,-0.005855263210833073,0.00010683760774554685,0.00017543860303703696,0.00018274853937327862,-0.004504048731178045,0.0008481443510390818,0.00017543860303703696,-2.9137529054423794e-05,-1.5255530342983548e-05,5.627650272966072e-20,-0.005855263210833073,0.00017543860303703696,0.0014883793191984296,4.878867964789745e-20,-2.063983447442297e-05,-6.853070226497948e-05,0.00010683760774554685,-2.9137529054423794e-05,4.878867964789745e-20,1.2668490398937138e-06,-1.164670302474663e-21,-2.072714686150068e-21,0.00017543860303703696,-1.5255530342983548e-05,-2.063983447442297e-05,-1.164670302474663e-21,1.7947681953955907e-06,-1.0122426856177692e-21,0.00018274853937327862,5.627650272966072e-20,-6.853070226497948e-05,-2.072714686150068e-21,-1.0122426856177692e-21,4.031217940791976e-06,24.0,19.0,0.04703325778245926,-0.004275303799659014,-0.0052932328544557095,0.00010121457307832316,0.00015789474127814174,0.00015664160309825093,-0.004275303799659014,0.0008042278350330889,0.00015789474127814174,-2.7603975468082353e-05,-1.3729976672038902e-05,5.675120746603812e-20,-0.0052932328544557095,0.00015789474127814174,0.0012699887156486511,3.1880956062122977e-20,-1.7543859939905815e-05,-5.5285272537730634e-05,0.00010121457307832316,-2.7603975468082353e-05,3.1880956062122977e-20,1.2001728464383632e-06,-6.983254848304585e-23,-1.7054822390418612e-21,0.00015789474127814174,-1.3729976672038902e-05,-1.7543859939905815e-05,-6.983254848304585e-23,1.5255529888236197e-06,-1.9058241313221758e-21,0.00015664160309825093,5.675120746603812e-20,-5.5285272537730634e-05,-1.7054822390418612e-21,-1.9058241313221758e-21,3.0714040804014076e-06,24.0,20.0,0.044915251433849335,-0.004068681504577398,-0.004808441735804081,9.61538462433964e-05,0.0001428571413271129,0.00013528138515539467,-0.004068681504577398,0.0007646375452168286,0.0001428571413271129,-2.6223775421385653e-05,-1.2422360669006594e-05,3.7269449679189215e-20,-0.004808441735804081,0.0001428571413271129,0.0010923710651695728,4.552563630830902e-20,-1.5037593584565911e-05,-4.5093795051798224e-05,9.61538462433964e-05,-2.6223775421385653e-05,4.552563630830902e-20,1.14016415864171e-06,-1.5266789505338198e-21,-1.5087511840057967e-21,0.0001428571413271129,-1.2422360669006594e-05,-1.5037593584565911e-05,-1.5266789505338198e-21,1.3076169125270098e-06,-2.117582368135751e-22,0.00013528138515539467,3.7269449679189215e-20,-4.5093795051798224e-05,-1.5087511840057967e-21,-2.117582368135751e-22,2.373357574469992e-06,24.0,21.0,0.04297975078225136,-0.0038811189588159323,-0.004387351684272289,9.157509339274839e-05,0.0001298701245104894,0.00011763598740799353,-0.0038811189588159323,0.0007287639891728759,0.0001298701245104894,-2.4975024643936194e-05,-1.1293054740235675e-05,3.218725199566341e-20,-0.004387351684272289,0.0001298701245104894,0.0009464273462072015,3.871020443580052e-20,-1.2987013178644702e-05,-3.714820559252985e-05,9.157509339274839e-05,-2.4975024643936194e-05,3.871020443580052e-20,1.08587062186416e-06,-1.1135222274543644e-21,-1.3076555193533254e-21,0.0001298701245104894,-1.1293054740235675e-05,-1.2987013178644702e-05,-1.1135222274543644e-21,1.1293054740235675e-06,-1.0587911840678754e-22,0.00011763598740799353,3.218725199566341e-20,-3.714820559252985e-05,-1.3076555193533254e-21,-1.0587911840678754e-22,1.8574103251012275e-06,24.0,22.0,0.04120413959026337,-0.003710094140842557,-0.004019268788397312,8.741259080125019e-05,0.00011857707431772724,0.00010293148807249963,-0.003710094140842557,0.0006961070466786623,0.00011857707431772724,-2.3839796995162033e-05,-1.0311049663869198e-05,-4.997494388800372e-20,-0.004019268788397312,0.00011857707431772724,0.0008253928972408175,-5.836575416181653e-20,-1.1293054740235675e-05,-3.087944787694141e-05,8.741259080125019e-05,-2.3839796995162033e-05,-5.836575416181653e-20,1.0365129128331318e-06,9.044414224184329e-22,2.289447921594074e-21,0.00011857707431772724,-1.0311049663869198e-05,-1.1293054740235675e-05,9.044414224184329e-22,9.820047353059635e-07,-2.6469779601696886e-22,0.00010293148807249963,-4.997494388800372e-20,-3.087944787694141e-05,2.289447921594074e-21,-2.6469779601696886e-22,1.4704498880746542e-06,24.0,23.0,0.039569396525621414,-0.003553511807695031,-0.0036956521216779947,8.361203799722716e-05,0.00010869565448956564,9.057971328729764e-05,-0.003553511807695031,0.0006662524538114667,0.00010869565448956564,-2.28032840823289e-05,-9.451795449422207e-06,2.795208725939191e-20,-0.0036956521216779947,0.00010869565448956564,0.0007241671555675566,2.97538578857686e-20,-9.881422556645703e-06,-2.5879917302518152e-05,8.361203799722716e-05,-2.28032840823289e-05,2.97538578857686e-20,9.9144710929977e-07,-7.236354117095398e-22,-9.839189188057346e-22,0.00010869565448956564,-9.451795449422207e-06,-9.881422556645703e-06,-7.236354117095398e-22,8.592541576035728e-07,-4.235164736271502e-22,9.057971328729764e-05,2.795208725939191e-20,-2.5879917302518152e-05,-9.839189188057346e-22,-4.235164736271502e-22,1.1763598877223558e-06,24.0,24.0,0.038059402257204056,-0.00340961548499763,-0.00340961548499763,8.012820762814954e-05,9.999999747378752e-05,8.012820762814954e-05,-0.00340961548499763,0.0006388542824424803,9.999999747378752e-05,-2.1853147700312547e-05,-8.695652468304615e-06,1.9058241313221758e-20,-0.00340961548499763,9.999999747378752e-05,0.0006388542824424803,2.852437345865643e-20,-8.695652468304615e-06,-2.1853147700312547e-05,8.012820762814954e-05,-2.1853147700312547e-05,2.852437345865643e-20,9.501368367637042e-07,-7.058918726018784e-22,-8.963176444640455e-22,9.999999747378752e-05,-8.695652468304615e-06,-8.695652468304615e-06,-7.058918726018784e-22,7.561436632386176e-07,1.5881867761018131e-22,8.012820762814954e-05,1.9058241313221758e-20,-2.1853147700312547e-05,-8.963176444640455e-22,1.5881867761018131e-22,9.501368367637042e-07,24.0,25.0,0.03666039928793907,-0.0032769229728728533,-0.0031555555760860443,7.69230755395256e-05,9.230769501300529e-05,7.122506940504536e-05,-0.0032769229728728533,0.0006136211450211704,9.230769501300529e-05,-2.0979021428502165e-05,-8.026755494938698e-06,-3.091670257478196e-20,-0.0031555555760860443,9.230769501300529e-05,0.0005664437194354832,-5.01964408840604e-20,-7.69230791775044e-06,-1.8580452888272703e-05,7.69230755395256e-05,-2.0979021428502165e-05,-5.01964408840604e-20,9.12131326913368e-07,1.0787145036288435e-21,1.5803662236576182e-21,9.230769501300529e-05,-8.026755494938698e-06,-7.69230791775044e-06,1.0787145036288435e-21,6.688963480883103e-07,-3.970466940254533e-22,7.122506940504536e-05,-3.091670257478196e-20,-1.8580452888272703e-05,1.5803662236576182e-21,-3.970466940254533e-22,7.741855370113626e-07,24.0,26.0,0.035360585898160934,-0.003154174890369177,-0.0029288767836987972,7.396449655061588e-05,8.547008474124596e-05,6.359381222864613e-05,-0.003154174890369177,0.0005903061828576028,8.547008474124596e-05,-2.017213591898326e-05,-7.432181519106962e-06,1.8634724839594607e-20,-0.0029288767836987972,8.547008474124596e-05,0.0005045838188380003,1.6495782793961662e-20,-6.837606633780524e-06,-1.5898453057161532e-05,7.396449655061588e-05,-2.017213591898326e-05,1.6495782793961662e-20,8.770493877818808e-07,6.763350089099003e-23,-6.785686590967027e-22,8.547008474124596e-05,-7.432181519106962e-06,-6.837606633780524e-06,6.763350089099003e-23,5.945744874225056e-07,-2.117582368135751e-22,6.359381222864613e-05,1.8634724839594607e-20,-1.5898453057161532e-05,-6.785686590967027e-22,-2.117582368135751e-22,6.359381359288818e-07,24.0,27.0,0.03414977714419365,-0.00304029299877584,-0.0027257800102233887,7.122506940504536e-05,7.936507608974352e-05,5.7015142374439165e-05,-0.00304029299877584,0.00056869862601161,7.936507608974352e-05,-1.942501876328606e-05,-6.901311280671507e-06,1.3976043629695956e-20,-0.0027257800102233887,7.936507608974352e-05,0.00045141958980821073,1.675737543150729e-20,-6.105005923018325e-06,-1.3683634279004764e-05,7.122506940504536e-05,-1.942501876328606e-05,1.675737543150729e-20,8.445660455436155e-07,-6.780833771113597e-23,-6.138362225836556e-22,7.936507608974352e-05,-6.901311280671507e-06,-6.105005923018325e-06,-6.780833771113597e-23,5.308700679051981e-07,2.6469779601696886e-23,5.7015142374439165e-05,1.3976043629695956e-20,-1.3683634279004764e-05,-6.138362225836556e-22,2.6469779601696886e-23,5.262936042527144e-07,24.0,28.0,0.033019136637449265,-0.0029343501664698124,-0.002543103415518999,6.868132186355069e-05,7.389162783510983e-05,5.131362922838889e-05,-0.0029343501664698124,0.0005486174486577511,7.389162783510983e-05,-1.8731268937699497e-05,-6.425358606065856e-06,1.2705494208814505e-20,-0.002543103415518999,7.389162783510983e-05,0.00040547415846958756,2.388177541867568e-20,-5.4734537116019055e-06,-1.1841606465168297e-05,6.868132186355069e-05,-1.8731268937699497e-05,2.388177541867568e-20,8.144029948198295e-07,-7.458941129596476e-22,-5.51867803221209e-22,7.389162783510983e-05,-6.425358606065856e-06,-5.4734537116019055e-06,-7.458941129596476e-22,4.7595250407539424e-07,2.6469779601696886e-23,5.131362922838889e-05,1.2705494208814505e-20,-1.1841606465168297e-05,-5.51867803221209e-22,2.6469779601696886e-23,4.3857801301783184e-07,24.0,29.0,0.031960953027009964,-0.0028355438262224197,-0.0023781980853527784,6.631299766013399e-05,6.89655207679607e-05,4.634779543266632e-05,-0.0028355438262224197,0.0005299063632264733,6.89655207679607e-05,-1.8085362171404995e-05,-5.997001608193386e-06,4.658681209898652e-21,-0.0023781980853527784,6.89655207679607e-05,0.00036556198028847575,2.1564953998426888e-20,-4.926108431391185e-06,-1.0299509995093103e-05,6.631299766013399e-05,-1.8085362171404995e-05,2.1564953998426888e-20,7.863201290092547e-07,-6.876439673858549e-22,-4.88466862941979e-22,6.89655207679607e-05,-5.997001608193386e-06,-4.926108431391185e-06,-6.876439673858549e-22,4.283572536678548e-07,5.029258124322408e-22,4.634779543266632e-05,4.658681209898652e-21,-1.0299509995093103e-05,-4.88466862941979e-22,5.029258124322408e-22,3.6783964674214076e-07,24.0,30.0,0.03096848353743553,-0.002743176184594631,-0.0022288307081907988,6.410256173694506e-05,6.451612716773525e-05,4.200268813292496e-05,-0.002743176184594631,0.0005124298040755093,6.451612716773525e-05,-1.7482518160250038e-05,-5.610098014585674e-06,-1.9905274260476058e-20,-0.0022288307081907988,6.451612716773525e-05,0.00033072379301302135,-3.277017522061748e-20,-4.449388143257238e-06,-9.00057602848392e-06,6.410256173694506e-05,-1.7482518160250038e-05,-3.277017522061748e-20,7.601094580422796e-07,5.202824689084328e-22,9.315378478796884e-22,6.451612716773525e-05,-5.610098014585674e-06,-4.449388143257238e-06,5.202824689084328e-22,3.8690330939061823e-07,-7.940933880509066e-23,4.200268813292496e-05,-1.9905274260476058e-20,-9.00057602848392e-06,9.315378478796884e-22,-7.940933880509066e-23,3.1036469749778917e-07,24.0,31.0,0.03003578819334507,-0.002656637690961361,-0.0020931086037307978,6.203474185895175e-05,6.048387149348855e-05,3.818426193902269e-05,-0.002656637690961361,0.0004960694932378829,6.048387149348855e-05,-1.6918565961532295e-05,-5.259466888674069e-06,-7.199780051661553e-21,-0.0020931086037307978,6.048387149348855e-05,0.0003001778095494956,-1.4487381804334375e-20,-4.032257947983453e-06,-7.90019203122938e-06,6.203474185895175e-05,-1.6918565961532295e-05,-1.4487381804334375e-20,7.355898219429946e-07,2.3537193604158843e-22,3.029439941343926e-22,6.048387149348855e-05,-5.259466888674069e-06,-4.032257947983453e-06,2.3537193604158843e-22,3.506311259116046e-07,-5.293955920339377e-23,3.818426193902269e-05,-7.199780051661553e-21,-7.90019203122938e-06,3.029439941343926e-22,-5.293955920339377e-23,2.633397286899708e-07,24.0,32.0,0.029157625511288643,-0.0025753933005034924,-0.001969418488442898,6.009615390212275e-05,5.681818220182322e-05,3.481506064417772e-05,-0.0025753933005034924,0.0004807217337656766,5.681818220182322e-05,-1.638986032048706e-05,-4.940711278322851e-06,6.564505341220828e-21,-0.001969418488442898,5.681818220182322e-05,0.0002732825232669711,1.6616859740536978e-20,-3.665689064291655e-06,-6.963012310734484e-06,6.009615390212275e-05,-1.638986032048706e-05,1.6616859740536978e-20,7.126026275727781e-07,-4.230925082222482e-22,-3.7907404446736676e-22,5.681818220182322e-05,-4.940711278322851e-06,-3.665689064291655e-06,-4.230925082222482e-22,3.187555819295085e-07,1.1911400820763599e-22,3.481506064417772e-05,6.564505341220828e-21,-6.963012310734484e-06,-3.7907404446736676e-22,1.1911400820763599e-22,2.2461330217993236e-07,24.0,33.0,0.02832935005426407,-0.0024989715311676264,-0.0018563788617029786,5.827505810884759e-05,5.347593469195999e-05,3.183091394021176e-05,-0.0024989715311676264,0.0004662953142542392,5.347593469195999e-05,-1.589319799677469e-05,-4.65008133687661e-06,-4.298692207315574e-20,-0.0018563788617029786,5.347593469195999e-05,0.000249508157139644,-6.057152820041721e-20,-3.3422459182474995e-06,-6.160822067613481e-06,5.827505810884759e-05,-1.589319799677469e-05,-6.057152820041721e-20,6.910086085554212e-07,9.275519924719835e-22,1.4038300077952116e-21,5.347593469195999e-05,-4.65008133687661e-06,-3.3422459182474995e-06,9.275519924719835e-22,2.9063008355478814e-07,5.823351512373315e-22,3.183091394021176e-05,-4.298692207315574e-20,-6.160822067613481e-06,1.4038300077952116e-21,5.823351512373315e-22,1.9252568961292127e-07,24.0,34.0,0.027546828612685204,-0.002426955383270979,-0.0017528011230751872,5.656108623952605e-05,5.0420167099218816e-05,2.9178338081692345e-05,-0.002426955383270979,0.0004527097044046968,5.0420167099218816e-05,-1.5425750461872667e-05,-4.38436245531193e-06,5.505714157152952e-21,-0.0017528011230751872,5.0420167099218816e-05,0.0002284146612510085,1.4270313132611695e-20,-3.055767820114852e-06,-5.4709385040041525e-06,5.656108623952605e-05,-1.5425750461872667e-05,1.4270313132611695e-20,6.706848125759279e-07,-3.319488066540098e-22,-3.1675461355653307e-22,5.0420167099218816e-05,-4.38436245531193e-06,-3.055767820114852e-06,-3.319488066540098e-22,2.6571893840809935e-07,1.0587911840678754e-22,2.9178338081692345e-05,5.505714157152952e-21,-5.4709385040041525e-06,-3.1675461355653307e-22,1.0587911840678754e-22,1.65786005368318e-07,24.0,35.0,0.02680637314915657,-0.0023589744232594967,-0.0016576576745137572,5.494505603564903e-05,4.761904710903764e-05,2.681252772163134e-05,-0.0023589744232594967,0.0004398934543132782,4.761904710903764e-05,-1.4985014786361717e-05,-4.140786586503964e-06,-3.6845933205562065e-20,-0.0016576576745137572,4.761904710903764e-05,0.00020963438146281987,-5.3406357256337905e-20,-2.8011204449285287e-06,-4.875004833593266e-06,5.494505603564903e-05,-1.4985014786361717e-05,-5.3406357256337905e-20,6.515223844871798e-07,7.6697045686323565e-22,1.180874742401802e-21,4.761904710903764e-05,-4.140786586503964e-06,-2.8011204449285287e-06,7.6697045686323565e-22,2.435756982777093e-07,4.896909226313924e-22,2.681252772163134e-05,-3.6845933205562065e-20,-4.875004833593266e-06,1.180874742401802e-21,4.896909226313924e-22,1.4338249343381904e-07,24.0,36.0,0.026104677468538284,-0.0022946984972804785,-0.0015700568910688162,5.3418803872773424e-05,4.5045046135783195e-05,2.4695747924852185e-05,-0.0022946984972804785,0.00042778297211043537,4.5045046135783195e-05,-1.4568764527211897e-05,-3.916960395144997e-06,5.717472393966527e-21,-0.0015700568910688162,4.5045046135783195e-05,0.00019285859889350832,1.2395446074155603e-20,-2.5740025648701703e-06,-4.3580730562098324e-06,5.3418803872773424e-05,-1.4568764527211897e-05,1.2395446074155603e-20,6.334245199468569e-07,-2.640803892963322e-22,-2.6738633495615793e-22,4.5045046135783195e-05,-3.916960395144997e-06,-2.5740025648701703e-06,-2.640803892963322e-22,2.2382630504580447e-07,1.9852334701272664e-23,2.4695747924852185e-05,5.717472393966527e-21,-4.3580730562098324e-06,-2.6738633495615793e-22,1.9852334701272664e-23,1.2451637587673758e-07,24.0,37.0,0.02543877810239792,-0.002233833074569702,-0.0014892220497131348,5.197505379328504e-05,4.2674251744756475e-05,2.279607542732265e-05,-0.002233833074569702,0.0004163215635344386,4.2674251744756475e-05,-1.4175014257489238e-05,-3.710804548973101e-06,5.61159327555974e-21,-0.0014892220497131348,4.2674251744756475e-05,0.00017782676150090992,8.874726280234101e-21,-2.3707918899162905e-06,-3.907898644683883e-06,5.197505379328504e-05,-1.4175014257489238e-05,8.874726280234101e-21,6.163049874885473e-07,2.350988701644575e-38,-2.465201688412697e-22,4.2674251744756475e-05,-3.710804548973101e-06,-2.3707918899162905e-06,2.350988701644575e-38,2.0615581775018654e-07,-6.617444900424222e-24,2.279607542732265e-05,5.61159327555974e-21,-3.907898644683883e-06,-2.465201688412697e-22,-6.617444900424222e-24,1.0855274013010785e-07,24.0,38.0,0.024806005880236626,-0.0021761134266853333,-0.0014144736342132092,5.060728653916158e-05,4.048582923132926e-05,2.1086369088152424e-05,-0.0021761134266853333,0.00040545838419348,4.048582923132926e-05,-1.3801987734041177e-05,-3.5205068797949934e-06,7.411538288475128e-21,-0.0014144736342132092,4.048582923132926e-05,0.00016431791300419718,8.42752126025625e-21,-2.188423195548239e-06,-3.5143950753990794e-06,5.060728653916158e-05,-1.3801987734041177e-05,8.42752126025625e-21,6.000864232191816e-07,2.350988701644575e-37,-2.2777085101211327e-22,4.048582923132926e-05,-3.5205068797949934e-06,-2.188423195548239e-06,2.350988701644575e-37,1.9029766917810775e-07,-9.926167350636332e-23,2.1086369088152424e-05,7.411538288475128e-21,-3.5143950753990794e-06,-2.2777085101211327e-22,-9.926167350636332e-23,9.498364761384437e-08,24.0,39.0,0.024203944951295853,-0.002121301833540201,-0.0013452157145366073,4.930966315441765e-05,3.84615377697628e-05,1.9543464077287354e-05,-0.002121301833540201,0.00039514777017757297,3.84615377697628e-05,-1.3448090612655506e-05,-3.344481683598133e-06,4.129285617864714e-21,-0.0013452157145366073,3.84615377697628e-05,0.0001521438971394673,8.706030710680867e-21,-2.024291461566463e-06,-3.169210458509042e-06,4.930966315441765e-05,-1.3448090612655506e-05,8.706030710680867e-21,5.846995918545872e-07,1.9143355429036142e-23,-2.5144281235114262e-22,3.84615377697628e-05,-3.344481683598133e-06,-2.024291461566463e-06,1.9143355429036142e-23,1.760253525162625e-07,5.955700410381799e-23,1.9543464077287354e-05,4.129285617864714e-21,-3.169210458509042e-06,-2.5144281235114262e-22,5.955700410381799e-23,8.340027335407285e-08,24.0,40.0,0.023630416020751,-0.0020691838581115007,-0.0012809233739972115,4.80769231216982e-05,3.6585366615327075e-05,1.814750248740893e-05,-0.0020691838581115007,0.0003853485977742821,3.6585366615327075e-05,-1.3111887710692827e-05,-3.181336069246754e-06,5.293955920339377e-21,-0.0012809233739972115,3.6585366615327075e-05,0.00014114378427620977,1.1613378308935826e-20,-1.8761726323646144e-06,-2.865395117623848e-06,4.80769231216982e-05,-1.3111887710692827e-05,1.1613378308935826e-20,5.70082079320855e-07,-3.4647545934260128e-22,-1.9561310660473425e-22,3.6585366615327075e-05,-3.181336069246754e-06,-1.8761726323646144e-06,-3.4647545934260128e-22,1.6314544382112217e-07,-3.970466940254533e-23,1.814750248740893e-05,5.293955920339377e-21,-2.865395117623848e-06,-1.9561310660473425e-22,-3.970466940254533e-23,7.347167496618567e-08,24.0,41.0,0.023083437234163284,-0.002019565785303712,-0.0012211328139528632,4.690431524068117e-05,3.484320404822938e-05,1.6881398551049642e-05,-0.002019565785303712,0.0003760237595997751,3.484320404822938e-05,-1.2792085726687219e-05,-3.0298440378828673e-06,2.6469779601696886e-21,-0.0012211328139528632,3.484320404822938e-05,0.0001311793748755008,5.032617737767338e-21,-1.7421602933609392e-06,-2.5971380637201946e-06,4.690431524068117e-05,-1.2792085726687219e-05,5.032617737767338e-21,5.561776674767316e-07,8.81548779923115e-23,-1.6874348180917342e-22,3.484320404822938e-05,-3.0298440378828673e-06,-1.7421602933609392e-06,8.81548779923115e-23,1.5149220189414336e-07,3.3087224502121107e-23,1.6881398551049642e-05,2.6469779601696886e-21,-2.5971380637201946e-06,-1.6874348180917342e-22,3.3087224502121107e-23,6.492845727734675e-08,24.0,42.0,0.02256120555102825,-0.001972271827980876,-0.001165433437563479,4.578754669637419e-05,3.322258999105543e-05,1.5730392988189124e-05,-0.001972271827980876,0.0003671396116260439,3.322258999105543e-05,-1.2487512321968097e-05,-2.8889210170746082e-06,4.539837812535943e-21,-0.001165433437563479,3.322258999105543e-05,0.00012213154695928097,1.0164395367051604e-20,-1.6206141708607902e-06,-2.3595589482283685e-06,4.578754669637419e-05,-1.2487512321968097e-05,1.0164395367051604e-20,5.4293531093208e-07,-1.5881867761018131e-22,-1.5638122363079322e-22,3.322258999105543e-05,-2.8889210170746082e-06,-1.6206141708607902e-06,-1.5881867761018131e-22,1.4092297817569488e-07,-4.52444324876854e-23,1.5730392988189124e-05,4.539837812535943e-21,-2.3595589482283685e-06,-1.5638122363079322e-22,-4.52444324876854e-23,5.755022058906434e-08,24.0,43.0,0.02206207811832428,-0.001927142613567412,-0.0011134601663798094,4.472271757549606e-05,3.171247226418927e-05,1.468170103180455e-05,-0.001927142613567412,0.00035866559483110905,3.171247226418927e-05,-1.219710520672379e-05,-2.7576063530432293e-06,-3.1973156004267095e-21,-0.0011134601663798094,3.171247226418927e-05,0.00011389725841581821,-5.505714157152952e-21,-1.5101178405529936e-06,-2.148541625501821e-06,4.472271757549606e-05,-1.219710520672379e-05,-5.505714157152952e-21,5.303089096742042e-07,2.2499312661442353e-22,5.232541521146111e-23,3.171247226418927e-05,-2.7576063530432293e-06,-1.5101178405529936e-06,2.2499312661442353e-22,1.3131459297710535e-07,7.059366672795205e-23,1.468170103180455e-05,-3.1973156004267095e-21,-2.148541625501821e-06,5.232541521146111e-23,7.059366672795205e-23,5.1155751634723856e-08,24.0,44.0,0.021584557369351387,-0.001884032622911036,-0.0010648879688233137,4.3706295400625095e-05,3.030303014384117e-05,1.3724198652198538e-05,-0.001884032622911036,0.00035057400236837566,3.030303014384117e-05,-1.1919898497581016e-05,-2.6350460302637657e-06,1.741108883790713e-20,-0.0010648879688233137,3.030303014384117e-05,0.00010638706589816138,3.2610768469290563e-20,-1.4094432572164806e-06,-1.9605997749749804e-06,4.3706295400625095e-05,-1.1919898497581016e-05,3.2610768469290563e-20,5.182564564165659e-07,-5.558653716356346e-22,-5.77810850930159e-22,3.030303014384117e-05,-2.6350460302637657e-06,-1.4094432572164806e-06,-5.558653716356346e-22,1.2256028014689946e-07,-1.4440543156532442e-22,1.3724198652198538e-05,1.741108883790713e-20,-1.9605997749749804e-06,-5.77810850930159e-22,-1.4440543156532442e-22,4.559534261261433e-08,24.0,45.0,0.02112726867198944,-0.0018428093753755093,-0.0010194265050813556,4.273504237062298e-05,2.898550701502245e-05,1.2848186088376679e-05,-0.0018428093753755093,0.00034283948480151594,2.898550701502245e-05,-1.1655011803668458e-05,-2.5204788016708335e-06,2.5950990339196953e-21,-0.0010194265050813556,2.898550701502245e-05,9.952308028005064e-05,1.6940658945086007e-21,-1.3175230151318829e-06,-1.7927701492226333e-06,4.273504237062298e-05,-1.1655011803668458e-05,1.6940658945086007e-21,5.067396386948531e-07,6.617444900424221e-23,-6.21832672077053e-23,2.898550701502245e-05,-2.5204788016708335e-06,-1.3175230151318829e-06,6.617444900424221e-23,1.1456722148750487e-07,-4.9577490823326995e-23,1.2848186088376679e-05,2.5950990339196953e-21,-1.7927701492226333e-06,-6.21832672077053e-23,-4.9577490823326995e-23,4.074477644167018e-08,24.0,46.0,0.02068895474076271,-0.001803351566195488,-0.00097681547049433,4.180601899861358e-05,2.7752081223297864e-05,1.2045174116792623e-05,-0.001803351566195488,0.0003354389045853168,2.7752081223297864e-05,-1.140164204116445e-05,-2.4132243652275065e-06,-3.736138951180478e-21,-0.00097681547049433,2.7752081223297864e-05,9.32372422539629e-05,-1.0587911840678754e-20,-1.233425791724585e-06,-1.6425237845396623e-06,4.180601899861358e-05,-1.140164204116445e-05,-1.0587911840678754e-20,4.95723554649885e-07,2.779326858178173e-22,1.5660726699001887e-22,2.7752081223297864e-05,-2.4132243652275065e-06,-1.233425791724585e-06,2.779326858178173e-22,1.0725442223247228e-07,8.680726375247882e-24,1.2045174116792623e-05,-3.736138951180478e-21,-1.6425237845396623e-06,1.5660726699001887e-22,8.680726375247882e-24,3.6500527045291165e-08,24.0,47.0,0.020268455147743225,-0.001765548251569271,-0.0009368215105496347,4.091652954230085e-05,2.6595744202495553e-05,1.1307714885333553e-05,-0.001765548251569271,0.00032835110323503613,2.6595744202495553e-05,-1.1159053428855259e-05,-2.312673359483597e-06,6.862738687169573e-21,-0.0009368215105496347,2.6595744202495553e-05,8.746992534724995e-05,4.658681209898652e-21,-1.1563366797417984e-06,-1.5076952877279837e-06,4.091652954230085e-05,-1.1159053428855259e-05,4.658681209898652e-21,4.851762582802621e-07,3.3087224502121107e-22,-1.8277605513560687e-22,2.6595744202495553e-05,-2.312673359483597e-06,-1.1563366797417984e-06,3.3087224502121107e-22,1.0055101995476434e-07,-8.225133958933781e-23,1.1307714885333553e-05,6.862738687169573e-21,-1.5076952877279837e-06,-1.8277605513560687e-22,-8.225133958933781e-23,3.27759828167018e-08,24.0,48.0,0.019864708185195923,-0.0017292974516749382,-0.000899234670214355,4.006410381407477e-05,2.551020406826865e-05,1.0629251846694387e-05,-0.0017292974516749382,0.00032155666849575937,2.551020406826865e-05,-1.0926573850156274e-05,-2.218278723375988e-06,1.513349710444352e-20,-0.000899234670214355,2.551020406826865e-05,8.216873538913205e-05,2.8587361969832636e-20,-1.0855405889742542e-06,-1.3864241736882832e-06,4.006410381407477e-05,-1.0926573850156274e-05,2.8587361969832636e-20,4.750684183818521e-07,-1.3234889800848443e-22,-5.247528489950117e-22,2.551020406826865e-05,-2.218278723375988e-06,-1.0855405889742542e-06,-1.3234889800848443e-22,9.439483505957469e-08,-1.0357638924823672e-22,1.0629251846694387e-05,1.513349710444352e-20,-1.3864241736882832e-06,-5.247528489950117e-22,-1.0357638924823672e-22,2.949838595611709e-08,24.0,49.0,0.01947673223912716,-0.0016945054521784186,-0.0008638655417598784,3.924646807718091e-05,2.4489796487614512e-05,1.0004001524066553e-05,-0.0016945054521784186,0.0003150377597194165,2.4489796487614512e-05,-1.0703582120186184e-05,-2.1295475107763195e-06,-1.7579696357961568e-20,-0.0008638655417598784,2.4489796487614512e-05,7.728751370450482e-05,-3.875175733688424e-20,-1.0204081490883254e-06,-1.2771065485139843e-06,3.924646807718091e-05,-1.0703582120186184e-05,-3.875175733688424e-20,4.653731480175338e-07,6.683619349428464e-22,6.012447403588799e-22,2.4489796487614512e-05,-2.1295475107763195e-06,-1.0204081490883254e-06,6.683619349428464e-22,8.873114154539508e-08,1.1876008102934315e-22,1.0004001524066553e-05,-1.7579696357961568e-20,-1.2771065485139843e-06,6.012447403588799e-22,1.1876008102934315e-22,2.6606386427374673e-08,24.0,50.0,0.01910362020134926,-0.0016610859893262386,-0.0008305429946631193,3.84615377697628e-05,2.3529411919298582e-05,9.426848009752575e-06,-0.0016610859893262386,0.0003087779332417995,2.3529411919298582e-05,-1.0489510714251082e-05,-2.0460358882701257e-06,-6.168776158503064e-21,-0.0008305429946631193,2.3529411919298582e-05,7.278545672306791e-05,-1.8422966602781032e-20,-9.603841135685798e-07,-1.178356001219072e-06,3.84615377697628e-05,-1.0489510714251082e-05,-1.8422966602781032e-20,4.56065663456684e-07,5.69100261436483e-22,2.3166239652087715e-22,2.3529411919298582e-05,-2.0460358882701257e-06,-9.603841135685798e-07,5.69100261436483e-22,8.351166513875796e-08,1.876163983649599e-23,9.426848009752575e-06,-6.168776158503064e-21,-1.178356001219072e-06,2.3166239652087715e-22,1.876163983649599e-23,2.404808085998411e-08,24.0,51.0,0.018744533881545067,-0.0016289593186229467,-0.0007991120801307261,3.77073920390103e-05,2.2624433768214658e-05,8.893252925190609e-06,-0.0016289593186229467,0.00030276202596724033,2.2624433768214658e-05,-1.0283833944413345e-05,-1.9673420865728986e-06,-2.370571953706302e-22,-0.0007991120801307261,2.2624433768214658e-05,6.862646114313975e-05,-6.776263578034403e-21,-9.049773552760598e-07,-1.0889697250604513e-06,3.77073920390103e-05,-1.0283833944413345e-05,-6.776263578034403e-21,4.471231989100488e-07,4.433688083284228e-22,2.2985410960050075e-23,2.2624433768214658e-05,-1.9673420865728986e-06,-9.049773552760598e-07,4.433688083284228e-22,7.869368801038945e-08,-1.5068159946093192e-23,8.893252925190609e-06,-2.370571953706302e-22,-1.0889697250604513e-06,2.2985410960050075e-23,-1.5068159946093192e-23,2.1779394288046205e-08,24.0,52.0,0.018398696556687355,-0.0015980517491698265,-0.0007694323430769145,3.698224827530794e-05,2.1770681996713392e-05,8.39918266137829e-06,-0.0015980517491698265,0.0002969760971609503,2.1770681996713392e-05,-1.008606795949163e-05,-1.8931027625512797e-06,5.1742037552138535e-21,-0.0007694323430769145,2.1770681996713392e-05,6.477845454355702e-05,1.7999450129153882e-20,-8.537522262486164e-07,-1.0079019148179214e-06,3.698224827530794e-05,-1.008606795949163e-05,1.7999450129153882e-20,4.385246938909404e-07,-7.808584982500581e-22,-1.6919667924377927e-22,2.1770681996713392e-05,-1.8931027625512797e-06,-8.537522262486164e-07,-7.808584982500581e-22,7.423932402161881e-08,-4.004168971391747e-23,8.39918266137829e-06,5.1742037552138535e-21,-1.0079019148179214e-06,-1.6919667924377927e-22,-4.004168971391747e-23,1.9762783409760232e-08,24.0,53.0,0.01806539110839367,-0.0015682954108342528,-0.0007413760176859796,3.628446938819252e-05,2.0964360373909585e-05,7.941045623738319e-06,-0.0015682954108342528,0.0002914071665145457,2.0964360373909585e-05,-9.89576437859796e-06,-1.8229878833153634e-06,-1.1678791614451613e-21,-0.0007413760176859796,2.0964360373909585e-05,6.121288606664166e-05,-2.964615315390051e-21,-8.063215659603884e-07,-9.34240688366117e-07,3.628446938819252e-05,-9.89576437859796e-06,-2.964615315390051e-21,4.3025062268498004e-07,-1.9852334701272664e-23,6.076235201255949e-23,2.0964360373909585e-05,-1.8229878833153634e-06,-8.063215659603884e-07,-1.9852334701272664e-23,7.011492186848045e-08,-1.1640576667847811e-23,7.941045623738319e-06,-1.1678791614451613e-21,-9.34240688366117e-07,6.076235201255949e-23,-1.1640576667847811e-23,1.796616722060662e-08,24.0,54.0,0.017743945121765137,-0.0015396270900964737,-0.0007148268632590771,3.561253470252268e-05,2.0202020095894113e-05,7.515632660215488e-06,-0.0015396270900964737,0.00028604327235370874,2.0202020095894113e-05,-9.71250938164303e-06,-1.7566974293004023e-06,-2.999638417175359e-21,-0.0007148268632590771,2.0202020095894113e-05,5.790431532659568e-05,-1.291725244562808e-20,-7.623403917023097e-07,-8.671883620081644e-07,3.561253470252268e-05,-9.71250938164303e-06,-1.291725244562808e-20,4.2228302277180774e-07,5.69100261436483e-22,1.0564468787841758e-22,2.0202020095894113e-05,-1.7566974293004023e-06,-7.623403917023097e-07,5.69100261436483e-22,6.629046822581586e-08,1.5557050181216673e-23,7.515632660215488e-06,-2.999638417175359e-21,-8.671883620081644e-07,1.0564468787841758e-22,1.5557050181216673e-23,1.636204416399778e-08,24.0,55.0,0.017433736473321915,-0.0015119879972189665,-0.0006896787672303617,3.4965036320500076e-05,1.9480519767967053e-05,7.120072950783651e-06,-0.0015119879972189665,0.00028087326791137457,1.9480519767967053e-05,-9.535918252367992e-06,-1.6939582110353513e-06,-2.2059254998944843e-21,-0.0006896787672303617,1.9480519767967053e-05,5.4829994041938335e-05,-1.4823076576950256e-21,-7.215007258309925e-07,-8.060459890657512e-07,3.4965036320500076e-05,-9.535918252367992e-06,-1.4823076576950256e-21,4.1460515376456897e-07,-2.713152409173931e-22,8.362670911125978e-23,1.9480519767967053e-05,-1.6939582110353513e-06,-7.215007258309925e-07,-2.713152409173931e-22,6.273918984334159e-08,7.909388437314545e-24,7.120072950783651e-06,-2.2059254998944843e-21,-8.060459890657512e-07,8.362670911125978e-23,7.909388437314545e-24,1.4926778035828647e-08,24.0,56.0,0.01713418960571289,-0.0014853238826617599,-0.0006658348720520735,3.4340660931775346e-05,1.8796992662828416e-05,6.751793080184143e-06,-0.0014853238826617599,0.0002758868795353919,1.8796992662828416e-05,-9.365634468849748e-06,-1.6345211406587623e-06,-6.77257680819486e-21,-0.0006658348720520735,1.8796992662828416e-05,5.196954953134991e-05,-1.5246593050577406e-20,-6.835269914517994e-07,-7.501992627112486e-07,3.4340660931775346e-05,-9.365634468849748e-06,-1.5246593050577406e-20,4.0720149740991474e-07,2.448454613156962e-22,2.259737375175984e-22,1.8796992662828416e-05,-1.6345211406587623e-06,-6.835269914517994e-07,2.448454613156962e-22,5.94371307727215e-08,4.753308521224346e-23,6.751793080184143e-06,-6.77257680819486e-21,-7.501992627112486e-07,2.259737375175984e-22,4.753308521224346e-23,1.3639986029545526e-08,24.0,57.0,0.01684476248919964,-0.0014595839893445373,-0.0006432064692489803,3.373819345142692e-05,1.8148819435737096e-05,6.408481567632407e-06,-0.0014595839893445373,0.0002710744447540492,1.8148819435737096e-05,-9.201325156027451e-06,-1.5781582760610036e-06,-3.424936883411193e-21,-0.0006432064692489803,1.8148819435737096e-05,4.930469367536716e-05,-2.117582368135751e-21,-6.481721470663615e-07,-6.991070904405206e-07,3.373819345142692e-05,-9.201325156027451e-06,-2.117582368135751e-21,4.000576154794544e-07,-3.3087224502121107e-22,1.1197496847667963e-22,1.8148819435737096e-05,-1.5781582760610036e-06,-6.481721470663615e-07,-3.3087224502121107e-22,5.636279709619885e-08,2.0337810746398348e-23,6.408481567632407e-06,-3.424936883411193e-21,-6.991070904405206e-07,1.1197496847667963e-22,2.0337810746398348e-23,1.2484055567085761e-08,24.0,58.0,0.016564948484301567,-0.001434721052646637,-0.0006217124755494297,3.3156498830066994e-05,1.7533606296638027e-05,6.088057489250787e-06,-0.001434721052646637,0.0002664270286913961,1.7533606296638027e-05,-9.042681085702498e-06,-1.524661342955369e-06,-5.4805667356203464e-21,-0.0006217124755494297,1.7533606296638027e-05,4.681899372371845e-05,-7.835054762102278e-21,-6.152142759674462e-07,-6.522918738482986e-07,3.3156498830066994e-05,-9.042681085702498e-06,-7.835054762102278e-21,3.9316006450462737e-07,-1.7867101231145398e-22,1.6874744504636125e-22,1.7533606296638027e-05,-1.524661342955369e-06,-6.152142759674462e-07,-1.7867101231145398e-22,5.349689047307038e-08,4.64028810378897e-23,6.088057489250787e-06,-5.4805667356203464e-21,-6.522918738482986e-07,1.6874744504636125e-22,4.64028810378897e-23,1.144371708505787e-08,24.0,59.0,0.01629428006708622,-0.0014106909511610866,-0.0006012781523168087,3.259452569182031e-05,1.694915226835292e-05,5.788645012216875e-06,-0.0014106909511610866,0.0002619363076519221,1.694915226835292e-05,-8.889415767043829e-06,-1.4738393474544864e-06,3.8222953857534874e-21,-0.0006012781523168087,1.694915226835292e-05,4.4497639464680105e-05,6.776263578034403e-21,-5.844535166943388e-07,-6.093310389587714e-07,3.259452569182031e-05,-8.889415767043829e-06,6.776263578034403e-21,3.864963389332843e-07,1.1911400820763599e-22,-1.3042888629582339e-22,1.694915226835292e-05,-1.4738393474544864e-06,-5.844535166943388e-07,1.1911400820763599e-22,5.0822045238874125e-08,-2.118378675887917e-23,5.788645012216875e-06,3.8222953857534874e-21,-6.093310389587714e-07,-1.3042888629582339e-22,-2.118378675887917e-23,1.0505707415120469e-08,24.0,60.0,0.01603231392800808,-0.001387452706694603,-0.0005818349891342223,3.205128086847253e-05,1.639344191062264e-05,5.508549293153919e-06,-0.001387452706694603,0.0002575944527052343,1.639344191062264e-05,-8.741259080125019e-06,-1.4255167570809135e-06,-6.450543137460588e-22,-0.0005818349891342223,1.639344191062264e-05,4.232726860209368e-05,-6.776263578034403e-21,-5.55709902982926e-07,-5.698499307982274e-07,3.205128086847253e-05,-8.741259080125019e-06,-6.776263578034403e-21,3.800547290211398e-07,4.036641389258775e-22,3.2843321332001254e-23,1.639344191062264e-05,-1.4255167570809135e-06,-5.55709902982926e-07,4.036641389258775e-22,4.832260103171393e-08,-4.223620056690736e-24,5.508549293153919e-06,-6.450543137460588e-22,-5.698499307982274e-07,3.2843321332001254e-23,-4.223620056690736e-24,9.6584731323901e-09,24.0,61.0,0.015778638422489166,-0.0013649676693603396,-0.000563320005312562,3.152585122734308e-05,1.5864621673244983e-05,5.24623737874208e-06,-0.0013649676693603396,0.00025339421699754894,1.5864621673244983e-05,-8.597959094913676e-06,-1.379532363898761e-06,6.17591018738955e-21,-0.000563320005312562,1.5864621673244983e-05,4.029579940834083e-05,1.7364175418713157e-20,-5.288207489684282e-07,-5.335156743058178e-07,3.152585122734308e-05,-8.597959094913676e-06,1.7364175418713157e-20,3.7382432083177264e-07,-3.3087224502121107e-22,-2.036439125682759e-22,1.5864621673244983e-05,-1.379532363898761e-06,-5.288207489684282e-07,-3.3087224502121107e-22,4.598441094572081e-08,-3.973245308362721e-23,5.24623737874208e-06,6.17591018738955e-21,-5.335156743058178e-07,-2.036439125682759e-22,-3.973245308362721e-23,8.891928082732647e-09,24.0,62.0,0.015532865189015865,-0.001343199866823852,-0.0005456749349832535,3.1017370929475874e-05,1.5360983525170013e-05,5.0003200158244e-06,-0.001343199866823852,0.00024932873202487826,1.5360983525170013e-05,-8.459282980766147e-06,-1.3357376928979647e-06,7.955020992523042e-21,-0.0005456749349832535,1.5360983525170013e-05,3.8392292481148615e-05,1.8634724839594607e-20,-5.036387733525771e-07,-5.0003200158244e-07,3.1017370929475874e-05,-8.459282980766147e-06,1.8634724839594607e-20,3.677949109714973e-07,-1.3896634290890865e-22,-2.5880037286373244e-22,1.5360983525170013e-05,-1.3357376928979647e-06,-5.036387733525771e-07,-1.3896634290890865e-22,4.379467810622373e-08,-5.135270553911291e-23,5.0003200158244e-06,7.955020992523042e-21,-5.0003200158244e-07,-2.5880037286373244e-22,-5.135270553911291e-23,8.197245549013132e-09,24.0,63.0,0.015294630080461502,-0.0013221154222264886,-0.0005288461688905954,3.052503234357573e-05,1.4880952221574262e-05,4.76953618999687e-06,-0.0013221154222264886,0.00024539168225601315,1.4880952221574262e-05,-8.325007911480498e-06,-1.2939958651259076e-06,-9.078560668001108e-22,-0.0005288461688905954,1.4880952221574262e-05,3.6606830690288916e-05,4.235164736271502e-22,-4.800307351615629e-07,-4.6913470441722893e-07,3.052503234357573e-05,-8.325007911480498e-06,4.235164736271502e-22,3.619568929025263e-07,-1.9521462456251453e-22,2.3801314017102063e-23,1.4880952221574262e-05,-1.2939958651259076e-06,-4.800307351615629e-07,-1.9521462456251453e-22,4.17418029030614e-08,8.511464435119136e-24,4.76953618999687e-06,-9.078560668001108e-22,-4.6913470441722893e-07,2.3801314017102063e-23,8.511464435119136e-24,7.566688609017547e-09,24.0,64.0,0.015063592232763767,-0.0013016826706007123,-0.0005127841141074896,3.0048076951061375e-05,1.44230771184084e-05,4.5527390284405556e-06,-0.0013016826706007123,0.00024157704319804907,1.44230771184084e-05,-8.19493016024353e-06,-1.254180574505881e-06,2.4897819378871107e-21,-0.0005127841141074896,1.44230771184084e-05,3.493040276225656e-05,8.682087709356578e-21,-4.578754442263744e-07,-4.405876268265274e-07,3.0048076951061375e-05,-8.19493016024353e-06,8.682087709356578e-21,3.5630131378638907e-07,-2.216844041642114e-22,-9.416980986598964e-23,1.44230771184084e-05,-1.254180574505881e-06,-4.578754442263744e-07,-2.216844041642114e-22,3.9815258645603535e-08,-8.544410421964786e-24,4.5527390284405556e-06,2.4897819378871107e-21,-4.405876268265274e-07,-9.416980986598964e-23,-8.544410421964786e-24,6.993454704229407e-09,25.0,3.0,0.18472933769226074,-0.021367521956562996,-0.11538461595773697,0.0005698005552403629,0.004615384619683027,0.019999999552965164,-0.021367521956562996,0.004208472557365894,0.004615384619683027,-0.00014864362310618162,-0.0003846153849735856,1.9949319973733282e-17,-0.11538461595773697,0.004615384619683027,0.3153846263885498,1.0193807841682458e-18,-0.004615384619683027,-0.11999999731779099,0.0005698005552403629,-0.00014864362310618162,1.0193807841682458e-18,6.193484296090901e-06,9.227990360982672e-22,-5.122542900915193e-19,0.004615384619683027,-0.0003846153849735856,-0.004615384619683027,9.227990360982672e-22,0.0003846153849735856,-5.854691731421724e-18,0.019999999552965164,1.9949319973733282e-17,-0.11999999731779099,-5.122542900915193e-19,-5.854691731421724e-18,0.05999999865889549,25.0,4.0,0.1548546999692917,-0.016717948019504547,-0.07523076981306076,0.0004273504309821874,0.002769230864942074,0.009999999776482582,-0.016717948019504547,0.003214046824723482,0.002769230864942074,-0.00011148271732963622,-0.0002307692338945344,-9.215718466126788e-18,-0.07523076981306076,0.002769230864942074,0.12015384435653687,-5.995588610482755e-19,-0.0018461538711562753,-0.029999999329447746,0.0004273504309821874,-0.00011148271732963622,-5.995588610482755e-19,4.645113222068176e-06,7.285852071806817e-21,1.5405126092382315e-19,0.002769230864942074,-0.0002307692338945344,-0.0018461538711562753,7.285852071806817e-21,0.0001538461510790512,3.0357660829594124e-18,0.009999999776482582,-9.215718466126788e-18,-0.029999999329447746,1.5405126092382315e-19,3.0357660829594124e-18,0.009999999776482582,25.0,5.0,0.13334310054779053,-0.013743589632213116,-0.05301098898053169,0.0003418803389649838,0.0018461538711562753,0.0057142856530845165,-0.013743589632213116,0.0026020067743957043,0.0018461538711562753,-8.918617822928354e-05,-0.0001538461510790512,7.589415207398531e-19,-0.05301098898053169,0.0018461538711562753,0.06079120934009552,2.4353922680620132e-20,-0.0009230769355781376,-0.011428571306169033,0.0003418803389649838,-8.918617822928354e-05,2.4353922680620132e-20,3.716090759553481e-06,-2.829063313940233e-21,2.7969300936406754e-21,0.0018461538711562753,-0.0001538461510790512,-0.0009230769355781376,-2.829063313940233e-21,7.69230755395256e-05,-2.981555974335137e-19,0.0057142856530845165,7.589415207398531e-19,-0.011428571306169033,2.7969300936406754e-21,-2.981555974335137e-19,0.0028571428265422583,25.0,6.0,0.11708994954824448,-0.011672771535813808,-0.03939560428261757,0.00028490027762018144,0.0013186812866479158,0.0035714285913854837,-0.011672771535813808,0.0021866539027541876,0.0013186812866479158,-7.432181155309081e-05,-0.00010989011207129806,1.0299920638612292e-18,-0.03939560428261757,0.0013186812866479158,0.03540109843015671,-4.613384589528921e-21,-0.0005274725263006985,-0.0053571430034935474,0.00028490027762018144,-7.432181155309081e-05,-4.613384589528921e-21,3.0967421480454504e-06,6.791152829060357e-21,-2.066412038402683e-20,0.0013186812866479158,-0.00010989011207129806,-0.0005274725263006985,6.791152829060357e-21,4.395604264573194e-05,-1.4230153513872246e-19,0.0035714285913854837,1.0299920638612292e-18,-0.0053571430034935474,-2.066412038402683e-20,-1.4230153513872246e-19,0.0010714285308495164,25.0,7.0,0.10437118262052536,-0.010146520100533962,-0.03043956123292446,0.00024420025874860585,0.0009890110231935978,0.0023809524718672037,-0.010146520100533962,0.0018860487034544349,0.0009890110231935978,-6.370441406033933e-05,-8.241758041549474e-05,1.1655173354219173e-18,-0.03043956123292446,0.0009890110231935978,0.02252747304737568,2.6952847909549025e-19,-0.00032967032166197896,-0.0028571428265422583,0.00024420025874860585,-6.370441406033933e-05,2.6952847909549025e-19,2.654350510056247e-06,-5.452687356244328e-21,-3.1466793838001065e-20,0.0009890110231935978,-8.241758041549474e-05,-0.00032967032166197896,-5.452687356244328e-21,2.7472528017824516e-05,-5.759824041329242e-20,0.0023809524718672037,1.1655173354219173e-18,-0.0028571428265422583,-3.1466793838001065e-20,-5.759824041329242e-20,0.0004761904710903764,25.0,8.0,0.09414529800415039,-0.00897435937076807,-0.024230768904089928,0.0002136752154910937,0.0007692307699471712,0.0016666667070239782,-0.00897435937076807,0.0016583054093644023,0.0007692307699471712,-5.574135866481811e-05,-6.410256173694506e-05,-4.87890977618477e-19,-0.024230768904089928,0.0007692307699471712,0.015256410464644432,-4.7367951709397874e-20,-0.00021978022414259613,-0.0016666667070239782,0.0002136752154910937,-5.574135866481811e-05,-4.7367951709397874e-20,2.322556611034088e-06,7.980790919973176e-22,5.093894938271968e-21,0.0007692307699471712,-6.410256173694506e-05,-0.00021978022414259613,7.980790919973176e-22,1.8315018678549677e-05,8.470329472543003e-20,0.0016666667070239782,-4.87890977618477e-19,-0.0016666667070239782,5.093894938271968e-21,8.470329472543003e-20,0.0002380952355451882,25.0,9.0,0.08574428409337997,-0.008045583963394165,-0.019748251885175705,0.0001899335184134543,0.0006153846043162048,0.001212121220305562,-0.008045583963394165,0.001479747355915606,0.0006153846043162048,-4.954787436872721e-05,-5.1282051572343335e-05,1.8973538018496328e-19,-0.019748251885175705,0.0006153846043162048,0.010824508965015411,-7.92750269687145e-21,-0.0001538461510790512,-0.0010389609960839152,0.0001899335184134543,-4.954787436872721e-05,-7.92750269687145e-21,2.0644947653636336e-06,-1.8667837963977969e-22,1.5503462923033882e-21,0.0006153846043162048,-5.1282051572343335e-05,-0.0001538461510790512,-1.8667837963977969e-22,1.2820512893085834e-05,-6.437450399132683e-20,0.001212121220305562,1.8973538018496328e-19,-0.0010389609960839152,1.5503462923033882e-21,-6.437450399132683e-20,0.0001298701245104894,25.0,10.0,0.07871950417757034,-0.007291375193744898,-0.01640559360384941,0.0001709401694824919,0.0005034964997321367,0.0009090909152291715,-0.007291375193744898,0.0013359683798626065,0.0005034964997321367,-4.459308911464177e-05,-4.195804285700433e-05,9.622294280808852e-19,-0.01640559360384941,0.0005034964997321367,0.007963869720697403,1.7966034617346154e-19,-0.00011188811186002567,-0.0006818181718699634,0.0001709401694824919,-4.459308911464177e-05,1.7966034617346154e-19,1.8580453797767404e-06,-2.9665386718729504e-21,-1.527442315454584e-20,0.0005034964997321367,-4.195804285700433e-05,-0.00011188811186002567,-2.9665386718729504e-21,9.324009624833707e-06,-1.2112571145736495e-19,0.0009090909152291715,9.622294280808852e-19,-0.0006818181718699634,-1.527442315454584e-20,-1.2112571145736495e-19,7.575757626909763e-05,25.0,11.0,0.07275835424661636,-0.006666666828095913,-0.013846153393387794,0.0001554001501062885,0.00041958040674217045,0.0006993007264100015,-0.006666666828095913,0.0012176953023299575,0.00041958040674217045,-4.053916927659884e-05,-3.4965036320500076e-05,-7.724940478959219e-19,-0.013846153393387794,0.00041958040674217045,0.006032634060829878,-1.316381559918453e-19,-8.391608571400866e-05,-0.0004662004648707807,0.0001554001501062885,-4.053916927659884e-05,-1.316381559918453e-19,1.689132091087231e-06,3.4192088192279766e-21,8.641500929378928e-21,0.00041958040674217045,-3.4965036320500076e-05,-8.391608571400866e-05,3.4192088192279766e-21,6.993006991251605e-06,9.994988777600744e-20,0.0006993007264100015,-7.724940478959219e-19,-0.0004662004648707807,8.641500929378928e-21,9.994988777600744e-20,4.662004721467383e-05,25.0,12.0,0.06763626635074615,-0.006140696816146374,-0.011842772364616394,0.00014245013881009072,0.0003550295950844884,0.0005494505749084055,-0.006140696816146374,0.0011186861665919423,0.0003550295950844884,-3.7160905776545405e-05,-2.958579898404423e-05,-2.642742795433417e-19,-0.011842772364616394,0.0003550295950844884,0.0046807038597762585,-8.801876386751328e-20,-6.45508334855549e-05,-0.00032967032166197896,0.00014245013881009072,-3.7160905776545405e-05,-8.801876386751328e-20,1.5483710740227252e-06,1.3978324434832229e-21,5.336189387503248e-21,0.0003550295950844884,-2.958579898404423e-05,-6.45508334855549e-05,1.3978324434832229e-21,5.379235972213792e-06,1.9905274260476058e-20,0.0005494505749084055,-2.642742795433417e-19,-0.00032967032166197896,5.336189387503248e-21,1.9905274260476058e-20,2.9970029572723433e-05,25.0,13.0,0.06318775564432144,-0.0056917439214885235,-0.010245139710605145,0.00013149244477972388,0.0003043110773433,0.00043956044828519225,-0.0056917439214885235,0.001034584129229188,0.0003043110773433,-3.430237484280951e-05,-2.5359255232615396e-05,-2.371692252312041e-19,-0.010245139710605145,0.0003043110773433,0.003705525305122137,-3.818795297007266e-20,-5.071851046523079e-05,-0.00023976023658178747,0.00013149244477972388,-3.430237484280951e-05,-3.818795297007266e-20,1.4292656942416215e-06,1.4582964735449767e-23,2.864799899393546e-21,0.0003043110773433,-2.5359255232615396e-05,-5.071851046523079e-05,1.4582964735449767e-23,4.226542841934133e-06,2.625802136488331e-20,0.00043956044828519225,-2.371692252312041e-19,-0.00023976023658178747,2.864799899393546e-21,2.625802136488331e-20,1.9980019715148956e-05,25.0,14.0,0.059288155287504196,-0.005304029211401939,-0.008950549177825451,0.00012210012937430292,0.00026373626315034926,0.0003571428533177823,-0.005304029211401939,0.0009622551151551306,0.00026373626315034926,-3.1852207030169666e-05,-2.197802132286597e-05,1.6263032587282567e-19,-0.008950549177825451,0.00026373626315034926,0.0029841505456715822,8.922921344701392e-20,-4.057481055497192e-05,-0.00017857142665889114,0.00012210012937430292,-3.1852207030169666e-05,8.922921344701392e-20,1.3271752550281235e-06,-6.34690726178921e-22,-6.104432977515089e-21,0.00026373626315034926,-2.197802132286597e-05,-4.057481055497192e-05,-6.34690726178921e-22,3.3812341371231014e-06,-1.4823076576950256e-21,0.0003571428533177823,1.6263032587282567e-19,-0.00017857142665889114,-6.104432977515089e-21,-1.4823076576950256e-21,1.3736264008912258e-05,25.0,15.0,0.05584179610013962,-0.0049658119678497314,-0.007886878214776516,0.00011396011541364715,0.0002307692338945344,0.00029411763534881175,-0.0049658119678497314,0.0008993868250399828,0.0002307692338945344,-2.9728726076427847e-05,-1.92307688848814e-05,-3.246040254356491e-20,-0.007886878214776516,0.0002307692338945344,0.002438914030790329,-3.346412298586199e-36,-3.296703289379366e-05,-0.00013574660988524556,0.00011396011541364715,-2.9728726076427847e-05,-3.346412298586199e-36,1.2386968819555477e-06,1.0587911840678754e-22,2.390294338841746e-37,0.0002307692338945344,-1.92307688848814e-05,-3.296703289379366e-05,1.0587911840678754e-22,2.7472526653582463e-06,4.6372003633664154e-21,0.00029411763534881175,-3.246040254356491e-20,-0.00013574660988524556,2.390294338841746e-37,4.6372003633664154e-21,9.69618577073561e-06,25.0,16.0,0.052774008363485336,-0.0046681747771799564,-0.007002262398600578,0.00010683760774554685,0.00020361991482786834,0.00024509805371053517,-0.0046681747771799564,0.0008442357066087425,0.00020361991482786834,-2.7870679332409054e-05,-1.6968326235655695e-05,-0.0,-0.007002262398600578,0.00020361991482786834,0.002019069157540798,-8.470329472543003e-22,-2.714932088565547e-05,-0.0001050420178216882,0.00010683760774554685,-2.7870679332409054e-05,-8.470329472543003e-22,1.161278305517044e-06,1.0587911840678754e-22,-0.0,0.00020361991482786834,-1.6968326235655695e-05,-2.714932088565547e-05,1.0587911840678754e-22,2.2624433313467307e-06,-0.0,0.00024509805371053517,-0.0,-0.0001050420178216882,-0.0,-0.0,7.002801339694997e-06,25.0,17.0,0.05002566799521446,-0.004404223058372736,-0.006258632987737656,0.0001005530430120416,0.00018099547014571726,0.0002063983556581661,-0.004404223058372736,0.0007954619941301644,0.00018099547014571726,-2.623122782097198e-05,-1.508295645180624e-05,1.4074076164510853e-19,-0.006258632987737656,0.00018099547014571726,0.0016904819058254361,8.414442436172536e-20,-2.2624433768214658e-05,-8.255933789769188e-05,0.0001005530430120416,-2.623122782097198e-05,8.414442436172536e-20,1.092967863769445e-06,-1.7999450129153882e-21,-3.406141950489053e-21,0.00018099547014571726,-1.508295645180624e-05,-2.2624433768214658e-05,-1.7999450129153882e-21,1.88536955647578e-06,-6.492830625819248e-21,0.0002063983556581661,1.4074076164510853e-19,-8.255933789769188e-05,-3.406141950489053e-21,-6.492830625819248e-21,5.159958618605742e-06,25.0,18.0,0.04754935950040817,-0.004168541170656681,-0.005627530161291361,9.496675920672715e-05,0.00016194331692531705,0.00017543860303703696,-0.004168541170656681,0.000752019404899329,0.00016194331692531705,-2.4773937184363604e-05,-1.3495277016772889e-05,-0.0,-0.005627530161291361,0.00016194331692531705,0.0014296062290668488,1.6940658945086007e-21,-1.9052155039389618e-05,-6.578947068192065e-05,9.496675920672715e-05,-2.4773937184363604e-05,1.6940658945086007e-21,1.0322473826818168e-06,-1.0587911840678754e-22,-0.0,0.00016194331692531705,-1.3495277016772889e-05,-1.9052155039389618e-05,-1.0587911840678754e-22,1.5876796624070266e-06,-0.0,0.00017543860303703696,-0.0,-6.578947068192065e-05,-0.0,-0.0,3.869969077641144e-06,25.0,19.0,0.045306600630283356,-0.003956815227866173,-0.005087333731353283,8.996851101983339e-05,0.00014574898523278534,0.00015037594130262733,-0.003956815227866173,0.000713078654371202,0.00014574898523278534,-2.3470045562135056e-05,-1.2145748769398779e-05,1.6317367044417363e-20,-0.005087333731353283,0.00014574898523278534,0.0012198368785902858,-8.470329472543003e-22,-1.6194331692531705e-05,-5.307386163622141e-05,8.996851101983339e-05,-2.3470045562135056e-05,-8.470329472543003e-22,9.779186029845732e-07,5.293955920339377e-23,-0.0,0.00014574898523278534,-1.2145748769398779e-05,-1.6194331692531705e-05,5.293955920339377e-23,1.3495276789399213e-06,-1.81304076027433e-21,0.00015037594130262733,1.6317367044417363e-20,-5.307386163622141e-05,-0.0,-1.81304076027433e-21,2.9485479444701923e-06,25.0,20.0,0.043265845626592636,-0.003765567671507597,-0.0046213786117732525,8.547008474124596e-05,0.00013186813157517463,0.0001298701245104894,-0.003765567671507597,0.0006779741961508989,0.00013186813157517463,-2.2296544557320885e-05,-1.0989010661432985e-05,1.3552527156068805e-20,-0.0046213786117732525,0.00013186813157517463,0.001049231505021453,-0.0,-1.388085638609482e-05,-4.329004150349647e-05,8.547008474124596e-05,-2.2296544557320885e-05,-0.0,9.290226898883702e-07,0.0,-2.6469779601696886e-23,0.00013186813157517463,-1.0989010661432985e-05,-1.388085638609482e-05,0.0,1.1567379942789557e-06,-1.376428539288238e-21,0.0001298701245104894,1.3552527156068805e-20,-4.329004150349647e-05,-2.6469779601696886e-23,-1.376428539288238e-21,2.2784233806305565e-06,25.0,21.0,0.041400983929634094,-0.003591963555663824,-0.004216652829200029,8.140008139889687e-05,0.00011988011829089373,0.00011293054558336735,-0.003591963555663824,0.0006461654556915164,0.00011988011829089373,-2.1234804080449976e-05,-9.990009857574478e-06,-7.623296525288703e-21,-0.004216652829200029,0.00011988011829089373,0.0009090497624129057,-0.0,-1.1988012374786194e-05,-3.5662276786752045e-05,8.140008139889687e-05,-2.1234804080449976e-05,-0.0,8.847835033520823e-07,0.0,-2.6469779601696886e-23,0.00011988011829089373,-9.990009857574478e-06,-1.1988012374786194e-05,0.0,9.990010312321829e-07,7.411538288475128e-22,0.00011293054558336735,-7.623296525288703e-21,-3.5662276786752045e-05,-2.6469779601696886e-23,7.411538288475128e-22,1.7831139302870724e-06,25.0,22.0,0.03969021141529083,-0.0034336678218096495,-0.0038628762122243643,7.770007505314425e-05,0.00010945575922960415,9.881422738544643e-05,-0.0034336678218096495,0.0006172088906168938,0.00010945575922960415,-2.026958463829942e-05,-9.12131326913368e-06,-8.470329472543003e-22,-0.0038628762122243643,0.00010945575922960415,0.0007927941624075174,-6.87639322572845e-22,-1.0424358151794877e-05,-2.964426857943181e-05,7.770007505314425e-05,-2.026958463829942e-05,-6.87639322572845e-22,8.445660455436155e-07,6.198124939620906e-23,-7.574751373344689e-25,0.00010945575922960415,-9.12131326913368e-06,-1.0424358151794877e-05,6.198124939620906e-23,8.686965315973794e-07,0.0,9.881422738544643e-05,-8.470329472543003e-22,-2.964426857943181e-05,-7.574751373344689e-25,0.0,1.4116318425294594e-06,25.0,23.0,0.03811519965529442,-0.0032887402921915054,-0.0035518393851816654,7.432181155309081e-05,0.00010033445141743869,8.695651922607794e-05,-0.0032887402921915054,0.000590737268794328,0.00010033445141743869,-1.938829882419668e-05,-8.361203981621657e-06,4.235164736271502e-22,-0.0035518393851816654,0.00010033445141743869,0.0006955653079785407,6.033067344127062e-22,-9.12131326913368e-06,-2.4844721338013187e-05,7.432181155309081e-05,-1.938829882419668e-05,6.033067344127062e-22,8.07845822237141e-07,-3.438125930927117e-23,4.920419710981098e-24,0.00010033445141743869,-8.361203981621657e-06,-9.12131326913368e-06,-3.438125930927117e-23,7.601094580422796e-07,0.0,8.695651922607794e-05,4.235164736271502e-22,-2.4844721338013187e-05,4.920419710981098e-24,0.0,1.1293054740235675e-06,25.0,24.0,0.03666039928793907,-0.0031555555760860443,-0.0032769229728728533,7.122506940504536e-05,9.230769501300529e-05,7.69230755395256e-05,-0.0031555555760860443,0.0005664437194354832,9.230769501300529e-05,-1.8580452888272703e-05,-7.69230791775044e-06,0.0,-0.0032769229728728533,9.230769501300529e-05,0.0006136211450211704,-0.0,-8.026755494938698e-06,-2.0979021428502165e-05,7.122506940504536e-05,-1.8580452888272703e-05,-0.0,7.741855370113626e-07,0.0,0.0,9.230769501300529e-05,-7.69230791775044e-06,-8.026755494938698e-06,0.0,6.688963480883103e-07,2.6469779601696886e-23,7.69230755395256e-05,0.0,-2.0979021428502165e-05,0.0,2.6469779601696886e-23,9.12131326913368e-07,25.0,25.0,0.035312555730342865,-0.003032741602510214,-0.003032741602510214,6.837606633780524e-05,8.520710252923891e-05,6.837606633780524e-05,-0.003032741602510214,0.0005440699751488864,8.520710252923891e-05,-1.7837235645856708e-05,-7.100591574271675e-06,-2.964615315390051e-21,-0.003032741602510214,8.520710252923891e-05,0.0005440699751488864,-0.0,-7.100591574271675e-06,-1.7837235645856708e-05,6.837606633780524e-05,-1.7837235645856708e-05,-0.0,7.432181519106962e-07,5.293955920339377e-23,-2.6469779601696886e-23,8.520710252923891e-05,-7.100591574271675e-06,-7.100591574271675e-06,5.293955920339377e-23,5.917160024182522e-07,2.3822801641527197e-22,6.837606633780524e-05,-2.964615315390051e-21,-1.7837235645856708e-05,-2.6469779601696886e-23,2.3822801641527197e-22,7.432181519106962e-07,25.0,26.0,0.03406029939651489,-0.002919132122769952,-0.0028148775454610586,6.574622238986194e-05,7.889546395745128e-05,6.105006468715146e-05,-0.002919132122769952,0.0005233970587141812,7.889546395745128e-05,-1.7151187421404757e-05,-6.574622148036724e-06,5.082197683525802e-21,-0.0028148775454610586,7.889546395745128e-05,0.0004846529627684504,8.407388722161443e-22,-6.311637207545573e-06,-1.5262516171787865e-05,6.574622238986194e-05,-1.7151187421404757e-05,8.407388722161443e-22,7.146328471208108e-07,-1.0948945235778004e-23,-2.6476245105676077e-23,7.889546395745128e-05,-6.574622148036724e-06,-6.311637207545573e-06,-1.0948945235778004e-23,5.259697672954644e-07,-3.970466940254533e-22,6.105006468715146e-05,5.082197683525802e-21,-1.5262516171787865e-05,-2.6476245105676077e-23,-3.970466940254533e-22,6.105005923018325e-07,25.0,27.0,0.03289380297064781,-0.0028137294575572014,-0.0026196790859103203,6.331117765512317e-05,7.326007471419871e-05,5.4734537116019055e-05,-0.0028137294575572014,0.0005042381235398352,7.326007471419871e-05,-1.651595812290907e-05,-6.105005923018325e-06,0.0,-0.0026196790859103203,7.326007471419871e-05,0.00043358822586014867,-7.52155674306734e-22,-5.635390152747277e-06,-1.3136288544046693e-05,6.331117765512317e-05,-1.651595812290907e-05,-7.52155674306734e-22,6.881649596834905e-07,8.918518082162807e-23,-3.6819506882729915e-24,7.326007471419871e-05,-6.105005923018325e-06,-5.635390152747277e-06,8.918518082162807e-23,4.6961585553617624e-07,-2.6469779601696886e-23,5.4734537116019055e-05,0.0,-1.3136288544046693e-05,-3.6819506882729915e-24,-2.6469779601696886e-23,5.052418714512896e-07,25.0,28.0,0.03180455416440964,-0.0027156751602888107,-0.002444107551127672,6.105006468715146e-05,6.820765702286735e-05,4.926108522340655e-05,-0.0027156751602888107,0.00048643260379321873,6.820765702286735e-05,-1.5926103515084833e-05,-5.683971266989829e-06,-1.6940658945086007e-21,-0.002444107551127672,6.820765702286735e-05,0.00038945727283135056,-0.0,-5.052419055573409e-06,-1.1367942533979658e-05,6.105006468715146e-05,-1.5926103515084833e-05,-0.0,6.635876275140618e-07,0.0,0.0,6.820765702286735e-05,-5.683971266989829e-06,-5.052419055573409e-06,0.0,4.21034911823881e-07,1.3234889800848443e-22,4.926108522340655e-05,-1.6940658945086007e-21,-1.1367942533979658e-05,0.0,1.3234889800848443e-22,4.21034911823881e-07,25.0,29.0,0.030785126611590385,-0.0026242262683808804,-0.002285616472363472,5.894488640478812e-05,6.366047455230728e-05,4.449388143257238e-05,-0.0026242262683808804,0.00046984199434518814,6.366047455230728e-05,-1.5376926967292093e-05,-5.305039849190507e-06,6.3527471044072525e-21,-0.002285616472363472,6.366047455230728e-05,0.0003511213872116059,2.2733157589963374e-20,-4.547177013591863e-06,-9.887528904073406e-06,5.894488640478812e-05,-1.5376926967292093e-05,2.2733157589963374e-20,6.407053092516435e-07,-5.061626412549947e-22,-5.210485601324856e-22,6.366047455230728e-05,-5.305039849190507e-06,-4.547177013591863e-06,-5.061626412549947e-22,3.7893141779932193e-07,5.69100261436483e-22,4.449388143257238e-05,6.3527471044072525e-21,-9.887528904073406e-06,-5.210485601324856e-22,5.69100261436483e-22,3.5312604040882434e-07,25.0,30.0,0.029829014092683792,-0.002538737142458558,-0.0021420596167445183,5.698005770682357e-05,5.955334927421063e-05,4.0322582208318636e-05,-0.002538737142458558,0.0004543460381682962,5.955334927421063e-05,-1.4864363038213924e-05,-4.96277925776667e-06,3.8116482626443515e-21,-0.0021420596167445183,5.955334927421063e-05,0.00031765911262482405,-8.265760800423642e-22,-4.1071275518334005e-06,-8.640552550787106e-06,5.698005770682357e-05,-1.4864363038213924e-05,-8.265760800423642e-22,6.193484409777739e-07,6.362665547231905e-23,2.6311205149112073e-24,5.955334927421063e-05,-4.96277925776667e-06,-4.1071275518334005e-06,6.362665547231905e-23,3.422606198455469e-07,-2.779326858178173e-22,4.0322582208318636e-05,3.8116482626443515e-21,-8.640552550787106e-06,2.6311205149112073e-24,-2.779326858178173e-22,2.979500948185887e-07,25.0,31.0,0.02893049642443657,-0.002458643401041627,-0.002011617412790656,5.514199074241333e-05,5.5831264035077766e-05,3.6656892916653305e-05,-0.002458643401041627,0.000439839786849916,5.5831264035077766e-05,-1.4384867426997516e-05,-4.652605639421381e-06,8.470329472543003e-22,-0.002011617412790656,5.5831264035077766e-05,0.00028831957024522126,-2.500773635439647e-22,-3.7220843296381645e-06,-7.5841844591195695e-06,5.514199074241333e-05,-1.4384867426997516e-05,-2.500773635439647e-22,5.993694571770902e-07,3.2283935330943603e-24,1.3195676314110812e-23,5.5831264035077766e-05,-4.652605639421381e-06,-3.7220843296381645e-06,3.2283935330943603e-24,3.1017370361041685e-07,-6.617444900424221e-23,3.6656892916653305e-05,8.470329472543003e-22,-7.5841844591195695e-06,1.3195676314110812e-23,-6.617444900424221e-23,2.5280616000600276e-07,25.0,32.0,0.028084522113204002,-0.002383449813351035,-0.0018927395576611161,5.3418803872773424e-05,5.244755084277131e-05,3.342246054671705e-05,-0.002383449813351035,0.000426231388701126,5.244755084277131e-05,-1.3935339666204527e-05,-4.3706295400625095e-06,-1.0587911840678754e-21,-0.0018927395576611161,5.244755084277131e-05,0.00026248657377436757,-0.0,-3.3837129649327835e-06,-6.684491836494999e-06,5.3418803872773424e-05,-1.3935339666204527e-05,-0.0,5.80639152758522e-07,0.0,0.0,5.244755084277131e-05,-4.3706295400625095e-06,-3.3837129649327835e-06,0.0,2.819760993588716e-07,6.617444900424221e-23,3.342246054671705e-05,-1.0587911840678754e-21,-6.684491836494999e-06,0.0,6.617444900424221e-23,2.156287735033402e-07,25.0,33.0,0.02728661336004734,-0.0023127200547605753,-0.0017840982181951404,5.18000524607487e-05,4.936240293318406e-05,3.0557675927411765e-05,-0.0023127200547605753,0.0004134399350732565,4.936240293318406e-05,-1.3513056728697848e-05,-4.113533577765338e-06,-1.9058241313221758e-21,-0.0017840982181951404,4.936240293318406e-05,0.000239651242736727,-0.0,-3.0851501833240036e-06,-5.914389021199895e-06,5.18000524607487e-05,-1.3513056728697848e-05,-0.0,5.630440682580229e-07,0.0,0.0,4.936240293318406e-05,-4.113533577765338e-06,-3.0851501833240036e-06,0.0,2.5709584861033363e-07,1.0587911840678754e-22,3.0557675927411765e-05,-1.9058241313221758e-21,-5.914389021199895e-06,0.0,1.0587911840678754e-22,1.8482465691249672e-07,25.0,34.0,0.026532787829637527,-0.002246067626401782,-0.0016845507780089974,5.02765215060208e-05,4.654169242712669e-05,2.801120535877999e-05,-0.002246067626401782,0.0004013940051663667,4.654169242712669e-05,-1.311561391048599e-05,-3.878474672092125e-06,4.129285617864714e-20,-0.0016845507780089974,4.654169242712669e-05,0.0002193909022025764,5.57271255559548e-20,-2.820708687067963e-06,-5.25210089108441e-06,5.02765215060208e-05,-1.311561391048599e-05,5.57271255559548e-20,5.464839318847226e-07,-6.563384325698298e-22,-1.329003584817995e-21,4.654169242712669e-05,-3.878474672092125e-06,-2.820708687067963e-06,-6.563384325698298e-22,2.3505906199261517e-07,-5.161607022330893e-22,2.801120535877999e-05,4.129285617864714e-20,-5.25210089108441e-06,-1.329003584817995e-21,-5.161607022330893e-22,1.5915456685888785e-07,25.0,35.0,0.02581948973238468,-0.002183150267228484,-0.0015931095695123076,4.88400473841466e-05,4.395604264573194e-05,2.5740026103449054e-05,-0.002183150267228484,0.00039003026904538274,4.395604264573194e-05,-1.2740882084472105e-05,-3.663003553810995e-06,-3.7692966152816365e-20,-0.0015931095695123076,4.395604264573194e-05,0.00020135243539698422,-5.3087504979592855e-20,-2.5856495540210744e-06,-4.680004622059641e-06,4.88400473841466e-05,-1.2740882084472105e-05,-5.3087504979592855e-20,5.308700679051981e-07,6.521573435544136e-22,1.2202811340297523e-21,4.395604264573194e-05,-3.663003553810995e-06,-2.5856495540210744e-06,6.521573435544136e-22,2.15470805642326e-07,4.235164736271502e-22,2.5740026103449054e-05,-3.7692966152816365e-20,-4.680004622059641e-06,1.2202811340297523e-21,4.235164736271502e-22,1.3764719142272952e-07,25.0,36.0,0.025143537670373917,-0.0021236620377749205,-0.0015089177759364247,4.7483379603363574e-05,4.158004230703227e-05,2.3707918444415554e-05,-0.0021236620377749205,0.00037929232348687947,4.158004230703227e-05,-1.2386968592181802e-05,-3.4650033740035724e-06,-1.164670302474663e-21,-0.0015089177759364247,4.158004230703227e-05,0.0001852393033914268,-0.0,-2.3760023850627476e-06,-4.183750206721015e-06,4.7483379603363574e-05,-1.2386968592181802e-05,-0.0,5.161236913409084e-07,0.0,0.0,4.158004230703227e-05,-3.4650033740035724e-06,-2.3760023850627476e-06,0.0,1.980001940182774e-07,7.279189390466644e-23,2.3707918444415554e-05,-1.164670302474663e-21,-4.183750206721015e-06,0.0,7.279189390466644e-23,1.1953572709444416e-07,25.0,37.0,0.024502072483301163,-0.002067330526188016,-0.0014312288258224726,4.62000461993739e-05,3.939161979360506e-05,2.1884232410229743e-05,-0.002067330526188016,0.0003691299061756581,3.939161979360506e-05,-1.2052186320943292e-05,-3.2826349070091965e-06,-2.2234614865425384e-21,-0.0014312288258224726,3.939161979360506e-05,0.00017080122779589146,-0.0,-2.188423195548239e-06,-3.751582653421792e-06,4.62000461993739e-05,-1.2052186320943292e-05,-0.0,5.021744300393038e-07,0.0,0.0,3.939161979360506e-05,-3.2826349070091965e-06,-2.188423195548239e-06,0.0,1.8236860910292307e-07,1.1911400820763599e-22,2.1884232410229743e-05,-2.2234614865425384e-21,-3.751582653421792e-06,0.0,1.1911400820763599e-22,1.0421062768273259e-07,25.0,38.0,0.023892521858215332,-0.002013910561800003,-0.001359389629215002,4.498425550991669e-05,3.7371533835539594e-05,2.024291461566463e-05,-0.002013910561800003,0.0003594979352783412,3.7371533835539594e-05,-1.1735022781067528e-05,-3.1142947136686416e-06,-1.2705494208814505e-21,-0.001359389629215002,3.7371533835539594e-05,0.00015782599803060293,-0.0,-2.0200830022076843e-06,-3.373819254193222e-06,4.498425550991669e-05,-1.1735022781067528e-05,-0.0,4.889593014922866e-07,0.0,0.0,3.7371533835539594e-05,-3.1142947136686416e-06,-2.0200830022076843e-06,0.0,1.683402501839737e-07,7.279189390466644e-23,2.024291461566463e-05,-1.2705494208814505e-21,-3.373819254193222e-06,0.0,7.279189390466644e-23,9.118430455146154e-08,25.0,39.0,0.023312561213970184,-0.001963182119652629,-0.001292827189899981,4.383081250125542e-05,3.550295878085308e-05,1.876172609627247e-05,-0.001963182119652629,0.0003503558982629329,3.550295878085308e-05,-1.1434125553932972e-05,-2.958579898404423e-06,1.376428539288238e-21,-0.001292827189899981,3.550295878085308e-05,0.0001461328793084249,-0.0,-1.8685767599890823e-06,-3.0424421311181504e-06,4.383081250125542e-05,-1.1434125553932972e-05,-0.0,4.7642188860663737e-07,0.0,0.0,3.550295878085308e-05,-2.958579898404423e-06,-1.8685767599890823e-06,0.0,1.557147299990902e-07,-7.279189390466644e-23,1.876172609627247e-05,1.376428539288238e-21,-3.0424421311181504e-06,0.0,-7.279189390466644e-23,8.006426810425182e-08,25.0,40.0,0.022760087624192238,-0.0019149468280375004,-0.001231037313118577,4.273504237062298e-05,3.377110624569468e-05,1.742160202411469e-05,-0.0019149468280375004,0.00034166735713370144,3.377110624569468e-05,-1.1148272278660443e-05,-2.8142590053903405e-06,2.117582368135751e-22,-0.001231037313118577,3.377110624569468e-05,0.00013556730118580163,-0.0,-1.731851625663694e-06,-2.7507794584380463e-06,4.273504237062298e-05,-1.1148272278660443e-05,-0.0,4.645113449441851e-07,0.0,0.0,3.377110624569468e-05,-2.8142590053903405e-06,-1.731851625663694e-06,0.0,1.4432096406835626e-07,-6.617444900424222e-24,1.742160202411469e-05,2.117582368135751e-22,-2.7507794584380463e-06,0.0,-6.617444900424222e-24,7.053280626223568e-08,25.0,41.0,0.02223319187760353,-0.0018690252909436822,-0.001173574011772871,4.169272506260313e-05,3.216295954189263e-05,1.6206142390728928e-05,-0.0018690252909436822,0.0003333993663545698,3.216295954189263e-05,-1.0876363376155496e-05,-2.6802465526998276e-06,-1.5881867761018131e-21,-0.001173574011772871,3.216295954189263e-05,0.00012599652109201998,-0.0,-1.608147954357264e-06,-2.49325262302591e-06,4.169272506260313e-05,-1.0876363376155496e-05,-0.0,4.531817978659092e-07,0.0,0.0,3.216295954189263e-05,-2.6802465526998276e-06,-1.608147954357264e-06,0.0,1.3401232479282044e-07,7.940933880509066e-23,1.6206142390728928e-05,-1.5881867761018131e-21,-2.49325262302591e-06,0.0,7.940933880509066e-23,6.233131699673322e-08,25.0,42.0,0.02173013985157013,-0.001825254876166582,-0.0011200427543371916,4.0700040699448436e-05,3.066700810450129e-05,1.510117817815626e-05,-0.001825254876166582,0.00032552212360315025,3.066700810450129e-05,-1.0617402040224988e-05,-2.555583932917216e-06,9.529120656610879e-22,-0.0011200427543371916,3.066700810450129e-05,0.00011730611731763929,-0.0,-1.4959515510781785e-06,-2.265176590299234e-06,4.0700040699448436e-05,-1.0617402040224988e-05,-0.0,4.4239175167604117e-07,0.0,0.0,3.066700810450129e-05,-2.555583932917216e-06,-1.4959515510781785e-06,0.0,1.2466263399346644e-07,-4.963083675318166e-23,1.510117817815626e-05,9.529120656610879e-22,-2.265176590299234e-06,0.0,-4.963083675318166e-23,5.524821133917612e-08,25.0,43.0,0.02124934457242489,-0.0017834878526628017,-0.0010700926650315523,3.975352956331335e-05,2.9273052859934978e-05,1.4094433026912156e-05,-0.0017834878526628017,0.0003180085914209485,2.9273052859934978e-05,-1.0370486052124761e-05,-2.439420995870023e-06,-5.293955920339377e-22,-0.0010700926650315523,2.9273052859934978e-05,0.00010939712228719145,-0.0,-1.3939549035058008e-06,-2.0625998331524897e-06,3.975352956331335e-05,-1.0370486052124761e-05,-0.0,4.3210357603129523e-07,0.0,0.0,2.9273052859934978e-05,-2.439420995870023e-06,-1.3939549035058008e-06,0.0,1.161629086254834e-07,2.6469779601696886e-23,1.4094433026912156e-05,-5.293955920339377e-22,-2.0625998331524897e-06,0.0,2.6469779601696886e-23,4.910952000614088e-08,25.0,44.0,0.020789364352822304,-0.001743589760735631,-0.0010234114015474916,3.885003752657212e-05,2.797202796500642e-05,1.3175230378692504e-05,-0.001743589760735631,0.00031083408975973725,2.797202796500642e-05,-1.013479231914971e-05,-2.3310024062084267e-06,1.1439892523530601e-20,-0.0010234114015474916,2.797202796500642e-05,0.00010218362876912579,1.6940658945086007e-20,-1.3010245538680465e-06,-1.8821757521436666e-06,3.885003752657212e-05,-1.013479231914971e-05,1.6940658945086007e-20,4.2228302277180774e-07,-1.257314531080602e-22,-3.6432234553973384e-22,2.797202796500642e-05,-2.3310024062084267e-06,-1.3010245538680465e-06,-1.257314531080602e-22,1.0841871045386142e-07,-9.114585358078783e-23,1.3175230378692504e-05,1.1439892523530601e-20,-1.8821757521436666e-06,-3.6432234553973384e-22,-9.114585358078783e-23,4.3771528623892664e-08,25.0,45.0,0.02034887671470642,-0.0017054378986358643,-0.0009797196835279465,3.798670513788238e-05,2.6755853468785062e-05,1.2334258826740552e-05,-0.0017054378986358643,0.0003039762086700648,2.6755853468785062e-05,-9.909575055644382e-06,-2.2296544557320885e-06,-3.329631580847341e-21,-0.0009797196835279465,2.6755853468785062e-05,9.559080353938043e-05,-4.235164736271502e-22,-1.2161751783423824e-06,-1.721059334158781e-06,3.798670513788238e-05,-9.909575055644382e-06,-4.235164736271502e-22,4.128989701257524e-07,-1.7205356741102976e-22,8.252062514794405e-23,2.6755853468785062e-05,-2.2296544557320885e-06,-1.2161751783423824e-06,-1.7205356741102976e-22,1.0134792916005608e-07,4.9362112863539933e-23,1.2334258826740552e-05,-3.329631580847341e-21,-1.721059334158781e-06,8.252062514794405e-23,4.9362112863539933e-23,3.911498325237517e-08,25.0,46.0,0.01992666721343994,-0.0016689200419932604,-0.0009387675090692937,3.7160905776545405e-05,2.561730616434943e-05,1.156336747953901e-05,-0.0016689200419932604,0.0002974144590552896,2.561730616434943e-05,-9.69414941209834e-06,-2.1347755136957858e-06,3.106409541628447e-21,-0.0009387675090692937,2.561730616434943e-05,8.955329394666478e-05,1.0164395367051604e-20,-1.13854696337512e-06,-1.5768227967782877e-06,3.7160905776545405e-05,-9.69414941209834e-06,1.0164395367051604e-20,4.039229111185705e-07,-5.558653716356346e-22,-7.187164663795905e-23,2.561730616434943e-05,-2.1347755136957858e-06,-1.13854696337512e-06,-5.558653716356346e-22,9.487891361459333e-08,-5.414526683270805e-23,1.156336747953901e-05,3.106409541628447e-21,-1.5768227967782877e-06,-7.187164663795905e-23,-5.414526683270805e-23,3.504050738456499e-08,25.0,47.0,0.019521620124578476,-0.0016339333960786462,-0.0009003306622616947,3.6370249290484935e-05,2.454991772538051e-05,1.0855405889742542e-05,-0.0016339333960786462,0.0002911300107371062,2.454991772538051e-05,-9.48789147514617e-06,-2.0458264771150425e-06,9.913353094091922e-23,-0.0009003306622616947,2.454991772538051e-05,8.401382365263999e-05,1.6940658945086007e-21,-1.0673877568478929e-06,-1.4473874898612848e-06,3.6370249290484935e-05,-9.48789147514617e-06,1.6940658945086007e-21,3.9532878304271435e-07,-1.0587911840678754e-22,-1.974264807904808e-25,2.454991772538051e-05,-2.0458264771150425e-06,-1.0673877568478929e-06,-1.0587911840678754e-22,8.894897973732441e-08,-5.2524729596635155e-24,1.0855405889742542e-05,9.913353094091922e-23,-1.4473874898612848e-06,-1.974264807904808e-25,-5.2524729596635155e-24,3.146494620409612e-08,25.0,48.0,0.019132710993289948,-0.0016003837808966637,-0.0008642072207294405,3.561253470252268e-05,2.3547880118712783e-05,1.0204081263509579e-05,-0.0016003837808966637,0.00028510569245554507,2.3547880118712783e-05,-9.290226444136351e-06,-1.9623234948085155e-06,6.0225004955036414e-21,-0.0008642072207294405,2.3547880118712783e-05,7.892207213444635e-05,9.529120656610879e-21,-1.0020374929808895e-06,-1.3309671658134903e-06,3.561253470252268e-05,-9.290226444136351e-06,9.529120656610879e-21,3.870927685056813e-07,-1.257314531080602e-22,-1.7366342425930686e-22,2.3547880118712783e-05,-1.9623234948085155e-06,-1.0020374929808895e-06,-1.257314531080602e-22,8.350312441507413e-08,-6.1952743118538e-23,1.0204081263509579e-05,6.0225004955036414e-21,-1.3309671658134903e-06,-1.7366342425930686e-22,-6.1952743118538e-23,2.831844980732967e-08,25.0,49.0,0.018758995458483696,-0.0015681842342019081,-0.0008302151691168547,3.488575021037832e-05,2.2605965568800457e-05,9.603841135685798e-06,-0.0015681842342019081,0.0002793256426230073,2.2605965568800457e-05,-9.100630450120661e-06,-1.8838304640667047e-06,5.159963970215724e-21,-0.0008302151691168547,2.2605965568800457e-05,7.423368515446782e-05,8.046812998915853e-21,-9.419152320333524e-07,-1.226022277478478e-06,3.488575021037832e-05,-9.100630450120661e-06,8.046812998915853e-21,3.791929259477911e-07,5.293955920339377e-23,-1.8157092810791883e-22,2.2605965568800457e-05,-1.8838304640667047e-06,-9.419152320333524e-07,5.293955920339377e-23,7.849293837125515e-08,-2.089152168210384e-23,9.603841135685798e-06,5.159963970215724e-21,-1.226022277478478e-06,-1.8157092810791883e-22,-2.089152168210384e-23,2.5542131965039516e-08,25.0,50.0,0.018399598076939583,-0.0015372548950836062,-0.0007981900707818568,3.418803316890262e-05,2.1719457436120138e-05,9.049773325386923e-06,-0.0015372548950836062,0.000273775338428095,2.1719457436120138e-05,-8.918617822928354e-06,-1.8099547105521196e-06,9.466910050639642e-21,-0.0007981900707818568,2.1719457436120138e-05,6.990950350882486e-05,9.105604182983729e-21,-8.865084737408324e-07,-1.1312216656733654e-06,3.418803316890262e-05,-8.918617822928354e-06,9.105604182983729e-21,3.716090759553481e-07,5.029258124322408e-22,-3.0291377760627903e-22,2.1719457436120138e-05,-1.8099547105521196e-06,-8.865084737408324e-07,5.029258124322408e-22,7.387570377659358e-08,-7.410695027721883e-23,9.049773325386923e-06,9.466910050639642e-21,-1.1312216656733654e-06,-3.0291377760627903e-22,-7.410695027721883e-23,2.3086156986096285e-08,25.0,51.0,0.01805371232330799,-0.0015075221890583634,-0.0007679829723201692,3.3517681004013866e-05,2.0884093828499317e-05,8.537522262486164e-06,-0.0015075221890583634,0.00026844130479730666,2.0884093828499317e-05,-8.74374291015556e-06,-1.740341076583718e-06,-9.672341648236894e-21,-0.0007679829723201692,2.0884093828499317e-05,6.59148208796978e-05,-1.376428539288238e-20,-8.353637213076581e-07,-1.0454109542479273e-06,3.3517681004013866e-05,-8.74374291015556e-06,-1.376428539288238e-20,3.643226023086754e-07,-1.7205356741102976e-22,3.16510887091256e-22,2.0884093828499317e-05,-1.740341076583718e-06,-8.353637213076581e-07,-1.7205356741102976e-22,6.961364107382906e-08,5.96666999458544e-23,8.537522262486164e-06,-9.672341648236894e-21,-1.0454109542479273e-06,3.16510887091256e-22,5.96666999458544e-23,2.090821737965598e-08,25.0,52.0,0.01772059127688408,-0.0014789177803322673,-0.0007394588901661336,3.287311119493097e-05,2.009601485042367e-05,8.06321531854337e-06,-0.0014789177803322673,0.0002633111726026982,2.009601485042367e-05,-8.575593710702378e-06,-1.6746678284107475e-06,5.572594213837922e-21,-0.0007394588901661336,2.009601485042367e-05,6.221883813850582e-05,1.1858461261560205e-20,-7.880789780756459e-07,-9.67585833677731e-07,3.287311119493097e-05,-8.575593710702378e-06,1.1858461261560205e-20,3.573164235604054e-07,-1.257314531080602e-22,-2.082448775336614e-22,2.009601485042367e-05,-1.6746678284107475e-06,-7.880789780756459e-07,-1.257314531080602e-22,6.567324817297049e-08,-1.772357777131566e-23,8.06321531854337e-06,5.572594213837922e-21,-9.67585833677731e-07,-2.082448775336614e-22,-1.772357777131566e-23,1.897227264180401e-08,25.0,53.0,0.017399540171027184,-0.0014513788046315312,-0.0007124950643628836,3.225286127417348e-05,1.935171712830197e-05,7.623403689649422e-06,-0.0014513788046315312,0.0002583734749350697,1.935171712830197e-05,-8.413790055783466e-06,-1.6126431319207768e-06,-1.42109437385638e-21,-0.0007124950643628836,1.935171712830197e-05,5.879414311493747e-05,3.3881317890172014e-21,-7.442968126269989e-07,-8.968710289991577e-07,3.225286127417348e-05,-8.413790055783466e-06,3.3881317890172014e-21,3.5057459513154754e-07,-4.1028158382630173e-22,2.205462608937075e-23,1.935171712830197e-05,-1.6126431319207768e-06,-7.442968126269989e-07,-4.1028158382630173e-22,6.202473201710745e-08,2.708550447088361e-23,7.623403689649422e-06,-1.42109437385638e-21,-8.968710289991577e-07,2.205462608937075e-23,2.708550447088361e-23,1.7247520744945177e-08,25.0,54.0,0.01708991453051567,-0.0014248467050492764,-0.0006869796779938042,3.165558882756159e-05,1.8648019249667414e-05,7.215007371996762e-06,-0.0014248467050492764,0.0002536175597924739,1.8648019249667414e-05,-8.257979061454535e-06,-1.554001528347726e-06,-1.325324589991534e-21,-0.0006869796779938042,1.8648019249667414e-05,5.561629222938791e-05,-5.929230630780102e-21,-7.036988449726778e-07,-8.325008593601524e-07,3.165558882756159e-05,-8.257979061454535e-06,-5.929230630780102e-21,3.440824798417452e-07,1.9852334701272664e-22,4.6844248714360854e-23,1.8648019249667414e-05,-1.554001528347726e-06,-7.036988449726778e-07,1.9852334701272664e-22,5.864156804591403e-08,6.163441644403688e-24,7.215007371996762e-06,-1.325324589991534e-21,-8.325008593601524e-07,4.6844248714360854e-23,6.163441644403688e-24,1.570756325008915e-08,25.0,55.0,0.01679111458361149,-0.001399267348460853,-0.000662810867652297,3.108003147644922e-05,1.798201810743194e-05,6.8352701418916695e-06,-0.001399267348460853,0.00024903356097638607,1.798201810743194e-05,-8.107834219117649e-06,-1.4985015468482743e-06,-3.385057932546579e-21,-0.000662810867652297,1.798201810743194e-05,5.266343578114174e-05,-2.117582368135751e-22,-6.660006874881219e-07,-7.738041745142255e-07,3.108003147644922e-05,-8.107834219117649e-06,-2.117582368135751e-22,3.3782643527047185e-07,-3.8381180422460484e-22,9.868887213675148e-23,1.798201810743194e-05,-1.4985015468482743e-06,-6.660006874881219e-07,-3.8381180422460484e-22,5.550005610643893e-08,2.700669726645203e-23,6.8352701418916695e-06,-3.385057932546579e-21,-7.738041745142255e-07,9.868887213675148e-23,2.700669726645203e-23,1.4329706310434176e-08,25.0,56.0,0.016502585262060165,-0.0013745903270319104,-0.0006398955010809004,3.052503234357573e-05,1.73510707099922e-05,6.481721356976777e-06,-0.0013745903270319104,0.0002446123689878732,1.73510707099922e-05,-7.963051757542416e-06,-1.445922521270404e-06,3.567632405321909e-21,-0.0006398955010809004,1.73510707099922e-05,4.9916005082195625e-05,1.0376153603865179e-20,-6.309480227173481e-07,-7.201912808341149e-07,3.052503234357573e-05,-7.963051757542416e-06,1.0376153603865179e-20,3.317938137570309e-07,-3.374896899216353e-22,-1.0117396069304044e-22,1.73510707099922e-05,-1.445922521270404e-06,-6.309480227173481e-07,-3.374896899216353e-22,5.2579000708874446e-08,-3.4342409487410847e-23,6.481721356976777e-06,3.567632405321909e-21,-7.201912808341149e-07,-1.0117396069304044e-22,-3.4342409487410847e-23,1.3094386908107936e-08,25.0,57.0,0.016223803162574768,-0.0013507686089724302,-0.0006181483622640371,2.9989503673277795e-05,1.6752757801441476e-05,6.152142304927111e-06,-0.0013507686089724302,0.00024034541274886578,1.6752757801441476e-05,-7.823348823876586e-06,-1.3960631122245104e-06,9.832014971440904e-22,-0.0006181483622640371,1.6752757801441476e-05,4.735643960884772e-05,1.6940658945086007e-21,-5.983127380204678e-07,-6.711428000016895e-07,2.9989503673277795e-05,-7.823348823876586e-06,1.6940658945086007e-21,3.2597287713542755e-07,-3.3087224502121107e-23,-2.3893945220036735e-23,1.6752757801441476e-05,-1.3960631122245104e-06,-5.983127380204678e-07,-3.3087224502121107e-23,4.9859394835038984e-08,-1.7558006911362442e-23,6.152142304927111e-06,9.832014971440904e-22,-6.711428000016895e-07,-2.3893945220036735e-23,-1.7558006911362442e-23,1.198469323782092e-08,25.0,58.0,0.015954282134771347,-0.0013277585385367274,-0.0005974913365207613,2.947244320239406e-05,1.6184867490665056e-05,5.844535280630225e-06,-0.0013277585385367274,0.0002362247760174796,1.6184867490665056e-05,-7.688463483646046e-06,-1.3487389196598087e-06,-8.633432081387093e-22,-0.0005974913365207613,1.6184867490665056e-05,4.496895053307526e-05,2.117582368135751e-22,-5.678900834027445e-07,-6.262002330004179e-07,2.947244320239406e-05,-7.688463483646046e-06,2.117582368135751e-22,3.2035265462582174e-07,-2.2499312661442353e-22,3.8242266434672133e-23,1.6184867490665056e-05,-1.3487389196598087e-06,-5.678900834027445e-07,-2.2499312661442353e-22,4.732417124841959e-08,-1.8380409787843e-24,5.844535280630225e-06,-8.633432081387093e-22,-6.262002330004179e-07,3.8242266434672133e-23,-1.8380409787843e-24,1.0985968579291239e-08,25.0,59.0,0.01569357141852379,-0.0013055193703621626,-0.0005778528284281492,2.8972910513402894e-05,1.5645371604477987e-05,5.55709902982926e-06,-0.0013055193703621626,0.00023224306642077863,1.5645371604477987e-05,-7.55815062802867e-06,-1.3037810049354448e-06,-2.1338712729777336e-22,-0.0005778528284281492,1.5645371604477987e-05,4.27393133577425e-05,2.117582368135751e-22,-5.39495545126556e-07,-5.849578315064718e-07,2.8972910513402894e-05,-7.55815062802867e-06,2.117582368135751e-22,3.1492294283452793e-07,-7.940933880509066e-23,1.764116547254722e-23,1.5645371604477987e-05,-1.3037810049354448e-06,-5.39495545126556e-07,-7.940933880509066e-23,4.495796446235545e-08,-7.529973952034921e-24,5.55709902982926e-06,-2.1338712729777336e-22,-5.849578315064718e-07,1.764116547254722e-23,-7.529973952034921e-24,1.008547911851565e-08,25.0,60.0,0.01544124260544777,-0.0012840129202231765,-0.0005591668887063861,2.8490028853411786e-05,1.513240840722574e-05,5.288207375997445e-06,-0.0012840129202231765,0.0002283933717990294,1.513240840722574e-05,-7.432181519106962e-06,-1.2610340718310908e-06,-2.5652759012732125e-21,-0.0005591668887063861,1.513240840722574e-05,4.0654696931596845e-05,-1.122318655111948e-20,-5.129630267219909e-07,-5.470559472087189e-07,2.8490028853411786e-05,-7.432181519106962e-06,-1.122318655111948e-20,3.0967422048888693e-07,4.334426409777865e-22,8.480912325576469e-23,1.513240840722574e-05,-1.2610340718310908e-06,-5.129630267219909e-07,4.334426409777865e-22,4.274691534078556e-08,1.4730906131893105e-23,5.288207375997445e-06,-2.5652759012732125e-21,-5.470559472087189e-07,8.480912325576469e-23,1.4730906131893105e-23,9.272134171567359e-09,25.0,61.0,0.015196899883449078,-0.00126320356503129,-0.0005413729813881218,2.802297967718914e-05,1.4644266229879577e-05,5.036387847212609e-06,-0.00126320356503129,0.0002246692165499553,1.4644266229879577e-05,-7.310342425626004e-06,-1.220355557052244e-06,2.8333306349189206e-22,-0.0005413729813881218,1.4644266229879577e-05,3.8703492464264855e-05,6.564505341220828e-21,-4.881422341895814e-07,-5.121750632497424e-07,2.802297967718914e-05,-7.310342425626004e-06,6.564505341220828e-21,3.0459759159384703e-07,-4.036641389258775e-22,-2.5106467029850312e-23,1.4644266229879577e-05,-1.220355557052244e-06,-4.881422341895814e-07,-4.036641389258775e-22,4.0678518331560554e-08,1.1547163703756065e-23,5.036387847212609e-06,2.8333306349189206e-22,-5.121750632497424e-07,-2.5106467029850312e-23,1.1547163703756065e-23,8.536250817314794e-09,25.0,62.0,0.014960169792175293,-0.0012430580100044608,-0.0005244151107035577,2.7570995371206664e-05,1.4179368918121327e-05,4.800307124241954e-06,-0.0012430580100044608,0.00022106457618065178,1.4179368918121327e-05,-7.192433713498758e-06,-1.181614038614498e-06,-6.607992504000599e-21,-0.0005244151107035577,1.4179368918121327e-05,3.687519711093046e-05,-1.4823076576950256e-20,-4.6489734017995943e-07,-4.800307351615629e-07,2.7570995371206664e-05,-7.192433713498758e-06,-1.4823076576950256e-20,2.996847285885451e-07,1.522012327097571e-22,2.0699217903794492e-22,1.4179368918121327e-05,-1.181614038614498e-06,-4.6489734017995943e-07,1.522012327097571e-22,3.8741443830758726e-08,4.010019479409228e-23,4.800307124241954e-06,-6.607992504000599e-21,-4.800307351615629e-07,2.0699217903794492e-22,4.010019479409228e-23,7.869355833634017e-09,25.0,63.0,0.014730701223015785,-0.0012235449394211173,-0.0005082417628727853,2.713336107262876e-05,1.3736264008912258e-05,4.578754669637419e-06,-0.0012235449394211173,0.000217573789996095,1.3736264008912258e-05,-7.078268026816659e-06,-1.1446886674093548e-06,5.89818995127984e-21,-0.0005082417628727853,1.3736264008912258e-05,3.516028300509788e-05,9.105604182983729e-21,-4.4310527869129146e-07,-4.503692991875141e-07,2.713336107262876e-05,-7.078268026816659e-06,9.105604182983729e-21,2.9492784392459725e-07,1.4558378780933287e-22,-1.7274537949224686e-22,1.3736264008912258e-05,-1.1446886674093548e-06,-4.4310527869129146e-07,1.4558378780933287e-22,3.692543870670306e-08,-4.4046802794040585e-23,4.578754669637419e-06,5.89818995127984e-21,-4.503692991875141e-07,-1.7274537949224686e-22,-4.4046802794040585e-23,7.264020940311866e-09,25.0,64.0,0.01450816635042429,-0.001204635133035481,-0.0004928052658215165,2.6709401936386712e-05,1.3313609088072553e-05,4.3706295400625095e-06,-0.001204635133035481,0.00021419153199531138,1.3313609088072553e-05,-6.9676698331022635e-06,-1.1094674619016587e-06,-3.6202779276669345e-21,-0.0004928052658215165,1.3313609088072553e-05,3.3550091757206246e-05,-1.0905549195899117e-20,-4.226542671403877e-07,-4.2296412061659794e-07,2.6709401936386712e-05,-6.9676698331022635e-06,-1.0905549195899117e-20,2.90319576379261e-07,2.713152409173931e-22,1.0905603166606808e-22,1.3313609088072553e-05,-1.1094674619016587e-06,-4.226542671403877e-07,2.713152409173931e-22,3.5221187744127747e-08,2.4483085476717512e-23,4.3706295400625095e-06,-3.6202779276669345e-21,-4.2296412061659794e-07,1.0905603166606808e-22,2.4483085476717512e-23,6.713716249606705e-09,26.0,3.0,0.17836792767047882,-0.01984127052128315,-0.1111111119389534,0.000508750497829169,0.004273504484444857,0.01923076994717121,-0.01984127052128315,0.0037494911812245846,0.004273504484444857,-0.00012718762445729226,-0.0003418803389649838,1.431146867680866e-17,-0.1111111119389534,0.004273504484444857,0.3034188151359558,7.3271152011822e-19,-0.004273504484444857,-0.11538461595773697,0.000508750497829169,-0.00012718762445729226,7.3271152011822e-19,5.0875050874310546e-06,-1.6718464015387485e-20,-2.546739179564747e-19,0.004273504484444857,-0.0003418803389649838,-0.004273504484444857,-1.6718464015387485e-20,0.0003418803389649838,-6.938893903907228e-18,0.01923076994717121,1.431146867680866e-17,-0.11538461595773697,-2.546739179564747e-19,-6.938893903907228e-18,0.057692307978868484,26.0,4.0,0.14948107302188873,-0.01552197802811861,-0.0724359005689621,0.000381562887923792,0.0025641026441007853,0.009615384973585606,-0.01552197802811861,0.0028634003829210997,0.0025641026441007853,-9.5390721980948e-05,-0.00020512820628937334,5.421010862427522e-19,-0.0724359005689621,0.0025641026441007853,0.11559829115867615,1.502131428815771e-19,-0.0017094017239287496,-0.028846153989434242,0.000381562887923792,-9.5390721980948e-05,1.502131428815771e-19,3.815629042946966e-06,1.6238947858576957e-21,-5.006326803661363e-20,0.0025641026441007853,-0.00020512820628937334,-0.0017094017239287496,1.6238947858576957e-21,0.00013675213267561048,6.505213034913027e-19,0.009615384973585606,5.421010862427522e-19,-0.028846153989434242,-5.006326803661363e-20,6.505213034913027e-19,0.009615384973585606,26.0,5.0,0.12869353592395782,-0.012759462930262089,-0.051037851721048355,0.0003052503161597997,0.0017094017239287496,0.005494505632668734,-0.012759462930262089,0.002318070735782385,0.0017094017239287496,-7.631257903994992e-05,-0.00013675213267561048,-1.6263032587282567e-18,-0.051037851721048355,0.0017094017239287496,0.058485958725214005,-6.7540726809568205e-21,-0.0008547008619643748,-0.010989011265337467,0.0003052503161597997,-7.631257903994992e-05,-6.7540726809568205e-21,3.0525029615091626e-06,-6.835856125055166e-21,2.4948411893865738e-20,0.0017094017239287496,-0.00013675213267561048,-0.0008547008619643748,-6.835856125055166e-21,6.837606633780524e-05,3.5236570605778894e-19,0.005494505632668734,-1.6263032587282567e-18,-0.010989011265337467,2.4948411893865738e-20,3.5236570605778894e-19,0.002747252816334367,26.0,6.0,0.11299348622560501,-0.010836386121809483,-0.037927351891994476,0.0002543752489145845,0.0012210012646391988,0.0034340659622102976,-0.010836386121809483,0.0019480057526379824,0.0012210012646391988,-6.359381222864613e-05,-9.76800947682932e-05,1.5720931501039814e-18,-0.037927351891994476,0.0012210012646391988,0.03405830264091492,3.357962444125861e-19,-0.0004884005174972117,-0.005151099059730768,0.0002543752489145845,-6.359381222864613e-05,3.357962444125861e-19,2.5437525437155273e-06,-6.735004713809053e-21,-4.808763761641022e-20,0.0012210012646391988,-9.76800947682932e-05,-0.0004884005174972117,-6.735004713809053e-21,3.907203790731728e-05,-5.421010862427522e-20,0.0034340659622102976,1.5720931501039814e-18,-0.005151099059730768,-4.808763761641022e-20,-5.421010862427522e-20,0.001030219835229218,26.0,7.0,0.10071079432964325,-0.0094191525131464,-0.029304029420018196,0.00021803592971991748,0.0009157509193755686,0.002289377385750413,-0.0094191525131464,0.001680184854194522,0.0009157509193755686,-5.450898242997937e-05,-7.326007471419871e-05,7.318364664277155e-19,-0.029304029420018196,0.0009157509193755686,0.021672772243618965,1.3062130544977329e-19,-0.0003052503161597997,-0.002747252816334367,0.00021803592971991748,-5.450898242997937e-05,1.3062130544977329e-19,2.180359388148645e-06,-3.5065894649516935e-21,-1.3686076435317772e-20,0.0009157509193755686,-7.326007471419871e-05,-0.0003052503161597997,-3.5065894649516935e-21,2.44200236920733e-05,-1.2874900798265365e-19,0.002289377385750413,7.318364664277155e-19,-0.002747252816334367,-1.3686076435317772e-20,-1.2874900798265365e-19,0.0004578754596877843,26.0,8.0,0.09083740413188934,-0.008330789394676685,-0.02332621067762375,0.000190781443961896,0.0007122507086023688,0.0016025641234591603,-0.008330789394676685,0.0014772842405363917,0.0007122507086023688,-4.7695360990474e-05,-5.698005770682357e-05,-5.963111948670274e-19,-0.02332621067762375,0.0007122507086023688,0.01467745192348957,-8.168679967599642e-20,-0.0002035002107731998,-0.0016025641234591603,0.000190781443961896,-4.7695360990474e-05,-8.168679967599642e-20,1.907814521473483e-06,7.7755285551282e-22,9.550418941796985e-21,0.0007122507086023688,-5.698005770682357e-05,-0.0002035002107731998,7.7755285551282e-22,1.6280017007375136e-05,6.606856988583543e-20,0.0016025641234591603,-5.963111948670274e-19,-0.0016025641234591603,9.550418941796985e-21,6.606856988583543e-20,0.00022893772984389216,26.0,9.0,0.08272714912891388,-0.007468457333743572,-0.019010618329048157,0.0001695835089776665,0.0005698005552403629,0.0011655011912807822,-0.007468457333743572,0.0013182064285501838,0.0005698005552403629,-4.2395877244416624e-05,-4.5584045437863097e-05,1.3552527156068805e-19,-0.019010618329048157,0.0005698005552403629,0.010413660667836666,1.9496894222706348e-20,-0.00014245013881009072,-0.0009990009712055326,0.0001695835089776665,-4.2395877244416624e-05,1.9496894222706348e-20,1.6958350670392974e-06,4.372122096579415e-22,-3.491878736304034e-21,0.0005698005552403629,-4.5584045437863097e-05,-0.00014245013881009072,4.372122096579415e-22,1.1396011359465774e-05,-1.1858461261560205e-20,0.0011655011912807822,1.3552527156068805e-19,-0.0009990009712055326,-3.491878736304034e-21,-1.1858461261560205e-20,0.00012487512140069157,26.0,10.0,0.07594627887010574,-0.006768231745809317,-0.015792541205883026,0.00015262515807989985,0.0004662004648707807,0.0008741258643567562,-0.006768231745809317,0.0011901154648512602,0.0004662004648707807,-3.815628951997496e-05,-3.729603849933483e-05,4.0657581468206416e-20,-0.015792541205883026,0.0004662004648707807,0.007661551237106323,2.2034946067134727e-20,-0.0001036001049214974,-0.0006555943982675672,0.00015262515807989985,-3.815628951997496e-05,2.2034946067134727e-20,1.5262514807545813e-06,-1.0184711779157087e-21,-5.892309315086666e-22,0.0004662004648707807,-3.729603849933483e-05,-0.0001036001049214974,-1.0184711779157087e-21,8.288007848022971e-06,-6.776263578034403e-21,0.0008741258643567562,4.0657581468206416e-20,-0.0006555943982675672,-5.892309315086666e-22,-6.776263578034403e-21,7.284382445504889e-05,26.0,11.0,0.07019262760877609,-0.006188256200402975,-0.01332855224609375,0.0001387501397402957,0.0003885003970935941,0.0006724045379087329,-0.006188256200402975,0.0010847485391423106,0.0003885003970935941,-3.468753493507393e-05,-3.108003147644922e-05,4.946672411965114e-19,-0.01332855224609375,0.0003885003970935941,0.005803598091006279,6.388926562683644e-20,-7.770007505314425e-05,-0.00044826968223787844,0.0001387501397402957,-3.468753493507393e-05,6.388926562683644e-20,1.3875013564756955e-06,-1.4476689646733882e-21,-4.46333087601689e-21,0.0003885003970935941,-3.108003147644922e-05,-7.770007505314425e-05,-1.4476689646733882e-21,6.216006113390904e-06,-6.733911930671688e-20,0.0006724045379087329,4.946672411965114e-19,-0.00044826968223787844,-4.46333087601689e-21,-6.733911930671688e-20,4.482696749619208e-05,26.0,12.0,0.06524921208620071,-0.005699962377548218,-0.011399924755096436,0.00012718762445729226,0.0003287311119493097,0.0005283178179524839,-0.005699962377548218,0.0009965443750843406,0.0003287311119493097,-3.1796906114323065e-05,-2.6298488592146896e-05,3.8624702394796095e-19,-0.011399924755096436,0.0003287311119493097,0.004502975847572088,1.265712353002576e-19,-5.9769288782263175e-05,-0.0003169907140545547,0.00012718762445729226,-3.1796906114323065e-05,1.265712353002576e-19,1.2718762718577636e-06,-2.568535954161016e-21,-7.998711315384901e-21,0.0003287311119493097,-2.6298488592146896e-05,-5.9769288782263175e-05,-2.568535954161016e-21,4.7815433390496764e-06,-2.414043899674756e-20,0.0005283178179524839,3.8624702394796095e-19,-0.0003169907140545547,-7.998711315384901e-21,-2.414043899674756e-20,2.8817335987696424e-05,26.0,13.0,0.060956139117479324,-0.005283178295940161,-0.009861933067440987,0.00011740396439563483,0.0002817695203702897,0.0004226542660035193,-0.005283178295940161,0.0009216211037710309,0.0002817695203702897,-2.9350991098908707e-05,-2.254156061098911e-05,-1.5585406229479126e-19,-0.009861933067440987,0.0002817695203702897,0.003564811311662197,-2.519712830195424e-20,-4.696158430306241e-05,-0.0002305386879015714,0.00011740396439563483,-2.9350991098908707e-05,-2.519712830195424e-20,1.1740396530512953e-06,1.1739916343920482e-21,5.527651608998905e-22,0.0002817695203702897,-2.254156061098911e-05,-4.696158430306241e-05,1.1739916343920482e-21,3.75692684428941e-06,2.244637310223896e-20,0.0004226542660035193,-1.5585406229479126e-19,-0.0002305386879015714,5.527651608998905e-22,2.244637310223896e-20,1.9211558537790552e-05,26.0,14.0,0.057193003594875336,-0.004923251457512379,-0.008615690283477306,0.00010901796485995874,0.00024420025874860585,0.00034340660204179585,-0.004923251457512379,0.0008571864455007017,0.00024420025874860585,-2.7254491214989685e-05,-1.953601895365864e-05,5.759824041329242e-20,-0.008615690283477306,0.00024420025874860585,0.002870820462703705,4.045219833822318e-20,-3.756926889764145e-05,-0.00017170330102089792,0.00010901796485995874,-2.7254491214989685e-05,4.045219833822318e-20,1.0901796940743225e-06,-7.271871790492069e-22,-2.5633119531635743e-21,0.00024420025874860585,-1.953601895365864e-05,-3.756926889764145e-05,-7.271871790492069e-22,3.005541429956793e-06,-1.0587911840678754e-21,0.00034340660204179585,5.759824041329242e-20,-0.00017170330102089792,-2.5633119531635743e-21,-1.0587911840678754e-21,1.3207945812609978e-05,26.0,15.0,0.0538674034178257,-0.004609279800206423,-0.007591754663735628,0.0001017501053865999,0.0002136752154910937,0.00028280544211156666,-0.004609279800206423,0.0008011803147383034,0.0002136752154910937,-2.5437526346649975e-05,-1.709401658445131e-05,-1.6263032587282567e-19,-0.007591754663735628,0.0002136752154910937,0.002346283756196499,-1.1404394681465998e-19,-3.052503234357573e-05,-0.00013052558642812073,0.0001017501053865999,-2.5437526346649975e-05,-1.1404394681465998e-19,1.017501062960946e-06,2.1243444080846585e-21,5.76941755928901e-21,0.0002136752154910937,-1.709401658445131e-05,-3.052503234357573e-05,2.1243444080846585e-21,2.44200236920733e-06,0.0,0.00028280544211156666,-1.6263032587282567e-19,-0.00013052558642812073,5.76941755928901e-21,0.0,9.323255653725937e-06,26.0,16.0,0.05090722069144249,-0.004332983400672674,-0.006740196142345667,9.5390721980948e-05,0.0001885369565570727,0.00023567119205836207,-0.004332983400672674,0.0007520492072217166,0.0001885369565570727,-2.3847680495237e-05,-1.508295645180624e-05,-0.0,-0.006740196142345667,0.0001885369565570727,0.0019423795165494084,1.6940658945086007e-21,-2.51382607530104e-05,-0.00010100194049300626,9.5390721980948e-05,-2.3847680495237e-05,1.6940658945086007e-21,9.539072607367416e-07,-1.0587911840678754e-22,-0.0,0.0001885369565570727,-1.508295645180624e-05,-2.51382607530104e-05,-1.0587911840678754e-22,2.011060814766097e-06,-0.0,0.00023567119205836207,-0.0,-0.00010100194049300626,-0.0,-0.0,6.7334626692172606e-06,26.0,17.0,0.04825538024306297,-0.004087959881871939,-0.006024362053722143,8.977950346888974e-05,0.00016758839774411172,0.00019845995120704174,-0.004087959881871939,0.0007085996912792325,0.00016758839774411172,-2.2444875867222436e-05,-1.3407072401605546e-05,-2.5547995376461934e-19,-0.006024362053722143,0.00016758839774411172,0.001626269076950848,-1.830278501459532e-19,-2.0948549718013965e-05,-7.938397902762517e-05,8.977950346888974e-05,-2.2444875867222436e-05,-1.830278501459532e-19,8.977950187727401e-07,2.80579663777987e-21,8.42168575952863e-21,0.00016758839774411172,-1.3407072401605546e-05,-2.0948549718013965e-05,2.80579663777987e-21,1.6758840502006933e-06,4.8338128746965306e-21,0.00019845995120704174,-2.5547995376461934e-19,-7.938397902762517e-05,8.42168575952863e-21,4.8338128746965306e-21,4.961498689226573e-06,26.0,18.0,0.045866090804338455,-0.0038691814988851547,-0.0054168542847037315,8.479175448883325e-05,0.00014994751836638898,0.0001686909527052194,-0.0038691814988851547,0.000669899454806,0.00014994751836638898,-2.1197938622208312e-05,-1.1995801287412178e-05,-2.336533715857299e-19,-0.0054168542847037315,0.00014994751836638898,0.0013752998784184456,-1.6618181290812502e-19,-1.764088483469095e-05,-6.325911090243608e-05,8.479175448883325e-05,-2.1197938622208312e-05,-1.6618181290812502e-19,8.479175335196487e-07,2.6999175193730823e-21,7.134650887532939e-21,0.00014994751836638898,-1.1995801287412178e-05,-1.764088483469095e-05,2.6999175193730823e-21,1.4112707731328555e-06,5.877635643968891e-21,0.0001686909527052194,-2.336533715857299e-19,-6.325911090243608e-05,7.134650887532939e-21,5.877635643968891e-21,3.7211241306067677e-06,26.0,19.0,0.043702203780412674,-0.0036726430989801884,-0.004896857310086489,8.032903133425862e-05,0.0001349527738057077,0.00014459225349128246,-0.0036726430989801884,0.0006352098425850272,0.0001349527738057077,-2.0082257833564654e-05,-1.079622143151937e-05,-0.0,-0.004896857310086489,0.0001349527738057077,0.0011734968284144998,8.470329472543003e-22,-1.4994751836638898e-05,-5.1032558985752985e-05,8.032903133425862e-05,-2.0082257833564654e-05,8.470329472543003e-22,8.032902769627981e-07,0.0,-0.0,0.0001349527738057077,-1.079622143151937e-05,-1.4994751836638898e-05,0.0,1.1995801969533204e-06,-0.0,0.00014459225349128246,-0.0,-5.1032558985752985e-05,-0.0,-0.0,2.835142140611424e-06,26.0,20.0,0.0417332649230957,-0.0034951160196214914,-0.00444832956418395,7.631257903994992e-05,0.00012210012937430292,0.00012487512140069157,-0.0034951160196214914,0.0006039377185516059,0.00012210012937430292,-1.907814475998748e-05,-9.76800947682932e-06,-0.0,-0.00444832956418395,0.00012210012937430292,0.0010093707824125886,0.0,-1.285264443140477e-05,-4.162504046689719e-05,7.631257903994992e-05,-1.907814475998748e-05,0.0,7.631257403772906e-07,-5.293955920339377e-23,-0.0,0.00012210012937430292,-9.76800947682932e-06,-1.285264443140477e-05,-5.293955920339377e-23,1.0282114999426994e-06,-0.0,0.00012487512140069157,-0.0,-4.162504046689719e-05,-0.0,-0.0,2.1907917471253313e-06,26.0,21.0,0.03993407264351845,-0.0033339676447212696,-0.0040587433613836765,7.26786456652917e-05,0.00011100011033704504,0.00010858706809813157,-0.0033339676447212696,0.0005756016471423209,0.00011100011033704504,-1.8169661416322924e-05,-8.880008863343392e-06,-1.6940658945086007e-21,-0.0040587433613836765,0.00011100011033704504,0.0008745132363401353,-0.0,-1.1100010851805564e-05,-3.4290653275093064e-05,7.26786456652917e-05,-1.8169661416322924e-05,-0.0,7.267864248206024e-07,0.0,0.0,0.00011100011033704504,-8.880008863343392e-06,-1.1100010851805564e-05,0.0,8.880008977030229e-07,5.293955920339377e-23,0.00010858706809813157,-1.6940658945086007e-21,-3.4290653275093064e-05,0.0,5.293955920339377e-23,1.714532572805183e-06,26.0,22.0,0.0382835753262043,-0.0031870303209871054,-0.0037182020023465157,6.937506987014785e-05,0.00010134792682947591,9.501368185738102e-05,-0.0031870303209871054,0.0005498064565472305,0.00010134792682947591,-1.7343767467536964e-05,-8.107834219117649e-06,-1.0587911840678754e-20,-0.0037182020023465157,0.00010134792682947591,0.0007626733276993036,6.615136630306672e-22,-9.652183507569134e-06,-2.8504104193416424e-05,6.937506987014785e-05,-1.7343767467536964e-05,6.615136630306672e-22,6.937506782378478e-07,-3.4841714264205055e-23,1.7464098542622217e-24,0.00010134792682947591,-8.107834219117649e-06,-9.652183507569134e-06,-3.4841714264205055e-23,7.721747010691615e-07,1.0058516248644817e-21,9.501368185738102e-05,-1.0587911840678754e-20,-2.8504104193416424e-05,1.7464098542622217e-24,1.0058516248644817e-21,1.3573383057519095e-06,26.0,23.0,0.036764081567525864,-0.003052503103390336,-0.003418803447857499,6.63587634335272e-05,9.290226444136351e-05,8.361203799722716e-05,-0.003052503103390336,0.0005262249615043402,9.290226444136351e-05,-1.65896908583818e-05,-7.432181519106962e-06,-2.964615315390051e-21,-0.003418803447857499,9.290226444136351e-05,0.0006691376329399645,-5.803843802602541e-22,-8.445660569122992e-06,-2.3889153453637846e-05,6.63587634335272e-05,-1.65896908583818e-05,-5.803843802602541e-22,6.635876275140618e-07,6.026500361081023e-23,-5.7492411542169854e-24,9.290226444136351e-05,-7.432181519106962e-06,-8.445660569122992e-06,6.026500361081023e-23,6.756528705409437e-07,2.6469779601696886e-22,8.361203799722716e-05,-2.964615315390051e-21,-2.3889153453637846e-05,-5.7492411542169854e-24,2.6469779601696886e-22,1.08587062186416e-06,26.0,24.0,0.035360585898160934,-0.0029288767836987972,-0.003154174890369177,6.359381222864613e-05,8.547008474124596e-05,7.396449655061588e-05,-0.0029288767836987972,0.0005045838188380003,8.547008474124596e-05,-1.5898453057161532e-05,-6.837606633780524e-06,-1.6940658945086007e-21,-0.003154174890369177,8.547008474124596e-05,0.0005903061828576028,-0.0,-7.432181519106962e-06,-2.017213591898326e-05,6.359381222864613e-05,-1.5898453057161532e-05,-0.0,6.359381359288818e-07,2.6469779601696886e-23,-1.3234889800848443e-23,8.547008474124596e-05,-6.837606633780524e-06,-7.432181519106962e-06,2.6469779601696886e-23,5.945744874225056e-07,2.117582368135751e-22,7.396449655061588e-05,-1.6940658945086007e-21,-2.017213591898326e-05,-1.3234889800848443e-23,2.117582368135751e-22,8.770493877818808e-07,26.0,25.0,0.03406029939651489,-0.0028148775454610586,-0.002919132122769952,6.105006468715146e-05,7.889546395745128e-05,6.574622238986194e-05,-0.0028148775454610586,0.0004846529627684504,7.889546395745128e-05,-1.5262516171787865e-05,-6.311637207545573e-06,1.2705494208814505e-21,-0.002919132122769952,7.889546395745128e-05,0.0005233970587141812,4.539745825043507e-22,-6.574622148036724e-06,-1.7151187421404757e-05,6.105006468715146e-05,-1.5262516171787865e-05,4.539745825043507e-22,6.105005923018325e-07,-3.217235411134371e-23,-1.6413942253688718e-24,7.889546395745128e-05,-6.311637207545573e-06,-6.574622148036724e-06,-3.217235411134371e-23,5.259697672954644e-07,-1.3234889800848443e-22,6.574622238986194e-05,1.2705494208814505e-21,-1.7151187421404757e-05,-1.6413942253688718e-24,-1.3234889800848443e-22,7.146328471208108e-07,26.0,26.0,0.032852236181497574,-0.002709422493353486,-0.002709422493353486,5.8701982197817415e-05,7.305135659407824e-05,5.8701982197817415e-05,-0.002709422493353486,0.00046623722300864756,7.305135659407824e-05,-1.4675495549454354e-05,-5.844108272867743e-06,-3.8116482626443515e-21,-0.002709422493353486,7.305135659407824e-05,0.00046623722300864756,-0.0,-5.844108272867743e-06,-1.4675495549454354e-05,5.8701982197817415e-05,-1.4675495549454354e-05,-0.0,5.870198265256477e-07,2.6469779601696886e-23,0.0,7.305135659407824e-05,-5.844108272867743e-06,-5.844108272867743e-06,2.6469779601696886e-23,4.675286788824451e-07,3.1763735522036263e-22,5.8701982197817415e-05,-3.8116482626443515e-21,-1.4675495549454354e-05,0.0,3.1763735522036263e-22,5.870198265256477e-07,26.0,27.0,0.03172693029046059,-0.0026115858927369118,-0.0025215311907231808,5.652783511322923e-05,6.78334035910666e-05,5.262936247163452e-05,-0.0026115858927369118,0.00044917018385604024,6.78334035910666e-05,-1.4131958778307308e-05,-5.426672032626811e-06,-4.235164736271502e-22,-0.0025215311907231808,6.78334035910666e-05,0.0004171124310232699,-0.0,-5.217953912506346e-06,-1.2631046956812497e-05,5.652783511322923e-05,-1.4131958778307308e-05,-0.0,5.652783556797658e-07,0.0,0.0,6.78334035910666e-05,-5.426672032626811e-06,-5.217953912506346e-06,0.0,4.174363255060598e-07,2.6469779601696886e-23,5.262936247163452e-05,-4.235164736271502e-22,-1.2631046956812497e-05,0.0,2.6469779601696886e-23,4.858094939663715e-07,26.0,28.0,0.03067615255713463,-0.002520570531487465,-0.0023525324650108814,5.450898242997937e-05,6.315523205557838e-05,4.736642586067319e-05,-0.002520570531487465,0.000433308829087764,6.315523205557838e-05,-1.3627245607494842e-05,-5.052419055573409e-06,-4.446922973085077e-21,-0.0023525324650108814,6.315523205557838e-05,0.0003746580914594233,-1.5039390769481408e-20,-4.6781656237726565e-06,-1.0930713870038744e-05,5.450898242997937e-05,-1.3627245607494842e-05,-1.5039390769481408e-20,5.450898470371612e-07,3.7307771708927736e-22,3.2628024151570887e-22,6.315523205557838e-05,-5.052419055573409e-06,-4.6781656237726565e-06,3.7307771708927736e-22,3.742532612704963e-07,-3.970466940254533e-22,4.736642586067319e-05,-4.446922973085077e-21,-1.0930713870038744e-05,3.2628024151570887e-22,-3.970466940254533e-22,4.0484124497197627e-07,26.0,29.0,0.029692739248275757,-0.0024356869980692863,-0.0021999753080308437,5.262936247163452e-05,5.894488640478812e-05,4.2782579839695245e-05,-0.0024356869980692863,0.00041852975846268237,5.894488640478812e-05,-1.315734061790863e-05,-4.715590876003262e-06,-1.2705494208814505e-21,-0.0021999753080308437,5.894488640478812e-05,0.00033777864882722497,2.929762759021565e-22,-4.2103488340217154e-06,-9.507240065431688e-06,5.262936247163452e-05,-1.315734061790863e-05,2.929762759021565e-22,5.262936042527144e-07,-3.6518954822145235e-24,-1.6287710703787515e-24,5.894488640478812e-05,-4.715590876003262e-06,-4.2103488340217154e-06,-3.6518954822145235e-24,3.368279237747629e-07,1.0587911840678754e-22,4.2782579839695245e-05,-1.2705494208814505e-21,-9.507240065431688e-06,-1.6287710703787515e-24,1.0587911840678754e-22,3.395442718101549e-07,26.0,30.0,0.028770415112376213,-0.0023563355207443237,-0.0020617935806512833,5.087505269329995e-05,5.514199074241333e-05,3.877171184285544e-05,-0.0023563355207443237,0.00040472581167705357,5.514199074241333e-05,-1.2718763173324987e-05,-4.4113594412920065e-06,2.117582368135751e-21,-0.0020617935806512833,5.514199074241333e-05,0.0003055877168662846,-0.0,-3.80289588974847e-06,-8.30822409625398e-06,5.087505269329995e-05,-1.2718763173324987e-05,-0.0,5.08750531480473e-07,2.6469779601696886e-23,-1.3234889800848443e-23,5.514199074241333e-05,-4.4113594412920065e-06,-3.80289588974847e-06,2.6469779601696886e-23,3.042316620849306e-07,-1.1911400820763599e-22,3.877171184285544e-05,2.117582368135751e-21,-8.30822409625398e-06,-1.3234889800848443e-23,-1.1911400820763599e-22,2.8649048999795923e-07,26.0,31.0,0.027903659269213676,-0.002281992230564356,-0.0019362358143553138,4.9233920435654e-05,5.169561700313352e-05,3.524701241985895e-05,-0.002281992230564356,0.00039180353633128107,5.169561700313352e-05,-1.23084801089135e-05,-4.1356493056809995e-06,-3.1763735522036263e-21,-0.0019362358143553138,5.169561700313352e-05,0.00027736290940083563,-2.405739751514289e-22,-3.446374421400833e-06,-7.2924849519040436e-06,4.9233920435654e-05,-1.23084801089135e-05,-2.405739751514289e-22,4.923392111777503e-07,2.989253307905005e-24,6.325222422137771e-24,5.169561700313352e-05,-4.1356493056809995e-06,-3.446374421400833e-06,2.989253307905005e-24,2.757099650807504e-07,1.9852334701272664e-22,3.524701241985895e-05,-3.1763735522036263e-21,-7.2924849519040436e-06,6.325222422137771e-24,1.9852334701272664e-22,2.4308283741447667e-07,26.0,32.0,0.02708759717643261,-0.00221219751983881,-0.0018218096811324358,4.7695360990474e-05,4.856254963669926e-05,3.213698073523119e-05,-0.00221219751983881,0.0003796810924541205,4.856254963669926e-05,-1.19238402476185e-05,-3.885003934556153e-06,-2.117582368135751e-22,-0.0018218096811324358,4.856254963669926e-05,0.0002525114396121353,4.3803752224787095e-22,-3.1330675938079366e-06,-6.4273963289451785e-06,4.7695360990474e-05,-1.19238402476185e-05,4.3803752224787095e-22,4.769536303683708e-07,-1.8669895313218785e-23,-4.5323100063736755e-24,4.856254963669926e-05,-3.885003934556153e-06,-3.1330675938079366e-06,-1.8669895313218785e-23,2.506453995465563e-07,2.6469779601696886e-23,3.213698073523119e-05,-2.117582368135751e-22,-6.4273963289451785e-06,-4.5323100063736755e-24,2.6469779601696886e-23,2.0733536132411245e-07,26.0,33.0,0.026317909359931946,-0.0021465462632477283,-0.0017172370571643114,4.625004658009857e-05,4.570592864183709e-05,2.9382383218035102e-05,-0.0021465462632477283,0.0003682863898575306,4.570592864183709e-05,-1.1562511645024642e-05,-3.6564742913469672e-06,-1.4823076576950256e-21,-0.0017172370571643114,4.570592864183709e-05,0.00023054375196807086,-1.9996482938939338e-22,-2.856620540114818e-06,-5.686912572855363e-06,4.625004658009857e-05,-1.1562511645024642e-05,-1.9996482938939338e-22,4.6250045215856517e-07,2.4777233564473607e-24,4.932610372979931e-24,4.570592864183709e-05,-3.6564742913469672e-06,-2.856620540114818e-06,2.4777233564473607e-24,2.2852964320918545e-07,7.940933880509066e-23,2.9382383218035102e-05,-1.4823076576950256e-21,-5.686912572855363e-06,4.932610372979931e-24,7.940933880509066e-23,1.7771601790173008e-07,26.0,34.0,0.025590749457478523,-0.0020846801344305277,-0.001621417817659676,4.488975173444487e-05,4.309416181058623e-05,2.6933850676869042e-05,-0.0020846801344305277,0.00035755583667196333,4.309416181058623e-05,-1.1222437933611218e-05,-3.447532890277216e-06,-3.494010907423989e-20,-0.001621417817659676,4.309416181058623e-05,0.00021105325140524656,-4.711083101703886e-20,-2.611767285998212e-06,-5.050097115599783e-06,4.488975173444487e-05,-1.1222437933611218e-05,-4.711083101703886e-20,4.488975093863701e-07,5.633097952002201e-22,1.1106672830403844e-21,4.309416181058623e-05,-3.447532890277216e-06,-2.611767285998212e-06,5.633097952002201e-22,2.089413868588963e-07,3.5734202462290796e-22,2.6933850676869042e-05,-3.494010907423989e-20,-5.050097115599783e-06,1.1106672830403844e-21,3.5734202462290796e-22,1.5303324119031458e-07,26.0,35.0,0.024902688339352608,-0.0020262806210666895,-0.0015334015479311347,4.3607185943983495e-05,4.0700040699448436e-05,2.475002474966459e-05,-0.0020262806210666895,0.00034743300057016313,4.0700040699448436e-05,-1.0901796485995874e-05,-3.256003310525557e-06,-1.0587911840678754e-22,-0.0015334015479311347,4.0700040699448436e-05,0.00019370019435882568,-0.0,-2.3941199742694153e-06,-4.500004706642358e-06,4.3607185943983495e-05,-1.0901796485995874e-05,-0.0,4.360718719453871e-07,0.0,0.0,4.0700040699448436e-05,-3.256003310525557e-06,-2.3941199742694153e-06,0.0,1.9152960817336862e-07,0.0,2.475002474966459e-05,-1.0587911840678754e-22,-4.500004706642358e-06,0.0,0.0,1.3235307960712817e-07,26.0,36.0,0.024250658228993416,-0.001971064368262887,-0.0014523633290082216,4.2395877244416624e-05,3.850003849947825e-05,2.279607542732265e-05,-0.001971064368262887,0.0003378676192369312,3.850003849947825e-05,-1.0598969311104156e-05,-3.080003125432995e-06,-2.7740329022578336e-20,-0.0014523633290082216,3.850003849947825e-05,0.00017819931963458657,-4.6244433642397724e-20,-2.2000021999701858e-06,-4.022836947115138e-06,4.2395877244416624e-05,-1.0598969311104156e-05,-4.6244433642397724e-20,4.2395876675982436e-07,8.271676878559565e-22,9.386205818746737e-22,3.850003849947825e-05,-3.080003125432995e-06,-2.2000021999701858e-06,8.271676878559565e-22,1.7600017088170716e-07,2.0514079191315086e-22,2.279607542732265e-05,-2.7740329022578336e-20,-4.022836947115138e-06,9.386205818746737e-22,2.0514079191315086e-22,1.1493819584984521e-07,26.0,37.0,0.023631898686289787,-0.0019187782891094685,-0.0013775844126939774,4.125004124944098e-05,3.647372068371624e-05,2.104253144352697e-05,-0.0019187782891094685,0.0003288149309810251,3.647372068371624e-05,-1.0312510312360246e-05,-2.917897745646769e-06,-1.0587911840678754e-22,-0.0013775844126939774,3.647372068371624e-05,0.00016430988034699112,-0.0,-2.026317815762013e-06,-3.6072910916118417e-06,4.125004124944098e-05,-1.0312510312360246e-05,-0.0,4.1250041249440983e-07,0.0,0.0,3.647372068371624e-05,-2.917897745646769e-06,-2.026317815762013e-06,0.0,1.621054224187901e-07,0.0,2.104253144352697e-05,-1.0587911840678754e-22,-3.6072910916118417e-06,0.0,0.0,1.0020252716458344e-07,26.0,38.0,0.023043926805257797,-0.0018691946752369404,-0.0013084362726658583,4.016451566712931e-05,3.460327206994407e-05,1.9464341676211916e-05,-0.0018691946752369404,0.0003202347725164145,3.460327206994407e-05,-1.0041128916782327e-05,-2.7682617655955255e-06,-3.1763735522036263e-22,-0.0013084362726658583,3.460327206994407e-05,0.00015182771312538534,-0.0,-1.870447249530116e-06,-3.244056870244094e-06,4.016451566712931e-05,-1.0041128916782327e-05,-0.0,4.0164513848139904e-07,0.0,0.0,3.460327206994407e-05,-2.7682617655955255e-06,-1.870447249530116e-06,0.0,1.4963578109927766e-07,1.9852334701272664e-23,1.9464341676211916e-05,-3.1763735522036263e-22,-3.244056870244094e-06,0.0,1.9852334701272664e-23,8.767721482172419e-08,26.0,39.0,0.02248449996113777,-0.001822109567001462,-0.0012443674495443702,3.913465479854494e-05,3.287311119493097e-05,1.8040122085949406e-05,-0.001822109567001462,0.0003120910550933331,3.287311119493097e-05,-9.783663699636236e-06,-2.6298487227904843e-06,6.352747104407253e-22,-0.0012443674495443702,3.287311119493097e-05,0.00014057893713470548,-0.0,-1.7301637171840412e-06,-2.9254249511723174e-06,3.913465479854494e-05,-9.783663699636236e-06,-0.0,3.9134653206929215e-07,0.0,0.0,3.287311119493097e-05,-2.6298487227904843e-06,-1.7301637171840412e-06,0.0,1.3841309964846005e-07,-3.3087224502121107e-23,1.8040122085949406e-05,6.352747104407253e-22,-2.9254249511723174e-06,0.0,-3.3087224502121107e-23,7.69848682580232e-08,26.0,40.0,0.021951591596007347,-0.0017773385625332594,-0.001184892375022173,3.815628951997496e-05,3.126954470644705e-05,1.6751540897530504e-05,-0.0017773385625332594,0.0003043512988369912,3.126954470644705e-05,-9.53907237999374e-06,-2.501563585610711e-06,-5.293955920339377e-22,-0.001184892375022173,3.126954470644705e-05,0.0001304148609051481,-2.479726321617371e-21,-1.603566374797083e-06,-2.644980213517556e-06,3.815628951997496e-05,-9.53907237999374e-06,-2.479726321617371e-21,3.815628701886453e-07,1.983780956319701e-22,4.1142302278780063e-38,3.126954470644705e-05,-2.501563585610711e-06,-1.603566374797083e-06,1.983780956319701e-22,1.2828530771002988e-07,2.6469779601696886e-23,1.6751540897530504e-05,-5.293955920339377e-22,-2.644980213517556e-06,4.1142302278780063e-38,2.6469779601696886e-23,6.782000383509512e-08,26.0,41.0,0.021443357691168785,-0.00173471518792212,-0.0011295819422230124,3.722564724739641e-05,2.978051816171501e-05,1.558282929181587e-05,-0.00173471518792212,0.00029698622529394925,2.978051816171501e-05,-9.306411811849102e-06,-2.3824413801776245e-06,4.235164736271502e-22,-0.0011295819422230124,2.978051816171501e-05,0.0001212077695527114,-0.0,-1.4890258626110153e-06,-2.3973582301550778e-06,3.722564724739641e-05,-9.306411811849102e-06,-0.0,3.7225646565275383e-07,0.0,0.0,2.978051816171501e-05,-2.3824413801776245e-06,-1.4890258626110153e-06,0.0,1.191220704299667e-07,-2.3161057151484775e-23,1.558282929181587e-05,4.235164736271502e-22,-2.3973582301550778e-06,0.0,-2.3161057151484775e-23,5.993396001713336e-08,26.0,42.0,0.020958123728632927,-0.0016940884524956346,-0.0010780562879517674,3.633932283264585e-05,2.8395377739798278e-05,1.4520363038172945e-05,-0.0016940884524956346,0.0002899692044593394,2.8395377739798278e-05,-9.084830708161462e-06,-2.271630137329339e-06,0.0,-0.0010780562879517674,2.8395377739798278e-05,0.0001128476214944385,-0.0,-1.385140308229893e-06,-2.178054501200677e-06,3.633932283264585e-05,-9.084830708161462e-06,-0.0,3.633932124103012e-07,0.0,0.0,2.8395377739798278e-05,-2.271630137329339e-06,-1.385140308229893e-06,0.0,1.1081122863743076e-07,3.308722450212111e-24,1.4520363038172945e-05,0.0,-2.178054501200677e-06,0.0,3.308722450212111e-24,5.312327999718036e-08,26.0,43.0,0.020494364202022552,-0.0016553214518353343,-0.0010299778077751398,3.5494220355758443e-05,2.7104677428724244e-05,1.3552338714362122e-05,-0.0016553214518353343,0.0002832761674653739,2.7104677428724244e-05,-8.873555088939611e-06,-2.1683742943423567e-06,1.0587911840678754e-22,-0.0010299778077751398,2.7104677428724244e-05,0.00010523918899707496,-2.1494455834355565e-21,-1.2906989468319807e-06,-1.983269157790346e-06,3.5494220355758443e-05,-8.873555088939611e-06,-2.1494455834355565e-21,3.549422160631366e-07,1.7195564768458648e-22,5.877471754111438e-39,2.7104677428724244e-05,-2.1683742943423567e-06,-1.2906989468319807e-06,1.7195564768458648e-22,1.0325591404125589e-07,0.0,1.3552338714362122e-05,1.0587911840678754e-22,-1.983269157790346e-06,5.877471754111438e-39,0.0,4.7220694909810845e-08,26.0,44.0,0.02005068212747574,-0.0016182891558855772,-0.000985045568086207,3.468753493507393e-05,2.590002623037435e-05,1.2668490853684489e-05,-0.0016182891558855772,0.0002768851409200579,2.590002623037435e-05,-8.671883733768482e-06,-2.072001962005743e-06,-2.117582368135751e-22,-0.000985045568086207,2.590002623037435e-05,9.829981718212366e-05,-0.0,-1.2046523352182703e-06,-1.8097844076692127e-06,3.468753493507393e-05,-8.671883733768482e-06,-0.0,3.468753391189239e-07,0.0,0.0,2.590002623037435e-05,-2.072001962005743e-06,-1.2046523352182703e-06,0.0,9.637219022806676e-08,9.926167350636332e-24,1.2668490853684489e-05,-2.117582368135751e-22,-1.8097844076692127e-06,0.0,9.926167350636332e-24,4.208801129834683e-08,26.0,45.0,0.01962580345571041,-0.0015828777104616165,-0.0009429909405298531,3.39167017955333e-05,2.4773937184363604e-05,1.1859863661811687e-05,-0.0015828777104616165,0.0002707761886995286,2.4773937184363604e-05,-8.479175448883325e-06,-1.981914920179406e-06,-1.0573496764476597e-20,-0.0009429909405298531,2.4773937184363604e-05,9.195754682878032e-05,-2.0117032497289633e-20,-1.1260881365160458e-06,-1.6548647181480192e-06,3.39167017955333e-05,-8.479175448883325e-06,-2.0117032497289633e-20,3.391670020391757e-07,3.771943593241806e-22,3.3157550505188474e-22,2.4773937184363604e-05,-1.981914920179406e-06,-1.1260881365160458e-06,3.771943593241806e-22,9.0087048931764e-08,8.420948168271361e-23,1.1859863661811687e-05,-1.0573496764476597e-20,-1.6548647181480192e-06,3.3157550505188474e-22,8.420948168271361e-23,3.7610561776091345e-08,26.0,46.0,0.019218556582927704,-0.0015489829238504171,-0.000903573352843523,3.31793817167636e-05,2.3719727323623374e-05,1.1118622751382645e-05,-0.0015489829238504171,0.00026493100449442863,2.3719727323623374e-05,-8.2948454291909e-06,-1.8975782722918666e-06,7.52434181333778e-21,-0.000903573352843523,2.3719727323623374e-05,8.614948455942795e-05,9.529120656610879e-21,-1.054210088113905e-06,-1.5161757573878276e-06,3.31793817167636e-05,-8.2948454291909e-06,9.529120656610879e-21,3.317938137570309e-07,1.9852334701272664e-23,-2.051209883489862e-22,2.3719727323623374e-05,-1.8975782722918666e-06,-1.054210088113905e-06,1.9852334701272664e-23,8.433681131236881e-08,-8.343557758025559e-23,1.1118622751382645e-05,7.52434181333778e-21,-1.5161757573878276e-06,-2.051209883489862e-22,-8.343557758025559e-23,3.3692796108653056e-08,26.0,47.0,0.01882786676287651,-0.0015165094519034028,-0.0008665768546052277,3.247343556722626e-05,2.2731404897058383e-05,1.0437890523462556e-05,-0.0015165094519034028,0.00025933285360224545,2.2731404897058383e-05,-8.118358891806565e-06,-1.8185124872616143e-06,8.49724919316149e-21,-0.0008665768546052277,2.2731404897058383e-05,8.082053682301193e-05,1.545835128739098e-20,-9.883219718176406e-07,-1.3917186834078166e-06,3.247343556722626e-05,-8.118358891806565e-06,1.545835128739098e-20,3.2473437272528827e-07,-1.1249656330721176e-22,-2.924265723798495e-22,2.2731404897058383e-05,-1.8185124872616143e-06,-9.883219718176406e-07,-1.1249656330721176e-22,7.906575660854287e-08,-3.0398944309308943e-23,1.0437890523462556e-05,8.49724919316149e-21,-1.3917186834078166e-06,-2.924265723798495e-22,-3.0398944309308943e-23,3.02547533692632e-08,26.0,48.0,0.01845274493098259,-0.0014853697502985597,-0.0008318070904351771,3.1796906114323065e-05,2.1803592971991748e-05,9.811617019295227e-06,-0.0014853697502985597,0.0002539664274081588,2.1803592971991748e-05,-7.949226528580766e-06,-1.7442874877815484e-06,5.5579295294235786e-21,-0.0008318070904351771,2.1803592971991748e-05,7.592228939756751e-05,6.352747104407253e-22,-9.278124935008236e-07,-1.2797761428373633e-06,3.1796906114323065e-05,-7.949226528580766e-06,6.352747104407253e-22,3.179690679644409e-07,5.227781471335135e-22,-1.4792573282120404e-22,2.1803592971991748e-05,-1.7442874877815484e-06,-9.278124935008236e-07,5.227781471335135e-22,7.422499948006589e-08,-5.599419902236506e-23,9.811617019295227e-06,5.5579295294235786e-21,-1.2797761428373633e-06,-1.4792573282120404e-22,-5.599419902236506e-23,2.7229278387608247e-08,26.0,49.0,0.01809227652847767,-0.0014554832596331835,-0.0007990888552740216,3.1147988920565695e-05,2.093144939863123e-05,9.234462595486548e-06,-0.0014554832596331835,0.0002488176105543971,2.093144939863123e-05,-7.786997230141424e-06,-1.6745159427955514e-06,5.6713796930365705e-21,-0.0007990888552740216,2.093144939863123e-05,7.141209061956033e-05,1.1858461261560205e-20,-8.721437438907742e-07,-1.1788675919888192e-06,3.1147988920565695e-05,-7.786997230141424e-06,1.1858461261560205e-20,3.1147990853241936e-07,-2.5808035111654463e-22,-1.740136658794505e-22,2.093144939863123e-05,-1.6745159427955514e-06,-8.721437438907742e-07,-2.5808035111654463e-22,6.977149524800552e-08,-4.251358220498389e-23,9.234462595486548e-06,5.6713796930365705e-21,-1.1788675919888192e-06,-1.740136658794505e-22,-4.251358220498389e-23,2.455974268400496e-08,26.0,50.0,0.017745623365044594,-0.0014267758233472705,-0.0007682639406993985,3.052503234357573e-05,2.011060860240832e-05,8.701705155544914e-06,-0.0014267758233472705,0.00024387345183640718,2.011060860240832e-05,-7.631258085893933e-06,-1.6088487200249801e-06,-8.288383665111149e-21,-0.0007682639406993985,2.011060860240832e-05,6.725224375259131e-05,-1.376428539288238e-20,-8.208411372834234e-07,-1.0877131444431143e-06,3.052503234357573e-05,-7.631258085893933e-06,-1.376428539288238e-20,3.0525029615091626e-07,8.602678370551488e-23,2.4792186738476434e-22,2.011060860240832e-05,-1.6088487200249801e-06,-8.208411372834234e-07,8.602678370551488e-23,6.566729382484482e-08,6.848990091147244e-23,8.701705155544914e-06,-8.288383665111149e-21,-1.0877131444431143e-06,2.4792186738476434e-22,6.848990091147244e-23,2.2198229032710515e-08,26.0,51.0,0.017412003129720688,-0.0013991789892315865,-0.000739188923034817,2.992650115629658e-05,1.9337123376317322e-05,8.209156476368662e-06,-0.0013991789892315865,0.0002391219459241256,1.9337123376317322e-05,-7.481625289074145e-06,-1.5469698837478063e-06,6.044414319387761e-21,-0.000739188923034817,1.9337123376317322e-05,6.340938125504181e-05,5.293955920339377e-21,-7.734849418739032e-07,-1.0052027619167347e-06,2.992650115629658e-05,-7.481625289074145e-06,5.293955920339377e-21,2.992649967836769e-07,2.183756817139993e-22,-1.6410107955815846e-22,1.9337123376317322e-05,-1.5469698837478063e-06,-7.734849418739032e-07,2.183756817139993e-22,6.187879364460969e-08,-5.504187982669501e-23,8.209156476368662e-06,6.044414319387761e-21,-1.0052027619167347e-06,-1.6410107955815846e-22,-5.504187982669501e-23,2.010405530938897e-08,26.0,52.0,0.0170906949788332,-0.0013726295437663794,-0.0007117338245734572,2.9350991098908707e-05,1.8607421225169674e-05,7.75309217715403e-06,-0.0013726295437663794,0.00023455207701772451,1.8607421225169674e-05,-7.337747774727177e-06,-1.4885936252539977e-06,-1.4706635153758862e-21,-0.0007117338245734572,1.8607421225169674e-05,5.985386815154925e-05,-6.1409888675936775e-21,-7.297027764252562e-07,-9.303710157837486e-07,2.9350991098908707e-05,-7.337747774727177e-06,-6.1409888675936775e-21,2.9350991326282383e-07,2.713152409173931e-22,4.813612204263061e-23,1.8607421225169674e-05,-1.4885936252539977e-06,-7.297027764252562e-07,2.713152409173931e-22,5.8376222966671776e-08,3.1005089251662664e-24,7.75309217715403e-06,-1.4706635153758862e-21,-9.303710157837486e-07,4.813612204263061e-23,3.1005089251662664e-24,1.824257012117414e-08,26.0,53.0,0.016781030222773552,-0.0013470689300447702,-0.0006857805419713259,2.8797197956009768e-05,1.7918257071869448e-05,7.330195785471005e-06,-0.0013470689300447702,0.00023015361512079835,1.7918257071869448e-05,-7.199299489002442e-06,-1.4334605111798737e-06,7.842116493464523e-21,-0.0006857805419713259,1.7918257071869448e-05,5.655933637171984e-05,1.1434944787933055e-20,-6.891637553962937e-07,-8.623759981674084e-07,2.8797197956009768e-05,-7.199299489002442e-06,1.1434944787933055e-20,2.8797200002372847e-07,7.279189390466644e-23,-2.239839400138179e-22,1.7918257071869448e-05,-1.4334605111798737e-06,-6.891637553962937e-07,7.279189390466644e-23,5.513309986326931e-08,-6.629257619163363e-23,7.330195785471005e-06,7.842116493464523e-21,-8.623759981674084e-07,-2.239839400138179e-22,-6.629257619163363e-23,1.658415449412587e-08,26.0,54.0,0.016482386738061905,-0.0013224430149421096,-0.0006612215074710548,2.8263917556614615e-05,1.72666841535829e-05,6.937506896065315e-06,-0.0013224430149421096,0.00022591708693653345,1.72666841535829e-05,-7.065979389153654e-06,-1.3813347550239996e-06,-8.1720299884959645e-22,-0.0006612215074710548,1.72666841535829e-05,5.3502262744586915e-05,-7.199780051661553e-21,-6.515729751299659e-07,-8.004815867934667e-07,2.8263917556614615e-05,-7.065979389153654e-06,-7.199780051661553e-21,2.826391778398829e-07,3.6065074707312007e-22,3.657595238913017e-23,1.72666841535829e-05,-1.3813347550239996e-06,-6.515729751299659e-07,3.6065074707312007e-22,5.212583786828873e-08,1.8973617411351095e-24,6.937506896065315e-06,-8.1720299884959645e-22,-8.004815867934667e-07,3.657595238913017e-23,1.8973617411351095e-24,1.5103426065365966e-08,26.0,55.0,0.016194185242056847,-0.0012987012742087245,-0.000637958524748683,2.775002758426126e-05,1.6650015822960995e-05,6.572374786628643e-06,-0.0012987012742087245,0.00022183371766004711,1.6650015822960995e-05,-6.937506896065315e-06,-1.3320013749762438e-06,-4.6767818442500014e-21,-0.000637958524748683,1.6650015822960995e-05,5.066163794253953e-05,-1.1858461261560205e-20,-6.166673074403661e-07,-7.440424383275968e-07,2.775002758426126e-05,-6.937506896065315e-06,-1.1858461261560205e-20,2.77500276979481e-07,2.8785885316845363e-22,1.4599057497916276e-22,1.6650015822960995e-05,-1.3320013749762438e-06,-6.166673074403661e-07,2.8785885316845363e-22,4.933338360046946e-08,2.793339741536412e-23,6.572374786628643e-06,-4.6767818442500014e-21,-7.440424383275968e-07,1.4599057497916276e-22,2.793339741536412e-23,1.3778564067479238e-08,26.0,56.0,0.015915891155600548,-0.0012757971417158842,-0.0006159020704217255,2.7254491214989685e-05,1.6065805539255962e-05,6.23242476649466e-06,-0.0012757971417158842,0.00021789535821881145,1.6065805539255962e-05,-6.813622803747421e-06,-1.285264488615212e-06,5.345569890299412e-21,-0.0006159020704217255,1.6065805539255962e-05,4.801862814929336e-05,9.529120656610879e-21,-5.842111363563163e-07,-6.924915965100809e-07,2.7254491214989685e-05,-6.813622803747421e-06,9.529120656610879e-21,2.725449235185806e-07,-3.308722450212111e-24,-1.6976265223339552e-22,1.6065805539255962e-05,-1.285264488615212e-06,-5.842111363563163e-07,-3.308722450212111e-24,4.673688991374547e-08,-3.0676891560654514e-23,6.23242476649466e-06,5.345569890299412e-21,-6.924915965100809e-07,-1.6976265223339552e-22,-3.0676891560654514e-23,1.2590756881536436e-08,26.0,57.0,0.015646999701857567,-0.0012536868453025818,-0.0005949700134806335,2.6776342565426603e-05,1.5511812307522632e-05,5.915521796850953e-06,-0.0012536868453025818,0.00021409439796116203,1.5511812307522632e-05,-6.694085641356651e-06,-1.240944925484655e-06,-2.0050189599108743e-21,-0.0005949700134806335,1.5511812307522632e-05,4.55563458672259e-05,-3.8116482626443515e-21,-5.539932885767485e-07,-6.453296350628079e-07,2.6776342565426603e-05,-6.694085641356651e-06,-3.8116482626443515e-21,2.6776342565426603e-07,0.0,6.195628983716787e-23,1.5511812307522632e-05,-1.240944925484655e-06,-5.539932885767485e-07,0.0,4.4319463654574065e-08,1.3403548262384695e-23,5.915521796850953e-06,-2.0050189599108743e-21,-6.453296350628079e-07,6.195628983716787e-23,1.3403548262384695e-23,1.152374373702969e-08,26.0,58.0,0.015387041494250298,-0.0012323298724368215,-0.0005750872660428286,2.631468123581726e-05,1.4985987945692614e-05,5.61974547963473e-06,-0.0012323298724368215,0.00021042379376012832,1.4985987945692614e-05,-6.578670308954315e-06,-1.1988790902250912e-06,-2.700376951964283e-21,-0.0005750872660428286,1.4985987945692614e-05,4.3259598896838725e-05,-1.2705494208814505e-21,-5.25824134456343e-07,-6.021156195856747e-07,2.631468123581726e-05,-6.578670308954315e-06,-1.2705494208814505e-21,2.631468021263572e-07,-1.7205356741102976e-22,6.726141097921538e-23,1.4985987945692614e-05,-1.1988790902250912e-06,-5.25824134456343e-07,-1.7205356741102976e-22,4.206593118283308e-08,2.820111787393441e-23,5.61974547963473e-06,-2.700376951964283e-21,-6.021156195856747e-07,6.726141097921538e-23,2.820111787393441e-23,1.05634310187952e-08,26.0,59.0,0.01513558067381382,-0.0012116885045543313,-0.0005561849102377892,2.5868670491036028e-05,1.4486455256701447e-05,5.343364591681166e-06,-0.0012116885045543313,0.0002068769244942814,1.4486455256701447e-05,-6.467167622759007e-06,-1.1589164614633773e-06,-5.210356354354144e-22,-0.0005561849102377892,1.4486455256701447e-05,4.111470843781717e-05,5.505714157152952e-21,-4.995329163648421e-07,-5.624594336950395e-07,2.5868670491036028e-05,-6.467167622759007e-06,5.505714157152952e-21,2.5868669695228164e-07,-3.672681919735443e-22,-6.734322532141767e-24,1.4486455256701447e-05,-1.1589164614633773e-06,-4.995329163648421e-07,-3.672681919735443e-22,3.9962635867141216e-08,1.7797587123721684e-23,5.343364591681166e-06,-5.210356354354144e-22,-5.624594336950395e-07,-6.734322532141767e-24,1.7797587123721684e-23,9.697576075495817e-09,26.0,60.0,0.014892206527292728,-0.001191727234981954,-0.0005381993832997978,2.5437526346649975e-05,1.401148983859457e-05,5.08481480210321e-06,-0.001191727234981954,0.00020344766380731016,1.401148983859457e-05,-6.359381586662494e-06,-1.120919137065357e-06,7.641196019041883e-22,-0.0005381993832997978,1.401148983859457e-05,3.910931991413236e-05,8.470329472543003e-22,-4.7496573074568005e-07,-5.260152988739719e-07,2.5437526346649975e-05,-6.359381586662494e-06,8.470329472543003e-22,2.543752657402365e-07,3.639594695233322e-23,-1.3797598484038884e-23,1.401148983859457e-05,-1.120919137065357e-06,-4.7496573074568005e-07,3.639594695233322e-23,3.7997260449174064e-08,-1.1258394858512672e-23,5.08481480210321e-06,7.641196019041883e-22,-5.260152988739719e-07,-1.3797598484038884e-23,-1.1258394858512672e-23,8.915513660667784e-09,26.0,61.0,0.014656534418463707,-0.001172413001768291,-0.00052107241936028,2.5020517568918876e-05,1.3559505532612093e-05,4.8426804823975544e-06,-0.001172413001768291,0.00020013023458886892,1.3559505532612093e-05,-6.255129392229719e-06,-1.0847604698938085e-06,-4.964253764299888e-21,-0.00052107241936028,1.3559505532612093e-05,3.723227928276174e-05,-1.1011428314305904e-20,-4.5198353859632334e-07,-4.924759764435294e-07,2.5020517568918876e-05,-6.255129392229719e-06,-1.1011428314305904e-20,2.5020517568918876e-07,1.555099551599692e-22,1.447891461313984e-22,1.3559505532612093e-05,-1.0847604698938085e-06,-4.5198353859632334e-07,1.555099551599692e-22,3.61586813824033e-08,3.5285486388715325e-23,4.8426804823975544e-06,-4.964253764299888e-21,-4.924759764435294e-07,1.447891461313984e-22,3.5285486388715325e-23,8.207932999937384e-09,26.0,62.0,0.014428205788135529,-0.001153714838437736,-0.0005047502345405519,2.4616960217827e-05,1.3129045328241773e-05,4.6156801545294e-06,-0.001153714838437736,0.0001969192671822384,1.3129045328241773e-05,-6.15424005445675e-06,-1.0503235898795538e-06,-3.7101102268663335e-21,-0.0005047502345405519,1.3129045328241773e-05,3.5473476600600407e-05,-1.2387856853594142e-20,-4.304605170091236e-07,-4.6156799271557247e-07,2.4616960217827e-05,-6.15424005445675e-06,-1.2387856853594142e-20,2.4616960558887513e-07,3.8712052667481695e-22,1.1647903607935504e-22,1.3129045328241773e-05,-1.0503235898795538e-06,-4.304605170091236e-07,3.8712052667481695e-22,3.4436840934404245e-08,2.1375967474887304e-23,4.6156801545294e-06,-3.7101102268663335e-21,-4.6156799271557247e-07,1.1647903607935504e-22,2.1375967474887304e-23,7.566688609017547e-09,26.0,63.0,0.014206881634891033,-0.0011356037575751543,-0.0004891831777058542,2.4226214009104297e-05,1.2718763173324987e-05,4.402648755785776e-06,-0.0011356037575751543,0.00019380971207283437,1.2718763173324987e-05,-6.056553502276074e-06,-1.017501062960946e-06,6.197976886206214e-22,-0.0004891831777058542,1.2718763173324987e-05,3.382374416105449e-05,2.752857078576476e-21,-4.102826665075554e-07,-4.330474041580601e-07,2.4226214009104297e-05,-6.056553502276074e-06,2.752857078576476e-21,2.4226216055467376e-07,-1.1911400820763599e-22,-8.579882341428954e-24,1.2718763173324987e-05,-1.017501062960946e-06,-4.102826665075554e-07,-1.1911400820763599e-22,3.2822612183736055e-08,-1.1752698257167778e-23,4.402648755785776e-06,6.197976886206214e-22,-4.330474041580601e-07,-8.579882341428954e-24,-1.1752698257167778e-23,6.984635536610995e-09,26.0,64.0,0.013992244377732277,-0.0011180526344105601,-0.0004743253521155566,2.3847680495237e-05,1.2327415788604412e-05,4.20252808908117e-06,-0.0011180526344105601,0.00019079685444012284,1.2327415788604412e-05,-5.96192012380925e-06,-9.86193299468141e-07,8.54865212705216e-22,-0.0004743253521155566,1.2327415788604412e-05,3.227475826861337e-05,3.5998900258307764e-21,-3.9134653206929215e-07,-4.066962731030799e-07,2.3847680495237e-05,-5.96192012380925e-06,3.5998900258307764e-21,2.384768151841854e-07,-9.926167350636332e-23,-3.4155806018002627e-23,1.2327415788604412e-05,-9.86193299468141e-07,-3.9134653206929215e-07,-9.926167350636332e-23,3.1307724412954485e-08,3.1789816525740318e-24,4.20252808908117e-06,8.54865212705216e-22,-4.066962731030799e-07,-3.4155806018002627e-23,3.1789816525740318e-24,6.455496581736497e-09,27.0,3.0,0.17242899537086487,-0.018472906202077866,-0.1071428582072258,0.0004561211389955133,0.003968254197388887,0.018518518656492233,-0.018472906202077866,0.0033549463842064142,0.003968254197388887,-0.00010946907423203811,-0.0003052503161597997,-1.3010426069826053e-17,-0.1071428582072258,0.003968254197388887,0.29232802987098694,-3.190447254844392e-19,-0.003968254197388887,-0.1111111119389534,0.0004561211389955133,-0.00010946907423203811,-3.190447254844392e-19,4.2103488340217154e-06,-9.474117184843937e-21,2.252707749569058e-19,0.003968254197388887,-0.0003052503161597997,-0.003968254197388887,-9.474117184843937e-21,0.0003052503161597997,5.637851296924623e-18,0.018518518656492233,-1.3010426069826053e-17,-0.1111111119389534,2.252707749569058e-19,5.637851296924623e-18,0.0555555559694767,27.0,4.0,0.14446724951267242,-0.01444991771131754,-0.06984127312898636,0.0003420908469706774,0.0023809524718672037,0.009259259328246117,-0.01444991771131754,0.002561997389420867,0.0023809524718672037,-8.210180385503918e-05,-0.00018315018678549677,4.336808689942018e-18,-0.06984127312898636,0.0023809524718672037,0.11137565970420837,4.575402733778344e-19,-0.0015873016091063619,-0.02777777798473835,0.0003420908469706774,-8.210180385503918e-05,4.575402733778344e-19,3.1577617392031243e-06,-7.190153575724254e-21,-1.1006918887497783e-19,0.0023809524718672037,-0.00018315018678549677,-0.0015873016091063619,-7.190153575724254e-21,0.00012210012937430292,-4.336808689942018e-19,0.009259259328246117,4.336808689942018e-18,-0.02777777798473835,-1.1006918887497783e-19,-4.336808689942018e-19,0.009259259328246117,27.0,5.0,0.12435686588287354,-0.011877394281327724,-0.04920634999871254,0.0002736726892180741,0.0015873016091063619,0.005291005130857229,-0.011877394281327724,0.0020740178879350424,0.0015873016091063619,-6.568144453922287e-05,-0.00012210012937430292,1.6263032587282567e-19,-0.04920634999871254,0.0015873016091063619,0.05634920671582222,3.477714480004414e-20,-0.0007936508045531809,-0.010582010261714458,0.0002736726892180741,-6.568144453922287e-05,3.477714480004414e-20,2.5262095277867047e-06,-2.2108875738278438e-21,-1.9632491662544307e-21,0.0015873016091063619,-0.00012210012937430292,-0.0007936508045531809,-2.2108875738278438e-21,6.105006468715146e-05,2.710505431213761e-20,0.005291005130857229,1.6263032587282567e-19,-0.010582010261714458,-1.9632491662544307e-21,2.710505431213761e-20,0.0026455025654286146,27.0,6.0,0.10917368531227112,-0.010086793452501297,-0.036564625799655914,0.00022806056949775666,0.0011337868636474013,0.003306878264993429,-0.010086793452501297,0.0017428840510547161,0.0011337868636474013,-5.4734537116019055e-05,-8.721437188796699e-05,2.656295322589486e-18,-0.036564625799655914,0.0011337868636474013,0.03281367942690849,4.020411847146543e-19,-0.00045351474545896053,-0.004960317630320787,0.00022806056949775666,-5.4734537116019055e-05,4.020411847146543e-19,2.1051744170108577e-06,-7.757579281096457e-21,-5.675872317738499e-20,0.0011337868636474013,-8.721437188796699e-05,-0.00045351474545896053,-7.757579281096457e-21,3.488575021037832e-05,-3.7269449679189215e-19,0.003306878264993429,2.656295322589486e-18,-0.004960317630320787,-5.675872317738499e-20,-3.7269449679189215e-19,0.0009920635493472219,27.0,7.0,0.09729824215173721,-0.00876730028539896,-0.028250189498066902,0.0001954804902197793,0.0008503401186317205,0.002204585587605834,-0.00876730028539896,0.00150324497371912,0.0008503401186317205,-4.691531648859382e-05,-6.541077891597524e-05,-5.963111948670274e-19,-0.028250189498066902,0.0008503401186317205,0.020880574360489845,-1.43779396700625e-19,-0.00028344671591185033,-0.0026455025654286146,0.0001954804902197793,-4.691531648859382e-05,-1.43779396700625e-19,1.804435328267573e-06,4.536603810990673e-21,1.4081559240997617e-20,0.0008503401186317205,-6.541077891597524e-05,-0.00028344671591185033,4.536603810990673e-21,2.1803592971991748e-05,9.825582188149884e-20,0.002204585587605834,-5.963111948670274e-19,-0.0026455025654286146,1.4081559240997617e-20,9.825582188149884e-20,0.00044091709423810244,27.0,8.0,0.08775390684604645,-0.007754059508442879,-0.022486772388219833,0.0001710454234853387,0.0006613756413571537,0.0015432098880410194,-0.007754059508442879,0.00132169877178967,0.0006613756413571537,-4.105090192751959e-05,-5.087505269329995e-05,4.336808689942018e-19,-0.022486772388219833,0.0006613756413571537,0.01414084155112505,1.6932236889357024e-20,-0.0001889644772745669,-0.0015432098880410194,0.0001710454234853387,-4.105090192751959e-05,1.6932236889357024e-20,1.5788808696015622e-06,-2.954256827019805e-22,-1.825465029230748e-21,0.0006613756413571537,-5.087505269329995e-05,-0.0001889644772745669,-2.954256827019805e-22,1.4535728951159399e-05,-1.0503208545953324e-19,0.0015432098880410194,4.336808689942018e-19,-0.0015432098880410194,-1.825465029230748e-21,-1.0503208545953324e-19,0.00022045854711905122,27.0,9.0,0.07991500198841095,-0.006951286457479,-0.01832611858844757,0.0001520403748145327,0.0005291005363687873,0.0011223345063626766,-0.006951286457479,0.0011793655576184392,0.0005291005363687873,-3.648969141067937e-05,-4.0700040699448436e-05,-2.710505431213761e-19,-0.01832611858844757,0.0005291005363687873,0.010032868012785912,-1.1183536165444633e-19,-0.00013227513409219682,-0.0009620009805075824,0.0001520403748145327,-3.648969141067937e-05,-1.1183536165444633e-19,1.403449687131797e-06,1.3498828270912482e-21,1.2444177028875207e-20,0.0005291005363687873,-4.0700040699448436e-05,-0.00013227513409219682,1.3498828270912482e-21,1.0175010174862109e-05,-1.9481757786848908e-20,0.0011223345063626766,-2.710505431213761e-19,-0.0009620009805075824,1.2444177028875207e-20,-1.9481757786848908e-20,0.0001202501225634478,27.0,10.0,0.07336169481277466,-0.006299447733908892,-0.015223665162920952,0.00013683634460903704,0.00043290044413879514,0.0008417508215643466,-0.006299447733908892,0.0010647589806467295,0.00043290044413879514,-3.284072226961143e-05,-3.330003164592199e-05,9.486769009248164e-20,-0.015223665162920952,0.00043290044413879514,0.007381353061646223,1.0333323581152119e-20,-9.620009950594977e-05,-0.0006313131307251751,0.00013683634460903704,-3.284072226961143e-05,1.0333323581152119e-20,1.2631047638933524e-06,-7.99493992916922e-22,2.47044325892022e-22,0.00043290044413879514,-3.330003164592199e-05,-9.620009950594977e-05,-7.99493992916922e-22,7.400007234537043e-06,-1.3552527156068805e-20,0.0008417508215643466,9.486769009248164e-20,-0.0006313131307251751,2.47044325892022e-22,-1.3552527156068805e-20,7.014590664766729e-05,27.0,11.0,0.06780160963535309,-0.005759566091001034,-0.012848262675106525,0.0001243966689798981,0.0003607503604143858,0.0006475006230175495,-0.005759566091001034,0.0009704854455776513,0.0003607503604143858,-2.9855202228645794e-05,-2.775002758426126e-05,3.1848438816761693e-19,-0.012848262675106525,0.0003607503604143858,0.00559132220223546,1.1993029330055804e-19,-7.215006917249411e-05,-0.00043166711111553013,0.0001243966689798981,-2.9855202228645794e-05,1.1993029330055804e-19,1.1482769650683622e-06,-2.0450893578508545e-21,-8.99985754272192e-21,0.0003607503604143858,-2.775002758426126e-05,-7.215006917249411e-05,-2.0450893578508545e-21,5.550005425902782e-06,-1.3129010682441655e-20,0.0006475006230175495,3.1848438816761693e-19,-0.00043166711111553013,-8.99985754272192e-21,-1.3129010682441655e-20,4.316671038395725e-05,27.0,12.0,0.06302483379840851,-0.005305039696395397,-0.010989011265337467,0.00011403028474887833,0.0003052503161597997,0.000508750497829169,-0.005305039696395397,0.0008915683720260859,0.0003052503161597997,-2.7367268558009528e-05,-2.3480792151531205e-05,-8.131516293641283e-20,-0.010989011265337467,0.0003052503161597997,0.0043382542207837105,2.3884483142712084e-20,-5.550005516852252e-05,-0.0003052503161597997,0.00011403028474887833,-2.7367268558009528e-05,2.3884483142712084e-20,1.0525872085054289e-06,-6.378965559235433e-22,-1.362800758891266e-21,0.0003052503161597997,-2.3480792151531205e-05,-5.550005516852252e-05,-6.378965559235433e-22,4.2692349779827055e-06,1.9905274260476058e-20,0.000508750497829169,-8.131516293641283e-20,-0.0003052503161597997,-1.362800758891266e-21,1.9905274260476058e-20,2.775002758426126e-05,27.0,13.0,0.05887671932578087,-0.004917086102068424,-0.009506366215646267,0.00010525872494326904,0.00026164311566390097,0.0004070004215463996,-0.004917086102068424,0.0008245343924500048,0.00026164311566390097,-2.5262093913624994e-05,-2.012639379245229e-05,-1.3552527156068805e-20,-0.009506366215646267,0.00026164311566390097,0.0034343963488936424,3.638790132840643e-21,-4.3607185943983495e-05,-0.0002220002206740901,0.00010525872494326904,-2.5262093913624994e-05,3.638790132840643e-21,9.71618987932743e-07,-1.5713468045858792e-22,-1.3981369311708637e-22,0.00026164311566390097,-2.012639379245229e-05,-4.3607185943983495e-05,-1.5713468045858792e-22,3.3543990411999403e-06,2.752857078576476e-21,0.0004070004215463996,-1.3552527156068805e-20,-0.0002220002206740901,-1.3981369311708637e-22,2.752857078576476e-21,1.850001899583731e-05,27.0,14.0,0.05524083226919174,-0.00458206282928586,-0.008304988965392113,9.774024510988966e-05,0.00022675737272948027,0.0003306878206785768,-0.00458206282928586,0.0007668850012123585,0.00022675737272948027,-2.345765824429691e-05,-1.744287510518916e-05,-5.421010862427522e-20,-0.008304988965392113,0.00022675737272948027,0.002765785902738571,3.611974617592293e-21,-3.488575021037832e-05,-0.0001653439103392884,9.774024510988966e-05,-2.345765824429691e-05,3.611974617592293e-21,9.022176641337865e-07,5.226953987799994e-22,-7.642448603941629e-22,0.00022675737272948027,-1.744287510518916e-05,-3.488575021037832e-05,5.226953987799994e-22,2.683519142010482e-06,1.164670302474663e-20,0.0003306878206785768,-5.421010862427522e-20,-0.0001653439103392884,-7.642448603941629e-22,1.164670302474663e-20,1.2718763173324987e-05,27.0,15.0,0.05202781781554222,-0.004289819393306971,-0.007317927200347185,9.122423216467723e-05,0.00019841270113829523,0.00027233114815317094,-0.004289819393306971,0.0007167768198996782,0.00019841270113829523,-2.1893814846407622e-05,-1.5262516171787865e-05,-2.371692252312041e-20,-0.007317927200347185,0.00019841270113829523,0.0022604339756071568,-1.043055930839258e-20,-2.8344671591185033e-05,-0.0001256913092220202,9.122423216467723e-05,-2.1893814846407622e-05,-1.043055930839258e-20,8.42069823647762e-07,5.076421151728569e-22,6.446118826850874e-23,0.00019841270113829523,-1.5262516171787865e-05,-2.8344671591185033e-05,5.076421151728569e-22,2.180359388148645e-06,2.541098841762901e-21,0.00027233114815317094,-2.371692252312041e-20,-0.0001256913092220202,6.446118826850874e-23,2.541098841762901e-21,8.977950528787915e-06,27.0,16.0,0.04916795715689659,-0.004032647702842951,-0.006497043184936047,8.552271174266934e-05,0.00017507003212813288,0.0002269426331622526,-0.004032647702842951,0.0006728199659846723,0.00017507003212813288,-2.0525450963759795e-05,-1.3466925338434521e-05,4.96702312298545e-20,-0.006497043184936047,0.00017507003212813288,0.0018713041208684444,2.5201188272421713e-20,-2.3342670829151757e-05,-9.726112330099568e-05,8.552271174266934e-05,-2.0525450963759795e-05,2.5201188272421713e-20,7.894404348007811e-07,2.4894275731941867e-37,-1.6236103415479347e-21,0.00017507003212813288,-1.3466925338434521e-05,-2.3342670829151757e-05,2.4894275731941867e-37,1.7955900375454803e-06,-9.941816331512e-22,0.0002269426331622526,4.96702312298545e-20,-9.726112330099568e-05,-1.6236103415479347e-21,-9.941816331512e-22,6.484075129264966e-06,27.0,17.0,0.046606071293354034,-0.003804587060585618,-0.005807001143693924,8.049196912907064e-05,0.00015561780310235918,0.00019110957509838045,-0.003804587060585618,0.0006339465035125613,0.00015561780310235918,-1.9318071281304583e-05,-1.1970600098720752e-05,-2.0862216246683928e-19,-0.005807001143693924,0.00015561780310235918,0.0015667573316022754,-1.2212544970051478e-19,-1.9452225387794897e-05,-7.644383003935218e-05,8.049196912907064e-05,-1.9318071281304583e-05,-1.2212544970051478e-19,7.430027721966326e-07,1.4293680984916318e-21,5.727016474959998e-21,0.00015561780310235918,-1.1970600098720752e-05,-1.9452225387794897e-05,1.4293680984916318e-21,1.496325012340094e-06,6.765490439128823e-21,0.00019110957509838045,-2.0862216246683928e-19,-7.644383003935218e-05,5.727016474959998e-21,6.765490439128823e-21,4.777739377459511e-06,27.0,18.0,0.044297900050878525,-0.003600956406444311,-0.005221386905759573,7.602018740726635e-05,0.00013923698861617595,0.000162443146109581,-0.003600956406444311,0.0005993222584947944,0.00013923698861617595,-1.8244845705339685e-05,-1.0710537026170641e-05,-1.3928173136683863e-19,-0.005221386905759573,0.00013923698861617595,0.0013249695766717196,-1.1133145356503668e-19,-1.638082176214084e-05,-6.091617979109287e-05,7.602018740726635e-05,-1.8244845705339685e-05,-1.1133145356503668e-19,7.017248435658985e-07,1.376428539288238e-21,4.854842972418411e-21,0.00013923698861617595,-1.0710537026170641e-05,-1.638082176214084e-05,1.376428539288238e-21,1.2600631862369482e-06,9.763983606974644e-22,0.000162443146109581,-1.3928173136683863e-19,-6.091617979109287e-05,4.854842972418411e-21,9.763983606974644e-22,3.583304760468309e-06,27.0,19.0,0.04220753163099289,-0.003418027888983488,-0.004720133729279041,7.201913103926927e-05,0.0001253132795682177,0.00013923698861617595,-0.003418027888983488,0.0005682863411493599,0.0001253132795682177,-1.7284590285271406e-05,-9.639483323553577e-06,4.2994153441167046e-20,-0.004720133729279041,0.0001253132795682177,0.0011305497027933598,2.651815028048563e-20,-1.3923698134021834e-05,-4.914246528642252e-05,7.201913103926927e-05,-1.7284590285271406e-05,2.651815028048563e-20,6.647919690294657e-07,-6.88214269644119e-22,-9.791279961343719e-22,0.0001253132795682177,-9.639483323553577e-06,-1.3923698134021834e-05,-6.88214269644119e-22,1.0710537026170641e-06,-1.948536418122854e-21,0.00013923698861617595,4.2994153441167046e-20,-4.914246528642252e-05,-9.791279961343719e-22,-1.948536418122854e-21,2.7301368845655816e-06,27.0,20.0,0.04030552878975868,-0.0032527954317629337,-0.004287775605916977,6.841817230451852e-05,0.00011337868636474013,0.0001202501225634478,-0.0032527954317629337,0.00054030807223171,0.00011337868636474013,-1.6420361134805717e-05,-8.72143755259458e-06,-5.1701919292429714e-20,-0.004287775605916977,0.00011337868636474013,0.0009724286501295865,-3.8764720808046595e-20,-1.1934598660445772e-05,-4.0083374187815934e-05,6.841817230451852e-05,-1.6420361134805717e-05,-3.8764720808046595e-20,6.315523819466762e-07,5.293955920339377e-22,1.6836029483327285e-21,0.00011337868636474013,-8.72143755259458e-06,-1.1934598660445772e-05,5.293955920339377e-22,9.180460551760916e-07,8.345517288514128e-22,0.0001202501225634478,-5.1701919292429714e-20,-4.0083374187815934e-05,1.6836029483327285e-21,8.345517288514128e-22,2.1096511773066595e-06,27.0,21.0,0.03856753557920456,-0.003102808492258191,-0.003912237007170916,6.516016583191231e-05,0.00010307152842869982,0.00010456531890667975,-0.003102808492258191,0.0005149566568434238,0.00010307152842869982,-1.5638439435861073e-05,-7.928579179861117e-06,2.24045132395998e-20,-0.003912237007170916,0.00010307152842869982,0.0008425056003034115,1.415723818911055e-20,-1.0307153388566803e-05,-3.302062759757973e-05,6.516016583191231e-05,-1.5638439435861073e-05,1.415723818911055e-20,6.014784617036639e-07,5.293955920339377e-23,-7.29037733136885e-22,0.00010307152842869982,-7.928579179861117e-06,-1.0307153388566803e-05,5.293955920339377e-23,7.928579179861117e-07,-3.449531976092399e-22,0.00010456531890667975,2.24045132395998e-20,-3.302062759757973e-05,-7.29037733136885e-22,-3.449531976092399e-22,1.6510314253537217e-06,27.0,22.0,0.03697321563959122,-0.0029660493601113558,-0.003583976300433278,6.219833448994905e-05,9.410879283677787e-05,9.149465768132359e-05,-0.0029660493601113558,0.0004918785998597741,9.410879283677787e-05,-1.4927601114322897e-05,-7.239137630676851e-06,2.371692252312041e-20,-0.003583976300433278,9.410879283677787e-05,0.0007347580976784229,1.2999342851281866e-20,-8.962741958384868e-06,-2.7448397304397076e-05,6.219833448994905e-05,-1.4927601114322897e-05,1.2999342851281866e-20,5.741384825341811e-07,2.4981531282593548e-25,-6.179660167075707e-22,9.410879283677787e-05,-7.239137630676851e-06,-8.962741958384868e-06,2.4981531282593548e-25,6.894416628711042e-07,-6.88214269644119e-22,9.149465768132359e-05,2.371692252312041e-20,-2.7448397304397076e-05,-6.179660167075707e-22,-6.88214269644119e-22,1.3070665545455995e-06,27.0,23.0,0.03550546243786812,-0.0028408414218574762,-0.0032953761983662844,5.949406113359146e-05,8.626638737041503e-05,8.051529584918171e-05,-0.0028408414218574762,0.00047078108764253557,8.626638737041503e-05,-1.4278574781201314e-05,-6.63587616145378e-06,2.286988957586611e-20,-0.0032953761983662844,8.626638737041503e-05,0.0006446451880037785,1.200115314839987e-20,-7.842399099899922e-06,-2.300437154190149e-05,5.949406113359146e-05,-1.4278574781201314e-05,1.200115314839987e-20,5.491759793585516e-07,6.575880134872488e-23,-5.738487749455811e-22,8.626638737041503e-05,-6.63587616145378e-06,-7.842399099899922e-06,6.575880134872488e-23,6.032614692230709e-07,-6.88214269644119e-22,8.051529584918171e-05,2.286988957586611e-20,-2.300437154190149e-05,-5.738487749455811e-22,-6.88214269644119e-22,1.045653220899112e-06,27.0,24.0,0.03414977714419365,-0.0027257800102233887,-0.00304029299877584,5.7015142374439165e-05,7.936507608974352e-05,7.122506940504536e-05,-0.0027257800102233887,0.00045141958980821073,7.936507608974352e-05,-1.3683634279004764e-05,-6.105005923018325e-06,1.9905274260476058e-20,-0.00304029299877584,7.936507608974352e-05,0.00056869862601161,1.0619877847709954e-20,-6.901311280671507e-06,-1.942501876328606e-05,5.7015142374439165e-05,-1.3683634279004764e-05,1.0619877847709954e-20,5.262936042527144e-07,2.994359170671003e-23,-4.818568396449511e-22,7.936507608974352e-05,-6.105005923018325e-06,-6.901311280671507e-06,2.994359170671003e-23,5.308700679051981e-07,-6.088049308390284e-22,7.122506940504536e-05,1.9905274260476058e-20,-1.942501876328606e-05,-4.818568396449511e-22,-6.088049308390284e-22,8.445660455436155e-07,27.0,25.0,0.03289380297064781,-0.0026196790859103203,-0.0028137294575572014,5.4734537116019055e-05,7.326007471419871e-05,6.331117765512317e-05,-0.0026196790859103203,0.00043358822586014867,7.326007471419871e-05,-1.3136288544046693e-05,-5.635390152747277e-06,8.893845946170154e-21,-0.0028137294575572014,7.326007471419871e-05,0.0005042381235398352,1.556804480702089e-20,-6.105005923018325e-06,-1.651595812290907e-05,5.4734537116019055e-05,-1.3136288544046693e-05,1.556804480702089e-20,5.052418714512896e-07,-4.002465662925194e-22,-4.1727591491280434e-22,7.326007471419871e-05,-5.635390152747277e-06,-6.105005923018325e-06,-4.002465662925194e-22,4.6961585553617624e-07,1.3234889800848443e-22,6.331117765512317e-05,8.893845946170154e-21,-1.651595812290907e-05,-4.1727591491280434e-22,1.3234889800848443e-22,6.881649596834905e-07,27.0,26.0,0.03172693029046059,-0.0025215311907231808,-0.0026115858927369118,5.262936247163452e-05,6.78334035910666e-05,5.652783511322923e-05,-0.0025215311907231808,0.0004171124310232699,6.78334035910666e-05,-1.2631046956812497e-05,-5.217953912506346e-06,-1.9058241313221758e-20,-0.0026115858927369118,6.78334035910666e-05,0.00044917018385604024,-2.4280873908361177e-20,-5.426672032626811e-06,-1.4131958778307308e-05,5.262936247163452e-05,-1.2631046956812497e-05,-2.4280873908361177e-20,4.858094939663715e-07,3.7275995129487985e-22,7.77168749671737e-22,6.78334035910666e-05,-5.217953912506346e-06,-5.426672032626811e-06,3.7275995129487985e-22,4.174363255060598e-07,-7.940933880509066e-23,5.652783511322923e-05,-1.9058241313221758e-20,-1.4131958778307308e-05,7.77168749671737e-22,-7.940933880509066e-23,5.652783556797658e-07,27.0,27.0,0.030639998614788055,-0.00243047415278852,-0.00243047415278852,5.068012615083717e-05,6.29881615168415e-05,5.068012615083717e-05,-0.00243047415278852,0.0004018432809971273,6.29881615168415e-05,-1.2163230167061556e-05,-4.8452429837198e-06,-1.7152417181899582e-20,-0.00243047415278852,6.29881615168415e-05,0.0004018432809971273,-1.4385105445236168e-20,-4.8452429837198e-06,-1.2163230167061556e-05,5.068012615083717e-05,-1.2163230167061556e-05,-1.4385105445236168e-20,4.6781656237726565e-07,9.40396983037261e-23,5.611483415634635e-22,6.29881615168415e-05,-4.8452429837198e-06,-4.8452429837198e-06,9.40396983037261e-23,3.7271098562996485e-07,3.441071348220595e-22,5.068012615083717e-05,-1.7152417181899582e-20,-1.2163230167061556e-05,5.611483415634635e-22,3.441071348220595e-22,4.6781656237726565e-07,27.0,28.0,0.029625067487359047,-0.0023457659408450127,-0.0022675737272948027,4.887012255494483e-05,5.864414561074227e-05,4.5612116082338616e-05,-0.0023457659408450127,0.00038765286444686353,5.864414561074227e-05,-1.1728829122148454e-05,-4.511088263825513e-06,7.199780051661553e-21,-0.0022675737272948027,5.864414561074227e-05,0.00036094276583753526,1.2458241522669309e-20,-4.34401090387837e-06,-1.0525872312427964e-05,4.887012255494483e-05,-1.1728829122148454e-05,1.2458241522669309e-20,4.5110883206689323e-07,-3.2199075670102806e-22,-3.1036976271629146e-22,5.864414561074227e-05,-4.511088263825513e-06,-4.34401090387837e-06,-3.2199075670102806e-22,3.341546914725768e-07,5.293955920339377e-23,4.5612116082338616e-05,7.199780051661553e-21,-1.0525872312427964e-05,-3.1036976271629146e-22,5.293955920339377e-23,3.898471447882912e-07,27.0,29.0,0.02867521531879902,-0.002266764873638749,-0.0021205218508839607,4.718494528788142e-05,5.4734537116019055e-05,4.1198039980372414e-05,-0.002266764873638749,0.00037443070323206484,5.4734537116019055e-05,-1.1324386832711753e-05,-4.2103488340217154e-06,-9.952637130238029e-21,-0.0021205218508839607,5.4734537116019055e-05,0.0003254131297580898,-2.2218882277915537e-20,-3.909609858965268e-06,-9.155120096693281e-06,4.718494528788142e-05,-1.1324386832711753e-05,-2.2218882277915537e-20,4.355533462785388e-07,5.18407125655669e-22,5.523104740958956e-22,5.4734537116019055e-05,-4.2103488340217154e-06,-3.909609858965268e-06,5.18407125655669e-22,3.0073923085183196e-07,-3.3087224502121107e-22,4.1198039980372414e-05,-9.952637130238029e-21,-9.155120096693281e-06,5.523104740958956e-22,-3.3087224502121107e-22,3.269685748819029e-07,27.0,30.0,0.027784373611211777,-0.002192912856116891,-0.0019873271230608225,4.5612116082338616e-05,5.120327841723338e-05,3.7335721572162583e-05,-0.002192912856116891,0.0003620809584390372,5.120327841723338e-05,-1.0946907423203811e-05,-3.938713689422002e-06,8.893845946170154e-21,-0.0019873271230608225,5.120327841723338e-05,0.0002944004372693598,7.13102147103665e-21,-3.531260517775081e-06,-8.00051202531904e-06,4.5612116082338616e-05,-1.0946907423203811e-05,7.13102147103665e-21,4.21034911823881e-07,7.109395126999054e-24,-2.4672941261865777e-22,5.120327841723338e-05,-3.938713689422002e-06,-3.531260517775081e-06,7.109395126999054e-24,2.716354288168077e-07,-1.7205356741102976e-22,3.7335721572162583e-05,8.893845946170154e-21,-8.00051202531904e-06,-2.4672941261865777e-22,-1.7205356741102976e-22,2.758797279511782e-07,27.0,31.0,0.02694721333682537,-0.002123722108080983,-0.0018663012888282537,4.4140757381683215e-05,4.800307215191424e-05,3.394156738067977e-05,-0.002123722108080983,0.0003505200438667089,4.800307215191424e-05,-1.0593781553325243e-05,-3.6925439417245798e-06,-2.0752307207730358e-20,-0.0018663012888282537,4.800307215191424e-05,0.00026720872847363353,-3.059496162824151e-20,-3.200204901077086e-06,-7.022393219813239e-06,4.4140757381683215e-05,-1.0593781553325243e-05,-3.059496162824151e-20,4.0745314322521153e-07,4.722973095995126e-22,7.4449541839848e-22,4.800307215191424e-05,-3.6925439417245798e-06,-3.200204901077086e-06,4.722973095995126e-22,2.4616960558887513e-07,9.26442286059391e-23,3.394156738067977e-05,-2.0752307207730358e-20,-7.022393219813239e-06,7.4449541839848e-22,9.26442286059391e-23,2.3407976357248117e-07,27.0,32.0,0.026159020140767097,-0.0020587649196386337,-0.0017560054548084736,4.276135587133467e-05,4.5093795051798224e-05,3.094672138104215e-05,-0.0020587649196386337,0.00033967470517382026,4.5093795051798224e-05,-1.0262725481879897e-05,-3.4687534480326576e-06,6.564505341220828e-21,-0.0017560054548084736,4.5093795051798224e-05,0.0002432668989058584,6.5533577899969685e-21,-2.9092771001160145e-06,-6.1893442762084305e-06,4.276135587133467e-05,-1.0262725481879897e-05,6.5533577899969685e-21,3.9472021740039054e-07,-2.5433345745424932e-23,-2.0643918123249775e-22,4.5093795051798224e-05,-3.4687534480326576e-06,-2.9092771001160145e-06,-2.5433345745424932e-23,2.2379055053534103e-07,-7.940933880509066e-23,3.094672138104215e-05,6.564505341220828e-21,-6.1893442762084305e-06,-2.0643918123249775e-22,-7.940933880509066e-23,1.9965627018336818e-07,27.0,33.0,0.02541562356054783,-0.001997664337977767,-0.0016552074812352657,4.14655587519519e-05,4.244121737428941e-05,2.829414552252274e-05,-0.001997664337977767,0.00032948044827207923,4.244121737428941e-05,-9.951733773050364e-06,-3.264709221184603e-06,-3.091670257478196e-20,-0.0016552074812352657,4.244121737428941e-05,0.0002221033355453983,-3.453128475000836e-20,-2.652576085893088e-06,-5.476286332850577e-06,4.14655587519519e-05,-9.951733773050364e-06,-3.453128475000836e-20,3.8275899783002387e-07,3.727018154016087e-22,8.249500925662972e-22,4.244121737428941e-05,-3.264709221184603e-06,-2.652576085893088e-06,3.727018154016087e-22,2.0404432632403768e-07,5.227781471335135e-22,2.829414552252274e-05,-3.091670257478196e-20,-5.476286332850577e-06,8.249500925662972e-22,5.227781471335135e-22,1.7113394790158054e-07,27.0,34.0,0.02471330761909485,-0.0019400863675400615,-0.001562847406603396,4.024598456453532e-05,4.001600609626621e-05,2.5936300517059863e-05,-0.0019400863675400615,0.0003198803751729429,4.001600609626621e-05,-9.659035640652291e-06,-3.0781543500779662e-06,-2.3505164286306834e-20,-0.001562847406603396,4.001600609626621e-05,0.00020332628628239036,-3.269340575118917e-20,-2.4252124148915755e-06,-4.863056346948724e-06,4.024598456453532e-05,-9.659035640652291e-06,-3.269340575118917e-20,3.715013860983163e-07,3.5025209621646704e-22,7.587835195493327e-22,4.001600609626621e-05,-3.0781543500779662e-06,-2.4252124148915755e-06,3.5025209621646704e-22,1.8655481426321785e-07,1.7205356741102976e-22,2.5936300517059863e-05,-2.3505164286306834e-20,-4.863056346948724e-06,7.587835195493327e-22,1.7205356741102976e-22,1.4736534126313927e-07,27.0,35.0,0.024048760533332825,-0.0018857350805774331,-0.001478008576668799,3.9096099499147385e-05,3.779289545491338e-05,2.383335777267348e-05,-0.0018857350805774331,0.0003108240198343992,3.779289545491338e-05,-9.383063115819823e-06,-2.9071456992824096e-06,-1.207021949837378e-20,-0.001478008576668799,3.779289545491338e-05,0.00018660844943951815,-1.1159496067333597e-20,-2.223111550847534e-06,-4.333337528805714e-06,3.9096099499147385e-05,-9.383063115819823e-06,-1.1159496067333597e-20,3.6088707133785647e-07,1.6217411955864423e-23,3.2201968580814433e-22,3.779289545491338e-05,-2.9071456992824096e-06,-2.223111550847534e-06,1.6217411955864423e-23,1.7100857974128303e-07,2.183756817139993e-22,2.383335777267348e-05,-1.207021949837378e-20,-4.333337528805714e-06,3.2201968580814433e-22,2.183756817139993e-22,1.274511021165381e-07,27.0,36.0,0.02341901697218418,-0.001834346679970622,-0.0013998961076140404,3.8010093703633174e-05,3.575003574951552e-05,2.195177694375161e-05,-0.001834346679970622,0.00030226638773456216,3.575003574951552e-05,-9.122422852669843e-06,-2.750002749962732e-06,-2.191697751020502e-20,-0.0013998961076140404,3.575003574951552e-05,0.00017167501209769398,-3.120676185762678e-20,-2.0428592506505083e-06,-3.873843070323346e-06,3.8010093703633174e-05,-9.122422852669843e-06,-3.120676185762678e-20,3.5086242178294924e-07,4.6997747793653655e-22,6.419790941237921e-22,3.575003574951552e-05,-2.750002749962732e-06,-2.0428592506505083e-06,4.6997747793653655e-22,1.57143020373951e-07,2.713152409173931e-22,2.195177694375161e-05,-2.191697751020502e-20,-3.873843070323346e-06,6.419790941237921e-22,2.713152409173931e-22,1.1068122773849609e-07,27.0,37.0,0.02282140962779522,-0.0017856850754469633,-0.0013278170954436064,3.6982793972129e-05,3.386845492059365e-05,2.0263178157620132e-05,-0.0017856850754469633,0.0002941674320027232,3.386845492059365e-05,-8.875870662450325e-06,-2.6052657631225884e-06,3.494010907423989e-21,-0.0013278170954436064,3.386845492059365e-05,0.00015829401672817767,7.30870939857713e-21,-1.8815808289218694e-06,-3.473687684163451e-06,3.6982793972129e-05,-8.875870662450325e-06,7.30870939857713e-21,3.413796605400421e-07,-1.8406756558786023e-22,-1.365508634388964e-22,3.386845492059365e-05,-2.6052657631225884e-06,-1.8815808289218694e-06,-1.8406756558786023e-22,1.447369868401438e-07,0.0,2.0263178157620132e-05,3.494010907423989e-21,-3.473687684163451e-06,-1.365508634388964e-22,0.0,9.649132692857165e-08,27.0,38.0,0.02225354127585888,-0.001739538973197341,-0.0012611657148227096,3.6009565519634634e-05,3.2131611078511924e-05,1.8743439795798622e-05,-0.001739538973197341,0.0002864912385120988,3.2131611078511924e-05,-8.642295142635703e-06,-2.471662355674198e-06,2.541098841762901e-21,-0.0012611657148227096,3.2131611078511924e-05,0.0001462687796447426,6.818802795063363e-21,-1.7368438420817256e-06,-3.123906708424329e-06,3.6009565519634634e-05,-8.642295142635703e-06,6.818802795063363e-21,3.3239598451473285e-07,-1.6543724584853457e-22,-1.2616535184948073e-22,3.2131611078511924e-05,-2.471662355674198e-06,-1.7368438420817256e-06,-1.6543724584853457e-22,1.3360337902668107e-07,3.970466940254533e-23,1.8743439795798622e-05,2.541098841762901e-21,-3.123906708424329e-06,-1.2616535184948073e-22,3.970466940254533e-23,8.44299066216081e-08,27.0,39.0,0.021713245660066605,-0.001695718034170568,-0.0011994102969765663,3.508624286041595e-05,3.052503234357573e-05,1.737196907924954e-05,-0.001695718034170568,0.00027920553111471236,3.052503234357573e-05,-8.420697668043431e-06,-2.3480793061025906e-06,-5.823351512373315e-21,-0.0011994102969765663,3.052503234357573e-05,0.0001354318083031103,-1.0815729821396789e-20,-1.6065805539255962e-06,-2.8170759378554067e-06,3.508624286041595e-05,-8.420697668043431e-06,-1.0815729821396789e-20,3.23872995977581e-07,1.491056289216995e-22,2.3361465686734363e-22,3.052503234357573e-05,-2.3480793061025906e-06,-1.6065805539255962e-06,1.491056289216995e-22,1.2358312062588084e-07,-1.9852334701272664e-23,1.737196907924954e-05,-5.823351512373315e-21,-2.8170759378554067e-06,2.3361465686734363e-22,-1.9852334701272664e-23,7.4133581051683e-08,27.0,40.0,0.021198563277721405,-0.001654051011428237,-0.0011420828523114324,3.420908615225926e-05,2.9036003979854286e-05,1.6131114534800872e-05,-0.001654051011428237,0.0002722812059801072,2.9036003979854286e-05,-8.210180567402858e-06,-2.2335389076033607e-06,-6.670384459627615e-21,-0.0011420828523114324,2.9036003979854286e-05,0.00012563982454594225,-1.0203141185490184e-20,-1.4890258626110153e-06,-2.5470178570685675e-06,3.420908615225926e-05,-8.210180567402858e-06,-1.0203141185490184e-20,3.157761909733381e-07,1.3474057281182073e-22,2.167054927836909e-22,2.9036003979854286e-05,-2.2335389076033607e-06,-1.4890258626110153e-06,1.3474057281182073e-22,1.1454045534264878e-07,5.293955920339377e-23,1.6131114534800872e-05,-6.670384459627615e-21,-2.5470178570685675e-06,2.167054927836909e-22,5.293955920339377e-23,6.530814999905488e-08,27.0,41.0,0.020707715302705765,-0.0016143828397616744,-0.0010887697571888566,3.337471935083158e-05,2.7653337383526377e-05,1.5005687600933015e-05,-0.0016143828397616744,0.0002656920987647027,2.7653337383526377e-05,-8.009932571440004e-06,-2.127179868693929e-06,3.5998900258307764e-21,-0.0010887697571888566,2.7653337383526377e-05,0.00011676980648189783,4.027804127636382e-21,-1.3826669373884215e-06,-2.3085672182787675e-06,3.337471935083158e-05,-8.009932571440004e-06,4.027804127636382e-21,3.0807433404334006e-07,7.640713280344869e-38,-1.0069510319090956e-22,2.7653337383526377e-05,-2.127179868693929e-06,-1.3826669373884215e-06,7.640713280344869e-38,1.0635898917144004e-07,-5.293955920339377e-23,1.5005687600933015e-05,3.5998900258307764e-21,-2.3085672182787675e-06,-1.0069510319090956e-22,-5.293955920339377e-23,5.771418187805466e-08,27.0,42.0,0.020239081233739853,-0.0015765728894621134,-0.0010391048854216933,3.2580082915956154e-05,2.6367135433247313e-05,1.39825724545517e-05,-0.0015765728894621134,0.00025941437343135476,2.6367135433247313e-05,-7.819219717930537e-06,-2.0282411696825875e-06,1.5881867761018131e-21,-0.0010391048854216933,2.6367135433247313e-05,0.00010871571430470794,3.843448671994327e-21,-1.286201722905389e-06,-2.09738573175855e-06,3.2580082915956154e-05,-7.819219717930537e-06,3.843448671994327e-21,3.0073923085183196e-07,-6.465218929522581e-38,-9.374265115214332e-23,2.6367135433247313e-05,-2.0282411696825875e-06,-1.286201722905389e-06,-6.465218929522581e-38,9.893859953535866e-08,3.970466940254533e-23,1.39825724545517e-05,1.5881867761018131e-21,-2.09738573175855e-06,-9.374265115214332e-23,3.970466940254533e-23,5.1155751634723856e-08,27.0,43.0,0.019791189581155777,-0.0015404936857521534,-0.0009927626233547926,3.182240470778197e-05,2.5168630600092e-05,1.3050400411884766e-05,-0.0015404936857521534,0.0002534265222493559,2.5168630600092e-05,-7.637377166247461e-06,-1.936048420247971e-06,1.5352472168984194e-21,-0.0009927626233547926,2.5168630600092e-05,0.00010138582729268819,3.671472248868941e-21,-1.1985061973973643e-06,-1.9098147276963573e-06,3.182240470778197e-05,-7.637377166247461e-06,3.671472248868941e-21,2.93745273438617e-07,-6.465218929522581e-38,-8.741600562493253e-23,2.5168630600092e-05,-1.936048420247971e-06,-1.1985061973973643e-06,-6.465218929522581e-38,9.21927849617532e-08,3.3087224502121107e-23,1.3050400411884766e-05,1.5352472168984194e-21,-1.9098147276963573e-06,-8.741600562493253e-23,3.3087224502121107e-23,4.547177923086565e-08,27.0,44.0,0.019362691789865494,-0.0015060290461406112,-0.0009494530968368053,3.1099167244974524e-05,2.405002487648744e-05,1.2199287994008046e-05,-0.0015060290461406112,0.0002477088710293174,2.405002487648744e-05,-7.4638005571614485e-06,-1.8500018086342607e-06,2.0117032497289633e-21,-0.0009494530968368053,2.405002487648744e-05,9.470051736570895e-05,3.510790799293381e-21,-1.11860572360456e-06,-1.7427553302695742e-06,3.1099167244974524e-05,-7.4638005571614485e-06,3.510790799293381e-21,2.8706924126709055e-07,0.0,-8.164629589680778e-23,2.405002487648744e-05,-1.8500018086342607e-06,-1.11860572360456e-06,0.0,8.60465974028557e-08,0.0,1.2199287994008046e-05,2.0117032497289633e-21,-1.7427553302695742e-06,-8.164629589680778e-23,0.0,4.052919422292689e-08,27.0,45.0,0.018952352926135063,-0.0014730730326846242,-0.0009089173981919885,3.0408076781895943e-05,2.300437154190149e-05,1.1420609553169925e-05,-0.0014730730326846242,0.00024224355001933873,2.300437154190149e-05,-7.297938282135874e-06,-1.7695670067041647e-06,2.8587361969832636e-21,-0.0009089173981919885,2.300437154190149e-05,8.859043737174943e-05,3.3604355768324882e-21,-1.045653220899112e-06,-1.5935734154481906e-06,3.0408076781895943e-05,-7.297938282135874e-06,3.3604355768324882e-21,2.806899317420175e-07,8.228460455756013e-38,-7.637353698453605e-23,2.300437154190149e-05,-1.7695670067041647e-06,-1.045653220899112e-06,8.228460455756013e-38,8.043486587894222e-08,-3.970466940254533e-23,1.1420609553169925e-05,2.8587361969832636e-21,-1.5935734154481906e-06,-7.637353698453605e-23,-3.970466940254533e-23,3.6217578269770456e-08,27.0,46.0,0.0185590460896492,-0.001441528438590467,-0.00087092345347628,2.974703056679573e-05,2.2025460566510446e-05,1.0706821740313899e-05,-0.001441528438590467,0.0002370142174186185,2.2025460566510446e-05,-7.139287390600657e-06,-1.6942663023655768e-06,1.2705494208814505e-21,-0.00087092345347628,2.2025460566510446e-05,8.299501496367157e-05,3.2195402228857118e-21,-9.789093837753171e-07,-1.4600211670767749e-06,2.974703056679573e-05,-7.139287390600657e-06,3.2195402228857118e-21,2.745879896792758e-07,-5.289724578700294e-38,-7.154533590223619e-23,2.2025460566510446e-05,-1.6942663023655768e-06,-9.789093837753171e-07,-5.289724578700294e-38,7.530072565486989e-08,2.3161057151484775e-23,1.0706821740313899e-05,1.2705494208814505e-21,-1.4600211670767749e-06,-7.154533590223619e-23,2.3161057151484775e-23,3.244491253440174e-08,27.0,47.0,0.018181730061769485,-0.001411306788213551,-0.0008352631703019142,2.9114115022821352e-05,2.110773311869707e-05,1.0051301615021657e-05,-0.001411306788213551,0.00023200591385830194,2.110773311869707e-05,-6.987387678236701e-06,-1.6236718920481508e-06,-1.764975023557107e-21,-0.0008352631703019142,2.110773311869707e-05,7.786117203067988e-05,-1.0376153603865179e-20,-9.177275615002145e-07,-1.3401735259321867e-06,2.9114115022821352e-05,-6.987387678236701e-06,-1.0376153603865179e-20,2.687456799321808e-07,3.9042924912502906e-22,8.937847067606895e-23,2.110773311869707e-05,-1.6236718920481508e-06,-9.177275615002145e-07,3.9042924912502906e-22,7.05944245282808e-08,-1.5017414101782135e-23,1.0051301615021657e-05,-1.764975023557107e-21,-1.3401735259321867e-06,8.937847067606895e-23,-1.5017414101782135e-23,2.9134207935044287e-08,27.0,48.0,0.017819451168179512,-0.001382326357997954,-0.0008017492946237326,2.8507571187219582e-05,2.0246194253559224e-05,9.448223863728344e-06,-0.001382326357997954,0.00022720490233041346,2.0246194253559224e-05,-6.841817139502382e-06,-1.5573995142403874e-06,1.7817914680854037e-21,-0.0008017492946237326,2.0246194253559224e-05,7.314226240850985e-05,8.893845946170154e-21,-8.615401725364791e-07,-1.232377030646603e-06,2.8507571187219582e-05,-6.841817139502382e-06,8.893845946170154e-21,2.631468021263572e-07,-4.036641389258775e-22,-5.686479222825421e-23,2.0246194253559224e-05,-1.5573995142403874e-06,-8.615401725364791e-07,-4.036641389258775e-22,6.627232096434454e-08,-1.4529924883626327e-23,9.448223863728344e-06,1.7817914680854037e-21,-1.232377030646603e-06,-5.686479222825421e-23,-1.4529924883626327e-23,2.6220787319175543e-08,27.0,49.0,0.017471326515078545,-0.0013545122928917408,-0.0007702128496021032,2.7925783797400072e-05,1.943634561030194e-05,8.892446203390136e-06,-0.0013545122928917408,0.0002225985808763653,1.943634561030194e-05,-6.702188329654746e-06,-1.495103560955613e-06,3.2242619782329047e-21,-0.0007702128496021032,1.943634561030194e-05,6.879719148855656e-05,-1.6940658945086007e-21,-8.098477337625809e-07,-1.1352058209013194e-06,2.7925783797400072e-05,-6.702188329654746e-06,-1.6940658945086007e-21,2.577764632860635e-07,2.9116757561866574e-22,-6.946859330492584e-23,1.943634561030194e-05,-1.495103560955613e-06,-8.098477337625809e-07,2.9116757561866574e-22,6.229598170648387e-08,-3.8901949788941394e-23,8.892446203390136e-06,3.2242619782329047e-21,-1.1352058209013194e-06,-6.946859330492584e-23,-3.8901949788941394e-23,2.3650121860896434e-08,27.0,50.0,0.01713654212653637,-0.0013277954421937466,-0.0007405013311654329,2.7367268558009528e-05,1.8674136299523525e-05,8.379420251003467e-06,-0.0013277954421937466,0.00021817533706780523,1.8674136299523525e-05,-6.568144272023346e-06,-1.4364720755111193e-06,-1.4922103990322205e-21,-0.0007405013311654329,1.8674136299523525e-05,6.478965224232525e-05,2.117582368135751e-22,-7.622096518389299e-07,-1.0474275313754333e-06,2.7367268558009528e-05,-6.568144272023346e-06,2.117582368135751e-22,2.526209357256448e-07,-1.5881867761018131e-22,3.86272778880743e-23,1.8674136299523525e-05,-1.4364720755111193e-06,-7.622096518389299e-07,-1.5881867761018131e-22,5.8631510313489343e-08,2.2460719061604044e-23,8.379420251003467e-06,-1.4922103990322205e-21,-1.0474275313754333e-06,3.86272778880743e-23,2.2460719061604044e-23,2.137607246766038e-08,27.0,51.0,0.016814345493912697,-0.0013021123595535755,-0.0007124765543267131,2.683065577002708e-05,1.795590105757583e-05,7.905113307060674e-06,-0.0013021123595535755,0.0002139244752470404,1.795590105757583e-05,-6.439357548515545e-06,-1.381223114549357e-06,-1.187827320658313e-21,-0.0007124765543267131,1.795590105757583e-05,6.108749221311882e-05,-1.6940658945086007e-21,-7.182360377555597e-07,-9.679730510470108e-07,2.683065577002708e-05,-6.439357548515545e-06,-1.6940658945086007e-21,2.47667600206114e-07,5.293955920339377e-23,1.8230542387499564e-23,1.795590105757583e-05,-1.381223114549357e-06,-7.182360377555597e-07,5.293955920339377e-23,5.524892543462556e-08,1.914956218663842e-23,7.905113307060674e-06,-1.187827320658313e-21,-9.679730510470108e-07,1.8230542387499564e-23,1.914956218663842e-23,1.9359461589374405e-08,27.0,52.0,0.016504041850566864,-0.0012774040224030614,-0.0006860132561996579,2.631468123581726e-05,1.727831840980798e-05,7.46594059819472e-06,-0.0012774040224030614,0.0002098361001117155,1.727831840980798e-05,-6.315523478406249e-06,-1.3291014511196408e-06,2.062622719169816e-21,-0.0006860132561996579,1.727831840980798e-05,5.7662156905280426e-05,-5.717472393966527e-21,-6.775811698389589e-07,-8.959128194874211e-07,2.631468123581726e-05,-6.315523478406249e-06,-5.717472393966527e-21,2.4290474698318576e-07,5.591740940858467e-22,-4.679979166918622e-23,1.727831840980798e-05,-1.3291014511196408e-06,-6.775811698389589e-07,5.591740940858467e-22,5.212162790257935e-08,-2.589592431391567e-23,7.46594059819472e-06,2.062622719169816e-21,-8.959128194874211e-07,-4.679979166918622e-23,-2.589592431391567e-23,1.756691858645354e-08,27.0,53.0,0.01620498299598694,-0.0012536159483715892,-0.0006609975243918598,2.5818177164182998e-05,1.6638381566735916e-05,7.058707069518277e-06,-0.0012536159483715892,0.00020590107305906713,1.6638381566735916e-05,-6.196362846822012e-06,-1.279875505133532e-06,-5.079863564014111e-21,-0.0006609975243918598,1.6638381566735916e-05,5.4488245950778946e-05,-9.105604182983729e-21,-6.39937752566766e-07,-8.304361358568713e-07,2.5818177164182998e-05,-6.196362846822012e-06,-9.105604182983729e-21,2.383216468615501e-07,3.970466940254533e-23,1.4931387557890335e-22,1.6638381566735916e-05,-1.279875505133532e-06,-6.39937752566766e-07,3.970466940254533e-23,4.922598151324564e-08,3.6803229526811584e-23,7.058707069518277e-06,-5.079863564014111e-21,-8.304361358568713e-07,1.4931387557890335e-22,3.6803229526811584e-23,1.596992582619805e-08,27.0,54.0,0.015916569158434868,-0.0012306977296248078,-0.0006373256328515708,2.5340063075418584e-05,1.6033349311328493e-05,6.680562364635989e-06,-0.0012306977296248078,0.00020211092487443238,1.6033349311328493e-05,-6.081615083530778e-06,-1.2333346148807323e-06,3.3644731310284777e-21,-0.0006373256328515708,1.6033349311328493e-05,5.154310565558262e-05,1.0376153603865179e-20,-6.050320280337473e-07,-7.708341058787482e-07,2.5340063075418584e-05,-6.081615083530778e-06,1.0376153603865179e-20,2.3390828118863283e-07,-3.5072457972248373e-22,-1.0081748391630193e-22,1.6033349311328493e-05,-1.2333346148807323e-06,-6.050320280337473e-07,-3.5072457972248373e-22,4.6540925779936515e-08,-2.0673127118215212e-23,6.680562364635989e-06,3.3644731310284777e-21,-7.708341058787482e-07,-1.0081748391630193e-22,-2.0673127118215212e-23,1.454403975031937e-08,27.0,55.0,0.015638243407011032,-0.001208602567203343,-0.0006149030523374677,2.487933488737326e-05,1.5460729628102854e-05,6.3289535319199786e-06,-0.001208602567203343,0.00019845781207550317,1.5460729628102854e-05,-5.971040536678629e-06,-1.1892868769791676e-06,2.4567217744694823e-21,-0.0006149030523374677,1.5460729628102854e-05,4.880648702965118e-05,5.293955920339377e-21,-5.726196263822203e-07,-7.164853172980656e-07,2.487933488737326e-05,-5.971040536678629e-06,5.293955920339377e-21,2.2965539869801432e-07,-6.28657265540301e-23,-7.048453886576739e-23,1.5460729628102854e-05,-1.1892868769791676e-06,-5.726196263822203e-07,-6.28657265540301e-23,4.404766329457743e-08,-1.9113916717775105e-23,6.3289535319199786e-06,2.4567217744694823e-21,-7.164853172980656e-07,-7.048453886576739e-23,-1.9113916717775105e-23,1.3268246945585815e-08,27.0,56.0,0.015369482338428497,-0.0011872868053615093,-0.0005936434026807547,2.4435061277472414e-05,1.4918247870809864e-05,6.001594101689989e-06,-0.0011872868053615093,0.00019493441504891962,1.4918247870809864e-05,-5.864414561074227e-06,-1.1475575547592598e-06,3.051579745478399e-21,-0.0005936434026807547,1.4918247870809864e-05,4.626025111065246e-05,5.082197683525802e-21,-5.424817572929896e-07,-6.668437890766654e-07,2.4435061277472414e-05,-5.864414561074227e-06,5.082197683525802e-21,2.2555441603344661e-07,2.3161057151484775e-23,-8.358320185461503e-23,1.4918247870809864e-05,-1.1475575547592598e-06,-5.424817572929896e-07,2.3161057151484775e-23,4.172936485247192e-08,-2.490665329572326e-23,6.001594101689989e-06,3.051579745478399e-21,-6.668437890766654e-07,-8.358320185461503e-23,-2.490665329572326e-23,1.212443212494918e-08,27.0,57.0,0.015109802596271038,-0.0011667099315673113,-0.0005734675796702504,2.4006376406759955e-05,1.4403825844055973e-05,5.696428161172662e-06,-0.0011667099315673113,0.0001915339526021853,1.4403825844055973e-05,-5.761530246672919e-06,-1.107986577153497e-06,-1.654402927448949e-21,-0.0005734675796702504,1.4403825844055973e-05,4.3888125219382346e-05,-2.329340604949326e-21,-5.144223678144044e-07,-6.214285122041474e-07,2.4006376406759955e-05,-5.761530246672919e-06,-2.329340604949326e-21,2.2159731827287033e-07,-1.6543612251060553e-23,4.415471265498758e-23,1.4403825844055973e-05,-1.107986577153497e-06,-5.144223678144044e-07,-1.6543612251060553e-23,3.957094918405346e-08,1.8291519757751337e-23,5.696428161172662e-06,-1.654402927448949e-21,-6.214285122041474e-07,4.415471265498758e-23,1.8291519757751337e-23,1.1096938479226992e-08,27.0,58.0,0.014858752489089966,-0.001146834110841155,-0.0005543031729757786,2.359247264394071e-05,1.391555997543037e-05,5.411606707639294e-06,-0.001146834110841155,0.0001882500946521759,1.391555997543037e-05,-5.662193416355876e-06,-1.070427742888569e-06,1.9859679564280124e-21,-0.0005543031729757786,1.391555997543037e-05,4.167547740507871e-05,5.399835038746165e-21,-4.88265300191415e-07,-5.79815036871878e-07,2.359247264394071e-05,-5.662193416355876e-06,5.399835038746165e-21,2.177766731392694e-07,-1.4227506535912076e-22,-5.1643665839951006e-23,1.391555997543037e-05,-1.070427742888569e-06,-4.88265300191415e-07,-1.4227506535912076e-22,3.755886623935112e-08,-2.13148796641088e-23,5.411606707639294e-06,1.9859679564280124e-21,-5.79815036871878e-07,-5.1643665839951006e-23,-2.13148796641088e-23,1.0172192865809393e-08,27.0,59.0,0.01461590826511383,-0.0011276241857558489,-0.0005360836512409151,2.3192600565380417e-05,1.3451708582579158e-05,5.1454621825541835e-06,-0.0011276241857558489,0.0001850769476732239,1.3451708582579158e-05,-5.566223990172148e-06,-1.0347467878091265e-06,1.2798344273318722e-22,-0.0005360836512409151,1.3451708582579158e-05,3.9609119994565845e-05,-2.6469779601696886e-21,-4.638520181288186e-07,-5.416276280811871e-07,2.3192600565380417e-05,-5.566223990172148e-06,-2.6469779601696886e-21,2.1408554573554284e-07,2.3822801641527197e-22,-8.759886200504095e-24,1.3451708582579158e-05,-1.0347467878091265e-06,-4.638520181288186e-07,2.3822801641527197e-22,3.5680923105019247e-08,2.9790434756391822e-24,5.1454621825541835e-06,1.2798344273318722e-22,-5.416276280811871e-07,-8.759886200504095e-24,2.9790434756391822e-24,9.338406492531703e-09,27.0,60.0,0.01438087411224842,-0.0011090473271906376,-0.0005187479546293616,2.2806058041169308e-05,1.3010669135837816e-05,4.896488462691195e-06,-0.0011090473271906376,0.00018200901104137301,1.3010669135837816e-05,-5.4734537116019055e-06,-1.000820702756755e-06,-1.708535092879743e-21,-0.0005187479546293616,1.3010669135837816e-05,3.7677164073102176e-05,2.117582368135751e-22,-4.4103961727159913e-07,-5.065332402409695e-07,2.2806058041169308e-05,-5.4734537116019055e-06,2.117582368135751e-22,2.105174559119405e-07,-2.481541837659083e-22,5.147912523234001e-23,1.3010669135837816e-05,-1.000820702756755e-06,-4.4103961727159913e-07,-2.481541837659083e-22,3.392612413222196e-08,7.712990470907101e-24,4.896488462691195e-06,-1.708535092879743e-21,-5.065332402409695e-07,5.147912523234001e-23,7.712990470907101e-24,8.58530935232693e-09,27.0,61.0,0.01415327936410904,-0.001091072685085237,-0.000502239796333015,2.24321865971433e-05,1.2590970072778873e-05,4.6633222154923715e-06,-0.001091072685085237,0.0001790411479305476,1.2590970072778873e-05,-5.383724783314392e-06,-9.68536141954246e-07,6.589636606882094e-22,-0.000502239796333015,1.2590970072778873e-05,3.5868852137355134e-05,3.0704944337968387e-21,-4.1969897779381427e-07,-4.742361454646016e-07,2.24321865971433e-05,-5.383724783314392e-06,3.0704944337968387e-21,2.0706634984435368e-07,-9.26442286059391e-23,-2.7672211880532686e-23,1.2590970072778873e-05,-9.68536141954246e-07,-4.1969897779381427e-07,-9.26442286059391e-23,3.2284539486227004e-08,-8.728082287033978e-25,4.6633222154923715e-06,6.589636606882094e-22,-4.742361454646016e-07,-2.7672211880532686e-23,-8.728082287033978e-25,7.903936172226622e-09,27.0,62.0,0.01393277570605278,-0.0010736713884398341,-0.00048650731332600117,2.2070378690841608e-05,1.2191256246296689e-05,4.444728801900055e-06,-0.0010736713884398341,0.0001761685125529766,1.2191256246296689e-05,-5.296890776662622e-06,-9.377889682582463e-07,1.2818633775801006e-21,-0.00048650731332600117,1.2191256246296689e-05,3.417444895603694e-05,2.6469779601696886e-21,-3.997133148914145e-07,-4.4447290292737307e-07,2.2070378690841608e-05,-5.296890776662622e-06,2.6469779601696886e-21,2.0372657161260577e-07,5.624828165360588e-23,-5.0496624218436204e-23,1.2191256246296689e-05,-9.377889682582463e-07,-3.997133148914145e-07,5.624828165360588e-23,3.074717724871334e-08,2.8113866702373342e-24,4.444728801900055e-06,1.2818633775801006e-21,-4.4447290292737307e-07,-5.0496624218436204e-23,2.8113866702373342e-24,7.2864407840711465e-09,27.0,63.0,0.013719037175178528,-0.001056816428899765,-0.0004715027171187103,2.17200540646445e-05,1.181027982966043e-05,4.2395877244416624e-06,-0.001056816428899765,0.00017338659381493926,1.181027982966043e-05,-5.212812993704574e-06,-9.084830594474624e-07,-4.7939385686449265e-21,-0.0004715027171187103,1.181027982966043e-05,3.2585125154582784e-05,-6.776263578034403e-21,-3.8097675769677153e-07,-4.1700860720084165e-07,2.17200540646445e-05,-5.212812993704574e-06,-6.776263578034403e-21,2.0049280635703326e-07,-1.0257039595657543e-22,1.2744883485316256e-22,1.181027982966043e-05,-9.084830594474624e-07,-3.8097675769677153e-07,-1.0257039595657543e-22,2.9305905258070197e-08,3.7015600348827943e-23,4.2395877244416624e-06,-4.7939385686449265e-21,-4.1700860720084165e-07,1.2744883485316256e-22,3.7015600348827943e-23,6.725945578267556e-09,27.0,64.0,0.013511757366359234,-0.0010404825443401933,-0.00045718171168118715,2.1380677935667336e-05,1.1446886674093548e-05,4.046878984809155e-06,-0.0010404825443401933,0.00017069120076484978,1.1446886674093548e-05,-5.131362740939949e-06,-8.805297397884715e-07,4.425198576792406e-21,-0.00045718171168118715,1.1446886674093548e-05,3.109285535174422e-05,1.0693790959085542e-20,-3.633932124103012e-07,-3.916334492259921e-07,2.1380677935667336e-05,-5.131362740939949e-06,1.0693790959085542e-20,1.9736010870019527e-07,-1.7205356741102976e-22,-1.2914328283402832e-22,1.1446886674093548e-05,-8.805297397884715e-07,-3.633932124103012e-07,-1.7205356741102976e-22,2.7953324988061468e-08,-2.5984172605660935e-23,4.046878984809155e-06,4.425198576792406e-21,-3.916334492259921e-07,-1.2914328283402832e-22,-2.5984172605660935e-23,6.216404280223742e-09,28.0,3.0,0.16687192022800446,-0.017241379246115685,-0.1034482792019844,0.0004105090338271111,0.0036945813335478306,0.01785714365541935,-0.017241379246115685,0.003013908164575696,0.0036945813335478306,-9.473285172134638e-05,-0.0002736726892180741,-7.806255641895632e-18,-0.1034482792019844,0.0036945813335478306,0.282019704580307,-2.85164648365186e-19,-0.0036945813335478306,-0.1071428582072258,0.0004105090338271111,-9.473285172134638e-05,-2.85164648365186e-19,3.5086241041426547e-06,3.2545298517250894e-22,1.4181738891113458e-19,0.0036945813335478306,-0.0002736726892180741,-0.0036945813335478306,3.2545298517250894e-22,0.0002736726892180741,3.0357660829594124e-18,0.01785714365541935,-7.806255641895632e-18,-0.1071428582072258,1.4181738891113458e-19,3.0357660829594124e-18,0.0535714291036129,28.0,4.0,0.13977833092212677,-0.01348522212356329,-0.06742610782384872,0.00030788176809437573,0.002216748660430312,0.008928571827709675,-0.01348522212356329,0.002301482018083334,0.002216748660430312,-7.104963879100978e-05,-0.00016420360771007836,-2.3852447794681098e-18,-0.06742610782384872,0.002216748660430312,0.10745073854923248,-2.3757410429165466e-19,-0.0014778325567021966,-0.02678571455180645,0.00030788176809437573,-7.104963879100978e-05,-2.3757410429165466e-19,2.631468078106991e-06,2.1605305306579774e-21,6.31287764511705e-20,0.002216748660430312,-0.00016420360771007836,-0.0014778325567021966,2.1605305306579774e-21,0.00010946907423203811,1.6263032587282567e-19,0.008928571827709675,-2.3852447794681098e-18,-0.02678571455180645,6.31287764511705e-20,1.6263032587282567e-19,0.008928571827709675,28.0,5.0,0.12030260264873505,-0.011083743534982204,-0.047501757740974426,0.00024630542611703277,0.0014778325567021966,0.005102040711790323,-0.011083743534982204,0.0018630794947966933,0.0014778325567021966,-5.683971176040359e-05,-0.00010946907423203811,-1.8973538018496328e-18,-0.047501757740974426,0.0014778325567021966,0.05436312407255173,-9.143743025336105e-20,-0.0007389162783510983,-0.010204081423580647,0.00024630542611703277,-5.683971176040359e-05,-9.143743025336105e-20,2.1051744170108577e-06,-1.4756780958910972e-21,2.819049622156618e-20,0.0014778325567021966,-0.00010946907423203811,-0.0007389162783510983,-1.4756780958910972e-21,5.4734537116019055e-05,4.87890977618477e-19,0.005102040711790323,-1.8973538018496328e-18,-0.010204081423580647,2.819049622156618e-20,4.87890977618477e-19,0.0025510203558951616,28.0,6.0,0.10560344904661179,-0.009412385523319244,-0.035296447575092316,0.00020525451691355556,0.0010555946500971913,0.0031887756194919348,-0.009412385523319244,0.0015655981842428446,0.0010555946500971913,-4.736642586067319e-05,-7.819219899829477e-05,1.6805133673525319e-18,-0.035296447575092316,0.0010555946500971913,0.031656842678785324,1.2076307030694287e-19,-0.00042223784839734435,-0.00478316331282258,0.00020525451691355556,-4.736642586067319e-05,1.2076307030694287e-19,1.7543120520713273e-06,-1.670286875278402e-21,-1.8131986435269898e-20,0.0010555946500971913,-7.819219899829477e-05,-0.00042223784839734435,-1.670286875278402e-21,3.127687887172215e-05,-4.2690460541616737e-19,0.0031887756194919348,1.6805133673525319e-18,-0.00478316331282258,-1.8131986435269898e-20,-4.2690460541616737e-19,0.0009566326625645161,28.0,7.0,0.0941091924905777,-0.008180858567357063,-0.027269529178738594,0.0001759324368322268,0.000791696016676724,0.002125850412994623,-0.008180858567357063,0.0013503191294148564,0.000791696016676724,-4.059979255544022e-05,-5.864414561074227e-05,-8.131516293641283e-20,-0.027269529178738594,0.000791696016676724,0.0201442651450634,2.19433939754313e-20,-0.00026389866252429783,-0.0025510203558951616,0.0001759324368322268,-4.059979255544022e-05,2.19433939754313e-20,1.5036961258374504e-06,5.633511441334282e-22,-3.204141254119014e-21,0.000791696016676724,-5.864414561074227e-05,-0.00026389866252429783,5.633511441334282e-22,1.9548049749573693e-05,4.0657581468206416e-20,0.002125850412994623,-8.131516293641283e-20,-0.0025510203558951616,-3.204141254119014e-21,4.0657581468206416e-20,0.00042517005931586027,28.0,8.0,0.08487274497747421,-0.007235221564769745,-0.021705664694309235,0.00015394088404718786,0.0006157635361887515,0.0014880952658131719,-0.007235221564769745,0.0011872306931763887,0.0006157635361887515,-3.552481939550489e-05,-4.5612116082338616e-05,1.111307226797642e-18,-0.021705664694309235,0.0006157635361887515,0.013642095029354095,1.8551634547063656e-19,-0.0001759324368322268,-0.0014880952658131719,0.00015394088404718786,-3.552481939550489e-05,1.8551634547063656e-19,1.3157340390534955e-06,-2.1530556128862396e-21,-2.0891147534842823e-20,0.0006157635361887515,-4.5612116082338616e-05,-0.0001759324368322268,-2.1530556128862396e-21,1.3032033166382462e-05,-1.3044307387716225e-19,0.0014880952658131719,1.111307226797642e-18,-0.0014880952658131719,-2.0891147534842823e-20,-1.3044307387716225e-19,0.00021258502965793014,28.0,9.0,0.07728765159845352,-0.006486042868345976,-0.017689207568764687,0.00013683634460903704,0.0004926108522340655,0.0010822510812431574,-0.006486042868345976,0.001059370581060648,0.0004926108522340655,-3.157761602778919e-05,-3.648969141067937e-05,-4.2012834183813297e-19,-0.017689207568764687,0.0004926108522340655,0.009678949601948261,-6.37298007143727e-20,-0.00012315271305851638,-0.0009276437922380865,0.00013683634460903704,-3.157761602778919e-05,-6.37298007143727e-20,1.1695414059431641e-06,-4.311085214660951e-22,9.249548957645727e-21,0.0004926108522340655,-3.648969141067937e-05,-0.00012315271305851638,-4.311085214660951e-22,9.122422852669843e-06,2.456395547037471e-20,0.0010822510812431574,-4.2012834183813297e-19,-0.0009276437922380865,9.249548957645727e-21,2.456395547037471e-20,0.00011595547402976081,28.0,10.0,0.07094715535640717,-0.005877743009477854,-0.01469435729086399,0.00012315271305851638,0.00040304524009115994,0.000811688310932368,-0.005877743009477854,0.0009564190404489636,0.00040304524009115994,-2.8419855880201794e-05,-2.9855202228645794e-05,-2.710505431213761e-19,-0.01469435729086399,0.00040304524009115994,0.007120932452380657,3.405991458547531e-20,-8.956560486694798e-05,-0.0006087662186473608,0.00012315271305851638,-2.8419855880201794e-05,3.405991458547531e-20,1.0525872085054289e-06,-6.968164128514324e-22,-1.893840715704919e-21,0.00040304524009115994,-2.9855202228645794e-05,-8.956560486694798e-05,-6.968164128514324e-22,6.634489182033576e-06,6.860966872759833e-20,0.000811688310932368,-2.710505431213761e-19,-0.0006087662186473608,-1.893840715704919e-21,6.860966872759833e-20,6.764069257769734e-05,28.0,11.0,0.06556805223226547,-0.005373936612159014,-0.012401391752064228,0.00011195700790267438,0.00033587103825993836,0.0006243756506592035,-0.005373936612159014,0.0008717336459085345,0.00033587103825993836,-2.5836232453002594e-05,-2.487933488737326e-05,-3.9979955110402976e-19,-0.012401391752064228,0.00033587103825993836,0.005394031293690205,-9.846869164226053e-20,-6.717420183122158e-05,-0.0004162504046689719,0.00011195700790267438,-2.5836232453002594e-05,-9.846869164226053e-20,9.568974519424955e-07,3.920793441903597e-22,8.8406390072961e-21,0.00033587103825993836,-2.487933488737326e-05,-6.717420183122158e-05,3.920793441903597e-22,4.975866886525182e-06,2.414043899674756e-20,0.0006243756506592035,-3.9979955110402976e-19,-0.0004162504046689719,8.8406390072961e-21,2.414043899674756e-20,4.162504046689719e-05,28.0,12.0,0.060947056859731674,-0.004949791356921196,-0.010606695897877216,0.00010262725845677778,0.00028419855516403913,0.0004905808600597084,-0.004949791356921196,0.0008008434670045972,0.00028419855516403913,-2.3683212930336595e-05,-2.1051744624855928e-05,-1.9651164376299768e-19,-0.010606695897877216,0.00028419855516403913,0.004185162018984556,-4.812099302837657e-20,-5.167246490600519e-05,-0.000294348516035825,0.00010262725845677778,-2.3683212930336595e-05,-4.812099302837657e-20,8.771560260356637e-07,1.2954489507631996e-21,2.330726576761814e-21,0.00028419855516403913,-2.1051744624855928e-05,-5.167246490600519e-05,1.2954489507631996e-21,3.827589807769982e-06,2.286988957586611e-20,0.0004905808600597084,-1.9651164376299768e-19,-0.000294348516035825,2.330726576761814e-21,2.286988957586611e-20,2.6758954845718108e-05,28.0,13.0,0.05693444609642029,-0.004587776958942413,-0.009175553917884827,9.473285172134638e-05,0.00024359876988455653,0.0003924646880477667,-0.004587776958942413,0.0007406281656585634,0.00024359876988455653,-2.1861427740077488e-05,-1.8044353055302054e-05,1.0164395367051604e-19,-0.009175553917884827,0.00024359876988455653,0.003313189372420311,-1.4793764979580042e-20,-4.059979255544022e-05,-0.00021407163876574486,9.473285172134638e-05,-2.1861427740077488e-05,-1.4793764979580042e-20,8.096824899439525e-07,3.2624177034708305e-22,7.551859099247414e-22,0.00024359876988455653,-1.8044353055302054e-05,-4.059979255544022e-05,3.2624177034708305e-22,3.0073922516749008e-06,-1.8211208365967457e-20,0.0003924646880477667,1.0164395367051604e-19,-0.00021407163876574486,7.551859099247414e-22,-1.8211208365967457e-20,1.783930383680854e-05,28.0,14.0,0.05341748893260956,-0.004275158513337374,-0.008015922270715237,8.79662184161134e-05,0.00021111892419867218,0.0003188775444868952,-0.004275158513337374,0.0006888431962579489,0.00021111892419867218,-2.029989627772011e-05,-1.5638439435861073e-05,-1.0503208545953324e-19,-0.008015922270715237,0.00021111892419867218,0.002668167697265744,-2.9383859351538775e-20,-3.2479834771947935e-05,-0.0001594387722434476,8.79662184161134e-05,-2.029989627772011e-05,-2.9383859351538775e-20,7.518480629187252e-07,5.756764583778951e-22,1.6474022854752046e-21,0.00021111892419867218,-1.5638439435861073e-05,-3.2479834771947935e-05,5.756764583778951e-22,2.4059138468146557e-06,8.893845946170154e-21,0.0003188775444868952,-1.0503208545953324e-19,-0.0001594387722434476,1.6474022854752046e-21,8.893845946170154e-21,1.2264521501492709e-05,28.0,15.0,0.050309691578149796,-0.004002463072538376,-0.007063169963657856,8.210180385503918e-05,0.00018472906958777457,0.00026260505546815693,-0.004002463072538376,0.0006438325508497655,0.00018472906958777457,-1.8946569980471395e-05,-1.3683634279004764e-05,8.470329472543003e-20,-0.007063169963657856,0.00018472906958777457,0.0021806468721479177,1.686786705118134e-20,-2.6389865524834022e-05,-0.00012120232713641599,8.210180385503918e-05,-1.8946569980471395e-05,1.686786705118134e-20,7.017248435658985e-07,-6.9298403822144735e-22,-4.641916565132836e-22,0.00018472906958777457,-1.3683634279004764e-05,-2.6389865524834022e-05,-6.9298403822144735e-22,1.954804929482634e-06,-8.893845946170154e-21,0.00026260505546815693,8.470329472543003e-20,-0.00012120232713641599,-4.641916565132836e-22,-8.893845946170154e-21,8.65730908117257e-06,28.0,16.0,0.04754358530044556,-0.0037624964024871588,-0.006270827259868383,7.697044202359393e-05,0.00016299623530358076,0.0002188375365221873,-0.0037624964024871588,0.0006043476168997586,0.00016299623530358076,-1.7762409697752446e-05,-1.2073795005562715e-05,1.1180834903756764e-19,-0.006270827259868383,0.00016299623530358076,0.0018052479717880487,2.0671568240714074e-20,-2.1732830646215007e-05,-9.378751565236598e-05,7.697044202359393e-05,-1.7762409697752446e-05,2.0671568240714074e-20,6.578670195267478e-07,-2.853954361989529e-22,-1.164293870672466e-21,0.00016299623530358076,-1.2073795005562715e-05,-2.1732830646215007e-05,-2.853954361989529e-22,1.6098393871288863e-06,-8.258571235729428e-21,0.0002188375365221873,1.1180834903756764e-19,-9.378751565236598e-05,-1.164293870672466e-21,-8.258571235729428e-21,6.252500952541595e-06,28.0,17.0,0.045065756887197495,-0.0035496957134455442,-0.005604782607406378,7.24427736713551e-05,0.0001448855473427102,0.00018428424664307386,-0.0035496957134455442,0.0005694290739484131,0.0001448855473427102,-1.6717562175472267e-05,-1.0732262126111891e-05,-0.0,-0.005604782607406378,0.0001448855473427102,0.0015114485286176205,-1.6940658945086007e-21,-1.8110693417838775e-05,-7.371369429165497e-05,7.24427736713551e-05,-1.6717562175472267e-05,-1.6940658945086007e-21,6.191689863044303e-07,1.0587911840678754e-22,-0.0,0.0001448855473427102,-1.0732262126111891e-05,-1.8110693417838775e-05,1.0587911840678754e-22,1.3415327657639864e-06,-0.0,0.00018428424664307386,-0.0,-7.371369429165497e-05,-0.0,-0.0,4.607105893228436e-06,28.0,18.0,0.04283337667584419,-0.0033596924040466547,-0.005039538722485304,6.841817230451852e-05,0.00012963442713953555,0.00015664160309825093,-0.0033596924040466547,0.0005383276147767901,0.00012963442713953555,-1.5788808013894595e-05,-9.602550562703982e-06,-0.0,-0.005039538722485304,0.00012963442713953555,0.0012781939003616571,8.470329472543003e-22,-1.525110928923823e-05,-5.87406029808335e-05,6.841817230451852e-05,-1.5788808013894595e-05,8.470329472543003e-22,5.847707029715821e-07,-5.293955920339377e-23,-0.0,0.00012963442713953555,-9.602550562703982e-06,-1.525110928923823e-05,-5.293955920339377e-23,1.1297117907815846e-06,-0.0,0.00015664160309825093,-0.0,-5.87406029808335e-05,-0.0,-0.0,3.4553295336081646e-06,28.0,19.0,0.0408116951584816,-0.0031890070531517267,-0.00455572409555316,6.481721356976777e-05,0.00011667098442558199,0.0001342642353847623,-0.0031890070531517267,0.0005104494048282504,0.00011667098442558199,-1.4957819075789303e-05,-8.642295142635703e-06,-0.0,-0.00455572409555316,0.00011667098442558199,0.0010906358947977424,-8.470329472543003e-22,-1.2963442713953555e-05,-4.738737698062323e-05,6.481721356976777e-05,-1.4957819075789303e-05,-8.470329472543003e-22,5.539932885767485e-07,5.293955920339377e-23,-0.0,0.00011667098442558199,-8.642295142635703e-06,-1.2963442713953555e-05,5.293955920339377e-23,9.602550790077657e-07,-0.0,0.0001342642353847623,-0.0,-4.738737698062323e-05,-0.0,-0.0,2.632632003951585e-06,28.0,20.0,0.03897223621606827,-0.0030348345171660185,-0.004138411022722721,6.157635652925819e-05,0.00010555946209933609,0.00011595547402976081,-0.0030348345171660185,0.0004853178979828954,0.00010555946209933609,-1.4209927940100897e-05,-7.819219717930537e-06,-0.0,-0.004138411022722721,0.00010555946209933609,0.0009380959090776742,8.470329472543003e-22,-1.1111522326245904e-05,-3.865182588924654e-05,6.157635652925819e-05,-1.4209927940100897e-05,8.470329472543003e-22,5.262936042527144e-07,-5.293955920339377e-23,-0.0,0.00010555946209933609,-7.819219717930537e-06,-1.1111522326245904e-05,-5.293955920339377e-23,8.230757657656795e-07,-0.0,0.00011595547402976081,-0.0,-3.865182588924654e-05,-0.0,-0.0,2.034306589848711e-06,28.0,21.0,0.03729141876101494,-0.002894888399168849,-0.003775941440835595,5.864414561074227e-05,9.596315067028627e-05,0.00010083084634970874,-0.002894888399168849,0.00046254604239948094,9.596315067028627e-05,-1.353326479147654e-05,-7.10838139639236e-06,-0.0,-0.003775941440835595,9.596315067028627e-05,0.0008127588662318885,0.0,-9.596315067028627e-06,-3.184131855960004e-05,5.864414561074227e-05,-1.353326479147654e-05,0.0,5.012320229980105e-07,0.0,-0.0,9.596315067028627e-05,-7.10838139639236e-06,-9.596315067028627e-06,0.0,7.108381510079198e-07,-0.0,0.00010083084634970874,-0.0,-3.184131855960004e-05,-0.0,-0.0,1.5920660416668397e-06,28.0,22.0,0.03574957698583603,-0.0027672850992530584,-0.003459106432273984,5.597850395133719e-05,8.761852950556204e-05,8.822698873700574e-05,-0.0027672850992530584,0.00044181622797623277,8.761852950556204e-05,-1.2918116226501297e-05,-6.490261512226425e-06,-8.576037338713598e-20,-0.003459106432273984,8.761852950556204e-05,0.0007088147685863078,-7.776857436130344e-20,-8.344622074218933e-06,-2.6468096621101722e-05,5.597850395133719e-05,-1.2918116226501297e-05,-7.776857436130344e-20,4.784487259712478e-07,8.999725064576941e-22,2.8360650666301318e-21,8.761852950556204e-05,-6.490261512226425e-06,-8.344622074218933e-06,8.999725064576941e-22,6.181201115396107e-07,6.461654842844914e-22,8.822698873700574e-05,-8.576037338713598e-20,-2.6468096621101722e-05,2.8360650666301318e-21,6.461654842844914e-22,1.2603856021087267e-06,28.0,23.0,0.034330155700445175,-0.00265046046115458,-0.0031805525068193674,5.3544656111625955e-05,8.031698234844953e-05,7.763975008856505e-05,-0.00265046046115458,0.00042286550160497427,8.031698234844953e-05,-1.2356458682916127e-05,-5.949406386207556e-06,7.453889935837843e-20,-0.0031805525068193674,8.031698234844953e-05,0.0006218829075805843,7.1084231228839e-20,-7.301543973881053e-06,-2.218278677901253e-05,5.3544656111625955e-05,-1.2356458682916127e-05,7.1084231228839e-20,4.576466210437502e-07,-8.081320829379645e-22,-2.4694253380516718e-21,8.031698234844953e-05,-5.949406386207556e-06,-7.301543973881053e-06,-8.081320829379645e-22,5.408551260188688e-07,-4.764560328305439e-22,7.763975008856505e-05,7.453889935837843e-20,-2.218278677901253e-05,-2.4694253380516718e-21,-4.764560328305439e-22,1.0083084589496139e-06,28.0,24.0,0.033019136637449265,-0.002543103415518999,-0.0029343501664698124,5.131362922838889e-05,7.389162783510983e-05,6.868132186355069e-05,-0.002543103415518999,0.00040547415846958756,7.389162783510983e-05,-1.1841606465168297e-05,-5.4734537116019055e-06,-4.235164736271502e-22,-0.0029343501664698124,7.389162783510983e-05,0.0005486174486577511,-0.0,-6.425358606065856e-06,-1.8731268937699497e-05,5.131362922838889e-05,-1.1841606465168297e-05,-0.0,4.3857801301783184e-07,2.6469779601696886e-23,-1.3234889800848443e-23,7.389162783510983e-05,-5.4734537116019055e-06,-6.425358606065856e-06,2.6469779601696886e-23,4.7595250407539424e-07,2.6469779601696886e-23,6.868132186355069e-05,-4.235164736271502e-22,-1.8731268937699497e-05,-1.3234889800848443e-23,2.6469779601696886e-23,8.144029948198295e-07,28.0,25.0,0.03180455416440964,-0.002444107551127672,-0.0027156751602888107,4.926108522340655e-05,6.820765702286735e-05,6.105006468715146e-05,-0.002444107551127672,0.00038945727283135056,6.820765702286735e-05,-1.1367942533979658e-05,-5.052419055573409e-06,3.3881317890172014e-21,-0.0027156751602888107,6.820765702286735e-05,0.00048643260379321873,-4.219130286403107e-22,-5.683971266989829e-06,-1.5926103515084833e-05,4.926108522340655e-05,-1.1367942533979658e-05,-4.219130286403107e-22,4.21034911823881e-07,4.930059196812446e-24,1.3813692824227204e-23,6.820765702286735e-05,-5.052419055573409e-06,-5.683971266989829e-06,4.930059196812446e-24,4.21034911823881e-07,-3.1763735522036263e-22,6.105006468715146e-05,3.3881317890172014e-21,-1.5926103515084833e-05,1.3813692824227204e-23,-3.1763735522036263e-22,6.635876275140618e-07,28.0,26.0,0.03067615255713463,-0.0023525324650108814,-0.002520570531487465,4.736642586067319e-05,6.315523205557838e-05,5.450898242997937e-05,-0.0023525324650108814,0.0003746580914594233,6.315523205557838e-05,-1.0930713870038744e-05,-4.6781656237726565e-06,6.3527471044072525e-21,-0.002520570531487465,6.315523205557838e-05,0.000433308829087764,-3.1183909377617866e-21,-5.052419055573409e-06,-1.3627245607494842e-05,4.736642586067319e-05,-1.0930713870038744e-05,-3.1183909377617866e-21,4.0484124497197627e-07,1.8194449476730806e-22,-2.10428962012067e-23,6.315523205557838e-05,-4.6781656237726565e-06,-5.052419055573409e-06,1.8194449476730806e-22,3.742532612704963e-07,-6.088049308390284e-22,5.450898242997937e-05,6.3527471044072525e-21,-1.3627245607494842e-05,-2.10428962012067e-23,-6.088049308390284e-22,5.450898470371612e-07,28.0,27.0,0.029625067487359047,-0.0022675737272948027,-0.0023457659408450127,4.5612116082338616e-05,5.864414561074227e-05,4.887012255494483e-05,-0.0022675737272948027,0.00036094276583753526,5.864414561074227e-05,-1.0525872312427964e-05,-4.34401090387837e-06,4.446922973085077e-21,-0.0023457659408450127,5.864414561074227e-05,0.00038765286444686353,-3.3623526224281456e-22,-4.511088263825513e-06,-1.1728829122148454e-05,4.5612116082338616e-05,-1.0525872312427964e-05,-3.3623526224281456e-22,3.898471447882912e-07,1.714763515757923e-23,3.555693105961916e-24,5.864414561074227e-05,-4.34401090387837e-06,-4.511088263825513e-06,1.714763515757923e-23,3.341546914725768e-07,-3.1763735522036263e-22,4.887012255494483e-05,4.446922973085077e-21,-1.1728829122148454e-05,3.555693105961916e-24,-3.1763735522036263e-22,4.5110883206689323e-07,28.0,28.0,0.028643621131777763,-0.0021885388996452093,-0.0021885388996452093,4.39831092080567e-05,5.459972453536466e-05,4.39831092080567e-05,-0.0021885388996452093,0.00034819639404304326,5.459972453536466e-05,-1.0149948138860054e-05,-4.044423803861719e-06,5.717472393966527e-21,-0.0021885388996452093,5.459972453536466e-05,0.00034819639404304326,1.0461429947347001e-20,-4.044423803861719e-06,-1.0149948138860054e-05,4.39831092080567e-05,-1.0149948138860054e-05,1.0461429947347001e-20,3.759240314593626e-07,-5.185598996140178e-22,-8.657571729957835e-23,5.459972453536466e-05,-4.044423803861719e-06,-4.044423803861719e-06,-5.185598996140178e-22,2.995869579081045e-07,-1.7205356741102976e-22,4.39831092080567e-05,5.717472393966527e-21,-1.0149948138860054e-05,-8.657571729957835e-23,-1.7205356741102976e-22,3.759240314593626e-07,28.0,29.0,0.027725113555788994,-0.0021148293744772673,-0.002046609064564109,4.2466450395295396e-05,5.095974120195024e-05,3.972668127971701e-05,-0.0021148293744772673,0.00033631979022175074,5.095974120195024e-05,-9.799950021260884e-06,-3.7747956866951426e-06,-2.541098841762901e-21,-0.002046609064564109,5.095974120195024e-05,0.00031392122036777437,-2.722832552896334e-22,-3.639981514425017e-06,-8.828151294437703e-06,4.2466450395295396e-05,-9.799950021260884e-06,-2.722832552896334e-22,3.6296111716183077e-07,1.6392070493445787e-23,1.0397556509362258e-24,5.095974120195024e-05,-3.7747956866951426e-06,-3.639981514425017e-06,1.6392070493445787e-23,2.6962825927512313e-07,1.7205356741102976e-22,3.972668127971701e-05,-2.541098841762901e-21,-8.828151294437703e-06,1.0397556509362258e-24,1.7205356741102976e-22,3.152911176584894e-07,28.0,30.0,0.02686367742717266,-0.002045924076810479,-0.0019180538365617394,4.105090192751959e-05,4.767201608046889e-05,3.600230411393568e-05,-0.002045924076810479,0.00032522683613933623,4.767201608046889e-05,-9.473284990235697e-06,-3.531260517775081e-06,-1.0587911840678754e-20,-0.0019180538365617394,4.767201608046889e-05,0.000284003559499979,-4.4293296330937695e-21,-3.2877253488550195e-06,-7.714779712841846e-06,4.105090192751959e-05,-9.473284990235697e-06,-4.4293296330937695e-21,3.5086242178294924e-07,-6.783852899570059e-23,1.401723029737126e-22,4.767201608046889e-05,-3.531260517775081e-06,-3.2877253488550195e-06,-6.783852899570059e-23,2.43535197341771e-07,3.970466940254533e-22,3.600230411393568e-05,-1.0587911840678754e-20,-7.714779712841846e-06,1.401723029737126e-22,3.970466940254533e-22,2.660268876297778e-07,28.0,31.0,0.026054156944155693,-0.001981368288397789,-0.0018012437503784895,3.972668127971701e-05,4.469251507543959e-05,3.272936737630516e-05,-0.001981368288397789,0.00031484244391322136,4.469251507543959e-05,-9.167695679934695e-06,-3.310556621727301e-06,0.0,-0.0018012437503784895,4.469251507543959e-05,0.00025777198607102036,-0.0,-2.979501005029306e-06,-6.7715932345890906e-06,3.972668127971701e-05,-9.167695679934695e-06,-0.0,3.395442718101549e-07,1.3234889800848443e-23,0.0,4.469251507543959e-05,-3.310556621727301e-06,-2.979501005029306e-06,1.3234889800848443e-23,2.2070378236094257e-07,-1.3234889800848443e-23,3.272936737630516e-05,0.0,-6.7715932345890906e-06,0.0,-1.3234889800848443e-23,2.257197735389127e-07,28.0,32.0,0.025291994214057922,-0.0019207624718546867,-0.0016947903204709291,3.8485221011796966e-05,4.1983879782492295e-05,2.9841481591574848e-05,-0.0019207624718546867,0.000305100780678913,4.1983879782492295e-05,-8.881204848876223e-06,-3.1099168609216576e-06,4.235164736271502e-22,-0.0016947903204709291,4.1983879782492295e-05,0.00023467553546652198,2.0354858030560174e-22,-2.7086373393103713e-06,-5.96829659116338e-06,3.8485221011796966e-05,-8.881204848876223e-06,2.0354858030560174e-22,3.289335097633739e-07,-1.5584257993837745e-23,1.440772993497714e-24,4.1983879782492295e-05,-3.1099168609216576e-06,-2.7086373393103713e-06,-1.5584257993837745e-23,2.006398034382073e-07,-2.6469779601696886e-23,2.9841481591574848e-05,4.235164736271502e-22,-5.96829659116338e-06,1.440772993497714e-24,-2.6469779601696886e-23,1.9252568961292127e-07,28.0,33.0,0.024573152884840965,-0.0018637549364939332,-0.0015975042479112744,3.731900142156519e-05,3.9514237869298086e-05,2.7283640520181507e-05,-0.0018637549364939332,0.0002959440171252936,3.9514237869298086e-05,-8.612077181169298e-06,-2.9269806418597e-06,1.0587911840678754e-21,-0.0015975042479112744,3.9514237869298086e-05,0.00021425928571261466,-0.0,-2.4696398668311303e-06,-5.280704499455169e-06,3.731900142156519e-05,-8.612077181169298e-06,-0.0,3.189658457358746e-07,1.3234889800848443e-23,-6.617444900424222e-24,3.9514237869298086e-05,-2.9269806418597e-06,-2.4696398668311303e-06,1.3234889800848443e-23,1.8293629011623125e-07,-5.293955920339377e-23,2.7283640520181507e-05,1.0587911840678754e-21,-5.280704499455169e-06,-6.617444900424222e-24,-5.293955920339377e-23,1.6502201560797403e-07,28.0,34.0,0.023894039914011955,-0.0018100343877449632,-0.001508362009190023,3.622138683567755e-05,3.725628266693093e-05,2.501000381016638e-05,-0.0018100343877449632,0.00028732093051075935,3.725628266693093e-05,-8.358781087736133e-06,-2.7597245662036585e-06,-6.352747104407253e-22,-0.001508362009190023,3.725628266693093e-05,0.0001961452653631568,1.701288982635843e-22,-2.2579565666092094e-06,-4.689375600719359e-06,3.622138683567755e-05,-8.358781087736133e-06,1.701288982635843e-22,3.0958449315221515e-07,-1.5193355327195388e-23,-7.58662668819666e-25,3.725628266693093e-05,-2.7597245662036585e-06,-2.2579565666092094e-06,-1.5193355327195388e-23,1.6725603302347736e-07,4.632211430296955e-23,2.501000381016638e-05,-6.352747104407253e-22,-4.689375600719359e-06,-7.58662668819666e-25,4.632211430296955e-23,1.4210229437594535e-07,28.0,35.0,0.023251453414559364,-0.0017593244556337595,-0.0014264793135225773,3.518648736644536e-05,3.518648736644536e-05,2.2982165319263004e-05,-0.0017593244556337595,0.00027918623527511954,3.518648736644536e-05,-8.119958692986984e-06,-2.606406496852287e-06,-2.329340604949326e-20,-0.0014264793135225773,3.518648736644536e-05,0.0001800177851691842,-3.213932721892362e-20,-2.0697934814961627e-06,-4.178575636615278e-06,3.518648736644536e-05,-8.119958692986984e-06,-3.213932721892362e-20,3.0073923085183196e-07,3.6952887800129045e-22,7.294750018920926e-22,3.518648736644536e-05,-2.606406496852287e-06,-2.0697934814961627e-06,3.6952887800129045e-22,1.5331802671880723e-07,1.6543612251060553e-22,2.2982165319263004e-05,-2.329340604949326e-20,-4.178575636615278e-06,7.294750018920926e-22,1.6543612251060553e-22,1.228992800861306e-07,28.0,36.0,0.02264252118766308,-0.0017113789217546582,-0.0013510886346921325,3.420908615225926e-05,3.3284515666309744e-05,2.1167785234865732e-05,-0.0017113789217546582,0.0002714995644055307,3.3284515666309744e-05,-7.894404006947298e-06,-2.4655196284584235e-06,5.293955920339377e-22,-0.0013510886346921325,3.3284515666309744e-05,0.00016561169468332082,-0.0,-1.9019723822566448e-06,-3.7354914184106747e-06,3.420908615225926e-05,-7.894404006947298e-06,-0.0,2.9238535148579103e-07,0.0,0.0,3.3284515666309744e-05,-2.4655196284584235e-06,-1.9019723822566448e-06,0.0,1.4088683997215412e-07,-3.3087224502121107e-23,2.1167785234865732e-05,5.293955920339377e-22,-3.7354914184106747e-06,0.0,-3.3087224502121107e-23,1.0672832218006079e-07,28.0,37.0,0.02206466905772686,-0.0016659776447340846,-0.0012815212830901146,3.3284515666309744e-05,3.153269790345803e-05,1.9539493223419413e-05,-0.0016659776447340846,0.0002642248582560569,3.153269790345803e-05,-7.68104200687958e-06,-2.335755425519892e-06,-1.0587911840678754e-22,-0.0012815212830901146,3.153269790345803e-05,0.00015270322910510004,-0.0,-1.7518166259833379e-06,-3.3496273772470886e-06,3.3284515666309744e-05,-7.68104200687958e-06,-0.0,2.8448303623918036e-07,0.0,0.0,3.153269790345803e-05,-2.335755425519892e-06,-1.7518166259833379e-06,0.0,1.297641887276768e-07,0.0,1.9539493223419413e-05,-1.0587911840678754e-22,-3.3496273772470886e-06,0.0,0.0,9.304520887098988e-08,28.0,38.0,0.021515576168894768,-0.001622923300601542,-0.001217192504554987,3.2408606784883887e-05,2.9915638151578605e-05,1.8074031686410308e-05,-0.001622923300601542,0.0002573298988863826,2.9915638151578605e-05,-7.478909537894651e-06,-2.215973154306994e-06,1.0587911840678754e-22,-0.001217192504554987,2.9915638151578605e-05,0.0001411026605637744,-0.0,-1.6170614571819897e-06,-3.012338538610493e-06,3.2408606784883887e-05,-7.478909537894651e-06,-0.0,2.7699664428837423e-07,0.0,0.0,2.9915638151578605e-05,-2.215973154306994e-06,-1.6170614571819897e-06,0.0,1.1978232805631706e-07,0.0,1.8074031686410308e-05,1.0587911840678754e-22,-3.012338538610493e-06,0.0,0.0,8.141455509758089e-08,28.0,39.0,0.020993147045373917,-0.0015820387052372098,-0.0011575892567634583,3.157761602778919e-05,2.8419855880201794e-05,1.6751540897530504e-05,-0.0015820387052372098,0.00025078566977754235,2.8419855880201794e-05,-7.287142580025829e-06,-2.1051744170108577e-06,-1.0587911840678754e-22,-0.0011575892567634583,2.8419855880201794e-05,0.0001306483754888177,-0.0,-1.4957819303162978e-06,-2.7164660423295572e-06,3.157761602778919e-05,-7.287142580025829e-06,-0.0,2.69894172788554e-07,0.0,0.0,2.8419855880201794e-05,-2.1051744170108577e-06,-1.4957819303162978e-06,0.0,1.1079865913643516e-07,6.617444900424222e-24,1.6751540897530504e-05,-1.0587911840678754e-22,-2.7164660423295572e-06,0.0,6.617444900424222e-24,7.148594960426635e-08,28.0,40.0,0.02049548551440239,-0.0015431635547429323,-0.0011022596154361963,3.0788178264629096e-05,2.7033522201236337e-05,1.5555002391920425e-05,-0.0015431635547429323,0.000244566093897447,2.7033522201236337e-05,-7.1049639700504486e-06,-2.002483142860001e-06,4.235164736271502e-22,-0.0011022596154361963,2.7033522201236337e-05,0.00012120219616917893,-0.0,-1.3863344747733208e-06,-2.4560529254813446e-06,3.0788178264629096e-05,-7.1049639700504486e-06,-0.0,2.631468021263572e-07,0.0,0.0,2.7033522201236337e-05,-2.002483142860001e-06,-1.3863344747733208e-06,0.0,1.02691437575686e-07,-1.6543612251060553e-23,1.5555002391920425e-05,4.235164736271502e-22,-2.4560529254813446e-06,0.0,-1.6543612251060553e-23,6.297571530922141e-08,28.0,41.0,0.020020872354507446,-0.0015061533777043223,-0.0010508046252653003,3.0037246688152663e-05,2.574621066742111e-05,1.4469769666902721e-05,-0.0015061533777043223,0.00023864756803959608,2.574621066742111e-05,-6.931672032806091e-06,-1.9071267161052674e-06,-5.293955920339377e-22,-0.0010508046252653003,2.574621066742111e-05,0.00011264542990829796,-0.0,-1.287310510633688e-06,-2.2261183403315954e-06,3.0037246688152663e-05,-6.931672032806091e-06,-0.0,2.567286117027834e-07,0.0,0.0,2.574621066742111e-05,-1.9071267161052674e-06,-1.287310510633688e-06,0.0,9.53563343841779e-08,2.6469779601696886e-23,1.4469769666902721e-05,-5.293955920339377e-22,-2.2261183403315954e-06,0.0,2.6469779601696886e-23,5.565296135046083e-08,28.0,42.0,0.019567741081118584,-0.0014708770904690027,-0.0010028707329183817,2.9322072805371135e-05,2.4548713554395363e-05,1.3483194379659835e-05,-0.0014708770904690027,0.0002330087882000953,2.4548713554395363e-05,-6.76663239573827e-06,-1.8184231294071651e-06,-2.6469779601696886e-22,-0.0010028707329183817,2.4548713554395363e-05,0.00010487577674211934,-0.0,-1.1974981362072867e-06,-2.0224792933731806e-06,2.9322072805371135e-05,-6.76663239573827e-06,-0.0,2.5061601149900525e-07,0.0,0.0,2.4548713554395363e-05,-1.8184231294071651e-06,-1.1974981362072867e-06,0.0,8.870357248724758e-08,9.926167350636332e-24,1.3483194379659835e-05,-2.6469779601696886e-22,-2.0224792933731806e-06,0.0,9.926167350636332e-24,4.932876151997334e-08,28.0,43.0,0.01913466863334179,-0.0014372156001627445,-0.0009581436752341688,2.8640164600801654e-05,2.343286178074777e-05,1.2584315300046e-05,-0.0014372156001627445,0.00022763034212403,2.343286178074777e-05,-6.609268893953413e-06,-1.735767568789015e-06,-2.6469779601696886e-22,-0.0009581436752341688,2.343286178074777e-05,9.7804753750097e-05,-0.0,-1.1158506367792143e-06,-1.8416070588500588e-06,2.8640164600801654e-05,-6.609268893953413e-06,-0.0,2.447877420763689e-07,0.0,0.0,2.343286178074777e-05,-1.735767568789015e-06,-1.1158506367792143e-06,0.0,8.265559614528684e-08,1.3234889800848443e-23,1.2584315300046e-05,-2.6469779601696886e-22,-1.8416070588500588e-06,0.0,1.3234889800848443e-23,4.3847787623008116e-08,28.0,44.0,0.018720347434282303,-0.001405060407705605,-0.0009163437644019723,2.7989251975668594e-05,2.2391401216736995e-05,1.1763599104597233e-05,-0.001405060407705605,0.00022249462199397385,2.2391401216736995e-05,-6.459058113250649e-06,-1.658622295508394e-06,-1.0640851399882148e-20,-0.0009163437644019723,2.2391401216736995e-05,9.135554864769801e-05,-2.1947151831104734e-20,-1.0414605640107766e-06,-1.6805140603537438e-06,2.7989251975668594e-05,-6.459058113250649e-06,-2.1947151831104734e-20,2.392243629856239e-07,3.3260395248035224e-22,3.703996794664586e-22,2.2391401216736995e-05,-1.658622295508394e-06,-1.0414605640107766e-06,3.3260395248035224e-22,7.714522354262954e-08,1.6543612251060553e-23,1.1763599104597233e-05,-1.0640851399882148e-20,-1.6805140603537438e-06,3.703996794664586e-22,1.6543612251060553e-23,3.908172274691424e-08,28.0,45.0,0.018323589116334915,-0.001374312792904675,-0.000877220940310508,2.7367268558009528e-05,2.141786171705462e-05,1.1012730283255223e-05,-0.001374312792904675,0.00021758554794359952,2.141786171705462e-05,-6.315523478406249e-06,-1.5865083469179808e-06,2.6469779601696886e-22,-0.000877220940310508,2.141786171705462e-05,8.546126628061756e-05,-0.0,-9.735391586218611e-07,-1.5366600791821838e-06,2.7367268558009528e-05,-6.315523478406249e-06,-0.0,2.3390828118863283e-07,0.0,0.0,2.141786171705462e-05,-1.5865083469179808e-06,-9.735391586218611e-07,0.0,7.211401253925942e-08,-1.3234889800848443e-23,1.1012730283255223e-05,2.6469779601696886e-22,-1.5366600791821838e-06,0.0,-1.3234889800848443e-23,3.4924092062738055e-08,28.0,46.0,0.01794329844415188,-0.001344882301054895,-0.0008405513945035636,2.6772328055812977e-05,2.0506464352365583e-05,1.032443469739519e-05,-0.001344882301054895,0.0002128884516423568,2.0506464352365583e-05,-6.1782293414580636e-06,-1.5189973510132404e-06,9.370301979000698e-21,-0.0008405513945035636,2.0506464352365583e-05,8.006345888134092e-05,2.0353221642741933e-20,-9.113983878705767e-07,-1.4078775620873785e-06,2.6772328055812977e-05,-6.1782293414580636e-06,2.0353221642741933e-20,2.288233105218751e-07,-3.2118586614221296e-22,-3.248040492592124e-22,2.0506464352365583e-05,-1.5189973510132404e-06,-9.113983878705767e-07,-3.2118586614221296e-22,6.751099590474041e-08,-1.3234889800848443e-23,1.032443469739519e-05,9.370301979000698e-21,-1.4078775620873785e-06,-3.248040492592124e-22,-1.3234889800848443e-23,3.1286166546351524e-08,28.0,47.0,0.017578471451997757,-0.0013166859280318022,-0.0008061341941356659,2.6202704248134978e-05,1.9652028640848584e-05,9.692326784715988e-06,-0.0013166859280318022,0.0002083898871205747,1.9652028640848584e-05,-6.046777798474068e-06,-1.4557057284037e-06,-2.117582368135751e-22,-0.0008061341941356659,1.9652028640848584e-05,7.511093281209469e-05,-0.0,-8.54435995734093e-07,-1.2923102303830092e-06,2.6202704248134978e-05,-6.046777798474068e-06,-0.0,2.2395474275072047e-07,0.0,0.0,1.9652028640848584e-05,-1.4557057284037e-06,-8.54435995734093e-07,0.0,6.329155866069414e-08,6.617444900424222e-24,9.692326784715988e-06,-2.117582368135751e-22,-1.2923102303830092e-06,0.0,6.617444900424222e-24,2.8093701587295072e-08,28.0,48.0,0.017228184267878532,-0.0012896476546302438,-0.0007737886044196784,2.5656814614194445e-05,1.884990524558816e-05,9.11078677745536e-06,-0.0012896476546302438,0.00020407751435413957,1.884990524558816e-05,-5.920803232584149e-06,-1.3962892353447387e-06,-3.705769144237564e-22,-0.0007737886044196784,1.884990524558816e-05,7.055868627503514e-05,-0.0,-8.021236226340989e-07,-1.1883635124831926e-06,2.5656814614194445e-05,-5.920803232584149e-06,-0.0,2.1928900650891592e-07,0.0,0.0,1.884990524558816e-05,-1.3962892353447387e-06,-8.021236226340989e-07,0.0,5.9416564113234926e-08,1.4889251025954498e-23,9.11078677745536e-06,-3.705769144237564e-22,-1.1883635124831926e-06,0.0,1.4889251025954498e-23,2.5284331073294197e-08,28.0,49.0,0.016891583800315857,-0.0012636976316571236,-0.0007433515274897218,2.5133205781457946e-05,1.8095908671966754e-05,8.574858838983346e-06,-0.0012636976316571236,0.00019994002650491893,1.8095908671966754e-05,-5.799970494990703e-06,-1.340437620456214e-06,-9.958852293942114e-21,-0.0007433515274897218,1.8095908671966754e-05,6.636707985308021e-05,-1.8846483076408183e-20,-7.539961757174751e-07,-1.0946628208330367e-06,2.5133205781457946e-05,-5.799970494990703e-06,-1.8846483076408183e-20,2.148137241420045e-07,2.9447629806887785e-22,2.867708562079728e-22,1.8095908671966754e-05,-1.340437620456214e-06,-7.539961757174751e-07,2.9447629806887785e-22,5.585156870324681e-08,7.499437461938178e-23,8.574858838983346e-06,-9.958852293942114e-21,-1.0946628208330367e-06,2.867708562079728e-22,7.499437461938178e-23,2.280547484190265e-08,28.0,50.0,0.016567884013056755,-0.0012387713650241494,-0.0007146758143790066,2.4630542611703277e-05,1.7386264516972005e-05,8.080155566858593e-06,-0.0012387713650241494,0.00019596697529777884,1.7386264516972005e-05,-5.683971266989829e-06,-1.2878714414910064e-06,1.0119973183218092e-21,-0.0007146758143790066,1.7386264516972005e-05,6.25010798103176e-05,4.658681209898652e-21,-7.096434728737222e-07,-1.0100194458573242e-06,2.4630542611703277e-05,-5.683971266989829e-06,4.658681209898652e-21,2.105174559119405e-07,-2.3161057151484775e-22,-2.4603557158719244e-23,1.7386264516972005e-05,-1.2878714414910064e-06,-7.096434728737222e-07,-2.3161057151484775e-22,5.2566182517921334e-08,-1.1375382930756948e-23,8.080155566858593e-06,1.0119973183218092e-21,-1.0100194458573242e-06,-2.4603557158719244e-23,-1.1375382930756948e-23,2.0612640483363975e-08,28.0,51.0,0.016256356611847878,-0.0012148094829171896,-0.0006876280531287193,2.414759001112543e-05,1.6717562175472267e-05,7.6227879617363214e-06,-0.0012148094829171896,0.0001921487710205838,1.6717562175472267e-05,-5.572520876739873e-06,-1.2383379726088606e-06,-3.9663334605724685e-21,-0.0006876280531287193,1.6717562175472267e-05,5.892967601539567e-05,-5.293955920339377e-21,-6.68702512029995e-07,-9.334025889984332e-07,2.414759001112543e-05,-5.572520876739873e-06,-5.293955920339377e-21,2.063896573645252e-07,-1.6543612251060553e-23,1.0743065003517623e-22,1.6717562175472267e-05,-1.2383379726088606e-06,-6.68702512029995e-07,-1.6543612251060553e-23,4.953351862013733e-08,3.755943474600007e-23,7.6227879617363214e-06,-3.9663334605724685e-21,-9.334025889984332e-07,1.0743065003517623e-22,3.755943474600007e-23,1.8668051993131485e-08,28.0,52.0,0.015956329181790352,-0.0011917571537196636,-0.0006620872882194817,2.3683212930336595e-05,1.6086711184470914e-05,7.199299489002442e-06,-0.0011917571537196636,0.0001884765224531293,1.6086711184470914e-05,-5.465356935019372e-06,-1.1916082485186053e-06,6.427615027778971e-21,-0.0006620872882194817,1.6086711184470914e-05,5.562532169278711e-05,1.0376153603865179e-20,-6.308513889052847e-07,-8.639159432277665e-07,2.3683212930336595e-05,-5.465356935019372e-06,1.0376153603865179e-20,2.0242062248598813e-07,2.6469779601696886e-23,-2.0069744766751575e-22,1.6086711184470914e-05,-1.1916082485186053e-06,-6.308513889052847e-07,2.6469779601696886e-23,4.672973474839637e-08,-3.197232738477225e-23,7.199299489002442e-06,6.427615027778971e-21,-8.639159432277665e-07,-2.0069744766751575e-22,-3.197232738477225e-23,1.6939528890702604e-08,28.0,53.0,0.015667174011468887,-0.0011695635039359331,-0.00063794368179515,2.323635999346152e-05,1.549090666230768e-05,6.806610599596752e-06,-0.0011695635039359331,0.00018494200776331127,1.549090666230768e-05,-5.362237061490305e-06,-1.147474563367723e-06,-1.4829173398896783e-21,-0.00063794368179515,1.549090666230768e-05,5.256351505522616e-05,-1.2705494208814505e-21,-5.958041242593026e-07,-8.007777410057315e-07,2.323635999346152e-05,-5.362237061490305e-06,-1.2705494208814505e-21,1.986013700161493e-07,-1.3896634290890865e-22,5.773742385072245e-23,1.549090666230768e-05,-1.147474563367723e-06,-5.958041242593026e-07,-1.3896634290890865e-22,4.4133638965604405e-08,-4.6082859890164164e-24,6.806610599596752e-06,-1.4829173398896783e-21,-8.007777410057315e-07,5.773742385072245e-23,-4.6082859890164164e-24,1.539957139584658e-08,28.0,54.0,0.015388312749564648,-0.0011481812689453363,-0.0006150971166789532,2.2806058041169308e-05,1.4927601114322897e-05,6.441970526793739e-06,-0.0011481812689453363,0.00018153763085138053,1.4927601114322897e-05,-5.262936156213982e-06,-1.105748197005596e-06,2.093899274391627e-21,-0.0006150971166789532,1.4927601114322897e-05,4.972239912603982e-05,4.235164736271502e-21,-5.633057185150392e-07,-7.433043265336892e-07,2.2806058041169308e-05,-5.262936156213982e-06,4.235164736271502e-21,1.949235723941456e-07,-5.624828165360588e-23,-6.563039372601663e-23,1.4927601114322897e-05,-1.105748197005596e-06,-5.633057185150392e-07,-5.624828165360588e-23,4.1726348598558616e-08,-1.1824890074048174e-23,6.441970526793739e-06,2.093899274391627e-21,-7.433043265336892e-07,-6.563039372601663e-23,-1.1824890074048174e-23,1.4024609917839825e-08,28.0,55.0,0.015119204297661781,-0.0011275670258328319,-0.0005934563232585788,2.2391401216736995e-05,1.439447260054294e-05,6.102919542172458e-06,-0.0011275670258328319,0.00017825633403845131,1.439447260054294e-05,-5.167246399651049e-06,-1.0662572549335891e-06,3.1641531501486665e-22,-0.0005934563232585788,1.439447260054294e-05,4.7082437959033996e-05,6.352747104407253e-22,-5.331286274667946e-07,-6.908965701768466e-07,2.2391401216736995e-05,-5.167246399651049e-06,6.352747104407253e-22,1.9137949891501194e-07,6.28657265540301e-23,-2.1370478580708776e-23,1.439447260054294e-05,-1.0662572549335891e-06,-5.331286274667946e-07,6.28657265540301e-23,3.949100957356677e-08,8.548611106285088e-24,6.102919542172458e-06,3.1641531501486665e-22,-6.908965701768466e-07,-2.1370478580708776e-23,8.548611106285088e-24,1.2794380666036886e-08,28.0,56.0,0.01485934667289257,-0.0011076799128204584,-0.0005729378899559379,2.199155460402835e-05,1.388940290780738e-05,5.787251211586408e-06,-0.0011076799128204584,0.00017509155441075563,1.388940290780738e-05,-5.074974069430027e-06,-1.0288447356288088e-06,-5.2629815808858e-22,-0.0005729378899559379,1.388940290780738e-05,4.46261401521042e-05,4.235164736271502e-22,-5.050692379882094e-07,-6.430279313462961e-07,2.199155460402835e-05,-5.074974069430027e-06,4.235164736271502e-22,1.879620157296813e-07,-1.3234889800848443e-22,1.8156495169770088e-23,1.388940290780738e-05,-1.0288447356288088e-06,-5.050692379882094e-07,-1.3234889800848443e-22,3.7412533515635005e-08,2.801940258112539e-24,5.787251211586408e-06,-5.2629815808858e-22,-6.430279313462961e-07,1.8156495169770088e-23,2.801940258112539e-24,1.1691416723635939e-08,28.0,57.0,0.014608269557356834,-0.001088482211343944,-0.0005534655065275729,2.1605737856589258e-05,1.3410458450380247e-05,5.492984200827777e-06,-0.001088482211343944,0.00017203720926772803,1.3410458450380247e-05,-4.985939540347317e-06,-9.933672799888882e-07,5.222428223366982e-21,-0.0005534655065275729,1.3410458450380247e-05,4.2337796912761405e-05,8.787966827763366e-21,-4.789449690179026e-07,-5.992346814309712e-07,2.1605737856589258e-05,-4.985939540347317e-06,8.787966827763366e-21,1.8466442952558282e-07,-2.9778502051908996e-23,-1.4053743828774682e-22,1.3410458450380247e-05,-9.933672799888882e-07,-4.789449690179026e-07,-2.9778502051908996e-23,3.547740234921548e-08,-4.256565649105934e-23,5.492984200827777e-06,5.222428223366982e-21,-5.992346814309712e-07,-1.4053743828774682e-22,-4.256565649105934e-23,1.0700619057502081e-08,28.0,58.0,0.014365537092089653,-0.0010699386475607753,-0.0005349693237803876,2.1233225197647698e-05,1.2955866623087786e-05,5.2183349907863885e-06,-0.0010699386475607753,0.00016908759425859898,1.2955866623087786e-05,-4.899975010630442e-06,-9.596938070899341e-07,7.099061926353985e-21,-0.0005349693237803876,1.2955866623087786e-05,4.020330015919171e-05,1.3658406274475593e-20,-4.545917988707515e-07,-5.591073204413988e-07,2.1233225197647698e-05,-4.899975010630442e-06,1.3658406274475593e-20,1.8148055858091539e-07,-1.1580528575742387e-22,-2.0368509741841567e-22,1.2955866623087786e-05,-9.596938070899341e-07,-4.545917988707515e-07,-1.1580528575742387e-22,3.36734657935267e-08,-4.0412059908918735e-23,5.2183349907863885e-06,7.099061926353985e-21,-5.591073204413988e-07,-2.0368509741841567e-22,-4.0412059908918735e-23,9.808900358621031e-09,28.0,59.0,0.014130738563835621,-0.0010520163923501968,-0.0005173850804567337,2.0873339963145554e-05,1.2524003977887332e-05,4.961695594829507e-06,-0.0010520163923501968,0.0001662374270381406,1.2524003977887332e-05,-4.816924956685398e-06,-9.277040362576372e-07,-2.2912436466933955e-21,-0.0005173850804567337,1.2524003977887332e-05,3.820993151748553e-05,-2.964615315390051e-21,-4.3186221887481224e-07,-5.222837557994353e-07,2.0873339963145554e-05,-4.816924956685398e-06,-2.964615315390051e-21,1.784046190778099e-07,-2.9778502051908996e-23,5.418782745626653e-23,1.2524003977887332e-05,-9.277040362576372e-07,-4.3186221887481224e-07,-2.9778502051908996e-23,3.198979570129268e-08,2.452690670000254e-23,4.961695594829507e-06,-2.2912436466933955e-21,-5.222837557994353e-07,5.418782745626653e-23,2.452690670000254e-23,9.004892831399047e-09,28.0,60.0,0.013903491199016571,-0.0010346845956519246,-0.0005006538704037666,2.0525450963759795e-05,1.2113381671952084e-05,4.721613549918402e-06,-0.0010346845956519246,0.00016348175995517522,1.2113381671952084e-05,-4.736642495117849e-06,-8.972875207291509e-07,3.448834648295733e-21,-0.0005006538704037666,1.2113381671952084e-05,3.634621316450648e-05,3.705769144237564e-21,-4.106231017431128e-07,-4.884427653450985e-07,2.0525450963759795e-05,-4.736642495117849e-06,3.705769144237564e-21,1.7543121089147462e-07,1.6543612251060553e-22,-1.0014643465411024e-22,1.2113381671952084e-05,-8.972875207291509e-07,-4.106231017431128e-07,1.6543612251060553e-22,3.041652618662738e-08,-1.89418204004139e-23,4.721613549918402e-06,3.448834648295733e-21,-4.884427653450985e-07,-1.0014643465411024e-22,-1.89418204004139e-23,8.278691510099634e-09,28.0,61.0,0.013683438301086426,-0.001017914735712111,-0.00048472132766619325,2.018896884692367e-05,1.1722627277777065e-05,4.496775090956362e-06,-0.001017914735712111,0.00016081596550066024,1.1722627277777065e-05,-4.6589925659645814e-06,-8.683427381583897e-07,3.0122147532707546e-21,-0.00048472132766619325,1.1722627277777065e-05,3.4601776860654354e-05,9.952637130238029e-21,-3.9075422364476253e-07,-4.572991372242541e-07,2.018896884692367e-05,-4.6589925659645814e-06,9.952637130238029e-21,1.7255528916848561e-07,-2.514629062161204e-22,-9.992750366480606e-23,1.1722627277777065e-05,-8.683427381583897e-07,-3.9075422364476253e-07,-2.514629062161204e-22,2.894475770176541e-08,-7.28279543143659e-24,4.496775090956362e-06,3.0122147532707546e-21,-4.572991372242541e-07,-9.992750366480606e-23,-7.28279543143659e-24,7.62165264234227e-09,28.0,62.0,0.0134702417999506,-0.001001679920591414,-0.0004695374518632889,1.9863340639858507e-05,1.1350480235705618e-05,4.2859887798840646e-06,-0.001001679920591414,0.00015823572175577283,1.1350480235705618e-05,-4.583847839967348e-06,-8.407762948081654e-07,5.476334705123115e-21,-0.0004695374518632889,1.1350480235705618e-05,3.2967222068691626e-05,1.0905549195899117e-20,-3.721468999628996e-07,-4.285988666197227e-07,1.9863340639858507e-05,-4.583847839967348e-06,1.0905549195899117e-20,1.6977213590507745e-07,-6.28657265540301e-23,-1.5382125008649345e-22,1.1350480235705618e-05,-8.407762948081654e-07,-3.721468999628996e-07,-6.28657265540301e-23,2.7566436244796932e-08,-3.417217014862053e-23,4.2859887798840646e-06,5.476334705123115e-21,-4.285988666197227e-07,-1.5382125008649345e-22,-3.417217014862053e-23,7.026210724347948e-09,28.0,63.0,0.013263585977256298,-0.0009859547717496753,-0.00045505602611228824,1.9548049749573693e-05,1.0995777302014176e-05,4.088173682248453e-06,-0.0009859547717496753,0.00015573696873616427,1.0995777302014176e-05,-4.511088263825513e-06,-8.145020728989039e-07,-4.958558415756133e-21,-0.00045505602611228824,1.0995777302014176e-05,3.14340359182097e-05,-1.1117307432712692e-20,-3.5470250736580056e-07,-4.0211546092905337e-07,1.9548049749573693e-05,-4.511088263825513e-06,-1.1117307432712692e-20,1.670773457362884e-07,1.3896634290890865e-22,1.4131770376454454e-22,1.0995777302014176e-05,-8.145020728989039e-07,-3.5470250736580056e-07,1.3896634290890865e-22,2.627425921275517e-08,2.963553205689036e-23,4.088173682248453e-06,-4.958558415756133e-21,-4.0211546092905337e-07,1.4131770376454454e-22,2.963553205689036e-23,6.485732839678349e-09,28.0,64.0,0.013063175603747368,-0.0009707157150842249,-0.0004412344133015722,1.9242610505898483e-05,1.0657446182449348e-05,3.9023475437716115e-06,-0.0009707157150842249,0.00015331590839195997,1.0657446182449348e-05,-4.4406024244381115e-06,-7.894404348007811e-07,5.2626890586403695e-21,-0.0004412344133015722,1.0657446182449348e-05,2.9994478609296493e-05,9.317362419797304e-21,-3.383316311555973e-07,-3.7764655758110166e-07,1.9242610505898483e-05,-4.4406024244381115e-06,9.317362419797304e-21,1.6446675488168694e-07,1.6543612251060553e-23,-1.4737029901328155e-22,1.0657446182449348e-05,-7.894404348007811e-07,-3.383316311555973e-07,1.6543612251060553e-23,2.5061600794629157e-08,-3.3438788253141903e-23,3.9023475437716115e-06,5.2626890586403695e-21,-3.7764655758110166e-07,-1.4737029901328155e-22,-3.3438788253141903e-23,5.9943894292757705e-09,29.0,3.0,0.16166110336780548,-0.016129031777381897,-0.10000000149011612,0.00037078236346133053,0.003448275849223137,0.017241379246115685,-0.016129031777381897,0.0027175992727279663,0.003448275849223137,-8.239607996074483e-05,-0.00024630542611703277,-1.951563910473908e-18,-0.10000000149011612,0.003448275849223137,0.27241379022598267,3.454907640332035e-21,-0.003448275849223137,-0.1034482792019844,0.00037078236346133053,-8.239607996074483e-05,3.454907640332035e-21,2.942717173937126e-06,6.348111177126548e-21,-4.447185021318194e-20,0.003448275849223137,-0.00024630542611703277,-0.003448275849223137,6.348111177126548e-21,0.00024630542611703277,4.119968255444917e-18,0.017241379246115685,-1.951563910473908e-18,-0.1034482792019844,-4.447185021318194e-20,4.119968255444917e-18,0.0517241396009922,29.0,4.0,0.1353837549686432,-0.012614015489816666,-0.06517241150140762,0.00027808675076812506,0.0020689654629677534,0.008620689623057842,-0.012614015489816666,0.0020751452539116144,0.0020689654629677534,-6.179705815156922e-05,-0.00014778325567021966,5.421010862427522e-19,-0.06517241150140762,0.0020689654629677534,0.10379310697317123,-3.0629869942560957e-19,-0.0013793103862553835,-0.0258620698004961,0.00027808675076812506,-6.179705815156922e-05,-3.0629869942560957e-19,2.2070378236094257e-06,5.044330340591276e-21,6.876849386755704e-20,0.0020689654629677534,-0.00014778325567021966,-0.0013793103862553835,5.044330340591276e-21,9.85221704468131e-05,-1.6263032587282567e-18,0.008620689623057842,5.421010862427522e-19,-0.0258620698004961,6.876849386755704e-20,-1.6263032587282567e-18,0.008620689623057842,29.0,5.0,0.11650405079126358,-0.010367074981331825,-0.04591133072972298,0.0002224694035248831,0.0013793103862553835,0.004926108289510012,-0.010367074981331825,0.0016798205906525254,0.0013793103862553835,-4.9437647248851135e-05,-9.85221704468131e-05,2.2768245622195593e-18,-0.04591133072972298,0.0013793103862553835,0.052512314170598984,1.561244114146026e-20,-0.0006896551931276917,-0.009852216579020023,0.0002224694035248831,-4.9437647248851135e-05,1.561244114146026e-20,1.7656302588875405e-06,4.6679777021638535e-21,-1.9987969703511486e-20,0.0013793103862553835,-9.85221704468131e-05,-0.0006896551931276917,4.6679777021638535e-21,4.926108522340655e-05,-8.402566836762659e-19,0.004926108289510012,2.2768245622195593e-18,-0.009852216579020023,-1.9987969703511486e-20,-8.402566836762659e-19,0.002463054144755006,29.0,6.0,0.10225912183523178,-0.008803432807326317,-0.03411329910159111,0.00018539118173066527,0.000985221704468131,0.0030788176227360964,-0.008803432807326317,0.001411579316481948,0.000985221704468131,-4.1198039980372414e-05,-7.037297473289073e-05,-2.439454888092385e-18,-0.03411329910159111,0.000985221704468131,0.030578818172216415,-2.2107123068576234e-19,-0.0003940886817872524,-0.004618226550519466,0.00018539118173066527,-4.1198039980372414e-05,-2.2107123068576234e-19,1.471358586968563e-06,4.278794070719056e-21,2.9417227688202194e-20,0.000985221704468131,-7.037297473289073e-05,-0.0003940886817872524,4.278794070719056e-21,2.814919025695417e-05,5.89534931288993e-19,0.0030788176227360964,-2.439454888092385e-18,-0.004618226550519466,2.9417227688202194e-20,5.89534931288993e-19,0.0009236453333869576,29.0,7.0,0.09112241119146347,-0.0076513588428497314,-0.026354679837822914,0.00015890672511886805,0.0007389162783510983,0.0020525450818240643,-0.0076513588428497314,0.0012174651492387056,0.0007389162783510983,-3.531260517775081e-05,-5.2779731049668044e-05,-2.168404344971009e-19,-0.026354679837822914,0.0007389162783510983,0.01945812813937664,-5.0675187819446804e-20,-0.00024630542611703277,-0.002463054144755006,0.00015890672511886805,-3.531260517775081e-05,-5.0675187819446804e-20,1.2611644706339575e-06,-3.330839080768632e-22,8.178927636789923e-21,0.0007389162783510983,-5.2779731049668044e-05,-0.00024630542611703277,-3.330839080768632e-22,1.759324368322268e-05,-2.710505431213761e-20,0.0020525450818240643,-2.168404344971009e-19,-0.002463054144755006,8.178927636789923e-21,-2.710505431213761e-20,0.0004105090338271111,29.0,8.0,0.0821746364235878,-0.006766777951270342,-0.02097701095044613,0.00013904337538406253,0.0005747126415371895,0.0014367816038429737,-0.006766777951270342,0.0010704133892431855,0.0005747126415371895,-3.089852907578461e-05,-4.105090192751959e-05,5.692061405548898e-19,-0.02097701095044613,0.0005747126415371895,0.013177339918911457,6.693645683181401e-20,-0.00016420360771007836,-0.0014367816038429737,0.00013904337538406253,-3.089852907578461e-05,6.693645683181401e-20,1.1035189118047128e-06,4.2113487099985173e-22,-1.010098034087205e-20,0.0005747126415371895,-4.105090192751959e-05,-0.00016420360771007836,4.2113487099985173e-22,1.1728829122148454e-05,-6.776263578034403e-20,0.0014367816038429737,5.692061405548898e-19,-0.0014367816038429737,-1.010098034087205e-20,-6.776263578034403e-20,0.00020525451691355556,29.0,9.0,0.07482747733592987,-0.006065999157726765,-0.017095088958740234,0.00012359411630313843,0.0004597701190505177,0.0010449320543557405,-0.006065999157726765,0.0009551274706609547,0.0004597701190505177,-2.746535938058514e-05,-3.284072226961143e-05,2.574980159653073e-19,-0.017095088958740234,0.0004597701190505177,0.00934915617108345,-3.9490500709727986e-20,-0.00011494252976262942,-0.000895656063221395,0.00012359411630313843,-2.746535938058514e-05,-3.9490500709727986e-20,9.809057246457087e-07,1.0828328371815276e-21,3.187460922806748e-21,0.0004597701190505177,-3.284072226961143e-05,-0.00011494252976262942,1.0828328371815276e-21,8.210180567402858e-06,-8.639736061993863e-20,0.0010449320543557405,2.574980159653073e-19,-0.000895656063221395,3.187460922806748e-21,-8.639736061993863e-20,0.00011195700790267438,29.0,10.0,0.06868641823530197,-0.005497016943991184,-0.014200626872479916,0.00011123470176244155,0.00037617553607560694,0.0007836990407668054,-0.005497016943991184,0.0008623017347417772,0.00037617553607560694,-2.4718823624425568e-05,-2.6869682187680155e-05,-8.131516293641283e-20,-0.014200626872479916,0.00037617553607560694,0.006878265645354986,-4.6609271991321894e-20,-8.359456842299551e-05,-0.0005877742660231888,0.00011123470176244155,-2.4718823624425568e-05,-4.6609271991321894e-20,8.828151294437703e-07,1.4215481518926121e-21,2.636848834685357e-21,0.00037617553607560694,-2.6869682187680155e-05,-8.359456842299551e-05,1.4215481518926121e-21,5.971040536678629e-06,-5.929230630780102e-21,0.0007836990407668054,-8.131516293641283e-20,-0.0005877742660231888,2.636848834685357e-21,-5.929230630780102e-21,6.530825339723378e-05,29.0,11.0,0.06347689777612686,-0.005025786347687244,-0.011984567157924175,0.0001011224594549276,0.00031347962794825435,0.0006028454517945647,-0.005025786347687244,0.0007859462057240307,0.00031347962794825435,-2.247165684821084e-05,-2.2391401216736995e-05,-1.6263032587282567e-19,-0.011984567157924175,0.00031347962794825435,0.005210191942751408,-9.787314906620363e-21,-6.269592267926782e-05,-0.0004018969484604895,0.0001011224594549276,-2.247165684821084e-05,-9.787314906620363e-21,8.025592137528292e-07,-2.7343193774183106e-22,1.6098304940119851e-21,0.00031347962794825435,-2.2391401216736995e-05,-6.269592267926782e-05,-2.7343193774183106e-22,4.4782805161958095e-06,1.9058241313221758e-20,0.0006028454517945647,-1.6263032587282567e-19,-0.0004018969484604895,1.6098304940119851e-21,1.9058241313221758e-20,4.018969411845319e-05,29.0,12.0,0.0590018630027771,-0.004629075061529875,-0.010250094346702099,9.269559086533263e-05,0.00026525199064053595,0.0004736642586067319,-0.004629075061529875,0.0007220295956358314,0.00026525199064053595,-2.0599019990186207e-05,-1.8946569980471395e-05,3.2526065174565133e-19,-0.010250094346702099,0.00026525199064053595,0.004042509011924267,5.504323459748097e-20,-4.822763366973959e-05,-0.00028419855516403913,9.269559086533263e-05,-2.0599019990186207e-05,5.504323459748097e-20,7.356792934842815e-07,7.799535927502355e-23,-4.597673408548598e-21,0.00026525199064053595,-1.8946569980471395e-05,-4.822763366973959e-05,7.799535927502355e-23,3.4448310088919243e-06,-3.049318610115481e-20,0.0004736642586067319,3.2526065174565133e-19,-0.00028419855516403913,-4.597673408548598e-21,-3.049318610115481e-20,2.5836232453002594e-05,29.0,13.0,0.055116184055805206,-0.004290481563657522,-0.008866994641721249,8.556515967939049e-05,0.00022735884704161435,0.0003789314068853855,-0.004290481563657522,0.0006677380879409611,0.00022735884704161435,-1.9014480130863376e-05,-1.6239917385973968e-05,6.776263578034403e-20,-0.008866994641721249,0.00022735884704161435,0.0032002481166273355,1.5461365972982825e-20,-3.789313996094279e-05,-0.00020668985962402076,8.556515967939049e-05,-1.9014480130863376e-05,1.5461365972982825e-20,6.790885436203098e-07,-1.4247864195976572e-22,-1.0413844443905327e-21,0.00022735884704161435,-1.6239917385973968e-05,-3.789313996094279e-05,-1.4247864195976572e-22,2.7066530492447782e-06,-7.199780051661553e-21,0.0003789314068853855,6.776263578034403e-20,-0.00020668985962402076,-1.0413844443905327e-21,-7.199780051661553e-21,1.7224154362338595e-05,29.0,14.0,0.05171063169836998,-0.00399809330701828,-0.00774630531668663,7.945336255943403e-05,0.0001970443408936262,0.00030788176809437573,-0.00399809330701828,0.0006210478022694588,0.0001970443408936262,-1.7656302588875405e-05,-1.4074595128477085e-05,-1.0164395367051604e-19,-0.00774630531668663,0.0001970443408936262,0.0025772072840481997,-3.6489909500040413e-20,-3.0314513423945755e-05,-0.00015394088404718786,7.945336255943403e-05,-1.7656302588875405e-05,-3.6489909500040413e-20,6.305822353169788e-07,4.354847431150268e-22,2.189018986383473e-21,0.0001970443408936262,-1.4074595128477085e-05,-3.0314513423945755e-05,4.354847431150268e-22,2.1653222574968822e-06,5.293955920339377e-21,0.00030788176809437573,-1.0164395367051604e-19,-0.00015394088404718786,2.189018986383473e-21,5.293955920339377e-21,1.1841606465168297e-05,29.0,15.0,0.048701390624046326,-0.0037430478259921074,-0.0068255579099059105,7.41564726922661e-05,0.00017241379828192294,0.0002535496896598488,-0.0037430478259921074,0.000580465653911233,0.00017241379828192294,-1.6479216355946846e-05,-1.2315271305851638e-05,-3.049318610115481e-20,-0.0068255579099059105,0.00017241379828192294,0.002106301486492157,-1.2997771692794155e-20,-2.4630542611703277e-05,-0.00011702293704729527,7.41564726922661e-05,-1.6479216355946846e-05,-1.2997771692794155e-20,5.885434006813739e-07,5.565636586871618e-22,3.467789625318324e-22,0.00017241379828192294,-1.2315271305851638e-05,-2.4630542611703277e-05,5.565636586871618e-22,1.7593243910596357e-06,2.541098841762901e-21,0.0002535496896598488,-3.049318610115481e-20,-0.00011702293704729527,3.467789625318324e-22,2.541098841762901e-21,8.358781087736133e-06,29.0,16.0,0.046023085713386536,-0.003518615383654833,-0.006059837527573109,6.952168769203126e-05,0.00015212981088552624,0.000211291408049874,-0.003518615383654833,0.0005448657320812345,0.00015212981088552624,-1.5449264537892304e-05,-1.0866415323107503e-05,-3.049318610115481e-20,-0.006059837527573109,0.00015212981088552624,0.001743697444908321,-2.0257709746973334e-20,-2.0283976482460275e-05,-9.055346163222566e-05,6.952168769203126e-05,-1.5449264537892304e-05,-2.0257709746973334e-20,5.517594559023564e-07,3.7886315985929584e-22,6.873991554479723e-22,0.00015212981088552624,-1.0866415323107503e-05,-2.0283976482460275e-05,3.7886315985929584e-22,1.4488554143099464e-06,7.411538288475128e-22,0.000211291408049874,-3.049318610115481e-20,-9.055346163222566e-05,6.873991554479723e-22,7.411538288475128e-22,6.036897502781358e-06,29.0,17.0,0.04362398013472557,-0.0033195926807820797,-0.005416177213191986,6.543217750731856e-05,0.0001352265098830685,0.00017792961443774402,-0.0033195926807820797,0.0005133829545229673,0.0001352265098830685,-1.454048469895497e-05,-9.659035640652291e-06,-0.0,-0.005416177213191986,0.0001352265098830685,0.0014599125133827329,8.470329472543003e-22,-1.6903313735383563e-05,-7.117184577509761e-05,6.543217750731856e-05,-1.454048469895497e-05,8.470329472543003e-22,5.193030006012123e-07,-5.293955920339377e-23,-0.0,0.0001352265098830685,-9.659035640652291e-06,-1.6903313735383563e-05,-5.293955920339377e-23,1.2073794550815364e-06,-0.0,0.00017792961443774402,-0.0,-7.117184577509761e-05,-0.0,-0.0,4.4482403609436005e-06,29.0,18.0,0.041462574154138565,-0.003141892608255148,-0.0048699332401156425,6.179705815156922e-05,0.00012099213199689984,0.0001512401649961248,-0.003141892608255148,0.0004853418213315308,0.00012099213199689984,-1.373267969029257e-05,-8.642295142635703e-06,-0.0,-0.0048699332401156425,0.00012099213199689984,0.0012346090516075492,-1.2705494208814505e-21,-1.4234368791221641e-05,-5.6715063692536205e-05,6.179705815156922e-05,-1.373267969029257e-05,-1.2705494208814505e-21,4.904528623228543e-07,1.0587911840678754e-22,-0.0,0.00012099213199689984,-8.642295142635703e-06,-1.4234368791221641e-05,1.0587911840678754e-22,1.0167406117034261e-06,-0.0,0.0001512401649961248,-0.0,-5.6715063692536205e-05,-0.0,-0.0,3.3361802707077004e-06,29.0,19.0,0.039505213499069214,-0.0029822608921676874,-0.004402385093271732,5.8544581406749785e-05,0.00010889292025240138,0.00012963442713953555,-0.0029822608921676874,0.0004602068802341819,0.00010889292025240138,-1.300990697927773e-05,-7.778065992170013e-06,-0.0,-0.004402385093271732,0.00010889292025240138,0.0010534449247643352,-4.235164736271502e-22,-1.2099213563487865e-05,-4.575332786771469e-05,5.8544581406749785e-05,-1.300990697927773e-05,-4.235164736271502e-22,4.6463952685371623e-07,2.6469779601696886e-23,-0.0,0.00010889292025240138,-7.778065992170013e-06,-1.2099213563487865e-05,2.6469779601696886e-23,8.642295483696216e-07,-0.0,0.00012963442713953555,-0.0,-4.575332786771469e-05,-0.0,-0.0,2.541851699788822e-06,29.0,20.0,0.03772431239485741,-0.0028380739968270063,-0.003999104257673025,5.561735088122077e-05,9.85221704468131e-05,0.00011195700790267438,-0.0028380739968270063,0.0004375483840703964,9.85221704468131e-05,-1.2359411812212784e-05,-7.037297564238543e-06,-0.0,-0.003999104257673025,9.85221704468131e-05,0.0009061053860932589,8.470329472543003e-22,-1.0370754353061784e-05,-3.731900142156519e-05,5.561735088122077e-05,-1.2359411812212784e-05,8.470329472543003e-22,4.4140756472188514e-07,-5.293955920339377e-23,-0.0,9.85221704468131e-05,-7.037297564238543e-06,-1.0370754353061784e-05,-5.293955920339377e-23,7.407682005577954e-07,-0.0,0.00011195700790267438,-0.0,-3.731900142156519e-05,-0.0,-0.0,1.9641579456219915e-06,29.0,21.0,0.03609703481197357,-0.002707192674279213,-0.003648824989795685,5.296890594763681e-05,8.956560486694798e-05,9.735392086440697e-05,-0.002707192674279213,0.00041701740701682866,8.956560486694798e-05,-1.1770868695748504e-05,-6.397543529601535e-06,-0.0,-0.003648824989795685,8.956560486694798e-05,0.0007850415422581136,4.235164736271502e-22,-8.956561032391619e-06,-3.07433438138105e-05,5.296890594763681e-05,-1.1770868695748504e-05,4.235164736271502e-22,4.203881474040827e-07,-2.6469779601696886e-23,-0.0,8.956560486694798e-05,-6.397543529601535e-06,-8.956561032391619e-06,-2.6469779601696886e-23,6.397543188541022e-07,-0.0,9.735392086440697e-05,-0.0,-3.07433438138105e-05,-0.0,-0.0,1.5371671224784222e-06,29.0,22.0,0.03460432589054108,-0.0025878555607050657,-0.003342646872624755,5.05612297274638e-05,8.17772961454466e-05,8.5184678027872e-05,-0.0025878555607050657,0.0003983275673817843,8.17772961454466e-05,-1.123582842410542e-05,-5.841235179104842e-06,-0.0,-0.003342646872624755,8.17772961454466e-05,0.0006846414180472493,0.0,-7.788313268974889e-06,-2.555540413595736e-05,5.05612297274638e-05,-1.123582842410542e-05,0.0,4.012796068764146e-07,0.0,-0.0,8.17772961454466e-05,-5.841235179104842e-06,-7.788313268974889e-06,0.0,5.563081231230171e-07,-0.0,8.5184678027872e-05,-0.0,-2.555540413595736e-05,-0.0,-0.0,1.2169240335424547e-06,29.0,23.0,0.03323015943169594,-0.0024785993155092,-0.0030734632164239883,4.83629155496601e-05,7.496251782868057e-05,7.496251782868057e-05,-0.0024785993155092,0.00038124178536236286,7.496251782868057e-05,-1.0747314263426233e-05,-5.354465429263655e-06,0.0,-0.0030734632164239883,7.496251782868057e-05,0.0006006736657582223,-0.0,-6.814774224039866e-06,-2.141786171705462e-05,4.83629155496601e-05,-1.0747314263426233e-05,-0.0,3.838326563254668e-07,0.0,0.0,7.496251782868057e-05,-5.354465429263655e-06,-6.814774224039866e-06,0.0,4.867695793109306e-07,-2.6469779601696886e-23,7.496251782868057e-05,0.0,-2.141786171705462e-05,0.0,-2.6469779601696886e-23,9.735391586218611e-07,29.0,24.0,0.031960953027009964,-0.0023781980853527784,-0.0028355438262224197,4.634779543266632e-05,6.89655207679607e-05,6.631299766013399e-05,-0.0023781980853527784,0.00036556198028847575,6.89655207679607e-05,-1.0299509995093103e-05,-4.926108431391185e-06,-2.541098841762901e-21,-0.0028355438262224197,6.89655207679607e-05,0.0005299063632264733,-4.596205041792282e-22,-5.997001608193386e-06,-1.8085362171404995e-05,4.634779543266632e-05,-1.0299509995093103e-05,-4.596205041792282e-22,3.6783964674214076e-07,5.814113130757835e-23,-2.4018118237405764e-23,6.89655207679607e-05,-4.926108431391185e-06,-5.997001608193386e-06,5.814113130757835e-23,4.283572536678548e-07,2.9116757561866574e-22,6.631299766013399e-05,-2.541098841762901e-21,-1.8085362171404995e-05,-2.4018118237405764e-23,2.9116757561866574e-22,7.863201290092547e-07,29.0,25.0,0.030785126611590385,-0.002285616472363472,-0.0026242262683808804,4.449388143257238e-05,6.366047455230728e-05,5.894488640478812e-05,-0.002285616472363472,0.0003511213872116059,6.366047455230728e-05,-9.887528904073406e-06,-4.547177013591863e-06,-3.9810548520952116e-20,-0.0026242262683808804,6.366047455230728e-05,0.00046984199434518814,-3.13792677894353e-20,-5.305039849190507e-06,-1.5376926967292093e-05,4.449388143257238e-05,-9.887528904073406e-06,-3.13792677894353e-20,3.5312604040882434e-07,4.072464762033437e-22,1.106385876161373e-21,6.366047455230728e-05,-4.547177013591863e-06,-5.305039849190507e-06,4.072464762033437e-22,3.7893141779932193e-07,8.999725064576941e-22,5.894488640478812e-05,-3.9810548520952116e-20,-1.5376926967292093e-05,1.106385876161373e-21,8.999725064576941e-22,6.407053092516435e-07,29.0,26.0,0.029692739248275757,-0.0021999753080308437,-0.0024356869980692863,4.2782579839695245e-05,5.894488640478812e-05,5.262936247163452e-05,-0.0021999753080308437,0.00033777864882722497,5.894488640478812e-05,-9.507240065431688e-06,-4.2103488340217154e-06,-1.9058241313221758e-21,-0.0024356869980692863,5.894488640478812e-05,0.00041852975846268237,-3.6301669870005892e-22,-4.715590876003262e-06,-1.315734061790863e-05,4.2782579839695245e-05,-9.507240065431688e-06,-3.6301669870005892e-22,3.395442718101549e-07,4.0901230978524474e-24,1.1412173825654645e-23,5.894488640478812e-05,-4.2103488340217154e-06,-4.715590876003262e-06,4.0901230978524474e-24,3.368279237747629e-07,1.5881867761018131e-22,5.262936247163452e-05,-1.9058241313221758e-21,-1.315734061790863e-05,1.1412173825654645e-23,1.5881867761018131e-22,5.262936042527144e-07,29.0,27.0,0.02867521531879902,-0.0021205218508839607,-0.002266764873638749,4.1198039980372414e-05,5.4734537116019055e-05,4.718494528788142e-05,-0.0021205218508839607,0.0003254131297580898,5.4734537116019055e-05,-9.155120096693281e-06,-3.909609858965268e-06,0.0,-0.002266764873638749,5.4734537116019055e-05,0.00037443070323206484,3.247668655115839e-22,-4.2103488340217154e-06,-1.1324386832711753e-05,4.1198039980372414e-05,-9.155120096693281e-06,3.247668655115839e-22,3.269685748819029e-07,-3.012167547834186e-23,3.412549561544132e-24,5.4734537116019055e-05,-3.909609858965268e-06,-4.2103488340217154e-06,-3.012167547834186e-23,3.0073923085183196e-07,-2.6469779601696886e-23,4.718494528788142e-05,0.0,-1.1324386832711753e-05,3.412549561544132e-24,-2.6469779601696886e-23,4.355533462785388e-07,29.0,28.0,0.027725113555788994,-0.002046609064564109,-0.0021148293744772673,3.972668127971701e-05,5.095974120195024e-05,4.2466450395295396e-05,-0.002046609064564109,0.00031392122036777437,5.095974120195024e-05,-8.828151294437703e-06,-3.639981514425017e-06,8.470329472543003e-22,-0.0021148293744772673,5.095974120195024e-05,0.00033631979022175074,-0.0,-3.7747956866951426e-06,-9.799950021260884e-06,3.972668127971701e-05,-8.828151294437703e-06,-0.0,3.152911176584894e-07,2.6469779601696886e-23,-1.3234889800848443e-23,5.095974120195024e-05,-3.639981514425017e-06,-3.7747956866951426e-06,2.6469779601696886e-23,2.6962825927512313e-07,-5.293955920339377e-23,4.2466450395295396e-05,8.470329472543003e-22,-9.799950021260884e-06,-1.3234889800848443e-23,-5.293955920339377e-23,3.6296111716183077e-07,29.0,29.0,0.02683594822883606,-0.0019776762928813696,-0.0019776762928813696,3.835679672192782e-05,4.756242560688406e-05,3.835679672192782e-05,-0.0019776762928813696,0.00030321351368911564,4.756242560688406e-05,-8.523732503817882e-06,-3.3973160498135258e-06,-7.411538288475128e-21,-0.0019776762928813696,4.756242560688406e-05,0.00030321351368911564,-1.9461688963471694e-20,-3.3973160498135258e-06,-8.523732503817882e-06,3.835679672192782e-05,-8.523732503817882e-06,-1.9461688963471694e-20,3.044190179934958e-07,3.768746245329637e-22,5.4047634882723e-22,4.756242560688406e-05,-3.3973160498135258e-06,-3.3973160498135258e-06,3.768746245329637e-22,2.4266543618978176e-07,-4.896909226313924e-22,3.835679672192782e-05,-7.411538288475128e-21,-8.523732503817882e-06,5.4047634882723e-22,-4.896909226313924e-22,3.044190179934958e-07,29.0,30.0,0.02600204013288021,-0.0019132369197905064,-0.0018534482223913074,3.707823634613305e-05,4.449388143257238e-05,3.476084384601563e-05,-0.0019132369197905064,0.0002932123315986246,4.449388143257238e-05,-8.239608177973423e-06,-3.178134420522838e-06,8.470329472543003e-22,-0.0018534482223913074,4.449388143257238e-05,0.000274316145805642,-0.0,-3.0685434921906563e-06,-7.4487525125732645e-06,3.707823634613305e-05,-8.239608177973423e-06,-0.0,2.9427170034068695e-07,0.0,-6.617444900424222e-24,4.449388143257238e-05,-3.178134420522838e-06,-3.0685434921906563e-06,0.0,2.191816861341067e-07,-3.970466940254533e-23,3.476084384601563e-05,8.470329472543003e-22,-7.4487525125732645e-06,-6.617444900424222e-24,-3.970466940254533e-23,2.5685352511573e-07,29.0,31.0,0.02521839179098606,-0.001852865214459598,-0.0017405702965334058,3.588216350181028e-05,4.171301407041028e-05,3.160076812491752e-05,-0.001852865214459598,0.00028384997858665884,4.171301407041028e-05,-7.973813808348496e-06,-2.979501005029306e-06,2.117582368135751e-22,-0.0017405702965334058,4.171301407041028e-05,0.0002489791950210929,-0.0,-2.7808675895357737e-06,-6.53809001960326e-06,3.588216350181028e-05,-7.973813808348496e-06,-0.0,2.8477907676460745e-07,0.0,6.617444900424222e-24,4.171301407041028e-05,-2.979501005029306e-06,-2.7808675895357737e-06,0.0,1.9863340128267737e-07,-2.6469779601696886e-23,3.160076812491752e-05,2.117582368135751e-22,-6.53809001960326e-06,6.617444900424222e-24,-2.6469779601696886e-23,2.179363320919947e-07,29.0,32.0,0.02448059432208538,-0.0017961877165362239,-0.001637700479477644,3.476084384601563e-05,3.918495349353179e-05,2.881246473407373e-05,-0.0017961877165362239,0.00027506714104674757,3.918495349353179e-05,-7.724632268946152e-06,-2.7989251520921243e-06,-1.4823076576950256e-21,-0.001637700479477644,3.918495349353179e-05,0.00022667045413982123,-0.0,-2.52806148637319e-06,-5.762492946814746e-06,3.476084384601563e-05,-7.724632268946152e-06,-0.0,2.758797279511782e-07,0.0,0.0,3.918495349353179e-05,-2.7989251520921243e-06,-2.52806148637319e-06,0.0,1.8057582451547205e-07,7.940933880509066e-23,2.881246473407373e-05,-1.4823076576950256e-21,-5.762492946814746e-06,0.0,7.940933880509066e-23,1.8588687566989393e-07,29.0,33.0,0.023784738034009933,-0.001742875319905579,-0.0015436895191669464,3.370748527231626e-05,3.6879955587210134e-05,2.6342824639868923e-05,-0.001742875319905579,0.0002668116067070514,3.6879955587210134e-05,-7.4905524343193974e-06,-2.6342825094616273e-06,-1.4823076576950256e-20,-0.0015436895191669464,3.6879955587210134e-05,0.00020695051352959126,-1.4898579426065594e-20,-2.3049972242006334e-06,-5.098611381981755e-06,3.370748527231626e-05,-7.4905524343193974e-06,-1.4898579426065594e-20,2.6751973791760975e-07,1.3946933324385205e-22,3.3396702839392724e-22,3.6879955587210134e-05,-2.6342825094616273e-06,-2.3049972242006334e-06,1.3946933324385205e-22,1.646426568413517e-07,3.044024654195142e-22,2.6342824639868923e-05,-1.4823076576950256e-20,-5.098611381981755e-06,3.3396702839392724e-22,3.044024654195142e-22,1.5933160568692983e-07,29.0,34.0,0.023127347230911255,-0.0016926369862630963,-0.0014575485838577151,3.271608875365928e-05,3.477252903394401e-05,2.414759001112543e-05,-0.0016926369862630963,0.0002590372459962964,3.477252903394401e-05,-7.270242349477485e-06,-2.48375204137119e-06,2.117582368135751e-22,-0.0014575485838577151,3.477252903394401e-05,0.00018945430929306895,1.6432541897782883e-22,-2.107426098518772e-06,-4.527673354459694e-06,3.271608875365928e-05,-7.270242349477485e-06,1.6432541897782883e-22,2.5965150030060613e-07,-1.8279007634933627e-24,-3.927130629767945e-24,3.477252903394401e-05,-2.48375204137119e-06,-2.107426098518772e-06,-1.8279007634933627e-24,1.505304254578732e-07,-6.617444900424222e-24,2.414759001112543e-05,2.117582368135751e-22,-4.527673354459694e-06,-3.927130629767945e-24,-6.617444900424222e-24,1.3720222113988711e-07,29.0,35.0,0.022505315020680428,-0.0016452142735943198,-0.0013784227194264531,3.1781342840986326e-05,3.284072226961143e-05,2.2189677110873163e-05,-0.0016452142735943198,0.00025170319713652134,3.284072226961143e-05,-7.062521035550162e-06,-2.3457657789549557e-06,1.376428539288238e-20,-0.0013784227194264531,3.284072226961143e-05,0.00017387689149472862,1.4176531530663496e-20,-1.9318072190799285e-06,-4.034486664750148e-06,3.1781342840986326e-05,-7.062521035550162e-06,1.4176531530663496e-20,2.522328941267915e-07,-1.7073899697679498e-22,-2.826176865577142e-22,3.284072226961143e-05,-2.3457657789549557e-06,-1.9318072190799285e-06,-1.7073899697679498e-22,1.379862339945248e-07,-3.044024654195142e-22,2.2189677110873163e-05,1.376428539288238e-20,-4.034486664750148e-06,-2.826176865577142e-22,-3.044024654195142e-22,1.1866137583638192e-07,29.0,36.0,0.021915866062045097,-0.001600376795977354,-0.0013055705931037664,3.089852907578461e-05,3.106554868281819e-05,2.043786116701085e-05,-0.001600376795977354,0.0002447730803396553,3.106554868281819e-05,-6.866339845146285e-06,-2.218967665612581e-06,-6.352747104407253e-22,-0.0013055705931037664,3.106554868281819e-05,0.00015996216097846627,-0.0,-1.7751741552274325e-06,-3.606681275414303e-06,3.089852907578461e-05,-6.866339845146285e-06,-0.0,2.4522643116142717e-07,0.0,0.0,3.106554868281819e-05,-2.218967665612581e-06,-1.7751741552274325e-06,0.0,1.267981559749387e-07,3.970466940254533e-23,2.043786116701085e-05,-6.352747104407253e-22,-3.606681275414303e-06,0.0,3.970466940254533e-23,1.0304803765848192e-07,29.0,37.0,0.021356504410505295,-0.001557918731123209,-0.0012383457506075501,3.0063434678595513e-05,2.9430519134621136e-05,1.8865717720473185e-05,-0.001557918731123209,0.0002382144157309085,2.9430519134621136e-05,-6.68076290821773e-06,-2.1021799057052704e-06,0.0,-0.0012383457506075501,2.9430519134621136e-05,0.00014749397814739496,-0.0,-1.635028866076027e-06,-3.2341229143639794e-06,3.0063434678595513e-05,-6.68076290821773e-06,-0.0,2.3859868747422297e-07,0.0,0.0,2.9430519134621136e-05,-2.1021799057052704e-06,-1.635028866076027e-06,0.0,1.1678777411816554e-07,0.0,1.8865717720473185e-05,0.0,-3.2341229143639794e-06,0.0,0.0,8.983675314766515e-08,29.0,38.0,0.020824983716011047,-0.0015176556771621108,-0.0011761831119656563,2.9272290703374892e-05,2.7921261789742857e-05,1.7450789528083988e-05,-0.0015176556771621108,0.0002319980994798243,2.7921261789742857e-05,-6.504953489638865e-06,-1.994375907088397e-06,1.0587911840678754e-21,-0.0011761831119656563,2.7921261789742857e-05,0.00013628909073304385,-0.0,-1.5092574585651164e-06,-2.908464693973656e-06,2.9272290703374892e-05,-6.504953489638865e-06,-0.0,2.3231976342685812e-07,0.0,0.0,2.7921261789742857e-05,-1.994375907088397e-06,-1.5092574585651164e-06,0.0,1.0780409809285629e-07,-5.293955920339377e-23,1.7450789528083988e-05,1.0587911840678754e-21,-2.908464693973656e-06,0.0,-5.293955920339377e-23,7.860715811602859e-08,29.0,39.0,0.020319275557994843,-0.0014794216258451343,-0.0011185870971530676,2.8521719286800362e-05,2.6525198336457834e-05,1.617390262254048e-05,-0.0014794216258451343,0.00022609801089856774,2.6525198336457834e-05,-6.338159892038675e-06,-1.8946570889966097e-06,9.529120656610879e-22,-0.0011185870971530676,2.6525198336457834e-05,0.00012619140034075826,-0.0,-1.3960631122245104e-06,-2.622794909257209e-06,2.8521719286800362e-05,-6.338159892038675e-06,-0.0,2.2636285734733974e-07,0.0,0.0,2.6525198336457834e-05,-1.8946570889966097e-06,-1.3960631122245104e-06,0.0,9.971878967007797e-08,-4.963083675318166e-23,1.617390262254048e-05,9.529120656610879e-22,-2.622794909257209e-06,0.0,-4.963083675318166e-23,6.90209205345127e-08,29.0,40.0,0.019837547093629837,-0.00144306686706841,-0.0010651207994669676,2.7808675440610386e-05,2.5231287509086542e-05,1.5018623344076332e-05,-0.00144306686706841,0.00022049061954021454,2.5231287509086542e-05,-6.179705906106392e-06,-1.8022348058366333e-06,-1.0587911840678754e-22,-0.0010651207994669676,2.5231287509086542e-05,0.000117067429528106,-0.0,-1.2939121916133445e-06,-2.371361460973276e-06,2.7808675440610386e-05,-6.179705906106392e-06,-0.0,2.2070378236094257e-07,0.0,0.0,2.5231287509086542e-05,-1.8022348058366333e-06,-1.2939121916133445e-06,0.0,9.242229737083107e-08,6.617444900424222e-24,1.5018623344076332e-05,-1.0587911840678754e-22,-2.371361460973276e-06,0.0,6.617444900424222e-24,6.080414038933668e-08,29.0,41.0,0.01937812939286232,-0.001408456126227975,-0.0010153986513614655,2.7130416128784418e-05,2.402979771432001e-05,1.3970811778563075e-05,-0.001408456126227975,0.00021515465050470084,2.402979771432001e-05,-6.028981260897126e-06,-1.7164140899694758e-06,0.0,-0.0010153986513614655,2.402979771432001e-05,0.000108802538306918,-0.0,-1.2014897947665304e-06,-2.1493556232599076e-06,2.7130416128784418e-05,-6.028981260897126e-06,-0.0,2.153207674382429e-07,0.0,0.0,2.402979771432001e-05,-1.7164140899694758e-06,-1.2014897947665304e-06,0.0,8.582070165630284e-08,3.308722450212111e-24,1.3970811778563075e-05,0.0,-2.1493556232599076e-06,0.0,3.308722450212111e-24,5.373389200258316e-08,29.0,42.0,0.018939508125185966,-0.001375467050820589,-0.0009690790320746601,2.6484452973818406e-05,2.2912132408237085e-05,1.3018257050134707e-05,-0.001375467050820589,0.0002100708952639252,2.2912132408237085e-05,-5.885434347874252e-06,-1.6365808050977648e-06,-8.999725064576941e-22,-0.0009690790320746601,2.2912132408237085e-05,0.00010129791189683601,-0.0,-1.1176649650224135e-06,-1.952738557520206e-06,2.6484452973818406e-05,-5.885434347874252e-06,-0.0,2.1019407370204135e-07,0.0,0.0,2.2912132408237085e-05,-1.6365808050977648e-06,-1.1176649650224135e-06,0.0,7.983321381743735e-08,4.632211430296955e-23,1.3018257050134707e-05,-8.999725064576941e-22,-1.952738557520206e-06,0.0,4.632211430296955e-23,4.7627768395841485e-08,29.0,43.0,0.018520304933190346,-0.0013439879985526204,-0.0009258584468625486,2.5868535885820165e-05,2.1870671844226308e-05,1.2150372640462592e-05,-0.0013439879985526204,0.00020522184786386788,2.1870671844226308e-05,-5.748563580709742e-06,-1.5621908460161649e-06,-7.940933880509066e-22,-0.0009258584468625486,2.1870671844226308e-05,9.446809417568147e-05,-0.0,-1.0414605640107766e-06,-1.7781034102881677e-06,2.5868535885820165e-05,-5.748563580709742e-06,-0.0,2.0530583810796088e-07,0.0,0.0,2.1870671844226308e-05,-1.5621908460161649e-06,-1.0414605640107766e-06,0.0,7.439003724130089e-08,3.639594695233322e-23,1.2150372640462592e-05,-7.940933880509066e-22,-1.7781034102881677e-06,0.0,3.639594695233322e-23,4.233579531387477e-08,29.0,44.0,0.01811925508081913,-0.0013139178045094013,-0.0008854663465172052,2.52806148637319e-05,2.0898642105748877e-05,1.1357957191648893e-05,-0.0013139178045094013,0.00020059164671692997,2.0898642105748877e-05,-5.61791421205271e-06,-1.4927601341696572e-06,-3.1763735522036263e-22,-0.0008854663465172052,2.0898642105748877e-05,8.823887765174732e-05,-0.0,-9.72029852164269e-07,-1.6225653780566063e-06,2.52806148637319e-05,-5.61791421205271e-06,-0.0,2.006398034382073e-07,0.0,0.0,2.0898642105748877e-05,-1.4927601341696572e-06,-9.72029852164269e-07,0.0,6.943070474108026e-08,1.6543612251060553e-23,1.1357957191648893e-05,-3.1763735522036263e-22,-1.6225653780566063e-06,0.0,1.6543612251060553e-23,3.77340789725622e-08,29.0,45.0,0.017735205590724945,-0.0012851639185100794,-0.000847661285661161,2.4718823624425568e-05,1.999000414798502e-05,1.0632981684466358e-05,-0.0012851639185100794,0.0001961657835636288,1.999000414798502e-05,-5.4930719670664985e-06,-1.4278574553827639e-06,5.293955920339377e-23,-0.000847661285661161,1.999000414798502e-05,8.25456518214196e-05,-0.0,-9.086365935218055e-07,-1.4836717809885158e-06,2.4718823624425568e-05,-5.4930719670664985e-06,-0.0,1.9618113356045797e-07,0.0,0.0,1.999000414798502e-05,-1.4278574553827639e-06,-9.086365935218055e-07,0.0,6.490261483804716e-08,-3.308722450212111e-24,1.0632981684466358e-05,5.293955920339377e-23,-1.4836717809885158e-06,0.0,-3.308722450212111e-24,3.3719814496180334e-08,29.0,46.0,0.01736709661781788,-0.0012576415902003646,-0.0008122268482111394,2.418145777483005e-05,1.9139366486342624e-05,9.968420272343792e-06,-0.0012576415902003646,0.00019193103071302176,1.9139366486342624e-05,-5.3736571317131165e-06,-1.367097638649284e-06,8.470329472543003e-22,-0.0008122268482111394,1.9139366486342624e-05,7.733198435744271e-05,-0.0,-8.506385142936779e-07,-1.3593299854619545e-06,2.418145777483005e-05,-5.3736571317131165e-06,-0.0,1.919163281627334e-07,0.0,0.0,1.9139366486342624e-05,-1.367097638649284e-06,-8.506385142936779e-07,0.0,6.07598948931809e-08,-3.970466940254533e-23,9.968420272343792e-06,8.470329472543003e-22,-1.3593299854619545e-06,0.0,-3.970466940254533e-23,3.020733174707857e-08,29.0,47.0,0.01701395958662033,-0.0012312735198065639,-0.0007789689698256552,2.366695844102651e-05,1.8341892427997664e-05,9.358108400192577e-06,-0.0012312735198065639,0.00018787526641972363,1.8341892427997664e-05,-5.259324098005891e-06,-1.3101351896693814e-06,-1.0587911840678754e-22,-0.0007789689698256552,1.8341892427997664e-05,7.25483987480402e-05,-0.0,-7.974736035976093e-07,-1.2477478321670787e-06,2.366695844102651e-05,-5.259324098005891e-06,-0.0,1.878330095905767e-07,0.0,0.0,1.8341892427997664e-05,-1.3101351896693814e-06,-7.974736035976093e-07,0.0,5.6962399241911044e-08,6.617444900424222e-24,9.358108400192577e-06,-1.0587911840678754e-22,-1.2477478321670787e-06,0.0,6.617444900424222e-24,2.712495295043027e-08,29.0,48.0,0.016674894839525223,-0.001205988461151719,-0.0007477128528989851,2.317389771633316e-05,1.759324368322268e-05,8.79662184161134e-06,-0.001205988461151719,0.00018398737302049994,1.759324368322268e-05,-5.149754997546552e-06,-1.2566603118102648e-06,0.0,-0.0007477128528989851,1.759324368322268e-05,6.815144297434017e-05,-0.0,-7.486486879315635e-07,-1.147385546573787e-06,2.317389771633316e-05,-5.149754997546552e-06,-0.0,1.8391982337107038e-07,0.0,0.0,1.759324368322268e-05,-1.2566603118102648e-06,-7.486486879315635e-07,0.0,5.347490628082596e-08,0.0,8.79662184161134e-06,0.0,-1.147385546573787e-06,0.0,0.0,2.4412457833022927e-08,29.0,49.0,0.016349082812666893,-0.0011817212216556072,-0.0007183011039160192,2.2700960471411236e-05,1.6889514881768264e-05,8.279173925984651e-06,-0.0011817212216556072,0.00018025714962277561,1.6889514881768264e-05,-5.04465788253583e-06,-1.2063939038853277e-06,-3.1763735522036263e-22,-0.0007183011039160192,1.6889514881768264e-05,6.410282367141917e-05,-1.0753334836543897e-21,-7.03729767792538e-07,-1.0569158348516794e-06,2.2700960471411236e-05,-5.04465788253583e-06,-1.0753334836543897e-21,1.8016635294770822e-07,7.680953725140808e-23,2.938735877055719e-38,1.6889514881768264e-05,-1.2063939038853277e-06,-7.03729767792538e-07,7.680953725140808e-23,5.026641147765076e-08,1.6543612251060553e-23,8.279173925984651e-06,-3.1763735522036263e-22,-1.0569158348516794e-06,2.938735877055719e-38,1.6543612251060553e-23,2.201907989274332e-08,29.0,50.0,0.01603575609624386,-0.0011584112653508782,-0.000690591346938163,2.224694071628619e-05,1.622718082217034e-05,7.801529136486351e-06,-0.0011584112653508782,0.00017667519568931311,1.622718082217034e-05,-4.943764452036703e-06,-1.1590843769226922e-06,-4.0234064994579266e-21,-0.000690591346938163,1.622718082217034e-05,6.036871127435006e-05,-7.828239407777952e-21,-6.623338890676678e-07,-9.75191142060794e-07,2.224694071628619e-05,-4.943764452036703e-06,-7.828239407777952e-21,1.7656302020441217e-07,9.764024249088481e-23,1.3659613774396884e-22,1.622718082217034e-05,-1.1590843769226922e-06,-6.623338890676678e-07,9.764024249088481e-23,4.730956248977236e-08,1.4889251025954498e-23,7.801529136486351e-06,-4.0234064994579266e-21,-9.75191142060794e-07,1.3659613774396884e-22,1.4889251025954498e-23,1.9901859715787396e-08,29.0,51.0,0.015734214335680008,-0.0011360032949596643,-0.0006644547684118152,2.1810727048432454e-05,1.5603058272972703e-05,7.359933078987524e-06,-0.0011360032949596643,0.0001732328237267211,1.5603058272972703e-05,-4.84682823298499e-06,-1.1145041298732394e-06,-4.822145407338146e-22,-0.0006644547684118152,1.5603058272972703e-05,5.691913975169882e-05,-5.717472393966527e-21,-6.241223218239611e-07,-9.012163104671345e-07,2.1810727048432454e-05,-4.84682823298499e-06,-5.717472393966527e-21,1.731010002004041e-07,2.514629062161204e-22,2.7723396331507046e-23,1.5603058272972703e-05,-1.1145041298732394e-06,-6.241223218239611e-07,2.514629062161204e-22,4.4580165337038125e-08,-7.12869224246257e-24,7.359933078987524e-06,-4.822145407338146e-22,-9.012163104671345e-07,2.7723396331507046e-23,-7.12869224246257e-24,1.8024325143528586e-08,29.0,52.0,0.015443802811205387,-0.001114445854909718,-0.0006397744291462004,2.1391289919847623e-05,1.5014263226476032e-05,6.9510479079326615e-06,-0.001114445854909718,0.00016992204473353922,1.5014263226476032e-05,-4.753620032715844e-06,-1.0724473895606934e-06,-2.451540384582697e-21,-0.0006397744291462004,1.5014263226476032e-05,5.3727511840406805e-05,-6.45862622281404e-21,-5.887946485927387e-07,-8.341257284882886e-07,2.1391289919847623e-05,-4.753620032715844e-06,-6.45862622281404e-21,1.6977213590507745e-07,2.3161057151484775e-22,6.526339038935885e-23,1.5014263226476032e-05,-1.0724473895606934e-06,-5.887946485927387e-07,2.3161057151484775e-22,4.20567616288281e-08,1.8313683593744427e-23,6.9510479079326615e-06,-2.451540384582697e-21,-8.341257284882886e-07,6.526339038935885e-23,1.8313683593744427e-23,1.635540769484578e-08,29.0,53.0,0.01516391709446907,-0.001093691331334412,-0.0006164442165754735,2.0987679818063043e-05,1.4458179975918029e-05,6.571900030394318e-06,-0.001093691331334412,0.00016673546633683145,1.4458179975918029e-05,-4.663928848458454e-06,-1.032727141137002e-06,4.739476318567839e-21,-0.0006164442165754735,1.4458179975918029e-05,5.077015521237627e-05,5.61159327555974e-21,-5.560838189921924e-07,-7.731646860520414e-07,2.0987679818063043e-05,-4.663928848458454e-06,5.61159327555974e-21,1.665688955654332e-07,2.6469779601696886e-23,-1.1627780712876402e-22,1.4458179975918029e-05,-1.032727141137002e-06,-5.560838189921924e-07,2.6469779601696886e-23,3.9720273292687125e-08,-4.822192802101331e-23,6.571900030394318e-06,4.739476318567839e-21,-7.731646860520414e-07,-1.1627780712876402e-22,-4.822192802101331e-23,1.4868551723168366e-08,29.0,54.0,0.014893995597958565,-0.0010736958356574178,-0.0005943673313595355,2.0599019990186207e-05,1.393242746416945e-05,6.219833721843315e-06,-0.0010736958356574178,0.00016366619092877954,1.393242746416945e-05,-4.5775600483466405e-06,-9.951734227797715e-07,8.825495301296558e-21,-0.0005943673313595355,1.393242746416945e-05,4.802596231456846e-05,1.6093625997831706e-20,-5.257520001578087e-07,-7.176731173785811e-07,2.0599019990186207e-05,-4.5775600483466405e-06,1.6093625997831706e-20,1.6348428744095145e-07,-1.7205356741102976e-22,-2.4385232961223363e-22,1.393242746416945e-05,-9.951734227797715e-07,-5.257520001578087e-07,-1.7205356741102976e-22,3.755371480451686e-08,-6.017696673378756e-23,6.219833721843315e-06,8.825495301296558e-21,-7.176731173785811e-07,-2.4385232961223363e-22,-6.017696673378756e-23,1.3541002097383625e-08,29.0,55.0,0.014633514918386936,-0.0010544182732701302,-0.0005734555888921022,2.022449189098552e-05,1.3434841093840078e-05,5.8924742916133255e-06,-0.0010544182732701302,0.00016070788842625916,1.3434841093840078e-05,-4.494331733440049e-06,-9.596315067028627e-07,3.9007293138264904e-21,-0.0005734555888921022,1.3434841093840078e-05,4.5476062950911e-05,6.988021814847978e-21,-4.975867113898857e-07,-6.670725269941613e-07,2.022449189098552e-05,-4.494331733440049e-06,6.988021814847978e-21,1.605118455927368e-07,-9.26442286059391e-23,-1.0041310119451115e-22,1.3434841093840078e-05,-9.596315067028627e-07,-4.975867113898857e-07,-9.26442286059391e-23,3.554190897148146e-08,-2.956963692775544e-23,5.8924742916133255e-06,3.9007293138264904e-21,-6.670725269941613e-07,-1.0041310119451115e-22,-2.956963692775544e-23,1.2353194911440823e-08,29.0,56.0,0.01438198797404766,-0.0010358209256082773,-0.0005536284297704697,1.9863340639858507e-05,1.2963442713953555e-05,5.587690793618094e-06,-0.0010358209256082773,0.00015785465075168759,1.2963442713953555e-05,-4.414075647218851e-06,-9.259601938538253e-07,-2.475732186325605e-21,-0.0005536284297704697,1.2963442713953555e-05,4.3103562347823754e-05,-7.623296525288703e-21,-4.71397925139172e-07,-6.208545642039098e-07,1.9863340639858507e-05,-4.414075647218851e-06,-7.623296525288703e-21,1.576455588292447e-07,2.6138907356675675e-22,6.287060486986799e-23,1.2963442713953555e-05,-9.259601938538253e-07,-4.71397925139172e-07,2.6138907356675675e-22,3.367128087461424e-08,2.1373681355983973e-23,5.587690793618094e-06,-2.475732186325605e-21,-6.208545642039098e-07,6.287060486986799e-23,2.1373681355983973e-23,1.1288264545328275e-08,29.0,57.0,0.014138962142169476,-0.0010178681695833802,-0.0005348121048882604,1.9514860468916595e-05,1.2516427887021564e-05,5.303571015247144e-06,-0.0010178681695833802,0.00015510094817727804,1.2516427887021564e-05,-4.336635811341694e-06,-8.940305633586831e-07,-4.383435245484498e-21,-0.0005348121048882604,1.2516427887021564e-05,4.089329013368115e-05,-3.1763735522036263e-21,-4.4701528167934157e-07,-5.785714165540412e-07,1.9514860468916595e-05,-4.336635811341694e-06,-3.1763735522036263e-21,1.5487984228457208e-07,-2.0514079191315086e-22,1.138538710698478e-22,1.2516427887021564e-05,-8.940305633586831e-07,-4.4701528167934157e-07,-2.0514079191315086e-22,3.19296624695653e-08,3.405776638470176e-23,5.303571015247144e-06,-4.383435245484498e-21,-5.785714165540412e-07,1.138538710698478e-22,3.405776638470176e-23,1.0331632438465022e-08,29.0,58.0,0.013904012739658356,-0.0010005272924900055,-0.0005169390933588147,1.917839836096391e-05,1.209214224218158e-05,5.0383923735353164e-06,-0.0010005272924900055,0.0001524416875327006,1.209214224218158e-05,-4.261866251908941e-06,-8.637244377496245e-07,2.1969317282684957e-21,-0.0005169390933588147,1.209214224218158e-05,3.8831611163914204e-05,4.129285617864714e-21,-4.242857016834023e-07,-5.398277949097974e-07,1.917839836096391e-05,-4.261866251908941e-06,4.129285617864714e-21,1.522095089967479e-07,-4.963083675318166e-23,-5.757669186356186e-23,1.209214224218158e-05,-8.637244377496245e-07,-4.242857016834023e-07,-4.963083675318166e-23,3.0306122056344975e-08,-1.7081733717557067e-23,5.0383923735353164e-06,2.1969317282684957e-21,-5.398277949097974e-07,-5.757669186356186e-23,-1.7081733717557067e-23,9.47066247647399e-09,29.0,59.0,0.01367674395442009,-0.0009837673278525472,-0.000499947287607938,1.8853339497582056e-05,1.168907056126045e-05,4.7906028157740366e-06,-0.0009837673278525472,0.00014987208123784512,1.168907056126045e-05,-4.189630999462679e-06,-8.349336440005573e-07,2.1239370781785258e-21,-0.000499947287607938,1.168907056126045e-05,3.6906247260048985e-05,2.964615315390051e-21,-4.030713967040356e-07,-5.042739985583466e-07,1.8853339497582056e-05,-4.189630999462679e-06,2.964615315390051e-21,1.4962968464260484e-07,7.940933880509066e-23,-6.886716575078534e-23,1.168907056126045e-05,-8.349336440005573e-07,-4.030713967040356e-07,7.940933880509066e-23,2.8790815065349307e-08,-4.57734410330048e-24,4.7906028157740366e-06,2.1239370781785258e-21,-5.042739985583466e-07,-6.886716575078534e-23,-4.57734410330048e-24,8.694378550444526e-09,29.0,60.0,0.013456786051392555,-0.0009675595792941749,-0.00048377978964708745,1.8539118173066527e-05,1.1305822226859163e-05,4.5587994463858195e-06,-0.0009675595792941749,0.00014738767640665174,1.1305822226859163e-05,-4.119804088986712e-06,-8.075587629718939e-07,-1.9763004849671906e-21,-0.00048377978964708745,1.1305822226859163e-05,3.5106113500660285e-05,-2.541098841762901e-21,-3.832482207144494e-07,-4.715999466498033e-07,1.8539118173066527e-05,-4.119804088986712e-06,-2.541098841762901e-21,1.4713585017034347e-07,1.9852334701272664e-23,4.669636253818088e-23,1.1305822226859163e-05,-8.075587629718939e-07,-3.832482207144494e-07,1.9852334701272664e-23,2.737487214687917e-08,1.632668812389926e-23,4.5587994463858195e-06,-1.9763004849671906e-21,-4.715999466498033e-07,4.669636253818088e-23,1.632668812389926e-23,7.993219419688558e-09,29.0,61.0,0.013243789784610271,-0.0009518773294985294,-0.0004683840670622885,1.8235197785543278e-05,1.0941118489427026e-05,4.341713520261692e-06,-0.0009518773294985294,0.0001449842966394499,1.0941118489427026e-05,-4.052265921927756e-06,-7.815084472895251e-07,-2.4657880455681042e-21,-0.0004683840670622885,1.0941118489427026e-05,3.3421187254134566e-05,-8.152692117322641e-21,-3.647039648058126e-07,-4.4153020439807733e-07,1.8235197785543278e-05,-4.052265921927756e-06,-8.152692117322641e-21,1.4472378495611338e-07,2.5477162866633252e-22,7.028027437841309e-23,1.0941118489427026e-05,-7.815084472895251e-07,-3.647039648058126e-07,2.5477162866633252e-22,2.605028193158887e-08,1.6342812440801976e-23,4.341713520261692e-06,-2.4657880455681042e-21,-4.4153020439807733e-07,7.028027437841309e-23,1.6342812440801976e-23,7.3588366511501135e-09,29.0,62.0,0.013037431053817272,-0.0009366953163407743,-0.0004537118074949831,1.794108175090514e-05,1.0593781553325243e-05,4.138195890845964e-06,-0.0009366953163407743,0.0001426580420229584,1.0593781553325243e-05,-3.986906904174248e-06,-7.566986823803745e-07,-2.65651396322749e-21,-0.0004537118074949831,1.0593781553325243e-05,3.1842399039305747e-05,-9.529120656610879e-22,-3.4733710663203965e-07,-4.138195777159126e-07,1.794108175090514e-05,-3.986906904174248e-06,-9.529120656610879e-22,1.4238953838230373e-07,-2.3822801641527197e-22,7.107418399342751e-23,1.0593781553325243e-05,-7.566986823803745e-07,-3.4733710663203965e-07,-2.3822801641527197e-22,2.4809793330859975e-08,1.5411762512858498e-23,4.138195890845964e-06,-2.65651396322749e-21,-4.138195777159126e-07,7.107418399342751e-23,1.5411762512858498e-23,6.7839276418624195e-09,29.0,63.0,0.012837405316531658,-0.0009219900239259005,-0.00043971833656542003,1.7656302588875405e-05,1.0262725481879897e-05,3.947202003473649e-06,-0.0009219900239259005,0.00014040526002645493,1.0262725481879897e-05,-3.923622898582835e-06,-7.330518201342784e-07,2.732216135405472e-21,-0.00043971833656542003,1.0262725481879897e-05,3.0361519748112187e-05,6.88214269644119e-21,-3.3105567354141385e-07,-3.882493899709516e-07,1.7656302588875405e-05,-3.923622898582835e-06,6.88214269644119e-21,1.4012938720497914e-07,-1.522012327097571e-22,-7.116569816932039e-23,1.0262725481879897e-05,-7.330518201342784e-07,-3.3105567354141385e-07,-1.522012327097571e-22,2.3646833824386704e-08,-2.1465910239856983e-23,3.947202003473649e-06,2.732216135405472e-21,-3.882493899709516e-07,-7.116569816932039e-23,-2.1465910239856983e-23,6.262087293151808e-09,29.0,64.0,0.012643423862755299,-0.0009077393915504217,-0.00042636244324967265,1.7380421923007816e-05,9.946949830919039e-06,3.7677839372918243e-06,-0.0009077393915504217,0.0001382225309498608,9.946949830919039e-06,-3.862316134473076e-06,-7.104964083737286e-07,-2.9238621299376095e-21,-0.00042636244324967265,9.946949830919039e-06,2.8971075153094716e-05,-4.9763185651190145e-21,-3.157761909733381e-07,-3.646242419108603e-07,1.7380421923007816e-05,-3.862316134473076e-06,-4.9763185651190145e-21,1.379398639755891e-07,1.4889251025954498e-23,7.325157262046958e-23,9.946949830919039e-06,-7.104964083737286e-07,-3.157761909733381e-07,1.4889251025954498e-23,2.255544195861603e-08,2.272604296074427e-23,3.7677839372918243e-06,-2.9238621299376095e-21,-3.646242419108603e-07,7.325157262046958e-23,2.272604296074427e-23,5.787686330194219e-09,30.0,3.0,0.15676523745059967,-0.015120967291295528,-0.09677419066429138,0.00033602150506339967,0.003225806402042508,0.01666666753590107,-0.015120967291295528,0.0024589160457253456,0.003225806402042508,-7.200460822787136e-05,-0.0002224694035248831,-5.421010862427522e-18,-0.09677419066429138,0.003225806402042508,0.2634408473968506,-4.7892717028706076e-20,-0.003225806402042508,-0.10000000149011612,0.00033602150506339967,-7.200460822787136e-05,-4.7892717028706076e-20,2.4829175799823133e-06,-7.599078167332281e-22,2.8623428337009656e-20,0.003225806402042508,-0.0002224694035248831,-0.003225806402042508,-7.599078167332281e-22,0.0002224694035248831,4.336808689942018e-18,0.01666666753590107,-5.421010862427522e-18,-0.10000000149011612,2.8623428337009656e-20,4.336808689942018e-18,0.05000000074505806,30.0,4.0,0.13125671446323395,-0.011824596673250198,-0.06306451559066772,0.00025201612152159214,0.0019354838877916336,0.008333333767950535,-0.011824596673250198,0.0018775573698803782,0.0019354838877916336,-5.400345617090352e-05,-0.00013348164793569595,-4.933119884809045e-18,-0.06306451559066772,0.0019354838877916336,0.10037634521722794,-2.3466894258279186e-19,-0.0012903226306661963,-0.02500000037252903,0.00025201612152159214,-5.400345617090352e-05,-2.3466894258279186e-19,1.8621881281433161e-06,2.207469799246094e-21,6.210192865591395e-20,0.0019354838877916336,-0.00013348164793569595,-0.0012903226306661963,2.207469799246094e-21,8.898776286514476e-05,2.0057740190981832e-18,0.008333333767950535,-4.933119884809045e-18,-0.02500000037252903,6.210192865591395e-20,2.0057740190981832e-18,0.008333333767950535,30.0,5.0,0.11293778568506241,-0.00971774198114872,-0.044423963874578476,0.00020161290012765676,0.0012903226306661963,0.004761904943734407,-0.00971774198114872,0.0015198434703052044,0.0012903226306661963,-4.320276639191434e-05,-8.898776286514476e-05,-1.951563910473908e-18,-0.044423963874578476,0.0012903226306661963,0.05078341066837311,-1.413002847060153e-19,-0.0006451613153330982,-0.009523809887468815,0.00020161290012765676,-4.320276639191434e-05,-1.413002847060153e-19,1.489750502514653e-06,-2.3035137280527224e-22,3.6818636245347815e-20,0.0012903226306661963,-8.898776286514476e-05,-0.0006451613153330982,-2.3035137280527224e-22,4.449388143257238e-05,3.5236570605778894e-19,0.004761904943734407,-1.951563910473908e-18,-0.009523809887468815,3.6818636245347815e-20,3.5236570605778894e-19,0.0023809524718672037,30.0,6.0,0.09911994636058807,-0.008251728489995003,-0.03300691395998001,0.00016801075253169984,0.0009216589969582856,0.0029761905316263437,-0.008251728489995003,0.0012771299807354808,0.0009216589969582856,-3.600230411393568e-05,-6.356268568197265e-05,2.168404344971009e-19,-0.03300691395998001,0.0009216589969582856,0.029571812599897385,2.9789694839572604e-20,-0.0003686636046040803,-0.004464285913854837,0.00016801075253169984,-3.600230411393568e-05,2.9789694839572604e-20,1.2414587899911567e-06,1.0404496252851841e-21,-7.610372636011129e-21,0.0009216589969582856,-6.356268568197265e-05,-0.0003686636046040803,1.0404496252851841e-21,2.5425075364182703e-05,-1.3552527156068805e-20,0.0029761905316263437,2.168404344971009e-19,-0.004464285913854837,-7.610372636011129e-21,-1.3552527156068805e-20,0.0008928571478463709,30.0,7.0,0.08831924945116043,-0.0071716587990522385,-0.02549923211336136,0.00014400921645574272,0.0006912442622706294,0.0019841270986944437,-0.0071716587990522385,0.0011014931369572878,0.0006912442622706294,-3.0859118851367384e-05,-4.767201608046889e-05,1.3552527156068805e-18,-0.02549923211336136,0.0006912442622706294,0.018817204982042313,1.537733023886112e-19,-0.0002304147492395714,-0.0023809524718672037,0.00014400921645574272,-3.0859118851367384e-05,1.537733023886112e-19,1.064107550519111e-06,-2.606273646228047e-21,-1.8526281784406332e-20,0.0006912442622706294,-4.767201608046889e-05,-0.0002304147492395714,-2.606273646228047e-21,1.5890671420493163e-05,-2.168404344971009e-19,0.0019841270986944437,1.3552527156068805e-18,-0.0023809524718672037,-1.8526281784406332e-20,-2.168404344971009e-19,0.00039682540227659047,30.0,8.0,0.07964269816875458,-0.006342405918985605,-0.020295698195695877,0.00012600806076079607,0.0005376344197429717,0.0013888889225199819,-0.006342405918985605,0.0009684413089416921,0.0005376344197429717,-2.700172808545176e-05,-3.707823634613305e-05,6.369687763352339e-19,-0.020295698195695877,0.0005376344197429717,0.012743216007947922,9.995621441522376e-20,-0.00015360982797574252,-0.0013888889225199819,0.00012600806076079607,-2.700172808545176e-05,9.995621441522376e-20,9.310940640716581e-07,-7.110799772726891e-22,-1.2072507169755372e-20,0.0005376344197429717,-3.707823634613305e-05,-0.00015360982797574252,-7.110799772726891e-22,1.0593781553325243e-05,-7.792703114739563e-20,0.0013888889225199819,6.369687763352339e-19,-0.0013888889225199819,-1.2072507169755372e-20,-7.792703114739563e-20,0.00019841270113829523,30.0,9.0,0.07251900434494019,-0.0056854840368032455,-0.016539588570594788,0.00011200716835446656,0.00043010752415284514,0.001010101055726409,-0.0056854840368032455,0.0008641325403004885,0.00043010752415284514,-2.400153607595712e-05,-2.966258762171492e-05,-1.4907779871675686e-19,-0.016539588570594788,0.00043010752415284514,0.009041102603077888,-5.369927289723544e-21,-0.00010752688103821129,-0.0008658008882775903,0.00011200716835446656,-2.400153607595712e-05,-5.369927289723544e-21,8.276391554318252e-07,3.1765987246604126e-22,4.0986584150747577e-23,0.00043010752415284514,-2.966258762171492e-05,-0.00010752688103821129,3.1765987246604126e-22,7.41564690542873e-06,4.1504614415460717e-20,0.001010101055726409,-1.4907779871675686e-19,-0.0008658008882775903,4.0986584150747577e-23,4.1504614415460717e-20,0.00010822511103469878,30.0,10.0,0.06656525284051895,-0.005152126308530569,-0.013739002868533134,0.00010080645006382838,0.00035190617199987173,0.0007575757335871458,-0.005152126308530569,0.0007801462197676301,0.00035190617199987173,-2.160138319595717e-05,-2.426938954158686e-05,2.710505431213761e-19,-0.013739002868533134,0.00035190617199987173,0.006651596631854773,5.937522470186093e-20,-7.820136670488864e-05,-0.0005681818001903594,0.00010080645006382838,-2.160138319595717e-05,5.937522470186093e-20,7.448752512573265e-07,-6.833354994223509e-22,-5.0480191299147365e-21,0.00035190617199987173,-2.426938954158686e-05,-7.820136670488864e-05,-6.833354994223509e-22,5.393197625380708e-06,-3.049318610115481e-20,0.0007575757335871458,2.710505431213761e-19,-0.0005681818001903594,-5.0480191299147365e-21,-3.049318610115481e-20,6.313131598290056e-05,30.0,11.0,0.061514962464571,-0.004710410721600056,-0.011594857089221478,9.164222865365446e-05,0.00029325514333322644,0.0005827505956403911,-0.004710410721600056,0.0007110624574124813,0.00029325514333322644,-1.9637620425783098e-05,-2.022449189098552e-05,1.9651164376299768e-19,-0.011594857089221478,0.00029325514333322644,0.005038474220782518,7.108218266435322e-20,-5.865102502866648e-05,-0.0003885003970935941,9.164222865365446e-05,-1.9637620425783098e-05,7.108218266435322e-20,6.771593348275928e-07,-8.711576011569562e-22,-5.196576001947215e-21,0.00029325514333322644,-2.022449189098552e-05,-5.865102502866648e-05,-8.711576011569562e-22,4.044898560096044e-06,-1.2281977735187355e-20,0.0005827505956403911,1.9651164376299768e-19,-0.0003885003970935941,-5.196576001947215e-21,-1.2281977735187355e-20,3.885003752657212e-05,30.0,12.0,0.05717695131897926,-0.004338554572314024,-0.009916695766150951,8.400537626584992e-05,0.000248138967435807,0.0004578754596877843,-0.004338554572314024,0.0006532333209179342,0.000248138967435807,-1.800115205696784e-05,-1.711303229967598e-05,-6.776263578034403e-21,-0.009916695766150951,0.000248138967435807,0.003909262828528881,3.353769866266439e-20,-4.511617589741945e-05,-0.00027472528745420277,8.400537626584992e-05,-1.800115205696784e-05,3.353769866266439e-20,6.207293949955783e-07,-4.067642739309747e-22,-2.2377164176700483e-21,0.000248138967435807,-1.711303229967598e-05,-4.511617589741945e-05,-4.067642739309747e-22,3.1114602734305663e-06,1.3129010682441655e-20,0.0004578754596877843,-6.776263578034403e-21,-0.00027472528745420277,-2.2377164176700483e-21,1.3129010682441655e-20,2.4975024643936194e-05,30.0,13.0,0.05341043323278427,-0.0040211803279817104,-0.008578518405556679,7.754342368571088e-05,0.0002126905310433358,0.00036630037357099354,-0.0040211803279817104,0.0006041129236109555,0.0002126905310433358,-1.661644819250796e-05,-1.4668312360299751e-05,-2.0328790734103208e-20,-0.008578518405556679,0.0002126905310433358,0.00309475464746356,-2.4632626001500816e-20,-3.5448421840555966e-05,-0.00019980019715148956,7.754342368571088e-05,-1.661644819250796e-05,-2.4632626001500816e-20,5.729809799959185e-07,6.00953354073153e-23,1.7203945121844737e-21,0.0002126905310433358,-1.4668312360299751e-05,-3.5448421840555966e-05,6.00953354073153e-23,2.4447188025078503e-06,-4.446922973085077e-21,0.00036630037357099354,-2.0328790734103208e-20,-0.00019980019715148956,1.7203945121844737e-21,-4.446922973085077e-21,1.6650015822960995e-05,30.0,14.0,0.05010944604873657,-0.00374711980111897,-0.00749423960223794,7.200460822787136e-05,0.00018433180230204016,0.00029761905898340046,-0.00374711980111897,0.0005618700524792075,0.00018433180230204016,-1.5429559425683692e-05,-1.2712537682091352e-05,-1.9651164376299768e-19,-0.00749423960223794,0.00018433180230204016,0.002492245752364397,-3.909758668759103e-20,-2.8358737836242653e-05,-0.00014880952949170023,7.200460822787136e-05,-1.5429559425683692e-05,-3.909758668759103e-20,5.320537752595556e-07,5.424247469107045e-22,2.215771695681993e-21,0.00018433180230204016,-1.2712537682091352e-05,-2.8358737836242653e-05,5.424247469107045e-22,1.9557751329557505e-06,1.7787691892340307e-20,0.00029761905898340046,-1.9651164376299768e-19,-0.00014880952949170023,2.215771695681993e-21,1.7787691892340307e-20,1.1446886674093548e-05,30.0,15.0,0.04719270393252373,-0.003508064430207014,-0.006603415589779615,6.720430246787146e-05,0.00016129032883327454,0.00024509805371053517,-0.003508064430207014,0.0005251535912975669,0.00016129032883327454,-1.4400921827473212e-05,-1.1123470358143095e-05,-1.0164395367051604e-20,-0.006603415589779615,0.00016129032883327454,0.0020368595141917467,5.6323471078817245e-21,-2.304147528775502e-05,-0.0001131221724790521,6.720430246787146e-05,-1.4400921827473212e-05,5.6323471078817245e-21,4.965834818904113e-07,3.687963859409129e-22,-8.512186305956285e-22,0.00016129032883327454,-1.1123470358143095e-05,-2.304147528775502e-05,3.687963859409129e-22,1.589067210261419e-06,5.717472393966527e-21,0.00024509805371053517,-1.0164395367051604e-20,-0.0001131221724790521,-8.512186305956285e-22,5.717472393966527e-21,8.080155566858593e-06,30.0,16.0,0.04459680616855621,-0.003297705203294754,-0.005862587131559849,6.300403038039804e-05,0.00014231499517336488,0.00020424836839083582,-0.003297705203294754,0.0004929449642077088,0.00014231499517336488,-1.350086404272588e-05,-9.814826626097783e-06,7.453889935837843e-20,-0.005862587131559849,0.00014231499517336488,0.0016862067859619856,1.574930883668224e-20,-1.8975331840920262e-05,-8.753501606406644e-05,6.300403038039804e-05,-1.350086404272588e-05,1.574930883668224e-20,4.6554703203582903e-07,6.096563101542795e-25,-1.1048312774417848e-21,0.00014231499517336488,-9.814826626097783e-06,-1.8975331840920262e-05,6.096563101542795e-25,1.3086436183584738e-06,-4.129285617864714e-21,0.00020424836839083582,7.453889935837843e-20,-8.753501606406644e-05,-1.1048312774417848e-21,-4.129285617864714e-21,5.835667707287939e-06,30.0,17.0,0.04227157309651375,-0.003111163852736354,-0.005239855032414198,5.9297912230249494e-05,0.00012650221469812095,0.0001719986175885424,-0.003111163852736354,0.0004644613654818386,0.00012650221469812095,-1.2706695997621864e-05,-8.724290637474041e-06,-5.082197683525802e-21,-0.005239855032414198,0.00012650221469812095,0.0014117758255451918,3.534889704776091e-21,-1.581277683726512e-05,-6.879944703541696e-05,5.9297912230249494e-05,-1.2706695997621864e-05,3.534889704776091e-21,4.381619191917707e-07,1.8409508105623434e-23,-2.062379775254557e-22,0.00012650221469812095,-8.724290637474041e-06,-1.581277683726512e-05,1.8409508105623434e-23,1.0905363296842552e-06,1.5881867761018131e-21,0.0001719986175885424,-5.082197683525802e-21,-6.879944703541696e-05,-2.062379775254557e-22,1.5881867761018131e-21,4.29996543971356e-06,30.0,18.0,0.04017677530646324,-0.0029446096159517765,-0.00471137510612607,5.600358417723328e-05,0.0001131861936300993,0.00014619882858823985,-0.0029446096159517765,0.00043909161468036473,0.0001131861936300993,-1.200076803797856e-05,-7.805943823768757e-06,-3.453702654668221e-20,-0.00471137510612607,0.0001131861936300993,0.001193899312056601,-3.23373238845307e-20,-1.3316022887011059e-05,-5.482456253957935e-05,5.600358417723328e-05,-1.200076803797856e-05,-3.23373238845307e-20,4.138195777159126e-07,6.352747104407253e-22,1.3541154634336552e-21,0.0001131861936300993,-7.805943823768757e-06,-1.3316022887011059e-05,6.352747104407253e-22,9.183463589579333e-07,-5.567439481138846e-22,0.00014619882858823985,-3.453702654668221e-20,-5.482456253957935e-05,1.3541154634336552e-21,-5.567439481138846e-22,3.2249743071588455e-06,30.0,19.0,0.03827977180480957,-0.0027949914801865816,-0.004259034525603056,5.3056028264109045e-05,0.00010186757572228089,0.0001253132795682177,-0.0027949914801865816,0.00041635127854533494,0.00010186757572228089,-1.1369148523954209e-05,-7.025349987088703e-06,-3.948620324795183e-20,-0.004259034525603056,0.00010186757572228089,0.0010187074076384306,-2.925705837974808e-20,-1.1318618817313109e-05,-4.422821803018451e-05,5.3056028264109045e-05,-1.1369148523954209e-05,-2.925705837974808e-20,3.9203959545375255e-07,5.558653716356346e-22,1.154818250183794e-21,0.00010186757572228089,-7.025349987088703e-06,-1.1318618817313109e-05,5.558653716356346e-22,7.805944051142433e-07,6.6627484880134675e-22,0.0001253132795682177,-3.948620324795183e-20,-4.422821803018451e-05,1.154818250183794e-21,6.6627484880134675e-22,2.457123173371656e-06,30.0,20.0,0.03655381500720978,-0.002659850288182497,-0.0038688729982823133,5.040322503191419e-05,9.216590115102008e-05,0.00010822511103469878,-0.002659850288182497,0.00039585152990184724,9.216590115102008e-05,-1.0800691597978584e-05,-6.356268841045676e-06,-7.963601214232433e-20,-0.0038688729982823133,9.216590115102008e-05,0.0008762252400629222,-5.778164832708045e-20,-9.701673661766108e-06,-3.607503458624706e-05,5.040322503191419e-05,-1.0800691597978584e-05,-5.778164832708045e-20,3.7243762562866323e-07,6.88214269644119e-22,2.2386869816407343e-21,9.216590115102008e-05,-6.356268841045676e-06,-9.701673661766108e-06,6.88214269644119e-22,6.690809186693514e-07,1.2787316628952456e-21,0.00010822511103469878,-7.963601214232433e-20,-3.607503458624706e-05,2.2386869816407343e-21,1.2787316628952456e-21,1.8986861505254637e-06,30.0,21.0,0.0349767729640007,-0.002537180669605732,-0.0035299903247505426,4.800307215191424e-05,8.378717757295817e-05,9.410879283677787e-05,-0.002537180669605732,0.00037727662129327655,8.378717757295817e-05,-1.0286372344125994e-05,-5.778426384495106e-06,-2.1449040468331493e-20,-0.0035299903247505426,8.378717757295817e-05,0.0007591527537442744,-2.3126289716363405e-20,-8.378718121093698e-06,-2.971856520161964e-05,4.800307215191424e-05,-1.0286372344125994e-05,-2.3126289716363405e-20,3.5470250736580056e-07,3.970466940254533e-22,8.59852934084326e-22,8.378717757295817e-05,-5.778426384495106e-06,-8.378718121093698e-06,3.970466940254533e-22,5.778426270808268e-07,-3.486694771575254e-22,9.410879283677787e-05,-2.1449040468331493e-20,-2.971856520161964e-05,8.59852934084326e-22,-3.486694771575254e-22,1.4859282373436145e-06,30.0,22.0,0.03353016451001167,-0.002425331389531493,-0.0032337752636522055,4.582111432682723e-05,7.650133920833468e-05,8.234519191319123e-05,-0.002425331389531493,0.00036036749952472746,7.650133920833468e-05,-9.818810212891549e-06,-5.275954208627809e-06,-1.9907623324168738e-20,-0.0032337752636522055,7.650133920833468e-05,0.000662062899209559,-2.0400674668038627e-20,-7.285842002602294e-06,-2.4703556846361607e-05,4.582111432682723e-05,-9.818810212891549e-06,-2.0400674668038627e-20,3.385796674137964e-07,3.1763735522036263e-22,7.496187481226412e-22,7.650133920833468e-05,-5.275954208627809e-06,-7.285842002602294e-06,3.1763735522036263e-22,5.024718348067836e-07,-1.7441149158939709e-22,8.234519191319123e-05,-1.9907623324168738e-20,-2.4703556846361607e-05,7.496187481226412e-22,-1.7441149158939709e-22,1.1763598877223558e-06,30.0,23.0,0.0321984589099884,-0.002322931308299303,-0.0029733520932495594,4.382889164844528e-05,7.012622518232092e-05,7.246376480907202e-05,-0.002322931308299303,0.0003449096402619034,7.012622518232092e-05,-9.39190522331046e-06,-4.8362917368649505e-06,-1.7143865879199888e-20,-0.0029733520932495594,7.012622518232092e-05,0.0005808637361042202,-1.8699569660387656e-20,-6.375111752277007e-06,-2.070393384201452e-05,4.382889164844528e-05,-9.39190522331046e-06,-1.8699569660387656e-20,3.2385881354457524e-07,2.9116757561866574e-22,6.57472928147508e-22,7.012622518232092e-05,-4.8362917368649505e-06,-6.375111752277007e-06,2.9116757561866574e-22,4.3966286966679036e-07,-1.748044579161675e-22,7.246376480907202e-05,-1.7143865879199888e-20,-2.070393384201452e-05,6.57472928147508e-22,-1.748044579161675e-22,9.410878760718333e-07,30.0,24.0,0.03096848353743553,-0.0022288307081907988,-0.002743176184594631,4.200268813292496e-05,6.451612716773525e-05,6.410256173694506e-05,-0.0022288307081907988,0.00033072379301302135,6.451612716773525e-05,-9.00057602848392e-06,-4.449388143257238e-06,-1.7787691892340307e-20,-0.002743176184594631,6.451612716773525e-05,0.0005124298040755093,-1.999629643959957e-20,-5.610098014585674e-06,-1.7482518160250038e-05,4.200268813292496e-05,-9.00057602848392e-06,-1.999629643959957e-20,3.1036469749778917e-07,4.439132107054467e-22,5.763324877284513e-22,6.451612716773525e-05,-4.449388143257238e-06,-5.610098014585674e-06,4.439132107054467e-22,3.8690330939061823e-07,7.940933880509066e-23,6.410256173694506e-05,-1.7787691892340307e-20,-1.7482518160250038e-05,5.763324877284513e-22,7.940933880509066e-23,7.601094580422796e-07,30.0,25.0,0.029829014092683792,-0.0021420596167445183,-0.002538737142458558,4.0322582208318636e-05,5.955334927421063e-05,5.698005770682357e-05,-0.0021420596167445183,0.00031765911262482405,5.955334927421063e-05,-8.640552550787106e-06,-4.1071275518334005e-06,3.049318610115481e-20,-0.002538737142458558,5.955334927421063e-05,0.0004543460381682962,3.040413816950892e-20,-4.96277925776667e-06,-1.4864363038213924e-05,4.0322582208318636e-05,-8.640552550787106e-06,3.040413816950892e-20,2.979500948185887e-07,-3.9827600437305177e-22,-1.0344050069979207e-21,5.955334927421063e-05,-4.1071275518334005e-06,-4.96277925776667e-06,-3.9827600437305177e-22,3.422606198455469e-07,-5.293955920339377e-23,5.698005770682357e-05,3.049318610115481e-20,-1.4864363038213924e-05,-1.0344050069979207e-21,-5.293955920339377e-23,6.193484409777739e-07,30.0,26.0,0.028770415112376213,-0.0020617935806512833,-0.0023563355207443237,3.877171184285544e-05,5.514199074241333e-05,5.087505269329995e-05,-0.0020617935806512833,0.0003055877168662846,5.514199074241333e-05,-8.30822409625398e-06,-3.80289588974847e-06,-1.079967007749233e-20,-0.0023563355207443237,5.514199074241333e-05,0.00040472581167705357,-1.5853784009869676e-20,-4.4113594412920065e-06,-1.2718763173324987e-05,3.877171184285544e-05,-8.30822409625398e-06,-1.5853784009869676e-20,2.8649048999795923e-07,3.183840846423576e-22,4.518929994565259e-22,5.514199074241333e-05,-3.80289588974847e-06,-4.4113594412920065e-06,3.183840846423576e-22,3.042316620849306e-07,-2.117582368135751e-22,5.087505269329995e-05,-1.079967007749233e-20,-1.2718763173324987e-05,4.518929994565259e-22,-2.117582368135751e-22,5.08750531480473e-07,30.0,27.0,0.027784373611211777,-0.0019873271230608225,-0.002192912856116891,3.7335721572162583e-05,5.120327841723338e-05,4.5612116082338616e-05,-0.0019873271230608225,0.0002944004372693598,5.120327841723338e-05,-8.00051202531904e-06,-3.531260517775081e-06,-1.291725244562808e-20,-0.002192912856116891,5.120327841723338e-05,0.0003620809584390372,-1.5152486715615294e-20,-3.938713689422002e-06,-1.0946907423203811e-05,3.7335721572162583e-05,-8.00051202531904e-06,-1.5152486715615294e-20,2.758797279511782e-07,2.707077549115005e-22,4.382575955077659e-22,5.120327841723338e-05,-3.531260517775081e-06,-3.938713689422002e-06,2.707077549115005e-22,2.716354288168077e-07,3.970466940254533e-23,4.5612116082338616e-05,-1.291725244562808e-20,-1.0946907423203811e-05,4.382575955077659e-22,3.970466940254533e-23,4.21034911823881e-07,30.0,28.0,0.02686367742717266,-0.0019180538365617394,-0.002045924076810479,3.600230411393568e-05,4.767201608046889e-05,4.105090192751959e-05,-0.0019180538365617394,0.000284003559499979,4.767201608046889e-05,-7.714779712841846e-06,-3.2877253488550195e-06,4.235164736271502e-22,-0.002045924076810479,4.767201608046889e-05,0.00032522683613933623,7.24014549620186e-21,-3.531260517775081e-06,-9.473284990235697e-06,3.600230411393568e-05,-7.714779712841846e-06,7.24014549620186e-21,2.660268876297778e-07,-1.183170062578731e-22,-2.3074504595141374e-22,4.767201608046889e-05,-3.2877253488550195e-06,-3.531260517775081e-06,-1.183170062578731e-22,2.43535197341771e-07,3.970466940254533e-22,4.105090192751959e-05,4.235164736271502e-22,-9.473284990235697e-06,-2.3074504595141374e-22,3.970466940254533e-22,3.5086242178294924e-07,30.0,29.0,0.02600204013288021,-0.0018534482223913074,-0.0019132369197905064,3.476084384601563e-05,4.449388143257238e-05,3.707823634613305e-05,-0.0018534482223913074,0.000274316145805642,4.449388143257238e-05,-7.4487525125732645e-06,-3.0685434921906563e-06,-9.529120656610879e-21,-0.0019132369197905064,4.449388143257238e-05,0.0002932123315986246,-1.2314194158224308e-20,-3.178134420522838e-06,-8.239608177973423e-06,3.476084384601563e-05,-7.4487525125732645e-06,-1.2314194158224308e-20,2.5685352511573e-07,1.9964825004179732e-22,3.328082990092407e-22,4.449388143257238e-05,-3.0685434921906563e-06,-3.178134420522838e-06,1.9964825004179732e-22,2.191816861341067e-07,-1.3234889800848443e-23,3.707823634613305e-05,-9.529120656610879e-21,-8.239608177973423e-06,3.328082990092407e-22,-1.3234889800848443e-23,2.9427170034068695e-07,30.0,30.0,0.02519395388662815,-0.0017930541653186083,-0.0017930541653186083,3.360215123393573e-05,4.1623308788985014e-05,3.360215123393573e-05,-0.0017930541653186083,0.0002652679686434567,4.1623308788985014e-05,-7.200460913736606e-06,-2.8705730983347166e-06,-6.988021814847978e-21,-0.0017930541653186083,4.1623308788985014e-05,0.0002652679686434567,-1.1620556362571711e-20,-2.8705730983347166e-06,-7.200460913736606e-06,3.360215123393573e-05,-7.200460913736606e-06,-1.1620556362571711e-20,2.482917409452057e-07,1.7869034886996276e-22,3.0881210952727826e-22,4.1623308788985014e-05,-2.8705730983347166e-06,-2.8705730983347166e-06,1.7869034886996276e-22,1.9797055017534149e-07,-1.1911400820763599e-22,3.360215123393573e-05,-6.988021814847978e-21,-7.200460913736606e-06,3.0881210952727826e-22,-1.1911400820763599e-22,2.482917409452057e-07,30.0,31.0,0.02443457767367363,-0.0017364724772050977,-0.0016838520532473922,3.2518211810383946e-05,3.902185198967345e-05,3.054740955121815e-05,-0.0017364724772050977,0.0002567977353464812,3.902185198967345e-05,-6.968187790334923e-06,-2.6911623081105063e-06,-9.317362419797304e-21,-0.0016838520532473922,3.902185198967345e-05,0.0002407665888313204,-1.0774021823948217e-20,-2.6014567993115634e-06,-6.320153715932975e-06,3.2518211810383946e-05,-6.968187790334923e-06,-1.0774021823948217e-20,2.4028233269746124e-07,1.6935169987798607e-22,2.795107357943959e-22,3.902185198967345e-05,-2.6911623081105063e-06,-2.6014567993115634e-06,1.6935169987798607e-22,1.794108186459198e-07,9.926167350636332e-23,3.054740955121815e-05,-9.317362419797304e-21,-6.320153715932975e-06,2.795107357943959e-22,9.926167350636332e-23,2.1067178579414758e-07,30.0,32.0,0.023719636723399162,-0.0016833532135933638,-0.001584332436323166,3.150201519019902e-05,3.6656892916653305e-05,2.7852049242937937e-05,-0.0016833532135933638,0.00024885180755518377,3.6656892916653305e-05,-6.75043202136294e-06,-2.52806148637319e-06,-9.423241538204091e-21,-0.001584332436323166,3.6656892916653305e-05,0.0002191936073359102,-9.634889915092562e-21,-2.3649606646358734e-06,-5.570409939537058e-06,3.150201519019902e-05,-6.75043202136294e-06,-9.634889915092562e-21,2.3277351601791452e-07,1.3704161065259077e-22,2.448533373029739e-22,3.6656892916653305e-05,-2.52806148637319e-06,-2.3649606646358734e-06,1.3704161065259077e-22,1.6310073647218815e-07,1.4558378780933287e-22,2.7852049242937937e-05,-9.423241538204091e-21,-5.570409939537058e-06,2.448533373029739e-22,1.4558378780933287e-22,1.7969064458611683e-07,30.0,33.0,0.023045342415571213,-0.001633387990295887,-0.0014933833153918386,3.054740955121815e-05,3.4500604670029134e-05,2.5464731152169406e-05,-0.001633387990295887,0.00024138296430464834,3.4500604670029134e-05,-6.545873475261033e-06,-2.3793520540493773e-06,-6.3527471044072525e-21,-0.0014933833153918386,3.4500604670029134e-05,0.00020012403547298163,-1.072097725158112e-20,-2.156287791876821e-06,-4.928657745040255e-06,3.054740955121815e-05,-6.545873475261033e-06,-1.072097725158112e-20,2.257197735389127e-07,2.5448226186452297e-22,2.1771427548751304e-22,3.4500604670029134e-05,-2.3793520540493773e-06,-2.156287791876821e-06,2.5448226186452297e-22,1.4870950337808608e-07,0.0,2.5464731152169406e-05,-6.3527471044072525e-21,-4.928657745040255e-06,2.1771427548751304e-22,0.0,1.5402055453250796e-07,30.0,34.0,0.022408323362469673,-0.001586303929798305,-0.0014100478729233146,2.9648956115124747e-05,3.252914029872045e-05,2.3342670829151757e-05,-0.001586303929798305,0.0002343494415981695,3.252914029872045e-05,-6.353347998810932e-06,-2.243388962597237e-06,-4.341043854678289e-21,-0.0014100478729233146,3.252914029872045e-05,0.0001832048874348402,-1.0304974065920138e-20,-1.9714630070666317e-06,-4.376750894152792e-06,2.9648956115124747e-05,-6.353347998810932e-06,-1.0304974065920138e-20,2.1908095959588536e-07,2.564753410296692e-22,1.998629338039878e-22,3.252914029872045e-05,-2.243388962597237e-06,-1.9714630070666317e-06,2.564753410296692e-22,1.3596296355444792e-07,-9.926167350636332e-23,2.3342670829151757e-05,-4.341043854678289e-21,-4.376750894152792e-06,1.998629338039878e-22,-9.926167350636332e-23,1.3262881282116723e-07,30.0,35.0,0.021805573254823685,-0.0015418586554005742,-0.001333499443717301,2.8801843654946424e-05,3.072196705034003e-05,2.145002144970931e-05,-0.0015418586554005742,0.00022771427757106721,3.072196705034003e-05,-6.171823770273477e-06,-2.1187563561397837e-06,-4.9763185651190145e-21,-0.001333499443717301,3.072196705034003e-05,0.00016814122500363737,-9.47021473412202e-21,-1.8071744989356375e-06,-3.900003775925143e-06,2.8801843654946424e-05,-6.171823770273477e-06,-9.47021473412202e-21,2.1282150441948033e-07,2.142820111086561e-22,1.8988131899804528e-22,3.072196705034003e-05,-2.1187563561397837e-06,-1.8071744989356375e-06,2.142820111086561e-22,1.2463272014429094e-07,-3.970466940254533e-23,2.145002144970931e-05,-4.9763185651190145e-21,-3.900003775925143e-06,1.8988131899804528e-22,-3.970466940254533e-23,1.1470599758922617e-07,30.0,36.0,0.02123439684510231,-0.001499836565926671,-0.0012630202108994126,2.800179208861664e-05,2.9061318855383433e-05,1.975659870367963e-05,-0.001499836565926671,0.0002214445557910949,2.9061318855383433e-05,-6.00038401898928e-06,-2.004228917940054e-06,-4.129285617864714e-21,-0.0012630202108994126,2.9061318855383433e-05,0.00015468543278984725,-8.858055036599463e-21,-1.6606468307145406e-06,-3.486458581392071e-06,2.800179208861664e-05,-6.00038401898928e-06,-8.858055036599463e-21,2.069097888579563e-07,1.8112365028554576e-22,1.764908405831383e-22,2.9061318855383433e-05,-2.004228917940054e-06,-1.6606468307145406e-06,1.8112365028554576e-22,1.1452736714545608e-07,-5.955700410381799e-23,1.975659870367963e-05,-4.129285617864714e-21,-3.486458581392071e-06,1.764908405831383e-22,-5.955700410381799e-23,9.961310354356101e-08,30.0,37.0,0.020692380145192146,-0.0014600445283576846,-0.0011979852570220828,2.7244986995356157e-05,2.753177614067681e-05,1.823686034185812e-05,-0.0014600445283576846,0.00021551088138949126,2.753177614067681e-05,-5.838211563968798e-06,-1.898743221318e-06,-3.917527381051139e-21,-0.0011979852570220828,2.753177614067681e-05,0.0001426285016350448,-8.054546814525797e-21,-1.529543169453973e-06,-3.126318915747106e-06,2.7244986995356157e-05,-5.838211563968798e-06,-8.054546814525797e-21,2.0131763278641301e-07,1.6578602334283813e-22,1.5669781560016376e-22,2.753177614067681e-05,-1.898743221318e-06,-1.529543169453973e-06,1.6578602334283813e-22,1.0548573214919088e-07,-4.301339185275744e-23,1.823686034185812e-05,-3.917527381051139e-21,-3.126318915747106e-06,1.5669781560016376e-22,-4.301339185275744e-23,8.684219210408628e-08,30.0,38.0,0.020177343860268593,-0.001422309665940702,-0.0011378476629033685,2.6528014132054523e-05,2.6119891117559746e-05,1.686909672571346e-05,-0.001422309665940702,0.0002098869445035234,2.6119891117559746e-05,-5.6845742619771045e-06,-1.8013716953646508e-06,-4.9763185651190145e-21,-0.0011378476629033685,2.6119891117559746e-05,0.0001317931746598333,-7.566799443216478e-21,-1.4118859326117672e-06,-2.8115159693697933e-06,2.6528014132054523e-05,-5.6845742619771045e-06,-7.566799443216478e-21,1.9601979772687628e-07,1.4723674801747125e-22,1.4487732184794038e-22,2.6119891117559746e-05,-1.8013716953646508e-06,-1.4118859326117672e-06,1.4723674801747125e-22,9.737144779364826e-08,2.9778502051908996e-23,1.686909672571346e-05,-4.9763185651190145e-21,-2.8115159693697933e-06,1.4487732184794038e-22,2.9778502051908996e-23,7.59869180910755e-08,30.0,39.0,0.019687321037054062,-0.0013864764478057623,-0.0010821279138326645,2.584780850156676e-05,2.4813894924591295e-05,1.5634772353223525e-05,-0.0013864764478057623,0.00020454911282286048,2.4813894924591295e-05,-5.53881591258687e-06,-1.7113031844928628e-06,-4.552802091491864e-21,-0.0010821279138326645,2.4813894924591295e-05,0.0001220285557792522,-7.093582662589388e-21,-1.3059944876658847e-06,-2.5353683668072335e-06,2.584780850156676e-05,-5.53881591258687e-06,-7.093582662589388e-21,1.9099365999863949e-07,1.281688313568014e-22,1.3776670635312095e-22,2.4813894924591295e-05,-1.7113031844928628e-06,-1.3059944876658847e-06,1.281688313568014e-22,9.006858903148895e-08,2.9778502051908996e-23,1.5634772353223525e-05,-4.552802091491864e-21,-2.5353683668072335e-06,1.3776670635312095e-22,2.9778502051908996e-23,6.672021868325828e-08,30.0,40.0,0.019220534712076187,-0.0013524045934900641,-0.001030403538607061,2.5201612515957095e-05,2.360346115892753e-05,1.4518001989927143e-05,-0.0013524045934900641,0.00019947608234360814,2.360346115892753e-05,-5.400345798989292e-06,-1.6278249859169591e-06,-1.122318655111948e-20,-0.001030403538607061,2.360346115892753e-05,0.0001132055331254378,-1.5362899168346337e-20,-1.2104339930374408e-06,-2.2923161395738134e-06,2.5201612515957095e-05,-5.400345798989292e-06,-1.5362899168346337e-20,1.8621881281433161e-07,1.6946173650793353e-22,2.9491947381454377e-22,2.360346115892753e-05,-1.6278249859169591e-06,-1.2104339930374408e-06,1.6946173650793353e-22,8.347820568133102e-08,1.1911400820763599e-22,1.4518001989927143e-05,-1.122318655111948e-20,-2.2923161395738134e-06,2.9491947381454377e-22,1.1911400820763599e-22,5.877733855186307e-08,30.0,41.0,0.018775371834635735,-0.0013199674431234598,-0.0009823013097047806,2.458693961671088e-05,2.2479487597593106e-05,1.3505118658940773e-05,-0.0013199674431234598,0.0001946486154338345,2.2479487597593106e-05,-5.2686300477944314e-06,-1.5503094346058788e-06,-3.017554874593445e-21,-0.0009823013097047806,2.2479487597593106e-05,0.0001052132502081804,-4.93494984096856e-21,-1.1239743571422878e-06,-2.077710632875096e-06,2.458693961671088e-05,-5.2686300477944314e-06,-4.93494984096856e-21,1.8167689574966062e-07,1.2718247439079287e-23,1.1876337531248335e-22,2.2479487597593106e-05,-1.5503094346058788e-06,-1.1239743571422878e-06,1.2718247439079287e-23,7.751547315137941e-08,-1.9852334701272664e-23,1.3505118658940773e-05,-3.017554874593445e-21,-2.077710632875096e-06,1.1876337531248335e-22,-1.9852334701272664e-23,5.194276297970646e-08,30.0,42.0,0.01835036091506481,-0.0012890499783679843,-0.0009374908404424787,2.400153607595712e-05,2.1433930669445544e-05,1.2584315300046e-05,-0.0012890499783679843,0.00019004932255484164,2.1433930669445544e-05,-5.143186172062997e-06,-1.4782020798520534e-06,-3.546950466627383e-21,-0.0009374908404424787,2.1433930669445544e-05,9.795616642804816e-05,-5.914667728355194e-21,-1.0455576102685882e-06,-1.8876472722695326e-06,2.400153607595712e-05,-5.143186172062997e-06,-5.914667728355194e-21,1.7735125368290028e-07,9.528056388586427e-23,1.1056341232731336e-22,2.1433930669445544e-05,-1.4782020798520534e-06,-1.0455576102685882e-06,9.528056388586427e-23,7.210741870267157e-08,1.6543612251060553e-23,1.2584315300046e-05,-3.546950466627383e-21,-1.8876472722695326e-06,1.1056341232731336e-22,1.6543612251060553e-23,4.604017789233694e-08,30.0,43.0,0.01794416457414627,-0.0012595478910952806,-0.0008956784731708467,2.3443360987585038e-05,2.0459659936022945e-05,1.174536100734258e-05,-0.0012595478910952806,0.00018566238577477634,2.0459659936022945e-05,-5.023577159590786e-06,-1.4110111123954994e-06,-2.2234614865425384e-21,-0.0008956784731708467,2.0459659936022945e-05,9.135163418250158e-05,-5.587696318468767e-21,-9.742695965542225e-07,-1.718833232189354e-06,2.3443360987585038e-05,-5.023577159590786e-06,-5.587696318468767e-21,1.7322680889719777e-07,8.671941620207341e-23,1.031015454703916e-22,2.0459659936022945e-05,-1.4110111123954994e-06,-9.742695965542225e-07,8.671941620207341e-23,6.719100298369085e-08,-4.301339185275744e-23,1.174536100734258e-05,-2.2234614865425384e-21,-1.718833232189354e-06,1.031015454703916e-22,-4.301339185275744e-23,4.092460059723635e-08,30.0,44.0,0.017555560916662216,-0.0012313660699874163,-0.0008566025062464178,2.2910557163413614e-05,1.955034167622216e-05,1.0979359103657771e-05,-0.0012313660699874163,0.00018147342780139297,1.955034167622216e-05,-4.9094051064457744e-06,-1.348299406345177e-06,-3.3881317890172014e-21,-0.0008566025062464178,1.955034167622216e-05,8.532789070159197e-05,-5.287680979911338e-21,-9.093182598007843e-07,-1.5684797745052492e-06,2.2910557163413614e-05,-4.9094051064457744e-06,-5.287680979911338e-21,1.692898337068982e-07,7.909861596085496e-23,9.629654100114203e-23,1.955034167622216e-05,-1.348299406345177e-06,-9.093182598007843e-07,7.909861596085496e-23,6.271159946891203e-08,2.9778502051908996e-23,1.0979359103657771e-05,-3.3881317890172014e-21,-1.5684797745052492e-06,9.629654100114203e-23,2.9778502051908996e-23,3.647627622171967e-08,30.0,45.0,0.01718343235552311,-0.001204417902044952,-0.0008200292359106243,2.240143294329755e-05,1.8700327927945182e-05,1.0278548870701343e-05,-0.001204417902044952,0.000177469351910986,1.8700327927945182e-05,-4.800307124241954e-06,-1.2896776979687274e-06,5.4527745979495584e-21,-0.0008200292359106243,1.8700327927945182e-05,7.982246461324394e-05,1.0023444275348708e-20,-8.50014885145356e-07,-1.4342160739033716e-06,2.240143294329755e-05,-4.800307124241954e-06,1.0023444275348708e-20,1.6552783677070693e-07,-1.445937989277167e-22,-1.8015532036894335e-22,1.8700327927945182e-05,-1.2896776979687274e-06,-8.50014885145356e-07,-1.445937989277167e-22,5.862171548187689e-08,-1.3234889800848443e-23,1.0278548870701343e-05,5.4527745979495584e-21,-1.4342160739033716e-06,-1.8015532036894335e-22,-1.3234889800848443e-23,3.2595821153336146e-08,30.0,46.0,0.016826750710606575,-0.0011786242248490453,-0.0007857494638301432,2.191444582422264e-05,1.7904569176607765e-05,9.636139111535158e-06,-0.0011786242248490453,0.00017363816732540727,1.7904569176607765e-05,-4.69595261165523e-06,-1.2347978781690472e-06,-2.5940384009662948e-21,-0.0007857494638301432,1.7904569176607765e-05,7.478077168343589e-05,-5.7173548600025366e-21,-7.957585808071599e-07,-1.3140189594196272e-06,2.191444582422264e-05,-4.69595261165523e-06,-5.7173548600025366e-21,1.6192940677228762e-07,1.3242170040370546e-22,8.438311312339638e-23,1.7904569176607765e-05,-1.2347978781690472e-06,-7.957585808071599e-07,1.3242170040370546e-22,5.4879905064808554e-08,6.617444900424222e-24,9.636139111535158e-06,-2.5940384009662948e-21,-1.3140189594196272e-06,8.438311312339638e-23,6.617444900424222e-24,2.920042163623293e-08,30.0,47.0,0.01648457534611225,-0.0011539121624082327,-0.0007535752956755459,2.1448180632432923e-05,1.71585452335421e-05,9.046171726367902e-06,-0.0011539121624082327,0.0001699689164524898,1.71585452335421e-05,-4.596038706949912e-06,-1.1833478765765904e-06,-6.03510974918689e-21,-0.0007535752956755459,1.71585452335421e-05,7.015498704276979e-05,-1.0884638651625145e-20,-7.460237156919902e-07,-1.2061561847076518e-06,2.1448180632432923e-05,-4.596038706949912e-06,-1.0884638651625145e-20,1.5848409873342462e-07,9.879912333686517e-23,1.8329402751686223e-22,1.71585452335421e-05,-1.1833478765765904e-06,-7.460237156919902e-07,9.879912333686517e-23,5.144990922190118e-08,1.819797347616661e-23,9.046171726367902e-06,-6.03510974918689e-21,-1.2061561847076518e-06,1.8329402751686223e-22,1.819797347616661e-23,2.6220787319175543e-08,30.0,48.0,0.016156040132045746,-0.001130215241573751,-0.0007233376963995397,2.100134406646248e-05,1.645819611439947e-05,8.50340165925445e-06,-0.001130215241573751,0.00016645154391881078,1.645819611439947e-05,-4.50028801424196e-06,-1.1350480235705618e-06,-2.752857078576476e-21,-0.0007233376963995397,1.645819611439947e-05,6.59030702081509e-05,-5.114266280340004e-21,-7.00348778082116e-07,-1.109139361687994e-06,2.100134406646248e-05,-4.50028801424196e-06,-5.114266280340004e-21,1.5518234874889458e-07,1.116885804136482e-22,7.435705704949734e-23,1.645819611439947e-05,-1.1350480235705618e-06,-7.00348778082116e-07,1.116885804136482e-22,4.829991695487479e-08,2.3161057151484775e-23,8.50340165925445e-06,-2.752857078576476e-21,-1.109139361687994e-06,7.435705704949734e-23,2.3161057151484775e-23,2.3598708764893672e-08,30.0,49.0,0.01584034226834774,-0.0011074719950556755,-0.0006948843947611749,2.0572744688251987e-05,1.5799867469468154e-05,8.003201401152182e-06,-0.0011074719950556755,0.00016307680925820023,1.5799867469468154e-05,-4.408445420267526e-06,-1.0896460480580572e-06,7.99387343971246e-21,-0.0006948843947611749,1.5799867469468154e-05,6.198800838319585e-05,1.4441124313516762e-20,-6.583278491234523e-07,-1.02168530702329e-06,2.0572744688251987e-05,-4.408445420267526e-06,1.4441124313516762e-20,1.520153602996288e-07,-1.6312738538740055e-22,-2.3200126592221113e-22,1.5799867469468154e-05,-1.0896460480580572e-06,-6.583278491234523e-07,-1.6312738538740055e-22,4.5401922221799396e-08,-4.1359030627651384e-23,8.003201401152182e-06,7.99387343971246e-21,-1.02168530702329e-06,-2.3200126592221113e-22,-4.1359030627651384e-23,2.128511056298521e-08,30.0,50.0,0.015536746010184288,-0.0010856261942535639,-0.0006680776714347303,2.0161291104159318e-05,1.518026601843303e-05,7.54147822590312e-06,-0.0010856261942535639,0.00015983621415216476,1.518026601843303e-05,-4.320276275393553e-06,-1.0469149174241466e-06,3.1763735522036263e-21,-0.0006680776714347303,1.518026601843303e-05,5.8377074310556054e-05,7.829624773745265e-21,-6.196027015903383e-07,-9.4268477823789e-07,2.0161291104159318e-05,-4.320276275393553e-06,7.829624773745265e-21,1.4897504740929435e-07,-9.485908497053555e-23,-1.3171770831011175e-22,1.518026601843303e-05,-1.0469149174241466e-06,-6.196027015903383e-07,-9.485908497053555e-23,4.273121945175262e-08,2.6469779601696886e-23,7.54147822590312e-06,3.1763735522036263e-21,-9.4268477823789e-07,-1.3171770831011175e-22,2.6469779601696886e-23,1.9238465043258657e-08,30.0,51.0,0.015244568698108196,-0.0010646255686879158,-0.0006427927874028683,1.9765970137086697e-05,1.4596409528166987e-05,7.114601885405136e-06,-0.0010646255686879158,0.00015672190056648105,1.4596409528166987e-05,-4.235565029375721e-06,-1.0066489721793914e-06,6.273337765602162e-21,-0.0006427927874028683,1.4596409528166987e-05,5.5041295127011836e-05,1.2576349827886097e-20,-5.83856376579206e-07,-8.711757573109935e-07,1.9765970137086697e-05,-4.235565029375721e-06,1.2576349827886097e-20,1.4605397780087515e-07,-9.68245476931118e-23,-2.0608508997113662e-22,1.4596409528166987e-05,-1.0066489721793914e-06,-5.83856376579206e-07,-9.68245476931118e-23,4.0265955902896167e-08,-6.617444900424222e-24,7.114601885405136e-06,6.273337765602162e-21,-8.711757573109935e-07,-2.0608508997113662e-22,-6.617444900424222e-24,1.7423515075165596e-08,30.0,52.0,0.014963177032768726,-0.0010444221552461386,-0.0006189168198034167,1.938585592142772e-05,1.4045601346879266e-05,6.719346401951043e-06,-0.0010444221552461386,0.00015372665075119585,1.4045601346879266e-05,-4.15411204812699e-06,-9.686622206572792e-07,4.9611717289194e-22,-0.0006189168198034167,1.4045601346879266e-05,5.195495396037586e-05,-3.917527381051139e-21,-5.508078970706265e-07,-8.063215659603884e-07,1.938585592142772e-05,-4.15411204812699e-06,-3.917527381051139e-21,1.4324524499897962e-07,2.746239633676052e-22,-8.279718400409643e-24,1.4045601346879266e-05,-9.686622206572792e-07,-5.508078970706265e-07,2.746239633676052e-22,3.798675152211217e-08,-1.0044301637775894e-23,6.719346401951043e-06,4.9611717289194e-22,-8.063215659603884e-07,-8.279718400409643e-24,-1.0044301637775894e-23,1.581022601726545e-08,30.0,53.0,0.014691985212266445,-0.0010249712504446507,-0.0005963469156995416,1.90200844372157e-05,1.3525394024327397e-05,6.352836408041185e-06,-0.0010249712504446507,0.00015084374172147363,1.3525394024327397e-05,-4.075732704222901e-06,-9.327857810603746e-07,-2.708422171994285e-21,-0.0005963469156995416,1.3525394024327397e-05,4.90951570100151e-05,-2.329340604949326e-21,-5.202074362387066e-07,-7.473925620615773e-07,1.90200844372157e-05,-4.075732704222901e-06,-2.329340604949326e-21,1.4054249675155006e-07,-7.610061635487855e-23,6.722445442352759e-23,1.3525394024327397e-05,-9.327857810603746e-07,-5.202074362387066e-07,-7.610061635487855e-23,3.5876375648058456e-08,2.3481214772146912e-23,6.352836408041185e-06,-2.708422171994285e-21,-7.473925620615773e-07,6.722445442352759e-23,2.3481214772146912e-23,1.4372933065942561e-08,30.0,54.0,0.014430447481572628,-0.0010062316432595253,-0.0005749895353801548,1.8667860786081292e-05,1.303356111748144e-05,6.01250621912186e-06,-0.0010062316432595253,0.00014806698891334236,1.303356111748144e-05,-4.00025601265952e-06,-8.988662898445909e-07,2.219443925237331e-21,-0.0005749895353801548,1.303356111748144e-05,4.6441491576842964e-05,4.9763185651190145e-21,-4.91832508942025e-07,-6.937506782378478e-07,1.8667860786081292e-05,-4.00025601265952e-06,4.9763185651190145e-21,1.379398639755891e-07,-1.3234889800848443e-22,-6.437153580435218e-23,1.303356111748144e-05,-8.988662898445909e-07,-4.91832508942025e-07,-1.3234889800848443e-22,3.391948411035628e-08,-1.3031579835189452e-23,6.01250621912186e-06,2.219443925237331e-21,-6.937506782378478e-07,-6.437153580435218e-23,-1.3031579835189452e-23,1.308963604174096e-08,30.0,55.0,0.014178059063851833,-0.0009881650330498815,-0.0005547593464143574,1.8328446458326653e-05,1.2568077181640547e-05,5.696058451576391e-06,-0.0009881650330498815,0.00014539061521645635,1.2568077181640547e-05,-3.92752417610609e-06,-8.667639121995308e-07,-2.0920336751487645e-21,-0.0005547593464143574,1.2568077181640547e-05,4.3975713197141886e-05,-1.9058241313221758e-21,-4.6548433374482556e-07,-6.448368026212847e-07,1.8328446458326653e-05,-3.92752417610609e-06,-1.9058241313221758e-21,1.3543186128117668e-07,-6.948317145445432e-23,5.572795531140934e-23,1.2568077181640547e-05,-8.667639121995308e-07,-4.6548433374482556e-07,-6.948317145445432e-23,3.210236698691915e-08,1.255062475191159e-23,5.696058451576391e-06,-2.0920336751487645e-21,-6.448368026212847e-07,5.572795531140934e-23,1.255062475191159e-23,1.194142207339155e-08,30.0,56.0,0.013934346847236156,-0.0009707357967272401,-0.0005355783505365252,1.800115205696784e-05,1.212709230458131e-05,5.4014344641473144e-06,-0.0009707357967272401,0.00014280929462984204,1.212709230458131e-05,-3.857389856420923e-06,-8.363511483366892e-07,-4.155034037811128e-21,-0.0005355783505365252,1.212709230458131e-05,4.16814764321316e-05,-5.505714157152952e-21,-4.4098516127633047e-07,-6.001594101689989e-07,1.800115205696784e-05,-3.857389856420923e-06,-5.505714157152952e-21,1.330134438148889e-07,-8.271806125530277e-23,1.2330645682008737e-22,1.212709230458131e-05,-8.363511483366892e-07,-4.4098516127633047e-07,-8.271806125530277e-23,3.041277096826889e-08,1.5138815061930217e-23,5.4014344641473144e-06,-4.155034037811128e-21,-6.001594101689989e-07,1.2330645682008737e-22,1.5138815061930217e-23,1.0911989534179156e-08,30.0,57.0,0.013698871247470379,-0.0009539107559248805,-0.0005173753597773612,1.7685342754703015e-05,1.1708916645147838e-05,5.1267852541059256e-06,-0.0009539107559248805,0.0001403180358465761,1.1708916645147838e-05,-3.789716174651403e-06,-8.075114692474017e-07,-5.569494069366494e-25,-0.0005173753597773612,1.1708916645147838e-05,3.954411658924073e-05,-1.376428539288238e-21,-4.181755741683446e-07,-5.59285695089784e-07,1.7685342754703015e-05,-3.789716174651403e-06,-1.376428539288238e-21,1.3067986515125085e-07,2.6469779601696886e-23,1.5823872916076817e-23,1.1708916645147838e-05,-8.075114692474017e-07,-4.181755741683446e-07,2.6469779601696886e-23,2.8839695076499083e-08,-1.3328448704207655e-23,5.1267852541059256e-06,-5.569494069366494e-25,-5.59285695089784e-07,1.5823872916076817e-23,-1.3328448704207655e-23,9.987243920761557e-09,30.0,58.0,0.013471221551299095,-0.0009376590605825186,-0.0005000848323106766,1.7380421923007816e-05,1.1312004062347114e-05,4.870445991400629e-06,-0.0009376590605825186,0.0001379122113576159,1.1312004062347114e-05,-3.7243762562866323e-06,-7.801381798344664e-07,-4.364767641023348e-22,-0.0005000848323106766,1.1312004062347114e-05,3.755045327125117e-05,-1.6940658945086007e-21,-3.9691241227046703e-07,-5.218334990786389e-07,1.7380421923007816e-05,-3.7243762562866323e-06,-1.6940658945086007e-21,1.28426762557865e-07,3.474158572722716e-23,1.8908784483425054e-23,1.1312004062347114e-05,-7.801381798344664e-07,-3.9691241227046703e-07,3.474158572722716e-23,2.737326987301003e-08,-2.1880126112831337e-24,4.870445991400629e-06,-4.364767641023348e-22,-5.218334990786389e-07,1.8908784483425054e-23,-2.1880126112831337e-24,9.154973668046296e-09,30.0,59.0,0.013251014985144138,-0.0009219518979080021,-0.000483646901557222,1.7085838408092968e-05,1.0934937563433778e-05,4.6309160097735e-06,-0.0009219518979080021,0.0001355874992441386,1.0934937563433778e-05,-3.661251184894354e-06,-7.541336231042806e-07,-8.942072837703983e-22,-0.000483646901557222,1.0934937563433778e-05,3.5688608477357775e-05,-4.446922973085077e-21,-3.770668115521403e-07,-4.874648311670171e-07,1.7085838408092968e-05,-3.661251184894354e-06,-4.446922973085077e-21,1.2625004330857337e-07,2.1341259803868114e-22,1.742033017301784e-23,1.0934937563433778e-05,-7.541336231042806e-07,-3.770668115521403e-07,2.1341259803868114e-22,2.600460646817737e-08,1.2290552299817422e-23,4.6309160097735e-06,-8.942072837703983e-22,-4.874648311670171e-07,1.742033017301784e-23,1.2290552299817422e-23,8.404565932096375e-09,30.0,60.0,0.013037891127169132,-0.0009067623177543283,-0.00046800635755062103,1.6801075616967864e-05,1.057641475199489e-05,4.406839252624195e-06,-0.0009067623177543283,0.00013333986862562597,1.057641475199489e-05,-3.600230456868303e-06,-7.294079296116251e-07,3.5766922140719956e-21,-0.00046800635755062103,1.057641475199489e-05,3.394786108401604e-05,8.470329472543003e-21,-3.58522527221794e-07,-4.558799275855563e-07,1.6801075616967864e-05,-3.600230456868303e-06,8.470329472543003e-21,1.2414587047260284e-07,-1.7701665108634792e-22,-9.490685207606849e-23,1.057641475199489e-05,-7.294079296116251e-07,-3.58522527221794e-07,-1.7701665108634792e-22,2.472569171629857e-08,-2.1861113776154605e-23,4.406839252624195e-06,3.5766922140719956e-21,-4.558799275855563e-07,-9.490685207606849e-23,-2.1861113776154605e-23,7.726778328276396e-09,30.0,61.0,0.012831514701247215,-0.0008920651162043214,-0.0004531124432105571,1.6525647879461758e-05,1.0235239642497618e-05,4.196989721094724e-06,-0.0008920651162043214,0.00013116553600411862,1.0235239642497618e-05,-3.5412101624388015e-06,-7.058786195557332e-07,1.1792835910233094e-21,-0.0004531124432105571,1.0235239642497618e-05,3.2318519515683874e-05,6.352747104407253e-22,-3.411746547499206e-07,-4.2681253376031236e-07,1.6525647879461758e-05,-3.5412101624388015e-06,6.352747104407253e-22,1.221106913362746e-07,8.768114493062093e-23,-2.911447996266102e-23,1.0235239642497618e-05,-7.058786195557332e-07,-3.411746547499206e-07,8.768114493062093e-23,2.352928696325307e-08,-7.138760474195906e-24,4.196989721094724e-06,1.1792835910233094e-21,-4.2681253376031236e-07,-2.911447996266102e-23,-7.138760474195906e-24,7.113542199732592e-09,30.0,62.0,0.012631569989025593,-0.0008778368355706334,-0.0004389184177853167,1.6259105905191973e-05,9.910311746352818e-06,4.00025601265952e-06,-0.0008778368355706334,0.0001290609798161313,9.910311746352818e-06,-3.4840938951674616e-06,-6.834697501290066e-07,-6.753457142258807e-22,-0.0004389184177853167,9.910311746352818e-06,3.079181624343619e-05,-1.5881867761018131e-21,-3.249282656270225e-07,-4.0002561263463576e-07,1.6259105905191973e-05,-3.4840938951674616e-06,-1.5881867761018131e-21,1.2014116634873062e-07,6.782881022934827e-23,7.801174076058137e-24,9.910311746352818e-06,-6.834697501290066e-07,-3.249282656270225e-07,6.782881022934827e-23,2.2408844557730845e-08,1.3298550875899778e-23,4.00025601265952e-06,-6.753457142258807e-22,-4.0002561263463576e-07,7.801174076058137e-24,1.3298550875899778e-23,6.557796528028348e-09,30.0,63.0,0.012437759898602962,-0.0008640552987344563,-0.0004253810620866716,1.600102405063808e-05,9.600614248483907e-06,3.815629042946966e-06,-0.0008640552987344563,0.00012702291132882237,9.600614248483907e-06,-3.4287909329577815e-06,-6.621113470828277e-07,-3.908630746601576e-21,-0.0004253810620866716,9.600614248483907e-06,2.9359793188632466e-05,-7.835054762102278e-21,-3.0969724207352556e-07,-3.7530776353378315e-07,1.600102405063808e-05,-3.4287909329577815e-06,-7.835054762102278e-21,1.1823416912193352e-07,9.26442286059391e-23,1.0106138708642178e-22,9.600614248483907e-06,-6.621113470828277e-07,-3.0969724207352556e-07,9.26442286059391e-23,2.1358429691531455e-08,2.2664314594910725e-23,3.815629042946966e-06,-3.908630746601576e-21,-3.7530776353378315e-07,1.0106138708642178e-22,2.2664314594910725e-23,6.0533507095783534e-09,30.0,64.0,0.012249807827174664,-0.0008506998419761658,-0.0004124605329707265,1.575100759509951e-05,9.305211278842762e-06,3.6421911318029743e-06,-0.0008506998419761658,0.00012504820188041776,9.305211278842762e-06,-3.37521601068147e-06,-6.417386657631141e-07,1.3740691004969327e-22,-0.0004124605329707265,9.305211278842762e-06,2.8015219868393615e-05,1.4823076576950256e-21,-2.954035096536245e-07,-3.524701241985895e-07,1.575100759509951e-05,-3.37521601068147e-06,1.4823076576950256e-21,1.1638675800895726e-07,-7.444625512977249e-23,-5.048453413620279e-24,9.305211278842762e-06,-6.417386657631141e-07,-2.954035096536245e-07,-7.444625512977249e-23,2.037265645071784e-08,-1.004915116019074e-24,3.6421911318029743e-06,1.3740691004969327e-22,-3.524701241985895e-07,-5.048453413620279e-24,-1.004915116019074e-24,5.594763763383526e-09,31.0,3.0,0.15215665102005005,-0.014204545877873898,-0.09375,0.0003054740955121815,0.0030241934582591057,0.016129031777381897,-0.014204545877873898,0.002232067519798875,0.0030241934582591057,-6.320153624983504e-05,-0.00020161290012765676,-1.5178830414797062e-18,-0.09375,0.0030241934582591057,0.25504031777381897,4.2025939826643434e-19,-0.0030241934582591057,-0.09677419066429138,0.0003054740955121815,-6.320153624983504e-05,4.2025939826643434e-19,2.1067178295197664e-06,-7.69398250136434e-21,-1.4934698138265751e-19,0.0030241934582591057,-0.00020161290012765676,-0.0030241934582591057,-7.69398250136434e-21,0.00020161290012765676,5.854691731421724e-18,0.016129031777381897,-1.5178830414797062e-18,-0.09677419066429138,-1.4934698138265751e-19,5.854691731421724e-18,0.04838709533214569,31.0,4.0,0.12737353146076202,-0.011107037775218487,-0.06108871102333069,0.00022910557163413614,0.0018145161448046565,0.008064515888690948,-0.011107037775218487,0.0017042926046997309,0.0018145161448046565,-4.740115400636569e-05,-0.0001209677429869771,1.0842021724855044e-19,-0.06108871102333069,0.0018145161448046565,0.0971774160861969,-1.2872070289606785e-19,-0.001209677429869771,-0.024193547666072845,0.00022910557163413614,-4.740115400636569e-05,-1.2872070289606785e-19,1.5800384289832436e-06,3.1342505508100354e-21,2.850568757786583e-20,0.0018145161448046565,-0.0001209677429869771,-0.001209677429869771,3.1342505508100354e-21,8.064516441663727e-05,-8.131516293641283e-19,0.008064515888690948,1.0842021724855044e-19,-0.024193547666072845,2.850568757786583e-20,-8.131516293641283e-19,0.008064515888690948,31.0,5.0,0.10958316177129745,-0.009127565659582615,-0.04302995279431343,0.0001832844573073089,0.001209677429869771,0.004608294926583767,-0.009127565659582615,0.0013795631239190698,0.001209677429869771,-3.792092320509255e-05,-8.064516441663727e-05,-7.589415207398531e-19,-0.04302995279431343,0.001209677429869771,0.04916474595665932,-5.632496388132896e-20,-0.0006048387149348855,-0.009216589853167534,0.0001832844573073089,-3.792092320509255e-05,-5.632496388132896e-20,1.264030743186595e-06,-2.7276581602039775e-21,2.4556769338803155e-20,0.001209677429869771,-8.064516441663727e-05,-0.0006048387149348855,-2.7276581602039775e-21,4.0322582208318636e-05,4.0657581468206416e-20,0.004608294926583767,-7.589415207398531e-19,-0.009216589853167534,2.4556769338803155e-20,4.0657581468206416e-20,0.0023041474632918835,31.0,6.0,0.09616760909557343,-0.007750314194709063,-0.03197004646062851,0.00015273704775609076,0.0008640552987344563,0.002880184445530176,-0.007750314194709063,0.0011592365335673094,0.0008640552987344563,-3.160076812491752e-05,-5.760368730989285e-05,1.328147661294743e-18,-0.03197004646062851,0.0008640552987344563,0.028629032894968987,1.5609191549499147e-19,-0.0003456221311353147,-0.004320276435464621,0.00015273704775609076,-3.160076812491752e-05,1.5609191549499147e-19,1.0533589147598832e-06,-2.7893224957755667e-21,-2.0250659324721027e-20,0.0008640552987344563,-5.760368730989285e-05,-0.0003456221311353147,-2.7893224957755667e-21,2.304147528775502e-05,-2.439454888092385e-19,0.002880184445530176,1.328147661294743e-18,-0.004320276435464621,-2.0250659324721027e-20,-2.439454888092385e-19,0.0008640552987344563,31.0,7.0,0.08568330109119415,-0.006735703907907009,-0.02469758130609989,0.00013091746950522065,0.0006480414886027575,0.0019201228860765696,-0.006735703907907009,0.000999803189188242,0.0006480414886027575,-2.7086372938356362e-05,-4.320276639191434e-05,-1.3552527156068805e-19,-0.02469758130609989,0.0006480414886027575,0.018217165023088455,-5.3940825791972266e-20,-0.00021601382468361408,-0.0023041474632918835,0.00013091746950522065,-2.7086372938356362e-05,-5.3940825791972266e-20,9.028790941556508e-07,4.558249346436371e-22,6.999713011142392e-21,0.0006480414886027575,-4.320276639191434e-05,-0.00021601382468361408,4.558249346436371e-22,1.4400921827473212e-05,0.0,0.0019201228860765696,-1.3552527156068805e-19,-0.0023041474632918835,6.999713011142392e-21,0.0,0.0003840245772153139,31.0,8.0,0.0772620365023613,-0.005956744775176048,-0.019657257944345474,0.00011455278581706807,0.0005040322430431843,0.0013440860202535987,-0.005956744775176048,0.0008790280553512275,0.0005040322430431843,-2.3700577003182843e-05,-3.360215123393573e-05,1.3552527156068805e-20,-0.019657257944345474,0.0005040322430431843,0.01233678963035345,3.0701112165286794e-20,-0.00014400921645574272,-0.0013440860202535987,0.00011455278581706807,-2.3700577003182843e-05,3.0701112165286794e-20,7.900192144916218e-07,2.0435679039110601e-22,-3.996569173783269e-21,0.0005040322430431843,-3.360215123393573e-05,-0.00014400921645574272,2.0435679039110601e-22,9.600614248483907e-06,2.0328790734103208e-20,0.0013440860202535987,1.3552527156068805e-20,-0.0013440860202535987,-3.996569173783269e-21,2.0328790734103208e-20,0.00019201228860765696,31.0,9.0,0.07034865021705627,-0.0053396872244775295,-0.0160190612077713,0.00010182469850406051,0.0004032258002553135,0.0009775171056389809,-0.0053396872244775295,0.0007843451458029449,0.0004032258002553135,-2.1067178749945015e-05,-2.688172025955282e-05,-9.486769009248164e-20,-0.0160190612077713,0.0004032258002553135,0.008752705529332161,2.8722641542902e-20,-0.00010080645006382838,-0.0008378718048334122,0.00010182469850406051,-2.1067178749945015e-05,2.8722641542902e-20,7.022392765065888e-07,-1.2016747199312985e-21,-1.0951459335482944e-21,0.0004032258002553135,-2.688172025955282e-05,-0.00010080645006382838,-1.2016747199312985e-21,6.720430064888205e-06,3.6422416731934915e-20,0.0009775171056389809,-9.486769009248164e-20,-0.0008378718048334122,-1.0951459335482944e-21,3.6422416731934915e-20,0.00010473397560417652,31.0,10.0,0.06457111239433289,-0.004838709719479084,-0.013306451961398125,9.164222865365446e-05,0.00032991202897392213,0.0007331378292292356,-0.004838709719479084,0.0007081100484356284,0.00032991202897392213,-1.8960461602546275e-05,-2.1994135749991983e-05,-3.8624702394796095e-19,-0.013306451961398125,0.00032991202897392213,0.006439393851906061,-7.192805885121965e-20,-7.331378583330661e-05,-0.0005498533719219267,9.164222865365446e-05,-1.8960461602546275e-05,-7.192805885121965e-20,6.320153715932975e-07,2.0086312107938665e-22,7.091044575202043e-21,0.00032991202897392213,-2.1994135749991983e-05,-7.331378583330661e-05,2.0086312107938665e-22,4.88758541905554e-06,3.4728350837426314e-20,0.0007331378292292356,-3.8624702394796095e-19,-0.0005498533719219267,7.091044575202043e-21,3.4728350837426314e-20,6.10948191024363e-05,31.0,11.0,0.05967062711715698,-0.004423820413649082,-0.011229697614908218,8.331111894221976e-05,0.00027492668596096337,0.0005639521987177432,-0.004423820413649082,0.0006454025860875845,0.00027492668596096337,-1.7236783605767414e-05,-1.8328446458326653e-05,1.6940658945086007e-19,-0.011229697614908218,0.00027492668596096337,0.004877716302871704,2.8801582361438264e-20,-5.498533573700115e-05,-0.0003759681130759418,8.331111894221976e-05,-1.7236783605767414e-05,2.8801582361438264e-20,5.745594080508454e-07,-6.927883502298546e-22,-1.654642135318961e-21,0.00027492668596096337,-1.8328446458326653e-05,-5.498533573700115e-05,-6.927883502298546e-22,3.665689064291655e-06,-2.414043899674756e-20,0.0005639521987177432,1.6940658945086007e-19,-0.0003759681130759418,-1.654642135318961e-21,-2.414043899674756e-20,3.759681203518994e-05,31.0,12.0,0.05546150729060173,-0.0040745544247329235,-0.009604306891560555,7.636852387804538e-05,0.00023263027833309025,0.0004431052948348224,-0.0040745544247329235,0.0005929114413447678,0.00023263027833309025,-1.580038406245876e-05,-1.5508685464737937e-05,-2.0328790734103208e-20,-0.009604306891560555,0.00023263027833309025,0.003784521948546171,-1.3756671130720345e-20,-4.229641490383074e-05,-0.00026586317108012736,7.636852387804538e-05,-1.580038406245876e-05,-1.3756671130720345e-20,5.266794573799416e-07,-3.3309589876262254e-22,1.6079777184919979e-21,0.00023263027833309025,-1.5508685464737937e-05,-4.229641490383074e-05,-3.3309589876262254e-22,2.819760993588716e-06,-6.776263578034403e-21,0.0004431052948348224,-2.0328790734103208e-20,-0.00026586317108012736,1.6079777184919979e-21,-6.776263578034403e-21,2.4169379685190506e-05,31.0,13.0,0.051807064563035965,-0.00377646554261446,-0.008308224380016327,7.04940248397179e-05,0.0001993973710341379,0.00035448421840555966,-0.00377646554261446,0.0005483254208229482,0.0001993973710341379,-1.4584969903808087e-05,-1.3293158190208487e-05,1.8634724839594607e-19,-0.008308224380016327,0.0001993973710341379,0.0029959960374981165,4.733743973078718e-20,-3.323289638501592e-05,-0.00019335503748152405,7.04940248397179e-05,-1.4584969903808087e-05,4.733743973078718e-20,4.861656748289533e-07,-5.446952021919009e-22,-3.1380130512964796e-21,0.0001993973710341379,-1.3293158190208487e-05,-3.323289638501592e-05,-5.446952021919009e-22,2.215526365034748e-06,-1.1858461261560205e-20,0.00035448421840555966,1.8634724839594607e-19,-0.00019335503748152405,-3.1380130512964796e-21,-1.1858461261560205e-20,1.6112919183797203e-05,31.0,14.0,0.04860442131757736,-0.0035190614871680737,-0.007258064579218626,6.545873475261033e-05,0.00017281106556765735,0.00028801843291148543,-0.0035190614871680737,0.0005099822301417589,0.00017281106556765735,-1.3543186469178181e-05,-1.152073764387751e-05,3.3881317890172014e-20,-0.007258064579218626,0.00017281106556765735,0.002412708243355155,1.4518607872458252e-20,-2.6586316380416974e-05,-0.00014400921645574272,6.545873475261033e-05,-1.3543186469178181e-05,1.4518607872458252e-20,4.514395470778254e-07,-1.3304212372844369e-22,-1.0383486551917526e-21,0.00017281106556765735,-1.152073764387751e-05,-2.6586316380416974e-05,-1.3304212372844369e-22,1.7724211147651658e-06,8.470329472543003e-22,0.00028801843291148543,3.3881317890172014e-20,-0.00014400921645574272,-1.0383486551917526e-21,8.470329472543003e-22,1.107763182517374e-05,31.0,15.0,0.0457746647298336,-0.0032945380080491304,-0.00639527989551425,6.10948191024363e-05,0.00015120967873372138,0.00023719164892099798,-0.0032945380080491304,0.0004766554629895836,0.00015120967873372138,-1.264030743186595e-05,-1.0080645552079659e-05,-5.759824041329242e-20,-0.00639527989551425,0.00015120967873372138,0.0019718511030077934,-3.2965092173250576e-21,-2.160138319595717e-05,-0.0001094730687327683,6.10948191024363e-05,-1.264030743186595e-05,-3.2965092173250576e-21,4.2134357158829516e-07,1.6437286422811245e-22,2.0819771627330367e-23,0.00015120967873372138,-1.0080645552079659e-05,-2.160138319595717e-05,1.6437286422811245e-22,1.4400922054846887e-06,7.517417406881916e-21,0.00023719164892099798,-5.759824041329242e-20,-0.0001094730687327683,2.0819771627330367e-23,7.517417406881916e-21,7.819505299266893e-06,31.0,16.0,0.043256256729364395,-0.0030969681683927774,-0.005677775014191866,5.7276392908534035e-05,0.00013342029706109315,0.0001976597122848034,-0.0030969681683927774,0.0004474204033613205,0.00013342029706109315,-1.1850288501591422e-05,-8.894687198335305e-06,-3.7269449679189215e-20,-0.005677775014191866,0.00013342029706109315,0.0016323868185281754,-1.2788375444370331e-20,-1.778937439667061e-05,-8.471130422549322e-05,5.7276392908534035e-05,-1.1850288501591422e-05,-1.2788375444370331e-20,3.950096072458109e-07,3.7236642961003216e-22,5.017561273473026e-22,0.00013342029706109315,-8.894687198335305e-06,-1.778937439667061e-05,3.7236642961003216e-22,1.1859582400575164e-06,2.752857078576476e-21,0.0001976597122848034,-3.7269449679189215e-20,-8.471130422549322e-05,5.017561273473026e-22,2.752857078576476e-21,5.647420039167628e-06,31.0,17.0,0.04100048542022705,-0.0029217698611319065,-0.005074652843177319,5.3907191613689065e-05,0.00011859582446049899,0.00016645027790218592,-0.0029217698611319065,0.00042156665585935116,0.00011859582446049899,-1.1153212653880473e-05,-7.90638841863256e-06,1.8634724839594607e-20,-0.005074652843177319,0.00011859582446049899,0.0013667128514498472,-3.396523552487423e-21,-1.4824478057562374e-05,-6.658011261606589e-05,5.3907191613689065e-05,-1.1153212653880473e-05,-3.396523552487423e-21,3.7177375133978785e-07,1.9929150820779465e-22,-2.3490390802196443e-23,0.00011859582446049899,-7.90638841863256e-06,-1.4824478057562374e-05,1.9929150820779465e-22,9.8829855232907e-07,-2.2234614865425384e-21,0.00016645027790218592,1.8634724839594607e-20,-6.658011261606589e-05,-2.3490390802196443e-23,-2.2234614865425384e-21,4.161257038504118e-06,31.0,18.0,0.03896831348538399,-0.0027653444558382034,-0.004562818445265293,5.0912349252030253e-05,0.00010611205652821809,0.00014148274203762412,-0.0027653444558382034,0.0003985392686445266,0.00010611205652821809,-1.0533589374972507e-05,-7.074137101881206e-06,-1.6940658945086007e-20,-0.004562818445265293,0.00010611205652821809,0.0011557891266420484,-1.8021632140502228e-20,-1.2483770660765003e-05,-5.3056028264109045e-05,5.0912349252030253e-05,-1.0533589374972507e-05,-1.8021632140502228e-20,3.511196382532944e-07,6.05154069947891e-23,9.566422544048542e-22,0.00010611205652821809,-7.074137101881206e-06,-1.2483770660765003e-05,6.05154069947891e-23,8.322514304381912e-07,-1.3234889800848443e-21,0.00014148274203762412,-1.6940658945086007e-20,-5.3056028264109045e-05,9.566422544048542e-22,-1.3234889800848443e-21,3.120942665191251e-06,31.0,19.0,0.037128057330846786,-0.0026248262729495764,-0.004124727100133896,4.823275230592117e-05,9.550085087539628e-05,0.0001212709175888449,-0.0026248262729495764,0.00037789862835779786,9.550085087539628e-05,-9.979190508602187e-06,-6.366723482642556e-06,-0.0,-0.004124727100133896,9.550085087539628e-05,0.0009861881844699383,8.470329472543003e-22,-1.0611205652821809e-05,-4.280150096747093e-05,4.823275230592117e-05,-9.979190508602187e-06,8.470329472543003e-22,3.3263967225138913e-07,-5.293955920339377e-23,-0.0,9.550085087539628e-05,-6.366723482642556e-06,-1.0611205652821809e-05,-5.293955920339377e-23,7.074136760820693e-07,-0.0,0.0001212709175888449,-0.0,-4.280150096747093e-05,-0.0,-0.0,2.377861164859496e-06,31.0,20.0,0.035453759133815765,-0.0024979053996503353,-0.0037468578666448593,4.582111432682723e-05,8.640553278382868e-05,0.00010473397560417652,-0.0024979053996503353,0.00035929170553572476,8.640553278382868e-05,-9.480230801273137e-06,-5.760368821938755e-06,-0.0,-0.0037468578666448593,8.640553278382868e-05,0.0008482533157803118,-4.235164736271502e-22,-9.095319001062308e-06,-3.4911325201392174e-05,4.582111432682723e-05,-9.480230801273137e-06,-4.235164736271502e-22,3.1600768579664873e-07,2.6469779601696886e-23,-0.0,8.640553278382868e-05,-5.760368821938755e-06,-9.095319001062308e-06,2.6469779601696886e-23,6.063546038603818e-07,-0.0,0.00010473397560417652,-0.0,-3.4911325201392174e-05,-0.0,-0.0,1.8374381625108072e-06,31.0,21.0,0.03392394259572029,-0.0023826980032026768,-0.003418653504922986,4.363915650174022e-05,7.855048170313239e-05,9.107302321353927e-05,-0.0023826980032026768,0.0003424319438636303,7.855048170313239e-05,-9.028791282617021e-06,-5.236698598309886e-06,-0.0,-0.003418653504922986,7.855048170313239e-05,0.0007349173538386822,-4.235164736271502e-22,-7.85504835221218e-06,-2.8759901397279464e-05,4.363915650174022e-05,-9.028791282617021e-06,-4.235164736271502e-22,3.009596980518836e-07,0.0,-0.0,7.855048170313239e-05,-5.236698598309886e-06,-7.85504835221218e-06,0.0,5.236698825683561e-07,-0.0,9.107302321353927e-05,-0.0,-2.8759901397279464e-05,-0.0,-0.0,1.4379951380760758e-06,31.0,22.0,0.03252067416906357,-0.002277653431519866,-0.003131773555651307,4.165555947110988e-05,7.172000186983496e-05,7.968889258336276e-05,-0.002277653431519866,0.00032708418439142406,7.172000186983496e-05,-8.618391802883707e-06,-4.781333700520918e-06,5.57376389892286e-21,-0.003131773555651307,7.172000186983496e-05,0.0006409264169633389,4.235164736271502e-22,-6.830476650065975e-06,-2.390666850260459e-05,4.165555947110988e-05,-8.618391802883707e-06,4.235164736271502e-22,2.872797040254227e-07,-2.6469779601696886e-23,-0.0,7.172000186983496e-05,-4.781333700520918e-06,-6.830476650065975e-06,-2.6469779601696886e-23,4.553651251626434e-07,-5.308346762734526e-22,7.968889258336276e-05,5.57376389892286e-21,-2.390666850260459e-05,-0.0,-5.308346762734526e-22,1.1384128129066085e-06,31.0,23.0,0.03122888319194317,-0.002181483432650566,-0.0028795581310987473,3.984444629168138e-05,6.574334111064672e-05,7.012622518232092e-05,-0.002181483432650566,0.00031305369338952005,6.574334111064672e-05,-8.243679076258559e-06,-4.382889073895058e-06,-0.0,-0.0028795581310987473,6.574334111064672e-05,0.0005623190081678331,0.0,-5.976667125651147e-06,-2.0036064597661607e-05,3.984444629168138e-05,-8.243679076258559e-06,0.0,2.7478930064717133e-07,0.0,-0.0,6.574334111064672e-05,-4.382889073895058e-06,-5.976667125651147e-06,0.0,3.9844448451731296e-07,-0.0,7.012622518232092e-05,-0.0,-2.0036064597661607e-05,-0.0,-0.0,9.107302503252868e-07,31.0,24.0,0.03003578819334507,-0.0020931086037307978,-0.002656637690961361,3.818426193902269e-05,6.048387149348855e-05,6.203474185895175e-05,-0.0020931086037307978,0.0003001778095494956,6.048387149348855e-05,-7.90019203122938e-06,-4.032257947983453e-06,4.5149013866830235e-20,-0.002656637690961361,6.048387149348855e-05,0.0004960694932378829,3.1490807925159245e-20,-5.259466888674069e-06,-1.6918565961532295e-05,3.818426193902269e-05,-7.90019203122938e-06,3.1490807925159245e-20,2.633397286899708e-07,-3.5734202462290796e-22,-1.1482004013865863e-21,6.048387149348855e-05,-4.032257947983453e-06,-5.259466888674069e-06,-3.5734202462290796e-22,3.506311259116046e-07,-1.0504740405284003e-21,6.203474185895175e-05,4.5149013866830235e-20,-1.6918565961532295e-05,-1.1482004013865863e-21,-1.0504740405284003e-21,7.355898219429946e-07,31.0,25.0,0.02893049642443657,-0.002011617412790656,-0.002458643401041627,3.6656892916653305e-05,5.5831264035077766e-05,5.514199074241333e-05,-0.002011617412790656,0.00028831957024522126,5.5831264035077766e-05,-7.5841844591195695e-06,-3.7220843296381645e-06,-5.293955920339377e-21,-0.002458643401041627,5.5831264035077766e-05,0.000439839786849916,-0.0,-4.652605639421381e-06,-1.4384867426997516e-05,3.6656892916653305e-05,-7.5841844591195695e-06,-0.0,2.5280616000600276e-07,-1.3234889800848443e-23,6.617444900424222e-24,5.5831264035077766e-05,-3.7220843296381645e-06,-4.652605639421381e-06,-1.3234889800848443e-23,3.1017370361041685e-07,4.499862532288471e-22,5.514199074241333e-05,-5.293955920339377e-21,-1.4384867426997516e-05,6.617444900424222e-24,4.499862532288471e-22,5.993694571770902e-07,31.0,26.0,0.027903659269213676,-0.0019362358143553138,-0.002281992230564356,3.524701241985895e-05,5.169561700313352e-05,4.9233920435654e-05,-0.0019362358143553138,0.00027736290940083563,5.169561700313352e-05,-7.2924849519040436e-06,-3.446374421400833e-06,-8.470329472543003e-22,-0.002281992230564356,5.169561700313352e-05,0.00039180353633128107,-3.3983539622230256e-22,-4.1356493056809995e-06,-1.23084801089135e-05,3.524701241985895e-05,-7.2924849519040436e-06,-3.3983539622230256e-22,2.4308283741447667e-07,1.6821993375903996e-23,-2.558985101585535e-24,5.169561700313352e-05,-3.446374421400833e-06,-4.1356493056809995e-06,1.6821993375903996e-23,2.757099650807504e-07,6.617444900424221e-23,4.9233920435654e-05,-8.470329472543003e-22,-1.23084801089135e-05,-2.558985101585535e-24,6.617444900424221e-23,4.923392111777503e-07,31.0,27.0,0.02694721333682537,-0.0018663012888282537,-0.002123722108080983,3.394156738067977e-05,4.800307215191424e-05,4.4140757381683215e-05,-0.0018663012888282537,0.00026720872847363353,4.800307215191424e-05,-7.022393219813239e-06,-3.200204901077086e-06,1.4823076576950256e-20,-0.002123722108080983,4.800307215191424e-05,0.0003505200438667089,2.0673881761489808e-20,-3.6925439417245798e-06,-1.0593781553325243e-05,3.394156738067977e-05,-7.022393219813239e-06,2.0673881761489808e-20,2.3407976357248117e-07,-4.0307692348980547e-22,-4.5939144421590095e-22,4.800307215191424e-05,-3.200204901077086e-06,-3.6925439417245798e-06,-4.0307692348980547e-22,2.4616960558887513e-07,1.3234889800848443e-23,4.4140757381683215e-05,1.4823076576950256e-20,-1.0593781553325243e-05,-4.5939144421590095e-22,1.3234889800848443e-23,4.0745314322521153e-07,31.0,28.0,0.026054156944155693,-0.0018012437503784895,-0.001981368288397789,3.272936737630516e-05,4.469251507543959e-05,3.972668127971701e-05,-0.0018012437503784895,0.00025777198607102036,4.469251507543959e-05,-6.7715932345890906e-06,-2.979501005029306e-06,4.235164736271502e-22,-0.001981368288397789,4.469251507543959e-05,0.00031484244391322136,-0.0,-3.310556621727301e-06,-9.167695679934695e-06,3.272936737630516e-05,-6.7715932345890906e-06,-0.0,2.257197735389127e-07,1.3234889800848443e-23,-6.617444900424222e-24,4.469251507543959e-05,-2.979501005029306e-06,-3.310556621727301e-06,1.3234889800848443e-23,2.2070378236094257e-07,-2.6469779601696886e-23,3.972668127971701e-05,4.235164736271502e-22,-9.167695679934695e-06,-6.617444900424222e-24,-2.6469779601696886e-23,3.395442718101549e-07,31.0,29.0,0.02521839179098606,-0.0017405702965334058,-0.001852865214459598,3.160076812491752e-05,4.171301407041028e-05,3.588216350181028e-05,-0.0017405702965334058,0.0002489791950210929,4.171301407041028e-05,-6.53809001960326e-06,-2.7808675895357737e-06,8.470329472543003e-22,-0.001852865214459598,4.171301407041028e-05,0.00028384997858665884,-0.0,-2.979501005029306e-06,-7.973813808348496e-06,3.160076812491752e-05,-6.53809001960326e-06,-0.0,2.179363320919947e-07,0.0,0.0,4.171301407041028e-05,-2.7808675895357737e-06,-2.979501005029306e-06,0.0,1.9863340128267737e-07,-5.293955920339377e-23,3.588216350181028e-05,8.470329472543003e-22,-7.973813808348496e-06,0.0,-5.293955920339377e-23,2.8477907676460745e-07,31.0,30.0,0.02443457767367363,-0.0016838520532473922,-0.0017364724772050977,3.054740955121815e-05,3.902185198967345e-05,3.2518211810383946e-05,-0.0016838520532473922,0.0002407665888313204,3.902185198967345e-05,-6.320153715932975e-06,-2.6014567993115634e-06,0.0,-0.0017364724772050977,3.902185198967345e-05,0.0002567977353464812,-2.2273653004161003e-22,-2.6911623081105063e-06,-6.968187790334923e-06,3.054740955121815e-05,-6.320153715932975e-06,-2.2273653004161003e-22,2.1067178579414758e-07,2.218654572082905e-23,-5.735053293621359e-25,3.902185198967345e-05,-2.6014567993115634e-06,-2.6911623081105063e-06,2.218654572082905e-23,1.794108186459198e-07,-1.3234889800848443e-23,3.2518211810383946e-05,0.0,-6.968187790334923e-06,-5.735053293621359e-25,-1.3234889800848443e-23,2.4028233269746124e-07,31.0,31.0,0.02369801513850689,-0.0016307142795994878,-0.0016307142795994878,2.9562008421635255e-05,3.658298737718724e-05,2.9562008421635255e-05,-0.0016307142795994878,0.000233078608289361,3.658298737718724e-05,-6.116277745604748e-06,-2.4388657493545907e-06,-1.3976043629695956e-20,-0.0016307142795994878,3.658298737718724e-05,0.000233078608289361,-1.694186417308789e-20,-2.4388657493545907e-06,-6.116277745604748e-06,2.9562008421635255e-05,-6.116277745604748e-06,-1.694186417308789e-20,2.0387592769566254e-07,3.6256312261221857e-22,3.6185791882827443e-22,3.658298737718724e-05,-2.4388657493545907e-06,-2.4388657493545907e-06,3.6256312261221857e-22,1.625910499569727e-07,1.7205356741102976e-22,2.9562008421635255e-05,-1.3976043629695956e-20,-6.116277745604748e-06,3.6185791882827443e-22,1.7205356741102976e-22,2.0387592769566254e-07,31.0,32.0,0.02300455793738365,-0.001580828451551497,-0.0015343334525823593,2.8638196454267018e-05,3.436583574512042e-05,2.6953595806844532e-05,-0.001580828451551497,0.00022586648992728442,3.436583574512042e-05,-5.925144250795711e-06,-2.2910558072908316e-06,1.4823076576950256e-21,-0.0015343334525823593,3.436583574512042e-05,0.0002121943689417094,3.6809855327326717e-22,-2.2171507225721143e-06,-5.390719252318377e-06,2.8638196454267018e-05,-5.925144250795711e-06,3.6809855327326717e-22,1.9750480362290546e-07,-1.708103320907323e-23,-6.042684789184718e-24,3.436583574512042e-05,-2.2910558072908316e-06,-2.2171507225721143e-06,-1.708103320907323e-23,1.478100415397421e-07,-8.602678370551488e-23,2.6953595806844532e-05,1.4823076576950256e-21,-5.390719252318377e-06,-6.042684789184718e-24,-8.602678370551488e-23,1.738941790563331e-07,31.0,33.0,0.022350529208779335,-0.0015339046949520707,-0.0014462530380114913,2.777037298073992e-05,3.234431642340496e-05,2.4643288270453922e-05,-0.0015339046949520707,0.00021908739290665835,3.234431642340496e-05,-5.745594080508454e-06,-2.156287791876821e-06,-3.1763735522036263e-22,-0.0014462530380114913,3.234431642340496e-05,0.00019373363466002047,-0.0,-2.02151977646281e-06,-4.769668521475978e-06,2.777037298073992e-05,-5.745594080508454e-06,-0.0,1.9151980268361513e-07,6.617444900424222e-24,0.0,3.234431642340496e-05,-2.156287791876821e-06,-2.02151977646281e-06,6.617444900424222e-24,1.347679869923013e-07,1.9852334701272664e-23,2.4643288270453922e-05,-3.1763735522036263e-22,-4.769668521475978e-06,0.0,1.9852334701272664e-23,1.4905214129612432e-07,31.0,34.0,0.02173266001045704,-0.0014896867796778679,-0.0013655462535098195,2.6953595806844532e-05,3.049606857530307e-05,2.258968015667051e-05,-0.0014896867796778679,0.00021270343859214336,3.049606857530307e-05,-5.576606326940237e-06,-2.033071268670028e-06,1.0587911840678754e-22,-0.0013655462535098195,3.049606857530307e-05,0.00017735466826707125,-1.5383065330848368e-22,-1.8482465975466766e-06,-4.235565029375721e-06,2.6953595806844532e-05,-5.576606326940237e-06,-1.5383065330848368e-22,1.8588687566989393e-07,8.2205435773263e-24,3.650447429415377e-25,3.049606857530307e-05,-2.033071268670028e-06,-1.8482465975466766e-06,8.2205435773263e-24,1.2321643794166448e-07,0.0,2.258968015667051e-05,1.0587911840678754e-22,-4.235565029375721e-06,3.650447429415377e-25,0.0,1.2835046447889908e-07,31.0,35.0,0.02114802971482277,-0.0014479472301900387,-0.0012914123944938183,2.618349390104413e-05,2.8801843654946424e-05,2.075808515655808e-05,-0.0014479472301900387,0.00020668107026722282,2.8801843654946424e-05,-5.417274678620743e-06,-1.9201229406462517e-06,7.411538288475128e-22,-0.0012914123944938183,2.8801843654946424e-05,0.0001627719757379964,-1.4118218377191481e-22,-1.6942260572250234e-06,-3.774197239181376e-06,2.618349390104413e-05,-5.417274678620743e-06,-1.4118218377191481e-22,1.8057582451547205e-07,1.4695068575399367e-24,3.2735942768873927e-24,2.8801843654946424e-05,-1.9201229406462517e-06,-1.6942260572250234e-06,1.4695068575399367e-24,1.1294840618347735e-07,-4.632211430296955e-23,2.075808515655808e-05,7.411538288475128e-22,-3.774197239181376e-06,3.2735942768873927e-24,-4.632211430296955e-23,1.110058036601913e-07,31.0,36.0,0.020594030618667603,-0.0014084832509979606,-0.0012231564614921808,2.5456174626015127e-05,2.7244986995356157e-05,1.9119288481306285e-05,-0.0014084832509979606,0.00020099038374610245,2.7244986995356157e-05,-5.266794687486254e-06,-1.8163324284614646e-06,6.352747104407253e-22,-0.0012231564614921808,2.7244986995356157e-05,0.00014974579971749336,-1.2988377709942843e-22,-1.5568564322165912e-06,-3.3739922855602344e-06,2.5456174626015127e-05,-5.266794687486254e-06,-1.2988377709942843e-22,1.755598191266472e-07,7.967802798485255e-24,-3.8225071140482965e-25,2.7244986995356157e-05,-1.8163324284614646e-06,-1.5568564322165912e-06,7.967802798485255e-24,1.0379042691965878e-07,-3.3087224502121107e-23,1.9119288481306285e-05,6.352747104407253e-22,-3.3739922855602344e-06,-3.8225071140482965e-25,-3.3087224502121107e-23,9.639977349706896e-08,31.0,37.0,0.02006831392645836,-0.0013711136998608708,-0.001160173211246729,2.476816916896496e-05,2.5811039449763484e-05,1.764857370289974e-05,-0.0013711136998608708,0.00019560470536816865,2.5811039449763484e-05,-5.124448762217071e-06,-1.7207360087923007e-06,0.0,-0.001160173211246729,2.5811039449763484e-05,0.00013807383948005736,1.197599653821544e-22,-1.4339466360979713e-06,-3.0254698231146904e-06,2.476816916896496e-05,-5.124448762217071e-06,1.197599653821544e-22,1.7081497105664312e-07,-7.861195346892783e-24,6.8454558759627185e-25,2.5811039449763484e-05,-1.7207360087923007e-06,-1.4339466360979713e-06,-7.861195346892783e-24,9.559644809087331e-08,0.0,1.764857370289974e-05,0.0,-3.0254698231146904e-06,6.8454558759627185e-25,0.0,8.404082763036058e-08,31.0,38.0,0.01956876926124096,-0.001335676177404821,-0.0011019328376278281,2.4116376152960584e-05,2.4487397240591235e-05,1.632493149372749e-05,-0.001335676177404821,0.00019050018454436213,2.4487397240591235e-05,-4.9895952543010935e-06,-1.6324931948474841e-06,-1.0587911840678754e-22,-0.0011019328376278281,2.4487397240591235e-05,0.00012758448428940028,1.106619000336084e-22,-1.3236431186669506e-06,-2.7208218398300232e-06,2.4116376152960584e-05,-4.9895952543010935e-06,1.106619000336084e-22,1.6631983612569456e-07,-1.4382966407870895e-23,9.487855918527228e-25,2.4487397240591235e-05,-1.6324931948474841e-06,-1.3236431186669506e-06,-1.4382966407870895e-23,8.824287078823545e-08,3.308722450212111e-24,1.632493149372749e-05,-1.0587911840678754e-22,-2.7208218398300232e-06,9.487855918527228e-25,3.308722450212111e-24,7.353573039381445e-08,31.0,39.0,0.01909348927438259,-0.001302024582400918,-0.0010479709599167109,2.3498007067246363e-05,2.3263028197106905e-05,1.513042388978647e-05,-0.001302024582400918,0.00018565532809589058,2.3263028197106905e-05,-4.861656634602696e-06,-1.550868432786956e-06,5.293955920339377e-22,-0.0010479709599167109,2.3263028197106905e-05,0.00011813164746854454,3.0738862580102504e-22,-1.2243698392921942e-06,-2.4535822831239784e-06,2.3498007067246363e-05,-4.861656634602696e-06,3.0738862580102504e-22,1.6205522967993602e-07,-1.6420803963057557e-23,-3.0757077299517967e-24,2.3263028197106905e-05,-1.550868432786956e-06,-1.2243698392921942e-06,-1.6420803963057557e-23,8.162465547911779e-08,-2.3161057151484775e-23,1.513042388978647e-05,5.293955920339377e-22,-2.4535822831239784e-06,-3.0757077299517967e-24,-2.3161057151484775e-23,6.456795631493151e-08,31.0,40.0,0.018640747293829918,-0.001270027132704854,-0.0009978784946724772,2.2910557163413614e-05,2.2128246200736612e-05,1.4049679521122016e-05,-0.001270027132704854,0.00018105082563124597,2.2128246200736612e-05,-4.740115400636569e-06,-1.4752163224329706e-06,7.411538288475128e-22,-0.0009978784946724772,2.2128246200736612e-05,0.0001095903426175937,-0.0,-1.1347817689966178e-06,-2.2183705823408673e-06,2.2910557163413614e-05,-4.740115400636569e-06,-0.0,1.5800384289832436e-07,0.0,0.0,2.2128246200736612e-05,-1.4752163224329706e-06,-1.1347817689966178e-06,0.0,7.565212456484005e-08,-3.639594695233322e-23,1.4049679521122016e-05,7.411538288475128e-22,-2.2183705823408673e-06,0.0,-3.639594695233322e-23,5.688129434133771e-08,31.0,41.0,0.018208978697657585,-0.0012395649682730436,-0.0009512940305285156,2.2351763618644327e-05,2.1074520191177726e-05,1.3069469787296839e-05,-0.0012395649682730436,0.00017666921485215425,2.1074520191177726e-05,-4.6245027078839485e-06,-1.4049679748495691e-06,5.823351512373315e-22,-0.0009512940305285156,2.1074520191177726e-05,0.00010185326391365379,-0.0,-1.0537260095588863e-06,-2.0106876945646945e-06,2.2351763618644327e-05,-4.6245027078839485e-06,-0.0,1.5415008647323702e-07,0.0,0.0,2.1074520191177726e-05,-1.4049679748495691e-06,-1.0537260095588863e-06,0.0,7.024839732139299e-08,-2.9778502051908996e-23,1.3069469787296839e-05,5.823351512373315e-22,-2.0106876945646945e-06,0.0,-2.9778502051908996e-23,5.026718952194642e-08,31.0,42.0,0.01779675856232643,-0.0012105299392715096,-0.0009078974253498018,2.181957825087011e-05,2.0094308638363145e-05,1.2178369615867268e-05,-0.0012105299392715096,0.00017249470693059266,2.0094308638363145e-05,-4.514395641308511e-06,-1.3396206668403465e-06,1.0587911840678754e-22,-0.0009078974253498018,2.0094308638363145e-05,9.482791210757568e-05,-0.0,-9.802101885725278e-07,-1.82675535143062e-06,2.181957825087011e-05,-4.514395641308511e-06,-0.0,1.504798490259418e-07,0.0,0.0,2.0094308638363145e-05,-1.3396206668403465e-06,-9.802101885725278e-07,0.0,6.534735064178676e-08,-6.617444900424222e-24,1.2178369615867268e-05,1.0587911840678754e-22,-1.82675535143062e-06,0.0,-6.617444900424222e-24,4.455500857147854e-08,31.0,43.0,0.017402788624167442,-0.0011828241404145956,-0.0008674043347127736,2.1312145690899342e-05,1.918093221320305e-05,1.1366478247509804e-05,-0.0011828241404145956,0.00016851293912623078,1.918093221320305e-05,-4.409409484651405e-06,-1.278728746001434e-06,-9.529120656610879e-22,-0.0008674043347127736,1.918093221320305e-05,8.84342662175186e-05,-0.0,-9.1337767571531e-07,-1.6633870245641447e-06,2.1312145690899342e-05,-4.409409484651405e-06,-0.0,1.469803123654856e-07,0.0,0.0,1.918093221320305e-05,-1.278728746001434e-06,-9.1337767571531e-07,0.0,6.089184978463891e-08,4.632211430296955e-23,1.1366478247509804e-05,-9.529120656610879e-22,-1.6633870245641447e-06,0.0,4.632211430296955e-23,3.960445127404455e-08,31.0,44.0,0.017025882378220558,-0.0011563582811504602,-0.0008295613806694746,2.082777973555494e-05,1.8328446458326653e-05,1.062518549588276e-05,-0.0011563582811504602,0.000164710872923024,1.8328446458326653e-05,-4.3091959014418535e-06,-1.221896354763885e-06,2.6469779601696886e-22,-0.0008295613806694746,1.8328446458326653e-05,8.260287722805515e-05,-0.0,-8.524858685632353e-07,-1.5178836747509195e-06,2.082777973555494e-05,-4.3091959014418535e-06,-0.0,1.4363985201271134e-07,0.0,0.0,1.8328446458326653e-05,-1.221896354763885e-06,-8.524858685632353e-07,0.0,5.683239123754902e-08,-9.926167350636332e-24,1.062518549588276e-05,2.6469779601696886e-22,-1.5178836747509195e-06,0.0,-9.926167350636332e-24,3.5299621004014625e-08,31.0,45.0,0.016664955765008926,-0.0011310509871691465,-0.0007941421936266124,2.03649397008121e-05,1.753155629558023e-05,9.946982572728302e-06,-0.0011310509871691465,0.0001610765903024003,1.753155629558023e-05,-4.213435659039533e-06,-1.1687704954965739e-06,-5.293955920339377e-23,-0.0007941421936266124,1.753155629558023e-05,7.727325282758102e-05,-0.0,-7.968889690346259e-07,-1.3879511016057222e-06,2.03649397008121e-05,-4.213435659039533e-06,-0.0,1.4044786667000153e-07,0.0,0.0,1.753155629558023e-05,-1.1687704954965739e-06,-7.968889690346259e-07,0.0,5.312593032158475e-08,3.308722450212111e-24,9.946982572728302e-06,-5.293955920339377e-23,-1.3879511016057222e-06,0.0,3.308722450212111e-24,3.1544342249389956e-08,31.0,46.0,0.016319014132022858,-0.001106827869080007,-0.0007609441527165473,1.992222314584069e-05,1.6785532352514565e-05,9.325296559836715e-06,-0.001106827869080007,0.00015759926463942975,1.6785532352514565e-05,-4.121839538129279e-06,-1.1190355735379853e-06,7.940933880509066e-22,-0.0007609441527165473,1.6785532352514565e-05,7.2392555011902e-05,-0.0,-7.460237156919902e-07,-1.2716312767224736e-06,1.992222314584069e-05,-4.121839538129279e-06,-0.0,1.3739465032358567e-07,0.0,0.0,1.6785532352514565e-05,-1.1190355735379853e-06,-7.460237156919902e-07,0.0,4.973491130044749e-08,-3.8050308177439273e-23,9.325296559836715e-06,7.940933880509066e-22,-1.2716312767224736e-06,0.0,-3.8050308177439273e-23,2.825847289500416e-08,31.0,47.0,0.01598714292049408,-0.0010836205910891294,-0.0007297853007912636,1.9498345864121802e-05,1.6086136383819394e-05,8.754359441809356e-06,-0.0010836205910891294,0.00015426889876835048,1.6086136383819394e-05,-4.034140602016123e-06,-1.0724090770963812e-06,-5.293955920339377e-22,-0.0007297853007912636,1.6086136383819394e-05,6.791447958676144e-05,-0.0,-6.993972192503861e-07,-1.167248001365806e-06,1.9498345864121802e-05,-4.034140602016123e-06,-0.0,1.3447134961097618e-07,0.0,0.0,1.6086136383819394e-05,-1.0724090770963812e-06,-6.993972192503861e-07,0.0,4.662648223074939e-08,2.3161057151484775e-23,8.754359441809356e-06,-5.293955920339377e-22,-1.167248001365806e-06,0.0,2.3161057151484775e-23,2.537495547016988e-08,31.0,48.0,0.01566849835216999,-0.0010613666381686926,-0.0007005019579082727,1.9092130969511345e-05,1.5429559425683692e-05,8.229098057199735e-06,-0.0010613666381686926,0.00015107639774214476,1.5429559425683692e-05,-3.95009601561469e-06,-1.028637257149967e-06,5.082197683525802e-21,-0.0007005019579082727,1.5429559425683692e-05,6.379834667313844e-05,7.786677620964997e-21,-6.565769581357017e-07,-1.0733606359281112e-06,1.9092130969511345e-05,-3.95009601561469e-06,7.786677620964997e-21,1.316698643449854e-07,-8.204000059738548e-23,-1.4195438393481756e-22,1.5429559425683692e-05,-1.028637257149967e-06,-6.565769581357017e-07,-8.204000059738548e-23,4.377179863013225e-08,-4.4667753077863494e-23,8.229098057199735e-06,5.082197683525802e-21,-1.0733606359281112e-06,-1.4195438393481756e-22,-4.4667753077863494e-23,2.2837459923152892e-08,31.0,49.0,0.015362309291958809,-0.0010400083847343922,-0.00067294662585482,1.870249616331421e-05,1.4812376321060583e-05,7.74503314460162e-06,-0.0010400083847343922,0.0001480133505538106,1.4812376321060583e-05,-3.869482043228345e-06,-9.874917168417596e-07,1.5881867761018131e-22,-0.00067294662585482,1.4812376321060583e-05,6.00083039898891e-05,8.248296808377242e-22,-6.171823656586639e-07,-9.88727720141469e-07,1.870249616331421e-05,-3.869482043228345e-06,8.248296808377242e-22,1.2898273382688785e-07,-5.49886474928107e-23,8.816207631167156e-39,1.4812376321060583e-05,-9.874917168417596e-07,-6.171823656586639e-07,-5.49886474928107e-23,4.114549057021577e-08,-6.617444900424222e-24,7.74503314460162e-06,1.5881867761018131e-22,-9.88727720141469e-07,8.816207631167156e-39,-6.617444900424222e-24,2.0598493577494992e-08,31.0,50.0,0.015067856758832932,-0.001019492861814797,-0.0006469858344644308,1.8328446458326653e-05,1.4231499335437547e-05,7.2982047640834935e-06,-0.001019492861814797,0.00014507205924019217,1.4231499335437547e-05,-3.7920922295597848e-06,-9.487666261520644e-07,-7.940933880509066e-23,-0.0006469858344644308,1.4231499335437547e-05,5.6512679293518886e-05,-0.0,-5.808774972138053e-07,-9.122755955104367e-07,1.8328446458326653e-05,-3.7920922295597848e-06,-0.0,1.2640308000300138e-07,0.0,0.0,1.4231499335437547e-05,-9.487666261520644e-07,-5.808774972138053e-07,0.0,3.872516884939614e-08,4.963083675318166e-24,7.2982047640834935e-06,-7.940933880509066e-23,-9.122755955104367e-07,0.0,4.963083675318166e-24,1.8617868136061588e-08,31.0,51.0,0.014784479513764381,-0.0009997710585594177,-0.0006224989774636924,1.796906508388929e-05,1.3684133591596037e-05,6.885098628117703e-06,-0.0009997710585594177,0.00014224540791474283,1.3684133591596037e-05,-3.7177373997110408e-06,-9.122755955104367e-07,-2.9116757561866574e-22,-0.0006224989774636924,1.3684133591596037e-05,5.328342740540393e-05,-7.620032837329848e-22,-5.473653459375782e-07,-8.430733373643307e-07,1.796906508388929e-05,-3.7177373997110408e-06,-7.620032837329848e-22,1.239245790429777e-07,5.080021891553232e-23,1.6163047323806453e-38,1.3684133591596037e-05,-9.122755955104367e-07,-5.473653459375782e-07,5.080021891553232e-23,3.649102353620037e-08,1.3234889800848443e-23,6.885098628117703e-06,-2.9116757561866574e-22,-8.430733373643307e-07,1.6163047323806453e-38,1.3234889800848443e-23,1.686146688939516e-08,31.0,52.0,0.014511563815176487,-0.0009807979222387075,-0.0005993765080347657,1.7623506209929474e-05,1.3167751603759825e-05,6.502593350887764e-06,-0.0009807979222387075,0.00013952679000794888,1.3167751603759825e-05,-3.6462424759520218e-06,-8.778500841799541e-07,-2.9116757561866574e-22,-0.0005993765080347657,1.3167751603759825e-05,5.029564636060968e-05,-0.0,-5.163823857401439e-07,-7.803112112014787e-07,1.7623506209929474e-05,-3.6462424759520218e-06,-0.0,1.2154141870723834e-07,0.0,0.0,1.3167751603759825e-05,-8.778500841799541e-07,-5.163823857401439e-07,0.0,3.4425493566914156e-08,9.926167350636332e-24,6.502593350887764e-06,-2.9116757561866574e-22,-7.803112112014787e-07,0.0,9.926167350636332e-24,1.5300219757818923e-08,31.0,53.0,0.014248541556298733,-0.0009625316015444696,-0.0005775189492851496,1.7290985852014273e-05,1.2680056897806935e-05,6.147906333353603e-06,-0.0009625316015444696,0.00013691016647499055,1.2680056897806935e-05,-3.577445568225812e-06,-8.453371265204623e-07,5.293955920339377e-23,-0.0005775189492851496,1.2680056897806935e-05,4.752717723022215e-05,-0.0,-4.876944785792148e-07,-7.232831080727919e-07,1.7290985852014273e-05,-3.577445568225812e-06,-0.0,1.1924818466013676e-07,0.0,0.0,1.2680056897806935e-05,-8.453371265204623e-07,-4.876944785792148e-07,0.0,3.251296476491916e-08,-2.481541837659083e-24,6.147906333353603e-06,5.293955920339377e-23,-7.232831080727919e-07,0.0,-2.481541837659083e-24,1.39092906081828e-08,31.0,54.0,0.013994883745908737,-0.0009449332137592137,-0.0005568356136791408,1.6970783690339886e-05,1.2218964002386201e-05,5.818554200232029e-06,-0.0009449332137592137,0.000134389876620844,1.2218964002386201e-05,-3.5111966099066194e-06,-8.1459756984259e-07,-2.7168124713386666e-22,-0.0005568356136791408,1.2218964002386201e-05,4.495825487538241e-05,-1.5881867761018131e-21,-4.6109298068586213e-07,-6.713716516060231e-07,1.6970783690339886e-05,-3.5111966099066194e-06,-1.5881867761018131e-21,1.1703988178624058e-07,9.26442286059391e-23,-4.9224273619848855e-24,1.2218964002386201e-05,-8.1459756984259e-07,-4.6109298068586213e-07,9.26442286059391e-23,3.0739531808876563e-08,1.2713944991702212e-23,5.818554200232029e-06,-2.7168124713386666e-22,-6.713716516060231e-07,-4.9224273619848855e-24,1.2713944991702212e-23,1.2667389803766582e-08,31.0,55.0,0.013750098645687103,-0.0009279668447561562,-0.0005372439627535641,1.666222306084819e-05,1.1782572073570918e-05,5.512314601219259e-06,-0.0009279668447561562,0.0001319607108598575,1.1782572073570918e-05,-3.4473566756787477e-06,-7.855048238525342e-07,2.9858073757221043e-21,-0.0005372439627535641,1.1782572073570918e-05,4.2571216908982024e-05,5.929230630780102e-21,-4.363915593330603e-07,-6.240355787667795e-07,1.666222306084819e-05,-3.4473566756787477e-06,5.929230630780102e-21,1.1491188445234002e-07,-8.437242248040882e-23,-7.472143505706255e-23,1.1782572073570918e-05,-7.855048238525342e-07,-4.363915593330603e-07,-8.437242248040882e-23,2.9092770859051598e-08,-2.474702571382998e-23,5.512314601219259e-06,2.9858073757221043e-21,-6.240355787667795e-07,-7.472143505706255e-23,-2.474702571382998e-23,1.1556214651875507e-08,31.0,56.0,0.01351372990757227,-0.0009115990251302719,-0.0005186683847568929,1.636468368815258e-05,1.1369148523954209e-05,5.2271948334237095e-06,-0.0009115990251302719,0.00012961779430042952,1.1369148523954209e-05,-3.3857966172945453e-06,-7.579432690363319e-07,-2.058574865605848e-21,-0.0005186683847568929,1.1369148523954209e-05,4.035024903714657e-05,-3.1763735522036263e-21,-4.134235780384188e-07,-5.807993943562906e-07,1.636468368815258e-05,-3.3857966172945453e-06,-3.1763735522036263e-21,1.1285988676945635e-07,-8.271806125530277e-24,5.695652097431331e-23,1.1369148523954209e-05,-7.579432690363319e-07,-4.134235780384188e-07,-8.271806125530277e-24,2.7561572579770655e-08,1.02319606030753e-23,5.2271948334237095e-06,-2.058574865605848e-21,-5.807993943562906e-07,5.695652097431331e-23,1.02319606030753e-23,1.0559989327418862e-08,31.0,57.0,0.013285350054502487,-0.0008957986137829721,-0.0005010399036109447,1.607758349564392e-05,1.0977109013765585e-05,4.961405011272291e-06,-0.0008957986137829721,0.00012735664495266974,1.0977109013765585e-05,-3.3263966088270536e-06,-7.318072903217399e-07,-5.9653866630430525e-21,-0.0005010399036109447,1.0977109013765585e-05,3.8281148590613157e-05,-6.670384459627615e-21,-3.9203959545375255e-07,-5.41244219220971e-07,1.607758349564392e-05,-3.3263966088270536e-06,-6.670384459627615e-21,1.1087988838198726e-07,-8.271806125530277e-23,1.4178387638331947e-22,1.0977109013765585e-05,-7.318072903217399e-07,-3.9203959545375255e-07,-8.271806125530277e-23,2.6135973385521538e-08,4.862300699333302e-23,4.961405011272291e-06,-5.9653866630430525e-21,-5.41244219220971e-07,1.4178387638331947e-22,4.862300699333302e-23,9.66507496258373e-09,31.0,58.0,0.013064561411738396,-0.0008805366815067828,-0.0004842951602768153,1.580038406245876e-05,1.060500380845042e-05,4.713334874395514e-06,-0.0008805366815067828,0.0001251730282092467,1.060500380845042e-05,-3.26904500980163e-06,-7.070002538966946e-07,1.1348196038727081e-21,-0.0004842951602768153,1.060500380845042e-05,3.635115353972651e-05,2.0117032497289633e-21,-3.7210540426713123e-07,-5.050001732342935e-07,1.580038406245876e-05,-3.26904500980163e-06,2.0117032497289633e-21,1.0896816604599735e-07,-9.926167350636332e-24,-3.158451705287836e-23,1.060500380845042e-05,-7.070002538966946e-07,-3.7210540426713123e-07,-9.926167350636332e-24,2.480702576690419e-08,-2.3784531001343486e-24,4.713334874395514e-06,1.1348196038727081e-21,-5.050001732342935e-07,-3.158451705287836e-23,-2.3784531001343486e-24,8.859652567139165e-09,31.0,59.0,0.012850990518927574,-0.0008657860453240573,-0.0004683760635089129,1.553258152853232e-05,1.0251503226754721e-05,4.481531505007297e-06,-0.0008657860453240573,0.00012306302960496396,1.0251503226754721e-05,-3.213637455701246e-06,-6.834335977146111e-07,-5.408367762193819e-22,-0.0004683760635089129,1.0251503226754721e-05,3.4548764233477414e-05,1.5881867761018131e-21,-3.535001269483473e-07,-4.7174017936413293e-07,1.553258152853232e-05,-3.213637455701246e-06,1.5881867761018131e-21,1.0712125231293612e-07,-1.5716431638507526e-22,1.862472198234221e-23,1.0251503226754721e-05,-6.834335977146111e-07,-3.535001269483473e-07,-1.5716431638507526e-22,2.3566675722008767e-08,6.318668861560034e-25,4.481531505007297e-06,-5.408367762193819e-22,-4.7174017936413293e-07,1.862472198234221e-23,6.318668861560034e-25,8.133451245839751e-09,31.0,60.0,0.012644289992749691,-0.0008515215595252812,-0.0004532292077783495,1.5273704775609076e-05,9.915388545778114e-06,4.264683411747683e-06,-0.0008515215595252812,0.00012102299660909921,9.915388545778114e-06,-3.1600768579664873e-06,-6.610259219996806e-07,2.9936470122893183e-21,-0.0004532292077783495,9.915388545778114e-06,3.286360879428685e-05,5.399835038746165e-21,-3.361148799285729e-07,-4.4117413722233323e-07,1.5273704775609076e-05,-3.1600768579664873e-06,5.399835038746165e-21,1.0533589289707379e-07,-6.28657265540301e-23,-6.930719867460486e-23,9.915388545778114e-06,-6.610259219996806e-07,-3.361148799285729e-07,-6.28657265540301e-23,2.2407657951362125e-08,-2.4653924349795795e-23,4.264683411747683e-06,2.9936470122893183e-21,-4.4117413722233323e-07,-6.930719867460486e-23,-2.4653924349795795e-23,7.47752793017753e-09,31.0,61.0,0.01244413387030363,-0.0008377194753848016,-0.00043880543671548367,1.502331633673748e-05,9.595537449058611e-06,4.0616032492835075e-06,-0.0008377194753848016,0.00011904950224561617,9.595537449058611e-06,-3.1082722671271767e-06,-6.397024776561011e-07,3.54573837238018e-21,-0.00043880543671548367,9.595537449058611e-06,3.128630487481132e-05,4.870439446712227e-21,-3.1985123882805055e-07,-4.1304437559119833e-07,1.502331633673748e-05,-3.1082722671271767e-06,4.870439446712227e-21,1.0360907509721073e-07,-8.271806125530277e-24,-8.0058609195411e-23,9.595537449058611e-06,-6.397024776561011e-07,-3.1985123882805055e-07,-8.271806125530277e-24,2.1323415921870037e-08,-2.92012041751374e-23,4.0616032492835075e-06,3.54573837238018e-21,-4.1304437559119833e-07,-8.0058609195411e-23,-2.92012041751374e-23,6.884073311397287e-09,31.0,62.0,0.01225021481513977,-0.0008243577321991324,-0.0004250594647601247,1.4781004210817628e-05,9.290916750614997e-06,3.871215540129924e-06,-0.0008243577321991324,0.00011713933781720698,9.290916750614997e-06,-3.058138872802374e-06,-6.193944841470511e-07,-2.7826676904226712e-21,-0.0004250594647601247,9.290916750614997e-06,2.980835961352568e-05,-4.129285617864714e-21,-3.0462024369626306e-07,-3.871215596973343e-07,1.4781004210817628e-05,-3.058138872802374e-06,-4.129285617864714e-21,1.0193796384783127e-07,-4.632211430296955e-23,7.436642871705137e-23,9.290916750614997e-06,-6.193944841470511e-07,-3.0462024369626306e-07,-4.632211430296955e-23,2.0308016601688905e-08,1.411685680326907e-23,3.871215540129924e-06,-2.7826676904226712e-21,-3.871215596973343e-07,7.436642871705137e-23,1.411685680326907e-23,6.3462550770054804e-09,31.0,63.0,0.012062247842550278,-0.0008114155498333275,-0.0004119494406040758,1.4546385500580072e-05,9.00057602848392e-06,3.6925439417245798e-06,-0.0008114155498333275,0.00011528951290529221,9.00057602848392e-06,-3.0095970942056738e-06,-6.000383905302442e-07,1.405327758042526e-21,-0.0004119494406040758,9.00057602848392e-06,2.842206959030591e-05,-5.293955920339377e-22,-2.9034114845671866e-07,-3.6320105323284224e-07,1.4546385500580072e-05,-3.0095970942056738e-06,-5.293955920339377e-22,1.0031990171910365e-07,1.522012327097571e-22,-2.8958093021366386e-23,9.00057602848392e-06,-6.000383905302442e-07,-2.9034114845671866e-07,1.522012327097571e-22,1.9356077629595347e-08,-1.2449200905327325e-23,3.6925439417245798e-06,1.405327758042526e-21,-3.6320105323284224e-07,-2.8958093021366386e-23,-1.2449200905327325e-23,5.858081575382812e-09,31.0,64.0,0.011879961006343365,-0.0007988734869286418,-0.0003994367434643209,1.4319098227133509e-05,8.723634891794063e-06,3.5247010146122193e-06,-0.0007988734869286418,0.00011349719716235995,8.723634891794063e-06,-2.9625721253978554e-06,-5.815757049276726e-07,-3.2916961813047997e-21,-0.0003994367434643209,8.723634891794063e-06,2.7120437152916566e-05,-2.752857078576476e-21,-2.769407956293435e-07,-3.4110010460608464e-07,1.4319098227133509e-05,-2.9625721253978554e-06,-2.752857078576476e-21,9.875240181145273e-08,-1.522012327097571e-22,7.714376815061936e-23,8.723634891794063e-06,-5.815757049276726e-07,-2.769407956293435e-07,-1.522012327097571e-22,1.846271935335153e-08,2.3445036033311666e-23,3.5247010146122193e-06,-3.2916961813047997e-21,-3.4110010460608464e-07,7.714376815061936e-23,2.3445036033311666e-23,5.41428724076809e-09,32.0,3.0,0.14781083166599274,-0.013368983753025532,-0.09090909361839294,0.00027852048515342176,0.0028409091755747795,0.015625,-0.013368983753025532,0.0020323011558502913,0.0028409091755747795,-5.5704098485875875e-05,-0.0001832844573073089,3.903127820947816e-18,-0.09090909361839294,0.0028409091755747795,0.24715909361839294,2.2261697275668253e-19,-0.0028409091755747795,-0.09375,0.00027852048515342176,-5.5704098485875875e-05,2.2261697275668253e-19,1.7969064174394589e-06,-4.551787906668563e-21,-7.95339781212962e-20,0.0028409091755747795,-0.0001832844573073089,-0.0028409091755747795,-4.551787906668563e-21,0.0001832844573073089,-2.168404344971009e-19,0.015625,3.903127820947816e-18,-0.09375,-7.95339781212962e-20,-2.168404344971009e-19,0.046875,32.0,4.0,0.12371323257684708,-0.01045287400484085,-0.05923295393586159,0.00020889037114102393,0.001704545458778739,0.0078125,-0.01045287400484085,0.0015517185674980283,0.001704545458778739,-4.177807568339631e-05,-0.0001099706714740023,7.209944447028604e-18,-0.05923295393586159,0.001704545458778739,0.09417613595724106,5.111056981122011e-19,-0.0011363636003807187,-0.0234375,0.00020889037114102393,-4.177807568339631e-05,5.111056981122011e-19,1.3476798130795942e-06,-8.978312880497895e-21,-1.1346174091039336e-19,0.001704545458778739,-0.0001099706714740023,-0.0011363636003807187,-8.978312880497895e-21,7.331378583330661e-05,-1.8973538018496328e-18,0.0078125,7.209944447028604e-18,-0.0234375,-1.1346174091039336e-19,-1.8973538018496328e-18,0.0078125,32.0,5.0,0.10642188787460327,-0.00858957227319479,-0.04172077775001526,0.00016711230273358524,0.0011363636003807187,0.004464285913854837,-0.00858957227319479,0.001256037619896233,0.0011363636003807187,-3.342246054671705e-05,-7.331378583330661e-05,-1.7618285302889447e-18,-0.04172077775001526,0.0011363636003807187,0.04764610528945923,-1.1295798791734857e-19,-0.0005681818001903594,-0.008928571827709675,0.00016711230273358524,-3.342246054671705e-05,-1.1295798791734857e-19,1.0781438959384104e-06,-1.9729632877937436e-21,3.571289609916902e-20,0.0011363636003807187,-7.331378583330661e-05,-0.0005681818001903594,-1.9729632877937436e-21,3.6656892916653305e-05,2.303929616531697e-19,0.004464285913854837,-1.7618285302889447e-18,-0.008928571827709675,3.571289609916902e-20,2.303929616531697e-19,0.0022321429569274187,32.0,6.0,0.09338593482971191,-0.00729325832799077,-0.030996346846222878,0.00013926024257671088,0.000811688310932368,0.0027901786379516125,-0.00729325832799077,0.0010554258478805423,0.000811688310932368,-2.7852049242937937e-05,-5.236698780208826e-05,-6.2341624917916505e-19,-0.030996346846222878,0.000811688310932368,0.02774452045559883,4.495195504955438e-21,-0.0003246753185521811,-0.004185267724096775,0.00013926024257671088,-2.7852049242937937e-05,4.495195504955438e-21,8.984532087197294e-07,-9.731609260295353e-22,3.527653893900169e-21,0.000811688310932368,-5.236698780208826e-05,-0.0003246753185521811,-9.731609260295353e-22,2.0946794393239543e-05,2.303929616531697e-19,0.0027901786379516125,-6.2341624917916505e-19,-0.004185267724096775,3.527653893900169e-21,2.303929616531697e-19,0.0008370535797439516,32.0,7.0,0.08320004492998123,-0.006338330917060375,-0.023944804444909096,0.00011936592636629939,0.0006087662186473608,0.0018601190531626344,-0.006338330917060375,0.0009102614712901413,0.0006087662186473608,-2.387318636465352e-05,-3.9275240851566195e-05,4.336808689942018e-19,-0.023944804444909096,0.0006087662186473608,0.01765422150492668,8.687595569013445e-20,-0.000202922077733092,-0.0022321429569274187,0.00011936592636629939,-2.387318636465352e-05,8.687595569013445e-20,7.701027584516851e-07,-1.9210407406911353e-21,-8.355664791302108e-21,0.0006087662186473608,-3.9275240851566195e-05,-0.000202922077733092,-1.9210407406911353e-21,1.3091746950522065e-05,-6.098637220230962e-20,0.0018601190531626344,4.336808689942018e-19,-0.0022321429569274187,-8.355664791302108e-21,-6.098637220230962e-20,0.00037202381645329297,32.0,8.0,0.07501949369907379,-0.00560522498562932,-0.01905776560306549,0.00010444518557051197,0.0004734848625957966,0.0013020833721384406,-0.00560522498562932,0.0008002971881069243,0.0004734848625957966,-2.0889037841698155e-05,-3.054740955121815e-05,2.303929616531697e-19,-0.01905776560306549,0.0004734848625957966,0.011955492198467255,6.236007363051585e-20,-0.00013528138515539467,-0.0013020833721384406,0.00010444518557051197,-2.0889037841698155e-05,6.236007363051585e-20,6.738399065397971e-07,-1.6185811197743228e-21,-4.810492682212357e-21,0.0004734848625957966,-3.054740955121815e-05,-0.00013528138515539467,-1.6185811197743228e-21,8.727831300348043e-06,-1.6940658945086007e-20,0.0013020833721384406,2.303929616531697e-19,-0.0013020833721384406,-4.810492682212357e-21,-1.6940658945086007e-20,0.00018601190822664648,32.0,9.0,0.06830436736345291,-0.005024509970098734,-0.015530303120613098,9.284016414312646e-05,0.0003787878667935729,0.0009469697251915932,-0.005024509970098734,0.0007140905945561826,0.0003787878667935729,-1.856803282862529e-05,-2.4437928004772402e-05,1.7618285302889447e-19,-0.015530303120613098,0.0003787878667935729,0.00848214328289032,-4.854528336824085e-21,-9.469696669839323e-05,-0.000811688310932368,9.284016414312646e-05,-1.856803282862529e-05,-4.854528336824085e-21,5.989688247609593e-07,4.597656040986909e-22,-1.8753796034743195e-22,0.0003787878667935729,-2.4437928004772402e-05,-9.469696669839323e-05,4.597656040986909e-22,6.109482001193101e-06,-4.319868030996932e-20,0.0009469697251915932,1.7618285302889447e-19,-0.000811688310932368,-1.8753796034743195e-22,-4.319868030996932e-20,0.000101461038866546,32.0,10.0,0.06269294023513794,-0.004553050734102726,-0.012900309637188911,8.355615136679262e-05,0.0003099173482041806,0.0007102272938936949,-0.004553050734102726,0.0006446810439229012,0.0003099173482041806,-1.6711230273358524e-05,-1.999466803681571e-05,2.574980159653073e-19,-0.012900309637188911,0.0003099173482041806,0.006240315269678831,8.173281159756968e-20,-6.887052586534992e-05,-0.0005326704704202712,8.355615136679262e-05,-1.6711230273358524e-05,8.173281159756968e-20,5.390719479692052e-07,-1.2714712143155321e-21,-5.9208917777885156e-21,0.0003099173482041806,-1.999466803681571e-05,-6.887052586534992e-05,-1.2714712143155321e-21,4.443259513209341e-06,-4.235164736271502e-21,0.0007102272938936949,2.574980159653073e-19,-0.0005326704704202712,-5.9208917777885156e-21,-4.235164736271502e-21,5.918560782447457e-05,32.0,11.0,0.05793362855911255,-0.00416261563077569,-0.010886840522289276,7.596013892907649e-05,0.00025826445198617876,0.0005463286652229726,-0.00416261563077569,0.0005875884089618921,0.00025826445198617876,-1.5192027603916358e-05,-1.666222306084819e-05,9.486769009248164e-20,-0.010886840522289276,0.00025826445198617876,0.004726902116090059,4.2536221730413715e-20,-5.1652892580023035e-05,-0.0003642191004473716,7.596013892907649e-05,-1.5192027603916358e-05,4.2536221730413715e-20,4.900654175798991e-07,-8.157282707189401e-22,-3.028352247306033e-21,0.00025826445198617876,-1.666222306084819e-05,-5.1652892580023035e-05,-8.157282707189401e-22,3.3324447485938435e-06,1.2705494208814505e-21,0.0005463286652229726,9.486769009248164e-20,-0.0003642191004473716,-3.028352247306033e-21,1.2705494208814505e-21,3.6421912227524444e-05,32.0,12.0,0.05384597182273865,-0.0038339418824762106,-0.009311001747846603,6.963012128835544e-05,0.00021853146608918905,0.0004292582452762872,-0.0038339418824762106,0.0005397975910454988,0.00021853146608918905,-1.3926024621468969e-05,-1.4098804058448877e-05,2.642742795433417e-19,-0.009311001747846603,0.00021853146608918905,0.003667497308924794,7.46007375715153e-20,-3.973299317294732e-05,-0.0002575549588073045,6.963012128835544e-05,-1.3926024621468969e-05,7.46007375715153e-20,4.492266043598647e-07,-1.0836818282203881e-21,-4.96566578745491e-21,0.00021853146608918905,-1.4098804058448877e-05,-3.973299317294732e-05,-1.0836818282203881e-21,2.563419002399314e-06,-1.6940658945086007e-20,0.0004292582452762872,2.642742795433417e-19,-0.0002575549588073045,-4.96566578745491e-21,-1.6940658945086007e-20,2.341408617212437e-05,32.0,13.0,0.05029712989926338,-0.003553431946784258,-0.008054445497691631,6.427396147046238e-05,0.00018731268937699497,0.00034340660204179585,-0.003553431946784258,0.0004992043250240386,0.00018731268937699497,-1.2854792657890357e-05,-1.2084689842595253e-05,-1.6263032587282567e-19,-0.008054445497691631,0.00018731268937699497,0.0029033466707915068,-5.469382833685975e-20,-3.121878035017289e-05,-0.00018731268937699497,6.427396147046238e-05,-1.2854792657890357e-05,-5.469382833685975e-20,4.146707226482249e-07,9.119839929014024e-22,3.159722503408162e-21,0.00018731268937699497,-1.2084689842595253e-05,-3.121878035017289e-05,9.119839929014024e-22,2.0141148979746504e-06,9.740878893424454e-21,0.00034340660204179585,-1.6263032587282567e-19,-0.00018731268937699497,3.159722503408162e-21,9.740878893424454e-21,1.5609390175086446e-05,32.0,14.0,0.047187142074108124,-0.0033112107776105404,-0.007036323193460703,5.9682963183149695e-05,0.00016233765927609056,0.00027901786961592734,-0.0033112107776105404,0.000464294949779287,0.00016233765927609056,-1.193659318232676e-05,-1.0473397196619771e-05,1.2536087619363645e-19,-0.007036323193460703,0.00016233765927609056,0.0023380916099995375,1.19931511453257e-20,-2.4975024643936194e-05,-0.00013950893480796367,5.9682963183149695e-05,-1.193659318232676e-05,1.19931511453257e-20,3.8505137922584254e-07,-3.001758117982124e-22,-5.124200121729526e-22,0.00016233765927609056,-1.0473397196619771e-05,-2.4975024643936194e-05,-3.001758117982124e-22,1.6112919638544554e-06,-1.461131834013668e-20,0.00027901786961592734,1.2536087619363645e-19,-0.00013950893480796367,-5.124200121729526e-22,-1.461131834013668e-20,1.073145631380612e-05,32.0,15.0,0.04443933814764023,-0.0030999332666397095,-0.006199866533279419,5.5704098485875875e-05,0.00014204545004758984,0.0002297794126207009,-0.0030999332666397095,0.00043395289685577154,0.00014204545004758984,-1.1140819879074115e-05,-9.164223229163326e-06,-6.098637220230962e-20,-0.006199866533279419,0.00014204545004758984,0.0019108648411929607,-1.0732651484210628e-20,-2.029220740951132e-05,-0.00010605203715385869,5.5704098485875875e-05,-1.1140819879074115e-05,-1.0732651484210628e-20,3.5938128917223366e-07,-7.9679122923789e-23,8.121028427033871e-22,0.00014204545004758984,-9.164223229163326e-06,-2.029220740951132e-05,-7.9679122923789e-23,1.3091746495774714e-06,4.658681209898652e-21,0.0002297794126207009,-6.098637220230962e-20,-0.00010605203715385869,8.121028427033871e-22,4.658681209898652e-21,7.575145446025999e-06,32.0,16.0,0.04199392721056938,-0.0029140207916498184,-0.005504261236637831,5.2222592785255983e-05,0.00012533421977423131,0.00019148284627590328,-0.0029140207916498184,0.0004073362215422094,0.00012533421977423131,-1.0444518920849077e-05,-8.08607910585124e-06,1.0164395367051604e-19,-0.005504261236637831,0.00012533421977423131,0.0015818969113752246,2.973368889598908e-20,-1.6711230273358524e-05,-8.206407801480964e-05,5.2222592785255983e-05,-1.0444518920849077e-05,2.973368889598908e-20,3.3691995326989854e-07,-5.294055379922307e-22,-1.310088391628576e-21,0.00012533421977423131,-8.08607910585124e-06,-1.6711230273358524e-05,-5.294055379922307e-22,1.0781438959384104e-06,-6.88214269644119e-21,0.00019148284627590328,1.0164395367051604e-19,-8.206407801480964e-05,-1.310088391628576e-21,-6.88214269644119e-21,5.4709385040041525e-06,32.0,17.0,0.03980359807610512,-0.002749161096289754,-0.004919551778584719,4.915067620459013e-05,0.00011140819697175175,0.00016124871035572141,-0.002749161096289754,0.0003837980912066996,0.00011140819697175175,-9.830135240918025e-06,-7.1876256697578356e-06,0.0,-0.004919551778584719,0.00011140819697175175,0.0013244382571429014,-1.1560433902971031e-20,-1.3926024621468969e-05,-6.449948705267161e-05,4.915067620459013e-05,-9.830135240918025e-06,-1.1560433902971031e-20,3.1710112580185523e-07,3.102613921605758e-22,4.2484660670932315e-22,0.00011140819697175175,-7.1876256697578356e-06,-1.3926024621468969e-05,3.102613921605758e-22,8.984532087197294e-07,-1.7999450129153882e-21,0.00016124871035572141,0.0,-6.449948705267161e-05,4.2484660670932315e-22,-1.7999450129153882e-21,4.031217940791976e-06,32.0,18.0,0.0378304123878479,-0.002601967891678214,-0.004423345439136028,4.642008207156323e-05,9.968101949198171e-05,0.00013706140452995896,-0.002601967891678214,0.00036283323424868286,9.968101949198171e-05,-9.284016414312646e-06,-6.4310333982575685e-06,-8.300922883092143e-20,-0.004423345439136028,9.968101949198171e-05,0.0011200371664017439,-2.4754156928060756e-20,-1.1727179298759438e-05,-5.139802669873461e-05,4.642008207156323e-05,-9.284016414312646e-06,-2.4754156928060756e-20,2.994844123804796e-07,2.2435459104330143e-22,1.215276045088953e-21,9.968101949198171e-05,-6.4310333982575685e-06,-1.1727179298759438e-05,2.2435459104330143e-22,7.565922146568482e-07,4.2881042954748955e-21,0.00013706140452995896,-8.300922883092143e-20,-5.139802669873461e-05,1.215276045088953e-21,4.2881042954748955e-21,3.0234132282203063e-06,32.0,19.0,0.03604361042380333,-0.002469743834808469,-0.00399863300845027,4.397692100610584e-05,8.971292118076235e-05,0.000117481205961667,-0.002469743834808469,0.00034404138568788767,8.971292118076235e-05,-8.795384019322228e-06,-5.787930149381282e-06,-0.0,-0.00399863300845027,8.971292118076235e-05,0.0009556813165545464,-4.235164736271502e-22,-9.968101949198171e-06,-4.1463954403297976e-05,4.397692100610584e-05,-8.795384019322228e-06,-4.235164736271502e-22,2.8372207339089073e-07,2.6469779601696886e-23,-0.0,8.971292118076235e-05,-5.787930149381282e-06,-9.968101949198171e-06,2.6469779601696886e-23,6.431033625631244e-07,-0.0,0.000117481205961667,-0.0,-4.1463954403297976e-05,-0.0,-0.0,2.303552946614218e-06,32.0,20.0,0.03441797196865082,-0.0023503152187913656,-0.0036323051899671555,4.177807568339631e-05,8.116882963804528e-05,0.000101461038866546,-0.0023503152187913656,0.00032710115192458034,8.116882963804528e-05,-8.355615136679262e-06,-5.236698598309886e-06,-6.69479800070465e-21,-0.0036323051899671555,8.116882963804528e-05,0.000822012429125607,4.235164736271502e-22,-8.544087904738262e-06,-3.382034628884867e-05,4.177807568339631e-05,-8.355615136679262e-06,4.235164736271502e-22,2.695359739846026e-07,-2.6469779601696886e-23,-4.3880837446834624e-38,8.116882963804528e-05,-5.236698598309886e-06,-8.544087904738262e-06,-2.6469779601696886e-23,5.512314373845584e-07,7.047155737071108e-22,0.000101461038866546,-6.69479800070465e-21,-3.382034628884867e-05,-4.3880837446834624e-38,7.047155737071108e-22,1.7800182376959128e-06,32.0,21.0,0.03293263539671898,-0.002241909271106124,-0.003314126515761018,3.97886433347594e-05,7.378984446404502e-05,8.822698873700574e-05,-0.002241909271106124,0.0003117515880148858,7.378984446404502e-05,-7.95772848505294e-06,-4.7606354200979695e-06,-0.0,-0.003314126515761018,7.378984446404502e-05,0.0007121817907318473,8.470329472543003e-22,-7.378984719252912e-06,-2.7861155103892088e-05,3.97886433347594e-05,-7.95772848505294e-06,8.470329472543003e-22,2.5670092895779817e-07,-5.293955920339377e-23,-0.0,7.378984446404502e-05,-4.7606354200979695e-06,-7.378984719252912e-06,-5.293955920339377e-23,4.760635192724294e-07,-0.0,8.822698873700574e-05,-0.0,-2.7861155103892088e-05,-0.0,-0.0,1.3930576869825018e-06,32.0,22.0,0.0315701887011528,-0.0021430666092783213,-0.0030360110104084015,3.7980069464538246e-05,6.737333751516417e-05,7.719861605437472e-05,-0.0021430666092783213,0.00029777863528579473,6.737333751516417e-05,-7.596013801958179e-06,-4.346667083154898e-06,5.067058420390878e-21,-0.0030360110104084015,6.737333751516417e-05,0.0006210979772731662,-1.1418556542979477e-36,-6.416508313122904e-06,-2.3159584088716656e-05,3.7980069464538246e-05,-7.596013801958179e-06,-1.1418556542979477e-36,2.4503270878994954e-07,-0.0,5.437407984374872e-38,6.737333751516417e-05,-4.346667083154898e-06,-6.416508313122904e-06,-0.0,4.139682800996525e-07,-4.825769876098838e-22,7.719861605437472e-05,5.067058420390878e-21,-2.3159584088716656e-05,5.437407984374872e-38,-4.825769876098838e-22,1.1028373592125718e-06,32.0,23.0,0.030315987765789032,-0.002052574884146452,-0.002791502047330141,3.632876178016886e-05,6.175889575388283e-05,6.793477950850502e-05,-0.002052574884146452,0.00028500499320216477,6.175889575388283e-05,-7.265752174134832e-06,-3.9844449020165484e-06,4.448900047840178e-21,-0.002791502047330141,6.175889575388283e-05,0.0005449219606816769,2.117582368135751e-22,-5.6144449445127975e-06,-1.9409937522141263e-05,3.632876178016886e-05,-7.265752174134832e-06,2.117582368135751e-22,2.3437910101620218e-07,-1.3234889800848443e-23,2.1749631937499488e-38,6.175889575388283e-05,-3.9844449020165484e-06,-5.6144449445127975e-06,-1.3234889800848443e-23,3.6222223798176856e-07,-4.0444547725350633e-22,6.793477950850502e-05,4.448900047840178e-21,-1.9409937522141263e-05,2.1749631937499488e-38,-4.0444547725350633e-22,8.822698873700574e-07,32.0,24.0,0.029157625511288643,-0.001969418488442898,-0.0025753933005034924,3.481506064417772e-05,5.681818220182322e-05,6.009615390212275e-05,-0.001969418488442898,0.0002732825232669711,5.681818220182322e-05,-6.963012310734484e-06,-3.665689064291655e-06,-0.0,-0.0025753933005034924,5.681818220182322e-05,0.0004807217337656766,2.117582368135751e-22,-4.940711278322851e-06,-1.638986032048706e-05,3.481506064417772e-05,-6.963012310734484e-06,2.117582368135751e-22,2.2461330217993236e-07,-1.3234889800848443e-23,-0.0,5.681818220182322e-05,-3.665689064291655e-06,-4.940711278322851e-06,-1.3234889800848443e-23,3.187555819295085e-07,-0.0,6.009615390212275e-05,-0.0,-1.638986032048706e-05,-0.0,-0.0,7.126026275727781e-07,32.0,25.0,0.028084522113204002,-0.0018927395576611161,-0.002383449813351035,3.342246054671705e-05,5.244755084277131e-05,5.3418803872773424e-05,-0.0018927395576611161,0.00026248657377436757,5.244755084277131e-05,-6.684491836494999e-06,-3.3837129649327835e-06,-0.0,-0.002383449813351035,5.244755084277131e-05,0.000426231388701126,-4.235164736271502e-22,-4.3706295400625095e-06,-1.3935339666204527e-05,3.342246054671705e-05,-6.684491836494999e-06,-4.235164736271502e-22,2.156287735033402e-07,1.3234889800848443e-23,-0.0,5.244755084277131e-05,-3.3837129649327835e-06,-4.3706295400625095e-06,1.3234889800848443e-23,2.819760993588716e-07,-0.0,5.3418803872773424e-05,-0.0,-1.3935339666204527e-05,-0.0,-0.0,5.80639152758522e-07,32.0,26.0,0.02708759717643261,-0.0018218096811324358,-0.00221219751983881,3.213698073523119e-05,4.856254963669926e-05,4.7695360990474e-05,-0.0018218096811324358,0.0002525114396121353,4.856254963669926e-05,-6.4273963289451785e-06,-3.1330675938079366e-06,4.870439446712227e-21,-0.00221219751983881,4.856254963669926e-05,0.0003796810924541205,-4.939812657267381e-22,-3.885003934556153e-06,-1.19238402476185e-05,3.213698073523119e-05,-6.4273963289451785e-06,-4.939812657267381e-22,2.0733536132411245e-07,1.8289445053570606e-23,8.895978906151014e-24,4.856254963669926e-05,-3.1330675938079366e-06,-3.885003934556153e-06,1.8289445053570606e-23,2.506453995465563e-07,-4.1028158382630173e-22,4.7695360990474e-05,4.870439446712227e-21,-1.19238402476185e-05,8.895978906151014e-24,-4.1028158382630173e-22,4.769536303683708e-07,32.0,27.0,0.026159020140767097,-0.0017560054548084736,-0.0020587649196386337,3.094672138104215e-05,4.5093795051798224e-05,4.276135587133467e-05,-0.0017560054548084736,0.0002432668989058584,4.5093795051798224e-05,-6.1893442762084305e-06,-2.9092771001160145e-06,-1.0587911840678754e-21,-0.0020587649196386337,4.5093795051798224e-05,0.00033967470517382026,-0.0,-3.4687534480326576e-06,-1.0262725481879897e-05,3.094672138104215e-05,-6.1893442762084305e-06,-0.0,1.9965627018336818e-07,0.0,0.0,4.5093795051798224e-05,-2.9092771001160145e-06,-3.4687534480326576e-06,0.0,2.2379055053534103e-07,1.0587911840678754e-22,4.276135587133467e-05,-1.0587911840678754e-21,-1.0262725481879897e-05,0.0,1.0587911840678754e-22,3.9472021740039054e-07,32.0,28.0,0.025291994214057922,-0.0016947903204709291,-0.0019207624718546867,2.9841481591574848e-05,4.1983879782492295e-05,3.8485221011796966e-05,-0.0016947903204709291,0.00023467553546652198,4.1983879782492295e-05,-5.96829659116338e-06,-2.7086373393103713e-06,2.117582368135751e-22,-0.0019207624718546867,4.1983879782492295e-05,0.000305100780678913,-0.0,-3.1099168609216576e-06,-8.881204848876223e-06,2.9841481591574848e-05,-5.96829659116338e-06,-0.0,1.9252568961292127e-07,-6.617444900424222e-24,0.0,4.1983879782492295e-05,-2.7086373393103713e-06,-3.1099168609216576e-06,-6.617444900424222e-24,2.006398034382073e-07,0.0,3.8485221011796966e-05,2.117582368135751e-22,-8.881204848876223e-06,0.0,0.0,3.289335097633739e-07,32.0,29.0,0.02448059432208538,-0.001637700479477644,-0.0017961877165362239,2.881246473407373e-05,3.918495349353179e-05,3.476084384601563e-05,-0.001637700479477644,0.00022667045413982123,3.918495349353179e-05,-5.762492946814746e-06,-2.52806148637319e-06,6.352747104407253e-22,-0.0017961877165362239,3.918495349353179e-05,0.00027506714104674757,-0.0,-2.7989251520921243e-06,-7.724632268946152e-06,2.881246473407373e-05,-5.762492946814746e-06,-0.0,1.8588687566989393e-07,0.0,-3.308722450212111e-24,3.918495349353179e-05,-2.52806148637319e-06,-2.7989251520921243e-06,0.0,1.8057582451547205e-07,-3.970466940254533e-23,3.476084384601563e-05,6.352747104407253e-22,-7.724632268946152e-06,-3.308722450212111e-24,-3.970466940254533e-23,2.758797279511782e-07,32.0,30.0,0.023719636723399162,-0.001584332436323166,-0.0016833532135933638,2.7852049242937937e-05,3.6656892916653305e-05,3.150201519019902e-05,-0.001584332436323166,0.0002191936073359102,3.6656892916653305e-05,-5.570409939537058e-06,-2.3649606646358734e-06,-1.4823076576950256e-21,-0.0016833532135933638,3.6656892916653305e-05,0.00024885180755518377,-2.1584453630261993e-22,-2.52806148637319e-06,-6.75043202136294e-06,2.7852049242937937e-05,-5.570409939537058e-06,-2.1584453630261993e-22,1.7969064458611683e-07,1.5427632816549734e-23,-7.623784502022898e-25,3.6656892916653305e-05,-2.3649606646358734e-06,-2.52806148637319e-06,1.5427632816549734e-23,1.6310073647218815e-07,1.1249656330721176e-22,3.150201519019902e-05,-1.4823076576950256e-21,-6.75043202136294e-06,-7.623784502022898e-25,1.1249656330721176e-22,2.3277351601791452e-07,32.0,31.0,0.02300455793738365,-0.0015343334525823593,-0.001580828451551497,2.6953595806844532e-05,3.436583574512042e-05,2.8638196454267018e-05,-0.0015343334525823593,0.0002121943689417094,3.436583574512042e-05,-5.390719252318377e-06,-2.2171507225721143e-06,2.117582368135751e-22,-0.001580828451551497,3.436583574512042e-05,0.00022586648992728442,-0.0,-2.2910558072908316e-06,-5.925144250795711e-06,2.6953595806844532e-05,-5.390719252318377e-06,-0.0,1.738941790563331e-07,-6.617444900424222e-24,3.308722450212111e-24,3.436583574512042e-05,-2.2171507225721143e-06,-2.2910558072908316e-06,-6.617444900424222e-24,1.478100415397421e-07,-1.9852334701272664e-23,2.8638196454267018e-05,2.117582368135751e-22,-5.925144250795711e-06,3.308722450212111e-24,-1.9852334701272664e-23,1.9750480362290546e-07,32.0,32.0,0.02233133092522621,-0.0014873944455757737,-0.0014873944455757737,2.6111296392627992e-05,3.2283056498272344e-05,2.6111296392627992e-05,-0.0014873944455757737,0.00020562837016768754,3.2283056498272344e-05,-5.222259460424539e-06,-2.082777882606024e-06,-2.117582368135751e-22,-0.0014873944455757737,3.2283056498272344e-05,0.00020562837016768754,-0.0,-2.082777882606024e-06,-5.222259460424539e-06,2.6111296392627992e-05,-5.222259460424539e-06,-0.0,1.6845997663494927e-07,-6.617444900424222e-24,0.0,3.2283056498272344e-05,-2.082777882606024e-06,-2.082777882606024e-06,-6.617444900424222e-24,1.3437276891181682e-07,1.3234889800848443e-23,2.6111296392627992e-05,-2.117582368135751e-22,-5.222259460424539e-06,0.0,1.3234889800848443e-23,1.6845997663494927e-07,32.0,33.0,0.021696384996175766,-0.0014432425377890468,-0.0014020070666447282,2.5320045097032562e-05,3.0384055207832716e-05,2.387318636465352e-05,-0.0014432425377890468,0.00019945661188103259,3.0384055207832716e-05,-5.064009201305453e-06,-1.9602616703195963e-06,-3.1763735522036263e-22,-0.0014020070666447282,3.0384055207832716e-05,0.000187738798558712,-0.0,-1.8990034504895448e-06,-4.620616437023273e-06,2.5320045097032562e-05,-5.064009201305453e-06,-0.0,1.6335512498244498e-07,0.0,0.0,3.0384055207832716e-05,-1.9602616703195963e-06,-1.8990034504895448e-06,0.0,1.2251635439497477e-07,1.9852334701272664e-23,2.387318636465352e-05,-3.1763735522036263e-22,-4.620616437023273e-06,0.0,1.9852334701272664e-23,1.4439426365697727e-07,32.0,34.0,0.021096546202898026,-0.0014016368659213185,-0.0013237681705504656,2.4575338102295063e-05,2.8647822546190582e-05,2.188375401601661e-05,-0.0014016368659213185,0.00019364460604265332,2.8647822546190582e-05,-4.915067620459013e-06,-1.8482465975466766e-06,-8.470329472543003e-22,-0.0013237681705504656,2.8647822546190582e-05,0.00017186658806167543,-1.490705025233118e-22,-1.7362316384605947e-06,-4.103203991689952e-06,2.4575338102295063e-05,-4.915067620459013e-06,-1.490705025233118e-22,1.5855056290092762e-07,-5.111503910330973e-24,3.558962145553152e-24,2.8647822546190582e-05,-1.8482465975466766e-06,-1.7362316384605947e-06,-5.111503910330973e-24,1.1201494487522723e-07,3.970466940254533e-23,2.188375401601661e-05,-8.470329472543003e-22,-4.103203991689952e-06,3.558962145553152e-24,3.970466940254533e-23,1.2433950757895218e-07,32.0,35.0,0.02052898332476616,-0.0013623631093651056,-0.0012519012670964003,2.387318636465352e-05,2.7056277758674696e-05,2.0109395336476155e-05,-0.0013623631093651056,0.00018816177907865494,2.7056277758674696e-05,-4.774637091031764e-06,-1.7455662373322411e-06,3.1763735522036263e-22,-0.0012519012670964003,2.7056277758674696e-05,0.0001577350776642561,-1.3681337110460498e-22,-1.591545697010588e-06,-3.6562537388817873e-06,2.387318636465352e-05,-4.774637091031764e-06,-1.3681337110460498e-22,1.5402055453250796e-07,7.99789074227129e-24,3.1712945974831056e-24,2.7056277758674696e-05,-1.7455662373322411e-06,-1.591545697010588e-06,7.99789074227129e-24,1.0268036731986285e-07,-1.9852334701272664e-23,2.0109395336476155e-05,3.1763735522036263e-22,-3.6562537388817873e-06,3.1712945974831056e-24,-1.9852334701272664e-23,1.0753687007536428e-07,32.0,36.0,0.019991155713796616,-0.0013252306962385774,-0.0011857326608151197,2.3210041035781614e-05,2.559377571742516e-05,1.8521810488891788e-05,-0.0013252306962385774,0.0001829809189075604,2.559377571742516e-05,-4.642008207156323e-06,-1.6512112779309973e-06,8.470329472543003e-22,-0.0011857326608151197,2.559377571742516e-05,0.00014511196059174836,-0.0,-1.4625014728153474e-06,-3.2685550195310498e-06,2.3210041035781614e-05,-4.642008207156323e-06,-0.0,1.497422061902398e-07,-6.617444900424222e-24,3.308722450212111e-24,2.559377571742516e-05,-1.6512112779309973e-06,-1.4625014728153474e-06,-6.617444900424222e-24,9.43549309795344e-08,-5.293955920339377e-23,1.8521810488891788e-05,8.470329472543003e-22,-3.2685550195310498e-06,3.308722450212111e-24,-5.293955920339377e-23,9.338728546026687e-08,32.0,37.0,0.019480789080262184,-0.0012900689616799355,-0.0011246755020692945,2.2582742531085387e-05,2.4246734028565697e-05,1.7097056115744635e-05,-0.0012900689616799355,0.00017807776748668402,2.4246734028565697e-05,-4.516548415267607e-06,-1.564305421197787e-06,0.0,-0.0011246755020692945,2.4246734028565697e-05,0.0001338011206826195,-2.3210794516014598e-22,-1.347040779364761e-06,-2.930923983512912e-06,2.2582742531085387e-05,-4.516548415267607e-06,-2.3210794516014598e-22,1.4569511108675215e-07,2.3367432630621454e-24,5.084342640503309e-24,2.4246734028565697e-05,-1.564305421197787e-06,-1.347040779364761e-06,2.3367432630621454e-24,8.690585673321038e-08,-6.617444900424222e-24,1.7097056115744635e-05,0.0,-2.930923983512912e-06,5.084342640503309e-24,-6.617444900424222e-24,8.141455509758089e-08,32.0,38.0,0.018995830789208412,-0.0012567250523716211,-0.0010682162828743458,2.198846050305292e-05,2.3003312890068628e-05,1.581477772560902e-05,-0.0012567250523716211,0.00017343056970275939,2.3003312890068628e-05,-4.397692009661114e-06,-1.4840846915831207e-06,5.293955920339377e-22,-0.0010682162828743458,2.3003312890068628e-05,0.00012363633140921593,-1.0723742328960777e-22,-1.2434222753654467e-06,-2.635796136019053e-06,2.198846050305292e-05,-4.397692009661114e-06,-1.0723742328960777e-22,1.4186103669544536e-07,7.695941609023464e-24,6.318275910221621e-25,2.3003312890068628e-05,-1.4840846915831207e-06,-1.2434222753654467e-06,7.695941609023464e-24,8.022079356351242e-08,-2.3161057151484775e-23,1.581477772560902e-05,5.293955920339377e-22,-2.635796136019053e-06,6.318275910221621e-25,-2.3161057151484775e-23,7.123773571038328e-08,32.0,39.0,0.018534431234002113,-0.0012250617146492004,-0.001015904825180769,2.142465382348746e-05,2.1853147700312547e-05,1.4657598512712866e-05,-0.0012250617146492004,0.0001690197823336348,2.1853147700312547e-05,-4.284930582798552e-06,-1.409880496794358e-06,1.5881867761018131e-22,-0.001015904825180769,2.1853147700312547e-05,0.00011447597353253514,-0.0,-1.1501656445034314e-06,-2.3769077870383626e-06,2.142465382348746e-05,-4.284930582798552e-06,-0.0,1.382235694791234e-07,-6.617444900424222e-24,0.0,2.1853147700312547e-05,-1.409880496794358e-06,-1.1501656445034314e-06,-6.617444900424222e-24,7.420423031589962e-08,-6.617444900424222e-24,1.4657598512712866e-05,1.5881867761018131e-22,-2.3769077870383626e-06,0.0,-6.617444900424222e-24,6.255020679191148e-08,32.0,40.0,0.01809491403400898,-0.0011949548497796059,-0.0009673443855717778,2.0889037841698155e-05,2.078713987430092e-05,1.3610627320304047e-05,-0.0011949548497796059,0.00016482781211379915,2.078713987430092e-05,-4.177807568339631e-06,-1.341105758001504e-06,4.764560328305439e-22,-0.0009673443855717778,2.078713987430092e-05,0.0001061989605659619,-0.0,-1.0660071438906016e-06,-2.149046395061305e-06,2.0889037841698155e-05,-4.177807568339631e-06,-0.0,1.347679869923013e-07,3.308722450212111e-24,-1.6543612251060553e-24,2.078713987430092e-05,-1.341105758001504e-06,-1.0660071438906016e-06,3.308722450212111e-24,6.87746535277256e-08,-1.9852334701272664e-23,1.3610627320304047e-05,4.764560328305439e-22,-2.149046395061305e-06,-1.6543612251060553e-24,-1.9852334701272664e-23,5.5103754448282416e-08,32.0,41.0,0.01767575740814209,-0.00116629246622324,-0.000922184728551656,2.0379548004711978e-05,1.9797276763711125e-05,1.266104845853988e-05,-0.00116629246622324,0.00016083878290373832,1.9797276763711125e-05,-4.075909600942396e-06,-1.2772436548402766e-06,-2.117582368135751e-22,-0.000922184728551656,1.9797276763711125e-05,9.870128269540146e-05,-0.0,-9.898637927108211e-07,-1.9478536614769837e-06,2.0379548004711978e-05,-4.075909600942396e-06,-0.0,1.3148095945325622e-07,0.0,0.0,1.9797276763711125e-05,-1.2772436548402766e-06,-9.898637927108211e-07,0.0,6.386218132092836e-08,1.6543612251060553e-23,1.266104845853988e-05,-2.117582368135751e-22,-1.9478536614769837e-06,0.0,1.6543612251060553e-23,4.8696339405296385e-08,32.0,42.0,0.017275581136345863,-0.0011389730498194695,-0.0008801155490800738,1.98943216673797e-05,1.8876471585826948e-05,1.1797795195889194e-05,-0.0011389730498194695,0.00015703827375546098,1.8876471585826948e-05,-3.97886424252647e-06,-1.2178369388493593e-06,-4.764560328305439e-22,-0.0008801155490800738,1.8876471585826948e-05,9.189331467496231e-05,-0.0,-9.208035294250294e-07,-1.7696693248581141e-06,1.98943216673797e-05,-3.97886424252647e-06,-0.0,1.2835046447889908e-07,0.0,0.0,1.8876471585826948e-05,-1.2178369388493593e-06,-9.208035294250294e-07,0.0,5.9406680463780503e-08,2.3161057151484775e-23,1.1797795195889194e-05,-4.764560328305439e-22,-1.7696693248581141e-06,0.0,2.3161057151484775e-23,4.3162664553619834e-08,32.0,43.0,0.01689312234520912,-0.0011129042832180858,-0.0008408610592596233,1.9431663531577215e-05,1.801845064619556e-05,1.1011275091732386e-05,-0.0011129042832180858,0.00015341326070483774,1.801845064619556e-05,-3.886332706315443e-06,-1.1624806575127877e-06,7.411538288475128e-22,-0.0008408610592596233,1.801845064619556e-05,8.569750934839249e-05,-9.413881836092276e-22,-8.580214512221573e-07,-1.6114062191263656e-06,1.9431663531577215e-05,-3.886332706315443e-06,-9.413881836092276e-22,1.253655597110992e-07,6.073472294821503e-23,-3.2326094647612906e-38,1.801845064619556e-05,-1.1624806575127877e-06,-8.580214512221573e-07,6.073472294821503e-23,5.5356224493152695e-08,-2.9778502051908996e-23,1.1011275091732386e-05,7.411538288475128e-22,-1.6114062191263656e-06,-3.2326094647612906e-38,-2.9778502051908996e-23,3.836681372604289e-08,32.0,44.0,0.01652722992002964,-0.0010880023473873734,-0.0008041756227612495,1.8990034732269123e-05,1.721763146633748e-05,1.0293148989148904e-05,-0.0010880023473873734,0.0001499518402852118,1.721763146633748e-05,-3.7980069009790896e-06,-1.1108148783023353e-06,1.0587911840678754e-22,-0.0008041756227612495,1.721763146633748e-05,8.004656410776079e-05,-0.0,-8.00820032509364e-07,-1.4704498880746542e-06,1.8990034732269123e-05,-3.7980069009790896e-06,-0.0,1.2251635439497477e-07,0.0,0.0,1.721763146633748e-05,-1.1108148783023353e-06,-8.00820032509364e-07,0.0,5.1665807632161886e-08,-6.617444900424222e-24,1.0293148989148904e-05,1.0587911840678754e-22,-1.4704498880746542e-06,0.0,-6.617444900424222e-24,3.419650695946075e-08,32.0,45.0,0.016176851466298103,-0.0010641905246302485,-0.0007698399131186306,1.856803282862529e-05,1.6469039110234007e-05,9.636139111535158e-06,-0.0010641905246302485,0.00014664318587165326,1.6469039110234007e-05,-3.7136067021492636e-06,-1.062518549588276e-06,-5.293955920339377e-22,-0.0007698399131186306,1.6469039110234007e-05,7.488185656256974e-05,-0.0,-7.485926403205667e-07,-1.3445776403386844e-06,1.856803282862529e-05,-3.7136067021492636e-06,-0.0,1.197937677943628e-07,0.0,0.0,1.6469039110234007e-05,-1.062518549588276e-06,-7.485926403205667e-07,0.0,4.829630029234977e-08,2.150669592637872e-23,9.636139111535158e-06,-5.293955920339377e-22,-1.3445776403386844e-06,0.0,2.150669592637872e-23,3.055858144307422e-08,32.0,46.0,0.01584102027118206,-0.0010413987329229712,-0.0007376574212685227,1.816438089008443e-05,1.5768227967782877e-05,9.033880814968143e-06,-0.0010413987329229712,0.00014347741671372205,1.5768227967782877e-05,-3.632876087067416e-06,-1.017305066852714e-06,0.0,-0.0007376574212685227,1.5768227967782877e-05,7.015219307504594e-05,-0.0,-7.008101192695904e-07,-1.2318928384047467e-06,1.816438089008443e-05,-3.632876087067416e-06,-0.0,1.1718955050810109e-07,0.0,0.0,1.5768227967782877e-05,-1.017305066852714e-06,-7.008101192695904e-07,0.0,4.521355734254939e-08,0.0,9.033880814968143e-06,0.0,-1.2318928384047467e-06,0.0,0.0,2.7375396172146793e-08,32.0,47.0,0.015518849715590477,-0.001019562827423215,-0.0007074517197906971,1.777790384949185e-05,1.5111218999663834e-05,8.480786164000165e-06,-0.001019562827423215,0.00014044543786440045,1.5111218999663834e-05,-3.55558086084784e-06,-9.749172704687226e-07,1.0587911840678754e-22,-0.0007074517197906971,1.5111218999663834e-05,6.581268826266751e-05,-0.0,-6.570094797098136e-07,-1.1307714657959878e-06,1.777790384949185e-05,-3.55558086084784e-06,-0.0,1.146961565723359e-07,0.0,0.0,1.5111218999663834e-05,-9.749172704687226e-07,-6.570094797098136e-07,0.0,4.238771111886308e-08,-6.617444900424222e-24,8.480786164000165e-06,1.0587911840678754e-22,-1.1307714657959878e-06,0.0,-6.617444900424222e-24,2.458198800070477e-08,32.0,48.0,0.015209521166980267,-0.0009986239019781351,-0.0006790642510168254,1.740753032208886e-05,1.4494434253720101e-05,7.97193843027344e-06,-0.0009986239019781351,0.00013753898383583874,1.4494434253720101e-05,-3.481506155367242e-06,-9.351247740596591e-07,-1.5881867761018131e-22,-0.0006790642510168254,1.4494434253720101e-05,6.182392098708078e-05,-0.0,-6.167844048832194e-07,-1.0398181302662124e-06,1.740753032208886e-05,-3.481506155367242e-06,-0.0,1.1230665108996618e-07,0.0,0.0,1.4494434253720101e-05,-9.351247740596591e-07,-6.167844048832194e-07,0.0,3.9792542594341285e-08,8.271806125530277e-24,7.97193843027344e-06,-1.5881867761018131e-22,-1.0398181302662124e-06,0.0,8.271806125530277e-24,2.2123789022998608e-08,32.0,49.0,0.014912283048033714,-0.0009785278234630823,-0.0006523518241010606,1.7052276234608144e-05,1.3914656847191509e-05,7.503001143049914e-06,-0.0009785278234630823,0.00013475038576871157,1.3914656847191509e-05,-3.4104550650226884e-06,-8.977198149295873e-07,-3.0704944337968387e-21,-0.0006523518241010606,1.3914656847191509e-05,5.815116310259327e-05,-7.244887244439835e-21,-5.797773496851732e-07,-9.578299113854882e-07,1.7052276234608144e-05,-3.4104550650226884e-06,-7.244887244439835e-21,1.1001468180893426e-07,1.0228467684759162e-22,1.197989035564361e-22,1.3914656847191509e-05,-8.977198149295873e-07,-5.797773496851732e-07,1.0228467684759162e-22,3.740499110449491e-08,-2.150669592637872e-23,7.503001143049914e-06,-3.0704944337968387e-21,-9.578299113854882e-07,1.197989035564361e-22,-2.150669592637872e-23,1.9954789820531005e-08,32.0,50.0,0.014626439660787582,-0.0009592245914973319,-0.0006271853344514966,1.6711230273358524e-05,1.3368983672989998e-05,7.070135779940756e-06,-0.0009592245914973319,0.00013207262963987887,1.3368983672989998e-05,-3.3422459182474995e-06,-8.625150940133608e-07,2.9116757561866574e-22,-0.0006271853344514966,1.3368983672989998e-05,5.4763710068073124e-05,-0.0,-5.456728331409977e-07,-8.837669724925945e-07,1.6711230273358524e-05,-3.3422459182474995e-06,-0.0,1.078143867516701e-07,0.0,0.0,1.3368983672989998e-05,-8.625150940133608e-07,-5.456728331409977e-07,0.0,3.5204696047230755e-08,-1.1580528575742387e-23,7.070135779940756e-06,2.9116757561866574e-22,-8.837669724925945e-07,0.0,-1.1580528575742387e-23,1.8036059756809664e-08,32.0,51.0,0.014351348392665386,-0.0009406683384440839,-0.0006034476100467145,1.6383559341193177e-05,1.2854792657890357e-05,6.669939466519281e-06,-0.0009406683384440839,0.0001294992252951488,1.2854792657890357e-05,-3.2767118227639003e-06,-8.293414452964498e-07,-1.852884572118782e-22,-0.0006034476100467145,1.2854792657890357e-05,5.163438981981017e-05,-0.0,-5.141916972206673e-07,-8.16727265373629e-07,1.6383559341193177e-05,-3.2767118227639003e-06,-0.0,1.0570038000423665e-07,0.0,0.0,1.2854792657890357e-05,-8.293414452964498e-07,-5.141916972206673e-07,0.0,3.317365582233833e-08,8.271806125530277e-24,6.669939466519281e-06,-1.852884572118782e-22,-8.16727265373629e-07,0.0,8.271806125530277e-24,1.6334546160123864e-08,32.0,52.0,0.014086413197219372,-0.0009228164562955499,-0.0005810325965285301,1.6068490367615595e-05,1.236970547324745e-05,6.299387223407393e-06,-0.0009228164562955499,0.0001270242064492777,1.236970547324745e-05,-3.2136981644725893e-06,-7.980455052347679e-07,2.117582368135751e-22,-0.0005810325965285301,1.236970547324745e-05,4.873906436841935e-05,-0.0,-4.850865025218809e-07,-7.559264645351504e-07,1.6068490367615595e-05,-3.2136981644725893e-06,-0.0,1.0366768066205623e-07,0.0,0.0,1.236970547324745e-05,-7.980455052347679e-07,-4.850865025218809e-07,0.0,3.1295904534545116e-08,-8.271806125530277e-24,6.299387223407393e-06,2.117582368135751e-22,-7.559264645351504e-07,0.0,-8.271806125530277e-24,1.4822087557320174e-08,32.0,53.0,0.013831082731485367,-0.0009056295384652913,-0.0005598437273874879,1.5765312127768993e-05,1.1911568435607478e-05,5.955784217803739e-06,-0.0009056295384652913,0.00012464201427064836,1.1911568435607478e-05,-3.153062152705388e-06,-7.684882916692004e-07,2.6469779601696886e-23,-0.0005598437273874879,1.1911568435607478e-05,4.605626963893883e-05,6.223293136594312e-22,-4.5813723659193784e-07,-7.006805162745877e-07,1.5765312127768993e-05,-3.153062152705388e-06,6.223293136594312e-22,1.0171168440820111e-07,-4.015027799524295e-23,0.0,1.1911568435607478e-05,-7.684882916692004e-07,-4.5813723659193784e-07,-4.015027799524295e-23,2.955724198727694e-08,-8.271806125530277e-25,5.955784217803739e-06,2.6469779601696886e-23,-7.006805162745877e-07,0.0,-8.271806125530277e-25,1.3474624971365756e-08,32.0,54.0,0.013584843836724758,-0.0008890712051652372,-0.0005397932254709303,1.5473360690521076e-05,1.147842067439342e-05,5.636724381474778e-06,-0.0008890712051652372,0.00012234754103701562,1.147842067439342e-05,-3.0946721381042153e-06,-7.405432711493631e-07,0.0,-0.0005397932254709303,1.147842067439342e-05,4.3566844396991655e-05,-0.0,-4.3314796016602486e-07,-6.503912572952686e-07,1.5473360690521076e-05,-3.0946721381042153e-06,-0.0,9.982813509168409e-08,0.0,0.0,1.147842067439342e-05,-7.405432711493631e-07,-4.3314796016602486e-07,0.0,2.794502940162147e-08,0.0,5.636724381474778e-06,0.0,-6.503912572952686e-07,0.0,0.0,1.2271533122998335e-08,32.0,55.0,0.013347217813134193,-0.0008731075213290751,-0.0005208009970374405,1.5192027603916358e-05,1.1068476851505693e-05,5.340054485714063e-06,-0.0008731075213290751,0.00012013602827209979,1.1068476851505693e-05,-3.0384053388843313e-06,-7.140952789086441e-07,1.0587911840678754e-22,-0.0005208009970374405,1.1068476851505693e-05,4.1253679228248075e-05,-0.0,-4.099435955140507e-07,-6.045344775884587e-07,1.5192027603916358e-05,-3.0384053388843313e-06,-0.0,9.801308209489434e-08,0.0,0.0,1.1068476851505693e-05,-7.140952789086441e-07,-4.099435955140507e-07,0.0,2.6447974477150638e-08,-4.1359030627651384e-24,5.340054485714063e-06,1.0587911840678754e-22,-6.045344775884587e-07,0.0,-4.1359030627651384e-24,1.1195083082782276e-08,32.0,56.0,0.013117763213813305,-0.0008577069966122508,-0.0005027937586419284,1.4920740795787424e-05,1.0680108971428126e-05,5.063845037511783e-06,-0.0008577069966122508,0.00011800305219367146,1.0680108971428126e-05,-2.98414829558169e-06,-6.890393251524074e-07,-1.8514483404003004e-22,-0.0005027937586419284,1.0680108971428126e-05,3.9101440052036196e-05,-1.376428539288238e-21,-3.883676242821821e-07,-5.626494612442912e-07,1.4920740795787424e-05,-2.98414829558169e-06,-1.376428539288238e-21,9.626284480646063e-08,5.955700410381799e-23,2.5968709354196793e-24,1.0680108971428126e-05,-6.890393251524074e-07,-3.883676242821821e-07,5.955700410381799e-23,2.5055975072518777e-08,4.248905809716238e-24,5.063845037511783e-06,-1.8514483404003004e-22,-5.626494612442912e-07,2.5968709354196793e-24,4.248905809716238e-24,1.0229990188292959e-08,32.0,57.0,0.01289606373757124,-0.0008428404107689857,-0.0004857046587858349,1.4658973668701947e-05,1.031183001032332e-05,4.806361175724305e-06,-0.0008428404107689857,0.000115944494609721,1.031183001032332e-05,-2.9317948246898595e-06,-6.652793445027783e-07,-1.5634652006185074e-23,-0.0004857046587858349,1.031183001032332e-05,3.7096371670486405e-05,3.282252670610414e-21,-3.6827964322583284e-07,-5.243303462520998e-07,1.4658973668701947e-05,-2.9317948246898595e-06,3.282252670610414e-21,9.457402683210603e-08,-1.9852334701272664e-22,7.846696872315726e-24,1.031183001032332e-05,-6.652793445027783e-07,-3.6827964322583284e-07,-1.9852334701272664e-22,2.3759977096915463e-08,-7.947951113805369e-24,4.806361175724305e-06,-1.5634652006185074e-23,-5.243303462520998e-07,7.846696872315726e-24,-7.947951113805369e-24,9.363041897358926e-09,32.0,58.0,0.012681733816862106,-0.0008284804644063115,-0.0004694722592830658,1.4406232367036864e-05,9.962275726138614e-06,4.56604311693809e-06,-0.0008284804644063115,0.00011395652836654335,9.962275726138614e-06,-2.881246473407373e-06,-6.427275138776167e-07,2.7260230850502823e-22,-0.0004694722592830658,9.962275726138614e-06,3.5226101317675784e-05,6.352747104407253e-22,-3.495535452202603e-07,-4.892189053862239e-07,1.4406232367036864e-05,-2.881246473407373e-06,6.352747104407253e-22,9.294343783494696e-08,-5.293955920339377e-23,-1.40245772350829e-24,9.962275726138614e-06,-6.427275138776167e-07,-3.495535452202603e-07,-5.293955920339377e-23,2.2551841283302565e-08,-6.2633370729840875e-24,4.56604311693809e-06,2.7260230850502823e-22,-4.892189053862239e-07,-1.40245772350829e-24,-6.2633370729840875e-24,8.582787813793402e-09,32.0,59.0,0.01247441116720438,-0.000814601662568748,-0.0004540402733255178,1.4162059414957184e-05,9.63020011113258e-06,4.341483872849494e-06,-0.000814601662568748,0.00011203559552086517,9.63020011113258e-06,-2.8324118375167018e-06,-6.213032293089782e-07,-2.7844244394823877e-21,-0.0004540402733255178,9.63020011113258e-06,3.3479493140475824e-05,-4.446922973085077e-21,-3.320758708014182e-07,-4.5699829342993326e-07,1.4162059414957184e-05,-2.8324118375167018e-06,-4.446922973085077e-21,9.136812195720267e-08,4.1359030627651384e-23,6.396183931550384e-23,9.63020011113258e-06,-6.213032293089782e-07,-3.320758708014182e-07,4.1359030627651384e-23,2.1424249041501753e-08,2.0649980361534217e-23,4.341483872849494e-06,-2.7844244394823877e-21,-4.5699829342993326e-07,6.396183931550384e-23,2.0649980361534217e-23,7.879281227474166e-09,32.0,60.0,0.012273757718503475,-0.0008011801983229816,-0.00043935689609497786,1.3926024621468969e-05,9.314456292486284e-06,4.1314119698654395e-06,-0.0008011801983229816,0.00011017834913218394,9.314456292486284e-06,-2.785204969768529e-06,-6.009326511957624e-07,2.5302689553592435e-21,-0.00043935689609497786,9.314456292486284e-06,3.184648812748492e-05,3.917527381051139e-21,-3.1574427339364775e-07,-4.273874480986706e-07,1.3926024621468969e-05,-2.785204969768529e-06,3.917527381051139e-21,8.984532229305842e-08,-2.812414082680294e-23,-5.894072072111037e-23,9.314456292486284e-06,-6.009326511957624e-07,-3.1574427339364775e-07,-2.812414082680294e-23,2.0370597653140976e-08,-1.6729437903616225e-23,4.1314119698654395e-06,2.5302689553592435e-21,-4.273874480986706e-07,-5.894072072111037e-23,-1.6729437903616225e-23,7.243854849292575e-09,32.0,61.0,0.012079457752406597,-0.0007881938363425434,-0.0004253744555171579,1.369772962789284e-05,9.013990165840369e-06,3.934678261430236e-06,-0.0007881938363425434,0.0001083816823665984,9.013990165840369e-06,-2.739545834629098e-06,-5.815477379655931e-07,1.4236129732239228e-21,-0.0004253744555171579,9.013990165840369e-06,3.031799860764295e-05,2.2234614865425384e-21,-3.004663255978812e-07,-4.0013674151850864e-07,1.369772962789284e-05,-2.739545834629098e-06,2.2234614865425384e-21,8.837244536152866e-08,-1.4889251025954498e-23,-2.740606598832922e-23,9.013990165840369e-06,-5.815477379655931e-07,-3.004663255978812e-07,-1.4889251025954498e-23,1.9384923888310368e-08,-1.484410767179232e-23,3.934678261430236e-06,1.4236129732239228e-21,-4.0013674151850864e-07,-2.740606598832922e-23,-1.484410767179232e-23,6.668945840004881e-09,32.0,62.0,0.011891213245689869,-0.0007756218547001481,-0.00041204909211955965,1.3476797903422266e-05,8.727831300348043e-06,3.7502400118683e-06,-0.0007756218547001481,0.00010664267028914765,8.727831300348043e-06,-2.6953596261591883e-06,-5.630859050143044e-07,1.1871055571062465e-21,-0.00041204909211955965,8.727831300348043e-06,2.8885790015920065e-05,1.9058241313221758e-21,-2.861584107449744e-07,-3.7502400118683e-07,1.3476797903422266e-05,-2.6953596261591883e-06,1.9058241313221758e-21,8.694708952816654e-08,1.6543612251060553e-24,-2.451477559700205e-23,8.727831300348043e-06,-5.630859050143044e-07,-2.861584107449744e-07,1.6543612251060553e-24,1.846183295128867e-08,-8.65924648165962e-24,3.7502400118683e-06,1.1871055571062465e-21,-3.7502400118683e-07,-2.451477559700205e-23,-8.65924648165962e-24,6.147934605849059e-09,32.0,63.0,0.01170874573290348,-0.0007634445792064071,-0.00039934023516252637,1.3262881111586466e-05,8.455086572212167e-06,3.577152028810815e-06,-0.0007634445792064071,0.00010495859169168398,8.455086572212167e-06,-2.652576085893088e-06,-5.454894562717527e-07,-3.4158003342722466e-21,-0.00039934023516252637,8.455086572212167e-06,2.7542402676772326e-05,-8.099752558119247e-21,-2.7274472813587636e-07,-3.51851014102067e-07,1.3262881111586466e-05,-2.652576085893088e-06,-8.099752558119247e-21,8.556697395079027e-08,1.4227506535912076e-22,8.771952143593813e-23,8.455086572212167e-06,-5.454894562717527e-07,-2.7274472813587636e-07,1.4227506535912076e-22,1.7596434531697014e-08,1.8107716744556652e-23,3.577152028810815e-06,-3.4158003342722466e-21,-3.51851014102067e-07,8.771952143593813e-23,1.8107716744556652e-23,5.67501645676316e-09,32.0,64.0,0.011531793512403965,-0.0007516437908634543,-0.0003872104571200907,1.3055648196313996e-05,8.19493016024353e-06,3.414554157643579e-06,-0.0007516437908634543,0.00010332687088521197,8.19493016024353e-06,-2.6111297302122694e-06,-5.287051862978842e-07,-2.214701369205789e-21,-0.0003872104571200907,8.19493016024353e-06,2.6281051759724505e-05,-6.03510974918689e-21,-2.6015649723376555e-07,-3.3044074143617763e-07,1.3055648196313996e-05,-2.6111297302122694e-06,-6.03510974918689e-21,8.422998831747464e-08,1.0587911840678754e-22,6.211955249011241e-23,8.19493016024353e-06,-5.287051862978842e-07,-2.6015649723376555e-07,1.0587911840678754e-22,1.6784291290150577e-08,6.811381620807376e-24,3.414554157643579e-06,-2.214701369205789e-21,-3.3044074143617763e-07,6.211955249011241e-23,6.811381620807376e-24,5.245091028172055e-09,33.0,3.0,0.14370596408843994,-0.012605042196810246,-0.0882352963089943,0.00025464731152169406,0.002673796843737364,0.01515151560306549,-0.012605042196810246,0.0018556909635663033,0.002673796843737364,-4.9286576540907845e-05,-0.00016711230273358524,-2.168404344971009e-19,-0.0882352963089943,0.002673796843737364,0.2397504448890686,-2.964558963710821e-19,-0.002673796843737364,-0.09090909361839294,0.00025464731152169406,-4.9286576540907845e-05,-2.964558963710821e-19,1.5402055169033702e-06,6.4165321000404676e-21,9.812085573233345e-20,0.002673796843737364,-0.00016711230273358524,-0.002673796843737364,6.4165321000404676e-21,0.00016711230273358524,-3.0357660829594124e-18,0.01515151560306549,-2.168404344971009e-19,-0.09090909361839294,9.812085573233345e-20,-3.0357660829594124e-18,0.04545454680919647,33.0,4.0,0.1202571913599968,-0.00985485129058361,-0.057486630976200104,0.00019098549091722816,0.0016042781062424183,0.007575757801532745,-0.00985485129058361,0.0014168351190164685,0.0016042781062424183,-3.696493149618618e-05,-0.00010026738164015114,1.3010426069826053e-18,-0.057486630976200104,0.0016042781062424183,0.09135472029447556,4.5789283972688956e-20,-0.0010695187374949455,-0.022727273404598236,0.00019098549091722816,-3.696493149618618e-05,4.5789283972688956e-20,1.1551541092558182e-06,-1.2906967264524034e-22,-1.1391480647269941e-20,0.0016042781062424183,-0.00010026738164015114,-0.0010695187374949455,-1.2906967264524034e-22,6.68449210934341e-05,-5.421010862427522e-19,0.007575757801532745,1.3010426069826053e-18,-0.022727273404598236,-1.1391480647269941e-20,-5.421010862427522e-19,0.007575757801532745,33.0,5.0,0.10343773663043976,-0.008097784593701363,-0.040488921105861664,0.00015278838691301644,0.0010695187374949455,0.0043290043249726295,-0.008097784593701363,0.0011468370212242007,0.0010695187374949455,-2.9571945560746826e-05,-6.68449210934341e-05,1.6534083130403943e-18,-0.040488921105861664,0.0010695187374949455,0.04621848836541176,9.424774407276729e-20,-0.0005347593687474728,-0.008658008649945259,0.00015278838691301644,-2.9571945560746826e-05,9.424774407276729e-20,9.241232987733383e-07,2.505287737353037e-21,-3.271584948765321e-20,0.0010695187374949455,-6.68449210934341e-05,-0.0005347593687474728,2.505287737353037e-21,3.342246054671705e-05,-2.168404344971009e-19,0.0043290043249726295,1.6534083130403943e-18,-0.008658008649945259,-3.271584948765321e-20,-2.168404344971009e-19,0.0021645021624863148,33.0,6.0,0.09076054394245148,-0.0068754772655665874,-0.030080214142799377,0.00012732365576084703,0.0007639419636689126,0.0027056278195232153,-0.0068754772655665874,0.0009636552422307432,0.0007639419636689126,-2.4643288270453922e-05,-4.774637272930704e-05,-8.131516293641283e-19,-0.030080214142799377,0.0007639419636689126,0.02691303752362728,-1.267043855294845e-19,-0.0003055767738260329,-0.004058441612869501,0.00012732365576084703,-2.4643288270453922e-05,-1.267043855294845e-19,7.701027584516851e-07,3.538698855341026e-21,1.232530374315052e-20,0.0007639419636689126,-4.774637272930704e-05,-0.0003055767738260329,3.538698855341026e-21,1.9098548364127055e-05,1.3552527156068805e-19,0.0027056278195232153,-8.131516293641283e-19,-0.004058441612869501,1.232530374315052e-20,1.3552527156068805e-19,0.000811688310932368,33.0,7.0,0.08085658401250839,-0.005975117441266775,-0.02323656715452671,0.00010913456208072603,0.0005729564581997693,0.001803751802071929,-0.005975117441266775,0.0008311059209518135,0.0005729564581997693,-2.1122817997820675e-05,-3.580977863748558e-05,-2.710505431213761e-20,-0.02323656715452671,0.0005729564581997693,0.017125030979514122,-2.960224472677558e-20,-0.00019098549091722816,-0.0021645021624863148,0.00010913456208072603,-2.1122817997820675e-05,-2.960224472677558e-20,6.600880624318961e-07,-2.6696335404966567e-22,5.337740755048568e-21,0.0005729564581997693,-3.580977863748558e-05,-0.00019098549091722816,-2.6696335404966567e-22,1.193659318232676e-05,-5.421010862427522e-20,0.001803751802071929,-2.710505431213761e-20,-0.0021645021624863148,5.337740755048568e-21,-5.421010862427522e-20,0.0003607503604143858,33.0,8.0,0.07290340214967728,-0.005283931735903025,-0.018493760377168655,9.549274545861408e-05,0.000445632787887007,0.0012626262614503503,-0.005283931735903025,0.000730699161067605,0.000445632787887007,-1.848246574809309e-05,-2.7852049242937937e-05,5.55653613398821e-19,-0.018493760377168655,0.000445632787887007,0.011597063392400742,7.238042971105812e-20,-0.00012732365576084703,-0.0012626262614503503,9.549274545861408e-05,-1.848246574809309e-05,7.238042971105812e-20,5.775770546279091e-07,-2.681016992685613e-23,-9.174853094303769e-21,0.000445632787887007,-2.7852049242937937e-05,-0.00012732365576084703,-2.681016992685613e-23,7.95772848505294e-06,-6.098637220230962e-20,0.0012626262614503503,5.55653613398821e-19,-0.0012626262614503503,-9.174853094303769e-21,-6.098637220230962e-20,0.0001803751802071929,33.0,9.0,0.0663754940032959,-0.004736440256237984,-0.015070491470396519,8.488243474857882e-05,0.0003565062361303717,0.0009182736393995583,-0.004736440256237984,0.0006519861053675413,0.0003565062361303717,-1.6428859453299083e-05,-2.228163975814823e-05,-2.574980159653073e-19,-0.015070491470396519,0.0003565062361303717,0.008227809332311153,-3.949046193563677e-20,-8.912655903259292e-05,-0.0007870916742831469,8.488243474857882e-05,-1.6428859453299083e-05,-3.949046193563677e-20,5.134018579155963e-07,8.77515542373999e-22,3.168111035704116e-21,0.0003565062361303717,-2.228163975814823e-05,-8.912655903259292e-05,8.77515542373999e-22,5.570409939537058e-06,3.3881317890172014e-20,0.0009182736393995583,-2.574980159653073e-19,-0.0007870916742831469,3.168111035704116e-21,3.3881317890172014e-20,9.838645928539336e-05,33.0,10.0,0.060920897871255875,-0.004291964694857597,-0.012518230825662613,7.639419345650822e-05,0.0002916869125328958,0.000688705244101584,-0.004291964694857597,0.0005886105354875326,0.0002916869125328958,-1.4785972780373413e-05,-1.8230432033305988e-05,-3.3881317890172014e-19,-0.012518230825662613,0.0002916869125328958,0.006053179036825895,-7.020886088325622e-20,-6.481931632151827e-05,-0.0005165289039723575,7.639419345650822e-05,-1.4785972780373413e-05,-7.020886088325622e-20,4.6206164938666916e-07,1.8856129343287872e-21,3.6509801416626466e-21,0.0002916869125328958,-1.8230432033305988e-05,-6.481931632151827e-05,1.8856129343287872e-21,4.051207270094892e-06,3.8963515573697816e-20,0.000688705244101584,-3.3881317890172014e-19,-0.0005165289039723575,3.6509801416626466e-21,3.8963515573697816e-20,5.7392102462472394e-05,33.0,11.0,0.05629486218094826,-0.0039238836616277695,-0.01056430209428072,6.94492700858973e-05,0.00024307244166266173,0.0005297732423059642,-0.0039238836616277695,0.0005364816170185804,0.00024307244166266173,-1.344179327134043e-05,-1.5192027603916358e-05,1.4230153513872246e-19,-0.01056430209428072,0.00024307244166266173,0.004585135728120804,2.7446822076789794e-21,-4.86144854221493e-05,-0.0003531821712385863,6.94492700858973e-05,-1.344179327134043e-05,2.7446822076789794e-21,4.2005603972938843e-07,2.9741728511951214e-23,-4.534608762828708e-22,0.00024307244166266173,-1.5192027603916358e-05,-4.86144854221493e-05,2.9741728511951214e-23,3.0384053388843313e-06,-2.668153783851046e-20,0.0005297732423059642,1.4230153513872246e-19,-0.0003531821712385863,-4.534608762828708e-22,-2.668153783851046e-20,3.5318218579050153e-05,33.0,12.0,0.05232186242938042,-0.003614033106714487,-0.009035082533955574,6.366182788042352e-05,0.0002056766825262457,0.0004162504046689719,-0.003614033106714487,0.0004928460111841559,0.0002056766825262457,-1.2321644135226961e-05,-1.2854792657890357e-05,2.371692252312041e-20,-0.009035082533955574,0.0002056766825262457,0.003557494143024087,-1.7167165876844888e-20,-3.739575913641602e-05,-0.00024975024280138314,6.366182788042352e-05,-1.2321644135226961e-05,-1.7167165876844888e-20,3.8505137922584254e-07,7.806235312962726e-22,2.5721164486594077e-22,0.0002056766825262457,-1.2854792657890357e-05,-3.739575913641602e-05,7.806235312962726e-22,2.337234946026001e-06,-8.893845946170154e-21,0.0004162504046689719,2.371692252312041e-20,-0.00024975024280138314,2.5721164486594077e-22,-8.893845946170154e-21,2.2704567527398467e-05,33.0,13.0,0.0488726943731308,-0.003349591512233019,-0.007815713994204998,5.8764766436070204e-05,0.0001762942993082106,0.0003330003237351775,-0.003349591512233019,0.00045578237040899694,0.0001762942993082106,-1.1373825145710725e-05,-1.1018393706763163e-05,-5.421010862427522e-20,-0.007815713994204998,0.0001762942993082106,0.002816256834194064,5.791325728618161e-21,-2.9382383218035102e-05,-0.00018163654021918774,5.8764766436070204e-05,-1.1373825145710725e-05,5.791325728618161e-21,3.5543203580346017e-07,-3.8140801251776434e-22,1.4472084970966799e-22,0.0001762942993082106,-1.1018393706763163e-05,-2.9382383218035102e-05,-3.8140801251776434e-22,1.8363989511271939e-06,7.411538288475128e-21,0.0003330003237351775,-5.421010862427522e-20,-0.00018163654021918774,1.4472084970966799e-22,7.411538288475128e-21,1.5136378351598978e-05,33.0,14.0,0.045850157737731934,-0.003121248446404934,-0.006827731151133776,5.4567281040363014e-05,0.00015278838691301644,0.00027056277031078935,-0.003121248446404934,0.00042390855378471315,0.00015278838691301644,-1.0561408998910338e-05,-9.549274182063527e-06,2.371692252312041e-20,-0.006827731151133776,0.00015278838691301644,0.0022679525427520275,1.5404616859317712e-20,-2.350590511923656e-05,-0.00013528138515539467,5.4567281040363014e-05,-1.0561408998910338e-05,1.5404616859317712e-20,3.3004403121594805e-07,-6.418130041933632e-23,-1.0998480999014889e-21,0.00015278838691301644,-9.549274182063527e-06,-2.350590511923656e-05,-6.418130041933632e-23,1.469119069952285e-06,3.5998900258307764e-21,0.00027056277031078935,2.371692252312041e-20,-0.00013528138515539467,-1.0998480999014889e-21,3.5998900258307764e-21,1.0406260116724297e-05,33.0,15.0,0.043179694563150406,-0.0029220778960734606,-0.006016042549163103,5.092946230433881e-05,0.0001336898421868682,0.0002228163939435035,-0.0029220778960734606,0.00039620502502657473,0.0001336898421868682,-9.85731549008051e-06,-8.355615136679262e-06,-1.5415999640028266e-19,-0.006016042549163103,0.0001336898421868682,0.001853538560681045,-3.853009878211417e-20,-1.9098548364127055e-05,-0.00010283834126312286,5.092946230433881e-05,-9.85731549008051e-06,-3.853009878211417e-20,3.080411090650159e-07,3.094497615741865e-22,2.1962963986280925e-21,0.0001336898421868682,-8.355615136679262e-06,-1.9098548364127055e-05,3.094497615741865e-22,1.193659272757941e-06,1.0164395367051604e-20,0.0002228163939435035,-1.5415999640028266e-19,-0.00010283834126312286,2.1962963986280925e-21,1.0164395367051604e-20,7.3455958045087755e-06,33.0,16.0,0.040803175419569016,-0.002746820682659745,-0.0053410399705171585,4.774637272930704e-05,0.0001179616228910163,0.00018568032828625292,-0.002746820682659745,0.00037190300645306706,0.0001179616228910163,-9.241232874046545e-06,-7.372601430688519e-06,-7.115076756936123e-20,-0.0053410399705171585,0.0001179616228910163,0.001534437295049429,-1.073830119241785e-20,-1.572821565787308e-05,-7.95772866695188e-05,4.774637272930704e-05,-9.241232874046545e-06,-1.073830119241785e-20,2.8878852731395455e-07,4.458657992180498e-22,1.6928316364254046e-22,0.0001179616228910163,-7.372601430688519e-06,-1.572821565787308e-05,4.458657992180498e-22,9.830134786170674e-07,8.152692117322641e-21,0.00018568032828625292,-7.115076756936123e-20,-7.95772866695188e-05,1.6928316364254046e-22,8.152692117322641e-21,5.305152171786176e-06,33.0,17.0,0.03867459297180176,-0.0025914108846336603,-0.0047736517153680325,4.493776214076206e-05,0.00010485477832844481,0.00015636238094884902,-0.0025914108846336603,0.0003504118649289012,0.00010485477832844481,-8.697631528775673e-06,-6.5534236455278005e-06,-3.5575383784680614e-20,-0.0047736517153680325,0.00010485477832844481,0.0012847009347751737,-1.0655896757014915e-21,-1.3106847291055601e-05,-6.254495383473113e-05,4.493776214076206e-05,-8.697631528775673e-06,-1.0655896757014915e-21,2.718009852742398e-07,-2.432106922400322e-23,8.875954303160702e-23,0.00010485477832844481,-6.5534236455278005e-06,-1.3106847291055601e-05,-2.432106922400322e-23,8.191779556909751e-07,3.8116482626443515e-21,0.00015636238094884902,-3.5575383784680614e-20,-6.254495383473113e-05,8.875954303160702e-23,3.8116482626443515e-21,3.909059614670696e-06,33.0,18.0,0.03675707429647446,-0.0024526556953787804,-0.004292147699743509,4.244121737428941e-05,9.38174343900755e-05,0.00013290802598930895,-0.0024526556953787804,0.00033127027563750744,9.38174343900755e-05,-8.214429726649541e-06,-5.863589649379719e-06,1.1858461261560205e-20,-0.004292147699743509,9.38174343900755e-05,0.0010864312062039971,4.33431533816241e-21,-1.1037344847864006e-05,-4.984050974599086e-05,4.244121737428941e-05,-8.214429726649541e-06,4.33431533816241e-21,2.5670092895779817e-07,2.132129972969985e-22,-4.0128344506634188e-22,9.38174343900755e-05,-5.863589649379719e-06,-1.1037344847864006e-05,2.132129972969985e-22,6.898340529915004e-07,2.6469779601696886e-22,0.00013290802598930895,1.1858461261560205e-20,-4.984050974599086e-05,-4.0128344506634188e-22,2.6469779601696886e-22,2.9317948246898595e-06,33.0,19.0,0.03502070531249046,-0.002328012604266405,-0.0038800209295004606,4.020746928290464e-05,8.443569095106795e-05,0.00011392116721253842,-0.002328012604266405,0.00031411275267601013,8.443569095106795e-05,-7.78209141572006e-06,-5.277230684441747e-06,1.2705494208814505e-20,-0.0038800209295004606,8.443569095106795e-05,0.0009270055452361703,4.6600492083042755e-21,-9.38174343900755e-06,-4.020746928290464e-05,4.020746928290464e-05,-7.78209141572006e-06,4.6600492083042755e-21,2.431903567412519e-07,-3.679460648825661e-24,-2.3659248687769535e-22,8.443569095106795e-05,-5.277230684441747e-06,-9.38174343900755e-06,-3.679460648825661e-24,5.863589649379719e-07,-5.293955920339377e-23,0.00011392116721253842,1.2705494208814505e-20,-4.020746928290464e-05,-2.3659248687769535e-22,-5.293955920339377e-23,2.233748318758444e-06,33.0,20.0,0.033440981060266495,-0.002215431537479162,-0.00352455023676157,3.819709672825411e-05,7.639419345650822e-05,9.838645928539336e-05,-0.002215431537479162,0.00029864584212191403,7.639419345650822e-05,-7.3929863901867066e-06,-4.774637091031764e-06,-2.323775391949206e-20,-0.00352455023676157,7.639419345650822e-05,0.0007973466417752206,-1.847809528255085e-20,-8.041493856580928e-06,-3.2795487641124055e-05,3.819709672825411e-05,-7.3929863901867066e-06,-1.847809528255085e-20,2.3103082469333458e-07,4.235164736271502e-22,6.15885897785586e-22,7.639419345650822e-05,-4.774637091031764e-06,-8.041493856580928e-06,4.235164736271502e-22,5.02593366036308e-07,3.7151645407276187e-22,9.838645928539336e-05,-2.323775391949206e-20,-3.2795487641124055e-05,6.15885897785586e-22,3.7151645407276187e-22,1.7260782669836772e-06,33.0,21.0,0.03199760988354683,-0.002113241935148835,-0.0032158030662685633,3.637818736024201e-05,6.94492700858973e-05,8.555344538763165e-05,-0.002113241935148835,0.0002846313000191003,6.94492700858973e-05,-7.040939635771792e-06,-4.340579380368581e-06,-1.4678801414719376e-20,-0.0032158030662685633,6.94492700858973e-05,0.0006908109644427896,-1.63851667740783e-20,-6.944926553842379e-06,-2.701687662920449e-05,3.637818736024201e-05,-7.040939635771792e-06,-1.63851667740783e-20,2.200293636178685e-07,3.5734202462290796e-22,5.333847291030083e-22,6.94492700858973e-05,-4.340579380368581e-06,-6.944926553842379e-06,3.5734202462290796e-22,4.340579096151487e-07,-2.389509916576889e-22,8.555344538763165e-05,-1.4678801414719376e-20,-2.701687662920449e-05,5.333847291030083e-22,-2.389509916576889e-22,1.3508438314602245e-06,33.0,22.0,0.0306736771017313,-0.0020200677681714296,-0.002945932326838374,3.472463504294865e-05,6.341020343825221e-05,7.48592647141777e-05,-0.0020200677681714296,0.00027187366504222155,6.341020343825221e-05,-6.720896635670215e-06,-3.963137714890763e-06,-1.7569285514470764e-20,-0.002945932326838374,6.341020343825221e-05,0.000602459826041013,-1.4212009824123778e-20,-6.039066647645086e-06,-2.245777977805119e-05,3.472463504294865e-05,-6.720896635670215e-06,-1.4212009824123778e-20,2.1002801986469422e-07,2.779326858178173e-22,4.650041453803378e-22,6.341020343825221e-05,-3.963137714890763e-06,-6.039066647645086e-06,2.779326858178173e-22,3.774416654778179e-07,2.561097387099791e-22,7.48592647141777e-05,-1.7569285514470764e-20,-2.245777977805119e-05,4.650041453803378e-22,2.561097387099791e-22,1.0694180900827632e-06,33.0,23.0,0.029454944655299187,-0.001934765954501927,-0.0027086723130196333,3.321486656204797e-05,5.8126017393078655e-05,6.587615644093603e-05,-0.001934765954501927,0.00026021103258244693,5.8126017393078655e-05,-6.428683718695538e-06,-3.632876087067416e-06,-1.5418964888653813e-20,-0.0027086723130196333,5.8126017393078655e-05,0.000528569333255291,-1.320773662788911e-20,-5.28418331668945e-06,-1.8821758203557692e-05,3.321486656204797e-05,-6.428683718695538e-06,-1.320773662788911e-20,2.0089636620923557e-07,2.6469779601696886e-22,4.078441677122371e-22,5.8126017393078655e-05,-3.632876087067416e-06,-5.28418331668945e-06,2.6469779601696886e-22,3.3026145729309064e-07,2.1526830181034856e-22,6.587615644093603e-05,-1.5418964888653813e-20,-1.8821758203557692e-05,4.078441677122371e-22,2.1526830181034856e-22,8.555344379601593e-07,33.0,24.0,0.02832935005426407,-0.0018563788617029786,-0.0024989715311676264,3.183091394021176e-05,5.347593469195999e-05,5.827505810884759e-05,-0.0018563788617029786,0.000249508157139644,5.347593469195999e-05,-6.160822067613481e-06,-3.3422459182474995e-06,3.5682994812494935e-20,-0.0024989715311676264,5.347593469195999e-05,0.0004662953142542392,3.19801111068785e-20,-4.65008133687661e-06,-1.589319799677469e-05,3.183091394021176e-05,-6.160822067613481e-06,3.19801111068785e-20,1.9252568961292127e-07,-2.2499312661442353e-22,-1.1326469421002102e-21,5.347593469195999e-05,-3.3422459182474995e-06,-4.65008133687661e-06,-2.2499312661442353e-22,2.9063008355478814e-07,4.884412470506647e-23,5.827505810884759e-05,3.5682994812494935e-20,-1.589319799677469e-05,-1.1326469421002102e-21,4.884412470506647e-23,6.910086085554212e-07,33.0,25.0,0.02728661336004734,-0.0017840982181951404,-0.0023127200547605753,3.0557675927411765e-05,4.936240293318406e-05,5.18000524607487e-05,-0.0017840982181951404,0.000239651242736727,4.936240293318406e-05,-5.914389021199895e-06,-3.0851501833240036e-06,-8.831418851522975e-21,-0.0023127200547605753,4.936240293318406e-05,0.0004134399350732565,-1.0404989410824462e-20,-4.113533577765338e-06,-1.3513056728697848e-05,3.0557675927411765e-05,-5.914389021199895e-06,-1.0404989410824462e-20,1.8482465691249672e-07,1.7205356741102976e-22,3.188388471769994e-22,4.936240293318406e-05,-3.0851501833240036e-06,-4.113533577765338e-06,1.7205356741102976e-22,2.5709584861033363e-07,-1.142854095394399e-22,5.18000524607487e-05,-8.831418851522975e-21,-1.3513056728697848e-05,3.188388471769994e-22,-1.142854095394399e-22,5.630440682580229e-07,33.0,26.0,0.026317909359931946,-0.0017172370571643114,-0.0021465462632477283,2.9382383218035102e-05,4.570592864183709e-05,4.625004658009857e-05,-0.0017172370571643114,0.00023054375196807086,4.570592864183709e-05,-5.686912572855363e-06,-2.856620540114818e-06,-1.079967007749233e-20,-0.0021465462632477283,4.570592864183709e-05,0.0003682863898575306,-9.412610974863078e-21,-3.6564742913469672e-06,-1.1562511645024642e-05,2.9382383218035102e-05,-5.686912572855363e-06,-9.412610974863078e-21,1.7771601790173008e-07,1.7286098232474157e-22,2.690432205361607e-22,4.570592864183709e-05,-2.856620540114818e-06,-3.6564742913469672e-06,1.7286098232474157e-22,2.2852964320918545e-07,1.4558378780933287e-22,4.625004658009857e-05,-1.079967007749233e-20,-1.1562511645024642e-05,2.690432205361607e-22,1.4558378780933287e-22,4.6250045215856517e-07,33.0,27.0,0.02541562356054783,-0.0016552074812352657,-0.001997664337977767,2.829414552252274e-05,4.244121737428941e-05,4.14655587519519e-05,-0.0016552074812352657,0.0002221033355453983,4.244121737428941e-05,-5.476286332850577e-06,-2.652576085893088e-06,1.9693516023662483e-20,-0.001997664337977767,4.244121737428941e-05,0.00032948044827207923,2.428418263081139e-20,-3.264709221184603e-06,-9.951733773050364e-06,2.829414552252274e-05,-5.476286332850577e-06,2.428418263081139e-20,1.7113394790158054e-07,-3.001806585596141e-22,-6.871651982361454e-22,4.244121737428941e-05,-2.652576085893088e-06,-3.264709221184603e-06,-3.001806585596141e-22,2.0404432632403768e-07,1.5881867761018131e-22,4.14655587519519e-05,1.9693516023662483e-20,-9.951733773050364e-06,-6.871651982361454e-22,1.5881867761018131e-22,3.8275899783002387e-07,33.0,28.0,0.024573152884840965,-0.0015975042479112744,-0.0018637549364939332,2.7283640520181507e-05,3.9514237869298086e-05,3.731900142156519e-05,-0.0015975042479112744,0.00021425928571261466,3.9514237869298086e-05,-5.280704499455169e-06,-2.4696398668311303e-06,-8.682087709356578e-21,-0.0018637549364939332,3.9514237869298086e-05,0.0002959440171252936,-9.903853668936574e-21,-2.9269806418597e-06,-8.612077181169298e-06,2.7283640520181507e-05,-5.280704499455169e-06,-9.903853668936574e-21,1.6502201560797403e-07,2.3030116338637674e-22,2.286487206709922e-22,3.9514237869298086e-05,-2.4696398668311303e-06,-2.9269806418597e-06,2.3030116338637674e-22,1.8293629011623125e-07,1.0587911840678754e-22,3.731900142156519e-05,-8.682087709356578e-21,-8.612077181169298e-06,2.286487206709922e-22,1.0587911840678754e-22,3.189658457358746e-07,33.0,29.0,0.023784738034009933,-0.0015436895191669464,-0.001742875319905579,2.6342824639868923e-05,3.6879955587210134e-05,3.370748527231626e-05,-0.0015436895191669464,0.00020695051352959126,3.6879955587210134e-05,-5.098611381981755e-06,-2.3049972242006334e-06,1.4823076576950256e-20,-0.001742875319905579,3.6879955587210134e-05,0.0002668116067070514,1.6282588300186056e-20,-2.6342825094616273e-06,-7.4905524343193974e-06,2.6342824639868923e-05,-5.098611381981755e-06,1.6282588300186056e-20,1.5933160568692983e-07,-5.488202505286102e-23,-5.001358954004e-22,3.6879955587210134e-05,-2.3049972242006334e-06,-2.6342825094616273e-06,-5.488202505286102e-23,1.646426568413517e-07,6.617444900424221e-23,3.370748527231626e-05,1.4823076576950256e-20,-7.4905524343193974e-06,-5.001358954004e-22,6.617444900424221e-23,2.6751973791760975e-07,33.0,30.0,0.023045342415571213,-0.0014933833153918386,-0.001633387990295887,2.5464731152169406e-05,3.4500604670029134e-05,3.054740955121815e-05,-0.0014933833153918386,0.00020012403547298163,3.4500604670029134e-05,-4.928657745040255e-06,-2.156287791876821e-06,-6.988021814847978e-21,-0.001633387990295887,3.4500604670029134e-05,0.00024138296430464834,-7.893012334943542e-21,-2.3793520540493773e-06,-6.545873475261033e-06,2.5464731152169406e-05,-4.928657745040255e-06,-7.893012334943542e-21,1.5402055453250796e-07,1.5721207717972096e-22,1.8426585366499658e-22,3.4500604670029134e-05,-2.156287791876821e-06,-2.3793520540493773e-06,1.5721207717972096e-22,1.4870950337808608e-07,7.279189390466644e-23,3.054740955121815e-05,-6.988021814847978e-21,-6.545873475261033e-06,1.8426585366499658e-22,7.279189390466644e-23,2.257197735389127e-07,33.0,31.0,0.022350529208779335,-0.0014462530380114913,-0.0015339046949520707,2.4643288270453922e-05,3.234431642340496e-05,2.777037298073992e-05,-0.0014462530380114913,0.00019373363466002047,3.234431642340496e-05,-4.769668521475978e-06,-2.02151977646281e-06,-6.3527471044072525e-21,-0.0015339046949520707,3.234431642340496e-05,0.00021908739290665835,-7.365080464852911e-21,-2.156287791876821e-06,-5.745594080508454e-06,2.4643288270453922e-05,-4.769668521475978e-06,-7.365080464852911e-21,1.4905214129612432e-07,1.386625620406389e-22,1.6668037703919253e-22,3.234431642340496e-05,-2.02151977646281e-06,-2.156287791876821e-06,1.386625620406389e-22,1.347679869923013e-07,5.955700410381799e-23,2.777037298073992e-05,-6.3527471044072525e-21,-5.745594080508454e-06,1.6668037703919253e-22,5.955700410381799e-23,1.9151980268361513e-07,33.0,32.0,0.021696384996175766,-0.0014020070666447282,-0.0014432425377890468,2.387318636465352e-05,3.0384055207832716e-05,2.5320045097032562e-05,-0.0014020070666447282,0.000187738798558712,3.0384055207832716e-05,-4.620616437023273e-06,-1.8990034504895448e-06,-5.717472393966527e-21,-0.0014432425377890468,3.0384055207832716e-05,0.00019945661188103259,-6.888244769045903e-21,-1.9602616703195963e-06,-5.064009201305453e-06,2.387318636465352e-05,-4.620616437023273e-06,-6.888244769045903e-21,1.4439426365697727e-07,1.3387219472735344e-22,1.4841605089456597e-22,3.0384055207832716e-05,-1.8990034504895448e-06,-1.9602616703195963e-06,1.3387219472735344e-22,1.2251635439497477e-07,4.632211430296955e-23,2.5320045097032562e-05,-5.717472393966527e-21,-5.064009201305453e-06,1.4841605089456597e-22,4.632211430296955e-23,1.6335512498244498e-07,33.0,33.0,0.021079441532492638,-0.001360388589091599,-0.001360388589091599,2.3149756088969298e-05,2.8596756237675436e-05,2.3149756088969298e-05,-0.001360388589091599,0.0001821039040805772,2.8596756237675436e-05,-4.480597908695927e-06,-1.7872972648547147e-06,-5.293955920339377e-21,-0.001360388589091599,2.8596756237675436e-05,0.0001821039040805772,-6.456133775763227e-21,-1.7872972648547147e-06,-4.480597908695927e-06,2.3149756088969298e-05,-4.480597908695927e-06,-6.456133775763227e-21,1.4001868464674772e-07,1.2292209854351472e-22,1.3899840221609683e-22,2.8596756237675436e-05,-1.7872972648547147e-06,-1.7872972648547147e-06,1.2292209854351472e-22,1.1170607905341967e-07,4.632211430296955e-23,2.3149756088969298e-05,-5.293955920339377e-21,-4.480597908695927e-06,1.3899840221609683e-22,4.632211430296955e-23,1.4001868464674772e-07,33.0,34.0,0.020496612414717674,-0.0013211701298132539,-0.0012844710145145655,2.246888107038103e-05,2.6962656193063594e-05,2.1220608687144704e-05,-0.0013211701298132539,0.00017679747543297708,2.6962656193063594e-05,-4.348815764387837e-06,-1.6851660120664747e-06,1.4293680984916318e-20,-0.0012844710145145655,2.6962656193063594e-05,0.00016670803597662598,2.1236230484293754e-20,-1.6341003856723546e-06,-3.97886424252647e-06,2.246888107038103e-05,-4.348815764387837e-06,2.1236230484293754e-20,1.359004926371199e-07,-3.3389258516802335e-22,-4.40676230421399e-22,2.6962656193063594e-05,-1.6851660120664747e-06,-1.6341003856723546e-06,-3.3389258516802335e-22,1.0213127410452216e-07,1.3234889800848443e-23,2.1220608687144704e-05,1.4293680984916318e-20,-3.97886424252647e-06,-4.40676230421399e-22,1.3234889800848443e-23,1.2057164155976352e-07,33.0,35.0,0.019945144653320312,-0.0012841500574722886,-0.0012147364905104041,2.1826912416145205e-05,2.5464731152169406e-05,1.9500019334373064e-05,-0.0012841500574722886,0.00017179158749058843,2.5464731152169406e-05,-4.2245637814630754e-06,-1.591545697010588e-06,-3.0704944337968387e-21,-0.0012147364905104041,2.5464731152169406e-05,0.00015300062659662217,-5.439820416413224e-21,-1.4979253819547012e-06,-3.5454581848171074e-06,2.1826912416145205e-05,-4.2245637814630754e-06,-5.439820416413224e-21,1.320176181707211e-07,7.972736965675232e-23,1.2109297622890962e-22,2.5464731152169406e-05,-1.591545697010588e-06,-1.4979253819547012e-06,7.972736965675232e-23,9.362033637216882e-08,-3.970466940254533e-23,1.9500019334373064e-05,-3.0704944337968387e-21,-3.5454581848171074e-06,1.2109297622890962e-22,-3.970466940254533e-23,1.042781789806213e-07,33.0,36.0,0.01942257210612297,-0.001249148277565837,-0.0011505313450470567,2.1220608687144704e-05,2.4088260033749975e-05,1.7960544937523082e-05,-0.001249148277565837,0.00016706141468603164,2.4088260033749975e-05,-4.107214863324771e-06,-1.5055162521093735e-06,5.823351512373315e-21,-0.0011505313450470567,2.4088260033749975e-05,0.0001407563395332545,1.0267388239043692e-20,-1.3764719142272952e-06,-3.1695078632765217e-06,2.1220608687144704e-05,-4.107214863324771e-06,1.0267388239043692e-20,1.2835046447889908e-07,-1.6658038734173396e-22,-2.179630001754856e-22,2.4088260033749975e-05,-1.5055162521093735e-06,-1.3764719142272952e-06,-1.6658038734173396e-22,8.602949463920595e-08,6.617444900424221e-23,1.7960544937523082e-05,5.823351512373315e-21,-3.1695078632765217e-06,-2.179630001754856e-22,6.617444900424221e-23,9.055736427399097e-08,33.0,37.0,0.01892668381333351,-0.0012160043697804213,-0.001091285957954824,2.0647079509217292e-05,2.2820457161287777e-05,1.657896427786909e-05,-0.0012160043697804213,0.00016258479445241392,2.2820457161287777e-05,-3.99620876123663e-06,-1.426278572580486e-06,-3.8116482626443515e-21,-0.001091285957954824,2.2820457161287777e-05,0.000129784966702573,-4.740112456001809e-21,-1.2678030998358736e-06,-2.8421081879059784e-06,2.0647079509217292e-05,-3.99620876123663e-06,-4.740112456001809e-21,1.248815237886447e-07,7.277352291190565e-23,9.883871153253278e-23,2.2820457161287777e-05,-1.426278572580486e-06,-1.2678030998358736e-06,7.277352291190565e-23,7.92376937397421e-08,3.3087224502121107e-23,1.657896427786909e-05,-3.8116482626443515e-21,-2.8421081879059784e-06,9.883871153253278e-23,3.3087224502121107e-23,7.894744413761146e-08,33.0,38.0,0.018455486744642258,-0.0011845739791169763,-0.0010365021880716085,2.010373464145232e-05,2.1650175767717883e-05,1.5335541320382617e-05,-0.0011845739791169763,0.00015834186342544854,2.1650175767717883e-05,-3.89104570786003e-06,-1.3531359854823677e-06,-3.441071348220595e-21,-0.0010365021880716085,2.1650175767717883e-05,0.00011992523650405928,-3.3458916575564033e-21,-1.170279801954166e-06,-2.555923629188328e-06,2.010373464145232e-05,-3.89104570786003e-06,-3.3458916575564033e-21,1.2159517837062594e-07,2.872085572589565e-24,8.950776182299105e-23,2.1650175767717883e-05,-1.3531359854823677e-06,-1.170279801954166e-06,2.872085572589565e-24,7.314248762213538e-08,2.9778502051908996e-23,1.5335541320382617e-05,-3.441071348220595e-21,-2.555923629188328e-06,8.950776182299105e-23,2.9778502051908996e-23,6.907901450858844e-08,33.0,39.0,0.018007179722189903,-0.0011547276517376304,-0.000985743128694594,1.9588254872360267e-05,2.056766788882669e-05,1.4213428585208021e-05,-0.0011547276517376304,0.0001543147664051503,2.056766788882669e-05,-3.7912750485702418e-06,-1.2854792430516682e-06,-3.3351922298138076e-21,-0.000985743128694594,2.056766788882669e-05,0.00011103980796178803,-3.19992174442207e-21,-1.0825087883858941e-06,-2.3048803541314555e-06,1.9588254872360267e-05,-3.7912750485702418e-06,-3.19992174442207e-21,1.1847734526782006e-07,-1.8917150747755375e-24,8.627388649546631e-23,2.056766788882669e-05,-1.2854792430516682e-06,-1.0825087883858941e-06,-1.8917150747755375e-24,6.765679927411838e-08,2.6469779601696886e-23,1.4213428585208021e-05,-3.3351922298138076e-21,-2.3048803541314555e-06,8.627388649546631e-23,2.6469779601696886e-23,6.065474877914312e-08,33.0,40.0,0.01758013665676117,-0.0011263485066592693,-0.0009386237943544984,1.9098548364127055e-05,1.95643660845235e-05,1.319818420597585e-05,-0.0011263485066592693,0.00015048746718093753,1.95643660845235e-05,-3.6964931950933533e-06,-1.2227728802827187e-06,-3.0704944337968387e-21,-0.0009386237943544984,1.95643660845235e-05,0.00010301121074007824,-4.760728963417413e-21,-1.0033008948084898e-06,-2.083923845930258e-06,1.9098548364127055e-05,-3.6964931950933533e-06,-4.760728963417413e-21,1.1551541234666729e-07,1.0592518788365245e-22,7.81118898079428e-23,1.95643660845235e-05,-1.2227728802827187e-06,-1.0033008948084898e-06,1.0592518788365245e-22,6.270630592553061e-08,2.6469779601696886e-23,1.319818420597585e-05,-3.0704944337968387e-21,-2.083923845930258e-06,7.81118898079428e-23,2.6469779601696886e-23,5.343394349210939e-08,33.0,41.0,0.017172876745462418,-0.001099331071600318,-0.0008948043687269092,1.863273064373061e-05,1.863273064373061e-05,1.2277380847081076e-05,-0.001099331071600318,0.00014684544294141233,1.863273064373061e-05,-3.606334985306603e-06,-1.1645456652331632e-06,-1.852884572118782e-21,-0.0008948043687269092,1.863273064373061e-05,9.573857096256688e-05,-4.678584435594642e-21,-9.316365208178468e-07,-1.8888277963924338e-06,1.863273064373061e-05,-3.606334985306603e-06,-4.678584435594642e-21,1.1269796829083134e-07,1.0508453352683825e-22,7.410589635904945e-23,1.863273064373061e-05,-1.1645456652331632e-06,-9.316365208178468e-07,1.0508453352683825e-22,5.822728255111542e-08,-2.9778502051908996e-23,1.2277380847081076e-05,-1.852884572118782e-21,-1.8888277963924338e-06,7.410589635904945e-23,-2.9778502051908996e-23,4.7220694909810845e-08,33.0,42.0,0.01678406074643135,-0.0010735795367509127,-0.0008539837435819209,1.8189093680121005e-05,1.7766091332305223e-05,1.1440286471042782e-05,-0.0010735795367509127,0.0001433755678590387,1.7766091332305223e-05,-3.520469817885896e-06,-1.1103807082690764e-06,-2.276401045745932e-21,-0.0008539837435819209,1.7766091332305223e-05,8.913493365980685e-05,-3.3601005444505972e-21,-8.666386293043615e-07,-1.7160429024443147e-06,1.8189093680121005e-05,-3.520469817885896e-06,-3.3601005444505972e-21,1.1001468180893426e-07,3.425775840139339e-23,6.858478510115243e-23,1.7766091332305223e-05,-1.1103807082690764e-06,-8.666386293043615e-07,3.425775840139339e-23,5.4164914331522596e-08,3.308722450212111e-24,1.1440286471042782e-05,-2.276401045745932e-21,-1.7160429024443147e-06,6.858478510115243e-23,3.308722450212111e-24,4.185470459106e-08,33.0,43.0,0.016412459313869476,-0.0010490069398656487,-0.0008158942800946534,1.7766091332305223e-05,1.6958541891654022e-05,1.0677600585040636e-05,-0.0010490069398656487,0.00014006589481141418,1.6958541891654022e-05,-3.43859846907435e-06,-1.0599088682283764e-06,-2.064642808932357e-21,-0.0008158942800946534,1.6958541891654022e-05,8.312508725794032e-05,-3.1462864730091438e-21,-8.075496111814573e-07,-1.5625756759618525e-06,1.7766091332305223e-05,-3.43859846907435e-06,-3.1462864730091438e-21,1.0745620215857343e-07,2.8758312419397354e-23,6.395603961012865e-23,1.6958541891654022e-05,-1.0599088682283764e-06,-8.075496111814573e-07,2.8758312419397354e-23,5.047185069884108e-08,3.308722450212111e-24,1.0677600585040636e-05,-2.064642808932357e-21,-1.5625756759618525e-06,6.395603961012865e-23,3.308722450212111e-24,3.720418462194175e-08,33.0,44.0,0.016056954860687256,-0.0010255342349410057,-0.0007802977343089879,1.7362317521474324e-05,1.6204829080379568e-05,9.981235052691773e-06,-0.0010255342349410057,0.00013690559717360884,1.6204829080379568e-05,-3.3604483178351074e-06,-1.012801817523723e-06,-1.9058241313221758e-21,-0.0007802977343089879,1.6204829080379568e-05,7.764375186525285e-05,-3.74802765300201e-21,-7.537129818047106e-07,-1.4258907867770176e-06,1.7362317521474324e-05,-3.3604483178351074e-06,-3.74802765300201e-21,1.0501400993234711e-07,7.371457717384914e-23,5.973475024298239e-23,1.6204829080379568e-05,-1.012801817523723e-06,-7.537129818047106e-07,7.371457717384914e-23,4.710706136279441e-08,0.0,9.981235052691773e-06,-1.9058241313221758e-21,-1.4258907867770176e-06,5.973475024298239e-23,0.0,3.316025143362822e-08,33.0,45.0,0.01571652665734291,-0.0010030890116468072,-0.0007469811826013029,1.6976488041109405e-05,1.5500270819757134e-05,9.344134923594538e-06,-0.0010030890116468072,0.0001338847796432674,1.5500270819757134e-05,-3.2857717542356113e-06,-9.687669262348209e-07,-1.7999450129153882e-21,-0.0007469811826013029,1.5500270819757134e-05,7.26340658729896e-05,-3.536603438828367e-21,-7.045578058750834e-07,-1.3038328461334459e-06,1.6976488041109405e-05,-3.2857717542356113e-06,-3.536603438828367e-21,1.0268036731986285e-07,6.737583367579588e-23,5.587705002249612e-23,1.5500270819757134e-05,-9.687669262348209e-07,-7.045578058750834e-07,6.737583367579588e-23,4.4034862867192714e-08,0.0,9.344134923594538e-06,-1.7999450129153882e-21,-1.3038328461334459e-06,5.587705002249612e-23,0.0,2.9632563069981188e-08,33.0,46.0,0.01539023220539093,-0.0009816053789108992,-0.000715753878466785,1.6607433281023987e-05,1.4840685253147967e-05,8.760126547713298e-06,-0.0009816053789108992,0.00013099440548103303,1.4840685253147967e-05,-3.214341859347769e-06,-9.27542828321748e-07,-1.641126335305207e-21,-0.000715753878466785,1.4840685253147967e-05,6.804635631851852e-05,-3.3427719588008566e-21,-6.595860213565174e-07,-1.1945627420573146e-06,1.6607433281023987e-05,-3.214341859347769e-06,-3.3427719588008566e-21,1.0044818310461778e-07,6.170404998500164e-23,5.2344603464119705e-23,1.4840685253147967e-05,-9.27542828321748e-07,-6.595860213565174e-07,6.170404998500164e-23,4.122412633478234e-08,0.0,8.760126547713298e-06,-1.641126335305207e-21,-1.1945627420573146e-06,5.2344603464119705e-23,0.0,2.6545839304503716e-08,33.0,47.0,0.01507721096277237,-0.0009610226843506098,-0.0006864448077976704,1.6254083675448783e-05,1.422232344339136e-05,8.223792065109592e-06,-0.0009610226843506098,0.00012822620919905603,1.422232344339136e-05,-3.1459517231269274e-06,-8.8889521521196e-07,-1.5352472168984194e-21,-0.0006864448077976704,1.422232344339136e-05,6.383709842339158e-05,-3.164644187663174e-21,-6.183618666000257e-07,-1.096505684472504e-06,1.6254083675448783e-05,-3.1459517231269274e-06,-3.164644187663174e-21,9.831099134771648e-08,5.661674911610375e-23,4.910383033683971e-23,1.422232344339136e-05,-8.8889521521196e-07,-6.183618666000257e-07,5.661674911610375e-23,3.8647616662501605e-08,0.0,8.223792065109592e-06,-1.5352472168984194e-21,-1.096505684472504e-06,4.910383033683971e-23,0.0,2.383707986552963e-08,33.0,48.0,0.014776668511331081,-0.0009412856306880713,-0.0006588998949155211,1.591545697010588e-05,1.3641820260090753e-05,7.730364814051427e-06,-0.0009412856306880713,0.0001255725946975872,1.3641820260090753e-05,-3.0804110338067403e-06,-8.526137662556721e-07,4.579271871093561e-21,-0.0006588998949155211,1.3641820260090753e-05,5.996806430630386e-05,8.93121205319639e-21,-5.805030127703503e-07,-1.0083084589496139e-06,1.591545697010588e-05,-3.0804110338067403e-06,8.93121205319639e-21,9.626284480646063e-08,-9.884983762674002e-23,-1.4323098807140586e-22,1.3641820260090753e-05,-8.526137662556721e-07,-5.805030127703503e-07,-9.884983762674002e-23,3.6281438298146895e-08,0.0,7.730364814051427e-06,4.579271871093561e-21,-1.0083084589496139e-06,-1.4323098807140586e-22,0.0,2.145337241188372e-08,33.0,49.0,0.014487872831523418,-0.0009223429369740188,-0.0006329804891720414,1.5590650946251117e-05,1.3096147995383944e-05,7.275637472048402e-06,-0.0009223429369740188,0.00012302659160923213,1.3096147995383944e-05,-3.0175456231518183e-06,-8.185092497114965e-07,4.155755397466411e-21,-0.0006329804891720414,1.3096147995383944e-05,5.6405540817650035e-05,7.743601221214018e-21,-5.456728331409977e-07,-9.288048090638767e-07,1.5590650946251117e-05,-3.0175456231518183e-06,7.743601221214018e-21,9.429830072349432e-08,-5.455298170296248e-23,-1.3104293562444742e-22,1.3096147995383944e-05,-8.185092497114965e-07,-5.456728331409977e-07,-5.455298170296248e-23,3.4104552071312355e-08,1.6543612251060553e-24,7.275637472048402e-06,4.155755397466411e-21,-9.288048090638767e-07,-1.3104293562444742e-22,1.6543612251060553e-24,1.9350100188830766e-08,33.0,50.0,0.014210149645805359,-0.0009041477460414171,-0.0006085609784349799,1.5278837963705882e-05,1.2582572708197404e-05,6.8558892962755635e-06,-0.0009041477460414171,0.00012058178253937513,1.2582572708197404e-05,-2.9571945105999475e-06,-7.864107942623377e-07,-1.2705494208814505e-21,-0.0006085609784349799,1.2582572708197404e-05,5.311976565280929e-05,-2.7090455866795757e-21,-5.135744345352578e-07,-8.569861620344454e-07,1.5278837963705882e-05,-2.9571945105999475e-06,-2.7090455866795757e-21,9.241232845624836e-08,4.4201135541538024e-23,4.0853620067450765e-23,1.2582572708197404e-05,-7.864107942623377e-07,-5.135744345352578e-07,4.4201135541538024e-23,3.209840215845361e-08,-1.6543612251060553e-24,6.8558892962755635e-06,-1.2705494208814505e-21,-8.569861620344454e-07,4.0853620067450765e-23,-1.6543612251060553e-24,1.7489513837176673e-08,33.0,51.0,0.013942873105406761,-0.0008866565767675638,-0.0005855279159732163,1.4979254046920687e-05,1.2098627848899923e-05,6.467820185207529e-06,-0.0008866565767675638,0.00011823225941043347,1.2098627848899923e-05,-2.899210358009441e-06,-7.561642405562452e-07,-1.2176098616780567e-21,-0.0005855279159732163,1.2098627848899923e-05,5.0084374379366636e-05,-2.579215994858005e-21,-4.839451435145747e-07,-7.919779818621464e-07,1.4979254046920687e-05,-2.899210358009441e-06,-2.579215994858005e-21,9.060032368779503e-08,4.0834384483137856e-23,3.851731698877373e-23,1.2098627848899923e-05,-7.561642405562452e-07,-4.839451435145747e-07,4.0834384483137856e-23,3.024657146966092e-08,0.0,6.467820185207529e-06,-1.2176098616780567e-21,-7.919779818621464e-07,3.851731698877373e-23,0.0,1.5839558997754466e-08,33.0,52.0,0.013685465790331364,-0.0008698293822817504,-0.0005637783324345946,1.4691191609017551e-05,1.1642076060525142e-05,6.10849656368373e-06,-0.0008698293822817504,0.00011597255797823891,1.1642076060525142e-05,-2.8434562864276813e-06,-7.276297537828214e-07,-1.1911400820763599e-21,-0.0005637783324345946,1.1642076060525142e-05,4.727596024167724e-05,-2.4586635082560295e-21,-4.565519873267476e-07,-7.330195899157843e-07,1.4691191609017551e-05,-2.8434562864276813e-06,-2.4586635082560295e-21,8.885800895086504e-08,3.778217751119827e-23,3.6355857041129886e-23,1.1642076060525142e-05,-7.276297537828214e-07,-4.565519873267476e-07,3.778217751119827e-23,2.8534499207921726e-08,8.271806125530277e-25,6.10849656368373e-06,-1.1911400820763599e-21,-7.330195899157843e-07,3.6355857041129886e-23,8.271806125530277e-25,1.4372933065942561e-08,33.0,53.0,0.013437389396131039,-0.0008536290260963142,-0.0005432184552773833,1.4413998542295303e-05,1.1210888260393403e-05,5.775305908173323e-06,-0.0008536290260963142,0.00011379761417629197,1.1210888260393403e-05,-2.7898063308384735e-06,-7.006805162745877e-07,-1.1117307432712692e-21,-0.0005432184552773833,1.1210888260393403e-05,4.467368853511289e-05,-2.3465235858086245e-21,-4.311879990837042e-07,-6.794477371840912e-07,1.4413998542295303e-05,-2.7898063308384735e-06,-2.3465235858086245e-21,8.71814478387023e-08,3.5009899409198175e-23,3.4353179016488924e-23,1.1210888260393403e-05,-7.006805162745877e-07,-4.311879990837042e-07,3.5009899409198175e-23,2.6949249942731512e-08,0.0,5.775305908173323e-06,-1.1117307432712692e-21,-6.794477371840912e-07,3.4353179016488924e-23,0.0,1.3066302706477018e-08,33.0,54.0,0.013198147527873516,-0.0008380211656913161,-0.0005237632431089878,1.414707276126137e-05,1.0803219083754811e-05,5.465914455271559e-06,-0.0008380211656913161,0.00011170275683980435,1.0803219083754811e-05,-2.7381431664252887e-06,-6.752011927346757e-07,2.779326858178173e-21,-0.0005237632431089878,1.0803219083754811e-05,4.2258991015842184e-05,6.2138332680801954e-21,-4.076686650478223e-07,-6.306824502644304e-07,1.414707276126137e-05,-2.7381431664252887e-06,6.2138332680801954e-21,8.556697395079027e-08,-7.655850908959227e-23,-8.594462857540154e-23,1.0803219083754811e-05,-6.752011927346757e-07,-4.076686650478223e-07,-7.655850908959227e-23,2.5479291565488893e-08,-8.271806125530277e-25,5.465914455271559e-06,2.779326858178173e-21,-6.306824502644304e-07,-8.594462857540154e-23,-8.271806125530277e-25,1.1899668805881447e-08,33.0,55.0,0.012967274524271488,-0.0008229738450609148,-0.0005053348140791059,1.3889853107684758e-05,1.0417390512884595e-05,5.178234914637869e-06,-0.0008229738450609148,0.00010968363494612277,1.0417390512884595e-05,-2.6883587906922912e-06,-6.510869070552872e-07,1.0587911840678754e-21,-0.0005053348140791059,1.0417390512884595e-05,4.001525667263195e-05,1.2115963434431208e-21,-3.8582925299124327e-07,-5.862152647750918e-07,1.3889853107684758e-05,-2.6883587906922912e-06,1.2115963434431208e-21,8.40112122091341e-08,-8.179299247074267e-23,3.669627892072534e-24,1.0417390512884595e-05,-6.510869070552872e-07,-3.8582925299124327e-07,-8.179299247074267e-23,2.4114328311952704e-08,-3.970466940254533e-23,5.178234914637869e-06,1.0587911840678754e-21,-5.862152647750918e-07,3.669627892072534e-24,-3.970466940254533e-23,1.0855838006307295e-08,33.0,56.0,0.012744340114295483,-0.0008084573782980442,-0.0004878621839452535,1.3641820260090753e-05,1.005186732072616e-05,4.910395091428654e-06,-0.0008084573782980442,0.00010773621761472896,1.005186732072616e-05,-2.6403522497275844e-06,-6.28241707545385e-07,-9.26442286059391e-22,-0.0004878621839452535,1.005186732072616e-05,3.792762436205521e-05,-2.5027411681332387e-21,-3.6552245319398935e-07,-5.455994482872484e-07,1.3641820260090753e-05,-2.6403522497275844e-06,-2.5027411681332387e-21,8.251100780398701e-08,5.617668463784802e-23,2.9162076674238435e-23,1.005186732072616e-05,-6.28241707545385e-07,-3.6552245319398935e-07,5.617668463784802e-23,2.2845153324624334e-08,8.271806125530277e-25,4.910395091428654e-06,-9.26442286059391e-22,-5.455994482872484e-07,2.9162076674238435e-23,8.271806125530277e-25,9.919990162643444e-09,33.0,57.0,0.012528941966593266,-0.0007944441749714315,-0.00047128042206168175,1.3402490367298014e-05,9.705251613922883e-06,4.660713784687687e-06,-0.0007944441749714315,0.00010585675045149401,9.705251613922883e-06,-2.5940303203242365e-06,-6.065782258701802e-07,2.1705219273391446e-21,-0.00047128042206168175,9.705251613922883e-06,3.598274270188995e-05,4.370752886483441e-21,-3.466161331289186e-07,-5.084415306555456e-07,1.3402490367298014e-05,-2.5940303203242365e-06,4.370752886483441e-21,8.106344751013239e-08,-1.275668153124256e-23,-6.78175894718324e-23,9.705251613922883e-06,-6.065782258701802e-07,-3.466161331289186e-07,-1.275668153124256e-23,2.1663508320557412e-08,0.0,4.660713784687687e-06,2.1705219273391446e-21,-5.084415306555456e-07,-6.78175894718324e-23,0.0,9.07931330118572e-09,33.0,58.0,0.012320702895522118,-0.0007809085072949529,-0.0004555299528874457,1.3171412319934461e-05,9.376260095450561e-06,4.427678504725918e-06,-0.0007809085072949529,0.00010404174099676311,9.376260095450561e-06,-2.5493056909908773e-06,-5.860162559656601e-07,-2.821006582851902e-21,-0.0004555299528874457,9.376260095450561e-06,3.4168613638030365e-05,-4.7645603283054394e-21,-3.289915753157402e-07,-4.7439411332561576e-07,1.3171412319934461e-05,-2.5493056909908773e-06,-4.7645603283054394e-21,7.966580284346492e-08,7.77549775799846e-23,6.245619414825005e-23,9.376260095450561e-06,-5.860162559656601e-07,-3.289915753157402e-07,7.77549775799846e-23,2.0561973457233762e-08,2.0495877961421103e-23,4.427678504725918e-06,-2.821006582851902e-21,-4.7439411332561576e-07,6.245619414825005e-23,2.0495877961421103e-23,8.322703415331034e-09,33.0,59.0,0.012119273655116558,-0.000767826393712312,-0.00044055611942894757,1.294816865993198e-05,9.063717698154505e-06,4.209923645248637e-06,-0.000767826393712312,0.0001022879223455675,9.063717698154505e-06,-2.5060971893253736e-06,-5.664823561346566e-07,-4.0376353792429025e-21,-0.00044055611942894757,9.063717698154505e-06,3.247443601139821e-05,-6.03510974918689e-21,-3.125419993921241e-07,-4.4314984393167833e-07,1.294816865993198e-05,-2.5060971893253736e-06,-6.03510974918689e-21,7.831553716641793e-08,-1.4889251025954498e-23,9.952231314944834e-23,9.063717698154505e-06,-5.664823561346566e-07,-3.125419993921241e-07,-1.4889251025954498e-23,1.9533874962007758e-08,1.9882035314354235e-23,4.209923645248637e-06,-4.0376353792429025e-21,-4.4314984393167833e-07,9.952231314944834e-23,1.9882035314354235e-23,7.64051488744144e-09,33.0,60.0,0.011924323625862598,-0.0007551753660663962,-0.00042630868847481906,1.2732365576084703e-05,8.766546670813113e-06,4.0062177504296415e-06,-0.0007551753660663962,0.00010059225314762443,8.766546670813113e-06,-2.4643288725201273e-06,-5.479091669258196e-07,-3.4973192259774175e-21,-0.00042630868847481906,8.766546670813113e-06,3.089044912485406e-05,-4.817499887508833e-21,-2.9717108418481075e-07,-4.1443630038884294e-07,1.2732365576084703e-05,-2.4643288725201273e-06,-4.817499887508833e-21,7.701027726625398e-08,-1.6543612251060553e-24,8.159428787504836e-23,8.766546670813113e-06,-5.479091669258196e-07,-2.9717108418481075e-07,-1.6543612251060553e-24,1.8573192761550672e-08,2.1512378880339932e-23,4.0062177504296415e-06,-3.4973192259774175e-21,-4.1443630038884294e-07,8.159428787504836e-23,2.1512378880339932e-23,7.024344217398948e-09,33.0,61.0,0.011735547333955765,-0.0007429345278069377,-0.0004127414140384644,1.252363836101722e-05,8.483754754706752e-06,3.815445325017208e-06,-0.0007429345278069377,9.89518957794644e-05,8.483754754706752e-06,-2.4239300273620756e-06,-5.30234672169172e-07,2.345137815944528e-21,-0.0004127414140384644,8.483754754706752e-06,2.9407839974737726e-05,4.235164736271502e-21,-2.827918308412336e-07,-3.880113865761814e-07,1.252363836101722e-05,-2.4239300273620756e-06,4.235164736271502e-21,7.574781335506486e-08,-1.3234889800848443e-23,-6.022864027852316e-23,8.483754754706752e-06,-5.30234672169172e-07,-2.827918308412336e-07,-1.3234889800848443e-23,1.76744894275771e-08,-8.36635347160373e-24,3.815445325017208e-06,2.345137815944528e-21,-3.880113865761814e-07,-6.022864027852316e-23,-8.36635347160373e-24,6.466856383724462e-09,33.0,62.0,0.011552654206752777,-0.0007310842047445476,-0.000399811688112095,1.2321644135226961e-05,8.214429726649541e-06,3.636596375145018e-06,-0.0007310842047445476,9.736417268868536e-05,8.214429726649541e-06,-2.384834260737989e-06,-5.134018579155963e-07,-2.170028567418132e-21,-0.000399811688112095,8.214429726649541e-06,2.8018625016557053e-05,-2.9116757561866574e-21,-2.693255680696893e-07,-3.636596375145018e-07,1.2321644135226961e-05,-2.384834260737989e-06,-2.9116757561866574e-21,7.452607064806216e-08,-1.4889251025954498e-23,5.112395796470416e-23,8.214429726649541e-06,-5.134018579155963e-07,-2.693255680696893e-07,-1.4889251025954498e-23,1.6832848004355583e-08,1.2801222984534054e-23,3.636596375145018e-06,-2.170028567418132e-21,-3.636596375145018e-07,5.112395796470416e-23,1.2801222984534054e-23,5.96163340915723e-09,33.0,63.0,0.011375374160706997,-0.0007196060032583773,-0.0003874801623169333,1.2126062756578904e-05,7.95772848505294e-06,3.4687534480326576e-06,-0.0007196060032583773,9.58266100496985e-05,7.95772848505294e-06,-2.3469799543818226e-06,-4.973580303158087e-07,-7.218756839110452e-22,-0.0003874801623169333,7.95772848505294e-06,2.6715562853496522e-05,1.5881867761018131e-21,-2.5670092895779817e-07,-3.411888656046358e-07,1.2126062756578904e-05,-2.3469799543818226e-06,1.5881867761018131e-21,7.334312357443196e-08,-1.4889251025954498e-22,1.354776307991177e-23,7.95772848505294e-06,-4.973580303158087e-07,-2.5670092895779817e-07,-1.4889251025954498e-22,1.6043808059862386e-08,7.347784948252318e-24,3.4687534480326576e-06,-7.218756839110452e-22,-3.411888656046358e-07,1.354776307991177e-23,7.347784948252318e-24,5.503046018873192e-09,33.0,64.0,0.01120345201343298,-0.0007084826938807964,-0.00037571051507256925,1.193659318232676e-05,7.712875230936334e-06,3.3110827644122764e-06,-0.0007084826938807964,9.433685045223683e-05,7.712875230936334e-06,-2.3103082185116364e-06,-4.820547019335208e-07,-8.268835969558811e-22,-0.00037571051507256925,7.712875230936334e-06,2.549207601987291e-05,-2.064642808932357e-21,-2.448531972731871e-07,-3.204273752999143e-07,1.193659318232676e-05,-2.3103082185116364e-06,-2.064642808932357e-21,7.219713182848864e-08,2.6469779601696886e-23,2.0396443622039805e-23,7.712875230936334e-06,-4.820547019335208e-07,-2.448531972731871e-07,2.6469779601696886e-23,1.5303324829574194e-08,4.626567446064461e-24,3.3110827644122764e-06,-8.268835969558811e-22,-3.204273752999143e-07,2.0396443622039805e-23,4.626567446064461e-24,5.086148835431459e-09,34.0,3.0,0.1398226022720337,-0.011904762126505375,-0.08571428805589676,0.00023342670465353876,0.002521008485928178,0.014705882407724857,-0.011904762126505375,0.001698975102044642,0.002521008485928178,-4.376750803203322e-05,-0.00015278838691301644,-4.228388472693467e-18,-0.08571428805589676,0.002521008485928178,0.23277311027050018,-1.7275721376897682e-19,-0.002521008485928178,-0.0882352963089943,0.00023342670465353876,-4.376750803203322e-05,-1.7275721376897682e-19,1.326288042946544e-06,6.918290650768471e-21,2.383509625961612e-20,0.002521008485928178,-0.00015278838691301644,-0.002521008485928178,6.918290650768471e-21,0.00015278838691301644,2.4936649967166602e-18,0.014705882407724857,-4.228388472693467e-18,-0.0882352963089943,2.383509625961612e-20,2.4936649967166602e-18,0.04411764815449715,34.0,4.0,0.11698879301548004,-0.009306722320616245,-0.05584033578634262,0.00017507003212813288,0.0015126049984246492,0.007352941203862429,-0.009306722320616245,0.0012971495743840933,0.0015126049984246492,-3.282563193351962e-05,-9.167303505819291e-05,9.75781955236954e-19,-0.05584033578634262,0.0015126049984246492,0.08869747817516327,8.290941785778955e-20,-0.0010084033710882068,-0.022058824077248573,0.00017507003212813288,-3.282563193351962e-05,8.290941785778955e-20,9.947160606316174e-07,-3.1691094685528615e-21,-1.0903310799925109e-20,0.0015126049984246492,-9.167303505819291e-05,-0.0010084033710882068,-3.1691094685528615e-21,6.111535185482353e-05,-2.710505431213761e-19,0.007352941203862429,9.75781955236954e-19,-0.022058824077248573,-1.0903310799925109e-20,-2.710505431213761e-19,0.007352941203862429,34.0,5.0,0.10061624646186829,-0.007647058926522732,-0.03932772949337959,0.00014005602861288935,0.0010084033710882068,0.004201680887490511,-0.007647058926522732,0.0010499426862224936,0.0010084033710882068,-2.626050445542205e-05,-6.111535185482353e-05,1.0842021724855044e-19,-0.03932772949337959,0.0010084033710882068,0.04487394914031029,-8.504857154533703e-20,-0.0005042016855441034,-0.008403361774981022,0.00014005602861288935,-2.626050445542205e-05,-8.504857154533703e-20,7.95772848505294e-07,1.9759284960296118e-21,1.2268672567346182e-20,0.0010084033710882068,-6.111535185482353e-05,-0.0005042016855441034,1.9759284960296118e-21,3.0557675927411765e-05,-1.6263032587282567e-19,0.004201680887490511,1.0842021724855044e-19,-0.008403361774981022,1.2268672567346182e-20,-1.6263032587282567e-19,0.0021008404437452555,34.0,6.0,0.0882786437869072,-0.006492597050964832,-0.029216686263680458,0.00011671335232676938,0.0007202881388366222,0.0026260504964739084,-0.006492597050964832,0.0008822279050946236,0.0007202881388366222,-2.188375401601661e-05,-4.365382483229041e-05,-1.0842021724855044e-19,-0.029216686263680458,0.0007202881388366222,0.0261299517005682,4.917576140048105e-20,-0.00028811523225158453,-0.0039390758611261845,0.00011671335232676938,-2.188375401601661e-05,4.917576140048105e-20,6.63144021473272e-07,7.326681972404569e-23,-8.964365516771e-21,0.0007202881388366222,-4.365382483229041e-05,-0.00028811523225158453,7.326681972404569e-23,1.7461530660511926e-05,1.6940658945086007e-19,0.0026260504964739084,-1.0842021724855044e-19,-0.0039390758611261845,-8.964365516771e-21,1.6940658945086007e-19,0.0007878151373006403,34.0,7.0,0.07864145934581757,-0.005642256699502468,-0.022569026798009872,0.00010004001524066553,0.0005402161041274667,0.0017507002921774983,-0.005642256699502468,0.0007608725572936237,0.0005402161041274667,-1.8757502402877435e-05,-3.274036862421781e-05,5.421010862427522e-19,-0.022569026798009872,0.0005402161041274667,0.016626650467514992,7.013140317370887e-20,-0.00018007203470915556,-0.0021008404437452555,0.00010004001524066553,-1.8757502402877435e-05,7.013140317370887e-20,5.684091775037814e-07,-7.997091689283174e-22,-7.937180871597033e-21,0.0005402161041274667,-3.274036862421781e-05,-0.00018007203470915556,-7.997091689283174e-22,1.0913456208072603e-05,-7.792703114739563e-20,0.0017507002921774983,5.421010862427522e-19,-0.0021008404437452555,-7.937180871597033e-21,-7.792703114739563e-20,0.00035014006425626576,34.0,8.0,0.07090336084365845,-0.00498949596658349,-0.01796218566596508,8.753501606406644e-05,0.0004201680712867528,0.0012254902394488454,-0.00498949596658349,0.0006689465371891856,0.0004201680712867528,-1.641281596675981e-05,-2.5464731152169406e-05,-1.6263032587282567e-19,-0.01796218566596508,0.0004201680712867528,0.011259503662586212,2.8588113217849897e-21,-0.00012004801828879863,-0.0012254902394488454,8.753501606406644e-05,-1.641281596675981e-05,2.8588113217849897e-21,4.973580303158087e-07,-1.3049703125626e-22,-6.122454246148486e-22,0.0004201680712867528,-2.5464731152169406e-05,-0.00012004801828879863,-1.3049703125626e-22,7.275637472048402e-06,4.404571325722362e-20,0.0012254902394488454,-1.6263032587282567e-19,-0.0012254902394488454,-6.122454246148486e-22,4.404571325722362e-20,0.00017507003212813288,34.0,9.0,0.06455253064632416,-0.004472455475479364,-0.01463712751865387,7.780890155117959e-05,0.00033613445702940226,0.000891265575774014,-0.004472455475479364,0.00059688271721825,0.00033613445702940226,-1.4589169040846173e-05,-2.0371784557937644e-05,1.3552527156068805e-20,-0.01463712751865387,0.00033613445702940226,0.007988286204636097,2.926825762976022e-20,-8.403361425735056e-05,-0.0007639419636689126,7.780890155117959e-05,-1.4589169040846173e-05,2.926825762976022e-20,4.420960237894178e-07,-7.292506372288733e-22,-2.0680630068948078e-21,0.00033613445702940226,-2.0371784557937644e-05,-8.403361425735056e-05,-7.292506372288733e-22,5.092946139484411e-06,1.9481757786848908e-20,0.000891265575774014,1.3552527156068805e-20,-0.0007639419636689126,-2.0680630068948078e-21,1.9481757786848908e-20,9.549274545861408e-05,34.0,10.0,0.0592462457716465,-0.004052712116390467,-0.012158135883510113,7.002801430644467e-05,0.0002750190906226635,0.000668449210934341,-0.004052712116390467,0.0005388612044043839,0.0002750190906226635,-1.3130252227711026e-05,-1.666782372922171e-05,-4.0657581468206416e-20,-0.012158135883510113,0.0002750190906226635,0.005876941606402397,-6.652881592515806e-21,-6.111535185482353e-05,-0.0005013368790969253,7.002801430644467e-05,-1.3130252227711026e-05,-6.652881592515806e-21,3.97886424252647e-07,4.930394289147766e-22,-3.9678345429682465e-22,0.0002750190906226635,-1.666782372922171e-05,-6.111535185482353e-05,4.930394289147766e-22,3.7039608287159353e-06,1.2281977735187355e-20,0.000668449210934341,-4.0657581468206416e-20,-0.0005013368790969253,-3.9678345429682465e-22,1.2281977735187355e-20,5.5704098485875875e-05,34.0,11.0,0.05474623292684555,-0.00370511831715703,-0.010260327719151974,6.366182788042352e-05,0.00022918258036952466,0.0005141916917636991,-0.00370511831715703,0.0004911365103907883,0.00022918258036952466,-1.193659318232676e-05,-1.3889853107684758e-05,-1.0164395367051604e-19,-0.010260327719151974,0.00022918258036952466,0.0044516269117593765,-5.894112613250678e-21,-4.5836517529096454e-05,-0.00034279446117579937,6.366182788042352e-05,-1.193659318232676e-05,-5.894112613250678e-21,3.617149388901453e-07,1.4006284694539137e-22,4.682898457138919e-22,0.00022918258036952466,-1.3889853107684758e-05,-4.5836517529096454e-05,1.4006284694539137e-22,2.7779706215369515e-06,1.3552527156068805e-20,0.0005141916917636991,-1.0164395367051604e-19,-0.00034279446117579937,4.682898457138919e-22,1.3552527156068805e-20,3.4279444662388414e-05,34.0,12.0,0.05088163539767265,-0.003412518883123994,-0.008775048889219761,5.835667616338469e-05,0.00019392372632864863,0.00040400776197202504,-0.003412518883123994,0.0004511878942139447,0.00019392372632864863,-1.0941877008008305e-05,-1.175295255961828e-05,-1.1858461261560205e-19,-0.008775048889219761,0.00019392372632864863,0.0034538989420980215,-3.894365677664801e-20,-3.525885767885484e-05,-0.00024240465427283198,5.835667616338469e-05,-1.0941877008008305e-05,-3.894365677664801e-20,3.31572010736636e-07,5.933157416283224e-22,2.4704904138696905e-21,0.00019392372632864863,-1.175295255961828e-05,-3.525885767885484e-05,5.933157416283224e-22,2.1369005480664782e-06,4.235164736271502e-21,0.00040400776197202504,-1.1858461261560205e-19,-0.00024240465427283198,2.4704904138696905e-21,4.235164736271502e-21,2.2036787413526326e-05,34.0,13.0,0.04752670228481293,-0.0031628035940229893,-0.007590728811919689,5.3867701353738084e-05,0.00016622032853774726,0.0003232062153983861,-0.0031628035940229893,0.00041725605842657387,0.00016622032853774726,-1.0100194231199566e-05,-1.0073959856526926e-05,9.486769009248164e-20,-0.007590728811919689,0.00016622032853774726,0.002734240610152483,3.211007862945163e-20,-2.7703388695954345e-05,-0.0001762942993082106,5.3867701353738084e-05,-1.0100194231199566e-05,3.211007862945163e-20,3.0606648238062917e-07,-4.637312646672221e-22,-1.8542846803186917e-21,0.00016622032853774726,-1.0073959856526926e-05,-2.7703388695954345e-05,-4.637312646672221e-22,1.6789932715255418e-06,-4.235164736271502e-21,0.0003232062153983861,9.486769009248164e-20,-0.0001762942993082106,-1.8542846803186917e-21,-4.235164736271502e-21,1.4691191609017551e-05,34.0,14.0,0.04458683356642723,-0.002947178902104497,-0.006631152238696814,5.002000762033276e-05,0.00014405761612579226,0.00026260505546815693,-0.002947178902104497,0.00038807568489573896,0.00014405761612579226,-9.378751201438718e-06,-8.730765330255963e-06,-8.809142651444724e-20,-0.006631152238696814,0.00014405761612579226,0.0022018998861312866,-5.733607262672713e-21,-2.2162710592965595e-05,-0.00013130252773407847,5.002000762033276e-05,-9.378751201438718e-06,-5.733607262672713e-21,2.842045887518907e-07,4.688591634737463e-23,4.732460126567931e-22,0.00014405761612579226,-8.730765330255963e-06,-2.2162710592965595e-05,4.688591634737463e-23,1.343194639957801e-06,8.893845946170154e-21,0.00026260505546815693,-8.809142651444724e-20,-0.00013130252773407847,4.732460126567931e-22,8.893845946170154e-21,1.0100194231199566e-05,34.0,15.0,0.04198948293924332,-0.002759103663265705,-0.005842807702720165,4.6685341658303514e-05,0.00012605042138602585,0.00021626298257615417,-0.002759103663265705,0.0003627132682595402,0.00012605042138602585,-8.753501788305584e-06,-7.639418981852941e-06,2.371692252312041e-20,-0.005842807702720165,0.00012605042138602585,0.001799552352167666,-3.9428981575050055e-21,-1.8007202015724033e-05,-9.981368202716112e-05,4.6685341658303514e-05,-8.753501788305584e-06,-3.9428981575050055e-21,2.6525762564233446e-07,2.2833204034920026e-22,4.439228600520394e-23,0.00012605042138602585,-7.639418981852941e-06,-1.8007202015724033e-05,2.2833204034920026e-22,1.0913456662819954e-06,-3.494010907423989e-21,0.00021626298257615417,2.371692252312041e-20,-9.981368202716112e-05,4.439228600520394e-23,-3.494010907423989e-21,7.1295485213340726e-06,34.0,16.0,0.03967807814478874,-0.0025936109013855457,-0.0051872218027710915,4.376750803203322e-05,0.00011122095747850835,0.00018021914002019912,-0.0025936109013855457,0.0003404649905860424,0.00011122095747850835,-8.206407983379904e-06,-6.740664048265899e-06,5.082197683525802e-21,-0.0051872218027710915,0.00011122095747850835,0.0014897430082783103,-7.589400295529285e-22,-1.4829461179033387e-05,-7.723677845206112e-05,4.376750803203322e-05,-8.206407983379904e-06,-7.589400295529285e-22,2.4867901515790436e-07,-1.681880732447999e-22,1.617913326929948e-22,0.00011122095747850835,-6.740664048265899e-06,-1.4829461179033387e-05,-1.681880732447999e-22,8.987552178041369e-07,-1.376428539288238e-21,0.00018021914002019912,5.082197683525802e-21,-7.723677845206112e-05,1.617913326929948e-22,-1.376428539288238e-21,5.149118351255311e-06,34.0,17.0,0.03760785982012749,-0.002446861006319523,-0.0046361577697098255,4.1192946810042486e-05,9.886307816486806e-05,0.00015176349552348256,-0.002446861006319523,0.000320790073601529,9.886307816486806e-05,-7.72367729950929e-06,-5.991701527818805e-06,-4.0657581468206416e-20,-0.0046361577697098255,9.886307816486806e-05,0.0012472791131585836,-1.7254470589973312e-20,-1.2357884770608507e-05,-6.070539529900998e-05,4.1192946810042486e-05,-7.72367729950929e-06,-1.7254470589973312e-20,2.3405084448313573e-07,7.460349719628838e-23,9.753428774280532e-22,9.886307816486806e-05,-5.991701527818805e-06,-1.2357884770608507e-05,7.460349719628838e-23,7.489626909773506e-07,7.411538288475128e-22,0.00015176349552348256,-4.0657581468206416e-20,-6.070539529900998e-05,9.753428774280532e-22,7.411538288475128e-22,3.7940872061881237e-06,34.0,18.0,0.035742953419685364,-0.0023158385884016752,-0.004168509505689144,3.8904450775589794e-05,8.845643606036901e-05,0.00012899897410534322,-0.0023158385884016752,0.00030326624982990324,8.845643606036901e-05,-7.294584520423086e-06,-5.360996055969736e-06,-3.7269449679189215e-20,-0.004168509505689144,8.845643606036901e-05,0.0010547833517193794,-1.2102858397446246e-20,-1.0406639376014937e-05,-4.83746116515249e-05,3.8904450775589794e-05,-7.294584520423086e-06,-1.2102858397446246e-20,2.210480118947089e-07,9.984348051206916e-23,5.413166560852459e-22,8.845643606036901e-05,-5.360996055969736e-06,-1.0406639376014937e-05,9.984348051206916e-23,6.307054150056501e-07,1.641126335305207e-21,0.00012899897410534322,-3.7269449679189215e-20,-4.83746116515249e-05,5.413166560852459e-22,1.641126335305207e-21,2.8455654046410928e-06,34.0,19.0,0.03405425325036049,-0.0021981424652040005,-0.003768244059756398,3.685684714582749e-05,7.961079245433211e-05,0.00011057054507546127,-0.0021981424652040005,0.00028755879611708224,7.961079245433211e-05,-6.910659067216329e-06,-4.8248966777464375e-06,-1.7787691892340307e-20,-0.003768244059756398,7.961079245433211e-05,0.000900000857654959,-8.8083577588254e-22,-8.845643606036901e-06,-3.9024896977934986e-05,3.685684714582749e-05,-6.910659067216329e-06,-8.8083577588254e-22,2.0941391198903148e-07,-8.690971469596169e-23,1.2639439919103346e-22,7.961079245433211e-05,-4.8248966777464375e-06,-8.845643606036901e-06,-8.690971469596169e-23,5.360996055969736e-07,1.3234889800848443e-21,0.00011057054507546127,-1.7787691892340307e-20,-3.9024896977934986e-05,1.2639439919103346e-22,1.3234889800848443e-21,2.1680498321074992e-06,34.0,20.0,0.032517917454242706,-0.0020918366499245167,-0.003423005575314164,3.501400715322234e-05,7.202880806289613e-05,9.549274545861408e-05,-0.0020918366499245167,0.00027339914231561124,7.202880806289613e-05,-6.565126113855513e-06,-4.3653826651279815e-06,-0.0,-0.003423005575314164,7.202880806289613e-05,0.0007741182344034314,0.0,-7.581980298709823e-06,-3.183091394021176e-05,3.501400715322234e-05,-6.565126113855513e-06,0.0,1.989432121263235e-07,1.3234889800848443e-23,-0.0,7.202880806289613e-05,-4.3653826651279815e-06,-7.581980298709823e-06,1.3234889800848443e-23,4.595139557750372e-07,-0.0,9.549274545861408e-05,-0.0,-3.183091394021176e-05,-0.0,-0.0,1.6753112959122518e-06,34.0,21.0,0.031114211305975914,-0.0019953434821218252,-0.0031231464818120003,3.3346670534228906e-05,6.548073724843562e-05,8.303716458613053e-05,-0.0019953434821218252,0.00026056909700855613,6.548073724843562e-05,-6.252500952541595e-06,-3.968529654230224e-06,-0.0,-0.0031231464818120003,6.548073724843562e-05,0.0006706856074742973,-6.352747104407253e-22,-6.548073997691972e-06,-2.6222263841191307e-05,3.3346670534228906e-05,-6.252500952541595e-06,-6.352747104407253e-22,1.8946973057154537e-07,2.6469779601696886e-23,-0.0,6.548073724843562e-05,-3.968529654230224e-06,-6.548073997691972e-06,2.6469779601696886e-23,3.968529540543386e-07,-0.0,8.303716458613053e-05,-0.0,-2.6222263841191307e-05,-0.0,-0.0,1.3111131238474627e-06,34.0,22.0,0.029826674610376358,-0.0019073637668043375,-0.0028610455337911844,3.183091394021176e-05,5.9786761994473636e-05,7.265752356033772e-05,-0.0019073637668043375,0.00024888975895009935,5.9786761994473636e-05,-5.96829659116338e-06,-3.623440079536522e-06,-0.0,-0.0028610455337911844,5.9786761994473636e-05,0.000584907887969166,0.0,-5.693977072951384e-06,-2.1797255612909794e-05,3.183091394021176e-05,-5.96829659116338e-06,0.0,1.8085746944507264e-07,0.0,-0.0,5.9786761994473636e-05,-3.623440079536522e-06,-5.693977072951384e-06,0.0,3.450895178502833e-07,-0.0,7.265752356033772e-05,-0.0,-2.1797255612909794e-05,-0.0,-0.0,1.0379645800639992e-06,34.0,23.0,0.028641456738114357,-0.0018268176354467869,-0.002630617469549179,3.0446961318375543e-05,5.48045318282675e-05,6.393861985998228e-05,-0.0018268176354467869,0.0002382128732278943,5.48045318282675e-05,-5.70880547456909e-06,-3.3214867016795324e-06,2.002929642239646e-20,-0.002630617469549179,5.48045318282675e-05,0.0005131696816533804,1.6433905806733574e-20,-4.982230166206136e-06,-1.8268176063429564e-05,3.0446961318375543e-05,-5.70880547456909e-06,1.6433905806733574e-20,1.7299409194038162e-07,-7.940933880509066e-23,-5.641136002864296e-22,5.48045318282675e-05,-3.3214867016795324e-06,-4.982230166206136e-06,-7.940933880509066e-23,3.0195334943527996e-07,-1.2850420452660344e-22,6.393861985998228e-05,2.002929642239646e-20,-1.8268176063429564e-05,-5.641136002864296e-22,-1.2850420452660344e-22,8.303716754198831e-07,34.0,24.0,0.027546828612685204,-0.0017528011230751872,-0.002426955383270979,2.9178338081692345e-05,5.0420167099218816e-05,5.656108623952605e-05,-0.0017528011230751872,0.0002284146612510085,5.0420167099218816e-05,-5.4709385040041525e-06,-3.055767820114852e-06,-0.0,-0.002426955383270979,5.0420167099218816e-05,0.0004527097044046968,2.117582368135751e-22,-4.38436245531193e-06,-1.5425750461872667e-05,2.9178338081692345e-05,-5.4709385040041525e-06,2.117582368135751e-22,1.65786005368318e-07,-1.3234889800848443e-23,-0.0,5.0420167099218816e-05,-3.055767820114852e-06,-4.38436245531193e-06,-1.3234889800848443e-23,2.6571893840809935e-07,-0.0,5.656108623952605e-05,-0.0,-1.5425750461872667e-05,-0.0,-0.0,6.706848125759279e-07,34.0,25.0,0.026532787829637527,-0.0016845507780089974,-0.002246067626401782,2.801120535877999e-05,4.654169242712669e-05,5.02765215060208e-05,-0.0016845507780089974,0.0002193909022025764,4.654169242712669e-05,-5.25210089108441e-06,-2.820708687067963e-06,-1.3292221333675324e-20,-0.002246067626401782,4.654169242712669e-05,0.0004013940051663667,-8.953429607461681e-21,-3.878474672092125e-06,-1.311561391048599e-05,2.801120535877999e-05,-5.25210089108441e-06,-8.953429607461681e-21,1.5915456685888785e-07,-7.940933880509066e-23,3.3776653592315717e-22,4.654169242712669e-05,-2.820708687067963e-06,-3.878474672092125e-06,-7.940933880509066e-23,2.3505906199261517e-07,1.7882719414891325e-22,5.02765215060208e-05,-1.3292221333675324e-20,-1.311561391048599e-05,3.3776653592315717e-22,1.7882719414891325e-22,5.464839318847226e-07,34.0,26.0,0.025590749457478523,-0.001621417817659676,-0.0020846801344305277,2.6933850676869042e-05,4.309416181058623e-05,4.488975173444487e-05,-0.001621417817659676,0.00021105325140524656,4.309416181058623e-05,-5.050097115599783e-06,-2.611767285998212e-06,9.485794648647713e-21,-0.0020846801344305277,4.309416181058623e-05,0.00035755583667196333,9.47074626228907e-21,-3.447532890277216e-06,-1.1222437933611218e-05,2.6933850676869042e-05,-5.050097115599783e-06,9.47074626228907e-21,1.5303324119031458e-07,-7.940933880509066e-23,-2.6024523787596076e-22,4.309416181058623e-05,-2.611767285998212e-06,-3.447532890277216e-06,-7.940933880509066e-23,2.089413868588963e-07,-7.181615500644219e-23,4.488975173444487e-05,9.485794648647713e-21,-1.1222437933611218e-05,-2.6024523787596076e-22,-7.181615500644219e-23,4.488975093863701e-07,34.0,27.0,0.02471330761909485,-0.001562847406603396,-0.0019400863675400615,2.5936300517059863e-05,4.001600609626621e-05,4.024598456453532e-05,-0.001562847406603396,0.00020332628628239036,4.001600609626621e-05,-4.863056346948724e-06,-2.4252124148915755e-06,7.199780051661553e-21,-0.0019400863675400615,4.001600609626621e-05,0.0003198803751729429,4.5639710492452476e-21,-3.0781543500779662e-06,-9.659035640652291e-06,2.5936300517059863e-05,-4.863056346948724e-06,4.5639710492452476e-21,1.4736534126313927e-07,1.281352574366752e-22,-1.9736964109428453e-22,4.001600609626621e-05,-2.4252124148915755e-06,-3.0781543500779662e-06,1.281352574366752e-22,1.8655481426321785e-07,-3.970466940254533e-23,4.024598456453532e-05,7.199780051661553e-21,-9.659035640652291e-06,-1.9736964109428453e-22,-3.970466940254533e-23,3.715013860983163e-07,34.0,28.0,0.023894039914011955,-0.001508362009190023,-0.0018100343877449632,2.501000381016638e-05,3.725628266693093e-05,3.622138683567755e-05,-0.001508362009190023,0.0001961452653631568,3.725628266693093e-05,-4.689375600719359e-06,-2.2579565666092094e-06,-2.117582368135751e-22,-0.0018100343877449632,3.725628266693093e-05,0.00028732093051075935,-1.2460559082412878e-22,-2.7597245662036585e-06,-8.358781087736133e-06,2.501000381016638e-05,-4.689375600719359e-06,-1.2460559082412878e-22,1.4210229437594535e-07,1.1968397480558491e-24,3.6250434458617055e-24,3.725628266693093e-05,-2.2579565666092094e-06,-2.7597245662036585e-06,1.1968397480558491e-24,1.6725603302347736e-07,1.3234889800848443e-23,3.622138683567755e-05,-2.117582368135751e-22,-8.358781087736133e-06,3.6250434458617055e-24,1.3234889800848443e-23,3.0958449315221515e-07,34.0,29.0,0.023127347230911255,-0.0014575485838577151,-0.0016926369862630963,2.414759001112543e-05,3.477252903394401e-05,3.271608875365928e-05,-0.0014575485838577151,0.00018945430929306895,3.477252903394401e-05,-4.527673354459694e-06,-2.107426098518772e-06,-4.235164736271502e-22,-0.0016926369862630963,3.477252903394401e-05,0.0002590372459962964,1.1233949794553864e-22,-2.48375204137119e-06,-7.270242349477485e-06,2.414759001112543e-05,-4.527673354459694e-06,1.1233949794553864e-22,1.3720222113988711e-07,-7.694600545484589e-24,1.5575750424797776e-25,3.477252903394401e-05,-2.107426098518772e-06,-2.48375204137119e-06,-7.694600545484589e-24,1.505304254578732e-07,3.970466940254533e-23,3.271608875365928e-05,-4.235164736271502e-22,-7.270242349477485e-06,1.5575750424797776e-25,3.970466940254533e-23,2.5965150030060613e-07,34.0,30.0,0.022408323362469673,-0.0014100478729233146,-0.001586303929798305,2.3342670829151757e-05,3.252914029872045e-05,2.9648956115124747e-05,-0.0014100478729233146,0.0001832048874348402,3.252914029872045e-05,-4.376750894152792e-06,-1.9714630070666317e-06,-1.7999450129153882e-21,-0.001586303929798305,3.252914029872045e-05,0.0002343494415981695,2.0326573896120018e-22,-2.243388962597237e-06,-6.353347998810932e-06,2.3342670829151757e-05,-4.376750894152792e-06,2.0326573896120018e-22,1.3262881282116723e-07,-1.945829749582341e-24,-5.510650962293796e-24,3.252914029872045e-05,-1.9714630070666317e-06,-2.243388962597237e-06,-1.945829749582341e-24,1.3596296355444792e-07,1.3234889800848443e-22,2.9648956115124747e-05,-1.7999450129153882e-21,-6.353347998810932e-06,-5.510650962293796e-24,1.3234889800848443e-22,2.1908095959588536e-07,34.0,31.0,0.02173266001045704,-0.0013655462535098195,-0.0014896867796778679,2.258968015667051e-05,3.049606857530307e-05,2.6953595806844532e-05,-0.0013655462535098195,0.00017735466826707125,3.049606857530307e-05,-4.235565029375721e-06,-1.8482465975466766e-06,0.0,-0.0014896867796778679,3.049606857530307e-05,0.00021270343859214336,-0.0,-2.033071268670028e-06,-5.576606326940237e-06,2.258968015667051e-05,-4.235565029375721e-06,-0.0,1.2835046447889908e-07,0.0,0.0,3.049606857530307e-05,-1.8482465975466766e-06,-2.033071268670028e-06,0.0,1.2321643794166448e-07,-6.617444900424222e-24,2.6953595806844532e-05,0.0,-5.576606326940237e-06,0.0,-6.617444900424222e-24,1.8588687566989393e-07,34.0,32.0,0.021096546202898026,-0.0013237681705504656,-0.0014016368659213185,2.188375401601661e-05,2.8647822546190582e-05,2.4575338102295063e-05,-0.0013237681705504656,0.00017186658806167543,2.8647822546190582e-05,-4.103203991689952e-06,-1.7362316384605947e-06,2.117582368135751e-22,-0.0014016368659213185,2.8647822546190582e-05,0.00019364460604265332,-0.0,-1.8482465975466766e-06,-4.915067620459013e-06,2.188375401601661e-05,-4.103203991689952e-06,-0.0,1.2433950757895218e-07,0.0,3.308722450212111e-24,2.8647822546190582e-05,-1.7362316384605947e-06,-1.8482465975466766e-06,0.0,1.1201494487522723e-07,-6.617444900424222e-24,2.4575338102295063e-05,2.117582368135751e-22,-4.915067620459013e-06,3.308722450212111e-24,-6.617444900424222e-24,1.5855056290092762e-07,34.0,33.0,0.020496612414717674,-0.0012844710145145655,-0.0013211701298132539,2.1220608687144704e-05,2.6962656193063594e-05,2.246888107038103e-05,-0.0012844710145145655,0.00016670803597662598,2.6962656193063594e-05,-3.97886424252647e-06,-1.6341003856723546e-06,-1.461131834013668e-20,-0.0013211701298132539,2.6962656193063594e-05,0.00017679747543297708,-1.5641431236990828e-20,-1.6851660120664747e-06,-4.348815764387837e-06,2.1220608687144704e-05,-3.97886424252647e-06,-1.5641431236990828e-20,1.2057164155976352e-07,1.4247070286361557e-22,3.880523417978385e-22,2.6962656193063594e-05,-1.6341003856723546e-06,-1.6851660120664747e-06,1.4247070286361557e-22,1.0213127410452216e-07,1.1911400820763599e-22,2.246888107038103e-05,-1.461131834013668e-20,-4.348815764387837e-06,3.880523417978385e-22,1.1911400820763599e-22,1.359004926371199e-07,34.0,34.0,0.019929854199290276,-0.0012474401155486703,-0.0012474401155486703,2.0596473405021243e-05,2.542193396948278e-05,2.0596473405021243e-05,-0.0012474401155486703,0.00016185017011594027,2.542193396948278e-05,-3.861838649754645e-06,-1.5407232467623544e-06,-7.411538288475128e-22,-0.0012474401155486703,2.542193396948278e-05,0.00016185017011594027,1.4038264484548073e-22,-1.5407232467623544e-06,-3.861838649754645e-06,2.0596473405021243e-05,-3.861838649754645e-06,1.4038264484548073e-22,1.1702542224156787e-07,-7.95380919488754e-24,-4.088880851467902e-26,2.542193396948278e-05,-1.5407232467623544e-06,-1.5407232467623544e-06,-7.95380919488754e-24,9.337716733170964e-08,4.632211430296955e-23,2.0596473405021243e-05,-7.411538288475128e-22,-3.861838649754645e-06,-4.088880851467902e-26,4.632211430296955e-23,1.1702542224156787e-07,34.0,35.0,0.019393594935536385,-0.0012124850181862712,-0.0011797151528298855,2.0008003048133105e-05,2.4009603293961845e-05,1.8926490156445652e-05,-0.0012124850181862712,0.00015726745186839253,2.4009603293961845e-05,-3.751500571524957e-06,-1.455127517147048e-06,-3.1763735522036263e-22,-0.0011797151528298855,2.4009603293961845e-05,0.00014854215260129422,-1.2883977964479721e-22,-1.4123296523393947e-06,-3.441179842411657e-06,2.0008003048133105e-05,-3.751500571524957e-06,-1.2883977964479721e-22,1.1368183550075628e-07,1.2250007018656551e-24,1.3303866023463931e-24,2.4009603293961845e-05,-1.455127517147048e-06,-1.4123296523393947e-06,1.2250007018656551e-24,8.559573672073384e-08,1.9852334701272664e-23,1.8926490156445652e-05,-3.1763735522036263e-22,-3.441179842411657e-06,1.3303866023463931e-24,1.9852334701272664e-23,1.0121117099970434e-07,34.0,36.0,0.01888543739914894,-0.0011794357560575008,-0.0011173601960763335,1.9452225387794897e-05,2.271178709634114e-05,1.743229222483933e-05,-0.0011794357560575008,0.00015293715114239603,2.271178709634114e-05,-3.647292260211543e-06,-1.3764719142272952e-06,4.235164736271502e-22,-0.0011173601960763335,2.271178709634114e-05,0.00013665460573974997,-2.370579526770992e-22,-1.2978164249943802e-06,-3.076286930081551e-06,1.9452225387794897e-05,-3.647292260211543e-06,-2.370579526770992e-22,1.1052400594735445e-07,8.868797125939813e-24,2.0277849034562046e-24,2.271178709634114e-05,-1.3764719142272952e-06,-1.2978164249943802e-06,8.868797125939813e-24,7.865553897090649e-08,-2.6469779601696886e-23,1.743229222483933e-05,4.235164736271502e-22,-3.076286930081551e-06,2.0277849034562046e-24,-2.6469779601696886e-23,8.789391614527631e-08,34.0,37.0,0.018403230234980583,-0.0011481406399980187,-0.0010598221560940146,1.8926490156445652e-05,2.1516430933843367e-05,1.6091347788460553e-05,-0.0011481406399980187,0.000148838953464292,2.1516430933843367e-05,-3.5487166769598844e-06,-1.3040261137575726e-06,-5.293955920339377e-23,-0.0010598221560940146,2.1516430933843367e-05,0.00012600290938280523,-1.0929010247386526e-22,-1.1953571856793133e-06,-2.758516757239704e-06,1.8926490156445652e-05,-3.5487166769598844e-06,-1.0929010247386526e-22,1.0753687007536428e-07,1.036807086087736e-24,7.382706144197028e-25,2.1516430933843367e-05,-1.3040261137575726e-06,-1.1953571856793133e-06,1.036807086087736e-24,7.244589284027825e-08,3.308722450212111e-24,1.6091347788460553e-05,-5.293955920339377e-23,-2.758516757239704e-06,7.382706144197028e-25,3.308722450212111e-24,7.662546153142102e-08,34.0,38.0,0.017945032566785812,-0.0011184635804966092,-0.001006617210805416,1.8428423572913744e-05,2.0413022866705433e-05,1.4884496522427071e-05,-0.0011184635804966092,0.0001449546980438754,2.0413022866705433e-05,-3.4553295336081646e-06,-1.2371529010124505e-06,-3.705769144237564e-22,-0.001006617210805416,2.0413022866705433e-05,0.00011643047764664516,-0.0,-1.1034067028958816e-06,-2.4807493446132867e-06,1.8428423572913744e-05,-3.4553295336081646e-06,-0.0,1.0470695599451574e-07,-3.308722450212111e-24,1.6543612251060553e-24,2.0413022866705433e-05,-1.2371529010124505e-06,-1.1034067028958816e-06,-3.308722450212111e-24,6.687313458542121e-08,1.9852334701272664e-23,1.4884496522427071e-05,-3.705769144237564e-22,-2.4807493446132867e-06,1.6543612251060553e-24,1.9852334701272664e-23,6.704728150452866e-08,34.0,39.0,0.0175090953707695,-0.0010902822250500321,-0.0009573210263624787,1.795590105757583e-05,1.939237154147122e-05,1.3795386621495709e-05,-0.0010902822250500321,0.0001412680430803448,1.939237154147122e-05,-3.3667313346086303e-06,-1.1752953241739306e-06,-2.6469779601696886e-22,-0.0009573210263624787,1.939237154147122e-05,0.000107803956780117,9.350502731482903e-23,-1.0206512115473743e-06,-2.2370898022927577e-06,1.795590105757583e-05,-3.3667313346086303e-06,9.350502731482903e-23,1.0202216316201884e-07,-8.852738087277003e-25,-2.8600482454291844e-25,1.939237154147122e-05,-1.1752953241739306e-06,-1.0206512115473743e-06,-8.852738087277003e-25,6.185764789279347e-08,1.3234889800848443e-23,1.3795386621495709e-05,-2.6469779601696886e-22,-2.2370898022927577e-06,-2.8600482454291844e-25,1.3234889800848443e-23,5.887078202704288e-08,34.0,40.0,0.01709383726119995,-0.0010634863283485174,-0.0009115597349591553,1.750700357661117e-05,1.844640246417839e-05,1.2810001862817444e-05,-0.0010634863283485174,0.00013776429113931954,1.844640246417839e-05,-3.2825630569277564e-06,-1.1179638477187837e-06,-2.117582368135751e-22,-0.0009115597349591553,1.844640246417839e-05,0.00010000929614761844,8.674423692159528e-23,-9.459693615099241e-07,-2.022631861109403e-06,1.750700357661117e-05,-3.2825630569277564e-06,8.674423692159528e-23,9.947160606316174e-08,-8.204976294830281e-25,-9.999229823437059e-26,1.844640246417839e-05,-1.1179638477187837e-06,-9.459693615099241e-07,-8.204976294830281e-25,5.733147645514691e-08,1.3234889800848443e-23,1.2810001862817444e-05,-2.117582368135751e-22,-2.022631861109403e-06,-9.999229823437059e-26,1.3234889800848443e-23,5.1862357963727845e-08,34.0,41.0,0.016697818413376808,-0.0010379761224612594,-0.0008690032991580665,1.7080003090086393e-05,1.756800338625908e-05,1.1916280527657364e-05,-0.0010379761224612594,0.00013443015632219613,1.756800338625908e-05,-3.202500465704361e-06,-1.064727484845207e-06,-6.352747104407253e-22,-0.0008690032991580665,1.756800338625908e-05,9.294856135966256e-05,8.062002572443869e-23,-8.784001579442702e-07,-1.8332740410187398e-06,1.7080003090086393e-05,-3.202500465704361e-06,8.062002572443869e-23,9.70454721027636e-08,-4.070612989944521e-24,6.424950365687231e-26,1.756800338625908e-05,-1.064727484845207e-06,-8.784001579442702e-07,-4.070612989944521e-24,5.323637353171762e-08,3.3087224502121107e-23,1.1916280527657364e-05,-6.352747104407253e-22,-1.8332740410187398e-06,6.424950365687231e-26,3.3087224502121107e-23,4.583185031492576e-08,34.0,42.0,0.01631973497569561,-0.0010136612690985203,-0.0008293592254631221,1.6673335267114453e-05,1.6750886061345227e-05,1.1103807082690764e-05,-0.0010136612690985203,0.0001312536041950807,1.6750886061345227e-05,-3.1262504762707977e-06,-1.0152052709599957e-06,3.705769144237564e-22,-0.0008293592254631221,1.6750886061345227e-05,8.653735130792484e-05,-7.505918743135473e-23,-8.171164154191501e-07,-1.6655710624036146e-06,1.6673335267114453e-05,-3.1262504762707977e-06,-7.505918743135473e-23,9.473486528577268e-08,4.017457964428919e-24,1.444652611429591e-24,1.6750886061345227e-05,-1.0152052709599957e-06,-8.171164154191501e-07,4.017457964428919e-24,4.952220677978403e-08,-1.9852334701272664e-23,1.1103807082690764e-05,3.705769144237564e-22,-1.6655710624036146e-06,1.444652611429591e-24,-1.9852334701272664e-23,4.062368574864195e-08,34.0,43.0,0.01595839112997055,-0.0009904595790430903,-0.0007923676748760045,1.6285583114949986e-05,1.598948256287258e-05,1.0363553883507848e-05,-0.0009904595790430903,0.0001282237353734672,1.598948256287258e-05,-3.053547061426798e-06,-9.690595561551163e-07,4.235164736271502e-22,-0.0007923676748760045,1.598948256287258e-05,8.070262265391648e-05,-6.99983670453233e-23,-7.614039532199968e-07,-1.5166175444392138e-06,1.6285583114949986e-05,-3.053547061426798e-06,-6.99983670453233e-23,9.253172805756549e-08,3.969135106388248e-24,4.8827546595928025e-25,1.598948256287258e-05,-9.690595561551163e-07,-7.614039532199968e-07,3.969135106388248e-24,4.614569348859732e-08,-1.819797347616661e-23,1.0363553883507848e-05,4.235164736271502e-22,-1.5166175444392138e-06,4.8827546595928025e-25,-1.819797347616661e-23,3.610994170344384e-08,34.0,44.0,0.015612703748047352,-0.0009682964300736785,-0.0007577972137369215,1.591545697010588e-05,1.5278837963705882e-05,9.687669262348209e-06,-0.0009682964300736785,0.00012533061089925468,1.5278837963705882e-05,-2.98414829558169e-06,-9.259902071789838e-07,0.0,-0.0007577972137369215,1.5278837963705882e-05,7.538100908277556e-05,-0.0,-7.10643689671997e-07,-1.383952735523053e-06,1.591545697010588e-05,-2.98414829558169e-06,-0.0,9.042873472253632e-08,0.0,0.0,1.5278837963705882e-05,-9.259902071789838e-07,-7.10643689671997e-07,0.0,4.306931344899567e-08,3.308722450212111e-24,9.687669262348209e-06,0.0,-1.383952735523053e-06,0.0,3.308722450212111e-24,3.218494981638287e-08,34.0,45.0,0.015281673520803452,-0.0009471034863963723,-0.0007254409720189869,1.5561779946438037e-05,1.4614541214541532e-05,9.069307452591602e-06,-0.0009471034863963723,0.00012256516492925584,1.4614541214541532e-05,-2.9178338536439696e-06,-8.857297757458582e-07,-3.705769144237564e-22,-0.0007254409720189869,1.4614541214541532e-05,7.051730790408328e-05,-0.0,-6.642973175985389e-07,-1.2654847978410544e-06,1.5561779946438037e-05,-2.9178338536439696e-06,-0.0,8.841920617896903e-08,0.0,0.0,1.4614541214541532e-05,-8.857297757458582e-07,-6.642973175985389e-07,0.0,4.026044564398035e-08,1.6543612251060553e-23,9.069307452591602e-06,-3.705769144237564e-22,-1.2654847978410544e-06,0.0,1.6543612251060553e-23,2.8761018455725207e-08,34.0,46.0,0.014964389614760876,-0.0009268184658139944,-0.0006951138493604958,1.5223480659187771e-05,1.3992646017868537e-05,8.502475793648046e-06,-0.0009268184658139944,0.0001199191392515786,1.3992646017868537e-05,-2.854402737284545e-06,-8.480391784360108e-07,2.4352197233561135e-21,-0.0006951138493604958,1.3992646017868537e-05,6.60632795188576e-05,4.012080021958989e-21,-6.218953672032512e-07,-1.1594285069804755e-06,1.5223480659187771e-05,-2.854402737284545e-06,4.012080021958989e-21,8.649704597019081e-08,-1.298263732690773e-23,-7.011935937552248e-23,1.3992646017868537e-05,-8.480391784360108e-07,-6.218953672032512e-07,-1.298263732690773e-23,3.769062928427047e-08,-3.308722450212111e-24,8.502475793648046e-06,2.4352197233561135e-21,-1.1594285069804755e-06,-7.011935937552248e-23,-3.308722450212111e-24,2.5765078959238963e-08,34.0,47.0,0.014660012908279896,-0.0009073842084035277,-0.0006666496628895402,1.4899576854077168e-05,1.340961898677051e-05,7.98191649664659e-06,-0.0009073842084035277,0.00011738495959434658,1.340961898677051e-05,-2.7936705464526312e-06,-8.127041724037554e-07,-1.0587911840678754e-22,-0.0006666496628895402,1.340961898677051e-05,6.197668699314818e-05,-0.0,-5.830269174111891e-07,-1.064255457094987e-06,1.4899576854077168e-05,-2.7936705464526312e-06,-0.0,8.465668344115329e-08,0.0,0.0,1.340961898677051e-05,-8.127041724037554e-07,-5.830269174111891e-07,0.0,3.533496339969133e-08,4.963083675318166e-24,7.98191649664659e-06,-1.0587911840678754e-22,-1.064255457094987e-06,0.0,4.963083675318166e-24,2.313598912451198e-08,34.0,48.0,0.014367771334946156,-0.0008887483854778111,-0.0006398988189175725,1.4589169040846173e-05,1.2862287803727668e-05,7.503001143049914e-06,-0.0008887483854778111,0.00011495568469399586,1.2862287803727668e-05,-2.7354692520020762e-06,-7.795325700499234e-07,1.852884572118782e-22,-0.0006398988189175725,1.2862287803727668e-05,5.822039383929223e-05,-0.0,-5.473314104165183e-07,-9.786523378352285e-07,1.4589169040846173e-05,-2.7354692520020762e-06,-0.0,8.2893002684159e-08,0.0,0.0,1.2862287803727668e-05,-7.795325700499234e-07,-5.473314104165183e-07,0.0,3.317159880111831e-08,-6.617444900424222e-24,7.503001143049914e-06,1.852884572118782e-22,-9.786523378352285e-07,0.0,-6.617444900424222e-24,2.0822389146246678e-08,34.0,49.0,0.014086952432990074,-0.0008708626264706254,-0.000614726566709578,1.4291430488810875e-05,1.2347796655376442e-05,7.061648375383811e-06,-0.0008708626264706254,0.00011262491898378357,1.2347796655376442e-05,-2.6796433303388767e-06,-7.483512831640837e-07,2.3822801641527197e-22,-0.000614726566709578,1.2347796655376442e-05,5.476168735185638e-05,-0.0,-5.144914894117392e-07,-9.014869988277496e-07,1.4291430488810875e-05,-2.6796433303388767e-06,-0.0,8.120131411715192e-08,0.0,0.0,1.2347796655376442e-05,-7.483512831640837e-07,-5.144914894117392e-07,0.0,3.118130464940805e-08,-1.1580528575742387e-23,7.061648375383811e-06,2.3822801641527197e-22,-9.014869988277496e-07,0.0,-1.1580528575742387e-23,1.8780978550125838e-08,34.0,50.0,0.013816900551319122,-0.0008536826353520155,-0.0005910110776312649,1.4005602679389995e-05,1.186356894322671e-05,6.654245225945488e-06,-0.0008536826353520155,0.0001103868053178303,1.186356894322671e-05,-2.626050445542205e-06,-7.190041628746258e-07,-9.529120656610879e-22,-0.0005910110776312649,1.186356894322671e-05,5.157166378921829e-05,-2.2397338821034967e-21,-4.842273142457998e-07,-8.31780653243186e-07,1.4005602679389995e-05,-2.626050445542205e-06,-2.2397338821034967e-21,7.957728342944392e-08,-1.863882681532756e-23,4.177566593702205e-23,1.186356894322671e-05,-7.190041628746258e-07,-4.842273142457998e-07,-1.863882681532756e-23,2.9347109631316926e-08,-1.6543612251060553e-23,6.654245225945488e-06,-9.529120656610879e-22,-8.31780653243186e-07,4.177566593702205e-23,-1.6543612251060553e-23,1.697511642362315e-08,34.0,51.0,0.013557007536292076,-0.0008371674339286983,-0.0005686420481652021,1.3730982573179062e-05,1.1407278179831337e-05,6.2775898186373524e-06,-0.0008371674339286983,0.00010823590855579823,1.1407278179831337e-05,-2.5745591756276553e-06,-6.913501806593558e-07,1.0587911840678754e-22,-0.0005686420481652021,1.1407278179831337e-05,4.8624726332491264e-05,-0.0,-4.5629110445588594e-07,-7.686845151511079e-07,1.3730982573179062e-05,-2.5745591756276553e-06,-0.0,7.801694579256946e-08,0.0,0.0,1.1407278179831337e-05,-6.913501806593558e-07,-4.5629110445588594e-07,0.0,2.7654007084265686e-08,-4.1359030627651384e-24,6.2775898186373524e-06,1.0587911840678754e-22,-7.686845151511079e-07,0.0,-4.1359030627651384e-24,1.5373689876696517e-08,34.0,52.0,0.013306710869073868,-0.0008212791872210801,-0.0005475194193422794,1.3466925338434521e-05,1.097681433748221e-05,5.928834980295505e-06,-0.0008212791872210801,0.00010616724466672167,1.097681433748221e-05,-2.5250485577998916e-06,-6.65261495669256e-07,1.4293680984916318e-21,-0.0005475194193422794,1.097681433748221e-05,4.58981521660462e-05,2.3573831586258673e-21,-4.3046330233664776e-07,-7.114601885405136e-07,1.3466925338434521e-05,-2.5250485577998916e-06,2.3573831586258673e-21,7.651662059515729e-08,-1.6746134933536133e-23,-3.20852922663999e-23,1.097681433748221e-05,-6.65261495669256e-07,-4.3046330233664776e-07,-1.6746134933536133e-23,2.6088684990099864e-08,-1.4889251025954498e-23,5.928834980295505e-06,1.4293680984916318e-21,-7.114601885405136e-07,-3.20852922663999e-23,-1.4889251025954498e-23,1.3950200106194188e-08,34.0,53.0,0.013065489009022713,-0.00080598279600963,-0.0005275523872114718,1.3212832527642604e-05,1.0570265658316202e-05,5.605444130196702e-06,-0.00080598279600963,0.00010417617886560038,1.0570265658316202e-05,-2.4774060420895694e-06,-6.406221473298501e-07,2.6469779601696886e-23,-0.0005275523872114718,1.0570265658316202e-05,4.337171412771568e-05,-0.0,-4.065486791660078e-07,-6.594639785362233e-07,1.3212832527642604e-05,-2.4774060420895694e-06,-0.0,7.507291144293049e-08,0.0,0.0,1.0570265658316202e-05,-6.406221473298501e-07,-4.065486791660078e-07,0.0,2.4639314588625894e-08,0.0,5.605444130196702e-06,2.6469779601696886e-23,-6.594639785362233e-07,0.0,0.0,1.268200033877065e-08,34.0,54.0,0.012832856737077236,-0.0007912457804195583,-0.0005086580058559775,1.2968150258529931e-05,1.0185892278968822e-05,5.305152171786176e-06,-0.0007912457804195583,0.00010225841833744198,1.0185892278968822e-05,-2.431528173474362e-06,-6.173268047859892e-07,8.470329472543003e-22,-0.0005086580058559775,1.0185892278968822e-05,4.102738603251055e-05,1.1290328736816923e-21,-3.8437329408225196e-07,-6.121329647612583e-07,1.2968150258529931e-05,-2.431528173474362e-06,1.1290328736816923e-21,7.368267063156964e-08,3.4234007377258996e-23,-2.4467708999952944e-23,1.0185892278968822e-05,-6.173268047859892e-07,-3.8437329408225196e-07,3.4234007377258996e-23,2.3295351425645094e-08,0.0,5.305152171786176e-06,8.470329472543003e-22,-6.121329647612583e-07,-2.4467708999952944e-23,0.0,1.1549678546884934e-08,34.0,55.0,0.012608364224433899,-0.0007770381052978337,-0.0004907608963549137,1.2732365576084703e-05,9.822110769164283e-06,5.02593366036308e-06,-0.0007770381052978337,0.00010040999768534675,9.822110769164283e-06,-2.387318545515882e-06,-5.952794595032174e-07,-1.3234889800848443e-22,-0.0004907608963549137,9.822110769164283e-06,3.884903708240017e-05,-0.0,-3.63781879286762e-07,-5.689736326530692e-07,1.2732365576084703e-05,-2.387318545515882e-06,-0.0,7.234298493585811e-08,0.0,0.0,9.822110769164283e-06,-5.952794595032174e-07,-3.63781879286762e-07,0.0,2.2047386138979164e-08,4.1359030627651384e-24,5.02593366036308e-06,-1.3234889800848443e-22,-5.689736326530692e-07,0.0,4.1359030627651384e-24,1.0536548522566136e-08,34.0,56.0,0.0123915895819664,-0.0007633316563442349,-0.0004737920535262674,1.250500190508319e-05,9.477475032326765e-06,4.765971880260622e-06,-0.0007633316563442349,9.862722072284669e-05,9.477475032326765e-06,-2.3446878003596794e-06,-5.743924589296512e-07,2.117582368135751e-22,-0.0004737920535262674,9.477475032326765e-06,3.682224269141443e-05,-0.0,-3.4463545262042317e-07,-5.295524374560046e-07,1.250500190508319e-05,-2.3446878003596794e-06,-0.0,7.105114718797267e-08,0.0,0.0,9.477475032326765e-06,-5.743924589296512e-07,-3.4463545262042317e-07,0.0,2.0886997020852505e-08,-7.444625512977249e-24,4.765971880260622e-06,2.117582368135751e-22,-5.295524374560046e-07,0.0,-7.444625512977249e-24,9.628225328128792e-09,34.0,57.0,0.01218214351683855,-0.0007501004147343338,-0.00045768838026560843,1.228561632160563e-05,9.150665391643997e-06,4.52363428848912e-06,-0.0007501004147343338,9.690664592199028e-05,9.150665391643997e-06,-2.303552946614218e-06,-5.545858243749535e-07,-5.558653716356346e-22,-0.00045768838026560843,9.150665391643997e-06,3.493403710308485e-05,-8.250143121548694e-22,-3.268094985742209e-07,-4.934873913953197e-07,1.228561632160563e-05,-2.303552946614218e-06,-8.250143121548694e-22,6.980463496120137e-08,-2.452883309833309e-23,1.5930451179815797e-23,9.150665391643997e-06,-5.545858243749535e-07,-3.268094985742209e-07,-2.452883309833309e-23,1.9806636331054506e-08,8.271806125530277e-25,4.52363428848912e-06,-5.558653716356346e-22,-4.934873913953197e-07,1.5930451179815797e-23,8.271806125530277e-25,8.8122744656971e-09,34.0,58.0,0.011979660019278526,-0.0007373200496658683,-0.00044239204726181924,1.2073795005562715e-05,8.840474038152024e-06,4.2974525058525614e-06,-0.0007373200496658683,9.524507913738489e-05,8.840474038152024e-06,-2.263836677229847e-06,-5.357862846722128e-07,-7.940933880509066e-23,-0.00044239204726181924,8.840474038152024e-06,3.317277878522873e-05,-0.0,-3.101920640347089e-07,-4.6044132773204183e-07,1.2073795005562715e-05,-2.263836677229847e-06,-0.0,6.860111056994356e-08,0.0,0.0,8.840474038152024e-06,-5.357862846722128e-07,-3.101920640347089e-07,0.0,1.8799518386458658e-08,2.481541837659083e-24,4.2974525058525614e-06,-7.940933880509066e-23,-4.6044132773204183e-07,0.0,2.481541837659083e-24,8.077917890148001e-09,34.0,59.0,0.011783797293901443,-0.0007249679765664041,-0.0004278499400243163,1.1869154150190298e-05,8.545791388314683e-06,4.086102308065165e-06,-0.0007249679765664041,9.363953722640872e-05,8.545791388314683e-06,-2.2254664600040996e-06,-5.179267645871732e-07,-1.1416197110934581e-21,-0.0004278499400243163,8.545791388314683e-06,3.152797216898762e-05,-1.7999450129153882e-21,-2.9468245088537515e-07,-4.301160458908271e-07,1.1869154150190298e-05,-2.2254664600040996e-06,-1.7999450129153882e-21,6.743837843714573e-08,1.9852334701272664e-23,2.7961894226704325e-23,8.545791388314683e-06,-5.179267645871732e-07,-2.9468245088537515e-07,1.9852334701272664e-23,1.785954317767846e-08,5.74930229093714e-24,4.086102308065165e-06,-1.1416197110934581e-21,-4.301160458908271e-07,2.7961894226704325e-23,5.74930229093714e-24,7.415793756848643e-09,34.0,60.0,0.011594236828386784,-0.0007130228914320469,-0.0004140133096370846,1.1671335414575879e-05,8.265601536550093e-06,3.888387709594099e-06,-0.0007130228914320469,9.208722622133791e-05,8.265601536550093e-06,-2.188375447076396e-06,-5.00945532166952e-07,9.531086624204434e-22,-0.0004140133096370846,8.265601536550093e-06,2.999014759552665e-05,6.352747104407253e-22,-2.80189880186299e-07,-4.022469966002973e-07,1.1671335414575879e-05,-2.188375447076396e-06,6.352747104407253e-22,6.631440641058362e-08,4.632211430296955e-23,-2.07885153805437e-23,8.265601536550093e-06,-5.00945532166952e-07,-2.80189880186299e-07,4.632211430296955e-23,1.6981203998511774e-08,-5.8319267932890836e-24,3.888387709594099e-06,9.531086624204434e-22,-4.022469966002973e-07,-2.07885153805437e-23,-5.8319267932890836e-24,6.8177459233709214e-09,34.0,61.0,0.011410677805542946,-0.0007014651200734079,-0.0004008372197858989,1.1480002285679802e-05,7.998968612810131e-06,3.7032264117442537e-06,-0.0007014651200734079,9.058554860530421e-05,7.998968612810131e-06,-2.152500428564963e-06,-4.847860282097827e-07,5.186105381732457e-22,-0.0004008372197858989,7.998968612810131e-06,2.8550744900712743e-05,1.5881867761018131e-22,-2.666322984623548e-07,-3.7659930285371956e-07,1.1480002285679802e-05,-2.152500428564963e-06,1.5881867761018131e-22,6.522728313029802e-08,2.6469779601696886e-23,-9.428157094587592e-24,7.998968612810131e-06,-4.847860282097827e-07,-2.666322984623548e-07,2.6469779601696886e-23,1.6159534155235633e-08,-4.865026292646931e-24,3.7032264117442537e-06,5.186105381732457e-22,-3.7659930285371956e-07,-9.428157094587592e-24,-4.865026292646931e-24,6.2766547515025195e-09,34.0,62.0,0.011232839897274971,-0.0006902760942466557,-0.00038828031392768025,1.1294840078335255e-05,7.74503314460162e-06,3.5296377518534428e-06,-0.0006902760942466557,8.913205965654925e-05,7.74503314460162e-06,-2.1177825146878604e-06,-4.693959567703132e-07,-2.0999591397824665e-21,-0.00038828031392768025,7.74503314460162e-06,2.7202017008676194e-05,-2.8587361969832636e-21,-2.539355250519293e-07,-3.5296375244797673e-07,1.1294840078335255e-05,-2.1177825146878604e-06,-2.8587361969832636e-21,6.417523223944954e-08,3.308722450212111e-24,4.5552021976405556e-23,7.74503314460162e-06,-4.693959567703132e-07,-2.539355250519293e-07,3.308722450212111e-24,1.5390032359619e-08,1.549653981662079e-23,3.5296377518534428e-06,-2.0999591397824665e-21,-3.5296375244797673e-07,4.5552021976405556e-23,1.549653981662079e-23,5.78629144598608e-09,34.0,63.0,0.011060460470616817,-0.0006794384680688381,-0.0003763043787330389,1.111555775423767e-05,7.503001143049914e-06,3.3667313346086303e-06,-0.0006794384680688381,8.772448200033978e-05,7.503001143049914e-06,-2.0841669083893066e-06,-4.547273420030251e-07,-4.270295678497997e-22,-0.0003763043787330389,7.503001143049914e-06,2.593692988739349e-05,-1.3234889800848443e-21,-2.4203228576880065e-07,-3.3115389896920533e-07,1.111555775423767e-05,-2.0841669083893066e-06,-1.3234889800848443e-21,6.315657685718179e-08,1.819797347616661e-23,1.6599196968164236e-23,7.503001143049914e-06,-4.547273420030251e-07,-2.4203228576880065e-07,1.819797347616661e-23,1.4668623649072288e-08,-4.216625621474594e-24,3.3667313346086303e-06,-4.270295678497997e-22,-3.3115389896920533e-07,1.6599196968164236e-23,-4.216625621474594e-24,5.341191933183609e-09,34.0,64.0,0.010893291793763638,-0.0006689358269795775,-0.0003648740821518004,1.0941877008008305e-05,7.272139555425383e-06,3.2136981644725893e-06,-0.0006689358269795775,8.636067650513723e-05,7.272139555425383e-06,-2.051601995844976e-06,-4.4073573235436925e-07,2.7555137096697708e-21,-0.0003648740821518004,7.272139555425383e-06,2.474910070304759e-05,4.4998625322884706e-21,-2.3086157341367652e-07,-3.1100304909159604e-07,1.0941877008008305e-05,-2.051601995844976e-06,4.4998625322884706e-21,6.216975378947609e-08,-3.0605682664462024e-23,-6.101067280374858e-23,7.272139555425383e-06,-4.4073573235436925e-07,-2.3086157341367652e-07,-3.0605682664462024e-23,1.3991610536834287e-08,-1.8483291843810565e-23,3.2136981644725893e-06,2.7555137096697708e-21,-3.1100304909159604e-07,-6.101067280374858e-23,-1.8483291843810565e-23,4.936556052825836e-09,35.0,3.0,0.1361432820558548,-0.011261261068284512,-0.0833333358168602,0.00021450022177305073,0.0023809524718672037,0.014285714365541935,-0.011261261068284512,0.0015594280557706952,0.0023809524718672037,-3.900003866874613e-05,-0.00014005602861288935,2.4936649967166602e-18,-0.0833333358168602,0.0023809524718672037,0.2261904776096344,1.4053065776952006e-19,-0.0023809524718672037,-0.08571428805589676,0.00021450022177305073,-3.900003866874613e-05,1.4053065776952006e-19,1.1470599474705523e-06,-1.9369942597415415e-21,-5.3253719815101997e-20,0.0023809524718672037,-0.00014005602861288935,-0.0023809524718672037,-1.9369942597415415e-21,0.00014005602861288935,-6.505213034913027e-19,0.014285714365541935,2.4936649967166602e-18,-0.08571428805589676,-5.3253719815101997e-20,-6.505213034913027e-19,0.04285714402794838,35.0,4.0,0.11389318108558655,-0.008803089149296284,-0.05428571254014969,0.00016087516269180924,0.0014285714132711291,0.0071428571827709675,-0.008803089149296284,0.0011905793799087405,0.0014285714132711291,-2.9250029911054298e-05,-8.403361425735056e-05,1.6263032587282567e-19,-0.05428571254014969,0.0014285714132711291,0.08619047701358795,1.614282644217242e-19,-0.0009523809421807528,-0.02142857201397419,0.00016087516269180924,-2.9250029911054298e-05,1.614282644217242e-19,8.602949606029142e-07,-1.684685896583416e-21,-4.170863075872868e-20,0.0014285714132711291,-8.403361425735056e-05,-0.0009523809421807528,-1.684685896583416e-21,5.602241071755998e-05,6.776263578034403e-19,0.0071428571827709675,1.6263032587282567e-19,-0.02142857201397419,-4.170863075872868e-20,6.776263578034403e-19,0.0071428571827709675,35.0,5.0,0.097944475710392,-0.007232947275042534,-0.03823129087686539,0.00012870013597421348,0.0009523809421807528,0.004081632476300001,-0.007232947275042534,0.0009636680479161441,0.0009523809421807528,-2.3400023565045558e-05,-5.602241071755998e-05,4.87890977618477e-19,-0.03823129087686539,0.0009523809421807528,0.043605443090200424,8.321004631166429e-20,-0.0004761904710903764,-0.008163264952600002,0.00012870013597421348,-2.3400023565045558e-05,8.321004631166429e-20,6.882359571136476e-07,-7.706580849834435e-22,-1.7355953695788777e-20,0.0009523809421807528,-5.602241071755998e-05,-0.0004761904710903764,-7.706580849834435e-22,2.801120535877999e-05,5.421010862427522e-20,0.004081632476300001,4.87890977618477e-19,-0.008163264952600002,-1.7355953695788777e-20,5.421010862427522e-20,0.0020408162381500006,35.0,6.0,0.0859287828207016,-0.006140834651887417,-0.028401359915733337,0.00010725011088652536,0.0006802721181884408,0.0025510203558951616,-0.006140834651887417,0.0008097260142676532,0.0006802721181884408,-1.9500019334373064e-05,-4.001600609626621e-05,9.215718466126788e-19,-0.028401359915733337,0.0006802721181884408,0.02539115585386753,3.586598590480242e-20,-0.0002721088530961424,-0.0038265306502580643,0.00010725011088652536,-1.9500019334373064e-05,3.586598590480242e-20,5.735299737352761e-07,-3.9554164839248746e-22,-6.3411839433931995e-21,0.0006802721181884408,-4.001600609626621e-05,-0.0002721088530961424,-3.9554164839248746e-22,1.6006402802304365e-05,-2.744386749103933e-19,0.0025510203558951616,9.215718466126788e-19,-0.0038265306502580643,-6.3411839433931995e-21,-2.744386749103933e-19,0.0007653061184100807,35.0,7.0,0.07654440402984619,-0.005336458794772625,-0.02193877473473549,9.192866127705202e-05,0.0005102040595375001,0.001700680237263441,-0.005336458794772625,0.0006983383209444582,0.0005102040595375001,-1.6714302546461113e-05,-3.0012004572199658e-05,-5.421010862427522e-19,-0.02193877473473549,0.0005102040595375001,0.01615646295249462,-6.576445176375148e-20,-0.0001700680295471102,-0.0020408162381500006,9.192866127705202e-05,-1.6714302546461113e-05,-6.576445176375148e-20,4.915971203445224e-07,1.2815873141285967e-21,7.470146942931351e-21,0.0005102040595375001,-3.0012004572199658e-05,-0.0001700680295471102,1.2815873141285967e-21,1.0004001524066553e-05,9.994988777600744e-20,0.001700680237263441,-5.421010862427522e-19,-0.0020408162381500006,7.470146942931351e-21,9.994988777600744e-20,0.0003401360590942204,35.0,8.0,0.06901007890701294,-0.00471900450065732,-0.01746031828224659,8.043758134590462e-05,0.00039682540227659047,0.0011904762359336019,-0.00471900450065732,0.0006139638717286289,0.00039682540227659047,-1.4625014955527149e-05,-2.3342670829151757e-05,-2.303929616531697e-19,-0.01746031828224659,0.00039682540227659047,0.010941043496131897,-4.1523161355757804e-20,-0.00011337868636474013,-0.0011904762359336019,8.043758134590462e-05,-1.4625014955527149e-05,-4.1523161355757804e-20,4.301474803014571e-07,-2.1561673851674106e-22,6.1203517614421164e-21,0.00039682540227659047,-2.3342670829151757e-05,-0.00011337868636474013,-2.1561673851674106e-22,6.669334197795251e-06,5.082197683525802e-21,0.0011904762359336019,-2.303929616531697e-19,-0.0011904762359336019,6.1203517614421164e-21,5.082197683525802e-21,0.0001700680295471102,35.0,9.0,0.0628269836306572,-0.004229944199323654,-0.014227993786334991,7.150007149903104e-05,0.0003174603043589741,0.0008658008882775903,-0.004229944199323654,0.0005478205275721848,0.0003174603043589741,-1.3000012586417142e-05,-1.8674136299523525e-05,2.1006417091906648e-19,-0.014227993786334991,0.0003174603043589741,0.007762317080050707,6.3184922143041105e-21,-7.936507608974352e-05,-0.000742115022148937,7.150007149903104e-05,-1.3000012586417142e-05,6.3184922143041105e-21,3.823533347713237e-07,-7.4549166768024e-23,-7.817646911708781e-22,0.0003174603043589741,-1.8674136299523525e-05,-7.936507608974352e-05,-7.4549166768024e-23,4.668534074880881e-06,-4.0657581468206416e-20,0.0008658008882775903,2.1006417091906648e-19,-0.000742115022148937,-7.817646911708781e-22,-4.0657581468206416e-20,9.276437776861712e-05,35.0,10.0,0.05766116827726364,-0.003832923946902156,-0.011818181723356247,6.435006798710674e-05,0.0002597402490209788,0.0006493506371043622,-0.003832923946902156,0.0004945663968101144,0.0002597402490209788,-1.1700011782522779e-05,-1.5278837963705882e-05,1.8295911660692887e-19,-0.011818181723356247,0.0002597402490209788,0.0057106781750917435,2.1953722423978275e-20,-5.77200589759741e-05,-0.0004870129923801869,6.435006798710674e-05,-1.1700011782522779e-05,2.1953722423978275e-20,3.441179785568238e-07,-1.6544110811152653e-22,-1.883135431458963e-21,0.0002597402490209788,-1.5278837963705882e-05,-5.77200589759741e-05,-1.6544110811152653e-22,3.3952974263229407e-06,-2.286988957586611e-20,0.0006493506371043622,1.8295911660692887e-19,-0.0004870129923801869,-1.883135431458963e-21,-2.286988957586611e-20,5.411255551734939e-05,35.0,11.0,0.05328050255775452,-0.00350415357388556,-0.009973360225558281,5.8500059822108597e-05,0.00021645022206939757,0.0004995004856027663,-0.00350415357388556,0.0004507632984314114,0.00021645022206939757,-1.0636374099703971e-05,-1.2732365576084703e-05,1.2874900798265365e-19,-0.009973360225558281,0.00021645022206939757,0.004325674381107092,3.797096023094527e-20,-4.329004150349647e-05,-0.0003330003237351775,5.8500059822108597e-05,-1.0636374099703971e-05,3.797096023094527e-20,3.128345440472913e-07,-4.894124357991876e-22,-2.9337265010803745e-21,0.00021645022206939757,-1.2732365576084703e-05,-4.329004150349647e-05,-4.894124357991876e-22,2.5464730697422056e-06,-1.6940658945086007e-21,0.0004995004856027663,1.2874900798265365e-19,-0.0003330003237351775,-2.9337265010803745e-21,-1.6940658945086007e-21,3.330003164592199e-05,35.0,12.0,0.04951855167746544,-0.0032274031545966864,-0.008529565297067165,5.362505544326268e-05,0.00018315018678549677,0.0003924646880477667,-0.0032274031545966864,0.0004140974779147655,0.00018315018678549677,-9.750009667186532e-06,-1.0773540452646557e-05,1.0164395367051604e-20,-0.008529565297067165,0.00018315018678549677,0.0033561675809323788,-2.9100459518859865e-20,-3.330003164592199e-05,-0.00023547880118712783,5.362505544326268e-05,-9.750009667186532e-06,-2.9100459518859865e-20,2.8676498686763807e-07,2.6887580531941107e-22,2.015539663326783e-21,0.00018315018678549677,-1.0773540452646557e-05,-3.330003164592199e-05,2.6887580531941107e-22,1.958825578185497e-06,-1.6305384234645282e-20,0.0003924646880477667,1.0164395367051604e-20,-0.00023547880118712783,2.015539663326783e-21,-1.6305384234645282e-20,2.1407164240372367e-05,35.0,13.0,0.04625284671783447,-0.002991217188537121,-0.007378336042165756,4.950004949932918e-05,0.00015698587230872363,0.00031397174461744726,-0.002991217188537121,0.0003829541674349457,0.00015698587230872363,-9.000009413284715e-06,-9.234462595486548e-06,1.6940658945086007e-20,-0.007378336042165756,0.00015698587230872363,0.00265686702914536,4.9488491409782215e-21,-2.616431265778374e-05,-0.00017125731392297894,4.950004949932918e-05,-9.000009413284715e-06,4.9488491409782215e-21,2.6470615921425633e-07,-1.092329510790038e-22,-3.189048590575483e-22,0.00015698587230872363,-9.234462595486548e-06,-2.616431265778374e-05,-1.092329510790038e-22,1.5390771750389831e-06,-4.235164736271502e-22,0.00031397174461744726,1.6940658945086007e-20,-0.00017125731392297894,-3.189048590575483e-22,-4.235164736271502e-22,1.4271442523750011e-05,35.0,14.0,0.04339125007390976,-0.002787277102470398,-0.006445578299462795,4.596433063852601e-05,0.0001360544265480712,0.00025510202976875007,-0.002787277102470398,0.00035617194953374565,0.0001360544265480712,-8.357151273230556e-06,-8.003201401152182e-06,3.3881317890172014e-20,-0.006445578299462795,0.0001360544265480712,0.002139586489647627,1.6946698009792497e-20,-2.093144939863123e-05,-0.00012755101488437504,4.596433063852601e-05,-8.357151273230556e-06,1.6946698009792497e-20,2.457985601722612e-07,7.935716670026296e-23,-1.2056158437702337e-21,0.0001360544265480712,-8.003201401152182e-06,-2.093144939863123e-05,7.935716670026296e-23,1.231261762768554e-06,2.2234614865425384e-21,0.00025510202976875007,3.3881317890172014e-20,-0.00012755101488437504,-1.2056158437702337e-21,2.2234614865425384e-21,9.811617019295227e-06,35.0,15.0,0.04086311161518097,-0.0026093951892107725,-0.005679271649569273,4.290004289941862e-05,0.0001190476177725941,0.0002100840356433764,-0.0026093951892107725,0.00033289400744251907,0.0001190476177725941,-7.800007551850285e-06,-7.002801339694997e-06,-6.437450399132683e-20,-0.005679271649569273,0.0001190476177725941,0.0017486225115135312,-2.4043230734488374e-20,-1.70068033185089e-05,-9.696186316432431e-05,4.290004289941862e-05,-7.800007551850285e-06,-2.4043230734488374e-20,2.2941199517845234e-07,4.875274999978163e-22,1.0012813308110911e-21,0.0001190476177725941,-7.002801339694997e-06,-1.70068033185089e-05,4.875274999978163e-22,1.0004001751440228e-06,4.341043854678289e-21,0.0002100840356433764,-6.437450399132683e-20,-9.696186316432431e-05,1.0012813308110911e-21,4.341043854678289e-21,6.925847173988586e-06,35.0,16.0,0.038613349199295044,-0.0024528729263693094,-0.005042016971856356,4.021879067295231e-05,0.0001050420178216882,0.00017507003212813288,-0.0024528729263693094,0.00031247432343661785,0.0001050420178216882,-7.3125074777635746e-06,-6.1789423853042535e-06,1.8634724839594607e-20,-0.005042016971856356,0.0001050420178216882,0.0014475790085271,1.6303369597489317e-20,-1.4005602679389995e-05,-7.503000961150974e-05,4.021879067295231e-05,-7.3125074777635746e-06,1.6303369597489317e-20,2.1507374015072855e-07,-2.181150925580122e-22,-7.842935899063994e-22,0.0001050420178216882,-6.1789423853042535e-06,-1.4005602679389995e-05,-2.181150925580122e-22,8.238589543907437e-07,2.064642808932357e-21,0.00017507003212813288,1.8634724839594607e-20,-7.503000961150974e-05,-7.842935899063994e-22,2.064642808932357e-21,5.002000762033276e-06,35.0,17.0,0.036598384380340576,-0.0023140788543969393,-0.004506363999098539,3.7852980312891304e-05,9.337068331660703e-05,0.00014742738858330995,-0.0023140788543969393,0.00029441656079143286,9.337068331660703e-05,-6.882359684823314e-06,-5.492393029271625e-06,-1.6940658945086007e-21,-0.004506363999098539,9.337068331660703e-05,0.0012119760503992438,-1.1795052293832403e-21,-1.1671335414575879e-05,-5.897095616091974e-05,3.7852980312891304e-05,-6.882359684823314e-06,-1.1795052293832403e-21,2.0242234199940867e-07,7.122940657602604e-24,2.6375078427746914e-23,9.337068331660703e-05,-5.492393029271625e-06,-1.1671335414575879e-05,7.122940657602604e-24,6.865491286589531e-07,-2.117582368135751e-22,0.00014742738858330995,-1.6940658945086007e-21,-5.897095616091974e-05,2.6375078427746914e-23,-2.117582368135751e-22,3.685684760057484e-06,35.0,18.0,0.03478327766060829,-0.002190160099416971,-0.004051796160638332,3.575003574951552e-05,8.3542188804131e-05,0.0001253132795682177,-0.002190160099416971,0.00027833308558911085,8.3542188804131e-05,-6.500006293208571e-06,-4.914246346743312e-06,4.0657581468206416e-20,-0.004051796160638332,8.3542188804131e-05,0.0010249274782836437,1.1210458955678673e-20,-9.828492693486623e-06,-4.699248165707104e-05,3.575003574951552e-05,-6.500006293208571e-06,1.1210458955678673e-20,1.9117666738566186e-07,-1.0937343142900557e-22,-5.168902407982377e-22,8.3542188804131e-05,-4.914246346743312e-06,-9.828492693486623e-06,-1.0937343142900557e-22,5.781466256848944e-07,-2.5940384009662948e-21,0.0001253132795682177,4.0657581468206416e-20,-4.699248165707104e-05,-5.168902407982377e-22,-2.5940384009662948e-21,2.7642636268865317e-06,35.0,19.0,0.033139701932668686,-0.002078845864161849,-0.003662728238850832,3.386845492059365e-05,7.518797065131366e-05,0.00010741138248704374,-0.002078845864161849,0.0002639167651068419,7.518797065131366e-05,-6.157900770631386e-06,-4.422821803018451e-06,6.776263578034403e-21,-0.003662728238850832,7.518797065131366e-05,0.0008745252271182835,2.2424086885520477e-22,-8.35421906231204e-06,-3.790990012930706e-05,3.386845492059365e-05,-6.157900770631386e-06,2.2424086885520477e-22,1.8111472854798194e-07,-3.6613054095224524e-23,2.401438692532407e-23,7.518797065131366e-05,-4.422821803018451e-06,-8.35421906231204e-06,-3.6613054095224524e-23,4.914246574116987e-07,-1.164670302474663e-21,0.00010741138248704374,6.776263578034403e-21,-3.790990012930706e-05,2.401438692532407e-23,-1.164670302474663e-21,2.1061055122117978e-06,35.0,20.0,0.031644437462091446,-0.001978304935619235,-0.0033271489664912224,3.217503399355337e-05,6.80272132740356e-05,9.276437776861712e-05,-0.001978304935619235,0.00025092100258916616,6.80272132740356e-05,-5.8500058912613895e-06,-4.001600700576091e-06,4.743384504624082e-20,-0.0033271489664912224,6.80272132740356e-05,0.0007522052037529647,1.4769763817118933e-20,-7.160759196267463e-06,-3.092145925620571e-05,3.217503399355337e-05,-5.8500058912613895e-06,1.4769763817118933e-20,1.720589892784119e-07,-1.28035356091638e-22,-6.439217366781021e-22,6.80272132740356e-05,-4.001600700576091e-06,-7.160759196267463e-06,-1.28035356091638e-22,4.21221130864069e-07,-2.091112588534054e-21,9.276437776861712e-05,4.743384504624082e-20,-3.092145925620571e-05,-6.439217366781021e-22,-2.091112588534054e-21,1.627445271878969e-06,35.0,21.0,0.030278272926807404,-0.0018870447529479861,-0.0030356806237250566,3.0642888305010274e-05,6.184291851241142e-05,8.066467853495851e-05,-0.0018870447529479861,0.00023914562189020216,6.184291851241142e-05,-5.571434030571254e-06,-3.637818736024201e-06,-0.0,-0.0030356806237250566,6.184291851241142e-05,0.0006516998400911689,0.0,-6.184292033140082e-06,-2.5473056666669436e-05,3.0642888305010274e-05,-5.571434030571254e-06,0.0,1.6386570678150747e-07,0.0,-0.0,6.184291851241142e-05,-3.637818736024201e-06,-6.184292033140082e-06,0.0,3.63781879286762e-07,-0.0,8.066467853495851e-05,-0.0,-2.5473056666669436e-05,-0.0,-0.0,1.2736527423840016e-06,35.0,22.0,0.029025185853242874,-0.001803836552426219,-0.0027809147723019123,2.9250029911054298e-05,5.6465272791683674e-05,7.058159098960459e-05,-0.001803836552426219,0.00022842633188702166,5.6465272791683674e-05,-5.318187049851986e-06,-3.3214867016795324e-06,-0.0,-0.0027809147723019123,5.6465272791683674e-05,0.0005683498457074165,2.117582368135751e-22,-5.377645265980391e-06,-2.1174477296881378e-05,2.9250029911054298e-05,-5.318187049851986e-06,2.117582368135751e-22,1.5641727202364564e-07,0.0,-0.0,5.6465272791683674e-05,-3.3214867016795324e-06,-5.377645265980391e-06,0.0,3.1633206276637793e-07,-0.0,7.058159098960459e-05,-0.0,-2.1174477296881378e-05,-0.0,-0.0,1.0083084589496139e-06,35.0,23.0,0.027871690690517426,-0.0017276593716815114,-0.0025569358840584755,2.7978288926533423e-05,5.1759834605036303e-05,6.211180152604356e-05,-0.0017276593716815114,0.00021862713037990034,5.1759834605036303e-05,-5.086961664346745e-06,-3.044696086362819e-06,-0.0,-0.0025569358840584755,5.1759834605036303e-05,0.0004986421554349363,0.0,-4.705439550889423e-06,-1.7746229787007906e-05,2.7978288926533423e-05,-5.086961664346745e-06,0.0,1.4961651118028385e-07,0.0,-0.0,5.1759834605036303e-05,-3.044696086362819e-06,-4.705439550889423e-06,0.0,2.7679055847329437e-07,-0.0,6.211180152604356e-05,-0.0,-1.7746229787007906e-05,-0.0,-0.0,8.066467671596911e-07,35.0,24.0,0.02680637314915657,-0.0016576576745137572,-0.0023589744232594967,2.681252772163134e-05,4.761904710903764e-05,5.494505603564903e-05,-0.0016576576745137572,0.00020963438146281987,4.761904710903764e-05,-4.875004833593266e-06,-2.8011204449285287e-06,1.5896154398043144e-20,-0.0023589744232594967,4.761904710903764e-05,0.0004398934543132782,1.1618431865490642e-20,-4.140786586503964e-06,-1.4985014786361717e-05,2.681252772163134e-05,-4.875004833593266e-06,1.1618431865490642e-20,1.4338249343381904e-07,3.970466940254533e-23,-4.499079477399512e-22,4.761904710903764e-05,-2.8011204449285287e-06,-4.140786586503964e-06,3.970466940254533e-23,2.435756982777093e-07,-5.2111709636793116e-23,5.494505603564903e-05,1.5896154398043144e-20,-1.4985014786361717e-05,-4.499079477399512e-22,-5.2111709636793116e-23,6.515223844871798e-07,35.0,25.0,0.02581948973238468,-0.0015931095695123076,-0.002183150267228484,2.5740026103449054e-05,4.395604264573194e-05,4.88400473841466e-05,-0.0015931095695123076,0.00020135243539698422,4.395604264573194e-05,-4.680004622059641e-06,-2.5856495540210744e-06,1.4314486516026588e-20,-0.002183150267228484,4.395604264573194e-05,0.00039003026904538274,1.1871039415191126e-20,-3.663003553810995e-06,-1.2740882084472105e-05,2.5740026103449054e-05,-4.680004622059641e-06,1.1871039415191126e-20,1.3764719142272952e-07,-9.26442286059391e-23,-3.5345446759488088e-22,4.395604264573194e-05,-2.5856495540210744e-06,-3.663003553810995e-06,-9.26442286059391e-23,2.15470805642326e-07,-1.9141947154548142e-22,4.88400473841466e-05,1.4314486516026588e-20,-1.2740882084472105e-05,-3.5345446759488088e-22,-1.9141947154548142e-22,5.308700679051981e-07,35.0,26.0,0.024902688339352608,-0.0015334015479311347,-0.0020262806210666895,2.475002474966459e-05,4.0700040699448436e-05,4.3607185943983495e-05,-0.0015334015479311347,0.00019370019435882568,4.0700040699448436e-05,-4.500004706642358e-06,-2.3941199742694153e-06,-0.0,-0.0020262806210666895,4.0700040699448436e-05,0.00034743300057016313,0.0,-3.256003310525557e-06,-1.0901796485995874e-05,2.475002474966459e-05,-4.500004706642358e-06,0.0,1.3235307960712817e-07,0.0,-0.0,4.0700040699448436e-05,-2.3941199742694153e-06,-3.256003310525557e-06,0.0,1.9152960817336862e-07,-0.0,4.3607185943983495e-05,-0.0,-1.0901796485995874e-05,-0.0,-0.0,4.360718719453871e-07,35.0,27.0,0.024048760533332825,-0.001478008576668799,-0.0018857350805774331,2.383335777267348e-05,3.779289545491338e-05,3.9096099499147385e-05,-0.001478008576668799,0.00018660844943951815,3.779289545491338e-05,-4.333337528805714e-06,-2.223111550847534e-06,-5.977542340638461e-21,-0.0018857350805774331,3.779289545491338e-05,0.0003108240198343992,1.0587911840678754e-22,-2.9071456992824096e-06,-9.383063115819823e-06,2.383335777267348e-05,-4.333337528805714e-06,1.0587911840678754e-22,1.274511021165381e-07,0.0,-0.0,3.779289545491338e-05,-2.223111550847534e-06,-2.9071456992824096e-06,0.0,1.7100857974128303e-07,4.598109415126358e-22,3.9096099499147385e-05,-5.977542340638461e-21,-9.383063115819823e-06,-0.0,4.598109415126358e-22,3.6088707133785647e-07,35.0,28.0,0.023251453414559364,-0.0014264793135225773,-0.0017593244556337595,2.2982165319263004e-05,3.518648736644536e-05,3.518648736644536e-05,-0.0014264793135225773,0.0001800177851691842,3.518648736644536e-05,-4.178575636615278e-06,-2.0697934814961627e-06,7.835054762102278e-21,-0.0017593244556337595,3.518648736644536e-05,0.00027918623527511954,4.7855484207618386e-21,-2.606406496852287e-06,-8.119958692986984e-06,2.2982165319263004e-05,-4.178575636615278e-06,4.7855484207618386e-21,1.228992800861306e-07,6.120254270856006e-23,-1.689632142811573e-22,3.518648736644536e-05,-2.0697934814961627e-06,-2.606406496852287e-06,6.120254270856006e-23,1.5331802671880723e-07,-1.7205356741102976e-22,3.518648736644536e-05,7.835054762102278e-21,-8.119958692986984e-06,-1.689632142811573e-22,-1.7205356741102976e-22,3.0073923085183196e-07,35.0,29.0,0.022505315020680428,-0.0013784227194264531,-0.0016452142735943198,2.2189677110873163e-05,3.284072226961143e-05,3.1781342840986326e-05,-0.0013784227194264531,0.00017387689149472862,3.284072226961143e-05,-4.034486664750148e-06,-1.9318072190799285e-06,-5.929230630780102e-21,-0.0016452142735943198,3.284072226961143e-05,0.00025170319713652134,-4.175228069191219e-21,-2.3457657789549557e-06,-7.062521035550162e-06,2.2189677110873163e-05,-4.034486664750148e-06,-4.175228069191219e-21,1.1866137583638192e-07,-4.0498004726820754e-23,1.2707857509868802e-22,3.284072226961143e-05,-1.9318072190799285e-06,-2.3457657789549557e-06,-4.0498004726820754e-23,1.379862339945248e-07,9.926167350636332e-23,3.1781342840986326e-05,-5.929230630780102e-21,-7.062521035550162e-06,1.2707857509868802e-22,9.926167350636332e-23,2.522328941267915e-07,35.0,30.0,0.021805573254823685,-0.001333499443717301,-0.0015418586554005742,2.145002144970931e-05,3.072196705034003e-05,2.8801843654946424e-05,-0.001333499443717301,0.00016814122500363737,3.072196705034003e-05,-3.900003775925143e-06,-1.8071744989356375e-06,-1.0587911840678754e-22,-0.0015418586554005742,3.072196705034003e-05,0.00022771427757106721,-0.0,-2.1187563561397837e-06,-6.171823770273477e-06,2.145002144970931e-05,-3.900003775925143e-06,-0.0,1.1470599758922617e-07,-6.617444900424222e-24,3.308722450212111e-24,3.072196705034003e-05,-1.8071744989356375e-06,-2.1187563561397837e-06,-6.617444900424222e-24,1.2463272014429094e-07,0.0,2.8801843654946424e-05,-1.0587911840678754e-22,-6.171823770273477e-06,3.308722450212111e-24,0.0,2.1282150441948033e-07,35.0,31.0,0.02114802971482277,-0.0012914123944938183,-0.0014479472301900387,2.075808515655808e-05,2.8801843654946424e-05,2.618349390104413e-05,-0.0012914123944938183,0.0001627719757379964,2.8801843654946424e-05,-3.774197239181376e-06,-1.6942260572250234e-06,-1.4823076576950256e-21,-0.0014479472301900387,2.8801843654946424e-05,0.00020668107026722282,-0.0,-1.9201229406462517e-06,-5.417274678620743e-06,2.075808515655808e-05,-3.774197239181376e-06,-0.0,1.110058036601913e-07,-6.617444900424222e-24,0.0,2.8801843654946424e-05,-1.6942260572250234e-06,-1.9201229406462517e-06,-6.617444900424222e-24,1.1294840618347735e-07,9.926167350636332e-23,2.618349390104413e-05,-1.4823076576950256e-21,-5.417274678620743e-06,0.0,9.926167350636332e-23,1.8057582451547205e-07,35.0,32.0,0.02052898332476616,-0.0012519012670964003,-0.0013623631093651056,2.0109395336476155e-05,2.7056277758674696e-05,2.387318636465352e-05,-0.0012519012670964003,0.0001577350776642561,2.7056277758674696e-05,-3.6562537388817873e-06,-1.591545697010588e-06,-8.470329472543003e-22,-0.0013623631093651056,2.7056277758674696e-05,0.00018816177907865494,-0.0,-1.7455662373322411e-06,-4.774637091031764e-06,2.0109395336476155e-05,-3.6562537388817873e-06,-0.0,1.0753687007536428e-07,-6.617444900424222e-24,3.308722450212111e-24,2.7056277758674696e-05,-1.591545697010588e-06,-1.7455662373322411e-06,-6.617444900424222e-24,1.0268036731986285e-07,4.632211430296955e-23,2.387318636465352e-05,-8.470329472543003e-22,-4.774637091031764e-06,3.308722450212111e-24,4.632211430296955e-23,1.5402055453250796e-07,35.0,33.0,0.019945144653320312,-0.0012147364905104041,-0.0012841500574722886,1.9500019334373064e-05,2.5464731152169406e-05,2.1826912416145205e-05,-0.0012147364905104041,0.00015300062659662217,2.5464731152169406e-05,-3.5454581848171074e-06,-1.4979253819547012e-06,2.117582368135751e-22,-0.0012841500574722886,2.5464731152169406e-05,0.00017179158749058843,-0.0,-1.591545697010588e-06,-4.2245637814630754e-06,1.9500019334373064e-05,-3.5454581848171074e-06,-0.0,1.042781789806213e-07,0.0,0.0,2.5464731152169406e-05,-1.4979253819547012e-06,-1.591545697010588e-06,0.0,9.362033637216882e-08,-6.617444900424222e-24,2.1826912416145205e-05,2.117582368135751e-22,-4.2245637814630754e-06,0.0,-6.617444900424222e-24,1.320176181707211e-07,35.0,34.0,0.019393594935536385,-0.0011797151528298855,-0.0012124850181862712,1.8926490156445652e-05,2.4009603293961845e-05,2.0008003048133105e-05,-0.0011797151528298855,0.00014854215260129422,2.4009603293961845e-05,-3.441179842411657e-06,-1.4123296523393947e-06,1.0587911840678754e-22,-0.0012124850181862712,2.4009603293961845e-05,0.00015726745186839253,-1.3640777038157654e-22,-1.455127517147048e-06,-3.751500571524957e-06,1.8926490156445652e-05,-3.441179842411657e-06,-1.3640777038157654e-22,1.0121117099970434e-07,1.262121932267414e-24,4.9082692808884314e-24,2.4009603293961845e-05,-1.4123296523393947e-06,-1.455127517147048e-06,1.262121932267414e-24,8.559573672073384e-08,-1.3234889800848443e-23,2.0008003048133105e-05,1.0587911840678754e-22,-3.751500571524957e-06,4.9082692808884314e-24,-1.3234889800848443e-23,1.1368183550075628e-07,35.0,35.0,0.0188717283308506,-0.0011466568103060126,-0.0011466568103060126,1.8385731891612522e-05,2.2675736545352265e-05,1.8385731891612522e-05,-0.0011466568103060126,0.00014433619799092412,2.2675736545352265e-05,-3.3428605092922226e-06,-1.3338668622964178e-06,5.293955920339377e-22,-0.0011466568103060126,2.2675736545352265e-05,0.00014433619799092412,-1.2519169554404626e-22,-1.3338668622964178e-06,-3.3428605092922226e-06,1.8385731891612522e-05,-3.3428605092922226e-06,-1.2519169554404626e-22,9.831942548998995e-08,1.1569450799265595e-24,2.899469301192502e-24,2.2675736545352265e-05,-1.3338668622964178e-06,-1.3338668622964178e-06,1.1569450799265595e-24,7.846275451584006e-08,-3.3087224502121107e-23,1.8385731891612522e-05,5.293955920339377e-22,-3.3428605092922226e-06,2.899469301192502e-24,-3.3087224502121107e-23,9.831942548998995e-08,35.0,36.0,0.018377210944890976,-0.0011154011590406299,-0.0010860484326258302,1.787501787475776e-05,2.145002144970931e-05,1.6934227460296825e-05,-0.0011154011590406299,0.00014036190987098962,2.145002144970931e-05,-3.2500031466042856e-06,-1.2617659876923426e-06,-3.1763735522036263e-22,-0.0010860484326258302,2.145002144970931e-05,0.00013278520782478154,-0.0,-1.225715550390305e-06,-2.9883931347285397e-06,1.787501787475776e-05,-3.2500031466042856e-06,-0.0,9.558833369283093e-08,3.308722450212111e-24,-1.6543612251060553e-24,2.145002144970931e-05,-1.2617659876923426e-06,-1.225715550390305e-06,3.308722450212111e-24,7.2100910131212e-08,2.3161057151484775e-23,1.6934227460296825e-05,-3.1763735522036263e-22,-2.9883931347285397e-06,-1.6543612251060553e-24,2.3161057151484775e-23,8.53826591651341e-08,35.0,37.0,0.017907949164509773,-0.001085804309695959,-0.0010301220463588834,1.7391908841091208e-05,2.032107295235619e-05,1.563159457873553e-05,-0.001085804309695959,0.00013660064723808318,2.032107295235619e-05,-3.1621652851754334e-06,-1.1953571856793133e-06,0.0,-0.0010301220463588834,2.032107295235619e-05,0.00012243508535902947,-0.0,-1.1289484973531216e-06,-2.679701992747141e-06,1.7391908841091208e-05,-3.1621652851754334e-06,-0.0,9.300486425445342e-08,0.0,-1.6543612251060553e-24,2.032107295235619e-05,-1.1953571856793133e-06,-1.1289484973531216e-06,0.0,6.640873806418313e-08,6.617444900424222e-24,1.563159457873553e-05,0.0,-2.679701992747141e-06,-1.6543612251060553e-24,6.617444900424222e-24,7.443616567570643e-08,35.0,38.0,0.017462054267525673,-0.0010577378561720252,-0.000978407566435635,1.6934227460296825e-05,1.9278966647107154e-05,1.4459224985330366e-05,-0.0010577378561720252,0.0001330357335973531,1.9278966647107154e-05,-3.078950385315693e-06,-1.1340569017193047e-06,2.117582368135751e-22,-0.000978407566435635,1.9278966647107154e-05,0.0001131336684920825,-0.0,-1.0421063052490354e-06,-2.4098708308883943e-06,1.6934227460296825e-05,-3.078950385315693e-06,-0.0,9.055736427399097e-08,3.308722450212111e-24,0.0,1.9278966647107154e-05,-1.1340569017193047e-06,-1.0421063052490354e-06,3.308722450212111e-24,6.130036922513682e-08,-9.926167350636332e-24,1.4459224985330366e-05,2.117582368135751e-22,-2.4098708308883943e-06,0.0,-9.926167350636332e-24,6.513164407806471e-08,35.0,39.0,0.017037823796272278,-0.0010310860816389322,-0.0009304923005402088,1.6500016499776393e-05,1.8315018678549677e-05,1.3401232536125463e-05,-0.0010310860816389322,0.00012965219502802938,1.8315018678549677e-05,-3.0000030619703466e-06,-1.0773539997899206e-06,-3.1763735522036263e-22,-0.0009304923005402088,1.8315018678549677e-05,0.00010475137969478965,9.085733874875591e-23,-9.639483096179902e-07,-2.173173015762586e-06,1.6500016499776393e-05,-3.0000030619703466e-06,9.085733874875591e-23,8.823538166780054e-08,-4.1448144299809675e-24,-2.305658001876685e-25,1.8315018678549677e-05,-1.0773539997899206e-06,-9.639483096179902e-07,-4.1448144299809675e-24,5.670284153325156e-08,1.6543612251060553e-23,1.3401232536125463e-05,-3.1763735522036263e-22,-2.173173015762586e-06,-2.305658001876685e-25,1.6543612251060553e-23,5.718876039395582e-08,35.0,40.0,0.016633717343211174,-0.0010057444451376796,-0.0008860129164531827,1.6087516996776685e-05,1.742160202411469e-05,1.244400209543528e-05,-0.0010057444451376796,0.00012643649824894965,1.742160202411469e-05,-2.9250029456306947e-06,-1.0248002126900246e-06,3.705769144237564e-22,-0.0008860129164531827,1.742160202411469e-05,9.71774134086445e-05,-8.428797018733948e-23,-8.934155175666092e-07,-1.9648423403850757e-06,1.6087516996776685e-05,-2.9250029456306947e-06,-8.428797018733948e-23,8.602949463920595e-08,7.749144360623832e-25,1.7042290672296016e-24,1.742160202411469e-05,-1.0248002126900246e-06,-8.934155175666092e-07,7.749144360623832e-25,5.2553854601455896e-08,-1.9852334701272664e-23,1.244400209543528e-05,3.705769144237564e-22,-1.9648423403850757e-06,1.7042290672296016e-24,-1.9852334701272664e-23,5.038057437900534e-08,35.0,41.0,0.01624833606183529,-0.0009816187666729093,-0.0008446486899629235,1.5695137335569598e-05,1.6592002793913707e-05,1.1575815733522177e-05,-0.0009816187666729093,0.0001233764924108982,1.6592002793913707e-05,-2.8536614991026e-06,-9.76000137598021e-07,3.705769144237564e-22,-0.0008446486899629235,1.6592002793913707e-05,9.031659283209592e-05,-7.833715692803771e-23,-8.296001396956854e-07,-1.7808947632147465e-06,1.5695137335569598e-05,-2.8536614991026e-06,-7.833715692803771e-23,8.393121930794223e-08,7.19563419001872e-25,1.544679976996389e-24,1.6592002793913707e-05,-9.76000137598021e-07,-8.296001396956854e-07,7.19563419001872e-25,4.8800007590443784e-08,-2.150669592637872e-23,1.1575815733522177e-05,3.705769144237564e-22,-1.7808947632147465e-06,1.544679976996389e-24,-2.150669592637872e-23,4.45223697909114e-08,35.0,42.0,0.015880407765507698,-0.0009586235391907394,-0.000806115276645869,1.5321444152505137e-05,1.582028198754415e-05,1.0786555321828928e-05,-0.0009586235391907394,0.0001204611107823439,1.582028198754415e-05,-2.785717015285627e-06,-9.306048127655231e-07,-1.5881867761018131e-22,-0.000806115276645869,1.582028198754415e-05,8.408690337091684e-05,7.293376264986138e-23,-7.717210337432334e-07,-1.6179833437490743e-06,1.5321444152505137e-05,-2.785717015285627e-06,7.293376264986138e-23,8.193285339075373e-08,-6.693612970697384e-25,-5.7619623251745795e-25,1.582028198754415e-05,-9.306048127655231e-07,-7.717210337432334e-07,-6.693612970697384e-25,4.539535680692097e-08,9.926167350636332e-24,1.0786555321828928e-05,-1.5881867761018131e-22,-1.6179833437490743e-06,-5.7619623251745795e-25,9.926167350636332e-24,3.9463007084350465e-08,35.0,43.0,0.015528772957623005,-0.0009366811718791723,-0.0007701600552536547,1.4965131413191557e-05,1.510117817815626e-05,1.0067451512441039e-05,-0.0009366811718791723,0.0001176803489215672,1.510117817815626e-05,-2.720933025557315e-06,-8.883045552465774e-07,-1.5881867761018131e-22,-0.0007701600552536547,1.510117817815626e-05,7.841738261049613e-05,1.3603247453908308e-22,-7.19103695701051e-07,-1.4732856925547821e-06,1.4965131413191557e-05,-2.720933025557315e-06,1.3603247453908308e-22,8.002744067425738e-08,-4.5561687100216324e-24,-9.013819539818607e-25,1.510117817815626e-05,-8.883045552465774e-07,-7.19103695701051e-07,-4.5561687100216324e-24,4.230021843909526e-08,9.926167350636332e-24,1.0067451512441039e-05,-1.5881867761018131e-22,-1.4732856925547821e-06,-9.013819539818607e-25,9.926167350636332e-24,3.507823009840649e-08,35.0,44.0,0.015192371793091297,-0.0009157209424301982,-0.000736558111384511,1.4625014955527149e-05,1.4430014743993524e-05,9.410879101778846e-06,-0.0009157209424301982,0.00011502509005367756,1.4430014743993524e-05,-2.659093524925993e-06,-8.488243565807352e-07,4.235164736271502e-22,-0.000736558111384511,1.4430014743993524e-05,7.324644684558734e-05,-6.353116543746386e-23,-6.711634341627359e-07,-1.3444113164950977e-06,1.4625014955527149e-05,-2.659093524925993e-06,-6.353116543746386e-23,7.820863601182282e-08,7.199586383153878e-24,3.3891029884153465e-25,1.4430014743993524e-05,-8.488243565807352e-07,-6.711634341627359e-07,7.199586383153878e-24,3.948020221855586e-08,-1.9852334701272664e-23,9.410879101778846e-06,4.235164736271502e-22,-1.3444113164950977e-06,3.3891029884153465e-25,-1.9852334701272664e-23,3.126537961861686e-08,35.0,45.0,0.01487023662775755,-0.000895678298547864,-0.0007051084539853036,1.4300014299806207e-05,1.3802622561343014e-05,8.810184226604179e-06,-0.000895678298547864,0.00011248701775912195,1.3802622561343014e-05,-2.6000025172834285e-06,-8.11918994259031e-07,5.293955920339377e-23,-0.0007051084539853036,1.3802622561343014e-05,6.85204504407011e-05,-0.0,-6.273919552768348e-07,-1.229328063345747e-06,1.4300014299806207e-05,-2.6000025172834285e-06,-0.0,7.647066269100833e-08,0.0,0.0,1.3802622561343014e-05,-8.11918994259031e-07,-6.273919552768348e-07,0.0,3.6905408506981985e-08,-3.308722450212111e-24,8.810184226604179e-06,5.293955920339377e-23,-1.229328063345747e-06,0.0,-3.308722450212111e-24,2.793927400546181e-08,35.0,46.0,0.014561478979885578,-0.0008764943340793252,-0.0006756310467608273,1.3989144463266712e-05,1.321527724940097e-05,8.259547939815093e-06,-0.0008764943340793252,0.00011005855049006641,1.321527724940097e-05,-2.5434808321733726e-06,-7.773692232149187e-07,7.940933880509066e-23,-0.0006756310467608273,1.321527724940097e-05,6.419254350475967e-05,-0.0,-5.873456530025578e-07,-1.1263019814578001e-06,1.3989144463266712e-05,-2.5434808321733726e-06,-0.0,7.480825559014193e-08,0.0,0.0,1.321527724940097e-05,-7.773692232149187e-07,-5.873456530025578e-07,0.0,3.4549742622402846e-08,-3.308722450212111e-24,8.259547939815093e-06,7.940933880509066e-23,-1.1263019814578001e-06,0.0,-3.308722450212111e-24,2.5028933592352587e-08,35.0,47.0,0.014265282079577446,-0.0008581149741075933,-0.0006479643634520471,1.3691503227164503e-05,1.2664640053117182e-05,7.75386160967173e-06,-0.0008581149741075933,0.00010773272515507415,1.2664640053117182e-05,-2.48936407842848e-06,-7.449788199664908e-07,-2.9116757561866574e-22,-0.0006479643634520471,1.2664640053117182e-05,6.02216568950098e-05,-0.0,-5.506365141627612e-07,-1.0338482070437749e-06,1.3691503227164503e-05,-2.48936407842848e-06,-0.0,7.321659722947516e-08,0.0,0.0,1.2664640053117182e-05,-7.449788199664908e-07,-5.506365141627612e-07,0.0,3.239038548485951e-08,1.3234889800848443e-23,7.75386160967173e-06,-2.9116757561866574e-22,-1.0338482070437749e-06,0.0,1.3234889800848443e-23,2.2474960559293322e-08,35.0,48.0,0.013980894349515438,-0.00084049062570557,-0.0006219630595296621,1.340626386081567e-05,1.2147716006438714e-05,7.288629603863228e-06,-0.00084049062570557,0.00010550318256719038,1.2147716006438714e-05,-2.437502416796633e-06,-7.145715699152788e-07,2.117582368135751e-21,-0.0006219630595296621,1.2147716006438714e-05,5.6571723689557984e-05,3.516800379534678e-21,-5.169241035218874e-07,-9.506908327239216e-07,1.340626386081567e-05,-2.437502416796633e-06,3.516800379534678e-21,7.169124671690952e-08,-2.1517482810396712e-23,-5.600202452254485e-23,1.2147716006438714e-05,-7.145715699152788e-07,-5.169241035218874e-07,-2.1517482810396712e-23,3.0407299789203535e-08,-9.926167350636332e-24,7.288629603863228e-06,2.117582368135751e-21,-9.506908327239216e-07,-5.600202452254485e-23,-9.926167350636332e-24,2.0227464148092622e-08,35.0,49.0,0.013707623817026615,-0.0008235757704824209,-0.0005974961677566171,1.3132666026649531e-05,1.1661807548080105e-05,6.8598869802372064e-06,-0.0008235757704824209,0.00010336405830457807,1.1661807548080105e-05,-2.3877573767094873e-06,-6.859887093924044e-07,4.499862532288471e-22,-0.0005974961677566171,1.1661807548080105e-05,5.3210951591609046e-05,-0.0,-4.859086288888648e-07,-8.75730222560378e-07,1.3132666026649531e-05,-2.3877573767094873e-06,-0.0,7.022816106427854e-08,0.0,0.0,1.1661807548080105e-05,-6.859887093924044e-07,-4.859086288888648e-07,0.0,2.8582862299231238e-08,-1.819797347616661e-23,6.8598869802372064e-06,4.499862532288471e-22,-8.75730222560378e-07,0.0,-1.819797347616661e-23,1.824438022879349e-08,35.0,50.0,0.013444830663502216,-0.0008073283242993057,-0.0005744451773352921,1.2870013051724527e-05,1.1204481779714115e-05,6.464123998739524e-06,-0.0008073283242993057,0.00010130995360668749,1.1204481779714115e-05,-2.3400023110298207e-06,-6.59087163512595e-07,1.4823076576950256e-21,-0.0005744451773352921,1.1204481779714115e-05,5.011125176679343e-05,2.9733564495779773e-21,-4.573257967876998e-07,-8.080154998424405e-07,1.2870013051724527e-05,-2.3400023110298207e-06,2.9733564495779773e-21,6.882359571136476e-08,-2.1335718213781117e-23,-4.3909556773750234e-23,1.1204481779714115e-05,-6.59087163512595e-07,-4.573257967876998e-07,-2.1335718213781117e-23,2.6901517458099988e-08,8.271806125530277e-25,6.464123998739524e-06,1.4823076576950256e-21,-8.080154998424405e-07,-4.3909556773750234e-23,8.271806125530277e-25,1.649011238669118e-08,35.0,51.0,0.013191924430429935,-0.0007917096372693777,-0.0005527029279619455,1.2617660104297101e-05,1.0773540452646557e-05,6.098230187490117e-06,-0.0007917096372693777,9.933591354638338e-05,1.0773540452646557e-05,-2.2941198949411046e-06,-6.337376703413611e-07,7.940933880509066e-22,-0.0005527029279619455,1.0773540452646557e-05,4.724776226794347e-05,-0.0,-4.30941611284652e-07,-7.467220939361141e-07,1.2617660104297101e-05,-2.2941198949411046e-06,-0.0,6.747411873675446e-08,0.0,0.0,1.0773540452646557e-05,-6.337376703413611e-07,-4.30941611284652e-07,0.0,2.5349505605731792e-08,-3.226004388956808e-23,6.098230187490117e-06,7.940933880509066e-22,-7.467220939361141e-07,0.0,-3.226004388956808e-23,1.493444123923382e-08,35.0,52.0,0.012948356568813324,-0.0007766837952658534,-0.0005321722128428519,1.2375012374832295e-05,1.036699177348055e-05,5.759439773100894e-06,-0.0007766837952658534,9.743733244249597e-05,1.036699177348055e-05,-2.250002353321179e-06,-6.098230187490117e-07,2.6469779601696886e-22,-0.0005321722128428519,1.036699177348055e-05,4.45983896497637e-05,-0.0,-4.065486791660078e-07,-6.911327545822132e-07,1.2375012374832295e-05,-2.250002353321179e-06,-0.0,6.617653980356408e-08,0.0,0.0,1.036699177348055e-05,-6.098230187490117e-07,-4.065486791660078e-07,0.0,2.391462849971049e-08,-9.926167350636332e-24,5.759439773100894e-06,2.6469779601696886e-22,-6.911327545822132e-07,0.0,-9.926167350636332e-24,1.35516229349264e-08,35.0,53.0,0.012713620439171791,-0.0007622177363373339,-0.0005127646727487445,1.2141521438024938e-05,9.983028576243669e-06,5.4452884796774015e-06,-0.0007622177363373339,9.56099756876938e-05,9.983028576243669e-06,-2.207549414379173e-06,-5.872369683856959e-07,9.793818452627848e-22,-0.0005127646727487445,9.983028576243669e-06,4.214349246467464e-05,1.5737774554288206e-21,-3.839626572244015e-07,-6.406221473298501e-07,1.2141521438024938e-05,-2.207549414379173e-06,1.5737774554288206e-21,6.492792437029493e-08,2.316871383543085e-23,-3.042710033273809e-23,9.983028576243669e-06,-5.872369683856959e-07,-3.839626572244015e-07,2.316871383543085e-23,2.258603792881786e-08,2.481541837659083e-24,5.4452884796774015e-06,9.793818452627848e-22,-6.406221473298501e-07,-3.042710033273809e-23,2.481541837659083e-24,1.2319657294312947e-08,35.0,54.0,0.012487242929637432,-0.0007482807268388569,-0.00049439980648458,1.191667888633674e-05,9.620009222999215e-06,5.153576694283402e-06,-0.0007482807268388569,9.384989971294999e-05,9.620009222999215e-06,-2.166668764402857e-06,-5.658829422827694e-07,3.3351922298138076e-21,-0.00049439980648458,9.620009222999215e-06,3.986554656876251e-05,6.669758419613232e-21,-3.6301923955761595e-07,-5.946434384895838e-07,1.191667888633674e-05,-2.166668764402857e-06,6.669758419613232e-21,6.372555105826905e-08,-6.073541714581162e-23,-9.94876158913931e-23,9.620009222999215e-06,-5.658829422827694e-07,-3.6301923955761595e-07,-6.073541714581162e-23,2.1354072288204407e-08,2.481541837659083e-24,5.153576694283402e-06,3.3351922298138076e-21,-5.946434384895838e-07,-9.94876158913931e-23,2.481541837659083e-24,1.1219687401364808e-08,35.0,55.0,0.012268786318600178,-0.0007348443032242358,-0.0004770041850861162,1.1700011782522779e-05,9.276437594962772e-06,4.882335815636907e-06,-0.0007348443032242358,9.215345926349983e-05,9.276437594962772e-06,-2.1272749108902644e-06,-5.456728331409977e-07,-1.5881867761018131e-22,-0.0004770041850861162,9.276437594962772e-06,3.774888318730518e-05,-0.0,-3.435717701449903e-07,-5.52717267510161e-07,1.1700011782522779e-05,-2.1272749108902644e-06,-0.0,6.256690454620184e-08,0.0,0.0,9.276437594962772e-06,-5.456728331409977e-07,-3.435717701449903e-07,0.0,2.0210103812701163e-08,6.617444900424222e-24,4.882335815636907e-06,-1.5881867761018131e-22,-5.52717267510161e-07,0.0,6.617444900424222e-24,1.0235504888100877e-08,35.0,56.0,0.012057841755449772,-0.0007218819228000939,-0.00046051086974330246,1.1491082659631502e-05,8.950948540586978e-06,4.629800969269127e-06,-0.0007218819228000939,9.05172637430951e-05,8.950948540586978e-06,-2.089287818307639e-06,-5.265263780529494e-07,8.735027268559972e-22,-0.00046051086974330246,8.950948540586978e-06,3.577947791200131e-05,1.2104494785264487e-21,-3.254890543757938e-07,-5.144223678144044e-07,1.1491082659631502e-05,-2.089287818307639e-06,1.2104494785264487e-21,6.14496400430653e-08,1.5670887543005496e-23,-2.0911205339410913e-23,8.950948540586978e-06,-5.265263780529494e-07,-3.254890543757938e-07,1.5670887543005496e-23,1.9146414231840936e-08,-5.790264287871194e-24,4.629800969269127e-06,8.735027268559972e-22,-5.144223678144044e-07,-2.0911205339410913e-23,-5.790264287871194e-24,9.353133378908751e-09,35.0,57.0,0.011854027397930622,-0.0007093689637258649,-0.0004448584804777056,1.1289484973531216e-05,8.642295142635703e-06,4.394387360662222e-06,-0.0007093689637258649,8.893815538613126e-05,8.642295142635703e-06,-2.052633590210462e-06,-5.083703058517131e-07,-1.852884572118782e-22,-0.0004448584804777056,8.642295142635703e-06,3.3944739698199555e-05,-0.0,-3.086533979512751e-07,-4.793877224074095e-07,1.1289484973531216e-05,-2.052633590210462e-06,-0.0,6.037157618266065e-08,0.0,0.0,8.642295142635703e-06,-5.083703058517131e-07,-3.086533979512751e-07,0.0,1.815608285937742e-08,4.963083675318166e-24,4.394387360662222e-06,-1.852884572118782e-22,-4.793877224074095e-07,0.0,4.963083675318166e-24,8.560495423637349e-09,35.0,58.0,0.011656989343464375,-0.000697282375767827,-0.00042999081779271364,1.1094838555436581e-05,8.349335985258222e-06,4.174667992629111e-06,-0.000697282375767827,8.74132092576474e-05,8.349335985258222e-06,-2.017243332375074e-06,-4.911374276161951e-07,-6.352747104407253e-22,-0.00042999081779271364,8.349335985258222e-06,3.223335443180986e-05,-1.011319074648162e-21,-2.9295915737748146e-07,-4.47285856353119e-07,1.1094838555436581e-05,-2.017243332375074e-06,-1.011319074648162e-21,5.933068791819096e-08,-1.1928209553387686e-23,1.6140614769019347e-23,8.349335985258222e-06,-4.911374276161951e-07,-2.9295915737748146e-07,-1.1928209553387686e-23,1.7232892446372716e-08,4.1359030627651384e-24,4.174667992629111e-06,-6.352747104407253e-22,-4.47285856353119e-07,1.6140614769019347e-23,4.1359030627651384e-24,7.847120286896825e-09,35.0,59.0,0.011466395109891891,-0.000685600854922086,-0.00041585625149309635,1.0906790521403309e-05,8.071025149547495e-06,3.9693563849141356e-06,-0.000685600854922086,8.593967504566535e-05,8.071025149547495e-06,-1.9830529254249996e-06,-4.747661819237692e-07,1.5881867761018131e-22,-0.00041585625149309635,8.071025149547495e-06,3.063512485823594e-05,-0.0,-2.783112051929493e-07,-4.1782701032389014e-07,1.0906790521403309e-05,-1.9830529254249996e-06,-0.0,5.832508165326544e-08,0.0,0.0,8.071025149547495e-06,-4.747661819237692e-07,-2.783112051929493e-07,0.0,1.6371247468782713e-08,-5.790264287871194e-24,3.9693563849141356e-06,1.5881867761018131e-22,-4.1782701032389014e-07,0.0,-5.790264287871194e-24,7.20391390984787e-09,35.0,60.0,0.011281931772828102,-0.0006743042613379657,-0.00040240740054287016,1.0725010724854656e-05,7.806401299603749e-06,3.7772908854094567e-06,-0.0006743042613379657,8.451500616502017e-05,7.806401299603749e-06,-1.9500018879625713e-06,-4.592000664160878e-07,9.26442286059391e-23,-0.00040240740054287016,7.806401299603749e-06,2.9140846891095862e-05,-0.0,-2.646237646786176e-07,-3.9075422364476253e-07,1.0725010724854656e-05,-1.9500018879625713e-06,-0.0,5.7352998794613086e-08,0.0,0.0,7.806401299603749e-06,-4.592000664160878e-07,-2.646237646786176e-07,0.0,1.5566104849540352e-08,-2.895132143935597e-24,3.7772908854094567e-06,9.26442286059391e-23,-3.9075422364476253e-07,0.0,-2.895132143935597e-24,6.622953296897549e-09,35.0,61.0,0.011103310622274876,-0.0006633739685639739,-0.0003896005800925195,1.054919084708672e-05,7.554581770818913e-06,3.5974198908661492e-06,-0.0006633739685639739,8.313679427374154e-05,7.554581770818913e-06,-1.918034740810981e-06,-4.4438715463002154e-07,7.539070212469716e-22,-0.0003896005800925195,7.554581770818913e-06,2.774220411083661e-05,-1.6940658945086007e-21,-2.5181938667628856e-07,-3.658393268324289e-07,1.054919084708672e-05,-1.918034740810981e-06,-1.6940658945086007e-21,5.641278377765957e-08,1.3400325923359048e-22,-1.4041668892670645e-23,7.554581770818913e-06,-4.4438715463002154e-07,-2.5181938667628856e-07,1.3400325923359048e-22,1.4812905568817314e-08,-6.79982954171132e-24,3.5974198908661492e-06,7.539070212469716e-22,-3.658393268324289e-07,-1.4041668892670645e-23,-6.79982954171132e-24,6.0973217586024475e-09,35.0,62.0,0.010930255986750126,-0.0006527923396788538,-0.0003773955686483532,1.037904257827904e-05,7.314753929676954e-06,3.4287909329577815e-06,-0.0006527923396788538,8.180282020475715e-05,7.314753929676954e-06,-1.887098619590688e-06,-4.302796412503085e-07,-1.8600775699356555e-21,-0.0003773955686483532,7.314753929676954e-06,2.643166772031691e-05,-3.864587821847745e-21,-2.398279832505068e-07,-3.428790762427525e-07,1.037904257827904e-05,-1.887098619590688e-06,-3.864587821847745e-21,5.550290183009565e-08,5.542110104105285e-23,4.227989951675208e-23,7.314753929676954e-06,-4.302796412503085e-07,-2.398279832505068e-07,5.542110104105285e-23,1.410752936692461e-08,1.0304440354186101e-23,3.4287909329577815e-06,-1.8600775699356555e-21,-3.428790762427525e-07,4.227989951675208e-23,1.0304440354186101e-23,5.620968579478358e-09,35.0,63.0,0.010762513615190983,-0.0006425430765375495,-0.0003657552879303694,1.021429579850519e-05,7.086167897796258e-06,3.2705390822229674e-06,-0.0006425430765375495,8.05109812063165e-05,7.086167897796258e-06,-1.8571447526483098e-06,-4.168333873622032e-07,-1.9287899043788513e-21,-0.0003657552879303694,7.086167897796258e-06,2.520240559533704e-05,-3.546950466627383e-21,-2.285860603024048e-07,-3.216923687432427e-07,1.021429579850519e-05,-1.8571447526483098e-06,-3.546950466627383e-21,5.462190344474038e-08,2.3161057151484775e-23,4.403360988426167e-23,7.086167897796258e-06,-4.168333873622032e-07,-2.285860603024048e-07,2.3161057151484775e-23,1.344623878907214e-08,1.0184149321331665e-23,3.2705390822229674e-06,-1.9287899043788513e-21,-3.216923687432427e-07,4.403360988426167e-23,1.0184149321331665e-23,5.188586449378363e-09,35.0,64.0,0.010599842295050621,-0.0006326106376945972,-0.0003546453663147986,1.0054697668238077e-05,6.868132004456129e-06,3.1218780804920243e-06,-0.0006326106376945972,7.925930549390614e-05,6.868132004456129e-06,-1.8281268694408936e-06,-4.0400774992122024e-07,-1.2728976262934655e-22,-0.0003546453663147986,6.868132004456129e-06,2.404821316304151e-05,3.705769144237564e-22,-2.1803593597269355e-07,-3.0211722901185567e-07,1.0054697668238077e-05,-1.8281268694408936e-06,3.705769144237564e-22,5.376843503768214e-08,-3.88774887899923e-23,4.606074023038177e-24,6.868132004456129e-06,-4.0400774992122024e-07,-2.1803593597269355e-07,-3.88774887899923e-23,1.2825642770053491e-08,-4.235156925562464e-26,3.1218780804920243e-06,-1.2728976262934655e-22,-3.0211722901185567e-07,4.606074023038177e-24,-4.235156925562464e-26,4.795511543420616e-09,36.0,3.0,0.1326523870229721,-0.010668563656508923,-0.0810810774564743,0.00019756598339881748,0.0022522523067891598,0.013888888992369175,-0.010668563656508923,0.00143476075027138,0.0022522523067891598,-3.486458444967866e-05,-0.00012870013597421348,1.3010426069826053e-18,-0.0810810774564743,0.0022522523067891598,0.2199699729681015,8.655709695104087e-20,-0.0022522523067891598,-0.0833333358168602,0.00019756598339881748,-3.486458444967866e-05,8.655709695104087e-20,9.961310070139007e-07,1.5715537007132133e-21,-5.468498784406309e-20,0.0022522523067891598,-0.00012870013597421348,-0.0022522523067891598,1.5715537007132133e-21,0.00012870013597421348,8.673617379884035e-19,0.013888888992369175,1.3010426069826053e-18,-0.0833333358168602,-5.468498784406309e-20,8.673617379884035e-19,0.0416666679084301,36.0,4.0,0.11095701158046722,-0.008339260704815388,-0.05281531438231468,0.0001481744839111343,0.0013513513840734959,0.0069444444961845875,-0.008339260704815388,0.0010953755117952824,0.0013513513840734959,-2.6148440156248398e-05,-7.722008012933657e-05,-3.7947076036992655e-19,-0.05281531438231468,0.0013513513840734959,0.08382131904363632,4.281881053835141e-20,-0.0009009009227156639,-0.02083333395421505,0.0001481744839111343,-2.6148440156248398e-05,4.281881053835141e-20,7.470982836821349e-07,-1.3074586196713822e-21,-1.449565058123403e-21,0.0013513513840734959,-7.722008012933657e-05,-0.0009009009227156639,-1.3074586196713822e-21,5.148005220689811e-05,2.168404344971009e-19,0.0069444444961845875,-3.7947076036992655e-19,-0.02083333395421505,-1.449565058123403e-21,2.168404344971009e-19,0.0069444444961845875,36.0,5.0,0.09541082382202148,-0.006851588375866413,-0.03719433769583702,0.00011853959586005658,0.0009009009227156639,0.003968254197388887,-0.006851588375866413,0.0008865964482538402,0.0009009009227156639,-2.0918751033605076e-05,-5.148005220689811e-05,-1.6805133673525319e-18,-0.03719433769583702,0.0009009009227156639,0.04240669310092926,-6.0153797952110096e-21,-0.00045045046135783195,-0.007936508394777775,0.00011853959586005658,-2.0918751033605076e-05,-6.0153797952110096e-21,5.976785928396566e-07,-2.0790920144127176e-21,1.0643713412489839e-20,0.0009009009227156639,-5.148005220689811e-05,-0.00045045046135783195,-2.0790920144127176e-21,2.5740026103449054e-05,5.827586677109586e-19,0.003968254197388887,-1.6805133673525319e-18,-0.007936508394777775,1.0643713412489839e-20,5.827586677109586e-19,0.0019841270986944437,36.0,6.0,0.08370070904493332,-0.0058169071562588215,-0.027630308642983437,9.878299169940874e-05,0.000643500650767237,0.0024801588151603937,-0.0058169071562588215,0.0007449589320458472,0.000643500650767237,-1.743229222483933e-05,-3.6771463783225045e-05,-1.0842021724855044e-19,-0.027630308642983437,0.000643500650767237,0.024692997336387634,-5.75120843826162e-20,-0.00025740027194842696,-0.0037202381063252687,9.878299169940874e-05,-1.743229222483933e-05,-5.75120843826162e-20,4.980655035069503e-07,1.2354304945842635e-21,6.681773541127991e-21,0.000643500650767237,-3.6771463783225045e-05,-0.00025740027194842696,1.2354304945842635e-21,1.4708585695188958e-05,-4.743384504624082e-20,0.0024801588151603937,-1.0842021724855044e-19,-0.0037202381063252687,6.681773541127991e-21,-4.743384504624082e-20,0.0007440476329065859,36.0,7.0,0.07455623149871826,-0.005054866895079613,-0.021342771127820015,8.467114093946293e-05,0.0004826254735235125,0.0016534391324967146,-0.005054866895079613,0.0006424760795198381,0.0004826254735235125,-1.4941965673642699e-05,-2.7578598746913485e-05,6.505213034913027e-19,-0.021342771127820015,0.0004826254735235125,0.015712140128016472,2.303250165206667e-20,-0.00016087516269180924,-0.0019841270986944437,8.467114093946293e-05,-1.4941965673642699e-05,2.303250165206667e-20,4.2691328872024314e-07,-1.4416781656325226e-21,7.538043304897735e-22,0.0004826254735235125,-2.7578598746913485e-05,-0.00016087516269180924,-1.4416781656325226e-21,9.192865945806261e-06,-1.9312351197398048e-19,0.0016534391324967146,6.505213034913027e-19,-0.0019841270986944437,7.538043304897735e-22,-1.9312351197398048e-19,0.0003306878206785768,36.0,8.0,0.06721524149179459,-0.004469930659979582,-0.016985734924674034,7.408724195556715e-05,0.00037537538446485996,0.0011574074160307646,-0.004469930659979582,0.0005648477817885578,0.00037537538446485996,-1.3074220078124199e-05,-2.145002144970931e-05,6.098637220230962e-19,-0.016985734924674034,0.00037537538446485996,0.010640104301273823,7.67394388946653e-20,-0.00010725011088652536,-0.0011574074160307646,7.408724195556715e-05,-1.3074220078124199e-05,7.67394388946653e-20,3.7354914184106747e-07,-4.819639227796695e-22,-9.092364446421479e-21,0.00037537538446485996,-2.145002144970931e-05,-0.00010725011088652536,-4.819639227796695e-22,6.128577751951525e-06,-7.284483346386983e-20,0.0011574074160307646,6.098637220230962e-19,-0.0011574074160307646,-9.092364446421479e-21,-7.284483346386983e-20,0.0001653439103392884,36.0,9.0,0.06119125336408615,-0.004006638191640377,-0.01384111400693655,6.585533265024424e-05,0.00030030030757188797,0.0008417508215643466,-0.004006638191640377,0.0005039935931563377,0.00030030030757188797,-1.1621528756222688e-05,-1.7160016795969568e-05,-1.1519648082658485e-19,-0.01384111400693655,0.00030030030757188797,0.007548782508820295,-7.727312063936545e-21,-7.507507689297199e-05,-0.0007215007208287716,6.585533265024424e-05,-1.1621528756222688e-05,-7.727312063936545e-21,3.3204366900463356e-07,3.75752775973318e-22,1.8681089565008233e-22,0.00030030030757188797,-1.7160016795969568e-05,-7.507507689297199e-05,3.75752775973318e-22,4.290004198992392e-06,2.541098841762901e-20,0.0008417508215643466,-1.1519648082658485e-19,-0.0007215007208287716,1.8681089565008233e-22,2.541098841762901e-20,9.018759010359645e-05,36.0,10.0,0.05615866929292679,-0.003630544524639845,-0.011496723629534245,5.926979793002829e-05,0.00024570024106651545,0.0006313131307251751,-0.003630544524639845,0.0004549982550088316,0.00024570024106651545,-1.0459375516802538e-05,-1.4040014320926275e-05,1.2874900798265365e-19,-0.011496723629534245,0.00024570024106651545,0.005553564988076687,9.24900612036874e-21,-5.46000555914361e-05,-0.0004734848625957966,5.926979793002829e-05,-1.0459375516802538e-05,9.24900612036874e-21,2.988392964198283e-07,-4.563464663652968e-22,-8.963008575039824e-23,0.00024570024106651545,-1.4040014320926275e-05,-5.46000555914361e-05,-4.563464663652968e-22,3.1200031571643194e-06,-3.2610768469290563e-20,0.0006313131307251751,1.2874900798265365e-19,-0.0004734848625957966,-8.963008575039824e-23,-3.2610768469290563e-20,5.260942634777166e-05,36.0,11.0,0.05189118906855583,-0.0033191086258739233,-0.009702010080218315,5.388163117459044e-05,0.00020475020573940128,0.0004856254963669926,-0.0033191086258739233,0.0004146984138060361,0.00020475020573940128,-9.50852336245589e-06,-1.1700011782522779e-05,-6.776263578034403e-21,-0.009702010080218315,0.00020475020573940128,0.004206654150038958,-5.841072887644983e-21,-4.095004260307178e-05,-0.00032375031150877476,5.388163117459044e-05,-9.50852336245589e-06,-5.841072887644983e-21,2.716720928219729e-07,5.072751244579736e-22,-4.829712918447495e-22,0.00020475020573940128,-1.1700011782522779e-05,-4.095004260307178e-05,5.072751244579736e-22,2.3400023110298207e-06,2.541098841762901e-21,0.0004856254963669926,-6.776263578034403e-21,-0.00032375031150877476,-4.829712918447495e-22,2.541098841762901e-21,3.237503187847324e-05,36.0,12.0,0.048226580023765564,-0.0030569536611437798,-0.008297446183860302,4.939149584970437e-05,0.00017325016960967332,0.000381562887923792,-0.0030569536611437798,0.0003809652116615325,0.00017325016960967332,-8.716146112419665e-06,-9.900009899865836e-06,1.0164395367051604e-20,-0.008297446183860302,0.00017325016960967332,0.0032638157717883587,-5.701308040795148e-21,-3.150003249174915e-05,-0.00022893772984389216,4.939149584970437e-05,-8.716146112419665e-06,-5.701308040795148e-21,2.4903275175347517e-07,2.642680498393534e-22,8.853283387377737e-24,0.00017325016960967332,-9.900009899865836e-06,-3.150003249174915e-05,2.642680498393534e-22,1.8000017689701053e-06,-4.235164736271502e-22,0.000381562887923792,1.0164395367051604e-20,-0.00022893772984389216,8.853283387377737e-24,-4.235164736271502e-22,2.0812520233448595e-05,36.0,13.0,0.045045480132102966,-0.0028332264628261328,-0.007177507039159536,4.55921508546453e-05,0.00014850015577394515,0.0003052503161597997,-0.0028332264628261328,0.00035231292713433504,0.00014850015577394515,-8.045673894230276e-06,-8.485722901241388e-06,-6.776263578034403e-21,-0.007177507039159536,0.00014850015577394515,0.0025837526191025972,-2.789085408363668e-21,-2.475002474966459e-05,-0.00016650016186758876,4.55921508546453e-05,-8.045673894230276e-06,-2.789085408363668e-21,2.2987639169969043e-07,2.3256412133352994e-22,-7.968749747115883e-23,0.00014850015577394515,-8.485722901241388e-06,-2.475002474966459e-05,2.3256412133352994e-22,1.4142871123112855e-06,2.117582368135751e-22,0.0003052503161597997,-6.776263578034403e-21,-0.00016650016186758876,-7.968749747115883e-23,2.117582368135751e-22,1.387501379213063e-05,36.0,14.0,0.04225809499621391,-0.0026400459464639425,-0.006270109210163355,4.2335570469731465e-05,0.00012870013597421348,0.00024801588733680546,-0.0026400459464639425,0.00032767304219305515,0.00012870013597421348,-7.470982836821349e-06,-7.354292847594479e-06,1.3213713977167085e-19,-0.006270109210163355,0.00012870013597421348,0.0020807036198675632,4.3100465536925716e-20,-1.9800019799731672e-05,-0.00012400794366840273,4.2335570469731465e-05,-7.470982836821349e-06,4.3100465536925716e-20,2.1345664436012157e-07,-4.896173124426044e-22,-2.5435870478974874e-21,0.00012870013597421348,-7.354292847594479e-06,-1.9800019799731672e-05,-4.896173124426044e-22,1.131429712586396e-06,-4.446922973085077e-21,0.00024801588733680546,1.3213713977167085e-19,-0.00012400794366840273,-2.5435870478974874e-21,-4.446922973085077e-21,9.53907237999374e-06,36.0,15.0,0.03979558125138283,-0.002471550600603223,-0.005524642299860716,3.951319740735926e-05,0.00011261261533945799,0.00020424836839083582,-0.002471550600603223,0.0003062571631744504,0.00011261261533945799,-6.972917162784142e-06,-6.4350065258622635e-06,2.0328790734103208e-20,-0.005524642299860716,0.00011261261533945799,0.0017004965338855982,8.164298495292525e-21,-1.6087516996776685e-05,-9.426847827853635e-05,3.951319740735926e-05,-6.972917162784142e-06,8.164298495292525e-21,1.9922620708712202e-07,-2.314222546395534e-22,-3.434208636998407e-22,0.00011261261533945799,-6.4350065258622635e-06,-1.6087516996776685e-05,-2.314222546395534e-22,9.192866059493099e-07,-9.529120656610879e-22,0.00020424836839083582,2.0328790734103208e-20,-9.426847827853635e-05,-3.434208636998407e-22,-9.529120656610879e-22,6.7334626692172606e-06,36.0,16.0,0.03760426491498947,-0.0023232889361679554,-0.0049047209322452545,3.7043620977783576e-05,9.936407150235027e-05,0.00017020697123371065,-0.0023232889361679554,0.0002874709607567638,9.936407150235027e-05,-6.5371100390620995e-06,-5.677946774085285e-06,-7.792703114739563e-20,-0.0049047209322452545,9.936407150235027e-05,0.0014077365631237626,-1.2992952396373753e-20,-1.3248542927613016e-05,-7.294584793271497e-05,3.7043620977783576e-05,-6.5371100390620995e-06,-1.2992952396373753e-20,1.8677457092053373e-07,1.7278595849721143e-22,6.815020099737745e-22,9.936407150235027e-05,-5.677946774085285e-06,-1.3248542927613016e-05,1.7278595849721143e-22,7.570595812467218e-07,6.1409888675936775e-21,0.00017020697123371065,-7.792703114739563e-20,-7.294584793271497e-05,6.815020099737745e-22,6.1409888675936775e-21,4.863056346948724e-06,36.0,17.0,0.03564167767763138,-0.002191820414736867,-0.004383640829473734,3.486458444967866e-05,8.832362073007971e-05,0.00014333218859974295,-0.002191820414736867,0.00027085779584012926,8.832362073007971e-05,-6.152573860163102e-06,-5.04706395076937e-06,-2.202285662861181e-20,-0.004383640829473734,8.832362073007971e-05,0.0011786166578531265,3.8859430564803216e-21,-1.1040452591259964e-05,-5.733287616749294e-05,3.486458444967866e-05,-6.152573860163102e-06,3.8859430564803216e-21,1.7578783229055261e-07,-2.7796171589912943e-22,6.673180763277345e-23,8.832362073007971e-05,-5.04706395076937e-06,-1.1040452591259964e-05,-2.7796171589912943e-22,6.308829938461713e-07,2.064642808932357e-21,0.00014333218859974295,-2.202285662861181e-20,-5.733287616749294e-05,6.673180763277345e-23,2.064642808932357e-21,3.583304760468309e-06,36.0,18.0,0.0338737852871418,-0.0020744428038597107,-0.003941441420465708,3.292766632512212e-05,7.902639481471851e-05,0.00012183235958218575,-0.0020744428038597107,0.00025606100098229945,7.902639481471851e-05,-5.810764378111344e-06,-4.5157939894124866e-06,3.8963515573697816e-20,-0.003941441420465708,7.902639481471851e-05,0.0009967155056074262,9.710393572001467e-21,-9.29722318687709e-06,-4.5687134843319654e-05,3.292766632512212e-05,-5.810764378111344e-06,9.710393572001467e-21,1.6602183450231678e-07,3.346332813818152e-23,-5.71347290704238e-22,7.902639481471851e-05,-4.5157939894124866e-06,-9.29722318687709e-06,3.346332813818152e-23,5.31269904513465e-07,-1.5881867761018131e-21,0.00012183235958218575,3.8963515573697816e-20,-4.5687134843319654e-05,-5.71347290704238e-22,-1.5881867761018131e-21,2.687478399820975e-06,36.0,19.0,0.032272983342409134,-0.0019690049812197685,-0.003562961472198367,3.119462780887261e-05,7.112375897122547e-05,0.00010442773782415316,-0.0019690049812197685,0.0002427980216452852,7.112375897122547e-05,-5.504934506461723e-06,-4.0642144085722975e-06,1.8634724839594607e-20,-0.003562961472198367,7.112375897122547e-05,0.0008504524012096226,9.290455623875889e-21,-7.902639481471851e-06,-3.685684714582749e-05,3.119462780887261e-05,-5.504934506461723e-06,9.290455623875889e-21,1.5728384994417866e-07,-1.6182529788812999e-22,-3.445058819215434e-22,7.112375897122547e-05,-4.0642144085722975e-06,-7.902639481471851e-06,-1.6182529788812999e-22,4.5157941030993243e-07,-6.088049308390284e-22,0.00010442773782415316,1.8634724839594607e-20,-3.685684714582749e-05,-3.445058819215434e-22,-6.088049308390284e-22,2.047602720267605e-06,36.0,20.0,0.03081665001809597,-0.0018737722421064973,-0.0032365156803280115,2.9634898965014145e-05,6.435006798710674e-05,9.018759010359645e-05,-0.0018737722421064973,0.00023084197891876101,6.435006798710674e-05,-5.229687758401269e-06,-3.6771464237972395e-06,3.8963515573697816e-20,-0.0032365156803280115,6.435006798710674e-05,0.0007314987597055733,1.3012383870626647e-20,-6.77369098411873e-06,-3.006253064086195e-05,2.9634898965014145e-05,-5.229687758401269e-06,1.3012383870626647e-20,1.4941964820991416e-07,-1.8307970978613178e-22,-5.229192080851415e-22,6.435006798710674e-05,-3.6771464237972395e-06,-6.77369098411873e-06,-1.8307970978613178e-22,3.870680700401863e-07,-1.7734752333136913e-21,9.018759010359645e-05,3.8963515573697816e-20,-3.006253064086195e-05,-5.229192080851415e-22,-1.7734752333136913e-21,1.5822383829799946e-06,36.0,21.0,0.029486075043678284,-0.0017873307224363089,-0.002952981274574995,2.822371243382804e-05,5.8500059822108597e-05,7.842398918000981e-05,-0.0017873307224363089,0.00022000868921168149,5.8500059822108597e-05,-4.980654921382666e-06,-3.3428605092922226e-06,2.0763973362424197e-20,-0.002952981274574995,5.8500059822108597e-05,0.0006337595405057073,1.6763320792160014e-20,-5.8500058912613895e-06,-2.47654716076795e-05,2.822371243382804e-05,-4.980654921382666e-06,1.6763320792160014e-20,1.4230442957341438e-07,-1.7205356741102976e-22,-6.8993527383849815e-22,5.8500059822108597e-05,-3.3428605092922226e-06,-5.8500058912613895e-06,-1.7205356741102976e-22,3.3428605661356414e-07,3.3837611714361404e-22,7.842398918000981e-05,2.0763973362424197e-20,-2.47654716076795e-05,-6.8993527383849815e-22,3.3837611714361404e-22,1.2382735121718724e-06,36.0,22.0,0.028265640139579773,-0.001708516268990934,-0.0027051507495343685,2.694081558729522e-05,5.34130958840251e-05,6.862098962301388e-05,-0.001708516268990934,0.0002101470308844,5.34130958840251e-05,-4.754261681227945e-06,-3.052176907658577e-06,4.879925528127591e-20,-0.0027051507495343685,5.34130958840251e-05,0.0005527036846615374,3.446600856745056e-20,-5.086961664346745e-06,-2.0586297978297807e-05,2.694081558729522e-05,-4.754261681227945e-06,3.446600856745056e-20,1.3583604641098646e-07,-2.3822801641527197e-22,-1.3286431069387452e-21,5.34130958840251e-05,-3.052176907658577e-06,-5.086961664346745e-06,-2.3822801641527197e-22,2.906835163685173e-07,-2.187380023723237e-22,6.862098962301388e-05,4.879925528127591e-20,-2.0586297978297807e-05,-1.3286431069387452e-21,-2.187380023723237e-22,9.802998874874902e-07,36.0,23.0,0.027142217382788658,-0.001636361819691956,-0.00248726992867887,2.5769477360881865e-05,4.8962006985675544e-05,6.0386471886886284e-05,-0.001636361819691956,0.0002011318429140374,4.8962006985675544e-05,-4.54755490864045e-06,-2.7978289836028125e-06,1.7712925750958024e-20,-0.00248726992867887,4.8962006985675544e-05,0.0004849146062042564,1.5629464583090085e-20,-4.451091626833659e-06,-1.7253278201678768e-05,2.5769477360881865e-05,-4.54755490864045e-06,1.5629464583090085e-20,1.2993012887818622e-07,-2.3822801641527197e-22,-5.275480671721356e-22,4.8962006985675544e-05,-2.7978289836028125e-06,-4.451091626833659e-06,-2.3822801641527197e-22,2.5434809458602103e-07,6.82960872533905e-23,6.0386471886886284e-05,1.7712925750958024e-20,-1.7253278201678768e-05,-5.275480671721356e-22,6.82960872533905e-23,7.842398872526246e-07,36.0,24.0,0.026104677468538284,-0.0015700568910688162,-0.0022946984972804785,2.4695747924852185e-05,4.5045046135783195e-05,5.3418803872773424e-05,-0.0015700568910688162,0.00019285859889350832,4.5045046135783195e-05,-4.3580730562098324e-06,-2.5740025648701703e-06,1.619984762071088e-20,-0.0022946984972804785,4.5045046135783195e-05,0.00042778297211043537,1.408917996550819e-20,-3.916960395144997e-06,-1.4568764527211897e-05,2.4695747924852185e-05,-4.3580730562098324e-06,1.408917996550819e-20,1.2451637587673758e-07,-1.9852334701272664e-22,-4.652629927314461e-22,4.5045046135783195e-05,-2.5740025648701703e-06,-3.916960395144997e-06,-1.9852334701272664e-22,2.2382630504580447e-07,7.335286236069996e-24,5.3418803872773424e-05,1.619984762071088e-20,-1.4568764527211897e-05,-4.652629927314461e-22,7.335286236069996e-24,6.334245199468569e-07,36.0,25.0,0.025143537670373917,-0.0015089177759364247,-0.0021236620377749205,2.3707918444415554e-05,4.158004230703227e-05,4.7483379603363574e-05,-0.0015089177759364247,0.0001852393033914268,4.158004230703227e-05,-4.183750206721015e-06,-2.3760023850627476e-06,-8.53032591634724e-21,-0.0021236620377749205,4.158004230703227e-05,0.00037929232348687947,-5.0549112246279224e-21,-3.4650033740035724e-06,-1.2386968592181802e-05,2.3707918444415554e-05,-4.183750206721015e-06,-5.0549112246279224e-21,1.1953572709444416e-07,6.617444900424222e-24,2.062096795070636e-22,4.158004230703227e-05,-2.3760023850627476e-06,-3.4650033740035724e-06,6.617444900424222e-24,1.980001940182774e-07,1.0941563864287851e-22,4.7483379603363574e-05,-8.53032591634724e-21,-1.2386968592181802e-05,2.062096795070636e-22,1.0941563864287851e-22,5.161236913409084e-07,36.0,26.0,0.024250658228993416,-0.0014523633290082216,-0.001971064368262887,2.279607542732265e-05,3.850003849947825e-05,4.2395877244416624e-05,-0.0014523633290082216,0.00017819931963458657,3.850003849947825e-05,-4.022836947115138e-06,-2.2000021999701858e-06,1.9047147076373317e-20,-0.001971064368262887,3.850003849947825e-05,0.0003378676192369312,1.94517934922766e-20,-3.080003125432995e-06,-1.0598969311104156e-05,2.279607542732265e-05,-4.022836947115138e-06,1.94517934922766e-20,1.1493819584984521e-07,-8.602678370551488e-23,-6.552520007093849e-22,3.850003849947825e-05,-2.2000021999701858e-06,-3.080003125432995e-06,-8.602678370551488e-23,1.7600017088170716e-07,3.109337540873138e-22,4.2395877244416624e-05,1.9047147076373317e-20,-1.0598969311104156e-05,-6.552520007093849e-22,3.109337540873138e-22,4.2395876675982436e-07,36.0,27.0,0.02341901697218418,-0.0013998961076140404,-0.001834346679970622,2.195177694375161e-05,3.575003574951552e-05,3.8010093703633174e-05,-0.0013998961076140404,0.00017167501209769398,3.575003574951552e-05,-3.873843070323346e-06,-2.0428592506505083e-06,1.5786926167507797e-20,-0.001834346679970622,3.575003574951552e-05,0.00030226638773456216,1.757251668873855e-20,-2.750002749962732e-06,-9.122422852669843e-06,2.195177694375161e-05,-3.873843070323346e-06,1.757251668873855e-20,1.1068122773849609e-07,-9.926167350636332e-23,-5.577700983793961e-22,3.575003574951552e-05,-2.0428592506505083e-06,-2.750002749962732e-06,-9.926167350636332e-23,1.57143020373951e-07,2.8730970500422394e-22,3.8010093703633174e-05,1.5786926167507797e-20,-9.122422852669843e-06,-5.577700983793961e-22,2.8730970500422394e-22,3.5086242178294924e-07,36.0,28.0,0.02264252118766308,-0.0013510886346921325,-0.0017113789217546582,2.1167785234865732e-05,3.3284515666309744e-05,3.420908615225926e-05,-0.0013510886346921325,0.00016561169468332082,3.3284515666309744e-05,-3.7354914184106747e-06,-1.9019723822566448e-06,1.0148930967005984e-20,-0.0017113789217546582,3.3284515666309744e-05,0.0002714995644055307,9.765640997425626e-21,-2.4655196284584235e-06,-7.894404006947298e-06,2.1167785234865732e-05,-3.7354914184106747e-06,9.765640997425626e-21,1.0672832218006079e-07,-1.0587911840678754e-22,-2.950257743992441e-22,3.3284515666309744e-05,-1.9019723822566448e-06,-2.4655196284584235e-06,-1.0587911840678754e-22,1.4088683997215412e-07,1.3108991544679695e-23,3.420908615225926e-05,1.0148930967005984e-20,-7.894404006947298e-06,-2.950257743992441e-22,1.3108991544679695e-23,2.9238535148579103e-07,36.0,29.0,0.021915866062045097,-0.0013055705931037664,-0.001600376795977354,2.043786116701085e-05,3.106554868281819e-05,3.089852907578461e-05,-0.0013055705931037664,0.00015996216097846627,3.106554868281819e-05,-3.606681275414303e-06,-1.7751741552274325e-06,7.093900933254765e-21,-0.001600376795977354,3.106554868281819e-05,0.0002447730803396553,9.087596848789361e-21,-2.218967665612581e-06,-6.866339845146285e-06,2.043786116701085e-05,-3.606681275414303e-06,9.087596848789361e-21,1.0304803765848192e-07,-8.900020871657185e-23,-2.6815886328519725e-22,3.106554868281819e-05,-1.7751741552274325e-06,-2.218967665612581e-06,-8.900020871657185e-23,1.267981559749387e-07,1.522012327097571e-22,3.089852907578461e-05,7.093900933254765e-21,-6.866339845146285e-06,-2.6815886328519725e-22,1.522012327097571e-22,2.4522643116142717e-07,36.0,30.0,0.02123439684510231,-0.0012630202108994126,-0.001499836565926671,1.975659870367963e-05,2.9061318855383433e-05,2.800179208861664e-05,-0.0012630202108994126,0.00015468543278984725,2.9061318855383433e-05,-3.486458581392071e-06,-1.6606468307145406e-06,-3.8116482626443515e-21,-0.001499836565926671,2.9061318855383433e-05,0.0002214445557910949,-4.9349171253290984e-21,-2.004228917940054e-06,-6.00038401898928e-06,1.975659870367963e-05,-3.486458581392071e-06,-4.9349171253290984e-21,9.961310354356101e-08,8.43691408190431e-23,1.171756318131014e-22,2.9061318855383433e-05,-1.6606468307145406e-06,-2.004228917940054e-06,8.43691408190431e-23,1.1452736714545608e-07,-2.6469779601696886e-23,2.800179208861664e-05,-3.8116482626443515e-21,-6.00038401898928e-06,1.171756318131014e-22,-2.6469779601696886e-23,2.069097888579563e-07,36.0,31.0,0.020594030618667603,-0.0012231564614921808,-0.0014084832509979606,1.9119288481306285e-05,2.7244986995356157e-05,2.5456174626015127e-05,-0.0012231564614921808,0.00014974579971749336,2.7244986995356157e-05,-3.3739922855602344e-06,-1.5568564322165912e-06,-4.341043854678289e-21,-0.0014084832509979606,2.7244986995356157e-05,0.00020099038374610245,-4.660564176703204e-21,-1.8163324284614646e-06,-5.266794687486254e-06,1.9119288481306285e-05,-3.3739922855602344e-06,-4.660564176703204e-21,9.639977349706896e-08,8.182178273833962e-23,1.0558280962901205e-22,2.7244986995356157e-05,-1.5568564322165912e-06,-1.8163324284614646e-06,8.182178273833962e-23,1.0379042691965878e-07,3.970466940254533e-23,2.5456174626015127e-05,-4.341043854678289e-21,-5.266794687486254e-06,1.0558280962901205e-22,3.970466940254533e-23,1.755598191266472e-07,36.0,32.0,0.019991155713796616,-0.0011857326608151197,-0.0013252306962385774,1.8521810488891788e-05,2.559377571742516e-05,2.3210041035781614e-05,-0.0011857326608151197,0.00014511196059174836,2.559377571742516e-05,-3.2685550195310498e-06,-1.4625014728153474e-06,7.835054762102278e-21,-0.0013252306962385774,2.559377571742516e-05,0.0001829809189075604,8.498922133638635e-21,-1.6512112779309973e-06,-4.642008207156323e-06,1.8521810488891788e-05,-3.2685550195310498e-06,8.498922133638635e-21,9.338728546026687e-08,-1.362508817247462e-22,-1.957552025418699e-22,2.559377571742516e-05,-1.4625014728153474e-06,-1.6512112779309973e-06,-1.362508817247462e-22,9.43549309795344e-08,-4.632211430296955e-23,2.3210041035781614e-05,7.835054762102278e-21,-4.642008207156323e-06,-1.957552025418699e-22,-4.632211430296955e-23,1.497422061902398e-07,36.0,33.0,0.01942257210612297,-0.0011505313450470567,-0.001249148277565837,1.7960544937523082e-05,2.4088260033749975e-05,2.1220608687144704e-05,-0.0011505313450470567,0.0001407563395332545,2.4088260033749975e-05,-3.1695078632765217e-06,-1.3764719142272952e-06,6.88214269644119e-21,-0.001249148277565837,2.4088260033749975e-05,0.00016706141468603164,7.771377203013467e-21,-1.5055162521093735e-06,-4.107214863324771e-06,1.7960544937523082e-05,-3.1695078632765217e-06,7.771377203013467e-21,9.055736427399097e-08,-1.1304712511018361e-22,-1.7947923501873273e-22,2.4088260033749975e-05,-1.3764719142272952e-06,-1.5055162521093735e-06,-1.1304712511018361e-22,8.602949463920595e-08,-3.3087224502121107e-23,2.1220608687144704e-05,6.88214269644119e-21,-4.107214863324771e-06,-1.7947923501873273e-22,-3.3087224502121107e-23,1.2835046447889908e-07,36.0,34.0,0.01888543739914894,-0.0011173601960763335,-0.0011794357560575008,1.743229222483933e-05,2.271178709634114e-05,1.9452225387794897e-05,-0.0011173601960763335,0.00013665460573974997,2.271178709634114e-05,-3.076286930081551e-06,-1.2978164249943802e-06,-4.129285617864714e-21,-0.0011794357560575008,2.271178709634114e-05,0.00015293715114239603,-2.700367864286655e-21,-1.3764719142272952e-06,-3.647292260211543e-06,1.743229222483933e-05,-3.076286930081551e-06,-2.700367864286655e-21,8.789391614527631e-08,1.142917851132759e-24,8.094281498508064e-23,2.271178709634114e-05,-1.2978164249943802e-06,-1.3764719142272952e-06,1.142917851132759e-24,7.865553897090649e-08,6.948317145445432e-23,1.9452225387794897e-05,-4.129285617864714e-21,-3.647292260211543e-06,8.094281498508064e-23,6.948317145445432e-23,1.1052400594735445e-07,36.0,35.0,0.018377210944890976,-0.0010860484326258302,-0.0011154011590406299,1.6934227460296825e-05,2.145002144970931e-05,1.787501787475776e-05,-0.0010860484326258302,0.00013278520782478154,2.145002144970931e-05,-2.9883931347285397e-06,-1.225715550390305e-06,-3.0704944337968387e-21,-0.0011154011590406299,2.145002144970931e-05,0.00014036190987098962,-2.8485505259492458e-21,-1.2617659876923426e-06,-3.2500031466042856e-06,1.6934227460296825e-05,-2.9883931347285397e-06,-2.8485505259492458e-21,8.53826591651341e-08,1.5680524267823676e-23,7.588279608172892e-23,2.145002144970931e-05,-1.225715550390305e-06,-1.2617659876923426e-06,1.5680524267823676e-23,7.2100910131212e-08,1.9852334701272664e-23,1.787501787475776e-05,-3.0704944337968387e-21,-3.2500031466042856e-06,7.588279608172892e-23,1.9852334701272664e-23,9.558833369283093e-08,36.0,36.0,0.017895622178912163,-0.0010564440162852407,-0.0010564440162852407,1.646383316256106e-05,2.029056122410111e-05,1.646383316256106e-05,-0.0010564440162852407,0.00012912893726024777,2.029056122410111e-05,-2.905382189055672e-06,-1.159460566668713e-06,4.870439446712227e-21,-0.0010564440162852407,2.029056122410111e-05,0.00012912893726024777,6.482361621191624e-21,-1.159460566668713e-06,-2.905382189055672e-06,1.646383316256106e-05,-2.905382189055672e-06,6.482361621191624e-21,8.301091725115839e-08,-8.798422529040685e-23,-1.4088909354663262e-22,2.029056122410111e-05,-1.159460566668713e-06,-1.159460566668713e-06,-8.798422529040685e-23,6.625489135103635e-08,3.308722450212111e-24,1.646383316256106e-05,4.870439446712227e-21,-2.905382189055672e-06,-1.4088909354663262e-22,3.308722450212111e-24,8.301091725115839e-08,36.0,37.0,0.017438627779483795,-0.001028411090373993,-0.0010020415065810084,1.6018864698708057e-05,1.9222636183258146e-05,1.5197383618215099e-05,-0.001028411090373993,0.00012566866644192487,1.9222636183258146e-05,-2.826858235494001e-06,-1.0984364280375303e-06,-2.752857078576476e-21,-0.0010020415065810084,1.9222636183258146e-05,0.0001190637776744552,-3.560764140518948e-21,-1.0679242450351012e-06,-2.6052657631225884e-06,1.6018864698708057e-05,-2.826858235494001e-06,-3.560764140518948e-21,8.076737856299587e-08,7.49511197982267e-23,6.30247672234099e-23,1.9222636183258146e-05,-1.0984364280375303e-06,-1.0679242450351012e-06,7.49511197982267e-23,6.102424521259309e-08,3.3087224502121107e-23,1.5197383618215099e-05,-2.752857078576476e-21,-2.6052657631225884e-06,6.30247672234099e-23,3.3087224502121107e-23,7.23684934200719e-08,36.0,38.0,0.01700439304113388,-0.0010018275352194905,-0.0009517361759208143,1.5597313904436305e-05,1.823686034185812e-05,1.4057580301596317e-05,-0.0010018275352194905,0.00012238901399541646,1.823686034185812e-05,-2.7524672532308614e-06,-1.0421063052490354e-06,3.705769144237564e-21,-0.0009517361759208143,1.823686034185812e-05,0.00011001844541169703,5.538636591767416e-21,-9.857761824605404e-07,-2.3429299744748278e-06,1.5597313904436305e-05,-2.7524672532308614e-06,5.538636591767416e-21,7.864192497208933e-08,-6.617034692753506e-23,-1.1629528828642372e-22,1.823686034185812e-05,-1.0421063052490354e-06,-9.857761824605404e-07,-6.617034692753506e-23,5.6330069497789736e-08,2.3161057151484775e-23,1.4057580301596317e-05,3.705769144237564e-21,-2.3429299744748278e-06,-1.1629528828642372e-22,2.3161057151484775e-23,6.332243174256291e-08,36.0,39.0,0.016591256484389305,-0.0009765839204192162,-0.0009051265078596771,1.5197383618215099e-05,1.7325017324765213e-05,1.3028976354689803e-05,-0.0009765839204192162,0.00011927622108487412,1.7325017324765213e-05,-2.6818911464943085e-06,-9.900010127239511e-07,-2.6999175193730823e-21,-0.0009051265078596771,1.7325017324765213e-05,0.00010186694998992607,-3.0537082815273025e-21,-9.118430170929059e-07,-2.112806896548136e-06,1.5197383618215099e-05,-2.6818911464943085e-06,-3.0537082815273025e-21,7.662546153142102e-08,6.042192382207679e-23,5.175597123386189e-23,1.7325017324765213e-05,-9.900010127239511e-07,-9.118430170929059e-07,6.042192382207679e-23,5.2105313841366296e-08,4.301339185275744e-23,1.3028976354689803e-05,-2.6999175193730823e-21,-2.112806896548136e-06,5.175597123386189e-23,4.301339185275744e-23,5.560018223604857e-08,36.0,40.0,0.016197718679904938,-0.0009525812929496169,-0.000861859240103513,1.4817449482507072e-05,1.647989483899437e-05,1.2098334991605952e-05,-0.0009525812929496169,0.00011631785309873521,1.647989483899437e-05,-2.6148438792006345e-06,-9.417082651452802e-07,-2.0117032497289633e-21,-0.000861859240103513,1.647989483899437e-05,9.450151264900342e-05,-3.0002030648786546e-21,-8.451227699879382e-07,-1.9102635633316822e-06,1.4817449482507072e-05,-2.6148438792006345e-06,-3.0002030648786546e-21,7.470982410495708e-08,5.991790481251298e-23,4.90658892827422e-23,1.647989483899437e-05,-9.417082651452802e-07,-8.451227699879382e-07,5.991790481251298e-23,4.8292729815102575e-08,9.926167350636332e-24,1.2098334991605952e-05,-2.0117032497289633e-21,-1.9102635633316822e-06,4.90658892827422e-23,9.926167350636332e-24,4.8981114275648e-08,36.0,41.0,0.01582241803407669,-0.0009297303622588515,-0.0008216222049668431,1.4456048120337073e-05,1.5695137335569598e-05,1.1254265700699762e-05,-0.0009297303622588515,0.0001135027123382315,1.5695137335569598e-05,-2.551067154854536e-06,-8.968650035967585e-07,-2.2234614865425384e-21,-0.0008216222049668431,1.5695137335569598e-05,8.782959775999188e-05,-2.7915059617870226e-21,-7.847568781471637e-07,-1.7314254137090757e-06,1.4456048120337073e-05,-2.551067154854536e-06,-2.7915059617870226e-21,7.28876372591003e-08,5.1411866951560864e-23,4.6758439580534533e-23,1.5695137335569598e-05,-8.968650035967585e-07,-7.847568781471637e-07,5.1411866951560864e-23,4.484325089038066e-08,2.481541837659083e-23,1.1254265700699762e-05,-2.2234614865425384e-21,-1.7314254137090757e-06,4.6758439580534533e-23,2.481541837659083e-23,4.3285634632184156e-08,36.0,42.0,0.015464114025235176,-0.0009079502779059112,-0.0007841388578526676,1.411185621691402e-05,1.4965131413191557e-05,1.0486928658792749e-05,-0.0009079502779059112,0.00011082062701461837,1.4965131413191557e-05,-2.490327460691333e-06,-8.551503469789168e-07,3.1763735522036263e-21,-0.0007841388578526676,1.4965131413191557e-05,8.177143172360957e-05,4.281696876901877e-21,-7.300063771253917e-07,-1.57303941250575e-06,1.411185621691402e-05,-2.490327460691333e-06,4.281696876901877e-21,7.115221478670719e-08,-3.4915703106227544e-23,-8.898456402709951e-23,1.4965131413191557e-05,-8.551503469789168e-07,-7.300063771253917e-07,-3.4915703106227544e-23,4.1714653065128005e-08,-1.6543612251060553e-24,1.0486928658792749e-05,3.1763735522036263e-21,-1.57303941250575e-06,-8.898456402709951e-23,-1.6543612251060553e-24,3.836681372604289e-08,36.0,43.0,0.015121678821742535,-0.0008871673489920795,-0.0007491635624319315,1.3783673239231575e-05,1.428489758836804e-05,9.787800081539899e-06,-0.0008871673489920795,0.00010826238576555625,1.428489758836804e-05,-2.4324128844455117e-06,-8.162799076671945e-07,-1.4823076576950256e-21,-0.0007491635624319315,1.428489758836804e-05,7.625801663380116e-05,-2.4952864452006746e-21,-6.802332563893287e-07,-1.432361045772268e-06,1.3783673239231575e-05,-2.4324128844455117e-06,-2.4952864452006746e-21,6.949750996909643e-08,4.211067307536407e-23,4.1078921897425507e-23,1.428489758836804e-05,-8.162799076671945e-07,-6.802332563893287e-07,4.211067307536407e-23,3.88704712861454e-08,1.6543612251060553e-24,9.787800081539899e-06,-1.4823076576950256e-21,-1.432361045772268e-06,4.1078921897425507e-23,1.6543612251060553e-24,3.410383442314924e-08,36.0,44.0,0.014794079586863518,-0.0008673146949149668,-0.0007164773414842784,1.347040779364761e-05,1.3650013897859026e-05,9.149465768132359e-06,-0.0008673146949149668,0.00010581959941191599,1.3650013897859026e-05,-2.3771308406139724e-06,-7.800007892910799e-07,5.558653716356346e-21,-0.0007164773414842784,1.3650013897859026e-05,7.122945680748671e-05,8.972777071183612e-21,-6.348843726300402e-07,-1.3070665545455995e-06,1.347040779364761e-05,-2.3771308406139724e-06,8.972777071183612e-21,6.791802320549323e-08,-6.343279132713918e-23,-1.6795993467100998e-22,1.3650013897859026e-05,-7.800007892910799e-07,-6.348843726300402e-07,-6.343279132713918e-23,3.62791077179736e-08,1.1580528575742387e-23,9.149465768132359e-06,5.558653716356346e-21,-1.3070665545455995e-06,-1.6795993467100998e-22,1.1580528575742387e-23,3.039689744355201e-08,36.0,45.0,0.014480373822152615,-0.000848331197630614,-0.0006858847918920219,1.3171065802453086e-05,1.3056534953648224e-05,8.565457392251119e-06,-0.000848331197630614,0.00010348463547416031,1.3056534953648224e-05,-2.3243057967192726e-06,-7.460877213816275e-07,-1.1911400820763599e-21,-0.0006858847918920219,1.3056534953648224e-05,6.663359090453014e-05,-1.4915498258428501e-21,-5.934788305239636e-07,-1.195180061586143e-06,1.3171065802453086e-05,-2.3243057967192726e-06,-1.4915498258428501e-21,6.640873806418313e-08,-4.913332979039045e-24,3.585232081444007e-23,1.3056534953648224e-05,-7.460877213816275e-07,-5.934788305239636e-07,-4.913332979039045e-24,3.39130785675934e-08,-3.308722450212111e-24,8.565457392251119e-06,-1.1911400820763599e-21,-1.195180061586143e-06,3.585232081444007e-23,-3.308722450212111e-24,2.7163183702327842e-08,36.0,46.0,0.014179695397615433,-0.0008301609195768833,-0.0006572107668034732,1.2884738680440933e-05,1.2500937373260967e-05,8.030116077861749e-06,-0.0008301609195768833,0.000101250501757022,1.2500937373260967e-05,-2.273777454320225e-06,-7.143393077058136e-07,2.4616895029578104e-21,-0.0006572107668034732,1.2500937373260967e-05,6.24248496023938e-05,4.1225550818649174e-21,-5.555972393267439e-07,-1.0950158184641623e-06,1.2884738680440933e-05,-2.273777454320225e-06,4.1225550818649174e-21,6.496506443909311e-08,-6.14684140771685e-23,-6.770795673866841e-23,1.2500937373260967e-05,-7.143393077058136e-07,-5.555972393267439e-07,-6.14684140771685e-23,3.1748413675813936e-08,-3.308722450212111e-24,8.030116077861749e-06,2.4616895029578104e-21,-1.0950158184641623e-06,-6.770795673866841e-23,-3.308722450212111e-24,2.4333685288979723e-08,36.0,47.0,0.013891249895095825,-0.0008127528708428144,-0.0006302981055341661,1.261059514945373e-05,1.1980065210082103e-05,7.538476438639918e-06,-0.0008127528708428144,9.911079541780055e-05,1.1980065210082103e-05,-2.2253991573961684e-06,-6.845751272521738e-07,2.4352197233561135e-21,-0.0006302981055341661,1.1980065210082103e-05,5.856330244569108e-05,3.908745453288082e-21,-5.208723905525403e-07,-1.0051302297142684e-06,1.261059514945373e-05,-2.2253991573961684e-06,3.908745453288082e-21,6.358283144436427e-08,-5.640053811920078e-23,-6.351600668630913e-23,1.1980065210082103e-05,-6.845751272521738e-07,-5.208723905525403e-07,-5.640053811920078e-23,2.9764137821075565e-08,-8.271806125530277e-24,7.538476438639918e-06,2.4352197233561135e-21,-1.0051302297142684e-06,-6.351600668630913e-23,-8.271806125530277e-24,2.1850656395372425e-08,36.0,48.0,0.013614306226372719,-0.0007960599032230675,-0.0006050055380910635,1.2347873962426092e-05,1.1491082659631502e-05,7.086167897796258e-06,-0.0007960599032230675,9.705966658657417e-05,1.1491082659631502e-05,-2.1790365281049162e-06,-6.566332899637928e-07,1.852884572118782e-21,-0.0006050055380910635,1.1491082659631502e-05,5.501386840478517e-05,3.711445913529279e-21,-4.889822662335064e-07,-9.242827445632429e-07,1.2347873962426092e-05,-2.1790365281049162e-06,3.711445913529279e-21,6.225818793836879e-08,-5.184437414234458e-23,-5.966317215988626e-23,1.1491082659631502e-05,-6.566332899637928e-07,-4.889822662335064e-07,-5.184437414234458e-23,2.7941842617451584e-08,8.271806125530277e-24,7.086167897796258e-06,1.852884572118782e-21,-9.242827445632429e-07,-5.966317215988626e-23,8.271806125530277e-24,1.9665590045292447e-08,36.0,49.0,0.013348188251256943,-0.0007800388848409057,-0.0005812054732814431,1.209587662742706e-05,1.1031439498765394e-05,6.669334197795251e-06,-0.0007800388848409057,9.509172377875075e-05,1.1031439498765394e-05,-2.1345665572880534e-06,-6.303679924712924e-07,-8.735027268559972e-22,-0.0005812054732814431,1.1031439498765394e-05,5.1745635573752224e-05,-1.3467802939489991e-21,-4.5964330297465494e-07,-8.514043656759895e-07,1.209587662742706e-05,-2.1345665572880534e-06,-1.3467802939489991e-21,6.098761673456465e-08,-4.408103815583578e-39,2.805792384241869e-23,1.1031439498765394e-05,-6.303679924712924e-07,-4.5964330297465494e-07,-4.408103815583578e-39,2.6265333019637183e-08,-3.308722450212111e-24,6.669334197795251e-06,-8.735027268559972e-22,-8.514043656759895e-07,2.805792384241869e-23,-3.308722450212111e-24,1.7737590951583115e-08,36.0,50.0,0.013092273846268654,-0.0007646501180715859,-0.0005587827763520181,1.1853959222207777e-05,1.0598833796393592e-05,6.2845651882526e-06,-0.0007646501180715859,9.320200479123741e-05,1.0598833796393592e-05,-2.0918751033605076e-06,-6.056476422600099e-07,-5.293955920339377e-22,-0.0005587827763520181,1.0598833796393592e-05,4.8731290007708594e-05,-1.294685888765023e-21,-4.3260547499812674e-07,-7.85570648531575e-07,1.1853959222207777e-05,-2.0918751033605076e-06,-1.294685888765023e-21,5.976786354722208e-08,-2.497925495497361e-38,2.6422162379735935e-23,1.0598833796393592e-05,-6.056476422600099e-07,-4.3260547499812674e-07,-2.497925495497361e-38,2.4720312907788866e-08,-1.6543612251060553e-23,6.2845651882526e-06,-5.293955920339377e-22,-7.85570648531575e-07,2.6422162379735935e-23,-1.6543612251060553e-23,1.6032053906656074e-08,36.0,51.0,0.012845988385379314,-0.0007498568156734109,-0.0005376331391744316,1.1621528756222688e-05,1.0191186447627842e-05,5.928834980295505e-06,-0.0007498568156734109,9.138593304669484e-05,1.0191186447627842e-05,-2.050858029178926e-06,-5.823535502713639e-07,2.8322664173815668e-21,-0.0005376331391744316,1.0191186447627842e-05,4.5946646423544735e-05,5.315834201306551e-21,-4.076474624525872e-07,-7.259798167069675e-07,1.1621528756222688e-05,-2.050858029178926e-06,5.315834201306551e-21,5.859594409685087e-08,-2.3851354619763853e-23,-9.001003902767613e-23,1.0191186447627842e-05,-5.823535502713639e-07,-4.076474624525872e-07,-2.3851354619763853e-23,2.3294141726637463e-08,1.2407709188295415e-23,5.928834980295505e-06,2.8322664173815668e-21,-7.259798167069675e-07,-9.001003902767613e-23,1.2407709188295415e-23,1.4519596192030804e-08,36.0,52.0,0.012608797289431095,-0.0007356250425800681,-0.0005176620907150209,1.1398037713661324e-05,9.806613888940774e-06,5.599455107585527e-06,-0.0007356250425800681,8.963928848970681e-05,9.806613888940774e-06,-2.011418473557569e-06,-5.603779413831944e-07,2.8587361969832636e-21,-0.0005176620907150209,9.806613888940774e-06,4.3370229832362384e-05,5.007585426818022e-21,-3.8457307027783827e-07,-6.719346288264205e-07,1.1398037713661324e-05,-2.011418473557569e-06,5.007585426818022e-21,5.746909792492261e-08,-2.323927586568106e-23,-8.285272296726762e-23,9.806613888940774e-06,-5.603779413831944e-07,-3.8457307027783827e-07,-2.323927586568106e-23,2.197560533545584e-08,1.6543612251060553e-24,5.599455107585527e-06,2.8587361969832636e-21,-6.719346288264205e-07,-8.285272296726762e-23,1.6543612251060553e-24,1.3175188939840154e-08,36.0,53.0,0.01238020695745945,-0.000721923541277647,-0.0004987835418432951,1.1182980415469501e-05,9.443405360798351e-06,5.294030415825546e-06,-0.000721923541277647,8.79581639310345e-05,9.443405360798351e-06,-1.9734670786419883e-06,-5.396231586018985e-07,-8.470329472543003e-22,-0.0004987835418432951,9.443405360798351e-06,4.098292993148789e-05,-1.765668918231114e-21,-3.6320790286481497e-07,-6.228270876817987e-07,1.1182980415469501e-05,-1.9734670786419883e-06,-1.765668918231114e-21,5.6384774183015907e-08,3.487620326298132e-23,2.221798813878935e-23,9.443405360798351e-06,-5.396231586018985e-07,-3.6320790286481497e-07,3.487620326298132e-23,2.075473837237496e-08,2.481541837659083e-24,5.294030415825546e-06,-8.470329472543003e-22,-6.228270876817987e-07,2.221798813878935e-23,2.481541837659083e-24,1.1977444813737748e-08,36.0,54.0,0.012159757316112518,-0.000708723091520369,-0.000480919232359156,1.0975888471875805e-05,9.10000926523935e-06,5.010421773476992e-06,-0.000708723091520369,8.633893594378605e-05,9.10000926523935e-06,-1.936921535161673e-06,-5.200005261940532e-07,2.3822801641527197e-21,-0.000480919232359156,9.10000926523935e-06,3.876770642818883e-05,4.45663830631474e-21,-3.433965787280613e-07,-5.781255936199159e-07,1.0975888471875805e-05,-1.936921535161673e-06,4.45663830631474e-21,5.5340613869248045e-08,-2.199576917723221e-23,-7.049996898507352e-23,9.10000926523935e-06,-5.200005261940532e-07,-3.433965787280613e-07,-2.199576917723221e-23,1.962266082955466e-08,2.481541837659083e-24,5.010421773476992e-06,2.3822801641527197e-21,-5.781255936199159e-07,-7.049996898507352e-23,2.481541837659083e-24,1.0908030034784133e-08,36.0,55.0,0.011947020888328552,-0.0006959967431612313,-0.0004639978287741542,1.0776326234918088e-05,8.775008609518409e-06,4.746715148939984e-06,-0.0006959967431612313,8.477825031150132e-05,8.775008609518409e-06,-1.9017046497538104e-06,-5.014290991312009e-07,-4.764560328305439e-22,-0.0004639978287741542,8.775008609518409e-06,3.6709330743178725e-05,-1.6008454061668413e-21,-3.2500031466042856e-07,-5.373639737626945e-07,1.0776326234918088e-05,-1.9017046497538104e-06,-1.6008454061668413e-21,5.4334421406565525e-08,3.007259255281901e-23,1.989953698239747e-23,8.775008609518409e-06,-5.014290991312009e-07,-3.2500031466042856e-07,3.007259255281901e-23,1.857144660277754e-08,-7.444625512977249e-24,4.746715148939984e-06,-4.764560328305439e-22,-5.373639737626945e-07,1.989953698239747e-23,-7.444625512977249e-24,9.951184765100152e-09,36.0,56.0,0.01174159999936819,-0.00068371940869838,-0.0004479541094042361,1.0583892617432866e-05,8.467113730148412e-06,4.501195689954329e-06,-0.00068371940869838,8.327299292432144e-05,8.467113730148412e-06,-1.8677457092053373e-06,-4.838350946556602e-07,1.402898318889935e-21,-0.0004479541094042361,8.467113730148412e-06,3.479415681795217e-05,2.5643384568387713e-21,-3.0789504990025307e-07,-5.001328418074991e-07,1.0583892617432866e-05,-1.8677457092053373e-06,2.5643384568387713e-21,5.336416109003039e-08,-2.79810793239193e-23,-3.7721264827540726e-23,8.467113730148412e-06,-4.838350946556602e-07,-3.0789504990025307e-07,-2.79810793239193e-23,1.7594002699183875e-08,-3.308722450212111e-24,4.501195689954329e-06,1.402898318889935e-21,-5.001328418074991e-07,-3.7721264827540726e-23,-3.308722450212111e-24,9.09332431575649e-09,36.0,57.0,0.011543123051524162,-0.0006718678050674498,-0.0004327284113969654,1.0398210179118905e-05,8.17514410300646e-06,4.272321348253172e-06,-0.0006718678050674498,8.182026067515835e-05,8.17514410300646e-06,-1.8349782067161868e-06,-4.671510964726622e-07,1.0984958534704208e-21,-0.0004327284113969654,8.17514410300646e-06,3.3009942853823304e-05,2.4601906419943415e-21,-2.919694281899865e-07,-4.6607141257482e-07,1.0398210179118905e-05,-1.8349782067161868e-06,2.4601906419943415e-21,5.2427949981392885e-08,-2.6068276222210168e-23,-3.578563997984355e-23,8.17514410300646e-06,-4.671510964726622e-07,-2.919694281899865e-07,-2.6068276222210168e-23,1.668396798493177e-08,4.963083675318166e-24,4.272321348253172e-06,1.0984958534704208e-21,-4.6607141257482e-07,-3.578563997984355e-23,4.963083675318166e-24,8.322703415331034e-09,36.0,58.0,0.011351245455443859,-0.0006604200461879373,-0.00041826601955108345,1.0218930583505426e-05,7.898021067376249e-06,4.058705144416308e-06,-0.0006604200461879373,8.041734690777957e-05,7.898021067376249e-06,-1.8033406377071515e-06,-4.5131545789445227e-07,1.0323214044661785e-21,-0.00041826601955108345,7.898021067376249e-06,3.134568396490067e-05,2.3624068268187064e-21,-2.77123547220981e-07,-4.3486124923219904e-07,1.0218930583505426e-05,-1.8033406377071515e-06,2.3624068268187064e-21,5.152401882924096e-08,-2.4316171975503609e-23,-3.398024344582388e-23,7.898021067376249e-06,-4.5131545789445227e-07,-2.77123547220981e-07,-2.4316171975503609e-23,1.5835631472782552e-08,6.617444900424222e-24,4.058705144416308e-06,1.0323214044661785e-21,-4.3486124923219904e-07,-3.398024344582388e-23,6.617444900424222e-24,7.62914531549086e-09,36.0,59.0,0.01116564217954874,-0.0006493558757938445,-0.00040451675886288285,1.0045728231489193e-05,7.634753274032846e-06,3.8590965232288e-06,-0.0006493558757938445,7.90617341408506e-05,7.634753274032846e-06,-1.7727755903251818e-06,-4.36271619719264e-07,9.661469554619363e-22,-0.00040451675886288285,7.634753274032846e-06,2.979146120196674e-05,2.270473658500072e-21,-2.63267367017761e-07,-4.062206926391809e-07,1.0045728231489193e-05,-1.7727755903251818e-06,2.270473658500072e-21,5.0650729832568686e-08,-2.2708831593514157e-23,-3.2294296230072776e-23,7.634753274032846e-06,-4.36271619719264e-07,-2.63267367017761e-07,-2.2708831593514157e-23,1.504384883332932e-08,5.790264287871194e-24,3.8590965232288e-06,9.661469554619363e-22,-4.062206926391809e-07,-3.2294296230072776e-23,5.790264287871194e-24,7.0038050914433825e-09,36.0,60.0,0.01098601147532463,-0.0006386563181877136,-0.00039143452886492014,9.878299351839814e-06,7.384433502011234e-06,3.672366119644721e-06,-0.0006386563181877136,7.775107224006206e-05,7.384433502011234e-06,-1.7432292906960356e-06,-4.2196762706225854e-07,-5.69100261436483e-22,-0.00039143452886492014,7.384433502011234e-06,2.8338332413113676e-05,-1.2777458518209835e-21,-2.5031977202161215e-07,-3.798999443915818e-07,9.878299351839814e-06,-1.7432292906960356e-06,-1.2777458518209835e-21,4.9806551771780505e-08,2.1232137621481978e-23,1.5359041360840767e-23,7.384433502011234e-06,-4.2196762706225854e-07,-2.5031977202161215e-07,2.1232137621481978e-23,1.430398732793492e-08,8.271806125530277e-25,3.672366119644721e-06,-5.69100261436483e-22,-3.798999443915818e-07,1.5359041360840767e-23,8.271806125530277e-25,6.438982236289803e-09,36.0,61.0,0.010812068358063698,-0.000628303736448288,-0.0003789768379647285,9.716360182210337e-06,7.146225925680483e-06,3.4974916616192786e-06,-0.000628303736448288,7.648316386621445e-05,7.146225925680483e-06,-1.7146517166111153e-06,-4.0835578829501173e-07,-4.367513634279986e-22,-0.0003789768379647285,7.146225925680483e-06,2.6978204914485104e-05,-1.2250715518301357e-21,-2.3820753369818704e-07,-3.5567711620387854e-07,9.716360182210337e-06,-1.7146517166111153e-06,-1.2250715518301357e-21,4.899004935055018e-08,1.9873550326457678e-23,1.4621407505082998e-23,7.146225925680483e-06,-4.0835578829501173e-07,-2.3820753369818704e-07,1.9873550326457678e-23,1.3611859195350462e-08,-3.308722450212111e-24,3.4974916616192786e-06,-4.367513634279986e-22,-3.5567711620387854e-07,1.4621407505082998e-23,-3.308722450212111e-24,5.927951907125362e-09,36.0,62.0,0.010643547400832176,-0.0006182813667692244,-0.000367104570614174,9.559644240653142e-06,6.9193615672702435e-06,3.3335466014250414e-06,-0.0006182813667692244,7.525594264734536e-05,6.9193615672702435e-06,-1.6869961427801172e-06,-3.953921066113253e-07,-5.029258124322408e-22,-0.000367104570614174,6.9193615672702435e-06,2.5703757273731753e-05,-1.1756300416942071e-21,-2.2686431577767507e-07,-3.333546771955298e-07,9.559644240653142e-06,-1.6869961427801172e-06,-1.1756300416942071e-21,4.819988674853448e-08,1.8621913637519622e-23,1.3930270688800765e-23,6.9193615672702435e-06,-3.953921066113253e-07,-2.2686431577767507e-07,1.8621913637519622e-23,1.2963675466437508e-08,1.2407709188295415e-24,3.3335466014250414e-06,-5.029258124322408e-22,-3.333546771955298e-07,1.3930270688800765e-23,1.2407709188295415e-24,5.464830810097965e-09,36.0,63.0,0.010480199009180069,-0.0006085737841203809,-0.00035578160895965993,9.407904144609347e-06,6.703131930407835e-06,3.179690793331247e-06,-0.0006085737841203809,7.406748045468703e-05,6.703131930407835e-06,-1.6602183450231678e-06,-3.830361094969703e-07,-1.3840269485015227e-21,-0.00035578160895965993,6.703131930407835e-06,2.450834472256247e-05,-2.064642808932357e-21,-2.162300489771951e-07,-3.1275646961148595e-07,9.407904144609347e-06,-1.6602183450231678e-06,-2.064642808932357e-21,4.7434809857804794e-08,1.9852334701272664e-23,2.5745166684040694e-23,6.703131930407835e-06,-3.830361094969703e-07,-2.162300489771951e-07,1.9852334701272664e-23,1.2356003331603915e-08,1.2296334650252692e-23,3.179690793331247e-06,-1.3840269485015227e-21,-3.1275646961148595e-07,2.5745166684040694e-23,1.2296334650252692e-23,5.0444590726783645e-09,36.0,64.0,0.010321788489818573,-0.0005991663201712072,-0.0003449745709076524,9.260905244445894e-06,6.49688172416063e-06,3.0351593522937037e-06,-0.0005991663201712072,7.291598012670875e-05,6.49688172416063e-06,-1.6342775097655249e-06,-3.7125036556062696e-07,-1.9995564578627916e-21,-0.0003449745709076524,6.49688172416063e-06,2.3385935492115095e-05,-1.4823076576950256e-21,-2.0625020624720491e-07,-2.937250940249214e-07,9.260905244445894e-06,-1.6342775097655249e-06,-1.4823076576950256e-21,4.6693642730133433e-08,-5.955700410381799e-23,4.066121373722374e-23,6.49688172416063e-06,-3.7125036556062696e-07,-2.0625020624720491e-07,-5.955700410381799e-23,1.1785726172774957e-08,1.5146526966139658e-23,3.0351593522937037e-06,-1.9995564578627916e-21,-2.937250940249214e-07,4.066121373722374e-23,1.5146526966139658e-23,4.6623029881232014e-09,37.0,3.0,0.12933582067489624,-0.010121457278728485,-0.07894736528396606,0.0001823686034185812,0.002133712638169527,0.013513513840734959,-0.010121457278728485,0.001323040807619691,0.002133712638169527,-3.126318915747106e-05,-0.00011853959586005658,4.9873299934333204e-18,-0.07894736528396606,0.002133712638169527,0.2140825092792511,1.119083732682012e-19,-0.002133712638169527,-0.0810810774564743,0.0001823686034185812,-3.126318915747106e-05,1.119083732682012e-19,8.684219210408628e-07,1.910117958027279e-21,-7.649582127957136e-20,0.002133712638169527,-0.00011853959586005658,-0.002133712638169527,1.910117958027279e-21,0.00011853959586005658,-1.8431436932253575e-18,0.013513513840734959,4.9873299934333204e-18,-0.0810810774564743,-7.649582127957136e-20,-1.8431436932253575e-18,0.04054053872823715,37.0,4.0,0.10816828906536102,-0.007911150343716145,-0.05142247676849365,0.00013677644892595708,0.0012802275596186519,0.006756756920367479,-0.007911150343716145,0.0010100615909323096,0.0012802275596186519,-2.3447391868103296e-05,-7.112375897122547e-05,3.469446951953614e-18,-0.05142247676849365,0.0012802275596186519,0.08157894760370255,2.476910660204552e-19,-0.0008534850785508752,-0.020270269364118576,0.00013677644892595708,-2.3447391868103296e-05,2.476910660204552e-19,6.513164407806471e-07,-1.0431960224386057e-21,-7.348056053870804e-20,0.0012802275596186519,-7.112375897122547e-05,-0.0008534850785508752,-1.0431960224386057e-21,4.741583688883111e-05,-2.710505431213761e-19,0.006756756920367479,3.469446951953614e-18,-0.020270269364118576,-7.348056053870804e-20,-2.710505431213761e-19,0.006756756920367479,37.0,5.0,0.09300485998392105,-0.0064996168948709965,-0.03621215373277664,0.00010942116205114871,0.0008534850785508752,0.0038610037881881,-0.0064996168948709965,0.0008175324182957411,0.0008534850785508752,-1.8757913494482636e-05,-4.741583688883111e-05,1.0842021724855044e-19,-0.03621215373277664,0.0008534850785508752,0.04127210006117821,-1.9612092047701428e-20,-0.0004267425392754376,-0.0077220075763762,0.00010942116205114871,-1.8757913494482636e-05,-1.9612092047701428e-20,5.210531526245177e-07,5.441208609658021e-22,1.984260280827488e-21,0.0008534850785508752,-4.741583688883111e-05,-0.0004267425392754376,5.441208609658021e-22,2.3707918444415554e-05,-1.3552527156068805e-19,0.0038610037881881,1.0842021724855044e-19,-0.0077220075763762,1.984260280827488e-21,-1.3552527156068805e-19,0.00193050189409405,37.0,6.0,0.08158519864082336,-0.00551795307546854,-0.026900019496679306,9.11843017092906e-05,0.0006096321740187705,0.002413127338513732,-0.00551795307546854,0.0006869217613711953,0.0006096321740187705,-1.563159457873553e-05,-3.386845492059365e-05,-5.963111948670274e-19,-0.026900019496679306,0.0006096321740187705,0.02403220906853676,-6.449489108219597e-20,-0.00024385287542827427,-0.0036196911241859198,9.11843017092906e-05,-1.563159457873553e-05,-6.449489108219597e-20,4.342109605204314e-07,1.3778206705266742e-21,6.093396094009901e-21,0.0006096321740187705,-3.386845492059365e-05,-0.00024385287542827427,1.3778206705266742e-21,1.354738196823746e-05,1.4907779871675686e-19,0.002413127338513732,-5.963111948670274e-19,-0.0036196911241859198,6.093396094009901e-21,1.4907779871675686e-19,0.000723938224837184,37.0,7.0,0.07266867905855179,-0.004794991575181484,-0.020778296515345573,7.815797289367765e-05,0.00045722414506599307,0.001608751597814262,-0.004794991575181484,0.0005924188299104571,0.00045722414506599307,-1.3398509508988354e-05,-2.5401341190445237e-05,-6.640738306473715e-19,-0.020778296515345573,0.00045722414506599307,0.0152916070073843,-4.221440323569084e-20,-0.00015240804350469261,-0.00193050189409405,7.815797289367765e-05,-1.3398509508988354e-05,-4.221440323569084e-20,3.7218083548395953e-07,9.109502190841028e-22,3.68126270690033e-21,0.00045722414506599307,-2.5401341190445237e-05,-0.00015240804350469261,9.109502190841028e-22,8.467113730148412e-06,1.6263032587282567e-19,0.001608751597814262,-6.640738306473715e-19,-0.00193050189409405,3.68126270690033e-21,1.6263032587282567e-19,0.0003217503253836185,37.0,8.0,0.06551136076450348,-0.004240070004016161,-0.016536273062229156,6.838822446297854e-05,0.0003556187730282545,0.0011261261533945799,-0.004240070004016161,0.0005208360380493104,0.0003556187730282545,-1.1723695934051648e-05,-1.975659870367963e-05,1.6263032587282567e-19,-0.016536273062229156,0.0003556187730282545,0.01035527978092432,1.7597209322492964e-21,-0.00010160536476178095,-0.0011261261533945799,6.838822446297854e-05,-1.1723695934051648e-05,1.7597209322492964e-21,3.2565822039032355e-07,2.6787605980611914e-22,-9.614595313413386e-22,0.0003556187730282545,-1.975659870367963e-05,-0.00010160536476178095,2.6787605980611914e-22,5.644742486765608e-06,-4.0657581468206416e-20,0.0011261261533945799,1.6263032587282567e-19,-0.0011261261533945799,-9.614595313413386e-22,-4.0657581468206416e-20,0.00016087516269180924,37.0,9.0,0.05963851138949394,-0.0038005616515874863,-0.013474718667566776,6.0789534472860396e-05,0.0002844950358849019,0.0008190008229576051,-0.0038005616515874863,0.0004647215246222913,0.0002844950358849019,-1.0421063052490354e-05,-1.5805278962943703e-05,-6.776263578034403e-21,-0.013474718667566776,0.0002844950358849019,0.007346683647483587,-2.35856617230466e-21,-7.112375897122547e-05,-0.0007020006887614727,6.0789534472860396e-05,-1.0421063052490354e-05,-2.35856617230466e-21,2.894739736802876e-07,7.050774399815537e-23,1.6410080187911982e-22,0.0002844950358849019,-1.5805278962943703e-05,-7.112375897122547e-05,7.050774399815537e-23,3.951319740735926e-06,-1.6940658945086007e-21,0.0008190008229576051,-6.776263578034403e-21,-0.0007020006887614727,1.6410080187911982e-22,-1.6940658945086007e-21,8.775008609518409e-05,37.0,10.0,0.054732464253902435,-0.003443782450631261,-0.011192292906343937,5.4710581025574356e-05,0.00023276865249499679,0.0006142506026662886,-0.003443782450631261,0.0004195425135549158,0.00023276865249499679,-9.378956747241318e-06,-1.2931592209497467e-05,8.131516293641283e-20,-0.011192292906343937,0.00023276865249499679,0.005404866766184568,-7.833693629941974e-21,-5.172636883798987e-05,-0.0004606879665516317,5.4710581025574356e-05,-9.378956747241318e-06,-7.833693629941974e-21,2.6052657631225884e-07,1.6171777299130474e-22,1.677635777253696e-22,0.00023276865249499679,-1.2931592209497467e-05,-5.172636883798987e-05,1.6171777299130474e-22,2.8736869808199117e-06,-1.6940658945086007e-20,0.0006142506026662886,8.131516293641283e-20,-0.0004606879665516317,1.677635777253696e-22,-1.6940658945086007e-20,5.118755143485032e-05,37.0,11.0,0.050572469830513,-0.0031483452767133713,-0.009445035830140114,4.973689283360727e-05,0.00019397387222852558,0.0004725004837382585,-0.0031483452767133713,0.00038238195702433586,0.00019397387222852558,-8.526324563717935e-06,-1.0776326234918088e-05,5.421010862427522e-20,-0.009445035830140114,0.00019397387222852558,0.0040940092876553535,1.4494333675771515e-20,-3.87947766284924e-05,-0.0003150003030896187,4.973689283360727e-05,-8.526324563717935e-06,1.4494333675771515e-20,2.3684233951826172e-07,-3.789528249452269e-22,-7.359963698451482e-22,0.00019397387222852558,-1.0776326234918088e-05,-3.87947766284924e-05,-3.789528249452269e-22,2.1552652924583526e-06,-4.446922973085077e-21,0.0004725004837382585,5.421010862427522e-20,-0.0003150003030896187,-7.359963698451482e-22,-4.446922973085077e-21,3.150003249174915e-05,37.0,12.0,0.04700029641389847,-0.0028996607288718224,-0.00807762611657381,4.55921508546453e-05,0.00016413175035268068,0.00037125038215890527,-0.0028996607288718224,0.0003512766561470926,0.00016413175035268068,-7.815797289367765e-06,-9.11843017092906e-06,-1.4568966692773966e-19,-0.00807762611657381,0.00016413175035268068,0.003176411148160696,-3.782087864855518e-20,-2.984213460877072e-05,-0.00022275022638496011,4.55921508546453e-05,-7.815797289367765e-06,-3.782087864855518e-20,2.171054802602157e-07,4.510401209111244e-22,2.373747238756674e-21,0.00016413175035268068,-9.11843017092906e-06,-2.984213460877072e-05,4.510401209111244e-22,1.6578964050495415e-06,9.317362419797304e-21,0.00037125038215890527,-1.4568966692773966e-19,-0.00022275022638496011,2.373747238756674e-21,9.317362419797304e-21,2.025001958827488e-05,37.0,13.0,0.0438995286822319,-0.0026874318718910217,-0.006987322587519884,4.208506288705394e-05,0.00014068435120861977,0.0002970003115478903,-0.0026874318718910217,0.0003248566063120961,0.00014068435120861977,-7.214582183223683e-06,-7.815797289367765e-06,-3.3881317890172014e-20,-0.006987322587519884,0.00014068435120861977,0.0025145551189780235,-2.607762611720321e-21,-2.3447391868103296e-05,-0.00016200015670619905,4.208506288705394e-05,-7.214582183223683e-06,-2.607762611720321e-21,2.004050543291669e-07,-3.1349859332567697e-23,2.4956706520159534e-22,0.00014068435120861977,-7.815797289367765e-06,-2.3447391868103296e-05,-3.1349859332567697e-23,1.3026328815612942e-06,2.2234614865425384e-21,0.0002970003115478903,-3.3881317890172014e-20,-0.00016200015670619905,2.4956706520159534e-22,2.2234614865425384e-21,1.3500013665179722e-05,37.0,14.0,0.04118260741233826,-0.0025041813496500254,-0.006103942170739174,3.9078986446838826e-05,0.00012192643771413714,0.00024131273676175624,-0.0025041813496500254,0.00030213638092391193,0.00012192643771413714,-6.699254754494177e-06,-6.77369098411873e-06,-2.879912020664621e-20,-0.006103942170739174,0.00012192643771413714,0.002024975372478366,-6.7181763543256435e-21,-1.8757913494482636e-05,-0.00012065636838087812,3.9078986446838826e-05,-6.699254754494177e-06,-6.7181763543256435e-21,1.8609041774197976e-07,1.4392403708652235e-22,1.931893472506608e-22,0.00012192643771413714,-6.77369098411873e-06,-1.8757913494482636e-05,1.4392403708652235e-22,1.0421063052490354e-06,2.541098841762901e-21,0.00024131273676175624,-2.879912020664621e-20,-0.00012065636838087812,1.931893472506608e-22,2.541098841762901e-21,9.281259735871572e-06,37.0,15.0,0.03878239914774895,-0.002344348467886448,-0.0053782109171152115,3.647372068371624e-05,0.0001066856348188594,0.00019872814300470054,-0.002344348467886448,0.0002823891118168831,0.0001066856348188594,-6.252637831494212e-06,-5.926979611103889e-06,-1.6940658945086007e-21,-0.0053782109171152115,0.0001066856348188594,0.0016549491556361318,1.2024477783748661e-21,-1.5240804714267142e-05,-9.172067802865058e-05,3.647372068371624e-05,-6.252637831494212e-06,1.2024477783748661e-21,1.7368438420817256e-07,4.405363748492342e-23,-2.377643933949427e-22,0.0001066856348188594,-5.926979611103889e-06,-1.5240804714267142e-05,4.405363748492342e-23,8.467113730148412e-07,1.0587911840678754e-21,0.00019872814300470054,-1.6940658945086007e-21,-9.172067802865058e-05,-2.377643933949427e-22,1.0587911840678754e-21,6.5514773268660065e-06,37.0,16.0,0.03664656728506088,-0.002203709911555052,-0.0047747050411999226,3.419411223148927e-05,9.413438237970695e-05,0.00016560677613597363,-0.002203709911555052,0.000265066628344357,9.413438237970695e-05,-5.861847967025824e-06,-5.229687758401269e-06,1.1858461261560205e-20,-0.0047747050411999226,9.413438237970695e-05,0.0013700288254767656,3.1526652149105354e-21,-1.2551250620163046e-05,-7.097433262970299e-05,3.419411223148927e-05,-5.861847967025824e-06,3.1526652149105354e-21,1.6282911019516177e-07,6.626400680509015e-23,-3.0347039786100297e-22,9.413438237970695e-05,-5.229687758401269e-06,-1.2551250620163046e-05,6.626400680509015e-23,6.972917390157818e-07,-1.5881867761018131e-22,0.00016560677613597363,1.1858461261560205e-20,-7.097433262970299e-05,-3.0347039786100297e-22,-1.5881867761018131e-22,4.731622539111413e-06,37.0,17.0,0.03473370894789696,-0.0020790020935237408,-0.004267425276339054,3.2182695576921105e-05,8.36750041344203e-05,0.00013945833779871464,-0.0020790020935237408,0.0002497479144949466,8.36750041344203e-05,-5.517033514479408e-06,-4.648611593438545e-06,1.6940658945086007e-21,-0.004267425276339054,8.36750041344203e-05,0.0011470448225736618,4.7003964774893266e-21,-1.0459375516802538e-05,-5.578333730227314e-05,3.2182695576921105e-05,-5.517033514479408e-06,4.7003964774893266e-21,1.5325092306284205e-07,-4.406563763701364e-23,-2.5976043551804814e-22,8.36750041344203e-05,-4.648611593438545e-06,-1.0459375516802538e-05,-4.406563763701364e-23,5.810764491798182e-07,9.529120656610879e-22,0.00013945833779871464,1.6940658945086007e-21,-5.578333730227314e-05,-2.5976043551804814e-22,9.529120656610879e-22,3.486458581392071e-06,37.0,18.0,0.033010635524988174,-0.001967661315575242,-0.0038369393441826105,3.0394767236430198e-05,7.486710819648579e-05,0.00011853959586005658,-0.001967661315575242,0.00023610411153640598,7.486710819648579e-05,-5.210531526245177e-06,-4.159283889748622e-06,6.606856988583543e-20,-0.0038369393441826105,7.486710819648579e-05,0.0009700153605081141,1.870014804058159e-20,-8.807895028439816e-06,-4.4452346628531814e-05,3.0394767236430198e-05,-5.210531526245177e-06,1.870014804058159e-20,1.447369868401438e-07,-1.1709901764198633e-22,-9.02642769067431e-22,7.486710819648579e-05,-4.159283889748622e-06,-8.807895028439816e-06,-1.1709901764198633e-22,4.893275331596669e-07,-3.0704944337968387e-21,0.00011853959586005658,6.606856988583543e-20,-4.4452346628531814e-05,-9.02642769067431e-22,-3.0704944337968387e-21,2.6148438792006345e-06,37.0,19.0,0.03145043924450874,-0.001867646467871964,-0.0034684862475842237,2.8795042453566566e-05,6.738040247000754e-05,0.00010160536476178095,-0.001867646467871964,0.0002238745946669951,6.738040247000754e-05,-4.936292953061638e-06,-3.7433555917232297e-06,6.776263578034403e-21,-0.0034684862475842237,6.738040247000754e-05,0.0008276695152744651,2.0711851290310553e-21,-7.4867111834464595e-06,-3.586071761674248e-05,2.8795042453566566e-05,-4.936292953061638e-06,2.0711851290310553e-21,1.3711924395920505e-07,-2.667696602984413e-23,-5.811242308151555e-23,6.738040247000754e-05,-3.7433555917232297e-06,-7.4867111834464595e-06,-2.667696602984413e-23,4.159283832905203e-07,-5.293955920339377e-23,0.00010160536476178095,6.776263578034403e-21,-3.586071761674248e-05,-5.811242308151555e-23,-5.293955920339377e-23,1.9922620140278013e-06,37.0,20.0,0.03003106452524662,-0.0017773122526705265,-0.0031506898812949657,2.7355290512787178e-05,6.096321885706857e-05,8.775008609518409e-05,-0.0017773122526705265,0.00021285020920913666,6.096321885706857e-05,-4.689478373620659e-06,-3.386845492059365e-06,2.541098841762901e-21,-0.0031506898812949657,6.096321885706857e-05,0.0007119019865058362,3.1454071897115227e-21,-6.417180884454865e-06,-2.9250029911054298e-05,2.7355290512787178e-05,-4.689478373620659e-06,3.1454071897115227e-21,1.3026328815612942e-07,-1.4467447099932823e-23,-1.4450837475801214e-22,6.096321885706857e-05,-3.386845492059365e-06,-6.417180884454865e-06,-1.4467447099932823e-23,3.5651004282044596e-07,4.499862532288471e-22,8.775008609518409e-05,2.541098841762901e-21,-2.9250029911054298e-05,-1.4450837475801214e-22,4.499862532288471e-22,1.5394751926578465e-06,37.0,21.0,0.028734268620610237,-0.0016953174490481615,-0.002874668687582016,2.6052657631225884e-05,5.5421107390429825e-05,7.630442269146442e-05,-0.0016953174490481615,0.00020286110520828515,5.5421107390429825e-05,-4.466169684747001e-06,-3.078950385315693e-06,2.286988957586611e-20,-0.002874668687582016,5.5421107390429825e-05,0.0006167807150632143,1.3449175623732993e-20,-5.542111011891393e-06,-2.4096134438877925e-05,2.6052657631225884e-05,-4.466169684747001e-06,1.3449175623732993e-20,1.2406027849465318e-07,-1.853433493091071e-22,-4.352426069933346e-22,5.5421107390429825e-05,-3.078950385315693e-06,-5.542111011891393e-06,-1.853433493091071e-22,3.0789504990025307e-07,-4.764560328305439e-22,7.630442269146442e-05,2.286988957586611e-20,-2.4096134438877925e-05,-4.352426069933346e-22,-4.764560328305439e-22,1.2048067219438963e-06,37.0,22.0,0.027544831857085228,-0.0016205577412620187,-0.002633406314998865,2.4868446416803636e-05,5.060188050265424e-05,6.676636985503137e-05,-0.0016205577412620187,0.00019376793352421373,5.060188050265424e-05,-4.263162281858968e-06,-2.811215608744533e-06,-0.0,-0.002633406314998865,5.060188050265424e-05,0.0005378960049711168,4.235164736271502e-22,-4.819226887775585e-06,-2.002991095650941e-05,2.4868446416803636e-05,-4.263162281858968e-06,4.235164736271502e-22,1.1842116975913086e-07,-1.3234889800848443e-23,-0.0,5.060188050265424e-05,-2.811215608744533e-06,-4.819226887775585e-06,-1.3234889800848443e-23,2.6773483341457904e-07,-0.0,6.676636985503137e-05,-0.0,-2.002991095650941e-05,-0.0,-0.0,9.538052836433053e-07,37.0,23.0,0.02644994854927063,-0.0015521154273301363,-0.0024212999269366264,2.3787210011505522e-05,4.638505924958736e-05,5.8754405472427607e-05,-0.0015521154273301363,0.00018545528291724622,4.638505924958736e-05,-4.077807261637645e-06,-2.5769477360881865e-06,-0.0,-0.0024212999269366264,4.638505924958736e-05,0.0004719227727036923,-2.117582368135751e-22,-4.216823526803637e-06,-1.6786972992122173e-05,2.3787210011505522e-05,-4.077807261637645e-06,-2.117582368135751e-22,1.1327242788183867e-07,1.9852334701272664e-23,-0.0,4.638505924958736e-05,-2.5769477360881865e-06,-4.216823526803637e-06,1.9852334701272664e-23,2.342679721323293e-07,-0.0,5.8754405472427607e-05,-0.0,-1.6786972992122173e-05,-0.0,-0.0,7.630442269146442e-07,37.0,24.0,0.02543877810239792,-0.0014892220497131348,-0.002233833074569702,2.279607542732265e-05,4.2674251744756475e-05,5.197505379328504e-05,-0.0014892220497131348,0.00017782676150090992,4.2674251744756475e-05,-3.907898644683883e-06,-2.3707918899162905e-06,-0.0,-0.002233833074569702,4.2674251744756475e-05,0.0004163215635344386,0.0,-3.710804548973101e-06,-1.4175014257489238e-05,2.279607542732265e-05,-3.907898644683883e-06,0.0,1.0855274013010785e-07,-6.617444900424222e-24,-0.0,4.2674251744756475e-05,-2.3707918899162905e-06,-3.710804548973101e-06,-6.617444900424222e-24,2.0615581775018654e-07,-0.0,5.197505379328504e-05,-0.0,-1.4175014257489238e-05,-0.0,-0.0,6.163049874885473e-07,37.0,25.0,0.024502072483301163,-0.0014312288258224726,-0.002067330526188016,2.1884232410229743e-05,3.939161979360506e-05,4.62000461993739e-05,-0.0014312288258224726,0.00017080122779589146,3.939161979360506e-05,-3.751582653421792e-06,-2.188423195548239e-06,-0.0,-0.002067330526188016,3.939161979360506e-05,0.0003691299061756581,-3.1763735522036263e-22,-3.2826349070091965e-06,-1.2052186320943292e-05,2.1884232410229743e-05,-3.751582653421792e-06,-3.1763735522036263e-22,1.0421062768273259e-07,1.3234889800848443e-23,-0.0,3.939161979360506e-05,-2.188423195548239e-06,-3.2826349070091965e-06,1.3234889800848443e-23,1.8236860910292307e-07,-0.0,4.62000461993739e-05,-0.0,-1.2052186320943292e-05,-0.0,-0.0,5.021744300393038e-07,37.0,26.0,0.023631898686289787,-0.0013775844126939774,-0.0019187782891094685,2.104253144352697e-05,3.647372068371624e-05,4.125004124944098e-05,-0.0013775844126939774,0.00016430988034699112,3.647372068371624e-05,-3.6072910916118417e-06,-2.026317815762013e-06,-0.0,-0.0019187782891094685,3.647372068371624e-05,0.0003288149309810251,0.0,-2.917897745646769e-06,-1.0312510312360246e-05,2.104253144352697e-05,-3.6072910916118417e-06,0.0,1.0020252716458344e-07,-6.617444900424222e-24,-0.0,3.647372068371624e-05,-2.026317815762013e-06,-2.917897745646769e-06,-6.617444900424222e-24,1.621054224187901e-07,-0.0,4.125004124944098e-05,-0.0,-1.0312510312360246e-05,-0.0,-0.0,4.1250041249440983e-07,37.0,27.0,0.02282140962779522,-0.0013278170954436064,-0.0017856850754469633,2.0263178157620132e-05,3.386845492059365e-05,3.6982793972129e-05,-0.0013278170954436064,0.00015829401672817767,3.386845492059365e-05,-3.473687684163451e-06,-1.8815808289218694e-06,-0.0,-0.0017856850754469633,3.386845492059365e-05,0.0002941674320027232,0.0,-2.6052657631225884e-06,-8.875870662450325e-06,2.0263178157620132e-05,-3.473687684163451e-06,0.0,9.649132692857165e-08,0.0,-0.0,3.386845492059365e-05,-1.8815808289218694e-06,-2.6052657631225884e-06,0.0,1.447369868401438e-07,-0.0,3.6982793972129e-05,-0.0,-8.875870662450325e-06,-0.0,-0.0,3.413796605400421e-07,37.0,28.0,0.02206466905772686,-0.0012815212830901146,-0.0016659776447340846,1.9539493223419413e-05,3.153269790345803e-05,3.3284515666309744e-05,-0.0012815212830901146,0.00015270322910510004,3.153269790345803e-05,-3.3496273772470886e-06,-1.7518166259833379e-06,-0.0,-0.0016659776447340846,3.153269790345803e-05,0.0002642248582560569,0.0,-2.335755425519892e-06,-7.68104200687958e-06,1.9539493223419413e-05,-3.3496273772470886e-06,0.0,9.304520887098988e-08,0.0,-0.0,3.153269790345803e-05,-1.7518166259833379e-06,-2.335755425519892e-06,0.0,1.297641887276768e-07,-0.0,3.3284515666309744e-05,-0.0,-7.68104200687958e-06,-0.0,-0.0,2.8448303623918036e-07,37.0,29.0,0.021356504410505295,-0.0012383457506075501,-0.001557918731123209,1.8865717720473185e-05,2.9430519134621136e-05,3.0063434678595513e-05,-0.0012383457506075501,0.00014749397814739496,2.9430519134621136e-05,-3.2341229143639794e-06,-1.635028866076027e-06,-0.0,-0.001557918731123209,2.9430519134621136e-05,0.0002382144157309085,1.0587911840678754e-22,-2.1021799057052704e-06,-6.68076290821773e-06,1.8865717720473185e-05,-3.2341229143639794e-06,1.0587911840678754e-22,8.983675314766515e-08,-6.617444900424222e-24,-0.0,2.9430519134621136e-05,-1.635028866076027e-06,-2.1021799057052704e-06,-6.617444900424222e-24,1.1678777411816554e-07,-0.0,3.0063434678595513e-05,-0.0,-6.68076290821773e-06,-0.0,-0.0,2.3859868747422297e-07,37.0,30.0,0.020692380145192146,-0.0011979852570220828,-0.0014600445283576846,1.823686034185812e-05,2.753177614067681e-05,2.7244986995356157e-05,-0.0011979852570220828,0.0001426285016350448,2.753177614067681e-05,-3.126318915747106e-06,-1.529543169453973e-06,-7.411538288475128e-22,-0.0014600445283576846,2.753177614067681e-05,0.00021551088138949126,-0.0,-1.898743221318e-06,-5.838211563968798e-06,1.823686034185812e-05,-3.126318915747106e-06,-0.0,8.684219210408628e-08,3.308722450212111e-24,0.0,2.753177614067681e-05,-1.529543169453973e-06,-1.898743221318e-06,3.308722450212111e-24,1.0548573214919088e-07,4.632211430296955e-23,2.7244986995356157e-05,-7.411538288475128e-22,-5.838211563968798e-06,0.0,4.632211430296955e-23,2.0131763278641301e-07,37.0,31.0,0.02006831392645836,-0.001160173211246729,-0.0013711136998608708,1.764857370289974e-05,2.5811039449763484e-05,2.476816916896496e-05,-0.001160173211246729,0.00013807383948005736,2.5811039449763484e-05,-3.0254698231146904e-06,-1.4339466360979713e-06,9.529120656610879e-22,-0.0013711136998608708,2.5811039449763484e-05,0.00019560470536816865,-8.483001860342219e-23,-1.7207360087923007e-06,-5.124448762217071e-06,1.764857370289974e-05,-3.0254698231146904e-06,-8.483001860342219e-23,8.404082763036058e-08,7.462502876026594e-25,5.531097842526672e-24,2.5811039449763484e-05,-1.4339466360979713e-06,-1.7207360087923007e-06,7.462502876026594e-25,9.559644809087331e-08,-7.279189390466644e-23,2.476816916896496e-05,9.529120656610879e-22,-5.124448762217071e-06,5.531097842526672e-24,-7.279189390466644e-23,1.7081497105664312e-07,37.0,32.0,0.019480789080262184,-0.0011246755020692945,-0.0012900689616799355,1.7097056115744635e-05,2.4246734028565697e-05,2.2582742531085387e-05,-0.0011246755020692945,0.0001338011206826195,2.4246734028565697e-05,-2.930923983512912e-06,-1.347040779364761e-06,-5.293955920339377e-22,-0.0012900689616799355,2.4246734028565697e-05,0.00017807776748668402,-1.5445784190434508e-22,-1.564305421197787e-06,-4.516548415267607e-06,1.7097056115744635e-05,-2.930923983512912e-06,-1.5445784190434508e-22,8.141455509758089e-08,4.665541119086905e-24,2.2631202552844525e-24,2.4246734028565697e-05,-1.347040779364761e-06,-1.564305421197787e-06,4.665541119086905e-24,8.690585673321038e-08,2.6469779601696886e-23,2.2582742531085387e-05,-5.293955920339377e-22,-4.516548415267607e-06,2.2631202552844525e-24,2.6469779601696886e-23,1.4569511108675215e-07,37.0,33.0,0.01892668381333351,-0.001091285957954824,-0.0012160043697804213,1.657896427786909e-05,2.2820457161287777e-05,2.0647079509217292e-05,-0.001091285957954824,0.000129784966702573,2.2820457161287777e-05,-2.8421081879059784e-06,-1.2678030998358736e-06,1.5881867761018131e-21,-0.0012160043697804213,2.2820457161287777e-05,0.00016258479445241392,-0.0,-1.426278572580486e-06,-3.99620876123663e-06,1.657896427786909e-05,-2.8421081879059784e-06,-0.0,7.894744413761146e-08,-3.308722450212111e-24,1.6543612251060553e-24,2.2820457161287777e-05,-1.2678030998358736e-06,-1.426278572580486e-06,-3.308722450212111e-24,7.92376937397421e-08,-9.926167350636332e-23,2.0647079509217292e-05,1.5881867761018131e-21,-3.99620876123663e-06,1.6543612251060553e-24,-9.926167350636332e-23,1.248815237886447e-07,37.0,34.0,0.018403230234980583,-0.0010598221560940146,-0.0011481406399980187,1.6091347788460553e-05,2.1516430933843367e-05,1.8926490156445652e-05,-0.0010598221560940146,0.00012600290938280523,2.1516430933843367e-05,-2.758516757239704e-06,-1.1953571856793133e-06,-1.2705494208814505e-21,-0.0011481406399980187,2.1516430933843367e-05,0.000148838953464292,-1.2909721335716342e-22,-1.3040261137575726e-06,-3.5487166769598844e-06,1.6091347788460553e-05,-2.758516757239704e-06,-1.2909721335716342e-22,7.662546153142102e-08,1.1310623564110318e-24,3.0780210645563573e-24,2.1516430933843367e-05,-1.1953571856793133e-06,-1.3040261137575726e-06,1.1310623564110318e-24,7.244589284027825e-08,7.279189390466644e-23,1.8926490156445652e-05,-1.2705494208814505e-21,-3.5487166769598844e-06,3.0780210645563573e-24,7.279189390466644e-23,1.0753687007536428e-07,37.0,35.0,0.017907949164509773,-0.0010301220463588834,-0.001085804309695959,1.563159457873553e-05,2.032107295235619e-05,1.7391908841091208e-05,-0.0010301220463588834,0.00012243508535902947,2.032107295235619e-05,-2.679701992747141e-06,-1.1289484973531216e-06,5.293955920339377e-23,-0.001085804309695959,2.032107295235619e-05,0.00013660064723808318,5.924108739938232e-23,-1.1953571856793133e-06,-3.1621652851754334e-06,1.563159457873553e-05,-2.679701992747141e-06,5.924108739938232e-23,7.443616567570643e-08,2.7903189564720493e-24,-3.025731813884235e-24,2.032107295235619e-05,-1.1289484973531216e-06,-1.1953571856793133e-06,2.7903189564720493e-24,6.640873806418313e-08,0.0,1.7391908841091208e-05,5.293955920339377e-23,-3.1621652851754334e-06,-3.025731813884235e-24,0.0,9.300486425445342e-08,37.0,36.0,0.017438627779483795,-0.0010020415065810084,-0.001028411090373993,1.5197383618215099e-05,1.9222636183258146e-05,1.6018864698708057e-05,-0.0010020415065810084,0.0001190637776744552,1.9222636183258146e-05,-2.6052657631225884e-06,-1.0679242450351012e-06,-6.88214269644119e-22,-0.001028411090373993,1.9222636183258146e-05,0.00012566866644192487,-1.0900019293575292e-22,-1.0984364280375303e-06,-2.826858235494001e-06,1.5197383618215099e-05,-2.6052657631225884e-06,-1.0900019293575292e-22,7.23684934200719e-08,4.261464080896904e-24,7.9754749638265955e-25,1.9222636183258146e-05,-1.0679242450351012e-06,-1.0984364280375303e-06,4.261464080896904e-24,6.102424521259309e-08,3.639594695233322e-23,1.6018864698708057e-05,-6.88214269644119e-22,-2.826858235494001e-06,7.9754749638265955e-25,3.639594695233322e-23,8.076737856299587e-08,37.0,37.0,0.01699327677488327,-0.0009754515485838056,-0.0009754515485838056,1.478664307796862e-05,1.821091973397415e-05,1.478664307796862e-05,-0.0009754515485838056,0.00011587317567318678,1.821091973397415e-05,-2.534853138058679e-06,-1.0117176998392097e-06,5.293955920339377e-23,-0.0009754515485838056,1.821091973397415e-05,0.00011587317567318678,-0.0,-1.0117176998392097e-06,-2.534853138058679e-06,1.478664307796862e-05,-2.534853138058679e-06,-0.0,7.041258953677243e-08,0.0,-1.6543612251060553e-24,1.821091973397415e-05,-1.0117176998392097e-06,-1.0117176998392097e-06,0.0,5.6206538090464164e-08,-3.308722450212111e-24,1.478664307796862e-05,5.293955920339377e-23,-2.534853138058679e-06,-1.6543612251060553e-24,-3.308722450212111e-24,7.041258953677243e-08,37.0,38.0,0.016570108011364937,-0.0009502363973297179,-0.0009264805121347308,1.4397521226783283e-05,1.727702510834206e-05,1.3677645256393589e-05,-0.0009502363973297179,0.00011284914216957986,1.727702510834206e-05,-2.468146476530819e-06,-9.59834778768709e-07,3.1763735522036263e-22,-0.0009264805121347308,1.727702510834206e-05,0.00010707021283451468,-9.286860589093292e-23,-9.338932613900397e-07,-2.279607542732265e-06,1.4397521226783283e-05,-2.468146476530819e-06,-9.286860589093292e-23,6.855962197960253e-08,4.118745732507034e-24,3.228831350896758e-25,1.727702510834206e-05,-9.59834778768709e-07,-9.338932613900397e-07,4.118745732507034e-24,5.188296015035121e-08,-1.6543612251060553e-23,1.3677645256393589e-05,3.1763735522036263e-22,-2.279607542732265e-06,3.228831350896758e-25,-1.6543612251060553e-23,6.161101140378378e-08,37.0,39.0,0.016167500987648964,-0.0009262922103516757,-0.0008811072329990566,1.4028353689354844e-05,1.6413174307672307e-05,1.2676841834036168e-05,-0.0009262922103516757,0.00010997895878972486,1.6413174307672307e-05,-2.4048606519500026e-06,-9.118430170929059e-07,1.5881867761018131e-22,-0.0008811072329990566,1.6413174307672307e-05,9.913713438436389e-05,-8.598775717881178e-23,-8.63851255417103e-07,-2.0557040443236474e-06,1.4028353689354844e-05,-2.4048606519500026e-06,-8.598775717881178e-23,6.680168951334053e-08,4.0579939764741534e-24,1.286778568721002e-25,1.6413174307672307e-05,-9.118430170929059e-07,-8.63851255417103e-07,4.0579939764741534e-24,4.799173680680724e-08,-9.926167350636332e-24,1.2676841834036168e-05,1.5881867761018131e-22,-2.0557040443236474e-06,1.286778568721002e-25,-9.926167350636332e-24,5.4097476720471604e-08,37.0,40.0,0.015783993527293205,-0.0009035252151079476,-0.0008389877039007843,1.3677645256393589e-05,1.561253156978637e-05,1.177135345642455e-05,-0.0009035252151079476,0.00010725116590037942,1.561253156978637e-05,-2.3447391868103296e-06,-8.673628713040671e-07,1.0587911840678754e-22,-0.0008389877039007843,1.561253156978637e-05,9.196905739372596e-05,-0.0,-8.006426241990994e-07,-1.8586347323434893e-06,1.3677645256393589e-05,-2.3447391868103296e-06,-0.0,6.513164407806471e-08,-3.308722450212111e-24,1.6543612251060553e-24,1.561253156978637e-05,-8.673628713040671e-07,-8.006426241990994e-07,-3.308722450212111e-24,4.4480145788838854e-08,-4.963083675318166e-24,1.177135345642455e-05,1.0587911840678754e-22,-1.8586347323434893e-06,1.6543612251060553e-24,-4.963083675318166e-24,4.7657302104653354e-08,37.0,41.0,0.015418258495628834,-0.0008818506612442434,-0.0007998180808499455,1.3344044418772683e-05,1.4869077858747914e-05,1.0950096111628227e-05,-0.0008818506612442434,0.00010465543164173141,1.4869077858747914e-05,-2.2875503873365233e-06,-8.260598747256154e-07,6.03510974918689e-21,-0.0007998180808499455,1.4869077858747914e-05,8.547592005925253e-05,6.406397521949559e-21,-7.43453881568712e-07,-1.6846302060002927e-06,1.3344044418772683e-05,-2.2875503873365233e-06,6.406397521949559e-21,6.354306947287114e-08,-7.888273313008856e-23,-1.2460822877499584e-22,1.4869077858747914e-05,-8.260598747256154e-07,-7.43453881568712e-07,-7.888273313008856e-23,4.130299302573803e-08,-7.610061635487855e-23,1.0950096111628227e-05,6.03510974918689e-21,-1.6846302060002927e-06,-1.2460822877499584e-22,-7.610061635487855e-23,4.211575443946458e-08,37.0,42.0,0.015069088898599148,-0.0008611918310634792,-0.0007633290952071548,1.3026328815612942e-05,1.417749263055157e-05,1.0203498277405743e-05,-0.0008611918310634792,0.00010218239185633138,1.417749263055157e-05,-2.2330848423735006e-06,-7.876384984228935e-07,5.823351512373315e-22,-0.0007633290952071548,1.417749263055157e-05,7.958008791320026e-05,6.902472336166332e-23,-6.915850008226698e-07,-1.5305247416108614e-06,1.3026328815612942e-05,-2.2330848423735006e-06,6.902472336166332e-23,6.203013924732659e-08,-5.562938240813655e-24,3.268425758843998e-25,1.417749263055157e-05,-7.876384984228935e-07,-6.915850008226698e-07,-5.562938240813655e-24,3.8421390513576625e-08,-2.812414082680294e-23,1.0203498277405743e-05,5.823351512373315e-22,-1.5305247416108614e-06,3.268425758843998e-25,-2.812414082680294e-23,3.7329872526470353e-08,37.0,43.0,0.014735382981598377,-0.0008414788171648979,-0.0007292816299013793,1.2723390682367608e-05,1.3533061064663343e-05,9.523265362076927e-06,-0.0008414788171648979,9.982354094972834e-05,1.3533061064663343e-05,-2.1811526949022664e-06,-7.518367510783719e-07,-2.117582368135751e-22,-0.0007292816299013793,1.3533061064663343e-05,7.421440386679024e-05,-0.0,-6.444315090448072e-07,-1.3936486311649787e-06,1.2723390682367608e-05,-2.1811526949022664e-06,-0.0,6.058757406890436e-08,-1.6543612251060553e-24,8.271806125530277e-25,1.3533061064663343e-05,-7.518367510783719e-07,-6.444315090448072e-07,-1.6543612251060553e-24,3.580175089723525e-08,9.926167350636332e-24,9.523265362076927e-06,-2.117582368135751e-22,-1.3936486311649787e-06,8.271806125530277e-25,9.926167350636332e-24,3.31821077281802e-08,37.0,44.0,0.014416136778891087,-0.0008226481731981039,-0.0006974625866860151,1.2434223208401818e-05,1.2931592209497467e-05,8.902183253667317e-06,-0.0008226481731981039,9.757115185493603e-05,1.2931592209497467e-05,-2.131581140929484e-06,-7.184217452049779e-07,-3.705769144237564e-22,-0.0006974625866860151,1.2931592209497467e-05,6.932059477549046e-05,6.012603156285925e-23,-6.014693667566462e-07,-1.2717404160866863e-06,1.2434223208401818e-05,-2.131581140929484e-06,6.012603156285925e-23,5.921058487956543e-08,-3.830413916205133e-24,-2.7587836501401604e-25,1.2931592209497467e-05,-7.184217452049779e-07,-6.014693667566462e-07,-3.830413916205133e-24,3.34149667935435e-08,1.819797347616661e-23,8.902183253667317e-06,-3.705769144237564e-22,-1.2717404160866863e-06,-2.7587836501401604e-25,1.819797347616661e-23,2.9575359050681982e-08,37.0,45.0,0.01411043107509613,-0.0008046419825404882,-0.0006676816265098751,1.215790689457208e-05,1.2369348951324355e-05,8.333958248840645e-06,-0.0008046419825404882,9.541817416902632e-05,1.2369348951324355e-05,-2.0842126104980707e-06,-6.871860591672885e-07,7.940933880509066e-23,-0.0006676816265098751,1.2369348951324355e-05,6.484787445515394e-05,5.624656509227612e-23,-5.622431444862741e-07,-1.162877879323787e-06,1.215790689457208e-05,-2.0842126104980707e-06,5.624656509227612e-23,5.789479473605752e-08,-2.142029317472122e-24,-1.8145519057742456e-25,1.2369348951324355e-05,-6.871860591672885e-07,-5.622431444862741e-07,-2.142029317472122e-24,3.123572867025359e-08,-3.308722450212111e-24,8.333958248840645e-06,7.940933880509066e-23,-1.162877879323787e-06,-1.8145519057742456e-25,-3.308722450212111e-24,2.642904384231315e-08,37.0,46.0,0.013817420229315758,-0.0007874072180129588,-0.0006397683755494654,1.1893605005752761e-05,1.1842993444588501e-05,7.81308608566178e-06,-0.0007874072180129588,9.335816866951063e-05,1.1842993444588501e-05,-2.0389036308188224e-06,-6.57944099202723e-07,-5.293955920339377e-22,-0.0006397683755494654,1.1842993444588501e-05,6.075191413401626e-05,-5.26938858294026e-23,-5.263552793621784e-07,-1.0654208608684712e-06,1.1893605005752761e-05,-2.0389036308188224e-06,-5.26938858294026e-23,5.663621394091933e-08,2.110901655013006e-24,9.241052895719783e-25,1.1842993444588501e-05,-6.57944099202723e-07,-5.263552793621784e-07,2.110901655013006e-24,2.9241959964565467e-08,2.3161057151484775e-23,7.81308608566178e-06,-5.293955920339377e-22,-1.0654208608684712e-06,9.241052895719783e-25,2.3161057151484775e-23,2.367601759090121e-08,37.0,47.0,0.013536331243813038,-0.0007708953926339746,-0.0006135698058642447,1.1640549018920865e-05,1.1349535270710476e-05,7.334733709285501e-06,-0.0007708953926339746,9.13852418307215e-05,1.1349535270710476e-05,-1.9955227799073327e-06,-6.305297688413702e-07,1.5881867761018131e-22,-0.0006135698058642447,1.1349535270710476e-05,5.699384564650245e-05,-9.886856202918634e-23,-4.934580601911875e-07,-9.779645324670128e-07,1.1640549018920865e-05,-1.9955227799073327e-06,-9.886856202918634e-23,5.5431186751775385e-08,4.164735928850966e-24,8.693173219825686e-25,1.1349535270710476e-05,-6.305297688413702e-07,-4.934580601911875e-07,4.164735928850966e-24,2.7414337466780125e-08,-7.444625512977249e-24,7.334733709285501e-06,1.5881867761018131e-22,-9.779645324670128e-07,8.693173219825686e-25,-7.444625512977249e-24,2.1260097682329615e-08,37.0,48.0,0.013266450725495815,-0.000755061861127615,-0.0005889482563361526,1.1398037713661324e-05,1.0886288691835944e-05,6.894649686728371e-06,-0.000755061861127615,8.949398034019396e-05,1.0886288691835944e-05,-1.9539493223419413e-06,-6.047938541087206e-07,-2.6469779601696886e-23,-0.0005889482563361526,1.0886288691835944e-05,5.3539526561507955e-05,-0.0,-4.632463515008567e-07,-8.993021651804156e-07,1.1398037713661324e-05,-1.9539493223419413e-06,-0.0,5.4276370065053925e-08,0.0,0.0,1.0886288691835944e-05,-6.047938541087206e-07,-4.632463515008567e-07,0.0,2.5735907627222332e-08,1.6543612251060553e-24,6.894649686728371e-06,-2.6469779601696886e-23,-8.993021651804156e-07,0.0,1.6543612251060553e-24,1.9134088091732337e-08,37.0,49.0,0.013007121160626411,-0.0007398657035082579,-0.0005657796282321215,1.1165424439241178e-05,1.0450837180542294e-05,6.489081897598226e-06,-0.0007398657035082579,8.767942199483514e-05,1.0450837180542294e-05,-1.9140727545163827e-06,-5.806020908494247e-07,1.9058241313221758e-21,-0.0005657796282321215,1.0450837180542294e-05,5.0358874432276934e-05,3.341432233170076e-21,-4.3545156813706853e-07,-8.283934676001081e-07,1.1165424439241178e-05,-1.9140727545163827e-06,3.341432233170076e-21,5.316869078342279e-08,-2.698420210887875e-23,-5.087584543279405e-23,1.0450837180542294e-05,-5.806020908494247e-07,-4.3545156813706853e-07,-2.698420210887875e-23,2.4191754377511643e-08,-3.308722450212111e-24,6.489081897598226e-06,1.9058241313221758e-21,-8.283934676001081e-07,-5.087584543279405e-23,-3.308722450212111e-24,1.7258196649549973e-08,37.0,50.0,0.012757735326886177,-0.0007252692012116313,-0.0005439519300125539,1.0942116205114871e-05,1.0041000678029377e-05,6.114712050475646e-06,-0.0007252692012116313,8.593699021730572e-05,1.0041000678029377e-05,-1.875791326710896e-06,-5.578334025813092e-07,5.293955920339377e-23,-0.0005439519300125539,1.0041000678029377e-05,4.742530654766597e-05,-0.0,-4.098367583083018e-07,-7.643390063094557e-07,1.0942116205114871e-05,-1.875791326710896e-06,-0.0,5.2105313841366296e-08,0.0,0.0,1.0041000678029377e-05,-5.578334025813092e-07,-4.098367583083018e-07,0.0,2.2768709584397584e-08,-3.308722450212111e-24,6.114712050475646e-06,5.293955920339377e-23,-7.643390063094557e-07,0.0,-3.308722450212111e-24,1.559875428824853e-08,37.0,51.0,0.012517732568085194,-0.000711237546056509,-0.0005233634728938341,1.0727564585977234e-05,9.654808309278451e-06,5.768596111010993e-06,-0.000711237546056509,8.426246495218948e-05,9.654808309278451e-06,-1.8390111335975234e-06,-5.363782520362292e-07,-9.529120656610879e-22,-0.0005233634728938341,9.654808309278451e-06,4.471528154681437e-05,-0.0,-3.861923403292167e-07,-7.063587190714316e-07,1.0727564585977234e-05,-1.8390111335975234e-06,-0.0,5.108364220518524e-08,0.0,0.0,9.654808309278451e-06,-5.363782520362292e-07,-3.861923403292167e-07,0.0,2.1455129228797887e-08,3.8050308177439273e-23,5.768596111010993e-06,-9.529120656610879e-22,-7.063587190714316e-07,0.0,3.8050308177439273e-23,1.4127174097211537e-08,37.0,52.0,0.012286593206226826,-0.0006977385492064059,-0.0005039222887717187,1.0521265721763484e-05,9.290475645684637e-06,5.448118827189319e-06,-0.0006977385492064059,8.265196083812043e-05,9.290475645684637e-06,-1.8036455458059208e-06,-5.161375611351104e-07,-2.6469779601696886e-23,-0.0005039222887717187,9.290475645684637e-06,4.2207906517433e-05,-0.0,-3.6433237937671947e-07,-6.537742365253507e-07,1.0521265721763484e-05,-1.8036455458059208e-06,-0.0,5.010126358229172e-08,0.0,0.0,9.290475645684637e-06,-5.161375611351104e-07,-3.6433237937671947e-07,0.0,2.0240689124761957e-08,1.6543612251060553e-24,5.448118827189319e-06,-2.6469779601696886e-23,-6.537742365253507e-07,0.0,1.6543612251060553e-24,1.281910311234924e-08,37.0,53.0,0.012063833884894848,-0.0006847424665465951,-0.00048554467502981424,1.0322751222702209e-05,8.946384696173482e-06,5.150948709342629e-06,-0.0006847424665465951,8.110186900012195e-05,8.946384696173482e-06,-1.7696145278023323e-06,-4.970213467458962e-07,-5.293955920339377e-23,-0.00048554467502981424,8.946384696173482e-06,3.988458411186002e-05,-0.0,-3.440917168973101e-07,-6.059939323677099e-07,1.0322751222702209e-05,-1.7696145278023323e-06,-0.0,4.9155957526636485e-08,0.0,0.0,8.946384696173482e-06,-4.970213467458962e-07,-3.440917168973101e-07,0.0,1.9116205507430095e-08,8.271806125530277e-25,5.150948709342629e-06,-5.293955920339377e-23,-6.059939323677099e-07,0.0,8.271806125530277e-25,1.1653729536931223e-08,37.0,54.0,0.011849009431898594,-0.0006722217076458037,-0.00046815440873615444,1.0131589078810066e-05,8.62106116983341e-06,4.875004833593266e-06,-0.0006722217076458037,7.960884977364913e-05,8.62106116983341e-06,-1.7368438420817256e-06,-4.789478680322645e-07,5.293955920339377e-23,-0.00046815440873615444,8.62106116983341e-06,3.772872514673509e-05,-0.0,-3.253230715927202e-07,-5.625005883302947e-07,1.0131589078810066e-05,-1.7368438420817256e-06,-0.0,4.8245663464285826e-08,0.0,0.0,8.62106116983341e-06,-4.789478680322645e-07,-3.253230715927202e-07,0.0,1.807350358262738e-08,-1.6543612251060553e-24,4.875004833593266e-06,5.293955920339377e-23,-5.625005883302947e-07,0.0,-1.6543612251060553e-24,1.061321786011149e-08,37.0,55.0,0.011641700752079487,-0.0006601506611332297,-0.0004516820190474391,9.947378202923574e-06,8.313166290463414e-06,4.618425464286702e-06,-0.0006601506611332297,7.816981815267354e-05,8.313166290463414e-06,-1.7052648217941169e-06,-4.618425748503796e-07,1.852884572118782e-22,-0.0004516820190474391,8.313166290463414e-06,3.5725508496398106e-05,-0.0,-3.0789504990025307e-07,-5.228406507740146e-07,9.947378202923574e-06,-1.7052648217941169e-06,-0.0,4.736847003528055e-08,0.0,0.0,8.313166290463414e-06,-4.618425748503796e-07,-3.0789504990025307e-07,0.0,1.710528074738704e-08,-6.617444900424222e-24,4.618425464286702e-06,1.852884572118782e-22,-5.228406507740146e-07,0.0,-6.617444900424222e-24,9.682233681473917e-09,37.0,56.0,0.011441522277891636,-0.0006485055200755596,-0.0004360640305094421,9.769746611709706e-06,8.021475878194906e-06,4.379541678645182e-06,-0.0006485055200755596,7.678188558202237e-05,8.021475878194906e-06,-1.6748136886235443e-06,-4.4563756773641217e-07,-1.852884572118782e-22,-0.0004360640305094421,8.021475878194906e-06,3.3861655538203195e-05,-0.0,-2.9169004278628563e-07,-4.866157041760744e-07,9.769746611709706e-06,-1.6748136886235443e-06,-0.0,4.652260443549494e-08,0.0,0.0,8.021475878194906e-06,-4.4563756773641217e-07,-2.9169004278628563e-07,0.0,1.6205001784896922e-08,6.617444900424222e-24,4.379541678645182e-06,-1.852884572118782e-22,-4.866157041760744e-07,0.0,6.617444900424222e-24,8.847559129776528e-09,37.0,57.0,0.011248110793530941,-0.0006372641073539853,-0.0004212423518765718,9.59834778768709e-06,7.74487398302881e-06,4.156852810410783e-06,-0.0006372641073539853,7.54423817852512e-05,7.74487398302881e-06,-1.6454309843538795e-06,-4.3027074525525677e-07,1.9852334701272664e-22,-0.0004212423518765718,7.74487398302881e-06,3.2125255529535934e-05,-0.0,-2.7660263413054054e-07,-4.534748825335555e-07,9.59834778768709e-06,-1.6454309843538795e-06,-0.0,4.570641820578203e-08,0.0,0.0,7.74487398302881e-06,-4.3027074525525677e-07,-2.7660263413054054e-07,0.0,1.536681182301436e-08,-7.444625512977249e-24,4.156852810410783e-06,1.9852334701272664e-22,-4.534748825335555e-07,0.0,-7.444625512977249e-24,8.09776601329304e-09,37.0,58.0,0.011061130091547966,-0.0006264057592488825,-0.0004071637522429228,9.432858860236593e-06,7.48233560443623e-06,3.949010533688124e-06,-0.0006264057592488825,7.414881838485599e-05,7.48233560443623e-06,-1.6170614571819897e-06,-4.1568529240976204e-07,-2.2499312661442353e-22,-0.0004071637522429228,7.48233560443623e-06,3.0505596441798843e-05,-0.0,-2.6253809437548625e-07,-4.231082471051195e-07,9.432858860236593e-06,-1.6170614571819897e-06,-0.0,4.4918376573832575e-08,0.0,0.0,7.48233560443623e-06,-4.1568529240976204e-07,-2.6253809437548625e-07,0.0,1.458544929278105e-08,7.444625512977249e-24,3.949010533688124e-06,-2.2499312661442353e-22,-4.231082471051195e-07,0.0,7.444625512977249e-24,7.422952030822216e-09,37.0,59.0,0.010880263522267342,-0.0006159113254398108,-0.00039377936627715826,9.272979696106631e-06,7.232924417621689e-06,3.7547968076978577e-06,-0.0006159113254398108,7.289886707440019e-05,7.232924417621689e-06,-1.5896537206572248e-06,-4.0182911220654205e-07,-1.1911400820763599e-22,-0.00039377936627715826,7.232924417621689e-06,2.899302853620611e-05,-0.0,-2.49411186814541e-07,-3.9524175576843845e-07,9.272979696106631e-06,-1.5896537206572248e-06,-0.0,4.415704779603402e-08,0.0,0.0,7.232924417621689e-06,-4.0182911220654205e-07,-2.49411186814541e-07,0.0,1.3856176650506313e-08,4.549493369041652e-24,3.7547968076978577e-06,-1.1911400820763599e-22,-3.9524175576843845e-07,0.0,4.549493369041652e-24,6.814512953923213e-09,37.0,60.0,0.010705217719078064,-0.0006057627033442259,-0.00038104428676888347,9.11843017092906e-06,6.9957791311026085e-06,3.5731129628402414e-06,-0.0006057627033442259,7.169036689447239e-05,6.9957791311026085e-06,-1.563159457873553e-06,-3.8865439933033485e-07,-2.117582368135751e-22,-0.00038104428676888347,6.9957791311026085e-06,2.7578840672504157e-05,-0.0,-2.3714505914540496e-07,-3.696323744861729e-07,9.11843017092906e-06,-1.563159457873553e-06,-0.0,4.342109605204314e-08,0.0,0.0,6.9957791311026085e-06,-3.8865439933033485e-07,-2.3714505914540496e-07,0.0,1.3174725310705071e-08,7.444625512977249e-24,3.5731129628402414e-06,-2.117582368135751e-22,-3.696323744861729e-07,0.0,7.444625512977249e-24,6.2649556653582295e-09,37.0,61.0,0.010535714216530323,-0.0005959431873634458,-0.0003689172153826803,8.968947440735064e-06,6.770108939235797e-06,3.402964694032562e-06,-0.0005959431873634458,7.052128057694063e-05,6.770108939235797e-06,-1.5375338762169122e-06,-3.761171569749422e-07,-2.6469779601696886e-23,-0.0003689172153826803,6.770108939235797e-06,2.625516390253324e-05,-0.0,-2.2567029134279437e-07,-3.460642119534896e-07,8.968947440735064e-06,-1.5375338762169122e-06,-0.0,4.270927433935867e-08,0.0,0.0,6.770108939235797e-06,-3.761171569749422e-07,-2.2567029134279437e-07,0.0,1.2537238802678985e-08,1.2407709188295415e-24,3.402964694032562e-06,-2.6469779601696886e-23,-3.460642119534896e-07,0.0,1.2407709188295415e-24,5.767736954709335e-09,37.0,62.0,0.01037149503827095,-0.0005864369450137019,-0.00035735999699682,8.82428685144987e-06,6.555184882017784e-06,3.243450919399038e-06,-0.0005864369450137019,6.93897163728252e-05,6.555184882017784e-06,-1.5127349115573452e-06,-3.641769410478446e-07,0.0,-0.00035735999699682,6.555184882017784e-06,2.5014869606820866e-05,-5.118394610338079e-22,-2.1492408563972276e-07,-3.2434508057122e-07,8.82428685144987e-06,-1.5127349115573452e-06,-5.118394610338079e-22,4.202041381518029e-08,2.843552631419902e-23,-1.4693679385278594e-39,6.555184882017784e-06,-3.641769410478446e-07,-2.1492408563972276e-07,2.843552631419902e-23,1.1940227473417053e-08,-4.1359030627651384e-25,3.243450919399038e-06,0.0,-3.2434508057122e-07,-1.4693679385278594e-39,-4.1359030627651384e-25,5.317132512061562e-09,37.0,63.0,0.010212316177785397,-0.0005772291915491223,-0.0003463375032879412,8.684219210408628e-06,6.350335297611309e-06,3.0937530937080737e-06,-0.0005772291915491223,6.829389167251065e-05,6.350335297611309e-06,-1.4887233419358381e-06,-3.527964054228505e-07,3.970466940254533e-23,-0.0003463375032879412,6.350335297611309e-06,2.3851493097026832e-05,-0.0,-2.0484952756305574e-07,-3.043035690097895e-07,8.684219210408628e-06,-1.4887233419358381e-06,-0.0,4.1353423796408606e-08,0.0,0.0,6.350335297611309e-06,-3.527964054228505e-07,-2.0484952756305574e-07,0.0,1.1380529407745144e-08,-1.2407709188295415e-24,3.0937530937080737e-06,3.970466940254533e-23,-3.043035690097895e-07,0.0,-1.2407709188295415e-24,4.908122352986766e-09,37.0,64.0,0.010057949461042881,-0.0005683061317540705,-0.00033581728348508477,8.548528057872318e-06,6.154940365377115e-06,2.9531279324146453e-06,-0.0005683061317540705,6.723214028170332e-05,6.154940365377115e-06,-1.465461991756456e-06,-3.4194113140983973e-07,3.970466940254533e-23,-0.00033581728348508477,6.154940365377115e-06,2.2759164494345896e-05,-0.0,-1.9539493223419413e-07,-2.857865695204964e-07,8.548528057872318e-06,-1.465461991756456e-06,-0.0,4.0707277548790444e-08,0.0,0.0,6.154940365377115e-06,-3.4194113140983973e-07,-1.9539493223419413e-07,0.0,1.0855274013010785e-08,-1.2407709188295415e-24,2.9531279324146453e-06,3.970466940254533e-23,-2.857865695204964e-07,0.0,-1.2407709188295415e-24,4.536294895274295e-09,38.0,3.0,0.12618084251880646,-0.009615384973585606,-0.07692307978868484,0.0001686909527052194,0.0020242915488779545,0.01315789483487606,-0.009615384973585606,0.0012226295657455921,0.0020242915488779545,-2.8115160603192635e-05,-0.00010942116205114871,-1.6263032587282567e-18,-0.07692307978868484,0.0020242915488779545,0.20850202441215515,-1.1412389899074206e-19,-0.0020242915488779545,-0.07894736528396606,0.0001686909527052194,-2.8115160603192635e-05,-1.1412389899074206e-19,7.59869180910755e-07,4.043941419723269e-21,1.8281404011347958e-20,0.0020242915488779545,-0.00010942116205114871,-0.0020242915488779545,4.043941419723269e-21,0.00010942116205114871,6.505213034913027e-19,0.01315789483487606,-1.6263032587282567e-18,-0.07894736528396606,1.8281404011347958e-20,6.505213034913027e-19,0.03947368264198303,38.0,4.0,0.10551619529724121,-0.007515182252973318,-0.05010121315717697,0.00012651822180487216,0.0012145749060437083,0.00657894741743803,-0.007515182252973318,0.0009333852794952691,0.0012145749060437083,-2.1086369088152424e-05,-6.565269723068923e-05,-2.710505431213761e-18,-0.05010121315717697,0.0012145749060437083,0.07945343852043152,-1.608984423146869e-19,-0.0008097165846265852,-0.019736841320991516,0.00012651822180487216,-2.1086369088152424e-05,-1.608984423146869e-19,5.699018856830662e-07,2.535900286262818e-21,3.5606881271442985e-20,0.0012145749060437083,-6.565269723068923e-05,-0.0008097165846265852,2.535900286262818e-21,4.3768464820459485e-05,7.860465750519907e-19,0.00657894741743803,-2.710505431213761e-18,-0.019736841320991516,3.5606881271442985e-20,7.860465750519907e-19,0.00657894741743803,38.0,5.0,0.09071717411279678,-0.006174088921397924,-0.035280510783195496,0.00010121457307832316,0.0008097165846265852,0.003759398590773344,-0.006174088921397924,0.0007554619223810732,0.0008097165846265852,-1.686909672571346e-05,-4.3768464820459485e-05,1.0570971181733668e-18,-0.035280510783195496,0.0008097165846265852,0.04019664600491524,9.08434628747597e-21,-0.0004048582923132926,-0.007518797181546688,0.00010121457307832316,-1.686909672571346e-05,9.08434628747597e-21,4.5592150854645297e-07,1.6259163902331747e-21,-9.909773180195157e-21,0.0008097165846265852,-4.3768464820459485e-05,-0.0004048582923132926,1.6259163902331747e-21,2.1884232410229743e-05,-3.5236570605778894e-19,0.003759398590773344,1.0570971181733668e-18,-0.007518797181546688,-9.909773180195157e-21,-3.5236570605778894e-19,0.001879699295386672,38.0,6.0,0.07957393676042557,-0.0052414690144360065,-0.026207344606518745,8.43454763526097e-05,0.0005783690139651299,0.0023496239446103573,-0.0052414690144360065,0.0006347621674649417,0.0005783690139651299,-1.4057580301596317e-05,-3.126318915747106e-05,-1.3010426069826053e-18,-0.026207344606518745,0.0005783690139651299,0.02340587042272091,-1.5231553873065426e-19,-0.00023134759976528585,-0.0035244361497461796,8.43454763526097e-05,-1.4057580301596317e-05,-1.5231553873065426e-19,3.799345904553775e-07,2.339994594303781e-21,2.00584900819059e-20,0.0005783690139651299,-3.126318915747106e-05,-0.00023134759976528585,2.339994594303781e-21,1.2505275662988424e-05,1.6940658945086007e-19,0.0023496239446103573,-1.3010426069826053e-18,-0.0035244361497461796,2.00584900819059e-20,1.6940658945086007e-19,0.0007048872066661716,38.0,7.0,0.07087430357933044,-0.004554655868560076,-0.02024291455745697,7.229612674564123e-05,0.0004337767604738474,0.0015664160018786788,-0.004554655868560076,0.0005474314675666392,0.0004337767604738474,-1.2049354154441971e-05,-2.3447391868103296e-05,8.809142651444724e-19,-0.02024291455745697,0.0004337767604738474,0.01489300187677145,9.232172510227145e-20,-0.00014459225349128246,-0.001879699295386672,7.229612674564123e-05,-1.2049354154441971e-05,9.232172510227145e-20,3.2565822039032355e-07,-1.7056736861172275e-21,-9.24116002145299e-21,0.0004337767604738474,-2.3447391868103296e-05,-0.00014459225349128246,-1.7056736861172275e-21,7.815797289367765e-06,-1.7110065534536867e-19,0.0015664160018786788,8.809142651444724e-19,-0.001879699295386672,-9.24116002145299e-21,-1.7110065534536867e-19,0.00031328320619650185,38.0,8.0,0.06389170140028,-0.004027496557682753,-0.01610998623073101,6.325911090243608e-05,0.0003373819054104388,0.0010964912362396717,-0.004027496557682753,0.000481282128021121,0.0003373819054104388,-1.0543184544076212e-05,-1.823686034185812e-05,-4.2012834183813297e-19,-0.01610998623073101,0.0003373819054104388,0.010085309855639935,-4.172729079012514e-20,-9.639483323553577e-05,-0.0010964912362396717,6.325911090243608e-05,-1.0543184544076212e-05,-4.172729079012514e-20,2.849509428415331e-07,7.924480640163307e-22,3.73610785112815e-21,0.0003373819054104388,-1.823686034185812e-05,-9.639483323553577e-05,7.924480640163307e-22,5.210531526245177e-06,8.216219588366713e-20,0.0010964912362396717,-4.2012834183813297e-19,-0.0010964912362396717,3.73610785112815e-21,8.216219588366713e-20,0.00015664160309825093,38.0,9.0,0.05816259607672691,-0.003609986510127783,-0.013127223588526249,5.623032120638527e-05,0.0002699055476114154,0.0007974481559358537,-0.003609986510127783,0.00042942739673890173,0.0002699055476114154,-9.371719897899311e-06,-1.4589488273486495e-05,-1.4230153513872246e-19,-0.013127223588526249,0.0002699055476114154,0.007155125495046377,-1.604272692517842e-20,-6.747638690285385e-05,-0.0006835269741714001,5.623032120638527e-05,-9.371719897899311e-06,-1.604272692517842e-20,2.5328972697025165e-07,-2.695917376116662e-22,2.4254387568991357e-21,0.0002699055476114154,-1.4589488273486495e-05,-6.747638690285385e-05,-2.695917376116662e-22,3.6473720683716238e-06,7.623296525288703e-21,0.0007974481559358537,-1.4230153513872246e-19,-0.0006835269741714001,2.4254387568991357e-21,7.623296525288703e-21,8.544087177142501e-05,38.0,10.0,0.05337688699364662,-0.003271071007475257,-0.010903569869697094,5.060728653916158e-05,0.00022083180374465883,0.0005980861023999751,-0.003271071007475257,0.00038767835940234363,0.00022083180374465883,-8.43454836285673e-06,-1.1936854207306169e-05,-1.0164395367051604e-19,-0.010903569869697094,0.00022083180374465883,0.005263924598693848,-4.93373718126586e-20,-4.907373295282014e-05,-0.0004485645913518965,5.060728653916158e-05,-8.43454836285673e-06,-4.93373718126586e-20,2.2796075427322648e-07,9.10578230146524e-22,3.3431938289911943e-21,0.00022083180374465883,-1.1936854207306169e-05,-4.907373295282014e-05,9.10578230146524e-22,2.6526342935540015e-06,-4.235164736271502e-21,0.0005980861023999751,-1.0164395367051604e-19,-0.0004485645913518965,3.3431938289911943e-21,-4.235164736271502e-21,4.984050974599086e-05,38.0,11.0,0.049319103360176086,-0.002990430686622858,-0.009201324544847012,4.6006625780137256e-05,0.00018402650312054902,0.00046006625052541494,-0.002990430686622858,0.00035333915730006993,0.00018402650312054902,-7.667770660191309e-06,-9.947378202923574e-06,2.0667603913004928e-19,-0.009201324544847012,0.00018402650312054902,0.003987240605056286,4.5352451829904263e-20,-3.6805300624109805e-05,-0.00030671083368360996,4.6006625780137256e-05,-7.667770660191309e-06,4.5352451829904263e-20,2.072370506311927e-07,-7.017705603104162e-22,-3.0067579057776405e-21,0.00018402650312054902,-9.947378202923574e-06,-3.6805300624109805e-05,-7.017705603104162e-22,1.98947577700892e-06,-1.8846483076408183e-20,0.00046006625052541494,2.0667603913004928e-19,-0.00030671083368360996,-3.0067579057776405e-21,-1.8846483076408183e-20,3.0671082640765235e-05,38.0,12.0,0.04583481699228287,-0.0027542042080312967,-0.007869155146181583,4.217273817630485e-05,0.00015571473340969533,0.00036148063372820616,-0.0027542042080312967,0.00032459566136822104,0.00015571473340969533,-7.028790150798159e-06,-8.417012395511847e-06,3.3881317890172014e-21,-0.007869155146181583,0.00015571473340969533,0.0030935662798583508,-1.9144743079544637e-20,-2.8311769710853696e-05,-0.0002168883802369237,4.217273817630485e-05,-7.028790150798159e-06,-1.9144743079544637e-20,1.8996729522768874e-07,3.959270164110188e-22,8.74558614022192e-22,0.00015571473340969533,-8.417012395511847e-06,-2.8311769710853696e-05,3.959270164110188e-22,1.5303659210985643e-06,-7.835054762102278e-21,0.00036148063372820616,3.3881317890172014e-21,-0.0002168883802369237,8.74558614022192e-22,-7.835054762102278e-21,1.971712481463328e-05,38.0,13.0,0.04281042888760567,-0.0025526094250380993,-0.0068069580011069775,3.892868335242383e-05,0.0001334697735728696,0.0002891845069825649,-0.0025526094250380993,0.00030018173856660724,0.0001334697735728696,-6.488113740488188e-06,-7.214582183223683e-06,-2.710505431213761e-20,-0.0068069580011069775,0.0001334697735728696,0.0024489681236445904,6.982278806483773e-22,-2.2244961655815132e-05,-0.00015773699851706624,3.892868335242383e-05,-6.488113740488188e-06,6.982278806483773e-22,1.7535442964344838e-07,1.6313459863291027e-25,1.0102545289446715e-22,0.0001334697735728696,-7.214582183223683e-06,-2.2244961655815132e-05,1.6313459863291027e-25,1.2024303259750013e-06,4.0234064994579266e-21,0.0002891845069825649,-2.710505431213761e-20,-0.00015773699851706624,1.0102545289446715e-22,4.0234064994579266e-21,1.3144749573257286e-05,38.0,14.0,0.04016049578785896,-0.0023785424418747425,-0.0059463563375175,3.6148063372820616e-05,0.00011567379988264292,0.000234962411923334,-0.0023785424418747425,0.0002791867882478982,0.00011567379988264292,-6.024677077220986e-06,-6.252637831494212e-06,3.3881317890172014e-21,-0.0059463563375175,0.00011567379988264292,0.0019721549469977617,-1.6418916187356927e-21,-1.7795970052247867e-05,-0.000117481205961667,3.6148063372820616e-05,-6.024677077220986e-06,-1.6418916187356927e-21,1.6282911019516177e-07,-2.0156779474880247e-22,4.314438062834758e-22,0.00011567379988264292,-6.252637831494212e-06,-1.7795970052247867e-05,-2.0156779474880247e-22,9.619442380426335e-07,-2.6469779601696886e-21,0.000234962411923334,3.3881317890172014e-21,-0.000117481205961667,4.314438062834758e-22,-2.6469779601696886e-21,9.037015843205154e-06,38.0,15.0,0.0378195196390152,-0.0022267205640673637,-0.005239342804998159,3.373819345142692e-05,0.00010121457307832316,0.0001934984466060996,-0.0022267205640673637,0.0002609390649013221,0.00010121457307832316,-5.623031938739587e-06,-5.471058102557436e-06,-5.759824041329242e-20,-0.005239342804998159,0.00010121457307832316,0.0016117782797664404,-1.6958936082331734e-20,-1.4459224985330366e-05,-8.930698095355183e-05,3.373819345142692e-05,-5.623031938739587e-06,-1.6958936082331734e-20,1.51973836182151e-07,3.310606628707013e-22,7.0478933535719255e-22,0.00010121457307832316,-5.471058102557436e-06,-1.4459224985330366e-05,3.310606628707013e-22,7.815797289367765e-07,2.8587361969832636e-21,0.0001934984466060996,-5.759824041329242e-20,-8.930698095355183e-05,7.0478933535719255e-22,2.8587361969832636e-21,6.379069873219123e-06,38.0,16.0,0.035736434161663055,-0.0020931323524564505,-0.004651404917240143,3.162955545121804e-05,8.930698095355183e-05,0.00016124871035572141,-0.0020931323524564505,0.0002449321036692709,8.930698095355183e-05,-5.271592272038106e-06,-4.8274041546392255e-06,-7.962109704190423e-20,-0.004651404917240143,8.930698095355183e-05,0.0013342887395992875,-1.911309372759168e-20,-1.1907596672244836e-05,-6.910658703418449e-05,3.162955545121804e-05,-5.271592272038106e-06,-1.911309372759168e-20,1.4247547142076655e-07,2.0347191564738874e-22,9.608274328752031e-22,8.930698095355183e-05,-4.8274041546392255e-06,-1.1907596672244836e-05,2.0347191564738874e-22,6.436538910747913e-07,4.4998625322884706e-21,0.00016124871035572141,-7.962109704190423e-20,-6.910658703418449e-05,9.608274328752031e-22,4.4998625322884706e-21,4.607105893228436e-06,38.0,17.0,0.033870846033096313,-0.001974676502868533,-0.004157213494181633,2.9768993044854142e-05,7.938397902762517e-05,0.0001357883884338662,-0.001974676502868533,0.00023077674268279225,7.938397902762517e-05,-4.961498689226573e-06,-4.291026016289834e-06,2.879912020664621e-20,-0.004157213494181633,7.938397902762517e-05,0.0011171206133440137,1.2496347568602867e-20,-9.922997378453147e-06,-5.431535464595072e-05,2.9768993044854142e-05,-4.961498689226573e-06,1.2496347568602867e-20,1.340945630090573e-07,-6.253901823241101e-23,-6.923176085287166e-22,7.938397902762517e-05,-4.291026016289834e-06,-9.922997378453147e-06,-6.253901823241101e-23,5.363782520362292e-07,-5.293955920339377e-23,0.0001357883884338662,2.879912020664621e-20,-5.431535464595072e-05,-6.923176085287166e-22,-5.293955920339377e-23,3.39470966537192e-06,38.0,18.0,0.03219037875533104,-0.0018689181888476014,-0.003737836377695203,2.8115160603192635e-05,7.102777453837916e-05,0.00011542013089638203,-0.0018689181888476014,0.0002181691088480875,7.102777453837916e-05,-4.6858599489496555e-06,-3.839339115074836e-06,1.8634724839594607e-20,-0.003737836377695203,7.102777453837916e-05,0.0009447085321880877,1.4302859135423962e-20,-8.356208127224818e-06,-4.328254726715386e-05,2.8115160603192635e-05,-4.6858599489496555e-06,1.4302859135423962e-20,1.2664486348512582e-07,-2.369498598004222e-22,-5.094897410088549e-22,7.102777453837916e-05,-3.839339115074836e-06,-8.356208127224818e-06,-2.369498598004222e-22,4.5168692963670765e-07,5.293955920339377e-23,0.00011542013089638203,1.8634724839594607e-20,-4.328254726715386e-05,-5.094897410088549e-22,5.293955920339377e-23,2.546032192185521e-06,38.0,19.0,0.030668776482343674,-0.0017739186296239495,-0.0033788925502449274,2.6635414542397484e-05,6.392499199137092e-05,9.893153765005991e-05,-0.0017739186296239495,0.00020686838252004236,6.392499199137092e-05,-4.439235908648698e-06,-3.455405021668412e-06,6.013933925505532e-20,-0.0033788925502449274,6.392499199137092e-05,0.0008060756954364479,2.2815306964547547e-20,-7.1027770900400355e-06,-3.4917015000246465e-05,2.6635414542397484e-05,-4.439235908648698e-06,2.2815306964547547e-20,1.1997934734608862e-07,-3.511450362740793e-22,-8.26549422854655e-22,6.392499199137092e-05,-3.455405021668412e-06,-7.1027770900400355e-06,-3.511450362740793e-22,3.839338944544579e-07,-2.514629062161204e-21,9.893153765005991e-05,6.013933925505532e-20,-3.4917015000246465e-05,-8.26549422854655e-22,-2.514629062161204e-21,1.939834191944101e-06,38.0,20.0,0.029284531250596046,-0.0016881144838407636,-0.003069299040362239,2.530364326958079e-05,5.783689994132146e-05,8.544087177142501e-05,-0.0016881144838407636,0.0001966812851605937,5.783689994132146e-05,-4.217274181428365e-06,-3.126318915747106e-06,1.1011428314305904e-20,-0.003069299040362239,5.783689994132146e-05,0.0006933279219083488,-4.1493911958492245e-21,-6.088094778533559e-06,-2.8480291803134605e-05,2.530364326958079e-05,-4.217274181428365e-06,-4.1493911958492245e-21,1.1398037713661324e-07,1.669616027964602e-22,6.473725803089988e-23,5.783689994132146e-05,-3.126318915747106e-06,-6.088094778533559e-06,1.669616027964602e-22,3.29086191186434e-07,-1.6675961149069038e-21,8.544087177142501e-05,1.1011428314305904e-20,-2.8480291803134605e-05,6.473725803089988e-23,-1.6675961149069038e-21,1.498962774348911e-06,38.0,21.0,0.028019843623042107,-0.0016102318186312914,-0.0028004031628370285,2.4098708308883943e-05,5.2578998293029144e-05,7.42964111850597e-05,-0.0016102318186312914,0.00018745084526017308,5.2578998293029144e-05,-4.0164513848139904e-06,-2.8421081879059784e-06,-7.623296525288703e-21,-0.0028004031628370285,5.2578998293029144e-05,0.0006006879848428071,-8.725985635165142e-21,-5.2578998293029144e-06,-2.3462025637854822e-05,2.4098708308883943e-05,-4.0164513848139904e-06,-8.725985635165142e-21,1.0855274013010785e-07,1.4896367182408316e-22,2.8535762136260023e-22,5.2578998293029144e-05,-2.8421081879059784e-06,-5.2578998293029144e-06,1.4896367182408316e-22,2.8421081310625596e-07,-3.705769144237564e-22,7.42964111850597e-05,-7.623296525288703e-21,-2.3462025637854822e-05,2.8535762136260023e-22,-3.705769144237564e-22,1.173101281892741e-06,38.0,22.0,0.026859868317842484,-0.0015392216155305505,-0.002565369475632906,2.3003312890068628e-05,4.800691385753453e-05,6.500936433440074e-05,-0.0015392216155305505,0.00017904830747283995,4.800691385753453e-05,-3.833885330095654e-06,-2.59496823673544e-06,1.6517142471458857e-20,-0.002565369475632906,4.800691385753453e-05,0.0005238611483946443,6.339583300440295e-21,-4.572087163978722e-06,-1.95028078451287e-05,2.3003312890068628e-05,-3.833885330095654e-06,6.339583300440295e-21,1.0361852531559634e-07,-1.281931282726822e-22,-1.555891441730789e-22,4.800691385753453e-05,-2.59496823673544e-06,-4.572087163978722e-06,-1.281931282726822e-22,2.4713983748370083e-07,-9.926167350636332e-22,6.500936433440074e-05,1.6517142471458857e-20,-1.95028078451287e-05,-1.555891441730789e-22,-9.926167350636332e-22,9.287051625506137e-07,38.0,23.0,0.025792114436626434,-0.0014742122730240226,-0.0023587397299706936,2.2003168851369992e-05,4.4006337702739984e-05,5.720823901356198e-05,-0.0014742122730240226,0.0001713670208118856,4.4006337702739984e-05,-3.66719473277044e-06,-2.378720864726347e-06,-0.0,-0.0023587397299706936,4.4006337702739984e-05,0.00045960902934893966,1.0587911840678754e-22,-4.000576154794544e-06,-1.6345211406587623e-05,2.2003168851369992e-05,-3.66719473277044e-06,1.0587911840678754e-22,9.911337173207357e-08,-1.3234889800848443e-23,-0.0,4.4006337702739984e-05,-2.378720864726347e-06,-4.000576154794544e-06,-1.3234889800848443e-23,2.1624735779823823e-07,-0.0,5.720823901356198e-05,-0.0,-1.6345211406587623e-05,-0.0,-0.0,7.429641186718072e-07,38.0,24.0,0.024806005880236626,-0.0014144736342132092,-0.0021761134266853333,2.1086369088152424e-05,4.048582923132926e-05,5.060728653916158e-05,-0.0014144736342132092,0.00016431791300419718,4.048582923132926e-05,-3.5143950753990794e-06,-2.188423195548239e-06,-0.0,-0.0021761134266853333,4.048582923132926e-05,0.00040545838419348,0.0,-3.5205068797949934e-06,-1.3801987734041177e-05,2.1086369088152424e-05,-3.5143950753990794e-06,0.0,9.498364761384437e-08,0.0,-0.0,4.048582923132926e-05,-2.188423195548239e-06,-3.5205068797949934e-06,0.0,1.9029766917810775e-07,-0.0,5.060728653916158e-05,-0.0,-1.3801987734041177e-05,-0.0,-0.0,6.000864232191816e-07,38.0,25.0,0.023892521858215332,-0.001359389629215002,-0.002013910561800003,2.024291461566463e-05,3.7371533835539594e-05,4.498425550991669e-05,-0.001359389629215002,0.00015782599803060293,3.7371533835539594e-05,-3.373819254193222e-06,-2.0200830022076843e-06,-0.0,-0.002013910561800003,3.7371533835539594e-05,0.0003594979352783412,-1.0587911840678754e-22,-3.1142947136686416e-06,-1.1735022781067528e-05,2.024291461566463e-05,-3.373819254193222e-06,-1.0587911840678754e-22,9.118430455146154e-08,6.617444900424222e-24,-0.0,3.7371533835539594e-05,-2.0200830022076843e-06,-3.1142947136686416e-06,6.617444900424222e-24,1.683402501839737e-07,-0.0,4.498425550991669e-05,-0.0,-1.1735022781067528e-05,-0.0,-0.0,4.889593014922866e-07,38.0,26.0,0.023043926805257797,-0.0013084362726658583,-0.0018691946752369404,1.9464341676211916e-05,3.460327206994407e-05,4.016451566712931e-05,-0.0013084362726658583,0.00015182771312538534,3.460327206994407e-05,-3.244056870244094e-06,-1.870447249530116e-06,-0.0,-0.0018691946752369404,3.460327206994407e-05,0.0003202347725164145,1.0587911840678754e-22,-2.7682617655955255e-06,-1.0041128916782327e-05,1.9464341676211916e-05,-3.244056870244094e-06,1.0587911840678754e-22,8.767721482172419e-08,0.0,-0.0,3.460327206994407e-05,-1.870447249530116e-06,-2.7682617655955255e-06,0.0,1.4963578109927766e-07,-0.0,4.016451566712931e-05,-0.0,-1.0041128916782327e-05,-0.0,-0.0,4.0164513848139904e-07,38.0,27.0,0.02225354127585888,-0.0012611657148227096,-0.001739538973197341,1.8743439795798622e-05,3.2131611078511924e-05,3.6009565519634634e-05,-0.0012611657148227096,0.0001462687796447426,3.2131611078511924e-05,-3.123906708424329e-06,-1.7368438420817256e-06,-0.0,-0.001739538973197341,3.2131611078511924e-05,0.0002864912385120988,1.0587911840678754e-22,-2.471662355674198e-06,-8.642295142635703e-06,1.8743439795798622e-05,-3.123906708424329e-06,1.0587911840678754e-22,8.44299066216081e-08,-6.617444900424222e-24,-0.0,3.2131611078511924e-05,-1.7368438420817256e-06,-2.471662355674198e-06,-6.617444900424222e-24,1.3360337902668107e-07,-0.0,3.6009565519634634e-05,-0.0,-8.642295142635703e-06,-0.0,-0.0,3.3239598451473285e-07,38.0,28.0,0.021515576168894768,-0.001217192504554987,-0.001622923300601542,1.8074031686410308e-05,2.9915638151578605e-05,3.2408606784883887e-05,-0.001217192504554987,0.0001411026605637744,2.9915638151578605e-05,-3.012338538610493e-06,-1.6170614571819897e-06,-0.0,-0.001622923300601542,2.9915638151578605e-05,0.0002573298988863826,-1.0587911840678754e-22,-2.215973154306994e-06,-7.478909537894651e-06,1.8074031686410308e-05,-3.012338538610493e-06,-1.0587911840678754e-22,8.141455509758089e-08,0.0,-0.0,2.9915638151578605e-05,-1.6170614571819897e-06,-2.215973154306994e-06,0.0,1.1978232805631706e-07,-0.0,3.2408606784883887e-05,-0.0,-7.478909537894651e-06,-0.0,-0.0,2.7699664428837423e-07,38.0,29.0,0.020824983716011047,-0.0011761831119656563,-0.0015176556771621108,1.7450789528083988e-05,2.7921261789742857e-05,2.9272290703374892e-05,-0.0011761831119656563,0.00013628909073304385,2.7921261789742857e-05,-2.908464693973656e-06,-1.5092574585651164e-06,-0.0,-0.0015176556771621108,2.7921261789742857e-05,0.0002319980994798243,2.117582368135751e-22,-1.994375907088397e-06,-6.504953489638865e-06,1.7450789528083988e-05,-2.908464693973656e-06,2.117582368135751e-22,7.860715811602859e-08,-1.3234889800848443e-23,-0.0,2.7921261789742857e-05,-1.5092574585651164e-06,-1.994375907088397e-06,-1.3234889800848443e-23,1.0780409809285629e-07,-0.0,2.9272290703374892e-05,-0.0,-6.504953489638865e-06,-0.0,-0.0,2.3231976342685812e-07,38.0,30.0,0.020177343860268593,-0.0011378476629033685,-0.001422309665940702,1.686909672571346e-05,2.6119891117559746e-05,2.6528014132054523e-05,-0.0011378476629033685,0.0001317931746598333,2.6119891117559746e-05,-2.8115159693697933e-06,-1.4118859326117672e-06,7.411538288475128e-22,-0.001422309665940702,2.6119891117559746e-05,0.0002098869445035234,-9.102395248282583e-23,-1.8013716953646508e-06,-5.6845742619771045e-06,1.686909672571346e-05,-2.8115159693697933e-06,-9.102395248282583e-23,7.59869180910755e-08,-2.527502057288617e-24,5.774013753223641e-24,2.6119891117559746e-05,-1.4118859326117672e-06,-1.8013716953646508e-06,-2.527502057288617e-24,9.737144779364826e-08,-5.955700410381799e-23,2.6528014132054523e-05,7.411538288475128e-22,-5.6845742619771045e-06,5.774013753223641e-24,-5.955700410381799e-23,1.9601979772687628e-07,38.0,31.0,0.01956876926124096,-0.0011019328376278281,-0.001335676177404821,1.632493149372749e-05,2.4487397240591235e-05,2.4116376152960584e-05,-0.0011019328376278281,0.00012758448428940028,2.4487397240591235e-05,-2.7208218398300232e-06,-1.3236431186669506e-06,-1.0587911840678754e-22,-0.001335676177404821,2.4487397240591235e-05,0.00019050018454436213,-8.261628557675477e-23,-1.6324931948474841e-06,-4.9895952543010935e-06,1.632493149372749e-05,-2.7208218398300232e-06,-8.261628557675477e-23,7.353573039381445e-08,-2.600741481451146e-24,3.818253230920699e-24,2.4487397240591235e-05,-1.3236431186669506e-06,-1.6324931948474841e-06,-2.600741481451146e-24,8.824287078823545e-08,6.617444900424222e-24,2.4116376152960584e-05,-1.0587911840678754e-22,-4.9895952543010935e-06,3.818253230920699e-24,6.617444900424222e-24,1.6631983612569456e-07,38.0,32.0,0.018995830789208412,-0.0010682162828743458,-0.0012567250523716211,1.581477772560902e-05,2.3003312890068628e-05,2.198846050305292e-05,-0.0010682162828743458,0.00012363633140921593,2.3003312890068628e-05,-2.635796136019053e-06,-1.2434222753654467e-06,-1.376428539288238e-21,-0.0012567250523716211,2.3003312890068628e-05,0.00017343056970275939,-7.521352017885217e-23,-1.4840846915831207e-06,-4.397692009661114e-06,1.581477772560902e-05,-2.635796136019053e-06,-7.521352017885217e-23,7.123773571038328e-08,6.436191387067597e-25,1.9071948923186894e-24,2.3003312890068628e-05,-1.2434222753654467e-06,-1.4840846915831207e-06,6.436191387067597e-25,8.022079356351242e-08,7.940933880509066e-23,2.198846050305292e-05,-1.376428539288238e-21,-4.397692009661114e-06,1.9071948923186894e-24,7.940933880509066e-23,1.4186103669544536e-07,38.0,33.0,0.018455486744642258,-0.0010365021880716085,-0.0011845739791169763,1.5335541320382617e-05,2.1650175767717883e-05,2.010373464145232e-05,-0.0010365021880716085,0.00011992523650405928,2.1650175767717883e-05,-2.555923629188328e-06,-1.170279801954166e-06,6.352747104407253e-22,-0.0011845739791169763,2.1650175767717883e-05,0.00015834186342544854,-0.0,-1.3531359854823677e-06,-3.89104570786003e-06,1.5335541320382617e-05,-2.555923629188328e-06,-0.0,6.907901450858844e-08,0.0,0.0,2.1650175767717883e-05,-1.170279801954166e-06,-1.3531359854823677e-06,0.0,7.314248762213538e-08,-3.970466940254533e-23,2.010373464145232e-05,6.352747104407253e-22,-3.89104570786003e-06,0.0,-3.970466940254533e-23,1.2159517837062594e-07,38.0,34.0,0.017945032566785812,-0.001006617210805416,-0.0011184635804966092,1.4884496522427071e-05,2.0413022866705433e-05,1.8428423572913744e-05,-0.001006617210805416,0.00011643047764664516,2.0413022866705433e-05,-2.4807493446132867e-06,-1.1034067028958816e-06,-5.293955920339377e-22,-0.0011184635804966092,2.0413022866705433e-05,0.0001449546980438754,-6.286407941246e-23,-1.2371529010124505e-06,-3.4553295336081646e-06,1.4884496522427071e-05,-2.4807493446132867e-06,-6.286407941246e-23,6.704728150452866e-08,3.845251995401888e-24,-1.5585092263548823e-25,2.0413022866705433e-05,-1.1034067028958816e-06,-1.2371529010124505e-06,3.845251995401888e-24,6.687313458542121e-08,2.9778502051908996e-23,1.8428423572913744e-05,-5.293955920339377e-22,-3.4553295336081646e-06,-1.5585092263548823e-25,2.9778502051908996e-23,1.0470695599451574e-07,38.0,35.0,0.017462054267525673,-0.000978407566435635,-0.0010577378561720252,1.4459224985330366e-05,1.9278966647107154e-05,1.6934227460296825e-05,-0.000978407566435635,0.0001131336684920825,1.9278966647107154e-05,-2.4098708308883943e-06,-1.0421063052490354e-06,6.352747104407253e-22,-0.0010577378561720252,1.9278966647107154e-05,0.0001330357335973531,5.769505255378122e-23,-1.1340569017193047e-06,-3.078950385315693e-06,1.4459224985330366e-05,-2.4098708308883943e-06,5.769505255378122e-23,6.513164407806471e-08,-4.9181878262650015e-25,3.1907932176040994e-25,1.9278966647107154e-05,-1.0421063052490354e-06,-1.1340569017193047e-06,-4.9181878262650015e-25,6.130036922513682e-08,-3.639594695233322e-23,1.6934227460296825e-05,6.352747104407253e-22,-3.078950385315693e-06,3.1907932176040994e-25,-3.639594695233322e-23,9.055736427399097e-08,38.0,36.0,0.01700439304113388,-0.0009517361759208143,-0.0010018275352194905,1.4057580301596317e-05,1.823686034185812e-05,1.5597313904436305e-05,-0.0009517361759208143,0.00011001844541169703,1.823686034185812e-05,-2.3429299744748278e-06,-9.857761824605404e-07,6.88214269644119e-22,-0.0010018275352194905,1.823686034185812e-05,0.00012238901399541646,-5.307777394487573e-23,-1.0421063052490354e-06,-2.7524672532308614e-06,1.4057580301596317e-05,-2.3429299744748278e-06,-5.307777394487573e-23,6.332243174256291e-08,3.760664018256849e-24,-4.606687855430052e-25,1.823686034185812e-05,-9.857761824605404e-07,-1.0421063052490354e-06,3.760664018256849e-24,5.6330069497789736e-08,-3.639594695233322e-23,1.5597313904436305e-05,6.88214269644119e-22,-2.7524672532308614e-06,-4.606687855430052e-25,-3.639594695233322e-23,7.864192497208933e-08,38.0,37.0,0.016570108011364937,-0.0009264805121347308,-0.0009502363973297179,1.3677645256393589e-05,1.727702510834206e-05,1.4397521226783283e-05,-0.0009264805121347308,0.00010707021283451468,1.727702510834206e-05,-2.279607542732265e-06,-9.338932613900397e-07,-2.117582368135751e-22,-0.0009502363973297179,1.727702510834206e-05,0.00011284914216957986,-0.0,-9.59834778768709e-07,-2.468146476530819e-06,1.3677645256393589e-05,-2.279607542732265e-06,-0.0,6.161101140378378e-08,-3.308722450212111e-24,1.6543612251060553e-24,1.727702510834206e-05,-9.338932613900397e-07,-9.59834778768709e-07,-3.308722450212111e-24,5.188296015035121e-08,9.926167350636332e-24,1.4397521226783283e-05,-2.117582368135751e-22,-2.468146476530819e-06,1.6543612251060553e-24,9.926167350636332e-24,6.855962197960253e-08,38.0,38.0,0.016157452017068863,-0.0009025307954289019,-0.0009025307954289019,1.3317707271198742e-05,1.639102447370533e-05,1.3317707271198742e-05,-0.0009025307954289019,0.00010427589586470276,1.639102447370533e-05,-2.219617954324349e-06,-8.860013167577563e-07,-1.0587911840678754e-22,-0.0009025307954289019,1.639102447370533e-05,0.00010427589586470276,-9.044492226750637e-23,-8.860013167577563e-07,-2.219617954324349e-06,1.3317707271198742e-05,-2.219617954324349e-06,-9.044492226750637e-23,5.998967367304431e-08,4.077205894959906e-24,2.708503874712669e-25,1.639102447370533e-05,-8.860013167577563e-07,-8.860013167577563e-07,4.077205894959906e-24,4.7891962395851806e-08,3.308722450212111e-24,1.3317707271198742e-05,-1.0587911840678754e-22,-2.219617954324349e-06,2.708503874712669e-25,3.308722450212111e-24,5.998967367304431e-08,38.0,39.0,0.01576485112309456,-0.0008797882474027574,-0.0008583299932070076,1.2976227480976377e-05,1.5571473340969533e-05,1.2343240996415261e-05,-0.0008797882474027574,0.00010162373655475676,1.5571473340969533e-05,-2.1627045043715043e-06,-8.417012509198685e-07,1.5881867761018131e-22,-0.0008583299932070076,1.5571473340969533e-05,9.654983296059072e-05,-8.374363091918802e-23,-8.195511895792151e-07,-2.0016066173411673e-06,1.2976227480976377e-05,-2.1627045043715043e-06,-8.374363091918802e-23,5.845147654781613e-08,4.019569745072196e-24,8.175577544304474e-26,1.5571473340969533e-05,-8.417012509198685e-07,-8.195511895792151e-07,4.019569745072196e-24,4.4300065837887814e-08,-6.617444900424222e-24,1.2343240996415261e-05,1.5881867761018131e-22,-2.0016066173411673e-06,8.175577544304474e-26,-6.617444900424222e-24,5.267385816409842e-08,38.0,40.0,0.015390874817967415,-0.0008581638103350997,-0.0008172988891601562,1.2651821634790394e-05,1.4811888831900433e-05,1.1461580470495392e-05,-0.0008581638103350997,9.910315566230565e-05,1.4811888831900433e-05,-2.1086370907141827e-06,-8.006426241990994e-07,5.823351512373315e-22,-0.0008172988891601562,1.4811888831900433e-05,8.956880628829822e-05,-0.0,-7.595840543217491e-07,-1.8097232441505184e-06,1.2651821634790394e-05,-2.1086370907141827e-06,-0.0,5.699018856830662e-08,0.0,8.271806125530277e-25,1.4811888831900433e-05,-8.006426241990994e-07,-7.595840543217491e-07,0.0,4.105859829905967e-08,-3.3087224502121107e-23,1.1461580470495392e-05,5.823351512373315e-22,-1.8097232441505184e-06,8.271806125530277e-25,-3.3087224502121107e-23,4.640316220161367e-08,38.0,41.0,0.01503423135727644,-0.0008375770412385464,-0.0007791414391249418,1.2343240996415261e-05,1.4106561138760298e-05,1.06619354482973e-05,-0.0008375770412385464,9.670460713095963e-05,1.4106561138760298e-05,-2.0572067569446517e-06,-7.625168336744537e-07,4.2881042954748955e-21,-0.0007791414391249418,1.4106561138760298e-05,8.324511145474389e-05,5.412264962257551e-21,-7.053280342006474e-07,-1.640297796257073e-06,1.2343240996415261e-05,-2.0572067569446517e-06,5.412264962257551e-21,5.560018223604857e-08,-5.743814264505608e-23,-1.091271553652828e-22,1.4106561138760298e-05,-7.625168336744537e-07,-7.053280342006474e-07,-5.743814264505608e-23,3.812584026263721e-08,-1.4889251025954498e-23,1.06619354482973e-05,4.2881042954748955e-21,-1.640297796257073e-06,-1.091271553652828e-22,-1.4889251025954498e-23,4.10074463275123e-08,38.0,42.0,0.01469374168664217,-0.0008179550059139729,-0.0007435954757966101,1.2049354154441971e-05,1.3450441656459589e-05,9.934985428117216e-06,-0.0008179550059139729,9.44194252952002e-05,1.3450441656459589e-05,-2.0082256924069952e-06,-7.270509172485617e-07,1.0587911840678754e-22,-0.0007435954757966101,1.3450441656459589e-05,7.750313670840114e-05,-0.0,-6.561191412401968e-07,-1.4902477687428473e-06,1.2049354154441971e-05,-2.0082256924069952e-06,-0.0,5.4276370065053925e-08,-1.6543612251060553e-24,8.271806125530277e-25,1.3450441656459589e-05,-7.270509172485617e-07,-6.561191412401968e-07,-1.6543612251060553e-24,3.5465898662323525e-08,-6.617444900424222e-24,9.934985428117216e-06,1.0587911840678754e-22,-1.4902477687428473e-06,8.271806125530277e-25,-6.617444900424222e-24,3.634750811443155e-08,38.0,43.0,0.014368332922458649,-0.0007992313476279378,-0.0007104278774932027,1.1769137017836329e-05,1.2839058399549685e-05,9.272653187508695e-06,-0.0007992313476279378,9.223976667271927e-05,1.2839058399549685e-05,-1.9615226847236045e-06,-6.940031198610086e-07,-3.5998900258307764e-21,-0.0007104278774932027,1.2839058399549685e-05,7.22774857422337e-05,-5.318951476681397e-21,-6.11383711657254e-07,-1.3569735983764986e-06,1.1769137017836329e-05,-1.9615226847236045e-06,-5.318951476681397e-21,5.3014129974826574e-08,3.506599688589025e-23,9.737911690948217e-23,1.2839058399549685e-05,-6.940031198610086e-07,-6.11383711657254e-07,3.506599688589025e-23,3.3047768965843716e-08,1.6543612251060553e-24,9.272653187508695e-06,-3.5998900258307764e-21,-1.3569735983764986e-06,9.737911690948217e-23,1.6543612251060553e-24,3.230889689120886e-08,38.0,44.0,0.014057024382054806,-0.0007813458214513958,-0.0006794311921112239,1.1501656445034314e-05,1.2268433238205034e-05,8.667914698889945e-06,-0.0007813458214513958,9.01584789971821e-05,1.2268433238205034e-05,-1.916942665047827e-06,-6.631585733885004e-07,2.117582368135751e-22,-0.0006794311921112239,1.2268433238205034e-05,6.751138425897807e-05,5.855679158487017e-23,-5.70624820284138e-07,-1.2382735121718724e-06,1.1501656445034314e-05,-1.916942665047827e-06,5.855679158487017e-23,5.180926265779817e-08,1.159423089245085e-24,-1.9012117767830407e-24,1.2268433238205034e-05,-6.631585733885004e-07,-5.70624820284138e-07,1.159423089245085e-24,3.0844585552358694e-08,-8.271806125530277e-24,8.667914698889945e-06,2.117582368135751e-22,-1.2382735121718724e-06,-1.9012117767830407e-24,-8.271806125530277e-24,2.87970589596398e-08,38.0,45.0,0.013758919201791286,-0.0007642433629371226,-0.0006504199118353426,1.1246063877479173e-05,1.1735022781067528e-05,8.114643605949823e-06,-0.0007642433629371226,8.8169050286524e-05,1.1735022781067528e-05,-1.8743439795798622e-06,-6.343256018226384e-07,3.1763735522036263e-22,-0.0006504199118353426,1.1735022781067528e-05,6.315539212664589e-05,-5.477857067830672e-23,-5.334101160769933e-07,-1.132275883719558e-06,1.1246063877479173e-05,-1.8743439795798622e-06,-5.477857067830672e-23,5.065794539405033e-08,4.62659525341137e-25,9.820927783853513e-25,1.1735022781067528e-05,-6.343256018226384e-07,-5.334101160769933e-07,4.62659525341137e-25,2.883298044764615e-08,-1.6543612251060553e-23,8.114643605949823e-06,3.1763735522036263e-22,-1.132275883719558e-06,9.820927783853513e-25,-1.6543612251060553e-23,2.573354151991225e-08,38.0,46.0,0.013473195023834705,-0.0007478736224584281,-0.0006232280284166336,1.1001584425684996e-05,1.1235660167585593e-05,7.607478437421378e-06,-0.0007478736224584281,8.626553608337417e-05,1.1235660167585593e-05,-1.83359736638522e-06,-6.07332992785814e-07,1.852884572118782e-22,-0.0006232280284166336,1.1235660167585593e-05,5.916632289881818e-05,-0.0,-4.99362670325354e-07,-1.0373834129495663e-06,1.1001584425684996e-05,-1.83359736638522e-06,-0.0,4.955668586603679e-08,0.0,0.0,1.1235660167585593e-05,-6.07332992785814e-07,-4.99362670325354e-07,0.0,2.6992577062401324e-08,-9.926167350636332e-24,7.607478437421378e-06,1.852884572118782e-22,-1.0373834129495663e-06,0.0,-9.926167350636332e-24,2.305296575855209e-08,38.0,47.0,0.01319909654557705,-0.0007321905577555299,-0.0005977065884508193,1.0767507774289697e-05,1.0767507774289697e-05,7.141714377212338e-06,-0.0007321905577555299,8.44424866954796e-05,1.0767507774289697e-05,-1.794584704839508e-06,-5.820274395773595e-07,-7.940933880509066e-23,-0.0005977065884508193,1.0767507774289697e-05,5.550632704398595e-05,4.814406429422438e-23,-4.6815250698273303e-07,-9.522286177343631e-07,1.0767507774289697e-05,-1.794584704839508e-06,4.814406429422438e-23,4.850228663144662e-08,-3.714779923704669e-24,1.253962779361824e-27,1.0767507774289697e-05,-5.820274395773595e-07,-4.6815250698273303e-07,-3.714779923704669e-24,2.5305540773956636e-08,4.963083675318166e-24,7.141714377212338e-06,-7.940933880509066e-23,-9.522286177343631e-07,1.253962779361824e-27,4.963083675318166e-24,2.070062166126263e-08,38.0,48.0,0.01293592806905508,-0.0007171517354436219,-0.0005737213650718331,1.0543184544076212e-05,1.0328018106520176e-05,6.713211405440234e-06,-0.0007171517354436219,8.269489626400173e-05,1.0328018106520176e-05,-1.7571975376995397e-06,-5.582712105933751e-07,0.0,-0.0005737213650718331,1.0328018106520176e-05,5.214216071180999e-05,-4.522611513746617e-23,-4.3949012251687236e-07,-8.7563631723242e-07,1.0543184544076212e-05,-1.7571975376995397e-06,-4.522611513746617e-23,4.7491823806922184e-08,3.811969164949708e-25,7.594934379604769e-25,1.0328018106520176e-05,-5.582712105933751e-07,-4.3949012251687236e-07,3.811969164949708e-25,2.375622187855697e-08,8.271806125530277e-25,6.713211405440234e-06,0.0,-8.7563631723242e-07,7.594934379604769e-25,8.271806125530277e-25,1.8630560205679103e-08,38.0,49.0,0.012683048844337463,-0.0007027183310128748,-0.0005511516355909407,1.0328018106520176e-05,9.914897418639157e-06,6.318316991382744e-06,-0.0007027183310128748,8.101818093564361e-05,9.914897418639157e-06,-1.7213362752954708e-06,-5.359403871807444e-07,4.499862532288471e-22,-0.0005511516355909407,9.914897418639157e-06,4.9044512707041577e-05,-0.0,-4.131207163027284e-07,-8.065936185630562e-07,1.0328018106520176e-05,-1.7213362752954708e-06,-0.0,4.652260443549494e-08,0.0,0.0,9.914897418639157e-06,-5.359403871807444e-07,-4.131207163027284e-07,0.0,2.2330850057983298e-08,-1.737079286361358e-23,6.318316991382744e-06,4.499862532288471e-22,-8.065936185630562e-07,0.0,-1.737079286361358e-23,1.680403372006367e-08,38.0,50.0,0.012439866550266743,-0.0006888544885441661,-0.0005298880860209465,1.0121457307832316e-05,9.526077519694809e-06,5.953798336122418e-06,-0.0006888544885441661,7.940812065498903e-05,9.526077519694809e-06,-1.686909627096611e-06,-5.149231014911493e-07,-7.940933880509066e-23,-0.0005298880860209465,9.526077519694809e-06,4.618750244844705e-05,-0.0,-3.8881950104041607e-07,-7.442247920153022e-07,1.0121457307832316e-05,-1.686909627096611e-06,-0.0,4.559215227573077e-08,0.0,0.0,9.526077519694809e-06,-5.149231014911493e-07,-3.8881950104041607e-07,0.0,2.10172697023836e-08,2.481541837659083e-24,5.953798336122418e-06,-7.940933880509066e-23,-7.442247920153022e-07,0.0,2.481541837659083e-24,1.5188261315302043e-08,38.0,51.0,0.012205834500491619,-0.0006755271460860968,-0.0005098318215459585,9.922997378453147e-06,9.15969030756969e-06,5.616790986096021e-06,-0.0006755271460860968,7.786080095684156e-05,9.15969030756969e-06,-1.6538328964088578e-06,-4.951183996126929e-07,-1.402898318889935e-21,-0.0005098318215459585,9.15969030756969e-06,4.3548207031562924e-05,-3.049895495891316e-21,-3.6638761002905085e-07,-6.877703526697587e-07,9.922997378453147e-06,-1.6538328964088578e-06,-3.049895495891316e-21,4.469818648544788e-08,3.603220949982305e-23,4.0886461924656926e-23,9.15969030756969e-06,-4.951183996126929e-07,-3.6638761002905085e-07,3.603220949982305e-23,1.9804735629236347e-08,-4.1359030627651384e-24,5.616790986096021e-06,-1.402898318889935e-21,-6.877703526697587e-07,4.0886461924656926e-23,-4.1359030627651384e-24,1.3755406591542396e-08,38.0,52.0,0.011980445124208927,-0.0006627057446166873,-0.0004908931441605091,9.732170838105958e-06,8.814041393634398e-06,5.304746991896536e-06,-0.0006627057446166873,7.637264207005501e-05,8.814041393634398e-06,-1.622028435122047e-06,-4.7643467837588105e-07,-2.3822801641527197e-22,-0.0004908931441605091,8.814041393634398e-06,4.110626832698472e-05,-0.0,-3.4564868656161707e-07,-6.365696663124254e-07,9.732170838105958e-06,-1.622028435122047e-06,-0.0,4.3838607410862096e-08,0.0,0.0,8.814041393634398e-06,-4.7643467837588105e-07,-3.4564868656161707e-07,0.0,1.8683712355027637e-08,9.098986738083304e-24,5.304746991896536e-06,-2.3822801641527197e-22,-6.365696663124254e-07,0.0,9.098986738083304e-24,1.2481757849513997e-08,38.0,53.0,0.011763228103518486,-0.0006503619952127337,-0.00047299053403548896,9.548544767312706e-06,8.487595550832339e-06,5.015397164243041e-06,-0.0006503619952127337,7.494030433008447e-05,8.487595550832339e-06,-1.5914241657810635e-06,-4.58788946389177e-07,-2.6469779601696886e-23,-0.00047299053403548896,8.487595550832339e-06,3.8843580114189535e-05,-0.0,-3.2644598491060606e-07,-5.900467385799857e-07,9.548544767312706e-06,-1.5914241657810635e-06,-0.0,4.3011464612163763e-08,0.0,0.0,8.487595550832339e-06,-4.58788946389177e-07,-3.2644598491060606e-07,0.0,1.764572843399037e-08,1.6543612251060553e-24,5.015397164243041e-06,-2.6469779601696886e-23,-5.900467385799857e-07,0.0,1.6543612251060553e-24,1.1347053074928226e-08,38.0,54.0,0.01155374851077795,-0.000638469704426825,-0.00045604980550706387,9.371719897899311e-06,8.17895579530159e-06,4.746715148939984e-06,-0.000638469704426825,7.356071000685915e-05,8.17895579530159e-06,-1.5619533542121644e-06,-4.421057155923336e-07,5.293955920339377e-23,-0.00045604980550706387,8.17895579530159e-06,3.674398612929508e-05,-0.0,-3.086398407958768e-07,-5.476979367813328e-07,9.371719897899311e-06,-1.5619533542121644e-06,-0.0,4.221495331080405e-08,0.0,0.0,8.17895579530159e-06,-4.421057155923336e-07,-3.086398407958768e-07,0.0,1.6683234349557097e-08,-3.308722450212111e-24,4.746715148939984e-06,5.293955920339377e-23,-5.476979367813328e-07,0.0,-3.308722450212111e-24,1.0333923050609428e-08,38.0,55.0,0.011351598426699638,-0.0006270045996643603,-0.00044000320485793054,9.201325156027451e-06,7.886849743954372e-06,4.496888323046733e-06,-0.0006270045996643603,7.223099237307906e-05,7.886849743954372e-06,-1.5335541547756293e-06,-4.263162054485292e-07,9.26442286059391e-23,-0.00044000320485793054,7.886849743954372e-06,3.4793050872394815e-05,-0.0,-2.9210556817815814e-07,-5.090817012387561e-07,9.201325156027451e-06,-1.5335541547756293e-06,-0.0,4.144741083678127e-08,0.0,0.0,7.886849743954372e-06,-4.263162054485292e-07,-2.9210556817815814e-07,0.0,1.578948882752229e-08,-2.481541837659083e-24,4.496888323046733e-06,9.26442286059391e-23,-5.090817012387561e-07,0.0,-2.481541837659083e-24,9.427438385500864e-09,38.0,56.0,0.011156400665640831,-0.0006159439799375832,-0.00042478894465602934,9.037015843205154e-06,7.610118245793274e-06,4.264290510036517e-06,-0.0006159439799375832,7.094850298017263e-05,7.610118245793274e-06,-1.5061692693052464e-06,-4.1135774608846987e-07,2.6469779601696886e-23,-0.00042478894465602934,7.610118245793274e-06,3.297784132882953e-05,-0.0,-2.767315834262263e-07,-4.7381004719682096e-07,9.037015843205154e-06,-1.5061692693052464e-06,-0.0,4.0707277548790444e-08,0.0,0.0,7.610118245793274e-06,-4.1135774608846987e-07,-2.767315834262263e-07,0.0,1.495846291277303e-08,-8.271806125530277e-25,4.264290510036517e-06,2.6469779601696886e-23,-4.7381004719682096e-07,0.0,-8.271806125530277e-25,8.614728486122658e-09,38.0,57.0,0.010967802256345749,-0.0006052668322809041,-0.00041035038884729147,8.878471817297395e-06,7.347700375248678e-06,4.047461970912991e-06,-0.0006052668322809041,6.971076072659343e-05,7.347700375248678e-06,-1.4797452649872866e-06,-3.971730109242344e-07,1.852884572118782e-22,-0.00041035038884729147,7.347700375248678e-06,3.128675962216221e-05,-0.0,-2.6241787054459564e-07,-4.415413172864646e-07,8.878471817297395e-06,-1.4797452649872866e-06,-0.0,3.9993114597791646e-08,0.0,0.0,7.347700375248678e-06,-3.971730109242344e-07,-2.6241787054459564e-07,0.0,1.4184750263268597e-08,-6.617444900424222e-24,4.047461970912991e-06,1.852884572118782e-22,-4.415413172864646e-07,0.0,-6.617444900424222e-24,7.884666253232808e-09,38.0,58.0,0.010785474441945553,-0.0005949535989202559,-0.00039663573261350393,8.725394764041994e-06,7.098626156221144e-06,3.845088940579444e-06,-0.0005949535989202559,6.851546640973538e-05,7.098626156221144e-06,-1.454232346986828e-06,-3.837095050585049e-07,-2.779326858178173e-22,-0.00039663573261350393,7.098626156221144e-06,2.9709373848163523e-05,-0.0,-2.490745885097567e-07,-4.119738150620833e-07,8.725394764041994e-06,-1.454232346986828e-06,-0.0,3.930357905801429e-08,0.0,0.0,7.098626156221144e-06,-3.837095050585049e-07,-2.490745885097567e-07,0.0,1.3463491654874815e-08,9.512577044359818e-24,3.845088940579444e-06,-2.779326858178173e-22,-4.119738150620833e-07,0.0,9.512577044359818e-24,7.227610954174679e-09,38.0,59.0,0.01060910988599062,-0.000584985944442451,-0.00038359733298420906,8.577506378060207e-06,6.862005193397636e-06,3.655986347439466e-06,-0.000584985944442451,6.736047362210229e-05,6.862005193397636e-06,-1.4295843584477552e-06,-3.709191958023439e-07,-5.293955920339377e-23,-0.00038359733298420906,6.862005193397636e-06,2.823627983161714e-05,-0.0,-2.366208633475253e-07,-3.848406606721255e-07,8.577506378060207e-06,-1.4295843584477552e-06,-0.0,3.863741682152977e-08,0.0,0.0,6.862005193397636e-06,-3.709191958023439e-07,-2.366208633475253e-07,0.0,1.2790317249766758e-08,1.6543612251060553e-24,3.655986347439466e-06,-5.293955920339377e-23,-3.848406606721255e-07,0.0,1.6543612251060553e-24,6.63518395782603e-09,38.0,60.0,0.010438419878482819,-0.0005753467557951808,-0.00037119147600606084,8.43454836285673e-06,6.637021215283312e-06,3.47908371622907e-06,-0.0005753467557951808,6.624377419939265e-05,6.637021215283312e-06,-1.4057579846848967e-06,-3.587579158192966e-07,5.293955920339377e-23,-0.00037119147600606084,6.637021215283312e-06,2.6859002900891937e-05,-0.0,-2.2498377916235768e-07,-3.5990521496387373e-07,8.43454836285673e-06,-1.4057579846848967e-06,-0.0,3.799345904553775e-08,0.0,0.0,6.637021215283312e-06,-3.587579158192966e-07,-2.2498377916235768e-07,0.0,1.2161285312117798e-08,-1.2407709188295415e-24,3.47908371622907e-06,5.293955920339377e-23,-3.5990521496387373e-07,0.0,-1.2407709188295415e-24,6.100088434379813e-09,38.0,61.0,0.010273135267198086,-0.0005660201422870159,-0.00035937788197770715,8.29627697385149e-06,6.42292388874921e-06,3.313413117211894e-06,-0.0005660201422870159,6.516350549645722e-05,6.42292388874921e-06,-1.3827127531840233e-06,-3.471850789082964e-07,-1.3234889800848443e-22,-0.00035937788197770715,6.42292388874921e-06,2.5569872377673164e-05,-0.0,-2.1409745443179418e-07,-3.3695727097438066e-07,8.29627697385149e-06,-1.3827127531840233e-06,-0.0,3.737061504693884e-08,0.0,0.0,6.42292388874921e-06,-3.471850789082964e-07,-2.1409745443179418e-07,0.0,1.1572836022821775e-08,4.1359030627651384e-24,3.313413117211894e-06,-1.3234889800848443e-22,-3.3695727097438066e-07,0.0,4.1359030627651384e-24,5.615954368209941e-09,38.0,62.0,0.0101130036637187,-0.0005569910863414407,-0.00034811944351531565,8.162465746863745e-06,6.219021543074632e-06,3.1580968880007276e-06,-0.0005569910863414407,6.411789945559576e-05,6.219021543074632e-06,-1.3604109199150116e-06,-3.3616331052144233e-07,5.293955920339377e-23,-0.00034811944351531565,6.219021543074632e-06,2.4361948817386292e-05,-0.0,-2.039023456745781e-07,-3.158096717470471e-07,8.162465746863745e-06,-1.3604109199150116e-06,-0.0,3.6767865196907223e-08,0.0,0.0,6.219021543074632e-06,-3.3616331052144233e-07,-2.039023456745781e-07,0.0,1.1021747958750439e-08,-1.6543612251060553e-24,3.1580968880007276e-06,5.293955920339377e-23,-3.158096717470471e-07,0.0,-1.6543612251060553e-24,5.1772079956435846e-09,38.0,63.0,0.009957786649465561,-0.0005482456181198359,-0.0003373819054104388,8.032902769627981e-06,6.024677077220986e-06,3.012338538610493e-06,-0.0005482456181198359,6.31053262623027e-05,6.024677077220986e-06,-1.3388171282713301e-06,-3.2565822039032355e-07,-5.293955920339377e-23,-0.0003373819054104388,6.024677077220986e-06,2.322893669770565e-05,-0.0,-1.9434442322108225e-07,-2.962955818475166e-07,8.032902769627981e-06,-1.3388171282713301e-06,-0.0,3.618424671003595e-08,0.0,0.0,6.024677077220986e-06,-3.2565822039032355e-07,-1.9434442322108225e-07,0.0,1.0505103453795073e-08,1.2407709188295415e-24,3.012338538610493e-06,-5.293955920339377e-23,-2.962955818475166e-07,0.0,1.2407709188295415e-24,4.778961226747924e-09,38.0,64.0,0.009807263500988483,-0.0005397705244831741,-0.00032713363179937005,7.90738886280451e-06,5.839302502863575e-06,2.8754141112585785e-06,-0.0005397705244831741,6.21242361376062e-05,5.839302502863575e-06,-1.3178980680095265e-06,-3.1563797620037803e-07,6.617444900424221e-23,-0.00032713363179937005,5.839302502863575e-06,2.2165117115946487e-05,-0.0,-1.853746738333939e-07,-2.782658725664078e-07,7.90738886280451e-06,-1.3178980680095265e-06,-0.0,3.561886785519164e-08,0.0,0.0,5.839302502863575e-06,-3.1563797620037803e-07,-1.853746738333939e-07,0.0,1.0020253071729712e-08,-2.0679515313825692e-24,2.8754141112585785e-06,6.617444900424221e-23,-2.782658725664078e-07,0.0,-2.0679515313825692e-24,4.41691883068529e-09,39.0,3.0,0.12317594140768051,-0.009146341122686863,-0.07500000298023224,0.00015634771261829883,0.001923076924867928,0.012820512987673283,-0.009146341122686863,0.001132130972109735,0.001923076924867928,-2.5353683668072335e-05,-0.00010121457307832316,3.144186300207963e-18,-0.07500000298023224,0.001923076924867928,0.20320512354373932,2.1975076608479215e-19,-0.001923076924867928,-0.07692307978868484,0.00015634771261829883,-2.5353683668072335e-05,2.1975076608479215e-19,6.672021868325828e-07,-2.9088618072962e-21,-7.913478592755694e-20,0.001923076924867928,-0.00010121457307832316,-0.001923076924867928,-2.9088618072962e-21,0.00010121457307832316,4.336808689942018e-19,0.012820512987673283,3.144186300207963e-18,-0.07692307978868484,-7.913478592755694e-20,4.336808689942018e-19,0.03846153989434242,39.0,4.0,0.10299093276262283,-0.007148217409849167,-0.048846155405044556,0.00011726078810170293,0.0011538461549207568,0.006410256493836641,-0.007148217409849167,0.0008642803877592087,0.0011538461549207568,-1.90152622963069e-05,-6.072874384699389e-05,9.75781955236954e-19,-0.048846155405044556,0.0011538461549207568,0.07743589580059052,1.09487125142379e-19,-0.0007692307699471712,-0.01923076994717121,0.00011726078810170293,-1.90152622963069e-05,1.09487125142379e-19,5.004016543352918e-07,-9.80919581291663e-22,-3.0025751506879925e-20,0.0011538461549207568,-6.072874384699389e-05,-0.0007692307699471712,-9.80919581291663e-22,4.048582923132926e-05,2.981555974335137e-19,0.006410256493836641,9.75781955236954e-19,-0.01923076994717121,-3.0025751506879925e-20,2.981555974335137e-19,0.006410256493836641,39.0,5.0,0.08853926509618759,-0.005872420035302639,-0.03439560532569885,9.380863048136234e-05,0.0007692307699471712,0.0036630036775022745,-0.005872420035302639,0.0006995215080678463,0.0007692307699471712,-1.5212210200843401e-05,-4.048582923132926e-05,4.336808689942018e-19,-0.03439560532569885,0.0007692307699471712,0.03917582333087921,2.2076159694920328e-20,-0.0003846153849735856,-0.007326007355004549,9.380863048136234e-05,-1.5212210200843401e-05,2.2076159694920328e-20,4.003213120995497e-07,-3.832815634785515e-22,-4.128314246100461e-21,0.0007692307699471712,-4.048582923132926e-05,-0.0003846153849735856,-3.832815634785515e-22,2.024291461566463e-05,-1.4907779871675686e-19,0.0036630036775022745,4.336808689942018e-19,-0.007326007355004549,-4.128314246100461e-21,-1.4907779871675686e-19,0.0018315018387511373,39.0,6.0,0.07765939831733704,-0.00498525844886899,-0.025549450889229774,7.817385630914941e-05,0.0005494505749084055,0.002289377385750413,-0.00498525844886899,0.0005877543007954955,0.0005494505749084055,-1.2676841834036168e-05,-2.891844997066073e-05,9.75781955236954e-19,-0.025549450889229774,0.0005494505749084055,0.02281135506927967,6.398824941935578e-20,-0.00021978022414259613,-0.0034340659622102976,7.817385630914941e-05,-1.2676841834036168e-05,6.398824941935578e-20,3.336010934162914e-07,-4.123896978440909e-22,-1.0591046887512073e-20,0.0005494505749084055,-2.891844997066073e-05,-0.00021978022414259613,-4.123896978440909e-22,1.1567380170163233e-05,-2.0328790734103208e-19,0.002289377385750413,9.75781955236954e-19,-0.0034340659622102976,-1.0591046887512073e-20,-2.0328790734103208e-19,0.0006868132040835917,39.0,7.0,0.06916636973619461,-0.004331948701292276,-0.01973443292081356,6.700616359012201e-05,0.00041208791662938893,0.001526251551695168,-0.004331948701292276,0.0005068877944722772,0.00041208791662938893,-1.0865864169318229e-05,-2.168883838749025e-05,6.776263578034403e-20,-0.01973443292081356,0.00041208791662938893,0.014514652080833912,-1.0950990007420548e-20,-0.00013736264372710139,-0.0018315018387511373,6.700616359012201e-05,-1.0865864169318229e-05,-1.0950990007420548e-20,2.859437984170654e-07,6.119171070169829e-22,3.5648754468986885e-24,0.00041208791662938893,-2.168883838749025e-05,-0.00013736264372710139,6.119171070169829e-22,7.229612492665183e-06,-4.573977915173222e-20,0.001526251551695168,6.776263578034403e-20,-0.0018315018387511373,3.5648754468986885e-24,-4.573977915173222e-20,0.0003052503161597997,39.0,8.0,0.06235016509890556,-0.003830519039183855,-0.015705129131674767,5.8630394050851464e-05,0.00032051283051259816,0.0010683761211112142,-0.003830519039183855,0.000445635465439409,0.00032051283051259816,-9.50763114815345e-06,-1.686909672571346e-05,4.0657581468206416e-20,-0.015705129131674767,0.00032051283051259816,0.009829060174524784,-6.908801499737553e-21,-9.157509339274839e-05,-0.0010683761211112142,5.8630394050851464e-05,-9.50763114815345e-06,-6.908801499737553e-21,2.502008271676459e-07,-8.192506040805116e-23,1.2262415398376616e-21,0.00032051283051259816,-1.686909672571346e-05,-9.157509339274839e-05,-8.192506040805116e-23,4.8197416617767885e-06,-2.286988957586611e-20,0.0010683761211112142,4.0657581468206416e-20,-0.0010683761211112142,1.2262415398376616e-21,-2.286988957586611e-20,0.00015262515807989985,39.0,9.0,0.05675794929265976,-0.0034333958756178617,-0.012797202914953232,5.211590541875921e-05,0.00025641024694778025,0.0007770007941871881,-0.0034333958756178617,0.00039761990774422884,0.00025641024694778025,-8.451227586192545e-06,-1.3495277016772889e-05,-1.3552527156068805e-20,-0.012797202914953232,0.00025641024694778025,0.006973304320126772,4.2443331932563424e-21,-6.410256173694506e-05,-0.000666000647470355,5.211590541875921e-05,-8.451227586192545e-06,4.2443331932563424e-21,2.2240072894419427e-07,-4.1307733211795396e-22,3.3416920397760452e-22,0.00025641024694778025,-1.3495277016772889e-05,-6.410256173694506e-05,-4.1307733211795396e-22,3.373819254193222e-06,-8.470329472543003e-22,0.0007770007941871881,-1.3552527156068805e-20,-0.000666000647470355,3.3416920397760452e-22,-8.470329472543003e-22,8.325008093379438e-05,39.0,10.0,0.05208681523799896,-0.003111035330221057,-0.01062937080860138,4.690431524068117e-05,0.00020979020337108523,0.0005827505956403911,-0.003111035330221057,0.0003589620755519718,0.00020979020337108523,-7.606105100421701e-06,-1.1041590369131882e-05,2.236166980751353e-19,-0.01062937080860138,0.00020979020337108523,0.005130147561430931,2.0834579366936707e-20,-4.662004721467383e-05,-0.0004370629321783781,4.690431524068117e-05,-7.606105100421701e-06,2.0834579366936707e-20,2.0016065604977484e-07,-2.526807812360368e-22,-1.841560518000545e-21,0.00020979020337108523,-1.1041590369131882e-05,-4.662004721467383e-05,-2.526807812360368e-22,2.453686647641007e-06,-2.879912020664621e-20,0.0005827505956403911,2.236166980751353e-19,-0.0004370629321783781,-1.841560518000545e-21,-2.879912020664621e-20,4.856254963669926e-05,39.0,11.0,0.04812634363770485,-0.0028441071044653654,-0.008969875983893871,4.264028757461347e-05,0.00017482518160250038,0.00044826968223787844,-0.0028441071044653654,0.00032716564601287246,0.00017482518160250038,-6.914640835020691e-06,-9.201325156027451e-06,3.3881317890172014e-21,-0.008969875983893871,0.00017482518160250038,0.003885900368914008,3.0963371636421935e-21,-3.4965036320500076e-05,-0.0002988464548252523,4.264028757461347e-05,-6.914640835020691e-06,3.0963371636421935e-21,1.81964239232002e-07,1.1491797501123128e-22,-3.446952337823454e-22,0.00017482518160250038,-9.201325156027451e-06,-3.4965036320500076e-05,1.1491797501123128e-22,1.8402649857307551e-06,8.470329472543003e-22,0.00044826968223787844,3.3881317890172014e-21,-0.0002988464548252523,-3.446952337823454e-22,8.470329472543003e-22,2.9884644391131587e-05,39.0,12.0,0.044725727289915085,-0.0026194255333393812,-0.007671175058931112,3.908692815457471e-05,0.00014792899310123175,0.00035221187863498926,-0.0026194255333393812,0.00030055062961764634,0.00014792899310123175,-6.338420917018084e-06,-7.785736670484766e-06,-1.6263032587282567e-19,-0.007671175058931112,0.00014792899310123175,0.0030149337835609913,-2.3738319359121684e-20,-2.689618122531101e-05,-0.00021132713300175965,3.908692815457471e-05,-6.338420917018084e-06,-2.3738319359121684e-20,1.668005467081457e-07,2.410028378048305e-22,1.5474759998116362e-21,0.00014792899310123175,-7.785736670484766e-06,-2.689618122531101e-05,2.410028378048305e-22,1.4155884855426848e-06,1.5670109524204556e-20,0.00035221187863498926,-1.6263032587282567e-19,-0.00021132713300175965,1.5474759998116362e-21,1.5670109524204556e-20,1.9211558537790552e-05,39.0,13.0,0.041774049401283264,-0.0024276848416775465,-0.0066356719471514225,3.608024417189881e-05,0.0001267962798010558,0.0002817695203702897,-0.0024276848416775465,0.00027794469497166574,0.0001267962798010558,-5.850849902344635e-06,-6.673488314845599e-06,-8.470329472543003e-20,-0.0066356719471514225,0.0001267962798010558,0.0023867159616202116,2.9767370656556476e-21,-2.1132713300175965e-05,-0.00015369246830232441,3.608024417189881e-05,-5.850849902344635e-06,2.9767370656556476e-21,1.539697365160464e-07,-3.618965162146451e-22,3.8003617709269776e-22,0.0001267962798010558,-6.673488314845599e-06,-2.1132713300175965e-05,-3.618965162146451e-22,1.1122481282654917e-06,1.0905549195899117e-20,0.0002817695203702897,-8.470329472543003e-20,-0.00015369246830232441,3.8003617709269776e-22,1.0905549195899117e-20,1.2807705388695467e-05,39.0,14.0,0.03918788582086563,-0.0022621280513703823,-0.005796703509986401,3.350308179506101e-05,0.00010989011207129806,0.00022893772984389216,-0.0022621280513703823,0.0002585046458989382,0.00010989011207129806,-5.4329320846591145e-06,-5.783690085081616e-06,-6.268043809681823e-20,-0.005796703509986401,0.00010989011207129806,0.0019220203394070268,-1.6459543558961316e-20,-1.6906171367736533e-05,-0.00011446886492194608,3.350308179506101e-05,-5.4329320846591145e-06,-1.6459543558961316e-20,1.429718992085327e-07,2.2984761254208535e-22,9.615827198602979e-22,0.00010989011207129806,-5.783690085081616e-06,-1.6906171367736533e-05,2.2984761254208535e-22,8.897984571376583e-07,3.494010907423989e-21,0.00022893772984389216,-6.268043809681823e-20,-0.00011446886492194608,9.615827198602979e-22,3.494010907423989e-21,8.805297511571553e-06,39.0,15.0,0.03690328821539879,-0.0021177297458052635,-0.005107466131448746,3.126954470644705e-05,9.61538462433964e-05,0.0001885369565570727,-0.0021177297458052635,0.00024160837347153574,9.61538462433964e-05,-5.070736733614467e-06,-5.060728653916158e-06,5.929230630780102e-20,-0.005107466131448746,9.61538462433964e-05,0.0015708028804510832,1.1717190283604798e-20,-1.3736264008912258e-05,-8.701705519342795e-05,3.126954470644705e-05,-5.070736733614467e-06,1.1717190283604798e-20,1.3344043736651656e-07,-1.0941125888713273e-22,-6.469652504028661e-22,9.61538462433964e-05,-5.060728653916158e-06,-1.3736264008912258e-05,-1.0941125888713273e-22,7.22961260635202e-07,-4.658681209898652e-21,0.0001885369565570727,5.929230630780102e-20,-8.701705519342795e-05,-6.469652504028661e-22,-4.658681209898652e-21,6.215504072315525e-06,39.0,16.0,0.03487040847539902,-0.0019906742963939905,-0.0045343139208853245,2.9315197025425732e-05,8.484163117827848e-05,0.00015711413288954645,-0.0019906742963939905,0.0002267869422212243,8.484163117827848e-05,-4.753815574076725e-06,-4.465348865778651e-06,4.573977915173222e-20,-0.0045343139208853245,8.484163117827848e-05,0.0013003662461414933,3.124338923743604e-21,-1.1312216884107329e-05,-6.733462942065671e-05,2.9315197025425732e-05,-4.753815574076725e-06,3.124338923743604e-21,1.2510041358382296e-07,-1.0829381532678182e-22,-4.439796264827791e-23,8.484163117827848e-05,-4.465348865778651e-06,-1.1312216884107329e-05,-1.0829381532678182e-22,5.953798449809256e-07,-4.552802091491864e-21,0.00015711413288954645,4.573977915173222e-20,-6.733462942065671e-05,-4.439796264827791e-23,-4.552802091491864e-21,4.488975264393957e-06,39.0,17.0,0.0330498106777668,-0.0018780119717121124,-0.00405255239456892,2.7590773242991418e-05,7.54147840780206e-05,0.00013230663898866624,-0.0018780119717121124,0.00021368001762311906,7.54147840780206e-05,-4.474179604585515e-06,-3.969199042330729e-06,-1.9481757786848908e-20,-0.00405255239456892,7.54147840780206e-05,0.0010887181852012873,1.2503552885271637e-21,-9.426848009752575e-06,-5.292265268508345e-05,2.7590773242991418e-05,-4.474179604585515e-06,1.2503552885271637e-21,1.1774156405408576e-07,-7.888373656116e-23,1.3348443172711387e-23,7.54147840780206e-05,-3.969199042330729e-06,-9.426848009752575e-06,-7.888373656116e-23,4.961498802913411e-07,2.1705219273391446e-21,0.00013230663898866624,-1.9481757786848908e-20,-5.292265268508345e-05,1.3348443172711387e-23,2.1705219273391446e-21,3.3076657928177156e-06,39.0,18.0,0.031409889459609985,-0.0017774266889318824,-0.003643724601715803,2.6057952709379606e-05,6.747638690285385e-05,0.00011246064241277054,-0.0017774266889318824,0.00020200619474053383,6.747638690285385e-05,-4.225613793096272e-06,-3.5513885450200178e-06,5.421010862427522e-20,-0.003643724601715803,6.747638690285385e-05,0.0009206887916661799,2.2160262314349377e-20,-7.938398084661458e-06,-4.217273817630485e-05,2.6057952709379606e-05,-4.225613793096272e-06,2.2160262314349377e-20,1.1120036447209714e-07,-2.44961379692553e-22,-9.533333300062504e-22,6.747638690285385e-05,-3.5513885450200178e-06,-7.938398084661458e-06,-2.44961379692553e-22,4.178104120455828e-07,-1.376428539288238e-21,0.00011246064241277054,5.421010862427522e-20,-4.217273817630485e-05,-9.533333300062504e-22,-1.376428539288238e-21,2.4807493446132867e-06,39.0,19.0,0.029925024136900902,-0.001687074196524918,-0.0032938113436102867,2.4686481992830522e-05,6.072874384699389e-05,9.639483323553577e-05,-0.001687074196524918,0.00019154252368025482,6.072874384699389e-05,-4.003213234682335e-06,-3.196249735992751e-06,-2.286988957586611e-20,-0.0032938113436102867,6.072874384699389e-05,0.000785580079536885,-6.1887258323291535e-21,-6.747638508386444e-06,-3.402170477784239e-05,2.4686481992830522e-05,-4.003213234682335e-06,-6.1887258323291535e-21,1.0534771632819684e-07,1.0904251374559622e-22,2.235097904335694e-22,6.072874384699389e-05,-3.196249735992751e-06,-6.747638508386444e-06,1.0904251374559622e-22,3.5513886587068555e-07,1.2176098616780567e-21,9.639483323553577e-05,-2.286988957586611e-20,-3.402170477784239e-05,2.235097904335694e-22,1.2176098616780567e-21,1.8900947225120035e-06,39.0,20.0,0.028574209660291672,-0.0016054677544161677,-0.0029920078814029694,2.3452157620340586e-05,5.494505603564903e-05,8.325008093379438e-05,-0.0016054677544161677,0.00018210998678114265,5.494505603564903e-05,-3.8030525502108503e-06,-2.891845042540808e-06,5.082197683525802e-21,-0.0029920078814029694,5.494505603564903e-05,0.0006756985676474869,4.005452883535761e-21,-5.783690085081616e-06,-2.775002758426126e-05,2.3452157620340586e-05,-3.8030525502108503e-06,4.005452883535761e-21,1.0008032802488742e-07,-5.912596419431799e-23,-1.411419455548613e-22,5.494505603564903e-05,-2.891845042540808e-06,-5.783690085081616e-06,-5.912596419431799e-23,3.0440475029536174e-07,4.235164736271502e-22,8.325008093379438e-05,5.082197683525802e-21,-2.775002758426126e-05,-1.411419455548613e-22,4.235164736271502e-22,1.4605277556256624e-06,39.0,21.0,0.027340080589056015,-0.001531395479105413,-0.0027298787608742714,2.2335389076033607e-05,4.995004928787239e-05,7.23913763067685e-05,-0.001531395479105413,0.00017356326861772686,4.995004928787239e-05,-3.6219548746885266e-06,-2.6289499146514572e-06,2.1175823681357508e-20,-0.0027298787608742714,4.995004928787239e-05,0.0005854138289578259,2.795240593395407e-21,-4.995004928787239e-06,-2.2860434910398908e-05,2.2335389076033607e-05,-3.6219548746885266e-06,2.795240593395407e-21,9.531460420930671e-08,-8.274302081434396e-23,-4.557373458396086e-23,4.995004928787239e-05,-2.6289499146514572e-06,-4.995004928787239e-06,-8.274302081434396e-23,2.6289498578080384e-07,-1.7734752333136913e-21,7.23913763067685e-05,2.1175823681357508e-20,-2.2860434910398908e-05,-4.557373458396086e-23,-1.7734752333136913e-21,1.1430217909946805e-06,39.0,22.0,0.026208141818642616,-0.001463859574869275,-0.0025007601361721754,2.1320143787306733e-05,4.56065681646578e-05,6.334245699690655e-05,-0.001463859574869275,0.0001657831307966262,4.56065681646578e-05,-3.4573204175103456e-06,-2.4003456928767264e-06,-1.7364175418713157e-20,-0.0025007601361721754,4.56065681646578e-05,0.0005105402087792754,-5.513777249615623e-22,-4.34348248745664e-06,-1.9002736735274084e-05,2.1320143787306733e-05,-3.4573204175103456e-06,-5.513777249615623e-22,9.0982119616001e-08,2.269738048861397e-23,1.4113199644112465e-23,4.56065681646578e-05,-2.4003456928767264e-06,-4.34348248745664e-06,2.269738048861397e-23,2.2860434967242327e-07,1.3499587596865412e-21,6.334245699690655e-05,-1.7364175418713157e-20,-1.9002736735274084e-05,1.4113199644112465e-23,1.3499587596865412e-21,9.048922038346063e-07,39.0,23.0,0.025166204199194908,-0.0014020311646163464,-0.0022993311285972595,2.0393181330291554e-05,4.180601899861358e-05,5.574135866481811e-05,-0.0014020311646163464,0.00015867083857301623,4.180601899861358e-05,-3.307002316432772e-06,-2.200316885136999e-06,-7.922037973391057e-21,-0.0022993311285972595,4.180601899861358e-05,0.00044792162952944636,-3.99271074781075e-21,-3.8005473470548168e-06,-1.5926103515084833e-05,2.0393181330291554e-05,-3.307002316432772e-06,-3.99271074781075e-21,8.702637188662266e-08,2.681088937509565e-38,1.7667417185751165e-22,4.180601899861358e-05,-2.200316885136999e-06,-3.8005473470548168e-06,2.681088937509565e-38,2.000288077397272e-07,1.098563152771967e-22,5.574135866481811e-05,-7.922037973391057e-21,-1.5926103515084833e-05,1.7667417185751165e-22,1.098563152771967e-22,7.239137858050526e-07,39.0,24.0,0.024203944951295853,-0.0013452157145366073,-0.002121301833540201,1.9543464077287354e-05,3.84615377697628e-05,4.930966315441765e-05,-0.0013452157145366073,0.0001521438971394673,3.84615377697628e-05,-3.169210458509042e-06,-2.024291461566463e-06,-1.2930803182713605e-20,-0.002121301833540201,3.84615377697628e-05,0.00039514777017757297,-7.9119534785013e-21,-3.344481683598133e-06,-1.3448090612655506e-05,1.9543464077287354e-05,-3.169210458509042e-06,-7.9119534785013e-21,8.340027335407285e-08,7.279189390466644e-23,2.3351542447635406e-22,3.84615377697628e-05,-2.024291461566463e-06,-3.344481683598133e-06,7.279189390466644e-23,1.760253525162625e-07,2.3253842340068146e-22,4.930966315441765e-05,-1.2930803182713605e-20,-1.3448090612655506e-05,2.3351542447635406e-22,2.3253842340068146e-22,5.846995918545872e-07,39.0,25.0,0.023312561213970184,-0.001292827189899981,-0.001963182119652629,1.876172609627247e-05,3.550295878085308e-05,4.383081250125542e-05,-0.001292827189899981,0.0001461328793084249,3.550295878085308e-05,-3.0424421311181504e-06,-1.8685767599890823e-06,-6.199788969125267e-21,-0.001963182119652629,3.550295878085308e-05,0.0003503558982629329,-5.0088960718803925e-21,-2.958579898404423e-06,-1.1434125553932972e-05,1.876172609627247e-05,-3.0424421311181504e-06,-5.0088960718803925e-21,8.006426810425182e-08,8.602678370551488e-23,1.3811791984989983e-22,3.550295878085308e-05,-1.8685767599890823e-06,-2.958579898404423e-06,8.602678370551488e-23,1.557147299990902e-07,7.927566790242277e-23,4.383081250125542e-05,-6.199788969125267e-21,-1.1434125553932972e-05,1.3811791984989983e-22,7.927566790242277e-23,4.7642188860663737e-07,39.0,26.0,0.02248449996113777,-0.0012443674495443702,-0.001822109567001462,1.8040122085949406e-05,3.287311119493097e-05,3.913465479854494e-05,-0.0012443674495443702,0.00014057893713470548,3.287311119493097e-05,-2.9254249511723174e-06,-1.7301637171840412e-06,-5.524019567173523e-21,-0.001822109567001462,3.287311119493097e-05,0.0003120910550933331,-4.5574323642176006e-21,-2.6298487227904843e-06,-9.783663699636236e-06,1.8040122085949406e-05,-2.9254249511723174e-06,-4.5574323642176006e-21,7.69848682580232e-08,7.279189390466644e-23,1.230049857365481e-22,3.287311119493097e-05,-1.7301637171840412e-06,-2.6298487227904843e-06,7.279189390466644e-23,1.3841309964846005e-07,6.798641832732419e-23,3.913465479854494e-05,-5.524019567173523e-21,-9.783663699636236e-06,1.230049857365481e-22,6.798641832732419e-23,3.9134653206929215e-07,39.0,27.0,0.021713245660066605,-0.0011994102969765663,-0.001695718034170568,1.737196907924954e-05,3.052503234357573e-05,3.508624286041595e-05,-0.0011994102969765663,0.0001354318083031103,3.052503234357573e-05,-2.8170759378554067e-06,-1.6065805539255962e-06,-4.9430879572587604e-21,-0.001695718034170568,3.052503234357573e-05,0.00027920553111471236,-4.23697055879041e-21,-2.3480793061025906e-06,-8.420697668043431e-06,1.737196907924954e-05,-2.8170759378554067e-06,-4.23697055879041e-21,7.4133581051683e-08,6.617444900424221e-23,1.1002085272936407e-22,3.052503234357573e-05,-1.6065805539255962e-06,-2.3480793061025906e-06,6.617444900424221e-23,1.2358312062588084e-07,5.863813892141656e-23,3.508624286041595e-05,-4.9430879572587604e-21,-8.420697668043431e-06,1.1002085272936407e-22,5.863813892141656e-23,3.23872995977581e-07,39.0,28.0,0.020993147045373917,-0.0011575892567634583,-0.0015820387052372098,1.6751540897530504e-05,2.8419855880201794e-05,3.157761602778919e-05,-0.0011575892567634583,0.0001306483754888177,2.8419855880201794e-05,-2.7164660423295572e-06,-1.4957819303162978e-06,-4.4409097577727284e-21,-0.0015820387052372098,2.8419855880201794e-05,0.00025078566977754235,-2.7735652705619284e-21,-2.1051744170108577e-06,-7.287142580025829e-06,1.6751540897530504e-05,-2.7164660423295572e-06,-2.7735652705619284e-21,7.148594960426635e-08,1.8612884179643887e-38,9.880319385913611e-23,2.8419855880201794e-05,-1.4957819303162978e-06,-2.1051744170108577e-06,1.8612884179643887e-38,1.1079865913643516e-07,5.084358733265775e-23,3.157761602778919e-05,-4.4409097577727284e-21,-7.287142580025829e-06,9.880319385913611e-23,5.084358733265775e-23,2.69894172788554e-07,39.0,29.0,0.020319275557994843,-0.0011185870971530676,-0.0014794216258451343,1.617390262254048e-05,2.6525198336457834e-05,2.8521719286800362e-05,-0.0011185870971530676,0.00012619140034075826,2.6525198336457834e-05,-2.622794909257209e-06,-1.3960631122245104e-06,5.654628477838805e-21,-0.0014794216258451343,2.6525198336457834e-05,0.00022609801089856774,7.10501536494238e-21,-1.8946570889966097e-06,-6.338159892038675e-06,1.617390262254048e-05,-2.622794909257209e-06,7.10501536494238e-21,6.90209205345127e-08,-1.0918784085699965e-22,-1.7812260883191881e-22,2.6525198336457834e-05,-1.3960631122245104e-06,-1.8946570889966097e-06,-1.0918784085699965e-22,9.971878967007797e-08,7.957363644354285e-23,2.8521719286800362e-05,5.654628477838805e-21,-6.338159892038675e-06,-1.7812260883191881e-22,7.957363644354285e-23,2.2636285734733974e-07,39.0,30.0,0.019687321037054062,-0.0010821279138326645,-0.0013864764478057623,1.5634772353223525e-05,2.4813894924591295e-05,2.584780850156676e-05,-0.0010821279138326645,0.0001220285557792522,2.4813894924591295e-05,-2.5353683668072335e-06,-1.3059944876658847e-06,-3.6236112878209385e-21,-0.0013864764478057623,2.4813894924591295e-05,0.00020454911282286048,-2.4421219154888863e-21,-1.7113031844928628e-06,-5.53881591258687e-06,1.5634772353223525e-05,-2.5353683668072335e-06,-2.4421219154888863e-21,6.672021868325828e-08,6.617444900424222e-24,8.056009753919086e-23,2.4813894924591295e-05,-1.3059944876658847e-06,-1.7113031844928628e-06,6.617444900424222e-24,9.006858903148895e-08,3.878122251600637e-23,2.584780850156676e-05,-3.6236112878209385e-21,-5.53881591258687e-06,8.056009753919086e-23,3.878122251600637e-23,1.9099365999863949e-07,39.0,31.0,0.01909348927438259,-0.0010479709599167109,-0.001302024582400918,1.513042388978647e-05,2.3263028197106905e-05,2.3498007067246363e-05,-0.0010479709599167109,0.00011813164746854454,2.3263028197106905e-05,-2.4535822831239784e-06,-1.2243698392921942e-06,-2.4352197233561135e-21,-0.001302024582400918,2.3263028197106905e-05,0.00018565532809589058,-2.397978420435971e-21,-1.550868432786956e-06,-4.861656634602696e-06,1.513042388978647e-05,-2.4535822831239784e-06,-2.397978420435971e-21,6.456795631493151e-08,3.487857773430603e-24,7.602946741211485e-23,2.3263028197106905e-05,-1.2243698392921942e-06,-1.550868432786956e-06,3.487857773430603e-24,8.162465547911779e-08,-3.3087224502121107e-23,2.3498007067246363e-05,-2.4352197233561135e-21,-4.861656634602696e-06,7.602946741211485e-23,-3.3087224502121107e-23,1.6205522967993602e-07,39.0,32.0,0.018534431234002113,-0.001015904825180769,-0.0012250617146492004,1.4657598512712866e-05,2.1853147700312547e-05,2.142465382348746e-05,-0.001015904825180769,0.00011447597353253514,2.1853147700312547e-05,-2.3769077870383626e-06,-1.1501656445034314e-06,3.917527381051139e-21,-0.0012250617146492004,2.1853147700312547e-05,0.0001690197823336348,5.4011024668527034e-21,-1.409880496794358e-06,-4.284930582798552e-06,1.4657598512712866e-05,-2.3769077870383626e-06,5.4011024668527034e-21,6.255020679191148e-08,-6.821441175070754e-23,-1.3196378242544277e-22,2.1853147700312547e-05,-1.1501656445034314e-06,-1.409880496794358e-06,-6.821441175070754e-23,7.420423031589962e-08,6.617444900424221e-23,2.142465382348746e-05,3.917527381051139e-21,-4.284930582798552e-06,-1.3196378242544277e-22,6.617444900424221e-23,1.382235694791234e-07,39.0,33.0,0.018007179722189903,-0.000985743128694594,-0.0011547276517376304,1.4213428585208021e-05,2.056766788882669e-05,1.9588254872360267e-05,-0.000985743128694594,0.00011103980796178803,2.056766788882669e-05,-2.3048803541314555e-06,-1.0825087883858941e-06,-2.2234614865425384e-21,-0.0011547276517376304,2.056766788882669e-05,0.0001543147664051503,-1.8672487573262214e-21,-1.2854792430516682e-06,-3.7912750485702418e-06,1.4213428585208021e-05,-2.3048803541314555e-06,-1.8672487573262214e-21,6.065474877914312e-08,-9.88980322948836e-25,5.911030057218392e-23,2.056766788882669e-05,-1.0825087883858941e-06,-1.2854792430516682e-06,-9.88980322948836e-25,6.765679927411838e-08,0.0,1.9588254872360267e-05,-2.2234614865425384e-21,-3.7912750485702418e-06,5.911030057218392e-23,0.0,1.1847734526782006e-07,39.0,34.0,0.0175090953707695,-0.0009573210263624787,-0.0010902822250500321,1.3795386621495709e-05,1.939237154147122e-05,1.795590105757583e-05,-0.0009573210263624787,0.000107803956780117,1.939237154147122e-05,-2.2370898022927577e-06,-1.0206512115473743e-06,-2.752857078576476e-21,-0.0010902822250500321,1.939237154147122e-05,0.0001412680430803448,-3.0608413006718303e-21,-1.1752953241739306e-06,-3.3667313346086303e-06,1.3795386621495709e-05,-2.2370898022927577e-06,-3.0608413006718303e-21,5.887078202704288e-08,6.186095757449372e-23,5.805739214476733e-23,1.939237154147122e-05,-1.0206512115473743e-06,-1.1752953241739306e-06,6.186095757449372e-23,6.185764789279347e-08,2.9778502051908996e-23,1.795590105757583e-05,-2.752857078576476e-21,-3.3667313346086303e-06,5.805739214476733e-23,2.9778502051908996e-23,1.0202216316201884e-07,39.0,35.0,0.017037823796272278,-0.0009304923005402088,-0.0010310860816389322,1.3401232536125463e-05,1.8315018678549677e-05,1.6500016499776393e-05,-0.0009304923005402088,0.00010475137969478965,1.8315018678549677e-05,-2.173173015762586e-06,-9.639483096179902e-07,-1.852884572118782e-21,-0.0010310860816389322,1.8315018678549677e-05,0.00012965219502802938,-2.7000340435951143e-21,-1.0773539997899206e-06,-3.0000030619703466e-06,1.3401232536125463e-05,-2.173173015762586e-06,-2.7000340435951143e-21,5.718876039395582e-08,4.890590198027614e-23,5.08951630586411e-23,1.8315018678549677e-05,-9.639483096179902e-07,-1.0773539997899206e-06,4.890590198027614e-23,5.670284153325156e-08,-3.308722450212111e-24,1.6500016499776393e-05,-1.852884572118782e-21,-3.0000030619703466e-06,5.08951630586411e-23,-3.308722450212111e-24,8.823538166780054e-08,39.0,36.0,0.016591256484389305,-0.0009051265078596771,-0.0009765839204192162,1.3028976354689803e-05,1.7325017324765213e-05,1.5197383618215099e-05,-0.0009051265078596771,0.00010186694998992607,1.7325017324765213e-05,-2.112806896548136e-06,-9.118430170929059e-07,-2.2234614865425384e-21,-0.0009765839204192162,1.7325017324765213e-05,0.00011927622108487412,-2.435285962428603e-21,-9.900010127239511e-07,-2.6818911464943085e-06,1.3028976354689803e-05,-2.112806896548136e-06,-2.435285962428603e-21,5.560018223604857e-08,4.337410007939156e-23,4.813925224270253e-23,1.7325017324765213e-05,-9.118430170929059e-07,-9.900010127239511e-07,4.337410007939156e-23,5.2105313841366296e-08,2.6469779601696886e-23,1.5197383618215099e-05,-2.2234614865425384e-21,-2.6818911464943085e-06,4.813925224270253e-23,2.6469779601696886e-23,7.662546153142102e-08,39.0,37.0,0.016167500987648964,-0.0008811072329990566,-0.0009262922103516757,1.2676841834036168e-05,1.6413174307672307e-05,1.4028353689354844e-05,-0.0008811072329990566,9.913713438436389e-05,1.6413174307672307e-05,-2.0557040443236474e-06,-8.63851255417103e-07,-2.0117032497289633e-21,-0.0009262922103516757,1.6413174307672307e-05,0.00010997895878972486,-2.2959805481699687e-21,-9.118430170929059e-07,-2.4048606519500026e-06,1.2676841834036168e-05,-2.0557040443236474e-06,-2.2959805481699687e-21,5.4097476720471604e-08,3.8888466578349356e-23,4.1933375009193835e-23,1.6413174307672307e-05,-8.63851255417103e-07,-9.118430170929059e-07,3.8888466578349356e-23,4.799173680680724e-08,1.9852334701272664e-23,1.4028353689354844e-05,-2.0117032497289633e-21,-2.4048606519500026e-06,4.1933375009193835e-23,1.9852334701272664e-23,6.680168951334053e-08,39.0,38.0,0.01576485112309456,-0.0008583299932070076,-0.0008797882474027574,1.2343240996415261e-05,1.5571473340969533e-05,1.2976227480976377e-05,-0.0008583299932070076,9.654983296059072e-05,1.5571473340969533e-05,-2.0016066173411673e-06,-8.195511895792151e-07,2.5940384009662948e-21,-0.0008797882474027574,1.5571473340969533e-05,0.00010162373655475676,3.631310368307504e-21,-8.417012509198685e-07,-2.1627045043715043e-06,1.2343240996415261e-05,-2.0016066173411673e-06,3.631310368307504e-21,5.267385816409842e-08,-3.6693868161798985e-23,-7.893405957602586e-23,1.5571473340969533e-05,-8.195511895792151e-07,-8.417012509198685e-07,-3.6693868161798985e-23,4.4300065837887814e-08,2.6469779601696886e-23,1.2976227480976377e-05,2.5940384009662948e-21,-2.1627045043715043e-06,-7.893405957602586e-23,2.6469779601696886e-23,5.845147654781613e-08,39.0,39.0,0.0153817692771554,-0.000836700841318816,-0.000836700841318816,1.2026747754134703e-05,1.4792899492022116e-05,1.2026747754134703e-05,-0.000836700841318816,9.409416088601574e-05,1.4792899492022116e-05,-1.95028337657277e-06,-7.785736784171604e-07,-1.7999450129153882e-21,-0.000836700841318816,1.4792899492022116e-05,9.409416088601574e-05,-1.3570889515535846e-21,-7.785736784171604e-07,-1.95028337657277e-06,1.2026747754134703e-05,-1.95028337657277e-06,-1.3570889515535846e-21,5.1323247873824585e-08,-5.314501487071496e-24,3.8054460741244356e-23,1.4792899492022116e-05,-7.785736784171604e-07,-7.785736784171604e-07,-5.314501487071496e-24,4.097756090004623e-08,1.9852334701272664e-23,1.2026747754134703e-05,-1.7999450129153882e-21,-1.95028337657277e-06,3.8054460741244356e-23,1.9852334701272664e-23,5.1323247873824585e-08,39.0,40.0,0.015016863122582436,-0.0008161350851878524,-0.0007967032724991441,1.1726078810170293e-05,1.4071294572204351e-05,1.1167694538016804e-05,-0.0008161350851878524,9.176031744573265e-05,1.4071294572204351e-05,-1.9015262751054252e-06,-7.405944302263379e-07,-1.852884572118782e-21,-0.0007967032724991441,1.4071294572204351e-05,8.729067485546693e-05,-1.2233490330228186e-21,-7.216048629743455e-07,-1.7633201423450373e-06,1.1726078810170293e-05,-1.9015262751054252e-06,-1.2233490330228186e-21,5.004016401244371e-08,-3.1218440627784213e-24,3.21569555464738e-23,1.4071294572204351e-05,-7.405944302263379e-07,-7.216048629743455e-07,-3.1218440627784213e-24,3.797920200554472e-08,3.143286327701505e-23,1.1167694538016804e-05,-1.852884572118782e-21,-1.7633201423450373e-06,3.21569555464738e-23,3.143286327701505e-23,4.521333707430131e-08,39.0,41.0,0.014668869785964489,-0.0007965561817400157,-0.0007595070637762547,1.1440077287261374e-05,1.3401232536125463e-05,1.0388552254880778e-05,-0.0007965561817400157,8.953946962719783e-05,1.3401232536125463e-05,-1.8551476159700542e-06,-7.053280342006474e-07,-1.852884572118782e-21,-0.0007595070637762547,1.3401232536125463e-05,8.11278005130589e-05,-1.2797953250745222e-21,-6.700616381749569e-07,-1.5982388958946103e-06,1.1440077287261374e-05,-1.8551476159700542e-06,-1.2797953250745222e-21,4.881967541336962e-08,6.440903844900161e-25,3.1829748664762605e-23,1.3401232536125463e-05,-7.053280342006474e-07,-6.700616381749569e-07,6.440903844900161e-25,3.526640313111784e-08,3.143286327701505e-23,1.0388552254880778e-05,-1.852884572118782e-21,-1.5982388958946103e-06,3.1829748664762605e-23,3.143286327701505e-23,3.9955970976279787e-08,39.0,42.0,0.01433663908392191,-0.0007778948056511581,-0.0007248565671034157,1.1167694538016804e-05,1.2777919437212404e-05,9.68024232861353e-06,-0.0007778948056511581,8.742358477320522e-05,1.2777919437212404e-05,-1.8109774373442633e-06,-6.72522105560347e-07,-1.5881867761018131e-21,-0.0007248565671034157,1.2777919437212404e-05,7.553186151199043e-05,-1.2589715176348007e-21,-6.233131557564775e-07,-1.4520363720293972e-06,1.1167694538016804e-05,-1.8109774373442633e-06,-1.2589715176348007e-21,4.7657302104653354e-08,-1.1910918116775694e-24,3.08201108357192e-23,1.2777919437212404e-05,-6.72522105560347e-07,-6.233131557564775e-07,-1.1910918116775694e-24,3.280595706200984e-08,2.150669592637872e-23,9.68024232861353e-06,-1.5881867761018131e-21,-1.4520363720293972e-06,3.08201108357192e-23,2.150669592637872e-23,3.5415521182358134e-08,39.0,43.0,0.014019123278558254,-0.0007600879180245101,-0.0006925245397724211,1.0907980140473228e-05,1.219710520672379e-05,9.034893082571216e-06,-0.0007600879180245101,8.540540875401348e-05,1.219710520672379e-05,-1.7688616935629398e-06,-6.419529086088005e-07,1.6675961149069038e-21,-0.0006925245397724211,1.219710520672379e-05,7.043910591164604e-05,3.084940811999715e-21,-5.808145147057076e-07,-1.3221794006312848e-06,1.0907980140473228e-05,-1.7688616935629398e-06,3.084940811999715e-21,4.654899043998739e-08,-4.36352414380123e-23,-5.377007196441045e-23,1.219710520672379e-05,-6.419529086088005e-07,-5.808145147057076e-07,-4.36352414380123e-23,3.056918629340544e-08,1.9852334701272664e-23,9.034893082571216e-06,1.6675961149069038e-21,-1.3221794006312848e-06,-5.377007196441045e-23,1.9852334701272664e-23,3.1480460904731444e-08,39.0,44.0,0.013715367764234543,-0.0007430780678987503,-0.0006623087101615965,1.0660071893653367e-05,1.1655011803668458e-05,8.445660569122992e-06,-0.0007430780678987503,8.34783204481937e-05,1.1655011803668458e-05,-1.7286602087551728e-06,-6.134216619102517e-07,-1.0058516248644817e-21,-0.0006623087101615965,1.1655011803668458e-05,6.579422188224271e-05,-1.1000417684091643e-21,-5.420935735855892e-07,-1.2065229384461418e-06,1.0660071893653367e-05,-1.7286602087551728e-06,-1.1000417684091643e-21,4.54910598080005e-08,2.4460494078113793e-24,2.5135457668117184e-23,1.1655011803668458e-05,-6.134216619102517e-07,-5.420935735855892e-07,2.4460494078113793e-24,2.8531239593121427e-08,0.0,8.445660569122992e-06,-1.0058516248644817e-21,-1.2065229384461418e-06,2.5135457668117184e-23,0.0,2.805867360677894e-08,39.0,45.0,0.013424495235085487,-0.0007268129265867174,-0.0006340283434838057,1.0423181265650783e-05,1.1148272278660443e-05,7.906575774541125e-06,-0.0007268129265867174,8.163628081092611e-05,1.1148272278660443e-05,-1.6902455399758765e-06,-5.867511845281115e-07,1.7470054537119944e-21,-0.0006340283434838057,1.1148272278660443e-05,6.154901348054409e-05,2.8086824802977856e-21,-5.067396386948531e-07,-1.1032431075364002e-06,1.0423181265650783e-05,-1.6902455399758765e-06,2.8086824802977856e-21,4.4480145788838854e-08,-3.470471121307351e-23,-4.8690224253345093e-23,1.1148272278660443e-05,-5.867511845281115e-07,-5.067396386948531e-07,-3.470471121307351e-23,2.6670507580206504e-08,4.963083675318166e-24,7.906575774541125e-06,1.7470054537119944e-21,-1.1032431075364002e-06,-4.8690224253345093e-23,4.963083675318166e-24,2.507370844284651e-08,39.0,46.0,0.013145704753696918,-0.0007112447055988014,-0.0006075215060263872,1.0196590665145777e-05,1.0673877113731578e-05,7.41241501600598e-06,-0.0007112447055988014,7.9873796494212e-05,1.0673877113731578e-05,-1.653501158216386e-06,-5.617829970105959e-07,-7.940933880509066e-22,-0.0006075215060263872,1.0673877113731578e-05,5.766140020568855e-05,-9.670262387595574e-22,-4.7439456807296665e-07,-1.0107838761541643e-06,1.0196590665145777e-05,-1.653501158216386e-06,-9.670262387595574e-22,4.351318594331133e-08,-1.9702043682623125e-24,2.191470898605532e-23,1.0673877113731578e-05,-5.617829970105959e-07,-4.7439456807296665e-07,-1.9702043682623125e-24,2.4968134226810434e-08,-8.271806125530277e-25,7.41241501600598e-06,-7.940933880509066e-22,-1.0107838761541643e-06,2.191470898605532e-23,-8.271806125530277e-25,2.2461863480316424e-08,39.0,47.0,0.012878256849944592,-0.0006963295163586736,-0.000582643027883023,9.979641617974266e-06,1.0229132385575213e-05,6.9585935307259206e-06,-0.0006963295163586736,7.81858034315519e-05,1.0229132385575213e-05,-1.6183201978492434e-06,-5.383753887144849e-07,-2.2234614865425384e-21,-0.000582643027883023,1.0229132385575213e-05,5.409449295257218e-05,-4.751538696006265e-21,-4.4474489868662204e-07,-9.278124935008236e-07,9.979641617974266e-06,-1.6183201978492434e-06,-4.751538696006265e-21,4.258737362761167e-08,2.913922495153599e-23,8.232414198455884e-23,1.0229132385575213e-05,-5.383753887144849e-07,-4.4474489868662204e-07,2.913922495153599e-23,2.3407626059679387e-08,-3.88774887899923e-23,6.9585935307259206e-06,-2.2234614865425384e-21,-9.278124935008236e-07,8.232414198455884e-23,-3.88774887899923e-23,2.016983735586564e-08,39.0,48.0,0.012621475383639336,-0.0006820270209573209,-0.0005592621746473014,9.771732038643677e-06,9.811617019295227e-06,6.541078164445935e-06,-0.0006820270209573209,7.656769594177604e-05,9.811617019295227e-06,-1.584605229254521e-06,-5.164009166946926e-07,-2.2499312661442353e-21,-0.0005592621746473014,9.811617019295227e-06,5.081588460598141e-05,-2.2292778021729436e-21,-4.1751562207537063e-07,-8.531840762771026e-07,9.771732038643677e-06,-1.584605229254521e-06,-2.2292778021729436e-21,4.1700136677036426e-08,2.1625009284943767e-23,3.2052257927132865e-23,9.811617019295227e-06,-5.164009166946926e-07,-4.1751562207537063e-07,2.1625009284943767e-23,2.197450577057225e-08,3.3914405114674135e-23,6.541078164445935e-06,-2.2499312661442353e-21,-8.531840762771026e-07,3.2052257927132865e-23,3.3914405114674135e-23,1.815285344264339e-08,39.0,49.0,0.01237473264336586,-0.0006683003157377243,-0.0005372610758058727,9.57230895437533e-06,9.419151865586173e-06,6.1563087001559325e-06,-0.0006683003157377243,7.501520303776488e-05,9.419151865586173e-06,-1.552266326143581e-06,-4.957448709319578e-07,-7.411538288475128e-22,-0.0005372610758058727,9.419151865586173e-06,4.779702430823818e-05,-1.385676563939423e-21,-3.924646705399937e-07,-7.859117658881587e-07,9.57230895437533e-06,-1.552266326143581e-06,-1.385676563939423e-21,4.0849116089702875e-08,2.6267137012363712e-23,1.8234759637898875e-23,9.419151865586173e-06,-4.957448709319578e-07,-3.924646705399937e-07,2.6267137012363712e-23,2.0656035104593684e-08,8.271806125530277e-25,6.1563087001559325e-06,-7.411538288475128e-22,-7.859117658881587e-07,1.8234759637898875e-23,8.271806125530277e-25,1.6373160605098747e-08,39.0,50.0,0.012137453071773052,-0.0006551153492182493,-0.000516533269546926,9.380863048136234e-06,9.049773325386923e-06,5.8011369219457265e-06,-0.0006551153492182493,7.352442480623722e-05,9.049773325386923e-06,-1.5212210655590752e-06,-4.7630388166908233e-07,-9.793818452627848e-22,-0.000516533269546926,9.049773325386923e-06,4.50126790383365e-05,-1.3078595882031752e-21,-3.6937851177754055e-07,-7.251421152432158e-07,9.380863048136234e-06,-1.5212210655590752e-06,-1.3078595882031752e-21,4.003213405212591e-08,2.3194064669481032e-23,1.7697395477871374e-23,9.049773325386923e-06,-4.7630388166908233e-07,-3.6937851177754055e-07,2.3194064669481032e-23,1.9440975052020804e-08,1.1580528575742387e-23,5.8011369219457265e-06,-9.793818452627848e-22,-7.251421152432158e-07,1.7697395477871374e-23,1.1580528575742387e-23,1.479881905908087e-08,39.0,51.0,0.011909101158380508,-0.0006424405728466809,-0.0004969823057763278,9.196924111165572e-06,8.701705155544914e-06,5.472770681080874e-06,-0.0006424405728466809,7.209175237221643e-05,8.701705155544914e-06,-1.4913931636328925e-06,-4.5798449832545884e-07,6.617444900424221e-22,-0.0004969823057763278,8.701705155544914e-06,4.244051160640083e-05,2.508060438284482e-22,-3.4806822668542736e-07,-6.701351935589628e-07,9.196924111165572e-06,-1.4913931636328925e-06,2.508060438284482e-22,3.924719038650437e-08,3.546046125951968e-24,-4.1300324585160968e-25,8.701705155544914e-06,-4.5798449832545884e-07,-3.4806822668542736e-07,3.546046125951968e-24,1.8319379790909807e-08,-1.9852334701272664e-23,5.472770681080874e-06,6.617444900424221e-22,-6.701351935589628e-07,-4.1300324585160968e-25,-1.9852334701272664e-23,1.3402703835652119e-08,39.0,52.0,0.011689183302223682,-0.0006302469410002232,-0.0004785208438988775,9.020061042974703e-06,8.373339369427413e-06,5.168727966520237e-06,-0.0006302469410002232,7.07138460711576e-05,8.373339369427413e-06,-1.4627124755861587e-06,-4.4070208105040365e-07,-4.764560328305439e-22,-0.0004785208438988775,8.373339369427413e-06,4.0060680476017296e-05,-1.1798892342501274e-21,-3.2836624086485244e-07,-6.202473628036387e-07,9.020061042974703e-06,-1.4627124755861587e-06,-1.1798892342501274e-21,3.84924341290116e-08,1.9825784798646546e-23,1.5749006860727722e-23,8.373339369427413e-06,-4.4070208105040365e-07,-3.2836624086485244e-07,1.9825784798646546e-23,1.728243326226675e-08,-4.963083675318166e-24,5.168727966520237e-06,-4.764560328305439e-22,-6.202473628036387e-07,1.5749006860727722e-23,-4.963083675318166e-24,1.2161712525937673e-08,39.0,53.0,0.011477239429950714,-0.000618507619947195,-0.00046106934314593673,8.849870937410742e-06,8.06321531854337e-06,4.886797341896454e-06,-0.000618507619947195,6.938762817298993e-05,8.06321531854337e-06,-1.4351141999213723e-06,-4.2437977754161693e-07,1.0852609636695723e-21,-0.00046106934314593673,8.06321531854337e-06,3.78555414499715e-05,2.4632281477544514e-21,-3.1012368140181934e-07,-5.749173510594119e-07,8.849870937410742e-06,-1.4351141999213723e-06,2.4632281477544514e-21,3.776616352979545e-08,-4.8187142410536687e-23,-2.9762933093083554e-23,8.06321531854337e-06,-4.2437977754161693e-07,-3.1012368140181934e-07,-4.8187142410536687e-23,1.63222981797162e-08,2.481541837659083e-24,4.886797341896454e-06,1.0852609636695723e-21,-5.749173510594119e-07,-2.9762933093083554e-23,2.481541837659083e-24,1.105610270002444e-08,39.0,54.0,0.011272844858467579,-0.0006071976968087256,-0.0004445554513949901,8.68598453962477e-06,7.770007869112305e-06,4.625004748959327e-06,-0.0006071976968087256,6.811024650232866e-05,7.770007869112305e-06,-1.4085379689277033e-06,-4.089477840807376e-07,-5.293955920339377e-22,-0.0004445554513949901,7.770007869112305e-06,3.580934935598634e-05,-7.46054813392372e-22,-2.932078473349975e-07,-5.336543722478382e-07,8.68598453962477e-06,-1.4085379689277033e-06,-7.46054813392372e-22,3.70667905258415e-08,-1.4693679385278594e-39,1.4076506567967015e-23,7.770007869112305e-06,-4.089477840807376e-07,-2.932078473349975e-07,-1.4693679385278594e-39,1.5431991684522472e-08,-8.271806125530277e-25,4.625004748959327e-06,-5.293955920339377e-22,-5.336543722478382e-07,1.4076506567967015e-23,-8.271806125530277e-25,1.006895100630345e-08,39.0,55.0,0.01107560284435749,-0.0005962939467281103,-0.00042891319026239216,8.528057151124813e-06,7.492507393180858e-06,4.381583494250663e-06,-0.0005962939467281103,6.687905261060223e-05,7.492507393180858e-06,-1.3829281897415058e-06,-3.9434249288206047e-07,-5.69100261436483e-22,-0.00042891319026239216,7.492507393180858e-06,3.390803613001481e-05,-7.197434623039924e-22,-2.77500276979481e-07,-4.960282922183978e-07,8.528057151124813e-06,-1.3829281897415058e-06,-7.197434623039924e-22,3.63928478464004e-08,2.938735877055719e-39,1.3328582810561542e-23,7.492507393180858e-06,-3.9434249288206047e-07,-2.77500276979481e-07,2.938735877055719e-39,1.4605277876000855e-08,1.6543612251060553e-24,4.381583494250663e-06,-5.69100261436483e-22,-4.960282922183978e-07,1.3328582810561542e-23,1.6543612251060553e-24,9.185709082260018e-09,39.0,56.0,0.010885144583880901,-0.000585774949286133,-0.00041408228571526706,8.375770448765252e-06,7.229612492665183e-06,4.154949692747323e-06,-0.000585774949286133,6.569157267222181e-05,7.229612492665183e-06,-1.3582330211647786e-06,-3.8050592365834746e-07,-3.3087224502121107e-22,-0.00041408228571526706,7.229612492665183e-06,3.213899617549032e-05,-6.948002105954323e-22,-2.6289498578080384e-07,-4.6166107381395705e-07,8.375770448765252e-06,-1.3582330211647786e-06,-6.948002105954323e-22,3.5742974802133176e-08,-8.081523661903227e-39,1.2632731761509709e-23,7.229612492665183e-06,-3.8050592365834746e-07,-2.6289498578080384e-07,-8.081523661903227e-39,1.383657899367563e-08,-4.963083675318166e-24,4.154949692747323e-06,-3.3087224502121107e-22,-4.6166107381395705e-07,1.2632731761509709e-23,-4.963083675318166e-24,8.393837624964817e-09,39.0,57.0,0.010701125487685204,-0.0005756206810474396,-0.0004000075859948993,8.228827027778607e-06,6.980315447435714e-06,3.943680894735735e-06,-0.0005756206810474396,6.454553658841178e-05,6.980315447435714e-06,-1.3344043736651656e-06,-3.67385013078092e-07,-4.367513634279986e-22,-0.0004000075859948993,6.980315447435714e-06,3.049092811124865e-05,-6.711318590839053e-22,-2.4929698838604963e-07,-4.302197567085386e-07,8.228827027778607e-06,-1.3344043736651656e-06,-6.711318590839053e-22,3.511590662697017e-08,0.0,1.198449714555792e-23,6.980315447435714e-06,-3.67385013078092e-07,-2.4929698838604963e-07,0.0,1.3120893704865466e-08,-8.271806125530277e-25,3.943680894735735e-06,-4.367513634279986e-22,-4.302197567085386e-07,1.198449714555792e-23,-8.271806125530277e-25,7.682495528626987e-09,39.0,58.0,0.01052322518080473,-0.0005658124573528767,-0.00038663847954012454,8.08695131127024e-06,6.743694484612206e-06,3.7464969864231534e-06,-0.0005658124573528767,6.343880522763357e-05,6.743694484612206e-06,-1.3113974546286045e-06,-3.549313021267153e-07,8.867376166568457e-22,-0.00038663847954012454,6.743694484612206e-06,2.8953661967534572e-05,1.7840308738013706e-21,-2.366208633475253e-07,-4.0141040358321334e-07,8.08695131127024e-06,-1.3113974546286045e-06,1.7840308738013706e-21,3.451046026725635e-08,-2.561711878190522e-23,-2.2759749409502552e-23,6.743694484612206e-06,-3.549313021267153e-07,-2.366208633475253e-07,-2.561711878190522e-23,1.245372960312352e-08,-8.271806125530277e-25,3.7464969864231534e-06,8.867376166568457e-22,-4.0141040358321334e-07,-2.2759749409502552e-23,-8.271806125530277e-25,7.04228764192294e-09,39.0,59.0,0.010351142846047878,-0.0005563328741118312,-0.0003739286621566862,7.949884093250148e-06,6.518904683616711e-06,3.5622431369120022e-06,-0.0005563328741118312,6.236938497750089e-05,6.518904683616711e-06,-1.2891703136119759e-06,-3.431002539855399e-07,-4.1028158382630173e-22,-0.0003739286621566862,6.518904683616711e-06,2.751803731371183e-05,-6.272848747571572e-22,-2.2478981520634989e-07,-3.74972955796693e-07,7.949884093250148e-06,-1.2891703136119759e-06,-6.272848747571572e-22,3.3925534381751277e-08,1.4693679385278594e-39,1.08152569781702e-23,6.518904683616711e-06,-3.431002539855399e-07,-2.2478981520634989e-07,1.4693679385278594e-39,1.1831042812104897e-08,0.0,3.5622431369120022e-06,-4.1028158382630173e-22,-3.74972955796693e-07,1.08152569781702e-23,0.0,6.4650511610864214e-09,39.0,60.0,0.010184597223997116,-0.0005471657495945692,-0.00036183540942147374,7.817386176611762e-06,6.3051702454686165e-06,3.389876383153023e-06,-0.0005471657495945692,6.133542774477974e-05,6.3051702454686165e-06,-1.2676841834036168e-06,-3.318510550798237e-07,-4.632211430296955e-22,-0.00036183540942147374,6.3051702454686165e-06,2.6175790480920114e-05,-6.0695589136428825e-22,-2.137345802566415e-07,-3.5067688486378756e-07,7.817386176611762e-06,-1.2676841834036168e-06,-6.0695589136428825e-22,3.336010934162914e-08,4.408103815583578e-39,1.0287387547997939e-23,6.3051702454686165e-06,-3.318510550798237e-07,-2.137345802566415e-07,4.408103815583578e-39,1.1249188247575148e-08,2.0679515313825692e-24,3.389876383153023e-06,-4.632211430296955e-22,-3.5067688486378756e-07,1.0287387547997939e-23,2.0679515313825692e-24,5.943675773778523e-09,39.0,61.0,0.010023326613008976,-0.0005382958333939314,-0.000350319518474862,7.689232006669044e-06,6.101777671574382e-06,3.2284538065141533e-06,-0.0005382958333939314,6.033519093762152e-05,6.101777671574382e-06,-1.2469024568417808e-06,-3.211461887531186e-07,-5.823351512373315e-22,-0.000350319518474862,6.101777671574382e-06,2.4919449060689658e-05,-5.875995419131206e-22,-2.033925881050891e-07,-3.283173271029227e-07,7.689232006669044e-06,-1.2469024568417808e-06,-5.875995419131206e-22,3.2813222361482985e-08,1.1020259538958945e-38,9.79332554077983e-24,6.101777671574382e-06,-3.211461887531186e-07,-2.033925881050891e-07,1.1020259538958945e-38,1.0704873432132445e-08,7.031035206700735e-24,3.2284538065141533e-06,-5.823351512373315e-22,-3.283173271029227e-07,9.79332554077983e-24,7.031035206700735e-24,5.471955777380799e-09,39.0,62.0,0.009867084212601185,-0.0005297089228406549,-0.0003393447841517627,7.565211944893235e-06,5.908070306759328e-06,3.077120027228375e-06,-0.0005297089228406549,5.9367059293435887e-05,5.908070306759328e-06,-1.2267911415619892e-06,-3.1095106578504783e-07,-2.779326858178173e-22,-0.0003393447841517627,5.908070306759328e-06,2.374225005041808e-05,-5.691547875022519e-22,-1.937072227065073e-07,-3.0771201409152127e-07,7.565211944893235e-06,-1.2267911415619892e-06,-5.691547875022519e-22,3.2283978157465754e-08,-5.142787784847508e-39,9.330406184378035e-24,5.908070306759328e-06,-3.1095106578504783e-07,-1.937072227065073e-07,-5.142787784847508e-39,1.0195117639000273e-08,-3.308722450212111e-24,3.077120027228375e-06,-2.779326858178173e-22,-3.0771201409152127e-07,9.330406184378035e-24,-3.308722450212111e-24,5.0444590726783645e-09,39.0,63.0,0.009715637192130089,-0.0005213917465880513,-0.00032887785346247256,7.445129540428752e-06,5.723443337046774e-06,2.9350990189414006e-06,-0.0005213917465880513,5.842950486112386e-05,5.723443337046774e-06,-1.2073182915628422e-06,-3.012338538610493e-07,5.426304818347862e-22,-0.00032887785346247256,5.723443337046774e-06,2.2638057998847216e-05,1.4527647284420773e-21,-1.84627197086229e-07,-2.886982599648036e-07,7.445129540428752e-06,-1.2073182915628422e-06,1.4527647284420773e-21,3.177153473643557e-08,-1.8401802512301235e-23,-1.779242797340154e-23,5.723443337046774e-06,-3.012338538610493e-07,-1.84627197086229e-07,-1.8401802512301235e-23,9.717220805782745e-09,4.1359030627651384e-24,2.9350990189414006e-06,5.426304818347862e-22,-2.886982599648036e-07,-1.779242797340154e-23,4.1359030627651384e-24,4.6564236910739965e-09,39.0,64.0,0.009568769484758377,-0.0005133316735737026,-0.0003188878472428769,7.328799256356433e-06,5.547337423195131e-06,2.801685468512005e-06,-0.0005133316735737026,5.7521105190971866e-05,5.547337423195131e-06,-1.1884538935191813e-06,-2.919651080901531e-07,7.146840492458159e-22,-0.0003188878472428769,5.547337423195131e-06,2.16012958844658e-05,1.3978441564899436e-21,-1.761059422733524e-07,-2.7113085820928973e-07,7.328799256356433e-06,-1.1884538935191813e-06,1.3978441564899436e-21,3.127510339595574e-08,-1.727823108043857e-23,-1.6977107095697604e-23,5.547337423195131e-06,-2.919651080901531e-07,-1.761059422733524e-07,-1.727823108043857e-23,9.268734224576747e-09,-1.6543612251060553e-24,2.801685468512005e-06,7.146840492458159e-22,-2.7113085820928973e-07,-1.6977107095697604e-23,-1.6543612251060553e-24,4.303664535854068e-09,40.0,3.0,0.12031068652868271,-0.008710801601409912,-0.0731707289814949,0.00014518001989927143,0.0018292682943865657,0.012500000186264515,-0.008710801601409912,0.0010503510711714625,0.0018292682943865657,-2.2923160940990783e-05,-9.380863048136234e-05,-7.914675859144182e-18,-0.0731707289814949,0.0018292682943865657,0.1981707364320755,5.020545262909325e-20,-0.0018292682943865657,-0.07500000298023224,0.00014518001989927143,-2.2923160940990783e-05,5.020545262909325e-20,5.877733997294854e-07,-4.4855371211722446e-21,2.0530845754590624e-20,0.0018292682943865657,-9.380863048136234e-05,-0.0018292682943865657,-4.4855371211722446e-21,9.380863048136234e-05,6.830473686658678e-18,0.012500000186264515,-7.914675859144182e-18,-0.07500000298023224,2.0530845754590624e-20,6.830473686658678e-18,0.03750000149011612,40.0,4.0,0.10058362036943436,-0.006807491183280945,-0.047652438282966614,0.00010888501856243238,0.0010975609766319394,0.0062500000931322575,-0.006807491183280945,0.0008018345688469708,0.0010975609766319394,-1.719237116049044e-05,-5.6285178288817406e-05,-9.215718466126788e-19,-0.047652438282966614,0.0010975609766319394,0.07551829516887665,-2.5708056117460652e-20,-0.0007317073177546263,-0.01875000074505806,0.00010888501856243238,-1.719237116049044e-05,-2.5708056117460652e-20,4.4083003558625933e-07,9.9120864990225e-22,8.502782579095072e-22,0.0010975609766319394,-5.6285178288817406e-05,-0.0007317073177546263,9.9120864990225e-22,3.752345219254494e-05,4.87890977618477e-19,0.0062500000931322575,-9.215718466126788e-19,-0.01875000074505806,8.502782579095072e-22,4.87890977618477e-19,0.0062500000931322575,40.0,5.0,0.08646341413259506,-0.005592334549874067,-0.03355400636792183,8.710801193956286e-05,0.0007317073177546263,0.0035714285913854837,-0.005592334549874067,0.0006489723455160856,0.0007317073177546263,-1.3753897292190231e-05,-3.752345219254494e-05,4.336808689942018e-19,-0.03355400636792183,0.0007317073177546263,0.038205575197935104,7.770229651472263e-20,-0.00036585365887731314,-0.0071428571827709675,8.710801193956286e-05,-1.3753897292190231e-05,7.770229651472263e-20,3.526640171003237e-07,-1.7232230013591362e-21,-1.0621406193138616e-20,0.0007317073177546263,-3.752345219254494e-05,-0.00036585365887731314,-1.7232230013591362e-21,1.876172609627247e-05,1.3552527156068805e-20,0.0035714285913854837,4.336808689942018e-19,-0.0071428571827709675,-1.0621406193138616e-20,1.3552527156068805e-20,0.0017857142956927419,40.0,6.0,0.07583478838205338,-0.004747386556118727,-0.0249237809330225,7.259000994963571e-05,0.0005226481007412076,0.0022321429569274187,-0.004747386556118727,0.0005452773766592145,0.0005226481007412076,-1.1461580470495392e-05,-2.6802465072250925e-05,1.1926223897340549e-18,-0.0249237809330225,0.0005226481007412076,0.02224629744887352,6.373997245096769e-20,-0.0002090592315653339,-0.0033482143189758062,7.259000994963571e-05,-1.1461580470495392e-05,6.373997245096769e-20,2.938866998647427e-07,-9.74776412189232e-22,-8.759019545291845e-21,0.0005226481007412076,-2.6802465072250925e-05,-0.0002090592315653339,-9.74776412189232e-22,1.072098621079931e-05,-2.981555974335137e-19,0.0022321429569274187,1.1926223897340549e-18,-0.0033482143189758062,-8.759019545291845e-21,-2.981555974335137e-19,0.0006696428754366934,40.0,7.0,0.067538782954216,-0.004125186707824469,-0.01925087161362171,6.22200095676817e-05,0.0003919860755559057,0.0014880952658131719,-0.004125186707824469,0.00047025230014696717,0.0003919860755559057,-9.824211701925378e-06,-2.0101850168430246e-05,6.640738306473715e-19,-0.01925087161362171,0.0003919860755559057,0.014155052602291107,9.502209498604202e-20,-0.0001306620251853019,-0.0017857142956927419,6.22200095676817e-05,-9.824211701925378e-06,9.502209498604202e-20,2.5190286123688566e-07,-1.7156216638941714e-21,-9.253026508951431e-21,0.0003919860755559057,-2.0101850168430246e-05,-0.0001306620251853019,-1.7156216638941714e-21,6.700616268062731e-06,-7.623296525288703e-20,0.0014880952658131719,6.640738306473715e-19,-0.0017857142956927419,-9.253026508951431e-21,-7.623296525288703e-20,0.00029761905898340046,40.0,8.0,0.06088124215602875,-0.0036476480308920145,-0.015320122241973877,5.444250928121619e-05,0.0003048780490644276,0.0010416667209938169,-0.0036476480308920145,0.00041342509211972356,0.0003048780490644276,-8.59618558024522e-06,-1.5634772353223525e-05,-3.1170812458958252e-19,-0.015320122241973877,0.0003048780490644276,0.009585510939359665,-4.114817711963279e-20,-8.710801193956286e-05,-0.0010416667209938169,5.444250928121619e-05,-8.59618558024522e-06,-4.114817711963279e-20,2.2041501779312966e-07,3.423461700896655e-22,4.787895464970601e-21,0.0003048780490644276,-1.5634772353223525e-05,-8.710801193956286e-05,3.423461700896655e-22,4.4670778152067214e-06,2.964615315390051e-20,0.0010416667209938169,-3.1170812458958252e-19,-0.0010416667209938169,4.787895464970601e-21,2.964615315390051e-20,0.00014880952949170023,40.0,9.0,0.05541952699422836,-0.0032694542314857244,-0.012483370490372181,4.839333996642381e-05,0.0002439024392515421,0.0007575757335871458,-0.0032694542314857244,0.0003688787401188165,0.0002439024392515421,-7.641054253326729e-06,-1.250781770067988e-05,-1.6940658945086007e-19,-0.012483370490372181,0.0002439024392515421,0.006800496019423008,-3.015426742441325e-21,-6.097560981288552e-05,-0.0006493506371043622,4.839333996642381e-05,-7.641054253326729e-06,-3.015426742441325e-21,1.95924457102592e-07,-4.987844062758009e-22,1.6915865741032507e-21,0.0002439024392515421,-1.250781770067988e-05,-6.097560981288552e-05,-4.987844062758009e-22,3.12695442516997e-06,2.1175823681357508e-20,0.0007575757335871458,-1.6940658945086007e-19,-0.0006493506371043622,1.6915865741032507e-21,2.1175823681357508e-20,8.116882963804528e-05,40.0,10.0,0.05085761845111847,-0.002962464466691017,-0.01036862563341856,4.355400596978143e-05,0.00019955653988290578,0.0005681818001903594,-0.002962464466691017,0.00033301423536613584,0.00019955653988290578,-6.876948646095116e-06,-1.0233668945147656e-05,-4.0657581468206416e-20,-0.01036862563341856,0.00019955653988290578,0.005003002472221851,-2.369181791464685e-22,-4.434589936863631e-05,-0.00042613636469468474,4.355400596978143e-05,-6.876948646095116e-06,-2.369181791464685e-22,1.7633200855016185e-07,-4.108242443984469e-22,7.868712086914272e-22,0.00019955653988290578,-1.0233668945147656e-05,-4.434589936863631e-05,-4.108242443984469e-22,2.2741485281585483e-06,8.470329472543003e-22,0.0005681818001903594,-4.0657581468206416e-20,-0.00042613636469468474,7.868712086914272e-22,8.470329472543003e-22,4.734848334919661e-05,40.0,11.0,0.04698989912867546,-0.002708267420530319,-0.008749786764383316,3.959455352742225e-05,0.00016629711899440736,0.0004370629321783781,-0.002708267420530319,0.0003035154950339347,0.00016629711899440736,-6.2517715377907734e-06,-8.528057151124813e-06,-6.437450399132683e-20,-0.008749786764383316,0.00016629711899440736,0.0037895843852311373,-2.351563005976019e-20,-3.325942452647723e-05,-0.00029137529782019556,3.959455352742225e-05,-6.2517715377907734e-06,-2.351563005976019e-20,1.6030182337090082e-07,3.493299241291509e-22,1.525485940409636e-21,0.00016629711899440736,-8.528057151124813e-06,-3.325942452647723e-05,3.493299241291509e-22,1.70561145296233e-06,-4.235164736271502e-22,0.0004370629321783781,-6.437450399132683e-20,-0.00029137529782019556,1.525485940409636e-21,-4.235164736271502e-22,2.9137529054423794e-05,40.0,12.0,0.04366903379559517,-0.0024943044409155846,-0.007482913322746754,3.629500497481786e-05,0.00014071294572204351,0.00034340660204179585,-0.0024943044409155846,0.00027882386348210275,0.00014071294572204351,-5.730790235247696e-06,-7.216048288682941e-06,1.7279472123987727e-19,-0.007482913322746754,0.00014071294572204351,0.002940200036391616,3.362815215511677e-20,-2.5584171453374438e-05,-0.00020604395831469446,3.629500497481786e-05,-5.730790235247696e-06,3.362815215511677e-20,1.4694334993237135e-07,-4.085676478256334e-22,-2.2796390862590365e-21,0.00014071294572204351,-7.216048288682941e-06,-2.5584171453374438e-05,-4.085676478256334e-22,1.3120088624418713e-06,-1.334076891925523e-20,0.00034340660204179585,1.7279472123987727e-19,-0.00020604395831469446,-2.2796390862590365e-21,-1.334076891925523e-20,1.8731268937699497e-05,40.0,13.0,0.04078665375709534,-0.002311712596565485,-0.006472795270383358,3.350308179506101e-05,0.00012061109737260267,0.00027472528745420277,-0.002311712596565485,0.00025785164325498044,0.00012061109737260267,-5.289960427035112e-06,-6.185184247442521e-06,8.131516293641283e-20,-0.006472795270383358,0.00012061109737260267,0.002327550435438752,1.0799847792077058e-20,-2.0101850168430246e-05,-0.00014985015150159597,3.350308179506101e-05,-5.289960427035112e-06,1.0799847792077058e-20,1.3564000767019024e-07,5.615960106608456e-23,-9.957939891108248e-22,0.00012061109737260267,-6.185184247442521e-06,-2.0101850168430246e-05,5.615960106608456e-23,1.0308640412404202e-06,-6.03510974918689e-21,0.00027472528745420277,8.131516293641283e-20,-0.00014985015150159597,-9.957939891108248e-22,-6.03510974918689e-21,1.2487512321968097e-05,40.0,14.0,0.03826126083731651,-0.0021540566813200712,-0.005654398817569017,3.111000478384085e-05,0.00010452961578266695,0.00022321428696159273,-0.0021540566813200712,0.0002398165815975517,0.00010452961578266695,-4.912105850962689e-06,-5.360493105399655e-06,-3.3881317890172014e-21,-0.005654398817569017,0.00010452961578266695,0.001874371781013906,1.396009940027157e-20,-1.6081479770946316e-05,-0.00011160714348079637,3.111000478384085e-05,-4.912105850962689e-06,1.396009940027157e-20,1.2595143061844283e-07,-3.3526898967545297e-22,-4.409569891730108e-22,0.00010452961578266695,-5.360493105399655e-06,-1.6081479770946316e-05,-3.3526898967545297e-22,8.246912557297037e-07,2.8587361969832636e-21,0.00022321428696159273,-3.3881317890172014e-21,-0.00011160714348079637,-4.409569891730108e-22,2.8587361969832636e-21,8.585165232943837e-06,40.0,15.0,0.03603039309382439,-0.0020165506284683943,-0.004982065875083208,2.9036003979854286e-05,9.146341471932828e-05,0.00018382353300694376,-0.0020165506284683943,0.00022414149134419858,9.146341471932828e-05,-4.584632279147627e-06,-4.690431524068117e-06,6.268043809681823e-20,-0.004982065875083208,9.146341471932828e-05,0.0015318595105782151,1.3315711970602123e-20,-1.3066201972833369e-05,-8.484163117827848e-05,2.9036003979854286e-05,-4.584632279147627e-06,1.3315711970602123e-20,1.1755467710372614e-07,-3.3323188576090816e-22,-4.4362285940522745e-22,9.146341471932828e-05,-4.690431524068117e-06,-1.3066201972833369e-05,-3.3323188576090816e-22,6.700616381749569e-07,-6.1409888675936775e-21,0.00018382353300694376,6.268043809681823e-20,-8.484163117827848e-05,-4.4362285940522745e-22,-6.1409888675936775e-21,6.06011644777027e-06,40.0,16.0,0.03404535725712776,-0.001895560068078339,-0.004422973375767469,2.7221254640608095e-05,8.070301555562764e-05,0.00015318627993110567,-0.001895560068078339,0.0002103913138853386,8.070301555562764e-05,-4.29809279012261e-06,-4.138616077398183e-06,-8.470329472543003e-21,-0.004422973375767469,8.070301555562764e-05,0.001268126186914742,-3.797785717241986e-21,-1.0760401892184746e-05,-6.565126386703923e-05,2.7221254640608095e-05,-4.29809279012261e-06,-3.797785717241986e-21,1.1020750889656483e-07,7.255214960923891e-23,1.3024031698503936e-22,8.070301555562764e-05,-4.138616077398183e-06,-1.0760401892184746e-05,7.255214960923891e-23,5.518154466699343e-07,3.1763735522036263e-22,0.00015318627993110567,-8.470329472543003e-21,-6.565126386703923e-05,1.3024031698503936e-22,3.1763735522036263e-22,4.376750894152792e-06,40.0,17.0,0.032267630100250244,-0.0017882762476801872,-0.003953031729906797,2.5620003725634888e-05,7.173600897658616e-05,0.00012899897410534322,-0.0017882762476801872,0.00019823176262434572,7.173600897658616e-05,-4.045263722218806e-06,-3.6787698718399042e-06,-5.929230630780102e-21,-0.003953031729906797,7.173600897658616e-05,0.0010617243824526668,6.582847505848694e-21,-8.96700112207327e-06,-5.159958891454153e-05,2.5620003725634888e-05,-4.045263722218806e-06,6.582847505848694e-21,1.0372471592745569e-07,-1.6480281235411962e-22,-2.185596062117734e-22,7.173600897658616e-05,-3.6787698718399042e-06,-8.96700112207327e-06,-1.6480281235411962e-22,4.5984623397998803e-07,1.9587636905255695e-21,0.00012899897410534322,-5.929230630780102e-21,-5.159958891454153e-05,-2.185596062117734e-22,1.9587636905255695e-21,3.2249743071588455e-06,40.0,18.0,0.030666351318359375,-0.0016924934461712837,-0.0035542361438274384,2.4196669983211905e-05,6.418485281756148e-05,0.0001096491250791587,-0.0016924934461712837,0.00018740174709819257,6.418485281756148e-05,-3.8205271266633645e-06,-3.291530902060913e-06,2.371692252312041e-20,-0.0035542361438274384,6.418485281756148e-05,0.0008978603291325271,1.2793609946684143e-20,-7.551158887508791e-06,-4.111842281417921e-05,2.4196669983211905e-05,-3.8205271266633645e-06,1.2793609946684143e-20,9.7962228551296e-08,-2.5053308533346727e-22,-4.0365765133379297e-22,6.418485281756148e-05,-3.291530902060913e-06,-7.551158887508791e-06,-2.5053308533346727e-22,3.872389413572819e-07,-8.470329472543003e-22,0.0001096491250791587,2.371692252312041e-20,-4.111842281417921e-05,-4.0365765133379297e-22,-8.470329472543003e-22,2.4187306735257152e-06,40.0,19.0,0.02921648696064949,-0.0016064551891759038,-0.0032129103783518076,2.2923160940990783e-05,5.776636680820957e-05,9.398496331414208e-05,-0.0016064551891759038,0.00017769441183190793,5.776636680820957e-05,-3.619446488301037e-06,-2.9623777209053515e-06,3.134021904840911e-20,-0.0032129103783518076,5.776636680820957e-05,0.0007661010604351759,1.2307139697004166e-20,-6.418485099857207e-06,-3.317116352263838e-05,2.2923160940990783e-05,-3.619446488301037e-06,1.2307139697004166e-20,9.280632440322734e-08,-1.6965960806651193e-22,-4.595261942802872e-22,5.776636680820957e-05,-2.9623777209053515e-06,-6.418485099857207e-06,-1.6965960806651193e-22,3.291530958904332e-07,-8.735027268559972e-22,9.398496331414208e-05,3.134021904840911e-20,-3.317116352263838e-05,-4.595261942802872e-22,-8.735027268559972e-22,1.842842380028742e-06,40.0,20.0,0.027897529304027557,-0.0015287456335499883,-0.002918514423072338,2.1777002984890714e-05,5.2264807891333476e-05,8.116882963804528e-05,-0.0015287456335499883,0.0001689437049208209,5.2264807891333476e-05,-3.438474323047558e-06,-2.6802465526998276e-06,1.7787691892340307e-20,-0.002918514423072338,5.2264807891333476e-05,0.0006589436670765281,5.255084490001137e-21,-5.5015589168760926e-06,-2.7056277758674696e-05,2.1777002984890714e-05,-3.438474323047558e-06,5.255084490001137e-21,8.816600427508092e-08,-7.889936862885786e-23,-1.868105296186223e-22,5.2264807891333476e-05,-2.6802465526998276e-06,-5.5015589168760926e-06,-7.889936862885786e-23,2.821312250489427e-07,-8.735027268559972e-22,8.116882963804528e-05,1.7787691892340307e-20,-2.7056277758674696e-05,-1.868105296186223e-22,-8.735027268559972e-22,1.4240146128940978e-06,40.0,21.0,0.02669251523911953,-0.0014582107542082667,-0.002662819577381015,2.0740002582897432e-05,4.7513462050119415e-05,7.058159098960459e-05,-0.0014582107542082667,0.00016101478831842542,4.7513462050119415e-05,-3.2747373097663512e-06,-2.436587692500325e-06,5.759824041329242e-20,-0.002662819577381015,4.7513462050119415e-05,0.0005708972457796335,1.620417254746831e-20,-4.751346295961412e-06,-2.2288922991720028e-05,2.0740002582897432e-05,-3.2747373097663512e-06,1.620417254746831e-20,8.396762751772258e-08,-1.7535692560708636e-22,-6.053084468715992e-22,4.7513462050119415e-05,-2.436587692500325e-06,-4.751346295961412e-06,-1.7535692560708636e-22,2.436587749343744e-07,-3.044024654195142e-21,7.058159098960459e-05,5.759824041329242e-20,-2.2288922991720028e-05,-6.053084468715992e-22,-3.044024654195142e-21,1.1144461495860014e-06,40.0,22.0,0.0255872905254364,-0.0013939003692939878,-0.002439325675368309,1.9797276763711125e-05,4.338185681262985e-05,6.175889575388283e-05,-0.0013939003692939878,0.0001537970529170707,4.338185681262985e-05,-3.1258857688953867e-06,-2.2247106699069263e-06,-6.776263578034403e-21,-0.002439325675368309,4.338185681262985e-05,0.0004978799843229353,-6.007734432996646e-21,-4.131605237489566e-06,-1.8527667634771205e-05,1.9797276763711125e-05,-3.1258857688953867e-06,-6.007734432996646e-21,8.015091168545041e-08,9.119115944029648e-23,1.9282138465914227e-22,4.338185681262985e-05,-2.2247106699069263e-06,-4.131605237489566e-06,9.119115944029648e-23,2.1187719312365516e-07,-1.0587911840678754e-22,6.175889575388283e-05,-6.776263578034403e-21,-1.8527667634771205e-05,1.9282138465914227e-22,-1.0587911840678754e-22,8.822698873700574e-07,40.0,23.0,0.024569950997829437,-0.001335024950094521,-0.0022428419906646013,1.8936525520985015e-05,3.976670268457383e-05,5.434782724478282e-05,-0.001335024950094521,0.00014719889441039413,3.976670268457383e-05,-2.9899777018727036e-06,-2.0393181330291554e-06,5.505714157152952e-21,-0.0022428419906646013,3.976670268457383e-05,0.0004368139780126512,1.935921307936245e-21,-3.615154810177046e-06,-1.552795038151089e-05,1.8936525520985015e-05,-2.9899777018727036e-06,1.935921307936245e-21,7.666609036505179e-08,-3.304793607359748e-23,-5.336178280341702e-23,3.976670268457383e-05,-2.0393181330291554e-06,-3.615154810177046e-06,-3.304793607359748e-23,1.8539255108862562e-07,-3.3087224502121107e-22,5.434782724478282e-05,5.505714157152952e-21,-1.552795038151089e-05,-5.336178280341702e-23,-3.3087224502121107e-22,7.058159212647297e-07,40.0,24.0,0.023630416020751,-0.0012809233739972115,-0.0020691838581115007,1.814750248740893e-05,3.6585366615327075e-05,4.80769231216982e-05,-0.0012809233739972115,0.00014114378427620977,3.6585366615327075e-05,-2.865395117623848e-06,-1.8761726323646144e-06,-0.0,-0.0020691838581115007,3.6585366615327075e-05,0.0003853485977742821,1.0587911840678754e-22,-3.181336069246754e-06,-1.3111887710692827e-05,1.814750248740893e-05,-2.865395117623848e-06,1.0587911840678754e-22,7.347167496618567e-08,-6.617444900424222e-24,-0.0,3.6585366615327075e-05,-1.8761726323646144e-06,-3.181336069246754e-06,-6.617444900424222e-24,1.6314544382112217e-07,-0.0,4.80769231216982e-05,-0.0,-1.3111887710692827e-05,-0.0,-0.0,5.70082079320855e-07,40.0,25.0,0.022760087624192238,-0.001231037313118577,-0.0019149468280375004,1.742160202411469e-05,3.377110624569468e-05,4.273504237062298e-05,-0.001231037313118577,0.00013556730118580163,3.377110624569468e-05,-2.7507794584380463e-06,-1.731851625663694e-06,-0.0,-0.0019149468280375004,3.377110624569468e-05,0.00034166735713370144,1.0587911840678754e-22,-2.8142590053903405e-06,-1.1148272278660443e-05,1.742160202411469e-05,-2.7507794584380463e-06,1.0587911840678754e-22,7.053280626223568e-08,-6.617444900424222e-24,-0.0,3.377110624569468e-05,-1.731851625663694e-06,-2.8142590053903405e-06,-6.617444900424222e-24,1.4432096406835626e-07,-0.0,4.273504237062298e-05,-0.0,-1.1148272278660443e-05,-0.0,-0.0,4.645113449441851e-07,40.0,26.0,0.021951591596007347,-0.001184892375022173,-0.0017773385625332594,1.6751540897530504e-05,3.126954470644705e-05,3.815628951997496e-05,-0.001184892375022173,0.0001304148609051481,3.126954470644705e-05,-2.644980213517556e-06,-1.603566374797083e-06,-0.0,-0.0017773385625332594,3.126954470644705e-05,0.0003043512988369912,-1.0587911840678754e-22,-2.501563585610711e-06,-9.53907237999374e-06,1.6751540897530504e-05,-2.644980213517556e-06,-1.0587911840678754e-22,6.782000383509512e-08,6.617444900424222e-24,-0.0,3.126954470644705e-05,-1.603566374797083e-06,-2.501563585610711e-06,6.617444900424222e-24,1.2828530771002988e-07,-0.0,3.815628951997496e-05,-0.0,-9.53907237999374e-06,-0.0,-0.0,3.815628701886453e-07,40.0,27.0,0.021198563277721405,-0.0011420828523114324,-0.001654051011428237,1.6131114534800872e-05,2.9036003979854286e-05,3.420908615225926e-05,-0.0011420828523114324,0.00012563982454594225,2.9036003979854286e-05,-2.5470178570685675e-06,-1.4890258626110153e-06,-0.0,-0.001654051011428237,2.9036003979854286e-05,0.0002722812059801072,0.0,-2.2335389076033607e-06,-8.210180567402858e-06,1.6131114534800872e-05,-2.5470178570685675e-06,0.0,6.530814999905488e-08,6.617444900424222e-24,-0.0,2.9036003979854286e-05,-1.4890258626110153e-06,-2.2335389076033607e-06,6.617444900424222e-24,1.1454045534264878e-07,-0.0,3.420908615225926e-05,-0.0,-8.210180567402858e-06,-0.0,-0.0,3.157761909733381e-07,40.0,28.0,0.02049548551440239,-0.0011022596154361963,-0.0015431635547429323,1.5555002391920425e-05,2.7033522201236337e-05,3.0788178264629096e-05,-0.0011022596154361963,0.00012120219616917893,2.7033522201236337e-05,-2.4560529254813446e-06,-1.3863344747733208e-06,-0.0,-0.0015431635547429323,2.7033522201236337e-05,0.000244566093897447,0.0,-2.002483142860001e-06,-7.1049639700504486e-06,1.5555002391920425e-05,-2.4560529254813446e-06,0.0,6.297571530922141e-08,3.308722450212111e-24,-0.0,2.7033522201236337e-05,-1.3863344747733208e-06,-2.002483142860001e-06,3.308722450212111e-24,1.02691437575686e-07,-0.0,3.0788178264629096e-05,-0.0,-7.1049639700504486e-06,-0.0,-0.0,2.631468021263572e-07,40.0,29.0,0.019837547093629837,-0.0010651207994669676,-0.00144306686706841,1.5018623344076332e-05,2.5231287509086542e-05,2.7808675440610386e-05,-0.0010651207994669676,0.000117067429528106,2.5231287509086542e-05,-2.371361460973276e-06,-1.2939121916133445e-06,-0.0,-0.00144306686706841,2.5231287509086542e-05,0.00022049061954021454,2.117582368135751e-22,-1.8022348058366333e-06,-6.179705906106392e-06,1.5018623344076332e-05,-2.371361460973276e-06,2.117582368135751e-22,6.080414038933668e-08,-6.617444900424222e-24,-0.0,2.5231287509086542e-05,-1.2939121916133445e-06,-1.8022348058366333e-06,-6.617444900424222e-24,9.242229737083107e-08,-0.0,2.7808675440610386e-05,-0.0,-6.179705906106392e-06,-0.0,-0.0,2.2070378236094257e-07,40.0,30.0,0.019220534712076187,-0.001030403538607061,-0.0013524045934900641,1.4518001989927143e-05,2.360346115892753e-05,2.5201612515957095e-05,-0.001030403538607061,0.0001132055331254378,2.360346115892753e-05,-2.2923161395738134e-06,-1.2104339930374408e-06,1.5995569552327227e-20,-0.0013524045934900641,2.360346115892753e-05,0.00019947608234360814,1.2828699691438724e-20,-1.6278249859169591e-06,-5.400345798989292e-06,1.4518001989927143e-05,-2.2923161395738134e-06,1.2828699691438724e-20,5.877733855186307e-08,-1.0918784085699965e-22,-3.4744284262611742e-22,2.360346115892753e-05,-1.2104339930374408e-06,-1.6278249859169591e-06,-1.0918784085699965e-22,8.347820568133102e-08,-1.6864125805763126e-22,2.5201612515957095e-05,1.5995569552327227e-20,-5.400345798989292e-06,-3.4744284262611742e-22,-1.6864125805763126e-22,1.8621881281433161e-07,40.0,31.0,0.018640747293829918,-0.0009978784946724772,-0.001270027132704854,1.4049679521122016e-05,2.2128246200736612e-05,2.2910557163413614e-05,-0.0009978784946724772,0.0001095903426175937,2.2128246200736612e-05,-2.2183705823408673e-06,-1.1347817689966178e-06,-0.0,-0.001270027132704854,2.2128246200736612e-05,0.00018105082563124597,5.293955920339377e-23,-1.4752163224329706e-06,-4.740115400636569e-06,1.4049679521122016e-05,-2.2183705823408673e-06,5.293955920339377e-23,5.688129434133771e-08,0.0,-0.0,2.2128246200736612e-05,-1.1347817689966178e-06,-1.4752163224329706e-06,0.0,7.565212456484005e-08,-0.0,2.2910557163413614e-05,-0.0,-4.740115400636569e-06,-0.0,-0.0,1.5800384289832436e-07,40.0,32.0,0.01809491403400898,-0.0009673443855717778,-0.0011949548497796059,1.3610627320304047e-05,2.078713987430092e-05,2.0889037841698155e-05,-0.0009673443855717778,0.0001061989605659619,2.078713987430092e-05,-2.149046395061305e-06,-1.0660071438906016e-06,9.529120656610879e-22,-0.0011949548497796059,2.078713987430092e-05,0.00016482781211379915,7.148266879192544e-23,-1.341105758001504e-06,-4.177807568339631e-06,1.3610627320304047e-05,-2.149046395061305e-06,7.148266879192544e-23,5.5103754448282416e-08,-3.890334212843911e-24,-1.5747395464417389e-25,2.078713987430092e-05,-1.0660071438906016e-06,-1.341105758001504e-06,-3.890334212843911e-24,6.87746535277256e-08,-6.617444900424221e-23,2.0889037841698155e-05,9.529120656610879e-22,-4.177807568339631e-06,-1.5747395464417389e-25,-6.617444900424221e-23,1.347679869923013e-07,40.0,33.0,0.01758013665676117,-0.0009386237943544984,-0.0011263485066592693,1.319818420597585e-05,1.95643660845235e-05,1.9098548364127055e-05,-0.0009386237943544984,0.00010301121074007824,1.95643660845235e-05,-2.083923845930258e-06,-1.0033008948084898e-06,4.235164736271502e-22,-0.0011263485066592693,1.95643660845235e-05,0.00015048746718093753,-0.0,-1.2227728802827187e-06,-3.6964931950933533e-06,1.319818420597585e-05,-2.083923845930258e-06,-0.0,5.343394349210939e-08,0.0,0.0,1.95643660845235e-05,-1.0033008948084898e-06,-1.2227728802827187e-06,0.0,6.270630592553061e-08,-2.9778502051908996e-23,1.9098548364127055e-05,4.235164736271502e-22,-3.6964931950933533e-06,0.0,-2.9778502051908996e-23,1.1551541234666729e-07,40.0,34.0,0.01709383726119995,-0.0009115597349591553,-0.0010634863283485174,1.2810001862817444e-05,1.844640246417839e-05,1.750700357661117e-05,-0.0009115597349591553,0.00010000929614761844,1.844640246417839e-05,-2.022631861109403e-06,-9.459693615099241e-07,3.1763735522036263e-22,-0.0010634863283485174,1.844640246417839e-05,0.00013776429113931954,-0.0,-1.1179638477187837e-06,-3.2825630569277564e-06,1.2810001862817444e-05,-2.022631861109403e-06,-0.0,5.1862357963727845e-08,3.308722450212111e-24,-1.6543612251060553e-24,1.844640246417839e-05,-9.459693615099241e-07,-1.1179638477187837e-06,3.308722450212111e-24,5.733147645514691e-08,-1.9852334701272664e-23,1.750700357661117e-05,3.1763735522036263e-22,-3.2825630569277564e-06,-1.6543612251060553e-24,-1.9852334701272664e-23,9.947160606316174e-08,40.0,35.0,0.016633717343211174,-0.0008860129164531827,-0.0010057444451376796,1.244400209543528e-05,1.742160202411469e-05,1.6087516996776685e-05,-0.0008860129164531827,9.71774134086445e-05,1.742160202411469e-05,-1.9648423403850757e-06,-8.934155175666092e-07,5.293955920339377e-23,-0.0010057444451376796,1.742160202411469e-05,0.00012643649824894965,-0.0,-1.0248002126900246e-06,-2.9250029456306947e-06,1.244400209543528e-05,-1.9648423403850757e-06,-0.0,5.038057437900534e-08,-3.308722450212111e-24,1.6543612251060553e-24,1.742160202411469e-05,-8.934155175666092e-07,-1.0248002126900246e-06,-3.308722450212111e-24,5.2553854601455896e-08,-6.617444900424222e-24,1.6087516996776685e-05,5.293955920339377e-23,-2.9250029456306947e-06,1.6543612251060553e-24,-6.617444900424222e-24,8.602949463920595e-08,40.0,36.0,0.016197718679904938,-0.000861859240103513,-0.0009525812929496169,1.2098334991605952e-05,1.647989483899437e-05,1.4817449482507072e-05,-0.000861859240103513,9.450151264900342e-05,1.647989483899437e-05,-1.9102635633316822e-06,-8.451227699879382e-07,-6.352747104407253e-22,-0.0009525812929496169,1.647989483899437e-05,0.00011631785309873521,5.044482761139939e-23,-9.417082651452802e-07,-2.6148438792006345e-06,1.2098334991605952e-05,-1.9102635633316822e-06,5.044482761139939e-23,4.8981114275648e-08,-2.0627620099175728e-24,-1.1340077658159008e-24,1.647989483899437e-05,-8.451227699879382e-07,-9.417082651452802e-07,-2.0627620099175728e-24,4.8292729815102575e-08,3.639594695233322e-23,1.4817449482507072e-05,-6.352747104407253e-22,-2.6148438792006345e-06,-1.1340077658159008e-24,3.639594695233322e-23,7.470982410495708e-08,40.0,37.0,0.015783993527293205,-0.0008389877039007843,-0.0009035252151079476,1.177135345642455e-05,1.561253156978637e-05,1.3677645256393589e-05,-0.0008389877039007843,9.196905739372596e-05,1.561253156978637e-05,-1.8586347323434893e-06,-8.006426241990994e-07,0.0,-0.0009035252151079476,1.561253156978637e-05,0.00010725116590037942,-4.651277882831785e-23,-8.673628713040671e-07,-2.3447391868103296e-06,1.177135345642455e-05,-1.8586347323434893e-06,-4.651277882831785e-23,4.7657302104653354e-08,3.761586837604538e-25,1.0168685281006617e-24,1.561253156978637e-05,-8.006426241990994e-07,-8.673628713040671e-07,3.761586837604538e-25,4.4480145788838854e-08,-3.308722450212111e-24,1.3677645256393589e-05,0.0,-2.3447391868103296e-06,1.0168685281006617e-24,-3.308722450212111e-24,6.513164407806471e-08,40.0,38.0,0.015390874817967415,-0.0008172988891601562,-0.0008581638103350997,1.1461580470495392e-05,1.4811888831900433e-05,1.2651821634790394e-05,-0.0008172988891601562,8.956880628829822e-05,1.4811888831900433e-05,-1.8097232441505184e-06,-7.595840543217491e-07,1.5881867761018131e-22,-0.0008581638103350997,1.4811888831900433e-05,9.910315566230565e-05,4.2979142667696364e-23,-8.006426241990994e-07,-2.1086370907141827e-06,1.1461580470495392e-05,-1.8097232441505184e-06,4.2979142667696364e-23,4.640316220161367e-08,-5.310307113638436e-24,7.398857085155297e-25,1.4811888831900433e-05,-7.595840543217491e-07,-8.006426241990994e-07,-5.310307113638436e-24,4.105859829905967e-08,-9.926167350636332e-24,1.2651821634790394e-05,1.5881867761018131e-22,-2.1086370907141827e-06,7.398857085155297e-25,-9.926167350636332e-24,5.699018856830662e-08,40.0,39.0,0.015016863122582436,-0.0007967032724991441,-0.0008161350851878524,1.1167694538016804e-05,1.4071294572204351e-05,1.1726078810170293e-05,-0.0007967032724991441,8.729067485546693e-05,1.4071294572204351e-05,-1.7633201423450373e-06,-7.216048629743455e-07,-2.6469779601696886e-22,-0.0008161350851878524,1.4071294572204351e-05,9.176031744573265e-05,-0.0,-7.405944302263379e-07,-1.9015262751054252e-06,1.1167694538016804e-05,-1.7633201423450373e-06,-0.0,4.521333707430131e-08,1.6543612251060553e-24,-8.271806125530277e-25,1.4071294572204351e-05,-7.216048629743455e-07,-7.405944302263379e-07,1.6543612251060553e-24,3.797920200554472e-08,1.6543612251060553e-23,1.1726078810170293e-05,-2.6469779601696886e-22,-1.9015262751054252e-06,-8.271806125530277e-25,1.6543612251060553e-23,5.004016401244371e-08,40.0,40.0,0.014660597778856754,-0.0007771203527227044,-0.0007771203527227044,1.0888501492445357e-05,1.3384889825829305e-05,1.0888501492445357e-05,-0.0007771203527227044,8.512556814821437e-05,1.3384889825829305e-05,-1.719237161523779e-06,-6.86404632688209e-07,-4.764560328305439e-22,-0.0007771203527227044,1.3384889825829305e-05,8.512556814821437e-05,-7.38346607362855e-23,-6.86404632688209e-07,-1.719237161523779e-06,1.0888501492445357e-05,-1.719237161523779e-06,-7.38346607362855e-23,4.408300213754046e-08,2.249722241670179e-24,6.640198705766803e-25,1.3384889825829305e-05,-6.86404632688209e-07,-6.86404632688209e-07,2.249722241670179e-24,3.520023739156386e-08,2.150669592637872e-23,1.0888501492445357e-05,-4.764560328305439e-22,-1.719237161523779e-06,6.640198705766803e-25,2.150669592637872e-23,4.408300213754046e-08,40.0,41.0,0.01432084385305643,-0.0007584770792163908,-0.0007408381206914783,1.062292813003296e-05,1.2747514119837433e-05,1.0128838766831905e-05,-0.0007584770792163908,8.306527888635173e-05,1.2747514119837433e-05,-1.6773044535511872e-06,-6.537187005051237e-07,-5.293955920339377e-23,-0.0007408381206914783,1.2747514119837433e-05,7.911553984740749e-05,6.862179214393816e-23,-6.373757059918717e-07,-1.5582828609694843e-06,1.062292813003296e-05,-1.6773044535511872e-06,6.862179214393816e-23,4.300780886978828e-08,-3.861557750312806e-24,3.0276626988611833e-25,1.2747514119837433e-05,-6.537187005051237e-07,-6.373757059918717e-07,-3.861557750312806e-24,3.268593218308524e-08,4.963083675318166e-24,1.0128838766831905e-05,-5.293955920339377e-23,-1.5582828609694843e-06,3.0276626988611833e-25,4.963083675318166e-24,3.8957072234779844e-08,40.0,42.0,0.013996480964124203,-0.0007407075027003884,-0.0007070389692671597,1.0370001291448716e-05,1.2154606338299345e-05,9.438235792913474e-06,-0.0007407075027003884,8.110237831715494e-05,1.2154606338299345e-05,-1.6373686548831756e-06,-6.233131557564775e-07,7.940933880509066e-21,-0.0007070389692671597,1.2154606338299345e-05,7.365838973782957e-05,9.455492696364423e-21,-5.929076110078313e-07,-1.4157354826238588e-06,1.0370001291448716e-05,-1.6373686548831756e-06,9.455492696364423e-21,4.198381375886129e-08,-7.611128175431713e-23,-1.8256447632993935e-22,1.2154606338299345e-05,-6.233131557564775e-07,-5.929076110078313e-07,-7.611128175431713e-23,3.0405519879650456e-08,-3.970466940254533e-23,9.438235792913474e-06,7.940933880509066e-21,-1.4157354826238588e-06,-1.8256447632993935e-22,-3.970466940254533e-23,3.453013164289587e-08,40.0,43.0,0.013686485588550568,-0.0007237515528686345,-0.0006755014765076339,1.0128838766831905e-05,1.1602124686760362e-05,8.80902007338591e-06,-0.0007237515528686345,7.923011435195804e-05,1.1602124686760362e-05,-1.5992903854566975e-06,-5.949807473371038e-07,5.293955920339377e-23,-0.0006755014765076339,1.1602124686760362e-05,6.86919447616674e-05,-5.958076459428325e-23,-5.524821062863339e-07,-1.289124952563725e-06,1.0128838766831905e-05,-1.5992903854566975e-06,-5.958076459428325e-23,4.10074463275123e-08,2.1335630650220638e-24,2.9095704678686307e-25,1.1602124686760362e-05,-5.949807473371038e-07,-5.524821062863339e-07,2.1335630650220638e-24,2.8332415524801036e-08,-1.6543612251060553e-24,8.80902007338591e-06,5.293955920339377e-23,-1.289124952563725e-06,2.9095704678686307e-25,-1.6543612251060553e-24,3.069344955974884e-08,40.0,44.0,0.01338992454111576,-0.0007075546309351921,-0.0006460281438194215,9.898638381855562e-06,1.1086474842159078e-05,8.234519555117004e-06,-0.0007075546309351921,7.744234608253464e-05,1.1086474842159078e-05,-1.5629428844476934e-06,-5.685371320396371e-07,2.6469779601696886e-23,-0.0006460281438194215,1.1086474842159078e-05,6.416225369321182e-05,-5.565188387659707e-23,-5.156499582881224e-07,-1.1763598877223558e-06,9.898638381855562e-06,-1.5629428844476934e-06,-5.565188387659707e-23,4.0075455842725205e-08,2.101616367728102e-24,1.0203295567147058e-24,1.1086474842159078e-05,-5.685371320396371e-07,-5.156499582881224e-07,2.101616367728102e-24,2.6443588652114158e-08,-3.308722450212111e-24,8.234519555117004e-06,2.6469779601696886e-23,-1.1763598877223558e-06,1.0203295567147058e-24,-3.308722450212111e-24,2.7357206278111335e-08,40.0,45.0,0.013105942867696285,-0.0006920668529346585,-0.0006184427184052765,9.678667993284762e-06,1.0604453564155847e-05,7.708911653026007e-06,-0.0006920668529346585,7.573349284939468e-05,1.0604453564155847e-05,-1.5282107597158756e-06,-5.438181460704072e-07,3.970466940254533e-22,-0.0006184427184052765,1.0604453564155847e-05,6.002233931212686e-05,-5.206108054389603e-23,-4.820206527256232e-07,-1.0756621122709475e-06,9.678667993284762e-06,-1.5282107597158756e-06,-5.206108054389603e-23,3.9184889999432926e-08,4.180862710944013e-25,1.0580750965672372e-25,1.0604453564155847e-05,-5.438181460704072e-07,-4.820206527256232e-07,4.180862710944013e-25,2.4719007285511907e-08,-1.819797347616661e-23,7.708911653026007e-06,3.970466940254533e-22,-1.0756621122709475e-06,1.0580750965672372e-25,-1.819797347616661e-23,2.444686586500211e-08,40.0,46.0,0.012833756394684315,-0.0006772426422685385,-0.0005925873410888016,9.468262760492507e-06,1.0153200491913594e-05,7.227104561025044e-06,-0.0006772426422685385,7.409843237837777e-05,1.0153200491913594e-05,-1.4949888509363518e-06,-5.206769628784969e-07,2.3822801641527197e-22,-0.0005925873410888016,1.0153200491913594e-05,5.623114702757448e-05,-4.877274541491845e-23,-4.5125335645934683e-07,-9.855142479864298e-07,9.468262760492507e-06,-1.4949888509363518e-06,-4.877274541491845e-23,3.8333045182525893e-08,2.0457610713339284e-24,4.412070446693305e-25,1.0153200491913594e-05,-5.206769628784969e-07,-4.5125335645934683e-07,2.0457610713339284e-24,2.31411974027651e-08,-1.2407709188295415e-23,7.227104561025044e-06,2.3822801641527197e-22,-9.855142479864298e-07,4.412070446693305e-25,-1.2407709188295415e-23,2.19003162271747e-08,40.0,47.0,0.012572645209729671,-0.000663040264043957,-0.0005683202180080116,9.266809684049804e-06,9.73015085037332e-06,6.784628567402251e-06,-0.000663040264043957,7.253248622873798e-05,9.73015085037332e-06,-1.4631805242970586e-06,-4.989821036360809e-07,-1.3234889800848443e-22,-0.0005683202180080116,9.73015085037332e-06,5.2752708143088967e-05,4.5755680618584654e-23,-4.230500110224966e-07,-9.046171385307389e-07,9.266809684049804e-06,-1.4631805242970586e-06,4.5755680618584654e-23,3.751744870328366e-08,-2.021298691878251e-24,-3.7104001186550755e-25,9.73015085037332e-06,-4.989821036360809e-07,-4.230500110224966e-07,-2.021298691878251e-24,2.1694873453270702e-08,7.444625512977249e-24,6.784628567402251e-06,-1.3234889800848443e-22,-9.046171385307389e-07,-3.7104001186550755e-25,7.444625512977249e-24,1.9665590045292447e-08,40.0,48.0,0.012321947142481804,-0.0006494213594123721,-0.0005455139325931668,9.073751243704464e-06,9.333001798950136e-06,6.377551017067162e-06,-0.0006494213594123721,7.103136158548295e-05,9.333001798950136e-06,-1.432697558811924e-06,-4.786154477187665e-07,-7.940933880509066e-23,-0.0005455139325931668,9.333001798950136e-06,4.955541589879431e-05,-0.0,-3.971489945797657e-07,-8.318544928442861e-07,9.073751243704464e-06,-1.432697558811924e-06,-0.0,3.673583748309284e-08,0.0,0.0,9.333001798950136e-06,-4.786154477187665e-07,-3.971489945797657e-07,0.0,2.036661506110704e-08,4.1359030627651384e-24,6.377551017067162e-06,-7.940933880509066e-23,-8.318544928442861e-07,0.0,4.1359030627651384e-24,1.7699031573670254e-08,40.0,49.0,0.012081051245331764,-0.0006363507127389312,-0.0005240535247139633,8.888572665455285e-06,8.959681508713402e-06,6.002400823490461e-06,-0.0006363507127389312,6.959112215554342e-05,8.959681508713402e-06,-1.4034588957656524e-06,-4.5947084004183125e-07,3.943997160652836e-21,-0.0005240535247139633,8.959681508713402e-06,4.661143248085864e-05,6.023916961523282e-21,-3.733200628630584e-07,-7.662639518457581e-07,8.888572665455285e-06,-1.4034588957656524e-06,6.023916961523282e-21,3.598612607902396e-08,-4.9901087877535896e-23,-9.86159876999963e-23,8.959681508713402e-06,-4.5947084004183125e-07,-3.733200628630584e-07,-4.9901087877535896e-23,1.9144618335076302e-08,-4.1359030627651384e-24,6.002400823490461e-06,3.943997160652836e-21,-7.662639518457581e-07,-9.86159876999963e-23,-4.1359030627651384e-24,1.5963832922238907e-08,40.0,50.0,0.01184939406812191,-0.0006237958441488445,-0.0005038350936956704,8.710801012057345e-06,8.608320968050975e-06,5.6561084420536645e-06,-0.0006237958441488445,6.820812996011227e-05,8.608320968050975e-06,-1.3753897292190231e-06,-4.414523857576569e-07,7.940933880509066e-23,-0.0005038350936956704,8.608320968050975e-06,4.389614696265198e-05,-3.8073838320520205e-23,-3.513600574933662e-07,-7.070135552567081e-07,8.710801012057345e-06,-1.3753897292190231e-06,-3.8073838320520205e-23,3.526640313111784e-08,3.047562701271515e-25,1.996462121182563e-25,8.608320968050975e-06,-4.414523857576569e-07,-3.513600574933662e-07,3.047562701271515e-25,1.8018464942315404e-08,-3.308722450212111e-24,5.6561084420536645e-06,7.940933880509066e-23,-7.070135552567081e-07,1.996462121182563e-25,-3.308722450212111e-24,1.4428848338354783e-08,40.0,51.0,0.011626453138887882,-0.0006117268931120634,-0.0004847646923735738,8.540001545043197e-06,8.277232154796366e-06,5.3359513003670145e-06,-0.0006117268931120634,6.6879038058687e-05,8.277232154796366e-06,-1.3484212786352145e-06,-4.244734270741901e-07,-5.293955920339377e-23,-0.0004847646923735738,8.277232154796366e-06,4.1387775127077475e-05,-0.0,-3.3108929642367e-07,-6.533817895615357e-07,8.540001545043197e-06,-1.3484212786352145e-06,-0.0,3.457490294067611e-08,0.0,0.0,8.277232154796366e-06,-4.244734270741901e-07,-3.3108929642367e-07,0.0,1.69789373671847e-08,2.481541837659083e-24,5.3359513003670145e-06,-5.293955920339377e-23,-6.533817895615357e-07,0.0,2.481541837659083e-24,1.3067636750463407e-08,40.0,52.0,0.011411746963858604,-0.0006001160363666713,-0.00046675693010911345,8.375770448765252e-06,7.964883479871787e-06,5.0395096877764445e-06,-0.0006001160363666713,6.560075416928157e-05,7.964883479871787e-06,-1.322490106758778e-06,-4.084555769168219e-07,2.6469779601696886e-23,-0.00046675693010911345,7.964883479871787e-06,3.906697384081781e-05,-0.0,-3.123483907074842e-07,-6.047411602594366e-07,8.375770448765252e-06,-1.322490106758778e-06,-0.0,3.391000191754756e-08,0.0,0.0,7.964883479871787e-06,-4.084555769168219e-07,-3.123483907074842e-07,0.0,1.6017866144579784e-08,0.0,5.0395096877764445e-06,2.6469779601696886e-23,-6.047411602594366e-07,0.0,0.0,1.1857670401127507e-08,40.0,53.0,0.011204826645553112,-0.000588937837164849,-0.00044973433250561357,8.21773755887989e-06,7.669887963857036e-06,4.764627192344051e-06,-0.000588937837164849,6.437042611651123e-05,7.669887963857036e-06,-1.2975374374946114e-06,-3.9332758206001017e-07,-9.26442286059391e-23,-0.00044973433250561357,7.669887963857036e-06,3.691652818815783e-05,-0.0,-2.9499568654500763e-07,-5.605443789136189e-07,8.21773755887989e-06,-1.2975374374946114e-06,-0.0,3.32701901584187e-08,0.0,0.0,7.669887963857036e-06,-3.9332758206001017e-07,-2.9499568654500763e-07,0.0,1.5127984198670674e-08,4.1359030627651384e-24,4.764627192344051e-06,-9.26442286059391e-23,-5.605443789136189e-07,0.0,4.1359030627651384e-24,1.0779699799456921e-08,40.0,54.0,0.011005275882780552,-0.000578168430365622,-0.00043362632277421653,8.065557267400436e-06,7.390983228106052e-06,4.509379323280882e-06,-0.000578168430365622,6.318539817584679e-05,7.390983228106052e-06,-1.2735089285342838e-06,-3.790247831148008e-07,0.0,-0.00043362632277421653,7.390983228106052e-06,3.492108953651041e-05,-0.0,-2.789050199680787e-07,-5.203129944675311e-07,8.065557267400436e-06,-1.2735089285342838e-06,-0.0,3.265407499952744e-08,0.0,0.0,7.390983228106052e-06,-3.790247831148008e-07,-2.789050199680787e-07,0.0,1.4302821149669853e-08,0.0,4.509379323280882e-06,0.0,-5.203129944675311e-07,0.0,0.0,9.81722703130572e-09,40.0,55.0,0.010812709107995033,-0.000567785871680826,-0.00041836852324195206,7.91891034168657e-06,7.127019216568442e-06,4.272043952369131e-06,-0.000567785871680826,6.204321834957227e-05,7.127019216568442e-06,-1.2503542166086845e-06,-3.654881766124163e-07,-1.0587911840678754e-22,-0.00041836852324195206,7.127019216568442e-06,3.3066931791836396e-05,-0.0,-2.6396367047709646e-07,-4.836276161768183e-07,7.91891034168657e-06,-1.2503542166086845e-06,-0.0,3.206036680580837e-08,0.0,0.0,7.127019216568442e-06,-3.654881766124163e-07,-2.6396367047709646e-07,0.0,1.3536598508778752e-08,4.1359030627651384e-24,4.272043952369131e-06,-1.0587911840678754e-22,-4.836276161768183e-07,0.0,4.1359030627651384e-24,8.956066110954453e-09,40.0,56.0,0.01062676589936018,-0.0005577696138061583,-0.00040390214417129755,7.777501195960212e-06,6.876948646095116e-06,4.051075848110486e-06,-0.0005577696138061583,6.094160198699683e-05,6.876948646095116e-06,-1.2280264627406723e-06,-3.526640171003237e-07,-1.0587911840678754e-22,-0.00040390214417129755,6.876948646095116e-06,3.134177313768305e-05,-0.0,-2.500708546904207e-07,-4.5011955762674916e-07,7.777501195960212e-06,-1.2280264627406723e-06,-0.0,3.148785765461071e-08,0.0,0.0,6.876948646095116e-06,-3.526640171003237e-07,-2.500708546904207e-07,0.0,1.2824146189416297e-08,3.308722450212111e-24,4.051075848110486e-06,-1.0587911840678754e-22,-4.5011955762674916e-07,0.0,3.308722450212111e-24,8.183992150634367e-09,40.0,57.0,0.010447109118103981,-0.0005481006810441613,-0.0003901733725797385,7.641054253326729e-06,6.639812454523053e-06,3.845088940579444e-06,-0.0005481006810441613,5.987842450849712e-05,6.639812454523053e-06,-1.2064822385582374e-06,-3.405031918646273e-07,2.6469779601696886e-23,-0.0003901733725797385,6.639812454523053e-06,2.9734583222307265e-05,-0.0,-2.3713614893949853e-07,-4.19464271317338e-07,7.641054253326729e-06,-1.2064822385582374e-06,-0.0,3.093543909926666e-08,0.0,0.0,6.639812454523053e-06,-3.405031918646273e-07,-2.3713614893949853e-07,0.0,1.2160828788410072e-08,-8.271806125530277e-25,3.845088940579444e-06,2.6469779601696886e-23,-4.19464271317338e-07,0.0,-8.271806125530277e-25,7.490433162615773e-09,40.0,58.0,0.010273425839841366,-0.0005387612618505955,-0.0003771329065784812,7.509311672038166e-06,6.414733888959745e-06,3.652834493550472e-06,-0.0005387612618505955,5.885171049158089e-05,6.414733888959745e-06,-1.185680730486638e-06,-3.289607093392988e-07,-3.970466940254533e-23,-0.0003771329065784812,6.414733888959745e-06,2.8235446734470315e-05,-0.0,-2.2507838082219678e-07,-3.9137512430897914e-07,7.509311672038166e-06,-1.185680730486638e-06,-0.0,3.040207019466834e-08,0.0,0.0,6.414733888959745e-06,-3.289607093392988e-07,-2.2507838082219678e-07,0.0,1.1542481637150104e-08,1.6543612251060553e-24,3.652834493550472e-06,-3.970466940254533e-23,-3.9137512430897914e-07,0.0,1.6543612251060553e-24,6.866230251034722e-09,40.0,59.0,0.01010542269796133,-0.0005297348252497613,-0.00036473546060733497,7.382035164482659e-06,6.200909410836175e-06,3.473187007330125e-06,-0.0005297348252497613,5.785961548099294e-05,6.200909410836175e-06,-1.1655845355562633e-06,-3.1799535804566403e-07,-2.514629062161204e-22,-0.00036473546060733497,6.200909410836175e-06,2.6835430617211387e-05,-0.0,-2.1382446391271515e-07,-3.6559862337526283e-07,7.382035164482659e-06,-1.1655845355562633e-06,-0.0,2.988678104998144e-08,0.0,0.0,6.200909410836175e-06,-3.1799535804566403e-07,-2.1382446391271515e-07,0.0,1.0965357510883678e-08,8.68539643180679e-24,3.473187007330125e-06,-2.514629062161204e-22,-3.6559862337526283e-07,0.0,8.68539643180679e-24,6.303424893161491e-09,40.0,60.0,0.009942825883626938,-0.0005210058880038559,-0.0003529394743964076,7.2590009949635714e-06,5.997600965201855e-06,3.3051296668418217e-06,-0.0005210058880038559,5.6900411436799914e-05,5.997600965201855e-06,-1.1461580697869067e-06,-3.075692802667618e-07,1.9322939109238726e-21,-0.0003529394743964076,5.997600965201855e-06,2.5526478566462174e-05,3.2846017343030937e-21,-2.0330850247773924e-07,-3.419099527945946e-07,7.2590009949635714e-06,-1.1461580697869067e-06,3.2846017343030937e-21,2.9388669275931534e-08,-2.6160579259008268e-23,-4.39950251196655e-23,5.997600965201855e-06,-3.075692802667618e-07,-2.0330850247773924e-07,-2.6160579259008268e-23,1.0426076890723834e-08,-7.031035206700735e-24,3.3051296668418217e-06,1.9322939109238726e-21,-3.419099527945946e-07,-4.39950251196655e-23,-7.031035206700735e-24,5.795083968251902e-09,40.0,61.0,0.009785379283130169,-0.0005125599564053118,-0.00034170664730481803,7.140001343941549e-06,5.804130069009261e-06,3.1477425181947183e-06,-0.0005125599564053118,5.597249764832668e-05,5.804130069009261e-06,-1.1273685913693043e-06,-2.976476878302492e-07,1.3234889800848443e-23,-0.00034170664730481803,5.804130069009261e-06,2.4301300072693266e-05,-0.0,-1.934709956685765e-07,-3.201093932148069e-07,7.140001343941549e-06,-1.1273685913693043e-06,-0.0,2.8906887550306237e-08,0.0,0.0,5.804130069009261e-06,-2.976476878302492e-07,-1.934709956685765e-07,0.0,9.921589771977324e-09,-4.1359030627651384e-25,3.1477425181947183e-06,1.3234889800848443e-23,-3.201093932148069e-07,0.0,-4.1359030627651384e-25,5.3351567608217465e-09,40.0,62.0,0.009632840752601624,-0.0005043835262767971,-0.00033100167638622224,7.024839760561008e-06,5.619871899398277e-06,3.00019200949464e-06,-0.0005043835262767971,5.50743643543683e-05,5.619871899398277e-06,-1.1091852911704336e-06,-2.881985494695982e-07,1.3234889800848443e-22,-0.00033100167638622224,5.619871899398277e-06,2.315330129931681e-05,-0.0,-1.8425809855671105e-07,-3.000191952651221e-07,7.024839760561008e-06,-1.1091852911704336e-06,-0.0,2.8440647170668854e-08,0.0,0.0,5.619871899398277e-06,-2.881985494695982e-07,-1.8425809855671105e-07,0.0,9.449133031580459e-09,-4.1359030627651384e-24,3.00019200949464e-06,1.3234889800848443e-22,-3.000191952651221e-07,0.0,-4.1359030627651384e-24,4.918347507043563e-09,40.0,63.0,0.009484984911978245,-0.0004964638501405716,-0.0003207920235581696,6.913334345881594e-06,5.4442507462226786e-06,2.861721668523387e-06,-0.0004964638501405716,5.420460001914762e-05,5.4442507462226786e-06,-1.0915790653598378e-06,-2.791923634504201e-07,-1.5881867761018131e-22,-0.0003207920235581696,5.4442507462226786e-06,2.2076495952205732e-05,-0.0,-1.7562099685619614e-07,-2.8148082265033736e-07,6.913334345881594e-06,-1.0915790653598378e-06,-0.0,2.7989207396217353e-08,0.0,0.0,5.4442507462226786e-06,-2.791923634504201e-07,-1.7562099685619614e-07,0.0,9.006204670924944e-09,4.963083675318166e-24,2.861721668523387e-06,-1.5881867761018131e-22,-2.8148082265033736e-07,0.0,4.963083675318166e-24,4.54001325422837e-09,40.0,64.0,0.00934159941971302,-0.0004887890536338091,-0.0003110475663561374,6.805313660152024e-06,5.276735464576632e-06,2.7316434625390684e-06,-0.0004887890536338091,5.336188041837886e-05,5.276735464576632e-06,-1.0745231975306524e-06,-2.706018165099522e-07,-5.293955920339377e-23,-0.0003110475663561374,5.276735464576632e-06,2.106545252900105e-05,-0.0,-1.6751540954373922e-07,-2.643525931489421e-07,6.805313660152024e-06,-1.0745231975306524e-06,-0.0,2.7551877224141208e-08,0.0,0.0,5.276735464576632e-06,-2.706018165099522e-07,-1.6751540954373922e-07,0.0,8.590533617791607e-09,2.0679515313825692e-24,2.7316434625390684e-06,-5.293955920339377e-23,-2.643525931489421e-07,0.0,2.0679515313825692e-24,4.196072822537644e-09,41.0,3.0,0.11757556349039078,-0.008305647410452366,-0.0714285746216774,0.00013505118840839714,0.001742160296998918,0.012195121496915817,-0.008305647410452366,0.0009762642439454794,0.001742160296998918,-2.0777104509761557e-05,-8.710801193956286e-05,-2.168404344971009e-18,-0.0714285746216774,0.001742160296998918,0.19337978959083557,-8.435086408569416e-20,-0.001742160296998918,-0.0731707289814949,0.00013505118840839714,-2.0777104509761557e-05,-8.435086408569416e-20,5.19427658218774e-07,1.7130370778896287e-22,3.9635318709235853e-20,0.001742160296998918,-8.710801193956286e-05,-0.001742160296998918,1.7130370778896287e-22,8.710801193956286e-05,1.0842021724855044e-19,0.012195121496915817,-2.168404344971009e-18,-0.0731707289814949,3.9635318709235853e-20,1.0842021724855044e-19,0.03658536449074745,41.0,4.0,0.0982862040400505,-0.006490559782832861,-0.046515680849552155,0.00010128838766831905,0.0010452962014824152,0.006097560748457909,-0.006490559782832861,0.0007452644058503211,0.0010452962014824152,-1.558282929181587e-05,-5.2264807891333476e-05,-2.222614453595284e-18,-0.046515680849552155,0.0010452962014824152,0.07369337975978851,-9.186310838257335e-21,-0.0006968640955165029,-0.018292682245373726,0.00010128838766831905,-1.558282929181587e-05,-9.186310838257335e-21,3.895707152423711e-07,-7.631001159356041e-22,9.031938256439626e-21,0.0010452962014824152,-5.2264807891333476e-05,-0.0006968640955165029,-7.631001159356041e-22,3.484320404822938e-05,1.0842021724855044e-18,0.006097560748457909,-2.222614453595284e-18,-0.018292682245373726,9.031938256439626e-21,1.0842021724855044e-18,0.006097560748457909,41.0,5.0,0.08448261767625809,-0.00533182080835104,-0.032752614468336105,8.103071013465524e-05,0.0006968640955165029,0.003484320593997836,-0.00533182080835104,0.0006031801458448172,0.0006968640955165029,-1.2466262887755875e-05,-3.484320404822938e-05,1.4094628242311558e-18,-0.032752614468336105,0.0006968640955165029,0.03728222846984863,7.766584240663348e-20,-0.00034843204775825143,-0.006968641187995672,8.103071013465524e-05,-1.2466262887755875e-05,7.766584240663348e-20,3.1165657787823875e-07,-2.027289222706409e-23,-1.9092596773623984e-20,0.0006968640955165029,-3.484320404822938e-05,-0.00034843204775825143,-2.027289222706409e-23,1.742160202411469e-05,-3.2526065174565133e-19,0.003484320593997836,1.4094628242311558e-18,-0.006968641187995672,-1.9092596773623984e-20,-3.2526065174565133e-19,0.001742160296998918,41.0,6.0,0.07409390062093735,-0.00452614389359951,-0.024328023195266724,6.752559420419857e-05,0.0004977600765414536,0.002177700400352478,-0.00452614389359951,0.0005067980964668095,0.0004977600765414536,-1.0388552254880778e-05,-2.488800419087056e-05,8.944667923005412e-19,-0.024328023195266724,0.0004977600765414536,0.02170856110751629,3.384483147034018e-20,-0.00019910403352696449,-0.003266550600528717,6.752559420419857e-05,-1.0388552254880778e-05,3.384483147034018e-20,2.59713829109387e-07,-3.106555449341477e-22,-4.812082016055324e-21,0.0004977600765414536,-2.488800419087056e-05,-0.00019910403352696449,-3.106555449341477e-22,9.955201676348224e-06,-2.337810934421869e-19,0.002177700400352478,8.944667923005412e-19,-0.003266550600528717,-4.812082016055324e-21,-2.337810934421869e-19,0.000653310096822679,41.0,7.0,0.06598600745201111,-0.003932883497327566,-0.018790442496538162,5.7879078667610884e-05,0.00037332007195800543,0.0014518002280965447,-0.003932883497327566,0.0004370649694465101,0.00037332007195800543,-8.904473361326382e-06,-1.866600359790027e-05,4.607859233063394e-19,-0.018790442496538162,0.00037332007195800543,0.013812841847538948,2.858247320316548e-20,-0.0001244400191353634,-0.001742160296998918,5.7879078667610884e-05,-8.904473361326382e-06,2.858247320316548e-20,2.226118454018433e-07,-8.350407595037774e-23,-4.240425087979456e-21,0.00037332007195800543,-1.866600359790027e-05,-0.0001244400191353634,-8.350407595037774e-23,6.22200104771764e-06,-7.623296525288703e-20,0.0014518002280965447,4.607859233063394e-19,-0.001742160296998918,-4.240425087979456e-21,-7.623296525288703e-20,0.00029036003979854286,41.0,8.0,0.05947991833090782,-0.0034775680396705866,-0.01495354250073433,5.064419383415952e-05,0.00029036003979854286,0.0010162601247429848,-0.0034775680396705866,0.0003842465812340379,0.00029036003979854286,-7.791414645907935e-06,-1.4518001989927143e-05,1.0842021724855044e-19,-0.01495354250073433,0.00029036003979854286,0.009353741072118282,2.9866696953548195e-20,-8.296001033158973e-05,-0.0010162601247429848,5.064419383415952e-05,-7.791414645907935e-06,2.9866696953548195e-20,1.9478535762118554e-07,-4.705779209922673e-22,-2.401695684482666e-21,0.00029036003979854286,-1.4518001989927143e-05,-8.296001033158973e-05,-4.705779209922673e-22,4.148000698478427e-06,5.929230630780102e-21,0.0010162601247429848,1.0842021724855044e-19,-0.0010162601247429848,-2.401695684482666e-21,5.929230630780102e-21,0.00014518001989927143,41.0,9.0,0.05414275825023651,-0.0031169813591986895,-0.012184563092887402,4.5017062802799046e-05,0.00023228803183883429,0.0007390982937067747,-0.0031169813591986895,0.0003428430063650012,0.00023228803183883429,-6.925701654836303e-06,-1.1614401955739595e-05,1.1519648082658485e-19,-0.012184563092887402,0.00023228803183883429,0.006636046804487705,1.0135166972418786e-20,-5.807200795970857e-05,-0.000633512856438756,4.5017062802799046e-05,-6.925701654836303e-06,1.0135166972418786e-20,1.7314253852873662e-07,-9.34539848588176e-25,-1.2036007017432903e-21,0.00023228803183883429,-1.1614401955739595e-05,-5.807200795970857e-05,-9.34539848588176e-25,2.9036004889348987e-06,-1.7787691892340307e-20,0.0007390982937067747,1.1519648082658485e-19,-0.000633512856438756,-1.2036007017432903e-21,-1.7787691892340307e-20,7.91891070548445e-05,41.0,10.0,0.04968508705496788,-0.002824288560077548,-0.010120367631316185,4.051535506732762e-05,0.00019005384820047766,0.000554323720280081,-0.002824288560077548,0.00030950899235904217,0.00019005384820047766,-6.233131443877937e-06,-9.502692591922823e-06,9.486769009248164e-20,-0.010120367631316185,0.00019005384820047766,0.0048820083029568195,1.531075124683855e-20,-4.223418727633543e-05,-0.000415742804761976,4.051535506732762e-05,-6.233131443877937e-06,1.531075124683855e-20,1.5582828893911937e-07,2.2124723638319966e-22,-2.307150111768527e-21,0.00019005384820047766,-9.502692591922823e-06,-4.223418727633543e-05,2.2124723638319966e-22,2.1117093638167717e-06,4.235164736271502e-21,0.000554323720280081,9.486769009248164e-20,-0.000415742804761976,-2.307150111768527e-21,4.235164736271502e-21,4.619364335667342e-05,41.0,11.0,0.04590588063001633,-0.0025819330476224422,-0.008540240116417408,3.683214163174853e-05,0.000158378214109689,0.00042640286847017705,-0.0025819330476224422,0.0002820916997734457,0.000158378214109689,-5.666483048116788e-06,-7.91891034168657e-06,-1.0164395367051604e-20,-0.008540240116417408,0.000158378214109689,0.0036979280412197113,4.808665049267141e-21,-3.167564136674628e-05,-0.00028426857898011804,3.683214163174853e-05,-5.666483048116788e-06,4.808665049267141e-21,1.4166208472943254e-07,-2.3460652639335783e-22,3.245178126574748e-23,0.000158378214109689,-7.91891034168657e-06,-3.167564136674628e-05,-2.3460652639335783e-22,1.5837820228625787e-06,1.9058241313221758e-21,0.00042640286847017705,-1.0164395367051604e-20,-0.00028426857898011804,3.245178126574748e-23,1.9058241313221758e-21,2.8426857170416042e-05,41.0,12.0,0.04266111180186272,-0.0023779396433383226,-0.007303671911358833,3.3762797102099285e-05,0.00013401232718024403,0.00033503081067465246,-0.0023779396433383226,0.0002591424563433975,0.00013401232718024403,-5.194276127440389e-06,-6.700616268062731e-06,-7.453889935837843e-20,-0.007303671911358833,0.00013401232718024403,0.002869082149118185,-1.109737027968689e-20,-2.436587783449795e-05,-0.00020101849804632366,3.3762797102099285e-05,-5.194276127440389e-06,-1.109737027968689e-20,1.298569145546935e-07,1.222950109218492e-22,7.635589426816296e-22,0.00013401232718024403,-6.700616268062731e-06,-2.436587783449795e-05,1.222950109218492e-22,1.2182938462501625e-06,7.411538288475128e-21,0.00033503081067465246,-7.453889935837843e-20,-0.00020101849804632366,7.635589426816296e-22,7.411538288475128e-21,1.8274407921126112e-05,41.0,13.0,0.03984484821557999,-0.0022038572933524847,-0.006317724008113146,3.116565858363174e-05,0.00011486771109048277,0.00026802465436048806,-0.0022038572933524847,0.00023965020955074579,0.00011486771109048277,-4.7947164603101555e-06,-5.743385372625198e-06,-9.486769009248164e-20,-0.006317724008113146,0.00011486771109048277,0.0022712480276823044,-1.439101203179768e-20,-1.914461790875066e-05,-0.0001461952633690089,3.116565858363174e-05,-4.7947164603101555e-06,-1.439101203179768e-20,1.1986792003426672e-07,8.788416617318861e-23,9.763321216249748e-22,0.00011486771109048277,-5.743385372625198e-06,-1.914461790875066e-05,8.788416617318861e-23,9.57230895437533e-07,5.717472393966527e-21,0.00026802465436048806,-9.486769009248164e-20,-0.0001461952633690089,9.763321216249748e-22,5.717472393966527e-21,1.2182938917248975e-05,41.0,14.0,0.03737743943929672,-0.0020535497460514307,-0.005518914666026831,2.8939539333805442e-05,9.955201676348224e-05,0.00021777003712486476,-0.0020535497460514307,0.00022288788750302047,9.955201676348224e-05,-4.452236680663191e-06,-4.977600838174112e-06,-1.6940658945086007e-21,-0.005518914666026831,9.955201676348224e-05,0.0018290289444848895,-8.797307344777966e-21,-1.531569432700053e-05,-0.00010888501856243238,2.8939539333805442e-05,-4.452236680663191e-06,-8.797307344777966e-21,1.1130592270092166e-07,1.0361688621166714e-22,4.552640229855887e-22,9.955201676348224e-05,-4.977600838174112e-06,-1.531569432700053e-05,1.0361688621166714e-22,7.657847618247615e-07,-2.8587361969832636e-21,0.00021777003712486476,-1.6940658945086007e-21,-0.00010888501856243238,4.552640229855887e-22,-2.8587361969832636e-21,8.375770448765252e-06,41.0,15.0,0.03519783541560173,-0.0019224536372348666,-0.004862676840275526,2.7010237317881547e-05,8.710801193956286e-05,0.00017934002971742302,-0.0019224536372348666,0.00020831904839724302,8.710801193956286e-05,-4.155421265750192e-06,-4.355400506028673e-06,4.0657581468206416e-20,-0.004862676840275526,8.710801193956286e-05,0.0014948005555197597,1.3269835758348107e-20,-1.244400209543528e-05,-8.277231972897425e-05,2.7010237317881547e-05,-4.155421265750192e-06,1.3269835758348107e-20,1.0388552595941292e-07,-1.8681389963240942e-22,-6.077520728987097e-22,8.710801193956286e-05,-4.355400506028673e-06,-1.244400209543528e-05,-1.8681389963240942e-22,6.22200104771764e-07,-2.064642808932357e-21,0.00017934002971742302,4.0657581468206416e-20,-8.277231972897425e-05,-6.077520728987097e-22,-2.064642808932357e-21,5.9123085520695895e-06,41.0,16.0,0.03325843811035156,-0.0018071039812639356,-0.004316970705986023,2.532209691707976e-05,7.686001481488347e-05,0.00014945001748856157,-0.0018071039812639356,0.00019553929450921714,7.686001481488347e-05,-3.895707322953967e-06,-3.8430007407441735e-06,-5.082197683525802e-20,-0.004316970705986023,7.686001481488347e-05,0.0012374462094157934,-8.492444437025293e-21,-1.0248001672152895e-05,-6.405000749509782e-05,2.532209691707976e-05,-3.895707322953967e-06,-8.492444437025293e-21,9.739267881059277e-08,-5.261976761419166e-24,5.724597739072169e-22,7.686001481488347e-05,-3.8430007407441735e-06,-1.0248001672152895e-05,-5.261976761419166e-24,5.124001063450123e-07,3.8116482626443515e-21,0.00014945001748856157,-5.082197683525802e-20,-6.405000749509782e-05,5.724597739072169e-22,3.8116482626443515e-21,4.270000772521598e-06,41.0,17.0,0.03152161464095116,-0.001704822643660009,-0.003858282696455717,2.3832561055314727e-05,6.832001236034557e-05,0.0001258526463061571,-0.001704822643660009,0.00018423792789690197,6.832001236034557e-05,-3.6665480820374796e-06,-3.4160004815930733e-06,3.049318610115481e-20,-0.003858282696455717,6.832001236034557e-05,0.0010360369924455881,1.735487731086082e-21,-8.540001545043197e-06,-5.0341059250058606e-05,2.3832561055314727e-05,-3.6665480820374796e-06,1.735487731086082e-21,9.166370062985152e-08,2.0237497615968634e-23,-1.6020582324769642e-22,6.832001236034557e-05,-3.4160004815930733e-06,-8.540001545043197e-06,2.0237497615968634e-23,4.2700006019913417e-07,-2.964615315390051e-21,0.0001258526463061571,3.049318610115481e-20,-5.0341059250058606e-05,-1.6020582324769642e-22,-2.964615315390051e-21,3.146316203128663e-06,41.0,18.0,0.02995719574391842,-0.0016135062323883176,-0.0034690385218709707,2.2508531401399523e-05,6.112843402661383e-05,0.00010697475227061659,-0.0016135062323883176,0.00017417228082194924,6.112843402661383e-05,-3.4628508274181513e-06,-3.0564215194317512e-06,2.541098841762901e-21,-0.0034690385218709707,6.112843402661383e-05,0.0008761367062106729,-2.9411353817280144e-21,-7.191580152721144e-06,-4.0115533920470625e-05,2.2508531401399523e-05,-3.4628508274181513e-06,-2.9411353817280144e-21,8.657126926436831e-08,4.0437881692929334e-24,1.5571428906708317e-22,6.112843402661383e-05,-3.0564215194317512e-06,-7.191580152721144e-06,4.0437881692929334e-24,3.59579019004741e-07,-5.823351512373315e-22,0.00010697475227061659,2.541098841762901e-21,-4.0115533920470625e-05,1.5571428906708317e-22,-5.823351512373315e-22,2.359737209189916e-06,41.0,19.0,0.028540723025798798,-0.0015314804622903466,-0.0031358886044472456,2.13238708965946e-05,5.5015589168760926e-05,9.169264376396313e-05,-0.0015314804622903466,0.00016515010793227702,5.5015589168760926e-05,-3.280595592514146e-06,-2.7507794584380463e-06,-1.1011428314305904e-20,-0.0031358886044472456,5.5015589168760926e-05,0.0007475647726096213,-6.827068138840357e-21,-6.1128430388635024e-06,-3.236210977775045e-05,2.13238708965946e-05,-3.280595592514146e-06,-6.827068138840357e-21,8.20148926550246e-08,3.984695151085461e-23,3.1085252034673775e-22,5.5015589168760926e-05,-2.7507794584380463e-06,-6.1128430388635024e-06,3.984695151085461e-23,3.0564214625883324e-07,-5.293955920339377e-22,9.169264376396313e-05,-1.1011428314305904e-20,-3.236210977775045e-05,3.1085252034673775e-22,-5.293955920339377e-22,1.797895038180286e-06,41.0,20.0,0.027252154424786568,-0.001457395264878869,-0.002848545089364052,2.025767753366381e-05,4.977600838174112e-05,7.91891070548445e-05,-0.001457395264878869,0.0001570170425111428,4.977600838174112e-05,-3.1165657219389686e-06,-2.488800419087056e-06,-9.317362419797304e-21,-0.002848545089364052,4.977600838174112e-05,0.0006429996574297547,-8.271045183990213e-21,-5.239579877525102e-06,-2.63963684119517e-05,2.025767753366381e-05,-3.1165657219389686e-06,-8.271045183990213e-21,7.791414446955969e-08,1.2943343218585585e-22,2.712058858632677e-22,4.977600838174112e-05,-2.488800419087056e-06,-5.239579877525102e-06,1.2943343218585585e-22,2.6197898250757135e-07,-2.9116757561866574e-22,7.91891070548445e-05,-9.317362419797304e-21,-2.63963684119517e-05,2.712058858632677e-22,-2.9116757561866574e-22,1.38928248816228e-06,41.0,21.0,0.026074914261698723,-0.0013901502825319767,-0.002598976483568549,1.929302561620716e-05,4.525091571849771e-05,6.886009214213118e-05,-0.0013901502825319767,0.00014964777801651508,4.525091571849771e-05,-2.968157787108794e-06,-2.2625458768743556e-06,2.879912020664621e-20,-0.002598976483568549,4.525091571849771e-05,0.0005570832872763276,5.845291185651577e-21,-4.525091753748711e-06,-2.1745290723629296e-05,1.929302561620716e-05,-2.968157787108794e-06,5.845291185651577e-21,7.420394609880532e-08,-1.1554496165870094e-22,-1.6186311272448266e-22,4.525091571849771e-05,-2.2625458768743556e-06,-4.525091753748711e-06,-1.1554496165870094e-22,2.2625458484526462e-07,-1.852884572118782e-21,6.886009214213118e-05,2.879912020664621e-20,-2.1745290723629296e-05,-1.6186311272448266e-22,-1.852884572118782e-21,1.0872645361814648e-06,41.0,22.0,0.024995172396302223,-0.0013288395712152123,-0.0023808376863598824,1.8416070815874264e-05,4.131605237489566e-05,6.025257971487008e-05,-0.0013288395712152123,0.00014293950516730547,4.131605237489566e-05,-2.833241524058394e-06,-2.065802618744783e-06,-3.8116482626443515e-20,-0.0023808376863598824,4.131605237489566e-05,0.0004858325410168618,-7.517990940314447e-21,-3.934862434107345e-06,-1.8075774278258905e-05,1.8416070815874264e-05,-2.833241524058394e-06,-7.517990940314447e-21,7.083104236471627e-08,-6.563394517781193e-24,3.4704790730252758e-22,4.131605237489566e-05,-2.065802618744783e-06,-3.934862434107345e-06,-6.563394517781193e-24,1.9674311602102534e-07,1.8925892415213273e-21,6.025257971487008e-05,-3.8116482626443515e-20,-1.8075774278258905e-05,3.4704790730252758e-22,1.8925892415213273e-21,8.607511290392722e-07,41.0,23.0,0.02400129660964012,-0.0012727106222882867,-0.002189062302932143,1.7615371689316817e-05,3.787305104197003e-05,5.3022267820779234e-05,-0.0012727106222882867,0.0001368070807075128,3.787305104197003e-05,-2.7100572879135143e-06,-1.8936524384116638e-06,-3.8963515573697816e-20,-0.002189062302932143,3.787305104197003e-05,0.0004262439615558833,-1.1939189727260119e-20,-3.443004516157089e-06,-1.514921950729331e-05,1.7615371689316817e-05,-2.7100572879135143e-06,-1.1939189727260119e-20,6.775142935566691e-08,9.87069465178119e-23,4.376843649978216e-22,3.787305104197003e-05,-1.8936524384116638e-06,-3.443004516157089e-06,9.87069465178119e-23,1.721502229656835e-07,1.6278914455043585e-21,5.3022267820779234e-05,-3.8963515573697816e-20,-1.514921950729331e-05,4.376843649978216e-22,1.6278914455043585e-21,6.88600891862734e-07,41.0,24.0,0.023083437234163284,-0.0012211328139528632,-0.002019565785303712,1.6881398551049642e-05,3.484320404822938e-05,4.690431524068117e-05,-0.0012211328139528632,0.0001311793748755008,3.484320404822938e-05,-2.5971380637201946e-06,-1.7421602933609392e-06,-2.1813683331212462e-20,-0.002019565785303712,3.484320404822938e-05,0.0003760237595997751,-1.2103467473795723e-20,-3.0298440378828673e-06,-1.2792085726687219e-05,1.6881398551049642e-05,-2.5971380637201946e-06,-1.2103467473795723e-20,6.492845727734675e-08,1.3234889800848443e-22,3.6972077946053814e-22,3.484320404822938e-05,-1.7421602933609392e-06,-3.0298440378828673e-06,1.3234889800848443e-22,1.5149220189414336e-07,5.0735519699529715e-22,4.690431524068117e-05,-2.1813683331212462e-20,-1.2792085726687219e-05,3.6972077946053814e-22,5.0735519699529715e-22,5.561776674767316e-07,41.0,25.0,0.02223319187760353,-0.001173574011772871,-0.0018690252909436822,1.6206142390728928e-05,3.216295954189263e-05,4.169272506260313e-05,-0.001173574011772871,0.00012599652109201998,3.216295954189263e-05,-2.49325262302591e-06,-1.608147954357264e-06,-0.0,-0.0018690252909436822,3.216295954189263e-05,0.0003333993663545698,-2.117582368135751e-22,-2.6802465526998276e-06,-1.0876363376155496e-05,1.6206142390728928e-05,-2.49325262302591e-06,-2.117582368135751e-22,6.233131699673322e-08,6.617444900424222e-24,-0.0,3.216295954189263e-05,-1.608147954357264e-06,-2.6802465526998276e-06,6.617444900424222e-24,1.3401232479282044e-07,-0.0,4.169272506260313e-05,-0.0,-1.0876363376155496e-05,-0.0,-0.0,4.531817978659092e-07,41.0,26.0,0.021443357691168785,-0.0011295819422230124,-0.00173471518792212,1.558282929181587e-05,2.978051816171501e-05,3.722564724739641e-05,-0.0011295819422230124,0.0001212077695527114,2.978051816171501e-05,-2.3973582301550778e-06,-1.4890258626110153e-06,-0.0,-0.00173471518792212,2.978051816171501e-05,0.00029698622529394925,1.0587911840678754e-22,-2.3824413801776245e-06,-9.306411811849102e-06,1.558282929181587e-05,-2.3973582301550778e-06,1.0587911840678754e-22,5.993396001713336e-08,0.0,-0.0,2.978051816171501e-05,-1.4890258626110153e-06,-2.3824413801776245e-06,0.0,1.191220704299667e-07,-0.0,3.722564724739641e-05,-0.0,-9.306411811849102e-06,-0.0,-0.0,3.7225646565275383e-07,41.0,27.0,0.020707715302705765,-0.0010887697571888566,-0.0016143828397616744,1.5005687600933015e-05,2.7653337383526377e-05,3.337471935083158e-05,-0.0010887697571888566,0.00011676980648189783,2.7653337383526377e-05,-2.3085672182787675e-06,-1.3826669373884215e-06,-0.0,-0.0016143828397616744,2.7653337383526377e-05,0.0002656920987647027,3.1763735522036263e-22,-2.127179868693929e-06,-8.009932571440004e-06,1.5005687600933015e-05,-2.3085672182787675e-06,3.1763735522036263e-22,5.771418187805466e-08,-1.3234889800848443e-23,-0.0,2.7653337383526377e-05,-1.3826669373884215e-06,-2.127179868693929e-06,-1.3234889800848443e-23,1.0635898917144004e-07,-0.0,3.337471935083158e-05,-0.0,-8.009932571440004e-06,-0.0,-0.0,3.0807433404334006e-07,41.0,28.0,0.020020872354507446,-0.0010508046252653003,-0.0015061533777043223,1.4469769666902721e-05,2.574621066742111e-05,3.0037246688152663e-05,-0.0010508046252653003,0.00011264542990829796,2.574621066742111e-05,-2.2261183403315954e-06,-1.287310510633688e-06,-0.0,-0.0015061533777043223,2.574621066742111e-05,0.00023864756803959608,1.0587911840678754e-22,-1.9071267161052674e-06,-6.931672032806091e-06,1.4469769666902721e-05,-2.2261183403315954e-06,1.0587911840678754e-22,5.565296135046083e-08,-6.617444900424222e-24,-0.0,2.574621066742111e-05,-1.287310510633688e-06,-1.9071267161052674e-06,-6.617444900424222e-24,9.53563343841779e-08,-0.0,3.0037246688152663e-05,-0.0,-6.931672032806091e-06,-0.0,-0.0,2.567286117027834e-07,41.0,29.0,0.01937812939286232,-0.0010153986513614655,-0.001408456126227975,1.3970811778563075e-05,2.402979771432001e-05,2.7130416128784418e-05,-0.0010153986513614655,0.000108802538306918,2.402979771432001e-05,-2.1493556232599076e-06,-1.2014897947665304e-06,-0.0,-0.001408456126227975,2.402979771432001e-05,0.00021515465050470084,0.0,-1.7164140899694758e-06,-6.028981260897126e-06,1.3970811778563075e-05,-2.1493556232599076e-06,0.0,5.373389200258316e-08,0.0,-0.0,2.402979771432001e-05,-1.2014897947665304e-06,-1.7164140899694758e-06,0.0,8.582070165630284e-08,-0.0,2.7130416128784418e-05,-0.0,-6.028981260897126e-06,-0.0,-0.0,2.153207674382429e-07,41.0,30.0,0.018775371834635735,-0.0009823013097047806,-0.0013199674431234598,1.3505118658940773e-05,2.2479487597593106e-05,2.458693961671088e-05,-0.0009823013097047806,0.0001052132502081804,2.2479487597593106e-05,-2.077710632875096e-06,-1.1239743571422878e-06,-0.0,-0.0013199674431234598,2.2479487597593106e-05,0.0001946486154338345,-5.293955920339377e-23,-1.5503094346058788e-06,-5.2686300477944314e-06,1.3505118658940773e-05,-2.077710632875096e-06,-5.293955920339377e-23,5.194276297970646e-08,3.308722450212111e-24,-0.0,2.2479487597593106e-05,-1.1239743571422878e-06,-1.5503094346058788e-06,3.308722450212111e-24,7.751547315137941e-08,-0.0,2.458693961671088e-05,-0.0,-5.2686300477944314e-06,-0.0,-0.0,1.8167689574966062e-07,41.0,31.0,0.018208978697657585,-0.0009512940305285156,-0.0012395649682730436,1.3069469787296839e-05,2.1074520191177726e-05,2.2351763618644327e-05,-0.0009512940305285156,0.00010185326391365379,2.1074520191177726e-05,-2.0106876945646945e-06,-1.0537260095588863e-06,-0.0,-0.0012395649682730436,2.1074520191177726e-05,0.00017666921485215425,5.293955920339377e-23,-1.4049679748495691e-06,-4.6245027078839485e-06,1.3069469787296839e-05,-2.0106876945646945e-06,5.293955920339377e-23,5.026718952194642e-08,0.0,-0.0,2.1074520191177726e-05,-1.0537260095588863e-06,-1.4049679748495691e-06,0.0,7.024839732139299e-08,-0.0,2.2351763618644327e-05,-0.0,-4.6245027078839485e-06,-0.0,-0.0,1.5415008647323702e-07,41.0,32.0,0.01767575740814209,-0.000922184728551656,-0.00116629246622324,1.266104845853988e-05,1.9797276763711125e-05,2.0379548004711978e-05,-0.000922184728551656,9.870128269540146e-05,1.9797276763711125e-05,-1.9478536614769837e-06,-9.898637927108211e-07,-0.0,-0.00116629246622324,1.9797276763711125e-05,0.00016083878290373832,-1.0587911840678754e-22,-1.2772436548402766e-06,-4.075909600942396e-06,1.266104845853988e-05,-1.9478536614769837e-06,-1.0587911840678754e-22,4.8696339405296385e-08,3.308722450212111e-24,-0.0,1.9797276763711125e-05,-9.898637927108211e-07,-1.2772436548402766e-06,3.308722450212111e-24,6.386218132092836e-08,-0.0,2.0379548004711978e-05,-0.0,-4.075909600942396e-06,-0.0,-0.0,1.3148095945325622e-07,41.0,33.0,0.017172876745462418,-0.0008948043687269092,-0.001099331071600318,1.2277380847081076e-05,1.863273064373061e-05,1.863273064373061e-05,-0.0008948043687269092,9.573857096256688e-05,1.863273064373061e-05,-1.8888277963924338e-06,-9.316365208178468e-07,-1.2705494208814505e-21,-0.001099331071600318,1.863273064373061e-05,0.00014684544294141233,-0.0,-1.1645456652331632e-06,-3.606334985306603e-06,1.2277380847081076e-05,-1.8888277963924338e-06,-0.0,4.7220694909810845e-08,0.0,1.6543612251060553e-24,1.863273064373061e-05,-9.316365208178468e-07,-1.1645456652331632e-06,0.0,5.822728255111542e-08,7.610061635487855e-23,1.863273064373061e-05,-1.2705494208814505e-21,-3.606334985306603e-06,1.6543612251060553e-24,7.610061635487855e-23,1.1269796829083134e-07,41.0,34.0,0.016697818413376808,-0.0008690032991580665,-0.0010379761224612594,1.1916280527657364e-05,1.756800338625908e-05,1.7080003090086393e-05,-0.0008690032991580665,9.294856135966256e-05,1.756800338625908e-05,-1.8332740410187398e-06,-8.784001579442702e-07,5.293955920339377e-23,-0.0010379761224612594,1.756800338625908e-05,0.00013443015632219613,-5.82997870128364e-23,-1.064727484845207e-06,-3.202500465704361e-06,1.1916280527657364e-05,-1.8332740410187398e-06,-5.82997870128364e-23,4.583185031492576e-08,3.770474292474178e-24,-2.654980155331489e-25,1.756800338625908e-05,-8.784001579442702e-07,-1.064727484845207e-06,3.770474292474178e-24,5.323637353171762e-08,0.0,1.7080003090086393e-05,5.293955920339377e-23,-3.202500465704361e-06,-2.654980155331489e-25,0.0,9.70454721027636e-08,41.0,35.0,0.01624833606183529,-0.0008446486899629235,-0.0009816187666729093,1.1575815733522177e-05,1.6592002793913707e-05,1.5695137335569598e-05,-0.0008446486899629235,9.031659283209592e-05,1.6592002793913707e-05,-1.7808947632147465e-06,-8.296001396956854e-07,8.470329472543003e-22,-0.0009816187666729093,1.6592002793913707e-05,0.0001233764924108982,-1.0701204888442975e-22,-9.76000137598021e-07,-2.8536614991026e-06,1.1575815733522177e-05,-1.7808947632147465e-06,-1.0701204888442975e-22,4.45223697909114e-08,2.5009064007299958e-24,2.475156797492224e-24,1.6592002793913707e-05,-8.296001396956854e-07,-9.76000137598021e-07,2.5009064007299958e-24,4.8800007590443784e-08,-5.624828165360588e-23,1.5695137335569598e-05,8.470329472543003e-22,-2.8536614991026e-06,2.475156797492224e-24,-5.624828165360588e-23,8.393121930794223e-08,41.0,36.0,0.01582241803407669,-0.0008216222049668431,-0.0009297303622588515,1.1254265700699762e-05,1.5695137335569598e-05,1.4456048120337073e-05,-0.0008216222049668431,8.782959775999188e-05,1.5695137335569598e-05,-1.7314254137090757e-06,-7.847568781471637e-07,-4.235164736271502e-22,-0.0009297303622588515,1.5695137335569598e-05,0.0001135027123382315,-0.0,-8.968650035967585e-07,-2.551067154854536e-06,1.1254265700699762e-05,-1.7314254137090757e-06,-0.0,4.3285634632184156e-08,0.0,0.0,1.5695137335569598e-05,-7.847568781471637e-07,-8.968650035967585e-07,0.0,4.484325089038066e-08,2.3161057151484775e-23,1.4456048120337073e-05,-4.235164736271502e-22,-2.551067154854536e-06,0.0,2.3161057151484775e-23,7.28876372591003e-08,41.0,37.0,0.015418258495628834,-0.0007998180808499455,-0.0008818506612442434,1.0950096111628227e-05,1.4869077858747914e-05,1.3344044418772683e-05,-0.0007998180808499455,8.547592005925253e-05,1.4869077858747914e-05,-1.6846302060002927e-06,-7.43453881568712e-07,1.9587636905255695e-21,-0.0008818506612442434,1.4869077858747914e-05,0.00010465543164173141,-9.077411707869872e-23,-8.260598747256154e-07,-2.2875503873365233e-06,1.0950096111628227e-05,-1.6846302060002927e-06,-9.077411707869872e-23,4.211575443946458e-08,7.164927286244927e-25,1.9841336796962525e-24,1.4869077858747914e-05,-7.43453881568712e-07,-8.260598747256154e-07,7.164927286244927e-25,4.130299302573803e-08,-1.1249656330721176e-22,1.3344044418772683e-05,1.9587636905255695e-21,-2.2875503873365233e-06,1.9841336796962525e-24,-1.1249656330721176e-22,6.354306947287114e-08,41.0,38.0,0.01503423135727644,-0.0007791414391249418,-0.0008375770412385464,1.06619354482973e-05,1.4106561138760298e-05,1.2343240996415261e-05,-0.0007791414391249418,8.324511145474389e-05,1.4106561138760298e-05,-1.640297796257073e-06,-7.053280342006474e-07,-6.352747104407253e-22,-0.0008375770412385464,1.4106561138760298e-05,9.670460713095963e-05,4.1938938056297454e-23,-7.625168336744537e-07,-2.0572067569446517e-06,1.06619354482973e-05,-1.640297796257073e-06,4.1938938056297454e-23,4.10074463275123e-08,-1.985050138852893e-24,-6.49906261513758e-26,1.4106561138760298e-05,-7.053280342006474e-07,-7.625168336744537e-07,-1.985050138852893e-24,3.812584026263721e-08,3.474158572722716e-23,1.2343240996415261e-05,-6.352747104407253e-22,-2.0572067569446517e-06,-6.49906261513758e-26,3.474158572722716e-23,5.560018223604857e-08,41.0,39.0,0.014668869785964489,-0.0007595070637762547,-0.0007965561817400157,1.0388552254880778e-05,1.3401232536125463e-05,1.1440077287261374e-05,-0.0007595070637762547,8.11278005130589e-05,1.3401232536125463e-05,-1.5982388958946103e-06,-6.700616381749569e-07,2.6469779601696886e-22,-0.0007965561817400157,1.3401232536125463e-05,8.953946962719783e-05,-3.883155499720309e-23,-7.053280342006474e-07,-1.8551476159700542e-06,1.0388552254880778e-05,-1.5982388958946103e-06,-3.883155499720309e-23,3.9955970976279787e-08,1.9602485492079708e-24,-2.263858850958869e-26,1.3401232536125463e-05,-6.700616381749569e-07,-7.053280342006474e-07,1.9602485492079708e-24,3.526640313111784e-08,-1.4889251025954498e-23,1.1440077287261374e-05,2.6469779601696886e-22,-1.8551476159700542e-06,-2.263858850958869e-26,-1.4889251025954498e-23,4.881967541336962e-08,41.0,40.0,0.01432084385305643,-0.0007408381206914783,-0.0007584770792163908,1.0128838766831905e-05,1.2747514119837433e-05,1.062292813003296e-05,-0.0007408381206914783,7.911553984740749e-05,1.2747514119837433e-05,-1.5582828609694843e-06,-6.373757059918717e-07,5.293955920339377e-23,-0.0007584770792163908,1.2747514119837433e-05,8.306527888635173e-05,-3.602382233067874e-23,-6.537187005051237e-07,-1.6773044535511872e-06,1.0128838766831905e-05,-1.5582828609694843e-06,-3.602382233067874e-23,3.8957072234779844e-08,1.9378665931745876e-24,-9.976573491720079e-26,1.2747514119837433e-05,-6.373757059918717e-07,-6.537187005051237e-07,1.9378665931745876e-24,3.268593218308524e-08,-1.6543612251060553e-24,1.062292813003296e-05,5.293955920339377e-23,-1.6773044535511872e-06,-9.976573491720079e-26,-1.6543612251060553e-24,4.300780886978828e-08,41.0,41.0,0.013988950289785862,-0.0007230649935081601,-0.0007230649935081601,9.881793630484026e-06,1.2140490071033128e-05,9.881793630484026e-06,-0.0007230649935081601,7.720070425421e-05,1.2140490071033128e-05,-1.5202759868770954e-06,-6.070245035516564e-07,-5.293955920339377e-23,-0.0007230649935081601,1.2140490071033128e-05,7.720070425421e-05,3.348046850793016e-23,-6.070245035516564e-07,-1.5202759868770954e-06,9.881793630484026e-06,-1.5202759868770954e-06,3.348046850793016e-23,3.800689896138465e-08,-1.9176161393071116e-24,1.6786600145315124e-25,1.2140490071033128e-05,-6.070245035516564e-07,-6.070245035516564e-07,-1.9176161393071116e-24,3.035122375649735e-08,1.6543612251060553e-24,9.881793630484026e-06,-5.293955920339377e-23,-1.5202759868770954e-06,1.6786600145315124e-25,1.6543612251060553e-24,3.800689896138465e-08,41.0,42.0,0.01367209106683731,-0.0007061247597448528,-0.0006900765001773834,9.64651280810358e-06,1.1575815733522177e-05,9.208035407937132e-06,-0.0007061247597448528,7.537636702181771e-05,1.1575815733522177e-05,-1.484078893554397e-06,-5.787907753074251e-07,1.3234889800848443e-22,-0.0006900765001773834,1.1575815733522177e-05,7.18756127753295e-05,3.117107820789565e-23,-5.646739396070188e-07,-1.3812052657158347e-06,9.64651280810358e-06,-1.484078893554397e-06,3.117107820789565e-23,3.710197304940266e-08,-2.4488828482715134e-25,-1.4261829124480382e-24,1.1575815733522177e-05,-5.787907753074251e-07,-5.646739396070188e-07,-2.4488828482715134e-25,2.8233696269808206e-08,-4.963083675318166e-24,9.208035407937132e-06,1.3234889800848443e-22,-1.3812052657158347e-06,-1.4261829124480382e-24,-4.963083675318166e-24,3.368793244362678e-08,41.0,43.0,0.01336926780641079,-0.0006899602012708783,-0.0006592952995561063,9.422175935469568e-06,1.1049642125726677e-05,8.594166502007283e-06,-0.0006899602012708783,7.363627810264006e-05,1.1049642125726677e-05,-1.4495655022983556e-06,-5.524821062863339e-07,-8.205631676526035e-22,-0.0006592952995561063,1.1049642125726677e-05,6.702936661895365e-05,2.906935396343876e-23,-5.261734372652427e-07,-1.2576829249155708e-06,9.422175935469568e-06,-1.4495655022983556e-06,2.906935396343876e-23,3.623913613637342e-08,-1.8825526525766218e-24,2.817476134083768e-25,1.1049642125726677e-05,-5.524821062863339e-07,-5.261734372652427e-07,-1.8825526525766218e-24,2.630867257380487e-08,3.8050308177439273e-23,8.594166502007283e-06,-8.205631676526035e-22,-1.2576829249155708e-06,2.817476134083768e-25,3.8050308177439273e-23,2.994482883877936e-08,41.0,44.0,0.01307956874370575,-0.0006745192804373801,-0.000630528898909688,9.208035407937132e-06,1.0558546819083858e-05,8.03367674961919e-06,-0.0006745192804373801,7.197472586994991e-05,1.0558546819083858e-05,-1.416620762029197e-06,-5.279273409541929e-07,0.0,-0.000630528898909688,1.0558546819083858e-05,6.260930240387097e-05,-0.0,-4.910951929559815e-07,-1.147668172052363e-06,9.208035407937132e-06,-1.416620762029197e-06,-0.0,3.5415521182358134e-08,-1.6543612251060553e-24,8.271806125530277e-25,1.0558546819083858e-05,-5.279273409541929e-07,-4.910951929559815e-07,-1.6543612251060553e-24,2.455476000307044e-08,0.0,8.03367674961919e-06,0.0,-1.147668172052363e-06,8.271806125530277e-25,0.0,2.6689956911241097e-08,41.0,45.0,0.012802157551050186,-0.0006597543833777308,-0.0006036050617694855,9.00341274245875e-06,1.0099480277858675e-05,7.520889084844384e-06,-0.0006597543833777308,7.03865080140531e-05,1.0099480277858675e-05,-1.385140308229893e-06,-5.049739684181986e-07,1.0587911840678754e-22,-0.0006036050617694855,1.0099480277858675e-05,5.856957795913331e-05,-5.0801010931881163e-23,-4.5906728018962895e-07,-1.0494263733562548e-06,9.00341274245875e-06,-1.385140308229893e-06,-5.0801010931881163e-23,3.462850983737553e-08,3.98177393998886e-25,9.102322830851484e-25,1.0099480277858675e-05,-5.049739684181986e-07,-4.5906728018962895e-07,3.98177393998886e-25,2.295336365421008e-08,-5.790264287871194e-24,7.520889084844384e-06,1.0587911840678754e-22,-1.0494263733562548e-06,9.102322830851484e-25,-5.790264287871194e-24,2.3850599717434307e-08,41.0,46.0,0.01253626961261034,-0.0006456221453845501,-0.0005783698288723826,8.807685844658408e-06,9.66971492744051e-06,7.050833573885029e-06,-0.0006456221453845501,6.886688061058521e-05,9.66971492744051e-06,-1.3550286439567572e-06,-4.834857350033417e-07,1.3499587596865412e-21,-0.0005783698288723826,9.66971492744051e-06,5.4870135500095785e-05,2.7127586098100444e-21,-4.2976509462278045e-07,-9.614773262001108e-07,8.807685844658408e-06,-1.3550286439567572e-06,2.7127586098100444e-21,3.387571467783346e-08,-2.9519228715911817e-23,-5.2498156817042785e-23,9.66971492744051e-06,-4.834857350033417e-07,-4.2976509462278045e-07,-2.9519228715911817e-23,2.1488254731139023e-08,2.6469779601696886e-23,7.050833573885029e-06,1.3499587596865412e-21,-9.614773262001108e-07,-5.2498156817042785e-23,2.6469779601696886e-23,2.1366162172853365e-08,41.0,47.0,0.012281201779842377,-0.0006320826360024512,-0.0005546847824007273,8.620288099336904e-06,9.266809684049804e-06,6.619150099140825e-06,-0.0006320826360024512,6.741148536093533e-05,9.266809684049804e-06,-1.326198230344744e-06,-4.633405126241996e-07,1.0587911840678754e-22,-0.0005546847824007273,9.266809684049804e-06,5.147588308318518e-05,4.464821141551936e-23,-4.0290478864335455e-07,-8.825533086564974e-07,8.620288099336904e-06,-1.326198230344744e-06,4.464821141551936e-23,3.315495433753313e-08,-3.494641977215504e-25,-7.654929716637155e-25,9.266809684049804e-06,-4.633405126241996e-07,-4.0290478864335455e-07,-3.494641977215504e-25,2.0145238366353624e-08,-4.1359030627651384e-24,6.619150099140825e-06,1.0587911840678754e-22,-8.825533086564974e-07,-7.654929716637155e-25,-4.1359030627651384e-24,1.918594172423127e-08,41.0,48.0,0.012036305852234364,-0.0006190994172357023,-0.0005324255325831473,8.440699275524821e-06,8.888572665455285e-06,6.22200104771764e-06,-0.0006190994172357023,6.601633504033089e-05,8.888572665455285e-06,-1.2985690318600973e-06,-4.4442865032578993e-07,-2.0117032497289633e-21,-0.0005324255325831473,8.888572665455285e-06,4.835597428609617e-05,-3.22244726998476e-21,-3.78237132281356e-07,-8.115653713502979e-07,8.440699275524821e-06,-1.2985690318600973e-06,-3.22244726998476e-21,3.2464228638673376e-08,3.182320743013651e-23,4.994689860802389e-23,8.888572665455285e-06,-4.4442865032578993e-07,-3.78237132281356e-07,3.182320743013651e-23,1.891185696933917e-08,-4.963083675318166e-24,6.22200104771764e-06,-2.0117032497289633e-21,-8.115653713502979e-07,4.994689860802389e-23,-4.963083675318166e-24,1.7267348439986563e-08,41.0,49.0,0.011800985783338547,-0.0006066389032639563,-0.0005114798550494015,8.268440069514327e-06,8.533030268154107e-06,5.856000825588126e-06,-0.0006066389032639563,6.467776984209195e-05,8.533030268154107e-06,-1.2720677204924868e-06,-4.266514963546797e-07,0.0,-0.0005114798550494015,8.533030268154107e-06,4.548324068309739e-05,7.890084537647243e-23,-3.5554290889194817e-07,-7.475745746887696e-07,8.268440069514327e-06,-1.2720677204924868e-06,7.890084537647243e-23,3.180169017014123e-08,-1.4439492433249732e-24,-8.832448584794718e-25,8.533030268154107e-06,-4.266514963546797e-07,-3.5554290889194817e-07,-1.4439492433249732e-24,1.777714508932604e-08,0.0,5.856000825588126e-06,0.0,-7.475745746887696e-07,-8.832448584794718e-25,0.0,1.5574469713897088e-08,41.0,50.0,0.011574691161513329,-0.0005946700694039464,-0.0004917464102618396,8.103071195364464e-06,8.198401701520197e-06,5.518154921446694e-06,-0.0005946700694039464,6.339241372188553e-05,8.198401701520197e-06,-1.246626311512955e-06,-4.099200623386423e-07,2.9116757561866574e-22,-0.0004917464102618396,8.198401701520197e-06,4.283367161406204e-05,-0.0,-3.346286234773288e-07,-6.897693651808368e-07,8.103071195364464e-06,-1.246626311512955e-06,-0.0,3.116565849836661e-08,-8.271806125530277e-25,0.0,8.198401701520197e-06,-4.099200623386423e-07,-3.346286234773288e-07,-8.271806125530277e-25,1.6731430463323704e-08,-9.926167350636332e-24,5.518154921446694e-06,2.9116757561866574e-22,-6.897693651808368e-07,0.0,-9.926167350636332e-24,1.4076925403117002e-08,41.0,51.0,0.011356910690665245,-0.0005831644521094859,-0.0004731334338430315,7.944187018438242e-06,7.88307806942612e-06,5.2058062465221155e-06,-0.0005831644521094859,6.215715256985277e-05,7.88307806942612e-06,-1.222182618221268e-06,-3.9415391483998974e-07,2.3822801641527197e-22,-0.0004731334338430315,7.88307806942612e-06,4.038600673084147e-05,-3.5029276988474024e-23,-3.15323120503308e-07,-6.374456802404893e-07,7.944187018438242e-06,-1.222182618221268e-06,-3.5029276988474024e-23,3.055456687661717e-08,2.7349920982767605e-25,5.52895993086591e-25,7.88307806942612e-06,-3.9415391483998974e-07,-3.15323120503308e-07,2.7349920982767605e-25,1.576615638043677e-08,-9.926167350636332e-24,5.2058062465221155e-06,2.3822801641527197e-22,-6.374456802404893e-07,5.52895993086591e-25,-9.926167350636332e-24,1.2748913924554017e-08,41.0,52.0,0.01114717498421669,-0.00057209562510252,-0.00045555763063021004,7.791414645907935e-06,7.585603725601686e-06,4.9165946620632894e-06,-0.00057209562510252,6.096911965869367e-05,7.585603725601686e-06,-1.1986791150775389e-06,-3.792801805957424e-07,-1.4558378780933287e-22,-0.00045555763063021004,7.585603725601686e-06,3.81213758373633e-05,-3.3065022800804567e-23,-2.974746564632369e-07,-5.899913730900153e-07,7.791414645907935e-06,-1.1986791150775389e-06,-3.3065022800804567e-23,2.996698000856668e-08,2.5801813503745644e-25,5.117359427615203e-25,7.585603725601686e-06,-3.792801805957424e-07,-2.974746564632369e-07,2.5801813503745644e-25,1.4873732467890477e-08,6.617444900424222e-24,4.9165946620632894e-06,-1.4558378780933287e-22,-5.899913730900153e-07,5.117359427615203e-25,6.617444900424222e-24,1.1568458191391073e-08,41.0,53.0,0.01094504538923502,-0.000561439199373126,-0.0004389433888718486,7.644406650797464e-06,7.304655355255818e-06,4.648416961572366e-06,-0.000561439199373126,5.982564834994264e-05,7.304655355255818e-06,-1.1760625966417138e-06,-3.6523275070976524e-07,-7.940933880509066e-23,-0.0004389433888718486,7.304655355255818e-06,3.602297874749638e-05,-0.0,-2.809482850807399e-07,-5.468725703394739e-07,7.644406650797464e-06,-1.1760625966417138e-06,-0.0,2.940156385022874e-08,0.0,0.0,7.304655355255818e-06,-3.6523275070976524e-07,-2.809482850807399e-07,0.0,1.4047413898765626e-08,3.308722450212111e-24,4.648416961572366e-06,-7.940933880509066e-23,-5.468725703394739e-07,0.0,3.308722450212111e-24,1.051678033547887e-08,41.0,54.0,0.010750114917755127,-0.0005511725321412086,-0.00042322176159359515,7.502843800466508e-06,7.039031515887473e-06,4.399394583742833e-06,-0.0005511725321412086,5.872428300790489e-05,7.039031515887473e-06,-1.1542836091393838e-06,-3.5195157011003175e-07,1.3234889800848443e-23,-0.00042322176159359515,7.039031515887473e-06,3.4075834264513105e-05,-0.0,-2.656238393683452e-07,-5.076224738331803e-07,7.502843800466508e-06,-1.1542836091393838e-06,-0.0,2.885709093902733e-08,0.0,0.0,7.039031515887473e-06,-3.5195157011003175e-07,-2.656238393683452e-07,0.0,1.3281191257874525e-08,0.0,4.399394583742833e-06,1.3234889800848443e-23,-5.076224738331803e-07,0.0,0.0,9.577782122960343e-09,41.0,55.0,0.010562007315456867,-0.0005412746104411781,-0.00040832997183315456,7.366428235400235e-06,6.787637630623067e-06,4.167847691860516e-06,-0.0005412746104411781,5.766273898188956e-05,6.787637630623067e-06,-1.1332966778354603e-06,-3.3938187016246957e-07,-7.940933880509066e-23,-0.00040832997183315456,6.787637630623067e-06,3.2266554626403376e-05,-0.0,-2.5139397052953427e-07,-4.7183181095533655e-07,7.366428235400235e-06,-1.1332966778354603e-06,-0.0,2.8332415524801036e-08,0.0,0.0,6.787637630623067e-06,-3.3938187016246957e-07,-2.5139397052953427e-07,0.0,1.2569699059383765e-08,2.481541837659083e-24,4.167847691860516e-06,-7.940933880509066e-23,-4.7183181095533655e-07,0.0,2.481541837659083e-24,8.737625734056564e-09,41.0,56.0,0.010380368679761887,-0.0005317259347066283,-0.00039421062683686614,7.2348848334513605e-06,6.5494746195327025e-06,3.952269253204577e-06,-0.0005317259347066283,5.6638895330252126e-05,6.5494746195327025e-06,-1.1130591701657977e-06,-3.274737423453189e-07,5.293955920339377e-23,-0.00039421062683686614,6.5494746195327025e-06,3.058314905501902e-05,-0.0,-2.381627126624153e-07,-4.391410186599387e-07,7.2348848334513605e-06,-1.1130591701657977e-06,-0.0,2.7826480675230414e-08,0.0,0.0,6.5494746195327025e-06,-3.274737423453189e-07,-2.381627126624153e-07,0.0,1.1908135810756448e-08,-1.6543612251060553e-24,3.952269253204577e-06,5.293955920339377e-23,-4.391410186599387e-07,0.0,-1.6543612251060553e-24,7.984382044412541e-09,41.0,57.0,0.010204872116446495,-0.0005225084023550153,-0.0003808111941907555,7.107957117113983e-06,6.3236307141778525e-06,3.7513063944061287e-06,-0.0005225084023550153,5.565078026847914e-05,6.3236307141778525e-06,-1.093531864171382e-06,-3.161815413932345e-07,0.0,-0.0003808111941907555,6.3236307141778525e-06,2.9014858228038065e-05,-0.0,-2.2584396219826885e-07,-4.092334222605132e-07,7.107957117113983e-06,-1.093531864171382e-06,-0.0,2.733829695955592e-08,0.0,0.0,6.3236307141778525e-06,-3.161815413932345e-07,-2.2584396219826885e-07,0.0,1.1292197399370707e-08,0.0,3.7513063944061287e-06,0.0,-4.092334222605132e-07,0.0,0.0,7.307739746664765e-09,41.0,58.0,0.01003521028906107,-0.0005136049585416913,-0.00036808353615924716,6.985405889281537e-06,6.109270543674938e-06,3.5637410746858222e-06,-0.0005136049585416913,5.4696549341315404e-05,6.109270543674938e-06,-1.0746778116299538e-06,-3.0546351581506315e-07,-3.970466940254533e-23,-0.00036808353615924716,6.109270543674938e-06,2.7552005121833645e-05,-0.0,-2.1436036945488013e-07,-3.8182940897968365e-07,6.985405889281537e-06,-1.0746778116299538e-06,-0.0,2.686694600129158e-08,0.0,0.0,6.109270543674938e-06,-3.0546351581506315e-07,-2.1436036945488013e-07,0.0,1.0718018472744006e-08,1.6543612251060553e-24,3.5637410746858222e-06,-3.970466940254533e-23,-3.8182940897968365e-07,0.0,1.6543612251060553e-24,6.698761545465004e-09,41.0,59.0,0.009871098212897778,-0.0005049998871982098,-0.0003559835022315383,6.86700923324679e-06,5.9056278587377165e-06,3.3884750791912666e-06,-0.0005049998871982098,5.377449269872159e-05,5.9056278587377165e-06,-1.0564630201770342e-06,-2.952814099899115e-07,5.293955920339377e-23,-0.0003559835022315383,5.9056278587377165e-06,2.6185874958173372e-05,-0.0,-2.0364234387670876e-07,-3.566815962585679e-07,6.86700923324679e-06,-1.0564630201770342e-06,-0.0,2.6411575149154487e-08,0.0,0.0,5.9056278587377165e-06,-2.952814099899115e-07,-2.0364234387670876e-07,0.0,1.0182117371471122e-08,-1.6543612251060553e-24,3.3884750791912666e-06,5.293955920339377e-23,-3.566815962585679e-07,0.0,-1.6543612251060553e-24,6.149682540979029e-09,41.0,60.0,0.00971226766705513,-0.0004966784035786986,-0.00034447049256414175,6.752559329470387e-06,5.712000984203769e-06,3.2245166039501783e-06,-0.0004966784035786986,5.288301326800138e-05,5.712000984203769e-06,-1.038855316437548e-06,-2.8560003784150467e-07,0.0,-0.00034447049256414175,5.712000984203769e-06,2.4908604245865718e-05,-0.0,-1.9362714454018715e-07,-3.3357068218720087e-07,6.752559329470387e-06,-1.038855316437548e-06,-0.0,2.597138148985323e-08,0.0,0.0,5.712000984203769e-06,-2.8560003784150467e-07,-1.9362714454018715e-07,0.0,9.681357049373673e-09,4.1359030627651384e-25,3.2245166039501783e-06,0.0,-3.3357068218720087e-07,0.0,4.1359030627651384e-25,5.653740586808453e-09,41.0,61.0,0.00955846719443798,-0.0004886267706751823,-0.0003335071378387511,6.6418615460861474e-06,5.527742814592784e-06,3.070968205065583e-06,-0.0004886267706751823,5.2020608563907444e-05,5.527742814592784e-06,-1.0218248007731745e-06,-2.763871407296392e-07,-5.293955920339377e-23,-0.0003335071378387511,5.527742814592784e-06,2.3713078917353414e-05,-0.0,-1.8425809855671105e-07,-3.1230186436914664e-07,6.6418615460861474e-06,-1.0218248007731745e-06,-0.0,2.5545620729872098e-08,0.0,0.0,5.527742814592784e-06,-2.763871407296392e-07,-1.8425809855671105e-07,0.0,9.212905105471236e-09,2.0679515313825692e-24,3.070968205065583e-06,-5.293955920339377e-23,-3.1230186436914664e-07,0.0,2.0679515313825692e-24,5.205031072819111e-09,41.0,62.0,0.009409462101757526,-0.0004808320081792772,-0.00032305900822393596,6.5347348936484195e-06,5.352258995117154e-06,2.92701656690042e-06,-0.0004808320081792772,5.1185881602577865e-05,5.352258995117154e-06,-1.0053438472823473e-06,-2.6761293270283204e-07,-7.940933880509066e-23,-0.00032305900822393596,5.352258995117154e-06,2.2592867026105523e-05,-0.0,-1.754839047407586e-07,-2.92701656690042e-07,6.5347348936484195e-06,-1.0053438472823473e-06,-0.0,2.513359476097321e-08,0.0,0.0,5.352258995117154e-06,-2.6761293270283204e-07,-1.754839047407586e-07,0.0,8.774194704130878e-09,2.481541837659083e-24,2.92701656690042e-06,-7.940933880509066e-23,-2.92701656690042e-07,0.0,2.481541837659083e-24,4.798387909232815e-09,41.0,63.0,0.009265030734241009,-0.0004732820380013436,-0.0003130942932330072,6.431008841900621e-06,5.185000645724358e-06,2.791923634504201e-06,-0.0004732820380013436,5.0377522711642087e-05,5.185000645724358e-06,-9.893859669318772e-07,-2.592500436549017e-07,0.0,-0.0003130942932330072,5.185000645724358e-06,2.1542124159168452e-05,-0.0,-1.6725809359741106e-07,-2.746154166288761e-07,6.431008841900621e-06,-9.893859669318772e-07,-0.0,2.4734649883839666e-08,0.0,0.0,5.185000645724358e-06,-2.592500436549017e-07,-1.6725809359741106e-07,0.0,8.362904146963501e-09,0.0,2.791923634504201e-06,0.0,-2.746154166288761e-07,0.0,0.0,4.4292809420198864e-09,41.0,64.0,0.009124966338276863,-0.00046596553875133395,-0.00030358359799720347,6.33052422926994e-06,5.025462542107562e-06,2.6650179734133417e-06,-0.00046596553875133395,4.959430225426331e-05,5.025462542107562e-06,-9.739268307384918e-07,-2.512731214210362e-07,-1.3234889800848443e-23,-0.00030358359799720347,5.025462542107562e-06,2.055555160040967e-05,-0.0,-1.5953848730987374e-07,-2.579049578343984e-07,6.33052422926994e-06,-9.739268307384918e-07,-0.0,2.4348169702648192e-08,0.0,0.0,5.025462542107562e-06,-2.512731214210362e-07,-1.5953848730987374e-07,0.0,7.97692401022232e-09,4.1359030627651384e-25,2.6650179734133417e-06,-1.3234889800848443e-23,-2.579049578343984e-07,0.0,4.1359030627651384e-25,4.093729355503228e-09,42.0,3.0,0.11496191471815109,-0.007928118109703064,-0.06976744532585144,0.000125843143905513,0.001661129528656602,0.011904762126505375,-0.007928118109703064,0.0009089865488931537,0.001661129528656602,-1.8876471585826948e-05,-8.103071013465524e-05,5.421010862427522e-19,-0.06976744532585144,0.001661129528656602,0.18881505727767944,3.222225207533206e-20,-0.001661129528656602,-0.0714285746216774,0.000125843143905513,-1.8876471585826948e-05,3.222225207533206e-20,4.604017647125147e-07,-1.1185526609183267e-21,-4.649743781873958e-21,0.001661129528656602,-8.103071013465524e-05,-0.001661129528656602,-1.1185526609183267e-21,8.103071013465524e-05,-5.421010862427522e-19,0.011904762126505375,5.421010862427522e-19,-0.0714285746216774,-4.649743781873958e-21,-5.421010862427522e-19,0.0357142873108387,42.0,4.0,0.09609131515026093,-0.0061952583491802216,-0.045431893318891525,9.438236156711355e-05,0.0009966777870431542,0.0059523810632526875,-0.0061952583491802216,0.0006938945152796805,0.0009966777870431542,-1.4157354598864913e-05,-4.861842535319738e-05,3.3610267347050637e-18,-0.045431893318891525,0.0009966777870431542,0.07195459306240082,1.4317830781393745e-19,-0.0006644517998211086,-0.01785714365541935,9.438236156711355e-05,-1.4157354598864913e-05,1.4317830781393745e-19,3.4530131642895867e-07,3.699810152068397e-22,-4.872314174022396e-20,0.0009966777870431542,-4.861842535319738e-05,-0.0006644517998211086,3.699810152068397e-22,3.2412284781457856e-05,-6.776263578034403e-19,0.0059523810632526875,3.3610267347050637e-18,-0.01785714365541935,-4.872314174022396e-20,-6.776263578034403e-19,0.0059523810632526875,42.0,5.0,0.0825904980301857,-0.00508909672498703,-0.031988609582185745,7.550588634330779e-05,0.0006644517998211086,0.003401360474526882,-0.00508909672498703,0.0005615980480797589,0.0006644517998211086,-1.132588386099087e-05,-3.2412284781457856e-05,-1.0842021724855044e-19,-0.031988609582185745,0.0006644517998211086,0.036402467638254166,1.6613001718461242e-20,-0.0003322258999105543,-0.006802720949053764,7.550588634330779e-05,-1.132588386099087e-05,1.6613001718461242e-20,2.7624105314316694e-07,-1.1838619882559184e-22,-3.8494841016297666e-21,0.0006644517998211086,-3.2412284781457856e-05,-0.0003322258999105543,-1.1838619882559184e-22,1.6206142390728928e-05,1.6263032587282567e-19,0.003401360474526882,-1.0842021724855044e-19,-0.006802720949053764,-3.8494841016297666e-21,1.6263032587282567e-19,0.001700680237263441,42.0,6.0,0.07243112474679947,-0.004320015665143728,-0.023760085925459862,6.29215719527565e-05,0.00047460844507440925,0.002125850412994623,-0.004320015665143728,0.0004718569980468601,0.00047460844507440925,-9.438235792913474e-06,-2.3151631467044353e-05,4.0657581468206416e-19,-0.023760085925459862,0.00047460844507440925,0.021196210756897926,4.8263772156921464e-20,-0.0001898433838505298,-0.0031887756194919348,6.29215719527565e-05,-9.438235792913474e-06,4.8263772156921464e-20,2.3020088235625735e-07,-5.347789807995576e-22,-6.986697841191753e-21,0.00047460844507440925,-2.3151631467044353e-05,-0.0001898433838505298,-5.347789807995576e-22,9.260652404918801e-06,-1.6940658945086007e-20,0.002125850412994623,4.0657581468206416e-19,-0.0031887756194919348,-6.986697841191753e-21,-1.6940658945086007e-20,0.0006377550889737904,42.0,7.0,0.0645030066370964,-0.003753721248358488,-0.01835152693092823,5.393277751863934e-05,0.00035595634835772216,0.0014172336086630821,-0.003753721248358488,0.0004069293790962547,0.00035595634835772216,-8.089917173492722e-06,-1.7363723600283265e-05,2.710505431213761e-19,-0.01835152693092823,0.00035595634835772216,0.013486790470778942,4.716085928822698e-20,-0.00011865211126860231,-0.001700680237263441,5.393277751863934e-05,-8.089917173492722e-06,4.716085928822698e-20,1.9731504607989336e-07,-3.3875588109427467e-22,-5.9537184888652965e-21,0.00035595634835772216,-1.7363723600283265e-05,-0.00011865211126860231,-3.3875588109427467e-22,5.787907866761088e-06,-6.776263578034403e-21,0.0014172336086630821,2.710505431213761e-19,-0.001700680237263441,-5.9537184888652965e-21,-6.776263578034403e-21,0.00028344671591185033,42.0,8.0,0.05814163386821747,-0.0033191130496561527,-0.014604097232222557,4.7191180783556774e-05,0.0002768549311440438,0.0009920635493472219,-0.0033191130496561527,0.00035775135620497167,0.0002768549311440438,-7.0786772994324565e-06,-1.3505118658940773e-05,-3.3203691532368573e-19,-0.014604097232222557,0.0002768549311440438,0.009132917039096355,-3.8747446950411015e-20,-7.910140993772075e-05,-0.0009920635493472219,4.7191180783556774e-05,-7.0786772994324565e-06,-3.8747446950411015e-20,1.7265065821447934e-07,5.158748947716841e-22,3.625246665897221e-21,0.0002768549311440438,-1.3505118658940773e-05,-7.910140993772075e-05,5.158748947716841e-22,3.8586053960898425e-06,4.2351647362715017e-20,0.0009920635493472219,-3.3203691532368573e-19,-0.0009920635493472219,3.625246665897221e-21,4.2351647362715017e-20,0.00014172335795592517,42.0,9.0,0.052923474460840225,-0.0029749320819973946,-0.011899728327989578,4.1947714635170996e-05,0.0002214839478256181,0.0007215007208287716,-0.0029749320819973946,0.0003192016447428614,0.0002214839478256181,-6.292157650023e-06,-1.0804094927152619e-05,-1.3552527156068805e-20,-0.011899728327989578,0.0002214839478256181,0.006479363888502121,-1.2542783581798776e-20,-5.537098695640452e-05,-0.0006184292142279446,4.1947714635170996e-05,-6.292157650023e-06,-1.2542783581798776e-20,1.5346725490417157e-07,1.1842638655554742e-22,1.4813733434606563e-21,0.0002214839478256181,-1.0804094927152619e-05,-5.537098695640452e-05,1.1842638655554742e-22,2.7010237317881547e-06,-6.3527471044072525e-21,0.0007215007208287716,-1.3552527156068805e-20,-0.0006184292142279446,1.4813733434606563e-21,-6.3527471044072525e-21,7.730365177849308e-05,42.0,10.0,0.04856538772583008,-0.002695560222491622,-0.009883721359074116,3.7752943171653897e-05,0.00018121414177585393,0.0005411255406215787,-0.002695560222491622,0.00028816546546295285,0.00018121414177585393,-5.662941930495435e-06,-8.839713700581342e-06,-1.5924219408380846e-19,-0.009883721359074116,0.00018121414177585393,0.004766728729009628,-2.896827541073904e-20,-4.0269806049764156e-05,-0.000405844155466184,3.7752943171653897e-05,-5.662941930495435e-06,-2.896827541073904e-20,1.3812052657158347e-07,1.0626774284313562e-22,2.8791788268335823e-21,0.00018121414177585393,-8.839713700581342e-06,-4.0269806049764156e-05,1.0626774284313562e-22,1.964380771823926e-06,8.470329472543003e-21,0.0005411255406215787,-1.5924219408380846e-19,-0.000405844155466184,2.8791788268335823e-21,8.470329472543003e-21,4.5093795051798224e-05,42.0,11.0,0.04487073794007301,-0.0024642376229166985,-0.008340496569871902,3.4320859413128346e-05,0.00015101177268661559,0.0004162504046689719,-0.0024642376229166985,0.0002626382920425385,0.00015101177268661559,-5.148128821019782e-06,-7.366428235400235e-06,-3.3881317890172014e-20,-0.008340496569871902,0.00015101177268661559,0.003610601183027029,-6.772733621121043e-22,-3.020235635631252e-05,-0.0002775002794805914,3.4320859413128346e-05,-5.148128821019782e-06,-6.772733621121043e-22,1.2556411377318e-07,6.673437616388085e-23,-1.2634436647698072e-22,0.00015101177268661559,-7.366428235400235e-06,-3.020235635631252e-05,6.673437616388085e-23,1.4732856925547821e-06,7.835054762102278e-21,0.0004162504046689719,-3.3881317890172014e-20,-0.0002775002794805914,-1.2634436647698072e-22,7.835054762102278e-21,2.775002758426126e-05,42.0,12.0,0.04169865697622299,-0.0022695327643305063,-0.007132817525416613,3.146078597637825e-05,0.00012777920346707106,0.0003270538873039186,-0.0022695327643305063,0.00024127119104377925,0.00012777920346707106,-4.719117896456737e-06,-6.233131443877937e-06,1.0164395367051604e-20,-0.007132817525416613,0.00012777920346707106,0.002801323775202036,8.720483753180671e-21,-2.3232581952470355e-05,-0.00019623234402388334,3.146078597637825e-05,-4.719117896456737e-06,8.720483753180671e-21,1.1510044117812868e-07,-2.4386858645776842e-22,-2.2800347031584484e-22,0.00012777920346707106,-6.233131443877937e-06,-2.3232581952470355e-05,-2.4386858645776842e-22,1.1332966778354603e-06,6.352747104407253e-22,0.0003270538873039186,1.0164395367051604e-20,-0.00019623234402388334,-2.2800347031584484e-22,6.352747104407253e-22,1.783930383680854e-05,42.0,13.0,0.038945551961660385,-0.0021033782977610826,-0.0061699096113443375,2.904072607634589e-05,0.00010952502634609118,0.00026164311566390097,-0.0021033782977610826,0.00022312284272629768,0.00010952502634609118,-4.356109002401354e-06,-5.3426842896442395e-06,-1.6940658945086007e-21,-0.0061699096113443375,0.00010952502634609118,0.0022176052443683147,-6.444049991795277e-21,-1.8254171664011665e-05,-0.00014271443069446832,2.904072607634589e-05,-4.356109002401354e-06,-6.444049991795277e-21,1.0624655999436072e-07,-6.347239845546851e-23,6.176969204755817e-22,0.00010952502634609118,-5.3426842896442395e-06,-1.8254171664011665e-05,-6.347239845546851e-23,8.904473816073732e-07,-4.7645603283054394e-21,0.00026164311566390097,-1.6940658945086007e-21,-0.00014271443069446832,6.176969204755817e-22,-4.7645603283054394e-21,1.1892869224539027e-05,42.0,14.0,0.036533523350954056,-0.0019599171355366707,-0.005389772355556488,2.696638875931967e-05,9.49216919252649e-05,0.00021258502965793014,-0.0019599171355366707,0.00020751623378600925,9.49216919252649e-05,-4.044958586746361e-06,-4.6303262024594005e-06,3.5575383784680614e-20,-0.005389772355556488,9.49216919252649e-05,0.0017858283827081323,2.3440703167458085e-21,-1.4603337149310391e-05,-0.00010629251482896507,2.696638875931967e-05,-4.044958586746361e-06,2.3440703167458085e-21,9.865752303994668e-08,-7.576852484644223e-23,-4.246062557798595e-25,9.49216919252649e-05,-4.6303262024594005e-06,-1.4603337149310391e-05,-7.576852484644223e-23,7.123579166545824e-07,-5.082197683525802e-21,0.00021258502965793014,3.5575383784680614e-20,-0.00010629251482896507,-4.246062557798595e-25,-5.082197683525802e-21,8.176347364496905e-06,42.0,15.0,0.03440287709236145,-0.0018347931327298284,-0.004748876206576824,2.5168630600092e-05,8.305647497763857e-05,0.00017507003212813288,-0.0018347931327298284,0.00019395191338844597,8.305647497763857e-05,-3.775294544539065e-06,-4.051535597682232e-06,-2.879912020664621e-20,-0.004748876206576824,8.305647497763857e-05,0.0014594926033169031,-4.8042750951275716e-21,-1.1865211490658112e-05,-8.080155384959653e-05,2.5168630600092e-05,-3.775294544539065e-06,-4.8042750951275716e-21,9.208035578467388e-08,1.4631056220586937e-22,1.0860664600735626e-22,8.305647497763857e-05,-4.051535597682232e-06,-1.1865211490658112e-05,1.4631056220586937e-22,5.787907753074251e-07,3.5998900258307764e-21,0.00017507003212813288,-2.879912020664621e-20,-8.080155384959653e-05,1.0860664600735626e-22,3.5998900258307764e-21,5.77153923586593e-06,42.0,16.0,0.032507073134183884,-0.0017246988136321306,-0.004215930588543415,2.3595590391778387e-05,7.328512583626434e-05,0.00014589169586542994,-0.0017246988136321306,0.00018205335072707385,7.328512583626434e-05,-3.5393386497162282e-06,-3.574884203771944e-06,3.3881317890172014e-21,-0.004215930588543415,7.328512583626434e-05,0.0012082158355042338,-2.2656369945179808e-21,-9.771350050868932e-06,-6.252501043491066e-05,2.3595590391778387e-05,-3.5393386497162282e-06,-2.2656369945179808e-21,8.632532910723967e-08,1.1131818181965434e-22,-7.326950342884526e-24,7.328512583626434e-05,-3.574884203771944e-06,-9.771350050868932e-06,1.1131818181965434e-22,4.7665125180174073e-07,-6.352747104407253e-22,0.00014589169586542994,3.3881317890172014e-21,-6.252501043491066e-05,-7.326950342884526e-24,-6.352747104407253e-22,4.168333816778613e-06,42.0,17.0,0.030809311196208,-0.0016270779306069016,-0.003767969785258174,2.220761416538153e-05,6.514233245979995e-05,0.0001228561595780775,-0.0016270779306069016,0.00017153125372715294,6.514233245979995e-05,-3.3311421248072293e-06,-3.177674898324767e-06,2.541098841762901e-21,-0.003767969785258174,6.514233245979995e-05,0.001011563348583877,9.10866511475728e-22,-8.142791557474993e-06,-4.914246528642252e-05,2.220761416538153e-05,-3.3311421248072293e-06,9.10866511475728e-22,8.12473714972839e-08,-3.3659489446317396e-23,-2.1989608173562435e-23,6.514233245979995e-05,-3.177674898324767e-06,-8.142791557474993e-06,-3.3659489446317396e-23,3.972093622905959e-07,1.0587911840678754e-22,0.0001228561595780775,2.541098841762901e-21,-4.914246528642252e-05,-2.1989608173562435e-23,1.0587911840678754e-22,3.0714040804014076e-06,42.0,18.0,0.02928009442985058,-0.001539922785013914,-0.003387829987332225,2.0973857317585498e-05,5.828524808748625e-05,0.00010442773782415316,-0.001539922785013914,0.00016215968935284764,5.828524808748625e-05,-3.1460788250115e-06,-2.843182755896123e-06,-1.6093625997831706e-20,-0.003387829987332225,5.828524808748625e-05,0.0008554395753890276,-1.2691458038282344e-22,-6.8570880102925e-06,-3.916040077456273e-05,2.0973857317585498e-05,-3.1460788250115e-06,-1.2691458038282344e-22,7.673362745208578e-08,3.0595869234801075e-23,-4.505444322727197e-23,5.828524808748625e-05,-2.843182755896123e-06,-6.8570880102925e-06,3.0595869234801075e-23,3.3449208558522514e-07,1.9587636905255695e-21,0.00010442773782415316,-1.6093625997831706e-20,-3.916040077456273e-05,-4.505444322727197e-23,1.9587636905255695e-21,2.303552946614218e-06,42.0,19.0,0.027895508334040642,-0.001461635110899806,-0.003062473377212882,1.986997085623443e-05,5.2456722187343985e-05,8.950948540586978e-05,-0.001461635110899806,0.00015375965449493378,5.2456722187343985e-05,-2.9804955374856945e-06,-2.558864480306511e-06,-1.1011428314305904e-20,-0.003062473377212882,5.2456722187343985e-05,0.0007299043936654925,-4.258766848710539e-21,-5.8285249906475656e-06,-3.1591582228429615e-05,1.986997085623443e-05,-2.9804955374856945e-06,-4.258766848710539e-21,7.26950162288631e-08,3.5263893688017615e-23,1.6102892702709127e-22,5.2456722187343985e-05,-2.558864480306511e-06,-5.8285249906475656e-06,3.5263893688017615e-23,2.843182755896123e-07,3.1763735522036263e-22,8.950948540586978e-05,-1.1011428314305904e-20,-3.1591582228429615e-05,1.6102892702709127e-22,3.1763735522036263e-22,1.7550879647387774e-06,42.0,20.0,0.02663596160709858,-0.001390926307067275,-0.00278185261413455,1.8876471585826948e-05,4.746084596263245e-05,7.730365177849308e-05,-0.001390926307067275,0.0001461874198867008,4.746084596263245e-05,-2.8314709652477177e-06,-2.3151631012297003e-06,1.9481757786848908e-20,-0.00278185261413455,4.746084596263245e-05,0.0006278090877458453,-7.771117497381694e-22,-4.995878498448292e-06,-2.5767882107174955e-05,1.8876471585826948e-05,-2.8314709652477177e-06,-7.771117497381694e-22,6.906026328579173e-08,-4.710293513784455e-23,1.0071833356684651e-22,4.746084596263245e-05,-2.3151631012297003e-06,-4.995878498448292e-06,-4.710293513784455e-23,2.4370137907681055e-07,-2.1969917069408415e-21,7.730365177849308e-05,1.9481757786848908e-20,-2.5767882107174955e-05,1.0071833356684651e-22,-2.1969917069408415e-21,1.356204393232474e-06,42.0,21.0,0.025485243648290634,-0.0013267463073134422,-0.0025381234008818865,1.7977592506213114e-05,4.314622128731571e-05,6.722056423313916e-05,-0.0013267463073134422,0.00013932633737567812,4.314622128731571e-05,-2.696638830457232e-06,-2.1046937490609707e-06,1.4823076576950256e-20,-0.0025381234008818865,4.314622128731571e-05,0.0005439221276901662,3.68412229612732e-21,-4.314622401579982e-06,-2.1227546312729828e-05,1.7977592506213114e-05,-2.696638830457232e-06,3.68412229612732e-21,6.577167965815534e-08,-4.0412773039177055e-23,-1.315900264394363e-22,4.314622128731571e-05,-2.1046937490609707e-06,-4.314622401579982e-06,-4.0412773039177055e-23,2.1046938059043896e-07,-7.808584982500581e-22,6.722056423313916e-05,1.4823076576950256e-20,-2.1227546312729828e-05,-1.315900264394363e-22,-7.808584982500581e-22,1.0613773611112265e-06,42.0,22.0,0.024429835379123688,-0.001268230378627777,-0.0023250889498740435,1.7160429706564173e-05,3.9394377381540835e-05,5.881799370399676e-05,-0.001268230378627777,0.0001330806699115783,3.9394377381540835e-05,-2.574064410509891e-06,-1.921677039717906e-06,-2.244637310223896e-20,-0.0023250889498740435,3.9394377381540835e-05,0.0004743544268421829,-6.7397250555175035e-21,-3.7518454973906046e-06,-1.7645397747401148e-05,1.7160429706564173e-05,-2.574064410509891e-06,-6.7397250555175035e-21,6.278205688659e-08,3.9565482784428133e-23,2.7736493315799887e-22,3.9394377381540835e-05,-1.921677039717906e-06,-3.7518454973906046e-06,3.9565482784428133e-23,1.8301685145161173e-07,8.205631676526035e-22,5.881799370399676e-05,-2.244637310223896e-20,-1.7645397747401148e-05,2.7736493315799887e-22,8.205631676526035e-22,8.402570301768719e-07,42.0,23.0,0.023458367213606834,-0.0012146600056439638,-0.0021378016099333763,1.6414323908975348e-05,3.6111512599745765e-05,5.1759834605036303e-05,-0.0012146600056439638,0.00012737115321215242,3.6111512599745765e-05,-2.462148586346302e-06,-1.7615371916690492e-06,0.0,-0.0021378016099333763,3.6111512599745765e-05,0.0004161734541412443,9.168055107541132e-22,-3.2828647817950696e-06,-1.4788523913011886e-05,1.6414323908975348e-05,-2.462148586346302e-06,9.168055107541132e-22,6.005240749118457e-08,1.1566269126019612e-23,-5.583704530827055e-23,3.6111512599745765e-05,-1.7615371916690492e-06,-3.2828647817950696e-06,1.1566269126019612e-23,1.6013974857287394e-07,1.5881867761018131e-22,5.1759834605036303e-05,0.0,-1.4788523913011886e-05,-5.583704530827055e-23,1.5881867761018131e-22,6.722056582475489e-07,42.0,24.0,0.02256120555102825,-0.001165433437563479,-0.001972271827980876,1.5730392988189124e-05,3.322258999105543e-05,4.578754669637419e-05,-0.001165433437563479,0.00012213154695928097,3.322258999105543e-05,-2.3595589482283685e-06,-1.6206141708607902e-06,-1.6940658945086007e-21,-0.001972271827980876,3.322258999105543e-05,0.0003671396116260439,1.161827525451285e-22,-2.8889210170746082e-06,-1.2487512321968097e-05,1.5730392988189124e-05,-2.3595589482283685e-06,1.161827525451285e-22,5.755022058906434e-08,-4.819411909638246e-23,3.686018843961216e-23,3.322258999105543e-05,-1.6206141708607902e-06,-2.8889210170746082e-06,-4.819411909638246e-23,1.4092297817569488e-07,7.940933880509066e-23,4.578754669637419e-05,-1.6940658945086007e-21,-1.2487512321968097e-05,3.686018843961216e-23,7.940933880509066e-23,5.4293531093208e-07,42.0,25.0,0.02173013985157013,-0.0011200427543371916,-0.001825254876166582,1.510117817815626e-05,3.066700810450129e-05,4.0700040699448436e-05,-0.0011200427543371916,0.00011730611731763929,3.066700810450129e-05,-2.265176590299234e-06,-1.4959515510781785e-06,6.761936955227826e-21,-0.001825254876166582,3.066700810450129e-05,0.00032552212360315025,6.480610324738484e-21,-2.555583932917216e-06,-1.0617402040224988e-05,1.510117817815626e-05,-2.265176590299234e-06,6.480610324738484e-21,5.524821133917612e-08,-9.26442286059391e-23,-1.9061608297782986e-22,3.066700810450129e-05,-1.4959515510781785e-06,-2.555583932917216e-06,-9.26442286059391e-23,1.2466263399346644e-07,8.777688109007856e-23,4.0700040699448436e-05,6.761936955227826e-21,-1.0617402040224988e-05,-1.9061608297782986e-22,8.777688109007856e-23,4.4239175167604117e-07,42.0,26.0,0.020958123728632927,-0.0010780562879517674,-0.0016940884524956346,1.4520363038172945e-05,2.8395377739798278e-05,3.633932283264585e-05,-0.0010780562879517674,0.0001128476214944385,2.8395377739798278e-05,-2.178054501200677e-06,-1.385140308229893e-06,6.346416830119878e-21,-0.0016940884524956346,2.8395377739798278e-05,0.0002899692044593394,6.043914295169821e-21,-2.271630137329339e-06,-9.084830708161462e-06,1.4520363038172945e-05,-2.178054501200677e-06,6.043914295169821e-21,5.312327999718036e-08,-8.602678370551488e-23,-1.697587647268546e-22,2.8395377739798278e-05,-1.385140308229893e-06,-2.271630137329339e-06,-8.602678370551488e-23,1.1081122863743076e-07,4.909539583604109e-23,3.633932283264585e-05,6.346416830119878e-21,-9.084830708161462e-06,-1.697587647268546e-22,4.909539583604109e-23,3.633932124103012e-07,42.0,27.0,0.020239081233739853,-0.0010391048854216933,-0.0015765728894621134,1.39825724545517e-05,2.6367135433247313e-05,3.2580082915956154e-05,-0.0010391048854216933,0.00010871571430470794,2.6367135433247313e-05,-2.09738573175855e-06,-1.286201722905389e-06,7.356919326446053e-21,-0.0015765728894621134,2.6367135433247313e-05,0.00025941437343135476,5.536011262674841e-21,-2.0282411696825875e-06,-7.819219717930537e-06,1.39825724545517e-05,-2.09738573175855e-06,5.536011262674841e-21,5.1155751634723856e-08,-7.279189390466644e-23,-1.5183940430063756e-22,2.6367135433247313e-05,-1.286201722905389e-06,-2.0282411696825875e-06,-7.279189390466644e-23,9.893859953535866e-08,-8.703877865094308e-23,3.2580082915956154e-05,7.356919326446053e-21,-7.819219717930537e-06,-1.5183940430063756e-22,-8.703877865094308e-23,3.0073923085183196e-07,42.0,28.0,0.019567741081118584,-0.0010028707329183817,-0.0014708770904690027,1.3483194379659835e-05,2.4548713554395363e-05,2.9322072805371135e-05,-0.0010028707329183817,0.00010487577674211934,2.4548713554395363e-05,-2.0224792933731806e-06,-1.1974981362072867e-06,6.609508328628974e-21,-0.0014708770904690027,2.4548713554395363e-05,0.0002330087882000953,4.9522140050813364e-21,-1.8184231294071651e-06,-6.76663239573827e-06,1.3483194379659835e-05,-2.0224792933731806e-06,4.9522140050813364e-21,4.932876151997334e-08,-6.28657265540301e-23,-1.3635795223769003e-22,2.4548713554395363e-05,-1.1974981362072867e-06,-1.8184231294071651e-06,-6.28657265540301e-23,8.870357248724758e-08,-7.546903538149688e-23,2.9322072805371135e-05,6.609508328628974e-21,-6.76663239573827e-06,-1.3635795223769003e-22,-7.546903538149688e-23,2.5061601149900525e-07,42.0,29.0,0.018939508125185966,-0.0009690790320746601,-0.001375467050820589,1.3018257050134707e-05,2.2912132408237085e-05,2.6484452973818406e-05,-0.0009690790320746601,0.00010129791189683601,2.2912132408237085e-05,-1.952738557520206e-06,-1.1176649650224135e-06,4.2097462999971854e-21,-0.001375467050820589,2.2912132408237085e-05,0.0002100708952639252,4.606240059326064e-21,-1.6365808050977648e-06,-5.885434347874252e-06,1.3018257050134707e-05,-1.952738557520206e-06,4.606240059326064e-21,4.7627768395841485e-08,-5.955700410381799e-23,-1.2291321281427831e-22,2.2912132408237085e-05,-1.1176649650224135e-06,-1.6365808050977648e-06,-5.955700410381799e-23,7.983321381743735e-08,5.926395805474649e-23,2.6484452973818406e-05,4.2097462999971854e-21,-5.885434347874252e-06,-1.2291321281427831e-22,5.926395805474649e-23,2.1019407370204135e-07,42.0,30.0,0.01835036091506481,-0.0009374908404424787,-0.0012890499783679843,1.2584315300046e-05,2.1433930669445544e-05,2.400153607595712e-05,-0.0009374908404424787,9.795616642804816e-05,2.1433930669445544e-05,-1.8876472722695326e-06,-1.0455576102685882e-06,4.01152547167528e-21,-0.0012890499783679843,2.1433930669445544e-05,0.00019004932255484164,4.230092600464646e-21,-1.4782020798520534e-06,-5.143186172062997e-06,1.2584315300046e-05,-1.8876472722695326e-06,4.230092600464646e-21,4.604017789233694e-08,-4.632211430296955e-23,-1.1118071807375415e-22,2.1433930669445544e-05,-1.0455576102685882e-06,-1.4782020798520534e-06,-4.632211430296955e-23,7.210741870267157e-08,3.771614669798765e-23,2.400153607595712e-05,4.01152547167528e-21,-5.143186172062997e-06,-1.1118071807375415e-22,3.771614669798765e-23,1.7735125368290028e-07,42.0,31.0,0.01779675856232643,-0.0009078974253498018,-0.0012105299392715096,1.2178369615867268e-05,2.0094308638363145e-05,2.181957825087011e-05,-0.0009078974253498018,9.482791210757568e-05,2.0094308638363145e-05,-1.82675535143062e-06,-9.802101885725278e-07,3.7968737183049034e-21,-0.0012105299392715096,2.0094308638363145e-05,0.00017249470693059266,3.926857396749369e-21,-1.3396206668403465e-06,-4.514395641308511e-06,1.2178369615867268e-05,-1.82675535143062e-06,3.926857396749369e-21,4.455500857147854e-08,-4.632211430296955e-23,-1.0089616174754505e-22,2.0094308638363145e-05,-9.802101885725278e-07,-1.3396206668403465e-06,-4.632211430296955e-23,6.534735064178676e-08,2.2657932710187487e-23,2.181957825087011e-05,3.7968737183049034e-21,-4.514395641308511e-06,-1.0089616174754505e-22,2.2657932710187487e-23,1.504798490259418e-07,42.0,32.0,0.017275581136345863,-0.0008801155490800738,-0.0011389730498194695,1.1797795195889194e-05,1.8876471585826948e-05,1.98943216673797e-05,-0.0008801155490800738,9.189331467496231e-05,1.8876471585826948e-05,-1.7696693248581141e-06,-9.208035294250294e-07,4.457939661751091e-21,-0.0011389730498194695,1.8876471585826948e-05,0.00015703827375546098,3.641218764199667e-21,-1.2178369388493593e-06,-3.97886424252647e-06,1.1797795195889194e-05,-1.7696693248581141e-06,3.641218764199667e-21,4.3162664553619834e-08,-3.639594695233322e-23,-9.184275223712179e-23,1.8876471585826948e-05,-9.208035294250294e-07,-1.2178369388493593e-06,-3.639594695233322e-23,5.9406680463780503e-08,-4.467013543779726e-23,1.98943216673797e-05,4.457939661751091e-21,-3.97886424252647e-06,-9.184275223712179e-23,-4.467013543779726e-23,1.2835046447889908e-07,42.0,33.0,0.01678406074643135,-0.0008539837435819209,-0.0010735795367509127,1.1440286471042782e-05,1.7766091332305223e-05,1.8189093680121005e-05,-0.0008539837435819209,8.913493365980685e-05,1.7766091332305223e-05,-1.7160429024443147e-06,-8.666386293043615e-07,5.432871372253568e-21,-0.0010735795367509127,1.7766091332305223e-05,0.0001433755678590387,3.3711430825107534e-21,-1.1103807082690764e-06,-3.520469817885896e-06,1.1440286471042782e-05,-1.7160429024443147e-06,3.3711430825107534e-21,4.185470459106e-08,-3.3087224502121107e-23,-8.384152540208232e-23,1.7766091332305223e-05,-8.666386293043615e-07,-1.1103807082690764e-06,-3.3087224502121107e-23,5.4164914331522596e-08,-1.2471055350073387e-22,1.8189093680121005e-05,5.432871372253568e-21,-3.520469817885896e-06,-8.384152540208232e-23,-1.2471055350073387e-22,1.1001468180893426e-07,42.0,34.0,0.01631973497569561,-0.0008293592254631221,-0.0010136612690985203,1.1103807082690764e-05,1.6750886061345227e-05,1.6673335267114453e-05,-0.0008293592254631221,8.653735130792484e-05,1.6750886061345227e-05,-1.6655710624036146e-06,-8.171164154191501e-07,2.4881592825595072e-21,-0.0010136612690985203,1.6750886061345227e-05,0.0001312536041950807,3.808257145250311e-21,-1.0152052709599957e-06,-3.1262504762707977e-06,1.1103807082690764e-05,-1.6655710624036146e-06,3.808257145250311e-21,4.062368574864195e-08,-6.08885318920714e-23,-7.581732693748282e-23,1.6750886061345227e-05,-8.171164154191501e-07,-1.0152052709599957e-06,-6.08885318920714e-23,4.952220677978403e-08,4.301339185275744e-23,1.6673335267114453e-05,2.4881592825595072e-21,-3.1262504762707977e-06,-7.581732693748282e-23,4.301339185275744e-23,9.473486528577268e-08,42.0,35.0,0.015880407765507698,-0.000806115276645869,-0.0009586235391907394,1.0786555321828928e-05,1.582028198754415e-05,1.5321444152505137e-05,-0.000806115276645869,8.408690337091684e-05,1.582028198754415e-05,-1.6179833437490743e-06,-7.717210337432334e-07,1.9587636905255695e-21,-0.0009586235391907394,1.582028198754415e-05,0.0001204611107823439,3.4996965624449405e-21,-9.306048127655231e-07,-2.785717015285627e-06,1.0786555321828928e-05,-1.6179833437490743e-06,3.4996965624449405e-21,3.9463007084350465e-08,-5.350617590350868e-23,-7.017869433736959e-23,1.582028198754415e-05,-7.717210337432334e-07,-9.306048127655231e-07,-5.350617590350868e-23,4.539535680692097e-08,5.624828165360588e-23,1.5321444152505137e-05,1.9587636905255695e-21,-2.785717015285627e-06,-7.017869433736959e-23,5.624828165360588e-23,8.193285339075373e-08,42.0,36.0,0.015464114025235176,-0.0007841388578526676,-0.0009079502779059112,1.0486928658792749e-05,1.4965131413191557e-05,1.411185621691402e-05,-0.0007841388578526676,8.177143172360957e-05,1.4965131413191557e-05,-1.57303941250575e-06,-7.300063771253917e-07,1.7999450129153882e-21,-0.0009079502779059112,1.4965131413191557e-05,0.00011082062701461837,3.223827991139063e-21,-8.551503469789168e-07,-2.490327460691333e-06,1.0486928658792749e-05,-1.57303941250575e-06,3.223827991139063e-21,3.836681372604289e-08,-4.472909174640986e-23,-6.500026425670057e-23,1.4965131413191557e-05,-7.300063771253917e-07,-8.551503469789168e-07,-4.472909174640986e-23,4.1714653065128005e-08,4.632211430296955e-23,1.411185621691402e-05,1.7999450129153882e-21,-2.490327460691333e-06,-6.500026425670057e-23,4.632211430296955e-23,7.115221478670719e-08,42.0,37.0,0.015069088898599148,-0.0007633290952071548,-0.0008611918310634792,1.0203498277405743e-05,1.417749263055157e-05,1.3026328815612942e-05,-0.0007633290952071548,7.958008791320026e-05,1.417749263055157e-05,-1.5305247416108614e-06,-6.915850008226698e-07,2.064642808932357e-21,-0.0008611918310634792,1.417749263055157e-05,0.00010218239185633138,3.1093648543931202e-21,-7.876384984228935e-07,-2.2330848423735006e-06,1.0203498277405743e-05,-1.5305247416108614e-06,3.1093648543931202e-21,3.7329872526470353e-08,-4.7128547873715265e-23,-5.885279744005806e-23,1.417749263055157e-05,-6.915850008226698e-07,-7.876384984228935e-07,-4.7128547873715265e-23,3.8421390513576625e-08,1.9852334701272664e-23,1.3026328815612942e-05,2.064642808932357e-21,-2.2330848423735006e-06,-5.885279744005806e-23,1.9852334701272664e-23,6.203013924732659e-08,42.0,38.0,0.01469374168664217,-0.0007435954757966101,-0.0008179550059139729,9.934985428117216e-06,1.3450441656459589e-05,1.2049354154441971e-05,-0.0007435954757966101,7.750313670840114e-05,1.3450441656459589e-05,-1.4902477687428473e-06,-6.561191412401968e-07,2.9116757561866574e-21,-0.0008179550059139729,1.3450441656459589e-05,9.44194252952002e-05,2.8767300006353846e-21,-7.270509172485617e-07,-2.0082256924069952e-06,9.934985428117216e-06,-1.4902477687428473e-06,2.8767300006353846e-21,3.634750811443155e-08,-3.8695082060599857e-23,-5.622266576229155e-23,1.3450441656459589e-05,-6.561191412401968e-07,-7.270509172485617e-07,-3.8695082060599857e-23,3.5465898662323525e-08,-3.639594695233322e-23,1.2049354154441971e-05,2.9116757561866574e-21,-2.0082256924069952e-06,-5.622266576229155e-23,-3.639594695233322e-23,5.4276370065053925e-08,42.0,39.0,0.01433663908392191,-0.0007248565671034157,-0.0007778948056511581,9.68024232861353e-06,1.2777919437212404e-05,1.1167694538016804e-05,-0.0007248565671034157,7.553186151199043e-05,1.2777919437212404e-05,-1.4520363720293972e-06,-6.233131557564775e-07,2.5940384009662948e-21,-0.0007778948056511581,1.2777919437212404e-05,8.742358477320522e-05,2.6289928402984123e-21,-6.72522105560347e-07,-1.8109774373442633e-06,9.68024232861353e-06,-1.4520363720293972e-06,2.6289928402984123e-21,3.5415521182358134e-08,-3.5113262275887473e-23,-5.0323617555590374e-23,1.2777919437212404e-05,-6.233131557564775e-07,-6.72522105560347e-07,-3.5113262275887473e-23,3.280595706200984e-08,-2.812414082680294e-23,1.1167694538016804e-05,2.5940384009662948e-21,-1.8109774373442633e-06,-5.0323617555590374e-23,-2.812414082680294e-23,4.7657302104653354e-08,42.0,40.0,0.013996480964124203,-0.0007070389692671597,-0.0007407075027003884,9.438235792913474e-06,1.2154606338299345e-05,1.0370001291448716e-05,-0.0007070389692671597,7.365838973782957e-05,1.2154606338299345e-05,-1.4157354826238588e-06,-5.929076110078313e-07,-9.740878893424454e-21,-0.0007407075027003884,1.2154606338299345e-05,8.110237831715494e-05,-9.175020307572126e-21,-6.233131557564775e-07,-1.6373686548831756e-06,9.438235792913474e-06,-1.4157354826238588e-06,-9.175020307572126e-21,3.453013164289587e-08,6.555163385323936e-23,1.8192495626040754e-22,1.2154606338299345e-05,-5.929076110078313e-07,-6.233131557564775e-07,6.555163385323936e-23,3.0405519879650456e-08,1.0422475718168149e-22,1.0370001291448716e-05,-9.740878893424454e-21,-1.6373686548831756e-06,1.8192495626040754e-22,1.0422475718168149e-22,4.198381375886129e-08,42.0,41.0,0.01367209106683731,-0.0006900765001773834,-0.0007061247597448528,9.208035407937132e-06,1.1575815733522177e-05,9.64651280810358e-06,-0.0006900765001773834,7.18756127753295e-05,1.1575815733522177e-05,-1.3812052657158347e-06,-5.646739396070188e-07,1.1117307432712692e-21,-0.0007061247597448528,1.1575815733522177e-05,7.537636702181771e-05,2.2724402319388026e-21,-5.787907753074251e-07,-1.484078893554397e-06,9.208035407937132e-06,-1.3812052657158347e-06,2.2724402319388026e-21,3.368793244362678e-08,-2.5721141136311283e-23,-4.3914703302295896e-23,1.1575815733522177e-05,-5.646739396070188e-07,-5.787907753074251e-07,-2.5721141136311283e-23,2.8233696269808206e-08,3.474158572722716e-23,9.64651280810358e-06,1.1117307432712692e-21,-1.484078893554397e-06,-4.3914703302295896e-23,3.474158572722716e-23,3.710197304940266e-08,42.0,42.0,0.013362396508455276,-0.0006739088566973805,-0.0006739088566973805,8.988796253106557e-06,1.1037405784009025e-05,8.988796253106557e-06,-0.0006739088566973805,7.017710595391691e-05,1.1037405784009025e-05,-1.348319415228616e-06,-5.3841006319999e-07,1.5087774372967225e-21,-0.0006739088566973805,1.1037405784009025e-05,7.017710595391691e-05,2.2400988028473647e-21,-5.3841006319999e-07,-1.348319415228616e-06,8.988796253106557e-06,-1.348319415228616e-06,2.2400988028473647e-21,3.288583982907767e-08,-2.5458204330270257e-23,-4.221205116801583e-23,1.1037405784009025e-05,-5.3841006319999e-07,-5.3841006319999e-07,-2.5458204330270257e-23,2.6263904828738305e-08,9.926167350636332e-24,8.988796253106557e-06,1.5087774372967225e-21,-1.348319415228616e-06,-4.221205116801583e-23,9.926167350636332e-24,3.288583982907767e-08,42.0,43.0,0.013066421262919903,-0.000658481614664197,-0.0006438486743718386,8.77975435287226e-06,1.0535705769143533e-05,8.3895429270342e-06,-0.000658481614664197,6.855703395558521e-05,1.0535705769143533e-05,-1.3169632211429416e-06,-5.139368681739143e-07,1.3499587596865412e-21,-0.0006438486743718386,1.0535705769143533e-05,6.544536881847307e-05,2.063164142808062e-21,-5.01700242239167e-07,-1.2277380392333725e-06,8.77975435287226e-06,-1.3169632211429416e-06,2.063164142808062e-21,3.212105426086964e-08,-2.2433536492531939e-23,-3.7877238405721025e-23,1.0535705769143533e-05,-5.139368681739143e-07,-5.01700242239167e-07,-2.2433536492531939e-23,2.4473184367934664e-08,1.1580528575742387e-23,8.3895429270342e-06,1.3499587596865412e-21,-1.2277380392333725e-06,-3.7877238405721025e-23,1.1580528575742387e-23,2.9231857823219798e-08,42.0,44.0,0.012783273123204708,-0.0006437448901124299,-0.0006157560274004936,8.580214853282087e-06,1.0067451512441039e-05,7.842399099899922e-06,-0.0006437448901124299,6.701008533127606e-05,1.0067451512441039e-05,-1.2870322052549454e-06,-4.910951929559815e-07,1.7205356741102976e-21,-0.0006157560274004936,1.0067451512441039e-05,6.1129750974942e-05,2.008970484091984e-21,-4.6825357458146755e-07,-1.1203427447981085e-06,8.580214853282087e-06,-1.2870322052549454e-06,2.008970484091984e-21,3.1391028443295e-08,-2.20061474313013e-23,-3.599180404425763e-23,1.0067451512441039e-05,-4.910951929559815e-07,-4.6825357458146755e-07,-2.20061474313013e-23,2.284163791443916e-08,-9.926167350636332e-24,7.842399099899922e-06,1.7205356741102976e-21,-1.1203427447981085e-06,-3.599180404425763e-23,-9.926167350636332e-24,2.6054483015514052e-08,42.0,45.0,0.01251213625073433,-0.0006296534556895494,-0.0005894628120586276,8.3895429270342e-06,9.629736268834677e-06,7.341820492001716e-06,-0.0006296534556895494,6.553140701726079e-05,9.629736268834677e-06,-1.2584314390551299e-06,-4.697432416378433e-07,-3.546950466627383e-21,-0.0005894628120586276,9.629736268834677e-06,5.718548709410243e-05,-3.738239214454538e-21,-4.3771530044978135e-07,-1.0244400527881226e-06,8.3895429270342e-06,-1.2584314390551299e-06,-3.738239214454538e-21,3.069344955974884e-08,3.853979952457253e-23,6.696807462933076e-23,9.629736268834677e-06,-4.697432416378433e-07,-4.3771530044978135e-07,3.853979952457253e-23,2.1351965528992878e-08,3.639594695233322e-23,7.341820492001716e-06,-3.546950466627383e-21,-1.0244400527881226e-06,6.696807462933076e-23,3.639594695233322e-23,2.3282728633944316e-08,42.0,46.0,0.01225226279348135,-0.0006161657511256635,-0.0005648186197504401,8.207161954487674e-06,9.219960702466778e-06,6.882956768095028e-06,-0.0006161657511256635,6.411658978322521e-05,9.219960702466778e-06,-1.231074293173151e-06,-4.497541681303119e-07,-3.3351922298138076e-21,-0.0005648186197504401,9.219960702466778e-06,5.357346162782051e-05,-3.529426192986049e-21,-4.09776021115249e-07,-9.385850034959731e-07,8.207161954487674e-06,-1.231074293173151e-06,-3.529426192986049e-21,3.0026203745592284e-08,3.361353987631008e-23,6.348845966349881e-23,9.219960702466778e-06,-4.497541681303119e-07,-4.09776021115249e-07,3.361353987631008e-23,1.998907528388827e-08,3.474158572722716e-23,6.882956768095028e-06,-3.3351922298138076e-21,-9.385850034959731e-07,6.348845966349881e-23,3.474158572722716e-23,2.0857443772115403e-08,42.0,47.0,0.012002963572740555,-0.0006032438832335174,-0.000541688350494951,8.032541700231377e-06,8.835795597406104e-06,6.461551038228208e-06,-0.0006032438832335174,6.27615736448206e-05,8.835795597406104e-06,-1.204881186822604e-06,-4.310144277042127e-07,-2.779326858178173e-21,-0.000541688350494951,8.835795597406104e-06,5.025941209169105e-05,-3.402103790447888e-21,-3.8416501979554596e-07,-8.615401725364791e-07,8.032541700231377e-06,-1.204881186822604e-06,-3.402103790447888e-21,2.938734589008618e-08,3.5103455157113766e-23,5.831841044108686e-23,8.835795597406104e-06,-4.310144277042127e-07,-3.8416501979554596e-07,3.5103455157113766e-23,1.8739758189667555e-08,1.6543612251060553e-23,6.461551038228208e-06,-2.779326858178173e-21,-8.615401725364791e-07,5.831841044108686e-23,1.6543612251060553e-23,1.8729133799411102e-08,42.0,48.0,0.01176360808312893,-0.0005908528692089021,-0.0005199505249038339,7.865196494094562e-06,8.47515093482798e-06,6.073858003219357e-06,-0.0005908528692089021,6.146265513962135e-05,8.47515093482798e-06,-1.1797794741141843e-06,-4.134219864226907e-07,1.0058516248644817e-21,-0.0005199505249038339,8.47515093482798e-06,4.721322693512775e-05,1.927354859107171e-21,-3.606447194215434e-07,-7.92242360603268e-07,7.865196494094562e-06,-1.1797794741141843e-06,1.927354859107171e-21,2.877511029453217e-08,-3.1265975019350115e-23,-2.737810875784819e-23,8.47515093482798e-06,-4.134219864226907e-07,-3.606447194215434e-07,-3.1265975019350115e-23,1.7592425294310488e-08,5.790264287871194e-24,6.073858003219357e-06,1.0058516248644817e-21,-7.92242360603268e-07,-2.737810875784819e-23,5.790264287871194e-24,1.685622130764841e-08,42.0,49.0,0.011533611454069614,-0.0005789606948383152,-0.0004994954797439277,7.704682502662763e-06,8.136144970194437e-06,5.7165725593222305e-06,-0.0005789606948383152,6.021641820552759e-05,8.136144970194437e-06,-1.1557024208741495e-06,-3.9688512742941384e-07,1.0587911840678754e-21,-0.0004994954797439277,8.136144970194437e-06,4.44083780166693e-05,1.7760242259141904e-21,-3.390060214769619e-07,-7.297751949408848e-07,7.704682502662763e-06,-1.1557024208741495e-06,1.7760242259141904e-21,2.8187862710638e-08,-2.6792758188956093e-23,-2.5463585939365675e-23,8.136144970194437e-06,-3.9688512742941384e-07,-3.390060214769619e-07,-2.6792758188956093e-23,1.653688030955891e-08,0.0,5.7165725593222305e-06,1.0587911840678754e-21,-7.297751949408848e-07,-2.5463585939365675e-23,0.0,1.5203649894601767e-08,42.0,50.0,0.011312436312437057,-0.0005675377906300128,-0.0004802242910955101,7.55058908907813e-06,7.817080586391967e-06,5.386770226323279e-06,-0.0005675377906300128,5.901971599087119e-05,7.817080586391967e-06,-1.132588295149617e-06,-3.813210014413926e-07,8.735027268559972e-22,-0.0004802242910955101,7.817080586391967e-06,4.1821418562904e-05,1.7104281571038818e-21,-3.1906449748930754e-07,-6.733462782904098e-07,7.55058908907813e-06,-1.132588295149617e-06,1.7104281571038818e-21,2.762410566958806e-08,-2.6284110143600447e-23,-2.42300472973152e-23,7.817080586391967e-06,-3.813210014413926e-07,-3.1906449748930754e-07,-2.6284110143600447e-23,1.556412243530758e-08,4.1359030627651384e-24,5.386770226323279e-06,8.735027268559972e-22,-6.733462782904098e-07,-2.42300472973152e-23,4.1359030627651384e-24,1.3741760618302123e-08,42.0,51.0,0.011099583469331264,-0.000556556973606348,-0.00046204731916077435,7.402538358292077e-06,7.516423465858679e-06,5.081858489575097e-06,-0.000556556973606348,5.7869656302500516e-05,7.516423465858679e-06,-1.1103807082690764e-06,-3.666548025194061e-07,-2.0117032497289633e-21,-0.00046204731916077435,7.516423465858679e-06,3.943159390473738e-05,-2.783755586408956e-21,-3.006569215813215e-07,-6.222683737178158e-07,7.402538358292077e-06,-1.1103807082690764e-06,-2.783755586408956e-21,2.7082457165761298e-08,2.3707045138928152e-23,4.558469659509981e-23,7.516423465858679e-06,-3.666548025194061e-07,-3.006569215813215e-07,2.3707045138928152e-23,1.4666191816559149e-08,4.1359030627651384e-24,5.081858489575097e-06,-2.0117032497289633e-21,-6.222683737178158e-07,4.558469659509981e-23,4.1359030627651384e-24,1.2445368291480463e-08,42.0,52.0,0.010894592851400375,-0.0005459930398501456,-0.0004448832478374243,7.260181519086473e-06,7.232784810184967e-06,4.799533144250745e-06,-0.0005459930398501456,5.6763561588013545e-05,7.232784810184967e-06,-1.0890272506003384e-06,-3.5281877330817224e-07,8.07328277851755e-22,-0.0004448832478374243,7.232784810184967e-06,3.722047767951153e-05,1.5573706632131616e-21,-2.8363862725200306e-07,-5.759440000474569e-07,7.260181519086473e-06,-1.0890272506003384e-06,1.5573706632131616e-21,2.656163999859018e-08,-2.4275651346246026e-23,-2.0789793335210158e-23,7.232784810184967e-06,-3.5281877330817224e-07,-2.8363862725200306e-07,-2.4275651346246026e-23,1.3836030099412255e-08,3.308722450212111e-24,4.799533144250745e-06,8.07328277851755e-22,-5.759440000474569e-07,-2.0789793335210158e-23,3.308722450212111e-24,1.129301896440893e-08,42.0,53.0,0.010697036981582642,-0.00053582270629704,-0.00042865818249993026,7.123197065084241e-06,6.964904059714172e-06,4.537740551313618e-06,-0.00053582270629704,5.569896165980026e-05,6.964904059714172e-06,-1.0684796052373713e-06,-3.397514092284837e-07,-1.7867101231145398e-21,-0.00042865818249993026,6.964904059714172e-06,3.517166624078527e-05,-3.0069770197826747e-21,-2.678809210010513e-07,-5.338517894415418e-07,7.123197065084241e-06,-1.0684796052373713e-06,-3.0069770197826747e-21,2.6060476443490188e-08,4.1100265318077167e-23,4.1505383258231607e-23,6.964904059714172e-06,-3.397514092284837e-07,-2.678809210010513e-07,4.1100265318077167e-23,1.30673614151533e-08,3.7223127564886245e-24,4.537740551313618e-06,-1.7867101231145398e-21,-5.338517894415418e-07,4.1505383258231607e-23,3.7223127564886245e-24,1.0266380634504912e-08,42.0,54.0,0.010506518185138702,-0.0005260243779048324,-0.0004133048641961068,6.99128622727585e-06,6.71163479637471e-06,4.294647169444943e-06,-0.0005260243779048324,5.467356095323339e-05,6.71163479637471e-06,-1.048692865879275e-06,-3.273968047778908e-07,8.735027268559972e-22,-0.0004133048641961068,6.71163479637471e-06,3.327053491375409e-05,1.4157519301271847e-21,-2.5326923491775233e-07,-4.955361987413198e-07,6.99128622727585e-06,-1.048692865879275e-06,1.4157519301271847e-21,2.5577875817361928e-08,-1.8835325755930873e-23,-1.9426939880410423e-23,6.71163479637471e-06,-3.273968047778908e-07,-2.5326923491775233e-07,-1.8835325755930873e-23,1.235459645698711e-08,-2.481541837659083e-24,4.294647169444943e-06,8.735027268559972e-22,-4.955361987413198e-07,-1.9426939880410423e-23,-2.481541837659083e-24,9.349739649167077e-09,42.0,55.0,0.010322666727006435,-0.0005165779730305076,-0.00039876194205135107,6.864171609777259e-06,6.471933374996297e-06,4.068613179697422e-06,-0.0005165779730305076,5.36852385266684e-05,6.471933374996297e-06,-1.0296257642039564e-06,-3.157040566748037e-07,9.132073962585426e-22,-0.00039876194205135107,6.471933374996297e-06,3.1504008802585304e-05,1.3521102168779068e-21,-2.397012224264472e-07,-4.605977039773279e-07,6.864171609777259e-06,-1.0296257642039564e-06,1.3521102168779068e-21,2.5112823820450103e-08,-1.750217606965633e-23,-1.8394732740868644e-23,6.471933374996297e-06,-3.157040566748037e-07,-2.397012224264472e-07,-1.750217606965633e-23,1.1692743662194971e-08,-5.790264287871194e-24,4.068613179697422e-06,9.132073962585426e-22,-4.605977039773279e-07,-1.8394732740868644e-23,-5.790264287871194e-24,8.529586814631784e-09,42.0,56.0,0.010145138949155807,-0.0005074648652225733,-0.000384973332984373,6.741597189829918e-06,6.244848009373527e-06,3.858167474390939e-06,-0.0005074648652225733,5.273201168165542e-05,6.244848009373527e-06,-1.0112396466865903e-06,-3.046267238460132e-07,8.999725064576941e-22,-0.000384973332984373,6.244848009373527e-06,2.98603863484459e-05,1.2927323409975592e-21,-2.2708537983362476e-07,-4.2868529703810054e-07,6.741597189829918e-06,-1.0112396466865903e-06,1.2927323409975592e-21,2.466438075998667e-08,-1.6284919516689617e-23,-1.74343908297925e-23,6.244848009373527e-06,-3.046267238460132e-07,-2.2708537983362476e-07,-1.6284919516689617e-23,1.107733549332579e-08,-6.2038545941477076e-24,3.858167474390939e-06,8.999725064576941e-22,-4.2868529703810054e-07,-1.74343908297925e-23,-6.2038545941477076e-24,7.794278111816766e-09,42.0,57.0,0.009973614476621151,-0.0004986677668057382,-0.00037188781425356865,6.623323770327261e-06,6.0295083130768035e-06,3.6619894672185183e-06,-0.0004986677668057382,5.181205051485449e-05,6.0295083130768035e-06,-9.934985882864567e-07,-2.941223726793396e-07,7.014491594449675e-22,-0.00037188781425356865,6.0295083130768035e-06,2.8329155611572787e-05,1.2372461116001713e-21,-2.1533958260988584e-07,-3.9948977814674436e-07,6.623323770327261e-06,-9.934985882864567e-07,1.2372461116001713e-21,2.4231672668406645e-08,-1.5171674274076293e-23,-1.6539764187564885e-23,6.0295083130768035e-06,-2.941223726793396e-07,-2.1533958260988584e-07,-1.5171674274076293e-23,1.05043698184204e-08,-1.2407709188295415e-24,3.6619894672185183e-06,7.014491594449675e-22,-3.9948977814674436e-07,-1.6539764187564885e-23,-1.2407709188295415e-24,7.133746038334721e-09,42.0,58.0,0.009807792492210865,-0.0004901704378426075,-0.00035945835406892,6.509128525067354e-06,5.825118478242075e-06,3.4788899938575923e-06,-0.0004901704378426075,5.092363790026866e-05,5.825118478242075e-06,-9.76369278760103e-07,-2.8415212227628217e-07,7.940933880509066e-22,-0.00035945835406892,5.825118478242075e-06,2.6900872398982756e-05,1.1853186167619654e-21,-2.043901190518227e-07,-3.727382136275992e-07,6.509128525067354e-06,-9.76369278760103e-07,1.1853186167619654e-21,2.3813884197920743e-08,-1.4151953224942353e-23,-1.5705326054683824e-23,5.825118478242075e-06,-2.8415212227628217e-07,-2.043901190518227e-07,-1.4151953224942353e-23,9.970249514879015e-09,-4.963083675318166e-24,3.4788899938575923e-06,7.940933880509066e-22,-3.727382136275992e-07,-1.5705326054683824e-23,-4.963083675318166e-24,6.539266905747354e-09,42.0,59.0,0.009647395461797714,-0.0004819579189643264,-0.00034764179144985974,6.398804089258192e-06,5.630947725876467e-06,3.3077972148021217e-06,-0.0004819579189643264,5.006518040318042e-05,5.630947725876467e-06,-9.598206816008314e-07,-2.74680388656634e-07,4.896909226313924e-22,-0.00034764179144985974,5.630947725876467e-06,2.5567025659256615e-05,1.1366516796825424e-21,-1.9417061025706062e-07,-3.4818916105905373e-07,6.398804089258192e-06,-9.598206816008314e-07,1.1366516796825424e-21,2.341025862051538e-08,-1.3216484887068731e-23,-1.4926098718837372e-23,5.630947725876467e-06,-2.74680388656634e-07,-1.9417061025706062e-07,-1.3216484887068731e-23,9.471737172361827e-09,4.963083675318166e-24,3.3077972148021217e-06,4.896909226313924e-22,-3.4818916105905373e-07,-1.4926098718837372e-23,4.963083675318166e-24,6.003261443510155e-09,42.0,60.0,0.009492159821093082,-0.0004740160657092929,-0.0003363985160831362,6.292157650023e-06,5.446326667879475e-06,3.1477425181947183e-06,-0.0004740160657092929,4.9235190090257674e-05,5.446326667879475e-06,-9.438236361347663e-07,-2.6567445843284077e-07,7.146840492458159e-22,-0.0003363985160831362,5.446326667879475e-06,2.4319937438121997e-05,1.090977314846068e-21,-1.8462124273810332e-07,-3.256285197039688e-07,6.292157650023e-06,-9.438236361347663e-07,1.090977314846068e-21,2.302008894616847e-08,-1.2357052485266648e-23,-1.4197588828309388e-23,5.446326667879475e-06,-2.6567445843284077e-07,-1.8462124273810332e-07,-1.2357052485266648e-23,9.005914236581702e-09,-4.1359030627651384e-24,3.1477425181947183e-06,7.146840492458159e-22,-3.256285197039688e-07,-1.4197588828309388e-23,-4.1359030627651384e-24,5.519127377340283e-09,42.0,61.0,0.009341840632259846,-0.0004663317231461406,-0.0003256920026615262,6.189007308421424e-06,5.270638666843297e-06,2.997849833263899e-06,-0.0004663317231461406,4.84322699776385e-05,5.270638666843297e-06,-9.283510848945298e-07,-2.571043182797439e-07,4.632211430296955e-22,-0.0003256920026615262,5.270638666843297e-06,2.315266647201497e-05,1.0480544968470043e-21,-1.7568794419275946e-07,-3.0486609148283605e-07,6.189007308421424e-06,-9.283510848945298e-07,1.0480544968470043e-21,2.2642709041065245e-08,-1.1566357478440997e-23,-1.3515736904881607e-23,5.270638666843297e-06,-2.571043182797439e-07,-1.7568794419275946e-07,-1.1566357478440997e-23,8.570143705810551e-09,3.308722450212111e-24,2.997849833263899e-06,4.632211430296955e-22,-3.0486609148283605e-07,-1.3515736904881607e-23,3.308722450212111e-24,5.081101761561513e-09,42.0,62.0,0.009196207858622074,-0.0004588925512507558,-0.0003154886362608522,6.089184807933634e-06,5.103316652821377e-06,2.8573256258823676e-06,-0.0004588925512507558,4.765511766890995e-05,5.103316652821377e-06,-9.1337767571531e-07,-2.489422854523582e-07,7.014491594449675e-22,-0.0003154886362608522,5.103316652821377e-06,2.205892451456748e-05,1.0076657272674513e-21,-1.6732185770251817e-07,-2.8573256827257865e-07,6.089184807933634e-06,-9.1337767571531e-07,1.0076657272674513e-21,2.227750428573927e-08,-1.0837908330202716e-23,-1.2876862912431171e-23,5.103316652821377e-06,-2.489422854523582e-07,-1.6732185770251817e-07,-1.0837908330202716e-23,8.162041709169898e-09,-5.790264287871194e-24,2.8573256258823676e-06,7.014491594449675e-22,-2.8573256827257865e-07,-1.2876862912431171e-23,-5.790264287871194e-24,4.684140630928368e-09,42.0,63.0,0.009055046364665031,-0.00045168702490627766,-0.0003057573630940169,5.9925309869868215e-06,4.943838121107547e-06,2.7254491214989685e-06,-0.00045168702490627766,4.690251807915047e-05,4.943838121107547e-06,-8.988796480480232e-07,-2.4116283725561516e-07,6.220398206398768e-22,-0.0003057573630940169,4.943838121107547e-06,2.1033014490967616e-05,9.696146112964451e-22,-1.5947864540066803e-07,-2.6807697395270225e-07,5.9925309869868215e-06,-8.988796480480232e-07,9.696146112964451e-22,2.1923893811504058e-08,-1.0165914801507481e-23,-1.2277634702494428e-23,4.943838121107547e-06,-2.4116283725561516e-07,-1.5947864540066803e-07,-1.0165914801507481e-23,7.779446420386193e-09,-4.1359030627651384e-24,2.7254491214989685e-06,6.220398206398768e-22,-2.6807697395270225e-07,-1.2277634702494428e-23,-4.1359030627651384e-24,4.323822189178372e-09,42.0,64.0,0.008918153122067451,-0.0004447042883839458,-0.0002964695158880204,5.898897597944597e-06,4.791720130015165e-06,2.6015650291810744e-06,-0.0004447042883839458,4.61733179690782e-05,4.791720130015165e-06,-8.848346624290571e-07,-2.3374244051410642e-07,4.499862532288471e-22,-0.0002964695158880204,4.791720130015165e-06,2.0069755919394083e-05,9.337232324008657e-22,-1.52118090568365e-07,-2.517643622468313e-07,5.898897597944597e-06,-8.848346624290571e-07,9.337232324008657e-22,2.1581332276809917e-08,-9.54520748684338e-24,-1.1715023838056233e-23,4.791720130015165e-06,-2.3374244051410642e-07,-1.52118090568365e-07,-9.54520748684338e-24,7.4203949651519e-09,1.2407709188295415e-24,2.6015650291810744e-06,4.499862532288471e-22,-2.517643622468313e-07,-1.1715023838056233e-23,1.2407709188295415e-24,3.996259767546917e-09,43.0,3.0,0.11246182769536972,-0.007575757801532745,-0.06818182021379471,0.0001174536082544364,0.0015856237150728703,0.011627906933426857,-0.007575757801532745,0.0008477531373500824,0.0015856237150728703,-1.7188333004014567e-05,-7.550588634330779e-05,6.505213034913027e-19,-0.06818182021379471,0.0015856237150728703,0.18446089327335358,3.849145716904573e-20,-0.0015856237150728703,-0.06976744532585144,0.0001174536082544364,-1.7188333004014567e-05,3.849145716904573e-20,4.0924601307779085e-07,1.0843905661011877e-21,-3.298121290556934e-20,0.0015856237150728703,-7.550588634330779e-05,-0.0015856237150728703,1.0843905661011877e-21,7.550588634330779e-05,1.1926223897340549e-18,0.011627906933426857,6.505213034913027e-19,-0.06976744532585144,-3.298121290556934e-20,1.1926223897340549e-18,0.03488372266292572,43.0,4.0,0.09399224817752838,-0.0059196618385612965,-0.04439746215939522,8.809020073385909e-05,0.0009513741824775934,0.0058139534667134285,-0.0059196618385612965,0.0006471407250501215,0.0009513741824775934,-1.2891249753010925e-05,-4.530353544396348e-05,-1.7889335846010823e-18,-0.04439746215939522,0.0009513741824775934,0.07029598206281662,-3.334103000968137e-20,-0.0006342494743876159,-0.01744186133146286,8.809020073385909e-05,-1.2891249753010925e-05,-3.334103000968137e-20,3.0693450980834314e-07,-7.103827504502185e-22,1.3429135073130622e-20,0.0009513741824775934,-4.530353544396348e-05,-0.0006342494743876159,-7.103827504502185e-22,3.020235635631252e-05,6.776263578034403e-19,0.0058139534667134285,-1.7889335846010823e-18,-0.01744186133146286,1.3429135073130622e-20,6.776263578034403e-19,0.0058139534667134285,43.0,5.0,0.0807812362909317,-0.004862579051405191,-0.0312594398856163,7.047216058708727e-05,0.0006342494743876159,0.003322259057313204,-0.004862579051405191,0.000523753056768328,0.0006342494743876159,-1.03129996205098e-05,-3.020235635631252e-05,-2.439454888092385e-19,-0.0312594398856163,0.0006342494743876159,0.03556327521800995,-4.9262547510139496e-20,-0.00031712473719380796,-0.006644518114626408,7.047216058708727e-05,-1.03129996205098e-05,-4.9262547510139496e-20,2.4554759647799074e-07,1.002348628061419e-22,1.2116233843327743e-20,0.0006342494743876159,-3.020235635631252e-05,-0.00031712473719380796,1.002348628061419e-22,1.510117817815626e-05,-1.1519648082658485e-19,0.003322259057313204,-2.439454888092385e-19,-0.006644518114626408,1.2116233843327743e-20,-1.1519648082658485e-19,0.001661129528656602,43.0,6.0,0.07084130495786667,-0.004127655178308487,-0.0232180617749691,5.87268041272182e-05,0.0004530353471636772,0.0020764118526130915,-0.004127655178308487,0.000440056377556175,0.0004530353471636772,-8.594166502007283e-06,-2.1573110643657856e-05,-6.505213034913027e-19,-0.0232180617749691,0.0004530353471636772,0.020707489922642708,-2.0420982598311657e-20,-0.00018121414177585393,-0.003114617895334959,5.87268041272182e-05,-8.594166502007283e-06,-2.0420982598311657e-20,2.0462300653889542e-07,5.793881688438175e-23,3.875325417836379e-21,0.0004530353471636772,-2.1573110643657856e-05,-0.00018121414177585393,5.793881688438175e-23,8.629244803159963e-06,1.5585406229479126e-19,0.0020764118526130915,-6.505213034913027e-19,-0.003114617895334959,3.875325417836379e-21,1.5585406229479126e-19,0.0006229236023500562,43.0,7.0,0.0630851686000824,-0.00358652975410223,-0.017932647839188576,5.0337261200184e-05,0.0003397765103727579,0.0013842746848240495,-0.00358652975410223,0.00037950259866192937,0.0003397765103727579,-7.366428235400235e-06,-1.6179834346985444e-05,2.439454888092385e-19,-0.017932647839188576,0.0003397765103727579,0.013175778090953827,2.4517088903207618e-20,-0.0001132588367909193,-0.001661129528656602,5.0337261200184e-05,-7.366428235400235e-06,2.4517088903207618e-20,1.7539115049203247e-07,-1.4227583528736426e-22,-3.7990163907412285e-21,0.0003397765103727579,-1.6179834346985444e-05,-0.0001132588367909193,-1.4227583528736426e-22,5.393277660914464e-06,-3.049318610115481e-20,0.0013842746848240495,2.439454888092385e-19,-0.001661129528656602,-3.7990163907412285e-21,-3.049318610115481e-20,0.0002768549311440438,43.0,8.0,0.056862227618694305,-0.0031712474301457405,-0.014270612969994545,4.4045100366929546e-05,0.0002642706094775349,0.0009689922444522381,-0.0031712474301457405,0.0003336378140375018,0.0002642706094775349,-6.4456248765054625e-06,-1.2584315300046e-05,2.778268066994105e-19,-0.014270612969994545,0.0002642706094775349,0.008922278881072998,4.8391209670042915e-20,-7.550588634330779e-05,-0.0009689922444522381,4.4045100366929546e-05,-6.4456248765054625e-06,4.8391209670042915e-20,1.5346725490417157e-07,-7.252589253178081e-22,-4.272117252991461e-21,0.0002642706094775349,-1.2584315300046e-05,-7.550588634330779e-05,-7.252589253178081e-22,3.595518592192093e-06,-1.5246593050577406e-20,0.0009689922444522381,2.778268066994105e-19,-0.0009689922444522381,-4.272117252991461e-21,-1.5246593050577406e-20,0.0001384274655720219,43.0,9.0,0.05175789073109627,-0.002842377172783017,-0.011627906933426857,3.9151200326159596e-05,0.00021141649631317705,0.0007047216058708727,-0.002842377172783017,0.0002976855612359941,0.00021141649631317705,-5.729444183089072e-06,-1.0067451512441039e-05,6.098637220230962e-20,-0.011627906933426857,0.00021141649631317705,0.006329910364001989,-5.384591166344321e-21,-5.285412407829426e-05,-0.0006040470907464623,3.9151200326159596e-05,-5.729444183089072e-06,-5.384591166344321e-21,1.3641533769259695e-07,6.366883113175579e-23,6.592884441892198e-22,0.00021141649631317705,-1.0067451512441039e-05,-5.285412407829426e-05,6.366883113175579e-23,2.5168628781102598e-06,-1.8211208365967457e-20,0.0007047216058708727,6.098637220230962e-20,-0.0006040470907464623,6.592884441892198e-22,-1.8211208365967457e-20,7.550588634330779e-05,43.0,10.0,0.0474950335919857,-0.002575437305495143,-0.009657889604568481,3.523608029354364e-05,0.00017297713202424347,0.0005285412189550698,-0.002575437305495143,0.0002687406959012151,0.00017297713202424347,-5.1564998102549e-06,-8.23700611363165e-06,1.6601845766184287e-19,-0.009657889604568481,0.00017297713202424347,0.004656768403947353,2.363281990369136e-20,-3.843936065095477e-05,-0.00039640592876821756,3.523608029354364e-05,-5.1564998102549e-06,2.363281990369136e-20,1.2277379823899537e-07,-2.403747278194318e-22,-1.8619459964560023e-21,0.00017297713202424347,-8.23700611363165e-06,-3.843936065095477e-05,-2.403747278194318e-22,1.8304458535567392e-06,-1.5670109524204556e-20,0.0005285412189550698,1.6601845766184287e-19,-0.00039640592876821756,-1.8619459964560023e-21,-1.5670109524204556e-20,4.4045100366929546e-05,43.0,11.0,0.043881241232156754,-0.002354410942643881,-0.008149883709847927,3.2032799936132506e-05,0.00014414760516956449,0.0004065701796207577,-0.002354410942643881,0.00024493373348377645,0.00014414760516956449,-4.687727141572395e-06,-6.864171609777259e-06,1.5246593050577406e-19,-0.008149883709847927,0.00014414760516956449,0.003527304157614708,1.9934824964742088e-20,-2.8829521397710778e-05,-0.0002710467961151153,3.2032799936132506e-05,-4.687727141572395e-06,1.9934824964742088e-20,1.1161255031311157e-07,-2.0784130891632482e-22,-1.4341949679767237e-21,0.00014414760516956449,-6.864171609777259e-06,-2.8829521397710778e-05,-2.0784130891632482e-22,1.3728343901675544e-06,-1.5670109524204556e-20,0.0004065701796207577,1.5246593050577406e-19,-0.0002710467961151153,-1.4341949679767237e-21,-1.5670109524204556e-20,2.7104677428724244e-05,43.0,12.0,0.040778666734695435,-0.0021683743689209223,-0.006969774607568979,2.93634020636091e-05,0.00012197105388622731,0.0003194479795638472,-0.0021683743689209223,0.000225006602704525,0.00012197105388622731,-4.297083251003642e-06,-5.808145488117589e-06,7.792703114739563e-20,-0.006969774607568979,0.00012197105388622731,0.002736692549660802,3.667626747593493e-21,-2.2176554921315983e-05,-0.00019166879064869136,2.93634020636091e-05,-4.297083251003642e-06,3.667626747593493e-21,1.0231150326944771e-07,8.503072375037214e-23,-4.999876147937674e-22,0.00012197105388622731,-5.808145488117589e-06,-2.2176554921315983e-05,8.503072375037214e-23,1.0560264627201832e-06,-8.470329472543003e-21,0.0003194479795638472,7.792703114739563e-20,-0.00019166879064869136,-4.999876147937674e-22,-8.470329472543003e-21,1.7424436009605415e-05,43.0,13.0,0.0380859449505806,-0.002009618328884244,-0.006028854753822088,2.7104677428724244e-05,0.0001045466196956113,0.0002555584069341421,-0.002009618328884244,0.00020808135741390288,0.0001045466196956113,-3.966538315580692e-06,-4.97841028845869e-06,-1.3552527156068805e-20,-0.006028854753822088,0.0001045466196956113,0.0021664381492882967,-9.22961584358776e-21,-1.7424436009605415e-05,-0.00013939548807684332,2.7104677428724244e-05,-3.966538315580692e-06,-9.22961584358776e-21,9.444138981962169e-08,7.157625293883361e-23,6.204913813462366e-22,0.0001045466196956113,-4.97841028845869e-06,-1.7424436009605415e-05,7.157625293883361e-23,8.297350291286421e-07,-2.329340604949326e-21,0.0002555584069341421,-1.3552527156068805e-20,-0.00013939548807684332,6.204913813462366e-22,-2.329340604949326e-21,1.1616290976235177e-05,43.0,14.0,0.035726871341466904,-0.0018725460395216942,-0.005266535561531782,2.5168630600092e-05,9.060707088792697e-05,0.00020764119108207524,-0.0018725460395216942,0.00019352659001015127,9.060707088792697e-05,-3.6832141177001176e-06,-4.314622401579982e-06,-7.284483346386983e-20,-0.005266535561531782,9.060707088792697e-05,0.001744621666148305,-1.1176437114019595e-20,-1.3939548807684332e-05,-0.00010382059554103762,2.5168630600092e-05,-3.6832141177001176e-06,-1.1176437114019595e-20,8.769557524601623e-08,8.7874283323768e-23,6.993115862055337e-22,9.060707088792697e-05,-4.314622401579982e-06,-1.3939548807684332e-05,8.7874283323768e-23,6.63788057408965e-07,6.45862622281404e-21,0.00020764119108207524,-7.284483346386983e-20,-0.00010382059554103762,6.993115862055337e-22,6.45862622281404e-21,7.986200216691941e-06,43.0,15.0,0.033643029630184174,-0.0017529950710013509,-0.0046402812004089355,2.349072201468516e-05,7.928118429845199e-05,0.0001709986390778795,-0.0017529950710013509,0.00018087650823872536,7.928118429845199e-05,-3.437666464378708e-06,-3.775294544539065e-06,3.8963515573697816e-20,-0.0046402812004089355,7.928118429845199e-05,0.00142581423278898,5.549419424195799e-21,-1.132588386099087e-05,-7.892244320828468e-05,2.349072201468516e-05,-3.437666464378708e-06,5.549419424195799e-21,8.18492011944727e-08,-3.9273197197269265e-23,-3.0575246517472425e-22,7.928118429845199e-05,-3.775294544539065e-06,-1.132588386099087e-05,-3.9273197197269265e-23,5.393278001974977e-07,-3.1763735522036263e-21,0.0001709986390778795,3.8963515573697816e-20,-7.892244320828468e-05,-3.0575246517472425e-22,-3.1763735522036263e-21,5.637317372020334e-06,43.0,16.0,0.0317889042198658,-0.0016478049801662564,-0.004119512625038624,2.2022550183464773e-05,6.995398871367797e-05,0.0001424988586222753,-0.0016478049801662564,0.00016977991617750376,6.995398871367797e-05,-3.2228124382527312e-06,-3.3311421248072293e-06,4.1504614415460717e-20,-0.004119512625038624,6.995398871367797e-05,0.0011803347151726484,1.631964825345042e-20,-9.327198313258123e-06,-6.107093940954655e-05,2.2022550183464773e-05,-3.2228124382527312e-06,1.631964825345042e-20,7.673362745208578e-08,-2.4110252457970147e-22,-7.113960769928547e-22,6.995398871367797e-05,-3.3311421248072293e-06,-9.327198313258123e-06,-2.4110252457970147e-22,4.441522776232887e-07,-8.999725064576941e-22,0.0001424988586222753,4.1504614415460717e-20,-6.107093940954655e-05,-7.113960769928547e-22,-8.999725064576941e-22,4.071395778737497e-06,43.0,17.0,0.030128486454486847,-0.0015545330243185163,-0.0036817886866629124,2.0727107767015696e-05,6.218132330104709e-05,0.00011999903654213995,-0.0015545330243185163,0.000159967050421983,6.218132330104709e-05,-3.0332350888784276e-06,-2.9610152978420956e-06,3.3034284942917713e-20,-0.0036817886866629124,6.218132330104709e-05,0.0009882193990051746,4.283253091208599e-21,-7.772665412630886e-06,-4.79996160720475e-05,2.0727107767015696e-05,-3.0332350888784276e-06,4.283253091208599e-21,7.221988340688767e-08,1.3170914759156829e-23,-2.740415442058369e-22,6.218132330104709e-05,-2.9610152978420956e-06,-7.772665412630886e-06,1.3170914759156829e-23,3.7012691223026195e-07,-2.6469779601696886e-21,0.00011999903654213995,3.3034284942917713e-20,-4.79996160720475e-05,-2.740415442058369e-22,-2.6469779601696886e-21,2.999976004502969e-06,43.0,18.0,0.02863292209804058,-0.0014712609117850661,-0.003310337197035551,1.9575600163079798e-05,5.563591912505217e-05,0.00010199918324360624,-0.0014712609117850661,0.00015122717013582587,5.563591912505217e-05,-2.864722091544536e-06,-2.649329417181434e-06,-1.5246593050577406e-20,-0.003310337197035551,5.563591912505217e-05,0.000835697865113616,-7.031486763304658e-21,-6.545402357005514e-06,-3.824969462584704e-05,1.9575600163079798e-05,-2.864722091544536e-06,-7.031486763304658e-21,6.820766884629847e-08,9.269438122684943e-23,2.65560923443251e-22,5.563591912505217e-05,-2.649329417181434e-06,-6.545402357005514e-06,9.269438122684943e-23,3.1168582381724264e-07,4.499862532288471e-22,0.00010199918324360624,-1.5246593050577406e-20,-3.824969462584704e-05,2.65560923443251e-22,4.499862532288471e-22,2.249981889690389e-06,43.0,19.0,0.027278820052742958,-0.0013964615063741803,-0.0029924176633358,1.854530637501739e-05,5.007232539355755e-05,8.742787031223997e-05,-0.0013964615063741803,0.00014339333574753255,5.007232539355755e-05,-2.713947196752997e-06,-2.384396566412761e-06,-2.541098841762901e-21,-0.0029924176633358,5.007232539355755e-05,0.0007130592130124569,3.2059670695287046e-21,-5.563591912505217e-06,-3.085689604631625e-05,1.854530637501739e-05,-2.713947196752997e-06,3.2059670695287046e-21,6.461779378241772e-08,-5.997564311988792e-23,-1.0411640555862757e-22,5.007232539355755e-05,-2.384396566412761e-06,-5.563591912505217e-06,-5.997564311988792e-23,2.649329360338015e-07,1.0852609636695723e-21,8.742787031223997e-05,-2.541098841762901e-21,-3.085689604631625e-05,-1.0411640555862757e-22,1.0852609636695723e-21,1.714272002573125e-06,43.0,20.0,0.02604701556265354,-0.0013289035996422172,-0.0027182120829820633,1.761804014677182e-05,4.530353544396348e-05,7.550588634330779e-05,-0.0013289035996422172,0.000136331538669765,4.530353544396348e-05,-2.57824990512745e-06,-2.157311200789991e-06,5.929230630780102e-21,-0.0027182120829820633,4.530353544396348e-05,0.0006133197457529604,4.77892814858393e-21,-4.768793132825522e-06,-2.5168630600092e-05,1.761804014677182e-05,-2.57824990512745e-06,4.77892814858393e-21,6.138689911949768e-08,-4.2638241160670535e-23,-1.79644239476556e-22,4.530353544396348e-05,-2.157311200789991e-06,-4.768793132825522e-06,-4.2638241160670535e-23,2.2708537983362476e-07,1.0587911840678754e-22,7.550588634330779e-05,5.929230630780102e-21,-2.5168630600092e-05,-1.79644239476556e-22,1.0587911840678754e-22,1.324664708590717e-06,43.0,21.0,0.024921651929616928,-0.0012675836915150285,-0.0024800552055239677,1.67790858540684e-05,4.1185030568158254e-05,6.565729563590139e-05,-0.0012675836915150285,0.00012993294512853026,4.1185030568158254e-05,-2.455476078466745e-06,-1.9611918560258346e-06,-2.244637310223896e-20,-0.0024800552055239677,4.1185030568158254e-05,0.0005313685978762805,-3.820467348911488e-21,-4.118503056815825e-06,-2.0733883502543904e-05,1.67790858540684e-05,-2.455476078466745e-06,-3.820467348911488e-21,5.8463715646439596e-08,6.351617708026466e-23,1.1767257631806719e-22,4.1185030568158254e-05,-1.9611918560258346e-06,-4.118503056815825e-06,6.351617708026466e-23,1.961191884447544e-07,1.6940658945086007e-21,6.565729563590139e-05,-2.244637310223896e-20,-2.0733883502543904e-05,1.1767257631806719e-22,1.6940658945086007e-21,1.03669412965246e-06,43.0,22.0,0.023889506235718727,-0.0012116755824536085,-0.0022718915715813637,1.6016399968066253e-05,3.7603724194923416e-05,5.7450131862424314e-05,-0.0012116755824536085,0.00012410830822773278,3.7603724194923416e-05,-2.3438635707861977e-06,-1.7906535276779323e-06,-1.3976043629695956e-20,-0.0022718915715813637,3.7603724194923416e-05,0.0004634062061086297,-1.2877597657478294e-21,-3.5813070553558646e-06,-1.7235039194929413e-05,1.6016399968066253e-05,-2.3438635707861977e-06,-1.2877597657478294e-21,5.5806275156555785e-08,7.960381195088936e-24,4.253999011264707e-23,3.7603724194923416e-05,-1.7906535276779323e-06,-3.5813070553558646e-06,7.960381195088936e-24,1.7053842782388529e-07,9.132073962585426e-22,5.7450131862424314e-05,-1.3976043629695956e-20,-1.7235039194929413e-05,4.253999011264707e-23,9.132073962585426e-22,8.207161954487674e-07,43.0,23.0,0.02293945476412773,-0.001160492654889822,-0.002088886918500066,1.5320036254706793e-05,3.447007838985883e-05,5.055611836723983e-05,-0.001160492654889822,0.00011878365330630913,3.447007838985883e-05,-2.2419565084419446e-06,-1.6414323908975348e-06,-2.0328790734103208e-20,-0.002088886918500066,3.447007838985883e-05,0.0004065678804181516,-6.179222948807597e-21,-3.1336435313278344e-06,-1.4444604857999366e-05,1.5320036254706793e-05,-2.2419565084419446e-06,-6.179222948807597e-21,5.3379913822482195e-08,6.426020544252015e-23,2.0357148882628936e-22,3.447007838985883e-05,-1.6414323908975348e-06,-3.1336435313278344e-06,6.426020544252015e-23,1.4922112256954279e-07,9.529120656610879e-22,5.055611836723983e-05,-2.0328790734103208e-20,-1.4444604857999366e-05,2.0357148882628936e-22,9.529120656610879e-22,6.565729790963815e-07,43.0,24.0,0.02206207811832428,-0.0011134601663798094,-0.001927142613567412,1.468170103180455e-05,3.171247226418927e-05,4.472271757549606e-05,-0.0011134601663798094,0.00011389725841581821,3.171247226418927e-05,-2.148541625501821e-06,-1.5101178405529936e-06,8.470329472543003e-22,-0.001927142613567412,3.171247226418927e-05,0.00035866559483110905,2.1837957931795982e-21,-2.7576063530432293e-06,-1.219710520672379e-05,1.468170103180455e-05,-2.148541625501821e-06,2.1837957931795982e-21,5.1155751634723856e-08,-2.204840986543761e-24,-8.353245601030397e-23,3.171247226418927e-05,-1.5101178405529936e-06,-2.7576063530432293e-06,-2.204840986543761e-24,1.3131459297710535e-07,2.514629062161204e-22,4.472271757549606e-05,8.470329472543003e-22,-1.219710520672379e-05,-8.353245601030397e-23,2.514629062161204e-22,5.303089096742042e-07,43.0,25.0,0.02124934457242489,-0.0010700926650315523,-0.0017834878526628017,1.4094433026912156e-05,2.9273052859934978e-05,3.975352956331335e-05,-0.0010700926650315523,0.00010939712228719145,2.9273052859934978e-05,-2.0625998331524897e-06,-1.3939549035058008e-06,-0.0,-0.0017834878526628017,2.9273052859934978e-05,0.0003180085914209485,-1.0587911840678754e-22,-2.439420995870023e-06,-1.0370486052124761e-05,1.4094433026912156e-05,-2.0625998331524897e-06,-1.0587911840678754e-22,4.910952000614088e-08,0.0,-0.0,2.9273052859934978e-05,-1.3939549035058008e-06,-2.439420995870023e-06,0.0,1.161629086254834e-07,-0.0,3.975352956331335e-05,-0.0,-1.0370486052124761e-05,-0.0,-0.0,4.3210357603129523e-07,43.0,26.0,0.020494364202022552,-0.0010299778077751398,-0.0016553214518353343,1.3552338714362122e-05,2.7104677428724244e-05,3.5494220355758443e-05,-0.0010299778077751398,0.00010523918899707496,2.7104677428724244e-05,-1.983269157790346e-06,-1.2906989468319807e-06,-0.0,-0.0016553214518353343,2.7104677428724244e-05,0.0002832761674653739,1.0587911840678754e-22,-2.1683742943423567e-06,-8.873555088939611e-06,1.3552338714362122e-05,-1.983269157790346e-06,1.0587911840678754e-22,4.7220694909810845e-08,-3.308722450212111e-24,-0.0,2.7104677428724244e-05,-1.2906989468319807e-06,-2.1683742943423567e-06,-3.308722450212111e-24,1.0325591404125589e-07,-0.0,3.5494220355758443e-05,-0.0,-8.873555088939611e-06,-0.0,-0.0,3.549422160631366e-07,43.0,27.0,0.019791189581155777,-0.0009927626233547926,-0.0015404936857521534,1.3050400411884766e-05,2.5168630600092e-05,3.182240470778197e-05,-0.0009927626233547926,0.00010138582729268819,2.5168630600092e-05,-1.9098147276963573e-06,-1.1985061973973643e-06,-0.0,-0.0015404936857521534,2.5168630600092e-05,0.0002534265222493559,-5.293955920339377e-23,-1.936048420247971e-06,-7.637377166247461e-06,1.3050400411884766e-05,-1.9098147276963573e-06,-5.293955920339377e-23,4.547177923086565e-08,3.308722450212111e-24,-0.0,2.5168630600092e-05,-1.1985061973973643e-06,-1.936048420247971e-06,3.308722450212111e-24,9.21927849617532e-08,-0.0,3.182240470778197e-05,-0.0,-7.637377166247461e-06,-0.0,-0.0,2.93745273438617e-07,43.0,28.0,0.01913466863334179,-0.0009581436752341688,-0.0014372156001627445,1.2584315300046e-05,2.343286178074777e-05,2.8640164600801654e-05,-0.0009581436752341688,9.7804753750097e-05,2.343286178074777e-05,-1.8416070588500588e-06,-1.1158506367792143e-06,-0.0,-0.0014372156001627445,2.343286178074777e-05,0.00022763034212403,5.293955920339377e-23,-1.735767568789015e-06,-6.609268893953413e-06,1.2584315300046e-05,-1.8416070588500588e-06,5.293955920339377e-23,4.3847787623008116e-08,0.0,-0.0,2.343286178074777e-05,-1.1158506367792143e-06,-1.735767568789015e-06,0.0,8.265559614528684e-08,-0.0,2.8640164600801654e-05,-0.0,-6.609268893953413e-06,-0.0,-0.0,2.447877420763689e-07,43.0,29.0,0.018520304933190346,-0.0009258584468625486,-0.0013439879985526204,1.2150372640462592e-05,2.1870671844226308e-05,2.5868535885820165e-05,-0.0009258584468625486,9.446809417568147e-05,2.1870671844226308e-05,-1.7781034102881677e-06,-1.0414605640107766e-06,-0.0,-0.0013439879985526204,2.1870671844226308e-05,0.00020522184786386788,-5.293955920339377e-23,-1.5621908460161649e-06,-5.748563580709742e-06,1.2150372640462592e-05,-1.7781034102881677e-06,-5.293955920339377e-23,4.233579531387477e-08,3.308722450212111e-24,-0.0,2.1870671844226308e-05,-1.0414605640107766e-06,-1.5621908460161649e-06,3.308722450212111e-24,7.439003724130089e-08,-0.0,2.5868535885820165e-05,-0.0,-5.748563580709742e-06,-0.0,-0.0,2.0530583810796088e-07,43.0,30.0,0.01794416457414627,-0.0008956784731708467,-0.0012595478910952806,1.174536100734258e-05,2.0459659936022945e-05,2.3443360987585038e-05,-0.0008956784731708467,9.135163418250158e-05,2.0459659936022945e-05,-1.718833232189354e-06,-9.742695965542225e-07,-0.0,-0.0012595478910952806,2.0459659936022945e-05,0.00018566238577477634,1.0587911840678754e-22,-1.4110111123954994e-06,-5.023577159590786e-06,1.174536100734258e-05,-1.718833232189354e-06,1.0587911840678754e-22,4.092460059723635e-08,-3.308722450212111e-24,-0.0,2.0459659936022945e-05,-9.742695965542225e-07,-1.4110111123954994e-06,-3.308722450212111e-24,6.719100298369085e-08,-0.0,2.3443360987585038e-05,-0.0,-5.023577159590786e-06,-0.0,-0.0,1.7322680889719777e-07,43.0,31.0,0.017402788624167442,-0.0008674043347127736,-0.0011828241404145956,1.1366478247509804e-05,1.918093221320305e-05,2.1312145690899342e-05,-0.0008674043347127736,8.84342662175186e-05,1.918093221320305e-05,-1.6633870245641447e-06,-9.1337767571531e-07,-0.0,-0.0011828241404145956,1.918093221320305e-05,0.00016851293912623078,-2.117582368135751e-22,-1.278728746001434e-06,-4.409409484651405e-06,1.1366478247509804e-05,-1.6633870245641447e-06,-2.117582368135751e-22,3.960445127404455e-08,9.926167350636332e-24,-0.0,1.918093221320305e-05,-9.1337767571531e-07,-1.278728746001434e-06,9.926167350636332e-24,6.089184978463891e-08,-0.0,2.1312145690899342e-05,-0.0,-4.409409484651405e-06,-0.0,-0.0,1.469803123654856e-07,43.0,32.0,0.01689312234520912,-0.0008408610592596233,-0.0011129042832180858,1.1011275091732386e-05,1.801845064619556e-05,1.9431663531577215e-05,-0.0008408610592596233,8.569750934839249e-05,1.801845064619556e-05,-1.6114062191263656e-06,-8.580214512221573e-07,-1.3896682758504882e-21,-0.0011129042832180858,1.801845064619556e-05,0.00015341326070483774,5.293955920339377e-23,-1.1624806575127877e-06,-3.886332706315443e-06,1.1011275091732386e-05,-1.6114062191263656e-06,5.293955920339377e-23,3.836681372604289e-08,0.0,6.181000007976515e-39,1.801845064619556e-05,-8.580214512221573e-07,-1.1624806575127877e-06,0.0,5.5356224493152695e-08,8.965601718607467e-23,1.9431663531577215e-05,-1.3896682758504882e-21,-3.886332706315443e-06,6.181000007976515e-39,8.965601718607467e-23,1.253655597110992e-07,43.0,33.0,0.016412459313869476,-0.0008158942800946534,-0.0010490069398656487,1.0677600585040636e-05,1.6958541891654022e-05,1.7766091332305223e-05,-0.0008158942800946534,8.312508725794032e-05,1.6958541891654022e-05,-1.5625756759618525e-06,-8.075496111814573e-07,-0.0,-0.0010490069398656487,1.6958541891654022e-05,0.00014006589481141418,0.0,-1.0599088682283764e-06,-3.43859846907435e-06,1.0677600585040636e-05,-1.5625756759618525e-06,0.0,3.720418462194175e-08,0.0,-0.0,1.6958541891654022e-05,-8.075496111814573e-07,-1.0599088682283764e-06,0.0,5.047185069884108e-08,-0.0,1.7766091332305223e-05,-0.0,-3.43859846907435e-06,-0.0,-0.0,1.0745620215857343e-07,43.0,34.0,0.01595839112997055,-0.0007923676748760045,-0.0009904595790430903,1.0363553883507848e-05,1.598948256287258e-05,1.6285583114949986e-05,-0.0007923676748760045,8.070262265391648e-05,1.598948256287258e-05,-1.5166175444392138e-06,-7.614039532199968e-07,6.352747104407253e-22,-0.0009904595790430903,1.598948256287258e-05,0.0001282237353734672,-0.0,-9.690595561551163e-07,-3.053547061426798e-06,1.0363553883507848e-05,-1.5166175444392138e-06,-0.0,3.610994170344384e-08,1.6543612251060553e-24,-8.271806125530277e-25,1.598948256287258e-05,-7.614039532199968e-07,-9.690595561551163e-07,1.6543612251060553e-24,4.614569348859732e-08,-3.639594695233322e-23,1.6285583114949986e-05,6.352747104407253e-22,-3.053547061426798e-06,-8.271806125530277e-25,-3.639594695233322e-23,9.253172805756549e-08,43.0,35.0,0.015528772957623005,-0.0007701600552536547,-0.0009366811718791723,1.0067451512441039e-05,1.510117817815626e-05,1.4965131413191557e-05,-0.0007701600552536547,7.841738261049613e-05,1.510117817815626e-05,-1.4732856925547821e-06,-7.19103695701051e-07,9.529120656610879e-22,-0.0009366811718791723,1.510117817815626e-05,0.0001176803489215672,5.103571598384614e-23,-8.883045552465774e-07,-2.720933025557315e-06,1.0067451512441039e-05,-1.4732856925547821e-06,5.103571598384614e-23,3.507823009840649e-08,-3.852406914508436e-25,-1.180016598998719e-24,1.510117817815626e-05,-7.19103695701051e-07,-8.883045552465774e-07,-3.852406914508436e-25,4.230021843909526e-08,-5.293955920339377e-23,1.4965131413191557e-05,9.529120656610879e-22,-2.720933025557315e-06,-1.180016598998719e-24,-5.293955920339377e-23,8.002744067425738e-08,43.0,36.0,0.015121678821742535,-0.0007491635624319315,-0.0008871673489920795,9.787800081539899e-06,1.428489758836804e-05,1.3783673239231575e-05,-0.0007491635624319315,7.625801663380116e-05,1.428489758836804e-05,-1.432361045772268e-06,-6.802332563893287e-07,0.0,-0.0008871673489920795,1.428489758836804e-05,0.00010826238576555625,4.6951325538191933e-23,-8.162799076671945e-07,-2.4324128844455117e-06,9.787800081539899e-06,-1.432361045772268e-06,4.6951325538191933e-23,3.410383442314924e-08,-2.008366106198058e-24,-2.2771037022980133e-25,1.428489758836804e-05,-6.802332563893287e-07,-8.162799076671945e-07,-2.008366106198058e-24,3.88704712861454e-08,0.0,1.3783673239231575e-05,0.0,-2.4324128844455117e-06,-2.2771037022980133e-25,0.0,6.949750996909643e-08,43.0,37.0,0.014735382981598377,-0.0007292816299013793,-0.0008414788171648979,9.523265362076927e-06,1.3533061064663343e-05,1.2723390682367608e-05,-0.0007292816299013793,7.421440386679024e-05,1.3533061064663343e-05,-1.3936486311649787e-06,-6.444315090448072e-07,0.0,-0.0008414788171648979,1.3533061064663343e-05,9.982354094972834e-05,-4.329155998515647e-23,-7.518367510783719e-07,-2.1811526949022664e-06,9.523265362076927e-06,-1.3936486311649787e-06,-4.329155998515647e-23,3.31821077281802e-08,3.634779567153943e-24,-1.535617641524823e-24,1.3533061064663343e-05,-6.444315090448072e-07,-7.518367510783719e-07,3.634779567153943e-24,3.580175089723525e-08,0.0,1.2723390682367608e-05,0.0,-2.1811526949022664e-06,-1.535617641524823e-24,0.0,6.058757406890436e-08,43.0,38.0,0.014368332922458649,-0.0007104278774932027,-0.0007992313476279378,9.272653187508695e-06,1.2839058399549685e-05,1.1769137017836329e-05,-0.0007104278774932027,7.22774857422337e-05,1.2839058399549685e-05,-1.3569735983764986e-06,-6.11383711657254e-07,6.03510974918689e-21,-0.0007992313476279378,1.2839058399549685e-05,9.223976667271927e-05,5.040330146847758e-21,-6.940031198610086e-07,-1.9615226847236045e-06,9.272653187508695e-06,-1.3569735983764986e-06,5.040330146847758e-21,3.230889689120886e-08,-4.28860444591058e-23,-9.229578558865936e-23,1.2839058399549685e-05,-6.11383711657254e-07,-6.940031198610086e-07,-4.28860444591058e-23,3.3047768965843716e-08,-1.0257039595657543e-22,1.1769137017836329e-05,6.03510974918689e-21,-1.9615226847236045e-06,-9.229578558865936e-23,-1.0257039595657543e-22,5.3014129974826574e-08,43.0,39.0,0.014019123278558254,-0.0006925245397724211,-0.0007600879180245101,9.034893082571216e-06,1.219710520672379e-05,1.0907980140473228e-05,-0.0006925245397724211,7.043910591164604e-05,1.219710520672379e-05,-1.3221794006312848e-06,-5.808145147057076e-07,-3.1763735522036263e-22,-0.0007600879180245101,1.219710520672379e-05,8.540540875401348e-05,3.703869188524557e-23,-6.419529086088005e-07,-1.7688616935629398e-06,9.034893082571216e-06,-1.3221794006312848e-06,3.703869188524557e-23,3.1480460904731444e-08,-1.9327638464091655e-24,6.005914848404816e-26,1.219710520672379e-05,-5.808145147057076e-07,-6.419529086088005e-07,-1.9327638464091655e-24,3.056918629340544e-08,1.6543612251060553e-23,1.0907980140473228e-05,-3.1763735522036263e-22,-1.7688616935629398e-06,6.005914848404816e-26,1.6543612251060553e-23,4.654899043998739e-08,43.0,40.0,0.013686485588550568,-0.0006755014765076339,-0.0007237515528686345,8.80902007338591e-06,1.1602124686760362e-05,1.0128838766831905e-05,-0.0006755014765076339,6.86919447616674e-05,1.1602124686760362e-05,-1.289124952563725e-06,-5.524821062863339e-07,-1.852884572118782e-22,-0.0007237515528686345,1.1602124686760362e-05,7.923011435195804e-05,-3.436058484266714e-23,-5.949807473371038e-07,-1.5992903854566975e-06,8.80902007338591e-06,-1.289124952563725e-06,-3.436058484266714e-23,3.069344955974884e-08,1.912392894038417e-24,-9.607796302709294e-25,1.1602124686760362e-05,-5.524821062863339e-07,-5.949807473371038e-07,1.912392894038417e-24,2.8332415524801036e-08,1.1580528575742387e-23,1.0128838766831905e-05,-1.852884572118782e-22,-1.5992903854566975e-06,-9.607796302709294e-25,1.1580528575742387e-23,4.10074463275123e-08,43.0,41.0,0.01336926780641079,-0.0006592952995561063,-0.0006899602012708783,8.594166502007283e-06,1.1049642125726677e-05,9.422175935469568e-06,-0.0006592952995561063,6.702936661895365e-05,1.1049642125726677e-05,-1.2576829249155708e-06,-5.261734372652427e-07,-7.411538288475128e-22,-0.0006899602012708783,1.1049642125726677e-05,7.363627810264006e-05,-0.0,-5.524821062863339e-07,-1.4495655022983556e-06,8.594166502007283e-06,-1.2576829249155708e-06,-0.0,2.994482883877936e-08,0.0,0.0,1.1049642125726677e-05,-5.261734372652427e-07,-5.524821062863339e-07,0.0,2.630867257380487e-08,3.639594695233322e-23,9.422175935469568e-06,-7.411538288475128e-22,-1.4495655022983556e-06,0.0,3.639594695233322e-23,3.623913613637342e-08,43.0,42.0,0.013066421262919903,-0.0006438486743718386,-0.000658481614664197,8.3895429270342e-06,1.0535705769143533e-05,8.77975435287226e-06,-0.0006438486743718386,6.544536881847307e-05,1.0535705769143533e-05,-1.2277380392333725e-06,-5.01700242239167e-07,1.0587911840678754e-22,-0.000658481614664197,1.0535705769143533e-05,6.855703395558521e-05,-0.0,-5.139368681739143e-07,-1.3169632211429416e-06,8.3895429270342e-06,-1.2277380392333725e-06,-0.0,2.9231857823219798e-08,0.0,0.0,1.0535705769143533e-05,-5.01700242239167e-07,-5.139368681739143e-07,0.0,2.4473184367934664e-08,-4.963083675318166e-24,8.77975435287226e-06,1.0587911840678754e-22,-1.3169632211429416e-06,0.0,-4.963083675318166e-24,3.212105426086964e-08,43.0,43.0,0.012776990421116352,-0.0006291093304753304,-0.0006291093304753304,8.194437214115169e-06,1.0056809514935594e-05,8.194437214115169e-06,-0.0006291093304753304,6.39345234958455e-05,1.0056809514935594e-05,-1.1991860446869396e-06,-4.788956857737503e-07,-1.2176098616780567e-21,-0.0006291093304753304,1.0056809514935594e-05,6.39345234958455e-05,-0.0,-4.788956857737503e-07,-1.1991860446869396e-06,8.194437214115169e-06,-1.1991860446869396e-06,-0.0,2.855204783713816e-08,1.6543612251060553e-24,-8.271806125530277e-25,1.0056809514935594e-05,-4.788956857737503e-07,-4.788956857737503e-07,1.6543612251060553e-24,2.280455824177352e-08,5.955700410381799e-23,8.194437214115169e-06,-1.2176098616780567e-21,-1.1991860446869396e-06,-8.271806125530277e-25,5.955700410381799e-23,2.855204783713816e-08,43.0,44.0,0.012500104494392872,-0.0006150297704152763,-0.0006016595871187747,8.008199984033126e-06,9.609840162738692e-06,7.660018127353396e-06,-0.0006150297704152763,6.249186844797805e-05,9.609840162738692e-06,-1.1719317853930988e-06,-4.576114633891848e-07,-1.852884572118782e-22,-0.0006016595871187747,9.609840162738692e-06,5.971852442598902e-05,-0.0,-4.469693237751926e-07,-1.094288222702744e-06,8.008199984033126e-06,-1.1719317853930988e-06,-0.0,2.7903137578277892e-08,-8.271806125530277e-25,4.1359030627651384e-25,9.609840162738692e-06,-4.576114633891848e-07,-4.469693237751926e-07,-8.271806125530277e-25,2.128425435898862e-08,9.926167350636332e-24,7.660018127353396e-06,-1.852884572118782e-22,-1.094288222702744e-06,4.1359030627651384e-25,9.926167350636332e-24,2.5448564144880947e-08,43.0,45.0,0.012234964407980442,-0.0006015667458996177,-0.0005759681225754321,7.83024006523192e-06,9.192021025228314e-06,7.171080596890533e-06,-0.0006015667458996177,6.111288530519232e-05,9.192021025228314e-06,-1.145888859355182e-06,-4.3771530044978135e-07,-4.84396966711053e-21,-0.0005759681225754321,9.192021025228314e-06,5.586530824075453e-05,-6.2507506457799925e-21,-4.178191375103779e-07,-1.0006158390751807e-06,7.83024006523192e-06,-1.145888859355182e-06,-6.2507506457799925e-21,2.7283068249062126e-08,4.674964535916313e-23,1.11544982485349e-22,9.192021025228314e-06,-4.3771530044978135e-07,-4.178191375103779e-07,4.674964535916313e-23,1.9896150504905563e-08,8.271806125530277e-24,7.171080596890533e-06,-4.84396966711053e-21,-1.0006158390751807e-06,1.11544982485349e-22,8.271806125530277e-24,2.2741270200299368e-08,43.0,46.0,0.011980838142335415,-0.0005886805010959506,-0.0005518879625014961,7.660018127353396e-06,8.800871910352726e-06,6.722887974319747e-06,-0.0005886805010959506,5.9793455875478685e-05,8.800871910352726e-06,-1.1209782542209723e-06,-4.1908910475285666e-07,2.117582368135751e-22,-0.0005518879625014961,8.800871910352726e-06,5.233666524873115e-05,-2.2697410465328367e-23,-3.9114985384003376e-07,-9.16757471713936e-07,7.660018127353396e-06,-1.1209782542209723e-06,-2.2697410465328367e-23,2.6689956911241097e-08,1.6963420852030085e-25,8.111704832663409e-25,8.800871910352726e-06,-4.1908910475285666e-07,-3.9114985384003376e-07,1.6963420852030085e-25,1.862618326242682e-08,-9.926167350636332e-24,6.722887974319747e-06,2.117582368135751e-22,-9.16757471713936e-07,8.111704832663409e-25,-9.926167350636332e-24,2.037238822083509e-08,43.0,47.0,0.011737054213881493,-0.0005763348308391869,-0.000529287091922015,7.497038495785091e-06,8.43416819407139e-06,6.3112825046118814e-06,-0.0005763348308391869,5.852980029885657e-05,8.43416819407139e-06,-1.097127665161679e-06,-4.016270622742013e-07,-1.7734752333136913e-21,-0.000529287091922015,8.43416819407139e-06,4.909911876893602e-05,-2.7047555969939156e-21,-3.667029773168906e-07,-8.415043453169346e-07,7.497038495785091e-06,-1.097127665161679e-06,-2.7047555969939156e-21,2.6122085827751107e-08,4.5016227649579445e-23,3.4362386600974664e-23,8.43416819407139e-06,-4.016270622742013e-07,-3.667029773168906e-07,4.5016227649579445e-23,1.7462046031369027e-08,7.444625512977249e-24,6.3112825046118814e-06,-1.7734752333136913e-21,-8.415043453169346e-07,3.4362386600974664e-23,7.444625512977249e-24,1.8293572878747e-08,43.0,48.0,0.011502992361783981,-0.0005644964403472841,-0.0005080467672087252,7.340850515902275e-06,8.089917173492722e-06,5.932605745329056e-06,-0.0005644964403472841,5.731845521950163e-05,8.089917173492722e-06,-1.0742708127509104e-06,-3.8523413081748004e-07,-1.5881867761018131e-22,-0.0005080467672087252,8.089917173492722e-06,4.6123252104735e-05,-4.0005544107240243e-23,-3.4425178796482214e-07,-7.738181011518463e-07,7.340850515902275e-06,-1.0742708127509104e-06,-4.0005544107240243e-23,2.5577875817361928e-08,1.1257714663197145e-24,-1.5600038712512432e-25,8.089917173492722e-06,-3.8523413081748004e-07,-3.4425178796482214e-07,1.1257714663197145e-24,1.6392942114862308e-08,6.617444900424222e-24,5.932605745329056e-06,-1.5881867761018131e-22,-7.738181011518463e-07,-1.5600038712512432e-25,6.617444900424222e-24,1.6464214880329564e-08,43.0,49.0,0.011278084479272366,-0.0005531345959752798,-0.00048805991536937654,7.191037184384186e-06,7.766319868096616e-06,5.583628990279976e-06,-0.0005531345959752798,5.6156237405957654e-05,7.766319868096616e-06,-1.0523468745304854e-06,-3.698247610373073e-07,2.3822801641527197e-22,-0.00048805991536937654,7.766319868096616e-06,4.3383148295106366e-05,-0.0,-3.235966801184986e-07,-7.128036827452888e-07,7.191037184384186e-06,-1.0523468745304854e-06,-0.0,2.505587914924945e-08,0.0,4.1359030627651384e-25,7.766319868096616e-06,-3.698247610373073e-07,-3.235966801184986e-07,0.0,1.5409364451102192e-08,-9.098986738083304e-24,5.583628990279976e-06,2.3822801641527197e-22,-7.128036827452888e-07,4.1359030627651384e-25,-9.098986738083304e-24,1.4850076723860184e-08,43.0,50.0,0.011061801575124264,-0.000542221125215292,-0.0004692298243753612,7.047216513456078e-06,7.461758286808617e-06,5.2614964261010755e-06,-0.000542221125215292,5.5040218285284936e-05,7.461758286808617e-06,-1.0312999165762449e-06,-3.553218448359985e-07,-2.6469779601696886e-23,-0.0004692298243753612,7.461758286808617e-06,4.085590990143828e-05,-0.0,-3.045615812879987e-07,-6.576870532626344e-07,7.047216513456078e-06,-1.0312999165762449e-06,-0.0,2.455476000307044e-08,8.271806125530277e-25,-4.1359030627651384e-25,7.461758286808617e-06,-3.553218448359985e-07,-3.045615812879987e-07,8.271806125530277e-25,1.450293218852039e-08,0.0,5.2614964261010755e-06,-2.6469779601696886e-23,-6.576870532626344e-07,-4.1359030627651384e-25,0.0,1.3422184252931402e-08,43.0,51.0,0.010853658430278301,-0.0005317300092428923,-0.00045146889169700444,6.909035619173665e-06,7.174767688411521e-06,4.963676019542618e-06,-0.0005317300092428923,5.3967698477208614e-05,7.174767688411521e-06,-1.011078438750701e-06,-3.416556069169019e-07,1.1911400820763599e-22,-0.00045146889169700444,7.174767688411521e-06,3.852125519188121e-05,-3.34118628527249e-23,-2.8699071208393434e-07,-6.077970624573936e-07,6.909035619173665e-06,-1.011078438750701e-06,-3.34118628527249e-23,2.4073294468962558e-08,1.0761053753726785e-24,1.1358958550887407e-25,7.174767688411521e-06,-3.416556069169019e-07,-2.8699071208393434e-07,1.0761053753726785e-24,1.3666224596420307e-08,-5.790264287871194e-24,4.963676019542618e-06,1.1911400820763599e-22,-6.077970624573936e-07,1.1358958550887407e-25,-5.790264287871194e-24,1.2155941142566462e-08,43.0,52.0,0.010653204284608364,-0.0005216372082941234,-0.00043469766387715936,6.776169357181061e-06,6.904022029630141e-06,4.687915861723013e-06,-0.0005216372082941234,5.2936178690288216e-05,6.904022029630141e-06,-9.91634578895173e-07,-3.28762951085082e-07,6.617444900424221e-23,-0.00043469766387715936,6.904022029630141e-06,3.6361179809318855e-05,3.153829611471965e-23,-2.7074594299847377e-07,-5.625499284178659e-07,6.776169357181061e-06,-9.91634578895173e-07,3.153829611471965e-23,2.3610347454905423e-08,-1.0620153335292997e-24,-7.434397734125832e-26,6.904022029630141e-06,-3.28762951085082e-07,-2.7074594299847377e-07,-1.0620153335292997e-24,1.2892664713604063e-08,-2.0679515313825692e-24,4.687915861723013e-06,6.617444900424221e-23,-5.625499284178659e-07,-7.434397734125832e-26,-2.0679515313825692e-24,1.103039082295254e-08,43.0,53.0,0.0104600191116333,-0.0005119204288348556,-0.0004188439925201237,6.648317139479332e-06,6.648317139479332e-06,4.4322114263195544e-06,-0.0005119204288348556,5.194335608393885e-05,6.648317139479332e-06,-9.729244538903004e-07,-3.1658655075261777e-07,-9.26442286059391e-23,-0.0004188439925201237,6.648317139479332e-06,3.4359665733063594e-05,-2.980225938693063e-23,-2.5570452066858707e-07,-5.214366751715716e-07,6.648317139479332e-06,-9.729244538903004e-07,-2.980225938693063e-23,2.316486913400695e-08,1.0489689546635283e-24,4.522742208277089e-25,6.648317139479332e-06,-3.1658655075261777e-07,-2.5570452066858707e-07,1.0489689546635283e-24,1.2176405661534773e-08,3.308722450212111e-24,4.4322114263195544e-06,-9.26442286059391e-23,-5.214366751715716e-07,4.522742208277089e-25,3.308722450212111e-24,1.0027627617148482e-08,43.0,54.0,0.010273716412484646,-0.0005025590653531253,-0.0004038421029690653,6.525200205942383e-06,6.406560260074912e-06,4.1947714635171e-06,-0.0005025590653531253,5.098709152662195e-05,6.406560260074912e-06,-9.549073638481786e-07,-3.050743089261232e-07,-1.852884572118782e-22,-0.0004038421029690653,6.406560260074912e-06,3.250242298236117e-05,-0.0,-2.4175699309125775e-07,-4.840121050619928e-07,6.525200205942383e-06,-9.549073638481786e-07,-0.0,2.2735889615432825e-08,0.0,2.0679515313825692e-25,6.406560260074912e-06,-3.050743089261232e-07,-2.4175699309125775e-07,0.0,1.1512237385602475e-08,7.031035206700735e-24,4.1947714635171e-06,-1.852884572118782e-22,-4.840121050619928e-07,2.0679515313825692e-25,7.031035206700735e-24,9.13230380206187e-09,43.0,55.0,0.0100939329713583,-0.0004935339675284922,-0.0003896320704370737,6.406560260074912e-06,6.177754585223738e-06,3.973994353145827e-06,-0.0004935339675284922,5.006540231988765e-05,6.177754585223738e-06,-9.375453942084278e-07,-2.9417878977255896e-07,-1.4558378780933287e-22,-0.0003896320704370737,6.177754585223738e-06,3.077667861361988e-05,-0.0,-2.288057316945924e-07,-4.4988613012719725e-07,6.406560260074912e-06,-9.375453942084278e-07,-0.0,2.2322510062622314e-08,0.0,0.0,6.177754585223738e-06,-2.9417878977255896e-07,-2.288057316945924e-07,0.0,1.089551115995846e-08,5.37667398159468e-24,3.973994353145827e-06,-1.4558378780933287e-22,-4.4988613012719725e-07,0.0,5.37667398159468e-24,8.331224599089637e-09,43.0,56.0,0.009920334443449974,-0.0004848272947128862,-0.0003761590924113989,6.292157650023e-06,5.960991074971389e-06,3.7684428662032587e-06,-0.0004848272947128862,4.9176447646459565e-05,5.960991074971389e-06,-9.208035294250294e-07,-2.83856735450172e-07,0.0,-0.0003761590924113989,5.960991074971389e-06,2.917100027843844e-05,-0.0,-2.1676332551123778e-07,-4.187158708646166e-07,6.292157650023e-06,-9.208035294250294e-07,-0.0,2.1923893811504058e-08,0.0,0.0,5.960991074971389e-06,-2.83856735450172e-07,-2.1676332551123778e-07,0.0,1.0322063204171172e-08,-4.1359030627651384e-25,3.7684428662032587e-06,0.0,-4.187158708646166e-07,0.0,-4.1359030627651384e-25,7.613015995389105e-09,43.0,57.0,0.009752605110406876,-0.0004764225159306079,-0.00036337311030365527,6.181768640090013e-06,5.755439815402497e-06,3.5768271118286066e-06,-0.0004764225159306079,4.831851038034074e-05,5.755439815402497e-06,-9.046490845321387e-07,-2.740685545177257e-07,1.0587911840678754e-22,-0.00036337311030365527,5.755439815402497e-06,2.7675117962644435e-05,-0.0,-2.05551430099149e-07,-3.901993181898433e-07,6.181768640090013e-06,-9.046490845321387e-07,-0.0,2.153926459413924e-08,0.0,0.0,5.755439815402497e-06,-2.740685545177257e-07,-2.05551430099149e-07,0.0,9.788163168877873e-09,-3.7223127564886245e-24,3.5768271118286066e-06,1.0587911840678754e-22,-3.901993181898433e-07,0.0,-3.7223127564886245e-24,6.967844967675774e-09,43.0,58.0,0.009590454399585724,-0.00046830420615151525,-0.00035122816916555166,6.075186320231296e-06,5.560340014199028e-06,3.397985665287706e-06,-0.00046830420615151525,4.748999708681367e-05,5.560340014199028e-06,-8.890517051440838e-07,-2.647780945608247e-07,1.0587911840678754e-22,-0.00035122816916555166,5.560340014199028e-06,2.627980757097248e-05,-0.0,-1.9509965909492166e-07,-3.640699048901297e-07,6.075186320231296e-06,-8.890517051440838e-07,-0.0,2.1167897656937384e-08,0.0,0.0,5.560340014199028e-06,-2.647780945608247e-07,-1.9509965909492166e-07,0.0,9.290459956901032e-09,-4.1359030627651384e-24,3.397985665287706e-06,1.0587911840678754e-22,-3.640699048901297e-07,0.0,-4.1359030627651384e-24,6.387191220369459e-09,43.0,59.0,0.009433606639504433,-0.0004604579589795321,-0.00033968209754675627,5.972217422822723e-06,5.374995453166775e-06,3.2308716981788166e-06,-0.0004604579589795321,4.6689419832546264e-05,5.374995453166775e-06,-8.739830263948534e-07,-2.559521590228542e-07,-7.940933880509066e-23,-0.00033968209754675627,5.374995453166775e-06,2.4976754502858967e-05,-0.0,-1.853446747190901e-07,-3.4009175919891277e-07,5.972217422822723e-06,-8.739830263948534e-07,-0.0,2.0809119760656358e-08,0.0,0.0,5.374995453166775e-06,-2.559521590228542e-07,-1.853446747190901e-07,0.0,8.825936426148928e-09,3.308722450212111e-24,3.2308716981788166e-06,-7.940933880509066e-23,-3.4009175919891277e-07,0.0,3.308722450212111e-24,5.8636508981635416e-09,43.0,60.0,0.009281806647777557,-0.0004528702993411571,-0.0003286961873527616,5.87268050367129e-06,5.198766302783042e-06,3.074539108638419e-06,-0.0004528702993411571,4.59153889096342e-05,5.198766302783042e-06,-8.59416616094677e-07,-2.475602798313048e-07,5.293955920339377e-23,-0.0003286961873527616,5.198766302783042e-06,2.375845542701427e-05,-0.0,-1.7622936354655394e-07,-3.1805578259991307e-07,5.87268050367129e-06,-8.59416616094677e-07,-0.0,2.0462300298618175e-08,0.0,0.0,5.198766302783042e-06,-2.475602798313048e-07,-1.7622936354655394e-07,0.0,8.39187475065728e-09,-1.6543612251060553e-24,3.074539108638419e-06,5.293955920339377e-23,-3.1805578259991307e-07,0.0,-1.6543612251060553e-24,5.390775825730998e-09,43.0,61.0,0.009134815074503422,-0.00044552868348546326,-0.0003182347572874278,5.776406851509819e-06,5.031064119975781e-06,2.9281325168994954e-06,-0.00044552868348546326,4.516660555964336e-05,5.031064119975781e-06,-8.453278041997692e-07,-2.3957449002409703e-07,-2.6469779601696886e-23,-0.0003182347572874278,5.031064119975781e-06,2.261813096993137e-05,-0.0,-1.6770214017469698e-07,-2.9777618237858405e-07,5.776406851509819e-06,-8.453278041997692e-07,-0.0,2.012685307306583e-08,0.0,0.0,5.031064119975781e-06,-2.3957449002409703e-07,-1.6770214017469698e-07,0.0,7.985815564381937e-09,1.2407709188295415e-24,2.9281325168994954e-06,-2.6469779601696886e-23,-2.9777618237858405e-07,0.0,1.2407709188295415e-24,4.962936284158559e-09,43.0,62.0,0.008992406539618969,-0.00043842129525728524,-0.00030826497822999954,5.683239123754902e-06,4.871347755397437e-06,2.7908763513551094e-06,-0.00043842129525728524,4.444185469765216e-05,4.871347755397437e-06,-8.316935122820723e-07,-2.3196894005650393e-07,-1.3234889800848443e-23,-0.00030826497822999954,4.871347755397437e-06,2.1549640223383904e-05,-0.0,-1.5971632194577978e-07,-2.7908762945116905e-07,5.683239123754902e-06,-8.316935122820723e-07,-0.0,1.9802225637022275e-08,0.0,0.0,4.871347755397437e-06,-2.3196894005650393e-07,-1.5971632194577978e-07,0.0,7.60553930945207e-09,8.271806125530277e-25,2.7908763513551094e-06,-1.3234889800848443e-23,-2.7908762945116905e-07,0.0,8.271806125530277e-25,4.575206880019778e-09,43.0,63.0,0.008854369632899761,-0.00043153713340871036,-0.0002987564657814801,5.59302907277015e-06,4.719117896456737e-06,2.6620666631060885e-06,-0.00043153713340871036,4.3739993998315185e-05,4.719117896456737e-06,-8.184920261555817e-07,-2.247199120120058e-07,3.970466940254533e-23,-0.0002987564657814801,4.719117896456737e-06,2.054741526080761e-05,-0.0,-1.522296173561699e-07,-2.6184261514572427e-07,5.59302907277015e-06,-8.184920261555817e-07,-0.0,1.948790462336092e-08,0.0,0.0,4.719117896456737e-06,-2.247199120120058e-07,-1.522296173561699e-07,0.0,7.249029376765748e-09,-1.6543612251060553e-24,2.6620666631060885e-06,3.970466940254533e-23,-2.6184261514572427e-07,0.0,-1.6543612251060553e-24,4.223267957570442e-09,43.0,64.0,0.00872050691395998,-0.00042486583697609603,-0.00028968125116080046,5.505637545866193e-06,4.573914338834584e-06,2.5410636226297356e-06,-0.00042486583697609603,4.305996117182076e-05,4.573914338834584e-06,-8.057031095631828e-07,-2.178054501200677e-07,4.632211430296955e-23,-0.00028968125116080046,4.573914338834584e-06,1.9606393834692426e-05,-0.0,-1.452036286764269e-07,-2.4590937641733035e-07,5.505637545866193e-06,-8.057031095631828e-07,-0.0,1.9183406863021446e-08,0.0,0.0,4.573914338834584e-06,-2.178054501200677e-07,-1.452036286764269e-07,0.0,6.914458783313648e-09,-2.274746684520826e-24,2.5410636226297356e-06,4.632211430296955e-23,-2.4590937641733035e-07,0.0,-2.274746684520826e-24,3.903323442244755e-09,44.0,3.0,0.11006807535886765,-0.007246376946568489,-0.06666667014360428,0.0001097935892175883,0.0015151514671742916,0.011363636702299118,-0.007246376946568489,0.0007918999181129038,0.0015151514671742916,-1.5684798199799843e-05,-7.047216058708727e-05,1.0842021724855044e-19,-0.06666667014360428,0.0015151514671742916,0.18030303716659546,8.036096486339317e-20,-0.0015151514671742916,-0.06818182021379471,0.0001097935892175883,-1.5684798199799843e-05,8.036096486339317e-20,3.6476274090091465e-07,-1.0482365533221549e-21,-2.6785638195482832e-20,0.0015151514671742916,-7.047216058708727e-05,-0.0015151514671742916,-1.0482365533221549e-21,7.047216058708727e-05,1.1926223897340549e-18,0.011363636702299118,1.0842021724855044e-19,-0.06818182021379471,-2.6785638195482832e-20,1.1926223897340549e-18,0.034090910106897354,44.0,4.0,0.0919828712940216,-0.005662055220454931,-0.043409090489149094,8.234519191319123e-05,0.0009090909152291715,0.005681818351149559,-0.005662055220454931,0.0006044957553967834,0.0009090909152291715,-1.1763599104597233e-05,-4.2283296352252364e-05,1.5178830414797062e-18,-0.043409090489149094,0.0009090909152291715,0.06871212273836136,2.264399818280524e-20,-0.000606060610152781,-0.017045455053448677,8.234519191319123e-05,-1.1763599104597233e-05,2.264399818280524e-20,2.73572055675686e-07,7.811356850394911e-23,-9.399031157209143e-21,0.0009090909152291715,-4.2283296352252364e-05,-0.000606060610152781,7.811356850394911e-23,2.8188866053824313e-05,-8.131516293641283e-19,0.005681818351149559,1.5178830414797062e-18,-0.017045455053448677,-9.399031157209143e-21,-8.131516293641283e-19,0.005681818351149559,44.0,5.0,0.0790494978427887,-0.004650856368243694,-0.03056277148425579,6.587615644093603e-05,0.000606060610152781,0.003246753243729472,-0.004650856368243694,0.000489234400447458,0.000606060610152781,-9.410879101778846e-06,-2.8188866053824313e-05,2.574980159653073e-19,-0.03056277148425579,0.000606060610152781,0.034761905670166016,7.665601482183249e-21,-0.0003030303050763905,-0.006493506487458944,6.587615644093603e-05,-9.410879101778846e-06,7.665601482183249e-21,2.1885765022489068e-07,-2.277840029011251e-22,-7.200123565875897e-22,0.000606060610152781,-2.8188866053824313e-05,-0.0003030303050763905,-2.277840029011251e-22,1.4094433026912156e-05,-1.1519648082658485e-19,0.003246753243729472,2.574980159653073e-19,-0.006493506487458944,-7.200123565875897e-22,-1.1519648082658485e-19,0.001623376621864736,44.0,6.0,0.06931974738836288,-0.003947863820940256,-0.022700216621160507,5.489679460879415e-05,0.00043290044413879514,0.0020292208064347506,-0.003947863820940256,0.0004110511508770287,0.00043290044413879514,-7.842399099899922e-06,-2.0134903024882078e-05,-2.574980159653073e-19,-0.022700216621160507,0.00043290044413879514,0.020240800455212593,1.5529908872725354e-20,-0.00017316016601398587,-0.003043831093236804,5.489679460879415e-05,-7.842399099899922e-06,1.5529908872725354e-20,1.8238137045045733e-07,-5.364172366404227e-22,-5.014119063135876e-22,0.00043290044413879514,-2.0134903024882078e-05,-0.00017316016601398587,-5.364172366404227e-22,8.053961209952831e-06,1.3213713977167085e-19,0.0020292208064347506,-2.574980159653073e-19,-0.003043831093236804,-5.014119063135876e-22,1.3213713977167085e-19,0.0006087662186473608,44.0,7.0,0.061728306114673615,-0.0034302654676139355,-0.01753246784210205,4.705439641838893e-05,0.0003246753185521811,0.0013528139097616076,-0.0034302654676139355,0.0003544868668541312,0.0003246753185521811,-6.722056241414975e-06,-1.510117817815626e-05,1.8973538018496328e-19,-0.01753246784210205,0.0003246753185521811,0.012878787703812122,2.5930165421041077e-20,-0.00010822511103469878,-0.001623376621864736,4.705439641838893e-05,-6.722056241414975e-06,2.5930165421041077e-20,1.5632689098765695e-07,-2.8246874961880847e-22,-2.6528322420977402e-21,0.0003246753185521811,-1.510117817815626e-05,-0.00010822511103469878,-2.8246874961880847e-22,5.0337257562205195e-06,8.470329472543003e-21,0.0013528139097616076,1.8973538018496328e-19,-0.001623376621864736,-2.6528322420977402e-21,8.470329472543003e-21,0.00027056277031078935,44.0,8.0,0.0556378997862339,-0.0030330477748066187,-0.013952020555734634,4.1172595956595615e-05,0.00025252526393160224,0.0009469697251915932,-0.0030330477748066187,0.00031164416577667,0.00025252526393160224,-5.881799552298617e-06,-1.174536100734258e-05,-4.2690460541616737e-19,-0.013952020555734634,0.00025252526393160224,0.008721140213310719,-4.9389665137008436e-20,-7.215006917249411e-05,-0.0009469697251915932,4.1172595956595615e-05,-5.881799552298617e-06,-4.9389665137008436e-20,1.36786027837843e-07,2.7217902467594836e-22,5.835520922459361e-21,0.00025252526393160224,-1.174536100734258e-05,-7.215006917249411e-05,2.7217902467594836e-22,3.355817398187355e-06,4.2351647362715017e-20,0.0009469697251915932,-4.2690460541616737e-19,-0.0009469697251915932,5.835520922459361e-21,4.2351647362715017e-20,0.00013528138515539467,44.0,9.0,0.05064252391457558,-0.0027184891514480114,-0.011368228122591972,3.6597863072529435e-05,0.00020202020823489875,0.000688705244101584,-0.0027184891514480114,0.0002780610811896622,0.00020202020823489875,-5.228266218182398e-06,-9.396288078278303e-06,-1.4907779871675686e-19,-0.011368228122591972,0.00020202020823489875,0.00618719682097435,-2.6586501733152794e-21,-5.0505052058724687e-05,-0.0005903187557123601,3.6597863072529435e-05,-5.228266218182398e-06,-2.6586501733152794e-21,1.2158758977420803e-07,4.897827129086021e-24,3.7798826893919505e-22,0.00020202020823489875,-9.396288078278303e-06,-5.0505052058724687e-05,4.897827129086021e-24,2.3490720195695758e-06,3.5151867311053464e-20,0.000688705244101584,-1.4907779871675686e-19,-0.0005903187557123601,3.7798826893919505e-22,3.5151867311053464e-20,7.378984446404502e-05,44.0,10.0,0.04647083580493927,-0.002463169163092971,-0.009442148730158806,3.2938078220468014e-05,0.00016528925334569067,0.0005165289039723575,-0.002463169163092971,0.0002510237682145089,0.00016528925334569067,-4.705439550889423e-06,-7.687872312089894e-06,2.0328790734103208e-20,-0.009442148730158806,0.00016528925334569067,0.004551767837256193,2.0198966493914019e-22,-3.6730947613250464e-05,-0.00038739669253118336,3.2938078220468014e-05,-4.705439550889423e-06,2.0198966493914019e-22,1.0942882511244534e-07,1.0062631451997429e-22,-2.274940807412383e-22,0.00016528925334569067,-7.687872312089894e-06,-3.6730947613250464e-05,1.0062631451997429e-22,1.7084161072489223e-06,-1.2705494208814505e-21,0.0005165289039723575,2.0328790734103208e-20,-0.00038739669253118336,-2.274940807412383e-22,-1.2705494208814505e-21,4.3044077756349e-05,44.0,11.0,0.04293443635106087,-0.002251766622066498,-0.00796778965741396,2.9943705158075318e-05,0.00013774105173069984,0.0003973299462813884,-0.002251766622066498,0.00022878582240082324,0.00013774105173069984,-4.277672360331053e-06,-6.406560260074912e-06,1.1519648082658485e-19,-0.00796778965741396,0.00013774105173069984,0.0034477643202990294,2.8175196611408216e-20,-2.7548208890948445e-05,-0.0002648866211529821,2.9943705158075318e-05,-4.277672360331053e-06,2.8175196611408216e-20,9.948075074817098e-08,-2.7428514445336914e-22,-2.095954705122722e-21,0.00013774105173069984,-6.406560260074912e-06,-2.7548208890948445e-05,-2.7428514445336914e-22,1.2813120520149823e-06,-4.446922973085077e-21,0.0003973299462813884,1.1519648082658485e-19,-0.0002648866211529821,-2.095954705122722e-21,-4.446922973085077e-21,2.648866211529821e-05,44.0,12.0,0.03989838808774948,-0.002073831856250763,-0.006814019288867712,2.7448397304397076e-05,0.00011655011621769518,0.00031218782532960176,-0.002073831856250763,0.00021017208928242326,0.00011655011621769518,-3.921199549949961e-06,-5.4209358495427296e-06,-5.082197683525802e-20,-0.006814019288867712,0.00011655011621769518,0.002674976596608758,-7.384493359853765e-21,-2.119093005603645e-05,-0.00018731268937699497,2.7448397304397076e-05,-3.921199549949961e-06,-7.384493359853765e-21,9.119068522522866e-08,-7.441565363753716e-23,7.781890434338882e-22,0.00011655011621769518,-5.4209358495427296e-06,-2.119093005603645e-05,-7.441565363753716e-23,9.856246379058575e-07,2.329340604949326e-21,0.00031218782532960176,-5.082197683525802e-20,-0.00018731268937699497,7.781890434338882e-22,2.329340604949326e-21,1.702842564554885e-05,44.0,13.0,0.03726346045732498,-0.0019219910027459264,-0.00589410588145256,2.5336981707368977e-05,9.990009857574478e-05,0.00024975024280138314,-0.0019219910027459264,0.0001943624229170382,9.990009857574478e-05,-3.6195688153384253e-06,-4.64651611764566e-06,3.218725199566341e-20,-0.00589410588145256,9.990009857574478e-05,0.002117579337209463,8.467716260353932e-21,-1.6650015822960995e-05,-0.0001362274051643908,2.5336981707368977e-05,-3.6195688153384253e-06,8.467716260353932e-21,8.417602259669366e-08,-5.75557270961447e-23,-5.024586553150562e-22,9.990009857574478e-05,-4.64651611764566e-06,-1.6650015822960995e-05,-5.75557270961447e-23,7.74419390836556e-07,-1.164670302474663e-21,0.00024975024280138314,3.218725199566341e-20,-0.0001362274051643908,-5.024586553150562e-22,-1.164670302474663e-21,1.1352283763699234e-05,44.0,14.0,0.034955061972141266,-0.0017908902373164892,-0.005148809403181076,2.3527198209194466e-05,8.658008300699294e-05,0.000202922077733092,-0.0017908902373164892,0.00018076703418046236,8.658008300699294e-05,-3.3610281207074877e-06,-4.026980604976416e-06,-3.3881317890172014e-20,-0.005148809403181076,8.658008300699294e-05,0.00170527386944741,3.5712767659991875e-21,-1.3320013749762438e-05,-0.000101461038866546,2.3527198209194466e-05,-3.3610281207074877e-06,3.5712767659991875e-21,7.816344549382848e-08,-6.06320195692425e-23,-1.3221282265777742e-22,8.658008300699294e-05,-4.026980604976416e-06,-1.3320013749762438e-05,-6.06320195692425e-23,6.195355126692448e-07,5.082197683525802e-21,0.000202922077733092,-3.3881317890172014e-20,-0.000101461038866546,-1.3221282265777742e-22,5.082197683525802e-21,7.804695087543223e-06,44.0,15.0,0.03291602060198784,-0.0016765480395406485,-0.004536542110145092,2.1958718207315542e-05,7.575757626909763e-05,0.00016711230273358524,-0.0016765480395406485,0.00016895080625545233,7.575757626909763e-05,-3.1369595490104984e-06,-3.523608256728039e-06,3.8963515573697816e-20,-0.004536542110145092,7.575757626909763e-05,0.001393655315041542,1.4559892586077744e-20,-1.0822510375874117e-05,-7.712875230936334e-05,2.1958718207315542e-05,-3.1369595490104984e-06,1.4559892586077744e-20,7.295255244343934e-08,-8.346528923738984e-23,-8.67571401616498e-22,7.575757626909763e-05,-3.523608256728039e-06,-1.0822510375874117e-05,-8.346528923738984e-23,5.03372575622052e-07,6.88214269644119e-22,0.00016711230273358524,3.8963515573697816e-20,-7.712875230936334e-05,-8.67571401616498e-22,6.88214269644119e-22,5.509196853381582e-06,44.0,16.0,0.031101778149604797,-0.0015759416855871677,-0.004027406219393015,2.0586297978297807e-05,6.68449210934341e-05,0.00013926024257671088,-0.0015759416855871677,0.00015858569531701505,6.68449210934341e-05,-2.9408997761493083e-06,-3.109066028628149e-06,7.623296525288703e-21,-0.004027406219393015,6.68449210934341e-05,0.001153711462393403,-3.472496133561941e-21,-8.912656085158233e-06,-5.9682963183149695e-05,2.0586297978297807e-05,-2.9408997761493083e-06,-3.472496133561941e-21,6.83930139189215e-08,4.2837056196891576e-23,1.1734548303232635e-22,6.68449210934341e-05,-3.109066028628149e-06,-8.912656085158233e-06,4.2837056196891576e-23,4.1454214283476176e-07,-1.5352472168984194e-21,0.00013926024257671088,7.623296525288703e-21,-5.9682963183149695e-05,1.1734548303232635e-22,-1.5352472168984194e-21,3.97886424252647e-06,44.0,17.0,0.02947709709405899,-0.001486734370701015,-0.0035994620993733406,1.9375338524696417e-05,5.941770723438822e-05,0.00011727178934961557,-0.001486734370701015,0.00014941969129722565,5.941770723438822e-05,-2.767905471046106e-06,-2.763614247669466e-06,-5.929230630780102e-21,-0.0035994620993733406,5.941770723438822e-05,0.0009659286588430405,-4.925736854363341e-22,-7.427213404298527e-06,-4.690871719503775e-05,1.9375338524696417e-05,-2.767905471046106e-06,-4.925736854363341e-22,6.436989963276574e-08,-3.922934915271346e-23,1.0025555620540765e-22,5.941770723438822e-05,-2.763614247669466e-06,-7.427213404298527e-06,-3.922934915271346e-23,3.4545178095868323e-07,5.293955920339377e-23,0.00011727178934961557,-5.929230630780102e-21,-4.690871719503775e-05,1.0025555620540765e-22,5.293955920339377e-23,2.9317948246898595e-06,44.0,18.0,0.028013737872242928,-0.0014070915058255196,-0.0032363105565309525,1.8298931536264718e-05,5.316321039572358e-05,9.968101949198171e-05,-0.0014070915058255196,0.00014125597954262048,5.316321039572358e-05,-2.614133109091199e-06,-2.4727075924602104e-06,2.1175823681357508e-20,-0.0032363105565309525,5.316321039572358e-05,0.0008168468484655023,1.7101139254063397e-21,-6.254495474422583e-06,-3.738038139999844e-05,1.8298931536264718e-05,-2.614133109091199e-06,1.7101139254063397e-21,6.079379488710401e-08,3.8993751110203773e-23,-1.7263867501076304e-22,5.316321039572358e-05,-2.4727075924602104e-06,-6.254495474422583e-06,3.8993751110203773e-23,2.909067688960931e-07,-1.5087774372967225e-21,9.968101949198171e-05,2.1175823681357508e-20,-3.738038139999844e-05,-1.7263867501076304e-22,-1.5087774372967225e-21,2.198846004830557e-06,44.0,19.0,0.02668880671262741,-0.001335552311502397,-0.0029254956170916557,1.733582939777989e-05,4.7846890083746985e-05,8.544087177142501e-05,-0.001335552311502397,0.00013393857807386667,4.7846890083746985e-05,-2.476547024343745e-06,-2.2254366740526166e-06,3.049318610115481e-20,-0.0029254956170916557,4.7846890083746985e-05,0.0006969741662032902,7.379447073441052e-21,-5.3163212214712985e-06,-3.015560287167318e-05,1.733582939777989e-05,-2.476547024343745e-06,7.379447073441052e-21,5.75941179192796e-08,-4.825062362530163e-23,-3.370622913940738e-22,4.7846890083746985e-05,-2.2254366740526166e-06,-5.3163212214712985e-06,-4.825062362530163e-23,2.4727074787733727e-07,-1.2440796412797536e-21,8.544087177142501e-05,3.049318610115481e-20,-3.015560287167318e-05,-3.370622913940738e-22,-1.2440796412797536e-21,1.6753112959122518e-06,44.0,20.0,0.025483548641204834,-0.001270939246751368,-0.0026574183721095324,1.6469039110234007e-05,4.329004150349647e-05,7.378984446404502e-05,-0.001270939246751368,0.00012734232586808503,4.329004150349647e-05,-2.3527197754447116e-06,-2.013490302488208e-06,-1.6093625997831706e-20,-0.0026574183721095324,4.329004150349647e-05,0.0005994842504151165,-2.205731629438417e-21,-4.556846761261113e-06,-2.459661482134834e-05,1.6469039110234007e-05,-2.3527197754447116e-06,-2.205731629438417e-21,5.471441255622267e-08,3.449441430637698e-24,9.94240210806578e-23,4.329004150349647e-05,-2.013490302488208e-06,-4.556846761261113e-06,3.449441430637698e-24,2.1194635735355405e-07,9.529120656610879e-22,7.378984446404502e-05,-1.6093625997831706e-20,-2.459661482134834e-05,9.94240210806578e-23,9.529120656610879e-22,1.2945587286594673e-06,44.0,21.0,0.024382445961236954,-0.0012122923508286476,-0.0024245847016572952,1.5684798199799843e-05,3.9354585169348866e-05,6.416508404072374e-05,-0.0012122923508286476,0.00012136557052144781,3.9354585169348866e-05,-2.240685489596217e-06,-1.8304458535567392e-06,3.176373552203626e-20,-0.0024245847016572952,3.9354585169348866e-05,0.0005193814286030829,1.0562459073177843e-20,-3.935458607884357e-06,-2.0262657926650718e-05,1.5684798199799843e-05,-2.240685489596217e-06,1.0562459073177843e-20,5.2108966031028103e-08,-9.966589214508581e-23,-3.933236492060446e-22,3.9354585169348866e-05,-1.8304458535567392e-06,-3.935458607884357e-06,-9.966589214508581e-23,1.830445768291611e-07,-1.3234889800848443e-21,6.416508404072374e-05,3.176373552203626e-20,-2.0262657926650718e-05,-3.933236492060446e-22,-1.3234889800848443e-21,1.0131328735951683e-06,44.0,22.0,0.023372558876872063,-0.0011588213965296745,-0.0022210744209587574,1.4971852579037659e-05,3.5932447644881904e-05,5.614444671664387e-05,-0.0011588213965296745,0.00011592491500778124,3.5932447644881904e-05,-2.1388361801655265e-06,-1.6712765500415117e-06,1.9481757786848908e-20,-0.0022210744209587574,3.5932447644881904e-05,0.0004529520228970796,4.2737122413893964e-21,-3.422137751840637e-06,-1.684333437879104e-05,1.4971852579037659e-05,-2.1388361801655265e-06,4.2737122413893964e-21,4.974037537408549e-08,-4.604056669045255e-23,-1.4370628623313238e-22,3.5932447644881904e-05,-1.6712765500415117e-06,-3.422137751840637e-06,-4.604056669045255e-23,1.591692040392445e-07,-1.045556294267027e-21,5.614444671664387e-05,1.9481757786848908e-20,-1.684333437879104e-05,-1.4370628623313238e-22,-1.045556294267027e-21,8.02063539140363e-07,44.0,23.0,0.022443002089858055,-0.0011098699178546667,-0.0020421608351171017,1.4320902664621826e-05,3.2938078220468014e-05,4.9407113692723215e-05,-0.0011098699178546667,0.00011095131048932672,3.2938078220468014e-05,-2.0458433027670253e-06,-1.5320035799959442e-06,-8.893845946170154e-21,-0.0020421608351171017,3.2938078220468014e-05,0.0003973957500420511,-3.998484856227282e-21,-2.994370561282267e-06,-1.4116318197920918e-05,1.4320902664621826e-05,-2.0458433027670253e-06,-3.998484856227282e-21,4.757774973995765e-08,7.827488740362318e-23,9.763429763510307e-23,3.2938078220468014e-05,-1.5320035799959442e-06,-2.994370561282267e-06,7.827488740362318e-23,1.3927305531069578e-07,3.441071348220595e-22,4.9407113692723215e-05,-8.893845946170154e-21,-1.4116318197920918e-05,9.763429763510307e-23,3.441071348220595e-22,6.416508426809742e-07,44.0,24.0,0.021584557369351387,-0.0010648879688233137,-0.001884032622911036,1.3724198652198538e-05,3.030303014384117e-05,4.3706295400625095e-05,-0.0010648879688233137,0.00010638706589816138,3.030303014384117e-05,-1.9605997749749804e-06,-1.4094432572164806e-06,0.0,-0.001884032622911036,3.030303014384117e-05,0.00035057400236837566,-1.1970657527608904e-21,-2.6350460302637657e-06,-1.1919898497581016e-05,1.3724198652198538e-05,-1.9605997749749804e-06,-1.1970657527608904e-21,4.559534261261433e-08,2.4721278871605376e-23,1.9594957786891636e-23,3.030303014384117e-05,-1.4094432572164806e-06,-2.6350460302637657e-06,2.4721278871605376e-23,1.2256028014689946e-07,-6.617444900424221e-23,4.3706295400625095e-05,0.0,-1.1919898497581016e-05,1.9594957786891636e-23,-6.617444900424221e-23,5.182564564165659e-07,44.0,25.0,0.020789364352822304,-0.0010234114015474916,-0.001743589760735631,1.3175230378692504e-05,2.797202796500642e-05,3.885003752657212e-05,-0.0010234114015474916,0.00010218362876912579,2.797202796500642e-05,-1.8821757521436666e-06,-1.3010245538680465e-06,-1.5246593050577406e-20,-0.001743589760735631,2.797202796500642e-05,0.00031083408975973725,-3.931178688435748e-21,-2.3310024062084267e-06,-1.013479231914971e-05,1.3175230378692504e-05,-1.8821757521436666e-06,-3.931178688435748e-21,4.3771528623892664e-08,1.4251406496985376e-23,1.4313592086599586e-22,2.797202796500642e-05,-1.3010245538680465e-06,-2.3310024062084267e-06,1.4251406496985376e-23,1.0841871045386142e-07,6.815968247436948e-22,3.885003752657212e-05,-1.5246593050577406e-20,-1.013479231914971e-05,1.4313592086599586e-22,6.815968247436948e-22,4.2228302277180774e-07,44.0,26.0,0.02005068212747574,-0.000985045568086207,-0.0016182891558855772,1.2668490853684489e-05,2.590002623037435e-05,3.468753493507393e-05,-0.000985045568086207,9.829981718212366e-05,2.590002623037435e-05,-1.8097844076692127e-06,-1.2046523352182703e-06,-0.0,-0.0016182891558855772,2.590002623037435e-05,0.0002768851409200579,1.0587911840678754e-22,-2.072001962005743e-06,-8.671883733768482e-06,1.2668490853684489e-05,-1.8097844076692127e-06,1.0587911840678754e-22,4.208801129834683e-08,-6.617444900424222e-24,-0.0,2.590002623037435e-05,-1.2046523352182703e-06,-2.072001962005743e-06,-6.617444900424222e-24,9.637219022806676e-08,-0.0,3.468753493507393e-05,-0.0,-8.671883733768482e-06,-0.0,-0.0,3.468753391189239e-07,44.0,27.0,0.019362691789865494,-0.0009494530968368053,-0.0015060290461406112,1.2199287994008046e-05,2.405002487648744e-05,3.1099167244974524e-05,-0.0009494530968368053,9.470051736570895e-05,2.405002487648744e-05,-1.7427553302695742e-06,-1.11860572360456e-06,-0.0,-0.0015060290461406112,2.405002487648744e-05,0.0002477088710293174,1.0587911840678754e-22,-1.8500018086342607e-06,-7.4638005571614485e-06,1.2199287994008046e-05,-1.7427553302695742e-06,1.0587911840678754e-22,4.052919422292689e-08,-3.308722450212111e-24,-0.0,2.405002487648744e-05,-1.11860572360456e-06,-1.8500018086342607e-06,-3.308722450212111e-24,8.60465974028557e-08,-0.0,3.1099167244974524e-05,-0.0,-7.4638005571614485e-06,-0.0,-0.0,2.8706924126709055e-07,44.0,28.0,0.018720347434282303,-0.0009163437644019723,-0.001405060407705605,1.1763599104597233e-05,2.2391401216736995e-05,2.7989251975668594e-05,-0.0009163437644019723,9.135554864769801e-05,2.2391401216736995e-05,-1.6805140603537438e-06,-1.0414605640107766e-06,1.6157247819164398e-20,-0.001405060407705605,2.2391401216736995e-05,0.00022249462199397385,1.1841121972645702e-20,-1.658622295508394e-06,-6.459058113250649e-06,1.1763599104597233e-05,-1.6805140603537438e-06,1.1841121972645702e-20,3.908172274691424e-08,-8.602678370551488e-23,-3.444453226475714e-22,2.2391401216736995e-05,-1.0414605640107766e-06,-1.658622295508394e-06,-8.602678370551488e-23,7.714522354262954e-08,-9.971110965217308e-23,2.7989251975668594e-05,1.6157247819164398e-20,-6.459058113250649e-06,-3.444453226475714e-22,-9.971110965217308e-23,2.392243629856239e-07,44.0,29.0,0.01811925508081913,-0.0008854663465172052,-0.0013139178045094013,1.1357957191648893e-05,2.0898642105748877e-05,2.52806148637319e-05,-0.0008854663465172052,8.823887765174732e-05,2.0898642105748877e-05,-1.6225653780566063e-06,-9.72029852164269e-07,-0.0,-0.0013139178045094013,2.0898642105748877e-05,0.00020059164671692997,5.293955920339377e-23,-1.4927601341696572e-06,-5.61791421205271e-06,1.1357957191648893e-05,-1.6225653780566063e-06,5.293955920339377e-23,3.77340789725622e-08,-3.308722450212111e-24,-0.0,2.0898642105748877e-05,-9.72029852164269e-07,-1.4927601341696572e-06,-3.308722450212111e-24,6.943070474108026e-08,-0.0,2.52806148637319e-05,-0.0,-5.61791421205271e-06,-0.0,-0.0,2.006398034382073e-07,44.0,30.0,0.017555560916662216,-0.0008566025062464178,-0.0012313660699874163,1.0979359103657771e-05,1.955034167622216e-05,2.2910557163413614e-05,-0.0008566025062464178,8.532789070159197e-05,1.955034167622216e-05,-1.5684797745052492e-06,-9.093182598007843e-07,-0.0,-0.0012313660699874163,1.955034167622216e-05,0.00018147342780139297,-5.293955920339377e-23,-1.348299406345177e-06,-4.9094051064457744e-06,1.0979359103657771e-05,-1.5684797745052492e-06,-5.293955920339377e-23,3.647627622171967e-08,3.308722450212111e-24,-0.0,1.955034167622216e-05,-9.093182598007843e-07,-1.348299406345177e-06,3.308722450212111e-24,6.271159946891203e-08,-0.0,2.2910557163413614e-05,-0.0,-4.9094051064457744e-06,-0.0,-0.0,1.692898337068982e-07,44.0,31.0,0.017025882378220558,-0.0008295613806694746,-0.0011563582811504602,1.062518549588276e-05,1.8328446458326653e-05,2.082777973555494e-05,-0.0008295613806694746,8.260287722805515e-05,1.8328446458326653e-05,-1.5178836747509195e-06,-8.524858685632353e-07,-0.0,-0.0011563582811504602,1.8328446458326653e-05,0.000164710872923024,-1.0587911840678754e-22,-1.221896354763885e-06,-4.3091959014418535e-06,1.062518549588276e-05,-1.5178836747509195e-06,-1.0587911840678754e-22,3.5299621004014625e-08,3.308722450212111e-24,-0.0,1.8328446458326653e-05,-8.524858685632353e-07,-1.221896354763885e-06,3.308722450212111e-24,5.683239123754902e-08,-0.0,2.082777973555494e-05,-0.0,-4.3091959014418535e-06,-0.0,-0.0,1.4363985201271134e-07,44.0,32.0,0.01652722992002964,-0.0008041756227612495,-0.0010880023473873734,1.0293148989148904e-05,1.721763146633748e-05,1.8990034732269123e-05,-0.0008041756227612495,8.004656410776079e-05,1.721763146633748e-05,-1.4704498880746542e-06,-8.00820032509364e-07,-0.0,-0.0010880023473873734,1.721763146633748e-05,0.0001499518402852118,0.0,-1.1108148783023353e-06,-3.7980069009790896e-06,1.0293148989148904e-05,-1.4704498880746542e-06,0.0,3.419650695946075e-08,-1.6543612251060553e-24,-0.0,1.721763146633748e-05,-8.00820032509364e-07,-1.1108148783023353e-06,-1.6543612251060553e-24,5.1665807632161886e-08,-0.0,1.8990034732269123e-05,-0.0,-3.7980069009790896e-06,-0.0,-0.0,1.2251635439497477e-07,44.0,33.0,0.016056954860687256,-0.0007802977343089879,-0.0010255342349410057,9.981235052691773e-06,1.6204829080379568e-05,1.7362317521474324e-05,-0.0007802977343089879,7.764375186525285e-05,1.6204829080379568e-05,-1.4258907867770176e-06,-7.537129818047106e-07,-0.0,-0.0010255342349410057,1.6204829080379568e-05,0.00013690559717360884,0.0,-1.012801817523723e-06,-3.3604483178351074e-06,9.981235052691773e-06,-1.4258907867770176e-06,0.0,3.316025143362822e-08,0.0,-0.0,1.6204829080379568e-05,-7.537129818047106e-07,-1.012801817523723e-06,0.0,4.710706136279441e-08,-0.0,1.7362317521474324e-05,-0.0,-3.3604483178351074e-06,-0.0,-0.0,1.0501400993234711e-07,44.0,34.0,0.015612703748047352,-0.0007577972137369215,-0.0009682964300736785,9.687669262348209e-06,1.5278837963705882e-05,1.591545697010588e-05,-0.0007577972137369215,7.538100908277556e-05,1.5278837963705882e-05,-1.383952735523053e-06,-7.10643689671997e-07,-0.0,-0.0009682964300736785,1.5278837963705882e-05,0.00012533061089925468,5.293955920339377e-23,-9.259902071789838e-07,-2.98414829558169e-06,9.687669262348209e-06,-1.383952735523053e-06,5.293955920339377e-23,3.218494981638287e-08,-1.6543612251060553e-24,-0.0,1.5278837963705882e-05,-7.10643689671997e-07,-9.259902071789838e-07,-1.6543612251060553e-24,4.306931344899567e-08,-0.0,1.591545697010588e-05,-0.0,-2.98414829558169e-06,-0.0,-0.0,9.042873472253632e-08,44.0,35.0,0.015192371793091297,-0.000736558111384511,-0.0009157209424301982,9.410879101778846e-06,1.4430014743993524e-05,1.4625014955527149e-05,-0.000736558111384511,7.324644684558734e-05,1.4430014743993524e-05,-1.3444113164950977e-06,-6.711634341627359e-07,-5.293955920339377e-22,-0.0009157209424301982,1.4430014743993524e-05,0.00011502509005367756,4.98841810106152e-23,-8.488243565807352e-07,-2.659093524925993e-06,9.410879101778846e-06,-1.3444113164950977e-06,4.98841810106152e-23,3.126537961861686e-08,-3.6811888458537743e-25,-3.260174027256353e-25,1.4430014743993524e-05,-6.711634341627359e-07,-8.488243565807352e-07,-3.6811888458537743e-25,3.948020221855586e-08,2.9778502051908996e-23,1.4625014955527149e-05,-5.293955920339377e-22,-2.659093524925993e-06,-3.260174027256353e-25,2.9778502051908996e-23,7.820863601182282e-08,44.0,36.0,0.014794079586863518,-0.0007164773414842784,-0.0008673146949149668,9.149465768132359e-06,1.3650013897859026e-05,1.347040779364761e-05,-0.0007164773414842784,7.122945680748671e-05,1.3650013897859026e-05,-1.3070665545455995e-06,-6.348843726300402e-07,-8.152692117322641e-21,-0.0008673146949149668,1.3650013897859026e-05,0.00010581959941191599,-5.048113237865286e-21,-7.800007892910799e-07,-2.3771308406139724e-06,9.149465768132359e-06,-1.3070665545455995e-06,-5.048113237865286e-21,3.039689744355201e-08,3.720985576901681e-23,9.933871050692358e-23,1.3650013897859026e-05,-6.348843726300402e-07,-7.800007892910799e-07,3.720985576901681e-23,3.62791077179736e-08,2.0844951436336297e-22,1.347040779364761e-05,-8.152692117322641e-21,-2.3771308406139724e-06,9.933871050692358e-23,2.0844951436336297e-22,6.791802320549323e-08,44.0,37.0,0.014416136778891087,-0.0006974625866860151,-0.0008226481731981039,8.902183253667317e-06,1.2931592209497467e-05,1.2434223208401818e-05,-0.0006974625866860151,6.932059477549046e-05,1.2931592209497467e-05,-1.2717404160866863e-06,-6.014693667566462e-07,0.0,-0.0008226481731981039,1.2931592209497467e-05,9.757115185493603e-05,-4.231474192521388e-23,-7.184217452049779e-07,-2.131581140929484e-06,8.902183253667317e-06,-1.2717404160866863e-06,-4.231474192521388e-23,2.9575359050681982e-08,1.965926967218978e-24,-7.299353128799113e-25,1.2931592209497467e-05,-6.014693667566462e-07,-7.184217452049779e-07,1.965926967218978e-24,3.34149667935435e-08,0.0,1.2434223208401818e-05,0.0,-2.131581140929484e-06,-7.299353128799113e-25,0.0,5.921058487956543e-08,44.0,38.0,0.014057024382054806,-0.0006794311921112239,-0.0007813458214513958,8.667914698889945e-06,1.2268433238205034e-05,1.1501656445034314e-05,-0.0006794311921112239,6.751138425897807e-05,1.2268433238205034e-05,-1.2382735121718724e-06,-5.70624820284138e-07,-3.1763735522036263e-22,-0.0007813458214513958,1.2268433238205034e-05,9.01584789971821e-05,-0.0,-6.631585733885004e-07,-1.916942665047827e-06,8.667914698889945e-06,-1.2382735121718724e-06,-0.0,2.87970589596398e-08,1.6543612251060553e-24,-8.271806125530277e-25,1.2268433238205034e-05,-5.70624820284138e-07,-6.631585733885004e-07,1.6543612251060553e-24,3.0844585552358694e-08,1.3234889800848443e-23,1.1501656445034314e-05,-3.1763735522036263e-22,-1.916942665047827e-06,-8.271806125530277e-25,1.3234889800848443e-23,5.180926265779817e-08,44.0,39.0,0.013715367764234543,-0.0006623087101615965,-0.0007430780678987503,8.445660569122992e-06,1.1655011803668458e-05,1.0660071893653367e-05,-0.0006623087101615965,6.579422188224271e-05,1.1655011803668458e-05,-1.2065229384461418e-06,-5.420935735855892e-07,0.0,-0.0007430780678987503,1.1655011803668458e-05,8.34783204481937e-05,7.240590110829817e-23,-6.134216619102517e-07,-1.7286602087551728e-06,8.445660569122992e-06,-1.2065229384461418e-06,7.240590110829817e-23,2.805867360677894e-08,-5.320584787942108e-25,-1.4993737230572832e-24,1.1655011803668458e-05,-5.420935735855892e-07,-6.134216619102517e-07,-5.320584787942108e-25,2.8531239593121427e-08,1.6543612251060553e-24,1.0660071893653367e-05,0.0,-1.7286602087551728e-06,-1.4993737230572832e-24,1.6543612251060553e-24,4.54910598080005e-08,44.0,40.0,0.01338992454111576,-0.0006460281438194215,-0.0007075546309351921,8.234519555117004e-06,1.1086474842159078e-05,9.898638381855562e-06,-0.0006460281438194215,6.416225369321182e-05,1.1086474842159078e-05,-1.1763598877223558e-06,-5.156499582881224e-07,-3.705769144237564e-22,-0.0007075546309351921,1.1086474842159078e-05,7.744234608253464e-05,-0.0,-5.685371320396371e-07,-1.5629428844476934e-06,8.234519555117004e-06,-1.1763598877223558e-06,-0.0,2.7357206278111335e-08,0.0,8.271806125530277e-25,1.1086474842159078e-05,-5.156499582881224e-07,-5.685371320396371e-07,0.0,2.6443588652114158e-08,1.819797347616661e-23,9.898638381855562e-06,-3.705769144237564e-22,-1.5629428844476934e-06,8.271806125530277e-25,1.819797347616661e-23,4.0075455842725205e-08,44.0,41.0,0.01307956874370575,-0.000630528898909688,-0.0006745192804373801,8.03367674961919e-06,1.0558546819083858e-05,9.208035407937132e-06,-0.000630528898909688,6.260930240387097e-05,1.0558546819083858e-05,-1.147668172052363e-06,-4.910951929559815e-07,2.9116757561866574e-22,-0.0006745192804373801,1.0558546819083858e-05,7.197472586994991e-05,-0.0,-5.279273409541929e-07,-1.416620762029197e-06,8.03367674961919e-06,-1.147668172052363e-06,-0.0,2.6689956911241097e-08,0.0,0.0,1.0558546819083858e-05,-4.910951929559815e-07,-5.279273409541929e-07,0.0,2.455476000307044e-08,-1.4889251025954498e-23,9.208035407937132e-06,2.9116757561866574e-22,-1.416620762029197e-06,0.0,-1.4889251025954498e-23,3.5415521182358134e-08,44.0,42.0,0.012783273123204708,-0.0006157560274004936,-0.0006437448901124299,7.842399099899922e-06,1.0067451512441039e-05,8.580214853282087e-06,-0.0006157560274004936,6.1129750974942e-05,1.0067451512441039e-05,-1.1203427447981085e-06,-4.6825357458146755e-07,-2.117582368135751e-22,-0.0006437448901124299,1.0067451512441039e-05,6.701008533127606e-05,-0.0,-4.910951929559815e-07,-1.2870322052549454e-06,7.842399099899922e-06,-1.1203427447981085e-06,-0.0,2.6054483015514052e-08,-8.271806125530277e-25,4.1359030627651384e-25,1.0067451512441039e-05,-4.6825357458146755e-07,-4.910951929559815e-07,-8.271806125530277e-25,2.284163791443916e-08,9.926167350636332e-24,8.580214853282087e-06,-2.117582368135751e-22,-1.2870322052549454e-06,4.1359030627651384e-25,9.926167350636332e-24,3.1391028443295e-08,44.0,43.0,0.012500104494392872,-0.0006016595871187747,-0.0006150297704152763,7.660018127353396e-06,9.609840162738692e-06,8.008199984033126e-06,-0.0006016595871187747,5.971852442598902e-05,9.609840162738692e-06,-1.094288222702744e-06,-4.469693237751926e-07,2.9116757561866574e-22,-0.0006150297704152763,9.609840162738692e-06,6.249186844797805e-05,-2.710152781359046e-23,-4.576114633891848e-07,-1.1719317853930988e-06,7.660018127353396e-06,-1.094288222702744e-06,-2.710152781359046e-23,2.5448564144880947e-08,1.0256379003535511e-24,-3.189362174618222e-25,9.609840162738692e-06,-4.469693237751926e-07,-4.576114633891848e-07,1.0256379003535511e-24,2.128425435898862e-08,-1.406207041340147e-23,8.008199984033126e-06,2.9116757561866574e-22,-1.1719317853930988e-06,-3.189362174618222e-25,-1.406207041340147e-23,2.7903137578277892e-08,44.0,44.0,0.012229208834469318,-0.0005881941760890186,-0.0005881941760890186,7.4859262895188294e-06,9.182736903312616e-06,7.4859262895188294e-06,-0.0005881941760890186,5.8370995247969404e-05,9.182736903312616e-06,-1.0694180900827632e-06,-4.271040268122306e-07,1.852884572118782e-22,-0.0005881941760890186,9.182736903312616e-06,5.8370995247969404e-05,-5.0628767886391587e-23,-4.271040268122306e-07,-1.0694180900827632e-06,7.4859262895188294e-06,-1.0694180900827632e-06,-5.0628767886391587e-23,2.4870187687042744e-08,-4.567269462072289e-25,1.3411626395269385e-24,9.182736903312616e-06,-4.271040268122306e-07,-4.271040268122306e-07,-4.567269462072289e-25,1.9865304068389378e-08,-1.075334796318936e-23,7.4859262895188294e-06,1.852884572118782e-22,-1.0694180900827632e-06,1.3411626395269385e-24,-1.075334796318936e-23,2.4870187687042744e-08,44.0,45.0,0.01196980569511652,-0.0005753184086643159,-0.0005630775704048574,7.319572432606947e-06,8.783486919128336e-06,7.008101420069579e-06,-0.0005753184086643159,5.7082939747488126e-05,8.783486919128336e-06,-1.045653220899112e-06,-4.0853427663023467e-07,-2.6469779601696886e-23,-0.0005630775704048574,8.783486919128336e-06,5.460471584228799e-05,-2.368102061766491e-23,-3.9924941575009143e-07,-9.77874606178375e-07,7.319572432606947e-06,-1.045653220899112e-06,-2.368102061766491e-23,2.4317516889027502e-08,1.827508107977789e-24,-4.030951035782272e-25,8.783486919128336e-06,-4.0853427663023467e-07,-3.9924941575009143e-07,1.827508107977789e-24,1.8569739523854878e-08,2.481541837659083e-24,7.008101420069579e-06,-2.6469779601696886e-23,-9.77874606178375e-07,-4.030951035782272e-25,2.481541837659083e-24,2.222442319066431e-08,44.0,46.0,0.011721178889274597,-0.0005629942752420902,-0.0005395361804403365,7.160451332310913e-06,8.409721885982435e-06,6.570095138158649e-06,-0.0005629942752420902,5.585050894296728e-05,8.409721885982435e-06,-1.0229216513835127e-06,-3.9114985384003376e-07,4.764560328305439e-22,-0.0005395361804403365,8.409721885982435e-06,5.115569001645781e-05,-0.0,-3.737654026281234e-07,-8.959220281212765e-07,7.160451332310913e-06,-1.0229216513835127e-06,-0.0,2.3788874869978827e-08,8.271806125530277e-25,-4.1359030627651384e-25,8.409721885982435e-06,-3.9114985384003376e-07,-3.737654026281234e-07,8.271806125530277e-25,1.738443700105563e-08,-1.9852334701272664e-23,6.570095138158649e-06,4.764560328305439e-22,-8.959220281212765e-07,-4.1359030627651384e-25,-1.9852334701272664e-23,1.9909379034288577e-08,44.0,47.0,0.011482669971883297,-0.0005511872004717588,-0.0005174410180188715,7.008101420069579e-06,8.05931631475687e-06,6.167844276205869e-06,-0.0005511872004717588,5.467017399496399e-05,8.05931631475687e-06,-1.0011573294832488e-06,-3.748519361579383e-07,-2.6469779601696886e-23,-0.0005174410180188715,8.05931631475687e-06,4.799119051313028e-05,-2.081286120580063e-23,-3.504050596347952e-07,-8.223792633543781e-07,7.008101420069579e-06,-1.0011573294832488e-06,-2.081286120580063e-23,2.3282728633944316e-08,1.5196397076238307e-25,7.702404351989487e-25,8.05931631475687e-06,-3.748519361579383e-07,-3.504050596347952e-07,1.5196397076238307e-25,1.6297910576668073e-08,0.0,6.167844276205869e-06,-2.6469779601696886e-23,-8.223792633543781e-07,7.702404351989487e-25,0.0,1.7877809455058014e-08,44.0,48.0,0.011253674514591694,-0.0005398651701398194,-0.0004966759588569403,6.862099326099269e-06,7.730364814051427e-06,5.79777361053857e-06,-0.0005398651701398194,5.353870437829755e-05,7.730364814051427e-06,-9.802998874874902e-07,-3.595518478505255e-07,1.5881867761018131e-22,-0.0004966759588569403,7.730364814051427e-06,4.5082473661750555e-05,1.9551406354036194e-23,-3.2895169965740934e-07,-7.562313726339198e-07,6.862099326099269e-06,-9.802998874874902e-07,1.9551406354036194e-23,2.2797671306307166e-08,-9.698406838435243e-25,8.562723975790912e-26,7.730364814051427e-06,-3.595518478505255e-07,-3.2895169965740934e-07,-9.698406838435243e-25,1.530007942562861e-08,-5.790264287871194e-24,5.79777361053857e-06,1.5881867761018131e-22,-7.562313726339198e-07,8.562723975790912e-26,-5.790264287871194e-24,1.609002886482358e-08,44.0,49.0,0.011033633723855019,-0.0005289989640004933,-0.00047713631647638977,6.722056241414975e-06,7.421150257869158e-06,5.456728104036301e-06,-0.0005289989640004933,5.2453120588324964e-05,7.421150257869158e-06,-9.60293732532591e-07,-3.4516978075771476e-07,-2.3822801641527197e-22,-0.00047713631647638977,7.421150257869158e-06,4.240419730194844e-05,-1.8389889134910587e-23,-3.0921458460397844e-07,-6.966035925870528e-07,6.722056241414975e-06,-9.60293732532591e-07,-1.8389889134910587e-23,2.233241325200197e-08,9.612810499838105e-25,-1.1148665489887787e-25,7.421150257869158e-06,-3.4516978075771476e-07,-3.0921458460397844e-07,9.612810499838105e-25,1.4382074198238115e-08,9.926167350636332e-24,5.456728104036301e-06,-2.3822801641527197e-22,-6.966035925870528e-07,-1.1148665489887787e-25,9.926167350636332e-24,1.4512575141623074e-08,44.0,50.0,0.010822032578289509,-0.0005185615736991167,-0.0004587275325320661,6.587615189346252e-06,7.130124686227646e-06,5.141916972206673e-06,-0.0005185615736991167,5.14106905029621e-05,7.130124686227646e-06,-9.410878760718333e-07,-3.316337142678094e-07,1.4558378780933287e-22,-0.0004587275325320661,7.130124686227646e-06,3.993398058810271e-05,-0.0,-2.9102551479809335e-07,-6.427396215258341e-07,6.587615189346252e-06,-9.410878760718333e-07,-0.0,2.1885764311946332e-08,0.0,0.0,7.130124686227646e-06,-3.316337142678094e-07,-2.9102551479809335e-07,0.0,1.353607004261903e-08,-6.617444900424222e-24,5.141916972206673e-06,1.4558378780933287e-22,-6.427396215258341e-07,0.0,-6.617444900424222e-24,1.3117134933793295e-08,44.0,51.0,0.010618395172059536,-0.0005085281445644796,-0.0004413640417624265,6.458446478063706e-06,6.8558892962755635e-06,4.850865025218809e-06,-0.0005085281445644796,5.040889300289564e-05,6.8558892962755635e-06,-9.226351949109812e-07,-3.1887856266621384e-07,-1.7205356741102976e-22,-0.0004413640417624265,6.8558892962755635e-06,3.765200381167233e-05,-3.265790746483811e-23,-2.7423556048233877e-07,-5.939834863966098e-07,6.458446478063706e-06,-9.226351949109812e-07,-3.265790746483811e-23,2.145663202668402e-08,1.0650420942150196e-24,1.0160823049490926e-25,6.8558892962755635e-06,-3.1887856266621384e-07,-2.7423556048233877e-07,1.0650420942150196e-24,1.2755142719811374e-08,7.444625512977249e-24,4.850865025218809e-06,-1.7205356741102976e-22,-5.939834863966098e-07,1.0160823049490926e-25,7.444625512977249e-24,1.187966969240506e-08,44.0,52.0,0.010422280058264732,-0.0004988756263628602,-0.000424968107836321,6.334245426842244e-06,6.59717625239864e-06,4.581372650136473e-06,-0.0004988756263628602,4.9445392505731434e-05,6.59717625239864e-06,-9.048922038346063e-07,-3.068454077492788e-07,-1.4558378780933287e-22,-0.000424968107836321,6.59717625239864e-06,3.554067006916739e-05,-0.0,-2.5871278808153875e-07,-5.497647066476929e-07,6.334245426842244e-06,-9.048922038346063e-07,-0.0,2.1044005649173414e-08,0.0,0.0,6.59717625239864e-06,-3.068454077492788e-07,-2.5871278808153875e-07,0.0,1.2033153140578179e-08,4.963083675318166e-24,4.581372650136473e-06,-1.4558378780933287e-22,-5.497647066476929e-07,0.0,4.963083675318166e-24,1.0779699799456921e-08,44.0,53.0,0.010233277454972267,-0.0004895827150903642,-0.0004094691830687225,6.214731456566369e-06,6.352836408041185e-06,4.331479431129992e-06,-0.0004895827150903642,4.8518035328015685e-05,6.352836408041185e-06,-8.878187713889929e-07,-2.9548075985985633e-07,-9.26442286059391e-23,-0.0004094691830687225,6.352836408041185e-06,3.3584317861823365e-05,-0.0,-2.443398727791646e-07,-5.095858455206326e-07,6.214731456566369e-06,-8.878187713889929e-07,-0.0,2.0646949039360152e-08,8.271806125530277e-25,-2.0679515313825692e-25,6.352836408041185e-06,-2.9548075985985633e-07,-2.443398727791646e-07,8.271806125530277e-25,1.1364645224887227e-08,2.481541837659083e-24,4.331479431129992e-06,-9.26442286059391e-23,-5.095858455206326e-07,-2.0679515313825692e-25,2.481541837659083e-24,9.799727251902368e-09,44.0,54.0,0.010051007382571697,-0.0004806297365576029,-0.0003948030062019825,6.099643997004023e-06,6.12182429904351e-06,4.099435955140507e-06,-0.0004806297365576029,4.76248242193833e-05,6.12182429904351e-06,-8.713776651347871e-07,-2.847360178748204e-07,7.940933880509066e-23,-0.0003948030062019825,6.12182429904351e-06,3.176898098899983e-05,-2.755519856473944e-23,-2.310122368953671e-07,-4.7301182348746806e-07,6.099643997004023e-06,-8.713776651347871e-07,-2.755519856473944e-23,2.0264597111463445e-08,1.8547324866778713e-24,-2.101131021056165e-25,6.12182429904351e-06,-2.847360178748204e-07,-2.310122368953671e-07,1.8547324866778713e-24,1.074475530771224e-08,-3.308722450212111e-24,4.099435955140507e-06,7.940933880509066e-23,-4.7301182348746806e-07,-2.101131021056165e-25,-3.308722450212111e-24,8.924751604411085e-09,44.0,55.0,0.009875116869807243,-0.00047199835535138845,-0.00038091096212156117,5.988741122564534e-06,5.90318768445286e-06,3.883676072291564e-06,-0.00047199835535138845,4.6763911086600274e-05,5.90318768445286e-06,-8.555344379601593e-07,-2.74566872349169e-07,5.293955920339377e-23,-0.00038091096212156117,5.90318768445286e-06,3.0082179364399053e-05,-0.0,-2.18636586168941e-07,-4.3966144858131884e-07,5.988741122564534e-06,-8.555344379601593e-07,-0.0,1.9896150504905563e-08,-8.271806125530277e-25,2.0679515313825692e-25,5.90318768445286e-06,-2.74566872349169e-07,-2.18636586168941e-07,-8.271806125530277e-25,1.0169143749294562e-08,-2.0679515313825692e-24,3.883676072291564e-06,5.293955920339377e-23,-4.3966144858131884e-07,2.0679515313825692e-25,-2.0679515313825692e-24,8.141878282685866e-09,44.0,56.0,0.009705276228487492,-0.0004636715166270733,-0.0003677394997794181,5.881799552298617e-06,5.696058451576391e-06,3.6827964322583284e-06,-0.0004636715166270733,4.593357152771205e-05,5.696058451576391e-06,-8.402570301768719e-07,-2.649329360338015e-07,2.2896359355467806e-21,-0.0003677394997794181,5.696058451576391e-06,2.851272984116804e-05,3.041894704507496e-21,-2.0712938919587032e-07,-4.09199600426291e-07,5.881799552298617e-06,-8.402570301768719e-07,3.041894704507496e-21,1.954086137345712e-08,-2.209770105023944e-23,-4.365566031368304e-23,5.696058451576391e-06,-2.649329360338015e-07,-2.0712938919587032e-07,-2.209770105023944e-23,9.633925657226428e-09,-1.4889251025954498e-23,3.6827964322583284e-06,2.2896359355467806e-21,-4.09199600426291e-07,-4.365566031368304e-23,-1.4889251025954498e-23,7.439992621982583e-09,44.0,57.0,0.009541179053485394,-0.0004556334170047194,-0.0003552396083250642,5.778610102424864e-06,5.499642611539457e-06,3.4955355658894405e-06,-0.0004556334170047194,4.5132208470022306e-05,5.499642611539457e-06,-8.255157126768609e-07,-2.5579731754987733e-07,6.617444900424221e-23,-0.0003552396083250642,5.499642611539457e-06,2.7050602511735633e-05,-0.0,-1.964157974043701e-07,-3.8133114799165924e-07,5.778610102424864e-06,-8.255157126768609e-07,-0.0,1.9198038714307586e-08,0.0,0.0,5.499642611539457e-06,-2.5579731754987733e-07,-1.964157974043701e-07,0.0,9.13561848392419e-09,-2.0679515313825692e-24,3.4955355658894405e-06,6.617444900424221e-23,-3.8133114799165924e-07,0.0,-2.0679515313825692e-24,6.809484531800081e-09,44.0,58.0,0.009382539428770542,-0.0004478692717384547,-0.00034336643875576556,5.6789785958244465e-06,5.313213932822691e-06,3.320758651170763e-06,-0.0004478692717384547,4.4358326704241335e-05,5.313213932822691e-06,-8.112826890283031e-07,-2.4712622348488367e-07,5.293955920339377e-23,-0.00034336643875576556,5.313213932822691e-06,2.5686777007649653e-05,-0.0,-1.86428565029928e-07,-3.5579557788878446e-07,5.6789785958244465e-06,-8.112826890283031e-07,-0.0,1.88670394862811e-08,0.0,0.0,5.313213932822691e-06,-2.4712622348488367e-07,-1.86428565029928e-07,0.0,8.671095841350507e-09,-2.0679515313825692e-24,3.320758651170763e-06,5.293955920339377e-23,-3.5579557788878446e-07,0.0,-2.0679515313825692e-24,6.2420277835428806e-09,44.0,59.0,0.009229088202118874,-0.0004403653438203037,-0.0003320787800475955,5.582724952546414e-06,5.136106665304396e-06,3.1574427339364775e-06,-0.0004403653438203037,4.3610540160443634e-05,5.136106665304396e-06,-7.975320954756171e-07,-2.388887025972508e-07,-7.940933880509066e-23,-0.0003320787800475955,5.136106665304396e-06,2.4413126084255055e-05,-0.0,-1.7710712540974782e-07,-3.323623900541861e-07,5.582724952546414e-06,-7.975320954756171e-07,-0.0,1.854725795169543e-08,0.0,0.0,5.136106665304396e-06,-2.388887025972508e-07,-1.7710712540974782e-07,0.0,8.237541315736507e-09,2.481541837659083e-24,3.1574427339364775e-06,-7.940933880509066e-23,-3.323623900541861e-07,0.0,2.481541837659083e-24,5.730385943536476e-09,44.0,60.0,0.009080575779080391,-0.0004331087111495435,-0.0003213387099094689,5.4896795518288855e-06,4.9677100832923315e-06,3.004663312822231e-06,-0.0004331087111495435,4.288755008019507e-05,4.9677100832923315e-06,-7.842398872526246e-07,-2.310562763341295e-07,0.0,-0.0003213387099094689,4.9677100832923315e-06,2.3222317395266145e-05,-0.0,-1.6839695149428735e-07,-3.1082723239705956e-07,5.4896795518288855e-06,-7.842398872526246e-07,-0.0,1.8238138110859836e-08,0.0,0.0,4.9677100832923315e-06,-2.310562763341295e-07,-1.6839695149428735e-07,0.0,7.83241649315869e-09,4.1359030627651384e-25,3.004663312822231e-06,0.0,-3.1082723239705956e-07,0.0,4.1359030627651384e-25,5.268258274071513e-09,44.0,61.0,0.008936766535043716,-0.00042608738294802606,-0.00031111142016015947,5.399684596341103e-06,4.8074612095660996e-06,2.861584107449744e-06,-0.00042608738294802606,4.218814137857407e-05,4.8074612095660996e-06,-7.713834975220379e-07,-2.2360283935540792e-07,-2.6469779601696886e-23,-0.00031111142016015947,4.8074612095660996e-06,2.2107724362285808e-05,-0.0,-1.602487031959754e-07,-2.910085470375634e-07,5.399684596341103e-06,-7.713834975220379e-07,-0.0,1.7939152385793022e-08,0.0,0.0,4.8074612095660996e-06,-2.2360283935540792e-07,-1.602487031959754e-07,0.0,7.453428096937387e-09,8.271806125530277e-25,2.861584107449744e-06,-2.6469779601696886e-23,-2.910085470375634e-07,0.0,8.271806125530277e-25,4.850142509837951e-09,44.0,62.0,0.00879744254052639,-0.0004192900669295341,-0.00030136475106701255,5.31259274794138e-06,4.654843451135093e-06,2.7274472813587636e-06,-0.0004192900669295341,4.151117900619283e-05,4.654843451135093e-06,-7.589418373754597e-07,-2.1650434689490794e-07,0.0,-0.00030136475106701255,4.654843451135093e-06,2.106334432028234e-05,-0.0,-1.5261781527442508e-07,-2.7274472813587636e-07,5.31259274794138e-06,-7.589418373754597e-07,-0.0,1.7649810502007313e-08,0.0,0.0,4.654843451135093e-06,-2.1650434689490794e-07,-1.5261781527442508e-07,0.0,7.09850311864102e-09,0.0,2.7274472813587636e-06,0.0,-2.7274472813587636e-07,0.0,0.0,4.471225167890225e-09,44.0,63.0,0.008662395179271698,-0.0004127062566112727,-0.0002920690458267927,5.228266218182398e-06,4.509379323280882e-06,2.6015650291810744e-06,-0.0004127062566112727,4.085560067323968e-05,4.509379323280882e-06,-7.468951821465453e-07,-2.097385873867097e-07,-1.9852334701272664e-23,-0.0002920690458267927,4.509379323280882e-06,2.0083734852960333e-05,-0.0,-1.4546385784797167e-07,-2.5589164920347685e-07,5.228266218182398e-06,-7.468951821465453e-07,-0.0,1.736965415943814e-08,0.0,0.0,4.509379323280882e-06,-2.097385873867097e-07,-1.4546385784797167e-07,0.0,6.765760840465873e-09,6.203854594147708e-25,2.6015650291810744e-06,-1.9852334701272664e-23,-2.5589164920347685e-07,0.0,6.203854594147708e-25,4.127284736199499e-09,44.0,64.0,0.00853143073618412,-0.0004063259984832257,-0.0002831969177350402,5.146574494574452e-06,4.3706295400625095e-06,2.4833120733092073e-06,-0.0004063259984832257,4.022040593554266e-05,4.3706295400625095e-06,-7.352249440373271e-07,-2.0328508298916859e-07,-3.970466940254533e-23,-0.0002831969177350402,4.3706295400625095e-06,1.9163948309142143e-05,-0.0,-1.387501384897405e-07,-2.403205314749357e-07,5.146574494574452e-06,-7.352249440373271e-07,-0.0,1.7098253479730374e-08,0.0,0.0,4.3706295400625095e-06,-2.0328508298916859e-07,-1.387501384897405e-07,0.0,6.453494627578493e-09,1.2407709188295415e-24,2.4833120733092073e-06,-3.970466940254533e-23,-2.403205314749357e-07,0.0,1.2407709188295415e-24,3.8146117375958966e-09,45.0,3.0,0.10777401179075241,-0.00693802023306489,-0.06521739065647125,0.00010278548870701343,0.0014492754125967622,0.011111111380159855,-0.00693802023306489,0.0007408486562781036,0.0014492754125967622,-1.4342161193781067e-05,-6.587615644093603e-05,3.0357660829594124e-18,-0.06521739065647125,0.0014492754125967622,0.17632849514484406,7.648337479629185e-20,-0.0014492754125967622,-0.06666667014360428,0.00010278548870701343,-1.4342161193781067e-05,7.648337479629185e-20,3.2595821153336146e-07,-7.301629643320923e-23,-3.772923931514652e-20,0.0014492754125967622,-6.587615644093603e-05,-0.0014492754125967622,-7.301629643320923e-23,6.587615644093603e-05,-1.1926223897340549e-18,0.011111111380159855,3.0357660829594124e-18,-0.06666667014360428,-3.772923931514652e-20,-1.1926223897340549e-18,0.03333333507180214,45.0,4.0,0.09005755931138992,-0.0054209064692258835,-0.042463768273591995,7.708911289228126e-05,0.0008695652359165251,0.0055555556900799274,-0.0054209064692258835,0.0005655179265886545,0.0008695652359165251,-1.0756621122709475e-05,-3.952569022658281e-05,-5.692061405548898e-19,-0.042463768273591995,0.0008695652359165251,0.06719806790351868,-2.4938598817614474e-20,-0.0005797101184725761,-0.01666666753590107,7.708911289228126e-05,-1.0756621122709475e-05,-2.4938598817614474e-20,2.4446865154459374e-07,1.4034680153030238e-21,-3.680642321440915e-21,0.0008695652359165251,-3.952569022658281e-05,-0.0005797101184725761,1.4034680153030238e-21,2.6350460757385008e-05,4.0657581468206416e-19,0.0055555556900799274,-5.692061405548898e-19,-0.01666666753590107,-3.680642321440915e-21,4.0657581468206416e-19,0.0055555556900799274,45.0,5.0,0.07739042490720749,-0.004452667199075222,-0.029896480962634087,6.167129322420806e-05,0.0005797101184725761,0.0031746032182127237,-0.004452667199075222,0.0004576844221446663,0.0005797101184725761,-8.60529689816758e-06,-2.6350460757385008e-05,5.014435047745458e-19,-0.029896480962634087,0.0005797101184725761,0.0339958593249321,2.351307258532724e-20,-0.00028985505923628807,-0.0063492064364254475,6.167129322420806e-05,-8.60529689816758e-06,2.351307258532724e-20,1.9557492692001688e-07,-1.932469908947271e-22,-4.739641916249063e-21,0.0005797101184725761,-2.6350460757385008e-05,-0.00028985505923628807,-1.932469908947271e-22,1.3175230378692504e-05,-1.0164395367051604e-19,0.0031746032182127237,5.014435047745458e-19,-0.0063492064364254475,-4.739641916249063e-21,-1.0164395367051604e-19,0.0015873016091063619,45.0,6.0,0.06786216050386429,-0.003779569175094366,-0.022204969078302383,5.1392744353506714e-05,0.00041407867684029043,0.0019841270986944437,-0.003779569175094366,0.0003845406463369727,0.00041407867684029043,-7.171080596890533e-06,-1.8821758203557692e-05,-1.1926223897340549e-18,-0.022204969078302383,0.00041407867684029043,0.019794685766100883,-8.555497410128141e-20,-0.00016563147073611617,-0.0029761905316263437,5.1392744353506714e-05,-7.171080596890533e-06,-8.555497410128141e-20,1.6297910576668073e-07,3.1998710048886463e-22,1.517033572227054e-20,0.00041407867684029043,-1.8821758203557692e-05,-0.00016563147073611617,3.1998710048886463e-22,7.5287030085746665e-06,1.6940658945086007e-19,0.0019841270986944437,-1.1926223897340549e-18,-0.0029761905316263437,1.517033572227054e-20,1.6940658945086007e-19,0.0005952381179668009,45.0,7.0,0.06042856723070145,-0.003283996367827058,-0.017149757593870163,4.405092113302089e-05,0.0003105590003542602,0.0013227512827143073,-0.003283996367827058,0.0003316228976473212,0.0003105590003542602,-6.146640316728735e-06,-1.4116318197920918e-05,-1.8973538018496328e-19,-0.017149757593870163,0.0003105590003542602,0.012594892643392086,-1.4506822164316505e-20,-0.00010351966921007261,-0.0015873016091063619,4.405092113302089e-05,-6.146640316728735e-06,-1.4506822164316505e-20,1.3969636825095222e-07,1.9700585631012005e-22,1.949101469722933e-21,0.0003105590003542602,-1.4116318197920918e-05,-0.00010351966921007261,1.9700585631012005e-22,4.705439550889423e-06,2.541098841762901e-20,0.0013227512827143073,-1.8973538018496328e-19,-0.0015873016091063619,1.949101469722933e-21,2.541098841762901e-20,0.00026455026818439364,45.0,8.0,0.05446517467498779,-0.0029036900959908962,-0.013647343032062054,3.854455644614063e-05,0.00024154588754754514,0.0009259259095415473,-0.0029036900959908962,0.0002915424411185086,0.00024154588754754514,-5.378310561354738e-06,-1.0979359103657771e-05,-3.8624702394796095e-19,-0.013647343032062054,0.00024154588754754514,0.008528870530426502,-5.3351892582880117e-20,-6.901311280671507e-05,-0.0009259259095415473,3.854455644614063e-05,-5.378310561354738e-06,-5.3351892582880117e-20,1.2223432577229687e-07,4.905714681064618e-22,5.567453819474659e-21,0.00024154588754754514,-1.0979359103657771e-05,-6.901311280671507e-05,4.905714681064618e-22,3.1369595490104984e-06,3.218725199566341e-20,0.0009259259095415473,-3.8624702394796095e-19,-0.0009259259095415473,5.567453819474659e-21,3.218725199566341e-20,0.00013227513409219682,45.0,9.0,0.04957420751452446,-0.0026025285478681326,-0.011119894683361053,3.4261829569004476e-05,0.0001932367158588022,0.0006734006456099451,-0.0026025285478681326,0.00026012479793280363,0.0001932367158588022,-4.780720246344572e-06,-8.783486919128336e-06,6.776263578034403e-20,-0.011119894683361053,0.0001932367158588022,0.006050776690244675,8.958740042370786e-21,-4.830917896470055e-05,-0.0005772005533799529,3.4261829569004476e-05,-4.780720246344572e-06,8.958740042370786e-21,1.0865273480931137e-07,-5.854997582664906e-23,-1.008166559278958e-21,0.0001932367158588022,-8.783486919128336e-06,-4.830917896470055e-05,-5.854997582664906e-23,2.195871729782084e-06,-6.776263578034403e-21,0.0006734006456099451,6.776263578034403e-20,-0.0005772005533799529,-1.008166559278958e-21,-6.776263578034403e-21,7.215006917249411e-05,45.0,10.0,0.04548986628651619,-0.0023580859415233135,-0.009235836565494537,3.083564661210403e-05,0.00015810276090633124,0.0005050505278632045,-0.0023580859415233135,0.00023483094992116094,0.00015810276090633124,-4.30264844908379e-06,-7.18648925612797e-06,5.759824041329242e-20,-0.009235836565494537,0.00015810276090633124,0.004451397806406021,6.028311964372645e-22,-3.5133947676513344e-05,-0.0003787878667935729,3.083564661210403e-05,-4.30264844908379e-06,6.028311964372645e-22,9.778746346000844e-08,-6.927582725412603e-23,1.7917136469553032e-22,0.00015810276090633124,-7.18648925612797e-06,-3.5133947676513344e-05,-6.927582725412603e-23,1.5969976630003657e-06,-1.1434944787933055e-20,0.0005050505278632045,5.759824041329242e-20,-0.0003787878667935729,1.7917136469553032e-22,-1.1434944787933055e-20,4.2087540350621566e-05,45.0,11.0,0.04202761873602867,-0.002155692083761096,-0.00779365561902523,2.8032405680278316e-05,0.00013175231288187206,0.0003885003970935941,-0.002155692083761096,0.0002140271244570613,0.00013175231288187206,-3.9114984247135e-06,-5.988741122564534e-06,-3.3881317890172014e-21,-0.00779365561902523,0.00013175231288187206,0.003371733007952571,1.1349307360726808e-20,-2.6350460757385008e-05,-0.0002590002550277859,2.8032405680278316e-05,-3.9114984247135e-06,1.1349307360726808e-20,8.889769276265724e-08,-1.962995165664724e-22,-6.323843240839955e-22,0.00013175231288187206,-5.988741122564534e-06,-2.6350460757385008e-05,-1.962995165664724e-22,1.1977482472502743e-06,4.658681209898652e-21,0.0003885003970935941,-3.3881317890172014e-21,-0.0002590002550277859,-6.323843240839955e-22,4.658681209898652e-21,2.590002623037435e-05,45.0,12.0,0.03905530273914337,-0.0019853413105010986,-0.0066650742664933205,2.5696372176753357e-05,0.00011148271732963622,0.0003052503161597997,-0.0019853413105010986,0.00019661380792967975,0.00011148271732963622,-3.5855402984452667e-06,-5.067396159574855e-06,1.4568966692773966e-19,-0.0066650742664933205,0.00011148271732963622,0.0026159831322729588,2.3469631062884e-20,-2.026958463829942e-05,-0.00018315018678549677,2.5696372176753357e-05,-3.5855402984452667e-06,2.3469631062884e-20,8.148955288334037e-08,-1.8202788683132078e-22,-1.6827271991319628e-21,0.00011148271732963622,-5.067396159574855e-06,-2.026958463829942e-05,-1.8202788683132078e-22,9.21344792459422e-07,-1.0587911840678754e-20,0.0003052503161597997,1.4568966692773966e-19,-0.00018315018678549677,-1.6827271991319628e-21,-1.0587911840678754e-20,1.6650015822960995e-05,45.0,13.0,0.03647574409842491,-0.0018399731488898396,-0.005765249021351337,2.3719727323623374e-05,9.555661381455138e-05,0.00024420025874860585,-0.0018399731488898396,0.00018182377971243113,9.555661381455138e-05,-3.3097294362960383e-06,-4.34348248745664e-06,1.0164395367051604e-20,-0.005765249021351337,9.555661381455138e-05,0.002070876071229577,9.262381162353453e-22,-1.5926103515084833e-05,-0.00013320012658368796,2.3719727323623374e-05,-3.3097294362960383e-06,9.262381162353453e-22,7.522112355218269e-08,1.7335721685489265e-23,-1.2135603925269549e-22,9.555661381455138e-05,-4.34348248745664e-06,-1.5926103515084833e-05,1.7335721685489265e-23,7.239137858050526e-07,-1.0587911840678754e-21,0.00024420025874860585,1.0164395367051604e-20,-0.00013320012658368796,-1.2135603925269549e-22,-1.0587911840678754e-21,1.1100010851805564e-05,45.0,14.0,0.03421589359641075,-0.001714461948722601,-0.005036232061684132,2.2025460566510446e-05,8.281573536805809e-05,0.00019841270113829523,-0.001714461948722601,0.00016910526028368622,8.281573536805809e-05,-3.0733201583643677e-06,-3.7643515042873332e-06,1.1858461261560205e-20,-0.005036232061684132,8.281573536805809e-05,0.0016676620580255985,3.044620149515275e-22,-1.2740882084472105e-05,-9.920635056914762e-05,2.2025460566510446e-05,-3.0733201583643677e-06,3.044620149515275e-22,6.984818412547611e-08,5.8683153691251185e-24,6.122267838316582e-24,8.281573536805809e-05,-3.7643515042873332e-06,-1.2740882084472105e-05,5.8683153691251185e-24,5.791310400127259e-07,-2.4352197233561135e-21,0.00019841270113829523,1.1858461261560205e-20,-9.920635056914762e-05,6.122267838316582e-24,-2.4352197233561135e-21,7.631258085893933e-06,45.0,15.0,0.03221976384520531,-0.001604995341040194,-0.004437339957803488,2.0557097741402686e-05,7.246376480907202e-05,0.0001633986976230517,-0.001604995341040194,0.00015805115981493145,7.246376480907202e-05,-2.868432147806743e-06,-3.293807594673126e-06,-2.541098841762901e-20,-0.004437339957803488,7.246376480907202e-05,0.0013629152672365308,-6.983002185622973e-21,-1.035196692100726e-05,-7.54147840780206e-05,2.0557097741402686e-05,-2.868432147806743e-06,-6.983002185622973e-21,6.519164230667229e-08,3.189115044218139e-23,4.266052237916632e-22,7.246376480907202e-05,-3.293807594673126e-06,-1.035196692100726e-05,3.189115044218139e-23,4.7054393803591665e-07,-5.293955920339377e-23,0.0001633986976230517,-2.541098841762901e-20,-7.54147840780206e-05,4.266052237916632e-22,-5.293955920339377e-23,5.386770226323279e-06,45.0,16.0,0.030443726107478142,-0.0015086793573573232,-0.00393932918086648,1.9272278223070316e-05,6.393861985998228e-05,0.00013616557407658547,-0.0015086793573573232,0.00014835460751783103,6.393861985998228e-05,-2.689155280677369e-06,-2.9063007787044626e-06,-4.1504614415460717e-20,-0.00393932918086648,6.393861985998228e-05,0.0011282629566267133,-8.680572288624987e-21,-8.525149496563245e-06,-5.835667616338469e-05,1.9272278223070316e-05,-2.689155280677369e-06,-8.680572288624987e-21,6.111716288614844e-08,7.634265150237484e-23,4.588572907197577e-22,6.393861985998228e-05,-2.9063007787044626e-06,-8.525149496563245e-06,7.634265150237484e-23,3.87506787546954e-07,2.3822801641527197e-21,0.00013616557407658547,-4.1504614415460717e-20,-5.835667616338469e-05,4.588572907197577e-22,2.3822801641527197e-21,3.890444986609509e-06,45.0,17.0,0.028853274881839752,-0.0014232767280191183,-0.003520736936479807,1.8138614905183204e-05,5.683432755176909e-05,0.00011466575233498588,-0.0014232767280191183,0.00013977981870993972,5.683432755176909e-05,-2.5309695956821088e-06,-2.5833785457507474e-06,5.929230630780102e-21,-0.003520736936479807,5.683432755176909e-05,0.0009446214535273612,-5.496685599916487e-23,-7.104290943971137e-06,-4.586629802361131e-05,1.8138614905183204e-05,-2.5309695956821088e-06,-5.496685599916487e-23,5.7522036911450414e-08,-3.3046355196343417e-23,6.463548235235189e-23,5.683432755176909e-05,-2.5833785457507474e-06,-7.104290943971137e-06,-3.3046355196343417e-23,3.2292231821884343e-07,-1.2176098616780567e-21,0.00011466575233498588,5.929230630780102e-21,-4.586629802361131e-05,6.463548235235189e-23,-1.2176098616780567e-21,2.8666436264757067e-06,45.0,18.0,0.027420762926340103,-0.0013470308622345328,-0.003165522590279579,1.7130914784502238e-05,5.0851765990955755e-05,9.746589057613164e-05,-0.0013470308622345328,0.00013214269711170346,5.0851765990955755e-05,-2.390360123172286e-06,-2.3114439500204753e-06,-2.0328790734103208e-20,-0.003165522590279579,5.0851765990955755e-05,0.0007988276774995029,-3.0519069018730123e-21,-5.982560651318636e-06,-3.654970714705996e-05,1.7130914784502238e-05,-2.390360123172286e-06,-3.0519069018730123e-21,5.4326367404655684e-08,4.4998588719738703e-23,1.12203144915793e-22,5.0851765990955755e-05,-2.3114439500204753e-06,-5.982560651318636e-06,4.4998588719738703e-23,2.719345957302721e-07,1.6940658945086007e-21,9.746589057613164e-05,-2.0328790734103208e-20,-3.654970714705996e-05,1.12203144915793e-22,1.6940658945086007e-21,2.14998271985678e-06,45.0,19.0,0.0261237733066082,-0.0012785432627424598,-0.0028615016490221024,1.6229287211899646e-05,4.5766591938445345e-05,8.3542188804131e-05,-0.0012785432627424598,0.00012529730156529695,4.5766591938445345e-05,-2.264551767439116e-06,-2.0802995095436927e-06,8.470329472543003e-22,-0.0028615016490221024,4.5766591938445345e-05,0.0006815988454036415,-6.652581901102469e-22,-5.085176780994516e-06,-2.948547808045987e-05,1.6229287211899646e-05,-2.264551767439116e-06,-6.652581901102469e-22,5.14670830398245e-08,-3.781130225581903e-23,8.529513730402774e-23,4.5766591938445345e-05,-2.0802995095436927e-06,-5.085176780994516e-06,-3.781130225581903e-23,2.3114439784421847e-07,-6.88214269644119e-22,8.3542188804131e-05,8.470329472543003e-22,-2.948547808045987e-05,8.529513730402774e-23,-6.88214269644119e-22,1.6380821534767165e-06,45.0,20.0,0.024943942204117775,-0.0012166864471510053,-0.002599284751340747,1.5417823306052014e-05,4.140786768402904e-05,7.215006917249411e-05,-0.0012166864471510053,0.00011912654736079276,4.140786768402904e-05,-2.151324224541895e-06,-1.8821757521436666e-06,1.6940658945086007e-21,-0.002599284751340747,4.140786768402904e-05,0.0005862592370249331,-2.6593991999002303e-21,-4.358722890174249e-06,-2.405002487648744e-05,1.5417823306052014e-05,-2.151324224541895e-06,-2.6593991999002303e-21,4.889373173000422e-08,9.139235210328586e-24,1.2105439146431345e-22,4.140786768402904e-05,-1.8821757521436666e-06,-4.358722890174249e-06,9.139235210328586e-24,1.981237716108808e-07,-7.676236084492097e-22,7.215006917249411e-05,1.6940658945086007e-21,-2.405002487648744e-05,1.2105439146431345e-22,-7.676236084492097e-22,1.2657907291213633e-06,45.0,21.0,0.0238660778850317,-0.0011605415493249893,-0.0023715414572507143,1.4683640984003432e-05,3.7643516407115385e-05,6.273919279919937e-05,-0.0011605415493249893,0.0001135353377321735,3.7643516407115385e-05,-2.048880105576245e-06,-1.7110688759203185e-06,6.776263578034403e-21,-0.0023715414572507143,3.7643516407115385e-05,0.0005079233087599277,2.2437954681581028e-21,-3.7643515042873332e-06,-1.981237619474996e-05,1.4683640984003432e-05,-2.048880105576245e-06,2.2437954681581028e-21,4.656545726788863e-08,-2.731390810193768e-23,-7.27122315750136e-23,3.7643516407115385e-05,-1.7110688759203185e-06,-3.7643515042873332e-06,-2.731390810193768e-23,1.711068904342028e-07,-1.4558378780933287e-22,6.273919279919937e-05,6.776263578034403e-21,-1.981237619474996e-05,-7.27122315750136e-23,-1.4558378780933287e-22,9.906187870001304e-07,45.0,22.0,0.022877510637044907,-0.0011093519860878587,-0.0021724810358136892,1.4016202840139158e-05,3.437016493990086e-05,5.489679460879415e-05,-0.0011093519860878587,0.0001084456525859423,3.437016493990086e-05,-1.95574921235675e-06,-1.5622803175574518e-06,1.8634724839594607e-20,-0.0021724810358136892,3.437016493990086e-05,0.00044295916450209916,4.23319452776172e-21,-3.2733491934777703e-06,-1.6469039110234007e-05,1.4016202840139158e-05,-1.95574921235675e-06,4.23319452776172e-21,4.444884638132862e-08,-5.764715923050344e-23,-1.1085987256638266e-22,3.437016493990086e-05,-1.5622803175574518e-06,-3.2733491934777703e-06,-5.764715923050344e-23,1.487886009954309e-07,-1.2705494208814505e-21,5.489679460879415e-05,1.8634724839594607e-20,-1.6469039110234007e-05,-1.1085987256638266e-22,-1.2705494208814505e-21,7.842398872526246e-07,45.0,23.0,0.021967582404613495,-0.001062489114701748,-0.001997479470446706,1.340680228167912e-05,3.150598786305636e-05,4.830917896470055e-05,-0.001062489114701748,0.00010379288869444281,3.150598786305636e-05,-1.8707166873355163e-06,-1.432090243724815e-06,-7.199780051661553e-21,-0.001997479470446706,3.150598786305636e-05,0.0003886283957399428,-2.3148708007330083e-21,-2.86418048744963e-06,-1.3802622561343014e-05,1.340680228167912e-05,-1.8707166873355163e-06,-2.3148708007330083e-21,4.251628737961255e-08,-9.391985652715719e-25,1.0039120872666946e-22,3.150598786305636e-05,-1.432090243724815e-06,-2.86418048744963e-06,-9.391985652715719e-25,1.3019003120007255e-07,2.2499312661442353e-22,4.830917896470055e-05,-7.199780051661553e-21,-1.3802622561343014e-05,1.0039120872666946e-22,2.2499312661442353e-22,6.273919552768348e-07,45.0,24.0,0.02112726867198944,-0.0010194265050813556,-0.0018428093753755093,1.2848186088376679e-05,2.898550701502245e-05,4.273504237062298e-05,-0.0010194265050813556,9.952308028005064e-05,2.898550701502245e-05,-1.7927701492226333e-06,-1.3175230151318829e-06,-9.740878893424454e-21,-0.0018428093753755093,2.898550701502245e-05,0.00034283948480151594,-2.4497783848647952e-21,-2.5204788016708335e-06,-1.1655011803668458e-05,1.2848186088376679e-05,-1.7927701492226333e-06,-2.4497783848647952e-21,4.074477644167018e-08,1.5542410697752807e-24,9.834615309420002e-23,2.898550701502245e-05,-1.3175230151318829e-06,-2.5204788016708335e-06,1.5542410697752807e-24,1.1456722148750487e-07,4.235164736271502e-22,4.273504237062298e-05,-9.740878893424454e-21,-1.1655011803668458e-05,9.834615309420002e-23,4.235164736271502e-22,5.067396386948531e-07,45.0,25.0,0.02034887671470642,-0.0009797196835279465,-0.0017054378986358643,1.2334258826740552e-05,2.6755853468785062e-05,3.798670513788238e-05,-0.0009797196835279465,9.559080353938043e-05,2.6755853468785062e-05,-1.721059334158781e-06,-1.2161751783423824e-06,1.291725244562808e-20,-0.0017054378986358643,2.6755853468785062e-05,0.0003039762086700648,5.0813252664735e-21,-2.2296544557320885e-06,-9.909575055644382e-06,1.2334258826740552e-05,-1.721059334158781e-06,5.0813252664735e-21,3.911498325237517e-08,-2.668859068414347e-23,-1.770970139244846e-22,2.6755853468785062e-05,-1.2161751783423824e-06,-2.2296544557320885e-06,-2.668859068414347e-23,1.0134792916005608e-07,-3.5072457972248373e-22,3.798670513788238e-05,1.291725244562808e-20,-9.909575055644382e-06,-1.770970139244846e-22,-3.5072457972248373e-22,4.128989701257524e-07,45.0,26.0,0.01962580345571041,-0.0009429909405298531,-0.0015828777104616165,1.1859863661811687e-05,2.4773937184363604e-05,3.39167017955333e-05,-0.0009429909405298531,9.195754682878032e-05,2.4773937184363604e-05,-1.6548647181480192e-06,-1.1260881365160458e-06,-1.9058241313221758e-21,-0.0015828777104616165,2.4773937184363604e-05,0.0002707761886995286,-1.3087854206050916e-21,-1.981914920179406e-06,-8.479175448883325e-06,1.1859863661811687e-05,-1.6548647181480192e-06,-1.3087854206050916e-21,3.7610561776091345e-08,7.687779265237142e-24,4.4213810958563115e-23,2.4773937184363604e-05,-1.1260881365160458e-06,-1.981914920179406e-06,7.687779265237142e-24,9.0087048931764e-08,1.3234889800848443e-23,3.39167017955333e-05,-1.9058241313221758e-21,-8.479175448883325e-06,4.4213810958563115e-23,1.3234889800848443e-23,3.391670020391757e-07,45.0,27.0,0.018952352926135063,-0.0009089173981919885,-0.0014730730326846242,1.1420609553169925e-05,2.300437154190149e-05,3.0408076781895943e-05,-0.0009089173981919885,8.859043737174943e-05,2.300437154190149e-05,-1.5935734154481906e-06,-1.045653220899112e-06,5.587343312680011e-21,-0.0014730730326846242,2.300437154190149e-05,0.00024224355001933873,3.747918196973689e-21,-1.7695670067041647e-06,-7.297938282135874e-06,1.1420609553169925e-05,-1.5935734154481906e-06,3.747918196973689e-21,3.6217578269770456e-08,-4.301339185275744e-23,-1.0750023387790396e-22,2.300437154190149e-05,-1.045653220899112e-06,-1.7695670067041647e-06,-4.301339185275744e-23,8.043486587894222e-08,-6.594869594582969e-23,3.0408076781895943e-05,5.587343312680011e-21,-7.297938282135874e-06,-1.0750023387790396e-22,-6.594869594582969e-23,2.806899317420175e-07,45.0,28.0,0.018323589116334915,-0.000877220940310508,-0.001374312792904675,1.1012730283255223e-05,2.141786171705462e-05,2.7367268558009528e-05,-0.000877220940310508,8.546126628061756e-05,2.141786171705462e-05,-1.5366600791821838e-06,-9.735391586218611e-07,5.019703542012567e-21,-0.001374312792904675,2.141786171705462e-05,0.00021758554794359952,3.4536018420310664e-21,-1.5865083469179808e-06,-6.315523478406249e-06,1.1012730283255223e-05,-1.5366600791821838e-06,3.4536018420310664e-21,3.4924092062738055e-08,-3.639594695233322e-23,-9.653957957970976e-23,2.141786171705462e-05,-9.735391586218611e-07,-1.5865083469179808e-06,-3.639594695233322e-23,7.211401253925942e-08,-5.718238131780894e-23,2.7367268558009528e-05,5.019703542012567e-21,-6.315523478406249e-06,-9.653957957970976e-23,-5.718238131780894e-23,2.3390828118863283e-07,45.0,29.0,0.017735205590724945,-0.000847661285661161,-0.0012851639185100794,1.0632981684466358e-05,1.999000414798502e-05,2.4718823624425568e-05,-0.000847661285661161,8.25456518214196e-05,1.999000414798502e-05,-1.4836717809885158e-06,-9.086365935218055e-07,-7.724848293557359e-21,-0.0012851639185100794,1.999000414798502e-05,0.0001961657835636288,-6.19665876905335e-21,-1.4278574553827639e-06,-5.4930719670664985e-06,1.0632981684466358e-05,-1.4836717809885158e-06,-6.19665876905335e-21,3.3719814496180334e-08,5.955700410381799e-23,1.7404177457122534e-22,1.999000414798502e-05,-9.086365935218055e-07,-1.4278574553827639e-06,5.955700410381799e-23,6.490261483804716e-08,4.786462451804613e-24,2.4718823624425568e-05,-7.724848293557359e-21,-5.4930719670664985e-06,1.7404177457122534e-22,4.786462451804613e-24,1.9618113356045797e-07,45.0,30.0,0.01718343235552311,-0.0008200292359106243,-0.001204417902044952,1.0278548870701343e-05,1.8700327927945182e-05,2.240143294329755e-05,-0.0008200292359106243,7.982246461324394e-05,1.8700327927945182e-05,-1.4342160739033716e-06,-8.50014885145356e-07,3.047564809502284e-21,-0.001204417902044952,1.8700327927945182e-05,0.000177469351910986,3.500328660911076e-21,-1.2896776979687274e-06,-4.800307124241954e-06,1.0278548870701343e-05,-1.4342160739033716e-06,3.500328660911076e-21,3.2595821153336146e-08,-5.624828165360588e-23,-7.871444070001233e-23,1.8700327927945182e-05,-8.50014885145356e-07,-1.2896776979687274e-06,-5.624828165360588e-23,5.862171548187689e-08,2.868072952709068e-23,2.240143294329755e-05,3.047564809502284e-21,-4.800307124241954e-06,-7.871444070001233e-23,2.868072952709068e-23,1.6552783677070693e-07,45.0,31.0,0.016664955765008926,-0.0007941421936266124,-0.0011310509871691465,9.946982572728302e-06,1.753155629558023e-05,2.03649397008121e-05,-0.0007941421936266124,7.727325282758102e-05,1.753155629558023e-05,-1.3879511016057222e-06,-7.968889690346259e-07,3.718226128833443e-21,-0.0011310509871691465,1.753155629558023e-05,0.0001610765903024003,3.2017845163874483e-21,-1.1687704954965739e-06,-4.213435659039533e-06,9.946982572728302e-06,-1.3879511016057222e-06,3.2017845163874483e-21,3.1544342249389956e-08,-4.963083675318166e-23,-7.143311570530307e-23,1.753155629558023e-05,-7.968889690346259e-07,-1.1687704954965739e-06,-4.963083675318166e-23,5.312593032158475e-08,-3.834461640395913e-23,2.03649397008121e-05,3.718226128833443e-21,-4.213435659039533e-06,-7.143311570530307e-23,-3.834461640395913e-23,1.4044786667000153e-07,45.0,32.0,0.016176851466298103,-0.0007698399131186306,-0.0010641905246302485,9.636139111535158e-06,1.6469039110234007e-05,1.856803282862529e-05,-0.0007698399131186306,7.488185656256974e-05,1.6469039110234007e-05,-1.3445776403386844e-06,-7.485926403205667e-07,-5.435007582341358e-21,-0.0010641905246302485,1.6469039110234007e-05,0.00014664318587165326,-5.0373037482491936e-21,-1.062518549588276e-06,-3.7136067021492636e-06,9.636139111535158e-06,-1.3445776403386844e-06,-5.0373037482491936e-21,3.055858144307422e-08,4.632211430296955e-23,1.3004683780398123e-22,1.6469039110234007e-05,-7.485926403205667e-07,-1.062518549588276e-06,4.632211430296955e-23,4.829630029234977e-08,-1.851957155684168e-23,1.856803282862529e-05,-5.435007582341358e-21,-3.7136067021492636e-06,1.3004683780398123e-22,-1.851957155684168e-23,1.197937677943628e-07,45.0,33.0,0.01571652665734291,-0.0007469811826013029,-0.0010030890116468072,9.344134923594538e-06,1.5500270819757134e-05,1.6976488041109405e-05,-0.0007469811826013029,7.26340658729896e-05,1.5500270819757134e-05,-1.3038328461334459e-06,-7.045578058750834e-07,-5.105192739099279e-21,-0.0010030890116468072,1.5500270819757134e-05,0.0001338847796432674,-4.593047982584264e-21,-9.687669262348209e-07,-3.2857717542356113e-06,9.344134923594538e-06,-1.3038328461334459e-06,-4.593047982584264e-21,2.9632563069981188e-08,3.474158572722716e-23,1.187173310791674e-22,1.5500270819757134e-05,-7.045578058750834e-07,-9.687669262348209e-07,3.474158572722716e-23,4.4034862867192714e-08,-7.398108751979082e-24,1.6976488041109405e-05,-5.105192739099279e-21,-3.2857717542356113e-06,1.187173310791674e-22,-7.398108751979082e-24,1.0268036731986285e-07,45.0,34.0,0.015281673520803452,-0.0007254409720189869,-0.0009471034863963723,9.069307452591602e-06,1.4614541214541532e-05,1.5561779946438037e-05,-0.0007254409720189869,7.051730790408328e-05,1.4614541214541532e-05,-1.2654847978410544e-06,-6.642973175985389e-07,1.9554220504875044e-21,-0.0009471034863963723,1.4614541214541532e-05,0.00012256516492925584,2.5341635300938834e-21,-8.857297757458582e-07,-2.9178338536439696e-06,9.069307452591602e-06,-1.2654847978410544e-06,2.5341635300938834e-21,2.8761018455725207e-08,-3.474158572722716e-23,-5.43336278842131e-23,1.4614541214541532e-05,-6.642973175985389e-07,-8.857297757458582e-07,-3.474158572722716e-23,4.026044564398035e-08,2.6379249924213722e-23,1.5561779946438037e-05,1.9554220504875044e-21,-2.9178338536439696e-06,-5.43336278842131e-23,2.6379249924213722e-23,8.841920617896903e-08,45.0,35.0,0.01487023662775755,-0.0007051084539853036,-0.000895678298547864,8.810184226604179e-06,1.3802622561343014e-05,1.4300014299806207e-05,-0.0007051084539853036,6.85204504407011e-05,1.3802622561343014e-05,-1.229328063345747e-06,-6.273919552768348e-07,1.883389078638984e-21,-0.000895678298547864,1.3802622561343014e-05,0.00011248701775912195,2.38346984212844e-21,-8.11918994259031e-07,-2.6000025172834285e-06,8.810184226604179e-06,-1.229328063345747e-06,2.38346984212844e-21,2.793927400546181e-08,-3.143286327701505e-23,-4.986045523002977e-23,1.3802622561343014e-05,-6.273919552768348e-07,-8.11918994259031e-07,-3.143286327701505e-23,3.6905408506981985e-08,1.8263002436027598e-23,1.4300014299806207e-05,1.883389078638984e-21,-2.6000025172834285e-06,-4.986045523002977e-23,1.8263002436027598e-23,7.647066269100833e-08,45.0,36.0,0.014480373822152615,-0.0006858847918920219,-0.000848331197630614,8.565457392251119e-06,1.3056534953648224e-05,1.3171065802453086e-05,-0.0006858847918920219,6.663359090453014e-05,1.3056534953648224e-05,-1.195180061586143e-06,-5.934788305239636e-07,2.6999175193730823e-21,-0.000848331197630614,1.3056534953648224e-05,0.00010348463547416031,2.2586556386156472e-21,-7.460877213816275e-07,-2.3243057967192726e-06,8.565457392251119e-06,-1.195180061586143e-06,2.2586556386156472e-21,2.7163183702327842e-08,-3.117335959363355e-23,-4.5767213765018986e-23,1.3056534953648224e-05,-5.934788305239636e-07,-7.460877213816275e-07,-3.117335959363355e-23,3.39130785675934e-08,-3.639594695233322e-23,1.3171065802453086e-05,2.6999175193730823e-21,-2.3243057967192726e-06,-4.5767213765018986e-23,-3.639594695233322e-23,6.640873806418313e-08,45.0,37.0,0.01411043107509613,-0.0006676816265098751,-0.0008046419825404882,8.333958248840645e-06,1.2369348951324355e-05,1.215790689457208e-05,-0.0006676816265098751,6.484787445515394e-05,1.2369348951324355e-05,-1.162877879323787e-06,-5.622431444862741e-07,2.2234614865425384e-21,-0.0008046419825404882,1.2369348951324355e-05,9.541817416902632e-05,2.085339085962697e-21,-6.871860591672885e-07,-2.0842126104980707e-06,8.333958248840645e-06,-1.162877879323787e-06,2.085339085962697e-21,2.642904384231315e-08,-2.659879938046759e-23,-4.141401423274529e-23,1.2369348951324355e-05,-5.622431444862741e-07,-6.871860591672885e-07,-2.659879938046759e-23,3.123572867025359e-08,-1.819797347616661e-23,1.215790689457208e-05,2.2234614865425384e-21,-2.0842126104980707e-06,-4.141401423274529e-23,-1.819797347616661e-23,5.789479473605752e-08,45.0,38.0,0.013758919201791286,-0.0006504199118353426,-0.0007642433629371226,8.114643605949823e-06,1.1735022781067528e-05,1.1246063877479173e-05,-0.0006504199118353426,6.315539212664589e-05,1.1735022781067528e-05,-1.132275883719558e-06,-5.334101160769933e-07,2.0117032497289633e-21,-0.0007642433629371226,1.1735022781067528e-05,8.8169050286524e-05,1.891208116470241e-21,-6.343256018226384e-07,-1.8743439795798622e-06,8.114643605949823e-06,-1.132275883719558e-06,1.891208116470241e-21,2.573354151991225e-08,-2.022359788681864e-23,-3.772275104148616e-23,1.1735022781067528e-05,-5.334101160769933e-07,-6.343256018226384e-07,-2.022359788681864e-23,2.883298044764615e-08,-1.819797347616661e-23,1.1246063877479173e-05,2.0117032497289633e-21,-1.8743439795798622e-06,-3.772275104148616e-23,-1.819797347616661e-23,5.065794539405033e-08,45.0,39.0,0.013424495235085487,-0.0006340283434838057,-0.0007268129265867174,7.906575774541125e-06,1.1148272278660443e-05,1.0423181265650783e-05,-0.0006340283434838057,6.154901348054409e-05,1.1148272278660443e-05,-1.1032431075364002e-06,-5.067396386948531e-07,1.4558378780933287e-21,-0.0007268129265867174,1.1148272278660443e-05,8.163628081092611e-05,1.8242357693702474e-21,-5.867511845281115e-07,-1.6902455399758765e-06,7.906575774541125e-06,-1.1032431075364002e-06,1.8242357693702474e-21,2.507370844284651e-08,-2.1383286526365944e-23,-3.528850930370413e-23,1.1148272278660443e-05,-5.067396386948531e-07,-5.867511845281115e-07,-2.1383286526365944e-23,2.6670507580206504e-08,4.963083675318166e-24,1.0423181265650783e-05,1.4558378780933287e-21,-1.6902455399758765e-06,-3.528850930370413e-23,4.963083675318166e-24,4.4480145788838854e-08,45.0,40.0,0.013105942867696285,-0.0006184427184052765,-0.0006920668529346585,7.708911653026007e-06,1.0604453564155847e-05,9.678667993284762e-06,-0.0006184427184052765,6.002233931212686e-05,1.0604453564155847e-05,-1.0756621122709475e-06,-4.820206527256232e-07,1.376428539288238e-21,-0.0006920668529346585,1.0604453564155847e-05,7.573349284939468e-05,1.7273532498669327e-21,-5.438181460704072e-07,-1.5282107597158756e-06,7.708911653026007e-06,-1.0756621122709475e-06,1.7273532498669327e-21,2.444686586500211e-08,-1.7366659232470223e-23,-3.4028733147946005e-23,1.0604453564155847e-05,-4.820206527256232e-07,-5.438181460704072e-07,-1.7366659232470223e-23,2.4719007285511907e-08,6.617444900424222e-24,9.678667993284762e-06,1.376428539288238e-21,-1.5282107597158756e-06,-3.4028733147946005e-23,6.617444900424222e-24,3.9184889999432926e-08,45.0,41.0,0.012802157551050186,-0.0006036050617694855,-0.0006597543833777308,7.520889084844384e-06,1.0099480277858675e-05,9.00341274245875e-06,-0.0006036050617694855,5.856957795913331e-05,1.0099480277858675e-05,-1.0494263733562548e-06,-4.5906728018962895e-07,1.2705494208814505e-21,-0.0006597543833777308,1.0099480277858675e-05,7.03865080140531e-05,2.004249334589966e-21,-5.049739684181986e-07,-1.385140308229893e-06,7.520889084844384e-06,-1.0494263733562548e-06,2.004249334589966e-21,2.3850599717434307e-08,-3.3404242456380465e-23,-3.15835262435814e-23,1.0099480277858675e-05,-4.5906728018962895e-07,-5.049739684181986e-07,-3.3404242456380465e-23,2.295336365421008e-08,6.617444900424222e-24,9.00341274245875e-06,1.2705494208814505e-21,-1.385140308229893e-06,-3.15835262435814e-23,6.617444900424222e-24,3.462850983737553e-08,45.0,42.0,0.01251213625073433,-0.0005894628120586276,-0.0006296534556895494,7.341820492001716e-06,9.629736268834677e-06,8.3895429270342e-06,-0.0005894628120586276,5.718548709410243e-05,9.629736268834677e-06,-1.0244400527881226e-06,-4.3771530044978135e-07,-3.044024654195142e-21,-0.0006296534556895494,9.629736268834677e-06,6.553140701726079e-05,-3.0252751596611426e-21,-4.697432416378433e-07,-1.2584314390551299e-06,7.341820492001716e-06,-1.0244400527881226e-06,-3.0252751596611426e-21,2.3282728633944316e-08,2.9130449662826314e-23,5.809583175895694e-23,9.629736268834677e-06,-4.3771530044978135e-07,-4.697432416378433e-07,2.9130449662826314e-23,2.1351965528992878e-08,2.3161057151484775e-23,8.3895429270342e-06,-3.044024654195142e-21,-1.2584314390551299e-06,5.809583175895694e-23,2.3161057151484775e-23,3.069344955974884e-08,45.0,43.0,0.012234964407980442,-0.0005759681225754321,-0.0006015667458996177,7.171080596890533e-06,9.192021025228314e-06,7.83024006523192e-06,-0.0005759681225754321,5.586530824075453e-05,9.192021025228314e-06,-1.0006158390751807e-06,-4.178191375103779e-07,5.108667463127499e-21,-0.0006015667458996177,9.192021025228314e-06,6.111288530519232e-05,5.5071920154836805e-21,-4.3771530044978135e-07,-1.145888859355182e-06,7.171080596890533e-06,-1.0006158390751807e-06,5.5071920154836805e-21,2.2741270200299368e-08,-7.335914800439276e-23,-8.134156839545176e-23,9.192021025228314e-06,-4.178191375103779e-07,-4.3771530044978135e-07,-7.335914800439276e-23,1.9896150504905563e-08,-6.534726839168919e-23,7.83024006523192e-06,5.108667463127499e-21,-1.145888859355182e-06,-8.134156839545176e-23,-6.534726839168919e-23,2.7283068249062126e-08,45.0,44.0,0.01196980569511652,-0.0005630775704048574,-0.0005753184086643159,7.008101420069579e-06,8.783486919128336e-06,7.319572432606947e-06,-0.0005630775704048574,5.460471584228799e-05,8.783486919128336e-06,-9.77874606178375e-07,-3.9924941575009143e-07,1.0323214044661785e-21,-0.0005753184086643159,8.783486919128336e-06,5.7082939747488126e-05,1.65510893902646e-21,-4.0853427663023467e-07,-1.045653220899112e-06,7.008101420069579e-06,-9.77874606178375e-07,1.65510893902646e-21,2.222442319066431e-08,-2.590744483857552e-23,-2.5355431531538063e-23,8.783486919128336e-06,-3.9924941575009143e-07,-4.0853427663023467e-07,-2.590744483857552e-23,1.8569739523854878e-08,4.963083675318166e-24,7.319572432606947e-06,1.0323214044661785e-21,-1.045653220899112e-06,-2.5355431531538063e-23,4.963083675318166e-24,2.4317516889027502e-08,45.0,45.0,0.011715897358953953,-0.0005507514579221606,-0.0005507514579221606,6.852365913800895e-06,8.401596460316796e-06,6.852365913800895e-06,-0.0005507514579221606,5.3399762691697106e-05,8.401596460316796e-06,-9.561440492689144e-07,-3.8189074302863446e-07,1.3234889800848443e-21,-0.0005507514579221606,8.401596460316796e-06,5.3399762691697106e-05,1.5498508119242625e-21,-3.8189074302863446e-07,-9.561440492689144e-07,6.852365913800895e-06,-9.561440492689144e-07,1.5498508119242625e-21,2.1730546251319538e-08,-2.100999281284993e-23,-2.4441973201781014e-23,8.401596460316796e-06,-3.8189074302863446e-07,-3.8189074302863446e-07,-2.100999281284993e-23,1.735866916874329e-08,-1.2407709188295415e-23,6.852365913800895e-06,1.3234889800848443e-21,-9.561440492689144e-07,-2.4441973201781014e-23,-1.2407709188295415e-23,2.1730546251319538e-08,45.0,46.0,0.011472536250948906,-0.0005389534635469317,-0.0005277252639643848,6.70340114083956e-06,8.044081369007472e-06,6.424093044188339e-06,-0.0005389534635469317,5.2246847189962864e-05,8.044081369007472e-06,-9.353583436677582e-07,-3.6564006222761236e-07,9.793818452627848e-22,-0.0005277252639643848,8.044081369007472e-06,5.002683974453248e-05,1.453394403527512e-21,-3.5751475024881074e-07,-8.760126775086974e-07,6.70340114083956e-06,-9.353583436677582e-07,1.453394403527512e-21,2.1258143689806275e-08,-2.0312789656206548e-23,-2.2141454431486617e-23,8.044081369007472e-06,-3.6564006222761236e-07,-3.5751475024881074e-07,-2.0312789656206548e-23,1.6250670142881063e-08,0.0,6.424093044188339e-06,9.793818452627848e-22,-8.760126775086974e-07,-2.2141454431486617e-23,0.0,1.9466948941726514e-08,45.0,47.0,0.011239079758524895,-0.0005276504089124501,-0.000506113632582128,6.560775545949582e-06,7.708911653026007e-06,6.030781150911935e-06,-0.0005276504089124501,5.114266969030723e-05,7.708911653026007e-06,-9.154570648206573e-07,-3.504050596347952e-07,8.999725064576941e-22,-0.000506113632582128,7.708911653026007e-06,4.6932167606428266e-05,1.3241289545382575e-21,-3.35170057041978e-07,-8.041041610340471e-07,6.560775545949582e-06,-9.154570648206573e-07,1.3241289545382575e-21,2.0805842382287665e-08,-1.6901004106449122e-23,-2.0618780912732726e-23,7.708911653026007e-06,-3.504050596347952e-07,-3.35170057041978e-07,-1.6901004106449122e-23,1.5235002592817182e-08,0.0,6.030781150911935e-06,8.999725064576941e-22,-8.041041610340471e-07,-2.0618780912732726e-23,0.0,1.7480525471569308e-08,45.0,48.0,0.011014934629201889,-0.000516811734996736,-0.00048580302973277867,6.424093044188339e-06,7.394261956505943e-06,5.668934136338066e-06,-0.000516811734996736,5.0084199756383896e-05,7.394261956505943e-06,-8.963850746113167e-07,-3.3610282912377443e-07,-1.852884572118782e-21,-0.00048580302973277867,7.394261956505943e-06,4.4087631977163255e-05,-2.165243198327542e-21,-3.1464944072467915e-07,-7.394261842819105e-07,6.424093044188339e-06,-8.963850746113167e-07,-2.165243198327542e-21,2.037238822083509e-08,1.5453144578224582e-23,3.879643175425903e-23,7.394261956505943e-06,-3.3610282912377443e-07,-3.1464944072467915e-07,1.5453144578224582e-23,1.4302247386410727e-08,4.963083675318166e-24,5.668934136338066e-06,-1.852884572118782e-21,-7.394261842819105e-07,3.879643175425903e-23,4.963083675318166e-24,1.573247310204806e-08,45.0,49.0,0.010799556039273739,-0.0005064093857072294,-0.00046669100993312895,6.292988928180421e-06,7.0984915510052815e-06,5.335467449185671e-06,-0.0005064093857072294,4.9068657972384244e-05,7.0984915510052815e-06,-8.78091498179856e-07,-3.2265870686387643e-07,-1.4690727678941772e-21,-0.00046669100993312895,7.0984915510052815e-06,4.146845458308235e-05,-2.092945472137455e-21,-2.9577049076578987e-07,-6.811235380155267e-07,6.292988928180421e-06,-8.78091498179856e-07,-2.092945472137455e-21,1.9956624797146105e-08,1.5754950138787657e-23,3.64447932195845e-23,7.0984915510052815e-06,-3.2265870686387643e-07,-2.9577049076578987e-07,1.5754950138787657e-23,1.3444112489935378e-08,-4.963083675318166e-24,5.335467449185671e-06,-1.4690727678941772e-21,-6.811235380155267e-07,3.64447932195845e-23,-4.963083675318166e-24,1.419007311653786e-08,45.0,50.0,0.010592438280582428,-0.0004964176332578063,-0.00044868516852147877,6.167129413370276e-06,6.820119324402185e-06,5.02765215060208e-06,-0.0004964176332578063,4.809348320122808e-05,6.820119324402185e-06,-8.605296670793905e-07,-3.1000541866887943e-07,-1.5881867761018131e-21,-0.00044868516852147877,6.820119324402185e-06,3.9052745705703273e-05,-2.345869273019398e-21,-2.7837222660309635e-07,-6.2845651882526e-07,6.167129413370276e-06,-8.605296670793905e-07,-2.345869273019398e-21,1.9557491626187584e-08,2.912932001401004e-23,3.444219092559044e-23,6.820119324402185e-06,-3.1000541866887943e-07,-2.7837222660309635e-07,2.912932001401004e-23,1.2653282865926485e-08,2.481541837659083e-24,5.02765215060208e-06,-1.5881867761018131e-21,-6.2845651882526e-07,3.444219092559044e-23,2.481541837659083e-24,1.2825642770053491e-08,45.0,51.0,0.010393114760518074,-0.00048681252519600093,-0.00043170168646611273,6.046205271559302e-06,6.557806955242995e-06,4.7430680751858745e-06,-0.00048681252519600093,4.7156318032648414e-05,6.557806955242995e-06,-8.436565508418425e-07,-2.9808214208060235e-07,1.1117307432712692e-21,-0.00043170168646611273,6.557806955242995e-06,3.6821122193941846e-05,1.1548728772237587e-21,-2.623122838940617e-07,-5.807838192595227e-07,6.046205271559302e-06,-8.436565508418425e-07,1.1548728772237587e-21,1.9174011711697858e-08,-1.484471509468934e-23,-1.6561582502481488e-23,6.557806955242995e-06,-2.9808214208060235e-07,-2.623122838940617e-07,-1.484471509468934e-23,1.1923285470061273e-08,-1.5302841332231012e-23,4.7430680751858745e-06,1.1117307432712692e-21,-5.807838192595227e-07,-1.6561582502481488e-23,-1.5302841332231012e-23,1.1615676420717591e-08,45.0,52.0,0.01020115427672863,-0.00047757208812981844,-0.00041566460276953876,5.9299318309058435e-06,6.310342541837599e-06,4.479564267967362e-06,-0.00047757208812981844,4.625498331733979e-05,6.310342541837599e-06,-8.274323590740096e-07,-2.8683376740445965e-07,9.661469554619363e-22,-0.00041566460276953876,6.310342541837599e-06,3.4756376408040524e-05,1.0609660672726825e-21,-2.4746441340539604e-07,-5.375476916924526e-07,5.9299318309058435e-06,-8.274323590740096e-07,1.0609660672726825e-21,1.8805280888045672e-08,-1.334431269701165e-23,-1.4961505951707312e-23,6.310342541837599e-06,-2.8683376740445965e-07,-2.4746441340539604e-07,-1.334431269701165e-23,1.124838266974848e-08,-1.075334796318936e-23,4.479564267967362e-06,9.661469554619363e-22,-5.375476916924526e-07,-1.4961505951707312e-23,-1.075334796318936e-23,1.054015097423644e-08,45.0,53.0,0.010016156360507011,-0.0004686759493779391,-0.00040050491224974394,5.818046247441089e-06,6.076626050344203e-06,4.235224423609907e-06,-0.0004686759493779391,4.538745997706428e-05,6.076626050344203e-06,-8.118204277707264e-07,-2.762102724318538e-07,6.485096002415737e-22,-0.00040050491224974394,6.076626050344203e-06,3.284319245722145e-05,1.0177521406669306e-21,-2.3371639201741345e-07,-4.98261670145439e-07,5.818046247441089e-06,-8.118204277707264e-07,1.0177521406669306e-21,1.845046426751651e-08,-1.2205539126644469e-23,-1.4406267781289313e-23,6.076626050344203e-06,-2.762102724318538e-07,-2.3371639201741345e-07,-1.2205539126644469e-23,1.0623472768145348e-08,0.0,4.235224423609907e-06,6.485096002415737e-22,-4.98261670145439e-07,-1.4406267781289313e-23,0.0,9.581955673354514e-09,45.0,54.0,0.009837749414145947,-0.0004601052205543965,-0.00038615972152911127,5.710304776584962e-06,5.855657946085557e-06,4.008337327832123e-06,-0.0004601052205543965,4.4551878090715036e-05,5.855657946085557e-06,-7.967867077240953e-07,-2.661662676928245e-07,5.558653716356346e-22,-0.00038615972152911127,5.855657946085557e-06,3.1067917007021606e-05,9.636323950622283e-22,-2.2096823215633776e-07,-4.6250045215856517e-07,5.710304776584962e-06,-7.967867077240953e-07,9.636323950622283e-22,1.8108789134885228e-08,-1.0989667024566418e-23,-1.3724974371382428e-23,5.855657946085557e-06,-2.661662676928245e-07,-2.2096823215633776e-07,-1.0989667024566418e-23,1.0044010068099851e-08,1.6543612251060553e-24,4.008337327832123e-06,5.558653716356346e-22,-4.6250045215856517e-07,-1.3724974371382428e-23,1.6543612251060553e-24,8.726424027827306e-09,45.0,55.0,0.009665586054325104,-0.0004518423229455948,-0.0003725717542693019,5.606480954156723e-06,5.6465273701178376e-06,3.7973723010509275e-06,-0.0004518423229455948,4.3746513256337494e-05,5.6465273701178376e-06,-7.822997076800675e-07,-2.5666034275673155e-07,6.220398206398768e-22,-0.0003725717542693019,5.6465273701178376e-06,2.9418333724606782e-05,9.388293965117293e-22,-2.0913064702199335e-07,-4.2989120174752316e-07,5.606480954156723e-06,-7.822997076800675e-07,9.388293965117293e-22,1.7779537841988713e-08,-9.982723944375247e-24,-1.3305557538459951e-23,5.6465273701178376e-06,-2.5666034275673155e-07,-2.0913064702199335e-07,-9.982723944375247e-24,9.50593825876922e-09,-1.2407709188295415e-24,3.7973723010509275e-06,6.220398206398768e-22,-4.2989120174752316e-07,-1.3305557538459951e-23,-1.2407709188295415e-24,7.960948344987173e-09,45.0,56.0,0.00949934497475624,-0.0004438710166141391,-0.0003596885653678328,5.506365141627612e-06,5.448403499030974e-06,3.6009564610139932e-06,-0.0004438710166141391,4.29697465733625e-05,5.448403499030974e-06,-7.683300395910919e-07,-2.476546967500326e-07,5.293955920339377e-22,-0.0003596885653678328,5.448403499030974e-06,2.7883515940629877e-05,8.664650273523692e-22,-1.981237716108808e-07,-4.0010627344599925e-07,5.506365141627612e-06,-7.683300395910919e-07,8.664650273523692e-22,1.7462046031369027e-08,-7.81094885153473e-24,-1.2226288535034497e-23,5.448403499030974e-06,-2.476546967500326e-07,-1.981237716108808e-07,-7.81094885153473e-24,9.0056255785953e-09,0.0,3.6009564610139932e-06,5.293955920339377e-22,-4.0010627344599925e-07,-1.2226288535034497e-23,0.0,7.274659541423034e-09,45.0,57.0,0.009338725358247757,-0.0004361760802567005,-0.00034746230812743306,5.409762252384098e-06,5.260527814243687e-06,3.4178569876530673e-06,-0.0004361760802567005,4.2220086470479146e-05,5.260527814243687e-06,-7.548505891463719e-07,-2.3911488256089797e-07,2.3822801641527197e-22,-0.00034746230812743306,5.260527814243687e-06,2.6453653845237568e-05,8.457381046535833e-22,-1.8787598321523546e-07,-3.72857130059856e-07,5.409762252384098e-06,-7.548505891463719e-07,8.457381046535833e-22,1.715569553084606e-08,-8.901632672258733e-24,-1.1506860800108323e-23,5.260527814243687e-06,-2.3911488256089797e-07,-1.8787598321523546e-07,-8.901632672258733e-24,8.53981774184831e-09,9.926167350636332e-24,3.4178569876530673e-06,2.3822801641527197e-22,-3.72857130059856e-07,-1.1506860800108323e-23,9.926167350636332e-24,6.658162909900511e-09,45.0,58.0,0.009183447808027267,-0.00042874342761933804,-0.00033584903576411307,5.316490842233179e-06,5.082204552309122e-06,3.2469640700583113e-06,-0.00042874342761933804,4.149613596382551e-05,5.082204552309122e-06,-7.418358904942579e-07,-2.3100930945929576e-07,-9.793818452627848e-22,-0.00033584903576411307,5.082204552309122e-06,2.511992170184385e-05,-1.6259877789896536e-21,-1.7832296350661636e-07,-3.4788899938575923e-07,5.316490842233179e-06,-7.418358904942579e-07,-1.6259877789896536e-21,1.6859907248090167e-08,1.6291080520359393e-23,2.2238317084316895e-23,5.082204552309122e-06,-2.3100930945929576e-07,-1.7832296350661636e-07,1.6291080520359393e-23,8.105589976992178e-09,-4.1359030627651384e-25,3.2469640700583113e-06,-9.793818452627848e-22,-3.4788899938575923e-07,2.2238317084316895e-23,-4.1359030627651384e-25,6.103316074757004e-09,45.0,59.0,0.009033248759806156,-0.00042155987466685474,-0.00032480841036885977,5.226380835665623e-06,4.912797976430738e-06,3.087277264057775e-06,-0.00042155987466685474,4.079659629496746e-05,4.912797976430738e-06,-7.292624104593415e-07,-2.2330898730160698e-07,4.367513634279986e-22,-0.00032480841036885977,4.912797976430738e-06,2.387437598372344e-05,9.476262684557747e-22,-1.6940681746291375e-07,-3.2497655411134474e-07,5.226380835665623e-06,-7.292624104593415e-07,9.476262684557747e-22,1.6574146499692688e-08,-1.521421280952943e-23,-1.056747576784028e-23,4.912797976430738e-06,-2.2330898730160698e-07,-1.6940681746291375e-07,-1.521421280952943e-23,7.700309723190912e-09,8.271806125530277e-25,3.087277264057775e-06,4.367513634279986e-22,-3.2497655411134474e-07,-1.056747576784028e-23,8.271806125530277e-25,5.60304425079039e-09,45.0,60.0,0.008887884207069874,-0.0004146130522713065,-0.00031430344097316265,5.139274435350671e-06,4.751722372020595e-06,2.937892986665247e-06,-0.0004146130522713065,4.012025237898342e-05,4.751722372020595e-06,-7.171080369516858e-07,-2.1598738442207832e-07,4.1028158382630173e-22,-0.00031430344097316265,4.751722372020595e-06,2.2709846234647557e-05,9.05997535750959e-22,-1.6107533440390398e-07,-3.0391996119760734e-07,5.139274435350671e-06,-7.171080369516858e-07,9.05997535750959e-22,1.6297910576668073e-08,-1.4224872371577362e-23,-1.0051700364205962e-23,4.751722372020595e-06,-2.1598738442207832e-07,-1.6107533440390398e-07,-1.4224872371577362e-23,7.3216064322423335e-09,4.1359030627651384e-25,2.937892986665247e-06,4.1028158382630173e-22,-3.0391996119760734e-07,-1.0051700364205962e-23,4.1359030627651384e-25,5.1511857002140005e-09,45.0,61.0,0.00874712411314249,-0.00040789152262732387,-0.0003043000178877264,5.055023848399287e-06,4.598441137204645e-06,2.797993374770158e-06,-0.00040789152262732387,3.94659728044644e-05,4.598441137204645e-06,-7.053521926536632e-07,-2.0902005815059965e-07,4.896909226313924e-22,-0.0003043000178877264,4.598441137204645e-06,2.1619849576381966e-05,8.67060068288621e-22,-1.5328137692449673e-07,-2.845416986474447e-07,5.055023848399287e-06,-7.053521926536632e-07,8.67060068288621e-22,1.603073052081072e-08,-1.3314660993306202e-23,-9.568957722116869e-24,4.598441137204645e-06,-2.0902005815059965e-07,-1.5328137692449673e-07,-1.3314660993306202e-23,6.967335153262866e-09,-1.6543612251060553e-24,2.797993374770158e-06,4.896909226313924e-22,-2.845416986474447e-07,-9.568957722116869e-24,-1.6543612251060553e-24,4.742361614518131e-09,45.0,62.0,0.008610752411186695,-0.00040138443000614643,-0.00029476667987182736,4.973491286364151e-06,4.452459052117774e-06,2.6668374175642384e-06,-0.00040138443000614643,3.88326880056411e-05,4.452459052117774e-06,-6.939755508028611e-07,-2.023844984933021e-07,4.301339185275744e-22,-0.00029476667987182736,4.452459052117774e-06,2.059851431113202e-05,5.957804207752715e-22,-1.4598225561712752e-07,-2.6668374175642384e-07,4.973491286364151e-06,-6.939755508028611e-07,5.957804207752715e-22,1.5772171124694978e-08,-1.80295934825299e-24,-9.116643811724866e-24,4.452459052117774e-06,-2.023844984933021e-07,-1.4598225561712752e-07,-1.80295934825299e-24,6.635556992762304e-09,-1.2407709188295415e-24,2.6668374175642384e-06,4.301339185275744e-22,-2.6668374175642384e-07,-9.116643811724866e-24,-1.2407709188295415e-24,4.371864648078372e-09,45.0,63.0,0.008478567935526371,-0.0003950817044824362,-0.000285674468614161,4.894547146250261e-06,4.313319550419692e-06,2.5437525437155273e-06,-0.0003950817044824362,3.8219408452278e-05,4.313319550419692e-06,-6.829600351920817e-07,-1.9605997181315615e-07,6.154223757394526e-22,-0.000285674468614161,4.313319550419692e-06,1.9640521713881753e-05,8.96170121163882e-22,-1.3913934537868045e-07,-2.5020517568918876e-07,4.894547146250261e-06,-6.829600351920817e-07,8.96170121163882e-22,1.5521818497177264e-08,-1.2834094818454614e-23,-8.144778220545253e-24,4.313319550419692e-06,-1.9605997181315615e-07,-1.3913934537868045e-07,-1.2834094818454614e-23,6.32451557791569e-09,-7.858215819253763e-24,2.5437525437155273e-06,6.154223757394526e-22,-2.5020517568918876e-07,-8.144778220545253e-24,-7.858215819253763e-24,4.0355674357783755e-09,45.0,64.0,0.008350380696356297,-0.0003889738873112947,-0.00027699655038304627,4.818069555767579e-06,4.180601990810828e-06,2.4281273454107577e-06,-0.0003889738873112947,3.762519918382168e-05,4.180601990810828e-06,-6.722888201693422e-07,-1.900273645105699e-07,-7.213014941462401e-22,-0.00027699655038304627,4.180601990810828e-06,1.8741031453828327e-05,-1.0663176996537019e-21,-1.3271751697629952e-07,-2.3498007806210808e-07,4.818069555767579e-06,-6.722888201693422e-07,-1.0663176996537019e-21,1.527929072153711e-08,9.66539103739948e-25,1.6588156070934763e-23,4.180601990810828e-06,-1.900273645105699e-07,-1.3271751697629952e-07,9.66539103739948e-25,6.0326148521028244e-09,-2.0679515313825692e-25,2.4281273454107577e-06,-7.213014941462401e-22,-2.3498007806210808e-07,1.6588156070934763e-23,-2.0679515313825692e-25,3.729842656952087e-09,46.0,3.0,0.10557354241609573,-0.0066489363089203835,-0.06382978707551956,9.636139293434098e-05,0.001387604046612978,0.010869565419852734,-0.0066489363089203835,0.0006940940511412919,0.001387604046612978,-1.3140190276317298e-05,-6.167129322420806e-05,-1.951563910473908e-18,-0.06382978707551956,0.001387604046612978,0.17252543568611145,-8.798811294840907e-20,-0.001387604046612978,-0.06521739065647125,9.636139293434098e-05,-1.3140190276317298e-05,-8.798811294840907e-20,2.920042163623293e-07,6.185143570782334e-22,3.671105752927617e-20,0.001387604046612978,-6.167129322420806e-05,-0.001387604046612978,6.185143570782334e-22,6.167129322420806e-05,0.0,0.010869565419852734,-1.951563910473908e-18,-0.06521739065647125,3.671105752927617e-20,0.0,0.032608695328235626,46.0,4.0,0.08821114897727966,-0.00519484281539917,-0.04155874252319336,7.227104651974514e-05,0.0008325624512508512,0.005434782709926367,-0.00519484281539917,0.0005298212054185569,0.0008325624512508512,-9.855142707237974e-06,-3.700277375173755e-05,5.421010862427522e-19,-0.04155874252319336,0.0008325624512508512,0.06574930250644684,-4.143929299646317e-21,-0.0005550416535697877,-0.016304347664117813,7.227104651974514e-05,-9.855142707237974e-06,-4.143929299646317e-21,2.1900316937717434e-07,1.1225953900418544e-22,-1.7948135547684597e-22,0.0008325624512508512,-3.700277375173755e-05,-0.0005550416535697877,1.1225953900418544e-22,2.4668517653481103e-05,-2.710505431213761e-19,0.005434782709926367,5.421010862427522e-19,-0.016304347664117813,-1.7948135547684597e-22,-2.710505431213761e-19,0.005434782709926367,46.0,5.0,0.07579952478408813,-0.004266882315278053,-0.029258623719215393,5.781683648820035e-05,0.0005550416535697877,0.003105590119957924,-0.004266882315278053,0.00042879069223999977,0.0005550416535697877,-7.884113983891439e-06,-2.4668517653481103e-05,5.014435047745458e-19,-0.029258623719215393,0.0005550416535697877,0.03326285257935524,1.8112507301196555e-20,-0.00027752082678489387,-0.006211180239915848,5.781683648820035e-05,-7.884113983891439e-06,1.8112507301196555e-20,1.752025298173976e-07,3.4647104172153204e-22,-6.44985439247057e-21,0.0005550416535697877,-2.4668517653481103e-05,-0.00027752082678489387,3.4647104172153204e-22,1.2334258826740552e-05,-8.809142651444724e-20,0.003105590119957924,5.014435047745458e-19,-0.006211180239915848,-6.44985439247057e-21,-8.809142651444724e-20,0.001552795059978962,46.0,6.0,0.06646458059549332,-0.003621811745688319,-0.021730870008468628,4.818069646717049e-05,0.0003964583156630397,0.0019409938249737024,-0.003621811745688319,0.00036026228917762637,0.0003964583156630397,-6.570095138158649e-06,-1.7620368453208357e-05,9.283481101907132e-19,-0.021730870008468628,0.0003964583156630397,0.01936781406402588,6.247898084357035e-20,-0.00015858332335483283,-0.002911490621045232,4.818069646717049e-05,-6.570095138158649e-06,6.247898084357035e-20,1.4600210818116466e-07,-2.650873797081777e-22,-1.0646649742105689e-20,0.0003964583156630397,-1.7620368453208357e-05,-0.00015858332335483283,-2.650873797081777e-22,7.048147836030694e-06,-1.3891340334970526e-19,0.0019409938249737024,9.283481101907132e-19,-0.002911490621045232,-1.0646649742105689e-20,-1.3891340334970526e-19,0.0005822981474921107,46.0,7.0,0.05918241664767265,-0.003146887756884098,-0.016783401370048523,4.129773878958076e-05,0.00029734373674727976,0.0012939958833158016,-0.003146887756884098,0.00031068414682522416,0.00029734373674727976,-5.631510248349514e-06,-1.321527724940097e-05,9.486769009248164e-20,-0.016783401370048523,0.00029734373674727976,0.012323245406150818,4.112576811829213e-21,-9.911457891575992e-05,-0.001552795059978962,4.129773878958076e-05,-5.631510248349514e-06,4.112576811829213e-21,1.251446661854061e-07,-1.7642140820170436e-22,-2.3402256737510255e-22,0.00029734373674727976,-1.321527724940097e-05,-9.911457891575992e-05,-1.7642140820170436e-22,4.405092113302089e-06,-1.1858461261560205e-20,0.0012939958833158016,9.486769009248164e-20,-0.001552795059978962,-2.3402256737510255e-22,-1.1858461261560205e-20,0.0002587991766631603,46.0,8.0,0.0533408485352993,-0.002782435156404972,-0.013355689123272896,3.613552325987257e-05,0.0002312673459528014,0.0009057971183210611,-0.002782435156404972,0.0002731334534473717,0.0002312673459528014,-4.927571353618987e-06,-1.0278548870701343e-05,-7.453889935837843e-20,-0.013355689123272896,0.0002312673459528014,0.00834489706903696,-5.123009030115064e-21,-6.607638351852074e-05,-0.0009057971183210611,3.613552325987257e-05,-4.927571353618987e-06,-5.123009030115064e-21,1.0950158468858717e-07,8.99660205891648e-23,1.0412395337976873e-22,0.0002312673459528014,-1.0278548870701343e-05,-6.607638351852074e-05,8.99660205891648e-23,2.9367281513259513e-06,1.6940658945086007e-20,0.0009057971183210611,-7.453889935837843e-20,-0.0009057971183210611,1.0412395337976873e-22,1.6940658945086007e-20,0.00012939958833158016,46.0,9.0,0.04855002462863922,-0.0024938329588621855,-0.0108821801841259,3.2120464311446995e-05,0.00018501387967262417,0.0006587615353055298,-0.0024938329588621855,0.0002436989452689886,0.00018501387967262417,-4.380063273856649e-06,-8.222838914662134e-06,-1.4907779871675686e-19,-0.0108821801841259,0.00018501387967262417,0.005920243915170431,-3.625046736989402e-21,-4.625346991815604e-05,-0.0005646527279168367,3.2120464311446995e-05,-4.380063273856649e-06,-3.625046736989402e-21,9.733474115591889e-08,-1.8793920655826357e-22,1.0653622818123961e-21,0.00018501387967262417,-8.222838914662134e-06,-4.625346991815604e-05,-1.8793920655826357e-22,2.0557097286655335e-06,2.329340604949326e-20,0.0006587615353055298,-1.4907779871675686e-19,-0.0005646527279168367,1.0653622818123961e-21,2.329340604949326e-20,7.058159098960459e-05,46.0,10.0,0.044549450278282166,-0.0022595871705561876,-0.00903834868222475,2.8908418244100176e-05,0.00015137498849071562,0.0004940711660310626,-0.0022595871705561876,0.0002200018207076937,0.00015137498849071562,-3.942056991945719e-06,-6.727777417836478e-06,1.7618285302889447e-19,-0.00903834868222475,0.00015137498849071562,0.004355359822511673,1.1659025915610396e-20,-3.363888754392974e-05,-0.0003705533454194665,2.8908418244100176e-05,-3.942056991945719e-06,1.1659025915610396e-20,8.76012649086988e-08,8.284089636457654e-23,-1.4639298491760176e-21,0.00015137498849071562,-6.727777417836478e-06,-3.363888754392974e-05,8.284089636457654e-23,1.4950616105124936e-06,-1.9905274260476058e-20,0.0004940711660310626,1.7618285302889447e-19,-0.0003705533454194665,-1.4639298491760176e-21,-1.9905274260476058e-20,4.1172595956595615e-05,46.0,11.0,0.04115831106901169,-0.0020656378474086523,-0.007626970764249563,2.6280380552634597e-05,0.00012614582374226302,0.00038005472742952406,-0.0020656378474086523,0.00020051133469678462,0.00012614582374226302,-3.583688112485106e-06,-5.606480954156723e-06,5.421010862427522e-20,-0.007626970764249563,0.00012614582374226302,0.003298982745036483,5.776430823037238e-21,-2.5229164748452604e-05,-0.0002533698279876262,2.6280380552634597e-05,-3.583688112485106e-06,5.776430823037238e-21,7.963751613715431e-08,4.664705873160457e-23,-6.8897475680030105e-22,0.00012614582374226302,-5.606480954156723e-06,-2.5229164748452604e-05,4.664705873160457e-23,1.1212962363060797e-06,-4.235164736271502e-21,0.00038005472742952406,5.421010862427522e-20,-0.0002533698279876262,-6.8897475680030105e-22,-4.235164736271502e-21,2.5336981707368977e-05,46.0,12.0,0.038247108459472656,-0.0019023963250219822,-0.006522501353174448,2.4090348233585246e-05,0.00010673877113731578,0.0002986144390888512,-0.0019023963250219822,0.00018419738626107574,0.00010673877113731578,-3.2850475690793246e-06,-4.743945737573085e-06,1.4060746924421386e-19,-0.006522501353174448,0.00010673877113731578,0.0025595356710255146,1.698477093618981e-20,-1.9407050785957836e-05,-0.00017916865181177855,2.4090348233585246e-05,-3.2850475690793246e-06,1.698477093618981e-20,7.300105409058233e-08,-7.147399763285525e-23,-1.2895638717054081e-21,0.00010673877113731578,-4.743945737573085e-06,-1.9407050785957836e-05,-7.147399763285525e-23,8.625355576441507e-07,-1.3552527156068805e-20,0.0002986144390888512,1.4060746924421386e-19,-0.00017916865181177855,-1.2895638717054081e-21,-1.3552527156068805e-20,1.6288060578517616e-05,46.0,13.0,0.03572063893079758,-0.0017630958463996649,-0.005641906522214413,2.223724550276529e-05,9.149037941824645e-05,0.00023889154545031488,-0.0017630958463996649,0.0001703411398921162,9.149037941824645e-05,-3.0323515147756552e-06,-4.066238943778444e-06,6.268043809681823e-20,-0.005641906522214413,9.149037941824645e-05,0.0020261884201318026,1.2177088971693644e-20,-1.524839626654284e-05,-0.00013030448462814093,2.223724550276529e-05,-3.0323515147756552e-06,1.2177088971693644e-20,6.738559221730611e-08,-1.5889377716835835e-22,-6.3965067965416725e-22,9.149037941824645e-05,-4.066238943778444e-06,-1.524839626654284e-05,-1.5889377716835835e-22,6.77706509577547e-07,-4.870439446712227e-21,0.00023889154545031488,6.268043809681823e-20,-0.00013030448462814093,-6.3965067965416725e-22,-4.870439446712227e-21,1.0858706446015276e-05,46.0,14.0,0.0335073359310627,-0.001642824150621891,-0.004928472451865673,2.064886939479038e-05,7.929166167741641e-05,0.00019409938249737024,-0.001642824150621891,0.00015842563880141824,7.929166167741641e-05,-2.815755124174757e-06,-3.524073918015347e-06,2.371692252312041e-20,-0.004928472451865673,7.929166167741641e-05,0.0016316736582666636,3.680477531553258e-21,-1.2198716831335332e-05,-9.704969124868512e-05,2.064886939479038e-05,-2.815755124174757e-06,3.680477531553258e-21,6.257233309270305e-08,-8.480352549878124e-23,-1.2176482066289377e-22,7.929166167741641e-05,-3.524073918015347e-06,-1.2198716831335332e-05,-8.480352549878124e-23,5.421651962933538e-07,-3.22931311140702e-21,0.00019409938249737024,2.371692252312041e-20,-9.704969124868512e-05,-1.2176482066289377e-22,-3.22931311140702e-21,7.46536079532234e-06,46.0,15.0,0.03155234828591347,-0.0015379278920590878,-0.00434238463640213,1.9272278223070316e-05,6.938020669622347e-05,0.0001598465460119769,-0.0015379278920590878,0.00014806950639467686,6.938020669622347e-05,-2.6280379188392544e-06,-3.083564706685138e-06,-2.371692252312041e-20,-0.00434238463640213,6.938020669622347e-05,0.001333502121269703,-1.1338645293436683e-20,-9.911457709677052e-06,-7.377532892860472e-05,1.9272278223070316e-05,-2.6280379188392544e-06,-1.1338645293436683e-20,5.840084327246586e-08,1.5561050021550505e-22,5.183847093841863e-22,6.938020669622347e-05,-3.083564706685138e-06,-9.911457709677052e-06,1.5561050021550505e-22,4.4050923975191836e-07,-5.293955920339377e-22,0.0001598465460119769,-2.371692252312041e-20,-7.377532892860472e-05,5.183847093841863e-22,-5.293955920339377e-22,5.269666417007102e-06,46.0,16.0,0.02981293946504593,-0.0014456334756687284,-0.0038550226017832756,1.8067761629936285e-05,6.121782644186169e-05,0.00013320545258466154,-0.0014456334756687284,0.00013898521137889475,6.121782644186169e-05,-2.4637856768094935e-06,-2.7207922812522156e-06,-5.505714157152952e-20,-0.0038550226017832756,6.121782644186169e-05,0.0011039129458367825,-8.261329042966983e-21,-8.162376616382971e-06,-5.708805110771209e-05,1.8067761629936285e-05,-2.4637856768094935e-06,-8.261329042966983e-21,5.4750792344293586e-08,2.044646529203987e-23,4.868775290990122e-22,6.121782644186169e-05,-2.7207922812522156e-06,-8.162376616382971e-06,2.044646529203987e-23,3.627723117460846e-07,3.494010907423989e-21,0.00013320545258466154,-5.505714157152952e-20,-5.708805110771209e-05,4.868775290990122e-22,3.494010907423989e-21,3.805870164796943e-06,46.0,17.0,0.02825530804693699,-0.0013637971132993698,-0.0034453822299838066,1.700495158729609e-05,5.4415846534539014e-05,0.00011217301653232425,-0.0013637971132993698,0.0001309518702328205,5.4415846534539014e-05,-2.318857013960951e-06,-2.4184819267247804e-06,3.8116482626443515e-20,-0.0034453822299838066,5.4415846534539014e-05,0.0009242340456694365,4.039757049046487e-21,-6.801980816817377e-06,-4.4869208068121225e-05,1.700495158729609e-05,-2.318857013960951e-06,4.039757049046487e-21,5.1530157918477926e-08,1.0211037645286123e-23,-2.5657220052705586e-22,5.4415846534539014e-05,-2.4184819267247804e-06,-6.801980816817377e-06,1.0211037645286123e-23,3.0231024084059754e-07,-3.1763735522036263e-21,0.00011217301653232425,3.8116482626443515e-20,-4.4869208068121225e-05,-2.5657220052705586e-22,-3.1763735522036263e-21,2.8043255042575765e-06,46.0,18.0,0.02685237117111683,-0.0012907355558127165,-0.0030977651476860046,1.6060232155723497e-05,4.868786345468834e-05,9.53470662352629e-05,-0.0012907355558127165,0.0001237969845533371,4.868786345468834e-05,-2.1900316369283246e-06,-2.1639050373778446e-06,1.1011428314305904e-20,-0.0030977651476860046,4.868786345468834e-05,0.0007815863937139511,2.674809477776865e-22,-5.7279839893453754e-06,-3.575514710973948e-05,1.6060232155723497e-05,-2.1900316369283246e-06,2.674809477776865e-22,4.8667370577959446e-08,-3.293425490626789e-23,1.3674966900878657e-23,4.868786345468834e-05,-2.1639050373778446e-06,-5.7279839893453754e-06,-3.293425490626789e-23,2.5457705987719237e-07,-1.2440796412797536e-21,9.53470662352629e-05,1.1011428314305904e-20,-3.575514710973948e-05,1.3674966900878657e-23,-1.2440796412797536e-21,2.1032440145063447e-06,46.0,19.0,0.025582168251276016,-0.0012251082807779312,-0.0028002476319670677,1.5214956874842755e-05,4.3819076381623745e-05,8.17260515759699e-05,-0.0012251082807779312,0.00011738385364878923,4.3819076381623745e-05,-2.0747668258991325e-06,-1.9475144199532224e-06,4.235164736271502e-21,-0.0028002476319670677,4.3819076381623745e-05,0.0006668873247690499,2.0025832603581394e-21,-4.868786163569894e-06,-2.8844489861512557e-05,1.5214956874842755e-05,-2.0747668258991325e-06,2.0025832603581394e-21,4.610593151710418e-08,-2.804782011194462e-23,-7.042356307323743e-23,4.3819076381623745e-05,-1.9475144199532224e-06,-4.868786163569894e-06,-2.804782011194462e-23,2.1639050373778446e-07,-2.6469779601696886e-23,8.17260515759699e-05,4.235164736271502e-21,-2.8844489861512557e-05,-7.042356307323743e-23,-2.6469779601696886e-23,1.6024716842366615e-06,46.0,20.0,0.024426711723208427,-0.0011658351868391037,-0.0025436405558139086,1.4454209122050088e-05,3.964583083870821e-05,7.058159098960459e-05,-0.0011658351868391037,0.00011160276335431263,3.964583083870821e-05,-1.9710284959728597e-06,-1.7620369590076734e-06,2.456395547037471e-20,-0.0025436405558139086,3.964583083870821e-05,0.0005736051825806499,2.1247590081328937e-21,-4.173245542915538e-06,-2.3527198209194466e-05,1.4454209122050088e-05,-1.9710284959728597e-06,2.1247590081328937e-21,4.38006324543494e-08,3.883050423447734e-23,-1.531531669413054e-22,3.964583083870821e-05,-1.7620369590076734e-06,-4.173245542915538e-06,3.883050423447734e-23,1.8547757463238668e-07,-1.641126335305207e-21,7.058159098960459e-05,2.456395547037471e-20,-2.3527198209194466e-05,-1.531531669413054e-22,-1.641126335305207e-21,1.2382735121718724e-06,46.0,21.0,0.023371126502752304,-0.0011120354756712914,-0.0023207697086036205,1.3765913536190055e-05,3.6041663406649604e-05,6.137529999250546e-05,-0.0011120354756712914,0.00010636462684487924,3.6041663406649604e-05,-1.8771700069919461e-06,-1.6018517499105656e-06,5.082197683525802e-21,-0.0023207697086036205,3.6041663406649604e-05,0.0004969598376192153,2.831239711757978e-21,-3.604166522563901e-06,-1.9381672245799564e-05,1.3765913536190055e-05,-1.8771700069919461e-06,2.831239711757978e-21,4.1714887544230805e-08,-6.22154653544128e-23,-6.526262046111535e-23,3.6041663406649604e-05,-1.6018517499105656e-06,-3.604166522563901e-06,-6.22154653544128e-23,1.6018518067539844e-07,1.3234889800848443e-23,6.137529999250546e-05,5.082197683525802e-21,-1.9381672245799564e-05,-6.526262046111535e-23,1.3234889800848443e-23,9.690836577647133e-07,46.0,22.0,0.022402996197342873,-0.0010629842290654778,-0.0021259684581309557,1.3140190276317298e-05,3.2907606509979814e-05,5.370338476495817e-05,-0.0010629842290654778,0.00010159634985029697,3.2907606509979814e-05,-1.791844056242553e-06,-1.4625602489104494e-06,6.3527471044072525e-21,-0.0021259684581309557,3.2907606509979814e-05,0.00043339774128980935,1.4654611228563602e-21,-3.134057806164492e-06,-1.6111016520881094e-05,1.3140190276317298e-05,-1.791844056242553e-06,1.4654611228563602e-21,3.9818758068577154e-08,-3.0507280549575208e-24,-5.2128584949277604e-23,3.2907606509979814e-05,-1.4625602489104494e-06,-3.134057806164492e-06,-3.0507280549575208e-24,1.3929145836755197e-07,-1.5881867761018131e-22,5.370338476495817e-05,6.3527471044072525e-21,-1.6111016520881094e-05,-5.2128584949277604e-23,-1.5881867761018131e-22,7.671912385376345e-07,46.0,23.0,0.021511884406208992,-0.0010180791141465306,-0.001954711740836501,1.2568877536978107e-05,3.0165305361151695e-05,4.7258978156605735e-05,-0.0010180791141465306,9.723740367917344e-05,3.0165305361151695e-05,-1.7139378769570612e-06,-1.340680228167912e-06,-5.082197683525802e-21,-0.001954711740836501,3.0165305361151695e-05,0.0003802395658567548,1.492306627440883e-21,-2.7423004667070927e-06,-1.3502565707312897e-05,1.2568877536978107e-05,-1.7139378769570612e-06,1.492306627440883e-21,3.8087506482042954e-08,-3.3246912037443186e-23,-3.5460878566938544e-23,3.0165305361151695e-05,-1.340680228167912e-06,-2.7423004667070927e-06,-3.3246912037443186e-23,1.2188002074253745e-07,4.764560328305439e-22,4.7258978156605735e-05,-5.082197683525802e-21,-1.3502565707312897e-05,-3.5460878566938544e-23,4.764560328305439e-22,6.137530021987914e-07,46.0,24.0,0.02068895474076271,-0.00097681547049433,-0.001803351566195488,1.2045174116792623e-05,2.7752081223297864e-05,4.180601899861358e-05,-0.00097681547049433,9.32372422539629e-05,2.7752081223297864e-05,-1.6425237845396623e-06,-1.233425791724585e-06,9.317362419797304e-21,-0.001803351566195488,2.7752081223297864e-05,0.0003354389045853168,3.1315113228245205e-21,-2.4132243652275065e-06,-1.140164204116445e-05,1.2045174116792623e-05,-1.6425237845396623e-06,3.1315113228245205e-21,3.6500527045291165e-08,-1.483618277513847e-23,-1.1413355697062847e-22,2.7752081223297864e-05,-1.233425791724585e-06,-2.4132243652275065e-06,-1.483618277513847e-23,1.0725442223247228e-07,-2.779326858178173e-22,4.180601899861358e-05,9.317362419797304e-21,-1.140164204116445e-05,-1.1413355697062847e-22,-2.779326858178173e-22,4.95723554649885e-07,46.0,25.0,0.01992666721343994,-0.0009387675090692937,-0.0016689200419932604,1.156336747953901e-05,2.561730616434943e-05,3.7160905776545405e-05,-0.0009387675090692937,8.955329394666478e-05,2.561730616434943e-05,-1.5768227967782877e-06,-1.13854696337512e-06,6.776263578034403e-21,-0.0016689200419932604,2.561730616434943e-05,0.0002974144590552896,1.8378026623271108e-21,-2.1347755136957858e-06,-9.69414941209834e-06,1.156336747953901e-05,-1.5768227967782877e-06,1.8378026623271108e-21,3.504050738456499e-08,-3.658681342607325e-23,-4.5011298846643624e-23,2.561730616434943e-05,-1.13854696337512e-06,-2.1347755136957858e-06,-3.658681342607325e-23,9.487891361459333e-08,-2.514629062161204e-22,3.7160905776545405e-05,6.776263578034403e-21,-9.69414941209834e-06,-4.5011298846643624e-23,-2.514629062161204e-22,4.039229111185705e-07,46.0,26.0,0.019218556582927704,-0.000903573352843523,-0.0015489829238504171,1.1118622751382645e-05,2.3719727323623374e-05,3.31793817167636e-05,-0.000903573352843523,8.614948455942795e-05,2.3719727323623374e-05,-1.5161757573878276e-06,-1.054210088113905e-06,-2.752857078576476e-21,-0.0015489829238504171,2.3719727323623374e-05,0.00026493100449442863,-4.712835286729949e-22,-1.8975782722918666e-06,-8.2948454291909e-06,1.1118622751382645e-05,-1.5161757573878276e-06,-4.712835286729949e-22,3.3692796108653056e-08,-1.347770118747547e-23,3.33581792904028e-23,2.3719727323623374e-05,-1.054210088113905e-06,-1.8975782722918666e-06,-1.347770118747547e-23,8.433681131236881e-08,8.602678370551488e-23,3.31793817167636e-05,-2.752857078576476e-21,-8.2948454291909e-06,3.33581792904028e-23,8.602678370551488e-23,3.317938137570309e-07,46.0,27.0,0.0185590460896492,-0.00087092345347628,-0.001441528438590467,1.0706821740313899e-05,2.2025460566510446e-05,2.974703056679573e-05,-0.00087092345347628,8.299501496367157e-05,2.2025460566510446e-05,-1.4600211670767749e-06,-9.789093837753171e-07,-0.0,-0.001441528438590467,2.2025460566510446e-05,0.0002370142174186185,-5.293955920339377e-23,-1.6942663023655768e-06,-7.139287390600657e-06,1.0706821740313899e-05,-1.4600211670767749e-06,-5.293955920339377e-23,3.244491253440174e-08,3.308722450212111e-24,-0.0,2.2025460566510446e-05,-9.789093837753171e-07,-1.6942663023655768e-06,3.308722450212111e-24,7.530072565486989e-08,-0.0,2.974703056679573e-05,-0.0,-7.139287390600657e-06,-0.0,-0.0,2.745879896792758e-07,46.0,28.0,0.01794329844415188,-0.0008405513945035636,-0.001344882301054895,1.032443469739519e-05,2.0506464352365583e-05,2.6772328055812977e-05,-0.0008405513945035636,8.006345888134092e-05,2.0506464352365583e-05,-1.4078775620873785e-06,-9.113983878705767e-07,-1.4871327702291093e-20,-0.001344882301054895,2.0506464352365583e-05,0.0002128884516423568,-1.0425861988800788e-20,-1.5189973510132404e-06,-6.1782293414580636e-06,1.032443469739519e-05,-1.4078775620873785e-06,-1.0425861988800788e-20,3.1286166546351524e-08,7.610061635487855e-23,3.0183188958464824e-22,2.0506464352365583e-05,-9.113983878705767e-07,-1.5189973510132404e-06,7.610061635487855e-23,6.751099590474041e-08,9.54735445068303e-23,2.6772328055812977e-05,-1.4871327702291093e-20,-6.1782293414580636e-06,3.0183188958464824e-22,9.54735445068303e-23,2.288233105218751e-07,46.0,29.0,0.01736709661781788,-0.0008122268482111394,-0.0012576415902003646,9.968420272343792e-06,1.9139366486342624e-05,2.418145777483005e-05,-0.0008122268482111394,7.733198435744271e-05,1.9139366486342624e-05,-1.3593299854619545e-06,-8.506385142936779e-07,-0.0,-0.0012576415902003646,1.9139366486342624e-05,0.00019193103071302176,0.0,-1.367097638649284e-06,-5.3736571317131165e-06,9.968420272343792e-06,-1.3593299854619545e-06,0.0,3.020733174707857e-08,0.0,-0.0,1.9139366486342624e-05,-8.506385142936779e-07,-1.367097638649284e-06,0.0,6.07598948931809e-08,-0.0,2.418145777483005e-05,-0.0,-5.3736571317131165e-06,-0.0,-0.0,1.919163281627334e-07,46.0,30.0,0.016826750710606575,-0.0007857494638301432,-0.0011786242248490453,9.636139111535158e-06,1.7904569176607765e-05,2.191444582422264e-05,-0.0007857494638301432,7.478077168343589e-05,1.7904569176607765e-05,-1.3140189594196272e-06,-7.957585808071599e-07,-0.0,-0.0011786242248490453,1.7904569176607765e-05,0.00017363816732540727,5.293955920339377e-23,-1.2347978781690472e-06,-4.69595261165523e-06,9.636139111535158e-06,-1.3140189594196272e-06,5.293955920339377e-23,2.920042163623293e-08,-1.6543612251060553e-24,-0.0,1.7904569176607765e-05,-7.957585808071599e-07,-1.2347978781690472e-06,-1.6543612251060553e-24,5.4879905064808554e-08,-0.0,2.191444582422264e-05,-0.0,-4.69595261165523e-06,-0.0,-0.0,1.6192940677228762e-07,46.0,31.0,0.016319014132022858,-0.0007609441527165473,-0.001106827869080007,9.325296559836715e-06,1.6785532352514565e-05,1.992222314584069e-05,-0.0007609441527165473,7.2392555011902e-05,1.6785532352514565e-05,-1.2716312767224736e-06,-7.460237156919902e-07,-0.0,-0.001106827869080007,1.6785532352514565e-05,0.00015759926463942975,-5.293955920339377e-23,-1.1190355735379853e-06,-4.121839538129279e-06,9.325296559836715e-06,-1.2716312767224736e-06,-5.293955920339377e-23,2.825847289500416e-08,1.6543612251060553e-24,-0.0,1.6785532352514565e-05,-7.460237156919902e-07,-1.1190355735379853e-06,1.6543612251060553e-24,4.973491130044749e-08,-0.0,1.992222314584069e-05,-0.0,-4.121839538129279e-06,-0.0,-0.0,1.3739465032358567e-07,46.0,32.0,0.01584102027118206,-0.0007376574212685227,-0.0010413987329229712,9.033880814968143e-06,1.5768227967782877e-05,1.816438089008443e-05,-0.0007376574212685227,7.015219307504594e-05,1.5768227967782877e-05,-1.2318928384047467e-06,-7.008101192695904e-07,-0.0,-0.0010413987329229712,1.5768227967782877e-05,0.00014347741671372205,0.0,-1.017305066852714e-06,-3.632876087067416e-06,9.033880814968143e-06,-1.2318928384047467e-06,0.0,2.7375396172146793e-08,0.0,-0.0,1.5768227967782877e-05,-7.008101192695904e-07,-1.017305066852714e-06,0.0,4.521355734254939e-08,-0.0,1.816438089008443e-05,-0.0,-3.632876087067416e-06,-0.0,-0.0,1.1718955050810109e-07,46.0,33.0,0.01539023220539093,-0.000715753878466785,-0.0009816053789108992,8.760126547713298e-06,1.4840685253147967e-05,1.6607433281023987e-05,-0.000715753878466785,6.804635631851852e-05,1.4840685253147967e-05,-1.1945627420573146e-06,-6.595860213565174e-07,-0.0,-0.0009816053789108992,1.4840685253147967e-05,0.00013099440548103303,0.0,-9.27542828321748e-07,-3.214341859347769e-06,8.760126547713298e-06,-1.1945627420573146e-06,0.0,2.6545839304503716e-08,1.6543612251060553e-24,-0.0,1.4840685253147967e-05,-6.595860213565174e-07,-9.27542828321748e-07,1.6543612251060553e-24,4.122412633478234e-08,-0.0,1.6607433281023987e-05,-0.0,-3.214341859347769e-06,-0.0,-0.0,1.0044818310461778e-07,46.0,34.0,0.014964389614760876,-0.0006951138493604958,-0.0009268184658139944,8.502475793648046e-06,1.3992646017868537e-05,1.5223480659187771e-05,-0.0006951138493604958,6.60632795188576e-05,1.3992646017868537e-05,-1.1594285069804755e-06,-6.218953672032512e-07,-7.19131841404779e-21,-0.0009268184658139944,1.3992646017868537e-05,0.0001199191392515786,-4.665817662165839e-21,-8.480391784360108e-07,-2.854402737284545e-06,8.502475793648046e-06,-1.1594285069804755e-06,-4.665817662165839e-21,2.5765078959238963e-08,3.3087224502121107e-23,9.807422958472672e-23,1.3992646017868537e-05,-6.218953672032512e-07,-8.480391784360108e-07,3.3087224502121107e-23,3.769062928427047e-08,1.4976453603683801e-22,1.5223480659187771e-05,-7.19131841404779e-21,-2.854402737284545e-06,9.807422958472672e-23,1.4976453603683801e-22,8.649704597019081e-08,46.0,35.0,0.014561478979885578,-0.0006756310467608273,-0.0008764943340793252,8.259547939815093e-06,1.321527724940097e-05,1.3989144463266712e-05,-0.0006756310467608273,6.419254350475967e-05,1.321527724940097e-05,-1.1263019814578001e-06,-5.873456530025578e-07,-0.0,-0.0008764943340793252,1.321527724940097e-05,0.00011005855049006641,0.0,-7.773692232149187e-07,-2.5434808321733726e-06,8.259547939815093e-06,-1.1263019814578001e-06,0.0,2.5028933592352587e-08,0.0,-0.0,1.321527724940097e-05,-5.873456530025578e-07,-7.773692232149187e-07,0.0,3.4549742622402846e-08,-0.0,1.3989144463266712e-05,-0.0,-2.5434808321733726e-06,-0.0,-0.0,7.480825559014193e-08,46.0,36.0,0.014179695397615433,-0.0006572107668034732,-0.0008301609195768833,8.030116077861749e-06,1.2500937373260967e-05,1.2884738680440933e-05,-0.0006572107668034732,6.24248496023938e-05,1.2500937373260967e-05,-1.0950158184641623e-06,-5.555972393267439e-07,-0.0,-0.0008301609195768833,1.2500937373260967e-05,0.000101250501757022,-1.0587911840678754e-22,-7.143393077058136e-07,-2.273777454320225e-06,8.030116077861749e-06,-1.0950158184641623e-06,-1.0587911840678754e-22,2.4333685288979723e-08,3.308722450212111e-24,-0.0,1.2500937373260967e-05,-5.555972393267439e-07,-7.143393077058136e-07,3.308722450212111e-24,3.1748413675813936e-08,-0.0,1.2884738680440933e-05,-0.0,-2.273777454320225e-06,-0.0,-0.0,6.496506443909311e-08,46.0,37.0,0.013817420229315758,-0.0006397683755494654,-0.0007874072180129588,7.81308608566178e-06,1.1842993444588501e-05,1.1893605005752761e-05,-0.0006397683755494654,6.075191413401626e-05,1.1842993444588501e-05,-1.0654208608684712e-06,-5.263552793621784e-07,-6.352747104407253e-22,-0.0007874072180129588,1.1842993444588501e-05,9.335816866951063e-05,4.0487651716300633e-23,-6.57944099202723e-07,-2.0389036308188224e-06,7.81308608566178e-06,-1.0654208608684712e-06,4.0487651716300633e-23,2.367601759090121e-08,-2.853377686918442e-25,-8.8423349840894e-25,1.1842993444588501e-05,-5.263552793621784e-07,-6.57944099202723e-07,-2.853377686918442e-25,2.9241959964565467e-08,3.639594695233322e-23,1.1893605005752761e-05,-6.352747104407253e-22,-2.0389036308188224e-06,-8.8423349840894e-25,3.639594695233322e-23,5.663621394091933e-08,46.0,38.0,0.013473195023834705,-0.0006232280284166336,-0.0007478736224584281,7.607478437421378e-06,1.1235660167585593e-05,1.1001584425684996e-05,-0.0006232280284166336,5.916632289881818e-05,1.1235660167585593e-05,-1.0373834129495663e-06,-4.99362670325354e-07,3.705769144237564e-22,-0.0007478736224584281,1.1235660167585593e-05,8.626553608337417e-05,7.482342530577676e-23,-6.07332992785814e-07,-1.83359736638522e-06,7.607478437421378e-06,-1.0373834129495663e-06,7.482342530577676e-23,2.305296575855209e-08,-3.835499702461093e-24,6.396902046423548e-26,1.1235660167585593e-05,-4.99362670325354e-07,-6.07332992785814e-07,-3.835499702461093e-24,2.6992577062401324e-08,-1.6543612251060553e-23,1.1001584425684996e-05,3.705769144237564e-22,-1.83359736638522e-06,6.396902046423548e-26,-1.6543612251060553e-23,4.955668586603679e-08,46.0,39.0,0.013145704753696918,-0.0006075215060263872,-0.0007112447055988014,7.41241501600598e-06,1.0673877113731578e-05,1.0196590665145777e-05,-0.0006075215060263872,5.766140020568855e-05,1.0673877113731578e-05,-1.0107838761541643e-06,-4.7439456807296665e-07,7.940933880509066e-23,-0.0007112447055988014,1.0673877113731578e-05,7.9873796494212e-05,3.463973747347589e-23,-5.617829970105959e-07,-1.653501158216386e-06,7.41241501600598e-06,-1.0107838761541643e-06,3.463973747347589e-23,2.2461863480316424e-08,-1.897995788087681e-24,1.1008880570077788e-25,1.0673877113731578e-05,-4.7439456807296665e-07,-5.617829970105959e-07,-1.897995788087681e-24,2.4968134226810434e-08,-3.308722450212111e-24,1.0196590665145777e-05,7.940933880509066e-23,-1.653501158216386e-06,1.1008880570077788e-25,-3.308722450212111e-24,4.351318594331133e-08,46.0,40.0,0.012833756394684315,-0.0005925873410888016,-0.0006772426422685385,7.227104561025044e-06,1.0153200491913594e-05,9.468262760492507e-06,-0.0005925873410888016,5.623114702757448e-05,1.0153200491913594e-05,-9.855142479864298e-07,-4.5125335645934683e-07,2.6469779601696886e-22,-0.0006772426422685385,1.0153200491913594e-05,7.409843237837777e-05,3.2135072544962967e-23,-5.206769628784969e-07,-1.4949888509363518e-06,7.227104561025044e-06,-9.855142479864298e-07,3.2135072544962967e-23,2.19003162271747e-08,-1.0529882009756294e-24,-2.347577330823031e-25,1.0153200491913594e-05,-4.5125335645934683e-07,-5.206769628784969e-07,-1.0529882009756294e-24,2.31411974027651e-08,-1.3234889800848443e-23,9.468262760492507e-06,2.6469779601696886e-22,-1.4949888509363518e-06,-2.347577330823031e-25,-1.3234889800848443e-23,3.8333045182525893e-08,46.0,41.0,0.01253626961261034,-0.0005783698288723826,-0.0006456221453845501,7.050833573885029e-06,9.66971492744051e-06,8.807685844658408e-06,-0.0005783698288723826,5.4870135500095785e-05,9.66971492744051e-06,-9.614773262001108e-07,-4.2976509462278045e-07,-3.705769144237564e-22,-0.0006456221453845501,9.66971492744051e-06,6.886688061058521e-05,-1.5619051114270189e-21,-4.834857350033417e-07,-1.3550286439567572e-06,7.050833573885029e-06,-9.614773262001108e-07,-1.5619051114270189e-21,2.1366162172853365e-08,4.9842974072370074e-23,8.398256584332679e-24,9.66971492744051e-06,-4.2976509462278045e-07,-4.834857350033417e-07,4.9842974072370074e-23,2.1488254731139023e-08,-9.926167350636332e-24,8.807685844658408e-06,-3.705769144237564e-22,-1.3550286439567572e-06,8.398256584332679e-24,-9.926167350636332e-24,3.387571467783346e-08,46.0,42.0,0.01225226279348135,-0.0005648186197504401,-0.0006161657511256635,6.882956768095028e-06,9.219960702466778e-06,8.207161954487674e-06,-0.0005648186197504401,5.357346162782051e-05,9.219960702466778e-06,-9.385850034959731e-07,-4.09776021115249e-07,-2.6469779601696886e-22,-0.0006161657511256635,9.219960702466778e-06,6.411658978322521e-05,2.780613837413387e-23,-4.497541681303119e-07,-1.231074293173151e-06,6.882956768095028e-06,-9.385850034959731e-07,2.780613837413387e-23,2.0857443772115403e-08,-1.022230415673449e-24,-1.2030306298324105e-25,9.219960702466778e-06,-4.09776021115249e-07,-4.497541681303119e-07,-1.022230415673449e-24,1.998907528388827e-08,1.3234889800848443e-23,8.207161954487674e-06,-2.6469779601696886e-22,-1.231074293173151e-06,-1.2030306298324105e-25,1.3234889800848443e-23,3.0026203745592284e-08,46.0,43.0,0.011980838142335415,-0.0005518879625014961,-0.0005886805010959506,6.722887974319747e-06,8.800871910352726e-06,7.660018127353396e-06,-0.0005518879625014961,5.233666524873115e-05,8.800871910352726e-06,-9.16757471713936e-07,-3.9114985384003376e-07,1.5881867761018131e-22,-0.0005886805010959506,8.800871910352726e-06,5.9793455875478685e-05,2.5931277904244056e-23,-4.1908910475285666e-07,-1.1209782542209723e-06,6.722887974319747e-06,-9.16757471713936e-07,2.5931277904244056e-23,2.037238822083509e-08,-1.0089315027103937e-24,-7.25564986487132e-26,8.800871910352726e-06,-3.9114985384003376e-07,-4.1908910475285666e-07,-1.0089315027103937e-24,1.862618326242682e-08,-5.790264287871194e-24,7.660018127353396e-06,1.5881867761018131e-22,-1.1209782542209723e-06,-7.25564986487132e-26,-5.790264287871194e-24,2.6689956911241097e-08,46.0,44.0,0.011721178889274597,-0.0005395361804403365,-0.0005629942752420902,6.570095138158649e-06,8.409721885982435e-06,7.160451332310913e-06,-0.0005395361804403365,5.115569001645781e-05,8.409721885982435e-06,-8.959220281212765e-07,-3.737654026281234e-07,2.9116757561866574e-22,-0.0005629942752420902,8.409721885982435e-06,5.585050894296728e-05,-0.0,-3.9114985384003376e-07,-1.0229216513835127e-06,6.570095138158649e-06,-8.959220281212765e-07,-0.0,1.9909379034288577e-08,8.271806125530277e-25,-4.1359030627651384e-25,8.409721885982435e-06,-3.737654026281234e-07,-3.9114985384003376e-07,8.271806125530277e-25,1.738443700105563e-08,-1.406207041340147e-23,7.160451332310913e-06,2.9116757561866574e-22,-1.0229216513835127e-06,-4.1359030627651384e-25,-1.406207041340147e-23,2.3788874869978827e-08,46.0,45.0,0.011472536250948906,-0.0005277252639643848,-0.0005389534635469317,6.424093044188339e-06,8.044081369007472e-06,6.70340114083956e-06,-0.0005277252639643848,5.002683974453248e-05,8.044081369007472e-06,-8.760126775086974e-07,-3.5751475024881074e-07,-7.940933880509066e-23,-0.0005389534635469317,8.044081369007472e-06,5.2246847189962864e-05,-6.797537427465109e-23,-3.6564006222761236e-07,-9.353583436677582e-07,6.424093044188339e-06,-8.760126775086974e-07,-6.797537427465109e-23,1.9466948941726514e-08,2.957255137436978e-24,3.897604207035008e-25,8.044081369007472e-06,-3.5751475024881074e-07,-3.6564006222761236e-07,2.957255137436978e-24,1.6250670142881063e-08,1.6543612251060553e-24,6.70340114083956e-06,-7.940933880509066e-23,-9.353583436677582e-07,3.897604207035008e-25,1.6543612251060553e-24,2.1258143689806275e-08,46.0,46.0,0.011234222911298275,-0.0005164204048924148,-0.0005164204048924148,6.2844387684890535e-06,7.701780305069406e-06,6.2844387684890535e-06,-0.0005164204048924148,4.894674202660099e-05,7.701780305069406e-06,-8.569689384785306e-07,-3.4230134815516067e-07,-7.940933880509066e-23,-0.0005164204048924148,7.701780305069406e-06,4.894674202660099e-05,4.2454531233062665e-23,-3.4230134815516067e-07,-8.569689384785306e-07,6.2844387684890535e-06,-8.569689384785306e-07,4.2454531233062665e-23,1.9043753241021477e-08,-1.1240796555008549e-24,-3.2971173695239847e-25,7.701780305069406e-06,-3.4230134815516067e-07,-3.4230134815516067e-07,-1.1240796555008549e-24,1.5213393211865878e-08,4.1359030627651384e-24,6.2844387684890535e-06,-7.940933880509066e-23,-8.569689384785306e-07,-3.2971173695239847e-25,4.1359030627651384e-24,1.9043753241021477e-08,46.0,47.0,0.011005609296262264,-0.0005055897636339068,-0.000495271640829742,6.150727131171152e-06,7.380872830253793e-06,5.899677034904016e-06,-0.0005055897636339068,4.7912300942698494e-05,7.380872830253793e-06,-8.387355592276435e-07,-3.2803879435050476e-07,-2.3822801641527197e-22,-0.000495271640829742,7.380872830253793e-06,4.591888136928901e-05,1.991414037547492e-23,-3.209075032373221e-07,-7.866236160225526e-07,6.150727131171152e-06,-8.387355592276435e-07,1.991414037547492e-23,1.863856802231112e-08,6.880091800082579e-25,-7.54733944296439e-25,7.380872830253793e-06,-3.2803879435050476e-07,-3.209075032373221e-07,6.880091800082579e-25,1.4262555581012748e-08,9.926167350636332e-24,5.899677034904016e-06,-2.3822801641527197e-22,-7.866236160225526e-07,-7.54733944296439e-25,9.926167350636332e-24,1.710051300563009e-08,46.0,48.0,0.010786114260554314,-0.0004952041781507432,-0.00047539599472656846,6.0225870583963115e-06,7.07961271473323e-06,5.545696694753133e-06,-0.0004952041781507432,4.692068250733428e-05,7.07961271473323e-06,-8.212618922698312e-07,-3.1464944072467915e-07,3.970466940254533e-23,-0.00047539599472656846,7.07961271473323e-06,4.313575482228771e-05,-3.7414303272101126e-23,-3.01260115520563e-07,-7.233517180793569e-07,6.0225870583963115e-06,-8.212618922698312e-07,-3.7414303272101126e-23,1.8250263522645582e-08,1.0884821099375304e-24,2.138172970936949e-25,7.07961271473323e-06,-3.1464944072467915e-07,-3.01260115520563e-07,1.0884821099375304e-24,1.3389338526792471e-08,-1.6543612251060553e-24,5.545696694753133e-06,3.970466940254533e-23,-7.233517180793569e-07,2.138172970936949e-25,-1.6543612251060553e-24,1.5390462237974134e-08,46.0,49.0,0.010575203225016594,-0.0004852366400882602,-0.0004566933203022927,5.899677034904016e-06,6.796427896915702e-06,5.219479135121219e-06,-0.0004852366400882602,4.596928192768246e-05,6.796427896915702e-06,-8.045014396884653e-07,-3.020634835593228e-07,-3.970466940254533e-23,-0.0004566933203022927,6.796427896915702e-06,4.057312253280543e-05,3.5191574075670574e-23,-2.8318450517872407e-07,-6.663164526798937e-07,5.899677034904016e-06,-8.045014396884653e-07,3.5191574075670574e-23,1.7877809455058014e-08,-1.0728039924843286e-24,-1.643471148220899e-25,6.796427896915702e-06,-3.020634835593228e-07,-2.8318450517872407e-07,-1.0728039924843286e-24,1.258597759346003e-08,2.481541837659083e-24,5.219479135121219e-06,-3.970466940254533e-23,-6.663164526798937e-07,-1.643471148220899e-25,2.481541837659083e-24,1.3881593652342872e-08,46.0,50.0,0.010372382588684559,-0.00047566249850206077,-0.0004390730755403638,5.781683739769505e-06,6.529901384055847e-06,4.918355443805922e-06,-0.00047566249850206077,4.505570177570917e-05,6.529901384055847e-06,-7.884113983891439e-07,-2.9021785508120956e-07,-1.9852334701272664e-22,-0.0004390730755403638,6.529901384055847e-06,3.820956771960482e-05,-0.0,-2.6652659812498314e-07,-6.147944304757402e-07,5.781683739769505e-06,-7.884113983891439e-07,-0.0,1.7520253692282495e-08,-8.271806125530277e-25,0.0,6.529901384055847e-06,-2.9021785508120956e-07,-2.6652659812498314e-07,-8.271806125530277e-25,1.1845626701756373e-08,8.271806125530277e-24,4.918355443805922e-06,-1.9852334701272664e-22,-6.147944304757402e-07,0.0,8.271806125530277e-24,1.2546824912362808e-08,46.0,51.0,0.010177195072174072,-0.0004664589068852365,-0.00042245336226187646,5.668317498930264e-06,6.2787512433715165e-06,4.639957751351176e-06,-0.0004664589068852365,4.417773016029969e-05,6.2787512433715165e-06,-7.729523758825962e-07,-2.790556266063504e-07,6.617444900424221e-23,-0.00042245336226187646,6.2787512433715165e-06,3.602612196118571e-05,-0.0,-2.5115005541920254e-07,-5.681581001226732e-07,5.668317498930264e-06,-7.729523758825962e-07,-0.0,1.7176718714040362e-08,0.0,0.0,6.2787512433715165e-06,-2.790556266063504e-07,-2.5115005541920254e-07,0.0,1.116222492214547e-08,-2.481541837659083e-24,4.639957751351176e-06,6.617444900424221e-23,-5.681581001226732e-07,0.0,-2.481541837659083e-24,1.1363161966926327e-08,46.0,52.0,0.009989217855036259,-0.0004576047358568758,-0.00040675976197235286,5.559311375691323e-06,6.041817414370598e-06,4.38218239651178e-06,-0.0004576047358568758,4.333332253736444e-05,6.041817414370598e-06,-7.580878786939138e-07,-2.6852521273212915e-07,9.26442286059391e-23,-0.00040675976197235286,6.041817414370598e-06,3.400595596758649e-05,4.424319760500441e-23,-2.369340137420295e-07,-5.258618784864666e-07,5.559311375691323e-06,-7.580878786939138e-07,4.424319760500441e-23,1.6846398054326528e-08,-1.1354418163339794e-24,-4.773735561605456e-25,6.041817414370598e-06,-2.6852521273212915e-07,-2.369340137420295e-07,-1.1354418163339794e-24,1.0530400551544972e-08,-2.895132143935597e-24,4.38218239651178e-06,9.26442286059391e-23,-5.258618784864666e-07,-4.773735561605456e-25,-2.895132143935597e-24,1.0311017817343782e-08,46.0,53.0,0.00980805791914463,-0.00044908045674674213,-0.00039192475378513336,5.454418442241149e-06,5.818046247441089e-06,4.14315445596003e-06,-0.00044908045674674213,4.2520590795902535e-05,5.818046247441089e-06,-7.437843692059687e-07,-2.585798313248233e-07,-1.1911400820763599e-22,-0.00039192475378513336,5.818046247441089e-06,3.213407762814313e-05,-0.0,-2.2377101061010762e-07,-4.874299293078366e-07,5.454418442241149e-06,-7.437843692059687e-07,-0.0,1.6528540314197926e-08,-8.271806125530277e-25,4.1359030627651384e-25,5.818046247441089e-06,-2.585798313248233e-07,-2.2377101061010762e-07,-8.271806125530277e-25,9.945378742770572e-09,3.7223127564886245e-24,4.14315445596003e-06,-1.1911400820763599e-22,-4.874299293078366e-07,4.1359030627651384e-25,3.7223127564886245e-24,9.373652076760663e-09,46.0,54.0,0.009633352980017662,-0.00044086796697229147,-0.0003778868413064629,5.353410870156949e-06,5.606480954156723e-06,3.921199549949961e-06,-0.00044086796697229147,4.173778506810777e-05,5.606480954156723e-06,-7.300105835383874e-07,-2.491769350854156e-07,6.617444900424221e-23,-0.0003778868413064629,5.606480954156723e-06,3.0397124646697193e-05,1.3182651431704707e-23,-2.1156532170607534e-07,-4.5244610191730317e-07,5.353410870156949e-06,-7.300105835383874e-07,1.3182651431704707e-23,1.622245626720087e-08,-9.189324327936046e-25,1.0577932944977744e-26,5.606480954156723e-06,-2.491769350854156e-07,-2.1156532170607534e-07,-9.189324327936046e-25,9.402903344835067e-09,-2.481541837659083e-24,3.921199549949961e-06,6.617444900424221e-23,-4.5244610191730317e-07,1.0577932944977744e-26,-2.481541837659083e-24,8.536718887341976e-09,46.0,55.0,0.009464762173593044,-0.0004329505027271807,-0.0003645898832473904,5.256075837678509e-06,5.406249783845851e-06,3.714820650202455e-06,-0.0004329505027271807,4.098328645341098e-05,5.406249783845851e-06,-7.167376452343888e-07,-2.4027775680224295e-07,-1.0587911840678754e-22,-0.0003645898832473904,5.406249783845851e-06,2.8783157176803797e-05,-1.2482704616832966e-23,-2.002314687388207e-07,-4.205457457828743e-07,5.256075837678509e-06,-7.167376452343888e-07,-1.2482704616832966e-23,1.5927502872159494e-08,5.004268821280784e-25,-2.4412513277557197e-26,5.406249783845851e-06,-2.4027775680224295e-07,-2.002314687388207e-07,5.004268821280784e-25,8.89917650681582e-09,4.1359030627651384e-24,3.714820650202455e-06,-1.0587911840678754e-22,-4.205457457828743e-07,-2.4412513277557197e-26,4.1359030627651384e-24,7.787884115373345e-09,46.0,56.0,0.009301971644163132,-0.0004253123770467937,-0.000351982656866312,5.162217348697595e-06,5.2165564738970716e-06,3.5226746604166692e-06,-0.0004253123770467937,4.025558155262843e-05,5.2165564738970716e-06,-7.039387810436892e-07,-2.3184696829048335e-07,-1.8661194619196304e-21,-0.000351982656866312,5.2165564738970716e-06,2.728147774178069e-05,-2.65024588904477e-21,-1.8969296888826648e-07,-3.914082924438844e-07,5.162217348697595e-06,-7.039387810436892e-07,-2.65024588904477e-21,1.5643083273175762e-08,1.8014041089783467e-23,3.802317136229967e-23,5.2165564738970716e-06,-2.3184696829048335e-07,-1.8969296888826648e-07,1.8014041089783467e-23,8.430798281722218e-09,5.37667398159468e-24,3.5226746604166692e-06,-1.8661194619196304e-21,-3.914082924438844e-07,3.802317136229967e-23,5.37667398159468e-24,7.1165144888141185e-09,46.0,57.0,0.009144685231149197,-0.0004179391253273934,-0.000340018275892362,5.0716521400318015e-06,5.036675247538369e-06,3.3435555906180525e-06,-0.0004179391253273934,3.955326974391937e-05,5.036675247538369e-06,-6.915889230185712e-07,-2.2385223985565972e-07,0.0,-0.000340018275892362,5.036675247538369e-06,2.5882483896566555e-05,-2.2449476215982834e-23,-1.7988126899126655e-07,-3.6475154274739907e-07,5.0716521400318015e-06,-6.915889230185712e-07,-2.2449476215982834e-23,1.536864324691578e-08,5.6961244870629e-25,1.0957636658712697e-25,5.036675247538369e-06,-2.2385223985565972e-07,-1.7988126899126655e-07,5.6961244870629e-25,7.99472310575311e-09,0.0,3.3435555906180525e-06,0.0,-3.6475154274739907e-07,1.0957636658712697e-25,0.0,6.513420025555661e-09,46.0,58.0,0.008992630057036877,-0.000410817185183987,-0.0003286537539679557,4.984210136171896e-06,4.865940809395397e-06,3.176377958880039e-06,-0.000410817185183987,3.887504499289207e-05,4.865940809395397e-06,-6.796649927309772e-07,-2.1626402713081916e-07,0.0,-0.0003286537539679557,4.865940809395397e-06,2.457754817442037e-05,2.1317624900058968e-23,-1.7073476499263052e-07,-3.4032620988000417e-07,4.984210136171896e-06,-6.796649927309772e-07,2.1317624900058968e-23,1.5103665873539285e-08,-5.616791211015151e-25,-8.839077358329387e-26,4.865940809395397e-06,-2.1626402713081916e-07,-1.7073476499263052e-07,-5.616791211015151e-25,7.58821183666214e-09,0.0,3.176377958880039e-06,0.0,-3.4032620988000417e-07,-8.839077358329387e-26,0.0,5.970635097440891e-09,46.0,59.0,0.008845549076795578,-0.00040393389645032585,-0.0003178496262989938,4.8997317207977176e-06,4.703742433775915e-06,3.02016269415617e-06,-0.00040393389645032585,3.8219692214624956e-05,4.703742433775915e-06,-6.681452759949025e-07,-2.0905523001601978e-07,-1.852884572118782e-22,-0.0003178496262989938,4.703742433775915e-06,2.3358894395641983e-05,-0.0,-1.6219802034811437e-07,-3.179118550633575e-07,4.8997317207977176e-06,-6.681452759949025e-07,-0.0,1.4847672424878056e-08,0.0,0.0,4.703742433775915e-06,-2.0905523001601978e-07,-1.6219802034811437e-07,0.0,7.20880111160227e-09,6.617444900424222e-24,3.02016269415617e-06,-1.852884572118782e-22,-3.179118550633575e-07,0.0,6.617444900424222e-24,5.481239018223505e-09,46.0,60.0,0.008703201077878475,-0.00039727750117890537,-0.0003075696586165577,4.818069555767579e-06,4.549521690933034e-06,2.874025767596322e-06,-0.00039727750117890537,3.758606544579379e-05,4.549521690933034e-06,-6.570094797098136e-07,-2.0220095109380054e-07,-5.293955920339377e-23,-0.0003075696586165577,4.549521690933034e-06,2.221950671810191e-05,2.295901535861702e-22,-1.5422106969253946e-07,-2.9731299377999676e-07,4.818069555767579e-06,-6.570094797098136e-07,2.295901535861702e-22,1.4600210818116466e-08,-1.0204007316898793e-23,-2.571393892423754e-39,4.549521690933034e-06,-2.0220095109380054e-07,-1.5422106969253946e-07,-1.0204007316898793e-23,6.85426959634583e-09,1.6543612251060553e-24,2.874025767596322e-06,-5.293955920339377e-23,-2.9731299377999676e-07,-2.571393892423754e-39,1.6543612251060553e-24,5.039203276879789e-09,46.0,61.0,0.00856536254286766,-0.00039083691081032157,-0.00029778049793094397,4.73908494313946e-06,4.402762897370849e-06,2.7371672786102863e-06,-0.00039083691081032157,3.6973109672544524e-05,4.402762897370849e-06,-6.462388455474866e-07,-1.956783393097794e-07,7.279189390466644e-23,-0.00029778049793094397,4.402762897370849e-06,2.1153042325749993e-05,-0.0,-1.467587651404756e-07,-2.783559978070116e-07,4.73908494313946e-06,-6.462388455474866e-07,-0.0,1.4360863609397256e-08,0.0,0.0,4.402762897370849e-06,-1.956783393097794e-07,-1.467587651404756e-07,0.0,6.5226113399319274e-09,-2.0679515313825692e-24,2.7371672786102863e-06,7.279189390466644e-23,-2.783559978070116e-07,0.0,-2.0679515313825692e-24,4.639266748540649e-09,46.0,62.0,0.008431822061538696,-0.0003846018516924232,-0.0002884513814933598,4.662648279918358e-06,4.262992661097087e-06,2.608862587294425e-06,-0.0003846018516924232,3.63798244507052e-05,4.262992661097087e-06,-6.358156383612368e-07,-1.8946633417726844e-07,-7.940933880509066e-23,-0.0002884513814933598,4.262992661097087e-06,2.0153758669039235e-05,-0.0,-1.3977025048461655e-07,-2.608862530451006e-07,4.662648279918358e-06,-6.358156383612368e-07,-0.0,1.412923644750208e-08,0.0,0.0,4.262992661097087e-06,-1.8946633417726844e-07,-1.3977025048461655e-07,0.0,6.212010905670695e-09,2.68833699079734e-24,2.608862587294425e-06,-7.940933880509066e-23,-2.608862530451006e-07,0.0,2.68833699079734e-24,4.27682378401073e-09,46.0,63.0,0.00830238126218319,-0.00037856263224966824,-0.0002795539330691099,4.588637693814235e-06,4.129773969907546e-06,2.488453674232005e-06,-0.00037856263224966824,3.5805278457701206e-05,4.129773969907546e-06,-6.257233167161758e-07,-1.8354550945787196e-07,2.6469779601696886e-23,-0.0002795539330691099,4.129773969907546e-06,1.9216449800296687e-05,-0.0,-1.3321852065928397e-07,-2.4476591420352634e-07,4.588637693814235e-06,-6.257233167161758e-07,-0.0,1.3904963402922021e-08,0.0,0.0,4.129773969907546e-06,-1.8354550945787196e-07,-1.3321852065928397e-07,0.0,5.920822943039639e-09,-6.203854594147708e-25,2.488453674232005e-06,2.6469779601696886e-23,-2.4476591420352634e-07,0.0,-6.203854594147708e-25,3.947837612372496e-09,46.0,64.0,0.008176854811608791,-0.0003727101138792932,-0.00027106190100312233,4.516940407484071e-06,4.002703917649342e-06,2.3753420919092605e-06,-0.0003727101138792932,3.5248602216597646e-05,4.002703917649342e-06,-6.159464192023734e-07,-1.7789795947464881e-07,-6.617444900424221e-23,-0.00027106190100312233,4.002703917649342e-06,1.8336379071115516e-05,-2.0199519327636397e-22,-1.2706996699307638e-07,-2.2987181580447213e-07,4.516940407484071e-06,-6.159464192023734e-07,-2.0199519327636397e-22,1.3687698086073397e-08,8.977563689829876e-24,3.3060778616876836e-39,4.002703917649342e-06,-1.7789795947464881e-07,-1.2706996699307638e-07,8.977563689829876e-24,5.647554424115242e-09,1.8611563782443123e-24,2.3753420919092605e-06,-6.617444900424221e-23,-2.2987181580447213e-07,3.3060778616876836e-39,1.8611563782443123e-24,3.6487588506162183e-09,47.0,3.0,0.10346106439828873,-0.0063775512389838696,-0.0625,9.046171908266842e-05,0.0013297871919348836,0.010638297535479069,-0.0063775512389838696,0.000651193258818239,0.0013297871919348836,-1.206156230182387e-05,-5.781683648820035e-05,5.421010862427522e-19,-0.0625,0.0013297871919348836,0.16888298094272614,2.2623191843901405e-21,-0.0013297871919348836,-0.06382978707551956,9.046171908266842e-05,-1.206156230182387e-05,2.2623191843901405e-21,2.622078625336144e-07,-6.251850658669782e-22,5.901914687417029e-21,0.0013297871919348836,-5.781683648820035e-05,-0.0013297871919348836,-6.251850658669782e-22,5.781683648820035e-05,-9.75781955236954e-19,0.010638297535479069,5.421010862427522e-19,-0.06382978707551956,5.901914687417029e-21,-9.75781955236954e-19,0.03191489353775978,47.0,4.0,0.08643888682126999,-0.004982631187886,-0.04069149121642113,6.784628931200132e-05,0.0007978723151609302,0.005319148767739534,-0.004982631187886,0.0004970674635842443,0.0007978723151609302,-9.046171726367902e-06,-3.4690103348111734e-05,1.2739375526704677e-18,-0.04069149121642113,0.0007978723151609302,0.06436169892549515,4.0249910673188485e-20,-0.0005319148767739534,-0.01595744676887989,6.784628931200132e-05,-9.046171726367902e-06,4.0249910673188485e-20,1.9665590400563815e-07,-7.206172929950366e-22,-7.615309870292305e-21,0.0007978723151609302,-3.4690103348111734e-05,-0.0005319148767739534,-7.206172929950366e-22,2.312673495907802e-05,-5.149960319306146e-19,0.005319148767739534,1.2739375526704677e-18,-0.01595744676887989,-7.615309870292305e-21,-5.149960319306146e-19,0.005319148767739534,47.0,5.0,0.07427268475294113,-0.004092487972229719,-0.028647417202591896,5.427702853921801e-05,0.0005319148767739534,0.0030395137146115303,-0.004092487972229719,0.0004022793145850301,0.0005319148767739534,-7.236937108245911e-06,-2.312673495907802e-05,-5.149960319306146e-19,-0.028647417202591896,0.0005319148767739534,0.032560791820287704,-6.132850347406693e-21,-0.0002659574383869767,-0.006079027429223061,5.427702853921801e-05,-7.236937108245911e-06,-6.132850347406693e-21,1.5732472036233958e-07,-1.2696317421458505e-22,2.1463133638797222e-21,0.0005319148767739534,-2.312673495907802e-05,-0.0002659574383869767,-1.2696317421458505e-22,1.156336747953901e-05,1.5585406229479126e-19,0.0030395137146115303,-5.149960319306146e-19,-0.006079027429223061,2.1463133638797222e-21,1.5585406229479126e-19,0.0015197568573057652,47.0,6.0,0.06512338668107986,-0.0034737298265099525,-0.021276595070958138,4.523085954133421e-05,0.0003799392143264413,0.0018996960716322064,-0.0034737298265099525,0.0003379859554115683,0.0003799392143264413,-6.030781150911935e-06,-1.6519095879630186e-05,-5.827586677109586e-19,-0.021276595070958138,0.0003799392143264413,0.018958967179059982,-5.737028753104871e-20,-0.00015197567699942738,-0.0028495441656559706,4.523085954133421e-05,-6.030781150911935e-06,-5.737028753104871e-20,1.311039312668072e-07,6.62272395760196e-23,1.0833842976548426e-20,0.0003799392143264413,-1.6519095879630186e-05,-0.00015197567699942738,6.62272395760196e-23,6.607638624700485e-06,1.0164395367051604e-20,0.0018996960716322064,-5.827586677109586e-19,-0.0028495441656559706,1.0833842976548426e-20,1.0164395367051604e-20,0.0005699088214896619,47.0,7.0,0.057986605912446976,-0.0030181906186044216,-0.016432370990514755,3.876930713886395e-05,0.00028495441074483097,0.001266464008949697,-0.0030181906186044216,0.00029147215536795557,0.00028495441074483097,-5.169240921532037e-06,-1.238932236446999e-05,-2.303929616531697e-19,-0.016432370990514755,0.00028495441074483097,0.012063070200383663,-1.2356280203062211e-20,-9.498480358161032e-05,-0.0015197568573057652,3.876930713886395e-05,-5.169240921532037e-06,-1.2356280203062211e-20,1.1237480634918029e-07,-6.513348708637429e-23,1.9144489432364616e-21,0.00028495441074483097,-1.238932236446999e-05,-9.498480358161032e-05,-6.513348708637429e-23,4.129773969907546e-06,4.404571325722362e-20,0.001266464008949697,-2.303929616531697e-19,-0.0015197568573057652,1.9144489432364616e-21,4.404571325722362e-20,0.0002532928192522377,47.0,8.0,0.052261997014284134,-0.002668620552867651,-0.013076241128146648,3.392314465600066e-05,0.00022163119865581393,0.0008865247946232557,-0.002668620552867651,0.0002562426379881799,0.00022163119865581393,-4.523085863183951e-06,-9.636139111535158e-06,-2.168404344971009e-19,-0.013076241128146648,0.00022163119865581393,0.008168692700564861,-1.4197866974353682e-20,-6.332320481305942e-05,-0.0008865247946232557,3.392314465600066e-05,-4.523085863183951e-06,-1.4197866974353682e-20,9.832795200281907e-08,-4.7692113259848777e-23,2.0449681888158126e-21,0.00022163119865581393,-9.636139111535158e-06,-6.332320481305942e-05,-4.7692113259848777e-23,2.753182570813806e-06,2.795208725939191e-20,0.0008865247946232557,-2.168404344971009e-19,-0.0008865247946232557,2.0449681888158126e-21,2.795208725939191e-20,0.00012664640962611884,47.0,9.0,0.04756729304790497,-0.002391807734966278,-0.010654416866600513,3.0153905754559673e-05,0.00017730495892465115,0.0006447453051805496,-0.002391807734966278,0.00022862778860144317,0.00017730495892465115,-4.020520918857073e-06,-7.708911653026007e-06,-1.4230153513872246e-19,-0.010654416866600513,0.00017730495892465115,0.005795224104076624,-9.464695080679075e-21,-4.4326239731162786e-05,-0.0005526388413272798,3.0153905754559673e-05,-4.020520918857073e-06,-9.464695080679075e-21,8.74026255814897e-08,1.8975711442624004e-23,1.1388809879789225e-21,0.00017730495892465115,-7.708911653026007e-06,-4.4326239731162786e-05,1.8975711442624004e-23,1.9272279132565018e-06,1.9481757786848908e-20,0.0006447453051805496,-1.4230153513872246e-19,-0.0005526388413272798,1.1388809879789225e-21,1.9481757786848908e-20,6.907985516590998e-05,47.0,10.0,0.043647121638059616,-0.0021671338472515345,-0.008849130012094975,2.7138514269609004e-05,0.00014506769366562366,0.0004835590079892427,-0.0021671338472515345,0.000206395736313425,0.00014506769366562366,-3.6184685541229555e-06,-6.307291187113151e-06,-4.743384504624082e-20,-0.008849130012094975,0.00014506769366562366,0.00426337867975235,5.409611764286916e-23,-3.223726525902748e-05,-0.00036266923416405916,2.7138514269609004e-05,-3.6184685541229555e-06,5.409611764286916e-23,7.866236018116979e-08,-3.8371904680392533e-23,6.388748444202132e-23,0.00014506769366562366,-6.307291187113151e-06,-3.223726525902748e-05,-3.8371904680392533e-23,1.4016202385391807e-06,9.317362419797304e-21,0.0004835590079892427,-4.743384504624082e-20,-0.00036266923416405916,6.388748444202132e-23,9.317362419797304e-21,4.029658157378435e-05,47.0,11.0,0.04032422602176666,-0.0019811117090284824,-0.007467266637831926,2.4671377104823478e-05,0.00012088975199731067,0.00037196846096776426,-0.0019811117090284824,0.0001881103089544922,0.00012088975199731067,-3.2895170534175122e-06,-5.256075837678509e-06,-3.3881317890172014e-21,-0.007467266637831926,0.00012088975199731067,0.0032293060794472694,3.531219090807887e-21,-2.417794894427061e-05,-0.0002479789836797863,2.4671377104823478e-05,-3.2895170534175122e-06,3.531219090807887e-21,7.151123782023205e-08,4.3751602365836925e-24,-3.3465693458719733e-22,0.00012088975199731067,-5.256075837678509e-06,-2.417794894427061e-05,4.3751602365836925e-24,1.0512152357478044e-06,4.235164736271502e-21,0.00037196846096776426,-3.3881317890172014e-21,-0.0002479789836797863,-3.3465693458719733e-22,4.235164736271502e-21,2.479789691278711e-05,47.0,12.0,0.03747167810797691,-0.001824543229304254,-0.006385901477187872,2.2615429770667106e-05,0.00010229132749373093,0.00029226092738099396,-0.001824543229304254,0.00017280507017858326,0.00010229132749373093,-3.0153905754559673e-06,-4.447449100553058e-06,4.912791094074942e-20,-0.006385901477187872,0.00010229132749373093,0.0025054733268916607,4.9699378037337055e-21,-1.8598422684590332e-05,-0.00017535655933897942,2.2615429770667106e-05,-3.0153905754559673e-06,4.9699378037337055e-21,6.55519656334036e-08,-1.3789279788021148e-22,-1.0705681831852285e-22,0.00010229132749373093,-4.447449100553058e-06,-1.8598422684590332e-05,-1.3789279788021148e-22,8.086270781859639e-07,-7.093900933254765e-21,0.00029226092738099396,4.912791094074942e-20,-0.00017535655933897942,-1.0705681831852285e-22,-7.093900933254765e-21,1.5941504898364656e-05,47.0,13.0,0.0349961593747139,-0.0016909382538869977,-0.005523731466382742,2.0875781046925113e-05,8.767827966948971e-05,0.0002338087506359443,-0.0016909382538869977,0.0001598056114744395,8.767827966948971e-05,-2.783437366815633e-06,-3.81209906663571e-06,5.082197683525802e-20,-0.005523731466382742,8.767827966948971e-05,0.001983389025554061,5.3624984161851225e-21,-1.461304691474652e-05,-0.00012753203918691725,2.0875781046925113e-05,-2.783437366815633e-06,5.3624984161851225e-21,6.05095067385264e-08,-8.364882246015493e-23,-2.6058133048690836e-22,8.767827966948971e-05,-3.81209906663571e-06,-1.461304691474652e-05,-8.364882246015493e-23,6.353498633870913e-07,-5.823351512373315e-21,0.0002338087506359443,5.082197683525802e-20,-0.00012753203918691725,-2.6058133048690836e-22,-5.823351512373315e-21,1.0627670235408004e-05,47.0,14.0,0.03282752260565758,-0.0015755846397951245,-0.00482522789388895,1.9384653569431975e-05,7.598783849971369e-05,0.00018996960716322064,-0.0015755846397951245,0.00014862691750749946,7.598783849971369e-05,-2.5846204607660184e-06,-3.3038193123502424e-06,-1.6940658945086007e-20,-0.00482522789388895,7.598783849971369e-05,0.0015972059918567538,-7.051611324437992e-21,-1.1690437531797215e-05,-9.498480358161032e-05,1.9384653569431975e-05,-2.5846204607660184e-06,-7.051611324437992e-21,5.6187403174590145e-08,2.792817200072794e-23,4.403674008433359e-22,7.598783849971369e-05,-3.3038193123502424e-06,-1.1690437531797215e-05,2.792817200072794e-23,5.082798679723055e-07,-5.823351512373315e-22,0.00018996960716322064,-1.6940658945086007e-20,-9.498480358161032e-05,4.403674008433359e-22,-5.823351512373315e-22,7.30652345737326e-06,47.0,15.0,0.030912019312381744,-0.0014749782858416438,-0.00425140792503953,1.8092343452735804e-05,6.648935959674418e-05,0.00015644555969629437,-0.0014749782858416438,0.00013891117123421282,6.648935959674418e-05,-2.4123123694153037e-06,-2.8908418698847527e-06,3.3881317890172014e-21,-0.00425140792503953,6.648935959674418e-05,0.0013053318252786994,-4.921520272918077e-21,-9.498479812464211e-06,-7.220564293675125e-05,1.8092343452735804e-05,-2.4123123694153037e-06,-4.921520272918077e-21,5.2441574638351085e-08,2.8245833665485955e-23,2.642860737333159e-22,6.648935959674418e-05,-2.8908418698847527e-06,-9.498479812464211e-06,2.8245833665485955e-23,4.129774140437803e-07,-2.4352197233561135e-21,0.00015644555969629437,3.3881317890172014e-21,-7.220564293675125e-05,2.642860737333159e-22,-2.4352197233561135e-21,5.157545729161939e-06,47.0,16.0,0.029207760468125343,-0.0013864588690921664,-0.003774248994886875,1.696157232800033e-05,5.8667083067120984e-05,0.00013037129247095436,-0.0013864588690921664,0.0001303886529058218,5.8667083067120984e-05,-2.2615429315919755e-06,-2.5507426926196786e-06,3.3881317890172014e-21,-0.003774248994886875,5.8667083067120984e-05,0.001080591813661158,3.2340467817093255e-21,-7.822277439117897e-06,-5.587341365753673e-05,1.696157232800033e-05,-2.2615429315919755e-06,3.2340467817093255e-21,4.916397600140954e-08,-6.53319644901279e-23,-1.2017844031515604e-22,5.8667083067120984e-05,-2.5507426926196786e-06,-7.822277439117897e-06,-6.53319644901279e-23,3.4009903515652695e-07,3.1763735522036263e-22,0.00013037129247095436,3.3881317890172014e-21,-5.587341365753673e-05,-1.2017844031515604e-22,3.1763735522036263e-22,3.724894213519292e-06,47.0,17.0,0.02768162079155445,-0.0013079700293019414,-0.003373185871168971,1.596383299329318e-05,5.214851989876479e-05,0.00010978635691571981,-0.0013079700293019414,0.00012285209959372878,5.214851989876479e-05,-2.128510914189974e-06,-2.2673268631479004e-06,-2.202285662861181e-20,-0.003373185871168971,5.214851989876479e-05,0.000904708169400692,2.0855036739019622e-21,-6.518564987345599e-06,-4.391454058350064e-05,1.596383299329318e-05,-2.128510914189974e-06,2.0855036739019622e-21,4.627197824902396e-08,-1.6635217934818438e-23,-1.0457711294905113e-22,5.214851989876479e-05,-2.2673268631479004e-06,-6.518564987345599e-06,-1.6635217934818438e-23,2.8341585789348755e-07,3.1499037726019294e-21,0.00010978635691571981,-2.202285662861181e-20,-4.391454058350064e-05,-1.0457711294905113e-22,3.1499037726019294e-21,2.74465878646879e-06,47.0,18.0,0.026307061314582825,-0.001237897202372551,-0.0030328480061143637,1.5076952877279837e-05,4.665920278057456e-05,9.331840556114912e-05,-0.001237897202372551,0.0001161396867246367,4.665920278057456e-05,-2.0102604594285367e-06,-2.0286609014874557e-06,1.6940658945086007e-20,-0.0030328480061143637,4.665920278057456e-05,0.0007650736952200532,5.57387216850438e-23,-5.48931757293758e-06,-3.499440208543092e-05,1.5076952877279837e-05,-2.0102604594285367e-06,5.57387216850438e-23,4.370131279074485e-08,6.305191034943675e-23,-7.951012998522894e-23,4.665920278057456e-05,-2.0286609014874557e-06,-5.48931757293758e-06,6.305191034943675e-23,2.3866599008215417e-07,-1.4558378780933287e-21,9.331840556114912e-05,1.6940658945086007e-20,-3.499440208543092e-05,-7.951012998522894e-23,-1.4558378780933287e-21,2.0584941466950113e-06,47.0,19.0,0.02506256103515625,-0.0011749548139050603,-0.002741561271250248,1.4283428754424676e-05,4.199328031972982e-05,7.998719956958666e-05,-0.0011749548139050603,0.00011012316826963797,4.199328031972982e-05,-1.9044572354687261e-06,-1.8257948113387101e-06,-1.5246593050577406e-20,-0.002741561271250248,4.199328031972982e-05,0.000652797520160675,-7.482975512568025e-21,-4.665920187107986e-06,-2.8230777388671413e-05,1.4283428754424676e-05,-1.9044572354687261e-06,-7.482975512568025e-21,4.140124332252526e-08,8.495348480142014e-23,2.725380131858091e-22,4.199328031972982e-05,-1.8257948113387101e-06,-4.665920187107986e-06,8.495348480142014e-23,2.0286609014874557e-07,5.293955920339377e-23,7.998719956958666e-05,-1.5246593050577406e-20,-2.8230777388671413e-05,2.725380131858091e-22,5.293955920339377e-23,1.568376546856598e-06,47.0,20.0,0.023930495604872704,-0.0011181067675352097,-0.0024903288576751947,1.3569257134804502e-05,3.7993919249856845e-05,6.907985516590998e-05,-0.0011181067675352097,0.00010469960398040712,3.7993919249856845e-05,-1.8092342770614778e-06,-1.6519096561751212e-06,-1.3552527156068805e-20,-0.0024903288576751947,3.7993919249856845e-05,0.0005614859401248395,-1.318933125341463e-21,-3.999360160378274e-06,-2.302661960129626e-05,1.3569257134804502e-05,-1.8092342770614778e-06,-1.318933125341463e-21,3.9331180090584894e-08,-1.4976803542381357e-23,7.399861758682664e-23,3.7993919249856845e-05,-1.6519096561751212e-06,-3.999360160378274e-06,-1.4976803542381357e-23,1.738852262178625e-07,9.661469554619363e-22,6.907985516590998e-05,-1.3552527156068805e-20,-2.302661960129626e-05,7.399861758682664e-23,9.661469554619363e-22,1.2119272696509142e-06,47.0,21.0,0.022896284237504005,-0.0010665083536878228,-0.0022721264977008104,1.2923102076456416e-05,3.453992758295499e-05,6.0069440223742276e-05,-0.0010665083536878228,9.978542220778763e-05,3.453992758295499e-05,-1.7230803450729582e-06,-1.501736051068292e-06,1.7364175418713157e-20,-0.0022721264977008104,3.453992758295499e-05,0.0004864597285632044,3.9014284591586825e-21,-3.453992803770234e-06,-1.8969296434079297e-05,1.2923102076456416e-05,-1.7230803450729582e-06,3.9014284591586825e-21,3.7458267598822204e-08,-3.988777664042161e-23,-1.384378565895085e-22,3.453992758295499e-05,-1.501736051068292e-06,-3.453992803770234e-06,-3.988777664042161e-23,1.501736051068292e-07,-8.205631676526035e-22,6.0069440223742276e-05,1.7364175418713157e-20,-1.8969296434079297e-05,-1.384378565895085e-22,-8.205631676526035e-22,9.484648444413324e-07,47.0,22.0,0.021947763860225677,-0.0010194642236456275,-0.002081406069919467,1.2335688552411739e-05,3.1536455935565755e-05,5.2560761105269194e-05,-0.0010194642236456275,9.531204705126584e-05,3.1536455935565755e-05,-1.6447585267087561e-06,-1.3711502333535464e-06,-3.3881317890172014e-21,-0.002081406069919467,3.1536455935565755e-05,0.0004242404247634113,-2.3596661851944493e-21,-3.003472102136584e-06,-1.5768227967782877e-05,1.2335688552411739e-05,-1.6447585267087561e-06,-2.3596661851944493e-21,3.575561891011603e-08,1.5500479387981463e-23,8.842570971829198e-23,3.1536455935565755e-05,-1.3711502333535464e-06,-3.003472102136584e-06,1.5500479387981463e-23,1.3058574666047207e-07,-2.6469779601696886e-23,5.2560761105269194e-05,-3.3881317890172014e-21,-1.5768227967782877e-05,8.842570971829198e-23,-2.6469779601696886e-23,7.50868025534146e-07,47.0,23.0,0.021074708551168442,-0.0009763965499587357,-0.0019137372728437185,1.1799354069808032e-05,2.8908418244100176e-05,4.625346991815604e-05,-0.0009763965499587357,9.122268966166303e-05,2.8908418244100176e-05,-1.5732472320451052e-06,-1.2568877991725458e-06,1.9905274260476058e-20,-0.0019137372728437185,2.8908418244100176e-05,0.0003722052788361907,6.0324298940285455e-21,-2.6280379188392544e-06,-1.321527724940097e-05,1.1799354069808032e-05,-1.5732472320451052e-06,6.0324298940285455e-21,3.420102601126018e-08,-5.735186650557387e-23,-1.941070890951332e-22,2.8908418244100176e-05,-1.2568877991725458e-06,-2.6280379188392544e-06,-5.735186650557387e-23,1.1426251944612886e-07,-7.940933880509066e-22,4.625346991815604e-05,1.9905274260476058e-20,-1.321527724940097e-05,-1.941070890951332e-22,-7.940933880509066e-22,6.006944204273168e-07,47.0,24.0,0.020268455147743225,-0.0009368215105496347,-0.001765548251569271,1.1307714885333553e-05,2.6595744202495553e-05,4.091652954230085e-05,-0.0009368215105496347,8.746992534724995e-05,2.6595744202495553e-05,-1.5076952877279837e-06,-1.1563366797417984e-06,-7.835054762102278e-21,-0.001765548251569271,2.6595744202495553e-05,0.00032835110323503613,-5.801411334224074e-22,-2.312673359483597e-06,-1.1159053428855259e-05,1.1307714885333553e-05,-1.5076952877279837e-06,-5.801411334224074e-22,3.27759828167018e-08,-3.880610713326157e-24,3.360320579845169e-23,2.6595744202495553e-05,-1.1563366797417984e-06,-2.312673359483597e-06,-3.880610713326157e-24,1.0055101995476434e-07,4.896909226313924e-22,4.091652954230085e-05,-7.835054762102278e-21,-1.1159053428855259e-05,3.360320579845169e-23,4.896909226313924e-22,4.851762582802621e-07,47.0,25.0,0.019521620124578476,-0.0009003306622616947,-0.0016339333960786462,1.0855405889742542e-05,2.454991772538051e-05,3.6370249290484935e-05,-0.0009003306622616947,8.401382365263999e-05,2.454991772538051e-05,-1.4473874898612848e-06,-1.0673877568478929e-06,1.0587911840678754e-21,-0.0016339333960786462,2.454991772538051e-05,0.0002911300107371062,8.533934128262398e-22,-2.0458264771150425e-06,-9.48789147514617e-06,1.0855405889742542e-05,-1.4473874898612848e-06,8.533934128262398e-22,3.146494620409612e-08,4.6391462276286624e-24,-3.687867618378692e-23,2.454991772538051e-05,-1.0673877568478929e-06,-2.0458264771150425e-06,4.6391462276286624e-24,8.894897973732441e-08,9.26442286059391e-23,3.6370249290484935e-05,1.0587911840678754e-21,-9.48789147514617e-06,-3.687867618378692e-23,9.26442286059391e-23,3.9532878304271435e-07,47.0,26.0,0.01882786676287651,-0.0008665768546052277,-0.0015165094519034028,1.0437890523462556e-05,2.2731404897058383e-05,3.247343556722626e-05,-0.0008665768546052277,8.082053682301193e-05,2.2731404897058383e-05,-1.3917186834078166e-06,-9.883219718176406e-07,-4.870439446712227e-21,-0.0015165094519034028,2.2731404897058383e-05,0.00025933285360224545,6.720921741737106e-22,-1.8185124872616143e-06,-8.118358891806565e-06,1.0437890523462556e-05,-1.3917186834078166e-06,6.720921741737106e-22,3.02547533692632e-08,-3.4624632364862716e-23,1.395399015849895e-23,2.2731404897058383e-05,-9.883219718176406e-07,-1.8185124872616143e-06,-3.4624632364862716e-23,7.906575660854287e-08,3.3087224502121107e-22,3.247343556722626e-05,-4.870439446712227e-21,-8.118358891806565e-06,1.395399015849895e-23,3.3087224502121107e-22,3.2473437272528827e-07,47.0,27.0,0.018181730061769485,-0.0008352631703019142,-0.001411306788213551,1.0051301615021657e-05,2.110773311869707e-05,2.9114115022821352e-05,-0.0008352631703019142,7.786117203067988e-05,2.110773311869707e-05,-1.3401735259321867e-06,-9.177275615002145e-07,1.2705494208814505e-21,-0.001411306788213551,2.110773311869707e-05,0.00023200591385830194,1.7579827624416197e-21,-1.6236718920481508e-06,-6.987387678236701e-06,1.0051301615021657e-05,-1.3401735259321867e-06,1.7579827624416197e-21,2.9134207935044287e-08,-5.036129039698011e-24,-6.395826104243775e-23,2.110773311869707e-05,-9.177275615002145e-07,-1.6236718920481508e-06,-5.036129039698011e-24,7.05944245282808e-08,5.955700410381799e-23,2.9114115022821352e-05,1.2705494208814505e-21,-6.987387678236701e-06,-6.395826104243775e-23,5.955700410381799e-23,2.687456799321808e-07,47.0,28.0,0.017578471451997757,-0.0008061341941356659,-0.0013166859280318022,9.692326784715988e-06,1.9652028640848584e-05,2.6202704248134978e-05,-0.0008061341941356659,7.511093281209469e-05,1.9652028640848584e-05,-1.2923102303830092e-06,-8.54435995734093e-07,-0.0,-0.0013166859280318022,1.9652028640848584e-05,0.0002083898871205747,-1.0587911840678754e-22,-1.4557057284037e-06,-6.046777798474068e-06,9.692326784715988e-06,-1.2923102303830092e-06,-1.0587911840678754e-22,2.8093701587295072e-08,4.963083675318166e-24,-0.0,1.9652028640848584e-05,-8.54435995734093e-07,-1.4557057284037e-06,4.963083675318166e-24,6.329155866069414e-08,-0.0,2.6202704248134978e-05,-0.0,-6.046777798474068e-06,-0.0,-0.0,2.2395474275072047e-07,47.0,29.0,0.01701395958662033,-0.0007789689698256552,-0.0012312735198065639,9.358108400192577e-06,1.8341892427997664e-05,2.366695844102651e-05,-0.0007789689698256552,7.25483987480402e-05,1.8341892427997664e-05,-1.2477478321670787e-06,-7.974736035976093e-07,-0.0,-0.0012312735198065639,1.8341892427997664e-05,0.00018787526641972363,0.0,-1.3101351896693814e-06,-5.259324098005891e-06,9.358108400192577e-06,-1.2477478321670787e-06,0.0,2.712495295043027e-08,-1.6543612251060553e-24,-0.0,1.8341892427997664e-05,-7.974736035976093e-07,-1.3101351896693814e-06,-1.6543612251060553e-24,5.6962399241911044e-08,-0.0,2.366695844102651e-05,-0.0,-5.259324098005891e-06,-0.0,-0.0,1.878330095905767e-07,47.0,30.0,0.01648457534611225,-0.0007535752956755459,-0.0011539121624082327,9.046171726367902e-06,1.71585452335421e-05,2.1448180632432923e-05,-0.0007535752956755459,7.015498704276979e-05,1.71585452335421e-05,-1.2061561847076518e-06,-7.460237156919902e-07,1.2950388945537785e-20,-0.0011539121624082327,1.71585452335421e-05,0.0001699689164524898,7.988179302859055e-21,-1.1833478765765904e-06,-4.596038706949912e-06,9.046171726367902e-06,-1.2061561847076518e-06,7.988179302859055e-21,2.6220787319175543e-08,-5.459392042849983e-23,-2.1521289222036584e-22,1.71585452335421e-05,-7.460237156919902e-07,-1.1833478765765904e-06,-5.459392042849983e-23,5.144990922190118e-08,-2.1038592176107813e-22,2.1448180632432923e-05,1.2950388945537785e-20,-4.596038706949912e-06,-2.1521289222036584e-22,-2.1038592176107813e-22,1.5848409873342462e-07,47.0,31.0,0.01598714292049408,-0.0007297853007912636,-0.0010836205910891294,8.754359441809356e-06,1.6086136383819394e-05,1.9498345864121802e-05,-0.0007297853007912636,6.791447958676144e-05,1.6086136383819394e-05,-1.167248001365806e-06,-6.993972192503861e-07,-0.0,-0.0010836205910891294,1.6086136383819394e-05,0.00015426889876835048,-5.293955920339377e-23,-1.0724090770963812e-06,-4.034140602016123e-06,8.754359441809356e-06,-1.167248001365806e-06,-5.293955920339377e-23,2.537495547016988e-08,3.308722450212111e-24,-0.0,1.6086136383819394e-05,-6.993972192503861e-07,-1.0724090770963812e-06,3.308722450212111e-24,4.662648223074939e-08,-0.0,1.9498345864121802e-05,-0.0,-4.034140602016123e-06,-0.0,-0.0,1.3447134961097618e-07,47.0,32.0,0.015518849715590477,-0.0007074517197906971,-0.001019562827423215,8.480786164000165e-06,1.5111218999663834e-05,1.777790384949185e-05,-0.0007074517197906971,6.581268826266751e-05,1.5111218999663834e-05,-1.1307714657959878e-06,-6.570094797098136e-07,-0.0,-0.001019562827423215,1.5111218999663834e-05,0.00014044543786440045,0.0,-9.749172704687226e-07,-3.55558086084784e-06,8.480786164000165e-06,-1.1307714657959878e-06,0.0,2.458198800070477e-08,0.0,-0.0,1.5111218999663834e-05,-6.570094797098136e-07,-9.749172704687226e-07,0.0,4.238771111886308e-08,-0.0,1.777790384949185e-05,-0.0,-3.55558086084784e-06,-0.0,-0.0,1.146961565723359e-07,47.0,33.0,0.01507721096277237,-0.0006864448077976704,-0.0009610226843506098,8.223792065109592e-06,1.422232344339136e-05,1.6254083675448783e-05,-0.0006864448077976704,6.383709842339158e-05,1.422232344339136e-05,-1.096505684472504e-06,-6.183618666000257e-07,-0.0,-0.0009610226843506098,1.422232344339136e-05,0.00012822620919905603,0.0,-8.8889521521196e-07,-3.1459517231269274e-06,8.223792065109592e-06,-1.096505684472504e-06,0.0,2.383707986552963e-08,0.0,-0.0,1.422232344339136e-05,-6.183618666000257e-07,-8.8889521521196e-07,0.0,3.8647616662501605e-08,-0.0,1.6254083675448783e-05,-0.0,-3.1459517231269274e-06,-0.0,-0.0,9.831099134771648e-08,47.0,34.0,0.014660012908279896,-0.0006666496628895402,-0.0009073842084035277,7.98191649664659e-06,1.340961898677051e-05,1.4899576854077168e-05,-0.0006666496628895402,6.197668699314818e-05,1.340961898677051e-05,-1.064255457094987e-06,-5.830269174111891e-07,-0.0,-0.0009073842084035277,1.340961898677051e-05,0.00011738495959434658,-2.6469779601696886e-23,-8.127041724037554e-07,-2.7936705464526312e-06,7.98191649664659e-06,-1.064255457094987e-06,-2.6469779601696886e-23,2.313598912451198e-08,1.6543612251060553e-24,-0.0,1.340961898677051e-05,-5.830269174111891e-07,-8.127041724037554e-07,1.6543612251060553e-24,3.533496339969133e-08,-0.0,1.4899576854077168e-05,-0.0,-2.7936705464526312e-06,-0.0,-0.0,8.465668344115329e-08,47.0,35.0,0.014265282079577446,-0.0006479643634520471,-0.0008581149741075933,7.75386160967173e-06,1.2664640053117182e-05,1.3691503227164503e-05,-0.0006479643634520471,6.02216568950098e-05,1.2664640053117182e-05,-1.0338482070437749e-06,-5.506365141627612e-07,-0.0,-0.0008581149741075933,1.2664640053117182e-05,0.00010773272515507415,0.0,-7.449788199664908e-07,-2.48936407842848e-06,7.75386160967173e-06,-1.0338482070437749e-06,0.0,2.2474960559293322e-08,0.0,-0.0,1.2664640053117182e-05,-5.506365141627612e-07,-7.449788199664908e-07,0.0,3.239038548485951e-08,-0.0,1.3691503227164503e-05,-0.0,-2.48936407842848e-06,-0.0,-0.0,7.321659722947516e-08,47.0,36.0,0.013891249895095825,-0.0006302981055341661,-0.0008127528708428144,7.538476438639918e-06,1.1980065210082103e-05,1.261059514945373e-05,-0.0006302981055341661,5.856330244569108e-05,1.1980065210082103e-05,-1.0051302297142684e-06,-5.208723905525403e-07,-0.0,-0.0008127528708428144,1.1980065210082103e-05,9.911079541780055e-05,0.0,-6.845751272521738e-07,-2.2253991573961684e-06,7.538476438639918e-06,-1.0051302297142684e-06,0.0,2.1850656395372425e-08,0.0,-0.0,1.1980065210082103e-05,-5.208723905525403e-07,-6.845751272521738e-07,0.0,2.9764137821075565e-08,-0.0,1.261059514945373e-05,-0.0,-2.2253991573961684e-06,-0.0,-0.0,6.358283144436427e-08,47.0,37.0,0.013536331243813038,-0.0006135698058642447,-0.0007708953926339746,7.334733709285501e-06,1.1349535270710476e-05,1.1640549018920865e-05,-0.0006135698058642447,5.699384564650245e-05,1.1349535270710476e-05,-9.779645324670128e-07,-4.934580601911875e-07,-5.293955920339377e-22,-0.0007708953926339746,1.1349535270710476e-05,9.13852418307215e-05,3.963203109039258e-23,-6.305297688413702e-07,-1.9955227799073327e-06,7.334733709285501e-06,-9.779645324670128e-07,3.963203109039258e-23,2.1260097682329615e-08,-1.927809997139604e-24,-3.823940992003052e-26,1.1349535270710476e-05,-4.934580601911875e-07,-6.305297688413702e-07,-1.927809997139604e-24,2.7414337466780125e-08,3.3087224502121107e-23,1.1640549018920865e-05,-5.293955920339377e-22,-1.9955227799073327e-06,-3.823940992003052e-26,3.3087224502121107e-23,5.5431186751775385e-08,47.0,38.0,0.01319909654557705,-0.0005977065884508193,-0.0007321905577555299,7.141714377212338e-06,1.0767507774289697e-05,1.0767507774289697e-05,-0.0005977065884508193,5.550632704398595e-05,1.0767507774289697e-05,-9.522286177343631e-07,-4.6815250698273303e-07,4.764560328305439e-22,-0.0007321905577555299,1.0767507774289697e-05,8.44424866954796e-05,-0.0,-5.820274395773595e-07,-1.794584704839508e-06,7.141714377212338e-06,-9.522286177343631e-07,-0.0,2.070062166126263e-08,8.271806125530277e-25,-8.271806125530277e-25,1.0767507774289697e-05,-4.6815250698273303e-07,-5.820274395773595e-07,8.271806125530277e-25,2.5305540773956636e-08,-2.6469779601696886e-23,1.0767507774289697e-05,4.764560328305439e-22,-1.794584704839508e-06,-8.271806125530277e-25,-2.6469779601696886e-23,4.850228663144662e-08,47.0,39.0,0.012878256849944592,-0.000582643027883023,-0.0006963295163586736,6.9585935307259206e-06,1.0229132385575213e-05,9.979641617974266e-06,-0.000582643027883023,5.409449295257218e-05,1.0229132385575213e-05,-9.278124935008236e-07,-4.4474489868662204e-07,8.761497048161669e-21,-0.0006963295163586736,1.0229132385575213e-05,7.81858034315519e-05,8.353319766577263e-21,-5.383753887144849e-07,-1.6183201978492434e-06,6.9585935307259206e-06,-9.278124935008236e-07,8.353319766577263e-21,2.016983735586564e-08,-9.887869731409662e-23,-1.4725766229779047e-22,1.0229132385575213e-05,-4.4474489868662204e-07,-5.383753887144849e-07,-9.887869731409662e-23,2.3407626059679387e-08,-9.26442286059391e-23,9.979641617974266e-06,8.761497048161669e-21,-1.6183201978492434e-06,-1.4725766229779047e-22,-9.26442286059391e-23,4.258737362761167e-08,47.0,40.0,0.012572645209729671,-0.0005683202180080116,-0.000663040264043957,6.784628567402251e-06,9.73015085037332e-06,9.266809684049804e-06,-0.0005683202180080116,5.2752708143088967e-05,9.73015085037332e-06,-9.046171385307389e-07,-4.230500110224966e-07,-2.6469779601696886e-23,-0.000663040264043957,9.73015085037332e-06,7.253248622873798e-05,-0.0,-4.989821036360809e-07,-1.4631805242970586e-06,6.784628567402251e-06,-9.046171385307389e-07,-0.0,1.9665590045292447e-08,-8.271806125530277e-25,4.1359030627651384e-25,9.73015085037332e-06,-4.230500110224966e-07,-4.989821036360809e-07,-8.271806125530277e-25,2.1694873453270702e-08,1.6543612251060553e-24,9.266809684049804e-06,-2.6469779601696886e-23,-1.4631805242970586e-06,4.1359030627651384e-25,1.6543612251060553e-24,3.751744870328366e-08,47.0,41.0,0.012281201779842377,-0.0005546847824007273,-0.0006320826360024512,6.619150099140825e-06,9.266809684049804e-06,8.620288099336904e-06,-0.0005546847824007273,5.147588308318518e-05,9.266809684049804e-06,-8.825533086564974e-07,-4.0290478864335455e-07,-1.3234889800848443e-22,-0.0006320826360024512,9.266809684049804e-06,6.741148536093533e-05,2.9235071551520346e-23,-4.633405126241996e-07,-1.326198230344744e-06,6.619150099140825e-06,-8.825533086564974e-07,2.9235071551520346e-23,1.918594172423127e-08,-1.0281225163821578e-24,-1.6155648239201564e-25,9.266809684049804e-06,-4.0290478864335455e-07,-4.633405126241996e-07,-1.0281225163821578e-24,2.0145238366353624e-08,8.271806125530277e-24,8.620288099336904e-06,-1.3234889800848443e-22,-1.326198230344744e-06,-1.6155648239201564e-25,8.271806125530277e-24,3.315495433753313e-08,47.0,42.0,0.012002963572740555,-0.000541688350494951,-0.0006032438832335174,6.461551038228208e-06,8.835795597406104e-06,8.032541700231377e-06,-0.000541688350494951,5.025941209169105e-05,8.835795597406104e-06,-8.615401725364791e-07,-3.8416501979554596e-07,-8.735027268559972e-22,-0.0006032438832335174,8.835795597406104e-06,6.27615736448206e-05,-0.0,-4.310144277042127e-07,-1.204881186822604e-06,6.461551038228208e-06,-8.615401725364791e-07,-0.0,1.8729133799411102e-08,0.0,0.0,8.835795597406104e-06,-3.8416501979554596e-07,-4.310144277042127e-07,0.0,1.8739758189667555e-08,4.218621124020441e-23,8.032541700231377e-06,-8.735027268559972e-22,-1.204881186822604e-06,0.0,4.218621124020441e-23,2.938734589008618e-08,47.0,43.0,0.011737054213881493,-0.000529287091922015,-0.0005763348308391869,6.3112825046118814e-06,8.43416819407139e-06,7.497038495785091e-06,-0.000529287091922015,4.909911876893602e-05,8.43416819407139e-06,-8.415043453169346e-07,-3.667029773168906e-07,-7.411538288475128e-22,-0.0005763348308391869,8.43416819407139e-06,5.852980029885657e-05,-1.0412610539231817e-21,-4.016270622742013e-07,-1.097127665161679e-06,6.3112825046118814e-06,-8.415043453169346e-07,-1.0412610539231817e-21,1.8293572878747e-08,2.6997388707770424e-23,7.110490065935501e-24,8.43416819407139e-06,-3.667029773168906e-07,-4.016270622742013e-07,2.6997388707770424e-23,1.7462046031369027e-08,1.2407709188295415e-23,7.497038495785091e-06,-7.411538288475128e-22,-1.097127665161679e-06,7.110490065935501e-24,1.2407709188295415e-23,2.6122085827751107e-08,47.0,44.0,0.011482669971883297,-0.0005174410180188715,-0.0005511872004717588,6.167844276205869e-06,8.05931631475687e-06,7.008101420069579e-06,-0.0005174410180188715,4.799119051313028e-05,8.05931631475687e-06,-8.223792633543781e-07,-3.504050596347952e-07,7.940933880509066e-23,-0.0005511872004717588,8.05931631475687e-06,5.467017399496399e-05,2.3709408566200194e-23,-3.748519361579383e-07,-1.0011573294832488e-06,6.167844276205869e-06,-8.223792633543781e-07,2.3709408566200194e-23,1.7877809455058014e-08,-1.6256611341713374e-25,-2.059247745518378e-26,8.05931631475687e-06,-3.504050596347952e-07,-3.748519361579383e-07,-1.6256611341713374e-25,1.6297910576668073e-08,-4.1359030627651384e-24,7.008101420069579e-06,7.940933880509066e-23,-1.0011573294832488e-06,-2.059247745518378e-26,-4.1359030627651384e-24,2.3282728633944316e-08,47.0,45.0,0.011239079758524895,-0.000506113632582128,-0.0005276504089124501,6.030781150911935e-06,7.708911653026007e-06,6.560775545949582e-06,-0.000506113632582128,4.6932167606428266e-05,7.708911653026007e-06,-8.041041610340471e-07,-3.35170057041978e-07,1.0587911840678754e-22,-0.0005276504089124501,7.708911653026007e-06,5.114266969030723e-05,-6.653878914648397e-23,-3.504050596347952e-07,-9.154570648206573e-07,6.030781150911935e-06,-8.041041610340471e-07,-6.653878914648397e-23,1.7480525471569308e-08,2.937433823901942e-24,3.6386805829378743e-25,7.708911653026007e-06,-3.35170057041978e-07,-3.504050596347952e-07,2.937433823901942e-24,1.5235002592817182e-08,-5.790264287871194e-24,6.560775545949582e-06,1.0587911840678754e-22,-9.154570648206573e-07,3.6386805829378743e-25,-5.790264287871194e-24,2.0805842382287665e-08,47.0,46.0,0.011005609296262264,-0.000495271640829742,-0.0005055897636339068,5.899677034904016e-06,7.380872830253793e-06,6.150727131171152e-06,-0.000495271640829742,4.591888136928901e-05,7.380872830253793e-06,-7.866236160225526e-07,-3.209075032373221e-07,2.3822801641527197e-22,-0.0005055897636339068,7.380872830253793e-06,4.7912300942698494e-05,-4.155729661668239e-23,-3.2803879435050476e-07,-8.387355592276435e-07,5.899677034904016e-06,-7.866236160225526e-07,-4.155729661668239e-23,1.710051300563009e-08,1.1117089360004053e-24,3.1389680143594735e-25,7.380872830253793e-06,-3.209075032373221e-07,-3.2803879435050476e-07,1.1117089360004053e-24,1.4262555581012748e-08,-1.075334796318936e-23,6.150727131171152e-06,2.3822801641527197e-22,-8.387355592276435e-07,3.1389680143594735e-25,-1.075334796318936e-23,1.863856802231112e-08,47.0,47.0,0.010781641118228436,-0.0004848844255320728,-0.0004848844255320728,5.774152214144124e-06,7.073336291796295e-06,5.774152214144124e-06,-0.0004848844255320728,4.4948428694624454e-05,7.073336291796295e-06,-7.698869239902706e-07,-3.0753636792724137e-07,7.940933880509066e-23,-0.0004848844255320728,7.073336291796295e-06,4.4948428694624454e-05,-0.0,-3.0753636792724137e-07,-7.698869239902706e-07,5.774152214144124e-06,-7.698869239902706e-07,-0.0,1.6736672492356774e-08,0.0,4.1359030627651384e-25,7.073336291796295e-06,-3.0753636792724137e-07,-3.0753636792724137e-07,0.0,1.3371145968221754e-08,-4.1359030627651384e-24,5.774152214144124e-06,7.940933880509066e-23,-7.698869239902706e-07,4.1359030627651384e-25,-4.1359030627651384e-24,1.6736672492356774e-08,47.0,48.0,0.010566607117652893,-0.0004749240179080516,-0.0004654255462810397,5.6538574426667765e-06,6.784628567402251e-06,5.427702944871271e-06,-0.0004749240179080516,4.4018146581947803e-05,6.784628567402251e-06,-7.538476438639918e-07,-2.949838631138846e-07,1.3234889800848443e-22,-0.0004654255462810397,6.784628567402251e-06,4.2224113713018596e-05,-1.8311790327571896e-23,-2.887076107072062e-07,-7.079612487359555e-07,5.6538574426667765e-06,-7.538476438639918e-07,-1.8311790327571896e-23,1.63879914083509e-08,1.252069674967409e-25,3.070292495660294e-25,6.784628567402251e-06,-2.949838631138846e-07,-2.887076107072062e-07,1.252069674967409e-25,1.255250481335679e-08,-5.790264287871194e-24,5.427702944871271e-06,1.3234889800848443e-22,-7.079612487359555e-07,3.070292495660294e-25,-5.790264287871194e-24,1.5063005065485413e-08,47.0,49.0,0.010359982028603554,-0.0004653646028600633,-0.000447115016868338,5.53847257833695e-06,6.513243533845525e-06,5.108426194055937e-06,-0.0004653646028600633,4.312559758545831e-05,6.513243533845525e-06,-7.384629725493141e-07,-2.8318450517872407e-07,7.940933880509066e-23,-0.000447115016868338,6.513243533845525e-06,3.971563637605868e-05,-1.722391169622686e-23,-2.7138514724356355e-07,-6.521395334857516e-07,5.53847257833695e-06,-7.384629725493141e-07,-1.722391169622686e-23,1.60535424953423e-08,1.1769454648870804e-25,2.828204395875741e-25,6.513243533845525e-06,-2.8318450517872407e-07,-2.7138514724356355e-07,1.1769454648870804e-25,1.1799354382446836e-08,-3.308722450212111e-24,5.108426194055937e-06,7.940933880509066e-23,-6.521395334857516e-07,2.828204395875741e-25,-3.308722450212111e-24,1.3586240577012632e-08,47.0,50.0,0.010161283425986767,-0.00045618246076628566,-0.0004298642452340573,5.427702944871271e-06,6.257822406041669e-06,4.81370943816728e-06,-0.00045618246076628566,4.226852615829557e-05,6.257822406041669e-06,-7.236937449306424e-07,-2.7207923380956345e-07,-2.6469779601696886e-23,-0.0004298642452340573,6.257822406041669e-06,3.7402031011879444e-05,1.622054531137996e-23,-2.554213267558225e-07,-6.0171367977091e-07,5.427702944871271e-06,-7.236937449306424e-07,1.622054531137996e-23,1.573247310204806e-08,-9.379519678260964e-25,-5.415655839049016e-26,6.257822406041669e-06,-2.7207923380956345e-07,-2.554213267558225e-07,-9.379519678260964e-25,1.1105274921874297e-08,1.6543612251060553e-24,4.81370943816728e-06,-2.6469779601696886e-23,-6.0171367977091e-07,-5.415655839049016e-26,1.6543612251060553e-24,1.227987134200248e-08,47.0,51.0,0.009970063343644142,-0.0004473557055462152,-0.0004135930212214589,5.32127751284861e-06,6.017136911395937e-06,4.541235284705181e-06,-0.0004473557055462152,4.144486229051836e-05,6.017136911395937e-06,-7.095036380633246e-07,-2.61614644614383e-07,1.1911400820763599e-22,-0.0004135930212214589,6.017136911395937e-06,3.526473301462829e-05,-0.0,-2.406854662240221e-07,-5.560696081374772e-07,5.32127751284861e-06,-7.095036380633246e-07,-0.0,1.5423992749674653e-08,0.0,0.0,6.017136911395937e-06,-2.61614644614383e-07,-2.406854662240221e-07,0.0,1.0464585642466773e-08,-4.1359030627651384e-24,4.541235284705181e-06,1.1911400820763599e-22,-5.560696081374772e-07,0.0,-4.1359030627651384e-24,1.1121392695656596e-08,47.0,52.0,0.009785907343029976,-0.00043886405183002353,-0.0003982284979429096,5.218945261731278e-06,5.790075192635413e-06,4.288944637664827e-06,-0.00043886405183002353,4.0652685129316524e-05,5.790075192635413e-06,-6.958593417039083e-07,-2.517423922654416e-07,-3.970466940254533e-23,-0.0003982284979429096,5.790075192635413e-06,3.3287255064351484e-05,-0.0,-2.270617613930881e-07,-5.146733315086749e-07,5.218945261731278e-06,-6.958593417039083e-07,-0.0,1.51273766846316e-08,8.271806125530277e-25,-2.0679515313825692e-25,5.790075192635413e-06,-2.517423922654416e-07,-2.270617613930881e-07,8.271806125530277e-25,9.872250572584562e-09,2.0679515313825692e-24,4.288944637664827e-06,-3.970466940254533e-23,-5.146733315086749e-07,-2.0679515313825692e-25,2.0679515313825692e-24,1.0091634194964172e-08,47.0,53.0,0.009608430787920952,-0.0004306888149585575,-0.0003837045805994421,5.120474725117674e-06,5.575627710641129e-06,4.0550021367380396e-06,-0.0004306888149585575,3.989022661698982e-05,5.575627710641129e-06,-6.827299330325332e-07,-2.424185936433787e-07,1.0587911840678754e-22,-0.0003837045805994421,5.575627710641129e-06,3.1454936106456444e-05,-1.3641404024805124e-23,-2.1444722619889944e-07,-4.770590749103576e-07,5.120474725117674e-06,-6.827299330325332e-07,-1.3641404024805124e-23,1.4841955220390446e-08,9.300165941133486e-26,2.068913941686939e-25,5.575627710641129e-06,-2.424185936433787e-07,-2.1444722619889944e-07,9.300165941133486e-26,9.323792404813958e-09,-4.549493369041652e-24,4.0550021367380396e-06,1.0587911840678754e-22,-4.770590749103576e-07,2.068913941686939e-25,-4.549493369041652e-24,9.17421250079542e-09,47.0,54.0,0.009437276981770992,-0.00042281259084120393,-0.0003699609951581806,5.025650807510829e-06,5.372877694753697e-06,3.8377697819669265e-06,-0.00042281259084120393,3.915584602509625e-05,5.372877694753697e-06,-6.700867629660934e-07,-2.3360337308986345e-07,2.1969917069408415e-21,-0.0003699609951581806,5.372877694753697e-06,2.9754692150163464e-05,2.7872727195994404e-21,-2.027501011525601e-07,-4.4281958366809704e-07,5.025650807510829e-06,-6.700867629660934e-07,2.7872727195994404e-21,1.4567103967522144e-08,-1.8165448741044347e-23,-4.189474606838697e-23,5.372877694753697e-06,-2.3360337308986345e-07,-2.027501011525601e-07,-1.8165448741044347e-23,8.815221441693666e-09,-1.075334796318936e-23,3.8377697819669265e-06,2.1969917069408415e-21,-4.4281958366809704e-07,-4.189474606838697e-23,-1.075334796318936e-23,8.3550864005133e-09,47.0,55.0,0.00927211344242096,-0.0004152192850597203,-0.00035694288089871407,4.934275239065755e-06,5.1809893193421885e-06,3.6357819226395804e-06,-0.0004152192850597203,3.8448019040515646e-05,5.1809893193421885e-06,-6.579033993148187e-07,-2.252604076602438e-07,1.5881867761018131e-22,-0.00035694288089871407,5.1809893193421885e-06,2.8174832550575957e-05,1.2218885864299903e-23,-1.9188848909834633e-07,-4.1159796637657564e-07,4.934275239065755e-06,-6.579033993148187e-07,1.2218885864299903e-23,1.4302247386410727e-08,-8.321836670215525e-26,-3.852973168726965e-25,5.1809893193421885e-06,-2.252604076602438e-07,-1.9188848909834633e-07,-8.321836670215525e-26,8.342977864117529e-09,-5.37667398159468e-24,3.6357819226395804e-06,1.5881867761018131e-22,-4.1159796637657564e-07,-3.852973168726965e-25,-5.37667398159468e-24,7.62218466121567e-09,47.0,56.0,0.00911263283342123,-0.0004078939091414213,-0.00034460003371350467,4.846163392357994e-06,4.9991999730991665e-06,3.4477243389119394e-06,-0.0004078939091414213,3.776532685151324e-05,4.9991999730991665e-06,-6.461551151915046e-07,-2.1735652921961446e-07,1.1911400820763599e-22,-0.00034460003371350467,4.9991999730991665e-06,2.670488720468711e-05,-0.0,-1.8178909044763714e-07,-3.8308047578539117e-07,4.846163392357994e-06,-6.461551151915046e-07,-0.0,1.4046850793647536e-08,-4.1359030627651384e-25,2.0679515313825692e-25,4.9991999730991665e-06,-2.1735652921961446e-07,-1.8178909044763714e-07,-4.1359030627651384e-25,7.903873999737243e-09,-4.963083675318166e-24,3.4477243389119394e-06,1.1911400820763599e-22,-3.8308047578539117e-07,2.0679515313825692e-25,-4.963083675318166e-24,6.9650996081804806e-09,47.0,57.0,0.008958544582128525,-0.0004008225805591792,-0.0003328865277580917,4.761142918141559e-06,4.826813892577775e-06,3.2724162792874267e-06,-0.0004008225805591792,3.710645978571847e-05,4.826813892577775e-06,-6.348190595417691e-07,-2.0986146864743205e-07,-3.970466940254533e-23,-0.0003328865277580917,4.826813892577775e-06,2.5335461032227613e-05,-2.1975009513650415e-23,-1.7238620841908414e-07,-3.569908528788801e-07,4.761142918141559e-06,-6.348190595417691e-07,-2.1975009513650415e-23,1.380041414478228e-08,5.631114952901702e-25,3.0964020659898792e-25,4.826813892577775e-06,-2.0986146864743205e-07,-1.7238620841908414e-07,5.631114952901702e-25,7.495052578576633e-09,1.6543612251060553e-24,3.2724162792874267e-06,-3.970466940254533e-23,-3.569908528788801e-07,3.0964020659898792e-25,1.6543612251060553e-24,6.3748366585514304e-09,47.0,58.0,0.008809580467641354,-0.0003939922316931188,-0.0003217603371012956,4.679054200096289e-06,4.66319306724472e-06,3.1087954539543716e-06,-0.0003939922316931188,3.647018820629455e-05,4.66319306724472e-06,-6.238739160835394e-07,-2.0274752898785664e-07,-3.970466940254533e-23,-0.0003217603371012956,4.66319306724472e-06,2.405810300842859e-05,-0.0,-1.636208111222004e-07,-3.3308521096842014e-07,4.679054200096289e-06,-6.238739160835394e-07,-0.0,1.3562476475215135e-08,4.1359030627651384e-25,-4.1359030627651384e-25,4.66319306724472e-06,-2.0274752898785664e-07,-1.636208111222004e-07,4.1359030627651384e-25,7.113948097270395e-09,1.2407709188295415e-24,3.1087954539543716e-06,-3.970466940254533e-23,-3.3308521096842014e-07,-4.1359030627651384e-25,1.2407709188295415e-24,5.843600270338811e-09,47.0,59.0,0.008665489964187145,-0.0003873908135574311,-0.0003111827827524394,4.599748081091093e-06,4.507753146754112e-06,2.9559039376181317e-06,-0.0003873908135574311,3.585536978789605e-05,4.507753146754112e-06,-6.132997896202141e-07,-1.9598927281094802e-07,-1.4558378780933287e-22,-0.0003111827827524394,4.507753146754112e-06,2.2865204300615005e-05,1.983240334164135e-23,-1.5543976417120575e-07,-3.1114777243601566e-07,4.599748081091093e-06,-6.132997896202141e-07,1.983240334164135e-23,1.3332603465698867e-08,-5.484127979546068e-25,-2.6987767267132282e-25,4.507753146754112e-06,-1.9598927281094802e-07,-1.5543976417120575e-07,-5.484127979546068e-25,6.758250847838099e-09,4.756288522179909e-24,2.9559039376181317e-06,-1.4558378780933287e-22,-3.1114777243601566e-07,-2.6987767267132282e-25,4.756288522179909e-24,5.36461675082478e-09,47.0,60.0,0.008526036515831947,-0.0003810069465544075,-0.0003011183871421963,4.523085863183951e-06,4.359957983979257e-06,2.8128761186962947e-06,-0.0003810069465544075,3.52609422407113e-05,4.359957983979257e-06,-6.030780923538259e-07,-1.8956339431497327e-07,1.402898318889935e-21,-0.0003011183871421963,4.359957983979257e-06,2.174989458580967e-05,1.826165588201682e-21,-1.477951911965647e-07,-2.9098720233378117e-07,4.523085863183951e-06,-6.030780923538259e-07,1.826165588201682e-21,1.3110393659587771e-08,-4.67845437767492e-24,-2.725137667570262e-23,4.359957983979257e-06,-1.8956339431497327e-07,-1.477951911965647e-07,-4.67845437767492e-24,6.425878051885547e-09,-5.37667398159468e-24,2.8128761186962947e-06,1.402898318889935e-21,-2.9098720233378117e-07,-2.725137667570262e-23,-5.37667398159468e-24,4.9319863748564785e-09,47.0,61.0,0.008391001261770725,-0.0003748300950974226,-0.00029153452487662435,4.448937033885159e-06,4.219314178044442e-06,2.678929831745336e-06,-0.0003748300950974226,3.468590148258954e-05,4.219314178044442e-06,-5.931916007284599e-07,-1.8344844932016713e-07,2.6469779601696886e-23,-0.00029153452487662435,4.219314178044442e-06,2.070596929115709e-05,-0.0,-1.4064380593481474e-07,-2.7243353883932286e-07,4.448937033885159e-06,-5.931916007284599e-07,-0.0,1.2895469581053476e-08,0.0,0.0,4.219314178044442e-06,-1.8344844932016713e-07,-1.4064380593481474e-07,0.0,6.114948103430606e-09,-6.203854594147708e-25,2.678929831745336e-06,2.6469779601696886e-23,-2.7243353883932286e-07,0.0,-6.203854594147708e-25,4.540559039867276e-09,47.0,62.0,0.00826017651706934,-0.0003688503638841212,-0.00028240104438737035,4.377179720904678e-06,4.085367891093483e-06,2.553354988776846e-06,-0.0003688503638841212,3.412931619095616e-05,4.085367891093483e-06,-5.83624000682903e-07,-1.7762468473847548e-07,6.617444900424221e-23,-0.00028240104438737035,4.085367891093483e-06,1.97278059204109e-05,-0.0,-1.339464859029249e-07,-2.553354931933427e-07,4.377179720904678e-06,-5.83624000682903e-07,-0.0,1.268747773508494e-08,0.0,0.0,4.085367891093483e-06,-1.7762468473847548e-07,-1.339464859029249e-07,0.0,5.82376014079955e-09,-2.481541837659083e-24,2.553354988776846e-06,6.617444900424221e-23,-2.553354931933427e-07,0.0,-2.481541837659083e-24,4.185827684466403e-09,47.0,63.0,0.008133367635309696,-0.0003630584105849266,-0.0002736901806201786,4.307700692152139e-06,3.957700300816214e-06,2.4355076675419696e-06,-0.0003630584105849266,3.3590309612918645e-05,3.957700300816214e-06,-5.743601150243194e-07,-1.7207391067586286e-07,1.1514354126738145e-21,-0.0002736901806201786,3.957700300816214e-06,1.8810304027283564e-05,1.761612582834693e-21,-1.2766774659667135e-07,-2.3955814754117455e-07,4.307700692152139e-06,-5.743601150243194e-07,1.761612582834693e-21,1.2486089495666874e-08,-1.1956271702369113e-23,-2.243497064165763e-23,3.957700300816214e-06,-1.7207391067586286e-07,-1.2766774659667135e-07,-1.1956271702369113e-23,5.550771398077359e-09,-3.7223127564886245e-24,2.4355076675419696e-06,1.1514354126738145e-21,-2.3955814754117455e-07,-2.243497064165763e-23,-3.7223127564886245e-24,3.863840802864615e-09,47.0,64.0,0.00801039393991232,-0.00035744556225836277,-0.00026537623489275575,4.240393082000082e-06,3.83592487196438e-06,2.3248028355737915e-06,-0.00035744556225836277,3.3068070479203016e-05,3.83592487196438e-06,-5.653857328979939e-07,-1.667793299020559e-07,-7.279189390466644e-23,-0.00026537623489275575,3.83592487196438e-06,1.7948834283743054e-05,-0.0,-1.2177538621926942e-07,-2.2498092278055992e-07,4.240393082000082e-06,-5.653857328979939e-07,-0.0,1.2290994000352384e-08,0.0,0.0,3.83592487196438e-06,-1.667793299020559e-07,-1.2177538621926942e-07,0.0,5.294582106074586e-09,2.481541837659083e-24,2.3248028355737915e-06,-7.279189390466644e-23,-2.2498092278055992e-07,0.0,2.481541837659083e-24,3.5711258394854895e-09,48.0,3.0,0.10143140703439713,-0.006122448947280645,-0.06122449040412903,8.50340147735551e-05,0.0012755101779475808,0.010416666977107525,-0.006122448947280645,0.0006117572193033993,0.0012755101779475808,-1.1091393389506266e-05,-5.427702853921801e-05,-2.0057740190981832e-18,-0.06122449040412903,0.0012755101779475808,0.16539116203784943,-2.1224207284843325e-20,-0.0012755101779475808,-0.0625,8.50340147735551e-05,-1.1091393389506266e-05,-2.1224207284843325e-20,2.3598708764893672e-07,-1.120888295042956e-22,1.1330201427281394e-20,0.0012755101779475808,-5.427702853921801e-05,-0.0012755101779475808,-1.120888295042956e-22,5.427702853921801e-05,1.1384122811097797e-18,0.010416666977107525,-2.0057740190981832e-18,-0.0625,1.1330201427281394e-20,1.1384122811097797e-18,0.03125,48.0,4.0,0.08473639190196991,-0.00478316331282258,-0.03985969349741936,6.377550744218752e-05,0.0007653061184100807,0.0052083334885537624,-0.00478316331282258,0.0004669594345614314,0.0007653061184100807,-8.318545042129699e-06,-3.256621857872233e-05,-2.2768245622195593e-18,-0.03985969349741936,0.0007653061184100807,0.06303146481513977,-1.4625688018340375e-19,-0.0005102040595375001,-0.015625,6.377550744218752e-05,-8.318545042129699e-06,-1.4625688018340375e-19,1.7699031218398886e-07,1.1632514130743218e-21,3.6255920784264475e-20,0.0007653061184100807,-3.256621857872233e-05,-0.0005102040595375001,1.1632514130743218e-21,2.1710811779485084e-05,2.710505431213761e-20,0.0052083334885537624,-2.2768245622195593e-18,-0.015625,3.6255920784264475e-20,2.710505431213761e-20,0.0052083334885537624,48.0,5.0,0.07280611991882324,-0.0039285714738070965,-0.02806122414767742,5.10204081365373e-05,0.0005102040595375001,0.0029761905316263437,-0.0039285714738070965,0.0003779097169172019,0.0005102040595375001,-6.654835942754289e-06,-2.1710811779485084e-05,2.981555974335137e-19,-0.02806122414767742,0.0005102040595375001,0.031887754797935486,1.1234225858005368e-20,-0.00025510202976875007,-0.0059523810632526875,5.10204081365373e-05,-6.654835942754289e-06,1.1234225858005368e-20,1.4159225258936203e-07,-3.7664028866790235e-22,-4.6214743391793e-22,0.0005102040595375001,-2.1710811779485084e-05,-0.00025510202976875007,-3.7664028866790235e-22,1.0855405889742542e-05,-1.5585406229479126e-19,0.0029761905316263437,2.981555974335137e-19,-0.0059523810632526875,-4.6214743391793e-22,-1.5585406229479126e-19,0.0014880952658131719,48.0,6.0,0.06383523344993591,-0.0033345480915158987,-0.020840926095843315,4.251700738677755e-05,0.00036443150020204484,0.0018601190531626344,-0.0033345480915158987,0.00031750937341712415,0.00036443150020204484,-5.545696694753133e-06,-1.550772321934346e-05,1.3552527156068805e-19,-0.020840926095843315,0.00036443150020204484,0.018567025661468506,-1.8319507633900816e-20,-0.00014577258843928576,-0.0027901786379516125,4.251700738677755e-05,-5.545696694753133e-06,-1.8319507633900816e-20,1.1799354382446836e-07,4.814251749576142e-22,8.275952126012629e-22,0.00036443150020204484,-1.550772321934346e-05,-0.00014577258843928576,4.814251749576142e-22,6.203089014888974e-06,-6.776263578034403e-20,0.0018601190531626344,1.3552527156068805e-19,-0.0027901786379516125,8.275952126012629e-22,-6.776263578034403e-20,0.0005580357392318547,48.0,7.0,0.056838151067495346,-0.0028972302097827196,-0.01609572395682335,3.644314710982144e-05,0.000273323617875576,0.0012400794075801969,-0.0028972302097827196,0.0002738124458119273,0.000273323617875576,-4.7534540499327704e-06,-1.1630791959760245e-05,-2.574980159653073e-19,-0.01609572395682335,0.000273323617875576,0.011813653632998466,-2.4696532166169073e-20,-9.110787505051121e-05,-0.0014880952658131719,3.644314710982144e-05,-4.7534540499327704e-06,-2.4696532166169073e-20,1.0113732429317679e-07,2.8302915640587748e-22,2.5480692924520808e-21,0.000273323617875576,-1.1630791959760245e-05,-9.110787505051121e-05,2.8302915640587748e-22,3.876930804835865e-06,3.3881317890172014e-20,0.0012400794075801969,-2.574980159653073e-19,-0.0014880952658131719,2.5480692924520808e-21,3.3881317890172014e-20,0.00024801588733680546,48.0,8.0,0.05122590810060501,-0.0025616497732698917,-0.012808248400688171,3.188775372109376e-05,0.00021258502965793014,0.0008680555620230734,-0.0025616497732698917,0.00024071666121017188,0.00021258502965793014,-4.1592725210648496e-06,-9.046171726367902e-06,-1.0164395367051604e-19,-0.012808248400688171,0.00021258502965793014,0.007999776862561703,-1.3098843631684045e-20,-6.073858094168827e-05,-0.0008680555620230734,3.188775372109376e-05,-4.1592725210648496e-06,-1.3098843631684045e-20,8.849515609199443e-08,6.089376992848207e-23,1.6662232697398785e-21,0.00021258502965793014,-9.046171726367902e-06,-6.073858094168827e-05,6.089376992848207e-23,2.5846204607660184e-06,1.1011428314305904e-20,0.0008680555620230734,-1.0164395367051604e-19,-0.0008680555620230734,1.6662232697398785e-21,1.1011428314305904e-20,0.00012400794366840273,48.0,9.0,0.04662354663014412,-0.002295918297022581,-0.01043599285185337,2.8344671591185033e-05,0.0001700680295471102,0.0006313131307251751,-0.002295918297022581,0.00021477446716744453,0.0001700680295471102,-3.6971309782529715e-06,-7.236937108245911e-06,5.421010862427522e-20,-0.01043599285185337,0.0001700680295471102,0.005675376392900944,1.179300857610803e-21,-4.251700738677755e-05,-0.0005411255406215787,2.8344671591185033e-05,-3.6971309782529715e-06,1.179300857610803e-21,7.866236018116979e-08,-8.50276503482854e-23,6.96650386029876e-23,0.0001700680295471102,-7.236937108245911e-06,-4.251700738677755e-05,-8.50276503482854e-23,1.8092342770614778e-06,-1.0164395367051604e-20,0.0006313131307251751,5.421010862427522e-20,-0.0005411255406215787,6.96650386029876e-23,-1.0164395367051604e-20,6.764069257769734e-05,48.0,10.0,0.04278061166405678,-0.0020802412182092667,-0.00866767205297947,2.551020406826865e-05,0.00013914656301494688,0.0004734848625957966,-0.0020802412182092667,0.0001938891364261508,0.00013914656301494688,-3.3274179713771446e-06,-5.921130650676787e-06,1.9312351197398048e-19,-0.00866767205297947,0.00013914656301494688,0.004175202455371618,2.3912607283538887e-20,-3.092145925620571e-05,-0.00035511364694684744,2.551020406826865e-05,-3.3274179713771446e-06,2.3912607283538887e-20,7.079612629468102e-08,-2.768455218944524e-22,-1.6983459887230657e-21,0.00013914656301494688,-5.921130650676787e-06,-3.092145925620571e-05,-2.768455218944524e-22,1.3158067986296373e-06,-2.329340604949326e-20,0.0004734848625957966,1.9312351197398048e-19,-0.00035511364694684744,-1.6983459887230657e-21,-2.329340604949326e-20,3.9457070670323446e-05,48.0,11.0,0.03952327370643616,-0.0019016697769984603,-0.007314114365726709,2.319109444215428e-05,0.00011595547402976081,0.0003642191004473716,-0.0019016697769984603,0.00017671141540631652,0.00011595547402976081,-3.0249254905356793e-06,-4.934275239065755e-06,-1.1858461261560205e-19,-0.007314114365726709,0.00011595547402976081,0.0031625120900571346,-1.6518302463020992e-20,-2.319109444215428e-05,-0.0002428127481834963,2.319109444215428e-05,-3.0249254905356793e-06,-1.6518302463020992e-20,6.436011545929432e-08,1.5152082124634224e-23,1.5270228686449472e-21,0.00011595547402976081,-4.934275239065755e-06,-2.319109444215428e-05,1.5152082124634224e-23,9.868550705505186e-07,6.776263578034403e-21,0.0003642191004473716,-1.1858461261560205e-19,-0.0002428127481834963,1.5270228686449472e-21,6.776263578034403e-21,2.428127481834963e-05,48.0,12.0,0.03672706335783005,-0.0017513736383989453,-0.0062549058347940445,2.1258503693388775e-05,9.811617201194167e-05,0.0002861721732188016,-0.0017513736383989453,0.00016233339556492865,9.811617201194167e-05,-2.7728483473765664e-06,-4.175155936536612e-06,-1.9820570965750628e-19,-0.0062549058347940445,9.811617201194167e-05,0.002453647553920746,-1.6557968358332323e-20,-1.783930383680854e-05,-0.00017170330102089792,2.1258503693388775e-05,-2.7728483473765664e-06,-1.6557968358332323e-20,5.899677191223418e-08,1.262726243108163e-22,1.128169847229606e-21,9.811617201194167e-05,-4.175155936536612e-06,-1.783930383680854e-05,1.262726243108163e-22,7.591193025291432e-07,2.3505164286306834e-20,0.0002861721732188016,-1.9820570965750628e-19,-0.00017170330102089792,1.128169847229606e-21,2.3505164286306834e-20,1.5609390175086446e-05,48.0,13.0,0.03430048003792763,-0.001623121788725257,-0.005410405807197094,1.9623234038590454e-05,8.409957081312314e-05,0.00022893772984389216,-0.001623121788725257,0.00015012150106485933,8.409957081312314e-05,-2.5595522856747266e-06,-3.5787052183877677e-06,1.6940658945086007e-21,-0.005410405807197094,8.409957081312314e-05,0.001942360308021307,7.684507385746648e-22,-1.4016595741850324e-05,-0.00012487512140069157,1.9623234038590454e-05,-2.5595522856747266e-06,7.684507385746648e-22,5.4458556775216493e-08,-8.709659268896492e-23,1.0908751037163002e-22,8.409957081312314e-05,-3.5787052183877677e-06,-1.4016595741850324e-05,-8.709659268896492e-23,5.964508886791009e-07,-2.0117032497289633e-21,0.00022893772984389216,1.6940658945086007e-21,-0.00012487512140069157,1.0908751037163002e-22,-2.0117032497289633e-21,1.0406260116724297e-05,48.0,14.0,0.032174743711948395,-0.0015123906778171659,-0.004726220853626728,1.822157355491072e-05,7.288629421964288e-05,0.00018601190822664648,-0.0015123906778171659,0.0001396200677845627,7.288629421964288e-05,-2.3767270249663852e-06,-3.101544507444487e-06,6.098637220230962e-20,-0.004726220853626728,7.288629421964288e-05,0.001564164413139224,8.276255452497017e-21,-1.121327659348026e-05,-9.300595411332324e-05,1.822157355491072e-05,-2.3767270249663852e-06,8.276255452497017e-21,5.0568662146588395e-08,-3.849295696402051e-23,-5.4036108678264635e-22,7.288629421964288e-05,-3.101544507444487e-06,-1.121327659348026e-05,-3.849295696402051e-23,4.771607109432807e-07,-5.293955920339377e-21,0.00018601190822664648,6.098637220230962e-20,-9.300595411332324e-05,-5.4036108678264635e-22,-5.293955920339377e-21,7.15430405762163e-06,48.0,15.0,0.030297160148620605,-0.001415816368535161,-0.0041641658172011375,1.70068033185089e-05,6.377550744218752e-05,0.00015318627993110567,-0.001415816368535161,0.0001304929901380092,6.377550744218752e-05,-2.218278723375988e-06,-2.7138514724356355e-06,-4.573977915173222e-20,-0.0041641658172011375,6.377550744218752e-05,0.0012783273123204708,-1.2486434325949302e-20,-9.11078677745536e-06,-7.070136052789167e-05,1.70068033185089e-05,-2.218278723375988e-06,-1.2486434325949302e-20,4.7197417529787344e-08,1.2688375800953464e-22,6.125926243873417e-22,6.377550744218752e-05,-2.7138514724356355e-06,-9.11078677745536e-06,1.2688375800953464e-22,3.8769306343056087e-07,2.329340604949326e-21,0.00015318627993110567,-4.573977915173222e-20,-7.070136052789167e-05,6.125926243873417e-22,2.329340604949326e-21,5.050097115599783e-06,48.0,16.0,0.028626659885048866,-0.0013308448251336813,-0.0036967911291867495,1.594387686054688e-05,5.6272507208632305e-05,0.0001276552357012406,-0.0013308448251336813,0.00012248684652149677,5.6272507208632305e-05,-2.0796362605324248e-06,-2.394574948993977e-06,-7.623296525288703e-21,-0.0036967911291867495,5.6272507208632305e-05,0.001058235764503479,-4.038467002720074e-21,-7.503001143049914e-06,-5.470938413054682e-05,1.594387686054688e-05,-2.0796362605324248e-06,-4.038467002720074e-21,4.4247578045997216e-08,7.238637522317214e-23,1.4254432567417804e-22,5.6272507208632305e-05,-2.394574948993977e-06,-7.503001143049914e-06,7.238637522317214e-23,3.192766371284961e-07,-4.764560328305439e-22,0.0001276552357012406,-7.623296525288703e-21,-5.470938413054682e-05,1.4254432567417804e-22,-4.764560328305439e-22,3.647292260211543e-06,48.0,17.0,0.027130763977766037,-0.001255502225831151,-0.0033039532136172056,1.5006002286099829e-05,5.002000762033276e-05,0.0001074991378118284,-0.001255502225831151,0.00011540693958522752,5.002000762033276e-05,-1.957304675670457e-06,-2.128510914189974e-06,-2.541098841762901e-20,-0.0033039532136172056,5.002000762033276e-05,0.0008859903900884092,-1.095150780309696e-21,-6.252500952541595e-06,-4.29996543971356e-05,1.5006002286099829e-05,-1.957304675670457e-06,-1.095150780309696e-21,4.1644778292493356e-08,-1.4872678636057615e-23,9.938770823546867e-23,5.002000762033276e-05,-2.128510914189974e-06,-6.252500952541595e-06,-1.4872678636057615e-23,2.6606386427374673e-07,2.4087499437544166e-21,0.0001074991378118284,-2.541098841762901e-20,-4.29996543971356e-05,9.938770823546867e-23,2.4087499437544166e-21,2.687478399820975e-06,48.0,18.0,0.02578345686197281,-0.0011882385006174445,-0.0029705960769206285,1.4172335795592517e-05,4.475474270293489e-05,9.137426968663931e-05,-0.0011882385006174445,0.00010910124547081068,4.475474270293489e-05,-1.8485654891264858e-06,-1.9044572354687261e-06,1.6093625997831706e-20,-0.0029705960769206285,4.475474270293489e-05,0.0007492442964576185,2.8080356395990533e-21,-5.26526400790317e-06,-3.426535113248974e-05,1.4172335795592517e-05,-1.8485654891264858e-06,2.8080356395990533e-21,3.9331180090584894e-08,-2.387761422157685e-23,-1.2470618636676256e-22,4.475474270293489e-05,-1.9044572354687261e-06,-5.26526400790317e-06,-2.387761422157685e-23,2.2405379240808543e-07,-1.0058516248644817e-21,9.137426968663931e-05,1.6093625997831706e-20,-3.426535113248974e-05,-1.2470618636676256e-22,-1.0058516248644817e-21,2.015608970395988e-06,48.0,19.0,0.024563640356063843,-0.0011278195306658745,-0.0026852847076952457,1.3426422810880467e-05,4.02792684326414e-05,7.832080154912546e-05,-0.0011278195306658745,0.00010344928887207061,4.02792684326414e-05,-1.75127263446484e-06,-1.7140114323410671e-06,-2.159934015498466e-20,-0.0026852847076952457,4.02792684326414e-05,0.0006392907816916704,-4.3337054540193654e-21,-4.475474270293489e-06,-2.7642636268865317e-05,1.3426422810880467e-05,-1.75127263446484e-06,-4.3337054540193654e-21,3.7261120411358206e-08,1.24566461745508e-23,2.0144285180318995e-22,4.02792684326414e-05,-1.7140114323410671e-06,-4.475474270293489e-06,1.24566461745508e-23,1.9044571786253073e-07,1.0852609636695723e-21,7.832080154912546e-05,-2.159934015498466e-20,-2.7642636268865317e-05,2.0144285180318995e-22,1.0852609636695723e-21,1.5357020402007038e-06,48.0,20.0,0.023454036563634872,-0.0010732507798820734,-0.0024392062332481146,1.2755102034134325e-05,3.644314710982144e-05,6.764069257769734e-05,-0.0010732507798820734,9.835435776039958e-05,3.644314710982144e-05,-1.6637089856885723e-06,-1.5507722537222435e-06,8.046812998915853e-21,-0.0024392062332481146,3.644314710982144e-05,0.0005498682148754597,2.266361989244315e-21,-3.836120868072612e-06,-2.2546897525899112e-05,1.2755102034134325e-05,-1.6637089856885723e-06,2.266361989244315e-21,3.539806314734051e-08,-2.4534612293324738e-23,-9.502487828926404e-23,3.644314710982144e-05,-1.5507722537222435e-06,-3.836120868072612e-06,-2.4534612293324738e-23,1.6323919282967836e-07,-3.441071348220595e-22,6.764069257769734e-05,8.046812998915853e-21,-2.2546897525899112e-05,-9.502487828926404e-23,-3.441071348220595e-22,1.186678787234996e-06,48.0,21.0,0.02244035340845585,-0.001023721182718873,-0.002225480740889907,1.2147716006438714e-05,3.3130134397652e-05,5.881799370399676e-05,-0.001023721182718873,9.373795182909817e-05,3.3130134397652e-05,-1.584484721206536e-06,-1.4097929579293123e-06,1.0164395367051604e-20,-0.002225480740889907,3.3130134397652e-05,0.00047639416879974306,2.97548867118503e-22,-3.3130136216641404e-06,-1.8574102796264924e-05,1.2147716006438714e-05,-1.584484721206536e-06,2.97548867118503e-22,3.371244261529682e-08,2.482413055642809e-23,-4.58296631497199e-23,3.3130134397652e-05,-1.4097929579293123e-06,-3.3130136216641404e-06,2.482413055642809e-23,1.4097929579293123e-07,-8.867376166568457e-22,5.881799370399676e-05,1.0164395367051604e-20,-1.8574102796264924e-05,-4.58296631497199e-23,-8.867376166568457e-22,9.287051625506137e-07,48.0,22.0,0.021510664373636246,-0.0009785633301362395,-0.0020386737305670977,1.159554722107714e-05,3.024925354111474e-05,5.1465744036249816e-05,-0.0009785633301362395,8.953564247349277e-05,3.024925354111474e-05,-1.5124627452678396e-06,-1.287202280764177e-06,6.3527471044072525e-21,-0.0020386737305670977,3.024925354111474e-05,0.0004154620983172208,2.8752755683180977e-21,-2.880881311284611e-06,-1.5439723938470706e-05,1.159554722107714e-05,-1.5124627452678396e-06,2.8752755683180977e-21,3.218005772964716e-08,-3.201062500399892e-23,-9.936471767324691e-23,3.024925354111474e-05,-1.287202280764177e-06,-2.880881311284611e-06,-3.201062500399892e-23,1.2259069137599e-07,-3.970466940254533e-23,5.1465744036249816e-05,6.3527471044072525e-21,-1.5439723938470706e-05,-9.936471767324691e-23,-3.970466940254533e-23,7.352249440373271e-07,48.0,23.0,0.020654946565628052,-0.0009372227359563112,-0.0018744454719126225,1.1091393389506266e-05,2.7728483473765664e-05,4.528985664364882e-05,-0.0009372227359563112,8.569409692427143e-05,2.7728483473765664e-05,-1.4467034361587139e-06,-1.1799354524555383e-06,-1.4823076576950256e-20,-0.0018744454719126225,2.7728483473765664e-05,0.0003645035030785948,-1.1093891516690836e-21,-2.5207712042174535e-06,-1.2939958651259076e-05,1.1091393389506266e-05,-1.4467034361587139e-06,-1.1093891516690836e-21,3.078092447594827e-08,-4.270653916012276e-24,5.1625058188918653e-23,2.7728483473765664e-05,-1.1799354524555383e-06,-2.5207712042174535e-06,-4.270653916012276e-24,1.0726685673034808e-07,9.661469554619363e-22,4.528985664364882e-05,-1.4823076576950256e-20,-1.2939958651259076e-05,5.1625058188918653e-23,9.661469554619363e-22,5.881799438611779e-07,48.0,24.0,0.019864708185195923,-0.000899234670214355,-0.0017292974516749382,1.0629251846694387e-05,2.551020406826865e-05,4.006410381407477e-05,-0.000899234670214355,8.216873538913205e-05,2.551020406826865e-05,-1.3864241736882832e-06,-1.0855405889742542e-06,-6.776263578034403e-21,-0.0017292974516749382,2.551020406826865e-05,0.00032155666849575937,-1.645013135026765e-21,-2.218278723375988e-06,-1.0926573850156274e-05,1.0629251846694387e-05,-1.3864241736882832e-06,-1.645013135026765e-21,2.949838595611709e-08,3.0525698479559855e-23,3.604976954357327e-23,2.551020406826865e-05,-1.0855405889742542e-06,-2.218278723375988e-06,3.0525698479559855e-23,9.439483505957469e-08,4.036641389258775e-22,4.006410381407477e-05,-6.776263578034403e-21,-1.0926573850156274e-05,3.604976954357327e-23,4.036641389258775e-22,4.750684183818521e-07,48.0,25.0,0.019132710993289948,-0.0008642072207294405,-0.0016003837808966637,1.0204081263509579e-05,2.3547880118712783e-05,3.561253470252268e-05,-0.0008642072207294405,7.892207213444635e-05,2.3547880118712783e-05,-1.3309671658134903e-06,-1.0020374929808895e-06,-9.317362419797304e-21,-0.0016003837808966637,2.3547880118712783e-05,0.00028510569245554507,-4.73352005270196e-21,-1.9623234948085155e-06,-9.290226444136351e-06,1.0204081263509579e-05,-1.3309671658134903e-06,-4.73352005270196e-21,2.831844980732967e-08,3.737301113687824e-23,1.4818408792310755e-22,2.3547880118712783e-05,-1.0020374929808895e-06,-1.9623234948085155e-06,3.737301113687824e-23,8.350312441507413e-08,1.522012327097571e-22,3.561253470252268e-05,-9.317362419797304e-21,-9.290226444136351e-06,1.4818408792310755e-22,1.522012327097571e-22,3.870927685056813e-07,48.0,26.0,0.01845274493098259,-0.0008318070904351771,-0.0014853697502985597,9.811617019295227e-06,2.1803592971991748e-05,3.1796906114323065e-05,-0.0008318070904351771,7.592228939756751e-05,2.1803592971991748e-05,-1.2797761428373633e-06,-9.278124935008236e-07,-8.470329472543003e-22,-0.0014853697502985597,2.1803592971991748e-05,0.0002539664274081588,2.2129193765971055e-21,-1.7442874877815484e-06,-7.949226528580766e-06,9.811617019295227e-06,-1.2797761428373633e-06,2.2129193765971055e-21,2.7229278387608247e-08,-2.98463283125399e-23,-5.1944982306752845e-23,2.1803592971991748e-05,-9.278124935008236e-07,-1.7442874877815484e-06,-2.98463283125399e-23,7.422499948006589e-08,2.6469779601696886e-22,3.1796906114323065e-05,-8.470329472543003e-22,-7.949226528580766e-06,-5.1944982306752845e-23,2.6469779601696886e-22,3.179690679644409e-07,48.0,27.0,0.017819451168179512,-0.0008017492946237326,-0.001382326357997954,9.448223863728344e-06,2.0246194253559224e-05,2.8507571187219582e-05,-0.0008017492946237326,7.314226240850985e-05,2.0246194253559224e-05,-1.232377030646603e-06,-8.615401725364791e-07,-3.5998900258307764e-21,-0.001382326357997954,2.0246194253559224e-05,0.00022720490233041346,-5.1059899303756595e-22,-1.5573995142403874e-06,-6.841817139502382e-06,9.448223863728344e-06,-1.232377030646603e-06,-5.1059899303756595e-22,2.6220787319175543e-08,-9.375531394739393e-24,3.338888806772124e-23,2.0246194253559224e-05,-8.615401725364791e-07,-1.5573995142403874e-06,-9.375531394739393e-24,6.627232096434454e-08,1.1249656330721176e-22,2.8507571187219582e-05,-3.5998900258307764e-21,-6.841817139502382e-06,3.338888806772124e-23,1.1249656330721176e-22,2.631468021263572e-07,48.0,28.0,0.017228184267878532,-0.0007737886044196784,-0.0012896476546302438,9.11078677745536e-06,1.884990524558816e-05,2.5656814614194445e-05,-0.0007737886044196784,7.055868627503514e-05,1.884990524558816e-05,-1.1883635124831926e-06,-8.021236226340989e-07,3.8804977200455365e-21,-0.0012896476546302438,1.884990524558816e-05,0.00020407751435413957,2.840014571327324e-21,-1.3962892353447387e-06,-5.920803232584149e-06,9.11078677745536e-06,-1.1883635124831926e-06,2.840014571327324e-21,2.5284331073294197e-08,-4.1359030627651384e-23,-6.989268492757266e-23,1.884990524558816e-05,-8.021236226340989e-07,-1.3962892353447387e-06,-4.1359030627651384e-23,5.9416564113234926e-08,-4.4114184137120943e-23,2.5656814614194445e-05,3.8804977200455365e-21,-5.920803232584149e-06,-6.989268492757266e-23,-4.4114184137120943e-23,2.1928900650891592e-07,48.0,29.0,0.016674894839525223,-0.0007477128528989851,-0.001205988461151719,8.79662184161134e-06,1.759324368322268e-05,2.317389771633316e-05,-0.0007477128528989851,6.815144297434017e-05,1.759324368322268e-05,-1.147385546573787e-06,-7.486486879315635e-07,2.4733302121542902e-21,-0.001205988461151719,1.759324368322268e-05,0.00018398737302049994,2.7169496447837537e-21,-1.2566603118102648e-06,-5.149754997546552e-06,8.79662184161134e-06,-1.147385546573787e-06,2.7169496447837537e-21,2.4412457833022927e-08,-4.1359030627651384e-23,-6.30013475208557e-23,1.759324368322268e-05,-7.486486879315635e-07,-1.2566603118102648e-06,-4.1359030627651384e-23,5.347490628082596e-08,3.4838079193153797e-23,2.317389771633316e-05,2.4733302121542902e-21,-5.149754997546552e-06,-6.30013475208557e-23,3.4838079193153797e-23,1.8391982337107038e-07,48.0,30.0,0.016156040132045746,-0.0007233376963995397,-0.001130215241573751,8.50340165925445e-06,1.645819611439947e-05,2.100134406646248e-05,-0.0007233376963995397,6.59030702081509e-05,1.645819611439947e-05,-1.109139361687994e-06,-7.00348778082116e-07,-4.713155980776027e-21,-0.001130215241573751,1.645819611439947e-05,0.00016645154391881078,-4.046437501845133e-21,-1.1350480235705618e-06,-4.50028801424196e-06,8.50340165925445e-06,-1.109139361687994e-06,-4.046437501845133e-21,2.3598708764893672e-08,3.3087224502121107e-23,1.1397529254037941e-22,1.645819611439947e-05,-7.00348778082116e-07,-1.1350480235705618e-06,3.3087224502121107e-23,4.829991695487479e-08,-4.4391919973743915e-23,2.100134406646248e-05,-4.713155980776027e-21,-4.50028801424196e-06,1.1397529254037941e-22,-4.4391919973743915e-23,1.5518234874889458e-07,48.0,31.0,0.01566849835216999,-0.0007005019579082727,-0.0010613666381686926,8.229098057199735e-06,1.5429559425683692e-05,1.9092130969511345e-05,-0.0007005019579082727,6.379834667313844e-05,1.5429559425683692e-05,-1.0733606359281112e-06,-6.565769581357017e-07,-1.338999020466997e-21,-0.0010613666381686926,1.5429559425683692e-05,0.00015107639774214476,-1.6120210282171518e-21,-1.028637257149967e-06,-3.95009601561469e-06,8.229098057199735e-06,-1.0733606359281112e-06,-1.6120210282171518e-21,2.2837459923152892e-08,9.926167350636332e-24,3.432286466962309e-23,1.5429559425683692e-05,-6.565769581357017e-07,-1.028637257149967e-06,9.926167350636332e-24,4.377179863013225e-08,-4.1840286266934135e-23,1.9092130969511345e-05,-1.338999020466997e-21,-3.95009601561469e-06,3.432286466962309e-23,-4.1840286266934135e-23,1.316698643449854e-07,48.0,32.0,0.015209521166980267,-0.0006790642510168254,-0.0009986239019781351,7.97193843027344e-06,1.4494434253720101e-05,1.740753032208886e-05,-0.0006790642510168254,6.182392098708078e-05,1.4494434253720101e-05,-1.0398181302662124e-06,-6.167844048832194e-07,2.617278016042165e-21,-0.0009986239019781351,1.4494434253720101e-05,0.00013753898383583874,2.094619220408168e-21,-9.351247740596591e-07,-3.481506155367242e-06,7.97193843027344e-06,-1.0398181302662124e-06,2.094619220408168e-21,2.2123789022998608e-08,-2.6469779601696886e-23,-4.707563108419304e-23,1.4494434253720101e-05,-6.167844048832194e-07,-9.351247740596591e-07,-2.6469779601696886e-23,3.9792542594341285e-08,-2.6111191833176002e-23,1.740753032208886e-05,2.617278016042165e-21,-3.481506155367242e-06,-4.707563108419304e-23,-2.6111191833176002e-23,1.1230665108996618e-07,48.0,33.0,0.014776668511331081,-0.0006588998949155211,-0.0009412856306880713,7.730364814051427e-06,1.3641820260090753e-05,1.591545697010588e-05,-0.0006588998949155211,5.996806430630386e-05,1.3641820260090753e-05,-1.0083084589496139e-06,-5.805030127703503e-07,-1.0983612750621675e-20,-0.0009412856306880713,1.3641820260090753e-05,0.0001255725946975872,-8.075452512038368e-21,-8.526137662556721e-07,-3.0804110338067403e-06,7.730364814051427e-06,-1.0083084589496139e-06,-8.075452512038368e-21,2.145337241188372e-08,7.610061635487855e-23,1.7625727464632045e-22,1.3641820260090753e-05,-5.805030127703503e-07,-8.526137662556721e-07,7.610061635487855e-23,3.6281438298146895e-08,1.503060985146031e-22,1.591545697010588e-05,-1.0983612750621675e-20,-3.0804110338067403e-06,1.7625727464632045e-22,1.503060985146031e-22,9.626284480646063e-08,48.0,34.0,0.014367771334946156,-0.0006398988189175725,-0.0008887483854778111,7.503001143049914e-06,1.2862287803727668e-05,1.4589169040846173e-05,-0.0006398988189175725,5.822039383929223e-05,1.2862287803727668e-05,-9.786523378352285e-07,-5.473314104165183e-07,1.5121818832846177e-21,-0.0008887483854778111,1.2862287803727668e-05,0.00011495568469399586,1.853967823292057e-21,-7.795325700499234e-07,-2.7354692520020762e-06,7.503001143049914e-06,-9.786523378352285e-07,1.853967823292057e-21,2.0822389146246678e-08,-2.3161057151484775e-23,-3.933643859831902e-23,1.2862287803727668e-05,-5.473314104165183e-07,-7.795325700499234e-07,-2.3161057151484775e-23,3.317159880111831e-08,2.0401864674180484e-23,1.4589169040846173e-05,1.5121818832846177e-21,-2.7354692520020762e-06,-3.933643859831902e-23,2.0401864674180484e-23,8.2893002684159e-08,48.0,35.0,0.013980894349515438,-0.0006219630595296621,-0.00084049062570557,7.288629603863228e-06,1.2147716006438714e-05,1.340626386081567e-05,-0.0006219630595296621,5.6571723689557984e-05,1.2147716006438714e-05,-9.506908327239216e-07,-5.169241035218874e-07,-8.543881500194166e-21,-0.00084049062570557,1.2147716006438714e-05,0.00010550318256719038,-6.62924595664374e-21,-7.145715699152788e-07,-2.437502416796633e-06,7.288629603863228e-06,-9.506908327239216e-07,-6.62924595664374e-21,2.0227464148092622e-08,4.301339185275744e-23,1.482664576233871e-22,1.2147716006438714e-05,-5.169241035218874e-07,-7.145715699152788e-07,4.301339185275744e-23,3.0407299789203535e-08,7.806971414850606e-23,1.340626386081567e-05,-8.543881500194166e-21,-2.437502416796633e-06,1.482664576233871e-22,7.806971414850606e-23,7.169124671690952e-08,48.0,36.0,0.013614306226372719,-0.0006050055380910635,-0.0007960599032230675,7.086167897796258e-06,1.1491082659631502e-05,1.2347873962426092e-05,-0.0006050055380910635,5.501386840478517e-05,1.1491082659631502e-05,-9.242827445632429e-07,-4.889822662335064e-07,1.8481327264612203e-21,-0.0007960599032230675,1.1491082659631502e-05,9.705966658657417e-05,1.2151354890083043e-21,-6.566332899637928e-07,-2.1790365281049162e-06,7.086167897796258e-06,-9.242827445632429e-07,1.2151354890083043e-21,1.9665590045292447e-08,-1.6543612251060553e-24,-3.320559781411495e-23,1.1491082659631502e-05,-4.889822662335064e-07,-6.566332899637928e-07,-1.6543612251060553e-24,2.7941842617451584e-08,-1.6426841904426118e-23,1.2347873962426092e-05,1.8481327264612203e-21,-2.1790365281049162e-06,-3.320559781411495e-23,-1.6426841904426118e-23,6.225818793836879e-08,48.0,37.0,0.013266450725495815,-0.0005889482563361526,-0.000755061861127615,6.894649686728371e-06,1.0886288691835944e-05,1.1398037713661324e-05,-0.0005889482563361526,5.3539526561507955e-05,1.0886288691835944e-05,-8.993021651804156e-07,-4.632463515008567e-07,1.7043077071955213e-21,-0.000755061861127615,1.0886288691835944e-05,8.949398034019396e-05,1.1285851540972123e-21,-6.047938541087206e-07,-1.9539493223419413e-06,6.894649686728371e-06,-8.993021651804156e-07,1.1285851540972123e-21,1.9134088091732337e-08,8.317622834963458e-39,-3.061431595820876e-23,1.0886288691835944e-05,-4.632463515008567e-07,-6.047938541087206e-07,8.317622834963458e-39,2.5735907627222332e-08,-1.474638200513173e-23,1.1398037713661324e-05,1.7043077071955213e-21,-1.9539493223419413e-06,-3.061431595820876e-23,-1.474638200513173e-23,5.4276370065053925e-08,48.0,38.0,0.01293592806905508,-0.0005737213650718331,-0.0007171517354436219,6.713211405440234e-06,1.0328018106520176e-05,1.0543184544076212e-05,-0.0005737213650718331,5.214216071180999e-05,1.0328018106520176e-05,-8.7563631723242e-07,-4.3949012251687236e-07,1.5881867761018131e-21,-0.0007171517354436219,1.0328018106520176e-05,8.269489626400173e-05,1.6817746085681414e-21,-5.582712105933751e-07,-1.7571975376995397e-06,6.713211405440234e-06,-8.7563631723242e-07,1.6817746085681414e-21,1.8630560205679103e-08,-2.707005226347214e-23,-2.82916822612974e-23,1.0328018106520176e-05,-4.3949012251687236e-07,-5.582712105933751e-07,-2.707005226347214e-23,2.375622187855697e-08,-1.1580528575742387e-23,1.0543184544076212e-05,1.5881867761018131e-21,-1.7571975376995397e-06,-2.82916822612974e-23,-1.1580528575742387e-23,4.7491823806922184e-08,48.0,39.0,0.012621475383639336,-0.0005592621746473014,-0.0006820270209573209,6.541078164445935e-06,9.811617019295227e-06,9.771732038643677e-06,-0.0005592621746473014,5.081588460598141e-05,9.811617019295227e-06,-8.531840762771026e-07,-4.1751562207537063e-07,1.3234889800848443e-21,-0.0006820270209573209,9.811617019295227e-06,7.656769594177604e-05,9.002001022951812e-22,-5.164009166946926e-07,-1.584605229254521e-06,6.541078164445935e-06,-8.531840762771026e-07,9.002001022951812e-22,1.815285344264339e-08,1.4608231950243996e-23,-3.476009555950727e-23,9.811617019295227e-06,-4.1751562207537063e-07,-5.164009166946926e-07,1.4608231950243996e-23,2.197450577057225e-08,6.617444900424222e-24,9.771732038643677e-06,1.3234889800848443e-21,-1.584605229254521e-06,-3.476009555950727e-23,6.617444900424222e-24,4.1700136677036426e-08,48.0,40.0,0.012321947142481804,-0.0005455139325931668,-0.0006494213594123721,6.377551017067162e-06,9.333001798950136e-06,9.073751243704464e-06,-0.0005455139325931668,4.955541589879431e-05,9.333001798950136e-06,-8.318544928442861e-07,-3.971489945797657e-07,1.4293680984916318e-21,-0.0006494213594123721,9.333001798950136e-06,7.103136158548295e-05,1.4169111138957527e-21,-4.786154477187665e-07,-1.432697558811924e-06,6.377551017067162e-06,-8.318544928442861e-07,1.4169111138957527e-21,1.7699031573670254e-08,-2.1954978757545043e-23,-2.3202324043158696e-23,9.333001798950136e-06,-3.971489945797657e-07,-4.786154477187665e-07,-2.1954978757545043e-23,2.036661506110704e-08,-1.6543612251060553e-23,9.073751243704464e-06,1.4293680984916318e-21,-1.432697558811924e-06,-2.3202324043158696e-23,-1.6543612251060553e-23,3.673583748309284e-08,48.0,41.0,0.012036305852234364,-0.0005324255325831473,-0.0006190994172357023,6.22200104771764e-06,8.888572665455285e-06,8.440699275524821e-06,-0.0005324255325831473,4.835597428609617e-05,8.888572665455285e-06,-8.115653713502979e-07,-3.78237132281356e-07,1.2440796412797536e-21,-0.0006190994172357023,8.888572665455285e-06,6.601633504033089e-05,8.275647688812086e-22,-4.4442865032578993e-07,-1.2985690318600973e-06,6.22200104771764e-06,-8.115653713502979e-07,8.275647688812086e-22,1.7267348439986563e-08,1.873376030881412e-24,-2.372317261127449e-23,8.888572665455285e-06,-3.78237132281356e-07,-4.4442865032578993e-07,1.873376030881412e-24,1.891185696933917e-08,-1.3234889800848443e-23,8.440699275524821e-06,1.2440796412797536e-21,-1.2985690318600973e-06,-2.372317261127449e-23,-1.3234889800848443e-23,3.2464228638673376e-08,48.0,42.0,0.01176360808312893,-0.0005199505249038339,-0.0005908528692089021,6.073858003219357e-06,8.47515093482798e-06,7.865196494094562e-06,-0.0005199505249038339,4.721322693512775e-05,8.47515093482798e-06,-7.92242360603268e-07,-3.606447194215434e-07,1.0323214044661785e-21,-0.0005908528692089021,8.47515093482798e-06,6.146265513962135e-05,1.255413287946598e-21,-4.134219864226907e-07,-1.1797794741141843e-06,6.073858003219357e-06,-7.92242360603268e-07,1.255413287946598e-21,1.685622130764841e-08,-1.7543389318788697e-23,-2.0375423634359286e-23,8.47515093482798e-06,-3.606447194215434e-07,-4.134219864226907e-07,-1.7543389318788697e-23,1.7592425294310488e-08,-3.308722450212111e-24,7.865196494094562e-06,1.0323214044661785e-21,-1.1797794741141843e-06,-2.0375423634359286e-23,-3.308722450212111e-24,2.877511029453217e-08,48.0,43.0,0.011502992361783981,-0.0005080467672087252,-0.0005644964403472841,5.932605745329056e-06,8.089917173492722e-06,7.340850515902275e-06,-0.0005080467672087252,4.6123252104735e-05,8.089917173492722e-06,-7.738181011518463e-07,-3.4425178796482214e-07,7.676236084492097e-22,-0.0005644964403472841,8.089917173492722e-06,5.731845521950163e-05,1.2714655597605635e-21,-3.8523413081748004e-07,-1.0742708127509104e-06,5.932605745329056e-06,-7.738181011518463e-07,1.2714655597605635e-21,1.6464214880329564e-08,-1.8471616702413294e-23,-1.969408920368533e-23,8.089917173492722e-06,-3.4425178796482214e-07,-3.8523413081748004e-07,-1.8471616702413294e-23,1.6392942114862308e-08,7.444625512977249e-24,7.340850515902275e-06,7.676236084492097e-22,-1.0742708127509104e-06,-1.969408920368533e-23,7.444625512977249e-24,2.5577875817361928e-08,48.0,44.0,0.011253674514591694,-0.0004966759588569403,-0.0005398651701398194,5.79777361053857e-06,7.730364814051427e-06,6.862099326099269e-06,-0.0004966759588569403,4.5082473661750555e-05,7.730364814051427e-06,-7.562313726339198e-07,-3.2895169965740934e-07,-1.7470054537119944e-21,-0.0005398651701398194,7.730364814051427e-06,5.353870437829755e-05,-1.8900194482364794e-21,-3.595518478505255e-07,-9.802998874874902e-07,5.79777361053857e-06,-7.562313726339198e-07,-1.8900194482364794e-21,1.609002886482358e-08,1.3520055129476786e-23,3.667442747365072e-23,7.730364814051427e-06,-3.2895169965740934e-07,-3.595518478505255e-07,1.3520055129476786e-23,1.530007942562861e-08,8.271806125530277e-25,6.862099326099269e-06,-1.7470054537119944e-21,-9.802998874874902e-07,3.667442747365072e-23,8.271806125530277e-25,2.2797671306307166e-08,48.0,45.0,0.011014934629201889,-0.00048580302973277867,-0.000516811734996736,5.668934136338066e-06,7.394261956505943e-06,6.424093044188339e-06,-0.00048580302973277867,4.4087631977163255e-05,7.394261956505943e-06,-7.394261842819105e-07,-3.1464944072467915e-07,-1.4823076576950256e-21,-0.000516811734996736,7.394261956505943e-06,5.0084199756383896e-05,-1.813726980909451e-21,-3.3610282912377443e-07,-8.963850746113167e-07,5.668934136338066e-06,-7.394261842819105e-07,-1.813726980909451e-21,1.573247310204806e-08,1.4653020316998824e-23,3.2874878923653715e-23,7.394261956505943e-06,-3.1464944072467915e-07,-3.3610282912377443e-07,1.4653020316998824e-23,1.4302247386410727e-08,-5.790264287871194e-24,6.424093044188339e-06,-1.4823076576950256e-21,-8.963850746113167e-07,3.2874878923653715e-23,-5.790264287871194e-24,2.037238822083509e-08,48.0,46.0,0.010786114260554314,-0.00047539599472656846,-0.0004952041781507432,5.545696694753133e-06,7.07961271473323e-06,6.0225870583963115e-06,-0.00047539599472656846,4.313575482228771e-05,7.07961271473323e-06,-7.233517180793569e-07,-3.01260115520563e-07,8.999725064576941e-22,-0.0004952041781507432,7.07961271473323e-06,4.692068250733428e-05,9.82886760575569e-22,-3.1464944072467915e-07,-8.212618922698312e-07,5.545696694753133e-06,-7.233517180793569e-07,9.82886760575569e-22,1.5390462237974134e-08,-1.0727127804421624e-23,-1.6376477868793188e-23,7.07961271473323e-06,-3.01260115520563e-07,-3.1464944072467915e-07,-1.0727127804421624e-23,1.3389338526792471e-08,-5.790264287871194e-24,6.0225870583963115e-06,8.999725064576941e-22,-8.212618922698312e-07,-1.6376477868793188e-23,-5.790264287871194e-24,1.8250263522645582e-08,48.0,47.0,0.010566607117652893,-0.0004654255462810397,-0.0004749240179080516,5.427702944871271e-06,6.784628567402251e-06,5.6538574426667765e-06,-0.0004654255462810397,4.2224113713018596e-05,6.784628567402251e-06,-7.079612487359555e-07,-2.887076107072062e-07,7.940933880509066e-22,-0.0004749240179080516,6.784628567402251e-06,4.4018146581947803e-05,9.421490241750952e-22,-2.949838631138846e-07,-7.538476438639918e-07,5.427702944871271e-06,-7.079612487359555e-07,9.421490241750952e-22,1.5063005065485413e-08,-9.622453535543527e-24,-1.5721500858684476e-23,6.784628567402251e-06,-2.887076107072062e-07,-2.949838631138846e-07,-9.622453535543527e-24,1.255250481335679e-08,-4.1359030627651384e-24,5.6538574426667765e-06,7.940933880509066e-22,-7.538476438639918e-07,-1.5721500858684476e-23,-4.1359030627651384e-24,1.63879914083509e-08,48.0,48.0,0.010355855338275433,-0.0004558647342491895,-0.0004558647342491895,5.314625923347194e-06,6.507705165859079e-06,5.314625923347194e-06,-0.0004558647342491895,4.135021663387306e-05,6.507705165859079e-06,-6.932120868441416e-07,-2.769236289168475e-07,5.029258124322408e-22,-0.0004558647342491895,6.507705165859079e-06,4.135021663387306e-05,8.85960721193835e-22,-2.769236289168475e-07,-6.932120868441416e-07,5.314625923347194e-06,-6.932120868441416e-07,8.85960721193835e-22,1.4749192978058545e-08,-1.0069208343136437e-23,-1.3611840673521062e-23,6.507705165859079e-06,-2.769236289168475e-07,-2.769236289168475e-07,-1.0069208343136437e-23,1.1783983566715506e-08,6.617444900424222e-24,5.314625923347194e-06,5.029258124322408e-22,-6.932120868441416e-07,-1.3611840673521062e-23,6.617444900424222e-24,1.4749192978058545e-08,48.0,49.0,0.010153346695005894,-0.0004466888785827905,-0.0004379302845336497,5.206164132687263e-06,6.247396868275246e-06,5.002000762033276e-06,-0.0004466888785827905,4.0511757106287405e-05,6.247396868275246e-06,-6.790648967580637e-07,-2.658466655702796e-07,4.235164736271502e-22,-0.0004379302845336497,6.247396868275246e-06,3.889364961651154e-05,8.679226908439238e-22,-2.6030821231870505e-07,-6.385532742569922e-07,5.206164132687263e-06,-6.790648967580637e-07,8.679226908439238e-22,1.4448189311622173e-08,-1.0771933526116367e-23,-1.3008723379321579e-23,6.247396868275246e-06,-2.658466655702796e-07,-2.6030821231870505e-07,-1.0771933526116367e-23,1.1076944694821123e-08,7.858215819253763e-24,5.002000762033276e-06,4.235164736271502e-22,-6.385532742569922e-07,-1.3008723379321579e-23,7.858215819253763e-24,1.3303193213687337e-08,48.0,50.0,0.009958606213331223,-0.00043787516187876463,-0.0004210337938275188,5.1020406317547895e-06,6.002400823490461e-06,4.713424004876288e-06,-0.00043787516187876463,3.970663237851113e-05,6.002400823490461e-06,-6.654835829067451e-07,-2.554213267558225e-07,-1.0852609636695723e-21,-0.0004210337938275188,6.002400823490461e-06,3.662792732939124e-05,-1.652230972495822e-21,-2.44995959519656e-07,-5.89178000609536e-07,5.1020406317547895e-06,-6.654835829067451e-07,-1.652230972495822e-21,1.4159224903664835e-08,1.7255256295434912e-23,2.5542961123649013e-23,6.002400823490461e-06,-2.554213267558225e-07,-2.44995959519656e-07,1.7255256295434912e-23,1.0425360130739136e-08,-4.963083675318166e-24,4.713424004876288e-06,-1.0852609636695723e-21,-5.89178000609536e-07,2.5542961123649013e-23,-4.963083675318166e-24,1.2024040429992056e-08,48.0,51.0,0.009771195240318775,-0.0004294025420676917,-0.00040509673999622464,5.002000762033276e-06,5.77153923586593e-06,4.4466264625953045e-06,-0.0004294025420676917,3.893288521794602e-05,5.77153923586593e-06,-6.524348918901524e-07,-2.4559741973462224e-07,-9.396771758602394e-22,-0.00040509673999622464,5.77153923586593e-06,3.453485987847671e-05,-1.5892988049209106e-21,-2.3086157341367652e-07,-5.444848625302257e-07,5.002000762033276e-06,-6.524348918901524e-07,-1.5892988049209106e-21,1.3881593652342872e-08,1.724172575318856e-23,2.360969970322388e-23,5.77153923586593e-06,-2.4559741973462224e-07,-2.3086157341367652e-07,1.724172575318856e-23,9.823897251237668e-09,-7.031035206700735e-24,4.4466264625953045e-06,-9.396771758602394e-22,-5.444848625302257e-07,2.360969970322388e-23,-7.031035206700735e-24,1.0889697144023103e-08,48.0,52.0,0.00959070771932602,-0.00042125157779082656,-0.00039004776044748724,4.905808509647613e-06,5.553745268116472e-06,4.199591330689145e-06,-0.00042125157779082656,3.8188722101040184e-05,5.553745268116472e-06,-6.398880714186816e-07,-2.3632959766928252e-07,5.029258124322408e-22,-0.00039004776044748724,5.553745268116472e-06,3.2598309189779684e-05,5.882322462244313e-22,-2.1779393932774838e-07,-5.039509574089607e-07,4.905808509647613e-06,-6.398880714186816e-07,5.882322462244313e-22,1.3614639193804123e-08,-6.213411150976394e-25,-1.1161682089254386e-23,5.553745268116472e-06,-2.3632959766928252e-07,-2.1779393932774838e-07,-6.213411150976394e-25,9.267827394410233e-09,1.2407709188295415e-24,4.199591330689145e-06,5.029258124322408e-22,-5.039509574089607e-07,-1.1161682089254386e-23,1.2407709188295415e-24,9.881391704880116e-09,48.0,53.0,0.00941676739603281,-0.0004134043410886079,-0.0003758221282623708,4.813246050616726e-06,5.3480512178794015e-06,3.970522811869159e-06,-0.0004134043410886079,3.747247319552116e-05,5.3480512178794015e-06,-6.278146997829026e-07,-2.275766490811293e-07,-7.808584982500581e-22,-0.0003758221282623708,5.3480512178794015e-06,3.080390888499096e-05,-1.4203273738645645e-21,-2.056942776107462e-07,-4.671203441830585e-07,4.813246050616726e-06,-6.278146997829026e-07,-1.4203273738645645e-21,1.3357759343080033e-08,1.3620193132785542e-23,2.0917912234827103e-23,5.3480512178794015e-06,-2.275766490811293e-07,-2.056942776107462e-07,1.3620193132785542e-23,8.752947699974811e-09,-8.271806125530277e-24,3.970522811869159e-06,-7.808584982500581e-22,-4.671203441830585e-07,2.0917912234827103e-23,-8.271806125530277e-24,8.98308361030331e-09,48.0,54.0,0.009249024093151093,-0.000405844155466184,-0.0003623608499765396,4.724111931864172e-06,5.153576694283402e-06,3.757816330107744e-06,-0.000405844155466184,3.678259963635355e-05,5.153576694283402e-06,-6.161885153233015e-07,-2.1930112836798799e-07,4.367513634279986e-22,-0.0003623608499765396,5.153576694283402e-06,2.9138853278709576e-05,8.303839179427533e-22,-1.944745946502735e-07,-4.335941810040822e-07,4.724111931864172e-06,-6.161885153233015e-07,8.303839179427533e-22,1.3110393659587771e-08,-1.2573071000108749e-23,-1.0081595037070218e-23,5.153576694283402e-06,-2.1930112836798799e-07,-1.944745946502735e-07,-1.2573071000108749e-23,8.275514495892367e-09,8.271806125530277e-25,3.757816330107744e-06,4.367513634279986e-22,-4.335941810040822e-07,-1.0081595037070218e-23,8.271806125530277e-25,8.18102208199889e-09,48.0,55.0,0.00908715184777975,-0.0003985555376857519,-0.0003496101126074791,4.638218797481386e-06,4.9695204324962106e-06,3.5600364753918257e-06,-0.0003985555376857519,3.611767169786617e-05,4.9695204324962106e-06,-6.049850753697683e-07,-2.1146894368939684e-07,3.8381180422460484e-22,-0.0003496101126074791,4.9695204324962106e-06,2.7591691832640208e-05,7.749384316333982e-22,-1.8405630441975518e-07,-4.030229945328756e-07,4.638218797481386e-06,-6.049850753697683e-07,7.749384316333982e-22,1.2872022558951812e-08,-1.0959657966870906e-23,-9.458121187211507e-24,4.9695204324962106e-06,-2.1146894368939684e-07,-1.8405630441975518e-07,-1.0959657966870906e-23,7.832182902234308e-09,2.481541837659083e-24,3.5600364753918257e-06,3.8381180422460484e-22,-4.030229945328756e-07,-9.458121187211507e-24,2.481541837659083e-24,7.463389017914324e-09,48.0,56.0,0.008930847980082035,-0.0003915240813512355,-0.00033752075978554785,4.55539338872768e-06,4.795151198777603e-06,3.3758965400920715e-06,-0.0003915240813512355,3.5476354241836816e-05,4.795151198777603e-06,-5.941817562415963e-07,-2.0404898748438427e-07,5.293955920339377e-22,-0.00033752075978554785,4.795151198777603e-06,2.6152169084525667e-05,7.464286703525743e-22,-1.7436913424262457e-07,-3.750996313556243e-07,4.55539338872768e-06,-5.941817562415963e-07,7.464286703525743e-22,1.2642165536647099e-08,-1.1180654982885857e-23,-8.63804821141452e-24,4.795151198777603e-06,-2.0404898748438427e-07,-1.7436913424262457e-07,-1.1180654982885857e-23,7.4199628663507156e-09,-4.1359030627651384e-24,3.3758965400920715e-06,5.293955920339377e-22,-3.750996313556243e-07,-8.63804821141452e-24,-4.1359030627651384e-24,6.819993014772763e-09,48.0,57.0,0.008779830299317837,-0.0003847364860121161,-0.0003260478551965207,4.475474270293489e-06,4.629800969269127e-06,3.2042407838162035e-06,-0.0003847364860121161,3.4857421269407496e-05,4.629800969269127e-06,-5.83757525873807e-07,-1.9701280962181045e-07,4.235164736271502e-22,-0.0003260478551965207,4.629800969269127e-06,2.4811082766973414e-05,7.40981213459676e-22,-1.6535004476736503e-07,-3.495535452202603e-07,4.475474270293489e-06,-5.83757525873807e-07,7.40981213459676e-22,1.2420373174393262e-08,-1.1142021308913563e-23,-8.371440046720596e-24,4.629800969269127e-06,-1.9701280962181045e-07,-1.6535004476736503e-07,-1.1142021308913563e-23,7.0361720894140944e-09,-8.271806125530277e-25,3.2042407838162035e-06,4.235164736271502e-22,-3.495535452202603e-07,-8.371440046720596e-24,-8.271806125530277e-25,6.2420277835428806e-09,48.0,58.0,0.00863383524119854,-0.00037818020791746676,-0.0003151501587126404,4.39831092080567e-06,4.47285856353119e-06,3.0440287446253933e-06,-0.00037818020791746676,3.425971226533875e-05,4.47285856353119e-06,-5.736927732868935e-07,-1.9033441844840127e-07,3.970466940254533e-22,-0.0003151501587126404,4.47285856353119e-06,2.3560161935165524e-05,6.837088515115739e-22,-1.569424057379365e-07,-3.261459369241493e-07,4.39831092080567e-06,-5.736927732868935e-07,6.837088515115739e-22,1.2206228916511463e-08,-9.931096153572153e-24,-7.810296463566113e-24,4.47285856353119e-06,-1.9033441844840127e-07,-1.569424057379365e-07,-9.931096153572153e-24,6.6784004992825885e-09,-4.1359030627651384e-25,3.0440287446253933e-06,3.970466940254533e-22,-3.261459369241493e-07,-7.810296463566113e-24,-4.1359030627651384e-25,5.721858542528935e-09,48.0,59.0,0.008492616005241871,-0.0003718436637427658,-0.00030478989356197417,4.3237632780801505e-06,4.3237632780801505e-06,2.8943225061084377e-06,-0.0003718436637427658,3.368215766386129e-05,4.3237632780801505e-06,-5.639691380565637e-07,-1.8398992551738047e-07,3.1763735522036263e-22,-0.00030478989356197417,4.3237632780801505e-06,2.2391950551536866e-05,6.6972528853546e-22,-1.4909528545103967e-07,-3.046655194793857e-07,4.3237632780801505e-06,-5.639691380565637e-07,6.6972528853546e-22,1.1999343740853874e-08,-9.835994238282329e-24,-7.664735849334731e-24,4.3237632780801505e-06,-1.8398992551738047e-07,-1.4909528545103967e-07,-9.835994238282329e-24,6.3444804965229196e-09,1.6543612251060553e-24,2.8943225061084377e-06,3.1763735522036263e-22,-3.046655194793857e-07,-7.664735849334731e-24,1.6543612251060553e-24,5.252853707560234e-09,48.0,60.0,0.008355941623449326,-0.00036571596865542233,-0.00029493222245946527,4.251700829627225e-06,4.182000793662155e-06,2.7542746465769596e-06,-0.00036571596865542233,3.312375338282436e-05,4.182000793662155e-06,-5.54569680843997e-07,-1.7795747453419608e-07,-6.749793798432706e-22,-0.00029493222245946527,4.182000793662155e-06,2.129972563125193e-05,-1.0903127026888628e-21,-1.417627402133803e-07,-2.849249653991137e-07,4.251700829627225e-06,-5.54569680843997e-07,-1.0903127026888628e-21,1.1799354382446836e-08,9.738241750350962e-24,1.4585037861908688e-23,4.182000793662155e-06,-1.7795747453419608e-07,-1.417627402133803e-07,9.738241750350962e-24,6.032456756344118e-09,-2.0679515313825692e-25,2.7542746465769596e-06,-6.749793798432706e-22,-2.849249653991137e-07,1.4585037861908688e-23,-2.0679515313825692e-25,4.82923656619505e-09,48.0,61.0,0.008223596960306168,-0.000359786965418607,-0.00028554521850310266,4.182000793662155e-06,4.04709726353758e-06,2.62311868937104e-06,-0.000359786965418607,3.258356446167454e-05,4.04709726353758e-06,-5.454783718050749e-07,-1.7221691450686194e-07,3.8381180422460484e-22,-0.00028554521850310266,4.04709726353758e-06,2.0277406292734668e-05,6.073786703223888e-22,-1.349032459074806e-07,-2.667578371529089e-07,4.182000793662155e-06,-5.454783718050749e-07,6.073786703223888e-22,1.1605922445312444e-08,-8.176723142902178e-24,-6.956346645055315e-24,4.04709726353758e-06,-1.7221691450686194e-07,-1.349032459074806e-07,-8.176723142902178e-24,5.7405635800478194e-09,-1.8611563782443123e-24,2.62311868937104e-06,3.8381180422460484e-22,-2.667578371529089e-07,-6.956346645055315e-24,-1.8611563782443123e-24,4.445964041366324e-09,48.0,62.0,0.00809537898749113,-0.00035404713707976043,-0.00027659934130497277,4.114549028599868e-06,3.918617949238978e-06,2.5001600079122e-06,-0.00035404713707976043,3.206071414751932e-05,3.918617949238978e-06,-5.366803179640556e-07,-1.6674971448082943e-07,-5.0954325733266505e-22,-0.00027659934130497277,3.918617949238978e-06,1.931948645506054e-05,-4.817604092878969e-22,-1.284792858768924e-07,-2.5001600079122e-07,4.114549028599868e-06,-5.366803179640556e-07,-4.817604092878969e-22,1.1418729961576446e-08,4.000502188132099e-24,4.925044802468409e-24,3.918617949238978e-06,-1.6674971448082943e-07,-1.284792858768924e-07,4.000502188132099e-24,5.467203578746194e-09,7.444625512977249e-24,2.5001600079122e-06,-5.0954325733266505e-22,-2.5001600079122e-07,4.925044802468409e-24,7.444625512977249e-24,4.098622774506566e-09,48.0,63.0,0.007971098646521568,-0.00034848760697059333,-0.00026806737878359854,4.0492386688129045e-06,3.796161308855517e-06,2.384768094998435e-06,-0.00034848760697059333,3.155437661916949e-05,3.796161308855517e-06,-5.281615926833183e-07,-1.6153877879787615e-07,2.6469779601696886e-22,-0.00026806737878359854,3.796161308855517e-06,1.8420974811306223e-05,5.542180281171414e-22,-1.2245681091371807e-07,-2.3456735220861447e-07,4.0492386688129045e-06,-5.281615926833183e-07,5.542180281171414e-22,1.1237480279646661e-08,-6.980622261691681e-24,-6.293119333169349e-24,3.796161308855517e-06,-1.6153877879787615e-07,-1.2245681091371807e-07,-6.980622261691681e-24,5.2109285775259195e-09,8.271806125530277e-25,2.384768094998435e-06,2.6469779601696886e-22,-2.3456735220861447e-07,-6.293119333169349e-24,8.271806125530277e-25,3.783344304508773e-09,48.0,64.0,0.00785057619214058,-0.00034309999318793416,-0.0002599242143332958,3.98596921513672e-06,3.6793562685488723e-06,2.2763695142202778e-06,-0.00034309999318793416,3.106378426309675e-05,3.6793562685488723e-06,-5.199090651331062e-07,-1.5656836183097766e-07,2.6469779601696886e-22,-0.0002599242143332958,3.6793562685488723e-06,1.757733480189927e-05,5.323272768367776e-22,-1.1680496214694358e-07,-2.202938134132637e-07,3.98596921513672e-06,-5.199090651331062e-07,5.323272768367776e-22,1.1061894511499304e-08,-6.5544018978921264e-24,-6.004743340656756e-24,3.6793562685488723e-06,-1.5656836183097766e-07,-1.1680496214694358e-07,-6.5544018978921264e-24,4.970424072325841e-09,2.0679515313825692e-25,2.2763695142202778e-06,2.6469779601696886e-22,-2.202938134132637e-07,-6.004743340656756e-24,2.0679515313825692e-25,3.4967273521147035e-09,49.0,3.0,0.0994797945022583,-0.0058823530562222,-0.05999999865889549,8.003201219253242e-05,0.0012244897661730647,0.010204081423580647,-0.0058823530562222,0.0005754429148510098,0.0012244897661730647,-1.0216852388111874e-05,-5.10204081365373e-05,-2.168404344971009e-19,-0.05999999865889549,0.0012244897661730647,0.1620408147573471,-3.4351957809320544e-20,-0.0012244897661730647,-0.06122449040412903,8.003201219253242e-05,-1.0216852388111874e-05,-3.4351957809320544e-20,2.1285109141899738e-07,4.785337283718278e-22,1.1357457190023729e-20,0.0012244897661730647,-5.10204081365373e-05,-0.0012244897661730647,4.785337283718278e-22,5.10204081365373e-05,1.0842021724855044e-19,0.010204081423580647,-2.168404344971009e-19,-0.06122449040412903,1.1357457190023729e-20,1.0842021724855044e-19,0.030612245202064514,49.0,4.0,0.08309964090585709,-0.0045954380184412,-0.039061225950717926,6.0024009144399315e-05,0.0007346938946284354,0.005102040711790323,-0.0045954380184412,0.00043923527118749917,0.0007346938946284354,-7.662639291083906e-06,-3.061224560951814e-05,-1.7076184216646695e-18,-0.039061225950717926,0.0007346938946284354,0.06175510212779045,-9.557393431454e-20,-0.0004897959297522902,-0.015306122601032257,6.0024009144399315e-05,-7.662639291083906e-06,-9.557393431454e-20,1.5963831856424804e-07,1.3246754268862967e-21,1.9148801434424975e-20,0.0007346938946284354,-3.061224560951814e-05,-0.0004897959297522902,1.3246754268862967e-21,2.0408162527019158e-05,4.472333961502706e-19,0.005102040711790323,-1.7076184216646695e-18,-0.015306122601032257,1.9148801434424975e-20,4.472333961502706e-19,0.005102040711790323,49.0,5.0,0.07139632850885391,-0.003774309763684869,-0.02749854139983654,4.801920658792369e-05,0.0004897959297522902,0.0029154520016163588,-0.003774309763684869,0.0003554698487278074,0.0004897959297522902,-6.130111614766065e-06,-2.0408162527019158e-05,4.0657581468206416e-20,-0.02749854139983654,0.0004897959297522902,0.03124198317527771,-5.842425033101855e-23,-0.0002448979648761451,-0.0058309040032327175,4.801920658792369e-05,-6.130111614766065e-06,-5.842425033101855e-23,1.2771066337791126e-07,2.6555880298513776e-22,-1.5913936155883941e-21,0.0004897959297522902,-2.0408162527019158e-05,-0.0002448979648761451,2.6555880298513776e-22,1.0204081263509579e-05,2.0328790734103208e-20,0.0029154520016163588,4.0657581468206416e-20,-0.0058309040032327175,-1.5913936155883941e-21,2.0328790734103208e-20,0.0014577260008081794,49.0,6.0,0.06259703636169434,-0.0032035671174526215,-0.020422739908099174,4.001600609626621e-05,0.0003498542355373502,0.0018221574136987329,-0.0032035671174526215,0.00029865442775189877,0.0003498542355373502,-5.108426194055937e-06,-1.4577259207726456e-05,5.21772295508649e-19,-0.020422739908099174,0.0003498542355373502,0.018190961331129074,4.8080131598586156e-20,-0.00013994169421494007,-0.00273323617875576,4.001600609626621e-05,-5.108426194055937e-06,4.8080131598586156e-20,1.0642554570949869e-07,-1.7826922336431957e-22,-8.403524136762976e-21,0.0003498542355373502,-1.4577259207726456e-05,-0.00013994169421494007,-1.7826922336431957e-22,5.830903774040053e-06,-2.710505431213761e-20,0.0018221574136987329,5.21772295508649e-19,-0.00273323617875576,-8.403524136762976e-21,-2.710505431213761e-20,0.000546647235751152,49.0,7.0,0.0557342953979969,-0.002783399075269699,-0.015772594138979912,3.429943535593338e-05,0.00026239067665301263,0.0012147716479375958,-0.002783399075269699,0.00025755134993232787,0.00026239067665301263,-4.378651283332147e-06,-1.0932944860542193e-05,4.946672411965114e-19,-0.015772594138979912,0.00026239067665301263,0.011574343778192997,3.8193836938414294e-20,-8.746355888433754e-05,-0.0014577260008081794,3.429943535593338e-05,-4.378651283332147e-06,3.8193836938414294e-20,9.12218993676106e-08,-5.241972384822464e-22,-3.9157667949719796e-21,0.00026239067665301263,-1.0932944860542193e-05,-8.746355888433754e-05,-5.241972384822464e-22,3.644314801931614e-06,-9.994988777600744e-20,0.0012147716479375958,4.946672411965114e-19,-0.0014577260008081794,-3.9157667949719796e-21,-9.994988777600744e-20,0.00024295432376675308,49.0,8.0,0.05023009330034256,-0.002460984280332923,-0.012551020830869675,3.0012004572199658e-05,0.0002040816325461492,0.0008503401186317205,-0.002460984280332923,0.0002264203503727913,0.0002040816325461492,-3.831319645541953e-06,-8.50340165925445e-06,-1.4907779871675686e-19,-0.012551020830869675,0.0002040816325461492,0.007837706245481968,-1.1767880137724247e-20,-5.8309036830905825e-05,-0.0008503401186317205,3.0012004572199658e-05,-3.831319645541953e-06,-1.1767880137724247e-20,7.981915928212402e-08,2.4736166254608707e-22,7.330606965615715e-22,0.0002040816325461492,-8.50340165925445e-06,-5.8309036830905825e-05,2.4736166254608707e-22,2.4295432012877427e-06,2.879912020664621e-20,0.0008503401186317205,-1.4907779871675686e-19,-0.0008503401186317205,7.330606965615715e-22,2.879912020664621e-20,0.00012147716188337654,49.0,9.0,0.04571651667356491,-0.0022056822199374437,-0.01022634468972683,2.6677336791181006e-05,0.00016326530021615326,0.0006184292142279446,-0.0022056822199374437,0.0002020183892454952,0.00016326530021615326,-3.405617462703958e-06,-6.80272114550462e-06,5.759824041329242e-20,-0.01022634468972683,0.00016326530021615326,0.005560385063290596,1.365735472919982e-21,-4.0816325054038316e-05,-0.000530082150362432,2.6677336791181006e-05,-3.405617462703958e-06,1.365735472919982e-21,7.095036380633246e-08,7.137666481892546e-23,-4.0774331973411363e-22,0.00016326530021615326,-6.80272114550462e-06,-4.0816325054038316e-05,7.137666481892546e-23,1.700680286376155e-06,-9.317362419797304e-21,0.0006184292142279446,5.759824041329242e-20,-0.000530082150362432,-4.0774331973411363e-22,-9.317362419797304e-21,6.6260268795304e-05,49.0,10.0,0.04194783419370651,-0.0019984720274806023,-0.008493506349623203,2.4009603293961845e-05,0.00013358070282265544,0.00046382189611904323,-0.0019984720274806023,0.00018237314361613244,0.00013358070282265544,-3.0650558073830325e-06,-5.565862920775544e-06,1.0164395367051604e-20,-0.008493506349623203,0.00013358070282265544,0.004090599715709686,1.999640468393754e-21,-2.9684601031476632e-05,-0.0003478664148133248,2.4009603293961845e-05,-3.0650558073830325e-06,1.999640468393754e-21,6.385533168895563e-08,2.8688927369617735e-23,-2.800374929306918e-22,0.00013358070282265544,-5.565862920775544e-06,-2.9684601031476632e-05,2.8688927369617735e-23,1.2368583384159137e-06,1.6940658945086007e-21,0.00046382189611904323,1.0164395367051604e-20,-0.0003478664148133248,-2.800374929306918e-22,1.6940658945086007e-21,3.865182588924654e-05,49.0,11.0,0.03875351697206497,-0.0018269126303493977,-0.007167118601500988,2.1826912416145205e-05,0.00011131725477753207,0.0003567860694602132,-0.0018269126303493977,0.0001662154245423153,0.00011131725477753207,-2.7864143703482114e-06,-4.638218797481386e-06,8.470329472543003e-20,-0.007167118601500988,0.00011131725477753207,0.003098425455391407,1.1604225200028758e-20,-2.2263451683102176e-05,-0.00023785738449078053,2.1826912416145205e-05,-2.7864143703482114e-06,1.1604225200028758e-20,5.8050300566492297e-08,-1.8688148923476875e-22,-7.361590897617899e-22,0.00011131725477753207,-4.638218797481386e-06,-2.2263451683102176e-05,-1.8688148923476875e-22,9.276437822336447e-07,-8.258571235729428e-21,0.0003567860694602132,8.470329472543003e-20,-0.00023785738449078053,-7.361590897617899e-22,-8.258571235729428e-21,2.3785738449078053e-05,49.0,12.0,0.0360114611685276,-0.0016825192142277956,-0.006129176821559668,2.0008003048133105e-05,9.419152047485113e-05,0.00028033190756104887,-0.0016825192142277956,0.00015269119467120618,9.419152047485113e-05,-2.5542130970279686e-06,-3.924646989617031e-06,8.131516293641283e-20,-0.006129176821559668,9.419152047485113e-05,0.00240392261184752,1.391018745135709e-20,-1.7125730664702132e-05,-0.00016819914162624627,2.0008003048133105e-05,-2.5542130970279686e-06,1.391018745135709e-20,5.3212772854749346e-08,-4.7415447118613284e-23,-1.115933592225895e-21,9.419152047485113e-05,-3.924646989617031e-06,-1.7125730664702132e-05,-4.7415447118613284e-23,7.135721489248681e-07,-3.282252670610414e-21,0.00028033190756104887,8.131516293641283e-20,-0.00016819914162624627,-1.115933592225895e-21,-3.282252670610414e-21,1.5290832379832864e-05,49.0,13.0,0.03363191336393356,-0.0015593050047755241,-0.0053016371093690395,1.8468925190973096e-05,8.073559001786634e-05,0.00022426553186960518,-0.0015593050047755241,0.0001412044803146273,8.073559001786634e-05,-2.3577351839776384e-06,-3.363983068993548e-06,-9.825582188149884e-20,-0.0053016371093690395,8.073559001786634e-05,0.0019029949326068163,-2.0442650852951425e-20,-1.3455932275974192e-05,-0.0001223266590386629,1.8468925190973096e-05,-2.3577351839776384e-06,-2.0442650852951425e-20,4.911948536800992e-08,2.006035038000348e-22,1.2150687450648354e-21,8.073559001786634e-05,-3.363983068993548e-06,-1.3455932275974192e-05,2.006035038000348e-22,5.606638069366454e-07,5.505714157152952e-21,0.00022426553186960518,-9.825582188149884e-20,-0.0001223266590386629,1.2150687450648354e-21,5.505714157152952e-21,1.0193887646892108e-05,49.0,14.0,0.0315474197268486,-0.0014529239851981401,-0.004631195217370987,1.714971767796669e-05,6.997084710747004e-05,0.00018221575010102242,-0.0014529239851981401,0.00013132669846527278,6.997084710747004e-05,-2.1893256416660734e-06,-2.9154518870200263e-06,3.218725199566341e-20,-0.004631195217370987,6.997084710747004e-05,0.0015324624255299568,4.404805020401279e-21,-1.0764745638880413e-05,-9.110787505051121e-05,1.714971767796669e-05,-2.1893256416660734e-06,4.404805020401279e-21,4.56109496838053e-08,-3.8341927965994135e-23,-2.182352266075465e-22,6.997084710747004e-05,-2.9154518870200263e-06,-1.0764745638880413e-05,-3.8341927965994135e-23,4.485310682866839e-07,-3.441071348220595e-21,0.00018221575010102242,3.218725199566341e-20,-9.110787505051121e-05,-2.182352266075465e-22,-3.441071348220595e-21,7.008297870925162e-06,49.0,15.0,0.029706282541155815,-0.0013601440005004406,-0.004080432001501322,1.6006402802304365e-05,6.122449121903628e-05,0.00015006001922301948,-0.0013601440005004406,0.00012274165055714548,6.122449121903628e-05,-2.04337061404658e-06,-2.5510203158773948e-06,-4.0657581468206416e-20,-0.004080432001501322,6.122449121903628e-05,0.0012524174526333809,-4.624125820588606e-21,-8.746355888433754e-06,-6.925847264938056e-05,1.6006402802304365e-05,-2.04337061404658e-06,-4.624125820588606e-21,4.257022112597042e-08,3.220843660914852e-23,2.7604434213733545e-22,6.122449121903628e-05,-2.5510203158773948e-06,-8.746355888433754e-06,3.220843660914852e-23,3.644314858775033e-07,3.3881317890172014e-21,0.00015006001922301948,-4.0657581468206416e-20,-6.925847264938056e-05,2.7604434213733545e-22,3.3881317890172014e-21,4.947033630742226e-06,49.0,16.0,0.02806822769343853,-0.0012785113649442792,-0.00362244900316,1.5006002286099829e-05,5.4021609685150906e-05,0.0001250500208698213,-0.0012785113649442792,0.00011521097621880472,5.4021609685150906e-05,-1.9156598227709765e-06,-2.250900251965504e-06,3.3881317890172014e-21,-0.00362244900316,5.4021609685150906e-05,0.0010367861250415444,-1.1275969196422494e-21,-7.202881079138024e-06,-5.3592866606777534e-05,1.5006002286099829e-05,-1.9156598227709765e-06,-1.1275969196422494e-21,3.990957964106201e-08,3.1301091951406934e-23,-1.4823676568777549e-24,5.4021609685150906e-05,-2.250900251965504e-06,-7.202881079138024e-06,3.1301091951406934e-23,3.001200354901812e-07,-5.293955920339377e-22,0.0001250500208698213,3.3881317890172014e-21,-5.3592866606777534e-05,-1.4823676568777549e-24,-5.293955920339377e-22,3.5728576222027186e-06,49.0,17.0,0.026601402088999748,-0.0012061295565217733,-0.003237505443394184,1.4123296750767622e-05,4.801920658792369e-05,0.00010530527652008459,-0.0012061295565217733,0.00010855155414901674,4.801920658792369e-05,-1.8029739976554993e-06,-2.0008003502880456e-06,-2.795208725939191e-20,-0.003237505443394184,4.801920658792369e-05,0.0008680314058437943,-3.3373302574371227e-21,-6.002400823490461e-06,-4.212211206322536e-05,1.4123296750767622e-05,-1.8029739976554993e-06,-3.3373302574371227e-21,3.7561957100251675e-08,-3.713387899751316e-23,2.6073660355660483e-22,4.801920658792369e-05,-2.0008003502880456e-06,-6.002400823490461e-06,-3.713387899751316e-23,2.501000437860057e-07,1.5087774372967225e-21,0.00010530527652008459,-2.795208725939191e-20,-4.212211206322536e-05,2.6073660355660483e-22,1.5087774372967225e-21,2.632632003951585e-06,49.0,18.0,0.025280287489295006,-0.001141509274020791,-0.0029108484741300344,1.3338668395590503e-05,4.296455517760478e-05,8.950948540586978e-05,-0.001141509274020791,0.00010262036812491715,4.296455517760478e-05,-1.702808731351979e-06,-1.7901897990668658e-06,-6.776263578034403e-21,-0.0029108484741300344,4.296455517760478e-05,0.0007340567535720766,-4.148246148468078e-21,-5.054653229308315e-06,-3.356605884619057e-05,1.3338668395590503e-05,-1.702808731351979e-06,-4.148246148468078e-21,3.547518190316623e-08,3.862034853388284e-23,1.686784165617108e-22,4.296455517760478e-05,-1.7901897990668658e-06,-5.054653229308315e-06,3.862034853388284e-23,2.106105654320345e-07,-2.117582368135751e-22,8.950948540586978e-05,-6.776263578034403e-21,-3.356605884619057e-05,1.686784165617108e-22,-2.117582368135751e-22,1.974473889276851e-06,49.0,19.0,0.024084195494651794,-0.0010834649438038468,-0.00263127195648849,1.2636633982765488e-05,3.866809856845066e-05,7.672241918044165e-05,-0.0010834649438038468,9.730409510666505e-05,3.866809856845066e-05,-1.6131872371261124e-06,-1.6111707736854441e-06,4.235164736271502e-22,-0.00263127195648849,3.866809856845066e-05,0.0006263317191042006,-2.630280362269929e-22,-4.2964552449120674e-06,-2.7078500352217816e-05,1.2636633982765488e-05,-1.6131872371261124e-06,-2.630280362269929e-22,3.360806744012734e-08,-2.437794964514373e-24,1.00466445546644e-23,3.866809856845066e-05,-1.6111707736854441e-06,-4.2964552449120674e-06,-2.437794964514373e-24,1.7901898274885752e-07,-5.293955920339377e-23,7.672241918044165e-05,4.235164736271502e-22,-2.7078500352217816e-05,1.00466445546644e-23,-5.293955920339377e-23,1.5043611938381218e-06,49.0,20.0,0.02299617975950241,-0.0010310410289093852,-0.0023901404347270727,1.2004801646980923e-05,3.498542355373502e-05,6.6260268795304e-05,-0.0010310410289093852,9.251177834812552e-05,3.498542355373502e-05,-1.5325279036915163e-06,-1.4577259435100132e-06,4.658681209898652e-21,-0.0023901404347270727,3.498542355373502e-05,0.0005387215642258525,9.581348549681793e-22,-3.682676151584019e-06,-2.2086756871431135e-05,1.2004801646980923e-05,-1.5325279036915163e-06,9.581348549681793e-22,3.1927665844477815e-08,1.1008336995610284e-23,-5.861799456934083e-23,3.498542355373502e-05,-1.4577259435100132e-06,-3.682676151584019e-06,1.1008336995610284e-23,1.5344483017543098e-07,2.6469779601696886e-23,6.6260268795304e-05,4.658681209898652e-21,-2.2086756871431135e-05,-5.861799456934083e-23,2.6469779601696886e-23,1.1624608760030242e-06,49.0,21.0,0.022002223879098892,-0.0009834583615884185,-0.002180711831897497,1.1433145118644461e-05,3.180493149557151e-05,5.7617628044681624e-05,-0.0009834583615884185,8.816955960355699e-05,3.180493149557151e-05,-1.4595503898817697e-06,-1.325205403190921e-06,1.3129010682441655e-20,-0.002180711831897497,3.180493149557151e-05,0.0004667367320507765,6.196064636884861e-21,-3.1804929676582105e-06,-1.8195039956481196e-05,1.1433145118644461e-05,-1.4595503898817697e-06,6.196064636884861e-21,3.0407299789203535e-08,-3.687057616001211e-23,-2.3771039744370215e-22,3.180493149557151e-05,-1.325205403190921e-06,-3.1804929676582105e-06,-3.687057616001211e-23,1.325205403190921e-07,1.1911400820763599e-22,5.7617628044681624e-05,1.3129010682441655e-20,-1.8195039956481196e-05,-2.3771039744370215e-22,1.1911400820763599e-22,9.097519750866923e-07,49.0,22.0,0.021090634167194366,-0.0009400756098330021,-0.0019976606126874685,1.0913456208072603e-05,2.903928361774888e-05,5.041542317485437e-05,-0.0009400756098330021,8.421685197390616e-05,2.903928361774888e-05,-1.3932071851741057e-06,-1.2099701507395366e-06,1.1434944787933055e-20,-0.0019976606126874685,2.903928361774888e-05,0.0004070397117175162,4.450709505430138e-21,-2.7656460588332266e-06,-1.512462677055737e-05,1.0913456208072603e-05,-1.3932071851741057e-06,4.450709505430138e-21,2.9025150283246148e-08,-5.668532321687281e-23,-1.5105010163330962e-22,2.903928361774888e-05,-1.2099701507395366e-06,-2.7656460588332266e-06,-5.668532321687281e-23,1.1523525245138444e-07,-3.044024654195142e-22,5.041542317485437e-05,1.1434944787933055e-20,-1.512462677055737e-05,-1.5105010163330962e-22,-3.044024654195142e-22,7.202203278211528e-07,49.0,23.0,0.020251579582691193,-0.0009003601153381169,-0.001836734707467258,1.0438958270242438e-05,2.6619343771017157e-05,4.436557355802506e-05,-0.0009003601153381169,8.0603473179508e-05,2.6619343771017157e-05,-1.3326329053597874e-06,-1.109139361687994e-06,-3.3881317890172014e-21,-0.001836734707467258,2.6619343771017157e-05,0.0003571140405256301,-1.861546744485539e-21,-2.4199403014790732e-06,-1.2675877769652288e-05,1.0438958270242438e-05,-1.3326329053597874e-06,-1.861546744485539e-21,2.7763187304685744e-08,2.7181644527124706e-23,5.616197395968746e-23,2.6619343771017157e-05,-1.109139361687994e-06,-2.4199403014790732e-06,2.7181644527124706e-23,1.0083084589496139e-07,1.3234889800848443e-23,4.436557355802506e-05,-3.3881317890172014e-21,-1.2675877769652288e-05,5.616197395968746e-23,1.3234889800848443e-23,5.761762622569222e-07,49.0,24.0,0.01947673223912716,-0.0008638655417598784,-0.0016945054521784186,1.0004001524066553e-05,2.4489796487614512e-05,3.924646807718091e-05,-0.0008638655417598784,7.728751370450482e-05,2.4489796487614512e-05,-1.2771065485139843e-06,-1.0204081490883254e-06,4.235164736271502e-21,-0.0016945054521784186,2.4489796487614512e-05,0.0003150377597194165,1.5560313414791646e-21,-2.1295475107763195e-06,-1.0703582120186184e-05,1.0004001524066553e-05,-1.2771065485139843e-06,1.5560313414791646e-21,2.6606386427374673e-08,-4.341087361934934e-24,-5.765923195779694e-23,2.4489796487614512e-05,-1.0204081490883254e-06,-2.1295475107763195e-06,-4.341087361934934e-24,8.873114154539508e-08,-2.6469779601696886e-23,3.924646807718091e-05,4.235164736271502e-21,-1.0703582120186184e-05,-5.765923195779694e-23,-2.6469779601696886e-23,4.653731480175338e-07,49.0,25.0,0.018758995458483696,-0.0008302151691168547,-0.0015681842342019081,9.603841135685798e-06,2.2605965568800457e-05,3.488575021037832e-05,-0.0008302151691168547,7.423368515446782e-05,2.2605965568800457e-05,-1.226022277478478e-06,-9.419152320333524e-07,-9.740878893424454e-21,-0.0015681842342019081,2.2605965568800457e-05,0.0002793256426230073,-1.4261245043977548e-21,-1.8838304640667047e-06,-9.100630450120661e-06,9.603841135685798e-06,-1.226022277478478e-06,-1.4261245043977548e-21,2.5542131965039516e-08,-2.7644234139668118e-24,6.000225613138646e-23,2.2605965568800457e-05,-9.419152320333524e-07,-1.8838304640667047e-06,-2.7644234139668118e-24,7.849293837125515e-08,5.0954325733266505e-22,3.488575021037832e-05,-9.740878893424454e-21,-9.100630450120661e-06,6.000225613138646e-23,5.0954325733266505e-22,3.791929259477911e-07,49.0,26.0,0.01809227652847767,-0.0007990888552740216,-0.0014554832596331835,9.234462595486548e-06,2.093144939863123e-05,3.1147988920565695e-05,-0.0007990888552740216,7.141209061956033e-05,2.093144939863123e-05,-1.1788675919888192e-06,-8.721437438907742e-07,-1.0587911840678754e-20,-0.0014554832596331835,2.093144939863123e-05,0.0002488176105543971,-4.8938751536764735e-21,-1.6745159427955514e-06,-7.786997230141424e-06,9.234462595486548e-06,-1.1788675919888192e-06,-4.8938751536764735e-21,2.455974268400496e-08,4.903450524048889e-23,1.4020087867114332e-22,2.093144939863123e-05,-8.721437438907742e-07,-1.6745159427955514e-06,4.903450524048889e-23,6.977149524800552e-08,2.713152409173931e-22,3.1147988920565695e-05,-1.0587911840678754e-20,-7.786997230141424e-06,1.4020087867114332e-22,2.713152409173931e-22,3.1147990853241936e-07,49.0,27.0,0.017471326515078545,-0.0007702128496021032,-0.0013545122928917408,8.892446203390136e-06,1.943634561030194e-05,2.7925783797400072e-05,-0.0007702128496021032,6.879719148855656e-05,1.943634561030194e-05,-1.1352058209013194e-06,-8.098477337625809e-07,4.235164736271502e-22,-0.0013545122928917408,1.943634561030194e-05,0.0002225985808763653,9.58939215412466e-22,-1.495103560955613e-06,-6.702188329654746e-06,8.892446203390136e-06,-1.1352058209013194e-06,9.58939215412466e-22,2.3650121860896434e-08,-3.0518675645351125e-24,-3.417022955079369e-23,1.943634561030194e-05,-8.098477337625809e-07,-1.495103560955613e-06,-3.0518675645351125e-24,6.229598170648387e-08,3.970466940254533e-23,2.7925783797400072e-05,4.235164736271502e-22,-6.702188329654746e-06,-3.417022955079369e-23,3.970466940254533e-23,2.577764632860635e-07,49.0,28.0,0.016891583800315857,-0.0007433515274897218,-0.0012636976316571236,8.574858838983346e-06,1.8095908671966754e-05,2.5133205781457946e-05,-0.0007433515274897218,6.636707985308021e-05,1.8095908671966754e-05,-1.0946628208330367e-06,-7.539961757174751e-07,1.1434944787933055e-20,-0.0012636976316571236,1.8095908671966754e-05,0.00019994002650491893,4.096547360183514e-21,-1.340437620456214e-06,-5.799970494990703e-06,8.574858838983346e-06,-1.0946628208330367e-06,4.096547360183514e-21,2.280547484190265e-08,-3.448465373039668e-23,-1.1295121224588322e-22,1.8095908671966754e-05,-7.539961757174751e-07,-1.340437620456214e-06,-3.448465373039668e-23,5.585156870324681e-08,-3.705769144237564e-22,2.5133205781457946e-05,1.1434944787933055e-20,-5.799970494990703e-06,-1.1295121224588322e-22,-3.705769144237564e-22,2.148137241420045e-07,49.0,29.0,0.016349082812666893,-0.0007183011039160192,-0.0011817212216556072,8.279173925984651e-06,1.6889514881768264e-05,2.2700960471411236e-05,-0.0007183011039160192,6.410282367141917e-05,1.6889514881768264e-05,-1.0569158348516794e-06,-7.03729767792538e-07,-0.0,-0.0011817212216556072,1.6889514881768264e-05,0.00018025714962277561,-5.293955920339377e-23,-1.2063939038853277e-06,-5.04465788253583e-06,8.279173925984651e-06,-1.0569158348516794e-06,-5.293955920339377e-23,2.201907989274332e-08,1.6543612251060553e-24,-0.0,1.6889514881768264e-05,-7.03729767792538e-07,-1.2063939038853277e-06,1.6543612251060553e-24,5.026641147765076e-08,-0.0,2.2700960471411236e-05,-0.0,-5.04465788253583e-06,-0.0,-0.0,1.8016635294770822e-07,49.0,30.0,0.01584034226834774,-0.0006948843947611749,-0.0011074719950556755,8.003201401152182e-06,1.5799867469468154e-05,2.0572744688251987e-05,-0.0006948843947611749,6.198800838319585e-05,1.5799867469468154e-05,-1.02168530702329e-06,-6.583278491234523e-07,-1.075382133021959e-20,-0.0011074719950556755,1.5799867469468154e-05,0.00016307680925820023,-6.996331587271155e-21,-1.0896460480580572e-06,-4.408445420267526e-06,8.003201401152182e-06,-1.02168530702329e-06,-6.996331587271155e-21,2.128511056298521e-08,4.632211430296955e-23,1.9013875271041149e-22,1.5799867469468154e-05,-6.583278491234523e-07,-1.0896460480580572e-06,4.632211430296955e-23,4.5401922221799396e-08,1.1221805123145805e-22,2.0572744688251987e-05,-1.075382133021959e-20,-4.408445420267526e-06,1.9013875271041149e-22,1.1221805123145805e-22,1.520153602996288e-07,49.0,31.0,0.015362309291958809,-0.00067294662585482,-0.0010400083847343922,7.74503314460162e-06,1.4812376321060583e-05,1.870249616331421e-05,-0.00067294662585482,6.00083039898891e-05,1.4812376321060583e-05,-9.88727720141469e-07,-6.171823656586639e-07,1.0310371136689298e-21,-0.0010400083847343922,1.4812376321060583e-05,0.0001480133505538106,5.293955920339377e-23,-9.874917168417596e-07,-3.869482043228345e-06,7.74503314460162e-06,-9.88727720141469e-07,5.293955920339377e-23,2.0598493577494992e-08,-1.6543612251060553e-24,3.1796695298178705e-39,1.4812376321060583e-05,-6.171823656586639e-07,-9.874917168417596e-07,-1.6543612251060553e-24,4.114549057021577e-08,-6.873580463284794e-23,1.870249616331421e-05,1.0310371136689298e-21,-3.869482043228345e-06,3.1796695298178705e-39,-6.873580463284794e-23,1.2898273382688785e-07,49.0,32.0,0.014912283048033714,-0.0006523518241010606,-0.0009785278234630823,7.503001143049914e-06,1.3914656847191509e-05,1.7052276234608144e-05,-0.0006523518241010606,5.815116310259327e-05,1.3914656847191509e-05,-9.578299113854882e-07,-5.797773496851732e-07,4.8684841823834334e-21,-0.0009785278234630823,1.3914656847191509e-05,0.00013475038576871157,3.3211865030017006e-21,-8.977198149295873e-07,-3.4104550650226884e-06,7.503001143049914e-06,-9.578299113854882e-07,3.3211865030017006e-21,1.9954789820531005e-08,-3.474158572722716e-23,-7.127276868226423e-23,1.3914656847191509e-05,-5.797773496851732e-07,-8.977198149295873e-07,-3.474158572722716e-23,3.740499110449491e-08,-7.383755743352947e-23,1.7052276234608144e-05,4.8684841823834334e-21,-3.4104550650226884e-06,-7.127276868226423e-23,-7.383755743352947e-23,1.1001468180893426e-07,49.0,33.0,0.014487872831523418,-0.0006329804891720414,-0.0009223429369740188,7.275637472048402e-06,1.3096147995383944e-05,1.5590650946251117e-05,-0.0006329804891720414,5.6405540817650035e-05,1.3096147995383944e-05,-9.288048090638767e-07,-5.456728331409977e-07,-1.2422469192350658e-20,-0.0009223429369740188,1.3096147995383944e-05,0.00012302659160923213,-8.633019096925991e-21,-8.185092497114965e-07,-3.0175456231518183e-06,7.275637472048402e-06,-9.288048090638767e-07,-8.633019096925991e-21,1.9350100188830766e-08,7.113753267956038e-23,1.9947150733370436e-22,1.3096147995383944e-05,-5.456728331409977e-07,-8.185092497114965e-07,7.113753267956038e-23,3.4104552071312355e-08,1.606806922690905e-22,1.5590650946251117e-05,-1.2422469192350658e-20,-3.0175456231518183e-06,1.9947150733370436e-22,1.606806922690905e-22,9.429830072349432e-08,49.0,34.0,0.014086952432990074,-0.000614726566709578,-0.0008708626264706254,7.061648375383811e-06,1.2347796655376442e-05,1.4291430488810875e-05,-0.000614726566709578,5.476168735185638e-05,1.2347796655376442e-05,-9.014869988277496e-07,-5.144914894117392e-07,-0.0,-0.0008708626264706254,1.2347796655376442e-05,0.00011262491898378357,5.293955920339377e-23,-7.483512831640837e-07,-2.6796433303388767e-06,7.061648375383811e-06,-9.014869988277496e-07,5.293955920339377e-23,1.8780978550125838e-08,-1.6543612251060553e-24,-0.0,1.2347796655376442e-05,-5.144914894117392e-07,-7.483512831640837e-07,-1.6543612251060553e-24,3.118130464940805e-08,-0.0,1.4291430488810875e-05,-0.0,-2.6796433303388767e-06,-0.0,-0.0,8.120131411715192e-08,49.0,35.0,0.013707623817026615,-0.0005974961677566171,-0.0008235757704824209,6.8598869802372064e-06,1.1661807548080105e-05,1.3132666026649531e-05,-0.0005974961677566171,5.3210951591609046e-05,1.1661807548080105e-05,-8.75730222560378e-07,-4.859086288888648e-07,-0.0,-0.0008235757704824209,1.1661807548080105e-05,0.00010336405830457807,2.6469779601696886e-23,-6.859887093924044e-07,-2.3877573767094873e-06,6.8598869802372064e-06,-8.75730222560378e-07,2.6469779601696886e-23,1.824438022879349e-08,-1.6543612251060553e-24,-0.0,1.1661807548080105e-05,-4.859086288888648e-07,-6.859887093924044e-07,-1.6543612251060553e-24,2.8582862299231238e-08,-0.0,1.3132666026649531e-05,-0.0,-2.3877573767094873e-06,-0.0,-0.0,7.022816106427854e-08,49.0,36.0,0.013348188251256943,-0.0005812054732814431,-0.0007800388848409057,6.669334197795251e-06,1.1031439498765394e-05,1.209587662742706e-05,-0.0005812054732814431,5.1745635573752224e-05,1.1031439498765394e-05,-8.514043656759895e-07,-4.5964330297465494e-07,-0.0,-0.0007800388848409057,1.1031439498765394e-05,9.509172377875075e-05,-2.6469779601696886e-23,-6.303679924712924e-07,-2.1345665572880534e-06,6.669334197795251e-06,-8.514043656759895e-07,-2.6469779601696886e-23,1.7737590951583115e-08,1.6543612251060553e-24,-0.0,1.1031439498765394e-05,-4.5964330297465494e-07,-6.303679924712924e-07,1.6543612251060553e-24,2.6265333019637183e-08,-0.0,1.209587662742706e-05,-0.0,-2.1345665572880534e-06,-0.0,-0.0,6.098761673456465e-08,49.0,37.0,0.013007121160626411,-0.0005657796282321215,-0.0007398657035082579,6.489081897598226e-06,1.0450837180542294e-05,1.1165424439241178e-05,-0.0005657796282321215,5.0358874432276934e-05,1.0450837180542294e-05,-8.283934676001081e-07,-4.3545156813706853e-07,-9.020897333966604e-21,-0.0007398657035082579,1.0450837180542294e-05,8.767942199483514e-05,-7.059217508664358e-21,-5.806020908494247e-07,-1.9140727545163827e-06,6.489081897598226e-06,-8.283934676001081e-07,-7.059217508664358e-21,1.7258196649549973e-08,6.038418471637102e-23,1.4241454858893832e-22,1.0450837180542294e-05,-4.3545156813706853e-07,-5.806020908494247e-07,6.038418471637102e-23,2.4191754377511643e-08,1.1037009722932352e-22,1.1165424439241178e-05,-9.020897333966604e-21,-1.9140727545163827e-06,1.4241454858893832e-22,1.1037009722932352e-22,5.316869078342279e-08,49.0,38.0,0.012683048844337463,-0.0005511516355909407,-0.0007027183310128748,6.318316991382744e-06,9.914897418639157e-06,1.0328018106520176e-05,-0.0005511516355909407,4.9044512707041577e-05,9.914897418639157e-06,-8.065936185630562e-07,-4.131207163027284e-07,-0.0,-0.0007027183310128748,9.914897418639157e-06,8.101818093564361e-05,-2.6469779601696886e-23,-5.359403871807444e-07,-1.7213362752954708e-06,6.318316991382744e-06,-8.065936185630562e-07,-2.6469779601696886e-23,1.680403372006367e-08,0.0,-0.0,9.914897418639157e-06,-4.131207163027284e-07,-5.359403871807444e-07,0.0,2.2330850057983298e-08,-0.0,1.0328018106520176e-05,-0.0,-1.7213362752954708e-06,-0.0,-0.0,4.652260443549494e-08,49.0,39.0,0.01237473264336586,-0.0005372610758058727,-0.0006683003157377243,6.1563087001559325e-06,9.419151865586173e-06,9.57230895437533e-06,-0.0005372610758058727,4.779702430823818e-05,9.419151865586173e-06,-7.859117658881587e-07,-3.924646705399937e-07,-1.852884572118782e-22,-0.0006683003157377243,9.419151865586173e-06,7.501520303776488e-05,-0.0,-4.957448709319578e-07,-1.552266326143581e-06,6.1563087001559325e-06,-7.859117658881587e-07,-0.0,1.6373160605098747e-08,-8.271806125530277e-25,0.0,9.419151865586173e-06,-3.924646705399937e-07,-4.957448709319578e-07,-8.271806125530277e-25,2.0656035104593684e-08,8.271806125530277e-24,9.57230895437533e-06,-1.852884572118782e-22,-1.552266326143581e-06,0.0,8.271806125530277e-24,4.0849116089702875e-08,49.0,40.0,0.012081051245331764,-0.0005240535247139633,-0.0006363507127389312,6.002400823490461e-06,8.959681508713402e-06,8.888572665455285e-06,-0.0005240535247139633,4.661143248085864e-05,8.959681508713402e-06,-7.662639518457581e-07,-3.733200628630584e-07,-7.252719610864947e-21,-0.0006363507127389312,8.959681508713402e-06,6.959112215554342e-05,-6.50414135134363e-21,-4.5947084004183125e-07,-1.4034588957656524e-06,6.002400823490461e-06,-7.662639518457581e-07,-6.50414135134363e-21,1.5963832922238907e-08,7.189449204977425e-23,1.1255882652073905e-22,8.959681508713402e-06,-3.733200628630584e-07,-4.5947084004183125e-07,7.189449204977425e-23,1.9144618335076302e-08,8.437242248040882e-23,8.888572665455285e-06,-7.252719610864947e-21,-1.4034588957656524e-06,1.1255882652073905e-22,8.437242248040882e-23,3.598612607902396e-08,49.0,41.0,0.011800985783338547,-0.0005114798550494015,-0.0006066389032639563,5.856000825588126e-06,8.533030268154107e-06,8.268440069514327e-06,-0.0005114798550494015,4.548324068309739e-05,8.533030268154107e-06,-7.475745746887696e-07,-3.5554290889194817e-07,2.6469779601696886e-23,-0.0006066389032639563,8.533030268154107e-06,6.467776984209195e-05,-2.804951142972541e-23,-4.266514963546797e-07,-1.2720677204924868e-06,5.856000825588126e-06,-7.475745746887696e-07,-2.804951142972541e-23,1.5574469713897088e-08,1.85030591696774e-25,9.652617407191689e-25,8.533030268154107e-06,-3.5554290889194817e-07,-4.266514963546797e-07,1.85030591696774e-25,1.777714508932604e-08,-8.271806125530277e-25,8.268440069514327e-06,2.6469779601696886e-23,-1.2720677204924868e-06,9.652617407191689e-25,-8.271806125530277e-25,3.180169017014123e-08,49.0,42.0,0.011533611454069614,-0.0004994954797439277,-0.0005789606948383152,5.7165725593222305e-06,8.136144970194437e-06,7.704682502662763e-06,-0.0004994954797439277,4.44083780166693e-05,8.136144970194437e-06,-7.297751949408848e-07,-3.390060214769619e-07,-3.441071348220595e-22,-0.0005789606948383152,8.136144970194437e-06,6.021641820552759e-05,-0.0,-3.9688512742941384e-07,-1.1557024208741495e-06,5.7165725593222305e-06,-7.297751949408848e-07,-0.0,1.5203649894601767e-08,-8.271806125530277e-25,4.1359030627651384e-25,8.136144970194437e-06,-3.390060214769619e-07,-3.9688512742941384e-07,-8.271806125530277e-25,1.653688030955891e-08,1.4889251025954498e-23,7.704682502662763e-06,-3.441071348220595e-22,-1.1557024208741495e-06,4.1359030627651384e-25,1.4889251025954498e-23,2.8187862710638e-08,49.0,43.0,0.011278084479272366,-0.00048805991536937654,-0.0005531345959752798,5.583628990279976e-06,7.766319868096616e-06,7.191037184384186e-06,-0.00048805991536937654,4.3383148295106366e-05,7.766319868096616e-06,-7.128036827452888e-07,-3.235966801184986e-07,-1.5881867761018131e-22,-0.0005531345959752798,7.766319868096616e-06,5.6156237405957654e-05,2.4353885837660415e-23,-3.698247610373073e-07,-1.0523468745304854e-06,5.583628990279976e-06,-7.128036827452888e-07,2.4353885837660415e-23,1.4850076723860184e-08,-1.6038592374223245e-25,-4.563827070297131e-25,7.766319868096616e-06,-3.235966801184986e-07,-3.698247610373073e-07,-1.6038592374223245e-25,1.5409364451102192e-08,7.444625512977249e-24,7.191037184384186e-06,-1.5881867761018131e-22,-1.0523468745304854e-06,-4.563827070297131e-25,7.444625512977249e-24,2.505587914924945e-08,49.0,44.0,0.011033633723855019,-0.00047713631647638977,-0.0005289989640004933,5.456728104036301e-06,7.421150257869158e-06,6.722056241414975e-06,-0.00047713631647638977,4.240419730194844e-05,7.421150257869158e-06,-6.966035925870528e-07,-3.0921458460397844e-07,-5.293955920339377e-23,-0.0005289989640004933,7.421150257869158e-06,5.2453120588324964e-05,-4.5495829836404853e-23,-3.4516978075771476e-07,-9.60293732532591e-07,5.456728104036301e-06,-6.966035925870528e-07,-4.5495829836404853e-23,1.4512575141623074e-08,2.993870609390877e-25,4.193317838561321e-25,7.421150257869158e-06,-3.0921458460397844e-07,-3.4516978075771476e-07,2.993870609390877e-25,1.4382074198238115e-08,8.271806125530277e-25,6.722056241414975e-06,-5.293955920339377e-23,-9.60293732532591e-07,4.193317838561321e-25,8.271806125530277e-25,2.233241325200197e-08,49.0,45.0,0.010799556039273739,-0.00046669100993312895,-0.0005064093857072294,5.335467449185671e-06,7.0984915510052815e-06,6.292988928180421e-06,-0.00046669100993312895,4.146845458308235e-05,7.0984915510052815e-06,-6.811235380155267e-07,-2.9577049076578987e-07,0.0,-0.0005064093857072294,7.0984915510052815e-06,4.9068657972384244e-05,2.1280138229842866e-23,-3.2265870686387643e-07,-8.78091498179856e-07,5.335467449185671e-06,-6.811235380155267e-07,2.1280138229842866e-23,1.419007311653786e-08,-9.67111520934299e-25,3.277882845242917e-26,7.0984915510052815e-06,-2.9577049076578987e-07,-3.2265870686387643e-07,-9.67111520934299e-25,1.3444112489935378e-08,0.0,6.292988928180421e-06,0.0,-8.78091498179856e-07,3.277882845242917e-26,0.0,1.9956624797146105e-08,49.0,46.0,0.010575203225016594,-0.0004566933203022927,-0.0004852366400882602,5.219479135121219e-06,6.796427896915702e-06,5.899677034904016e-06,-0.0004566933203022927,4.057312253280543e-05,6.796427896915702e-06,-6.663164526798937e-07,-2.8318450517872407e-07,2.6469779601696886e-22,-0.0004852366400882602,6.796427896915702e-06,4.596928192768246e-05,1.9935998133436784e-23,-3.020634835593228e-07,-8.045014396884653e-07,5.219479135121219e-06,-6.663164526798937e-07,1.9935998133436784e-23,1.3881593652342872e-08,-9.581797419425473e-25,6.469342896830961e-26,6.796427896915702e-06,-2.8318450517872407e-07,-3.020634835593228e-07,-9.581797419425473e-25,1.258597759346003e-08,-1.1580528575742387e-23,5.899677034904016e-06,2.6469779601696886e-22,-8.045014396884653e-07,6.469342896830961e-26,-1.1580528575742387e-23,1.7877809455058014e-08,49.0,47.0,0.010359982028603554,-0.000447115016868338,-0.0004653646028600633,5.108426194055937e-06,6.513243533845525e-06,5.53847257833695e-06,-0.000447115016868338,3.971563637605868e-05,6.513243533845525e-06,-6.521395334857516e-07,-2.7138514724356355e-07,-9.26442286059391e-23,-0.0004653646028600633,6.513243533845525e-06,4.312559758545831e-05,-0.0,-2.8318450517872407e-07,-7.384629725493141e-07,5.108426194055937e-06,-6.521395334857516e-07,-0.0,1.3586240577012632e-08,0.0,0.0,6.513243533845525e-06,-2.7138514724356355e-07,-2.8318450517872407e-07,0.0,1.1799354382446836e-08,4.1359030627651384e-24,5.53847257833695e-06,-9.26442286059391e-23,-7.384629725493141e-07,0.0,4.1359030627651384e-24,1.60535424953423e-08,49.0,48.0,0.010153346695005894,-0.0004379302845336497,-0.0004466888785827905,5.002000762033276e-06,6.247396868275246e-06,5.206164132687263e-06,-0.0004379302845336497,3.889364961651154e-05,6.247396868275246e-06,-6.385532742569922e-07,-2.6030821231870505e-07,1.3234889800848443e-23,-0.0004466888785827905,6.247396868275246e-06,4.0511757106287405e-05,-0.0,-2.658466655702796e-07,-6.790648967580637e-07,5.002000762033276e-06,-6.385532742569922e-07,-0.0,1.3303193213687337e-08,0.0,-2.0679515313825692e-25,6.247396868275246e-06,-2.6030821231870505e-07,-2.658466655702796e-07,0.0,1.1076944694821123e-08,0.0,5.206164132687263e-06,1.3234889800848443e-23,-6.790648967580637e-07,-2.0679515313825692e-25,0.0,1.4448189311622173e-08,49.0,49.0,0.009954793378710747,-0.0004291153163649142,-0.0004291153163649142,4.899919076706283e-06,5.99750092078466e-06,4.899919076706283e-06,-0.0004291153163649142,3.810500493273139e-05,5.99750092078466e-06,-6.255215794226388e-07,-2.498958906471671e-07,1.9852334701272664e-22,-0.0004291153163649142,5.99750092078466e-06,3.810500493273139e-05,-0.0,-2.498958906471671e-07,-6.255215794226388e-07,4.899919076706283e-06,-6.255215794226388e-07,-0.0,1.303170016342392e-08,4.1359030627651384e-25,-2.0679515313825692e-25,5.99750092078466e-06,-2.498958906471671e-07,-2.498958906471671e-07,4.1359030627651384e-25,1.0412327888786876e-08,-7.858215819253763e-24,4.899919076706283e-06,1.9852334701272664e-22,-6.255215794226388e-07,-2.0679515313825692e-25,-7.858215819253763e-24,1.303170016342392e-08,49.0,50.0,0.009763856418430805,-0.00042064825538545847,-0.0004125588748138398,4.801920567842899e-06,5.7623051361588296e-06,4.617231297743274e-06,-0.00042064825538545847,3.7347705074353144e-05,5.7623051361588296e-06,-6.13011138739239e-07,-2.4009602839214494e-07,1.1911400820763599e-22,-0.0004125588748138398,5.7623051361588296e-06,3.588521576602943e-05,4.6688196250090033e-23,-2.351961256863433e-07,-5.771539122179092e-07,4.801920567842899e-06,-6.13011138739239e-07,4.6688196250090033e-23,1.2771065982519758e-08,-7.195904867916824e-25,-3.3731154895758783e-25,5.7623051361588296e-06,-2.4009602839214494e-07,-2.351961256863433e-07,-7.195904867916824e-25,9.79983827420483e-09,-4.963083675318166e-24,4.617231297743274e-06,1.1911400820763599e-22,-5.771539122179092e-07,-3.3731154895758783e-25,-4.963083675318166e-24,1.1778651831662046e-08,49.0,51.0,0.009580105543136597,-0.0004125089035369456,-0.00039694251609034836,4.707765583589207e-06,5.540677648241399e-06,4.355878900241805e-06,-0.0004125089035369456,3.661992377601564e-05,5.540677648241399e-06,-6.009913136040268e-07,-2.3086157341367652e-07,9.26442286059391e-23,-0.00039694251609034836,5.540677648241399e-06,3.383458897587843e-05,2.9346827898241196e-23,-2.216271184352081e-07,-5.333728836376395e-07,4.707765583589207e-06,-6.009913136040268e-07,2.9346827898241196e-23,1.2520652958869505e-08,-1.0194115198362548e-24,-4.903694972321894e-26,5.540677648241399e-06,-2.3086157341367652e-07,-2.216271184352081e-07,-1.0194115198362548e-24,9.234462972074198e-09,-4.1359030627651384e-24,4.355878900241805e-06,9.26442286059391e-23,-5.333728836376395e-07,-4.903694972321894e-26,-4.1359030627651384e-24,1.0667458028024157e-08,49.0,52.0,0.009403144009411335,-0.0004046785761602223,-0.0003821964201051742,4.617231297743274e-06,5.331595730240224e-06,4.113885552214924e-06,-0.0004046785761602223,3.591996573959477e-05,5.331595730240224e-06,-5.894337959944096e-07,-2.2214982209334266e-07,0.0,-0.0003821964201051742,5.331595730240224e-06,3.193730299244635e-05,-1.3850597315095253e-23,-2.0908218800741452e-07,-4.936662776344747e-07,4.617231297743274e-06,-5.894337959944096e-07,-1.3850597315095253e-23,1.227987134200248e-08,9.06749449862646e-26,2.1409362027765186e-25,5.331595730240224e-06,-2.2214982209334266e-07,-2.0908218800741452e-07,9.06749449862646e-26,8.711757537582798e-09,0.0,4.113885552214924e-06,0.0,-4.936662776344747e-07,2.1409362027765186e-25,0.0,9.679730794687202e-09,49.0,53.0,0.009232601150870323,-0.0003971399855799973,-0.00036825708230026066,4.530113983491901e-06,5.134128969075391e-06,3.889491836162051e-06,-0.0003971399855799973,3.5246266634203494e-05,5.134128969075391e-06,-5.783124379377114e-07,-2.1392204985204444e-07,0.0,-0.00036825708230026066,5.134128969075391e-06,3.0179287932696752e-05,-0.0,-1.9746650536944799e-07,-4.575872765144595e-07,4.530113983491901e-06,-5.783124379377114e-07,-0.0,1.2048175790368987e-08,-4.1359030627651384e-25,0.0,5.134128969075391e-06,-2.1392204985204444e-07,-1.9746650536944799e-07,-4.1359030627651384e-25,8.227771353119806e-09,0.0,3.889491836162051e-06,0.0,-4.575872765144595e-07,0.0,0.0,8.799754702693008e-09,49.0,54.0,0.009068134240806103,-0.00038987715379334986,-0.00035506670246832073,4.446223101695068e-06,4.947433353663655e-06,3.6811261452385224e-06,-0.00038987715379334986,3.459737490629777e-05,4.947433353663655e-06,-5.676029104506597e-07,-2.061430564026523e-07,1.3234889800848443e-23,-0.00035506670246832073,4.947433353663655e-06,2.854799276974518e-05,-1.2380718312423278e-23,-1.8669560120088136e-07,-4.2474530914660136e-07,4.446223101695068e-06,-5.676029104506597e-07,-1.2380718312423278e-23,1.1825060930448217e-08,4.945566230056828e-25,-2.259123220337214e-26,4.947433353663655e-06,-2.061430564026523e-07,-1.8669560120088136e-07,4.945566230056828e-25,7.77898367942953e-09,-8.271806125530277e-25,3.6811261452385224e-06,1.3234889800848443e-23,-4.2474530914660136e-07,-2.259123220337214e-26,-8.271806125530277e-25,8.01406230266366e-09,49.0,55.0,0.00890942383557558,-0.00038287523784674704,-0.00034257257357239723,4.3653826651279815e-06,4.770739451487316e-06,3.4873826280090725e-06,-0.00038287523784674704,3.3971948141697794e-05,4.770739451487316e-06,-5.572828740696423e-07,-1.9878081047863816e-07,6.617444900424221e-23,-0.00034257257357239723,4.770739451487316e-06,2.7032201614929363e-05,-2.3446697374378062e-23,-1.7669405849574105e-07,-3.94798036040811e-07,4.3653826651279815e-06,-5.572828740696423e-07,-2.3446697374378062e-23,1.1610059580391408e-08,1.532576656690906e-25,1.3563755755650928e-25,4.770739451487316e-06,-1.9878081047863816e-07,-1.7669405849574105e-07,1.532576656690906e-25,7.36225214126307e-09,-2.481541837659083e-24,3.4873826280090725e-06,6.617444900424221e-23,-3.94798036040811e-07,1.3563755755650928e-25,-2.481541837659083e-24,7.311074856630739e-09,49.0,56.0,0.008756173774600029,-0.00037612038431689143,-0.0003307265287730843,4.287429419491673e-06,4.603345132636605e-06,3.307000724817044e-06,-0.00037612038431689143,3.336873123771511e-05,4.603345132636605e-06,-5.473314104165183e-07,-1.9180605193014344e-07,9.26442286059391e-23,-0.0003307265287730843,4.603345132636605e-06,2.562186637078412e-05,3.3335141396526725e-23,-1.6739436148327513e-07,-3.674445281376393e-07,4.287429419491673e-06,-5.473314104165183e-07,3.3335141396526725e-23,1.1402737420951325e-08,-1.0449678521522473e-24,-6.447068669614947e-26,4.603345132636605e-06,-1.9180605193014344e-07,-1.6739436148327513e-07,-1.0449678521522473e-24,6.974765209832867e-09,-3.308722450212111e-24,3.307000724817044e-06,9.26442286059391e-23,-3.674445281376393e-07,-6.447068669614947e-26,-3.308722450212111e-24,6.680809683246025e-09,49.0,57.0,0.008608106523752213,-0.0003695997584145516,-0.00031948453397490084,4.2122110244235955e-06,4.444609203346772e-06,3.13884811475873e-06,-0.0003695997584145516,3.278656367911026e-05,4.444609203346772e-06,-5.377290790420375e-07,-1.8519205013944884e-07,-3.044024654195142e-22,-0.00031948453397490084,4.444609203346772e-06,2.4307973944814876e-05,-8.845045723152184e-22,-1.5873604297667043e-07,-3.424198098400666e-07,4.2122110244235955e-06,-5.377290790420375e-07,-8.845045723152184e-22,1.1202689442768587e-08,9.49830812830618e-24,1.0185028112380081e-23,4.444609203346772e-06,-1.8519205013944884e-07,-1.5873604297667043e-07,9.49830812830618e-24,6.614001790694601e-09,-9.098986738083304e-24,3.13884811475873e-06,-3.044024654195142e-22,-3.424198098400666e-07,1.0185028112380081e-23,-9.098986738083304e-24,6.1146394614297606e-09,49.0,58.0,0.008464964106678963,-0.0003633013693615794,-0.0003088061639573425,4.1395869629923254e-06,4.293944130040472e-06,2.9819057090207934e-06,-0.0003633013693615794,3.222436134819873e-05,4.293944130040472e-06,-5.284579174258397e-07,-1.789143482255895e-07,-8.602678370551488e-23,-0.0003088061639573425,4.293944130040472e-06,2.308241710125003e-05,-3.0031208909731116e-23,-1.5066471803493187e-07,-3.1948991363606183e-07,4.1395869629923254e-06,-5.284579174258397e-07,-3.0031208909731116e-23,1.100953994637166e-08,6.096115422979082e-25,2.088748370034524e-25,4.293944130040472e-06,-1.789143482255895e-07,-1.5066471803493187e-07,6.096115422979082e-25,6.277696584788828e-09,2.68833699079734e-24,2.9819057090207934e-06,-8.602678370551488e-23,-3.1948991363606183e-07,2.088748370034524e-25,2.68833699079734e-24,5.6050861729772805e-09,49.0,59.0,0.00832650437951088,-0.0003572140703909099,-0.0002986543986480683,4.069424448971404e-06,4.150812856096309e-06,2.8352546905807685e-06,-0.0003572140703909099,3.168111652485095e-05,4.150812856096309e-06,-5.195009862291045e-07,-1.7295053567067953e-07,-7.940933880509066e-23,-0.0002986543986480683,4.150812856096309e-06,2.193789441662375e-05,-0.0,-1.431314728961297e-07,-2.984478726375528e-07,4.069424448971404e-06,-5.195009862291045e-07,-0.0,1.0822937213106343e-08,-4.1359030627651384e-25,2.0679515313825692e-25,4.150812856096309e-06,-1.7295053567067953e-07,-1.431314728961297e-07,-4.1359030627651384e-25,5.963811666731544e-09,2.481541837659083e-24,2.8352546905807685e-06,-7.940933880509066e-23,-2.984478726375528e-07,2.0679515313825692e-25,2.481541837659083e-24,5.1456527927484785e-09,49.0,60.0,0.008192500099539757,-0.0003513274132274091,-0.00028899512835778296,4.001600700576091e-06,4.0147206163965166e-06,2.698064918149612e-06,-0.0003513274132274091,3.115588697255589e-05,4.0147206163965166e-06,-5.10842653511645e-07,-1.6728002094623662e-07,-1.522012327097571e-21,-0.00028899512835778296,4.0147206163965166e-06,2.0867815692326985e-05,-1.8009444555060926e-21,-1.360922254889374e-07,-2.7911016786674736e-07,4.001600700576091e-06,-5.10842653511645e-07,-1.8009444555060926e-21,1.0642555281492605e-08,1.1331508064930365e-23,2.4087902450803425e-23,4.0147206163965166e-06,-1.6728002094623662e-07,-1.360922254889374e-07,1.1331508064930365e-23,5.670509395372392e-09,1.2614504341433672e-23,2.698064918149612e-06,-1.522012327097571e-21,-2.7911016786674736e-07,2.4087902450803425e-23,1.2614504341433672e-23,4.730680736031445e-09,49.0,61.0,0.008062741719186306,-0.00034563164808787405,-0.000279797037364915,3.936000666726613e-06,3.885213573084911e-06,2.56958560385101e-06,-0.00034563164808787405,3.0647788662463427e-05,3.885213573084911e-06,-5.024681399845576e-07,-1.6188390361548954e-07,-7.279189390466644e-23,-0.000279797037364915,3.885213573084911e-06,1.9866223738063127e-05,-8.615601174356456e-24,-1.295071143658788e-07,-2.6131380082006217e-07,3.936000666726613e-06,-5.024681399845576e-07,-8.615601174356456e-24,1.046808684179723e-08,5.616475789912579e-26,1.1332679621982232e-25,3.885213573084911e-06,-1.6188390361548954e-07,-1.295071143658788e-07,5.616475789912579e-26,5.39612976524495e-09,2.481541837659083e-24,2.56958560385101e-06,-7.279189390466644e-23,-2.6131380082006217e-07,1.1332679621982232e-25,2.481541837659083e-24,4.355229954455808e-09,49.0,62.0,0.00793702993541956,-0.00034011760726571083,-0.00027103122556582093,3.87251657230081e-06,3.7618733585986774e-06,2.449136445648037e-06,-0.00034011760726571083,3.015599759237375e-05,3.7618733585986774e-06,-4.943638600707345e-07,-1.5674471853799332e-07,-3.970466940254533e-23,-0.00027103122556582093,3.7618733585986774e-06,1.8927728888229467e-05,1.6417187824668024e-23,-1.2334011501025088e-07,-2.4491362182743615e-07,3.87251657230081e-06,-4.943638600707345e-07,1.6417187824668024e-23,1.0299246788747496e-08,-5.20570790469543e-25,-5.633561947044403e-27,3.7618733585986774e-06,-1.5674471853799332e-07,-1.2334011501025088e-07,-5.20570790469543e-25,5.139171310730717e-09,1.2407709188295415e-24,2.449136445648037e-06,-3.970466940254533e-23,-2.4491362182743615e-07,-5.633561947044403e-27,1.2407709188295415e-24,4.014977683652887e-09,49.0,63.0,0.00781517755240202,-0.00033477676333859563,-0.0002626710047479719,3.8110481455078116e-06,3.644314801931614e-06,2.336099214517162e-06,-0.00033477676333859563,2.967974251077976e-05,3.644314801931614e-06,-4.865167966272566e-07,-1.5184645008048392e-07,-2.6469779601696886e-23,-0.0002626710047479719,3.644314801931614e-06,1.8047436242341064e-05,-0.0,-1.1755854245620867e-07,-2.297802552675421e-07,3.8110481455078116e-06,-4.865167966272566e-07,-0.0,1.0135766892460651e-08,0.0,0.0,3.644314801931614e-06,-1.5184645008048392e-07,-1.1755854245620867e-07,0.0,4.898272454312291e-09,1.0339757656912846e-24,2.336099214517162e-06,-2.6469779601696886e-23,-2.297802552675421e-07,0.0,1.0339757656912846e-24,3.706133178127402e-09,49.0,64.0,0.007697009947150946,-0.0003296010836493224,-0.00025469172396697104,3.751500571524957e-06,3.5321820632816525e-06,2.2299129796010675e-06,-0.0003296010836493224,2.9218295821920037e-05,3.5321820632816525e-06,-4.789149556927441e-07,-1.4717424789978395e-07,7.213014941462401e-22,-0.00025469172396697104,3.5321820632816525e-06,1.7220902009285055e-05,9.207927798005602e-22,-1.1213276707167097e-07,-2.1579802478299825e-07,3.751500571524957e-06,-4.789149556927441e-07,9.207927798005602e-22,9.977394910265502e-09,-1.0161031752504163e-23,-9.531382699479382e-24,3.5321820632816525e-06,-1.4717424789978395e-07,-1.1213276707167097e-07,-1.0161031752504163e-23,4.67219862798629e-09,-7.031035206700735e-24,2.2299129796010675e-06,7.213014941462401e-22,-2.1579802478299825e-07,-9.531382699479382e-24,-7.031035206700735e-24,3.4253655467608723e-09,50.0,3.0,0.09760180860757828,-0.005656108725816011,-0.05882352963089943,7.54147840780206e-05,0.001176470541395247,0.009999999776482582,-0.005656108725816011,0.0005419475492089987,0.001176470541395247,-9.426848009752575e-06,-4.801920658792369e-05,1.1384122811097797e-18,-0.05882352963089943,0.001176470541395247,0.15882353484630585,5.601874549597095e-20,-0.001176470541395247,-0.05999999865889549,7.54147840780206e-05,-9.426848009752575e-06,5.601874549597095e-20,1.923846468798729e-07,-2.8330140808148735e-23,-2.75232910470112e-20,0.001176470541395247,-4.801920658792369e-05,-0.001176470541395247,-2.8330140808148735e-23,4.801920658792369e-05,2.168404344971009e-19,0.009999999776482582,1.1384122811097797e-18,-0.05999999865889549,-2.75232910470112e-20,2.168404344971009e-19,0.029999999329447746,50.0,4.0,0.08152488619089127,-0.004418551921844482,-0.03829411789774895,5.656108623952605e-05,0.0007058823248371482,0.004999999888241291,-0.004418551921844482,0.0004136635398026556,0.0007058823248371482,-7.070135779940756e-06,-2.8811524316552095e-05,2.520770051028798e-18,-0.03829411789774895,0.0007058823248371482,0.06052941083908081,5.845243364272414e-20,-0.00047058824566192925,-0.014999999664723873,5.656108623952605e-05,-7.070135779940756e-06,5.845243364272414e-20,1.442884780544773e-07,-2.428805034640993e-22,-1.6710599337219696e-20,0.0007058823248371482,-2.8811524316552095e-05,-0.00047058824566192925,-2.428805034640993e-22,1.9207682271371596e-05,-1.0570971181733668e-18,0.004999999888241291,2.520770051028798e-18,-0.014999999664723873,-1.6710599337219696e-20,-1.0570971181733668e-18,0.004999999888241291,50.0,5.0,0.07004007697105408,-0.0036289591807872057,-0.026957983151078224,4.5248867536429316e-05,0.00047058824566192925,0.0028571428265422583,-0.0036289591807872057,0.00033477236866019666,0.00047058824566192925,-5.6561084420536645e-06,-1.9207682271371596e-05,2.981555974335137e-19,-0.026957983151078224,0.00047058824566192925,0.03062184900045395,1.7166992605124778e-21,-0.00023529412283096462,-0.0057142856530845165,4.5248867536429316e-05,-5.6561084420536645e-06,1.7166992605124778e-21,1.1543078670683826e-07,1.705306114800718e-22,-1.5771201052088445e-21,0.00047058824566192925,-1.9207682271371596e-05,-0.00023529412283096462,1.705306114800718e-22,9.603841135685798e-06,-1.0842021724855044e-19,0.0028571428265422583,2.981555974335137e-19,-0.0057142856530845165,-1.5771201052088445e-21,-1.0842021724855044e-19,0.0014285714132711291,50.0,6.0,0.06140594556927681,-0.003080155234783888,-0.02002100832760334,3.77073920390103e-05,0.00033613445702940226,0.0017857142956927419,-0.003080155234783888,0.0002812636084854603,0.00033613445702940226,-4.713424004876288e-06,-1.3719773960474413e-05,1.0842021724855044e-19,-0.02002100832760334,0.00033613445702940226,0.017829831689596176,-1.598911689731446e-20,-0.000134453788632527,-0.0026785715017467737,3.77073920390103e-05,-4.713424004876288e-06,-1.598911689731446e-20,9.619232343993644e-08,4.110477002939034e-22,5.519498952424499e-22,0.00033613445702940226,-1.3719773960474413e-05,-0.000134453788632527,4.110477002939034e-22,5.487909675139235e-06,-4.404571325722362e-20,0.0017857142956927419,1.0842021724855044e-19,-0.0026785715017467737,5.519498952424499e-22,-4.404571325722362e-20,0.0005357142654247582,50.0,7.0,0.0546724833548069,-0.0026761472690850496,-0.015462185256183147,3.2320622267434373e-05,0.0002521008427720517,0.0011904762359336019,-0.0026761472690850496,0.0002425530692562461,0.0002521008427720517,-4.040077783429297e-06,-1.0289830242982134e-05,3.9302328752599536e-19,-0.015462185256183147,0.0002521008427720517,0.011344538070261478,3.331916465341127e-20,-8.403361425735056e-05,-0.0014285714132711291,3.2320622267434373e-05,-4.040077783429297e-06,3.331916465341127e-20,8.24505619334559e-08,-4.563663077947849e-22,-3.3412401802495347e-21,0.0002521008427720517,-1.0289830242982134e-05,-8.403361425735056e-05,-4.563663077947849e-22,3.4299434901186032e-06,-6.183340514956392e-20,0.0011904762359336019,3.9302328752599536e-19,-0.0014285714132711291,-3.3412401802495347e-21,-6.183340514956392e-20,0.0002380952355451882,50.0,8.0,0.04927224665880203,-0.00236613885499537,-0.012303921394050121,2.8280543119763024e-05,0.0001960784284165129,0.0008333333535119891,-0.00236613885499537,0.00021323433611541986,0.0001960784284165129,-3.535067889970378e-06,-8.003201401152182e-06,6.776263578034403e-21,-0.012303921394050121,0.0001960784284165129,0.007682072930037975,6.591692441509973e-21,-5.602241071755998e-05,-0.0008333333535119891,2.8280543119763024e-05,-3.535067889970378e-06,6.591692441509973e-21,7.214423902723865e-08,7.32834867772512e-23,-1.3794670547903066e-21,0.0001960784284165129,-8.003201401152182e-06,-5.602241071755998e-05,7.32834867772512e-23,2.286628841829952e-06,1.6940658945086007e-20,0.0008333333535119891,6.776263578034403e-21,-0.0008333333535119891,-1.3794670547903066e-21,1.6940658945086007e-20,0.0001190476177725941,50.0,9.0,0.04484409838914871,-0.002120663644745946,-0.010024955496191978,2.51382607530104e-05,0.00015686274855397642,0.000606060610152781,-0.002120663644745946,0.00019025302026420832,0.00015686274855397642,-3.1422825941263e-06,-6.402561211871216e-06,-3.7269449679189215e-20,-0.010024955496191978,0.00015686274855397642,0.005449961870908737,3.204884373713507e-22,-3.9215687138494104e-05,-0.0005194804980419576,2.51382607530104e-05,-3.1422825941263e-06,3.204884373713507e-22,6.41282156266243e-08,1.3622693821855092e-23,-9.65406271869919e-23,0.00015686274855397642,-6.402561211871216e-06,-3.9215687138494104e-05,1.3622693821855092e-23,1.600640302967804e-06,1.1434944787933055e-20,0.000606060610152781,-3.7269449679189215e-20,-0.0005194804980419576,-9.65406271869919e-23,1.1434944787933055e-20,6.49350622552447e-05,50.0,10.0,0.04114685207605362,-0.0019214315107092261,-0.008326203562319279,2.2624433768214658e-05,0.00012834224617108703,0.00045454545761458576,-0.0019214315107092261,0.00017175156972371042,0.00012834224617108703,-2.8280542210268322e-06,-5.238458925305167e-06,-2.0328790734103208e-20,-0.008326203562319279,0.00012834224617108703,0.0040093581192195415,-6.2160664133960185e-21,-2.8520498744910583e-05,-0.0003409090859349817,2.2624433768214658e-05,-2.8280542210268322e-06,-6.2160664133960185e-21,5.771539335341913e-08,1.0943646457077635e-22,2.453660085389462e-22,0.00012834224617108703,-5.238458925305167e-06,-2.8520498744910583e-05,1.0943646457077635e-22,1.1641020591923734e-06,1.2705494208814505e-21,0.00045454545761458576,-2.0328790734103208e-20,-0.0003409090859349817,2.453660085389462e-22,1.2705494208814505e-21,3.787878813454881e-05,50.0,11.0,0.038013163954019547,-0.001756478799507022,-0.007025915198028088,2.056766788882669e-05,0.00010695186938391998,0.00034965036320500076,-0.001756478799507022,0.00015653464652132243,0.00010695186938391998,-2.5709584861033363e-06,-4.3653826651279815e-06,-6.098637220230962e-20,-0.007025915198028088,0.00010695186938391998,0.003036884590983391,-8.778746066145066e-22,-2.139037496817764e-05,-0.00023310023243539035,2.056766788882669e-05,-2.5709584861033363e-06,-8.778746066145066e-22,5.246853973517318e-08,-1.0072060864169716e-23,7.873742495134685e-23,0.00010695186938391998,-4.3653826651279815e-06,-2.139037496817764e-05,-1.0072060864169716e-23,8.730764875508612e-07,9.317362419797304e-21,0.00034965036320500076,-6.098637220230962e-20,-0.00023310023243539035,7.873742495134685e-23,9.317362419797304e-21,2.3310023607336916e-05,50.0,12.0,0.03532320633530617,-0.0016176470089703798,-0.00600840337574482,1.885369601950515e-05,9.049773507285863e-05,0.00027472528745420277,-0.0016176470089703798,0.0001437979080947116,9.049773507285863e-05,-2.356712002438144e-06,-3.6937851746188244e-06,3.3881317890172014e-20,-0.00600840337574482,9.049773507285863e-05,0.002356173237785697,4.013803853430852e-21,-1.6454134311061352e-05,-0.00016483516083098948,1.885369601950515e-05,-2.356712002438144e-06,4.013803853430852e-21,4.809616171996822e-08,5.28642135206143e-23,-4.7764086404486245e-22,9.049773507285863e-05,-3.6937851746188244e-06,-1.6454134311061352e-05,5.28642135206143e-23,6.715973199789005e-07,-8.470329472543003e-22,0.00027472528745420277,3.3881317890172014e-20,-0.00016483516083098948,-4.7764086404486245e-22,-8.470329472543003e-22,1.4985014786361717e-05,50.0,13.0,0.03298891335725784,-0.0014991795178502798,-0.0051971557550132275,1.740341031108983e-05,7.756948616588488e-05,0.00021978022414259613,-0.0014991795178502798,0.0001329800725216046,7.756948616588488e-05,-2.1754262888862286e-06,-3.1661015782447066e-06,4.404571325722362e-20,-0.0051971557550132275,7.756948616588488e-05,0.0018651935970410705,4.7547420013959904e-21,-1.2928247997479048e-05,-0.00011988011829089373,1.740341031108983e-05,-2.1754262888862286e-06,4.7547420013959904e-21,4.439645806542103e-08,-3.039458033078126e-23,-3.3767616401785506e-22,7.756948616588488e-05,-3.1661015782447066e-06,-1.2928247997479048e-05,-3.039458033078126e-23,5.276835963741178e-07,-3.705769144237564e-21,0.00021978022414259613,4.404571325722362e-20,-0.00011988011829089373,-3.3767616401785506e-22,-3.705769144237564e-21,9.990009857574478e-06,50.0,14.0,0.030944084748625755,-0.0013968972489237785,-0.004539915826171637,1.6160311133717187e-05,6.72268943162635e-05,0.00017857142665889114,-0.0013968972489237785,0.00012367749877739698,6.72268943162635e-05,-2.0200388917146483e-06,-2.7439548375696177e-06,1.0164395367051604e-20,-0.004539915826171637,6.72268943162635e-05,0.001502020051702857,4.106769583876436e-21,-1.0342598216084298e-05,-8.928571332944557e-05,1.6160311133717187e-05,-2.0200388917146483e-06,4.106769583876436e-21,4.122528096672795e-08,-6.790009170074404e-23,-1.383050881437162e-22,6.72268943162635e-05,-2.7439548375696177e-06,-1.0342598216084298e-05,-6.790009170074404e-23,4.221468827836361e-07,-5.293955920339377e-22,0.00017857142665889114,1.0164395367051604e-20,-8.928571332944557e-05,-1.383050881437162e-22,-5.293955920339377e-22,6.868132004456129e-06,50.0,15.0,0.029138008132576942,-0.0013076922623440623,-0.004000000189989805,1.508295645180624e-05,5.8823530707741156e-05,0.00014705881767440587,-0.0013076922623440623,0.00011559238919289783,5.8823530707741156e-05,-1.88536955647578e-06,-2.4009602839214494e-06,-7.199780051661553e-20,-0.004000000189989805,5.8823530707741156e-05,0.0012275371700525284,-1.4941975712069084e-20,-8.403361789532937e-06,-6.787330494262278e-05,1.508295645180624e-05,-1.88536955647578e-06,-1.4941975712069084e-20,3.8476930086517314e-08,1.3859306655033255e-22,7.497487523998216e-22,5.8823530707741156e-05,-2.4009602839214494e-06,-8.403361789532937e-06,1.3859306655033255e-22,3.429943546962022e-07,3.546950466627383e-21,0.00014705881767440587,-7.199780051661553e-20,-6.787330494262278e-05,7.497487523998216e-22,3.546950466627383e-21,4.848092885367805e-06,50.0,16.0,0.02753116376698017,-0.0012292055180296302,-0.003551037982106209,1.4140271559881512e-05,5.1903112762374803e-05,0.00012254902685526758,-0.0012292055180296302,0.00010850027319975197,5.1903112762374803e-05,-1.767533944985189e-06,-2.118494421665673e-06,4.235164736271502e-21,-0.003551037982106209,5.1903112762374803e-05,0.0010161888785660267,-4.413149124051051e-21,-6.9204152168822475e-06,-5.25210089108441e-05,1.4140271559881512e-05,-1.767533944985189e-06,-4.413149124051051e-21,3.607211951361933e-08,3.536448607520778e-23,2.128777629667158e-22,5.1903112762374803e-05,-2.118494421665673e-06,-6.9204152168822475e-06,3.536448607520778e-23,2.8246591909919516e-07,-2.117582368135751e-21,0.00012254902685526758,4.235164736271502e-21,-5.25210089108441e-05,2.128777629667158e-22,-2.117582368135751e-21,3.5014006698474986e-06,50.0,17.0,0.026092300191521645,-0.0011596131371334195,-0.003173678182065487,1.3308490451890975e-05,4.613610144588165e-05,0.00010319917782908306,-0.0011596131371334195,0.0001022286742227152,4.613610144588165e-05,-1.663561306486372e-06,-1.8831061652235803e-06,1.1011428314305904e-20,-0.003173678182065487,4.613610144588165e-05,0.0008507861639373004,1.536491017043125e-21,-5.767012680735206e-06,-4.127966894884594e-05,1.3308490451890975e-05,-1.663561306486372e-06,1.536491017043125e-21,3.39502328472463e-08,-2.696586267055417e-23,-3.66228107269003e-23,4.613610144588165e-05,-1.8831061652235803e-06,-5.767012680735206e-06,-2.696586267055417e-23,2.3538827065294754e-07,-1.0058516248644817e-21,0.00010319917782908306,1.1011428314305904e-20,-4.127966894884594e-05,-3.66228107269003e-23,-1.0058516248644817e-21,2.579979309302871e-06,50.0,18.0,0.0247963797301054,-0.0010974835604429245,-0.0028534571174532175,1.25691303765052e-05,4.127966894884594e-05,8.771930151851848e-05,-0.0010974835604429245,9.664290701039135e-05,4.127966894884594e-05,-1.57114129706315e-06,-1.684884523456276e-06,2.0328790734103208e-20,-0.0028534571174532175,4.127966894884594e-05,0.0007194727659225464,2.3697708749233808e-21,-4.85643158754101e-06,-3.2894735340960324e-05,1.25691303765052e-05,-1.57114129706315e-06,2.3697708749233808e-21,3.206410781331215e-08,-4.423976527120579e-24,-1.3571463301403867e-22,4.127966894884594e-05,-1.684884523456276e-06,-4.85643158754101e-06,-4.423976527120579e-24,1.9822169861072325e-07,-1.3234889800848443e-21,8.771930151851848e-05,2.0328790734103208e-20,-3.2894735340960324e-05,-1.3571463301403867e-22,-1.3234889800848443e-21,1.934984538820572e-06,50.0,19.0,0.023623107001185417,-0.0010416766162961721,-0.0025793896056711674,1.1907596672244836e-05,3.715170169016346e-05,7.518797065131366e-05,-0.0010416766162961721,9.16362478164956e-05,3.715170169016346e-05,-1.4884495840306045e-06,-1.5163960824793321e-06,1.1011428314305904e-20,-0.0025793896056711674,3.715170169016346e-05,0.0006138876779004931,1.7537856690161584e-21,-4.127966803935124e-06,-2.6536930818110704e-05,1.1907596672244836e-05,-1.4884495840306045e-06,1.7537856690161584e-21,3.0376522630604086e-08,1.3016534680005077e-23,-1.095550208985002e-22,3.715170169016346e-05,-1.5163960824793321e-06,-4.127966803935124e-06,1.3016534680005077e-23,1.6848844097694382e-07,-4.632211430296955e-22,7.518797065131366e-05,1.1011428314305904e-20,-2.6536930818110704e-05,-1.095550208985002e-22,-4.632211430296955e-22,1.4742739722350962e-06,50.0,20.0,0.02255585603415966,-0.0009912734385579824,-0.002343009924516082,1.1312216884107329e-05,3.361344715813175e-05,6.49350622552447e-05,-0.0009912734385579824,8.712303679203615e-05,3.361344715813175e-05,-1.4140271105134161e-06,-1.3719774187848088e-06,2.964615315390051e-21,-0.002343009924516082,3.361344715813175e-05,0.0005280179320834577,-2.7290635190620724e-21,-3.5382574878894957e-06,-2.1645020751748234e-05,1.1312216884107329e-05,-1.4140271105134161e-06,-2.7290635190620724e-21,2.8857696676709566e-08,3.48696430956935e-23,8.364802097747523e-23,3.361344715813175e-05,-1.3719774187848088e-06,-3.5382574878894957e-06,3.48696430956935e-23,1.4441866369452327e-07,-8.867376166568457e-22,6.49350622552447e-05,2.964615315390051e-21,-2.1645020751748234e-05,8.364802097747523e-23,-8.867376166568457e-22,1.1392116903152782e-06,50.0,21.0,0.021580874919891357,-0.0009455250692553818,-0.002137708943337202,1.0773540452646557e-05,3.0557675927411765e-05,5.6465272791683674e-05,-0.0009455250692553818,8.30337157822214e-05,3.0557675927411765e-05,-1.3466925565808197e-06,-1.2472521575546125e-06,8.893845946170154e-21,-0.002137708943337202,3.0557675927411765e-05,0.0004574631166178733,2.7600056477471675e-21,-3.055767820114852e-06,-1.7831138393376023e-05,1.0773540452646557e-05,-1.3466925565808197e-06,2.7600056477471675e-21,2.7483521236604247e-08,-1.6346586351372554e-23,-1.1591992933505783e-22,3.0557675927411765e-05,-1.2472521575546125e-06,-3.055767820114852e-06,-1.6346586351372554e-23,1.247252185976322e-07,-2.117582368135751e-22,5.6465272791683674e-05,8.893845946170154e-21,-1.7831138393376023e-05,-1.1591992933505783e-22,-2.117582368135751e-22,8.915569651435362e-07,50.0,22.0,0.020686691626906395,-0.000903814856428653,-0.00195826543495059,1.0283833944413345e-05,2.7900488930754364e-05,4.9407113692723215e-05,-0.000903814856428653,7.931121945148334e-05,2.7900488930754364e-05,-1.2854792430516682e-06,-1.1387954828023794e-06,-8.470329472543003e-21,-0.00195826543495059,2.7900488930754364e-05,0.0003989520773757249,-2.13013588406288e-21,-2.6571892703941558e-06,-1.4822134289715905e-05,1.0283833944413345e-05,-1.2854792430516682e-06,-2.13013588406288e-21,2.623426986758659e-08,9.669894052661708e-24,8.808916272346297e-23,2.7900488930754364e-05,-1.1387954828023794e-06,-2.6571892703941558e-06,9.669894052661708e-24,1.0845671027936987e-07,3.1763735522036263e-22,4.9407113692723215e-05,-8.470329472543003e-21,-1.4822134289715905e-05,8.808916272346297e-23,3.1763735522036263e-22,7.058159212647297e-07,50.0,23.0,0.019863663241267204,-0.0008656305144540966,-0.001800511498004198,9.836710887611844e-06,2.5575447580195032e-05,4.347825961303897e-05,-0.0008656305144540966,7.590829045511782e-05,2.5575447580195032e-05,-1.2295888609514805e-06,-1.0438958497616113e-06,-1.6940658945086007e-20,-0.001800511498004198,2.5575447580195032e-05,0.00035001826472580433,-2.7005346736582293e-21,-2.325040668438305e-06,-1.2422360669006594e-05,9.836710887611844e-06,-1.2295888609514805e-06,-2.7005346736582293e-21,2.5093649824725617e-08,1.9433345430960818e-23,9.241032188121021e-23,2.5575447580195032e-05,-1.0438958497616113e-06,-2.325040668438305e-06,1.9433345430960818e-23,9.489961882991338e-08,1.0058516248644817e-21,4.347825961303897e-05,-1.6940658945086007e-20,-1.2422360669006594e-05,9.241032188121021e-23,1.0058516248644817e-21,5.646527370117838e-07,50.0,24.0,0.01910362020134926,-0.0008305429946631193,-0.0016610859893262386,9.426848009752575e-06,2.3529411919298582e-05,3.84615377697628e-05,-0.0008305429946631193,7.278545672306791e-05,2.3529411919298582e-05,-1.178356001219072e-06,-9.603841135685798e-07,2.964615315390051e-21,-0.0016610859893262386,2.3529411919298582e-05,0.0003087779332417995,1.9051476042098582e-21,-2.0460358882701257e-06,-1.0489510714251082e-05,9.426848009752575e-06,-1.178356001219072e-06,1.9051476042098582e-21,2.404808085998411e-08,-1.2737961861961666e-23,-7.344111380788884e-23,2.3529411919298582e-05,-9.603841135685798e-07,-2.0460358882701257e-06,-1.2737961861961666e-23,8.351166513875796e-08,9.26442286059391e-23,3.84615377697628e-05,2.964615315390051e-21,-1.0489510714251082e-05,-7.344111380788884e-23,9.26442286059391e-23,4.56065663456684e-07,50.0,25.0,0.018399598076939583,-0.0007981900707818568,-0.0015372548950836062,9.049773325386923e-06,2.1719457436120138e-05,3.418803316890262e-05,-0.0007981900707818568,6.990950350882486e-05,2.1719457436120138e-05,-1.1312216656733654e-06,-8.865084737408324e-07,-1.5246593050577406e-20,-0.0015372548950836062,2.1719457436120138e-05,0.000273775338428095,-3.3572960871345514e-21,-1.8099547105521196e-06,-8.918617822928354e-06,9.049773325386923e-06,-1.1312216656733654e-06,-3.3572960871345514e-21,2.3086156986096285e-08,1.946015723540747e-23,1.1233068794694913e-22,2.1719457436120138e-05,-8.865084737408324e-07,-1.8099547105521196e-06,1.946015723540747e-23,7.387570377659358e-08,7.014491594449675e-22,3.418803316890262e-05,-1.5246593050577406e-20,-8.918617822928354e-06,1.1233068794694913e-22,7.014491594449675e-22,3.716090759553481e-07,50.0,26.0,0.017745623365044594,-0.0007682639406993985,-0.0014267758233472705,8.701705155544914e-06,2.011060860240832e-05,3.052503234357573e-05,-0.0007682639406993985,6.725224375259131e-05,2.011060860240832e-05,-1.0877131444431143e-06,-8.208411372834234e-07,8.470329472543003e-21,-0.0014267758233472705,2.011060860240832e-05,0.00024387345183640718,2.984900021598032e-21,-1.6088487200249801e-06,-7.631258085893933e-06,8.701705155544914e-06,-1.0877131444431143e-06,2.984900021598032e-21,2.2198229032710515e-08,-1.9133092348659217e-23,-9.655660004260081e-23,2.011060860240832e-05,-8.208411372834234e-07,-1.6088487200249801e-06,-1.9133092348659217e-23,6.566729382484482e-08,-1.7867101231145398e-22,3.052503234357573e-05,8.470329472543003e-21,-7.631258085893933e-06,-9.655660004260081e-23,-1.7867101231145398e-22,3.0525029615091626e-07,50.0,27.0,0.01713654212653637,-0.0007405013311654329,-0.0013277954421937466,8.379420251003467e-06,1.8674136299523525e-05,2.7367268558009528e-05,-0.0007405013311654329,6.478965224232525e-05,1.8674136299523525e-05,-1.0474275313754333e-06,-7.622096518389299e-07,-2.117582368135751e-22,-0.0013277954421937466,1.8674136299523525e-05,0.00021817533706780523,-1.6581639133224551e-22,-1.4364720755111193e-06,-6.568144272023346e-06,8.379420251003467e-06,-1.0474275313754333e-06,-1.6581639133224551e-22,2.137607246766038e-08,2.0335732886773996e-23,-1.1895807880566638e-23,1.8674136299523525e-05,-7.622096518389299e-07,-1.4364720755111193e-06,2.0335732886773996e-23,5.8631510313489343e-08,7.279189390466644e-23,2.7367268558009528e-05,-2.117582368135751e-22,-6.568144272023346e-06,-1.1895807880566638e-23,7.279189390466644e-23,2.526209357256448e-07,50.0,28.0,0.016567884013056755,-0.0007146758143790066,-0.0012387713650241494,8.080155566858593e-06,1.7386264516972005e-05,2.4630542611703277e-05,-0.0007146758143790066,6.25010798103176e-05,1.7386264516972005e-05,-1.0100194458573242e-06,-7.096434728737222e-07,1.0587911840678754e-21,-0.0012387713650241494,1.7386264516972005e-05,0.00019596697529777884,6.112846551411618e-22,-1.2878714414910064e-06,-5.683971266989829e-06,8.080155566858593e-06,-1.0100194458573242e-06,6.112846551411618e-22,2.0612640483363975e-08,-1.9698470537152927e-23,-8.321590151182643e-25,1.7386264516972005e-05,-7.096434728737222e-07,-1.2878714414910064e-06,-1.9698470537152927e-23,5.2566182517921334e-08,-5.293955920339377e-23,2.4630542611703277e-05,1.0587911840678754e-21,-5.683971266989829e-06,-8.321590151182643e-25,-5.293955920339377e-23,2.105174559119405e-07,50.0,29.0,0.01603575609624386,-0.000690591346938163,-0.0011584112653508782,7.801529136486351e-06,1.622718082217034e-05,2.224694071628619e-05,-0.000690591346938163,6.036871127435006e-05,1.622718082217034e-05,-9.75191142060794e-07,-6.623338890676678e-07,2.0808536102338357e-21,-0.0011584112653508782,1.622718082217034e-05,0.00017667519568931311,2.7653560684378365e-21,-1.1590843769226922e-06,-4.943764452036703e-06,7.801529136486351e-06,-9.75191142060794e-07,2.7653560684378365e-21,1.9901859715787396e-08,-3.3087224502121107e-23,-6.094874406724511e-23,1.622718082217034e-05,-6.623338890676678e-07,-1.1590843769226922e-06,-3.3087224502121107e-23,4.730956248977236e-08,9.179744637761314e-23,2.224694071628619e-05,2.0808536102338357e-21,-4.943764452036703e-06,-6.094874406724511e-23,9.179744637761314e-23,1.7656302020441217e-07,50.0,30.0,0.015536746010184288,-0.0006680776714347303,-0.0010856261942535639,7.54147822590312e-06,1.518026601843303e-05,2.0161291104159318e-05,-0.0006680776714347303,5.8377074310556054e-05,1.518026601843303e-05,-9.4268477823789e-07,-6.196027015903383e-07,-0.0,-0.0010856261942535639,1.518026601843303e-05,0.00015983621415216476,-1.0587911840678754e-22,-1.0469149174241466e-06,-4.320276275393553e-06,7.54147822590312e-06,-9.4268477823789e-07,-1.0587911840678754e-22,1.9238465043258657e-08,4.963083675318166e-24,-0.0,1.518026601843303e-05,-6.196027015903383e-07,-1.0469149174241466e-06,4.963083675318166e-24,4.273121945175262e-08,-0.0,2.0161291104159318e-05,-0.0,-4.320276275393553e-06,-0.0,-0.0,1.4897504740929435e-07,50.0,31.0,0.015067856758832932,-0.0006469858344644308,-0.001019492861814797,7.2982047640834935e-06,1.4231499335437547e-05,1.8328446458326653e-05,-0.0006469858344644308,5.6512679293518886e-05,1.4231499335437547e-05,-9.122755955104367e-07,-5.808774972138053e-07,-0.0,-0.001019492861814797,1.4231499335437547e-05,0.00014507205924019217,0.0,-9.487666261520644e-07,-3.7920922295597848e-06,7.2982047640834935e-06,-9.122755955104367e-07,0.0,1.8617868136061588e-08,0.0,-0.0,1.4231499335437547e-05,-5.808774972138053e-07,-9.487666261520644e-07,0.0,3.872516884939614e-08,-0.0,1.8328446458326653e-05,-0.0,-3.7920922295597848e-06,-0.0,-0.0,1.2640308000300138e-07,50.0,32.0,0.014626439660787582,-0.0006271853344514966,-0.0009592245914973319,7.070135779940756e-06,1.3368983672989998e-05,1.6711230273358524e-05,-0.0006271853344514966,5.4763710068073124e-05,1.3368983672989998e-05,-8.837669724925945e-07,-5.456728331409977e-07,-0.0,-0.0009592245914973319,1.3368983672989998e-05,0.00013207262963987887,0.0,-8.625150940133608e-07,-3.3422459182474995e-06,7.070135779940756e-06,-8.837669724925945e-07,0.0,1.8036059756809664e-08,0.0,-0.0,1.3368983672989998e-05,-5.456728331409977e-07,-8.625150940133608e-07,0.0,3.5204696047230755e-08,-0.0,1.6711230273358524e-05,-0.0,-3.3422459182474995e-06,-0.0,-0.0,1.078143867516701e-07,50.0,33.0,0.014210149645805359,-0.0006085609784349799,-0.0009041477460414171,6.8558892962755635e-06,1.2582572708197404e-05,1.5278837963705882e-05,-0.0006085609784349799,5.311976565280929e-05,1.2582572708197404e-05,-8.569861620344454e-07,-5.135744345352578e-07,-0.0,-0.0009041477460414171,1.2582572708197404e-05,0.00012058178253937513,5.293955920339377e-23,-7.864107942623377e-07,-2.9571945105999475e-06,6.8558892962755635e-06,-8.569861620344454e-07,5.293955920339377e-23,1.7489513837176673e-08,-1.6543612251060553e-24,-0.0,1.2582572708197404e-05,-5.135744345352578e-07,-7.864107942623377e-07,-1.6543612251060553e-24,3.209840215845361e-08,-0.0,1.5278837963705882e-05,-0.0,-2.9571945105999475e-06,-0.0,-0.0,9.241232845624836e-08,50.0,34.0,0.013816900551319122,-0.0005910110776312649,-0.0008536826353520155,6.654245225945488e-06,1.186356894322671e-05,1.4005602679389995e-05,-0.0005910110776312649,5.157166378921829e-05,1.186356894322671e-05,-8.31780653243186e-07,-4.842273142457998e-07,9.940634125626774e-21,-0.0008536826353520155,1.186356894322671e-05,0.0001103868053178303,7.5083216513181e-21,-7.190041628746258e-07,-2.626050445542205e-06,6.654245225945488e-06,-8.31780653243186e-07,7.5083216513181e-21,1.697511642362315e-08,-6.28657265540301e-23,-1.6656419360507158e-22,1.186356894322671e-05,-4.842273142457998e-07,-7.190041628746258e-07,-6.28657265540301e-23,2.9347109631316926e-08,-9.333665284321865e-23,1.4005602679389995e-05,9.940634125626774e-21,-2.626050445542205e-06,-1.6656419360507158e-22,-9.333665284321865e-23,7.957728342944392e-08,50.0,35.0,0.013444830663502216,-0.0005744451773352921,-0.0008073283242993057,6.464123998739524e-06,1.1204481779714115e-05,1.2870013051724527e-05,-0.0005744451773352921,5.011125176679343e-05,1.1204481779714115e-05,-8.080154998424405e-07,-4.573257967876998e-07,-9.130061748810162e-21,-0.0008073283242993057,1.1204481779714115e-05,0.00010130995360668749,-7.079281485280171e-21,-6.59087163512595e-07,-2.3400023110298207e-06,6.464123998739524e-06,-8.080154998424405e-07,-7.079281485280171e-21,1.649011238669118e-08,5.707546226615891e-23,1.529390385371922e-22,1.1204481779714115e-05,-4.573257967876998e-07,-6.59087163512595e-07,5.707546226615891e-23,2.6901517458099988e-08,8.332285882323037e-23,1.2870013051724527e-05,-9.130061748810162e-21,-2.3400023110298207e-06,1.529390385371922e-22,8.332285882323037e-23,6.882359571136476e-08,50.0,36.0,0.013092273846268654,-0.0005587827763520181,-0.0007646501180715859,6.2845651882526e-06,1.0598833796393592e-05,1.1853959222207777e-05,-0.0005587827763520181,4.8731290007708594e-05,1.0598833796393592e-05,-7.85570648531575e-07,-4.3260547499812674e-07,-6.245238363453347e-22,-0.0007646501180715859,1.0598833796393592e-05,9.320200479123741e-05,5.293955920339377e-23,-6.056476422600099e-07,-2.0918751033605076e-06,6.2845651882526e-06,-7.85570648531575e-07,5.293955920339377e-23,1.6032053906656074e-08,-1.6543612251060553e-24,-1.473391066418936e-39,1.0598833796393592e-05,-4.3260547499812674e-07,-6.056476422600099e-07,-1.6543612251060553e-24,2.4720312907788866e-08,3.5687076542901616e-23,1.1853959222207777e-05,-6.245238363453347e-22,-2.0918751033605076e-06,-1.473391066418936e-39,3.5687076542901616e-23,5.976786354722208e-08,50.0,37.0,0.012757735326886177,-0.0005439519300125539,-0.0007252692012116313,6.114712050475646e-06,1.0041000678029377e-05,1.0942116205114871e-05,-0.0005439519300125539,4.742530654766597e-05,1.0041000678029377e-05,-7.643390063094557e-07,-4.098367583083018e-07,-0.0,-0.0007252692012116313,1.0041000678029377e-05,8.593699021730572e-05,0.0,-5.578334025813092e-07,-1.875791326710896e-06,6.114712050475646e-06,-7.643390063094557e-07,0.0,1.559875428824853e-08,-8.271806125530277e-25,-0.0,1.0041000678029377e-05,-4.098367583083018e-07,-5.578334025813092e-07,-8.271806125530277e-25,2.2768709584397584e-08,-0.0,1.0942116205114871e-05,-0.0,-1.875791326710896e-06,-0.0,-0.0,5.2105313841366296e-08,50.0,38.0,0.012439866550266743,-0.0005298880860209465,-0.0006888544885441661,5.953798336122418e-06,9.526077519694809e-06,1.0121457307832316e-05,-0.0005298880860209465,4.618750244844705e-05,9.526077519694809e-06,-7.442247920153022e-07,-3.8881950104041607e-07,-0.0,-0.0006888544885441661,9.526077519694809e-06,7.940812065498903e-05,0.0,-5.149231014911493e-07,-1.686909627096611e-06,5.953798336122418e-06,-7.442247920153022e-07,0.0,1.5188261315302043e-08,0.0,-0.0,9.526077519694809e-06,-3.8881950104041607e-07,-5.149231014911493e-07,0.0,2.10172697023836e-08,-0.0,1.0121457307832316e-05,-0.0,-1.686909627096611e-06,-0.0,-0.0,4.559215227573077e-08,50.0,39.0,0.012137453071773052,-0.000516533269546926,-0.0006551153492182493,5.8011369219457265e-06,9.049773325386923e-06,9.380863048136234e-06,-0.000516533269546926,4.50126790383365e-05,9.049773325386923e-06,-7.251421152432158e-07,-3.6937851177754055e-07,-0.0,-0.0006551153492182493,9.049773325386923e-06,7.352442480623722e-05,0.0,-4.7630388166908233e-07,-1.5212210655590752e-06,5.8011369219457265e-06,-7.251421152432158e-07,0.0,1.479881905908087e-08,0.0,-0.0,9.049773325386923e-06,-3.6937851177754055e-07,-4.7630388166908233e-07,0.0,1.9440975052020804e-08,-0.0,9.380863048136234e-06,-0.0,-1.5212210655590752e-06,-0.0,-0.0,4.003213405212591e-08,50.0,40.0,0.01184939406812191,-0.0005038350936956704,-0.0006237958441488445,5.6561084420536645e-06,8.608320968050975e-06,8.710801012057345e-06,-0.0005038350936956704,4.389614696265198e-05,8.608320968050975e-06,-7.070135552567081e-07,-3.513600574933662e-07,-5.293955920339377e-23,-0.0006237958441488445,8.608320968050975e-06,6.820812996011227e-05,-0.0,-4.414523857576569e-07,-1.3753897292190231e-06,5.6561084420536645e-06,-7.070135552567081e-07,-0.0,1.4428848338354783e-08,0.0,0.0,8.608320968050975e-06,-3.513600574933662e-07,-4.414523857576569e-07,0.0,1.8018464942315404e-08,3.308722450212111e-24,8.710801012057345e-06,-5.293955920339377e-23,-1.3753897292190231e-06,0.0,3.308722450212111e-24,3.526640313111784e-08,50.0,41.0,0.011574691161513329,-0.0004917464102618396,-0.0005946700694039464,5.518154921446694e-06,8.198401701520197e-06,8.103071195364464e-06,-0.0004917464102618396,4.283367161406204e-05,8.198401701520197e-06,-6.897693651808368e-07,-3.346286234773288e-07,-3.441071348220595e-22,-0.0005946700694039464,8.198401701520197e-06,6.339241372188553e-05,2.749207707054728e-23,-4.099200623386423e-07,-1.246626311512955e-06,5.518154921446694e-06,-6.897693651808368e-07,2.749207707054728e-23,1.4076925403117002e-08,-1.004955150710014e-24,-1.2704767581146097e-25,8.198401701520197e-06,-3.346286234773288e-07,-4.099200623386423e-07,-1.004955150710014e-24,1.6731430463323704e-08,1.6543612251060553e-23,8.103071195364464e-06,-3.441071348220595e-22,-1.246626311512955e-06,-1.2704767581146097e-25,1.6543612251060553e-23,3.116565849836661e-08,50.0,42.0,0.011312436312437057,-0.0004802242910955101,-0.0005675377906300128,5.386770226323279e-06,7.817080586391967e-06,7.55058908907813e-06,-0.0004802242910955101,4.1821418562904e-05,7.817080586391967e-06,-6.733462782904098e-07,-3.1906449748930754e-07,5.293955920339377e-23,-0.0005675377906300128,7.817080586391967e-06,5.901971599087119e-05,2.5595721718712005e-23,-3.813210014413926e-07,-1.132588295149617e-06,5.386770226323279e-06,-6.733462782904098e-07,2.5595721718712005e-23,1.3741760618302123e-08,6.618089892821853e-25,-9.047721823296612e-25,7.817080586391967e-06,-3.1906449748930754e-07,-3.813210014413926e-07,6.618089892821853e-25,1.556412243530758e-08,-3.308722450212111e-24,7.55058908907813e-06,5.293955920339377e-23,-1.132588295149617e-06,-9.047721823296612e-25,-3.308722450212111e-24,2.762410566958806e-08,50.0,43.0,0.011061801575124264,-0.0004692298243753612,-0.000542221125215292,5.2614964261010755e-06,7.461758286808617e-06,7.047216513456078e-06,-0.0004692298243753612,4.085590990143828e-05,7.461758286808617e-06,-6.576870532626344e-07,-3.045615812879987e-07,-5.293955920339377e-23,-0.000542221125215292,7.461758286808617e-06,5.5040218285284936e-05,2.3869889695592925e-23,-3.553218448359985e-07,-1.0312999165762449e-06,5.2614964261010755e-06,-6.576870532626344e-07,2.3869889695592925e-23,1.3422184252931402e-08,-1.5409628644109875e-25,-4.472550440144337e-25,7.461758286808617e-06,-3.045615812879987e-07,-3.553218448359985e-07,-1.5409628644109875e-25,1.450293218852039e-08,8.271806125530277e-25,7.047216513456078e-06,-5.293955920339377e-23,-1.0312999165762449e-06,-4.472550440144337e-25,8.271806125530277e-25,2.455476000307044e-08,50.0,44.0,0.010822032578289509,-0.0004587275325320661,-0.0005185615736991167,5.141916972206673e-06,7.130124686227646e-06,6.587615189346252e-06,-0.0004587275325320661,3.993398058810271e-05,7.130124686227646e-06,-6.427396215258341e-07,-2.9102551479809335e-07,2.6469779601696886e-22,-0.0005185615736991167,7.130124686227646e-06,5.14106905029621e-05,2.229583293291656e-23,-3.316337142678094e-07,-9.410878760718333e-07,5.141916972206673e-06,-6.427396215258341e-07,2.229583293291656e-23,1.3117134933793295e-08,-1.438231973914384e-25,-4.0813180789474033e-25,7.130124686227646e-06,-2.9102551479809335e-07,-3.316337142678094e-07,-1.438231973914384e-25,1.353607004261903e-08,-1.075334796318936e-23,6.587615189346252e-06,2.6469779601696886e-22,-9.410878760718333e-07,-4.0813180789474033e-25,-1.075334796318936e-23,2.1885764311946332e-08,50.0,45.0,0.010592438280582428,-0.00044868516852147877,-0.0004964176332578063,5.02765215060208e-06,6.820119324402185e-06,6.167129413370276e-06,-0.00044868516852147877,3.9052745705703273e-05,6.820119324402185e-06,-6.2845651882526e-07,-2.7837222660309635e-07,-1.3234889800848443e-22,-0.0004964176332578063,6.820119324402185e-06,4.809348320122808e-05,-2.085722358766664e-23,-3.1000541866887943e-07,-8.605296670793905e-07,5.02765215060208e-06,-6.2845651882526e-07,-2.085722358766664e-23,1.2825642770053491e-08,1.3444341936123097e-25,3.731952538142812e-25,6.820119324402185e-06,-2.7837222660309635e-07,-3.1000541866887943e-07,1.3444341936123097e-25,1.2653282865926485e-08,5.790264287871194e-24,6.167129413370276e-06,-1.3234889800848443e-22,-8.605296670793905e-07,3.731952538142812e-25,5.790264287871194e-24,1.9557491626187584e-08,50.0,46.0,0.010372382588684559,-0.0004390730755403638,-0.00047566249850206077,4.918355443805922e-06,6.529901384055847e-06,5.781683739769505e-06,-0.0004390730755403638,3.820956771960482e-05,6.529901384055847e-06,-6.147944304757402e-07,-2.6652659812498314e-07,2.6469779601696886e-23,-0.00047566249850206077,6.529901384055847e-06,4.505570177570917e-05,1.9539795899233152e-23,-2.9021785508120956e-07,-7.884113983891439e-07,4.918355443805922e-06,-6.147944304757402e-07,1.9539795899233152e-23,1.2546824912362808e-08,-5.394522255398145e-25,-3.4191894037833773e-25,6.529901384055847e-06,-2.6652659812498314e-07,-2.9021785508120956e-07,-5.394522255398145e-25,1.1845626701756373e-08,-8.271806125530277e-25,5.781683739769505e-06,2.6469779601696886e-23,-7.884113983891439e-07,-3.4191894037833773e-25,-8.271806125530277e-25,1.7520253692282495e-08,50.0,47.0,0.010161283425986767,-0.0004298642452340573,-0.00045618246076628566,4.81370943816728e-06,6.257822406041669e-06,5.427702944871271e-06,-0.0004298642452340573,3.7402031011879444e-05,6.257822406041669e-06,-6.0171367977091e-07,-2.554213267558225e-07,-1.3234889800848443e-23,-0.00045618246076628566,6.257822406041669e-06,4.226852615829557e-05,-1.8331051155433773e-23,-2.7207923380956345e-07,-7.236937449306424e-07,4.81370943816728e-06,-6.0171367977091e-07,-1.8331051155433773e-23,1.227987134200248e-08,9.451761587808841e-25,-9.973818025230045e-26,6.257822406041669e-06,-2.554213267558225e-07,-2.7207923380956345e-07,9.451761587808841e-25,1.1105274921874297e-08,8.271806125530277e-25,5.427702944871271e-06,-1.3234889800848443e-23,-7.236937449306424e-07,-9.973818025230045e-26,8.271806125530277e-25,1.573247310204806e-08,50.0,48.0,0.009958606213331223,-0.0004210337938275188,-0.00043787516187876463,4.713424004876288e-06,6.002400823490461e-06,5.1020406317547895e-06,-0.0004210337938275188,3.662792732939124e-05,6.002400823490461e-06,-5.89178000609536e-07,-2.44995959519656e-07,1.4558378780933287e-22,-0.00043787516187876463,6.002400823490461e-06,3.970663237851113e-05,-3.444001366949203e-23,-2.554213267558225e-07,-6.654835829067451e-07,4.713424004876288e-06,-5.89178000609536e-07,-3.444001366949203e-23,1.2024040429992056e-08,6.351329675188447e-25,3.704198439344874e-25,6.002400823490461e-06,-2.44995959519656e-07,-2.554213267558225e-07,6.351329675188447e-25,1.0425360130739136e-08,-6.617444900424222e-24,5.1020406317547895e-06,1.4558378780933287e-22,-6.654835829067451e-07,3.704198439344874e-25,-6.617444900424222e-24,1.4159224903664835e-08,50.0,49.0,0.009763856418430805,-0.0004125588748138398,-0.00042064825538545847,4.617231297743274e-06,5.7623051361588296e-06,4.801920567842899e-06,-0.0004125588748138398,3.588521576602943e-05,5.7623051361588296e-06,-5.771539122179092e-07,-2.351961256863433e-07,7.940933880509066e-23,-0.00042064825538545847,5.7623051361588296e-06,3.7347705074353144e-05,-0.0,-2.4009602839214494e-07,-6.13011138739239e-07,4.617231297743274e-06,-5.771539122179092e-07,-0.0,1.1778651831662046e-08,-4.1359030627651384e-25,2.0679515313825692e-25,5.7623051361588296e-06,-2.351961256863433e-07,-2.4009602839214494e-07,-4.1359030627651384e-25,9.79983827420483e-09,-2.895132143935597e-24,4.801920567842899e-06,7.940933880509066e-23,-6.13011138739239e-07,2.0679515313825692e-25,-2.895132143935597e-24,1.2771065982519758e-08,50.0,50.0,0.009576576761901379,-0.00040441841701976955,-0.00040441841701976955,4.524886662693461e-06,5.536332082556328e-06,4.524886662693461e-06,-0.00040441841701976955,3.517203367664479e-05,5.536332082556328e-06,-5.656108328366827e-07,-2.2597274096369802e-07,-7.940933880509066e-23,-0.00040441841701976955,5.536332082556328e-06,3.517203367664479e-05,3.050687625836128e-23,-2.2597274096369802e-07,-5.656108328366827e-07,4.524886662693461e-06,-5.656108328366827e-07,3.050687625836128e-23,1.1543078493048142e-08,-1.0231806972414008e-24,-2.8379406650793985e-25,5.536332082556328e-06,-2.2597274096369802e-07,-2.2597274096369802e-07,-1.0231806972414008e-24,9.22337761721792e-09,3.308722450212111e-24,4.524886662693461e-06,-7.940933880509066e-23,-5.656108328366827e-07,-2.8379406650793985e-25,3.308722450212111e-24,1.1543078493048142e-08,50.0,51.0,0.009396347217261791,-0.0003965930372942239,-0.0003891101514454931,4.436163635546109e-06,5.32339618075639e-06,4.268761131243082e-06,-0.0003965930372942239,3.448664574534632e-05,5.32339618075639e-06,-5.545204544432636e-07,-2.1728148169586348e-07,5.293955920339377e-23,-0.0003891101514454931,5.32339618075639e-06,3.316215588711202e-05,1.4381792582843926e-23,-2.1293585916737356e-07,-5.227054771239636e-07,4.436163635546109e-06,-5.545204544432636e-07,1.4381792582843926e-23,1.131674398635596e-08,-5.059365332091748e-25,-1.9892201623684803e-26,5.32339618075639e-06,-2.1728148169586348e-07,-2.1293585916737356e-07,-5.059365332091748e-25,8.691259267834539e-09,-2.481541837659083e-24,4.268761131243082e-06,5.293955920339377e-23,-5.227054771239636e-07,-1.9892201623684803e-26,-2.481541837659083e-24,1.045410868982799e-08,50.0,52.0,0.00922277569770813,-0.0003890647494699806,-0.000374654948245734,4.350852577772457e-06,5.122513357491698e-06,4.031607659271685e-06,-0.0003890647494699806,3.382746217539534e-05,5.122513357491698e-06,-5.438565722215571e-07,-2.0908218800741452e-07,3.970466940254533e-23,-0.000374654948245734,5.122513357491698e-06,3.1302573916036636e-05,-0.0,-2.0088288010811084e-07,-4.837929168388655e-07,4.350852577772457e-06,-5.438565722215571e-07,-0.0,1.1099114516355257e-08,4.1359030627651384e-25,-2.0679515313825692e-25,5.122513357491698e-06,-2.0908218800741452e-07,-2.0088288010811084e-07,4.1359030627651384e-25,8.199300793876318e-09,-1.2407709188295415e-24,4.031607659271685e-06,3.970466940254533e-23,-4.837929168388655e-07,-2.0679515313825692e-25,-1.2407709188295415e-24,9.486136320902006e-09,50.0,53.0,0.00905549991875887,-0.0003818169643636793,-0.0003609905834309757,4.268761131243082e-06,4.932790943712462e-06,3.811701844824711e-06,-0.0003818169643636793,3.319300594739616e-05,4.932790943712462e-06,-5.335951414053852e-07,-2.0133839484515192e-07,1.5881867761018131e-22,-0.0003609905834309757,4.932790943712462e-06,2.9579496185760945e-05,-0.0,-1.897227264180401e-07,-4.4843551449957886e-07,4.268761131243082e-06,-5.335951414053852e-07,-0.0,1.0889697144023103e-08,0.0,0.0,4.932790943712462e-06,-2.0133839484515192e-07,-1.897227264180401e-07,0.0,7.743784280478394e-09,-6.2038545941477076e-24,3.811701844824711e-06,1.5881867761018131e-22,-4.4843551449957886e-07,0.0,-6.2038545941477076e-24,8.623760372472589e-09,50.0,54.0,0.008894184604287148,-0.0003748343151528388,-0.00034806045005097985,4.189710125501733e-06,4.753416305902647e-06,3.607503685998381e-06,-0.0003748343151528388,3.258191281929612e-05,4.753416305902647e-06,-5.237137656877167e-07,-1.94017005128444e-07,1.0587911840678754e-22,-0.00034806045005097985,4.753416305902647e-06,2.798062087094877e-05,-0.0,-1.7937421148417343e-07,-4.162504296800762e-07,4.189710125501733e-06,-5.237137656877167e-07,-0.0,1.068803623383019e-08,4.1359030627651384e-25,-2.0679515313825692e-25,4.753416305902647e-06,-1.94017005128444e-07,-1.7937421148417343e-07,4.1359030627651384e-25,7.3213963780460745e-09,-4.1359030627651384e-24,3.607503685998381e-06,1.0587911840678754e-22,-4.162504296800762e-07,-2.0679515313825692e-25,-4.1359030627651384e-24,7.853781625044576e-09,50.0,55.0,0.008738514967262745,-0.0003681024827528745,-0.00033581280149519444,4.113533577765338e-06,4.583651843859116e-06,3.4176350709458347e-06,-0.0003681024827528745,3.199291677447036e-05,4.583651843859116e-06,-5.141916972206673e-07,-1.8708782079102093e-07,-1.1911400820763599e-22,-0.00033581280149519444,4.583651843859116e-06,2.6494952180655673e-05,-1.1490353885666574e-23,-1.6976487415831798e-07,-3.869020872571127e-07,4.113533577765338e-06,-5.141916972206673e-07,-1.1490353885666574e-23,1.049370812467032e-08,7.362377814967065e-26,1.6779203341733513e-25,4.583651843859116e-06,-1.8708782079102093e-07,-1.6976487415831798e-07,7.362377814967065e-26,6.9291785642633386e-09,3.7223127564886245e-24,3.4176350709458347e-06,-1.1911400820763599e-22,-3.869020872571127e-07,1.6779203341733513e-25,3.7223127564886245e-24,7.164853155217088e-09,50.0,56.0,0.00858820229768753,-0.000361608195817098,-0.00032420046045444906,4.040077783429297e-06,4.422821803018451e-06,3.2408606784883887e-06,-0.000361608195817098,3.1424839107785374e-05,4.422821803018451e-06,-5.050097229286621e-07,-1.805233438290088e-07,-1.3234889800848443e-23,-0.00032420046045444906,4.422821803018451e-06,2.5112645744229667e-05,1.0890874029101065e-23,-1.60829884521263e-07,-3.6009564041705744e-07,4.040077783429297e-06,-5.050097229286621e-07,1.0890874029101065e-23,1.0306320241681988e-08,-4.833391688448598e-25,-1.5616659025709308e-25,4.422821803018451e-06,-1.805233438290088e-07,-1.60829884521263e-07,-4.833391688448598e-25,6.5644849556179e-09,8.271806125530277e-25,3.2408606784883887e-06,-1.3234889800848443e-23,-3.6009564041705744e-07,-1.5616659025709308e-25,8.271806125530277e-25,6.547193454053968e-09,50.0,57.0,0.008442971855401993,-0.00035533911432139575,-0.00031318023684434593,3.969199042330729e-06,4.270310455467552e-06,3.0760711524635553e-06,-0.00035533911432139575,3.087658478762023e-05,4.270310455467552e-06,-4.961498802913411e-07,-1.742983926078523e-07,1.9852334701272664e-22,-0.00031318023684434593,4.270310455467552e-06,2.3824864911148325e-05,7.365272416799257e-22,-1.5251109175551392e-07,-3.3557140000084473e-07,3.969199042330729e-06,-4.961498802913411e-07,7.365272416799257e-22,1.0125507543534695e-08,-7.196303932927253e-24,-8.30597800222264e-24,4.270310455467552e-06,-1.742983926078523e-07,-1.5251109175551392e-07,-7.196303932927253e-24,6.224942783461529e-09,9.098986738083304e-24,3.0760711524635553e-06,1.9852334701272664e-22,-3.3557140000084473e-07,-8.30597800222264e-24,9.098986738083304e-24,5.99234661891046e-09,50.0,58.0,0.008302572183310986,-0.0003492837131489068,-0.0003027125494554639,3.900764568243176e-06,4.125554369238671e-06,2.9222676403151127e-06,-0.0003492837131489068,3.034713154193014e-05,4.125554369238671e-06,-4.87595571030397e-07,-1.6838997396462219e-07,1.1911400820763599e-22,-0.0003027125494554639,4.125554369238671e-06,2.2623664335696958e-05,7.693467835888e-22,-1.4475629939170176e-07,-3.1310011650020897e-07,3.900764568243176e-06,-4.87595571030397e-07,7.693467835888e-22,9.950929857893698e-09,-8.231346238562396e-24,-8.579420068938495e-24,4.125554369238671e-06,-1.6838997396462219e-07,-1.4475629939170176e-07,-8.231346238562396e-24,5.908419975497736e-09,1.2200914035157158e-23,2.9222676403151127e-06,1.1911400820763599e-22,-3.1310011650020897e-07,-8.579420068938495e-24,1.2200914035157158e-23,5.492984289645619e-09,50.0,59.0,0.008166765794157982,-0.0003434312529861927,-0.0002927610476035625,3.8346497603924945e-06,3.988036041846499e-06,2.77854951491463e-06,-0.0003434312529861927,2.9835533496225253e-05,3.988036041846499e-06,-4.793312200490618e-07,-1.627769705692117e-07,1.555099551599692e-21,-0.0002927610476035625,3.988036041846499e-06,2.1501886294572614e-05,1.7530917743421515e-21,-1.3751848371157394e-07,-2.924789157532359e-07,3.8346497603924945e-06,-4.793312200490618e-07,1.7530917743421515e-21,9.782270105063162e-09,-1.0798567047998439e-23,-2.405318626008646e-23,3.988036041846499e-06,-1.627769705692117e-07,-1.3751848371157394e-07,-1.0798567047998439e-23,5.612998954518389e-09,-1.2614504341433672e-23,2.77854951491463e-06,1.555099551599692e-21,-2.924789157532359e-07,-2.405318626008646e-23,-1.2614504341433672e-23,5.042739559257825e-09,50.0,60.0,0.008035330101847649,-0.0003377716930117458,-0.0002832923782989383,3.77073911295156e-06,3.85728071705671e-06,2.6441036879987223e-06,-0.0003377716930117458,2.934089752670843e-05,3.85728071705671e-06,-4.71342389118945e-07,-1.5744002723749873e-07,-3.970466940254533e-23,-0.0002832923782989383,3.85728071705671e-06,2.0453073375392705e-05,-0.0,-1.3075528215722443e-07,-2.7352797360435943e-07,3.77073911295156e-06,-4.71342389118945e-07,-0.0,9.619232521629328e-09,4.1359030627651384e-25,-2.0679515313825692e-25,3.85728071705671e-06,-1.5744002723749873e-07,-1.3075528215722443e-07,4.1359030627651384e-25,5.336949993051121e-09,1.4475660719677984e-24,2.6441036879987223e-06,-3.970466940254533e-23,-2.7352797360435943e-07,-2.0679515313825692e-25,1.4475660719677984e-24,4.6360670857836794e-09,50.0,61.0,0.007908058352768421,-0.0003322956326883286,-0.00027427574968896806,3.7089237139298348e-06,3.732852292159805e-06,2.5181939236063045e-06,-0.0003322956326883286,2.8862397812190466e-05,3.732852292159805e-06,-4.6361546424122935e-07,-1.523613093468157e-07,1.9852334701272664e-23,-0.00027427574968896806,3.732852292159805e-06,1.9471388441161253e-05,8.444368659686468e-24,-1.2442841068605048e-07,-2.560875316248712e-07,3.7089237139298348e-06,-4.6361546424122935e-07,8.444368659686468e-24,9.46153999592525e-09,-5.39622212738938e-26,-1.1106026325365427e-25,3.732852292159805e-06,-1.523613093468157e-07,-1.2442841068605048e-07,-5.39622212738938e-26,5.07871034116647e-09,-6.203854594147708e-25,2.5181939236063045e-06,1.9852334701272664e-23,-2.560875316248712e-07,-1.1106026325365427e-25,-6.203854594147708e-25,4.268125408657397e-09,50.0,62.0,0.007784755900502205,-0.00032699431176297367,-0.0002656828728504479,3.6491023820417468e-06,3.614348997871275e-06,2.400153562120977e-06,-0.00032699431176297367,2.8399254006217234e-05,3.614348997871275e-06,-4.5613779775521834e-07,-1.4752444599253067e-07,-1.257314531080602e-22,-0.0002656828728504479,3.614348997871275e-06,1.855154368968215e-05,-0.0,-1.1850324455053851e-07,-2.4001536758078146e-07,3.6491023820417468e-06,-4.5613779775521834e-07,-0.0,9.308934068030794e-09,0.0,0.0,3.614348997871275e-06,-1.4752444599253067e-07,-1.1850324455053851e-07,0.0,4.8368673510879034e-09,3.9291079096268815e-24,2.400153562120977e-06,-1.257314531080602e-22,-2.4001536758078146e-07,0.0,3.9291079096268815e-24,3.934677916817009e-09,50.0,63.0,0.0076652392745018005,-0.00032185952295549214,-0.0002574876125436276,3.5911800750909606e-06,3.5014006698474986e-06,2.2893773348187096e-06,-0.00032185952295549214,2.795074033201672e-05,3.5014006698474986e-06,-4.488975093863701e-07,-1.42914302614372e-07,-7.279189390466644e-23,-0.0002574876125436276,3.5014006698474986e-06,1.768874608387705e-05,2.3013811530359842e-23,-1.1294840618347735e-07,-2.2518464959375706e-07,3.5911800750909606e-06,-4.488975093863701e-07,2.3013811530359842e-23,9.161174041594222e-09,-5.605409920305075e-25,-1.8957725315377352e-25,3.5014006698474986e-06,-1.42914302614372e-07,-1.1294840618347735e-07,-5.605409920305075e-25,4.6101389372665835e-09,2.68833699079734e-24,2.2893773348187096e-06,-7.279189390466644e-23,-2.2518464959375706e-07,-1.8957725315377352e-25,2.68833699079734e-24,3.632010470155933e-09,50.0,64.0,0.0075493366457521915,-0.0003168834955431521,-0.0002496657834853977,3.535067889970378e-06,3.3936651107069338e-06,2.1853147700312547e-06,-0.0003168834955431521,2.75161746685626e-05,3.3936651107069338e-06,-4.4188348624629725e-07,-1.3851693836386403e-07,9.26442286059391e-23,-0.0002496657834853977,3.3936651107069338e-06,1.6878639144124463e-05,-0.0,-1.07735402821163e-07,-2.1148206030829897e-07,3.535067889970378e-06,-4.4188348624629725e-07,-0.0,9.018029878404832e-09,0.0,0.0,3.3936651107069338e-06,-1.3851693836386403e-07,-1.07735402821163e-07,0.0,4.397363362329543e-09,-3.1019272970738538e-24,2.1853147700312547e-06,9.26442286059391e-23,-2.1148206030829897e-07,0.0,-3.1019272970738538e-24,3.3568581248033524e-09,51.0,3.0,0.09579337388277054,-0.005442670546472073,-0.057692307978868484,7.114602340152487e-05,0.0011312217684462667,0.009803921915590763,-0.005442670546472073,0.0005110026686452329,0.0011312217684462667,-8.71175780048361e-06,-4.5248867536429316e-05,0.0,-0.057692307978868484,0.0011312217684462667,0.15573152899742126,-6.103248105911092e-20,-0.0011312217684462667,-0.05882352963089943,7.114602340152487e-05,-8.71175780048361e-06,-6.103248105911092e-20,1.7423515430436964e-07,7.824596460739416e-22,1.9934093103770435e-20,0.0011312217684462667,-4.5248867536429316e-05,-0.0011312217684462667,7.824596460739416e-22,4.5248867536429316e-05,-9.75781955236954e-19,0.009803921915590763,0.0,-0.05882352963089943,1.9934093103770435e-20,-9.75781955236954e-19,0.029411764815449715,51.0,4.0,0.08000867813825607,-0.00425168639048934,-0.03755656257271767,5.335951573215425e-05,0.0006787330494262278,0.0049019609577953815,-0.00425168639048934,0.0003900393203366548,0.0006787330494262278,-6.533818122989032e-06,-2.714932088565547e-05,-2.087089182034596e-18,-0.03755656257271767,0.0006787330494262278,0.05935143306851387,-6.791204527848642e-20,-0.0004524886899162084,-0.014705882407724857,5.335951573215425e-05,-6.533818122989032e-06,-6.791204527848642e-20,1.306763692809909e-07,3.2169086333929924e-22,1.9555267001441023e-20,0.0006787330494262278,-2.714932088565547e-05,-0.0004524886899162084,3.2169086333929924e-22,1.8099546650773846e-05,5.55653613398821e-19,0.0049019609577953815,-2.087089182034596e-18,-0.014705882407724857,1.9555267001441023e-20,5.55653613398821e-19,0.0049019609577953815,51.0,5.0,0.06873437017202377,-0.003491846611723304,-0.026438267901539803,4.2687610402936116e-05,0.0004524886899162084,0.002801120514050126,-0.003491846611723304,0.0003156513557769358,0.0004524886899162084,-5.227054316492286e-06,-1.8099546650773846e-05,-1.7618285302889447e-19,-0.026438267901539803,0.0004524886899162084,0.03002585656940937,-9.032582067912483e-21,-0.0002262443449581042,-0.005602241028100252,4.2687610402936116e-05,-5.227054316492286e-06,-9.032582067912483e-21,1.0454109400370726e-07,1.0400527714518728e-22,1.3771382869109963e-21,0.0004524886899162084,-1.8099546650773846e-05,-0.0002262443449581042,1.0400527714518728e-22,9.049773325386923e-06,6.776263578034403e-20,0.002801120514050126,-1.7618285302889447e-19,-0.005602241028100252,1.3771382869109963e-21,6.776263578034403e-20,0.001400560257025063,51.0,6.0,0.06025932356715202,-0.002963739912956953,-0.019634777680039406,3.5573011700762436e-05,0.0003232062153983861,0.0017507002921774983,-0.002963739912956953,0.00026519750826992095,0.0003232062153983861,-4.355878900241805e-06,-1.2928247997479048e-05,-4.336808689942018e-19,-0.019634777680039406,0.0003232062153983861,0.017482763156294823,-4.77883210192882e-20,-0.0001292824890697375,-0.0026260504964739084,3.5573011700762436e-05,-4.355878900241805e-06,-4.77883210192882e-20,8.711757715218482e-08,6.232239955219222e-22,5.817230456619779e-21,0.0003232062153983861,-1.2928247997479048e-05,-0.0001292824890697375,6.232239955219222e-22,5.171299108042149e-06,4.404571325722362e-20,0.0017507002921774983,-4.336808689942018e-19,-0.0026260504964739084,5.817230456619779e-21,4.404571325722362e-20,0.0005252101109363139,51.0,7.0,0.05365036800503731,-0.00257497769780457,-0.015163757838308811,3.0491151846945286e-05,0.00024240465427283198,0.0011671335669234395,-0.00257497769780457,0.00022869733220431954,0.00024240465427283198,-3.733610355993733e-06,-9.69618577073561e-06,-3.5914196963582334e-19,-0.015163757838308811,0.00024240465427283198,0.011123680509626865,-3.3181287216230604e-20,-8.080155384959653e-05,-0.001400560257025063,3.0491151846945286e-05,-3.733610355993733e-06,-3.3181287216230604e-20,7.467220797252594e-08,4.674125819001882e-22,3.124792903728228e-21,0.00024240465427283198,-9.69618577073561e-06,-8.080155384959653e-05,4.674125819001882e-22,3.232061999369762e-06,3.6422416731934915e-20,0.0011671335669234395,-3.5914196963582334e-19,-0.001400560257025063,3.124792903728228e-21,3.6422416731934915e-20,0.00023342670465353876,51.0,8.0,0.04835024103522301,-0.002276672748848796,-0.012066365219652653,2.6679757866077125e-05,0.0001885369565570727,0.0008169934735633433,-0.002276672748848796,0.0002010528405662626,0.0001885369565570727,-3.266909061494516e-06,-7.54147822590312e-06,2.507217523872729e-19,-0.012066365219652653,0.0001885369565570727,0.007532500196248293,3.386924622310757e-20,-5.3867701353738084e-05,-0.0008169934735633433,2.6679757866077125e-05,-3.266909061494516e-06,3.386924622310757e-20,6.533818464049546e-08,-2.7299158927364945e-22,-3.517564148352226e-21,0.0001885369565570727,-7.54147822590312e-06,-5.3867701353738084e-05,-2.7299158927364945e-22,2.1547079995798413e-06,-1.9481757786848908e-20,0.0008169934735633433,2.507217523872729e-19,-0.0008169934735633433,-3.517564148352226e-21,-1.9481757786848908e-20,0.00011671335232676938,51.0,9.0,0.04400434345006943,-0.0020404679235070944,-0.009831344708800316,2.371533992118202e-05,0.0001508295681560412,0.0005941770505160093,-0.0020404679235070944,0.00017938399105332792,0.0001508295681560412,-2.90391926682787e-06,-6.033182671671966e-06,9.825582188149884e-20,-0.009831344708800316,0.0001508295681560412,0.005343839060515165,1.0667208088384472e-20,-3.77073920390103e-05,-0.0005092946230433881,2.371533992118202e-05,-2.90391926682787e-06,1.0667208088384472e-20,5.8078384768123215e-08,-1.3117184180724778e-22,-9.023042025886847e-22,0.0001508295681560412,-6.033182671671966e-06,-3.77073920390103e-05,-1.3117184180724778e-22,1.5082956679179915e-06,-9.740878893424454e-21,0.0005941770505160093,9.825582188149884e-20,-0.0005092946230433881,-9.023042025886847e-22,-9.740878893424454e-21,6.366182788042352e-05,51.0,10.0,0.040375884622335434,-0.0018487616907805204,-0.008165364153683186,2.1343805201468058e-05,0.00012340600369498134,0.000445632787887007,-0.0018487616907805204,0.00016193921328522265,0.00012340600369498134,-2.613527158246143e-06,-4.9362402023689356e-06,-6.437450399132683e-20,-0.008165364153683186,0.00012340600369498134,0.00393128115683794,-5.993634800182382e-21,-2.7423557185102254e-05,-0.0003342246054671705,2.1343805201468058e-05,-2.613527158246143e-06,-5.993634800182382e-21,5.227054700185363e-08,4.41850104357744e-24,6.440033238283637e-22,0.00012340600369498134,-4.9362402023689356e-06,-2.7423557185102254e-05,4.41850104357744e-24,1.096942241929355e-06,5.505714157152952e-21,0.000445632787887007,-6.437450399132683e-20,-0.0003342246054671705,6.440033238283637e-22,5.505714157152952e-21,3.713606565725058e-05,51.0,11.0,0.03730056434869766,-0.001690041390247643,-0.006890168879181147,1.9403460100875236e-05,0.00010283834126312286,0.00034279446117579937,-0.001690041390247643,0.00014759143232367933,0.00010283834126312286,-2.3759339455864392e-06,-4.113533577765338e-06,6.776263578034403e-21,-0.006890168879181147,0.00010283834126312286,0.0029777411837130785,-4.4769171560193604e-21,-2.056766788882669e-05,-0.00022852963593322784,1.9403460100875236e-05,-2.3759339455864392e-06,-4.4769171560193604e-21,4.751867876962024e-08,-2.3760023459600985e-23,4.715974069608515e-22,0.00010283834126312286,-4.113533577765338e-06,-2.056766788882669e-05,-2.3760023459600985e-23,8.227066814470163e-07,-6.564505341220828e-21,0.00034279446117579937,6.776263578034403e-21,-0.00022852963593322784,4.715974069608515e-22,-6.564505341220828e-21,2.2852964320918545e-05,51.0,12.0,0.034660764038562775,-0.0015564559726044536,-0.0058922977186739445,1.7786505850381218e-05,8.701705519342795e-05,0.00026933851768262684,-0.0015564559726044536,0.00013558220234699547,8.701705519342795e-05,-2.1779394501209026e-06,-3.480682153167436e-06,-9.317362419797304e-20,-0.0058922977186739445,8.701705519342795e-05,0.002310283947736025,-1.2158409553251577e-20,-1.58212824317161e-05,-0.00016160310769919306,1.7786505850381218e-05,-2.1779394501209026e-06,-1.2158409553251577e-20,4.355878857609241e-08,1.1793346839664188e-22,7.778880393560048e-22,8.701705519342795e-05,-3.480682153167436e-06,-1.58212824317161e-05,1.1793346839664188e-22,6.328513109110645e-07,8.470329472543003e-21,0.00026933851768262684,-9.317362419797304e-20,-0.00016160310769919306,7.778880393560048e-22,8.470329472543003e-21,1.4691191609017551e-05,51.0,13.0,0.032370030879974365,-0.0014424660475924611,-0.005096713081002235,1.6418312952737324e-05,7.45860452298075e-05,0.00021547080541495234,-0.0014424660475924611,0.00012538229930214584,7.45860452298075e-05,-2.0104055238334695e-06,-2.983441845572088e-06,-1.6940658945086007e-20,-0.005096713081002235,7.45860452298075e-05,0.0018288649152964354,1.8022920571241507e-21,-1.243100814463105e-05,-0.00011752953287214041,1.6418312952737324e-05,-2.0104055238334695e-06,1.8022920571241507e-21,4.020811061877794e-08,-2.781803124114098e-23,-1.0310836753949995e-22,7.45860452298075e-05,-2.983441845572088e-06,-1.243100814463105e-05,-2.781803124114098e-23,4.97240307595348e-07,3.8116482626443515e-21,0.00021547080541495234,-1.6940658945086007e-20,-0.00011752953287214041,-1.0310836753949995e-22,3.8116482626443515e-21,9.794127436180133e-06,51.0,14.0,0.03036339394748211,-0.0013440499315038323,-0.004452165681868792,1.5245575923472643e-05,6.464124453486875e-05,0.00017507003212813288,-0.0013440499315038323,0.00011661110329441726,6.464124453486875e-05,-1.8668051779968664e-06,-2.5856495540210744e-06,-1.0164395367051604e-20,-0.004452165681868792,6.464124453486875e-05,0.00147276371717453,-4.609205873407107e-21,-9.94480615190696e-06,-8.753501606406644e-05,1.5245575923472643e-05,-1.8668051779968664e-06,-4.609205873407107e-21,3.733610398626297e-08,9.18020785688486e-23,1.6140523261154342e-22,6.464124453486875e-05,-2.5856495540210744e-06,-9.94480615190696e-06,9.18020785688486e-23,3.9779226312930405e-07,5.293955920339377e-23,0.00017507003212813288,-1.0164395367051604e-20,-8.753501606406644e-05,1.6140523261154342e-22,5.293955920339377e-23,6.7334626692172606e-06,51.0,15.0,0.028591066598892212,-0.0012582173803821206,-0.003922677598893642,1.4229203770810273e-05,5.656108623952605e-05,0.0001441753120161593,-0.0012582173803821206,0.00010898786422330886,5.656108623952605e-05,-1.742351514621987e-06,-2.2624433313467307e-06,-1.9481757786848908e-20,-0.003922677598893642,5.656108623952605e-05,0.0012036262778565288,-2.7926988709370106e-21,-8.080155566858593e-06,-6.654245225945488e-05,1.4229203770810273e-05,-1.742351514621987e-06,-2.7926988709370106e-21,3.484703015033119e-08,2.701614466465296e-23,1.6161028595980295e-22,5.656108623952605e-05,-2.2624433313467307e-06,-8.080155566858593e-06,2.701614466465296e-23,3.232061942526343e-07,1.6940658945086007e-21,0.0001441753120161593,-1.9481757786848908e-20,-6.654245225945488e-05,1.6161028595980295e-22,1.6940658945086007e-21,4.753032499138499e-06,51.0,16.0,0.027014266699552536,-0.0011826979462057352,-0.0034823883324861526,1.3339878933038563e-05,4.990684101358056e-05,0.00012014609819743782,-0.0011826979462057352,0.00010230088810203597,4.990684101358056e-05,-1.633454530747258e-06,-1.9962735677836463e-06,1.2705494208814505e-20,-0.0034823883324861526,4.990684101358056e-05,0.000996394082903862,3.582084447546085e-24,-6.654245225945488e-06,-5.149118442204781e-05,1.3339878933038563e-05,-1.633454530747258e-06,3.582084447546085e-24,3.266909232024773e-08,-3.3016651033387772e-24,1.6293090537945896e-23,4.990684101358056e-05,-1.9962735677836463e-06,-6.654245225945488e-06,-3.3016651033387772e-24,2.661698204065033e-07,-2.276401045745932e-21,0.00012014609819743782,1.2705494208814505e-20,-5.149118442204781e-05,1.6293090537945896e-23,-2.276401045745932e-21,3.4327456432947656e-06,51.0,17.0,0.025602318346500397,-0.0011157370172441006,-0.0031123189255595207,1.2555179637274705e-05,4.436163726495579e-05,0.0001011756612570025,-0.0011157370172441006,9.638757182983682e-05,4.436163726495579e-05,-1.5373690303022158e-06,-1.774465431481076e-06,-2.541098841762901e-21,-0.0031123189255595207,4.436163726495579e-05,0.0008342127548530698,5.929358767034659e-22,-5.545204658119474e-06,-4.0470265957992524e-05,1.2555179637274705e-05,-1.5373690303022158e-06,5.929358767034659e-22,3.0747379753393034e-08,-4.8463549805395267e-23,3.60682983085151e-23,4.436163726495579e-05,-1.774465431481076e-06,-5.545204658119474e-06,-4.8463549805395267e-23,2.218081789351345e-07,2.6469779601696886e-23,0.0001011756612570025,-2.541098841762901e-21,-4.0470265957992524e-05,3.60682983085151e-23,2.6469779601696886e-23,2.5293916223745327e-06,51.0,18.0,0.02433064952492714,-0.001055956701748073,-0.002798285335302353,1.185766996059101e-05,3.969198951381259e-05,8.59993087942712e-05,-0.001055956701748073,9.112090629059821e-05,3.969198951381259e-05,-1.451959633413935e-06,-1.5876796624070266e-06,-1.3129010682441655e-20,-0.002798285335302353,3.969198951381259e-05,0.0007054570014588535,-3.333328852003254e-21,-4.669645932153799e-06,-3.2249743526335806e-05,1.185766996059101e-05,-1.451959633413935e-06,-3.333328852003254e-21,2.9039192384061607e-08,7.92118851455768e-25,1.738559694290532e-22,3.969198951381259e-05,-1.5876796624070266e-06,-4.669645932153799e-06,7.92118851455768e-25,1.867858401283229e-07,3.441071348220595e-22,8.59993087942712e-05,-1.3129010682441655e-20,-3.2249743526335806e-05,1.738559694290532e-22,3.441071348220595e-22,1.8970436030940618e-06,51.0,19.0,0.023179341107606888,-0.0010022602509707212,-0.0025295137893408537,1.1233581972192042e-05,3.572279092622921e-05,7.371369429165497e-05,-0.0010022602509707212,8.640027954243124e-05,3.572279092622921e-05,-1.3755407053395174e-06,-1.4289116734289564e-06,-1.6940658945086007e-21,-0.0025295137893408537,3.572279092622921e-05,0.000601928448304534,-2.457149703111572e-21,-3.969199042330729e-06,-2.601659798528999e-05,1.1233581972192042e-05,-1.3755407053395174e-06,-2.457149703111572e-21,2.7510813183084792e-08,3.822079995171926e-24,1.2529229108668005e-22,3.572279092622921e-05,-1.4289116734289564e-06,-3.969199042330729e-06,3.822079995171926e-24,1.5876796055636078e-07,-4.235164736271502e-22,7.371369429165497e-05,-1.6940658945086007e-21,-2.601659798528999e-05,1.2529229108668005e-22,-4.235164736271502e-22,1.4453665926339454e-06,51.0,20.0,0.02213207632303238,-0.0009537631995044649,-0.002297702245414257,1.0671902600734029e-05,3.2320622267434373e-05,6.366182788042352e-05,-0.0009537631995044649,8.21449066279456e-05,3.2320622267434373e-05,-1.3067635791230714e-06,-1.2928247770105372e-06,-1.0587911840678754e-20,-0.002297702245414257,3.2320622267434373e-05,0.000517731299623847,-1.3425697709554873e-21,-3.4021704777842388e-06,-2.1220608687144704e-05,1.0671902600734029e-05,-1.3067635791230714e-06,-1.3425697709554873e-21,2.6135273500926814e-08,1.8986026587820674e-23,4.047704942573446e-23,3.2320622267434373e-05,-1.2928247770105372e-06,-3.4021704777842388e-06,1.8986026587820674e-23,1.3608682536414562e-07,7.940933880509066e-22,6.366182788042352e-05,-1.0587911840678754e-20,-2.1220608687144704e-05,4.047704942573446e-23,7.940933880509066e-22,1.116874159379222e-06,51.0,21.0,0.021175358444452286,-0.000909745111130178,-0.0020963691640645266,1.0163716979150195e-05,2.9382383218035102e-05,5.5358112149406224e-05,-0.000909745111130178,7.828920934116468e-05,2.9382383218035102e-05,-1.2445367474356317e-06,-1.1752953241739306e-06,5.082197683525802e-21,-0.0020963691640645266,2.9382383218035102e-05,0.00044855085434392095,3.194543050956558e-21,-2.93823813990457e-06,-1.748150862113107e-05,1.0163716979150195e-05,-1.2445367474356317e-06,3.194543050956558e-21,2.4890736582960926e-08,-2.474563258547136e-23,-1.2327437226935022e-22,2.9382383218035102e-05,-1.1752953241739306e-06,-2.93823813990457e-06,-2.474563258547136e-23,1.1752953099630759e-07,2.3822801641527197e-22,5.5358112149406224e-05,5.082197683525802e-21,-1.748150862113107e-05,-1.2327437226935022e-22,2.3822801641527197e-22,8.74075453793921e-07,51.0,22.0,0.020297931507229805,-0.000869612442329526,-0.0019203941337764263,9.701730050437618e-06,2.6827392503037117e-05,4.843834904022515e-05,-0.000869612442329526,7.477938197553158e-05,2.6827392503037117e-05,-1.1879669727932196e-06,-1.0730957455962198e-06,5.505714157152952e-21,-0.0019203941337764263,2.6827392503037117e-05,0.00039117957931011915,1.1754870622328576e-21,-2.5549898055032827e-06,-1.4531504348269664e-05,9.701730050437618e-06,-1.1879669727932196e-06,1.1754870622328576e-21,2.375933938481012e-08,-2.5943516292327655e-23,-2.7260779897692857e-23,2.6827392503037117e-05,-1.0730957455962198e-06,-2.5549898055032827e-06,-2.5943516292327655e-23,1.021995927885655e-07,-3.441071348220595e-22,4.843834904022515e-05,5.505714157152952e-21,-1.4531504348269664e-05,-2.7260779897692857e-23,-3.441071348220595e-22,6.919763677615265e-07,51.0,23.0,0.019490327686071396,-0.0008328724070452154,-0.001765689579769969,9.279915502702352e-06,2.4591776309534907e-05,4.262574657332152e-05,-0.0008328724070452154,7.157087384257466e-05,2.4591776309534907e-05,-1.1363162002453464e-06,-9.836710432864493e-07,-9.529120656610879e-21,-0.001765689579769969,2.4591776309534907e-05,0.00034319900441914797,-1.4364713302483784e-21,-2.2356159661285346e-06,-1.2178784345451277e-05,9.279915502702352e-06,-1.1363162002453464e-06,-1.4364713302483784e-21,2.2726323933852655e-08,3.4170617670359057e-23,2.1440679312664394e-23,2.4591776309534907e-05,-9.836710432864493e-07,-2.2356159661285346e-06,3.4170617670359057e-23,8.942463836092429e-08,7.411538288475128e-22,4.262574657332152e-05,-9.529120656610879e-21,-1.2178784345451277e-05,2.1440679312664394e-23,7.411538288475128e-22,5.535811169465887e-07,51.0,24.0,0.018744533881545067,-0.0007991120801307261,-0.0016289593186229467,8.893252925190609e-06,2.2624433768214658e-05,3.77073920390103e-05,-0.0007991120801307261,6.862646114313975e-05,2.2624433768214658e-05,-1.0889697250604513e-06,-9.049773552760598e-07,-5.293955920339377e-21,-0.0016289593186229467,2.2624433768214658e-05,0.00030276202596724033,-1.3346619768060623e-21,-1.9673420865728986e-06,-1.0283833944413345e-05,8.893252925190609e-06,-1.0889697250604513e-06,-1.3346619768060623e-21,2.1779394288046205e-08,2.564310701556682e-23,2.5094236530375766e-23,2.2624433768214658e-05,-9.049773552760598e-07,-1.9673420865728986e-06,2.564310701556682e-23,7.869368801038945e-08,2.845501307182415e-22,3.77073920390103e-05,-5.293955920339377e-21,-1.0283833944413345e-05,2.5094236530375766e-23,2.845501307182415e-22,4.471231989100488e-07,51.0,25.0,0.01805371232330799,-0.0007679829723201692,-0.0015075221890583634,8.537522262486164e-06,2.0884093828499317e-05,3.3517681004013866e-05,-0.0007679829723201692,6.59148208796978e-05,2.0884093828499317e-05,-1.0454109542479273e-06,-8.353637213076581e-07,1.2281977735187355e-20,-0.0015075221890583634,2.0884093828499317e-05,0.00026844130479730666,3.917141659622922e-21,-1.740341076583718e-06,-8.74374291015556e-06,8.537522262486164e-06,-1.0454109542479273e-06,3.917141659622922e-21,2.090821737965598e-08,-4.347600513112801e-23,-1.0299985183337775e-22,2.0884093828499317e-05,-8.353637213076581e-07,-1.740341076583718e-06,-4.347600513112801e-23,6.961364107382906e-08,-4.963083675318166e-22,3.3517681004013866e-05,1.2281977735187355e-20,-8.74374291015556e-06,-1.0299985183337775e-22,-4.963083675318166e-22,3.643226023086754e-07,51.0,26.0,0.017412003129720688,-0.000739188923034817,-0.0013991789892315865,8.209156476368662e-06,1.9337123376317322e-05,2.992650115629658e-05,-0.000739188923034817,6.340938125504181e-05,1.9337123376317322e-05,-1.0052027619167347e-06,-7.734849418739032e-07,-6.776263578034403e-21,-0.0013991789892315865,1.9337123376317322e-05,0.0002391219459241256,-1.733354348275777e-21,-1.5469698837478063e-06,-7.481625289074145e-06,8.209156476368662e-06,-1.0052027619167347e-06,-1.733354348275777e-21,2.010405530938897e-08,-6.359710336230289e-25,6.87001859852554e-23,1.9337123376317322e-05,-7.734849418739032e-07,-1.5469698837478063e-06,-6.359710336230289e-25,6.187879364460969e-08,1.852884572118782e-22,2.992650115629658e-05,-6.776263578034403e-21,-7.481625289074145e-06,6.87001859852554e-23,1.852884572118782e-22,2.992649967836769e-07,51.0,27.0,0.016814345493912697,-0.0007124765543267131,-0.0013021123595535755,7.905113307060674e-06,1.795590105757583e-05,2.683065577002708e-05,-0.0007124765543267131,6.108749221311882e-05,1.795590105757583e-05,-9.679730510470108e-07,-7.182360377555597e-07,6.776263578034403e-21,-0.0013021123595535755,1.795590105757583e-05,0.0002139244752470404,2.7785485490764202e-21,-1.381223114549357e-06,-6.439357548515545e-06,7.905113307060674e-06,-9.679730510470108e-07,2.7785485490764202e-21,1.9359461589374405e-08,-2.5198389835692096e-23,-8.050409472580741e-23,1.795590105757583e-05,-7.182360377555597e-07,-1.381223114549357e-06,-2.5198389835692096e-23,5.524892543462556e-08,-1.7867101231145398e-22,2.683065577002708e-05,6.776263578034403e-21,-6.439357548515545e-06,-8.050409472580741e-23,-1.7867101231145398e-22,2.47667600206114e-07,51.0,28.0,0.016256356611847878,-0.0006876280531287193,-0.0012148094829171896,7.6227879617363214e-06,1.6717562175472267e-05,2.414759001112543e-05,-0.0006876280531287193,5.892967601539567e-05,1.6717562175472267e-05,-9.334025889984332e-07,-6.68702512029995e-07,2.541098841762901e-21,-0.0012148094829171896,1.6717562175472267e-05,0.0001921487710205838,1.0237957492122354e-21,-1.2383379726088606e-06,-5.572520876739873e-06,7.6227879617363214e-06,-9.334025889984332e-07,1.0237957492122354e-21,1.8668051993131485e-08,1.4135826344241693e-24,-4.0362475267860163e-23,1.6717562175472267e-05,-6.68702512029995e-07,-1.2383379726088606e-06,1.4135826344241693e-24,4.953351862013733e-08,-3.308722450212111e-24,2.414759001112543e-05,2.541098841762901e-21,-5.572520876739873e-06,-4.0362475267860163e-23,-3.308722450212111e-24,2.063896573645252e-07,51.0,29.0,0.015734214335680008,-0.0006644547684118152,-0.0011360032949596643,7.359933078987524e-06,1.5603058272972703e-05,2.1810727048432454e-05,-0.0006644547684118152,5.691913975169882e-05,1.5603058272972703e-05,-9.012163104671345e-07,-6.241223218239611e-07,-1.0587911840678754e-21,-0.0011360032949596643,1.5603058272972703e-05,0.0001732328237267211,-3.325546770727685e-22,-1.1145041298732394e-06,-4.84682823298499e-06,7.359933078987524e-06,-9.012163104671345e-07,-3.325546770727685e-22,1.8024325143528586e-08,-4.196134170600573e-24,1.5412286316499565e-23,1.5603058272972703e-05,-6.241223218239611e-07,-1.1145041298732394e-06,-4.196134170600573e-24,4.4580165337038125e-08,1.3234889800848443e-23,2.1810727048432454e-05,-1.0587911840678754e-21,-4.84682823298499e-06,1.5412286316499565e-23,1.3234889800848443e-23,1.731010002004041e-07,51.0,30.0,0.015244568698108196,-0.0006427927874028683,-0.0010646255686879158,7.114601885405136e-06,1.4596409528166987e-05,1.9765970137086697e-05,-0.0006427927874028683,5.5041295127011836e-05,1.4596409528166987e-05,-8.711757573109935e-07,-5.83856376579206e-07,-8.467203311438921e-21,-0.0010646255686879158,1.4596409528166987e-05,0.00015672190056648105,-4.469517766946132e-21,-1.0066489721793914e-06,-4.235565029375721e-06,7.114601885405136e-06,-8.711757573109935e-07,-4.469517766946132e-21,1.7423515075165596e-08,1.819797347616661e-23,1.2673877168604226e-22,1.4596409528166987e-05,-5.83856376579206e-07,-1.0066489721793914e-06,1.819797347616661e-23,4.0265955902896167e-08,1.4691476655039625e-22,1.9765970137086697e-05,-8.467203311438921e-21,-4.235565029375721e-06,1.2673877168604226e-22,1.4691476655039625e-22,1.4605397780087515e-07,51.0,31.0,0.014784479513764381,-0.0006224989774636924,-0.0009997710585594177,6.885098628117703e-06,1.3684133591596037e-05,1.796906508388929e-05,-0.0006224989774636924,5.328342740540393e-05,1.3684133591596037e-05,-8.430733373643307e-07,-5.473653459375782e-07,2.2569380675439276e-21,-0.0009997710585594177,1.3684133591596037e-05,0.00014224540791474283,1.6484247501825669e-21,-9.122755955104367e-07,-3.7177373997110408e-06,6.885098628117703e-06,-8.430733373643307e-07,1.6484247501825669e-21,1.686146688939516e-08,-1.9852334701272664e-23,-3.818329750428505e-23,1.3684133591596037e-05,-5.473653459375782e-07,-9.122755955104367e-07,-1.9852334701272664e-23,3.649102353620037e-08,-2.3184876017657018e-23,1.796906508388929e-05,2.2569380675439276e-21,-3.7177373997110408e-06,-3.818329750428505e-23,-2.3184876017657018e-23,1.239245790429777e-07,51.0,32.0,0.014351348392665386,-0.0006034476100467145,-0.0009406683384440839,6.669939466519281e-06,1.2854792657890357e-05,1.6383559341193177e-05,-0.0006034476100467145,5.163438981981017e-05,1.2854792657890357e-05,-8.16727265373629e-07,-5.141916972206673e-07,2.0550625791767655e-21,-0.0009406683384440839,1.2854792657890357e-05,0.0001294992252951488,1.0774705015357462e-21,-8.293414452964498e-07,-3.2767118227639003e-06,6.669939466519281e-06,-8.16727265373629e-07,1.0774705015357462e-21,1.6334546160123864e-08,6.729428990556247e-39,-3.475711050984191e-23,1.2854792657890357e-05,-5.141916972206673e-07,-8.293414452964498e-07,6.729428990556247e-39,3.317365582233833e-08,-2.0464967235710923e-23,1.6383559341193177e-05,2.0550625791767655e-21,-3.2767118227639003e-06,-3.475711050984191e-23,-2.0464967235710923e-23,1.0570038000423665e-07,51.0,33.0,0.013942873105406761,-0.0005855279159732163,-0.0008866565767675638,6.467820185207529e-06,1.2098627848899923e-05,1.4979254046920687e-05,-0.0005855279159732163,5.0084374379366636e-05,1.2098627848899923e-05,-7.919779818621464e-07,-4.839451435145747e-07,-3.0998052233734858e-21,-0.0008866565767675638,1.2098627848899923e-05,0.00011823225941043347,-2.7982869848847534e-21,-7.561642405562452e-07,-2.899210358009441e-06,6.467820185207529e-06,-7.919779818621464e-07,-2.7982869848847534e-21,1.5839558997754466e-08,3.143286327701505e-23,6.345823051361074e-23,1.2098627848899923e-05,-4.839451435145747e-07,-7.561642405562452e-07,3.143286327701505e-23,3.024657146966092e-08,-4.569157699256549e-24,1.4979254046920687e-05,-3.0998052233734858e-21,-2.899210358009441e-06,6.345823051361074e-23,-4.569157699256549e-24,9.060032368779503e-08,51.0,34.0,0.013557007536292076,-0.0005686420481652021,-0.0008371674339286983,6.2775898186373524e-06,1.1407278179831337e-05,1.3730982573179062e-05,-0.0005686420481652021,4.8624726332491264e-05,1.1407278179831337e-05,-7.686845151511079e-07,-4.5629110445588594e-07,-2.3754623864476928e-21,-0.0008371674339286983,1.1407278179831337e-05,0.00010823590855579823,-2.578587329514529e-21,-6.913501806593558e-07,-2.5745591756276553e-06,6.2775898186373524e-06,-7.686845151511079e-07,-2.578587329514529e-21,1.5373689876696517e-08,2.6469779601696886e-23,5.808615085792807e-23,1.1407278179831337e-05,-4.5629110445588594e-07,-6.913501806593558e-07,2.6469779601696886e-23,2.7654007084265686e-08,-3.205120716440711e-23,1.3730982573179062e-05,-2.3754623864476928e-21,-2.5745591756276553e-06,5.808615085792807e-23,-3.205120716440711e-23,7.801694579256946e-08,51.0,35.0,0.013191924430429935,-0.0005527029279619455,-0.0007917096372693777,6.098230187490117e-06,1.0773540452646557e-05,1.2617660104297101e-05,-0.0005527029279619455,4.724776226794347e-05,1.0773540452646557e-05,-7.467220939361141e-07,-4.30941611284652e-07,2.4437195292159143e-21,-0.0007917096372693777,1.0773540452646557e-05,9.933591354638338e-05,9.326383656404568e-22,-6.337376703413611e-07,-2.2941198949411046e-06,6.098230187490117e-06,-7.467220939361141e-07,9.326383656404568e-22,1.493444123923382e-08,-1.6543612251060553e-24,-2.665201909257742e-23,1.0773540452646557e-05,-4.30941611284652e-07,-6.337376703413611e-07,-1.6543612251060553e-24,2.5349505605731792e-08,-6.535992172060893e-23,1.2617660104297101e-05,2.4437195292159143e-21,-2.2941198949411046e-06,-2.665201909257742e-23,-6.535992172060893e-23,6.747411873675446e-08,51.0,36.0,0.012845988385379314,-0.0005376331391744316,-0.0007498568156734109,5.928834980295505e-06,1.0191186447627842e-05,1.1621528756222688e-05,-0.0005376331391744316,4.5946646423544735e-05,1.0191186447627842e-05,-7.259798167069675e-07,-4.076474624525872e-07,-6.385239792844101e-21,-0.0007498568156734109,1.0191186447627842e-05,9.138593304669484e-05,-5.362836073896106e-21,-5.823535502713639e-07,-2.050858029178926e-06,5.928834980295505e-06,-7.259798167069675e-07,-5.362836073896106e-21,1.4519596192030804e-08,5.2112378590840744e-23,1.0406572282318893e-22,1.0191186447627842e-05,-4.076474624525872e-07,-5.823535502713639e-07,5.2112378590840744e-23,2.3294141726637463e-08,5.665107403181173e-23,1.1621528756222688e-05,-6.385239792844101e-21,-2.050858029178926e-06,1.0406572282318893e-22,5.665107403181173e-23,5.859594409685087e-08,51.0,37.0,0.012517732568085194,-0.0005233634728938341,-0.000711237546056509,5.768596111010993e-06,9.654808309278451e-06,1.0727564585977234e-05,-0.0005233634728938341,4.471528154681437e-05,9.654808309278451e-06,-7.063587190714316e-07,-3.861923403292167e-07,-3.2643505515281413e-21,-0.000711237546056509,9.654808309278451e-06,8.426246495218948e-05,-2.0774247284905404e-21,-5.363782520362292e-07,-1.8390111335975234e-06,5.768596111010993e-06,-7.063587190714316e-07,-2.0774247284905404e-21,1.4127174097211537e-08,1.819797347616661e-23,4.520662711766359e-23,9.654808309278451e-06,-3.861923403292167e-07,-5.363782520362292e-07,1.819797347616661e-23,2.1455129228797887e-08,5.577884630612696e-23,1.0727564585977234e-05,-3.2643505515281413e-21,-1.8390111335975234e-06,4.520662711766359e-23,5.577884630612696e-23,5.108364220518524e-08,51.0,38.0,0.012205834500491619,-0.0005098318215459585,-0.0006755271460860968,5.616790986096021e-06,9.15969030756969e-06,9.922997378453147e-06,-0.0005098318215459585,4.3548207031562924e-05,9.15969030756969e-06,-6.877703526697587e-07,-3.6638761002905085e-07,4.68642568774899e-21,-0.0006755271460860968,9.15969030756969e-06,7.786080095684156e-05,3.6230555258468794e-21,-4.951183996126929e-07,-1.6538328964088578e-06,5.616790986096021e-06,-6.877703526697587e-07,3.6230555258468794e-21,1.3755406591542396e-08,-2.9778502051908996e-23,-6.787364277231379e-23,9.15969030756969e-06,-3.6638761002905085e-07,-4.951183996126929e-07,-2.9778502051908996e-23,1.9804735629236347e-08,-6.108297032799028e-23,9.922997378453147e-06,4.68642568774899e-21,-1.6538328964088578e-06,-6.787364277231379e-23,-6.108297032799028e-23,4.469818648544788e-08,51.0,39.0,0.011909101158380508,-0.0004969823057763278,-0.0006424405728466809,5.472770681080874e-06,8.701705155544914e-06,9.196924111165572e-06,-0.0004969823057763278,4.244051160640083e-05,8.701705155544914e-06,-6.701351935589628e-07,-3.4806822668542736e-07,-2.66674527459804e-21,-0.0006424405728466809,8.701705155544914e-06,7.209175237221643e-05,-2.604328075422057e-21,-4.5798449832545884e-07,-1.4913931636328925e-06,5.472770681080874e-06,-6.701351935589628e-07,-2.604328075422057e-21,1.3402703835652119e-08,1.9852334701272664e-23,5.599662871395314e-23,8.701705155544914e-06,-3.4806822668542736e-07,-4.5798449832545884e-07,1.9852334701272664e-23,1.8319379790909807e-08,9.32472342763205e-25,9.196924111165572e-06,-2.66674527459804e-21,-1.4913931636328925e-06,5.599662871395314e-23,9.32472342763205e-25,3.924719038650437e-08,51.0,40.0,0.011626453138887882,-0.0004847646923735738,-0.0006117268931120634,5.3359513003670145e-06,8.277232154796366e-06,8.540001545043197e-06,-0.0004847646923735738,4.1387775127077475e-05,8.277232154796366e-06,-6.533817895615357e-07,-3.3108929642367e-07,1.062531975102208e-21,-0.0006117268931120634,8.277232154796366e-06,6.6879038058687e-05,1.0435982026607491e-21,-4.244734270741901e-07,-1.3484212786352145e-06,5.3359513003670145e-06,-6.533817895615357e-07,1.0435982026607491e-21,1.3067636750463407e-08,-1.3234889800848443e-23,-1.793566933657157e-23,8.277232154796366e-06,-3.3108929642367e-07,-4.244734270741901e-07,-1.3234889800848443e-23,1.69789373671847e-08,-8.499924188936658e-24,8.540001545043197e-06,1.062531975102208e-21,-1.3484212786352145e-06,-1.793566933657157e-23,-8.499924188936658e-24,3.457490294067611e-08,51.0,41.0,0.011356910690665245,-0.0004731334338430315,-0.0005831644521094859,5.2058062465221155e-06,7.88307806942612e-06,7.944187018438242e-06,-0.0004731334338430315,4.038600673084147e-05,7.88307806942612e-06,-6.374456802404893e-07,-3.15323120503308e-07,-1.7205356741102976e-21,-0.0005831644521094859,7.88307806942612e-06,6.215715256985277e-05,-1.6498340470343006e-21,-3.9415391483998974e-07,-1.222182618221268e-06,5.2058062465221155e-06,-6.374456802404893e-07,-1.6498340470343006e-21,1.2748913924554017e-08,1.1289187255087069e-23,3.368110107967683e-23,7.88307806942612e-06,-3.15323120503308e-07,-3.9415391483998974e-07,1.1289187255087069e-23,1.576615638043677e-08,3.308722450212111e-24,7.944187018438242e-06,-1.7205356741102976e-21,-1.222182618221268e-06,3.368110107967683e-23,3.308722450212111e-24,3.055456687661717e-08,51.0,42.0,0.011099583469331264,-0.00046204731916077435,-0.000556556973606348,5.081858489575097e-06,7.516423465858679e-06,7.402538358292077e-06,-0.00046204731916077435,3.943159390473738e-05,7.516423465858679e-06,-6.222683737178158e-07,-3.006569215813215e-07,-1.138200522872966e-21,-0.000556556973606348,7.516423465858679e-06,5.7869656302500516e-05,-1.563132452777798e-21,-3.666548025194061e-07,-1.1103807082690764e-06,5.081858489575097e-06,-6.222683737178158e-07,-1.563132452777798e-21,1.2445368291480463e-08,1.0730990067413586e-23,3.1647146297865666e-23,7.516423465858679e-06,-3.006569215813215e-07,-3.666548025194061e-07,1.0730990067413586e-23,1.4666191816559149e-08,-1.9852334701272664e-23,7.402538358292077e-06,-1.138200522872966e-21,-1.1103807082690764e-06,3.1647146297865666e-23,-1.9852334701272664e-23,2.7082457165761298e-08,51.0,43.0,0.010853658430278301,-0.00045146889169700444,-0.0005317300092428923,4.963676019542618e-06,7.174767688411521e-06,6.909035619173665e-06,-0.00045146889169700444,3.852125519188121e-05,7.174767688411521e-06,-6.077970624573936e-07,-2.8699071208393434e-07,8.470329472543003e-22,-0.0005317300092428923,7.174767688411521e-06,5.3967698477208614e-05,8.819333653916283e-22,-3.416556069169019e-07,-1.011078438750701e-06,4.963676019542618e-06,-6.077970624573936e-07,8.819333653916283e-22,1.2155941142566462e-08,-1.0546376894069239e-23,-1.486855604896693e-23,7.174767688411521e-06,-2.8699071208393434e-07,-3.416556069169019e-07,-1.0546376894069239e-23,1.3666224596420307e-08,-6.617444900424222e-24,6.909035619173665e-06,8.470329472543003e-22,-1.011078438750701e-06,-1.486855604896693e-23,-6.617444900424222e-24,2.4073294468962558e-08,51.0,44.0,0.010618395172059536,-0.0004413640417624265,-0.0005085281445644796,4.850865025218809e-06,6.8558892962755635e-06,6.458446478063706e-06,-0.0004413640417624265,3.765200381167233e-05,6.8558892962755635e-06,-5.939834863966098e-07,-2.7423556048233877e-07,7.676236084492097e-22,-0.0005085281445644796,6.8558892962755635e-06,5.040889300289564e-05,8.027874177764601e-22,-3.1887856266621384e-07,-9.226351949109812e-07,4.850865025218809e-06,-5.939834863966098e-07,8.027874177764601e-22,1.187966969240506e-08,-8.387027149346858e-24,-1.38662577817857e-23,6.8558892962755635e-06,-2.7423556048233877e-07,-3.1887856266621384e-07,-8.387027149346858e-24,1.2755142719811374e-08,-4.1359030627651384e-24,6.458446478063706e-06,7.676236084492097e-22,-9.226351949109812e-07,-1.38662577817857e-23,-4.1359030627651384e-24,2.145663202668402e-08,51.0,45.0,0.010393114760518074,-0.00043170168646611273,-0.00048681252519600093,4.7430680751858745e-06,6.557806955242995e-06,6.046205271559302e-06,-0.00043170168646611273,3.6821122193941846e-05,6.557806955242995e-06,-5.807838192595227e-07,-2.623122838940617e-07,8.205631676526035e-22,-0.00048681252519600093,6.557806955242995e-06,4.7156318032648414e-05,5.472972567323288e-22,-2.9808214208060235e-07,-8.436565508418425e-07,4.7430680751858745e-06,-5.807838192595227e-07,5.472972567323288e-22,1.1615676420717591e-08,-5.644156795817268e-25,-1.2273038009999705e-23,6.557806955242995e-06,-2.623122838940617e-07,-2.9808214208060235e-07,-5.644156795817268e-25,1.1923285470061273e-08,-9.926167350636332e-24,6.046205271559302e-06,8.205631676526035e-22,-8.436565508418425e-07,-1.2273038009999705e-23,-9.926167350636332e-24,1.9174011711697858e-08,51.0,46.0,0.010177195072174072,-0.00042245336226187646,-0.0004664589068852365,4.639957751351176e-06,6.2787512433715165e-06,5.668317498930264e-06,-0.00042245336226187646,3.602612196118571e-05,6.2787512433715165e-06,-5.681581001226732e-07,-2.5115005541920254e-07,5.823351512373315e-22,-0.0004664589068852365,6.2787512433715165e-06,4.417773016029969e-05,5.134927620298573e-22,-2.790556266063504e-07,-7.729523758825962e-07,4.639957751351176e-06,-5.681581001226732e-07,5.134927620298573e-22,1.1363161966926327e-08,-3.484263279412157e-25,-1.1259035413567711e-23,6.2787512433715165e-06,-2.5115005541920254e-07,-2.790556266063504e-07,-3.484263279412157e-25,1.116222492214547e-08,-8.271806125530277e-25,5.668317498930264e-06,5.823351512373315e-22,-7.729523758825962e-07,-1.1259035413567711e-23,-8.271806125530277e-25,1.7176718714040362e-08,51.0,47.0,0.009970063343644142,-0.0004135930212214589,-0.0004473557055462152,4.541235284705181e-06,6.017136911395937e-06,5.32127751284861e-06,-0.0004135930212214589,3.526473301462829e-05,6.017136911395937e-06,-5.560696081374772e-07,-2.406854662240221e-07,4.764560328305439e-22,-0.0004473557055462152,6.017136911395937e-06,4.144486229051836e-05,5.183931912166392e-22,-2.61614644614383e-07,-7.095036380633246e-07,4.541235284705181e-06,-5.560696081374772e-07,5.183931912166392e-22,1.1121392695656596e-08,-3.771492958421851e-25,-1.1149233075309093e-23,6.017136911395937e-06,-2.406854662240221e-07,-2.61614644614383e-07,-3.771492958421851e-25,1.0464585642466773e-08,4.1359030627651384e-24,5.32127751284861e-06,4.764560328305439e-22,-7.095036380633246e-07,-1.1149233075309093e-23,4.1359030627651384e-24,1.5423992749674653e-08,51.0,48.0,0.009771195240318775,-0.00040509673999622464,-0.0004294025420676917,4.4466264625953045e-06,5.77153923586593e-06,5.002000762033276e-06,-0.00040509673999622464,3.453485987847671e-05,5.77153923586593e-06,-5.444848625302257e-07,-2.3086157341367652e-07,-9.661469554619363e-22,-0.0004294025420676917,5.77153923586593e-06,3.893288521794602e-05,-1.2792153292934547e-21,-2.4559741973462224e-07,-6.524348918901524e-07,4.4466264625953045e-06,-5.444848625302257e-07,-1.2792153292934547e-21,1.0889697144023103e-08,1.1791891233521874e-23,2.1023420803178602e-23,5.77153923586593e-06,-2.3086157341367652e-07,-2.4559741973462224e-07,1.1791891233521874e-23,9.823897251237668e-09,-3.308722450212111e-24,5.002000762033276e-06,-9.661469554619363e-22,-6.524348918901524e-07,2.1023420803178602e-23,-3.308722450212111e-24,1.3881593652342872e-08,51.0,49.0,0.009580105543136597,-0.00039694251609034836,-0.0004125089035369456,4.355878900241805e-06,5.540677648241399e-06,4.707765583589207e-06,-0.00039694251609034836,3.383458897587843e-05,5.540677648241399e-06,-5.333728836376395e-07,-2.216271184352081e-07,-6.617444900424221e-22,-0.0004125089035369456,5.540677648241399e-06,3.661992377601564e-05,-1.2044869522604262e-21,-2.3086157341367652e-07,-6.009913136040268e-07,4.355878900241805e-06,-5.333728836376395e-07,-1.2044869522604262e-21,1.0667458028024157e-08,1.131571349188603e-23,1.8940370474070103e-23,5.540677648241399e-06,-2.216271184352081e-07,-2.3086157341367652e-07,1.131571349188603e-23,9.234462972074198e-09,-1.2821299494571929e-23,4.707765583589207e-06,-6.617444900424221e-22,-6.009913136040268e-07,1.8940370474070103e-23,-1.2821299494571929e-23,1.2520652958869505e-08,51.0,50.0,0.009396347217261791,-0.0003891101514454931,-0.0003965930372942239,4.268761131243082e-06,5.32339618075639e-06,4.436163635546109e-06,-0.0003891101514454931,3.316215588711202e-05,5.32339618075639e-06,-5.227054771239636e-07,-2.1293585916737356e-07,6.749793798432706e-22,-0.0003965930372942239,5.32339618075639e-06,3.448664574534632e-05,4.331515323710982e-22,-2.1728148169586348e-07,-5.545204544432636e-07,4.268761131243082e-06,-5.227054771239636e-07,4.331515323710982e-22,1.045410868982799e-08,1.6608138854436336e-25,-8.825920958019241e-24,5.32339618075639e-06,-2.1293585916737356e-07,-2.1728148169586348e-07,1.6608138854436336e-25,8.691259267834539e-09,-9.512577044359818e-24,4.436163635546109e-06,6.749793798432706e-22,-5.545204544432636e-07,-8.825920958019241e-24,-9.512577044359818e-24,1.131674398635596e-08,51.0,51.0,0.00921950489282608,-0.0003815809031948447,-0.0003815809031948447,4.185059879091568e-06,5.118650278745918e-06,4.185059879091568e-06,-0.0003815809031948447,3.25159307976719e-05,5.118650278745918e-06,-5.124563244862657e-07,-2.047460156973102e-07,-9.926167350636332e-22,-0.0003815809031948447,5.118650278745918e-06,3.25159307976719e-05,-1.1422604933404383e-21,-2.047460156973102e-07,-5.124563244862657e-07,4.185059879091568e-06,-5.124563244862657e-07,-1.1422604933404383e-21,1.0249126880523818e-08,1.1328478050193412e-23,1.7381824294512192e-23,5.118650278745918e-06,-2.047460156973102e-07,-2.047460156973102e-07,1.1328478050193412e-23,8.189840805528092e-09,4.549493369041652e-24,4.185059879091568e-06,-9.926167350636332e-22,-5.124563244862657e-07,1.7381824294512192e-23,4.549493369041652e-24,1.0249126880523818e-08,51.0,52.0,0.009049195796251297,-0.0003743375127669424,-0.00036740535870194435,4.104578238184331e-06,4.925493612972787e-06,3.952556653530337e-06,-0.0003743375127669424,3.1894414860289544e-05,4.925493612972787e-06,-5.026013809583674e-07,-1.9701974451891147e-07,-6.352747104407253e-22,-0.00036740535870194435,4.925493612972787e-06,3.0692586733493954e-05,-1.0659601500261322e-21,-1.931566089297121e-07,-4.7430680183424556e-07,4.104578238184331e-06,-5.026013809583674e-07,-1.0659601500261322e-21,1.0052027654694484e-08,8.776322117464375e-24,1.6472777274937138e-23,4.925493612972787e-06,-1.9701974451891147e-07,-1.931566089297121e-07,8.776322117464375e-24,7.726264961149809e-09,-7.031035206700735e-24,3.952556653530337e-06,-6.352747104407253e-22,-4.7430680183424556e-07,1.6472777274937138e-23,-7.031035206700735e-24,9.300133108069986e-09,51.0,53.0,0.008885065093636513,-0.0003673640312626958,-0.00035400534397922456,4.0271334000863135e-06,4.7430680751858745e-06,3.736962753464468e-06,-0.0003673640312626958,3.129621109110303e-05,4.7430680751858745e-06,-4.931183639200754e-07,-1.897227264180401e-07,4.764560328305439e-22,-0.00035400534397922456,4.7430680751858745e-06,2.9003083909628913e-05,6.425028977648588e-22,-1.8242569410631404e-07,-4.3964266183138534e-07,4.0271334000863135e-06,-4.931183639200754e-07,6.425028977648588e-22,9.86236692313014e-09,-9.417935034977738e-24,-7.8782110766184e-24,4.7430680751858745e-06,-1.897227264180401e-07,-1.8242569410631404e-07,-9.417935034977738e-24,7.297027870833972e-09,-2.895132143935597e-24,3.736962753464468e-06,4.764560328305439e-22,-4.3964266183138534e-07,-7.8782110766184e-24,-2.895132143935597e-24,8.45466630039482e-09,51.0,54.0,0.008726782165467739,-0.00036064564483240247,-0.0003413253289181739,3.952556653530337e-06,4.570592864183709e-06,3.5367681903153425e-06,-0.00036064564483240247,3.072003892157227e-05,4.570592864183709e-06,-4.839865255235054e-07,-1.8282371172517742e-07,2.6469779601696886e-22,-0.0003413253289181739,4.570592864183709e-06,2.7435362426331267e-05,6.082485125326962e-22,-1.7247519679131074e-07,-4.0808865264807537e-07,3.952556653530337e-06,-4.839865255235054e-07,6.082485125326962e-22,9.679730794687202e-09,-8.786899953342483e-24,-7.186265677908315e-24,4.570592864183709e-06,-1.8282371172517742e-07,-1.7247519679131074e-07,-8.786899953342483e-24,6.899008031524545e-09,3.308722450212111e-24,3.5367681903153425e-06,2.6469779601696886e-22,-4.0808865264807537e-07,-7.186265677908315e-24,3.308722450212111e-24,7.69978569792329e-09,51.0,55.0,0.008574040606617928,-0.0003541685873642564,-0.0003293146437499672,3.880692020175047e-06,4.407357209856855e-06,3.3506225918245036e-06,-0.0003541685873642564,3.016469781869091e-05,4.407357209856855e-06,-4.751867663799203e-07,-1.762942929417477e-07,4.367513634279986e-22,-0.0003293146437499672,4.407357209856855e-06,2.5978644771385007e-05,5.426033197760976e-22,-1.6323545537488826e-07,-3.793157645759493e-07,3.880692020175047e-06,-4.751867663799203e-07,5.426033197760976e-22,9.503735576288364e-09,-7.131732512391292e-24,-6.888607947984892e-24,4.407357209856855e-06,-1.762942929417477e-07,-1.6323545537488826e-07,-7.131732512391292e-24,6.529418339340509e-09,-3.308722450212111e-24,3.3506225918245036e-06,4.367513634279986e-22,-3.793157645759493e-07,-6.888607947984892e-24,-3.308722450212111e-24,7.0243659777702305e-09,51.0,56.0,0.008426552638411522,-0.000347920082276687,-0.0003179269842803478,3.8113939808681607e-06,4.2527130972302984e-06,3.1773145110491896e-06,-0.000347920082276687,2.96290800179122e-05,4.2527130972302984e-06,-4.667012944992166e-07,-1.701085352578957e-07,4.367513634279986e-22,-0.0003179269842803478,4.2527130972302984e-06,2.4623273930046707e-05,5.147208606871054e-22,-1.546441126265563e-07,-3.530349488300999e-07,3.8113939808681607e-06,-4.667012944992166e-07,5.147208606871054e-22,9.334025996565742e-09,-6.541377409916475e-24,-6.3458081418899656e-24,4.2527130972302984e-06,-1.701085352578957e-07,-1.546441126265563e-07,-6.541377409916475e-24,6.185764789279347e-09,-4.1359030627651384e-24,3.1773145110491896e-06,4.367513634279986e-22,-3.530349488300999e-07,-6.3458081418899656e-24,-4.1359030627651384e-24,6.418817033448931e-09,51.0,57.0,0.008284053765237331,-0.00034188825520686805,-0.0003071199753321707,3.744527475646464e-06,4.106067990505835e-06,3.01575619232608e-06,-0.00034188825520686805,2.911215415224433e-05,4.106067990505835e-06,-4.585135684465058e-07,-1.6424272075710178e-07,2.6469779601696886e-22,-0.0003071199753321707,4.106067990505835e-06,2.336058605578728e-05,4.887304560802932e-22,-1.4664527725471999e-07,-3.289915753157402e-07,3.744527475646464e-06,-4.585135684465058e-07,4.887304560802932e-22,9.170270764968791e-09,-5.549530366438066e-24,-6.262498119411385e-24,4.106067990505835e-06,-1.6424272075710178e-07,-1.4664527725471999e-07,-5.549530366438066e-24,5.865811392169462e-09,1.8611563782443123e-24,3.01575619232608e-06,2.6469779601696886e-22,-3.289915753157402e-07,-6.262498119411385e-24,1.8611563782443123e-24,5.874849495768331e-09,51.0,58.0,0.008146294392645359,-0.00033606201759539545,-0.00029685479239560664,3.679966539493762e-06,3.966879376093857e-06,2.864968337235041e-06,-0.00033606201759539545,2.8612956157303415e-05,3.966879376093857e-06,-4.5060815523356723e-07,-1.586751636750705e-07,3.771943593241806e-22,-0.00029685479239560664,3.966879376093857e-06,2.218279223598074e-05,5.02954842513553e-22,-1.391887423096705e-07,-3.0696088515469455e-07,3.679966539493762e-06,-4.5060815523356723e-07,5.02954842513553e-22,9.012162571764293e-09,-6.4645766731973255e-24,-5.925809524049889e-24,3.966879376093857e-06,-1.586751636750705e-07,-1.391887423096705e-07,-6.4645766731973255e-24,5.567549976603914e-09,-2.68833699079734e-24,2.864968337235041e-06,3.771943593241806e-22,-3.0696088515469455e-07,-5.925809524049889e-24,-2.68833699079734e-24,5.385278889491474e-09,51.0,59.0,0.008013041689991951,-0.0003304310666862875,-0.000287095841486007,3.6175943023408763e-06,3.8346497603924945e-06,2.7240682811680017e-06,-0.0003304310666862875,2.813058927131351e-05,3.8346497603924945e-06,-4.4297073031884793e-07,-1.5338599723691004e-07,2.0514079191315086e-22,-0.000287095841486007,3.8346497603924945e-06,2.108287299051881e-05,-1.3421565845459943e-22,-1.3222930306255876e-07,-2.8674401164607843e-07,3.6175943023408763e-06,-4.4297073031884793e-07,-1.3421565845459943e-22,8.859414535322685e-09,-2.0533473494442126e-24,4.4103801149886424e-24,3.8346497603924945e-06,-1.5338599723691004e-07,-1.3222930306255876e-07,-2.0533473494442126e-24,5.289172211320192e-09,-1.2821299494571929e-23,2.7240682811680017e-06,2.0514079191315086e-22,-2.8674401164607843e-07,4.4103801149886424e-24,-1.2821299494571929e-23,4.943862652595499e-09,51.0,60.0,0.007884077727794647,-0.00032498568180017173,-0.00027781035169027746,3.557300942702568e-06,3.7089237139298348e-06,2.5922583972715074e-06,-0.00032498568180017173,2.766421857813839e-05,3.7089237139298348e-06,-4.3558787865549675e-07,-1.4835694628345664e-07,-9.661469554619363e-22,-0.00027781035169027746,3.7089237139298348e-06,2.005449823627714e-05,-1.1535973711815505e-21,-1.2572623120377102e-07,-2.6816468334800447e-07,3.557300942702568e-06,-4.3558787865549675e-07,-1.1535973711815505e-21,8.711757537582798e-09,4.337032616882098e-24,1.6149451588879633e-23,3.7089237139298348e-06,-1.4835694628345664e-07,-1.2572623120377102e-07,4.337032616882098e-24,5.029049177096567e-09,5.583469134732937e-24,2.5922583972715074e-06,-9.661469554619363e-22,-2.6816468334800447e-07,1.6149451588879633e-23,5.583469134732937e-24,4.545163800884211e-09,51.0,61.0,0.007759199012070894,-0.0003197168989572674,-0.0002689681714400649,3.498984597172239e-06,3.5892810501536587e-06,2.4688176836207276e-06,-0.0003197168989572674,2.7213061912334524e-05,3.5892810501536587e-06,-4.2844709469136433e-07,-1.4357124200614635e-07,2.183756817139993e-22,-0.0002689681714400649,3.5892810501536587e-06,1.9091941794613376e-05,-6.292114876578731e-23,-1.1964269219788548e-07,-2.510661829546734e-07,3.498984597172239e-06,-4.2844709469136433e-07,-6.292114876578731e-23,8.568942000408697e-09,-2.0872364195020547e-24,3.2055808590067265e-24,3.5892810501536587e-06,-1.4357124200614635e-07,-1.1964269219788548e-07,-2.0872364195020547e-24,4.785707830023966e-09,-1.0960143116327617e-23,2.4688176836207276e-06,2.183756817139993e-22,-2.510661829546734e-07,3.2055808590067265e-24,-1.0960143116327617e-23,4.184436797061153e-09,51.0,62.0,0.007638215087354183,-0.00031461621983908117,-0.00026054156478494406,3.4425493140588515e-06,3.4753354611893883e-06,2.3530917587777367e-06,-0.00031461621983908117,2.677638258319348e-05,3.4753354611893883e-06,-4.2153666868216533e-07,-1.3901342299504904e-07,2.9778502051908996e-22,-0.00026054156478494406,3.4753354611893883e-06,1.8190023183706217e-05,4.0579759746682963e-22,-1.139454255394412e-07,-2.3530917303560273e-07,3.4425493140588515e-06,-4.2153666868216533e-07,4.0579759746682963e-22,8.43073344469758e-09,-4.6099374693214966e-24,-4.732477544616718e-24,3.4753354611893883e-06,-1.3901342299504904e-07,-1.139454255394412e-07,-4.6099374693214966e-24,4.557817234740469e-09,-1.4475660719677984e-24,2.3530917587777367e-06,2.9778502051908996e-22,-2.3530917303560273e-07,-4.732477544616718e-24,-1.4475660719677984e-24,3.857527630657387e-09,51.0,63.0,0.007520946208387613,-0.00030967575730755925,-0.00025250486214645207,3.3879057355079567e-06,3.3667313346086303e-06,2.2444876321969787e-06,-0.00030967575730755925,2.635349846968893e-05,3.3667313346086303e-06,-4.148456014263502e-07,-1.3466924997374008e-07,-4.566036981292713e-22,-0.00025250486214645207,3.3667313346086303e-06,1.734403667796869e-05,-7.744501709092771e-22,-1.0860423316216838e-07,-2.2076926597947022e-07,3.3879057355079567e-06,-4.148456014263502e-07,-7.744501709092771e-22,8.296911602201362e-09,7.537760009169452e-24,9.340855435928593e-24,3.3667313346086303e-06,-1.3466924997374008e-07,-1.0860423316216838e-07,7.537760009169452e-24,4.3441694685952825e-09,-4.1359030627651384e-25,2.2444876321969787e-06,-4.566036981292713e-22,-2.2076926597947022e-07,9.340855435928593e-24,-4.1359030627651384e-25,3.5607945481075376e-09,51.0,64.0,0.007407223340123892,-0.00030488806078210473,-0.0002448343439027667,3.3349697332596406e-06,3.2631396607030183e-06,2.142465291399276e-06,-0.00030488806078210473,2.5943765649572015e-05,3.2631396607030183e-06,-4.083636326868145e-07,-1.305255779016079e-07,2.183756817139993e-22,-0.0002448343439027667,3.2631396607030183e-06,1.6549716747249477e-05,2.7647280089395357e-22,-1.0359173074903083e-07,-2.0733536132411245e-07,3.3349697332596406e-06,-4.083636326868145e-07,2.7647280089395357e-22,8.167273080061932e-09,1.3059520795414315e-25,-4.3942380487155575e-24,3.2631396607030183e-06,-1.305255779016079e-07,-1.0359173074903083e-07,1.3059520795414315e-25,4.143669407596917e-09,2.0679515313825692e-25,2.142465291399276e-06,2.183756817139993e-22,-2.0733536132411245e-07,-4.3942380487155575e-24,2.0679515313825692e-25,3.2910374425654254e-09,52.0,3.0,0.09405069053173065,-0.005241089966148138,-0.056603774428367615,6.719346129102632e-05,0.0010885341325774789,0.009615384973585606,-0.005241089966148138,0.00048237002920359373,0.0010885341325774789,-8.06321531854337e-06,-4.2687610402936116e-05,-1.3010426069826053e-18,-0.056603774428367615,0.0010885341325774789,0.15275761485099792,3.043382296750706e-20,-0.0010885341325774789,-0.057692307978868484,6.719346129102632e-05,-8.06321531854337e-06,3.043382296750706e-20,1.5810226727808185e-07,-9.469611514275902e-22,-3.8423904624216275e-21,0.0010885341325774789,-4.2687610402936116e-05,-0.0010885341325774789,-9.469611514275902e-22,4.2687610402936116e-05,1.6805133673525319e-18,0.009615384973585606,-1.3010426069826053e-18,-0.057692307978868484,-3.8423904624216275e-21,1.6805133673525319e-18,0.028846153989434242,52.0,4.0,0.07854781299829483,-0.004094097763299942,-0.03684687986969948,5.0395097787259147e-05,0.000653120456263423,0.004807692486792803,-0.004094097763299942,0.0003681806556414813,0.000653120456263423,-6.0474117162812036e-06,-2.5612567696953192e-05,-5.692061405548898e-19,-0.03684687986969948,0.000653120456263423,0.05821843072772026,-2.3174453599999013e-20,-0.00043541364721022546,-0.014423076994717121,5.0395097787259147e-05,-6.0474117162812036e-06,-2.3174453599999013e-20,1.1857670045856139e-07,4.25190928717234e-22,4.135107386101696e-21,0.000653120456263423,-2.5612567696953192e-05,-0.00043541364721022546,4.25190928717234e-22,1.7075044524972327e-05,2.981555974335137e-19,0.004807692486792803,-5.692061405548898e-19,-0.014423076994717121,4.135107386101696e-21,2.981555974335137e-19,0.004807692486792803,52.0,5.0,0.06747644394636154,-0.0033623608760535717,-0.025938212871551514,4.0316077502211556e-05,0.00043541364721022546,0.002747252816334367,-0.0033623608760535717,0.0002979595446959138,0.00043541364721022546,-4.837929282075493e-06,-1.7075044524972327e-05,1.111307226797642e-18,-0.025938212871551514,0.00043541364721022546,0.029452621936798096,3.7123407064633857e-20,-0.00021770682360511273,-0.005494505632668734,4.0316077502211556e-05,-4.837929282075493e-06,3.7123407064633857e-20,9.486136320902006e-08,1.0445374772524904e-22,-9.949180581565066e-21,0.00043541364721022546,-1.7075044524972327e-05,-0.00021770682360511273,1.0445374772524904e-22,8.537522262486164e-06,-2.710505431213761e-19,0.002747252816334367,1.111307226797642e-18,-0.005494505632668734,-9.949180581565066e-21,-2.710505431213761e-19,0.0013736264081671834,52.0,6.0,0.059154726564884186,-0.002853802405297756,-0.019263166934251785,3.359673064551316e-05,0.00031100973137654364,0.0017170329811051488,-0.002853802405297756,0.00025033234851434827,0.00031100973137654364,-4.031607659271685e-06,-1.2196460374980234e-05,-5.421010862427522e-19,-0.019263166934251785,0.00031100973137654364,0.017148947343230247,-3.616541236184954e-20,-0.0001244039012817666,-0.002575549529865384,3.359673064551316e-05,-4.031607659271685e-06,-3.616541236184954e-20,7.905113363904093e-08,-1.5977194343893763e-23,6.766921849329452e-21,0.00031100973137654364,-1.2196460374980234e-05,-0.0001244039012817666,-1.5977194343893763e-23,4.8785841499920934e-06,5.759824041329242e-20,0.0017170329811051488,-5.421010862427522e-19,-0.002575549529865384,6.766921849329452e-21,5.759824041329242e-20,0.000515109917614609,52.0,7.0,0.05266575515270233,-0.002479438902810216,-0.014876632951200008,2.8797197956009768e-05,0.00023325730580836535,0.0011446886928752065,-0.002479438902810216,0.00021587735682260245,0.00023325730580836535,-3.455663772911066e-06,-9.147345735982526e-06,-4.675621868843738e-19,-0.014876632951200008,0.00023325730580836535,0.01091125886887312,-3.065072846492922e-20,-7.775243284413591e-05,-0.0013736264081671834,2.8797197956009768e-05,-3.455663772911066e-06,-3.065072846492922e-20,6.775811556281042e-08,2.854100017267069e-22,3.754512215860672e-21,0.00023325730580836535,-9.147345735982526e-06,-7.775243284413591e-05,2.854100017267069e-22,3.0491150937450584e-06,7.538593230563273e-20,0.0011446886928752065,-4.675621868843738e-19,-0.0013736264081671834,3.754512215860672e-21,7.538593230563273e-20,0.00022893772984389216,52.0,8.0,0.0474621020257473,-0.0021921866573393345,-0.011837808415293694,2.5197548893629573e-05,0.0001814223505789414,0.0008012820617295802,-0.0021921866573393345,0.00018978200387209654,0.0001814223505789414,-3.0237058581406018e-06,-7.114601885405136e-06,1.6263032587282567e-19,-0.011837808415293694,0.0001814223505789414,0.0073886411264538765,7.699926246429931e-21,-5.183495886740275e-05,-0.0008012820617295802,2.5197548893629573e-05,-3.0237058581406018e-06,7.699926246429931e-21,5.9288350229280695e-08,6.0026000055772704e-24,-1.1171787050351469e-21,0.0001814223505789414,-7.114601885405136e-06,-5.183495886740275e-05,6.0026000055772704e-24,2.032743395830039e-06,-2.625802136488331e-20,0.0008012820617295802,1.6263032587282567e-19,-0.0008012820617295802,-1.1171787050351469e-21,-2.625802136488331e-20,0.00011446886492194608,52.0,9.0,0.0431954599916935,-0.0019647369626909494,-0.009645071811974049,2.2397820430342108e-05,0.00014513787755277008,0.0005827505956403911,-0.0019647369626909494,0.0001693275262368843,0.00014513787755277008,-2.687738515305682e-06,-5.691681508324109e-06,2.710505431213761e-20,-0.009645071811974049,0.00014513787755277008,0.005241770762950182,4.047202482353031e-21,-3.628446938819252e-05,-0.0004995004856027663,2.2397820430342108e-05,-2.687738515305682e-06,4.047202482353031e-21,5.270075575936062e-08,4.975468160441412e-23,-7.092326038721808e-22,0.00014513787755277008,-5.691681508324109e-06,-3.628446938819252e-05,4.975468160441412e-23,1.4229203770810273e-06,2.117582368135751e-21,0.0005827505956403911,2.710505431213761e-20,-0.0004995004856027663,-7.092326038721808e-22,2.117582368135751e-21,6.243756070034578e-05,52.0,10.0,0.03963327035307884,-0.0017801381181925535,-0.008010621182620525,2.0158038751105778e-05,0.00011874917254317552,0.0004370629321783781,-0.0017801381181925535,0.00015286046254914254,0.00011874917254317552,-2.4189646410377463e-06,-4.656830242311116e-06,-3.3881317890172014e-20,-0.008010621182620525,0.00011874917254317552,0.0038561869878321886,-1.7660839221761325e-20,-2.638870500959456e-05,-0.0003277971991337836,2.0158038751105778e-05,-2.4189646410377463e-06,-1.7660839221761325e-20,4.743068160451003e-08,2.006537889495772e-22,1.213615423463703e-21,0.00011874917254317552,-4.656830242311116e-06,-2.638870500959456e-05,2.006537889495772e-22,1.034851152326155e-06,-7.623296525288703e-21,0.0004370629321783781,-3.3881317890172014e-20,-0.0003277971991337836,1.213615423463703e-21,-7.623296525288703e-21,3.6421912227524444e-05,52.0,11.0,0.03661418706178665,-0.0016273035435006022,-0.0067595685832202435,1.832549060054589e-05,9.89576437859796e-05,0.00033620226895436645,-0.0016273035435006022,0.00013931684952694923,9.89576437859796e-05,-2.1990588265907718e-06,-3.880692020175047e-06,1.4907779871675686e-19,-0.0067595685832202435,9.89576437859796e-05,0.0029208576306700706,1.7380563934599364e-20,-1.979152875719592e-05,-0.00022413484111893922,1.832549060054589e-05,-2.1990588265907718e-06,1.7380563934599364e-20,4.3118799197827684e-08,-1.0366576561107645e-23,-1.6184219844416344e-21,9.89576437859796e-05,-3.880692020175047e-06,-1.979152875719592e-05,-1.0366576561107645e-23,7.761383926663257e-07,-1.079967007749233e-20,0.00033620226895436645,1.4907779871675686e-19,-0.00022413484111893922,-1.6184219844416344e-21,-1.079967007749233e-20,2.241348374809604e-05,52.0,12.0,0.03402270749211311,-0.0014986726455390453,-0.005780594423413277,1.679836532275658e-05,8.373339369427413e-05,0.00026415890897624195,-0.0014986726455390453,0.00012798074749298394,8.373339369427413e-05,-2.0158038296358427e-06,-3.2836624086485244e-06,-2.371692252312041e-20,-0.005780594423413277,8.373339369427413e-05,0.00226614810526371,-1.1730408613637524e-21,-1.5224252820189577e-05,-0.00015849535702727735,1.679836532275658e-05,-2.0158038296358427e-06,-1.1730408613637524e-21,3.9525566819520463e-08,-7.662905218718076e-23,2.5547064778077973e-22,8.373339369427413e-05,-3.2836624086485244e-06,-1.5224252820189577e-05,-7.662905218718076e-23,5.970295546831039e-07,1.164670302474663e-21,0.00026415890897624195,-2.371692252312041e-20,-0.00015849535702727735,2.5547064778077973e-22,1.164670302474663e-21,1.4408667993848212e-05,52.0,13.0,0.031773943454027176,-0.001388911041431129,-0.005000079516321421,1.550618435430806e-05,7.177147926995531e-05,0.00021132713300175965,-0.001388911041431129,0.00011835257464554161,7.177147926995531e-05,-1.8607420315674972e-06,-2.8145677788415924e-06,-3.5575383784680614e-20,-0.005000079516321421,7.177147926995531e-05,0.0017939244862645864,-1.0748644989042598e-20,-1.1961913514824118e-05,-0.0001152693439507857,1.550618435430806e-05,-1.8607420315674972e-06,-1.0748644989042598e-20,3.648514024234828e-08,4.37030519214251e-23,7.650782509197618e-22,7.177147926995531e-05,-2.8145677788415924e-06,-1.1961913514824118e-05,4.37030519214251e-23,4.6909462980693206e-07,-1.164670302474663e-21,0.00021132713300175965,-3.5575383784680614e-20,-0.0001152693439507857,7.650782509197618e-22,-1.164670302474663e-21,9.605779268895276e-06,52.0,14.0,0.029804091900587082,-0.0012941460590809584,-0.004367743153125048,1.4398598978004884e-05,6.22019506408833e-05,0.00017170330102089792,-0.0012941460590809584,0.00011007305874954909,6.22019506408833e-05,-1.727831886455533e-06,-2.4392920749960467e-06,-3.8963515573697816e-20,-0.004367743153125048,6.22019506408833e-05,0.001444625318981707,-9.368856028515864e-21,-9.569530448061414e-06,-8.585165051044896e-05,1.4398598978004884e-05,-1.727831886455533e-06,-9.368856028515864e-21,3.387905778140521e-08,7.003639014095496e-23,5.669423923836798e-22,6.22019506408833e-05,-2.4392920749960467e-06,-9.569530448061414e-06,7.003639014095496e-23,3.7527570384554565e-07,2.117582368135751e-22,0.00017170330102089792,-3.8963515573697816e-20,-8.585165051044896e-05,5.669423923836798e-22,2.117582368135751e-22,6.603972906304989e-06,52.0,15.0,0.02806427888572216,-0.0012114981655031443,-0.003848288208246231,1.3438692803902086e-05,5.442670590127818e-05,0.00014140272105578333,-0.0012114981655031443,0.0001028771439450793,5.442670590127818e-05,-1.6126431319207768e-06,-2.134380565621541e-06,-2.541098841762901e-21,-0.003848288208246231,5.442670590127818e-05,0.0011806291295215487,-1.212881744956524e-21,-7.775243830110412e-06,-6.526279321406037e-05,1.3438692803902086e-05,-1.6126431319207768e-06,-1.212881744956524e-21,3.16204520345309e-08,-6.4853982623601815e-24,1.1193900904117604e-22,5.442670590127818e-05,-2.134380565621541e-06,-7.775243830110412e-06,-6.4853982623601815e-24,3.0491150937450584e-07,-3.1763735522036263e-22,0.00014140272105578333,-2.541098841762901e-21,-6.526279321406037e-05,1.1193900904117604e-22,-3.1763735522036263e-22,4.6616278268629685e-06,52.0,16.0,0.026516418904066086,-0.001138780964538455,-0.003416342893615365,1.2598774446814787e-05,4.8023564886534587e-05,0.00011783559602918103,-0.001138780964538455,9.656502516008914e-05,4.8023564886534587e-05,-1.5118529290703009e-06,-1.883277036540676e-06,-8.470329472543003e-22,-0.003416342893615365,4.8023564886534587e-05,0.0009773557540029287,-1.948131637815167e-22,-6.403141924238298e-06,-5.050097024650313e-05,1.2598774446814787e-05,-1.5118529290703009e-06,-1.948131637815167e-22,2.9644175114640348e-08,2.919086694183538e-23,-2.4488025323706006e-23,4.8023564886534587e-05,-1.883277036540676e-06,-6.403141924238298e-06,2.919086694183538e-23,2.5110361434599326e-07,3.441071348220595e-22,0.00011783559602918103,-8.470329472543003e-22,-5.050097024650313e-05,-2.4488025323706006e-23,3.441071348220595e-22,3.3667313346086303e-06,52.0,17.0,0.025130396708846092,-0.0010743049206212163,-0.003053287509828806,1.185766996059101e-05,4.2687610402936116e-05,9.922997560352087e-05,-0.0010743049206212163,9.098320151679218e-05,4.2687610402936116e-05,-1.4229203770810273e-06,-1.67402401984873e-06,9.317362419797304e-21,-0.003053287509828806,4.2687610402936116e-05,0.0008182728197425604,1.4196560974104321e-21,-5.3359513003670145e-06,-3.969198951381259e-05,1.185766996059101e-05,-1.4229203770810273e-06,1.4196560974104321e-21,2.7900400212388377e-08,-5.634374723377301e-24,-7.087390167592276e-23,4.2687610402936116e-05,-1.67402401984873e-06,-5.3359513003670145e-06,-5.634374723377301e-24,2.0925300248109124e-07,-8.735027268559972e-22,9.922997560352087e-05,9.317362419797304e-21,-3.969198951381259e-05,-7.087390167592276e-23,-8.735027268559972e-22,2.4807493446132867e-06,52.0,18.0,0.02388208918273449,-0.0010167432483285666,-0.0027452067006379366,1.1198910215171054e-05,3.819417906925082e-05,8.43454763526097e-05,-0.0010167432483285666,8.601179433753714e-05,3.819417906925082e-05,-1.343869257652841e-06,-1.4978108993091155e-06,1.7787691892340307e-20,-0.0027452067006379366,3.819417906925082e-05,0.0006919769803062081,4.384212746792684e-21,-4.4934326979273465e-06,-3.162955545121804e-05,1.1198910215171054e-05,-1.343869257652841e-06,4.384212746792684e-21,2.635037787968031e-08,1.9011890970320156e-24,-2.4758186202372684e-22,3.819417906925082e-05,-1.4978108993091155e-06,-4.4934326979273465e-06,1.9011890970320156e-24,1.762130494853409e-07,-3.1763735522036263e-22,8.43454763526097e-05,1.7787691892340307e-20,-3.162955545121804e-05,-2.4758186202372684e-22,-3.1763735522036263e-22,1.8605620653033839e-06,52.0,19.0,0.022751938551664352,-0.0009650395950302482,-0.0024815304204821587,1.0609493983793072e-05,3.437475970713422e-05,7.229612674564123e-05,-0.0009650395950302482,8.155580871971324e-05,3.437475970713422e-05,-1.2731393326248508e-06,-1.348029854852939e-06,-1.1011428314305904e-20,-0.0024815304204821587,3.437475970713422e-05,0.0005904263816773891,-2.3441268622954948e-21,-3.819417997874552e-06,-2.5516279492876492e-05,1.0609493983793072e-05,-1.2731393326248508e-06,-2.3441268622954948e-21,2.4963515699027994e-08,1.34145639160652e-23,1.0673890106283154e-22,3.437475970713422e-05,-1.348029854852939e-06,-3.819417997874552e-06,1.34145639160652e-23,1.4978110129959532e-07,5.823351512373315e-22,7.229612674564123e-05,-1.1011428314305904e-20,-2.5516279492876492e-05,1.0673890106283154e-22,5.823351512373315e-22,1.417571070305712e-06,52.0,20.0,0.021723926067352295,-0.0009183426736854017,-0.0022541137877851725,1.0079019375552889e-05,3.110097532044165e-05,6.243756070034578e-05,-0.0009183426736854017,7.753899990348145e-05,3.110097532044165e-05,-1.2094823205188732e-06,-1.2196460374980234e-06,-1.7787691892340307e-20,-0.0022541137877851725,3.110097532044165e-05,0.0005078379181213677,-4.579302567249105e-21,-3.2737868878029985e-06,-2.0812520233448595e-05,1.0079019375552889e-05,-1.2094823205188732e-06,-4.579302567249105e-21,2.3715340802255014e-08,5.1081990564546404e-23,1.5940038995257853e-22,3.110097532044165e-05,-1.2196460374980234e-06,-3.2737868878029985e-06,5.1081990564546404e-23,1.2838378893320623e-07,7.940933880509066e-22,6.243756070034578e-05,-1.7787691892340307e-20,-2.0812520233448595e-05,1.5940038995257853e-22,7.940933880509066e-22,1.0953958735626657e-06,52.0,21.0,0.020784800872206688,-0.0008759584161452949,-0.002056597964838147,9.59906628850149e-06,2.8273612770135514e-05,5.4293534049065784e-05,-0.0008759584161452949,7.38994640414603e-05,2.8273612770135514e-05,-1.1518880000949139e-06,-1.1087691973443725e-06,1.9905274260476058e-20,-0.002056597964838147,2.8273612770135514e-05,0.00043997925240546465,2.5540932110291912e-21,-2.8273614134377567e-06,-1.7145326637546532e-05,9.59906628850149e-06,-1.1518880000949139e-06,2.5540932110291912e-21,2.258603792881786e-08,-2.1611333592290855e-23,-9.696961605813832e-23,2.8273612770135514e-05,-1.1087691973443725e-06,-2.8273614134377567e-06,-2.1611333592290855e-23,1.1087691120792442e-07,-1.3631936494873896e-21,5.4293534049065784e-05,1.9905274260476058e-20,-1.7145326637546532e-05,-9.696961605813832e-23,-1.3631936494873896e-21,8.572662864025915e-07,52.0,22.0,0.019923511892557144,-0.0008373155142180622,-0.001883959979750216,9.162745300272945e-06,2.5815037588472478e-05,4.750684092869051e-05,-0.0008373155142180622,7.05864149495028e-05,2.5815037588472478e-05,-1.0995294132953859e-06,-1.0123544598172884e-06,1.0164395367051604e-20,-0.001883959979750216,2.5815037588472478e-05,0.00038370417314581573,-1.4971599269217433e-22,-2.458574954289361e-06,-1.4252052096708212e-05,9.162745300272945e-06,-1.0995294132953859e-06,-1.4971599269217433e-22,2.1559399598913842e-08,8.061488708450208e-24,1.353768439577144e-24,2.5815037588472478e-05,-1.0123544598172884e-06,-2.458574954289361e-06,8.061488708450208e-24,9.641470910537464e-08,-8.07328277851755e-22,4.750684092869051e-05,1.0164395367051604e-20,-1.4252052096708212e-05,1.353768439577144e-24,-8.07328277851755e-22,6.786691528759548e-07,52.0,23.0,0.0191307682543993,-0.000801939400844276,-0.0017321890918537974,8.76436479302356e-06,2.366378430451732e-05,4.180601899861358e-05,-0.000801939400844276,6.755778304068372e-05,2.366378430451732e-05,-1.0517237569729332e-06,-9.279915502702352e-07,1.2705494208814505e-20,-0.0017321890918537974,2.366378430451732e-05,0.0003366403980180621,2.4880708291639266e-21,-2.151253283955157e-06,-1.1944576726818923e-05,8.76436479302356e-06,-1.0517237569729332e-06,2.4880708291639266e-21,2.0622035634687563e-08,-1.6154583917929e-23,-8.345748266987177e-23,2.366378430451732e-05,-9.279915502702352e-07,-2.151253283955157e-06,-1.6154583917929e-23,8.436286691448913e-08,-7.213014941462401e-22,4.180601899861358e-05,1.2705494208814505e-20,-1.1944576726818923e-05,-8.345748266987177e-23,-7.213014941462401e-22,5.4293531093208e-07,52.0,24.0,0.018398696556687355,-0.0007694323430769145,-0.0015980517491698265,8.39918266137829e-06,2.1770681996713392e-05,3.698224827530794e-05,-0.0007694323430769145,6.477845454355702e-05,2.1770681996713392e-05,-1.0079019148179214e-06,-8.537522262486164e-07,5.717472393966527e-21,-0.0015980517491698265,2.1770681996713392e-05,0.0002969760971609503,-1.608856900815423e-21,-1.8931027625512797e-06,-1.008606795949163e-05,8.39918266137829e-06,-1.0079019148179214e-06,-1.608856900815423e-21,1.9762783409760232e-08,8.870745612375709e-24,5.30661051143657e-23,2.1770681996713392e-05,-8.537522262486164e-07,-1.8931027625512797e-06,8.870745612375709e-24,7.423932402161881e-08,-7.146840492458159e-22,3.698224827530794e-05,5.717472393966527e-21,-1.008606795949163e-05,5.30661051143657e-23,-7.146840492458159e-22,4.385246938909404e-07,52.0,25.0,0.01772059127688408,-0.0007394588901661336,-0.0014789177803322673,8.06321531854337e-06,2.009601485042367e-05,3.287311119493097e-05,-0.0007394588901661336,6.221883813850582e-05,2.009601485042367e-05,-9.67585833677731e-07,-7.880789780756459e-07,-8.470329472543003e-21,-0.0014789177803322673,2.009601485042367e-05,0.0002633111726026982,-2.0829569027337722e-21,-1.6746678284107475e-06,-8.575593710702378e-06,8.06321531854337e-06,-9.67585833677731e-07,-2.0829569027337722e-21,1.897227264180401e-08,2.3845114730003554e-23,5.1747666106251724e-23,2.009601485042367e-05,-7.880789780756459e-07,-1.6746678284107475e-06,2.3845114730003554e-23,6.567324817297049e-08,4.1028158382630173e-22,3.287311119493097e-05,-8.470329472543003e-21,-8.575593710702378e-06,5.1747666106251724e-23,4.1028158382630173e-22,3.573164235604054e-07,52.0,26.0,0.0170906949788332,-0.0007117338245734572,-0.0013726295437663794,7.75309217715403e-06,1.8607421225169674e-05,2.9350991098908707e-05,-0.0007117338245734572,5.985386815154925e-05,1.8607421225169674e-05,-9.303710157837486e-07,-7.297027764252562e-07,6.352747104407253e-22,-0.0013726295437663794,1.8607421225169674e-05,0.00023455207701772451,4.921922049243437e-22,-1.4885936252539977e-06,-7.337747774727177e-06,7.75309217715403e-06,-9.303710157837486e-07,4.921922049243437e-22,1.824257012117414e-08,4.959187885737732e-25,-1.8124899712794176e-23,1.8607421225169674e-05,-7.297027764252562e-07,-1.4885936252539977e-06,4.959187885737732e-25,5.8376222966671776e-08,1.3234889800848443e-23,2.9350991098908707e-05,6.352747104407253e-22,-7.337747774727177e-06,-1.8124899712794176e-23,1.3234889800848443e-23,2.9350991326282383e-07,52.0,27.0,0.016504041850566864,-0.0006860132561996579,-0.0012774040224030614,7.46594059819472e-06,1.727831840980798e-05,2.631468123581726e-05,-0.0006860132561996579,5.7662156905280426e-05,1.727831840980798e-05,-8.959128194874211e-07,-6.775811698389589e-07,-1.6728900708272432e-20,-0.0012774040224030614,1.727831840980798e-05,0.0002098361001117155,-4.575614989615995e-21,-1.3291014511196408e-06,-6.315523478406249e-06,7.46594059819472e-06,-8.959128194874211e-07,-4.575614989615995e-21,1.756691858645354e-08,3.1822396481125946e-23,1.3661214215401396e-22,1.727831840980798e-05,-6.775811698389589e-07,-1.3291014511196408e-06,3.1822396481125946e-23,5.212162790257935e-08,6.352747104407253e-22,2.631468123581726e-05,-1.6728900708272432e-20,-6.315523478406249e-06,1.3661214215401396e-22,6.352747104407253e-22,2.4290474698318576e-07,52.0,28.0,0.015956329181790352,-0.0006620872882194817,-0.0011917571537196636,7.199299489002442e-06,1.6086711184470914e-05,2.3683212930336595e-05,-0.0006620872882194817,5.562532169278711e-05,1.6086711184470914e-05,-8.639159432277665e-07,-6.308513889052847e-07,-5.082197683525802e-21,-0.0011917571537196636,1.6086711184470914e-05,0.0001884765224531293,-1.739574737394498e-22,-1.1916082485186053e-06,-5.465356935019372e-06,7.199299489002442e-06,-8.639159432277665e-07,-1.739574737394498e-22,1.6939528890702604e-08,1.2112898457378934e-23,-5.9063857964110845e-24,1.6086711184470914e-05,-6.308513889052847e-07,-1.1916082485186053e-06,1.2112898457378934e-23,4.672973474839637e-08,3.474158572722716e-22,2.3683212930336595e-05,-5.082197683525802e-21,-5.465356935019372e-06,-5.9063857964110845e-24,3.474158572722716e-22,2.0242062248598813e-07,52.0,29.0,0.015443802811205387,-0.0006397744291462004,-0.001114445854909718,6.9510479079326615e-06,1.5014263226476032e-05,2.1391289919847623e-05,-0.0006397744291462004,5.3727511840406805e-05,1.5014263226476032e-05,-8.341257284882886e-07,-5.887946485927387e-07,1.6940658945086007e-21,-0.001114445854909718,1.5014263226476032e-05,0.00016992204473353922,6.811016472871567e-22,-1.0724473895606934e-06,-4.753620032715844e-06,6.9510479079326615e-06,-8.341257284882886e-07,6.811016472871567e-22,1.635540769484578e-08,6.16759854694375e-24,-2.86929410939035e-23,1.5014263226476032e-05,-5.887946485927387e-07,-1.0724473895606934e-06,6.16759854694375e-24,4.20567616288281e-08,-6.617444900424222e-24,2.1391289919847623e-05,1.6940658945086007e-21,-4.753620032715844e-06,-2.86929410939035e-23,-6.617444900424222e-24,1.6977213590507745e-07,52.0,30.0,0.014963177032768726,-0.0006189168198034167,-0.0010444221552461386,6.719346401951043e-06,1.4045601346879266e-05,1.938585592142772e-05,-0.0006189168198034167,5.195495396037586e-05,1.4045601346879266e-05,-8.063215659603884e-07,-5.508078970706265e-07,4.658681209898652e-21,-0.0010444221552461386,1.4045601346879266e-05,0.00015372665075119585,2.2197860258129327e-21,-9.686622206572792e-07,-4.15411204812699e-06,6.719346401951043e-06,-8.063215659603884e-07,2.2197860258129327e-21,1.581022601726545e-08,-1.4457064112698304e-23,-5.641170207873147e-23,1.4045601346879266e-05,-5.508078970706265e-07,-9.686622206572792e-07,-1.4457064112698304e-23,3.798675152211217e-08,-1.0257039595657543e-22,1.938585592142772e-05,4.658681209898652e-21,-4.15411204812699e-06,-5.641170207873147e-23,-1.0257039595657543e-22,1.4324524499897962e-07,52.0,31.0,0.014511563815176487,-0.0005993765080347657,-0.0009807979222387075,6.502593350887764e-06,1.3167751603759825e-05,1.7623506209929474e-05,-0.0005993765080347657,5.029564636060968e-05,1.3167751603759825e-05,-7.803112112014787e-07,-5.163823857401439e-07,-0.0,-0.0009807979222387075,1.3167751603759825e-05,0.00013952679000794888,0.0,-8.778500841799541e-07,-3.6462424759520218e-06,6.502593350887764e-06,-7.803112112014787e-07,0.0,1.5300219757818923e-08,0.0,-0.0,1.3167751603759825e-05,-5.163823857401439e-07,-8.778500841799541e-07,0.0,3.4425493566914156e-08,-0.0,1.7623506209929474e-05,-0.0,-3.6462424759520218e-06,-0.0,-0.0,1.2154141870723834e-07,52.0,32.0,0.014086413197219372,-0.0005810325965285301,-0.0009228164562955499,6.299387223407393e-06,1.236970547324745e-05,1.6068490367615595e-05,-0.0005810325965285301,4.873906436841935e-05,1.236970547324745e-05,-7.559264645351504e-07,-4.850865025218809e-07,-0.0,-0.0009228164562955499,1.236970547324745e-05,0.0001270242064492777,5.293955920339377e-23,-7.980455052347679e-07,-3.2136981644725893e-06,6.299387223407393e-06,-7.559264645351504e-07,5.293955920339377e-23,1.4822087557320174e-08,-1.6543612251060553e-24,-0.0,1.236970547324745e-05,-4.850865025218809e-07,-7.980455052347679e-07,-1.6543612251060553e-24,3.1295904534545116e-08,-0.0,1.6068490367615595e-05,-0.0,-3.2136981644725893e-06,-0.0,-0.0,1.0366768066205623e-07,52.0,33.0,0.013685465790331364,-0.0005637783324345946,-0.0008698293822817504,6.10849656368373e-06,1.1642076060525142e-05,1.4691191609017551e-05,-0.0005637783324345946,4.727596024167724e-05,1.1642076060525142e-05,-7.330195899157843e-07,-4.565519873267476e-07,-0.0,-0.0008698293822817504,1.1642076060525142e-05,0.00011597255797823891,-2.6469779601696886e-23,-7.276297537828214e-07,-2.8434562864276813e-06,6.10849656368373e-06,-7.330195899157843e-07,-2.6469779601696886e-23,1.4372933065942561e-08,8.271806125530277e-25,-0.0,1.1642076060525142e-05,-4.565519873267476e-07,-7.276297537828214e-07,8.271806125530277e-25,2.8534499207921726e-08,-0.0,1.4691191609017551e-05,-0.0,-2.8434562864276813e-06,-0.0,-0.0,8.885800895086504e-08,52.0,34.0,0.013306710869073868,-0.0005475194193422794,-0.0008212791872210801,5.928834980295505e-06,1.097681433748221e-05,1.3466925338434521e-05,-0.0005475194193422794,4.58981521660462e-05,1.097681433748221e-05,-7.114601885405136e-07,-4.3046330233664776e-07,-8.652800345793373e-21,-0.0008212791872210801,1.097681433748221e-05,0.00010616724466672167,-6.2626151137945165e-21,-6.65261495669256e-07,-2.5250485577998916e-06,5.928834980295505e-06,-7.114601885405136e-07,-6.2626151137945165e-21,1.3950200106194188e-08,4.880365614062863e-23,1.3924299958381328e-22,1.097681433748221e-05,-4.3046330233664776e-07,-6.65261495669256e-07,4.880365614062863e-23,2.6088684990099864e-08,8.115170535278317e-23,1.3466925338434521e-05,-8.652800345793373e-21,-2.5250485577998916e-06,1.3924299958381328e-22,8.115170535278317e-23,7.651662059515729e-08,52.0,35.0,0.012948356568813324,-0.0005321722128428519,-0.0007766837952658534,5.759439773100894e-06,1.036699177348055e-05,1.2375012374832295e-05,-0.0005321722128428519,4.45983896497637e-05,1.036699177348055e-05,-6.911327545822132e-07,-4.065486791660078e-07,-0.0,-0.0007766837952658534,1.036699177348055e-05,9.743733244249597e-05,2.6469779601696886e-23,-6.098230187490117e-07,-2.250002353321179e-06,5.759439773100894e-06,-6.911327545822132e-07,2.6469779601696886e-23,1.35516229349264e-08,-8.271806125530277e-25,-0.0,1.036699177348055e-05,-4.065486791660078e-07,-6.098230187490117e-07,-8.271806125530277e-25,2.391462849971049e-08,-0.0,1.2375012374832295e-05,-0.0,-2.250002353321179e-06,-0.0,-0.0,6.617653980356408e-08,52.0,36.0,0.012608797289431095,-0.0005176620907150209,-0.0007356250425800681,5.599455107585527e-06,9.806613888940774e-06,1.1398037713661324e-05,-0.0005176620907150209,4.3370229832362384e-05,9.806613888940774e-06,-6.719346288264205e-07,-3.8457307027783827e-07,-6.761384424428035e-21,-0.0007356250425800681,9.806613888940774e-06,8.963928848970681e-05,-5.627410277497332e-21,-5.603779413831944e-07,-2.011418473557569e-06,5.599455107585527e-06,-6.719346288264205e-07,-5.627410277497332e-21,1.3175188939840154e-08,4.4667753077863494e-23,1.1767521426893424e-22,9.806613888940774e-06,-3.8457307027783827e-07,-5.603779413831944e-07,4.4667753077863494e-23,2.197560533545584e-08,3.315283879677377e-23,1.1398037713661324e-05,-6.761384424428035e-21,-2.011418473557569e-06,1.1767521426893424e-22,3.315283879677377e-23,5.746909792492261e-08,52.0,37.0,0.012286593206226826,-0.0005039222887717187,-0.0006977385492064059,5.448118827189319e-06,9.290475645684637e-06,1.0521265721763484e-05,-0.0005039222887717187,4.2207906517433e-05,9.290475645684637e-06,-6.537742365253507e-07,-3.6433237937671947e-07,-0.0,-0.0006977385492064059,9.290475645684637e-06,8.265196083812043e-05,2.6469779601696886e-23,-5.161375611351104e-07,-1.8036455458059208e-06,5.448118827189319e-06,-6.537742365253507e-07,2.6469779601696886e-23,1.281910311234924e-08,-8.271806125530277e-25,-0.0,9.290475645684637e-06,-3.6433237937671947e-07,-5.161375611351104e-07,-8.271806125530277e-25,2.0240689124761957e-08,-0.0,1.0521265721763484e-05,-0.0,-1.8036455458059208e-06,-0.0,-0.0,5.010126358229172e-08,52.0,38.0,0.011980445124208927,-0.0004908931441605091,-0.0006627057446166873,5.304746991896536e-06,8.814041393634398e-06,9.732170838105958e-06,-0.0004908931441605091,4.110626832698472e-05,8.814041393634398e-06,-6.365696663124254e-07,-3.4564868656161707e-07,-0.0,-0.0006627057446166873,8.814041393634398e-06,7.637264207005501e-05,-5.293955920339377e-23,-4.7643467837588105e-07,-1.622028435122047e-06,5.304746991896536e-06,-6.365696663124254e-07,-5.293955920339377e-23,1.2481757849513997e-08,1.6543612251060553e-24,-0.0,8.814041393634398e-06,-3.4564868656161707e-07,-4.7643467837588105e-07,1.6543612251060553e-24,1.8683712355027637e-08,-0.0,9.732170838105958e-06,-0.0,-1.622028435122047e-06,-0.0,-0.0,4.3838607410862096e-08,52.0,39.0,0.011689183302223682,-0.0004785208438988775,-0.0006302469410002232,5.168727966520237e-06,8.373339369427413e-06,9.020061042974703e-06,-0.0004785208438988775,4.0060680476017296e-05,8.373339369427413e-06,-6.202473628036387e-07,-3.2836624086485244e-07,-0.0,-0.0006302469410002232,8.373339369427413e-06,7.07138460711576e-05,0.0,-4.4070208105040365e-07,-1.4627124755861587e-06,5.168727966520237e-06,-6.202473628036387e-07,0.0,1.2161712525937673e-08,8.271806125530277e-25,-0.0,8.373339369427413e-06,-3.2836624086485244e-07,-4.4070208105040365e-07,8.271806125530277e-25,1.728243326226675e-08,-0.0,9.020061042974703e-06,-0.0,-1.4627124755861587e-06,-0.0,-0.0,3.84924341290116e-08,52.0,40.0,0.011411746963858604,-0.00046675693010911345,-0.0006001160363666713,5.0395096877764445e-06,7.964883479871787e-06,8.375770448765252e-06,-0.00046675693010911345,3.906697384081781e-05,7.964883479871787e-06,-6.047411602594366e-07,-3.123483907074842e-07,-0.0,-0.0006001160363666713,7.964883479871787e-06,6.560075416928157e-05,-2.6469779601696886e-23,-4.084555769168219e-07,-1.322490106758778e-06,5.0395096877764445e-06,-6.047411602594366e-07,-2.6469779601696886e-23,1.1857670401127507e-08,8.271806125530277e-25,-0.0,7.964883479871787e-06,-3.123483907074842e-07,-4.084555769168219e-07,8.271806125530277e-25,1.6017866144579784e-08,-0.0,8.375770448765252e-06,-0.0,-1.322490106758778e-06,-0.0,-0.0,3.391000191754756e-08,52.0,41.0,0.01114717498421669,-0.00045555763063021004,-0.00057209562510252,4.9165946620632894e-06,7.585603725601686e-06,7.791414645907935e-06,-0.00045555763063021004,3.81213758373633e-05,7.585603725601686e-06,-5.899913730900153e-07,-2.974746564632369e-07,1.852884572118782e-22,-0.00057209562510252,7.585603725601686e-06,6.096911965869367e-05,2.6441140795393742e-23,-3.792801805957424e-07,-1.1986791150775389e-06,4.9165946620632894e-06,-5.899913730900153e-07,2.6441140795393742e-23,1.1568458191391073e-08,-1.6448655831303936e-25,-1.0625390632146566e-25,7.585603725601686e-06,-2.974746564632369e-07,-3.792801805957424e-07,-1.6448655831303936e-25,1.4873732467890477e-08,-8.271806125530277e-24,7.791414645907935e-06,1.852884572118782e-22,-1.1986791150775389e-06,-1.0625390632146566e-25,-8.271806125530277e-24,2.996698000856668e-08,52.0,42.0,0.010894592851400375,-0.0004448832478374243,-0.0005459930398501456,4.799533144250745e-06,7.232784810184967e-06,7.260181519086473e-06,-0.0004448832478374243,3.722047767951153e-05,7.232784810184967e-06,-5.759440000474569e-07,-2.8363862725200306e-07,3.1763735522036263e-22,-0.0005459930398501456,7.232784810184967e-06,5.6763561588013545e-05,-2.4617270716695606e-23,-3.5281877330817224e-07,-1.0890272506003384e-06,4.799533144250745e-06,-5.759440000474569e-07,-2.4617270716695606e-23,1.129301896440893e-08,9.801913277809292e-25,5.869997812220729e-26,7.232784810184967e-06,-2.8363862725200306e-07,-3.5281877330817224e-07,9.801913277809292e-25,1.3836030099412255e-08,-1.5716431638507526e-23,7.260181519086473e-06,3.1763735522036263e-22,-1.0890272506003384e-06,5.869997812220729e-26,-1.5716431638507526e-23,2.656163999859018e-08,52.0,43.0,0.010653204284608364,-0.00043469766387715936,-0.0005216372082941234,4.687915861723013e-06,6.904022029630141e-06,6.776169357181061e-06,-0.00043469766387715936,3.6361179809318855e-05,6.904022029630141e-06,-5.625499284178659e-07,-2.7074594299847377e-07,5.293955920339377e-23,-0.0005216372082941234,6.904022029630141e-06,5.2936178690288216e-05,2.295740797563654e-23,-3.28762951085082e-07,-9.91634578895173e-07,4.687915861723013e-06,-5.625499284178659e-07,2.295740797563654e-23,1.103039082295254e-08,-9.697588395246076e-25,3.971276666530697e-25,6.904022029630141e-06,-2.7074594299847377e-07,-3.28762951085082e-07,-9.697588395246076e-25,1.2892664713604063e-08,-3.308722450212111e-24,6.776169357181061e-06,5.293955920339377e-23,-9.91634578895173e-07,3.971276666530697e-25,-3.308722450212111e-24,2.3610347454905423e-08,52.0,44.0,0.010422280058264732,-0.000424968107836321,-0.0004988756263628602,4.581372650136473e-06,6.59717625239864e-06,6.334245426842244e-06,-0.000424968107836321,3.554067006916739e-05,6.59717625239864e-06,-5.497647066476929e-07,-2.5871278808153875e-07,1.5881867761018131e-22,-0.0004988756263628602,6.59717625239864e-06,4.9445392505731434e-05,-2.1443520789645e-23,-3.068454077492788e-07,-9.048922038346063e-07,4.581372650136473e-06,-5.497647066476929e-07,-2.1443520789645e-23,1.0779699799456921e-08,5.466633016820529e-25,3.9243443730507044e-25,6.59717625239864e-06,-2.5871278808153875e-07,-3.068454077492788e-07,5.466633016820529e-25,1.2033153140578179e-08,-8.271806125530277e-24,6.334245426842244e-06,1.5881867761018131e-22,-9.048922038346063e-07,3.9243443730507044e-25,-8.271806125530277e-24,2.1044005649173414e-08,52.0,45.0,0.01020115427672863,-0.00041566460276953876,-0.00047757208812981844,4.479564267967362e-06,6.310342541837599e-06,5.9299318309058435e-06,-0.00041566460276953876,3.4756376408040524e-05,6.310342541837599e-06,-5.375476916924526e-07,-2.4746441340539604e-07,2.6469779601696886e-23,-0.00047757208812981844,6.310342541837599e-06,4.625498331733979e-05,2.0059901360376227e-23,-2.8683376740445965e-07,-8.274323590740096e-07,4.479564267967362e-06,-5.375476916924526e-07,2.0059901360376227e-23,1.054015097423644e-08,2.8919598877166703e-25,-5.656367376553958e-25,6.310342541837599e-06,-2.4746441340539604e-07,-2.8683376740445965e-07,2.8919598877166703e-25,1.124838266974848e-08,0.0,5.9299318309058435e-06,2.6469779601696886e-23,-8.274323590740096e-07,-5.656367376553958e-25,0.0,1.8805280888045672e-08,52.0,46.0,0.009989217855036259,-0.00040675976197235286,-0.0004576047358568758,4.38218239651178e-06,6.041817414370598e-06,5.559311375691323e-06,-0.00040675976197235286,3.400595596758649e-05,6.041817414370598e-06,-5.258618784864666e-07,-2.369340137420295e-07,3.970466940254533e-23,-0.0004576047358568758,6.041817414370598e-06,4.333332253736444e-05,-0.0,-2.6852521273212915e-07,-7.580878786939138e-07,4.38218239651178e-06,-5.258618784864666e-07,-0.0,1.0311017817343782e-08,4.1359030627651384e-25,-2.0679515313825692e-25,6.041817414370598e-06,-2.369340137420295e-07,-2.6852521273212915e-07,4.1359030627651384e-25,1.0530400551544972e-08,-2.481541837659083e-24,5.559311375691323e-06,3.970466940254533e-23,-7.580878786939138e-07,-2.0679515313825692e-25,-2.481541837659083e-24,1.6846398054326528e-08,52.0,47.0,0.009785907343029976,-0.0003982284979429096,-0.00043886405183002353,4.288944637664827e-06,5.790075192635413e-06,5.218945261731278e-06,-0.0003982284979429096,3.3287255064351484e-05,5.790075192635413e-06,-5.146733315086749e-07,-2.270617613930881e-07,-1.3234889800848443e-22,-0.00043886405183002353,5.790075192635413e-06,4.0652685129316524e-05,-0.0,-2.517423922654416e-07,-6.958593417039083e-07,4.288944637664827e-06,-5.146733315086749e-07,-0.0,1.0091634194964172e-08,-4.1359030627651384e-25,4.1359030627651384e-25,5.790075192635413e-06,-2.270617613930881e-07,-2.517423922654416e-07,-4.1359030627651384e-25,9.872250572584562e-09,4.963083675318166e-24,5.218945261731278e-06,-1.3234889800848443e-22,-6.958593417039083e-07,4.1359030627651384e-25,4.963083675318166e-24,1.51273766846316e-08,52.0,48.0,0.00959070771932602,-0.00039004776044748724,-0.00042125157779082656,4.199591330689145e-06,5.553745268116472e-06,4.905808509647613e-06,-0.00039004776044748724,3.2598309189779684e-05,5.553745268116472e-06,-5.039509574089607e-07,-2.1779393932774838e-07,-1.4558378780933287e-22,-0.00042125157779082656,5.553745268116472e-06,3.8188722101040184e-05,-0.0,-2.3632959766928252e-07,-6.398880714186816e-07,4.199591330689145e-06,-5.039509574089607e-07,-0.0,9.881391704880116e-09,8.271806125530277e-25,-6.203854594147708e-25,5.553745268116472e-06,-2.1779393932774838e-07,-2.3632959766928252e-07,8.271806125530277e-25,9.267827394410233e-09,6.617444900424222e-24,4.905808509647613e-06,-1.4558378780933287e-22,-6.398880714186816e-07,-6.203854594147708e-25,6.617444900424222e-24,1.3614639193804123e-08,52.0,49.0,0.009403144009411335,-0.0003821964201051742,-0.0004046785761602223,4.113885552214924e-06,5.331595730240224e-06,4.617231297743274e-06,-0.0003821964201051742,3.193730299244635e-05,5.331595730240224e-06,-4.936662776344747e-07,-2.0908218800741452e-07,1.3234889800848443e-23,-0.0004046785761602223,5.331595730240224e-06,3.591996573959477e-05,-0.0,-2.2214982209334266e-07,-5.894337959944096e-07,4.113885552214924e-06,-4.936662776344747e-07,-0.0,9.679730794687202e-09,-4.1359030627651384e-25,0.0,5.331595730240224e-06,-2.0908218800741452e-07,-2.2214982209334266e-07,-4.1359030627651384e-25,8.711757537582798e-09,-8.271806125530277e-25,4.617231297743274e-06,1.3234889800848443e-23,-5.894337959944096e-07,0.0,-8.271806125530277e-25,1.227987134200248e-08,52.0,50.0,0.00922277569770813,-0.000374654948245734,-0.0003890647494699806,4.031607659271685e-06,5.122513357491698e-06,4.350852577772457e-06,-0.000374654948245734,3.1302573916036636e-05,5.122513357491698e-06,-4.837929168388655e-07,-2.0088288010811084e-07,-3.970466940254533e-23,-0.0003890647494699806,5.122513357491698e-06,3.382746217539534e-05,-0.0,-2.0908218800741452e-07,-5.438565722215571e-07,4.031607659271685e-06,-4.837929168388655e-07,-0.0,9.486136320902006e-09,0.0,0.0,5.122513357491698e-06,-2.0088288010811084e-07,-2.0908218800741452e-07,0.0,8.199300793876318e-09,2.0679515313825692e-24,4.350852577772457e-06,-3.970466940254533e-23,-5.438565722215571e-07,0.0,2.0679515313825692e-24,1.1099114516355257e-08,52.0,51.0,0.009049195796251297,-0.00036740535870194435,-0.0003743375127669424,3.952556653530337e-06,4.925493612972787e-06,4.104578238184331e-06,-0.00036740535870194435,3.0692586733493954e-05,4.925493612972787e-06,-4.7430680183424556e-07,-1.931566089297121e-07,1.3234889800848443e-23,-0.0003743375127669424,4.925493612972787e-06,3.1894414860289544e-05,1.3831997552671952e-23,-1.9701974451891147e-07,-5.026013809583674e-07,3.952556653530337e-06,-4.7430680183424556e-07,1.3831997552671952e-23,9.300133108069986e-09,-8.544369401197715e-26,-1.1173457446801499e-26,4.925493612972787e-06,-1.931566089297121e-07,-1.9701974451891147e-07,-8.544369401197715e-26,7.726264961149809e-09,-8.271806125530277e-25,4.104578238184331e-06,1.3234889800848443e-23,-5.026013809583674e-07,-1.1173457446801499e-26,-8.271806125530277e-25,1.0052027654694484e-08,52.0,52.0,0.008882029913365841,-0.00036043100408278406,-0.00036043100408278406,3.876546088577015e-06,4.739626092487015e-06,3.876546088577015e-06,-0.00036043100408278406,3.010591899510473e-05,4.739626092487015e-06,-4.651855078918743e-07,-1.858676910160284e-07,0.0,-0.00036043100408278406,4.739626092487015e-06,3.010591899510473e-05,1.3056361111666065e-23,-1.858676910160284e-07,-4.651855078918743e-07,3.876546088577015e-06,-4.651855078918743e-07,1.3056361111666065e-23,9.12128506058707e-09,-4.941975433823875e-25,5.0530943655258675e-27,4.739626092487015e-06,-1.858676910160284e-07,-1.858676910160284e-07,-4.941975433823875e-25,7.288929015913936e-09,0.0,3.876546088577015e-06,0.0,-4.651855078918743e-07,5.0530943655258675e-27,0.0,9.12128506058707e-09,52.0,53.0,0.008720927871763706,-0.0003537165466696024,-0.00034728532773442566,3.8034036151657347e-06,4.564084520097822e-06,3.6650978927355027e-06,-0.0003537165466696024,2.9541259209509008e-05,4.564084520097822e-06,-4.5640842927241465e-07,-1.7898369719659968e-07,1.7205356741102976e-22,-0.00034728532773442566,4.564084520097822e-06,2.844870869012084e-05,-0.0,-1.7554170028688532e-07,-4.311879990837042e-07,3.8034036151657347e-06,-4.5640842927241465e-07,-0.0,8.949184504558616e-09,0.0,0.0,4.564084520097822e-06,-1.7898369719659968e-07,-1.7554170028688532e-07,0.0,6.883988490358206e-09,-6.617444900424222e-24,3.6650978927355027e-06,1.7205356741102976e-22,-4.311879990837042e-07,0.0,-6.617444900424222e-24,8.292077247062934e-09,52.0,54.0,0.008565565571188927,-0.00034724766737781465,-0.00033484597224742174,3.73297029909736e-06,4.3981176531815436e-06,3.4687534480326576e-06,-0.00034724766737781465,2.8997392291785218e-05,4.3981176531815436e-06,-4.4795640974371054e-07,-1.7247519679131074e-07,1.3234889800848443e-23,-0.00033484597224742174,4.3981176531815436e-06,2.6910951419267803e-05,-0.0,-1.659666963860218e-07,-4.0024079339673335e-07,3.73297029909736e-06,-4.4795640974371054e-07,-0.0,8.78345929322677e-09,0.0,0.0,4.3981176531815436e-06,-1.7247519679131074e-07,-1.659666963860218e-07,0.0,6.5084981848428924e-09,-4.1359030627651384e-25,3.4687534480326576e-06,1.3234889800848443e-23,-4.0024079339673335e-07,0.0,-4.1359030627651384e-25,7.551713032682983e-09,52.0,55.0,0.008415642194449902,-0.0003410111821722239,-0.0003230632282793522,3.6650978927355027e-06,4.241042006469797e-06,3.2861873933143215e-06,-0.0003410111821722239,2.8473192287492566e-05,4.241042006469797e-06,-4.3981177100249624e-07,-1.66315373917314e-07,1.4558378780933287e-22,-0.0003230632282793522,4.241042006469797e-06,2.548207703512162e-05,1.1051089312368737e-23,-1.5707563250089152e-07,-3.720212191637984e-07,3.6650978927355027e-06,-4.3981177100249624e-07,1.1051089312368737e-23,8.623760372472589e-09,-4.817110092402902e-25,4.5456664445530537e-26,4.241042006469797e-06,-1.66315373917314e-07,-1.5707563250089152e-07,-4.817110092402902e-25,6.159828647156473e-09,-5.37667398159468e-24,3.2861873933143215e-06,1.4558378780933287e-22,-3.720212191637984e-07,4.5456664445530537e-26,-5.37667398159468e-24,6.889282033739619e-09,52.0,56.0,0.008270876482129097,-0.000334994780132547,-0.0003118916938547045,3.599649744501221e-06,4.092233666597167e-06,3.11621238324733e-06,-0.000334994780132547,2.7967607820755802e-05,4.092233666597167e-06,-4.319579716138833e-07,-1.6047974327193515e-07,-3.441071348220595e-22,-0.0003118916938547045,4.092233666597167e-06,2.4152610421879217e-05,-5.038687094732589e-22,-1.4880849619203218e-07,-3.4624579825504043e-07,3.599649744501221e-06,-4.319579716138833e-07,-5.038687094732589e-22,8.469764445351302e-09,5.585965485067509e-24,5.4655770278912775e-24,4.092233666597167e-06,-1.6047974327193515e-07,-1.4880849619203218e-07,5.585965485067509e-24,5.835627092665163e-09,1.0339757656912846e-24,3.11621238324733e-06,-3.441071348220595e-22,-3.4624579825504043e-07,5.4655770278912775e-24,1.0339757656912846e-24,6.295378440768218e-09,52.0,57.0,0.00813100766390562,-0.000329186994349584,-0.000301289779599756,3.536498070388916e-06,3.95112192563829e-06,2.9577608984254766e-06,-0.000329186994349584,2.747966573224403e-05,3.95112192563829e-06,-4.2437977754161693e-07,-1.549459653915619e-07,-4.632211430296955e-23,-0.000301289779599756,3.95112192563829e-06,2.291405871801544e-05,9.937388897013101e-24,-1.4111149937434675e-07,-3.2266481753140397e-07,3.536498070388916e-06,-4.2437977754161693e-07,9.937388897013101e-24,8.321172195735471e-09,-6.119735767374146e-26,-1.3993355846087482e-25,3.95112192563829e-06,-1.549459653915619e-07,-1.4111149937434675e-07,-6.119735767374146e-26,5.533784097622174e-09,1.8611563782443123e-24,2.9577608984254766e-06,-4.632211430296955e-23,-3.2266481753140397e-07,-1.3993355846087482e-25,1.8611563782443123e-24,5.761871868514845e-09,52.0,58.0,0.007995790801942348,-0.00032357717282138765,-0.00029121944680809975,3.4755239539663307e-06,3.817185643129051e-06,2.809872739817365e-06,-0.00032357717282138765,2.7008460165234283e-05,3.817185643129051e-06,-4.170628642441443e-07,-1.4969354822369496e-07,0.0,-0.00029121944680809975,3.817185643129051e-06,2.175877489207778e-05,-9.436364403445511e-24,-1.3393633935265825e-07,-3.0105780979283736e-07,3.4755239539663307e-06,-4.170628642441443e-07,-9.436364403445511e-24,8.17770384742289e-09,5.808562804036313e-26,1.3056301256844882e-25,3.817185643129051e-06,-1.4969354822369496e-07,-1.3393633935265825e-07,5.808562804036313e-26,5.252405621547496e-09,-2.0679515313825692e-25,2.809872739817365e-06,0.0,-3.0105780979283736e-07,1.3056301256844882e-25,-2.0679515313825692e-25,5.2817155093976e-09,52.0,59.0,0.007864996790885925,-0.0003181553620379418,-0.00028164571267552674,3.4166168916272e-06,3.689946197482641e-06,2.671682295840583e-06,-0.0003181553620379418,2.6553141651675105e-05,3.689946197482641e-06,-4.099940156265802e-07,-1.4470377607267437e-07,0.0,-0.00028164571267552674,3.689946197482641e-06,2.0679881345131435e-05,-0.0,-1.2723951670068345e-07,-2.8122971684751974e-07,3.4166168916272e-06,-4.099940156265802e-07,-0.0,8.039098275958168e-09,0.0,0.0,3.689946197482641e-06,-1.4470377607267437e-07,-1.2723951670068345e-07,0.0,4.989785029607674e-09,2.0679515313825692e-25,2.671682295840583e-06,0.0,-2.8122971684751974e-07,0.0,2.0679515313825692e-25,4.848788037747909e-09,52.0,60.0,0.007738413754850626,-0.0003129122487735003,-0.0002725364756770432,3.3596732009755215e-06,3.568964302758104e-06,2.542407401051605e-06,-0.0003129122487735003,2.6112922569154762e-05,3.568964302758104e-06,-4.031607829801942e-07,-1.3995938275002118e-07,-1.9852334701272664e-23,-0.0002725364756770432,3.568964302758104e-06,1.967116077139508e-05,-8.53100609746327e-24,-1.2098183788111783e-07,-2.6300764943698596e-07,3.3596732009755215e-06,-4.031607829801942e-07,-8.53100609746327e-24,7.905113008632725e-09,5.246750858479882e-26,1.1406138595995445e-25,3.568964302758104e-06,-1.3995938275002118e-07,-1.2098183788111783e-07,5.246750858479882e-26,4.744385773136628e-09,4.1359030627651384e-25,2.542407401051605e-06,-1.9852334701272664e-23,-2.6300764943698596e-07,1.1406138595995445e-25,4.1359030627651384e-25,4.457756830333892e-09,52.0,61.0,0.007615840062499046,-0.00030783916008658707,-0.00026386213721707463,3.3045964755729074e-06,3.453836370681529e-06,2.4213402411987772e-06,-0.00030783916008658707,2.568706258898601e-05,3.453836370681529e-06,-3.9655159866924805e-07,-1.3544456578529207e-07,7.940933880509066e-23,-0.00026386213721707463,3.453836370681529e-06,1.8727003407548182e-05,8.121543111442873e-24,-1.1512788233858373e-07,-2.462379882217647e-07,3.3045964755729074e-06,-3.9655159866924805e-07,8.121543111442873e-24,7.775521559949539e-09,-2.567239101148282e-25,-3.391133534874313e-27,3.453836370681529e-06,-1.3544456578529207e-07,-1.1512788233858373e-07,-2.567239101148282e-25,4.514818741085946e-09,-2.68833699079734e-24,2.4213402411987772e-06,7.940933880509066e-23,-2.462379882217647e-07,-3.391133534874313e-27,-2.68833699079734e-24,4.103966499968692e-09,52.0,62.0,0.007497089449316263,-0.00030292794690467417,-0.00025559545611031353,3.251296675443882e-06,3.344190872667241e-06,2.3078400772647e-06,-0.00030292794690467417,2.5274868676206097e-05,3.344190872667241e-06,-3.9015560560073936e-07,-1.3114473063069454e-07,3.3087224502121107e-23,-0.00025559545611031353,3.344190872667241e-06,1.7842323359218426e-05,-7.737874299301392e-24,-1.0964559749027103e-07,-2.3078399635778624e-07,3.251296675443882e-06,-3.9015560560073936e-07,-7.737874299301392e-24,7.650109878909461e-09,4.611415104404589e-25,-1.0670854904785749e-25,3.344190872667241e-06,-1.3114473063069454e-07,-1.0964559749027103e-07,4.611415104404589e-25,4.299827605080964e-09,-1.2407709188295415e-24,2.3078400772647e-06,3.3087224502121107e-23,-2.3078399635778624e-07,-1.0670854904785749e-25,-1.2407709188295415e-24,3.783344304508773e-09,52.0,63.0,0.0073819849640131,-0.00029817098402418196,-0.0002477112866472453,3.19968876283383e-06,3.2396849292126717e-06,2.201324377892888e-06,-0.00029817098402418196,2.487569690856617e-05,3.2396849292126717e-06,-3.839626572244015e-07,-1.2704646223937743e-07,-2.6469779601696886e-23,-0.0002477112866472453,3.2396849292126717e-06,1.701250766927842e-05,7.377999109783188e-24,-1.0450596477085128e-07,-2.1652370207903004e-07,3.19968876283383e-06,-3.839626572244015e-07,7.377999109783188e-24,7.52867901354648e-09,-2.521173815106934e-25,9.495388523281079e-27,3.2396849292126717e-06,-1.2704646223937743e-07,-1.0450596477085128e-07,-2.521173815106934e-25,4.098272832209204e-09,1.0339757656912846e-24,2.201324377892888e-06,-2.6469779601696886e-23,-2.1652370207903004e-07,9.495388523281079e-27,1.0339757656912846e-24,3.4923177683054973e-09,52.0,64.0,0.0072703612968325615,-0.00029356114100664854,-0.0002401863894192502,3.1496936117036967e-06,3.1400022635352798e-06,2.101264044540585e-06,-0.00029356114100664854,2.4488939743605442e-05,3.1400022635352798e-06,-3.779632322675752e-07,-1.2313734032431967e-07,-6.617444900424222e-24,-0.0002401863894192502,3.1400022635352798e-06,1.6233369024121203e-05,7.04010158508444e-24,-9.968260883397306e-08,-2.0334813655153994e-07,3.1496936117036967e-06,-3.779632322675752e-07,7.04010158508444e-24,7.411043778660087e-09,-2.5002559356098345e-25,1.520937846036106e-26,3.1400022635352798e-06,-1.2313734032431967e-07,-9.968260883397306e-08,-2.5002559356098345e-25,3.909121915057767e-09,2.0679515313825692e-25,2.101264044540585e-06,-6.617444900424222e-24,-2.0334813655153994e-07,1.520937846036106e-26,2.0679515313825692e-25,3.2277482908682487e-09,53.0,3.0,0.09237024188041687,-0.005050505045801401,-0.0555555559694767,6.352836498990655e-05,0.0010482179932296276,0.009433962404727936,-0.005050505045801401,0.00045583758037537336,0.0010482179932296276,-7.473925506928936e-06,-4.0316077502211556e-05,-2.1141942363467336e-18,-0.0555555559694767,0.0010482179932296276,0.14989517629146576,-7.241135204880083e-20,-0.0010482179932296276,-0.056603774428367615,6.352836498990655e-05,-7.473925506928936e-06,-7.241135204880083e-20,1.4372933776485297e-07,-3.1622465048951836e-22,4.086269964189969e-20,0.0010482179932296276,-4.0316077502211556e-05,-0.0010482179932296276,-3.1622465048951836e-22,4.0316077502211556e-05,-2.168404344971009e-19,0.009433962404727936,-2.1141942363467336e-18,-0.056603774428367615,4.086269964189969e-20,-2.168404344971009e-19,0.028301887214183807,53.0,4.0,0.07713931798934937,-0.00394511129707098,-0.03616352379322052,4.764627374242991e-05,0.0006289308075793087,0.004716981202363968,-0.00394511129707098,0.0003479256120044738,0.0006289308075793087,-5.605444130196702e-06,-2.4189646865124814e-05,-8.402566836762659e-19,-0.03616352379322052,0.0006289308075793087,0.05712788179516792,1.1108344963087423e-20,-0.0004192872147541493,-0.014150943607091904,4.764627374242991e-05,-5.605444130196702e-06,1.1108344963087423e-20,1.0779699977092605e-07,-7.038279095512326e-22,2.5033094509075854e-21,0.0006289308075793087,-2.4189646865124814e-05,-0.0004192872147541493,-7.038279095512326e-22,1.612643063708674e-05,4.607859233063394e-19,0.004716981202363968,-8.402566836762659e-19,-0.014150943607091904,2.5033094509075854e-21,4.607859233063394e-19,0.004716981202363968,53.0,5.0,0.06626371294260025,-0.003239946672692895,-0.02545672282576561,3.811701753875241e-05,0.0004192872147541493,0.002695417730137706,-0.003239946672692895,0.0002815657644532621,0.0004192872147541493,-4.484355031308951e-06,-1.612643063708674e-05,8.131516293641283e-20,-0.02545672282576561,0.0004192872147541493,0.0289008691906929,3.2599109180842043e-21,-0.00020964360737707466,-0.005390835460275412,3.811701753875241e-05,-4.484355031308951e-06,3.2599109180842043e-21,8.623759839565537e-08,1.9067963361235446e-22,-2.09196804192145e-21,0.0004192872147541493,-1.612643063708674e-05,-0.00020964360737707466,1.9067963361235446e-22,8.06321531854337e-06,-6.776263578034403e-21,0.002695417730137706,8.131516293641283e-20,-0.005390835460275412,-2.09196804192145e-21,-6.776263578034403e-21,0.001347708865068853,53.0,6.0,0.058089882135391235,-0.002749870764091611,-0.018905360251665115,3.1764182494953275e-05,0.0002994908718392253,0.0016846361104398966,-0.002749870764091611,0.00023655795666854829,0.0002994908718392253,-3.736962753464468e-06,-1.1518879546201788e-05,4.675621868843738e-19,-0.018905360251665115,0.0002994908718392253,0.016827642917633057,4.527309418988746e-20,-0.00011979634291492403,-0.0025269542820751667,3.1764182494953275e-05,-3.736962753464468e-06,4.527309418988746e-20,7.186466888242649e-08,-4.468621620957801e-22,-6.143177180366535e-21,0.0002994908718392253,-1.1518879546201788e-05,-0.00011979634291492403,-4.468621620957801e-22,4.6075520003796555e-06,-4.0657581468206416e-20,0.0016846361104398966,4.675621868843738e-19,-0.0025269542820751667,-6.143177180366535e-21,-4.0657581468206416e-20,0.0005053908098489046,53.0,7.0,0.051716625690460205,-0.002389120403677225,-0.014600180089473724,2.7226442398387007e-05,0.00022461815387941897,0.0011230907402932644,-0.002389120403677225,0.0002039981191046536,0.00022461815387941897,-3.203110964022926e-06,-8.63915920490399e-06,-2.507217523872729e-19,-0.014600180089473724,0.00022461815387941897,0.010706798173487186,-3.3163821507622874e-21,-7.487271795980632e-05,-0.001347708865068853,2.7226442398387007e-05,-3.203110964022926e-06,-3.3163821507622874e-21,6.159828558338631e-08,-5.364378479981543e-23,1.1185855785061798e-21,0.00022461815387941897,-8.63915920490399e-06,-7.487271795980632e-05,-5.364378479981543e-23,2.879719886550447e-06,6.352747104407253e-20,0.0011230907402932644,-2.507217523872729e-19,-0.001347708865068853,1.1185855785061798e-21,6.352747104407253e-20,0.00022461815387941897,53.0,8.0,0.046605996787548065,-0.0021123180631548166,-0.0116177499294281,2.3823136871214956e-05,0.000174703003722243,0.0007861634949222207,-0.0021123180631548166,0.0001793382689356804,0.000174703003722243,-2.802722065098351e-06,-6.719346401951043e-06,-8.131516293641283e-20,-0.0116177499294281,0.000174703003722243,0.007250174880027771,1.2003797864538052e-20,-4.9915142881218344e-05,-0.0007861634949222207,2.3823136871214956e-05,-2.802722065098351e-06,1.2003797864538052e-20,5.3898499885463025e-08,-2.4905802903667433e-22,-7.502510990242663e-22,0.000174703003722243,-6.719346401951043e-06,-4.9915142881218344e-05,-2.4905802903667433e-22,1.919813257700298e-06,3.8963515573697816e-20,0.0007861634949222207,-8.131516293641283e-20,-0.0007861634949222207,-7.502510990242663e-22,3.8963515573697816e-20,0.00011230907693970948,53.0,9.0,0.04241577163338661,-0.001893145265057683,-0.009465726092457771,2.1176121663302183e-05,0.00013976240006741136,0.0005717552849091589,-0.001893145265057683,0.00016000907635316253,0.00013976240006741136,-2.491308350727195e-06,-5.375477030611364e-06,-1.0164395367051604e-20,-0.009465726092457771,0.00013976240006741136,0.005143528804183006,-2.5223352108414803e-21,-3.494060001685284e-05,-0.0004900759668089449,2.1176121663302183e-05,-2.491308350727195e-06,-2.5223352108414803e-21,4.790977925495099e-08,8.489832133603984e-23,1.9084720975672875e-23,0.00013976240006741136,-5.375477030611364e-06,-3.494060001685284e-05,8.489832133603984e-23,1.343869257652841e-06,1.2705494208814505e-21,0.0005717552849091589,-1.0164395367051604e-20,-0.0004900759668089449,1.9084720975672875e-23,1.2705494208814505e-21,6.125949585111812e-05,53.0,10.0,0.038917478173971176,-0.0017152659129351377,-0.007861635647714138,1.9058508769376203e-05,0.00011435105989221483,0.00042881647823378444,-0.0017152659129351377,0.00014444798580370843,0.00011435105989221483,-2.2421775156544754e-06,-4.3981176531815436e-06,-3.3881317890172014e-20,-0.007861635647714138,0.00011435105989221483,0.0037839082069694996,-1.2075031524652079e-20,-2.541134563216474e-05,-0.0003216123441234231,1.9058508769376203e-05,-2.2421775156544754e-06,-1.2075031524652079e-20,4.3118799197827684e-08,1.3781925080029591e-22,9.080605395467441e-22,0.00011435105989221483,-4.3981176531815436e-06,-2.541134563216474e-05,1.3781925080029591e-22,9.773594911166583e-07,-4.446922973085077e-21,0.00042881647823378444,-3.3881317890172014e-20,-0.0003216123441234231,9.080605395467441e-22,-4.446922973085077e-21,3.5734705306822434e-05,53.0,11.0,0.0359526127576828,-0.0015679955249652267,-0.0066338274627923965,1.7325917724519968e-05,9.529254748485982e-05,0.0003298588271718472,-0.0015679955249652267,0.0001316495327046141,9.529254748485982e-05,-2.0383433820825303e-06,-3.6650978927355027e-06,7.623296525288703e-20,-0.0066338274627923965,9.529254748485982e-05,0.0028661065734922886,8.757689917080651e-21,-1.9058508769376203e-05,-0.00021990587993059307,1.7325917724519968e-05,-2.0383433820825303e-06,8.757689917080651e-21,3.919890900760947e-08,-7.81029599024957e-23,-6.799211074761626e-22,9.529254748485982e-05,-3.6650978927355027e-06,-1.9058508769376203e-05,-7.81029599024957e-23,7.330195899157843e-07,-7.199780051661553e-21,0.0003298588271718472,7.623296525288703e-20,-0.00021990587993059307,-6.799211074761626e-22,-7.199780051661553e-21,2.199058872065507e-05,53.0,12.0,0.03340771794319153,-0.0014440485974773765,-0.005673048086464405,1.5882091247476637e-05,8.063215500442311e-05,0.00025917479069903493,-0.0014440485974773765,0.00012093717668903992,8.063215500442311e-05,-1.868481376732234e-06,-3.1012368708616123e-06,6.945670167485263e-20,-0.005673048086464405,8.063215500442311e-05,0.002223667223006487,1.0474231052002399e-20,-1.466039157094201e-05,-0.00015550486568827182,1.5882091247476637e-05,-1.868481376732234e-06,1.0474231052002399e-20,3.593233444121324e-08,-1.1817997165230534e-22,-5.694971910004413e-22,8.063215500442311e-05,-3.1012368708616123e-06,-1.466039157094201e-05,-1.1817997165230534e-22,5.638612492475659e-07,-5.717472393966527e-21,0.00025917479069903493,6.945670167485263e-20,-0.00015550486568827182,-5.694971910004413e-22,-5.717472393966527e-21,1.4136806385067757e-05,53.0,13.0,0.031199408695101738,-0.0013382843462750316,-0.004907042719423771,1.466039157094201e-05,6.911327363923192e-05,0.000207339835469611,-0.0013382843462750316,0.00011183879541931674,6.911327363923192e-05,-1.7247519963348168e-06,-2.6582029022392817e-06,7.115076756936123e-20,-0.004907042719423771,6.911327363923192e-05,0.0017602941952645779,1.38866257285964e-20,-1.1518879546201788e-05,-0.00011309445108054206,1.466039157094201e-05,-1.7247519963348168e-06,1.38866257285964e-20,3.316830898825174e-08,-1.5996073363077512e-22,-7.412057295841891e-22,6.911327363923192e-05,-2.6582029022392817e-06,-1.1518879546201788e-05,-1.5996073363077512e-22,4.430338265137834e-07,-4.658681209898652e-21,0.000207339835469611,7.115076756936123e-20,-0.00011309445108054206,-7.412057295841891e-22,-4.658681209898652e-21,9.424537893210072e-06,53.0,14.0,0.029265021905303,-0.0012469710782170296,-0.004286462906748056,1.3613221199193504e-05,5.989817145746201e-05,0.0001684636081336066,-0.0012469710782170296,0.00010401486360933632,5.989817145746201e-05,-1.601555482011463e-06,-2.3037760001898278e-06,4.997494388800372e-20,-0.004286462906748056,5.989817145746201e-05,0.0014175421092659235,6.364827657200935e-21,-9.215104000759311e-06,-8.42318040668033e-05,1.3613221199193504e-05,-1.601555482011463e-06,6.364827657200935e-21,3.079914279169316e-08,-7.220481730811372e-23,-3.203567922634874e-22,5.989817145746201e-05,-2.3037760001898278e-06,-9.215104000759311e-06,-7.220481730811372e-23,3.544270725797105e-07,-4.341043854678289e-21,0.0001684636081336066,4.997494388800372e-20,-8.42318040668033e-05,-3.203567922634874e-22,-4.341043854678289e-21,6.479369858425343e-06,53.0,15.0,0.02755654975771904,-0.00116733368486166,-0.003776667872443795,1.270567281608237e-05,5.2410901844268665e-05,0.0001387347438139841,-0.00116733368486166,9.721492824610323e-05,5.2410901844268665e-05,-1.4947851241231547e-06,-2.0158038296358427e-06,1.4399560103323106e-20,-0.003776667872443795,5.2410901844268665e-05,0.0011584943858906627,1.6996489092594522e-22,-7.487271432182752e-06,-6.403141742339358e-05,1.270567281608237e-05,-1.4947851241231547e-06,1.6996489092594522e-22,2.8745866131885123e-08,2.734928062492779e-23,-7.76323949062005e-23,5.2410901844268665e-05,-2.0158038296358427e-06,-7.487271432182752e-06,2.734928062492779e-23,2.8797200002372847e-07,-1.164670302474663e-21,0.0001387347438139841,1.4399560103323106e-20,-6.403141742339358e-05,-7.76323949062005e-23,-1.164670302474663e-21,4.573672867991263e-06,53.0,16.0,0.026036586612462997,-0.0010972656309604645,-0.0033527561463415623,1.1911568435607478e-05,4.624491339200176e-05,0.000115612281661015,-0.0010972656309604645,9.125016367761418e-05,4.624491339200176e-05,-1.4013610325491754e-06,-1.778650471351284e-06,8.470329472543003e-22,-0.0033527561463415623,4.624491339200176e-05,0.0009590314002707601,-2.5426433430629024e-21,-6.165988452266902e-06,-4.954812175128609e-05,1.1911568435607478e-05,-1.4013610325491754e-06,-2.5426433430629024e-21,2.6949249942731512e-08,-4.7357017769085374e-23,2.37357871282377e-22,4.624491339200176e-05,-1.778650471351284e-06,-6.165988452266902e-06,-4.7357017769085374e-23,2.3715340091712278e-07,-1.7734752333136913e-21,0.000115612281661015,8.470329472543003e-22,-4.954812175128609e-05,2.37357871282377e-22,-1.7734752333136913e-21,3.303208131910651e-06,53.0,17.0,0.024675557389855385,-0.0010351386154070497,-0.0029964540153741837,1.1210888260393403e-05,4.110658846911974e-05,9.735771163832396e-05,-0.0010351386154070497,8.597550186095759e-05,4.110658846911974e-05,-1.3189279570724466e-06,-1.5810226159373997e-06,2.964615315390051e-20,-0.0029964540153741837,4.110658846911974e-05,0.0008029306773096323,2.508496899246123e-21,-5.138323558639968e-06,-3.894308611052111e-05,1.1210888260393403e-05,-1.3189279570724466e-06,2.508496899246123e-21,2.53640006775413e-08,2.5667116786078127e-23,-2.1026099143724009e-22,4.110658846911974e-05,-1.5810226159373997e-06,-5.138323558639968e-06,2.5667116786078127e-23,1.9762782699217496e-07,-2.091112588534054e-21,9.735771163832396e-05,2.964615315390051e-20,-3.894308611052111e-05,-2.1026099143724009e-22,-2.091112588534054e-21,2.4339428819075692e-06,53.0,18.0,0.023449769243597984,-0.000979674281552434,-0.0026941043324768543,1.0588060831651092e-05,3.6779580113943666e-05,8.275405707536265e-05,-0.000979674281552434,8.127767796395347e-05,3.6779580113943666e-05,-1.2456541753635975e-06,-1.4145991826808313e-06,-3.8116482626443515e-21,-0.0026941043324768543,3.6779580113943666e-05,0.0006790024344809353,-9.110317052601685e-22,-4.327009264670778e-06,-3.103277049376629e-05,1.0588060831651092e-05,-1.2456541753635975e-06,-9.110317052601685e-22,2.3954889627475495e-08,7.310856002696206e-24,3.67234693784065e-23,3.6779580113943666e-05,-1.4145991826808313e-06,-4.327009264670778e-06,7.310856002696206e-24,1.664234332565684e-07,2.117582368135751e-22,8.275405707536265e-05,-3.8116482626443515e-21,-3.103277049376629e-05,3.67234693784065e-23,2.117582368135751e-22,1.8254570477438392e-06,53.0,19.0,0.022340012714266777,-0.0009298546356149018,-0.0024353335611522198,1.0030794328486081e-05,3.310162355774082e-05,7.093204476404935e-05,-0.0009298546356149018,7.706691394560039e-05,3.310162355774082e-05,-1.1800934771599714e-06,-1.2731393326248508e-06,1.0587911840678754e-20,-0.0024353335611522198,3.310162355774082e-05,0.0005793556338176131,1.094804337843672e-21,-3.6779579204448964e-06,-2.5034840291482396e-05,1.0030794328486081e-05,-1.1800934771599714e-06,1.094804337843672e-21,2.2694106149856452e-08,-1.499201593607764e-23,-3.145373969201082e-23,3.310162355774082e-05,-1.2731393326248508e-06,-3.6779579204448964e-06,-1.499201593607764e-23,1.4145992111025407e-07,-1.0323214044661785e-21,7.093204476404935e-05,1.0587911840678754e-20,-2.5034840291482396e-05,-3.145373969201082e-23,-1.0323214044661785e-21,1.3908244227422983e-06,53.0,20.0,0.02133055590093136,-0.0008848593570291996,-0.002212148392572999,9.529254384688102e-06,2.9949085728731006e-05,6.125949585111812e-05,-0.0008848593570291996,7.327116327360272e-05,2.9949085728731006e-05,-1.1210887578272377e-06,-1.1518880000949139e-06,5.082197683525802e-21,-0.002212148392572999,2.9949085728731006e-05,0.0004983155522495508,1.312661920958671e-21,-3.152535327899386e-06,-2.0419831344042905e-05,9.529254384688102e-06,-1.1210887578272377e-06,1.312661920958671e-21,2.1559399598913842e-08,-3.3010929819672657e-24,-5.621458151573484e-23,2.9949085728731006e-05,-1.1518880000949139e-06,-3.152535327899386e-06,-3.3010929819672657e-24,1.2125136095164635e-07,-1.9852334701272664e-22,6.125949585111812e-05,5.082197683525802e-21,-2.0419831344042905e-05,-5.621458151573484e-23,-1.9852334701272664e-22,1.074727947525389e-06,53.0,21.0,0.02040838822722435,-0.0008440196979790926,-0.0020183080341666937,9.075481102627236e-06,2.7226442398387007e-05,5.326912651071325e-05,-0.0008440196979790926,6.983191997278482e-05,2.7226442398387007e-05,-1.0677035788830835e-06,-1.047170826495858e-06,-3.8116482626443515e-21,-0.0020183080341666937,2.7226442398387007e-05,0.00043172913137823343,7.707406440103403e-23,-2.7226442398387007e-06,-1.682182846707292e-05,9.075481102627236e-06,-1.0677035788830835e-06,7.707406440103403e-23,2.0532761269009825e-08,-1.3585076200728723e-23,1.0837418447580573e-23,2.7226442398387007e-05,-1.047170826495858e-06,-2.7226442398387007e-06,-1.3585076200728723e-23,1.0471708833392768e-07,2.779326858178173e-22,5.326912651071325e-05,-3.8116482626443515e-21,-1.682182846707292e-05,1.0837418447580573e-23,2.779326858178173e-22,8.410914915657486e-07,53.0,22.0,0.019562656059861183,-0.0008067851304076612,-0.0018488826462998986,8.662958862259984e-06,2.4858925826265477e-05,4.6610486606368795e-05,-0.0008067851304076612,6.670120637863874e-05,2.4858925826265477e-05,-1.0191716910412651e-06,-9.561125580148655e-07,6.776263578034403e-21,-0.0018488826462998986,2.4858925826265477e-05,0.0003765091532841325,8.259426184245845e-22,-2.3675167994952062e-06,-1.3983145436213817e-05,8.662958862259984e-06,-1.0191716910412651e-06,8.259426184245845e-22,1.9599454503804736e-08,-2.1524566781325596e-23,-9.644761733082272e-24,2.4858925826265477e-05,-9.561125580148655e-07,-2.3675167994952062e-06,-2.1524566781325596e-23,9.105833242983863e-08,-4.698385879301197e-22,4.6610486606368795e-05,6.776263578034403e-21,-1.3983145436213817e-05,-9.644761733082272e-24,-4.698385879301197e-22,6.658640927525994e-07,53.0,23.0,0.018784232437610626,-0.0007726982585154474,-0.0016999362269416451,8.28630891192006e-06,2.2787347916164435e-05,4.101722879568115e-05,-0.0007726982585154474,6.383925938280299e-05,2.2787347916164435e-05,-9.748598586156731e-07,-8.764365020397236e-07,-1.2705494208814505e-21,-0.0016999362269416451,2.2787347916164435e-05,0.0003303277771919966,-1.542630147177721e-21,-2.071577227980015e-06,-1.1719207577698398e-05,8.28630891192006e-06,-9.748598586156731e-07,-1.542630147177721e-21,1.8747304153521327e-08,1.9865724826277886e-23,3.487809968459747e-23,2.2787347916164435e-05,-8.764365020397236e-07,-2.071577227980015e-06,1.9865724826277886e-23,7.967604176428722e-08,-5.293955920339377e-23,4.101722879568115e-05,-1.2705494208814505e-21,-1.1719207577698398e-05,3.487809968459747e-23,-5.293955920339377e-23,5.326912742020795e-07,53.0,24.0,0.01806539110839367,-0.0007413760176859796,-0.0015682954108342528,7.941045623738319e-06,2.0964360373909585e-05,3.628446938819252e-05,-0.0007413760176859796,6.121288606664166e-05,2.0964360373909585e-05,-9.34240688366117e-07,-8.063215659603884e-07,4.870439446712227e-21,-0.0015682954108342528,2.0964360373909585e-05,0.0002914071665145457,2.3750296110442013e-21,-1.8229878833153634e-06,-9.89576437859796e-06,7.941045623738319e-06,-9.34240688366117e-07,2.3750296110442013e-21,1.796616722060662e-08,-1.8908248058009503e-23,-7.25949689791743e-23,2.0964360373909585e-05,-8.063215659603884e-07,-1.8229878833153634e-06,-1.8908248058009503e-23,7.011492186848045e-08,-2.6469779601696886e-23,3.628446938819252e-05,4.870439446712227e-21,-9.89576437859796e-06,-7.25949689791743e-23,-2.6469779601696886e-23,4.3025062268498004e-07,53.0,25.0,0.017399540171027184,-0.0007124950643628836,-0.0014513788046315312,7.623403689649422e-06,1.935171712830197e-05,3.225286127417348e-05,-0.0007124950643628836,5.879414311493747e-05,1.935171712830197e-05,-8.968710289991577e-07,-7.442968126269989e-07,-1.0587911840678754e-21,-0.0014513788046315312,1.935171712830197e-05,0.0002583734749350697,-8.898697352384841e-22,-1.6126431319207768e-06,-8.413790055783466e-06,7.623403689649422e-06,-8.968710289991577e-07,-8.898697352384841e-22,1.7247520744945177e-08,1.881889378327512e-23,1.866016865825741e-23,1.935171712830197e-05,-7.442968126269989e-07,-1.6126431319207768e-06,1.881889378327512e-23,6.202473201710745e-08,3.3087224502121107e-23,3.225286127417348e-05,-1.0587911840678754e-21,-8.413790055783466e-06,1.866016865825741e-23,3.3087224502121107e-23,3.5057459513154754e-07,53.0,26.0,0.016781030222773552,-0.0006857805419713259,-0.0013470689300447702,7.330195785471005e-06,1.7918257071869448e-05,2.8797197956009768e-05,-0.0006857805419713259,5.655933637171984e-05,1.7918257071869448e-05,-8.623759981674084e-07,-6.891637553962937e-07,7.623296525288703e-21,-0.0013470689300447702,1.7918257071869448e-05,0.00023015361512079835,3.914635480081471e-21,-1.4334605111798737e-06,-7.199299489002442e-06,7.330195785471005e-06,-8.623759981674084e-07,3.914635480081471e-21,1.658415449412587e-08,-4.01937095212408e-23,-1.0530845011706342e-22,1.7918257071869448e-05,-6.891637553962937e-07,-1.4334605111798737e-06,-4.01937095212408e-23,5.513309986326931e-08,-1.0587911840678754e-22,2.8797197956009768e-05,7.623296525288703e-21,-7.199299489002442e-06,-1.0530845011706342e-22,-1.0587911840678754e-22,2.8797200002372847e-07,53.0,27.0,0.01620498299598694,-0.0006609975243918598,-0.0012536159483715892,7.058707069518277e-06,1.6638381566735916e-05,2.5818177164182998e-05,-0.0006609975243918598,5.4488245950778946e-05,1.6638381566735916e-05,-8.304361358568713e-07,-6.39937752566766e-07,8.470329472543003e-22,-0.0012536159483715892,1.6638381566735916e-05,0.00020590107305906713,-3.3321325602177046e-22,-1.279875505133532e-06,-6.196362846822012e-06,7.058707069518277e-06,-8.304361358568713e-07,-3.3321325602177046e-22,1.596992582619805e-08,1.0913530903159918e-23,2.0428156619290595e-24,1.6638381566735916e-05,-6.39937752566766e-07,-1.279875505133532e-06,1.0913530903159918e-23,4.922598151324564e-08,-1.0257039595657543e-22,2.5818177164182998e-05,8.470329472543003e-22,-6.196362846822012e-06,2.0428156619290595e-24,-1.0257039595657543e-22,2.383216468615501e-07,53.0,28.0,0.015667174011468887,-0.00063794368179515,-0.0011695635039359331,6.806610599596752e-06,1.549090666230768e-05,2.323635999346152e-05,-0.00063794368179515,5.256351505522616e-05,1.549090666230768e-05,-8.007777410057315e-07,-5.958041242593026e-07,4.235164736271502e-22,-0.0011695635039359331,1.549090666230768e-05,0.00018494200776331127,-7.280258202329909e-22,-1.147474563367723e-06,-5.362237061490305e-06,6.806610599596752e-06,-8.007777410057315e-07,-7.280258202329909e-22,1.539957139584658e-08,-5.23642752885132e-24,3.2709650429333364e-23,1.549090666230768e-05,-5.958041242593026e-07,-1.147474563367723e-06,-5.23642752885132e-24,4.4133638965604405e-08,-1.4889251025954498e-22,2.323635999346152e-05,4.235164736271502e-22,-5.362237061490305e-06,3.2709650429333364e-23,-1.4889251025954498e-22,1.986013700161493e-07,53.0,29.0,0.01516391709446907,-0.0006164442165754735,-0.001093691331334412,6.571900030394318e-06,1.4458179975918029e-05,2.0987679818063043e-05,-0.0006164442165754735,5.077015521237627e-05,1.4458179975918029e-05,-7.731646860520414e-07,-5.560838189921924e-07,-4.129285617864714e-21,-0.001093691331334412,1.4458179975918029e-05,0.00016673546633683145,-2.1903570964271197e-21,-1.032727141137002e-06,-4.663928848458454e-06,6.571900030394318e-06,-7.731646860520414e-07,-2.1903570964271197e-21,1.4868551723168366e-08,3.1631480309148882e-24,7.202522838987472e-23,1.4458179975918029e-05,-5.560838189921924e-07,-1.032727141137002e-06,3.1631480309148882e-24,3.9720273292687125e-08,-6.617444900424222e-24,2.0987679818063043e-05,-4.129285617864714e-21,-4.663928848458454e-06,7.202522838987472e-23,-6.617444900424222e-24,1.665688955654332e-07,53.0,30.0,0.014691985212266445,-0.0005963469156995416,-0.0010249712504446507,6.352836408041185e-06,1.3525394024327397e-05,1.90200844372157e-05,-0.0005963469156995416,4.90951570100151e-05,1.3525394024327397e-05,-7.473925620615773e-07,-5.202074362387066e-07,-1.7999450129153882e-21,-0.0010249712504446507,1.3525394024327397e-05,0.00015084374172147363,-1.4076435002505693e-21,-9.327857810603746e-07,-4.075732704222901e-06,6.352836408041185e-06,-7.473925620615773e-07,-1.4076435002505693e-21,1.4372933065942561e-08,1.4757094736224632e-23,3.247823966050859e-23,1.3525394024327397e-05,-5.202074362387066e-07,-9.327857810603746e-07,1.4757094736224632e-23,3.5876375648058456e-08,-6.617444900424222e-24,1.90200844372157e-05,-1.7999450129153882e-21,-4.075732704222901e-06,3.247823966050859e-23,-6.617444900424222e-24,1.4054249675155006e-07,53.0,31.0,0.014248541556298733,-0.0005775189492851496,-0.0009625316015444696,6.147906333353603e-06,1.2680056897806935e-05,1.7290985852014273e-05,-0.0005775189492851496,4.752717723022215e-05,1.2680056897806935e-05,-7.232831080727919e-07,-4.876944785792148e-07,-0.0,-0.0009625316015444696,1.2680056897806935e-05,0.00013691016647499055,0.0,-8.453371265204623e-07,-3.577445568225812e-06,6.147906333353603e-06,-7.232831080727919e-07,0.0,1.39092906081828e-08,-8.271806125530277e-25,-0.0,1.2680056897806935e-05,-4.876944785792148e-07,-8.453371265204623e-07,-8.271806125530277e-25,3.251296476491916e-08,-0.0,1.7290985852014273e-05,-0.0,-3.577445568225812e-06,-0.0,-0.0,1.1924818466013676e-07,53.0,32.0,0.013831082731485367,-0.0005598437273874879,-0.0009056295384652913,5.955784217803739e-06,1.1911568435607478e-05,1.5765312127768993e-05,-0.0005598437273874879,4.605626963893883e-05,1.1911568435607478e-05,-7.006805162745877e-07,-4.5813723659193784e-07,-0.0,-0.0009056295384652913,1.1911568435607478e-05,0.00012464201427064836,-2.6469779601696886e-23,-7.684882916692004e-07,-3.153062152705388e-06,5.955784217803739e-06,-7.006805162745877e-07,-2.6469779601696886e-23,1.3474624971365756e-08,1.6543612251060553e-24,-0.0,1.1911568435607478e-05,-4.5813723659193784e-07,-7.684882916692004e-07,1.6543612251060553e-24,2.955724198727694e-08,-0.0,1.5765312127768993e-05,-0.0,-3.153062152705388e-06,-0.0,-0.0,1.0171168440820111e-07,53.0,33.0,0.013437389396131039,-0.0005432184552773833,-0.0008536290260963142,5.775305908173323e-06,1.1210888260393403e-05,1.4413998542295303e-05,-0.0005432184552773833,4.467368853511289e-05,1.1210888260393403e-05,-6.794477371840912e-07,-4.311879990837042e-07,-0.0,-0.0008536290260963142,1.1210888260393403e-05,0.00011379761417629197,-2.6469779601696886e-23,-7.006805162745877e-07,-2.7898063308384735e-06,5.775305908173323e-06,-6.794477371840912e-07,-2.6469779601696886e-23,1.3066302706477018e-08,8.271806125530277e-25,-0.0,1.1210888260393403e-05,-4.311879990837042e-07,-7.006805162745877e-07,8.271806125530277e-25,2.6949249942731512e-08,-0.0,1.4413998542295303e-05,-0.0,-2.7898063308384735e-06,-0.0,-0.0,8.71814478387023e-08,53.0,34.0,0.013065489009022713,-0.0005275523872114718,-0.00080598279600963,5.605444130196702e-06,1.0570265658316202e-05,1.3212832527642604e-05,-0.0005275523872114718,4.337171412771568e-05,1.0570265658316202e-05,-6.594639785362233e-07,-4.065486791660078e-07,-0.0,-0.00080598279600963,1.0570265658316202e-05,0.00010417617886560038,2.6469779601696886e-23,-6.406221473298501e-07,-2.4774060420895694e-06,5.605444130196702e-06,-6.594639785362233e-07,2.6469779601696886e-23,1.268200033877065e-08,0.0,-0.0,1.0570265658316202e-05,-4.065486791660078e-07,-6.406221473298501e-07,0.0,2.4639314588625894e-08,-0.0,1.3212832527642604e-05,-0.0,-2.4774060420895694e-06,-0.0,-0.0,7.507291144293049e-08,53.0,35.0,0.012713620439171791,-0.0005127646727487445,-0.0007622177363373339,5.4452884796774015e-06,9.983028576243669e-06,1.2141521438024938e-05,-0.0005127646727487445,4.214349246467464e-05,9.983028576243669e-06,-6.406221473298501e-07,-3.839626572244015e-07,-7.43049397231709e-21,-0.0007622177363373339,9.983028576243669e-06,9.56099756876938e-05,-5.441218707077608e-21,-5.872369683856959e-07,-2.207549414379173e-06,5.4452884796774015e-06,-6.406221473298501e-07,-5.441218707077608e-21,1.2319657294312947e-08,4.1359030627651384e-23,1.1721708172050533e-22,9.983028576243669e-06,-3.839626572244015e-07,-5.872369683856959e-07,4.1359030627651384e-23,2.258603792881786e-08,6.769804864569883e-23,1.2141521438024938e-05,-7.43049397231709e-21,-2.207549414379173e-06,1.1721708172050533e-22,6.769804864569883e-23,6.492792437029493e-08,53.0,36.0,0.01238020695745945,-0.0004987835418432951,-0.000721923541277647,5.294030415825546e-06,9.443405360798351e-06,1.1182980415469501e-05,-0.0004987835418432951,4.098292993148789e-05,9.443405360798351e-06,-6.228270876817987e-07,-3.6320790286481497e-07,-0.0,-0.000721923541277647,9.443405360798351e-06,8.79581639310345e-05,0.0,-5.396231586018985e-07,-1.9734670786419883e-06,5.294030415825546e-06,-6.228270876817987e-07,0.0,1.1977444813737748e-08,0.0,-0.0,9.443405360798351e-06,-3.6320790286481497e-07,-5.396231586018985e-07,0.0,2.075473837237496e-08,-0.0,1.1182980415469501e-05,-0.0,-1.9734670786419883e-06,-0.0,-0.0,5.6384774183015907e-08,53.0,37.0,0.012063833884894848,-0.00048554467502981424,-0.0006847424665465951,5.150948709342629e-06,8.946384696173482e-06,1.0322751222702209e-05,-0.00048554467502981424,3.988458411186002e-05,8.946384696173482e-06,-6.059939323677099e-07,-3.440917168973101e-07,-0.0,-0.0006847424665465951,8.946384696173482e-06,8.110186900012195e-05,2.6469779601696886e-23,-4.970213467458962e-07,-1.7696145278023323e-06,5.150948709342629e-06,-6.059939323677099e-07,2.6469779601696886e-23,1.1653729536931223e-08,-8.271806125530277e-25,-0.0,8.946384696173482e-06,-3.440917168973101e-07,-4.970213467458962e-07,-8.271806125530277e-25,1.9116205507430095e-08,-0.0,1.0322751222702209e-05,-0.0,-1.7696145278023323e-06,-0.0,-0.0,4.9155957526636485e-08,53.0,38.0,0.011763228103518486,-0.00047299053403548896,-0.0006503619952127337,5.015397164243041e-06,8.487595550832339e-06,9.548544767312706e-06,-0.00047299053403548896,3.8843580114189535e-05,8.487595550832339e-06,-5.900467385799857e-07,-3.2644598491060606e-07,-0.0,-0.0006503619952127337,8.487595550832339e-06,7.494030433008447e-05,0.0,-4.58788946389177e-07,-1.5914241657810635e-06,5.015397164243041e-06,-5.900467385799857e-07,0.0,1.1347053074928226e-08,0.0,-0.0,8.487595550832339e-06,-3.2644598491060606e-07,-4.58788946389177e-07,0.0,1.764572843399037e-08,-0.0,9.548544767312706e-06,-0.0,-1.5914241657810635e-06,-0.0,-0.0,4.3011464612163763e-08,53.0,39.0,0.011477239429950714,-0.00046106934314593673,-0.000618507619947195,4.886797341896454e-06,8.06321531854337e-06,8.849870937410742e-06,-0.00046106934314593673,3.78555414499715e-05,8.06321531854337e-06,-5.749173510594119e-07,-3.1012368140181934e-07,4.1398481245977124e-22,-0.000618507619947195,8.06321531854337e-06,6.938762817298993e-05,2.6469779601696886e-23,-4.2437977754161693e-07,-1.4351141999213723e-06,4.886797341896454e-06,-5.749173510594119e-07,2.6469779601696886e-23,1.105610270002444e-08,-8.271806125530277e-25,9.310072854143009e-40,8.06321531854337e-06,-3.1012368140181934e-07,-4.2437977754161693e-07,-8.271806125530277e-25,1.63222981797162e-08,-2.178867425694997e-23,8.849870937410742e-06,4.1398481245977124e-22,-1.4351141999213723e-06,9.310072854143009e-40,-2.178867425694997e-23,3.776616352979545e-08,53.0,40.0,0.011204826645553112,-0.00044973433250561357,-0.000588937837164849,4.764627192344051e-06,7.669887963857036e-06,8.21773755887989e-06,-0.00044973433250561357,3.691652818815783e-05,7.669887963857036e-06,-5.605443789136189e-07,-2.9499568654500763e-07,-0.0,-0.000588937837164849,7.669887963857036e-06,6.437042611651123e-05,2.6469779601696886e-23,-3.9332758206001017e-07,-1.2975374374946114e-06,4.764627192344051e-06,-5.605443789136189e-07,2.6469779601696886e-23,1.0779699799456921e-08,-8.271806125530277e-25,-0.0,7.669887963857036e-06,-2.9499568654500763e-07,-3.9332758206001017e-07,-8.271806125530277e-25,1.5127984198670674e-08,-0.0,8.21773755887989e-06,-0.0,-1.2975374374946114e-06,-0.0,-0.0,3.32701901584187e-08,53.0,41.0,0.01094504538923502,-0.0004389433888718486,-0.000561439199373126,4.648416961572366e-06,7.304655355255818e-06,7.644406650797464e-06,-0.0004389433888718486,3.602297874749638e-05,7.304655355255818e-06,-5.468725703394739e-07,-2.809482850807399e-07,-0.0,-0.000561439199373126,7.304655355255818e-06,5.982564834994264e-05,1.3234889800848443e-23,-3.6523275070976524e-07,-1.1760625966417138e-06,4.648416961572366e-06,-5.468725703394739e-07,1.3234889800848443e-23,1.051678033547887e-08,-8.271806125530277e-25,-0.0,7.304655355255818e-06,-2.809482850807399e-07,-3.6523275070976524e-07,-8.271806125530277e-25,1.4047413898765626e-08,-0.0,7.644406650797464e-06,-0.0,-1.1760625966417138e-06,-0.0,-0.0,2.940156385022874e-08,53.0,42.0,0.010697036981582642,-0.00042865818249993026,-0.00053582270629704,4.537740551313618e-06,6.964904059714172e-06,7.123197065084241e-06,-0.00042865818249993026,3.517166624078527e-05,6.964904059714172e-06,-5.338517894415418e-07,-2.678809210010513e-07,-1.852884572118782e-22,-0.00053582270629704,6.964904059714172e-06,5.569896165980026e-05,-0.0,-3.397514092284837e-07,-1.0684796052373713e-06,4.537740551313618e-06,-5.338517894415418e-07,-0.0,1.0266380634504912e-08,-4.1359030627651384e-25,4.1359030627651384e-25,6.964904059714172e-06,-2.678809210010513e-07,-3.397514092284837e-07,-4.1359030627651384e-25,1.30673614151533e-08,9.098986738083304e-24,7.123197065084241e-06,-1.852884572118782e-22,-1.0684796052373713e-06,4.1359030627651384e-25,9.098986738083304e-24,2.6060476443490188e-08,53.0,43.0,0.0104600191116333,-0.0004188439925201237,-0.0005119204288348556,4.4322114263195544e-06,6.648317139479332e-06,6.648317139479332e-06,-0.0004188439925201237,3.4359665733063594e-05,6.648317139479332e-06,-5.214366751715716e-07,-2.5570452066858707e-07,1.5881867761018131e-22,-0.0005119204288348556,6.648317139479332e-06,5.194335608393885e-05,2.252683980495786e-23,-3.1658655075261777e-07,-9.729244538903004e-07,4.4322114263195544e-06,-5.214366751715716e-07,2.252683980495786e-23,1.0027627617148482e-08,2.7629278816019324e-25,-8.355290289053685e-25,6.648317139479332e-06,-2.5570452066858707e-07,-3.1658655075261777e-07,2.7629278816019324e-25,1.2176405661534773e-08,-5.790264287871194e-24,6.648317139479332e-06,1.5881867761018131e-22,-9.729244538903004e-07,-8.355290289053685e-25,-5.790264287871194e-24,2.316486913400695e-08,53.0,44.0,0.010233277454972267,-0.0004094691830687225,-0.0004895827150903642,4.331479431129992e-06,6.352836408041185e-06,6.214731456566369e-06,-0.0004094691830687225,3.3584317861823365e-05,6.352836408041185e-06,-5.095858455206326e-07,-2.443398727791646e-07,3.044024654195142e-22,-0.0004895827150903642,6.352836408041185e-06,4.8518035328015685e-05,-0.0,-2.9548075985985633e-07,-8.878187713889929e-07,4.331479431129992e-06,-5.095858455206326e-07,-0.0,9.799727251902368e-09,4.1359030627651384e-25,-4.1359030627651384e-25,6.352836408041185e-06,-2.443398727791646e-07,-2.9548075985985633e-07,4.1359030627651384e-25,1.1364645224887227e-08,-1.4889251025954498e-23,6.214731456566369e-06,3.044024654195142e-22,-8.878187713889929e-07,-4.1359030627651384e-25,-1.4889251025954498e-23,2.0646949039360152e-08,53.0,45.0,0.010016156360507011,-0.00040050491224974394,-0.0004686759493779391,4.235224423609907e-06,6.076626050344203e-06,5.818046247441089e-06,-0.00040050491224974394,3.284319245722145e-05,6.076626050344203e-06,-4.98261670145439e-07,-2.3371639201741345e-07,-5.293955920339377e-23,-0.0004686759493779391,6.076626050344203e-06,4.538745997706428e-05,3.936734616858558e-23,-2.762102724318538e-07,-8.118204277707264e-07,4.235224423609907e-06,-4.98261670145439e-07,3.936734616858558e-23,9.581955673354514e-09,-1.0667548098478675e-24,-2.9055167088919263e-25,6.076626050344203e-06,-2.3371639201741345e-07,-2.762102724318538e-07,-1.0667548098478675e-24,1.0623472768145348e-08,2.481541837659083e-24,5.818046247441089e-06,-5.293955920339377e-23,-8.118204277707264e-07,-2.9055167088919263e-25,2.481541837659083e-24,1.845046426751651e-08,53.0,46.0,0.00980805791914463,-0.00039192475378513336,-0.00044908045674674213,4.14315445596003e-06,5.818046247441089e-06,5.454418442241149e-06,-0.00039192475378513336,3.213407762814313e-05,5.818046247441089e-06,-4.874299293078366e-07,-2.2377101061010762e-07,-1.5881867761018131e-22,-0.00044908045674674213,5.818046247441089e-06,4.2520590795902535e-05,-1.844036676651387e-23,-2.585798313248233e-07,-7.437843692059687e-07,4.14315445596003e-06,-4.874299293078366e-07,-1.844036676651387e-23,9.373652076760663e-09,5.257314199038857e-25,1.1576988611734015e-25,5.818046247441089e-06,-2.2377101061010762e-07,-2.585798313248233e-07,5.257314199038857e-25,9.945378742770572e-09,6.617444900424222e-24,5.454418442241149e-06,-1.5881867761018131e-22,-7.437843692059687e-07,1.1576988611734015e-25,6.617444900424222e-24,1.6528540314197926e-08,53.0,47.0,0.009608430787920952,-0.0003837045805994421,-0.0004306888149585575,4.0550021367380396e-06,5.575627710641129e-06,5.120474725117674e-06,-0.0003837045805994421,3.1454936106456444e-05,5.575627710641129e-06,-4.770590749103576e-07,-2.1444722619889944e-07,-2.2499312661442353e-22,-0.0004306888149585575,5.575627710641129e-06,3.989022661698982e-05,1.7299628143631783e-23,-2.424185936433787e-07,-6.827299330325332e-07,4.0550021367380396e-06,-4.770590749103576e-07,1.7299628143631783e-23,9.17421250079542e-09,-9.323128942527371e-25,1.1750339563061168e-25,5.575627710641129e-06,-2.1444722619889944e-07,-2.424185936433787e-07,-9.323128942527371e-25,9.323792404813958e-09,1.075334796318936e-23,5.120474725117674e-06,-2.2499312661442353e-22,-6.827299330325332e-07,1.1750339563061168e-25,1.075334796318936e-23,1.4841955220390446e-08,53.0,48.0,0.00941676739603281,-0.0003758221282623708,-0.0004134043410886079,3.970522811869159e-06,5.3480512178794015e-06,4.813246050616726e-06,-0.0003758221282623708,3.080390888499096e-05,5.3480512178794015e-06,-4.671203441830585e-07,-2.056942776107462e-07,2.3822801641527197e-22,-0.0004134043410886079,5.3480512178794015e-06,3.747247319552116e-05,1.625109473879555e-23,-2.275766490811293e-07,-6.278146997829026e-07,3.970522811869159e-06,-4.671203441830585e-07,1.625109473879555e-23,8.98308361030331e-09,-5.12285926723879e-25,-6.547607143092618e-26,5.3480512178794015e-06,-2.056942776107462e-07,-2.275766490811293e-07,-5.12285926723879e-25,8.752947699974811e-09,-9.926167350636332e-24,4.813246050616726e-06,2.3822801641527197e-22,-6.278146997829026e-07,-6.547607143092618e-26,-9.926167350636332e-24,1.3357759343080033e-08,53.0,49.0,0.009232601150870323,-0.00036825708230026066,-0.0003971399855799973,3.889491836162051e-06,5.134128969075391e-06,4.530113983491901e-06,-0.00036825708230026066,3.0179287932696752e-05,5.134128969075391e-06,-4.575872765144595e-07,-1.9746650536944799e-07,-7.940933880509066e-23,-0.0003971399855799973,5.134128969075391e-06,3.5246266634203494e-05,-0.0,-2.1392204985204444e-07,-5.783124379377114e-07,3.889491836162051e-06,-4.575872765144595e-07,-0.0,8.799754702693008e-09,0.0,0.0,5.134128969075391e-06,-1.9746650536944799e-07,-2.1392204985204444e-07,0.0,8.227771353119806e-09,3.308722450212111e-24,4.530113983491901e-06,-7.940933880509066e-23,-5.783124379377114e-07,0.0,3.308722450212111e-24,1.2048175790368987e-08,53.0,50.0,0.00905549991875887,-0.0003609905834309757,-0.0003818169643636793,3.811701844824711e-06,4.932790943712462e-06,4.268761131243082e-06,-0.0003609905834309757,2.9579496185760945e-05,4.932790943712462e-06,-4.4843551449957886e-07,-1.897227264180401e-07,1.7205356741102976e-22,-0.0003818169643636793,4.932790943712462e-06,3.319300594739616e-05,-0.0,-2.0133839484515192e-07,-5.335951414053852e-07,3.811701844824711e-06,-4.4843551449957886e-07,-0.0,8.623760372472589e-09,0.0,2.0679515313825692e-25,4.932790943712462e-06,-1.897227264180401e-07,-2.0133839484515192e-07,0.0,7.743784280478394e-09,-6.617444900424222e-24,4.268761131243082e-06,1.7205356741102976e-22,-5.335951414053852e-07,2.0679515313825692e-25,-6.617444900424222e-24,1.0889697144023103e-08,53.0,51.0,0.008885065093636513,-0.00035400534397922456,-0.0003673640312626958,3.736962753464468e-06,4.7430680751858745e-06,4.0271334000863135e-06,-0.00035400534397922456,2.9003083909628913e-05,4.7430680751858745e-06,-4.3964266183138534e-07,-1.8242569410631404e-07,0.0,-0.0003673640312626958,4.7430680751858745e-06,3.129621109110303e-05,1.357256802221554e-23,-1.897227264180401e-07,-4.931183639200754e-07,3.736962753464468e-06,-4.3964266183138534e-07,1.357256802221554e-23,8.45466630039482e-09,-4.958694354633903e-25,-7.060842821368529e-27,4.7430680751858745e-06,-1.8242569410631404e-07,-1.897227264180401e-07,-4.958694354633903e-25,7.297027870833972e-09,0.0,4.0271334000863135e-06,0.0,-4.931183639200754e-07,-7.060842821368529e-27,0.0,9.86236692313014e-09,53.0,52.0,0.008720927871763706,-0.00034728532773442566,-0.0003537165466696024,3.6650978927355027e-06,4.564084520097822e-06,3.8034036151657347e-06,-0.00034728532773442566,2.844870869012084e-05,4.564084520097822e-06,-4.311879990837042e-07,-1.7554170028688532e-07,-3.970466940254533e-23,-0.0003537165466696024,4.564084520097822e-06,2.9541259209509008e-05,-0.0,-1.7898369719659968e-07,-4.5640842927241465e-07,3.6650978927355027e-06,-4.311879990837042e-07,-0.0,8.292077247062934e-09,-4.1359030627651384e-25,2.0679515313825692e-25,4.564084520097822e-06,-1.7554170028688532e-07,-1.7898369719659968e-07,-4.1359030627651384e-25,6.883988490358206e-09,1.2407709188295415e-24,3.8034036151657347e-06,-3.970466940254533e-23,-4.5640842927241465e-07,2.0679515313825692e-25,1.2407709188295415e-24,8.949184504558616e-09,53.0,53.0,0.008562744595110416,-0.00034081569174304605,-0.00034081569174304605,3.5959451452072244e-06,4.395044015836902e-06,3.5959451452072244e-06,-0.00034081569174304605,2.7915129976463504e-05,4.395044015836902e-06,-4.2305237002437934e-07,-1.6904016320040682e-07,5.293955920339377e-23,-0.00034081569174304605,4.395044015836902e-06,2.7915129976463504e-05,2.4212515652557568e-23,-1.6904016320040682e-07,-4.2305237002437934e-07,3.5959451452072244e-06,-4.2305237002437934e-07,2.4212515652557568e-23,8.135622842075918e-09,-5.602092760198621e-25,-1.6014429811215359e-25,4.395044015836902e-06,-1.6904016320040682e-07,-1.6904016320040682e-07,-5.602092760198621e-25,6.50154463599506e-09,-2.0679515313825692e-24,3.5959451452072244e-06,5.293955920339377e-23,-4.2305237002437934e-07,-1.6014429811215359e-25,-2.0679515313825692e-24,8.135622842075918e-09,53.0,54.0,0.0084101976826787,-0.0003345827281009406,-0.0003286080318503082,3.5293535347591387e-06,4.235224423609907e-06,3.403305299798376e-06,-0.0003345827281009406,2.740119816735387e-05,4.235224423609907e-06,-4.1521806792843563e-07,-1.6289324378249148e-07,-1.4558378780933287e-22,-0.0003286080318503082,4.235224423609907e-06,2.640621278260369e-05,1.1451869306405367e-23,-1.5981979117896117e-07,-3.926890599359467e-07,3.5293535347591387e-06,-4.1521806792843563e-07,1.1451869306405367e-23,7.984962913099025e-09,-4.829011045234292e-25,3.649341421774354e-26,4.235224423609907e-06,-1.6289324378249148e-07,-1.5981979117896117e-07,-4.829011045234292e-25,6.146914977023243e-09,4.963083675318166e-24,3.403305299798376e-06,-1.4558378780933287e-22,-3.926890599359467e-07,3.649341421774354e-26,4.963083675318166e-24,7.40922789788101e-09,53.0,55.0,0.008262990973889828,-0.0003285736602265388,-0.00031704475986771286,3.465183681328199e-06,4.083966359758051e-06,3.224183956263005e-06,-0.0003285736602265388,2.690585097298026e-05,4.083966359758051e-06,-4.076686650478223e-07,-1.5707563250089152e-07,6.617444900424221e-23,-0.00031704475986771286,4.083966359758051e-06,2.5004135750350542e-05,3.6380104101001483e-22,-1.5125800700843683e-07,-3.6500196642919036e-07,3.465183681328199e-06,-4.076686650478223e-07,3.6380104101001483e-22,7.839782156793262e-09,-4.268700301980496e-24,-3.656283915430268e-24,4.083966359758051e-06,-1.5707563250089152e-07,-1.5125800700843683e-07,-4.268700301980496e-24,5.817615722492064e-09,6.617444900424222e-24,3.224183956263005e-06,6.617444900424221e-23,-3.6500196642919036e-07,-3.656283915430268e-24,6.617444900424222e-24,6.759295345659666e-09,53.0,56.0,0.008120848797261715,-0.00032277664286084473,-0.00030608128872700036,3.403305299798376e-06,3.940669103030814e-06,3.0574158245144645e-06,-0.00032277664286084473,2.6428095225128345e-05,3.940669103030814e-06,-4.0038887050286576e-07,-1.515642082949853e-07,1.3234889800848443e-23,-0.00030608128872700036,3.940669103030814e-06,2.369960566284135e-05,-1.0278065578680942e-23,-1.4329705777527124e-07,-3.3971286939049605e-07,3.403305299798376e-06,-4.0038887050286576e-07,-1.0278065578680942e-23,7.69978569792329e-09,6.214519254029197e-26,1.473269724057841e-25,3.940669103030814e-06,-1.515642082949853e-07,-1.4329705777527124e-07,6.214519254029197e-26,5.511425538173853e-09,-8.271806125530277e-25,3.0574158245144645e-06,1.3234889800848443e-23,-3.3971286939049605e-07,1.473269724057841e-25,-8.271806125530277e-25,6.176597455720412e-09,53.0,57.0,0.007983514107763767,-0.00031718064565211535,-0.00029567687306553125,3.3435981094953604e-06,3.804784228123026e-06,2.9019540761510143e-06,-0.00031718064565211535,2.596701233414933e-05,3.804784228123026e-06,-3.9336450186056027e-07,-1.4633785383466602e-07,-3.3087224502121107e-23,-0.00029567687306553125,3.804784228123026e-06,2.248428063467145e-05,-0.0,-1.3588514491402748e-07,-3.1657680210628314e-07,3.3435981094953604e-06,-3.9336450186056027e-07,-0.0,7.564701753892678e-09,0.0,1.0339757656912846e-25,3.804784228123026e-06,-1.4633785383466602e-07,-1.3588514491402748e-07,0.0,5.226351795784012e-09,1.0339757656912846e-24,2.9019540761510143e-06,-3.3087224502121107e-23,-3.1657680210628314e-07,1.0339757656912846e-25,1.0339757656912846e-24,5.65315705358671e-09,53.0,58.0,0.007850746624171734,-0.0003117753949481994,-0.00028579411446116865,3.285950015197159e-06,3.675808329717256e-06,2.756856247287942e-06,-0.0003117753949481994,2.5521743737044744e-05,3.675808329717256e-06,-3.865823430260207e-07,-1.4137724235752103e-07,-1.3234889800848443e-22,-0.00028579411446116865,3.675808329717256e-06,2.1350666429498233e-05,-4.523838350226417e-22,-1.2897572787551326e-07,-2.953774469460768e-07,3.285950015197159e-06,-3.865823430260207e-07,-4.523838350226417e-22,7.434275861584183e-09,5.007520210109266e-24,4.604177995852478e-24,3.675808329717256e-06,-1.4137724235752103e-07,-1.2897572787551326e-07,5.007520210109266e-24,4.960605259896056e-09,-5.169878828456423e-24,2.756856247287942e-06,-1.3234889800848443e-22,-2.953774469460768e-07,4.604177995852478e-24,-5.169878828456423e-24,5.182060558439616e-09,53.0,59.0,0.007722323760390282,-0.00030655128648504615,-0.00027639869949780405,3.2302559702657163e-06,3.5532814308680827e-06,2.6212730972474674e-06,-0.00030655128648504615,2.509148725948762e-05,3.5532814308680827e-06,-3.8003011582077306e-07,-1.3666466713857517e-07,1.3234889800848443e-23,-0.00027639869949780405,3.5532814308680827e-06,2.0292005501687527e-05,-0.0,-1.225269414817376e-07,-2.7592349738370103e-07,3.2302559702657163e-06,-3.8003011582077306e-07,-0.0,7.308271321448956e-09,2.0679515313825692e-25,0.0,3.5532814308680827e-06,-1.3666466713857517e-07,-1.225269414817376e-07,2.0679515313825692e-25,4.712574774856648e-09,-8.271806125530277e-25,2.6212730972474674e-06,1.3234889800848443e-23,-2.7592349738370103e-07,0.0,-8.271806125530277e-25,4.757301663715907e-09,53.0,60.0,0.00759803457185626,-0.0003014993853867054,-0.0002674591087270528,3.1764182040205924e-06,3.4367803891655058e-06,2.4944374672486447e-06,-0.0003014993853867054,2.4675498934811912e-05,3.4367803891655058e-06,-3.7369628103078867e-07,-1.3218385674917954e-07,-9.926167350636332e-23,-0.0002674591087270528,3.4367803891655058e-06,1.9302206055726856e-05,8.370997495752767e-24,-1.1650103459714956e-07,-2.5804524739214685e-07,3.1764182040205924e-06,-3.7369628103078867e-07,8.370997495752767e-24,7.186466532971281e-09,-2.573194261425602e-25,-8.511711330093543e-27,3.4367803891655058e-06,-1.3218385674917954e-07,-1.1650103459714956e-07,-2.573194261425602e-25,4.480809057127999e-09,3.7223127564886245e-24,2.4944374672486447e-06,-9.926167350636332e-23,-2.5804524739214685e-07,-8.511711330093543e-27,3.7223127564886245e-24,4.37364811034513e-09,53.0,61.0,0.007477682549506426,-0.00029661128064617515,-0.00025894635473378,3.1243457669916097e-06,3.325916622998193e-06,2.375654730712995e-06,-0.00029661128064617515,2.4273080271086656e-05,3.325916622998193e-06,-3.675700952499028e-07,-1.2791986137017375e-07,3.705769144237564e-22,-0.00025894635473378,3.325916622998193e-06,1.8375756553723477e-05,4.1308808586981393e-22,-1.1086388695957794e-07,-2.4159200506801426e-07,3.1243457669916097e-06,-3.675700952499028e-07,4.1308808586981393e-22,7.068655882846997e-09,-8.3786553629902e-25,-5.2242072845685414e-24,3.325916622998193e-06,-1.2791986137017375e-07,-1.1086388695957794e-07,-8.3786553629902e-25,4.263995379005792e-09,-3.308722450212111e-24,2.375654730712995e-06,3.705769144237564e-22,-2.4159200506801426e-07,-5.2242072845685414e-24,-3.308722450212111e-24,4.026533328982396e-09,53.0,62.0,0.007361084222793579,-0.000291879172436893,-0.0002508336619939655,3.0739531666768016e-06,3.2203317914536456e-06,2.2642957446805667e-06,-0.000291879172436893,2.3883576432126574e-05,3.2203317914536456e-06,-3.6164155403639597e-07,-1.2385892489419348e-07,-5.293955920339377e-23,-0.0002508336619939655,3.2203317914536456e-06,1.7507667507743463e-05,7.592740458819736e-24,-1.055846539088634e-07,-2.2642959152108233e-07,3.0739531666768016e-06,-3.6164155403639597e-07,7.592740458819736e-24,6.9546453040914e-09,-4.5790044459647923e-26,5.199396863379266e-27,3.2203317914536456e-06,-1.2385892489419348e-07,-1.055846539088634e-07,-4.5790044459647923e-26,4.060948022299726e-09,1.8611563782443123e-24,2.2642957446805667e-06,-5.293955920339377e-23,-2.2642959152108233e-07,5.199396863379266e-27,1.8611563782443123e-24,3.7119605167390546e-09,53.0,63.0,0.007248065900057554,-0.00028729569748975337,-0.00024309635045938194,3.025160367542412e-06,3.1196964300761465e-06,2.1597898012259975e-06,-0.00028729569748975337,2.3506376237492077e-05,3.1196964300761465e-06,-3.5590119296102785e-07,-1.1998832860626862e-07,1.3234889800848443e-23,-0.00024309635045938194,3.1196964300761465e-06,1.6693415091140196e-05,-0.0,-1.0063536848292642e-07,-2.1243835135464906e-07,3.025160367542412e-06,-3.5590119296102785e-07,-0.0,6.8442540523960815e-09,-2.0679515313825692e-25,0.0,3.1196964300761465e-06,-1.1998832860626862e-07,-1.0063536848292642e-07,-2.0679515313825692e-25,3.870591402943546e-09,-4.1359030627651384e-25,2.1597898012259975e-06,1.3234889800848443e-23,-2.1243835135464906e-07,0.0,-4.1359030627651384e-25,3.4264249215709697e-09,53.0,64.0,0.007138465531170368,-0.0002828539290931076,-0.00023571161727886647,2.9778921089018695e-06,3.0237058581406018e-06,2.061617578874575e-06,-0.0002828539290931076,2.3140906705521047e-05,3.0237058581406018e-06,-3.5034025813729386e-07,-1.1629637697296857e-07,6.617444900424221e-23,-0.00023571161727886647,3.0237058581406018e-06,1.5928890206851065e-05,-0.0,-9.599066430610037e-08,-1.9951137630869198e-07,2.9778921089018695e-06,-3.5034025813729386e-07,-0.0,6.737312485682878e-09,0.0,0.0,3.0237058581406018e-06,-1.1629637697296857e-07,-9.599066430610037e-08,0.0,3.6919485246755812e-09,-1.8611563782443123e-24,2.061617578874575e-06,6.617444900424221e-23,-1.9951137630869198e-07,0.0,-1.8611563782443123e-24,3.1668474509416455e-09,54.0,3.0,0.09074875712394714,-0.004870129749178886,-0.05454545468091965,6.01250612817239e-05,0.001010101055726409,0.009259259328246117,-0.004870129749178886,0.0004312162345740944,0.001010101055726409,-6.937506896065315e-06,-3.811701753875241e-05,4.607859233063394e-18,-0.05454545468091965,0.001010101055726409,0.14713804423809052,1.0493726341947082e-19,-0.001010101055726409,-0.0555555559694767,6.01250612817239e-05,-6.937506896065315e-06,1.0493726341947082e-19,1.3089635331198224e-07,-5.56004249020277e-23,-5.1420209363892855e-20,0.001010101055726409,-3.811701753875241e-05,-0.001010101055726409,-5.56004249020277e-23,3.811701753875241e-05,-1.6263032587282567e-18,0.009259259328246117,4.607859233063394e-18,-0.0555555559694767,-5.1420209363892855e-20,-1.6263032587282567e-18,0.02777777798473835,54.0,4.0,0.07578042149543762,-0.0038041125517338514,-0.03550504893064499,4.5093795051798224e-05,0.000606060610152781,0.004629629664123058,-0.0038041125517338514,0.00032912971801124513,0.000606060610152781,-5.203130058362149e-06,-2.2870211978442967e-05,-1.4094628242311558e-18,-0.03550504893064499,0.000606060610152781,0.056077439337968826,-7.323139822857059e-20,-0.0004040404164697975,-0.013888888992369175,4.5093795051798224e-05,-5.203130058362149e-06,-7.323139822857059e-20,9.817226498398668e-08,1.3623306230353033e-21,1.142999382116124e-20,0.000606060610152781,-2.2870211978442967e-05,-0.0004040404164697975,1.3623306230353033e-21,1.5246807379298843e-05,4.472333961502706e-19,0.004629629664123058,-1.4094628242311558e-18,-0.013888888992369175,1.142999382116124e-20,4.472333961502706e-19,0.004629629664123058,54.0,5.0,0.06509379297494888,-0.0031240980606526136,-0.02499278448522091,3.607503458624706e-05,0.0004040404164697975,0.0026455025654286146,-0.0031240980606526136,0.00026635313406586647,0.0004040404164697975,-4.162503955740249e-06,-1.5246807379298843e-05,2.168404344971009e-19,-0.02499278448522091,0.0004040404164697975,0.02836940810084343,9.091010584403276e-21,-0.00020202020823489875,-0.005291005130857229,3.607503458624706e-05,-4.162503955740249e-06,9.091010584403276e-21,7.853781625044576e-08,-1.5739687257993441e-22,-1.1127143329132222e-21,0.0004040404164697975,-1.5246807379298843e-05,-0.00020202020823489875,-1.5739687257993441e-22,7.623403689649422e-06,-9.486769009248164e-20,0.0026455025654286146,2.168404344971009e-19,-0.005291005130857229,-1.1127143329132222e-21,-9.486769009248164e-20,0.0013227512827143073,54.0,6.0,0.05706268921494484,-0.002651515183970332,-0.018560606986284256,3.006253064086195e-05,0.00028860027668997645,0.0016534391324967146,-0.002651515183970332,0.0002237760490970686,0.00028860027668997645,-3.4687534480326576e-06,-1.0890576959354803e-05,7.521652571618187e-19,-0.018560606986284256,0.00028860027668997645,0.016518156975507736,3.793731401329482e-20,-0.0001154401179519482,-0.0024801588151603937,3.006253064086195e-05,-3.4687534480326576e-06,3.793731401329482e-20,6.544817665599112e-08,-1.2278300658870615e-22,-6.7686157924393385e-21,0.00028860027668997645,-1.0890576959354803e-05,-0.0001154401179519482,-1.2278300658870615e-22,4.356230874691391e-06,-1.3891340334970526e-19,0.0016534391324967146,7.521652571618187e-19,-0.0024801588151603937,-6.7686157924393385e-21,-1.3891340334970526e-19,0.0004960317746736109,54.0,7.0,0.05080109462141991,-0.002303648740053177,-0.0143338143825531,2.5767882107174955e-05,0.00021645022206939757,0.001102292793802917,-0.002303648740053177,0.0001929748832480982,0.00021645022206939757,-2.9732173061347567e-06,-8.167932719516102e-06,1.3552527156068805e-19,-0.0143338143825531,0.00021645022206939757,0.010509860701858997,1.5760092880800974e-20,-7.215006917249411e-05,-0.0013227512827143073,2.5767882107174955e-05,-2.9732173061347567e-06,1.5760092880800974e-20,5.60984396713593e-08,-1.759529478863043e-23,-2.375289720572758e-21,0.00021645022206939757,-8.167932719516102e-06,-7.215006917249411e-05,-1.759529478863043e-23,2.7226442398387007e-06,3.3881317890172014e-21,0.001102292793802917,1.3552527156068805e-19,-0.0013227512827143073,-2.375289720572758e-21,3.3881317890172014e-21,0.00022045854711905122,54.0,8.0,0.04578022286295891,-0.002036736346781254,-0.011405724100768566,2.2546897525899112e-05,0.00016835016140248626,0.0007716049440205097,-0.002036736346781254,0.00016964712995104492,0.00016835016140248626,-2.6015650291810744e-06,-6.352836408041185e-06,-3.9979955110402976e-19,-0.011405724100768566,0.00016835016140248626,0.007116802968084812,-2.6707367845607136e-20,-4.810004975297488e-05,-0.0007716049440205097,2.2546897525899112e-05,-2.6015650291810744e-06,-2.6707367845607136e-20,4.908613249199334e-08,3.9923583983542677e-22,2.0310470783798433e-21,0.00016835016140248626,-6.352836408041185e-06,-4.810004975297488e-05,3.9923583983542677e-22,1.8150961977880797e-06,7.326834993749698e-20,0.0007716049440205097,-3.9979955110402976e-19,-0.0007716049440205097,2.0310470783798433e-21,7.326834993749698e-20,0.00011022927355952561,54.0,9.0,0.04166372865438461,-0.0018253967864438891,-0.00929292943328619,2.0041687093907967e-05,0.000134680129121989,0.0005611672531813383,-0.0018253967864438891,0.0001513621537014842,0.000134680129121989,-2.3125023744796636e-06,-5.082269126432948e-06,-4.0657581468206416e-20,-0.00929292943328619,0.000134680129121989,0.005048901773989201,2.872456368769455e-21,-3.367003228049725e-05,-0.0004810004902537912,2.0041687093907967e-05,-2.3125023744796636e-06,2.872456368769455e-21,4.363212013913653e-08,-7.036809037438229e-23,-9.493024653507372e-23,0.000134680129121989,-5.082269126432948e-06,-3.367003228049725e-05,-7.036809037438229e-23,1.270567281608237e-06,1.1434944787933055e-20,0.0005611672531813383,-4.0657581468206416e-20,-0.0004810004902537912,-9.493024653507372e-23,1.1434944787933055e-20,6.01250612817239e-05,54.0,10.0,0.03822707757353783,-0.0016538763884454966,-0.00771808996796608,1.803751729312353e-05,0.00011019283556379378,0.0004208754107821733,-0.0016538763884454966,0.00013664175639860332,0.00011019283556379378,-2.0812519778701244e-06,-4.158220235694898e-06,1.4568966692773966e-19,-0.00771808996796608,0.00011019283556379378,0.0037142892833799124,1.725274352732718e-20,-2.448729719617404e-05,-0.00031565656536258757,1.803751729312353e-05,-2.0812519778701244e-06,1.725274352732718e-20,3.926890812522288e-08,-1.9259621220235598e-22,-1.2362730232745886e-21,0.00011019283556379378,-4.158220235694898e-06,-2.448729719617404e-05,-1.9259621220235598e-22,9.240489475814684e-07,-1.376428539288238e-20,0.0004208754107821733,1.4568966692773966e-19,-0.00031565656536258757,-1.2362730232745886e-21,-1.376428539288238e-20,3.5072953323833644e-05,54.0,11.0,0.035314518958330154,-0.001511871931143105,-0.006512679159641266,1.6397743820562027e-05,9.182736539514735e-05,0.00032375031150877476,-0.001511871931143105,0.00012453479575924575,9.182736539514735e-05,-1.8920472939498723e-06,-3.465183681328199e-06,-3.218725199566341e-20,-0.006512679159641266,9.182736539514735e-05,0.0028133706655353308,2.384768572235698e-21,-1.8365473806625232e-05,-0.00021583355555776507,1.6397743820562027e-05,-1.8920472939498723e-06,2.384768572235698e-21,3.569900641764434e-08,-8.700150497317139e-24,-2.4344032964954204e-22,9.182736539514735e-05,-3.465183681328199e-06,-1.8365473806625232e-05,-8.700150497317139e-24,6.93036724896956e-07,8.470329472543003e-21,0.00032375031150877476,-3.218725199566341e-20,-0.00021583355555776507,-2.4344032964954204e-22,8.470329472543003e-21,2.1583355191978626e-05,54.0,12.0,0.03281456232070923,-0.0013923576334491372,-0.005569430533796549,1.5031265320430975e-05,7.770007505314425e-05,0.0002543752489145845,-0.0013923576334491372,0.00011440123489592224,7.770007505314425e-05,-1.7343767240163288e-06,-2.9320783596631372e-06,8.470329472543003e-21,-0.005569430533796549,7.770007505314425e-05,0.0021827497985213995,2.658634219392332e-21,-1.41272867040243e-05,-0.00015262515807989985,1.5031265320430975e-05,-1.7343767240163288e-06,2.658634219392332e-21,3.272408832799556e-08,1.3126046717450574e-23,-2.707018226774932e-22,7.770007505314425e-05,-2.9320783596631372e-06,-1.41272867040243e-05,1.3126046717450574e-23,5.331051511348051e-07,1.6940658945086007e-21,0.0002543752489145845,8.470329472543003e-21,-0.00015262515807989985,-2.707018226774932e-22,1.6940658945086007e-21,1.387501379213063e-05,54.0,13.0,0.030645281076431274,-0.0012903762981295586,-0.00481740478426218,1.387501379213063e-05,6.660006329184398e-05,0.0002035002107731998,-0.0012903762981295586,0.00010579446097835898,6.660006329184398e-05,-1.6009631735869334e-06,-2.5132101200142642e-06,-7.623296525288703e-20,-0.00481740478426218,6.660006329184398e-05,0.001727901748381555,-1.5324619446795885e-20,-1.1100010851805564e-05,-0.00011100011033704504,1.387501379213063e-05,-1.6009631735869334e-06,-1.5324619446795885e-20,3.020685213073193e-08,1.9734625294616654e-22,7.874212151363217e-22,6.660006329184398e-05,-2.5132101200142642e-06,-1.1100010851805564e-05,1.9734625294616654e-22,4.188683533357107e-07,4.658681209898652e-21,0.0002035002107731998,-7.623296525288703e-20,-0.00011100011033704504,7.874212151363217e-22,4.658681209898652e-21,9.250009497918654e-06,54.0,14.0,0.028745103627443314,-0.0012023294111713767,-0.004208153113722801,1.2883941053587478e-05,5.77200589759741e-05,0.0001653439103392884,-0.0012023294111713767,9.839329868555069e-05,5.77200589759741e-05,-1.4866086530673783e-06,-2.1781154373456957e-06,-1.7787691892340307e-20,-0.004208153113722801,5.77200589759741e-05,0.001391455763950944,-4.90806687495737e-21,-8.880008863343392e-06,-8.26719551696442e-05,1.2883941053587478e-05,-1.4866086530673783e-06,-4.90806687495737e-21,2.804921983567965e-08,2.599054029088788e-23,3.0705490608368035e-22,5.77200589759741e-05,-2.1781154373456957e-06,-8.880008863343392e-06,2.599054029088788e-23,3.3509468266856857e-07,1.5881867761018131e-22,0.0001653439103392884,-1.7787691892340307e-20,-8.26719551696442e-05,3.0705490608368035e-22,1.5881867761018131e-22,6.359381586662494e-06,54.0,15.0,0.02706686407327652,-0.0011255411664023995,-0.0037076647859066725,1.202501243824372e-05,5.0505052058724687e-05,0.00013616557407658547,-0.0011255411664023995,9.196079918183386e-05,5.0505052058724687e-05,-1.3875013564756955e-06,-1.9058509224123554e-06,-3.049318610115481e-20,-0.0037076647859066725,5.0505052058724687e-05,0.0011371743166819215,-6.88364519247571e-21,-7.215007371996762e-06,-6.28456546110101e-05,1.202501243824372e-05,-1.3875013564756955e-06,-6.88364519247571e-21,2.617927208348192e-08,7.534924843076088e-23,3.160481475951406e-22,5.0505052058724687e-05,-1.9058509224123554e-06,-7.215007371996762e-06,7.534924843076088e-23,2.7226442966821196e-07,1.376428539288238e-21,0.00013616557407658547,-3.049318610115481e-20,-6.28456546110101e-05,3.160481475951406e-22,1.376428539288238e-21,4.488975264393957e-06,54.0,16.0,0.025573810562491417,-0.0010579800000414252,-0.003291493281722069,1.1273448762949556e-05,4.456327951629646e-05,0.0001134713165811263,-0.0010579800000414252,8.631835225969553e-05,4.456327951629646e-05,-1.3007825145905372e-06,-1.6816331935842754e-06,-6.268043809681823e-20,-0.003291493281722069,4.456327951629646e-05,0.0009413816151209176,-1.2132985866319076e-20,-5.941770723438822e-06,-4.863056165049784e-05,1.1273448762949556e-05,-1.3007825145905372e-06,-1.2132985866319076e-20,2.454306624599667e-08,1.2955480316928954e-22,5.531476511538396e-22,4.456327951629646e-05,-1.6816331935842754e-06,-5.941770723438822e-06,1.2955480316928954e-22,2.2421775724978943e-07,3.467541127822292e-21,0.0001134713165811263,-6.268043809681823e-20,-4.863056165049784e-05,5.531476511538396e-22,3.467541127822292e-21,3.242037564632483e-06,54.0,17.0,0.0242368895560503,-0.0009980760514736176,-0.0029416976030915976,1.0610304343572352e-05,3.961180482292548e-05,9.555478754919022e-05,-0.0009980760514736176,8.132873335853219e-05,3.961180482292548e-05,-1.2242659295225167e-06,-1.4947851241231547e-06,-1.1011428314305904e-20,-0.0029416976030915976,3.961180482292548e-05,0.0007881532656028867,-2.5102213365631616e-21,-4.951475602865685e-06,-3.822191501967609e-05,1.0610304343572352e-05,-1.2242659295225167e-06,-2.5102213365631616e-21,2.3099357093769868e-08,6.147852372409936e-25,1.7484752341070533e-22,3.961180482292548e-05,-1.4947851241231547e-06,-4.951475602865685e-06,6.147852372409936e-25,1.8684814051539433e-07,-1.5881867761018131e-22,9.555478754919022e-05,-1.1011428314305904e-20,-3.822191501967609e-05,1.7484752341070533e-22,-1.5881867761018131e-22,2.3888696887297556e-06,54.0,18.0,0.023032819852232933,-0.0009445963660255075,-0.0026448697317391634,1.0020843546953984e-05,3.544213905115612e-05,8.12215730547905e-05,-0.0009445963660255075,7.688476762268692e-05,3.544213905115612e-05,-1.1562511872398318e-06,-1.3374392437981442e-06,1.9905274260476058e-20,-0.0026448697317391634,3.544213905115612e-05,0.0006665055407211185,1.9197450398097534e-21,-4.169663498032605e-06,-3.0458089895546436e-05,1.0020843546953984e-05,-1.1562511872398318e-06,1.9197450398097534e-21,2.1816060069568266e-08,-2.886116094877645e-23,-6.221433570559653e-23,3.544213905115612e-05,-1.3374392437981442e-06,-4.169663498032605e-06,-2.886116094877645e-23,1.5734579505988222e-07,-1.5352472168984194e-21,8.12215730547905e-05,1.9905274260476058e-20,-3.0458089895546436e-05,-6.221433570559653e-23,-1.5352472168984194e-21,1.7916523802341544e-06,54.0,19.0,0.021942734718322754,-0.0008965595625340939,-0.002390825655311346,9.493430297879968e-06,3.189792550983839e-05,6.961849430808797e-05,-0.0008965595625340939,7.290155190275982e-05,3.189792550983839e-05,-1.0953958735626657e-06,-1.2036953194183297e-06,2.456395547037471e-20,-0.002390825655311346,3.189792550983839e-05,0.0005686924559995532,5.099805563801314e-21,-3.544213996065082e-06,-2.457123264321126e-05,9.493430297879968e-06,-1.0953958735626657e-06,5.099805563801314e-21,2.0667846101218856e-08,-3.2369036067677035e-23,-2.2556186377265167e-22,3.189792550983839e-05,-1.2036953194183297e-06,-3.544213996065082e-06,-3.2369036067677035e-23,1.3374392437981442e-07,-1.164670302474663e-21,6.961849430808797e-05,2.456395547037471e-20,-2.457123264321126e-05,-2.2556186377265167e-22,-1.164670302474663e-21,1.3650684422827908e-06,54.0,20.0,0.020951177924871445,-0.0008531745988875628,-0.002171717118471861,9.018758646561764e-06,2.886002948798705e-05,6.01250612817239e-05,-0.0008531745988875628,6.931093230377883e-05,2.886002948798705e-05,-1.0406259889350622e-06,-1.0890577186728478e-06,5.082197683525802e-21,-0.002171717118471861,2.886002948798705e-05,0.0004891437129117548,1.074719156646727e-21,-3.037897840840742e-06,-2.0041687093907967e-05,9.018758646561764e-06,-1.0406259889350622e-06,1.074719156646727e-21,1.963445406261144e-08,-2.833923479666412e-23,-1.4288088529078153e-23,2.886002948798705e-05,-1.0890577186728478e-06,-3.037897840840742e-06,-2.833923479666412e-23,1.1463765048347341e-07,-3.1763735522036263e-22,6.01250612817239e-05,5.082197683525802e-21,-2.0041687093907967e-05,-1.4288088529078153e-23,-3.1763735522036263e-22,1.0548255886533298e-06,54.0,21.0,0.020045366138219833,-0.0008137965924106538,-0.0019814178813248873,8.589294338889886e-06,2.6236390112899244e-05,5.2282659453339875e-05,-0.0008137965924106538,6.605755334021524e-05,2.6236390112899244e-05,-9.910723974826396e-07,-9.900523991746013e-07,-9.317362419797304e-21,-0.0019814178813248873,2.6236390112899244e-05,0.0004237827379256487,-2.3718584154487618e-21,-2.623638920340454e-06,-1.6510313798789866e-05,8.589294338889886e-06,-9.910723974826396e-07,-2.3718584154487618e-21,1.8699479298334154e-08,4.074844282067946e-23,5.608587728132622e-23,2.6236390112899244e-05,-9.900523991746013e-07,-2.623638920340454e-06,4.074844282067946e-23,9.90052413385456e-08,5.161607022330893e-22,5.2282659453339875e-05,-9.317362419797304e-21,-1.6510313798789866e-05,5.608587728132622e-23,5.161607022330893e-22,8.255157126768609e-07,54.0,22.0,0.019214637577533722,-0.0007778946892358363,-0.001815087627619505,8.198871910281014e-06,2.3954964490258135e-05,4.5747328840661794e-05,-0.0007778946892358363,6.309602758847177e-05,2.3954964490258135e-05,-9.460236469749361e-07,-9.039609381034097e-07,1.1858461261560205e-20,-0.001815087627619505,2.3954964490258135e-05,0.00036957900738343596,2.0585072128946163e-21,-2.281425167893758e-06,-1.3724198652198538e-05,8.198871910281014e-06,-9.460236469749361e-07,2.0585072128946163e-21,1.784950320882217e-08,-2.5309079642469087e-23,-6.942518702247696e-23,2.3954964490258135e-05,-9.039609381034097e-07,-2.281425167893758e-06,-2.5309079642469087e-23,8.609151791461045e-08,-7.47771273747937e-22,4.5747328840661794e-05,1.1858461261560205e-20,-1.3724198652198538e-05,-6.942518702247696e-23,-7.47771273747937e-22,6.535332772727998e-07,54.0,23.0,0.018450027331709862,-0.0007450279081240296,-0.0016688625328242779,7.842399099899922e-06,2.1958718207315542e-05,4.0257647924590856e-05,-0.0007450279081240296,6.038874926161952e-05,2.1958718207315542e-05,-9.048922038346063e-07,-8.286308457172709e-07,1.207021949837378e-20,-0.0016688625328242779,2.1958718207315542e-05,0.00032424755045212805,2.88601760717135e-21,-1.9962469650636194e-06,-1.1502185770950746e-05,7.842399099899922e-06,-9.048922038346063e-07,2.88601760717135e-21,1.7073437774683953e-08,-2.0711852300052512e-23,-1.0816801410050441e-22,2.1958718207315542e-05,-8.286308457172709e-07,-1.9962469650636194e-06,-2.0711852300052512e-23,7.533007817528414e-08,-5.0954325733266505e-22,4.0257647924590856e-05,1.207021949837378e-20,-1.1502185770950746e-05,-1.0816801410050441e-22,-5.0954325733266505e-22,5.22826610449556e-07,54.0,24.0,0.017743945121765137,-0.0007148268632590771,-0.0015396270900964737,7.515632660215488e-06,2.0202020095894113e-05,3.561253470252268e-05,-0.0007148268632590771,5.790431532659568e-05,2.0202020095894113e-05,-8.671883620081644e-07,-7.623403917023097e-07,-7.411538288475128e-21,-0.0015396270900964737,2.0202020095894113e-05,0.00028604327235370874,-1.973259546084421e-21,-1.7566974293004023e-06,-9.71250938164303e-06,7.515632660215488e-06,-8.671883620081644e-07,-1.973259546084421e-21,1.636204416399778e-08,1.1882060401571351e-23,6.871807103969857e-23,2.0202020095894113e-05,-7.623403917023097e-07,-1.7566974293004023e-06,1.1882060401571351e-23,6.629046822581586e-08,2.845501307182415e-22,3.561253470252268e-05,-7.411538288475128e-21,-9.71250938164303e-06,6.871807103969857e-23,2.845501307182415e-22,4.2228302277180774e-07,54.0,25.0,0.01708991453051567,-0.0006869796779938042,-0.0014248467050492764,7.215007371996762e-06,1.8648019249667414e-05,3.165558882756159e-05,-0.0006869796779938042,5.561629222938791e-05,1.8648019249667414e-05,-8.325008593601524e-07,-7.036988449726778e-07,-4.0234064994579266e-21,-0.0014248467050492764,1.8648019249667414e-05,0.0002536175597924739,-2.2309261049462976e-21,-1.554001528347726e-06,-8.257979061454535e-06,7.215007371996762e-06,-8.325008593601524e-07,-2.2309261049462976e-21,1.570756325008915e-08,2.191916605016982e-23,6.682204700944349e-23,1.8648019249667414e-05,-7.036988449726778e-07,-1.554001528347726e-06,2.191916605016982e-23,5.864156804591403e-08,1.3234889800848443e-23,3.165558882756159e-05,-4.0234064994579266e-21,-8.257979061454535e-06,6.682204700944349e-23,1.3234889800848443e-23,3.440824798417452e-07,54.0,26.0,0.016482386738061905,-0.0006612215074710548,-0.0013224430149421096,6.937506896065315e-06,1.72666841535829e-05,2.8263917556614615e-05,-0.0006612215074710548,5.3502262744586915e-05,1.72666841535829e-05,-8.004815867934667e-07,-6.515729751299659e-07,-7.623296525288703e-21,-0.0013224430149421096,1.72666841535829e-05,0.00022591708693653345,-2.7181156947976407e-21,-1.3813347550239996e-06,-7.065979389153654e-06,6.937506896065315e-06,-8.004815867934667e-07,-2.7181156947976407e-21,1.5103426065365966e-08,3.7846867260870016e-23,6.430012811521157e-23,1.72666841535829e-05,-6.515729751299659e-07,-1.3813347550239996e-06,3.7846867260870016e-23,5.212583786828873e-08,2.6138907356675675e-22,2.8263917556614615e-05,-7.623296525288703e-21,-7.065979389153654e-06,6.430012811521157e-23,2.6138907356675675e-22,2.826391778398829e-07,54.0,27.0,0.015916569158434868,-0.0006373256328515708,-0.0012306977296248078,6.680562364635989e-06,1.6033349311328493e-05,2.5340063075418584e-05,-0.0006373256328515708,5.154310565558262e-05,1.6033349311328493e-05,-7.708341058787482e-07,-6.050320280337473e-07,8.470329472543003e-22,-0.0012306977296248078,1.6033349311328493e-05,0.00020211092487443238,4.981630615615253e-22,-1.2333346148807323e-06,-6.081615083530778e-06,6.680562364635989e-06,-7.708341058787482e-07,4.981630615615253e-22,1.454403975031937e-08,-1.4832137496416497e-23,-1.4608121312502039e-24,1.6033349311328493e-05,-6.050320280337473e-07,-1.2333346148807323e-06,-1.4832137496416497e-23,4.6540925779936515e-08,-9.595295105615121e-23,2.5340063075418584e-05,8.470329472543003e-22,-6.081615083530778e-06,-1.4608121312502039e-24,-9.595295105615121e-23,2.3390828118863283e-07,54.0,28.0,0.015388312749564648,-0.0006150971166789532,-0.0011481812689453363,6.441970526793739e-06,1.4927601114322897e-05,2.2806058041169308e-05,-0.0006150971166789532,4.972239912603982e-05,1.4927601114322897e-05,-7.433043265336892e-07,-5.633057185150392e-07,-6.1409888675936775e-21,-0.0011481812689453363,1.4927601114322897e-05,0.00018153763085138053,-1.566882028567171e-21,-1.105748197005596e-06,-5.262936156213982e-06,6.441970526793739e-06,-7.433043265336892e-07,-1.566882028567171e-21,1.4024609917839825e-08,1.384148123847452e-23,4.1867167491140446e-23,1.4927601114322897e-05,-5.633057185150392e-07,-1.105748197005596e-06,1.384148123847452e-23,4.1726348598558616e-08,2.845501307182415e-22,2.2806058041169308e-05,-6.1409888675936775e-21,-5.262936156213982e-06,4.1867167491140446e-23,2.845501307182415e-22,1.949235723941456e-07,54.0,29.0,0.014893995597958565,-0.0005943673313595355,-0.0010736958356574178,6.219833721843315e-06,1.393242746416945e-05,2.0599019990186207e-05,-0.0005943673313595355,4.802596231456846e-05,1.393242746416945e-05,-7.176731173785811e-07,-5.257520001578087e-07,-8.682087709356578e-21,-0.0010736958356574178,1.393242746416945e-05,0.00016366619092877954,-2.889655303551701e-21,-9.951734227797715e-07,-4.5775600483466405e-06,6.219833721843315e-06,-7.176731173785811e-07,-2.889655303551701e-21,1.3541002097383625e-08,1.6173974118979334e-23,8.106681760849415e-23,1.393242746416945e-05,-5.257520001578087e-07,-9.951734227797715e-07,1.6173974118979334e-23,3.755371480451686e-08,2.5477162866633252e-22,2.0599019990186207e-05,-8.682087709356578e-21,-4.5775600483466405e-06,8.106681760849415e-23,2.5477162866633252e-22,1.6348428744095145e-07,54.0,30.0,0.014430447481572628,-0.0005749895353801548,-0.0010062316432595253,6.01250621912186e-06,1.303356111748144e-05,1.8667860786081292e-05,-0.0005749895353801548,4.6441491576842964e-05,1.303356111748144e-05,-6.937506782378478e-07,-4.91832508942025e-07,-5.082197683525802e-21,-0.0010062316432595253,1.303356111748144e-05,0.00014806698891334236,-3.0707006231048018e-21,-8.988662898445909e-07,-4.00025601265952e-06,6.01250621912186e-06,-6.937506782378478e-07,-3.0707006231048018e-21,1.308963604174096e-08,2.1117833254037264e-23,8.167846879996631e-23,1.303356111748144e-05,-4.91832508942025e-07,-8.988662898445909e-07,2.1117833254037264e-23,3.391948411035628e-08,6.617444900424222e-24,1.8667860786081292e-05,-5.082197683525802e-21,-4.00025601265952e-06,8.167846879996631e-23,6.617444900424222e-24,1.379398639755891e-07,54.0,31.0,0.013994883745908737,-0.0005568356136791408,-0.0009449332137592137,5.818554200232029e-06,1.2218964002386201e-05,1.6970783690339886e-05,-0.0005568356136791408,4.495825487538241e-05,1.2218964002386201e-05,-6.713716516060231e-07,-4.6109298068586213e-07,-3.8116482626443515e-21,-0.0009449332137592137,1.2218964002386201e-05,0.000134389876620844,-9.524103248818184e-22,-8.1459756984259e-07,-3.5111966099066194e-06,5.818554200232029e-06,-6.713716516060231e-07,-9.524103248818184e-22,1.2667389803766582e-08,1.7434916211155376e-23,1.6024783166862125e-23,1.2218964002386201e-05,-4.6109298068586213e-07,-8.1459756984259e-07,1.7434916211155376e-23,3.0739531808876563e-08,1.885971796620903e-22,1.6970783690339886e-05,-3.8116482626443515e-21,-3.5111966099066194e-06,1.6024783166862125e-23,1.885971796620903e-22,1.1703988178624058e-07,54.0,32.0,0.013584843836724758,-0.0005397932254709303,-0.0008890712051652372,5.636724381474778e-06,1.147842067439342e-05,1.5473360690521076e-05,-0.0005397932254709303,4.3566844396991655e-05,1.147842067439342e-05,-6.503912572952686e-07,-4.3314796016602486e-07,1.6360402650593212e-21,-0.0008890712051652372,1.147842067439342e-05,0.00012234754103701562,8.094632762491941e-22,-7.405432711493631e-07,-3.0946721381042153e-06,5.636724381474778e-06,-6.503912572952686e-07,8.094632762491941e-22,1.2271533122998335e-08,8.271806125530277e-25,-2.611171879226069e-23,1.147842067439342e-05,-4.3314796016602486e-07,-7.405432711493631e-07,8.271806125530277e-25,2.794502940162147e-08,-1.6265751774414557e-23,1.5473360690521076e-05,1.6360402650593212e-21,-3.0946721381042153e-06,-2.611171879226069e-23,-1.6265751774414557e-23,9.982813509168409e-08,54.0,33.0,0.013198147527873516,-0.0005237632431089878,-0.0008380211656913161,5.465914455271559e-06,1.0803219083754811e-05,1.414707276126137e-05,-0.0005237632431089878,4.2258991015842184e-05,1.0803219083754811e-05,-6.306824502644304e-07,-4.076686650478223e-07,-7.812381612265229e-21,-0.0008380211656913161,1.0803219083754811e-05,0.00011170275683980435,-4.3654533567874895e-21,-6.752011927346757e-07,-2.7381431664252887e-06,5.465914455271559e-06,-6.306824502644304e-07,-4.3654533567874895e-21,1.1899668805881447e-08,2.3988237764037803e-23,1.0416037351004097e-22,1.0803219083754811e-05,-4.076686650478223e-07,-6.752011927346757e-07,2.3988237764037803e-23,2.5479291565488893e-08,1.3031107465279406e-22,1.414707276126137e-05,-7.812381612265229e-21,-2.7381431664252887e-06,1.0416037351004097e-22,1.3031107465279406e-22,8.556697395079027e-08,54.0,34.0,0.012832856737077236,-0.0005086580058559775,-0.0007912457804195583,5.305152171786176e-06,1.0185892278968822e-05,1.2968150258529931e-05,-0.0005086580058559775,4.102738603251055e-05,1.0185892278968822e-05,-6.121329647612583e-07,-3.8437329408225196e-07,-6.206148323981052e-21,-0.0007912457804195583,1.0185892278968822e-05,0.00010225841833744198,-4.181092650487249e-21,-6.173268047859892e-07,-2.431528173474362e-06,5.305152171786176e-06,-6.121329647612583e-07,-4.181092650487249e-21,1.1549678546884934e-08,2.481541837659083e-23,9.541731450150614e-23,1.0185892278968822e-05,-3.8437329408225196e-07,-6.173268047859892e-07,2.481541837659083e-23,2.3295351425645094e-08,5.814354837739195e-23,1.2968150258529931e-05,-6.206148323981052e-21,-2.431528173474362e-06,9.541731450150614e-23,5.814354837739195e-23,7.368267063156964e-08,54.0,35.0,0.012487242929637432,-0.00049439980648458,-0.0007482807268388569,5.153576694283402e-06,9.620009222999215e-06,1.191667888633674e-05,-0.00049439980648458,3.986554656876251e-05,9.620009222999215e-06,-5.946434384895838e-07,-3.6301923955761595e-07,-5.701019658491748e-21,-0.0007482807268388569,9.620009222999215e-06,9.384989971294999e-05,-3.985148184436999e-21,-5.658829422827694e-07,-2.166668764402857e-06,5.153576694283402e-06,-5.946434384895838e-07,-3.985148184436999e-21,1.1219687401364808e-08,2.481541837659083e-23,8.762636642936239e-23,9.620009222999215e-06,-3.6301923955761595e-07,-5.658829422827694e-07,2.481541837659083e-23,2.1354072288204407e-08,5.1913995850395763e-23,1.191667888633674e-05,-5.701019658491748e-21,-2.166668764402857e-06,8.762636642936239e-23,5.1913995850395763e-23,6.372555105826905e-08,54.0,36.0,0.012159757316112518,-0.000480919232359156,-0.000708723091520369,5.010421773476992e-06,9.10000926523935e-06,1.0975888471875805e-05,-0.000480919232359156,3.876770642818883e-05,9.10000926523935e-06,-5.781255936199159e-07,-3.433965787280613e-07,-5.3198909405997555e-21,-0.000708723091520369,9.10000926523935e-06,8.633893594378605e-05,-3.8289980528752245e-21,-5.200005261940532e-07,-1.936921535161673e-06,5.010421773476992e-06,-5.781255936199159e-07,-3.8289980528752245e-21,1.0908030034784133e-08,2.5642598989143858e-23,8.066133048143606e-23,9.10000926523935e-06,-3.433965787280613e-07,-5.200005261940532e-07,2.5642598989143858e-23,1.962266082955466e-08,5.053230913034478e-23,1.0975888471875805e-05,-5.3198909405997555e-21,-1.936921535161673e-06,8.066133048143606e-23,5.053230913034478e-23,5.5340613869248045e-08,54.0,37.0,0.011849009431898594,-0.00046815440873615444,-0.0006722217076458037,4.875004833593266e-06,8.62106116983341e-06,1.0131589078810066e-05,-0.00046815440873615444,3.772872514673509e-05,8.62106116983341e-06,-5.625005883302947e-07,-3.253230715927202e-07,1.5225762679814953e-21,-0.0006722217076458037,8.62106116983341e-06,7.960884977364913e-05,9.289542211300064e-22,-4.789478680322645e-07,-1.7368438420817256e-06,4.875004833593266e-06,-5.625005883302947e-07,9.289542211300064e-22,1.061321786011149e-08,-1.1580528575742387e-23,-1.698102457895293e-23,8.62106116983341e-06,-3.253230715927202e-07,-4.789478680322645e-07,-1.1580528575742387e-23,1.807350358262738e-08,-3.458788722389752e-23,1.0131589078810066e-05,1.5225762679814953e-21,-1.7368438420817256e-06,-1.698102457895293e-23,-3.458788722389752e-23,4.8245663464285826e-08,54.0,38.0,0.01155374851077795,-0.00045604980550706387,-0.000638469704426825,4.746715148939984e-06,8.17895579530159e-06,9.371719897899311e-06,-0.00045604980550706387,3.674398612929508e-05,8.17895579530159e-06,-5.476979367813328e-07,-3.086398407958768e-07,9.84536577961861e-22,-0.000638469704426825,8.17895579530159e-06,7.356071000685915e-05,8.452099086349963e-22,-4.421057155923336e-07,-1.5619533542121644e-06,4.746715148939984e-06,-5.476979367813328e-07,8.452099086349963e-22,1.0333923050609428e-08,-9.926167350636332e-24,-1.5689517282143195e-23,8.17895579530159e-06,-3.086398407958768e-07,-4.421057155923336e-07,-9.926167350636332e-24,1.6683234349557097e-08,-8.269848961624423e-24,9.371719897899311e-06,9.84536577961861e-22,-1.5619533542121644e-06,-1.5689517282143195e-23,-8.269848961624423e-24,4.221495331080405e-08,54.0,39.0,0.011272844858467579,-0.0004445554513949901,-0.0006071976968087256,4.625004748959327e-06,7.770007869112305e-06,8.68598453962477e-06,-0.0004445554513949901,3.580934935598634e-05,7.770007869112305e-06,-5.336543722478382e-07,-2.932078473349975e-07,-1.8234045497898597e-21,-0.0006071976968087256,7.770007869112305e-06,6.811024650232866e-05,-1.3157177030482331e-21,-4.089477840807376e-07,-1.4085379689277033e-06,4.625004748959327e-06,-5.336543722478382e-07,-1.3157177030482331e-21,1.006895100630345e-08,8.271806125530277e-24,2.9051566727747834e-23,7.770007869112305e-06,-2.932078473349975e-07,-4.089477840807376e-07,8.271806125530277e-24,1.5431991684522472e-08,1.4930080888686927e-23,8.68598453962477e-06,-1.8234045497898597e-21,-1.4085379689277033e-06,2.9051566727747834e-23,1.4930080888686927e-23,3.70667905258415e-08,54.0,40.0,0.011005275882780552,-0.00043362632277421653,-0.000578168430365622,4.509379323280882e-06,7.390983228106052e-06,8.065557267400436e-06,-0.00043362632277421653,3.492108953651041e-05,7.390983228106052e-06,-5.203129944675311e-07,-2.789050199680787e-07,-1.6917631779718243e-21,-0.000578168430365622,7.390983228106052e-06,6.318539817584679e-05,-1.4877544077685529e-21,-3.790247831148008e-07,-1.2735089285342838e-06,4.509379323280882e-06,-5.203129944675311e-07,-1.4877544077685529e-21,9.81722703130572e-09,1.6543612251060553e-23,2.694879487600881e-23,7.390983228106052e-06,-2.789050199680787e-07,-3.790247831148008e-07,1.6543612251060553e-23,1.4302821149669853e-08,1.35116411390617e-23,8.065557267400436e-06,-1.6917631779718243e-21,-1.2735089285342838e-06,2.694879487600881e-23,1.35116411390617e-23,3.265407499952744e-08,54.0,41.0,0.010750114917755127,-0.00042322176159359515,-0.0005511725321412086,4.399394583742833e-06,7.039031515887473e-06,7.502843800466508e-06,-0.00042322176159359515,3.4075834264513105e-05,7.039031515887473e-06,-5.076224738331803e-07,-2.656238393683452e-07,7.862498639771516e-22,-0.0005511725321412086,7.039031515887473e-06,5.872428300790489e-05,5.008847200369592e-22,-3.5195157011003175e-07,-1.1542836091393838e-06,4.399394583742833e-06,-5.076224738331803e-07,5.008847200369592e-22,9.577782122960343e-09,2.659539769725178e-39,-1.2522118474240524e-23,7.039031515887473e-06,-2.656238393683452e-07,-3.5195157011003175e-07,2.659539769725178e-39,1.3281191257874525e-08,-6.1288804648545974e-24,7.502843800466508e-06,7.862498639771516e-22,-1.1542836091393838e-06,-1.2522118474240524e-23,-6.1288804648545974e-24,2.885709093902733e-08,54.0,42.0,0.010506518185138702,-0.0004133048641961068,-0.0005260243779048324,4.294647169444943e-06,6.71163479637471e-06,6.99128622727585e-06,-0.0004133048641961068,3.327053491375409e-05,6.71163479637471e-06,-4.955361987413198e-07,-2.5326923491775233e-07,7.320962415297355e-22,-0.0005260243779048324,6.71163479637471e-06,5.467356095323339e-05,4.779588822747496e-22,-3.273968047778908e-07,-1.048692865879275e-06,4.294647169444943e-06,-4.955361987413198e-07,4.779588822747496e-22,9.349739649167077e-09,8.271806125530277e-25,-1.1657534021866442e-23,6.71163479637471e-06,-2.5326923491775233e-07,-3.273968047778908e-07,8.271806125530277e-25,1.235459645698711e-08,-5.573023038626e-24,6.99128622727585e-06,7.320962415297355e-22,-1.048692865879275e-06,-1.1657534021866442e-23,-5.573023038626e-24,2.5577875817361928e-08,54.0,43.0,0.010273716412484646,-0.0004038421029690653,-0.0005025590653531253,4.1947714635171e-06,6.406560260074912e-06,6.525200205942383e-06,-0.0004038421029690653,3.250242298236117e-05,6.406560260074912e-06,-4.840121050619928e-07,-2.4175699309125775e-07,6.088049308390284e-22,-0.0005025590653531253,6.406560260074912e-06,5.098709152662195e-05,4.275327727549093e-22,-3.050743089261232e-07,-9.549073638481786e-07,4.1947714635171e-06,-4.840121050619928e-07,4.275327727549093e-22,9.13230380206187e-09,7.506385729069842e-25,-1.0488552600855633e-23,6.406560260074912e-06,-2.4175699309125775e-07,-3.050743089261232e-07,7.506385729069842e-25,1.1512237385602475e-08,0.0,6.525200205942383e-06,6.088049308390284e-22,-9.549073638481786e-07,-1.0488552600855633e-23,0.0,2.2735889615432825e-08,54.0,44.0,0.010051007382571697,-0.0003948030062019825,-0.0004806297365576029,4.099435955140507e-06,6.12182429904351e-06,6.099643997004023e-06,-0.0003948030062019825,3.176898098899983e-05,6.12182429904351e-06,-4.7301182348746806e-07,-2.310122368953671e-07,3.705769144237564e-22,-0.0004806297365576029,6.12182429904351e-06,4.76248242193833e-05,3.999943327512404e-22,-2.847360178748204e-07,-8.713776651347871e-07,4.099435955140507e-06,-4.7301182348746806e-07,3.999943327512404e-22,8.924751604411085e-09,9.008327465544555e-26,-9.386532848923605e-24,6.12182429904351e-06,-2.310122368953671e-07,-2.847360178748204e-07,9.008327465544555e-26,1.074475530771224e-08,7.444625512977249e-24,6.099643997004023e-06,3.705769144237564e-22,-8.713776651347871e-07,-9.386532848923605e-24,7.444625512977249e-24,2.0264597111463445e-08,54.0,45.0,0.009837749414145947,-0.00038615972152911127,-0.0004601052205543965,4.008337327832123e-06,5.855657946085557e-06,5.710304776584962e-06,-0.00038615972152911127,3.1067917007021606e-05,5.855657946085557e-06,-4.6250045215856517e-07,-2.2096823215633776e-07,7.676236084492097e-22,-0.0004601052205543965,5.855657946085557e-06,4.4551878090715036e-05,3.9411877051140946e-22,-2.661662676928245e-07,-7.967867077240953e-07,4.008337327832123e-06,-4.6250045215856517e-07,3.9411877051140946e-22,8.726424027827306e-09,5.4054859428665195e-25,-9.323351401302644e-24,5.855657946085557e-06,-2.2096823215633776e-07,-2.661662676928245e-07,5.4054859428665195e-25,1.0044010068099851e-08,-1.1580528575742387e-23,5.710304776584962e-06,7.676236084492097e-22,-7.967867077240953e-07,-9.323351401302644e-24,-1.1580528575742387e-23,1.8108789134885228e-08,54.0,46.0,0.009633352980017662,-0.0003778868413064629,-0.00044086796697229147,3.921199549949961e-06,5.606480954156723e-06,5.353410870156949e-06,-0.0003778868413064629,3.0397124646697193e-05,5.606480954156723e-06,-4.5244610191730317e-07,-2.1156532170607534e-07,6.485096002415737e-22,-0.00044086796697229147,5.606480954156723e-06,4.173778506810777e-05,4.059999245118007e-22,-2.491769350854156e-07,-7.300105835383874e-07,3.921199549949961e-06,-4.5244610191730317e-07,4.059999245118007e-22,8.536718887341976e-09,5.769936353071683e-26,-9.16905257482413e-24,5.606480954156723e-06,-2.1156532170607534e-07,-2.491769350854156e-07,5.769936353071683e-26,9.402903344835067e-09,-7.444625512977249e-24,5.353410870156949e-06,6.485096002415737e-22,-7.300105835383874e-07,-9.16905257482413e-24,-7.444625512977249e-24,1.622245626720087e-08,54.0,47.0,0.009437276981770992,-0.0003699609951581806,-0.00042281259084120393,3.8377697819669265e-06,5.372877694753697e-06,5.025650807510829e-06,-0.0003699609951581806,2.9754692150163464e-05,5.372877694753697e-06,-4.4281958366809704e-07,-2.027501011525601e-07,-2.5543337315637495e-21,-0.00042281259084120393,5.372877694753697e-06,3.915584602509625e-05,-2.325110190039228e-21,-2.3360337308986345e-07,-6.700867629660934e-07,3.8377697819669265e-06,-4.4281958366809704e-07,-2.325110190039228e-21,8.3550864005133e-09,1.6353126008276836e-23,3.689523910735294e-23,5.372877694753697e-06,-2.027501011525601e-07,-2.3360337308986345e-07,1.6353126008276836e-23,8.815221441693666e-09,2.3161057151484775e-23,5.025650807510829e-06,-2.5543337315637495e-21,-6.700867629660934e-07,3.689523910735294e-23,2.3161057151484775e-23,1.4567103967522144e-08,54.0,48.0,0.009249024093151093,-0.0003623608499765396,-0.000405844155466184,3.757816330107744e-06,5.153576694283402e-06,4.724111931864172e-06,-0.0003623608499765396,2.9138853278709576e-05,5.153576694283402e-06,-4.335941810040822e-07,-1.944745946502735e-07,4.235164736271502e-22,-0.000405844155466184,5.153576694283402e-06,3.678259963635355e-05,5.821367874295482e-22,-2.1930112836798799e-07,-6.161885153233015e-07,3.757816330107744e-06,-4.335941810040822e-07,5.821367874295482e-22,8.18102208199889e-09,-8.020244693742538e-24,-7.890900693139785e-24,5.153576694283402e-06,-1.944745946502735e-07,-2.1930112836798799e-07,-8.020244693742538e-24,8.275514495892367e-09,-4.1359030627651384e-25,4.724111931864172e-06,4.235164736271502e-22,-6.161885153233015e-07,-7.890900693139785e-24,-4.1359030627651384e-25,1.3110393659587771e-08,54.0,49.0,0.009068134240806103,-0.00035506670246832073,-0.00038987715379334986,3.6811261452385224e-06,4.947433353663655e-06,4.446223101695068e-06,-0.00035506670246832073,2.854799276974518e-05,4.947433353663655e-06,-4.2474530914660136e-07,-1.8669560120088136e-07,-8.867376166568457e-22,-0.00038987715379334986,4.947433353663655e-06,3.459737490629777e-05,-9.010013325393961e-22,-2.061430564026523e-07,-5.676029104506597e-07,3.6811261452385224e-06,-4.2474530914660136e-07,-9.010013325393961e-22,8.01406230266366e-09,7.022836575312773e-24,1.478178608255805e-23,4.947433353663655e-06,-1.8669560120088136e-07,-2.061430564026523e-07,7.022836575312773e-24,7.77898367942953e-09,3.7223127564886245e-24,4.446223101695068e-06,-8.867376166568457e-22,-5.676029104506597e-07,1.478178608255805e-23,3.7223127564886245e-24,1.1825060930448217e-08,54.0,50.0,0.008894184604287148,-0.00034806045005097985,-0.0003748343151528388,3.607503685998381e-06,4.753416305902647e-06,4.189710125501733e-06,-0.00034806045005097985,2.798062087094877e-05,4.753416305902647e-06,-4.162504296800762e-07,-1.7937421148417343e-07,4.235164736271502e-22,-0.0003748343151528388,4.753416305902647e-06,3.258191281929612e-05,5.306808420860472e-22,-1.94017005128444e-07,-5.237137656877167e-07,3.607503685998381e-06,-4.162504296800762e-07,5.306808420860472e-22,7.853781625044576e-09,-7.295972563997402e-24,-6.875673784582888e-24,4.753416305902647e-06,-1.7937421148417343e-07,-1.94017005128444e-07,-7.295972563997402e-24,7.3213963780460745e-09,-2.0679515313825692e-24,4.189710125501733e-06,4.235164736271502e-22,-5.237137656877167e-07,-6.875673784582888e-24,-2.0679515313825692e-24,1.068803623383019e-08,54.0,51.0,0.008726782165467739,-0.0003413253289181739,-0.00036064564483240247,3.5367681903153425e-06,4.570592864183709e-06,3.952556653530337e-06,-0.0003413253289181739,2.7435362426331267e-05,4.570592864183709e-06,-4.0808865264807537e-07,-1.7247519679131074e-07,4.632211430296955e-22,-0.00036064564483240247,4.570592864183709e-06,3.072003892157227e-05,5.007776873893388e-22,-1.8282371172517742e-07,-4.839865255235054e-07,3.5367681903153425e-06,-4.0808865264807537e-07,5.007776873893388e-22,7.69978569792329e-09,-6.702583502481104e-24,-6.442061005240507e-24,4.570592864183709e-06,-1.7247519679131074e-07,-1.8282371172517742e-07,-6.702583502481104e-24,6.899008031524545e-09,-4.549493369041652e-24,3.952556653530337e-06,4.632211430296955e-22,-4.839865255235054e-07,-6.442061005240507e-24,-4.549493369041652e-24,9.679730794687202e-09,54.0,52.0,0.008565565571188927,-0.00033484597224742174,-0.00034724766737781465,3.4687534480326576e-06,4.3981176531815436e-06,3.73297029909736e-06,-0.00033484597224742174,2.6910951419267803e-05,4.3981176531815436e-06,-4.0024079339673335e-07,-1.659666963860218e-07,-7.279189390466644e-22,-0.00034724766737781465,4.3981176531815436e-06,2.8997392291785218e-05,-7.701311006552069e-22,-1.7247519679131074e-07,-4.4795640974371054e-07,3.4687534480326576e-06,-4.0024079339673335e-07,-7.701311006552069e-22,7.551713032682983e-09,5.821476358447168e-24,1.210390465419851e-23,4.3981176531815436e-06,-1.659666963860218e-07,-1.7247519679131074e-07,5.821476358447168e-24,6.5084981848428924e-09,2.895132143935597e-24,3.73297029909736e-06,-7.279189390466644e-22,-4.4795640974371054e-07,1.210390465419851e-23,2.895132143935597e-24,8.78345929322677e-09,54.0,53.0,0.0084101976826787,-0.0003286080318503082,-0.0003345827281009406,3.403305299798376e-06,4.235224423609907e-06,3.5293535347591387e-06,-0.0003286080318503082,2.640621278260369e-05,4.235224423609907e-06,-3.926890599359467e-07,-1.5981979117896117e-07,4.896909226313924e-22,-0.0003345827281009406,4.235224423609907e-06,2.740119816735387e-05,4.355460849390168e-22,-1.6289324378249148e-07,-4.1521806792843563e-07,3.403305299798376e-06,-3.926890599359467e-07,4.355460849390168e-22,7.40922789788101e-09,-5.070754116980424e-24,-5.7727716917283704e-24,4.235224423609907e-06,-1.5981979117896117e-07,-1.6289324378249148e-07,-5.070754116980424e-24,6.146914977023243e-09,-6.617444900424222e-24,3.5293535347591387e-06,4.896909226313924e-22,-4.1521806792843563e-07,-5.7727716917283704e-24,-6.617444900424222e-24,7.984962913099025e-09,54.0,54.0,0.008260365575551987,-0.0003225982654839754,-0.0003225982654839754,3.3402811823179945e-06,4.08121604777989e-06,3.3402811823179945e-06,-0.0003225982654839754,2.5920060579665005e-05,4.08121604777989e-06,-3.854170529393741e-07,-1.540081626671963e-07,-5.558653716356346e-22,-0.0003225982654839754,4.08121604777989e-06,2.5920060579665005e-05,-4.307181047377704e-22,-1.540081626671963e-07,-3.854170529393741e-07,3.3402811823179945e-06,-3.854170529393741e-07,-4.307181047377704e-22,7.272019875159685e-09,4.912285174541685e-25,8.782685858386793e-24,4.08121604777989e-06,-1.540081626671963e-07,-1.540081626671963e-07,4.912285174541685e-25,5.811628511764866e-09,5.37667398159468e-24,3.3402811823179945e-06,-5.558653716356346e-22,-3.854170529393741e-07,8.782685858386793e-24,5.37667398159468e-24,7.272019875159685e-09,54.0,55.0,0.008115778677165508,-0.00031680442043580115,-0.00031124643282964826,3.2795487641124055e-06,3.935458607884357e-06,3.1644767659599893e-06,-0.00031680442043580115,2.545148709032219e-05,3.935458607884357e-06,-3.78409481527342e-07,-1.4850786556053208e-07,-5.161607022330893e-22,-0.00031124643282964826,3.935458607884357e-06,2.4543795007048175e-05,-6.6451809974163025e-22,-1.4575772411262733e-07,-3.582426586490328e-07,3.2795487641124055e-06,-3.78409481527342e-07,-6.6451809974163025e-22,7.139801194711026e-09,3.94635950876316e-24,1.0216332479681966e-23,3.935458607884357e-06,-1.4850786556053208e-07,-1.4575772411262733e-07,3.94635950876316e-24,5.500291333504492e-09,-1.2407709188295415e-24,3.1644767659599893e-06,-5.161607022330893e-22,-3.582426586490328e-07,1.0216332479681966e-23,-1.2407709188295415e-24,6.634123472792908e-09,54.0,56.0,0.007976165972650051,-0.000311215000692755,-0.0003004834579769522,3.2209852633968694e-06,3.7973723010509275e-06,3.0007970508449944e-06,-0.000311215000692755,2.4999555535032414e-05,3.7973723010509275e-06,-3.716521632668446e-07,-1.4329705777527124e-07,3.771943593241806e-22,-0.0003004834579769522,3.7973723010509275e-06,2.3263281036633998e-05,3.909102901941456e-22,-1.3808626420086512e-07,-3.334218945383327e-07,3.2209852633968694e-06,-3.716521632668446e-07,3.909102901941456e-22,7.012304958919913e-09,-4.595113589621036e-24,-4.8789544207895134e-24,3.7973723010509275e-06,-1.4329705777527124e-07,-1.3808626420086512e-07,-4.595113589621036e-24,5.210802456190322e-09,-3.7223127564886245e-24,3.0007970508449944e-06,3.771943593241806e-22,-3.334218945383327e-07,-4.8789544207895134e-24,-3.7223127564886245e-24,6.06221606247459e-09,54.0,57.0,0.007841276004910469,-0.00030581941246055067,-0.0002902692649513483,3.1644767659599893e-06,3.666428256110521e-06,2.848214080586331e-06,-0.00030581941246055067,2.456339461787138e-05,3.666428256110521e-06,-3.651319389064156e-07,-1.3835578727139364e-07,2.2499312661442353e-22,-0.0002902692649513483,3.666428256110521e-06,2.2070329578127712e-05,2.65881365053839e-22,-1.3094387441014987e-07,-3.107142561020737e-07,3.1644767659599893e-06,-3.651319389064156e-07,2.65881365053839e-22,6.889282033739619e-09,-1.2991535776526236e-25,-4.777151920970742e-24,3.666428256110521e-06,-1.3835578727139364e-07,-1.3094387441014987e-07,-1.2991535776526236e-25,4.941278053394171e-09,8.271806125530277e-25,2.848214080586331e-06,2.2499312661442353e-22,-3.107142561020737e-07,-4.777151920970742e-24,8.271806125530277e-25,5.548469239613496e-09,54.0,58.0,0.00771087221801281,-0.00030060773133300245,-0.00028056721203029156,3.1099168609216576e-06,3.542142621881794e-06,2.705803353819647e-06,-0.00030060773133300245,2.4142191250575706e-05,3.542142621881794e-06,-3.5883655868929054e-07,-1.336657646788808e-07,-3.5734202462290796e-22,-0.00028056721203029156,3.542142621881794e-06,2.0957584638381377e-05,-6.873065116232631e-22,-1.2428570528300042e-07,-2.89907518435939e-07,3.1099168609216576e-06,-3.5883655868929054e-07,-6.873065116232631e-22,6.770501048691813e-09,7.177891919399394e-24,8.576973022410499e-24,3.542142621881794e-06,-1.336657646788808e-07,-1.2428570528300042e-07,7.177891919399394e-24,4.690026589315721e-09,-4.1359030627651384e-24,2.705803353819647e-06,-3.5734202462290796e-22,-2.89907518435939e-07,8.576973022410499e-24,-4.1359030627651384e-24,5.0860964329046965e-09,54.0,59.0,0.007584734819829464,-0.00029557073139585555,-0.00027134359697811306,3.0572064133593813e-06,3.424071110202931e-06,2.5727310912770918e-06,-0.00029557073139585555,2.373519237153232e-05,3.424071110202931e-06,-3.527545970882784e-07,-1.2921023540002352e-07,1.9190590211230242e-22,-0.00027134359697811306,3.424071110202931e-06,1.9918414182029665e-05,-2.9096853023506038e-22,-1.1807141930830767e-07,-2.7081381404059357e-07,3.0572064133593813e-06,-3.527545970882784e-07,-2.9096853023506038e-22,6.655747064598927e-09,1.0616980733947424e-23,-5.934407319055893e-25,3.424071110202931e-06,-1.2921023540002352e-07,-1.1807141930830767e-07,1.0616980733947424e-23,4.4555252820543956e-09,-7.031035206700735e-24,2.5727310912770918e-06,1.9190590211230242e-22,-2.7081381404059357e-07,-5.934407319055893e-25,-7.031035206700735e-24,4.669203246265852e-09,54.0,60.0,0.007462657988071442,-0.00029069973970763385,-0.00026256751152686775,3.00625310956093e-06,3.3118064948212123e-06,2.4482442313455977e-06,-0.00029069973970763385,2.3341688574873842e-05,3.3118064948212123e-06,-3.468753391189239e-07,-1.2497383750087465e-07,1.9190590211230242e-22,-0.00026256751152686775,3.3118064948212123e-06,1.8946837371913716e-05,2.208171115523497e-22,-1.1226462959257333e-07,-2.5326662012048473e-07,3.00625310956093e-06,-3.468753391189239e-07,2.208171115523497e-22,6.54481802087048e-09,5.527610485679916e-25,-3.882290198193372e-24,3.3118064948212123e-06,-1.2497383750087465e-07,-1.1226462959257333e-07,5.527610485679916e-25,4.236401007773338e-09,6.203854594147708e-25,2.4482442313455977e-06,1.9190590211230242e-22,-2.5326662012048473e-07,-3.882290198193372e-24,6.203854594147708e-25,4.292654676163465e-09,54.0,61.0,0.00734444847330451,-0.00028598669450730085,-0.0002542104048188776,2.956970092782285e-06,3.204974063919508e-06,2.3316611077461857e-06,-0.00028598669450730085,2.2961021386436187e-05,3.204974063919508e-06,-3.411888656046358e-07,-1.2094241697013786e-07,-3.771943593241806e-22,-0.0002542104048188776,3.204974063919508e-06,1.8037442714557983e-05,-6.321403199396797e-22,-1.068324735342685e-07,-2.371180727323008e-07,2.956970092782285e-06,-3.411888656046358e-07,-6.321403199396797e-22,6.437525623681495e-09,6.225593234112883e-24,7.793053541899792e-24,3.204974063919508e-06,-1.2094241697013786e-07,-1.068324735342685e-07,6.225593234112883e-24,4.031413869398648e-09,-1.2407709188295415e-24,2.3316611077461857e-06,-3.771943593241806e-22,-2.371180727323008e-07,7.793053541899792e-24,-1.2407709188295415e-24,3.951968086113311e-09,54.0,62.0,0.007229925133287907,-0.00028142405790276825,-0.00024624605430290103,2.9092771001160145e-06,3.1032288916321704e-06,2.2223644009500276e-06,-0.00028142405790276825,2.2592570530832745e-05,3.1032288916321704e-06,-3.3568582580301154e-07,-1.1710297798117608e-07,-6.88214269644119e-22,-0.00024624605430290103,3.1032288916321704e-06,1.7185335309477523e-05,-1.0140710253823563e-21,-1.0174520781447427e-07,-2.2223645146368654e-07,2.9092771001160145e-06,-3.3568582580301154e-07,-1.0140710253823563e-21,6.333694901883291e-09,7.451339508141585e-24,1.2286530686922605e-23,3.1032288916321704e-06,-1.1710297798117608e-07,-1.0174520781447427e-07,7.451339508141585e-24,3.839442097586243e-09,1.2407709188295415e-24,2.2223644009500276e-06,-6.88214269644119e-22,-2.2223645146368654e-07,1.2286530686922605e-23,1.2407709188295415e-24,3.6432203920355732e-09,54.0,63.0,0.0071189189329743385,-0.0002770047285594046,-0.0002386502455919981,2.8630981887545204e-06,3.00625310956093e-06,2.1197938622208312e-06,-0.0002770047285594046,2.2235759388422593e-05,3.00625310956093e-06,-3.3035746582754655e-07,-1.1344351236175498e-07,2.183756817139993e-22,-0.0002386502455919981,3.00625310956093e-06,1.638607500353828e-05,2.12967301834902e-22,-9.697590286350533e-08,-2.0850430360042083e-07,2.8630981887545204e-06,-3.3035746582754655e-07,2.12967301834902e-22,6.233159766111385e-09,-1.961010527212656e-26,-3.4336815674731925e-24,3.00625310956093e-06,-1.1344351236175498e-07,-9.697590286350533e-08,-1.961010527212656e-26,3.6594680619117526e-09,-1.2407709188295415e-24,2.1197938622208312e-06,2.183756817139993e-22,-2.0850430360042083e-07,-3.4336815674731925e-24,-1.2407709188295415e-24,3.362972789133778e-09,54.0,64.0,0.007011270150542259,-0.0002727220708038658,-0.00023140053963288665,2.818362190737389e-06,2.9137529509171145e-06,2.0234394924045773e-06,-0.0002727220708038658,2.189004408137407e-05,2.9137529509171145e-06,-3.251956286476343e-07,-1.0995294275062406e-07,2.117582368135751e-22,-0.00023140053963288665,2.9137529509171145e-06,1.5635623640264384e-05,2.1020963343686658e-22,-9.250009469496945e-08,-1.9581672461299604e-07,2.818362190737389e-06,-3.251956286476343e-07,2.1020963343686658e-22,6.1357665614991674e-09,-2.8257989478938002e-27,-3.35639686458869e-24,2.9137529509171145e-06,-1.0995294275062406e-07,-9.250009469496945e-08,-2.8257989478938002e-27,3.4905696111309226e-09,-8.271806125530277e-25,2.0234394924045773e-06,2.117582368135751e-22,-1.9581672461299604e-07,-3.35639686458869e-24,-8.271806125530277e-25,3.108202140111871e-09,55.0,3.0,0.08918318152427673,-0.004699247889220715,-0.0535714291036129,5.696058360626921e-05,0.0009740259847603738,0.00909090880304575,-0.004699247889220715,0.0004083369276486337,0.0009740259847603738,-6.44836791252601e-06,-3.607503458624706e-05,2.656295322589486e-18,-0.0535714291036129,0.0009740259847603738,0.14448052644729614,7.619384865720122e-20,-0.0009740259847603738,-0.05454545468091965,5.696058360626921e-05,-6.44836791252601e-06,7.619384865720122e-20,1.1941422428662918e-07,-3.3968247080266003e-22,-3.31109865576864e-20,0.0009740259847603738,-3.607503458624706e-05,-0.0009740259847603738,-3.3968247080266003e-22,3.607503458624706e-05,-9.215718466126788e-19,0.00909090880304575,2.656295322589486e-18,-0.05454545468091965,-3.31109865576864e-20,-9.215718466126788e-19,0.027272727340459824,55.0,4.0,0.07446856051683426,-0.003670539939776063,-0.03487012907862663,4.2720435885712504e-05,0.0005844155675731599,0.004545454401522875,-0.003670539939776063,0.00031166395638138056,0.0005844155675731599,-4.8362758207076695e-06,-2.1645020751748234e-05,7.860465750519907e-19,-0.03487012907862663,0.0005844155675731599,0.055064935237169266,3.644618524984874e-20,-0.00038961038808338344,-0.013636363670229912,4.2720435885712504e-05,-4.8362758207076695e-06,3.644618524984874e-20,8.95606646622582e-08,-4.566531249981488e-22,-6.998520707837579e-21,0.0005844155675731599,-2.1645020751748234e-05,-0.00038961038808338344,-4.566531249981488e-22,1.4430014743993524e-05,-1.4907779871675686e-19,0.004545454401522875,7.860465750519907e-19,-0.013636363670229912,-6.998520707837579e-21,-1.4907779871675686e-19,0.004545454401522875,55.0,5.0,0.06396445631980896,-0.003014354035258293,-0.0245454553514719,3.417635161895305e-05,0.00038961038808338344,0.002597402548417449,-0.003014354035258293,0.00025221717078238726,0.00038961038808338344,-3.869020929414546e-06,-1.4430014743993524e-05,-2.0328790734103208e-19,-0.0245454553514719,0.00038961038808338344,0.027857143431901932,-5.157009465244618e-21,-0.00019480519404169172,-0.005194805096834898,3.417635161895305e-05,-3.869020929414546e-06,-5.157009465244618e-21,7.164852888763562e-08,-1.919632554555556e-22,2.6789160983228285e-21,0.00038961038808338344,-1.4430014743993524e-05,-0.00019480519404169172,-1.919632554555556e-22,7.215007371996762e-06,1.3552527156068805e-20,0.002597402548417449,-2.0328790734103208e-19,-0.005194805096834898,2.6789160983228285e-21,1.3552527156068805e-20,0.0012987012742087245,55.0,6.0,0.05607118457555771,-0.0025583438109606504,-0.01822820119559765,2.8480291803134605e-05,0.00027829312602989376,0.001623376621864736,-0.0025583438109606504,0.0002118988340953365,0.00027829312602989376,-3.224183956263005e-06,-1.0307153388566803e-05,2.981555974335137e-19,-0.01822820119559765,0.00027829312602989376,0.01621985249221325,3.1772269053277484e-20,-0.00011131725477753207,-0.002435064874589443,2.8480291803134605e-05,-3.224183956263005e-06,3.1772269053277484e-20,5.970711214331459e-08,-2.2338011432252554e-22,-4.769928924351365e-21,0.00027829312602989376,-1.0307153388566803e-05,-0.00011131725477753207,-2.2338011432252554e-22,4.122861355426721e-06,1.6940658945086007e-20,0.001623376621864736,2.981555974335137e-19,-0.002435064874589443,-4.769928924351365e-21,1.6940658945086007e-20,0.0004870129923801869,55.0,7.0,0.04991740733385086,-0.0022226832807064056,-0.014076994732022285,2.4411678168689832e-05,0.00020871985179837793,0.0010822510812431574,-0.0022226832807064056,0.0001827319065341726,0.00020871985179837793,-2.7635862807073863e-06,-7.730364814051427e-06,1.8295911660692887e-19,-0.014076994732022285,0.00020871985179837793,0.010320036672055721,2.051443300489741e-20,-6.957328150747344e-05,-0.0012987012742087245,2.4411678168689832e-05,-2.7635862807073863e-06,2.051443300489741e-20,5.1177522664147546e-08,-1.6273128886055821e-22,-2.5333339261006296e-21,0.00020871985179837793,-7.730364814051427e-06,-6.957328150747344e-05,-1.6273128886055821e-22,2.576788347141701e-06,-5.082197683525802e-21,0.0010822510812431574,1.8295911660692887e-19,-0.0012987012742087245,-2.5333339261006296e-21,-5.082197683525802e-21,0.00021645022206939757,55.0,8.0,0.04498319700360298,-0.001965140225365758,-0.011201298795640469,2.1360217942856252e-05,0.00016233765927609056,0.0007575757335871458,-0.001965140225365758,0.0001606419828021899,0.00016233765927609056,-2.4181379103538347e-06,-6.01250621912186e-06,-1.5585406229479126e-19,-0.011201298795640469,0.00016233765927609056,0.006988249719142914,-7.156692342800636e-21,-4.638218888430856e-05,-0.0007575757335871458,2.1360217942856252e-05,-2.4181379103538347e-06,-7.156692342800636e-21,4.47803323311291e-08,1.2404722560908248e-23,9.382003272714698e-22,0.00016233765927609056,-6.01250621912186e-06,-4.638218888430856e-05,1.2404722560908248e-23,1.717858822303242e-06,2.159934015498466e-20,0.0007575757335871458,-1.5585406229479126e-19,-0.0007575757335871458,9.382003272714698e-22,2.159934015498466e-20,0.00010822511103469878,55.0,9.0,0.0409378819167614,-0.0017612212104722857,-0.009126327931880951,1.8986860595759936e-05,0.0001298701245104894,0.0005509642069227993,-0.0017612212104722857,0.00014332731370814145,0.0001298701245104894,-2.149455895050778e-06,-4.8100046114996076e-06,1.6940658945086007e-20,-0.009126327931880951,0.0001298701245104894,0.004957693628966808,4.488883002126536e-21,-3.246753112762235e-05,-0.0004722550220321864,1.8986860595759936e-05,-2.149455895050778e-06,4.488883002126536e-21,3.980473906040061e-08,3.738148034755669e-23,-6.422443533363381e-22,0.0001298701245104894,-4.8100046114996076e-06,-3.246753112762235e-05,3.738148034755669e-23,1.2025011528749019e-06,5.505714157152952e-21,0.0005509642069227993,1.6940658945086007e-20,-0.0004722550220321864,-6.422443533363381e-22,5.505714157152952e-21,5.90318777540233e-05,55.0,10.0,0.03756074234843254,-0.0015957248397171497,-0.007579693105071783,1.7088175809476525e-05,0.00010625737922964618,0.0004132231406401843,-0.0015957248397171497,0.00012938813597429544,0.00010625737922964618,-1.934510464707273e-06,-3.935458607884357e-06,7.453889935837843e-20,-0.007579693105071783,0.00010625737922964618,0.0036471860948950052,1.1419559551656995e-20,-2.361275073781144e-05,-0.0003099173482041806,1.7088175809476525e-05,-1.934510464707273e-06,1.1419559551656995e-20,3.582426444381781e-08,-1.470595383037224e-22,-8.037648984795631e-22,0.00010625737922964618,-3.935458607884357e-06,-2.361275073781144e-05,-1.470595383037224e-22,8.74546344675764e-07,-5.082197683525802e-21,0.0004132231406401843,7.453889935837843e-20,-0.0003099173482041806,-8.037648984795631e-22,-5.082197683525802e-21,3.443526293267496e-05,55.0,11.0,0.03469867631793022,-0.0014587087789550424,-0.006395876873284578,1.5534704289166257e-05,8.854781481204554e-05,0.00031786394538357854,-0.0014587087789550424,0.00011792371515184641,8.854781481204554e-05,-1.7586457943252753e-06,-3.2795487641124055e-06,9.147955830346444e-20,-0.006395876873284578,8.854781481204554e-05,0.00276254047639668,9.533374497534418e-21,-1.7709562598611228e-05,-0.0002119092969223857,1.5534704289166257e-05,-1.7586457943252753e-06,9.533374497534418e-21,3.2567513130743464e-08,-1.2715806703438533e-22,-5.5238221626206e-22,8.854781481204554e-05,-3.2795487641124055e-06,-1.7709562598611228e-05,-1.2715806703438533e-22,6.559097300851136e-07,-1.1011428314305904e-20,0.00031786394538357854,9.147955830346444e-20,-0.0002119092969223857,-5.5238221626206e-22,-1.1011428314305904e-20,2.119093005603645e-05,55.0,12.0,0.032242100685834885,-0.0013433934655040503,-0.00546953035518527,1.4240145901567303e-05,7.492507575079799e-05,0.00024975024280138314,-0.0013433934655040503,0.00010832798579940572,7.492507575079799e-05,-1.6120919781315024e-06,-2.775002712951391e-06,-4.912791094074942e-20,-0.00546953035518527,7.492507575079799e-05,0.0021433113142848015,-1.7923034877204678e-21,-1.3622740880236961e-05,-0.00014985015150159597,1.4240145901567303e-05,-1.6120919781315024e-06,-1.7923034877204678e-21,2.9853556071657295e-08,1.2052841687803553e-23,1.082975766155779e-22,7.492507575079799e-05,-2.775002712951391e-06,-1.3622740880236961e-05,1.2052841687803553e-23,5.045459374741768e-07,7.623296525288703e-21,0.00024975024280138314,-4.912791094074942e-20,-0.00014985015150159597,1.082975766155779e-22,7.623296525288703e-21,1.3622740880236961e-05,55.0,13.0,0.030110491439700127,-0.0012449956266209483,-0.004730983171612024,1.3144749573257286e-05,6.42214945401065e-05,0.00019980019715148956,-0.0012449956266209483,0.00010017803288064897,6.42214945401065e-05,-1.4880848766551935e-06,-2.378573753958335e-06,2.710505431213761e-20,-0.004730983171612024,6.42214945401065e-05,0.001696679973974824,5.884823391127579e-21,-1.0703582120186184e-05,-0.00010898192704189569,1.3144749573257286e-05,-1.4880848766551935e-06,5.884823391127579e-21,2.7557128134958475e-08,-4.0223389623938836e-23,-3.7972096089674593e-22,6.42214945401065e-05,-2.378573753958335e-06,-1.0703582120186184e-05,-4.0223389623938836e-23,3.9642895899305586e-07,-1.164670302474663e-21,0.00019980019715148956,2.710505431213761e-20,-0.00010898192704189569,-3.7972096089674593e-22,-1.164670302474663e-21,9.081827556656208e-06,55.0,14.0,0.028243334963917732,-0.0011600429425016046,-0.004132653120905161,1.2205839084344916e-05,5.5658627388766035e-05,0.00016233765927609056,-0.0011600429425016046,9.316970681538805e-05,5.5658627388766035e-05,-1.3817931403536932e-06,-2.0614306777133606e-06,4.2351647362715017e-20,-0.004132653120905161,5.5658627388766035e-05,0.0013663122663274407,5.504631713773244e-21,-8.562865332351066e-06,-8.116882963804528e-05,1.2205839084344916e-05,-1.3817931403536932e-06,5.504631713773244e-21,2.5588761332073773e-08,-3.529795354646144e-23,-3.2252311790519465e-22,5.5658627388766035e-05,-2.0614306777133606e-06,-8.562865332351066e-06,-3.529795354646144e-23,3.171431615101028e-07,-3.3881317890172014e-21,0.00016233765927609056,4.2351647362715017e-20,-8.116882963804528e-05,-3.2252311790519465e-22,-3.3881317890172014e-21,6.243756160984049e-06,55.0,15.0,0.02659427560865879,-0.0010859535541385412,-0.003641138318926096,1.1392116903152782e-05,4.870129851042293e-05,0.0001336898421868682,-0.0010859535541385412,8.70786388986744e-05,4.870129851042293e-05,-1.2896736052425695e-06,-1.8037518429991906e-06,-3.134021904840911e-20,-0.003641138318926096,4.870129851042293e-05,0.0011166249169036746,-3.3345001526753263e-21,-6.9573284235957544e-06,-6.170300184749067e-05,1.1392116903152782e-05,-1.2896736052425695e-06,-3.3345001526753263e-21,2.38828441467831e-08,1.9543314218870437e-23,1.739186870264619e-22,4.870129851042293e-05,-1.8037518429991906e-06,-6.9573284235957544e-06,1.9543314218870437e-23,2.576788347141701e-07,2.964615315390051e-21,0.0001336898421868682,-3.134021904840911e-20,-6.170300184749067e-05,1.739186870264619e-22,2.964615315390051e-21,4.407357209856855e-06,55.0,16.0,0.025127198547124863,-0.0010207671439275146,-0.0032324292697012424,1.0680108971428126e-05,4.297173290979117e-05,0.00011140819697175175,-0.0010207671439275146,8.173569949576631e-05,4.297173290979117e-05,-1.2090689551769174e-06,-1.591545697010588e-06,-3.218725199566341e-20,-0.0032324292697012424,4.297173290979117e-05,0.0009243697277270257,-2.2947272564508515e-21,-5.729564691137057e-06,-4.774637272930704e-05,1.0680108971428126e-05,-1.2090689551769174e-06,-2.2947272564508515e-21,2.239016616556455e-08,2.2954856799469055e-23,9.857061242072799e-23,4.297173290979117e-05,-1.591545697010588e-06,-5.729564691137057e-06,2.2954856799469055e-23,2.122060891451838e-07,3.202843331805323e-21,0.00011140819697175175,-3.218725199566341e-20,-4.774637272930704e-05,9.857061242072799e-23,3.202843331805323e-21,3.183091394021176e-06,55.0,17.0,0.02381354384124279,-0.0009629689157009125,-0.0028889067471027374,1.005186732072616e-05,3.819709672825411e-05,9.38174343900755e-05,-0.0009629689157009125,7.701093272771686e-05,3.819709672825411e-05,-1.1379472653061384e-06,-1.4147072988635045e-06,1.0587911840678754e-20,-0.0028889067471027374,3.819709672825411e-05,0.0007739100256003439,2.1661522185258465e-22,-4.774637091031764e-06,-3.75269737560302e-05,1.005186732072616e-05,-1.1379472653061384e-06,2.1661522185258465e-22,2.1073097045132272e-08,-1.0475338391832276e-23,9.399917649117716e-25,3.819709672825411e-05,-1.4147072988635045e-06,-4.774637091031764e-06,-1.0475338391832276e-23,1.7683841235793807e-07,-1.2970192004831474e-21,9.38174343900755e-05,1.0587911840678754e-20,-3.75269737560302e-05,9.399917649117716e-25,-1.2970192004831474e-21,2.3454358597518876e-06,55.0,18.0,0.022630440071225166,-0.0009113693377003074,-0.002597402548417449,9.493430297879968e-06,3.417635161895305e-05,7.974481559358537e-05,-0.0009113693377003074,7.280286808963865e-05,3.417635161895305e-05,-1.074727947525389e-06,-1.2657907291213633e-06,-1.4399560103323106e-20,-0.002597402548417449,3.417635161895305e-05,0.0006544603384099901,-4.8095717975460386e-21,-4.020746928290464e-06,-2.9904305847594514e-05,9.493430297879968e-06,-1.074727947525389e-06,-4.8095717975460386e-21,1.9902369530200303e-08,4.3799018428267045e-23,1.8991989114086697e-22,3.417635161895305e-05,-1.2657907291213633e-06,-4.020746928290464e-06,4.3799018428267045e-23,1.4891655553128658e-07,3.970466940254533e-22,7.974481559358537e-05,-1.4399560103323106e-20,-2.9904305847594514e-05,1.8991989114086697e-22,3.970466940254533e-22,1.759076781127078e-06,55.0,19.0,0.0215593408793211,-0.000865021429490298,-0.0023479152005165815,8.993776646093465e-06,3.075871427427046e-05,6.83527032379061e-05,-0.000865021429490298,6.903109897393733e-05,3.075871427427046e-05,-1.0181634024775121e-06,-1.1392116903152782e-06,-1.3976043629695956e-20,-0.0023479152005165815,3.075871427427046e-05,0.0005584147293120623,-1.3201124029750087e-21,-3.4176350709458347e-06,-2.4124481569742784e-05,8.993776646093465e-06,-1.0181634024775121e-06,-1.3201124029750087e-21,1.8854876771001727e-08,5.4962053413973885e-24,5.590210424484593e-23,3.075871427427046e-05,-1.1392116903152782e-06,-3.4176350709458347e-06,5.4962053413973885e-24,1.2657906722779444e-07,1.1249656330721176e-21,6.83527032379061e-05,-1.3976043629695956e-20,-2.4124481569742784e-05,5.590210424484593e-23,1.1249656330721176e-21,1.340249013992434e-06,55.0,20.0,0.020585058256983757,-0.0008231617975980043,-0.002132737310603261,8.544087904738262e-06,2.7829313694383018e-05,5.90318777540233e-05,-0.0008231617975980043,6.563108036061749e-05,2.7829313694383018e-05,-9.672552323536365e-07,-1.0307153388566803e-06,-1.6940658945086007e-21,-0.002132737310603261,2.7829313694383018e-05,0.0004803034826181829,1.348527551434304e-21,-2.929401489382144e-06,-1.9677292584674433e-05,8.544087904738262e-06,-9.672552323536365e-07,1.348527551434304e-21,1.7912132221908905e-08,-2.801988181412531e-23,-2.204933598814034e-23,2.7829313694383018e-05,-1.0307153388566803e-06,-2.929401489382144e-06,-2.801988181412531e-23,1.0849635145859793e-07,3.5734202462290796e-22,5.90318777540233e-05,-1.6940658945086007e-21,-1.9677292584674433e-05,-2.204933598814034e-23,3.5734202462290796e-22,1.0356469601902063e-06,55.0,21.0,0.019695034250617027,-0.0007851683767512441,-0.0019458519527688622,8.137226359394845e-06,2.529937592044007e-05,5.133206650498323e-05,-0.0007851683767512441,6.255041080294177e-05,2.529937592044007e-05,-9.211954079546558e-07,-9.370139082420792e-07,8.893845946170154e-21,-0.0019458519527688622,2.529937592044007e-05,0.0004161235992796719,2.7113209392092717e-21,-2.529937546569272e-06,-1.6210125977522694e-05,8.137226359394845e-06,-9.211954079546558e-07,2.7113209392092717e-21,1.705917362926357e-08,-1.0235482078156206e-23,-1.1717142876219838e-22,2.529937592044007e-05,-9.370139082420792e-07,-2.529937546569272e-06,-1.0235482078156206e-23,9.370139508746433e-08,-1.7205356741102976e-22,5.133206650498323e-05,8.893845946170154e-21,-1.6210125977522694e-05,-1.1717142876219838e-22,-1.7205356741102976e-22,8.105063216135022e-07,55.0,22.0,0.018878785893321037,-0.0007505288813263178,-0.0017825060058385134,7.767352144583128e-06,2.3099430109141394e-05,4.491555955610238e-05,-0.0007505288813263178,5.9746096667367965e-05,2.3099430109141394e-05,-8.793228971626377e-07,-8.555344379601593e-07,1.9269999550035333e-20,-0.0017825060058385134,2.3099430109141394e-05,0.000362899387255311,4.614089389416081e-21,-2.199945811298676e-06,-1.3474667866830714e-05,7.767352144583128e-06,-8.793228971626377e-07,4.614089389416081e-21,1.6283756565371732e-08,-4.7151784560539455e-23,-1.4972386867945206e-22,2.3099430109141394e-05,-8.555344379601593e-07,-2.199945811298676e-06,-4.7151784560539455e-23,8.147947028191993e-08,-9.065899513581183e-22,4.491555955610238e-05,1.9269999550035333e-20,-1.3474667866830714e-05,-1.4972386867945206e-22,-9.065899513581183e-22,6.416508426809742e-07,55.0,23.0,0.018127506598830223,-0.000718817813321948,-0.0016389045631513,7.42964130040491e-06,2.1174477296881378e-05,3.952569022658281e-05,-0.000718817813321948,5.7182536693289876e-05,2.1174477296881378e-05,-8.410914915657486e-07,-7.842398872526246e-07,2.752857078576476e-21,-0.0016389045631513,2.1174477296881378e-05,0.00031838714494369924,2.056911416703114e-21,-1.9249525848863414e-06,-1.1293054740235675e-05,7.42964130040491e-06,-8.410914915657486e-07,2.056911416703114e-21,1.557576823074669e-08,-1.482868701881706e-23,-7.073274606098613e-23,2.1174477296881378e-05,-7.842398872526246e-07,-1.9249525848863414e-06,-1.482868701881706e-23,7.129453649667994e-08,1.3896634290890865e-22,3.952569022658281e-05,2.752857078576476e-21,-1.1293054740235675e-05,-7.073274606098613e-23,1.3896634290890865e-22,5.133206855134631e-07,55.0,24.0,0.017433736473321915,-0.0006896787672303617,-0.0015119879972189665,7.120072950783651e-06,1.9480519767967053e-05,3.4965036320500076e-05,-0.0006896787672303617,5.4829994041938335e-05,1.9480519767967053e-05,-8.060459890657512e-07,-7.215007258309925e-07,6.776263578034403e-21,-0.0015119879972189665,1.9480519767967053e-05,0.00028087326791137457,1.14358234653855e-21,-1.6939582110353513e-06,-9.535918252367992e-06,7.120072950783651e-06,-8.060459890657512e-07,1.14358234653855e-21,1.4926778035828647e-08,5.558870873986335e-24,-5.616345070730204e-23,1.9480519767967053e-05,-7.215007258309925e-07,-1.6939582110353513e-06,5.558870873986335e-24,6.273918984334159e-08,-2.845501307182415e-22,3.4965036320500076e-05,6.776263578034403e-21,-9.535918252367992e-06,-5.616345070730204e-23,-2.845501307182415e-22,4.1460515376456897e-07,55.0,25.0,0.01679111458361149,-0.000662810867652297,-0.001399267348460853,6.8352701418916695e-06,1.798201810743194e-05,3.108003147644922e-05,-0.000662810867652297,5.266343578114174e-05,1.798201810743194e-05,-7.738041745142255e-07,-6.660006874881219e-07,1.2281977735187355e-20,-0.001399267348460853,1.798201810743194e-05,0.00024903356097638607,2.7273475635774866e-21,-1.4985015468482743e-06,-8.107834219117649e-06,6.8352701418916695e-06,-7.738041745142255e-07,2.7273475635774866e-21,1.4329706310434176e-08,-2.0236959612831273e-23,-8.257180013258755e-23,1.798201810743194e-05,-6.660006874881219e-07,-1.4985015468482743e-06,-2.0236959612831273e-23,5.550005610643893e-08,-5.889525961377557e-22,3.108003147644922e-05,1.2281977735187355e-20,-8.107834219117649e-06,-8.257180013258755e-23,-5.889525961377557e-22,3.3782643527047185e-07,55.0,26.0,0.016194185242056847,-0.000637958524748683,-0.0012987012742087245,6.572374786628643e-06,1.6650015822960995e-05,2.775002758426126e-05,-0.000637958524748683,5.066163794253953e-05,1.6650015822960995e-05,-7.440424383275968e-07,-6.166673074403661e-07,9.529120656610879e-21,-0.0012987012742087245,1.6650015822960995e-05,0.00022183371766004711,2.6745002947891165e-21,-1.3320013749762438e-06,-6.937506896065315e-06,6.572374786628643e-06,-7.440424383275968e-07,2.6745002947891165e-21,1.3778564067479238e-08,-1.9050160979415143e-23,-8.355782577701588e-23,1.6650015822960995e-05,-6.166673074403661e-07,-1.3320013749762438e-06,-1.9050160979415143e-23,4.933338360046946e-08,-3.441071348220595e-22,2.775002758426126e-05,9.529120656610879e-21,-6.937506896065315e-06,-8.355782577701588e-23,-3.441071348220595e-22,2.77500276979481e-07,55.0,27.0,0.015638243407011032,-0.0006149030523374677,-0.001208602567203343,6.3289535319199786e-06,1.5460729628102854e-05,2.487933488737326e-05,-0.0006149030523374677,4.880648702965118e-05,1.5460729628102854e-05,-7.164853172980656e-07,-5.726196263822203e-07,1.0587911840678754e-21,-0.001208602567203343,1.5460729628102854e-05,0.00019845781207550317,7.069326136386929e-22,-1.1892868769791676e-06,-5.971040536678629e-06,6.3289535319199786e-06,-7.164853172980656e-07,7.069326136386929e-22,1.3268246945585815e-08,-8.772673635777728e-24,-1.2772626776719793e-23,1.5460729628102854e-05,-5.726196263822203e-07,-1.1892868769791676e-06,-8.772673635777728e-24,4.404766329457743e-08,-3.3087224502121107e-23,2.487933488737326e-05,1.0587911840678754e-21,-5.971040536678629e-06,-1.2772626776719793e-23,-3.3087224502121107e-23,2.2965539869801432e-07,55.0,28.0,0.015119204297661781,-0.0005934563232585788,-0.0011275670258328319,6.102919542172458e-06,1.439447260054294e-05,2.2391401216736995e-05,-0.0005934563232585788,4.7082437959033996e-05,1.439447260054294e-05,-6.908965701768466e-07,-5.331286274667946e-07,2.2234614865425384e-21,-0.0011275670258328319,1.439447260054294e-05,0.00017825633403845131,7.384043014940193e-22,-1.0662572549335891e-06,-5.167246399651049e-06,6.102919542172458e-06,-6.908965701768466e-07,7.384043014940193e-22,1.2794380666036886e-08,-6.2566715927654226e-24,-1.8444880628613544e-23,1.439447260054294e-05,-5.331286274667946e-07,-1.0662572549335891e-06,-6.2566715927654226e-24,3.949100957356677e-08,-5.293955920339377e-23,2.2391401216736995e-05,2.2234614865425384e-21,-5.167246399651049e-06,-1.8444880628613544e-23,-5.293955920339377e-23,1.9137949891501194e-07,55.0,29.0,0.014633514918386936,-0.0005734555888921022,-0.0010544182732701302,5.8924742916133255e-06,1.3434841093840078e-05,2.022449189098552e-05,-0.0005734555888921022,4.5476062950911e-05,1.3434841093840078e-05,-6.670725269941613e-07,-4.975867113898857e-07,2.6469779601696886e-21,-0.0010544182732701302,1.3434841093840078e-05,0.00016070788842625916,2.778882319280863e-22,-9.596315067028627e-07,-4.494331733440049e-06,5.8924742916133255e-06,-6.670725269941613e-07,2.778882319280863e-22,1.2353194911440823e-08,-5.134613590549423e-24,-5.104888128349337e-24,1.3434841093840078e-05,-4.975867113898857e-07,-9.596315067028627e-07,-5.134613590549423e-24,3.554190897148146e-08,-1.885971796620903e-22,2.022449189098552e-05,2.6469779601696886e-21,-4.494331733440049e-06,-5.104888128349337e-24,-1.885971796620903e-22,1.605118455927368e-07,55.0,30.0,0.014178059063851833,-0.0005547593464143574,-0.0009881650330498815,5.696058451576391e-06,1.2568077181640547e-05,1.8328446458326653e-05,-0.0005547593464143574,4.3975713197141886e-05,1.2568077181640547e-05,-6.448368026212847e-07,-4.6548433374482556e-07,-3.0704944337968387e-21,-0.0009881650330498815,1.2568077181640547e-05,0.00014539061521645635,-1.701005245145453e-21,-8.667639121995308e-07,-3.92752417610609e-06,5.696058451576391e-06,-6.448368026212847e-07,-1.701005245145453e-21,1.194142207339155e-08,4.507814691975205e-24,5.029051379656368e-23,1.2568077181640547e-05,-4.6548433374482556e-07,-8.667639121995308e-07,4.507814691975205e-24,3.210236698691915e-08,2.3161057151484775e-23,1.8328446458326653e-05,-3.0704944337968387e-21,-3.92752417610609e-06,5.029051379656368e-23,2.3161057151484775e-23,1.3543186128117668e-07,55.0,31.0,0.013750098645687103,-0.0005372439627535641,-0.0009279668447561562,5.512314601219259e-06,1.1782572073570918e-05,1.666222306084819e-05,-0.0005372439627535641,4.2571216908982024e-05,1.1782572073570918e-05,-6.240355787667795e-07,-4.363915593330603e-07,-3.1763735522036263e-21,-0.0009279668447561562,1.1782572073570918e-05,0.0001319607108598575,-1.3453257606575164e-21,-7.855048238525342e-07,-3.4473566756787477e-06,5.512314601219259e-06,-6.240355787667795e-07,-1.3453257606575164e-21,1.1556214651875507e-08,8.260931677951805e-24,3.7537980884821676e-23,1.1782572073570918e-05,-4.363915593330603e-07,-7.855048238525342e-07,8.260931677951805e-24,2.9092770859051598e-08,6.28657265540301e-23,1.666222306084819e-05,-3.1763735522036263e-21,-3.4473566756787477e-06,3.7537980884821676e-23,6.28657265540301e-23,1.1491188445234002e-07,55.0,32.0,0.013347217813134193,-0.0005208009970374405,-0.0008731075213290751,5.340054485714063e-06,1.1068476851505693e-05,1.5192027603916358e-05,-0.0005208009970374405,4.1253679228248075e-05,1.1068476851505693e-05,-6.045344775884587e-07,-4.099435955140507e-07,-0.0,-0.0008731075213290751,1.1068476851505693e-05,0.00012013602827209979,0.0,-7.140952789086441e-07,-3.0384053388843313e-06,5.340054485714063e-06,-6.045344775884587e-07,0.0,1.1195083082782276e-08,0.0,-0.0,1.1068476851505693e-05,-4.099435955140507e-07,-7.140952789086441e-07,0.0,2.6447974477150638e-08,-0.0,1.5192027603916358e-05,-0.0,-3.0384053388843313e-06,-0.0,-0.0,9.801308209489434e-08,55.0,33.0,0.012967274524271488,-0.0005053348140791059,-0.0008229738450609148,5.178234914637869e-06,1.0417390512884595e-05,1.3889853107684758e-05,-0.0005053348140791059,4.001525667263195e-05,1.0417390512884595e-05,-5.862152647750918e-07,-3.8582925299124327e-07,2.859829141679342e-21,-0.0008229738450609148,1.0417390512884595e-05,0.00010968363494612277,9.992558894161691e-22,-6.510869070552872e-07,-2.6883587906922912e-06,5.178234914637869e-06,-5.862152647750918e-07,9.992558894161691e-22,1.0855838006307295e-08,-1.6543612251060553e-24,-2.543648067866228e-23,1.0417390512884595e-05,-3.8582925299124327e-07,-6.510869070552872e-07,-1.6543612251060553e-24,2.4114328311952704e-08,-8.065243844131241e-23,1.3889853107684758e-05,2.859829141679342e-21,-2.6883587906922912e-06,-2.543648067866228e-23,-8.065243844131241e-23,8.40112122091341e-08,55.0,34.0,0.012608364224433899,-0.0004907608963549137,-0.0007770381052978337,5.02593366036308e-06,9.822110769164283e-06,1.2732365576084703e-05,-0.0004907608963549137,3.884903708240017e-05,9.822110769164283e-06,-5.689736326530692e-07,-3.63781879286762e-07,-0.0,-0.0007770381052978337,9.822110769164283e-06,0.00010040999768534675,0.0,-5.952794595032174e-07,-2.387318545515882e-06,5.02593366036308e-06,-5.689736326530692e-07,0.0,1.0536548522566136e-08,0.0,-0.0,9.822110769164283e-06,-3.63781879286762e-07,-5.952794595032174e-07,0.0,2.2047386138979164e-08,-0.0,1.2732365576084703e-05,-0.0,-2.387318545515882e-06,-0.0,-0.0,7.234298493585811e-08,55.0,35.0,0.012268786318600178,-0.0004770041850861162,-0.0007348443032242358,4.882335815636907e-06,9.276437594962772e-06,1.1700011782522779e-05,-0.0004770041850861162,3.774888318730518e-05,9.276437594962772e-06,-5.52717267510161e-07,-3.435717701449903e-07,-0.0,-0.0007348443032242358,9.276437594962772e-06,9.215345926349983e-05,0.0,-5.456728331409977e-07,-2.1272749108902644e-06,4.882335815636907e-06,-5.52717267510161e-07,0.0,1.0235504888100877e-08,0.0,-0.0,9.276437594962772e-06,-3.435717701449903e-07,-5.456728331409977e-07,0.0,2.0210103812701163e-08,-0.0,1.1700011782522779e-05,-0.0,-2.1272749108902644e-06,-0.0,-0.0,6.256690454620184e-08,55.0,36.0,0.011947020888328552,-0.0004639978287741542,-0.0006959967431612313,4.746715148939984e-06,8.775008609518409e-06,1.0776326234918088e-05,-0.0004639978287741542,3.6709330743178725e-05,8.775008609518409e-06,-5.373639737626945e-07,-3.2500031466042856e-07,-0.0,-0.0006959967431612313,8.775008609518409e-06,8.477825031150132e-05,2.6469779601696886e-23,-5.014290991312009e-07,-1.9017046497538104e-06,4.746715148939984e-06,-5.373639737626945e-07,2.6469779601696886e-23,9.951184765100152e-09,-8.271806125530277e-25,-0.0,8.775008609518409e-06,-3.2500031466042856e-07,-5.014290991312009e-07,-8.271806125530277e-25,1.857144660277754e-08,-0.0,1.0776326234918088e-05,-0.0,-1.9017046497538104e-06,-0.0,-0.0,5.4334421406565525e-08,55.0,37.0,0.011641700752079487,-0.0004516820190474391,-0.0006601506611332297,4.618425464286702e-06,8.313166290463414e-06,9.947378202923574e-06,-0.0004516820190474391,3.5725508496398106e-05,8.313166290463414e-06,-5.228406507740146e-07,-3.0789504990025307e-07,-0.0,-0.0006601506611332297,8.313166290463414e-06,7.816981815267354e-05,2.6469779601696886e-23,-4.618425748503796e-07,-1.7052648217941169e-06,4.618425464286702e-06,-5.228406507740146e-07,2.6469779601696886e-23,9.682233681473917e-09,-1.6543612251060553e-24,-0.0,8.313166290463414e-06,-3.0789504990025307e-07,-4.618425748503796e-07,-1.6543612251060553e-24,1.710528074738704e-08,-0.0,9.947378202923574e-06,-0.0,-1.7052648217941169e-06,-0.0,-0.0,4.736847003528055e-08,55.0,38.0,0.011351598426699638,-0.00044000320485793054,-0.0006270045996643603,4.496888323046733e-06,7.886849743954372e-06,9.201325156027451e-06,-0.00044000320485793054,3.4793050872394815e-05,7.886849743954372e-06,-5.090817012387561e-07,-2.9210556817815814e-07,-0.0,-0.0006270045996643603,7.886849743954372e-06,7.223099237307906e-05,2.6469779601696886e-23,-4.263162054485292e-07,-1.5335541547756293e-06,4.496888323046733e-06,-5.090817012387561e-07,2.6469779601696886e-23,9.427438385500864e-09,-8.271806125530277e-25,-0.0,7.886849743954372e-06,-2.9210556817815814e-07,-4.263162054485292e-07,-8.271806125530277e-25,1.578948882752229e-08,-0.0,9.201325156027451e-06,-0.0,-1.5335541547756293e-06,-0.0,-0.0,4.144741083678127e-08,55.0,39.0,0.01107560284435749,-0.00042891319026239216,-0.0005962939467281103,4.381583494250663e-06,7.492507393180858e-06,8.528057151124813e-06,-0.00042891319026239216,3.390803613001481e-05,7.492507393180858e-06,-4.960282922183978e-07,-2.77500276979481e-07,-0.0,-0.0005962939467281103,7.492507393180858e-06,6.687905261060223e-05,-1.3234889800848443e-23,-3.9434249288206047e-07,-1.3829281897415058e-06,4.381583494250663e-06,-4.960282922183978e-07,-1.3234889800848443e-23,9.185709082260018e-09,0.0,-0.0,7.492507393180858e-06,-2.77500276979481e-07,-3.9434249288206047e-07,0.0,1.4605277876000855e-08,-0.0,8.528057151124813e-06,-0.0,-1.3829281897415058e-06,-0.0,-0.0,3.63928478464004e-08,55.0,40.0,0.010812709107995033,-0.00041836852324195206,-0.000567785871680826,4.272043952369131e-06,7.127019216568442e-06,7.91891034168657e-06,-0.00041836852324195206,3.3066931791836396e-05,7.127019216568442e-06,-4.836276161768183e-07,-2.6396367047709646e-07,-0.0,-0.000567785871680826,7.127019216568442e-06,6.204321834957227e-05,1.3234889800848443e-23,-3.654881766124163e-07,-1.2503542166086845e-06,4.272043952369131e-06,-4.836276161768183e-07,1.3234889800848443e-23,8.956066110954453e-09,-8.271806125530277e-25,-0.0,7.127019216568442e-06,-2.6396367047709646e-07,-3.654881766124163e-07,-8.271806125530277e-25,1.3536598508778752e-08,-0.0,7.91891034168657e-06,-0.0,-1.2503542166086845e-06,-0.0,-0.0,3.206036680580837e-08,55.0,41.0,0.010562007315456867,-0.00040832997183315456,-0.0005412746104411781,4.167847691860516e-06,6.787637630623067e-06,7.366428235400235e-06,-0.00040832997183315456,3.2266554626403376e-05,6.787637630623067e-06,-4.7183181095533655e-07,-2.5139397052953427e-07,-0.0,-0.0005412746104411781,6.787637630623067e-06,5.766273898188956e-05,0.0,-3.3938187016246957e-07,-1.1332966778354603e-06,4.167847691860516e-06,-4.7183181095533655e-07,0.0,8.737625734056564e-09,-4.1359030627651384e-25,-0.0,6.787637630623067e-06,-2.5139397052953427e-07,-3.3938187016246957e-07,-4.1359030627651384e-25,1.2569699059383765e-08,-0.0,7.366428235400235e-06,-0.0,-1.1332966778354603e-06,-0.0,-0.0,2.8332415524801036e-08,55.0,42.0,0.010322666727006435,-0.00039876194205135107,-0.0005165779730305076,4.068613179697422e-06,6.471933374996297e-06,6.864171609777259e-06,-0.00039876194205135107,3.1504008802585304e-05,6.471933374996297e-06,-4.605977039773279e-07,-2.397012224264472e-07,-0.0,-0.0005165779730305076,6.471933374996297e-06,5.36852385266684e-05,2.6469779601696886e-23,-3.157040566748037e-07,-1.0296257642039564e-06,4.068613179697422e-06,-4.605977039773279e-07,2.6469779601696886e-23,8.529586814631784e-09,-8.271806125530277e-25,-0.0,6.471933374996297e-06,-2.397012224264472e-07,-3.157040566748037e-07,-8.271806125530277e-25,1.1692743662194971e-08,-0.0,6.864171609777259e-06,-0.0,-1.0296257642039564e-06,-0.0,-0.0,2.5112823820450103e-08,55.0,43.0,0.0100939329713583,-0.0003896320704370737,-0.0004935339675284922,3.973994353145827e-06,6.177754585223738e-06,6.406560260074912e-06,-0.0003896320704370737,3.077667861361988e-05,6.177754585223738e-06,-4.4988613012719725e-07,-2.288057316945924e-07,1.599381381300947e-21,-0.0004935339675284922,6.177754585223738e-06,5.006540231988765e-05,1.540734356650294e-21,-2.9417878977255896e-07,-9.375453942084278e-07,3.973994353145827e-06,-4.4988613012719725e-07,1.540734356650294e-21,8.331224599089637e-09,-1.075334796318936e-23,-2.9751589273266476e-23,6.177754585223738e-06,-2.288057316945924e-07,-2.9417878977255896e-07,-1.075334796318936e-23,1.089551115995846e-08,3.430702582176045e-25,6.406560260074912e-06,1.599381381300947e-21,-9.375453942084278e-07,-2.9751589273266476e-23,3.430702582176045e-25,2.2322510062622314e-08,55.0,44.0,0.009875116869807243,-0.00038091096212156117,-0.00047199835535138845,3.883676072291564e-06,5.90318768445286e-06,5.988741122564534e-06,-0.00038091096212156117,3.0082179364399053e-05,5.90318768445286e-06,-4.3966144858131884e-07,-2.18636586168941e-07,-7.940933880509066e-23,-0.00047199835535138845,5.90318768445286e-06,4.6763911086600274e-05,-0.0,-2.74566872349169e-07,-8.555344379601593e-07,3.883676072291564e-06,-4.3966144858131884e-07,-0.0,8.141878282685866e-09,0.0,0.0,5.90318768445286e-06,-2.18636586168941e-07,-2.74566872349169e-07,0.0,1.0169143749294562e-08,4.963083675318166e-24,5.988741122564534e-06,-7.940933880509066e-23,-8.555344379601593e-07,0.0,4.963083675318166e-24,1.9896150504905563e-08,55.0,45.0,0.009665586054325104,-0.0003725717542693019,-0.0004518423229455948,3.7973723010509275e-06,5.6465273701178376e-06,5.606480954156723e-06,-0.0003725717542693019,2.9418333724606782e-05,5.6465273701178376e-06,-4.2989120174752316e-07,-2.0913064702199335e-07,7.940933880509066e-23,-0.0004518423229455948,5.6465273701178376e-06,4.3746513256337494e-05,-0.0,-2.5666034275673155e-07,-7.822997076800675e-07,3.7973723010509275e-06,-4.2989120174752316e-07,-0.0,7.960948344987173e-09,4.1359030627651384e-25,0.0,5.6465273701178376e-06,-2.0913064702199335e-07,-2.5666034275673155e-07,4.1359030627651384e-25,9.50593825876922e-09,-3.308722450212111e-24,5.606480954156723e-06,7.940933880509066e-23,-7.822997076800675e-07,0.0,-3.308722450212111e-24,1.7779537841988713e-08,55.0,46.0,0.009464762173593044,-0.0003645898832473904,-0.0004329505027271807,3.714820650202455e-06,5.406249783845851e-06,5.256075837678509e-06,-0.0003645898832473904,2.8783157176803797e-05,5.406249783845851e-06,-4.205457457828743e-07,-2.002314687388207e-07,2.2499312661442353e-22,-0.0004329505027271807,5.406249783845851e-06,4.098328645341098e-05,1.7773667283353573e-23,-2.4027775680224295e-07,-7.167376452343888e-07,3.714820650202455e-06,-4.205457457828743e-07,1.7773667283353573e-23,7.787884115373345e-09,3.0938643990653964e-25,-3.108354048261076e-25,5.406249783845851e-06,-2.002314687388207e-07,-2.4027775680224295e-07,3.0938643990653964e-25,8.89917650681582e-09,-9.926167350636332e-24,5.256075837678509e-06,2.2499312661442353e-22,-7.167376452343888e-07,-3.108354048261076e-25,-9.926167350636332e-24,1.5927502872159494e-08,55.0,47.0,0.00927211344242096,-0.00035694288089871407,-0.0004152192850597203,3.6357819226395804e-06,5.1809893193421885e-06,4.934275239065755e-06,-0.00035694288089871407,2.8174832550575957e-05,5.1809893193421885e-06,-4.1159796637657564e-07,-1.9188848909834633e-07,3.970466940254533e-23,-0.0004152192850597203,5.1809893193421885e-06,3.8448019040515646e-05,1.667417030859644e-23,-2.252604076602438e-07,-6.579033993148187e-07,3.6357819226395804e-06,-4.1159796637657564e-07,1.667417030859644e-23,7.62218466121567e-09,-5.112814109686932e-25,1.2827018834742394e-25,5.1809893193421885e-06,-1.9188848909834633e-07,-2.252604076602438e-07,-5.112814109686932e-25,8.342977864117529e-09,-1.2407709188295415e-24,4.934275239065755e-06,3.970466940254533e-23,-6.579033993148187e-07,1.2827018834742394e-25,-1.2407709188295415e-24,1.4302247386410727e-08,55.0,48.0,0.00908715184777975,-0.0003496101126074791,-0.0003985555376857519,3.5600364753918257e-06,4.9695204324962106e-06,4.638218797481386e-06,-0.0003496101126074791,2.7591691832640208e-05,4.9695204324962106e-06,-4.030229945328756e-07,-1.8405630441975518e-07,2.3822801641527197e-22,-0.0003985555376857519,4.9695204324962106e-06,3.611767169786617e-05,-1.5663543247977888e-23,-2.1146894368939684e-07,-6.049850753697683e-07,3.5600364753918257e-06,-4.030229945328756e-07,-1.5663543247977888e-23,7.463389017914324e-09,5.053003661929207e-25,5.557530007662686e-26,4.9695204324962106e-06,-1.8405630441975518e-07,-2.1146894368939684e-07,5.053003661929207e-25,7.832182902234308e-09,-9.926167350636332e-24,4.638218797481386e-06,2.3822801641527197e-22,-6.049850753697683e-07,5.557530007662686e-26,-9.926167350636332e-24,1.2872022558951812e-08,55.0,49.0,0.00890942383557558,-0.00034257257357239723,-0.00038287523784674704,3.4873826280090725e-06,4.770739451487316e-06,4.3653826651279815e-06,-0.00034257257357239723,2.7032201614929363e-05,4.770739451487316e-06,-3.94798036040811e-07,-1.7669405849574105e-07,3.970466940254533e-23,-0.00038287523784674704,4.770739451487316e-06,3.3971948141697794e-05,-0.0,-1.9878081047863816e-07,-5.572828740696423e-07,3.4873826280090725e-06,-3.94798036040811e-07,-0.0,7.311074856630739e-09,-4.1359030627651384e-25,2.0679515313825692e-25,4.770739451487316e-06,-1.7669405849574105e-07,-1.9878081047863816e-07,-4.1359030627651384e-25,7.36225214126307e-09,-1.6543612251060553e-24,4.3653826651279815e-06,3.970466940254533e-23,-5.572828740696423e-07,2.0679515313825692e-25,-1.6543612251060553e-24,1.1610059580391408e-08,55.0,50.0,0.008738514967262745,-0.00033581280149519444,-0.0003681024827528745,3.4176350709458347e-06,4.583651843859116e-06,4.113533577765338e-06,-0.00033581280149519444,2.6494952180655673e-05,4.583651843859116e-06,-3.869020872571127e-07,-1.6976487415831798e-07,9.26442286059391e-22,-0.0003681024827528745,4.583651843859116e-06,3.199291677447036e-05,1.2256381180431527e-21,-1.8708782079102093e-07,-5.141916972206673e-07,3.4176350709458347e-06,-3.869020872571127e-07,1.2256381180431527e-21,7.164853155217088e-09,-1.1303176125519353e-23,-1.8664538947672335e-23,4.583651843859116e-06,-1.6976487415831798e-07,-1.8708782079102093e-07,-1.1303176125519353e-23,6.9291785642633386e-09,4.1359030627651384e-24,4.113533577765338e-06,9.26442286059391e-22,-5.141916972206673e-07,-1.8664538947672335e-23,4.1359030627651384e-24,1.049370812467032e-08,55.0,51.0,0.008574040606617928,-0.0003293146437499672,-0.0003541685873642564,3.3506225918245036e-06,4.407357209856855e-06,3.880692020175047e-06,-0.0003293146437499672,2.5978644771385007e-05,4.407357209856855e-06,-3.793157645759493e-07,-1.6323545537488826e-07,2.117582368135751e-22,-0.0003541685873642564,4.407357209856855e-06,3.016469781869091e-05,-0.0,-1.762942929417477e-07,-4.751867663799203e-07,3.3506225918245036e-06,-3.793157645759493e-07,-0.0,7.0243659777702305e-09,-4.1359030627651384e-25,2.0679515313825692e-25,4.407357209856855e-06,-1.6323545537488826e-07,-1.762942929417477e-07,-4.1359030627651384e-25,6.529418339340509e-09,-8.271806125530277e-24,3.880692020175047e-06,2.117582368135751e-22,-4.751867663799203e-07,2.0679515313825692e-25,-8.271806125530277e-24,9.503735576288364e-09,55.0,52.0,0.008415642194449902,-0.0003230632282793522,-0.0003410111821722239,3.2861873933143215e-06,4.241042006469797e-06,3.6650978927355027e-06,-0.0003230632282793522,2.548207703512162e-05,4.241042006469797e-06,-3.720212191637984e-07,-1.5707563250089152e-07,1.3234889800848443e-23,-0.0003410111821722239,4.241042006469797e-06,2.8473192287492566e-05,1.234827877427878e-23,-1.66315373917314e-07,-4.3981177100249624e-07,3.2861873933143215e-06,-3.720212191637984e-07,1.234827877427878e-23,6.889282033739619e-09,-4.857180775121669e-25,1.6057206718247341e-26,4.241042006469797e-06,-1.5707563250089152e-07,-1.66315373917314e-07,-4.857180775121669e-25,6.159828647156473e-09,-8.271806125530277e-25,3.6650978927355027e-06,1.3234889800848443e-23,-4.3981177100249624e-07,1.6057206718247341e-26,-8.271806125530277e-25,8.623760372472589e-09,55.0,53.0,0.008262990973889828,-0.00031704475986771286,-0.0003285736602265388,3.224183956263005e-06,4.083966359758051e-06,3.465183681328199e-06,-0.00031704475986771286,2.5004135750350542e-05,4.083966359758051e-06,-3.6500196642919036e-07,-1.5125800700843683e-07,-1.9852334701272664e-22,-0.0003285736602265388,4.083966359758051e-06,2.690585097298026e-05,2.0537777835085374e-22,-1.5707563250089152e-07,-4.076686650478223e-07,3.224183956263005e-06,-3.6500196642919036e-07,2.0537777835085374e-22,6.759295345659666e-09,-4.094122228211465e-24,-1.043865419037201e-24,4.083966359758051e-06,-1.5125800700843683e-07,-1.5707563250089152e-07,-4.094122228211465e-24,5.817615722492064e-09,1.1994118882018901e-23,3.465183681328199e-06,-1.9852334701272664e-22,-4.076686650478223e-07,-1.043865419037201e-24,1.1994118882018901e-23,7.839782156793262e-09,55.0,54.0,0.008115778677165508,-0.00031124643282964826,-0.00031680442043580115,3.1644767659599893e-06,3.935458607884357e-06,3.2795487641124055e-06,-0.00031124643282964826,2.4543795007048175e-05,3.935458607884357e-06,-3.582426586490328e-07,-1.4575772411262733e-07,8.602678370551488e-23,-0.00031680442043580115,3.935458607884357e-06,2.545148709032219e-05,-1.1037823038525635e-23,-1.4850786556053208e-07,-3.78409481527342e-07,3.1644767659599893e-06,-3.582426586490328e-07,-1.1037823038525635e-23,6.634123472792908e-09,6.440502018876564e-26,6.071137005231874e-26,3.935458607884357e-06,-1.4575772411262733e-07,-1.4850786556053208e-07,6.440502018876564e-26,5.500291333504492e-09,-3.308722450212111e-24,3.2795487641124055e-06,8.602678370551488e-23,-3.78409481527342e-07,6.071137005231874e-26,-3.308722450212111e-24,7.139801194711026e-09,55.0,55.0,0.007973719388246536,-0.0003056564019061625,-0.0003056564019061625,3.1069409942574566e-06,3.7949064335407456e-06,3.1069409942574566e-06,-0.0003056564019061625,2.4100099835777655e-05,3.7949064335407456e-06,-3.5172917023373884e-07,-1.4055208907848282e-07,3.970466940254533e-23,-0.0003056564019061625,3.7949064335407456e-06,2.4100099835777655e-05,-2.4851708502585893e-22,-1.4055208907848282e-07,-3.5172917023373884e-07,3.1069409942574566e-06,-3.5172917023373884e-07,-2.4851708502585893e-22,6.513503070237903e-09,3.93089665172947e-24,1.869226228089497e-24,3.7949064335407456e-06,-1.4055208907848282e-07,-1.4055208907848282e-07,3.93089665172947e-24,5.2056328136984575e-09,-6.824240053562478e-24,3.1069409942574566e-06,3.970466940254533e-23,-3.5172917023373884e-07,1.869226228089497e-24,-6.824240053562478e-24,6.513503070237903e-09,55.0,56.0,0.007836548611521721,-0.0003002636367455125,-0.00029508667648769915,3.051459771086229e-06,3.66175186172768e-06,2.9462371458066627e-06,-0.0003002636367455125,2.3672162569710054e-05,3.66175186172768e-06,-3.454482850884233e-07,-1.356204393232474e-07,0.0,-0.00029508667648769915,3.66175186172768e-06,2.28427325055236e-05,9.906456083197575e-24,-1.331546144456297e-07,-3.273596860253747e-07,3.051459771086229e-06,-3.454482850884233e-07,9.906456083197575e-24,6.397190333018443e-09,-2.6454176820460132e-25,-3.857205037704926e-26,3.66175186172768e-06,-1.356204393232474e-07,-1.331546144456297e-07,-2.6454176820460132e-25,4.931652419770671e-09,2.0679515313825692e-25,2.9462371458066627e-06,0.0,-3.273596860253747e-07,-3.857205037704926e-26,2.0679515313825692e-25,5.951994008768224e-09,55.0,57.0,0.0077040172182023525,-0.00029505789279937744,-0.00028505592490546405,2.997925548697822e-06,3.53548443854379e-06,2.796428361762082e-06,-0.00029505789279937744,2.3259159206645563e-05,3.53548443854379e-06,-3.393877818780311e-07,-1.3094387441014987e-07,2.6469779601696886e-23,-0.00028505592490546405,3.53548443854379e-06,2.1671346985385753e-05,9.398448592896968e-24,-1.2626730949705234e-07,-3.0506492976201116e-07,2.997925548697822e-06,-3.393877818780311e-07,9.398448592896968e-24,6.284958775637506e-09,-2.615548696464984e-25,7.449433546238861e-26,3.53548443854379e-06,-1.3094387441014987e-07,-1.2626730949705234e-07,-2.615548696464984e-25,4.676566689454376e-09,-1.0339757656912846e-24,2.796428361762082e-06,2.6469779601696886e-23,-3.0506492976201116e-07,7.449433546238861e-26,-1.0339757656912846e-24,5.4475877142579066e-09,55.0,58.0,0.0075758942402899265,-0.00029002956580370665,-0.0002755280875135213,2.9462371458066627e-06,3.415637593207066e-06,2.6566069664113456e-06,-0.00029002956580370665,2.2860320314066485e-05,3.415637593207066e-06,-3.3353626349708065e-07,-1.265050997290018e-07,6.28657265540301e-22,-0.0002755280875135213,3.415637593207066e-06,2.0578716430463828e-05,5.350969990294448e-22,-1.1984693060185236e-07,-2.846364566266857e-07,2.9462371458066627e-06,-3.3353626349708065e-07,5.350969990294448e-22,6.176597455720412e-09,-1.2551571779428308e-24,-7.504642050646464e-24,3.415637593207066e-06,-1.265050997290018e-07,-1.1984693060185236e-07,-1.2551571779428308e-24,4.438775125237271e-09,-8.06501097239202e-24,2.6566069664113456e-06,6.28657265540301e-22,-2.846364566266857e-07,-7.504642050646464e-24,-8.06501097239202e-24,4.9936219603807785e-09,55.0,59.0,0.0074519626796245575,-0.0002851697790902108,-0.00026647013146430254,2.8963008844584692e-06,3.301782953712973e-06,2.525954187149182e-06,-0.0002851697790902108,2.2474931029137224e-05,3.301782953712973e-06,-3.2788312864795444e-07,-1.2228825596594106e-07,4.632211430296955e-23,-0.00026647013146430254,3.301782953712973e-06,1.9558330677682534e-05,-8.482073844373317e-24,-1.1385458265067427e-07,-2.6588992341203266e-07,2.8963008844584692e-06,-3.2788312864795444e-07,-8.482073844373317e-24,6.071909641747197e-09,2.561717074811735e-25,1.1531137304213208e-25,3.301782953712973e-06,-1.2228825596594106e-07,-1.1385458265067427e-07,2.561717074811735e-25,4.216836657633394e-09,-1.6543612251060553e-24,2.525954187149182e-06,4.632211430296955e-23,-2.6588992341203266e-07,1.1531137304213208e-25,-1.6543612251060553e-24,4.5843089324648645e-09,55.0,60.0,0.007332020904868841,-0.0002804701798595488,-0.00025785161415115,2.8480292257881956e-06,3.19352784572402e-06,2.4037306047830498e-06,-0.0002804701798595488,2.2102320144767873e-05,3.19352784572402e-06,-3.2241840131064237e-07,-1.1827880541659397e-07,7.279189390466644e-23,-0.00025785161415115,3.19352784572402e-06,1.860431621025782e-05,1.6136672042215053e-23,-1.0825517904322624e-07,-2.4866179160198953e-07,2.8480292257881956e-06,-3.2241840131064237e-07,1.6136672042215053e-23,5.970711036695775e-09,-5.074866941917407e-25,-8.88456520435109e-27,3.19352784572402e-06,-1.1827880541659397e-07,-1.0825517904322624e-07,-5.074866941917407e-25,4.009450993436303e-09,-2.68833699079734e-24,2.4037306047830498e-06,7.279189390466644e-23,-2.4866179160198953e-07,-8.88456520435109e-27,-2.68833699079734e-24,4.214606441621527e-09,55.0,61.0,0.007215878926217556,-0.0002759229682851583,-0.0002496445958968252,2.801340087899007e-06,3.0905107450962532e-06,2.289267285959795e-06,-0.0002759229682851583,2.1741861928603612e-05,3.0905107450962532e-06,-3.1713284442957956e-07,-1.1446336145581881e-07,-1.9852334701272664e-23,-0.0002496445958968252,3.0905107450962532e-06,1.7711361579131335e-05,-1.536215736141639e-23,-1.0301702246806599e-07,-2.3280684047222167e-07,2.801340087899007e-06,-3.1713284442957956e-07,-1.536215736141639e-23,5.872830666220352e-09,2.9614817062557323e-25,2.019277457675752e-25,3.0905107450962532e-06,-1.1446336145581881e-07,-1.0301702246806599e-07,2.9614817062557323e-25,3.815445293042785e-09,6.203854594147708e-25,2.289267285959795e-06,-1.9852334701272664e-23,-2.3280684047222167e-07,2.019277457675752e-25,6.203854594147708e-25,3.880114007870361e-09,55.0,62.0,0.00710335886105895,-0.000271520868409425,-0.00024182327615562826,2.7561573006096296e-06,2.992399231516174e-06,2.181957825087011e-06,-0.000271520868409425,2.1392974304035306e-05,2.992399231516174e-06,-3.1201778938338975e-07,-1.1082960327257751e-07,4.632211430296955e-23,-0.00024182327615562826,2.992399231516174e-06,1.6874659195309505e-05,7.318216863802824e-24,-9.811144963123297e-08,-2.1819577966653014e-07,2.7561573006096296e-06,-3.1201778938338975e-07,7.318216863802824e-24,5.7781073259377536e-09,-2.493442149540988e-25,8.77023969173633e-27,2.992399231516174e-06,-1.1082960327257751e-07,-9.811144963123297e-08,-2.493442149540988e-25,3.633757517107483e-09,-1.4475660719677984e-24,2.181957825087011e-06,4.632211430296955e-23,-2.1819577966653014e-07,8.77023969173633e-27,-1.4475660719677984e-24,3.576980045494338e-09,55.0,63.0,0.006994294002652168,-0.00026725701172836125,-0.0002343638479942456,2.712408786464948e-06,2.898886805269285e-06,2.0812519778701244e-06,-0.00026725701172836125,2.1055107936263084e-05,2.898886805269285e-06,-3.0706513598488527e-07,-1.0736617639395263e-07,-3.3087224502121107e-23,-0.0002343638479942456,2.898886805269285e-06,1.6089845303213224e-05,-0.0,-9.351247598488044e-08,-2.0471331652061053e-07,2.712408786464948e-06,-3.0706513598488527e-07,-0.0,5.6863913577842595e-09,-2.0679515313825692e-25,0.0,2.898886805269285e-06,-1.0736617639395263e-07,-9.351247598488044e-08,-2.0679515313825692e-25,3.4634251022680473e-09,1.0339757656912846e-24,2.0812519778701244e-06,-3.3087224502121107e-23,-2.0471331652061053e-07,0.0,1.0339757656912846e-24,3.3018277001417573e-09,55.0,64.0,0.006888527888804674,-0.00026312502450309694,-0.00022724435257259756,2.6700272428570315e-06,2.8096903861296596e-06,1.986649749596836e-06,-0.00026312502450309694,2.0727748051285744e-05,2.8096903861296596e-06,-3.0226723879422934e-07,-1.0406260742001905e-07,-3.3087224502121107e-23,-0.00022724435257259756,2.8096903861296596e-06,1.5352961781900376e-05,-1.3316571614418647e-23,-8.919651861560851e-08,-1.9225642233777762e-07,2.6700272428570315e-06,-3.0226723879422934e-07,-1.3316571614418647e-23,5.597541541391138e-09,4.909559660114147e-25,6.335828804919887e-26,2.8096903861296596e-06,-1.0406260742001905e-07,-8.919651861560851e-08,4.909559660114147e-25,3.3035747470933075e-09,8.271806125530277e-25,1.986649749596836e-06,-3.3087224502121107e-23,-1.9225642233777762e-07,6.335828804919887e-26,8.271806125530277e-25,3.0516893456677963e-09,56.0,3.0,0.08767068386077881,-0.004537205211818218,-0.05263157933950424,5.4014344641473144e-05,0.000939849647693336,0.008928571827709675,-0.004537205211818218,0.00038704826147295535,0.000939849647693336,-6.001594101689989e-06,-3.417635161895305e-05,2.2768245622195593e-18,-0.05263157933950424,0.000939849647693336,0.14191728830337524,6.66110517336539e-20,-0.000939849647693336,-0.0535714291036129,5.4014344641473144e-05,-6.001594101689989e-06,6.66110517336539e-20,1.091198882363642e-07,-5.57633682240778e-22,-2.5144568405727312e-20,0.000939849647693336,-3.417635161895305e-05,-0.000939849647693336,-5.57633682240778e-22,3.417635161895305e-05,-4.87890977618477e-19,0.008928571827709675,2.2768245622195593e-18,-0.0535714291036129,-2.5144568405727312e-20,-4.87890977618477e-19,0.02678571455180645,56.0,4.0,0.07320132106542587,-0.003543881233781576,-0.034257519990205765,4.051076030009426e-05,0.0005639097653329372,0.004464285913854837,-0.003543881233781576,0.00029541263938881457,0.0005639097653329372,-4.501195689954329e-06,-2.0505809516180307e-05,1.2468324983583301e-18,-0.034257519990205765,0.0005639097653329372,0.054088346660137177,2.3359029583284844e-20,-0.0003759398532565683,-0.013392857275903225,4.051076030009426e-05,-4.501195689954329e-06,2.3359029583284844e-20,8.183992150634367e-08,2.5838249115413152e-22,-9.269219538794437e-21,0.0005639097653329372,-2.0505809516180307e-05,-0.0003759398532565683,2.5838249115413152e-22,1.3670540283783339e-05,-4.0657581468206416e-19,0.004464285913854837,1.2468324983583301e-18,-0.013392857275903225,-9.269219538794437e-21,-4.0657581468206416e-19,0.004464285913854837,56.0,5.0,0.06287362426519394,-0.0029102929402142763,-0.024113856256008148,3.2408606784883887e-05,0.0003759398532565683,0.0025510203558951616,-0.0029102929402142763,0.00023906421847641468,0.0003759398532565683,-3.6009564610139932e-06,-1.3670540283783339e-05,1.4907779871675686e-19,-0.024113856256008148,0.0003759398532565683,0.02736305072903633,1.8732777246131252e-21,-0.00018796992662828416,-0.005102040711790323,3.2408606784883887e-05,-3.6009564610139932e-06,1.8732777246131252e-21,6.547193720507494e-08,-1.1636155260246228e-22,2.131064947639064e-22,0.0003759398532565683,-1.3670540283783339e-05,-0.00018796992662828416,-1.1636155260246228e-22,6.8352701418916695e-06,-1.0164395367051604e-19,0.0025510203558951616,1.4907779871675686e-19,-0.005102040711790323,2.131064947639064e-22,-1.0164395367051604e-19,0.0012755101779475808,56.0,6.0,0.0551135390996933,-0.00246999878436327,-0.01790749281644821,2.7007172320736572e-05,0.0002685284707695246,0.0015943878097459674,-0.00246999878436327,0.00020084762945771217,0.0002685284707695246,-3.0007970508449944e-06,-9.764671631273814e-06,1.6263032587282567e-19,-0.01790749281644821,0.0002685284707695246,0.015932129696011543,-7.677700715203166e-22,-0.00010741138248704374,-0.00239158165641129,2.7007172320736572e-05,-3.0007970508449944e-06,-7.677700715203166e-22,5.45599441181821e-08,-6.872530331647764e-23,4.257170547648057e-22,0.0002685284707695246,-9.764671631273814e-06,-0.00010741138248704374,-6.872530331647764e-23,3.905868652509525e-06,-6.437450399132683e-20,0.0015943878097459674,1.6263032587282567e-19,-0.00239158165641129,4.257170547648057e-22,-6.437450399132683e-20,0.00047831633128225803,56.0,7.0,0.04906393215060234,-0.002145912731066346,-0.013829216361045837,2.3149004846345633e-05,0.00020139635307714343,0.0010629252064973116,-0.002145912731066346,0.00017320133338216692,0.00020139635307714343,-2.5721117253851844e-06,-7.32350372345536e-06,2.1006417091906648e-19,-0.013829216361045837,0.00020139635307714343,0.010136949829757214,2.484445370856115e-20,-6.713211769238114e-05,-0.0012755101779475808,2.3149004846345633e-05,-2.5721117253851844e-06,2.484445370856115e-20,4.6765666894543756e-08,-8.86928621970105e-23,-3.3306607098516305e-21,0.00020139635307714343,-7.32350372345536e-06,-6.713211769238114e-05,-8.86928621970105e-23,2.4411679078184534e-06,-8.470329472543003e-22,0.0010629252064973116,2.1006417091906648e-19,-0.0012755101779475808,-3.3306607098516305e-21,-8.470329472543003e-22,0.00021258502965793014,56.0,8.0,0.044213443994522095,-0.001897253911010921,-0.011004072614014149,2.025538015004713e-05,0.00015664160309825093,0.0007440476329065859,-0.001897253911010921,0.000152263164636679,0.00015664160309825093,-2.2505978449771646e-06,-5.696058451576391e-06,-8.131516293641283e-20,-0.011004072614014149,0.00015664160309825093,0.006864259019494057,-1.0859407219561576e-20,-4.475474270293489e-05,-0.0007440476329065859,2.025538015004713e-05,-2.2505978449771646e-06,-1.0859407219561576e-20,4.0919960753171836e-08,2.2248856266010647e-22,6.54022993284374e-22,0.00015664160309825093,-5.696058451576391e-06,-4.475474270293489e-05,2.2248856266010647e-22,1.627445271878969e-06,1.2281977735187355e-20,0.0007440476329065859,-8.131516293641283e-20,-0.0007440476329065859,6.54022993284374e-22,1.2281977735187355e-20,0.00010629251482896507,56.0,9.0,0.04023689031600952,-0.0017003716202452779,-0.008965595625340939,1.8004782759817317e-05,0.0001253132795682177,0.0005411255406215787,-0.0017003716202452779,0.00013585135457105935,0.0001253132795682177,-2.0005313672299962e-06,-4.556846761261113e-06,3.3881317890172014e-21,-0.008965595625340939,0.0001253132795682177,0.004869723226875067,2.442372937339815e-22,-3.1328319892054424e-05,-0.00046382189611904323,1.8004782759817317e-05,-2.0005313672299962e-06,2.442372937339815e-22,3.637329726302596e-08,-3.537120401467664e-23,1.365202840347664e-23,0.0001253132795682177,-4.556846761261113e-06,-3.1328319892054424e-05,-3.537120401467664e-23,1.1392116903152782e-06,-4.235164736271502e-22,0.0005411255406215787,3.3881317890172014e-21,-0.00046382189611904323,1.365202840347664e-23,-4.235164736271502e-22,5.7977737014880404e-05,56.0,10.0,0.03691723570227623,-0.001540587400086224,-0.007446172181516886,1.6204303392441943e-05,0.00010252904758090153,0.000405844155466184,-0.001540587400086224,0.00012263904500287026,0.00010252904758090153,-1.8004782305069966e-06,-3.728329147634213e-06,3.049318610115481e-20,-0.007446172181516886,0.00010252904758090153,0.003582464763894677,4.4426376282124266e-21,-2.2784233806305565e-05,-0.0003043831093236804,1.6204303392441943e-05,-1.8004782305069966e-06,4.4426376282124266e-21,3.273596860253747e-08,-6.777661919185885e-23,-2.998580712473639e-22,0.00010252904758090153,-3.728329147634213e-06,-2.2784233806305565e-05,-6.777661919185885e-23,8.285175567834813e-07,-1.4823076576950256e-21,0.000405844155466184,3.049318610115481e-20,-0.0003043831093236804,-2.998580712473639e-22,-1.4823076576950256e-21,3.382034628884867e-05,56.0,11.0,0.034103941172361374,-0.001408301293849945,-0.006283190567046404,1.4731185729033314e-05,8.544087177142501e-05,0.00031218782532960176,-0.001408301293849945,0.0001117724968935363,8.544087177142501e-05,-1.636798401705164e-06,-3.1069409942574566e-06,1.1180834903756764e-19,-0.006283190567046404,8.544087177142501e-05,0.002713514491915703,9.895001867029976e-21,-1.7088175809476525e-05,-0.00020812520233448595,1.4731185729033314e-05,-1.636798401705164e-06,9.895001867029976e-21,2.9759970487930332e-08,-1.271306399184326e-22,-5.44572518543921e-22,8.544087177142501e-05,-3.1069409942574566e-06,-1.7088175809476525e-05,-1.271306399184326e-22,6.213881533767562e-07,-1.4928955695357043e-20,0.00031218782532960176,1.1180834903756764e-19,-0.00020812520233448595,-5.44572518543921e-22,-1.4928955695357043e-20,2.0812520233448595e-05,56.0,12.0,0.03168926760554314,-0.001296967500820756,-0.005373151507228613,1.3503586160368286e-05,7.229612674564123e-05,0.0002452904300298542,-0.001296967500820756,0.00010267720062984154,7.229612674564123e-05,-1.5003985254224972e-06,-2.6289499146514572e-06,7.284483346386983e-20,-0.005373151507228613,7.229612674564123e-05,0.0021052726078778505,1.1625537217705502e-20,-1.3144749573257286e-05,-0.0001471742580179125,1.3503586160368286e-05,-1.5003985254224972e-06,1.1625537217705502e-20,2.727997205909105e-08,-7.830066106711856e-23,-8.461235231592126e-22,7.229612674564123e-05,-2.6289499146514572e-06,-1.3144749573257286e-05,-7.830066106711856e-23,4.779909090757428e-07,-4.0234064994579266e-21,0.0002452904300298542,7.284483346386983e-20,-0.0001471742580179125,-8.461235231592126e-22,-4.0234064994579266e-21,1.3379477422859054e-05,56.0,13.0,0.029594045132398605,-0.0012019675923511386,-0.0046476079151034355,1.246484953298932e-05,6.196810863912106e-05,0.00019623234402388334,-0.0012019675923511386,9.495229460299015e-05,6.196810863912106e-05,-1.3849831930201617e-06,-2.253385673611774e-06,1.3552527156068805e-20,-0.0046476079151034355,6.196810863912106e-05,0.0016665664734318852,4.6235203793101796e-21,-1.0328018106520176e-05,-0.00010703581938287243,1.246484953298932e-05,-1.3849831930201617e-06,4.6235203793101796e-21,2.518151376307287e-08,-2.5997810432990396e-23,-3.010167501449525e-22,6.196810863912106e-05,-2.253385673611774e-06,-1.0328018106520176e-05,-2.5997810432990396e-23,3.7556429788310197e-07,1.0058516248644817e-21,0.00019623234402388334,1.3552527156068805e-20,-0.00010703581938287243,-3.010167501449525e-22,1.0058516248644817e-21,8.91965191840427e-06,56.0,14.0,0.027758782729506493,-0.001119948923587799,-0.004059814848005772,1.1574502423172817e-05,5.370569124352187e-05,0.0001594387722434476,-0.001119948923587799,8.830948354443535e-05,5.370569124352187e-05,-1.2860558626925922e-06,-1.9529343262547627e-06,-1.7787691892340307e-20,-0.004059814848005772,5.370569124352187e-05,0.0013420613249763846,-3.619064621729381e-21,-8.262414667115081e-06,-7.97193861217238e-05,1.1574502423172817e-05,-1.2860558626925922e-06,-3.619064621729381e-21,2.3382833447271878e-08,6.631985815717979e-23,1.4272706372515067e-22,5.370569124352187e-05,-1.9529343262547627e-06,-8.262414667115081e-06,6.631985815717979e-23,3.004514326221397e-07,1.0587911840678754e-21,0.0001594387722434476,-1.7787691892340307e-20,-7.97193861217238e-05,1.4272706372515067e-22,1.0587911840678754e-21,6.1322607507463545e-06,56.0,15.0,0.026137907058000565,-0.0010484184604138136,-0.003576957155019045,1.0802868928294629e-05,4.699248165707104e-05,0.00013130252773407847,-0.0010484184604138136,8.253610576502979e-05,4.699248165707104e-05,-1.2003188203379977e-06,-1.7088175354729174e-06,2.541098841762901e-21,-0.003576957155019045,4.699248165707104e-05,0.0010968050919473171,1.571212811827962e-21,-6.713211405440234e-06,-6.0601163568207994e-05,1.0802868928294629e-05,-1.2003188203379977e-06,1.571212811827962e-21,2.1823979068358312e-08,-2.730247592969922e-23,-5.747233503213198e-23,4.699248165707104e-05,-1.7088175354729174e-06,-6.713211405440234e-06,-2.730247592969922e-23,2.4411679078184534e-07,7.146840492458159e-22,0.00013130252773407847,2.541098841762901e-21,-6.0601163568207994e-05,-5.747233503213198e-23,7.146840492458159e-22,4.328654540586285e-06,56.0,16.0,0.02469591423869133,-0.0009854837553575635,-0.0031754476949572563,1.0127690075023565e-05,4.1463954403297976e-05,0.00010941876826109365,-0.0009854837553575635,7.747183553874493e-05,4.1463954403297976e-05,-1.1252989224885823e-06,-1.507780098108924e-06,-2.286988957586611e-20,-0.0031754476949572563,4.1463954403297976e-05,0.000907961861230433,-5.2350112237593044e-21,-5.528527253773063e-06,-4.689375782618299e-05,1.0127690075023565e-05,-1.1252989224885823e-06,-5.2350112237593044e-21,2.0459980376585918e-08,6.923607497539014e-23,2.1570201122515184e-22,4.1463954403297976e-05,-1.507780098108924e-06,-5.528527253773063e-06,6.923607497539014e-23,2.0103735209886509e-07,1.1117307432712692e-21,0.00010941876826109365,-2.286988957586611e-20,-4.689375782618299e-05,2.1570201122515184e-22,1.1117307432712692e-21,3.1262504762707977e-06,56.0,17.0,0.023404734209179878,-0.0009296822245232761,-0.00283797737210989,9.531943760521244e-06,3.685684714582749e-05,9.214212332153693e-05,-0.0009296822245232761,7.299350545508787e-05,3.685684714582749e-05,-1.0591048749120091e-06,-1.340249013992434e-06,1.3129010682441655e-20,-0.00283797737210989,3.685684714582749e-05,0.0007601724937558174,4.4451983338196464e-21,-4.607105893228436e-06,-3.685684714582749e-05,9.531943760521244e-06,-1.0591048749120091e-06,4.4451983338196464e-21,1.9256450656257584e-08,-2.985578517707169e-23,-2.1483095732449404e-22,3.685684714582749e-05,-1.340249013992434e-06,-4.607105893228436e-06,-2.985578517707169e-23,1.6753112674905424e-07,-1.0587911840678754e-22,9.214212332153693e-05,1.3129010682441655e-20,-3.685684714582749e-05,-2.1483095732449404e-22,-1.0587911840678754e-22,2.303552946614218e-06,56.0,18.0,0.022241875529289246,-0.0008798652561381459,-0.0025516091845929623,9.002391379908659e-06,3.2977179216686636e-05,7.832080154912546e-05,-0.0008798652561381459,6.900492735439911e-05,3.2977179216686636e-05,-1.0002656836149981e-06,-1.1991701285296585e-06,2.117582368135751e-21,-0.0025516091845929623,3.2977179216686636e-05,0.0006428428459912539,-2.931719638937492e-22,-3.879668383888202e-06,-2.937030149041675e-05,9.002391379908659e-06,-1.0002656836149981e-06,-2.931719638937492e-22,1.818664863151298e-08,-2.078562657190878e-23,5.686588401174703e-23,3.2977179216686636e-05,-1.1991701285296585e-06,-3.879668383888202e-06,-2.078562657190878e-23,1.4107884283021122e-07,-4.1028158382630173e-22,7.832080154912546e-05,2.117582368135751e-21,-2.937030149041675e-05,5.686588401174703e-23,-4.1028158382630173e-22,1.7276647668040823e-06,56.0,19.0,0.021189114078879356,-0.0008351186406798661,-0.002306518144905567,8.528581020073034e-06,2.9679462386411615e-05,6.713211769238114e-05,-0.0008351186406798661,6.54298928566277e-05,2.9679462386411615e-05,-9.476200943936419e-07,-1.0792531384140602e-06,2.329340604949326e-20,-0.002306518144905567,2.9679462386411615e-05,0.0005485019646584988,5.417784615700495e-21,-3.2977179671433987e-06,-2.3693688490311615e-05,8.528581020073034e-06,-9.476200943936419e-07,5.417784615700495e-21,1.7229456972245316e-08,-4.9901103654754e-23,-2.1356706331481066e-22,2.9679462386411615e-05,-1.0792531384140602e-06,-3.2977179671433987e-06,-4.9901103654754e-23,1.1991701853730774e-07,-9.529120656610879e-22,6.713211769238114e-05,2.329340604949326e-20,-2.3693688490311615e-05,-2.1356706331481066e-22,-9.529120656610879e-22,1.3163160019757925e-06,56.0,20.0,0.020231515169143677,-0.0007947053527459502,-0.002095132367685437,8.102151696220972e-06,2.6852845621760935e-05,5.7977737014880404e-05,-0.0007947053527459502,6.220722571015358e-05,2.6852845621760935e-05,-9.002391152534983e-07,-9.764671631273814e-07,-1.2705494208814505e-20,-0.002095132367685437,2.6852845621760935e-05,0.00047177710803225636,-1.7150919532626463e-21,-2.8266154004086275e-06,-1.932591294462327e-05,8.102151696220972e-06,-9.002391152534983e-07,-1.7150919532626463e-21,1.6367984301268734e-08,1.6678824587937245e-23,5.371348854940076e-23,2.6852845621760935e-05,-9.764671631273814e-07,-2.8266154004086275e-06,1.6678824587937245e-23,1.0278601791924302e-07,9.132073962585426e-22,5.7977737014880404e-05,-1.2705494208814505e-20,-1.932591294462327e-05,5.371348854940076e-23,9.132073962585426e-22,1.0171532949243556e-06,56.0,21.0,0.019356735050678253,-0.0007580246892757714,-0.0019115405157208443,7.716334948781878e-06,2.4411678168689832e-05,5.041542317485437e-05,-0.0007580246892757714,5.92872456763871e-05,2.4411678168689832e-05,-8.573705940762011e-07,-8.876974106897251e-07,2.964615315390051e-21,-0.0019115405157208443,2.4411678168689832e-05,0.00040873640682548285,-6.527233544093533e-22,-2.4411679078184534e-06,-1.592065927980002e-05,7.716334948781878e-06,-8.573705940762011e-07,-6.527233544093533e-22,1.5588556223633532e-08,-9.689606897822276e-24,4.6301613385764666e-23,2.4411678168689832e-05,-8.876974106897251e-07,-2.4411679078184534e-06,-9.689606897822276e-24,8.876973822680156e-08,-5.161607022330893e-22,5.041542317485437e-05,2.964615315390051e-21,-1.592065927980002e-05,4.6301613385764666e-23,-5.161607022330893e-22,7.960330208334199e-07,56.0,22.0,0.01855447143316269,-0.0007245821761898696,-0.0017510736361145973,7.365592864516657e-06,2.2288922991720028e-05,4.411349436850287e-05,-0.0007245821761898696,5.662921103066765e-05,2.2288922991720028e-05,-8.18399200852582e-07,-8.105063216135022e-07,1.9058241313221758e-21,-0.0017510736361145973,2.2288922991720028e-05,0.000356456934241578,3.059648643957332e-22,-2.122754722222453e-06,-1.3234048310550861e-05,7.365592864516657e-06,-8.18399200852582e-07,3.059648643957332e-22,1.4879985243965166e-08,-4.175135482164495e-24,-1.0679845059484487e-23,2.2288922991720028e-05,-8.105063216135022e-07,-2.122754722222453e-06,-4.175135482164495e-24,7.719107486536814e-08,-1.4558378780933287e-22,4.411349436850287e-05,1.9058241313221758e-21,-1.3234048310550861e-05,-1.0679845059484487e-23,-1.4558378780933287e-22,6.301928010543634e-07,56.0,23.0,0.01781606860458851,-0.0006939669256098568,-0.0016100032953545451,7.0453493208333384e-06,2.0431512893992476e-05,3.8819875044282526e-05,-0.0006939669256098568,5.4199375881580636e-05,2.0431512893992476e-05,-7.828165848877688e-07,-7.429641186718072e-07,1.2705494208814505e-20,-0.0016100032953545451,2.0431512893992476e-05,0.0003127348318230361,3.2509474387169763e-21,-1.8574103251012275e-06,-1.1091393389506266e-05,7.0453493208333384e-06,-7.828165848877688e-07,3.2509474387169763e-21,1.4233028977628237e-08,-3.0081061763497463e-23,-1.0529874397248558e-22,2.0431512893992476e-05,-7.429641186718072e-07,-1.8574103251012275e-06,-3.0081061763497463e-23,6.754219583626764e-08,-5.029258124322408e-22,3.8819875044282526e-05,1.2705494208814505e-20,-1.1091393389506266e-05,-1.0529874397248558e-22,-5.029258124322408e-22,5.041542294748069e-07,56.0,24.0,0.01713418960571289,-0.0006658348720520735,-0.0014853238826617599,6.751793080184143e-06,1.8796992662828416e-05,3.4340660931775346e-05,-0.0006658348720520735,5.196954953134991e-05,1.8796992662828416e-05,-7.501992627112486e-07,-6.835269914517994e-07,2.964615315390051e-21,-0.0014853238826617599,1.8796992662828416e-05,0.0002758868795353919,1.1999944083378543e-21,-1.6345211406587623e-06,-9.365634468849748e-06,6.751793080184143e-06,-7.501992627112486e-07,1.1999944083378543e-21,1.3639986029545526e-08,-1.849394777691829e-23,-2.9495837412350203e-23,1.8796992662828416e-05,-6.835269914517994e-07,-1.6345211406587623e-06,-1.849394777691829e-23,5.94371307727215e-08,-3.3087224502121107e-23,3.4340660931775346e-05,2.964615315390051e-21,-9.365634468849748e-06,-2.9495837412350203e-23,-3.3087224502121107e-23,4.0720149740991474e-07,56.0,25.0,0.016502585262060165,-0.0006398955010809004,-0.0013745903270319104,6.481721356976777e-06,1.73510707099922e-05,3.052503234357573e-05,-0.0006398955010809004,4.9916005082195625e-05,1.73510707099922e-05,-7.201912808341149e-07,-6.309480227173481e-07,1.0164395367051604e-20,-0.0013745903270319104,1.73510707099922e-05,0.0002446123689878732,3.718863881854547e-21,-1.445922521270404e-06,-7.963051757542416e-06,6.481721356976777e-06,-7.201912808341149e-07,3.718863881854547e-21,1.3094386908107936e-08,-4.7835660701050034e-23,-9.062055425944478e-23,1.73510707099922e-05,-6.309480227173481e-07,-1.445922521270404e-06,-4.7835660701050034e-23,5.2579000708874446e-08,-3.8381180422460484e-22,3.052503234357573e-05,1.0164395367051604e-20,-7.963051757542416e-06,-9.062055425944478e-23,-3.8381180422460484e-22,3.317938137570309e-07,56.0,26.0,0.015915891155600548,-0.0006159020704217255,-0.0012757971417158842,6.23242476649466e-06,1.6065805539255962e-05,2.7254491214989685e-05,-0.0006159020704217255,4.801862814929336e-05,1.6065805539255962e-05,-6.924915965100809e-07,-5.842111363563163e-07,-2.329340604949326e-21,-0.0012757971417158842,1.6065805539255962e-05,0.00021789535821881145,-4.715133964298891e-22,-1.285264488615212e-06,-6.813622803747421e-06,6.23242476649466e-06,-6.924915965100809e-07,-4.715133964298891e-22,1.2590756881536436e-08,4.876916398640875e-24,1.0533089320981696e-23,1.6065805539255962e-05,-5.842111363563163e-07,-1.285264488615212e-06,4.876916398640875e-24,4.673688991374547e-08,1.522012327097571e-22,2.7254491214989685e-05,-2.329340604949326e-21,-6.813622803747421e-06,1.0533089320981696e-23,1.522012327097571e-22,2.725449235185806e-07,56.0,27.0,0.015369482338428497,-0.0005936434026807547,-0.0011872868053615093,6.001594101689989e-06,1.4918247870809864e-05,2.4435061277472414e-05,-0.0005936434026807547,4.626025111065246e-05,1.4918247870809864e-05,-6.668437890766654e-07,-5.424817572929896e-07,-2.4352197233561135e-21,-0.0011872868053615093,1.4918247870809864e-05,0.00019493441504891962,-2.3621353072060166e-22,-1.1475575547592598e-06,-5.864414561074227e-06,6.001594101689989e-06,-6.668437890766654e-07,-2.3621353072060166e-22,1.212443212494918e-08,-2.8294379771162804e-24,7.413170473242466e-24,1.4918247870809864e-05,-5.424817572929896e-07,-1.1475575547592598e-06,-2.8294379771162804e-24,4.172936485247192e-08,1.7867101231145398e-22,2.4435061277472414e-05,-2.4352197233561135e-21,-5.864414561074227e-06,7.413170473242466e-24,1.7867101231145398e-22,2.2555441603344661e-07,56.0,28.0,0.01485934667289257,-0.0005729378899559379,-0.0011076799128204584,5.787251211586408e-06,1.388940290780738e-05,2.199155460402835e-05,-0.0005729378899559379,4.46261401521042e-05,1.388940290780738e-05,-6.430279313462961e-07,-5.050692379882094e-07,2.117582368135751e-22,-0.0011076799128204584,1.388940290780738e-05,0.00017509155441075563,-2.56707783628558e-22,-1.0288447356288088e-06,-5.074974069430027e-06,5.787251211586408e-06,-6.430279313462961e-07,-2.56707783628558e-22,1.1691416723635939e-08,1.372637696607191e-23,-4.384152462042307e-24,1.388940290780738e-05,-5.050692379882094e-07,-1.0288447356288088e-06,1.372637696607191e-23,3.7412533515635005e-08,-2.3161057151484775e-23,2.199155460402835e-05,2.117582368135751e-22,-5.074974069430027e-06,-4.384152462042307e-24,-2.3161057151484775e-23,1.879620157296813e-07,56.0,29.0,0.01438198797404766,-0.0005536284297704697,-0.0010358209256082773,5.587690793618094e-06,1.2963442713953555e-05,1.9863340639858507e-05,-0.0005536284297704697,4.3103562347823754e-05,1.2963442713953555e-05,-6.208545642039098e-07,-4.71397925139172e-07,1.376428539288238e-21,-0.0010358209256082773,1.2963442713953555e-05,0.00015785465075168759,9.17110755748223e-22,-9.259601938538253e-07,-4.414075647218851e-06,5.587690793618094e-06,-6.208545642039098e-07,9.17110755748223e-22,1.1288264545328275e-08,3.9851280779502464e-24,-3.4862350865485637e-23,1.2963442713953555e-05,-4.71397925139172e-07,-9.259601938538253e-07,3.9851280779502464e-24,3.367128087461424e-08,4.301339185275744e-23,1.9863340639858507e-05,1.376428539288238e-21,-4.414075647218851e-06,-3.4862350865485637e-23,4.301339185275744e-23,1.576455588292447e-07,56.0,30.0,0.013934346847236156,-0.0005355783505365252,-0.0009707357967272401,5.4014344641473144e-06,1.212709230458131e-05,1.800115205696784e-05,-0.0005355783505365252,4.16814764321316e-05,1.212709230458131e-05,-6.001594101689989e-07,-4.4098516127633047e-07,1.2705494208814505e-21,-0.0009707357967272401,1.212709230458131e-05,0.00014280929462984204,-8.13240569455333e-22,-8.363511483366892e-07,-3.857389856420923e-06,5.4014344641473144e-06,-6.001594101689989e-07,-8.13240569455333e-22,1.0911989534179156e-08,-4.531230844655333e-24,3.3043676224709286e-23,1.212709230458131e-05,-4.4098516127633047e-07,-8.363511483366892e-07,-4.531230844655333e-24,3.041277096826889e-08,-1.6874484496081765e-22,1.800115205696784e-05,1.2705494208814505e-21,-3.857389856420923e-06,3.3043676224709286e-23,-1.6874484496081765e-22,1.330134438148889e-07,56.0,31.0,0.01351372990757227,-0.0005186683847568929,-0.0009115990251302719,5.2271948334237095e-06,1.1369148523954209e-05,1.636468368815258e-05,-0.0005186683847568929,4.035024903714657e-05,1.1369148523954209e-05,-5.807993943562906e-07,-4.134235780384188e-07,6.352747104407253e-22,-0.0009115990251302719,1.1369148523954209e-05,0.00012961779430042952,5.371657078672964e-22,-7.579432690363319e-07,-3.3857966172945453e-06,5.2271948334237095e-06,-5.807993943562906e-07,5.371657078672964e-22,1.0559989327418862e-08,-6.424728547861444e-24,-1.2395032193548513e-23,1.1369148523954209e-05,-4.134235780384188e-07,-7.579432690363319e-07,-6.424728547861444e-24,2.7561572579770655e-08,1.6543612251060553e-23,1.636468368815258e-05,6.352747104407253e-22,-3.3857966172945453e-06,-1.2395032193548513e-23,1.6543612251060553e-23,1.1285988676945635e-07,56.0,32.0,0.013117763213813305,-0.0005027937586419284,-0.0008577069966122508,5.063845037511783e-06,1.0680108971428126e-05,1.4920740795787424e-05,-0.0005027937586419284,3.9101440052036196e-05,1.0680108971428126e-05,-5.626494612442912e-07,-3.883676242821821e-07,-5.823351512373315e-21,-0.0008577069966122508,1.0680108971428126e-05,0.00011800305219367146,-2.8327187817790567e-21,-6.890393251524074e-07,-2.98414829558169e-06,5.063845037511783e-06,-5.626494612442912e-07,-2.8327187817790567e-21,1.0229990188292959e-08,2.727874383822655e-23,6.279707672261415e-23,1.0680108971428126e-05,-3.883676242821821e-07,-6.890393251524074e-07,2.727874383822655e-23,2.5055975072518777e-08,1.1580528575742387e-22,1.4920740795787424e-05,-5.823351512373315e-21,-2.98414829558169e-06,6.279707672261415e-23,1.1580528575742387e-22,9.626284480646063e-08,56.0,33.0,0.012744340114295483,-0.0004878621839452535,-0.0008084573782980442,4.910395091428654e-06,1.005186732072616e-05,1.3641820260090753e-05,-0.0004878621839452535,3.792762436205521e-05,1.005186732072616e-05,-5.455994482872484e-07,-3.6552245319398935e-07,-0.0,-0.0008084573782980442,1.005186732072616e-05,0.00010773621761472896,-2.6469779601696886e-23,-6.28241707545385e-07,-2.6403522497275844e-06,4.910395091428654e-06,-5.455994482872484e-07,-2.6469779601696886e-23,9.919990162643444e-09,8.271806125530277e-25,-0.0,1.005186732072616e-05,-3.6552245319398935e-07,-6.28241707545385e-07,8.271806125530277e-25,2.2845153324624334e-08,-0.0,1.3641820260090753e-05,-0.0,-2.6403522497275844e-06,-0.0,-0.0,8.251100780398701e-08,56.0,34.0,0.0123915895819664,-0.0004737920535262674,-0.0007633316563442349,4.765971880260622e-06,9.477475032326765e-06,1.250500190508319e-05,-0.0004737920535262674,3.682224269141443e-05,9.477475032326765e-06,-5.295524374560046e-07,-3.4463545262042317e-07,-0.0,-0.0007633316563442349,9.477475032326765e-06,9.862722072284669e-05,0.0,-5.743924589296512e-07,-2.3446878003596794e-06,4.765971880260622e-06,-5.295524374560046e-07,0.0,9.628225328128792e-09,0.0,-0.0,9.477475032326765e-06,-3.4463545262042317e-07,-5.743924589296512e-07,0.0,2.0886997020852505e-08,-0.0,1.250500190508319e-05,-0.0,-2.3446878003596794e-06,-0.0,-0.0,7.105114718797267e-08,56.0,35.0,0.012057841755449772,-0.00046051086974330246,-0.0007218819228000939,4.629800969269127e-06,8.950948540586978e-06,1.1491082659631502e-05,-0.00046051086974330246,3.577947791200131e-05,8.950948540586978e-06,-5.144223678144044e-07,-3.254890543757938e-07,-5.637889783441327e-21,-0.0007218819228000939,8.950948540586978e-06,9.05172637430951e-05,-4.028496406723255e-21,-5.265263780529494e-07,-2.089287818307639e-06,4.629800969269127e-06,-5.144223678144044e-07,-4.028496406723255e-21,9.353133378908751e-09,2.3161057151484775e-23,9.123688812925033e-23,8.950948540586978e-06,-3.254890543757938e-07,-5.265263780529494e-07,2.3161057151484775e-23,1.9146414231840936e-08,2.72702904047662e-23,1.1491082659631502e-05,-5.637889783441327e-21,-2.089287818307639e-06,9.123688812925033e-23,2.72702904047662e-23,6.14496400430653e-08,56.0,36.0,0.01174159999936819,-0.0004479541094042361,-0.00068371940869838,4.501195689954329e-06,8.467113730148412e-06,1.0583892617432866e-05,-0.0004479541094042361,3.479415681795217e-05,8.467113730148412e-06,-5.001328418074991e-07,-3.0789504990025307e-07,-0.0,-0.00068371940869838,8.467113730148412e-06,8.327299292432144e-05,5.293955920339377e-23,-4.838350946556602e-07,-1.8677457092053373e-06,4.501195689954329e-06,-5.001328418074991e-07,5.293955920339377e-23,9.09332431575649e-09,-1.6543612251060553e-24,-0.0,8.467113730148412e-06,-3.0789504990025307e-07,-4.838350946556602e-07,-1.6543612251060553e-24,1.7594002699183875e-08,-0.0,1.0583892617432866e-05,-0.0,-1.8677457092053373e-06,-0.0,-0.0,5.336416109003039e-08,56.0,37.0,0.011441522277891636,-0.0004360640305094421,-0.0006485055200755596,4.379541678645182e-06,8.021475878194906e-06,9.769746611709706e-06,-0.0004360640305094421,3.3861655538203195e-05,8.021475878194906e-06,-4.866157041760744e-07,-2.9169004278628563e-07,-0.0,-0.0006485055200755596,8.021475878194906e-06,7.678188558202237e-05,1.3234889800848443e-23,-4.4563756773641217e-07,-1.6748136886235443e-06,4.379541678645182e-06,-4.866157041760744e-07,1.3234889800848443e-23,8.847559129776528e-09,0.0,-0.0,8.021475878194906e-06,-2.9169004278628563e-07,-4.4563756773641217e-07,0.0,1.6205001784896922e-08,-0.0,9.769746611709706e-06,-0.0,-1.6748136886235443e-06,-0.0,-0.0,4.652260443549494e-08,56.0,38.0,0.011156400665640831,-0.00042478894465602934,-0.0006159439799375832,4.264290510036517e-06,7.610118245793274e-06,9.037015843205154e-06,-0.00042478894465602934,3.297784132882953e-05,7.610118245793274e-06,-4.7381004719682096e-07,-2.767315834262263e-07,-0.0,-0.0006159439799375832,7.610118245793274e-06,7.094850298017263e-05,1.3234889800848443e-23,-4.1135774608846987e-07,-1.5061692693052464e-06,4.264290510036517e-06,-4.7381004719682096e-07,1.3234889800848443e-23,8.614728486122658e-09,0.0,-0.0,7.610118245793274e-06,-2.767315834262263e-07,-4.1135774608846987e-07,0.0,1.495846291277303e-08,-0.0,9.037015843205154e-06,-0.0,-1.5061692693052464e-06,-0.0,-0.0,4.0707277548790444e-08,56.0,39.0,0.010885144583880901,-0.00041408228571526706,-0.000585774949286133,4.154949692747323e-06,7.229612492665183e-06,8.375770448765252e-06,-0.00041408228571526706,3.213899617549032e-05,7.229612492665183e-06,-4.6166107381395705e-07,-2.6289498578080384e-07,-0.0,-0.000585774949286133,7.229612492665183e-06,6.569157267222181e-05,0.0,-3.8050592365834746e-07,-1.3582330211647786e-06,4.154949692747323e-06,-4.6166107381395705e-07,0.0,8.393837624964817e-09,0.0,-0.0,7.229612492665183e-06,-2.6289498578080384e-07,-3.8050592365834746e-07,0.0,1.383657899367563e-08,-0.0,8.375770448765252e-06,-0.0,-1.3582330211647786e-06,-0.0,-0.0,3.5742974802133176e-08,56.0,40.0,0.01062676589936018,-0.00040390214417129755,-0.0005577696138061583,4.051075848110486e-06,6.876948646095116e-06,7.777501195960212e-06,-0.00040390214417129755,3.134177313768305e-05,6.876948646095116e-06,-4.5011955762674916e-07,-2.500708546904207e-07,-0.0,-0.0005577696138061583,6.876948646095116e-06,6.094160198699683e-05,0.0,-3.526640171003237e-07,-1.2280264627406723e-06,4.051075848110486e-06,-4.5011955762674916e-07,0.0,8.183992150634367e-09,4.1359030627651384e-25,-0.0,6.876948646095116e-06,-2.500708546904207e-07,-3.526640171003237e-07,4.1359030627651384e-25,1.2824146189416297e-08,-0.0,7.777501195960212e-06,-0.0,-1.2280264627406723e-06,-0.0,-0.0,3.148785765461071e-08,56.0,41.0,0.010380368679761887,-0.00039421062683686614,-0.0005317259347066283,3.952269253204577e-06,6.5494746195327025e-06,7.2348848334513605e-06,-0.00039421062683686614,3.058314905501902e-05,6.5494746195327025e-06,-4.391410186599387e-07,-2.381627126624153e-07,-0.0,-0.0005317259347066283,6.5494746195327025e-06,5.6638895330252126e-05,0.0,-3.274737423453189e-07,-1.1130591701657977e-06,3.952269253204577e-06,-4.391410186599387e-07,0.0,7.984382044412541e-09,-4.1359030627651384e-25,-0.0,6.5494746195327025e-06,-2.381627126624153e-07,-3.274737423453189e-07,-4.1359030627651384e-25,1.1908135810756448e-08,-0.0,7.2348848334513605e-06,-0.0,-1.1130591701657977e-06,-0.0,-0.0,2.7826480675230414e-08,56.0,42.0,0.010145138949155807,-0.000384973332984373,-0.0005074648652225733,3.858167474390939e-06,6.244848009373527e-06,6.741597189829918e-06,-0.000384973332984373,2.98603863484459e-05,6.244848009373527e-06,-4.2868529703810054e-07,-2.2708537983362476e-07,-0.0,-0.0005074648652225733,6.244848009373527e-06,5.273201168165542e-05,1.3234889800848443e-23,-3.046267238460132e-07,-1.0112396466865903e-06,3.858167474390939e-06,-4.2868529703810054e-07,1.3234889800848443e-23,7.794278111816766e-09,-8.271806125530277e-25,-0.0,6.244848009373527e-06,-2.2708537983362476e-07,-3.046267238460132e-07,-8.271806125530277e-25,1.107733549332579e-08,-0.0,6.741597189829918e-06,-0.0,-1.0112396466865903e-06,-0.0,-0.0,2.466438075998667e-08,56.0,43.0,0.009920334443449974,-0.0003761590924113989,-0.0004848272947128862,3.7684428662032587e-06,5.960991074971389e-06,6.292157650023e-06,-0.0003761590924113989,2.917100027843844e-05,5.960991074971389e-06,-4.187158708646166e-07,-2.1676332551123778e-07,-0.0,-0.0004848272947128862,5.960991074971389e-06,4.9176447646459565e-05,1.3234889800848443e-23,-2.83856735450172e-07,-9.208035294250294e-07,3.7684428662032587e-06,-4.187158708646166e-07,1.3234889800848443e-23,7.613015995389105e-09,-4.1359030627651384e-25,-0.0,5.960991074971389e-06,-2.1676332551123778e-07,-2.83856735450172e-07,-4.1359030627651384e-25,1.0322063204171172e-08,-0.0,6.292157650023e-06,-0.0,-9.208035294250294e-07,-0.0,-0.0,2.1923893811504058e-08,56.0,44.0,0.009705276228487492,-0.0003677394997794181,-0.0004636715166270733,3.6827964322583284e-06,5.696058451576391e-06,5.881799552298617e-06,-0.0003677394997794181,2.851272984116804e-05,5.696058451576391e-06,-4.09199600426291e-07,-2.0712938919587032e-07,-2.752857078576476e-21,-0.0004636715166270733,5.696058451576391e-06,4.593357152771205e-05,-2.62032541727347e-21,-2.649329360338015e-07,-8.402570301768719e-07,3.6827964322583284e-06,-4.09199600426291e-07,-2.62032541727347e-21,7.439992621982583e-09,1.5113358520518735e-23,4.689930805010166e-23,5.696058451576391e-06,-2.0712938919587032e-07,-2.649329360338015e-07,1.5113358520518735e-23,9.633925657226428e-09,4.963083675318166e-24,5.881799552298617e-06,-2.752857078576476e-21,-8.402570301768719e-07,4.689930805010166e-23,4.963083675318166e-24,1.954086137345712e-08,56.0,45.0,0.00949934497475624,-0.0003596885653678328,-0.0004438710166141391,3.6009564610139932e-06,5.448403499030974e-06,5.506365141627612e-06,-0.0003596885653678328,2.7883515940629877e-05,5.448403499030974e-06,-4.0010627344599925e-07,-1.981237716108808e-07,0.0,-0.0004438710166141391,5.448403499030974e-06,4.29697465733625e-05,-1.8635157034396473e-23,-2.476546967500326e-07,-7.683300395910919e-07,3.6009564610139932e-06,-4.0010627344599925e-07,-1.8635157034396473e-23,7.274659541423034e-09,5.209934226995151e-25,1.2641488610595728e-25,5.448403499030974e-06,-1.981237716108808e-07,-2.476546967500326e-07,5.209934226995151e-25,9.0056255785953e-09,0.0,5.506365141627612e-06,0.0,-7.683300395910919e-07,1.2641488610595728e-25,0.0,1.7462046031369027e-08,56.0,46.0,0.009301971644163132,-0.000351982656866312,-0.0004253123770467937,3.5226746604166692e-06,5.2165564738970716e-06,5.162217348697595e-06,-0.000351982656866312,2.728147774178069e-05,5.2165564738970716e-06,-3.914082924438844e-07,-1.8969296888826648e-07,2.4749243927586588e-21,-0.0004253123770467937,5.2165564738970716e-06,4.025558155262843e-05,2.578614390599022e-21,-2.3184696829048335e-07,-7.039387810436892e-07,3.5226746604166692e-06,-3.914082924438844e-07,2.578614390599022e-21,7.1165144888141185e-09,-2.1882241048918234e-23,-3.9921672415797145e-23,5.2165564738970716e-06,-1.8969296888826648e-07,-2.3184696829048335e-07,-2.1882241048918234e-23,8.430798281722218e-09,-8.271806125530277e-24,5.162217348697595e-06,2.4749243927586588e-21,-7.039387810436892e-07,-3.9921672415797145e-23,-8.271806125530277e-24,1.5643083273175762e-08,56.0,47.0,0.00911263283342123,-0.00034460003371350467,-0.0004078939091414213,3.4477243389119394e-06,4.9991999730991665e-06,4.846163392357994e-06,-0.00034460003371350467,2.670488720468711e-05,4.9991999730991665e-06,-3.8308047578539117e-07,-1.8178909044763714e-07,1.0587911840678754e-22,-0.0004078939091414213,4.9991999730991665e-06,3.776532685151324e-05,1.6378099766814323e-23,-2.1735652921961446e-07,-6.461551151915046e-07,3.4477243389119394e-06,-3.8308047578539117e-07,1.6378099766814323e-23,6.9650996081804806e-09,-9.21443968700602e-25,1.3336519441521358e-25,4.9991999730991665e-06,-1.8178909044763714e-07,-2.1735652921961446e-07,-9.21443968700602e-25,7.903873999737243e-09,-3.7223127564886245e-24,4.846163392357994e-06,1.0587911840678754e-22,-6.461551151915046e-07,1.3336519441521358e-25,-3.7223127564886245e-24,1.4046850793647536e-08,56.0,48.0,0.008930847980082035,-0.00033752075978554785,-0.0003915240813512355,3.3758965400920715e-06,4.795151198777603e-06,4.55539338872768e-06,-0.00033752075978554785,2.6152169084525667e-05,4.795151198777603e-06,-3.750996313556243e-07,-1.7436913424262457e-07,-3.970466940254533e-23,-0.0003915240813512355,4.795151198777603e-06,3.5476354241836816e-05,1.5385416136345927e-23,-2.0404898748438427e-07,-5.941817562415963e-07,3.3758965400920715e-06,-3.750996313556243e-07,1.5385416136345927e-23,6.819993014772763e-09,-5.020824546491044e-25,-2.5768526038735646e-25,4.795151198777603e-06,-1.7436913424262457e-07,-2.0404898748438427e-07,-5.020824546491044e-25,7.4199628663507156e-09,2.0679515313825692e-24,4.55539338872768e-06,-3.970466940254533e-23,-5.941817562415963e-07,-2.5768526038735646e-25,2.0679515313825692e-24,1.2642165536647099e-08,56.0,49.0,0.008756173774600029,-0.0003307265287730843,-0.00037612038431689143,3.307000724817044e-06,4.603345132636605e-06,4.287429419491673e-06,-0.0003307265287730843,2.562186637078412e-05,4.603345132636605e-06,-3.674445281376393e-07,-1.6739436148327513e-07,7.940933880509066e-23,-0.00037612038431689143,4.603345132636605e-06,3.336873123771511e-05,-0.0,-1.9180605193014344e-07,-5.473314104165183e-07,3.307000724817044e-06,-3.674445281376393e-07,-0.0,6.680809683246025e-09,0.0,0.0,4.603345132636605e-06,-1.6739436148327513e-07,-1.9180605193014344e-07,0.0,6.974765209832867e-09,-3.7223127564886245e-24,4.287429419491673e-06,7.940933880509066e-23,-5.473314104165183e-07,0.0,-3.7223127564886245e-24,1.1402737420951325e-08,56.0,50.0,0.00858820229768753,-0.00032420046045444906,-0.000361608195817098,3.2408606784883887e-06,4.422821803018451e-06,4.040077783429297e-06,-0.00032420046045444906,2.5112645744229667e-05,4.422821803018451e-06,-3.6009564041705744e-07,-1.60829884521263e-07,-1.3234889800848443e-22,-0.000361608195817098,4.422821803018451e-06,3.1424839107785374e-05,-0.0,-1.805233438290088e-07,-5.050097229286621e-07,3.2408606784883887e-06,-3.6009564041705744e-07,-0.0,6.547193454053968e-09,0.0,-2.0679515313825692e-25,4.422821803018451e-06,-1.60829884521263e-07,-1.805233438290088e-07,0.0,6.5644849556179e-09,5.37667398159468e-24,4.040077783429297e-06,-1.3234889800848443e-22,-5.050097229286621e-07,-2.0679515313825692e-25,5.37667398159468e-24,1.0306320241681988e-08,56.0,51.0,0.008426552638411522,-0.0003179269842803478,-0.000347920082276687,3.1773145110491896e-06,4.2527130972302984e-06,3.8113939808681607e-06,-0.0003179269842803478,2.4623273930046707e-05,4.2527130972302984e-06,-3.530349488300999e-07,-1.546441126265563e-07,-5.293955920339377e-23,-0.000347920082276687,4.2527130972302984e-06,2.96290800179122e-05,-0.0,-1.701085352578957e-07,-4.667012944992166e-07,3.1773145110491896e-06,-3.530349488300999e-07,-0.0,6.418817033448931e-09,0.0,2.0679515313825692e-25,4.2527130972302984e-06,-1.546441126265563e-07,-1.701085352578957e-07,0.0,6.185764789279347e-09,1.2407709188295415e-24,3.8113939808681607e-06,-5.293955920339377e-23,-4.667012944992166e-07,2.0679515313825692e-25,1.2407709188295415e-24,9.334025996565742e-09,56.0,52.0,0.008270876482129097,-0.0003118916938547045,-0.000334994780132547,3.11621238324733e-06,4.092233666597167e-06,3.599649744501221e-06,-0.0003118916938547045,2.4152610421879217e-05,4.092233666597167e-06,-3.4624579825504043e-07,-1.4880849619203218e-07,1.1911400820763599e-22,-0.000334994780132547,4.092233666597167e-06,2.7967607820755802e-05,-8.727774670723988e-23,-1.6047974327193515e-07,-4.319579716138833e-07,3.11621238324733e-06,-3.4624579825504043e-07,-8.727774670723988e-23,6.295378440768218e-09,3.1891417866028258e-24,-6.165545536437912e-25,4.092233666597167e-06,-1.4880849619203218e-07,-1.6047974327193515e-07,3.1891417866028258e-24,5.835627092665163e-09,-5.37667398159468e-24,3.599649744501221e-06,1.1911400820763599e-22,-4.319579716138833e-07,-6.165545536437912e-25,-5.37667398159468e-24,8.469764445351302e-09,56.0,53.0,0.008120848797261715,-0.00030608128872700036,-0.00032277664286084473,3.0574158245144645e-06,3.940669103030814e-06,3.403305299798376e-06,-0.00030608128872700036,2.369960566284135e-05,3.940669103030814e-06,-3.3971286939049605e-07,-1.4329705777527124e-07,2.6469779601696886e-23,-0.00032277664286084473,3.940669103030814e-06,2.6428095225128345e-05,1.1461359303095175e-23,-1.515642082949853e-07,-4.0038887050286576e-07,3.0574158245144645e-06,-3.3971286939049605e-07,1.1461359303095175e-23,6.176597455720412e-09,-4.793208100012771e-25,3.3154166005943e-26,3.940669103030814e-06,-1.4329705777527124e-07,-1.515642082949853e-07,-4.793208100012771e-25,5.511425538173853e-09,-1.2407709188295415e-24,3.403305299798376e-06,2.6469779601696886e-23,-4.0038887050286576e-07,3.3154166005943e-26,-1.2407709188295415e-24,7.69978569792329e-09,56.0,54.0,0.007976165972650051,-0.0003004834579769522,-0.000311215000692755,3.0007970508449944e-06,3.7973723010509275e-06,3.2209852633968694e-06,-0.0003004834579769522,2.3263281036633998e-05,3.7973723010509275e-06,-3.334218945383327e-07,-1.3808626420086512e-07,8.602678370551488e-23,-0.000311215000692755,3.7973723010509275e-06,2.4999555535032414e-05,2.1683657937803328e-23,-1.4329705777527124e-07,-3.716521632668446e-07,3.0007970508449944e-06,-3.334218945383327e-07,2.1683657937803328e-23,6.06221606247459e-09,-3.3108553821884086e-25,-2.1895928968915177e-25,3.7973723010509275e-06,-1.3808626420086512e-07,-1.4329705777527124e-07,-3.3108553821884086e-25,5.210802456190322e-09,-3.1019272970738538e-24,3.2209852633968694e-06,8.602678370551488e-23,-3.716521632668446e-07,-2.1895928968915177e-25,-3.1019272970738538e-24,7.012304958919913e-09,56.0,55.0,0.007836548611521721,-0.00029508667648769915,-0.0003002636367455125,2.9462371458066627e-06,3.66175186172768e-06,3.051459771086229e-06,-0.00029508667648769915,2.28427325055236e-05,3.66175186172768e-06,-3.273596860253747e-07,-1.331546144456297e-07,-3.3087224502121107e-23,-0.0003002636367455125,3.66175186172768e-06,2.3672162569710054e-05,-0.0,-1.356204393232474e-07,-3.454482850884233e-07,2.9462371458066627e-06,-3.273596860253747e-07,-0.0,5.951994008768224e-09,-2.0679515313825692e-25,1.0339757656912846e-25,3.66175186172768e-06,-1.331546144456297e-07,-1.356204393232474e-07,-2.0679515313825692e-25,4.931652419770671e-09,6.203854594147708e-25,3.051459771086229e-06,-3.3087224502121107e-23,-3.454482850884233e-07,1.0339757656912846e-25,6.203854594147708e-25,6.397190333018443e-09,56.0,56.0,0.007701735012233257,-0.00028988037956878543,-0.00028988037956878543,2.893625605793204e-06,3.533269364197622e-06,2.893625605793204e-06,-0.00028988037956878543,2.243712151539512e-05,3.533269364197622e-06,-3.2151396567314805e-07,-1.2848251174091274e-07,2.3822801641527197e-22,-0.00028988037956878543,3.533269364197622e-06,2.243712151539512e-05,1.7051968102336905e-22,-1.2848251174091274e-07,-3.2151396567314805e-07,2.893625605793204e-06,-3.2151396567314805e-07,1.7051968102336905e-22,5.8457083618179695e-09,-2.2172241306034678e-24,-1.3060978708974776e-24,3.533269364197622e-06,-1.2848251174091274e-07,-1.2848251174091274e-07,-2.2172241306034678e-24,4.6720916024867165e-09,-4.342698215903395e-24,2.893625605793204e-06,2.3822801641527197e-22,-3.2151396567314805e-07,-1.3060978708974776e-24,-4.342698215903395e-24,5.8457083618179695e-09,56.0,57.0,0.007571481633931398,-0.0002848546137101948,-0.0002800265501718968,2.8428603400243446e-06,3.4114323170797434e-06,2.7464921004138887e-06,-0.0002848546137101948,2.204566408181563e-05,3.4114323170797434e-06,-3.1587336479788064e-07,-1.2405209304233722e-07,9.926167350636332e-23,-0.0002800265501718968,3.4114323170797434e-06,2.1286534320097417e-05,-1.8463125403629495e-23,-1.218368765876221e-07,-2.996173407154856e-07,2.8428603400243446e-06,-3.1587336479788064e-07,-1.8463125403629495e-23,5.7431521760520354e-09,3.1247179816637546e-25,1.5647902847936717e-25,3.4114323170797434e-06,-1.2405209304233722e-07,-1.218368765876221e-07,3.1247179816637546e-25,4.430431577162608e-09,-3.5155176033503676e-24,2.7464921004138887e-06,9.926167350636332e-23,-2.996173407154856e-07,1.5647902847936717e-25,-3.5155176033503676e-24,5.3503095287510405e-09,56.0,58.0,0.007445560302585363,-0.00028000015299767256,-0.00027066681650467217,2.793845396809047e-06,3.2957905204966664e-06,2.6091674953931943e-06,-0.00028000015299767256,2.1667632609023713e-05,3.2957905204966664e-06,-3.104272821019549e-07,-1.1984693060185236e-07,3.970466940254533e-23,-0.00027066681650467217,3.2957905204966664e-06,2.021330510615371e-05,-0.0,-1.1564177526679487e-07,-2.795536602206994e-07,2.793845396809047e-06,-3.104272821019549e-07,-0.0,5.6441322726641374e-09,0.0,0.0,3.2957905204966664e-06,-1.1984693060185236e-07,-1.1564177526679487e-07,0.0,4.205155335057498e-09,-1.6543612251060553e-24,2.6091674953931943e-06,3.970466940254533e-23,-2.795536602206994e-07,0.0,-1.6543612251060553e-24,4.9044501793105155e-09,56.0,59.0,0.007323759142309427,-0.00027530838269740343,-0.0002617686113808304,2.7464921004138887e-06,3.185930836480111e-06,2.4808477974147536e-06,-0.00027530838269740343,2.1302348613971844e-05,3.185930836480111e-06,-3.0516579840877966e-07,-1.1585203196773364e-07,4.632211430296955e-23,-0.0002617686113808304,3.185930836480111e-06,1.9211038306821138e-05,8.33145978718309e-24,-1.0985968401655555e-07,-2.6114187789971766e-07,2.7464921004138887e-06,-3.0516579840877966e-07,8.33145978718309e-24,5.548469239613496e-09,-4.764404323172823e-26,-1.1325223653832729e-25,3.185930836480111e-06,-1.1585203196773364e-07,-1.0985968401655555e-07,-4.764404323172823e-26,3.994897745940307e-09,-1.4475660719677984e-24,2.4808477974147536e-06,4.632211430296955e-23,-2.6114187789971766e-07,-1.1325223653832729e-25,-1.4475660719677984e-24,4.502446415699524e-09,56.0,60.0,0.007205878850072622,-0.0002707712701521814,-0.0002533021615818143,2.7007172320736572e-06,3.081474233113113e-06,2.360806774959201e-06,-0.0002707712701521814,2.0949177269358188e-05,3.081474233113113e-06,-3.0007970508449944e-07,-1.1205360550547994e-07,-2.448454613156962e-22,-0.0002533021615818143,3.081474233113113e-06,1.8273962268722244e-05,-1.5733272872200908e-22,-1.0445675258097253e-07,-2.442213826725492e-07,2.7007172320736572e-06,-3.0007970508449944e-07,-1.5733272872200908e-22,5.455994767089578e-09,-9.618185600831055e-25,2.516255267362881e-24,3.081474233113113e-06,-1.1205360550547994e-07,-1.0445675258097253e-07,-9.618185600831055e-25,3.798427350432121e-09,2.895132143935597e-24,2.360806774959201e-06,-2.448454613156962e-22,-2.442213826725492e-07,2.516255267362881e-24,2.895132143935597e-24,4.139345755049817e-09,56.0,61.0,0.007091733161360025,-0.00026638127746991813,-0.0002452399057801813,2.6564432573650265e-06,2.982071691803867e-06,2.248387545478181e-06,-0.00026638127746991813,2.0607525584637187e-05,2.982071691803867e-06,-2.951603619294474e-07,-1.084389751326853e-07,4.632211430296955e-23,-0.0002452399057801813,2.982071691803867e-06,1.7396861949237064e-05,-2.2634060201473688e-23,-9.940239209527135e-08,-2.2864956861212704e-07,2.6564432573650265e-06,-2.951603619294474e-07,-2.2634060201473688e-23,5.3665520916013065e-09,5.429170505469649e-25,9.068768385728875e-26,2.982071691803867e-06,-1.084389751326853e-07,-9.940239209527135e-08,5.429170505469649e-25,3.6146323711960804e-09,-1.6543612251060553e-24,2.248387545478181e-06,4.632211430296955e-23,-2.2864956861212704e-07,9.068768385728875e-26,-1.6543612251060553e-24,3.810826321171135e-09,56.0,62.0,0.006981147453188896,-0.00026213136152364314,-0.0002375565527472645,2.6135974167118547e-06,2.8874028430436738e-06,2.1429943899420323e-06,-0.00026213136152364314,2.027683876804076e-05,2.8874028430436738e-06,-2.903996971781453e-07,-1.0499646663220119e-07,4.632211430296955e-23,-0.0002375565527472645,2.8874028430436738e-06,1.6575017070863396e-05,-0.0,-9.466894823617622e-08,-2.1429943330986134e-07,2.6135974167118547e-06,-2.903996971781453e-07,-0.0,5.279994663709431e-09,0.0,-1.0339757656912846e-25,2.8874028430436738e-06,-1.0499646663220119e-07,-9.466894823617622e-08,0.0,3.44250716821648e-09,-1.8611563782443123e-24,2.1429943899420323e-06,4.632211430296955e-23,-2.1429943330986134e-07,-1.0339757656912846e-25,-1.8611563782443123e-24,3.513105362173974e-09,56.0,63.0,0.006873957347124815,-0.0002580149448476732,-0.00023022873210720718,2.5721117253851844e-06,2.7971714189334307e-06,2.0440868411242263e-06,-0.0002580149448476732,1.99565984075889e-05,2.7971714189334307e-06,-2.857901790775941e-07,-1.0171532949243556e-07,-7.279189390466644e-23,-0.00023022873210720718,2.7971714189334307e-06,1.580413845658768e-05,-0.0,-9.02313388451148e-08,-2.0105773046452668e-07,2.5721117253851844e-06,-2.857901790775941e-07,-0.0,5.196185259848107e-09,2.0679515313825692e-25,-1.0339757656912846e-25,2.7971714189334307e-06,-1.0171532949243556e-07,-9.02313388451148e-08,2.0679515313825692e-25,3.2811395822562872e-09,2.274746684520826e-24,2.0440868411242263e-06,-7.279189390466644e-23,-2.0105773046452668e-07,-1.0339757656912846e-25,2.274746684520826e-24,3.2428664198391743e-09,56.0,64.0,0.006770009640604258,-0.00025402582832612097,-0.00022323481971397996,2.5319225187558914e-06,2.7111047984362813e-06,1.9511737718858058e-06,-0.00025402582832612097,1.964631701412145e-05,2.7111047984362813e-06,-2.813247306221456e-07,-9.858562322051512e-08,2.6469779601696886e-23,-0.00022323481971397996,2.7111047984362813e-06,1.5080338016559836e-05,6.540054095747967e-24,-8.606681234368807e-08,-1.8882327879055083e-07,2.5319225187558914e-06,-2.813247306221456e-07,6.540054095747967e-24,5.1149950941464795e-09,-3.7325529968771534e-26,-8.188904363222051e-26,2.7111047984362813e-06,-9.858562322051512e-08,-8.606681234368807e-08,-3.7325529968771534e-26,3.129702275117552e-09,-6.203854594147708e-25,1.9511737718858058e-06,2.6469779601696886e-23,-1.8882327879055083e-07,-8.188904363222051e-26,-6.203854594147708e-25,2.9971947146378852e-09,57.0,3.0,0.08620860427618027,-0.004383401479572058,-0.0517241396009922,5.1267852541059256e-05,0.0009074410190805793,0.008771929889917374,-0.004383401479572058,0.00036721432115882635,0.0009074410190805793,-5.592856723524164e-06,-3.2408606784883887e-05,0.0,-0.0517241396009922,0.0009074410190805793,0.13944344222545624,-1.4609032284342223e-20,-0.0009074410190805793,-0.05263157933950424,5.1267852541059256e-05,-5.592856723524164e-06,-1.4609032284342223e-20,9.987244453668609e-08,-7.356014976304307e-23,8.311500293616452e-21,0.0009074410190805793,-3.2408606784883887e-05,-0.0009074410190805793,-7.356014976304307e-23,3.2408606784883887e-05,-3.2526065174565133e-19,0.008771929889917374,0.0,-0.05263157933950424,8.311500293616452e-21,-3.2526065174565133e-19,0.02631578966975212,57.0,4.0,0.07197647541761398,-0.0034236672800034285,-0.033666063100099564,3.845088940579444e-05,0.0005444646230898798,0.004385964944958687,-0.0034236672800034285,0.00028027204098179936,0.0005444646230898798,-4.194642770016799e-06,-1.9445164070930332e-05,-2.710505431213761e-19,-0.033666063100099564,0.0005444646230898798,0.053145796060562134,1.9468929621109017e-21,-0.00036297639599069953,-0.01315789483487606,3.845088940579444e-05,-4.194642770016799e-06,1.9468929621109017e-21,7.49043351788714e-08,-6.948208093313895e-22,6.368610150578161e-21,0.0005444646230898798,-1.9445164070930332e-05,-0.00036297639599069953,-6.948208093313895e-22,1.2963442713953555e-05,-1.0842021724855044e-19,0.004385964944958687,-2.710505431213761e-19,-0.01315789483487606,6.368610150578161e-21,-1.0842021724855044e-19,0.004385964944958687,57.0,5.0,0.06181936338543892,-0.0028115292079746723,-0.023697173222899437,3.076071152463555e-05,0.00036297639599069953,0.002506265649572015,-0.0028115292079746723,0.00022681031259708107,0.00036297639599069953,-3.355714170538704e-06,-1.2963442713953555e-05,6.369687763352339e-19,-0.023697173222899437,0.00036297639599069953,0.02688618004322052,1.465463546237061e-20,-0.00018148819799534976,-0.00501253129914403,3.076071152463555e-05,-3.355714170538704e-06,1.465463546237061e-20,5.992346530092618e-08,9.47698868902604e-23,-4.3902954323517896e-21,0.00036297639599069953,-1.2963442713953555e-05,-0.00018148819799534976,9.47698868902604e-23,6.481721356976777e-06,-1.7618285302889447e-19,0.002506265649572015,6.369687763352339e-19,-0.00501253129914403,-4.3902954323517896e-21,-1.7618285302889447e-19,0.0012531328247860074,57.0,6.0,0.05418804660439491,-0.0023861525114625692,-0.017597874626517296,2.5633926270529628e-05,0.0002592688542790711,0.0015664160018786788,-0.0023861525114625692,0.00019055185839533806,0.0002592688542790711,-2.796428361762082e-06,-9.259601938538253e-06,3.1170812458958252e-19,-0.017597874626517296,0.0002592688542790711,0.015654437243938446,1.982868412121961e-20,-0.00010370754171162844,-0.0023496239446103573,2.5633926270529628e-05,-2.796428361762082e-06,1.982868412121961e-20,4.9936222268343045e-08,-1.4848913096882565e-22,-2.7727320314976233e-21,0.0002592688542790711,-9.259601938538253e-06,-0.00010370754171162844,-1.4848913096882565e-22,3.7038407754153013e-06,-5.082197683525802e-20,0.0015664160018786788,3.1170812458958252e-19,-0.0023496239446103573,-2.7727320314976233e-21,-5.082197683525802e-20,0.000469924823846668,57.0,7.0,0.048239145427942276,-0.00207305233925581,-0.01359000988304615,2.197193680331111e-05,0.00019445164070930332,0.0010442773345857859,-0.00207305233925581,0.00016432226402685046,0.00019445164070930332,-2.396938725723885e-06,-6.94470145390369e-06,5.421010862427522e-20,-0.01359000988304615,0.00019445164070930332,0.009960245341062546,5.088057014163647e-21,-6.481721356976777e-05,-0.0012531328247860074,2.197193680331111e-05,-2.396938725723885e-06,5.088057014163647e-21,4.2802476230008324e-08,-2.663466415266256e-23,-9.824568124495618e-22,0.00019445164070930332,-6.94470145390369e-06,-6.481721356976777e-05,-2.663466415266256e-23,2.3149004846345633e-06,-5.082197683525802e-21,0.0010442773345857859,5.421010862427522e-20,-0.0012531328247860074,-9.824568124495618e-22,-5.082197683525802e-21,0.0002088554756483063,57.0,8.0,0.04346958547830582,-0.001832825830206275,-0.010813672095537186,1.922544470289722e-05,0.0001512401649961248,0.0007309941574931145,-0.001832825830206275,0.00014445716806221753,0.0001512401649961248,-2.0973213850083994e-06,-5.4014344641473144e-06,2.574980159653073e-19,-0.010813672095537186,0.0001512401649961248,0.006744591519236565,2.981707257914355e-20,-4.3211475713178515e-05,-0.0007309941574931145,1.922544470289722e-05,-2.0973213850083994e-06,2.981707257914355e-20,3.74521675894357e-08,-3.1619246496458534e-22,-2.6944061458141994e-21,0.0001512401649961248,-5.4014344641473144e-06,-4.3211475713178515e-05,-3.1619246496458534e-22,1.5432669897563756e-06,-2.371692252312041e-20,0.0007309941574931145,2.574980159653073e-19,-0.0007309941574931145,-2.6944061458141994e-21,-2.371692252312041e-20,0.00010442773782415316,57.0,9.0,0.0395594984292984,-0.0016426220536231995,-0.008810427039861679,1.7089285393012688e-05,0.00012099213199689984,0.0005316321039572358,-0.0016426220536231995,0.00012888650235254318,0.00012099213199689984,-1.86428565029928e-06,-4.3211475713178515e-06,-2.0328790734103208e-20,-0.008810427039861679,0.00012099213199689984,0.004784820135682821,-6.151873885908279e-21,-3.024803299922496e-05,-0.0004556846688501537,1.7089285393012688e-05,-1.86428565029928e-06,-6.151873885908279e-21,3.329081366132414e-08,6.014120924667571e-24,7.425307129823728e-22,0.00012099213199689984,-4.3211475713178515e-06,-3.024803299922496e-05,6.014120924667571e-24,1.0802868928294629e-06,-7.623296525288703e-21,0.0005316321039572358,-2.0328790734103208e-20,-0.0004556846688501537,7.425307129823728e-22,-7.623296525288703e-21,5.696058360626921e-05,57.0,10.0,0.03629540279507637,-0.0014882591785863042,-0.00731727434322238,1.5380355762317777e-05,9.899356518872082e-05,0.00039872407796792686,-0.0014882591785863042,0.0001163513952633366,9.899356518872082e-05,-1.677857085269352e-06,-3.53548443854379e-06,-2.303929616531697e-19,-0.00731727434322238,9.899356518872082e-05,0.003520000260323286,-2.4432346511273548e-20,-2.1998570446157828e-05,-0.00029904305119998753,1.5380355762317777e-05,-1.677857085269352e-06,-2.4432346511273548e-20,2.996173265046309e-08,1.643490595614365e-22,2.016038071957589e-21,9.899356518872082e-05,-3.53548443854379e-06,-2.1998570446157828e-05,1.643490595614365e-22,7.856631896174804e-07,2.1811098391798234e-20,0.00039872407796792686,-2.303929616531697e-19,-0.00029904305119998753,2.016038071957589e-21,2.1811098391798234e-20,3.322700649732724e-05,57.0,11.0,0.03352924808859825,-0.0013604623964056373,-0.006174406502395868,1.3982142263557762e-05,8.249464008258656e-05,0.00030671083368360996,-0.0013604623964056373,0.0001060418362612836,8.249464008258656e-05,-1.525324591966637e-06,-2.9462371458066627e-06,3.8963515573697816e-20,-0.006174406502395868,8.249464008258656e-05,0.0026661984156817198,6.793023376038817e-22,-1.649892692512367e-05,-0.00020447389397304505,1.3982142263557762e-05,-1.525324591966637e-06,6.793023376038817e-22,2.7237938127200323e-08,4.28560677447074e-23,-2.123910925861796e-22,8.249464008258656e-05,-2.9462371458066627e-06,-1.649892692512367e-05,4.28560677447074e-23,5.89247406423965e-07,-4.7645603283054394e-21,0.00030671083368360996,3.8963515573697816e-20,-0.00020447389397304505,-2.123910925861796e-22,-4.7645603283054394e-21,2.0447389033506624e-05,57.0,12.0,0.031155070289969444,-0.0012529074447229505,-0.00528011005371809,1.2816963135264814e-05,6.980315811233595e-05,0.00024098707945086062,-0.0012529074447229505,9.741276153363287e-05,6.980315811233595e-05,-1.398214180881041e-06,-2.4929697701736586e-06,0.0,-0.00528011005371809,6.980315811233595e-05,0.0020685605704784393,4.216953838098264e-21,-1.2691482879745308e-05,-0.00014459225349128246,1.2816963135264814e-05,-1.398214180881041e-06,4.216953838098264e-21,2.4968111134171522e-08,-2.852054658712012e-23,-3.1123761068623044e-22,6.980315811233595e-05,-2.4929697701736586e-06,-1.2691482879745308e-05,-2.852054658712012e-23,4.5326723352445697e-07,3.0704944337968387e-21,0.00024098707945086062,0.0,-0.00014459225349128246,-3.1123761068623044e-22,3.0704944337968387e-21,1.3144749573257286e-05,57.0,13.0,0.029095014557242393,-0.001161132357083261,-0.004567120689898729,1.1831043593701907e-05,5.983127630315721e-05,0.00019278966647107154,-0.001161132357083261,9.008384949993342e-05,5.983127630315721e-05,-1.2906592701256159e-06,-2.136831199095468e-06,-5.759824041329242e-20,-0.004567120689898729,5.983127630315721e-05,0.0016375035047531128,-8.727315263376336e-21,-9.971879080694634e-06,-0.00010515799658605829,1.1831043593701907e-05,-1.2906592701256159e-06,-8.727315263376336e-21,2.304748747405938e-08,5.951296673264493e-23,5.469677779312106e-22,5.983127630315721e-05,-2.136831199095468e-06,-9.971879080694634e-06,5.951296673264493e-23,3.5613854265648115e-07,3.22931311140702e-21,0.00019278966647107154,-5.759824041329242e-20,-0.00010515799658605829,5.469677779312106e-22,3.22931311140702e-21,8.763166988501325e-06,57.0,14.0,0.027290575206279755,-0.0010818982264027,-0.003989499527961016,1.0985968401655555e-05,5.185377085581422e-05,0.00015664160309825093,-0.0010818982264027,8.378156780963764e-05,5.185377085581422e-05,-1.1984693628619425e-06,-1.8519203877076507e-06,1.1011428314305904e-20,-0.003989499527961016,5.185377085581422e-05,0.0013186563737690449,-6.182793901244479e-22,-7.977503628353588e-06,-7.832080154912546e-05,1.0985968401655555e-05,-1.1984693628619425e-06,-6.182793901244479e-22,2.1401238115004162e-08,-1.8060575994582455e-23,5.282627246651679e-23,5.185377085581422e-05,-1.8519203877076507e-06,-7.977503628353588e-06,-1.8060575994582455e-23,2.849108398095268e-07,-2.064642808932357e-21,0.00015664160309825093,1.1011428314305904e-20,-7.832080154912546e-05,5.282627246651679e-23,-2.064642808932357e-21,6.024677077220986e-06,57.0,15.0,0.02569693699479103,-0.001012796419672668,-0.0035149995237588882,1.0253570508211851e-05,4.537204949883744e-05,0.00012899897410534322,-0.001012796419672668,7.830415415810421e-05,4.537204949883744e-05,-1.118571390179568e-06,-1.6204303392441943e-06,-6.776263578034403e-21,-0.0035149995237588882,4.537204949883744e-05,0.0010776766575872898,2.1310278901091805e-21,-6.481721356976777e-06,-5.9537986089708284e-05,1.0253570508211851e-05,-1.118571390179568e-06,2.1310278901091805e-21,1.9974487841523114e-08,-5.886369003143735e-23,-1.8535336153171616e-23,4.537204949883744e-05,-1.6204303392441943e-06,-6.481721356976777e-06,-5.886369003143735e-23,2.3149004846345633e-07,1.2440796412797536e-21,0.00012899897410534322,-6.776263578034403e-21,-5.9537986089708284e-05,-1.8535336153171616e-23,1.2440796412797536e-21,4.2527130972302984e-06,57.0,16.0,0.024279186502099037,-0.0009519988088868558,-0.003120440524071455,9.61272235144861e-06,4.0034163248492405e-05,0.0001074991378118284,-0.0009519988088868558,7.349951192736626e-05,4.0034163248492405e-05,-1.0486606925041997e-06,-1.429791495866084e-06,3.4728350837426314e-20,-0.003120440524071455,4.0034163248492405e-05,0.0008921263506636024,5.864883410824293e-21,-5.337888524081791e-06,-4.6071061660768464e-05,9.61272235144861e-06,-1.0486606925041997e-06,5.864883410824293e-21,1.872608379471785e-08,-8.733206451372977e-23,-1.9041424818206363e-22,4.0034163248492405e-05,-1.429791495866084e-06,-5.337888524081791e-06,-8.733206451372977e-23,1.9063887179981975e-07,-2.779326858178173e-21,0.0001074991378118284,3.4728350837426314e-20,-4.6071061660768464e-05,-1.9041424818206363e-22,-2.779326858178173e-21,3.0714040804014076e-06,57.0,17.0,0.02300972118973732,-0.0008980921702459455,-0.0027888126205652952,9.04726857697824e-06,3.5585922887548804e-05,9.052559471456334e-05,-0.0008980921702459455,6.925076741026714e-05,3.5585922887548804e-05,-9.869747827906394e-07,-1.270925849894411e-06,1.1858461261560205e-20,-0.0027888126205652952,3.5585922887548804e-05,0.0007469141855835915,8.60318223178887e-22,-4.4482403609436005e-06,-3.621023643063381e-05,9.04726857697824e-06,-9.869747827906394e-07,8.60318223178887e-22,1.76245489313942e-08,-3.564199047976268e-25,-5.485513436232385e-23,3.5585922887548804e-05,-1.270925849894411e-06,-4.4482403609436005e-06,-3.564199047976268e-25,1.5886573123680137e-07,-1.138200522872966e-21,9.052559471456334e-05,1.1858461261560205e-20,-3.621023643063381e-05,-5.485513436232385e-23,-1.138200522872966e-21,2.2631397769146133e-06,57.0,18.0,0.02186642959713936,-0.0008499670657329261,-0.0025074027944356203,8.544642696506344e-06,3.184003435308114e-05,7.694675150560215e-05,-0.0008499670657329261,6.546668009832501e-05,3.184003435308114e-05,-9.3214282514964e-07,-1.137144181484473e-06,0.0,-0.0025074027944356203,3.184003435308114e-05,0.0006316305953077972,-3.1000330211593647e-22,-3.7458864881045884e-06,-2.885503272409551e-05,8.544642696506344e-06,-9.3214282514964e-07,-3.1000330211593647e-22,1.664540683066207e-08,-8.351490543288462e-24,2.824214179644952e-23,3.184003435308114e-05,-1.137144181484473e-06,-3.7458864881045884e-06,-8.351490543288462e-24,1.33781668409938e-07,-1.852884572118782e-22,7.694675150560215e-05,0.0,-2.885503272409551e-05,2.824214179644952e-23,-1.852884572118782e-22,1.69735483268596e-06,57.0,19.0,0.020831385627388954,-0.0008067401358857751,-0.002266555791720748,8.094923941825982e-06,2.8656031645368785e-05,6.595435843337327e-05,-0.0008067401358857751,6.207492697285488e-05,2.8656031645368785e-05,-8.830826345729292e-07,-1.0234297178612906e-06,-2.541098841762901e-21,-0.002266555791720748,2.8656031645368785e-05,0.0005389349535107613,3.5001733121107327e-22,-3.184003617207054e-06,-2.327800939383451e-05,8.094923941825982e-06,-8.830826345729292e-07,3.5001733121107327e-22,1.5769332506465616e-08,-7.128151872742494e-24,-3.772617627553663e-24,2.8656031645368785e-05,-1.0234297178612906e-06,-3.184003617207054e-06,-7.128151872742494e-24,1.1371441388519088e-07,2.6469779601696886e-22,6.595435843337327e-05,-2.541098841762901e-21,-2.327800939383451e-05,-3.772617627553663e-24,2.6469779601696886e-22,1.2932226809425629e-06,57.0,20.0,0.019889909774065018,-0.0007676995010115206,-0.002058830577880144,7.690177881158888e-06,2.592688542790711e-05,5.696058360626921e-05,-0.0007676995010115206,5.901747863390483e-05,2.592688542790711e-05,-8.38928542634676e-07,-9.259601938538253e-07,9.317362419797304e-21,-0.002058830577880144,2.592688542790711e-05,0.0004635482036974281,-4.323288451102613e-22,-2.729145990088e-06,-1.8986860595759936e-05,7.690177881158888e-06,-8.38928542634676e-07,-4.323288451102613e-22,1.4980866325231545e-08,2.707610755978062e-23,-1.977129186503569e-23,2.592688542790711e-05,-9.259601938538253e-07,-2.729145990088e-06,2.707610755978062e-23,9.74694955857558e-08,-8.205631676526035e-22,5.696058360626921e-05,9.317362419797304e-21,-1.8986860595759936e-05,-1.977129186503569e-23,-8.205631676526035e-22,9.993084404413821e-07,57.0,21.0,0.019029861316084862,-0.0007322647725231946,-0.0018784182611852884,7.3239789344370365e-06,2.3569897166453302e-05,4.9530943215359e-05,-0.0007322647725231946,5.624720870400779e-05,2.3569897166453302e-05,-7.989795562934887e-07,-8.417820254180697e-07,-2.117582368135751e-21,-0.0018784182611852884,2.3569897166453302e-05,0.0004016069578938186,-1.988429909271673e-21,-2.35698962569586e-06,-1.5641349818906747e-05,7.3239789344370365e-06,-7.989795562934887e-07,-1.988429909271673e-21,1.4267492076669441e-08,8.705252060791203e-24,7.348117532009959e-23,2.3569897166453302e-05,-8.417820254180697e-07,-2.35698962569586e-06,8.705252060791203e-24,8.417820396289244e-08,-1.9852334701272664e-22,4.9530943215359e-05,-2.117582368135751e-21,-1.5641349818906747e-05,7.348117532009959e-23,-1.9852334701272664e-22,7.820675023140211e-07,57.0,22.0,0.018241113051772118,-0.0006999581819400191,-0.001720730564557016,6.991071131778881e-06,2.1520339942071587e-05,4.333957258495502e-05,-0.0006999581819400191,5.372545274440199e-05,2.1520339942071587e-05,-7.626622959833185e-07,-7.685835612392111e-07,6.3527471044072525e-21,-0.001720730564557016,2.1520339942071587e-05,0.00035023927921429276,6.664622064217804e-22,-2.0495563148870133e-06,-1.3001872503082268e-05,6.991071131778881e-06,-7.626622959833185e-07,6.664622064217804e-22,1.3618969063600161e-08,7.985510359224751e-24,-4.3552489929054616e-23,2.1520339942071587e-05,-7.685835612392111e-07,-2.0495563148870133e-06,7.985510359224751e-24,7.319843575714913e-08,-3.705769144237564e-22,4.333957258495502e-05,6.3527471044072525e-21,-1.3001872503082268e-05,-4.3552489929054616e-23,-3.705769144237564e-22,6.191367560859362e-07,57.0,23.0,0.0175151489675045,-0.0006703829276375473,-0.0015821036649867892,6.687111181236105e-06,1.9726978280232288e-05,3.8138823583722115e-05,-0.0006703829276375473,5.142019654158503e-05,1.9726978280232288e-05,-7.295030854947981e-07,-7.045349548207014e-07,-1.291725244562808e-20,-0.0015821036649867892,1.9726978280232288e-05,0.00030727972625754774,-1.8427691791250885e-21,-1.793361661839299e-06,-1.0896806998061948e-05,6.687111181236105e-06,-7.295030854947981e-07,-1.8427691791250885e-21,1.3026840051111321e-08,1.4868858971554535e-23,5.933114376032235e-23,1.9726978280232288e-05,-7.045349548207014e-07,-1.793361661839299e-06,1.4868858971554535e-23,6.404863484021917e-08,8.271806125530277e-22,3.8138823583722115e-05,-1.291725244562808e-20,-1.0896806998061948e-05,5.933114376032235e-23,8.271806125530277e-22,4.953093935000652e-07,57.0,24.0,0.01684476248919964,-0.0006432064692489803,-0.0014595839893445373,6.408481567632407e-06,1.8148819435737096e-05,3.373819345142692e-05,-0.0006432064692489803,4.930469367536716e-05,1.8148819435737096e-05,-6.991070904405206e-07,-6.481721470663615e-07,1.249373597200093e-20,-0.0014595839893445373,1.8148819435737096e-05,0.0002710744447540492,3.5554080652733106e-21,-1.5781582760610036e-06,-9.201325156027451e-06,6.408481567632407e-06,-6.991070904405206e-07,3.5554080652733106e-21,1.2484055567085761e-08,-1.6687494169285624e-23,-1.2184581458975462e-22,1.8148819435737096e-05,-6.481721470663615e-07,-1.5781582760610036e-06,-1.6687494169285624e-23,5.636279709619885e-08,-3.771943593241806e-22,3.373819345142692e-05,1.249373597200093e-20,-9.201325156027451e-06,-1.2184581458975462e-22,-3.771943593241806e-22,4.000576154794544e-07,57.0,25.0,0.016223803162574768,-0.0006181483622640371,-0.0013507686089724302,6.152142304927111e-06,1.6752757801441476e-05,2.9989503673277795e-05,-0.0006181483622640371,4.735643960884772e-05,1.6752757801441476e-05,-6.711428000016895e-07,-5.983127380204678e-07,-3.8116482626443515e-21,-0.0013507686089724302,1.6752757801441476e-05,0.00024034541274886578,-9.921938551313368e-22,-1.3960631122245104e-06,-7.823348823876586e-06,6.152142304927111e-06,-6.711428000016895e-07,-9.921938551313368e-22,1.198469323782092e-08,3.4268752755829456e-24,3.8194341556958146e-23,1.6752757801441476e-05,-5.983127380204678e-07,-1.3960631122245104e-06,3.4268752755829456e-24,4.9859394835038984e-08,7.279189390466644e-23,2.9989503673277795e-05,-3.8116482626443515e-21,-7.823348823876586e-06,3.8194341556958146e-23,7.279189390466644e-23,3.2597287713542755e-07,57.0,26.0,0.015646999701857567,-0.0005949700134806335,-0.0012536868453025818,5.915521796850953e-06,1.5511812307522632e-05,2.6776342565426603e-05,-0.0005949700134806335,4.55563458672259e-05,1.5511812307522632e-05,-6.453296350628079e-07,-5.539932885767485e-07,-1.2705494208814505e-21,-0.0012536868453025818,1.5511812307522632e-05,0.00021409439796116203,-2.6008824824493454e-22,-1.240944925484655e-06,-6.694085641356651e-06,5.915521796850953e-06,-6.453296350628079e-07,-2.6008824824493454e-22,1.152374373702969e-08,3.984097825608028e-24,5.341319207974937e-24,1.5511812307522632e-05,-5.539932885767485e-07,-1.240944925484655e-06,3.984097825608028e-24,4.4319463654574065e-08,7.279189390466644e-23,2.6776342565426603e-05,-1.2705494208814505e-21,-6.694085641356651e-06,5.341319207974937e-24,7.279189390466644e-23,2.6776342565426603e-07,57.0,27.0,0.015109802596271038,-0.0005734675796702504,-0.0011667099315673113,5.696428161172662e-06,1.4403825844055973e-05,2.4006376406759955e-05,-0.0005734675796702504,4.3888125219382346e-05,1.4403825844055973e-05,-6.214285122041474e-07,-5.144223678144044e-07,5.505714157152952e-21,-0.0011667099315673113,1.4403825844055973e-05,0.0001915339526021853,1.158781689320016e-21,-1.107986577153497e-06,-5.761530246672919e-06,5.696428161172662e-06,-6.214285122041474e-07,1.158781689320016e-21,1.1096938479226992e-08,6.596314866647424e-24,-5.1115722256853655e-23,1.4403825844055973e-05,-5.144223678144044e-07,-1.107986577153497e-06,6.596314866647424e-24,3.957094918405346e-08,-1.6212740006039342e-22,2.4006376406759955e-05,5.505714157152952e-21,-5.761530246672919e-06,-5.1115722256853655e-23,-1.6212740006039342e-22,2.2159731827287033e-07,57.0,28.0,0.014608269557356834,-0.0005534655065275729,-0.001088482211343944,5.492984200827777e-06,1.3410458450380247e-05,2.1605737856589258e-05,-0.0005534655065275729,4.2337796912761405e-05,1.3410458450380247e-05,-5.992346814309712e-07,-4.789449690179026e-07,6.352747104407253e-22,-0.001088482211343944,1.3410458450380247e-05,0.00017203720926772803,2.9438322510383626e-22,-9.933672799888882e-07,-4.985939540347317e-06,5.492984200827777e-06,-5.992346814309712e-07,2.9438322510383626e-22,1.0700619057502081e-08,-3.4386498134542744e-24,-8.724206810621854e-24,1.3410458450380247e-05,-4.789449690179026e-07,-9.933672799888882e-07,-3.4386498134542744e-24,3.547740234921548e-08,-1.3234889800848443e-23,2.1605737856589258e-05,6.352747104407253e-22,-4.985939540347317e-06,-8.724206810621854e-24,-1.3234889800848443e-23,1.8466442952558282e-07,57.0,29.0,0.014138962142169476,-0.0005348121048882604,-0.0010178681695833802,5.303571015247144e-06,1.2516427887021564e-05,1.9514860468916595e-05,-0.0005348121048882604,4.089329013368115e-05,1.2516427887021564e-05,-5.785714165540412e-07,-4.4701528167934157e-07,4.9763185651190145e-21,-0.0010178681695833802,1.2516427887021564e-05,0.00015510094817727804,1.0067968443120047e-21,-8.940305633586831e-07,-4.336635811341694e-06,5.303571015247144e-06,-5.785714165540412e-07,1.0067968443120047e-21,1.0331632438465022e-08,1.861950958391096e-24,-3.671241901484616e-23,1.2516427887021564e-05,-4.4701528167934157e-07,-8.940305633586831e-07,1.861950958391096e-24,3.19296624695653e-08,-1.852884572118782e-22,1.9514860468916595e-05,4.9763185651190145e-21,-4.336635811341694e-06,-3.671241901484616e-23,-1.852884572118782e-22,1.5487984228457208e-07,57.0,30.0,0.013698871247470379,-0.0005173753597773612,-0.0009539107559248805,5.1267852541059256e-06,1.1708916645147838e-05,1.7685342754703015e-05,-0.0005173753597773612,3.954411658924073e-05,1.1708916645147838e-05,-5.59285695089784e-07,-4.181755741683446e-07,2.8587361969832636e-21,-0.0009539107559248805,1.1708916645147838e-05,0.0001403180358465761,8.711931440739018e-22,-8.075114692474017e-07,-3.789716174651403e-06,5.1267852541059256e-06,-5.59285695089784e-07,8.711931440739018e-22,9.987243920761557e-09,-1.2644701148024627e-23,-1.4391951533581362e-23,1.1708916645147838e-05,-4.181755741683446e-07,-8.075114692474017e-07,-1.2644701148024627e-23,2.8839695076499083e-08,-1.3234889800848443e-22,1.7685342754703015e-05,2.8587361969832636e-21,-3.789716174651403e-06,-1.4391951533581362e-23,-1.3234889800848443e-22,1.3067986515125085e-07,57.0,31.0,0.013285350054502487,-0.0005010399036109447,-0.0008957986137829721,4.961405011272291e-06,1.0977109013765585e-05,1.607758349564392e-05,-0.0005010399036109447,3.8281148590613157e-05,1.0977109013765585e-05,-5.41244219220971e-07,-3.9203959545375255e-07,8.258571235729428e-21,-0.0008957986137829721,1.0977109013765585e-05,0.00012735664495266974,2.7945735578575012e-21,-7.318072903217399e-07,-3.3263966088270536e-06,4.961405011272291e-06,-5.41244219220971e-07,2.7945735578575012e-21,9.66507496258373e-09,-1.1536861180333878e-23,-7.744607858216178e-23,1.0977109013765585e-05,-3.9203959545375255e-07,-7.318072903217399e-07,-1.1536861180333878e-23,2.6135973385521538e-08,-2.034864306880448e-22,1.607758349564392e-05,8.258571235729428e-21,-3.3263966088270536e-06,-7.744607858216178e-23,-2.034864306880448e-22,1.1087988838198726e-07,57.0,32.0,0.01289606373757124,-0.0004857046587858349,-0.0008428404107689857,4.806361175724305e-06,1.031183001032332e-05,1.4658973668701947e-05,-0.0004857046587858349,3.7096371670486405e-05,1.031183001032332e-05,-5.243303462520998e-07,-3.6827964322583284e-07,6.1409888675936775e-21,-0.0008428404107689857,1.031183001032332e-05,0.000115944494609721,2.0857443963849122e-21,-6.652793445027783e-07,-2.9317948246898595e-06,4.806361175724305e-06,-5.243303462520998e-07,2.0857443963849122e-21,9.363041897358926e-09,-2.4711563260696674e-23,-4.082411035870826e-23,1.031183001032332e-05,-3.6827964322583284e-07,-6.652793445027783e-07,-2.4711563260696674e-23,2.3759977096915463e-08,-2.034864306880448e-22,1.4658973668701947e-05,6.1409888675936775e-21,-2.9317948246898595e-06,-4.082411035870826e-23,-2.034864306880448e-22,9.457402683210603e-08,57.0,33.0,0.012528941966593266,-0.00047128042206168175,-0.0007944441749714315,4.660713784687687e-06,9.705251613922883e-06,1.3402490367298014e-05,-0.00047128042206168175,3.598274270188995e-05,9.705251613922883e-06,-5.084415306555456e-07,-3.466161331289186e-07,-6.4682785481454816e-21,-0.0007944441749714315,9.705251613922883e-06,0.00010585675045149401,-3.468240273154484e-21,-6.065782258701802e-07,-2.5940303203242365e-06,4.660713784687687e-06,-5.084415306555456e-07,-3.468240273154484e-21,9.07931330118572e-09,1.9852334701272664e-23,8.191273524526798e-23,9.705251613922883e-06,-3.466161331289186e-07,-6.065782258701802e-07,1.9852334701272664e-23,2.1663508320557412e-08,1.0657796081639197e-22,1.3402490367298014e-05,-6.4682785481454816e-21,-2.5940303203242365e-06,8.191273524526798e-23,1.0657796081639197e-22,8.106344751013239e-08,57.0,34.0,0.01218214351683855,-0.00045768838026560843,-0.0007501004147343338,4.52363428848912e-06,9.150665391643997e-06,1.228561632160563e-05,-0.00045768838026560843,3.493403710308485e-05,9.150665391643997e-06,-4.934873913953197e-07,-3.268094985742209e-07,7.36476623315537e-21,-0.0007501004147343338,9.150665391643997e-06,9.690664592199028e-05,4.766156932290509e-21,-5.545858243749535e-07,-2.303552946614218e-06,4.52363428848912e-06,-4.934873913953197e-07,4.766156932290509e-21,8.8122744656971e-09,-3.226004388956808e-23,-1.083338515954436e-22,9.150665391643997e-06,-3.268094985742209e-07,-5.545858243749535e-07,-3.226004388956808e-23,1.9806636331054506e-08,-6.889771675592274e-23,1.228561632160563e-05,7.36476623315537e-21,-2.303552946614218e-06,-1.083338515954436e-22,-6.889771675592274e-23,6.980463496120137e-08,57.0,35.0,0.011854027397930622,-0.0004448584804777056,-0.0007093689637258649,4.394387360662222e-06,8.642295142635703e-06,1.1289484973531216e-05,-0.0004448584804777056,3.3944739698199555e-05,8.642295142635703e-06,-4.793877224074095e-07,-3.086533979512751e-07,-1.4685451777207653e-21,-0.0007093689637258649,8.642295142635703e-06,8.893815538613126e-05,-1.2770686178892949e-21,-5.083703058517131e-07,-2.052633590210462e-06,4.394387360662222e-06,-4.793877224074095e-07,-1.2770686178892949e-21,8.560495423637349e-09,9.098986738083304e-24,3.055413533747126e-23,8.642295142635703e-06,-3.086533979512751e-07,-5.083703058517131e-07,9.098986738083304e-24,1.815608285937742e-08,-1.4263902053724077e-23,1.1289484973531216e-05,-1.4685451777207653e-21,-2.052633590210462e-06,3.055413533747126e-23,-1.4263902053724077e-23,6.037157618266065e-08,57.0,36.0,0.011543123051524162,-0.0004327284113969654,-0.0006718678050674498,4.272321348253172e-06,8.17514410300646e-06,1.0398210179118905e-05,-0.0004327284113969654,3.3009942853823304e-05,8.17514410300646e-06,-4.6607141257482e-07,-2.919694281899865e-07,3.2681500085702733e-21,-0.0006718678050674498,8.17514410300646e-06,8.182026067515835e-05,2.4041699561782227e-21,-4.671510964726622e-07,-1.8349782067161868e-06,4.272321348253172e-06,-4.6607141257482e-07,2.4041699561782227e-21,8.322703415331034e-09,-1.5716431638507526e-23,-5.621195618664226e-23,8.17514410300646e-06,-2.919694281899865e-07,-4.671510964726622e-07,-1.5716431638507526e-23,1.668396798493177e-08,-6.873158107156138e-24,1.0398210179118905e-05,3.2681500085702733e-21,-1.8349782067161868e-06,-5.621195618664226e-23,-6.873158107156138e-24,5.2427949981392885e-08,57.0,37.0,0.011248110793530941,-0.0004212423518765718,-0.0006372641073539853,4.156852810410783e-06,7.74487398302881e-06,9.59834778768709e-06,-0.0004212423518765718,3.2125255529535934e-05,7.74487398302881e-06,-4.534748825335555e-07,-2.7660263413054054e-07,-1.729232985497217e-21,-0.0006372641073539853,7.74487398302881e-06,7.54423817852512e-05,-1.3563722367113114e-21,-4.3027074525525677e-07,-1.6454309843538795e-06,4.156852810410783e-06,-4.534748825335555e-07,-1.3563722367113114e-21,8.09776601329304e-09,1.4889251025954498e-23,2.591266078688084e-23,7.74487398302881e-06,-2.7660263413054054e-07,-4.3027074525525677e-07,1.4889251025954498e-23,1.536681182301436e-08,1.5451333353586194e-23,9.59834778768709e-06,-1.729232985497217e-21,-1.6454309843538795e-06,2.591266078688084e-23,1.5451333353586194e-23,4.570641820578203e-08,57.0,38.0,0.010967802256345749,-0.00041035038884729147,-0.0006052668322809041,4.047461970912991e-06,7.347700375248678e-06,8.878471817297395e-06,-0.00041035038884729147,3.128675962216221e-05,7.347700375248678e-06,-4.415413172864646e-07,-2.6241787054459564e-07,2.548446330099453e-21,-0.0006052668322809041,7.347700375248678e-06,6.971076072659343e-05,2.1687435698015123e-21,-3.971730109242344e-07,-1.4797452649872866e-06,4.047461970912991e-06,-4.415413172864646e-07,2.1687435698015123e-21,7.884666253232808e-09,-1.4475660719677984e-23,-4.788369601929075e-23,7.347700375248678e-06,-2.6241787054459564e-07,-3.971730109242344e-07,-1.4475660719677984e-23,1.4184750263268597e-08,7.191386174044105e-24,8.878471817297395e-06,2.548446330099453e-21,-1.4797452649872866e-06,-4.788369601929075e-23,7.191386174044105e-24,3.9993114597791646e-08,57.0,39.0,0.010701125487685204,-0.0004000075859948993,-0.0005756206810474396,3.943680894735735e-06,6.980315447435714e-06,8.228827027778607e-06,-0.0004000075859948993,3.049092811124865e-05,6.980315447435714e-06,-4.302197567085386e-07,-2.4929698838604963e-07,-1.4695921791577236e-21,-0.0005756206810474396,6.980315447435714e-06,6.454553658841178e-05,-1.1731809125734217e-21,-3.67385013078092e-07,-1.3344043736651656e-06,3.943680894735735e-06,-4.302197567085386e-07,-1.1731809125734217e-21,7.682495528626987e-09,1.1580528575742387e-23,2.216601640463158e-23,6.980315447435714e-06,-2.4929698838604963e-07,-3.67385013078092e-07,1.1580528575742387e-23,1.3120893704865466e-08,1.2015537244456557e-23,8.228827027778607e-06,-1.4695921791577236e-21,-1.3344043736651656e-06,2.216601640463158e-23,1.2015537244456557e-23,3.511590662697017e-08,57.0,40.0,0.010447109118103981,-0.0003901733725797385,-0.0005481006810441613,3.845088940579444e-06,6.639812454523053e-06,7.641054253326729e-06,-0.0003901733725797385,2.9734583222307265e-05,6.639812454523053e-06,-4.19464271317338e-07,-2.3713614893949853e-07,-1.3634939467459019e-21,-0.0005481006810441613,6.639812454523053e-06,5.987842450849712e-05,-1.1063059045982453e-21,-3.405031918646273e-07,-1.2064822385582374e-06,3.845088940579444e-06,-4.19464271317338e-07,-1.1063059045982453e-21,7.490433162615773e-09,1.1166938269465874e-23,2.0561626362427653e-23,6.639812454523053e-06,-2.3713614893949853e-07,-3.405031918646273e-07,1.1166938269465874e-23,1.2160828788410072e-08,1.0873994772312051e-23,7.641054253326729e-06,-1.3634939467459019e-21,-1.2064822385582374e-06,2.0561626362427653e-23,1.0873994772312051e-23,3.093543909926666e-08,57.0,41.0,0.010204872116446495,-0.0003808111941907555,-0.0005225084023550153,3.7513063944061287e-06,6.3236307141778525e-06,7.107957117113983e-06,-0.0003808111941907555,2.9014858228038065e-05,6.3236307141778525e-06,-4.092334222605132e-07,-2.2584396219826885e-07,-8.993617135468868e-22,-0.0005225084023550153,6.3236307141778525e-06,5.565078026847914e-05,-1.0555063925020841e-21,-3.161815413932345e-07,-1.093531864171382e-06,3.7513063944061287e-06,-4.092334222605132e-07,-1.0555063925020841e-21,7.307739746664765e-09,9.926167350636332e-24,1.910847042208546e-23,6.3236307141778525e-06,-2.2584396219826885e-07,-3.161815413932345e-07,9.926167350636332e-24,1.1292197399370707e-08,-8.535629611228771e-24,7.107957117113983e-06,-8.993617135468868e-22,-1.093531864171382e-06,1.910847042208546e-23,-8.535629611228771e-24,2.733829695955592e-08,57.0,42.0,0.009973614476621151,-0.00037188781425356865,-0.0004986677668057382,3.6619894672185183e-06,6.0295083130768035e-06,6.623323770327261e-06,-0.00037188781425356865,2.8329155611572787e-05,6.0295083130768035e-06,-3.9948977814674436e-07,-2.1533958260988584e-07,2.0491416542794407e-21,-0.0004986677668057382,6.0295083130768035e-06,5.181205051485449e-05,1.94839990101004e-21,-2.941223726793396e-07,-9.934985882864567e-07,3.6619894672185183e-06,-3.9948977814674436e-07,1.94839990101004e-21,7.133746038334721e-09,-1.737079286361358e-23,-3.557826738052267e-23,6.0295083130768035e-06,-2.1533958260988584e-07,-2.941223726793396e-07,-1.737079286361358e-23,1.05043698184204e-08,-2.7687150145064404e-24,6.623323770327261e-06,2.0491416542794407e-21,-9.934985882864567e-07,-3.557826738052267e-23,-2.7687150145064404e-24,2.4231672668406645e-08,57.0,43.0,0.009752605110406876,-0.00036337311030365527,-0.0004764225159306079,3.5768271118286066e-06,5.755439815402497e-06,6.181768640090013e-06,-0.00036337311030365527,2.7675117962644435e-05,5.755439815402497e-06,-3.901993181898433e-07,-2.05551430099149e-07,-8.367323675853844e-22,-0.0004764225159306079,5.755439815402497e-06,4.831851038034074e-05,-9.217123518023327e-22,-2.740685545177257e-07,-9.046490845321387e-07,3.5768271118286066e-06,-3.901993181898433e-07,-9.217123518023327e-22,6.967844967675774e-09,8.271806125530277e-24,1.6588553656830995e-23,5.755439815402497e-06,-2.05551430099149e-07,-2.740685545177257e-07,8.271806125530277e-24,9.788163168877873e-09,-4.391745248255059e-24,6.181768640090013e-06,-8.367323675853844e-22,-9.046490845321387e-07,1.6588553656830995e-23,-4.391745248255059e-24,2.153926459413924e-08,57.0,44.0,0.009541179053485394,-0.0003552396083250642,-0.0004556334170047194,3.4955355658894405e-06,5.499642611539457e-06,5.778610102424864e-06,-0.0003552396083250642,2.7050602511735633e-05,5.499642611539457e-06,-3.8133114799165924e-07,-1.964157974043701e-07,-5.704312527993209e-22,-0.0004556334170047194,5.499642611539457e-06,4.5132208470022306e-05,-8.515158986282648e-22,-2.5579731754987733e-07,-8.255157126768609e-07,3.4955355658894405e-06,-3.8133114799165924e-07,-8.515158986282648e-22,6.809484531800081e-09,7.031035206700735e-24,1.5493660474316733e-23,5.499642611539457e-06,-1.964157974043701e-07,-2.5579731754987733e-07,7.031035206700735e-24,9.13561848392419e-09,-1.3823895951175332e-23,5.778610102424864e-06,-5.704312527993209e-22,-8.255157126768609e-07,1.5493660474316733e-23,-1.3823895951175332e-23,1.9198038714307586e-08,57.0,45.0,0.009338725358247757,-0.00034746230812743306,-0.0004361760802567005,3.4178569876530673e-06,5.260527814243687e-06,5.409762252384098e-06,-0.00034746230812743306,2.6453653845237568e-05,5.260527814243687e-06,-3.72857130059856e-07,-1.8787598321523546e-07,-7.146840492458159e-22,-0.0004361760802567005,5.260527814243687e-06,4.2220086470479146e-05,-8.284837350378059e-22,-2.3911488256089797e-07,-7.548505891463719e-07,3.4178569876530673e-06,-3.72857130059856e-07,-8.284837350378059e-22,6.658162909900511e-09,7.173687290774566e-24,1.4398824089787647e-23,5.260527814243687e-06,-1.8787598321523546e-07,-2.3911488256089797e-07,7.173687290774566e-24,8.53981774184831e-09,-4.963083675318166e-24,5.409762252384098e-06,-7.146840492458159e-22,-7.548505891463719e-07,1.4398824089787647e-23,-4.963083675318166e-24,1.715569553084606e-08,57.0,46.0,0.009144685231149197,-0.000340018275892362,-0.0004179391253273934,3.3435555906180525e-06,5.036675247538369e-06,5.0716521400318015e-06,-0.000340018275892362,2.5882483896566555e-05,5.036675247538369e-06,-3.6475154274739907e-07,-1.7988126899126655e-07,-9.926167350636332e-22,-0.0004179391253273934,5.036675247538369e-06,3.955326974391937e-05,-8.113338232276542e-22,-2.2385223985565972e-07,-6.915889230185712e-07,3.3435555906180525e-06,-3.6475154274739907e-07,-8.113338232276542e-22,6.513420025555661e-09,6.659705756838721e-24,1.3772582127012516e-23,5.036675247538369e-06,-1.7988126899126655e-07,-2.2385223985565972e-07,6.659705756838721e-24,7.99472310575311e-09,9.512577044359818e-24,5.0716521400318015e-06,-9.926167350636332e-22,-6.915889230185712e-07,1.3772582127012516e-23,9.512577044359818e-24,1.536864324691578e-08,57.0,47.0,0.008958544582128525,-0.0003328865277580917,-0.0004008225805591792,3.2724162792874267e-06,4.826813892577775e-06,4.761142918141559e-06,-0.0003328865277580917,2.5335461032227613e-05,4.826813892577775e-06,-3.569908528788801e-07,-1.7238620841908414e-07,-8.735027268559972e-22,-0.0004008225805591792,4.826813892577775e-06,3.710645978571847e-05,-7.297789342216562e-22,-2.0986146864743205e-07,-6.348190595417691e-07,3.2724162792874267e-06,-3.569908528788801e-07,-7.297789342216562e-22,6.3748366585514304e-09,5.368151522805125e-24,1.248509249879307e-23,4.826813892577775e-06,-1.7238620841908414e-07,-2.0986146864743205e-07,5.368151522805125e-24,7.495052578576633e-09,6.617444900424222e-24,4.761142918141559e-06,-8.735027268559972e-22,-6.348190595417691e-07,1.248509249879307e-23,6.617444900424222e-24,1.380041414478228e-08,57.0,48.0,0.008779830299317837,-0.0003260478551965207,-0.0003847364860121161,3.2042407838162035e-06,4.629800969269127e-06,4.475474270293489e-06,-0.0003260478551965207,2.4811082766973414e-05,4.629800969269127e-06,-3.495535452202603e-07,-1.6535004476736503e-07,1.3499587596865412e-21,-0.0003847364860121161,4.629800969269127e-06,3.4857421269407496e-05,1.4179847725204202e-21,-1.9701280962181045e-07,-5.83757525873807e-07,3.2042407838162035e-06,-3.495535452202603e-07,1.4179847725204202e-21,6.2420277835428806e-09,-1.0495937916650312e-23,-2.3953799252359474e-23,4.629800969269127e-06,-1.6535004476736503e-07,-1.9701280962181045e-07,-1.0495937916650312e-23,7.0361720894140944e-09,-8.271806125530277e-25,4.475474270293489e-06,1.3499587596865412e-21,-5.83757525873807e-07,-2.3953799252359474e-23,-8.271806125530277e-25,1.2420373174393262e-08,57.0,49.0,0.008608106523752213,-0.00031948453397490084,-0.0003695997584145516,3.13884811475873e-06,4.444609203346772e-06,4.2122110244235955e-06,-0.00031948453397490084,2.4307973944814876e-05,4.444609203346772e-06,-3.424198098400666e-07,-1.5873604297667043e-07,9.529120656610879e-22,-0.0003695997584145516,4.444609203346772e-06,3.278656367911026e-05,4.770258302178287e-22,-1.8519205013944884e-07,-5.377290790420375e-07,3.13884811475873e-06,-3.424198098400666e-07,4.770258302178287e-22,6.1146394614297606e-09,-3.1080291361757383e-24,-9.064422797521046e-24,4.444609203346772e-06,-1.5873604297667043e-07,-1.8519205013944884e-07,-3.1080291361757383e-24,6.614001790694601e-09,-2.150669592637872e-23,4.2122110244235955e-06,9.529120656610879e-22,-5.377290790420375e-07,-9.064422797521046e-24,-2.150669592637872e-23,1.1202689442768587e-08,57.0,50.0,0.008442971855401993,-0.00031318023684434593,-0.00035533911432139575,3.0760711524635553e-06,4.270310455467552e-06,3.969199042330729e-06,-0.00031318023684434593,2.3824864911148325e-05,4.270310455467552e-06,-3.3557140000084473e-07,-1.5251109175551392e-07,-1.1911400820763599e-22,-0.00035533911432139575,4.270310455467552e-06,3.087658478762023e-05,1.8752838042059895e-22,-1.742983926078523e-07,-4.961498802913411e-07,3.0760711524635553e-06,-3.3557140000084473e-07,1.8752838042059895e-22,5.99234661891046e-09,-1.0585981853031086e-24,-2.599767041017972e-24,4.270310455467552e-06,-1.5251109175551392e-07,-1.742983926078523e-07,-1.0585981853031086e-24,6.224942783461529e-09,1.3648480107124957e-23,3.969199042330729e-06,-1.1911400820763599e-22,-4.961498802913411e-07,-2.599767041017972e-24,1.3648480107124957e-23,1.0125507543534695e-08,57.0,51.0,0.008284053765237331,-0.0003071199753321707,-0.00034188825520686805,3.01575619232608e-06,4.106067990505835e-06,3.744527475646464e-06,-0.0003071199753321707,2.336058605578728e-05,4.106067990505835e-06,-3.289915753157402e-07,-1.4664527725471999e-07,-6.088049308390284e-22,-0.00034188825520686805,4.106067990505835e-06,2.911215415224433e-05,-7.392566246813435e-22,-1.6424272075710178e-07,-4.585135684465058e-07,3.01575619232608e-06,-3.289915753157402e-07,-7.392566246813435e-22,5.874849495768331e-09,8.306584636258755e-24,1.0195653279912503e-23,4.106067990505835e-06,-1.4664527725471999e-07,-1.6424272075710178e-07,8.306584636258755e-24,5.865811392169462e-09,2.0679515313825692e-24,3.744527475646464e-06,-6.088049308390284e-22,-4.585135684465058e-07,1.0195653279912503e-23,2.0679515313825692e-24,9.170270764968791e-09,57.0,52.0,0.00813100766390562,-0.000301289779599756,-0.000329186994349584,2.9577608984254766e-06,3.95112192563829e-06,3.536498070388916e-06,-0.000301289779599756,2.291405871801544e-05,3.95112192563829e-06,-3.2266481753140397e-07,-1.4111149937434675e-07,1.0720260738687239e-21,-0.000329186994349584,3.95112192563829e-06,2.747966573224403e-05,1.1703881682640966e-21,-1.549459653915619e-07,-4.2437977754161693e-07,2.9577608984254766e-06,-3.2266481753140397e-07,1.1703881682640966e-21,5.761871868514845e-09,-7.633288698209001e-24,-1.8798567993191195e-23,3.95112192563829e-06,-1.4111149937434675e-07,-1.549459653915619e-07,-7.633288698209001e-24,5.533784097622174e-09,-4.1359030627651384e-25,3.536498070388916e-06,1.0720260738687239e-21,-4.2437977754161693e-07,-1.8798567993191195e-23,-4.1359030627651384e-25,8.321172195735471e-09,57.0,53.0,0.007983514107763767,-0.00029567687306553125,-0.00031718064565211535,2.9019540761510143e-06,3.804784228123026e-06,3.3435981094953604e-06,-0.00029567687306553125,2.248428063467145e-05,3.804784228123026e-06,-3.1657680210628314e-07,-1.3588514491402748e-07,-5.624828165360588e-22,-0.00031718064565211535,3.804784228123026e-06,2.596701233414933e-05,-6.605383532727754e-22,-1.4633785383466602e-07,-3.9336450186056027e-07,2.9019540761510143e-06,-3.1657680210628314e-07,-6.605383532727754e-22,5.65315705358671e-09,7.23800075379452e-24,8.765476068878491e-24,3.804784228123026e-06,-1.3588514491402748e-07,-1.4633785383466602e-07,7.23800075379452e-24,5.226351795784012e-09,2.481541837659083e-24,3.3435981094953604e-06,-5.624828165360588e-22,-3.9336450186056027e-07,8.765476068878491e-24,2.481541837659083e-24,7.564701753892678e-09,57.0,54.0,0.007841276004910469,-0.0002902692649513483,-0.00030581941246055067,2.848214080586331e-06,3.666428256110521e-06,3.1644767659599893e-06,-0.0002902692649513483,2.2070329578127712e-05,3.666428256110521e-06,-3.107142561020737e-07,-1.3094387441014987e-07,8.66885281955573e-22,-0.00030581941246055067,3.666428256110521e-06,2.456339461787138e-05,1.0590048454663327e-21,-1.3835578727139364e-07,-3.651319389064156e-07,2.848214080586331e-06,-3.107142561020737e-07,1.0590048454663327e-21,5.548469239613496e-09,-6.378541136291206e-24,-1.667255945462798e-23,3.666428256110521e-06,-1.3094387441014987e-07,-1.3835578727139364e-07,-6.378541136291206e-24,4.941278053394171e-09,2.895132143935597e-24,3.1644767659599893e-06,8.66885281955573e-22,-3.651319389064156e-07,-1.667255945462798e-23,2.895132143935597e-24,6.889282033739619e-09,57.0,55.0,0.0077040172182023525,-0.00028505592490546405,-0.00029505789279937744,2.796428361762082e-06,3.53548443854379e-06,2.997925548697822e-06,-0.00028505592490546405,2.1671346985385753e-05,3.53548443854379e-06,-3.0506492976201116e-07,-1.2626730949705234e-07,-4.896909226313924e-22,-0.00029505789279937744,3.53548443854379e-06,2.3259159206645563e-05,-5.926850063138312e-22,-1.3094387441014987e-07,-3.393877818780311e-07,2.796428361762082e-06,-3.0506492976201116e-07,-5.926850063138312e-22,5.4475877142579066e-09,5.818225857087205e-24,7.924424915028962e-24,3.53548443854379e-06,-1.2626730949705234e-07,-1.3094387441014987e-07,5.818225857087205e-24,4.676566689454376e-09,1.6543612251060553e-24,2.997925548697822e-06,-4.896909226313924e-22,-3.393877818780311e-07,7.924424915028962e-24,1.6543612251060553e-24,6.284958775637506e-09,57.0,56.0,0.007571481633931398,-0.0002800265501718968,-0.0002848546137101948,2.7464921004138887e-06,3.4114323170797434e-06,2.8428603400243446e-06,-0.0002800265501718968,2.1286534320097417e-05,3.4114323170797434e-06,-2.996173407154856e-07,-1.218368765876221e-07,8.602678370551488e-22,-0.0002848546137101948,3.4114323170797434e-06,2.204566408181563e-05,1.1531825691849235e-21,-1.2405209304233722e-07,-3.1587336479788064e-07,2.7464921004138887e-06,-2.996173407154856e-07,1.1531825691849235e-21,5.3503095287510405e-09,-1.1452101231511502e-23,-1.5178794532606818e-23,3.4114323170797434e-06,-1.218368765876221e-07,-1.2405209304233722e-07,-1.1452101231511502e-23,4.430431577162608e-09,-8.271806125530277e-25,2.8428603400243446e-06,8.602678370551488e-22,-3.1587336479788064e-07,-1.5178794532606818e-23,-8.271806125530277e-25,5.7431521760520354e-09,57.0,57.0,0.0074434285052120686,-0.0002751715946942568,-0.0002751715946942568,2.698308207982336e-06,3.2937966807367047e-06,2.698308207982336e-06,-0.0002751715946942568,2.091515125357546e-05,3.2937966807367047e-06,-2.9436088766487956e-07,-1.1763560081590185e-07,7.47771273747937e-22,-0.0002751715946942568,3.2937966807367047e-06,2.091515125357546e-05,1.1040416592300948e-21,-1.1763560081590185e-07,-2.9436088766487956e-07,2.698308207982336e-06,-2.9436088766487956e-07,1.1040416592300948e-21,5.256444168821872e-09,-1.0965882868274005e-23,-1.429756748171529e-23,3.2937966807367047e-06,-1.1763560081590185e-07,-1.1763560081590185e-07,-1.0965882868274005e-23,4.201271330828149e-09,1.8611563782443123e-24,2.698308207982336e-06,7.47771273747937e-22,-2.9436088766487956e-07,-1.429756748171529e-23,1.8611563782443123e-24,5.256444168821872e-09,57.0,58.0,0.00731963524594903,-0.00027048212359659374,-0.00026597408577799797,2.651785507623572e-06,3.182142563673551e-06,2.5633926270529628e-06,-0.00027048212359659374,2.055650475085713e-05,3.182142563673551e-06,-2.892857082770206e-07,-1.1364794971768788e-07,-9.926167350636332e-23,-0.00026597408577799797,3.182142563673551e-06,1.986064489756245e-05,1.3858723529052116e-22,-1.1165413127400825e-07,-2.7464921004138887e-07,2.651785507623572e-06,-2.892857082770206e-07,1.3858723529052116e-22,5.165816219232511e-09,-2.019891561238563e-24,-2.2266902642508936e-24,3.182142563673551e-06,-1.1364794971768788e-07,-1.1165413127400825e-07,-2.019891561238563e-24,3.987647545500295e-09,6.4106497472859645e-24,2.5633926270529628e-06,-9.926167350636332e-23,-2.7464921004138887e-07,-2.2266902642508936e-24,6.4106497472859645e-24,4.818407450812856e-09,57.0,59.0,0.007199892308562994,-0.00026594981318339705,-0.00025723016005940735,2.6068400984513573e-06,3.0760711524635553e-06,2.4373241558350855e-06,-0.00026594981318339705,2.0209950889693573e-05,3.0760711524635553e-06,-2.8438253707463446e-07,-1.0985968401655555e-07,4.499862532288471e-22,-0.00025723016005940735,3.0760711524635553e-06,1.887586222437676e-05,4.168496775884953e-22,-1.0607142542085057e-07,-2.565604404480837e-07,2.6068400984513573e-06,-2.8438253707463446e-07,4.168496775884953e-22,5.0782595906184724e-09,-3.376429592846325e-24,-5.045429315340114e-24,3.0760711524635553e-06,-1.0985968401655555e-07,-1.0607142542085057e-07,-3.376429592846325e-24,3.788265257043122e-09,-4.756288522179909e-24,2.4373241558350855e-06,4.499862532288471e-22,-2.565604404480837e-07,-5.045429315340114e-24,-4.756288522179909e-24,4.423455823854283e-09,57.0,60.0,0.007084003649652004,-0.00026156692183576524,-0.0002489104517735541,2.5633926270529628e-06,2.9752163754892536e-06,2.319389068361488e-06,-0.00026156692183576524,1.987488940358162e-05,2.9752163754892536e-06,-2.79642847544892e-07,-1.0625772972616687e-07,-2.9778502051908996e-22,-0.0002489104517735541,2.9752163754892536e-06,1.7955135263036937e-05,-4.906600224762383e-22,-1.0085479829058386e-07,-2.399368099759158e-07,2.5633926270529628e-06,-2.79642847544892e-07,-4.906600224762383e-22,4.9936219603807785e-09,4.203625193756552e-24,6.1431631859740764e-24,2.9752163754892536e-06,-1.0625772972616687e-07,-1.0085479829058386e-07,4.203625193756552e-24,3.601956954923935e-09,-1.6543612251060553e-24,2.319389068361488e-06,-2.9778502051908996e-22,-2.399368099759158e-07,6.1431631859740764e-24,-1.6543612251060553e-24,4.066725622919876e-09,57.0,61.0,0.006971787195652723,-0.0002573261153884232,-0.00024098796711768955,2.5213698791048955e-06,2.87924171971099e-06,2.2089420781412628e-06,-0.0002573261153884232,1.955075640580617e-05,2.87924171971099e-06,-2.7505853950060555e-07,-1.0283006446343279e-07,4.566036981292713e-22,-0.00024098796711768955,2.87924171971099e-06,1.7093338101403788e-05,4.234741149519834e-22,-9.597472683253727e-08,-2.2463817117568396e-07,2.5213698791048955e-06,-2.7505853950060555e-07,4.234741149519834e-22,4.911759443615438e-09,-3.411674714800242e-24,-4.841452367785759e-24,2.87924171971099e-06,-1.0283006446343279e-07,-9.597472683253727e-08,-3.411674714800242e-24,3.4276688154477597e-09,-4.963083675318166e-24,2.2089420781412628e-06,4.566036981292713e-22,-2.2463817117568396e-07,-4.841452367785759e-24,-4.963083675318166e-24,3.743969578806627e-09,57.0,62.0,0.00686307018622756,-0.00025322067085653543,-0.000233437807764858,2.4807025056361454e-06,2.787837274809135e-06,2.1053979253338184e-06,-0.00025322067085653543,1.9237028027419e-05,2.787837274809135e-06,-2.706221096104855e-07,-9.956561797253016e-08,-2.9778502051908996e-22,-0.000233437807764858,2.787837274809135e-06,1.628583049750887e-05,-4.457626540769703e-22,-9.140450174527359e-08,-2.1053979537555279e-07,2.4807025056361454e-06,-2.706221096104855e-07,-4.457626540769703e-22,4.832537481291865e-09,3.742621586063087e-24,5.555931183823029e-24,2.787837274809135e-06,-9.956561797253016e-08,-9.140450174527359e-08,3.742621586063087e-24,3.2644464909026283e-09,-4.1359030627651384e-25,2.1053979253338184e-06,-2.9778502051908996e-22,-2.1053979537555279e-07,5.555931183823029e-24,-4.1359030627651384e-25,3.451471997095723e-09,57.0,63.0,0.006757691502571106,-0.000249244156293571,-0.0002262370107928291,2.4413263872702373e-06,2.7007172320736572e-06,2.0082256924069952e-06,-0.000249244156293571,1.893320950330235e-05,2.7007172320736572e-06,-2.663265092905931e-07,-9.645418685977347e-08,5.161607022330893e-22,-0.0002262370107928291,2.7007172320736572e-06,1.552840149088297e-05,8.574825648363179e-22,-8.711991483778547e-08,-1.9753039737224753e-07,2.4413263872702373e-06,-2.663265092905931e-07,8.574825648363179e-22,4.755830396163674e-09,-7.292327237754375e-24,-1.0390694405562967e-23,2.7007172320736572e-06,-9.645418685977347e-08,-8.711991483778547e-08,-7.292327237754375e-24,3.1114255616415676e-09,2.481541837659083e-24,2.0082256924069952e-06,5.161607022330893e-22,-1.9753039737224753e-07,-1.0390694405562967e-23,2.481541837659083e-24,3.185974151165283e-09,57.0,64.0,0.006655500270426273,-0.0002453906345181167,-0.00021936434495728463,2.4031805878621526e-06,2.617618292788393e-06,1.916942665047827e-06,-0.0002453906345181167,1.8638838810147718e-05,2.617618292788393e-06,-2.621651731260499e-07,-9.348637064476861e-08,5.558653716356346e-22,-0.00021936434495728463,2.617618292788393e-06,1.4817229384789243e-05,8.317181909669569e-22,-8.309899612868321e-08,-1.855105864478901e-07,2.4031805878621526e-06,-2.621651731260499e-07,8.317181909669569e-22,4.681520948679463e-09,-6.939245718351934e-24,-9.999458839618606e-24,2.617618292788393e-06,-9.348637064476861e-08,-8.309899612868321e-08,-6.939245718351934e-24,2.9678213220307725e-09,3.101927297073854e-25,1.916942665047827e-06,5.558653716356346e-22,-1.855105864478901e-07,-9.999458839618606e-24,3.101927297073854e-25,2.9446125537901935e-09,58.0,3.0,0.08479446917772293,-0.0042372881434857845,-0.050847455859184265,4.870445991400629e-05,0.0008766803075559437,0.008620689623057842,-0.0042372881434857845,0.0003487129579298198,0.0008766803075559437,-5.2183349907863885e-06,-3.076071152463555e-05,-1.3010426069826053e-18,-0.050847455859184265,0.0008766803075559437,0.13705435395240784,-2.460589934354483e-20,-0.0008766803075559437,-0.0517241396009922,4.870445991400629e-05,-5.2183349907863885e-06,-2.460589934354483e-20,9.154973668046296e-08,4.674220734745998e-22,5.160989464148962e-21,0.0008766803075559437,-3.076071152463555e-05,-0.0008766803075559437,4.674220734745998e-22,3.076071152463555e-05,9.215718466126788e-19,0.008620689623057842,-1.3010426069826053e-18,-0.0517241396009922,5.160989464148962e-21,9.215718466126788e-19,0.0258620698004961,58.0,4.0,0.07079193741083145,-0.003309468040242791,-0.033094681799411774,3.652834493550472e-05,0.0005260081961750984,0.004310344811528921,-0.003309468040242791,0.0002661488251760602,0.0005260081961750984,-3.913751243089791e-06,-1.8456426914781332e-05,8.131516293641283e-20,-0.033094681799411774,0.0005260081961750984,0.05223553627729416,4.4568543103145416e-20,-0.0003506721113808453,-0.01293103490024805,3.652834493550472e-05,-3.913751243089791e-06,4.4568543103145416e-20,6.866230251034722e-08,-3.0687390983758644e-22,-1.1514106134113093e-20,0.0005260081961750984,-1.8456426914781332e-05,-0.0003506721113808453,-3.0687390983758644e-22,1.2304284609854221e-05,4.607859233063394e-19,0.004310344811528921,8.131516293641283e-20,-0.01293103490024805,-1.1514106134113093e-20,4.607859233063394e-19,0.004310344811528921,58.0,5.0,0.060799866914749146,-0.0027177089359611273,-0.02329464815557003,2.9222675948403776e-05,0.0003506721113808453,0.002463054144755006,-0.0027177089359611273,0.00021537991415243596,0.0003506721113808453,-3.131000994471833e-06,-1.2304284609854221e-05,-7.047314121155779e-19,-0.02329464815557003,0.0003506721113808453,0.026425648480653763,-4.392738200098235e-21,-0.00017533605569042265,-0.004926108289510012,2.9222675948403776e-05,-3.131000994471833e-06,-4.392738200098235e-21,5.4929842008277774e-08,-3.6036264244875887e-22,3.535722136046829e-21,0.0003506721113808453,-1.2304284609854221e-05,-0.00017533605569042265,-3.6036264244875887e-22,6.152142304927111e-06,2.371692252312041e-19,0.002463054144755006,-7.047314121155779e-19,-0.004926108289510012,3.535722136046829e-21,2.371692252312041e-19,0.001231527072377503,58.0,6.0,0.05329311639070511,-0.002306504175066948,-0.017298780381679535,2.4352229957003146e-05,0.00025048007955774665,0.0015394088113680482,-0.002306504175066948,0.00018094806000590324,0.00025048007955774665,-2.6091674953931943e-06,-8.788774721324444e-06,-1.5585406229479126e-19,-0.017298780381679535,0.00025048007955774665,0.01538626104593277,-2.617940043259956e-20,-0.00010019203182309866,-0.002309113275259733,2.4352229957003146e-05,-2.6091674953931943e-06,-2.617940043259956e-20,4.577486834023148e-08,2.5186935259803925e-22,3.428962926548853e-21,0.00025048007955774665,-8.788774721324444e-06,-0.00010019203182309866,2.5186935259803925e-22,3.5155098885297775e-06,-1.5246593050577406e-20,0.0015394088113680482,-1.5585406229479126e-19,-0.002309113275259733,3.428962926548853e-21,-1.5246593050577406e-20,0.0004618226666934788,58.0,7.0,0.047441624104976654,-0.002003840636461973,-0.013358937576413155,2.0873339963145554e-05,0.00018786005966831,0.0010262725409120321,-0.002003840636461973,0.00015603999781887978,0.00018786005966831,-2.236429281765595e-06,-6.591581040993333e-06,4.54009659728305e-19,-0.013358937576413155,0.00018786005966831,0.009789596311748028,3.8407556498008415e-20,-6.262001988943666e-05,-0.001231527072377503,2.0873339963145554e-05,-2.236429281765595e-06,3.8407556498008415e-20,3.9235601434484124e-08,-4.637168758443109e-22,-3.779200002853685e-21,0.00018786005966831,-6.591581040993333e-06,-6.262001988943666e-05,-4.637168758443109e-22,2.197193680331111e-06,-6.098637220230962e-20,0.0010262725409120321,4.54009659728305e-19,-0.001231527072377503,-3.779200002853685e-21,-6.098637220230962e-20,0.00020525451691355556,58.0,8.0,0.042750339955091476,-0.0017716247821226716,-0.010629748925566673,1.826417246775236e-05,0.00014611337974201888,0.0007183908019214869,-0.0017716247821226716,0.00013717584079131484,0.00014611337974201888,-1.9568756215448957e-06,-5.1267852541059256e-06,-1.6601845766184287e-19,-0.010629748925566673,0.00014611337974201888,0.006629025097936392,-1.4524739025631375e-20,-4.174667992629111e-05,-0.0007183908019214869,1.826417246775236e-05,-1.9568756215448957e-06,-1.4524739025631375e-20,3.433115125517361e-08,3.6323983905115336e-23,1.8597693966898654e-21,0.00014611337974201888,-5.1267852541059256e-06,-4.174667992629111e-05,3.6323983905115336e-23,1.4647957868874073e-06,1.3129010682441655e-20,0.0007183908019214869,-1.6601845766184287e-19,-0.0007183908019214869,1.8597693966898654e-21,1.3129010682441655e-20,0.00010262725845677778,58.0,9.0,0.03890453279018402,-0.0015877654077485204,-0.00866053905338049,1.6234820577665232e-05,0.0001168907037936151,0.0005224660271778703,-0.0015877654077485204,0.0001223897997988388,0.0001168907037936151,-1.7394449969287962e-06,-4.1014282032847404e-06,-9.825582188149884e-20,-0.00866053905338049,0.0001168907037936151,0.004702826961874962,3.5526413723065195e-21,-2.9222675948403776e-05,-0.0004478280316106975,1.6234820577665232e-05,-1.7394449969287962e-06,3.5526413723065195e-21,3.051658126196344e-08,-1.2061734990104653e-22,-8.7133954719158e-24,0.0001168907037936151,-4.1014282032847404e-06,-2.9222675948403776e-05,-1.2061734990104653e-22,1.0253570508211851e-06,2.371692252312041e-20,0.0005224660271778703,-9.825582188149884e-20,-0.0004478280316106975,-8.7133954719158e-24,2.371692252312041e-20,5.597850395133719e-05,58.0,10.0,0.035694170743227005,-0.0014385526301339269,-0.0071927634999156,1.4611337974201888e-05,9.563784988131374e-05,0.0003918495203834027,-0.0014385526301339269,0.00011048638407373801,9.563784988131374e-05,-1.5655004972359166e-06,-3.355714170538704e-06,1.4230153513872246e-19,-0.0071927634999156,9.563784988131374e-05,0.0034596771001815796,1.6474261557751078e-20,-2.1252855731290765e-05,-0.0002938871330115944,1.4611337974201888e-05,-1.5655004972359166e-06,1.6474261557751078e-20,2.7464921004138887e-08,-1.4397882820955538e-22,-1.320250131778173e-21,9.563784988131374e-05,-3.355714170538704e-06,-2.1252855731290765e-05,-1.4397882820955538e-22,7.45714260119712e-07,-1.1434944787933055e-20,0.0003918495203834027,1.4230153513872246e-19,-0.0002938871330115944,-1.320250131778173e-21,-1.1434944787933055e-20,3.265412669861689e-05,58.0,11.0,0.032973602414131165,-0.001315020490437746,-0.006069325376302004,1.3283034604683053e-05,7.969820580910891e-05,0.00030142272589728236,-0.001315020490437746,0.00010069639392895624,7.969820580910891e-05,-1.4231823115551379e-06,-2.796428361762082e-06,7.623296525288703e-20,-0.006069325376302004,7.969820580910891e-05,0.0026205044705420732,1.0516153922539779e-20,-1.5939642253215425e-05,-0.00020094847423024476,1.3283034604683053e-05,-1.4231823115551379e-06,1.0516153922539779e-20,2.4968111134171522e-08,-1.2937923428622355e-22,-6.605195720723439e-22,7.969820580910891e-05,-2.796428361762082e-06,-1.5939642253215425e-05,-1.2937923428622355e-22,5.59285695089784e-07,-6.1409888675936775e-21,0.00030142272589728236,7.623296525288703e-20,-0.00020094847423024476,-6.605195720723439e-22,-6.1409888675936775e-21,2.0094847059226595e-05,58.0,12.0,0.03063858486711979,-0.0012110552052035928,-0.005190236493945122,1.2176114978501573e-05,6.743694393662736e-05,0.00023683212930336595,-0.0012110552052035928,9.250221046386287e-05,6.743694393662736e-05,-1.3045837476965971e-06,-2.3662087187403813e-06,3.3881317890172014e-21,-0.005190236493945122,6.743694393662736e-05,0.002033107215538621,2.13696678841337e-21,-1.2261262781976257e-05,-0.00014209927758201957,1.2176114978501573e-05,-1.3045837476965971e-06,2.13696678841337e-21,2.288743417011574e-08,2.1657063858966517e-23,-2.3399795491485965e-22,6.743694393662736e-05,-2.3662087187403813e-06,-1.2261262781976257e-05,2.1657063858966517e-23,4.302197567085386e-07,1.4823076576950256e-21,0.00023683212930336595,3.3881317890172014e-21,-0.00014209927758201957,-2.3399795491485965e-22,1.4823076576950256e-21,1.2918116226501297e-05,58.0,13.0,0.0286125335842371,-0.0011223434703424573,-0.004489373881369829,1.123949095926946e-05,5.7803095842245966e-05,0.00018946570344269276,-0.0011223434703424573,8.554266969440505e-05,5.7803095842245966e-05,-1.2042312391713494e-06,-2.028178869295516e-06,-3.3881317890172014e-20,-0.004489373881369829,5.7803095842245966e-05,0.0016094367019832134,-3.718476140942413e-21,-9.633849913370796e-06,-0.00010334492981201038,1.123949095926946e-05,-1.2042312391713494e-06,-3.718476140942413e-21,2.11268620375904e-08,2.5277511006763953e-23,2.263793003753034e-22,5.7803095842245966e-05,-2.028178869295516e-06,-9.633849913370796e-06,2.5277511006763953e-23,3.380297926014464e-07,3.546950466627383e-21,0.00018946570344269276,-3.3881317890172014e-20,-0.00010334492981201038,2.263793003753034e-22,3.546950466627383e-21,8.612077181169298e-06,58.0,14.0,0.026837898418307304,-0.001045754412189126,-0.003921578638255596,1.0436669981572777e-05,5.009601591154933e-05,0.00015394088404718786,-0.001045754412189126,7.955803448567167e-05,5.009601591154933e-05,-1.1182146408827975e-06,-1.7577549442648888e-06,4.235164736271502e-21,-0.003921578638255596,5.009601591154933e-05,0.0012960537569597363,1.6071495281374862e-21,-7.707079930696636e-06,-7.697044202359393e-05,1.0436669981572777e-05,-1.1182146408827975e-06,1.6071495281374862e-21,1.9617800717242062e-08,-5.579158798746809e-23,2.990460067874767e-24,5.009601591154933e-05,-1.7577549442648888e-06,-7.707079930696636e-06,-5.579158798746809e-23,2.70423839765499e-07,-4.235164736271502e-22,0.00015394088404718786,4.235164736271502e-21,-7.697044202359393e-05,2.990460067874767e-24,-4.235164736271502e-22,5.920803232584149e-06,58.0,15.0,0.025270596146583557,-0.0009789597243070602,-0.003455151803791523,9.740891982801259e-06,4.3834013922605664e-05,0.0001267748448299244,-0.0009789597243070602,7.435669976985082e-05,4.3834013922605664e-05,-1.0436669981572777e-06,-1.5380355762317777e-06,1.3552527156068805e-20,-0.003455151803791523,4.3834013922605664e-05,0.0010592039907351136,2.335051907416028e-21,-6.262001988943666e-06,-5.8511468523647636e-05,9.740891982801259e-06,-1.0436669981572777e-06,2.335051907416028e-21,1.830994733609259e-08,5.528207456169942e-24,-1.9532602434410622e-22,4.3834013922605664e-05,-1.5380355762317777e-06,-6.262001988943666e-06,5.528207456169942e-24,2.197193680331111e-07,2.6469779601696886e-23,0.0001267748448299244,1.3552527156068805e-20,-5.8511468523647636e-05,-1.9532602434410622e-22,2.6469779601696886e-23,4.179390543868067e-06,58.0,16.0,0.023876287043094635,-0.0009201919892802835,-0.0030673067085444927,9.13208623387618e-06,3.8677073462167755e-05,0.000105645704024937,-0.0009201919892802835,6.979422323638573e-05,3.8677073462167755e-05,-9.784378107724478e-07,-1.357090241072001e-06,-8.470329472543003e-21,-0.0030673067085444927,3.8677073462167755e-05,0.0008768338011577725,-1.9702087117304567e-21,-5.156943188922014e-06,-4.527673081611283e-05,9.13208623387618e-06,-9.784378107724478e-07,-1.9702087117304567e-21,1.7165575627586804e-08,3.341593889702218e-24,1.239005763668019e-22,3.8677073462167755e-05,-1.357090241072001e-06,-5.156943188922014e-06,3.341593889702218e-24,1.8094536358148616e-07,2.3822801641527197e-22,0.000105645704024937,-8.470329472543003e-21,-4.527673081611283e-05,1.239005763668019e-22,2.3822801641527197e-22,3.018448751390679e-06,58.0,17.0,0.022627821192145348,-0.000868085422553122,-0.002741322387009859,8.594905011705123e-06,3.437962004682049e-05,8.896480721887201e-05,-0.000868085422553122,6.57596392557025e-05,3.437962004682049e-05,-9.208826554640837e-07,-1.2063024996677996e-06,-9.317362419797304e-21,-0.002741322387009859,3.437962004682049e-05,0.0007341104210354388,1.2902972472899995e-21,-4.2974525058525614e-06,-3.5585922887548804e-05,8.594905011705123e-06,-9.208826554640837e-07,1.2902972472899995e-21,1.6155835780296002e-08,-4.2251620431021717e-23,4.917950181917304e-24,3.437962004682049e-05,-1.2063024996677996e-06,-4.2974525058525614e-06,-4.2251620431021717e-23,1.5078781245847495e-07,1.138200522872966e-21,8.896480721887201e-05,-9.317362419797304e-21,-3.5585922887548804e-05,4.917950181917304e-24,1.138200522872966e-21,2.2241201804718003e-06,58.0,18.0,0.021503446623682976,-0.0008215673733502626,-0.002464702120050788,8.117410288832616e-06,3.076071152463555e-05,7.56200824980624e-05,-0.0008215673733502626,6.216629117261618e-05,3.076071152463555e-05,-8.697224984643981e-07,-1.0793232831929345e-06,0.0,-0.002464702120050788,3.076071152463555e-05,0.000620802806224674,1.200429304199459e-21,-3.618907385316561e-06,-2.8357531846268103e-05,8.117410288832616e-06,-8.697224984643981e-07,1.200429304199459e-21,1.525829063098172e-08,-3.3890597292554565e-23,-6.826660278819696e-24,3.076071152463555e-05,-1.0793232831929345e-06,-3.618907385316561e-06,-3.3890597292554565e-23,1.2697920226401038e-07,7.940933880509066e-23,7.56200824980624e-05,0.0,-2.8357531846268103e-05,-6.826660278819696e-24,7.940933880509066e-23,1.6680901353538502e-06,58.0,19.0,0.020485535264015198,-0.0007797840517014265,-0.0022279545664787292,7.690177881158888e-06,2.7684640372171998e-05,6.481721356976777e-05,-0.0007797840517014265,5.894550486118533e-05,2.7684640372171998e-05,-8.239476301241666e-07,-9.713909321362735e-07,4.1928130889087867e-20,-0.0022279545664787292,2.7684640372171998e-05,0.0005296960007399321,1.0467962573922896e-20,-3.0760711524635553e-06,-2.2876663933857344e-05,7.690177881158888e-06,-8.239476301241666e-07,1.0467962573922896e-20,1.4455221908349358e-08,-9.328087091088866e-23,-4.025099028929071e-22,2.7684640372171998e-05,-9.713909321362735e-07,-3.0760711524635553e-06,-9.328087091088866e-23,1.0793232263495156e-07,-1.6278914455043585e-21,6.481721356976777e-05,4.1928130889087867e-20,-2.2876663933857344e-05,-4.025099028929071e-22,-1.6278914455043585e-21,1.270925849894411e-06,58.0,20.0,0.019559647887945175,-0.0007420472684316337,-0.0020237653516232967,7.305668987100944e-06,2.5048007955774665e-05,5.597850395133719e-05,-0.0007420472684316337,5.60421722184401e-05,2.5048007955774665e-05,-7.827502486179583e-07,-8.788774721324444e-07,-1.2705494208814505e-21,-0.0020237653516232967,2.5048007955774665e-05,0.0004556014318950474,1.8545997198098008e-21,-2.636632416397333e-06,-1.8659500710782595e-05,7.305668987100944e-06,-7.827502486179583e-07,1.8545997198098008e-21,1.3732460502069443e-08,-2.6013683892125253e-23,-5.373513489264002e-23,2.5048007955774665e-05,-8.788774721324444e-07,-2.636632416397333e-06,-2.6013683892125253e-23,9.251341737126495e-08,4.499862532288471e-22,5.597850395133719e-05,-1.2705494208814505e-21,-1.8659500710782595e-05,-5.373513489264002e-23,4.499862532288471e-22,9.820789728109958e-07,58.0,21.0,0.01871384307742119,-0.0007077960181050003,-0.0018464243039488792,6.957779987715185e-06,2.2770916984882206e-05,4.8676960432203487e-05,-0.0007077960181050003,5.3411546105053276e-05,2.2770916984882206e-05,-7.454764272551984e-07,-7.989795562934887e-07,7.199780051661553e-21,-0.0018464243039488792,2.2770916984882206e-05,0.0003947219520341605,1.4474873120950212e-21,-2.2770916530134855e-06,-1.537167190690525e-05,6.957779987715185e-06,-7.454764272551984e-07,1.4474873120950212e-21,1.3078533811494708e-08,-4.232074673442442e-24,-7.04099441785697e-23,2.2770916984882206e-05,-7.989795562934887e-07,-2.2770916530134855e-06,-4.232074673442442e-24,7.989795136609246e-08,-2.3161057151484775e-22,4.8676960432203487e-05,7.199780051661553e-21,-1.537167190690525e-05,-7.04099441785697e-23,-2.3161057151484775e-22,7.685835612392111e-07,58.0,22.0,0.0179381612688303,-0.0006765684811398387,-0.0016914212610572577,6.641517302341526e-06,2.0790837879758328e-05,4.2592339013936e-05,-0.0006765684811398387,5.101690476294607e-05,2.0790837879758328e-05,-7.115911557775689e-07,-7.295030854947981e-07,7.835054762102278e-21,-0.0016914212610572577,2.0790837879758328e-05,0.0003442348097451031,3.963664510627278e-21,-1.980079787244904e-06,-1.277770206797868e-05,6.641517302341526e-06,-7.115911557775689e-07,3.963664510627278e-21,1.2484055567085761e-08,-4.335550820557731e-23,-1.1801811001632847e-22,2.0790837879758328e-05,-7.295030854947981e-07,-1.980079787244904e-06,-4.335550820557731e-23,6.947648500954529e-08,6.617444900424222e-24,4.2592339013936e-05,7.835054762102278e-21,-1.277770206797868e-05,-1.1801811001632847e-22,6.617444900424222e-24,6.084620167712274e-07,58.0,23.0,0.017224226146936417,-0.0006479810690507293,-0.001555154682137072,6.352755917760078e-06,1.9058266843785532e-05,3.748125891434029e-05,-0.0006479810690507293,4.882785287918523e-05,1.9058266843785532e-05,-6.806524197600083e-07,-6.687111522296618e-07,-4.235164736271502e-21,-0.001555154682137072,1.9058266843785532e-05,0.0003020116710104048,9.883333087007045e-22,-1.7325697854175814e-06,-1.070893085852731e-05,6.352755917760078e-06,-6.806524197600083e-07,9.883333087007045e-22,1.1941270194881781e-08,-2.03860097532769e-24,-3.551482403108118e-23,1.9058266843785532e-05,-6.687111522296618e-07,-1.7325697854175814e-06,-2.03860097532769e-24,6.079191905428161e-08,6.0218748593860415e-22,3.748125891434029e-05,-4.235164736271502e-21,-1.070893085852731e-05,-3.551482403108118e-23,6.0218748593860415e-22,4.867695793109306e-07,58.0,24.0,0.016564948484301567,-0.0006217124755494297,-0.001434721052646637,6.088057489250787e-06,1.7533606296638027e-05,3.3156498830066994e-05,-0.0006217124755494297,4.681899372371845e-05,1.7533606296638027e-05,-6.522918738482986e-07,-6.152142759674462e-07,-3.1763735522036263e-21,-0.001434721052646637,1.7533606296638027e-05,0.0002664270286913961,-1.899762852292594e-21,-1.524661342955369e-06,-9.042681085702498e-06,6.088057489250787e-06,-6.522918738482986e-07,-1.899762852292594e-21,1.144371708505787e-08,2.5229049703634416e-23,4.7397319095011305e-23,1.7533606296638027e-05,-6.152142759674462e-07,-1.524661342955369e-06,2.5229049703634416e-23,5.349689047307038e-08,3.970466940254533e-23,3.3156498830066994e-05,-3.1763735522036263e-21,-9.042681085702498e-06,4.7397319095011305e-23,3.970466940254533e-23,3.9316006450462737e-07,58.0,25.0,0.015954282134771347,-0.0005974913365207613,-0.0013277585385367274,5.844535280630225e-06,1.6184867490665056e-05,2.947244320239406e-05,-0.0005974913365207613,4.496895053307526e-05,1.6184867490665056e-05,-6.262002330004179e-07,-5.678900834027445e-07,6.3527471044072525e-21,-0.0013277585385367274,1.6184867490665056e-05,0.0002362247760174796,9.676089608439133e-22,-1.3487389196598087e-06,-7.688463483646046e-06,5.844535280630225e-06,-6.262002330004179e-07,9.676089608439133e-22,1.0985968579291239e-08,-1.6376042417573506e-25,-3.542335087595537e-23,1.6184867490665056e-05,-5.678900834027445e-07,-1.3487389196598087e-06,-1.6376042417573506e-25,4.732417124841959e-08,-3.2425480012078685e-22,2.947244320239406e-05,6.3527471044072525e-21,-7.688463483646046e-06,-3.542335087595537e-23,-3.2425480012078685e-22,3.2035265462582174e-07,58.0,26.0,0.015387041494250298,-0.0005750872660428286,-0.0012323298724368215,5.61974547963473e-06,1.4985987945692614e-05,2.631468123581726e-05,-0.0005750872660428286,4.3259598896838725e-05,1.4985987945692614e-05,-6.021156195856747e-07,-5.25824134456343e-07,4.658681209898652e-21,-0.0012323298724368215,1.4985987945692614e-05,0.00021042379376012832,1.9860558039784178e-21,-1.1988790902250912e-06,-6.578670308954315e-06,5.61974547963473e-06,-6.021156195856747e-07,1.9860558039784178e-21,1.05634310187952e-08,-9.596076393455652e-24,-6.542619865842198e-23,1.4985987945692614e-05,-5.25824134456343e-07,-1.1988790902250912e-06,-9.596076393455652e-24,4.206593118283308e-08,3.308722450212111e-24,2.631468123581726e-05,4.658681209898652e-21,-6.578670308954315e-06,-6.542619865842198e-23,3.308722450212111e-24,2.631468021263572e-07,58.0,27.0,0.014858752489089966,-0.0005543031729757786,-0.001146834110841155,5.411606707639294e-06,1.391555997543037e-05,2.359247264394071e-05,-0.0005543031729757786,4.167547740507871e-05,1.391555997543037e-05,-5.79815036871878e-07,-4.88265300191415e-07,2.117582368135751e-22,-0.001146834110841155,1.391555997543037e-05,0.0001882500946521759,7.746130422872127e-22,-1.070427742888569e-06,-5.662193416355876e-06,5.411606707639294e-06,-5.79815036871878e-07,7.746130422872127e-22,1.0172192865809393e-08,-1.8147950228444734e-23,-8.125500826604367e-24,1.391555997543037e-05,-4.88265300191415e-07,-1.070427742888569e-06,-1.8147950228444734e-23,3.755886623935112e-08,2.9778502051908996e-23,2.359247264394071e-05,2.117582368135751e-22,-5.662193416355876e-06,-8.125500826604367e-24,2.9778502051908996e-23,2.177766731392694e-07,58.0,28.0,0.014365537092089653,-0.0005349693237803876,-0.0010699386475607753,5.2183349907863885e-06,1.2955866623087786e-05,2.1233225197647698e-05,-0.0005349693237803876,4.020330015919171e-05,1.2955866623087786e-05,-5.591073204413988e-07,-4.545917988707515e-07,-5.823351512373315e-21,-0.0010699386475607753,1.2955866623087786e-05,0.00016908759425859898,-8.149879784019317e-22,-9.596938070899341e-07,-4.899975010630442e-06,5.2183349907863885e-06,-5.591073204413988e-07,-8.149879784019317e-22,9.808900358621031e-09,-8.445785453872245e-24,3.465255488546392e-23,1.2955866623087786e-05,-4.545917988707515e-07,-9.596938070899341e-07,-8.445785453872245e-24,3.36734657935267e-08,2.5808035111654463e-22,2.1233225197647698e-05,-5.823351512373315e-21,-4.899975010630442e-06,3.465255488546392e-23,2.5808035111654463e-22,1.8148055858091539e-07,58.0,29.0,0.013904012739658356,-0.0005169390933588147,-0.0010005272924900055,5.0383923735353164e-06,1.209214224218158e-05,1.917839836096391e-05,-0.0005169390933588147,3.8831611163914204e-05,1.209214224218158e-05,-5.398277949097974e-07,-4.242857016834023e-07,-1.4823076576950256e-21,-0.0010005272924900055,1.209214224218158e-05,0.0001524416875327006,-1.4924893907354046e-21,-8.637244377496245e-07,-4.261866251908941e-06,5.0383923735353164e-06,-5.398277949097974e-07,-1.4924893907354046e-21,9.47066247647399e-09,7.998971481711443e-24,4.065090174747069e-23,1.209214224218158e-05,-4.242857016834023e-07,-8.637244377496245e-07,7.998971481711443e-24,3.0306122056344975e-08,-7.940933880509066e-23,1.917839836096391e-05,-1.4823076576950256e-21,-4.261866251908941e-06,4.065090174747069e-23,-7.940933880509066e-23,1.522095089967479e-07,58.0,30.0,0.013471221551299095,-0.0005000848323106766,-0.0009376590605825186,4.870445991400629e-06,1.1312004062347114e-05,1.7380421923007816e-05,-0.0005000848323106766,3.755045327125117e-05,1.1312004062347114e-05,-5.218334990786389e-07,-3.9691241227046703e-07,0.0,-0.0009376590605825186,1.1312004062347114e-05,0.0001379122113576159,-5.348600630788399e-22,-7.801381798344664e-07,-3.7243762562866323e-06,4.870445991400629e-06,-5.218334990786389e-07,-5.348600630788399e-22,9.154973668046296e-09,5.8889910190205086e-24,9.114464977904646e-24,1.1312004062347114e-05,-3.9691241227046703e-07,-7.801381798344664e-07,5.8889910190205086e-24,2.737326987301003e-08,-3.143286327701505e-23,1.7380421923007816e-05,0.0,-3.7243762562866323e-06,9.114464977904646e-24,-3.143286327701505e-23,1.28426762557865e-07,58.0,31.0,0.013064561411738396,-0.0004842951602768153,-0.0008805366815067828,4.713334874395514e-06,1.060500380845042e-05,1.580038406245876e-05,-0.0004842951602768153,3.635115353972651e-05,1.060500380845042e-05,-5.050001732342935e-07,-3.7210540426713123e-07,-2.6469779601696886e-21,-0.0008805366815067828,1.060500380845042e-05,0.0001251730282092467,-9.474704652715499e-22,-7.070002538966946e-07,-3.26904500980163e-06,4.713334874395514e-06,-5.050001732342935e-07,-9.474704652715499e-22,8.859652567139165e-09,3.409146021168556e-24,2.805017091744218e-23,1.060500380845042e-05,-3.7210540426713123e-07,-7.070002538966946e-07,3.409146021168556e-24,2.480702576690419e-08,4.4667753077863494e-23,1.580038406245876e-05,-2.6469779601696886e-21,-3.26904500980163e-06,2.805017091744218e-23,4.4667753077863494e-23,1.0896816604599735e-07,58.0,32.0,0.012681733816862106,-0.0004694722592830658,-0.0008284804644063115,4.56604311693809e-06,9.962275726138614e-06,1.4406232367036864e-05,-0.0004694722592830658,3.5226101317675784e-05,9.962275726138614e-06,-4.892189053862239e-07,-3.495535452202603e-07,3.1763735522036263e-22,-0.0008284804644063115,9.962275726138614e-06,0.00011395652836654335,-7.3881424410747e-23,-6.427275138776167e-07,-2.881246473407373e-06,4.56604311693809e-06,-4.892189053862239e-07,-7.3881424410747e-23,8.582787813793402e-09,-8.017890042548066e-25,2.0106626775083826e-24,9.962275726138614e-06,-3.495535452202603e-07,-6.427275138776167e-07,-8.017890042548066e-25,2.2551841283302565e-08,-4.301339185275744e-23,1.4406232367036864e-05,3.1763735522036263e-22,-2.881246473407373e-06,2.0106626775083826e-24,-4.301339185275744e-23,9.294343783494696e-08,58.0,33.0,0.012320702895522118,-0.0004555299528874457,-0.0007809085072949529,4.427678504725918e-06,9.376260095450561e-06,1.3171412319934461e-05,-0.0004555299528874457,3.4168613638030365e-05,9.376260095450561e-06,-4.7439411332561576e-07,-3.289915753157402e-07,1.0587911840678754e-21,-0.0007809085072949529,9.376260095450561e-06,0.00010404174099676311,-1.9246369619205334e-23,-5.860162559656601e-07,-2.5493056909908773e-06,4.427678504725918e-06,-4.7439411332561576e-07,-1.9246369619205334e-23,8.322703415331034e-09,7.32748282399555e-24,-6.458795506053413e-24,9.376260095450561e-06,-3.289915753157402e-07,-5.860162559656601e-07,7.32748282399555e-24,2.0561973457233762e-08,-3.143286327701505e-23,1.3171412319934461e-05,1.0587911840678754e-21,-2.5493056909908773e-06,-6.458795506053413e-24,-3.143286327701505e-23,7.966580284346492e-08,58.0,34.0,0.011979660019278526,-0.00044239204726181924,-0.0007373200496658683,4.2974525058525614e-06,8.840474038152024e-06,1.2073795005562715e-05,-0.00044239204726181924,3.317277878522873e-05,8.840474038152024e-06,-4.6044132773204183e-07,-3.101920640347089e-07,-4.735257616664462e-22,-0.0007373200496658683,8.840474038152024e-06,9.524507913738489e-05,0.0,-5.357862846722128e-07,-2.263836677229847e-06,4.2974525058525614e-06,-4.6044132773204183e-07,0.0,8.077917890148001e-09,8.271806125530277e-25,-0.0,8.840474038152024e-06,-3.101920640347089e-07,-5.357862846722128e-07,8.271806125530277e-25,1.8799518386458658e-08,2.8698529384556085e-23,1.2073795005562715e-05,-4.735257616664462e-22,-2.263836677229847e-06,-0.0,2.8698529384556085e-23,6.860111056994356e-08,58.0,35.0,0.011656989343464375,-0.00042999081779271364,-0.000697282375767827,4.174667992629111e-06,8.349335985258222e-06,1.1094838555436581e-05,-0.00042999081779271364,3.223335443180986e-05,8.349335985258222e-06,-4.47285856353119e-07,-2.9295915737748146e-07,3.615202964582594e-21,-0.000697282375767827,8.349335985258222e-06,8.74132092576474e-05,1.812432087821636e-21,-4.911374276161951e-07,-2.017243332375074e-06,4.174667992629111e-06,-4.47285856353119e-07,1.812432087821636e-21,7.847120286896825e-09,-1.1580528575742387e-23,-3.579005760091279e-23,8.349335985258222e-06,-2.9295915737748146e-07,-4.911374276161951e-07,-1.1580528575742387e-23,1.7232892446372716e-08,-8.438357381816503e-23,1.1094838555436581e-05,3.615202964582594e-21,-2.017243332375074e-06,-3.579005760091279e-23,-8.438357381816503e-23,5.933068791819096e-08,58.0,36.0,0.011351245455443859,-0.00041826601955108345,-0.0006604200461879373,4.058705144416308e-06,7.898021067376249e-06,1.0218930583505426e-05,-0.00041826601955108345,3.134568396490067e-05,7.898021067376249e-06,-4.3486124923219904e-07,-2.77123547220981e-07,-0.0,-0.0006604200461879373,7.898021067376249e-06,8.041734690777957e-05,-1.3234889800848443e-23,-4.5131545789445227e-07,-1.8033406377071515e-06,4.058705144416308e-06,-4.3486124923219904e-07,-1.3234889800848443e-23,7.62914531549086e-09,8.271806125530277e-25,-0.0,7.898021067376249e-06,-2.77123547220981e-07,-4.5131545789445227e-07,8.271806125530277e-25,1.5835631472782552e-08,-0.0,1.0218930583505426e-05,-0.0,-1.8033406377071515e-06,-0.0,-0.0,5.152401882924096e-08,58.0,37.0,0.011061130091547966,-0.0004071637522429228,-0.0006264057592488825,3.949010533688124e-06,7.48233560443623e-06,9.432858860236593e-06,-0.0004071637522429228,3.0505596441798843e-05,7.48233560443623e-06,-4.231082471051195e-07,-2.6253809437548625e-07,3.6898917092437445e-22,-0.0006264057592488825,7.48233560443623e-06,7.414881838485599e-05,0.0,-4.1568529240976204e-07,-1.6170614571819897e-06,3.949010533688124e-06,-4.231082471051195e-07,0.0,7.422952030822216e-09,0.0,-0.0,7.48233560443623e-06,-2.6253809437548625e-07,-4.1568529240976204e-07,0.0,1.458544929278105e-08,-2.049939943650201e-23,9.432858860236593e-06,3.6898917092437445e-22,-1.6170614571819897e-06,-0.0,-2.049939943650201e-23,4.4918376573832575e-08,58.0,38.0,0.010785474441945553,-0.00039663573261350393,-0.0005949535989202559,3.845088940579444e-06,7.098626156221144e-06,8.725394764041994e-06,-0.00039663573261350393,2.9709373848163523e-05,7.098626156221144e-06,-4.119738150620833e-07,-2.490745885097567e-07,-0.0,-0.0005949535989202559,7.098626156221144e-06,6.851546640973538e-05,-2.6469779601696886e-23,-3.837095050585049e-07,-1.454232346986828e-06,3.845088940579444e-06,-4.119738150620833e-07,-2.6469779601696886e-23,7.227610954174679e-09,8.271806125530277e-25,-0.0,7.098626156221144e-06,-2.490745885097567e-07,-3.837095050585049e-07,8.271806125530277e-25,1.3463491654874815e-08,-0.0,8.725394764041994e-06,-0.0,-1.454232346986828e-06,-0.0,-0.0,3.930357905801429e-08,58.0,39.0,0.01052322518080473,-0.00038663847954012454,-0.0005658124573528767,3.7464969864231534e-06,6.743694484612206e-06,8.08695131127024e-06,-0.00038663847954012454,2.8953661967534572e-05,6.743694484612206e-06,-4.0141040358321334e-07,-2.366208633475253e-07,-0.0,-0.0005658124573528767,6.743694484612206e-06,6.343880522763357e-05,1.3234889800848443e-23,-3.549313021267153e-07,-1.3113974546286045e-06,3.7464969864231534e-06,-4.0141040358321334e-07,1.3234889800848443e-23,7.04228764192294e-09,-4.1359030627651384e-25,-0.0,6.743694484612206e-06,-2.366208633475253e-07,-3.549313021267153e-07,-4.1359030627651384e-25,1.245372960312352e-08,-0.0,8.08695131127024e-06,-0.0,-1.3113974546286045e-06,-0.0,-0.0,3.451046026725635e-08,58.0,40.0,0.010273425839841366,-0.0003771329065784812,-0.0005387612618505955,3.652834493550472e-06,6.414733888959745e-06,7.509311672038166e-06,-0.0003771329065784812,2.8235446734470315e-05,6.414733888959745e-06,-3.9137512430897914e-07,-2.2507838082219678e-07,-0.0,-0.0005387612618505955,6.414733888959745e-06,5.885171049158089e-05,-1.3234889800848443e-23,-3.289607093392988e-07,-1.185680730486638e-06,3.652834493550472e-06,-3.9137512430897914e-07,-1.3234889800848443e-23,6.866230251034722e-09,8.271806125530277e-25,-0.0,6.414733888959745e-06,-2.2507838082219678e-07,-3.289607093392988e-07,8.271806125530277e-25,1.1542481637150104e-08,-0.0,7.509311672038166e-06,-0.0,-1.185680730486638e-06,-0.0,-0.0,3.040207019466834e-08,58.0,41.0,0.01003521028906107,-0.00036808353615924716,-0.0005136049585416913,3.5637410746858222e-06,6.109270543674938e-06,6.985405889281537e-06,-0.00036808353615924716,2.7552005121833645e-05,6.109270543674938e-06,-3.8182940897968365e-07,-2.1436036945488013e-07,-0.0,-0.0005136049585416913,6.109270543674938e-06,5.4696549341315404e-05,0.0,-3.0546351581506315e-07,-1.0746778116299538e-06,3.5637410746858222e-06,-3.8182940897968365e-07,0.0,6.698761545465004e-09,-4.1359030627651384e-25,-0.0,6.109270543674938e-06,-2.1436036945488013e-07,-3.0546351581506315e-07,-4.1359030627651384e-25,1.0718018472744006e-08,-0.0,6.985405889281537e-06,-0.0,-1.0746778116299538e-06,-0.0,-0.0,2.686694600129158e-08,58.0,42.0,0.009807792492210865,-0.00035945835406892,-0.0004901704378426075,3.4788899938575923e-06,5.825118478242075e-06,6.509128525067354e-06,-0.00035945835406892,2.6900872398982756e-05,5.825118478242075e-06,-3.727382136275992e-07,-2.043901190518227e-07,-0.0,-0.0004901704378426075,5.825118478242075e-06,5.092363790026866e-05,0.0,-2.8415212227628217e-07,-9.76369278760103e-07,3.4788899938575923e-06,-3.727382136275992e-07,0.0,6.539266905747354e-09,-4.1359030627651384e-25,-0.0,5.825118478242075e-06,-2.043901190518227e-07,-2.8415212227628217e-07,-4.1359030627651384e-25,9.970249514879015e-09,-0.0,6.509128525067354e-06,-0.0,-9.76369278760103e-07,-0.0,-0.0,2.3813884197920743e-08,58.0,43.0,0.009590454399585724,-0.00035122816916555166,-0.00046830420615151525,3.397985665287706e-06,5.560340014199028e-06,6.075186320231296e-06,-0.00035122816916555166,2.627980757097248e-05,5.560340014199028e-06,-3.640699048901297e-07,-1.9509965909492166e-07,2.366796276087297e-22,-0.00046830420615151525,5.560340014199028e-06,4.748999708681367e-05,1.3234889800848443e-23,-2.647780945608247e-07,-8.890517051440838e-07,3.397985665287706e-06,-3.640699048901297e-07,1.3234889800848443e-23,6.387191220369459e-09,-8.271806125530277e-25,1.043657668961373e-39,5.560340014199028e-06,-1.9509965909492166e-07,-2.647780945608247e-07,-8.271806125530277e-25,9.290459956901032e-09,-1.1270458908336217e-23,6.075186320231296e-06,2.366796276087297e-22,-8.890517051440838e-07,1.043657668961373e-39,-1.1270458908336217e-23,2.1167897656937384e-08,58.0,44.0,0.009382539428770542,-0.00034336643875576556,-0.0004478692717384547,3.320758651170763e-06,5.313213932822691e-06,5.6789785958244465e-06,-0.00034336643875576556,2.5686777007649653e-05,5.313213932822691e-06,-3.5579557788878446e-07,-1.86428565029928e-07,-0.0,-0.0004478692717384547,5.313213932822691e-06,4.4358326704241335e-05,2.6469779601696886e-23,-2.4712622348488367e-07,-8.112826890283031e-07,3.320758651170763e-06,-3.5579557788878446e-07,2.6469779601696886e-23,6.2420277835428806e-09,-8.271806125530277e-25,-0.0,5.313213932822691e-06,-1.86428565029928e-07,-2.4712622348488367e-07,-8.271806125530277e-25,8.671095841350507e-09,-0.0,5.6789785958244465e-06,-0.0,-8.112826890283031e-07,-0.0,-0.0,1.88670394862811e-08,58.0,45.0,0.009183447808027267,-0.00033584903576411307,-0.00042874342761933804,3.2469640700583113e-06,5.082204552309122e-06,5.316490842233179e-06,-0.00033584903576411307,2.511992170184385e-05,5.082204552309122e-06,-3.4788899938575923e-07,-1.7832296350661636e-07,-0.0,-0.00042874342761933804,5.082204552309122e-06,4.149613596382551e-05,0.0,-2.3100930945929576e-07,-7.418358904942579e-07,3.2469640700583113e-06,-3.4788899938575923e-07,0.0,6.103316074757004e-09,-4.1359030627651384e-25,-0.0,5.082204552309122e-06,-1.7832296350661636e-07,-2.3100930945929576e-07,-4.1359030627651384e-25,8.105589976992178e-09,-0.0,5.316490842233179e-06,-0.0,-7.418358904942579e-07,-0.0,-0.0,1.6859907248090167e-08,58.0,46.0,0.008992630057036877,-0.0003286537539679557,-0.000410817185183987,3.176377958880039e-06,4.865940809395397e-06,4.984210136171896e-06,-0.0003286537539679557,2.457754817442037e-05,4.865940809395397e-06,-3.4032620988000417e-07,-1.7073476499263052e-07,7.940933880509066e-23,-0.000410817185183987,4.865940809395397e-06,3.887504499289207e-05,-0.0,-2.1626402713081916e-07,-6.796649927309772e-07,3.176377958880039e-06,-3.4032620988000417e-07,-0.0,5.970635097440891e-09,-4.1359030627651384e-25,2.0679515313825692e-25,4.865940809395397e-06,-1.7073476499263052e-07,-2.1626402713081916e-07,-4.1359030627651384e-25,7.58821183666214e-09,-3.7223127564886245e-24,4.984210136171896e-06,7.940933880509066e-23,-6.796649927309772e-07,2.0679515313825692e-25,-3.7223127564886245e-24,1.5103665873539285e-08,58.0,47.0,0.008809580467641354,-0.0003217603371012956,-0.0003939922316931188,3.1087954539543716e-06,4.66319306724472e-06,4.679054200096289e-06,-0.0003217603371012956,2.405810300842859e-05,4.66319306724472e-06,-3.3308521096842014e-07,-1.636208111222004e-07,9.26442286059391e-23,-0.0003939922316931188,4.66319306724472e-06,3.647018820629455e-05,1.581642291368791e-23,-2.0274752898785664e-07,-6.238739160835394e-07,3.1087954539543716e-06,-3.3308521096842014e-07,1.581642291368791e-23,5.843600270338811e-09,3.256625878816089e-25,-4.77357335208182e-25,4.66319306724472e-06,-1.636208111222004e-07,-2.0274752898785664e-07,3.256625878816089e-25,7.113948097270395e-09,-4.1359030627651384e-24,4.679054200096289e-06,9.26442286059391e-23,-6.238739160835394e-07,-4.77357335208182e-25,-4.1359030627651384e-24,1.3562476475215135e-08,58.0,48.0,0.00863383524119854,-0.0003151501587126404,-0.00037818020791746676,3.0440287446253933e-06,4.47285856353119e-06,4.39831092080567e-06,-0.0003151501587126404,2.3560161935165524e-05,4.47285856353119e-06,-3.261459369241493e-07,-1.569424057379365e-07,2.6469779601696886e-23,-0.00037818020791746676,4.47285856353119e-06,3.425971226533875e-05,-1.4857781786723422e-23,-1.9033441844840127e-07,-5.736927732868935e-07,3.0440287446253933e-06,-3.261459369241493e-07,-1.4857781786723422e-23,5.721858542528935e-09,4.961346899427709e-25,4.2004414990544995e-26,4.47285856353119e-06,-1.569424057379365e-07,-1.9033441844840127e-07,4.961346899427709e-25,6.6784004992825885e-09,-1.2407709188295415e-24,4.39831092080567e-06,2.6469779601696886e-23,-5.736927732868935e-07,4.2004414990544995e-26,-1.2407709188295415e-24,1.2206228916511463e-08,58.0,49.0,0.008464964106678963,-0.0003088061639573425,-0.0003633013693615794,2.9819057090207934e-06,4.293944130040472e-06,4.1395869629923254e-06,-0.0003088061639573425,2.308241710125003e-05,4.293944130040472e-06,-3.1948991363606183e-07,-1.5066471803493187e-07,-5.293955920339377e-23,-0.0003633013693615794,4.293944130040472e-06,3.222436134819873e-05,-0.0,-1.789143482255895e-07,-5.284579174258397e-07,2.9819057090207934e-06,-3.1948991363606183e-07,-0.0,5.6050861729772805e-09,2.0679515313825692e-25,-2.0679515313825692e-25,4.293944130040472e-06,-1.5066471803493187e-07,-1.789143482255895e-07,2.0679515313825692e-25,6.277696584788828e-09,2.481541837659083e-24,4.1395869629923254e-06,-5.293955920339377e-23,-5.284579174258397e-07,-2.0679515313825692e-25,2.481541837659083e-24,1.100953994637166e-08,58.0,50.0,0.008302572183310986,-0.0003027125494554639,-0.0003492837131489068,2.9222676403151127e-06,4.125554369238671e-06,3.900764568243176e-06,-0.0003027125494554639,2.2623664335696958e-05,4.125554369238671e-06,-3.1310011650020897e-07,-1.4475629939170176e-07,-1.138200522872966e-21,-0.0003492837131489068,4.125554369238671e-06,3.034713154193014e-05,-1.0265556769079033e-21,-1.6838997396462219e-07,-4.87595571030397e-07,2.9222676403151127e-06,-3.1310011650020897e-07,-1.0265556769079033e-21,5.492984289645619e-09,7.143712154097978e-24,1.7321127758742677e-23,4.125554369238671e-06,-1.4475629939170176e-07,-1.6838997396462219e-07,7.143712154097978e-24,5.908419975497736e-09,7.858215819253763e-24,3.900764568243176e-06,-1.138200522872966e-21,-4.87595571030397e-07,1.7321127758742677e-23,7.858215819253763e-24,9.950929857893698e-09,58.0,51.0,0.008146294392645359,-0.00029685479239560664,-0.00033606201759539545,2.864968337235041e-06,3.966879376093857e-06,3.679966539493762e-06,-0.00029685479239560664,2.218279223598074e-05,3.966879376093857e-06,-3.0696088515469455e-07,-1.391887423096705e-07,3.970466940254533e-23,-0.00033606201759539545,3.966879376093857e-06,2.8612956157303415e-05,1.2408891690792341e-23,-1.586751636750705e-07,-4.5060815523356723e-07,2.864968337235041e-06,-3.0696088515469455e-07,1.2408891690792341e-23,5.385278889491474e-09,-2.756095360086587e-25,1.1375019111805245e-26,3.966879376093857e-06,-1.391887423096705e-07,-1.586751636750705e-07,-2.756095360086587e-25,5.567549976603914e-09,-1.2407709188295415e-24,3.679966539493762e-06,3.970466940254533e-23,-4.5060815523356723e-07,1.1375019111805245e-26,-1.2407709188295415e-24,9.012162571764293e-09,58.0,52.0,0.007995790801942348,-0.00029121944680809975,-0.00032357717282138765,2.809872739817365e-06,3.817185643129051e-06,3.4755239539663307e-06,-0.00029121944680809975,2.175877489207778e-05,3.817185643129051e-06,-3.0105780979283736e-07,-1.3393633935265825e-07,-2.6469779601696886e-23,-0.00032357717282138765,3.817185643129051e-06,2.7008460165234283e-05,-0.0,-1.4969354822369496e-07,-4.170628642441443e-07,2.809872739817365e-06,-3.0105780979283736e-07,-0.0,5.2817155093976e-09,-2.0679515313825692e-25,2.0679515313825692e-25,3.817185643129051e-06,-1.3393633935265825e-07,-1.4969354822369496e-07,-2.0679515313825692e-25,5.252405621547496e-09,8.271806125530277e-25,3.4755239539663307e-06,-2.6469779601696886e-23,-4.170628642441443e-07,2.0679515313825692e-25,8.271806125530277e-25,8.17770384742289e-09,58.0,53.0,0.007850746624171734,-0.00028579411446116865,-0.0003117753949481994,2.756856247287942e-06,3.675808329717256e-06,3.285950015197159e-06,-0.00028579411446116865,2.1350666429498233e-05,3.675808329717256e-06,-2.953774469460768e-07,-1.2897572787551326e-07,9.26442286059391e-22,-0.0003117753949481994,3.675808329717256e-06,2.5521743737044744e-05,7.858486934969669e-22,-1.4137724235752103e-07,-3.865823430260207e-07,2.756856247287942e-06,-2.953774469460768e-07,7.858486934969669e-22,5.182060558439616e-09,-4.146400040400462e-24,-1.335095490583361e-23,3.675808329717256e-06,-1.2897572787551326e-07,-1.4137724235752103e-07,-4.146400040400462e-24,4.960605259896056e-09,-7.858215819253763e-24,3.285950015197159e-06,9.26442286059391e-22,-3.865823430260207e-07,-1.335095490583361e-23,-7.858215819253763e-24,7.434275861584183e-09,58.0,54.0,0.00771087221801281,-0.00028056721203029156,-0.00030060773133300245,2.705803353819647e-06,3.542142621881794e-06,3.1099168609216576e-06,-0.00028056721203029156,2.0957584638381377e-05,3.542142621881794e-06,-2.89907518435939e-07,-1.2428570528300042e-07,-2.6469779601696886e-23,-0.00030060773133300245,3.542142621881794e-06,2.4142191250575706e-05,-0.0,-1.336657646788808e-07,-3.5883655868929054e-07,2.705803353819647e-06,-2.89907518435939e-07,-0.0,5.0860964329046965e-09,4.1359030627651384e-25,-1.0339757656912846e-25,3.542142621881794e-06,-1.2428570528300042e-07,-1.336657646788808e-07,4.1359030627651384e-25,4.690026589315721e-09,1.2407709188295415e-24,3.1099168609216576e-06,-2.6469779601696886e-23,-3.5883655868929054e-07,-1.0339757656912846e-25,1.2407709188295415e-24,6.770501048691813e-09,58.0,55.0,0.0075758942402899265,-0.0002755280875135213,-0.00029002956580370665,2.6566069664113456e-06,3.415637593207066e-06,2.9462371458066627e-06,-0.0002755280875135213,2.0578716430463828e-05,3.415637593207066e-06,-2.846364566266857e-07,-1.1984693060185236e-07,-7.345363839470886e-22,-0.00029002956580370665,3.415637593207066e-06,2.2860320314066485e-05,-7.633844592711692e-22,-1.265050997290018e-07,-3.3353626349708065e-07,2.6566069664113456e-06,-2.846364566266857e-07,-7.633844592711692e-22,4.9936219603807785e-09,4.844823959294674e-24,9.586955583669487e-24,3.415637593207066e-06,-1.1984693060185236e-07,-1.265050997290018e-07,4.844823959294674e-24,4.438775125237271e-09,5.997059441009451e-24,2.9462371458066627e-06,-7.345363839470886e-22,-3.3353626349708065e-07,9.586955583669487e-24,5.997059441009451e-24,6.176597455720412e-09,58.0,56.0,0.007445560302585363,-0.00027066681650467217,-0.00028000015299767256,2.6091674953931943e-06,3.2957905204966664e-06,2.793845396809047e-06,-0.00027066681650467217,2.021330510615371e-05,3.2957905204966664e-06,-2.795536602206994e-07,-1.1564177526679487e-07,1.9852334701272664e-23,-0.00028000015299767256,3.2957905204966664e-06,2.1667632609023713e-05,9.396837738928507e-24,-1.1984693060185236e-07,-3.104272821019549e-07,2.6091674953931943e-06,-2.795536602206994e-07,9.396837738928507e-24,4.9044501793105155e-09,-5.197532100969913e-26,-1.3462637346148403e-25,3.2957905204966664e-06,-1.1564177526679487e-07,-1.1984693060185236e-07,-5.197532100969913e-26,4.205155335057498e-09,-6.203854594147708e-25,2.793845396809047e-06,1.9852334701272664e-23,-3.104272821019549e-07,-1.3462637346148403e-25,-6.203854594147708e-25,5.6441322726641374e-09,58.0,57.0,0.00731963524594903,-0.00026597408577799797,-0.00027048212359659374,2.5633926270529628e-06,3.182142563673551e-06,2.651785507623572e-06,-0.00026597408577799797,1.986064489756245e-05,3.182142563673551e-06,-2.7464921004138887e-07,-1.1165413127400825e-07,3.639594695233322e-22,-0.00027048212359659374,3.182142563673551e-06,2.055650475085713e-05,6.686221959326969e-22,-1.1364794971768788e-07,-2.892857082770206e-07,2.5633926270529628e-06,-2.7464921004138887e-07,6.686221959326969e-22,4.818407450812856e-09,-6.178062392421054e-24,-9.409325407058156e-24,3.182142563673551e-06,-1.1165413127400825e-07,-1.1364794971768788e-07,-6.178062392421054e-24,3.987647545500295e-09,4.963083675318166e-24,2.651785507623572e-06,3.639594695233322e-22,-2.892857082770206e-07,-9.409325407058156e-24,4.963083675318166e-24,5.165816219232511e-09,58.0,58.0,0.00719789881259203,-0.00026144133880734444,-0.00026144133880734444,2.5191961867676582e-06,3.0742733088118257e-06,2.5191961867676582e-06,-0.00026144133880734444,1.9520079149515368e-05,3.0742733088118257e-06,-2.699138974548987e-07,-1.0786924065087078e-07,-4.036641389258775e-22,-0.00026144133880734444,3.0742733088118257e-06,1.9520079149515368e-05,-6.264458801636876e-22,-1.0786924065087078e-07,-2.699138974548987e-07,2.5191961867676582e-06,-2.699138974548987e-07,-6.264458801636876e-22,4.735331238236995e-09,5.9433230250067005e-24,8.558782678797008e-24,3.0742733088118257e-06,-1.0786924065087078e-07,-1.0786924065087078e-07,5.9433230250067005e-24,3.784885738156163e-09,-1.8611563782443123e-24,2.5191961867676582e-06,-4.036641389258775e-22,-2.699138974548987e-07,8.558782678797008e-24,-1.8611563782443123e-24,4.735331238236995e-09,58.0,59.0,0.00708014564588666,-0.0002570604847278446,-0.00025284639559686184,2.4764981390035246e-06,2.971797584905289e-06,2.3953014078870183e-06,-0.0002570604847278446,1.9190998500562273e-05,2.971797584905289e-06,-2.65339082261562e-07,-1.0427360308540301e-07,-1.9852334701272664e-23,-0.00025284639559686184,2.971797584905289e-06,1.8552183973952197e-05,-8.045727267563892e-24,-1.0247578074995545e-07,-2.521369992791733e-07,2.4764981390035246e-06,-2.65339082261562e-07,-8.045727267563892e-24,4.655071439430003e-09,4.444178564649997e-26,1.0934699295298231e-25,2.971797584905289e-06,-1.0427360308540301e-07,-1.0247578074995545e-07,4.444178564649997e-26,3.5956413402260523e-09,4.1359030627651384e-25,2.3953014078870183e-06,-1.9852334701272664e-23,-2.521369992791733e-07,1.0934699295298231e-25,4.1359030627651384e-25,4.347189275222263e-09,58.0,60.0,0.006966182962059975,-0.0002528240729589015,-0.0002446684520691633,2.4352229957003146e-06,2.8743615985149518e-06,2.2793997231929097e-06,-0.0002528240729589015,1.8872828150051646e-05,2.8743615985149518e-06,-2.609167495393194e-07,-1.0085479829058386e-07,-3.970466940254533e-23,-0.0002446684520691633,2.8743615985149518e-06,1.7647244021645747e-05,-0.0,-9.743598639033735e-08,-2.3579997332490166e-07,2.4352229957003146e-06,-2.609167495393194e-07,-0.0,4.577486834023148e-09,-2.0679515313825692e-25,1.0339757656912846e-25,2.8743615985149518e-06,-1.0085479829058386e-07,-9.743598639033735e-08,-2.0679515313825692e-25,3.418806571175992e-09,1.4475660719677984e-24,2.2793997231929097e-06,-3.970466940254533e-23,-2.3579997332490166e-07,1.0339757656912846e-25,1.4475660719677984e-24,3.996609709844279e-09,58.0,61.0,0.006855831015855074,-0.0002487250021658838,-0.00023688095097895712,2.3953014078870183e-06,2.78164020528493e-06,2.170856760130846e-06,-0.0002487250021658838,1.8565038772067055e-05,2.78164020528493e-06,-2.566394243785908e-07,-9.760141495007701e-08,-1.9190590211230242e-22,-0.00023688095097895712,2.78164020528493e-06,1.6800224329927005e-05,-4.735858413129878e-22,-9.272134349203043e-08,-2.2076510219903867e-07,2.3953014078870183e-06,-2.566394243785908e-07,-4.735858413129878e-22,4.502446415699524e-09,4.061311925441513e-24,6.5333968985688065e-24,2.78164020528493e-06,-9.760141495007701e-08,-9.272134349203043e-08,4.061311925441513e-24,3.2533804539269795e-09,-5.37667398159468e-24,2.170856760130846e-06,-1.9190590211230242e-22,-2.2076510219903867e-07,6.5333968985688065e-24,-5.37667398159468e-24,3.6794183255750568e-09,58.0,62.0,0.006748920306563377,-0.00024475675309076905,-0.0002294594596605748,2.356667437197757e-06,2.69333418145834e-06,2.069097945422982e-06,-0.00024475675309076905,1.8267126506543718e-05,2.69333418145834e-06,-2.5250008661714674e-07,-9.45029583476753e-08,0.0,-0.0002294594596605748,2.69333418145834e-06,1.6006562873371877e-05,-6.941740096534243e-24,-8.830603803744452e-08,-2.069097888579563e-07,2.356667437197757e-06,-2.5250008661714674e-07,-6.941740096534243e-24,4.429826283569582e-09,2.4509178628879507e-25,-1.3664757993059208e-26,2.69333418145834e-06,-9.45029583476753e-08,-8.830603803744452e-08,2.4509178628879507e-25,3.098457490580131e-09,0.0,2.069097945422982e-06,0.0,-2.069097888579563e-07,-1.3664757993059208e-26,0.0,3.3919638209312097e-09,58.0,63.0,0.006645293440669775,-0.0002409131411695853,-0.00022238136443775147,2.319260147487512e-06,2.6091674953931943e-06,1.9736010017368244e-06,-0.0002409131411695853,1.7978625692194328e-05,2.6091674953931943e-06,-2.4849214241839945e-07,-9.154973668046296e-08,-4.632211430296955e-23,-0.00022238136443775147,2.6091674953931943e-06,1.5262121451087296e-05,1.3237780187205173e-23,-8.416669317057313e-08,-1.941246949854758e-07,2.319260147487512e-06,-2.4849214241839945e-07,1.3237780187205173e-23,4.359511418527973e-09,-2.797981162444461e-25,-6.497876242291838e-26,2.6091674953931943e-06,-9.154973668046296e-08,-8.416669317057313e-08,-2.797981162444461e-25,2.9532174483648532e-09,1.7577588016751838e-24,1.9736010017368244e-06,-4.632211430296955e-23,-1.941246949854758e-07,-6.497876242291838e-26,1.7577588016751838e-24,3.131043646575904e-09,58.0,64.0,0.006544800475239754,-0.00023718838929198682,-0.00021562579786404967,2.283021558469045e-06,2.528885488572996e-06,1.8838919686459121e-06,-0.00023718838929198682,1.7699096133583225e-05,2.528885488572996e-06,-2.4460945269311196e-07,-8.873282553167883e-08,-5.293955920339377e-23,-0.00021562579786404967,2.528885488572996e-06,1.456314384995494e-05,-6.315756880136024e-24,-8.028207787447172e-08,-1.8231212095543015e-07,2.283021558469045e-06,-2.4460945269311196e-07,-6.315756880136024e-24,4.291393906896701e-09,2.4161194827254217e-25,-2.4332295984257535e-26,2.528885488572996e-06,-8.873282553167883e-08,-8.028207787447172e-08,2.4161194827254217e-25,2.816915145587018e-09,1.8611563782443123e-24,1.8838919686459121e-06,-5.293955920339377e-23,-1.8231212095543015e-07,-2.4332295984257535e-26,1.8611563782443123e-24,2.8938431650971097e-09,59.0,3.0,0.08342595398426056,-0.004098360426723957,-0.05000000074505806,4.6309160097735e-05,0.0008474576170556247,0.008474576286971569,-0.004098360426723957,0.00033143407199531794,0.0008474576170556247,-4.874648311670171e-06,-2.9222675948403776e-05,-2.168404344971009e-19,-0.05000000074505806,0.0008474576170556247,0.1347457617521286,2.1259158896897958e-20,-0.0008474576170556247,-0.050847455859184265,4.6309160097735e-05,-4.874648311670171e-06,2.1259158896897958e-20,8.404565932096375e-08,2.657937446953743e-22,-1.4783418759574593e-20,0.0008474576170556247,-2.9222675948403776e-05,-0.0008474576170556247,2.657937446953743e-22,2.9222675948403776e-05,9.215718466126788e-19,0.008474576286971569,-2.168404344971009e-19,-0.050847455859184265,-1.4783418759574593e-20,9.215718466126788e-19,0.025423727929592133,59.0,4.0,0.06964573264122009,-0.0032008890993893147,-0.03254237398505211,3.4731870982795954e-05,0.0005084745935164392,0.0042372881434857845,-0.0032008890993893147,0.00025295894010923803,0.0005084745935164392,-3.655986347439466e-06,-1.7533606296638027e-05,2.710505431213761e-20,-0.03254237398505211,0.0005084745935164392,0.05135593190789223,3.45420930279341e-21,-0.000338983052643016,-0.012711863964796066,3.4731870982795954e-05,-3.655986347439466e-06,3.45420930279341e-21,6.303424981979333e-08,-7.925780809152856e-23,-3.8194885555438387e-22,0.0005084745935164392,-1.7533606296638027e-05,-0.000338983052643016,-7.925780809152856e-23,1.168907056126045e-05,-1.3552527156068805e-20,0.0042372881434857845,2.710505431213761e-20,-0.012711863964796066,-3.8194885555438387e-22,-1.3552527156068805e-20,0.0042372881434857845,59.0,5.0,0.05981343984603882,-0.002628508023917675,-0.022905569523572922,2.7785496058641e-05,0.000338983052643016,0.002421307610347867,-0.002628508023917675,0.00020470497838687152,0.000338983052643016,-2.9247889870021027e-06,-1.168907056126045e-05,-5.55653613398821e-19,-0.022905569523572922,0.000338983052643016,0.0259806290268898,-4.524110071787498e-21,-0.000169491526321508,-0.004842615220695734,2.7785496058641e-05,-2.9247889870021027e-06,-4.524110071787498e-21,5.042739914529193e-08,-1.5512170937685563e-22,2.4462669062292796e-21,0.000338983052643016,-1.168907056126045e-05,-0.000169491526321508,-1.5512170937685563e-22,5.844535280630225e-06,2.0328790734103208e-19,0.002421307610347867,-5.55653613398821e-19,-0.004842615220695734,2.4462669062292796e-21,2.0328790734103208e-19,0.0012106538051739335,59.0,6.0,0.0524272620677948,-0.0022307783365249634,-0.017009684816002846,2.31545800488675e-05,0.00024213074357248843,0.0015133172273635864,-0.0022307783365249634,0.00017197903071064502,0.00024213074357248843,-2.4373241558350855e-06,-8.349335985258222e-06,-2.168404344971009e-19,-0.017009684816002846,0.00024213074357248843,0.015127118676900864,-1.0492320781140595e-20,-9.685230179456994e-05,-0.0022699758410453796,2.31545800488675e-05,-2.4373241558350855e-06,-1.0492320781140595e-20,4.2022829660481875e-08,9.271302358776161e-23,1.3778252143654882e-21,0.00024213074357248843,-8.349335985258222e-06,-9.685230179456994e-05,9.271302358776161e-23,3.339734576002229e-06,4.743384504624082e-20,0.0015133172273635864,-2.168404344971009e-19,-0.0022699758410453796,1.3778252143654882e-21,4.743384504624082e-20,0.00045399516238830984,59.0,7.0,0.04667004197835922,-0.001938038389198482,-0.013135593384504318,1.984678237931803e-05,0.00018159806495532393,0.001008878112770617,-0.001938038389198482,0.00014830517466180027,0.00018159806495532393,-2.0891350231977412e-06,-6.262001988943666e-06,-1.6940658945086007e-19,-0.013135593384504318,0.00018159806495532393,0.009624697268009186,-1.825590035285233e-21,-6.053268589312211e-05,-0.0012106538051739335,1.984678237931803e-05,-2.0891350231977412e-06,-1.825590035285233e-21,3.601957132559619e-08,-3.4051647979520865e-23,4.626975413370205e-22,0.00018159806495532393,-6.262001988943666e-06,-6.053268589312211e-05,-3.4051647979520865e-23,2.0873339963145554e-06,4.2351647362715017e-20,0.001008878112770617,-1.6940658945086007e-19,-0.0012106538051739335,4.626975413370205e-22,4.2351647362715017e-20,0.00020177561964374036,59.0,8.0,0.04205450415611267,-0.0017134388908743858,-0.010451977141201496,1.7365935491397977e-05,0.00014124294102657586,0.0007062146905809641,-0.0017134388908743858,0.0001303758326685056,0.00014124294102657586,-1.827993173719733e-06,-4.870445991400629e-06,1.3213713977167085e-19,-0.010451977141201496,0.00014124294102657586,0.006517352536320686,1.2720704961680104e-20,-4.035512392874807e-05,-0.0007062146905809641,1.7365935491397977e-05,-1.827993173719733e-06,1.2720704961680104e-20,3.1517124909896665e-08,-1.14148867183077e-22,-1.1420840914202564e-21,0.00014124294102657586,-4.870445991400629e-06,-4.035512392874807e-05,-1.14148867183077e-22,1.391555997543037e-06,-1.3552527156068805e-20,0.0007062146905809641,1.3213713977167085e-19,-0.0007062146905809641,-1.1420840914202564e-21,-1.3552527156068805e-20,0.00010088780982187018,59.0,9.0,0.03827090188860893,-0.001535611692816019,-0.00851566530764103,1.54363860929152e-05,0.00011299434845568612,0.0005136106628924608,-0.001535611692816019,0.00011632256064331159,0.00011299434845568612,-1.6248827705567237e-06,-3.896356702171033e-06,1.6940658945086007e-20,-0.00851566530764103,0.00011299434845568612,0.004623596556484699,3.974659388866984e-21,-2.824858711392153e-05,-0.0004402377235237509,1.54363860929152e-05,-1.6248827705567237e-06,3.974659388866984e-21,2.801522036577353e-08,-4.272264296664194e-23,-3.1880900930212032e-22,0.00011299434845568612,-3.896356702171033e-06,-2.824858711392153e-05,-4.272264296664194e-23,9.740891755427583e-07,1.0587911840678754e-21,0.0005136106628924608,1.6940658945086007e-20,-0.0004402377235237509,-3.1880900930212032e-22,1.0587911840678754e-21,5.502971544046886e-05,59.0,10.0,0.03511252999305725,-0.00139129557646811,-0.007072418928146362,1.38927480293205e-05,9.244992543244734e-05,0.0003852080262731761,-0.00139129557646811,0.00010500909411348403,9.244992543244734e-05,-1.4623944935010513e-06,-3.1879283142188797e-06,1.1180834903756764e-19,-0.007072418928146362,9.244992543244734e-05,0.003401386784389615,8.914858272433561e-21,-2.0544426661217585e-05,-0.00028890601242892444,1.38927480293205e-05,-1.4623944935010513e-06,8.914858272433561e-21,2.5213699572645965e-08,-8.938297033867233e-23,-6.365641509219633e-22,9.244992543244734e-05,-3.1879283142188797e-06,-2.0544426661217585e-05,-8.938297033867233e-23,7.084285016389913e-07,-1.376428539288238e-20,0.0003852080262731761,1.1180834903756764e-19,-0.00028890601242892444,-6.365641509219633e-22,-1.376428539288238e-20,3.21006664307788e-05,59.0,11.0,0.0324360691010952,-0.0012718179496005177,-0.0059677609242498875,1.262977093574591e-05,7.704160088906065e-05,0.0002963138686027378,-0.0012718179496005177,9.570432303007692e-05,7.704160088906065e-05,-1.3294495602167444e-06,-2.6566069664113456e-06,-1.1350241493207625e-19,-0.0059677609242498875,7.704160088906065e-05,0.0025763502344489098,-1.3956121824747926e-20,-1.540832090540789e-05,-0.00019754256936721504,1.262977093574591e-05,-1.3294495602167444e-06,-1.3956121824747926e-20,2.2921543774145903e-08,6.779115316517664e-23,1.1076050386022868e-21,7.704160088906065e-05,-2.6566069664113456e-06,-1.540832090540789e-05,6.779115316517664e-23,5.313214046509529e-07,7.835054762102278e-21,0.0002963138686027378,-1.1350241493207625e-19,-0.00019754256936721504,1.1076050386022868e-21,7.835054762102278e-21,1.9754257664317265e-05,59.0,12.0,0.03013894334435463,-0.001171265495941043,-0.0051033711060881615,1.157729002443375e-05,6.518905138364062e-05,0.00023281802714336663,-0.001171265495941043,8.791629079496488e-05,6.518905138364062e-05,-1.2186620779175428e-06,-2.247898237328627e-06,-7.115076756936123e-20,-0.0051033711060881615,6.518905138364062e-05,0.0019988485146313906,-9.72956332113867e-21,-1.1852554052893538e-05,-0.00013969081919640303,1.157729002443375e-05,-1.2186620779175428e-06,-9.72956332113867e-21,2.1011414830240938e-08,4.2242150944715444e-23,7.149526406068256e-22,6.518905138364062e-05,-2.247898237328627e-06,-1.1852554052893538e-05,4.2242150944715444e-23,4.087087575044279e-07,5.823351512373315e-21,0.00023281802714336663,-7.115076756936123e-20,-0.00013969081919640303,7.149526406068256e-22,5.823351512373315e-21,1.2699165381491184e-05,59.0,13.0,0.028145791962742805,-0.0010854663560166955,-0.004414229653775692,1.0686729183362331e-05,5.587632767856121e-05,0.00018625443044584244,-0.0010854663560166955,8.130171045195311e-05,5.587632767856121e-05,-1.124918867390079e-06,-1.926769982674159e-06,3.6422416731934915e-20,-0.004414229653775692,5.587632767856121e-05,0.0015823160065338016,4.435306901592389e-21,-9.312720976595301e-06,-0.00010159332305192947,1.0686729183362331e-05,-1.124918867390079e-06,4.435306901592389e-21,1.9395152150991635e-08,-1.0580409142381378e-23,-3.5464101537052915e-22,5.587632767856121e-05,-1.926769982674159e-06,-9.312720976595301e-06,-1.0580409142381378e-23,3.211283114978869e-07,-2.4352197233561135e-21,0.00018625443044584244,3.6422416731934915e-20,-0.00010159332305192947,-3.5464101537052915e-22,-2.4352197233561135e-21,8.466110557492357e-06,59.0,14.0,0.026399992406368256,-0.0010113921016454697,-0.0038559322711080313,9.923391189659014e-06,4.842615089728497e-05,0.0001513317256467417,-0.0010113921016454697,7.56137233111076e-05,4.842615089728497e-05,-1.0445675115988706e-06,-1.6698672880011145e-06,4.912791094074942e-20,-0.0038559322711080313,4.842615089728497e-05,0.001274213078431785,3.998392363863867e-21,-7.450176781276241e-06,-7.566586282337084e-05,9.923391189659014e-06,-1.0445675115988706e-06,3.998392363863867e-21,1.8009785662798095e-08,-9.11472845744699e-24,-2.81199554463842e-22,4.842615089728497e-05,-1.6698672880011145e-06,-7.450176781276241e-06,-9.11472845744699e-24,2.569026662513352e-07,-4.182225177068108e-21,0.0001513317256467417,4.912791094074942e-20,-7.566586282337084e-05,-2.81199554463842e-22,-4.182225177068108e-21,5.820450951432576e-06,59.0,15.0,0.024858171120285988,-0.0009467907948419452,-0.0033973080571740866,9.261832019547e-06,4.2372881580377e-05,0.00012462612357921898,-0.0009467907948419452,7.067021215334535e-05,4.2372881580377e-05,-9.749296623340342e-07,-1.4611338201575563e-06,2.625802136488331e-20,-0.0033973080571740866,4.2372881580377e-05,0.0010413539130240679,8.060820543263486e-22,-6.053268862160621e-06,-5.751974822487682e-05,9.261832019547e-06,-9.749296623340342e-07,8.060820543263486e-22,1.680913186419275e-08,-5.338062395727732e-24,-4.4261063726785854e-23,4.2372881580377e-05,-1.4611338201575563e-06,-6.053268862160621e-06,-5.338062395727732e-24,2.087334110001393e-07,-2.8587361969832636e-21,0.00012462612357921898,2.625802136488331e-20,-5.751974822487682e-05,-4.4261063726785854e-23,-2.8587361969832636e-21,4.1085536395257805e-06,59.0,16.0,0.023486541584134102,-0.0008899531094357371,-0.0030159521847963333,8.682967745698988e-06,3.738783561857417e-05,0.00010385509813204408,-0.0008899531094357371,6.633390148635954e-05,3.738783561857417e-05,-9.139965868598665e-07,-1.2892357972305035e-06,-9.317362419797304e-21,-0.0030159521847963333,3.738783561857417e-05,0.0008620566804893315,1.4674534447150374e-21,-4.9850450523081236e-06,-4.450932829058729e-05,8.682967745698988e-06,-9.139965868598665e-07,1.4674534447150374e-21,1.5758562454948333e-08,-3.944699587646394e-23,2.5214002181867325e-24,3.738783561857417e-05,-1.2892357972305035e-06,-4.9850450523081236e-06,-3.944699587646394e-23,1.7189809398132638e-07,1.2970192004831474e-21,0.00010385509813204408,-9.317362419797304e-21,-4.450932829058729e-05,2.5214002181867325e-24,1.2970192004831474e-21,2.9672885375475744e-06,59.0,17.0,0.022258389741182327,-0.0008395578479394317,-0.0026954226195812225,8.17220461613033e-06,3.323363125673495e-05,8.745693048695102e-05,-0.0008395578479394317,6.249931902857497e-05,3.323363125673495e-05,-8.602320917816542e-07,-1.1459873121566488e-06,-8.893845946170154e-21,-0.0026954226195812225,3.323363125673495e-05,0.0007217382662929595,-1.988077913224876e-21,-4.154203907091869e-06,-3.498277146718465e-05,8.17220461613033e-06,-8.602320917816542e-07,-1.988077913224876e-21,1.4831587513697286e-08,-4.6362712240595844e-24,1.3139127135664405e-22,3.323363125673495e-05,-1.1459873121566488e-06,-4.154203907091869e-06,-4.6362712240595844e-24,1.432484140195811e-07,-7.940933880509066e-23,8.745693048695102e-05,-8.893845946170154e-21,-3.498277146718465e-05,1.3139127135664405e-22,-7.940933880509066e-23,2.1864232166990405e-06,59.0,18.0,0.0211523175239563,-0.0007945676916278899,-0.0024234314914792776,7.7181930464576e-06,2.9735354473814368e-05,7.433838618453592e-05,-0.0007945676916278899,5.90841009397991e-05,2.9735354473814368e-05,-8.124413852783618e-07,-1.0253570508211851e-06,8.470329472543003e-22,-0.0024234314914792776,2.9735354473814368e-05,0.0006103400373831391,-1.5993350341450434e-21,-3.4982770102942595e-06,-2.787689481920097e-05,7.7181930464576e-06,-8.124413852783618e-07,-1.5993350341450434e-21,1.4007610182886765e-08,1.2503441403448511e-23,5.829562182725684e-23,2.9735354473814368e-05,-1.0253570508211851e-06,-3.4982770102942595e-06,1.2503441403448511e-23,1.2063024712460901e-07,-3.8381180422460484e-22,7.433838618453592e-05,8.470329472543003e-22,-2.787689481920097e-05,5.829562182725684e-23,-3.8381180422460484e-22,1.6398173556808615e-06,59.0,19.0,0.020150981843471527,-0.0007541568484157324,-0.002190646016970277,7.311972694878932e-06,2.6761819754028693e-05,6.371861672960222e-05,-0.0007541568484157324,5.602298188023269e-05,2.6761819754028693e-05,-7.69681321344251e-07,-9.228213571077504e-07,-8.470329472543003e-22,-0.002190646016970277,2.6761819754028693e-05,0.0005207685171626508,2.020040689081808e-21,-2.973535629280377e-06,-2.2488924514618702e-05,7.311972694878932e-06,-7.69681321344251e-07,2.020040689081808e-21,1.327036791565206e-08,-2.9831469328529156e-23,-4.954307439975401e-23,2.6761819754028693e-05,-9.228213571077504e-07,-2.973535629280377e-06,-2.9831469328529156e-23,1.0253570792428945e-07,5.161607022330893e-22,6.371861672960222e-05,-8.470329472543003e-22,-2.2488924514618702e-05,-4.954307439975401e-23,5.161607022330893e-22,1.2493846952565946e-06,59.0,20.0,0.01924017444252968,-0.0007176596554927528,-0.0019898745231330395,6.94637401466025e-06,2.4213075448642485e-05,5.502971544046886e-05,-0.0007176596554927528,5.3263578593032435e-05,2.4213075448642485e-05,-7.311972467505257e-07,-8.349336440005573e-07,8.470329472543003e-21,-0.0019898745231330395,2.4213075448642485e-05,0.00044792258995585144,1.9811125112454898e-21,-2.548744760133559e-06,-1.8343238480156288e-05,6.94637401466025e-06,-7.311972467505257e-07,1.9811125112454898e-21,1.2606849786322982e-08,-1.6642497543251818e-23,-7.513493070003043e-23,2.4213075448642485e-05,-8.349336440005573e-07,-2.548744760133559e-06,-1.6642497543251818e-23,8.788774863432991e-08,-3.5734202462290796e-22,5.502971544046886e-05,8.470329472543003e-21,-1.8343238480156288e-05,-7.513493070003043e-23,-3.5734202462290796e-22,9.65433628152823e-07,59.0,21.0,0.018408149480819702,-0.0006845335592515767,-0.0018155020661652088,6.6155944296042435e-06,2.2011887267581187e-05,4.785192868439481e-05,-0.0006845335592515767,5.0763363105943426e-05,2.2011887267581187e-05,-6.963783221181075e-07,-7.590305699523014e-07,-1.2281977735187355e-20,-0.0018155020661652088,2.2011887267581187e-05,0.0003880690492223948,-2.7153530407986843e-21,-2.2011886358086485e-06,-1.5111134416656569e-05,6.6155944296042435e-06,-6.963783221181075e-07,-2.7153530407986843e-21,1.200652288702031e-08,1.1580662682096275e-23,1.1373309330981484e-22,2.2011887267581187e-05,-7.590305699523014e-07,-2.2011886358086485e-06,1.1580662682096275e-23,7.590305983740109e-08,5.161607022330893e-22,4.785192868439481e-05,-1.2281977735187355e-20,-1.5111134416656569e-05,1.1373309330981484e-22,5.161607022330893e-22,7.555567549388797e-07,59.0,22.0,0.017645107582211494,-0.000654331932310015,-0.001663093687966466,6.314885467872955e-06,2.009781019296497e-05,4.1870436689350754e-05,-0.000654331932310015,4.848743628826924e-05,2.009781019296497e-05,-6.647247801083722e-07,-6.930279141670326e-07,6.988021814847978e-21,-0.001663093687966466,2.009781019296497e-05,0.00033843275741674006,1.1320783564032758e-21,-1.914077074616216e-06,-1.2561130461108405e-05,6.314885467872955e-06,-6.647247801083722e-07,1.1320783564032758e-21,1.1460771887072951e-08,-8.235707061646458e-24,-4.3751046218898745e-23,2.009781019296497e-05,-6.930279141670326e-07,-1.914077074616216e-06,-8.235707061646458e-24,6.600265578526887e-08,-3.374896899216353e-22,4.1870436689350754e-05,6.988021814847978e-21,-1.2561130461108405e-05,-4.3751046218898745e-23,-3.374896899216353e-22,5.981490858175675e-07,59.0,23.0,0.016942810267210007,-0.0006266837590374053,-0.001529108383692801,6.04032538831234e-06,1.8422992070554756e-05,3.684598414110951e-05,-0.0006266837590374053,4.640690895030275e-05,1.8422992070554756e-05,-6.35823710126715e-07,-6.352755690386402e-07,2.117582368135751e-21,-0.001529108383692801,1.8422992070554756e-05,0.0002969212073367089,-3.3348457368606855e-22,-1.6748174402891891e-06,-1.0527423910389189e-05,6.04032538831234e-06,-6.35823710126715e-07,-3.3348457368606855e-22,1.096247803644701e-08,1.544785605471598e-23,-4.672045277250452e-24,1.8422992070554756e-05,-6.352755690386402e-07,-1.6748174402891891e-06,1.544785605471598e-23,5.775232736482394e-08,-1.9190590211230242e-22,3.684598414110951e-05,2.117582368135751e-21,-1.0527423910389189e-05,-4.672045277250452e-24,-1.9190590211230242e-22,4.78519268654054e-07,59.0,24.0,0.01629428006708622,-0.0006012781523168087,-0.0014106909511610866,5.788645012216875e-06,1.694915226835292e-05,3.259452569182031e-05,-0.0006012781523168087,4.4497639464680105e-05,1.694915226835292e-05,-6.093310389587714e-07,-5.844535166943388e-07,-1.122318655111948e-20,-0.0014106909511610866,1.694915226835292e-05,0.0002619363076519221,-2.8678273077340692e-21,-1.4738393474544864e-06,-8.889415767043829e-06,5.788645012216875e-06,-6.093310389587714e-07,-2.8678273077340692e-21,1.0505707415120469e-08,2.2038934068244094e-23,8.982466302583643e-23,1.694915226835292e-05,-5.844535166943388e-07,-1.4738393474544864e-06,2.2038934068244094e-23,5.0822045238874125e-08,4.698385879301197e-22,3.259452569182031e-05,-1.122318655111948e-20,-8.889415767043829e-06,8.982466302583643e-23,4.698385879301197e-22,3.864963389332843e-07,59.0,25.0,0.01569357141852379,-0.0005778528284281492,-0.0013055193703621626,5.55709902982926e-06,1.5645371604477987e-05,2.8972910513402894e-05,-0.0005778528284281492,4.27393133577425e-05,1.5645371604477987e-05,-5.849578315064718e-07,-5.39495545126556e-07,-1.6940658945086007e-21,-0.0013055193703621626,1.5645371604477987e-05,0.00023224306642077863,-1.2335767093223176e-21,-1.3037810049354448e-06,-7.55815062802867e-06,5.55709902982926e-06,-5.849578315064718e-07,-1.2335767093223176e-21,1.008547911851565e-08,-2.7341196674193926e-25,4.791421546999194e-23,1.5645371604477987e-05,-5.39495545126556e-07,-1.3037810049354448e-06,-2.7341196674193926e-25,4.495796446235545e-08,-9.595295105615121e-23,2.8972910513402894e-05,-1.6940658945086007e-21,-7.55815062802867e-06,4.791421546999194e-23,-9.595295105615121e-23,3.1492294283452793e-07,59.0,26.0,0.01513558067381382,-0.0005561849102377892,-0.0012116885045543313,5.343364591681166e-06,1.4486455256701447e-05,2.5868670491036028e-05,-0.0005561849102377892,4.111470843781717e-05,1.4486455256701447e-05,-5.624594336950395e-07,-4.995329163648421e-07,7.411538288475128e-21,-0.0012116885045543313,1.4486455256701447e-05,0.0002068769244942814,1.6011101605084079e-21,-1.1589164614633773e-06,-6.467167622759007e-06,5.343364591681166e-06,-5.624594336950395e-07,1.6011101605084079e-21,9.697576075495817e-09,-4.030888321340307e-24,-5.617569382855107e-23,1.4486455256701447e-05,-4.995329163648421e-07,-1.1589164614633773e-06,-4.030888321340307e-24,3.9962635867141216e-08,-2.9778502051908996e-22,2.5868670491036028e-05,7.411538288475128e-21,-6.467167622759007e-06,-5.617569382855107e-23,-2.9778502051908996e-22,2.5868669695228164e-07,59.0,27.0,0.01461590826511383,-0.0005360836512409151,-0.0011276241857558489,5.1454621825541835e-06,1.3451708582579158e-05,2.3192600565380417e-05,-0.0005360836512409151,3.9609119994565845e-05,1.3451708582579158e-05,-5.416276280811871e-07,-4.638520181288186e-07,2.8587361969832636e-21,-0.0011276241857558489,1.3451708582579158e-05,0.0001850769476732239,1.7588652769135085e-21,-1.0347467878091265e-06,-5.566223990172148e-06,5.1454621825541835e-06,-5.416276280811871e-07,1.7588652769135085e-21,9.338406492531703e-09,-1.341106137364602e-23,-4.7873888900517044e-23,1.3451708582579158e-05,-4.638520181288186e-07,-1.0347467878091265e-06,-1.341106137364602e-23,3.5680923105019247e-08,0.0,2.3192600565380417e-05,2.8587361969832636e-21,-5.566223990172148e-06,-4.7873888900517044e-23,0.0,2.1408554573554284e-07,59.0,28.0,0.014130738563835621,-0.0005173850804567337,-0.0010520163923501968,4.961695594829507e-06,1.2524003977887332e-05,2.0873339963145554e-05,-0.0005173850804567337,3.820993151748553e-05,1.2524003977887332e-05,-5.222837557994353e-07,-4.3186221887481224e-07,-4.870439446712227e-21,-0.0010520163923501968,1.2524003977887332e-05,0.0001662374270381406,-1.0657974805965884e-21,-9.277040362576372e-07,-4.816924956685398e-06,4.961695594829507e-06,-5.222837557994353e-07,-1.0657974805965884e-21,9.004892831399047e-09,4.577885656311914e-24,3.372370903488963e-23,1.2524003977887332e-05,-4.3186221887481224e-07,-9.277040362576372e-07,4.577885656311914e-24,3.198979570129268e-08,2.117582368135751e-22,2.0873339963145554e-05,-4.870439446712227e-21,-4.816924956685398e-06,3.372370903488963e-23,2.117582368135751e-22,1.784046190778099e-07,59.0,29.0,0.01367674395442009,-0.000499947287607938,-0.0009837673278525472,4.7906028157740366e-06,1.168907056126045e-05,1.8853339497582056e-05,-0.000499947287607938,3.6906247260048985e-05,1.168907056126045e-05,-5.042739985583466e-07,-4.030713967040356e-07,-6.1409888675936775e-21,-0.0009837673278525472,1.168907056126045e-05,0.00014987208123784512,-1.1641824961344233e-21,-8.349336440005573e-07,-4.189630999462679e-06,4.7906028157740366e-06,-5.042739985583466e-07,-1.1641824961344233e-21,8.694378550444526e-09,4.091741840429961e-24,3.680007092774708e-23,1.168907056126045e-05,-4.030713967040356e-07,-8.349336440005573e-07,4.091741840429961e-24,2.8790815065349307e-08,2.6138907356675675e-22,1.8853339497582056e-05,-6.1409888675936775e-21,-4.189630999462679e-06,3.680007092774708e-23,2.6138907356675675e-22,1.4962968464260484e-07,59.0,30.0,0.013251014985144138,-0.000483646901557222,-0.0009219518979080021,4.6309160097735e-06,1.0934937563433778e-05,1.7085838408092968e-05,-0.000483646901557222,3.5688608477357775e-05,1.0934937563433778e-05,-4.874648311670171e-07,-3.770668115521403e-07,-1.7999450129153882e-21,-0.0009219518979080021,1.0934937563433778e-05,0.0001355874992441386,6.107890453888477e-24,-7.541336231042806e-07,-3.661251184894354e-06,4.6309160097735e-06,-4.874648311670171e-07,6.107890453888477e-24,8.404565932096375e-09,6.364609063844098e-24,-7.24162556965401e-24,1.0934937563433778e-05,-3.770668115521403e-07,-7.541336231042806e-07,6.364609063844098e-24,2.600460646817737e-08,1.4889251025954498e-22,1.7085838408092968e-05,-1.7999450129153882e-21,-3.661251184894354e-06,-7.24162556965401e-24,1.4889251025954498e-22,1.2625004330857337e-07,59.0,31.0,0.012850990518927574,-0.0004683760635089129,-0.0008657860453240573,4.481531505007297e-06,1.0251503226754721e-05,1.553258152853232e-05,-0.0004683760635089129,3.4548764233477414e-05,1.0251503226754721e-05,-4.7174017936413293e-07,-3.535001269483473e-07,7.411538288475128e-22,-0.0008657860453240573,1.0251503226754721e-05,0.00012306302960496396,5.006402615087621e-22,-6.834335977146111e-07,-3.213637455701246e-06,4.481531505007297e-06,-4.7174017936413293e-07,5.006402615087621e-22,8.133451245839751e-09,-1.3266283309432618e-23,4.270663678165978e-25,1.0251503226754721e-05,-3.535001269483473e-07,-6.834335977146111e-07,-1.3266283309432618e-23,2.3566675722008767e-08,-3.970466940254533e-23,1.553258152853232e-05,7.411538288475128e-22,-3.213637455701246e-06,4.270663678165978e-25,-3.970466940254533e-23,1.0712125231293612e-07,59.0,32.0,0.01247441116720438,-0.0004540402733255178,-0.000814601662568748,4.341483872849494e-06,9.63020011113258e-06,1.4162059414957184e-05,-0.0004540402733255178,3.3479493140475824e-05,9.63020011113258e-06,-4.5699829342993326e-07,-3.320758708014182e-07,2.2234614865425384e-21,-0.000814601662568748,9.63020011113258e-06,0.00011203559552086517,1.1227610634537253e-21,-6.213032293089782e-07,-2.8324118375167018e-06,4.341483872849494e-06,-4.5699829342993326e-07,1.1227610634537253e-21,7.879281227474166e-09,-1.0881018000951234e-23,-2.5154772138520616e-23,9.63020011113258e-06,-3.320758708014182e-07,-6.213032293089782e-07,-1.0881018000951234e-23,2.1424249041501753e-08,-2.481541837659083e-23,1.4162059414957184e-05,2.2234614865425384e-21,-2.8324118375167018e-06,-2.5154772138520616e-23,-2.481541837659083e-23,9.136812195720267e-08,59.0,33.0,0.012119273655116558,-0.00044055611942894757,-0.000767826393712312,4.209923645248637e-06,9.063717698154505e-06,1.294816865993198e-05,-0.00044055611942894757,3.247443601139821e-05,9.063717698154505e-06,-4.4314984393167833e-07,-3.125419993921241e-07,1.6940658945086007e-21,-0.000767826393712312,9.063717698154505e-06,0.0001022879223455675,-3.0417509677396776e-22,-5.664823561346566e-07,-2.5060971893253736e-06,4.209923645248637e-06,-4.4314984393167833e-07,-3.0417509677396776e-22,7.64051488744144e-09,8.534881771090622e-24,1.2161916893522784e-24,9.063717698154505e-06,-3.125419993921241e-07,-5.664823561346566e-07,8.534881771090622e-24,1.9533874962007758e-08,-1.0091603473146938e-22,1.294816865993198e-05,1.6940658945086007e-21,-2.5060971893253736e-06,1.2161916893522784e-24,-1.0091603473146938e-22,7.831553716641793e-08,59.0,34.0,0.011783797293901443,-0.0004278499400243163,-0.0007249679765664041,4.086102308065165e-06,8.545791388314683e-06,1.1869154150190298e-05,-0.0004278499400243163,3.152797216898762e-05,8.545791388314683e-06,-4.301160458908271e-07,-2.9468245088537515e-07,2.80579663777987e-21,-0.0007249679765664041,8.545791388314683e-06,9.363953722640872e-05,7.09935434762522e-22,-5.179267645871732e-07,-2.2254664600040996e-06,4.086102308065165e-06,-4.301160458908271e-07,7.09935434762522e-22,7.415793756848643e-09,-3.819655825610182e-24,-1.7501120573765145e-23,8.545791388314683e-06,-2.9468245088537515e-07,-5.179267645871732e-07,-3.819655825610182e-24,1.785954317767846e-08,-8.602678370551488e-23,1.1869154150190298e-05,2.80579663777987e-21,-2.2254664600040996e-06,-1.7501120573765145e-23,-8.602678370551488e-23,6.743837843714573e-08,59.0,35.0,0.011466395109891891,-0.00041585625149309635,-0.000685600854922086,3.9693563849141356e-06,8.071025149547495e-06,1.0906790521403309e-05,-0.00041585625149309635,3.063512485823594e-05,8.071025149547495e-06,-4.1782701032389014e-07,-2.783112051929493e-07,-0.0,-0.000685600854922086,8.071025149547495e-06,8.593967504566535e-05,1.3234889800848443e-23,-4.747661819237692e-07,-1.9830529254249996e-06,3.9693563849141356e-06,-4.1782701032389014e-07,1.3234889800848443e-23,7.20391390984787e-09,0.0,-0.0,8.071025149547495e-06,-2.783112051929493e-07,-4.747661819237692e-07,0.0,1.6371247468782713e-08,-0.0,1.0906790521403309e-05,-0.0,-1.9830529254249996e-06,-0.0,-0.0,5.832508165326544e-08,59.0,36.0,0.01116564217954874,-0.00040451675886288285,-0.0006493558757938445,3.8590965232288e-06,7.634753274032846e-06,1.0045728231489193e-05,-0.00040451675886288285,2.979146120196674e-05,7.634753274032846e-06,-4.062206926391809e-07,-2.63267367017761e-07,3.8006162259005657e-22,-0.0006493558757938445,7.634753274032846e-06,7.90617341408506e-05,4.370229240430114e-38,-4.36271619719264e-07,-1.7727755903251818e-06,3.8590965232288e-06,-4.062206926391809e-07,4.370229240430114e-38,7.0038050914433825e-09,0.0,-1.2486368057258785e-39,7.634753274032846e-06,-2.63267367017761e-07,-4.36271619719264e-07,0.0,1.504384883332932e-08,-2.1717806148668535e-23,1.0045728231489193e-05,3.8006162259005657e-22,-1.7727755903251818e-06,-1.2486368057258785e-39,-2.1717806148668535e-23,5.0650729832568686e-08,59.0,37.0,0.010880263522267342,-0.00039377936627715826,-0.0006159113254398108,3.7547968076978577e-06,7.232924417621689e-06,9.272979696106631e-06,-0.00039377936627715826,2.899302853620611e-05,7.232924417621689e-06,-3.9524175576843845e-07,-2.49411186814541e-07,-0.0,-0.0006159113254398108,7.232924417621689e-06,7.289886707440019e-05,-1.3234889800848443e-23,-4.0182911220654205e-07,-1.5896537206572248e-06,3.7547968076978577e-06,-3.9524175576843845e-07,-1.3234889800848443e-23,6.814512953923213e-09,4.1359030627651384e-25,-0.0,7.232924417621689e-06,-2.49411186814541e-07,-4.0182911220654205e-07,4.1359030627651384e-25,1.3856176650506313e-08,-0.0,9.272979696106631e-06,-0.0,-1.5896537206572248e-06,-0.0,-0.0,4.415704779603402e-08,59.0,38.0,0.01060910988599062,-0.00038359733298420906,-0.000584985944442451,3.655986347439466e-06,6.862005193397636e-06,8.577506378060207e-06,-0.00038359733298420906,2.823627983161714e-05,6.862005193397636e-06,-3.848406606721255e-07,-2.366208633475253e-07,-0.0,-0.000584985944442451,6.862005193397636e-06,6.736047362210229e-05,2.6469779601696886e-23,-3.709191958023439e-07,-1.4295843584477552e-06,3.655986347439466e-06,-3.848406606721255e-07,2.6469779601696886e-23,6.63518395782603e-09,-8.271806125530277e-25,-0.0,6.862005193397636e-06,-2.366208633475253e-07,-3.709191958023439e-07,-8.271806125530277e-25,1.2790317249766758e-08,-0.0,8.577506378060207e-06,-0.0,-1.4295843584477552e-06,-0.0,-0.0,3.863741682152977e-08,59.0,39.0,0.010351142846047878,-0.0003739286621566862,-0.0005563328741118312,3.5622431369120022e-06,6.518904683616711e-06,7.949884093250148e-06,-0.0003739286621566862,2.751803731371183e-05,6.518904683616711e-06,-3.74972955796693e-07,-2.2478981520634989e-07,-0.0,-0.0005563328741118312,6.518904683616711e-06,6.236938497750089e-05,1.3234889800848443e-23,-3.431002539855399e-07,-1.2891703136119759e-06,3.5622431369120022e-06,-3.74972955796693e-07,1.3234889800848443e-23,6.4650511610864214e-09,-4.1359030627651384e-25,-0.0,6.518904683616711e-06,-2.2478981520634989e-07,-3.431002539855399e-07,-4.1359030627651384e-25,1.1831042812104897e-08,-0.0,7.949884093250148e-06,-0.0,-1.2891703136119759e-06,-0.0,-0.0,3.3925534381751277e-08,59.0,40.0,0.01010542269796133,-0.00036473546060733497,-0.0005297348252497613,3.473187007330125e-06,6.200909410836175e-06,7.382035164482659e-06,-0.00036473546060733497,2.6835430617211387e-05,6.200909410836175e-06,-3.6559862337526283e-07,-2.1382446391271515e-07,-0.0,-0.0005297348252497613,6.200909410836175e-06,5.785961548099294e-05,-2.6469779601696886e-23,-3.1799535804566403e-07,-1.1655845355562633e-06,3.473187007330125e-06,-3.6559862337526283e-07,-2.6469779601696886e-23,6.303424893161491e-09,8.271806125530277e-25,-0.0,6.200909410836175e-06,-2.1382446391271515e-07,-3.1799535804566403e-07,8.271806125530277e-25,1.0965357510883678e-08,-0.0,7.382035164482659e-06,-0.0,-1.1655845355562633e-06,-0.0,-0.0,2.988678104998144e-08,59.0,41.0,0.009871098212897778,-0.0003559835022315383,-0.0005049998871982098,3.3884750791912666e-06,5.9056278587377165e-06,6.86700923324679e-06,-0.0003559835022315383,2.6185874958173372e-05,5.9056278587377165e-06,-3.566815962585679e-07,-2.0364234387670876e-07,-0.0,-0.0005049998871982098,5.9056278587377165e-06,5.377449269872159e-05,0.0,-2.952814099899115e-07,-1.0564630201770342e-06,3.3884750791912666e-06,-3.566815962585679e-07,0.0,6.149682540979029e-09,0.0,-0.0,5.9056278587377165e-06,-2.0364234387670876e-07,-2.952814099899115e-07,0.0,1.0182117371471122e-08,-0.0,6.86700923324679e-06,-0.0,-1.0564630201770342e-06,-0.0,-0.0,2.6411575149154487e-08,59.0,42.0,0.009647395461797714,-0.00034764179144985974,-0.0004819579189643264,3.3077972148021217e-06,5.630947725876467e-06,6.398804089258192e-06,-0.00034764179144985974,2.5567025659256615e-05,5.630947725876467e-06,-3.4818916105905373e-07,-1.9417061025706062e-07,-2.410494626397727e-22,-0.0004819579189643264,5.630947725876467e-06,5.006518040318042e-05,-3.970466940254533e-23,-2.74680388656634e-07,-9.598206816008314e-07,3.3077972148021217e-06,-3.4818916105905373e-07,-3.970466940254533e-23,6.003261443510155e-09,8.271806125530277e-25,1.7313224695533477e-39,5.630947725876467e-06,-1.9417061025706062e-07,-2.74680388656634e-07,8.271806125530277e-25,9.471737172361827e-09,1.1758509795456542e-23,6.398804089258192e-06,-2.410494626397727e-22,-9.598206816008314e-07,1.7313224695533477e-39,1.1758509795456542e-23,2.341025862051538e-08,59.0,43.0,0.009433606639504433,-0.00033968209754675627,-0.0004604579589795321,3.2308716981788166e-06,5.374995453166775e-06,5.972217422822723e-06,-0.00033968209754675627,2.4976754502858967e-05,5.374995453166775e-06,-3.4009175919891277e-07,-1.853446747190901e-07,-0.0,-0.0004604579589795321,5.374995453166775e-06,4.6689419832546264e-05,0.0,-2.559521590228542e-07,-8.739830263948534e-07,3.2308716981788166e-06,-3.4009175919891277e-07,0.0,5.8636508981635416e-09,0.0,-0.0,5.374995453166775e-06,-1.853446747190901e-07,-2.559521590228542e-07,0.0,8.825936426148928e-09,-0.0,5.972217422822723e-06,-0.0,-8.739830263948534e-07,-0.0,-0.0,2.0809119760656358e-08,59.0,44.0,0.009229088202118874,-0.0003320787800475955,-0.0004403653438203037,3.1574427339364775e-06,5.136106665304396e-06,5.582724952546414e-06,-0.0003320787800475955,2.4413126084255055e-05,5.136106665304396e-06,-3.323623900541861e-07,-1.7710712540974782e-07,2.100626528730058e-22,-0.0004403653438203037,5.136106665304396e-06,4.3610540160443634e-05,-1.3234889800848443e-23,-2.388887025972508e-07,-7.975320954756171e-07,3.1574427339364775e-06,-3.323623900541861e-07,-1.3234889800848443e-23,5.730385943536476e-09,4.1359030627651384e-25,-0.0,5.136106665304396e-06,-1.7710712540974782e-07,-2.388887025972508e-07,4.1359030627651384e-25,8.237541315736507e-09,-9.770356277802509e-24,5.582724952546414e-06,2.100626528730058e-22,-7.975320954756171e-07,-0.0,-9.770356277802509e-24,1.854725795169543e-08,59.0,45.0,0.009033248759806156,-0.00032480841036885977,-0.00042155987466685474,3.087277264057775e-06,4.912797976430738e-06,5.226380835665623e-06,-0.00032480841036885977,2.387437598372344e-05,4.912797976430738e-06,-3.2497655411134474e-07,-1.6940681746291375e-07,-1.9654803930605323e-22,-0.00042155987466685474,4.912797976430738e-06,4.079659629496746e-05,1.7977706414331662e-38,-2.2330898730160698e-07,-7.292624104593415e-07,3.087277264057775e-06,-3.2497655411134474e-07,1.7977706414331662e-38,5.60304425079039e-09,-0.0,-4.085835997355085e-40,4.912797976430738e-06,-1.6940681746291375e-07,-2.2330898730160698e-07,-0.0,7.700309723190912e-09,8.934002001782666e-24,5.226380835665623e-06,-1.9654803930605323e-22,-7.292624104593415e-07,-4.085835997355085e-40,8.934002001782666e-24,1.6574146499692688e-08,59.0,46.0,0.008845549076795578,-0.0003178496262989938,-0.00040393389645032585,3.02016269415617e-06,4.703742433775915e-06,4.8997317207977176e-06,-0.0003178496262989938,2.3358894395641983e-05,4.703742433775915e-06,-3.179118550633575e-07,-1.6219802034811437e-07,-0.0,-0.00040393389645032585,4.703742433775915e-06,3.8219692214624956e-05,-1.3234889800848443e-23,-2.0905523001601978e-07,-6.681452759949025e-07,3.02016269415617e-06,-3.179118550633575e-07,-1.3234889800848443e-23,5.481239018223505e-09,4.1359030627651384e-25,-0.0,4.703742433775915e-06,-1.6219802034811437e-07,-2.0905523001601978e-07,4.1359030627651384e-25,7.20880111160227e-09,-0.0,4.8997317207977176e-06,-0.0,-6.681452759949025e-07,-0.0,-0.0,1.4847672424878056e-08,59.0,47.0,0.008665489964187145,-0.0003111827827524394,-0.0003873908135574311,2.9559039376181317e-06,4.507753146754112e-06,4.599748081091093e-06,-0.0003111827827524394,2.2865204300615005e-05,4.507753146754112e-06,-3.1114777243601566e-07,-1.5543976417120575e-07,-7.940933880509066e-23,-0.0003873908135574311,4.507753146754112e-06,3.585536978789605e-05,-1.5549787927723208e-23,-1.9598927281094802e-07,-6.132997896202141e-07,2.9559039376181317e-06,-3.1114777243601566e-07,-1.5549787927723208e-23,5.36461675082478e-09,-1.2179834882908748e-25,2.659763857164556e-25,4.507753146754112e-06,-1.5543976417120575e-07,-1.9598927281094802e-07,-1.2179834882908748e-25,6.758250847838099e-09,3.308722450212111e-24,4.599748081091093e-06,-7.940933880509066e-23,-6.132997896202141e-07,2.659763857164556e-25,3.308722450212111e-24,1.3332603465698867e-08,59.0,48.0,0.008492616005241871,-0.00030478989356197417,-0.0003718436637427658,2.8943225061084377e-06,4.3237632780801505e-06,4.3237632780801505e-06,-0.00030478989356197417,2.2391950551536866e-05,4.3237632780801505e-06,-3.046655194793857e-07,-1.4909528545103967e-07,5.293955920339377e-23,-0.0003718436637427658,4.3237632780801505e-06,3.368215766386129e-05,-1.4607307405263077e-23,-1.8398992551738047e-07,-5.639691380565637e-07,2.8943225061084377e-06,-3.046655194793857e-07,-1.4607307405263077e-23,5.252853707560234e-09,2.8658806392281294e-25,2.445826258782815e-25,4.3237632780801505e-06,-1.4909528545103967e-07,-1.8398992551738047e-07,2.8658806392281294e-25,6.3444804965229196e-09,-2.481541837659083e-24,4.3237632780801505e-06,5.293955920339377e-23,-5.639691380565637e-07,2.445826258782815e-25,-2.481541837659083e-24,1.1999343740853874e-08,59.0,49.0,0.00832650437951088,-0.0002986543986480683,-0.0003572140703909099,2.8352546905807685e-06,4.150812856096309e-06,4.069424448971404e-06,-0.0002986543986480683,2.193789441662375e-05,4.150812856096309e-06,-2.984478726375528e-07,-1.431314728961297e-07,-2.6469779601696886e-23,-0.0003572140703909099,4.150812856096309e-06,3.168111652485095e-05,-0.0,-1.7295053567067953e-07,-5.195009862291045e-07,2.8352546905807685e-06,-2.984478726375528e-07,-0.0,5.1456527927484785e-09,-2.0679515313825692e-25,0.0,4.150812856096309e-06,-1.431314728961297e-07,-1.7295053567067953e-07,-2.0679515313825692e-25,5.963811666731544e-09,1.2407709188295415e-24,4.069424448971404e-06,-2.6469779601696886e-23,-5.195009862291045e-07,0.0,1.2407709188295415e-24,1.0822937213106343e-08,59.0,50.0,0.008166765794157982,-0.0002927610476035625,-0.0003434312529861927,2.77854951491463e-06,3.988036041846499e-06,3.8346497603924945e-06,-0.0002927610476035625,2.1501886294572614e-05,3.988036041846499e-06,-2.924789157532359e-07,-1.3751848371157394e-07,-1.045556294267027e-21,-0.0003434312529861927,3.988036041846499e-06,2.9835533496225253e-05,-7.892850978178545e-22,-1.627769705692117e-07,-4.793312200490618e-07,2.77854951491463e-06,-2.924789157532359e-07,-7.892850978178545e-22,5.042739559257825e-09,3.272213178657577e-24,1.1646508112994168e-23,3.988036041846499e-06,-1.3751848371157394e-07,-1.627769705692117e-07,3.272213178657577e-24,5.612998954518389e-09,1.2821299494571929e-23,3.8346497603924945e-06,-1.045556294267027e-21,-4.793312200490618e-07,1.1646508112994168e-23,1.2821299494571929e-23,9.782270105063162e-09,59.0,51.0,0.008013041689991951,-0.000287095841486007,-0.0003304310666862875,2.7240682811680017e-06,3.8346497603924945e-06,3.6175943023408763e-06,-0.000287095841486007,2.108287299051881e-05,3.8346497603924945e-06,-2.8674401164607843e-07,-1.3222930306255876e-07,-7.146840492458159e-22,-0.0003304310666862875,3.8346497603924945e-06,2.813058927131351e-05,-8.783782659034976e-22,-1.5338599723691004e-07,-4.4297073031884793e-07,2.7240682811680017e-06,-2.8674401164607843e-07,-8.783782659034976e-22,4.943862652595499e-09,4.789481028058441e-24,1.5279336432699047e-23,3.8346497603924945e-06,-1.3222930306255876e-07,-1.5338599723691004e-07,4.789481028058441e-24,5.289172211320192e-09,-4.963083675318166e-24,3.6175943023408763e-06,-7.146840492458159e-22,-4.4297073031884793e-07,1.5279336432699047e-23,-4.963083675318166e-24,8.859414535322685e-09,59.0,52.0,0.007864996790885925,-0.00028164571267552674,-0.0003181553620379418,2.671682295840583e-06,3.689946197482641e-06,3.4166168916272e-06,-0.00028164571267552674,2.0679881345131435e-05,3.689946197482641e-06,-2.8122971684751974e-07,-1.2723951670068345e-07,-3.3087224502121107e-23,-0.0003181553620379418,3.689946197482641e-06,2.6553141651675105e-05,-1.1515589546024594e-23,-1.4470377607267437e-07,-4.099940156265802e-07,2.671682295840583e-06,-2.8122971684751974e-07,-1.1515589546024594e-23,4.848788037747909e-09,-1.4403989994729294e-25,3.8460171411761457e-25,3.689946197482641e-06,-1.2723951670068345e-07,-1.4470377607267437e-07,-1.4403989994729294e-25,4.989785029607674e-09,8.271806125530277e-25,3.4166168916272e-06,-3.3087224502121107e-23,-4.099940156265802e-07,3.8460171411761457e-25,8.271806125530277e-25,8.039098275958168e-09,59.0,53.0,0.007722323760390282,-0.00027639869949780405,-0.00030655128648504615,2.6212730972474674e-06,3.5532814308680827e-06,3.2302559702657163e-06,-0.00027639869949780405,2.0292005501687527e-05,3.5532814308680827e-06,-2.7592349738370103e-07,-1.225269414817376e-07,1.3234889800848443e-23,-0.00030655128648504615,3.5532814308680827e-06,2.509148725948762e-05,-0.0,-1.3666466713857517e-07,-3.8003011582077306e-07,2.6212730972474674e-06,-2.7592349738370103e-07,-0.0,4.757301663715907e-09,-2.0679515313825692e-25,1.0339757656912846e-25,3.5532814308680827e-06,-1.225269414817376e-07,-1.3666466713857517e-07,-2.0679515313825692e-25,4.712574774856648e-09,-4.1359030627651384e-25,3.2302559702657163e-06,1.3234889800848443e-23,-3.8003011582077306e-07,1.0339757656912846e-25,-4.1359030627651384e-25,7.308271321448956e-09,59.0,54.0,0.007584734819829464,-0.00027134359697811306,-0.00029557073139585555,2.5727310912770918e-06,3.424071110202931e-06,3.0572064133593813e-06,-0.00027134359697811306,1.9918414182029665e-05,3.424071110202931e-06,-2.7081381404059357e-07,-1.1807141930830767e-07,6.551270451419979e-22,-0.00029557073139585555,3.424071110202931e-06,2.373519237153232e-05,6.793709495699742e-22,-1.2921023540002352e-07,-3.527545970882784e-07,2.5727310912770918e-06,-2.7081381404059357e-07,6.793709495699742e-22,4.669203246265852e-09,-3.077991087841959e-24,-1.164783655475856e-23,3.424071110202931e-06,-1.1807141930830767e-07,-1.2921023540002352e-07,-3.077991087841959e-24,4.4555252820543956e-09,-6.203854594147708e-25,3.0572064133593813e-06,6.551270451419979e-22,-3.527545970882784e-07,-1.164783655475856e-23,-6.203854594147708e-25,6.655747064598927e-09,59.0,55.0,0.0074519626796245575,-0.00026647013146430254,-0.0002851697790902108,2.525954187149182e-06,3.301782953712973e-06,2.8963008844584692e-06,-0.00026647013146430254,1.9558330677682534e-05,3.301782953712973e-06,-2.6588992341203266e-07,-1.1385458265067427e-07,-7.940933880509066e-23,-0.0002851697790902108,3.301782953712973e-06,2.2474931029137224e-05,-0.0,-1.2228825596594106e-07,-3.2788312864795444e-07,2.525954187149182e-06,-2.6588992341203266e-07,-0.0,4.5843089324648645e-09,-2.0679515313825692e-25,2.0679515313825692e-25,3.301782953712973e-06,-1.1385458265067427e-07,-1.2228825596594106e-07,-2.0679515313825692e-25,4.216836657633394e-09,2.895132143935597e-24,2.8963008844584692e-06,-7.940933880509066e-23,-3.2788312864795444e-07,2.0679515313825692e-25,2.895132143935597e-24,6.071909641747197e-09,59.0,56.0,0.007323759142309427,-0.0002617686113808304,-0.00027530838269740343,2.4808477974147536e-06,3.185930836480111e-06,2.7464921004138887e-06,-0.0002617686113808304,1.9211038306821138e-05,3.185930836480111e-06,-2.6114187789971766e-07,-1.0985968401655555e-07,-1.9852334701272664e-23,-0.00027530838269740343,3.185930836480111e-06,2.1302348613971844e-05,-0.0,-1.1585203196773364e-07,-3.0516579840877966e-07,2.4808477974147536e-06,-2.6114187789971766e-07,-0.0,4.502446415699524e-09,0.0,-1.0339757656912846e-25,3.185930836480111e-06,-1.0985968401655555e-07,-1.1585203196773364e-07,0.0,3.994897745940307e-09,1.0339757656912846e-24,2.7464921004138887e-06,-1.9852334701272664e-23,-3.0516579840877966e-07,-1.0339757656912846e-25,1.0339757656912846e-24,5.548469239613496e-09,59.0,57.0,0.007199892308562994,-0.00025723016005940735,-0.00026594981318339705,2.4373241558350855e-06,3.0760711524635553e-06,2.6068400984513573e-06,-0.00025723016005940735,1.887586222437676e-05,3.0760711524635553e-06,-2.565604404480837e-07,-1.0607142542085057e-07,-3.8381180422460484e-22,-0.00026594981318339705,3.0760711524635553e-06,2.0209950889693573e-05,-6.310561599986419e-22,-1.0985968401655555e-07,-2.8438253707463446e-07,2.4373241558350855e-06,-2.565604404480837e-07,-6.310561599986419e-22,4.423455823854283e-09,5.498322644067002e-24,8.983249010373804e-24,3.0760711524635553e-06,-1.0607142542085057e-07,-1.0985968401655555e-07,5.498322644067002e-24,3.788265257043122e-09,-3.7223127564886245e-24,2.6068400984513573e-06,-3.8381180422460484e-22,-2.8438253707463446e-07,8.983249010373804e-24,-3.7223127564886245e-24,5.0782595906184724e-09,59.0,58.0,0.00708014564588666,-0.00025284639559686184,-0.0002570604847278446,2.3953014078870183e-06,2.971797584905289e-06,2.4764981390035246e-06,-0.00025284639559686184,1.8552183973952197e-05,2.971797584905289e-06,-2.521369992791733e-07,-1.0247578074995545e-07,-6.617444900424222e-24,-0.0002570604847278446,2.971797584905289e-06,1.9190998500562273e-05,-0.0,-1.0427360308540301e-07,-2.65339082261562e-07,2.3953014078870183e-06,-2.521369992791733e-07,-0.0,4.347189275222263e-09,0.0,-1.0339757656912846e-25,2.971797584905289e-06,-1.0247578074995545e-07,-1.0427360308540301e-07,0.0,3.5956413402260523e-09,0.0,2.4764981390035246e-06,-6.617444900424222e-24,-2.65339082261562e-07,-1.0339757656912846e-25,0.0,4.655071439430003e-09,59.0,59.0,0.0069643170572817326,-0.0002486095472704619,-0.0002486095472704619,2.354703156015603e-06,2.872737695724936e-06,2.354703156015603e-06,-0.0002486095472704619,1.8239417840959504e-05,2.872737695724936e-06,-2.4786348262750835e-07,-9.90599247074897e-08,-8.602678370551488e-23,-0.0002486095472704619,2.872737695724936e-06,1.8239417840959504e-05,-0.0,-9.90599247074897e-08,-2.4786348262750835e-07,2.354703156015603e-06,-2.4786348262750835e-07,-0.0,4.27350821396999e-09,-2.0679515313825692e-25,1.0339757656912846e-25,2.872737695724936e-06,-9.90599247074897e-08,-9.90599247074897e-08,-2.0679515313825692e-25,3.415859373134822e-09,2.68833699079734e-24,2.354703156015603e-06,-8.602678370551488e-23,-2.4786348262750835e-07,1.0339757656912846e-25,2.68833699079734e-24,4.27350821396999e-09,59.0,60.0,0.0068522170186042786,-0.00024451236822642386,-0.00024056861002463847,2.31545800488675e-06,2.77854951491463e-06,2.2407657525036484e-06,-0.00024451236822642386,1.7937025404535234e-05,2.77854951491463e-06,-2.4373241558350855e-07,-9.581205517861235e-08,-5.955700410381799e-23,-0.00024056861002463847,2.77854951491463e-06,1.7349735571769997e-05,-0.0,-9.418812396688736e-08,-2.318033551773624e-07,2.31545800488675e-06,-2.4373241558350855e-07,-0.0,4.2022829660481875e-09,-4.1359030627651384e-25,2.0679515313825692e-25,2.77854951491463e-06,-9.581205517861235e-08,-9.418812396688736e-08,-4.1359030627651384e-25,3.2478661982082713e-09,2.0679515313825692e-24,2.2407657525036484e-06,-5.955700410381799e-23,-2.318033551773624e-07,2.0679515313825692e-25,2.0679515313825692e-24,3.9288705622197995e-09,59.0,61.0,0.006743669044226408,-0.0002405480481684208,-0.00023291159595828503,2.2774995613872306e-06,2.6889190394285833e-06,2.1340626972232712e-06,-0.0002405480481684208,1.764449552865699e-05,2.6889190394285833e-06,-2.3973680640665407e-07,-9.272134349203043e-08,-2.117582368135751e-22,-0.00023291159595828503,2.6889190394285833e-06,1.6516993127879687e-05,-4.441124832809928e-22,-8.96306318054485e-08,-2.1702332730910712e-07,2.2774995613872306e-06,-2.3973680640665407e-07,-4.441124832809928e-22,4.133393183280987e-09,3.03039299575796e-24,6.3523572651251104e-24,2.6889190394285833e-06,-9.272134349203043e-08,-8.96306318054485e-08,3.03039299575796e-24,3.0907114645373213e-09,-4.1359030627651384e-24,2.1340626972232712e-06,-2.117582368135751e-22,-2.1702332730910712e-07,6.3523572651251104e-24,-4.1359030627651384e-24,3.6170553219250223e-09,59.0,62.0,0.006638505961745977,-0.00023671022790949792,-0.00022561443620361388,2.2407657525036484e-06,2.603556367830606e-06,2.034028511843644e-06,-0.00023671022790949792,1.736135527607985e-05,2.603556367830606e-06,-2.3587008968206646e-07,-8.977780652230649e-08,-5.955700410381799e-23,-0.00022561443620361388,2.603556367830606e-06,1.5736712157377042e-05,-6.824711003522895e-24,-8.536250817314794e-08,-2.0340284834219347e-07,2.2407657525036484e-06,-2.3587008968206646e-07,-6.824711003522895e-24,4.066725622919876e-09,2.4381523678082446e-25,-1.5185652544190164e-26,2.603556367830606e-06,-8.977780652230649e-08,-8.536250817314794e-08,2.4381523678082446e-25,2.9435347492778874e-09,2.0679515313825692e-24,2.034028511843644e-06,-5.955700410381799e-23,-2.0340284834219347e-07,-1.5185652544190164e-26,2.0679515313825692e-24,3.3344729200024403e-09,59.0,63.0,0.006536572705954313,-0.00023299295571632683,-0.00021865493908990175,2.2051981432014145e-06,2.5221952455467544e-06,1.940150241352967e-06,-0.00023299295571632683,1.7087158994399942e-05,2.5221952455467544e-06,-2.3212611210965406e-07,-8.697224984643981e-08,7.940933880509066e-23,-0.00021865493908990175,2.5221952455467544e-06,1.5004819942987524e-05,-0.0,-8.136113649470644e-08,-1.9083445579326508e-07,2.2051981432014145e-06,-2.3212611210965406e-07,-0.0,4.00217459173291e-09,-2.0679515313825692e-25,5.169878828456423e-26,2.5221952455467544e-06,-8.697224984643981e-08,-8.136113649470644e-08,-2.0679515313825692e-25,2.805556453822078e-09,-2.481541837659083e-24,1.940150241352967e-06,7.940933880509066e-23,-1.9083445579326508e-07,5.169878828456423e-26,-2.481541837659083e-24,3.0779749859988215e-09,59.0,64.0,0.006437722593545914,-0.00022939064365345985,-0.00021201255731284618,2.170741936424747e-06,2.4445891995128477e-06,1.8519615423429059e-06,-0.00022939064365345985,1.6821488316054456e-05,2.4445891995128477e-06,-2.2849914671496663e-07,-8.429618247873805e-08,-6.617444900424222e-24,-0.00021201255731284618,2.4445891995128477e-06,1.4317625755211338e-05,1.8627841138361453e-23,-7.760601050676996e-08,-1.792220842844472e-07,2.170741936424747e-06,-2.2849914671496663e-07,1.8627841138361453e-23,3.939640613737083e-09,-5.145590294222734e-25,-7.807920907557653e-26,2.4445891995128477e-06,-8.429618247873805e-08,-7.760601050676996e-08,-5.145590294222734e-25,2.6760693661032064e-09,3.101927297073854e-25,1.8519615423429059e-06,-6.617444900424222e-24,-1.792220842844472e-07,-7.807920907557653e-26,3.101927297073854e-25,2.8447950661814048e-09,60.0,3.0,0.08210089057683945,-0.003966155461966991,-0.04918032884597778,4.4068394345231354e-05,0.0008196721319109201,0.008333333767950535,-0.003966155461966991,0.00031527833198197186,0.0008196721319109201,-4.5587994463858195e-06,-2.7785496058641e-05,-1.0842021724855044e-18,-0.04918032884597778,0.0008196721319109201,0.13251365721225739,-1.6634762061567642e-20,-0.0008196721319109201,-0.05000000074505806,4.4068394345231354e-05,-4.5587994463858195e-06,-1.6634762061567642e-20,7.72677850591208e-08,2.5990559223549604e-23,7.6067246402628e-21,0.0008196721319109201,-2.7785496058641e-05,-0.0008196721319109201,2.5990559223549604e-23,2.7785496058641e-05,4.87890977618477e-19,0.008333333767950535,-1.0842021724855044e-18,-0.05000000074505806,7.6067246402628e-21,4.87890977618477e-19,0.02500000037252903,60.0,4.0,0.06853605061769485,-0.0030975674744695425,-0.03200819715857506,3.3051295758923516e-05,0.0004918032791465521,0.004166666883975267,-0.0030975674744695425,0.00024062657030299306,0.0004918032791465521,-3.4190995847893646e-06,-1.667129799898248e-05,1.0164395367051604e-18,-0.03200819715857506,0.0004918032791465521,0.050505463033914566,2.3841810639744578e-20,-0.00032786885276436806,-0.012500000186264515,3.3051295758923516e-05,-3.4190995847893646e-06,2.3841810639744578e-20,5.79508387943406e-08,-3.540913875788691e-22,-3.574227232002459e-21,0.0004918032791465521,-1.667129799898248e-05,-0.00032786885276436806,-3.540913875788691e-22,1.111419805965852e-05,-4.607859233063394e-19,0.004166666883975267,1.0164395367051604e-18,-0.012500000186264515,-3.574227232002459e-21,-4.607859233063394e-19,0.004166666883975267,60.0,5.0,0.05885850265622139,-0.0025436277501285076,-0.022529274225234985,2.6441037334734574e-05,0.00032786885276436806,0.0023809524718672037,-0.0025436277501285076,0.00019472409621812403,0.00032786885276436806,-2.7352796223567566e-06,-1.111419805965852e-05,2.981555974335137e-19,-0.022529274225234985,0.00032786885276436806,0.025550350546836853,-1.962549818973847e-20,-0.00016393442638218403,-0.004761904943734407,2.6441037334734574e-05,-2.7352796223567566e-06,-1.962549818973847e-20,4.6360671746015214e-08,2.0470777669594419e-22,3.394873230230152e-21,0.00032786885276436806,-1.111419805965852e-05,-0.00016393442638218403,2.0470777669594419e-22,5.55709902982926e-06,-2.371692252312041e-19,0.0023809524718672037,2.981555974335137e-19,-0.004761904943734407,3.394873230230152e-21,-2.371692252312041e-19,0.0011904762359336019,60.0,6.0,0.05158908665180206,-0.00215872167609632,-0.016730094328522682,2.2034197172615677e-05,0.00023419203353114426,0.0014880952658131719,-0.00215872167609632,0.00016359319852199405,0.00023419203353114426,-2.2793997231929097e-06,-7.938712769828271e-06,4.2690460541616737e-19,-0.016730094328522682,0.00023419203353114426,0.014876561239361763,2.5291737084514993e-20,-9.367681195726618e-05,-0.0022321429569274187,2.2034197172615677e-05,-2.2793997231929097e-06,2.5291737084514993e-20,3.86338925295604e-08,-2.352203232864922e-22,-3.2145720905006002e-21,0.00023419203353114426,-7.938712769828271e-06,-9.367681195726618e-05,-2.352203232864922e-22,3.175485289830249e-06,-1.0333801956502464e-19,0.0014880952658131719,4.2690460541616737e-19,-0.0022321429569274187,-3.2145720905006002e-21,-1.0333801956502464e-19,0.00044642857392318547,60.0,7.0,0.0459231473505497,-0.0018754249904304743,-0.0129195936024189,1.8886454199673608e-05,0.0001756440324243158,0.0009920635493472219,-0.0018754249904304743,0.00014107332390267402,0.0001756440324243158,-1.953771061380394e-06,-5.954034804744879e-06,2.507217523872729e-19,-0.0129195936024189,0.0001756440324243158,0.009465261362493038,1.5327976636860114e-20,-5.8548008382786065e-05,-0.0011904762359336019,1.8886454199673608e-05,-1.953771061380394e-06,1.5327976636860114e-20,3.3114766040398536e-08,-1.097049044704922e-22,-1.8484437269844946e-21,0.0001756440324243158,-5.954034804744879e-06,-5.8548008382786065e-05,-1.097049044704922e-22,1.9846781924570678e-06,-3.3881317890172014e-20,0.0009920635493472219,2.507217523872729e-19,-0.0011904762359336019,-1.8484437269844946e-21,-3.3881317890172014e-20,0.00019841270113829523,60.0,8.0,0.04138095676898956,-0.0016580732772126794,-0.010280054993927479,1.6525647879461758e-05,0.00013661202683579177,0.0006944444612599909,-0.0016580732772126794,0.00012401801359374076,0.00013661202683579177,-1.7095497923946823e-06,-4.6309160097735e-06,2.710505431213761e-20,-0.010280054993927479,0.00013661202683579177,0.0064093805849552155,2.7146062356460424e-21,-3.9032005588524044e-05,-0.0006944444612599909,1.6525647879461758e-05,-1.7095497923946823e-06,2.7146062356460424e-21,2.89754193971703e-08,-9.412204907134393e-23,9.068763899082477e-23,0.00013661202683579177,-4.6309160097735e-06,-3.9032005588524044e-05,-9.412204907134393e-23,1.3231189086582162e-06,-5.082197683525802e-21,0.0006944444612599909,2.710505431213761e-20,-0.0006944444612599909,9.068763899082477e-23,-5.082197683525802e-21,9.920635056914762e-05,60.0,9.0,0.03765757381916046,-0.0014859862858429551,-0.008375559002161026,1.4689464478578884e-05,0.00010928962001344189,0.0005050505278632045,-0.0014859862858429551,0.00011064987484132871,0.00010928962001344189,-1.5195997775663272e-06,-3.704732762344065e-06,9.147955830346444e-20,-0.008375559002161026,0.00010928962001344189,0.004546992015093565,3.483497070253399e-21,-2.7322405003360473e-05,-0.00043290044413879514,1.4689464478578884e-05,-1.5195997775663272e-06,3.483497070253399e-21,2.5755928945159212e-08,-2.359642632963263e-23,-3.3323274404157304e-22,0.00010928962001344189,-3.704732762344065e-06,-2.7322405003360473e-05,-2.359642632963263e-23,9.261831905860163e-07,-1.3552527156068805e-20,0.0005050505278632045,9.147955830346444e-20,-0.00043290044413879514,-3.3323274404157304e-22,-1.3552527156068805e-20,5.411255551734939e-05,60.0,10.0,0.034549541771411896,-0.0013463294599205256,-0.006956035736948252,1.3220518667367287e-05,8.941877604229376e-05,0.0003787878667935729,-0.0013463294599205256,9.988799865823239e-05,8.941877604229376e-05,-1.3676398111783783e-06,-3.0311450700537534e-06,-3.049318610115481e-20,-0.006956035736948252,8.941877604229376e-05,0.0033450282644480467,-4.1335087626327095e-21,-1.9870840333169326e-05,-0.0002840909000951797,1.3220518667367287e-05,-1.3676398111783783e-06,-4.1335087626327095e-21,2.3180335873007607e-08,8.742259419121294e-23,1.3151030731179828e-22,8.941877604229376e-05,-3.0311450700537534e-06,-1.9870840333169326e-05,8.742259419121294e-23,6.735878059771494e-07,5.505714157152952e-21,0.0003787878667935729,-3.049318610115481e-20,-0.0002840909000951797,1.3151030731179828e-22,5.505714157152952e-21,3.156565799145028e-05,60.0,11.0,0.031915780156850815,-0.0012307100696489215,-0.005869540385901928,1.2018653251288924e-05,7.451565033989027e-05,0.00029137529782019556,-0.0012307100696489215,9.103690535994247e-05,7.451565033989027e-05,-1.2433089295882382e-06,-2.525954187149182e-06,6.606856988583543e-20,-0.005869540385901928,7.451565033989027e-05,0.002533659338951111,1.192083100286413e-20,-1.4903129340382293e-05,-0.00019425019854679704,1.2018653251288924e-05,-1.2433089295882382e-06,1.192083100286413e-20,2.1073033096286053e-08,-1.2562049508857544e-22,-7.603831022731802e-22,7.451565033989027e-05,-2.525954187149182e-06,-1.4903129340382293e-05,-1.2562049508857544e-22,5.051908260611526e-07,-3.1763735522036263e-21,0.00029137529782019556,6.606856988583543e-20,-0.00019425019854679704,-7.603831022731802e-22,-3.1763735522036263e-21,1.942501876328606e-05,60.0,12.0,0.0296553336083889,-0.0011334052542224526,-0.005019365809857845,1.1017098586307839e-05,6.305170245468616e-05,0.00022893772984389216,-0.0011334052542224526,8.362861262867227e-05,6.305170245468616e-05,-1.1396998615964549e-06,-2.137345745722996e-06,4.0657581468206416e-20,-0.005019365809857845,6.305170245468616e-05,0.0019657255616039038,7.145604568300731e-21,-1.1463946066214703e-05,-0.00013736264372710139,1.1017098586307839e-05,-1.1396998615964549e-06,7.145604568300731e-21,1.93169462647802e-08,-5.345325911398645e-23,-4.436034723596207e-22,6.305170245468616e-05,-2.137345745722996e-06,-1.1463946066214703e-05,-5.345325911398645e-23,3.8860832773934817e-07,-1.6940658945086007e-21,0.00022893772984389216,4.0657581468206416e-20,-0.00013736264372710139,-4.436034723596207e-22,-1.6940658945086007e-21,1.2487512321968097e-05,60.0,13.0,0.027694031596183777,-0.0010503773810341954,-0.004341559950262308,1.016962960420642e-05,5.404431794886477e-05,0.00018315018678549677,-0.0010503773810341954,7.733656093478203e-05,5.404431794886477e-05,-1.0520305977479438e-06,-1.8320107528779772e-06,1.0164395367051604e-20,-0.004341559950262308,5.404431794886477e-05,0.0015560941537842155,2.293566255146758e-21,-9.007386324810795e-06,-9.990009857574478e-05,1.016962960420642e-05,-1.0520305977479438e-06,2.293566255146758e-21,1.783102732133557e-08,-3.5322398768192426e-23,-9.50720584822835e-23,5.404431794886477e-05,-1.8320107528779772e-06,-9.007386324810795e-06,-3.5322398768192426e-23,3.053351065318566e-07,-2.117582368135751e-22,0.00018315018678549677,1.0164395367051604e-20,-9.990009857574478e-05,-9.50720584822835e-23,-2.117582368135751e-22,8.325007911480498e-06,60.0,14.0,0.025976145640015602,-0.0009786960436031222,-0.0037924472708255053,9.443227099836804e-06,4.683840597863309e-05,0.00014880952949170023,-0.0009786960436031222,7.192593329818919e-05,4.683840597863309e-05,-9.76885530690197e-07,-1.5877426449151244e-06,-5.929230630780102e-21,-0.0037924472708255053,4.683840597863309e-05,0.0012530962703749537,4.35640243376664e-22,-7.205908787000226e-06,-7.440476474585012e-05,9.443227099836804e-06,-9.76885530690197e-07,4.35640243376664e-22,1.6557383020199268e-08,-1.0423171809030916e-23,-1.4832632901064976e-23,4.683840597863309e-05,-1.5877426449151244e-06,-7.205908787000226e-06,-1.0423171809030916e-23,2.442681079628528e-07,1.1117307432712692e-21,0.00014880952949170023,-5.929230630780102e-21,-7.440476474585012e-05,-1.4832632901064976e-23,1.1117307432712692e-21,5.723443337046774e-06,60.0,15.0,0.0244589913636446,-0.0009161818888969719,-0.003341369330883026,8.81367850524839e-06,4.098360659554601e-05,0.00012254902685526758,-0.0009161818888969719,6.722348916810006e-05,4.098360659554601e-05,-9.117598551711126e-07,-1.389274757457315e-06,-1.0164395367051604e-20,-0.003341369330883026,4.098360659554601e-05,0.0010240956908091903,-2.323698217371304e-22,-5.854800747329136e-06,-5.656108623952605e-05,8.81367850524839e-06,-9.117598551711126e-07,-2.323698217371304e-22,1.545355665655279e-08,-2.6165528177897172e-24,1.2329518873091719e-23,4.098360659554601e-05,-1.389274757457315e-06,-5.854800747329136e-06,-2.6165528177897172e-24,1.9846783061439055e-07,1.1911400820763599e-21,0.00012254902685526758,-1.0164395367051604e-20,-5.656108623952605e-05,1.2329518873091719e-23,1.1911400820763599e-21,4.040077783429297e-06,60.0,16.0,0.02310931496322155,-0.0008611806551925838,-0.0029662889428436756,8.262823939730879e-06,3.616200410760939e-05,0.00010212418419541791,-0.0008611806551925838,6.309863238129765e-05,3.616200410760939e-05,-8.547748961973411e-07,-1.225830715156917e-06,-4.235164736271502e-22,-0.0029662889428436756,3.616200410760939e-05,0.0008477694354951382,4.691707950857448e-22,-4.821600668947212e-06,-4.376750803203322e-05,8.262823939730879e-06,-8.547748961973411e-07,4.691707950857448e-22,1.448770969858515e-08,-1.5676643072169988e-23,4.410703942390236e-24,3.616200410760939e-05,-1.225830715156917e-06,-4.821600668947212e-06,-1.5676643072169988e-23,1.6344409914381686e-07,2.3822801641527197e-22,0.00010212418419541791,-4.235164736271502e-22,-4.376750803203322e-05,4.410703942390236e-24,2.3822801641527197e-22,2.9178338536439696e-06,60.0,17.0,0.021900827065110207,-0.0008124138112179935,-0.0026510346215218306,7.776775419188198e-06,3.2144005672307685e-05,8.59993087942712e-05,-0.0008124138112179935,5.9451045672176406e-05,3.2144005672307685e-05,-8.044939932005946e-07,-1.0896272897298331e-06,2.541098841762901e-21,-0.0026510346215218306,3.2144005672307685e-05,0.0007097763009369373,1.4821238846585453e-21,-4.018000709038461e-06,-3.439972351770848e-05,7.776775419188198e-06,-8.044939932005946e-07,1.4821238846585453e-21,1.3635491846741843e-08,-2.540831518890227e-23,-5.1260159533156e-23,3.2144005672307685e-05,-1.0896272897298331e-06,-4.018000709038461e-06,-2.540831518890227e-23,1.3620341121622914e-07,-1.5881867761018131e-22,8.59993087942712e-05,2.541098841762901e-21,-3.439972351770848e-05,-5.1260159533156e-23,-1.5881867761018131e-22,2.14998271985678e-06,60.0,18.0,0.020812472328543663,-0.0007688775076530874,-0.0023835203610360622,7.344732239289442e-06,2.8760425266227685e-05,7.309941429411992e-05,-0.0007688775076530874,5.620237425318919e-05,2.8760425266227685e-05,-7.597998887831636e-07,-9.749296623340342e-07,2.710505431213761e-20,-0.0023835203610360622,2.8760425266227685e-05,0.0006002240697853267,5.606492866978041e-21,-3.3835794965852983e-06,-2.7412281269789673e-05,7.344732239289442e-06,-7.597998887831636e-07,5.606492866978041e-21,1.2877964472579606e-08,-3.893359257757162e-23,-2.502147389374435e-22,2.8760425266227685e-05,-9.749296623340342e-07,-3.3835794965852983e-06,-3.893359257757162e-23,1.146976131849442e-07,-1.283784310682299e-21,7.309941429411992e-05,2.710505431213761e-20,-2.7412281269789673e-05,-2.502147389374435e-22,-1.283784310682299e-21,1.6124871535794227e-06,60.0,19.0,0.019827179610729218,-0.0007297726115211844,-0.002154566813260317,6.95816743245814e-06,2.5884382921503857e-05,6.265663978410885e-05,-0.0007297726115211844,5.3290536015992984e-05,2.5884382921503857e-05,-7.198104299277475e-07,-8.774367188379983e-07,-8.470329472543003e-21,-0.002154566813260317,2.5884382921503857e-05,0.0005121369613334537,-3.3093058286287397e-22,-2.8760425720975036e-06,-2.2114109015092254e-05,6.95816743245814e-06,-7.198104299277475e-07,-3.3093058286287397e-22,1.2200176868759627e-08,-2.149204599050786e-24,2.3218142282030188e-23,2.5884382921503857e-05,-8.774367188379983e-07,-2.8760425720975036e-06,-2.149204599050786e-24,9.749296481231795e-08,7.543887186483612e-22,6.265663978410885e-05,-8.470329472543003e-21,-2.2114109015092254e-05,2.3218142282030188e-23,7.543887186483612e-22,1.228561586685828e-06,60.0,20.0,0.018930969759821892,-0.0006944549386389554,-0.001957100350409746,6.6102593336836435e-06,2.3419202989316545e-05,5.411255551734939e-05,-0.0006944549386389554,5.066570156486705e-05,2.3419202989316545e-05,-6.838199055891891e-07,-7.938713224575622e-07,1.4823076576950256e-20,-0.001957100350409746,2.3419202989316545e-05,0.00044049829011783004,6.537137598095274e-22,-2.465179250066285e-06,-1.803751729312353e-05,6.6102593336836435e-06,-6.838199055891891e-07,6.537137598095274e-22,1.1590167936503804e-08,1.6389926369505396e-23,-5.0414917161317033e-23,2.3419202989316545e-05,-7.938713224575622e-07,-2.465179250066285e-06,1.6389926369505396e-23,8.35654034858635e-08,-1.0587911840678754e-21,5.411255551734939e-05,1.4823076576950256e-20,-1.803751729312353e-05,-5.0414917161317033e-23,-1.0587911840678754e-21,9.493430752627319e-07,60.0,21.0,0.01811228320002556,-0.0006623994559049606,-0.001785598578862846,6.2954850363894366e-06,2.1290185031830333e-05,4.705439641838893e-05,-0.0006623994559049606,4.828741657547653e-05,2.1290185031830333e-05,-6.512570394079376e-07,-7.217012125693145e-07,1.6940658945086007e-20,-0.001785598578862846,2.1290185031830333e-05,0.00038163672434166074,3.069100384048681e-21,-2.129018412233563e-06,-1.485928260080982e-05,6.2954850363894366e-06,-6.512570394079376e-07,3.069100384048681e-21,1.1038254754680565e-08,-2.1646068715669547e-23,-1.147016125530345e-22,2.1290185031830333e-05,-7.217012125693145e-07,-2.129018412233563e-06,-2.1646068715669547e-23,7.217011699367504e-08,-8.66885281955573e-22,4.705439641838893e-05,1.6940658945086007e-20,-1.485928260080982e-05,-1.147016125530345e-22,-8.66885281955573e-22,7.429641186718072e-07,60.0,22.0,0.0173614751547575,-0.0006331739714369178,-0.0016356995329260826,6.009326625644462e-06,1.9438864910625853e-05,4.1172595956595615e-05,-0.0006331739714369178,4.6122484491206706e-05,1.9438864910625853e-05,-6.216544647941191e-07,-6.589445433746732e-07,1.4399560103323106e-20,-0.0016356995329260826,1.9438864910625853e-05,0.00033282305230386555,3.126580752840272e-21,-1.8513204622649937e-06,-1.2351778423180804e-05,6.009326625644462e-06,-6.216544647941191e-07,3.126580752840272e-21,1.0536516548143027e-08,-3.3966154390056633e-23,-9.032053467997112e-23,1.9438864910625853e-05,-6.589445433746732e-07,-1.8513204622649937e-06,-3.3966154390056633e-23,6.275662656207714e-08,-7.543887186483612e-22,4.1172595956595615e-05,1.4399560103323106e-20,-1.2351778423180804e-05,-9.032053467997112e-23,-7.543887186483612e-22,5.881799438611779e-07,60.0,23.0,0.01667044125497341,-0.0006064194021746516,-0.0015039201825857162,5.748051535192644e-06,1.7818960259319283e-05,3.623188240453601e-05,-0.0006064194021746516,4.4143424020148814e-05,1.7818960259319283e-05,-5.946259875599935e-07,-6.040324933564989e-07,9.952637130238029e-21,-0.0015039201825857162,1.7818960259319283e-05,0.0002919995167758316,2.2512711937234075e-21,-1.6199054471144336e-06,-1.035196692100726e-05,5.748051535192644e-06,-5.946259875599935e-07,2.2512711937234075e-21,1.0078406553759578e-08,-8.1826041009506e-24,-9.165914959459703e-23,1.7818960259319283e-05,-6.040324933564989e-07,-1.6199054471144336e-06,-8.1826041009506e-24,5.491204646546066e-08,-3.3087224502121107e-22,3.623188240453601e-05,9.952637130238029e-21,-1.035196692100726e-05,-9.165914959459703e-23,-3.3087224502121107e-22,4.7054393803591665e-07,60.0,24.0,0.01603231392800808,-0.0005818349891342223,-0.001387452706694603,5.508549293153919e-06,1.639344191062264e-05,3.205128086847253e-05,-0.0005818349891342223,4.232726860209368e-05,1.639344191062264e-05,-5.698499307982274e-07,-5.55709902982926e-07,1.6940658945086007e-21,-0.001387452706694603,1.639344191062264e-05,0.0002575944527052343,1.0386323926821425e-21,-1.4255167570809135e-06,-8.741259080125019e-06,5.508549293153919e-06,-5.698499307982274e-07,1.0386323926821425e-21,9.6584731323901e-09,-7.267116032084417e-24,-3.3507750473476324e-23,1.639344191062264e-05,-5.55709902982926e-07,-1.4255167570809135e-06,-7.267116032084417e-24,4.832260103171393e-08,2.6469779601696886e-23,3.205128086847253e-05,1.6940658945086007e-21,-8.741259080125019e-06,-3.3507750473476324e-23,2.6469779601696886e-23,3.800547290211398e-07,60.0,25.0,0.01544124260544777,-0.0005591668887063861,-0.0012840129202231765,5.288207375997445e-06,1.513240840722574e-05,2.8490028853411786e-05,-0.0005591668887063861,4.0654696931596845e-05,1.513240840722574e-05,-5.470559472087189e-07,-5.129630267219909e-07,-3.3881317890172014e-21,-0.0012840129202231765,1.513240840722574e-05,0.0002283933717990294,-1.4008270352100887e-21,-1.2610340718310908e-06,-7.432181519106962e-06,5.288207375997445e-06,-5.470559472087189e-07,-1.4008270352100887e-21,9.272134171567359e-09,1.5531885518340122e-23,3.938874638722242e-23,1.513240840722574e-05,-5.129630267219909e-07,-1.2610340718310908e-06,1.5531885518340122e-23,4.274691534078556e-08,6.28657265540301e-23,2.8490028853411786e-05,-3.3881317890172014e-21,-7.432181519106962e-06,3.938874638722242e-23,6.28657265540301e-23,3.0967422048888693e-07,60.0,26.0,0.014892206527292728,-0.0005381993832997978,-0.001191727234981954,5.08481480210321e-06,1.401148983859457e-05,2.5437526346649975e-05,-0.0005381993832997978,3.910931991413236e-05,1.401148983859457e-05,-5.260152988739719e-07,-4.7496573074568005e-07,6.564505341220828e-21,-0.001191727234981954,1.401148983859457e-05,0.00020344766380731016,2.3260282474280626e-21,-1.120919137065357e-06,-6.359381586662494e-06,5.08481480210321e-06,-5.260152988739719e-07,2.3260282474280626e-21,8.915513660667784e-09,-1.695699429805809e-23,-6.941479299118977e-23,1.401148983859457e-05,-4.7496573074568005e-07,-1.120919137065357e-06,-1.695699429805809e-23,3.7997260449174064e-08,-1.2904017555827232e-22,2.5437526346649975e-05,6.564505341220828e-21,-6.359381586662494e-06,-6.941479299118977e-23,-1.2904017555827232e-22,2.543752657402365e-07,60.0,27.0,0.01438087411224842,-0.0005187479546293616,-0.0011090473271906376,4.896488462691195e-06,1.3010669135837816e-05,2.2806058041169308e-05,-0.0005187479546293616,3.7677164073102176e-05,1.3010669135837816e-05,-5.065332402409695e-07,-4.4103961727159913e-07,4.341043854678289e-21,-0.0011090473271906376,1.3010669135837816e-05,0.00018200901104137301,1.14711815995527e-21,-1.000820702756755e-06,-5.4734537116019055e-06,4.896488462691195e-06,-5.065332402409695e-07,1.14711815995527e-21,8.58530935232693e-09,-7.2043944903712e-24,-3.465192064129612e-23,1.3010669135837816e-05,-4.4103961727159913e-07,-1.000820702756755e-06,-7.2043944903712e-24,3.392612413222196e-08,-1.6212740006039342e-22,2.2806058041169308e-05,4.341043854678289e-21,-5.4734537116019055e-06,-3.465192064129612e-23,-1.6212740006039342e-22,2.105174559119405e-07,60.0,28.0,0.013903491199016571,-0.0005006538704037666,-0.0010346845956519246,4.721613549918402e-06,1.2113381671952084e-05,2.0525450963759795e-05,-0.0005006538704037666,3.634621316450648e-05,1.2113381671952084e-05,-4.884427653450985e-07,-4.106231017431128e-07,-4.235164736271502e-21,-0.0010346845956519246,1.2113381671952084e-05,0.00016348175995517522,-1.4777238330993887e-21,-8.972875207291509e-07,-4.736642495117849e-06,4.721613549918402e-06,-4.884427653450985e-07,-1.4777238330993887e-21,8.278691510099634e-09,8.696771806060078e-24,4.00512885734122e-23,1.2113381671952084e-05,-4.106231017431128e-07,-8.972875207291509e-07,8.696771806060078e-24,3.041652618662738e-08,1.257314531080602e-22,2.0525450963759795e-05,-4.235164736271502e-21,-4.736642495117849e-06,4.00512885734122e-23,1.257314531080602e-22,1.7543121089147462e-07,60.0,29.0,0.013456786051392555,-0.00048377978964708745,-0.0009675595792941749,4.5587994463858195e-06,1.1305822226859163e-05,1.8539118173066527e-05,-0.00048377978964708745,3.5106113500660285e-05,1.1305822226859163e-05,-4.715999466498033e-07,-3.832482207144494e-07,5.293955920339377e-22,-0.0009675595792941749,1.1305822226859163e-05,0.00014738767640665174,2.8032595096473853e-22,-8.075587629718939e-07,-4.119804088986712e-06,4.5587994463858195e-06,-4.715999466498033e-07,2.8032595096473853e-22,7.993219419688558e-09,-3.3514758023505015e-25,-9.259055293222605e-24,1.1305822226859163e-05,-3.832482207144494e-07,-8.075587629718939e-07,-3.3514758023505015e-25,2.737487214687917e-08,2.9778502051908996e-23,1.8539118173066527e-05,5.293955920339377e-22,-4.119804088986712e-06,-9.259055293222605e-24,2.9778502051908996e-23,1.4713585017034347e-07,60.0,30.0,0.013037891127169132,-0.00046800635755062103,-0.0009067623177543283,4.406839252624195e-06,1.057641475199489e-05,1.6801075616967864e-05,-0.00046800635755062103,3.394786108401604e-05,1.057641475199489e-05,-4.558799275855563e-07,-3.58522527221794e-07,2.117582368135751e-22,-0.0009067623177543283,1.057641475199489e-05,0.00013333986862562597,-1.0343021016705564e-22,-7.294079296116251e-07,-3.600230456868303e-06,4.406839252624195e-06,-4.558799275855563e-07,-1.0343021016705564e-22,7.726778328276396e-09,8.137849655214697e-25,1.4432100560048779e-25,1.057641475199489e-05,-3.58522527221794e-07,-7.294079296116251e-07,8.137849655214697e-25,2.472569171629857e-08,4.963083675318166e-24,1.6801075616967864e-05,2.117582368135751e-22,-3.600230456868303e-06,1.4432100560048779e-25,4.963083675318166e-24,1.2414587047260284e-07,60.0,31.0,0.012644289992749691,-0.0004532292077783495,-0.0008515215595252812,4.264683411747683e-06,9.915388545778114e-06,1.5273704775609076e-05,-0.0004532292077783495,3.286360879428685e-05,9.915388545778114e-06,-4.4117413722233323e-07,-3.361148799285729e-07,3.5998900258307764e-21,-0.0008515215595252812,9.915388545778114e-06,0.00012102299660909921,1.2358897252270725e-21,-6.610259219996806e-07,-3.1600768579664873e-06,4.264683411747683e-06,-4.4117413722233323e-07,1.2358897252270725e-21,7.47752793017753e-09,-1.3433176300262986e-23,-2.72954771557481e-23,9.915388545778114e-06,-3.361148799285729e-07,-6.610259219996806e-07,-1.3433176300262986e-23,2.2407657951362125e-08,-1.2076836943274204e-22,1.5273704775609076e-05,3.5998900258307764e-21,-3.1600768579664873e-06,-2.72954771557481e-23,-1.2076836943274204e-22,1.0533589289707379e-07,60.0,32.0,0.012273757718503475,-0.00043935689609497786,-0.0008011801983229816,4.1314119698654395e-06,9.314456292486284e-06,1.3926024621468969e-05,-0.00043935689609497786,3.184648812748492e-05,9.314456292486284e-06,-4.273874480986706e-07,-3.1574427339364775e-07,2.4352197233561135e-21,-0.0008011801983229816,9.314456292486284e-06,0.00011017834913218394,5.795750215932718e-22,-6.009326511957624e-07,-2.785204969768529e-06,4.1314119698654395e-06,-4.273874480986706e-07,5.795750215932718e-22,7.243854849292575e-09,-7.272361957104137e-24,-9.931447985535882e-24,9.314456292486284e-06,-3.1574427339364775e-07,-6.009326511957624e-07,-7.272361957104137e-24,2.0370597653140976e-08,-1.0918784085699965e-22,1.3926024621468969e-05,2.4352197233561135e-21,-2.785204969768529e-06,-9.931447985535882e-24,-1.0918784085699965e-22,8.984532229305842e-08,60.0,33.0,0.011924323625862598,-0.00042630868847481906,-0.0007551753660663962,4.0062177504296415e-06,8.766546670813113e-06,1.2732365576084703e-05,-0.00042630868847481906,3.089044912485406e-05,8.766546670813113e-06,-4.1443630038884294e-07,-2.9717108418481075e-07,1.0587911840678754e-21,-0.0007551753660663962,8.766546670813113e-06,0.00010059225314762443,-5.032315118102321e-22,-5.479091669258196e-07,-2.4643288725201273e-06,4.0062177504296415e-06,-4.1443630038884294e-07,-5.032315118102321e-22,7.024344217398948e-09,9.77510837589556e-24,6.5272733657920284e-24,8.766546670813113e-06,-2.9717108418481075e-07,-5.479091669258196e-07,9.77510837589556e-24,1.8573192761550672e-08,-7.940933880509066e-23,1.2732365576084703e-05,1.0587911840678754e-21,-2.4643288725201273e-06,6.5272733657920284e-24,-7.940933880509066e-23,7.701027726625398e-08,60.0,34.0,0.011594236828386784,-0.0004140133096370846,-0.0007130228914320469,3.888387709594099e-06,8.265601536550093e-06,1.1671335414575879e-05,-0.0004140133096370846,2.999014759552665e-05,8.265601536550093e-06,-4.022469966002973e-07,-2.80189880186299e-07,-1.9058241313221758e-21,-0.0007130228914320469,8.265601536550093e-06,9.208722622133791e-05,-4.609618453971425e-22,-5.00945532166952e-07,-2.188375447076396e-06,3.888387709594099e-06,-4.022469966002973e-07,-4.609618453971425e-22,6.8177459233709214e-09,-1.0831888532634974e-24,1.4131056299563048e-23,8.265601536550093e-06,-2.80189880186299e-07,-5.00945532166952e-07,-1.0831888532634974e-24,1.6981203998511774e-08,6.782881022934827e-23,1.1671335414575879e-05,-1.9058241313221758e-21,-2.188375447076396e-06,1.4131056299563048e-23,6.782881022934827e-23,6.631440641058362e-08,60.0,35.0,0.011281931772828102,-0.00040240740054287016,-0.0006743042613379657,3.7772908854094567e-06,7.806401299603749e-06,1.0725010724854656e-05,-0.00040240740054287016,2.9140846891095862e-05,7.806401299603749e-06,-3.9075422364476253e-07,-2.646237646786176e-07,-1.1969800256685982e-21,-0.0006743042613379657,7.806401299603749e-06,8.451500616502017e-05,-1.161056335030341e-21,-4.592000664160878e-07,-1.9500018879625713e-06,3.7772908854094567e-06,-3.9075422364476253e-07,-1.161056335030341e-21,6.622953296897549e-09,1.2407709188295415e-23,2.3638657209332732e-23,7.806401299603749e-06,-2.646237646786176e-07,-4.592000664160878e-07,1.2407709188295415e-23,1.5566104849540352e-08,-1.1629451362501479e-23,1.0725010724854656e-05,-1.1969800256685982e-21,-1.9500018879625713e-06,2.3638657209332732e-23,-1.1629451362501479e-23,5.7352998794613086e-08,60.0,36.0,0.01098601147532463,-0.00039143452886492014,-0.0006386563181877136,3.672366119644721e-06,7.384433502011234e-06,9.878299351839814e-06,-0.00039143452886492014,2.8338332413113676e-05,7.384433502011234e-06,-3.798999443915818e-07,-2.5031977202161215e-07,-1.1459492826638986e-21,-0.0006386563181877136,7.384433502011234e-06,7.775107224006206e-05,-1.1051683293075932e-21,-4.2196762706225854e-07,-1.7432292906960356e-06,3.672366119644721e-06,-3.798999443915818e-07,-1.1051683293075932e-21,6.438982236289803e-09,1.1580528575742387e-23,2.1744605331340704e-23,7.384433502011234e-06,-2.5031977202161215e-07,-4.2196762706225854e-07,1.1580528575742387e-23,1.430398732793492e-08,-7.827565417642306e-24,9.878299351839814e-06,-1.1459492826638986e-21,-1.7432292906960356e-06,2.1744605331340704e-23,-7.827565417642306e-24,4.9806551771780505e-08,60.0,37.0,0.010705217719078064,-0.00038104428676888347,-0.0006057627033442259,3.5731129628402414e-06,6.9957791311026085e-06,9.11843017092906e-06,-0.00038104428676888347,2.7578840672504157e-05,6.9957791311026085e-06,-3.696323744861729e-07,-2.3714505914540496e-07,-1.3994141032873037e-21,-0.0006057627033442259,6.9957791311026085e-06,7.169036689447239e-05,-1.039354964027776e-21,-3.8865439933033485e-07,-1.563159457873553e-06,3.5731129628402414e-06,-3.696323744861729e-07,-1.039354964027776e-21,6.2649556653582295e-09,1.0339757656912846e-23,2.0047711881668752e-23,6.9957791311026085e-06,-2.3714505914540496e-07,-3.8865439933033485e-07,1.0339757656912846e-23,1.3174725310705071e-08,1.2033288981406745e-23,9.11843017092906e-06,-1.3994141032873037e-21,-1.563159457873553e-06,2.0047711881668752e-23,1.2033288981406745e-23,4.342109605204314e-08,60.0,38.0,0.010438419878482819,-0.00037119147600606084,-0.0005753467557951808,3.47908371622907e-06,6.637021215283312e-06,8.43454836285673e-06,-0.00037119147600606084,2.6859002900891937e-05,6.637021215283312e-06,-3.5990521496387373e-07,-2.2498377916235768e-07,-1.2932654847517437e-21,-0.0005753467557951808,6.637021215283312e-06,6.624377419939265e-05,-9.235776481226076e-22,-3.587579158192966e-07,-1.4057579846848967e-06,3.47908371622907e-06,-3.5990521496387373e-07,-9.235776481226076e-22,6.100088434379813e-09,7.858215819253763e-24,1.852296365873413e-23,6.637021215283312e-06,-2.2498377916235768e-07,-3.587579158192966e-07,7.858215819253763e-24,1.2161285312117798e-08,1.0833006348537672e-23,8.43454836285673e-06,-1.2932654847517437e-21,-1.4057579846848967e-06,1.852296365873413e-23,1.0833006348537672e-23,3.799345904553775e-08,60.0,39.0,0.010184597223997116,-0.00036183540942147374,-0.0005471657495945692,3.389876383153023e-06,6.3051702454686165e-06,7.817386176611762e-06,-0.00036183540942147374,2.6175790480920114e-05,6.3051702454686165e-06,-3.5067688486378756e-07,-2.137345802566415e-07,-1.197591222476189e-21,-0.0005471657495945692,6.3051702454686165e-06,6.133542774477974e-05,-9.163622340342514e-22,-3.318510550798237e-07,-1.2676841834036168e-06,3.389876383153023e-06,-3.5067688486378756e-07,-9.163622340342514e-22,5.943675773778523e-09,9.098986738083304e-24,1.714906457353949e-23,6.3051702454686165e-06,-2.137345802566415e-07,-3.318510550798237e-07,9.098986738083304e-24,1.1249188247575148e-08,9.778756068721303e-24,7.817386176611762e-06,-1.197591222476189e-21,-1.2676841834036168e-06,1.714906457353949e-23,9.778756068721303e-24,3.336010934162914e-08,60.0,40.0,0.009942825883626938,-0.0003529394743964076,-0.0005210058880038559,3.3051296668418217e-06,5.997600965201855e-06,7.2590009949635714e-06,-0.0003529394743964076,2.5526478566462174e-05,5.997600965201855e-06,-3.419099527945946e-07,-2.0330850247773924e-07,-2.6910651116213094e-21,-0.0005210058880038559,5.997600965201855e-06,5.6900411436799914e-05,-1.9883592273345652e-21,-3.075692802667618e-07,-1.1461580697869067e-06,3.3051296668418217e-06,-3.419099527945946e-07,-1.9883592273345652e-21,5.795083968251902e-09,1.1994118882018901e-23,3.7069968642415775e-23,5.997600965201855e-06,-2.0330850247773924e-07,-3.075692802667618e-07,1.1994118882018901e-23,1.0426076890723834e-08,2.1433290841426094e-23,7.2590009949635714e-06,-2.6910651116213094e-21,-1.1461580697869067e-06,3.7069968642415775e-23,2.1433290841426094e-23,2.9388669275931534e-08,60.0,41.0,0.00971226766705513,-0.00034447049256414175,-0.0004966784035786986,3.2245166039501783e-06,5.712000984203769e-06,6.752559329470387e-06,-0.00034447049256414175,2.4908604245865718e-05,5.712000984203769e-06,-3.3357068218720087e-07,-1.9362714454018715e-07,-7.330609994841591e-22,-0.0004966784035786986,5.712000984203769e-06,5.288301326800138e-05,-7.633955664327147e-22,-2.8560003784150467e-07,-1.038855316437548e-06,3.2245166039501783e-06,-3.3357068218720087e-07,-7.633955664327147e-22,5.653740586808453e-09,6.2038545941477076e-24,1.4783549975542124e-23,5.712000984203769e-06,-1.9362714454018715e-07,-2.8560003784150467e-07,6.2038545941477076e-24,9.681357049373673e-09,-6.958420560375141e-24,6.752559329470387e-06,-7.330609994841591e-22,-1.038855316437548e-06,1.4783549975542124e-23,-6.958420560375141e-24,2.597138148985323e-08,60.0,42.0,0.009492159821093082,-0.0003363985160831362,-0.0004740160657092929,3.1477425181947183e-06,5.446326667879475e-06,6.292157650023e-06,-0.0003363985160831362,2.4319937438121997e-05,5.446326667879475e-06,-3.256285197039688e-07,-1.8462124273810332e-07,-4.79149216582743e-22,-0.0004740160657092929,5.446326667879475e-06,4.9235190090257674e-05,-7.363293827431218e-22,-2.6567445843284077e-07,-9.438236361347663e-07,3.1477425181947183e-06,-3.256285197039688e-07,-7.363293827431218e-22,5.519127377340283e-09,5.37667398159468e-24,1.3762825495336742e-23,5.446326667879475e-06,-1.8462124273810332e-07,-2.6567445843284077e-07,5.37667398159468e-24,9.005914236581702e-09,-1.6236948885043127e-23,6.292157650023e-06,-4.79149216582743e-22,-9.438236361347663e-07,1.3762825495336742e-23,-1.6236948885043127e-23,2.302008894616847e-08,60.0,43.0,0.009281806647777557,-0.0003286961873527616,-0.0004528702993411571,3.074539108638419e-06,5.198766302783042e-06,5.87268050367129e-06,-0.0003286961873527616,2.375845542701427e-05,5.198766302783042e-06,-3.1805578259991307e-07,-1.7622936354655394e-07,-6.819781033072935e-22,-0.0004528702993411571,5.198766302783042e-06,4.59153889096342e-05,-6.846109044903632e-22,-2.475602798313048e-07,-8.59416616094677e-07,3.074539108638419e-06,-3.1805578259991307e-07,-6.846109044903632e-22,5.390775825730998e-09,4.963083675318166e-24,1.2833978855901546e-23,5.198766302783042e-06,-1.7622936354655394e-07,-2.475602798313048e-07,4.963083675318166e-24,8.39187475065728e-09,-3.582221709343593e-24,5.87268050367129e-06,-6.819781033072935e-22,-8.59416616094677e-07,1.2833978855901546e-23,-3.582221709343593e-24,2.0462300298618175e-08,60.0,44.0,0.009080575779080391,-0.0003213387099094689,-0.0004331087111495435,3.004663312822231e-06,4.9677100832923315e-06,5.4896795518288855e-06,-0.0003213387099094689,2.3222317395266145e-05,4.9677100832923315e-06,-3.1082723239705956e-07,-1.6839695149428735e-07,-6.381232429932676e-22,-0.0004331087111495435,4.9677100832923315e-06,4.288755008019507e-05,-6.610204545709486e-22,-2.310562763341295e-07,-7.842398872526246e-07,3.004663312822231e-06,-3.1082723239705956e-07,-6.610204545709486e-22,5.268258274071513e-09,4.963083675318166e-24,1.1986899227014319e-23,4.9677100832923315e-06,-1.6839695149428735e-07,-2.310562763341295e-07,4.963083675318166e-24,7.83241649315869e-09,-3.2141305334975118e-24,5.4896795518288855e-06,-6.381232429932676e-22,-7.842398872526246e-07,1.1986899227014319e-23,-3.2141305334975118e-24,1.8238138110859836e-08,60.0,45.0,0.008887884207069874,-0.00031430344097316265,-0.0004146130522713065,2.937892986665247e-06,4.751722372020595e-06,5.139274435350671e-06,-0.00031430344097316265,2.2709846234647557e-05,4.751722372020595e-06,-3.0391996119760734e-07,-1.6107533440390398e-07,1.254791589822637e-21,-0.0004146130522713065,4.751722372020595e-06,4.012025237898342e-05,1.2381873930540555e-21,-2.1598738442207832e-07,-7.171080369516858e-07,2.937892986665247e-06,-3.0391996119760734e-07,1.2381873930540555e-21,5.1511857002140005e-09,-9.098986738083304e-24,-2.2425557953336533e-23,4.751722372020595e-06,-1.6107533440390398e-07,-2.1598738442207832e-07,-9.098986738083304e-24,7.3216064322423335e-09,3.105288238960548e-24,5.139274435350671e-06,1.254791589822637e-21,-7.171080369516858e-07,-2.2425557953336533e-23,3.105288238960548e-24,1.6297910576668073e-08,60.0,46.0,0.008703201077878475,-0.0003075696586165577,-0.00039727750117890537,2.874025767596322e-06,4.549521690933034e-06,4.818069555767579e-06,-0.0003075696586165577,2.221950671810191e-05,4.549521690933034e-06,-2.9731299377999676e-07,-1.5422106969253946e-07,-5.593142462697119e-22,-0.00039727750117890537,4.549521690933034e-06,3.758606544579379e-05,-7.241396263566081e-22,-2.0220095109380054e-07,-6.570094797098136e-07,2.874025767596322e-06,-2.9731299377999676e-07,-7.241396263566081e-22,5.039203276879789e-09,8.68539643180679e-24,1.0503926711037485e-23,4.549521690933034e-06,-1.5422106969253946e-07,-2.0220095109380054e-07,8.68539643180679e-24,6.85426959634583e-09,-2.685220398576038e-24,4.818069555767579e-06,-5.593142462697119e-22,-6.570094797098136e-07,1.0503926711037485e-23,-2.685220398576038e-24,1.4600210818116466e-08,60.0,47.0,0.008526036515831947,-0.0003011183871421963,-0.0003810069465544075,2.8128761186962947e-06,4.359957983979257e-06,4.523085863183951e-06,-0.0003011183871421963,2.174989458580967e-05,4.359957983979257e-06,-2.9098720233378117e-07,-1.477951911965647e-07,-1.8389652792183383e-21,-0.0003810069465544075,4.359957983979257e-06,3.52609422407113e-05,-1.4965801583326166e-21,-1.8956339431497327e-07,-6.030780923538259e-07,2.8128761186962947e-06,-2.9098720233378117e-07,-1.4965801583326166e-21,4.9319863748564785e-09,1.0339757656912846e-23,2.303975558781075e-23,4.359957983979257e-06,-1.477951911965647e-07,-1.8956339431497327e-07,1.0339757656912846e-23,6.425878051885547e-09,1.8523512705924164e-23,4.523085863183951e-06,-1.8389652792183383e-21,-6.030780923538259e-07,2.303975558781075e-23,1.8523512705924164e-23,1.3110393659587771e-08,60.0,48.0,0.008355941623449326,-0.00029493222245946527,-0.00036571596865542233,2.7542746465769596e-06,4.182000793662155e-06,4.251700829627225e-06,-0.00029493222245946527,2.129972563125193e-05,4.182000793662155e-06,-2.849249653991137e-07,-1.417627402133803e-07,-5.293955920339377e-22,-0.00036571596865542233,4.182000793662155e-06,3.312375338282436e-05,-6.457304874486908e-22,-1.7795747453419608e-07,-5.54569680843997e-07,2.7542746465769596e-06,-2.849249653991137e-07,-6.457304874486908e-22,4.82923656619505e-09,7.39829728973543e-24,8.949892815857438e-24,4.182000793662155e-06,-1.417627402133803e-07,-1.7795747453419608e-07,7.39829728973543e-24,6.032456756344118e-09,-1.2407709188295415e-24,4.251700829627225e-06,-5.293955920339377e-22,-5.54569680843997e-07,8.949892815857438e-24,-1.2407709188295415e-24,1.1799354382446836e-08,60.0,49.0,0.008192500099539757,-0.00028899512835778296,-0.0003513274132274091,2.698064918149612e-06,4.0147206163965166e-06,4.001600700576091e-06,-0.00028899512835778296,2.0867815692326985e-05,4.0147206163965166e-06,-2.7911016786674736e-07,-1.360922254889374e-07,1.852884572118782e-21,-0.0003513274132274091,4.0147206163965166e-06,3.115588697255589e-05,1.7833470765469505e-21,-1.6728002094623662e-07,-5.10842653511645e-07,2.698064918149612e-06,-2.7911016786674736e-07,1.7833470765469505e-21,4.730680736031445e-09,-9.368228120478857e-24,-2.8930179967096046e-23,4.0147206163965166e-06,-1.360922254889374e-07,-1.6728002094623662e-07,-9.368228120478857e-24,5.670509395372392e-09,-3.7223127564886245e-24,4.001600700576091e-06,1.852884572118782e-21,-5.10842653511645e-07,-2.8930179967096046e-23,-3.7223127564886245e-24,1.0642555281492605e-08,60.0,50.0,0.008035330101847649,-0.0002832923782989383,-0.0003377716930117458,2.6441036879987223e-06,3.85728071705671e-06,3.77073911295156e-06,-0.0002832923782989383,2.0453073375392705e-05,3.85728071705671e-06,-2.7352797360435943e-07,-1.3075528215722443e-07,8.205631676526035e-22,-0.0003377716930117458,3.85728071705671e-06,2.934089752670843e-05,9.806597746856938e-22,-1.5744002723749873e-07,-4.71342389118945e-07,2.6441036879987223e-06,-2.7352797360435943e-07,9.806597746856938e-22,4.6360670857836794e-09,-5.8824979049096344e-24,-1.6477442598330615e-23,3.85728071705671e-06,-1.3075528215722443e-07,-1.5744002723749873e-07,-5.8824979049096344e-24,5.336949993051121e-09,6.2038545941477076e-24,3.77073911295156e-06,8.205631676526035e-22,-4.71342389118945e-07,-1.6477442598330615e-23,6.2038545941477076e-24,9.619232521629328e-09,60.0,51.0,0.007884077727794647,-0.00027781035169027746,-0.00032498568180017173,2.5922583972715074e-06,3.7089237139298348e-06,3.557300942702568e-06,-0.00027781035169027746,2.005449823627714e-05,3.7089237139298348e-06,-2.6816468334800447e-07,-1.2572623120377102e-07,1.7403880088115702e-21,-0.00032498568180017173,3.7089237139298348e-06,2.766421857813839e-05,1.681452904780105e-21,-1.4835694628345664e-07,-4.3558787865549675e-07,2.5922583972715074e-06,-2.6816468334800447e-07,1.681452904780105e-21,4.545163800884211e-09,-9.844431894524573e-24,-2.5751589589531003e-23,3.7089237139298348e-06,-1.2572623120377102e-07,-1.4835694628345664e-07,-9.844431894524573e-24,5.029049177096567e-09,-7.031035206700735e-24,3.557300942702568e-06,1.7403880088115702e-21,-4.3558787865549675e-07,-2.5751589589531003e-23,-7.031035206700735e-24,8.711757537582798e-09,60.0,52.0,0.007738413754850626,-0.0002725364756770432,-0.0003129122487735003,2.542407401051605e-06,3.568964302758104e-06,3.3596732009755215e-06,-0.0002725364756770432,1.967116077139508e-05,3.568964302758104e-06,-2.6300764943698596e-07,-1.2098183788111783e-07,-3.5734202462290796e-22,-0.0003129122487735003,3.568964302758104e-06,2.6112922569154762e-05,-4.996094159431427e-22,-1.3995938275002118e-07,-4.031607829801942e-07,2.542407401051605e-06,-2.6300764943698596e-07,-4.996094159431427e-22,4.457756830333892e-09,4.745745790612083e-24,7.093149325516932e-24,3.568964302758104e-06,-1.2098183788111783e-07,-1.3995938275002118e-07,4.745745790612083e-24,4.744385773136628e-09,-2.481541837659083e-24,3.3596732009755215e-06,-3.5734202462290796e-22,-4.031607829801942e-07,7.093149325516932e-24,-2.481541837659083e-24,7.905113008632725e-09,60.0,53.0,0.00759803457185626,-0.0002674591087270528,-0.0003014993853867054,2.4944374672486447e-06,3.4367803891655058e-06,3.1764182040205924e-06,-0.0002674591087270528,1.9302206055726856e-05,3.4367803891655058e-06,-2.5804524739214685e-07,-1.1650103459714956e-07,7.808584982500581e-22,-0.0003014993853867054,3.4367803891655058e-06,2.4675498934811912e-05,9.879070966199445e-22,-1.3218385674917954e-07,-3.7369628103078867e-07,2.4944374672486447e-06,-2.5804524739214685e-07,9.879070966199445e-22,4.37364811034513e-09,-9.014419271321802e-24,-1.3927309304962565e-23,3.4367803891655058e-06,-1.1650103459714956e-07,-1.3218385674917954e-07,-9.014419271321802e-24,4.480809057127999e-09,1.6543612251060553e-24,3.1764182040205924e-06,7.808584982500581e-22,-3.7369628103078867e-07,-1.3927309304962565e-23,1.6543612251060553e-24,7.186466532971281e-09,60.0,54.0,0.007462657988071442,-0.00026256751152686775,-0.00029069973970763385,2.4482442313455977e-06,3.3118064948212123e-06,3.00625310956093e-06,-0.00026256751152686775,1.8946837371913716e-05,3.3118064948212123e-06,-2.5326662012048473e-07,-1.1226462959257333e-07,-4.830734777309682e-22,-0.00029069973970763385,3.3118064948212123e-06,2.3341688574873842e-05,-4.777955060258347e-22,-1.2497383750087465e-07,-3.468753391189239e-07,2.4482442313455977e-06,-2.5326662012048473e-07,-4.777955060258347e-22,4.292654676163465e-09,4.626118189778937e-24,6.4800209919997424e-24,3.3118064948212123e-06,-1.1226462959257333e-07,-1.2497383750087465e-07,4.626118189778937e-24,4.236401007773338e-09,3.308722450212111e-24,3.00625310956093e-06,-4.830734777309682e-22,-3.468753391189239e-07,6.4800209919997424e-24,3.308722450212111e-24,6.54481802087048e-09,60.0,55.0,0.007332020904868841,-0.00025785161415115,-0.0002804701798595488,2.4037306047830498e-06,3.19352784572402e-06,2.8480292257881956e-06,-0.00025785161415115,1.860431621025782e-05,3.19352784572402e-06,-2.4866179160198953e-07,-1.0825517904322624e-07,-2.5808035111654463e-22,-0.0002804701798595488,3.19352784572402e-06,2.2102320144767873e-05,-4.432377438221858e-22,-1.1827880541659397e-07,-3.2241840131064237e-07,2.4037306047830498e-06,-2.4866179160198953e-07,-4.432377438221858e-22,4.214606441621527e-09,3.6127222273830585e-24,6.155553824212383e-24,3.19352784572402e-06,-1.0825517904322624e-07,-1.1827880541659397e-07,3.6127222273830585e-24,4.009450993436303e-09,-3.9291079096268815e-24,2.8480292257881956e-06,-2.5808035111654463e-22,-3.2241840131064237e-07,6.155553824212383e-24,-3.9291079096268815e-24,5.970711036695775e-09,60.0,56.0,0.007205878850072622,-0.0002533021615818143,-0.0002707712701521814,2.360806774959201e-06,3.081474233113113e-06,2.7007172320736572e-06,-0.0002533021615818143,1.8273962268722244e-05,3.081474233113113e-06,-2.442213826725492e-07,-1.0445675258097253e-07,-1.9852334701272664e-23,-0.0002707712701521814,3.081474233113113e-06,2.0949177269358188e-05,2.2456423871747297e-22,-1.1205360550547994e-07,-3.0007970508449944e-07,2.360806774959201e-06,-2.442213826725492e-07,2.2456423871747297e-22,4.139345755049817e-09,-1.8215415585211498e-24,-3.630287793159615e-24,3.081474233113113e-06,-1.0445675258097253e-07,-1.1205360550547994e-07,-1.8215415585211498e-24,3.798427350432121e-09,6.824240053562478e-24,2.7007172320736572e-06,-1.9852334701272664e-23,-3.0007970508449944e-07,-3.630287793159615e-24,6.824240053562478e-24,5.455994767089578e-09,60.0,57.0,0.007084003649652004,-0.0002489104517735541,-0.00026156692183576524,2.319389068361488e-06,2.9752163754892536e-06,2.5633926270529628e-06,-0.0002489104517735541,1.7955135263036937e-05,2.9752163754892536e-06,-2.399368099759158e-07,-1.0085479829058386e-07,-2.183756817139993e-22,-0.00026156692183576524,2.9752163754892536e-06,1.987488940358162e-05,-4.16521789130962e-22,-1.0625772972616687e-07,-2.79642847544892e-07,2.319389068361488e-06,-2.399368099759158e-07,-4.16521789130962e-22,4.066725622919876e-09,3.674429293972162e-24,5.550335004561391e-24,2.9752163754892536e-06,-1.0085479829058386e-07,-1.0625772972616687e-07,3.674429293972162e-24,3.601956954923935e-09,-3.7223127564886245e-24,2.5633926270529628e-06,-2.183756817139993e-22,-2.79642847544892e-07,5.550335004561391e-24,-3.7223127564886245e-24,4.9936219603807785e-09,60.0,58.0,0.006966182962059975,-0.0002446684520691633,-0.0002528240729589015,2.2793997231929097e-06,2.8743615985149518e-06,2.4352229957003146e-06,-0.0002446684520691633,1.7647244021645747e-05,2.8743615985149518e-06,-2.3579997332490166e-07,-9.743598639033735e-08,-2.2499312661442353e-22,-0.0002528240729589015,2.8743615985149518e-06,1.8872828150051646e-05,-3.8767565756015184e-22,-1.0085479829058386e-07,-2.609167495393194e-07,2.2793997231929097e-06,-2.3579997332490166e-07,-3.8767565756015184e-22,3.996609709844279e-09,3.3124766392600575e-24,5.049421345950985e-24,2.8743615985149518e-06,-9.743598639033735e-08,-1.0085479829058386e-07,3.3124766392600575e-24,3.418806571175992e-09,-2.895132143935597e-24,2.4352229957003146e-06,-2.2499312661442353e-22,-2.609167495393194e-07,5.049421345950985e-24,-2.895132143935597e-24,4.577486834023148e-09,60.0,59.0,0.0068522170186042786,-0.00024056861002463847,-0.00024451236822642386,2.2407657525036484e-06,2.77854951491463e-06,2.31545800488675e-06,-0.00024056861002463847,1.7349735571769997e-05,2.77854951491463e-06,-2.318033551773624e-07,-9.418812396688736e-08,-1.852884572118782e-22,-0.00024451236822642386,2.77854951491463e-06,1.7937025404535234e-05,-3.84332982536579e-22,-9.581205517861235e-08,-2.4373241558350855e-07,2.2407657525036484e-06,-2.318033551773624e-07,-3.84332982536579e-22,3.9288705622197995e-09,3.086921190504287e-24,5.119007160830983e-24,2.77854951491463e-06,-9.418812396688736e-08,-9.581205517861235e-08,3.086921190504287e-24,3.2478661982082713e-09,-3.9291079096268815e-24,2.31545800488675e-06,-1.852884572118782e-22,-2.4373241558350855e-07,5.119007160830983e-24,-3.9291079096268815e-24,4.2022829660481875e-09,60.0,60.0,0.00674192002043128,-0.0002366039261687547,-0.0002366039261687547,2.2034196263120975e-06,2.6874495233641937e-06,2.2034196263120975e-06,-0.0002366039261687547,1.7062091501429677e-05,2.6874495233641937e-06,-2.2793996379277814e-07,-9.109998444500889e-08,-3.2425480012078685e-22,-0.0002366039261687547,2.6874495233641937e-06,1.7062091501429677e-05,-3.658924437983878e-22,-9.109998444500889e-08,-2.2793996379277814e-07,2.2034196263120975e-06,-2.2793996379277814e-07,-3.658924437983878e-22,3.863389164138198e-09,2.9875931501299675e-24,4.681322675926304e-24,2.6874495233641937e-06,-9.109998444500889e-08,-9.109998444500889e-08,2.9875931501299675e-24,3.088135080986376e-09,1.6543612251060553e-24,2.2034196263120975e-06,-3.2425480012078685e-22,-2.2793996379277814e-07,4.681322675926304e-24,1.6543612251060553e-24,3.863389164138198e-09,60.0,61.0,0.006635117810219526,-0.00023276780848391354,-0.00022907309175934643,2.167298134736484e-06,2.6007576252595754e-06,2.098494860547362e-06,-0.00023276780848391354,1.6783829778432846e-05,2.6007576252595754e-06,-2.242032479671252e-07,-8.816127916588812e-08,-2.183756817139993e-22,-0.00022907309175934643,2.6007576252595754e-06,1.624315518711228e-05,-3.627110498091656e-22,-8.669191942090038e-08,-2.1340626688015618e-07,2.167298134736484e-06,-2.242032479671252e-07,-3.627110498091656e-22,3.800054937386221e-09,2.7630186499098394e-24,4.661982567543453e-24,2.6007576252595754e-06,-8.816127916588812e-08,-8.669191942090038e-08,2.7630186499098394e-24,2.9387092759236566e-09,-1.6543612251060553e-24,2.098494860547362e-06,-2.183756817139993e-22,-2.1340626688015618e-07,4.661982567543453e-24,-1.6543612251060553e-24,3.556771099866296e-09,60.0,62.0,0.006531646475195885,-0.00022905411606188864,-0.00022189617448020726,2.1323417058738414e-06,2.5181939236063045e-06,2.00012800632976e-06,-0.00022905411606188864,1.6514499293407425e-05,2.5181939236063045e-06,-2.2058706861116661e-07,-8.536250817314794e-08,-2.779326858178173e-22,-0.00022189617448020726,2.5181939236063045e-06,1.547580905025825e-05,-3.391425617773523e-22,-8.256373718040777e-08,-2.0001280631731788e-07,2.1323417058738414e-06,-2.2058706861116661e-07,-3.391425617773523e-22,3.738763965088765e-09,2.4297174232753623e-24,4.2797561875671686e-24,2.5181939236063045e-06,-8.536250817314794e-08,-8.256373718040777e-08,2.4297174232753623e-24,2.798770770695569e-09,6.203854594147708e-25,2.00012800632976e-06,-2.779326858178173e-22,-2.0001280631731788e-07,4.2797561875671686e-24,6.203854594147708e-25,3.278898264014174e-09,60.0,63.0,0.006431352812796831,-0.0002254570572404191,-0.00021505134645849466,2.098494860547362e-06,2.4395003492827527e-06,1.907814521473483e-06,-0.0002254570572404191,1.6253678040811792e-05,2.4395003492827527e-06,-2.1708568453959742e-07,-8.269493179113852e-08,-7.279189390466644e-23,-0.00021505134645849466,2.4395003492827527e-06,1.4756051314179786e-05,4.7531598998298026e-23,-7.869356011269701e-08,-1.8765388176689157e-07,2.098494860547362e-06,-2.1708568453959742e-07,4.7531598998298026e-23,3.6794183255750568e-09,-4.6689367462015254e-26,-1.1731497620339964e-24,2.4395003492827527e-06,-8.269493179113852e-08,-7.869356011269701e-08,-4.6689367462015254e-26,2.6675783804108733e-09,3.9291079096268815e-24,1.907814521473483e-06,-7.279189390466644e-23,-1.8765388176689157e-07,-1.1731497620339964e-24,3.9291079096268815e-24,3.0266753547891767e-09,60.0,64.0,0.0063340924680233,-0.00022197123325895518,-0.00020851842418778688,2.0657059849327197e-06,2.364438842050731e-06,1.8210955659014871e-06,-0.00022197123325895518,1.6000965842977166e-05,2.364438842050731e-06,-2.136937240493353e-07,-8.015047114895424e-08,-3.2094607767057474e-22,-0.00020851842418778688,2.364438842050731e-06,1.408025036653271e-05,-3.0906563048955456e-22,-7.506154986458569e-08,-1.7623506209929474e-07,2.0657059849327197e-06,-2.136937240493353e-07,-3.0906563048955456e-22,3.6219274246462874e-09,2.3714062056680093e-24,3.816712585572802e-24,2.364438842050731e-06,-8.015047114895424e-08,-7.506154986458569e-08,2.3714062056680093e-24,2.544459309916647e-09,2.895132143935597e-24,1.8210955659014871e-06,-3.2094607767057474e-22,-1.7623506209929474e-07,3.816712585572802e-24,2.895132143935597e-24,2.797381881691763e-09,61.0,3.0,0.08081723749637604,-0.003840245772153139,-0.04838709533214569,4.196989902993664e-05,0.0007932310691103339,0.008196720853447914,-0.003840245772153139,0.0003001559234689921,0.0007932310691103339,-4.2681253944465425e-06,-2.6441037334734574e-05,-1.7889335846010823e-18,-0.04838709533214569,0.0007932310691103339,0.13035431504249573,1.2955375455226545e-20,-0.0007932310691103339,-0.04918032884597778,4.196989902993664e-05,-4.2681253944465425e-06,1.2955375455226545e-20,7.113542466186118e-08,-5.246843380031151e-22,1.6556713652974464e-21,0.0007932310691103339,-2.6441037334734574e-05,-0.0007932310691103339,-5.246843380031151e-22,2.6441037334734574e-05,1.4094628242311558e-18,0.008196720853447914,-1.7889335846010823e-18,-0.04918032884597778,1.6556713652974464e-21,1.4094628242311558e-18,0.02459016442298889,61.0,4.0,0.06746115535497665,-0.0029991690535098314,-0.03149127587676048,3.1477426091441885e-05,0.0004759386647492647,0.004098360426723957,-0.0029991690535098314,0.00022908308892510831,0.0004759386647492647,-3.201093932148069e-06,-1.5864621673244983e-05,1.6127507315721878e-18,-0.03149127587676048,0.0004759386647492647,0.04968270659446716,6.158289220858253e-20,-0.00031729243346489966,-0.012295082211494446,3.1477426091441885e-05,-3.201093932148069e-06,6.158289220858253e-20,5.3351566720039045e-08,-7.338418329408085e-22,-1.1577450074458755e-20,0.0004759386647492647,-1.5864621673244983e-05,-0.00031729243346489966,-7.338418329408085e-22,1.057641475199489e-05,-5.149960319306146e-19,0.004098360426723957,1.6127507315721878e-18,-0.012295082211494446,-1.1577450074458755e-20,-5.149960319306146e-19,0.004098360426723957,61.0,5.0,0.05793356895446777,-0.002462793607264757,-0.022165143862366676,2.5181940145557746e-05,0.00031729243346489966,0.0023419202771037817,-0.002462793607264757,0.00018538175208959728,0.00031729243346489966,-2.5608751457184553e-06,-1.057641475199489e-05,-2.168404344971009e-19,-0.022165143862366676,0.00031729243346489966,0.025134094059467316,-2.2257580436533668e-20,-0.00015864621673244983,-0.004683840554207563,2.5181940145557746e-05,-2.5608751457184553e-06,-2.2257580436533668e-20,4.268125408657397e-08,1.0271168410014414e-22,4.66492464637758e-21,0.00031729243346489966,-1.057641475199489e-05,-0.00015864621673244983,1.0271168410014414e-22,5.288207375997445e-06,-3.7269449679189215e-20,0.0023419202771037817,-2.168404344971009e-19,-0.004683840554207563,4.66492464637758e-21,-3.7269449679189215e-20,0.0011709601385518909,61.0,6.0,0.05077728256583214,-0.002090100897476077,-0.016459545120596886,2.098494951496832e-05,0.0002266374503960833,0.001463700202293694,-0.002090100897476077,0.00015574389544781297,0.0002266374503960833,-2.1340626972232712e-06,-7.554581770818913e-06,3.6591823321385775e-19,-0.016459545120596886,0.0002266374503960833,0.014634169638156891,3.909965463912241e-20,-9.065498306881636e-05,-0.002195550361648202,2.098494951496832e-05,-2.1340626972232712e-06,3.909965463912241e-20,3.556771233093059e-08,-3.4213432622673384e-22,-5.3902760135717054e-21,0.0002266374503960833,-7.554581770818913e-06,-9.065498306881636e-05,-3.4213432622673384e-22,3.0218327538023004e-06,-3.3881317890172014e-21,0.001463700202293694,3.6591823321385775e-19,-0.002195550361648202,-5.3902760135717054e-21,-3.3881317890172014e-21,0.0004391100665088743,61.0,7.0,0.04519978165626526,-0.0018157977610826492,-0.012710584327578545,1.7987100363825448e-05,0.0001699780987109989,0.0009758001542650163,-0.0018157977610826492,0.00013430418039206415,0.0001699780987109989,-1.8291965488970163e-06,-5.665936441801023e-06,2.710505431213761e-19,-0.012710584327578545,0.0001699780987109989,0.009311022236943245,1.0894883089641158e-20,-5.6659362599020824e-05,-0.0011709601385518909,1.7987100363825448e-05,-1.8291965488970163e-06,1.0894883089641158e-20,3.048661056936908e-08,-9.756509244560984e-23,-1.3150130041352683e-21,0.0001699780987109989,-5.665936441801023e-06,-5.6659362599020824e-05,-9.756509244560984e-23,1.8886454427047283e-06,-6.268043809681823e-20,0.0009758001542650163,2.710505431213761e-19,-0.0011709601385518909,-1.3150130041352683e-21,-6.268043809681823e-20,0.00019516002794262022,61.0,8.0,0.04072863981127739,-0.0016053486615419388,-0.010113696567714214,1.5738713045720942e-05,0.00013220518303569406,0.0006830600905232131,-0.0016053486615419388,0.00011806701513705775,0.00013220518303569406,-1.6005469660740346e-06,-4.406839252624195e-06,2.1345230270808369e-19,-0.010113696567714214,0.00013220518303569406,0.0063049281015992165,1.762788285981705e-20,-3.7772908399347216e-05,-0.0006830600905232131,1.5738713045720942e-05,-1.6005469660740346e-06,1.762788285981705e-20,2.6675783360019523e-08,-1.8664459114948726e-22,-1.4771140499305401e-21,0.00013220518303569406,-4.406839252624195e-06,-3.7772908399347216e-05,-1.8664459114948726e-22,1.2590969618031522e-06,-3.091670257478196e-20,0.0006830600905232131,2.1345230270808369e-19,-0.0006830600905232131,-1.4771140499305401e-21,-3.091670257478196e-20,9.758001397131011e-05,61.0,9.0,0.0370635911822319,-0.0014387281844392419,-0.0082399882376194,1.3989966646477114e-05,0.0001057641493389383,0.000496771011967212,-0.0014387281844392419,0.00010534017928875983,0.0001057641493389383,-1.4227084648155142e-06,-3.5254715839982964e-06,-9.147955830346444e-20,-0.0082399882376194,0.0001057641493389383,0.004472884815186262,-5.4130719480309305e-21,-2.6441037334734574e-05,-0.0004258037079125643,1.3989966646477114e-05,-1.4227084648155142e-06,-5.4130719480309305e-21,2.3711807628501447e-08,-9.074903603507812e-24,7.42922341401048e-22,0.0001057641493389383,-3.5254715839982964e-06,-2.6441037334734574e-05,-9.074903603507812e-24,8.813678959995741e-07,1.3129010682441655e-20,0.000496771011967212,-9.147955830346444e-20,-0.0004258037079125643,7.42922341401048e-22,1.3129010682441655e-20,5.3225463489070535e-05,61.0,10.0,0.03400431573390961,-0.0013035087613388896,-0.006843421142548323,1.2590970072778873e-05,8.65343026816845e-05,0.00037257824442349374,-0.0013035087613388896,9.509460505796596e-05,8.65343026816845e-05,-1.2804375728592277e-06,-2.884476771214395e-06,-8.131516293641283e-20,-0.006843421142548323,8.65343026816845e-05,0.0032905067782849073,-2.6927729891702256e-21,-1.9229844838264398e-05,-0.0002794336760416627,1.2590970072778873e-05,-1.2804375728592277e-06,-2.6927729891702256e-21,2.1340627043286986e-08,-1.397440587872607e-23,3.1449720919015263e-22,8.65343026816845e-05,-2.884476771214395e-06,-1.9229844838264398e-05,-1.397440587872607e-23,6.409948127839016e-07,1.164670302474663e-20,0.00037257824442349374,-8.131516293641283e-20,-0.0002794336760416627,3.1449720919015263e-22,1.164670302474663e-20,3.104818824795075e-05,61.0,11.0,0.03141191601753235,-0.0011915635550394654,-0.00577450031414628,1.1446336429798976e-05,7.211192132672295e-05,0.0002865986607503146,-0.0011915635550394654,8.666816574987024e-05,7.211192132672295e-05,-1.1640341881502536e-06,-2.4037306047830498e-06,-1.4738373282224826e-19,-0.00577450031414628,7.211192132672295e-05,0.0024923605378717184,-1.573341630604614e-20,-1.4422383173950948e-05,-0.00019106575928162783,1.1446336429798976e-05,-1.1640341881502536e-06,-1.573341630604614e-20,1.9400570039351805e-08,1.1898686907326333e-22,1.1183167851967784e-21,7.211192132672295e-05,-2.4037306047830498e-06,-1.4422383173950948e-05,1.1898686907326333e-22,4.807461095879262e-07,1.4505439221729893e-20,0.0002865986607503146,-1.4738373282224826e-19,-0.00019106575928162783,1.1183167851967784e-21,1.4505439221729893e-20,1.9106577383354306e-05,61.0,12.0,0.029186997562646866,-0.001097351429052651,-0.004938081372529268,1.049247475748416e-05,6.101777762523852e-05,0.00022518464538734406,-0.001097351429052651,7.961531082401052e-05,6.101777762523852e-05,-1.0670313486116356e-06,-2.033925966316019e-06,5.421010862427522e-20,-0.004938081372529268,6.101777762523852e-05,0.0019336823606863618,1.1689467616180768e-20,-1.1094140973000322e-05,-0.00013511079305317253,1.049247475748416e-05,-1.0670313486116356e-06,1.1689467616180768e-20,1.7783856165465295e-08,-9.382873165412104e-23,-7.571864611803819e-22,6.101777762523852e-05,-2.033925966316019e-06,-1.1094140973000322e-05,-9.382873165412104e-23,3.6980469531044946e-07,0.0,0.00022518464538734406,5.421010862427522e-20,-0.00013511079305317253,-7.571864611803819e-22,0.0,1.228279961651424e-05,61.0,13.0,0.027256544679403305,-0.001016962924040854,-0.004271244164556265,9.685360964795109e-06,5.230095121078193e-05,0.0001801477192202583,-0.001016962924040854,7.362516043940559e-05,5.230095121078193e-05,-9.849519528870587e-07,-1.7433650327802752e-06,-3.9810548520952116e-20,-0.004271244164556265,5.230095121078193e-05,0.0015307273715734482,-5.271380917420712e-21,-8.71682550496189e-06,-9.826239693211392e-05,9.685360964795109e-06,-9.849519528870587e-07,-5.271380917420712e-21,1.6415865999874768e-08,3.9000822459358175e-23,3.252338459239258e-22,5.230095121078193e-05,-1.7433650327802752e-06,-8.71682550496189e-06,3.9000822459358175e-23,2.905608482706157e-07,2.4352197233561135e-21,0.0001801477192202583,-3.9810548520952116e-20,-9.826239693211392e-05,3.252338459239258e-22,2.4352197233561135e-21,8.188532774511259e-06,61.0,14.0,0.025565695017576218,-0.000947560416534543,-0.0037310190964490175,8.993550181912724e-06,4.532749153440818e-05,0.00014637001731898636,-0.000947560416534543,6.847414624644443e-05,4.532749153440818e-05,-9.145982744485082e-07,-1.5109163769011502e-06,0.0,-0.0037310190964490175,4.532749153440818e-05,0.0012326680589467287,-2.620662065242495e-21,-6.973460131121101e-06,-7.318500865949318e-05,8.993550181912724e-06,-9.145982744485082e-07,-2.620662065242495e-21,1.524330528468454e-08,4.697678129074251e-24,1.7169416238261106e-22,4.532749153440818e-05,-1.5109163769011502e-06,-6.973460131121101e-06,4.697678129074251e-24,2.3244867008997971e-07,-1.2705494208814505e-21,0.00014637001731898636,0.0,-7.318500865949318e-05,1.7169416238261106e-22,-1.2705494208814505e-21,5.629616225633072e-06,61.0,15.0,0.024072427302598953,-0.000887033820617944,-0.0032872429583221674,8.393979442189448e-06,3.966155418311246e-05,0.00012054001854266971,-0.000887033820617944,6.399733683792874e-05,3.966155418311246e-05,-8.536250675206247e-07,-1.3220518439993612e-06,-6.776263578034403e-21,-0.0032872429583221674,3.966155418311246e-05,0.0010074001038447022,6.23650409551074e-22,-5.665936441801023e-06,-5.563385639106855e-05,8.393979442189448e-06,-8.536250675206247e-07,6.23650409551074e-22,1.4227084399465184e-08,-1.0506564661904545e-23,-1.695268238435015e-23,3.966155418311246e-05,-1.3220518439993612e-06,-5.665936441801023e-06,-1.0506564661904545e-23,1.8886454711264378e-07,1.0587911840678754e-21,0.00012054001854266971,-6.776263578034403e-21,-5.563385639106855e-05,-1.695268238435015e-23,1.0587911840678754e-21,3.973847015004139e-06,61.0,16.0,0.022744012996554375,-0.000833781436085701,-0.0029182350262999535,7.869356522860471e-06,3.499548984109424e-05,0.00010045001545222476,-0.000833781436085701,6.007041156408377e-05,3.499548984109424e-05,-8.002734830370173e-07,-1.1665163128782297e-06,3.134021904840911e-20,-0.0029182350262999535,3.499548984109424e-05,0.0008339480846188962,7.240676216575344e-21,-4.666065251512919e-06,-4.305000766180456e-05,7.869356522860471e-06,-8.002734830370173e-07,7.240676216575344e-21,1.3337891680009761e-08,-6.6681939001789e-23,-3.2916893655465786e-22,3.499548984109424e-05,-1.1665163128782297e-06,-4.666065251512919e-06,-6.6681939001789e-23,1.5553550269942207e-07,-1.2176098616780567e-21,0.00010045001545222476,3.134021904840911e-20,-4.305000766180456e-05,-3.2916893655465786e-22,-1.2176098616780567e-21,2.8700005714199506e-06,61.0,17.0,0.021554570645093918,-0.0007865653024055064,-0.0026080848183482885,7.406452823488507e-06,3.110710167675279e-05,8.458949014311656e-05,-0.0007865653024055064,5.659785165335052e-05,3.110710167675279e-05,-7.531986057074391e-07,-1.0369034271207056e-06,-6.776263578034403e-21,-0.0026080848183482885,3.110710167675279e-05,0.0006982043851166964,-7.453461259986704e-22,-3.888387709594099e-06,-3.383579314686358e-05,7.406452823488507e-06,-7.531986057074391e-07,-7.453461259986704e-22,1.2553309503005039e-08,-1.2376618602298845e-23,6.937575384271219e-23,3.110710167675279e-05,-1.0369034271207056e-06,-3.888387709594099e-06,-1.2376618602298845e-23,1.296129283900882e-07,2.9116757561866574e-22,8.458949014311656e-05,-6.776263578034403e-21,-3.383579314686358e-05,6.937575384271219e-23,2.9116757561866574e-22,2.1147370716789737e-06,61.0,18.0,0.02048337273299694,-0.0007444134680554271,-0.0023449023719877005,6.994983323238557e-06,2.783266972983256e-05,7.190106407506391e-05,-0.0007444134680554271,5.350507126422599e-05,2.783266972983256e-05,-7.113542324077571e-07,-9.277556500819628e-07,1.6940658945086007e-20,-0.0023449023719877005,2.783266972983256e-05,0.0005904380232095718,4.059970871368968e-21,-3.2744317195465555e-06,-2.696289993764367e-05,6.994983323238557e-06,-7.113542324077571e-07,4.059970871368968e-21,1.1855903814250723e-08,-3.5076684373434186e-23,-1.6344667841651056e-22,2.783266972983256e-05,-9.277556500819628e-07,-3.2744317195465555e-06,-3.5076684373434186e-23,1.0914772730075128e-07,-5.955700410381799e-22,7.190106407506391e-05,1.6940658945086007e-20,-2.696289993764367e-05,-1.6344667841651056e-22,-5.955700410381799e-22,1.586052917446068e-06,61.0,19.0,0.01951361820101738,-0.0007065522368066013,-0.002119656652212143,6.626826234423788e-06,2.5049403120647185e-05,6.162948557175696e-05,-0.0007065522368066013,5.073296051705256e-05,2.5049403120647185e-05,-6.739145419487613e-07,-8.349800850737665e-07,8.893845946170154e-21,-0.002119656652212143,2.5049403120647185e-05,0.000503786897752434,2.0584290588670143e-21,-2.783267063932726e-06,-2.175158260797616e-05,6.626826234423788e-06,-6.739145419487613e-07,2.0584290588670143e-21,1.1231908736419882e-08,-2.5501804672501822e-23,-6.347949189272826e-23,2.5049403120647185e-05,-8.349800850737665e-07,-2.783267063932726e-06,-2.5501804672501822e-23,9.277556500819628e-08,-4.896909226313924e-22,6.162948557175696e-05,8.893845946170154e-21,-2.175158260797616e-05,-6.347949189272826e-23,-4.896909226313924e-22,1.2084212812624173e-06,61.0,20.0,0.018631543964147568,-0.0006723577971570194,-0.00192538823466748,6.2954850363894366e-06,2.266374576720409e-05,5.3225463489070535e-05,-0.0006723577971570194,4.823408380616456e-05,2.266374576720409e-05,-6.402187864296138e-07,-7.554581884505751e-07,1.2281977735187355e-20,-0.00192538823466748,2.266374576720409e-05,0.0004333161050453782,3.3268412599187166e-21,-2.3856573534430936e-06,-1.774182055669371e-05,6.2954850363894366e-06,-6.402187864296138e-07,3.3268412599187166e-21,1.0670313521643493e-08,-2.818092934564799e-23,-1.1646675509278256e-22,2.266374576720409e-05,-7.554581884505751e-07,-2.3856573534430936e-06,-2.818092934564799e-23,7.952191083404614e-08,-4.235164736271502e-22,5.3225463489070535e-05,1.2281977735187355e-20,-1.774182055669371e-05,-1.1646675509278256e-22,-4.235164736271502e-22,9.33780029299669e-07,61.0,21.0,0.01782577484846115,-0.000641321879811585,-0.0017566642491146922,5.995699666527798e-06,2.0603405573638156e-05,4.628301030606963e-05,-0.000641321879811585,4.5969925849931315e-05,2.0603405573638156e-05,-6.097321829656721e-07,-6.867801403132034e-07,7.835054762102278e-21,-0.0017566642491146922,2.0603405573638156e-05,0.00037541415076702833,9.403971218767803e-22,-2.0603404209396103e-06,-1.4615688087360468e-05,5.995699666527798e-06,-6.097321829656721e-07,9.403971218767803e-22,1.0162203523123026e-08,7.05316354395309e-24,-5.632372199969398e-23,2.0603405573638156e-05,-6.867801403132034e-07,-2.0603404209396103e-06,7.05316354395309e-24,6.867801971566223e-08,-3.110199103199384e-22,4.628301030606963e-05,7.835054762102278e-21,-1.4615688087360468e-05,-5.632372199969398e-23,-3.110199103199384e-22,7.307843929993396e-07,61.0,22.0,0.0170868169516325,-0.0006130259716883302,-0.0016091931611299515,5.723168214899488e-06,1.881180469354149e-05,4.0497634472558275e-05,-0.0006130259716883302,4.390888716443442e-05,1.881180469354149e-05,-5.820170940751268e-07,-6.270601602409442e-07,1.4823076576950256e-21,-0.0016091931611299515,1.881180469354149e-05,0.00032739632297307253,-7.3304802429999e-22,-1.7916004253493156e-06,-1.2149290341767482e-05,5.723168214899488e-06,-5.820170940751268e-07,-7.3304802429999e-22,9.700285019675903e-09,7.49317359080636e-24,1.9530853372011566e-23,1.881180469354149e-05,-6.270601602409442e-07,-1.7916004253493156e-06,7.49317359080636e-24,5.972001559939599e-08,-2.0514079191315086e-22,4.0497634472558275e-05,1.4823076576950256e-21,-1.2149290341767482e-05,1.9530853372011566e-23,-2.0514079191315086e-22,5.785376515632379e-07,61.0,23.0,0.016406690701842308,-0.0005871223984286189,-0.0014795484021306038,5.474334557220573e-06,1.7244154150830582e-05,3.5637920518638566e-05,-0.0005871223984286189,4.2024796130135655e-05,1.7244154150830582e-05,-5.567119956140232e-07,-5.748051421505807e-07,1.4399560103323106e-20,-0.0014795484021306038,1.7244154150830582e-05,0.00028723833383992314,2.6738411352384883e-21,-1.56765042902407e-06,-1.0182262485614046e-05,5.474334557220573e-06,-5.567119956140232e-07,2.6738411352384883e-21,9.278533497081298e-09,-2.4850309694428756e-23,-8.038061590603498e-23,1.7244154150830582e-05,-5.748051421505807e-07,-1.56765042902407e-06,-2.4850309694428756e-23,5.225501453764991e-08,-7.610061635487855e-22,3.5637920518638566e-05,1.4399560103323106e-20,-1.0182262485614046e-05,-8.038061590603498e-23,-7.610061635487855e-22,4.628301155662484e-07,61.0,24.0,0.015778638422489166,-0.000563320005312562,-0.0013649676693603396,5.24623737874208e-06,1.5864621673244983e-05,3.152585122734308e-05,-0.000563320005312562,4.029579940834083e-05,1.5864621673244983e-05,-5.335156743058178e-07,-5.288207489684282e-07,4.658681209898652e-21,-0.0013649676693603396,1.5864621673244983e-05,0.00025339421699754894,1.2116103788563464e-21,-1.379532363898761e-06,-8.597959094913676e-06,5.24623737874208e-06,-5.335156743058178e-07,1.2116103788563464e-21,8.891928082732647e-09,-1.2943113817834347e-23,-3.08625073762094e-23,1.5864621673244983e-05,-5.288207489684282e-07,-1.379532363898761e-06,-1.2943113817834347e-23,4.598441094572081e-08,-2.514629062161204e-22,3.152585122734308e-05,4.658681209898652e-21,-8.597959094913676e-06,-3.08625073762094e-23,-2.514629062161204e-22,3.7382432083177264e-07,61.0,25.0,0.015196899883449078,-0.0005413729813881218,-0.00126320356503129,5.036387847212609e-06,1.4644266229879577e-05,2.802297967718914e-05,-0.0005413729813881218,3.8703492464264855e-05,1.4644266229879577e-05,-5.121750632497424e-07,-4.881422341895814e-07,-5.082197683525802e-21,-0.00126320356503129,1.4644266229879577e-05,0.0002246692165499553,-2.271311542377387e-21,-1.220355557052244e-06,-7.310342425626004e-06,5.036387847212609e-06,-5.121750632497424e-07,-2.271311542377387e-21,8.536250817314794e-09,2.0497313688268605e-23,6.578019525647448e-23,1.4644266229879577e-05,-4.881422341895814e-07,-1.220355557052244e-06,2.0497313688268605e-23,4.0678518331560554e-08,4.963083675318166e-23,2.802297967718914e-05,-5.082197683525802e-21,-7.310342425626004e-06,6.578019525647448e-23,4.963083675318166e-23,3.0459759159384703e-07,61.0,26.0,0.014656534418463707,-0.00052107241936028,-0.001172413001768291,4.8426804823975544e-06,1.3559505532612093e-05,2.5020517568918876e-05,-0.00052107241936028,3.723227928276174e-05,1.3559505532612093e-05,-4.924759764435294e-07,-4.5198353859632334e-07,4.341043854678289e-21,-0.001172413001768291,1.3559505532612093e-05,0.00020013023458886892,1.0612191086075284e-21,-1.0847604698938085e-06,-6.255129392229719e-06,4.8426804823975544e-06,-4.924759764435294e-07,1.0612191086075284e-21,8.207932999937384e-09,-1.819600960694306e-24,-3.8751400418345395e-23,1.3559505532612093e-05,-4.5198353859632334e-07,-1.0847604698938085e-06,-1.819600960694306e-24,3.61586813824033e-08,-1.224227306578481e-22,2.5020517568918876e-05,4.341043854678289e-21,-6.255129392229719e-06,-3.8751400418345395e-23,-1.224227306578481e-22,2.5020517568918876e-07,61.0,27.0,0.01415327936410904,-0.000502239796333015,-0.001091072685085237,4.6633222154923715e-06,1.2590970072778873e-05,2.24321865971433e-05,-0.000502239796333015,3.5868852137355134e-05,1.2590970072778873e-05,-4.742361454646016e-07,-4.1969897779381427e-07,3.1763735522036263e-22,-0.001091072685085237,1.2590970072778873e-05,0.0001790411479305476,-3.975960693816237e-22,-9.68536141954246e-07,-5.383724783314392e-06,4.6633222154923715e-06,-4.742361454646016e-07,-3.975960693816237e-22,7.903936172226622e-09,3.601940865391403e-24,7.592212710874143e-24,1.2590970072778873e-05,-4.1969897779381427e-07,-9.68536141954246e-07,3.601940865391403e-24,3.2284539486227004e-08,-4.632211430296955e-23,2.24321865971433e-05,3.1763735522036263e-22,-5.383724783314392e-06,7.592212710874143e-24,-4.632211430296955e-23,2.0706634984435368e-07,61.0,28.0,0.013683438301086426,-0.00048472132766619325,-0.001017914735712111,4.496775090956362e-06,1.1722627277777065e-05,2.018896884692367e-05,-0.00048472132766619325,3.4601776860654354e-05,1.1722627277777065e-05,-4.572991372242541e-07,-3.9075422364476253e-07,1.376428539288238e-21,-0.001017914735712111,1.1722627277777065e-05,0.00016081596550066024,3.1051713455516123e-22,-8.683427381583897e-07,-4.6589925659645814e-06,4.496775090956362e-06,-4.572991372242541e-07,3.1051713455516123e-22,7.62165264234227e-09,-2.892687463990317e-24,-9.302239905757119e-24,1.1722627277777065e-05,-3.9075422364476253e-07,-8.683427381583897e-07,-2.892687463990317e-24,2.894475770176541e-08,-3.639594695233322e-23,2.018896884692367e-05,1.376428539288238e-21,-4.6589925659645814e-06,-9.302239905757119e-24,-3.639594695233322e-23,1.7255528916848561e-07,61.0,29.0,0.013243789784610271,-0.0004683840670622885,-0.0009518773294985294,4.341713520261692e-06,1.0941118489427026e-05,1.8235197785543278e-05,-0.0004683840670622885,3.3421187254134566e-05,1.0941118489427026e-05,-4.4153020439807733e-07,-3.647039648058126e-07,-5.823351512373315e-21,-0.0009518773294985294,1.0941118489427026e-05,0.0001449842966394499,-1.73306515817881e-21,-7.815084472895251e-07,-4.052265921927756e-06,4.341713520261692e-06,-4.4153020439807733e-07,-1.73306515817881e-21,7.3588366511501135e-09,1.1991494341787231e-23,4.7291706397020316e-23,1.0941118489427026e-05,-3.647039648058126e-07,-7.815084472895251e-07,1.1991494341787231e-23,2.605028193158887e-08,1.885971796620903e-22,1.8235197785543278e-05,-5.823351512373315e-21,-4.052265921927756e-06,4.7291706397020316e-23,1.885971796620903e-22,1.4472378495611338e-07,61.0,30.0,0.012831514701247215,-0.0004531124432105571,-0.0008920651162043214,4.196989721094724e-06,1.0235239642497618e-05,1.6525647879461758e-05,-0.0004531124432105571,3.2318519515683874e-05,1.0235239642497618e-05,-4.2681253376031236e-07,-3.411746547499206e-07,-2.752857078576476e-21,-0.0008920651162043214,1.0235239642497618e-05,0.00013116553600411862,-4.346777068545495e-22,-7.058786195557332e-07,-3.5412101624388015e-06,4.196989721094724e-06,-4.2681253376031236e-07,-4.346777068545495e-22,7.113542199732592e-09,1.0514582052499532e-24,1.1157774861190826e-23,1.0235239642497618e-05,-3.411746547499206e-07,-7.058786195557332e-07,1.0514582052499532e-24,2.352928696325307e-08,1.4558378780933287e-22,1.6525647879461758e-05,-2.752857078576476e-21,-3.5412101624388015e-06,1.1157774861190826e-23,1.4558378780933287e-22,1.221106913362746e-07,61.0,31.0,0.01244413387030363,-0.00043880543671548367,-0.0008377194753848016,4.0616032492835075e-06,9.595537449058611e-06,1.502331633673748e-05,-0.00043880543671548367,3.128630487481132e-05,9.595537449058611e-06,-4.1304437559119833e-07,-3.1985123882805055e-07,7.411538288475128e-22,-0.0008377194753848016,9.595537449058611e-06,0.00011904950224561617,2.709091984322577e-22,-6.397024776561011e-07,-3.1082722671271767e-06,4.0616032492835075e-06,-4.1304437559119833e-07,2.709091984322577e-22,6.884073311397287e-09,-5.590284892954046e-24,-1.648044322799885e-24,9.595537449058611e-06,-3.1985123882805055e-07,-6.397024776561011e-07,-5.590284892954046e-24,2.1323415921870037e-08,-4.963083675318166e-23,1.502331633673748e-05,7.411538288475128e-22,-3.1082722671271767e-06,-1.648044322799885e-24,-4.963083675318166e-23,1.0360907509721073e-07,61.0,32.0,0.012079457752406597,-0.0004253744555171579,-0.0007881938363425434,3.934678261430236e-06,9.013990165840369e-06,1.369772962789284e-05,-0.0004253744555171579,3.031799860764295e-05,9.013990165840369e-06,-4.0013674151850864e-07,-3.004663255978812e-07,9.529120656610879e-22,-0.0007881938363425434,9.013990165840369e-06,0.0001083816823665984,-7.799405923225174e-23,-5.815477379655931e-07,-2.739545834629098e-06,3.934678261430236e-06,-4.0013674151850864e-07,-7.799405923225174e-23,6.668945840004881e-09,-5.219883932377478e-24,8.837884033646917e-24,9.013990165840369e-06,-3.004663255978812e-07,-5.815477379655931e-07,-5.219883932377478e-24,1.9384923888310368e-08,-9.098986738083304e-23,1.369772962789284e-05,9.529120656610879e-22,-2.739545834629098e-06,8.837884033646917e-24,-9.098986738083304e-23,8.837244536152866e-08,61.0,33.0,0.011735547333955765,-0.0004127414140384644,-0.0007429345278069377,3.815445325017208e-06,8.483754754706752e-06,1.252363836101722e-05,-0.0004127414140384644,2.9407839974737726e-05,8.483754754706752e-06,-3.880113865761814e-07,-2.827918308412336e-07,2.4352197233561135e-21,-0.0007429345278069377,8.483754754706752e-06,9.89518957794644e-05,8.031540045945599e-22,-5.30234672169172e-07,-2.4239300273620756e-06,3.815445325017208e-06,-3.880113865761814e-07,8.031540045945599e-22,6.466856383724462e-09,-5.9661021725058625e-24,-1.9758897282492856e-23,8.483754754706752e-06,-2.827918308412336e-07,-5.30234672169172e-07,-5.9661021725058625e-24,1.76744894275771e-08,-6.617444900424221e-23,1.252363836101722e-05,2.4352197233561135e-21,-2.4239300273620756e-06,-1.9758897282492856e-23,-6.617444900424221e-23,7.574781335506486e-08,61.0,34.0,0.011410677805542946,-0.0004008372197858989,-0.0007014651200734079,3.7032264117442537e-06,7.998968612810131e-06,1.1480002285679802e-05,-0.0004008372197858989,2.8550744900712743e-05,7.998968612810131e-06,-3.7659930285371956e-07,-2.666322984623548e-07,-2.6469779601696886e-22,-0.0007014651200734079,7.998968612810131e-06,9.058554860530421e-05,6.846881497502025e-22,-4.847860282097827e-07,-2.152500428564963e-06,3.7032264117442537e-06,-3.7659930285371956e-07,6.846881497502025e-22,6.2766547515025195e-09,-9.889774041634866e-24,-9.891548189810708e-24,7.998968612810131e-06,-2.666322984623548e-07,-4.847860282097827e-07,-9.889774041634866e-24,1.6159534155235633e-08,5.955700410381799e-23,1.1480002285679802e-05,-2.6469779601696886e-22,-2.152500428564963e-06,-9.891548189810708e-24,5.955700410381799e-23,6.522728313029802e-08,61.0,35.0,0.011103310622274876,-0.0003896005800925195,-0.0006633739685639739,3.5974198908661492e-06,7.554581770818913e-06,1.054919084708672e-05,-0.0003896005800925195,2.774220411083661e-05,7.554581770818913e-06,-3.658393268324289e-07,-2.5181938667628856e-07,-6.88214269644119e-22,-0.0006633739685639739,7.554581770818913e-06,8.313679427374154e-05,1.5241571452355582e-22,-4.4438715463002154e-07,-1.918034740810981e-06,3.5974198908661492e-06,-3.658393268324289e-07,1.5241571452355582e-22,6.0973217586024475e-09,3.2498347724982674e-25,-4.316741931108456e-24,7.554581770818913e-06,-2.5181938667628856e-07,-4.4438715463002154e-07,3.2498347724982674e-25,1.4812905568817314e-08,4.963083675318166e-23,1.054919084708672e-05,-6.88214269644119e-22,-1.918034740810981e-06,-4.316741931108456e-24,4.963083675318166e-23,5.641278377765957e-08,61.0,36.0,0.010812068358063698,-0.0003789768379647285,-0.000628303736448288,3.4974916616192786e-06,7.146225925680483e-06,9.716360182210337e-06,-0.0003789768379647285,2.6978204914485104e-05,7.146225925680483e-06,-3.5567711620387854e-07,-2.3820753369818704e-07,-0.0,-0.000628303736448288,7.146225925680483e-06,7.648316386621445e-05,1.3234889800848443e-23,-4.0835578829501173e-07,-1.7146517166111153e-06,3.4974916616192786e-06,-3.5567711620387854e-07,1.3234889800848443e-23,5.927951907125362e-09,-4.1359030627651384e-25,-0.0,7.146225925680483e-06,-2.3820753369818704e-07,-4.0835578829501173e-07,-4.1359030627651384e-25,1.3611859195350462e-08,-0.0,9.716360182210337e-06,-0.0,-1.7146517166111153e-06,-0.0,-0.0,4.899004935055018e-08,61.0,37.0,0.010535714216530323,-0.0003689172153826803,-0.0005959431873634458,3.402964694032562e-06,6.770108939235797e-06,8.968947440735064e-06,-0.0003689172153826803,2.625516390253324e-05,6.770108939235797e-06,-3.460642119534896e-07,-2.2567029134279437e-07,-0.0,-0.0005959431873634458,6.770108939235797e-06,7.052128057694063e-05,1.3234889800848443e-23,-3.761171569749422e-07,-1.5375338762169122e-06,3.402964694032562e-06,-3.460642119534896e-07,1.3234889800848443e-23,5.767736954709335e-09,-4.1359030627651384e-25,-0.0,6.770108939235797e-06,-2.2567029134279437e-07,-3.761171569749422e-07,-4.1359030627651384e-25,1.2537238802678985e-08,-0.0,8.968947440735064e-06,-0.0,-1.5375338762169122e-06,-0.0,-0.0,4.270927433935867e-08,61.0,38.0,0.010273135267198086,-0.00035937788197770715,-0.0005660201422870159,3.313413117211894e-06,6.42292388874921e-06,8.29627697385149e-06,-0.00035937788197770715,2.5569872377673164e-05,6.42292388874921e-06,-3.3695727097438066e-07,-2.1409745443179418e-07,-0.0,-0.0005660201422870159,6.42292388874921e-06,6.516350549645722e-05,0.0,-3.471850789082964e-07,-1.3827127531840233e-06,3.313413117211894e-06,-3.3695727097438066e-07,0.0,5.615954368209941e-09,0.0,-0.0,6.42292388874921e-06,-2.1409745443179418e-07,-3.471850789082964e-07,0.0,1.1572836022821775e-08,-0.0,8.29627697385149e-06,-0.0,-1.3827127531840233e-06,-0.0,-0.0,3.737061504693884e-08,61.0,39.0,0.010023326613008976,-0.000350319518474862,-0.0005382958333939314,3.2284538065141533e-06,6.101777671574382e-06,7.689232006669044e-06,-0.000350319518474862,2.4919449060689658e-05,6.101777671574382e-06,-3.283173271029227e-07,-2.033925881050891e-07,-0.0,-0.0005382958333939314,6.101777671574382e-06,6.033519093762152e-05,-2.6469779601696886e-23,-3.211461887531186e-07,-1.2469024568417808e-06,3.2284538065141533e-06,-3.283173271029227e-07,-2.6469779601696886e-23,5.471955777380799e-09,1.2407709188295415e-24,-0.0,6.101777671574382e-06,-2.033925881050891e-07,-3.211461887531186e-07,1.2407709188295415e-24,1.0704873432132445e-08,-0.0,7.689232006669044e-06,-0.0,-1.2469024568417808e-06,-0.0,-0.0,3.2813222361482985e-08,61.0,40.0,0.009785379283130169,-0.00034170664730481803,-0.0005125599564053118,3.1477425181947183e-06,5.804130069009261e-06,7.140001343941549e-06,-0.00034170664730481803,2.4301300072693266e-05,5.804130069009261e-06,-3.201093932148069e-07,-1.934709956685765e-07,-0.0,-0.0005125599564053118,5.804130069009261e-06,5.597249764832668e-05,1.3234889800848443e-23,-2.976476878302492e-07,-1.1273685913693043e-06,3.1477425181947183e-06,-3.201093932148069e-07,1.3234889800848443e-23,5.3351567608217465e-09,-4.1359030627651384e-25,-0.0,5.804130069009261e-06,-1.934709956685765e-07,-2.976476878302492e-07,-4.1359030627651384e-25,9.921589771977324e-09,-0.0,7.140001343941549e-06,-0.0,-1.1273685913693043e-06,-0.0,-0.0,2.8906887550306237e-08,61.0,41.0,0.00955846719443798,-0.0003335071378387511,-0.0004886267706751823,3.070968205065583e-06,5.527742814592784e-06,6.6418615460861474e-06,-0.0003335071378387511,2.3713078917353414e-05,5.527742814592784e-06,-3.1230186436914664e-07,-1.8425809855671105e-07,-0.0,-0.0004886267706751823,5.527742814592784e-06,5.2020608563907444e-05,1.3234889800848443e-23,-2.763871407296392e-07,-1.0218248007731745e-06,3.070968205065583e-06,-3.1230186436914664e-07,1.3234889800848443e-23,5.205031072819111e-09,-4.1359030627651384e-25,-0.0,5.527742814592784e-06,-1.8425809855671105e-07,-2.763871407296392e-07,-4.1359030627651384e-25,9.212905105471236e-09,-0.0,6.6418615460861474e-06,-0.0,-1.0218248007731745e-06,-0.0,-0.0,2.5545620729872098e-08,61.0,42.0,0.009341840632259846,-0.0003256920026615262,-0.0004663317231461406,2.997849833263899e-06,5.270638666843297e-06,6.189007308421424e-06,-0.0003256920026615262,2.315266647201497e-05,5.270638666843297e-06,-3.0486609148283605e-07,-1.7568794419275946e-07,-0.0,-0.0004663317231461406,5.270638666843297e-06,4.84322699776385e-05,-1.3234889800848443e-23,-2.571043182797439e-07,-9.283510848945298e-07,2.997849833263899e-06,-3.0486609148283605e-07,-1.3234889800848443e-23,5.081101761561513e-09,4.1359030627651384e-25,-0.0,5.270638666843297e-06,-1.7568794419275946e-07,-2.571043182797439e-07,4.1359030627651384e-25,8.570143705810551e-09,-0.0,6.189007308421424e-06,-0.0,-9.283510848945298e-07,-0.0,-0.0,2.2642709041065245e-08,61.0,43.0,0.009134815074503422,-0.0003182347572874278,-0.00044552868348546326,2.9281325168994954e-06,5.031064119975781e-06,5.776406851509819e-06,-0.0003182347572874278,2.261813096993137e-05,5.031064119975781e-06,-2.9777618237858405e-07,-1.6770214017469698e-07,-0.0,-0.00044552868348546326,5.031064119975781e-06,4.516660555964336e-05,-2.6469779601696886e-23,-2.3957449002409703e-07,-8.453278041997692e-07,2.9281325168994954e-06,-2.9777618237858405e-07,-2.6469779601696886e-23,4.962936284158559e-09,4.1359030627651384e-25,-0.0,5.031064119975781e-06,-1.6770214017469698e-07,-2.3957449002409703e-07,4.1359030627651384e-25,7.985815564381937e-09,-0.0,5.776406851509819e-06,-0.0,-8.453278041997692e-07,-0.0,-0.0,2.012685307306583e-08,61.0,44.0,0.008936766535043716,-0.00031111142016015947,-0.00042608738294802606,2.861584107449744e-06,4.8074612095660996e-06,5.399684596341103e-06,-0.00031111142016015947,2.2107724362285808e-05,4.8074612095660996e-06,-2.910085470375634e-07,-1.602487031959754e-07,-0.0,-0.00042608738294802606,4.8074612095660996e-06,4.218814137857407e-05,1.3234889800848443e-23,-2.2360283935540792e-07,-7.713834975220379e-07,2.861584107449744e-06,-2.910085470375634e-07,1.3234889800848443e-23,4.850142509837951e-09,-4.1359030627651384e-25,-0.0,4.8074612095660996e-06,-1.602487031959754e-07,-2.2360283935540792e-07,-4.1359030627651384e-25,7.453428096937387e-09,-0.0,5.399684596341103e-06,-0.0,-7.713834975220379e-07,-0.0,-0.0,1.7939152385793022e-08,61.0,45.0,0.00874712411314249,-0.0003043000178877264,-0.00040789152262732387,2.797993374770158e-06,4.598441137204645e-06,5.055023848399287e-06,-0.0003043000178877264,2.1619849576381966e-05,4.598441137204645e-06,-2.845416986474447e-07,-1.5328137692449673e-07,-0.0,-0.00040789152262732387,4.598441137204645e-06,3.94659728044644e-05,0.0,-2.0902005815059965e-07,-7.053521926536632e-07,2.797993374770158e-06,-2.845416986474447e-07,0.0,4.742361614518131e-09,0.0,-0.0,4.598441137204645e-06,-1.5328137692449673e-07,-2.0902005815059965e-07,0.0,6.967335153262866e-09,-0.0,5.055023848399287e-06,-0.0,-7.053521926536632e-07,-0.0,-0.0,1.603073052081072e-08,61.0,46.0,0.00856536254286766,-0.00029778049793094397,-0.00039083691081032157,2.7371672786102863e-06,4.402762897370849e-06,4.73908494313946e-06,-0.00029778049793094397,2.1153042325749993e-05,4.402762897370849e-06,-2.783559978070116e-07,-1.467587651404756e-07,-1.6663801836402579e-22,-0.00039083691081032157,4.402762897370849e-06,3.6973109672544524e-05,0.0,-1.956783393097794e-07,-6.462388455474866e-07,2.7371672786102863e-06,-2.783559978070116e-07,0.0,4.639266748540649e-09,0.0,-0.0,4.402762897370849e-06,-1.467587651404756e-07,-1.956783393097794e-07,0.0,6.5226113399319274e-09,7.4061346228288e-24,4.73908494313946e-06,-1.6663801836402579e-22,-6.462388455474866e-07,-0.0,7.4061346228288e-24,1.4360863609397256e-08,61.0,47.0,0.008391001261770725,-0.00029153452487662435,-0.0003748300950974226,2.678929831745336e-06,4.219314178044442e-06,4.448937033885159e-06,-0.00029153452487662435,2.070596929115709e-05,4.219314178044442e-06,-2.7243353883932286e-07,-1.4064380593481474e-07,-0.0,-0.0003748300950974226,4.219314178044442e-06,3.468590148258954e-05,-6.617444900424222e-24,-1.8344844932016713e-07,-5.931916007284599e-07,2.678929831745336e-06,-2.7243353883932286e-07,-6.617444900424222e-24,4.540559039867276e-09,2.0679515313825692e-25,-0.0,4.219314178044442e-06,-1.4064380593481474e-07,-1.8344844932016713e-07,2.0679515313825692e-25,6.114948103430606e-09,-0.0,4.448937033885159e-06,-0.0,-5.931916007284599e-07,-0.0,-0.0,1.2895469581053476e-08,61.0,48.0,0.008223596960306168,-0.00028554521850310266,-0.000359786965418607,2.62311868937104e-06,4.04709726353758e-06,4.182000793662155e-06,-0.00028554521850310266,2.0277406292734668e-05,4.04709726353758e-06,-2.667578371529089e-07,-1.349032459074806e-07,-1.0587911840678754e-22,-0.000359786965418607,4.04709726353758e-06,3.258356446167454e-05,-1.4130868550667605e-23,-1.7221691450686194e-07,-5.454783718050749e-07,2.62311868937104e-06,-2.667578371529089e-07,-1.4130868550667605e-23,4.445964041366324e-09,4.882774874153499e-25,2.9768371919246504e-26,4.04709726353758e-06,-1.349032459074806e-07,-1.7221691450686194e-07,4.882774874153499e-25,5.7405635800478194e-09,4.963083675318166e-24,4.182000793662155e-06,-1.0587911840678754e-22,-5.454783718050749e-07,2.9768371919246504e-26,4.963083675318166e-24,1.1605922445312444e-08,61.0,49.0,0.008062741719186306,-0.000279797037364915,-0.00034563164808787405,2.56958560385101e-06,3.885213573084911e-06,3.936000666726613e-06,-0.000279797037364915,1.9866223738063127e-05,3.885213573084911e-06,-2.6131380082006217e-07,-1.295071143658788e-07,6.617444900424221e-23,-0.00034563164808787405,3.885213573084911e-06,3.0647788662463427e-05,-0.0,-1.6188390361548954e-07,-5.024681399845576e-07,2.56958560385101e-06,-2.6131380082006217e-07,-0.0,4.355229954455808e-09,0.0,0.0,3.885213573084911e-06,-1.295071143658788e-07,-1.6188390361548954e-07,0.0,5.39612976524495e-09,-2.481541837659083e-24,3.936000666726613e-06,6.617444900424221e-23,-5.024681399845576e-07,0.0,-2.481541837659083e-24,1.046808684179723e-08,61.0,50.0,0.007908058352768421,-0.00027427574968896806,-0.0003322956326883286,2.5181939236063045e-06,3.732852292159805e-06,3.7089237139298348e-06,-0.00027427574968896806,1.9471388441161253e-05,3.732852292159805e-06,-2.560875316248712e-07,-1.2442841068605048e-07,-3.970466940254533e-23,-0.0003322956326883286,3.732852292159805e-06,2.8862397812190466e-05,1.2517069764447109e-23,-1.523613093468157e-07,-4.6361546424122935e-07,2.5181939236063045e-06,-2.560875316248712e-07,1.2517069764447109e-23,4.268125408657397e-09,-2.7287135050283e-25,-2.0106115741128662e-25,3.732852292159805e-06,-1.2442841068605048e-07,-1.523613093468157e-07,-2.7287135050283e-25,5.07871034116647e-09,1.6543612251060553e-24,3.7089237139298348e-06,-3.970466940254533e-23,-4.6361546424122935e-07,-2.0106115741128662e-25,1.6543612251060553e-24,9.46153999592525e-09,61.0,51.0,0.007759199012070894,-0.0002689681714400649,-0.0003197168989572674,2.4688176836207276e-06,3.5892810501536587e-06,3.498984597172239e-06,-0.0002689681714400649,1.9091941794613376e-05,3.5892810501536587e-06,-2.510661829546734e-07,-1.1964269219788548e-07,-8.735027268559972e-22,-0.0003197168989572674,3.5892810501536587e-06,2.7213061912334524e-05,-8.025213002832492e-22,-1.4357124200614635e-07,-4.2844709469136433e-07,2.4688176836207276e-06,-2.510661829546734e-07,-8.025213002832492e-22,4.184436797061153e-09,3.820368561438049e-24,1.42893948827372e-23,3.5892810501536587e-06,-1.1964269219788548e-07,-1.4357124200614635e-07,3.820368561438049e-24,4.785707830023966e-09,2.0679515313825692e-24,3.498984597172239e-06,-8.735027268559972e-22,-4.2844709469136433e-07,1.42893948827372e-23,2.0679515313825692e-24,8.568942000408697e-09,61.0,52.0,0.007615840062499046,-0.00026386213721707463,-0.00030783916008658707,2.4213402411987772e-06,3.453836370681529e-06,3.3045964755729074e-06,-0.00026386213721707463,1.8727003407548182e-05,3.453836370681529e-06,-2.462379882217647e-07,-1.1512788233858373e-07,-7.940933880509066e-23,-0.00030783916008658707,3.453836370681529e-06,2.568706258898601e-05,-1.1139987625499903e-23,-1.3544456578529207e-07,-3.9655159866924805e-07,2.4213402411987772e-06,-2.462379882217647e-07,-1.1139987625499903e-23,4.103966499968692e-09,-1.4805543614794912e-25,2.7537440615509626e-25,3.453836370681529e-06,-1.1512788233858373e-07,-1.3544456578529207e-07,-1.4805543614794912e-25,4.514818741085946e-09,3.308722450212111e-24,3.3045964755729074e-06,-7.940933880509066e-23,-3.9655159866924805e-07,2.7537440615509626e-25,3.308722450212111e-24,7.775521559949539e-09,61.0,53.0,0.007477682549506426,-0.00025894635473378,-0.00029661128064617515,2.375654730712995e-06,3.325916622998193e-06,3.1243457669916097e-06,-0.00025894635473378,1.8375756553723477e-05,3.325916622998193e-06,-2.4159200506801426e-07,-1.1086388695957794e-07,-6.352747104407253e-22,-0.00029661128064617515,3.325916622998193e-06,2.4273080271086656e-05,-6.73713314888376e-22,-1.2791986137017375e-07,-3.675700952499028e-07,2.375654730712995e-06,-2.4159200506801426e-07,-6.73713314888376e-22,4.026533328982396e-09,4.170874844415396e-24,8.547758347646544e-24,3.325916622998193e-06,-1.1086388695957794e-07,-1.2791986137017375e-07,4.170874844415396e-24,4.263995379005792e-09,3.308722450212111e-24,3.1243457669916097e-06,-6.352747104407253e-22,-3.675700952499028e-07,8.547758347646544e-24,3.308722450212111e-24,7.068655882846997e-09,61.0,54.0,0.00734444847330451,-0.0002542104048188776,-0.00028598669450730085,2.3316611077461857e-06,3.204974063919508e-06,2.956970092782285e-06,-0.0002542104048188776,1.8037442714557983e-05,3.204974063919508e-06,-2.371180727323008e-07,-1.068324735342685e-07,6.617444900424222e-24,-0.00028598669450730085,3.204974063919508e-06,2.2961021386436187e-05,-0.0,-1.2094241697013786e-07,-3.411888656046358e-07,2.3316611077461857e-06,-2.371180727323008e-07,-0.0,3.951968086113311e-09,2.0679515313825692e-25,-1.0339757656912846e-25,3.204974063919508e-06,-1.068324735342685e-07,-1.2094241697013786e-07,2.0679515313825692e-25,4.031413869398648e-09,0.0,2.956970092782285e-06,6.617444900424222e-24,-3.411888656046358e-07,-1.0339757656912846e-25,0.0,6.437525623681495e-09,61.0,55.0,0.007215878926217556,-0.0002496445958968252,-0.0002759229682851583,2.289267285959795e-06,3.0905107450962532e-06,2.801340087899007e-06,-0.0002496445958968252,1.7711361579131335e-05,3.0905107450962532e-06,-2.3280684047222167e-07,-1.0301702246806599e-07,-1.1249656330721176e-22,-0.0002759229682851583,3.0905107450962532e-06,2.1741861928603612e-05,9.429029574748766e-24,-1.1446336145581881e-07,-3.1713284442957956e-07,2.289267285959795e-06,-2.3280684047222167e-07,9.429029574748766e-24,3.880114007870361e-09,-4.9640570064156923e-26,-1.3753444755882307e-25,3.0905107450962532e-06,-1.0301702246806599e-07,-1.1446336145581881e-07,-4.9640570064156923e-26,3.815445293042785e-09,4.342698215903395e-24,2.801340087899007e-06,-1.1249656330721176e-22,-3.1713284442957956e-07,-1.3753444755882307e-25,4.342698215903395e-24,5.872830666220352e-09,61.0,56.0,0.007091733161360025,-0.0002452399057801813,-0.00026638127746991813,2.248387545478181e-06,2.982071691803867e-06,2.6564432573650265e-06,-0.0002452399057801813,1.7396861949237064e-05,2.982071691803867e-06,-2.2864956861212704e-07,-9.940239209527135e-08,-1.3896634290890865e-22,-0.00026638127746991813,2.982071691803867e-06,2.0607525584637187e-05,-0.0,-1.084389751326853e-07,-2.951603619294474e-07,2.248387545478181e-06,-2.2864956861212704e-07,-0.0,3.810826321171135e-09,-2.0679515313825692e-25,2.0679515313825692e-25,2.982071691803867e-06,-9.940239209527135e-08,-1.084389751326853e-07,-2.0679515313825692e-25,3.6146323711960804e-09,4.963083675318166e-24,2.6564432573650265e-06,-1.3896634290890865e-22,-2.951603619294474e-07,2.0679515313825692e-25,4.963083675318166e-24,5.3665520916013065e-09,61.0,57.0,0.006971787195652723,-0.00024098796711768955,-0.0002573261153884232,2.2089420781412628e-06,2.87924171971099e-06,2.5213698791048955e-06,-0.00024098796711768955,1.7093338101403788e-05,2.87924171971099e-06,-2.2463817117568396e-07,-9.597472683253727e-08,-3.374896899216353e-22,-0.0002573261153884232,2.87924171971099e-06,1.955075640580617e-05,-4.917697793759287e-22,-1.0283006446343279e-07,-2.7505853950060555e-07,2.2089420781412628e-06,-2.2463817117568396e-07,-4.917697793759287e-22,3.743969578806627e-09,1.7593542728559933e-24,8.262850976534208e-24,2.87924171971099e-06,-9.597472683253727e-08,-1.0283006446343279e-07,1.7593542728559933e-24,3.4276688154477597e-09,-4.756288522179909e-24,2.5213698791048955e-06,-3.374896899216353e-22,-2.7505853950060555e-07,8.262850976534208e-24,-4.756288522179909e-24,4.911759443615438e-09,61.0,58.0,0.006855831015855074,-0.00023688095097895712,-0.0002487250021658838,2.170856760130846e-06,2.78164020528493e-06,2.3953014078870183e-06,-0.00023688095097895712,1.6800224329927005e-05,2.78164020528493e-06,-2.2076510219903867e-07,-9.272134349203043e-08,-2.9778502051908996e-22,-0.0002487250021658838,2.78164020528493e-06,1.8565038772067055e-05,-4.589241861245204e-22,-9.760141495007701e-08,-2.566394243785908e-07,2.170856760130846e-06,-2.2076510219903867e-07,-4.589241861245204e-22,3.6794183255750568e-09,1.5855077689689418e-24,7.584848694323905e-24,2.78164020528493e-06,-9.272134349203043e-08,-9.760141495007701e-08,1.5855077689689418e-24,3.2533804539269795e-09,-4.963083675318166e-24,2.3953014078870183e-06,-2.9778502051908996e-22,-2.566394243785908e-07,7.584848694323905e-24,-4.963083675318166e-24,4.502446415699524e-09,61.0,59.0,0.006743669044226408,-0.00023291159595828503,-0.0002405480481684208,2.1340626972232712e-06,2.6889190394285833e-06,2.2774995613872306e-06,-0.00023291159595828503,1.6516993127879687e-05,2.6889190394285833e-06,-2.1702332730910712e-07,-8.96306318054485e-08,-2.9116757561866574e-22,-0.0002405480481684208,2.6889190394285833e-06,1.764449552865699e-05,-4.208644116162185e-22,-9.272134349203043e-08,-2.3973680640665407e-07,2.1340626972232712e-06,-2.1702332730910712e-07,-4.208644116162185e-22,3.6170553219250223e-09,1.177655242486553e-24,7.06247841352194e-24,2.6889190394285833e-06,-8.96306318054485e-08,-9.272134349203043e-08,1.177655242486553e-24,3.0907114645373213e-09,-3.7223127564886245e-24,2.2774995613872306e-06,-2.9116757561866574e-22,-2.3973680640665407e-07,7.06247841352194e-24,-3.7223127564886245e-24,4.133393183280987e-09,61.0,60.0,0.006635117810219526,-0.00022907309175934643,-0.00023276780848391354,2.098494860547362e-06,2.6007576252595754e-06,2.167298134736484e-06,-0.00022907309175934643,1.624315518711228e-05,2.6007576252595754e-06,-2.1340626688015618e-07,-8.669191942090038e-08,-2.6469779601696886e-23,-0.00023276780848391354,2.6007576252595754e-06,1.6783829778432846e-05,7.278825883361518e-24,-8.816127916588812e-08,-2.242032479671252e-07,2.098494860547362e-06,-2.1340626688015618e-07,7.278825883361518e-24,3.556771099866296e-09,-3.8233860160302775e-26,-9.723265940970536e-26,2.6007576252595754e-06,-8.669191942090038e-08,-8.816127916588812e-08,-3.8233860160302775e-26,2.9387092759236566e-09,1.0339757656912846e-24,2.167298134736484e-06,-2.6469779601696886e-23,-2.242032479671252e-07,-9.723265940970536e-26,1.0339757656912846e-24,3.800054937386221e-09,61.0,61.0,0.0065300059504806995,-0.00022535905009135604,-0.00022535905009135604,2.0640934508264763e-06,2.5168621959892334e-06,2.0640934508264763e-06,-0.00022535905009135604,1.5978250303305686e-05,2.5168621959892334e-06,-2.0990781024465832e-07,-8.389540795405992e-08,-3.374896899216353e-22,-0.00022535905009135604,2.5168621959892334e-06,1.5978250303305686e-05,-4.0883820818346246e-22,-8.389540795405992e-08,-2.0990781024465832e-07,2.0640934508264763e-06,-2.0990781024465832e-07,-4.0883820818346246e-22,3.4984632968360074e-09,2.7670315853346987e-24,5.887934734268418e-24,2.5168621959892334e-06,-8.389540795405992e-08,-8.389540795405992e-08,2.7670315853346987e-24,2.796513687286506e-09,2.0679515313825692e-25,2.0640934508264763e-06,-3.374896899216353e-22,-2.0990781024465832e-07,5.887934734268418e-24,2.0679515313825692e-25,3.4984632968360074e-09,61.0,62.0,0.006428172346204519,-0.0002217635337729007,-0.00021829847537446767,2.0308016246417537e-06,2.4369619495701045e-06,1.967339130715118e-06,-0.0002217635337729007,1.572184555698186e-05,2.4369619495701045e-06,-2.0652218779559917e-07,-8.123206640675562e-08,3.970466940254533e-23,-0.00021829847537446767,2.4369619495701045e-06,1.5223416994558647e-05,-0.0,-7.990038852767611e-08,-1.967339073871699e-07,2.0308016246417537e-06,-2.0652218779559917e-07,-0.0,3.4420366556986437e-09,-2.0679515313825692e-25,0.0,2.4369619495701045e-06,-8.123206640675562e-08,-7.990038852767611e-08,-2.0679515313825692e-25,2.663346432285607e-09,-1.137373342260413e-24,1.967339130715118e-06,3.970466940254533e-23,-1.967339073871699e-07,0.0,-1.137373342260413e-24,3.2251459280985273e-09,61.0,63.0,0.006329466123133898,-0.00021828095486853272,-0.00021156460570637137,1.9985666313004913e-06,2.360806774959201e-06,1.8765388176689157e-06,-0.00021828095486853272,1.547354258946143e-05,2.360806774959201e-06,-2.032440704624605e-07,-7.869356011269701e-08,-3.970466940254533e-23,-0.00021156460570637137,2.360806774959201e-06,1.4515397197101265e-05,-0.0,-7.615506092406576e-08,-1.8457758699241822e-07,1.9985666313004913e-06,-2.032440704624605e-07,-0.0,3.3874010263446053e-09,3.101927297073854e-25,-1.0339757656912846e-25,2.360806774959201e-06,-7.869356011269701e-08,-7.615506092406576e-08,3.101927297073854e-25,2.538502075211113e-09,1.34416849539867e-24,1.8765388176689157e-06,-3.970466940254533e-23,-1.8457758699241822e-07,-1.0339757656912846e-25,1.34416849539867e-24,2.977057711461839e-09,61.0,64.0,0.0062337457202374935,-0.00021490606013685465,-0.00020513760682661086,1.967339130715118e-06,2.2881665699969744e-06,1.7912415160026285e-06,-0.00021490606013685465,1.5232959412969649e-05,2.2881665699969744e-06,-2.0006837075925432e-07,-7.627222231576525e-08,-3.308722450212111e-24,-0.00020513760682661086,2.2881665699969744e-06,1.3850616596755572e-05,1.201349488357294e-23,-7.264021206765392e-08,-1.7334595270313002e-07,1.967339130715118e-06,-2.0006837075925432e-07,1.201349488357294e-23,3.3344729200024403e-09,-1.6640291099299915e-25,-1.5035364680984246e-25,2.2881665699969744e-06,-7.627222231576525e-08,-7.264021206765392e-08,-1.6640291099299915e-25,2.4213402394224204e-09,3.101927297073854e-25,1.7912415160026285e-06,-3.308722450212111e-24,-1.7334595270313002e-07,-1.5035364680984246e-25,3.101927297073854e-25,2.751523009436596e-09,62.0,3.0,0.07957309484481812,-0.0037202381063252687,-0.0476190485060215,4.00025601265952e-05,0.0007680491544306278,0.008064515888690948,-0.0037202381063252687,0.0002859855303540826,0.0007680491544306278,-4.00025601265952e-06,-2.5181940145557746e-05,-6.505213034913027e-19,-0.0476190485060215,0.0007680491544306278,0.12826420366764069,9.014679595420524e-23,-0.0007680491544306278,-0.04838709533214569,4.00025601265952e-05,-4.00025601265952e-06,9.014679595420524e-23,6.557796439210506e-08,-4.315309470145101e-22,6.4058643781953745e-21,0.0007680491544306278,-2.5181940145557746e-05,-0.0007680491544306278,-4.315309470145101e-22,2.5181940145557746e-05,-5.421010862427522e-20,0.008064515888690948,-6.505213034913027e-19,-0.04838709533214569,6.4058643781953745e-21,-5.421010862427522e-20,0.024193547666072845,62.0,4.0,0.06641945242881775,-0.002905386034399271,-0.030990783125162125,3.00019200949464e-05,0.0004608294984791428,0.004032257944345474,-0.002905386034399271,0.0002182664320571348,0.0004608294984791428,-3.00019200949464e-06,-1.5109163541637827e-05,3.6591823321385775e-19,-0.030990783125162125,0.0004608294984791428,0.04888632893562317,2.5701428979037424e-20,-0.00030721965595148504,-0.012096773833036423,3.00019200949464e-05,-3.00019200949464e-06,2.5701428979037424e-20,4.918347684679247e-08,-2.1030511716083453e-22,-6.359740981109874e-21,0.0004608294984791428,-1.5109163541637827e-05,-0.00030721965595148504,-2.1030511716083453e-22,1.0072775694425218e-05,6.776263578034403e-20,0.004032257944345474,3.6591823321385775e-19,-0.012096773833036423,-6.359740981109874e-21,6.776263578034403e-20,0.004032257944345474,62.0,5.0,0.05703724920749664,-0.0023857527412474155,-0.021812595427036285,2.400153607595712e-05,0.00030721965595148504,0.0023041474632918835,-0.0023857527412474155,0.00017662769823800772,0.00030721965595148504,-2.400153562120977e-06,-1.0072775694425218e-05,1.8295911660692887e-19,-0.021812595427036285,0.00030721965595148504,0.024731183424592018,1.0870127447988521e-20,-0.00015360982797574252,-0.004608294926583767,2.400153607595712e-05,-2.400153562120977e-06,1.0870127447988521e-20,3.934678005634851e-08,-9.018977309632169e-23,-2.0254896605876443e-21,0.00030721965595148504,-1.0072775694425218e-05,-0.00015360982797574252,-9.018977309632169e-23,5.036387847212609e-06,-2.0328790734103208e-20,0.0023041474632918835,1.8295911660692887e-19,-0.004608294926583767,-2.0254896605876443e-21,-2.0328790734103208e-20,0.0011520737316459417,62.0,6.0,0.04999062791466713,-0.0020247010979801416,-0.016197608783841133,2.00012800632976e-05,0.00021944261970929801,0.001440092222765088,-0.0020247010979801416,0.00014838889183010906,0.00021944261970929801,-2.00012800632976e-06,-7.1948397817322984e-06,5.55653613398821e-19,-0.016197608783841133,0.00021944261970929801,0.014399549923837185,3.2156361969663386e-20,-8.777704351814464e-05,-0.0021601382177323103,2.00012800632976e-05,-2.00012800632976e-06,3.2156361969663386e-20,3.278898219605253e-08,-3.039766572355376e-22,-4.2619879255587376e-21,0.00021944261970929801,-7.1948397817322984e-06,-8.777704351814464e-05,-3.039766572355376e-22,2.8779359126929194e-06,-7.962109704190423e-20,0.001440092222765088,5.55653613398821e-19,-0.0021601382177323103,-4.2619879255587376e-21,-7.962109704190423e-20,0.00043202764936722815,62.0,7.0,0.04449884966015816,-0.0017589697381481528,-0.012508229352533817,1.7143955119536258e-05,0.0001645819575060159,0.0009600614430382848,-0.0017589697381481528,0.00012796134978998452,0.0001645819575060159,-1.7143954664788907e-06,-5.396129836299224e-06,8.809142651444724e-20,-0.012508229352533817,0.0001645819575060159,0.009161729365587234,-6.8921739779297255e-22,-5.4860654927324504e-05,-0.0011520737316459417,1.7143955119536258e-05,-1.7143954664788907e-06,-6.8921739779297255e-22,2.810484289739179e-08,-9.583141598964924e-23,5.609250876163987e-22,0.0001645819575060159,-5.396129836299224e-06,-5.4860654927324504e-05,-9.583141598964924e-23,1.7987099454330746e-06,-4.2351647362715017e-20,0.0009600614430382848,8.809142651444724e-20,-0.0011520737316459417,5.609250876163987e-22,-4.2351647362715017e-20,0.00019201228860765696,62.0,8.0,0.04009656608104706,-0.0015550995012745261,-0.009952637366950512,1.50009600474732e-05,0.00012800819240510464,0.0006720430101267993,-0.0015550995012745261,0.00011249080853303894,0.00012800819240510464,-1.50009600474732e-06,-4.196989721094724e-06,-1.2874900798265365e-19,-0.009952637366950512,0.00012800819240510464,0.006203825585544109,-1.0571581485929368e-20,-3.657376873889007e-05,-0.0006720430101267993,1.50009600474732e-05,-1.50009600474732e-06,-1.0571581485929368e-20,2.4591738423396237e-08,-4.314431436403154e-23,1.6559572232459495e-21,0.00012800819240510464,-4.196989721094724e-06,-3.657376873889007e-05,-4.314431436403154e-23,1.1991400015176623e-06,4.658681209898652e-21,0.0006720430101267993,-1.2874900798265365e-19,-0.0006720430101267993,1.6559572232459495e-21,4.658681209898652e-21,9.600614430382848e-05,62.0,9.0,0.03648805618286133,-0.0013936891919001937,-0.00810873694717884,1.3334186405700166e-05,0.00010240655683446676,0.0004887585528194904,-0.0013936891919001937,0.00010036489402409643,0.00010240655683446676,-1.3334187087821192e-06,-3.357591822350514e-06,-6.776263578034403e-21,-0.00810873694717884,0.00010240655683446676,0.004401154350489378,-7.336524154467792e-21,-2.560163920861669e-05,-0.0004189359024167061,1.3334186405700166e-05,-1.3334187087821192e-06,-7.336524154467792e-21,2.185932324039186e-08,4.7815535281636035e-23,7.181992134394807e-22,0.00010240655683446676,-3.357591822350514e-06,-2.560163920861669e-05,4.7815535281636035e-23,8.393979555876285e-07,-8.470329472543003e-21,0.0004887585528194904,-6.776263578034403e-21,-0.0004189359024167061,7.181992134394807e-22,-8.470329472543003e-21,5.236698780208826e-05,62.0,10.0,0.03347603231668472,-0.0012626990210264921,-0.0067343944683671,1.200076803797856e-05,8.378717757295817e-05,0.0003665689146146178,-0.0012626990210264921,9.060311276698485e-05,8.378717757295817e-05,-1.2000767810604884e-06,-2.7471205612528138e-06,8.300922883092143e-20,-0.0067343944683671,8.378717757295817e-05,0.0032377345487475395,8.975188334980947e-21,-1.8619373804540373e-05,-0.00027492668596096337,1.200076803797856e-05,-1.2000767810604884e-06,8.975188334980947e-21,1.9673390028174254e-08,-7.067912876298007e-23,-7.402026014353356e-22,8.378717757295817e-05,-2.7471205612528138e-06,-1.8619373804540373e-05,-7.067912876298007e-23,6.104712610977003e-07,-7.623296525288703e-21,0.0003665689146146178,8.300922883092143e-20,-0.00027492668596096337,-7.402026014353356e-22,-7.623296525288703e-21,3.054740955121815e-05,62.0,11.0,0.030923712998628616,-0.001154255704022944,-0.0056824893690645695,1.0909789125435054e-05,6.982265040278435e-05,0.0002819760993588716,-0.001154255704022944,8.257458102889359e-05,6.982265040278435e-05,-1.0909789125435054e-06,-2.289267285959795e-06,4.743384504624082e-20,-0.0056824893690645695,6.982265040278435e-05,0.002452386310324073,1.0642019873276736e-21,-1.3964529898657929e-05,-0.0001879840565379709,1.0909789125435054e-05,-1.0909789125435054e-06,1.0642019873276736e-21,1.78849006715609e-08,2.352896925590537e-23,-1.3599349849947792e-22,6.982265040278435e-05,-2.289267285959795e-06,-1.3964529898657929e-05,2.352896925590537e-23,4.5785344582327525e-07,-6.988021814847978e-21,0.0002819760993588716,4.743384504624082e-20,-0.0001879840565379709,-1.3599349849947792e-22,-6.988021814847978e-21,1.879840601759497e-05,62.0,12.0,0.02873322367668152,-0.0010629910975694656,-0.0048593878746032715,1.00006400316488e-05,5.9080703067593277e-05,0.0002215526474174112,-0.0010629910975694656,7.585479033878073e-05,5.9080703067593277e-05,-1.00006400316488e-06,-1.937072283908492e-06,6.437450399132683e-20,-0.0048593878746032715,5.9080703067593277e-05,0.0019026672234758735,5.260707944917434e-21,-1.074194642569637e-05,-0.00013293158554006368,1.00006400316488e-05,-1.00006400316488e-06,5.260707944917434e-21,1.6394491098026265e-08,-6.312796285158729e-23,-2.8309433524931046e-22,5.9080703067593277e-05,-1.937072283908492e-06,-1.074194642569637e-05,-6.312796285158729e-23,3.521949452078843e-07,-7.623296525288703e-21,0.0002215526474174112,6.437450399132683e-20,-0.00013293158554006368,-2.8309433524931046e-22,-7.623296525288703e-21,1.2084689842595253e-05,62.0,13.0,0.026832662522792816,-0.0009851179784163833,-0.004203170072287321,9.2313603090588e-06,5.0640603149076924e-05,0.00017724210920277983,-0.0009851179784163833,7.014752918621525e-05,5.0640603149076924e-05,-9.231359854311449e-07,-1.6603476069576573e-06,-3.3034284942917713e-20,-0.004203170072287321,5.0640603149076924e-05,0.0015061743324622512,-4.127244727417824e-21,-8.440100828011055e-06,-9.667751874076203e-05,9.2313603090588e-06,-9.231359854311449e-07,-4.127244727417824e-21,1.5133377218035093e-08,3.974090336164394e-23,2.1111623025447002e-22,5.0640603149076924e-05,-1.6603476069576573e-06,-8.440100828011055e-06,3.974090336164394e-23,2.7672462010741583e-07,2.80579663777987e-21,0.00017724210920277983,-3.3034284942917713e-20,-9.667751874076203e-05,2.1111623025447002e-22,2.80579663777987e-21,8.056459591898602e-06,62.0,14.0,0.025168010964989662,-0.0009178873151540756,-0.0036715492606163025,8.571977559768129e-06,4.388852175907232e-05,0.00014400921645574272,-0.0009178873151540756,6.523977208416909e-05,4.388852175907232e-05,-8.571977332394454e-07,-1.4389679563464597e-06,3.049318610115481e-20,-0.0036715492606163025,4.388852175907232e-05,0.0012128952657803893,3.259747945732073e-21,-6.752080480509903e-06,-7.200460822787136e-05,8.571977559768129e-06,-8.571977332394454e-07,3.259747945732073e-21,1.4052421448695895e-08,-3.69356350965875e-23,-1.4950084192432798e-22,4.388852175907232e-05,-1.4389679563464597e-06,-6.752080480509903e-06,-3.69356350965875e-23,2.2137969324376172e-07,-2.752857078576476e-21,0.00014400921645574272,3.049318610115481e-20,-7.200460822787136e-05,-1.4950084192432798e-22,-2.752857078576476e-21,5.53881591258687e-06,62.0,15.0,0.02369789406657219,-0.0008592549711465836,-0.003234842326492071,8.00051202531904e-06,3.840245699393563e-05,0.00011859582446049899,-0.0008592549711465836,6.0974394727963954e-05,3.840245699393563e-05,-8.000512252692715e-07,-1.2590969618031522e-06,-1.0164395367051604e-20,-0.003234842326492071,3.840245699393563e-05,0.00099124014377594,-3.947576493947975e-21,-5.48606521988404e-06,-5.473653436638415e-05,8.00051202531904e-06,-8.000512252692715e-07,-3.947576493947975e-21,1.3115593056056696e-08,3.182293921742874e-23,1.9944245200884326e-22,3.840245699393563e-05,-1.2590969618031522e-06,-5.48606521988404e-06,3.182293921742874e-23,1.7987099454330746e-07,-6.088049308390284e-22,0.00011859582446049899,-1.0164395367051604e-20,-5.473653436638415e-05,1.9944245200884326e-22,-6.088049308390284e-22,3.909752649633447e-06,62.0,16.0,0.022390080615878105,-0.0008076693629845977,-0.0028717131353914738,7.5004800237366e-06,3.3884520235005766e-05,9.88298561424017e-05,-0.0008076693629845977,5.723292997572571e-05,3.3884520235005766e-05,-7.5004800237366e-07,-1.1109679007859086e-06,5.505714157152952e-21,-0.0028717131353914738,3.3884520235005766e-05,0.0008205701597034931,-3.5276160790638164e-22,-4.517936304182513e-06,-4.235565211274661e-05,7.5004800237366e-06,-7.5004800237366e-07,-3.5276160790638164e-22,1.2295869211698118e-08,7.534460204002913e-24,-1.1448431450580413e-23,3.3884520235005766e-05,-1.1109679007859086e-06,-4.517936304182513e-06,7.534460204002913e-24,1.4812906101724366e-07,-5.823351512373315e-22,9.88298561424017e-05,5.505714157152952e-21,-4.235565211274661e-05,-1.1448431450580413e-23,-5.823351512373315e-22,2.823710019583814e-06,62.0,17.0,0.02121909148991108,-0.000761931121814996,-0.0025665047578513622,7.0592755037068855e-06,3.011957414855715e-05,8.322513895109296e-05,-0.000761931121814996,5.3924377425573766e-05,3.011957414855715e-05,-7.059275048959535e-07,-9.87527073448291e-07,2.117582368135751e-21,-0.0025665047578513622,3.011957414855715e-05,0.0006870037177577615,7.438220719733323e-22,-3.7649467685696436e-06,-3.3290056308032945e-05,7.0592755037068855e-06,-7.059275048959535e-07,7.438220719733323e-22,1.157258289197216e-08,1.459750344193299e-23,-7.106777844287712e-23,3.011957414855715e-05,-9.87527073448291e-07,-3.7649467685696436e-06,1.459750344193299e-23,1.2344088418103638e-07,2.3822801641527197e-22,8.322513895109296e-05,2.117582368135751e-21,-3.3290056308032945e-05,-7.106777844287712e-23,2.3822801641527197e-22,2.080628519252059e-06,62.0,18.0,0.02016451768577099,-0.0007210987969301641,-0.0023075160570442677,6.667093202850083e-06,2.6949093808070756e-05,7.074137101881206e-05,-0.0007210987969301641,5.097766552353278e-05,2.6949093808070756e-05,-6.667093543910596e-07,-8.835768312565051e-07,0.0,-0.0023075160570442677,2.6949093808070756e-05,0.0005809659487567842,-1.3289095778416417e-21,-3.1704814773547696e-06,-2.6528014132054523e-05,6.667093202850083e-06,-6.667093543910596e-07,-1.3289095778416417e-21,1.092966162019593e-08,8.297007864869372e-24,6.480447529091195e-23,2.6949093808070756e-05,-8.835768312565051e-07,-3.1704814773547696e-06,8.297007864869372e-24,1.0395021377007652e-07,-4.764560328305439e-22,7.074137101881206e-05,0.0,-2.6528014132054523e-05,6.480447529091195e-23,-4.764560328305439e-22,1.5604713325956254e-06,62.0,19.0,0.01920981891453266,-0.0006844227318651974,-0.002085859887301922,6.316193776001455e-06,2.425418460916262e-05,6.063545879442245e-05,-0.0006844227318651974,4.833648563362658e-05,2.425418460916262e-05,-6.316193434940942e-07,-7.952191367621708e-07,5.505714157152952e-21,-0.002085859887301922,2.425418460916262e-05,0.0004957047640345991,2.8836000829738713e-21,-2.6949094262818107e-06,-2.1400750483735465e-05,6.316193776001455e-06,-6.316193434940942e-07,2.8836000829738713e-21,1.0354415991287169e-08,-1.949909540968918e-23,-1.2264460883149418e-22,2.425418460916262e-05,-7.952191367621708e-07,-2.6949094262818107e-06,-1.949909540968918e-23,8.835768028347957e-08,3.044024654195142e-22,6.063545879442245e-05,5.505714157152952e-21,-2.1400750483735465e-05,-1.2264460883149418e-22,3.044024654195142e-22,1.188930582429748e-06,62.0,20.0,0.018341444432735443,-0.000651298847515136,-0.0018946875352412462,6.00038401898928e-06,2.194426087953616e-05,5.236698780208826e-05,-0.000651298847515136,4.595563586917706e-05,2.194426087953616e-05,-6.000383905302442e-07,-7.194839781732298e-07,3.5998900258307764e-21,-0.0018946875352412462,2.194426087953616e-05,0.00042636439320631325,1.4559859315080206e-22,-2.309922365384409e-06,-1.7455662600696087e-05,6.00038401898928e-06,-6.000383905302442e-07,1.4559859315080206e-22,9.836695014087127e-09,-3.4428919129721004e-24,-3.2739031159317868e-24,2.194426087953616e-05,-7.194839781732298e-07,-2.309922365384409e-06,-3.4428919129721004e-24,7.573515858894098e-08,-3.705769144237564e-22,5.236698780208826e-05,3.5998900258307764e-21,-1.7455662600696087e-05,-3.2739031159317868e-24,-3.705769144237564e-22,9.187190812554036e-07,62.0,21.0,0.01754819042980671,-0.0006212345906533301,-0.0017286527436226606,5.714651251764735e-06,1.9949327906942926e-05,4.5536511606769636e-05,-0.0006212345906533301,4.379841629997827e-05,1.9949327906942926e-05,-5.714651365451573e-07,-6.540763592965959e-07,6.352747104407253e-22,-0.0017286527436226606,1.9949327906942926e-05,0.0003693912585731596,-1.720497707812651e-21,-1.994932972593233e-06,-1.4379950698639732e-05,5.714651251764735e-06,-5.714651365451573e-07,-1.720497707812651e-21,9.368281261856737e-09,7.8102341435546e-24,7.069881242028715e-23,1.9949327906942926e-05,-6.540763592965959e-07,-1.994932972593233e-06,7.8102341435546e-24,6.540763308748865e-08,-4.235164736271502e-22,4.5536511606769636e-05,6.352747104407253e-22,-1.4379950698639732e-05,7.069881242028715e-23,-4.235164736271502e-22,7.189975690380379e-07,62.0,22.0,0.016820712015032768,-0.0005938245449215174,-0.0015835321974009275,5.454894562717527e-06,1.8214605006505735e-05,3.984444629168138e-05,-0.0005938245449215174,4.183472628938034e-05,1.8214605006505735e-05,-5.454894562717527e-07,-5.972001417831052e-07,9.317362419797304e-21,-0.0015835321974009275,1.8214605006505735e-05,0.00032214372185990214,-8.034433966399184e-22,-1.7347242646792438e-06,-1.1953334251302294e-05,5.454894562717527e-06,-5.454894562717527e-07,-8.034433966399184e-22,8.94245033578045e-09,1.3088033088149784e-23,2.1958691136965013e-23,1.8214605006505735e-05,-5.972001417831052e-07,-1.7347242646792438e-06,1.3088033088149784e-23,5.6876203302635986e-08,-9.132073962585426e-22,3.984444629168138e-05,9.317362419797304e-21,-1.1953334251302294e-05,2.1958691136965013e-23,-9.132073962585426e-22,5.692064064533042e-07,62.0,23.0,0.016151156276464462,-0.0005687320372089744,-0.0014559540431946516,5.21772517458885e-06,1.669672019488644e-05,3.506311259116046e-05,-0.0005687320372089744,4.0039627492660657e-05,1.669672019488644e-05,-5.217725060902012e-07,-5.474334443533735e-07,-1.1434944787933055e-20,-0.0014559540431946516,1.669672019488644e-05,0.00028262994601391256,-1.9711025353122828e-21,-1.5178836747509195e-06,-1.0018032298830803e-05,5.21772517458885e-06,-5.217725060902012e-07,-1.9711025353122828e-21,8.55364756802146e-09,8.997805860657847e-24,7.652750370057347e-23,1.669672019488644e-05,-5.474334443533735e-07,-1.5178836747509195e-06,8.997805860657847e-24,4.976667966616333e-08,5.293955920339377e-22,3.506311259116046e-05,-1.1434944787933055e-20,-1.0018032298830803e-05,7.652750370057347e-23,5.293955920339377e-22,4.553651251626434e-07,62.0,24.0,0.015532865189015865,-0.0005456749349832535,-0.001343199866823852,5.0003200158244e-06,1.5360983525170013e-05,3.1017370929475874e-05,-0.0005456749349832535,3.8392292481148615e-05,1.5360983525170013e-05,-5.0003200158244e-07,-5.036387733525771e-07,2.752857078576476e-21,-0.001343199866823852,1.5360983525170013e-05,0.00024932873202487826,1.1470673699347482e-21,-1.3357376928979647e-06,-8.459282980766147e-06,5.0003200158244e-06,-5.0003200158244e-07,1.1470673699347482e-21,8.197245549013132e-09,-1.0755163132132273e-23,-3.9868197112754023e-23,1.5360983525170013e-05,-5.036387733525771e-07,-1.3357376928979647e-06,-1.0755163132132273e-23,4.379467810622373e-08,6.617444900424222e-24,3.1017370929475874e-05,2.752857078576476e-21,-8.459282980766147e-06,-3.9868197112754023e-23,6.617444900424222e-24,3.677949109714973e-07,62.0,25.0,0.014960169792175293,-0.0005244151107035577,-0.0012430580100044608,4.800307124241954e-06,1.4179368918121327e-05,2.7570995371206664e-05,-0.0005244151107035577,3.687519711093046e-05,1.4179368918121327e-05,-4.800307351615629e-07,-4.6489734017995943e-07,2.117582368135751e-21,-0.0012430580100044608,1.4179368918121327e-05,0.00022106457618065178,4.286593923453098e-22,-1.181614038614498e-06,-7.192433713498758e-06,4.800307124241954e-06,-4.800307351615629e-07,4.286593923453098e-22,7.869355833634017e-09,1.06851959030046e-24,-1.8688495075642086e-23,1.4179368918121327e-05,-4.6489734017995943e-07,-1.181614038614498e-06,1.06851959030046e-24,3.8741443830758726e-08,-6.617444900424221e-23,2.7570995371206664e-05,2.117582368135751e-21,-7.192433713498758e-06,-1.8688495075642086e-23,-6.617444900424221e-23,2.996847285885451e-07,62.0,26.0,0.014428205788135529,-0.0005047502345405519,-0.001153714838437736,4.6156801545294e-06,1.3129045328241773e-05,2.4616960217827e-05,-0.0005047502345405519,3.5473476600600407e-05,1.3129045328241773e-05,-4.6156799271557247e-07,-4.304605170091236e-07,-2.0117032497289633e-21,-0.001153714838437736,1.3129045328241773e-05,0.0001969192671822384,-3.376069714501363e-23,-1.0503235898795538e-06,-6.15424005445675e-06,4.6156801545294e-06,-4.6156799271557247e-07,-3.376069714501363e-23,7.566688609017547e-09,4.937656913405856e-25,-2.591623469656004e-26,1.3129045328241773e-05,-4.304605170091236e-07,-1.0503235898795538e-06,4.937656913405856e-25,3.4436840934404245e-08,1.4889251025954498e-22,2.4616960217827e-05,-2.0117032497289633e-21,-6.15424005445675e-06,-2.591623469656004e-26,1.4889251025954498e-22,2.4616960558887513e-07,62.0,27.0,0.01393277570605278,-0.00048650731332600117,-0.0010736713884398341,4.444728801900055e-06,1.2191256246296689e-05,2.2070378690841608e-05,-0.00048650731332600117,3.417444895603694e-05,1.2191256246296689e-05,-4.4447290292737307e-07,-3.997133148914145e-07,-3.1763735522036263e-22,-0.0010736713884398341,1.2191256246296689e-05,0.0001761685125529766,-6.986718894311591e-23,-9.377889682582463e-07,-5.296890776662622e-06,4.444728801900055e-06,-4.4447290292737307e-07,-6.986718894311591e-23,7.2864407840711465e-09,3.2311060313169627e-24,-2.8127074206079005e-24,1.2191256246296689e-05,-3.997133148914145e-07,-9.377889682582463e-07,3.2311060313169627e-24,3.074717724871334e-08,6.948317145445432e-23,2.2070378690841608e-05,-3.1763735522036263e-22,-5.296890776662622e-06,-2.8127074206079005e-24,6.948317145445432e-23,2.0372657161260577e-07,62.0,28.0,0.0134702417999506,-0.0004695374518632889,-0.001001679920591414,4.2859887798840646e-06,1.1350480235705618e-05,1.9863340639858507e-05,-0.0004695374518632889,3.2967222068691626e-05,1.1350480235705618e-05,-4.285988666197227e-07,-3.721468999628996e-07,5.293955920339377e-22,-0.001001679920591414,1.1350480235705618e-05,0.00015823572175577283,2.98721808621258e-22,-8.407762948081654e-07,-4.583847839967348e-06,4.2859887798840646e-06,-4.285988666197227e-07,2.98721808621258e-22,7.026210724347948e-09,-5.186869314633073e-24,-6.2033765444391436e-24,1.1350480235705618e-05,-3.721468999628996e-07,-8.407762948081654e-07,-5.186869314633073e-24,2.7566436244796932e-08,3.308722450212111e-24,1.9863340639858507e-05,5.293955920339377e-22,-4.583847839967348e-06,-6.2033765444391436e-24,3.308722450212111e-24,1.6977213590507745e-07,62.0,29.0,0.013037431053817272,-0.0004537118074949831,-0.0009366953163407743,4.138195890845964e-06,1.0593781553325243e-05,1.794108175090514e-05,-0.0004537118074949831,3.1842399039305747e-05,1.0593781553325243e-05,-4.138195777159126e-07,-3.4733710663203965e-07,5.823351512373315e-21,-0.0009366953163407743,1.0593781553325243e-05,0.0001426580420229584,1.0174615369312217e-21,-7.566986823803745e-07,-3.986906904174248e-06,4.138195890845964e-06,-4.138195777159126e-07,1.0174615369312217e-21,6.7839276418624195e-09,-1.8300786112374516e-24,-3.277856216256985e-23,1.0593781553325243e-05,-3.4733710663203965e-07,-7.566986823803745e-07,-1.8300786112374516e-24,2.4809793330859975e-08,-2.3822801641527197e-22,1.794108175090514e-05,5.823351512373315e-21,-3.986906904174248e-06,-3.277856216256985e-23,-2.3822801641527197e-22,1.4238953838230373e-07,62.0,30.0,0.012631569989025593,-0.0004389184177853167,-0.0008778368355706334,4.00025601265952e-06,9.910311746352818e-06,1.6259105905191973e-05,-0.0004389184177853167,3.079181624343619e-05,9.910311746352818e-06,-4.0002561263463576e-07,-3.249282656270225e-07,-6.352747104407253e-22,-0.0008778368355706334,9.910311746352818e-06,0.0001290609798161313,5.816919960967484e-22,-6.834697501290066e-07,-3.4840938951674616e-06,4.00025601265952e-06,-4.0002561263463576e-07,5.816919960967484e-22,6.557796528028348e-09,2.599261183962499e-24,-2.303836719261756e-23,9.910311746352818e-06,-3.249282656270225e-07,-6.834697501290066e-07,2.599261183962499e-24,2.2408844557730845e-08,1.406207041340147e-22,1.6259105905191973e-05,-6.352747104407253e-22,-3.4840938951674616e-06,-2.303836719261756e-23,1.406207041340147e-22,1.2014116634873062e-07,62.0,31.0,0.01225021481513977,-0.0004250594647601247,-0.0008243577321991324,3.871215540129924e-06,9.290916750614997e-06,1.4781004210817628e-05,-0.0004250594647601247,2.980835961352568e-05,9.290916750614997e-06,-3.871215596973343e-07,-3.0462024369626306e-07,1.164670302474663e-21,-0.0008243577321991324,9.290916750614997e-06,0.00011713933781720698,-3.282283871636937e-22,-6.193944841470511e-07,-3.058138872802374e-06,3.871215540129924e-06,-3.871215596973343e-07,-3.282283871636937e-22,6.3462550770054804e-09,6.127712161853965e-24,4.720344469463966e-24,9.290916750614997e-06,-3.0462024369626306e-07,-6.193944841470511e-07,6.127712161853965e-24,2.0308016601688905e-08,-1.0091603473146938e-22,1.4781004210817628e-05,1.164670302474663e-21,-3.058138872802374e-06,4.720344469463966e-24,-1.0091603473146938e-22,1.0193796384783127e-07,62.0,32.0,0.011891213245689869,-0.00041204909211955965,-0.0007756218547001481,3.7502400118683e-06,8.727831300348043e-06,1.3476797903422266e-05,-0.00041204909211955965,2.8885790015920065e-05,8.727831300348043e-06,-3.7502400118683e-07,-2.861584107449744e-07,3.1763735522036263e-22,-0.0007756218547001481,8.727831300348043e-06,0.00010664267028914765,1.5418631913621163e-23,-5.630859050143044e-07,-2.6953596261591883e-06,3.7502400118683e-06,-3.7502400118683e-07,1.5418631913621163e-23,6.147934605849059e-09,3.6238433419058315e-25,-2.3093240357184735e-24,8.727831300348043e-06,-2.861584107449744e-07,-5.630859050143044e-07,3.6238433419058315e-25,1.846183295128867e-08,8.271806125530277e-24,1.3476797903422266e-05,3.1763735522036263e-22,-2.6953596261591883e-06,-2.3093240357184735e-24,8.271806125530277e-24,8.694708952816654e-08,62.0,33.0,0.011552654206752777,-0.000399811688112095,-0.0007310842047445476,3.636596375145018e-06,8.214429726649541e-06,1.2321644135226961e-05,-0.000399811688112095,2.8018625016557053e-05,8.214429726649541e-06,-3.636596375145018e-07,-2.693255680696893e-07,-2.117582368135751e-22,-0.0007310842047445476,8.214429726649541e-06,9.736417268868536e-05,6.264965439664645e-23,-5.134018579155963e-07,-2.384834260737989e-06,3.636596375145018e-06,-3.636596375145018e-07,6.264965439664645e-23,5.96163340915723e-09,-9.560155390269284e-26,-7.999334061905005e-25,8.214429726649541e-06,-2.693255680696893e-07,-5.134018579155963e-07,-9.560155390269284e-26,1.6832848004355583e-08,1.6543612251060553e-23,1.2321644135226961e-05,-2.117582368135751e-22,-2.384834260737989e-06,-7.999334061905005e-25,1.6543612251060553e-23,7.452607064806216e-08,62.0,34.0,0.011232839897274971,-0.00038828031392768025,-0.0006902760942466557,3.5296377518534428e-06,7.74503314460162e-06,1.1294840078335255e-05,-0.00038828031392768025,2.7202017008676194e-05,7.74503314460162e-06,-3.5296375244797673e-07,-2.539355250519293e-07,3.1234339930002325e-21,-0.0006902760942466557,7.74503314460162e-06,8.913205965654925e-05,4.066448214572625e-22,-4.693959567703132e-07,-2.1177825146878604e-06,3.5296377518534428e-06,-3.5296375244797673e-07,4.066448214572625e-22,5.78629144598608e-09,3.4621436689335666e-24,-1.4764091932453943e-23,7.74503314460162e-06,-2.539355250519293e-07,-4.693959567703132e-07,3.4621436689335666e-24,1.5390032359619e-08,-1.0918784085699965e-22,1.1294840078335255e-05,3.1234339930002325e-21,-2.1177825146878604e-06,-1.4764091932453943e-23,-1.0918784085699965e-22,6.417523223944954e-08,62.0,35.0,0.010930255986750126,-0.0003773955686483532,-0.0006527923396788538,3.4287909329577815e-06,7.314753929676954e-06,1.037904257827904e-05,-0.0003773955686483532,2.643166772031691e-05,7.314753929676954e-06,-3.428790762427525e-07,-2.398279832505068e-07,1.5881867761018131e-22,-0.0006527923396788538,7.314753929676954e-06,8.180282020475715e-05,-1.8645417905962863e-22,-4.302796412503085e-07,-1.887098619590688e-06,3.4287909329577815e-06,-3.428790762427525e-07,-1.8645417905962863e-22,5.620968579478358e-09,5.02189286137194e-24,1.2186240433459142e-24,7.314753929676954e-06,-2.398279832505068e-07,-4.302796412503085e-07,5.02189286137194e-24,1.410752936692461e-08,-2.0679515313825692e-23,1.037904257827904e-05,1.5881867761018131e-22,-1.887098619590688e-06,1.2186240433459142e-24,-2.0679515313825692e-23,5.550290183009565e-08,62.0,36.0,0.010643547400832176,-0.000367104570614174,-0.0006182813667692244,3.3335466014250414e-06,6.9193615672702435e-06,9.559644240653142e-06,-0.000367104570614174,2.5703757273731753e-05,6.9193615672702435e-06,-3.333546771955298e-07,-2.2686431577767507e-07,3.275089712616811e-22,-0.0006182813667692244,6.9193615672702435e-06,7.525594264734536e-05,-2.0793832879654352e-38,-3.953921066113253e-07,-1.6869961427801172e-06,3.3335466014250414e-06,-3.333546771955298e-07,-2.0793832879654352e-38,5.464830810097965e-09,-4.1359030627651384e-25,5.94109911218257e-40,6.9193615672702435e-06,-2.2686431577767507e-07,-3.953921066113253e-07,-4.1359030627651384e-25,1.2963675466437508e-08,-1.8714798853665776e-23,9.559644240653142e-06,3.275089712616811e-22,-1.6869961427801172e-06,5.94109911218257e-40,-1.8714798853665776e-23,4.819988674853448e-08,62.0,37.0,0.01037149503827095,-0.00035735999699682,-0.0005864369450137019,3.243450919399038e-06,6.555184882017784e-06,8.82428685144987e-06,-0.00035735999699682,2.5014869606820866e-05,6.555184882017784e-06,-3.2434508057122e-07,-2.1492408563972276e-07,-3.020691789449387e-22,-0.0005864369450137019,6.555184882017784e-06,6.93897163728252e-05,1.3234889800848443e-23,-3.641769410478446e-07,-1.5127349115573452e-06,3.243450919399038e-06,-3.2434508057122e-07,1.3234889800848443e-23,5.317132512061562e-09,-4.1359030627651384e-25,-5.179409318914173e-40,6.555184882017784e-06,-2.1492408563972276e-07,-3.641769410478446e-07,-4.1359030627651384e-25,1.1940227473417053e-08,1.6781621052496595e-23,8.82428685144987e-06,-3.020691789449387e-22,-1.5127349115573452e-06,-5.179409318914173e-40,1.6781621052496595e-23,4.202041381518029e-08,62.0,38.0,0.0101130036637187,-0.00034811944351531565,-0.0005569910863414407,3.1580968880007276e-06,6.219021543074632e-06,8.162465746863745e-06,-0.00034811944351531565,2.4361948817386292e-05,6.219021543074632e-06,-3.158096717470471e-07,-2.039023456745781e-07,-0.0,-0.0005569910863414407,6.219021543074632e-06,6.411789945559576e-05,0.0,-3.3616331052144233e-07,-1.3604109199150116e-06,3.1580968880007276e-06,-3.158096717470471e-07,0.0,5.1772079956435846e-09,0.0,-0.0,6.219021543074632e-06,-2.039023456745781e-07,-3.3616331052144233e-07,0.0,1.1021747958750439e-08,-0.0,8.162465746863745e-06,-0.0,-1.3604109199150116e-06,-0.0,-0.0,3.6767865196907223e-08,62.0,39.0,0.009867084212601185,-0.0003393447841517627,-0.0005297089228406549,3.077120027228375e-06,5.908070306759328e-06,7.565211944893235e-06,-0.0003393447841517627,2.374225005041808e-05,5.908070306759328e-06,-3.0771201409152127e-07,-1.937072227065073e-07,-0.0,-0.0005297089228406549,5.908070306759328e-06,5.9367059293435887e-05,1.3234889800848443e-23,-3.1095106578504783e-07,-1.2267911415619892e-06,3.077120027228375e-06,-3.0771201409152127e-07,1.3234889800848443e-23,5.0444590726783645e-09,-4.1359030627651384e-25,-0.0,5.908070306759328e-06,-1.937072227065073e-07,-3.1095106578504783e-07,-4.1359030627651384e-25,1.0195117639000273e-08,-0.0,7.565211944893235e-06,-0.0,-1.2267911415619892e-06,-0.0,-0.0,3.2283978157465754e-08,62.0,40.0,0.009632840752601624,-0.00033100167638622224,-0.0005043835262767971,3.00019200949464e-06,5.619871899398277e-06,7.024839760561008e-06,-0.00033100167638622224,2.315330129931681e-05,5.619871899398277e-06,-3.000191952651221e-07,-1.8425809855671105e-07,-0.0,-0.0005043835262767971,5.619871899398277e-06,5.50743643543683e-05,1.3234889800848443e-23,-2.881985494695982e-07,-1.1091852911704336e-06,3.00019200949464e-06,-3.000191952651221e-07,1.3234889800848443e-23,4.918347507043563e-09,-8.271806125530277e-25,-0.0,5.619871899398277e-06,-1.8425809855671105e-07,-2.881985494695982e-07,-8.271806125530277e-25,9.449133031580459e-09,-0.0,7.024839760561008e-06,-0.0,-1.1091852911704336e-06,-0.0,-0.0,2.8440647170668854e-08,62.0,41.0,0.009409462101757526,-0.00032305900822393596,-0.0004808320081792772,2.92701656690042e-06,5.352258995117154e-06,6.5347348936484195e-06,-0.00032305900822393596,2.2592867026105523e-05,5.352258995117154e-06,-2.92701656690042e-07,-1.754839047407586e-07,-0.0,-0.0004808320081792772,5.352258995117154e-06,5.1185881602577865e-05,0.0,-2.6761293270283204e-07,-1.0053438472823473e-06,2.92701656690042e-06,-2.92701656690042e-07,0.0,4.798387909232815e-09,0.0,-0.0,5.352258995117154e-06,-1.754839047407586e-07,-2.6761293270283204e-07,0.0,8.774194704130878e-09,-0.0,6.5347348936484195e-06,-0.0,-1.0053438472823473e-06,-0.0,-0.0,2.513359476097321e-08,62.0,42.0,0.009196207858622074,-0.0003154886362608522,-0.0004588925512507558,2.8573256258823676e-06,5.103316652821377e-06,6.089184807933634e-06,-0.0003154886362608522,2.205892451456748e-05,5.103316652821377e-06,-2.8573256827257865e-07,-1.6732185770251817e-07,2.077185747812469e-22,-0.0004588925512507558,5.103316652821377e-06,4.765511766890995e-05,1.3234889800848443e-23,-2.489422854523582e-07,-9.1337767571531e-07,2.8573256258823676e-06,-2.8573256827257865e-07,1.3234889800848443e-23,4.684140630928368e-09,-4.1359030627651384e-25,-0.0,5.103316652821377e-06,-1.6732185770251817e-07,-2.489422854523582e-07,-4.1359030627651384e-25,8.162041709169898e-09,-1.0132613038393576e-23,6.089184807933634e-06,2.077185747812469e-22,-9.1337767571531e-07,-0.0,-1.0132613038393576e-23,2.227750428573927e-08,62.0,43.0,0.008992406539618969,-0.00030826497822999954,-0.00043842129525728524,2.7908763513551094e-06,4.871347755397437e-06,5.683239123754902e-06,-0.00030826497822999954,2.1549640223383904e-05,4.871347755397437e-06,-2.7908762945116905e-07,-1.5971632194577978e-07,-0.0,-0.00043842129525728524,4.871347755397437e-06,4.444185469765216e-05,-1.3234889800848443e-23,-2.3196894005650393e-07,-8.316935122820723e-07,2.7908763513551094e-06,-2.7908762945116905e-07,-1.3234889800848443e-23,4.575206880019778e-09,8.271806125530277e-25,-0.0,4.871347755397437e-06,-1.5971632194577978e-07,-2.3196894005650393e-07,8.271806125530277e-25,7.60553930945207e-09,-0.0,5.683239123754902e-06,-0.0,-8.316935122820723e-07,-0.0,-0.0,1.9802225637022275e-08,62.0,44.0,0.00879744254052639,-0.00030136475106701255,-0.0004192900669295341,2.7274472813587636e-06,4.654843451135093e-06,5.31259274794138e-06,-0.00030136475106701255,2.106334432028234e-05,4.654843451135093e-06,-2.7274472813587636e-07,-1.5261781527442508e-07,1.810164409330826e-22,-0.0004192900669295341,4.654843451135093e-06,4.151117900619283e-05,-1.3234889800848443e-23,-2.1650434689490794e-07,-7.589418373754597e-07,2.7274472813587636e-06,-2.7274472813587636e-07,-1.3234889800848443e-23,4.471225167890225e-09,0.0,-0.0,4.654843451135093e-06,-1.5261781527442508e-07,-2.1650434689490794e-07,0.0,7.09850311864102e-09,-8.419369657600014e-24,5.31259274794138e-06,1.810164409330826e-22,-7.589418373754597e-07,-0.0,-8.419369657600014e-24,1.7649810502007313e-08,62.0,45.0,0.008610752411186695,-0.00029476667987182736,-0.00040138443000614643,2.6668374175642384e-06,4.452459052117774e-06,4.973491286364151e-06,-0.00029476667987182736,2.059851431113202e-05,4.452459052117774e-06,-2.6668374175642384e-07,-1.4598225561712752e-07,-1.6937055680906447e-22,-0.00040138443000614643,4.452459052117774e-06,3.88326880056411e-05,1.9852334701272664e-23,-2.023844984933021e-07,-6.939755508028611e-07,2.6668374175642384e-06,-2.6668374175642384e-07,1.9852334701272664e-23,4.371864648078372e-09,-4.1359030627651384e-25,-7.77628162001628e-40,4.452459052117774e-06,-1.4598225561712752e-07,-2.023844984933021e-07,-4.1359030627651384e-25,6.635556992762304e-09,7.698661601424666e-24,4.973491286364151e-06,-1.6937055680906447e-22,-6.939755508028611e-07,-7.77628162001628e-40,7.698661601424666e-24,1.5772171124694978e-08,62.0,46.0,0.008431822061538696,-0.0002884513814933598,-0.0003846018516924232,2.608862587294425e-06,4.262992661097087e-06,4.662648279918358e-06,-0.0002884513814933598,2.0153758669039235e-05,4.262992661097087e-06,-2.608862530451006e-07,-1.3977025048461655e-07,1.5870287282929487e-22,-0.0003846018516924232,4.262992661097087e-06,3.63798244507052e-05,-6.617444900424222e-24,-1.8946633417726844e-07,-6.358156383612368e-07,2.608862587294425e-06,-2.608862530451006e-07,-6.617444900424222e-24,4.27682378401073e-09,4.1359030627651384e-25,-0.0,4.262992661097087e-06,-1.3977025048461655e-07,-1.8946633417726844e-07,4.1359030627651384e-25,6.212010905670695e-09,-7.053460944514358e-24,4.662648279918358e-06,1.5870287282929487e-22,-6.358156383612368e-07,-0.0,-7.053460944514358e-24,1.412923644750208e-08,62.0,47.0,0.00826017651706934,-0.00028240104438737035,-0.0003688503638841212,2.553354988776846e-06,4.085367891093483e-06,4.377179720904678e-06,-0.00028240104438737035,1.97278059204109e-05,4.085367891093483e-06,-2.553354931933427e-07,-1.339464859029249e-07,-0.0,-0.0003688503638841212,4.085367891093483e-06,3.412931619095616e-05,6.617444900424222e-24,-1.7762468473847548e-07,-5.83624000682903e-07,2.553354988776846e-06,-2.553354931933427e-07,6.617444900424222e-24,4.185827684466403e-09,-4.1359030627651384e-25,-0.0,4.085367891093483e-06,-1.339464859029249e-07,-1.7762468473847548e-07,-4.1359030627651384e-25,5.82376014079955e-09,-0.0,4.377179720904678e-06,-0.0,-5.83624000682903e-07,-0.0,-0.0,1.268747773508494e-08,62.0,48.0,0.00809537898749113,-0.00027659934130497277,-0.00035404713707976043,2.5001600079122e-06,3.918617949238978e-06,4.114549028599868e-06,-0.00027659934130497277,1.931948645506054e-05,3.918617949238978e-06,-2.5001600079122e-07,-1.284792858768924e-07,9.659596483286006e-22,-0.00035404713707976043,3.918617949238978e-06,3.206071414751932e-05,1.0277385896125004e-21,-1.6674971448082943e-07,-5.366803179640556e-07,2.5001600079122e-06,-2.5001600079122e-07,1.0277385896125004e-21,4.098622774506566e-09,-5.790264287871194e-24,-1.8206064033610556e-23,3.918617949238978e-06,-1.284792858768924e-07,-1.6674971448082943e-07,-5.790264287871194e-24,5.467203578746194e-09,4.211288583020321e-24,4.114549028599868e-06,9.659596483286006e-22,-5.366803179640556e-07,-1.8206064033610556e-23,4.211288583020321e-24,1.1418729961576446e-08,62.0,49.0,0.00793702993541956,-0.00027103122556582093,-0.00034011760726571083,2.449136445648037e-06,3.7618733585986774e-06,3.87251657230081e-06,-0.00027103122556582093,1.8927728888229467e-05,3.7618733585986774e-06,-2.4491362182743615e-07,-1.2334011501025088e-07,1.0587911840678754e-22,-0.00034011760726571083,3.7618733585986774e-06,3.015599759237375e-05,-0.0,-1.5674471853799332e-07,-4.943638600707345e-07,2.449136445648037e-06,-2.4491362182743615e-07,-0.0,4.014977683652887e-09,0.0,-1.0339757656912846e-25,3.7618733585986774e-06,-1.2334011501025088e-07,-1.5674471853799332e-07,0.0,5.139171310730717e-09,-4.549493369041652e-24,3.87251657230081e-06,1.0587911840678754e-22,-4.943638600707345e-07,-1.0339757656912846e-25,-4.549493369041652e-24,1.0299246788747496e-08,62.0,50.0,0.007784755900502205,-0.0002656828728504479,-0.00032699431176297367,2.400153562120977e-06,3.614348997871275e-06,3.6491023820417468e-06,-0.0002656828728504479,1.855154368968215e-05,3.614348997871275e-06,-2.4001536758078146e-07,-1.1850324455053851e-07,4.632211430296955e-23,-0.00032699431176297367,3.614348997871275e-06,2.8399254006217234e-05,-1.8474319339874581e-23,-1.4752444599253067e-07,-4.5613779775521834e-07,2.400153562120977e-06,-2.4001536758078146e-07,-1.8474319339874581e-23,3.934677916817009e-09,7.163532481556883e-25,-1.346537956224042e-26,3.614348997871275e-06,-1.1850324455053851e-07,-1.4752444599253067e-07,7.163532481556883e-25,4.8368673510879034e-09,-1.6543612251060553e-24,3.6491023820417468e-06,4.632211430296955e-23,-4.5613779775521834e-07,-1.346537956224042e-26,-1.6543612251060553e-24,9.308934068030794e-09,62.0,51.0,0.007638215087354183,-0.00026054156478494406,-0.00031461621983908117,2.3530917587777367e-06,3.4753354611893883e-06,3.4425493140588515e-06,-0.00026054156478494406,1.8190023183706217e-05,3.4753354611893883e-06,-2.3530917303560273e-07,-1.139454255394412e-07,-6.617444900424221e-23,-0.00031461621983908117,3.4753354611893883e-06,2.677638258319348e-05,-0.0,-1.3901342299504904e-07,-4.2153666868216533e-07,2.3530917587777367e-06,-2.3530917303560273e-07,-0.0,3.857527630657387e-09,-2.0679515313825692e-25,1.0339757656912846e-25,3.4753354611893883e-06,-1.139454255394412e-07,-1.3901342299504904e-07,-2.0679515313825692e-25,4.557817234740469e-09,2.895132143935597e-24,3.4425493140588515e-06,-6.617444900424221e-23,-4.2153666868216533e-07,1.0339757656912846e-25,2.895132143935597e-24,8.43073344469758e-09,62.0,52.0,0.007497089449316263,-0.00025559545611031353,-0.00030292794690467417,2.3078400772647e-06,3.344190872667241e-06,3.251296675443882e-06,-0.00025559545611031353,1.7842323359218426e-05,3.344190872667241e-06,-2.3078399635778624e-07,-1.0964559749027103e-07,-1.1249656330721176e-22,-0.00030292794690467417,3.344190872667241e-06,2.5274868676206097e-05,1.096122701121139e-23,-1.3114473063069454e-07,-3.9015560560073936e-07,2.3078400772647e-06,-2.3078399635778624e-07,1.096122701121139e-23,3.783344304508773e-09,-2.636701262081387e-25,-6.580543934778342e-26,3.344190872667241e-06,-1.0964559749027103e-07,-1.3114473063069454e-07,-2.636701262081387e-25,4.299827605080964e-09,4.1359030627651384e-24,3.251296675443882e-06,-1.1249656330721176e-22,-3.9015560560073936e-07,-6.580543934778342e-26,4.1359030627651384e-24,7.650109878909461e-09,62.0,53.0,0.007361084222793579,-0.0002508336619939655,-0.000291879172436893,2.2642957446805667e-06,3.2203317914536456e-06,3.0739531666768016e-06,-0.0002508336619939655,1.7507667507743463e-05,3.2203317914536456e-06,-2.2642959152108233e-07,-1.055846539088634e-07,6.617444900424222e-24,-0.000291879172436893,3.2203317914536456e-06,2.3883576432126574e-05,-1.035785018177409e-23,-1.2385892489419348e-07,-3.6164155403639597e-07,2.2642957446805667e-06,-2.2642959152108233e-07,-1.035785018177409e-23,3.7119605167390546e-09,5.37152461808014e-26,2.602345876620946e-25,3.2203317914536456e-06,-1.055846539088634e-07,-1.2385892489419348e-07,5.37152461808014e-26,4.060948022299726e-09,-6.203854594147708e-25,3.0739531666768016e-06,6.617444900424222e-24,-3.6164155403639597e-07,2.602345876620946e-25,-6.203854594147708e-25,6.9546453040914e-09,62.0,54.0,0.007229925133287907,-0.00024624605430290103,-0.00028142405790276825,2.2223644009500276e-06,3.1032288916321704e-06,2.9092771001160145e-06,-0.00024624605430290103,1.7185335309477523e-05,3.1032288916321704e-06,-2.2223645146368654e-07,-1.0174520781447427e-07,6.088049308390284e-22,-0.00028142405790276825,3.1032288916321704e-06,2.2592570530832745e-05,6.172718191109762e-22,-1.1710297798117608e-07,-3.3568582580301154e-07,2.2223644009500276e-06,-2.2223645146368654e-07,6.172718191109762e-22,3.6432203920355732e-09,-3.8198605350150866e-24,-7.930802066586769e-24,3.1032288916321704e-06,-1.0174520781447427e-07,-1.1710297798117608e-07,-3.8198605350150866e-24,3.839442097586243e-09,-3.5155176033503676e-24,2.9092771001160145e-06,6.088049308390284e-22,-3.3568582580301154e-07,-7.930802066586769e-24,-3.5155176033503676e-24,6.333694901883291e-09,62.0,55.0,0.00710335886105895,-0.00024182327615562826,-0.000271520868409425,2.181957825087011e-06,2.992399231516174e-06,2.7561573006096296e-06,-0.00024182327615562826,1.6874659195309505e-05,2.992399231516174e-06,-2.1819577966653014e-07,-9.811144963123297e-08,-3.970466940254533e-23,-0.000271520868409425,2.992399231516174e-06,2.1392974304035306e-05,-0.0,-1.1082960327257751e-07,-3.1201778938338975e-07,2.181957825087011e-06,-2.1819577966653014e-07,-0.0,3.576980045494338e-09,0.0,-1.0339757656912846e-25,2.992399231516174e-06,-9.811144963123297e-08,-1.1082960327257751e-07,0.0,3.633757517107483e-09,1.6543612251060553e-24,2.7561573006096296e-06,-3.970466940254533e-23,-3.1201778938338975e-07,-1.0339757656912846e-25,1.6543612251060553e-24,5.7781073259377536e-09,62.0,56.0,0.006981147453188896,-0.0002375565527472645,-0.00026213136152364314,2.1429943899420323e-06,2.8874028430436738e-06,2.6135974167118547e-06,-0.0002375565527472645,1.6575017070863396e-05,2.8874028430436738e-06,-2.1429943330986134e-07,-9.466894823617622e-08,6.617444900424221e-23,-0.00026213136152364314,2.8874028430436738e-06,2.027683876804076e-05,8.793677057379237e-24,-1.0499646663220119e-07,-2.903996971781453e-07,2.1429943899420323e-06,-2.1429943330986134e-07,8.793677057379237e-24,3.513105362173974e-09,-4.553495889037372e-26,-1.259407930278711e-25,2.8874028430436738e-06,-9.466894823617622e-08,-1.0499646663220119e-07,-4.553495889037372e-26,3.44250716821648e-09,-2.0679515313825692e-24,2.6135974167118547e-06,6.617444900424221e-23,-2.903996971781453e-07,-1.259407930278711e-25,-2.0679515313825692e-24,5.279994663709431e-09,62.0,57.0,0.00686307018622756,-0.000233437807764858,-0.00025322067085653543,2.1053979253338184e-06,2.787837274809135e-06,2.4807025056361454e-06,-0.000233437807764858,1.628583049750887e-05,2.787837274809135e-06,-2.1053979537555279e-07,-9.140450174527359e-08,-4.632211430296955e-23,-0.00025322067085653543,2.787837274809135e-06,1.9237028027419e-05,-8.342731031796887e-24,-9.956561797253016e-08,-2.706221096104855e-07,2.1053979253338184e-06,-2.1053979537555279e-07,-8.342731031796887e-24,3.451471997095723e-09,4.567699884303701e-25,-8.943152147333745e-26,2.787837274809135e-06,-9.140450174527359e-08,-9.956561797253016e-08,4.567699884303701e-25,3.2644464909026283e-09,1.4475660719677984e-24,2.4807025056361454e-06,-4.632211430296955e-23,-2.706221096104855e-07,-8.943152147333745e-26,1.4475660719677984e-24,4.832537481291865e-09,62.0,58.0,0.006748920306563377,-0.0002294594596605748,-0.00024475675309076905,2.069097945422982e-06,2.69333418145834e-06,2.356667437197757e-06,-0.0002294594596605748,1.6006562873371877e-05,2.69333418145834e-06,-2.069097888579563e-07,-8.830603803744452e-08,-3.3087224502121107e-23,-0.00024475675309076905,2.69333418145834e-06,1.8267126506543718e-05,-7.922103297384897e-24,-9.45029583476753e-08,-2.5250008661714674e-07,2.069097945422982e-06,-2.069097888579563e-07,-7.922103297384897e-24,3.3919638209312097e-09,2.4777928748146333e-25,6.106880801292943e-27,2.69333418145834e-06,-8.830603803744452e-08,-9.45029583476753e-08,2.4777928748146333e-25,3.098457490580131e-09,1.0339757656912846e-24,2.356667437197757e-06,-3.3087224502121107e-23,-2.5250008661714674e-07,6.106880801292943e-27,1.0339757656912846e-24,4.429826283569582e-09,62.0,59.0,0.006638505961745977,-0.00022561443620361388,-0.00023671022790949792,2.034028511843644e-06,2.603556367830606e-06,2.2407657525036484e-06,-0.00022561443620361388,1.5736712157377042e-05,2.603556367830606e-06,-2.0340284834219347e-07,-8.536250817314794e-08,-3.970466940254533e-23,-0.00023671022790949792,2.603556367830606e-06,1.736135527607985e-05,-0.0,-8.977780652230649e-08,-2.3587008968206646e-07,2.034028511843644e-06,-2.0340284834219347e-07,-0.0,3.3344729200024403e-09,2.0679515313825692e-25,-1.0339757656912846e-25,2.603556367830606e-06,-8.536250817314794e-08,-8.977780652230649e-08,2.0679515313825692e-25,2.9435347492778874e-09,1.4475660719677984e-24,2.2407657525036484e-06,-3.970466940254533e-23,-2.3587008968206646e-07,-1.0339757656912846e-25,1.4475660719677984e-24,4.066725622919876e-09,62.0,60.0,0.006531646475195885,-0.00022189617448020726,-0.00022905411606188864,2.00012800632976e-06,2.5181939236063045e-06,2.1323417058738414e-06,-0.00022189617448020726,1.547580905025825e-05,2.5181939236063045e-06,-2.0001280631731788e-07,-8.256373718040777e-08,6.617444900424222e-24,-0.00022905411606188864,2.5181939236063045e-06,1.6514499293407425e-05,-0.0,-8.536250817314794e-08,-2.2058706861116661e-07,2.00012800632976e-06,-2.0001280631731788e-07,-0.0,3.278898264014174e-09,0.0,5.169878828456423e-26,2.5181939236063045e-06,-8.256373718040777e-08,-8.536250817314794e-08,0.0,2.798770770695569e-09,-2.0679515313825692e-25,2.1323417058738414e-06,6.617444900424222e-24,-2.2058706861116661e-07,5.169878828456423e-26,-2.0679515313825692e-25,3.738763965088765e-09,62.0,61.0,0.006428172346204519,-0.00021829847537446767,-0.0002217635337729007,1.967339130715118e-06,2.4369619495701045e-06,2.0308016246417537e-06,-0.00021829847537446767,1.5223416994558647e-05,2.4369619495701045e-06,-1.967339073871699e-07,-7.990038852767611e-08,-1.3234889800848443e-23,-0.0002217635337729007,2.4369619495701045e-06,1.572184555698186e-05,6.818263643344524e-24,-8.123206640675562e-08,-2.0652218779559917e-07,1.967339130715118e-06,-1.967339073871699e-07,6.818263643344524e-24,3.2251459280985273e-09,-1.3862636663711703e-25,-3.786593666670286e-26,2.4369619495701045e-06,-7.990038852767611e-08,-8.123206640675562e-08,-1.3862636663711703e-25,2.663346432285607e-09,3.101927297073854e-25,2.0308016246417537e-06,-1.3234889800848443e-23,-2.0652218779559917e-07,-3.786593666670286e-26,3.101927297073854e-25,3.4420366556986437e-09,62.0,62.0,0.006327925715595484,-0.0002148155908798799,-0.0002148155908798799,1.935607770064962e-06,2.3595980565005448e-06,1.935607770064962e-06,-0.0002148155908798799,1.4979125808167737e-05,2.3595980565005448e-06,-1.9356077984866715e-07,-7.736387175327764e-08,-4.235164736271502e-22,-0.0002148155908798799,2.3595980565005448e-06,1.4979125808167737e-05,-5.434155562076621e-22,-7.736387175327764e-08,-1.9356077984866715e-07,1.935607770064962e-06,-1.9356077984866715e-07,-5.434155562076621e-22,3.1731275385027402e-09,5.8051508820136194e-24,5.6778658083734935e-24,2.3595980565005448e-06,-7.736387175327764e-08,-7.736387175327764e-08,5.8051508820136194e-24,2.5365203271121572e-09,2.0679515313825692e-24,1.935607770064962e-06,-4.235164736271502e-22,-1.9356077984866715e-07,5.6778658083734935e-24,2.0679515313825692e-24,3.1731275385027402e-09,62.0,63.0,0.00623075757175684,-0.00021144210768397897,-0.0002081891434499994,1.9048837884838576e-06,2.285860546180629e-06,1.8462719708622899e-06,-0.00021144210768397897,1.474255168432137e-05,2.285860546180629e-06,-1.9048837884838576e-07,-7.49462500948539e-08,9.926167350636332e-24,-0.0002081891434499994,2.285860546180629e-06,1.4282467418524902e-05,-0.0,-7.373743926564202e-08,-1.8160052661642112e-07,1.9048837884838576e-06,-1.9048837884838576e-07,-0.0,3.1227602725891757e-09,-2.0679515313825692e-25,1.0339757656912846e-25,2.285860546180629e-06,-7.49462500948539e-08,-7.373743926564202e-08,-2.0679515313825692e-25,2.417620992289926e-09,-3.101927297073854e-25,1.8462719708622899e-06,9.926167350636332e-24,-1.8160052661642112e-07,1.0339757656912846e-25,-3.101927297073854e-25,2.929040787691406e-09,62.0,64.0,0.006136528681963682,-0.000208172932616435,-0.00020186466281302273,1.87512000593415e-06,2.215526365034748e-06,1.7623505073061096e-06,-0.000208172932616435,1.4513334463117644e-05,2.215526365034748e-06,-1.87512000593415e-07,-7.264021206765392e-08,2.3161057151484775e-23,-0.00020186466281302273,2.215526365034748e-06,1.3628354281536303e-05,-5.9103565277775145e-24,-7.033417404045395e-08,-1.7055005230304232e-07,1.87512000593415e-06,-1.87512000593415e-07,-5.9103565277775145e-24,3.0739673029245296e-09,2.3729774193759832e-25,-2.94332816793385e-26,2.215526365034748e-06,-7.264021206765392e-08,-7.033417404045395e-08,2.3729774193759832e-25,2.3060384712891846e-09,-6.203854594147708e-25,1.7623505073061096e-06,2.3161057151484775e-23,-1.7055005230304232e-07,-2.94332816793385e-26,-6.203854594147708e-25,2.707143620384045e-09,63.0,3.0,0.07836665958166122,-0.0036057692486792803,-0.046875,3.815628951997496e-05,0.0007440476329065859,0.007936508394777775,-0.0036057692486792803,0.00027269337442703545,0.0007440476329065859,-3.7530776353378315e-06,-2.400153607595712e-05,8.131516293641283e-19,-0.046875,0.0007440476329065859,0.126240074634552,1.8201960745213056e-20,-0.0007440476329065859,-0.0476190485060215,3.815628951997496e-05,-3.7530776353378315e-06,1.8201960745213056e-20,6.053350887214037e-08,1.2305173678923512e-22,-1.0669650048337351e-20,0.0007440476329065859,-2.400153607595712e-05,-0.0007440476329065859,1.2305173678923512e-22,2.400153607595712e-05,-2.168404344971009e-19,0.007936508394777775,8.131516293641283e-19,-0.0476190485060215,-1.0669650048337351e-20,-2.168404344971009e-19,0.02380952425301075,63.0,4.0,0.06540941447019577,-0.00281593413092196,-0.0305059514939785,2.861721623048652e-05,0.00044642857392318547,0.003968254197388887,-0.00281593413092196,0.0002081202546833083,0.00044642857392318547,-2.814808112816536e-06,-1.4400921827473212e-05,-1.043544591017298e-18,-0.0305059514939785,0.00044642857392318547,0.0481150783598423,-3.293823505663353e-20,-0.00029761905898340046,-0.011904762126505375,2.861721623048652e-05,-2.814808112816536e-06,-3.293823505663353e-20,4.540013165410528e-08,2.920020263733213e-22,7.262575500175259e-21,0.00044642857392318547,-1.4400921827473212e-05,-0.00029761905898340046,2.920020263733213e-22,9.600614248483907e-06,3.2526065174565133e-19,0.003968254197388887,-1.043544591017298e-18,-0.011904762126505375,7.262575500175259e-21,3.2526065174565133e-19,0.003968254197388887,63.0,5.0,0.05616823583841324,-0.0023122711572796106,-0.021471088752150536,2.2893773348187096e-05,0.00029761905898340046,0.0022675737272948027,-0.0023122711572796106,0.00016841632896102965,0.00029761905898340046,-2.251846581202699e-06,-9.600614248483907e-06,-4.2012834183813297e-19,-0.021471088752150536,0.00029761905898340046,0.02434098720550537,-2.5827488396333665e-20,-0.00014880952949170023,-0.004535147454589605,2.2893773348187096e-05,-2.251846581202699e-06,-2.5827488396333665e-20,3.632010603382696e-08,1.3529981839563725e-22,5.313114360366643e-21,0.00029761905898340046,-9.600614248483907e-06,-0.00014880952949170023,1.3529981839563725e-22,4.800307124241954e-06,4.0657581468206416e-20,0.0022675737272948027,-4.2012834183813297e-19,-0.004535147454589605,5.313114360366643e-21,4.0657581468206416e-20,0.0011337868636474013,63.0,6.0,0.04922797158360481,-0.0019623234402388334,-0.015943877398967743,1.907814475998748e-05,0.00021258502965793014,0.0014172336086630821,-0.0019623234402388334,0.00014148987247608602,0.00021258502965793014,-1.8765388176689157e-06,-6.857581865915563e-06,1.0164395367051604e-19,-0.015943877398967743,0.00021258502965793014,0.014172335155308247,9.316308249192439e-21,-8.50340147735551e-05,-0.002125850412994623,1.907814475998748e-05,-1.8765388176689157e-06,9.316308249192439e-21,3.026675443607019e-08,7.484940722855112e-23,-2.3193869726174134e-21,0.00021258502965793014,-6.857581865915563e-06,-8.50340147735551e-05,7.484940722855112e-23,2.74303260994202e-06,2.0328790734103208e-20,0.0014172336086630821,1.0164395367051604e-19,-0.002125850412994623,-2.3193869726174134e-21,2.0328790734103208e-20,0.00042517005931586027,63.0,7.0,0.04381931573152542,-0.0017047683941200376,-0.012312216684222221,1.635269472899381e-05,0.0001594387722434476,0.0009448223863728344,-0.0017047683941200376,0.00012201177014503628,0.0001594387722434476,-1.6084618437162135e-06,-5.143186172062997e-06,-1.0842021724855044e-19,-0.012312216684222221,0.0001594387722434476,0.009017148986458778,-1.1101095823617646e-20,-5.3146257414482534e-05,-0.0011337868636474013,1.635269472899381e-05,-1.6084618437162135e-06,-1.1101095823617646e-20,2.5942931358713395e-08,1.7328993333056454e-22,7.158652958761811e-22,0.0001594387722434476,-5.143186172062997e-06,-5.3146257414482534e-05,1.7328993333056454e-22,1.7143954664788907e-06,1.5246593050577406e-20,0.0009448223863728344,-1.0842021724855044e-19,-0.0011337868636474013,7.158652958761811e-22,1.5246593050577406e-20,0.0001889644772745669,63.0,8.0,0.03948380798101425,-0.00150717340875417,-0.0097966268658638,1.430860811524326e-05,0.00012400794366840273,0.0006613756413571537,-0.00150717340875417,0.00010726033360697329,0.00012400794366840273,-1.407404056408268e-06,-4.00025601265952e-06,2.0328790734103208e-20,-0.0097966268658638,0.00012400794366840273,0.0061059147119522095,-4.454014996706082e-21,-3.543083948898129e-05,-0.0006613756413571537,1.430860811524326e-05,-1.407404056408268e-06,-4.454014996706082e-21,2.270006582705264e-08,1.1293436059922589e-23,5.331971695341829e-22,0.00012400794366840273,-4.00025601265952e-06,-3.543083948898129e-05,1.1293436059922589e-23,1.1429302730903146e-06,-1.2705494208814505e-20,0.0006613756413571537,2.0328790734103208e-20,-0.0006613756413571537,5.331971695341829e-22,-1.2705494208814505e-20,9.448223863728344e-05,63.0,9.0,0.03593011945486069,-0.0013507326366379857,-0.007981602102518082,1.2718763173324987e-05,9.920635056914762e-05,0.0004810004902537912,-0.0013507326366379857,9.569809481035918e-05,9.920635056914762e-05,-1.2510258784459438e-06,-3.200204901077086e-06,4.743384504624082e-20,-0.007981602102518082,9.920635056914762e-05,0.004331688396632671,3.6641894849919404e-22,-2.4801587642286904e-05,-0.0004122861137147993,1.2718763173324987e-05,-1.2510258784459438e-06,3.6641894849919404e-22,2.0177836290713458e-08,3.9929911279091273e-23,-1.6901724809772132e-22,9.920635056914762e-05,-3.200204901077086e-06,-2.4801587642286904e-05,3.9929911279091273e-23,8.000512252692715e-07,-8.258571235729428e-21,0.0004810004902537912,4.743384504624082e-20,-0.0004122861137147993,-1.6901724809772132e-22,-8.258571235729428e-21,5.153576421434991e-05,63.0,10.0,0.032963912934064865,-0.0012237762566655874,-0.006628788076341152,1.1446886674093548e-05,8.116882963804528e-05,0.0003607503604143858,-0.0012237762566655874,8.639012230560184e-05,8.116882963804528e-05,-1.1259232906013494e-06,-2.618349299154943e-06,3.3881317890172014e-21,-0.006628788076341152,8.116882963804528e-05,0.003186628222465515,-2.7825772175431732e-21,-1.803751729312353e-05,-0.00027056277031078935,1.1446886674093548e-05,-1.1259232906013494e-06,-2.7825772175431732e-21,1.816005301691348e-08,-1.0517386453017593e-24,3.049046100955672e-22,8.116882963804528e-05,-2.618349299154943e-06,-1.803751729312353e-05,-1.0517386453017593e-24,5.818554313918867e-07,-5.717472393966527e-21,0.0003607503604143858,3.3881317890172014e-21,-0.00027056277031078935,3.049046100955672e-22,-5.717472393966527e-21,3.006253064086195e-05,63.0,11.0,0.030450452119112015,-0.0011186730116605759,-0.005593365058302879,1.0406260116724297e-05,6.764069257769734e-05,0.0002775002794805914,-0.0011186730116605759,7.873483264120296e-05,6.764069257769734e-05,-1.0235665968139074e-06,-2.181957825087011e-06,-5.251604272976662e-20,-0.005593365058302879,6.764069257769734e-05,0.002413674257695675,-1.1002255818353229e-20,-1.3528138879337348e-05,-0.00018500018632039428,1.0406260116724297e-05,-1.0235665968139074e-06,-1.1002255818353229e-20,1.6509138944797996e-08,1.083373730705245e-22,6.971965806988765e-22,6.764069257769734e-05,-2.181957825087011e-06,-1.3528138879337348e-05,1.083373730705245e-22,4.363915593330603e-07,1.2705494208814505e-21,0.0002775002794805914,-5.251604272976662e-20,-0.00018500018632039428,6.971965806988765e-22,1.2705494208814505e-21,1.850001899583731e-05,63.0,12.0,0.028293341398239136,-0.001030219835229218,-0.00478316331282258,9.53907237999374e-06,5.723443246097304e-05,0.00021803592971991748,-0.001030219835229218,7.23274570191279e-05,5.723443246097304e-05,-9.382694088344579e-07,-1.8462719708622899e-06,-3.7269449679189215e-20,-0.00478316331282258,5.723443246097304e-05,0.0018726313719525933,-3.96041556490102e-21,-1.0406260116724297e-05,-0.00013082155783195049,9.53907237999374e-06,-9.382694088344579e-07,-3.96041556490102e-21,1.5133377218035093e-08,1.6083218827277277e-23,2.8718517857716937e-22,5.723443246097304e-05,-1.8462719708622899e-06,-1.0406260116724297e-05,1.6083218827277277e-23,3.3568582580301154e-07,2.8587361969832636e-21,0.00021803592971991748,-3.7269449679189215e-20,-0.00013082155783195049,2.8718517857716937e-22,2.8587361969832636e-21,1.1892869224539027e-05,63.0,13.0,0.026421761140227318,-0.0009547458030283451,-0.004137231968343258,8.805297511571553e-06,4.9058086005970836e-05,0.00017442874377593398,-0.0009547458030283451,6.688553548883647e-05,4.9058086005970836e-05,-8.660948083161202e-07,-1.5825188484086539e-06,1.6940658945086007e-21,-0.004137231968343258,4.9058086005970836e-05,0.0014823966193944216,3.0361561390079095e-21,-8.176347364496905e-06,-9.514295379631221e-05,8.805297511571553e-06,-8.660948083161202e-07,3.0361561390079095e-21,1.396927107322199e-08,-5.1046015351824705e-23,-1.207824300895167e-22,4.9058086005970836e-05,-1.5825188484086539e-06,-8.176347364496905e-06,-5.1046015351824705e-23,2.6375315087534545e-07,6.352747104407253e-22,0.00017442874377593398,1.6940658945086007e-21,-9.514295379631221e-05,-1.207824300895167e-22,6.352747104407253e-22,7.928579179861117e-06,63.0,14.0,0.024782508611679077,-0.000889586575794965,-0.0036139455623924732,8.176347364496905e-06,4.251700738677755e-05,0.00014172335795592517,-0.000889586575794965,6.220595969352871e-05,4.251700738677755e-05,-8.042309218581067e-07,-1.37151630497101e-06,-2.202285662861181e-20,-0.0036139455623924732,4.251700738677755e-05,0.001193746691569686,-3.594974198079125e-21,-6.541078164445935e-06,-7.086167897796258e-05,8.176347364496905e-06,-8.042309218581067e-07,-3.594974198079125e-21,1.2971465679356697e-08,5.373440282971998e-23,1.2344469049423105e-22,4.251700738677755e-05,-1.37151630497101e-06,-6.541078164445935e-06,5.373440282971998e-23,2.1100251501593448e-07,1.376428539288238e-21,0.00014172335795592517,-2.202285662861181e-20,-7.086167897796258e-05,1.2344469049423105e-22,1.376428539288238e-21,5.450898242997937e-06,63.0,15.0,0.02333483286201954,-0.000832760997582227,-0.003184086177498102,7.631258085893933e-06,3.720238237292506e-05,0.00011671335232676938,-0.000832760997582227,5.8138903114013374e-05,3.720238237292506e-05,-7.506155270675663e-07,-1.2000767810604884e-06,-1.6940658945086007e-21,-0.003184086177498102,3.720238237292506e-05,0.0009755905484780669,-3.789956178094359e-21,-5.314625923347194e-06,-5.3867701353738084e-05,7.631258085893933e-06,-7.506155270675663e-07,-3.789956178094359e-21,1.2106701419156707e-08,2.0279831047586414e-23,2.108635549510841e-22,3.720238237292506e-05,-1.2000767810604884e-06,-5.314625923347194e-06,2.0279831047586414e-23,1.7143953812137624e-07,-1.4558378780933287e-21,0.00011671335232676938,-1.6940658945086007e-21,-5.3867701353738084e-05,2.108635549510841e-22,-1.4558378780933287e-21,3.84769282391062e-06,63.0,16.0,0.022046992555260658,-0.0007827650406397879,-0.002826651558279991,7.15430405762163e-06,3.282563193351962e-05,9.726112330099568e-05,-0.0007827650406397879,5.457140287035145e-05,3.282563193351962e-05,-7.03702028204134e-07,-1.0588912573439302e-06,2.0328790734103208e-20,-0.002826651558279991,3.282563193351962e-05,0.0008076147059909999,1.4300791587789363e-21,-4.376750894152792e-06,-4.1683339077280834e-05,7.15430405762163e-06,-7.03702028204134e-07,1.4300791587789363e-21,1.135003291352632e-08,1.1130185239891627e-23,-1.1783047471685622e-22,3.282563193351962e-05,-1.0588912573439302e-06,-4.376750894152792e-06,1.1130185239891627e-23,1.4118550950570352e-07,-1.6675961149069038e-21,9.726112330099568e-05,2.0328790734103208e-20,-4.1683339077280834e-05,-1.1783047471685622e-22,-1.6675961149069038e-21,2.7788894385594176e-06,63.0,17.0,0.020893895998597145,-0.0007384364143945277,-0.002526229713112116,6.7334626692172606e-06,2.9178338081692345e-05,8.19041088107042e-05,-0.0007384364143945277,5.1416685892036185e-05,2.9178338081692345e-05,-6.623077979384107e-07,-9.412366921424109e-07,-9.317362419797304e-21,-0.002526229713112116,2.9178338081692345e-05,0.0006761567783541977,2.773754092308202e-22,-3.647292260211543e-06,-3.276164352428168e-05,6.7334626692172606e-06,-6.623077979384107e-07,2.773754092308202e-22,1.0682383866367218e-08,-1.1798794555303463e-23,7.25419054615237e-24,2.9178338081692345e-05,-9.412366921424109e-07,-3.647292260211543e-06,-1.1798794555303463e-23,1.1765458651780136e-07,1.0720260738687239e-21,8.19041088107042e-05,-9.317362419797304e-21,-3.276164352428168e-05,7.25419054615237e-24,1.0720260738687239e-21,2.047602720267605e-06,63.0,18.0,0.01985543966293335,-0.0006988625391386449,-0.0022713032085448503,6.359381586662494e-06,2.610693445603829e-05,6.961849430808797e-05,-0.0006988625391386449,4.860699118580669e-05,2.610693445603829e-05,-6.255129392229719e-07,-8.421591815022111e-07,-2.625802136488331e-20,-0.0022713032085448503,2.610693445603829e-05,0.0005717930616810918,-2.2786133903774064e-21,-3.0714040804014076e-06,-2.610693445603829e-05,6.359381586662494e-06,-6.255129392229719e-07,-2.2786133903774064e-21,1.0088918145356729e-08,2.893347740567987e-23,7.42803860803971e-23,2.610693445603829e-05,-8.421591815022111e-07,-3.0714040804014076e-06,2.893347740567987e-23,9.907754616733655e-08,2.3690452743518713e-21,6.961849430808797e-05,-2.625802136488331e-20,-2.610693445603829e-05,7.42803860803971e-23,2.3690452743518713e-21,1.5357020402007038e-06,63.0,19.0,0.018915334716439247,-0.0006633169250562787,-0.0020531238988041878,6.024677077220986e-06,2.349624082853552e-05,5.967299148323946e-05,-0.0006633169250562787,4.608861854649149e-05,2.349624082853552e-05,-5.925911636950332e-07,-7.579432690363319e-07,-1.4399560103323106e-20,-0.0020531238988041878,2.349624082853552e-05,0.00048787790001370013,-4.163787692799342e-21,-2.610693400129094e-06,-2.106105603161268e-05,6.024677077220986e-06,-5.925911636950332e-07,-4.163787692799342e-21,9.557922453495848e-09,3.841664887093667e-23,1.5270384439146599e-22,2.349624082853552e-05,-7.579432690363319e-07,-2.610693400129094e-06,3.841664887093667e-23,8.421591957130659e-08,3.970466940254533e-22,5.967299148323946e-05,-1.4399560103323106e-20,-2.106105603161268e-05,1.5270384439146599e-22,3.970466940254533e-22,1.1700586810547975e-06,63.0,20.0,0.018060239031910896,-0.0006312140030786395,-0.0018649505218490958,5.723443337046774e-06,2.1258503693388775e-05,5.153576421434991e-05,-0.0006312140030786395,4.3818476115120575e-05,2.1258503693388775e-05,-5.629616453006747e-07,-6.85758152485505e-07,1.3976043629695956e-20,-0.0018649505218490958,2.1258503693388775e-05,0.0004196322406642139,2.7267267742212884e-21,-2.2377371351467445e-06,-1.717858867777977e-05,5.723443337046774e-06,-5.629616453006747e-07,2.7267267742212884e-21,9.08002650845674e-09,-7.078943518335713e-24,-1.1895961866215337e-22,2.1258503693388775e-05,-6.85758152485505e-07,-2.2377371351467445e-06,-7.078943518335713e-24,7.218507391826279e-08,-5.293955920339377e-22,5.153576421434991e-05,1.3976043629695956e-20,-1.717858867777977e-05,-1.1895961866215337e-22,-5.293955920339377e-22,9.041362432071764e-07,63.0,21.0,0.017279118299484253,-0.0006020764703862369,-0.001701520523056388,5.450898242997937e-06,1.932591294462327e-05,4.481371070141904e-05,-0.0006020764703862369,4.1761570173548535e-05,1.932591294462327e-05,-5.361539479054045e-07,-6.234164970919664e-07,4.0234064994579266e-21,-0.001701520523056388,1.932591294462327e-05,0.00036355858901515603,-9.464596630838104e-23,-1.9325912035128567e-06,-1.4151697541819885e-05,5.450898242997937e-06,-5.361539479054045e-07,-9.464596630838104e-23,8.647644378356745e-09,-3.7953794201129103e-25,3.496955706250517e-24,1.932591294462327e-05,-6.234164970919664e-07,-1.9325912035128567e-06,-3.7953794201129103e-25,6.234165539353853e-08,-3.5734202462290796e-22,4.481371070141904e-05,4.0234064994579266e-21,-1.4151697541819885e-05,3.496955706250517e-24,-3.5734202462290796e-22,7.07584888459678e-07,63.0,22.0,0.016562769189476967,-0.000575511425267905,-0.001558676827698946,5.203130058362149e-06,1.7645397747401148e-05,3.9211994590004906e-05,-0.000575511425267905,3.98891897930298e-05,1.7645397747401148e-05,-5.117832984069537e-07,-5.692064064533042e-07,2.117582368135751e-21,-0.001558676827698946,1.7645397747401148e-05,0.0003170569834765047,-7.555594260970327e-23,-1.6805140603537438e-06,-1.1763599104597233e-05,5.203130058362149e-06,-5.117832984069537e-07,-7.555594260970327e-23,8.254569472398998e-09,1.860484268753064e-23,-2.775993321319326e-23,1.7645397747401148e-05,-5.692064064533042e-07,-1.6805140603537438e-06,1.860484268753064e-23,5.421013327122637e-08,-5.955700410381799e-23,3.9211994590004906e-05,2.117582368135751e-21,-1.1763599104597233e-05,-2.775993321319326e-23,-5.955700410381799e-23,5.601713723990542e-07,63.0,23.0,0.01590345799922943,-0.0005511924391612411,-0.0014331004349514842,4.97690734846401e-06,1.617494854144752e-05,3.4506556403357536e-05,-0.0005511924391612411,3.8177564420038834e-05,1.617494854144752e-05,-4.895318284070527e-07,-5.217725060902012e-07,-4.235164736271502e-22,-0.0014331004349514842,1.617494854144752e-05,0.0002781671064440161,-4.77141395185e-22,-1.4704498880746542e-06,-9.859016245172825e-06,4.97690734846401e-06,-4.895318284070527e-07,-4.77141395185e-22,7.895675224744991e-09,-1.1092710402589103e-23,3.627902198896136e-23,1.617494854144752e-05,-5.217725060902012e-07,-1.4704498880746542e-06,-1.1092710402589103e-23,4.743386483596623e-08,-1.852884572118782e-22,3.4506556403357536e-05,-4.235164736271502e-22,-9.859016245172825e-06,3.627902198896136e-23,-1.852884572118782e-22,4.481370865505596e-07,63.0,24.0,0.015294630080461502,-0.0005288461688905954,-0.0013221154222264886,4.76953618999687e-06,1.4880952221574262e-05,3.052503234357573e-05,-0.0005288461688905954,3.6606830690288916e-05,1.4880952221574262e-05,-4.6913470441722893e-07,-4.800307351615629e-07,-4.235164736271502e-22,-0.0013221154222264886,1.4880952221574262e-05,0.00024539168225601315,-8.08392394414913e-22,-1.2939958651259076e-06,-8.325007911480498e-06,4.76953618999687e-06,-4.6913470441722893e-07,-8.08392394414913e-22,7.566688609017547e-09,7.169217604885584e-24,2.708600934186295e-23,1.4880952221574262e-05,-4.800307351615629e-07,-1.2939958651259076e-06,7.169217604885584e-24,4.17418029030614e-08,-1.1249656330721176e-22,3.052503234357573e-05,-4.235164736271502e-22,-8.325007911480498e-06,2.708600934186295e-23,-1.1249656330721176e-22,3.619568929025263e-07,63.0,25.0,0.014730701223015785,-0.0005082417628727853,-0.0012235449394211173,4.578754669637419e-06,1.3736264008912258e-05,2.713336107262876e-05,-0.0005082417628727853,3.516028300509788e-05,1.3736264008912258e-05,-4.503692991875141e-07,-4.4310527869129146e-07,-8.152692117322641e-21,-0.0012235449394211173,1.3736264008912258e-05,0.000217573789996095,-2.0364019419351304e-21,-1.1446886674093548e-06,-7.078268026816659e-06,4.578754669637419e-06,-4.503692991875141e-07,-2.0364019419351304e-21,7.264020940311866e-09,5.07452329438557e-24,7.259349854244697e-23,1.3736264008912258e-05,-4.4310527869129146e-07,-1.1446886674093548e-06,5.07452329438557e-24,3.692543870670306e-08,2.3491929396505986e-22,2.713336107262876e-05,-8.152692117322641e-21,-7.078268026816659e-06,7.259349854244697e-23,2.3491929396505986e-22,2.9492784392459725e-07,63.0,26.0,0.014206881634891033,-0.0004891831777058542,-0.0011356037575751543,4.402648755785776e-06,1.2718763173324987e-05,2.4226214009104297e-05,-0.0004891831777058542,3.382374416105449e-05,1.2718763173324987e-05,-4.330474041580601e-07,-4.102826665075554e-07,4.0234064994579266e-21,-0.0011356037575751543,1.2718763173324987e-05,0.00019380971207283437,1.770211141458053e-21,-1.017501062960946e-06,-6.056553502276074e-06,4.402648755785776e-06,-4.330474041580601e-07,1.770211141458053e-21,6.984635536610995e-09,-1.8910436358160587e-23,-4.455534670975674e-23,1.2718763173324987e-05,-4.102826665075554e-07,-1.017501062960946e-06,-1.8910436358160587e-23,3.2822612183736055e-08,-4.301339185275744e-23,2.4226214009104297e-05,4.0234064994579266e-21,-6.056553502276074e-06,-4.455534670975674e-23,-4.301339185275744e-23,2.4226216055467376e-07,63.0,27.0,0.013719037175178528,-0.0004715027171187103,-0.001056816428899765,4.2395877244416624e-06,1.181027982966043e-05,2.17200540646445e-05,-0.0004715027171187103,3.2585125154582784e-05,1.181027982966043e-05,-4.1700860720084165e-07,-3.8097675769677153e-07,-1.0587911840678754e-22,-0.001056816428899765,1.181027982966043e-05,0.00017338659381493926,-6.965814458976469e-22,-9.084830594474624e-07,-5.212812993704574e-06,4.2395877244416624e-06,-4.1700860720084165e-07,-6.965814458976469e-22,6.725945578267556e-09,1.269188212990499e-23,1.1047578881340503e-23,1.181027982966043e-05,-3.8097675769677153e-07,-9.084830594474624e-07,1.269188212990499e-23,2.9305905258070197e-08,-3.970466940254533e-23,2.17200540646445e-05,-1.0587911840678754e-22,-5.212812993704574e-06,1.1047578881340503e-23,-3.970466940254533e-23,2.0049280635703326e-07,63.0,28.0,0.013263585977256298,-0.00045505602611228824,-0.0009859547717496753,4.088173682248453e-06,1.0995777302014176e-05,1.9548049749573693e-05,-0.00045505602611228824,3.14340359182097e-05,1.0995777302014176e-05,-4.0211546092905337e-07,-3.5470250736580056e-07,2.541098841762901e-21,-0.0009859547717496753,1.0995777302014176e-05,0.00015573696873616427,2.0043477276329526e-23,-8.145020728989039e-07,-4.511088263825513e-06,4.088173682248453e-06,-4.0211546092905337e-07,2.0043477276329526e-23,6.485732839678349e-09,1.167199936428548e-23,-1.520017739630374e-23,1.0995777302014176e-05,-3.5470250736580056e-07,-8.145020728989039e-07,1.167199936428548e-23,2.627425921275517e-08,-1.0587911840678754e-22,1.9548049749573693e-05,2.541098841762901e-21,-4.511088263825513e-06,-1.520017739630374e-23,-1.0587911840678754e-22,1.670773457362884e-07,63.0,29.0,0.012837405316531658,-0.00043971833656542003,-0.0009219900239259005,3.947202003473649e-06,1.0262725481879897e-05,1.7656302588875405e-05,-0.00043971833656542003,3.0361519748112187e-05,1.0262725481879897e-05,-3.882493899709516e-07,-3.3105567354141385e-07,-1.5881867761018131e-21,-0.0009219900239259005,1.0262725481879897e-05,0.00014040526002645493,-2.4873372516309435e-22,-7.330518201342784e-07,-3.923622898582835e-06,3.947202003473649e-06,-3.882493899709516e-07,-2.4873372516309435e-22,6.262087293151808e-09,-2.7471008173490636e-24,9.630850959879605e-24,1.0262725481879897e-05,-3.3105567354141385e-07,-7.330518201342784e-07,-2.7471008173490636e-24,2.3646833824386704e-08,5.1285197978287716e-23,1.7656302588875405e-05,-1.5881867761018131e-21,-3.923622898582835e-06,9.630850959879605e-24,5.1285197978287716e-23,1.4012938720497914e-07,63.0,30.0,0.012437759898602962,-0.0004253810620866716,-0.0008640552987344563,3.815629042946966e-06,9.600614248483907e-06,1.600102405063808e-05,-0.0004253810620866716,2.9359793188632466e-05,9.600614248483907e-06,-3.7530776353378315e-07,-3.0969724207352556e-07,1.9058241313221758e-21,-0.0008640552987344563,9.600614248483907e-06,0.00012702291132882237,8.616083957230452e-23,-6.621113470828277e-07,-3.4287909329577815e-06,3.815629042946966e-06,-3.7530776353378315e-07,8.616083957230452e-23,6.0533507095783534e-09,4.877585747118955e-24,-7.169727997891262e-24,9.600614248483907e-06,-3.0969724207352556e-07,-6.621113470828277e-07,4.877585747118955e-24,2.1358429691531455e-08,-9.098986738083304e-23,1.600102405063808e-05,1.9058241313221758e-21,-3.4287909329577815e-06,-7.169727997891262e-24,-9.098986738083304e-23,1.1823416912193352e-07,63.0,31.0,0.012062247842550278,-0.0004119494406040758,-0.0008114155498333275,3.6925439417245798e-06,9.00057602848392e-06,1.4546385500580072e-05,-0.0004119494406040758,2.842206959030591e-05,9.00057602848392e-06,-3.6320105323284224e-07,-2.9034114845671866e-07,-5.717472393966527e-21,-0.0008114155498333275,9.00057602848392e-06,0.00011528951290529221,-1.0003666055707203e-21,-6.000383905302442e-07,-3.0095970942056738e-06,3.6925439417245798e-06,-3.6320105323284224e-07,-1.0003666055707203e-21,5.858081575382812e-09,-7.910572418925668e-25,3.265387480789062e-23,9.00057602848392e-06,-2.9034114845671866e-07,-6.000383905302442e-07,-7.910572418925668e-25,1.9356077629595347e-08,2.1010387558846903e-22,1.4546385500580072e-05,-5.717472393966527e-21,-3.0095970942056738e-06,3.265387480789062e-23,2.1010387558846903e-22,1.0031990171910365e-07,63.0,32.0,0.01170874573290348,-0.00039934023516252637,-0.0007634445792064071,3.577152028810815e-06,8.455086572212167e-06,1.3262881111586466e-05,-0.00039934023516252637,2.7542402676772326e-05,8.455086572212167e-06,-3.51851014102067e-07,-2.7274472813587636e-07,-1.0587911840678754e-22,-0.0007634445792064071,8.455086572212167e-06,0.00010495859169168398,-1.166019469192757e-22,-5.454894562717527e-07,-2.652576085893088e-06,3.577152028810815e-06,-3.51851014102067e-07,-1.166019469192757e-22,5.67501645676316e-09,2.6709211113775494e-24,7.4413392170537115e-25,8.455086572212167e-06,-2.7274472813587636e-07,-5.454894562717527e-07,2.6709211113775494e-24,1.7596434531697014e-08,9.926167350636332e-24,1.3262881111586466e-05,-1.0587911840678754e-22,-2.652576085893088e-06,7.4413392170537115e-25,9.926167350636332e-24,8.556697395079027e-08,63.0,33.0,0.011375374160706997,-0.0003874801623169333,-0.0007196060032583773,3.4687534480326576e-06,7.95772848505294e-06,1.2126062756578904e-05,-0.0003874801623169333,2.6715562853496522e-05,7.95772848505294e-06,-3.411888656046358e-07,-2.5670092895779817e-07,1.1117307432712692e-21,-0.0007196060032583773,7.95772848505294e-06,9.58266100496985e-05,-7.423100654317389e-24,-4.973580303158087e-07,-2.3469799543818226e-06,3.4687534480326576e-06,-3.411888656046358e-07,-7.423100654317389e-24,5.503046018873192e-09,2.6401119515089164e-24,-1.976548979307779e-24,7.95772848505294e-06,-2.5670092895779817e-07,-4.973580303158087e-07,2.6401119515089164e-24,1.6043808059862386e-08,-5.790264287871194e-23,1.2126062756578904e-05,1.1117307432712692e-21,-2.3469799543818226e-06,-1.976548979307779e-24,-5.790264287871194e-23,7.334312357443196e-08,63.0,34.0,0.011060460470616817,-0.0003763043787330389,-0.0006794384680688381,3.3667313346086303e-06,7.503001143049914e-06,1.111555775423767e-05,-0.0003763043787330389,2.593692988739349e-05,7.503001143049914e-06,-3.3115389896920533e-07,-2.4203228576880065e-07,3.705769144237564e-22,-0.0006794384680688381,7.503001143049914e-06,8.772448200033978e-05,-3.381011391647157e-22,-4.547273420030251e-07,-2.0841669083893066e-06,3.3667313346086303e-06,-3.3115389896920533e-07,-3.381011391647157e-22,5.341191933183609e-09,-3.2672660347057098e-24,1.245723387592519e-23,7.503001143049914e-06,-2.4203228576880065e-07,-4.547273420030251e-07,-3.2672660347057098e-24,1.4668623649072288e-08,-4.963083675318166e-23,1.111555775423767e-05,3.705769144237564e-22,-2.0841669083893066e-06,1.245723387592519e-23,-4.963083675318166e-23,6.315657685718179e-08,63.0,35.0,0.010762513615190983,-0.0003657552879303694,-0.0006425430765375495,3.2705390822229674e-06,7.086167897796258e-06,1.021429579850519e-05,-0.0003657552879303694,2.520240559533704e-05,7.086167897796258e-06,-3.216923687432427e-07,-2.285860603024048e-07,8.470329472543003e-22,-0.0006425430765375495,7.086167897796258e-06,8.05109812063165e-05,9.119807617271346e-23,-4.168333873622032e-07,-1.8571447526483098e-06,3.2705390822229674e-06,-3.216923687432427e-07,9.119807617271346e-23,5.188586449378363e-09,2.120300538268262e-24,-4.948167893322247e-24,7.086167897796258e-06,-2.285860603024048e-07,-4.168333873622032e-07,2.120300538268262e-24,1.344623878907214e-08,-3.226004388956808e-23,1.021429579850519e-05,8.470329472543003e-22,-1.8571447526483098e-06,-4.948167893322247e-24,-3.226004388956808e-23,5.462190344474038e-08,63.0,36.0,0.010480199009180069,-0.00035578160895965993,-0.0006085737841203809,3.179690793331247e-06,6.703131930407835e-06,9.407904144609347e-06,-0.00035578160895965993,2.450834472256247e-05,6.703131930407835e-06,-3.1275646961148595e-07,-2.162300489771951e-07,-3.22931311140702e-21,-0.0006085737841203809,6.703131930407835e-06,7.406748045468703e-05,-1.4761636807990278e-21,-3.830361094969703e-07,-1.6602183450231678e-06,3.179690793331247e-06,-3.1275646961148595e-07,-1.4761636807990278e-21,5.0444590726783645e-09,1.1478677955408397e-23,2.953883664257199e-23,6.703131930407835e-06,-2.162300489771951e-07,-3.830361094969703e-07,1.1478677955408397e-23,1.2356003331603915e-08,6.121136532892405e-23,9.407904144609347e-06,-3.22931311140702e-21,-1.6602183450231678e-06,2.953883664257199e-23,6.121136532892405e-23,4.7434809857804794e-08,63.0,37.0,0.010212316177785397,-0.0003463375032879412,-0.0005772291915491223,3.0937530937080737e-06,6.350335297611309e-06,8.684219210408628e-06,-0.0003463375032879412,2.3851493097026832e-05,6.350335297611309e-06,-3.043035690097895e-07,-2.0484952756305574e-07,-1.1518300198312678e-21,-0.0005772291915491223,6.350335297611309e-06,6.829389167251065e-05,-7.639348696128473e-22,-3.527964054228505e-07,-1.4887233419358381e-06,3.0937530937080737e-06,-3.043035690097895e-07,-7.639348696128473e-22,4.908122352986766e-09,6.2038545941477076e-24,1.570587667959567e-23,6.350335297611309e-06,-2.0484952756305574e-07,-3.527964054228505e-07,6.2038545941477076e-24,1.1380529407745144e-08,9.892538999107666e-24,8.684219210408628e-06,-1.1518300198312678e-21,-1.4887233419358381e-06,1.570587667959567e-23,9.892538999107666e-24,4.1353423796408606e-08,63.0,38.0,0.009957786649465561,-0.0003373819054104388,-0.0005482456181198359,3.012338538610493e-06,6.024677077220986e-06,8.032902769627981e-06,-0.0003373819054104388,2.322893669770565e-05,6.024677077220986e-06,-2.962955818475166e-07,-1.9434442322108225e-07,1.7097696033984288e-21,-0.0005482456181198359,6.024677077220986e-06,6.31053262623027e-05,1.4179471091453613e-21,-3.2565822039032355e-07,-1.3388171282713301e-06,3.012338538610493e-06,-2.962955818475166e-07,1.4179471091453613e-21,4.778961226747924e-09,-1.1166938269465874e-23,-2.9022700729503987e-23,6.024677077220986e-06,-1.9434442322108225e-07,-3.2565822039032355e-07,-1.1166938269465874e-23,1.0505103453795073e-08,4.845294514824638e-24,8.032902769627981e-06,1.7097696033984288e-21,-1.3388171282713301e-06,-2.9022700729503987e-23,4.845294514824638e-24,3.618424671003595e-08,63.0,39.0,0.009715637192130089,-0.00032887785346247256,-0.0005213917465880513,2.9350990189414006e-06,5.723443337046774e-06,7.445129540428752e-06,-0.00032887785346247256,2.2638057998847216e-05,5.723443337046774e-06,-2.886982599648036e-07,-1.84627197086229e-07,1.6217918972545427e-21,-0.0005213917465880513,5.723443337046774e-06,5.842950486112386e-05,1.3519326032673745e-21,-3.012338538610493e-07,-1.2073182915628422e-06,2.9350990189414006e-06,-2.886982599648036e-07,1.3519326032673745e-21,4.6564236910739965e-09,-1.075334796318936e-23,-2.6870009759682576e-23,5.723443337046774e-06,-1.84627197086229e-07,-3.012338538610493e-07,-1.075334796318936e-23,9.717220805782745e-09,2.3236172092449467e-24,7.445129540428752e-06,1.6217918972545427e-21,-1.2073182915628422e-06,-2.6870009759682576e-23,2.3236172092449467e-24,3.177153473643557e-08,63.0,40.0,0.009484984911978245,-0.0003207920235581696,-0.0004964638501405716,2.861721668523387e-06,5.4442507462226786e-06,6.913334345881594e-06,-0.0003207920235581696,2.2076495952205732e-05,5.4442507462226786e-06,-2.8148082265033736e-07,-1.7562099685619614e-07,-9.145484345538693e-22,-0.0004964638501405716,5.4442507462226786e-06,5.420460001914762e-05,-6.316240388762052e-22,-2.791923634504201e-07,-1.0915790653598378e-06,2.861721668523387e-06,-2.8148082265033736e-07,-6.316240388762052e-22,4.54001325422837e-09,4.549493369041652e-24,1.246257051994901e-23,5.4442507462226786e-06,-1.7562099685619614e-07,-2.791923634504201e-07,4.549493369041652e-24,9.006204670924944e-09,7.27533438499501e-24,6.913334345881594e-06,-9.145484345538693e-22,-1.0915790653598378e-06,1.246257051994901e-23,7.27533438499501e-24,2.7989207396217353e-08,63.0,41.0,0.009265030734241009,-0.0003130942932330072,-0.0004732820380013436,2.791923634504201e-06,5.185000645724358e-06,6.431008841900621e-06,-0.0003130942932330072,2.1542124159168452e-05,5.185000645724358e-06,-2.746154166288761e-07,-1.6725809359741106e-07,-6.034867209168414e-22,-0.0004732820380013436,5.185000645724358e-06,5.0377522711642087e-05,-5.956209320328975e-22,-2.592500436549017e-07,-9.893859669318772e-07,2.791923634504201e-06,-2.746154166288761e-07,-5.956209320328975e-22,4.4292809420198864e-09,4.549493369041652e-24,1.1581801008382509e-23,5.185000645724358e-06,-1.6725809359741106e-07,-2.592500436549017e-07,4.549493369041652e-24,8.362904146963501e-09,-5.729246685713254e-24,6.431008841900621e-06,-6.034867209168414e-22,-9.893859669318772e-07,1.1581801008382509e-23,-5.729246685713254e-24,2.4734649883839666e-08,63.0,42.0,0.009055046364665031,-0.0003057573630940169,-0.00045168702490627766,2.7254491214989685e-06,4.943838121107547e-06,5.9925309869868215e-06,-0.0003057573630940169,2.1033014490967616e-05,4.943838121107547e-06,-2.6807697395270225e-07,-1.5947864540066803e-07,-5.831238606812587e-22,-0.00045168702490627766,4.943838121107547e-06,4.690251807915047e-05,-6.935306620307803e-22,-2.4116283725561516e-07,-8.988796480480232e-07,2.7254491214989685e-06,-2.6807697395270225e-07,-6.935306620307803e-22,4.323822189178372e-09,7.858215819253763e-24,1.0782139808508116e-23,4.943838121107547e-06,-1.5947864540066803e-07,-2.4116283725561516e-07,7.858215819253763e-24,7.779446420386193e-09,-4.164333215358851e-24,5.9925309869868215e-06,-5.831238606812587e-22,-8.988796480480232e-07,1.0782139808508116e-23,-4.164333215358851e-24,2.1923893811504058e-08,63.0,43.0,0.008854369632899761,-0.0002987564657814801,-0.00043153713340871036,2.6620666631060885e-06,4.719117896456737e-06,5.59302907277015e-06,-0.0002987564657814801,2.054741526080761e-05,4.719117896456737e-06,-2.6184261514572427e-07,-1.522296173561699e-07,1.1228147817259272e-21,-0.00043153713340871036,4.719117896456737e-06,4.3739993998315185e-05,1.0695676551219186e-21,-2.247199120120058e-07,-8.184920261555817e-07,2.6620666631060885e-06,-2.6184261514572427e-07,1.0695676551219186e-21,4.223267957570442e-09,-7.444625512977249e-24,-2.010891802158304e-23,4.719117896456737e-06,-1.522296173561699e-07,-2.247199120120058e-07,-7.444625512977249e-24,7.249029376765748e-09,5.9018175029089496e-24,5.59302907277015e-06,1.1228147817259272e-21,-8.184920261555817e-07,-2.010891802158304e-23,5.9018175029089496e-24,1.948790462336092e-08,63.0,44.0,0.008662395179271698,-0.0002920690458267927,-0.0004127062566112727,2.6015650291810744e-06,4.509379323280882e-06,5.228266218182398e-06,-0.0002920690458267927,2.0083734852960333e-05,4.509379323280882e-06,-2.5589164920347685e-07,-1.4546385784797167e-07,-6.896206887312705e-22,-0.0004127062566112727,4.509379323280882e-06,4.085560067323968e-05,-6.221815884108759e-22,-2.097385873867097e-07,-7.468951821465453e-07,2.6015650291810744e-06,-2.5589164920347685e-07,-6.221815884108759e-22,4.127284736199499e-09,7.031035206700735e-24,9.39083529630068e-24,4.509379323280882e-06,-1.4546385784797167e-07,-2.097385873867097e-07,7.031035206700735e-24,6.765760840465873e-09,4.994832171309691e-24,5.228266218182398e-06,-6.896206887312705e-22,-7.468951821465453e-07,9.39083529630068e-24,4.994832171309691e-24,1.736965415943814e-08,63.0,45.0,0.008478567935526371,-0.000285674468614161,-0.0003950817044824362,2.5437525437155273e-06,4.313319550419692e-06,4.894547146250261e-06,-0.000285674468614161,1.9640521713881753e-05,4.313319550419692e-06,-2.5020517568918876e-07,-1.3913934537868045e-07,-1.4519854095983659e-21,-0.0003950817044824362,4.313319550419692e-06,3.8219408452278e-05,-1.3461299191534115e-21,-1.9605997181315615e-07,-6.829600351920817e-07,2.5437525437155273e-06,-2.5020517568918876e-07,-1.3461299191534115e-21,4.0355674357783755e-09,9.719372197498075e-24,2.1118884016763018e-23,4.313319550419692e-06,-1.3913934537868045e-07,-1.9605997181315615e-07,9.719372197498075e-24,6.32451557791569e-09,4.092141004048003e-24,4.894547146250261e-06,-1.4519854095983659e-21,-6.829600351920817e-07,2.1118884016763018e-23,4.092141004048003e-24,1.5521818497177264e-08,63.0,46.0,0.00830238126218319,-0.0002795539330691099,-0.00037856263224966824,2.488453674232005e-06,4.129773969907546e-06,4.588637693814235e-06,-0.0002795539330691099,1.9216449800296687e-05,4.129773969907546e-06,-2.4476591420352634e-07,-1.3321852065928397e-07,-6.044897480914991e-22,-0.00037856263224966824,4.129773969907546e-06,3.5805278457701206e-05,-5.357428299862184e-22,-1.8354550945787196e-07,-6.257233167161758e-07,2.488453674232005e-06,-2.4476591420352634e-07,-5.357428299862184e-22,3.947837612372496e-09,5.37667398159468e-24,8.22903803155372e-24,4.129773969907546e-06,-1.3321852065928397e-07,-1.8354550945787196e-07,5.37667398159468e-24,5.920822943039639e-09,4.190640543256614e-24,4.588637693814235e-06,-6.044897480914991e-22,-6.257233167161758e-07,8.22903803155372e-24,4.190640543256614e-24,1.3904963402922021e-08,63.0,47.0,0.008133367635309696,-0.0002736901806201786,-0.0003630584105849266,2.4355076675419696e-06,3.957700300816214e-06,4.307700692152139e-06,-0.0002736901806201786,1.8810304027283564e-05,3.957700300816214e-06,-2.3955814754117455e-07,-1.2766774659667135e-07,-1.4195395731884001e-21,-0.0003630584105849266,3.957700300816214e-06,3.3590309612918645e-05,-1.2184182610901783e-21,-1.7207391067586286e-07,-5.743601150243194e-07,2.4355076675419696e-06,-2.3955814754117455e-07,-1.2184182610901783e-21,3.863840802864615e-09,8.478601278668534e-24,1.8575190983825192e-23,3.957700300816214e-06,-1.2766774659667135e-07,-1.7207391067586286e-07,8.478601278668534e-24,5.550771398077359e-09,9.634581483100395e-24,4.307700692152139e-06,-1.4195395731884001e-21,-5.743601150243194e-07,1.8575190983825192e-23,9.634581483100395e-24,1.2486089495666874e-08,63.0,48.0,0.007971098646521568,-0.00026806737878359854,-0.00034848760697059333,2.384768094998435e-06,3.796161308855517e-06,4.0492386688129045e-06,-0.00026806737878359854,1.8420974811306223e-05,3.796161308855517e-06,-2.3456735220861447e-07,-1.2245681091371807e-07,9.015904159980917e-22,-0.00034848760697059333,3.796161308855517e-06,3.155437661916949e-05,8.338232000282231e-22,-1.6153877879787615e-07,-5.281615926833183e-07,2.384768094998435e-06,-2.3456735220861447e-07,8.338232000282231e-22,3.783344304508773e-09,-4.756288522179909e-24,-1.450259558642585e-23,3.796161308855517e-06,-1.2245681091371807e-07,-1.6153877879787615e-07,-4.756288522179909e-24,5.2109285775259195e-09,-1.0338242181158207e-25,4.0492386688129045e-06,9.015904159980917e-22,-5.281615926833183e-07,-1.450259558642585e-23,-1.0338242181158207e-25,1.1237480279646661e-08,63.0,49.0,0.00781517755240202,-0.0002626710047479719,-0.00033477676333859563,2.336099214517162e-06,3.644314801931614e-06,3.8110481455078116e-06,-0.0002626710047479719,1.8047436242341064e-05,3.644314801931614e-06,-2.297802552675421e-07,-1.1755854245620867e-07,-3.5916165536310143e-22,-0.00033477676333859563,3.644314801931614e-06,2.967974251077976e-05,-4.663342784625107e-22,-1.5184645008048392e-07,-4.865167966272566e-07,2.336099214517162e-06,-2.297802552675421e-07,-4.663342784625107e-22,3.706133178127402e-09,4.342698215903395e-24,6.820165586987012e-24,3.644314801931614e-06,-1.1755854245620867e-07,-1.5184645008048392e-07,4.342698215903395e-24,4.898272454312291e-09,-2.6536916003466172e-24,3.8110481455078116e-06,-3.5916165536310143e-22,-4.865167966272566e-07,6.820165586987012e-24,-2.6536916003466172e-24,1.0135766892460651e-08,63.0,50.0,0.0076652392745018005,-0.0002574876125436276,-0.00032185952295549214,2.2893773348187096e-06,3.5014006698474986e-06,3.5911800750909606e-06,-0.0002574876125436276,1.768874608387705e-05,3.5014006698474986e-06,-2.2518464959375706e-07,-1.1294840618347735e-07,-3.970466940254533e-22,-0.00032185952295549214,3.5014006698474986e-06,2.795074033201672e-05,-4.384470735863127e-22,-1.42914302614372e-07,-4.488975093863701e-07,2.2893773348187096e-06,-2.2518464959375706e-07,-4.384470735863127e-22,3.632010470155933e-09,4.309765639693134e-24,6.3178118627941245e-24,3.5014006698474986e-06,-1.1294840618347735e-07,-1.42914302614372e-07,4.309765639693134e-24,4.6101389372665835e-09,0.0,3.5911800750909606e-06,-3.970466940254533e-22,-4.488975093863701e-07,6.3178118627941245e-24,0.0,9.161174041594222e-09,63.0,51.0,0.007520946208387613,-0.00025250486214645207,-0.00030967575730755925,2.2444876321969787e-06,3.3667313346086303e-06,3.3879057355079567e-06,-0.00025250486214645207,1.734403667796869e-05,3.3667313346086303e-06,-2.2076926597947022e-07,-1.0860423316216838e-07,-2.9778502051908996e-22,-0.00030967575730755925,3.3667313346086303e-06,2.635349846968893e-05,-4.1949530249444038e-22,-1.3466924997374008e-07,-4.148456014263502e-07,2.2444876321969787e-06,-2.2076926597947022e-07,-4.1949530249444038e-22,3.5607945481075376e-09,4.004823173740447e-24,5.983131707297321e-24,3.3667313346086303e-06,-1.0860423316216838e-07,-1.3466924997374008e-07,4.004823173740447e-24,4.3441694685952825e-09,-3.1019272970738538e-24,3.3879057355079567e-06,-2.9778502051908996e-22,-4.148456014263502e-07,5.983131707297321e-24,-3.1019272970738538e-24,8.296911602201362e-09,63.0,52.0,0.0073819849640131,-0.0002477112866472453,-0.00029817098402418196,2.201324377892888e-06,3.2396849292126717e-06,3.19968876283383e-06,-0.0002477112866472453,1.701250766927842e-05,3.2396849292126717e-06,-2.1652370207903004e-07,-1.0450596477085128e-07,-3.705769144237564e-22,-0.00029817098402418196,3.2396849292126717e-06,2.487569690856617e-05,-3.747623705731439e-22,-1.2704646223937743e-07,-3.839626572244015e-07,2.201324377892888e-06,-2.1652370207903004e-07,-3.747623705731439e-22,3.4923177683054973e-09,2.9479816830656522e-24,5.577756204057326e-24,3.2396849292126717e-06,-1.0450596477085128e-07,-1.2704646223937743e-07,2.9479816830656522e-24,4.098272832209204e-09,8.271806125530277e-25,3.19968876283383e-06,-3.705769144237564e-22,-3.839626572244015e-07,5.577756204057326e-24,8.271806125530277e-25,7.52867901354648e-09,63.0,53.0,0.007248065900057554,-0.00024309635045938194,-0.00028729569748975337,2.1597898012259975e-06,3.1196964300761465e-06,3.025160367542412e-06,-0.00024309635045938194,1.6693415091140196e-05,3.1196964300761465e-06,-2.1243835135464906e-07,-1.0063536848292642e-07,-3.970466940254533e-22,-0.00028729569748975337,3.1196964300761465e-06,2.3506376237492077e-05,-3.8506254634527638e-22,-1.1998832860626862e-07,-3.5590119296102785e-07,2.1597898012259975e-06,-2.1243835135464906e-07,-3.8506254634527638e-22,3.4264249215709697e-09,3.2063231771185394e-24,5.4164968633815944e-24,3.1196964300761465e-06,-1.0063536848292642e-07,-1.1998832860626862e-07,3.2063231771185394e-24,3.870591402943546e-09,2.274746684520826e-24,3.025160367542412e-06,-3.970466940254533e-22,-3.5590119296102785e-07,5.4164968633815944e-24,2.274746684520826e-24,6.8442540523960815e-09,63.0,54.0,0.0071189189329743385,-0.0002386502455919981,-0.0002770047285594046,2.1197938622208312e-06,3.00625310956093e-06,2.8630981887545204e-06,-0.0002386502455919981,1.638607500353828e-05,3.00625310956093e-06,-2.0850430360042083e-07,-9.697590286350533e-08,-3.705769144237564e-22,-0.0002770047285594046,3.00625310956093e-06,2.2235759388422593e-05,-3.5493310847562714e-22,-1.1344351236175498e-07,-3.3035746582754655e-07,2.1197938622208312e-06,-2.0850430360042083e-07,-3.5493310847562714e-22,3.362972789133778e-09,2.6379960293458874e-24,5.066458769351496e-24,3.00625310956093e-06,-9.697590286350533e-08,-1.1344351236175498e-07,2.6379960293458874e-24,3.6594680619117526e-09,2.274746684520826e-24,2.8630981887545204e-06,-3.705769144237564e-22,-3.3035746582754655e-07,5.066458769351496e-24,2.274746684520826e-24,6.233159766111385e-09,63.0,55.0,0.006994294002652168,-0.0002343638479942456,-0.00026725701172836125,2.0812519778701244e-06,2.898886805269285e-06,2.712408786464948e-06,-0.0002343638479942456,1.6089845303213224e-05,2.898886805269285e-06,-2.0471331652061053e-07,-9.351247598488044e-08,-3.1763735522036263e-22,-0.00026725701172836125,2.898886805269285e-06,2.1055107936263084e-05,-3.546602257112931e-22,-1.0736617639395263e-07,-3.0706513598488527e-07,2.0812519778701244e-06,-2.0471331652061053e-07,-3.546602257112931e-22,3.3018277001417573e-09,2.8424924418063303e-24,4.862129200972507e-24,2.898886805269285e-06,-9.351247598488044e-08,-1.0736617639395263e-07,2.8424924418063303e-24,3.4634251022680473e-09,6.203854594147708e-25,2.712408786464948e-06,-3.1763735522036263e-22,-3.0706513598488527e-07,4.862129200972507e-24,6.203854594147708e-25,5.6863913577842595e-09,63.0,56.0,0.006873957347124815,-0.00023022873210720718,-0.0002580149448476732,2.0440868411242263e-06,2.7971714189334307e-06,2.5721117253851844e-06,-0.00023022873210720718,1.580413845658768e-05,2.7971714189334307e-06,-2.0105773046452668e-07,-9.02313388451148e-08,-3.970466940254533e-22,-0.0002580149448476732,2.7971714189334307e-06,1.99565984075889e-05,-3.4510571913209896e-22,-1.0171532949243556e-07,-2.857901790775941e-07,2.0440868411242263e-06,-2.0105773046452668e-07,-3.4510571913209896e-22,3.2428664198391743e-09,2.586124677738306e-24,4.838718570318716e-24,2.7971714189334307e-06,-9.02313388451148e-08,-1.0171532949243556e-07,2.586124677738306e-24,3.2811395822562872e-09,3.9291079096268815e-24,2.5721117253851844e-06,-3.970466940254533e-22,-2.857901790775941e-07,4.838718570318716e-24,3.9291079096268815e-24,5.196185259848107e-09,63.0,57.0,0.006757691502571106,-0.0002262370107928291,-0.000249244156293571,2.0082256924069952e-06,2.7007172320736572e-06,2.4413263872702373e-06,-0.0002262370107928291,1.552840149088297e-05,2.7007172320736572e-06,-1.9753039737224753e-07,-8.711991483778547e-08,5.029258124322408e-22,-0.000249244156293571,2.7007172320736572e-06,1.893320950330235e-05,6.389535033187946e-22,-9.645418685977347e-08,-2.663265092905931e-07,2.0082256924069952e-06,-1.9753039737224753e-07,6.389535033187946e-22,3.185974151165283e-09,-4.702679507213352e-24,-8.781129435820792e-24,2.7007172320736572e-06,-8.711991483778547e-08,-9.645418685977347e-08,-4.702679507213352e-24,3.1114255616415676e-09,1.2407709188295415e-24,2.4413263872702373e-06,5.029258124322408e-22,-2.663265092905931e-07,-8.781129435820792e-24,1.2407709188295415e-24,4.755830396163674e-09,63.0,58.0,0.006645293440669775,-0.00022238136443775147,-0.0002409131411695853,1.9736010017368244e-06,2.6091674953931943e-06,2.319260147487512e-06,-0.00022238136443775147,1.5262121451087296e-05,2.6091674953931943e-06,-1.941246949854758e-07,-8.416669317057313e-08,-1.257314531080602e-22,-0.0002409131411695853,2.6091674953931943e-06,1.7978625692194328e-05,-3.114314306551996e-22,-9.154973668046296e-08,-2.4849214241839945e-07,1.9736010017368244e-06,-1.941246949854758e-07,-3.114314306551996e-22,3.131043646575904e-09,2.3096366218521673e-24,4.201061790245036e-24,2.6091674953931943e-06,-8.416669317057313e-08,-9.154973668046296e-08,2.3096366218521673e-24,2.9532174483648532e-09,-4.756288522179909e-24,2.319260147487512e-06,-1.257314531080602e-22,-2.4849214241839945e-07,4.201061790245036e-24,-4.756288522179909e-24,4.359511418527973e-09,63.0,59.0,0.006536572705954313,-0.00021865493908990175,-0.00023299295571632683,1.940150241352967e-06,2.5221952455467544e-06,2.2051981432014145e-06,-0.00021865493908990175,1.5004819942987524e-05,2.5221952455467544e-06,-1.9083445579326508e-07,-8.136113649470644e-08,5.426304818347862e-22,-0.00023299295571632683,2.5221952455467544e-06,1.7087158994399942e-05,5.850721073034394e-22,-8.697224984643981e-08,-2.3212611210965406e-07,1.940150241352967e-06,-1.9083445579326508e-07,5.850721073034394e-22,3.0779749859988215e-09,-4.2187405575614916e-24,-7.844706576251853e-24,2.5221952455467544e-06,-8.136113649470644e-08,-8.697224984643981e-08,-4.2187405575614916e-24,2.805556453822078e-09,-1.8611563782443123e-24,2.2051981432014145e-06,5.426304818347862e-22,-2.3212611210965406e-07,-7.844706576251853e-24,-1.8611563782443123e-24,4.00217459173291e-09,63.0,60.0,0.006431352812796831,-0.00021505134645849466,-0.0002254570572404191,1.907814521473483e-06,2.4395003492827527e-06,2.098494860547362e-06,-0.00021505134645849466,1.4756051314179786e-05,2.4395003492827527e-06,-1.8765388176689157e-07,-7.869356011269701e-08,7.279189390466644e-23,-0.0002254570572404191,2.4395003492827527e-06,1.6253678040811792e-05,7.041456374803067e-23,-8.269493179113852e-08,-2.1708568453959742e-07,1.907814521473483e-06,-1.8765388176689157e-07,7.041456374803067e-23,3.0266753547891767e-09,1.5029034811776946e-24,-2.336330886023941e-24,2.4395003492827527e-06,-7.869356011269701e-08,-8.269493179113852e-08,1.5029034811776946e-24,2.6675783804108733e-09,1.4475660719677984e-24,2.098494860547362e-06,7.279189390466644e-23,-2.1708568453959742e-07,-2.336330886023941e-24,1.4475660719677984e-24,3.6794183255750568e-09,63.0,61.0,0.006329466123133898,-0.00021156460570637137,-0.00021828095486853272,1.8765388176689157e-06,2.360806774959201e-06,1.9985666313004913e-06,-0.00021156460570637137,1.4515397197101265e-05,2.360806774959201e-06,-1.8457758699241822e-07,-7.615506092406576e-08,-2.9116757561866574e-22,-0.00021828095486853272,2.360806774959201e-06,1.547354258946143e-05,-3.224070228234951e-22,-7.869356011269701e-08,-2.032440704624605e-07,1.8765388176689157e-06,-1.8457758699241822e-07,-3.224070228234951e-22,2.977057711461839e-09,3.397419209381993e-24,3.562712784727025e-24,2.360806774959201e-06,-7.615506092406576e-08,-7.869356011269701e-08,3.397419209381993e-24,2.538502075211113e-09,2.1713491079516976e-24,1.9985666313004913e-06,-2.9116757561866574e-22,-2.032440704624605e-07,3.562712784727025e-24,2.1713491079516976e-24,3.3874010263446053e-09,63.0,62.0,0.00623075757175684,-0.0002081891434499994,-0.00021144210768397897,1.8462719708622899e-06,2.285860546180629e-06,1.9048837884838576e-06,-0.0002081891434499994,1.4282467418524902e-05,2.285860546180629e-06,-1.8160052661642112e-07,-7.373743926564202e-08,-2.6800651846718097e-22,-0.00021144210768397897,2.285860546180629e-06,1.474255168432137e-05,-3.1378713340125785e-22,-7.49462500948539e-08,-1.9048837884838576e-07,1.8462719708622899e-06,-1.8160052661642112e-07,-3.1378713340125785e-22,2.929040787691406e-09,3.2495511770028404e-24,3.4857542758268315e-24,2.285860546180629e-06,-7.373743926564202e-08,-7.49462500948539e-08,3.2495511770028404e-24,2.417620992289926e-09,1.9645539548134407e-24,1.9048837884838576e-06,-2.6800651846718097e-22,-1.9048837884838576e-07,3.4857542758268315e-24,1.9645539548134407e-24,3.1227602725891757e-09,63.0,63.0,0.006135080475360155,-0.0002049197064479813,-0.0002049197064479813,1.8169661188949249e-06,2.2144274680613307e-06,1.8169661188949249e-06,-0.0002049197064479813,1.4056895452085882e-05,2.2144274680613307e-06,-1.7871798263513483e-07,-7.143314206814466e-08,-1.6543612251060553e-23,-0.0002049197064479813,2.2144274680613307e-06,1.4056895452085882e-05,2.36982588061658e-23,-7.143314206814466e-08,-1.7871798263513483e-07,1.8169661188949249e-06,-1.7871798263513483e-07,2.36982588061658e-23,2.8825479780891783e-09,1.74072847802282e-24,-1.645465832323557e-24,2.2144274680613307e-06,-7.143314206814466e-08,-7.143314206814466e-08,1.74072847802282e-24,2.3042949770513133e-09,3.2053248736429822e-24,1.8169661188949249e-06,-1.6543612251060553e-23,-1.7871798263513483e-07,-1.645465832323557e-24,3.2053248736429822e-24,2.8825479780891783e-09,63.0,64.0,0.006042297463864088,-0.0002017513761529699,-0.00019869452808052301,1.7885760144054075e-06,2.146291308235959e-06,1.7343767240163288e-06,-0.0002017513761529699,1.3838338418281637e-05,2.146291308235959e-06,-1.759255070510335e-07,-6.923519890733587e-08,3.9042924912502906e-22,-0.00019869452808052301,2.146291308235959e-06,1.3413113265414722e-05,4.787008406659898e-22,-6.813623087964515e-08,-1.6784291290150577e-07,1.7885760144054075e-06,-1.759255070510335e-07,4.787008406659898e-22,2.83750822838158e-09,-2.948703096363477e-24,-6.093546596048843e-24,2.146291308235959e-06,-6.923519890733587e-08,-6.813623087964515e-08,-2.948703096363477e-24,2.1979429387641858e-09,-2.0679515313825692e-25,1.7343767240163288e-06,3.9042924912502906e-22,-1.6784291290150577e-07,-6.093546596048843e-24,-2.0679515313825692e-25,2.664173104349743e-09,64.0,3.0,0.07719624042510986,-0.003496503457427025,-0.04615384712815285,3.6421912227524444e-05,0.0007211538613773882,0.0078125,-0.003496503457427025,0.0002602124586701393,0.0007211538613773882,-3.5247010146122193e-06,-2.2893773348187096e-05,-5.963111948670274e-19,-0.04615384712815285,0.0007211538613773882,0.12427884340286255,-3.407361153319645e-20,-0.0007211538613773882,-0.046875,3.6421912227524444e-05,-3.5247010146122193e-06,-3.407361153319645e-20,5.5947637633835257e-08,3.6264797249118414e-23,1.659704294875265e-20,0.0007211538613773882,-2.2893773348187096e-05,-0.0007211538613773882,3.6264797249118414e-23,2.2893773348187096e-05,-4.87890977618477e-19,0.0078125,-5.963111948670274e-19,-0.046875,1.659704294875265e-20,-4.87890977618477e-19,0.0234375,64.0,4.0,0.0644296333193779,-0.0027305507101118565,-0.03003605827689171,2.731643326114863e-05,0.0004326922935433686,0.00390625,-0.0027305507101118565,0.0001985934068216011,0.0004326922935433686,-2.643525931489421e-06,-1.3736264008912258e-05,-4.87890977618477e-19,-0.03003605827689171,0.0004326922935433686,0.04736778885126114,-4.480804097104793e-20,-0.0002884615387301892,-0.01171875,2.731643326114863e-05,-2.643525931489421e-06,-4.480804097104793e-20,4.196072822537644e-08,1.8525198028362078e-22,1.2395674679735049e-20,0.0004326922935433686,-1.3736264008912258e-05,-0.0002884615387301892,1.8525198028362078e-22,9.157509339274839e-06,-1.4907779871675686e-19,0.00390625,-4.87890977618477e-19,-0.01171875,1.2395674679735049e-20,-1.4907779871675686e-19,0.00390625,64.0,5.0,0.05532529950141907,-0.0022421327885240316,-0.02114010974764824,2.1853147700312547e-05,0.0002884615387301892,0.0022321429569274187,-0.0022421327885240316,0.00016070622950792313,0.0002884615387301892,-2.114820745191537e-06,-9.157509339274839e-06,2.981555974335137e-19,-0.02114010974764824,0.0002884615387301892,0.02396291121840477,1.3939544285167053e-20,-0.0001442307693650946,-0.004464285913854837,2.1853147700312547e-05,-2.114820745191537e-06,1.3939544285167053e-20,3.3568582580301154e-08,-1.2861245044229605e-24,-3.460233019422129e-21,0.0002884615387301892,-9.157509339274839e-06,-0.0001442307693650946,-1.2861245044229605e-24,4.578754669637419e-06,-4.0657581468206416e-20,0.0022321429569274187,2.981555974335137e-19,-0.004464285913854837,-3.460233019422129e-21,-4.0657581468206416e-20,0.0011160714784637094,64.0,6.0,0.048488229513168335,-0.0019027846865355968,-0.01569797471165657,1.8210956113762222e-05,0.00020604395831469446,0.0013950893189758062,-0.0019027846865355968,0.00013501204375643283,0.00020604395831469446,-1.7623505073061096e-06,-6.541078164445935e-06,-4.811147140404426e-19,-0.01569797471165657,0.00020604395831469446,0.013952180743217468,-3.148370903529292e-20,-8.241758041549474e-05,-0.0020926338620483875,1.8210956113762222e-05,-1.7623505073061096e-06,-3.148370903529292e-20,2.7973818816917628e-08,1.673279750443938e-22,4.9036781325081505e-21,0.00020604395831469446,-6.541078164445935e-06,-8.241758041549474e-05,1.673279750443938e-22,2.6164311748289037e-06,6.098637220230962e-20,0.0013950893189758062,-4.811147140404426e-19,-0.0020926338620483875,4.9036781325081505e-21,6.098637220230962e-20,0.0004185267898719758,64.0,7.0,0.043160226196050644,-0.0016530344728380442,-0.012122252956032753,1.5609390175086446e-05,0.00015453297237399966,0.0009300595265813172,-0.0016530344728380442,0.00011642543540801853,0.00015453297237399966,-1.5105862303244066e-06,-4.905808509647613e-06,-9.486769009248164e-20,-0.012122252956032753,0.00015453297237399966,0.008877060376107693,-9.481561002563348e-21,-5.1510989578673616e-05,-0.0011160714784637094,1.5609390175086446e-05,-1.5105862303244066e-06,-9.481561002563348e-21,2.3977557717103082e-08,4.981391243662173e-23,1.1852075451465102e-21,0.00015453297237399966,-4.905808509647613e-06,-5.1510989578673616e-05,4.981391243662173e-23,1.6352695411114837e-06,-3.3881317890172014e-21,0.0009300595265813172,-9.486769009248164e-20,-0.0011160714784637094,1.1852075451465102e-21,-3.3881317890172014e-21,0.00018601190822664648,64.0,8.0,0.03888949751853943,-0.0014614291721954942,-0.009645432233810425,1.3658216630574316e-05,0.0001201923078042455,0.0006510416860692203,-0.0014614291721954942,0.00010234920773655176,0.0001201923078042455,-1.3217629657447105e-06,-3.815629042946966e-06,-3.7269449679189215e-20,-0.009645432233810425,0.0001201923078042455,0.006011046469211578,2.9917103272125645e-21,-3.4340660931775346e-05,-0.0006510416860692203,1.3658216630574316e-05,-1.3217629657447105e-06,2.9917103272125645e-21,2.098036411268822e-08,2.9627343680694167e-23,-5.875250734436678e-22,0.0001201923078042455,-3.815629042946966e-06,-3.4340660931775346e-05,2.9627343680694167e-23,1.0901796940743225e-06,1.4399560103323106e-20,0.0006510416860692203,-3.7269449679189215e-20,-0.0006510416860692203,-5.875250734436678e-22,1.4399560103323106e-20,9.300595411332324e-05,64.0,9.0,0.03538898751139641,-0.001309731975197792,-0.007858391851186752,1.2140637409174815e-05,9.61538462433964e-05,0.0004734848625957966,-0.001309731975197792,9.13162439246662e-05,9.61538462433964e-05,-1.1749003760996857e-06,-3.0525029615091626e-06,-5.421010862427522e-20,-0.007858391851186752,9.61538462433964e-05,0.004264381248503923,-4.151702697141041e-21,-2.40384615608491e-05,-0.000405844155466184,1.2140637409174815e-05,-1.1749003760996857e-06,-4.151702697141041e-21,1.8649211952492806e-08,-1.807340287290135e-24,5.137599397521248e-22,9.61538462433964e-05,-3.0525029615091626e-06,-2.40384615608491e-05,-1.807340287290135e-24,7.631257403772906e-07,3.8116482626443515e-21,0.0004734848625957966,-5.421010862427522e-20,-0.000405844155466184,5.137599397521248e-22,3.8116482626443515e-21,5.0730519433273e-05,64.0,10.0,0.03246721997857094,-0.0011866259155794978,-0.006526442244648933,1.0926573850156274e-05,7.867132808314636e-05,0.00035511364694684744,-0.0011866259155794978,8.243436604971066e-05,7.867132808314636e-05,-1.0574103725957684e-06,-2.4975024643936194e-06,-2.371692252312041e-20,-0.006526442244648933,7.867132808314636e-05,0.0031371102668344975,-1.3779093258706465e-21,-1.7482518160250038e-05,-0.0002663352352101356,1.0926573850156274e-05,-1.0574103725957684e-06,-1.3779093258706465e-21,1.6784291290150577e-08,4.0809712069466163e-23,-2.440862016270827e-23,7.867132808314636e-05,-2.4975024643936194e-06,-1.7482518160250038e-05,4.0809712069466163e-23,5.55000553958962e-07,5.082197683525802e-21,0.00035511364694684744,-2.371692252312041e-20,-0.0002663352352101356,-2.440862016270827e-23,5.082197683525802e-21,2.9592803912237287e-05,64.0,11.0,0.029991457238793373,-0.0010847107041627169,-0.005506992805749178,9.93324829323683e-06,6.555944128194824e-05,0.0002731643326114863,-0.0010847107041627169,7.512953743571416e-05,6.555944128194824e-05,-9.612821258997428e-07,-2.0812519778701244e-06,-3.218725199566341e-20,-0.005506992805749178,6.555944128194824e-05,0.00237616547383368,-4.638618041076406e-21,-1.3111887710692827e-05,-0.0001821095502236858,9.93324829323683e-06,-9.612821258997428e-07,-4.638618041076406e-21,1.5258446950383586e-08,6.290063207136432e-23,2.4166288087967254e-22,6.555944128194824e-05,-2.0812519778701244e-06,-1.3111887710692827e-05,6.290063207136432e-23,4.162504296800762e-07,1.4823076576950256e-21,0.0002731643326114863,-3.218725199566341e-20,-0.0001821095502236858,2.4166288087967254e-22,1.4823076576950256e-21,1.8210956113762222e-05,64.0,12.0,0.027866724878549576,-0.0009989410173147917,-0.004709293134510517,9.105478056881111e-06,5.547337423195131e-05,0.0002146291226381436,-0.0009989410173147917,6.901549932081252e-05,5.547337423195131e-05,-8.811752536530548e-07,-1.761059479576943e-06,2.0328790734103208e-20,-0.004709293134510517,5.547337423195131e-05,0.0018435290548950434,2.1859542175904788e-21,-1.008606795949163e-05,-0.00012877747940365225,9.105478056881111e-06,-8.811752536530548e-07,2.1859542175904788e-21,1.3986909408458814e-08,-1.346809759481531e-23,-1.4586392809399496e-22,5.547337423195131e-05,-1.761059479576943e-06,-1.008606795949163e-05,-1.346809759481531e-23,3.2019264040172857e-07,-2.117582368135751e-21,0.0002146291226381436,2.0328790734103208e-20,-0.00012877747940365225,-1.4586392809399496e-22,-2.117582368135751e-21,1.1707043086062185e-05,64.0,13.0,0.02602325566112995,-0.0009257569327019155,-0.004073330666869879,8.40505617816234e-06,4.754860492539592e-05,0.00017170330102089792,-0.0009257569327019155,6.382272840710357e-05,4.754860492539592e-05,-8.133925462061597e-07,-1.5094794889591867e-06,3.3881317890172014e-21,-0.004073330666869879,4.754860492539592e-05,0.0014593579107895494,-2.316299383656153e-21,-7.924767487565987e-06,-9.365634468849748e-05,8.40505617816234e-06,-8.133925462061597e-07,-2.316299383656153e-21,1.2910993163472995e-08,3.099543990507e-23,1.1023197715115018e-22,4.754860492539592e-05,-1.5094794889591867e-06,-7.924767487565987e-06,3.099543990507e-23,2.515799337743374e-07,-1.5881867761018131e-21,0.00017170330102089792,3.3881317890172014e-21,-9.365634468849748e-05,1.1023197715115018e-22,-1.5881867761018131e-21,7.804695087543223e-06,64.0,14.0,0.02440863847732544,-0.0008625749032944441,-0.003558121621608734,7.804695087543223e-06,4.120879020774737e-05,0.00013950893480796367,-0.0008625749032944441,5.9357404097681865e-05,4.120879020774737e-05,-7.552931151622033e-07,-1.3082155874144519e-06,1.6940658945086007e-21,-0.003558121621608734,4.120879020774737e-05,0.0011751934653148055,-5.782303987139917e-22,-6.339813808153849e-06,-6.975446740398183e-05,7.804695087543223e-06,-7.552931151622033e-07,-5.782303987139917e-22,1.1988778858551541e-08,2.2605458077202638e-24,3.097212433215529e-23,4.120879020774737e-05,-1.3082155874144519e-06,-6.339813808153849e-06,2.2605458077202638e-24,2.0126394417729898e-07,-7.940933880509066e-22,0.00013950893480796367,1.6940658945086007e-21,-6.975446740398183e-05,3.097212433215529e-23,-7.940933880509066e-22,5.36572815690306e-06,64.0,15.0,0.022982729598879814,-0.0008074737852439284,-0.003134898142889142,7.2843822636059485e-06,3.605769234127365e-05,0.00011488970631035045,-0.0008074737852439284,5.5476557463407516e-05,3.605769234127365e-05,-7.04940248397179e-07,-1.1446886674093548e-06,-2.964615315390051e-20,-0.003134898142889142,3.605769234127365e-05,0.0009604274528101087,-3.320336906117665e-21,-5.151098775968421e-06,-5.3026018576929346e-05,7.2843822636059485e-06,-7.04940248397179e-07,-3.320336906117665e-21,1.1189527526767051e-08,1.4836842262855235e-23,2.0108462059979822e-22,3.605769234127365e-05,-1.1446886674093548e-06,-5.151098775968421e-06,1.4836842262855235e-23,1.6352694842680648e-07,1.7470054537119944e-21,0.00011488970631035045,-2.964615315390051e-20,-5.3026018576929346e-05,2.0108462059979822e-22,1.7470054537119944e-21,3.7875727230129996e-06,64.0,16.0,0.021714260801672935,-0.0007589951273985207,-0.002782982075586915,6.829108315287158e-06,3.181561260134913e-05,9.574142313795164e-05,-0.0007589951273985207,5.20723988302052e-05,3.181561260134913e-05,-6.608814828723553e-07,-1.0100194458573242e-06,-2.583450489125616e-20,-0.002782982075586915,3.181561260134913e-05,0.000795061991084367,-3.990809605650942e-21,-4.242081558913924e-06,-4.103203900740482e-05,6.829108315287158e-06,-6.608814828723553e-07,-3.990809605650942e-21,1.049018205634411e-08,1.8825588056916825e-23,2.195064664899793e-22,3.181561260134913e-05,-1.0100194458573242e-06,-4.242081558913924e-06,1.8825588056916825e-23,1.3466924997374008e-07,1.5881867761018131e-21,9.574142313795164e-05,-2.583450489125616e-20,-4.103203900740482e-05,2.195064664899793e-22,1.5881867761018131e-21,2.7354692520020762e-06,64.0,17.0,0.02057851478457451,-0.0007160119130276144,-0.002487199380993843,6.4273963289451785e-06,2.8280543119763024e-05,8.062435517786071e-05,-0.0007160119130276144,4.9062127800425515e-05,2.8280543119763024e-05,-6.220060981831921e-07,-8.977950187727401e-07,-1.3976043629695956e-20,-0.002487199380993843,2.8280543119763024e-05,0.0006656470941379666,-3.4221505509633054e-22,-3.535067889970378e-06,-3.2249743526335806e-05,6.4273963289451785e-06,-6.220060981831921e-07,-3.4221505509633054e-22,9.873112105651671e-09,-7.37277763945153e-24,3.912968446594784e-23,2.8280543119763024e-05,-8.977950187727401e-07,-3.535067889970378e-06,-7.37277763945153e-24,1.1222437734659252e-07,1.3631936494873896e-21,8.062435517786071e-05,-1.3976043629695956e-20,-3.2249743526335806e-05,3.912968446594784e-23,1.3631936494873896e-21,2.015608970395988e-06,64.0,18.0,0.01955569162964821,-0.0006776392692700028,-0.002236209576949477,6.070318704587407e-06,2.530364326958079e-05,6.853070226497948e-05,-0.0006776392692700028,4.6381082938751206e-05,2.530364326958079e-05,-5.874501880498428e-07,-8.032902769627981e-07,1.4823076576950256e-20,-0.002236209576949477,2.530364326958079e-05,0.0005629052757285535,2.2104814556120615e-21,-2.976899168061209e-06,-2.5699013349367306e-05,6.070318704587407e-06,-5.874501880498428e-07,2.2104814556120615e-21,9.324605976246403e-09,-1.794595292733203e-23,-8.278518385200621e-23,2.530364326958079e-05,-8.032902769627981e-07,-2.976899168061209e-06,-1.794595292733203e-23,9.450474180994206e-08,-9.793818452627848e-22,6.853070226497948e-05,1.4823076576950256e-20,-2.5699013349367306e-05,-8.278518385200621e-23,-9.793818452627848e-22,1.5117066141101532e-06,64.0,19.0,0.01862974278628826,-0.0006431725923903286,-0.0020213995594531298,5.750828222517157e-06,2.2773279852117412e-05,5.87406029808335e-05,-0.0006431725923903286,4.397802331368439e-05,2.2773279852117412e-05,-5.565317451328156e-07,-7.22961260635202e-07,-2.117582368135751e-21,-0.0020213995594531298,2.2773279852117412e-05,0.0004802943440154195,5.611557126797619e-22,-2.530364326958079e-06,-2.0731977201648988e-05,5.750828222517157e-06,-5.565317451328156e-07,5.611557126797619e-22,8.83383766137058e-09,-1.2204254861090769e-23,-4.930999124581017e-24,2.2773279852117412e-05,-7.22961260635202e-07,-2.530364326958079e-06,-1.2204254861090769e-23,8.032903053845075e-08,3.441071348220595e-22,5.87406029808335e-05,-2.117582368135751e-21,-2.0731977201648988e-05,-4.930999124581017e-24,3.441071348220595e-22,1.151776473307109e-06,64.0,20.0,0.017787525430321693,-0.0006120441830717027,-0.001836132607422769,5.463286925078137e-06,2.0604395103873685e-05,5.0730519433273e-05,-0.0006120441830717027,4.18118252127897e-05,2.0604395103873685e-05,-5.287051862978842e-07,-6.541077937072259e-07,1.0376153603865179e-20,-0.001836132607422769,2.0604395103873685e-05,0.0004131093737669289,1.2815866073092256e-21,-2.168883838749025e-06,-1.6910173144424334e-05,5.463286925078137e-06,-5.287051862978842e-07,1.2815866073092256e-21,8.392145645075288e-09,-4.0855173334573145e-24,-5.767119108912009e-23,2.0604395103873685e-05,-6.541077937072259e-07,-2.168883838749025e-06,-4.0855173334573145e-24,6.88534527171214e-08,-6.220398206398768e-22,5.0730519433273e-05,1.0376153603865179e-20,-1.6910173144424334e-05,-5.767119108912009e-23,-6.220398206398768e-22,8.900091188479564e-07,64.0,21.0,0.01701817288994789,-0.0005837912322022021,-0.0016752269584685564,5.203130058362149e-06,1.8731268937699497e-05,4.411349436850287e-05,-0.0005837912322022021,3.9849102904554456e-05,1.8731268937699497e-05,-5.035287244936626e-07,-5.946434384895838e-07,4.446922973085077e-21,-0.0016752269584685564,1.8731268937699497e-05,0.0003579072654247284,2.0676605237500768e-21,-1.8731268482952146e-06,-1.3930577551946044e-05,5.203130058362149e-06,-5.035287244936626e-07,2.0676605237500768e-21,7.992519535093834e-09,-2.0450726718649873e-23,-6.258369300319549e-23,1.8731268937699497e-05,-5.946434384895838e-07,-1.8731268482952146e-06,-2.0450726718649873e-23,5.9464344559501114e-08,2.6469779601696886e-23,4.411349436850287e-05,4.446922973085077e-21,-1.3930577551946044e-05,-6.258369300319549e-23,2.6469779601696886e-23,6.965288434912509e-07,64.0,22.0,0.0163126178085804,-0.0005580326542258263,-0.0015345896827057004,4.966624146618415e-06,1.7102462152251974e-05,3.859930802718736e-05,-0.0005580326542258263,3.806245877058245e-05,1.7102462152251974e-05,-4.806410629498714e-07,-5.4293531093208e-07,-3.1763735522036263e-21,-0.0015345896827057004,1.7102462152251974e-05,0.00031212842441163957,-1.367848332724977e-22,-1.628805989639659e-06,-1.1579792044358328e-05,4.966624146618415e-06,-4.806410629498714e-07,-1.367848332724977e-22,7.629223475191793e-09,1.250156154791137e-23,-1.2928466248546203e-23,1.7102462152251974e-05,-5.4293531093208e-07,-1.628805989639659e-06,1.250156154791137e-23,5.170812755750376e-08,3.374896899216353e-22,3.859930802718736e-05,-3.1763735522036263e-21,-1.1579792044358328e-05,-1.2928466248546203e-23,3.374896899216353e-22,5.514186796062859e-07,64.0,23.0,0.01566324383020401,-0.0005344519740901887,-0.0014109532348811626,4.750684183818521e-06,1.5677256669732742e-05,3.396738975425251e-05,-0.0005344519740901887,3.642921001301147e-05,1.5677256669732742e-05,-4.5974363160894427e-07,-4.97690734846401e-07,-9.105604182983729e-21,-0.0014109532348811626,1.5677256669732742e-05,0.0002738430048339069,7.205333077076232e-23,-1.4252052551455563e-06,-9.704968761070631e-06,4.750684183818521e-06,-4.5974363160894427e-07,7.205333077076232e-23,7.297517701232437e-09,-8.85907678186568e-24,1.460585116803204e-23,1.5677256669732742e-05,-4.97690734846401e-07,-1.4252052551455563e-06,-8.85907678186568e-24,4.524461161281579e-08,6.88214269644119e-22,3.396738975425251e-05,-9.105604182983729e-21,-9.704968761070631e-06,1.460585116803204e-23,6.88214269644119e-22,4.411349436850287e-07,64.0,24.0,0.015063592232763767,-0.0005127841141074896,-0.0013016826706007123,4.5527390284405556e-06,1.44230771184084e-05,3.0048076951061375e-05,-0.0005127841141074896,3.493040276225656e-05,1.44230771184084e-05,-4.405876268265274e-07,-4.578754442263744e-07,1.9058241313221758e-21,-0.0013016826706007123,1.44230771184084e-05,0.00024157704319804907,5.3586061638569875e-22,-1.254180574505881e-06,-8.19493016024353e-06,4.5527390284405556e-06,-4.405876268265274e-07,5.3586061638569875e-22,6.993454704229407e-09,2.3323747485842578e-24,-2.4070194101203024e-23,1.44230771184084e-05,-4.578754442263744e-07,-1.254180574505881e-06,2.3323747485842578e-24,3.9815258645603535e-08,-5.624828165360588e-23,3.0048076951061375e-05,1.9058241313221758e-21,-8.19493016024353e-06,-2.4070194101203024e-23,-5.624828165360588e-23,3.5630131378638907e-07,64.0,25.0,0.01450816635042429,-0.0004928052658215165,-0.001204635133035481,4.3706295400625095e-06,1.3313609088072553e-05,2.6709401936386712e-05,-0.0004928052658215165,3.3550091757206246e-05,1.3313609088072553e-05,-4.2296412061659794e-07,-4.226542671403877e-07,7.411538288475128e-22,-0.001204635133035481,1.3313609088072553e-05,0.00021419153199531138,4.0453983763954525e-22,-1.1094674619016587e-06,-6.9676698331022635e-06,4.3706295400625095e-06,-4.2296412061659794e-07,4.0453983763954525e-22,6.713716249606705e-09,-7.439974389080066e-24,-5.8347248829199026e-24,1.3313609088072553e-05,-4.226542671403877e-07,-1.1094674619016587e-06,-7.439974389080066e-24,3.5221187744127747e-08,-2.9778502051908996e-23,2.6709401936386712e-05,7.411538288475128e-22,-6.9676698331022635e-06,-5.8347248829199026e-24,-2.9778502051908996e-23,2.90319576379261e-07,64.0,26.0,0.013992244377732277,-0.0004743253521155566,-0.0011180526344105601,4.20252808908117e-06,1.2327415788604412e-05,2.3847680495237e-05,-0.0004743253521155566,3.227475826861337e-05,1.2327415788604412e-05,-4.066962731030799e-07,-3.9134653206929215e-07,-1.5881867761018131e-21,-0.0011180526344105601,1.2327415788604412e-05,0.00019079685444012284,-3.517150860968537e-22,-9.86193299468141e-07,-5.96192012380925e-06,4.20252808908117e-06,-4.066962731030799e-07,-3.517150860968537e-22,6.455496581736497e-09,6.165470989082369e-24,6.117835623320598e-24,1.2327415788604412e-05,-3.9134653206929215e-07,-9.86193299468141e-07,6.165470989082369e-24,3.1307724412954485e-08,8.933550615572699e-23,2.3847680495237e-05,-1.5881867761018131e-21,-5.96192012380925e-06,6.117835623320598e-24,8.933550615572699e-23,2.384768151841854e-07,64.0,27.0,0.013511757366359234,-0.00045718171168118715,-0.0010404825443401933,4.046878984809155e-06,1.1446886674093548e-05,2.1380677935667336e-05,-0.00045718171168118715,3.109285535174422e-05,1.1446886674093548e-05,-3.916334492259921e-07,-3.633932124103012e-07,-1.0587911840678754e-21,-0.0010404825443401933,1.1446886674093548e-05,0.00017069120076484978,1.6443075084133756e-23,-8.805297397884715e-07,-5.131362740939949e-06,4.046878984809155e-06,-3.916334492259921e-07,1.6443075084133756e-23,6.216404280223742e-09,-2.945801665954074e-24,1.5863547097583098e-24,1.1446886674093548e-05,-3.633932124103012e-07,-8.805297397884715e-07,-2.945801665954074e-24,2.7953324988061468e-08,5.955700410381799e-23,2.1380677935667336e-05,-1.0587911840678754e-21,-5.131362740939949e-06,1.5863547097583098e-24,5.955700410381799e-23,1.9736010870019527e-07,64.0,28.0,0.013063175603747368,-0.0004412344133015722,-0.0009707157150842249,3.9023475437716115e-06,1.0657446182449348e-05,1.9242610505898483e-05,-0.0004412344133015722,2.9994478609296493e-05,1.0657446182449348e-05,-3.7764655758110166e-07,-3.383316311555973e-07,-1.5881867761018131e-21,-0.0009707157150842249,1.0657446182449348e-05,0.00015331590839195997,-3.4185972690107003e-22,-7.894404348007811e-07,-4.4406024244381115e-06,3.9023475437716115e-06,-3.7764655758110166e-07,-3.4185972690107003e-22,5.9943894292757705e-09,6.145972911303247e-25,1.0817837342191177e-23,1.0657446182449348e-05,-3.383316311555973e-07,-7.894404348007811e-07,6.145972911303247e-25,2.5061600794629157e-08,3.970466940254533e-23,1.9242610505898483e-05,-1.5881867761018131e-21,-4.4406024244381115e-06,1.0817837342191177e-23,3.970466940254533e-23,1.6446675488168694e-07,64.0,29.0,0.012643423862755299,-0.00042636244324967265,-0.0009077393915504217,3.7677839372918243e-06,9.946949830919039e-06,1.7380421923007816e-05,-0.00042636244324967265,2.8971075153094716e-05,9.946949830919039e-06,-3.646242419108603e-07,-3.157761909733381e-07,-1.7999450129153882e-21,-0.0009077393915504217,9.946949830919039e-06,0.0001382225309498608,-5.138872177260168e-22,-7.104964083737286e-07,-3.862316134473076e-06,3.7677839372918243e-06,-3.646242419108603e-07,-5.138872177260168e-22,5.787686330194219e-09,7.689006732805666e-24,9.729411241377918e-24,9.946949830919039e-06,-3.157761909733381e-07,-7.104964083737286e-07,7.689006732805666e-24,2.255544195861603e-08,7.444625512977249e-23,1.7380421923007816e-05,-1.7999450129153882e-21,-3.862316134473076e-06,9.729411241377918e-24,7.444625512977249e-23,1.379398639755891e-07,64.0,30.0,0.012249807827174664,-0.0004124605329707265,-0.0008506998419761658,3.6421911318029743e-06,9.305211278842762e-06,1.575100759509951e-05,-0.0004124605329707265,2.8015219868393615e-05,9.305211278842762e-06,-3.524701241985895e-07,-2.954035096536245e-07,2.117582368135751e-22,-0.0008506998419761658,9.305211278842762e-06,0.00012504820188041776,3.988241427953228e-22,-6.417386657631141e-07,-3.37521601068147e-06,3.6421911318029743e-06,-3.524701241985895e-07,3.988241427953228e-22,5.594763763383526e-09,-2.9655600678319184e-24,-1.0364932574981164e-23,9.305211278842762e-06,-2.954035096536245e-07,-6.417386657631141e-07,-2.9655600678319184e-24,2.037265645071784e-08,3.639594695233322e-23,1.575100759509951e-05,2.117582368135751e-22,-3.37521601068147e-06,-1.0364932574981164e-23,3.639594695233322e-23,1.1638675800895726e-07,64.0,31.0,0.011879961006343365,-0.0003994367434643209,-0.0007988734869286418,3.5247010146122193e-06,8.723634891794063e-06,1.4319098227133509e-05,-0.0003994367434643209,2.7120437152916566e-05,8.723634891794063e-06,-3.4110010460608464e-07,-2.769407956293435e-07,1.2705494208814505e-21,-0.0007988734869286418,8.723634891794063e-06,0.00011349719716235995,-2.948713848537615e-22,-5.815757049276726e-07,-2.9625721253978554e-06,3.5247010146122193e-06,-3.4110010460608464e-07,-2.948713848537615e-22,5.41428724076809e-09,2.2939043688193447e-24,7.046234978622534e-24,8.723634891794063e-06,-2.769407956293435e-07,-5.815757049276726e-07,2.2939043688193447e-24,1.846271935335153e-08,-9.26442286059391e-23,1.4319098227133509e-05,1.2705494208814505e-21,-2.9625721253978554e-06,7.046234978622534e-24,-9.26442286059391e-23,9.875240181145273e-08,64.0,32.0,0.011531793512403965,-0.0003872104571200907,-0.0007516437908634543,3.414554157643579e-06,8.19493016024353e-06,1.3055648196313996e-05,-0.0003872104571200907,2.6281051759724505e-05,8.19493016024353e-06,-3.3044074143617763e-07,-2.6015649723376555e-07,1.0587911840678754e-22,-0.0007516437908634543,8.19493016024353e-06,0.00010332687088521197,-6.265814253998663e-23,-5.287051862978842e-07,-2.6111297302122694e-06,3.414554157643579e-06,-3.3044074143617763e-07,-6.265814253998663e-23,5.245091028172055e-09,1.1991537729137018e-24,3.6221761336864534e-25,8.19493016024353e-06,-2.6015649723376555e-07,-5.287051862978842e-07,1.1991537729137018e-24,1.6784291290150577e-08,-4.963083675318166e-24,1.3055648196313996e-05,1.0587911840678754e-22,-2.6111297302122694e-06,3.6221761336864534e-25,-4.963083675318166e-24,8.422998831747464e-08,64.0,33.0,0.01120345201343298,-0.00037571051507256925,-0.0007084826938807964,3.3110827644122764e-06,7.712875230936334e-06,1.193659318232676e-05,-0.00037571051507256925,2.549207601987291e-05,7.712875230936334e-06,-3.204273752999143e-07,-2.448531972731871e-07,0.0,-0.0007084826938807964,7.712875230936334e-06,9.433685045223683e-05,-3.3981096046690243e-22,-4.820547019335208e-07,-2.3103082185116364e-06,3.3110827644122764e-06,-3.204273752999143e-07,-3.3981096046690243e-22,5.086148835431459e-09,7.312339061198022e-24,2.8611292806921767e-24,7.712875230936334e-06,-2.448531972731871e-07,-4.820547019335208e-07,7.312339061198022e-24,1.5303324829574194e-08,-9.926167350636332e-24,1.193659318232676e-05,0.0,-2.3103082185116364e-06,2.8611292806921767e-24,-9.926167350636332e-24,7.219713182848864e-08,64.0,34.0,0.010893291793763638,-0.0003648740821518004,-0.0006689358269795775,3.2136981644725893e-06,7.272139555425383e-06,1.0941877008008305e-05,-0.0003648740821518004,2.474910070304759e-05,7.272139555425383e-06,-3.1100304909159604e-07,-2.3086157341367652e-07,-4.235164736271502e-22,-0.0006689358269795775,7.272139555425383e-06,8.636067650513723e-05,4.4720190239955346e-23,-4.4073573235436925e-07,-2.051601995844976e-06,3.2136981644725893e-06,-3.1100304909159604e-07,4.4720190239955346e-23,4.936556052825836e-09,-3.388703085240206e-24,2.8077727012152905e-24,7.272139555425383e-06,-2.3086157341367652e-07,-4.4073573235436925e-07,-3.388703085240206e-24,1.3991610536834287e-08,1.5716431638507526e-23,1.0941877008008305e-05,-4.235164736271502e-22,-2.051601995844976e-06,2.8077727012152905e-24,1.5716431638507526e-23,6.216975378947609e-08,64.0,35.0,0.010599842295050621,-0.0003546453663147986,-0.0006326106376945972,3.1218780804920243e-06,6.868132004456129e-06,1.0054697668238077e-05,-0.0003546453663147986,2.404821316304151e-05,6.868132004456129e-06,-3.0211722901185567e-07,-2.1803593597269355e-07,1.9587636905255695e-21,-0.0006326106376945972,6.868132004456129e-06,7.925930549390614e-05,5.47818435044303e-22,-4.0400774992122024e-07,-1.8281268694408936e-06,3.1218780804920243e-06,-3.0211722901185567e-07,5.47818435044303e-22,4.795511543420616e-09,-3.0538038236269775e-24,-1.155590822689044e-23,6.868132004456129e-06,-2.1803593597269355e-07,-4.0400774992122024e-07,-3.0538038236269775e-24,1.2825642770053491e-08,-6.28657265540301e-23,1.0054697668238077e-05,1.9587636905255695e-21,-1.8281268694408936e-06,-1.155590822689044e-23,-6.28657265540301e-23,5.376843503768214e-08,64.0,36.0,0.010321788489818573,-0.0003449745709076524,-0.0005991663201712072,3.0351593522937037e-06,6.49688172416063e-06,9.260905244445894e-06,-0.0003449745709076524,2.3385935492115095e-05,6.49688172416063e-06,-2.937250940249214e-07,-2.0625020624720491e-07,3.65282958503417e-21,-0.0005991663201712072,6.49688172416063e-06,7.291598012670875e-05,1.3978931289749397e-21,-3.7125036556062696e-07,-1.6342775097655249e-06,3.0351593522937037e-06,-2.937250940249214e-07,1.3978931289749397e-21,4.6623029881232014e-09,-5.434698251047759e-24,-3.288453773657724e-23,6.49688172416063e-06,-2.0625020624720491e-07,-3.7125036556062696e-07,-5.434698251047759e-24,1.1785726172774957e-08,-6.452008777913616e-23,9.260905244445894e-06,3.65282958503417e-21,-1.6342775097655249e-06,-3.288453773657724e-23,-6.452008777913616e-23,4.6693642730133433e-08,64.0,37.0,0.010057949461042881,-0.00033581728348508477,-0.0005683061317540705,2.9531279324146453e-06,6.154940365377115e-06,8.548528057872318e-06,-0.00033581728348508477,2.2759164494345896e-05,6.154940365377115e-06,-2.857865695204964e-07,-1.9539493223419413e-07,-0.0,-0.0005683061317540705,6.154940365377115e-06,6.723214028170332e-05,0.0,-3.4194113140983973e-07,-1.465461991756456e-06,2.9531279324146453e-06,-2.857865695204964e-07,0.0,4.536294895274295e-09,0.0,-0.0,6.154940365377115e-06,-1.9539493223419413e-07,-3.4194113140983973e-07,0.0,1.0855274013010785e-08,-0.0,8.548528057872318e-06,-0.0,-1.465461991756456e-06,-0.0,-0.0,4.0707277548790444e-08,64.0,38.0,0.009807263500988483,-0.00032713363179937005,-0.0005397705244831741,2.8754141112585785e-06,5.839302502863575e-06,7.90738886280451e-06,-0.00032713363179937005,2.2165117115946487e-05,5.839302502863575e-06,-2.782658725664078e-07,-1.853746738333939e-07,-0.0,-0.0005397705244831741,5.839302502863575e-06,6.21242361376062e-05,0.0,-3.1563797620037803e-07,-1.3178980680095265e-06,2.8754141112585785e-06,-2.782658725664078e-07,0.0,4.41691883068529e-09,0.0,-0.0,5.839302502863575e-06,-1.853746738333939e-07,-3.1563797620037803e-07,0.0,1.0020253071729712e-08,-0.0,7.90738886280451e-06,-0.0,-1.3178980680095265e-06,-0.0,-0.0,3.561886785519164e-08,64.0,39.0,0.009568769484758377,-0.0003188878472428769,-0.0005133316735737026,2.801685468512005e-06,5.547337423195131e-06,7.328799256356433e-06,-0.0003188878472428769,2.16012958844658e-05,5.547337423195131e-06,-2.7113085820928973e-07,-1.761059422733524e-07,-0.0,-0.0005133316735737026,5.547337423195131e-06,5.7521105190971866e-05,-1.3234889800848443e-23,-2.919651080901531e-07,-1.1884538935191813e-06,2.801685468512005e-06,-2.7113085820928973e-07,-1.3234889800848443e-23,4.303664535854068e-09,0.0,-0.0,5.547337423195131e-06,-1.761059422733524e-07,-2.919651080901531e-07,0.0,9.268734224576747e-09,-0.0,7.328799256356433e-06,-0.0,-1.1884538935191813e-06,-0.0,-0.0,3.127510339595574e-08,64.0,40.0,0.00934159941971302,-0.0003110475663561374,-0.0004887890536338091,2.7316434625390684e-06,5.276735464576632e-06,6.805313660152024e-06,-0.0003110475663561374,2.106545252900105e-05,5.276735464576632e-06,-2.643525931489421e-07,-1.6751540954373922e-07,-0.0,-0.0004887890536338091,5.276735464576632e-06,5.336188041837886e-05,1.3234889800848443e-23,-2.706018165099522e-07,-1.0745231975306524e-06,2.7316434625390684e-06,-2.643525931489421e-07,1.3234889800848443e-23,4.196072822537644e-09,0.0,-0.0,5.276735464576632e-06,-1.6751540954373922e-07,-2.706018165099522e-07,0.0,8.590533617791607e-09,-0.0,6.805313660152024e-06,-0.0,-1.0745231975306524e-06,-0.0,-0.0,2.7551877224141208e-08,64.0,41.0,0.009124966338276863,-0.00030358359799720347,-0.00046596553875133395,2.6650179734133417e-06,5.025462542107562e-06,6.33052422926994e-06,-0.00030358359799720347,2.055555160040967e-05,5.025462542107562e-06,-2.579049578343984e-07,-1.5953848730987374e-07,-0.0,-0.00046596553875133395,5.025462542107562e-06,4.959430225426331e-05,0.0,-2.512731214210362e-07,-9.739268307384918e-07,2.6650179734133417e-06,-2.579049578343984e-07,0.0,4.093729355503228e-09,0.0,-0.0,5.025462542107562e-06,-1.5953848730987374e-07,-2.512731214210362e-07,0.0,7.97692401022232e-09,-0.0,6.33052422926994e-06,-0.0,-9.739268307384918e-07,-0.0,-0.0,2.4348169702648192e-08,64.0,42.0,0.008918153122067451,-0.0002964695158880204,-0.0004447042883839458,2.6015650291810744e-06,4.791720130015165e-06,5.898897597944597e-06,-0.0002964695158880204,2.0069755919394083e-05,4.791720130015165e-06,-2.517643622468313e-07,-1.52118090568365e-07,-0.0,-0.0004447042883839458,4.791720130015165e-06,4.61733179690782e-05,0.0,-2.3374244051410642e-07,-8.848346624290571e-07,2.6015650291810744e-06,-2.517643622468313e-07,0.0,3.996259767546917e-09,-4.1359030627651384e-25,-0.0,4.791720130015165e-06,-1.52118090568365e-07,-2.3374244051410642e-07,-4.1359030627651384e-25,7.4203949651519e-09,-0.0,5.898897597944597e-06,-0.0,-8.848346624290571e-07,-0.0,-0.0,2.1581332276809917e-08,64.0,43.0,0.00872050691395998,-0.00028968125116080046,-0.00042486583697609603,2.5410636226297356e-06,4.573914338834584e-06,5.505637545866193e-06,-0.00028968125116080046,1.9606393834692426e-05,4.573914338834584e-06,-2.4590937641733035e-07,-1.452036286764269e-07,-0.0,-0.00042486583697609603,4.573914338834584e-06,4.305996117182076e-05,0.0,-2.178054501200677e-07,-8.057031095631828e-07,2.5410636226297356e-06,-2.4590937641733035e-07,0.0,3.903323442244755e-09,0.0,-0.0,4.573914338834584e-06,-1.452036286764269e-07,-2.178054501200677e-07,0.0,6.914458783313648e-09,-0.0,5.505637545866193e-06,-0.0,-8.057031095631828e-07,-0.0,-0.0,1.9183406863021446e-08,64.0,44.0,0.00853143073618412,-0.0002831969177350402,-0.0004063259984832257,2.4833120733092073e-06,4.3706295400625095e-06,5.146574494574452e-06,-0.0002831969177350402,1.9163948309142143e-05,4.3706295400625095e-06,-2.403205314749357e-07,-1.387501384897405e-07,-0.0,-0.0004063259984832257,4.3706295400625095e-06,4.022040593554266e-05,0.0,-2.0328508298916859e-07,-7.352249440373271e-07,2.4833120733092073e-06,-2.403205314749357e-07,0.0,3.8146117375958966e-09,0.0,-0.0,4.3706295400625095e-06,-1.387501384897405e-07,-2.0328508298916859e-07,0.0,6.453494627578493e-09,-0.0,5.146574494574452e-06,-0.0,-7.352249440373271e-07,-0.0,-0.0,1.7098253479730374e-08,64.0,45.0,0.008350380696356297,-0.00027699655038304627,-0.0003889738873112947,2.4281273454107577e-06,4.180601990810828e-06,4.818069555767579e-06,-0.00027699655038304627,1.8741031453828327e-05,4.180601990810828e-06,-2.3498007806210808e-07,-1.3271751697629952e-07,1.5398063785467154e-22,-0.0003889738873112947,4.180601990810828e-06,3.762519918382168e-05,-3.314639795304708e-38,-1.900273645105699e-07,-6.722888201693422e-07,2.4281273454107577e-06,-2.3498007806210808e-07,-3.314639795304708e-38,3.729842656952087e-09,-0.0,7.53326844033307e-40,4.180601990810828e-06,-1.3271751697629952e-07,-1.900273645105699e-07,-0.0,6.0326148521028244e-09,-6.999119472197304e-24,4.818069555767579e-06,1.5398063785467154e-22,-6.722888201693422e-07,7.53326844033307e-40,-6.999119472197304e-24,1.527929072153711e-08,64.0,46.0,0.008176854811608791,-0.00027106190100312233,-0.0003727101138792932,2.3753420919092605e-06,4.002703917649342e-06,4.516940407484071e-06,-0.00027106190100312233,1.8336379071115516e-05,4.002703917649342e-06,-2.2987181580447213e-07,-1.2706996699307638e-07,-1.4428228091168855e-22,-0.0003727101138792932,4.002703917649342e-06,3.5248602216597646e-05,-6.617444900424222e-24,-1.7789795947464881e-07,-6.159464192023734e-07,2.3753420919092605e-06,-2.2987181580447213e-07,-6.617444900424222e-24,3.6487588506162183e-09,2.0679515313825692e-25,-0.0,4.002703917649342e-06,-1.2706996699307638e-07,-1.7789795947464881e-07,2.0679515313825692e-25,5.647554424115242e-09,6.412545774471663e-24,4.516940407484071e-06,-1.4428228091168855e-22,-6.159464192023734e-07,-0.0,6.412545774471663e-24,1.3687698086073397e-08,64.0,47.0,0.00801039393991232,-0.00026537623489275575,-0.00035744556225836277,2.3248028355737915e-06,3.83592487196438e-06,4.240393082000082e-06,-0.00026537623489275575,1.7948834283743054e-05,3.83592487196438e-06,-2.2498092278055992e-07,-1.2177538621926942e-07,-0.0,-0.00035744556225836277,3.83592487196438e-06,3.3068070479203016e-05,6.617444900424222e-24,-1.667793299020559e-07,-5.653857328979939e-07,2.3248028355737915e-06,-2.2498092278055992e-07,6.617444900424222e-24,3.5711258394854895e-09,-2.0679515313825692e-25,-0.0,3.83592487196438e-06,-1.2177538621926942e-07,-1.667793299020559e-07,-2.0679515313825692e-25,5.294582106074586e-09,-0.0,4.240393082000082e-06,-0.0,-5.653857328979939e-07,-0.0,-0.0,1.2290994000352384e-08,64.0,48.0,0.00785057619214058,-0.0002599242143332958,-0.00034309999318793416,2.2763695142202778e-06,3.6793562685488723e-06,3.98596921513672e-06,-0.0002599242143332958,1.757733480189927e-05,3.6793562685488723e-06,-2.202938134132637e-07,-1.1680496214694358e-07,-0.0,-0.00034309999318793416,3.6793562685488723e-06,3.106378426309675e-05,0.0,-1.5656836183097766e-07,-5.199090651331062e-07,2.2763695142202778e-06,-2.202938134132637e-07,0.0,3.4967273521147035e-09,0.0,-0.0,3.6793562685488723e-06,-1.1680496214694358e-07,-1.5656836183097766e-07,0.0,4.970424072325841e-09,-0.0,3.98596921513672e-06,-0.0,-5.199090651331062e-07,-0.0,-0.0,1.1061894511499304e-08,64.0,49.0,0.007697009947150946,-0.00025469172396697104,-0.0003296010836493224,2.2299129796010675e-06,3.5321820632816525e-06,3.751500571524957e-06,-0.00025469172396697104,1.7220902009285055e-05,3.5321820632816525e-06,-2.1579802478299825e-07,-1.1213276707167097e-07,-8.565751097380496e-22,-0.0003296010836493224,3.5321820632816525e-06,2.9218295821920037e-05,-7.6339278964232835e-22,-1.4717424789978395e-07,-4.789149556927441e-07,2.2299129796010675e-06,-2.1579802478299825e-07,-7.6339278964232835e-22,3.4253655467608723e-09,1.4475660719677984e-24,1.5352563235087092e-23,3.5321820632816525e-06,-1.1213276707167097e-07,-1.4717424789978395e-07,1.4475660719677984e-24,4.67219862798629e-09,-2.9824982919735976e-24,3.751500571524957e-06,-8.565751097380496e-22,-4.789149556927441e-07,1.5352563235087092e-23,-2.9824982919735976e-24,9.977394910265502e-09,64.0,50.0,0.0075493366457521915,-0.0002496657834853977,-0.0003168834955431521,2.1853147700312547e-06,3.3936651107069338e-06,3.535067889970378e-06,-0.0002496657834853977,1.6878639144124463e-05,3.3936651107069338e-06,-2.1148206030829897e-07,-1.07735402821163e-07,-0.0,-0.0003168834955431521,3.3936651107069338e-06,2.75161746685626e-05,1.3234889800848443e-23,-1.3851693836386403e-07,-4.4188348624629725e-07,2.1853147700312547e-06,-2.1148206030829897e-07,1.3234889800848443e-23,3.3568581248033524e-09,-4.1359030627651384e-25,-0.0,3.3936651107069338e-06,-1.07735402821163e-07,-1.3851693836386403e-07,-4.1359030627651384e-25,4.397363362329543e-09,-0.0,3.535067889970378e-06,-0.0,-4.4188348624629725e-07,-0.0,-0.0,9.018029878404832e-09,64.0,51.0,0.007407223340123892,-0.0002448343439027667,-0.00030488806078210473,2.142465291399276e-06,3.2631396607030183e-06,3.3349697332596406e-06,-0.0002448343439027667,1.6549716747249477e-05,3.2631396607030183e-06,-2.0733536132411245e-07,-1.0359173074903083e-07,-2.6469779601696886e-23,-0.00030488806078210473,3.2631396607030183e-06,2.5943765649572015e-05,-1.687697224783247e-23,-1.305255779016079e-07,-4.083636326868145e-07,2.142465291399276e-06,-2.0733536132411245e-07,-1.687697224783247e-23,3.2910374425654254e-09,4.984999907594629e-25,5.88540894956132e-26,3.2631396607030183e-06,-1.0359173074903083e-07,-1.305255779016079e-07,4.984999907594629e-25,4.143669407596917e-09,8.271806125530277e-25,3.3349697332596406e-06,-2.6469779601696886e-23,-4.083636326868145e-07,5.88540894956132e-26,8.271806125530277e-25,8.167273080061932e-09,64.0,52.0,0.0072703612968325615,-0.0002401863894192502,-0.00029356114100664854,2.101264044540585e-06,3.1400022635352798e-06,3.1496936117036967e-06,-0.0002401863894192502,1.6233369024121203e-05,3.1400022635352798e-06,-2.0334813655153994e-07,-9.968260883397306e-08,1.9852334701272664e-23,-0.00029356114100664854,3.1400022635352798e-06,2.4488939743605442e-05,-1.0620384668753453e-23,-1.2313734032431967e-07,-3.779632322675752e-07,2.101264044540585e-06,-2.0334813655153994e-07,-1.0620384668753453e-23,3.2277482908682487e-09,2.6019746189574264e-25,6.051784644853089e-26,3.1400022635352798e-06,-9.968260883397306e-08,-1.2313734032431967e-07,2.6019746189574264e-25,3.909121915057767e-09,-1.2407709188295415e-24,3.1496936117036967e-06,1.9852334701272664e-23,-3.779632322675752e-07,6.051784644853089e-26,-1.2407709188295415e-24,7.411043778660087e-09,64.0,53.0,0.007138465531170368,-0.00023571161727886647,-0.0002828539290931076,2.061617578874575e-06,3.0237058581406018e-06,2.9778921089018695e-06,-0.00023571161727886647,1.5928890206851065e-05,3.0237058581406018e-06,-1.9951137630869198e-07,-9.599066430610037e-08,0.0,-0.0002828539290931076,3.0237058581406018e-06,2.3140906705521047e-05,5.017884264682059e-24,-1.1629637697296857e-07,-3.5034025813729386e-07,2.061617578874575e-06,-1.9951137630869198e-07,5.017884264682059e-24,3.1668474509416455e-09,-2.5217756913257144e-26,2.7429645854299086e-26,3.0237058581406018e-06,-9.599066430610037e-08,-1.1629637697296857e-07,-2.5217756913257144e-26,3.6919485246755812e-09,0.0,2.9778921089018695e-06,0.0,-3.5034025813729386e-07,2.7429645854299086e-26,0.0,6.737312485682878e-09,64.0,54.0,0.007011270150542259,-0.00023140053963288665,-0.0002727220708038658,2.0234394924045773e-06,2.9137529509171145e-06,2.818362190737389e-06,-0.00023140053963288665,1.5635623640264384e-05,2.9137529509171145e-06,-1.9581672461299604e-07,-9.250009469496945e-08,-6.617444900424222e-24,-0.0002727220708038658,2.9137529509171145e-06,2.189004408137407e-05,-0.0,-1.0995294275062406e-07,-3.251956286476343e-07,2.0234394924045773e-06,-1.9581672461299604e-07,-0.0,3.108202140111871e-09,-2.0679515313825692e-25,2.0679515313825692e-25,2.9137529509171145e-06,-9.250009469496945e-08,-1.0995294275062406e-07,-2.0679515313825692e-25,3.4905696111309226e-09,0.0,2.818362190737389e-06,-6.617444900424222e-24,-3.251956286476343e-07,2.0679515313825692e-25,0.0,6.1357665614991674e-09,64.0,55.0,0.006888527888804674,-0.00022724435257259756,-0.00026312502450309694,1.986649749596836e-06,2.8096903861296596e-06,2.6700272428570315e-06,-0.00022724435257259756,1.5352961781900376e-05,2.8096903861296596e-06,-1.9225642233777762e-07,-8.919651861560851e-08,-6.617444900424221e-23,-0.00026312502450309694,2.8096903861296596e-06,2.0727748051285744e-05,-0.0,-1.0406260742001905e-07,-3.0226723879422934e-07,1.986649749596836e-06,-1.9225642233777762e-07,-0.0,3.0516893456677963e-09,0.0,0.0,2.8096903861296596e-06,-8.919651861560851e-08,-1.0406260742001905e-07,0.0,3.3035747470933075e-09,2.274746684520826e-24,2.6700272428570315e-06,-6.617444900424221e-23,-3.0226723879422934e-07,0.0,2.274746684520826e-24,5.597541541391138e-09,64.0,56.0,0.006770009640604258,-0.00022323481971397996,-0.00025402582832612097,1.9511737718858058e-06,2.7111047984362813e-06,2.5319225187558914e-06,-0.00022323481971397996,1.5080338016559836e-05,2.7111047984362813e-06,-1.8882327879055083e-07,-8.606681234368807e-08,-2.6469779601696886e-23,-0.00025402582832612097,2.7111047984362813e-06,1.964631701412145e-05,-0.0,-9.858562322051512e-08,-2.813247306221456e-07,1.9511737718858058e-06,-1.8882327879055083e-07,-0.0,2.9971947146378852e-09,1.0339757656912846e-25,-1.0339757656912846e-25,2.7111047984362813e-06,-8.606681234368807e-08,-9.858562322051512e-08,1.0339757656912846e-25,3.129702275117552e-09,1.2407709188295415e-24,2.5319225187558914e-06,-2.6469779601696886e-23,-2.813247306221456e-07,-1.0339757656912846e-25,1.2407709188295415e-24,5.1149950941464795e-09,64.0,57.0,0.006655500270426273,-0.00021936434495728463,-0.0002453906345181167,1.916942665047827e-06,2.617618292788393e-06,2.4031805878621526e-06,-0.00021936434495728463,1.4817229384789243e-05,2.617618292788393e-06,-1.855105864478901e-07,-8.309899612868321e-08,6.617444900424221e-23,-0.0002453906345181167,2.617618292788393e-06,1.8638838810147718e-05,-0.0,-9.348637064476861e-08,-2.621651731260499e-07,1.916942665047827e-06,-1.855105864478901e-07,-0.0,2.9446125537901935e-09,-1.0339757656912846e-25,1.0339757656912846e-25,2.617618292788393e-06,-8.309899612868321e-08,-9.348637064476861e-08,-1.0339757656912846e-25,2.9678213220307725e-09,-2.481541837659083e-24,2.4031805878621526e-06,6.617444900424221e-23,-2.621651731260499e-07,1.0339757656912846e-25,-2.481541837659083e-24,4.681520948679463e-09,64.0,58.0,0.006544800475239754,-0.00021562579786404967,-0.00023718838929198682,1.8838919686459121e-06,2.528885488572996e-06,2.283021558469045e-06,-0.00021562579786404967,1.456314384995494e-05,2.528885488572996e-06,-1.8231212095543015e-07,-8.028207787447172e-08,-6.617444900424221e-23,-0.00023718838929198682,2.528885488572996e-06,1.7699096133583225e-05,-7.67575939162429e-24,-8.873282553167883e-08,-2.4460945269311196e-07,1.8838919686459121e-06,-1.8231212095543015e-07,-7.67575939162429e-24,2.8938431650971097e-09,3.848172888488937e-26,1.0608244000814488e-25,2.528885488572996e-06,-8.028207787447172e-08,-8.873282553167883e-08,3.848172888488937e-26,2.816915145587018e-09,2.0679515313825692e-24,2.283021558469045e-06,-6.617444900424221e-23,-2.4460945269311196e-07,1.0608244000814488e-25,2.0679515313825692e-24,4.291393906896701e-09,64.0,59.0,0.006437722593545914,-0.00021201255731284618,-0.00022939064365345985,1.8519615423429059e-06,2.4445891995128477e-06,2.170741936424747e-06,-0.00021201255731284618,1.4317625755211338e-05,2.4445891995128477e-06,-1.792220842844472e-07,-7.760601050676996e-08,5.955700410381799e-23,-0.00022939064365345985,2.4445891995128477e-06,1.6821488316054456e-05,7.295157670682308e-24,-8.429618247873805e-08,-2.2849914671496663e-07,1.8519615423429059e-06,-1.792220842844472e-07,7.295157670682308e-24,2.8447950661814048e-09,-1.3995521515791347e-25,-4.7396920227216103e-26,2.4445891995128477e-06,-7.760601050676996e-08,-8.429618247873805e-08,-1.3995521515791347e-25,2.6760693661032064e-09,-1.8611563782443123e-24,2.170741936424747e-06,5.955700410381799e-23,-2.2849914671496663e-07,-4.7396920227216103e-26,-1.8611563782443123e-24,3.939640613737083e-09,64.0,60.0,0.0063340924680233,-0.00020851842418778688,-0.00022197123325895518,1.8210955659014871e-06,2.364438842050731e-06,2.0657059849327197e-06,-0.00020851842418778688,1.408025036653271e-05,2.364438842050731e-06,-1.7623506209929474e-07,-7.506154986458569e-08,-3.3087224502121107e-23,-0.00022197123325895518,2.364438842050731e-06,1.6000965842977166e-05,6.939312771528878e-24,-8.015047114895424e-08,-2.136937240493353e-07,1.8210955659014871e-06,-1.7623506209929474e-07,6.939312771528878e-24,2.797381881691763e-09,-1.3815730254730163e-25,-4.097609165975865e-26,2.364438842050731e-06,-7.506154986458569e-08,-8.015047114895424e-08,-1.3815730254730163e-25,2.544459309916647e-09,1.2407709188295415e-24,2.0657059849327197e-06,-3.3087224502121107e-23,-2.136937240493353e-07,-4.097609165975865e-26,1.2407709188295415e-24,3.6219274246462874e-09,64.0,61.0,0.0062337457202374935,-0.00020513760682661086,-0.00021490606013685465,1.7912415160026285e-06,2.2881665699969744e-06,1.967339130715118e-06,-0.00020513760682661086,1.3850616596755572e-05,2.2881665699969744e-06,-1.7334595270313002e-07,-7.264021206765392e-08,-3.970466940254533e-23,-0.00021490606013685465,2.2881665699969744e-06,1.5232959412969649e-05,6.606243075570083e-24,-7.627222231576525e-08,-2.0006837075925432e-07,1.7912415160026285e-06,-1.7334595270313002e-07,6.606243075570083e-24,2.751523009436596e-09,-3.307780365402002e-26,-8.676582488912756e-26,2.2881665699969744e-06,-7.264021206765392e-08,-7.627222231576525e-08,-3.307780365402002e-26,2.4213402394224204e-09,1.4475660719677984e-24,1.967339130715118e-06,-3.970466940254533e-23,-2.0006837075925432e-07,-8.676582488912756e-26,1.4475660719677984e-24,3.3344729200024403e-09,64.0,62.0,0.006136528681963682,-0.00020186466281302273,-0.000208172932616435,1.7623505073061096e-06,2.215526365034748e-06,1.87512000593415e-06,-0.00020186466281302273,1.3628354281536303e-05,2.215526365034748e-06,-1.7055005230304232e-07,-7.033417404045395e-08,-9.926167350636332e-24,-0.000208172932616435,2.215526365034748e-06,1.4513334463117644e-05,6.294155501968357e-24,-7.264021206765392e-08,-1.87512000593415e-07,1.7623505073061096e-06,-1.7055005230304232e-07,6.294155501968357e-24,2.707143620384045e-09,-3.1502670293423254e-26,-8.132036736419349e-26,2.215526365034748e-06,-7.033417404045395e-08,-7.264021206765392e-08,-3.1502670293423254e-26,2.3060384712891846e-09,4.1359030627651384e-25,1.87512000593415e-06,-9.926167350636332e-24,-1.87512000593415e-07,-8.132036736419349e-26,4.1359030627651384e-25,3.0739673029245296e-09,64.0,63.0,0.006042297463864088,-0.00019869452808052301,-0.0002017513761529699,1.7343767240163288e-06,2.146291308235959e-06,1.7885760144054075e-06,-0.00019869452808052301,1.3413113265414722e-05,2.146291308235959e-06,-1.6784291290150577e-07,-6.813623087964515e-08,1.6543612251060553e-23,-0.0002017513761529699,2.146291308235959e-06,1.3838338418281637e-05,6.001422630676228e-24,-6.923519890733587e-08,-1.759255070510335e-07,1.7343767240163288e-06,-1.6784291290150577e-07,6.001422630676228e-24,2.664173104349743e-09,-1.334235577962483e-25,-2.4596740032317502e-26,2.146291308235959e-06,-6.813623087964515e-08,-6.923519890733587e-08,-1.334235577962483e-25,2.1979429387641858e-09,-4.1359030627651384e-25,1.7885760144054075e-06,1.6543612251060553e-23,-1.759255070510335e-07,-2.4596740032317502e-26,-4.1359030627651384e-25,2.83750822838158e-09,64.0,64.0,0.005950916558504105,-0.0001956224296009168,-0.0001956224296009168,1.7072770788217895e-06,2.080251533698174e-06,1.7072770788217895e-06,-0.0001956224296009168,1.3204565220803488e-05,2.080251533698174e-06,-1.6522037071808882e-07,-6.603973190522083e-08,2.6469779601696886e-23,-0.0001956224296009168,2.080251533698174e-06,1.3204565220803488e-05,-0.0,-6.603973190522083e-08,-1.6522037071808882e-07,1.7072770788217895e-06,-1.6522037071808882e-07,-0.0,2.6225455140860277e-09,-1.0339757656912846e-25,1.0339757656912846e-25,2.080251533698174e-06,-6.603973190522083e-08,-6.603973190522083e-08,-1.0339757656912846e-25,2.096499418513531e-09,-9.305781891221561e-25,1.7072770788217895e-06,2.6469779601696886e-23,-1.6522037071808882e-07,1.0339757656912846e-25,-9.305781891221561e-25,2.6225455140860277e-09}; -float COEFF_3D[]={3.0,3.0,3.0,0.5092592835426331,-0.3333333432674408,-0.3333333432674408,-0.3333333432674408,0.0555555559694767,0.0833333358168602,0.0833333358168602,0.0555555559694767,0.0833333358168602,0.0555555559694767,-0.3333333432674408,0.8888888955116272,0.0833333358168602,0.0833333358168602,-0.3333333432674408,-0.0833333358168602,-0.0833333358168602,4.0891886663284717e-16,8.109832250191573e-17,4.128641872824801e-16,-0.3333333432674408,0.0833333358168602,0.8888888955116272,0.0833333358168602,5.258764877754513e-16,-0.0833333358168602,-2.349341170416368e-17,-0.3333333432674408,-0.0833333358168602,4.128641872824801e-16,-0.3333333432674408,0.0833333358168602,0.0833333358168602,0.8888888955116272,5.329307899184219e-16,-1.2973870477015497e-17,-0.0833333358168602,4.748673695984093e-16,-0.0833333358168602,-0.3333333432674408,0.0555555559694767,-0.3333333432674408,5.258764877754513e-16,5.329307899184219e-16,0.1666666716337204,-1.0377971415979326e-16,-1.0419043911242789e-16,-1.8343918576467505e-16,-5.5484741008660234e-17,-1.8650544503373562e-16,0.0833333358168602,-0.0833333358168602,-0.0833333358168602,-1.2973870477015497e-17,-1.0377971415979326e-16,0.0833333358168602,3.573957913627239e-18,-4.219166401480236e-17,1.0372200507717788e-17,-4.487482740445849e-19,0.0833333358168602,-0.0833333358168602,-2.349341170416368e-17,-0.0833333358168602,-1.0419043911242789e-16,3.573957913627239e-18,0.0833333358168602,-2.664309776993697e-21,2.0816681711721685e-17,-4.163336342344337e-17,0.0555555559694767,4.0891886663284717e-16,-0.3333333432674408,4.748673695984093e-16,-1.8343918576467505e-16,-4.219166401480236e-17,-2.664309776993697e-21,0.1666666716337204,-1.0476728840184277e-16,-1.8504783368040897e-16,0.0833333358168602,8.109832250191573e-17,-0.0833333358168602,-0.0833333358168602,-5.5484741008660234e-17,1.0372200507717788e-17,2.0816681711721685e-17,-1.0476728840184277e-16,0.0833333358168602,-4.163336342344337e-17,0.0555555559694767,4.128641872824801e-16,4.128641872824801e-16,-0.3333333432674408,-1.8650544503373562e-16,-4.487482740445849e-19,-4.163336342344337e-17,-1.8504783368040897e-16,-4.163336342344337e-17,0.1666666716337204,3.0,3.0,4.0,0.42916667461395264,-0.26249998807907104,-0.26249998807907104,-0.21666666865348816,0.0416666679084301,0.0625,0.05000000074505806,0.0416666679084301,0.05000000074505806,0.02777777798473835,-0.26249998807907104,0.6791666746139526,0.0625,0.05000000074505806,-0.25,-0.0625,-0.05000000074505806,2.7755575615628914e-16,6.678685382510707e-17,1.2663481374630692e-16,-0.26249998807907104,0.0625,0.6791666746139526,0.05000000074505806,3.8302694878963493e-16,-0.0625,0.0,-0.25,-0.05000000074505806,1.3010426069826053e-16,-0.21666666865348816,0.05000000074505806,0.05000000074505806,0.33888888359069824,2.8680760587157224e-16,-1.273681630704947e-31,-0.03333333507180214,2.5350092042677346e-16,-0.03333333507180214,-0.0833333358168602,0.0416666679084301,-0.25,3.8302694878963493e-16,2.8680760587157224e-16,0.125,-5.551115123125783e-17,-5.921189773481597e-17,-1.3877787807814457e-16,-3.3306692062243676e-17,-6.476300756398583e-17,0.0625,-0.0625,-0.0625,-1.273681630704947e-31,-5.551115123125783e-17,0.0625,2.6295364878777136e-32,6.162975822039155e-32,1.4791142560641147e-32,2.8760552856604096e-32,0.05000000074505806,-0.05000000074505806,0.0,-0.03333333507180214,-5.921189773481597e-17,2.6295364878777136e-32,0.03333333507180214,6.471124613141112e-32,0.0,1.734723475976807e-18,0.0416666679084301,2.7755575615628914e-16,-0.25,2.5350092042677346e-16,-1.3877787807814457e-16,6.162975822039155e-32,6.471124613141112e-32,0.125,-5.921189773481597e-17,-6.476300756398583e-17,0.05000000074505806,6.678685382510707e-17,-0.05000000074505806,-0.03333333507180214,-3.3306692062243676e-17,1.4791142560641147e-32,0.0,-5.921189773481597e-17,0.03333333507180214,0.0,0.02777777798473835,1.2663481374630692e-16,1.3010426069826053e-16,-0.0833333358168602,-6.476300756398583e-17,2.8760552856604096e-32,1.734723475976807e-18,-6.476300756398583e-17,0.0,0.02777777798473835,3.0,3.0,5.0,0.37063491344451904,-0.21666666865348816,-0.21666666865348816,-0.15238095819950104,0.03333333507180214,0.05000000074505806,0.03333333507180214,0.03333333507180214,0.03333333507180214,0.01587301678955555,-0.21666666865348816,0.550000011920929,0.05000000074505806,0.03333333507180214,-0.20000000298023224,-0.05000000074505806,-0.03333333507180214,6.904199434387692e-16,7.632783294297951e-17,-1.3899471851264167e-16,-0.21666666865348816,0.05000000074505806,0.550000011920929,0.03333333507180214,6.730727086790012e-16,-0.05000000074505806,5.767955557622884e-17,-0.20000000298023224,-0.03333333507180214,-1.5634195327240974e-16,-0.15238095819950104,0.03333333507180214,0.03333333507180214,0.17142857611179352,-1.1449174941446927e-16,-1.1102230246251565e-16,-0.01666666753590107,-1.5265566588595902e-16,-0.01666666753590107,-0.0317460335791111,0.03333333507180214,-0.20000000298023224,6.730727086790012e-16,-1.1449174941446927e-16,0.10000000149011612,-5.0545460282648894e-17,-2.846389037415807e-17,-2.666125139942372e-16,-3.115271043843314e-17,4.4994390158148434e-17,0.05000000074505806,-0.05000000074505806,-0.05000000074505806,-1.1102230246251565e-16,-5.0545460282648894e-17,0.05000000074505806,6.071532165918825e-18,-6.938893903907228e-17,-6.071532165918825e-18,2.5624450646504444e-17,0.03333333507180214,-0.03333333507180214,5.767955557622884e-17,-0.01666666753590107,-2.846389037415807e-17,6.071532165918825e-18,0.01666666753590107,-3.165870343657673e-17,0.0,8.829262165483851e-18,0.03333333507180214,6.904199434387692e-16,-0.20000000298023224,-1.5265566588595902e-16,-2.666125139942372e-16,-6.938893903907228e-17,-3.165870343657673e-17,0.10000000149011612,-1.431146867680866e-17,4.921665418558656e-17,0.03333333507180214,7.632783294297951e-17,-0.03333333507180214,-0.01666666753590107,-3.115271043843314e-17,-6.071532165918825e-18,0.0,-1.431146867680866e-17,0.01666666753590107,1.0119979076879957e-17,0.01587301678955555,-1.3899471851264167e-16,-1.5634195327240974e-16,-0.0317460335791111,4.4994390158148434e-17,2.5624450646504444e-17,8.829262165483851e-18,4.921665418558656e-17,1.0119979076879957e-17,0.007936508394777775,3.0,3.0,6.0,0.32605820894241333,-0.184523805975914,-0.184523805975914,-0.1130952388048172,0.02777777798473835,0.0416666679084301,0.02380952425301075,0.02777777798473835,0.02380952425301075,0.009920635260641575,-0.184523805975914,0.4623015820980072,0.0416666679084301,0.02380952425301075,-0.1666666716337204,-0.0416666679084301,-0.02380952425301075,-1.4224732503009818e-16,-8.673617379884035e-18,4.87890977618477e-18,-0.184523805975914,0.0416666679084301,0.4623015820980072,0.02380952425301075,-9.8879238130678e-17,-0.0416666679084301,-7.37257477290143e-18,-0.1666666716337204,-0.02380952425301075,6.071532165918825e-18,-0.1130952388048172,0.02380952425301075,0.02380952425301075,0.09980158507823944,3.8163916471489756e-17,-1.3877787807814457e-17,-0.009523809887468815,1.734723475976807e-18,-0.009523809887468815,-0.014880952425301075,0.02777777798473835,-0.1666666716337204,-9.8879238130678e-17,3.8163916471489756e-17,0.0833333358168602,-6.077201248246957e-18,-2.160467712429685e-17,4.681769144283987e-17,2.1513973047817655e-18,-1.3010426069826053e-18,0.0416666679084301,-0.0416666679084301,-0.0416666679084301,-1.3877787807814457e-17,-6.077201248246957e-18,0.0416666679084301,-4.336808689942018e-19,4.5102810375396984e-17,8.239936510889834e-18,2.9606024554434033e-19,0.02380952425301075,-0.02380952425301075,-7.37257477290143e-18,-0.009523809887468815,-2.160467712429685e-17,-4.336808689942018e-19,0.009523809887468815,8.673617379884035e-19,2.168404344971009e-19,-5.38135582386173e-19,0.02777777798473835,-1.4224732503009818e-16,-0.1666666716337204,1.734723475976807e-18,4.681769144283987e-17,4.5102810375396984e-17,8.673617379884035e-19,0.0833333358168602,2.211772431870429e-17,-4.072891752423299e-18,0.02380952425301075,-8.673617379884035e-18,-0.02380952425301075,-0.009523809887468815,2.1513973047817655e-18,8.239936510889834e-18,2.168404344971009e-19,2.211772431870429e-17,0.009523809887468815,1.0894383550099358e-19,0.009920635260641575,4.87890977618477e-18,6.071532165918825e-18,-0.014880952425301075,-1.3010426069826053e-18,2.9606024554434033e-19,-5.38135582386173e-19,-4.072891752423299e-18,1.0894383550099358e-19,0.0029761905316263437,3.0,3.0,7.0,0.29100528359413147,-0.1607142835855484,-0.1607142835855484,-0.0873015895485878,0.02380952425301075,0.0357142873108387,0.01785714365541935,0.02380952425301075,0.01785714365541935,0.006613756529986858,-0.1607142835855484,0.3988095223903656,0.0357142873108387,0.01785714365541935,-0.1428571492433548,-0.0357142873108387,-0.01785714365541935,8.847089727481716e-17,3.469446951953614e-18,-3.1577388273640317e-17,-0.1607142835855484,0.0357142873108387,0.3988095223903656,0.01785714365541935,8.673617379884035e-17,-0.0357142873108387,-1.0842021724855044e-17,-0.1428571492433548,-0.01785714365541935,-3.5344990823027445e-17,-0.0873015895485878,0.01785714365541935,0.01785714365541935,0.0634920671582222,-9.280770596475918e-17,-3.8163916471489756e-17,-0.0059523810632526875,-1.0148132334464322e-16,-0.0059523810632526875,-0.007936508394777775,0.02380952425301075,-0.1428571492433548,8.673617379884035e-17,-9.280770596475918e-17,0.0714285746216774,-1.1847185135449882e-17,3.9189544330439156e-17,-3.2480255912241946e-17,-1.4835265083276225e-18,8.61940727125976e-18,0.0357142873108387,-0.0357142873108387,-0.0357142873108387,-3.8163916471489756e-17,-1.1847185135449882e-17,0.0357142873108387,3.469446951953614e-18,-2.3418766925686896e-17,-2.6020852139652106e-18,5.805024085131284e-18,0.01785714365541935,-0.01785714365541935,-1.0842021724855044e-17,-0.0059523810632526875,3.9189544330439156e-17,3.469446951953614e-18,0.0059523810632526875,3.0357660829594124e-18,6.505213034913027e-19,1.8814115499038983e-18,0.02380952425301075,8.847089727481716e-17,-0.1428571492433548,-1.0148132334464322e-16,-3.2480255912241946e-17,-2.3418766925686896e-17,3.0357660829594124e-18,0.0714285746216774,2.949029909160572e-17,1.1108164605402143e-17,0.01785714365541935,3.469446951953614e-18,-0.01785714365541935,-0.0059523810632526875,-1.4835265083276225e-18,-2.6020852139652106e-18,6.505213034913027e-19,2.949029909160572e-17,0.0059523810632526875,1.8228990681185816e-18,0.006613756529986858,-3.1577388273640317e-17,-3.5344990823027445e-17,-0.007936508394777775,8.61940727125976e-18,5.805024085131284e-18,1.8814115499038983e-18,1.1108164605402143e-17,1.8228990681185816e-18,0.0013227512827143073,3.0,3.0,8.0,0.26273149251937866,-0.1423611044883728,-0.1423611044883728,-0.0694444477558136,0.02083333395421505,0.03125,0.013888888992369175,0.02083333395421505,0.013888888992369175,0.004629629664123058,-0.1423611044883728,0.3506944477558136,0.03125,0.013888888992369175,-0.125,-0.03125,-0.013888888992369175,2.0816681711721685e-17,4.336808689942018e-18,-1.9325903724554117e-17,-0.1423611044883728,0.03125,0.3506944477558136,0.013888888992369175,-5.637851296924623e-18,-0.03125,2.2551405187698492e-17,-0.125,-0.013888888992369175,-2.336455681706262e-17,-0.0694444477558136,0.013888888992369175,0.013888888992369175,0.04298941791057587,-4.163336342344337e-17,-2.949029909160572e-17,-0.003968254197388887,-4.423544863740858e-17,-0.003968254197388887,-0.004629629664123058,0.02083333395421505,-0.125,-5.637851296924623e-18,-4.163336342344337e-17,0.0625,-1.1804907934342297e-17,-1.078470741418701e-18,1.7283551778768838e-17,-1.7289920449100037e-18,6.261267546103788e-18,0.03125,-0.03125,-0.03125,-2.949029909160572e-17,-1.1804907934342297e-17,0.03125,-8.673617379884035e-19,-1.431146867680866e-17,3.2526065174565133e-18,3.4397813600553187e-18,0.013888888992369175,-0.013888888992369175,2.2551405187698492e-17,-0.003968254197388887,-1.078470741418701e-18,-8.673617379884035e-19,0.003968254197388887,-8.673617379884035e-18,-8.673617379884035e-19,5.918268419712243e-19,0.02083333395421505,2.0816681711721685e-17,-0.125,-4.423544863740858e-17,1.7283551778768838e-17,-1.431146867680866e-17,-8.673617379884035e-18,0.0625,-2.8189256484623115e-18,7.629871783977887e-18,0.013888888992369175,4.336808689942018e-18,-0.013888888992369175,-0.003968254197388887,-1.7289920449100037e-18,3.2526065174565133e-18,-8.673617379884035e-19,-2.8189256484623115e-18,0.003968254197388887,8.267373471422758e-19,0.004629629664123058,-1.9325903724554117e-17,-2.336455681706262e-17,-0.004629629664123058,6.261267546103788e-18,3.4397813600553187e-18,5.918268419712243e-19,7.629871783977887e-18,8.267373471422758e-19,0.0006613756413571537,3.0,3.0,9.0,0.23945005238056183,-0.12777778506278992,-0.12777778506278992,-0.05656565725803375,0.018518518656492233,0.02777777798473835,0.011111111380159855,0.018518518656492233,0.011111111380159855,0.003367003286257386,-0.12777778506278992,0.31296294927597046,0.02777777798473835,0.011111111380159855,-0.1111111119389534,-0.02777777798473835,-0.011111111380159855,-1.214306433183765e-16,-6.938893903907228e-18,-8.294146619514109e-18,-0.12777778506278992,0.02777777798473835,0.31296294927597046,0.011111111380159855,-1.2516219402794611e-16,-0.02777777798473835,-1.8214596497756474e-17,-0.1111111119389534,-0.011111111380159855,-4.417236288081161e-18,-0.05656565725803375,0.011111111380159855,0.011111111380159855,0.030495431274175644,-4.2500725161431774e-17,8.673617379884035e-19,-0.0027777778450399637,-2.42861286636753e-17,-0.0027777778450399637,-0.0028860028833150864,0.018518518656492233,-0.1111111119389534,-1.2516219402794611e-16,-4.2500725161431774e-17,0.0555555559694767,1.9250673302203644e-17,9.76908823385435e-18,4.3159319747701594e-17,4.119968255444917e-18,3.144186300207963e-18,0.02777777798473835,-0.02777777798473835,-0.02777777798473835,8.673617379884035e-19,1.9250673302203644e-17,0.02777777798473835,8.673617379884035e-19,-3.903127820947816e-18,-3.5236570605778894e-18,2.231430337768721e-19,0.011111111380159855,-0.011111111380159855,-1.8214596497756474e-17,-0.0027777778450399637,9.76908823385435e-18,8.673617379884035e-19,0.0027777778450399637,7.589415207398531e-18,6.2341624917916505e-19,2.4905839557300533e-19,0.018518518656492233,-1.214306433183765e-16,-0.1111111119389534,-2.42861286636753e-17,4.3159319747701594e-17,-3.903127820947816e-18,7.589415207398531e-18,0.0555555559694767,-3.0357660829594124e-18,1.9942784833303806e-18,0.011111111380159855,-6.938893903907228e-18,-0.011111111380159855,-0.0027777778450399637,4.119968255444917e-18,-3.5236570605778894e-18,6.2341624917916505e-19,-3.0357660829594124e-18,0.0027777778450399637,6.098637220230962e-20,0.003367003286257386,-8.294146619514109e-18,-4.417236288081161e-18,-0.0028860028833150864,3.144186300207963e-18,2.231430337768721e-19,2.4905839557300533e-19,1.9942784833303806e-18,6.098637220230962e-20,0.0003607503604143858,3.0,3.0,10.0,0.21994949877262115,-0.11590909212827682,-0.11590909212827682,-0.0469696968793869,0.01666666753590107,0.02500000037252903,0.00909090880304575,0.01666666753590107,0.00909090880304575,0.0025252525229007006,-0.11590909212827682,0.2825757563114166,0.02500000037252903,0.00909090880304575,-0.10000000149011612,-0.02500000037252903,-0.00909090880304575,1.9168694409543718e-16,9.75781955236954e-18,-5.3349828379510885e-18,-0.11590909212827682,0.02500000037252903,0.2825757563114166,0.00909090880304575,1.4596599819189157e-16,-0.02500000037252903,1.5612511283791264e-17,-0.10000000149011612,-0.00909090880304575,-5.275844387237222e-18,-0.0469696968793869,0.00909090880304575,0.00909090880304575,0.022432660683989525,-3.0357660829594124e-17,-3.469446951953614e-18,-0.002020202111452818,-1.2576745200831851e-17,-0.002020202111452818,-0.0018939394503831863,0.01666666753590107,-0.10000000149011612,1.4596599819189157e-16,-3.0357660829594124e-17,0.05000000074505806,5.507282491594353e-18,1.3227266504323154e-17,-7.212625835702256e-17,-1.3823577699190182e-18,1.8431436932253575e-18,0.02500000037252903,-0.02500000037252903,-0.02500000037252903,-3.469446951953614e-18,5.507282491594353e-18,0.02500000037252903,-1.3010426069826053e-18,-1.0191500421363742e-17,-2.6834003769016235e-18,8.009634849296775e-19,0.00909090880304575,-0.00909090880304575,1.5612511283791264e-17,-0.002020202111452818,1.3227266504323154e-17,-1.3010426069826053e-18,0.002020202111452818,-5.5294310796760726e-18,-6.369687763352339e-19,1.8295911660692887e-19,0.01666666753590107,1.9168694409543718e-16,-0.10000000149011612,-1.2576745200831851e-17,-7.212625835702256e-17,-1.0191500421363742e-17,-5.5294310796760726e-18,0.05000000074505806,8.673617379884035e-19,1.5736415288131041e-18,0.00909090880304575,9.75781955236954e-18,-0.00909090880304575,-0.002020202111452818,-1.3823577699190182e-18,-2.6834003769016235e-18,-6.369687763352339e-19,8.673617379884035e-19,0.002020202111452818,2.202285662861181e-19,0.0025252525229007006,-5.3349828379510885e-18,-5.275844387237222e-18,-0.0018939394503831863,1.8431436932253575e-18,8.009634849296775e-19,1.8295911660692887e-19,1.5736415288131041e-18,2.202285662861181e-19,0.00021043770539108664,3.0,3.0,11.0,0.20337995886802673,-0.10606060922145844,-0.10606060922145844,-0.039627037942409515,0.01515151560306549,0.022727273404598236,0.007575757801532745,0.01515151560306549,0.007575757801532745,0.0019425019854679704,-0.10606060922145844,0.25757575035095215,0.022727273404598236,0.007575757801532745,-0.09090909361839294,-0.022727273404598236,-0.007575757801532745,2.3505503099485736e-16,2.179246366695864e-17,-3.2091797420926325e-18,-0.10606060922145844,0.022727273404598236,0.25757575035095215,0.007575757801532745,2.7192004891151225e-16,-0.022727273404598236,1.3010426069826053e-17,-0.09090909361839294,-0.007575757801532745,-5.362252087614818e-18,-0.039627037942409515,0.007575757801532745,0.007575757801532745,0.0169904176145792,2.168404344971009e-18,-5.204170427930421e-18,-0.0015151514671742916,-1.951563910473908e-17,-0.0015151514671742916,-0.001295001246035099,0.01515151560306549,-0.09090909361839294,2.7192004891151225e-16,2.168404344971009e-18,0.04545454680919647,-3.278560798100467e-17,-5.9631119486702744e-18,-9.353269337571496e-17,-7.968885967768458e-18,1.3010426069826053e-18,0.022727273404598236,-0.022727273404598236,-0.022727273404598236,-5.204170427930421e-18,-3.278560798100467e-17,0.022727273404598236,-1.2739375526704677e-18,-2.0816681711721685e-17,-9.75781955236954e-19,6.338052240825248e-19,0.007575757801532745,-0.007575757801532745,1.3010426069826053e-17,-0.0015151514671742916,-5.9631119486702744e-18,-1.2739375526704677e-18,0.0015151514671742916,-3.577867169202165e-18,-7.047314121155779e-19,0.0,0.01515151560306549,2.3505503099485736e-16,-0.09090909361839294,-1.951563910473908e-17,-9.353269337571496e-17,-2.0816681711721685e-17,-3.577867169202165e-18,0.04545454680919647,-8.673617379884035e-19,2.3385504338894913e-18,0.007575757801532745,2.179246366695864e-17,-0.007575757801532745,-0.0015151514671742916,-7.968885967768458e-18,-9.75781955236954e-19,-7.047314121155779e-19,-8.673617379884035e-19,0.0015151514671742916,-3.3881317890172014e-21,0.0019425019854679704,-3.2091797420926325e-18,-5.362252087614818e-18,-0.001295001246035099,1.3010426069826053e-18,6.338052240825248e-19,0.0,2.3385504338894913e-18,-3.3881317890172014e-21,0.00012950012751389295,3.0,3.0,12.0,0.18912799656391144,-0.09775640815496445,-0.09775640815496445,-0.033882785588502884,0.013888888992369175,0.02083333395421505,0.006410256493836641,0.013888888992369175,0.006410256493836641,0.001526251551695168,-0.09775640815496445,0.23664529621601105,0.02083333395421505,0.006410256493836641,-0.0833333358168602,-0.02083333395421505,-0.006410256493836641,6.765421556309548e-17,-4.336808689942018e-19,6.957392350740905e-19,-0.09775640815496445,0.02083333395421505,0.23664529621601105,0.006410256493836641,1.255987998075863e-16,-0.02083333395421505,-9.540979117872439e-18,-0.0833333358168602,-0.006410256493836641,3.623084997387376e-18,-0.033882785588502884,0.006410256493836641,0.006410256493836641,0.013181263580918312,4.336808689942018e-18,-3.0357660829594124e-18,-0.0011655011912807822,1.9949319973733282e-17,-0.0011655011912807822,-0.0009157509193755686,0.013888888992369175,-0.0833333358168602,1.255987998075863e-16,4.336808689942018e-18,0.0416666679084301,-2.3959882012639485e-17,4.228388472693467e-18,-4.105446603483181e-17,-3.5236570605778894e-18,-4.87890977618477e-19,0.02083333395421505,-0.02083333395421505,-0.02083333395421505,-3.0357660829594124e-18,-2.3959882012639485e-17,0.02083333395421505,2.358139725155972e-18,9.974659986866641e-18,2.4123498337802474e-18,-1.99878178383209e-19,0.006410256493836641,-0.006410256493836641,-9.540979117872439e-18,-0.0011655011912807822,4.228388472693467e-18,2.358139725155972e-18,0.0011655011912807822,9.215718466126788e-19,6.708500942254059e-19,5.590417451878382e-20,0.013888888992369175,6.765421556309548e-17,-0.0833333358168602,1.9949319973733282e-17,-4.105446603483181e-17,9.974659986866641e-18,9.215718466126788e-19,0.0416666679084301,-1.734723475976807e-18,-1.6435894723742367e-18,0.006410256493836641,-4.336808689942018e-19,-0.006410256493836641,-0.0011655011912807822,-3.5236570605778894e-18,2.4123498337802474e-18,6.708500942254059e-19,-1.734723475976807e-18,0.0011655011912807822,-3.3881317890172014e-21,0.001526251551695168,6.957392350740905e-19,3.623084997387376e-18,-0.0009157509193755686,-4.87890977618477e-19,-1.99878178383209e-19,5.590417451878382e-20,-1.6435894723742367e-18,-3.3881317890172014e-21,8.325008093379438e-05,3.0,3.0,13.0,0.17673993110656738,-0.09065934270620346,-0.09065934270620346,-0.029304029420018196,0.012820512987673283,0.01923076994717121,0.005494505632668734,0.012820512987673283,0.005494505632668734,0.0012210012646391988,-0.09065934270620346,0.21886447072029114,0.01923076994717121,0.005494505632668734,-0.07692307978868484,-0.01923076994717121,-0.005494505632668734,-6.071532165918825e-17,-9.215718466126788e-18,-3.242682004467102e-18,-0.09065934270620346,0.01923076994717121,0.21886447072029114,0.005494505632668734,-7.746022996667481e-17,-0.01923076994717121,-1.734723475976807e-18,-0.07692307978868484,-0.005494505632668734,8.50412807237192e-19,-0.029304029420018196,0.005494505632668734,0.005494505632668734,0.010434010066092014,-1.0842021724855044e-17,-8.673617379884035e-18,-0.0009157509193755686,1.3877787807814457e-17,-0.0009157509193755686,-0.000666000647470355,0.012820512987673283,-0.07692307978868484,-7.746022996667481e-17,-1.0842021724855044e-17,0.03846153989434242,1.171168798803002e-17,-6.5052130349130266e-18,2.2017327753397504e-17,3.06287113727155e-18,1.0842021724855044e-18,0.01923076994717121,-0.01923076994717121,-0.01923076994717121,-8.673617379884035e-18,1.171168798803002e-17,0.01923076994717121,1.328147661294743e-18,1.2576745200831851e-17,2.358139725155972e-18,3.5133459957484745e-19,0.005494505632668734,-0.005494505632668734,-1.734723475976807e-18,-0.0009157509193755686,-6.5052130349130266e-18,1.328147661294743e-18,0.0009157509193755686,5.421010862427522e-20,7.453889935837843e-20,1.0164395367051604e-19,0.012820512987673283,-6.071532165918825e-17,-0.07692307978868484,1.3877787807814457e-17,2.2017327753397504e-17,1.2576745200831851e-17,5.421010862427522e-20,0.03846153989434242,-5.854691731421724e-18,-5.722874400354381e-19,0.005494505632668734,-9.215718466126788e-18,-0.005494505632668734,-0.0009157509193755686,3.06287113727155e-18,2.358139725155972e-18,7.453889935837843e-20,-5.854691731421724e-18,0.0009157509193755686,-3.3881317890172014e-21,0.0012210012646391988,-3.242682004467102e-18,8.50412807237192e-19,-0.000666000647470355,1.0842021724855044e-18,3.5133459957484745e-19,1.0164395367051604e-19,-5.722874400354381e-19,-3.3881317890172014e-21,5.550005516852252e-05,3.0,3.0,14.0,0.16587302088737488,-0.08452381193637848,-0.08452381193637848,-0.02559523843228817,0.011904762126505375,0.01785714365541935,0.004761904943734407,0.011904762126505375,0.004761904943734407,0.0009920635493472219,-0.08452381193637848,0.20357142388820648,0.01785714365541935,0.004761904943734407,-0.0714285746216774,-0.01785714365541935,-0.004761904943734407,-1.3704315460216776e-16,-7.37257477290143e-18,2.5304803242395578e-18,-0.08452381193637848,0.01785714365541935,0.20357142388820648,0.004761904943734407,-1.5683062510852647e-16,-0.01785714365541935,-9.540979117872439e-18,-0.0714285746216774,-0.004761904943734407,2.2379177085178214e-18,-0.02559523843228817,0.004761904943734407,0.004761904943734407,0.008402015082538128,6.071532165918825e-18,7.806255641895632e-18,-0.0007326007471419871,1.214306433183765e-17,-0.0007326007471419871,-0.0004960317746736109,0.011904762126505375,-0.0714285746216774,-1.5683062510852647e-16,6.071532165918825e-18,0.0357142873108387,1.270747199765912e-17,2.3310346708438345e-18,5.708520976249723e-17,4.133520782600986e-18,-9.75781955236954e-19,0.01785714365541935,-0.01785714365541935,-0.01785714365541935,7.806255641895632e-18,1.270747199765912e-17,0.01785714365541935,5.421010862427522e-20,-1.1275702593849246e-17,-2.4936649967166602e-18,-3.754504040989774e-19,0.004761904943734407,-0.004761904943734407,-9.540979117872439e-18,-0.0007326007471419871,2.3310346708438345e-18,5.421010862427522e-20,0.0007326007471419871,3.903127820947816e-18,2.168404344971009e-19,-2.710505431213761e-20,0.011904762126505375,-1.3704315460216776e-16,-0.0714285746216774,1.214306433183765e-17,5.708520976249723e-17,-1.1275702593849246e-17,3.903127820947816e-18,0.0357142873108387,-5.637851296924623e-18,-8.401578872918541e-19,0.004761904943734407,-7.37257477290143e-18,-0.004761904943734407,-0.0007326007471419871,4.133520782600986e-18,-2.4936649967166602e-18,2.168404344971009e-19,-5.637851296924623e-18,0.0007326007471419871,-2.202285662861181e-20,0.0009920635493472219,2.5304803242395578e-18,2.2379177085178214e-18,-0.0004960317746736109,-9.75781955236954e-19,-3.754504040989774e-19,-2.710505431213761e-20,-8.401578872918541e-19,-2.202285662861181e-20,3.815628951997496e-05,3.0,3.0,15.0,0.15626361966133118,-0.07916666567325592,-0.07916666567325592,-0.022549020126461983,0.011111111380159855,0.01666666753590107,0.004166666883975267,0.011111111380159855,0.004166666883975267,0.0008169934735633433,-0.07916666567325592,0.19027778506278992,0.01666666753590107,0.004166666883975267,-0.06666667014360428,-0.01666666753590107,-0.004166666883975267,-1.5265566588595902e-16,-3.0357660829594124e-18,8.058496925068165e-18,-0.07916666567325592,0.01666666753590107,0.19027778506278992,0.004166666883975267,-1.142489685959625e-16,-0.01666666753590107,-8.239936510889834e-18,-0.06666667014360428,-0.004166666883975267,7.94369914529683e-18,-0.022549020126461983,0.004166666883975267,0.004166666883975267,0.0068663363344967365,3.707971429900425e-17,2.1250362580715887e-17,-0.0005952381179668009,3.0574501264091225e-17,-0.0005952381179668009,-0.0003770739131141454,0.011111111380159855,-0.06666667014360428,-1.142489685959625e-16,3.707971429900425e-17,0.03333333507180214,7.679058424742128e-18,-2.3852447794681098e-18,4.581309382378402e-17,1.4772254600114998e-18,-2.4665599424045226e-18,0.01666666753590107,-0.01666666753590107,-0.01666666753590107,2.1250362580715887e-17,7.679058424742128e-18,0.01666666753590107,-5.55653613398821e-19,2.2985086056692694e-17,-1.0977546996415732e-18,-1.35336281470235e-18,0.004166666883975267,-0.004166666883975267,-8.239936510889834e-18,-0.0005952381179668009,-2.3852447794681098e-18,-5.55653613398821e-19,0.0005952381179668009,3.848917712323541e-18,1.1858461261560205e-19,-1.8550021544869177e-19,0.011111111380159855,-1.5265566588595902e-16,-0.06666667014360428,3.0574501264091225e-17,4.581309382378402e-17,2.2985086056692694e-17,3.848917712323541e-18,0.03333333507180214,1.734723475976807e-18,-2.42783134612479e-18,0.004166666883975267,-3.0357660829594124e-18,-0.004166666883975267,-0.0005952381179668009,1.4772254600114998e-18,-1.0977546996415732e-18,1.1858461261560205e-19,1.734723475976807e-18,0.0005952381179668009,-1.8041801776516597e-19,0.0008169934735633433,8.058496925068165e-18,7.94369914529683e-18,-0.0003770739131141454,-2.4665599424045226e-18,-1.35336281470235e-18,-1.8550021544869177e-19,-2.42783134612479e-18,-1.8041801776516597e-19,2.6933850676869042e-05,3.0,3.0,16.0,0.14770561456680298,-0.07444852590560913,-0.07444852590560913,-0.020016340538859367,0.010416666977107525,0.015625,0.0036764706019312143,0.010416666977107525,0.0036764706019312143,0.0006808278849348426,-0.07444852590560913,0.17861519753932953,0.015625,0.0036764706019312143,-0.0625,-0.015625,-0.0036764706019312143,7.806255641895632e-18,3.7947076036992655e-19,1.7674579079476743e-18,-0.07444852590560913,0.015625,0.17861519753932953,0.0036764706019312143,9.086275453610202e-18,-0.015625,1.951563910473908e-18,-0.0625,-0.0036764706019312143,1.8888696171018295e-18,-0.020016340538859367,0.0036764706019312143,0.0036764706019312143,0.00568394036963582,6.288372600415926e-18,3.903127820947816e-18,-0.0004901961074210703,4.7704895589362195e-18,-0.0004901961074210703,-0.0002917833917308599,0.010416666977107525,-0.0625,9.086275453610202e-18,6.288372600415926e-18,0.03125,5.065807099688064e-18,2.927345865710862e-18,-6.356521529542332e-18,-3.5236570605778894e-19,-5.421010862427522e-19,0.015625,-0.015625,-0.015625,3.903127820947816e-18,5.065807099688064e-18,0.015625,-1.4907779871675686e-19,8.456776945386935e-18,4.2012834183813297e-19,-2.7565669836237764e-19,0.0036764706019312143,-0.0036764706019312143,1.951563910473908e-18,-0.0004901961074210703,2.927345865710862e-18,-1.4907779871675686e-19,0.0004901961074210703,-7.589415207398531e-19,-2.710505431213761e-20,-4.1504614415460717e-20,0.010416666977107525,7.806255641895632e-18,-0.0625,4.7704895589362195e-18,-6.356521529542332e-18,8.456776945386935e-18,-7.589415207398531e-19,0.03125,5.854691731421724e-18,-6.34862619399309e-19,0.0036764706019312143,3.7947076036992655e-19,-0.0036764706019312143,-0.0004901961074210703,-3.5236570605778894e-19,4.2012834183813297e-19,-2.710505431213761e-20,5.854691731421724e-18,0.0004901961074210703,-3.8963515573697816e-20,0.0006808278849348426,1.7674579079476743e-18,1.8888696171018295e-18,-0.0002917833917308599,-5.421010862427522e-19,-2.7565669836237764e-19,-4.1504614415460717e-20,-6.34862619399309e-19,-3.8963515573697816e-20,1.9452225387794897e-05,3.0,4.0,3.0,0.42916667461395264,-0.26249998807907104,-0.21666666865348816,-0.26249998807907104,0.0416666679084301,0.05000000074505806,0.0625,0.02777777798473835,0.05000000074505806,0.0416666679084301,-0.26249998807907104,0.6791666746139526,0.05000000074505806,0.0625,-0.25,-0.05000000074505806,-0.0625,1.2663481374630692e-16,6.661338412448735e-17,2.7755575615628914e-16,-0.21666666865348816,0.05000000074505806,0.33888888359069824,0.05000000074505806,2.8680760587157224e-16,-0.03333333507180214,-1.273681630704947e-31,-0.0833333358168602,-0.03333333507180214,-3.18420425308652e-31,-0.26249998807907104,0.0625,0.05000000074505806,0.6791666746139526,3.8302694878963493e-16,-1.5777218339519106e-31,-0.0625,-1.7467634464236044e-31,-0.05000000074505806,-0.25,0.0416666679084301,-0.25,2.8680760587157224e-16,3.8302694878963493e-16,0.125,-5.921189773481597e-17,-5.551115123125783e-17,-6.476300756398583e-17,-3.3306692062243676e-17,-1.3877787807814457e-16,0.05000000074505806,-0.05000000074505806,-0.03333333507180214,-1.5777218339519106e-31,-5.921189773481597e-17,0.03333333507180214,2.6295364878777136e-32,2.3024512379819115e-18,0.0,6.57384107275749e-32,0.0625,-0.0625,-1.273681630704947e-31,-0.0625,-5.551115123125783e-17,2.6295364878777136e-32,0.0625,2.8760552856604096e-32,1.4791142560641147e-32,6.162975822039155e-32,0.02777777798473835,1.2663481374630692e-16,-0.0833333358168602,-1.7467634464236044e-31,-6.476300756398583e-17,2.3024512379819115e-18,2.8760552856604096e-32,0.02777777798473835,1.4086801957662779e-33,7.190138654961406e-32,0.05000000074505806,6.661338412448735e-17,-0.03333333507180214,-0.05000000074505806,-3.3306692062243676e-17,0.0,1.4791142560641147e-32,1.4086801957662779e-33,0.03333333507180214,3.697785493223493e-32,0.0416666679084301,2.7755575615628914e-16,-3.18420425308652e-31,-0.25,-1.3877787807814457e-16,6.57384107275749e-32,6.162975822039155e-32,7.190138654961406e-32,3.697785493223493e-32,0.125,3.0,4.0,4.0,0.3591666519641876,-0.20624999701976776,-0.17000000178813934,-0.17000000178813934,0.03125,0.03750000149011612,0.03750000149011612,0.02083333395421505,0.029999999329447746,0.02083333395421505,-0.20624999701976776,0.518750011920929,0.03750000149011612,0.03750000149011612,-0.1875,-0.03750000149011612,-0.03750000149011612,9.367506770274758e-17,3.946495907847236e-17,9.367506770274758e-17,-0.17000000178813934,0.03750000149011612,0.2591666579246521,0.029999999329447746,2.0899949020903723e-16,-0.02500000037252903,-2.6308063156501894e-32,-0.0625,-0.019999999552965164,-2.6020852139652106e-18,-0.17000000178813934,0.03750000149011612,0.029999999329447746,0.2591666579246521,2.0899949020903723e-16,-4.495824856923446e-19,-0.02500000037252903,-8.737046623230367e-19,-0.019999999552965164,-0.0625,0.03125,-0.1875,2.0899949020903723e-16,2.0899949020903723e-16,0.09375,-3.3306692062243676e-17,-3.3306692062243676e-17,-4.85722573273506e-17,-1.9984015237346206e-17,-4.85722573273506e-17,0.03750000149011612,-0.03750000149011612,-0.02500000037252903,-4.495824856923446e-19,-3.3306692062243676e-17,0.02500000037252903,2.3409385818661144e-20,4.2579576980504004e-19,1.566643115541811e-19,5.852346777782713e-20,0.03750000149011612,-0.03750000149011612,-2.6308063156501894e-32,-0.02500000037252903,-3.3306692062243676e-17,2.3409385818661144e-20,0.02500000037252903,-4.0747307946448545e-20,2.168404344971009e-19,0.0,0.02083333395421505,9.367506770274758e-17,-0.0625,-8.737046623230367e-19,-4.85722573273506e-17,4.2579576980504004e-19,-4.0747307946448545e-20,0.02083333395421505,8.314811245576909e-19,-1.0186826825053423e-19,0.029999999329447746,3.946495907847236e-17,-0.019999999552965164,-0.019999999552965164,-1.9984015237346206e-17,1.566643115541811e-19,2.168404344971009e-19,8.314811245576909e-19,0.013333333656191826,8.673617379884035e-19,0.02083333395421505,9.367506770274758e-17,-2.6020852139652106e-18,-0.0625,-4.85722573273506e-17,5.852346777782713e-20,0.0,-1.0186826825053423e-19,8.673617379884035e-19,0.02083333395421505,3.0,4.0,5.0,0.3088095188140869,-0.17000000178813934,-0.14000000059604645,-0.1192857176065445,0.02500000037252903,0.029999999329447746,0.02500000037252903,0.01666666753590107,0.019999999552965164,0.011904762126505375,-0.17000000178813934,0.41999998688697815,0.029999999329447746,0.02500000037252903,-0.15000000596046448,-0.029999999329447746,-0.02500000037252903,-3.885780520013599e-17,-1.5395670849294163e-17,-2.42861286636753e-17,-0.14000000059604645,0.029999999329447746,0.20999999344348907,0.019999999552965164,-7.160938297074023e-17,-0.019999999552965164,-1.951563910473908e-18,-0.05000000074505806,-0.013333333656191826,-4.336808689942018e-18,-0.1192857176065445,0.02500000037252903,0.019999999552965164,0.13107143342494965,-5.75729948609973e-17,-0.0,-0.012500000186264515,-1.4914401959532495e-32,-0.009999999776482582,-0.02380952425301075,0.02500000037252903,-0.15000000596046448,-7.160938297074023e-17,-5.75729948609973e-17,0.07500000298023224,0.0,6.943723190478987e-34,1.9428902600067994e-17,6.661337998858429e-18,1.189524681058105e-17,0.029999999329447746,-0.029999999329447746,-0.019999999552965164,-0.0,0.0,0.019999999552965164,0.0,0.0,0.0,0.0,0.02500000037252903,-0.02500000037252903,-1.951563910473908e-18,-0.012500000186264515,6.943723190478987e-34,0.0,0.012500000186264515,0.0,9.75781955236954e-19,-4.336808689942018e-19,0.01666666753590107,-3.885780520013599e-17,-0.05000000074505806,-1.4914401959532495e-32,1.9428902600067994e-17,0.0,0.0,0.01666666753590107,1.725633237517803e-33,3.0814879110195774e-33,0.019999999552965164,-1.5395670849294163e-17,-0.013333333656191826,-0.009999999776482582,6.661337998858429e-18,0.0,9.75781955236954e-19,1.725633237517803e-33,0.006666666828095913,2.3852447794681098e-18,0.011904762126505375,-2.42861286636753e-17,-4.336808689942018e-18,-0.02380952425301075,1.189524681058105e-17,0.0,-4.336808689942018e-19,3.0814879110195774e-33,2.3852447794681098e-18,0.0059523810632526875,3.0,4.0,6.0,0.2708333432674408,-0.14464285969734192,-0.1190476194024086,-0.08839285373687744,0.02083333395421505,0.02500000037252903,0.01785714365541935,0.013888888992369175,0.014285714365541935,0.0074404762126505375,-0.14464285969734192,0.3529762029647827,0.02500000037252903,0.01785714365541935,-0.125,-0.02500000037252903,-0.01785714365541935,6.476300756398583e-17,1.7997756063259374e-17,2.688821387764051e-17,-0.1190476194024086,0.02500000037252903,0.1765872985124588,0.014285714365541935,1.5054095548891006e-16,-0.01666666753590107,-8.673617379884035e-19,-0.0416666679084301,-0.009523809887468815,-2.168404344971009e-18,-0.08839285373687744,0.01785714365541935,0.014285714365541935,0.07627975940704346,9.511240982234423e-17,-4.5054288703599094e-32,-0.0071428571827709675,-4.9278127902219525e-32,-0.0057142856530845165,-0.01116071455180645,0.02083333395421505,-0.125,1.5054095548891006e-16,9.511240982234423e-17,0.0625,-2.9605948867407985e-17,-1.2688263209474413e-17,-3.2381503781992916e-17,-9.516197613900963e-18,-1.3629970286557858e-17,0.02500000037252903,-0.02500000037252903,-0.01666666753590107,-4.5054288703599094e-32,-2.9605948867407985e-17,0.01666666753590107,6.01036873731159e-33,1.5338962601058673e-32,4.507776552983692e-33,6.456451211033386e-33,0.01785714365541935,-0.01785714365541935,-8.673617379884035e-19,-0.0071428571827709675,-1.2688263209474413e-17,6.01036873731159e-33,0.0071428571827709675,6.573841219694284e-33,3.2526065174565133e-19,2.168404344971009e-19,0.013888888992369175,6.476300756398583e-17,-0.0416666679084301,-4.9278127902219525e-32,-3.2381503781992916e-17,1.5338962601058673e-32,6.573841219694284e-33,0.013888888992369175,4.930380731099721e-33,7.061743374314521e-33,0.014285714365541935,1.7997756063259374e-17,-0.009523809887468815,-0.0057142856530845165,-9.516197613900963e-18,4.507776552983692e-33,3.2526065174565133e-19,4.930380731099721e-33,0.003809523768723011,9.75781955236954e-19,0.0074404762126505375,2.688821387764051e-17,-2.168404344971009e-18,-0.01116071455180645,-1.3629970286557858e-17,6.456451211033386e-33,2.168404344971009e-19,7.061743374314521e-33,9.75781955236954e-19,0.0022321429569274187,3.0,4.0,7.0,0.24117062985897064,-0.12589286267757416,-0.10357142984867096,-0.06815475970506668,0.01785714365541935,0.02142857201397419,0.013392857275903225,0.011904762126505375,0.010714286006987095,0.004960317630320787,-0.12589286267757416,0.30446428060531616,0.02142857201397419,0.013392857275903225,-0.1071428582072258,-0.02142857201397419,-0.013392857275903225,-5.4643789493269423e-17,-1.8214596497756474e-17,-3.4640259410911867e-17,-0.10357142984867096,0.02142857201397419,0.15238095819950104,0.010714286006987095,-1.1709383462843448e-17,-0.014285714365541935,-2.1575623232461538e-17,-0.0357142873108387,-0.0071428571827709675,-1.691355389077387e-17,-0.06815475970506668,0.013392857275903225,0.010714286006987095,0.04851190373301506,-7.45931094670027e-17,-2.688821387764051e-17,-0.004464285913854837,-5.160802341031001e-17,-0.0035714285913854837,-0.0059523810632526875,0.01785714365541935,-0.1071428582072258,-1.1709383462843448e-17,-7.45931094670027e-17,0.0535714291036129,-2.4813901327347408e-17,2.8840274510072256e-18,7.234254458050925e-18,4.723444075187572e-18,1.1031757105040008e-17,0.02142857201397419,-0.02142857201397419,-0.014285714365541935,-2.688821387764051e-17,-2.4813901327347408e-17,0.014285714365541935,-2.168404344971009e-19,8.673617379884035e-18,1.5178830414797062e-18,3.980642088969548e-18,0.013392857275903225,-0.013392857275903225,-2.1575623232461538e-17,-0.004464285913854837,2.8840274510072256e-18,-2.168404344971009e-19,0.004464285913854837,5.637851296924623e-18,1.4094628242311558e-18,1.5984897242214674e-18,0.011904762126505375,-5.4643789493269423e-17,-0.0357142873108387,-5.160802341031001e-17,7.234254458050925e-18,8.673617379884035e-18,5.637851296924623e-18,0.011904762126505375,1.452830911130576e-17,2.9431607318422633e-18,0.010714286006987095,-1.8214596497756474e-17,-0.0071428571827709675,-0.0035714285913854837,4.723444075187572e-18,1.5178830414797062e-18,1.4094628242311558e-18,1.452830911130576e-17,0.0023809524718672037,1.0567024496236025e-18,0.004960317630320787,-3.4640259410911867e-17,-1.691355389077387e-17,-0.0059523810632526875,1.1031757105040008e-17,3.980642088969548e-18,1.5984897242214674e-18,2.9431607318422633e-18,1.0567024496236025e-18,0.0009920635493472219,3.0,4.0,8.0,0.21736110746860504,-0.11145833134651184,-0.09166666865348816,-0.05416666716337204,0.015625,0.01875000074505806,0.010416666977107525,0.010416666977107525,0.008333333767950535,0.0034722222480922937,-0.11145833134651184,0.26770833134651184,0.01875000074505806,0.010416666977107525,-0.09375,-0.01875000074505806,-0.010416666977107525,-3.382710778154774e-17,-3.903127820947816e-17,-5.5294310796760726e-18,-0.09166666865348816,0.01875000074505806,0.13402777910232544,0.008333333767950535,-1.4647571350279165e-16,-0.012500000186264515,-3.144186300207963e-18,-0.03125,-0.0055555556900799274,1.862117231243854e-17,-0.05416666716337204,0.010416666977107525,0.008333333767950535,0.03283730149269104,-7.41594285980085e-17,1.8214596497756474e-17,-0.0029761905316263437,3.859759734048396e-17,-0.0023809524718672037,-0.0034722222480922937,0.015625,-0.09375,-1.4647571350279165e-16,-7.41594285980085e-17,0.046875,-6.350722993448335e-18,1.937257987215926e-17,2.663673442781214e-17,1.591006138501639e-17,3.903127820947816e-18,0.01875000074505806,-0.01875000074505806,-0.012500000186264515,1.8214596497756474e-17,-6.350722993448335e-18,0.012500000186264515,-2.8189256484623115e-18,-1.3444106938820255e-17,3.2526065174565133e-19,-2.1019742971574878e-18,0.010416666977107525,-0.010416666977107525,-3.144186300207963e-18,-0.0029761905316263437,1.937257987215926e-17,-2.8189256484623115e-18,0.0029761905316263437,-3.2526065174565133e-19,1.463672932855431e-18,2.4103003904150707e-19,0.010416666977107525,-3.382710778154774e-17,-0.03125,3.859759734048396e-17,2.663673442781214e-17,-1.3444106938820255e-17,-3.2526065174565133e-19,0.010416666977107525,-3.144186300207963e-18,-4.484284239812259e-18,0.008333333767950535,-3.903127820947816e-17,-0.0055555556900799274,-0.0023809524718672037,1.591006138501639e-17,3.2526065174565133e-19,1.463672932855431e-18,-3.144186300207963e-18,0.0015873016091063619,-6.08280911920976e-19,0.0034722222480922937,-5.5294310796760726e-18,1.862117231243854e-17,-0.0034722222480922937,3.903127820947816e-18,-2.1019742971574878e-18,2.4103003904150707e-19,-4.484284239812259e-18,-6.08280911920976e-19,0.0004960317746736109,3.0,4.0,9.0,0.1978282779455185,-0.10000000149011612,-0.08222222328186035,-0.04409090802073479,0.013888888992369175,0.01666666753590107,0.008333333767950535,0.009259259328246117,0.006666666828095913,0.0025252525229007006,-0.10000000149011612,0.23888888955116272,0.01666666753590107,0.008333333767950535,-0.0833333358168602,-0.01666666753590107,-0.008333333767950535,-1.734723475976807e-18,-8.239936510889834e-18,-2.303929616531697e-18,-0.08222222328186035,0.01666666753590107,0.1196296289563179,0.006666666828095913,-1.0191500421363742e-17,-0.011111111380159855,-4.119968255444917e-18,-0.02777777798473835,-0.004444444552063942,-5.9631119486702744e-18,-0.04409090802073479,0.008333333767950535,0.006666666828095913,0.023288238793611526,-3.0357660829594124e-18,-1.3444106938820255e-17,-0.0020833334419876337,-1.1275702593849246e-17,-0.0016666667070239782,-0.0021645021624863148,0.013888888992369175,-0.0833333358168602,-1.0191500421363742e-17,-3.0357660829594124e-18,0.0416666679084301,1.0705507145281743e-17,5.834621021038737e-18,-9.391876917327612e-19,3.0799946031320103e-19,-2.574980159653073e-19,0.01666666753590107,-0.01666666753590107,-0.011111111380159855,-1.3444106938820255e-17,1.0705507145281743e-17,0.011111111380159855,2.6020852139652106e-18,1.3010426069826053e-18,3.3610267347050637e-18,8.588830333121584e-19,0.008333333767950535,-0.008333333767950535,-4.119968255444917e-18,-0.0020833334419876337,5.834621021038737e-18,2.6020852139652106e-18,0.0020833334419876337,-2.168404344971009e-19,3.7947076036992655e-19,2.8296470982731293e-19,0.009259259328246117,-1.734723475976807e-18,-0.02777777798473835,-1.1275702593849246e-17,-9.391876917327612e-19,1.3010426069826053e-18,-2.168404344971009e-19,0.009259259328246117,3.7947076036992655e-18,9.206032181153792e-19,0.006666666828095913,-8.239936510889834e-18,-0.004444444552063942,-0.0016666667070239782,3.0799946031320103e-19,3.3610267347050637e-18,3.7947076036992655e-19,3.7947076036992655e-18,0.0011111111380159855,4.590098114348232e-19,0.0025252525229007006,-2.303929616531697e-18,-5.9631119486702744e-18,-0.0021645021624863148,-2.574980159653073e-19,8.588830333121584e-19,2.8296470982731293e-19,9.206032181153792e-19,4.590098114348232e-19,0.00027056277031078935,3.0,4.0,10.0,0.1815151572227478,-0.09068182110786438,-0.07454545795917511,-0.03659090772271156,0.012500000186264515,0.014999999664723873,0.006818181835114956,0.008333333767950535,0.005454545374959707,0.0018939394503831863,-0.09068182110786438,0.21568182110786438,0.014999999664723873,0.006818181835114956,-0.07500000298023224,-0.014999999664723873,-0.006818181835114956,3.8163916471489756e-17,0.0,-1.3597922828085716e-17,-0.07454545795917511,0.014999999664723873,0.108030304312706,0.005454545374959707,8.500145032286355e-17,-0.009999999776482582,3.0357660829594124e-18,-0.02500000037252903,-0.003636363660916686,-1.5395670849294163e-17,-0.03659090772271156,0.006818181835114956,0.005454545374959707,0.017127525061368942,-2.5153490401663703e-17,-2.688821387764051e-17,-0.0015151514671742916,-3.122502256758253e-17,-0.001212121220305562,-0.0014204545877873898,0.012500000186264515,-0.07500000298023224,8.500145032286355e-17,-2.5153490401663703e-17,0.03750000149011612,-2.6712714275797584e-17,-5.7462715141731735e-18,-1.7697871658345624e-17,-3.5212135173496195e-19,3.469446951953614e-18,0.014999999664723873,-0.014999999664723873,-0.009999999776482582,-2.688821387764051e-17,-2.6712714275797584e-17,0.009999999776482582,1.3010426069826053e-18,5.5294310796760726e-18,1.0842021724855044e-18,2.5082699044070496e-18,0.006818181835114956,-0.006818181835114956,3.0357660829594124e-18,-0.0015151514671742916,-5.7462715141731735e-18,1.3010426069826053e-18,0.0015151514671742916,-1.463672932855431e-18,0.0,4.9932592240641005e-19,0.008333333767950535,3.8163916471489756e-17,-0.02500000037252903,-3.122502256758253e-17,-1.7697871658345624e-17,5.5294310796760726e-18,-1.463672932855431e-18,0.008333333767950535,3.2526065174565133e-18,3.1893071414663523e-18,0.005454545374959707,0.0,-0.003636363660916686,-0.001212121220305562,-3.5212135173496195e-19,1.0842021724855044e-18,0.0,3.2526065174565133e-18,0.000808080832939595,5.149120213996522e-19,0.0018939394503831863,-1.3597922828085716e-17,-1.5395670849294163e-17,-0.0014204545877873898,3.469446951953614e-18,2.5082699044070496e-18,4.9932592240641005e-19,3.1893071414663523e-18,5.149120213996522e-19,0.00015782828268129379,3.0,4.0,11.0,0.16768647730350494,-0.08295454829931259,-0.06818182021379471,-0.030856642872095108,0.011363636702299118,0.013636363670229912,0.005681818351149559,0.007575757801532745,0.004545454401522875,0.0014568764017894864,-0.08295454829931259,0.19659091532230377,0.013636363670229912,0.005681818351149559,-0.06818182021379471,-0.013636363670229912,-0.005681818351149559,-7.19910242530375e-17,3.0357660829594124e-18,6.358688742747221e-18,-0.06818182021379471,0.013636363670229912,0.09848485141992569,0.004545454401522875,-7.112366251504909e-17,-0.00909090880304575,-8.239936510889834e-18,-0.022727273404598236,-0.0030303029343485832,-2.3174821436877657e-18,-0.030856642872095108,0.005681818351149559,0.004545454401522875,0.012970085255801678,2.5153490401663703e-17,3.469446951953614e-18,-0.0011363636003807187,-1.7564075194265172e-17,-0.0009090909152291715,-0.0009712509927339852,0.011363636702299118,-0.06818182021379471,-7.112366251504909e-17,2.5153490401663703e-17,0.034090910106897354,8.325329674246133e-18,9.215718466126788e-19,2.2638270732545136e-17,-7.304770467897729e-19,-2.222614453595284e-18,0.013636363670229912,-0.013636363670229912,-0.00909090880304575,3.469446951953614e-18,8.325329674246133e-18,0.00909090880304575,8.673617379884035e-19,2.4936649967166602e-18,-6.505213034913027e-19,-2.8969524582710964e-19,0.005681818351149559,-0.005681818351149559,-8.239936510889834e-18,-0.0011363636003807187,9.215718466126788e-19,8.673617379884035e-19,0.0011363636003807187,3.0357660829594124e-18,-2.168404344971009e-19,-2.236166980751353e-19,0.007575757801532745,-7.19910242530375e-17,-0.022727273404598236,-1.7564075194265172e-17,2.2638270732545136e-17,2.4936649967166602e-18,3.0357660829594124e-18,0.007575757801532745,3.3610267347050637e-18,8.947232182904326e-19,0.004545454401522875,3.0357660829594124e-18,-0.0030303029343485832,-0.0009090909152291715,-7.304770467897729e-19,-6.505213034913027e-19,-2.168404344971009e-19,3.3610267347050637e-18,0.000606060610152781,7.337630831654509e-21,0.0014568764017894864,6.358688742747221e-18,-2.3174821436877657e-18,-0.0009712509927339852,-2.222614453595284e-18,-2.8969524582710964e-19,-2.236166980751353e-19,8.947232182904326e-19,7.337630831654509e-21,9.712509927339852e-05,3.0,4.0,12.0,0.1558150202035904,-0.07644230872392654,-0.06282051652669907,-0.02637362666428089,0.010416666977107525,0.012500000186264515,0.004807692486792803,0.0069444444961845875,0.003846153849735856,0.0011446886928752065,-0.07644230872392654,0.18060897290706635,0.012500000186264515,0.004807692486792803,-0.0625,-0.012500000186264515,-0.004807692486792803,-2.862293735361732e-17,-1.713039432527097e-17,-1.0511429894061489e-17,-0.06282051652669907,0.012500000186264515,0.09049145132303238,0.003846153849735856,-3.469446951953614e-17,-0.008333333767950535,-4.336808689942018e-18,-0.02083333395421505,-0.0025641026441007853,-7.453889935837843e-19,-0.02637362666428089,0.004807692486792803,0.003846153849735856,0.01006077229976654,-4.445228907190568e-17,-1.1275702593849246e-17,-0.0008741258643567562,-2.168404344971009e-18,-0.0006993007264100015,-0.0006868132040835917,0.010416666977107525,-0.0625,-3.469446951953614e-17,-4.445228907190568e-17,0.03125,-2.3112399079131956e-17,-2.222614453595284e-18,9.337735878284485e-18,5.00097681917922e-18,3.415236843329339e-18,0.012500000186264515,-0.012500000186264515,-0.008333333767950535,-1.1275702593849246e-17,-2.3112399079131956e-17,0.008333333767950535,-2.168404344971009e-19,4.662069341687669e-18,1.7889335846010823e-18,7.603752315365606e-19,0.004807692486792803,-0.004807692486792803,-4.336808689942018e-18,-0.0008741258643567562,-2.222614453595284e-18,-2.168404344971009e-19,0.0008741258643567562,3.5236570605778894e-19,5.963111948670274e-19,3.4791878308470386e-19,0.0069444444961845875,-2.862293735361732e-17,-0.02083333395421505,-2.168404344971009e-18,9.337735878284485e-18,4.662069341687669e-18,3.5236570605778894e-19,0.0069444444961845875,2.4936649967166602e-18,-1.5646410799654912e-19,0.003846153849735856,-1.713039432527097e-17,-0.0025641026441007853,-0.0006993007264100015,5.00097681917922e-18,1.7889335846010823e-18,5.963111948670274e-19,2.4936649967166602e-18,0.0004662004648707807,8.018014188901937e-20,0.0011446886928752065,-1.0511429894061489e-17,-7.453889935837843e-19,-0.0006868132040835917,3.415236843329339e-18,7.603752315365606e-19,3.4791878308470386e-19,-1.5646410799654912e-19,8.018014188901937e-20,6.243756070034578e-05,3.0,4.0,13.0,0.14551281929016113,-0.07087912410497665,-0.05824175849556923,-0.02280219830572605,0.009615384973585606,0.011538461782038212,0.004120879340916872,0.006410256493836641,0.0032967033330351114,0.0009157509193755686,-0.07087912410497665,0.16703297197818756,0.011538461782038212,0.004120879340916872,-0.057692307978868484,-0.011538461782038212,-0.004120879340916872,-2.949029909160572e-17,-2.168404344971009e-19,1.9123804424054535e-19,-0.05824175849556923,0.011538461782038212,0.08369963616132736,0.0032967033330351114,-7.19910242530375e-17,-0.007692307699471712,8.023096076392733e-18,-0.01923076994717121,-0.002197802299633622,6.0308745844506184e-18,-0.02280219830572605,0.004120879340916872,0.0032967033330351114,0.00796287041157484,-3.0357660829594124e-18,9.540979117872439e-18,-0.0006868132040835917,2.7755575615628914e-17,-0.0005494505749084055,-0.0004995004856027663,0.009615384973585606,-0.057692307978868484,-7.19910242530375e-17,-3.0357660829594124e-18,0.028846153989434242,-9.794926874648669e-19,-4.0115480381963664e-18,1.996857177530984e-17,1.7688105550443517e-18,2.981555974335137e-19,0.011538461782038212,-0.011538461782038212,-0.007692307699471712,9.540979117872439e-18,-9.794926874648669e-19,0.007692307699471712,-1.951563910473908e-18,1.5178830414797062e-18,-8.673617379884035e-19,-4.699639574917098e-19,0.004120879340916872,-0.004120879340916872,8.023096076392733e-18,-0.0006868132040835917,-4.0115480381963664e-18,-1.951563910473908e-18,0.0006868132040835917,-1.5720931501039814e-18,-2.303929616531697e-19,-1.9269999550035333e-20,0.006410256493836641,-2.949029909160572e-17,-0.01923076994717121,2.7755575615628914e-17,1.996857177530984e-17,1.5178830414797062e-18,-1.5720931501039814e-18,0.006410256493836641,-4.526544070126981e-18,-1.4885407738033424e-18,0.0032967033330351114,-2.168404344971009e-19,-0.002197802299633622,-0.0005494505749084055,1.7688105550443517e-18,-8.673617379884035e-19,-2.303929616531697e-19,-4.526544070126981e-18,0.00036630037357099354,-1.4120770510089472e-19,0.0009157509193755686,1.9123804424054535e-19,6.0308745844506184e-18,-0.0004995004856027663,2.981555974335137e-19,-4.699639574917098e-19,-1.9269999550035333e-20,-1.4885407738033424e-18,-1.4120770510089472e-19,4.162504046689719e-05,3.0,4.0,14.0,0.13648809492588043,-0.06607142835855484,-0.05428571254014969,-0.019910713657736778,0.008928571827709675,0.010714286006987095,0.0035714285913854837,0.0059523810632526875,0.0028571428265422583,0.0007440476329065859,-0.06607142835855484,0.15535713732242584,0.010714286006987095,0.0035714285913854837,-0.0535714291036129,-0.010714286006987095,-0.0035714285913854837,-6.071532165918825e-18,7.860465750519907e-19,2.5842931793746544e-19,-0.05428571254014969,0.010714286006987095,0.07785714417695999,0.0028571428265422583,-7.513154118004817e-18,-0.0071428571827709675,1.0842021724855044e-18,-0.01785714365541935,-0.0019047618843615055,5.611595860499154e-19,-0.019910713657736778,0.0035714285913854837,0.0028571428265422583,0.006411401089280844,4.119968255444917e-18,4.119968255444917e-18,-0.0005494505749084055,4.87890977618477e-18,-0.00043956044828519225,-0.00037202381645329297,0.008928571827709675,-0.0535714291036129,-7.513154118004817e-18,4.119968255444917e-18,0.02678571455180645,-1.3275333142537998e-17,-2.4936649967166602e-18,7.103216641313338e-18,-2.0328790734103208e-20,-1.0842021724855044e-19,0.010714286006987095,-0.010714286006987095,-0.0071428571827709675,4.119968255444917e-18,-1.3275333142537998e-17,0.0071428571827709675,-9.75781955236954e-19,-5.041540102057596e-18,-8.944667923005412e-19,-7.926847899406083e-20,0.0035714285913854837,-0.0035714285913854837,1.0842021724855044e-18,-0.0005494505749084055,-2.4936649967166602e-18,-9.75781955236954e-19,0.0005494505749084055,-1.6263032587282567e-19,5.421010862427522e-20,1.1011428314305904e-20,0.0059523810632526875,-6.071532165918825e-18,-0.01785714365541935,4.87890977618477e-18,7.103216641313338e-18,-5.041540102057596e-18,-1.6263032587282567e-19,0.0059523810632526875,-9.75781955236954e-19,-2.1408999433687671e-19,0.0028571428265422583,7.860465750519907e-19,-0.0019047618843615055,-0.00043956044828519225,-2.0328790734103208e-20,-8.944667923005412e-19,5.421010862427522e-20,-9.75781955236954e-19,0.00029304029885679483,2.329340604949326e-20,0.0007440476329065859,2.5842931793746544e-19,5.611595860499154e-19,-0.00037202381645329297,-1.0842021724855044e-19,-7.926847899406083e-20,1.1011428314305904e-20,-2.1408999433687671e-19,2.329340604949326e-20,2.861721623048652e-05,3.0,4.0,15.0,0.12851715087890625,-0.06187500059604645,-0.050833333283662796,-0.017536764964461327,0.008333333767950535,0.009999999776482582,0.0031250000465661287,0.0055555556900799274,0.0024999999441206455,0.0006127451197244227,-0.06187500059604645,0.14520832896232605,0.009999999776482582,0.0031250000465661287,-0.05000000074505806,-0.009999999776482582,-0.0031250000465661287,-4.553649124439119e-18,3.144186300207963e-18,-2.5314307547633812e-18,-0.050833333283662796,0.009999999776482582,0.07277777791023254,0.0024999999441206455,3.7602032533717186e-17,-0.006666666828095913,-2.6020852139652106e-18,-0.01666666753590107,-0.0016666667070239782,-3.5121928542757873e-19,-0.017536764964461327,0.0031250000465661287,0.0024999999441206455,0.005239037796854973,-7.15573433840433e-18,-1.734723475976807e-18,-0.00044642857392318547,-3.2526065174565133e-19,-0.0003571428533177823,-0.00028280544211156666,0.008333333767950535,-0.05000000074505806,3.7602032533717186e-17,-7.15573433840433e-18,0.02500000037252903,-9.88332104926731e-18,-6.505213034913027e-19,-5.4594127223652965e-18,-1.2874900798265365e-18,7.318364664277155e-19,0.009999999776482582,-0.009999999776482582,-0.006666666828095913,-1.734723475976807e-18,-9.88332104926731e-18,0.006666666828095913,-2.710505431213761e-20,4.87890977618477e-18,-7.182839392716467e-19,1.9529941057530122e-19,0.0031250000465661287,-0.0031250000465661287,-2.6020852139652106e-18,-0.00044642857392318547,-6.505213034913027e-19,-2.710505431213761e-20,0.00044642857392318547,7.589415207398531e-19,3.049318610115481e-20,7.115076756936123e-20,0.0055555556900799274,-4.553649124439119e-18,-0.01666666753590107,-3.2526065174565133e-19,-5.4594127223652965e-18,4.87890977618477e-18,7.589415207398531e-19,0.0055555556900799274,-1.1926223897340549e-18,6.899361624114218e-20,0.0024999999441206455,3.144186300207963e-18,-0.0016666667070239782,-0.0003571428533177823,-1.2874900798265365e-18,-7.182839392716467e-19,3.049318610115481e-20,-1.1926223897340549e-18,0.0002380952355451882,-8.046812998915853e-21,0.0006127451197244227,-2.5314307547633812e-18,-3.5121928542757873e-19,-0.00028280544211156666,7.318364664277155e-19,1.9529941057530122e-19,7.115076756936123e-20,6.899361624114218e-20,-8.046812998915853e-21,2.0200388462399133e-05,3.0,4.0,16.0,0.12142565101385117,-0.05818014591932297,-0.04779411852359772,-0.015563725493848324,0.0078125,0.00937500037252903,0.0027573530096560717,0.0052083334885537624,0.002205882454290986,0.0005106209428049624,-0.05818014591932297,0.13630515336990356,0.00937500037252903,0.0027573530096560717,-0.046875,-0.00937500037252903,-0.0027573530096560717,1.214306433183765e-17,-6.69494841509799e-18,-2.1416721423199795e-18,-0.04779411852359772,0.00937500037252903,0.06832107901573181,0.002205882454290986,-8.423767475862393e-18,-0.0062500000931322575,0.0,-0.015625,-0.00147058826405555,-3.0382238433544606e-18,-0.015563725493848324,0.0027573530096560717,0.002205882454290986,0.004336484707891941,-1.951563910473908e-17,-6.071532165918825e-18,-0.0003676470660138875,-4.9873299934333204e-18,-0.00029411763534881175,-0.0002188375365221873,0.0078125,-0.046875,-8.423767475862393e-18,-1.951563910473908e-17,0.0234375,-1.552307651596203e-17,2.7647155398380363e-18,1.2543553958367702e-18,2.6291902682773483e-18,6.776263578034403e-19,0.00937500037252903,-0.00937500037252903,-0.0062500000931322575,-6.071532165918825e-18,-1.552307651596203e-17,0.0062500000931322575,4.404571325722362e-19,-7.535205098774256e-18,2.642742795433417e-19,3.3995212905702323e-19,0.0027573530096560717,-0.0027573530096560717,0.0,-0.0003676470660138875,2.7647155398380363e-18,4.404571325722362e-19,0.0003676470660138875,-3.3881317890172014e-19,9.656175598699024e-20,2.414043899674756e-20,0.0052083334885537624,1.214306433183765e-17,-0.015625,-4.9873299934333204e-18,1.2543553958367702e-18,-7.535205098774256e-18,-3.3881317890172014e-19,0.0052083334885537624,-2.7647155398380363e-18,6.304660510460131e-19,0.002205882454290986,-6.69494841509799e-18,-0.00147058826405555,-0.00029411763534881175,2.6291902682773483e-18,2.642742795433417e-19,9.656175598699024e-20,-2.7647155398380363e-18,0.0001960784284165129,8.851494298807439e-20,0.0005106209428049624,-2.1416721423199795e-18,-3.0382238433544606e-18,-0.0002188375365221873,6.776263578034403e-19,3.3995212905702323e-19,2.414043899674756e-20,6.304660510460131e-19,8.851494298807439e-20,1.4589169040846173e-05,3.0,5.0,3.0,0.37063491344451904,-0.21666666865348816,-0.15238095819950104,-0.21666666865348816,0.03333333507180214,0.03333333507180214,0.05000000074505806,0.01587301678955555,0.03333333507180214,0.03333333507180214,-0.21666666865348816,0.550000011920929,0.03333333507180214,0.05000000074505806,-0.20000000298023224,-0.03333333507180214,-0.05000000074505806,-1.2836953722228372e-16,5.204170427930421e-17,5.174148403906177e-16,-0.15238095819950104,0.03333333507180214,0.17142857611179352,0.03333333507180214,-1.249000902703301e-16,-0.01666666753590107,-4.163336342344337e-17,-0.0317460335791111,-0.01666666753590107,-8.828279474916138e-18,-0.21666666865348816,0.05000000074505806,0.03333333507180214,0.550000011920929,6.134317953738458e-16,8.900457435370167e-17,-0.05000000074505806,-2.168404344971009e-17,-0.03333333507180214,-0.20000000298023224,0.03333333507180214,-0.20000000298023224,-1.249000902703301e-16,6.134317953738458e-16,0.10000000149011612,-2.862293735361732e-17,-5.117434254131581e-17,4.575333167888829e-17,-2.6454533008646308e-17,-2.4321351999391277e-16,0.03333333507180214,-0.03333333507180214,-0.01666666753590107,8.900457435370167e-17,-2.862293735361732e-17,0.01666666753590107,-1.734723475976807e-17,8.673617379884035e-18,-8.673617379884035e-19,-3.252120466128577e-17,0.05000000074505806,-0.05000000074505806,-4.163336342344337e-17,-0.05000000074505806,-5.117434254131581e-17,-1.734723475976807e-17,0.05000000074505806,1.3444106938820255e-17,0.0,2.8620872710808385e-17,0.01587301678955555,-1.2836953722228372e-16,-0.0317460335791111,-2.168404344971009e-17,4.575333167888829e-17,8.673617379884035e-18,1.3444106938820255e-17,0.007936508394777775,1.734723475976807e-18,2.254334348544855e-18,0.03333333507180214,5.204170427930421e-17,-0.01666666753590107,-0.03333333507180214,-2.6454533008646308e-17,-8.673617379884035e-19,0.0,1.734723475976807e-18,0.01666666753590107,1.8216510593693922e-17,0.03333333507180214,5.174148403906177e-16,-8.828279474916138e-18,-0.20000000298023224,-2.4321351999391277e-16,-3.252120466128577e-17,2.8620872710808385e-17,2.254334348544855e-18,1.8216510593693922e-17,0.10000000149011612,3.0,5.0,4.0,0.3088095188140869,-0.17000000178813934,-0.1192857176065445,-0.14000000059604645,0.02500000037252903,0.02500000037252903,0.029999999329447746,0.011904762126505375,0.019999999552965164,0.01666666753590107,-0.17000000178813934,0.41999998688697815,0.02500000037252903,0.029999999329447746,-0.15000000596046448,-0.02500000037252903,-0.029999999329447746,-2.2551405187698492e-17,-1.2952602009105534e-17,-3.885780520013599e-17,-0.1192857176065445,0.02500000037252903,0.13107143342494965,0.019999999552965164,-5.75729948609973e-17,-0.012500000186264515,0.0,-0.02380952425301075,-0.009999999776482582,-1.4914401959532495e-32,-0.14000000059604645,0.029999999329447746,0.019999999552965164,0.20999999344348907,-7.160938297074023e-17,3.7007435050284215e-19,-0.019999999552965164,-4.551488942269436e-19,-0.013333333656191826,-0.05000000074505806,0.02500000037252903,-0.15000000596046448,-5.75729948609973e-17,-7.160938297074023e-17,0.07500000298023224,-9.552612597629087e-34,0.0,1.189524681058105e-17,6.661337998858429e-18,1.9428902600067994e-17,0.02500000037252903,-0.02500000037252903,-0.012500000186264515,3.7007435050284215e-19,-9.552612597629087e-34,0.012500000186264515,0.0,-3.7140874792725504e-19,-1.8503717525142107e-19,-0.0,0.029999999329447746,-0.029999999329447746,0.0,-0.019999999552965164,0.0,0.0,0.019999999552965164,0.0,0.0,-0.0,0.011904762126505375,-2.2551405187698492e-17,-0.02380952425301075,-4.551488942269436e-19,1.189524681058105e-17,-3.7140874792725504e-19,0.0,0.0059523810632526875,2.275744471134718e-19,3.0814879110195774e-33,0.019999999552965164,-1.2952602009105534e-17,-0.009999999776482582,-0.013333333656191826,6.661337998858429e-18,-1.8503717525142107e-19,0.0,2.275744471134718e-19,0.006666666828095913,1.725633237517803e-33,0.01666666753590107,-3.885780520013599e-17,-1.4914401959532495e-32,-0.05000000074505806,1.9428902600067994e-17,-0.0,-0.0,3.0814879110195774e-33,1.725633237517803e-33,0.01666666753590107,3.0,5.0,5.0,0.26476189494132996,-0.14000000059604645,-0.09809523820877075,-0.09809523820877075,0.019999999552965164,0.019999999552965164,0.019999999552965164,0.009523809887468815,0.013333333656191826,0.009523809887468815,-0.14000000059604645,0.3400000035762787,0.019999999552965164,0.019999999552965164,-0.11999999731779099,-0.019999999552965164,-0.019999999552965164,-1.9081958235744878e-17,-9.107298248878237e-18,-1.9081958235744878e-17,-0.09809523820877075,0.019999999552965164,0.10619047284126282,0.013333333656191826,-4.694657279972053e-17,-0.009999999776482582,-4.336808689942018e-19,-0.01904761977493763,-0.006666666828095913,-4.336808689942018e-19,-0.09809523820877075,0.019999999552965164,0.013333333656191826,0.10619047284126282,-4.694657279972053e-17,-3.138703766931158e-34,-0.009999999776482582,-1.738141696460606e-19,-0.006666666828095913,-0.01904761977493763,0.019999999552965164,-0.11999999731779099,-4.694657279972053e-17,-4.694657279972053e-17,0.05999999865889549,0.0,-2.1145995427590977e-34,9.516197613900963e-18,4.440891999238953e-18,9.516197613900963e-18,0.019999999552965164,-0.019999999552965164,-0.009999999776482582,-3.138703766931158e-34,0.0,0.009999999776482582,-1.3552527156068805e-20,2.168404344971009e-19,1.0842021724855044e-19,-3.550655654160252e-20,0.019999999552965164,-0.019999999552965164,-4.336808689942018e-19,-0.009999999776482582,-2.1145995427590977e-34,-1.3552527156068805e-20,0.009999999776482582,-2.710505431213761e-20,2.168404344971009e-19,2.168404344971009e-19,0.009523809887468815,-1.9081958235744878e-17,-0.01904761977493763,-1.738141696460606e-19,9.516197613900963e-18,2.168404344971009e-19,-2.710505431213761e-20,0.004761904943734407,2.168404344971009e-19,-5.421010862427522e-20,0.013333333656191826,-9.107298248878237e-18,-0.006666666828095913,-0.006666666828095913,4.440891999238953e-18,1.0842021724855044e-19,2.168404344971009e-19,2.168404344971009e-19,0.0033333334140479565,4.336808689942018e-19,0.009523809887468815,-1.9081958235744878e-17,-4.336808689942018e-19,-0.01904761977493763,9.516197613900963e-18,-3.550655654160252e-20,2.168404344971009e-19,-5.421010862427522e-20,4.336808689942018e-19,0.004761904943734407,3.0,5.0,6.0,0.23174603283405304,-0.1190476194024086,-0.0833333358168602,-0.07261905074119568,0.01666666753590107,0.01666666753590107,0.014285714365541935,0.007936508394777775,0.009523809887468815,0.0059523810632526875,-0.1190476194024086,0.2857142984867096,0.01666666753590107,0.014285714365541935,-0.10000000149011612,-0.01666666753590107,-0.014285714365541935,-1.5504091066542713e-17,-6.396792817664476e-18,-1.1275702593849246e-17,-0.0833333358168602,0.01666666753590107,0.0892857164144516,0.009523809887468815,-3.9650823253390577e-17,-0.008333333767950535,-2.168404344971009e-19,-0.01587301678955555,-0.004761904943734407,-6.505213034913027e-19,-0.07261905074119568,0.014285714365541935,0.009523809887468815,0.06178571283817291,-3.360407341862384e-17,-2.196486729207034e-34,-0.0057142856530845165,3.5088507861071316e-19,-0.003809523768723011,-0.008928571827709675,0.01666666753590107,-0.10000000149011612,-3.9650823253390577e-17,-3.360407341862384e-17,0.05000000074505806,-7.703719777548943e-34,1.0782503867890637e-33,7.930164816114238e-18,3.1720658023686032e-18,5.4519879491870205e-18,0.01666666753590107,-0.01666666753590107,-0.008333333767950535,-2.196486729207034e-34,-7.703719777548943e-34,0.008333333767950535,2.710505431213761e-20,-2.168404344971009e-19,-1.6263032587282567e-19,8.263432214297884e-20,0.014285714365541935,-0.014285714365541935,-2.168404344971009e-19,-0.0057142856530845165,1.0782503867890637e-33,2.710505431213761e-20,0.0057142856530845165,2.710505431213761e-20,1.0842021724855044e-19,2.168404344971009e-19,0.007936508394777775,-1.5504091066542713e-17,-0.01587301678955555,3.5088507861071316e-19,7.930164816114238e-18,-2.168404344971009e-19,2.710505431213761e-20,0.003968254197388887,-2.168404344971009e-19,5.421010862427522e-20,0.009523809887468815,-6.396792817664476e-18,-0.004761904943734407,-0.003809523768723011,3.1720658023686032e-18,-1.6263032587282567e-19,1.0842021724855044e-19,-2.168404344971009e-19,0.0019047618843615055,1.0842021724855044e-19,0.0059523810632526875,-1.1275702593849246e-17,-6.505213034913027e-19,-0.008928571827709675,5.4519879491870205e-18,8.263432214297884e-20,2.168404344971009e-19,5.421010862427522e-20,1.0842021724855044e-19,0.0017857142956927419,3.0,5.0,7.0,0.20606575906276703,-0.10357142984867096,-0.0724489763379097,-0.05595238134264946,0.014285714365541935,0.014285714365541935,0.010714286006987095,0.006802720949053764,0.0071428571827709675,0.003968254197388887,-0.10357142984867096,0.24642856419086456,0.014285714365541935,0.010714286006987095,-0.08571428805589676,-0.014285714365541935,-0.010714286006987095,-1.35945677835212e-17,1.4203048459560108e-17,3.1008182133085427e-17,-0.0724489763379097,0.014285714365541935,0.07704081386327744,0.0071428571827709675,-1.0535789535920563e-17,-0.0071428571827709675,2.3852447794681098e-18,-0.013605441898107529,-0.0035714285913854837,8.023096076392733e-18,-0.05595238134264946,0.010714286006987095,0.0071428571827709675,0.03928571566939354,1.0547118601590089e-16,2.6169542817842188e-17,-0.0035714285913854837,1.066706061759089e-17,-0.0023809524718672037,-0.004761904943734407,0.014285714365541935,-0.08571428805589676,-1.0535789535920563e-17,1.0547118601590089e-16,0.04285714402794838,7.025792202025766e-32,-1.189524681058105e-17,6.7972838917606e-18,-5.551115205843844e-18,-1.2423924409843292e-17,0.014285714365541935,-0.014285714365541935,-0.0071428571827709675,2.6169542817842188e-17,7.025792202025766e-32,0.0071428571827709675,-2.3790494034752407e-18,7.105689230620012e-33,-1.5860329011843016e-18,-3.1720658023686032e-18,0.010714286006987095,-0.010714286006987095,2.3852447794681098e-18,-0.0035714285913854837,-1.189524681058105e-17,-2.3790494034752407e-18,0.0035714285913854837,-1.925929944387236e-33,0.0,0.0,0.006802720949053764,-1.35945677835212e-17,-0.013605441898107529,1.066706061759089e-17,6.7972838917606e-18,7.105689230620012e-33,-1.925929944387236e-33,0.003401360474526882,-4.2438067057211495e-19,-1.258756306888282e-18,0.0071428571827709675,1.4203048459560108e-17,-0.0035714285913854837,-0.0023809524718672037,-5.551115205843844e-18,-1.5860329011843016e-18,0.0,-4.2438067057211495e-19,0.0011904762359336019,0.0,0.003968254197388887,3.1008182133085427e-17,8.023096076392733e-18,-0.004761904943734407,-1.2423924409843292e-17,-3.1720658023686032e-18,0.0,-1.258756306888282e-18,0.0,0.0007936508045531809,3.0,5.0,8.0,0.1855158656835556,-0.09166666865348816,-0.06408730149269104,-0.04444444552063942,0.012500000186264515,0.012500000186264515,0.008333333767950535,0.0059523810632526875,0.0055555556900799274,0.0027777778450399637,-0.09166666865348816,0.21666666865348816,0.012500000186264515,0.008333333767950535,-0.07500000298023224,-0.012500000186264515,-0.008333333767950535,-3.686287386450715e-17,-9.540979117872439e-18,-1.656118818471608e-17,-0.06408730149269104,0.012500000186264515,0.06775793433189392,0.0055555556900799274,-5.0306980803327406e-17,-0.0062500000931322575,-8.72782748850831e-18,-0.011904762126505375,-0.0027777778450399637,-1.180425115293593e-17,-0.04444444552063942,0.008333333767950535,0.0055555556900799274,0.02658730186522007,-5.2475385148298415e-17,-1.951563910473908e-17,-0.0023809524718672037,-1.951563910473908e-17,-0.0015873016091063619,-0.0027777778450399637,0.012500000186264515,-0.07500000298023224,-5.0306980803327406e-17,-5.2475385148298415e-17,0.03750000149011612,5.412453265400355e-18,9.31843361869056e-18,7.941578254206244e-18,3.086172815127169e-18,4.919567357652976e-18,0.012500000186264515,-0.012500000186264515,-0.0062500000931322575,-1.951563910473908e-17,5.412453265400355e-18,0.0062500000931322575,1.3010426069826053e-18,6.830473686658678e-18,1.5720931501039814e-18,2.0709827347372698e-18,0.008333333767950535,-0.008333333767950535,-8.72782748850831e-18,-0.0023809524718672037,9.31843361869056e-18,1.3010426069826053e-18,0.0023809524718672037,1.463672932855431e-18,2.168404344971009e-19,5.946085469736636e-19,0.0059523810632526875,-3.686287386450715e-17,-0.011904762126505375,-1.951563910473908e-17,7.941578254206244e-18,6.830473686658678e-18,1.463672932855431e-18,0.0029761905316263437,2.1141942363467336e-18,1.824287697571905e-18,0.0055555556900799274,-9.540979117872439e-18,-0.0027777778450399637,-0.0015873016091063619,3.086172815127169e-18,1.5720931501039814e-18,2.168404344971009e-19,2.1141942363467336e-18,0.0007936508045531809,4.701916906541033e-19,0.0027777778450399637,-1.656118818471608e-17,-1.180425115293593e-17,-0.0027777778450399637,4.919567357652976e-18,2.0709827347372698e-18,5.946085469736636e-19,1.824287697571905e-18,4.701916906541033e-19,0.00039682540227659047,3.0,5.0,9.0,0.16869649291038513,-0.08222222328186035,-0.05746031925082207,-0.03616161644458771,0.011111111380159855,0.011111111380159855,0.006666666828095913,0.005291005130857229,0.004444444552063942,0.002020202111452818,-0.08222222328186035,0.19333332777023315,0.011111111380159855,0.006666666828095913,-0.06666667014360428,-0.011111111380159855,-0.006666666828095913,2.0816681711721685e-17,2.6020852139652106e-18,2.8866882842426556e-18,-0.05746031925082207,0.011111111380159855,0.060476191341876984,0.004444444552063942,3.2742905609062234e-17,-0.0055555556900799274,1.3552527156068805e-18,-0.010582010261714458,-0.002222222276031971,8.402566836762659e-19,-0.03616161644458771,0.006666666828095913,0.004444444552063942,0.01885281316936016,4.336808689942018e-19,4.336808689942018e-18,-0.0016666667070239782,3.0357660829594124e-18,-0.0011111111380159855,-0.0017316017765551805,0.011111111380159855,-0.06666667014360428,3.2742905609062234e-17,4.336808689942018e-19,0.03333333507180214,4.677912331959897e-18,7.934542255915868e-18,-8.452789107653816e-18,-6.894795974873837e-19,-9.351243737687476e-19,0.011111111380159855,-0.011111111380159855,-0.0055555556900799274,4.336808689942018e-18,4.677912331959897e-18,0.0055555556900799274,-2.710505431213761e-19,-2.2768245622195593e-18,-5.963111948670274e-19,-3.9741135142861846e-19,0.006666666828095913,-0.006666666828095913,1.3552527156068805e-18,-0.0016666667070239782,7.934542255915868e-18,-2.710505431213761e-19,0.0016666667070239782,-1.0842021724855044e-19,-2.710505431213761e-20,-7.639691503523445e-20,0.005291005130857229,2.0816681711721685e-17,-0.010582010261714458,3.0357660829594124e-18,-8.452789107653816e-18,-2.2768245622195593e-18,-1.0842021724855044e-19,0.0026455025654286146,-1.0570971181733668e-18,-6.586400424294194e-20,0.004444444552063942,2.6020852139652106e-18,-0.002222222276031971,-0.0011111111380159855,-6.894795974873837e-19,-5.963111948670274e-19,-2.710505431213761e-20,-1.0570971181733668e-18,0.0005555555690079927,-1.073000838365958e-20,0.002020202111452818,2.8866882842426556e-18,8.402566836762659e-19,-0.0017316017765551805,-9.351243737687476e-19,-3.9741135142861846e-19,-7.639691503523445e-20,-6.586400424294194e-20,-1.073000838365958e-20,0.00021645022206939757,3.0,5.0,10.0,0.15467531979084015,-0.07454545795917511,-0.052077922970056534,-0.029999999329447746,0.009999999776482582,0.009999999776482582,0.005454545374959707,0.004761904943734407,0.003636363660916686,0.0015151514671742916,-0.07454545795917511,0.17454545199871063,0.009999999776482582,0.005454545374959707,-0.05999999865889549,-0.009999999776482582,-0.005454545374959707,1.5612511283791264e-17,3.903127820947816e-18,-2.7771768089709945e-18,-0.052077922970056534,0.009999999776482582,0.05461039021611214,0.003636363660916686,2.0599841277224584e-17,-0.004999999888241291,6.5052130349130266e-18,-0.009523809887468815,-0.001818181830458343,-5.89534931288993e-19,-0.029999999329447746,0.005454545374959707,0.003636363660916686,0.013863636180758476,-8.673617379884035e-19,-5.204170427930421e-18,-0.001212121220305562,4.119968255444917e-18,-0.000808080832939595,-0.0011363636003807187,0.009999999776482582,-0.05999999865889549,2.0599841277224584e-17,-8.673617379884035e-19,0.029999999329447746,-4.213932250718184e-18,7.589415207398531e-19,-2.0623934980516723e-18,-1.3426036764748728e-18,4.87890977618477e-19,0.009999999776482582,-0.009999999776482582,-0.004999999888241291,-5.204170427930421e-18,-4.213932250718184e-18,0.004999999888241291,-1.0842021724855044e-19,-2.5478751053409354e-18,2.710505431213761e-20,5.287757752611941e-19,0.005454545374959707,-0.005454545374959707,6.5052130349130266e-18,-0.001212121220305562,7.589415207398531e-19,-1.0842021724855044e-19,0.001212121220305562,-1.3823577699190182e-18,-1.8973538018496328e-19,9.147955830346444e-20,0.004761904943734407,1.5612511283791264e-17,-0.009523809887468815,4.119968255444917e-18,-2.0623934980516723e-18,-2.5478751053409354e-18,-1.3823577699190182e-18,0.0023809524718672037,-1.4365678785432934e-18,-9.919876254336954e-20,0.003636363660916686,3.903127820947816e-18,-0.001818181830458343,-0.000808080832939595,-1.3426036764748728e-18,2.710505431213761e-20,-1.8973538018496328e-19,-1.4365678785432934e-18,0.0004040404164697975,5.3452708451209285e-20,0.0015151514671742916,-2.7771768089709945e-18,-5.89534931288993e-19,-0.0011363636003807187,4.87890977618477e-19,5.287757752611941e-19,9.147955830346444e-20,-9.919876254336954e-20,5.3452708451209285e-20,0.00012626263196580112,3.0,5.0,11.0,0.14280718564987183,-0.06818182021379471,-0.0476190485060215,-0.025291375815868378,0.00909090880304575,0.00909090880304575,0.004545454401522875,0.0043290043249726295,0.0030303029343485832,0.0011655011912807822,-0.06818182021379471,0.15909090638160706,0.00909090880304575,0.004545454401522875,-0.05454545468091965,-0.00909090880304575,-0.004545454401522875,1.734723475976807e-17,4.119968255444917e-18,-1.909508186975334e-18,-0.0476190485060215,0.00909090880304575,0.04978355020284653,0.0030303029343485832,4.8843307870471975e-17,-0.004545454401522875,5.095750210681871e-18,-0.008658008649945259,-0.0015151514671742916,-9.825582188149884e-19,-0.025291375815868378,0.004545454401522875,0.0030303029343485832,0.010497280396521091,1.431146867680866e-17,-4.553649124439119e-18,-0.0009090909152291715,2.0599841277224584e-18,-0.000606060610152781,-0.0007770007941871881,0.00909090880304575,-0.05454545468091965,4.8843307870471975e-17,1.431146867680866e-17,0.027272727340459824,-8.24767230397843e-18,-7.860465750519907e-18,-5.977403148113353e-18,-2.372381914147757e-18,1.6263032587282567e-19,0.00909090880304575,-0.00909090880304575,-0.004545454401522875,-4.553649124439119e-18,-8.24767230397843e-18,0.004545454401522875,0.0,1.0842021724855044e-18,4.607859233063394e-19,4.0394214915987775e-19,0.004545454401522875,-0.004545454401522875,5.095750210681871e-18,-0.0009090909152291715,-7.860465750519907e-18,0.0,0.0009090909152291715,-1.1384122811097797e-18,-4.0657581468206416e-20,1.0503208545953324e-19,0.0043290043249726295,1.734723475976807e-17,-0.008658008649945259,2.0599841277224584e-18,-5.977403148113353e-18,1.0842021724855044e-18,-1.1384122811097797e-18,0.0021645021624863148,-3.5236570605778894e-19,5.97871541845638e-20,0.0030303029343485832,4.119968255444917e-18,-0.0015151514671742916,-0.000606060610152781,-2.372381914147757e-18,4.607859233063394e-19,-4.0657581468206416e-20,-3.5236570605778894e-19,0.0003030303050763905,4.4626274493787935e-20,0.0011655011912807822,-1.909508186975334e-18,-9.825582188149884e-19,-0.0007770007941871881,1.6263032587282567e-19,4.0394214915987775e-19,1.0503208545953324e-19,5.97871541845638e-20,4.4626274493787935e-20,7.770007505314425e-05,3.0,5.0,12.0,0.13263125717639923,-0.06282051652669907,-0.04386446997523308,-0.02161172218620777,0.008333333767950535,0.008333333767950535,0.003846153849735856,0.003968254197388887,0.0025641026441007853,0.0009157509193755686,-0.06282051652669907,0.14615385234355927,0.008333333767950535,0.003846153849735856,-0.05000000074505806,-0.008333333767950535,-0.003846153849735856,-1.7780915628762273e-17,3.2526065174565133e-18,3.351763966205695e-18,-0.04386446997523308,0.008333333767950535,0.04574175924062729,0.0025641026441007853,-2.656295322589486e-17,-0.004166666883975267,-3.144186300207963e-18,-0.007936508394777775,-0.0012820513220503926,1.1926223897340549e-18,-0.02161172218620777,0.003846153849735856,0.0025641026441007853,0.008141858503222466,1.431146867680866e-17,4.119968255444917e-18,-0.0006993007264100015,-8.673617379884035e-19,-0.0004662004648707807,-0.0005494505749084055,0.008333333767950535,-0.05000000074505806,-2.656295322589486e-17,1.431146867680866e-17,0.02500000037252903,5.0310009938730575e-18,1.4094628242311558e-18,6.847483415184912e-18,-1.340703539210262e-18,-1.0028870095490916e-18,0.008333333767950535,-0.008333333767950535,-0.004166666883975267,4.119968255444917e-18,5.0310009938730575e-18,0.004166666883975267,5.421010862427522e-20,-1.2468324983583301e-18,-3.5236570605778894e-19,-2.6836494616635785e-19,0.003846153849735856,-0.003846153849735856,-3.144186300207963e-18,-0.0006993007264100015,1.4094628242311558e-18,5.421010862427522e-20,0.0006993007264100015,7.318364664277155e-19,-1.3552527156068805e-20,-1.0079692072326174e-19,0.003968254197388887,-1.7780915628762273e-17,-0.007936508394777775,-8.673617379884035e-19,6.847483415184912e-18,-1.2468324983583301e-18,7.318364664277155e-19,0.0019841270986944437,5.285485590866834e-19,-1.096016379584293e-19,0.0025641026441007853,3.2526065174565133e-18,-0.0012820513220503926,-0.0004662004648707807,-1.340703539210262e-18,-3.5236570605778894e-19,-1.3552527156068805e-20,5.285485590866834e-19,0.00023310023243539035,-7.08380415990279e-20,0.0009157509193755686,3.351763966205695e-18,1.1926223897340549e-18,-0.0005494505749084055,-1.0028870095490916e-18,-2.6836494616635785e-19,-1.0079692072326174e-19,-1.096016379584293e-19,-7.08380415990279e-20,4.995004928787239e-05,3.0,5.0,13.0,0.12380952388048172,-0.05824175849556923,-0.0406593419611454,-0.018681319430470467,0.007692307699471712,0.007692307699471712,0.0032967033330351114,0.0036630036775022745,0.002197802299633622,0.0007326007471419871,-0.05824175849556923,0.13516484200954437,0.007692307699471712,0.0032967033330351114,-0.04615384712815285,-0.007692307699471712,-0.0032967033330351114,-3.469446951953614e-18,3.0357660829594124e-18,-1.3352371161322052e-18,-0.0406593419611454,0.007692307699471712,0.042307693511247635,0.002197802299633622,2.2551405187698492e-17,-0.003846153849735856,-7.589415207398531e-19,-0.007326007355004549,-0.001098901149816811,6.776263578034403e-20,-0.018681319430470467,0.0032967033330351114,0.002197802299633622,0.006443556398153305,-5.421010862427522e-18,4.336808689942018e-19,-0.0005494505749084055,-6.505213034913027e-19,-0.00036630037357099354,-0.0003996003943029791,0.007692307699471712,-0.04615384712815285,2.2551405187698492e-17,-5.421010862427522e-18,0.023076923564076424,-5.733983746173698e-18,4.119968255444917e-18,-1.2173907622133068e-18,-1.3904634161390018e-18,3.7947076036992655e-19,0.007692307699471712,-0.007692307699471712,-0.003846153849735856,4.336808689942018e-19,-5.733983746173698e-18,0.003846153849735856,-2.439454888092385e-19,1.8973538018496328e-18,-2.439454888092385e-19,2.6828052204508916e-20,0.0032967033330351114,-0.0032967033330351114,-7.589415207398531e-19,-0.0005494505749084055,4.119968255444917e-18,-2.439454888092385e-19,0.0005494505749084055,2.439454888092385e-19,2.0328790734103208e-20,6.606856988583543e-20,0.0036630036775022745,-3.469446951953614e-18,-0.007326007355004549,-6.505213034913027e-19,-1.2173907622133068e-18,1.8973538018496328e-18,2.439454888092385e-19,0.0018315018387511373,4.607859233063394e-19,-6.630856858574944e-20,0.002197802299633622,3.0357660829594124e-18,-0.001098901149816811,-0.00036630037357099354,-1.3904634161390018e-18,-2.439454888092385e-19,2.0328790734103208e-20,4.607859233063394e-19,0.00018315018678549677,2.3038518098553287e-20,0.0007326007471419871,-1.3352371161322052e-18,6.776263578034403e-20,-0.0003996003943029791,3.7947076036992655e-19,2.6828052204508916e-20,6.606856988583543e-20,-6.630856858574944e-20,2.3038518098553287e-20,3.330003164592199e-05,3.0,5.0,14.0,0.11608843505382538,-0.05428571254014969,-0.03789115697145462,-0.016309523954987526,0.0071428571827709675,0.0071428571827709675,0.0028571428265422583,0.003401360474526882,0.0019047618843615055,0.0005952381179668009,-0.05428571254014969,0.1257142871618271,0.0071428571827709675,0.0028571428265422583,-0.04285714402794838,-0.0071428571827709675,-0.0028571428265422583,1.5178830414797062e-18,4.0598218334558665e-19,6.853046101406755e-19,-0.03789115697145462,0.0071428571827709675,0.03935374319553375,0.0019047618843615055,9.540979117872439e-18,-0.0035714285913854837,-8.673617379884035e-19,-0.006802720949053764,-0.0009523809421807528,6.844026213814747e-19,-0.016309523954987526,0.0028571428265422583,0.0019047618843615055,0.00518772890791297,4.9873299934333204e-18,1.951563910473908e-18,-0.00043956044828519225,1.6805133673525319e-18,-0.00029304029885679483,-0.00029761905898340046,0.0071428571827709675,-0.04285714402794838,9.540979117872439e-18,4.9873299934333204e-18,0.02142857201397419,-1.0842021724855044e-19,-3.577867169202165e-18,-1.7889335846010823e-18,-2.2729049151881885e-19,-4.4378385266311985e-20,0.0071428571827709675,-0.0071428571827709675,-0.0035714285913854837,1.951563910473908e-18,-1.0842021724855044e-19,0.0035714285913854837,1.3552527156068805e-19,2.710505431213761e-19,-4.822538903779444e-21,-1.2562901195907434e-19,0.0028571428265422583,-0.0028571428265422583,-8.673617379884035e-19,-0.00043956044828519225,-3.577867169202165e-18,1.3552527156068805e-19,0.00043956044828519225,2.168404344971009e-19,6.776263578034403e-21,-3.7269449679189215e-20,0.003401360474526882,1.5178830414797062e-18,-0.006802720949053764,1.6805133673525319e-18,-1.7889335846010823e-18,2.710505431213761e-19,2.168404344971009e-19,0.001700680237263441,-3.11025467939679e-19,-7.355410852739137e-20,0.0019047618843615055,4.0598218334558665e-19,-0.0009523809421807528,-0.00029304029885679483,-2.2729049151881885e-19,-4.822538903779444e-21,6.776263578034403e-21,-3.11025467939679e-19,0.00014652014942839742,-2.964615315390051e-20,0.0005952381179668009,6.853046101406755e-19,6.844026213814747e-19,-0.00029761905898340046,-4.4378385266311985e-20,-1.2562901195907434e-19,-3.7269449679189215e-20,-7.355410852739137e-20,-2.964615315390051e-20,2.2893773348187096e-05,3.0,5.0,15.0,0.10927404463291168,-0.050833333283662796,-0.035476189106702805,-0.014362744987010956,0.006666666828095913,0.006666666828095913,0.0024999999441206455,0.0031746032182127237,0.0016666667070239782,0.0004901961074210703,-0.050833333283662796,0.11749999970197678,0.006666666828095913,0.0024999999441206455,-0.03999999910593033,-0.006666666828095913,-0.0024999999441206455,-3.2526065174565133e-18,7.89453664140437e-21,-9.358394714082997e-19,-0.035476189106702805,0.006666666828095913,0.03678571432828903,0.0016666667070239782,-8.673617379884035e-18,-0.0033333334140479565,8.673617379884035e-19,-0.0063492064364254475,-0.0008333333535119891,-7.792703114739563e-19,-0.014362744987010956,0.0024999999441206455,0.0016666667070239782,0.004238849505782127,-8.782037597132586e-18,-2.0599841277224584e-18,-0.0003571428533177823,-3.144186300207963e-18,-0.0002380952355451882,-0.0002262443449581042,0.006666666828095913,-0.03999999910593033,-8.673617379884035e-18,-8.782037597132586e-18,0.019999999552965164,7.15573433840433e-18,3.903127820947816e-18,2.168404344971009e-19,2.7700621768236377e-19,2.6845647887101567e-19,0.006666666828095913,-0.006666666828095913,-0.0033333334140479565,-2.0599841277224584e-18,7.15573433840433e-18,0.0033333334140479565,8.131516293641283e-20,1.3010426069826053e-18,5.745528680133707e-20,1.1858147191421376e-19,0.0024999999441206455,-0.0024999999441206455,8.673617379884035e-19,-0.0003571428533177823,3.903127820947816e-18,8.131516293641283e-20,0.0003571428533177823,-5.421010862427522e-20,-8.809142651444724e-20,1.5246593050577406e-20,0.0031746032182127237,-3.2526065174565133e-18,-0.0063492064364254475,-3.144186300207963e-18,2.168404344971009e-19,1.3010426069826053e-18,-5.421010862427522e-20,0.0015873016091063619,5.194497791437532e-19,1.2751500960508939e-19,0.0016666667070239782,7.89453664140437e-21,-0.0008333333535119891,-0.0002380952355451882,2.7700621768236377e-19,5.745528680133707e-20,-8.809142651444724e-20,5.194497791437532e-19,0.0001190476177725941,1.3552527156068805e-20,0.0004901961074210703,-9.358394714082997e-19,-7.792703114739563e-19,-0.0002262443449581042,2.6845647887101567e-19,1.1858147191421376e-19,1.5246593050577406e-20,1.2751500960508939e-19,1.3552527156068805e-20,1.6160311133717187e-05,3.0,5.0,16.0,0.10321545600891113,-0.04779411852359772,-0.03335084021091461,-0.01274509821087122,0.0062500000931322575,0.0062500000931322575,0.002205882454290986,0.0029761905316263437,0.00147058826405555,0.00040849673678167164,-0.04779411852359772,0.11029411852359772,0.0062500000931322575,0.002205882454290986,-0.03750000149011612,-0.0062500000931322575,-0.002205882454290986,-4.9873299934333204e-18,3.5934519757256997e-19,2.0528455331867317e-19,-0.03335084021091461,0.0062500000931322575,0.034532561898231506,0.00147058826405555,-1.3877787807814457e-17,-0.0031250000465661287,0.0,-0.0059523810632526875,-0.000735294132027775,2.710505431213761e-20,-0.01274509821087122,0.002205882454290986,0.00147058826405555,0.003508403431624174,1.4094628242311558e-18,9.75781955236954e-19,-0.00029411763534881175,2.168404344971009e-19,-0.0001960784284165129,-0.00017507003212813288,0.0062500000931322575,-0.03750000149011612,-1.3877787807814457e-17,1.4094628242311558e-18,0.01875000074505806,1.463672932855431e-18,1.0570971181733668e-18,3.0899761915836876e-18,-1.6241163030485916e-20,-1.1392381175538373e-19,0.0062500000931322575,-0.0062500000931322575,-0.0031250000465661287,9.75781955236954e-19,1.463672932855431e-18,0.0031250000465661287,-5.421010862427522e-20,-8.673617379884035e-19,-1.8078478189395374e-19,-2.636385201567608e-20,0.002205882454290986,-0.002205882454290986,0.0,-0.00029411763534881175,1.0570971181733668e-18,-5.421010862427522e-20,0.00029411763534881175,6.776263578034403e-20,-1.3552527156068805e-20,1.6940658945086007e-21,0.0029761905316263437,-4.9873299934333204e-18,-0.0059523810632526875,2.168404344971009e-19,3.0899761915836876e-18,-8.673617379884035e-19,6.776263578034403e-20,0.0014880952658131719,-7.724658462069127e-20,-4.639611223266967e-21,0.00147058826405555,3.5934519757256997e-19,-0.000735294132027775,-0.0001960784284165129,-1.6241163030485916e-20,-1.8078478189395374e-19,-1.3552527156068805e-20,-7.724658462069127e-20,9.803921420825645e-05,1.2705494208814505e-21,0.00040849673678167164,2.0528455331867317e-19,2.710505431213761e-20,-0.00017507003212813288,-1.1392381175538373e-19,-2.636385201567608e-20,1.6940658945086007e-21,-4.639611223266967e-21,1.2705494208814505e-21,1.1671335414575879e-05,3.0,6.0,3.0,0.32605820894241333,-0.184523805975914,-0.1130952388048172,-0.184523805975914,0.02777777798473835,0.02380952425301075,0.0416666679084301,0.009920635260641575,0.02380952425301075,0.02777777798473835,-0.184523805975914,0.4623015820980072,0.02380952425301075,0.0416666679084301,-0.1666666716337204,-0.02380952425301075,-0.0416666679084301,1.3010426069826053e-17,-1.3877787807814457e-17,-7.169814275918962e-17,-0.1130952388048172,0.02380952425301075,0.09980158507823944,0.02380952425301075,3.642919299551295e-17,-0.009523809887468815,3.469446951953614e-18,-0.014880952425301075,-0.009523809887468815,3.885780520013599e-17,-0.184523805975914,0.0416666679084301,0.02380952425301075,0.4623015820980072,-1.12572174232644e-16,1.405543146180512e-17,-0.0416666679084301,2.3418766925686896e-17,-0.02380952425301075,-0.1666666716337204,0.02777777798473835,-0.1666666716337204,3.642919299551295e-17,-1.12572174232644e-16,0.0833333358168602,-1.951563910473908e-17,-3.903127820947816e-18,-3.686287386450715e-18,3.903127820947816e-18,5.050330384991074e-17,0.02380952425301075,-0.02380952425301075,-0.009523809887468815,1.405543146180512e-17,-1.951563910473908e-17,0.009523809887468815,-4.336808689942018e-18,-1.1926223897340549e-18,-2.168404344971009e-19,-5.269711256585448e-18,0.0416666679084301,-0.0416666679084301,3.469446951953614e-18,-0.0416666679084301,-3.903127820947816e-18,-4.336808689942018e-18,0.0416666679084301,-1.5178830414797062e-18,5.204170427930421e-18,-5.702291561774648e-18,0.009920635260641575,1.3010426069826053e-17,-0.014880952425301075,2.3418766925686896e-17,-3.686287386450715e-18,-1.1926223897340549e-18,-1.5178830414797062e-18,0.0029761905316263437,-5.421010862427522e-19,-9.762387243712058e-18,0.02380952425301075,-1.3877787807814457e-17,-0.009523809887468815,-0.02380952425301075,3.903127820947816e-18,-2.168404344971009e-19,5.204170427930421e-18,-5.421010862427522e-19,0.009523809887468815,1.2990909570453477e-17,0.02777777798473835,-7.169814275918962e-17,3.885780520013599e-17,-0.1666666716337204,5.050330384991074e-17,-5.269711256585448e-18,-5.702291561774648e-18,-9.762387243712058e-18,1.2990909570453477e-17,0.0833333358168602,3.0,6.0,4.0,0.2708333432674408,-0.14464285969734192,-0.08839285373687744,-0.1190476194024086,0.02083333395421505,0.01785714365541935,0.02500000037252903,0.0074404762126505375,0.014285714365541935,0.013888888992369175,-0.14464285969734192,0.3529762029647827,0.01785714365541935,0.02500000037252903,-0.125,-0.01785714365541935,-0.02500000037252903,2.7755575615628914e-17,1.904125433216237e-17,6.476300756398583e-17,-0.08839285373687744,0.01785714365541935,0.07627975940704346,0.014285714365541935,9.511240982234423e-17,-0.0071428571827709675,-4.5054288703599094e-32,-0.01116071455180645,-0.0057142856530845165,2.6403031089347532e-17,-0.1190476194024086,0.02500000037252903,0.014285714365541935,0.1765872985124588,1.5054095548891006e-16,8.859707782237435e-21,-0.01666666753590107,1.8559237991254243e-17,-0.009523809887468815,-0.0416666679084301,0.02083333395421505,-0.125,9.511240982234423e-17,1.5054095548891006e-16,0.0625,-1.2688263209474413e-17,-2.9605948867407985e-17,-1.3629970286557858e-17,-9.516197613900963e-18,-3.2381503781992916e-17,0.01785714365541935,-0.01785714365541935,-0.0071428571827709675,8.859707782237435e-21,-1.2688263209474413e-17,0.0071428571827709675,6.01036873731159e-33,-6.392878288813146e-20,-3.543882870556904e-21,6.847751239903047e-33,0.02500000037252903,-0.02500000037252903,-4.5054288703599094e-32,-0.01666666753590107,-2.9605948867407985e-17,6.01036873731159e-33,0.01666666753590107,6.456451211033386e-33,4.507776552983692e-33,1.5338962601058673e-32,0.0074404762126505375,2.7755575615628914e-17,-0.01116071455180645,1.8559237991254243e-17,-1.3629970286557858e-17,-6.392878288813146e-20,6.456451211033386e-33,0.0022321429569274187,-1.872580362889129e-18,-4.625929407134921e-18,0.014285714365541935,1.904125433216237e-17,-0.0057142856530845165,-0.009523809887468815,-9.516197613900963e-18,-3.543882870556904e-21,4.507776552983692e-33,-1.872580362889129e-18,0.003809523768723011,-2.182256518303975e-18,0.013888888992369175,6.476300756398583e-17,2.6403031089347532e-17,-0.0416666679084301,-3.2381503781992916e-17,6.847751239903047e-33,1.5338962601058673e-32,-4.625929407134921e-18,-2.182256518303975e-18,0.013888888992369175,3.0,6.0,5.0,0.23174603283405304,-0.1190476194024086,-0.07261905074119568,-0.0833333358168602,0.01666666753590107,0.014285714365541935,0.01666666753590107,0.0059523810632526875,0.009523809887468815,0.007936508394777775,-0.1190476194024086,0.2857142984867096,0.014285714365541935,0.01666666753590107,-0.10000000149011612,-0.014285714365541935,-0.01666666753590107,-1.1275702593849246e-17,-7.697835424647081e-18,-1.6046192152785466e-17,-0.07261905074119568,0.014285714365541935,0.06178571283817291,0.009523809887468815,-3.360407341862384e-17,-0.0057142856530845165,-1.5178830414797062e-18,-0.008928571827709675,-0.003809523768723011,-2.5804011705155006e-17,-0.0833333358168602,0.01666666753590107,0.009523809887468815,0.0892857164144516,-3.9650823253390577e-17,8.517264217487145e-20,-0.008333333767950535,-2.214371267918948e-17,-0.004761904943734407,-0.01587301678955555,0.01666666753590107,-0.10000000149011612,-3.360407341862384e-17,-3.9650823253390577e-17,0.05000000074505806,-4.230102287622909e-34,1.0462385532093035e-33,5.4519879491870205e-18,3.1720658023686032e-18,7.930164816114238e-18,0.014285714365541935,-0.014285714365541935,-0.0057142856530845165,8.517264217487145e-20,-4.230102287622909e-34,0.0057142856530845165,5.6030807469512595e-21,1.0842021724855044e-19,-4.542540689810945e-21,-6.410916319163057e-21,0.01666666753590107,-0.01666666753590107,-1.5178830414797062e-18,-0.008333333767950535,1.0462385532093035e-33,5.6030807469512595e-21,0.008333333767950535,0.0,7.047314121155779e-19,-2.168404344971009e-19,0.0059523810632526875,-1.1275702593849246e-17,-0.008928571827709675,-2.214371267918948e-17,5.4519879491870205e-18,1.0842021724855044e-19,0.0,0.0017857142956927419,1.6263032587282567e-18,4.553649124439119e-18,0.009523809887468815,-7.697835424647081e-18,-0.003809523768723011,-0.004761904943734407,3.1720658023686032e-18,-4.542540689810945e-21,7.047314121155779e-19,1.6263032587282567e-18,0.0019047618843615055,1.6263032587282567e-18,0.007936508394777775,-1.6046192152785466e-17,-2.5804011705155006e-17,-0.01587301678955555,7.930164816114238e-18,-6.410916319163057e-21,-2.168404344971009e-19,4.553649124439119e-18,1.6263032587282567e-18,0.003968254197388887,3.0,6.0,6.0,0.20256991684436798,-0.1011904776096344,-0.061649661511182785,-0.061649661511182785,0.013888888992369175,0.011904762126505375,0.011904762126505375,0.004960317630320787,0.006802720949053764,0.004960317630320787,-0.1011904776096344,0.2400793582201004,0.011904762126505375,0.011904762126505375,-0.0833333358168602,-0.011904762126505375,-0.011904762126505375,1.7564075194265172e-17,9.432558900623889e-18,1.8214596497756474e-17,-0.061649661511182785,0.011904762126505375,0.051941610872745514,0.006802720949053764,6.804049567426794e-17,-0.004761904943734407,2.168404344971009e-19,-0.0074404762126505375,-0.002721088472753763,6.288372600415926e-18,-0.061649661511182785,0.011904762126505375,0.006802720949053764,0.051941610872745514,6.804049567426794e-17,2.2355039437916034e-19,-0.004761904943734407,8.609833482850072e-18,-0.002721088472753763,-0.0074404762126505375,0.013888888992369175,-0.0833333358168602,6.804049567426794e-17,6.804049567426794e-17,0.0416666679084301,-1.1278456278108435e-17,-1.1278456278108435e-17,-9.086646857705238e-18,-4.5315224566436314e-18,-9.086646857705238e-18,0.011904762126505375,-0.011904762126505375,-0.004761904943734407,2.2355039437916034e-19,-1.1278456278108435e-17,0.004761904943734407,-1.658709931286613e-22,0.0,-9.302639897363567e-20,-8.39470383880549e-21,0.011904762126505375,-0.011904762126505375,2.168404344971009e-19,-0.004761904943734407,-1.1278456278108435e-17,-1.658709931286613e-22,0.004761904943734407,0.0,-5.421010862427522e-20,0.0,0.004960317630320787,1.7564075194265172e-17,-0.0074404762126505375,8.609833482850072e-18,-9.086646857705238e-18,0.0,0.0,0.0014880952658131719,-8.131516293641283e-19,-1.328147661294743e-18,0.006802720949053764,9.432558900623889e-18,-0.002721088472753763,-0.002721088472753763,-4.5315224566436314e-18,-9.302639897363567e-20,-5.421010862427522e-20,-8.131516293641283e-19,0.0010884354123845696,2.168404344971009e-19,0.004960317630320787,1.8214596497756474e-17,6.288372600415926e-18,-0.0074404762126505375,-9.086646857705238e-18,-8.39470383880549e-21,0.0,-1.328147661294743e-18,2.168404344971009e-19,0.0014880952658131719,3.0,6.0,7.0,0.17994141578674316,-0.08801020681858063,-0.0535714291036129,-0.047477323561906815,0.011904762126505375,0.010204081423580647,0.008928571827709675,0.004251700825989246,0.005102040711790323,0.003306878264993429,-0.08801020681858063,0.20705781877040863,0.010204081423580647,0.008928571827709675,-0.0714285746216774,-0.010204081423580647,-0.008928571827709675,1.555830117516699e-17,6.776263578034403e-18,1.1492543028346347e-17,-0.0535714291036129,0.010204081423580647,0.04481292515993118,0.005102040711790323,5.742490967901561e-17,-0.004081632476300001,1.6263032587282567e-19,-0.0063775512389838696,-0.0020408162381500006,4.0115480381963664e-18,-0.047477323561906815,0.008928571827709675,0.005102040711790323,0.03302154317498207,4.890267958611858e-17,-4.4917758724484844e-20,-0.0029761905316263437,6.8546815408753486e-18,-0.001700680237263441,-0.003968254197388887,0.011904762126505375,-0.0714285746216774,5.742490967901561e-17,4.890267958611858e-17,0.0357142873108387,-8.2862123030785e-18,-6.0420299421915085e-18,-7.788553976786997e-18,-3.3986419458803e-18,-5.727341072264591e-18,0.010204081423580647,-0.010204081423580647,-0.004081632476300001,-4.4917758724484844e-20,-8.2862123030785e-18,0.004081632476300001,4.048381457063989e-21,1.0842021724855044e-19,2.313360832607994e-21,3.546660468736849e-21,0.008928571827709675,-0.008928571827709675,1.6263032587282567e-19,-0.0029761905316263437,-6.0420299421915085e-18,4.048381457063989e-21,0.0029761905316263437,-1.3552527156068805e-20,-5.421010862427522e-20,-5.421010862427522e-20,0.004251700825989246,1.555830117516699e-17,-0.0063775512389838696,6.8546815408753486e-18,-7.788553976786997e-18,1.0842021724855044e-19,-1.3552527156068805e-20,0.0012755101779475808,-7.589415207398531e-19,-8.402566836762659e-19,0.005102040711790323,6.776263578034403e-18,-0.0020408162381500006,-0.001700680237263441,-3.3986419458803e-18,2.313360832607994e-21,-5.421010862427522e-20,-7.589415207398531e-19,0.0006802721181884408,5.421010862427522e-20,0.003306878264993429,1.1492543028346347e-17,4.0115480381963664e-18,-0.003968254197388887,-5.727341072264591e-18,3.546660468736849e-21,-5.421010862427522e-20,-8.402566836762659e-19,5.421010862427522e-20,0.0006613756413571537,3.0,6.0,8.0,0.16187168657779694,-0.0778769850730896,-0.0473710335791111,-0.0376984141767025,0.010416666977107525,0.008928571827709675,0.0069444444961845875,0.0037202381063252687,0.003968254197388887,0.002314814832061529,-0.0778769850730896,0.18204365670681,0.008928571827709675,0.0069444444961845875,-0.0625,-0.008928571827709675,-0.0069444444961845875,1.3629970286557858e-17,5.149960319306146e-18,8.023096076392733e-18,-0.0473710335791111,0.008928571827709675,0.03940972313284874,0.003968254197388887,4.967091530822108e-17,-0.0035714285913854837,-1.6263032587282567e-19,-0.005580357275903225,-0.0015873016091063619,2.4936649967166602e-18,-0.0376984141767025,0.0069444444961845875,0.003968254197388887,0.022345049306750298,4.0642093338416973e-17,-8.2508411335117e-33,-0.0019841270986944437,3.353686333949268e-18,-0.0011337868636474013,-0.002314814832061529,0.010416666977107525,-0.0625,4.967091530822108e-17,4.0642093338416973e-17,0.03125,-6.3441316047372065e-18,-7.049035484010502e-18,-6.814985143278929e-18,-2.6433882031063616e-18,-3.854941241544152e-18,0.008928571827709675,-0.008928571827709675,-0.0035714285913854837,-8.2508411335117e-33,-6.3441316047372065e-18,0.0035714285913854837,1.4310402105353294e-33,1.3835251676716579e-33,5.366400789507485e-34,7.826001495748193e-34,0.0069444444961845875,-0.0069444444961845875,-1.6263032587282567e-19,-0.0019841270986944437,-7.049035484010502e-18,1.4310402105353294e-33,0.0019841270986944437,1.4925957069001078e-33,8.131516293641283e-20,0.0,0.0037202381063252687,1.3629970286557858e-17,-0.005580357275903225,3.353686333949268e-18,-6.814985143278929e-18,1.3835251676716579e-33,1.4925957069001078e-33,0.0011160714784637094,2.0050188548977106e-19,-5.507058842636234e-19,0.003968254197388887,5.149960319306146e-18,-0.0015873016091063619,-0.0011337868636474013,-2.6433882031063616e-18,5.366400789507485e-34,8.131516293641283e-20,2.0050188548977106e-19,0.00045351474545896053,8.131516293641283e-20,0.002314814832061529,8.023096076392733e-18,2.4936649967166602e-18,-0.002314814832061529,-3.854941241544152e-18,7.826001495748193e-34,0.0,-5.507058842636234e-19,8.131516293641283e-20,0.0003306878206785768,3.0,6.0,9.0,0.14710597693920135,-0.06984127312898636,-0.04246031865477562,-0.030663780868053436,0.009259259328246117,0.007936508394777775,0.0055555556900799274,0.003306878264993429,0.0031746032182127237,0.001683501643128693,-0.06984127312898636,0.16243386268615723,0.007936508394777775,0.0055555556900799274,-0.0555555559694767,-0.007936508394777775,-0.0055555556900799274,1.2115529143606984e-17,4.2825985813177425e-18,5.5294310796760726e-18,-0.04246031865477562,0.007936508394777775,0.035171955823898315,0.0031746032182127237,4.8772957813735565e-17,-0.0031746032182127237,5.421010862427522e-20,-0.004960317630320787,-0.0012698412174358964,2.0057740190981832e-18,-0.030663780868053436,0.0055555556900799274,0.0031746032182127237,0.015842953696846962,3.146076904216014e-17,-1.1354525316610679e-32,-0.0013888889225199819,4.544745765915904e-18,-0.0007936508045531809,-0.0014430014416575432,0.009259259328246117,-0.0555555559694767,4.8772957813735565e-17,3.146076904216014e-17,0.02777777798473835,-1.002529419370285e-17,-4.386066468238938e-18,-6.057764571803492e-18,-2.11471060384412e-18,-2.7234909260599248e-18,0.007936508394777775,-0.007936508394777775,-0.0031746032182127237,-1.1354525316610679e-32,-1.002529419370285e-17,0.0031746032182127237,1.5829778144959026e-33,2.186311493985973e-33,7.6322143643529275e-34,9.829367130495847e-34,0.0055555556900799274,-0.0055555556900799274,5.421010862427522e-20,-0.0013888889225199819,-4.386066468238938e-18,1.5829778144959026e-33,0.0013888889225199819,9.62964972193618e-34,-2.710505431213761e-20,0.0,0.003306878264993429,1.2115529143606984e-17,-0.004960317630320787,4.544745765915904e-18,-6.057764571803492e-18,2.186311493985973e-33,9.62964972193618e-34,0.0009920635493472219,-5.728739627885265e-19,-3.89070113830422e-19,0.0031746032182127237,4.2825985813177425e-18,-0.0012698412174358964,-0.0007936508045531809,-2.11471060384412e-18,7.6322143643529275e-34,-2.710505431213761e-20,-5.728739627885265e-19,0.0003174603043589741,-2.710505431213761e-20,0.001683501643128693,5.5294310796760726e-18,2.0057740190981832e-18,-0.0014430014416575432,-2.7234909260599248e-18,9.829367130495847e-34,0.0,-3.89070113830422e-19,-2.710505431213761e-20,0.0001803751802071929,3.0,6.0,10.0,0.13481241464614868,-0.06331168860197067,-0.03847402706742287,-0.025432899594306946,0.008333333767950535,0.0071428571827709675,0.004545454401522875,0.0029761905316263437,0.002597402548417449,0.0012626262614503503,-0.06331168860197067,0.14664502441883087,0.0071428571827709675,0.004545454401522875,-0.05000000074505806,-0.0071428571827709675,-0.004545454401522875,-6.288372600415926e-18,-4.7704895589362195e-18,-5.936006894358137e-18,-0.03847402706742287,0.0071428571827709675,0.03175865858793259,0.002597402548417449,-8.077306185017008e-18,-0.0028571428265422583,-3.876022766635678e-18,-0.004464285913854837,-0.0010389609960839152,-3.9776667203061944e-18,-0.025432899594306946,0.004545454401522875,0.002597402548417449,0.011649230495095253,-2.8406096919120216e-17,-6.288372600415926e-18,-0.001010101055726409,-7.37257477290143e-18,-0.0005772005533799529,-0.0009469697251915932,0.008333333767950535,-0.05000000074505806,-8.077306185017008e-18,-2.8406096919120216e-17,0.02500000037252903,3.542574267596671e-18,4.148762412567888e-18,-8.941137929741342e-19,1.5387252011814751e-18,2.019326546254252e-18,0.0071428571827709675,-0.0071428571827709675,-0.0028571428265422583,-6.288372600415926e-18,3.542574267596671e-18,0.0028571428265422583,6.2341624917916505e-19,2.1141942363467336e-18,5.963111948670274e-19,4.9608280571853105e-19,0.004545454401522875,-0.004545454401522875,-3.876022766635678e-18,-0.001010101055726409,4.148762412567888e-18,6.2341624917916505e-19,0.001010101055726409,5.421010862427522e-19,5.421010862427522e-20,1.398795503051672e-19,0.0029761905316263437,-6.288372600415926e-18,-0.004464285913854837,-7.37257477290143e-18,-8.941137929741342e-19,2.1141942363467336e-18,5.421010862427522e-19,0.0008928571478463709,4.607859233063394e-19,5.723684520366801e-19,0.002597402548417449,-4.7704895589362195e-18,-0.0010389609960839152,-0.0005772005533799529,1.5387252011814751e-18,5.963111948670274e-19,5.421010862427522e-20,4.607859233063394e-19,0.0002308802359038964,8.446823325979719e-20,0.0012626262614503503,-5.936006894358137e-18,-3.9776667203061944e-18,-0.0009469697251915932,2.019326546254252e-18,4.9608280571853105e-19,1.398795503051672e-19,5.723684520366801e-19,8.446823325979719e-20,0.00010521885269554332,3.0,6.0,11.0,0.1244172528386116,-0.057900432497262955,-0.03517315909266472,-0.021436896175146103,0.007575757801532745,0.006493506487458944,0.0037878789007663727,0.0027056278195232153,0.0021645021624863148,0.0009712509927339852,-0.057900432497262955,0.1336580067873001,0.006493506487458944,0.0037878789007663727,-0.04545454680919647,-0.006493506487458944,-0.0037878789007663727,2.6454533008646308e-17,3.686287386450715e-18,-3.0831999280056532e-18,-0.03517315909266472,0.006493506487458944,0.028950216248631477,0.0021645021624863148,6.342582709040201e-17,-0.002597402548417449,3.713392440762853e-18,-0.004058441612869501,-0.0008658008882775903,-2.791820594150174e-18,-0.021436896175146103,0.0037878789007663727,0.0021645021624863148,0.008819883689284325,1.5178830414797062e-18,-4.553649124439119e-18,-0.0007575757335871458,-2.7647155398380363e-18,-0.00043290044413879514,-0.0006475006230175495,0.007575757801532745,-0.04545454680919647,6.342582709040201e-17,1.5178830414797062e-18,0.022727273404598236,-6.773810573927877e-18,-3.8054605380721486e-18,-8.797579493661845e-18,-1.8294579899906677e-18,6.572975670693371e-19,0.006493506487458944,-0.006493506487458944,-0.002597402548417449,-4.553649124439119e-18,-6.773810573927877e-18,0.002597402548417449,0.0,-1.7618285302889447e-18,1.8973538018496328e-19,4.1067989714064015e-19,0.0037878789007663727,-0.0037878789007663727,3.713392440762853e-18,-0.0007575757335871458,-3.8054605380721486e-18,0.0,0.0007575757335871458,-6.640738306473715e-19,-6.776263578034403e-20,1.0201266296621302e-19,0.0027056278195232153,2.6454533008646308e-17,-0.004058441612869501,-2.7647155398380363e-18,-8.797579493661845e-18,-1.7618285302889447e-18,-6.640738306473715e-19,0.000811688310932368,-1.4907779871675686e-19,3.640567407934896e-19,0.0021645021624863148,3.686287386450715e-18,-0.0008658008882775903,-0.00043290044413879514,-1.8294579899906677e-18,1.8973538018496328e-19,-6.776263578034403e-20,-1.4907779871675686e-19,0.00017316016601398587,8.03077215738086e-20,0.0009712509927339852,-3.0831999280056532e-18,-2.791820594150174e-18,-0.0006475006230175495,6.572975670693371e-19,4.1067989714064015e-19,1.0201266296621302e-19,3.640567407934896e-19,8.03077215738086e-20,6.475006375694647e-05,3.0,6.0,12.0,0.11551180481910706,-0.05334249138832092,-0.032394688576459885,-0.018315019086003304,0.0069444444961845875,0.0059523810632526875,0.0032051282469183207,0.0024801588151603937,0.0018315018387511373,0.000763125775847584,-0.05334249138832092,0.12278693169355392,0.0059523810632526875,0.0032051282469183207,-0.0416666679084301,-0.0059523810632526875,-0.0032051282469183207,1.3227266504323154e-17,5.204170427930421e-18,2.046417331700823e-18,-0.032394688576459885,0.0059523810632526875,0.026598747819662094,0.0018315018387511373,4.041363597939718e-17,-0.0023809524718672037,1.6263032587282567e-18,-0.0037202381063252687,-0.0007326007471419871,-1.2197274440461925e-19,-0.018315019086003304,0.0032051282469183207,0.0018315018387511373,0.006840381771326065,1.496198998029996e-17,6.505213034913027e-19,-0.0005827505956403911,2.1141942363467336e-18,-0.0003330003237351775,-0.0004578754596877843,0.0069444444961845875,-0.0416666679084301,4.041363597939718e-17,1.496198998029996e-17,0.02083333395421505,-7.422868181325267e-18,1.2468324983583301e-18,-3.51048007341992e-18,-2.0642230147714864e-18,-8.402566836762659e-19,0.0059523810632526875,-0.0059523810632526875,-0.0023809524718672037,6.505213034913027e-19,-7.422868181325267e-18,0.0023809524718672037,-2.710505431213761e-20,-1.7889335846010823e-18,-1.8973538018496328e-19,-1.2041545250127886e-20,0.0032051282469183207,-0.0032051282469183207,1.6263032587282567e-18,-0.0005827505956403911,1.2468324983583301e-18,-2.710505431213761e-20,0.0005827505956403911,-2.439454888092385e-19,-6.098637220230962e-20,-1.8211208365967457e-20,0.0024801588151603937,1.3227266504323154e-17,-0.0037202381063252687,2.1141942363467336e-18,-3.51048007341992e-18,-1.7889335846010823e-18,-2.439454888092385e-19,0.0007440476329065859,-7.318364664277155e-19,1.983174727442547e-20,0.0018315018387511373,5.204170427930421e-18,-0.0007326007471419871,-0.0003330003237351775,-2.0642230147714864e-18,-1.8973538018496328e-19,-6.098637220230962e-20,-7.318364664277155e-19,0.00013320012658368796,7.000137733853763e-23,0.000763125775847584,2.046417331700823e-18,-1.2197274440461925e-19,-0.0004578754596877843,-8.402566836762659e-19,-1.2041545250127886e-20,-1.8211208365967457e-20,1.983174727442547e-20,7.000137733853763e-23,4.162504046689719e-05,3.0,6.0,13.0,0.10779696702957153,-0.049450550228357315,-0.030023548752069473,-0.015829408541321754,0.006410256493836641,0.005494505632668734,0.002747252816334367,0.002289377385750413,0.0015698587521910667,0.0006105006323195994,-0.049450550228357315,0.11355311423540115,0.005494505632668734,0.002747252816334367,-0.03846153989434242,-0.005494505632668734,-0.002747252816334367,-9.540979117872439e-18,-1.3010426069826053e-18,-1.8576191471498824e-18,-0.030023548752069473,0.005494505632668734,0.02460099384188652,0.0015698587521910667,-1.916327339868129e-17,-0.002197802299633622,1.3010426069826053e-18,-0.0034340659622102976,-0.0006279434892348945,8.300922883092143e-19,-0.015829408541321754,0.002747252816334367,0.0015698587521910667,0.005413237493485212,-4.7704895589362195e-18,-7.589415207398531e-19,-0.0004578754596877843,1.7889335846010823e-18,-0.00026164311566390097,-0.0003330003237351775,0.006410256493836641,-0.03846153989434242,-1.916327339868129e-17,-4.7704895589362195e-18,0.01923076994717121,-4.6900177066343045e-18,-4.824699667560495e-18,3.986582072948291e-18,5.381368748558801e-19,6.776263578034403e-19,0.005494505632668734,-0.005494505632668734,-0.002197802299633622,-7.589415207398531e-19,-4.6900177066343045e-18,0.002197802299633622,-3.5236570605778894e-19,8.131516293641283e-19,2.168404344971009e-19,4.0307832703112804e-20,0.002747252816334367,-0.002747252816334367,1.3010426069826053e-18,-0.0004578754596877843,-4.824699667560495e-18,-3.5236570605778894e-19,0.0004578754596877843,-1.6263032587282567e-19,-4.743384504624082e-20,4.870439446712227e-20,0.002289377385750413,-9.540979117872439e-18,-0.0034340659622102976,1.7889335846010823e-18,3.986582072948291e-18,8.131516293641283e-19,-1.6263032587282567e-19,0.0006868132040835917,7.453889935837843e-20,-1.611405994390118e-19,0.0015698587521910667,-1.3010426069826053e-18,-0.0006279434892348945,-0.00026164311566390097,5.381368748558801e-19,2.168404344971009e-19,-4.743384504624082e-20,7.453889935837843e-20,0.00010465725063113496,-1.3776563855099965e-20,0.0006105006323195994,-1.8576191471498824e-18,8.300922883092143e-19,-0.0003330003237351775,6.776263578034403e-19,4.0307832703112804e-20,4.870439446712227e-20,-1.611405994390118e-19,-1.3776563855099965e-20,2.775002758426126e-05,3.0,6.0,14.0,0.10104875266551971,-0.046088434755802155,-0.02797619067132473,-0.013818027451634407,0.0059523810632526875,0.005102040711790323,0.0023809524718672037,0.002125850412994623,0.0013605442363768816,0.0004960317746736109,-0.046088434755802155,0.10561224818229675,0.005102040711790323,0.0023809524718672037,-0.0357142873108387,-0.005102040711790323,-0.0023809524718672037,-1.4094628242311558e-17,-4.553649124439119e-18,1.2190830703490137e-18,-0.02797619067132473,0.005102040711790323,0.022882653400301933,0.0013605442363768816,-4.466912950640278e-17,-0.0020408162381500006,-2.4936649967166602e-18,-0.0031887756194919348,-0.0005442177061922848,7.115076756936123e-20,-0.013818027451634407,0.0023809524718672037,0.0013605442363768816,0.004357993137091398,2.710505431213761e-18,-6.505213034913027e-19,-0.00036630037357099354,-1.1926223897340549e-18,-0.00020931450126226991,-0.00024801588733680546,0.0059523810632526875,-0.0357142873108387,-4.466912950640278e-17,2.710505431213761e-18,0.01785714365541935,3.2968385531467145e-18,-2.439454888092385e-19,5.459877184279245e-18,1.6307844062991861e-18,-5.149960319306146e-19,0.005102040711790323,-0.005102040711790323,-0.0020408162381500006,-6.505213034913027e-19,3.2968385531467145e-18,0.0020408162381500006,7.047314121155779e-19,4.743384504624082e-19,2.0328790734103208e-19,-2.858599841429163e-20,0.0023809524718672037,-0.0023809524718672037,-2.4936649967166602e-18,-0.00036630037357099354,-2.439454888092385e-19,7.047314121155779e-19,0.00036630037357099354,2.1006417091906648e-19,8.131516293641283e-20,-1.3129010682441655e-20,0.002125850412994623,-1.4094628242311558e-17,-0.0031887756194919348,-1.1926223897340549e-18,5.459877184279245e-18,4.743384504624082e-19,2.1006417091906648e-19,0.0006377550889737904,4.980553729855286e-19,-2.733669396422087e-20,0.0013605442363768816,-4.553649124439119e-18,-0.0005442177061922848,-0.00020931450126226991,1.6307844062991861e-18,2.0328790734103208e-19,8.131516293641283e-20,4.980553729855286e-19,8.372579759452492e-05,1.2868093360317995e-20,0.0004960317746736109,1.2190830703490137e-18,7.115076756936123e-20,-0.00024801588733680546,-5.149960319306146e-19,-2.858599841429163e-20,-1.3129010682441655e-20,-2.733669396422087e-20,1.2868093360317995e-20,1.907814475998748e-05,3.0,6.0,15.0,0.09509609639644623,-0.0431547611951828,-0.02619047649204731,-0.012167367152869701,0.0055555556900799274,0.004761904943734407,0.0020833334419876337,0.0019841270986944437,0.0011904762359336019,0.00040849673678167164,-0.0431547611951828,0.0987103208899498,0.004761904943734407,0.0020833334419876337,-0.03333333507180214,-0.004761904943734407,-0.0020833334419876337,2.8189256484623115e-18,5.095750210681871e-18,4.3021477543245145e-18,-0.02619047649204731,0.004761904943734407,0.021388888359069824,0.0011904762359336019,2.279535067650773e-17,-0.0019047618843615055,2.3852447794681098e-18,-0.0029761905316263437,-0.0004761904710903764,1.506024580218146e-18,-0.012167367152869701,0.0020833334419876337,0.0011904762359336019,0.0035607190802693367,2.1358782797964437e-17,6.938893903907228e-18,-0.00029761905898340046,3.144186300207963e-18,-0.0001700680295471102,-0.0001885369565570727,0.0055555556900799274,-0.03333333507180214,2.279535067650773e-17,2.1358782797964437e-17,0.01666666753590107,-7.504975783288505e-18,-1.0570971181733668e-18,-8.711295456785826e-19,-1.1618751557872697e-18,-1.2061749168901237e-18,0.004761904943734407,-0.004761904943734407,-0.0019047618843615055,6.938893903907228e-18,-7.504975783288505e-18,0.0019047618843615055,-9.486769009248164e-19,-5.827586677109586e-19,-5.285485590866834e-19,-3.338270634162212e-19,0.0020833334419876337,-0.0020833334419876337,2.3852447794681098e-18,-0.00029761905898340046,-1.0570971181733668e-18,-9.486769009248164e-19,0.00029761905898340046,3.3881317890172014e-20,-1.6601845766184287e-19,-1.1159659080075407e-19,0.0019841270986944437,2.8189256484623115e-18,-0.0029761905316263437,3.144186300207963e-18,-8.711295456785826e-19,-5.827586677109586e-19,3.3881317890172014e-20,0.0005952381179668009,-4.743384504624082e-19,-1.4340358528388744e-19,0.0011904762359336019,5.095750210681871e-18,-0.0004761904710903764,-0.0001700680295471102,-1.1618751557872697e-18,-5.285485590866834e-19,-1.6601845766184287e-19,-4.743384504624082e-19,6.80272132740356e-05,-4.463165116776953e-20,0.00040849673678167164,4.3021477543245145e-18,1.506024580218146e-18,-0.0001885369565570727,-1.2061749168901237e-18,-3.338270634162212e-19,-1.1159659080075407e-19,-1.4340358528388744e-19,-4.463165116776953e-20,1.3466925338434521e-05,3.0,6.0,16.0,0.08980606496334076,-0.040572479367256165,-0.024619223549962044,-0.010795985348522663,0.0052083334885537624,0.004464285913854837,0.0018382353009656072,0.0018601190531626344,0.0010504202218726277,0.0003404139424674213,-0.040572479367256165,0.09265581518411636,0.004464285913854837,0.0018382353009656072,-0.03125,-0.004464285913854837,-0.0018382353009656072,4.228388472693467e-18,1.734723475976807e-18,1.2343254240989518e-18,-0.024619223549962044,0.004464285913854837,0.020078344270586967,0.0010504202218726277,-1.2576745200831851e-17,-0.0017857142956927419,4.7704895589362195e-18,-0.0027901786379516125,-0.0004201680712867528,2.1785687403380605e-18,-0.010795985348522663,0.0018382353009656072,0.0010504202218726277,0.002947012195363641,8.673617379884035e-19,5.312590645178972e-18,-0.00024509805371053517,5.908901840045999e-18,-0.00014005602861288935,-0.00014589169586542994,0.0052083334885537624,-0.03125,-1.2576745200831851e-17,8.673617379884035e-19,0.015625,7.411636722968022e-18,2.222614453595284e-18,3.294897418742994e-19,2.425070992721912e-19,-2.303929616531697e-19,0.004464285913854837,-0.004464285913854837,-0.0017857142956927419,5.312590645178972e-18,7.411636722968022e-18,0.0017857142956927419,-7.589415207398531e-19,2.168404344971009e-19,-3.8624702394796095e-19,-2.1708525410902244e-19,0.0018382353009656072,-0.0018382353009656072,4.7704895589362195e-18,-0.00024509805371053517,2.222614453595284e-18,-7.589415207398531e-19,0.00024509805371053517,-5.55653613398821e-19,-1.2874900798265365e-19,-2.4087499437544166e-20,0.0018601190531626344,4.228388472693467e-18,-0.0027901786379516125,5.908901840045999e-18,3.294897418742994e-19,2.168404344971009e-19,-5.55653613398821e-19,0.0005580357392318547,-1.8973538018496328e-19,-3.012317528846277e-19,0.0010504202218726277,1.734723475976807e-18,-0.0004201680712867528,-0.00014005602861288935,2.425070992721912e-19,-3.8624702394796095e-19,-1.2874900798265365e-19,-1.8973538018496328e-19,5.602241071755998e-05,-4.6626940052218144e-20,0.0003404139424674213,1.2343254240989518e-18,2.1785687403380605e-18,-0.00014589169586542994,-2.303929616531697e-19,-2.1708525410902244e-19,-2.4087499437544166e-20,-3.012317528846277e-19,-4.6626940052218144e-20,9.726112693897448e-06,3.0,7.0,3.0,0.29100528359413147,-0.1607142835855484,-0.0873015895485878,-0.1607142835855484,0.02380952425301075,0.01785714365541935,0.0357142873108387,0.006613756529986858,0.01785714365541935,0.02380952425301075,-0.1607142835855484,0.3988095223903656,0.01785714365541935,0.0357142873108387,-0.1428571492433548,-0.01785714365541935,-0.0357142873108387,-2.8189256484623115e-17,-1.734723475976807e-18,8.965179355218766e-17,-0.0873015895485878,0.01785714365541935,0.0634920671582222,0.01785714365541935,-9.8879238130678e-17,-0.0059523810632526875,-1.734723475976807e-17,-0.007936508394777775,-0.0059523810632526875,1.6247165608772574e-17,-0.1607142835855484,0.0357142873108387,0.01785714365541935,0.3988095223903656,6.054988553667764e-17,1.3382372795344197e-17,-0.0357142873108387,-8.673617379884035e-19,-0.01785714365541935,-0.1428571492433548,0.02380952425301075,-0.1428571492433548,-9.8879238130678e-17,6.054988553667764e-17,0.0714285746216774,3.9898639947466563e-17,-8.673617379884035e-18,8.890457814381136e-18,1.0842021724855044e-18,-2.5852825287462985e-17,0.01785714365541935,-0.01785714365541935,-0.0059523810632526875,1.3382372795344197e-17,3.9898639947466563e-17,0.0059523810632526875,4.336808689942018e-19,1.8973538018496328e-18,4.336808689942018e-19,-7.380983891008644e-18,0.0357142873108387,-0.0357142873108387,-1.734723475976807e-17,-0.0357142873108387,-8.673617379884035e-18,4.336808689942018e-19,0.0357142873108387,2.927345865710862e-18,-3.0357660829594124e-18,-1.2140570382290802e-17,0.006613756529986858,-2.8189256484623115e-17,-0.007936508394777775,-8.673617379884035e-19,8.890457814381136e-18,1.8973538018496328e-18,2.927345865710862e-18,0.0013227512827143073,9.215718466126788e-19,-2.4135827464832577e-18,0.01785714365541935,-1.734723475976807e-18,-0.0059523810632526875,-0.01785714365541935,1.0842021724855044e-18,4.336808689942018e-19,-3.0357660829594124e-18,9.215718466126788e-19,0.0059523810632526875,-2.4218191906376013e-18,0.02380952425301075,8.965179355218766e-17,1.6247165608772574e-17,-0.1428571492433548,-2.5852825287462985e-17,-7.380983891008644e-18,-1.2140570382290802e-17,-2.4135827464832577e-18,-2.4218191906376013e-18,0.0714285746216774,3.0,7.0,4.0,0.24117062985897064,-0.12589286267757416,-0.06815475970506668,-0.10357142984867096,0.01785714365541935,0.013392857275903225,0.02142857201397419,0.004960317630320787,0.010714286006987095,0.011904762126505375,-0.12589286267757416,0.30446428060531616,0.013392857275903225,0.02142857201397419,-0.1071428582072258,-0.013392857275903225,-0.02142857201397419,-3.165870343657673e-17,-1.9081958235744878e-17,-3.7550204705257063e-17,-0.06815475970506668,0.013392857275903225,0.04851190373301506,0.010714286006987095,-7.112366251504909e-17,-0.004464285913854837,-1.9081958235744878e-17,-0.0059523810632526875,-0.0035714285913854837,-2.0437904128705078e-17,-0.10357142984867096,0.02142857201397419,0.010714286006987095,0.15238095819950104,5.364222018243613e-18,-8.722483901751218e-18,-0.014285714365541935,-8.782037597132586e-18,-0.0071428571827709675,-0.0357142873108387,0.01785714365541935,-0.1071428582072258,-7.112366251504909e-17,5.364222018243613e-18,0.0535714291036129,2.6020852139652106e-18,-2.688821387764051e-17,1.0625181290357943e-17,4.553649124439119e-18,2.1524409999196543e-18,0.013392857275903225,-0.013392857275903225,-0.004464285913854837,-8.722483901751218e-18,2.6020852139652106e-18,0.004464285913854837,-2.6020852139652106e-18,1.3010426069826053e-18,1.1926223897340549e-18,2.114638845925981e-18,0.02142857201397419,-0.02142857201397419,-1.9081958235744878e-17,-0.014285714365541935,-2.688821387764051e-17,-2.6020852139652106e-18,0.014285714365541935,2.927345865710862e-18,1.734723475976807e-18,1.1874074295622143e-17,0.004960317630320787,-3.165870343657673e-17,-0.0059523810632526875,-8.782037597132586e-18,1.0625181290357943e-17,1.3010426069826053e-18,2.927345865710862e-18,0.0009920635493472219,7.589415207398531e-19,1.0361420483179844e-18,0.010714286006987095,-1.9081958235744878e-17,-0.0035714285913854837,-0.0071428571827709675,4.553649124439119e-18,1.1926223897340549e-18,1.734723475976807e-18,7.589415207398531e-19,0.0023809524718672037,8.3698592881617e-18,0.011904762126505375,-3.7550204705257063e-17,-2.0437904128705078e-17,-0.0357142873108387,2.1524409999196543e-18,2.114638845925981e-18,1.1874074295622143e-17,1.0361420483179844e-18,8.3698592881617e-18,0.011904762126505375,3.0,7.0,5.0,0.20606575906276703,-0.10357142984867096,-0.05595238134264946,-0.0724489763379097,0.014285714365541935,0.010714286006987095,0.014285714365541935,0.003968254197388887,0.0071428571827709675,0.006802720949053764,-0.10357142984867096,0.24642856419086456,0.010714286006987095,0.014285714365541935,-0.08571428805589676,-0.010714286006987095,-0.014285714365541935,2.5017965130103015e-17,7.589415207398531e-18,-2.71891355670424e-17,-0.05595238134264946,0.010714286006987095,0.03928571566939354,0.0071428571827709675,1.0547118601590089e-16,-0.0035714285913854837,-2.900174430154567e-18,-0.004761904943734407,-0.0023809524718672037,-3.979606293406509e-17,-0.0724489763379097,0.014285714365541935,0.0071428571827709675,0.07704081386327744,-1.0535789535920563e-17,-2.6307733265336522e-17,-0.0071428571827709675,-2.5153490401663703e-17,-0.0035714285913854837,-0.013605441898107529,0.014285714365541935,-0.08571428805589676,1.0547118601590089e-16,-1.0535789535920563e-17,0.04285714402794838,-1.189524681058105e-17,-9.659521237442481e-33,-1.2423924409843292e-17,-5.551115205843844e-18,6.7972838917606e-18,0.010714286006987095,-0.010714286006987095,-0.0035714285913854837,-2.6307733265336522e-17,-1.189524681058105e-17,0.0035714285913854837,2.900174430154567e-18,1.0842021724855044e-19,1.2197274440461925e-18,4.5315224566436314e-18,0.014285714365541935,-0.014285714365541935,-2.900174430154567e-18,-0.0071428571827709675,-9.659521237442481e-33,2.900174430154567e-18,0.0071428571827709675,9.62964972193618e-35,9.870390964984584e-34,3.679817474323999e-33,0.003968254197388887,2.5017965130103015e-17,-0.004761904943734407,-2.5153490401663703e-17,-1.2423924409843292e-17,1.0842021724855044e-19,9.62964972193618e-35,0.0007936508045531809,1.6805133673525319e-18,4.5315224566436314e-18,0.0071428571827709675,7.589415207398531e-18,-0.0023809524718672037,-0.0035714285913854837,-5.551115205843844e-18,1.2197274440461925e-18,9.870390964984584e-34,1.6805133673525319e-18,0.0011904762359336019,3.660076100790441e-18,0.006802720949053764,-2.71891355670424e-17,-3.979606293406509e-17,-0.013605441898107529,6.7972838917606e-18,4.5315224566436314e-18,3.679817474323999e-33,4.5315224566436314e-18,3.660076100790441e-18,0.003401360474526882,3.0,7.0,6.0,0.17994141578674316,-0.08801020681858063,-0.047477323561906815,-0.0535714291036129,0.011904762126505375,0.008928571827709675,0.010204081423580647,0.003306878264993429,0.005102040711790323,0.004251700825989246,-0.08801020681858063,0.20705781877040863,0.008928571827709675,0.010204081423580647,-0.0714285746216774,-0.008928571827709675,-0.010204081423580647,1.1438332919722072e-17,6.559423143537302e-18,1.5612511283791264e-17,-0.047477323561906815,0.008928571827709675,0.03302154317498207,0.005102040711790323,4.890267958611858e-17,-0.0029761905316263437,-3.2526065174565133e-19,-0.003968254197388887,-0.001700680237263441,-4.336808689942018e-19,-0.0535714291036129,0.010204081423580647,0.005102040711790323,0.04481292515993118,5.742490967901561e-17,7.773803330212434e-20,-0.004081632476300001,1.8143791853574678e-19,-0.0020408162381500006,-0.0063775512389838696,0.011904762126505375,-0.0714285746216774,4.890267958611858e-17,5.742490967901561e-17,0.0357142873108387,-6.0420299421915085e-18,-8.2862123030785e-18,-5.727341072264591e-18,-3.3986419458803e-18,-7.788553976786997e-18,0.008928571827709675,-0.008928571827709675,-0.0029761905316263437,7.773803330212434e-20,-6.0420299421915085e-18,0.0029761905316263437,-3.042404018351456e-22,-5.421010862427522e-20,-3.54025183847348e-21,1.7555686713668006e-21,0.010204081423580647,-0.010204081423580647,-3.2526065174565133e-19,-0.004081632476300001,-8.2862123030785e-18,-3.042404018351456e-22,0.004081632476300001,6.776263578034403e-21,1.3552527156068805e-19,-1.0842021724855044e-19,0.003306878264993429,1.1438332919722072e-17,-0.003968254197388887,1.8143791853574678e-19,-5.727341072264591e-18,-5.421010862427522e-20,6.776263578034403e-21,0.0006613756413571537,-5.421010862427522e-20,1.3552527156068805e-20,0.005102040711790323,6.559423143537302e-18,-0.001700680237263441,-0.0020408162381500006,-3.3986419458803e-18,-3.54025183847348e-21,1.3552527156068805e-19,-5.421010862427522e-20,0.0006802721181884408,1.6263032587282567e-19,0.004251700825989246,1.5612511283791264e-17,-4.336808689942018e-19,-0.0063775512389838696,-7.788553976786997e-18,1.7555686713668006e-21,-1.0842021724855044e-19,1.3552527156068805e-20,1.6263032587282567e-19,0.0012755101779475808,3.0,7.0,7.0,0.1597222238779068,-0.07653061300516129,-0.04124149680137634,-0.04124149680137634,0.010204081423580647,0.0076530613005161285,0.0076530613005161285,0.0028344672173261642,0.0038265306502580643,0.0028344672173261642,-0.07653061300516129,0.1785714328289032,0.0076530613005161285,0.0076530613005161285,-0.06122449040412903,-0.0076530613005161285,-0.0076530613005161285,1.0028870095490916e-17,5.637851296924623e-18,9.75781955236954e-18,-0.04124149680137634,0.0076530613005161285,0.02848639525473118,0.0038265306502580643,5.1077889973169676e-17,-0.0025510203558951616,1.3010426069826053e-18,-0.003401360474526882,-0.0012755101779475808,4.336808689942018e-19,-0.04124149680137634,0.0076530613005161285,0.0038265306502580643,0.02848639525473118,5.1077889973169676e-17,9.100126179377096e-19,-0.0025510203558951616,3.474126584097465e-20,-0.0012755101779475808,-0.003401360474526882,0.010204081423580647,-0.06122449040412903,5.1077889973169676e-17,5.1077889973169676e-17,0.030612245202064514,-1.397604859277963e-17,-1.397604859277963e-17,-4.909149431428177e-18,-2.548981459410225e-18,-4.909149431428177e-18,0.0076530613005161285,-0.0076530613005161285,-0.0025510203558951616,9.100126179377096e-19,-1.397604859277963e-17,0.0025510203558951616,-8.472114631702469e-19,-1.0842021724855044e-19,-4.074683296383118e-20,1.1633964120195886e-20,0.0076530613005161285,-0.0076530613005161285,1.3010426069826053e-18,-0.0025510203558951616,-1.397604859277963e-17,-8.472114631702469e-19,0.0025510203558951616,0.0,-1.3552527156068805e-19,5.421010862427522e-20,0.0028344672173261642,1.0028870095490916e-17,-0.003401360474526882,3.474126584097465e-20,-4.909149431428177e-18,-1.0842021724855044e-19,0.0,0.0005668934318237007,0.0,1.3552527156068805e-20,0.0038265306502580643,5.637851296924623e-18,-0.0012755101779475808,-0.0012755101779475808,-2.548981459410225e-18,-4.074683296383118e-20,-1.3552527156068805e-19,0.0,0.00042517005931586027,-1.3552527156068805e-19,0.0028344672173261642,9.75781955236954e-18,4.336808689942018e-19,-0.003401360474526882,-4.909149431428177e-18,1.1633964120195886e-20,5.421010862427522e-20,1.3552527156068805e-20,-1.3552527156068805e-19,0.0005668934318237007,3.0,7.0,8.0,0.143601194024086,-0.0677083358168602,-0.0364583320915699,-0.032738097012043,0.008928571827709675,0.0066964286379516125,0.0059523810632526875,0.0024801588151603937,0.0029761905316263437,0.0019841270986944437,-0.0677083358168602,0.1569940447807312,0.0066964286379516125,0.0059523810632526875,-0.0535714291036129,-0.0066964286379516125,-0.0059523810632526875,8.673617379884035e-18,4.2825985813177425e-18,6.613633252161577e-18,-0.0364583320915699,0.0066964286379516125,0.02504960261285305,0.0029761905316263437,3.950921324124395e-17,-0.0022321429569274187,2.710505431213761e-19,-0.0029761905316263437,-0.0009920635493472219,3.2526065174565133e-19,-0.032738097012043,0.0059523810632526875,0.0029761905316263437,0.019274376332759857,3.425615313038919e-17,-3.2767504255783695e-34,-0.001700680237263441,-7.322572428655636e-20,-0.0008503401186317205,-0.0019841270986944437,0.008928571827709675,-0.0535714291036129,3.950921324124395e-17,3.425615313038919e-17,0.02678571455180645,-6.7972838917606e-18,-5.178883103014369e-18,-4.29550590759602e-18,-1.9825412040285595e-18,-3.3042352021841637e-18,0.0066964286379516125,-0.0066964286379516125,-0.0022321429569274187,-3.2767504255783695e-34,-6.7972838917606e-18,0.0022321429569274187,3.3881317890172014e-21,-5.421010862427522e-20,-1.3552527156068805e-20,4.111022213109625e-21,0.0059523810632526875,-0.0059523810632526875,2.710505431213761e-19,-0.001700680237263441,-5.178883103014369e-18,3.3881317890172014e-21,0.001700680237263441,6.776263578034403e-21,-9.486769009248164e-20,2.710505431213761e-20,0.0024801588151603937,8.673617379884035e-18,-0.0029761905316263437,-7.322572428655636e-20,-4.29550590759602e-18,-5.421010862427522e-20,6.776263578034403e-21,0.0004960317746736109,0.0,6.776263578034403e-21,0.0029761905316263437,4.2825985813177425e-18,-0.0009920635493472219,-0.0008503401186317205,-1.9825412040285595e-18,-1.3552527156068805e-20,-9.486769009248164e-20,0.0,0.00028344671591185033,-1.0842021724855044e-19,0.0019841270986944437,6.613633252161577e-18,3.2526065174565133e-19,-0.0019841270986944437,-3.3042352021841637e-18,4.111022213109625e-21,2.710505431213761e-20,6.776263578034403e-21,-1.0842021724855044e-19,0.00028344671591185033,3.0,7.0,9.0,0.13044331967830658,-0.06071428582072258,-0.032671958208084106,-0.026623375713825226,0.007936508394777775,0.0059523810632526875,0.004761904943734407,0.002204585587605834,0.0023809524718672037,0.0014430014416575432,-0.06071428582072258,0.14007936418056488,0.0059523810632526875,0.004761904943734407,-0.0476190485060215,-0.0059523810632526875,-0.004761904943734407,7.636454487292584e-18,3.06287113727155e-18,4.716279450311944e-18,-0.032671958208084106,0.0059523810632526875,0.022354496642947197,0.0023809524718672037,3.4624188945971186e-17,-0.0019841270986944437,-1.0842021724855044e-19,-0.0026455025654286146,-0.0007936508045531809,-1.6263032587282567e-19,-0.026623375713825226,0.004761904943734407,0.0023809524718672037,0.013664708472788334,2.665588035027029e-17,-6.0127436032422354e-33,-0.0011904762359336019,-4.274684839423264e-33,-0.0005952381179668009,-0.0012368584284558892,0.007936508394777775,-0.0476190485060215,3.4624188945971186e-17,2.665588035027029e-17,0.02380952425301075,-5.3706934657659215e-18,-3.222416079459553e-18,-3.818227243646292e-18,-1.5860329011843016e-18,-2.3344207346813204e-18,0.0059523810632526875,-0.0059523810632526875,-0.0019841270986944437,-6.0127436032422354e-33,-5.3706934657659215e-18,0.0019841270986944437,7.268775388307677e-34,8.612741497654319e-34,3.5776005263383236e-34,5.265732096151538e-34,0.004761904943734407,-0.004761904943734407,-1.0842021724855044e-19,-0.0011904762359336019,-3.222416079459553e-18,7.268775388307677e-34,0.0011904762359336019,5.167645357770072e-34,3.3881317890172014e-20,-1.3552527156068805e-20,0.002204585587605834,7.636454487292584e-18,-0.0026455025654286146,-4.274684839423264e-33,-3.818227243646292e-18,8.612741497654319e-34,5.167645357770072e-34,0.00044091709423810244,2.5434504172415408e-34,3.7436065017908356e-34,0.0023809524718672037,3.06287113727155e-18,-0.0007936508045531809,-0.0005952381179668009,-1.5860329011843016e-18,3.5776005263383236e-34,3.3881317890172014e-20,2.5434504172415408e-34,0.00019841270113829523,3.3881317890172014e-20,0.0014430014416575432,4.716279450311944e-18,-1.6263032587282567e-19,-0.0012368584284558892,-2.3344207346813204e-18,5.265732096151538e-34,-1.3552527156068805e-20,3.7436065017908356e-34,3.3881317890172014e-20,0.00015460730355698615,3.0,7.0,10.0,0.11949855834245682,-0.05503246933221817,-0.029599567875266075,-0.02207792177796364,0.0071428571827709675,0.0053571430034935474,0.0038961039390414953,0.0019841270986944437,0.0019480519695207477,0.0010822510812431574,-0.05503246933221817,0.12646104395389557,0.0053571430034935474,0.0038961039390414953,-0.04285714402794838,-0.0053571430034935474,-0.0038961039390414953,1.2423924409843292e-17,2.1955093992831465e-18,-3.63207727782644e-18,-0.029599567875266075,0.0053571430034935474,0.020183982327580452,0.0019480519695207477,5.3997212186938774e-17,-0.0017857142956927419,-5.421010862427522e-19,-0.0023809524718672037,-0.0006493506371043622,-4.797594613248357e-18,-0.02207792177796364,0.0038961039390414953,0.0019480519695207477,0.010046897456049919,-3.1630542899802974e-18,-7.58339167817792e-18,-0.0008658008882775903,-7.25711111273699e-18,-0.00043290044413879514,-0.000811688310932368,0.0071428571827709675,-0.04285714402794838,5.3997212186938774e-17,-3.1630542899802974e-18,0.02142857201397419,-5.947623405290525e-18,-1.941357573057809e-33,-6.211962204921646e-18,-1.5139404918851253e-18,8.56097295804233e-19,0.0053571430034935474,-0.0053571430034935474,-0.0017857142956927419,-7.58339167817792e-18,-5.947623405290525e-18,0.0017857142956927419,7.030726047946794e-19,7.162649278757045e-33,3.244158159968991e-19,6.082796711500572e-19,0.0038961039390414953,-0.0038961039390414953,-5.421010862427522e-19,-0.0008658008882775903,-1.941357573057809e-33,7.030726047946794e-19,0.0008658008882775903,-9.62964972193618e-35,-3.3881317890172014e-20,0.0,0.0019841270986944437,1.2423924409843292e-17,-0.0023809524718672037,-7.25711111273699e-18,-6.211962204921646e-18,7.162649278757045e-33,-9.62964972193618e-35,0.00039682540227659047,3.6440358796409073e-19,6.207956892998088e-19,0.0019480519695207477,2.1955093992831465e-18,-0.0006493506371043622,-0.00043290044413879514,-1.5139404918851253e-18,3.244158159968991e-19,-3.3881317890172014e-20,3.6440358796409073e-19,0.00014430013834498823,8.131516293641283e-20,0.0010822510812431574,-3.63207727782644e-18,-4.797594613248357e-18,-0.000811688310932368,8.56097295804233e-19,6.082796711500572e-19,0.0,6.207956892998088e-19,8.131516293641283e-20,9.018759010359645e-05,3.0,7.0,11.0,0.11025086045265198,-0.05032467469573021,-0.02705627679824829,-0.01860639452934265,0.006493506487458944,0.004870129749178886,0.003246753243729472,0.001803751802071929,0.001623376621864736,0.0008325008093379438,-0.05032467469573021,0.11525973677635193,0.004870129749178886,0.003246753243729472,-0.03896103799343109,-0.004870129749178886,-0.003246753243729472,-3.1240041272374347e-18,-7.860465750519907e-19,-1.1926223897340549e-18,-0.02705627679824829,0.004870129749178886,0.018398268148303032,0.001623376621864736,-1.207547788552778e-17,-0.001623376621864736,3.2526065174565133e-19,-0.0021645021624863148,-0.0005411255406215787,3.3881317890172014e-19,-0.01860639452934265,0.003246753243729472,0.001623376621864736,0.007606282830238342,-8.091910058731632e-18,-0.0,-0.0006493506371043622,-6.488318311871201e-34,-0.0003246753185521811,-0.0005550005589611828,0.006493506487458944,-0.03896103799343109,-1.207547788552778e-17,-8.091910058731632e-18,0.019480518996715546,0.0,-3.675041890770539e-34,1.5620020636187173e-18,5.406930180450338e-19,6.469830901198954e-19,0.004870129749178886,-0.004870129749178886,-0.001623376621864736,-0.0,0.0,0.001623376621864736,0.0,0.0,0.0,0.0,0.003246753243729472,-0.003246753243729472,3.2526065174565133e-19,-0.0006493506371043622,-3.675041890770539e-34,0.0,0.0006493506371043622,-0.0,-6.776263578034403e-20,-6.776263578034403e-21,0.001803751802071929,-3.1240041272374347e-18,-0.0021645021624863148,-6.488318311871201e-34,1.5620020636187173e-18,0.0,-0.0,0.0003607503604143858,4.3354266388537714e-35,5.187690176722107e-35,0.001623376621864736,-7.860465750519907e-19,-0.0005411255406215787,-0.0003246753185521811,5.406930180450338e-19,0.0,-6.776263578034403e-20,4.3354266388537714e-35,0.00010822511103469878,-6.437450399132683e-20,0.0008325008093379438,-1.1926223897340549e-18,3.3881317890172014e-19,-0.0005550005589611828,6.469830901198954e-19,0.0,-6.776263578034403e-21,5.187690176722107e-35,-6.437450399132683e-20,5.550005516852252e-05,3.0,7.0,12.0,0.10233334451913834,-0.04635988920927048,-0.02491605654358864,-0.015894819051027298,0.0059523810632526875,0.004464285913854837,0.002747252816334367,0.0016534391324967146,0.0013736264081671834,0.0006541077746078372,-0.04635988920927048,0.10588370263576508,0.004464285913854837,0.002747252816334367,-0.0357142873108387,-0.004464285913854837,-0.002747252816334367,1.8756697583999227e-17,1.0842021724855044e-19,-5.515878552520004e-18,-0.02491605654358864,0.004464285913854837,0.016903236508369446,0.0013736264081671834,5.5077470362263625e-17,-0.0014880952658131719,3.1848438816761693e-18,-0.0019841270986944437,-0.0004578754596877843,-3.211948935988307e-18,-0.015894819051027298,0.002747252816334367,0.0013736264081671834,0.005898863077163696,-1.5829351718288365e-17,-6.5052130349130266e-18,-0.0004995004856027663,-2.710505431213761e-18,-0.00024975024280138314,-0.0003924646880477667,0.0059523810632526875,-0.0357142873108387,5.5077470362263625e-17,-1.5829351718288365e-17,0.01785714365541935,-7.410852555747322e-18,-1.227992942919552e-18,-6.952783920753219e-18,-4.952505586247261e-19,1.633079522306291e-18,0.004464285913854837,-0.004464285913854837,-0.0014880952658131719,-6.5052130349130266e-18,-7.410852555747322e-18,0.0014880952658131719,2.168404344971009e-19,-3.6591823321385775e-19,2.0328790734103208e-19,4.791192959090233e-19,0.002747252816334367,-0.002747252816334367,3.1848438816761693e-18,-0.0004995004856027663,-1.227992942919552e-18,2.168404344971009e-19,0.0004995004856027663,-5.624298769768554e-19,1.3552527156068805e-20,1.0327332499383504e-19,0.0016534391324967146,1.8756697583999227e-17,-0.0019841270986944437,-2.710505431213761e-18,-6.952783920753219e-18,-3.6591823321385775e-19,-5.624298769768554e-19,0.0003306878206785768,-1.7279472123987727e-19,3.4342915691249574e-19,0.0013736264081671834,1.0842021724855044e-19,-0.0004578754596877843,-0.00024975024280138314,-4.952505586247261e-19,2.0328790734103208e-19,1.3552527156068805e-20,-1.7279472123987727e-19,8.325008093379438e-05,9.184657446384509e-20,0.0006541077746078372,-5.515878552520004e-18,-3.211948935988307e-18,-0.0003924646880477667,1.633079522306291e-18,4.791192959090233e-19,1.0327332499383504e-19,3.4342915691249574e-19,9.184657446384509e-20,3.567860767361708e-05,3.0,7.0,13.0,0.09547793120145798,-0.04297488182783127,-0.023090004920959473,-0.01373626384884119,0.005494505632668734,0.004120879340916872,0.0023547881282866,0.001526251551695168,0.0011773940641433,0.0005232862313278019,-0.04297488182783127,0.09791993349790573,0.004120879340916872,0.0023547881282866,-0.032967034727334976,-0.004120879340916872,-0.0023547881282866,-6.613633252161577e-18,-2.168404344971009e-19,3.5914196963582334e-19,-0.023090004920959473,0.004120879340916872,0.015633177012205124,0.0011773940641433,-4.9060148304969076e-18,-0.0013736264081671834,-2.1141942363467336e-18,-0.0018315018387511373,-0.0003924646880477667,-1.3738874404464751e-18,-0.01373626384884119,0.0023547881282866,0.0011773940641433,0.004667951259762049,6.179952383167375e-18,-1.951563910473908e-18,-0.0003924646880477667,-3.550762114890027e-18,-0.00019623234402388334,-0.00028542886138893664,0.005494505632668734,-0.032967034727334976,-4.9060148304969076e-18,6.179952383167375e-18,0.016483517363667488,2.7785904606378477e-18,-5.358320394765777e-19,1.1111067388966745e-18,-5.627951806148742e-19,-2.236166980751353e-19,0.004120879340916872,-0.004120879340916872,-0.0013736264081671834,-1.951563910473908e-18,2.7785904606378477e-18,0.0013736264081671834,9.486769009248164e-20,5.692061405548898e-19,2.913793338554793e-19,5.1276053755109884e-20,0.0023547881282866,-0.0023547881282866,-2.1141942363467336e-18,-0.0003924646880477667,-5.358320394765777e-19,9.486769009248164e-20,0.0003924646880477667,2.846030702774449e-19,5.421010862427522e-20,-1.5064498609129234e-20,0.001526251551695168,-6.613633252161577e-18,-0.0018315018387511373,-3.550762114890027e-18,1.1111067388966745e-18,5.692061405548898e-19,2.846030702774449e-19,0.0003052503161597997,2.744386749103933e-19,1.8072752548592859e-19,0.0011773940641433,-2.168404344971009e-19,-0.0003924646880477667,-0.00019623234402388334,-5.627951806148742e-19,2.913793338554793e-19,5.421010862427522e-20,2.744386749103933e-19,6.541077891597524e-05,3.5736464284278245e-20,0.0005232862313278019,3.5914196963582334e-19,-1.3738874404464751e-18,-0.00028542886138893664,-2.236166980751353e-19,5.1276053755109884e-20,-1.5064498609129234e-20,1.8072752548592859e-19,3.5736464284278245e-20,2.3785738449078053e-05,3.0,7.0,14.0,0.08948412537574768,-0.04005102068185806,-0.02151360549032688,-0.011989795602858067,0.005102040711790323,0.0038265306502580643,0.0020408162381500006,0.0014172336086630821,0.0010204081190750003,0.00042517005931586027,-0.04005102068185806,0.09107142686843872,0.0038265306502580643,0.0020408162381500006,-0.030612245202064514,-0.0038265306502580643,-0.0020408162381500006,3.903127820947816e-18,-4.336808689942018e-19,2.947674656444965e-19,-0.02151360549032688,0.0038265306502580643,0.01454081665724516,0.0010204081190750003,4.4181238528784306e-18,-0.0012755101779475808,3.7947076036992655e-19,-0.001700680237263441,-0.0003401360590942204,2.202285662861181e-19,-0.011989795602858067,0.0020408162381500006,0.0010204081190750003,0.003757849335670471,-2.168404344971009e-18,8.673617379884035e-19,-0.00031397174461744726,6.2341624917916505e-19,-0.00015698587230872363,-0.00021258502965793014,0.005102040711790323,-0.030612245202064514,4.4181238528784306e-18,-2.168404344971009e-18,0.015306122601032257,5.047038888577118e-19,1.6042561036691511e-18,-9.091165745391616e-19,1.6211685350758337e-19,2.371692252312041e-20,0.0038265306502580643,-0.0038265306502580643,-0.0012755101779475808,8.673617379884035e-19,5.047038888577118e-19,0.0012755101779475808,1.8973538018496328e-19,-5.963111948670274e-19,-4.743384504624082e-20,-7.093702539154723e-20,0.0020408162381500006,-0.0020408162381500006,3.7947076036992655e-19,-0.00031397174461744726,1.6042561036691511e-18,1.8973538018496328e-19,0.00031397174461744726,-6.776263578034403e-20,-3.3881317890172014e-21,-2.31004677872024e-20,0.0014172336086630821,3.903127820947816e-18,-0.001700680237263441,6.2341624917916505e-19,-9.091165745391616e-19,-5.963111948670274e-19,-6.776263578034403e-20,0.00028344671591185033,-1.2197274440461925e-19,-6.3244811958094505e-21,0.0010204081190750003,-4.336808689942018e-19,-0.0003401360590942204,-0.00015698587230872363,1.6211685350758337e-19,-4.743384504624082e-20,-3.3881317890172014e-21,-1.2197274440461925e-19,5.232862531556748e-05,-1.1521423128242492e-20,0.00042517005931586027,2.947674656444965e-19,2.202285662861181e-19,-0.00021258502965793014,2.371692252312041e-20,-7.093702539154723e-20,-2.31004677872024e-20,-6.3244811958094505e-21,-1.1521423128242492e-20,1.635269472899381e-05,3.0,7.0,15.0,0.084198959171772,-0.03750000149011612,-0.02013888955116272,-0.010556722991168499,0.004761904943734407,0.0035714285913854837,0.0017857142956927419,0.0013227512827143073,0.0008928571478463709,0.00035014006425626576,-0.03750000149011612,0.08511904627084732,0.0035714285913854837,0.0017857142956927419,-0.02857142873108387,-0.0035714285913854837,-0.0017857142956927419,8.565197162635485e-18,3.3610267347050637e-18,3.6761229910836635e-18,-0.02013888955116272,0.0035714285913854837,0.013591269962489605,0.0008928571478463709,2.4557179206796675e-17,-0.0011904762359336019,1.6059744679941534e-18,-0.0015873016091063619,-0.00029761905898340046,4.573977915173222e-19,-0.010556722991168499,0.0017857142956927419,0.0008928571478463709,0.0030702666845172644,2.42861286636753e-17,2.439454888092385e-18,-0.00025510202976875007,1.7889335846010823e-18,-0.00012755101488437504,-0.00016160310769919306,0.004761904943734407,-0.02857142873108387,2.4557179206796675e-17,2.42861286636753e-17,0.014285714365541935,2.509347513950053e-18,-2.065308275735156e-18,-2.6176455152630988e-18,-1.2294238619816922e-18,-1.2739375526704677e-18,0.0035714285913854837,-0.0035714285913854837,-0.0011904762359336019,2.439454888092385e-18,2.509347513950053e-18,0.0011904762359336019,3.1170812458958252e-19,-5.082197683525802e-19,-1.6940658945086007e-19,-1.5359835368905623e-19,0.0017857142956927419,-0.0017857142956927419,1.6059744679941534e-18,-0.00025510202976875007,-2.065308275735156e-18,3.1170812458958252e-19,0.00025510202976875007,-2.0328790734103208e-19,-5.759824041329242e-20,-7.756791197692544e-20,0.0013227512827143073,8.565197162635485e-18,-0.0015873016091063619,1.7889335846010823e-18,-2.6176455152630988e-18,-5.082197683525802e-19,-2.0328790734103208e-19,0.00026455026818439364,-3.1340219048409113e-19,-3.222546386255424e-20,0.0008928571478463709,3.3610267347050637e-18,-0.00029761905898340046,-0.00012755101488437504,-1.2294238619816922e-18,-1.6940658945086007e-19,-5.759824041329242e-20,-3.1340219048409113e-19,4.251700738677755e-05,-9.978904153654422e-21,0.00035014006425626576,3.6761229910836635e-18,4.573977915173222e-19,-0.00016160310769919306,-1.2739375526704677e-18,-1.5359835368905623e-19,-7.756791197692544e-20,-3.222546386255424e-20,-9.978904153654422e-21,1.154307847173186e-05,3.0,7.0,16.0,0.07950367778539658,-0.03525472804903984,-0.01892944611608982,-0.009366246871650219,0.004464285913854837,0.0033482143189758062,0.0015756302746012807,0.0012400794075801969,0.0007878151373006403,0.0002917833917308599,-0.03525472804903984,0.07989758253097534,0.0033482143189758062,0.0015756302746012807,-0.02678571455180645,-0.0033482143189758062,-0.0015756302746012807,4.87890977618477e-18,-2.8189256484623115e-18,-1.4805737837335379e-18,-0.01892944611608982,0.0033482143189758062,0.012758227996528149,0.0007878151373006403,-8.17217387510949e-18,-0.0011160714784637094,2.710505431213761e-20,-0.0014880952658131719,-0.00026260505546815693,-1.478072492958754e-18,-0.009366246871650219,0.0015756302746012807,0.0007878151373006403,0.002541016321629286,-1.3986208025063007e-17,-3.0357660829594124e-18,-0.0002100840356433764,-3.333921680392926e-18,-0.0001050420178216882,-0.0001250500208698213,0.004464285913854837,-0.02678571455180645,-8.17217387510949e-18,-1.3986208025063007e-17,0.013392857275903225,6.564833318333705e-18,3.0357660829594124e-18,-1.3332428870729164e-18,1.1618362782984797e-18,4.336808689942018e-19,0.0033482143189758062,-0.0033482143189758062,-0.0011160714784637094,-3.0357660829594124e-18,6.564833318333705e-18,0.0011160714784637094,2.710505431213761e-19,-4.1335207826009857e-19,8.809142651444724e-20,1.503695834149262e-19,0.0015756302746012807,-0.0015756302746012807,2.710505431213761e-20,-0.0002100840356433764,3.0357660829594124e-18,2.710505431213761e-19,0.0002100840356433764,-8.131516293641283e-20,2.371692252312041e-20,1.9058241313221758e-20,0.0012400794075801969,4.87890977618477e-18,-0.0014880952658131719,-3.333921680392926e-18,-1.3332428870729164e-18,-4.1335207826009857e-19,-8.131516293641283e-20,0.00024801588733680546,2.1345230270808369e-19,1.737685713147936e-19,0.0007878151373006403,-2.8189256484623115e-18,-0.00026260505546815693,-0.0001050420178216882,1.1618362782984797e-18,8.809142651444724e-20,2.371692252312041e-20,2.1345230270808369e-19,3.501400715322234e-05,2.7883715611885575e-20,0.0002917833917308599,-1.4805737837335379e-18,-1.478072492958754e-18,-0.0001250500208698213,4.336808689942018e-19,1.503695834149262e-19,1.9058241313221758e-20,1.737685713147936e-19,2.7883715611885575e-20,8.336667633557227e-06,3.0,8.0,3.0,0.26273149251937866,-0.1423611044883728,-0.0694444477558136,-0.1423611044883728,0.02083333395421505,0.013888888992369175,0.03125,0.004629629664123058,0.013888888992369175,0.02083333395421505,-0.1423611044883728,0.3506944477558136,0.013888888992369175,0.03125,-0.125,-0.013888888992369175,-0.03125,-1.7780915628762273e-17,6.071532165918825e-18,6.856461716271624e-17,-0.0694444477558136,0.013888888992369175,0.04298941791057587,0.013888888992369175,-3.9898639947466563e-17,-0.003968254197388887,-3.469446951953614e-18,-0.004629629664123058,-0.003968254197388887,3.905144818153465e-17,-0.1423611044883728,0.03125,0.013888888992369175,0.3506944477558136,-1.553516493343388e-17,3.6617724000726035e-17,-0.03125,-2.3852447794681098e-18,-0.013888888992369175,-0.125,0.02083333395421505,-0.125,-3.9898639947466563e-17,-1.553516493343388e-17,0.0625,-1.5178830414797062e-18,-1.0408340855860843e-17,6.342582709040201e-18,-4.336808689942018e-19,1.9743737467373027e-17,0.013888888992369175,-0.013888888992369175,-0.003968254197388887,3.6617724000726035e-17,-1.5178830414797062e-18,0.003968254197388887,-1.5178830414797062e-18,7.589415207398531e-19,-7.589415207398531e-19,-1.431622827405329e-17,0.03125,-0.03125,-3.469446951953614e-18,-0.03125,-1.0408340855860843e-17,-1.5178830414797062e-18,0.03125,1.3010426069826053e-18,-3.686287386450715e-18,-4.606457658233484e-17,0.004629629664123058,-1.7780915628762273e-17,-0.004629629664123058,-2.3852447794681098e-18,6.342582709040201e-18,7.589415207398531e-19,1.3010426069826053e-18,0.0006613756413571537,2.168404344971009e-19,2.550185937779679e-19,0.013888888992369175,6.071532165918825e-18,-0.003968254197388887,-0.013888888992369175,-4.336808689942018e-19,-7.589415207398531e-19,-3.686287386450715e-18,2.168404344971009e-19,0.003968254197388887,-1.978121205784413e-17,0.02083333395421505,6.856461716271624e-17,3.905144818153465e-17,-0.125,1.9743737467373027e-17,-1.431622827405329e-17,-4.606457658233484e-17,2.550185937779679e-19,-1.978121205784413e-17,0.0625,3.0,8.0,4.0,0.21736110746860504,-0.11145833134651184,-0.05416666716337204,-0.09166666865348816,0.015625,0.010416666977107525,0.01875000074505806,0.0034722222480922937,0.008333333767950535,0.010416666977107525,-0.11145833134651184,0.26770833134651184,0.010416666977107525,0.01875000074505806,-0.09375,-0.010416666977107525,-0.01875000074505806,-6.288372600415926e-18,-3.382710778154774e-17,-8.513565210544415e-17,-0.05416666716337204,0.010416666977107525,0.03283730149269104,0.008333333767950535,-6.765421556309548e-17,-0.0029761905316263437,0.0,-0.0034722222480922937,-0.0023809524718672037,-2.19193746796202e-17,-0.09166666865348816,0.01875000074505806,0.008333333767950535,0.13402777910232544,-1.5183298513593829e-16,-2.4050345793150734e-17,-0.012500000186264515,-1.5178830414797062e-18,-0.0055555556900799274,-0.03125,0.015625,-0.09375,-6.765421556309548e-17,-1.5183298513593829e-16,0.046875,1.8539857149502126e-17,-6.7220534694101275e-18,3.577867169202165e-18,1.4094628242311558e-17,3.102621467043908e-17,0.010416666977107525,-0.010416666977107525,-0.0029761905316263437,-2.4050345793150734e-17,1.8539857149502126e-17,0.0029761905316263437,1.5178830414797062e-18,-8.131516293641283e-20,1.0299920638612292e-18,5.863318811620346e-18,0.01875000074505806,-0.01875000074505806,0.0,-0.012500000186264515,-6.7220534694101275e-18,1.5178830414797062e-18,0.012500000186264515,-1.6263032587282567e-19,3.2526065174565133e-19,5.793883720038996e-19,0.0034722222480922937,-6.288372600415926e-18,-0.0034722222480922937,-1.5178830414797062e-18,3.577867169202165e-18,-8.131516293641283e-20,-1.6263032587282567e-19,0.0004960317746736109,-2.439454888092385e-19,9.112693120833308e-19,0.008333333767950535,-3.382710778154774e-17,-0.0023809524718672037,-0.0055555556900799274,1.4094628242311558e-17,1.0299920638612292e-18,3.2526065174565133e-19,-2.439454888092385e-19,0.0015873016091063619,4.633205701393244e-18,0.010416666977107525,-8.513565210544415e-17,-2.19193746796202e-17,-0.03125,3.102621467043908e-17,5.863318811620346e-18,5.793883720038996e-19,9.112693120833308e-19,4.633205701393244e-18,0.010416666977107525,3.0,8.0,5.0,0.1855158656835556,-0.09166666865348816,-0.04444444552063942,-0.06408730149269104,0.012500000186264515,0.008333333767950535,0.012500000186264515,0.0027777778450399637,0.0055555556900799274,0.0059523810632526875,-0.09166666865348816,0.21666666865348816,0.008333333767950535,0.012500000186264515,-0.07500000298023224,-0.008333333767950535,-0.012500000186264515,-1.439278383974507e-17,-7.37257477290143e-18,-8.239936510889834e-18,-0.04444444552063942,0.008333333767950535,0.02658730186522007,0.0055555556900799274,-5.277354074573193e-17,-0.0023809524718672037,-7.697835424647081e-18,-0.0027777778450399637,-0.0015873016091063619,6.288372600415926e-18,-0.06408730149269104,0.012500000186264515,0.0055555556900799274,0.06775793433189392,-4.683753385137379e-17,5.637851296924623e-18,-0.0062500000931322575,1.0842021724855044e-18,-0.0027777778450399637,-0.011904762126505375,0.012500000186264515,-0.07500000298023224,-5.277354074573193e-17,-4.683753385137379e-17,0.03750000149011612,9.054166783772731e-18,5.677416172803647e-18,4.851804721872632e-18,3.3834296808251437e-18,6.811108974928505e-18,0.008333333767950535,-0.008333333767950535,-0.0023809524718672037,5.637851296924623e-18,9.054166783772731e-18,0.0023809524718672037,6.505213034913027e-19,5.790090579942558e-19,5.421010862427522e-20,-1.3552527156068805e-18,0.012500000186264515,-0.012500000186264515,-7.697835424647081e-18,-0.0062500000931322575,5.677416172803647e-18,6.505213034913027e-19,0.0062500000931322575,9.401913720085177e-19,4.336808689942018e-19,2.710505431213761e-19,0.0027777778450399637,-1.439278383974507e-17,-0.0027777778450399637,1.0842021724855044e-18,4.851804721872632e-18,5.790090579942558e-19,9.401913720085177e-19,0.00039682540227659047,8.012048148733898e-20,-5.739926211694279e-19,0.0055555556900799274,-7.37257477290143e-18,-0.0015873016091063619,-0.0027777778450399637,3.3834296808251437e-18,5.421010862427522e-20,4.336808689942018e-19,8.012048148733898e-20,0.0007936508045531809,-2.168404344971009e-19,0.0059523810632526875,-8.239936510889834e-18,6.288372600415926e-18,-0.011904762126505375,6.811108974928505e-18,-1.3552527156068805e-18,2.710505431213761e-19,-5.739926211694279e-19,-2.168404344971009e-19,0.0029761905316263437,3.0,8.0,6.0,0.16187168657779694,-0.0778769850730896,-0.0376984141767025,-0.0473710335791111,0.010416666977107525,0.0069444444961845875,0.008928571827709675,0.002314814832061529,0.003968254197388887,0.0037202381063252687,-0.0778769850730896,0.18204365670681,0.0069444444961845875,0.008928571827709675,-0.0625,-0.0069444444961845875,-0.008928571827709675,7.901123331988114e-18,5.421010862427522e-18,1.3629970286557858e-17,-0.0376984141767025,0.0069444444961845875,0.022345049306750298,0.003968254197388887,4.0642093338416973e-17,-0.0019841270986944437,-8.2508411335117e-33,-0.002314814832061529,-0.0011337868636474013,-1.180083986008976e-18,-0.0473710335791111,0.008928571827709675,0.003968254197388887,0.03940972313284874,4.967091530822108e-17,9.484722383466949e-20,-0.0035714285913854837,5.421010862427522e-20,-0.0015873016091063619,-0.005580357275903225,0.010416666977107525,-0.0625,4.0642093338416973e-17,4.967091530822108e-17,0.03125,-7.049035484010502e-18,-6.3441316047372065e-18,-3.854941241544152e-18,-2.6433882031063616e-18,-6.814985143278929e-18,0.0069444444961845875,-0.0069444444961845875,-0.0019841270986944437,9.484722383466949e-20,-7.049035484010502e-18,0.0019841270986944437,1.4310402105353294e-33,-2.710505431213761e-20,-1.3552527156068805e-20,1.52698727369181e-33,0.008928571827709675,-0.008928571827709675,-8.2508411335117e-33,-0.0035714285913854837,-6.3441316047372065e-18,1.4310402105353294e-33,0.0035714285913854837,7.826001495748193e-34,5.366400789507485e-34,1.3835251676716579e-33,0.002314814832061529,7.901123331988114e-18,-0.002314814832061529,5.421010862427522e-20,-3.854941241544152e-18,-2.710505431213761e-20,7.826001495748193e-34,0.0003306878206785768,-2.710505431213761e-20,8.367738169229222e-34,0.003968254197388887,5.421010862427522e-18,-0.0011337868636474013,-0.0015873016091063619,-2.6433882031063616e-18,-1.3552527156068805e-20,5.366400789507485e-34,-2.710505431213761e-20,0.00045351474545896053,4.720336150831057e-19,0.0037202381063252687,1.3629970286557858e-17,-1.180083986008976e-18,-0.005580357275903225,-6.814985143278929e-18,1.52698727369181e-33,1.3835251676716579e-33,8.367738169229222e-34,4.720336150831057e-19,0.0011160714784637094,3.0,8.0,7.0,0.143601194024086,-0.0677083358168602,-0.032738097012043,-0.0364583320915699,0.008928571827709675,0.0059523810632526875,0.0066964286379516125,0.0019841270986944437,0.0029761905316263437,0.0024801588151603937,-0.0677083358168602,0.1569940447807312,0.0059523810632526875,0.0066964286379516125,-0.0535714291036129,-0.0059523810632526875,-0.0066964286379516125,6.69494841509799e-18,3.5236570605778894e-18,8.673617379884035e-18,-0.032738097012043,0.0059523810632526875,0.019274376332759857,0.0029761905316263437,3.425615313038919e-17,-0.001700680237263441,-4.336808689942018e-19,-0.0019841270986944437,-0.0008503401186317205,-7.047314121155779e-19,-0.0364583320915699,0.0066964286379516125,0.0029761905316263437,0.02504960261285305,3.950921324124395e-17,-3.283158706500274e-34,-0.0022321429569274187,-1.4855420631370786e-20,-0.0009920635493472219,-0.0029761905316263437,0.008928571827709675,-0.0535714291036129,3.425615313038919e-17,3.950921324124395e-17,0.02678571455180645,-5.178883103014369e-18,-6.7972838917606e-18,-3.3042352021841637e-18,-1.9825412040285595e-18,-4.29550590759602e-18,0.0059523810632526875,-0.0059523810632526875,-0.001700680237263441,-3.283158706500274e-34,-5.178883103014369e-18,0.001700680237263441,3.3881317890172014e-21,-2.710505431213761e-20,-1.3552527156068805e-20,2.080852600491877e-21,0.0066964286379516125,-0.0066964286379516125,-4.336808689942018e-19,-0.0022321429569274187,-6.7972838917606e-18,3.3881317890172014e-21,0.0022321429569274187,3.3881317890172014e-21,1.6263032587282567e-19,5.421010862427522e-20,0.0019841270986944437,6.69494841509799e-18,-0.0019841270986944437,-1.4855420631370786e-20,-3.3042352021841637e-18,-2.710505431213761e-20,3.3881317890172014e-21,0.00028344671591185033,0.0,6.776263578034403e-21,0.0029761905316263437,3.5236570605778894e-18,-0.0008503401186317205,-0.0009920635493472219,-1.9825412040285595e-18,-1.3552527156068805e-20,1.6263032587282567e-19,0.0,0.00028344671591185033,2.303929616531697e-19,0.0024801588151603937,8.673617379884035e-18,-7.047314121155779e-19,-0.0029761905316263437,-4.29550590759602e-18,2.080852600491877e-21,5.421010862427522e-20,6.776263578034403e-21,2.303929616531697e-19,0.0004960317746736109,3.0,8.0,8.0,0.12905092537403107,-0.0598958320915699,-0.028935184702277184,-0.028935184702277184,0.0078125,0.0052083334885537624,0.0052083334885537624,0.0017361111240461469,0.002314814832061529,0.0017361111240461469,-0.0598958320915699,0.1380208283662796,0.0052083334885537624,0.0052083334885537624,-0.046875,-0.0052083334885537624,-0.0052083334885537624,5.827586677109586e-18,3.2526065174565133e-18,5.854691731421724e-18,-0.028935184702277184,0.0052083334885537624,0.016947751864790916,0.002314814832061529,2.960043984452838e-17,-0.0014880952658131719,1.0842021724855044e-19,-0.0017361111240461469,-0.0006613756413571537,1.6263032587282567e-19,-0.028935184702277184,0.0052083334885537624,0.002314814832061529,0.016947751864790916,2.960043984452838e-17,2.939966302488251e-20,-0.0014880952658131719,2.4956565762130494e-20,-0.0006613756413571537,-0.0017361111240461469,0.0078125,-0.046875,2.960043984452838e-17,2.960043984452838e-17,0.0234375,-3.965082408057119e-18,-3.965082408057119e-18,-2.8912057243629608e-18,-1.5419764345791148e-18,-2.8912057243629608e-18,0.0052083334885537624,-0.0052083334885537624,-0.0014880952658131719,2.939966302488251e-20,-3.965082408057119e-18,0.0014880952658131719,8.066980474082431e-22,0.0,-7.923567126613287e-21,-1.2505399703314068e-21,0.0052083334885537624,-0.0052083334885537624,1.0842021724855044e-19,-0.0014880952658131719,-3.965082408057119e-18,8.066980474082431e-22,0.0014880952658131719,3.3881317890172014e-21,-3.3881317890172014e-20,0.0,0.0017361111240461469,5.827586677109586e-18,-0.0017361111240461469,2.4956565762130494e-20,-2.8912057243629608e-18,0.0,3.3881317890172014e-21,0.00024801588733680546,-2.0328790734103208e-20,3.3881317890172014e-21,0.002314814832061529,3.2526065174565133e-18,-0.0006613756413571537,-0.0006613756413571537,-1.5419764345791148e-18,-7.923567126613287e-21,-3.3881317890172014e-20,-2.0328790734103208e-20,0.0001889644772745669,-4.0657581468206416e-20,0.0017361111240461469,5.854691731421724e-18,1.6263032587282567e-19,-0.0017361111240461469,-2.8912057243629608e-18,-1.2505399703314068e-21,0.0,3.3881317890172014e-21,-4.0657581468206416e-20,0.00024801588733680546,3.0,8.0,9.0,0.11718574911355972,-0.05370370298624039,-0.025925925001502037,-0.023526936769485474,0.0069444444961845875,0.004629629664123058,0.004166666883975267,0.0015432098880410194,0.0018518518190830946,0.0012626262614503503,-0.05370370298624039,0.12314815074205399,0.004629629664123058,0.004166666883975267,-0.0416666679084301,-0.004629629664123058,-0.004166666883975267,5.285485590866834e-18,2.5478751053409354e-18,4.119968255444917e-18,-0.025925925001502037,0.004629629664123058,0.015123456716537476,0.0018518518190830946,2.605695361030637e-17,-0.0013227512827143073,1.3552527156068805e-19,-0.0015432098880410194,-0.0005291005363687873,1.6263032587282567e-19,-0.023526936769485474,0.004166666883975267,0.0018518518190830946,0.01201449055224657,2.5592802716268166e-17,-1.4721963570151553e-34,-0.0010416667209938169,-6.055324379302938e-21,-0.00046296295477077365,-0.0010822510812431574,0.0069444444961845875,-0.0416666679084301,2.605695361030637e-17,2.5592802716268166e-17,0.02083333395421505,-3.132904383833352e-18,-4.934324673371229e-18,-2.569960620900948e-18,-1.2335811683428072e-18,-2.042618091147367e-18,0.004629629664123058,-0.004629629664123058,-0.0013227512827143073,-1.4721963570151553e-34,-3.132904383833352e-18,0.0013227512827143073,-1.6940658945086007e-21,0.0,5.672919665856532e-36,-8.71121755317423e-22,0.004166666883975267,-0.004166666883975267,1.3552527156068805e-19,-0.0010416667209938169,-4.934324673371229e-18,-1.6940658945086007e-21,0.0010416667209938169,-3.3881317890172014e-21,-2.710505431213761e-20,0.0,0.0015432098880410194,5.285485590866834e-18,-0.0015432098880410194,-6.055324379302938e-21,-2.569960620900948e-18,0.0,-3.3881317890172014e-21,0.00022045854711905122,6.776263578034403e-21,-3.3881317890172014e-21,0.0018518518190830946,2.5478751053409354e-18,-0.0005291005363687873,-0.00046296295477077365,-1.2335811683428072e-18,5.672919665856532e-36,-2.710505431213761e-20,6.776263578034403e-21,0.00013227513409219682,-3.3881317890172014e-20,0.0012626262614503503,4.119968255444917e-18,1.6263032587282567e-19,-0.0010822510812431574,-2.042618091147367e-18,-8.71121755317423e-22,0.0,-3.3881317890172014e-21,-3.3881317890172014e-20,0.00013528138515539467,3.0,8.0,10.0,0.10732322931289673,-0.048674240708351135,-0.02348484843969345,-0.019507575780153275,0.0062500000931322575,0.004166666883975267,0.003409090917557478,0.0013888889225199819,0.0015151514671742916,0.0009469697251915932,-0.048674240708351135,0.11117424070835114,0.004166666883975267,0.003409090917557478,-0.03750000149011612,-0.004166666883975267,-0.003409090917557478,-2.3129647035674605e-18,-1.0570971181733668e-18,-1.5178830414797062e-18,-0.02348484843969345,0.004166666883975267,0.013654401525855064,0.0015151514671742916,-1.0366286993518647e-17,-0.0011904762359336019,-2.710505431213761e-20,-0.0013888889225199819,-0.00043290044413879514,-4.0657581468206416e-20,-0.019507575780153275,0.003409090917557478,0.0015151514671742916,0.008833122439682484,-8.508029883321333e-18,-0.0,-0.0007575757335871458,-5.247672645832069e-34,-0.00033670032280497253,-0.0007102272938936949,0.0062500000931322575,-0.03750000149011612,-1.0366286993518647e-17,-8.508029883321333e-18,0.01875000074505806,0.0,3.148992958523514e-35,1.1564823517837303e-18,5.046468133954457e-19,7.490851467534009e-19,0.004166666883975267,-0.004166666883975267,-0.0011904762359336019,-0.0,0.0,0.0011904762359336019,0.0,0.0,0.0,0.0,0.003409090917557478,-0.003409090917557478,-2.710505431213761e-20,-0.0007575757335871458,3.148992958523514e-35,0.0,0.0007575757335871458,0.0,1.0164395367051604e-20,0.0,0.0013888889225199819,-2.3129647035674605e-18,-0.0013888889225199819,-5.247672645832069e-34,1.1564823517837303e-18,0.0,0.0,0.00019841270113829523,3.112614048636079e-35,4.6202865726114364e-35,0.0015151514671742916,-1.0570971181733668e-18,-0.00043290044413879514,-0.00033670032280497253,5.046468133954457e-19,0.0,1.0164395367051604e-20,3.112614048636079e-35,9.620009950594977e-05,3.3881317890172014e-21,0.0009469697251915932,-1.5178830414797062e-18,-4.0657581468206416e-20,-0.0007102272938936949,7.490851467534009e-19,0.0,0.0,4.6202865726114364e-35,3.3881317890172014e-21,7.891414134064689e-05,3.0,8.0,11.0,0.09899475425481796,-0.044507574290037155,-0.021464645862579346,-0.016438422724604607,0.005681818351149559,0.0037878789007663727,0.0028409091755747795,0.0012626262614503503,0.0012626262614503503,0.0007284382008947432,-0.044507574290037155,0.10132575780153275,0.0037878789007663727,0.0028409091755747795,-0.034090910106897354,-0.0037878789007663727,-0.0028409091755747795,-2.1026951850613277e-18,-1.0028870095490916e-18,-1.0570971181733668e-18,-0.021464645862579346,0.0037878789007663727,0.012445887550711632,0.0012626262614503503,-9.462128125980822e-18,-0.0010822510812431574,-1.4907779871675686e-19,-0.0012626262614503503,-0.0003607503604143858,-1.2197274440461925e-19,-0.016438422724604607,0.0028409091755747795,0.0012626262614503503,0.006687062792479992,-7.132988525920346e-18,-0.0,-0.0005681818001903594,-4.399560359376e-34,-0.00025252526393160224,-0.0004856254963669926,0.005681818351149559,-0.034090910106897354,-9.462128125980822e-18,-7.132988525920346e-18,0.017045455053448677,0.0,1.3459239560289523e-35,1.0513475925306639e-18,4.2053903701226555e-19,5.66110210317257e-19,0.0037878789007663727,-0.0037878789007663727,-0.0010822510812431574,-0.0,0.0,0.0010822510812431574,0.0,0.0,0.0,0.0,0.0028409091755747795,-0.0028409091755747795,-1.4907779871675686e-19,-0.0005681818001903594,1.3459239560289523e-35,0.0,0.0005681818001903594,0.0,3.3881317890172014e-20,-6.776263578034403e-21,0.0012626262614503503,-2.1026951850613277e-18,-0.0012626262614503503,-4.399560359376e-34,1.0513475925306639e-18,0.0,0.0,0.0001803751802071929,2.5938450883610533e-35,3.4917144206073725e-35,0.0012626262614503503,-1.0028870095490916e-18,-0.0003607503604143858,-0.00025252526393160224,4.2053903701226555e-19,0.0,3.3881317890172014e-20,2.5938450883610533e-35,7.215006917249411e-05,2.371692252312041e-20,0.0007284382008947432,-1.0570971181733668e-18,-1.2197274440461925e-19,-0.0004856254963669926,5.66110210317257e-19,0.0,-6.776263578034403e-21,3.4917144206073725e-35,2.371692252312041e-20,4.856254963669926e-05,3.0,8.0,12.0,0.09186762571334839,-0.04099893197417259,-0.019764957949519157,-0.01404151413589716,0.0052083334885537624,0.0034722222480922937,0.0024038462433964014,0.0011574074160307646,0.0010683761211112142,0.0005723443464376032,-0.04099893197417259,0.09308226406574249,0.0034722222480922937,0.0024038462433964014,-0.03125,-0.0034722222480922937,-0.0024038462433964014,3.854941241544152e-18,1.4094628242311558e-18,1.6805133673525319e-18,-0.019764957949519157,0.0034722222480922937,0.011434167623519897,0.0010683761211112142,2.0931059283741842e-17,-0.0009920635493472219,-2.710505431213761e-20,-0.0011574074160307646,-0.0003052503161597997,-2.710505431213761e-20,-0.01404151413589716,0.0024038462433964014,0.0010683761211112142,0.005185786634683609,1.5242228845665576e-17,-3.438176243413246e-33,-0.0004370629321783781,-1.880252621637182e-33,-0.00019425019854679704,-0.00034340660204179585,0.0052083334885537624,-0.03125,2.0931059283741842e-17,1.5242228845665576e-17,0.015625,-3.524517742005251e-18,-3.105518915293559e-18,-1.927470620772076e-18,-7.116814353210367e-19,-8.768932367892755e-19,0.0034722222480922937,-0.0034722222480922937,-0.0009920635493472219,-3.438176243413246e-33,-3.524517742005251e-18,0.0009920635493472219,7.0050918016090834e-34,4.347778455689836e-34,1.605333604832131e-34,1.978000211531336e-34,0.0024038462433964014,-0.0024038462433964014,-2.710505431213761e-20,-0.0004370629321783781,-3.105518915293559e-18,7.0050918016090834e-34,0.0004370629321783781,3.8309096866246896e-34,6.776263578034403e-21,3.3881317890172014e-21,0.0011574074160307646,3.854941241544152e-18,-0.0011574074160307646,-1.880252621637182e-33,-1.927470620772076e-18,4.347778455689836e-34,3.8309096866246896e-34,0.0001653439103392884,8.779168079679235e-35,1.081718944602329e-34,0.0010683761211112142,1.4094628242311558e-18,-0.0003052503161597997,-0.00019425019854679704,-7.116814353210367e-19,1.605333604832131e-34,6.776263578034403e-21,8.779168079679235e-35,5.550005516852252e-05,1.6940658945086007e-21,0.0005723443464376032,1.6805133673525319e-18,-2.710505431213761e-20,-0.00034340660204179585,-8.768932367892755e-19,1.978000211531336e-34,3.3881317890172014e-21,1.081718944602329e-34,1.6940658945086007e-21,3.121878035017289e-05,3.0,8.0,13.0,0.08569902181625366,-0.03800366446375847,-0.018315019086003304,-0.012133699841797352,0.004807692486792803,0.0032051282469183207,0.002060439670458436,0.0010683761211112142,0.0009157509193755686,0.0004578754596877843,-0.03800366446375847,0.08608058840036392,0.0032051282469183207,0.002060439670458436,-0.028846153989434242,-0.0032051282469183207,-0.002060439670458436,3.558407331701548e-18,1.260385025514399e-18,1.3552527156068805e-18,-0.018315019086003304,0.0032051282469183207,0.010574743151664734,0.0009157509193755686,1.9117639498647965e-17,-0.0009157509193755686,6.776263578034403e-20,-0.0010683761211112142,-0.00026164311566390097,6.098637220230962e-20,-0.012133699841797352,0.002060439670458436,0.0009157509193755686,0.004103535320609808,1.2705753116346234e-17,-2.6455620758308708e-33,-0.00034340660204179585,-1.5673576986253822e-33,-0.00015262515807989985,-0.00024975024280138314,0.004807692486792803,-0.028846153989434242,1.9117639498647965e-17,1.2705753116346234e-17,0.014423076994717121,-3.003139184468177e-18,-2.2523544917487094e-18,-1.779203665850774e-18,-6.100126662321441e-19,-6.931961716783728e-19,0.0032051282469183207,-0.0032051282469183207,-0.0009157509193755686,-2.6455620758308708e-33,-3.003139184468177e-18,0.0009157509193755686,4.68979955732112e-34,3.7046159051870373e-34,1.2701540180758773e-34,1.4433567969791805e-34,0.002060439670458436,-0.002060439670458436,6.776263578034403e-20,-0.00034340660204179585,-2.2523544917487094e-18,4.68979955732112e-34,0.00034340660204179585,2.7784618140959078e-34,-8.470329472543003e-21,6.776263578034403e-21,0.0010683761211112142,3.558407331701548e-18,-0.0010683761211112142,-1.5673576986253822e-33,-1.779203665850774e-18,3.7046159051870373e-34,2.7784618140959078e-34,0.00015262515807989985,7.525001129157651e-35,8.551137672859687e-35,0.0009157509193755686,1.260385025514399e-18,-0.00026164311566390097,-0.00015262515807989985,-6.100126662321441e-19,1.2701540180758773e-34,-8.470329472543003e-21,7.525001129157651e-35,4.3607185943983495e-05,-8.470329472543003e-21,0.0004578754596877843,1.3552527156068805e-18,6.098637220230962e-20,-0.00024975024280138314,-6.931961716783728e-19,1.4433567969791805e-34,6.776263578034403e-21,8.551137672859687e-35,-8.470329472543003e-21,2.0812520233448595e-05,3.0,8.0,14.0,0.08030754327774048,-0.03541666641831398,-0.01706349290907383,-0.01059027761220932,0.004464285913854837,0.0029761905316263437,0.0017857142956927419,0.0009920635493472219,0.0007936508045531809,0.00037202381645329297,-0.03541666641831398,0.08005952090024948,0.0029761905316263437,0.0017857142956927419,-0.02678571455180645,-0.0029761905316263437,-0.0017857142956927419,-7.15573433840433e-18,-8.131516293641283e-19,-3.3881317890172014e-20,-0.01706349290907383,0.0029761905316263437,0.009835600852966309,0.0007936508045531809,-2.917859096701614e-17,-0.0008503401186317205,-8.944667923005412e-19,-0.0009920635493472219,-0.00022675737272948027,-1.4399560103323106e-19,-0.01059027761220932,0.0017857142956927419,0.0007936508045531809,0.0033033806830644608,-2.927345865710862e-18,-4.336808689942018e-19,-0.00027472528745420277,-5.963111948670274e-19,-0.00012210012937430292,-0.00018601190822664648,0.004464285913854837,-0.02678571455180645,-2.917859096701614e-17,-2.927345865710862e-18,0.013392857275903225,5.773173082054623e-18,1.715240787611769e-18,2.8620968250169135e-18,3.9619586121726007e-19,2.0328790734103208e-20,0.0029761905316263437,-0.0029761905316263437,-0.0008503401186317205,-4.336808689942018e-19,5.773173082054623e-18,0.0008503401186317205,2.439454888092385e-19,1.2874900798265365e-19,2.0328790734103208e-20,5.387885752407111e-21,0.0017857142956927419,-0.0017857142956927419,-8.944667923005412e-19,-0.00027472528745420277,1.715240787611769e-18,2.439454888092385e-19,0.00027472528745420277,9.825582188149884e-20,-1.6940658945086007e-20,-7.641558314456658e-21,0.0009920635493472219,-7.15573433840433e-18,-0.0009920635493472219,-5.963111948670274e-19,2.8620968250169135e-18,1.2874900798265365e-19,9.825582188149884e-20,0.00014172335795592517,5.590417451878382e-20,1.9139970635151118e-20,0.0007936508045531809,-8.131516293641283e-19,-0.00022675737272948027,-0.00012210012937430292,3.9619586121726007e-19,2.0328790734103208e-20,-1.6940658945086007e-20,5.590417451878382e-20,3.488575021037832e-05,2.7032854127020733e-21,0.00037202381645329297,-3.3881317890172014e-20,-1.4399560103323106e-19,-0.00018601190822664648,2.0328790734103208e-20,5.387885752407111e-21,-7.641558314456658e-21,1.9139970635151118e-20,2.7032854127020733e-21,1.430860811524326e-05,3.0,8.0,15.0,0.07555487751960754,-0.03315972164273262,-0.01597222313284874,-0.009323937818408012,0.004166666883975267,0.0027777778450399637,0.0015625000232830644,0.0009259259095415473,0.0006944444612599909,0.00030637255986221135,-0.03315972164273262,0.07482638955116272,0.0027777778450399637,0.0015625000232830644,-0.02500000037252903,-0.0027777778450399637,-0.0015625000232830644,4.336808689942018e-19,4.87890977618477e-19,-1.2400562347802957e-18,-0.01597222313284874,0.0027777778450399637,0.009193121455609798,0.0006944444612599909,5.570088661144279e-18,-0.0007936508045531809,9.012430558785756e-19,-0.0009259259095415473,-0.00019841270113829523,-1.5077186461126546e-19,-0.009323937818408012,0.0015625000232830644,0.0006944444612599909,0.0026988841127604246,-2.2768245622195593e-18,-1.2468324983583301e-18,-0.00022321428696159273,3.9302328752599536e-19,-9.920635056914762e-05,-0.00014140272105578333,0.004166666883975267,-0.02500000037252903,5.570088661144279e-18,-2.2768245622195593e-18,0.012500000186264515,-4.660485704404936e-18,-1.7635352106877947e-18,2.0140648503778022e-19,-3.036324119680156e-19,4.0488174878755556e-19,0.0027777778450399637,-0.0027777778450399637,-0.0007936508045531809,-1.2468324983583301e-18,-4.660485704404936e-18,0.0007936508045531809,-1.4907779871675686e-19,-6.776263578034403e-20,6.776263578034403e-20,8.268727462687931e-20,0.0015625000232830644,-0.0015625000232830644,9.012430558785756e-19,-0.00022321428696159273,-1.7635352106877947e-18,-1.4907779871675686e-19,0.00022321428696159273,-7.792703114739563e-20,-1.5246593050577406e-20,1.84557032448751e-20,0.0009259259095415473,4.336808689942018e-19,-0.0009259259095415473,3.9302328752599536e-19,2.0140648503778022e-19,-6.776263578034403e-20,-7.792703114739563e-20,0.00013227513409219682,-8.131516293641283e-20,3.2863504054271407e-21,0.0006944444612599909,4.87890977618477e-19,-0.00019841270113829523,-9.920635056914762e-05,-3.036324119680156e-19,6.776263578034403e-20,-1.5246593050577406e-20,-8.131516293641283e-20,2.8344671591185033e-05,5.641136305786884e-21,0.00030637255986221135,-1.2400562347802957e-18,-1.5077186461126546e-19,-0.00014140272105578333,4.0488174878755556e-19,8.268727462687931e-20,1.84557032448751e-20,3.2863504054271407e-21,5.641136305786884e-21,1.0100194231199566e-05,3.0,8.0,16.0,0.07133374363183975,-0.031173406168818474,-0.015012254938483238,-0.008272059261798859,0.00390625,0.0026041667442768812,0.0013786765048280358,0.0008680555620230734,0.0006127451197244227,0.0002553104714024812,-0.031173406168818474,0.07023590803146362,0.0026041667442768812,0.0013786765048280358,-0.0234375,-0.0026041667442768812,-0.0013786765048280358,-3.415236843329339e-18,-1.3552527156068805e-18,1.0164395367051604e-20,-0.015012254938483238,0.0026041667442768812,0.008629493415355682,0.0006127451197244227,-9.63584680796492e-18,-0.0007440476329065859,-5.38712954453735e-19,-0.0008680555620230734,-0.00017507003212813288,-7.335305323222241e-19,-0.008272059261798859,0.0013786765048280358,0.0006127451197244227,0.002233601873740554,-3.0357660829594124e-18,-9.75781955236954e-19,-0.00018382353300694376,-1.0570971181733668e-18,-8.169934881152585e-05,-0.00010941876826109365,0.00390625,-0.0234375,-9.63584680796492e-18,-3.0357660829594124e-18,0.01171875,-5.492023284039434e-19,1.9230909062237608e-18,1.1292689368113482e-18,3.2239395393527224e-19,-3.8963515573697816e-20,0.0026041667442768812,-0.0026041667442768812,-0.0007440476329065859,-9.75781955236954e-19,-5.492023284039434e-19,0.0007440476329065859,2.710505431213761e-20,1.7618285302889447e-19,1.1519648082658485e-19,4.731269216707021e-20,0.0013786765048280358,-0.0013786765048280358,-5.38712954453735e-19,-0.00018382353300694376,1.9230909062237608e-18,2.710505431213761e-20,0.00018382353300694376,4.743384504624082e-20,2.0328790734103208e-20,-1.0986663786924031e-20,0.0008680555620230734,-3.415236843329339e-18,-0.0008680555620230734,-1.0570971181733668e-18,1.1292689368113482e-18,1.7618285302889447e-19,4.743384504624082e-20,0.00012400794366840273,-4.1504614415460717e-20,7.355090966486627e-20,0.0006127451197244227,-1.3552527156068805e-18,-0.00017507003212813288,-8.169934881152585e-05,3.2239395393527224e-19,1.1519648082658485e-19,2.0328790734103208e-20,-4.1504614415460717e-20,2.3342670829151757e-05,1.7753486681541532e-20,0.0002553104714024812,1.0164395367051604e-20,-7.335305323222241e-19,-0.00010941876826109365,-3.8963515573697816e-20,4.731269216707021e-20,-1.0986663786924031e-20,7.355090966486627e-20,1.7753486681541532e-20,7.294584520423086e-06,3.0,9.0,3.0,0.23945005238056183,-0.12777778506278992,-0.05656565725803375,-0.12777778506278992,0.018518518656492233,0.011111111380159855,0.02777777798473835,0.003367003286257386,0.011111111380159855,0.018518518656492233,-0.12777778506278992,0.31296294927597046,0.011111111380159855,0.02777777798473835,-0.1111111119389534,-0.011111111380159855,-0.02777777798473835,-8.079282319500397e-18,-5.637851296924623e-18,-3.8163916471489756e-17,-0.05656565725803375,0.011111111380159855,0.030495431274175644,0.011111111380159855,-4.169184178402842e-17,-0.0027777778450399637,-8.673617379884035e-19,-0.0028860028833150864,-0.0027777778450399637,2.6020852139652106e-18,-0.12777778506278992,0.02777777798473835,0.011111111380159855,0.31296294927597046,-8.448065740920016e-17,-3.610680855415472e-19,-0.02777777798473835,-4.329337956540957e-19,-0.011111111380159855,-0.1111111119389534,0.018518518656492233,-0.1111111119389534,-4.169184178402842e-17,-8.448065740920016e-17,0.0555555559694767,1.0191500421363742e-17,1.806320921076947e-17,2.8189256484623115e-18,3.414741982527879e-18,2.4919107120735577e-17,0.011111111380159855,-0.011111111380159855,-0.0027777778450399637,-3.610680855415472e-19,1.0191500421363742e-17,0.0027777778450399637,1.6705980567474353e-18,4.336808689942018e-19,3.0907308904950657e-19,-1.3211799054049025e-18,0.02777777798473835,-0.02777777798473835,-8.673617379884035e-19,-0.02777777798473835,1.806320921076947e-17,1.6705980567474353e-18,0.02777777798473835,2.948245863432024e-20,-1.734723475976807e-18,-5.204170427930421e-18,0.003367003286257386,-8.079282319500397e-18,-0.0028860028833150864,-4.329337956540957e-19,2.8189256484623115e-18,4.336808689942018e-19,2.948245863432024e-20,0.0003607503604143858,-4.618807873199328e-20,3.576841155049869e-19,0.011111111380159855,-5.637851296924623e-18,-0.0027777778450399637,-0.011111111380159855,3.414741982527879e-18,3.0907308904950657e-19,-1.734723475976807e-18,-4.618807873199328e-20,0.0027777778450399637,-1.734723475976807e-18,0.018518518656492233,-3.8163916471489756e-17,2.6020852139652106e-18,-0.1111111119389534,2.4919107120735577e-17,-1.3211799054049025e-18,-5.204170427930421e-18,3.576841155049869e-19,-1.734723475976807e-18,0.0555555559694767,3.0,9.0,4.0,0.1978282779455185,-0.10000000149011612,-0.04409090802073479,-0.08222222328186035,0.013888888992369175,0.008333333767950535,0.01666666753590107,0.0025252525229007006,0.006666666828095913,0.009259259328246117,-0.10000000149011612,0.23888888955116272,0.008333333767950535,0.01666666753590107,-0.0833333358168602,-0.008333333767950535,-0.01666666753590107,-1.5178830414797062e-18,-6.938893903907228e-18,-1.442566923217773e-17,-0.04409090802073479,0.008333333767950535,0.023288238793611526,0.006666666828095913,-4.336808689942018e-18,-0.0020833334419876337,-1.2576745200831851e-17,-0.0021645021624863148,-0.0016666667070239782,-1.8040559351236543e-17,-0.08222222328186035,0.01666666753590107,0.006666666828095913,0.1196296289563179,-1.6509333886476356e-17,-1.0380189418073825e-17,-0.011111111380159855,-5.583641188300348e-18,-0.004444444552063942,-0.02777777798473835,0.013888888992369175,-0.0833333358168602,-4.336808689942018e-18,-1.6509333886476356e-17,0.0416666679084301,5.7462715141731735e-18,1.0408340855860843e-17,-2.981555974335137e-19,8.931770664467488e-34,1.645988399548217e-18,0.008333333767950535,-0.008333333767950535,-0.0020833334419876337,-1.0380189418073825e-17,5.7462715141731735e-18,0.0020833334419876337,1.6263032587282567e-18,2.168404344971009e-19,3.2526065174565133e-19,2.2823546782047826e-18,0.01666666753590107,-0.01666666753590107,-1.2576745200831851e-17,-0.011111111380159855,1.0408340855860843e-17,1.6263032587282567e-18,0.011111111380159855,7.318364664277155e-19,2.927345865710862e-18,5.291880730977635e-19,0.0025252525229007006,-1.5178830414797062e-18,-0.0021645021624863148,-5.583641188300348e-18,-2.981555974335137e-19,2.168404344971009e-19,7.318364664277155e-19,0.00027056277031078935,4.336808689942018e-19,8.417779205215392e-19,0.006666666828095913,-6.938893903907228e-18,-0.0016666667070239782,-0.004444444552063942,8.931770664467488e-34,3.2526065174565133e-19,2.927345865710862e-18,4.336808689942018e-19,0.0011111111380159855,5.02443276621908e-18,0.009259259328246117,-1.442566923217773e-17,-1.8040559351236543e-17,-0.02777777798473835,1.645988399548217e-18,2.2823546782047826e-18,5.291880730977635e-19,8.417779205215392e-19,5.02443276621908e-18,0.009259259328246117,3.0,9.0,5.0,0.16869649291038513,-0.08222222328186035,-0.03616161644458771,-0.05746031925082207,0.011111111380159855,0.006666666828095913,0.011111111380159855,0.002020202111452818,0.004444444552063942,0.005291005130857229,-0.08222222328186035,0.19333332777023315,0.006666666828095913,0.011111111380159855,-0.06666667014360428,-0.006666666828095913,-0.011111111380159855,1.81603863891322e-18,3.903127820947816e-18,3.0791341698588326e-17,-0.03616161644458771,0.006666666828095913,0.01885281316936016,0.004444444552063942,2.981555974335137e-19,-0.0016666667070239782,3.686287386450715e-18,-0.0017316017765551805,-0.0011111111380159855,7.806255641895632e-18,-0.05746031925082207,0.011111111380159855,0.004444444552063942,0.060476191341876984,3.382710778154774e-17,8.673617379884035e-19,-0.0055555556900799274,-5.421010862427522e-20,-0.002222222276031971,-0.010582010261714458,0.011111111380159855,-0.06666667014360428,2.981555974335137e-19,3.382710778154774e-17,0.03333333507180214,7.7152922442944e-18,4.5863575002206904e-18,-7.792703114739563e-19,-6.027434030090281e-19,-8.794915144908811e-18,0.006666666828095913,-0.006666666828095913,-0.0016666667070239782,8.673617379884035e-19,7.7152922442944e-18,0.0016666667070239782,-5.421010862427522e-20,1.2553699296268922e-20,-5.421010862427522e-20,-1.0842021724855044e-19,0.011111111380159855,-0.011111111380159855,3.686287386450715e-18,-0.0055555556900799274,4.5863575002206904e-18,-5.421010862427522e-20,0.0055555556900799274,-1.7513706409008016e-19,-1.3010426069826053e-18,-6.667843360785852e-18,0.002020202111452818,1.81603863891322e-18,-0.0017316017765551805,-5.421010862427522e-20,-7.792703114739563e-19,1.2553699296268922e-20,-1.7513706409008016e-19,0.00021645022206939757,-3.129981361808724e-21,5.082552466460405e-20,0.004444444552063942,3.903127820947816e-18,-0.0011111111380159855,-0.002222222276031971,-6.027434030090281e-19,-5.421010862427522e-20,-1.3010426069826053e-18,-3.129981361808724e-21,0.0005555555690079927,-3.876022766635678e-18,0.005291005130857229,3.0791341698588326e-17,7.806255641895632e-18,-0.010582010261714458,-8.794915144908811e-18,-1.0842021724855044e-19,-6.667843360785852e-18,5.082552466460405e-20,-3.876022766635678e-18,0.0026455025654286146,3.0,9.0,6.0,0.14710597693920135,-0.06984127312898636,-0.030663780868053436,-0.04246031865477562,0.009259259328246117,0.0055555556900799274,0.007936508394777775,0.001683501643128693,0.0031746032182127237,0.003306878264993429,-0.06984127312898636,0.16243386268615723,0.0055555556900799274,0.007936508394777775,-0.0555555559694767,-0.0055555556900799274,-0.007936508394777775,5.583641188300348e-18,4.336808689942018e-18,1.2115529143606984e-17,-0.030663780868053436,0.0055555556900799274,0.015842953696846962,0.0031746032182127237,3.146076904216014e-17,-0.0013888889225199819,-1.1354525316610679e-32,-0.0014430014416575432,-0.0007936508045531809,4.403977410042549e-18,-0.04246031865477562,0.007936508394777775,0.0031746032182127237,0.035171955823898315,4.8772957813735565e-17,5.610583856718484e-20,-0.0031746032182127237,3.957337929572091e-18,-0.0012698412174358964,-0.004960317630320787,0.009259259328246117,-0.0555555559694767,3.146076904216014e-17,4.8772957813735565e-17,0.02777777798473835,-4.386066468238938e-18,-1.002529419370285e-17,-2.7234909260599248e-18,-2.11471060384412e-18,-6.057764571803492e-18,0.0055555556900799274,-0.0055555556900799274,-0.0013888889225199819,5.610583856718484e-20,-4.386066468238938e-18,0.0013888889225199819,1.5829778144959026e-33,0.0,-1.3552527156068805e-20,1.0149344957984328e-33,0.007936508394777775,-0.007936508394777775,-1.1354525316610679e-32,-0.0031746032182127237,-1.002529419370285e-17,1.5829778144959026e-33,0.0031746032182127237,9.829367130495847e-34,7.6322143643529275e-34,2.186311493985973e-33,0.001683501643128693,5.583641188300348e-18,-0.0014430014416575432,3.957337929572091e-18,-2.7234909260599248e-18,0.0,9.829367130495847e-34,0.0001803751802071929,-2.0328790734103208e-19,-6.29378153444141e-19,0.0031746032182127237,4.336808689942018e-18,-0.0007936508045531809,-0.0012698412174358964,-2.11471060384412e-18,-1.3552527156068805e-20,7.6322143643529275e-34,-2.0328790734103208e-19,0.0003174603043589741,2.524191270042317e-19,0.003306878264993429,1.2115529143606984e-17,4.403977410042549e-18,-0.004960317630320787,-6.057764571803492e-18,1.0149344957984328e-33,2.186311493985973e-33,-6.29378153444141e-19,2.524191270042317e-19,0.0009920635493472219,3.0,9.0,7.0,0.13044331967830658,-0.06071428582072258,-0.026623375713825226,-0.032671958208084106,0.007936508394777775,0.004761904943734407,0.0059523810632526875,0.0014430014416575432,0.0023809524718672037,0.002204585587605834,-0.06071428582072258,0.14007936418056488,0.004761904943734407,0.0059523810632526875,-0.0476190485060215,-0.004761904943734407,-0.0059523810632526875,4.580754178751256e-18,3.1170812458958252e-18,7.636454487292584e-18,-0.026623375713825226,0.004761904943734407,0.013664708472788334,0.0023809524718672037,2.665588035027029e-17,-0.0011904762359336019,-6.0127436032422354e-33,-0.0012368584284558892,-0.0005952381179668009,2.749008620776573e-18,-0.032671958208084106,0.0059523810632526875,0.0023809524718672037,0.022354496642947197,3.4624188945971186e-17,-9.702257475195184e-21,-0.0019841270986944437,2.791820594150174e-18,-0.0007936508045531809,-0.0026455025654286146,0.007936508394777775,-0.0476190485060215,2.665588035027029e-17,3.4624188945971186e-17,0.02380952425301075,-3.222416079459553e-18,-5.3706934657659215e-18,-2.3344207346813204e-18,-1.5860329011843016e-18,-3.818227243646292e-18,0.004761904943734407,-0.004761904943734407,-0.0011904762359336019,-9.702257475195184e-21,-3.222416079459553e-18,0.0011904762359336019,7.268775388307677e-34,2.710505431213761e-20,6.776263578034403e-21,4.184736470875823e-34,0.0059523810632526875,-0.0059523810632526875,-6.0127436032422354e-33,-0.0019841270986944437,-5.3706934657659215e-18,7.268775388307677e-34,0.0019841270986944437,5.265732096151538e-34,3.5776005263383236e-34,8.612741497654319e-34,0.0014430014416575432,4.580754178751256e-18,-0.0012368584284558892,2.791820594150174e-18,-2.3344207346813204e-18,2.710505431213761e-20,5.265732096151538e-34,0.00015460730355698615,-1.0164395367051604e-19,-3.9669894212605716e-19,0.0023809524718672037,3.1170812458958252e-18,-0.0005952381179668009,-0.0007936508045531809,-1.5860329011843016e-18,6.776263578034403e-21,3.5776005263383236e-34,-1.0164395367051604e-19,0.00019841270113829523,1.415276172027996e-19,0.002204585587605834,7.636454487292584e-18,2.749008620776573e-18,-0.0026455025654286146,-3.818227243646292e-18,4.184736470875823e-34,8.612741497654319e-34,-3.9669894212605716e-19,1.415276172027996e-19,0.00044091709423810244,3.0,9.0,8.0,0.11718574911355972,-0.05370370298624039,-0.023526936769485474,-0.025925925001502037,0.0069444444961845875,0.004166666883975267,0.004629629664123058,0.0012626262614503503,0.0018518518190830946,0.0015432098880410194,-0.05370370298624039,0.12314815074205399,0.004166666883975267,0.004629629664123058,-0.0416666679084301,-0.004166666883975267,-0.004629629664123058,4.052205619664573e-18,2.168404344971009e-18,4.9873299934333204e-18,-0.023526936769485474,0.004166666883975267,0.01201449055224657,0.0018518518190830946,2.5592802716268166e-17,-0.0010416667209938169,-2.168404344971009e-19,-0.0010822510812431574,-0.00046296295477077365,1.870248747537495e-18,-0.025925925001502037,0.004629629664123058,0.0018518518190830946,0.015123456716537476,2.605695361030637e-17,1.2230664264434224e-20,-0.0013227512827143073,2.392257409906181e-18,-0.0005291005363687873,-0.0015432098880410194,0.0069444444961845875,-0.0416666679084301,2.5592802716268166e-17,2.605695361030637e-17,0.02083333395421505,-4.934324673371229e-18,-3.132904383833352e-18,-2.042618091147367e-18,-1.2335811683428072e-18,-2.569960620900948e-18,0.004166666883975267,-0.004166666883975267,-0.0010416667209938169,1.2230664264434224e-20,-4.934324673371229e-18,0.0010416667209938169,-2.763803287253774e-21,2.710505431213761e-20,-4.278949671954889e-22,-8.546341231605518e-21,0.004629629664123058,-0.004629629664123058,-2.168404344971009e-19,-0.0013227512827143073,-3.132904383833352e-18,-2.763803287253774e-21,0.0013227512827143073,-3.3881317890172014e-21,6.098637220230962e-20,-2.710505431213761e-20,0.0012626262614503503,4.052205619664573e-18,-0.0010822510812431574,2.392257409906181e-18,-2.042618091147367e-18,2.710505431213761e-20,-3.3881317890172014e-21,0.00013528138515539467,-1.2197274440461925e-19,-2.778268066994105e-19,0.0018518518190830946,2.168404344971009e-18,-0.00046296295477077365,-0.0005291005363687873,-1.2335811683428072e-18,-4.278949671954889e-22,6.098637220230962e-20,-1.2197274440461925e-19,0.00013227513409219682,9.486769009248164e-20,0.0015432098880410194,4.9873299934333204e-18,1.870248747537495e-18,-0.0015432098880410194,-2.569960620900948e-18,-8.546341231605518e-21,-2.710505431213761e-20,-2.778268066994105e-19,9.486769009248164e-20,0.00022045854711905122,3.0,9.0,9.0,0.1063823401927948,-0.04814814776182175,-0.021077441051602364,-0.021077441051602364,0.006172839552164078,0.003703703638166189,0.003703703638166189,0.0011223345063626766,0.00148148147854954,0.0011223345063626766,-0.04814814776182175,0.10987654328346252,0.003703703638166189,0.003703703638166189,-0.03703703731298447,-0.003703703638166189,-0.003703703638166189,-1.748276003132876e-18,-1.0028870095490916e-18,-1.8431436932253575e-18,-0.021077441051602364,0.003703703638166189,0.010720699094235897,0.00148148147854954,-9.236372338841624e-18,-0.0009259259095415473,0.0,-0.0009620009805075824,-0.000370370369637385,-9.215718466126788e-19,-0.021077441051602364,0.003703703638166189,0.00148148147854954,0.010720699094235897,-9.236372338841624e-18,-3.018466388854387e-20,-0.0009259259095415473,-1.1066096680989534e-18,-0.000370370369637385,-0.0009620009805075824,0.006172839552164078,-0.03703703731298447,-9.236372338841624e-18,-9.236372338841624e-18,0.018518518656492233,1.2230196792615287e-34,-1.1662808398758668e-34,9.078303086866416e-19,4.934324673371229e-19,9.078303086866416e-19,0.003703703638166189,-0.003703703638166189,-0.0009259259095415473,-3.018466388854387e-20,1.2230196792615287e-34,0.0009259259095415473,2.6069907649671038e-21,1.3552527156068805e-20,4.430928256562756e-21,2.0979861039952e-21,0.003703703638166189,-0.003703703638166189,0.0,-0.0009259259095415473,-1.1662808398758668e-34,2.6069907649671038e-21,0.0009259259095415473,0.0,-6.776263578034403e-21,0.0,0.0011223345063626766,-1.748276003132876e-18,-0.0009620009805075824,-1.1066096680989534e-18,9.078303086866416e-19,1.3552527156068805e-20,0.0,0.0001202501225634478,8.470329472543003e-20,9.656175598699024e-20,0.00148148147854954,-1.0028870095490916e-18,-0.000370370369637385,-0.000370370369637385,4.934324673371229e-19,4.430928256562756e-21,-6.776263578034403e-21,8.470329472543003e-20,9.259259240934625e-05,4.0657581468206416e-20,0.0011223345063626766,-1.8431436932253575e-18,-9.215718466126788e-19,-0.0009620009805075824,9.078303086866416e-19,2.0979861039952e-21,0.0,9.656175598699024e-20,4.0657581468206416e-20,0.0001202501225634478,3.0,9.0,10.0,0.09740740805864334,-0.04363636299967766,-0.019090909510850906,-0.017474748194217682,0.0055555556900799274,0.0033333334140479565,0.0030303029343485832,0.001010101055726409,0.001212121220305562,0.0008417508215643466,-0.04363636299967766,0.09919191896915436,0.0033333334140479565,0.0030303029343485832,-0.03333333507180214,-0.0033333334140479565,-0.0030303029343485832,-1.5720931501039814e-18,-7.860465750519907e-19,-1.4094628242311558e-18,-0.019090909510850906,0.0033333334140479565,0.009678931906819344,0.001212121220305562,-8.353106399215664e-18,-0.0008333333535119891,2.710505431213761e-20,-0.0008658008882775903,-0.0003030303050763905,-6.505213034913027e-19,-0.017474748194217682,0.0030303029343485832,0.001212121220305562,0.007881593890488148,-7.607551142328756e-18,1.3532809722893213e-20,-0.0006734006456099451,-8.411628600373178e-19,-0.000269360258243978,-0.0006313131307251751,0.0055555556900799274,-0.03333333507180214,-8.353106399215664e-18,-7.607551142328756e-18,0.01666666753590107,-1.0935877641257877e-34,-1.886147955395296e-34,8.170472364589468e-19,4.0371746622599303e-19,6.65853458036491e-19,0.0033333334140479565,-0.0033333334140479565,-0.0008333333535119891,1.3532809722893213e-20,-1.0935877641257877e-34,0.0008333333535119891,-1.1562386541970732e-21,0.0,-4.624954414839901e-22,3.080971920256916e-21,0.0030303029343485832,-0.0030303029343485832,2.710505431213761e-20,-0.0006734006456099451,-1.886147955395296e-34,-1.1562386541970732e-21,0.0006734006456099451,0.0,-6.776263578034403e-21,-6.776263578034403e-21,0.001010101055726409,-1.5720931501039814e-18,-0.0008658008882775903,-8.411628600373178e-19,8.170472364589468e-19,0.0,0.0,0.00010822511103469878,4.743384504624082e-20,7.284483346386983e-20,0.001212121220305562,-7.860465750519907e-19,-0.0003030303050763905,-0.000269360258243978,4.0371746622599303e-19,-4.624954414839901e-22,-6.776263578034403e-21,4.743384504624082e-20,6.73400645609945e-05,1.6940658945086007e-20,0.0008417508215643466,-1.4094628242311558e-18,-6.505213034913027e-19,-0.0006313131307251751,6.65853458036491e-19,3.080971920256916e-21,-6.776263578034403e-21,7.284483346386983e-20,1.6940658945086007e-20,7.014590664766729e-05,3.0,9.0,11.0,0.0898318886756897,-0.03989899158477783,-0.017447199672460556,-0.01472416426986456,0.005050505045801401,0.0030303029343485832,0.0025252525229007006,0.0009182736393995583,0.001010101055726409,0.0006475006230175495,-0.03989899158477783,0.09040404111146927,0.0030303029343485832,0.0025252525229007006,-0.03030303120613098,-0.0030303029343485832,-0.0025252525229007006,2.9408983928669308e-18,1.3145951341386741e-18,2.0599841277224584e-18,-0.017447199672460556,0.0030303029343485832,0.008821985684335232,0.001010101055726409,1.7858526676915673e-17,-0.0007575757335871458,-2.710505431213761e-20,-0.0007870916742831469,-0.00025252526393160224,7.995991022080595e-19,-0.01472416426986456,0.0025252525229007006,0.001010101055726409,0.005966502707451582,1.449555937649356e-17,2.88848788028875e-20,-0.0005050505278632045,1.3594372155306332e-18,-0.00020202020823489875,-0.00043166711111553013,0.005050505045801401,-0.03030303120613098,1.7858526676915673e-17,1.449555937649356e-17,0.01515151560306549,-2.609890697020414e-18,-1.739927062415225e-18,-1.485540486324036e-18,-6.728624178605942e-19,-1.006418140186504e-18,0.0030303029343485832,-0.0030303029343485832,-0.0007575757335871458,2.88848788028875e-20,-2.609890697020414e-18,0.0007575757335871458,-1.5980045981402828e-21,-2.710505431213761e-20,-4.366146847564713e-21,-1.3844634599502613e-21,0.0025252525229007006,-0.0025252525229007006,-2.710505431213761e-20,-0.0005050505278632045,-1.739927062415225e-18,-1.5980045981402828e-21,0.0005050505278632045,-1.6940658945086007e-21,6.776263578034403e-21,-6.776263578034403e-21,0.0009182736393995583,2.9408983928669308e-18,-0.0007870916742831469,1.3594372155306332e-18,-1.485540486324036e-18,-2.710505431213761e-20,-1.6940658945086007e-21,9.838645928539336e-05,-7.792703114739563e-20,-1.0587911840678754e-19,0.001010101055726409,1.3145951341386741e-18,-0.00025252526393160224,-0.00020202020823489875,-6.728624178605942e-19,-4.366146847564713e-21,6.776263578034403e-21,-7.792703114739563e-20,5.0505052058724687e-05,8.470329472543003e-21,0.0006475006230175495,2.0599841277224584e-18,7.995991022080595e-19,-0.00043166711111553013,-1.006418140186504e-18,-1.3844634599502613e-21,-6.776263578034403e-21,-1.0587911840678754e-19,8.470329472543003e-21,4.316671038395725e-05,3.0,9.0,12.0,0.08335152268409729,-0.036752138286828995,-0.016064491122961044,-0.012576312758028507,0.004629629664123058,0.0027777778450399637,0.0021367522422224283,0.0008417508215643466,0.0008547008619643748,0.000508750497829169,-0.036752138286828995,0.08304843306541443,0.0027777778450399637,0.0021367522422224283,-0.02777777798473835,-0.0027777778450399637,-0.0021367522422224283,2.7234909260599248e-18,1.1384122811097797e-18,1.5720931501039814e-18,-0.016064491122961044,0.0027777778450399637,0.008104627020657063,0.0008547008619643748,1.6218394612706755e-17,-0.0006944444612599909,1.3552527156068805e-20,-0.0007215007208287716,-0.0002136752154910937,6.505213034913027e-19,-0.012576312758028507,0.0021367522422224283,0.0008547008619643748,0.0046268547885119915,1.33051902267481e-17,-2.1008681157025626e-33,-0.0003885003970935941,1.0947595820410953e-18,-0.0001554001501062885,-0.0003052503161597997,0.004629629664123058,-0.02777777798473835,1.6218394612706755e-17,1.33051902267481e-17,0.013888888992369175,-2.193033234119469e-18,-2.453743399198473e-18,-1.3617454630299624e-18,-5.69345158596587e-19,-7.794606147136318e-19,0.0027777778450399637,-0.0027777778450399637,-0.0006944444612599909,-2.1008681157025626e-33,-2.193033234119469e-18,0.0006944444612599909,3.874421115115605e-34,2.150174088494559e-34,8.989867980430067e-35,1.2307556718691375e-34,0.0021367522422224283,-0.0021367522422224283,1.3552527156068805e-20,-0.0003885003970935941,-2.453743399198473e-18,3.874421115115605e-34,0.0003885003970935941,2.2870418089598426e-34,-1.6940658945086007e-21,0.0,0.0008417508215643466,2.7234909260599248e-18,-0.0007215007208287716,1.0947595820410953e-18,-1.3617454630299624e-18,2.150174088494559e-34,2.2870418089598426e-34,9.018759010359645e-05,-5.0986876582840174e-20,-8.098292067350208e-20,0.0008547008619643748,1.1384122811097797e-18,-0.0002136752154910937,-0.0001554001501062885,-5.69345158596587e-19,8.989867980430067e-35,-1.6940658945086007e-21,-5.0986876582840174e-20,3.885003752657212e-05,0.0,0.000508750497829169,1.5720931501039814e-18,6.505213034913027e-19,-0.0003052503161597997,-7.794606147136318e-19,1.2307556718691375e-34,0.0,-8.098292067350208e-20,0.0,2.775002758426126e-05,3.0,9.0,13.0,0.07774447649717331,-0.034065935760736465,-0.014885114505887032,-0.01086691115051508,0.004273504484444857,0.0025641026441007853,0.0018315018387511373,0.0007770007941871881,0.0007326007471419871,0.0004070004215463996,-0.034065935760736465,0.07680097967386246,0.0025641026441007853,0.0018315018387511373,-0.025641025975346565,-0.0025641026441007853,-0.0018315018387511373,-1.2569957563520394e-18,-4.87890977618477e-19,-6.2341624917916505e-19,-0.014885114505887032,0.0025641026441007853,0.007495282683521509,0.0007326007471419871,-6.492013300288212e-18,-0.0006410256610251963,1.3552527156068805e-20,-0.000666000647470355,-0.00018315018678549677,-2.574980159653073e-19,-0.01086691115051508,0.0018315018387511373,0.0007326007471419871,0.003661153605207801,-4.6730667079315616e-18,-0.0,-0.0003052503161597997,-5.32026698466104e-19,-0.00012210012937430292,-0.0002220002206740901,0.004273504484444857,-0.025641025975346565,-6.492013300288212e-18,-4.6730667079315616e-18,0.012820512987673283,0.0,-5.514153312154895e-35,6.284978781760197e-19,2.4400507166273646e-19,3.0808719315691993e-19,0.0025641026441007853,-0.0025641026441007853,-0.0006410256610251963,-0.0,0.0,0.0006410256610251963,0.0,0.0,0.0,0.0,0.0018315018387511373,-0.0018315018387511373,1.3552527156068805e-20,-0.0003052503161597997,-5.514153312154895e-35,0.0,0.0003052503161597997,6.018531076210112e-36,-1.6940658945086007e-21,3.3881317890172014e-21,0.0007770007941871881,-1.2569957563520394e-18,-0.000666000647470355,-5.32026698466104e-19,6.284978781760197e-19,0.0,6.018531076210112e-36,8.325008093379438e-05,3.69794905627467e-20,3.200905919714359e-20,0.0007326007471419871,-4.87890977618477e-19,-0.00018315018678549677,-0.00012210012937430292,2.4400507166273646e-19,0.0,-1.6940658945086007e-21,3.69794905627467e-20,3.052503234357573e-05,8.470329472543003e-22,0.0004070004215463996,-6.2341624917916505e-19,-2.574980159653073e-19,-0.0002220002206740901,3.0808719315691993e-19,0.0,3.3881317890172014e-21,3.200905919714359e-20,8.470329472543003e-22,1.850001899583731e-05,3.0,9.0,14.0,0.07284511625766754,-0.0317460335791111,-0.013867244124412537,-0.009484127163887024,0.003968254197388887,0.0023809524718672037,0.0015873016091063619,0.0007215007208287716,0.0006349206087179482,0.0003306878206785768,-0.0317460335791111,0.0714285746216774,0.0023809524718672037,0.0015873016091063619,-0.02380952425301075,-0.0023809524718672037,-0.0015873016091063619,2.3344207346813204e-18,8.538092108323347e-19,1.0028870095490916e-18,-0.013867244124412537,0.0023809524718672037,0.0069712428376078606,0.0006349206087179482,1.369801416374647e-17,-0.0005952381179668009,6.776263578034403e-21,-0.0006184292142279446,-0.00015873015217948705,4.1335207826009857e-19,-0.009484127163887024,0.0015873016091063619,0.0006349206087179482,0.002947191707789898,9.45704427393607e-18,-1.279930228066132e-33,-0.00024420025874860585,8.891933091003625e-19,-9.76800947682932e-05,-0.0001653439103392884,0.003968254197388887,-0.02380952425301075,1.369801416374647e-17,9.45704427393607e-18,0.011904762126505375,-1.6112080397297764e-18,-1.322016805389653e-18,-1.1672103673406602e-18,-4.2294210008930866e-19,-4.956353010071399e-19,0.0023809524718672037,-0.0023809524718672037,-0.0005952381179668009,-1.279930228066132e-33,-1.6112080397297764e-18,0.0005952381179668009,1.7892370557477632e-34,1.5797196518043354e-34,5.724161002853436e-35,6.708000986884357e-35,0.0015873016091063619,-0.0015873016091063619,6.776263578034403e-21,-0.00024420025874860585,-1.322016805389653e-18,1.7892370557477632e-34,0.00024420025874860585,1.4444474582904269e-34,-1.6940658945086007e-21,0.0,0.0007215007208287716,2.3344207346813204e-18,-0.0006184292142279446,8.891933091003625e-19,-1.1672103673406602e-18,1.5797196518043354e-34,1.4444474582904269e-34,7.730365177849308e-05,-5.494096146955704e-20,-5.1494574839665933e-20,0.0006349206087179482,8.538092108323347e-19,-0.00015873015217948705,-9.76800947682932e-05,-4.2294210008930866e-19,5.724161002853436e-35,-1.6940658945086007e-21,-5.494096146955704e-20,2.44200236920733e-05,0.0,0.0003306878206785768,1.0028870095490916e-18,4.1335207826009857e-19,-0.0001653439103392884,-4.956353010071399e-19,6.708000986884357e-35,0.0,-5.1494574839665933e-20,0.0,1.2718763173324987e-05,3.0,9.0,15.0,0.06852726638317108,-0.029722223058342934,-0.012979798018932343,-0.008349672891199589,0.003703703638166189,0.002222222276031971,0.0013888889225199819,0.0006734006456099451,0.0005555555690079927,0.00027233114815317094,-0.029722223058342934,0.06675925850868225,0.002222222276031971,0.0013888889225199819,-0.02222222276031971,-0.002222222276031971,-0.0013888889225199819,-1.0893963497444546e-18,-3.6591823321385775e-19,-4.2012834183813297e-19,-0.012979798018932343,0.002222222276031971,0.006515752989798784,0.0005555555690079927,-5.652845599888372e-18,-0.0005555555690079927,0.0,-0.0005772005533799529,-0.00013888889225199819,-1.7279472123987727e-19,-0.008349672891199589,0.0013888889225199819,0.0005555555690079927,0.0024078264832496643,-3.572919801958485e-18,-0.0,-0.00019841270113829523,-2.943138863254819e-19,-7.936507608974352e-05,-0.0001256913092220202,0.003703703638166189,-0.02222222276031971,-5.652845599888372e-18,-3.572919801958485e-18,0.011111111380159855,0.0,4.403006658560884e-35,5.446981748722273e-19,1.8503717525142107e-19,2.0234079846435594e-19,0.002222222276031971,-0.002222222276031971,-0.0005555555690079927,-0.0,0.0,0.0005555555690079927,0.0,0.0,0.0,0.0,0.0013888889225199819,-0.0013888889225199819,0.0,-0.00019841270113829523,4.403006658560884e-35,0.0,0.00019841270113829523,0.0,0.0,0.0,0.0006734006456099451,-1.0893963497444546e-18,-0.0005772005533799529,-2.943138863254819e-19,5.446981748722273e-19,0.0,0.0,7.215006917249411e-05,1.0532429383367696e-35,2.1022420451820135e-20,0.0005555555690079927,-3.6591823321385775e-19,-0.00013888889225199819,-7.936507608974352e-05,1.8503717525142107e-19,0.0,0.0,1.0532429383367696e-35,1.984126902243588e-05,0.0,0.00027233114815317094,-4.2012834183813297e-19,-1.7279472123987727e-19,-0.0001256913092220202,2.0234079846435594e-19,0.0,0.0,2.1022420451820135e-20,0.0,8.977950528787915e-06,3.0,9.0,16.0,0.06469309329986572,-0.027941176667809486,-0.01219919789582491,-0.007407407276332378,0.0034722222480922937,0.0020833334419876337,0.0012254902394488454,0.0006313131307251751,0.0004901961074210703,0.0002269426331622526,-0.027941176667809486,0.06266339868307114,0.0020833334419876337,0.0012254902394488454,-0.02083333395421505,-0.0020833334419876337,-0.0012254902394488454,-2.8189256484623115e-18,8.131516293641283e-20,1.1180834903756764e-18,-0.01219919789582491,0.0020833334419876337,0.006116177421063185,0.0004901961074210703,-1.0570971181733668e-17,-0.0005208333604969084,4.0657581468206416e-20,-0.0005411255406215787,-0.00012254902685526758,4.2775163836342167e-19,-0.007407407276332378,0.0012254902394488454,0.0004901961074210703,0.00199268595315516,4.336808689942018e-18,1.3823577699190182e-18,-0.0001633986976230517,7.182839392716467e-19,-6.535947613883764e-05,-9.726112330099568e-05,0.0034722222480922937,-0.02083333395421505,-1.0570971181733668e-17,4.336808689942018e-18,0.010416666977107525,2.3666079866769838e-18,3.3449371929115065e-19,9.943875219599561e-19,-1.3021558789960023e-20,-2.608861477543245e-19,0.0020833334419876337,-0.0020833334419876337,-0.0005208333604969084,1.3823577699190182e-18,2.3666079866769838e-18,0.0005208333604969084,-1.0164395367051604e-19,1.7279472123987727e-19,0.0,-8.172558022955838e-20,0.0012254902394488454,-0.0012254902394488454,4.0657581468206416e-20,-0.0001633986976230517,3.3449371929115065e-19,-1.0164395367051604e-19,0.0001633986976230517,1.3552527156068805e-20,-3.3881317890172014e-21,-2.360880581653318e-20,0.0006313131307251751,-2.8189256484623115e-18,-0.0005411255406215787,7.182839392716467e-19,9.943875219599561e-19,1.7279472123987727e-19,1.3552527156068805e-20,6.764069257769734e-05,-2.625802136488331e-20,-3.5106479006113884e-20,0.0004901961074210703,8.131516293641283e-20,-0.00012254902685526758,-6.535947613883764e-05,-1.3021558789960023e-20,0.0,-3.3881317890172014e-21,-2.625802136488331e-20,1.633986903470941e-05,-6.704413571428796e-21,0.0002269426331622526,1.1180834903756764e-18,4.2775163836342167e-19,-9.726112330099568e-05,-2.608861477543245e-19,-8.172558022955838e-20,-2.360880581653318e-20,-3.5106479006113884e-20,-6.704413571428796e-21,6.484075129264966e-06,3.0,10.0,3.0,0.21994949877262115,-0.11590909212827682,-0.0469696968793869,-0.11590909212827682,0.01666666753590107,0.00909090880304575,0.02500000037252903,0.0025252525229007006,0.00909090880304575,0.01666666753590107,-0.11590909212827682,0.2825757563114166,0.00909090880304575,0.02500000037252903,-0.10000000149011612,-0.00909090880304575,-0.02500000037252903,-8.64306877268184e-18,-6.396792817664476e-18,1.717376241217039e-16,-0.0469696968793869,0.00909090880304575,0.022432660683989525,0.00909090880304575,-4.1275614425959086e-17,-0.002020202111452818,-8.239936510889834e-18,-0.0018939394503831863,-0.002020202111452818,2.6020852139652106e-18,-0.11590909212827682,0.02500000037252903,0.00909090880304575,0.2825757563114166,1.2418009903027415e-16,1.5821759854626353e-17,-0.02500000037252903,-1.1807010627459406e-18,-0.00909090880304575,-0.10000000149011612,0.01666666753590107,-0.10000000149011612,-4.1275614425959086e-17,1.2418009903027415e-16,0.05000000074505806,7.806255641895632e-18,7.815375308149029e-18,3.0357660829594124e-18,2.7656343307034296e-18,-7.233384760354887e-17,0.00909090880304575,-0.00909090880304575,-0.002020202111452818,1.5821759854626353e-17,7.806255641895632e-18,0.002020202111452818,-2.8596440277055406e-19,3.2526065174565133e-19,-1.3127135308896633e-19,-7.084241118061371e-18,0.02500000037252903,-0.02500000037252903,-8.239936510889834e-18,-0.02500000037252903,7.815375308149029e-18,-2.8596440277055406e-19,0.02500000037252903,7.85454727323709e-19,1.3010426069826053e-18,8.673617379884035e-18,0.0025252525229007006,-8.64306877268184e-18,-0.0018939394503831863,-1.1807010627459406e-18,3.0357660829594124e-18,3.2526065174565133e-19,7.85454727323709e-19,0.00021043770539108664,1.0948110223354384e-19,-7.54282930002834e-20,0.00909090880304575,-6.396792817664476e-18,-0.002020202111452818,-0.00909090880304575,2.7656343307034296e-18,-1.3127135308896633e-19,1.3010426069826053e-18,1.0948110223354384e-19,0.002020202111452818,4.7704895589362195e-18,0.01666666753590107,1.717376241217039e-16,2.6020852139652106e-18,-0.10000000149011612,-7.233384760354887e-17,-7.084241118061371e-18,8.673617379884035e-18,-7.54282930002834e-20,4.7704895589362195e-18,0.05000000074505806,3.0,10.0,4.0,0.1815151572227478,-0.09068182110786438,-0.03659090772271156,-0.07454545795917511,0.012500000186264515,0.006818181835114956,0.014999999664723873,0.0018939394503831863,0.005454545374959707,0.008333333767950535,-0.09068182110786438,0.21568182110786438,0.006818181835114956,0.014999999664723873,-0.07500000298023224,-0.006818181835114956,-0.014999999664723873,-1.1709383462843448e-17,-8.673617379884035e-19,6.911639295340341e-17,-0.03659090772271156,0.006818181835114956,0.017127525061368942,0.005454545374959707,-3.209238430557093e-17,-0.0015151514671742916,-9.974659986866641e-18,-0.0014204545877873898,-0.001212121220305562,6.054524918934428e-18,-0.07454545795917511,0.014999999664723873,0.005454545374959707,0.108030304312706,9.07707770150698e-17,1.929879867024198e-17,-0.009999999776482582,-1.1926223897340549e-18,-0.003636363660916686,-0.02500000037252903,0.012500000186264515,-0.07500000298023224,-3.209238430557093e-17,9.07707770150698e-17,0.03750000149011612,-5.041540102057596e-18,-3.382710778154774e-17,3.6591823321385775e-18,1.1384122811097797e-18,-1.946745748841909e-17,0.006818181835114956,-0.006818181835114956,-0.0015151514671742916,1.929879867024198e-17,-5.041540102057596e-18,0.0015151514671742916,-2.168404344971009e-19,3.7947076036992655e-19,-2.981555974335137e-19,-5.41500966708345e-18,0.014999999664723873,-0.014999999664723873,-9.974659986866641e-18,-0.009999999776482582,-3.382710778154774e-17,-2.168404344971009e-19,0.009999999776482582,1.0842021724855044e-18,-3.2526065174565133e-19,-4.910098621181082e-19,0.0018939394503831863,-1.1709383462843448e-17,-0.0014204545877873898,-1.1926223897340549e-18,3.6591823321385775e-18,3.7947076036992655e-19,1.0842021724855044e-18,0.00015782828268129379,8.131516293641283e-20,-9.295046637834272e-20,0.005454545374959707,-8.673617379884035e-19,-0.001212121220305562,-0.003636363660916686,1.1384122811097797e-18,-2.981555974335137e-19,-3.2526065174565133e-19,8.131516293641283e-20,0.000808080832939595,1.0039541759368616e-18,0.008333333767950535,6.911639295340341e-17,6.054524918934428e-18,-0.02500000037252903,-1.946745748841909e-17,-5.41500966708345e-18,-4.910098621181082e-19,-9.295046637834272e-20,1.0039541759368616e-18,0.008333333767950535,3.0,10.0,5.0,0.15467531979084015,-0.07454545795917511,-0.029999999329447746,-0.052077922970056534,0.009999999776482582,0.005454545374959707,0.009999999776482582,0.0015151514671742916,0.003636363660916686,0.004761904943734407,-0.07454545795917511,0.17454545199871063,0.005454545374959707,0.009999999776482582,-0.05999999865889549,-0.005454545374959707,-0.009999999776482582,-2.494974837216638e-18,6.505213034913027e-19,2.6454533008646308e-17,-0.029999999329447746,0.005454545374959707,0.013863636180758476,0.003636363660916686,-8.836247705756861e-18,-0.001212121220305562,-3.2526065174565133e-19,-0.0011363636003807187,-0.000808080832939595,8.782037597132586e-18,-0.052077922970056534,0.009999999776482582,0.003636363660916686,0.05461039021611214,2.0816681711721685e-17,5.637851296924623e-18,-0.004999999888241291,5.963111948670274e-19,-0.001818181830458343,-0.009523809887468815,0.009999999776482582,-0.05999999865889549,-8.836247705756861e-18,2.0816681711721685e-17,0.029999999329447746,-2.710505431213761e-19,-6.617234382958327e-18,9.893344823930228e-19,4.726839341409373e-19,-3.96142792411086e-18,0.005454545374959707,-0.005454545374959707,-0.001212121220305562,5.637851296924623e-18,-2.710505431213761e-19,0.001212121220305562,-1.0842021724855044e-19,1.0164395367051604e-20,-1.0842021724855044e-19,-1.2468324983583301e-18,0.009999999776482582,-0.009999999776482582,-3.2526065174565133e-19,-0.004999999888241291,-6.617234382958327e-18,-1.0842021724855044e-19,0.004999999888241291,1.8671977693962757e-19,-6.505213034913027e-19,-5.908901840045999e-18,0.0015151514671742916,-2.494974837216638e-18,-0.0011363636003807187,5.963111948670274e-19,9.893344823930228e-19,1.0164395367051604e-20,1.8671977693962757e-19,0.00012626263196580112,3.8034006903258296e-20,-2.417909418074793e-19,0.003636363660916686,6.505213034913027e-19,-0.000808080832939595,-0.001818181830458343,4.726839341409373e-19,-1.0842021724855044e-19,-6.505213034913027e-19,3.8034006903258296e-20,0.0004040404164697975,-2.5343225781848666e-18,0.004761904943734407,2.6454533008646308e-17,8.782037597132586e-18,-0.009523809887468815,-3.96142792411086e-18,-1.2468324983583301e-18,-5.908901840045999e-18,-2.417909418074793e-19,-2.5343225781848666e-18,0.0023809524718672037,3.0,10.0,6.0,0.13481241464614868,-0.06331168860197067,-0.025432899594306946,-0.03847402706742287,0.008333333767950535,0.004545454401522875,0.0071428571827709675,0.0012626262614503503,0.002597402548417449,0.0029761905316263437,-0.06331168860197067,0.14664502441883087,0.004545454401522875,0.0071428571827709675,-0.05000000074505806,-0.004545454401522875,-0.0071428571827709675,-5.0550926292136644e-18,-4.336808689942018e-18,-1.3010426069826053e-18,-0.025432899594306946,0.004545454401522875,0.011649230495095253,0.002597402548417449,-2.8406096919120216e-17,-0.001010101055726409,-2.5343225781848666e-18,-0.0009469697251915932,-0.0005772005533799529,-5.421010862427522e-19,-0.03847402706742287,0.0071428571827709675,0.002597402548417449,0.03175865858793259,-9.540979117872439e-18,8.673617379884035e-19,-0.0028571428265422583,-1.1926223897340549e-18,-0.0010389609960839152,-0.004464285913854837,0.008333333767950535,-0.05000000074505806,-2.8406096919120216e-17,-9.540979117872439e-18,0.02500000037252903,4.174725544044396e-18,3.934449014842136e-18,2.134523027080837e-18,1.6769540091767162e-18,-8.991852373096968e-19,0.004545454401522875,-0.004545454401522875,-0.001010101055726409,8.673617379884035e-19,4.174725544044396e-18,0.001010101055726409,-2.439454888092385e-19,8.063948562292772e-20,-4.0657581468206416e-20,-1.3552527156068805e-19,0.0071428571827709675,-0.0071428571827709675,-2.5343225781848666e-18,-0.0028571428265422583,3.934449014842136e-18,-2.439454888092385e-19,0.0028571428265422583,1.5814619269687277e-19,3.5236570605778894e-19,1.1384122811097797e-18,0.0012626262614503503,-5.0550926292136644e-18,-0.0009469697251915932,-1.1926223897340549e-18,2.134523027080837e-18,8.063948562292772e-20,1.5814619269687277e-19,0.00010521885269554332,-1.0447827511473192e-20,2.2319711070941777e-19,0.002597402548417449,-4.336808689942018e-18,-0.0005772005533799529,-0.0010389609960839152,1.6769540091767162e-18,-4.0657581468206416e-20,3.5236570605778894e-19,-1.0447827511473192e-20,0.0002308802359038964,-4.946672411965114e-19,0.0029761905316263437,-1.3010426069826053e-18,-5.421010862427522e-19,-0.004464285913854837,-8.991852373096968e-19,-1.3552527156068805e-19,1.1384122811097797e-18,2.2319711070941777e-19,-4.946672411965114e-19,0.0008928571478463709,3.0,10.0,7.0,0.11949855834245682,-0.05503246933221817,-0.02207792177796364,-0.029599567875266075,0.0071428571827709675,0.0038961039390414953,0.0053571430034935474,0.0010822510812431574,0.0019480519695207477,0.0019841270986944437,-0.05503246933221817,0.12646104395389557,0.0038961039390414953,0.0053571430034935474,-0.04285714402794838,-0.0038961039390414953,-0.0053571430034935474,-1.6737371037744975e-18,4.119968255444917e-18,1.6316913478023046e-17,-0.02207792177796364,0.0038961039390414953,0.010046897456049919,0.0019480519695207477,-3.1630542899802974e-18,-0.0008658008882775903,6.488316319937982e-19,-0.000811688310932368,-0.00043290044413879514,3.1433673914015354e-18,-0.029599567875266075,0.0053571430034935474,0.0019480519695207477,0.020183982327580452,5.3997212186938774e-17,7.377109377019446e-18,-0.0017857142956927419,1.8973538018496328e-18,-0.0006493506371043622,-0.0023809524718672037,0.0071428571827709675,-0.04285714402794838,-3.1630542899802974e-18,5.3997212186938774e-17,0.02142857201397419,1.9609219132857199e-32,-5.947623405290525e-18,8.56097295804233e-19,-1.5139404918851253e-18,-6.211962204921646e-18,0.0038961039390414953,-0.0038961039390414953,-0.0008658008882775903,7.377109377019446e-18,1.9609219132857199e-32,0.0008658008882775903,-6.488316319937982e-19,1.3552527156068805e-20,-2.439454888092385e-19,-8.651088598913271e-19,0.0053571430034935474,-0.0053571430034935474,6.488316319937982e-19,-0.0017857142956927419,-5.947623405290525e-18,-6.488316319937982e-19,0.0017857142956927419,-2.7083389842945504e-34,5.958345765448011e-34,2.3724789424295142e-33,0.0010822510812431574,-1.6737371037744975e-18,-0.000811688310932368,1.8973538018496328e-18,8.56097295804233e-19,1.3552527156068805e-20,-2.7083389842945504e-34,9.018759010359645e-05,-6.098637220230962e-20,-2.236199550987972e-19,0.0019480519695207477,4.119968255444917e-18,-0.00043290044413879514,-0.0006493506371043622,-1.5139404918851253e-18,-2.439454888092385e-19,5.958345765448011e-34,-6.098637220230962e-20,0.00014430013834498823,-8.855966890228907e-20,0.0019841270986944437,1.6316913478023046e-17,3.1433673914015354e-18,-0.0023809524718672037,-6.211962204921646e-18,-8.651088598913271e-19,2.3724789424295142e-33,-2.236199550987972e-19,-8.855966890228907e-20,0.00039682540227659047,3.0,10.0,8.0,0.10732322931289673,-0.048674240708351135,-0.019507575780153275,-0.02348484843969345,0.0062500000931322575,0.003409090917557478,0.004166666883975267,0.0009469697251915932,0.0015151514671742916,0.0013888889225199819,-0.048674240708351135,0.11117424070835114,0.003409090917557478,0.004166666883975267,-0.03750000149011612,-0.003409090917557478,-0.004166666883975267,-1.497554250745603e-18,-1.0028870095490916e-18,-2.3129647035674605e-18,-0.019507575780153275,0.003409090917557478,0.008833122439682484,0.0015151514671742916,-8.508029883321333e-18,-0.0007575757335871458,0.0,-0.0007102272938936949,-0.00033670032280497253,-5.247672645832069e-34,-0.02348484843969345,0.004166666883975267,0.0015151514671742916,0.013654401525855064,-1.0366286993518647e-17,5.334911861977122e-21,-0.0011904762359336019,1.3552527156068805e-20,-0.00043290044413879514,-0.0013888889225199819,0.0062500000931322575,-0.03750000149011612,-8.508029883321333e-18,-1.0366286993518647e-17,0.01875000074505806,-9.62964972193618e-35,0.0,7.490851467534009e-19,5.046468133954457e-19,1.1564823517837303e-18,0.003409090917557478,-0.003409090917557478,-0.0007575757335871458,5.334911861977122e-21,-9.62964972193618e-35,0.0007575757335871458,0.0,-6.776263578034403e-21,-6.776263578034403e-21,-0.0,0.004166666883975267,-0.004166666883975267,0.0,-0.0011904762359336019,0.0,0.0,0.0011904762359336019,0.0,0.0,-0.0,0.0009469697251915932,-1.497554250745603e-18,-0.0007102272938936949,1.3552527156068805e-20,7.490851467534009e-19,-6.776263578034403e-21,0.0,7.891414134064689e-05,-3.3881317890172014e-21,4.6202865726114364e-35,0.0015151514671742916,-1.0028870095490916e-18,-0.00033670032280497253,-0.00043290044413879514,5.046468133954457e-19,-6.776263578034403e-21,0.0,-3.3881317890172014e-21,9.620009950594977e-05,3.112614048636079e-35,0.0013888889225199819,-2.3129647035674605e-18,-5.247672645832069e-34,-0.0013888889225199819,1.1564823517837303e-18,-0.0,-0.0,4.6202865726114364e-35,3.112614048636079e-35,0.00019841270113829523,3.0,10.0,9.0,0.09740740805864334,-0.04363636299967766,-0.017474748194217682,-0.019090909510850906,0.0055555556900799274,0.0030303029343485832,0.0033333334140479565,0.0008417508215643466,0.001212121220305562,0.001010101055726409,-0.04363636299967766,0.09919191896915436,0.0030303029343485832,0.0033333334140479565,-0.03333333507180214,-0.0030303029343485832,-0.0033333334140479565,-1.4230153513872246e-18,-8.809142651444724e-19,-1.6263032587282567e-18,-0.017474748194217682,0.0030303029343485832,0.007881593890488148,0.001212121220305562,-7.607551142328756e-18,-0.0006734006456099451,-4.0657581468206416e-20,-0.0006313131307251751,-0.000269360258243978,-5.421010862427522e-20,-0.019090909510850906,0.0033333334140479565,0.001212121220305562,0.009678931906819344,-8.353106399215664e-18,-2.590671311011018e-35,-0.0008333333535119891,1.0568465788276332e-23,-0.0003030303050763905,-0.0008658008882775903,0.0055555556900799274,-0.03333333507180214,-7.607551142328756e-18,-8.353106399215664e-18,0.01666666753590107,9.62964972193618e-35,2.6307540612528755e-35,6.65853458036491e-19,4.0371746622599303e-19,8.170472364589468e-19,0.0030303029343485832,-0.0030303029343485832,-0.0006734006456099451,-2.590671311011018e-35,9.62964972193618e-35,0.0006734006456099451,-1.6940658945086007e-21,6.776263578034403e-21,3.3881317890172014e-21,-1.9818025689000537e-21,0.0033333334140479565,-0.0033333334140479565,-4.0657581468206416e-20,-0.0008333333535119891,2.6307540612528755e-35,-1.6940658945086007e-21,0.0008333333535119891,-1.6940658945086007e-21,1.0164395367051604e-20,1.3552527156068805e-20,0.0008417508215643466,-1.4230153513872246e-18,-0.0006313131307251751,1.0568465788276332e-23,6.65853458036491e-19,6.776263578034403e-21,-1.6940658945086007e-21,7.014590664766729e-05,3.3881317890172014e-21,-1.6940658945086007e-21,0.001212121220305562,-8.809142651444724e-19,-0.000269360258243978,-0.0003030303050763905,4.0371746622599303e-19,3.3881317890172014e-21,1.0164395367051604e-20,3.3881317890172014e-21,6.73400645609945e-05,1.6940658945086007e-20,0.001010101055726409,-1.6263032587282567e-18,-5.421010862427522e-20,-0.0008658008882775903,8.170472364589468e-19,-1.9818025689000537e-21,1.3552527156068805e-20,-1.6940658945086007e-21,1.6940658945086007e-20,0.00010822511103469878,3.0,10.0,10.0,0.08917355537414551,-0.0395454540848732,-0.015826446935534477,-0.015826446935534477,0.004999999888241291,0.0027272726874798536,0.0027272726874798536,0.0007575757335871458,0.0009917354909703135,0.0007575757335871458,-0.0395454540848732,0.08954545110464096,0.0027272726874798536,0.0027272726874798536,-0.029999999329447746,-0.0027272726874798536,-0.0027272726874798536,-1.3145951341386741e-18,-7.318364664277155e-19,-1.2468324983583301e-18,-0.015826446935534477,0.0027272726874798536,0.007115473039448261,0.0009917354909703135,-6.879827417906654e-18,-0.000606060610152781,-4.0657581468206416e-20,-0.0005681818001903594,-0.00022038567112758756,-1.1384122811097797e-18,-0.015826446935534477,0.0027272726874798536,0.0009917354909703135,0.007115473039448261,-6.879827417906654e-18,-3.2540490428966234e-20,-0.000606060610152781,-1.3141512483424629e-18,-0.00022038567112758756,-0.0005681818001903594,0.004999999888241291,-0.029999999329447746,-6.879827417906654e-18,-6.879827417906654e-18,0.014999999664723873,1.2775932672365256e-34,1.0371177731551283e-34,5.992681070629631e-19,3.303142858486499e-19,5.992681070629631e-19,0.0027272726874798536,-0.0027272726874798536,-0.000606060610152781,-3.2540490428966234e-20,1.2775932672365256e-34,0.000606060610152781,1.0775711728090269e-21,1.3552527156068805e-20,4.395999666624781e-21,1.705327546573791e-21,0.0027272726874798536,-0.0027272726874798536,-4.0657581468206416e-20,-0.000606060610152781,1.0371177731551283e-34,1.0775711728090269e-21,0.000606060610152781,-8.470329472543003e-22,1.0164395367051604e-20,1.3552527156068805e-20,0.0007575757335871458,-1.3145951341386741e-18,-0.0005681818001903594,-1.3141512483424629e-18,5.992681070629631e-19,1.3552527156068805e-20,-8.470329472543003e-22,6.313131598290056e-05,5.082197683525802e-20,1.2027867851011065e-19,0.0009917354909703135,-7.318364664277155e-19,-0.00022038567112758756,-0.00022038567112758756,3.303142858486499e-19,4.395999666624781e-21,1.0164395367051604e-20,5.082197683525802e-20,4.897459439234808e-05,3.3881317890172014e-21,0.0007575757335871458,-1.2468324983583301e-18,-1.1384122811097797e-18,-0.0005681818001903594,5.992681070629631e-19,1.705327546573791e-21,1.3552527156068805e-20,1.2027867851011065e-19,3.3881317890172014e-21,6.313131598290056e-05,3.0,10.0,11.0,0.08222610503435135,-0.036157023161649704,-0.014462810009717941,-0.013334392569959164,0.004545454401522875,0.002479338785633445,0.0022727272007614374,0.000688705244101584,0.0008264462812803686,0.0005827505956403911,-0.036157023161649704,0.08161157369613647,0.002479338785633445,0.0022727272007614374,-0.027272727340459824,-0.002479338785633445,-0.0022727272007614374,-1.0842021724855044e-18,-4.607859233063394e-19,-8.944667923005412e-19,-0.014462810009717941,0.002479338785633445,0.006485307589173317,0.0008264462812803686,-6.279412166430445e-18,-0.0005509642069227993,1.0842021724855044e-19,-0.0005165289039723575,-0.0001836547307902947,9.486769009248164e-20,-0.013334392569959164,0.0022727272007614374,0.0008264462812803686,0.005386381410062313,-5.7675602480081445e-18,1.8687764565200303e-20,-0.00045454545761458576,6.7335413957625294e-21,-0.00016528925334569067,-0.0003885003970935941,0.004545454401522875,-0.027272727340459824,-6.279412166430445e-18,-5.7675602480081445e-18,0.013636363670229912,-1.1630674010709285e-34,-1.7766552483910079e-34,5.447892164383964e-19,2.7526190056564257e-19,4.528881579140479e-19,0.002479338785633445,-0.002479338785633445,-0.0005509642069227993,1.8687764565200303e-20,-1.1630674010709285e-34,0.0005509642069227993,-1.5770213524452853e-21,0.0,-5.734622962108952e-22,-4.1485109532967427e-22,0.0022727272007614374,-0.0022727272007614374,1.0842021724855044e-19,-0.00045454545761458576,-1.7766552483910079e-34,-1.5770213524452853e-21,0.00045454545761458576,0.0,-2.0328790734103208e-20,-6.776263578034403e-21,0.000688705244101584,-1.0842021724855044e-18,-0.0005165289039723575,6.7335413957625294e-21,5.447892164383964e-19,0.0,0.0,5.7392102462472394e-05,-1.6940658945086007e-21,0.0,0.0008264462812803686,-4.607859233063394e-19,-0.0001836547307902947,-0.00016528925334569067,2.7526190056564257e-19,-5.734622962108952e-22,-2.0328790734103208e-20,-1.6940658945086007e-21,3.6730947613250464e-05,-1.8634724839594607e-20,0.0005827505956403911,-8.944667923005412e-19,9.486769009248164e-20,-0.0003885003970935941,4.528881579140479e-19,-4.1485109532967427e-22,-6.776263578034403e-21,0.0,-1.8634724839594607e-20,3.885003752657212e-05,3.0,10.0,12.0,0.07628482580184937,-0.03330419585108757,-0.013315850868821144,-0.011388611048460007,0.004166666883975267,0.0022727272007614374,0.001923076924867928,0.0006313131307251751,0.0006993007264100015,0.0004578754596877843,-0.03330419585108757,0.07497086375951767,0.0022727272007614374,0.001923076924867928,-0.02500000037252903,-0.0022727272007614374,-0.001923076924867928,-9.893344823930228e-19,-4.743384504624082e-19,-6.776263578034403e-19,-0.013315850868821144,0.0022727272007614374,0.005957815330475569,0.0006993007264100015,-5.775537577835606e-18,-0.0005050505278632045,6.776263578034403e-21,-0.0004734848625957966,-0.0001554001501062885,6.776263578034403e-21,-0.011388611048460007,0.001923076924867928,0.0006993007264100015,0.004176883492618799,-4.9064424828735975e-18,-1.4748363118451795e-35,-0.00034965036320500076,1.549112185681486e-20,-0.0001271455839741975,-0.00027472528745420277,0.004166666883975267,-0.02500000037252903,-5.775537577835606e-18,-4.9064424828735975e-18,0.012500000186264515,0.0,-4.3552120225291596e-35,4.993900806026712e-19,2.3291392381689576e-19,3.507572792060737e-19,0.0022727272007614374,-0.0022727272007614374,-0.0005050505278632045,-1.4748363118451795e-35,0.0,0.0005050505278632045,1.2345974878818888e-36,-6.776263578034403e-21,1.6940658945086007e-21,3.970441696705566e-23,0.001923076924867928,-0.001923076924867928,6.776263578034403e-21,-0.00034965036320500076,-4.3552120225291596e-35,1.2345974878818888e-36,0.00034965036320500076,0.0,0.0,0.0,0.0006313131307251751,-9.893344823930228e-19,-0.0004734848625957966,1.549112185681486e-20,4.993900806026712e-19,-6.776263578034403e-21,0.0,5.260942634777166e-05,-3.3881317890172014e-21,4.235164736271502e-22,0.0006993007264100015,-4.743384504624082e-19,-0.0001554001501062885,-0.0001271455839741975,2.3291392381689576e-19,1.6940658945086007e-21,0.0,-3.3881317890172014e-21,2.82545734080486e-05,0.0,0.0004578754596877843,-6.776263578034403e-19,6.776263578034403e-21,-0.00027472528745420277,3.507572792060737e-19,3.970441696705566e-23,0.0,4.235164736271502e-22,0.0,2.4975024643936194e-05,3.0,10.0,13.0,0.07114551961421967,-0.030869130045175552,-0.012337662279605865,-0.009840159676969051,0.003846153849735856,0.0020979021210223436,0.0016483516665175557,0.0005827505956403911,0.0005994006060063839,0.00036630037357099354,-0.030869130045175552,0.06933066993951797,0.0020979021210223436,0.0016483516665175557,-0.023076923564076424,-0.0020979021210223436,-0.0016483516665175557,-9.219509021283812e-19,-4.2690460541616737e-19,-5.55653613398821e-19,-0.012337662279605865,0.0020979021210223436,0.005509768147021532,0.0005994006060063839,-5.346622096350322e-18,-0.0004662004648707807,-2.0328790734103208e-20,-0.0004370629321783781,-0.00013320012658368796,-1.3552527156068805e-20,-0.009840159676969051,0.0016483516665175557,0.0005994006060063839,0.0033050281926989555,-4.225724123940434e-18,-0.0,-0.00027472528745420277,-1.6882277674954397e-34,-9.990009857574478e-05,-0.00019980019715148956,0.003846153849735856,-0.023076923564076424,-5.346622096350322e-18,-4.225724123940434e-18,0.011538461782038212,0.0,-4.362695467522334e-37,4.609754510641906e-19,1.996405061287678e-19,2.772784893508644e-19,0.0020979021210223436,-0.0020979021210223436,-0.0004662004648707807,-0.0,0.0,0.0004662004648707807,0.0,0.0,0.0,0.0,0.0016483516665175557,-0.0016483516665175557,-2.0328790734103208e-20,-0.00027472528745420277,-4.362695467522334e-37,0.0,0.00027472528745420277,0.0,5.082197683525802e-21,0.0,0.0005827505956403911,-9.219509021283812e-19,-0.0004370629321783781,-1.6882277674954397e-34,4.609754510641906e-19,0.0,0.0,4.856254963669926e-05,7.975879120475291e-36,1.1077610088844797e-35,0.0005994006060063839,-4.2690460541616737e-19,-0.00013320012658368796,-9.990009857574478e-05,1.996405061287678e-19,0.0,5.082197683525802e-21,7.975879120475291e-36,2.2200021703611128e-05,3.3881317890172014e-21,0.00036630037357099354,-5.55653613398821e-19,-1.3552527156068805e-20,-0.00019980019715148956,2.772784893508644e-19,0.0,0.0,1.1077610088844797e-35,3.3881317890172014e-21,1.6650015822960995e-05,3.0,10.0,14.0,0.06665584444999695,-0.02876623347401619,-0.011493506841361523,-0.008587662130594254,0.0035714285913854837,0.0019480519695207477,0.0014285714132711291,0.0005411255406215787,0.0005194804980419576,0.00029761905898340046,-0.02876623347401619,0.06448052078485489,0.0019480519695207477,0.0014285714132711291,-0.02142857201397419,-0.0019480519695207477,-0.0014285714132711291,-8.56097295804233e-19,9.75781955236954e-19,2.0057740190981832e-18,-0.011493506841361523,0.0019480519695207477,0.00512445904314518,0.0005194804980419576,-1.5166439249221018e-18,-0.00043290044413879514,1.5585406229479126e-19,-0.000405844155466184,-0.0001154401179519482,3.3542504711270293e-19,-0.008587662130594254,0.0014285714132711291,0.0005194804980419576,0.002660464495420456,1.4044190077280524e-17,1.933336778881149e-18,-0.00021978022414259613,4.794613350923139e-19,-7.992007886059582e-05,-0.00014880952949170023,0.0035714285913854837,-0.02142857201397419,-1.5166439249221018e-18,1.4044190077280524e-17,0.010714286006987095,1.0205792564052799e-32,-1.4640303782776305e-18,4.280486479021165e-19,-3.5935290069202437e-19,-7.682346881267332e-19,0.0019480519695207477,-0.0019480519695207477,-0.00043290044413879514,1.933336778881149e-18,1.0205792564052799e-32,0.00043290044413879514,-1.5971240748795365e-19,3.4842045155118677e-34,-5.807723614909745e-20,-1.0813860748641589e-19,0.0014285714132711291,-0.0014285714132711291,1.5585406229479126e-19,-0.00021978022414259613,-1.4640303782776305e-18,-1.5971240748795365e-19,0.00021978022414259613,-7.222237291452134e-35,0.0,1.6940658945086007e-21,0.0005411255406215787,-8.56097295804233e-19,-0.000405844155466184,4.794613350923139e-19,4.280486479021165e-19,3.4842045155118677e-34,-7.222237291452134e-35,4.5093795051798224e-05,-1.5006558807746442e-20,-2.6283689813266597e-20,0.0005194804980419576,9.75781955236954e-19,-0.0001154401179519482,-7.992007886059582e-05,-3.5935290069202437e-19,-5.807723614909745e-20,0.0,-1.5006558807746442e-20,1.7760017726686783e-05,8.470329472543003e-22,0.00029761905898340046,2.0057740190981832e-18,3.3542504711270293e-19,-0.00014880952949170023,-7.682346881267332e-19,-1.0813860748641589e-19,1.6940658945086007e-21,-2.6283689813266597e-20,8.470329472543003e-22,1.1446886674093548e-05,3.0,10.0,15.0,0.06269979476928711,-0.026931818574666977,-0.010757575742900372,-0.007560160476714373,0.0033333334140479565,0.001818181830458343,0.0012499999720603228,0.0005050505278632045,0.00045454545761458576,0.00024509805371053517,-0.026931818574666977,0.06026514992117882,0.001818181830458343,0.0012499999720603228,-0.019999999552965164,-0.001818181830458343,-0.0012499999720603228,-5.1516033067978295e-19,-2.507217523872729e-19,-3.7947076036992655e-19,-0.010757575742900372,0.001818181830458343,0.004789562430232763,0.00045454545761458576,-4.655367110774458e-18,-0.0004040404164697975,-6.776263578034403e-21,-0.0003787878667935729,-0.00010101010411744937,-6.776263578034403e-21,-0.007560160476714373,0.0012499999720603228,0.00045454545761458576,0.002173537155613303,-3.2307672949238883e-18,7.569702330178656e-20,-0.00017857142665889114,-1.4089126314070538e-34,-6.49350622552447e-05,-0.0001131221724790521,0.0033333334140479565,-0.019999999552965164,-4.655367110774458e-18,-3.2307672949238883e-18,0.009999999776482582,-7.752743402108002e-34,2.325151502265338e-35,3.9951207999177344e-19,1.5139404660357312e-19,1.8210671991039005e-19,0.001818181830458343,-0.001818181830458343,-0.0004040404164697975,7.569702330178656e-20,-7.752743402108002e-34,0.0004040404164697975,-2.256949153578792e-36,-6.308085167443071e-20,-1.682156109274971e-20,-7.52316384526264e-37,0.0012499999720603228,-0.0012499999720603228,-6.776263578034403e-21,-0.00017857142665889114,2.325151502265338e-35,-2.256949153578792e-36,0.00017857142665889114,0.0,8.470329472543003e-22,0.0,0.0005050505278632045,-5.1516033067978295e-19,-0.0003787878667935729,-1.4089126314070538e-34,3.9951207999177344e-19,-6.308085167443071e-20,0.0,4.2087540350621566e-05,8.674643213839613e-36,7.275383067050615e-36,0.00045454545761458576,-2.507217523872729e-19,-0.00010101010411744937,-6.49350622552447e-05,1.5139404660357312e-19,-1.682156109274971e-20,8.470329472543003e-22,8.674643213839613e-36,1.4430014743993524e-05,8.470329472543003e-22,0.00024509805371053517,-3.7947076036992655e-19,-6.776263578034403e-21,-0.0001131221724790521,1.8210671991039005e-19,-7.52316384526264e-37,0.0,7.275383067050615e-36,8.470329472543003e-22,8.080155566858593e-06,3.0,10.0,16.0,0.05918746441602707,-0.025317512452602386,-0.010110294446349144,-0.006706773769110441,0.0031250000465661287,0.001704545458778739,0.001102941227145493,0.0004734848625957966,0.00040106952656060457,0.00020424836839083582,-0.025317512452602386,0.056567512452602386,0.001704545458778739,0.001102941227145493,-0.01875000074505806,-0.001704545458778739,-0.001102941227145493,-7.490851467534009e-19,-2.981555974335137e-19,-2.913793338554793e-19,-0.010110294446349144,0.001704545458778739,0.004495785105973482,0.00040106952656060457,-4.372755477821735e-18,-0.0003787878667935729,-2.0328790734103208e-20,-0.00035511364694684744,-8.912655903259292e-05,-1.0164395367051604e-20,-0.006706773769110441,0.001102941227145493,0.00040106952656060457,0.0017987649189308286,-2.8606372648260636e-18,-0.0,-0.00014705881767440587,-1.1428591149357328e-34,-5.347593469195999e-05,-8.753501606406644e-05,0.0031250000465661287,-0.01875000074505806,-4.372755477821735e-18,-2.8606372648260636e-18,0.00937500037252903,0.0,6.118189234725211e-35,3.7454257337670047e-19,1.335829868589282e-19,1.5063425536154902e-19,0.001704545458778739,-0.001704545458778739,-0.0003787878667935729,-0.0,0.0,0.0003787878667935729,0.0,0.0,0.0,0.0,0.001102941227145493,-0.001102941227145493,-2.0328790734103208e-20,-0.00014705881767440587,6.118189234725211e-35,0.0,0.00014705881767440587,0.0,3.3881317890172014e-21,-8.470329472543003e-22,0.0004734848625957966,-7.490851467534009e-19,-0.00035511364694684744,-1.1428591149357328e-34,3.7454257337670047e-19,0.0,0.0,3.9457070670323446e-05,5.336801391185877e-36,6.018020241262733e-36,0.00040106952656060457,-2.981555974335137e-19,-8.912655903259292e-05,-5.347593469195999e-05,1.335829868589282e-19,0.0,3.3881317890172014e-21,5.336801391185877e-36,1.1883541446877643e-05,1.2705494208814505e-21,0.00020424836839083582,-2.913793338554793e-19,-1.0164395367051604e-20,-8.753501606406644e-05,1.5063425536154902e-19,0.0,-8.470329472543003e-22,6.018020241262733e-36,1.2705494208814505e-21,5.835667707287939e-06,3.0,11.0,3.0,0.20337995886802673,-0.10606060922145844,-0.039627037942409515,-0.10606060922145844,0.01515151560306549,0.007575757801532745,0.022727273404598236,0.0019425019854679704,0.007575757801532745,0.01515151560306549,-0.10606060922145844,0.25757575035095215,0.007575757801532745,0.022727273404598236,-0.09090909361839294,-0.007575757801532745,-0.022727273404598236,-3.2187359529143045e-18,1.0299920638612292e-17,1.214306433183765e-16,-0.039627037942409515,0.007575757801532745,0.0169904176145792,0.007575757801532745,4.8821816890977235e-18,-0.0015151514671742916,-5.204170427930421e-18,-0.001295001246035099,-0.0015151514671742916,-2.0816681711721685e-17,-0.10606060922145844,0.022727273404598236,0.007575757801532745,0.25757575035095215,1.9036829908501945e-16,6.297657289201527e-18,-0.022727273404598236,-3.7845589247638524e-18,-0.007575757801532745,-0.09090909361839294,0.01515151560306549,-0.09090909361839294,4.8821816890977235e-18,1.9036829908501945e-16,0.04545454680919647,-7.48099499014998e-18,-1.7598679468010715e-17,1.0299920638612292e-18,-6.154980214064706e-18,-6.570455747675289e-17,0.007575757801532745,-0.007575757801532745,-0.0015151514671742916,6.297657289201527e-18,-7.48099499014998e-18,0.0015151514671742916,-1.8444678025909018e-18,1.0842021724855044e-19,-2.966843016177233e-19,-1.1304177872846078e-18,0.022727273404598236,-0.022727273404598236,-5.204170427930421e-18,-0.022727273404598236,-1.7598679468010715e-17,-1.8444678025909018e-18,0.022727273404598236,4.066571368760358e-19,2.927345865710862e-18,1.214306433183765e-17,0.0019425019854679704,-3.2187359529143045e-18,-0.001295001246035099,-3.7845589247638524e-18,1.0299920638612292e-18,1.0842021724855044e-19,4.066571368760358e-19,0.00012950012751389295,3.189842702138889e-20,1.5873298169872082e-18,0.007575757801532745,1.0299920638612292e-17,-0.0015151514671742916,-0.007575757801532745,-6.154980214064706e-18,-2.966843016177233e-19,2.927345865710862e-18,3.189842702138889e-20,0.0015151514671742916,1.734723475976807e-18,0.01515151560306549,1.214306433183765e-16,-2.0816681711721685e-17,-0.09090909361839294,-6.570455747675289e-17,-1.1304177872846078e-18,1.214306433183765e-17,1.5873298169872082e-18,1.734723475976807e-18,0.04545454680919647,3.0,11.0,4.0,0.16768647730350494,-0.08295454829931259,-0.030856642872095108,-0.06818182021379471,0.011363636702299118,0.005681818351149559,0.013636363670229912,0.0014568764017894864,0.004545454401522875,0.007575757801532745,-0.08295454829931259,0.19659091532230377,0.005681818351149559,0.013636363670229912,-0.06818182021379471,-0.005681818351149559,-0.013636363670229912,5.138992317973999e-18,2.832776994614665e-18,-4.9313642766769626e-17,-0.030856642872095108,0.005681818351149559,0.012970085255801678,0.004545454401522875,2.2551405187698492e-17,-0.0011363636003807187,6.0173220572945496e-18,-0.0009712509927339852,-0.0009090909152291715,3.597382014213516e-18,-0.06818182021379471,0.013636363670229912,0.004545454401522875,0.09848485141992569,-9.905514966846598e-17,0.0,-0.00909090880304575,2.507217523872729e-18,-0.0030303029343485832,-0.022727273404598236,0.011363636702299118,-0.06818182021379471,2.2551405187698492e-17,-9.905514966846598e-17,0.034090910106897354,-5.041540102057596e-18,1.474514954580286e-17,-1.6940658945086007e-18,4.2699683605446703e-19,2.686568974956069e-17,0.005681818351149559,-0.005681818351149559,-0.0011363636003807187,0.0,-5.041540102057596e-18,0.0011363636003807187,8.131516293641283e-19,-1.4060746924421386e-19,-2.710505431213761e-19,1.201663758172595e-19,0.013636363670229912,-0.013636363670229912,6.0173220572945496e-18,-0.00909090880304575,1.474514954580286e-17,8.131516293641283e-19,0.00909090880304575,-5.190922303239772e-19,-1.0096448683584967e-18,-4.5199456503806455e-18,0.0014568764017894864,5.138992317973999e-18,-0.0009712509927339852,2.507217523872729e-18,-1.6940658945086007e-18,-1.4060746924421386e-19,-5.190922303239772e-19,9.712509927339852e-05,-1.0842021724855044e-19,-4.460674850768771e-19,0.004545454401522875,2.832776994614665e-18,-0.0009090909152291715,-0.0030303029343485832,4.2699683605446703e-19,-2.710505431213761e-19,-1.0096448683584967e-18,-1.0842021724855044e-19,0.000606060610152781,1.5885622127023356e-18,0.007575757801532745,-4.9313642766769626e-17,3.597382014213516e-18,-0.022727273404598236,2.686568974956069e-17,1.201663758172595e-19,-4.5199456503806455e-18,-4.460674850768771e-19,1.5885622127023356e-18,0.007575757801532745,3.0,11.0,5.0,0.14280718564987183,-0.06818182021379471,-0.025291375815868378,-0.0476190485060215,0.00909090880304575,0.004545454401522875,0.00909090880304575,0.0011655011912807822,0.0030303029343485832,0.0043290043249726295,-0.06818182021379471,0.15909090638160706,0.004545454401522875,0.00909090880304575,-0.05454545468091965,-0.004545454401522875,-0.00909090880304575,-1.204017940045315e-18,3.686287386450715e-18,1.6479873021779667e-17,-0.025291375815868378,0.004545454401522875,0.010497280396521091,0.0030303029343485832,1.1736488517155585e-17,-0.0009090909152291715,-2.290377089375628e-18,-0.0007770007941871881,-0.000606060610152781,6.288372600415926e-18,-0.0476190485060215,0.00909090880304575,0.0030303029343485832,0.04978355020284653,4.85722573273506e-17,3.0357660829594124e-18,-0.004545454401522875,1.1655173354219173e-18,-0.0015151514671742916,-0.008658008649945259,0.00909090880304575,-0.05454545468091965,1.1736488517155585e-17,4.85722573273506e-17,0.027272727340459824,-6.830473686658678e-18,-7.999059862153167e-18,1.3213713977167085e-19,-2.30478843680268e-18,-6.1241528469960794e-18,0.004545454401522875,-0.004545454401522875,-0.0009090909152291715,3.0357660829594124e-18,-6.830473686658678e-18,0.0009090909152291715,-1.0842021724855044e-19,1.3891340334970526e-19,9.486769009248164e-20,-8.944667923005412e-19,0.00909090880304575,-0.00909090880304575,-2.290377089375628e-18,-0.004545454401522875,-7.999059862153167e-18,-1.0842021724855044e-19,0.004545454401522875,1.3157522564180592e-19,1.8973538018496328e-19,4.87890977618477e-19,0.0011655011912807822,-1.204017940045315e-18,-0.0007770007941871881,1.1655173354219173e-18,1.3213713977167085e-19,1.3891340334970526e-19,1.3157522564180592e-19,7.770007505314425e-05,-3.6895175998480525e-22,-3.3912815376934384e-19,0.0030303029343485832,3.686287386450715e-18,-0.000606060610152781,-0.0015151514671742916,-2.30478843680268e-18,9.486769009248164e-20,1.8973538018496328e-19,-3.6895175998480525e-22,0.0003030303050763905,-9.0801931945661e-19,0.0043290043249726295,1.6479873021779667e-17,6.288372600415926e-18,-0.008658008649945259,-6.1241528469960794e-18,-8.944667923005412e-19,4.87890977618477e-19,-3.3912815376934384e-19,-9.0801931945661e-19,0.0021645021624863148,3.0,11.0,6.0,0.1244172528386116,-0.057900432497262955,-0.021436896175146103,-0.03517315909266472,0.007575757801532745,0.0037878789007663727,0.006493506487458944,0.0009712509927339852,0.0021645021624863148,0.0027056278195232153,-0.057900432497262955,0.1336580067873001,0.0037878789007663727,0.006493506487458944,-0.04545454680919647,-0.0037878789007663727,-0.006493506487458944,-2.7850443305721395e-18,2.8189256484623115e-18,2.2985086056692694e-17,-0.021436896175146103,0.0037878789007663727,0.008819883689284325,0.0021645021624863148,1.3552527156068805e-20,-0.0007575757335871458,-2.6156377411212794e-18,-0.0006475006230175495,-0.00043290044413879514,6.505213034913027e-19,-0.03517315909266472,0.006493506487458944,0.0021645021624863148,0.028950216248631477,5.637851296924623e-17,3.469446951953614e-18,-0.002597402548417449,-9.215718466126788e-19,-0.0008658008882775903,-0.004058441612869501,0.007575757801532745,-0.04545454680919647,1.3552527156068805e-20,5.637851296924623e-17,0.022727273404598236,-3.687718408910432e-18,-6.5290217744841404e-18,7.623296525288703e-19,-1.5819460085728302e-18,-7.607685972768602e-18,0.0037878789007663727,-0.0037878789007663727,-0.0007575757335871458,3.469446951953614e-18,-3.687718408910432e-18,0.0007575757335871458,-1.6263032587282567e-19,1.2382910572025017e-19,0.0,-5.963111948670274e-19,0.006493506487458944,-0.006493506487458944,-2.6156377411212794e-18,-0.002597402548417449,-6.5290217744841404e-18,-1.6263032587282567e-19,0.002597402548417449,2.094164755747404e-19,1.3552527156068805e-19,-1.8973538018496328e-18,0.0009712509927339852,-2.7850443305721395e-18,-0.0006475006230175495,-9.215718466126788e-19,7.623296525288703e-19,1.2382910572025017e-19,2.094164755747404e-19,6.475006375694647e-05,2.9104908845826606e-20,1.173889488895508e-19,0.0021645021624863148,2.8189256484623115e-18,-0.00043290044413879514,-0.0008658008882775903,-1.5819460085728302e-18,0.0,1.3552527156068805e-19,2.9104908845826606e-20,0.00017316016601398587,-6.301925127571995e-19,0.0027056278195232153,2.2985086056692694e-17,6.505213034913027e-19,-0.004058441612869501,-7.607685972768602e-18,-5.963111948670274e-19,-1.8973538018496328e-18,1.173889488895508e-19,-6.301925127571995e-19,0.000811688310932368,3.0,11.0,7.0,0.11025086045265198,-0.05032467469573021,-0.01860639452934265,-0.02705627679824829,0.006493506487458944,0.003246753243729472,0.004870129749178886,0.0008325008093379438,0.001623376621864736,0.001803751802071929,-0.05032467469573021,0.11525973677635193,0.003246753243729472,0.004870129749178886,-0.03896103799343109,-0.003246753243729472,-0.004870129749178886,-1.2671612890924333e-18,-1.0842021724855044e-18,-3.1240041272374347e-18,-0.01860639452934265,0.003246753243729472,0.007606282830238342,0.001623376621864736,-8.091910058731632e-18,-0.0006493506371043622,0.0,-0.0005550005589611828,-0.0003246753185521811,-6.488318311871201e-34,-0.02705627679824829,0.004870129749178886,0.001623376621864736,0.018398268148303032,-1.207547788552778e-17,-9.81875504003948e-21,-0.001623376621864736,2.710505431213761e-20,-0.0005411255406215787,-0.0021645021624863148,0.006493506487458944,-0.03896103799343109,-8.091910058731632e-18,-1.207547788552778e-17,0.019480518996715546,-1.925929944387236e-34,0.0,6.469830901198954e-19,5.406930180450338e-19,1.5620020636187173e-18,0.003246753243729472,-0.003246753243729472,-0.0006493506371043622,-9.81875504003948e-21,-1.925929944387236e-34,0.0006493506371043622,0.0,-6.776263578034403e-21,3.3881317890172014e-21,-0.0,0.004870129749178886,-0.004870129749178886,0.0,-0.001623376621864736,0.0,0.0,0.001623376621864736,0.0,0.0,-0.0,0.0008325008093379438,-1.2671612890924333e-18,-0.0005550005589611828,2.710505431213761e-20,6.469830901198954e-19,-6.776263578034403e-21,0.0,5.550005516852252e-05,-3.3881317890172014e-21,5.187690176722107e-35,0.001623376621864736,-1.0842021724855044e-18,-0.0003246753185521811,-0.0005411255406215787,5.406930180450338e-19,3.3881317890172014e-21,0.0,-3.3881317890172014e-21,0.00010822511103469878,4.3354266388537714e-35,0.001803751802071929,-3.1240041272374347e-18,-6.488318311871201e-34,-0.0021645021624863148,1.5620020636187173e-18,-0.0,-0.0,5.187690176722107e-35,4.3354266388537714e-35,0.0003607503604143858,3.0,11.0,8.0,0.09899475425481796,-0.044507574290037155,-0.016438422724604607,-0.021464645862579346,0.005681818351149559,0.0028409091755747795,0.0037878789007663727,0.0007284382008947432,0.0012626262614503503,0.0012626262614503503,-0.044507574290037155,0.10132575780153275,0.0028409091755747795,0.0037878789007663727,-0.034090910106897354,-0.0028409091755747795,-0.0037878789007663727,-1.0842021724855044e-18,-8.402566836762659e-19,-2.1026951850613277e-18,-0.016438422724604607,0.0028409091755747795,0.006687062792479992,0.0012626262614503503,-7.132988525920346e-18,-0.0005681818001903594,0.0,-0.0004856254963669926,-0.00025252526393160224,-4.399560359376e-34,-0.021464645862579346,0.0037878789007663727,0.0012626262614503503,0.012445887550711632,-9.462128125980822e-18,1.1793481539241476e-20,-0.0010822510812431574,4.0657581468206416e-20,-0.0003607503604143858,-0.0012626262614503503,0.005681818351149559,-0.034090910106897354,-7.132988525920346e-18,-9.462128125980822e-18,0.017045455053448677,-9.62964972193618e-35,0.0,5.66110210317257e-19,4.2053903701226555e-19,1.0513475925306639e-18,0.0028409091755747795,-0.0028409091755747795,-0.0005681818001903594,1.1793481539241476e-20,-9.62964972193618e-35,0.0005681818001903594,0.0,-6.776263578034403e-21,3.3881317890172014e-21,0.0,0.0037878789007663727,-0.0037878789007663727,0.0,-0.0010822510812431574,0.0,0.0,0.0010822510812431574,0.0,0.0,-0.0,0.0007284382008947432,-1.0842021724855044e-18,-0.0004856254963669926,4.0657581468206416e-20,5.66110210317257e-19,-6.776263578034403e-21,0.0,4.856254963669926e-05,-3.3881317890172014e-21,3.4917144206073725e-35,0.0012626262614503503,-8.402566836762659e-19,-0.00025252526393160224,-0.0003607503604143858,4.2053903701226555e-19,3.3881317890172014e-21,0.0,-3.3881317890172014e-21,7.215006917249411e-05,2.5938450883610533e-35,0.0012626262614503503,-2.1026951850613277e-18,-4.399560359376e-34,-0.0012626262614503503,1.0513475925306639e-18,0.0,-0.0,3.4917144206073725e-35,2.5938450883610533e-35,0.0001803751802071929,3.0,11.0,9.0,0.0898318886756897,-0.03989899158477783,-0.01472416426986456,-0.017447199672460556,0.005050505045801401,0.0025252525229007006,0.0030303029343485832,0.0006475006230175495,0.001010101055726409,0.0009182736393995583,-0.03989899158477783,0.09040404111146927,0.0025252525229007006,0.0030303029343485832,-0.03030303120613098,-0.0025252525229007006,-0.0030303029343485832,2.0057740190981832e-18,1.4230153513872246e-18,2.927345865710862e-18,-0.01472416426986456,0.0025252525229007006,0.005966502707451582,0.001010101055726409,1.449555937649356e-17,-0.0005050505278632045,2.710505431213761e-20,-0.00043166711111553013,-0.00020202020823489875,1.3552527156068805e-20,-0.017447199672460556,0.0030303029343485832,0.001010101055726409,0.008821985684335232,1.7858526676915673e-17,-4.959423867471804e-35,-0.0007575757335871458,-1.2575277078029192e-20,-0.00025252526393160224,-0.0007870916742831469,0.005050505045801401,-0.03030303120613098,1.449555937649356e-17,1.7858526676915673e-17,0.01515151560306549,-1.739927062415225e-18,-2.609890697020414e-18,-1.006418140186504e-18,-6.728624178605942e-19,-1.485540486324036e-18,0.0025252525229007006,-0.0025252525229007006,-0.0005050505278632045,-4.959423867471804e-35,-1.739927062415225e-18,0.0005050505278632045,-8.470329472543003e-22,6.776263578034403e-21,1.4196121124277921e-36,-1.3459280717358708e-21,0.0030303029343485832,-0.0030303029343485832,2.710505431213761e-20,-0.0007575757335871458,-2.609890697020414e-18,-8.470329472543003e-22,0.0007575757335871458,-1.6940658945086007e-21,-1.0164395367051604e-20,0.0,0.0006475006230175495,2.0057740190981832e-18,-0.00043166711111553013,-1.2575277078029192e-20,-1.006418140186504e-18,6.776263578034403e-21,-1.6940658945086007e-21,4.316671038395725e-05,3.3881317890172014e-21,-1.6940658945086007e-21,0.001010101055726409,1.4230153513872246e-18,-0.00020202020823489875,-0.00025252526393160224,-6.728624178605942e-19,1.4196121124277921e-36,-1.0164395367051604e-20,3.3881317890172014e-21,5.0505052058724687e-05,-3.3881317890172014e-21,0.0009182736393995583,2.927345865710862e-18,1.3552527156068805e-20,-0.0007870916742831469,-1.485540486324036e-18,-1.3459280717358708e-21,0.0,-1.6940658945086007e-21,-3.3881317890172014e-21,9.838645928539336e-05,3.0,11.0,10.0,0.08222610503435135,-0.036157023161649704,-0.013334392569959164,-0.014462810009717941,0.004545454401522875,0.0022727272007614374,0.002479338785633445,0.0005827505956403911,0.0008264462812803686,0.000688705244101584,-0.036157023161649704,0.08161157369613647,0.0022727272007614374,0.002479338785633445,-0.027272727340459824,-0.0022727272007614374,-0.002479338785633445,-8.605854744103691e-19,-5.421010862427522e-19,-1.0299920638612292e-18,-0.013334392569959164,0.0022727272007614374,0.005386381410062313,0.0008264462812803686,-5.7675602480081445e-18,-0.00045454545761458576,0.0,-0.0003885003970935941,-0.00016528925334569067,0.0,-0.014462810009717941,0.002479338785633445,0.0008264462812803686,0.006485307589173317,-6.279412166430445e-18,1.1250215323869503e-20,-0.0005509642069227993,1.0564640923602165e-20,-0.0001836547307902947,-0.0005165289039723575,0.004545454401522875,-0.027272727340459824,-5.7675602480081445e-18,-6.279412166430445e-18,0.013636363670229912,-1.0893043700441274e-35,-4.546211774424475e-35,4.528881579140479e-19,2.7526190056564257e-19,5.447892164383964e-19,0.0022727272007614374,-0.0022727272007614374,-0.00045454545761458576,1.1250215323869503e-20,-1.0893043700441274e-35,0.00045454545761458576,-1.087375590522995e-22,0.0,-3.1859017297612477e-22,-5.574579366528693e-22,0.002479338785633445,-0.002479338785633445,0.0,-0.0005509642069227993,-4.546211774424475e-35,-1.087375590522995e-22,0.0005509642069227993,-8.470329472543003e-22,1.6940658945086007e-21,0.0,0.0005827505956403911,-8.605854744103691e-19,-0.0003885003970935941,1.0564640923602165e-20,4.528881579140479e-19,0.0,-8.470329472543003e-22,3.885003752657212e-05,0.0,0.0,0.0008264462812803686,-5.421010862427522e-19,-0.00016528925334569067,-0.0001836547307902947,2.7526190056564257e-19,-3.1859017297612477e-22,1.6940658945086007e-21,0.0,3.6730947613250464e-05,1.6940658945086007e-21,0.000688705244101584,-1.0299920638612292e-18,0.0,-0.0005165289039723575,5.447892164383964e-19,-5.574579366528693e-22,0.0,0.0,1.6940658945086007e-21,5.7392102462472394e-05,3.0,11.0,11.0,0.07581055164337158,-0.03305784985423088,-0.01218478474766016,-0.01218478474766016,0.00413223123177886,0.00206611561588943,0.00206611561588943,0.0005297732423059642,0.000688705244101584,0.0005297732423059642,-0.03305784985423088,0.07438016682863235,0.00206611561588943,0.00206611561588943,-0.024793388321995735,-0.00206611561588943,-0.00206611561588943,-7.386127300057499e-19,-4.0657581468206416e-19,-8.402566836762659e-19,-0.01218478474766016,0.00206611561588943,0.004909232258796692,0.000688705244101584,-5.2640897371425375e-18,-0.0004132231406401843,4.0657581468206416e-20,-0.0003531821712385863,-0.00013774105173069984,3.3881317890172014e-20,-0.01218478474766016,0.00206611561588943,0.000688705244101584,0.004909232258796692,-5.2640897371425375e-18,1.703232089671454e-20,-0.0004132231406401843,8.908294141908555e-21,-0.00013774105173069984,-0.0003531821712385863,0.00413223123177886,-0.024793388321995735,-5.2640897371425375e-18,-5.2640897371425375e-18,0.012396694160997868,-6.641172870302038e-35,-6.740774205603889e-36,4.117165353939281e-19,2.293849128298031e-19,4.117165353939281e-19,0.00206611561588943,-0.00206611561588943,-0.0004132231406401843,1.703232089671454e-20,-6.641172870302038e-35,0.0004132231406401843,-5.866228185164867e-22,-1.0164395367051604e-20,-2.1719511161074644e-21,-9.568117900797171e-23,0.00206611561588943,-0.00206611561588943,4.0657581468206416e-20,-0.0004132231406401843,-6.740774205603889e-36,-5.866228185164867e-22,0.0004132231406401843,0.0,-6.776263578034403e-21,0.0,0.0005297732423059642,-7.386127300057499e-19,-0.0003531821712385863,8.908294141908555e-21,4.117165353939281e-19,-1.0164395367051604e-20,0.0,3.5318218579050153e-05,-3.3881317890172014e-21,4.235164736271502e-22,0.000688705244101584,-4.0657581468206416e-19,-0.00013774105173069984,-0.00013774105173069984,2.293849128298031e-19,-2.1719511161074644e-21,-6.776263578034403e-21,-3.3881317890172014e-21,2.7548208890948445e-05,-8.470329472543003e-21,0.0005297732423059642,-8.402566836762659e-19,3.3881317890172014e-20,-0.0003531821712385863,4.117165353939281e-19,-9.568117900797171e-23,0.0,4.235164736271502e-22,-8.470329472543003e-21,3.5318218579050153e-05,3.0,11.0,12.0,0.07032550871372223,-0.03044871799647808,-0.011217948980629444,-0.010406260378658772,0.0037878789007663727,0.0018939394503831863,0.0017482517287135124,0.0004856254963669926,0.0005827505956403911,0.0004162504046689719,-0.03044871799647808,0.06832750886678696,0.0018939394503831863,0.0017482517287135124,-0.022727273404598236,-0.0018939394503831863,-0.0017482517287135124,-7.250602028496811e-19,1.3552527156068805e-18,3.5236570605778894e-18,-0.011217948980629444,0.0018939394503831863,0.004509842023253441,0.0005827505956403911,-9.596916379615725e-19,-0.0003787878667935729,1.8973538018496328e-19,-0.00032375031150877476,-0.00011655011621769518,1.2061749168901237e-18,-0.010406260378658772,0.0017482517287135124,0.0005827505956403911,0.0038067991845309734,2.088032995113519e-17,2.5343982652109152e-18,-0.00031786394538357854,1.4057118703459575e-18,-0.00010595464846119285,-0.00024975024280138314,0.0037878789007663727,-0.022727273404598236,-9.596916379615725e-19,2.088032995113519e-17,0.011363636702299118,1.3853051048910928e-32,-2.1173993544252235e-18,3.7740681549463604e-19,-5.11704835369631e-19,-1.3448006681818136e-18,0.0018939394503831863,-0.0018939394503831863,-0.0003787878667935729,2.5343982652109152e-18,1.3853051048910928e-32,0.0003787878667935729,-2.1161973575976074e-19,-3.3881317890172014e-21,-7.053991407403642e-20,-1.6531107606644225e-19,0.0017482517287135124,-0.0017482517287135124,1.8973538018496328e-19,-0.00031786394538357854,-2.1173993544252235e-18,-2.1161973575976074e-19,0.00031786394538357854,-8.470329472543003e-22,3.3881317890172014e-21,0.0,0.0004856254963669926,-7.250602028496811e-19,-0.00032375031150877476,1.4057118703459575e-18,3.7740681549463604e-19,-3.3881317890172014e-21,-8.470329472543003e-22,3.237503187847324e-05,-4.319868030996932e-20,-9.994988777600744e-20,0.0005827505956403911,1.3552527156068805e-18,-0.00011655011621769518,-0.00010595464846119285,-5.11704835369631e-19,-7.053991407403642e-20,3.3881317890172014e-21,-4.319868030996932e-20,2.119093005603645e-05,-8.470329472543003e-21,0.0004162504046689719,3.5236570605778894e-18,1.2061749168901237e-18,-0.00024975024280138314,-1.3448006681818136e-18,-1.6531107606644225e-19,0.0,-9.994988777600744e-20,-8.470329472543003e-21,2.2704567527398467e-05,3.0,11.0,13.0,0.06558185070753098,-0.028221778571605682,-0.01039345283061266,-0.008991008624434471,0.003496503457427025,0.0017482517287135124,0.0014985015150159597,0.00044826968223787844,0.0004995004856027663,0.0003330003237351775,-0.028221778571605682,0.06318681687116623,0.0017482517287135124,0.0014985015150159597,-0.02097902074456215,-0.0017482517287135124,-0.0014985015150159597,-6.911788849595091e-19,-3.7269449679189215e-19,-5.285485590866834e-19,-0.01039345283061266,0.0017482517287135124,0.004170615691691637,0.0004995004856027663,-4.481957794339454e-18,-0.00034965036320500076,-5.421010862427522e-20,-0.0002988464548252523,-9.990009857574478e-05,-4.743384504624082e-20,-0.008991008624434471,0.0014985015150159597,0.0004995004856027663,0.0030121393501758575,-3.856691555720314e-18,1.0450457687327169e-20,-0.00024975024280138314,5.100664248362978e-21,-8.325008093379438e-05,-0.00018163654021918774,0.003496503457427025,-0.02097902074456215,-4.481957794339454e-18,-3.856691555720314e-18,0.010489510372281075,-6.152883537229998e-35,1.3700522116190594e-34,3.4837551602980385e-19,1.6636708844063983e-19,2.5207134925544145e-19,0.0017482517287135124,-0.0017482517287135124,-0.00034965036320500076,1.0450457687327169e-20,-6.152883537229998e-35,0.00034965036320500076,-4.429787450097836e-22,0.0,-1.135864686799945e-21,-2.885067793397915e-22,0.0014985015150159597,-0.0014985015150159597,-5.421010862427522e-20,-0.00024975024280138314,1.3700522116190594e-34,-4.429787450097836e-22,0.00024975024280138314,-8.470329472543003e-22,8.470329472543003e-21,1.6940658945086007e-21,0.00044826968223787844,-6.911788849595091e-19,-0.0002988464548252523,5.100664248362978e-21,3.4837551602980385e-19,0.0,-8.470329472543003e-22,2.9884644391131587e-05,8.470329472543003e-22,-4.235164736271502e-22,0.0004995004856027663,-3.7269449679189215e-19,-9.990009857574478e-05,-8.325008093379438e-05,1.6636708844063983e-19,-1.135864686799945e-21,8.470329472543003e-21,8.470329472543003e-22,1.6650015822960995e-05,7.623296525288703e-21,0.0003330003237351775,-5.285485590866834e-19,-4.743384504624082e-20,-0.00018163654021918774,2.5207134925544145e-19,-2.885067793397915e-22,1.6940658945086007e-21,-4.235164736271502e-22,7.623296525288703e-21,1.5136378351598978e-05,3.0,11.0,14.0,0.061438560485839844,-0.026298701763153076,-0.009681984782218933,-0.007846320047974586,0.003246753243729472,0.001623376621864736,0.0012987012742087245,0.0004162504046689719,0.00043290044413879514,0.00027056277031078935,-0.026298701763153076,0.058766234666109085,0.001623376621864736,0.0012987012742087245,-0.019480518996715546,-0.001623376621864736,-0.0012987012742087245,-6.469830901198954e-19,-2.642742795433417e-19,-4.2012834183813297e-19,-0.009681984782218933,0.001623376621864736,0.0038788989186286926,0.00043290044413879514,-4.17211702998271e-18,-0.0003246753185521811,1.3552527156068805e-20,-0.0002775002794805914,-8.658008300699294e-05,2.0328790734103208e-20,-0.007846320047974586,0.0012987012742087245,0.00043290044413879514,0.002424658741801977,-3.3568025301119086e-18,-0.0,-0.00019980019715148956,-1.1148545691485745e-34,-6.660006329184398e-05,-0.00013528138515539467,0.003246753243729472,-0.019480518996715546,-4.17211702998271e-18,-3.3568025301119086e-18,0.009740259498357773,0.0,-2.998872916785152e-35,3.234915450599477e-19,1.441848056736555e-19,2.0275988176688768e-19,0.001623376621864736,-0.001623376621864736,-0.0003246753185521811,-0.0,0.0,0.0003246753185521811,0.0,0.0,0.0,0.0,0.0012987012742087245,-0.0012987012742087245,1.3552527156068805e-20,-0.00019980019715148956,-2.998872916785152e-35,0.0,0.00019980019715148956,-0.0,-2.541098841762901e-21,0.0,0.0004162504046689719,-6.469830901198954e-19,-0.0002775002794805914,-1.1148545691485745e-34,3.234915450599477e-19,0.0,-0.0,2.775002758426126e-05,4.788637108280862e-36,6.734020709312208e-36,0.00043290044413879514,-2.642742795433417e-19,-8.658008300699294e-05,-6.660006329184398e-05,1.441848056736555e-19,0.0,-2.541098841762901e-21,4.788637108280862e-36,1.3320013749762438e-05,-3.8116482626443515e-21,0.00027056277031078935,-4.2012834183813297e-19,2.0328790734103208e-20,-0.00013528138515539467,2.0275988176688768e-19,0.0,0.0,6.734020709312208e-36,-3.8116482626443515e-21,1.0406260116724297e-05,3.0,11.0,15.0,0.057788290083408356,-0.024621212854981422,-0.00906177144497633,-0.006907308474183083,0.0030303029343485832,0.0015151514671742916,0.0011363636003807187,0.0003885003970935941,0.0003787878667935729,0.0002228163939435035,-0.024621212854981422,0.054924242198467255,0.0015151514671742916,0.0011363636003807187,-0.0181818176060915,-0.0015151514671742916,-0.0011363636003807187,-6.0385089445166e-19,-2.778268066994105e-19,-3.1848438816761693e-19,-0.00906177144497633,0.0015151514671742916,0.003625356126576662,0.0003787878667935729,-3.9023866671189684e-18,-0.0003030303050763905,-2.710505431213761e-20,-0.0002590002550277859,-7.575757626909763e-05,-1.0164395367051604e-20,-0.006907308474183083,0.0011363636003807187,0.0003787878667935729,0.001980862347409129,-2.9485303747886513e-18,-0.0,-0.00016233765927609056,-9.792600330431515e-35,-5.411255551734939e-05,-0.00010283834126312286,0.0030303029343485832,-0.0181818176060915,-3.9023866671189684e-18,-2.9485303747886513e-18,0.00909090880304575,0.0,1.0188358369969203e-35,3.0192544722583e-19,1.2616170334886142e-19,1.6555156590484497e-19,0.0015151514671742916,-0.0015151514671742916,-0.0003030303050763905,-0.0,0.0,0.0003030303050763905,0.0,0.0,0.0,0.0,0.0011363636003807187,-0.0011363636003807187,-2.710505431213761e-20,-0.00016233765927609056,1.0188358369969203e-35,0.0,0.00016233765927609056,0.0,3.3881317890172014e-21,-1.6940658945086007e-21,0.0003885003970935941,-6.0385089445166e-19,-0.0002590002550277859,-9.792600330431515e-35,3.0192544722583e-19,0.0,0.0,2.590002623037435e-05,4.190057290379551e-36,5.4982654125871553e-36,0.0003787878667935729,-2.778268066994105e-19,-7.575757626909763e-05,-5.411255551734939e-05,1.2616170334886142e-19,0.0,3.3881317890172014e-21,4.190057290379551e-36,1.0822510375874117e-05,1.2705494208814505e-21,0.0002228163939435035,-3.1848438816761693e-19,-1.0164395367051604e-20,-0.00010283834126312286,1.6555156590484497e-19,0.0,-1.6940658945086007e-21,5.4982654125871553e-36,1.2705494208814505e-21,7.3455958045087755e-06,3.0,11.0,16.0,0.054547883570194244,-0.023145053535699844,-0.008516299538314342,-0.006127451080828905,0.0028409091755747795,0.0014204545877873898,0.0010026737581938505,0.0003642191004473716,0.0003342246054671705,0.00018568032828625292,-0.023145053535699844,0.05155414342880249,0.0014204545877873898,0.0010026737581938505,-0.017045455053448677,-0.0014204545877873898,-0.0010026737581938505,-5.66110210317257e-19,-2.676624113323589e-19,-2.710505431213761e-19,-0.008516299538314342,0.0014204545877873898,0.0034029490780085325,0.0003342246054671705,-3.6654449165562164e-18,-0.0002840909000951797,-4.0657581468206416e-20,-0.0002428127481834963,-6.68449210934341e-05,-2.371692252312041e-20,-0.006127451080828905,0.0010026737581938505,0.0003342246054671705,0.0016392921097576618,-2.6106992660691847e-18,-0.0,-0.0001336898421868682,-8.67060187803681e-35,-4.456327951629646e-05,-7.95772866695188e-05,0.0028409091755747795,-0.017045455053448677,-3.6654449165562164e-18,-2.6106992660691847e-18,0.008522727526724339,0.0,7.349654450596539e-35,2.830551051586285e-19,1.1131914925342496e-19,1.3694022862194536e-19,0.0014204545877873898,-0.0014204545877873898,-0.0002840909000951797,-0.0,0.0,0.0002840909000951797,0.0,0.0,0.0,0.0,0.0010026737581938505,-0.0010026737581938505,-4.0657581468206416e-20,-0.0001336898421868682,7.349654450596539e-35,0.0,0.0001336898421868682,0.0,5.505714157152952e-21,-8.470329472543003e-22,0.0003642191004473716,-5.66110210317257e-19,-0.0002428127481834963,-8.67060187803681e-35,2.830551051586285e-19,0.0,0.0,2.428127481834963e-05,3.6971094582719347e-36,4.548031336938587e-36,0.0003342246054671705,-2.676624113323589e-19,-6.68449210934341e-05,-4.456327951629646e-05,1.1131914925342496e-19,0.0,5.505714157152952e-21,3.6971094582719347e-36,8.912656085158233e-06,2.964615315390051e-21,0.00018568032828625292,-2.710505431213761e-19,-2.371692252312041e-20,-7.95772866695188e-05,1.3694022862194536e-19,0.0,-8.470329472543003e-22,4.548031336938587e-36,2.964615315390051e-21,5.305152171786176e-06,3.0,12.0,3.0,0.18912799656391144,-0.09775640815496445,-0.033882785588502884,-0.09775640815496445,0.013888888992369175,0.006410256493836641,0.02083333395421505,0.001526251551695168,0.006410256493836641,0.013888888992369175,-0.09775640815496445,0.23664529621601105,0.006410256493836641,0.02083333395421505,-0.0833333358168602,-0.006410256493836641,-0.02083333395421505,3.429126446585023e-18,9.107298248878237e-18,-1.214306433183765e-17,-0.033882785588502884,0.006410256493836641,0.013181263580918312,0.006410256493836641,1.983915275103102e-17,-0.0011655011912807822,2.168404344971009e-19,-0.0009157509193755686,-0.0011655011912807822,-1.734723475976807e-17,-0.09775640815496445,0.02083333395421505,0.006410256493836641,0.23664529621601105,9.811291815887418e-17,-8.153990790884349e-18,-0.02083333395421505,7.052105047866109e-19,-0.006410256493836641,-0.0833333358168602,0.013888888992369175,-0.0833333358168602,1.983915275103102e-17,9.811291815887418e-17,0.0416666679084301,2.927345865710862e-18,-1.5967959064811425e-17,-1.2739375526704677e-18,-5.955874531900742e-18,-2.2238474490163556e-17,0.006410256493836641,-0.006410256493836641,-0.0011655011912807822,-8.153990790884349e-18,2.927345865710862e-18,0.0011655011912807822,6.1229025635002055e-19,-8.131516293641283e-20,1.5464013597177848e-19,2.9495895795630254e-18,0.02083333395421505,-0.02083333395421505,2.168404344971009e-19,-0.02083333395421505,-1.5967959064811425e-17,6.1229025635002055e-19,0.02083333395421505,-2.5282441965498855e-19,2.2768245622195593e-18,3.729655473350135e-17,0.001526251551695168,3.429126446585023e-18,-0.0009157509193755686,7.052105047866109e-19,-1.2739375526704677e-18,-8.131516293641283e-20,-2.5282441965498855e-19,8.325008093379438e-05,-5.489450364593482e-20,-5.61421311165606e-20,0.006410256493836641,9.107298248878237e-18,-0.0011655011912807822,-0.006410256493836641,-5.955874531900742e-18,1.5464013597177848e-19,2.2768245622195593e-18,-5.489450364593482e-20,0.0011655011912807822,1.3444106938820255e-17,0.013888888992369175,-1.214306433183765e-17,-1.734723475976807e-17,-0.0833333358168602,-2.2238474490163556e-17,2.9495895795630254e-18,3.729655473350135e-17,-5.61421311165606e-20,1.3444106938820255e-17,0.0416666679084301,3.0,12.0,4.0,0.1558150202035904,-0.07644230872392654,-0.02637362666428089,-0.06282051652669907,0.010416666977107525,0.004807692486792803,0.012500000186264515,0.0011446886928752065,0.003846153849735856,0.0069444444961845875,-0.07644230872392654,0.18060897290706635,0.004807692486792803,0.012500000186264515,-0.0625,-0.004807692486792803,-0.012500000186264515,-8.723622102274091e-18,-8.195674903492734e-18,1.6798600601047375e-17,-0.02637362666428089,0.004807692486792803,0.01006077229976654,0.003846153849735856,-3.664603343001005e-17,-0.0008741258643567562,-8.348356728138384e-18,-0.0006868132040835917,-0.0006993007264100015,1.7279433866884396e-18,-0.06282051652669907,0.012500000186264515,0.003846153849735856,0.09049145132303238,3.748230972057871e-17,2.168404344971009e-18,-0.008333333767950535,-4.743384504624082e-20,-0.0025641026441007853,-0.02083333395421505,0.010416666977107525,-0.0625,-3.664603343001005e-17,3.748230972057871e-17,0.03125,-9.75781955236954e-19,-2.949029909160572e-17,2.89346454782069e-18,2.185603911447824e-18,-6.245455575104531e-18,0.004807692486792803,-0.004807692486792803,-0.0008741258643567562,2.168404344971009e-18,-9.75781955236954e-19,0.0008741258643567562,-9.215718466126788e-19,2.82061971435682e-19,2.439454888092385e-19,-8.462660991276754e-19,0.012500000186264515,-0.012500000186264515,-8.348356728138384e-18,-0.008333333767950535,-2.949029909160572e-17,-9.215718466126788e-19,0.008333333767950535,6.037644540776482e-19,1.4345867809762289e-18,2.3707590891835046e-19,0.0011446886928752065,-8.723622102274091e-18,-0.0006868132040835917,-4.743384504624082e-20,2.89346454782069e-18,2.82061971435682e-19,6.037644540776482e-19,6.243756070034578e-05,6.776263578034403e-20,-2.8180962965006505e-19,0.003846153849735856,-8.195674903492734e-18,-0.0006993007264100015,-0.0025641026441007853,2.185603911447824e-18,2.439454888092385e-19,1.4345867809762289e-18,6.776263578034403e-20,0.0004662004648707807,1.5339419258918107e-18,0.0069444444961845875,1.6798600601047375e-17,1.7279433866884396e-18,-0.02083333395421505,-6.245455575104531e-18,-8.462660991276754e-19,2.3707590891835046e-19,-2.8180962965006505e-19,1.5339419258918107e-18,0.0069444444961845875,3.0,12.0,5.0,0.13263125717639923,-0.06282051652669907,-0.02161172218620777,-0.04386446997523308,0.008333333767950535,0.003846153849735856,0.008333333767950535,0.0009157509193755686,0.0025641026441007853,0.003968254197388887,-0.06282051652669907,0.14615385234355927,0.003846153849735856,0.008333333767950535,-0.05000000074505806,-0.003846153849735856,-0.008333333767950535,2.8299360428008517e-18,2.3852447794681098e-18,-1.4094628242311558e-17,-0.02161172218620777,0.003846153849735856,0.008141858503222466,0.0025641026441007853,1.6845791254993525e-17,-0.0006993007264100015,-9.486769009248164e-19,-0.0005494505749084055,-0.0004662004648707807,-1.0842021724855044e-19,-0.04386446997523308,0.008333333767950535,0.0025641026441007853,0.04574175924062729,-6.938893903907228e-18,-2.3852447794681098e-18,-0.004166666883975267,1.6263032587282567e-19,-0.0012820513220503926,-0.007936508394777775,0.008333333767950535,-0.05000000074505806,1.6845791254993525e-17,-6.938893903907228e-18,0.02500000037252903,1.6263032587282567e-19,-3.920616487048718e-18,-1.1316360175317453e-18,-1.5111710911942978e-18,4.851823333436415e-18,0.003846153849735856,-0.003846153849735856,-0.0006993007264100015,-2.3852447794681098e-18,1.6263032587282567e-19,0.0006993007264100015,7.589415207398531e-19,-6.776263578034403e-20,-1.3552527156068805e-20,4.0657581468206416e-19,0.008333333767950535,-0.008333333767950535,-9.486769009248164e-19,-0.004166666883975267,-3.920616487048718e-18,7.589415207398531e-19,0.004166666883975267,-3.7858466898812326e-20,2.710505431213761e-19,9.75781955236954e-19,0.0009157509193755686,2.8299360428008517e-18,-0.0005494505749084055,1.6263032587282567e-19,-1.1316360175317453e-18,-6.776263578034403e-20,-3.7858466898812326e-20,4.995004928787239e-05,1.3941230958134837e-20,-6.846272138424799e-20,0.0025641026441007853,2.3852447794681098e-18,-0.0004662004648707807,-0.0012820513220503926,-1.5111710911942978e-18,-1.3552527156068805e-20,2.710505431213761e-19,1.3941230958134837e-20,0.00023310023243539035,3.7947076036992655e-19,0.003968254197388887,-1.4094628242311558e-17,-1.0842021724855044e-19,-0.007936508394777775,4.851823333436415e-18,4.0657581468206416e-19,9.75781955236954e-19,-6.846272138424799e-20,3.7947076036992655e-19,0.0019841270986944437,3.0,12.0,6.0,0.11551180481910706,-0.05334249138832092,-0.018315019086003304,-0.032394688576459885,0.0069444444961845875,0.0032051282469183207,0.0059523810632526875,0.000763125775847584,0.0018315018387511373,0.0024801588151603937,-0.05334249138832092,0.12278693169355392,0.0032051282469183207,0.0059523810632526875,-0.0416666679084301,-0.0032051282469183207,-0.0059523810632526875,2.8001455466300607e-18,6.5052130349130266e-18,2.4069288229178198e-17,-0.018315019086003304,0.0032051282469183207,0.006840381771326065,0.0018315018387511373,1.428436362249652e-17,-0.0005827505956403911,3.5914196963582334e-18,-0.0004578754596877843,-0.0003330003237351775,6.396792817664476e-18,-0.032394688576459885,0.0059523810632526875,0.0018315018387511373,0.026598747819662094,5.442694905877232e-17,5.9631119486702744e-18,-0.0023809524718672037,1.4365678785432934e-18,-0.0007326007471419871,-0.0037202381063252687,0.0069444444961845875,-0.0416666679084301,1.428436362249652e-17,5.442694905877232e-17,0.02083333395421505,2.0057740190981832e-18,-8.417333665057956e-18,-8.639736061993863e-19,-2.3091683581461484e-18,-6.043051096657705e-18,0.0032051282469183207,-0.0032051282469183207,-0.0005827505956403911,5.9631119486702744e-18,2.0057740190981832e-18,0.0005827505956403911,-6.2341624917916505e-19,-8.470329472543003e-20,-1.9651164376299768e-19,-8.131516293641283e-19,0.0059523810632526875,-0.0059523810632526875,3.5914196963582334e-18,-0.0023809524718672037,-8.417333665057956e-18,-6.2341624917916505e-19,0.0023809524718672037,-1.794037004637199e-19,-2.981555974335137e-19,-2.439454888092385e-18,0.000763125775847584,2.8001455466300607e-18,-0.0004578754596877843,1.4365678785432934e-18,-8.639736061993863e-19,-8.470329472543003e-20,-1.794037004637199e-19,4.162504046689719e-05,-5.142683973349035e-20,-1.8260500575657375e-19,0.0018315018387511373,6.5052130349130266e-18,-0.0003330003237351775,-0.0007326007471419871,-2.3091683581461484e-18,-1.9651164376299768e-19,-2.981555974335137e-19,-5.142683973349035e-20,0.00013320012658368796,-1.1655173354219173e-18,0.0024801588151603937,2.4069288229178198e-17,6.396792817664476e-18,-0.0037202381063252687,-6.043051096657705e-18,-8.131516293641283e-19,-2.439454888092385e-18,-1.8260500575657375e-19,-1.1655173354219173e-18,0.0007440476329065859,3.0,12.0,7.0,0.10233334451913834,-0.04635988920927048,-0.015894819051027298,-0.02491605654358864,0.0059523810632526875,0.002747252816334367,0.004464285913854837,0.0006541077746078372,0.0013736264081671834,0.0016534391324967146,-0.04635988920927048,0.10588370263576508,0.002747252816334367,0.004464285913854837,-0.0357142873108387,-0.002747252816334367,-0.004464285913854837,-4.346973085309069e-18,1.734723475976807e-18,1.8648277366750676e-17,-0.015894819051027298,0.002747252816334367,0.005898863077163696,0.0013736264081671834,-1.5490538539386645e-17,-0.0004995004856027663,-1.4704491964334654e-18,-0.0003924646880477667,-0.00024975024280138314,8.131516293641283e-19,-0.02491605654358864,0.004464285913854837,0.0013736264081671834,0.016903236508369446,5.2258544713801314e-17,5.9631119486702744e-18,-0.0014880952658131719,-3.6591823321385775e-19,-0.0004578754596877843,-0.0019841270986944437,0.0059523810632526875,-0.0357142873108387,-1.5490538539386645e-17,5.2258544713801314e-17,0.01785714365541935,-1.1555557027025177e-18,-7.258614927090612e-18,1.5246593050577406e-18,-5.300213024685458e-19,-6.513845905375936e-18,0.002747252816334367,-0.002747252816334367,-0.0004995004856027663,5.9631119486702744e-18,-1.1555557027025177e-18,0.0004995004856027663,-5.014435047745458e-19,9.791397656866423e-20,-1.0164395367051604e-19,-7.453889935837843e-19,0.004464285913854837,-0.004464285913854837,-1.4704491964334654e-18,-0.0014880952658131719,-7.258614927090612e-18,-5.014435047745458e-19,0.0014880952658131719,1.8758155696624005e-19,-5.421010862427522e-20,-2.710505431213761e-19,0.0006541077746078372,-4.346973085309069e-18,-0.0003924646880477667,-3.6591823321385775e-19,1.5246593050577406e-18,9.791397656866423e-20,1.8758155696624005e-19,3.567860767361708e-05,3.792533847366484e-21,2.9366685660305497e-20,0.0013736264081671834,1.734723475976807e-18,-0.00024975024280138314,-0.0004578754596877843,-5.300213024685458e-19,-1.0164395367051604e-19,-5.421010862427522e-20,3.792533847366484e-21,8.325008093379438e-05,-1.0164395367051604e-19,0.0016534391324967146,1.8648277366750676e-17,8.131516293641283e-19,-0.0019841270986944437,-6.513845905375936e-18,-7.453889935837843e-19,-2.710505431213761e-19,2.9366685660305497e-20,-1.0164395367051604e-19,0.0003306878206785768,3.0,12.0,8.0,0.09186762571334839,-0.04099893197417259,-0.01404151413589716,-0.019764957949519157,0.0052083334885537624,0.0024038462433964014,0.0034722222480922937,0.0005723443464376032,0.0010683761211112142,0.0011574074160307646,-0.04099893197417259,0.09308226406574249,0.0024038462433964014,0.0034722222480922937,-0.03125,-0.0024038462433964014,-0.0034722222480922937,1.6906777627195835e-18,1.4094628242311558e-18,3.854941241544152e-18,-0.01404151413589716,0.0024038462433964014,0.005185786634683609,0.0010683761211112142,1.5242228845665576e-17,-0.0004370629321783781,-3.438176243413246e-33,-0.00034340660204179585,-0.00019425019854679704,7.910460546742612e-19,-0.019764957949519157,0.0034722222480922937,0.0010683761211112142,0.011434167623519897,2.0931059283741842e-17,-7.837864268128117e-21,-0.0009920635493472219,4.336808689942018e-19,-0.0003052503161597997,-0.0011574074160307646,0.0052083334885537624,-0.03125,1.5242228845665576e-17,2.0931059283741842e-17,0.015625,-3.105518915293559e-18,-3.524517742005251e-18,-8.768932367892755e-19,-7.116814353210367e-19,-1.927470620772076e-18,0.0024038462433964014,-0.0024038462433964014,-0.0004370629321783781,-7.837864268128117e-21,-3.105518915293559e-18,0.0004370629321783781,7.0050918016090834e-34,3.3881317890172014e-21,3.3881317890172014e-21,3.749958763060084e-34,0.0034722222480922937,-0.0034722222480922937,-3.438176243413246e-33,-0.0009920635493472219,-3.524517742005251e-18,7.0050918016090834e-34,0.0009920635493472219,1.978000211531336e-34,1.605333604832131e-34,4.347778455689836e-34,0.0005723443464376032,1.6906777627195835e-18,-0.00034340660204179585,4.336808689942018e-19,-8.768932367892755e-19,3.3881317890172014e-21,1.978000211531336e-34,3.121878035017289e-05,0.0,-6.161743992385369e-20,0.0010683761211112142,1.4094628242311558e-18,-0.00019425019854679704,-0.0003052503161597997,-7.116814353210367e-19,3.3881317890172014e-21,1.605333604832131e-34,0.0,5.550005516852252e-05,-3.235834913549118e-20,0.0011574074160307646,3.854941241544152e-18,7.910460546742612e-19,-0.0011574074160307646,-1.927470620772076e-18,3.749958763060084e-34,4.347778455689836e-34,-6.161743992385369e-20,-3.235834913549118e-20,0.0001653439103392884,3.0,12.0,9.0,0.08335152268409729,-0.036752138286828995,-0.012576312758028507,-0.016064491122961044,0.004629629664123058,0.0021367522422224283,0.0027777778450399637,0.000508750497829169,0.0008547008619643748,0.0008417508215643466,-0.036752138286828995,0.08304843306541443,0.0021367522422224283,0.0027777778450399637,-0.02777777798473835,-0.0021367522422224283,-0.0027777778450399637,1.5924219408380846e-18,1.1384122811097797e-18,2.7234909260599248e-18,-0.012576312758028507,0.0021367522422224283,0.0046268547885119915,0.0008547008619643748,1.33051902267481e-17,-0.0003885003970935941,-2.1008681157025626e-33,-0.0003052503161597997,-0.0001554001501062885,5.611549848577581e-19,-0.016064491122961044,0.0027777778450399637,0.0008547008619643748,0.008104627020657063,1.6218394612706755e-17,8.480286336049184e-21,-0.0006944444612599909,5.149960319306146e-19,-0.0002136752154910937,-0.0007215007208287716,0.004629629664123058,-0.02777777798473835,1.33051902267481e-17,1.6218394612706755e-17,0.013888888992369175,-2.453743399198473e-18,-2.193033234119469e-18,-7.794606147136318e-19,-5.69345158596587e-19,-1.3617454630299624e-18,0.0021367522422224283,-0.0021367522422224283,-0.0003885003970935941,8.480286336049184e-21,-2.453743399198473e-18,0.0003885003970935941,3.874421115115605e-34,-3.3881317890172014e-21,-3.3881317890172014e-21,2.423392265993016e-34,0.0027777778450399637,-0.0027777778450399637,-2.1008681157025626e-33,-0.0006944444612599909,-2.193033234119469e-18,3.874421115115605e-34,0.0006944444612599909,1.2307556718691375e-34,8.989867980430067e-35,2.150174088494559e-34,0.000508750497829169,1.5924219408380846e-18,-0.0003052503161597997,5.149960319306146e-19,-7.794606147136318e-19,-3.3881317890172014e-21,1.2307556718691375e-34,2.775002758426126e-05,-3.049318610115481e-20,-4.353232167133802e-20,0.0008547008619643748,1.1384122811097797e-18,-0.0001554001501062885,-0.0002136752154910937,-5.69345158596587e-19,-3.3881317890172014e-21,8.989867980430067e-35,-3.049318610115481e-20,3.885003752657212e-05,-2.057486727281493e-20,0.0008417508215643466,2.7234909260599248e-18,5.611549848577581e-19,-0.0007215007208287716,-1.3617454630299624e-18,2.423392265993016e-34,2.150174088494559e-34,-4.353232167133802e-20,-2.057486727281493e-20,9.018759010359645e-05,3.0,12.0,10.0,0.07628482580184937,-0.03330419585108757,-0.011388611048460007,-0.013315850868821144,0.004166666883975267,0.001923076924867928,0.0022727272007614374,0.0004578754596877843,0.0006993007264100015,0.0006313131307251751,-0.03330419585108757,0.07497086375951767,0.001923076924867928,0.0022727272007614374,-0.02500000037252903,-0.001923076924867928,-0.0022727272007614374,-6.572975670693371e-19,-3.3203691532368573e-19,-9.486769009248164e-19,-0.011388611048460007,0.001923076924867928,0.004176883492618799,0.0006993007264100015,-4.9064424828735975e-18,-0.00034965036320500076,1.3552527156068805e-19,-0.00027472528745420277,-0.0001271455839741975,-4.946672411965114e-19,-0.013315850868821144,0.0022727272007614374,0.0006993007264100015,0.005957815330475569,-5.775537577835606e-18,4.99076837644455e-21,-0.0005050505278632045,-6.816868840328865e-19,-0.0001554001501062885,-0.0004734848625957966,0.004166666883975267,-0.02500000037252903,-4.9064424828735975e-18,-5.775537577835606e-18,0.012500000186264515,-1.0113457482795709e-34,-2.4869954643333772e-34,3.507572792060737e-19,2.3291392381689576e-19,4.993900806026712e-19,0.001923076924867928,-0.001923076924867928,-0.00034965036320500076,4.99076837644455e-21,-1.0113457482795709e-34,0.00034965036320500076,4.239600532695996e-22,-3.3881317890172014e-21,-1.301762741013099e-22,1.04048809645381e-21,0.0022727272007614374,-0.0022727272007614374,1.3552527156068805e-19,-0.0005050505278632045,-2.4869954643333772e-34,4.239600532695996e-22,0.0005050505278632045,0.0,-3.049318610115481e-20,0.0,0.0004578754596877843,-6.572975670693371e-19,-0.00027472528745420277,-6.816868840328865e-19,3.507572792060737e-19,-3.3881317890172014e-21,0.0,2.4975024643936194e-05,2.0328790734103208e-20,6.395098751769968e-20,0.0006993007264100015,-3.3203691532368573e-19,-0.0001271455839741975,-0.0001554001501062885,2.3291392381689576e-19,-1.301762741013099e-22,-3.049318610115481e-20,2.0328790734103208e-20,2.82545734080486e-05,-4.743384504624082e-20,0.0006313131307251751,-9.486769009248164e-19,-4.946672411965114e-19,-0.0004734848625957966,4.993900806026712e-19,1.04048809645381e-21,0.0,6.395098751769968e-20,-4.743384504624082e-20,5.260942634777166e-05,3.0,12.0,11.0,0.07032550871372223,-0.03044871799647808,-0.010406260378658772,-0.011217948980629444,0.0037878789007663727,0.0017482517287135124,0.0018939394503831863,0.0004162504046689719,0.0005827505956403911,0.0004856254963669926,-0.03044871799647808,0.06832750886678696,0.0017482517287135124,0.0018939394503831863,-0.022727273404598236,-0.0017482517287135124,-0.0018939394503831863,2.622414004699314e-18,6.708500942254059e-19,-1.734723475976807e-18,-0.010406260378658772,0.0017482517287135124,0.0038067991845309734,0.0005827505956403911,2.088032995113519e-17,-0.00031786394538357854,-2.168404344971009e-19,-0.00024975024280138314,-0.00010595464846119285,-1.5111067779016718e-18,-0.011217948980629444,0.0018939394503831863,0.0005827505956403911,0.004509842023253441,-9.596916379615725e-19,-2.5390830026101093e-18,-0.0003787878667935729,-1.218492670186804e-18,-0.00011655011621769518,-0.00032375031150877476,0.0037878789007663727,-0.022727273404598236,2.088032995113519e-17,-9.596916379615725e-19,0.011363636702299118,-2.1173993544252235e-18,-1.4539871459603267e-33,-1.3448006681818136e-18,-5.11704835369631e-19,3.7740681549463604e-19,0.0017482517287135124,-0.0017482517287135124,-0.00031786394538357854,-2.5390830026101093e-18,-2.1173993544252235e-18,0.00031786394538357854,2.1919032537039333e-19,3.3881317890172014e-21,6.731286278461685e-20,1.8143537237042377e-19,0.0018939394503831863,-0.0018939394503831863,-2.168404344971009e-19,-0.0003787878667935729,-1.4539871459603267e-33,2.1919032537039333e-19,0.0003787878667935729,0.0,0.0,3.3881317890172014e-21,0.0004162504046689719,2.622414004699314e-18,-0.00024975024280138314,-1.218492670186804e-18,-1.3448006681818136e-18,3.3881317890172014e-21,0.0,2.2704567527398467e-05,3.5575383784680614e-20,9.147955830346444e-20,0.0005827505956403911,6.708500942254059e-19,-0.00010595464846119285,-0.00011655011621769518,-5.11704835369631e-19,6.731286278461685e-20,0.0,3.5575383784680614e-20,2.119093005603645e-05,5.590417451878382e-20,0.0004856254963669926,-1.734723475976807e-18,-1.5111067779016718e-18,-0.00032375031150877476,3.7740681549463604e-19,1.8143537237042377e-19,3.3881317890172014e-21,9.147955830346444e-20,5.590417451878382e-20,3.237503187847324e-05,3.0,12.0,12.0,0.06523159891366959,-0.028044871985912323,-0.009580163285136223,-0.009580163285136223,0.0034722222480922937,0.0016025641234591603,0.0016025641234591603,0.000381562887923792,0.0004930966533720493,0.000381562887923792,-0.028044871985912323,0.06276709586381912,0.0016025641234591603,0.0016025641234591603,-0.02083333395421505,-0.0016025641234591603,-0.0016025641234591603,1.1858461261560205e-18,5.963111948670274e-19,1.1384122811097797e-18,-0.009580163285136223,0.0016025641234591603,0.0034970371052622795,0.0004930966533720493,9.617356839732523e-18,-0.00029137529782019556,-8.809142651444724e-20,-0.00022893772984389216,-8.965393499238417e-05,1.6940658945086007e-19,-0.009580163285136223,0.0016025641234591603,0.0004930966533720493,0.0034970371052622795,9.617356839732523e-18,-7.047371316979286e-22,-0.00029137529782019556,3.1084783090313323e-19,-8.965393499238417e-05,-0.00022893772984389216,0.0034722222480922937,-0.02083333395421505,9.617356839732523e-18,9.617356839732523e-18,0.010416666977107525,-1.380230674973838e-18,-1.380230674973838e-18,-5.845954739599209e-19,-3.284683547635554e-19,-5.845954739599209e-19,0.0016025641234591603,-0.0016025641234591603,-0.00029137529782019556,-7.047371316979286e-22,-1.380230674973838e-18,0.00029137529782019556,1.3292685411079534e-21,-6.776263578034403e-21,-1.6759984806676918e-21,4.325526039283055e-22,0.0016025641234591603,-0.0016025641234591603,-8.809142651444724e-20,-0.00029137529782019556,-1.380230674973838e-18,1.3292685411079534e-21,0.00029137529782019556,1.2705494208814505e-21,1.6093625997831706e-20,3.3881317890172014e-21,0.000381562887923792,1.1858461261560205e-18,-0.00022893772984389216,3.1084783090313323e-19,-5.845954739599209e-19,-6.776263578034403e-21,1.2705494208814505e-21,2.0812520233448595e-05,-2.1175823681357508e-20,-1.8211208365967457e-20,0.0004930966533720493,5.963111948670274e-19,-8.965393499238417e-05,-8.965393499238417e-05,-3.284683547635554e-19,-1.6759984806676918e-21,1.6093625997831706e-20,-2.1175823681357508e-20,1.6300715287798084e-05,7.623296525288703e-21,0.000381562887923792,1.1384122811097797e-18,1.6940658945086007e-19,-0.00022893772984389216,-5.845954739599209e-19,4.325526039283055e-22,3.3881317890172014e-21,-1.8211208365967457e-20,7.623296525288703e-21,2.0812520233448595e-05,3.0,12.0,13.0,0.060826994478702545,-0.025993237271904945,-0.008875739760696888,-0.008276979438960552,0.0032051282469183207,0.001479289960116148,0.0013736264081671834,0.00035221187863498926,0.0004226542660035193,0.0003052503161597997,-0.025993237271904945,0.058044519275426865,0.001479289960116148,0.0013736264081671834,-0.01923076994717121,-0.001479289960116148,-0.0013736264081671834,2.2937652211646453e-18,1.633079522306291e-18,1.666960840196463e-18,-0.008875739760696888,0.001479289960116148,0.0032339454628527164,0.0004226542660035193,2.054526886349201e-17,-0.0002689617977011949,0.0,-0.00021132713300175965,-7.684623415116221e-05,-1.0164395367051604e-20,-0.008276979438960552,0.0013736264081671834,0.0004226542660035193,0.002766998019069433,1.770032011295878e-17,-1.0889234350786216e-19,-0.00022893772984389216,-9.135314830376014e-20,-7.044238009257242e-05,-0.00016650016186758876,0.0032051282469183207,-0.01923076994717121,2.054526886349201e-17,1.770032011295878e-17,0.009615384973585606,-1.7916454962393374e-18,-1.525031639730966e-18,-1.1379082179240052e-18,-8.403670605892535e-19,-8.780484979122824e-19,0.001479289960116148,-0.001479289960116148,-0.0002689617977011949,-1.0889234350786216e-19,-1.7916454962393374e-18,0.0002689617977011949,-2.910687339978142e-20,0.0,2.7721869727883262e-21,9.048285574853919e-21,0.0013736264081671834,-0.0013736264081671834,0.0,-0.00022893772984389216,-1.525031639730966e-18,-2.910687339978142e-20,0.00022893772984389216,0.0,5.082197683525802e-21,5.082197683525802e-21,0.00035221187863498926,2.2937652211646453e-18,-0.00021132713300175965,-9.135314830376014e-20,-1.1379082179240052e-18,0.0,0.0,1.9211558537790552e-05,1.1011428314305904e-20,2.117582368135751e-22,0.0004226542660035193,1.633079522306291e-18,-7.684623415116221e-05,-7.044238009257242e-05,-8.403670605892535e-19,2.7721869727883262e-21,5.082197683525802e-21,1.1011428314305904e-20,1.2807705388695467e-05,-4.235164736271502e-21,0.0003052503161597997,1.666960840196463e-18,-1.0164395367051604e-20,-0.00016650016186758876,-8.780484979122824e-19,9.048285574853919e-21,5.082197683525802e-21,2.117582368135751e-22,-4.235164736271502e-21,1.387501379213063e-05,3.0,12.0,14.0,0.05698041990399361,-0.02422161214053631,-0.008267922326922417,-0.007222985383123159,0.0029761905316263437,0.0013736264081671834,0.0011904762359336019,0.0003270538873039186,0.00036630037357099354,0.00024801588733680546,-0.02422161214053631,0.05398351699113846,0.0013736264081671834,0.0011904762359336019,-0.01785714365541935,-0.0013736264081671834,-0.0011904762359336019,9.893344823930228e-19,5.149960319306146e-19,7.453889935837843e-19,-0.008267922326922417,0.0013736264081671834,0.0030077064875513315,0.00036630037357099354,8.111979941934006e-18,-0.00024975024280138314,2.710505431213761e-20,-0.00019623234402388334,-6.660006329184398e-05,1.7618285302889447e-19,-0.007222985383123159,0.0011904762359336019,0.00036630037357099354,0.0022272998467087746,7.661740571437718e-18,9.680312147361953e-21,-0.00018315018678549677,2.0649471855483824e-19,-5.6353903346462175e-05,-0.00012400794366840273,0.0029761905316263437,-0.01785714365541935,8.111979941934006e-18,7.661740571437718e-18,0.008928571827709675,-1.0140470201809273e-18,-1.487268983611542e-18,-5.01081820051707e-19,-2.4400507166273646e-19,-3.7172646283065783e-19,0.0013736264081671834,-0.0013736264081671834,-0.00024975024280138314,9.680312147361953e-21,-1.0140470201809273e-18,0.00024975024280138314,-1.21952554412207e-21,0.0,-2.449258620191563e-22,-4.326912919863306e-22,0.0011904762359336019,-0.0011904762359336019,2.710505431213761e-20,-0.00018315018678549677,-1.487268983611542e-18,-1.21952554412207e-21,0.00018315018678549677,0.0,-3.3881317890172014e-21,-1.6940658945086007e-21,0.0003270538873039186,9.893344823930228e-19,-0.00019623234402388334,2.0649471855483824e-19,-5.01081820051707e-19,0.0,0.0,1.783930383680854e-05,-9.317362419797304e-21,-1.1858461261560205e-20,0.00036630037357099354,5.149960319306146e-19,-6.660006329184398e-05,-5.6353903346462175e-05,-2.4400507166273646e-19,-2.449258620191563e-22,-3.3881317890172014e-21,-9.317362419797304e-21,1.0246164492855314e-05,-6.3527471044072525e-21,0.00024801588733680546,7.453889935837843e-19,1.7618285302889447e-19,-0.00012400794366840273,-3.7172646283065783e-19,-4.326912919863306e-22,-1.6940658945086007e-21,-1.1858461261560205e-20,-6.3527471044072525e-21,9.53907237999374e-06,3.0,12.0,15.0,0.053592003881931305,-0.02267628163099289,-0.0077380952425301075,-0.006358408834785223,0.0027777778450399637,0.0012820513220503926,0.0010416667209938169,0.0003052503161597997,0.00032051283051259816,0.00020424836839083582,-0.02267628163099289,0.05045406147837639,0.0012820513220503926,0.0010416667209938169,-0.01666666753590107,-0.0012820513220503926,-0.0010416667209938169,-4.811147140404426e-19,-2.473336205982557e-19,-3.1170812458958252e-19,-0.0077380952425301075,0.0012820513220503926,0.0028110777493566275,0.00032051283051259816,-3.3194855175474976e-18,-0.00023310023243539035,-2.371692252312041e-20,-0.00018315018678549677,-5.827505810884759e-05,-2.236166980751353e-19,-0.006358408834785223,0.0010416667209938169,0.00032051283051259816,0.0018196060555055737,-2.711715596449926e-18,7.478987435728011e-21,-0.00014880952949170023,-3.5566103852183535e-19,-4.578754669637419e-05,-9.426847827853635e-05,0.0027777778450399637,-0.01666666753590107,-3.3194855175474976e-18,-2.711715596449926e-18,0.008333333767950535,-1.1145756331782909e-35,7.07365664221812e-35,2.338381947538472e-19,1.067522140056858e-19,1.5175560207944122e-19,0.0012820513220503926,-0.0012820513220503926,-0.00023310023243539035,7.478987435728011e-21,-1.1145756331782909e-35,0.00023310023243539035,-6.116403872332058e-22,3.3881317890172014e-21,-1.8819704416741325e-22,-4.337075972677449e-22,0.0010416667209938169,-0.0010416667209938169,-2.371692252312041e-20,-0.00014880952949170023,7.07365664221812e-35,-6.116403872332058e-22,0.00014880952949170023,-2.117582368135751e-22,3.8116482626443515e-21,1.6940658945086007e-21,0.0003052503161597997,-4.811147140404426e-19,-0.00018315018678549677,-3.5566103852183535e-19,2.338381947538472e-19,3.3881317890172014e-21,-2.117582368135751e-22,1.6650015822960995e-05,1.5670109524204556e-20,1.9269999550035333e-20,0.00032051283051259816,-2.473336205982557e-19,-5.827505810884759e-05,-4.578754669637419e-05,1.067522140056858e-19,-1.8819704416741325e-22,3.8116482626443515e-21,1.5670109524204556e-20,8.325007911480498e-06,1.6940658945086007e-21,0.00020424836839083582,-3.1170812458958252e-19,-2.236166980751353e-19,-9.426847827853635e-05,1.5175560207944122e-19,-4.337075972677449e-22,1.6940658945086007e-21,1.9269999550035333e-20,1.6940658945086007e-21,6.7334626692172606e-06,3.0,12.0,16.0,0.05058439075946808,-0.02131645940244198,-0.00727213965728879,-0.005640397313982248,0.0026041667442768812,0.0012019231216982007,0.0009191176504828036,0.0002861721732188016,0.00028280544211156666,0.00017020697123371065,-0.02131645940244198,0.04735812544822693,0.0012019231216982007,0.0009191176504828036,-0.015625,-0.0012019231216982007,-0.0009191176504828036,8.768932367892755e-19,4.0996394647108136e-19,5.149960319306146e-19,-0.00727213965728879,0.0012019231216982007,0.0026385991368442774,0.00028280544211156666,7.788568866038023e-18,-0.00021853146608918905,3.049318610115481e-20,-0.00017170330102089792,-5.141917063156143e-05,1.0503208545953324e-19,-0.005640397313982248,0.0009191176504828036,0.00028280544211156666,0.001505826716311276,5.672743843113641e-18,-1.1274760494396702e-33,-0.00012254902685526758,1.2038701332096095e-19,-3.77073920390103e-05,-7.294584793271497e-05,0.0026041667442768812,-0.015625,7.788568866038023e-18,5.672743843113641e-18,0.0078125,-1.5527594576467795e-18,-8.707632080647982e-19,-4.384466183946378e-19,-1.8838626153058636e-19,-2.5105709657748073e-19,0.0012019231216982007,-0.0012019231216982007,-0.00021853146608918905,-1.1274760494396702e-33,-1.5527594576467795e-18,0.00021853146608918905,1.7306697716335957e-34,8.71426678660068e-35,3.744237354252256e-35,4.989840357771181e-35,0.0009191176504828036,-0.0009191176504828036,3.049318610115481e-20,-0.00012254902685526758,-8.707632080647982e-19,1.7306697716335957e-34,0.00012254902685526758,4.965288137873342e-35,-4.658681209898652e-21,-1.6940658945086007e-21,0.0002861721732188016,8.768932367892755e-19,-0.00017170330102089792,1.2038701332096095e-19,-4.384466183946378e-19,8.71426678660068e-35,4.965288137873342e-35,1.5609390175086446e-05,1.2789378536946488e-35,-8.025800672652446e-21,0.00028280544211156666,4.0996394647108136e-19,-5.141917063156143e-05,-3.77073920390103e-05,-1.8838626153058636e-19,3.744237354252256e-35,-4.658681209898652e-21,1.2789378536946488e-35,6.8558892962755635e-06,-2.541098841762901e-21,0.00017020697123371065,5.149960319306146e-19,1.0503208545953324e-19,-7.294584793271497e-05,-2.5105709657748073e-19,4.989840357771181e-35,-1.6940658945086007e-21,-8.025800672652446e-21,-2.541098841762901e-21,4.863056346948724e-06,3.0,13.0,3.0,0.17673993110656738,-0.09065934270620346,-0.029304029420018196,-0.09065934270620346,0.012820512987673283,0.005494505632668734,0.01923076994717121,0.0012210012646391988,0.005494505632668734,0.012820512987673283,-0.09065934270620346,0.21886447072029114,0.005494505632668734,0.01923076994717121,-0.07692307978868484,-0.005494505632668734,-0.01923076994717121,-3.579959108971311e-18,-8.294146619514109e-18,-4.85722573273506e-17,-0.029304029420018196,0.005494505632668734,0.010434010066092014,0.005494505632668734,-1.321456762755924e-17,-0.0009157509193755686,-6.938893903907228e-18,-0.000666000647470355,-0.0009157509193755686,4.7704895589362195e-18,-0.09065934270620346,0.01923076994717121,0.005494505632668734,0.21886447072029114,-1.0171576618257544e-16,-2.492744965080348e-19,-0.01923076994717121,-1.0388183911898997e-18,-0.005494505632668734,-0.07692307978868484,0.012820512987673283,-0.07692307978868484,-1.321456762755924e-17,-1.0171576618257544e-16,0.03846153989434242,-5.9631119486702744e-18,1.3003032729511054e-17,1.2197274440461925e-18,3.2817433341482343e-18,3.1943915311785013e-17,0.005494505632668734,-0.005494505632668734,-0.0009157509193755686,-2.492744965080348e-19,-5.9631119486702744e-18,0.0009157509193755686,-5.120312098200714e-19,9.486769009248164e-20,7.607245990230907e-20,8.641393008158384e-20,0.01923076994717121,-0.01923076994717121,-6.938893903907228e-18,-0.01923076994717121,1.3003032729511054e-17,-5.120312098200714e-19,0.01923076994717121,4.733522960758801e-19,9.215718466126788e-19,-1.9081958235744878e-17,0.0012210012646391988,-3.579959108971311e-18,-0.000666000647470355,-1.0388183911898997e-18,1.2197274440461925e-18,9.486769009248164e-20,4.733522960758801e-19,5.550005516852252e-05,3.266786008742806e-20,1.4930894399917715e-19,0.005494505632668734,-8.294146619514109e-18,-0.0009157509193755686,-0.005494505632668734,3.2817433341482343e-18,7.607245990230907e-20,9.215718466126788e-19,3.266786008742806e-20,0.0009157509193755686,-5.204170427930421e-18,0.012820512987673283,-4.85722573273506e-17,4.7704895589362195e-18,-0.07692307978868484,3.1943915311785013e-17,8.641393008158384e-20,-1.9081958235744878e-17,1.4930894399917715e-19,-5.204170427930421e-18,0.03846153989434242,3.0,13.0,4.0,0.14551281929016113,-0.07087912410497665,-0.02280219830572605,-0.05824175849556923,0.009615384973585606,0.004120879340916872,0.011538461782038212,0.0009157509193755686,0.0032967033330351114,0.006410256493836641,-0.07087912410497665,0.16703297197818756,0.004120879340916872,0.011538461782038212,-0.057692307978868484,-0.004120879340916872,-0.011538461782038212,-6.671773606068821e-19,-4.2825985813177425e-18,-5.2909066017292616e-17,-0.02280219830572605,0.004120879340916872,0.00796287041157484,0.0032967033330351114,-2.460106486060537e-18,-0.0006868132040835917,2.6020852139652106e-18,-0.0004995004856027663,-0.0005494505749084055,5.7462715141731735e-18,-0.05824175849556923,0.011538461782038212,0.0032967033330351114,0.08369963616132736,-8.981563487047727e-17,-4.988611709792471e-18,-0.007692307699471712,1.0198352165172672e-18,-0.002197802299633622,-0.01923076994717121,0.009615384973585606,-0.057692307978868484,-2.460106486060537e-18,-8.981563487047727e-17,0.028846153989434242,-5.5294310796760726e-18,4.548789024750063e-18,3.7947076036992655e-19,2.0796443497264656e-18,2.2847329051839338e-17,0.004120879340916872,-0.004120879340916872,-0.0006868132040835917,-4.988611709792471e-18,-5.5294310796760726e-18,0.0006868132040835917,-7.0883071243623755e-19,6.776263578034403e-21,1.3833137839119763e-19,1.5271646283380106e-18,0.011538461782038212,-0.011538461782038212,2.6020852139652106e-18,-0.007692307699471712,4.548789024750063e-18,-7.0883071243623755e-19,0.007692307699471712,-8.678608380905027e-20,-3.5236570605778894e-19,-1.3010426069826053e-18,0.0009157509193755686,-6.671773606068821e-19,-0.0004995004856027663,1.0198352165172672e-18,3.7947076036992655e-19,6.776263578034403e-21,-8.678608380905027e-20,4.162504046689719e-05,-4.939381396476827e-21,-2.710005762424991e-19,0.0032967033330351114,-4.2825985813177425e-18,-0.0005494505749084055,-0.002197802299633622,2.0796443497264656e-18,1.3833137839119763e-19,-3.5236570605778894e-19,-4.939381396476827e-21,0.00036630037357099354,-2.3852447794681098e-18,0.006410256493836641,-5.2909066017292616e-17,5.7462715141731735e-18,-0.01923076994717121,2.2847329051839338e-17,1.5271646283380106e-18,-1.3010426069826053e-18,-2.710005762424991e-19,-2.3852447794681098e-18,0.006410256493836641,3.0,13.0,5.0,0.12380952388048172,-0.05824175849556923,-0.018681319430470467,-0.0406593419611454,0.007692307699471712,0.0032967033330351114,0.007692307699471712,0.0007326007471419871,0.002197802299633622,0.0036630036775022745,-0.05824175849556923,0.13516484200954437,0.0032967033330351114,0.007692307699471712,-0.04615384712815285,-0.0032967033330351114,-0.007692307699471712,-2.1143749753105765e-18,-1.734723475976807e-18,-2.0383000842727483e-17,-0.018681319430470467,0.0032967033330351114,0.006443556398153305,0.002197802299633622,-1.600553457131726e-17,-0.0005494505749084055,-1.0706496453294356e-18,-0.0003996003943029791,-0.00036630037357099354,0.0,-0.0406593419611454,0.007692307699471712,0.002197802299633622,0.042307693511247635,-2.8189256484623115e-17,-1.0842021724855044e-18,-0.003846153849735856,5.421010862427522e-19,-0.001098901149816811,-0.007326007355004549,0.007692307699471712,-0.04615384712815285,-1.600553457131726e-17,-2.8189256484623115e-17,0.023076923564076424,5.908901840045999e-18,1.9242047049185635e-18,7.216720710606639e-19,3.691518373246924e-19,5.46886491522494e-18,0.0032967033330351114,-0.0032967033330351114,-0.0005494505749084055,-1.0842021724855044e-18,5.908901840045999e-18,0.0005494505749084055,2.981555974335137e-19,8.300922883092143e-20,4.743384504624082e-20,1.0842021724855044e-19,0.007692307699471712,-0.007692307699471712,-1.0706496453294356e-18,-0.003846153849735856,1.9242047049185635e-18,2.981555974335137e-19,0.003846153849735856,4.894475182738001e-20,2.439454888092385e-19,4.445228907190568e-18,0.0007326007471419871,-2.1143749753105765e-18,-0.0003996003943029791,5.421010862427522e-19,7.216720710606639e-19,8.300922883092143e-20,4.894475182738001e-20,3.330003164592199e-05,1.6650042284679998e-20,-1.853687971288724e-19,0.002197802299633622,-1.734723475976807e-18,-0.00036630037357099354,-0.001098901149816811,3.691518373246924e-19,4.743384504624082e-20,2.439454888092385e-19,1.6650042284679998e-20,0.00018315018678549677,1.0842021724855044e-18,0.0036630036775022745,-2.0383000842727483e-17,0.0,-0.007326007355004549,5.46886491522494e-18,1.0842021724855044e-19,4.445228907190568e-18,-1.853687971288724e-19,1.0842021724855044e-18,0.0018315018387511373,3.0,13.0,6.0,0.10779696702957153,-0.049450550228357315,-0.015829408541321754,-0.030023548752069473,0.006410256493836641,0.002747252816334367,0.005494505632668734,0.0006105006323195994,0.0015698587521910667,0.002289377385750413,-0.049450550228357315,0.11355311423540115,0.002747252816334367,0.005494505632668734,-0.03846153989434242,-0.002747252816334367,-0.005494505632668734,-1.899148990574026e-18,-3.0357660829594124e-18,-9.324138683375338e-18,-0.015829408541321754,0.002747252816334367,0.005413237493485212,0.0015698587521910667,-7.738493006115288e-18,-0.0004578754596877843,-3.0222135558033436e-18,-0.0003330003237351775,-0.00026164311566390097,-1.463672932855431e-18,-0.030023548752069473,0.005494505632668734,0.0015698587521910667,0.02460099384188652,-2.2768245622195593e-17,-1.1926223897340549e-18,-0.002197802299633622,-5.421010862427522e-19,-0.0006279434892348945,-0.0034340659622102976,0.006410256493836641,-0.03846153989434242,-7.738493006115288e-18,-2.2768245622195593e-17,0.01923076994717121,-1.4094628242311558e-18,1.1088308548388114e-18,5.827586677109586e-19,6.58550952492508e-19,3.3116343327634505e-18,0.002747252816334367,-0.002747252816334367,-0.0004578754596877843,-1.1926223897340549e-18,-1.4094628242311558e-18,0.0004578754596877843,-1.0842021724855044e-19,4.573977915173222e-20,6.098637220230962e-20,1.5585406229479126e-19,0.005494505632668734,-0.005494505632668734,-3.0222135558033436e-18,-0.002197802299633622,1.1088308548388114e-18,-1.0842021724855044e-19,0.002197802299633622,1.465487327679672e-19,4.87890977618477e-19,6.098637220230962e-19,0.0006105006323195994,-1.899148990574026e-18,-0.0003330003237351775,-5.421010862427522e-19,5.827586677109586e-19,4.573977915173222e-20,1.465487327679672e-19,2.775002758426126e-05,3.921132725299134e-20,2.007412896536198e-20,0.0015698587521910667,-3.0357660829594124e-18,-0.00026164311566390097,-0.0006279434892348945,6.58550952492508e-19,6.098637220230962e-20,4.87890977618477e-19,3.921132725299134e-20,0.00010465725063113496,3.5914196963582334e-19,0.002289377385750413,-9.324138683375338e-18,-1.463672932855431e-18,-0.0034340659622102976,3.3116343327634505e-18,1.5585406229479126e-19,6.098637220230962e-19,2.007412896536198e-20,3.5914196963582334e-19,0.0006868132040835917,3.0,13.0,7.0,0.09547793120145798,-0.04297488182783127,-0.01373626384884119,-0.023090004920959473,0.005494505632668734,0.0023547881282866,0.004120879340916872,0.0005232862313278019,0.0011773940641433,0.001526251551695168,-0.04297488182783127,0.09791993349790573,0.0023547881282866,0.004120879340916872,-0.032967034727334976,-0.0023547881282866,-0.004120879340916872,-6.437450399132683e-20,5.421010862427522e-19,-2.927345865710862e-18,-0.01373626384884119,0.0023547881282866,0.004667951259762049,0.0011773940641433,4.323256162785949e-18,-0.0003924646880477667,-7.792703114739563e-19,-0.00028542886138893664,-0.00019623234402388334,-1.599198204416119e-18,-0.023090004920959473,0.004120879340916872,0.0011773940641433,0.015633177012205124,-4.119968255444917e-18,-2.168404344971009e-19,-0.0013736264081671834,-7.860465750519907e-19,-0.0003924646880477667,-0.0018315018387511373,0.005494505632668734,-0.032967034727334976,4.323256162785949e-18,-4.119968255444917e-18,0.016483517363667488,-2.1685178238112935e-19,3.0192894723379687e-18,-1.4738373282224826e-19,-5.642971855109056e-19,8.545906380172559e-19,0.0023547881282866,-0.0023547881282866,-0.0003924646880477667,-2.168404344971009e-19,-2.1685178238112935e-19,0.0003924646880477667,-5.421010862427522e-20,3.144138711473347e-20,2.0328790734103208e-20,3.3881317890172014e-20,0.004120879340916872,-0.004120879340916872,-7.792703114739563e-19,-0.0013736264081671834,3.0192894723379687e-18,-5.421010862427522e-20,0.0013736264081671834,4.813092242690147e-20,1.3552527156068805e-19,2.981555974335137e-19,0.0005232862313278019,-6.437450399132683e-20,-0.00028542886138893664,-7.860465750519907e-19,-1.4738373282224826e-19,3.144138711473347e-20,4.813092242690147e-20,2.3785738449078053e-05,2.7885877267470723e-20,8.645663974305542e-20,0.0011773940641433,5.421010862427522e-19,-0.00019623234402388334,-0.0003924646880477667,-5.642971855109056e-19,2.0328790734103208e-20,1.3552527156068805e-19,2.7885877267470723e-20,6.541077891597524e-05,1.9312351197398048e-19,0.001526251551695168,-2.927345865710862e-18,-1.599198204416119e-18,-0.0018315018387511373,8.545906380172559e-19,3.3881317890172014e-20,2.981555974335137e-19,8.645663974305542e-20,1.9312351197398048e-19,0.0003052503161597997,3.0,13.0,8.0,0.08569902181625366,-0.03800366446375847,-0.012133699841797352,-0.018315019086003304,0.004807692486792803,0.002060439670458436,0.0032051282469183207,0.0004578754596877843,0.0009157509193755686,0.0010683761211112142,-0.03800366446375847,0.08608058840036392,0.002060439670458436,0.0032051282469183207,-0.028846153989434242,-0.002060439670458436,-0.0032051282469183207,1.3992984288641042e-18,1.2197274440461925e-18,3.558407331701548e-18,-0.012133699841797352,0.002060439670458436,0.004103535320609808,0.0009157509193755686,1.2705753116346234e-17,-0.00034340660204179585,-2.6455620758308708e-33,-0.00024975024280138314,-0.00015262515807989985,-1.5673576986253822e-33,-0.018315019086003304,0.0032051282469183207,0.0009157509193755686,0.010574743151664734,1.9117639498647965e-17,7.837502376610125e-21,-0.0009157509193755686,2.710505431213761e-20,-0.00026164311566390097,-0.0010683761211112142,0.004807692486792803,-0.028846153989434242,1.2705753116346234e-17,1.9117639498647965e-17,0.014423076994717121,-2.2523544917487094e-18,-3.003139184468177e-18,-6.931961716783728e-19,-6.100126662321441e-19,-1.779203665850774e-18,0.002060439670458436,-0.002060439670458436,-0.00034340660204179585,7.837502376610125e-21,-2.2523544917487094e-18,0.00034340660204179585,4.68979955732112e-34,0.0,-1.6940658945086007e-21,2.7784618140959078e-34,0.0032051282469183207,-0.0032051282469183207,-2.6455620758308708e-33,-0.0009157509193755686,-3.003139184468177e-18,4.68979955732112e-34,0.0009157509193755686,1.4433567969791805e-34,1.2701540180758773e-34,3.7046159051870373e-34,0.0004578754596877843,1.3992984288641042e-18,-0.00024975024280138314,2.710505431213761e-20,-6.931961716783728e-19,0.0,1.4433567969791805e-34,2.0812520233448595e-05,-3.3881317890172014e-21,8.551137672859687e-35,0.0009157509193755686,1.2197274440461925e-18,-0.00015262515807989985,-0.00026164311566390097,-6.100126662321441e-19,-1.6940658945086007e-21,1.2701540180758773e-34,-3.3881317890172014e-21,4.3607185943983495e-05,7.525001129157651e-35,0.0010683761211112142,3.558407331701548e-18,-1.5673576986253822e-33,-0.0010683761211112142,-1.779203665850774e-18,2.7784618140959078e-34,3.7046159051870373e-34,8.551137672859687e-35,7.525001129157651e-35,0.00015262515807989985,3.0,13.0,9.0,0.07774447649717331,-0.034065935760736465,-0.01086691115051508,-0.014885114505887032,0.004273504484444857,0.0018315018387511373,0.0025641026441007853,0.0004070004215463996,0.0007326007471419871,0.0007770007941871881,-0.034065935760736465,0.07680097967386246,0.0018315018387511373,0.0025641026441007853,-0.025641025975346565,-0.0018315018387511373,-0.0025641026441007853,-5.827586677109586e-19,-4.87890977618477e-19,-1.2569957563520394e-18,-0.01086691115051508,0.0018315018387511373,0.003661153605207801,0.0007326007471419871,-4.6730667079315616e-18,-0.0003052503161597997,-1.6267004346692528e-19,-0.0002220002206740901,-0.00012210012937430292,-2.290869742028448e-34,-0.014885114505887032,0.0025641026441007853,0.0007326007471419871,0.007495282683521509,-6.492013300288212e-18,-1.6631426520371007e-19,-0.0006410256610251963,0.0,-0.00018315018678549677,-0.000666000647470355,0.004273504484444857,-0.025641025975346565,-4.6730667079315616e-18,-6.492013300288212e-18,0.012820512987673283,-4.81482486096809e-35,-0.0,3.0808719315691993e-19,2.4400507166273646e-19,6.284978781760197e-19,0.0018315018387511373,-0.0018315018387511373,-0.0003052503161597997,-1.6631426520371007e-19,-4.81482486096809e-35,0.0003052503161597997,1.6267004346692528e-19,-3.3881317890172014e-21,0.0,0.0,0.0025641026441007853,-0.0025641026441007853,-1.6267004346692528e-19,-0.0006410256610251963,-0.0,1.6267004346692528e-19,0.0006410256610251963,-3.009265538105056e-36,7.52316384526264e-37,-0.0,0.0004070004215463996,-5.827586677109586e-19,-0.0002220002206740901,0.0,3.0808719315691993e-19,-3.3881317890172014e-21,-3.009265538105056e-36,1.850001899583731e-05,0.0,1.510330731110243e-35,0.0007326007471419871,-4.87890977618477e-19,-0.00012210012937430292,-0.00018315018678549677,2.4400507166273646e-19,0.0,7.52316384526264e-37,0.0,3.052503234357573e-05,1.1961819465009466e-35,0.0007770007941871881,-1.2569957563520394e-18,-2.290869742028448e-34,-0.000666000647470355,6.284978781760197e-19,0.0,-0.0,1.510330731110243e-35,1.1961819465009466e-35,8.325008093379438e-05,3.0,13.0,10.0,0.07114551961421967,-0.030869130045175552,-0.009840159676969051,-0.012337662279605865,0.003846153849735856,0.0016483516665175557,0.0020979021210223436,0.00036630037357099354,0.0005994006060063839,0.0005827505956403911,-0.030869130045175552,0.06933066993951797,0.0016483516665175557,0.0020979021210223436,-0.023076923564076424,-0.0016483516665175557,-0.0020979021210223436,-5.624298769768554e-19,-3.9979955110402976e-19,-9.219509021283812e-19,-0.009840159676969051,0.0016483516665175557,0.0033050281926989555,0.0005994006060063839,-4.225724123940434e-18,-0.00027472528745420277,0.0,-0.00019980019715148956,-9.990009857574478e-05,-1.6882277674954397e-34,-0.012337662279605865,0.0020979021210223436,0.0005994006060063839,0.005509768147021532,-5.346622096350322e-18,-7.721656423495316e-23,-0.0004662004648707807,6.776263578034403e-21,-0.00013320012658368796,-0.0004370629321783781,0.003846153849735856,-0.023076923564076424,-4.225724123940434e-18,-5.346622096350322e-18,0.011538461782038212,-0.0,0.0,2.772784893508644e-19,1.996405061287678e-19,4.609754510641906e-19,0.0016483516665175557,-0.0016483516665175557,-0.00027472528745420277,-7.721656423495316e-23,-0.0,0.00027472528745420277,0.0,0.0,1.6940658945086007e-21,-0.0,0.0020979021210223436,-0.0020979021210223436,0.0,-0.0004662004648707807,0.0,0.0,0.0004662004648707807,0.0,0.0,-0.0,0.00036630037357099354,-5.624298769768554e-19,-0.00019980019715148956,6.776263578034403e-21,2.772784893508644e-19,0.0,0.0,1.6650015822960995e-05,-8.470329472543003e-22,1.1077610088844797e-35,0.0005994006060063839,-3.9979955110402976e-19,-9.990009857574478e-05,-0.00013320012658368796,1.996405061287678e-19,1.6940658945086007e-21,0.0,-8.470329472543003e-22,2.2200021703611128e-05,7.975879120475291e-36,0.0005827505956403911,-9.219509021283812e-19,-1.6882277674954397e-34,-0.0004370629321783781,4.609754510641906e-19,-0.0,-0.0,1.1077610088844797e-35,7.975879120475291e-36,4.856254963669926e-05,3.0,13.0,11.0,0.06558185070753098,-0.028221778571605682,-0.008991008624434471,-0.01039345283061266,0.003496503457427025,0.0014985015150159597,0.0017482517287135124,0.0003330003237351775,0.0004995004856027663,0.00044826968223787844,-0.028221778571605682,0.06318681687116623,0.0014985015150159597,0.0017482517287135124,-0.02097902074456215,-0.0014985015150159597,-0.0017482517287135124,-5.21772295508649e-19,-3.2526065174565133e-19,-6.776263578034403e-19,-0.008991008624434471,0.0014985015150159597,0.0030121393501758575,0.0004995004856027663,-3.856691555720314e-18,-0.00024975024280138314,0.0,-0.00018163654021918774,-8.325008093379438e-05,0.0,-0.01039345283061266,0.0017482517287135124,0.0004995004856027663,0.004170615691691637,-4.481957794339454e-18,-1.0490206579079432e-35,-0.00034965036320500076,-8.074818394088315e-21,-9.990009857574478e-05,-0.0002988464548252523,0.003496503457427025,-0.02097902074456215,-3.856691555720314e-18,-4.481957794339454e-18,0.010489510372281075,0.0,3.455920101050168e-35,2.5207134925544145e-19,1.6636708844063983e-19,3.4837551602980385e-19,0.0014985015150159597,-0.0014985015150159597,-0.00024975024280138314,-1.0490206579079432e-35,0.0,0.00024975024280138314,-4.235164736271502e-22,0.0,2.512753026911952e-37,-5.153481123918392e-22,0.0017482517287135124,-0.0017482517287135124,0.0,-0.00034965036320500076,3.455920101050168e-35,-4.235164736271502e-22,0.00034965036320500076,4.235164736271502e-22,0.0,0.0,0.0003330003237351775,-5.21772295508649e-19,-0.00018163654021918774,-8.074818394088315e-21,2.5207134925544145e-19,0.0,4.235164736271502e-22,1.5136378351598978e-05,8.470329472543003e-22,0.0,0.0004995004856027663,-3.2526065174565133e-19,-8.325008093379438e-05,-9.990009857574478e-05,1.6636708844063983e-19,2.512753026911952e-37,0.0,8.470329472543003e-22,1.6650015822960995e-05,8.470329472543003e-22,0.00044826968223787844,-6.776263578034403e-19,0.0,-0.0002988464548252523,3.4837551602980385e-19,-5.153481123918392e-22,0.0,0.0,8.470329472543003e-22,2.9884644391131587e-05,3.0,13.0,12.0,0.060826994478702545,-0.025993237271904945,-0.008276979438960552,-0.008875739760696888,0.0032051282469183207,0.0013736264081671834,0.001479289960116148,0.0003052503161597997,0.0004226542660035193,0.00035221187863498926,-0.025993237271904945,0.058044519275426865,0.0013736264081671834,0.001479289960116148,-0.01923076994717121,-0.0013736264081671834,-0.001479289960116148,1.751664134921893e-18,1.700842158086635e-18,2.3310346708438345e-18,-0.008276979438960552,0.0013736264081671834,0.002766998019069433,0.0004226542660035193,1.770032011295878e-17,-0.00022893772984389216,3.3881317890172014e-20,-0.00016650016186758876,-7.044238009257242e-05,3.049318610115481e-20,-0.008875739760696888,0.001479289960116148,0.0004226542660035193,0.0032339454628527164,2.054526886349201e-17,1.7673216557911504e-19,-0.0002689617977011949,-1.111484527792064e-19,-7.684623415116221e-05,-0.00021132713300175965,0.0032051282469183207,-0.01923076994717121,1.770032011295878e-17,2.054526886349201e-17,0.009615384973585606,-1.525031639730966e-18,-1.7916454962393374e-18,-8.780484979122824e-19,-8.403670605892535e-19,-1.1379082179240052e-18,0.0013736264081671834,-0.0013736264081671834,-0.00022893772984389216,1.7673216557911504e-19,-1.525031639730966e-18,0.00022893772984389216,-4.053302293135756e-20,1.6940658945086007e-21,-4.199576178989331e-21,-9.932855881370648e-21,0.001479289960116148,-0.001479289960116148,3.3881317890172014e-20,-0.0002689617977011949,-1.7916454962393374e-18,-4.053302293135756e-20,0.0002689617977011949,0.0,-8.470329472543003e-22,3.3881317890172014e-21,0.0003052503161597997,1.751664134921893e-18,-0.00016650016186758876,-1.111484527792064e-19,-8.780484979122824e-19,1.6940658945086007e-21,0.0,1.387501379213063e-05,1.4399560103323106e-20,2.117582368135751e-22,0.0004226542660035193,1.700842158086635e-18,-7.044238009257242e-05,-7.684623415116221e-05,-8.403670605892535e-19,-4.199576178989331e-21,-8.470329472543003e-22,1.4399560103323106e-20,1.2807705388695467e-05,-9.317362419797304e-21,0.00035221187863498926,2.3310346708438345e-18,3.049318610115481e-20,-0.00021132713300175965,-1.1379082179240052e-18,-9.932855881370648e-21,3.3881317890172014e-21,2.117582368135751e-22,-9.317362419797304e-21,1.9211558537790552e-05,3.0,13.0,13.0,0.056716177612543106,-0.024091294035315514,-0.007668156176805496,-0.007668156176805496,0.002958579920232296,0.0012679628562182188,0.0012679628562182188,0.0002817695203702897,0.0003622750809881836,0.0002817695203702897,-0.024091294035315514,0.053677093237638474,0.0012679628562182188,0.0012679628562182188,-0.017751479521393776,-0.0012679628562182188,-0.0012679628562182188,-4.2351647362715017e-19,-3.049318610115481e-19,-4.0657581468206416e-19,-0.007668156176805496,0.0012679628562182188,0.0025587964337319136,0.0003622750809881836,-3.283464697002957e-18,-0.00021132713300175965,-5.421010862427522e-20,-0.00015369246830232441,-6.037918137735687e-05,-4.404571325722362e-20,-0.007668156176805496,0.0012679628562182188,0.0003622750809881836,0.0025587964337319136,-3.283464697002957e-18,4.438804243840483e-21,-0.00021132713300175965,5.729537144298556e-23,-6.037918137735687e-05,-0.00015369246830232441,0.002958579920232296,-0.017751479521393776,-3.283464697002957e-18,-3.283464697002957e-18,0.008875739760696888,-5.6959032924321035e-36,6.032301234887152e-35,2.1329113173560656e-19,1.206618440794817e-19,2.1329113173560656e-19,0.0012679628562182188,-0.0012679628562182188,-0.00021132713300175965,4.438804243840483e-21,-5.6959032924321035e-36,0.00021132713300175965,-1.2136271364704238e-21,1.6940658945086007e-21,1.5893247552892488e-21,-6.079527086259e-22,0.0012679628562182188,-0.0012679628562182188,-5.421010862427522e-20,-0.00021132713300175965,6.032301234887152e-35,-1.2136271364704238e-21,0.00021132713300175965,-6.352747104407253e-22,1.1011428314305904e-20,-1.6940658945086007e-21,0.0002817695203702897,-4.2351647362715017e-19,-0.00015369246830232441,5.729537144298556e-23,2.1329113173560656e-19,1.6940658945086007e-21,-6.352747104407253e-22,1.2807705388695467e-05,1.2705494208814505e-21,-4.235164736271502e-22,0.0003622750809881836,-3.049318610115481e-19,-6.037918137735687e-05,-6.037918137735687e-05,1.206618440794817e-19,1.5893247552892488e-21,1.1011428314305904e-20,1.2705494208814505e-21,1.0063196896226145e-05,8.046812998915853e-21,0.0002817695203702897,-4.0657581468206416e-19,-4.404571325722362e-20,-0.00015369246830232441,2.1329113173560656e-19,-6.079527086259e-22,-1.6940658945086007e-21,-4.235164736271502e-22,8.046812998915853e-21,1.2807705388695467e-05,3.0,13.0,14.0,0.053126636892557144,-0.022448979318141937,-0.0071428571827709675,-0.0066915228962898254,0.002747252816334367,0.0011773940641433,0.001098901149816811,0.00026164311566390097,0.00031397174461744726,0.00022893772984389216,-0.022448979318141937,0.04992150887846947,0.0011773940641433,0.001098901149816811,-0.016483517363667488,-0.0011773940641433,-0.001098901149816811,-3.9641141931501256e-19,-1.8973538018496328e-19,-3.5236570605778894e-19,-0.0071428571827709675,0.0011773940641433,0.0023797631729394197,0.00031397174461744726,-3.0564011373153134e-18,-0.00019623234402388334,-4.404571325722362e-20,-0.00014271443069446832,-5.232862531556748e-05,2.0328790734103208e-20,-0.0066915228962898254,0.001098901149816811,0.00031397174461744726,0.00205968483351171,-2.85780024212016e-18,-7.730031904876454e-20,-0.00016906170640140772,-3.061296088450021e-21,-4.8303343646693975e-05,-0.00011446886492194608,0.002747252816334367,-0.016483517363667488,-3.0564011373153134e-18,-2.85780024212016e-18,0.008241758681833744,1.0957235277326083e-35,-2.89182802753377e-35,1.9805605459011954e-19,1.0457359475563158e-19,1.7156606076220339e-19,0.0011773940641433,-0.0011773940641433,-0.00019623234402388334,-7.730031904876454e-20,1.0957235277326083e-35,0.00019623234402388334,6.987238578205467e-20,0.0,1.3893162798036913e-21,1.8816555284007682e-22,0.001098901149816811,-0.001098901149816811,-4.404571325722362e-20,-0.00016906170640140772,-2.89182802753377e-35,6.987238578205467e-20,0.00016906170640140772,2.117582368135751e-22,-4.235164736271502e-21,1.6940658945086007e-21,0.00026164311566390097,-3.9641141931501256e-19,-0.00014271443069446832,-3.061296088450021e-21,1.9805605459011954e-19,0.0,2.117582368135751e-22,1.1892869224539027e-05,0.0,4.235164736271502e-22,0.00031397174461744726,-1.8973538018496328e-19,-5.232862531556748e-05,-4.8303343646693975e-05,1.0457359475563158e-19,1.3893162798036913e-21,-4.235164736271502e-21,0.0,8.050557880778797e-06,-3.3881317890172014e-21,0.00022893772984389216,-3.5236570605778894e-19,2.0328790734103208e-20,-0.00011446886492194608,1.7156606076220339e-19,1.8816555284007682e-22,1.6940658945086007e-21,4.235164736271502e-22,-3.3881317890172014e-21,8.805297511571553e-06,3.0,13.0,15.0,0.049964986741542816,-0.02101648412644863,-0.006684981752187014,-0.005890433210879564,0.0025641026441007853,0.001098901149816811,0.000961538462433964,0.00024420025874860585,0.00027472528745420277,0.0001885369565570727,-0.02101648412644863,0.0466575101017952,0.001098901149816811,0.000961538462433964,-0.015384615398943424,-0.001098901149816811,-0.000961538462433964,-3.7269449679189215e-19,-1.9989977555201488e-19,-2.846030702774449e-19,-0.006684981752187014,0.001098901149816811,0.002224164782091975,0.00027472528745420277,-2.858741160066939e-18,-0.00018315018678549677,-1.6940658945086007e-20,-0.00013320012658368796,-4.578754669637419e-05,-1.6940658945086007e-20,-0.005890433210879564,0.000961538462433964,0.00027472528745420277,0.0016826553037390113,-2.5101606324921927e-18,-5.706095238843606e-36,-0.00013736264372710139,4.7169643235473955e-21,-3.924646807718091e-05,-8.701705519342795e-05,0.0025641026441007853,-0.015384615398943424,-2.858741160066939e-18,-2.5101606324921927e-18,0.007692307699471712,0.0,4.035821368244239e-35,1.8485231330921254e-19,9.15018986423519e-20,1.4008209323296904e-19,0.001098901149816811,-0.001098901149816811,-0.00018315018678549677,-5.706095238843606e-36,0.0,0.00018315018678549677,4.658139406338967e-37,-1.6940658945086007e-21,-4.235164736271502e-22,-6.757855199577596e-23,0.000961538462433964,-0.000961538462433964,-1.6940658945086007e-20,-0.00013736264372710139,4.035821368244239e-35,4.658139406338967e-37,0.00013736264372710139,2.117582368135751e-22,2.964615315390051e-21,8.470329472543003e-22,0.00024420025874860585,-3.7269449679189215e-19,-0.00013320012658368796,4.7169643235473955e-21,1.8485231330921254e-19,-1.6940658945086007e-21,2.117582368135751e-22,1.1100010851805564e-05,-8.470329472543003e-22,1.0587911840678754e-22,0.00027472528745420277,-1.9989977555201488e-19,-4.578754669637419e-05,-3.924646807718091e-05,9.15018986423519e-20,-4.235164736271502e-22,2.964615315390051e-21,-8.470329472543003e-22,6.541078164445935e-06,2.964615315390051e-21,0.0001885369565570727,-2.846030702774449e-19,-1.6940658945086007e-20,-8.701705519342795e-05,1.4008209323296904e-19,-6.757855199577596e-23,8.470329472543003e-22,1.0587911840678754e-22,2.964615315390051e-21,6.215504072315525e-06,3.0,13.0,16.0,0.04715892672538757,-0.019755979999899864,-0.006282320711761713,-0.005225167144089937,0.0024038462433964014,0.001030219835229218,0.0008484162972308695,0.00022893772984389216,0.00024240465427283198,0.00015711413288954645,-0.019755979999899864,0.04379444196820259,0.001030219835229218,0.0008484162972308695,-0.014423076994717121,-0.001030219835229218,-0.0008484162972308695,6.844026213814747e-19,3.2187251995663413e-19,4.675621868843738e-19,-0.006282320711761713,0.001030219835229218,0.002087679458782077,0.00024240465427283198,6.4964089380633185e-18,-0.00017170330102089792,-1.0164395367051604e-20,-0.00012487512140069157,-4.0400776924798265e-05,-6.776263578034403e-21,-0.005225167144089937,0.0008484162972308695,0.00024240465427283198,0.0013924801023676991,5.186970861453606e-18,-3.251908981264818e-35,-0.0001131221724790521,8.0574192274756625e-22,-3.2320622267434373e-05,-6.733462942065671e-05,0.0024038462433964014,-0.014423076994717121,6.4964089380633185e-18,5.186970861453606e-18,0.0072115384973585606,-1.1261772458743547e-18,-7.419520581386265e-19,-3.465980858391864e-19,-1.614739403011736e-19,-2.3174501421378176e-19,0.001030219835229218,-0.001030219835229218,-0.00017170330102089792,-3.251908981264818e-35,-1.1261772458743547e-18,0.00017170330102089792,-2.117582368135751e-22,3.3881317890172014e-21,4.235164736271502e-22,2.8797761775545646e-23,0.0008484162972308695,-0.0008484162972308695,-1.0164395367051604e-20,-0.0001131221724790521,-7.419520581386265e-19,-2.117582368135751e-22,0.0001131221724790521,0.0,1.2705494208814505e-21,-8.470329472543003e-22,0.00022893772984389216,6.844026213814747e-19,-0.00012487512140069157,8.0574192274756625e-22,-3.465980858391864e-19,3.3881317890172014e-21,0.0,1.0406260116724297e-05,0.0,0.0,0.00024240465427283198,3.2187251995663413e-19,-4.0400776924798265e-05,-3.2320622267434373e-05,-1.614739403011736e-19,4.235164736271502e-22,1.2705494208814505e-21,0.0,5.386770226323279e-06,6.352747104407253e-22,0.00015711413288954645,4.675621868843738e-19,-6.776263578034403e-21,-6.733462942065671e-05,-2.3174501421378176e-19,2.8797761775545646e-23,-8.470329472543003e-22,0.0,6.352747104407253e-22,4.488975264393957e-06,3.0,14.0,3.0,0.16587302088737488,-0.08452381193637848,-0.02559523843228817,-0.08452381193637848,0.011904762126505375,0.004761904943734407,0.01785714365541935,0.0009920635493472219,0.004761904943734407,0.011904762126505375,-0.08452381193637848,0.20357142388820648,0.004761904943734407,0.01785714365541935,-0.0714285746216774,-0.004761904943734407,-0.01785714365541935,2.477491340994564e-18,-6.342582709040201e-18,-1.4137996329210978e-16,-0.02559523843228817,0.004761904943734407,0.008402015082538128,0.004761904943734407,6.803259030915377e-18,-0.0007326007471419871,-1.3010426069826053e-18,-0.0004960317746736109,-0.0007326007471419871,3.903127820947816e-18,-0.08452381193637848,0.01785714365541935,0.004761904943734407,0.20357142388820648,-1.4188490080779175e-16,-9.814945472653065e-18,-0.01785714365541935,-3.6354823797427115e-20,-0.004761904943734407,-0.0714285746216774,0.011904762126505375,-0.0714285746216774,6.803259030915377e-18,-1.4188490080779175e-16,0.0357142873108387,2.8189256484623115e-18,4.7538375860249145e-18,-1.1384122811097797e-18,3.676828162555865e-18,5.3923166287225477e-17,0.004761904943734407,-0.004761904943734407,-0.0007326007471419871,-9.814945472653065e-18,2.8189256484623115e-18,0.0007326007471419871,2.4002192300971572e-18,-3.3881317890172014e-20,1.8908304487438864e-19,2.7601474349052122e-18,0.01785714365541935,-0.01785714365541935,-1.3010426069826053e-18,-0.01785714365541935,4.7538375860249145e-18,2.4002192300971572e-18,0.01785714365541935,6.994582391081289e-20,-2.168404344971009e-18,1.3010426069826053e-17,0.0009920635493472219,2.477491340994564e-18,-0.0004960317746736109,-3.6354823797427115e-20,-1.1384122811097797e-18,-3.3881317890172014e-20,6.994582391081289e-20,3.815628951997496e-05,3.492537491957879e-20,-1.936322280507006e-19,0.004761904943734407,-6.342582709040201e-18,-0.0007326007471419871,-0.004761904943734407,3.676828162555865e-18,1.8908304487438864e-19,-2.168404344971009e-18,3.492537491957879e-20,0.0007326007471419871,-4.7704895589362195e-18,0.011904762126505375,-1.4137996329210978e-16,3.903127820947816e-18,-0.0714285746216774,5.3923166287225477e-17,2.7601474349052122e-18,1.3010426069826053e-17,-1.936322280507006e-19,-4.7704895589362195e-18,0.0357142873108387,3.0,14.0,4.0,0.13648809492588043,-0.06607142835855484,-0.019910713657736778,-0.05428571254014969,0.008928571827709675,0.0035714285913854837,0.010714286006987095,0.0007440476329065859,0.0028571428265422583,0.0059523810632526875,-0.06607142835855484,0.15535713732242584,0.0035714285913854837,0.010714286006987095,-0.0535714291036129,-0.0035714285913854837,-0.010714286006987095,1.9388776223649412e-19,-2.0057740190981832e-18,-2.6454533008646308e-17,-0.019910713657736778,0.0035714285913854837,0.006411401089280844,0.0028571428265422583,1.0249034038291678e-19,-0.0005494505749084055,1.8431436932253575e-18,-0.00037202381645329297,-0.00043956044828519225,4.553649124439119e-18,-0.05428571254014969,0.010714286006987095,0.0028571428265422583,0.07785714417695999,-4.767173888168862e-17,-8.118321211907414e-19,-0.0071428571827709675,4.567935877786405e-19,-0.0019047618843615055,-0.01785714365541935,0.008928571827709675,-0.0535714291036129,1.0249034038291678e-19,-4.767173888168862e-17,0.02678571455180645,-1.6805133673525319e-18,-8.665105691380865e-18,-4.0657581468206416e-20,1.0421881182102876e-18,1.5675008087792095e-17,0.0035714285913854837,-0.0035714285913854837,-0.0005494505749084055,-8.118321211907414e-19,-1.6805133673525319e-18,0.0005494505749084055,-3.2638404056568077e-19,8.635923072772e-37,7.065334121553276e-20,1.6837472041079138e-19,0.010714286006987095,-0.010714286006987095,1.8431436932253575e-18,-0.0071428571827709675,-8.665105691380865e-18,-3.2638404056568077e-19,0.0071428571827709675,-4.301258405919049e-20,-5.149960319306146e-19,-4.553649124439119e-18,0.0007440476329065859,1.9388776223649412e-19,-0.00037202381645329297,4.567935877786405e-19,-4.0657581468206416e-20,8.635923072772e-37,-4.301258405919049e-20,2.861721623048652e-05,1.1037104032831293e-20,-1.696065474392477e-19,0.0028571428265422583,-2.0057740190981832e-18,-0.00043956044828519225,-0.0019047618843615055,1.0421881182102876e-18,7.065334121553276e-20,-5.149960319306146e-19,1.1037104032831293e-20,0.00029304029885679483,-1.463672932855431e-18,0.0059523810632526875,-2.6454533008646308e-17,4.553649124439119e-18,-0.01785714365541935,1.5675008087792095e-17,1.6837472041079138e-19,-4.553649124439119e-18,-1.696065474392477e-19,-1.463672932855431e-18,0.0059523810632526875,3.0,14.0,5.0,0.11608843505382538,-0.05428571254014969,-0.016309523954987526,-0.03789115697145462,0.0071428571827709675,0.0028571428265422583,0.0071428571827709675,0.0005952381179668009,0.0019047618843615055,0.003401360474526882,-0.05428571254014969,0.1257142871618271,0.0028571428265422583,0.0071428571827709675,-0.04285714402794838,-0.0028571428265422583,-0.0071428571827709675,9.811369157274692e-19,2.6142273981768765e-18,5.421010862427522e-18,-0.016309523954987526,0.0028571428265422583,0.00518772890791297,0.0019047618843615055,1.0408340855860843e-17,-0.00043956044828519225,2.2971533529536625e-18,-0.00029761905898340046,-0.00029304029885679483,-1.2468324983583301e-18,-0.03789115697145462,0.0071428571827709675,0.0019047618843615055,0.03935374319553375,2.7755575615628914e-17,-9.75781955236954e-19,-0.0035714285913854837,1.7618285302889447e-19,-0.0009523809421807528,-0.006802720949053764,0.0071428571827709675,-0.04285714402794838,1.0408340855860843e-17,2.7755575615628914e-17,0.02142857201397419,-5.366800753803247e-18,-3.198396408832238e-18,-1.4905552946370328e-19,-1.1836198729349106e-18,-4.0115480381963664e-18,0.0028571428265422583,-0.0028571428265422583,-0.00043956044828519225,-9.75781955236954e-19,-5.366800753803247e-18,0.00043956044828519225,-3.2526065174565133e-19,-4.616329562535937e-20,0.0,2.710505431213761e-19,0.0071428571827709675,-0.0071428571827709675,2.2971533529536625e-18,-0.0035714285913854837,-3.198396408832238e-18,-3.2526065174565133e-19,0.0035714285913854837,-1.227894301631505e-19,-8.312884690231484e-20,3.2526065174565133e-19,0.0005952381179668009,9.811369157274692e-19,-0.00029761905898340046,1.7618285302889447e-19,-1.4905552946370328e-19,-4.616329562535937e-20,-1.227894301631505e-19,2.2893773348187096e-05,-2.0964065444543933e-20,3.209106640005998e-20,0.0019047618843615055,2.6142273981768765e-18,-0.00029304029885679483,-0.0009523809421807528,-1.1836198729349106e-18,0.0,-8.312884690231484e-20,-2.0964065444543933e-20,0.00014652014942839742,3.157178567595392e-19,0.003401360474526882,5.421010862427522e-18,-1.2468324983583301e-18,-0.006802720949053764,-4.0115480381963664e-18,2.710505431213761e-19,3.2526065174565133e-19,3.209106640005998e-20,3.157178567595392e-19,0.001700680237263441,3.0,14.0,6.0,0.10104875266551971,-0.046088434755802155,-0.013818027451634407,-0.02797619067132473,0.0059523810632526875,0.0023809524718672037,0.005102040711790323,0.0004960317746736109,0.0013605442363768816,0.002125850412994623,-0.046088434755802155,0.10561224818229675,0.0023809524718672037,0.005102040711790323,-0.0357142873108387,-0.0023809524718672037,-0.005102040711790323,1.3015813083565305e-18,-2.710505431213761e-18,-8.456776945386935e-18,-0.013818027451634407,0.0023809524718672037,0.004357993137091398,0.0013605442363768816,1.3417001884508117e-18,-0.00036630037357099354,-6.776263578034403e-20,-0.00024801588733680546,-0.00020931450126226991,3.7947076036992655e-19,-0.02797619067132473,0.005102040711790323,0.0013605442363768816,0.022882653400301933,-3.491130995403324e-17,-2.0599841277224584e-18,-0.0020408162381500006,2.981555974335137e-19,-0.0005442177061922848,-0.0031887756194919348,0.0059523810632526875,-0.0357142873108387,1.3417001884508117e-18,-3.491130995403324e-17,0.01785714365541935,1.2739375526704677e-18,4.046316093703195e-18,-5.200782296141404e-19,1.2505538805366296e-18,4.0228080342847445e-18,0.0023809524718672037,-0.0023809524718672037,-0.00036630037357099354,-2.0599841277224584e-18,1.2739375526704677e-18,0.00036630037357099354,6.369687763352339e-19,-1.6940658945086007e-20,5.421010862427522e-20,1.9651164376299768e-19,0.005102040711790323,-0.005102040711790323,-6.776263578034403e-20,-0.0020408162381500006,4.046316093703195e-18,6.369687763352339e-19,0.0020408162381500006,-4.0426093681313744e-20,-8.131516293641283e-20,-4.472333961502706e-19,0.0004960317746736109,1.3015813083565305e-18,-0.00024801588733680546,2.981555974335137e-19,-5.200782296141404e-19,-1.6940658945086007e-20,-4.0426093681313744e-20,1.907814475998748e-05,5.980204424338332e-21,-6.087647350311371e-20,0.0013605442363768816,-2.710505431213761e-18,-0.00020931450126226991,-0.0005442177061922848,1.2505538805366296e-18,5.421010862427522e-20,-8.131516293641283e-20,5.980204424338332e-21,8.372579759452492e-05,9.825582188149884e-20,0.002125850412994623,-8.456776945386935e-18,3.7947076036992655e-19,-0.0031887756194919348,4.0228080342847445e-18,1.9651164376299768e-19,-4.472333961502706e-19,-6.087647350311371e-20,9.825582188149884e-20,0.0006377550889737904,3.0,14.0,7.0,0.08948412537574768,-0.04005102068185806,-0.011989795602858067,-0.02151360549032688,0.005102040711790323,0.0020408162381500006,0.0038265306502580643,0.00042517005931586027,0.0010204081190750003,0.0014172336086630821,-0.04005102068185806,0.09107142686843872,0.0020408162381500006,0.0038265306502580643,-0.030612245202064514,-0.0020408162381500006,-0.0038265306502580643,4.3029273720518457e-19,6.505213034913027e-19,3.903127820947816e-18,-0.011989795602858067,0.0020408162381500006,0.003757849335670471,0.0010204081190750003,-2.2158381900172497e-18,-0.00031397174461744726,8.74138001566438e-19,-0.00021258502965793014,-0.00015698587230872363,-2.710505431213761e-20,-0.02151360549032688,0.0038265306502580643,0.0010204081190750003,0.01454081665724516,4.553649124439119e-18,3.2526065174565133e-19,-0.0012755101779475808,5.421010862427522e-20,-0.0003401360590942204,-0.001700680237263441,0.005102040711790323,-0.030612245202064514,-2.2158381900172497e-18,4.553649124439119e-18,0.015306122601032257,1.5449116849827592e-18,3.851357326443901e-19,1.3552527156068805e-20,6.108646751877708e-20,-7.846552572616765e-19,0.0020408162381500006,-0.0020408162381500006,-0.00031397174461744726,3.2526065174565133e-19,1.5449116849827592e-18,0.00031397174461744726,2.303929616531697e-19,-4.15983572433177e-20,-5.082197683525802e-20,-2.0328790734103208e-20,0.0038265306502580643,-0.0038265306502580643,8.74138001566438e-19,-0.0012755101779475808,3.851357326443901e-19,2.303929616531697e-19,0.0012755101779475808,-4.927847073693114e-20,-1.2197274440461925e-19,-7.453889935837843e-19,0.00042517005931586027,4.3029273720518457e-19,-0.00021258502965793014,5.421010862427522e-20,1.3552527156068805e-20,-4.15983572433177e-20,-4.927847073693114e-20,1.635269472899381e-05,-2.1917032440167574e-20,2.4093745297403795e-20,0.0010204081190750003,6.505213034913027e-19,-0.00015698587230872363,-0.0003401360590942204,6.108646751877708e-20,-5.082197683525802e-20,-1.2197274440461925e-19,-2.1917032440167574e-20,5.232862531556748e-05,-9.486769009248164e-20,0.0014172336086630821,3.903127820947816e-18,-2.710505431213761e-20,-0.001700680237263441,-7.846552572616765e-19,-2.0328790734103208e-20,-7.453889935837843e-19,2.4093745297403795e-20,-9.486769009248164e-20,0.00028344671591185033,3.0,14.0,8.0,0.08030754327774048,-0.03541666641831398,-0.01059027761220932,-0.01706349290907383,0.004464285913854837,0.0017857142956927419,0.0029761905316263437,0.00037202381645329297,0.0007936508045531809,0.0009920635493472219,-0.03541666641831398,0.08005952090024948,0.0017857142956927419,0.0029761905316263437,-0.02678571455180645,-0.0017857142956927419,-0.0029761905316263437,2.0667603913004928e-19,-1.0842021724855044e-18,-4.716279450311944e-18,-0.01059027761220932,0.0017857142956927419,0.0033033806830644608,0.0007936508045531809,-3.1035287187397564e-18,-0.00027472528745420277,-2.0328790734103208e-19,-0.00018601190822664648,-0.00012210012937430292,4.607859233063394e-19,-0.01706349290907383,0.0029761905316263437,0.0007936508045531809,0.009835600852966309,-2.905661822261152e-17,-3.7947076036992655e-19,-0.0008503401186317205,1.6263032587282567e-19,-0.00022675737272948027,-0.0009920635493472219,0.004464285913854837,-0.02678571455180645,-3.1035287187397564e-18,-2.905661822261152e-17,0.013392857275903225,1.8194180853058053e-18,5.964872189013787e-18,-2.371692252312041e-20,4.845527868589427e-19,2.696894381029354e-18,0.0017857142956927419,-0.0017857142956927419,-0.00027472528745420277,-3.7947076036992655e-19,1.8194180853058053e-18,0.00027472528745420277,3.9302328752599536e-19,-1.8073025582818487e-20,3.3881317890172014e-21,0.0,0.0029761905316263437,-0.0029761905316263437,-2.0328790734103208e-19,-0.0008503401186317205,5.964872189013787e-18,3.9302328752599536e-19,0.0008503401186317205,-1.4444877322428794e-20,1.3552527156068805e-20,-3.2526065174565133e-19,0.00037202381645329297,2.0667603913004928e-19,-0.00018601190822664648,1.6263032587282567e-19,-2.371692252312041e-20,-1.8073025582818487e-20,-1.4444877322428794e-20,1.430860811524326e-05,3.4824043779928104e-22,-2.15270539398529e-20,0.0007936508045531809,-1.0842021724855044e-18,-0.00012210012937430292,-0.00022675737272948027,4.845527868589427e-19,3.3881317890172014e-21,1.3552527156068805e-20,3.4824043779928104e-22,3.488575021037832e-05,-2.541098841762901e-20,0.0009920635493472219,-4.716279450311944e-18,4.607859233063394e-19,-0.0009920635493472219,2.696894381029354e-18,0.0,-3.2526065174565133e-19,-2.15270539398529e-20,-2.541098841762901e-20,0.00014172335795592517,3.0,14.0,9.0,0.07284511625766754,-0.0317460335791111,-0.009484127163887024,-0.013867244124412537,0.003968254197388887,0.0015873016091063619,0.0023809524718672037,0.0003306878206785768,0.0006349206087179482,0.0007215007208287716,-0.0317460335791111,0.0714285746216774,0.0015873016091063619,0.0023809524718672037,-0.02380952425301075,-0.0015873016091063619,-0.0023809524718672037,1.001192943654583e-18,8.402566836762659e-19,2.3344207346813204e-18,-0.009484127163887024,0.0015873016091063619,0.002947191707789898,0.0006349206087179482,9.45704427393607e-18,-0.00024420025874860585,-1.279930228066132e-33,-0.0001653439103392884,-9.76800947682932e-05,-9.272222297469431e-34,-0.013867244124412537,0.0023809524718672037,0.0006349206087179482,0.0069712428376078606,1.369801416374647e-17,4.253688654451931e-21,-0.0005952381179668009,0.0,-0.00015873015217948705,-0.0006184292142279446,0.003968254197388887,-0.02380952425301075,9.45704427393607e-18,1.369801416374647e-17,0.011904762126505375,-1.322016805389653e-18,-1.6112080397297764e-18,-4.956353010071399e-19,-4.2294210008930866e-19,-1.1672103673406602e-18,0.0015873016091063619,-0.0015873016091063619,-0.00024420025874860585,4.253688654451931e-21,-1.322016805389653e-18,0.00024420025874860585,1.7892370557477632e-34,0.0,0.0,1.2961803124814223e-34,0.0023809524718672037,-0.0023809524718672037,-1.279930228066132e-33,-0.0005952381179668009,-1.6112080397297764e-18,1.7892370557477632e-34,0.0005952381179668009,6.708000986884357e-35,5.724161002853436e-35,1.5797196518043354e-34,0.0003306878206785768,1.001192943654583e-18,-0.0001653439103392884,0.0,-4.956353010071399e-19,0.0,6.708000986884357e-35,1.2718763173324987e-05,8.470329472543003e-22,4.859489054524529e-35,0.0006349206087179482,8.402566836762659e-19,-9.76800947682932e-05,-0.00015873015217948705,-4.2294210008930866e-19,0.0,5.724161002853436e-35,8.470329472543003e-22,2.44200236920733e-05,4.1467641003356766e-35,0.0007215007208287716,2.3344207346813204e-18,-9.272222297469431e-34,-0.0006184292142279446,-1.1672103673406602e-18,1.2961803124814223e-34,1.5797196518043354e-34,4.859489054524529e-35,4.1467641003356766e-35,7.730365177849308e-05,3.0,14.0,10.0,0.06665584444999695,-0.02876623347401619,-0.008587662130594254,-0.011493506841361523,0.0035714285913854837,0.0014285714132711291,0.0019480519695207477,0.00029761905898340046,0.0005194804980419576,0.0005411255406215787,-0.02876623347401619,0.06448052078485489,0.0014285714132711291,0.0019480519695207477,-0.02142857201397419,-0.0014285714132711291,-0.0019480519695207477,1.5280474368467578e-18,4.336808689942018e-19,-1.829344666246748e-18,-0.008587662130594254,0.0014285714132711291,0.002660464495420456,0.0005194804980419576,1.4044190077280524e-17,-0.00021978022414259613,-1.7306402022805156e-19,-0.00014880952949170023,-7.992007886059582e-05,-1.3117676240098147e-18,-0.011493506841361523,0.0019480519695207477,0.0005194804980419576,0.00512445904314518,-1.5166439249221018e-18,-1.9027602543332793e-18,-0.00043290044413879514,-9.283481101907132e-19,-0.0001154401179519482,-0.000405844155466184,0.0035714285913854837,-0.02142857201397419,1.4044190077280524e-17,-1.5166439249221018e-18,0.010714286006987095,-1.4640303782776305e-18,-1.1528379829071341e-33,-7.682346881267332e-19,-3.5935290069202437e-19,4.280486479021165e-19,0.0014285714132711291,-0.0014285714132711291,-0.00021978022414259613,-1.9027602543332793e-18,-1.4640303782776305e-18,0.00021978022414259613,1.7306402022805156e-19,3.3881317890172014e-21,4.319868030996932e-20,1.4973037959657584e-19,0.0019480519695207477,-0.0019480519695207477,-1.7306402022805156e-19,-0.00043290044413879514,-1.1528379829071341e-33,1.7306402022805156e-19,0.00043290044413879514,1.504632769052528e-36,3.385423730368188e-35,1.1790388565908754e-34,0.00029761905898340046,1.5280474368467578e-18,-0.00014880952949170023,-9.283481101907132e-19,-7.682346881267332e-19,3.3881317890172014e-21,1.504632769052528e-36,1.1446886674093548e-05,3.049318610115481e-20,7.394092532368502e-20,0.0005194804980419576,4.336808689942018e-19,-7.992007886059582e-05,-0.0001154401179519482,-3.5935290069202437e-19,4.319868030996932e-20,3.385423730368188e-35,3.049318610115481e-20,1.7760017726686783e-05,3.8050847783541993e-20,0.0005411255406215787,-1.829344666246748e-18,-1.3117676240098147e-18,-0.000405844155466184,4.280486479021165e-19,1.4973037959657584e-19,1.1790388565908754e-34,7.394092532368502e-20,3.8050847783541993e-20,4.5093795051798224e-05,3.0,14.0,11.0,0.061438560485839844,-0.026298701763153076,-0.007846320047974586,-0.009681984782218933,0.003246753243729472,0.0012987012742087245,0.001623376621864736,0.00027056277031078935,0.00043290044413879514,0.0004162504046689719,-0.026298701763153076,0.058766234666109085,0.0012987012742087245,0.001623376621864736,-0.019480518996715546,-0.0012987012742087245,-0.001623376621864736,-4.1504614415460717e-19,-2.913793338554793e-19,-6.469830901198954e-19,-0.007846320047974586,0.0012987012742087245,0.002424658741801977,0.00043290044413879514,-3.3568025301119086e-18,-0.00019980019715148956,0.0,-0.00013528138515539467,-6.660006329184398e-05,-1.1148545691485745e-34,-0.009681984782218933,0.001623376621864736,0.00043290044413879514,0.0038788989186286926,-4.17211702998271e-18,-2.1422023004691407e-21,-0.0003246753185521811,1.0164395367051604e-20,-8.658008300699294e-05,-0.0002775002794805914,0.003246753243729472,-0.019480518996715546,-3.3568025301119086e-18,-4.17211702998271e-18,0.009740259498357773,0.0,0.0,2.0275988176688768e-19,1.441848056736555e-19,3.234915450599477e-19,0.0012987012742087245,-0.0012987012742087245,-0.00019980019715148956,-2.1422023004691407e-21,0.0,0.00019980019715148956,0.0,0.0,8.470329472543003e-22,0.0,0.001623376621864736,-0.001623376621864736,0.0,-0.0003246753185521811,0.0,0.0,0.0003246753185521811,0.0,0.0,-0.0,0.00027056277031078935,-4.1504614415460717e-19,-0.00013528138515539467,1.0164395367051604e-20,2.0275988176688768e-19,0.0,0.0,1.0406260116724297e-05,-1.2705494208814505e-21,6.734020709312208e-36,0.00043290044413879514,-2.913793338554793e-19,-6.660006329184398e-05,-8.658008300699294e-05,1.441848056736555e-19,8.470329472543003e-22,0.0,-1.2705494208814505e-21,1.3320013749762438e-05,4.788637108280862e-36,0.0004162504046689719,-6.469830901198954e-19,-1.1148545691485745e-34,-0.0002775002794805914,3.234915450599477e-19,0.0,-0.0,6.734020709312208e-36,4.788637108280862e-36,2.775002758426126e-05,3.0,14.0,12.0,0.05698041990399361,-0.02422161214053631,-0.007222985383123159,-0.008267922326922417,0.0029761905316263437,0.0011904762359336019,0.0013736264081671834,0.00024801588733680546,0.00036630037357099354,0.0003270538873039186,-0.02422161214053631,0.05398351699113846,0.0011904762359336019,0.0013736264081671834,-0.01785714365541935,-0.0011904762359336019,-0.0013736264081671834,7.521652571618187e-19,4.811147140404426e-19,9.893344823930228e-19,-0.007222985383123159,0.0011904762359336019,0.0022272998467087746,0.00036630037357099354,7.661740571437718e-18,-0.00018315018678549677,-6.776263578034403e-21,-0.00012400794366840273,-5.6353903346462175e-05,0.0,-0.008267922326922417,0.0013736264081671834,0.00036630037357099354,0.0030077064875513315,8.111979941934006e-18,-5.217539052803039e-21,-0.00024975024280138314,-3.5756558149256035e-21,-6.660006329184398e-05,-0.00019623234402388334,0.0029761905316263437,-0.01785714365541935,7.661740571437718e-18,8.111979941934006e-18,0.008928571827709675,-1.487268983611542e-18,-1.0140470201809273e-18,-3.7172646283065783e-19,-2.4400507166273646e-19,-5.01081820051707e-19,0.0011904762359336019,-0.0011904762359336019,-0.00018315018678549677,-5.217539052803039e-21,-1.487268983611542e-18,0.00018315018678549677,9.731147524230309e-24,-1.6940658945086007e-21,9.625656026828798e-22,-3.9077667076465177e-25,0.0013736264081671834,-0.0013736264081671834,-6.776263578034403e-21,-0.00024975024280138314,-1.0140470201809273e-18,9.731147524230309e-24,0.00024975024280138314,4.235164736271502e-22,8.470329472543003e-22,-3.3881317890172014e-21,0.00024801588733680546,7.521652571618187e-19,-0.00012400794366840273,-3.5756558149256035e-21,-3.7172646283065783e-19,-1.6940658945086007e-21,4.235164736271502e-22,9.53907237999374e-06,0.0,2.117582368135751e-22,0.00036630037357099354,4.811147140404426e-19,-5.6353903346462175e-05,-6.660006329184398e-05,-2.4400507166273646e-19,9.625656026828798e-22,8.470329472543003e-22,0.0,1.0246164492855314e-05,-8.470329472543003e-22,0.0003270538873039186,9.893344823930228e-19,0.0,-0.00019623234402388334,-5.01081820051707e-19,-3.9077667076465177e-25,-3.3881317890172014e-21,2.117582368135751e-22,-8.470329472543003e-22,1.783930383680854e-05,3.0,14.0,13.0,0.053126636892557144,-0.022448979318141937,-0.0066915228962898254,-0.0071428571827709675,0.002747252816334367,0.001098901149816811,0.0011773940641433,0.00022893772984389216,0.00031397174461744726,0.00026164311566390097,-0.022448979318141937,0.04992150887846947,0.001098901149816811,0.0011773940641433,-0.016483517363667488,-0.001098901149816811,-0.0011773940641433,-3.6253010142484055e-19,-1.7618285302889447e-19,-3.9302328752599536e-19,-0.0066915228962898254,0.001098901149816811,0.00205968483351171,0.00031397174461744726,-2.85780024212016e-18,-0.00016906170640140772,-2.710505431213761e-20,-0.00011446886492194608,-4.8303343646693975e-05,2.710505431213761e-20,-0.0071428571827709675,0.0011773940641433,0.00031397174461744726,0.0023797631729394197,-3.0564011373153134e-18,-7.059052718776701e-20,-0.00019623234402388334,4.166048303096441e-21,-5.232862531556748e-05,-0.00014271443069446832,0.002747252816334367,-0.016483517363667488,-2.85780024212016e-18,-3.0564011373153134e-18,0.008241758681833744,6.65874042674521e-35,-1.5736445041447439e-34,1.7156606076220339e-19,1.0457359475563158e-19,1.9805605459011954e-19,0.001098901149816811,-0.001098901149816811,-0.00016906170640140772,-7.059052718776701e-20,6.65874042674521e-35,0.00016906170640140772,6.426607870759702e-20,1.6940658945086007e-21,1.1286989520159559e-21,-2.2438018800195404e-22,0.0011773940641433,-0.0011773940641433,-2.710505431213761e-20,-0.00019623234402388334,-1.5736445041447439e-34,6.426607870759702e-20,0.00019623234402388334,0.0,-5.505714157152952e-21,0.0,0.00022893772984389216,-3.6253010142484055e-19,-0.00011446886492194608,4.166048303096441e-21,1.7156606076220339e-19,1.6940658945086007e-21,0.0,8.805297511571553e-06,-8.470329472543003e-22,0.0,0.00031397174461744726,-1.7618285302889447e-19,-4.8303343646693975e-05,-5.232862531556748e-05,1.0457359475563158e-19,1.1286989520159559e-21,-5.505714157152952e-21,-8.470329472543003e-22,8.050557880778797e-06,-4.235164736271502e-21,0.00026164311566390097,-3.9302328752599536e-19,2.710505431213761e-20,-0.00014271443069446832,1.9805605459011954e-19,-2.2438018800195404e-22,0.0,0.0,-4.235164736271502e-21,1.1892869224539027e-05,3.0,14.0,14.0,0.04976190626621246,-0.02091836743056774,-0.006232993211597204,-0.006232993211597204,0.0025510203558951616,0.0010204081190750003,0.0010204081190750003,0.00021258502965793014,0.0002721088530961424,0.00021258502965793014,-0.02091836743056774,0.04642857238650322,0.0010204081190750003,0.0010204081190750003,-0.015306122601032257,-0.0010204081190750003,-0.0010204081190750003,6.403569081242511e-19,3.4558944247975454e-19,6.505213034913027e-19,-0.006232993211597204,0.0010204081190750003,0.0019155546324327588,0.0002721088530961424,7.092706484450239e-18,-0.00015698587230872363,4.0657581468206416e-20,-0.00010629251482896507,-4.186289879726246e-05,-8.470329472543003e-21,-0.006232993211597204,0.0010204081190750003,0.0002721088530961424,0.0019155546324327588,7.092706484450239e-18,5.709097190264428e-20,-0.00015698587230872363,5.028144580890373e-21,-4.186289879726246e-05,-0.00010629251482896507,0.0025510203558951616,-0.015306122601032257,7.092706484450239e-18,7.092706484450239e-18,0.0076530613005161285,-1.772415821744164e-18,-1.772415821744164e-18,-3.1862268242627814e-19,-1.8126090188466044e-19,-3.1862268242627814e-19,0.0010204081190750003,-0.0010204081190750003,-0.00015698587230872363,5.709097190264428e-20,-1.772415821744164e-18,0.00015698587230872363,-5.571252064826441e-20,-3.3881317890172014e-21,-4.006440512145549e-22,-2.950903473975019e-22,0.0010204081190750003,-0.0010204081190750003,4.0657581468206416e-20,-0.00015698587230872363,-1.772415821744164e-18,-5.571252064826441e-20,0.00015698587230872363,0.0,2.541098841762901e-21,-3.3881317890172014e-21,0.00021258502965793014,6.403569081242511e-19,-0.00010629251482896507,5.028144580890373e-21,-3.1862268242627814e-19,-3.3881317890172014e-21,0.0,8.176347364496905e-06,-4.235164736271502e-22,-1.0587911840678754e-22,0.0002721088530961424,3.4558944247975454e-19,-4.186289879726246e-05,-4.186289879726246e-05,-1.8126090188466044e-19,-4.006440512145549e-22,2.541098841762901e-21,-4.235164736271502e-22,6.440446213673567e-06,1.6940658945086007e-21,0.00021258502965793014,6.505213034913027e-19,-8.470329472543003e-21,-0.00010629251482896507,-3.1862268242627814e-19,-2.950903473975019e-22,-3.3881317890172014e-21,-1.0587911840678754e-22,1.6940658945086007e-21,8.176347364496905e-06,3.0,14.0,15.0,0.04679855331778526,-0.019583333283662796,-0.005833333358168602,-0.005486694630235434,0.0023809524718672037,0.0009523809421807528,0.0008928571478463709,0.00019841270113829523,0.0002380952355451882,0.00017507003212813288,-0.019583333283662796,0.0433928556740284,0.0009523809421807528,0.0008928571478463709,-0.014285714365541935,-0.0009523809421807528,-0.0008928571478463709,-3.049318610115481e-19,-1.8295911660692887e-19,-2.371692252312041e-19,-0.005833333358168602,0.0009523809421807528,0.001790293026715517,0.0002380952355451882,-2.4880891790025934e-18,-0.00014652014942839742,-6.776263578034403e-20,-9.920635056914762e-05,-3.6630037357099354e-05,-1.6940658945086007e-20,-0.005486694630235434,0.0008928571478463709,0.0002380952355451882,0.0015648951521143317,-2.336527770496646e-18,-5.499806278121734e-20,-0.00012755101488437504,-2.3295793079483586e-21,-3.40136066370178e-05,-8.080155384959653e-05,0.0023809524718672037,-0.014285714365541935,-2.4880891790025934e-18,-2.336527770496646e-18,0.0071428571827709675,8.21170105167903e-35,6.756591721873401e-35,1.4869058771720254e-19,7.930164376674537e-20,1.3007623220019206e-19,0.0009523809421807528,-0.0009523809421807528,-0.00014652014942839742,-5.499806278121734e-20,8.21170105167903e-35,0.00014652014942839742,4.8951996120088387e-20,-1.6940658945086007e-21,3.4837137608777325e-22,-2.61445619116443e-22,0.0008928571478463709,-0.0008928571478463709,-6.776263578034403e-20,-0.00012755101488437504,6.756591721873401e-35,4.8951996120088387e-20,0.00012755101488437504,2.117582368135751e-22,2.541098841762901e-21,-1.6940658945086007e-21,0.00019841270113829523,-3.049318610115481e-19,-9.920635056914762e-05,-2.3295793079483586e-21,1.4869058771720254e-19,-1.6940658945086007e-21,2.117582368135751e-22,7.631258085893933e-06,2.117582368135751e-22,0.0,0.0002380952355451882,-1.8295911660692887e-19,-3.6630037357099354e-05,-3.40136066370178e-05,7.930164376674537e-20,3.4837137608777325e-22,2.541098841762901e-21,2.117582368135751e-22,5.2328623496578075e-06,2.541098841762901e-21,0.00017507003212813288,-2.371692252312041e-19,-1.6940658945086007e-20,-8.080155384959653e-05,1.3007623220019206e-19,-2.61445619116443e-22,-1.6940658945086007e-21,0.0,2.541098841762901e-21,5.77153923586593e-06,3.0,14.0,16.0,0.044168710708618164,-0.01840861327946186,-0.005481880158185959,-0.004866946954280138,0.0022321429569274187,0.0008928571478463709,0.0007878151373006403,0.00018601190822664648,0.0002100840356433764,0.00014589169586542994,-0.01840861327946186,0.04073004052042961,0.0008928571478463709,0.0007878151373006403,-0.013392857275903225,-0.0008928571478463709,-0.0007878151373006403,5.658180087658726e-19,2.879912020664621e-19,4.2690460541616737e-19,-0.005481880158185959,0.0008928571478463709,0.0016804197803139687,0.0002100840356433764,5.5105022921287154e-18,-0.00013736264372710139,1.0164395367051604e-20,-9.300595411332324e-05,-3.2320622267434373e-05,5.082197683525802e-21,-0.004866946954280138,0.0007878151373006403,0.0002100840356433764,0.001295018009841442,4.777257550708128e-18,2.2464981434847134e-21,-0.0001050420178216882,-1.3691242679075177e-21,-2.801120535877999e-05,-6.252501043491066e-05,0.0022321429569274187,-0.013392857275903225,5.5105022921287154e-18,4.777257550708128e-18,0.0066964286379516125,-8.365887580450527e-19,-6.397443808806555e-19,-2.7879484066064483e-19,-1.399440833176434e-19,-2.1519178598810028e-19,0.0008928571478463709,-0.0008928571478463709,-0.00013736264372710139,2.2464981434847134e-21,-8.365887580450527e-19,0.00013736264372710139,2.9539385689762024e-23,1.6940658945086007e-21,-4.721081849306513e-22,-2.717641911248852e-23,0.0007878151373006403,-0.0007878151373006403,1.0164395367051604e-20,-0.0001050420178216882,-6.397443808806555e-19,2.9539385689762024e-23,0.0001050420178216882,2.117582368135751e-22,-8.470329472543003e-22,-8.470329472543003e-22,0.00018601190822664648,5.658180087658726e-19,-9.300595411332324e-05,-1.3691242679075177e-21,-2.7879484066064483e-19,1.6940658945086007e-21,2.117582368135751e-22,7.15430405762163e-06,0.0,1.0587911840678754e-22,0.0002100840356433764,2.879912020664621e-19,-3.2320622267434373e-05,-2.801120535877999e-05,-1.399440833176434e-19,-4.721081849306513e-22,-8.470329472543003e-22,0.0,4.3094159991596825e-06,-8.470329472543003e-22,0.00014589169586542994,4.2690460541616737e-19,5.082197683525802e-21,-6.252501043491066e-05,-2.1519178598810028e-19,-2.717641911248852e-23,-8.470329472543003e-22,1.0587911840678754e-22,-8.470329472543003e-22,4.168333816778613e-06,3.0,15.0,3.0,0.15626361966133118,-0.07916666567325592,-0.022549020126461983,-0.07916666567325592,0.011111111380159855,0.004166666883975267,0.01666666753590107,0.0008169934735633433,0.004166666883975267,0.011111111380159855,-0.07916666567325592,0.19027778506278992,0.004166666883975267,0.01666666753590107,-0.06666667014360428,-0.004166666883975267,-0.01666666753590107,7.160305338469297e-18,-2.0599841277224584e-18,-1.5352302762394743e-16,-0.022549020126461983,0.004166666883975267,0.0068663363344967365,0.004166666883975267,3.617620145952483e-17,-0.0005952381179668009,9.107298248878237e-18,-0.0003770739131141454,-0.0005952381179668009,-1.0842021724855044e-17,-0.07916666567325592,0.01666666753590107,0.004166666883975267,0.19027778506278992,-1.2494440068138335e-16,-1.2330429839567649e-17,-0.01666666753590107,3.798278955993963e-19,-0.004166666883975267,-0.06666667014360428,0.011111111380159855,-0.06666667014360428,3.617620145952483e-17,-1.2494440068138335e-16,0.03333333507180214,-2.656295322589486e-18,3.712401478389014e-18,-2.4123498337802474e-18,1.5559600262319003e-18,5.152879274251723e-17,0.004166666883975267,-0.004166666883975267,-0.0005952381179668009,-1.2330429839567649e-17,-2.656295322589486e-18,0.0005952381179668009,1.0530264589814168e-18,-1.8295911660692887e-19,3.7355718800964814e-20,5.096695264531713e-18,0.01666666753590107,-0.01666666753590107,9.107298248878237e-18,-0.01666666753590107,3.712401478389014e-18,1.0530264589814168e-18,0.01666666753590107,-6.153894953101036e-19,-5.421010862427522e-19,1.474514954580286e-17,0.0008169934735633433,7.160305338469297e-18,-0.0003770739131141454,3.798278955993963e-19,-2.4123498337802474e-18,-1.8295911660692887e-19,-6.153894953101036e-19,2.6933850676869042e-05,-3.198719060969922e-20,1.883310213753043e-19,0.004166666883975267,-2.0599841277224584e-18,-0.0005952381179668009,-0.004166666883975267,1.5559600262319003e-18,3.7355718800964814e-20,-5.421010862427522e-19,-3.198719060969922e-20,0.0005952381179668009,2.8189256484623115e-18,0.011111111380159855,-1.5352302762394743e-16,-1.0842021724855044e-17,-0.06666667014360428,5.152879274251723e-17,5.096695264531713e-18,1.474514954580286e-17,1.883310213753043e-19,2.8189256484623115e-18,0.03333333507180214,3.0,15.0,4.0,0.12851715087890625,-0.06187500059604645,-0.017536764964461327,-0.050833333283662796,0.008333333767950535,0.0031250000465661287,0.009999999776482582,0.0006127451197244227,0.0024999999441206455,0.0055555556900799274,-0.06187500059604645,0.14520832896232605,0.0031250000465661287,0.009999999776482582,-0.05000000074505806,-0.0031250000465661287,-0.009999999776482582,-2.2571994953915856e-18,4.960224939121183e-18,2.8189256484623115e-17,-0.017536764964461327,0.0031250000465661287,0.005239037796854973,0.0024999999441206455,-5.9655248345170916e-18,-0.00044642857392318547,-8.673617379884035e-19,-0.00028280544211156666,-0.0003571428533177823,1.951563910473908e-18,-0.050833333283662796,0.009999999776482582,0.0024999999441206455,0.07277777791023254,7.069038531019381e-17,-1.0090922083117347e-18,-0.006666666828095913,-4.541029760411586e-19,-0.0016666667070239782,-0.01666666753590107,0.008333333767950535,-0.05000000074505806,-5.9655248345170916e-18,7.069038531019381e-17,0.02500000037252903,-1.5720931501039814e-18,-1.0744161295306346e-17,7.724940478959219e-19,-1.7446785946488828e-18,-1.4644306302965296e-17,0.0031250000465661287,-0.0031250000465661287,-0.00044642857392318547,-1.0090922083117347e-18,-1.5720931501039814e-18,0.00044642857392318547,-1.297953656081391e-19,4.404571325722362e-20,1.5198083431295146e-20,3.982698356574778e-19,0.009999999776482582,-0.009999999776482582,-8.673617379884035e-19,-0.006666666828095913,-1.0744161295306346e-17,-1.297953656081391e-19,0.006666666828095913,1.8342269964147656e-19,-1.111307226797642e-18,-1.734723475976807e-18,0.0006127451197244227,-2.2571994953915856e-18,-0.00028280544211156666,-4.541029760411586e-19,7.724940478959219e-19,4.404571325722362e-20,1.8342269964147656e-19,2.0200388462399133e-05,6.887230988119385e-21,8.394906110314653e-20,0.0024999999441206455,4.960224939121183e-18,-0.0003571428533177823,-0.0016666667070239782,-1.7446785946488828e-18,1.5198083431295146e-20,-1.111307226797642e-18,6.887230988119385e-21,0.0002380952355451882,-2.710505431213761e-18,0.0055555556900799274,2.8189256484623115e-17,1.951563910473908e-18,-0.01666666753590107,-1.4644306302965296e-17,3.982698356574778e-19,-1.734723475976807e-18,8.394906110314653e-20,-2.710505431213761e-18,0.0055555556900799274,3.0,15.0,5.0,0.10927404463291168,-0.050833333283662796,-0.014362744987010956,-0.035476189106702805,0.006666666828095913,0.0024999999441206455,0.006666666828095913,0.0004901961074210703,0.0016666667070239782,0.0031746032182127237,-0.050833333283662796,0.11749999970197678,0.0024999999441206455,0.006666666828095913,-0.03999999910593033,-0.0024999999441206455,-0.006666666828095913,-7.681101457457557e-19,5.177184384228915e-19,1.452830911130576e-17,-0.014362744987010956,0.0024999999441206455,0.004238849505782127,0.0016666667070239782,-7.15573433840433e-18,-0.0003571428533177823,-3.8963515573697816e-19,-0.0002262443449581042,-0.0002380952355451882,1.3010426069826053e-18,-0.035476189106702805,0.006666666828095913,0.0016666667070239782,0.03678571432828903,1.691355389077387e-17,4.336808689942018e-18,-0.0033333334140479565,8.131516293641283e-20,-0.0008333333535119891,-0.0063492064364254475,0.006666666828095913,-0.03999999910593033,-7.15573433840433e-18,1.691355389077387e-17,0.019999999552965164,3.06287113727155e-18,4.336808689942018e-19,2.555950611167349e-19,1.4450540278450515e-19,-3.63207727782644e-18,0.0024999999441206455,-0.0024999999441206455,-0.0003571428533177823,4.336808689942018e-18,3.06287113727155e-18,0.0003571428533177823,-4.87890977618477e-19,1.1434944787933055e-20,-1.1519648082658485e-19,-6.369687763352339e-19,0.006666666828095913,-0.006666666828095913,-3.8963515573697816e-19,-0.0033333334140479565,4.336808689942018e-19,-4.87890977618477e-19,0.0033333334140479565,6.179391373766305e-20,-2.5172232104220955e-20,-1.328147661294743e-18,0.0004901961074210703,-7.681101457457557e-19,-0.0002262443449581042,8.131516293641283e-20,2.555950611167349e-19,1.1434944787933055e-20,6.179391373766305e-20,1.6160311133717187e-05,2.964615315390051e-21,-3.748534058789129e-20,0.0016666667070239782,5.177184384228915e-19,-0.0002380952355451882,-0.0008333333535119891,1.4450540278450515e-19,-1.1519648082658485e-19,-2.5172232104220955e-20,2.964615315390051e-21,0.0001190476177725941,-8.692149586026462e-20,0.0031746032182127237,1.452830911130576e-17,1.3010426069826053e-18,-0.0063492064364254475,-3.63207727782644e-18,-6.369687763352339e-19,-1.328147661294743e-18,-3.748534058789129e-20,-8.692149586026462e-20,0.0015873016091063619,3.0,15.0,6.0,0.09509609639644623,-0.0431547611951828,-0.012167367152869701,-0.02619047649204731,0.0055555556900799274,0.0020833334419876337,0.004761904943734407,0.00040849673678167164,0.0011904762359336019,0.0019841270986944437,-0.0431547611951828,0.0987103208899498,0.0020833334419876337,0.004761904943734407,-0.03333333507180214,-0.0020833334419876337,-0.004761904943734407,3.996069834574274e-18,4.7704895589362195e-18,3.2526065174565133e-18,-0.012167367152869701,0.0020833334419876337,0.0035607190802693367,0.0011904762359336019,2.1846673775582914e-17,-0.00029761905898340046,4.858580985450667e-18,-0.0001885369565570727,-0.0001700680295471102,3.0899761915836876e-18,-0.02619047649204731,0.004761904943734407,0.0011904762359336019,0.021388888359069824,1.3877787807814457e-17,2.3852447794681098e-18,-0.0019047618843615055,7.860465750519907e-19,-0.0004761904710903764,-0.0029761905316263437,0.0055555556900799274,-0.03333333507180214,2.1846673775582914e-17,1.3877787807814457e-17,0.01666666753590107,-1.0842021724855044e-18,-5.4930487812038465e-18,-1.2502206301473473e-18,-1.0199930012191116e-18,5.561609594576516e-20,0.0020833334419876337,-0.0020833334419876337,-0.00029761905898340046,2.3852447794681098e-18,-1.0842021724855044e-18,0.00029761905898340046,-5.285485590866834e-19,-9.952637130238029e-20,-1.4568966692773966e-19,-1.3552527156068805e-19,0.004761904943734407,-0.004761904943734407,4.858580985450667e-18,-0.0019047618843615055,-5.4930487812038465e-18,-5.285485590866834e-19,0.0019047618843615055,-2.0804572097746639e-19,-4.607859233063394e-19,-4.472333961502706e-19,0.00040849673678167164,3.996069834574274e-18,-0.0001885369565570727,7.860465750519907e-19,-1.2502206301473473e-18,-9.952637130238029e-20,-2.0804572097746639e-19,1.3466925338434521e-05,-2.7082088741029327e-20,-7.120476049137592e-20,0.0011904762359336019,4.7704895589362195e-18,-0.0001700680295471102,-0.0004761904710903764,-1.0199930012191116e-18,-1.4568966692773966e-19,-4.607859233063394e-19,-2.7082088741029327e-20,6.80272132740356e-05,-6.471331717022855e-19,0.0019841270986944437,3.2526065174565133e-18,3.0899761915836876e-18,-0.0029761905316263437,5.561609594576516e-20,-1.3552527156068805e-19,-4.472333961502706e-19,-7.120476049137592e-20,-6.471331717022855e-19,0.0005952381179668009,3.0,15.0,7.0,0.084198959171772,-0.03750000149011612,-0.010556722991168499,-0.02013888955116272,0.004761904943734407,0.0017857142956927419,0.0035714285913854837,0.00035014006425626576,0.0008928571478463709,0.0013227512827143073,-0.03750000149011612,0.08511904627084732,0.0017857142956927419,0.0035714285913854837,-0.02857142873108387,-0.0017857142956927419,-0.0035714285913854837,3.4033783820677788e-18,3.74049749507499e-18,6.613633252161577e-18,-0.010556722991168499,0.0017857142956927419,0.0030702666845172644,0.0008928571478463709,2.411672207422444e-17,-0.00025510202976875007,2.0125502826762176e-18,-0.00016160310769919306,-0.00012755101488437504,1.4907779871675686e-18,-0.02013888955116272,0.0035714285913854837,0.0008928571478463709,0.013591269962489605,2.4069288229178198e-17,1.463672932855431e-18,-0.0011904762359336019,3.5236570605778894e-19,-0.00029761905898340046,-0.0015873016091063619,0.004761904943734407,-0.02857142873108387,2.411672207422444e-17,2.4069288229178198e-17,0.014285714365541935,-2.0598821777119613e-18,2.6608878293503803e-18,-1.2332799712022613e-18,-1.2747900656892802e-18,-2.550897209708898e-18,0.0017857142956927419,-0.0017857142956927419,-0.00025510202976875007,1.463672932855431e-18,-2.0598821777119613e-18,0.00025510202976875007,2.0328790734103208e-19,-6.688604405088803e-20,-7.792703114739563e-20,-1.5924219408380846e-19,0.0035714285913854837,-0.0035714285913854837,2.0125502826762176e-18,-0.0011904762359336019,2.6608878293503803e-18,2.0328790734103208e-19,0.0011904762359336019,-1.1810316764970204e-19,-1.8973538018496328e-19,-1.1519648082658485e-19,0.00035014006425626576,3.4033783820677788e-18,-0.00016160310769919306,3.5236570605778894e-19,-1.2332799712022613e-18,-6.688604405088803e-20,-1.1810316764970204e-19,1.154307847173186e-05,-8.521984639974953e-21,-2.5642702386720427e-20,0.0008928571478463709,3.74049749507499e-18,-0.00012755101488437504,-0.00029761905898340046,-1.2747900656892802e-18,-7.792703114739563e-20,-1.8973538018496328e-19,-8.521984639974953e-21,4.251700738677755e-05,-2.981555974335137e-19,0.0013227512827143073,6.613633252161577e-18,1.4907779871675686e-18,-0.0015873016091063619,-2.550897209708898e-18,-1.5924219408380846e-19,-1.1519648082658485e-19,-2.5642702386720427e-20,-2.981555974335137e-19,0.00026455026818439364,3.0,15.0,8.0,0.07555487751960754,-0.03315972164273262,-0.009323937818408012,-0.01597222313284874,0.004166666883975267,0.0015625000232830644,0.0027777778450399637,0.00030637255986221135,0.0006944444612599909,0.0009259259095415473,-0.03315972164273262,0.07482638955116272,0.0015625000232830644,0.0027777778450399637,-0.02500000037252903,-0.0015625000232830644,-0.0027777778450399637,-9.520650327138336e-19,4.87890977618477e-19,5.421010862427522e-19,-0.009323937818408012,0.0015625000232830644,0.0026988841127604246,0.0006944444612599909,-1.8431436932253575e-18,-0.00022321428696159273,-2.981555974335137e-19,-0.00014140272105578333,-9.920635056914762e-05,5.55653613398821e-19,-0.01597222313284874,0.0027777778450399637,0.0006944444612599909,0.009193121455609798,5.312590645178972e-18,7.589415207398531e-19,-0.0007936508045531809,1.6940658945086007e-19,-0.00019841270113829523,-0.0009259259095415473,0.004166666883975267,-0.02500000037252903,-1.8431436932253575e-18,5.312590645178972e-18,0.012500000186264515,-1.6903515433655079e-18,-4.808659808302479e-18,3.5914196963582334e-19,-3.036324119680156e-19,2.7459012651067294e-19,0.0015625000232830644,-0.0015625000232830644,-0.00022321428696159273,7.589415207398531e-19,-1.6903515433655079e-18,0.00022321428696159273,-2.778268066994105e-19,1.1430129530480488e-20,0.0,-6.098637220230962e-20,0.0027777778450399637,-0.0027777778450399637,-2.981555974335137e-19,-0.0007936508045531809,-4.808659808302479e-18,-2.778268066994105e-19,0.0007936508045531809,3.023734495380584e-20,0.0,-1.3552527156068805e-19,0.00030637255986221135,-9.520650327138336e-19,-0.00014140272105578333,1.6940658945086007e-19,3.5914196963582334e-19,1.1430129530480488e-20,3.023734495380584e-20,1.0100194231199566e-05,-4.174561639498488e-21,-2.000716287866213e-20,0.0006944444612599909,4.87890977618477e-19,-9.920635056914762e-05,-0.00019841270113829523,-3.036324119680156e-19,0.0,0.0,-4.174561639498488e-21,2.8344671591185033e-05,-5.759824041329242e-20,0.0009259259095415473,5.421010862427522e-19,5.55653613398821e-19,-0.0009259259095415473,2.7459012651067294e-19,-6.098637220230962e-20,-1.3552527156068805e-19,-2.000716287866213e-20,-5.759824041329242e-20,0.00013227513409219682,3.0,15.0,9.0,0.06852726638317108,-0.029722223058342934,-0.008349672891199589,-0.012979798018932343,0.003703703638166189,0.0013888889225199819,0.002222222276031971,0.00027233114815317094,0.0005555555690079927,0.0006734006456099451,-0.029722223058342934,0.06675925850868225,0.0013888889225199819,0.002222222276031971,-0.02222222276031971,-0.0013888889225199819,-0.002222222276031971,-3.9132922163148676e-19,-3.7269449679189215e-19,-1.0893963497444546e-18,-0.008349672891199589,0.0013888889225199819,0.0024078264832496643,0.0005555555690079927,-3.572919801958485e-18,-0.00019841270113829523,0.0,-0.0001256913092220202,-7.936507608974352e-05,-4.605218458957818e-19,-0.012979798018932343,0.002222222276031971,0.0005555555690079927,0.006515752989798784,-5.652845599888372e-18,7.042698938013873e-21,-0.0005555555690079927,-3.049318610115481e-19,-0.00013888889225199819,-0.0005772005533799529,0.003703703638166189,-0.02222222276031971,-3.572919801958485e-18,-5.652845599888372e-18,0.011111111380159855,-4.81482486096809e-35,0.0,2.0234079846435594e-19,1.8503717525142107e-19,5.446981748722273e-19,0.0013888889225199819,-0.0013888889225199819,-0.00019841270113829523,7.042698938013873e-21,-4.81482486096809e-35,0.00019841270113829523,0.0,-1.6940658945086007e-21,-8.470329472543003e-22,-2.667954970577406e-36,0.002222222276031971,-0.002222222276031971,0.0,-0.0005555555690079927,0.0,0.0,0.0005555555690079927,0.0,0.0,-0.0,0.00027233114815317094,-3.9132922163148676e-19,-0.0001256913092220202,-3.049318610115481e-19,2.0234079846435594e-19,-1.6940658945086007e-21,0.0,8.977950528787915e-06,1.1011428314305904e-20,2.816797170574545e-20,0.0005555555690079927,-3.7269449679189215e-19,-7.936507608974352e-05,-0.00013888889225199819,1.8503717525142107e-19,-8.470329472543003e-22,0.0,1.1011428314305904e-20,1.984126902243588e-05,1.6542557272662122e-20,0.0006734006456099451,-1.0893963497444546e-18,-4.605218458957818e-19,-0.0005772005533799529,5.446981748722273e-19,-2.667954970577406e-36,-0.0,2.816797170574545e-20,1.6542557272662122e-20,7.215006917249411e-05,3.0,15.0,10.0,0.06269979476928711,-0.026931818574666977,-0.007560160476714373,-0.010757575742900372,0.0033333334140479565,0.0012499999720603228,0.001818181830458343,0.00024509805371053517,0.00045454545761458576,0.0005050505278632045,-0.026931818574666977,0.06026514992117882,0.0012499999720603228,0.001818181830458343,-0.019999999552965164,-0.0012499999720603228,-0.001818181830458343,-3.5744790374131474e-19,-2.236166980751353e-19,-5.1516033067978295e-19,-0.007560160476714373,0.0012499999720603228,0.002173537155613303,0.00045454545761458576,-3.2307672949238883e-18,-0.00017857142665889114,-1.0813860587082875e-20,-0.0001131221724790521,-6.49350622552447e-05,-1.7823199912603853e-19,-0.010757575742900372,0.001818181830458343,0.00045454545761458576,0.004789562430232763,-4.655367110774458e-18,-8.185940900538151e-20,-0.0004040404164697975,-2.812149384884277e-19,-0.00010101010411744937,-0.0003787878667935729,0.0033333334140479565,-0.019999999552965164,-3.2307672949238883e-18,-4.655367110774458e-18,0.009999999776482582,4.81482486096809e-35,-7.752743402108002e-34,1.8210671991039005e-19,1.5139404660357312e-19,3.9951207999177344e-19,0.0012499999720603228,-0.0012499999720603228,-0.00017857142665889114,-8.185940900538151e-20,4.81482486096809e-35,0.00017857142665889114,8.6510884696663e-20,-1.6940658945086007e-21,0.0,-1.0149438056218559e-35,0.001818181830458343,-0.001818181830458343,-1.0813860587082875e-20,-0.0004040404164697975,-7.752743402108002e-34,8.6510884696663e-20,0.0004040404164697975,-4.7772090417417764e-35,-1.682156109274971e-20,-6.308085167443071e-20,0.00024509805371053517,-3.5744790374131474e-19,-0.0001131221724790521,-2.812149384884277e-19,1.8210671991039005e-19,-1.6940658945086007e-21,-4.7772090417417764e-35,8.080155566858593e-06,1.3552527156068805e-20,2.0659965093918457e-20,0.00045454545761458576,-2.236166980751353e-19,-6.49350622552447e-05,-0.00010101010411744937,1.5139404660357312e-19,0.0,-1.682156109274971e-20,1.3552527156068805e-20,1.4430014743993524e-05,-2.466833693950838e-20,0.0005050505278632045,-5.1516033067978295e-19,-1.7823199912603853e-19,-0.0003787878667935729,3.9951207999177344e-19,-1.0149438056218559e-35,-6.308085167443071e-20,2.0659965093918457e-20,-2.466833693950838e-20,4.2087540350621566e-05,3.0,15.0,11.0,0.057788290083408356,-0.024621212854981422,-0.006907308474183083,-0.00906177144497633,0.0030303029343485832,0.0011363636003807187,0.0015151514671742916,0.0002228163939435035,0.0003787878667935729,0.0003885003970935941,-0.024621212854981422,0.054924242198467255,0.0011363636003807187,0.0015151514671742916,-0.0181818176060915,-0.0011363636003807187,-0.0015151514671742916,-3.1848438816761693e-19,-2.507217523872729e-19,-6.0385089445166e-19,-0.006907308474183083,0.0011363636003807187,0.001980862347409129,0.0003787878667935729,-2.9485303747886513e-18,-0.00016233765927609056,0.0,-0.00010283834126312286,-5.411255551734939e-05,-2.567948865952431e-19,-0.00906177144497633,0.0015151514671742916,0.0003787878667935729,0.003625356126576662,-3.9023866671189684e-18,5.345595335796771e-21,-0.0003030303050763905,-2.236166980751353e-19,-7.575757626909763e-05,-0.0002590002550277859,0.0030303029343485832,-0.0181818176060915,-2.9485303747886513e-18,-3.9023866671189684e-18,0.00909090880304575,0.0,0.0,1.6555156590484497e-19,1.2616170334886142e-19,3.0192544722583e-19,0.0011363636003807187,-0.0011363636003807187,-0.00016233765927609056,5.345595335796771e-21,0.0,0.00016233765927609056,0.0,0.0,0.0,3.192424619276439e-36,0.0015151514671742916,-0.0015151514671742916,0.0,-0.0003030303050763905,0.0,0.0,0.0003030303050763905,0.0,0.0,-0.0,0.0002228163939435035,-3.1848438816761693e-19,-0.00010283834126312286,-2.236166980751353e-19,1.6555156590484497e-19,0.0,0.0,7.3455958045087755e-06,9.740878893424454e-21,1.5613468654877414e-20,0.0003787878667935729,-2.507217523872729e-19,-5.411255551734939e-05,-7.575757626909763e-05,1.2616170334886142e-19,0.0,0.0,9.740878893424454e-21,1.0822510375874117e-05,7.64126427759829e-21,0.0003885003970935941,-6.0385089445166e-19,-2.567948865952431e-19,-0.0002590002550277859,3.0192544722583e-19,3.192424619276439e-36,-0.0,1.5613468654877414e-20,7.64126427759829e-21,2.590002623037435e-05,3.0,15.0,12.0,0.053592003881931305,-0.02267628163099289,-0.006358408834785223,-0.0077380952425301075,0.0027777778450399637,0.0010416667209938169,0.0012820513220503926,0.00020424836839083582,0.00032051283051259816,0.0003052503161597997,-0.02267628163099289,0.05045406147837639,0.0010416667209938169,0.0012820513220503926,-0.01666666753590107,-0.0010416667209938169,-0.0012820513220503926,-3.083199928005653e-19,-1.9651164376299768e-19,-4.87890977618477e-19,-0.006358408834785223,0.0010416667209938169,0.0018196060555055737,0.00032051283051259816,-2.711715596449926e-18,-0.00014880952949170023,2.0328790734103208e-20,-9.426847827853635e-05,-4.578754669637419e-05,-1.2874900798265365e-19,-0.0077380952425301075,0.0012820513220503926,0.00032051283051259816,0.0028110777493566275,-3.3194855175474976e-18,-4.357633511162666e-21,-0.00023310023243539035,-1.8104566690433472e-19,-5.827505810884759e-05,-0.00018315018678549677,0.0027777778450399637,-0.01666666753590107,-2.711715596449926e-18,-3.3194855175474976e-18,0.008333333767950535,-1.8928374825241845e-35,-6.116191812683775e-35,1.5175560207944122e-19,1.067522140056858e-19,2.338381947538472e-19,0.0010416667209938169,-0.0010416667209938169,-0.00014880952949170023,-4.357633511162666e-21,-1.8928374825241845e-35,0.00014880952949170023,-4.856892142749362e-22,0.0,5.138524321155402e-22,1.4373592215961972e-22,0.0012820513220503926,-0.0012820513220503926,2.0328790734103208e-20,-0.00023310023243539035,-6.116191812683775e-35,-4.856892142749362e-22,0.00023310023243539035,0.0,-5.082197683525802e-21,0.0,0.00020424836839083582,-3.083199928005653e-19,-9.426847827853635e-05,-1.8104566690433472e-19,1.5175560207944122e-19,0.0,0.0,6.7334626692172606e-06,7.199780051661553e-21,1.2281977735187355e-20,0.00032051283051259816,-1.9651164376299768e-19,-4.578754669637419e-05,-5.827505810884759e-05,1.067522140056858e-19,5.138524321155402e-22,-5.082197683525802e-21,7.199780051661553e-21,8.325007911480498e-06,-8.046812998915853e-21,0.0003052503161597997,-4.87890977618477e-19,-1.2874900798265365e-19,-0.00018315018678549677,2.338381947538472e-19,1.4373592215961972e-22,0.0,1.2281977735187355e-20,-8.046812998915853e-21,1.6650015822960995e-05,3.0,15.0,13.0,0.049964986741542816,-0.02101648412644863,-0.005890433210879564,-0.006684981752187014,0.0025641026441007853,0.000961538462433964,0.001098901149816811,0.0001885369565570727,0.00027472528745420277,0.00024420025874860585,-0.02101648412644863,0.0466575101017952,0.000961538462433964,0.001098901149816811,-0.015384615398943424,-0.000961538462433964,-0.001098901149816811,-2.778268066994105e-19,-1.6263032587282567e-19,-3.7947076036992655e-19,-0.005890433210879564,0.000961538462433964,0.0016826553037390113,0.00027472528745420277,-2.5101606324921927e-18,-0.00013736264372710139,1.6940658945086007e-20,-8.701705519342795e-05,-3.924646807718091e-05,-1.4568966692773966e-19,-0.006684981752187014,0.001098901149816811,0.00027472528745420277,0.002224164782091975,-2.858741160066939e-18,1.0781363051884625e-20,-0.00018315018678549677,-1.4549565430000476e-19,-4.578754669637419e-05,-0.00013320012658368796,0.0025641026441007853,-0.015384615398943424,-2.5101606324921927e-18,-2.858741160066939e-18,0.007692307699471712,1.021673123349314e-35,-7.407138879416634e-35,1.4008209323296904e-19,9.15018986423519e-20,1.8485231330921254e-19,0.000961538462433964,-0.000961538462433964,-0.00013736264372710139,1.0781363051884625e-20,1.021673123349314e-35,0.00013736264372710139,-4.642813215992146e-22,8.470329472543003e-22,-6.454659350555158e-22,-7.358647247372849e-23,0.001098901149816811,-0.001098901149816811,1.6940658945086007e-20,-0.00018315018678549677,-7.407138879416634e-35,-4.642813215992146e-22,0.00018315018678549677,-2.117582368135751e-22,-2.541098841762901e-21,1.6940658945086007e-21,0.0001885369565570727,-2.778268066994105e-19,-8.701705519342795e-05,-1.4549565430000476e-19,1.4008209323296904e-19,8.470329472543003e-22,-2.117582368135751e-22,6.215504072315525e-06,4.658681209898652e-21,9.423241538204091e-21,0.00027472528745420277,-1.6263032587282567e-19,-3.924646807718091e-05,-4.578754669637419e-05,9.15018986423519e-20,-6.454659350555158e-22,-2.541098841762901e-21,4.658681209898652e-21,6.541078164445935e-06,2.117582368135751e-21,0.00024420025874860585,-3.7947076036992655e-19,-1.4568966692773966e-19,-0.00013320012658368796,1.8485231330921254e-19,-7.358647247372849e-23,1.6940658945086007e-21,9.423241538204091e-21,2.117582368135751e-21,1.1100010851805564e-05,3.0,15.0,14.0,0.04679855331778526,-0.019583333283662796,-0.005486694630235434,-0.005833333358168602,0.0023809524718672037,0.0008928571478463709,0.0009523809421807528,0.00017507003212813288,0.0002380952355451882,0.00019841270113829523,-0.019583333283662796,0.0433928556740284,0.0008928571478463709,0.0009523809421807528,-0.014285714365541935,-0.0008928571478463709,-0.0009523809421807528,-2.490276864927643e-19,-2.0667603913004928e-19,-2.846030702774449e-19,-0.005486694630235434,0.0008928571478463709,0.0015648951521143317,0.0002380952355451882,-2.336527770496646e-18,-0.00012755101488437504,-9.825582188149884e-20,-8.080155384959653e-05,-3.40136066370178e-05,-1.3213713977167085e-19,-0.005833333358168602,0.0009523809421807528,0.0002380952355451882,0.001790293026715517,-2.4880891790025934e-18,-3.9514120593625496e-20,-0.00014652014942839742,-1.4542566706536453e-19,-3.6630037357099354e-05,-9.920635056914762e-05,0.0023809524718672037,-0.014285714365541935,-2.336527770496646e-18,-2.4880891790025934e-18,0.0071428571827709675,-4.1381100397524134e-35,1.2110243563421123e-34,1.3007623220019206e-19,7.930164376674537e-20,1.4869058771720254e-19,0.0008928571478463709,-0.0008928571478463709,-0.00012755101488437504,-3.9514120593625496e-20,-4.1381100397524134e-35,0.00012755101488437504,4.516202257443234e-20,-8.470329472543003e-22,-8.855928721982869e-22,-2.8099801312433252e-24,0.0009523809421807528,-0.0009523809421807528,-9.825582188149884e-20,-0.00014652014942839742,1.2110243563421123e-34,4.516202257443234e-20,0.00014652014942839742,-2.117582368135751e-22,8.470329472543003e-21,-1.6940658945086007e-21,0.00017507003212813288,-2.490276864927643e-19,-8.080155384959653e-05,-1.4542566706536453e-19,1.3007623220019206e-19,-8.470329472543003e-22,-2.117582368135751e-22,5.77153923586593e-06,6.776263578034403e-21,7.72917564369549e-21,0.0002380952355451882,-2.0667603913004928e-19,-3.40136066370178e-05,-3.6630037357099354e-05,7.930164376674537e-20,-8.855928721982869e-22,8.470329472543003e-21,6.776263578034403e-21,5.2328623496578075e-06,3.8116482626443515e-21,0.00019841270113829523,-2.846030702774449e-19,-1.3213713977167085e-19,-9.920635056914762e-05,1.4869058771720254e-19,-2.8099801312433252e-24,-1.6940658945086007e-21,7.72917564369549e-21,3.8116482626443515e-21,7.631258085893933e-06,3.0,15.0,15.0,0.04401007667183876,-0.018333332613110542,-0.005134803708642721,-0.005134803708642721,0.002222222276031971,0.0008333333535119891,0.0008333333535119891,0.0001633986976230517,0.00020833333837799728,0.0001633986976230517,-0.018333332613110542,0.04055555537343025,0.0008333333535119891,0.0008333333535119891,-0.013333333656191826,-0.0008333333535119891,-0.0008333333535119891,4.828087799349512e-19,2.608861477543245e-19,4.811147140404426e-19,-0.005134803708642721,0.0008333333535119891,0.0014625529292970896,0.00020833333837799728,5.092591621512837e-18,-0.0001190476177725941,-1.6940658945086007e-20,-7.54147840780206e-05,-2.9761904443148524e-05,1.5924219408380846e-19,-0.005134803708642721,0.0008333333535119891,0.00020833333837799728,0.0014625529292970896,5.092591621512837e-18,-3.4106017787721636e-21,-0.0001190476177725941,2.1223254734669182e-19,-2.9761904443148524e-05,-7.54147840780206e-05,0.002222222276031971,-0.013333333656191826,5.092591621512837e-18,5.092591621512837e-18,0.006666666828095913,-7.218211703660766e-19,-7.218211703660766e-19,-2.428089684969848e-19,-1.3877787497621727e-19,-2.428089684969848e-19,0.0008333333535119891,-0.0008333333535119891,-0.0001190476177725941,-3.4106017787721636e-21,-7.218211703660766e-19,0.0001190476177725941,4.893714402756651e-22,-1.6940658945086007e-21,-3.5411317276162766e-22,5.653412066944728e-23,0.0008333333535119891,-0.0008333333535119891,-1.6940658945086007e-20,-0.0001190476177725941,-7.218211703660766e-19,4.893714402756651e-22,0.0001190476177725941,1.0587911840678754e-22,2.541098841762901e-21,1.6940658945086007e-21,0.0001633986976230517,4.828087799349512e-19,-7.54147840780206e-05,2.1223254734669182e-19,-2.428089684969848e-19,-1.6940658945086007e-21,1.0587911840678754e-22,5.386770226323279e-06,-5.293955920339377e-21,-1.249373597200093e-20,0.00020833333837799728,2.608861477543245e-19,-2.9761904443148524e-05,-2.9761904443148524e-05,-1.3877787497621727e-19,-3.5411317276162766e-22,2.541098841762901e-21,-5.293955920339377e-21,4.251700829627225e-06,2.541098841762901e-21,0.0001633986976230517,4.811147140404426e-19,1.5924219408380846e-19,-7.54147840780206e-05,-2.428089684969848e-19,5.653412066944728e-23,1.6940658945086007e-21,-1.249373597200093e-20,2.541098841762901e-21,5.386770226323279e-06,3.0,15.0,16.0,0.04153560847043991,-0.017233455553650856,-0.004825367592275143,-0.0045547387562692165,0.0020833334419876337,0.0007812500116415322,0.000735294132027775,0.00015318627993110567,0.00018382353300694376,0.00013616557407658547,-0.017233455553650856,0.038066789507865906,0.0007812500116415322,0.000735294132027775,-0.012500000186264515,-0.0007812500116415322,-0.000735294132027775,-2.270048298641525e-19,-1.1689054672109345e-19,-2.1006417091906648e-19,-0.004825367592275143,0.0007812500116415322,0.0013727847253903747,0.00018382353300694376,-2.0526253221980336e-18,-0.00011160714348079637,5.082197683525802e-21,-7.070136052789167e-05,-2.626050445542205e-05,-5.759824041329242e-20,-0.0045547387562692165,0.000735294132027775,0.00018382353300694376,0.0012103174813091755,-1.9349212433444942e-18,-4.489347887324314e-21,-9.803921420825645e-05,-1.0785284889652149e-19,-2.4509803552064113e-05,-5.835667616338469e-05,0.0020833334419876337,-0.012500000186264515,-2.0526253221980336e-18,-1.9349212433444942e-18,0.0062500000931322575,3.125119460339468e-35,2.2673060451509722e-35,1.1381670479075518e-19,6.122553725926255e-20,1.0042283475358317e-19,0.0007812500116415322,-0.0007812500116415322,-0.00011160714348079637,-4.489347887324314e-21,3.125119460339468e-35,0.00011160714348079637,1.5189193612603804e-22,8.470329472543003e-22,3.02670783203922e-22,3.07151765581067e-22,0.000735294132027775,-0.000735294132027775,5.082197683525802e-21,-9.803921420825645e-05,2.2673060451509722e-35,1.5189193612603804e-22,9.803921420825645e-05,0.0,-6.352747104407253e-22,8.470329472543003e-22,0.00015318627993110567,-2.270048298641525e-19,-7.070136052789167e-05,-1.0785284889652149e-19,1.1381670479075518e-19,8.470329472543003e-22,0.0,5.050097115599783e-06,4.446922973085077e-21,5.135137242729196e-21,0.00018382353300694376,-1.1689054672109345e-19,-2.626050445542205e-05,-2.4509803552064113e-05,6.122553725926255e-20,3.02670783203922e-22,-6.352747104407253e-22,4.446922973085077e-21,3.5014006698474986e-06,-2.117582368135751e-21,0.00013616557407658547,-2.1006417091906648e-19,-5.759824041329242e-20,-5.835667616338469e-05,1.0042283475358317e-19,3.07151765581067e-22,8.470329472543003e-22,5.135137242729196e-21,-2.117582368135751e-21,3.890444986609509e-06,3.0,16.0,3.0,0.14770561456680298,-0.07444852590560913,-0.020016340538859367,-0.07444852590560913,0.010416666977107525,0.0036764706019312143,0.015625,0.0006808278849348426,0.0036764706019312143,0.010416666977107525,-0.07444852590560913,0.17861519753932953,0.0036764706019312143,0.015625,-0.0625,-0.0036764706019312143,-0.015625,1.6833907151132976e-18,2.0599841277224584e-18,1.8214596497756474e-17,-0.020016340538859367,0.0036764706019312143,0.00568394036963582,0.0036764706019312143,7.888875268658041e-18,-0.0004901961074210703,-7.589415207398531e-19,-0.0002917833917308599,-0.0004901961074210703,-6.938893903907228e-18,-0.07444852590560913,0.015625,0.0036764706019312143,0.17861519753932953,3.4501064766153893e-17,-4.532143578810779e-20,-0.015625,-2.9773859500721042e-19,-0.0036764706019312143,-0.0625,0.010416666977107525,-0.0625,7.888875268658041e-18,3.4501064766153893e-17,0.03125,2.3310346708438345e-18,2.8167584352574226e-18,-5.963111948670274e-19,-1.2342171668362839e-18,-1.3634557830235077e-17,0.0036764706019312143,-0.0036764706019312143,-0.0004901961074210703,-4.532143578810779e-20,2.3310346708438345e-18,0.0004901961074210703,2.374544991449583e-19,-5.082197683525802e-20,-5.591366770878258e-20,7.745353487019438e-20,0.015625,-0.015625,-7.589415207398531e-19,-0.015625,2.8167584352574226e-18,2.374544991449583e-19,0.015625,-2.8689492926088793e-20,9.75781955236954e-19,1.1275702593849246e-17,0.0006808278849348426,1.6833907151132976e-18,-0.0002917833917308599,-2.9773859500721042e-19,-5.963111948670274e-19,-5.082197683525802e-20,-2.8689492926088793e-20,1.9452225387794897e-05,-2.890017800914868e-21,1.5380584677583633e-19,0.0036764706019312143,2.0599841277224584e-18,-0.0004901961074210703,-0.0036764706019312143,-1.2342171668362839e-18,-5.591366770878258e-20,9.75781955236954e-19,-2.890017800914868e-21,0.0004901961074210703,4.336808689942018e-18,0.010416666977107525,1.8214596497756474e-17,-6.938893903907228e-18,-0.0625,-1.3634557830235077e-17,7.745353487019438e-20,1.1275702593849246e-17,1.5380584677583633e-19,4.336808689942018e-18,0.03125,3.0,16.0,4.0,0.12142565101385117,-0.05818014591932297,-0.015563725493848324,-0.04779411852359772,0.0078125,0.0027573530096560717,0.00937500037252903,0.0005106209428049624,0.002205882454290986,0.0052083334885537624,-0.05818014591932297,0.13630515336990356,0.0027573530096560717,0.00937500037252903,-0.046875,-0.0027573530096560717,-0.00937500037252903,-6.79846045278438e-19,3.3068166260807885e-18,5.811323644522304e-17,-0.015563725493848324,0.0027573530096560717,0.004336484707891941,0.002205882454290986,-9.064066481343766e-18,-0.0003676470660138875,4.391018798566293e-18,-0.0002188375365221873,-0.00029411763534881175,1.2576745200831851e-17,-0.04779411852359772,0.00937500037252903,0.002205882454290986,0.06832107901573181,4.721831817455645e-17,1.2568342700169538e-17,-0.0062500000931322575,1.2499782662278693e-18,-0.00147058826405555,-0.015625,0.0078125,-0.046875,-9.064066481343766e-18,4.721831817455645e-17,0.0234375,1.1926223897340549e-18,-2.059236852757078e-17,3.5914196963582334e-19,4.825231958284673e-19,-8.802191025576828e-18,0.0027573530096560717,-0.0027573530096560717,-0.0003676470660138875,1.2568342700169538e-17,1.1926223897340549e-18,0.0003676470660138875,-1.6545058783156756e-18,3.3881317890172014e-21,-2.824772678019719e-19,-2.6645962868316086e-18,0.00937500037252903,-0.00937500037252903,4.391018798566293e-18,-0.0062500000931322575,-2.059236852757078e-17,-1.6545058783156756e-18,0.0062500000931322575,-6.507058293913873e-20,-1.1655173354219173e-18,-1.1709383462843448e-17,0.0005106209428049624,-6.79846045278438e-19,-0.0002188375365221873,1.2499782662278693e-18,3.5914196963582334e-19,3.3881317890172014e-21,-6.507058293913873e-20,1.4589169040846173e-05,-3.386835441900966e-20,-2.7367358454257004e-19,0.002205882454290986,3.3068166260807885e-18,-0.00029411763534881175,-0.00147058826405555,4.825231958284673e-19,-2.824772678019719e-19,-1.1655173354219173e-18,-3.386835441900966e-20,0.0001960784284165129,-3.3068166260807885e-18,0.0052083334885537624,5.811323644522304e-17,1.2576745200831851e-17,-0.015625,-8.802191025576828e-18,-2.6645962868316086e-18,-1.1709383462843448e-17,-2.7367358454257004e-19,-3.3068166260807885e-18,0.0052083334885537624,3.0,16.0,5.0,0.10321545600891113,-0.04779411852359772,-0.01274509821087122,-0.03335084021091461,0.0062500000931322575,0.002205882454290986,0.0062500000931322575,0.00040849673678167164,0.00147058826405555,0.0029761905316263437,-0.04779411852359772,0.11029411852359772,0.002205882454290986,0.0062500000931322575,-0.03750000149011612,-0.002205882454290986,-0.0062500000931322575,-3.2331282234884795e-19,1.2504656048556337e-19,-1.214306433183765e-17,-0.01274509821087122,0.002205882454290986,0.003508403431624174,0.00147058826405555,-2.168404344971009e-19,-0.00029411763534881175,7.318364664277155e-19,-0.00017507003212813288,-0.0001960784284165129,1.3552527156068805e-18,-0.03335084021091461,0.0062500000931322575,0.00147058826405555,0.034532561898231506,-2.2551405187698492e-17,-9.75781955236954e-19,-0.0031250000465661287,7.284483346386983e-20,-0.000735294132027775,-0.0059523810632526875,0.0062500000931322575,-0.03750000149011612,-2.168404344971009e-19,-2.2551405187698492e-17,0.01875000074505806,-7.589415207398531e-19,-1.0842021724855044e-18,5.736362484970854e-20,1.7076584106774076e-19,5.2583805365546965e-18,0.002205882454290986,-0.002205882454290986,-0.00029411763534881175,-9.75781955236954e-19,-7.589415207398531e-19,0.00029411763534881175,-5.421010862427522e-20,1.7575933655526732e-20,2.0328790734103208e-20,1.7618285302889447e-19,0.0062500000931322575,-0.0062500000931322575,7.318364664277155e-19,-0.0031250000465661287,-1.0842021724855044e-18,-5.421010862427522e-20,0.0031250000465661287,1.7813277945779765e-20,-3.917437425159524e-19,-1.8973538018496328e-19,0.00040849673678167164,-3.2331282234884795e-19,-0.00017507003212813288,7.284483346386983e-20,5.736362484970854e-20,1.7575933655526732e-20,1.7813277945779765e-20,1.1671335414575879e-05,2.752857078576476e-21,-2.9954274700902247e-20,0.00147058826405555,1.2504656048556337e-19,-0.0001960784284165129,-0.000735294132027775,1.7076584106774076e-19,2.0328790734103208e-20,-3.917437425159524e-19,2.752857078576476e-21,9.803921420825645e-05,-4.2288249138641656e-19,0.0029761905316263437,-1.214306433183765e-17,1.3552527156068805e-18,-0.0059523810632526875,5.2583805365546965e-18,1.7618285302889447e-19,-1.8973538018496328e-19,-2.9954274700902247e-20,-4.2288249138641656e-19,0.0014880952658131719,3.0,16.0,6.0,0.08980606496334076,-0.040572479367256165,-0.010795985348522663,-0.024619223549962044,0.0052083334885537624,0.0018382353009656072,0.004464285913854837,0.0003404139424674213,0.0010504202218726277,0.0018601190531626344,-0.040572479367256165,0.09265581518411636,0.0018382353009656072,0.004464285913854837,-0.03125,-0.0018382353009656072,-0.004464285913854837,1.0441222732775897e-18,1.4094628242311558e-18,-3.2526065174565133e-19,-0.010795985348522663,0.0018382353009656072,0.002947012195363641,0.0010504202218726277,3.584643432780199e-18,-0.00024509805371053517,3.4084605797513046e-18,-0.00014589169586542994,-0.00014005602861288935,-2.439454888092385e-19,-0.024619223549962044,0.004464285913854837,0.0010504202218726277,0.020078344270586967,-7.589415207398531e-18,-4.336808689942018e-19,-0.0017857142956927419,9.486769009248164e-20,-0.0004201680712867528,-0.0027901786379516125,0.0052083334885537624,-0.03125,3.584643432780199e-18,-7.589415207398531e-18,0.015625,4.336808689942018e-19,3.155555484137198e-18,-2.515687853345272e-19,7.628394025813561e-20,5.468382462132668e-19,0.0018382353009656072,-0.0018382353009656072,-0.00024509805371053517,-4.336808689942018e-19,4.336808689942018e-19,0.00024509805371053517,-3.2526065174565133e-19,-2.879912020664621e-20,-2.710505431213761e-20,1.5585406229479126e-19,0.004464285913854837,-0.004464285913854837,3.4084605797513046e-18,-0.0017857142956927419,3.155555484137198e-18,-3.2526065174565133e-19,0.0017857142956927419,-1.0556137765399061e-19,-4.675621868843738e-19,-3.9302328752599536e-19,0.0003404139424674213,1.0441222732775897e-18,-0.00014589169586542994,9.486769009248164e-20,-2.515687853345272e-19,-2.879912020664621e-20,-1.0556137765399061e-19,9.726112693897448e-06,-1.2464538273523655e-20,2.099772781806572e-20,0.0010504202218726277,1.4094628242311558e-18,-0.00014005602861288935,-0.0004201680712867528,7.628394025813561e-20,-2.710505431213761e-20,-4.675621868843738e-19,-1.2464538273523655e-20,5.602241071755998e-05,-1.0842021724855044e-19,0.0018601190531626344,-3.2526065174565133e-19,-2.439454888092385e-19,-0.0027901786379516125,5.468382462132668e-19,1.5585406229479126e-19,-3.9302328752599536e-19,2.099772781806572e-20,-1.0842021724855044e-19,0.0005580357392318547,3.0,16.0,7.0,0.07950367778539658,-0.03525472804903984,-0.009366246871650219,-0.01892944611608982,0.004464285913854837,0.0015756302746012807,0.0033482143189758062,0.0002917833917308599,0.0007878151373006403,0.0012400794075801969,-0.03525472804903984,0.07989758253097534,0.0015756302746012807,0.0033482143189758062,-0.02678571455180645,-0.0015756302746012807,-0.0033482143189758062,-1.0334067688274247e-18,-1.8431436932253575e-18,8.565197162635485e-18,-0.009366246871650219,0.0015756302746012807,0.002541016321629286,0.0007878151373006403,-1.3640618582583253e-17,-0.0002100840356433764,-5.759824041329242e-19,-0.0001250500208698213,-0.0001050420178216882,1.111307226797642e-18,-0.01892944611608982,0.0033482143189758062,0.0007878151373006403,0.012758227996528149,-6.938893903907228e-18,3.2526065174565133e-18,-0.0011160714784637094,1.6940658945086007e-19,-0.00026260505546815693,-0.0014880952658131719,0.004464285913854837,-0.02678571455180645,-1.3640618582583253e-17,-6.938893903907228e-18,0.013392857275903225,3.5914196963582334e-18,9.66940304387436e-18,3.7947076036992655e-19,1.0831006781023135e-18,-1.8659234201144554e-18,0.0015756302746012807,-0.0015756302746012807,-0.0002100840356433764,3.2526065174565133e-18,3.5914196963582334e-18,0.0002100840356433764,1.0842021724855044e-19,1.5670109524204556e-20,-3.3881317890172014e-20,-4.87890977618477e-19,0.0033482143189758062,-0.0033482143189758062,-5.759824041329242e-19,-0.0011160714784637094,9.66940304387436e-18,1.0842021724855044e-19,0.0011160714784637094,2.909360619823789e-20,-2.0328790734103208e-20,-2.303929616531697e-19,0.0002917833917308599,-1.0334067688274247e-18,-0.0001250500208698213,1.6940658945086007e-19,3.7947076036992655e-19,1.5670109524204556e-20,2.909360619823789e-20,8.336667633557227e-06,-5.555032377795726e-21,-2.4868839380760124e-20,0.0007878151373006403,-1.8431436932253575e-18,-0.0001050420178216882,-0.00026260505546815693,1.0831006781023135e-18,-3.3881317890172014e-20,-2.0328790734103208e-20,-5.555032377795726e-21,3.501400715322234e-05,-2.710505431213761e-20,0.0012400794075801969,8.565197162635485e-18,1.111307226797642e-18,-0.0014880952658131719,-1.8659234201144554e-18,-4.87890977618477e-19,-2.303929616531697e-19,-2.4868839380760124e-20,-2.710505431213761e-20,0.00024801588733680546,3.0,16.0,8.0,0.07133374363183975,-0.031173406168818474,-0.008272059261798859,-0.015012254938483238,0.00390625,0.0013786765048280358,0.0026041667442768812,0.0002553104714024812,0.0006127451197244227,0.0008680555620230734,-0.031173406168818474,0.07023590803146362,0.0013786765048280358,0.0026041667442768812,-0.0234375,-0.0013786765048280358,-0.0026041667442768812,2.608861477543245e-19,-2.168404344971009e-19,2.710505431213761e-19,-0.008272059261798859,0.0013786765048280358,0.002233601873740554,0.0006127451197244227,-2.778268066994105e-18,-0.00018382353300694376,4.675621868843738e-19,-0.00010941876826109365,-8.169934881152585e-05,7.047314121155779e-19,-0.015012254938483238,0.0026041667442768812,0.0006127451197244227,0.008629493415355682,-6.288372600415926e-18,1.7889335846010823e-18,-0.0007440476329065859,1.7618285302889447e-19,-0.00017507003212813288,-0.0008680555620230734,0.00390625,-0.0234375,-2.778268066994105e-18,-6.288372600415926e-18,0.01171875,1.937351706779328e-18,-5.674405235373954e-19,-3.9810548520952116e-20,2.3160560843117243e-19,7.346837771924879e-19,0.0013786765048280358,-0.0013786765048280358,-0.00018382353300694376,1.7889335846010823e-18,1.937351706779328e-18,0.00018382353300694376,-1.4907779871675686e-19,-9.720468373368421e-21,-4.2351647362715017e-20,-1.8634724839594607e-19,0.0026041667442768812,-0.0026041667442768812,4.675621868843738e-19,-0.0007440476329065859,-5.674405235373954e-19,-1.4907779871675686e-19,0.0007440476329065859,-2.3244395598199492e-20,3.3881317890172014e-21,-9.486769009248164e-20,0.0002553104714024812,2.608861477543245e-19,-0.00010941876826109365,1.7618285302889447e-19,-3.9810548520952116e-20,-9.720468373368421e-21,-2.3244395598199492e-20,7.294584520423086e-06,-3.490091089140382e-21,-1.7408736543040184e-20,0.0006127451197244227,-2.168404344971009e-19,-8.169934881152585e-05,-0.00017507003212813288,2.3160560843117243e-19,-4.2351647362715017e-20,3.3881317890172014e-21,-3.490091089140382e-21,2.3342670829151757e-05,-4.2351647362715017e-20,0.0008680555620230734,2.710505431213761e-19,7.047314121155779e-19,-0.0008680555620230734,7.346837771924879e-19,-1.8634724839594607e-19,-9.486769009248164e-20,-1.7408736543040184e-20,-4.2351647362715017e-20,0.00012400794366840273,3.0,16.0,9.0,0.06469309329986572,-0.027941176667809486,-0.007407407276332378,-0.01219919789582491,0.0034722222480922937,0.0012254902394488454,0.0020833334419876337,0.0002269426331622526,0.0004901961074210703,0.0006313131307251751,-0.027941176667809486,0.06266339868307114,0.0012254902394488454,0.0020833334419876337,-0.02083333395421505,-0.0012254902394488454,-0.0020833334419876337,1.0028870095490916e-18,1.6263032587282567e-19,-4.391018798566293e-18,-0.007407407276332378,0.0012254902394488454,0.00199268595315516,0.0004901961074210703,4.628188023797497e-18,-0.0001633986976230517,2.337810934421869e-19,-9.726112330099568e-05,-6.535947613883764e-05,-3.6591823321385775e-19,-0.01219919789582491,0.0020833334419876337,0.0004901961074210703,0.006116177421063185,-1.0516761073109393e-17,-5.421010862427522e-19,-0.0005208333604969084,3.049318610115481e-20,-0.00012254902685526758,-0.0005411255406215787,0.0034722222480922937,-0.02083333395421505,4.628188023797497e-18,-1.0516761073109393e-17,0.010416666977107525,2.7370780914041443e-19,2.4527061147103313e-18,-2.702035101741218e-19,-4.9984944372362515e-20,1.0110550045077465e-18,0.0012254902394488454,-0.0012254902394488454,-0.0001633986976230517,-5.421010862427522e-19,2.7370780914041443e-19,0.0001633986976230517,1.7618285302889447e-19,-3.089867262236772e-20,-1.6940658945086007e-20,5.759824041329242e-20,0.0020833334419876337,-0.0020833334419876337,2.337810934421869e-19,-0.0005208333604969084,2.4527061147103313e-18,1.7618285302889447e-19,0.0005208333604969084,-3.9589112917206524e-20,5.421010862427522e-20,4.675621868843738e-19,0.0002269426331622526,1.0028870095490916e-18,-9.726112330099568e-05,3.049318610115481e-20,-2.702035101741218e-19,-3.089867262236772e-20,-3.9589112917206524e-20,6.484075129264966e-06,-1.6409955737215575e-21,2.0624316759912333e-21,0.0004901961074210703,1.6263032587282567e-19,-6.535947613883764e-05,-0.00012254902685526758,-4.9984944372362515e-20,-1.6940658945086007e-20,5.421010862427522e-20,-1.6409955737215575e-21,1.633986903470941e-05,6.945670167485263e-20,0.0006313131307251751,-4.391018798566293e-18,-3.6591823321385775e-19,-0.0005411255406215787,1.0110550045077465e-18,5.759824041329242e-20,4.675621868843738e-19,2.0624316759912333e-21,6.945670167485263e-20,6.764069257769734e-05,3.0,16.0,10.0,0.05918746441602707,-0.025317512452602386,-0.006706773769110441,-0.010110294446349144,0.0031250000465661287,0.001102941227145493,0.001704545458778739,0.00020424836839083582,0.00040106952656060457,0.0004734848625957966,-0.025317512452602386,0.056567512452602386,0.001102941227145493,0.001704545458778739,-0.01875000074505806,-0.001102941227145493,-0.001704545458778739,-2.947674656444965e-19,-2.642742795433417e-19,-7.490851467534009e-19,-0.006706773769110441,0.001102941227145493,0.0017987649189308286,0.00040106952656060457,-2.8606372648260636e-18,-0.00014705881767440587,0.0,-8.753501606406644e-05,-5.347593469195999e-05,-1.1428591149357328e-34,-0.010110294446349144,0.001704545458778739,0.00040106952656060457,0.004495785105973482,-4.372755477821735e-18,3.084462396259691e-21,-0.0003787878667935729,6.776263578034403e-21,-8.912655903259292e-05,-0.00035511364694684744,0.0031250000465661287,-0.01875000074505806,-2.8606372648260636e-18,-4.372755477821735e-18,0.00937500037252903,-0.0,0.0,1.5063425536154902e-19,1.335829868589282e-19,3.7454257337670047e-19,0.001102941227145493,-0.001102941227145493,-0.00014705881767440587,3.084462396259691e-21,-0.0,0.00014705881767440587,0.0,-8.470329472543003e-22,-0.0,-0.0,0.001704545458778739,-0.001704545458778739,0.0,-0.0003787878667935729,0.0,0.0,0.0003787878667935729,0.0,0.0,-0.0,0.00020424836839083582,-2.947674656444965e-19,-8.753501606406644e-05,6.776263578034403e-21,1.5063425536154902e-19,-8.470329472543003e-22,0.0,5.835667707287939e-06,-8.470329472543003e-22,6.018020241262733e-36,0.00040106952656060457,-2.642742795433417e-19,-5.347593469195999e-05,-8.912655903259292e-05,1.335829868589282e-19,-0.0,0.0,-8.470329472543003e-22,1.1883541446877643e-05,5.336801391185877e-36,0.0004734848625957966,-7.490851467534009e-19,-1.1428591149357328e-34,-0.00035511364694684744,3.7454257337670047e-19,-0.0,-0.0,6.018020241262733e-36,5.336801391185877e-36,3.9457070670323446e-05,3.0,16.0,11.0,0.054547883570194244,-0.023145053535699844,-0.006127451080828905,-0.008516299538314342,0.0028409091755747795,0.0010026737581938505,0.0014204545877873898,0.00018568032828625292,0.0003342246054671705,0.0003642191004473716,-0.023145053535699844,0.05155414342880249,0.0010026737581938505,0.0014204545877873898,-0.017045455053448677,-0.0010026737581938505,-0.0014204545877873898,-2.964615315390051e-19,-2.337810934421869e-19,-5.66110210317257e-19,-0.006127451080828905,0.0010026737581938505,0.0016392921097576618,0.0003342246054671705,-2.6106992660691847e-18,-0.0001336898421868682,0.0,-7.95772866695188e-05,-4.456327951629646e-05,-8.67060187803681e-35,-0.008516299538314342,0.0014204545877873898,0.0003342246054671705,0.0034029490780085325,-3.6654449165562164e-18,-5.862500419801801e-21,-0.0002840909000951797,0.0,-6.68449210934341e-05,-0.0002428127481834963,0.0028409091755747795,-0.017045455053448677,-2.6106992660691847e-18,-3.6654449165562164e-18,0.008522727526724339,2.407412430484045e-35,0.0,1.3694022862194536e-19,1.1131914925342496e-19,2.830551051586285e-19,0.0010026737581938505,-0.0010026737581938505,-0.0001336898421868682,-5.862500419801801e-21,2.407412430484045e-35,0.0001336898421868682,0.0,8.470329472543003e-22,1.2705494208814505e-21,0.0,0.0014204545877873898,-0.0014204545877873898,0.0,-0.0002840909000951797,0.0,0.0,0.0002840909000951797,0.0,0.0,-0.0,0.00018568032828625292,-2.964615315390051e-19,-7.95772866695188e-05,0.0,1.3694022862194536e-19,8.470329472543003e-22,0.0,5.305152171786176e-06,0.0,4.548031336938587e-36,0.0003342246054671705,-2.337810934421869e-19,-4.456327951629646e-05,-6.68449210934341e-05,1.1131914925342496e-19,1.2705494208814505e-21,0.0,0.0,8.912656085158233e-06,3.6971094582719347e-36,0.0003642191004473716,-5.66110210317257e-19,-8.67060187803681e-35,-0.0002428127481834963,2.830551051586285e-19,0.0,-0.0,4.548031336938587e-36,3.6971094582719347e-36,2.428127481834963e-05,3.0,16.0,12.0,0.05058439075946808,-0.02131645940244198,-0.005640397313982248,-0.00727213965728879,0.0026041667442768812,0.0009191176504828036,0.0012019231216982007,0.00017020697123371065,0.00028280544211156666,0.0002861721732188016,-0.02131645940244198,0.04735812544822693,0.0009191176504828036,0.0012019231216982007,-0.015625,-0.0009191176504828036,-0.0012019231216982007,5.099138342470888e-19,3.8285889215894375e-19,8.768932367892755e-19,-0.005640397313982248,0.0009191176504828036,0.001505826716311276,0.00028280544211156666,5.672743843113641e-18,-0.00012254902685526758,-1.1274760494396702e-33,-7.294584793271497e-05,-3.77073920390103e-05,-3.1836099470199733e-34,-0.00727213965728879,0.0012019231216982007,0.00028280544211156666,0.0026385991368442774,7.788568866038023e-18,2.2553214706680763e-21,-0.00021853146608918905,0.0,-5.141917063156143e-05,-0.00017170330102089792,0.0026041667442768812,-0.015625,5.672743843113641e-18,7.788568866038023e-18,0.0078125,-8.707632080647982e-19,-1.5527594576467795e-18,-2.5105709657748073e-19,-1.8838626153058636e-19,-4.384466183946378e-19,0.0009191176504828036,-0.0009191176504828036,-0.00012254902685526758,2.2553214706680763e-21,-8.707632080647982e-19,0.00012254902685526758,1.7306697716335957e-34,-1.6940658945086007e-21,-8.470329472543003e-22,4.886824463927806e-35,0.0012019231216982007,-0.0012019231216982007,-1.1274760494396702e-33,-0.00021853146608918905,-1.5527594576467795e-18,1.7306697716335957e-34,0.00021853146608918905,4.989840357771181e-35,3.744237354252256e-35,8.71426678660068e-35,0.00017020697123371065,5.099138342470888e-19,-7.294584793271497e-05,0.0,-2.5105709657748073e-19,-1.6940658945086007e-21,4.989840357771181e-35,4.863056346948724e-06,-2.117582368135751e-22,1.4089615625073505e-35,0.00028280544211156666,3.8285889215894375e-19,-3.77073920390103e-05,-5.141917063156143e-05,-1.8838626153058636e-19,-8.470329472543003e-22,3.744237354252256e-35,-2.117582368135751e-22,6.8558892962755635e-06,1.0572456027861119e-35,0.0002861721732188016,8.768932367892755e-19,-3.1836099470199733e-34,-0.00017170330102089792,-4.384466183946378e-19,4.886824463927806e-35,8.71426678660068e-35,1.4089615625073505e-35,1.0572456027861119e-35,1.5609390175086446e-05,3.0,16.0,13.0,0.04715892672538757,-0.019755979999899864,-0.005225167144089937,-0.006282320711761713,0.0024038462433964014,0.0008484162972308695,0.001030219835229218,0.00015711413288954645,0.00024240465427283198,0.00022893772984389216,-0.019755979999899864,0.04379444196820259,0.0008484162972308695,0.001030219835229218,-0.014423076994717121,-0.0008484162972308695,-0.001030219835229218,4.70950318673391e-19,3.4220131069073734e-19,6.776263578034403e-19,-0.005225167144089937,0.0008484162972308695,0.0013924801023676991,0.00024240465427283198,5.186970861453606e-18,-0.0001131221724790521,1.0164395367051604e-20,-6.733462942065671e-05,-3.2320622267434373e-05,1.1858461261560205e-20,-0.006282320711761713,0.001030219835229218,0.00024240465427283198,0.002087679458782077,6.4964089380633185e-18,7.243093134927647e-21,-0.00017170330102089792,1.0529884999539124e-21,-4.0400776924798265e-05,-0.00012487512140069157,0.0024038462433964014,-0.014423076994717121,5.186970861453606e-18,6.4964089380633185e-18,0.0072115384973585606,-7.419520581386265e-19,-1.1261772458743547e-18,-2.3174501421378176e-19,-1.614739403011736e-19,-3.465980858391864e-19,0.0008484162972308695,-0.0008484162972308695,-0.0001131221724790521,7.243093134927647e-21,-7.419520581386265e-19,0.0001131221724790521,-1.7219900811840354e-22,0.0,-5.636848133636749e-22,-4.165299932843763e-22,0.001030219835229218,-0.001030219835229218,1.0164395367051604e-20,-0.00017170330102089792,-1.1261772458743547e-18,-1.7219900811840354e-22,0.00017170330102089792,2.117582368135751e-22,-1.2705494208814505e-21,0.0,0.00015711413288954645,4.70950318673391e-19,-6.733462942065671e-05,1.0529884999539124e-21,-2.3174501421378176e-19,0.0,2.117582368135751e-22,4.488975264393957e-06,-2.117582368135751e-22,-2.117582368135751e-22,0.00024240465427283198,3.4220131069073734e-19,-3.2320622267434373e-05,-4.0400776924798265e-05,-1.614739403011736e-19,-5.636848133636749e-22,-1.2705494208814505e-21,-2.117582368135751e-22,5.386770226323279e-06,-1.6940658945086007e-21,0.00022893772984389216,6.776263578034403e-19,1.1858461261560205e-20,-0.00012487512140069157,-3.465980858391864e-19,-4.165299932843763e-22,0.0,-2.117582368135751e-22,-1.6940658945086007e-21,1.0406260116724297e-05,3.0,16.0,14.0,0.044168710708618164,-0.01840861327946186,-0.004866946954280138,-0.005481880158185959,0.0022321429569274187,0.0007878151373006403,0.0008928571478463709,0.00014589169586542994,0.0002100840356433764,0.00018601190822664648,-0.01840861327946186,0.04073004052042961,0.0007878151373006403,0.0008928571478463709,-0.013392857275903225,-0.0007878151373006403,-0.0008928571478463709,4.3029273720518457e-19,2.812149384884277e-19,5.692061405548898e-19,-0.004866946954280138,0.0007878151373006403,0.001295018009841442,0.0002100840356433764,4.777257550708128e-18,-0.0001050420178216882,3.3881317890172014e-21,-6.252501043491066e-05,-2.801120535877999e-05,-1.6940658945086007e-21,-0.005481880158185959,0.0008928571478463709,0.0002100840356433764,0.0016804197803139687,5.5105022921287154e-18,5.8301272848128605e-21,-0.00013736264372710139,5.135867892010499e-21,-3.2320622267434373e-05,-9.300595411332324e-05,0.0022321429569274187,-0.013392857275903225,4.777257550708128e-18,5.5105022921287154e-18,0.0066964286379516125,-6.397443808806555e-19,-8.365887580450527e-19,-2.1519178598810028e-19,-1.399440833176434e-19,-2.7879484066064483e-19,0.0007878151373006403,-0.0007878151373006403,-0.0001050420178216882,5.8301272848128605e-21,-6.397443808806555e-19,0.0001050420178216882,-2.648141435341581e-22,-8.470329472543003e-22,-5.3565114541637e-22,-2.018147019012494e-22,0.0008928571478463709,-0.0008928571478463709,3.3881317890172014e-21,-0.00013736264372710139,-8.365887580450527e-19,-2.648141435341581e-22,0.00013736264372710139,-2.117582368135751e-22,4.235164736271502e-22,8.470329472543003e-22,0.00014589169586542994,4.3029273720518457e-19,-6.252501043491066e-05,5.135867892010499e-21,-2.1519178598810028e-19,-8.470329472543003e-22,-2.117582368135751e-22,4.168333816778613e-06,-4.235164736271502e-22,-1.0587911840678754e-22,0.0002100840356433764,2.812149384884277e-19,-2.801120535877999e-05,-3.2320622267434373e-05,-1.399440833176434e-19,-5.3565114541637e-22,4.235164736271502e-22,-4.235164736271502e-22,4.3094159991596825e-06,6.352747104407253e-22,0.00018601190822664648,5.692061405548898e-19,-1.6940658945086007e-21,-9.300595411332324e-05,-2.7879484066064483e-19,-2.018147019012494e-22,8.470329472543003e-22,-1.0587911840678754e-22,6.352747104407253e-22,7.15430405762163e-06,3.0,16.0,15.0,0.04153560847043991,-0.017233455553650856,-0.0045547387562692165,-0.004825367592275143,0.0020833334419876337,0.000735294132027775,0.0007812500116415322,0.00013616557407658547,0.00018382353300694376,0.00015318627993110567,-0.017233455553650856,0.038066789507865906,0.000735294132027775,0.0007812500116415322,-0.012500000186264515,-0.000735294132027775,-0.0007812500116415322,-1.9651164376299768e-19,-9.825582188149884e-20,-2.303929616531697e-19,-0.0045547387562692165,0.000735294132027775,0.0012103174813091755,0.00018382353300694376,-1.9349212433444942e-18,-9.803921420825645e-05,2.879912020664621e-20,-5.835667616338469e-05,-2.4509803552064113e-05,2.202285662861181e-20,-0.004825367592275143,0.0007812500116415322,0.00018382353300694376,0.0013727847253903747,-2.0526253221980336e-18,2.3814018905970573e-21,-0.00011160714348079637,2.688241873104832e-21,-2.626050445542205e-05,-7.070136052789167e-05,0.0020833334419876337,-0.012500000186264515,-1.9349212433444942e-18,-2.0526253221980336e-18,0.0062500000931322575,-2.763486199737424e-35,-7.802298983778556e-35,1.0042283475358317e-19,6.122553725926255e-20,1.1381670479075518e-19,0.000735294132027775,-0.000735294132027775,-9.803921420825645e-05,2.3814018905970573e-21,-2.763486199737424e-35,9.803921420825645e-05,-1.9360753188284932e-22,-8.470329472543003e-22,1.6620352639920454e-22,-3.7427345351674964e-22,0.0007812500116415322,-0.0007812500116415322,2.879912020664621e-20,-0.00011160714348079637,-7.802298983778556e-35,-1.9360753188284932e-22,0.00011160714348079637,-2.117582368135751e-22,-4.0234064994579266e-21,-8.470329472543003e-22,0.00013616557407658547,-1.9651164376299768e-19,-5.835667616338469e-05,2.688241873104832e-21,1.0042283475358317e-19,-8.470329472543003e-22,-2.117582368135751e-22,3.890444986609509e-06,0.0,-2.117582368135751e-22,0.00018382353300694376,-9.825582188149884e-20,-2.4509803552064113e-05,-2.626050445542205e-05,6.122553725926255e-20,1.6620352639920454e-22,-4.0234064994579266e-21,0.0,3.5014006698474986e-06,-2.541098841762901e-21,0.00015318627993110567,-2.303929616531697e-19,2.202285662861181e-20,-7.070136052789167e-05,1.1381670479075518e-19,-3.7427345351674964e-22,-8.470329472543003e-22,-2.117582368135751e-22,-2.541098841762901e-21,5.050097115599783e-06,3.0,16.0,16.0,0.039199165999889374,-0.016199449077248573,-0.004280204884707928,-0.004280204884707928,0.001953125,0.0006893382524140179,0.0006893382524140179,0.0001276552357012406,0.00016219723329413682,0.0001276552357012406,-0.016199449077248573,0.035730697214603424,0.0006893382524140179,0.0006893382524140179,-0.01171875,-0.0006893382524140179,-0.0006893382524140179,3.6761229910836635e-19,2.354751593366955e-19,3.8624702394796095e-19,-0.004280204884707928,0.0006893382524140179,0.0011360242497175932,0.00016219723329413682,4.1245342924262096e-18,-9.191176650347188e-05,2.202285662861181e-20,-5.470938413054682e-05,-2.1626297893817537e-05,1.3552527156068805e-20,-0.004280204884707928,0.0006893382524140179,0.00016219723329413682,0.0011360242497175932,4.1245342924262096e-18,-3.941375870528095e-21,-9.191176650347188e-05,-2.8232785022589386e-21,-2.1626297893817537e-05,-5.470938413054682e-05,0.001953125,-0.01171875,4.1245342924262096e-18,4.1245342924262096e-18,0.005859375,-4.898042980741004e-19,-4.898042980741004e-19,-1.88292815970762e-19,-1.0804505852901497e-19,-1.88292815970762e-19,0.0006893382524140179,-0.0006893382524140179,-9.191176650347188e-05,-3.941375870528095e-21,-4.898042980741004e-19,9.191176650347188e-05,-1.046334817938946e-22,1.6940658945086007e-21,7.103060100613586e-22,2.7060361896112407e-23,0.0006893382524140179,-0.0006893382524140179,2.202285662861181e-20,-9.191176650347188e-05,-4.898042980741004e-19,-1.046334817938946e-22,9.191176650347188e-05,0.0,-2.964615315390051e-21,0.0,0.0001276552357012406,3.6761229910836635e-19,-5.470938413054682e-05,-2.8232785022589386e-21,-1.88292815970762e-19,1.6940658945086007e-21,0.0,3.647292260211543e-06,4.235164736271502e-22,0.0,0.00016219723329413682,2.354751593366955e-19,-2.1626297893817537e-05,-2.1626297893817537e-05,-1.0804505852901497e-19,7.103060100613586e-22,-2.964615315390051e-21,4.235164736271502e-22,2.883506340367603e-06,-1.6940658945086007e-21,0.0001276552357012406,3.8624702394796095e-19,1.3552527156068805e-20,-5.470938413054682e-05,-1.88292815970762e-19,2.7060361896112407e-23,0.0,0.0,-1.6940658945086007e-21,3.647292260211543e-06,4.0,3.0,3.0,0.42916667461395264,-0.21666666865348816,-0.26249998807907104,-0.26249998807907104,0.02777777798473835,0.05000000074505806,0.05000000074505806,0.0416666679084301,0.0625,0.0416666679084301,-0.21666666865348816,0.33888888359069824,0.05000000074505806,0.05000000074505806,-0.0833333358168602,-0.03333333507180214,-0.03333333507180214,0.0,0.0,-0.0,-0.26249998807907104,0.05000000074505806,0.6791666746139526,0.0625,2.775557602921922e-18,-0.05000000074505806,6.797283788363024e-19,-0.25,-0.0625,2.7755575615628914e-16,-0.26249998807907104,0.05000000074505806,0.0625,0.6791666746139526,1.69932097294015e-18,6.797283788363024e-19,-0.05000000074505806,3.3306690738754696e-16,-0.0625,-0.25,0.02777777798473835,-0.0833333358168602,2.775557602921922e-18,1.69932097294015e-18,0.02777777798473835,-1.850371804212999e-18,-1.1328806141609079e-18,0.0,-0.0,-0.0,0.05000000074505806,-0.03333333507180214,-0.05000000074505806,6.797283788363024e-19,-1.850371804212999e-18,0.03333333507180214,-4.531522353246055e-19,0.0,-0.0,-0.0,0.05000000074505806,-0.03333333507180214,6.797283788363024e-19,-0.05000000074505806,-1.1328806141609079e-18,-4.531522353246055e-19,0.03333333507180214,0.0,0.0,-0.0,0.0416666679084301,0.0,-0.25,3.3306690738754696e-16,0.0,0.0,0.0,0.125,-5.551115123125783e-17,-1.3877787807814457e-16,0.0625,0.0,-0.0625,-0.0625,-0.0,-0.0,0.0,-5.551115123125783e-17,0.0625,6.162975822039155e-32,0.0416666679084301,-0.0,2.7755575615628914e-16,-0.25,-0.0,-0.0,-0.0,-1.3877787807814457e-16,6.162975822039155e-32,0.125,4.0,3.0,4.0,0.3591666519641876,-0.17000000178813934,-0.20624999701976776,-0.17000000178813934,0.02083333395421505,0.03750000149011612,0.029999999329447746,0.03125,0.03750000149011612,0.02083333395421505,-0.17000000178813934,0.2591666579246521,0.03750000149011612,0.029999999329447746,-0.0625,-0.02500000037252903,-0.019999999552965164,8.075281603229368e-34,-3.9893062371993695e-19,-2.6020852139652106e-18,-0.20624999701976776,0.03750000149011612,0.518750011920929,0.03750000149011612,-3.526022797129791e-20,-0.03750000149011612,0.0,-0.1875,-0.03750000149011612,9.71445146547012e-17,-0.17000000178813934,0.029999999329447746,0.03750000149011612,0.2591666579246521,-1.0113320066153752e-18,-0.0,-0.019999999552965164,1.7902345742685057e-16,-0.02500000037252903,-0.0625,0.02083333395421505,-0.0625,-3.526022797129791e-20,-1.0113320066153752e-18,0.02083333395421505,0.0,8.74563689389173e-19,6.36432707591097e-34,2.350681864753194e-20,-9.918992851292142e-20,0.03750000149011612,-0.02500000037252903,-0.03750000149011612,-0.0,0.0,0.02500000037252903,0.0,0.0,0.0,0.0,0.029999999329447746,-0.019999999552965164,0.0,-0.019999999552965164,8.74563689389173e-19,0.0,0.013333333656191826,0.0,4.336808689942018e-19,8.673617379884035e-19,0.03125,8.075281603229368e-34,-0.1875,1.7902345742685057e-16,6.36432707591097e-34,0.0,0.0,0.09375,-3.3306692062243676e-17,-4.85722573273506e-17,0.03750000149011612,-3.9893062371993695e-19,-0.03750000149011612,-0.02500000037252903,2.350681864753194e-20,0.0,4.336808689942018e-19,-3.3306692062243676e-17,0.02500000037252903,0.0,0.02083333395421505,-2.6020852139652106e-18,9.71445146547012e-17,-0.0625,-9.918992851292142e-20,0.0,8.673617379884035e-19,-4.85722573273506e-17,0.0,0.02083333395421505,4.0,3.0,5.0,0.3088095188140869,-0.14000000059604645,-0.17000000178813934,-0.1192857176065445,0.01666666753590107,0.029999999329447746,0.019999999552965164,0.02500000037252903,0.02500000037252903,0.011904762126505375,-0.14000000059604645,0.20999999344348907,0.029999999329447746,0.019999999552965164,-0.05000000074505806,-0.019999999552965164,-0.013333333656191826,-1.0785207688568521e-32,4.336808689942018e-19,-4.336808689942018e-18,-0.17000000178813934,0.029999999329447746,0.41999998688697815,0.02500000037252903,0.0,-0.029999999329447746,0.0,-0.15000000596046448,-0.02500000037252903,-2.2551405187698492e-17,-0.1192857176065445,0.019999999552965164,0.02500000037252903,0.13107143342494965,-0.0,-0.0,-0.009999999776482582,-4.75809872423242e-17,-0.012500000186264515,-0.02380952425301075,0.01666666753590107,-0.05000000074505806,0.0,-0.0,0.01666666753590107,0.0,0.0,0.0,0.0,0.0,0.029999999329447746,-0.019999999552965164,-0.029999999329447746,-0.0,0.0,0.019999999552965164,0.0,0.0,0.0,0.0,0.019999999552965164,-0.013333333656191826,0.0,-0.009999999776482582,0.0,0.0,0.006666666828095913,5.3926038442842604e-33,-2.168404344971009e-19,2.3852447794681098e-18,0.02500000037252903,-1.0785207688568521e-32,-0.15000000596046448,-4.75809872423242e-17,0.0,0.0,5.3926038442842604e-33,0.07500000298023224,0.0,1.189524681058105e-17,0.02500000037252903,4.336808689942018e-19,-0.02500000037252903,-0.012500000186264515,0.0,0.0,-2.168404344971009e-19,0.0,0.012500000186264515,-4.336808689942018e-19,0.011904762126505375,-4.336808689942018e-18,-2.2551405187698492e-17,-0.02380952425301075,0.0,0.0,2.3852447794681098e-18,1.189524681058105e-17,-4.336808689942018e-19,0.0059523810632526875,4.0,3.0,6.0,0.2708333432674408,-0.1190476194024086,-0.14464285969734192,-0.08839285373687744,0.013888888992369175,0.02500000037252903,0.014285714365541935,0.02083333395421505,0.01785714365541935,0.0074404762126505375,-0.1190476194024086,0.1765872985124588,0.02500000037252903,0.014285714365541935,-0.0416666679084301,-0.01666666753590107,-0.009523809887468815,6.162975822039155e-33,0.0,-1.3010426069826053e-18,-0.14464285969734192,0.02500000037252903,0.3529762029647827,0.01785714365541935,0.0,-0.02500000037252903,0.0,-0.125,-0.01785714365541935,2.7321894746634712e-17,-0.08839285373687744,0.014285714365541935,0.01785714365541935,0.07627975940704346,-0.0,-0.0,-0.0057142856530845165,8.083811133354125e-17,-0.0071428571827709675,-0.01116071455180645,0.013888888992369175,-0.0416666679084301,0.0,-0.0,0.013888888992369175,0.0,0.0,0.0,0.0,0.0,0.02500000037252903,-0.01666666753590107,-0.02500000037252903,-0.0,0.0,0.01666666753590107,0.0,0.0,0.0,0.0,0.014285714365541935,-0.009523809887468815,0.0,-0.0057142856530845165,0.0,0.0,0.003809523768723011,-3.851859888774472e-33,0.0,6.505213034913027e-19,0.02083333395421505,6.162975822039155e-33,-0.125,8.083811133354125e-17,0.0,0.0,-3.851859888774472e-33,0.0625,-1.2688263209474413e-17,-1.3629970286557858e-17,0.01785714365541935,0.0,-0.01785714365541935,-0.0071428571827709675,0.0,0.0,0.0,-1.2688263209474413e-17,0.0071428571827709675,2.168404344971009e-19,0.0074404762126505375,-1.3010426069826053e-18,2.7321894746634712e-17,-0.01116071455180645,0.0,0.0,6.505213034913027e-19,-1.3629970286557858e-17,2.168404344971009e-19,0.0022321429569274187,4.0,3.0,7.0,0.24117062985897064,-0.10357142984867096,-0.12589286267757416,-0.06815475970506668,0.011904762126505375,0.02142857201397419,0.010714286006987095,0.01785714365541935,0.013392857275903225,0.004960317630320787,-0.10357142984867096,0.15238095819950104,0.02142857201397419,0.010714286006987095,-0.0357142873108387,-0.014285714365541935,-0.0071428571827709675,2.0816681711721685e-17,-4.163336342344337e-17,-1.1519648082658485e-17,-0.12589286267757416,0.02142857201397419,0.30446428060531616,0.013392857275903225,-8.413408858487514e-17,-0.02142857201397419,-2.5804011705155006e-17,-0.1071428582072258,-0.013392857275903225,-2.5370330836160804e-17,-0.06815475970506668,0.010714286006987095,0.013392857275903225,0.04851190373301506,-5.941427905220564e-17,-1.6479873021779667e-17,-0.0035714285913854837,-6.331740687315346e-17,-0.004464285913854837,-0.0059523810632526875,0.011904762126505375,-0.0357142873108387,-8.413408858487514e-17,-5.941427905220564e-17,0.011904762126505375,2.9220214695439806e-17,1.9323805994520682e-17,3.6693949107763103e-19,1.1192087868809936e-17,2.0599841277224584e-18,0.02142857201397419,-0.014285714365541935,-0.02142857201397419,-1.6479873021779667e-17,2.9220214695439806e-17,0.014285714365541935,2.2768245622195593e-18,-3.1008182133085427e-17,-2.8189256484623115e-18,2.2944224161613187e-18,0.010714286006987095,-0.0071428571827709675,-2.5804011705155006e-17,-0.0035714285913854837,1.9323805994520682e-17,2.2768245622195593e-18,0.0023809524718672037,5.204170427930421e-18,3.2526065174565133e-18,7.079372539771037e-19,0.01785714365541935,2.0816681711721685e-17,-0.1071428582072258,-6.331740687315346e-17,3.6693949107763103e-19,-3.1008182133085427e-17,5.204170427930421e-18,0.0535714291036129,3.686287386450715e-18,7.865808510096387e-18,0.013392857275903225,-4.163336342344337e-17,-0.013392857275903225,-0.004464285913854837,1.1192087868809936e-17,-2.8189256484623115e-18,3.2526065174565133e-18,3.686287386450715e-18,0.004464285913854837,1.5892227164214592e-18,0.004960317630320787,-1.1519648082658485e-17,-2.5370330836160804e-17,-0.0059523810632526875,2.0599841277224584e-18,2.2944224161613187e-18,7.079372539771037e-19,7.865808510096387e-18,1.5892227164214592e-18,0.0009920635493472219,4.0,3.0,8.0,0.21736110746860504,-0.09166666865348816,-0.11145833134651184,-0.05416666716337204,0.010416666977107525,0.01875000074505806,0.008333333767950535,0.015625,0.010416666977107525,0.0034722222480922937,-0.09166666865348816,0.13402777910232544,0.01875000074505806,0.008333333767950535,-0.03125,-0.012500000186264515,-0.0055555556900799274,-5.724587470723463e-17,9.540979117872439e-18,2.1141942363467336e-17,-0.11145833134651184,0.01875000074505806,0.26770833134651184,0.010416666977107525,2.5587171270657905e-17,-0.01875000074505806,-3.133344278483108e-17,-0.09375,-0.010416666977107525,-2.3852447794681098e-18,-0.05416666716337204,0.008333333767950535,0.010416666977107525,0.03283730149269104,4.5102810375396984e-17,1.734723475976807e-17,-0.0023809524718672037,-6.505213034913027e-17,-0.0029761905316263437,-0.0034722222480922937,0.010416666977107525,-0.03125,2.5587171270657905e-17,4.5102810375396984e-17,0.010416666977107525,-7.289672250369528e-18,-1.1718389598557772e-18,4.140866973621069e-18,-4.7445102974377666e-18,-5.082197683525802e-18,0.01875000074505806,-0.012500000186264515,-0.01875000074505806,1.734723475976807e-17,-7.289672250369528e-18,0.012500000186264515,-3.2526065174565133e-19,-8.023096076392733e-18,-6.505213034913027e-19,-2.07726517148961e-18,0.008333333767950535,-0.0055555556900799274,-3.133344278483108e-17,-0.0023809524718672037,-1.1718389598557772e-18,-3.2526065174565133e-19,0.0015873016091063619,1.2685165418080402e-17,1.5720931501039814e-18,-7.06723159633029e-19,0.015625,-5.724587470723463e-17,-0.09375,-6.505213034913027e-17,4.140866973621069e-18,-8.023096076392733e-18,1.2685165418080402e-17,0.046875,2.7321894746634712e-17,2.848696085503248e-18,0.010416666977107525,9.540979117872439e-18,-0.010416666977107525,-0.0029761905316263437,-4.7445102974377666e-18,-6.505213034913027e-19,1.5720931501039814e-18,2.7321894746634712e-17,0.0029761905316263437,-9.265944743674037e-21,0.0034722222480922937,2.1141942363467336e-17,-2.3852447794681098e-18,-0.0034722222480922937,-5.082197683525802e-18,-2.07726517148961e-18,-7.06723159633029e-19,2.848696085503248e-18,-9.265944743674037e-21,0.0004960317746736109,4.0,3.0,9.0,0.1978282779455185,-0.08222222328186035,-0.10000000149011612,-0.04409090802073479,0.009259259328246117,0.01666666753590107,0.006666666828095913,0.013888888992369175,0.008333333767950535,0.0025252525229007006,-0.08222222328186035,0.1196296289563179,0.01666666753590107,0.006666666828095913,-0.02777777798473835,-0.011111111380159855,-0.004444444552063942,7.45931094670027e-17,1.6479873021779667e-17,-1.4907779871675686e-18,-0.10000000149011612,0.01666666753590107,0.23888888955116272,0.008333333767950535,6.81817979752267e-17,-0.01666666753590107,7.806255641895632e-18,-0.0833333358168602,-0.008333333767950535,6.856674218970989e-18,-0.04409090802073479,0.006666666828095913,0.008333333767950535,0.023288238793611526,3.0357660829594124e-18,5.637851296924623e-18,-0.0016666667070239782,2.0816681711721685e-17,-0.0020833334419876337,-0.0021645021624863148,0.009259259328246117,-0.02777777798473835,6.81817979752267e-17,3.0357660829594124e-18,0.009259259328246117,-1.4371596228739985e-18,1.1068542033675394e-18,-2.1246003338887732e-17,-4.9060148304969076e-18,1.8973538018496328e-19,0.01666666753590107,-0.011111111380159855,-0.01666666753590107,5.637851296924623e-18,-1.4371596228739985e-18,0.011111111380159855,-5.421010862427522e-19,6.288372600415926e-18,-6.505213034913027e-19,-5.587883177276673e-19,0.006666666828095913,-0.004444444552063942,7.806255641895632e-18,-0.0016666667070239782,1.1068542033675394e-18,-5.421010862427522e-19,0.0011111111380159855,-2.927345865710862e-18,-2.168404344971009e-19,2.3612067040721656e-19,0.013888888992369175,7.45931094670027e-17,-0.0833333358168602,2.0816681711721685e-17,-2.1246003338887732e-17,6.288372600415926e-18,-2.927345865710862e-18,0.0416666679084301,5.204170427930421e-18,-2.5448519669972072e-18,0.008333333767950535,1.6479873021779667e-17,-0.008333333767950535,-0.0020833334419876337,-4.9060148304969076e-18,-6.505213034913027e-19,-2.168404344971009e-19,5.204170427930421e-18,0.0020833334419876337,-1.6263032587282567e-19,0.0025252525229007006,-1.4907779871675686e-18,6.856674218970989e-18,-0.0021645021624863148,1.8973538018496328e-19,-5.587883177276673e-19,2.3612067040721656e-19,-2.5448519669972072e-18,-1.6263032587282567e-19,0.00027056277031078935,4.0,3.0,10.0,0.1815151572227478,-0.07454545795917511,-0.09068182110786438,-0.03659090772271156,0.008333333767950535,0.014999999664723873,0.005454545374959707,0.012500000186264515,0.006818181835114956,0.0018939394503831863,-0.07454545795917511,0.108030304312706,0.014999999664723873,0.005454545374959707,-0.02500000037252903,-0.009999999776482582,-0.003636363660916686,1.0408340855860843e-17,-6.071532165918825e-18,-1.2752928053860746e-17,-0.09068182110786438,0.014999999664723873,0.21568182110786438,0.006818181835114956,-2.0890048289356923e-19,-0.014999999664723873,-9.974659986866641e-18,-0.07500000298023224,-0.006818181835114956,-1.1282939597028473e-17,-0.03659090772271156,0.005454545374959707,0.006818181835114956,0.017127525061368942,-2.6237692574149207e-17,-2.6020852139652106e-17,-0.001212121220305562,-2.5153490401663703e-17,-0.0015151514671742916,-0.0014204545877873898,0.008333333767950535,-0.02500000037252903,-2.0890048289356923e-19,-2.6237692574149207e-17,0.008333333767950535,-3.5597792107474676e-18,1.7173171143468537e-18,1.3534608356049375e-18,6.640738306473715e-19,2.520770051028798e-18,0.014999999664723873,-0.009999999776482582,-0.014999999664723873,-2.6020852139652106e-17,-3.5597792107474676e-18,0.009999999776482582,1.951563910473908e-18,-2.2551405187698492e-17,1.6263032587282567e-18,2.259865291710691e-18,0.005454545374959707,-0.003636363660916686,-9.974659986866641e-18,-0.001212121220305562,1.7173171143468537e-18,1.951563910473908e-18,0.000808080832939595,2.3852447794681098e-18,3.7947076036992655e-19,4.896015871252367e-19,0.012500000186264515,1.0408340855860843e-17,-0.07500000298023224,-2.5153490401663703e-17,1.3534608356049375e-18,-2.2551405187698492e-17,2.3852447794681098e-18,0.03750000149011612,-3.469446951953614e-18,2.635044018677233e-18,0.006818181835114956,-6.071532165918825e-18,-0.006818181835114956,-0.0015151514671742916,6.640738306473715e-19,1.6263032587282567e-18,3.7947076036992655e-19,-3.469446951953614e-18,0.0015151514671742916,4.2351647362715017e-19,0.0018939394503831863,-1.2752928053860746e-17,-1.1282939597028473e-17,-0.0014204545877873898,2.520770051028798e-18,2.259865291710691e-18,4.896015871252367e-19,2.635044018677233e-18,4.2351647362715017e-19,0.00015782828268129379,4.0,3.0,11.0,0.16768647730350494,-0.06818182021379471,-0.08295454829931259,-0.030856642872095108,0.007575757801532745,0.013636363670229912,0.004545454401522875,0.011363636702299118,0.005681818351149559,0.0014568764017894864,-0.06818182021379471,0.09848485141992569,0.013636363670229912,0.004545454401522875,-0.022727273404598236,-0.00909090880304575,-0.0030303029343485832,4.0766001685454967e-17,-3.0357660829594124e-18,-2.656295322589486e-18,-0.08295454829931259,0.013636363670229912,0.19659091532230377,0.005681818351149559,7.377580042787989e-18,-0.013636363670229912,7.806255641895632e-18,-0.06818182021379471,-0.005681818351149559,5.1680023692368464e-18,-0.030856642872095108,0.004545454401522875,0.005681818351149559,0.012970085255801678,-7.806255641895632e-18,4.336808689942018e-19,-0.0009090909152291715,3.903127820947816e-17,-0.0011363636003807187,-0.0009712509927339852,0.007575757801532745,-0.022727273404598236,7.377580042787989e-18,-7.806255641895632e-18,0.007575757801532745,-1.4172166084980747e-18,4.346554945509424e-19,-5.708926791058242e-18,9.893344823930228e-19,5.827586677109586e-19,0.013636363670229912,-0.00909090880304575,-0.013636363670229912,4.336808689942018e-19,-1.4172166084980747e-18,0.00909090880304575,1.6263032587282567e-19,1.1926223897340549e-18,-2.439454888092385e-19,-7.681682551837876e-20,0.004545454401522875,-0.0030303029343485832,7.806255641895632e-18,-0.0009090909152291715,4.346554945509424e-19,1.6263032587282567e-19,0.000606060610152781,-4.0115480381963664e-18,-3.3881317890172014e-20,1.3006417345782468e-19,0.011363636702299118,4.0766001685454967e-17,-0.06818182021379471,3.903127820947816e-17,-5.708926791058242e-18,1.1926223897340549e-18,-4.0115480381963664e-18,0.034090910106897354,-8.239936510889834e-18,-2.1826415708791184e-18,0.005681818351149559,-3.0357660829594124e-18,-0.005681818351149559,-0.0011363636003807187,9.893344823930228e-19,-2.439454888092385e-19,-3.3881317890172014e-20,-8.239936510889834e-18,0.0011363636003807187,-8.470329472543003e-20,0.0014568764017894864,-2.656295322589486e-18,5.1680023692368464e-18,-0.0009712509927339852,5.827586677109586e-19,-7.681682551837876e-20,1.3006417345782468e-19,-2.1826415708791184e-18,-8.470329472543003e-20,9.712509927339852e-05,4.0,3.0,12.0,0.1558150202035904,-0.06282051652669907,-0.07644230872392654,-0.02637362666428089,0.0069444444961845875,0.012500000186264515,0.003846153849735856,0.010416666977107525,0.004807692486792803,0.0011446886928752065,-0.06282051652669907,0.09049145132303238,0.012500000186264515,0.003846153849735856,-0.02083333395421505,-0.008333333767950535,-0.0025641026441007853,7.979727989493313e-17,1.3010426069826053e-18,-1.2874900798265365e-18,-0.07644230872392654,0.012500000186264515,0.18060897290706635,0.004807692486792803,7.07634154321149e-17,-0.012500000186264515,-1.5395670849294163e-17,-0.0625,-0.004807692486792803,-9.500248744510328e-18,-0.02637362666428089,0.003846153849735856,0.004807692486792803,0.01006077229976654,2.3852447794681098e-18,-1.1275702593849246e-17,-0.0006993007264100015,-3.7513395167998453e-17,-0.0008741258643567562,-0.0006868132040835917,0.0069444444961845875,-0.02083333395421505,7.07634154321149e-17,2.3852447794681098e-18,0.0069444444961845875,-4.4903466465216605e-18,7.017374318884422e-19,-2.473532247787732e-17,-1.9786689647860456e-18,-1.4907779871675686e-19,0.012500000186264515,-0.008333333767950535,-0.012500000186264515,-1.1275702593849246e-17,-4.4903466465216605e-18,0.008333333767950535,1.1384122811097797e-18,-2.233456475320139e-17,-4.336808689942018e-19,8.067623829151922e-19,0.003846153849735856,-0.0025641026441007853,-1.5395670849294163e-17,-0.0006993007264100015,7.017374318884422e-19,1.1384122811097797e-18,0.0004662004648707807,3.686287386450715e-18,9.283481101907132e-19,1.4393759499277578e-19,0.010416666977107525,7.979727989493313e-17,-0.0625,-3.7513395167998453e-17,-2.473532247787732e-17,-2.233456475320139e-17,3.686287386450715e-18,0.03125,-2.8189256484623115e-18,2.9649792748595745e-18,0.004807692486792803,1.3010426069826053e-18,-0.004807692486792803,-0.0008741258643567562,-1.9786689647860456e-18,-4.336808689942018e-19,9.283481101907132e-19,-2.8189256484623115e-18,0.0008741258643567562,2.981555974335137e-19,0.0011446886928752065,-1.2874900798265365e-18,-9.500248744510328e-18,-0.0006868132040835917,-1.4907779871675686e-19,8.067623829151922e-19,1.4393759499277578e-19,2.9649792748595745e-18,2.981555974335137e-19,6.243756070034578e-05,4.0,3.0,13.0,0.14551281929016113,-0.05824175849556923,-0.07087912410497665,-0.02280219830572605,0.006410256493836641,0.011538461782038212,0.0032967033330351114,0.009615384973585606,0.004120879340916872,0.0009157509193755686,-0.05824175849556923,0.08369963616132736,0.011538461782038212,0.0032967033330351114,-0.01923076994717121,-0.007692307699471712,-0.002197802299633622,5.0306980803327406e-17,1.3444106938820255e-17,5.454892180317694e-18,-0.07087912410497665,0.011538461782038212,0.16703297197818756,0.004120879340916872,1.8273409039308995e-17,-0.011538461782038212,1.1492543028346347e-17,-0.057692307978868484,-0.004120879340916872,9.042307288535405e-19,-0.02280219830572605,0.0032967033330351114,0.004120879340916872,0.00796287041157484,1.8865117801247777e-17,1.0625181290357943e-17,-0.0005494505749084055,8.673617379884035e-18,-0.0006868132040835917,-0.0004995004856027663,0.006410256493836641,-0.01923076994717121,1.8273409039308995e-17,1.8865117801247777e-17,0.006410256493836641,5.5424983620053025e-19,-1.1717763009243763e-18,-1.814486434493764e-18,-2.236166980751353e-18,-1.1993986533120893e-18,0.011538461782038212,-0.007692307699471712,-0.011538461782038212,1.0625181290357943e-17,5.5424983620053025e-19,0.007692307699471712,-1.3010426069826053e-18,-2.7647155398380363e-17,-2.6156377411212794e-18,-4.457196039305103e-19,0.0032967033330351114,-0.002197802299633622,1.1492543028346347e-17,-0.0005494505749084055,-1.1717763009243763e-18,-1.3010426069826053e-18,0.00036630037357099354,-2.656295322589486e-18,-5.861467994999758e-19,-1.7326819166768438e-19,0.009615384973585606,5.0306980803327406e-17,-0.057692307978868484,8.673617379884035e-18,-1.814486434493764e-18,-2.7647155398380363e-17,-2.656295322589486e-18,0.028846153989434242,-6.071532165918825e-18,7.425317954257525e-20,0.004120879340916872,1.3444106938820255e-17,-0.004120879340916872,-0.0006868132040835917,-2.236166980751353e-18,-2.6156377411212794e-18,-5.861467994999758e-19,-6.071532165918825e-18,0.0006868132040835917,-4.912791094074942e-20,0.0009157509193755686,5.454892180317694e-18,9.042307288535405e-19,-0.0004995004856027663,-1.1993986533120893e-18,-4.457196039305103e-19,-1.7326819166768438e-19,7.425317954257525e-20,-4.912791094074942e-20,4.162504046689719e-05,4.0,3.0,14.0,0.13648809492588043,-0.05428571254014969,-0.06607142835855484,-0.019910713657736778,0.0059523810632526875,0.010714286006987095,0.0028571428265422583,0.008928571827709675,0.0035714285913854837,0.0007440476329065859,-0.05428571254014969,0.07785714417695999,0.010714286006987095,0.0028571428265422583,-0.01785714365541935,-0.0071428571827709675,-0.0019047618843615055,5.204170427930421e-17,-1.4907779871675686e-18,-2.6713616936641033e-19,-0.06607142835855484,0.010714286006987095,0.15535713732242584,0.0035714285913854837,1.2987963980292176e-17,-0.010714286006987095,0.0,-0.0535714291036129,-0.0035714285913854837,2.0256655414809756e-19,-0.019910713657736778,0.0028571428265422583,0.0035714285913854837,0.006411401089280844,5.095750210681871e-18,-1.5178830414797062e-18,-0.00043956044828519225,1.3660947373317356e-17,-0.0005494505749084055,-0.00037202381645329297,0.0059523810632526875,-0.01785714365541935,1.2987963980292176e-17,5.095750210681871e-18,0.0059523810632526875,-1.7845328286459354e-19,-2.6834003769016235e-18,-5.9285411757395394e-18,-1.0164395367051604e-19,-5.421010862427522e-20,0.010714286006987095,-0.0071428571827709675,-0.010714286006987095,-1.5178830414797062e-18,-1.7845328286459354e-19,0.0071428571827709675,6.776263578034403e-20,-2.5370330836160804e-17,1.3552527156068805e-20,1.095837243282887e-19,0.0028571428265422583,-0.0019047618843615055,0.0,-0.00043956044828519225,-2.6834003769016235e-18,6.776263578034403e-20,0.00029304029885679483,-8.402566836762659e-19,2.1345230270808369e-19,3.5998900258307764e-20,0.008928571827709675,5.204170427930421e-17,-0.0535714291036129,1.3660947373317356e-17,-5.9285411757395394e-18,-2.5370330836160804e-17,-8.402566836762659e-19,0.02678571455180645,-5.204170427930421e-18,-4.256123425042064e-19,0.0035714285913854837,-1.4907779871675686e-18,-0.0035714285913854837,-0.0005494505749084055,-1.0164395367051604e-19,1.3552527156068805e-20,2.1345230270808369e-19,-5.204170427930421e-18,0.0005494505749084055,6.098637220230962e-20,0.0007440476329065859,-2.6713616936641033e-19,2.0256655414809756e-19,-0.00037202381645329297,-5.421010862427522e-20,1.095837243282887e-19,3.5998900258307764e-20,-4.256123425042064e-19,6.098637220230962e-20,2.861721623048652e-05,4.0,3.0,15.0,0.12851715087890625,-0.050833333283662796,-0.06187500059604645,-0.017536764964461327,0.0055555556900799274,0.009999999776482582,0.0024999999441206455,0.008333333767950535,0.0031250000465661287,0.0006127451197244227,-0.050833333283662796,0.07277777791023254,0.009999999776482582,0.0024999999441206455,-0.01666666753590107,-0.006666666828095913,-0.0016666667070239782,6.548581121812447e-17,-3.5236570605778894e-19,-5.454079992353744e-19,-0.06187500059604645,0.009999999776482582,0.14520832896232605,0.0031250000465661287,3.745779870466754e-17,-0.009999999776482582,5.421010862427522e-18,-0.05000000074505806,-0.0031250000465661287,-3.47661736709353e-18,-0.017536764964461327,0.0024999999441206455,0.0031250000465661287,0.005239037796854973,-3.2526065174565133e-18,-2.6020852139652106e-18,-0.0003571428533177823,-1.235990476633475e-17,-0.00044642857392318547,-0.00028280544211156666,0.0055555556900799274,-0.01666666753590107,3.745779870466754e-17,-3.2526065174565133e-18,0.0055555556900799274,-4.0361231606050106e-18,5.421010862427522e-20,-1.670313899527508e-17,3.1848438816761693e-19,1.4907779871675686e-19,0.009999999776482582,-0.006666666828095913,-0.009999999776482582,-2.6020852139652106e-18,-4.0361231606050106e-18,0.006666666828095913,-3.7269449679189215e-19,3.469446951953614e-18,1.0842021724855044e-19,2.0034665987794665e-19,0.0024999999441206455,-0.0016666667070239782,5.421010862427522e-18,-0.0003571428533177823,5.421010862427522e-20,-3.7269449679189215e-19,0.0002380952355451882,-2.032879073410321e-18,-1.1180834903756764e-19,-1.4399560103323106e-20,0.008333333767950535,6.548581121812447e-17,-0.05000000074505806,-1.235990476633475e-17,-1.670313899527508e-17,3.469446951953614e-18,-2.032879073410321e-18,0.02500000037252903,-4.336808689942018e-19,1.1386407897539974e-18,0.0031250000465661287,-3.5236570605778894e-19,-0.0031250000465661287,-0.00044642857392318547,3.1848438816761693e-19,1.0842021724855044e-19,-1.1180834903756764e-19,-4.336808689942018e-19,0.00044642857392318547,9.063252535621014e-20,0.0006127451197244227,-5.454079992353744e-19,-3.47661736709353e-18,-0.00028280544211156666,1.4907779871675686e-19,2.0034665987794665e-19,-1.4399560103323106e-20,1.1386407897539974e-18,9.063252535621014e-20,2.0200388462399133e-05,4.0,3.0,16.0,0.12142565101385117,-0.04779411852359772,-0.05818014591932297,-0.015563725493848324,0.0052083334885537624,0.00937500037252903,0.002205882454290986,0.0078125,0.0027573530096560717,0.0005106209428049624,-0.04779411852359772,0.06832107901573181,0.00937500037252903,0.002205882454290986,-0.015625,-0.0062500000931322575,-0.00147058826405555,-3.469446951953614e-17,-4.336808689942018e-18,-2.692924741269712e-18,-0.05818014591932297,0.00937500037252903,0.13630515336990356,0.0027573530096560717,9.67848796854203e-18,-0.00937500037252903,-1.1058862159352145e-17,-0.046875,-0.0027573530096560717,-1.824070769456263e-18,-0.015563725493848324,0.002205882454290986,0.0027573530096560717,0.004336484707891941,-6.179952383167375e-18,-8.890457814381136e-18,-0.00029411763534881175,-1.474514954580286e-17,-0.0003676470660138875,-0.0002188375365221873,0.0052083334885537624,-0.015625,9.67848796854203e-18,-6.179952383167375e-18,0.0052083334885537624,-9.398622161632676e-18,-7.047314121155779e-19,2.759867434267863e-18,2.0328790734103208e-20,5.149960319306146e-19,0.00937500037252903,-0.0062500000931322575,-0.00937500037252903,-8.890457814381136e-18,-9.398622161632676e-18,0.0062500000931322575,9.41900637346782e-19,-2.168404344971009e-19,1.3145951341386741e-18,3.9916714567633883e-19,0.002205882454290986,-0.00147058826405555,-1.1058862159352145e-17,-0.00029411763534881175,-7.047314121155779e-19,9.41900637346782e-19,0.0001960784284165129,3.2526065174565133e-18,3.6083603553033194e-19,7.877406409464993e-20,0.0078125,-3.469446951953614e-17,-0.046875,-1.474514954580286e-17,2.759867434267863e-18,-2.168404344971009e-19,3.2526065174565133e-18,0.0234375,2.2768245622195593e-18,4.106622678538351e-19,0.0027573530096560717,-4.336808689942018e-18,-0.0027573530096560717,-0.0003676470660138875,2.0328790734103208e-20,1.3145951341386741e-18,3.6083603553033194e-19,2.2768245622195593e-18,0.0003676470660138875,4.1081097941833566e-20,0.0005106209428049624,-2.692924741269712e-18,-1.824070769456263e-18,-0.0002188375365221873,5.149960319306146e-19,3.9916714567633883e-19,7.877406409464993e-20,4.106622678538351e-19,4.1081097941833566e-20,1.4589169040846173e-05,4.0,4.0,3.0,0.3591666519641876,-0.17000000178813934,-0.17000000178813934,-0.20624999701976776,0.02083333395421505,0.029999999329447746,0.03750000149011612,0.02083333395421505,0.03750000149011612,0.03125,-0.17000000178813934,0.2591666579246521,0.029999999329447746,0.03750000149011612,-0.0625,-0.019999999552965164,-0.02500000037252903,-1.821151028689104e-18,0.0,-0.0,-0.17000000178813934,0.029999999329447746,0.2591666579246521,0.03750000149011612,-7.676446498560415e-19,-0.019999999552965164,-9.969349409785868e-20,-0.0625,-0.02500000037252903,-0.0,-0.20624999701976776,0.03750000149011612,0.03750000149011612,0.518750011920929,-4.902224971710955e-37,-9.969349409785868e-20,-0.03750000149011612,-1.1706346746529396e-35,-0.03750000149011612,-0.1875,0.02083333395421505,-0.0625,-7.676446498560415e-19,-4.902224971710955e-37,0.02083333395421505,7.108893064869406e-19,3.2681499811406367e-37,-9.143551093584599e-20,0.0,-0.0,0.029999999329447746,-0.019999999552965164,-0.019999999552965164,-9.969349409785868e-20,7.108893064869406e-19,0.013333333656191826,6.646233370680481e-20,1.5032212651222038e-18,0.0,-0.0,0.03750000149011612,-0.02500000037252903,-9.969349409785868e-20,-0.03750000149011612,3.2681499811406367e-37,6.646233370680481e-20,0.02500000037252903,8.807319677054616e-36,0.0,-0.0,0.02083333395421505,-1.821151028689104e-18,-0.0625,-1.1706346746529396e-35,-9.143551093584599e-20,1.5032212651222038e-18,8.807319677054616e-36,0.02083333395421505,0.0,-0.0,0.03750000149011612,0.0,-0.02500000037252903,-0.03750000149011612,0.0,0.0,0.0,0.0,0.02500000037252903,-0.0,0.03125,-0.0,-0.0,-0.1875,-0.0,-0.0,-0.0,-0.0,-0.0,0.09375,4.0,4.0,4.0,0.29875001311302185,-0.13312500715255737,-0.13312500715255737,-0.13312500715255737,0.015625,0.02250000089406967,0.02250000089406967,0.015625,0.02250000089406967,0.015625,-0.13312500715255737,0.19812500476837158,0.02250000089406967,0.02250000089406967,-0.046875,-0.014999999664723873,-0.014999999664723873,6.884614312111499e-18,1.189325351209995e-18,6.071532165918825e-18,-0.13312500715255737,0.02250000089406967,0.19812500476837158,0.02250000089406967,3.6302268747961587e-19,-0.014999999664723873,-5.941705548393168e-19,-0.046875,-0.014999999664723873,4.336808689942018e-18,-0.13312500715255737,0.02250000089406967,0.02250000089406967,0.19812500476837158,1.1408462083634287e-19,-2.0220649276721088e-18,-0.014999999664723873,1.0425838207358177e-18,-0.014999999664723873,-0.046875,0.015625,-0.046875,3.6302268747961587e-19,1.1408462083634287e-19,0.015625,4.626013262569519e-19,4.591693538954693e-19,-2.89094324961484e-19,-7.50332367096069e-20,-2.1131290345129185e-19,0.02250000089406967,-0.014999999664723873,-0.014999999664723873,-2.0220649276721088e-18,4.626013262569519e-19,0.009999999776482582,1.2804044506994073e-18,-3.743391386448007e-18,8.752966101859862e-20,-9.133568380684276e-21,0.02250000089406967,-0.014999999664723873,-5.941705548393168e-19,-0.014999999664723873,4.591693538954693e-19,1.2804044506994073e-18,0.009999999776482582,-5.1270034077449e-20,-8.673617379884035e-19,-3.469446951953614e-18,0.015625,6.884614312111499e-18,-0.046875,1.0425838207358177e-18,-2.89094324961484e-19,-3.743391386448007e-18,-5.1270034077449e-20,0.015625,-2.9486473691465393e-19,-1.602188617426863e-19,0.02250000089406967,1.189325351209995e-18,-0.014999999664723873,-0.014999999664723873,-7.50332367096069e-20,8.752966101859862e-20,-8.673617379884035e-19,-2.9486473691465393e-19,0.009999999776482582,-2.6020852139652106e-18,0.015625,6.071532165918825e-18,4.336808689942018e-18,-0.046875,-2.1131290345129185e-19,-9.133568380684276e-21,-3.469446951953614e-18,-1.602188617426863e-19,-2.6020852139652106e-18,0.015625,4.0,4.0,5.0,0.2558571398258209,-0.10949999839067459,-0.10949999839067459,-0.09321428835391998,0.012500000186264515,0.017999999225139618,0.014999999664723873,0.012500000186264515,0.014999999664723873,0.008928571827709675,-0.10949999839067459,0.16050000488758087,0.017999999225139618,0.014999999664723873,-0.03750000149011612,-0.012000000104308128,-0.009999999776482582,-0.0,1.3010426069826053e-18,3.903127820947816e-18,-0.10949999839067459,0.017999999225139618,0.16050000488758087,0.014999999664723873,0.0,-0.012000000104308128,1.3010426069826053e-18,-0.03750000149011612,-0.009999999776482582,3.469446951953614e-18,-0.09321428835391998,0.014999999664723873,0.014999999664723873,0.10017856955528259,-0.0,-0.0,-0.007499999832361937,-0.0,-0.007499999832361937,-0.01785714365541935,0.012500000186264515,-0.03750000149011612,0.0,-0.0,0.012500000186264515,0.0,0.0,0.0,0.0,0.0,0.017999999225139618,-0.012000000104308128,-0.012000000104308128,-0.0,0.0,0.00800000037997961,0.0,0.0,0.0,0.0,0.014999999664723873,-0.009999999776482582,1.3010426069826053e-18,-0.007499999832361937,0.0,0.0,0.004999999888241291,0.0,-6.505213034913027e-19,-1.734723475976807e-18,0.012500000186264515,-0.0,-0.03750000149011612,-0.0,0.0,0.0,0.0,0.012500000186264515,0.0,0.0,0.014999999664723873,1.3010426069826053e-18,-0.009999999776482582,-0.007499999832361937,0.0,0.0,-6.505213034913027e-19,0.0,0.004999999888241291,-1.5178830414797062e-18,0.008928571827709675,3.903127820947816e-18,3.469446951953614e-18,-0.01785714365541935,0.0,0.0,-1.734723475976807e-18,0.0,-1.5178830414797062e-18,0.004464285913854837,4.0,4.0,6.0,0.22377976775169373,-0.09303571283817291,-0.09303571283817291,-0.06897321343421936,0.010416666977107525,0.014999999664723873,0.010714286006987095,0.010416666977107525,0.010714286006987095,0.005580357275903225,-0.09303571283817291,0.1349404752254486,0.014999999664723873,0.010714286006987095,-0.03125,-0.009999999776482582,-0.0071428571827709675,-0.0,-4.336808689942018e-19,-6.505213034913027e-19,-0.09303571283817291,0.014999999664723873,0.1349404752254486,0.010714286006987095,0.0,-0.009999999776482582,-5.421010862427522e-19,-0.03125,-0.0071428571827709675,-1.0842021724855044e-18,-0.06897321343421936,0.010714286006987095,0.010714286006987095,0.058281250298023224,-0.0,-0.0,-0.004285714123398066,-0.0,-0.004285714123398066,-0.00837053544819355,0.010416666977107525,-0.03125,0.0,-0.0,0.010416666977107525,0.0,0.0,0.0,0.0,0.0,0.014999999664723873,-0.009999999776482582,-0.009999999776482582,-0.0,0.0,0.006666666828095913,0.0,0.0,0.0,0.0,0.010714286006987095,-0.0071428571827709675,-5.421010862427522e-19,-0.004285714123398066,0.0,0.0,0.0028571428265422583,0.0,2.168404344971009e-19,4.336808689942018e-19,0.010416666977107525,-0.0,-0.03125,-0.0,0.0,0.0,0.0,0.010416666977107525,0.0,0.0,0.010714286006987095,-4.336808689942018e-19,-0.0071428571827709675,-0.004285714123398066,0.0,0.0,2.168404344971009e-19,0.0,0.0028571428265422583,4.336808689942018e-19,0.005580357275903225,-6.505213034913027e-19,-1.0842021724855044e-18,-0.00837053544819355,0.0,0.0,4.336808689942018e-19,0.0,4.336808689942018e-19,0.0016741071594879031,4.0,4.0,7.0,0.19886904954910278,-0.08089285343885422,-0.08089285343885422,-0.05312500149011612,0.008928571827709675,0.012857142835855484,0.008035714738070965,0.008928571827709675,0.008035714738070965,0.0037202381063252687,-0.08089285343885422,0.11642856895923615,0.012857142835855484,0.008035714738070965,-0.02678571455180645,-0.008571428246796131,-0.0053571430034935474,-5.074066167232161e-17,-2.3852447794681098e-17,-4.092863201132779e-18,-0.08089285343885422,0.012857142835855484,0.11642856895923615,0.008035714738070965,-4.423544863740858e-17,-0.008571428246796131,-3.0574501264091225e-17,-0.02678571455180645,-0.0053571430034935474,-7.94178091345632e-18,-0.05312500149011612,0.008035714738070965,0.008035714738070965,0.03705357015132904,-2.862293735361732e-17,-3.0357660829594124e-18,-0.0026785715017467737,-5.160802341031001e-17,-0.0026785715017467737,-0.004464285913854837,0.008928571827709675,-0.02678571455180645,-4.423544863740858e-17,-2.862293735361732e-17,0.008928571827709675,5.651323173970968e-18,7.748849307384452e-18,6.440567629271089e-18,5.05383241955044e-18,8.809142651444724e-19,0.012857142835855484,-0.008571428246796131,-0.008571428246796131,-3.0357660829594124e-18,5.651323173970968e-18,0.0057142856530845165,7.589415207398531e-19,2.4936649967166602e-18,6.505213034913027e-19,1.3787993164719975e-19,0.008035714738070965,-0.0053571430034935474,-3.0574501264091225e-17,-0.0026785715017467737,7.748849307384452e-18,7.589415207398531e-19,0.0017857142956927419,7.101524229780054e-18,2.222614453595284e-18,3.0495145485230797e-19,0.008928571827709675,-5.074066167232161e-17,-0.02678571455180645,-5.160802341031001e-17,6.440567629271089e-18,2.4936649967166602e-18,7.101524229780054e-18,0.008928571827709675,1.5287250632045613e-17,2.134939098928951e-18,0.008035714738070965,-2.3852447794681098e-17,-0.0053571430034935474,-0.0026785715017467737,5.05383241955044e-18,6.505213034913027e-19,2.222614453595284e-18,1.5287250632045613e-17,0.0017857142956927419,3.5658013957995833e-19,0.0037202381063252687,-4.092863201132779e-18,-7.94178091345632e-18,-0.004464285913854837,8.809142651444724e-19,1.3787993164719975e-19,3.0495145485230797e-19,2.134939098928951e-18,3.5658013957995833e-19,0.0007440476329065859,4.0,4.0,8.0,0.17895832657814026,-0.0715624988079071,-0.0715624988079071,-0.04218750074505806,0.0078125,0.011250000447034836,0.0062500000931322575,0.0078125,0.0062500000931322575,0.0026041667442768812,-0.0715624988079071,0.10239583253860474,0.011250000447034836,0.0062500000931322575,-0.0234375,-0.007499999832361937,-0.004166666883975267,-3.469446951953614e-17,-1.6046192152785466e-17,-1.3782920117721975e-17,-0.0715624988079071,0.011250000447034836,0.10239583253860474,0.0062500000931322575,-1.566672139241554e-17,-0.007499999832361937,-2.303929616531697e-17,-0.0234375,-0.004166666883975267,-1.6425662913155392e-17,-0.04218750074505806,0.0062500000931322575,0.0062500000931322575,0.02507440559566021,-1.713039432527097e-17,-2.7755575615628914e-17,-0.0017857142956927419,-2.7755575615628914e-17,-0.0017857142956927419,-0.0026041667442768812,0.0078125,-0.0234375,-1.566672139241554e-17,-1.713039432527097e-17,0.0078125,-3.0928161094217353e-18,-3.4168144835526307e-18,2.966031241803589e-18,2.2210368133719923e-18,2.439454888092385e-18,0.011250000447034836,-0.007499999832361937,-0.007499999832361937,-2.7755575615628914e-17,-3.0928161094217353e-18,0.004999999888241291,3.5236570605778894e-18,4.9873299934333204e-18,2.710505431213761e-18,2.24725823199477e-18,0.0062500000931322575,-0.004166666883975267,-2.303929616531697e-17,-0.0017857142956927419,-3.4168144835526307e-18,3.5236570605778894e-18,0.0011904762359336019,4.174178364069192e-18,1.0570971181733668e-18,6.401189386017772e-19,0.0078125,-3.469446951953614e-17,-0.0234375,-2.7755575615628914e-17,2.966031241803589e-18,4.9873299934333204e-18,4.174178364069192e-18,0.0078125,-2.222614453595284e-18,3.1786172796151764e-18,0.0062500000931322575,-1.6046192152785466e-17,-0.004166666883975267,-0.0017857142956927419,2.2210368133719923e-18,2.710505431213761e-18,1.0570971181733668e-18,-2.222614453595284e-18,0.0011904762359336019,6.852940118890771e-19,0.0026041667442768812,-1.3782920117721975e-17,-1.6425662913155392e-17,-0.0026041667442768812,2.439454888092385e-18,2.24725823199477e-18,6.401189386017772e-19,3.1786172796151764e-18,6.852940118890771e-19,0.00037202381645329297,4.0,4.0,9.0,0.16267676651477814,-0.06416666507720947,-0.06416666507720947,-0.03431818261742592,0.0069444444961845875,0.009999999776482582,0.004999999888241291,0.0069444444961845875,0.004999999888241291,0.0018939394503831863,-0.06416666507720947,0.09138888865709305,0.009999999776482582,0.004999999888241291,-0.02083333395421505,-0.006666666828095913,-0.0033333334140479565,-2.7321894746634712e-17,-2.6020852139652106e-18,2.439454888092385e-19,-0.06416666507720947,0.009999999776482582,0.09138888865709305,0.004999999888241291,-3.366447745567491e-17,-0.006666666828095913,1.6263032587282567e-19,-0.02083333395421505,-0.0033333334140479565,1.7618285302889447e-19,-0.03431818261742592,0.004999999888241291,0.004999999888241291,0.017778679728507996,-3.686287386450715e-18,7.37257477290143e-18,-0.0012499999720603228,-3.2526065174565133e-18,-0.0012499999720603228,-0.001623376621864736,0.0069444444961845875,-0.02083333395421505,-3.366447745567491e-17,-3.686287386450715e-18,0.0069444444961845875,2.949399121226985e-18,1.2789407546054947e-18,7.231784496741842e-18,1.5439679753014128e-18,-4.743384504624082e-20,0.009999999776482582,-0.006666666828095913,-0.006666666828095913,7.37257477290143e-18,2.949399121226985e-18,0.004444444552063942,-1.2468324983583301e-18,-1.0842021724855044e-19,-5.963111948670274e-19,-3.0578962145737147e-19,0.004999999888241291,-0.0033333334140479565,1.6263032587282567e-19,-0.0012499999720603228,1.2789407546054947e-18,-1.2468324983583301e-18,0.0008333333535119891,1.0299920638612292e-18,-2.168404344971009e-19,7.476757117689673e-21,0.0069444444961845875,-2.7321894746634712e-17,-0.02083333395421505,-3.2526065174565133e-18,7.231784496741842e-18,-1.0842021724855044e-19,1.0299920638612292e-18,0.0069444444961845875,5.149960319306146e-19,1.5151091171449038e-19,0.004999999888241291,-2.6020852139652106e-18,-0.0033333334140479565,-0.0012499999720603228,1.5439679753014128e-18,-5.963111948670274e-19,-2.168404344971009e-19,5.149960319306146e-19,0.0008333333535119891,-2.0038980251677012e-20,0.0018939394503831863,2.439454888092385e-19,1.7618285302889447e-19,-0.001623376621864736,-4.743384504624082e-20,-3.0578962145737147e-19,7.476757117689673e-21,1.5151091171449038e-19,-2.0038980251677012e-20,0.000202922077733092,4.0,4.0,10.0,0.14911364018917084,-0.05815909057855606,-0.05815909057855606,-0.028465909883379936,0.0062500000931322575,0.008999999612569809,0.004090908914804459,0.0062500000931322575,0.004090908914804459,0.0014204545877873898,-0.05815909057855606,0.08252272754907608,0.008999999612569809,0.004090908914804459,-0.01875000074505806,-0.006000000052154064,-0.0027272726874798536,2.0383000842727483e-17,9.540979117872439e-18,7.32514092785519e-18,-0.05815909057855606,0.008999999612569809,0.08252272754907608,0.004090908914804459,1.7672495411513722e-17,-0.006000000052154064,8.890457814381136e-18,-0.01875000074505806,-0.0027272726874798536,8.931115395849343e-18,-0.028465909883379936,0.004090908914804459,0.004090908914804459,0.013072916306555271,1.6263032587282567e-17,1.7564075194265172e-17,-0.0009090909152291715,2.0383000842727483e-17,-0.0009090909152291715,-0.0010653409408405423,0.0062500000931322575,-0.01875000074505806,1.7672495411513722e-17,1.6263032587282567e-17,0.0062500000931322575,-2.496565091944271e-18,-8.248190636029771e-19,-2.4887521642635546e-18,-1.6054446588118132e-18,-1.2536087619363645e-18,0.008999999612569809,-0.006000000052154064,-0.006000000052154064,1.7564075194265172e-17,-2.496565091944271e-18,0.004000000189989805,-2.0057740190981832e-18,-6.884683795282953e-18,-1.6263032587282567e-18,-1.2109814566345162e-18,0.004090908914804459,-0.0027272726874798536,8.890457814381136e-18,-0.0009090909152291715,-8.248190636029771e-19,-2.0057740190981832e-18,0.000606060610152781,-1.1655173354219173e-18,-4.87890977618477e-19,-2.8997997690358687e-19,0.0062500000931322575,2.0383000842727483e-17,-0.01875000074505806,2.0383000842727483e-17,-2.4887521642635546e-18,-6.884683795282953e-18,-1.1655173354219173e-18,0.0062500000931322575,-9.75781955236954e-19,-1.7209495746093038e-18,0.004090908914804459,9.540979117872439e-18,-0.0027272726874798536,-0.0009090909152291715,-1.6054446588118132e-18,-1.6263032587282567e-18,-4.87890977618477e-19,-9.75781955236954e-19,0.000606060610152781,-3.2201321820895057e-19,0.0014204545877873898,7.32514092785519e-18,8.931115395849343e-18,-0.0010653409408405423,-1.2536087619363645e-18,-1.2109814566345162e-18,-2.8997997690358687e-19,-1.7209495746093038e-18,-3.2201321820895057e-19,0.00011837121564894915,4.0,4.0,11.0,0.1376398652791977,-0.05318181961774826,-0.05318181961774826,-0.023994754999876022,0.005681818351149559,0.008181817829608917,0.003409090917557478,0.005681818351149559,0.003409090917557478,0.0010926573304459453,-0.05318181961774826,0.0752272754907608,0.008181817829608917,0.003409090917557478,-0.017045455053448677,-0.005454545374959707,-0.0022727272007614374,2.3852447794681098e-17,3.0357660829594124e-18,-1.6263032587282567e-18,-0.05318181961774826,0.008181817829608917,0.0752272754907608,0.003409090917557478,1.3064636178450328e-17,-0.005454545374959707,2.439454888092385e-18,-0.017045455053448677,-0.0022727272007614374,-1.748276003132876e-18,-0.023994754999876022,0.003409090917557478,0.003409090917557478,0.009898019023239613,-6.5052130349130266e-18,-4.336808689942018e-19,-0.0006818181718699634,-8.456776945386935e-18,-0.0006818181718699634,-0.0007284382008947432,0.005681818351149559,-0.017045455053448677,1.3064636178450328e-17,-6.5052130349130266e-18,0.005681818351149559,2.5373033235222014e-18,2.132376906981568e-18,-4.804251762818184e-18,-3.8100091525617894e-19,3.3881317890172014e-19,0.008181817829608917,-0.005454545374959707,-0.005454545374959707,-4.336808689942018e-19,2.5373033235222014e-18,0.003636363660916686,-4.336808689942018e-19,-4.336808689942018e-18,-6.505213034913027e-19,1.9925472977058837e-19,0.003409090917557478,-0.0022727272007614374,2.439454888092385e-18,-0.0006818181718699634,2.132376906981568e-18,-4.336808689942018e-19,0.00045454545761458576,-3.7947076036992655e-19,-1.6263032587282567e-19,3.2113952807398704e-20,0.005681818351149559,2.3852447794681098e-17,-0.017045455053448677,-8.456776945386935e-18,-4.804251762818184e-18,-4.336808689942018e-18,-3.7947076036992655e-19,0.005681818351149559,3.198396408832238e-18,3.9200471799921287e-19,0.003409090917557478,3.0357660829594124e-18,-0.0022727272007614374,-0.0006818181718699634,-3.8100091525617894e-19,-6.505213034913027e-19,-1.6263032587282567e-19,3.198396408832238e-18,0.00045454545761458576,1.815864039180486e-20,0.0010926573304459453,-1.6263032587282567e-18,-1.748276003132876e-18,-0.0007284382008947432,3.3881317890172014e-19,1.9925472977058837e-19,3.2113952807398704e-20,3.9200471799921287e-19,1.815864039180486e-20,7.284382445504889e-05,4.0,4.0,12.0,0.12780678272247314,-0.04899038374423981,-0.04899038374423981,-0.02050137333571911,0.0052083334885537624,0.007499999832361937,0.002884615445509553,0.0052083334885537624,0.002884615445509553,0.0008585164905525744,-0.04899038374423981,0.06911858916282654,0.007499999832361937,0.002884615445509553,-0.015625,-0.004999999888241291,-0.001923076924867928,-4.466912950640278e-17,-1.3660947373317356e-17,-8.876905287225068e-18,-0.04899038374423981,0.007499999832361937,0.06911858916282654,0.002884615445509553,-3.778444571111983e-17,-0.004999999888241291,-1.4094628242311558e-17,-0.015625,-0.001923076924867928,-8.815918915022758e-18,-0.02050137333571911,0.002884615445509553,0.002884615445509553,0.007676698267459869,-2.8189256484623115e-17,-1.691355389077387e-17,-0.0005244755302555859,-2.883977778811442e-17,-0.0005244755302555859,-0.000515109917614609,0.0052083334885537624,-0.015625,-3.778444571111983e-17,-2.8189256484623115e-17,0.0052083334885537624,2.841311637379834e-18,1.9827614408666517e-18,5.7939419328746045e-18,2.50679255983303e-18,1.802486111757151e-18,0.007499999832361937,-0.004999999888241291,-0.004999999888241291,-1.691355389077387e-17,2.841311637379834e-18,0.0033333334140479565,1.2468324983583301e-18,6.7220534694101275e-18,1.4365678785432934e-18,1.0865956195879266e-18,0.002884615445509553,-0.001923076924867928,-1.4094628242311558e-17,-0.0005244755302555859,1.9827614408666517e-18,1.2468324983583301e-18,0.00034965036320500076,2.6291902682773483e-18,6.2341624917916505e-19,2.522236797351219e-19,0.0052083334885537624,-4.466912950640278e-17,-0.015625,-2.883977778811442e-17,5.7939419328746045e-18,6.7220534694101275e-18,2.6291902682773483e-18,0.0052083334885537624,2.574980159653073e-18,1.789846791997341e-18,0.002884615445509553,-1.3660947373317356e-17,-0.001923076924867928,-0.0005244755302555859,2.50679255983303e-18,1.4365678785432934e-18,6.2341624917916505e-19,2.574980159653073e-18,0.00034965036320500076,2.3908071037984343e-19,0.0008585164905525744,-8.876905287225068e-18,-8.815918915022758e-18,-0.000515109917614609,1.802486111757151e-18,1.0865956195879266e-18,2.522236797351219e-19,1.789846791997341e-18,2.3908071037984343e-19,4.682817234424874e-05,4.0,4.0,13.0,0.1192857176065445,-0.0454120896756649,-0.0454120896756649,-0.017719781026244164,0.004807692486792803,0.006923076696693897,0.0024725275579839945,0.004807692486792803,0.0024725275579839945,0.0006868132040835917,-0.0454120896756649,0.06392857432365417,0.006923076696693897,0.0024725275579839945,-0.014423076994717121,-0.004615384619683027,-0.0016483516665175557,-5.854691731421724e-18,-1.3010426069826053e-18,-1.599198204416119e-18,-0.0454120896756649,0.006923076696693897,0.06392857432365417,0.0024725275579839945,-2.0729609371721903e-17,-0.004615384619683027,-1.4094628242311558e-18,-0.014423076994717121,-0.0016483516665175557,-5.26762055758722e-19,-0.017719781026244164,0.0024725275579839945,0.0024725275579839945,0.006075175013393164,-6.5052130349130266e-18,1.3010426069826053e-18,-0.00041208791662938893,-2.3852447794681098e-18,-0.00041208791662938893,-0.00037462537875398993,0.004807692486792803,-0.014423076994717121,-2.0729609371721903e-17,-6.5052130349130266e-18,0.004807692486792803,2.301602550673432e-18,3.606192883604489e-19,4.305365486907346e-18,6.2341624917916505e-19,4.1335207826009857e-19,0.006923076696693897,-0.004615384619683027,-0.004615384619683027,1.3010426069826053e-18,2.301602550673432e-18,0.003076923079788685,-3.2526065174565133e-19,-6.7220534694101275e-18,-7.284483346386983e-19,4.723027783619608e-20,0.0024725275579839945,-0.0016483516665175557,-1.4094628242311558e-18,-0.00041208791662938893,3.606192883604489e-19,-3.2526065174565133e-19,0.00027472528745420277,4.87890977618477e-19,8.300922883092143e-20,4.119123251675103e-20,0.004807692486792803,-5.854691731421724e-18,-0.014423076994717121,-2.3852447794681098e-18,4.305365486907346e-18,-6.7220534694101275e-18,4.87890977618477e-19,0.004807692486792803,-2.710505431213761e-19,1.5438267600612135e-19,0.0024725275579839945,-1.3010426069826053e-18,-0.0016483516665175557,-0.00041208791662938893,6.2341624917916505e-19,-7.284483346386983e-19,8.300922883092143e-20,-2.710505431213761e-19,0.00027472528745420277,-8.470329472543003e-22,0.0006868132040835917,-1.599198204416119e-18,-5.26762055758722e-19,-0.00037462537875398993,4.1335207826009857e-19,4.723027783619608e-20,4.119123251675103e-20,1.5438267600612135e-19,-8.470329472543003e-22,3.121878035017289e-05,4.0,4.0,14.0,0.11183035373687744,-0.042321428656578064,-0.042321428656578064,-0.015468750149011612,0.004464285913854837,0.006428571417927742,0.002142857061699033,0.004464285913854837,0.002142857061699033,0.0005580357392318547,-0.042321428656578064,0.059464287012815475,0.006428571417927742,0.002142857061699033,-0.013392857275903225,-0.004285714123398066,-0.0014285714132711291,1.3227266504323154e-17,-2.5478751053409354e-18,-7.046942923855896e-19,-0.042321428656578064,0.006428571417927742,0.059464287012815475,0.002142857061699033,2.9246562879491458e-18,-0.004285714123398066,-4.336808689942018e-19,-0.013392857275903225,-0.0014285714132711291,-2.9811850355291954e-19,-0.015468750149011612,0.002142857061699033,0.002142857061699033,0.004890968557447195,-3.577867169202165e-18,-2.2768245622195593e-18,-0.00032967032166197896,-1.0842021724855044e-18,-0.00032967032166197896,-0.00027901786961592734,0.004464285913854837,-0.013392857275903225,2.9246562879491458e-18,-3.577867169202165e-18,0.004464285913854837,2.5510285246311407e-18,-6.776263578034403e-19,-3.974078410808939e-18,8.470329472543003e-19,1.8973538018496328e-19,0.006428571417927742,-0.004285714123398066,-0.004285714123398066,-2.2768245622195593e-18,2.5510285246311407e-18,0.0028571428265422583,3.5236570605778894e-19,-1.2468324983583301e-18,2.270048298641525e-19,8.225305650407725e-20,0.002142857061699033,-0.0014285714132711291,-4.336808689942018e-19,-0.00032967032166197896,-6.776263578034403e-19,3.5236570605778894e-19,0.00021978022414259613,9.486769009248164e-20,-4.912791094074942e-20,5.505714157152952e-21,0.004464285913854837,1.3227266504323154e-17,-0.013392857275903225,-1.0842021724855044e-18,-3.974078410808939e-18,-1.2468324983583301e-18,9.486769009248164e-20,0.004464285913854837,-3.2526065174565133e-19,5.456563472895963e-20,0.002142857061699033,-2.5478751053409354e-18,-0.0014285714132711291,-0.00032967032166197896,8.470329472543003e-19,2.270048298641525e-19,-4.912791094074942e-20,-3.2526065174565133e-19,0.00021978022414259613,-1.6940658945086007e-21,0.0005580357392318547,-7.046942923855896e-19,-2.9811850355291954e-19,-0.00027901786961592734,1.8973538018496328e-19,8.225305650407725e-20,5.505714157152952e-21,5.456563472895963e-20,-1.6940658945086007e-21,2.146291262761224e-05,4.0,4.0,15.0,0.1052524521946907,-0.03962500020861626,-0.03962500020861626,-0.013621323741972446,0.004166666883975267,0.006000000052154064,0.0018749999580904841,0.004166666883975267,0.0018749999580904841,0.0004595588252414018,-0.03962500020861626,0.05558333173394203,0.006000000052154064,0.0018749999580904841,-0.012500000186264515,-0.004000000189989805,-0.0012499999720603228,2.873135757086587e-17,2.9544509200229996e-18,6.903798672618741e-20,-0.03962500020861626,0.006000000052154064,0.05558333173394203,0.0018749999580904841,2.7524817040144995e-17,-0.004000000189989805,4.553649124439119e-18,-0.012500000186264515,-0.0012499999720603228,-2.211455476939214e-19,-0.013621323741972446,0.0018749999580904841,0.0018749999580904841,0.003996242769062519,2.3852447794681098e-18,-1.3010426069826053e-18,-0.0002678571327123791,3.2526065174565133e-19,-0.0002678571327123791,-0.00021210407430771738,0.004166666883975267,-0.012500000186264515,2.7524817040144995e-17,2.3852447794681098e-18,0.004166666883975267,1.4166892808575722e-18,3.6591823321385775e-19,-7.241166379249419e-18,-7.758821796849391e-19,-1.1519648082658485e-19,0.006000000052154064,-0.004000000189989805,-0.004000000189989805,-1.3010426069826053e-18,1.4166892808575722e-18,0.0026666666381061077,3.3881317890172014e-20,1.951563910473908e-18,3.4558944247975454e-19,3.9335300947297724e-20,0.0018749999580904841,-0.0012499999720603228,4.553649124439119e-18,-0.0002678571327123791,3.6591823321385775e-19,3.3881317890172014e-20,0.00017857142665889114,-1.1519648082658485e-18,-1.3721933745519665e-19,2.541098841762901e-20,0.004166666883975267,2.873135757086587e-17,-0.012500000186264515,3.2526065174565133e-19,-7.241166379249419e-18,1.951563910473908e-18,-1.1519648082658485e-18,0.004166666883975267,8.131516293641283e-19,7.142403282394923e-21,0.0018749999580904841,2.9544509200229996e-18,-0.0012499999720603228,-0.0002678571327123791,-7.758821796849391e-19,3.4558944247975454e-19,-1.3721933745519665e-19,8.131516293641283e-19,0.00017857142665889114,1.6093625997831706e-20,0.0004595588252414018,6.903798672618741e-20,-2.211455476939214e-19,-0.00021210407430771738,-1.1519648082658485e-19,3.9335300947297724e-20,2.541098841762901e-20,7.142403282394923e-21,1.6093625997831706e-20,1.5150290892051999e-05,4.0,4.0,16.0,0.09940563887357712,-0.03725183755159378,-0.03725183755159378,-0.012086397036910057,0.00390625,0.005625000223517418,0.0016544117825105786,0.00390625,0.0016544117825105786,0.00038296569255180657,-0.03725183755159378,0.05217830836772919,0.005625000223517418,0.0016544117825105786,-0.01171875,-0.0037499999161809683,-0.001102941227145493,7.26415455565288e-18,1.0164395367051604e-18,1.3852557971950977e-18,-0.03725183755159378,0.005625000223517418,0.05217830836772919,0.0016544117825105786,-9.206234840403867e-18,-0.0037499999161809683,1.6263032587282567e-18,-0.01171875,-0.001102941227145493,9.467916529112315e-19,-0.012086397036910057,0.0016544117825105786,0.0016544117825105786,0.0033075104001909494,2.222614453595284e-18,3.903127820947816e-18,-0.00022058823378756642,1.8973538018496328e-18,-0.00022058823378756642,-0.00016412815602961928,0.00390625,-0.01171875,-9.206234840403867e-18,2.222614453595284e-18,0.00390625,6.311758650694025e-18,6.911788849595091e-19,-5.130612564778531e-19,1.6601845766184287e-19,-2.236166980751353e-19,0.005625000223517418,-0.0037499999161809683,-0.0037499999161809683,3.903127820947816e-18,6.311758650694025e-18,0.0024999999441206455,-2.913793338554793e-19,-3.198396408832238e-18,-3.6591823321385775e-19,-1.7685983573678377e-19,0.0016544117825105786,-0.001102941227145493,1.6263032587282567e-18,-0.00022058823378756642,6.911788849595091e-19,-2.913793338554793e-19,0.00014705881767440587,-1.2197274440461925e-19,-1.0842021724855044e-19,-4.6375053862172944e-20,0.00390625,7.26415455565288e-18,-0.01171875,1.8973538018496328e-18,-5.130612564778531e-19,-3.198396408832238e-18,-1.2197274440461925e-19,0.00390625,8.131516293641283e-20,-1.3011229210502054e-19,0.0016544117825105786,1.0164395367051604e-18,-0.001102941227145493,-0.00022058823378756642,1.6601845766184287e-19,-3.6591823321385775e-19,-1.0842021724855044e-19,8.131516293641283e-20,0.00014705881767440587,-3.176373552203626e-20,0.00038296569255180657,1.3852557971950977e-18,9.467916529112315e-19,-0.00016412815602961928,-2.236166980751353e-19,-1.7685983573678377e-19,-4.6375053862172944e-20,-1.3011229210502054e-19,-3.176373552203626e-20,1.0941877008008305e-05,4.0,5.0,3.0,0.3088095188140869,-0.14000000059604645,-0.1192857176065445,-0.17000000178813934,0.01666666753590107,0.019999999552965164,0.029999999329447746,0.011904762126505375,0.02500000037252903,0.02500000037252903,-0.14000000059604645,0.20999999344348907,0.019999999552965164,0.029999999329447746,-0.05000000074505806,-0.013333333656191826,-0.019999999552965164,-5.204170427930421e-18,0.0,-0.0,-0.1192857176065445,0.019999999552965164,0.13107143342494965,0.02500000037252903,0.0,-0.009999999776482582,0.0,-0.02380952425301075,-0.012500000186264515,-0.0,-0.17000000178813934,0.029999999329447746,0.02500000037252903,0.41999998688697815,0.0,0.0,-0.029999999329447746,0.0,-0.02500000037252903,-0.15000000596046448,0.01666666753590107,-0.05000000074505806,0.0,0.0,0.01666666753590107,0.0,0.0,0.0,0.0,-0.0,0.019999999552965164,-0.013333333656191826,-0.009999999776482582,0.0,0.0,0.006666666828095913,0.0,2.638660659110468e-18,0.0,-0.0,0.029999999329447746,-0.019999999552965164,0.0,-0.029999999329447746,0.0,0.0,0.019999999552965164,0.0,0.0,-0.0,0.011904762126505375,-5.204170427930421e-18,-0.02380952425301075,0.0,0.0,2.638660659110468e-18,0.0,0.0059523810632526875,0.0,-0.0,0.02500000037252903,0.0,-0.012500000186264515,-0.02500000037252903,0.0,0.0,0.0,0.0,0.012500000186264515,-0.0,0.02500000037252903,-0.0,-0.0,-0.15000000596046448,-0.0,-0.0,-0.0,-0.0,-0.0,0.07500000298023224,4.0,5.0,4.0,0.2558571398258209,-0.10949999839067459,-0.09321428835391998,-0.10949999839067459,0.012500000186264515,0.014999999664723873,0.017999999225139618,0.008928571827709675,0.014999999664723873,0.012500000186264515,-0.10949999839067459,0.16050000488758087,0.014999999664723873,0.017999999225139618,-0.03750000149011612,-0.009999999776482582,-0.012000000104308128,3.903127820947816e-18,0.0,-0.0,-0.09321428835391998,0.014999999664723873,0.10017856955528259,0.014999999664723873,0.0,-0.007499999832361937,0.0,-0.01785714365541935,-0.007499999832361937,-0.0,-0.10949999839067459,0.017999999225139618,0.014999999664723873,0.16050000488758087,0.0,0.0,-0.012000000104308128,2.7755574995243454e-19,-0.009999999776482582,-0.03750000149011612,0.012500000186264515,-0.03750000149011612,0.0,0.0,0.012500000186264515,0.0,0.0,0.0,0.0,-0.0,0.014999999664723873,-0.009999999776482582,-0.007499999832361937,0.0,0.0,0.004999999888241291,0.0,-2.062783306915338e-18,0.0,-0.0,0.017999999225139618,-0.012000000104308128,0.0,-0.012000000104308128,0.0,0.0,0.00800000037997961,0.0,0.0,-0.0,0.008928571827709675,3.903127820947816e-18,-0.01785714365541935,2.7755574995243454e-19,0.0,-2.062783306915338e-18,0.0,0.004464285913854837,-1.3877787497621727e-19,-0.0,0.014999999664723873,0.0,-0.007499999832361937,-0.009999999776482582,0.0,0.0,0.0,-1.3877787497621727e-19,0.004999999888241291,-0.0,0.012500000186264515,-0.0,-0.0,-0.03750000149011612,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,4.0,5.0,5.0,0.21857142448425293,-0.09000000357627869,-0.07657142728567123,-0.07657142728567123,0.009999999776482582,0.012000000104308128,0.012000000104308128,0.0071428571827709675,0.009999999776482582,0.0071428571827709675,-0.09000000357627869,0.12999999523162842,0.012000000104308128,0.012000000104308128,-0.029999999329447746,-0.00800000037997961,-0.00800000037997961,3.0357660829594124e-18,-1.0842021724855044e-19,2.6020852139652106e-18,-0.07657142728567123,0.012000000104308128,0.081142857670784,0.009999999776482582,0.0,-0.006000000052154064,0.0,-0.014285714365541935,-0.004999999888241291,-2.168404344971009e-19,-0.07657142728567123,0.012000000104308128,0.009999999776482582,0.081142857670784,-0.0,-0.0,-0.006000000052154064,-1.0632801252311388e-19,-0.004999999888241291,-0.014285714365541935,0.009999999776482582,-0.029999999329447746,0.0,-0.0,0.009999999776482582,0.0,0.0,0.0,0.0,0.0,0.012000000104308128,-0.00800000037997961,-0.006000000052154064,-0.0,0.0,0.004000000189989805,-6.776263578034403e-21,-1.5178830414797062e-18,0.0,-5.787886547506887e-21,0.012000000104308128,-0.00800000037997961,0.0,-0.006000000052154064,0.0,-6.776263578034403e-21,0.004000000189989805,0.0,0.0,-1.5178830414797062e-18,0.0071428571827709675,3.0357660829594124e-18,-0.014285714365541935,-1.0632801252311388e-19,0.0,-1.5178830414797062e-18,0.0,0.0035714285913854837,0.0,5.421010862427522e-20,0.009999999776482582,-1.0842021724855044e-19,-0.004999999888241291,-0.004999999888241291,0.0,0.0,0.0,0.0,0.0024999999441206455,0.0,0.0071428571827709675,2.6020852139652106e-18,-2.168404344971009e-19,-0.014285714365541935,0.0,-5.787886547506887e-21,-1.5178830414797062e-18,5.421010862427522e-20,0.0,0.0035714285913854837,4.0,5.0,6.0,0.19083333015441895,-0.07642856985330582,-0.06499999761581421,-0.056607142090797424,0.008333333767950535,0.009999999776482582,0.008571428246796131,0.0059523810632526875,0.0071428571827709675,0.004464285913854837,-0.07642856985330582,0.10928571224212646,0.009999999776482582,0.008571428246796131,-0.02500000037252903,-0.006666666828095913,-0.0057142856530845165,-2.439454888092385e-18,2.168404344971009e-19,2.3852447794681098e-18,-0.06499999761581421,0.009999999776482582,0.0682142823934555,0.0071428571827709675,0.0,-0.004999999888241291,0.0,-0.011904762126505375,-0.0035714285913854837,2.168404344971009e-19,-0.056607142090797424,0.008571428246796131,0.0071428571827709675,0.04719642922282219,-0.0,-0.0,-0.00342857139185071,-4.218596890213433e-21,-0.0028571428265422583,-0.0066964286379516125,0.008333333767950535,-0.02500000037252903,0.0,-0.0,0.008333333767950535,0.0,0.0,0.0,0.0,0.0,0.009999999776482582,-0.006666666828095913,-0.004999999888241291,-0.0,0.0,0.0033333334140479565,0.0,1.4094628242311558e-18,0.0,-6.165216616150315e-21,0.008571428246796131,-0.0057142856530845165,0.0,-0.00342857139185071,0.0,0.0,0.0022857142612338066,0.0,0.0,-9.215718466126788e-19,0.0059523810632526875,-2.439454888092385e-18,-0.011904762126505375,-4.218596890213433e-21,0.0,1.4094628242311558e-18,0.0,0.0029761905316263437,1.0842021724855044e-19,-2.710505431213761e-20,0.0071428571827709675,2.168404344971009e-19,-0.0035714285913854837,-0.0028571428265422583,0.0,0.0,0.0,1.0842021724855044e-19,0.0014285714132711291,-5.421010862427522e-20,0.004464285913854837,2.3852447794681098e-18,2.168404344971009e-19,-0.0066964286379516125,0.0,-6.165216616150315e-21,-9.215718466126788e-19,-2.710505431213761e-20,-5.421010862427522e-20,0.0013392857508733869,4.0,5.0,7.0,0.16937075555324554,-0.06642857193946838,-0.05647959187626839,-0.04357142746448517,0.0071428571827709675,0.008571428246796131,0.006428571417927742,0.005102040711790323,0.0053571430034935474,0.0029761905316263437,-0.06642857193946838,0.09428571164608002,0.008571428246796131,0.006428571417927742,-0.02142857201397419,-0.0057142856530845165,-0.004285714123398066,-0.0,5.421010862427522e-20,0.0,-0.05647959187626839,0.008571428246796131,0.05885203927755356,0.0053571430034935474,0.0,-0.004285714123398066,-5.421010862427522e-20,-0.010204081423580647,-0.0026785715017467737,-2.168404344971009e-19,-0.04357142746448517,0.006428571417927742,0.0053571430034935474,0.029999999329447746,-0.0,-0.0,-0.002142857061699033,-0.0,-0.0017857142956927419,-0.0035714285913854837,0.0071428571827709675,-0.02142857201397419,0.0,-0.0,0.0071428571827709675,0.0,0.0,0.0,0.0,0.0,0.008571428246796131,-0.0057142856530845165,-0.004285714123398066,-0.0,0.0,0.0028571428265422583,0.0,0.0,0.0,0.0,0.006428571417927742,-0.004285714123398066,-5.421010862427522e-20,-0.002142857061699033,0.0,0.0,0.0014285714132711291,0.0,0.0,-5.421010862427522e-20,0.005102040711790323,-0.0,-0.010204081423580647,-0.0,0.0,0.0,0.0,0.0025510203558951616,0.0,0.0,0.0053571430034935474,5.421010862427522e-20,-0.0026785715017467737,-0.0017857142956927419,0.0,0.0,0.0,0.0,0.0008928571478463709,5.421010862427522e-20,0.0029761905316263437,0.0,-2.168404344971009e-19,-0.0035714285913854837,0.0,0.0,-5.421010862427522e-20,0.0,5.421010862427522e-20,0.0005952381179668009,4.0,5.0,8.0,0.1522618979215622,-0.05874999985098839,-0.04994047433137894,-0.034583333879709244,0.0062500000931322575,0.007499999832361937,0.004999999888241291,0.004464285913854837,0.004166666883975267,0.0020833334419876337,-0.05874999985098839,0.08291666954755783,0.007499999832361937,0.004999999888241291,-0.01875000074505806,-0.004999999888241291,-0.0033333334140479565,1.3010426069826053e-18,-8.673617379884035e-19,8.632959798415829e-18,-0.04994047433137894,0.007499999832361937,0.05175595358014107,0.004166666883975267,-1.0245710529988017e-17,-0.0037499999161809683,1.7618285302889447e-18,-0.008928571827709675,-0.0020833334419876337,3.266159044612582e-18,-0.034583333879709244,0.004999999888241291,0.004166666883975267,0.020297618582844734,1.0625181290357943e-17,1.0191500421363742e-17,-0.0014285714132711291,1.0625181290357943e-17,-0.0011904762359336019,-0.0020833334419876337,0.0062500000931322575,-0.01875000074505806,-1.0245710529988017e-17,1.0625181290357943e-17,0.0062500000931322575,7.726996022781413e-19,1.050006112372256e-18,1.4153288789426521e-18,5.967265429321056e-19,-2.0057740190981832e-18,0.007499999832361937,-0.004999999888241291,-0.0037499999161809683,1.0191500421363742e-17,7.726996022781413e-19,0.0024999999441206455,-1.1384122811097797e-18,-1.599198204416119e-18,-1.328147661294743e-18,-8.103175017903685e-19,0.004999999888241291,-0.0033333334140479565,1.7618285302889447e-18,-0.0014285714132711291,1.050006112372256e-18,-1.1384122811097797e-18,0.0009523809421807528,-3.7947076036992655e-19,3.7947076036992655e-19,-2.399479058545287e-19,0.004464285913854837,1.3010426069826053e-18,-0.008928571827709675,1.0625181290357943e-17,1.4153288789426521e-18,-1.599198204416119e-18,-3.7947076036992655e-19,0.0022321429569274187,-2.358139725155972e-18,-5.213975309923742e-19,0.004166666883975267,-8.673617379884035e-19,-0.0020833334419876337,-0.0011904762359336019,5.967265429321056e-19,-1.328147661294743e-18,3.7947076036992655e-19,-2.358139725155972e-18,0.0005952381179668009,6.1924134099622634e-21,0.0020833334419876337,8.632959798415829e-18,3.266159044612582e-18,-0.0020833334419876337,-2.0057740190981832e-18,-8.103175017903685e-19,-2.399479058545287e-19,-5.213975309923742e-19,6.1924134099622634e-21,0.00029761905898340046,4.0,5.0,9.0,0.13830015063285828,-0.052666667848825455,-0.04476190358400345,-0.028121212497353554,0.0055555556900799274,0.006666666828095913,0.004000000189989805,0.003968254197388887,0.0033333334140479565,0.0015151514671742916,-0.052666667848825455,0.07400000095367432,0.006666666828095913,0.004000000189989805,-0.01666666753590107,-0.004444444552063942,-0.0026666666381061077,7.15573433840433e-18,-3.469446951953614e-18,8.402566836762659e-19,-0.04476190358400345,0.006666666828095913,0.04619047790765762,0.0033333334140479565,-8.944667923005412e-19,-0.0033333334140479565,5.6107462426124854e-18,-0.007936508394777775,-0.0016666667070239782,6.640738306473715e-19,-0.028121212497353554,0.004000000189989805,0.0033333334140479565,0.014389610849320889,-8.456776945386935e-18,-2.168404344971009e-19,-0.0010000000474974513,9.75781955236954e-19,-0.0008333333535119891,-0.0012987012742087245,0.0055555556900799274,-0.01666666753590107,-8.944667923005412e-19,-8.456776945386935e-18,0.0055555556900799274,1.0421384873735344e-18,3.2950706613825355e-18,-1.4354186144797275e-18,1.1715905988768582e-18,-1.2197274440461925e-19,0.006666666828095913,-0.004444444552063942,-0.0033333334140479565,-2.168404344971009e-19,1.0421384873735344e-18,0.002222222276031971,-2.981555974335137e-19,1.6534083130403943e-18,2.168404344971009e-19,-4.528726935140023e-20,0.004000000189989805,-0.0026666666381061077,5.6107462426124854e-18,-0.0010000000474974513,3.2950706613825355e-18,-2.981555974335137e-19,0.0006666666595265269,-1.0842021724855044e-18,-1.2197274440461925e-19,-7.684032261765409e-20,0.003968254197388887,7.15573433840433e-18,-0.007936508394777775,9.75781955236954e-19,-1.4354186144797275e-18,1.6534083130403943e-18,-1.0842021724855044e-18,0.0019841270986944437,6.369687763352339e-19,-1.110449518050607e-19,0.0033333334140479565,-3.469446951953614e-18,-0.0016666667070239782,-0.0008333333535119891,1.1715905988768582e-18,2.168404344971009e-19,-1.2197274440461925e-19,6.369687763352339e-19,0.00041666667675599456,-9.091106711837743e-21,0.0015151514671742916,8.402566836762659e-19,6.640738306473715e-19,-0.0012987012742087245,-1.2197274440461925e-19,-4.528726935140023e-20,-7.684032261765409e-20,-1.110449518050607e-19,-9.091106711837743e-21,0.00016233765927609056,4.0,5.0,10.0,0.12668831646442413,-0.04772727191448212,-0.04055844247341156,-0.023318182677030563,0.004999999888241291,0.006000000052154064,0.0032727273646742105,0.0035714285913854837,0.0027272726874798536,0.0011363636003807187,-0.04772727191448212,0.06681818515062332,0.006000000052154064,0.0032727273646742105,-0.014999999664723873,-0.004000000189989805,-0.0021818182431161404,-5.854691731421724e-18,-4.553649124439119e-18,-1.0570971181733668e-18,-0.04055844247341156,0.006000000052154064,0.04170779138803482,0.0027272726874798536,-1.7320129705455933e-17,-0.003000000026077032,1.463672932855431e-18,-0.0071428571827709675,-0.0013636363437399268,-1.0842021724855044e-18,-0.023318182677030563,0.0032727273646742105,0.0027272726874798536,0.010579545050859451,-1.0299920638612292e-17,-1.5178830414797062e-18,-0.0007272727089002728,-2.3852447794681098e-18,-0.000606060610152781,-0.0008522727293893695,0.004999999888241291,-0.014999999664723873,-1.7320129705455933e-17,-1.0299920638612292e-17,0.004999999888241291,4.175678869700363e-18,2.936148101404192e-18,1.3520156476772308e-18,1.082863690856817e-18,3.2864878353466853e-19,0.006000000052154064,-0.004000000189989805,-0.003000000026077032,-1.5178830414797062e-18,4.175678869700363e-18,0.0020000000949949026,-1.8973538018496328e-19,1.1926223897340549e-18,3.7947076036992655e-19,8.220214612231403e-20,0.0032727273646742105,-0.0021818182431161404,1.463672932855431e-18,-0.0007272727089002728,2.936148101404192e-18,-1.8973538018496328e-19,0.0004848484823014587,-2.303929616531697e-19,0.0,-2.928694674172509e-20,0.0035714285913854837,-5.854691731421724e-18,-0.0071428571827709675,-2.3852447794681098e-18,1.3520156476772308e-18,1.1926223897340549e-18,-2.303929616531697e-19,0.0017857142956927419,5.285485590866834e-19,1.6211691813106873e-19,0.0027272726874798536,-4.553649124439119e-18,-0.0013636363437399268,-0.000606060610152781,1.082863690856817e-18,3.7947076036992655e-19,0.0,5.285485590866834e-19,0.0003030303050763905,5.95582771864795e-20,0.0011363636003807187,-1.0570971181733668e-18,-1.0842021724855044e-18,-0.0008522727293893695,3.2864878353466853e-19,8.220214612231403e-20,-2.928694674172509e-20,1.6211691813106873e-19,5.95582771864795e-20,9.469696669839323e-05,4.0,5.0,11.0,0.11687812209129333,-0.04363636299967766,-0.037077922374010086,-0.019650349393486977,0.004545454401522875,0.005454545374959707,0.0027272726874798536,0.003246753243729472,0.0022727272007614374,0.0008741258643567562,-0.04363636299967766,0.06090909242630005,0.005454545374959707,0.0027272726874798536,-0.013636363670229912,-0.003636363660916686,-0.001818181830458343,1.951563910473908e-18,3.577867169202165e-18,5.0550926292136644e-18,-0.037077922374010086,0.005454545374959707,0.03801948204636574,0.0022727272007614374,8.51098705401121e-18,-0.0027272726874798536,4.4858864886587746e-18,-0.006493506487458944,-0.0011363636003807187,2.8053731213062427e-18,-0.019650349393486977,0.0027272726874798536,0.0022727272007614374,0.008009323850274086,1.0625181290357943e-17,4.228388472693467e-18,-0.0005454545607790351,2.710505431213761e-18,-0.00045454545761458576,-0.0005827505956403911,0.004545454401522875,-0.013636363670229912,8.51098705401121e-18,1.0625181290357943e-17,0.004545454401522875,5.587676382123535e-19,1.3938943545247187e-18,-1.1690788649468409e-18,-8.070696805127556e-19,-1.0537089863843496e-18,0.005454545374959707,-0.003636363660916686,-0.0027272726874798536,4.228388472693467e-18,5.587676382123535e-19,0.001818181830458343,-4.87890977618477e-19,2.2768245622195593e-18,3.3881317890172014e-19,-4.174576082847465e-19,0.0027272726874798536,-0.001818181830458343,4.4858864886587746e-18,-0.0005454545607790351,1.3938943545247187e-18,-4.87890977618477e-19,0.0003636363544501364,-5.149960319306146e-19,-3.2526065174565133e-19,-1.3618014011188863e-19,0.003246753243729472,1.951563910473908e-18,-0.006493506487458944,2.710505431213761e-18,-1.1690788649468409e-18,2.2768245622195593e-18,-5.149960319306146e-19,0.001623376621864736,1.260385025514399e-18,-4.2492901377005518e-19,0.0022727272007614374,3.577867169202165e-18,-0.0011363636003807187,-0.00045454545761458576,-8.070696805127556e-19,3.3881317890172014e-19,-3.2526065174565133e-19,1.260385025514399e-18,0.00022727272880729288,-7.098569333836861e-20,0.0008741258643567562,5.0550926292136644e-18,2.8053731213062427e-18,-0.0005827505956403911,-1.0537089863843496e-18,-4.174576082847465e-19,-1.3618014011188863e-19,-4.2492901377005518e-19,-7.098569333836861e-20,5.827505810884759e-05,4.0,5.0,12.0,0.10847984999418259,-0.04019230604171753,-0.03414835035800934,-0.016785714775323868,0.004166666883975267,0.004999999888241291,0.0023076923098415136,0.0029761905316263437,0.001923076924867928,0.0006868132040835917,-0.04019230604171753,0.05596153810620308,0.004999999888241291,0.0023076923098415136,-0.012500000186264515,-0.0033333334140479565,-0.0015384615398943424,4.7704895589362195e-18,2.2768245622195593e-18,8.470329472543003e-20,-0.03414835035800934,0.004999999888241291,0.03493131697177887,0.001923076924867928,-8.51098705401121e-18,-0.0024999999441206455,3.3068166260807885e-18,-0.0059523810632526875,-0.000961538462433964,8.707498697774207e-19,-0.016785714775323868,0.0023076923098415136,0.001923076924867928,0.0062112887389957905,-2.927345865710862e-18,1.1926223897340549e-18,-0.00041958040674217045,3.3610267347050637e-18,-0.00034965036320500076,-0.00041208791662938893,0.004166666883975267,-0.012500000186264515,-8.51098705401121e-18,-2.927345865710862e-18,0.004166666883975267,1.9336775772935207e-18,1.6467515770608738e-18,1.7125464535615307e-18,-1.909157410696823e-19,5.421010862427522e-20,0.004999999888241291,-0.0033333334140479565,-0.0024999999441206455,1.1926223897340549e-18,1.9336775772935207e-18,0.0016666667070239782,-2.439454888092385e-19,-3.5236570605778894e-18,-2.981555974335137e-19,-2.2332365964961558e-20,0.0023076923098415136,-0.0015384615398943424,3.3068166260807885e-18,-0.00041958040674217045,1.6467515770608738e-18,-2.439454888092385e-19,0.0002797202905640006,-4.472333961502706e-19,-1.6940658945086007e-19,-2.957491868599292e-20,0.0029761905316263437,4.7704895589362195e-18,-0.0059523810632526875,3.3610267347050637e-18,1.7125464535615307e-18,-3.5236570605778894e-18,-4.472333961502706e-19,0.0014880952658131719,-7.182839392716467e-19,-1.4023189047202357e-19,0.001923076924867928,2.2768245622195593e-18,-0.000961538462433964,-0.00034965036320500076,-1.909157410696823e-19,-2.981555974335137e-19,-1.6940658945086007e-19,-7.182839392716467e-19,0.00017482518160250038,-3.55454954227036e-20,0.0006868132040835917,8.470329472543003e-20,8.707498697774207e-19,-0.00041208791662938893,5.421010862427522e-20,-2.2332365964961558e-20,-2.957491868599292e-20,-1.4023189047202357e-19,-3.55454954227036e-20,3.7462537875398993e-05,4.0,5.0,13.0,0.10120879113674164,-0.037252746522426605,-0.03164835274219513,-0.014505494385957718,0.003846153849735856,0.004615384619683027,0.0019780220463871956,0.002747252816334367,0.0016483516665175557,0.0005494505749084055,-0.037252746522426605,0.05175824090838432,0.004615384619683027,0.0019780220463871956,-0.011538461782038212,-0.003076923079788685,-0.0013186812866479158,9.324138683375338e-18,-2.168404344971009e-18,-2.659683454378503e-18,-0.03164835274219513,0.004615384619683027,0.032307691872119904,0.0016483516665175557,8.348356728138384e-18,-0.0023076923098415136,-1.2739375526704677e-18,-0.005494505632668734,-0.0008241758332587779,-6.505213034913027e-19,-0.014505494385957718,0.0019780220463871956,0.0016483516665175557,0.0049150846898555756,-1.0408340855860843e-17,-2.8189256484623115e-18,-0.00032967032166197896,-3.2526065174565133e-18,-0.00027472528745420277,-0.00029970030300319195,0.003846153849735856,-0.011538461782038212,8.348356728138384e-18,-1.0408340855860843e-17,0.003846153849735856,1.0604466826663237e-18,1.2377834526497297e-18,-2.8283894218505307e-18,2.6608117804328137e-19,6.098637220230962e-19,0.004615384619683027,-0.003076923079788685,-0.0023076923098415136,-2.8189256484623115e-18,1.0604466826663237e-18,0.0015384615398943424,2.574980159653073e-19,-1.3552527156068805e-19,3.7947076036992655e-19,1.4372286407563584e-19,0.0019780220463871956,-0.0013186812866479158,-1.2739375526704677e-18,-0.00032967032166197896,1.2377834526497297e-18,2.574980159653073e-19,0.00021978022414259613,9.486769009248164e-20,9.486769009248164e-20,6.435016678674187e-20,0.002747252816334367,9.324138683375338e-18,-0.005494505632668734,-3.2526065174565133e-18,-2.8283894218505307e-18,-1.3552527156068805e-19,9.486769009248164e-20,0.0013736264081671834,1.0164395367051604e-18,9.219846226630398e-20,0.0016483516665175557,-2.168404344971009e-18,-0.0008241758332587779,-0.00027472528745420277,2.6608117804328137e-19,3.7947076036992655e-19,9.486769009248164e-20,1.0164395367051604e-18,0.00013736264372710139,1.1519842276231979e-20,0.0005494505749084055,-2.659683454378503e-18,-6.505213034913027e-19,-0.00029970030300319195,6.098637220230962e-19,1.4372286407563584e-19,6.435016678674187e-20,9.219846226630398e-20,1.1519842276231979e-20,2.4975024643936194e-05,4.0,5.0,14.0,0.0948520377278328,-0.03471428528428078,-0.029489796608686447,-0.012660713866353035,0.0035714285913854837,0.004285714123398066,0.001714285695925355,0.0025510203558951616,0.0014285714132711291,0.00044642857392318547,-0.03471428528428078,0.04814285784959793,0.004285714123398066,0.001714285695925355,-0.010714286006987095,-0.0028571428265422583,-0.0011428571306169033,5.854691731421724e-18,-8.673617379884035e-19,2.5963216779508826e-19,-0.029489796608686447,0.004285714123398066,0.03005102090537548,0.0014285714132711291,3.686287386450715e-18,-0.002142857061699033,-1.2468324983583301e-18,-0.005102040711790323,-0.0007142857066355646,4.0996394647108136e-19,-0.012660713866353035,0.001714285695925355,0.0014285714132711291,0.00395673094317317,4.87890977618477e-19,3.2526065174565133e-19,-0.00026373626315034926,2.710505431213761e-19,-0.00021978022414259613,-0.00022321428696159273,0.0035714285913854837,-0.010714286006987095,3.686287386450715e-18,4.87890977618477e-19,0.0035714285913854837,8.89011019172871e-19,-1.3552527156068805e-19,-1.3334050144729768e-18,6.491147991819299e-20,-2.710505431213761e-20,0.004285714123398066,-0.0028571428265422583,-0.002142857061699033,3.2526065174565133e-19,8.89011019172871e-19,0.0014285714132711291,1.6263032587282567e-19,-9.215718466126788e-19,6.776263578034403e-20,-4.5051351624586425e-20,0.001714285695925355,-0.0011428571306169033,-1.2468324983583301e-18,-0.00026373626315034926,-1.3552527156068805e-19,1.6263032587282567e-19,0.00017582417058292776,8.809142651444724e-20,8.470329472543003e-20,-3.282252670610414e-21,0.0025510203558951616,5.854691731421724e-18,-0.005102040711790323,2.710505431213761e-19,-1.3334050144729768e-18,-9.215718466126788e-19,8.809142651444724e-20,0.0012755101779475808,3.8624702394796095e-19,-7.022585685990477e-20,0.0014285714132711291,-8.673617379884035e-19,-0.0007142857066355646,-0.00021978022414259613,6.491147991819299e-20,6.776263578034403e-20,8.470329472543003e-20,3.8624702394796095e-19,0.00010989011207129806,-4.417104485251604e-21,0.00044642857392318547,2.5963216779508826e-19,4.0996394647108136e-19,-0.00022321428696159273,-2.710505431213761e-20,-4.5051351624586425e-20,-3.282252670610414e-21,-7.022585685990477e-20,-4.417104485251604e-21,1.7170330465887673e-05,4.0,5.0,15.0,0.0892471969127655,-0.032499998807907104,-0.02760714292526245,-0.011147058568894863,0.0033333334140479565,0.004000000189989805,0.001500000013038516,0.0023809524718672037,0.0012499999720603228,0.0003676470660138875,-0.032499998807907104,0.04500000178813934,0.004000000189989805,0.001500000013038516,-0.009999999776482582,-0.0026666666381061077,-0.0010000000474974513,-1.1058862159352145e-17,-2.5478751053409354e-18,-7.407015161488111e-19,-0.02760714292526245,0.004000000189989805,0.028089284896850586,0.0012499999720603228,-9.540979117872439e-18,-0.0020000000949949026,-4.065758146820642e-18,-0.004761904943734407,-0.0006249999860301614,-6.708500942254059e-19,-0.011147058568894863,0.001500000013038516,0.0012499999720603228,0.0032327084336429834,-2.3852447794681098e-18,-2.168404344971009e-18,-0.00021428571199066937,-3.7947076036992655e-18,-0.00017857142665889114,-0.00016968326235655695,0.0033333334140479565,-0.009999999776482582,-9.540979117872439e-18,-2.3852447794681098e-18,0.0033333334140479565,1.6567066957329495e-18,1.6263032587282567e-19,1.0644900448980595e-18,3.4280290364061067e-19,8.131516293641283e-20,0.004000000189989805,-0.0026666666381061077,-0.0020000000949949026,-2.168404344971009e-18,1.6567066957329495e-18,0.0013333333190530539,2.574980159653073e-19,1.5043305143236374e-18,2.1006417091906648e-19,1.0001287628718365e-19,0.001500000013038516,-0.0010000000474974513,-4.065758146820642e-18,-0.00021428571199066937,1.6263032587282567e-19,2.574980159653073e-19,0.0001428571413271129,6.301925127571995e-19,1.4568966692773966e-19,3.4463653041409345e-20,0.0023809524718672037,-1.1058862159352145e-17,-0.004761904943734407,-3.7947076036992655e-18,1.0644900448980595e-18,1.5043305143236374e-18,6.301925127571995e-19,0.0011904762359336019,5.149960319306146e-19,1.2235996832887063e-19,0.0012499999720603228,-2.5478751053409354e-18,-0.0006249999860301614,-0.00017857142665889114,3.4280290364061067e-19,2.1006417091906648e-19,1.4568966692773966e-19,5.149960319306146e-19,8.928571332944557e-05,4.649716316892682e-21,0.0003676470660138875,-7.407015161488111e-19,-6.708500942254059e-19,-0.00016968326235655695,8.131516293641283e-20,1.0001287628718365e-19,3.4463653041409345e-20,1.2235996832887063e-19,4.649716316892682e-21,1.212023289554054e-05,4.0,5.0,16.0,0.08426820486783981,-0.030551470816135406,-0.025950631126761436,-0.009889706037938595,0.0031250000465661287,0.0037499999161809683,0.0013235294027253985,0.0022321429569274187,0.001102941227145493,0.00030637255986221135,-0.030551470816135406,0.04224264621734619,0.0037499999161809683,0.0013235294027253985,-0.00937500037252903,-0.0024999999441206455,-0.0008823529351502657,-1.734723475976807e-17,-1.1926223897340549e-18,9.345083310075487e-19,-0.025950631126761436,0.0037499999161809683,0.026368172839283943,0.001102941227145493,-8.890457814381136e-18,-0.0018749999580904841,-3.0899761915836876e-18,-0.004464285913854837,-0.0005514706135727465,2.0328790734103208e-19,-0.009889706037938595,0.0013235294027253985,0.001102941227145493,0.0026754201389849186,2.3310346708438345e-18,4.87890977618477e-19,-0.00017647058120928705,-2.439454888092385e-18,-0.00014705881767440587,-0.00013130252773407847,0.0031250000465661287,-0.00937500037252903,-8.890457814381136e-18,2.3310346708438345e-18,0.0031250000465661287,1.9220044044891724e-18,7.453889935837843e-19,1.3337856209523278e-18,1.104088111399162e-19,-2.168404344971009e-19,0.0037499999161809683,-0.0024999999441206455,-0.0018749999580904841,4.87890977618477e-19,1.9220044044891724e-18,0.0012499999720603228,1.6263032587282567e-19,4.20128341838133e-18,1.4907779871675686e-19,-6.492497330193526e-20,0.0013235294027253985,-0.0008823529351502657,-3.0899761915836876e-18,-0.00017647058120928705,7.453889935837843e-19,1.6263032587282567e-19,0.00011764706141548231,5.421010862427522e-19,7.115076756936123e-20,-1.6940658945086007e-20,0.0022321429569274187,-1.734723475976807e-17,-0.004464285913854837,-2.439454888092385e-18,1.3337856209523278e-18,4.20128341838133e-18,5.421010862427522e-19,0.0011160714784637094,7.995991022080595e-19,-9.535880273179086e-21,0.001102941227145493,-1.1926223897340549e-18,-0.0005514706135727465,-0.00014705881767440587,1.104088111399162e-19,1.4907779871675686e-19,7.115076756936123e-20,7.995991022080595e-19,7.352940883720294e-05,-5.755054989668705e-21,0.00030637255986221135,9.345083310075487e-19,2.0328790734103208e-19,-0.00013130252773407847,-2.168404344971009e-19,-6.492497330193526e-20,-1.6940658945086007e-20,-9.535880273179086e-21,-5.755054989668705e-21,8.753501788305584e-06,4.0,6.0,3.0,0.2708333432674408,-0.1190476194024086,-0.08839285373687744,-0.14464285969734192,0.013888888992369175,0.014285714365541935,0.02500000037252903,0.0074404762126505375,0.01785714365541935,0.02083333395421505,-0.1190476194024086,0.1765872985124588,0.014285714365541935,0.02500000037252903,-0.0416666679084301,-0.009523809887468815,-0.01666666753590107,-1.3010426069826053e-18,1.638604856153598e-19,7.703719777548943e-33,-0.08839285373687744,0.014285714365541935,0.07627975940704346,0.01785714365541935,0.0,-0.0057142856530845165,0.0,-0.01116071455180645,-0.0071428571827709675,5.540885876798707e-17,-0.14464285969734192,0.02500000037252903,0.01785714365541935,0.3529762029647827,0.0,1.638604856153598e-19,-0.02500000037252903,2.0145451114414505e-17,-0.01785714365541935,-0.125,0.013888888992369175,-0.0416666679084301,0.0,0.0,0.013888888992369175,0.0,0.0,0.0,0.0,-0.0,0.014285714365541935,-0.009523809887468815,-0.0057142856530845165,1.638604856153598e-19,0.0,0.003809523768723011,0.0,5.895803745238952e-19,-6.554418907626509e-20,-3.0814879110195774e-33,0.02500000037252903,-0.01666666753590107,0.0,-0.02500000037252903,0.0,0.0,0.01666666753590107,0.0,0.0,-0.0,0.0074404762126505375,-1.3010426069826053e-18,-0.01116071455180645,2.0145451114414505e-17,0.0,5.895803745238952e-19,0.0,0.0022321429569274187,-1.2801599671296096e-19,-9.912705813347644e-18,0.01785714365541935,1.638604856153598e-19,-0.0071428571827709675,-0.01785714365541935,0.0,-6.554418907626509e-20,0.0,-1.2801599671296096e-19,0.0071428571827709675,-5.845330114839155e-18,0.02083333395421505,7.703719777548943e-33,5.540885876798707e-17,-0.125,-0.0,-3.0814879110195774e-33,-0.0,-9.912705813347644e-18,-5.845330114839155e-18,0.0625,4.0,6.0,4.0,0.22377976775169373,-0.09303571283817291,-0.06897321343421936,-0.09303571283817291,0.010416666977107525,0.010714286006987095,0.014999999664723873,0.005580357275903225,0.010714286006987095,0.010416666977107525,-0.09303571283817291,0.1349404752254486,0.010714286006987095,0.014999999664723873,-0.03125,-0.0071428571827709675,-0.009999999776482582,-1.3010426069826053e-18,-0.0,2.5679065312926504e-33,-0.06897321343421936,0.010714286006987095,0.058281250298023224,0.010714286006987095,0.0,-0.004285714123398066,0.0,-0.00837053544819355,-0.004285714123398066,1.9802273730600955e-17,-0.09303571283817291,0.014999999664723873,0.010714286006987095,0.1349404752254486,0.0,3.0814879110195774e-33,-0.009999999776482582,1.0309214012794325e-17,-0.0071428571827709675,-0.03125,0.010416666977107525,-0.03125,0.0,0.0,0.010416666977107525,0.0,0.0,0.0,0.0,-0.0,0.010714286006987095,-0.0071428571827709675,-0.004285714123398066,3.0814879110195774e-33,0.0,0.0028571428265422583,0.0,5.680843285479031e-19,0.0,-1.0271626676183578e-33,0.014999999664723873,-0.009999999776482582,0.0,-0.009999999776482582,0.0,0.0,0.006666666828095913,0.0,0.0,-0.0,0.005580357275903225,-1.3010426069826053e-18,-0.00837053544819355,1.0309214012794325e-17,0.0,5.680843285479031e-19,0.0,0.0016741071594879031,3.9650821883372687e-20,-3.469446951953614e-18,0.010714286006987095,-0.0,-0.004285714123398066,-0.0071428571827709675,0.0,0.0,0.0,3.9650821883372687e-20,0.0028571428265422583,-1.6366924404267695e-18,0.010416666977107525,2.5679065312926504e-33,1.9802273730600955e-17,-0.03125,-0.0,-1.0271626676183578e-33,-0.0,-3.469446951953614e-18,-1.6366924404267695e-18,0.010416666977107525,4.0,6.0,5.0,0.19083333015441895,-0.07642856985330582,-0.056607142090797424,-0.06499999761581421,0.008333333767950535,0.008571428246796131,0.009999999776482582,0.004464285913854837,0.0071428571827709675,0.0059523810632526875,-0.07642856985330582,0.10928571224212646,0.008571428246796131,0.009999999776482582,-0.02500000037252903,-0.0057142856530845165,-0.006666666828095913,2.1141942363467336e-18,-3.2526065174565133e-19,-3.0357660829594124e-18,-0.056607142090797424,0.008571428246796131,0.04719642922282219,0.0071428571827709675,0.0,-0.00342857139185071,-3.2526065174565133e-19,-0.0066964286379516125,-0.0028571428265422583,8.456776945386935e-18,-0.06499999761581421,0.009999999776482582,0.0071428571827709675,0.0682142823934555,-0.0,5.182725007992857e-20,-0.004999999888241291,9.235269707085091e-18,-0.0035714285913854837,-0.011904762126505375,0.008333333767950535,-0.02500000037252903,0.0,-0.0,0.008333333767950535,0.0,0.0,0.0,0.0,0.0,0.008571428246796131,-0.0057142856530845165,-0.00342857139185071,5.182725007992857e-20,0.0,0.0022857142612338066,-3.79885604371819e-21,-8.673617379884035e-19,-2.7134686603553903e-21,-5.662243951691191e-21,0.009999999776482582,-0.006666666828095913,-3.2526065174565133e-19,-0.004999999888241291,0.0,-3.79885604371819e-21,0.0033333334140479565,0.0,1.6263032587282567e-19,1.4094628242311558e-18,0.004464285913854837,2.1141942363467336e-18,-0.0066964286379516125,9.235269707085091e-18,0.0,-8.673617379884035e-19,0.0,0.0013392857508733869,-9.75781955236954e-19,-1.6534083130403943e-18,0.0071428571827709675,-3.2526065174565133e-19,-0.0028571428265422583,-0.0035714285913854837,0.0,-2.7134686603553903e-21,1.6263032587282567e-19,-9.75781955236954e-19,0.0014285714132711291,0.0,0.0059523810632526875,-3.0357660829594124e-18,8.456776945386935e-18,-0.011904762126505375,0.0,-5.662243951691191e-21,1.4094628242311558e-18,-1.6534083130403943e-18,0.0,0.0029761905316263437,4.0,6.0,6.0,0.16641156375408173,-0.06488095223903656,-0.048022959381341934,-0.048022959381341934,0.0069444444961845875,0.0071428571827709675,0.0071428571827709675,0.0037202381063252687,0.005102040711790323,0.0037202381063252687,-0.06488095223903656,0.09186507761478424,0.0071428571827709675,0.0071428571827709675,-0.02083333395421505,-0.004761904943734407,-0.004761904943734407,-8.131516293641283e-19,-5.963111948670274e-19,-1.0842021724855044e-18,-0.048022959381341934,0.0071428571827709675,0.039670493453741074,0.005102040711790323,0.0,-0.0028571428265422583,-5.421010862427522e-19,-0.005580357275903225,-0.0020408162381500006,4.662069341687669e-18,-0.048022959381341934,0.0071428571827709675,0.005102040711790323,0.039670493453741074,-0.0,9.430331542341179e-21,-0.0028571428265422583,6.921572741880368e-18,-0.0020408162381500006,-0.005580357275903225,0.0069444444961845875,-0.02083333395421505,0.0,-0.0,0.0069444444961845875,0.0,0.0,0.0,0.0,0.0,0.0071428571827709675,-0.004761904943734407,-0.0028571428265422583,9.430331542341179e-21,0.0,0.0019047618843615055,-6.791900542980762e-22,3.2526065174565133e-19,-4.851357747073821e-22,-1.2859762585262078e-20,0.0071428571827709675,-0.004761904943734407,-5.421010862427522e-19,-0.0028571428265422583,0.0,-6.791900542980762e-22,0.0019047618843615055,6.776263578034403e-21,2.168404344971009e-19,3.2526065174565133e-19,0.0037202381063252687,-8.131516293641283e-19,-0.005580357275903225,6.921572741880368e-18,0.0,3.2526065174565133e-19,6.776263578034403e-21,0.0011160714784637094,-8.673617379884035e-19,-9.622294280808852e-19,0.005102040711790323,-5.963111948670274e-19,-0.0020408162381500006,-0.0020408162381500006,0.0,-4.851357747073821e-22,2.168404344971009e-19,-8.673617379884035e-19,0.0008163265301845968,1.0842021724855044e-19,0.0037202381063252687,-1.0842021724855044e-18,4.662069341687669e-18,-0.005580357275903225,0.0,-1.2859762585262078e-20,3.2526065174565133e-19,-9.622294280808852e-19,1.0842021724855044e-19,0.0011160714784637094,4.0,6.0,7.0,0.14756235480308533,-0.05637755244970322,-0.041709184646606445,-0.036947280168533325,0.0059523810632526875,0.006122448947280645,0.0053571430034935474,0.0031887756194919348,0.0038265306502580643,0.0024801588151603937,-0.05637755244970322,0.07925169914960861,0.006122448947280645,0.0053571430034935474,-0.01785714365541935,-0.004081632476300001,-0.0035714285913854837,-8.402566836762659e-19,-5.421010862427522e-20,-3.2526065174565133e-19,-0.041709184646606445,0.006122448947280645,0.034221939742565155,0.0038265306502580643,-3.3986419458803e-18,-0.0024489795323461294,-9.75781955236954e-19,-0.00478316331282258,-0.0015306122368201613,3.577867169202165e-18,-0.036947280168533325,0.0053571430034935474,0.0038265306502580643,0.025212585926055908,-2.9738117026452626e-18,-8.100290225517406e-19,-0.0017857142956927419,4.756112332709435e-18,-0.0012755101779475808,-0.0029761905316263437,0.0059523810632526875,-0.01785714365541935,-3.3986419458803e-18,-2.9738117026452626e-18,0.0059523810632526875,2.2657612283218157e-18,1.9825412040285595e-18,4.333342374871281e-34,5.236455399153851e-35,1.4444474582904269e-34,0.006122448947280645,-0.004081632476300001,-0.0024489795323461294,-8.100290225517406e-19,2.2657612283218157e-18,0.0016326530603691936,5.4187423195975955e-19,3.2526065174565133e-19,1.3874491053633733e-20,-1.0488588572912911e-21,0.0053571430034935474,-0.0035714285913854837,-9.75781955236954e-19,-0.0017857142956927419,1.9825412040285595e-18,5.4187423195975955e-19,0.0011904762359336019,0.0,2.710505431213761e-20,5.421010862427522e-20,0.0031887756194919348,-8.402566836762659e-19,-0.00478316331282258,4.756112332709435e-18,4.333342374871281e-34,3.2526065174565133e-19,0.0,0.0009566326625645161,-4.607859233063394e-19,-5.963111948670274e-19,0.0038265306502580643,-5.421010862427522e-20,-0.0015306122368201613,-0.0012755101779475808,5.236455399153851e-35,1.3874491053633733e-20,2.710505431213761e-20,-4.607859233063394e-19,0.0005102040595375001,-1.6263032587282567e-19,0.0024801588151603937,-3.2526065174565133e-19,3.577867169202165e-18,-0.0029761905316263437,1.4444474582904269e-34,-1.0488588572912911e-21,5.421010862427522e-20,-5.963111948670274e-19,-1.6263032587282567e-19,0.0004960317746736109,4.0,6.0,8.0,0.1325644850730896,-0.0498511902987957,-0.03686755895614624,-0.02931547537446022,0.0052083334885537624,0.0053571430034935474,0.004166666883975267,0.0027901786379516125,0.0029761905316263437,0.0017361111240461469,-0.0498511902987957,0.069692462682724,0.0053571430034935474,0.004166666883975267,-0.015625,-0.0035714285913854837,-0.0027777778450399637,-1.5407439555097887e-33,4.336808689942018e-19,4.87890977618477e-19,-0.03686755895614624,0.0053571430034935474,0.030093006789684296,0.0029761905316263437,0.0,-0.002142857061699033,4.336808689942018e-19,-0.004185267724096775,-0.0011904762359336019,2.710505431213761e-18,-0.02931547537446022,0.004166666883975267,0.0029761905316263437,0.017056405544281006,-0.0,-0.0,-0.0011904762359336019,4.1859263967189764e-18,-0.0008503401186317205,-0.0017361111240461469,0.0052083334885537624,-0.015625,0.0,-0.0,0.0052083334885537624,0.0,0.0,0.0,0.0,0.0,0.0053571430034935474,-0.0035714285913854837,-0.002142857061699033,-0.0,0.0,0.0014285714132711291,0.0,0.0,0.0,0.0,0.004166666883975267,-0.0027777778450399637,4.336808689942018e-19,-0.0011904762359336019,0.0,0.0,0.0007936508045531809,4.333342374871281e-34,-1.2874900798265365e-19,-1.3552527156068805e-19,0.0027901786379516125,-1.5407439555097887e-33,-0.004185267724096775,4.1859263967189764e-18,0.0,0.0,4.333342374871281e-34,0.0008370535797439516,-5.178882689424063e-19,-4.1302940027302046e-19,0.0029761905316263437,4.336808689942018e-19,-0.0011904762359336019,-0.0008503401186317205,0.0,0.0,-1.2874900798265365e-19,-5.178882689424063e-19,0.0003401360590942204,-1.8973538018496328e-19,0.0017361111240461469,4.87890977618477e-19,2.710505431213761e-18,-0.0017361111240461469,0.0,0.0,-1.3552527156068805e-19,-4.1302940027302046e-19,-1.8973538018496328e-19,0.00024801588733680546,4.0,6.0,9.0,0.12034270912408829,-0.044682539999485016,-0.03303571417927742,-0.023831168189644814,0.004629629664123058,0.004761904943734407,0.0033333334140479565,0.0024801588151603937,0.0023809524718672037,0.0012626262614503503,-0.044682539999485016,0.06219576671719551,0.004761904943734407,0.0033333334140479565,-0.013888888992369175,-0.0031746032182127237,-0.002222222276031971,5.7777898331617076e-34,8.131516293641283e-20,-2.710505431213761e-19,-0.03303571417927742,0.004761904943734407,0.026855159550905228,0.0023809524718672037,0.0,-0.0019047618843615055,8.131516293641283e-20,-0.0037202381063252687,-0.0009523809421807528,1.5720931501039814e-18,-0.023831168189644814,0.0033333334140479565,0.0023809524718672037,0.012090547941625118,-0.0,-0.0,-0.0008333333535119891,3.1400247545462086e-18,-0.0005952381179668009,-0.0010822510812431574,0.004629629664123058,-0.013888888992369175,0.0,-0.0,0.004629629664123058,0.0,0.0,0.0,0.0,0.0,0.004761904943734407,-0.0031746032182127237,-0.0019047618843615055,-0.0,0.0,0.0012698412174358964,0.0,0.0,0.0,0.0,0.0033333334140479565,-0.002222222276031971,8.131516293641283e-20,-0.0008333333535119891,0.0,0.0,0.0005555555690079927,-1.4444474582904269e-34,-2.0328790734103208e-20,6.776263578034403e-20,0.0024801588151603937,5.7777898331617076e-34,-0.0037202381063252687,3.1400247545462086e-18,0.0,0.0,-1.4444474582904269e-34,0.0007440476329065859,-3.2224159760619763e-19,-2.9180259183516504e-19,0.0023809524718672037,8.131516293641283e-20,-0.0009523809421807528,-0.0005952381179668009,0.0,0.0,-2.0328790734103208e-20,-3.2224159760619763e-19,0.0002380952355451882,-2.710505431213761e-20,0.0012626262614503503,-2.710505431213761e-19,1.5720931501039814e-18,-0.0010822510812431574,0.0,0.0,6.776263578034403e-20,-2.9180259183516504e-19,-2.710505431213761e-20,0.00013528138515539467,4.0,6.0,10.0,0.11018939316272736,-0.04048701375722885,-0.029926948249340057,-0.019756494089961052,0.004166666883975267,0.004285714123398066,0.0027272726874798536,0.0022321429569274187,0.0019480519695207477,0.0009469697251915932,-0.04048701375722885,0.05615800991654396,0.004285714123398066,0.0027272726874798536,-0.012500000186264515,-0.0028571428265422583,-0.001818181830458343,2.211772431870429e-17,3.7947076036992655e-18,-6.118966010965066e-18,-0.029926948249340057,0.004285714123398066,0.024247564375400543,0.0019480519695207477,2.3337451762750483e-17,-0.001714285695925355,4.960224939121183e-18,-0.0033482143189758062,-0.0007792207761667669,-2.964615315390051e-18,-0.019756494089961052,0.0027272726874798536,0.0019480519695207477,0.00888843834400177,-1.0733601507606494e-17,-2.0599841277224584e-18,-0.000606060610152781,1.0842021724855044e-19,-0.00043290044413879514,-0.0007102272938936949,0.004166666883975267,-0.012500000186264515,2.3337451762750483e-17,-1.0733601507606494e-17,0.004166666883975267,-4.9494967167691e-19,7.652094818314737e-19,-3.806816700686429e-18,-5.838316243630165e-19,1.2705494208814505e-18,0.004285714123398066,-0.0028571428265422583,-0.001714285695925355,-2.0599841277224584e-18,-4.9494967167691e-19,0.0011428571306169033,-2.710505431213761e-19,-2.358139725155972e-18,-5.55653613398821e-19,4.353973204640376e-19,0.0027272726874798536,-0.001818181830458343,4.960224939121183e-18,-0.000606060610152781,7.652094818314737e-19,-2.710505431213761e-19,0.0004040404164697975,-7.995991022080595e-19,-9.486769009248164e-20,1.9162104178885447e-19,0.0022321429569274187,2.211772431870429e-17,-0.0033482143189758062,1.0842021724855044e-19,-3.806816700686429e-18,-2.358139725155972e-18,-7.995991022080595e-19,0.0006696428754366934,-6.844026213814747e-19,3.1951526200601114e-19,0.0019480519695207477,3.7947076036992655e-18,-0.0007792207761667669,-0.00043290044413879514,-5.838316243630165e-19,-5.55653613398821e-19,-9.486769009248164e-20,-6.844026213814747e-19,0.00017316016601398587,9.658127227956766e-20,0.0009469697251915932,-6.118966010965066e-18,-2.964615315390051e-18,-0.0007102272938936949,1.2705494208814505e-18,4.353973204640376e-19,1.9162104178885447e-19,3.1951526200601114e-19,9.658127227956766e-20,7.891414134064689e-05,4.0,6.0,11.0,0.10161921381950378,-0.037012986838817596,-0.02735389582812786,-0.016645854339003563,0.0037878789007663727,0.0038961039390414953,0.0022727272007614374,0.0020292208064347506,0.001623376621864736,0.0007284382008947432,-0.037012986838817596,0.05119047686457634,0.0038961039390414953,0.0022727272007614374,-0.011363636702299118,-0.002597402548417449,-0.0015151514671742916,-5.7462715141731735e-18,-1.734723475976807e-18,-1.0706496453294356e-18,-0.02735389582812786,0.0038961039390414953,0.022102272137999535,0.001623376621864736,-7.047314121155779e-18,-0.0015584415523335338,-6.2341624917916505e-19,-0.003043831093236804,-0.0006493506371043622,-9.486769009248164e-20,-0.016645854339003563,0.0022727272007614374,0.001623376621864736,0.006728549022227526,-3.903127820947816e-18,-6.505213034913027e-19,-0.00045454545761458576,-2.710505431213761e-19,-0.0003246753185521811,-0.0004856254963669926,0.0037878789007663727,-0.011363636702299118,-7.047314121155779e-18,-3.903127820947816e-18,0.0037878789007663727,-1.2903660834188068e-18,1.027384234808488e-19,1.2021872859521587e-18,4.266303174949236e-19,2.744386749103933e-19,0.0038961039390414953,-0.002597402548417449,-0.0015584415523335338,-6.505213034913027e-19,-1.2903660834188068e-18,0.0010389609960839152,1.3552527156068805e-20,7.860465750519907e-19,1.0842021724855044e-19,4.296718606072811e-20,0.0022727272007614374,-0.0015151514671742916,-6.2341624917916505e-19,-0.00045454545761458576,1.027384234808488e-19,1.3552527156068805e-20,0.0003030303050763905,5.421010862427522e-20,6.776263578034403e-21,3.0484019259757105e-20,0.0020292208064347506,-5.7462715141731735e-18,-0.003043831093236804,-2.710505431213761e-19,1.2021872859521587e-18,7.860465750519907e-19,5.421010862427522e-20,0.0006087662186473608,1.2197274440461925e-19,-9.098205601704067e-21,0.001623376621864736,-1.734723475976807e-18,-0.0006493506371043622,-0.0003246753185521811,4.266303174949236e-19,1.0842021724855044e-19,6.776263578034403e-21,1.2197274440461925e-19,0.0001298701245104894,1.5961297092714004e-21,0.0007284382008947432,-1.0706496453294356e-18,-9.486769009248164e-20,-0.0004856254963669926,2.744386749103933e-19,4.296718606072811e-20,3.0484019259757105e-20,-9.098205601704067e-21,1.5961297092714004e-21,4.856254963669926e-05,4.0,6.0,12.0,0.09428800642490387,-0.034088827669620514,-0.025188874453306198,-0.014217033050954342,0.0034722222480922937,0.0035714285913854837,0.001923076924867928,0.0018601190531626344,0.0013736264081671834,0.0005723443464376032,-0.034088827669620514,0.04703143984079361,0.0035714285913854837,0.001923076924867928,-0.010416666977107525,-0.0023809524718672037,-0.0012820513220503926,1.8431436932253575e-18,-1.1926223897340549e-18,-5.72594272343907e-19,-0.025188874453306198,0.0035714285913854837,0.02030620351433754,0.0013736264081671834,1.748276003132876e-17,-0.0014285714132711291,-5.89534931288993e-18,-0.0027901786379516125,-0.0005494505749084055,-1.9651164376299768e-18,-0.014217033050954342,0.001923076924867928,0.0013736264081671834,0.005217698868364096,1.734723475976807e-18,-3.0357660829594124e-18,-0.00034965036320500076,-6.0173220572945496e-18,-0.00024975024280138314,-0.00034340660204179585,0.0034722222480922937,-0.010416666977107525,1.748276003132876e-17,1.734723475976807e-18,0.0034722222480922937,-2.463709891603971e-18,3.4926700993498287e-19,-1.9454992290178223e-18,-5.173169456330735e-19,-5.590417451878382e-20,0.0035714285913854837,-0.0023809524718672037,-0.0014285714132711291,-3.0357660829594124e-18,-2.463709891603971e-18,0.0009523809421807528,3.7947076036992655e-19,-2.574980159653073e-19,2.710505431213761e-19,1.4905352613565726e-19,0.001923076924867928,-0.0012820513220503926,-5.89534931288993e-18,-0.00034965036320500076,3.4926700993498287e-19,3.7947076036992655e-19,0.00023310023243539035,6.572975670693371e-19,3.2526065174565133e-19,5.105043701186178e-20,0.0018601190531626344,1.8431436932253575e-18,-0.0027901786379516125,-6.0173220572945496e-18,-1.9454992290178223e-18,-2.574980159653073e-19,6.572975670693371e-19,0.0005580357392318547,6.674619624363887e-19,2.545109375264076e-19,0.0013736264081671834,-1.1926223897340549e-18,-0.0005494505749084055,-0.00024975024280138314,-5.173169456330735e-19,2.710505431213761e-19,3.2526065174565133e-19,6.674619624363887e-19,9.990009857574478e-05,6.71900393883498e-20,0.0005723443464376032,-5.72594272343907e-19,-1.9651164376299768e-18,-0.00034340660204179585,-5.590417451878382e-20,1.4905352613565726e-19,5.105043701186178e-20,2.545109375264076e-19,6.71900393883498e-20,3.121878035017289e-05,4.0,6.0,13.0,0.08794479072093964,-0.031593408435583115,-0.023341836407780647,-0.012284144759178162,0.0032051282469183207,0.0032967033330351114,0.0016483516665175557,0.0017170329811051488,0.0011773940641433,0.0004578754596877843,-0.031593408435583115,0.043498169630765915,0.0032967033330351114,0.0016483516665175557,-0.009615384973585606,-0.002197802299633622,-0.001098901149816811,8.998878031629687e-18,3.957337929572091e-18,2.913793338554793e-18,-0.023341836407780647,0.0032967033330351114,0.018780415877699852,0.0011773940641433,1.52059354691092e-17,-0.0013186812866479158,3.496552006265752e-18,-0.002575549529865384,-0.00047095760237425566,1.2976544751935881e-18,-0.012284144759178162,0.0016483516665175557,0.0011773940641433,0.0041286093182861805,9.486769009248164e-18,4.87890977618477e-18,-0.00027472528745420277,3.1712913545201005e-18,-0.00019623234402388334,-0.00024975024280138314,0.0032051282469183207,-0.009615384973585606,1.52059354691092e-17,9.486769009248164e-18,0.0032051282469183207,-1.604000815052602e-18,-5.702174205525242e-19,-1.7745377468105157e-18,-5.987462077952304e-19,-5.692061405548898e-19,0.0032967033330351114,-0.002197802299633622,-0.0013186812866479158,4.87890977618477e-18,-1.604000815052602e-18,0.0008791208965703845,-4.607859233063394e-19,-5.014435047745458e-19,-3.7947076036992655e-19,-2.364545411819583e-19,0.0016483516665175557,-0.001098901149816811,3.496552006265752e-18,-0.00027472528745420277,-5.702174205525242e-19,-4.607859233063394e-19,0.00018315018678549677,-3.1848438816761693e-19,-1.6940658945086007e-19,-7.640308657808592e-20,0.0017170329811051488,8.998878031629687e-18,-0.002575549529865384,3.1712913545201005e-18,-1.7745377468105157e-18,-5.014435047745458e-19,-3.1848438816761693e-19,0.000515109917614609,-3.9979955110402976e-19,-1.2578138121284602e-19,0.0011773940641433,3.957337929572091e-18,-0.00047095760237425566,-0.00019623234402388334,-5.987462077952304e-19,-3.7947076036992655e-19,-1.6940658945086007e-19,-3.9979955110402976e-19,7.849293615436181e-05,-3.846537836153043e-20,0.0004578754596877843,2.913793338554793e-18,1.2976544751935881e-18,-0.00024975024280138314,-5.692061405548898e-19,-2.364545411819583e-19,-7.640308657808592e-20,-1.2578138121284602e-19,-3.846537836153043e-20,2.0812520233448595e-05,4.0,6.0,14.0,0.08240221440792084,-0.029438775032758713,-0.021747449412941933,-0.010720663703978062,0.0029761905316263437,0.0030612244736403227,0.0014285714132711291,0.0015943878097459674,0.0010204081190750003,0.00037202381645329297,-0.029438775032758713,0.04045918211340904,0.0030612244736403227,0.0014285714132711291,-0.008928571827709675,-0.0020408162381500006,-0.0009523809421807528,-3.0357660829594124e-18,-1.0299920638612292e-18,-5.671831152705265e-19,-0.021747449412941933,0.0030612244736403227,0.017468111589550972,0.0010204081190750003,-3.686287386450715e-18,-0.0012244897661730647,-1.8973538018496328e-18,-0.00239158165641129,-0.0004081632650922984,-3.8285889215894375e-19,-0.010720663703978062,0.0014285714132711291,0.0010204081190750003,0.0033234399743378162,5.421010862427522e-20,-9.75781955236954e-19,-0.00021978022414259613,-1.463672932855431e-18,-0.00015698587230872363,-0.00018601190822664648,0.0029761905316263437,-0.008928571827709675,-3.686287386450715e-18,5.421010862427522e-20,0.0029761905316263437,-9.610669679016097e-20,-1.1722935989999517e-18,3.6845938375440893e-19,1.5769981243412677e-19,9.486769009248164e-20,0.0030612244736403227,-0.0020408162381500006,-0.0012244897661730647,-9.75781955236954e-19,-9.610669679016097e-20,0.0008163265301845968,1.2197274440461925e-19,6.098637220230962e-20,8.131516293641283e-20,4.6174911696852057e-20,0.0014285714132711291,-0.0009523809421807528,-1.8973538018496328e-18,-0.00021978022414259613,-1.1722935989999517e-18,1.2197274440461925e-19,0.00014652014942839742,2.507217523872729e-19,6.437450399132683e-20,1.556423040579777e-20,0.0015943878097459674,-3.0357660829594124e-18,-0.00239158165641129,-1.463672932855431e-18,3.6845938375440893e-19,6.098637220230962e-20,2.507217523872729e-19,0.00047831633128225803,1.1519648082658485e-19,6.13995553806284e-20,0.0010204081190750003,-1.0299920638612292e-18,-0.0004081632650922984,-0.00015698587230872363,1.5769981243412677e-19,8.131516293641283e-20,6.437450399132683e-20,1.1519648082658485e-19,6.27943518338725e-05,2.1214543246505163e-21,0.00037202381645329297,-5.671831152705265e-19,-3.8285889215894375e-19,-0.00018601190822664648,9.486769009248164e-20,4.6174911696852057e-20,1.556423040579777e-20,6.13995553806284e-20,2.1214543246505163e-21,1.430860811524326e-05,4.0,6.0,15.0,0.07751750946044922,-0.027559524402022362,-0.020357143133878708,-0.009438024833798409,0.0027777778450399637,0.0028571428265422583,0.0012499999720603228,0.0014880952658131719,0.0008928571478463709,0.00030637255986221135,-0.027559524402022362,0.03781745955348015,0.0028571428265422583,0.0012499999720603228,-0.008333333767950535,-0.0019047618843615055,-0.0008333333535119891,-3.469446951953614e-18,-1.5178830414797062e-18,-3.6319339041618297e-20,-0.020357143133878708,0.0028571428265422583,0.016327381134033203,0.0008928571478463709,-1.3227266504323154e-17,-0.0011428571306169033,1.1926223897340549e-18,-0.0022321429569274187,-0.0003571428533177823,6.437450399132683e-19,-0.009438024833798409,0.0012499999720603228,0.0008928571478463709,0.0027151822578161955,-2.439454888092385e-18,1.0299920638612292e-18,-0.00017857142665889114,1.951563910473908e-18,-0.00012755101488437504,-0.00014140272105578333,0.0027777778450399637,-0.008333333767950535,-1.3227266504323154e-17,-2.439454888092385e-18,0.0027777778450399637,-3.8837551476042475e-19,2.0328790734103208e-20,1.8837185566323087e-18,5.42442970329678e-19,5.421010862427522e-20,0.0028571428265422583,-0.0019047618843615055,-0.0011428571306169033,1.0299920638612292e-18,-3.8837551476042475e-19,0.0007619047537446022,-2.642742795433417e-19,-3.1848438816761693e-19,-3.3881317890172014e-20,-3.585704201442919e-20,0.0012499999720603228,-0.0008333333535119891,1.1926223897340549e-18,-0.00017857142665889114,2.0328790734103208e-20,-2.642742795433417e-19,0.0001190476177725941,-1.7279472123987727e-19,-1.1858461261560205e-20,-3.282252670610414e-21,0.0014880952658131719,-3.469446951953614e-18,-0.0022321429569274187,1.951563910473908e-18,1.8837185566323087e-18,-3.1848438816761693e-19,-1.7279472123987727e-19,0.00044642857392318547,-6.437450399132683e-20,-1.0284321692470161e-19,0.0008928571478463709,-1.5178830414797062e-18,-0.0003571428533177823,-0.00012755101488437504,5.42442970329678e-19,-3.3881317890172014e-20,-1.1858461261560205e-20,-6.437450399132683e-20,5.10204081365373e-05,-9.5154123997798e-21,0.00030637255986221135,-3.6319339041618297e-20,6.437450399132683e-19,-0.00014140272105578333,5.421010862427522e-20,-3.585704201442919e-20,-3.282252670610414e-21,-1.0284321692470161e-19,-9.5154123997798e-21,1.0100194231199566e-05,4.0,6.0,16.0,0.07317999750375748,-0.02590598724782467,-0.01913405954837799,-0.008372724056243896,0.0026041667442768812,0.0026785715017467737,0.001102941227145493,0.0013950893189758062,0.0007878151373006403,0.0002553104714024812,-0.02590598724782467,0.035499826073646545,0.0026785715017467737,0.001102941227145493,-0.0078125,-0.0017857142956927419,-0.000735294132027775,2.2768245622195593e-18,-4.87890977618477e-19,-1.4327997606603846e-18,-0.01913405954837799,0.0026785715017467737,0.015326615422964096,0.0007878151373006403,8.673617379884035e-18,-0.0010714285308495164,-1.9786689647860456e-18,-0.0020926338620483875,-0.00031512606074102223,-4.811147140404426e-19,-0.008372724056243896,0.001102941227145493,0.0007878151373006403,0.0022470238618552685,-2.9815559743351372e-18,-2.1141942363467336e-18,-0.00014705881767440587,-1.6805133673525319e-18,-0.0001050420178216882,-0.00010941876826109365,0.0026041667442768812,-0.0078125,8.673617379884035e-18,-2.9815559743351372e-18,0.0026041667442768812,-8.925283979325997e-19,-5.285485590866834e-19,-1.2042242182105705e-18,-1.0625568591830377e-19,2.642742795433417e-19,0.0026785715017467737,-0.0017857142956927419,-0.0010714285308495164,-2.1141942363467336e-18,-8.925283979325997e-19,0.0007142857066355646,1.7618285302889447e-19,0.0,7.453889935837843e-20,1.0159209332351809e-19,0.001102941227145493,-0.000735294132027775,-1.9786689647860456e-18,-0.00014705881767440587,-5.285485590866834e-19,1.7618285302889447e-19,9.803921420825645e-05,2.0328790734103208e-19,8.131516293641283e-20,3.9492911165731753e-20,0.0013950893189758062,2.2768245622195593e-18,-0.0020926338620483875,-1.6805133673525319e-18,-1.2042242182105705e-18,0.0,2.0328790734103208e-19,0.0004185267898719758,1.4230153513872246e-19,5.582549542536325e-20,0.0007878151373006403,-4.87890977618477e-19,-0.00031512606074102223,-0.0001050420178216882,-1.0625568591830377e-19,7.453889935837843e-20,8.131516293641283e-20,1.4230153513872246e-19,4.201680712867528e-05,6.169455916789649e-21,0.0002553104714024812,-1.4327997606603846e-18,-4.811147140404426e-19,-0.00010941876826109365,2.642742795433417e-19,1.0159209332351809e-19,3.9492911165731753e-20,5.582549542536325e-20,6.169455916789649e-21,7.294584520423086e-06,4.0,7.0,3.0,0.24117062985897064,-0.10357142984867096,-0.06815475970506668,-0.12589286267757416,0.011904762126505375,0.010714286006987095,0.02142857201397419,0.004960317630320787,0.013392857275903225,0.01785714365541935,-0.10357142984867096,0.15238095819950104,0.010714286006987095,0.02142857201397419,-0.0357142873108387,-0.0071428571827709675,-0.014285714365541935,-9.540979117872439e-18,-4.2500725161431774e-17,2.173741645155446e-17,-0.06815475970506668,0.010714286006987095,0.04851190373301506,0.013392857275903225,-5.898059818321144e-17,-0.0035714285913854837,-2.6020852139652106e-18,-0.0059523810632526875,-0.004464285913854837,1.5730629366541386e-17,-0.12589286267757416,0.02142857201397419,0.013392857275903225,0.30446428060531616,-8.293404142196281e-17,-6.64433323341587e-18,-0.02142857201397419,7.15573433840433e-18,-0.013392857275903225,-0.1071428582072258,0.011904762126505375,-0.0357142873108387,-5.898059818321144e-17,-8.293404142196281e-17,0.011904762126505375,1.962405932198763e-17,3.0140820395097023e-17,2.3852447794681098e-18,1.1384122811097797e-17,-1.4673261760307714e-18,0.010714286006987095,-0.0071428571827709675,-0.0035714285913854837,-6.64433323341587e-18,1.962405932198763e-17,0.0023809524718672037,3.7947076036992655e-18,7.047314121155779e-19,2.6020852139652106e-18,-3.658804310598641e-18,0.02142857201397419,-0.014285714365541935,-2.6020852139652106e-18,-0.02142857201397419,3.0140820395097023e-17,3.7947076036992655e-18,0.014285714365541935,-1.6263032587282567e-19,-1.0842021724855044e-18,8.009052203952808e-18,0.004960317630320787,-9.540979117872439e-18,-0.0059523810632526875,7.15573433840433e-18,2.3852447794681098e-18,7.047314121155779e-19,-1.6263032587282567e-19,0.0009920635493472219,3.7947076036992655e-19,-3.93723330478399e-18,0.013392857275903225,-4.2500725161431774e-17,-0.004464285913854837,-0.013392857275903225,1.1384122811097797e-17,2.6020852139652106e-18,-1.0842021724855044e-18,3.7947076036992655e-19,0.004464285913854837,6.060505434763187e-18,0.01785714365541935,2.173741645155446e-17,1.5730629366541386e-17,-0.1071428582072258,-1.4673261760307714e-18,-3.658804310598641e-18,8.009052203952808e-18,-3.93723330478399e-18,6.060505434763187e-18,0.0535714291036129,4.0,7.0,4.0,0.19886904954910278,-0.08089285343885422,-0.05312500149011612,-0.08089285343885422,0.008928571827709675,0.008035714738070965,0.012857142835855484,0.0037202381063252687,0.008035714738070965,0.008928571827709675,-0.08089285343885422,0.11642856895923615,0.008035714738070965,0.012857142835855484,-0.02678571455180645,-0.0053571430034935474,-0.008571428246796131,-6.5052130349130266e-18,-2.8189256484623115e-17,-4.755538103928201e-17,-0.05312500149011612,0.008035714738070965,0.03705357015132904,0.008035714738070965,-2.992397996059992e-17,-0.0026785715017467737,-1.2576745200831851e-17,-0.004464285913854837,-0.0026785715017467737,-2.7287732187336272e-17,-0.08089285343885422,0.012857142835855484,0.008035714738070965,0.11642856895923615,-4.463629374480688e-17,-2.509955326264157e-17,-0.008571428246796131,-2.3852447794681098e-18,-0.0053571430034935474,-0.02678571455180645,0.008928571827709675,-0.02678571455180645,-2.992397996059992e-17,-4.463629374480688e-17,0.008928571827709675,7.968885967768458e-18,6.5052130349130266e-18,1.1926223897340549e-18,5.366800753803247e-18,5.552643422025536e-18,0.008035714738070965,-0.0053571430034935474,-0.0026785715017467737,-2.509955326264157e-17,7.968885967768458e-18,0.0017857142956927419,3.3610267347050637e-18,5.692061405548898e-19,2.168404344971009e-18,4.273801101912935e-18,0.012857142835855484,-0.008571428246796131,-1.2576745200831851e-17,-0.008571428246796131,6.5052130349130266e-18,3.3610267347050637e-18,0.0057142856530845165,5.421010862427522e-19,3.144186300207963e-18,8.86076451193232e-18,0.0037202381063252687,-6.5052130349130266e-18,-0.004464285913854837,-2.3852447794681098e-18,1.1926223897340549e-18,5.692061405548898e-19,5.421010862427522e-19,0.0007440476329065859,5.692061405548898e-19,-2.035531608990231e-19,0.008035714738070965,-2.8189256484623115e-17,-0.0026785715017467737,-0.0053571430034935474,5.366800753803247e-18,2.168404344971009e-18,3.144186300207963e-18,5.692061405548898e-19,0.0017857142956927419,1.3327653970643202e-17,0.008928571827709675,-4.755538103928201e-17,-2.7287732187336272e-17,-0.02678571455180645,5.552643422025536e-18,4.273801101912935e-18,8.86076451193232e-18,-2.035531608990231e-19,1.3327653970643202e-17,0.008928571827709675,4.0,7.0,5.0,0.16937075555324554,-0.06642857193946838,-0.04357142746448517,-0.05647959187626839,0.0071428571827709675,0.006428571417927742,0.008571428246796131,0.0029761905316263437,0.0053571430034935474,0.005102040711790323,-0.06642857193946838,0.09428571164608002,0.006428571417927742,0.008571428246796131,-0.02142857201397419,-0.004285714123398066,-0.0057142856530845165,2.710505431213761e-19,1.6263032587282567e-19,-0.0,-0.04357142746448517,0.006428571417927742,0.029999999329447746,0.0053571430034935474,0.0,-0.002142857061699033,0.0,-0.0035714285913854837,-0.0017857142956927419,-0.0,-0.05647959187626839,0.008571428246796131,0.0053571430034935474,0.05885203927755356,0.0,7.390275869323394e-20,-0.004285714123398066,0.0,-0.0026785715017467737,-0.010204081423580647,0.0071428571827709675,-0.02142857201397419,0.0,0.0,0.0071428571827709675,0.0,0.0,0.0,0.0,-0.0,0.006428571417927742,-0.004285714123398066,-0.002142857061699033,7.390275869323394e-20,0.0,0.0014285714132711291,0.0,-1.0842021724855044e-19,-2.710505431213761e-20,-0.0,0.008571428246796131,-0.0057142856530845165,0.0,-0.004285714123398066,0.0,0.0,0.0028571428265422583,0.0,0.0,-0.0,0.0029761905316263437,2.710505431213761e-19,-0.0035714285913854837,0.0,0.0,-1.0842021724855044e-19,0.0,0.0005952381179668009,-2.710505431213761e-20,-0.0,0.0053571430034935474,1.6263032587282567e-19,-0.0017857142956927419,-0.0026785715017467737,0.0,-2.710505431213761e-20,0.0,-2.710505431213761e-20,0.0008928571478463709,-0.0,0.005102040711790323,-0.0,-0.0,-0.010204081423580647,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025510203558951616,4.0,7.0,6.0,0.14756235480308533,-0.05637755244970322,-0.036947280168533325,-0.041709184646606445,0.0059523810632526875,0.0053571430034935474,0.006122448947280645,0.0024801588151603937,0.0038265306502580643,0.0031887756194919348,-0.05637755244970322,0.07925169914960861,0.0053571430034935474,0.006122448947280645,-0.01785714365541935,-0.0035714285913854837,-0.004081632476300001,-5.421010862427522e-20,-1.6263032587282567e-19,-8.673617379884035e-19,-0.036947280168533325,0.0053571430034935474,0.025212585926055908,0.0038265306502580643,-2.9738117026452626e-18,-0.0017857142956927419,-8.673617379884035e-19,-0.0029761905316263437,-0.0012755101779475808,-5.421010862427522e-19,-0.041709184646606445,0.006122448947280645,0.0038265306502580643,0.034221939742565155,-3.3986419458803e-18,-7.15789938026011e-19,-0.0024489795323461294,1.519815128595477e-20,-0.0015306122368201613,-0.00478316331282258,0.0059523810632526875,-0.01785714365541935,-2.9738117026452626e-18,-3.3986419458803e-18,0.0059523810632526875,1.9825412040285595e-18,2.2657612283218157e-18,9.62964972193618e-35,1.3249127693700028e-34,3.851859888774472e-34,0.0053571430034935474,-0.0035714285913854837,-0.0017857142956927419,-7.15789938026011e-19,1.9825412040285595e-18,0.0011904762359336019,4.544107906266049e-19,2.710505431213761e-20,4.9094033694138825e-21,-2.4019973953799206e-21,0.006122448947280645,-0.004081632476300001,-8.673617379884035e-19,-0.0024489795323461294,2.2657612283218157e-18,4.544107906266049e-19,0.0016326530603691936,0.0,6.776263578034403e-20,2.710505431213761e-19,0.0024801588151603937,-5.421010862427522e-20,-0.0029761905316263437,1.519815128595477e-20,9.62964972193618e-35,2.710505431213761e-20,0.0,0.0004960317746736109,0.0,0.0,0.0038265306502580643,-1.6263032587282567e-19,-0.0012755101779475808,-0.0015306122368201613,1.3249127693700028e-34,4.9094033694138825e-21,6.776263578034403e-20,0.0,0.0005102040595375001,2.168404344971009e-19,0.0031887756194919348,-8.673617379884035e-19,-5.421010862427522e-19,-0.00478316331282258,3.851859888774472e-34,-2.4019973953799206e-21,2.710505431213761e-19,0.0,2.168404344971009e-19,0.0009566326625645161,4.0,7.0,7.0,0.130761057138443,-0.04897959157824516,-0.03207908198237419,-0.03207908198237419,0.005102040711790323,0.004591836594045162,0.004591836594045162,0.002125850412994623,0.002869897987693548,0.002125850412994623,-0.04897959157824516,0.06836734712123871,0.004591836594045162,0.004591836594045162,-0.015306122601032257,-0.0030612244736403227,-0.0030612244736403227,-2.8731357570865868e-18,0.0,-3.0357660829594124e-18,-0.03207908198237419,0.004591836594045162,0.021747449412941933,0.002869897987693548,2.430202459350673e-18,-0.0015306122368201613,-2.9002408113987244e-18,-0.0025510203558951616,-0.0009566326625645161,-1.463672932855431e-18,-0.03207908198237419,0.004591836594045162,0.002869897987693548,0.021747449412941933,2.430202459350673e-18,-2.888010946042128e-18,-0.0015306122368201613,2.581379694160878e-19,-0.0009566326625645161,-0.0025510203558951616,0.005102040711790323,-0.015306122601032257,2.430202459350673e-18,2.430202459350673e-18,0.005102040711790323,-1.1953046262678346e-18,-1.1953046262678346e-18,9.440671784674232e-20,-2.1241512161751876e-19,9.440671784674232e-20,0.004591836594045162,-0.0030612244736403227,-0.0015306122368201613,-2.888010946042128e-18,-1.1953046262678346e-18,0.0010204081190750003,9.653561578716386e-20,5.692061405548898e-19,1.8124871389532235e-19,4.520157925605342e-19,0.004591836594045162,-0.0030612244736403227,-2.9002408113987244e-18,-0.0015306122368201613,-1.1953046262678346e-18,9.653561578716386e-20,0.0010204081190750003,4.438452643612534e-19,1.8973538018496328e-19,5.692061405548898e-19,0.002125850412994623,-2.8731357570865868e-18,-0.0025510203558951616,2.581379694160878e-19,9.440671784674232e-20,5.692061405548898e-19,4.438452643612534e-19,0.00042517005931586027,-6.776263578034403e-20,-6.776263578034403e-20,0.002869897987693548,0.0,-0.0009566326625645161,-0.0009566326625645161,-2.1241512161751876e-19,1.8124871389532235e-19,1.8973538018496328e-19,-6.776263578034403e-20,0.0003188775444868952,4.743384504624082e-19,0.002125850412994623,-3.0357660829594124e-18,-1.463672932855431e-18,-0.0025510203558951616,9.440671784674232e-20,4.520157925605342e-19,5.692061405548898e-19,-6.776263578034403e-20,4.743384504624082e-19,0.00042517005931586027,4.0,7.0,8.0,0.11741071194410324,-0.04330357164144516,-0.02834821492433548,-0.02544642798602581,0.004464285913854837,0.004017857369035482,0.0035714285913854837,0.0018601190531626344,0.0022321429569274187,0.0014880952658131719,-0.04330357164144516,0.06011904776096344,0.004017857369035482,0.0035714285913854837,-0.013392857275903225,-0.0026785715017467737,-0.0023809524718672037,-1.6263032587282567e-19,-1.6263032587282567e-19,-3.2526065174565133e-19,-0.02834821492433548,0.004017857369035482,0.01912202313542366,0.0022321429569274187,0.0,-0.0013392857508733869,-1.3552527156068805e-19,-0.0022321429569274187,-0.0007440476329065859,-1.8973538018496328e-19,-0.02544642798602581,0.0035714285913854837,0.0022321429569274187,0.014710884541273117,-0.0,-2.551931676613078e-20,-0.0010204081190750003,-6.541523291123778e-20,-0.0006377550889737904,-0.0014880952658131719,0.004464285913854837,-0.013392857275903225,0.0,-0.0,0.004464285913854837,0.0,0.0,0.0,0.0,0.0,0.004017857369035482,-0.0026785715017467737,-0.0013392857508733869,-2.551931676613078e-20,0.0,0.0008928571478463709,7.60601004587864e-23,2.710505431213761e-20,7.882592605723502e-21,1.7004559455199295e-21,0.0035714285913854837,-0.0023809524718672037,-1.3552527156068805e-19,-0.0010204081190750003,0.0,7.60601004587864e-23,0.0006802721181884408,-3.3881317890172014e-21,3.3881317890172014e-20,9.486769009248164e-20,0.0018601190531626344,-1.6263032587282567e-19,-0.0022321429569274187,-6.541523291123778e-20,0.0,2.710505431213761e-20,-3.3881317890172014e-21,0.00037202381645329297,2.710505431213761e-20,0.0,0.0022321429569274187,-1.6263032587282567e-19,-0.0007440476329065859,-0.0006377550889737904,0.0,7.882592605723502e-21,3.3881317890172014e-20,2.710505431213761e-20,0.00021258502965793014,5.421010862427522e-20,0.0014880952658131719,-3.2526065174565133e-19,-1.8973538018496328e-19,-0.0014880952658131719,0.0,1.7004559455199295e-21,9.486769009248164e-20,0.0,5.421010862427522e-20,0.00021258502965793014,4.0,7.0,9.0,0.10654281079769135,-0.03880952298641205,-0.02539682574570179,-0.020681818947196007,0.003968254197388887,0.0035714285913854837,0.0028571428265422583,0.0016534391324967146,0.0017857142956927419,0.0010822510812431574,-0.03880952298641205,0.05365079268813133,0.0035714285913854837,0.0028571428265422583,-0.011904762126505375,-0.0023809524718672037,-0.0019047618843615055,-0.0,1.6263032587282567e-19,3.2526065174565133e-19,-0.02539682574570179,0.0035714285913854837,0.01706349290907383,0.0017857142956927419,0.0,-0.0011904762359336019,1.6263032587282567e-19,-0.0019841270986944437,-0.0005952381179668009,1.8973538018496328e-19,-0.020681818947196007,0.0028571428265422583,0.0017857142956927419,0.010427102446556091,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.00044642857392318547,-0.0009276437922380865,0.003968254197388887,-0.011904762126505375,0.0,-0.0,0.003968254197388887,0.0,0.0,0.0,0.0,0.0,0.0035714285913854837,-0.0023809524718672037,-0.0011904762359336019,-0.0,0.0,0.0007936508045531809,0.0,0.0,0.0,0.0,0.0028571428265422583,-0.0019047618843615055,1.6263032587282567e-19,-0.0007142857066355646,0.0,0.0,0.0004761904710903764,0.0,-4.0657581468206416e-20,-8.131516293641283e-20,0.0016534391324967146,-0.0,-0.0019841270986944437,-0.0,0.0,0.0,0.0,0.0003306878206785768,0.0,0.0,0.0017857142956927419,1.6263032587282567e-19,-0.0005952381179668009,-0.00044642857392318547,0.0,0.0,-4.0657581468206416e-20,0.0,0.00014880952949170023,-4.743384504624082e-20,0.0010822510812431574,3.2526065174565133e-19,1.8973538018496328e-19,-0.0009276437922380865,0.0,0.0,-8.131516293641283e-20,0.0,-4.743384504624082e-20,0.00011595547402976081,4.0,7.0,10.0,0.09752164781093597,-0.03516233712434769,-0.023003246635198593,-0.017142856493592262,0.0035714285913854837,0.003214285708963871,0.0023376622702926397,0.0014880952658131719,0.0014610389480367303,0.000811688310932368,-0.03516233712434769,0.048441559076309204,0.003214285708963871,0.0023376622702926397,-0.010714286006987095,-0.002142857061699033,-0.0015584415523335338,-0.0,-2.710505431213761e-20,0.0,-0.023003246635198593,0.003214285708963871,0.01540584396570921,0.0014610389480367303,0.0,-0.0010714285308495164,-1.3552527156068805e-20,-0.0017857142956927419,-0.0004870129923801869,0.0,-0.017142856493592262,0.0023376622702926397,0.0014610389480367303,0.007665043231099844,-0.0,-0.0,-0.0005194804980419576,-0.0,-0.0003246753185521811,-0.0006087662186473608,0.0035714285913854837,-0.010714286006987095,0.0,-0.0,0.0035714285913854837,0.0,0.0,0.0,0.0,0.0,0.003214285708963871,-0.002142857061699033,-0.0010714285308495164,-0.0,0.0,0.0007142857066355646,0.0,0.0,0.0,0.0,0.0023376622702926397,-0.0015584415523335338,-1.3552527156068805e-20,-0.0005194804980419576,0.0,0.0,0.00034632033202797174,0.0,3.3881317890172014e-21,0.0,0.0014880952658131719,-0.0,-0.0017857142956927419,-0.0,0.0,0.0,0.0,0.00029761905898340046,0.0,0.0,0.0014610389480367303,-2.710505431213761e-20,-0.0004870129923801869,-0.0003246753185521811,0.0,0.0,3.3881317890172014e-21,0.0,0.00010822511103469878,3.3881317890172014e-21,0.000811688310932368,0.0,0.0,-0.0006087662186473608,0.0,0.0,0.0,0.0,3.3881317890172014e-21,6.764069257769734e-05,4.0,7.0,11.0,0.08991216868162155,-0.03214285895228386,-0.021022727712988853,-0.014441807754337788,0.003246753243729472,0.0029220778960734606,0.0019480519695207477,0.0013528139097616076,0.0012175324372947216,0.0006243756506592035,-0.03214285895228386,0.04415584355592728,0.0029220778960734606,0.0019480519695207477,-0.009740259498357773,-0.0019480519695207477,-0.0012987012742087245,-5.93560777971258e-18,-1.8431436932253575e-18,-2.087089182034596e-18,-0.021022727712988853,0.0029220778960734606,0.014042207971215248,0.0012175324372947216,-1.3513581011287971e-17,-0.0009740259847603738,-1.734723475976807e-18,-0.001623376621864736,-0.000405844155466184,-8.131516293641283e-20,-0.014441807754337788,0.0019480519695207477,0.0012175324372947216,0.0058021144941449165,-9.242392559339785e-18,-2.729190601039207e-33,-0.00038961038808338344,-3.748805025063225e-19,-0.00024350649619009346,-0.0004162504046689719,0.003246753243729472,-0.009740259498357773,-1.3513581011287971e-17,-9.242392559339785e-18,0.003246753243729472,9.587353137758846e-19,7.669882820399807e-19,1.5620020636187173e-18,5.406930180450338e-19,6.469830901198954e-19,0.0029220778960734606,-0.0019480519695207477,-0.0009740259847603738,-2.729190601039207e-33,9.587353137758846e-19,0.0006493506371043622,2.264843332828533e-34,4.612443763842359e-34,1.5966150872100018e-34,1.9104795405136154e-34,0.0019480519695207477,-0.0012987012742087245,-1.734723475976807e-18,-0.00038961038808338344,7.669882820399807e-19,2.264843332828533e-34,0.0002597402490209788,2.4992034362067973e-19,4.743384504624082e-20,3.3881317890172014e-20,0.0013528139097616076,-5.93560777971258e-18,-0.001623376621864736,-3.748805025063225e-19,1.5620020636187173e-18,4.612443763842359e-34,2.4992034362067973e-19,0.00027056277031078935,3.0393581934861066e-34,3.3703774026776627e-34,0.0012175324372947216,-1.8431436932253575e-18,-0.000405844155466184,-0.00024350649619009346,5.406930180450338e-19,1.5966150872100018e-34,4.743384504624082e-20,3.0393581934861066e-34,8.116882963804528e-05,1.6940658945086007e-20,0.0006243756506592035,-2.087089182034596e-18,-8.131516293641283e-20,-0.0004162504046689719,6.469830901198954e-19,1.9104795405136154e-34,3.3881317890172014e-20,3.3703774026776627e-34,1.6940658945086007e-20,4.162504046689719e-05,4.0,7.0,12.0,0.08340637385845184,-0.029601648449897766,-0.019356684759259224,-0.012333202175796032,0.0029761905316263437,0.0026785715017467737,0.0016483516665175557,0.0012400794075801969,0.001030219835229218,0.0004905808600597084,-0.029601648449897766,0.04056776687502861,0.0026785715017467737,0.0016483516665175557,-0.008928571827709675,-0.0017857142956927419,-0.001098901149816811,-5.421010862427522e-19,1.6263032587282567e-19,3.4558944247975454e-19,-0.019356684759259224,0.0026785715017467737,0.012900641188025475,0.001030219835229218,-3.916680348103885e-18,-0.0008928571478463709,1.07742590890747e-18,-0.0014880952658131719,-0.00034340660204179585,1.5754812818929986e-19,-0.012333202175796032,0.0016483516665175557,0.001030219835229218,0.0044990722090005875,1.8973538018496328e-18,7.589415207398531e-19,-0.00029970030300319195,1.4907779871675686e-18,-0.00018731268937699497,-0.000294348516035825,0.0029761905316263437,-0.008928571827709675,-3.916680348103885e-18,1.8973538018496328e-18,0.0029761905316263437,8.165931660014435e-19,-3.884480998591763e-19,3.1627723764877817e-19,3.9201236295753045e-20,-7.792703114739563e-20,0.0026785715017467737,-0.0017857142956927419,-0.0008928571478463709,7.589415207398531e-19,8.165931660014435e-19,0.0005952381179668009,-1.0842021724855044e-19,1.8295911660692887e-19,-4.0657581468206416e-20,-2.4221468769447945e-20,0.0016483516665175557,-0.001098901149816811,1.07742590890747e-18,-0.00029970030300319195,-3.884480998591763e-19,-1.0842021724855044e-19,0.00019980019715148956,-1.5585406229479126e-19,-3.049318610115481e-20,-2.6491644554070205e-21,0.0012400794075801969,-5.421010862427522e-19,-0.0014880952658131719,1.4907779871675686e-18,3.1627723764877817e-19,1.8295911660692887e-19,-1.5585406229479126e-19,0.00024801588733680546,-2.507217523872729e-19,-3.5126774011689844e-20,0.001030219835229218,1.6263032587282567e-19,-0.00034340660204179585,-0.00018731268937699497,3.9201236295753045e-20,-4.0657581468206416e-20,-3.049318610115481e-20,-2.507217523872729e-19,6.243756070034578e-05,1.043144545793552e-20,0.0004905808600597084,3.4558944247975454e-19,1.5754812818929986e-19,-0.000294348516035825,-7.792703114739563e-20,-2.4221468769447945e-20,-2.6491644554070205e-21,-3.5126774011689844e-20,1.043144545793552e-20,2.6758954845718108e-05,4.0,7.0,13.0,0.07777995616197586,-0.027433281764388084,-0.017935635522007942,-0.010655416175723076,0.002747252816334367,0.0024725275579839945,0.001412872807122767,0.0011446886928752065,0.000883045548107475,0.0003924646880477667,-0.027433281764388084,0.03751962259411812,0.0024725275579839945,0.001412872807122767,-0.008241758681833744,-0.0016483516665175557,-0.0009419152047485113,3.848917712323541e-18,4.336808689942018e-19,-1.5890338090490674e-18,-0.017935635522007942,0.0024725275579839945,0.011930925771594048,0.000883045548107475,1.531435568635775e-18,-0.0008241758332587779,4.675621868843738e-19,-0.0013736264081671834,-0.000294348516035825,-1.094366567852556e-18,-0.010655416175723076,0.001412872807122767,0.000883045548107475,0.00355983292683959,-5.041540102057596e-18,-5.963111948670274e-19,-0.00023547880118712783,-1.734723475976807e-18,-0.0001471742580179125,-0.00021407163876574486,0.002747252816334367,-0.008241758681833744,1.531435568635775e-18,-5.041540102057596e-18,0.002747252816334367,1.0949466282571088e-18,9.260520636054191e-19,-5.161940479515328e-19,2.2570425960314905e-20,3.2356658585114273e-19,0.0024725275579839945,-0.0016483516665175557,-0.0008241758332587779,-5.963111948670274e-19,1.0949466282571088e-18,0.0005494505749084055,-9.486769009248164e-20,-6.030874584450618e-19,-1.8295911660692887e-19,1.13731466413571e-19,0.001412872807122767,-0.0009419152047485113,4.675621868843738e-19,-0.00023547880118712783,9.260520636054191e-19,-9.486769009248164e-20,0.00015698587230872363,-5.082197683525802e-20,1.0164395367051604e-20,3.491603682594489e-20,0.0011446886928752065,3.848917712323541e-18,-0.0013736264081671834,-1.734723475976807e-18,-5.161940479515328e-19,-6.030874584450618e-19,-5.082197683525802e-20,0.00022893772984389216,1.1689054672109345e-19,1.1876797529295033e-19,0.000883045548107475,4.336808689942018e-19,-0.000294348516035825,-0.0001471742580179125,2.2570425960314905e-20,-1.8295911660692887e-19,1.0164395367051604e-20,1.1689054672109345e-19,4.9058086005970836e-05,2.685518922159691e-20,0.0003924646880477667,-1.5890338090490674e-18,-1.094366567852556e-18,-0.00021407163876574486,3.2356658585114273e-19,1.13731466413571e-19,3.491603682594489e-20,1.1876797529295033e-19,2.685518922159691e-20,1.783930383680854e-05,4.0,7.0,14.0,0.07286564260721207,-0.025561224669218063,-0.016709184274077415,-0.009298468939960003,0.0025510203558951616,0.002295918297022581,0.0012244897661730647,0.0010629252064973116,0.0007653061184100807,0.0003188775444868952,-0.025561224669218063,0.03489796072244644,0.002295918297022581,0.0012244897661730647,-0.0076530613005161285,-0.0015306122368201613,-0.0008163265301845968,-4.87890977618477e-18,-1.8431436932253575e-18,-3.1340219048409113e-19,-0.016709184274077415,0.002295918297022581,0.011096938513219357,0.0007653061184100807,-4.458781434346637e-18,-0.0007653061184100807,-2.588532686809142e-18,-0.0012755101779475808,-0.00025510202976875007,-4.3198680309969317e-19,-0.009298468939960003,0.0012244897661730647,0.0007653061184100807,0.00286548282019794,9.75781955236954e-19,-1.0299920638612292e-18,-0.00018838304094970226,-9.215718466126788e-19,-0.00011773940059356391,-0.0001594387722434476,0.0025510203558951616,-0.0076530613005161285,-4.458781434346637e-18,9.75781955236954e-19,0.0025510203558951616,-1.095272227225725e-18,-1.1344054182225728e-18,7.829242267335445e-19,1.7313819506454284e-19,-2.541098841762901e-21,0.002295918297022581,-0.0015306122368201613,-0.0007653061184100807,-1.0299920638612292e-18,-1.095272227225725e-18,0.0005102040595375001,8.131516293641283e-20,2.0328790734103208e-19,1.3213713977167085e-19,2.6830178317177118e-20,0.0012244897661730647,-0.0008163265301845968,-2.588532686809142e-18,-0.00018838304094970226,-1.1344054182225728e-18,8.131516293641283e-20,0.000125588703667745,2.642742795433417e-19,1.1689054672109345e-19,2.842318600528647e-20,0.0010629252064973116,-4.87890977618477e-18,-0.0012755101779475808,-9.215718466126788e-19,7.829242267335445e-19,2.0328790734103208e-19,2.642742795433417e-19,0.00021258502965793014,0.0,3.9212076885421465e-20,0.0007653061184100807,-1.8431436932253575e-18,-0.00025510202976875007,-0.00011773940059356391,1.7313819506454284e-19,1.3213713977167085e-19,1.1689054672109345e-19,0.0,3.924646807718091e-05,2.0459007057094954e-20,0.0003188775444868952,-3.1340219048409113e-19,-4.3198680309969317e-19,-0.0001594387722434476,-2.541098841762901e-21,2.6830178317177118e-20,2.842318600528647e-20,3.9212076885421465e-20,2.0459007057094954e-20,1.2264521501492709e-05,4.0,7.0,15.0,0.06853612512350082,-0.023928571492433548,-0.015639880672097206,-0.008185398764908314,0.0023809524718672037,0.002142857061699033,0.0010714285308495164,0.0009920635493472219,0.0006696428754366934,0.00026260505546815693,-0.023928571492433548,0.03261904790997505,0.002142857061699033,0.0010714285308495164,-0.0071428571827709675,-0.0014285714132711291,-0.0007142857066355646,-3.2526065174565133e-19,5.421010862427522e-20,1.205413729780816e-19,-0.015639880672097206,0.002142857061699033,0.010372024029493332,0.0006696428754366934,4.851804721872632e-18,-0.0007142857066355646,-1.9786689647860456e-18,-0.0011904762359336019,-0.00022321428696159273,-1.8719428134320037e-19,-0.008185398764908314,0.0010714285308495164,0.0006696428754366934,0.0023409652058035135,2.9815559743351372e-18,-5.421010862427522e-19,-0.0001530612207716331,-5.285485590866834e-19,-9.566326480126008e-05,-0.00012120232713641599,0.0023809524718672037,-0.0071428571827709675,4.851804721872632e-18,2.9815559743351372e-18,0.0023809524718672037,-1.9587190227724917e-18,-5.488773498207866e-19,5.845304110348648e-20,-2.4998907715970406e-19,-7.453889935837843e-20,0.002142857061699033,-0.0014285714132711291,-0.0007142857066355646,-5.421010862427522e-19,-1.9587190227724917e-18,0.0004761904710903764,4.0657581468206416e-20,-5.014435047745458e-19,3.049318610115481e-20,2.4364606558336564e-20,0.0010714285308495164,-0.0007142857066355646,-1.9786689647860456e-18,-0.0001530612207716331,-5.488773498207866e-19,4.0657581468206416e-20,0.0001020408162730746,2.1006417091906648e-19,8.300922883092143e-20,6.88214269644119e-21,0.0009920635493472219,-3.2526065174565133e-19,-0.0011904762359336019,-5.285485590866834e-19,5.845304110348648e-20,-5.014435047745458e-19,2.1006417091906648e-19,0.00019841270113829523,-5.082197683525802e-21,1.7566354839409883e-20,0.0006696428754366934,5.421010862427522e-20,-0.00022321428696159273,-9.566326480126008e-05,-2.4998907715970406e-19,3.049318610115481e-20,8.300922883092143e-20,-5.082197683525802e-21,3.188775372109376e-05,5.83000975084887e-21,0.00026260505546815693,1.205413729780816e-19,-1.8719428134320037e-19,-0.00012120232713641599,-7.453889935837843e-20,2.4364606558336564e-20,6.88214269644119e-21,1.7566354839409883e-20,5.83000975084887e-21,8.65730908117257e-06,4.0,7.0,16.0,0.06469275057315826,-0.022492121905088425,-0.014699317514896393,-0.007261029444634914,0.0022321429569274187,0.002008928684517741,0.0009453781531192362,0.0009300595265813172,0.0005908613675273955,0.0002188375365221873,-0.022492121905088425,0.030619747936725616,0.002008928684517741,0.0009453781531192362,-0.0066964286379516125,-0.0013392857508733869,-0.0006302521214820445,1.0299920638612292e-17,6.776263578034403e-19,-1.6434248634323386e-18,-0.014699317514896393,0.002008928684517741,0.009736081585288048,0.0005908613675273955,1.3769367590565906e-17,-0.0006696428754366934,5.692061405548898e-19,-0.0011160714784637094,-0.00019695378432516009,-7.436949276892757e-19,-0.007261029444634914,0.0009453781531192362,0.0005908613675273955,0.001937274937517941,-4.553649124439119e-18,-1.3823577699190182e-18,-0.00012605042138602585,-8.131516293641283e-20,-7.878151518525556e-05,-9.378751565236598e-05,0.0022321429569274187,-0.0066964286379516125,1.3769367590565906e-17,-4.553649124439119e-18,0.0022321429569274187,-5.46289980563509e-19,4.87890977618477e-19,-1.75706334957518e-18,-2.0406438436697502e-19,3.083199928005653e-19,0.002008928684517741,-0.0013392857508733869,-0.0006696428754366934,-1.3823577699190182e-18,-5.46289980563509e-19,0.00044642857392318547,4.0657581468206416e-20,-1.060485249962384e-18,-1.0503208545953324e-19,1.1045954057592044e-19,0.0009453781531192362,-0.0006302521214820445,5.692061405548898e-19,-0.00012605042138602585,4.87890977618477e-19,4.0657581468206416e-20,8.403361425735056e-05,-1.5077186461126546e-19,4.2351647362715017e-20,3.978407874135042e-20,0.0009300595265813172,1.0299920638612292e-17,-0.0011160714784637094,-8.131516293641283e-20,-1.75706334957518e-18,-1.060485249962384e-18,-1.5077186461126546e-19,0.00018601190822664648,-1.9481757786848908e-19,6.504894699624164e-20,0.0005908613675273955,6.776263578034403e-19,-0.00019695378432516009,-7.878151518525556e-05,-2.0406438436697502e-19,-1.0503208545953324e-19,4.2351647362715017e-20,-1.9481757786848908e-19,2.626050445542205e-05,2.0148203635450957e-20,0.0002188375365221873,-1.6434248634323386e-18,-7.436949276892757e-19,-9.378751565236598e-05,3.083199928005653e-19,1.1045954057592044e-19,3.978407874135042e-20,6.504894699624164e-20,2.0148203635450957e-20,6.252500952541595e-06,4.0,8.0,3.0,0.21736110746860504,-0.09166666865348816,-0.05416666716337204,-0.11145833134651184,0.010416666977107525,0.008333333767950535,0.01875000074505806,0.0034722222480922937,0.010416666977107525,0.015625,-0.09166666865348816,0.13402777910232544,0.008333333767950535,0.01875000074505806,-0.03125,-0.0055555556900799274,-0.012500000186264515,2.0383000842727483e-17,9.540979117872439e-18,-7.675690145287812e-17,-0.05416666716337204,0.008333333767950535,0.03283730149269104,0.010416666977107525,4.597017211338539e-17,-0.0023809524718672037,1.1275702593849246e-17,-0.0034722222480922937,-0.0029761905316263437,-7.583219955482754e-17,-0.11145833134651184,0.01875000074505806,0.010416666977107525,0.26770833134651184,2.5098416716479922e-17,-3.535241228748327e-17,-0.01875000074505806,-5.9631119486702744e-18,-0.010416666977107525,-0.09375,0.010416666977107525,-0.03125,4.597017211338539e-17,2.5098416716479922e-17,0.010416666977107525,-1.2468324983583301e-18,-8.023096076392733e-18,-5.041540102057596e-18,-4.662069341687669e-18,4.620649926875301e-18,0.008333333767950535,-0.0055555556900799274,-0.0023809524718672037,-3.535241228748327e-17,-1.2468324983583301e-18,0.0015873016091063619,3.0357660829594124e-18,-7.318364664277155e-19,1.2468324983583301e-18,1.2642384463979772e-17,0.01875000074505806,-0.012500000186264515,1.1275702593849246e-17,-0.01875000074505806,-8.023096076392733e-18,3.0357660829594124e-18,0.012500000186264515,-1.7889335846010823e-18,-5.421010862427522e-19,5.704033190554378e-18,0.0034722222480922937,2.0383000842727483e-17,-0.0034722222480922937,-5.9631119486702744e-18,-5.041540102057596e-18,-7.318364664277155e-19,-1.7889335846010823e-18,0.0004960317746736109,8.131516293641283e-20,4.017832956490544e-18,0.010416666977107525,9.540979117872439e-18,-0.0029761905316263437,-0.010416666977107525,-4.662069341687669e-18,1.2468324983583301e-18,-5.421010862427522e-19,8.131516293641283e-20,0.0029761905316263437,2.245682535645918e-17,0.015625,-7.675690145287812e-17,-7.583219955482754e-17,-0.09375,4.620649926875301e-18,1.2642384463979772e-17,5.704033190554378e-18,4.017832956490544e-18,2.245682535645918e-17,0.046875,4.0,8.0,4.0,0.17895832657814026,-0.0715624988079071,-0.04218750074505806,-0.0715624988079071,0.0078125,0.0062500000931322575,0.011250000447034836,0.0026041667442768812,0.0062500000931322575,0.0078125,-0.0715624988079071,0.10239583253860474,0.0062500000931322575,0.011250000447034836,-0.0234375,-0.004166666883975267,-0.007499999832361937,-1.3444106938820255e-17,-1.6046192152785466e-17,-2.85064405448678e-17,-0.04218750074505806,0.0062500000931322575,0.02507440559566021,0.0062500000931322575,-1.734723475976807e-17,-0.0017857142956927419,-1.8214596497756474e-17,-0.0026041667442768812,-0.0017857142956927419,8.673617379884035e-19,-0.0715624988079071,0.011250000447034836,0.0062500000931322575,0.10239583253860474,-1.75130216068584e-17,-1.3824170787689382e-17,-0.007499999832361937,-4.0115480381963664e-18,-0.004166666883975267,-0.0234375,0.0078125,-0.0234375,-1.734723475976807e-17,-1.75130216068584e-17,0.0078125,-3.415236843329339e-18,-3.2526065174565133e-18,2.4665599424045226e-18,2.5478751053409354e-18,3.526658899020844e-18,0.0062500000931322575,-0.004166666883975267,-0.0017857142956927419,-1.3824170787689382e-17,-3.415236843329339e-18,0.0011904762359336019,2.8189256484623115e-18,7.318364664277155e-19,9.215718466126788e-19,1.940166395608693e-18,0.011250000447034836,-0.007499999832361937,-1.8214596497756474e-17,-0.007499999832361937,-3.2526065174565133e-18,2.8189256484623115e-18,0.004999999888241291,1.4907779871675686e-18,2.1141942363467336e-18,5.0353639580139684e-18,0.0026041667442768812,-1.3444106938820255e-17,-0.0026041667442768812,-4.0115480381963664e-18,2.4665599424045226e-18,7.318364664277155e-19,1.4907779871675686e-18,0.00037202381645329297,4.2012834183813297e-19,-3.608829069442604e-21,0.0062500000931322575,-1.6046192152785466e-17,-0.0017857142956927419,-0.004166666883975267,2.5478751053409354e-18,9.215718466126788e-19,2.1141942363467336e-18,4.2012834183813297e-19,0.0011904762359336019,-3.612544648431919e-18,0.0078125,-2.85064405448678e-17,8.673617379884035e-19,-0.0234375,3.526658899020844e-18,1.940166395608693e-18,5.0353639580139684e-18,-3.608829069442604e-21,-3.612544648431919e-18,0.0078125,4.0,8.0,5.0,0.1522618979215622,-0.05874999985098839,-0.034583333879709244,-0.04994047433137894,0.0062500000931322575,0.004999999888241291,0.007499999832361937,0.0020833334419876337,0.004166666883975267,0.004464285913854837,-0.05874999985098839,0.08291666954755783,0.004999999888241291,0.007499999832361937,-0.01875000074505806,-0.0033333334140479565,-0.004999999888241291,8.829471442178827e-18,-2.3852447794681098e-18,-3.469446951953614e-18,-0.034583333879709244,0.004999999888241291,0.020297618582844734,0.004166666883975267,7.860465750519907e-18,-0.0014285714132711291,9.893344823930228e-18,-0.0020833334419876337,-0.0011904762359336019,7.15573433840433e-18,-0.04994047433137894,0.007499999832361937,0.004166666883975267,0.05175595358014107,-1.734723475976807e-17,2.168404344971009e-19,-0.0037499999161809683,4.7704895589362195e-18,-0.0020833334419876337,-0.008928571827709675,0.0062500000931322575,-0.01875000074505806,7.860465750519907e-18,-1.734723475976807e-17,0.0062500000931322575,1.2237454738716688e-18,1.1119133433914903e-18,-1.883801274693564e-18,1.1146556539172567e-18,2.4957037901314503e-18,0.004999999888241291,-0.0033333334140479565,-0.0014285714132711291,2.168404344971009e-19,1.2237454738716688e-18,0.0009523809421807528,-5.421010862427522e-19,-2.1533859762213137e-19,4.607859233063394e-19,-2.710505431213761e-19,0.007499999832361937,-0.004999999888241291,9.893344823930228e-18,-0.0037499999161809683,1.1119133433914903e-18,-5.421010862427522e-19,0.0024999999441206455,-9.166085561422075e-19,-1.2739375526704677e-18,-1.599198204416119e-18,0.0020833334419876337,8.829471442178827e-18,-0.0020833334419876337,4.7704895589362195e-18,-1.883801274693564e-18,-2.1533859762213137e-19,-9.166085561422075e-19,0.00029761905898340046,4.263200423702724e-21,-8.539526232710361e-19,0.004166666883975267,-2.3852447794681098e-18,-0.0011904762359336019,-0.0020833334419876337,1.1146556539172567e-18,4.607859233063394e-19,-1.2739375526704677e-18,4.263200423702724e-21,0.0005952381179668009,-2.981555974335137e-19,0.004464285913854837,-3.469446951953614e-18,7.15573433840433e-18,-0.008928571827709675,2.4957037901314503e-18,-2.710505431213761e-19,-1.599198204416119e-18,-8.539526232710361e-19,-2.981555974335137e-19,0.0022321429569274187,4.0,8.0,6.0,0.1325644850730896,-0.0498511902987957,-0.02931547537446022,-0.03686755895614624,0.0052083334885537624,0.004166666883975267,0.0053571430034935474,0.0017361111240461469,0.0029761905316263437,0.0027901786379516125,-0.0498511902987957,0.069692462682724,0.004166666883975267,0.0053571430034935474,-0.015625,-0.0027777778450399637,-0.0035714285913854837,4.675621868843738e-19,-2.710505431213761e-20,-0.0,-0.02931547537446022,0.004166666883975267,0.017056405544281006,0.0029761905316263437,0.0,-0.0011904762359336019,0.0,-0.0017361111240461469,-0.0008503401186317205,-0.0,-0.03686755895614624,0.0053571430034935474,0.0029761905316263437,0.030093006789684296,0.0,-3.455979016939876e-20,-0.002142857061699033,5.421010862427522e-20,-0.0011904762359336019,-0.004185267724096775,0.0052083334885537624,-0.015625,0.0,0.0,0.0052083334885537624,0.0,0.0,0.0,0.0,-0.0,0.004166666883975267,-0.0027777778450399637,-0.0011904762359336019,-3.455979016939876e-20,0.0,0.0007936508045531809,0.0,-1.2197274440461925e-19,6.776263578034403e-21,-0.0,0.0053571430034935474,-0.0035714285913854837,0.0,-0.002142857061699033,0.0,0.0,0.0014285714132711291,0.0,0.0,-0.0,0.0017361111240461469,4.675621868843738e-19,-0.0017361111240461469,5.421010862427522e-20,0.0,-1.2197274440461925e-19,0.0,0.00024801588733680546,-1.3552527156068805e-20,-0.0,0.0029761905316263437,-2.710505431213761e-20,-0.0008503401186317205,-0.0011904762359336019,0.0,6.776263578034403e-21,0.0,-1.3552527156068805e-20,0.0003401360590942204,-0.0,0.0027901786379516125,-0.0,-0.0,-0.004185267724096775,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008370535797439516,4.0,8.0,7.0,0.11741071194410324,-0.04330357164144516,-0.02544642798602581,-0.02834821492433548,0.004464285913854837,0.0035714285913854837,0.004017857369035482,0.0014880952658131719,0.0022321429569274187,0.0018601190531626344,-0.04330357164144516,0.06011904776096344,0.0035714285913854837,0.004017857369035482,-0.013392857275903225,-0.0023809524718672037,-0.0026785715017467737,-3.9302328752599536e-19,-2.168404344971009e-19,-1.0842021724855044e-19,-0.02544642798602581,0.0035714285913854837,0.014710884541273117,0.0022321429569274187,0.0,-0.0010204081190750003,-2.439454888092385e-19,-0.0014880952658131719,-0.0006377550889737904,-4.87890977618477e-19,-0.02834821492433548,0.004017857369035482,0.0022321429569274187,0.01912202313542366,-0.0,3.3171422441191055e-20,-0.0013392857508733869,-1.1953742936162224e-20,-0.0007440476329065859,-0.0022321429569274187,0.004464285913854837,-0.013392857275903225,0.0,-0.0,0.004464285913854837,0.0,0.0,0.0,0.0,0.0,0.0035714285913854837,-0.0023809524718672037,-0.0010204081190750003,3.3171422441191055e-20,0.0,0.0006802721181884408,-6.2922448808559115e-22,1.0842021724855044e-19,-8.066980373108235e-21,2.6326832956961045e-22,0.004017857369035482,-0.0026785715017467737,-2.439454888092385e-19,-0.0013392857508733869,0.0,-6.2922448808559115e-22,0.0008928571478463709,0.0,8.131516293641283e-20,0.0,0.0014880952658131719,-3.9302328752599536e-19,-0.0014880952658131719,-1.1953742936162224e-20,0.0,1.0842021724855044e-19,0.0,0.00021258502965793014,0.0,3.3881317890172014e-21,0.0022321429569274187,-2.168404344971009e-19,-0.0006377550889737904,-0.0007440476329065859,0.0,-8.066980373108235e-21,8.131516293641283e-20,0.0,0.00021258502965793014,1.4907779871675686e-19,0.0018601190531626344,-1.0842021724855044e-19,-4.87890977618477e-19,-0.0022321429569274187,0.0,2.6326832956961045e-22,0.0,3.3881317890172014e-21,1.4907779871675686e-19,0.00037202381645329297,4.0,8.0,8.0,0.10538194328546524,-0.03828125074505806,-0.02248263917863369,-0.02248263917863369,0.00390625,0.0031250000465661287,0.0031250000465661287,0.0013020833721384406,0.0017361111240461469,0.0013020833721384406,-0.03828125074505806,0.05286458507180214,0.0031250000465661287,0.0031250000465661287,-0.01171875,-0.0020833334419876337,-0.0020833334419876337,4.336808689942018e-19,9.486769009248164e-20,4.336808689942018e-19,-0.02248263917863369,0.0031250000465661287,0.012934028171002865,0.0017361111240461469,0.0,-0.0008928571478463709,6.776263578034403e-20,-0.0013020833721384406,-0.0004960317746736109,1.0842021724855044e-19,-0.02248263917863369,0.0031250000465661287,0.0017361111240461469,0.012934028171002865,-0.0,-0.0,-0.0008928571478463709,3.887006032035066e-20,-0.0004960317746736109,-0.0013020833721384406,0.00390625,-0.01171875,0.0,-0.0,0.00390625,0.0,0.0,0.0,0.0,0.0,0.0031250000465661287,-0.0020833334419876337,-0.0008928571478463709,-0.0,0.0,0.0005952381179668009,1.6940658945086007e-21,-1.2197274440461925e-19,-3.3881317890172014e-21,2.7548915066748304e-21,0.0031250000465661287,-0.0020833334419876337,6.776263578034403e-20,-0.0008928571478463709,0.0,1.6940658945086007e-21,0.0005952381179668009,-1.6940658945086007e-21,-2.371692252312041e-20,-1.3552527156068805e-19,0.0013020833721384406,4.336808689942018e-19,-0.0013020833721384406,3.887006032035066e-20,0.0,-1.2197274440461925e-19,-1.6940658945086007e-21,0.00018601190822664648,-6.776263578034403e-21,-3.3881317890172014e-21,0.0017361111240461469,9.486769009248164e-20,-0.0004960317746736109,-0.0004960317746736109,0.0,-3.3881317890172014e-21,-2.371692252312041e-20,-6.776263578034403e-21,0.00014172335795592517,-4.0657581468206416e-20,0.0013020833721384406,4.336808689942018e-19,1.0842021724855044e-19,-0.0013020833721384406,0.0,2.7548915066748304e-21,-1.3552527156068805e-19,-3.3881317890172014e-21,-4.0657581468206416e-20,0.00018601190822664648,4.0,8.0,9.0,0.09559763967990875,-0.03430555388331413,-0.02013888955116272,-0.018270201981067657,0.0034722222480922937,0.0027777778450399637,0.0024999999441206455,0.0011574074160307646,0.0013888889225199819,0.0009469697251915932,-0.03430555388331413,0.047175925225019455,0.0027777778450399637,0.0024999999441206455,-0.010416666977107525,-0.0018518518190830946,-0.0016666667070239782,2.981555974335137e-19,9.486769009248164e-20,3.7947076036992655e-19,-0.02013888955116272,0.0027777778450399637,0.011541005223989487,0.0013888889225199819,0.0,-0.0007936508045531809,8.131516293641283e-20,-0.0011574074160307646,-0.00039682540227659047,8.131516293641283e-20,-0.018270201981067657,0.0024999999441206455,0.0013888889225199819,0.00916711799800396,-0.0,1.5902414798186978e-20,-0.0006249999860301614,4.5675223521036137e-20,-0.00034722223062999547,-0.000811688310932368,0.0034722222480922937,-0.010416666977107525,0.0,-0.0,0.0034722222480922937,0.0,0.0,0.0,0.0,0.0,0.0027777778450399637,-0.0018518518190830946,-0.0007936508045531809,1.5902414798186978e-20,0.0,0.0005291005363687873,-1.0842021482516974e-21,-8.131516293641283e-20,-6.023345548548863e-22,-2.1044856110348502e-21,0.0024999999441206455,-0.0016666667070239782,8.131516293641283e-20,-0.0006249999860301614,0.0,-1.0842021482516974e-21,0.00041666667675599456,-1.6940658945086007e-21,-1.6940658945086007e-20,-8.809142651444724e-20,0.0011574074160307646,2.981555974335137e-19,-0.0011574074160307646,4.5675223521036137e-20,0.0,-8.131516293641283e-20,-1.6940658945086007e-21,0.0001653439103392884,-6.776263578034403e-21,-3.3881317890172014e-21,0.0013888889225199819,9.486769009248164e-20,-0.00039682540227659047,-0.00034722223062999547,0.0,-6.023345548548863e-22,-1.6940658945086007e-20,-6.776263578034403e-21,9.920635056914762e-05,-1.3552527156068805e-20,0.0009469697251915932,3.7947076036992655e-19,8.131516293641283e-20,-0.000811688310932368,0.0,-2.1044856110348502e-21,-8.809142651444724e-20,-3.3881317890172014e-21,-1.3552527156068805e-20,0.000101461038866546,4.0,8.0,10.0,0.0874810591340065,-0.031079545617103577,-0.01823863573372364,-0.0151420459151268,0.0031250000465661287,0.0024999999441206455,0.0020454544574022293,0.0010416667209938169,0.0011363636003807187,0.0007102272938936949,-0.031079545617103577,0.04259469732642174,0.0024999999441206455,0.0020454544574022293,-0.00937500037252903,-0.0016666667070239782,-0.0013636363437399268,-6.476301004552767e-19,-2.168404344971009e-19,-5.421010862427522e-20,-0.01823863573372364,0.0024999999441206455,0.010419372469186783,0.0011363636003807187,0.0,-0.0007142857066355646,0.0,-0.0010416667209938169,-0.0003246753185521811,0.0,-0.0151420459151268,0.0020454544574022293,0.0011363636003807187,0.006738478317856789,-0.0,-2.0185873311299652e-19,-0.00045454545761458576,-2.5232340669772284e-19,-0.00025252526393160224,-0.0005326704704202712,0.0031250000465661287,-0.00937500037252903,0.0,-0.0,0.0031250000465661287,0.0,0.0,0.0,0.0,0.0,0.0024999999441206455,-0.0016666667070239782,-0.0007142857066355646,-2.0185873311299652e-19,0.0,0.0004761904710903764,0.0,1.8503717525142107e-19,5.767392097699249e-20,3.009265538105056e-36,0.0020454544574022293,-0.0013636363437399268,0.0,-0.00045454545761458576,0.0,0.0,0.0003030303050763905,-3.009265538105056e-36,-3.3881317890172014e-21,6.776263578034403e-21,0.0010416667209938169,-6.476301004552767e-19,-0.0010416667209938169,-2.5232340669772284e-19,0.0,1.8503717525142107e-19,-3.009265538105056e-36,0.00014880952949170023,7.209240283682775e-20,0.0,0.0011363636003807187,-2.168404344971009e-19,-0.0003246753185521811,-0.00025252526393160224,0.0,5.767392097699249e-20,-3.3881317890172014e-21,7.209240283682775e-20,7.215006917249411e-05,0.0,0.0007102272938936949,-5.421010862427522e-20,0.0,-0.0005326704704202712,0.0,3.009265538105056e-36,6.776263578034403e-21,0.0,0.0,5.918560782447457e-05,4.0,8.0,11.0,0.0806381106376648,-0.028409091755747795,-0.01666666753590107,-0.0127549534663558,0.0028409091755747795,0.0022727272007614374,0.001704545458778739,0.0009469697251915932,0.0009469697251915932,0.0005463286652229726,-0.028409091755747795,0.038825757801532745,0.0022727272007614374,0.001704545458778739,-0.008522727526724339,-0.0015151514671742916,-0.0011363636003807187,-0.0,5.421010862427522e-20,-1.3552527156068805e-19,-0.01666666753590107,0.0022727272007614374,0.009496753104031086,0.0009469697251915932,0.0,-0.0006493506371043622,5.421010862427522e-20,-0.0009469697251915932,-0.00027056277031078935,6.776263578034403e-20,-0.0127549534663558,0.001704545458778739,0.0009469697251915932,0.005100524518638849,-0.0,-0.0,-0.0003409090859349817,-0.0,-0.00018939393339678645,-0.0003642191004473716,0.0028409091755747795,-0.008522727526724339,0.0,-0.0,0.0028409091755747795,0.0,0.0,0.0,0.0,0.0,0.0022727272007614374,-0.0015151514671742916,-0.0006493506371043622,-0.0,0.0,0.00043290044413879514,0.0,0.0,0.0,0.0,0.001704545458778739,-0.0011363636003807187,5.421010862427522e-20,-0.0003409090859349817,0.0,0.0,0.00022727272880729288,0.0,-1.0164395367051604e-20,3.049318610115481e-20,0.0009469697251915932,-0.0,-0.0009469697251915932,-0.0,0.0,0.0,0.0,0.00013528138515539467,0.0,0.0,0.0009469697251915932,5.421010862427522e-20,-0.00027056277031078935,-0.00018939393339678645,0.0,0.0,-1.0164395367051604e-20,0.0,5.411255551734939e-05,-1.3552527156068805e-20,0.0005463286652229726,-1.3552527156068805e-19,6.776263578034403e-20,-0.0003642191004473716,0.0,0.0,3.049318610115481e-20,0.0,-1.3552527156068805e-20,3.6421912227524444e-05,4.0,8.0,12.0,0.07479014247655869,-0.026161858811974525,-0.015344550833106041,-0.01089171227067709,0.0026041667442768812,0.0020833334419876337,0.0014423077227547765,0.0008680555620230734,0.0008012820617295802,0.0004292582452762872,-0.026161858811974525,0.035670407116413116,0.0020833334419876337,0.0014423077227547765,-0.0078125,-0.0013888889225199819,-0.000961538462433964,-0.0,-2.710505431213761e-20,-9.486769009248164e-20,-0.015344550833106041,0.0020833334419876337,0.008724435232579708,0.0008012820617295802,0.0,-0.0005952381179668009,-2.710505431213761e-20,-0.0008680555620230734,-0.00022893772984389216,-3.3881317890172014e-20,-0.01089171227067709,0.0014423077227547765,0.0008012820617295802,0.003954899497330189,-0.0,-0.0,-0.00026223776512779295,-0.0,-0.00014568764891009778,-0.0002575549588073045,0.0026041667442768812,-0.0078125,0.0,-0.0,0.0026041667442768812,0.0,0.0,0.0,0.0,0.0,0.0020833334419876337,-0.0013888889225199819,-0.0005952381179668009,-0.0,0.0,0.00039682540227659047,0.0,0.0,0.0,0.0,0.0014423077227547765,-0.000961538462433964,-2.710505431213761e-20,-0.00026223776512779295,0.0,0.0,0.00017482518160250038,0.0,5.082197683525802e-21,1.6940658945086007e-20,0.0008680555620230734,-0.0,-0.0008680555620230734,-0.0,0.0,0.0,0.0,0.00012400794366840273,0.0,0.0,0.0008012820617295802,-2.710505431213761e-20,-0.00022893772984389216,-0.00014568764891009778,0.0,0.0,5.082197683525802e-21,0.0,4.162504046689719e-05,5.082197683525802e-21,0.0004292582452762872,-9.486769009248164e-20,-3.3881317890172014e-20,-0.0002575549588073045,0.0,0.0,1.6940658945086007e-20,0.0,5.082197683525802e-21,2.341408617212437e-05,4.0,8.0,13.0,0.06973443180322647,-0.024244505912065506,-0.014217033050954342,-0.009409341029822826,0.0024038462433964014,0.001923076924867928,0.0012362637789919972,0.0008012820617295802,0.0006868132040835917,0.00034340660204179585,-0.024244505912065506,0.032989926636219025,0.001923076924867928,0.0012362637789919972,-0.0072115384973585606,-0.0012820513220503926,-0.0008241758332587779,-0.0,3.3881317890172014e-20,0.0,-0.014217033050954342,0.001923076924867928,0.008068419992923737,0.0006868132040835917,0.0,-0.0005494505749084055,4.0657581468206416e-20,-0.0008012820617295802,-0.00019623234402388334,4.0657581468206416e-20,-0.009409341029822826,0.0012362637789919972,0.0006868132040835917,0.0031291625928133726,-0.0,-0.0,-0.00020604395831469446,-0.0,-0.00011446886492194608,-0.00018731268937699497,0.0024038462433964014,-0.0072115384973585606,0.0,-0.0,0.0024038462433964014,0.0,0.0,0.0,0.0,0.0,0.001923076924867928,-0.0012820513220503926,-0.0005494505749084055,-0.0,0.0,0.00036630037357099354,0.0,0.0,0.0,0.0,0.0012362637789919972,-0.0008241758332587779,4.0657581468206416e-20,-0.00020604395831469446,0.0,0.0,0.00013736264372710139,0.0,-5.929230630780102e-21,1.6940658945086007e-21,0.0008012820617295802,-0.0,-0.0008012820617295802,-0.0,0.0,0.0,0.0,0.00011446886492194608,0.0,0.0,0.0006868132040835917,3.3881317890172014e-20,-0.00019623234402388334,-0.00011446886492194608,0.0,0.0,-5.929230630780102e-21,0.0,3.270538945798762e-05,-5.929230630780102e-21,0.00034340660204179585,0.0,4.0657581468206416e-20,-0.00018731268937699497,0.0,0.0,1.6940658945086007e-21,0.0,-5.929230630780102e-21,1.5609390175086446e-05,4.0,8.0,14.0,0.06531994044780731,-0.02258928492665291,-0.01324404776096344,-0.008210565894842148,0.0022321429569274187,0.0017857142956927419,0.0010714285308495164,0.0007440476329065859,0.0005952381179668009,0.00027901786961592734,-0.02258928492665291,0.030684523284435272,0.0017857142956927419,0.0010714285308495164,-0.0066964286379516125,-0.0011904762359336019,-0.0007142857066355646,-3.144186300207963e-18,-1.6263032587282567e-18,-8.148456952586369e-19,-0.01324404776096344,0.0017857142956927419,0.0075042517855763435,0.0005952381179668009,-1.2414114874959026e-17,-0.0005102040595375001,7.115076756936123e-20,-0.0007440476329065859,-0.0001700680295471102,-1.2680083220396876e-18,-0.008210565894842148,0.0010714285308495164,0.0005952381179668009,0.002518744207918644,-5.095750210681871e-18,-6.776263578034403e-19,-0.00016483516083098948,-1.81603863891322e-18,-9.157509339274839e-05,-0.00013950893480796367,0.0022321429569274187,-0.0066964286379516125,-1.2414114874959026e-17,-5.095750210681871e-18,0.0022321429569274187,6.084512077295854e-19,4.1153652021312124e-19,1.095714045070405e-18,5.087169555995129e-19,1.5585406229479126e-19,0.0017857142956927419,-0.0011904762359336019,-0.0005102040595375001,-6.776263578034403e-19,6.084512077295854e-19,0.0003401360590942204,-1.9651164376299768e-19,-1.4568966692773966e-19,-3.3881317890172014e-20,7.988121949515802e-20,0.0010714285308495164,-0.0007142857066355646,7.115076756936123e-20,-0.00016483516083098948,4.1153652021312124e-19,-1.9651164376299768e-19,0.00010989011207129806,1.6940658945086007e-20,1.6940658945086007e-20,8.166583743293417e-21,0.0007440476329065859,-3.144186300207963e-18,-0.0007440476329065859,-1.81603863891322e-18,1.095714045070405e-18,-1.4568966692773966e-19,1.6940658945086007e-20,0.00010629251482896507,4.658681209898652e-20,1.194996940929359e-19,0.0005952381179668009,-1.6263032587282567e-18,-0.0001700680295471102,-9.157509339274839e-05,5.087169555995129e-19,-3.3881317890172014e-20,1.6940658945086007e-20,4.658681209898652e-20,2.616431265778374e-05,3.6912472777258567e-20,0.00027901786961592734,-8.148456952586369e-19,-1.2680083220396876e-18,-0.00013950893480796367,1.5585406229479126e-19,7.988121949515802e-20,8.166583743293417e-21,1.194996940929359e-19,3.6912472777258567e-20,1.073145631380612e-05,4.0,8.0,15.0,0.06143178045749664,-0.021145833656191826,-0.012395833618938923,-0.007227328605949879,0.0020833334419876337,0.0016666667070239782,0.0009374999790452421,0.0006944444612599909,0.0005208333604969084,0.0002297794126207009,-0.021145833656191826,0.028680555522441864,0.0016666667070239782,0.0009374999790452421,-0.0062500000931322575,-0.0011111111380159855,-0.0006249999860301614,-5.421010862427522e-19,-4.336808689942018e-19,2.371692252312041e-20,-0.012395833618938923,0.0016666667070239782,0.007013889029622078,0.0005208333604969084,-2.6291902682773483e-18,-0.0004761904710903764,3.6930636500287495e-19,-0.0006944444612599909,-0.00014880952949170023,-2.320870275476783e-19,-0.007227328605949879,0.0009374999790452421,0.0005208333604969084,0.0020576452370733023,-1.6263032587282567e-19,-1.0028870095490916e-18,-0.00013392856635618955,-4.607859233063394e-19,-7.440476474585012e-05,-0.00010605203715385869,0.0020833334419876337,-0.0062500000931322575,-2.6291902682773483e-18,-1.6263032587282567e-19,0.0020833334419876337,1.334833038402973e-18,3.213612189404998e-20,1.2309983130359817e-20,7.914093808336281e-20,-2.795208725939191e-20,0.0016666667070239782,-0.0011111111380159855,-0.0004761904710903764,-1.0028870095490916e-18,1.334833038402973e-18,0.0003174603043589741,9.825582188149884e-20,3.4897757426877174e-19,8.809142651444724e-20,2.997246298085561e-20,0.0009374999790452421,-0.0006249999860301614,3.6930636500287495e-19,-0.00013392856635618955,3.213612189404998e-20,9.825582188149884e-20,8.928571332944557e-05,-6.606856988583543e-20,-6.776263578034403e-21,-2.930542380787864e-21,0.0006944444612599909,-5.421010862427522e-19,-0.0006944444612599909,-4.607859233063394e-19,1.2309983130359817e-20,3.4897757426877174e-19,-6.606856988583543e-20,9.920635056914762e-05,8.724439356719293e-20,1.7143054854458674e-20,0.0005208333604969084,-4.336808689942018e-19,-0.00014880952949170023,-7.440476474585012e-05,7.914093808336281e-20,8.809142651444724e-20,-6.776263578034403e-21,8.724439356719293e-20,2.1258503693388775e-05,7.002798782568127e-21,0.0002297794126207009,2.371692252312041e-20,-2.320870275476783e-19,-0.00010605203715385869,-2.795208725939191e-20,2.997246298085561e-20,-2.930542380787864e-21,1.7143054854458674e-20,7.002798782568127e-21,7.575145446025999e-06,4.0,8.0,16.0,0.05798100307583809,-0.019875919446349144,-0.011649816296994686,-0.006410845555365086,0.001953125,0.0015625000232830644,0.0008272058912552893,0.0006510416860692203,0.0004595588252414018,0.00019148284627590328,-0.019875919446349144,0.02692248858511448,0.0015625000232830644,0.0008272058912552893,-0.005859375,-0.0010416667209938169,-0.0005514706135727465,-8.944667923005412e-19,4.607859233063394e-19,4.0996394647108136e-19,-0.011649816296994686,0.0015625000232830644,0.006583727430552244,0.0004595588252414018,-3.1374100366299285e-18,-0.00044642857392318547,6.471331717022855e-19,-0.0006510416860692203,-0.00013130252773407847,-8.639736061993863e-20,-0.006410845555365086,0.0008272058912552893,0.0004595588252414018,0.0017027748981490731,1.0028870095490916e-18,9.215718466126788e-19,-0.00011029411689378321,-2.574980159653073e-19,-6.127451342763379e-05,-8.206407801480964e-05,0.001953125,-0.005859375,-3.1374100366299285e-18,1.0028870095490916e-18,0.001953125,-5.20420617764252e-20,2.725633466018105e-20,4.453133031533819e-19,2.1165753726751956e-20,-7.284483346386983e-20,0.0015625000232830644,-0.0010416667209938169,-0.00044642857392318547,9.215718466126788e-19,-5.20420617764252e-20,0.00029761905898340046,-1.9651164376299768e-19,-1.2536087619363645e-19,-6.437450399132683e-20,-1.985565796400708e-20,0.0008272058912552893,-0.0005514706135727465,6.471331717022855e-19,-0.00011029411689378321,2.725633466018105e-20,-1.9651164376299768e-19,7.352940883720294e-05,-1.0164395367051604e-20,-3.5575383784680614e-20,-1.3925351352195806e-20,0.0006510416860692203,-8.944667923005412e-19,-0.0006510416860692203,-2.574980159653073e-19,4.453133031533819e-19,-1.2536087619363645e-19,-1.0164395367051604e-20,9.300595411332324e-05,2.964615315390051e-20,1.3817483446027197e-20,0.0004595588252414018,4.607859233063394e-19,-0.00013130252773407847,-6.127451342763379e-05,2.1165753726751956e-20,-6.437450399132683e-20,-3.5575383784680614e-20,2.964615315390051e-20,1.750700357661117e-05,8.775019108575567e-22,0.00019148284627590328,4.0996394647108136e-19,-8.639736061993863e-20,-8.206407801480964e-05,-7.284483346386983e-20,-1.985565796400708e-20,-1.3925351352195806e-20,1.3817483446027197e-20,8.775019108575567e-22,5.4709385040041525e-06,4.0,9.0,3.0,0.1978282779455185,-0.08222222328186035,-0.04409090802073479,-0.10000000149011612,0.009259259328246117,0.006666666828095913,0.01666666753590107,0.0025252525229007006,0.008333333767950535,0.013888888992369175,-0.08222222328186035,0.1196296289563179,0.006666666828095913,0.01666666753590107,-0.02777777798473835,-0.004444444552063942,-0.011111111380159855,-2.764004371306394e-18,1.4094628242311558e-17,5.637851296924623e-17,-0.04409090802073479,0.006666666828095913,0.023288238793611526,0.008333333767950535,2.418396317262857e-18,-0.0016666667070239782,2.168404344971009e-19,-0.0021645021624863148,-0.0020833334419876337,-1.3010426069826053e-18,-0.10000000149011612,0.01666666753590107,0.008333333767950535,0.23888888955116272,7.381252228399356e-17,6.487472492315602e-18,-0.01666666753590107,3.142617345381103e-18,-0.008333333767950535,-0.0833333358168602,0.009259259328246117,-0.02777777798473835,2.418396317262857e-18,7.381252228399356e-17,0.009259259328246117,1.3010426069826053e-18,-1.6523133327045272e-18,2.439454888092385e-19,-5.024473298069095e-18,-2.3392598239828168e-17,0.006666666828095913,-0.004444444552063942,-0.0016666667070239782,6.487472492315602e-18,1.3010426069826053e-18,0.0011111111380159855,4.697201460061598e-19,4.0657581468206416e-19,-4.379383352952695e-20,-3.467756608371862e-18,0.01666666753590107,-0.011111111380159855,2.168404344971009e-19,-0.01666666753590107,-1.6523133327045272e-18,4.697201460061598e-19,0.011111111380159855,-1.590292209254702e-19,4.336808689942018e-19,2.688821387764051e-17,0.0025252525229007006,-2.764004371306394e-18,-0.0021645021624863148,3.142617345381103e-18,2.439454888092385e-19,4.0657581468206416e-19,-1.590292209254702e-19,0.00027056277031078935,3.1626837130658737e-20,-1.5437029673126661e-18,0.008333333767950535,1.4094628242311558e-17,-0.0020833334419876337,-0.008333333767950535,-5.024473298069095e-18,-4.379383352952695e-20,4.336808689942018e-19,3.1626837130658737e-20,0.0020833334419876337,2.1250362580715887e-17,0.013888888992369175,5.637851296924623e-17,-1.3010426069826053e-18,-0.0833333358168602,-2.3392598239828168e-17,-3.467756608371862e-18,2.688821387764051e-17,-1.5437029673126661e-18,2.1250362580715887e-17,0.0416666679084301,4.0,9.0,4.0,0.16267676651477814,-0.06416666507720947,-0.03431818261742592,-0.06416666507720947,0.0069444444961845875,0.004999999888241291,0.009999999776482582,0.0018939394503831863,0.004999999888241291,0.0069444444961845875,-0.06416666507720947,0.09138888865709305,0.004999999888241291,0.009999999776482582,-0.02083333395421505,-0.0033333334140479565,-0.006666666828095913,1.0842021724855044e-19,-1.734723475976807e-18,-1.0946706394457305e-17,-0.03431818261742592,0.004999999888241291,0.017778679728507996,0.004999999888241291,-4.336808689942018e-18,-0.0012499999720603228,5.637851296924623e-18,-0.001623376621864736,-0.0012499999720603228,5.809559102839606e-18,-0.06416666507720947,0.009999999776482582,0.004999999888241291,0.09138888865709305,-3.0067998722690305e-17,2.9338392335194032e-18,-0.006666666828095913,1.5178830414797062e-18,-0.0033333334140479565,-0.02083333395421505,0.0069444444961845875,-0.02083333395421505,-4.336808689942018e-18,-3.0067998722690305e-17,0.0069444444961845875,1.3823577699190182e-18,3.3068166260807885e-18,0.0,1.5720931501039814e-18,5.812555978198885e-18,0.004999999888241291,-0.0033333334140479565,-0.0012499999720603228,2.9338392335194032e-18,1.3823577699190182e-18,0.0008333333535119891,-1.0299920638612292e-18,5.421010862427522e-20,-2.439454888092385e-19,-6.111066901404279e-20,0.009999999776482582,-0.006666666828095913,5.637851296924623e-18,-0.006666666828095913,3.3068166260807885e-18,-1.0299920638612292e-18,0.004444444552063942,-1.7618285302889447e-19,-1.1926223897340549e-18,-3.2534651309323433e-18,0.0018939394503831863,1.0842021724855044e-19,-0.001623376621864736,1.5178830414797062e-18,0.0,5.421010862427522e-20,-1.7618285302889447e-19,0.000202922077733092,9.235283994616024e-35,-4.618906747131922e-19,0.004999999888241291,-1.734723475976807e-18,-0.0012499999720603228,-0.0033333334140479565,1.5720931501039814e-18,-2.439454888092385e-19,-1.1926223897340549e-18,9.235283994616024e-35,0.0008333333535119891,-1.3885085815563859e-18,0.0069444444961845875,-1.0946706394457305e-17,5.809559102839606e-18,-0.02083333395421505,5.812555978198885e-18,-6.111066901404279e-20,-3.2534651309323433e-18,-4.618906747131922e-19,-1.3885085815563859e-18,0.0069444444961845875,4.0,9.0,5.0,0.13830015063285828,-0.052666667848825455,-0.028121212497353554,-0.04476190358400345,0.0055555556900799274,0.004000000189989805,0.006666666828095913,0.0015151514671742916,0.0033333334140479565,0.003968254197388887,-0.052666667848825455,0.07400000095367432,0.004000000189989805,0.006666666828095913,-0.01666666753590107,-0.0026666666381061077,-0.004444444552063942,4.472333961502706e-19,-3.0357660829594124e-18,2.6020852139652106e-18,-0.028121212497353554,0.004000000189989805,0.014389610849320889,0.0033333334140479565,-7.6029677345546e-18,-0.0010000000474974513,3.2526065174565133e-19,-0.0012987012742087245,-0.0008333333535119891,-1.4094628242311558e-18,-0.04476190358400345,0.006666666828095913,0.0033333334140479565,0.04619047790765762,8.673617379884035e-19,2.6020852139652106e-18,-0.0033333334140479565,-5.421010862427522e-20,-0.0016666667070239782,-0.007936508394777775,0.0055555556900799274,-0.01666666753590107,-7.6029677345546e-18,8.673617379884035e-19,0.0055555556900799274,3.343534759881711e-18,5.410565639242509e-19,-1.1180834903756764e-19,9.32493939420829e-19,-1.5006068573986534e-18,0.004000000189989805,-0.0026666666381061077,-0.0010000000474974513,2.6020852139652106e-18,3.343534759881711e-18,0.0006666666595265269,-2.168404344971009e-19,-2.1222882503393533e-20,-4.0657581468206416e-20,-5.421010862427522e-19,0.006666666828095913,-0.004444444552063942,3.2526065174565133e-19,-0.0033333334140479565,5.410565639242509e-19,-2.168404344971009e-19,0.002222222276031971,-2.4625275080041605e-20,2.439454888092385e-19,2.5478751053409354e-18,0.0015151514671742916,4.472333961502706e-19,-0.0012987012742087245,-5.421010862427522e-20,-1.1180834903756764e-19,-2.1222882503393533e-20,-2.4625275080041605e-20,0.00016233765927609056,2.530589285898216e-20,-9.48330098990655e-21,0.0033333334140479565,-3.0357660829594124e-18,-0.0008333333535119891,-0.0016666667070239782,9.32493939420829e-19,-4.0657581468206416e-20,2.439454888092385e-19,2.530589285898216e-20,0.00041666667675599456,1.0842021724855044e-18,0.003968254197388887,2.6020852139652106e-18,-1.4094628242311558e-18,-0.007936508394777775,-1.5006068573986534e-18,-5.421010862427522e-19,2.5478751053409354e-18,-9.48330098990655e-21,1.0842021724855044e-18,0.0019841270986944437,4.0,9.0,6.0,0.12034270912408829,-0.044682539999485016,-0.023831168189644814,-0.03303571417927742,0.004629629664123058,0.0033333334140479565,0.004761904943734407,0.0012626262614503503,0.0023809524718672037,0.0024801588151603937,-0.044682539999485016,0.06219576671719551,0.0033333334140479565,0.004761904943734407,-0.013888888992369175,-0.002222222276031971,-0.0031746032182127237,-3.4558944247975454e-19,-8.131516293641283e-20,1.173900178444481e-33,-0.023831168189644814,0.0033333334140479565,0.012090547941625118,0.0023809524718672037,0.0,-0.0008333333535119891,0.0,-0.0010822510812431574,-0.0005952381179668009,3.5715177308202076e-18,-0.03303571417927742,0.004761904943734407,0.0023809524718672037,0.026855159550905228,0.0,-7.403411885191648e-20,-0.0019047618843615055,2.7647155398380363e-18,-0.0009523809421807528,-0.0037202381063252687,0.004629629664123058,-0.013888888992369175,0.0,0.0,0.004629629664123058,0.0,0.0,0.0,0.0,-0.0,0.0033333334140479565,-0.002222222276031971,-0.0008333333535119891,-7.403411885191648e-20,0.0,0.0005555555690079927,0.0,8.131516293641283e-20,2.0328790734103208e-20,-2.9347504461112023e-34,0.004761904943734407,-0.0031746032182127237,0.0,-0.0019047618843615055,0.0,0.0,0.0012698412174358964,0.0,0.0,-0.0,0.0012626262614503503,-3.4558944247975454e-19,-0.0010822510812431574,2.7647155398380363e-18,0.0,8.131516293641283e-20,0.0,0.00013528138515539467,-1.0164395367051604e-19,-4.720336150831057e-19,0.0023809524718672037,-8.131516293641283e-20,-0.0005952381179668009,-0.0009523809421807528,0.0,2.0328790734103208e-20,0.0,-1.0164395367051604e-19,0.0002380952355451882,8.19004836926736e-20,0.0024801588151603937,1.173900178444481e-33,3.5715177308202076e-18,-0.0037202381063252687,-0.0,-2.9347504461112023e-34,-0.0,-4.720336150831057e-19,8.19004836926736e-20,0.0007440476329065859,4.0,9.0,7.0,0.10654281079769135,-0.03880952298641205,-0.020681818947196007,-0.02539682574570179,0.003968254197388887,0.0028571428265422583,0.0035714285913854837,0.0010822510812431574,0.0017857142956927419,0.0016534391324967146,-0.03880952298641205,0.05365079268813133,0.0028571428265422583,0.0035714285913854837,-0.011904762126505375,-0.0019047618843615055,-0.0023809524718672037,2.981555974335137e-19,-2.710505431213761e-20,-8.478167598294322e-34,-0.020681818947196007,0.0028571428265422583,0.010427102446556091,0.0017857142956927419,0.0,-0.0007142857066355646,0.0,-0.0009276437922380865,-0.00044642857392318547,2.2407795466421017e-18,-0.02539682574570179,0.0035714285913854837,0.0017857142956927419,0.01706349290907383,0.0,-2.5411912533469597e-20,-0.0011904762359336019,2.2768245622195593e-18,-0.0005952381179668009,-0.0019841270986944437,0.003968254197388887,-0.011904762126505375,0.0,0.0,0.003968254197388887,0.0,0.0,0.0,0.0,-0.0,0.0028571428265422583,-0.0019047618843615055,-0.0007142857066355646,-2.5411912533469597e-20,0.0,0.0004761904710903764,0.0,-8.131516293641283e-20,6.776263578034403e-21,2.1195418995735804e-34,0.0035714285913854837,-0.0023809524718672037,0.0,-0.0011904762359336019,0.0,0.0,0.0007936508045531809,0.0,0.0,-0.0,0.0010822510812431574,2.981555974335137e-19,-0.0009276437922380865,2.2768245622195593e-18,0.0,-8.131516293641283e-20,0.0,0.00011595547402976081,-1.2197274440461925e-19,-2.9752420013219434e-19,0.0017857142956927419,-2.710505431213761e-20,-0.00044642857392318547,-0.0005952381179668009,0.0,6.776263578034403e-21,0.0,-1.2197274440461925e-19,0.00014880952949170023,4.647134608652721e-20,0.0016534391324967146,-8.478167598294322e-34,2.2407795466421017e-18,-0.0019841270986944437,-0.0,2.1195418995735804e-34,-0.0,-2.9752420013219434e-19,4.647134608652721e-20,0.0003306878206785768,4.0,9.0,8.0,0.09559763967990875,-0.03430555388331413,-0.018270201981067657,-0.02013888955116272,0.0034722222480922937,0.0024999999441206455,0.0027777778450399637,0.0009469697251915932,0.0013888889225199819,0.0011574074160307646,-0.03430555388331413,0.047175925225019455,0.0024999999441206455,0.0027777778450399637,-0.010416666977107525,-0.0016666667070239782,-0.0018518518190830946,3.6591823321385775e-19,-8.131516293641283e-20,3.2526065174565133e-19,-0.018270201981067657,0.0024999999441206455,0.00916711799800396,0.0013888889225199819,0.0,-0.0006249999860301614,-6.776263578034403e-20,-0.000811688310932368,-0.00034722223062999547,1.328147661294743e-18,-0.02013888955116272,0.0027777778450399637,0.0013888889225199819,0.011541005223989487,-0.0,3.965951374215303e-20,-0.0007936508045531809,1.715411186817955e-18,-0.00039682540227659047,-0.0011574074160307646,0.0034722222480922937,-0.010416666977107525,0.0,-0.0,0.0034722222480922937,0.0,0.0,0.0,0.0,0.0,0.0024999999441206455,-0.0016666667070239782,-0.0006249999860301614,3.965951374215303e-20,0.0,0.00041666667675599456,-1.880268774038262e-21,-8.809142651444724e-20,-1.3636508606462812e-21,-1.418424212220839e-21,0.0027777778450399637,-0.0018518518190830946,-6.776263578034403e-20,-0.0007936508045531809,0.0,-1.880268774038262e-21,0.0005291005363687873,-1.6940658945086007e-21,2.371692252312041e-20,-8.131516293641283e-20,0.0009469697251915932,3.6591823321385775e-19,-0.000811688310932368,1.715411186817955e-18,0.0,-8.809142651444724e-20,-1.6940658945086007e-21,0.000101461038866546,-7.115076756936123e-20,-2.0328790734103208e-19,0.0013888889225199819,-8.131516293641283e-20,-0.00034722223062999547,-0.00039682540227659047,0.0,-1.3636508606462812e-21,2.371692252312041e-20,-7.115076756936123e-20,9.920635056914762e-05,7.453889935837843e-20,0.0011574074160307646,3.2526065174565133e-19,1.328147661294743e-18,-0.0011574074160307646,0.0,-1.418424212220839e-21,-8.131516293641283e-20,-2.0328790734103208e-19,7.453889935837843e-20,0.0001653439103392884,4.0,9.0,9.0,0.08670033514499664,-0.03074074164032936,-0.016363635659217834,-0.016363635659217834,0.003086419776082039,0.002222222276031971,0.002222222276031971,0.0008417508215643466,0.0011111111380159855,0.0008417508215643466,-0.03074074164032936,0.0420987643301487,0.002222222276031971,0.002222222276031971,-0.009259259328246117,-0.00148148147854954,-0.00148148147854954,-1.0842021724855044e-19,-2.710505431213761e-20,-5.421010862427522e-20,-0.016363635659217834,0.002222222276031971,0.00817941315472126,0.0011111111380159855,0.0,-0.0005555555690079927,0.0,-0.0007215007208287716,-0.00027777778450399637,9.486769009248164e-19,-0.016363635659217834,0.002222222276031971,0.0011111111380159855,0.00817941315472126,-0.0,2.4174939859991837e-20,-0.0005555555690079927,1.5086170676554638e-18,-0.00027777778450399637,-0.0007215007208287716,0.003086419776082039,-0.009259259328246117,0.0,-0.0,0.003086419776082039,0.0,0.0,0.0,0.0,0.0,0.002222222276031971,-0.00148148147854954,-0.0005555555690079927,2.4174939859991837e-20,0.0,0.000370370369637385,-1.6419908763702312e-21,2.710505431213761e-20,-4.209127126228121e-21,-2.760919868116559e-21,0.002222222276031971,-0.00148148147854954,0.0,-0.0005555555690079927,0.0,-1.6419908763702312e-21,0.000370370369637385,-8.470329472543003e-22,3.3881317890172014e-21,2.0328790734103208e-20,0.0008417508215643466,-1.0842021724855044e-19,-0.0007215007208287716,1.5086170676554638e-18,0.0,2.710505431213761e-20,-8.470329472543003e-22,9.018759010359645e-05,-9.147955830346444e-20,-1.4230153513872246e-19,0.0011111111380159855,-2.710505431213761e-20,-0.00027777778450399637,-0.00027777778450399637,0.0,-4.209127126228121e-21,3.3881317890172014e-21,-9.147955830346444e-20,6.944444612599909e-05,5.082197683525802e-20,0.0008417508215643466,-5.421010862427522e-20,9.486769009248164e-19,-0.0007215007208287716,0.0,-2.760919868116559e-21,2.0328790734103208e-20,-1.4230153513872246e-19,5.082197683525802e-20,9.018759010359645e-05,4.0,9.0,10.0,0.07932323217391968,-0.027848483994603157,-0.014818182215094566,-0.01356060616672039,0.0027777778450399637,0.0020000000949949026,0.001818181830458343,0.0007575757335871458,0.0009090909152291715,0.0006313131307251751,-0.027848483994603157,0.03801010176539421,0.0020000000949949026,0.001818181830458343,-0.008333333767950535,-0.0013333333190530539,-0.001212121220305562,0.0,-1.3552527156068805e-20,3.5236570605778894e-19,-0.014818182215094566,0.0020000000949949026,0.007384199183434248,0.0009090909152291715,0.0,-0.0005000000237487257,0.0,-0.0006493506371043622,-0.00022727272880729288,-5.014435047745458e-19,-0.01356060616672039,0.001818181830458343,0.0009090909152291715,0.006012205500155687,-0.0,-7.41272009046357e-21,-0.0004040404164697975,-7.073111816509776e-19,-0.00020202020823489875,-0.0004734848625957966,0.0027777778450399637,-0.008333333767950535,0.0,-0.0,0.0027777778450399637,0.0,0.0,0.0,0.0,0.0,0.0020000000949949026,-0.0013333333190530539,-0.0005000000237487257,-7.41272009046357e-21,0.0,0.00033333332976326346,4.981596789259638e-22,0.0,-1.4449860802891678e-21,6.059690705480675e-22,0.001818181830458343,-0.001212121220305562,0.0,-0.0004040404164697975,0.0,4.981596789259638e-22,0.000269360258243978,0.0,1.6940658945086007e-21,-8.131516293641283e-20,0.0007575757335871458,0.0,-0.0006493506371043622,-7.073111816509776e-19,0.0,0.0,0.0,8.116882963804528e-05,6.098637220230962e-20,5.251604272976662e-20,0.0009090909152291715,-1.3552527156068805e-20,-0.00022727272880729288,-0.00020202020823489875,0.0,-1.4449860802891678e-21,1.6940658945086007e-21,6.098637220230962e-20,5.0505052058724687e-05,2.0328790734103208e-20,0.0006313131307251751,3.5236570605778894e-19,-5.014435047745458e-19,-0.0004734848625957966,0.0,6.059690705480675e-22,-8.131516293641283e-20,5.251604272976662e-20,2.0328790734103208e-20,5.260942634777166e-05,4.0,9.0,11.0,0.07310623675584793,-0.02545454539358616,-0.013539944775402546,-0.011421911418437958,0.0025252525229007006,0.001818181830458343,0.0015151514671742916,0.000688705244101584,0.0007575757335871458,0.0004856254963669926,-0.02545454539358616,0.03464646637439728,0.001818181830458343,0.0015151514671742916,-0.007575757801532745,-0.001212121220305562,-0.001010101055726409,-5.624298769768554e-18,-3.855693975901575e-18,-3.5236570605778894e-18,-0.013539944775402546,0.001818181830458343,0.00673012575134635,0.0007575757335871458,-1.6121755101742185e-17,-0.00045454545761458576,-2.608861477543245e-18,-0.0005903187557123601,-0.00018939393339678645,-6.166399856011306e-19,-0.011421911418437958,0.0015151514671742916,0.0007575757335871458,0.004550634417682886,-1.3638352107704857e-17,-2.9888424015559637e-18,-0.0003030303050763905,-8.281552381097683e-19,-0.00015151515253819525,-0.00032375031150877476,0.0025252525229007006,-0.007575757801532745,-1.6121755101742185e-17,-1.3638352107704857e-17,0.0025252525229007006,8.631669500057823e-19,7.773033793748818e-19,1.2015401205204125e-18,8.410780740245311e-19,8.267006410025938e-19,0.001818181830458343,-0.001212121220305562,-0.00045454545761458576,-2.9888424015559637e-18,8.631669500057823e-19,0.0003030303050763905,3.222726427285625e-19,2.507217523872729e-19,1.6219511254834913e-19,1.723305953680526e-19,0.0015151514671742916,-0.001010101055726409,-2.608861477543245e-18,-0.0003030303050763905,7.773033793748818e-19,3.222726427285625e-19,0.00020202020823489875,1.8041801776516597e-19,1.1180834903756764e-19,6.098637220230962e-20,0.000688705244101584,-5.624298769768554e-18,-0.0005903187557123601,-8.281552381097683e-19,1.2015401205204125e-18,2.507217523872729e-19,1.8041801776516597e-19,7.378984446404502e-05,4.0657581468206416e-20,3.9810548520952116e-20,0.0007575757335871458,-3.855693975901575e-18,-0.00018939393339678645,-0.00015151515253819525,8.410780740245311e-19,1.6219511254834913e-19,1.1180834903756764e-19,4.0657581468206416e-20,3.787878813454881e-05,6.776263578034403e-21,0.0004856254963669926,-3.5236570605778894e-18,-6.166399856011306e-19,-0.00032375031150877476,8.267006410025938e-19,1.723305953680526e-19,6.098637220230962e-20,3.9810548520952116e-20,6.776263578034403e-21,3.237503187847324e-05,4.0,9.0,12.0,0.06779498606920242,-0.023440171033143997,-0.012465034611523151,-0.009752747602760792,0.002314814832061529,0.0016666667070239782,0.0012820513220503926,0.0006313131307251751,0.0006410256610251963,0.000381562887923792,-0.023440171033143997,0.03183048591017723,0.0016666667070239782,0.0012820513220503926,-0.0069444444961845875,-0.0011111111380159855,-0.0008547008619643748,1.4444474582904269e-34,-6.776263578034403e-21,1.3552527156068805e-20,-0.012465034611523151,0.0016666667070239782,0.006182636599987745,0.0006410256610251963,0.0,-0.00041666667675599456,0.0,-0.0005411255406215787,-0.00016025641525629908,4.87890977618477e-19,-0.009752747602760792,0.0012820513220503926,0.0006410256610251963,0.003528415923938155,-0.0,-0.0,-0.00023310023243539035,8.97550004636256e-19,-0.00011655011621769518,-0.00022893772984389216,0.002314814832061529,-0.0069444444961845875,0.0,-0.0,0.002314814832061529,0.0,0.0,0.0,0.0,0.0,0.0016666667070239782,-0.0011111111380159855,-0.00041666667675599456,-0.0,0.0,0.00027777778450399637,0.0,0.0,0.0,0.0,0.0012820513220503926,-0.0008547008619643748,0.0,-0.00023310023243539035,0.0,0.0,0.0001554001501062885,0.0,-1.6940658945086007e-21,-1.6940658945086007e-21,0.0006313131307251751,1.4444474582904269e-34,-0.0005411255406215787,8.97550004636256e-19,0.0,0.0,0.0,6.764069257769734e-05,-5.736023211672736e-20,-6.073719050512656e-20,0.0006410256610251963,-6.776263578034403e-21,-0.00016025641525629908,-0.00011655011621769518,0.0,0.0,-1.6940658945086007e-21,-5.736023211672736e-20,2.9137529054423794e-05,-8.470329472543003e-22,0.000381562887923792,1.3552527156068805e-20,4.87890977618477e-19,-0.00022893772984389216,0.0,0.0,-1.6940658945086007e-21,-6.073719050512656e-20,-8.470329472543003e-22,2.0812520233448595e-05,4.0,9.0,13.0,0.0632045716047287,-0.0217216107994318,-0.011548451147973537,-0.008424908854067326,0.0021367522422224283,0.0015384615398943424,0.001098901149816811,0.0005827505956403911,0.0005494505749084055,0.0003052503161597997,-0.0217216107994318,0.029438339173793793,0.0015384615398943424,0.001098901149816811,-0.006410256493836641,-0.001025640987791121,-0.0007326007471419871,-4.700002190218126e-18,-1.7076184216646695e-18,-5.149960319306146e-19,-0.011548451147973537,0.0015384615398943424,0.005717615596950054,0.0005494505749084055,-1.2103068494859486e-17,-0.0003846153849735856,-1.2671612890924333e-18,-0.0004995004856027663,-0.00013736264372710139,6.030874584450618e-19,-0.008424908854067326,0.001098901149816811,0.0005494505749084055,0.002791652688756585,-1.2510552553854133e-18,-4.684897148449872e-19,-0.00018315018678549677,1.0721434301181298e-18,-9.157509339274839e-05,-0.00016650016186758876,0.0021367522422224283,-0.006410256493836641,-1.2103068494859486e-17,-1.2510552553854133e-18,0.0021367522422224283,7.756719207129858e-19,-7.461503228647599e-20,1.0166877942865029e-18,3.2534008693385056e-19,-6.161743911606013e-21,0.0015384615398943424,-0.001025640987791121,-0.0003846153849735856,-4.684897148449872e-19,7.756719207129858e-19,0.00025641024694778025,1.171224287112468e-19,2.661873415050237e-19,7.320151632894211e-20,-2.2268564981977415e-34,0.001098901149816811,-0.0007326007471419871,-1.2671612890924333e-18,-0.00018315018678549677,-7.461503228647599e-20,1.171224287112468e-19,0.00012210012937430292,8.027871855358096e-20,5.929230630780102e-20,7.962109704190423e-20,0.0005827505956403911,-4.700002190218126e-18,-0.0004995004856027663,1.0721434301181298e-18,1.0166877942865029e-18,2.661873415050237e-19,8.027871855358096e-20,6.243756070034578e-05,-5.387124568528978e-20,-7.394092532368502e-20,0.0005494505749084055,-1.7076184216646695e-18,-0.00013736264372710139,-9.157509339274839e-05,3.2534008693385056e-19,7.320151632894211e-20,5.929230630780102e-20,-5.387124568528978e-20,2.2893773348187096e-05,-1.6940658945086007e-21,0.0003052503161597997,-5.149960319306146e-19,6.030874584450618e-19,-0.00016650016186758876,-6.161743911606013e-21,-2.2268564981977415e-34,7.962109704190423e-20,-7.394092532368502e-20,-1.6940658945086007e-21,1.387501379213063e-05,4.0,9.0,14.0,0.059197328984737396,-0.02023809589445591,-0.010757575742900372,-0.0073511903174221516,0.0019841270986944437,0.0014285714132711291,0.0009523809421807528,0.0005411255406215787,0.0004761904710903764,0.00024801588733680546,-0.02023809589445591,0.02738095261156559,0.0014285714132711291,0.0009523809421807528,-0.0059523810632526875,-0.0009523809421807528,-0.0006349206087179482,-3.2956527380398314e-19,-8.809142651444724e-20,-7.453889935837843e-20,-0.010757575742900372,0.0014285714132711291,0.005317717790603638,0.0004761904710903764,0.0,-0.0003571428533177823,0.0,-0.00046382189611904323,-0.0001190476177725941,3.049318610115481e-19,-0.0073511903174221516,0.0009523809421807528,0.0004761904710903764,0.0022470238618552685,-0.0,-8.458842001786173e-20,-0.00014652014942839742,6.256892381048842e-19,-7.326007471419871e-05,-0.00012400794366840273,0.0019841270986944437,-0.0059523810632526875,0.0,-0.0,0.0019841270986944437,0.0,0.0,0.0,0.0,0.0,0.0014285714132711291,-0.0009523809421807528,-0.0003571428533177823,-8.458842001786173e-20,0.0,0.0002380952355451882,1.504632769052528e-36,8.239131845099579e-20,2.1147105004465433e-20,-5.341446330136474e-35,0.0009523809421807528,-0.0006349206087179482,0.0,-0.00014652014942839742,0.0,1.504632769052528e-36,9.76800947682932e-05,-3.611118645726067e-35,8.470329472543003e-22,1.1858461261560205e-20,0.0005411255406215787,-3.2956527380398314e-19,-0.00046382189611904323,6.256892381048842e-19,0.0,8.239131845099579e-20,-3.611118645726067e-35,5.7977737014880404e-05,-3.090428840324513e-20,-3.862093032195588e-20,0.0004761904710903764,-8.809142651444724e-20,-0.0001190476177725941,-7.326007471419871e-05,0.0,2.1147105004465433e-20,8.470329472543003e-22,-3.090428840324513e-20,1.8315018678549677e-05,8.470329472543003e-22,0.00024801588733680546,-7.453889935837843e-20,3.049318610115481e-19,-0.00012400794366840273,0.0,-5.341446330136474e-35,1.1858461261560205e-20,-3.862093032195588e-20,8.470329472543003e-22,9.53907237999374e-06,4.0,9.0,15.0,0.05566859617829323,-0.01894444413483143,-0.010068181902170181,-0.006470588035881519,0.0018518518190830946,0.0013333333190530539,0.0008333333535119891,0.0005050505278632045,0.00041666667675599456,0.00020424836839083582,-0.01894444413483143,0.025592593476176262,0.0013333333190530539,0.0008333333535119891,-0.0055555556900799274,-0.0008888888987712562,-0.0005555555690079927,-1.4444474582904269e-34,-3.3881317890172014e-21,-5.421010862427522e-20,-0.010068181902170181,0.0013333333190530539,0.004970147740095854,0.00041666667675599456,0.0,-0.00033333332976326346,-3.3881317890172014e-21,-0.00043290044413879514,-0.00010416666918899864,-1.2874900798265365e-19,-0.006470588035881519,0.0008333333535119891,0.00041666667675599456,0.0018356316722929478,-0.0,-0.0,-0.0001190476177725941,-3.1447843000920504e-19,-5.952380888629705e-05,-9.426847827853635e-05,0.0018518518190830946,-0.0055555556900799274,0.0,-0.0,0.0018518518190830946,0.0,0.0,0.0,0.0,0.0,0.0013333333190530539,-0.0008888888987712562,-0.00033333332976326346,-0.0,0.0,0.00022222222469281405,0.0,0.0,0.0,0.0,0.0008333333535119891,-0.0005555555690079927,-3.3881317890172014e-21,-0.0001190476177725941,0.0,0.0,7.936507608974352e-05,1.504632769052528e-35,8.470329472543003e-22,5.929230630780102e-21,0.0005050505278632045,-1.4444474582904269e-34,-0.00043290044413879514,-3.1447843000920504e-19,0.0,0.0,1.504632769052528e-35,5.411255551734939e-05,2.343575220068627e-20,1.57668153388651e-20,0.00041666667675599456,-3.3881317890172014e-21,-0.00010416666918899864,-5.952380888629705e-05,0.0,0.0,8.470329472543003e-22,2.343575220068627e-20,1.4880952221574262e-05,0.0,0.00020424836839083582,-5.421010862427522e-20,-1.2874900798265365e-19,-9.426847827853635e-05,0.0,0.0,5.929230630780102e-21,1.57668153388651e-20,0.0,6.7334626692172606e-06,4.0,9.0,16.0,0.05253738537430763,-0.017806371673941612,-0.009461898356676102,-0.005739379208534956,0.0017361111240461469,0.0012499999720603228,0.000735294132027775,0.0004734848625957966,0.0003676470660138875,0.00017020697123371065,-0.017806371673941612,0.024023693054914474,0.0012499999720603228,0.000735294132027775,-0.0052083334885537624,-0.0008333333535119891,-0.0004901961074210703,-1.0842021724855044e-19,6.505213034913027e-19,4.1335207826009857e-19,-0.009461898356676102,0.0012499999720603228,0.004665258340537548,0.0003676470660138875,1.81603863891322e-18,-0.0003124999930150807,5.505714157152952e-19,-0.000405844155466184,-9.191176650347188e-05,2.5283933475540865e-19,-0.005739379208534956,0.000735294132027775,0.0003676470660138875,0.0015190242556855083,2.8731357570865868e-18,7.318364664277155e-19,-9.803921420825645e-05,6.369687763352339e-19,-4.901960710412823e-05,-7.294584793271497e-05,0.0017361111240461469,-0.0052083334885537624,1.81603863891322e-18,2.8731357570865868e-18,0.0017361111240461469,-2.0499353114589655e-20,-4.526927364943323e-19,-5.443442320429341e-20,-1.5914842540655734e-19,-7.962109704190423e-20,0.0012499999720603228,-0.0008333333535119891,-0.0003124999930150807,7.318364664277155e-19,-2.0499353114589655e-20,0.00020833333837799728,-6.098637220230962e-20,1.1350241493207625e-19,-2.0328790734103208e-20,-3.6132305750301815e-20,0.000735294132027775,-0.0004901961074210703,5.505714157152952e-19,-9.803921420825645e-05,-4.526927364943323e-19,-6.098637220230962e-20,6.535947613883764e-05,-3.218725199566341e-20,-2.202285662861181e-20,-7.562823483279968e-21,0.0004734848625957966,-1.0842021724855044e-19,-0.000405844155466184,6.369687763352339e-19,-5.443442320429341e-20,1.1350241493207625e-19,-3.218725199566341e-20,5.0730519433273e-05,-6.140988867593677e-20,-1.8840828521439558e-20,0.0003676470660138875,6.505213034913027e-19,-9.191176650347188e-05,-4.901960710412823e-05,-1.5914842540655734e-19,-2.0328790734103208e-20,-2.202285662861181e-20,-6.140988867593677e-20,1.2254901776032057e-05,-4.667197777474967e-21,0.00017020697123371065,4.1335207826009857e-19,2.5283933475540865e-19,-7.294584793271497e-05,-7.962109704190423e-20,-3.6132305750301815e-20,-7.562823483279968e-21,-1.8840828521439558e-20,-4.667197777474967e-21,4.863056346948724e-06,4.0,10.0,3.0,0.1815151572227478,-0.07454545795917511,-0.03659090772271156,-0.09068182110786438,0.008333333767950535,0.005454545374959707,0.014999999664723873,0.0018939394503831863,0.006818181835114956,0.012500000186264515,-0.07454545795917511,0.108030304312706,0.005454545374959707,0.014999999664723873,-0.02500000037252903,-0.003636363660916686,-0.009999999776482582,-1.1367502271049769e-17,-4.445228907190568e-18,5.2909066017292616e-17,-0.03659090772271156,0.005454545374959707,0.017127525061368942,0.006818181835114956,-2.598613702370448e-17,-0.001212121220305562,-1.2793585635328952e-17,-0.0014204545877873898,-0.0015151514671742916,2.6454533008646308e-17,-0.09068182110786438,0.014999999664723873,0.006818181835114956,0.21568182110786438,8.995881156270407e-18,3.0599580139492914e-18,-0.014999999664723873,1.9828881545967372e-19,-0.006818181835114956,-0.07500000298023224,0.008333333767950535,-0.02500000037252903,-2.598613702370448e-17,8.995881156270407e-18,0.008333333767950535,1.6805133673525319e-18,-4.377135399165203e-18,2.4123498337802474e-18,6.57093356855613e-19,-2.4913650210234565e-18,0.005454545374959707,-0.003636363660916686,-0.001212121220305562,3.0599580139492914e-18,1.6805133673525319e-18,0.000808080832939595,1.1220062005602531e-20,4.472333961502706e-19,1.6085488608555716e-19,-1.7881870540982532e-18,0.014999999664723873,-0.009999999776482582,-1.2793585635328952e-17,-0.014999999664723873,-4.377135399165203e-18,1.1220062005602531e-20,0.009999999776482582,1.2491985451029615e-18,8.673617379884035e-19,-3.2959746043559335e-17,0.0018939394503831863,-1.1367502271049769e-17,-0.0014204545877873898,1.9828881545967372e-19,2.4123498337802474e-18,4.472333961502706e-19,1.2491985451029615e-18,0.00015782828268129379,8.980370976947761e-20,-1.2375937180967253e-18,0.006818181835114956,-4.445228907190568e-18,-0.0015151514671742916,-0.006818181835114956,6.57093356855613e-19,1.6085488608555716e-19,8.673617379884035e-19,8.980370976947761e-20,0.0015151514671742916,-1.0408340855860843e-17,0.012500000186264515,5.2909066017292616e-17,2.6454533008646308e-17,-0.07500000298023224,-2.4913650210234565e-18,-1.7881870540982532e-18,-3.2959746043559335e-17,-1.2375937180967253e-18,-1.0408340855860843e-17,0.03750000149011612,4.0,10.0,4.0,0.14911364018917084,-0.05815909057855606,-0.028465909883379936,-0.05815909057855606,0.0062500000931322575,0.004090908914804459,0.008999999612569809,0.0014204545877873898,0.004090908914804459,0.0062500000931322575,-0.05815909057855606,0.08252272754907608,0.004090908914804459,0.008999999612569809,-0.01875000074505806,-0.0027272726874798536,-0.006000000052154064,5.312590645178972e-18,9.974659986866641e-18,9.889064164260266e-18,-0.028465909883379936,0.004090908914804459,0.013072916306555271,0.004090908914804459,1.5829351718288365e-17,-0.0009090909152291715,8.673617379884035e-18,-0.0010653409408405423,-0.0009090909152291715,-9.549277393777571e-18,-0.05815909057855606,0.008999999612569809,0.004090908914804459,0.08252272754907608,1.778454695165138e-17,4.1306589961754936e-19,-0.006000000052154064,5.421010862427522e-19,-0.0027272726874798536,-0.01875000074505806,0.0062500000931322575,-0.01875000074505806,1.5829351718288365e-17,1.778454695165138e-17,0.0062500000931322575,-5.421010862427522e-19,-2.656295322589486e-18,-1.1248597539537109e-18,-1.9244588561617704e-18,-1.914443146509825e-18,0.004090908914804459,-0.0027272726874798536,-0.0009090909152291715,4.1306589961754936e-19,-5.421010862427522e-19,0.000606060610152781,-4.87890977618477e-19,-1.8973538018496328e-19,-3.7947076036992655e-19,5.556124611633465e-19,0.008999999612569809,-0.006000000052154064,8.673617379884035e-18,-0.006000000052154064,-2.656295322589486e-18,-4.87890977618477e-19,0.004000000189989805,-5.014435047745458e-19,-1.2468324983583301e-18,-3.821361017396949e-18,0.0014204545877873898,5.312590645178972e-18,-0.0010653409408405423,5.421010862427522e-19,-1.1248597539537109e-18,-1.8973538018496328e-19,-5.014435047745458e-19,0.00011837121564894915,-1.0164395367051604e-19,1.7974217243061894e-19,0.004090908914804459,9.974659986866641e-18,-0.0009090909152291715,-0.0027272726874798536,-1.9244588561617704e-18,-3.7947076036992655e-19,-1.2468324983583301e-18,-1.0164395367051604e-19,0.000606060610152781,4.285913507622549e-18,0.0062500000931322575,9.889064164260266e-18,-9.549277393777571e-18,-0.01875000074505806,-1.914443146509825e-18,5.556124611633465e-19,-3.821361017396949e-18,1.7974217243061894e-19,4.285913507622549e-18,0.0062500000931322575,4.0,10.0,5.0,0.12668831646442413,-0.04772727191448212,-0.023318182677030563,-0.04055844247341156,0.004999999888241291,0.0032727273646742105,0.006000000052154064,0.0011363636003807187,0.0027272726874798536,0.0035714285913854837,-0.04772727191448212,0.06681818515062332,0.0032727273646742105,0.006000000052154064,-0.014999999664723873,-0.0021818182431161404,-0.004000000189989805,-8.538092108323347e-19,-4.7704895589362195e-18,-1.9949319973733282e-17,-0.023318182677030563,0.0032727273646742105,0.010579545050859451,0.0027272726874798536,-1.0645510081092047e-17,-0.0007272727089002728,-7.453889935837843e-19,-0.0008522727293893695,-0.000606060610152781,-6.938893903907228e-18,-0.04055844247341156,0.006000000052154064,0.0027272726874798536,0.04170779138803482,-2.45029690981724e-17,-1.734723475976807e-18,-0.003000000026077032,-6.505213034913027e-19,-0.0013636363437399268,-0.0071428571827709675,0.004999999888241291,-0.014999999664723873,-1.0645510081092047e-17,-2.45029690981724e-17,0.004999999888241291,2.9907178267997745e-18,4.353966483797899e-18,3.2864878353466853e-19,1.1567083788861104e-18,2.8219365858920045e-18,0.0032727273646742105,-0.0021818182431161404,-0.0007272727089002728,-1.734723475976807e-18,2.9907178267997745e-18,0.0004848484823014587,1.6263032587282567e-19,-5.306817609512296e-21,-1.3552527156068805e-20,4.472333961502706e-19,0.006000000052154064,-0.004000000189989805,-7.453889935837843e-19,-0.003000000026077032,4.353966483797899e-18,1.6263032587282567e-19,0.0020000000949949026,-6.052033993766696e-20,5.963111948670274e-19,4.255493527005605e-18,0.0011363636003807187,-8.538092108323347e-19,-0.0008522727293893695,-6.505213034913027e-19,3.2864878353466853e-19,-5.306817609512296e-21,-6.052033993766696e-20,9.469696669839323e-05,1.3374761276449115e-21,1.8891860395355252e-19,0.0027272726874798536,-4.7704895589362195e-18,-0.000606060610152781,-0.0013636363437399268,1.1567083788861104e-18,-1.3552527156068805e-20,5.963111948670274e-19,1.3374761276449115e-21,0.0003030303050763905,2.032879073410321e-18,0.0035714285913854837,-1.9949319973733282e-17,-6.938893903907228e-18,-0.0071428571827709675,2.8219365858920045e-18,4.472333961502706e-19,4.255493527005605e-18,1.8891860395355252e-19,2.032879073410321e-18,0.0017857142956927419,4.0,10.0,6.0,0.11018939316272736,-0.04048701375722885,-0.019756494089961052,-0.029926948249340057,0.004166666883975267,0.0027272726874798536,0.004285714123398066,0.0009469697251915932,0.0019480519695207477,0.0022321429569274187,-0.04048701375722885,0.05615800991654396,0.0027272726874798536,0.004285714123398066,-0.012500000186264515,-0.001818181830458343,-0.0028571428265422583,-5.0245994431125096e-18,3.7947076036992655e-18,2.2442984970449942e-17,-0.019756494089961052,0.0027272726874798536,0.00888843834400177,0.0019480519695207477,-1.0855574252011113e-17,-0.000606060610152781,9.825582188149884e-19,-0.0007102272938936949,-0.00043290044413879514,5.908901840045999e-18,-0.029926948249340057,0.004285714123398066,0.0019480519695207477,0.024247564375400543,2.1033522146218786e-17,6.5052130349130266e-18,-0.001714285695925355,7.318364664277155e-19,-0.0007792207761667669,-0.0033482143189758062,0.004166666883975267,-0.012500000186264515,-1.0855574252011113e-17,2.1033522146218786e-17,0.004166666883975267,7.99797573856284e-19,-4.2084904879621394e-19,1.1333300834262539e-18,-5.152414977773897e-19,-3.4216166805988073e-18,0.0027272726874798536,-0.001818181830458343,-0.000606060610152781,6.5052130349130266e-18,7.99797573856284e-19,0.0004040404164697975,-2.710505431213761e-19,2.0304352716881095e-19,-9.486769009248164e-20,-1.0909784360635388e-18,0.004285714123398066,-0.0028571428265422583,9.825582188149884e-19,-0.001714285695925355,-4.2084904879621394e-19,-2.710505431213761e-19,0.0011428571306169033,1.4986716166567973e-19,-7.318364664277155e-19,-2.1955093992831465e-18,0.0009469697251915932,-5.0245994431125096e-18,-0.0007102272938936949,7.318364664277155e-19,1.1333300834262539e-18,2.0304352716881095e-19,1.4986716166567973e-19,7.891414134064689e-05,-1.7291220350507967e-20,-1.7519848225056223e-19,0.0019480519695207477,3.7947076036992655e-18,-0.00043290044413879514,-0.0007792207761667669,-5.152414977773897e-19,-9.486769009248164e-20,-7.318364664277155e-19,-1.7291220350507967e-20,0.00017316016601398587,-9.825582188149884e-19,0.0022321429569274187,2.2442984970449942e-17,5.908901840045999e-18,-0.0033482143189758062,-3.4216166805988073e-18,-1.0909784360635388e-18,-2.1955093992831465e-18,-1.7519848225056223e-19,-9.825582188149884e-19,0.0006696428754366934,4.0,10.0,7.0,0.09752164781093597,-0.03516233712434769,-0.017142856493592262,-0.023003246635198593,0.0035714285913854837,0.0023376622702926397,0.003214285708963871,0.000811688310932368,0.0014610389480367303,0.0014880952658131719,-0.03516233712434769,0.048441559076309204,0.0023376622702926397,0.003214285708963871,-0.010714286006987095,-0.0015584415523335338,-0.002142857061699033,-1.6940658945086007e-20,-1.3552527156068805e-20,-0.0,-0.017142856493592262,0.0023376622702926397,0.007665043231099844,0.0014610389480367303,0.0,-0.0005194804980419576,0.0,-0.0006087662186473608,-0.0003246753185521811,-0.0,-0.023003246635198593,0.003214285708963871,0.0014610389480367303,0.01540584396570921,0.0,1.7991590297747495e-21,-0.0010714285308495164,0.0,-0.0004870129923801869,-0.0017857142956927419,0.0035714285913854837,-0.010714286006987095,0.0,0.0,0.0035714285913854837,0.0,0.0,0.0,0.0,-0.0,0.0023376622702926397,-0.0015584415523335338,-0.0005194804980419576,1.7991590297747495e-21,0.0,0.00034632033202797174,0.0,0.0,3.3881317890172014e-21,-0.0,0.003214285708963871,-0.002142857061699033,0.0,-0.0010714285308495164,0.0,0.0,0.0007142857066355646,0.0,0.0,-0.0,0.000811688310932368,-1.6940658945086007e-20,-0.0006087662186473608,0.0,0.0,0.0,0.0,6.764069257769734e-05,0.0,-0.0,0.0014610389480367303,-1.3552527156068805e-20,-0.0003246753185521811,-0.0004870129923801869,0.0,3.3881317890172014e-21,0.0,0.0,0.00010822511103469878,-0.0,0.0014880952658131719,-0.0,-0.0,-0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,4.0,10.0,8.0,0.0874810591340065,-0.031079545617103577,-0.0151420459151268,-0.01823863573372364,0.0031250000465661287,0.0020454544574022293,0.0024999999441206455,0.0007102272938936949,0.0011363636003807187,0.0010416667209938169,-0.031079545617103577,0.04259469732642174,0.0020454544574022293,0.0024999999441206455,-0.00937500037252903,-0.0013636363437399268,-0.0016666667070239782,-6.437450399132683e-20,-2.0328790734103208e-19,-6.476301004552767e-19,-0.0151420459151268,0.0020454544574022293,0.006738478317856789,0.0011363636003807187,0.0,-0.00045454545761458576,-2.0185873311299652e-19,-0.0005326704704202712,-0.00025252526393160224,-7.843787391083482e-35,-0.01823863573372364,0.0024999999441206455,0.0011363636003807187,0.010419372469186783,0.0,1.3278529838560759e-21,-0.0007142857066355646,-1.3552527156068805e-20,-0.0003246753185521811,-0.0010416667209938169,0.0031250000465661287,-0.00937500037252903,0.0,0.0,0.0031250000465661287,0.0,0.0,0.0,0.0,-0.0,0.0020454544574022293,-0.0013636363437399268,-0.00045454545761458576,1.3278529838560759e-21,0.0,0.0003030303050763905,-3.009265538105056e-36,6.776263578034403e-21,-3.3881317890172014e-21,-0.0,0.0024999999441206455,-0.0016666667070239782,-2.0185873311299652e-19,-0.0007142857066355646,0.0,-3.009265538105056e-36,0.0004761904710903764,-3.009265538105056e-36,5.767392097699249e-20,1.8503717525142107e-19,0.0007102272938936949,-6.437450399132683e-20,-0.0005326704704202712,-1.3552527156068805e-20,0.0,6.776263578034403e-21,-3.009265538105056e-36,5.918560782447457e-05,0.0,-0.0,0.0011363636003807187,-2.0328790734103208e-19,-0.00025252526393160224,-0.0003246753185521811,0.0,-3.3881317890172014e-21,5.767392097699249e-20,0.0,7.215006917249411e-05,2.2410821322371323e-35,0.0010416667209938169,-6.476301004552767e-19,-7.843787391083482e-35,-0.0010416667209938169,-0.0,-0.0,1.8503717525142107e-19,-0.0,2.2410821322371323e-35,0.00014880952949170023,4.0,10.0,9.0,0.07932323217391968,-0.027848483994603157,-0.01356060616672039,-0.014818182215094566,0.0027777778450399637,0.001818181830458343,0.0020000000949949026,0.0006313131307251751,0.0009090909152291715,0.0007575757335871458,-0.027848483994603157,0.03801010176539421,0.001818181830458343,0.0020000000949949026,-0.008333333767950535,-0.001212121220305562,-0.0013333333190530539,3.2526065174565133e-19,-6.776263578034403e-20,0.0,-0.01356060616672039,0.001818181830458343,0.006012205500155687,0.0009090909152291715,0.0,-0.0004040404164697975,-6.776263578034403e-20,-0.0004734848625957966,-0.00020202020823489875,-8.131516293641283e-20,-0.014818182215094566,0.0020000000949949026,0.0009090909152291715,0.007384199183434248,-0.0,-0.0,-0.0005000000237487257,-3.4626119714767856e-21,-0.00022727272880729288,-0.0006493506371043622,0.0027777778450399637,-0.008333333767950535,0.0,-0.0,0.0027777778450399637,0.0,0.0,0.0,0.0,0.0,0.001818181830458343,-0.001212121220305562,-0.0004040404164697975,-0.0,0.0,0.000269360258243978,0.0,-6.776263578034403e-20,0.0,-1.2724498562218876e-21,0.0020000000949949026,-0.0013333333190530539,-6.776263578034403e-20,-0.0005000000237487257,0.0,0.0,0.00033333332976326346,8.470329472543003e-22,1.6940658945086007e-20,-6.776263578034403e-21,0.0006313131307251751,3.2526065174565133e-19,-0.0004734848625957966,-3.4626119714767856e-21,0.0,-6.776263578034403e-20,8.470329472543003e-22,5.260942634777166e-05,0.0,-8.470329472543003e-22,0.0009090909152291715,-6.776263578034403e-20,-0.00020202020823489875,-0.00022727272880729288,0.0,0.0,1.6940658945086007e-20,0.0,5.0505052058724687e-05,2.371692252312041e-20,0.0007575757335871458,0.0,-8.131516293641283e-20,-0.0006493506371043622,0.0,-1.2724498562218876e-21,-6.776263578034403e-21,-8.470329472543003e-22,2.371692252312041e-20,8.116882963804528e-05,4.0,10.0,10.0,0.07256198674440384,-0.025227272883057594,-0.012278925627470016,-0.012278925627470016,0.0024999999441206455,0.0016363636823371053,0.0016363636823371053,0.0005681818001903594,0.0007438016473315656,0.0005681818001903594,-0.025227272883057594,0.03431818261742592,0.0016363636823371053,0.0016363636823371053,-0.007499999832361937,-0.0010909091215580702,-0.0010909091215580702,-2.710505431213761e-20,-1.3552527156068805e-20,0.0,-0.012278925627470016,0.0016363636823371053,0.005427513737231493,0.0007438016473315656,0.0,-0.0003636363544501364,0.0,-0.00042613636469468474,-0.00016528925334569067,-1.3552527156068805e-20,-0.012278925627470016,0.0016363636823371053,0.0007438016473315656,0.005427513737231493,-0.0,9.415235496162086e-21,-0.0003636363544501364,6.12150690624285e-21,-0.00016528925334569067,-0.00042613636469468474,0.0024999999441206455,-0.007499999832361937,0.0,-0.0,0.0024999999441206455,0.0,0.0,0.0,0.0,0.0,0.0016363636823371053,-0.0010909091215580702,-0.0003636363544501364,9.415235496162086e-21,0.0,0.00024242424115072936,-6.308085207832749e-22,3.3881317890172014e-21,-2.867311481054476e-22,-1.0190044226440892e-21,0.0016363636823371053,-0.0010909091215580702,0.0,-0.0003636363544501364,0.0,-6.308085207832749e-22,0.00024242424115072936,-8.470329472543003e-22,0.0,3.3881317890172014e-21,0.0005681818001903594,-2.710505431213761e-20,-0.00042613636469468474,6.12150690624285e-21,0.0,3.3881317890172014e-21,-8.470329472543003e-22,4.734848334919661e-05,0.0,-8.470329472543003e-22,0.0007438016473315656,-1.3552527156068805e-20,-0.00016528925334569067,-0.00016528925334569067,0.0,-2.867311481054476e-22,0.0,0.0,3.6730947613250464e-05,3.3881317890172014e-21,0.0005681818001903594,0.0,-1.3552527156068805e-20,-0.00042613636469468474,0.0,-1.0190044226440892e-21,3.3881317890172014e-21,-8.470329472543003e-22,3.3881317890172014e-21,4.734848334919661e-05,4.0,10.0,11.0,0.06686586141586304,-0.023057851940393448,-0.011219007894396782,-0.01034170389175415,0.0022727272007614374,0.0014876032946631312,0.0013636363437399268,0.0005165289039723575,0.0006198346964083612,0.0004370629321783781,-0.023057851940393448,0.031280990689992905,0.0014876032946631312,0.0013636363437399268,-0.006818181835114956,-0.0009917354909703135,-0.0009090909152291715,2.507217523872729e-19,-4.743384504624082e-20,2.710505431213761e-20,-0.011219007894396782,0.0014876032946631312,0.004946625325828791,0.0006198346964083612,0.0,-0.00033057850669138134,-4.0657581468206416e-20,-0.00038739669253118336,-0.00013774105173069984,-3.3881317890172014e-20,-0.01034170389175415,0.0013636363437399268,0.0006198346964083612,0.00410796795040369,-0.0,-0.0,-0.00027272728038951755,3.6518081300687666e-21,-0.0001239669363712892,-0.00029137529782019556,0.0022727272007614374,-0.006818181835114956,0.0,-0.0,0.0022727272007614374,0.0,0.0,0.0,0.0,0.0,0.0014876032946631312,-0.0009917354909703135,-0.00033057850669138134,-0.0,0.0,0.00022038567112758756,8.470329472543003e-22,-6.098637220230962e-20,-1.6940658945086007e-21,-3.3604482490940697e-22,0.0013636363437399268,-0.0009090909152291715,-4.0657581468206416e-20,-0.00027272728038951755,0.0,8.470329472543003e-22,0.0001818181772250682,0.0,8.470329472543003e-21,-6.776263578034403e-21,0.0005165289039723575,2.507217523872729e-19,-0.00038739669253118336,3.6518081300687666e-21,0.0,-6.098637220230962e-20,0.0,4.3044077756349e-05,-1.6940658945086007e-21,-4.235164736271502e-22,0.0006198346964083612,-4.743384504624082e-20,-0.00013774105173069984,-0.0001239669363712892,0.0,-1.6940658945086007e-21,8.470329472543003e-21,-1.6940658945086007e-21,2.7548208890948445e-05,6.776263578034403e-21,0.0004370629321783781,2.710505431213761e-20,-3.3881317890172014e-20,-0.00029137529782019556,0.0,-3.3604482490940697e-22,-6.776263578034403e-21,-4.235164736271502e-22,6.776263578034403e-21,2.9137529054423794e-05,4.0,10.0,12.0,0.06200091540813446,-0.021232517436146736,-0.010327797383069992,-0.008829919621348381,0.0020833334419876337,0.0013636363437399268,0.0011538461549207568,0.0004734848625957966,0.0005244755302555859,0.00034340660204179585,-0.021232517436146736,0.028738344088196754,0.0013636363437399268,0.0011538461549207568,-0.0062500000931322575,-0.0009090909152291715,-0.0007692307699471712,2.710505431213761e-19,2.0328790734103208e-20,-5.421010862427522e-20,-0.010327797383069992,0.0013636363437399268,0.004544118884950876,0.0005244755302555859,0.0,-0.0003030303050763905,1.3552527156068805e-20,-0.00035511364694684744,-0.00011655011621769518,1.3552527156068805e-20,-0.008829919621348381,0.0011538461549207568,0.0005244755302555859,0.0031851103994995356,-0.0,1.1050571567179422e-20,-0.00020979020337108523,1.2507518545840168e-20,-9.535918798064813e-05,-0.00020604395831469446,0.0020833334419876337,-0.0062500000931322575,0.0,-0.0,0.0020833334419876337,0.0,0.0,0.0,0.0,0.0,0.0013636363437399268,-0.0009090909152291715,-0.0003030303050763905,1.1050571567179422e-20,0.0,0.00020202020823489875,1.191769403752109e-22,-6.437450399132683e-20,-2.8719424101124855e-21,1.7423280512803366e-23,0.0011538461549207568,-0.0007692307699471712,1.3552527156068805e-20,-0.00020979020337108523,0.0,1.191769403752109e-22,0.0001398601452820003,8.470329472543003e-22,-2.541098841762901e-21,1.3552527156068805e-20,0.0004734848625957966,2.710505431213761e-19,-0.00035511364694684744,1.2507518545840168e-20,0.0,-6.437450399132683e-20,8.470329472543003e-22,3.9457070670323446e-05,-3.3881317890172014e-21,4.235164736271502e-22,0.0005244755302555859,2.0328790734103208e-20,-0.00011655011621769518,-9.535918798064813e-05,0.0,-2.8719424101124855e-21,-2.541098841762901e-21,-3.3881317890172014e-21,2.119093005603645e-05,-2.541098841762901e-21,0.00034340660204179585,-5.421010862427522e-20,1.3552527156068805e-20,-0.00020604395831469446,0.0,1.7423280512803366e-23,1.3552527156068805e-20,4.235164736271502e-22,-2.541098841762901e-21,1.8731268937699497e-05,4.0,10.0,13.0,0.05779720097780228,-0.019675325602293015,-0.009567932225763798,-0.00762737262994051,0.001923076924867928,0.0012587412493303418,0.0009890110231935978,0.0004370629321783781,0.0004495504545047879,0.00027472528745420277,-0.019675325602293015,0.026578420773148537,0.0012587412493303418,0.0009890110231935978,-0.005769230891019106,-0.0008391608134843409,-0.0006593406433239579,-0.0,-2.0328790734103208e-20,2.710505431213761e-20,-0.009567932225763798,0.0012587412493303418,0.004202255979180336,0.0004495504545047879,0.0,-0.0002797202905640006,-2.0328790734103208e-20,-0.0003277971991337836,-9.990009857574478e-05,-1.3552527156068805e-20,-0.00762737262994051,0.0009890110231935978,0.0004495504545047879,0.0025199800729751587,-0.0,-0.0,-0.00016483516083098948,-0.0,-7.492507575079799e-05,-0.00014985015150159597,0.001923076924867928,-0.005769230891019106,0.0,-0.0,0.001923076924867928,0.0,0.0,0.0,0.0,0.0,0.0012587412493303418,-0.0008391608134843409,-0.0002797202905640006,-0.0,0.0,0.00018648018885869533,0.0,0.0,0.0,0.0,0.0009890110231935978,-0.0006593406433239579,-2.0328790734103208e-20,-0.00016483516083098948,0.0,0.0,0.00010989011207129806,0.0,4.235164736271502e-21,-3.3881317890172014e-21,0.0004370629321783781,-0.0,-0.0003277971991337836,-0.0,0.0,0.0,0.0,3.6421912227524444e-05,0.0,0.0,0.0004495504545047879,-2.0328790734103208e-20,-9.990009857574478e-05,-7.492507575079799e-05,0.0,0.0,4.235164736271502e-21,0.0,1.6650015822960995e-05,3.3881317890172014e-21,0.00027472528745420277,2.710505431213761e-20,-1.3552527156068805e-20,-0.00014985015150159597,0.0,0.0,-3.3881317890172014e-21,0.0,3.3881317890172014e-21,1.2487512321968097e-05,4.0,10.0,14.0,0.054128248244524,-0.018331168219447136,-0.008912337943911552,-0.006655032280832529,0.0017857142956927419,0.0011688311351463199,0.0008571428479626775,0.000405844155466184,0.00038961038808338344,0.00022321428696159273,-0.018331168219447136,0.024720778688788414,0.0011688311351463199,0.0008571428479626775,-0.0053571430034935474,-0.0007792207761667669,-0.0005714285653084517,-0.0,1.6940658945086007e-20,6.776263578034403e-20,-0.008912337943911552,0.0011688311351463199,0.003908279351890087,0.00038961038808338344,0.0,-0.0002597402490209788,1.6940658945086007e-20,-0.0003043831093236804,-8.658008300699294e-05,1.0164395367051604e-20,-0.006655032280832529,0.0008571428479626775,0.00038961038808338344,0.0020283153280615807,-0.0,-0.0,-0.00013186813157517463,-0.0,-5.994005914544687e-05,-0.00011160714348079637,0.0017857142956927419,-0.0053571430034935474,0.0,-0.0,0.0017857142956927419,0.0,0.0,0.0,0.0,0.0,0.0011688311351463199,-0.0007792207761667669,-0.0002597402490209788,-0.0,0.0,0.00017316016601398587,0.0,0.0,0.0,0.0,0.0008571428479626775,-0.0005714285653084517,1.6940658945086007e-20,-0.00013186813157517463,0.0,0.0,8.791208529146388e-05,0.0,-2.541098841762901e-21,-8.470329472543003e-21,0.000405844155466184,-0.0,-0.0003043831093236804,-0.0,0.0,0.0,0.0,3.382034628884867e-05,0.0,0.0,0.00038961038808338344,1.6940658945086007e-20,-8.658008300699294e-05,-5.994005914544687e-05,0.0,0.0,-2.541098841762901e-21,0.0,1.3320013749762438e-05,-8.470329472543003e-22,0.00022321428696159273,6.776263578034403e-20,1.0164395367051604e-20,-0.00011160714348079637,0.0,0.0,-8.470329472543003e-21,0.0,-8.470329472543003e-22,8.585165232943837e-06,4.0,10.0,15.0,0.05089794844388962,-0.01715909130871296,-0.008340909145772457,-0.0058576203882694244,0.0016666667070239782,0.0010909091215580702,0.000750000006519258,0.0003787878667935729,0.0003409090859349817,0.00018382353300694376,-0.01715909130871296,0.023106060922145844,0.0010909091215580702,0.000750000006519258,-0.004999999888241291,-0.0007272727089002728,-0.0005000000237487257,-8.38975329208633e-19,2.744386749103933e-19,6.030874584450618e-19,-0.008340909145772457,0.0010909091215580702,0.0036527777556329966,0.0003409090859349817,-4.330553963740198e-18,-0.00024242424115072936,7.013432803265607e-19,-0.0002840909000951797,-7.575757626909763e-05,1.6601845766184287e-19,-0.0058576203882694244,0.000750000006519258,0.0003409090859349817,0.001656938693486154,1.2703937041311374e-18,9.632665057738735e-19,-0.00010714285599533468,3.1859145635815426e-19,-4.870129851042293e-05,-8.484163117827848e-05,0.0016666667070239782,-0.004999999888241291,-4.330553963740198e-18,1.2703937041311374e-18,0.0016666667070239782,4.899634786432286e-19,1.0002580744660332e-19,3.9951207999177344e-19,-2.046664464064964e-34,-8.163404752490056e-20,0.0010909091215580702,-0.0007272727089002728,-0.00024242424115072936,9.632665057738735e-19,4.899634786432286e-19,0.0001616161607671529,-6.228783749858524e-20,3.0266194622252912e-34,-2.831265399593407e-20,-4.9322947850727206e-20,0.000750000006519258,-0.0005000000237487257,7.013432803265607e-19,-0.00010714285599533468,1.0002580744660332e-19,-6.228783749858524e-20,7.142857066355646e-05,-5.136583839448883e-20,-2.159934015498466e-20,-1.9481757786848908e-20,0.0003787878667935729,-8.38975329208633e-19,-0.0002840909000951797,3.1859145635815426e-19,3.9951207999177344e-19,3.0266194622252912e-34,-5.136583839448883e-20,3.156565799145028e-05,-3.463226702381232e-21,-1.3082379183202545e-20,0.0003409090859349817,2.744386749103933e-19,-7.575757626909763e-05,-4.870129851042293e-05,-2.046664464064964e-34,-2.831265399593407e-20,-2.159934015498466e-20,-3.463226702381232e-21,1.0822510375874117e-05,2.964615315390051e-21,0.00018382353300694376,6.030874584450618e-19,1.6601845766184287e-19,-8.484163117827848e-05,-8.163404752490056e-20,-4.9322947850727206e-20,-1.9481757786848908e-20,-1.3082379183202545e-20,2.964615315390051e-21,6.06011644777027e-06,4.0,10.0,16.0,0.04803197458386421,-0.01612800732254982,-0.007838401943445206,-0.005195521283894777,0.0015625000232830644,0.0010227272287011147,0.0006617647013626993,0.00035511364694684744,0.00030080214492045343,0.00015318627993110567,-0.01612800732254982,0.021689506247639656,0.0010227272287011147,0.0006617647013626993,-0.004687500186264515,-0.0006818181718699634,-0.00044117646757513285,-0.0,-1.6940658945086007e-20,6.776263578034403e-20,-0.007838401943445206,0.0010227272287011147,0.0034286570735275745,0.00030080214492045343,0.0,-0.00022727272880729288,-1.3552527156068805e-20,-0.0002663352352101356,-6.68449210934341e-05,-6.776263578034403e-21,-0.005195521283894777,0.0006617647013626993,0.00030080214492045343,0.0013711325591430068,-0.0,-0.0,-8.823529060464352e-05,-0.0,-4.0106951928464696e-05,-6.565126386703923e-05,0.0015625000232830644,-0.004687500186264515,0.0,-0.0,0.0015625000232830644,0.0,0.0,0.0,0.0,0.0,0.0010227272287011147,-0.0006818181718699634,-0.00022727272880729288,-0.0,0.0,0.00015151515253819525,0.0,0.0,0.0,0.0,0.0006617647013626993,-0.00044117646757513285,-1.3552527156068805e-20,-8.823529060464352e-05,0.0,0.0,5.8823530707741156e-05,0.0,2.117582368135751e-21,-8.470329472543003e-21,0.00035511364694684744,-0.0,-0.0002663352352101356,-0.0,0.0,0.0,0.0,2.9592803912237287e-05,0.0,0.0,0.00030080214492045343,-1.6940658945086007e-20,-6.68449210934341e-05,-4.0106951928464696e-05,0.0,0.0,2.117582368135751e-21,0.0,8.912656085158233e-06,1.6940658945086007e-21,0.00015318627993110567,6.776263578034403e-20,-6.776263578034403e-21,-6.565126386703923e-05,0.0,0.0,-8.470329472543003e-21,0.0,1.6940658945086007e-21,4.376750894152792e-06,4.0,11.0,3.0,0.16768647730350494,-0.06818182021379471,-0.030856642872095108,-0.08295454829931259,0.007575757801532745,0.004545454401522875,0.013636363670229912,0.0014568764017894864,0.005681818351149559,0.011363636702299118,-0.06818182021379471,0.09848485141992569,0.004545454401522875,0.013636363670229912,-0.022727273404598236,-0.0030303029343485832,-0.00909090880304575,-2.6521056527869048e-18,-5.963111948670274e-19,5.204170427930421e-17,-0.030856642872095108,0.004545454401522875,0.012970085255801678,0.005681818351149559,-6.638707578069897e-18,-0.0009090909152291715,-2.3852447794681098e-18,-0.0009712509927339852,-0.0011363636003807187,1.1275702593849246e-17,-0.08295454829931259,0.013636363670229912,0.005681818351149559,0.19659091532230377,1.6281678892650737e-17,3.537851066298993e-18,-0.013636363670229912,1.2072369133990652e-18,-0.005681818351149559,-0.06818182021379471,0.007575757801532745,-0.022727273404598236,-6.638707578069897e-18,1.6281678892650737e-17,0.007575757801532745,2.168404344971009e-19,-2.0189427344500274e-18,5.692061405548898e-19,4.497332393589824e-19,-8.304148060300488e-18,0.004545454401522875,-0.0030303029343485832,-0.0009090909152291715,3.537851066298993e-18,2.168404344971009e-19,0.000606060610152781,5.5438840187783e-20,1.2197274440461925e-19,-6.134637025218065e-20,-1.7542569325519406e-18,0.013636363670229912,-0.00909090880304575,-2.3852447794681098e-18,-0.013636363670229912,-2.0189427344500274e-18,5.5438840187783e-20,0.00909090880304575,2.210167401629104e-19,-2.710505431213761e-19,-8.673617379884035e-18,0.0014568764017894864,-2.6521056527869048e-18,-0.0009712509927339852,1.2072369133990652e-18,5.692061405548898e-19,1.2197274440461925e-19,2.210167401629104e-19,9.712509927339852e-05,-4.3323775221746624e-20,-6.536022927791213e-19,0.005681818351149559,-5.963111948670274e-19,-0.0011363636003807187,-0.005681818351149559,4.497332393589824e-19,-6.134637025218065e-20,-2.710505431213761e-19,-4.3323775221746624e-20,0.0011363636003807187,-2.168404344971009e-18,0.011363636702299118,5.204170427930421e-17,1.1275702593849246e-17,-0.06818182021379471,-8.304148060300488e-18,-1.7542569325519406e-18,-8.673617379884035e-18,-6.536022927791213e-19,-2.168404344971009e-18,0.034090910106897354,4.0,11.0,4.0,0.1376398652791977,-0.05318181961774826,-0.023994754999876022,-0.05318181961774826,0.005681818351149559,0.003409090917557478,0.008181817829608917,0.0010926573304459453,0.003409090917557478,0.005681818351149559,-0.05318181961774826,0.0752272754907608,0.003409090917557478,0.008181817829608917,-0.017045455053448677,-0.0022727272007614374,-0.005454545374959707,-1.4094628242311558e-18,3.903127820947816e-18,4.5390123289361153e-17,-0.023994754999876022,0.003409090917557478,0.009898019023239613,0.003409090917557478,-6.5052130349130266e-18,-0.0006818181718699634,1.734723475976807e-18,-0.0007284382008947432,-0.0006818181718699634,9.711131824235822e-18,-0.05318181961774826,0.008181817829608917,0.003409090917557478,0.0752272754907608,1.9918221291423738e-17,9.11423250395327e-18,-0.005454545374959707,2.222614453595284e-18,-0.0022727272007614374,-0.017045455053448677,0.005681818351149559,-0.017045455053448677,-6.5052130349130266e-18,1.9918221291423738e-17,0.005681818351149559,2.1955093992831465e-18,2.439454888092385e-18,3.049318610115481e-19,-5.149960319306146e-19,-6.571262579644773e-18,0.003409090917557478,-0.0022727272007614374,-0.0006818181718699634,9.11423250395327e-18,2.1955093992831465e-18,0.00045454545761458576,-5.149960319306146e-19,2.371692252312041e-20,-2.710505431213761e-19,-2.1428659707390467e-18,0.008181817829608917,-0.005454545374959707,1.734723475976807e-18,-0.005454545374959707,2.439454888092385e-18,-5.149960319306146e-19,0.003636363660916686,5.421010862427522e-20,-5.692061405548898e-19,-8.243758085319829e-18,0.0010926573304459453,-1.4094628242311558e-18,-0.0007284382008947432,2.222614453595284e-18,3.049318610115481e-19,2.371692252312041e-20,5.421010862427522e-20,7.284382445504889e-05,-6.776263578034403e-20,-5.911251343178379e-19,0.003409090917557478,3.903127820947816e-18,-0.0006818181718699634,-0.0022727272007614374,-5.149960319306146e-19,-2.710505431213761e-19,-5.692061405548898e-19,-6.776263578034403e-20,0.00045454545761458576,3.5028552776297707e-19,0.005681818351149559,4.5390123289361153e-17,9.711131824235822e-18,-0.017045455053448677,-6.571262579644773e-18,-2.1428659707390467e-18,-8.243758085319829e-18,-5.911251343178379e-19,3.5028552776297707e-19,0.005681818351149559,4.0,11.0,5.0,0.11687812209129333,-0.04363636299967766,-0.019650349393486977,-0.037077922374010086,0.004545454401522875,0.0027272726874798536,0.005454545374959707,0.0008741258643567562,0.0022727272007614374,0.003246753243729472,-0.04363636299967766,0.06090909242630005,0.0027272726874798536,0.005454545374959707,-0.013636363670229912,-0.001818181830458343,-0.003636363660916686,4.841640326505581e-18,3.469446951953614e-18,-7.37257477290143e-18,-0.019650349393486977,0.0027272726874798536,0.008009323850274086,0.0022727272007614374,1.0706496453294356e-17,-0.0005454545607790351,3.096752455161722e-18,-0.0005827505956403911,-0.00045454545761458576,-5.204170427930421e-18,-0.037077922374010086,0.005454545374959707,0.0022727272007614374,0.03801948204636574,3.469446951953614e-18,9.75781955236954e-19,-0.0027272726874798536,6.505213034913027e-19,-0.0011363636003807187,-0.006493506487458944,0.004545454401522875,-0.013636363670229912,1.0706496453294356e-17,3.469446951953614e-18,0.004545454401522875,1.4028662656411985e-18,5.36300275402071e-19,-1.068955579434927e-18,-7.811123909993236e-19,-5.4483129925206e-20,0.0027272726874798536,-0.001818181830458343,-0.0005454545607790351,9.75781955236954e-19,1.4028662656411985e-18,0.0003636363544501364,-2.710505431213761e-20,-1.557243888090765e-19,-3.049318610115481e-19,1.7618285302889447e-19,0.005454545374959707,-0.003636363660916686,3.096752455161722e-18,-0.0027272726874798536,5.36300275402071e-19,-2.710505431213761e-20,0.001818181830458343,-3.4599349435959255e-19,2.0328790734103208e-19,2.791820594150174e-18,0.0008741258643567562,4.841640326505581e-18,-0.0005827505956403911,6.505213034913027e-19,-1.068955579434927e-18,-1.557243888090765e-19,-3.4599349435959255e-19,5.827505810884759e-05,-3.163691193202569e-20,1.7696396678991168e-20,0.0022727272007614374,3.469446951953614e-18,-0.00045454545761458576,-0.0011363636003807187,-7.811123909993236e-19,-3.049318610115481e-19,2.0328790734103208e-19,-3.163691193202569e-20,0.00022727272880729288,2.290377089375628e-18,0.003246753243729472,-7.37257477290143e-18,-5.204170427930421e-18,-0.006493506487458944,-5.4483129925206e-20,1.7618285302889447e-19,2.791820594150174e-18,1.7696396678991168e-20,2.290377089375628e-18,0.001623376621864736,4.0,11.0,6.0,0.10161921381950378,-0.037012986838817596,-0.016645854339003563,-0.02735389582812786,0.0037878789007663727,0.0022727272007614374,0.0038961039390414953,0.0007284382008947432,0.001623376621864736,0.0020292208064347506,-0.037012986838817596,0.05119047686457634,0.0022727272007614374,0.0038961039390414953,-0.011363636702299118,-0.0015151514671742916,-0.002597402548417449,-1.0503208545953324e-18,-2.4936649967166602e-18,-7.48099499014998e-18,-0.016645854339003563,0.0022727272007614374,0.006728549022227526,0.001623376621864736,-3.937009138837988e-18,-0.00045454545761458576,-1.328147661294743e-18,-0.0004856254963669926,-0.0003246753185521811,-1.5720931501039814e-18,-0.02735389582812786,0.0038961039390414953,0.001623376621864736,0.022102272137999535,-6.7220534694101275e-18,-8.673617379884035e-19,-0.0015584415523335338,-5.421010862427522e-19,-0.0006493506371043622,-0.003043831093236804,0.0037878789007663727,-0.011363636702299118,-3.937009138837988e-18,-6.7220534694101275e-18,0.0037878789007663727,4.5146273831051153e-20,-1.3515472566553727e-18,2.1175823681357508e-19,4.577439149048873e-19,1.1146402476783479e-18,0.0022727272007614374,-0.0015151514671742916,-0.00045454545761458576,-8.673617379884035e-19,4.5146273831051153e-20,0.0003030303050763905,-8.131516293641283e-20,3.9070444823741633e-20,4.743384504624082e-20,1.1519648082658485e-19,0.0038961039390414953,-0.002597402548417449,-1.328147661294743e-18,-0.0015584415523335338,-1.3515472566553727e-18,-8.131516293641283e-20,0.0010389609960839152,5.3402812658166145e-20,3.3881317890172014e-19,1.2468324983583301e-18,0.0007284382008947432,-1.0503208545953324e-18,-0.0004856254963669926,-5.421010862427522e-19,2.1175823681357508e-19,3.9070444823741633e-20,5.3402812658166145e-20,4.856254963669926e-05,2.5495827744791114e-20,5.1713852019000645e-20,0.001623376621864736,-2.4936649967166602e-18,-0.0003246753185521811,-0.0006493506371043622,4.577439149048873e-19,4.743384504624082e-20,3.3881317890172014e-19,2.5495827744791114e-20,0.0001298701245104894,3.5914196963582334e-19,0.0020292208064347506,-7.48099499014998e-18,-1.5720931501039814e-18,-0.003043831093236804,1.1146402476783479e-18,1.1519648082658485e-19,1.2468324983583301e-18,5.1713852019000645e-20,3.5914196963582334e-19,0.0006087662186473608,4.0,11.0,7.0,0.08991216868162155,-0.03214285895228386,-0.014441807754337788,-0.021022727712988853,0.003246753243729472,0.0019480519695207477,0.0029220778960734606,0.0006243756506592035,0.0012175324372947216,0.0013528139097616076,-0.03214285895228386,0.04415584355592728,0.0019480519695207477,0.0029220778960734606,-0.009740259498357773,-0.0012987012742087245,-0.0019480519695207477,-2.0735366548785272e-18,-2.019326546254252e-18,-5.93560777971258e-18,-0.014441807754337788,0.0019480519695207477,0.0058021144941449165,0.0012175324372947216,-9.242392559339785e-18,-0.00038961038808338344,-2.3009649495175186e-19,-0.0004162504046689719,-0.00024350649619009346,-8.54248185243659e-19,-0.021022727712988853,0.0029220778960734606,0.0012175324372947216,0.014042207971215248,-1.3513581011287971e-17,-2.132122755738361e-18,-0.0009740259847603738,-1.3552527156068805e-20,-0.000405844155466184,-0.001623376621864736,0.003246753243729472,-0.009740259498357773,-9.242392559339785e-18,-1.3513581011287971e-17,0.003246753243729472,7.669882820399807e-19,9.587353137758846e-19,6.469830901198954e-19,5.406930180450338e-19,1.5620020636187173e-18,0.0019480519695207477,-0.0012987012742087245,-0.00038961038808338344,-2.132122755738361e-18,7.669882820399807e-19,0.0002597402490209788,1.5339765899293555e-19,2.710505431213761e-20,7.792703114739563e-20,2.4992034362067973e-19,0.0029220778960734606,-0.0019480519695207477,-2.3009649495175186e-19,-0.0009740259847603738,9.587353137758846e-19,1.5339765899293555e-19,0.0006493506371043622,2.0763932212924887e-34,2.091439548983014e-34,6.088425694803517e-34,0.0006243756506592035,-2.0735366548785272e-18,-0.0004162504046689719,-1.3552527156068805e-20,6.469830901198954e-19,2.710505431213761e-20,2.0763932212924887e-34,4.162504046689719e-05,3.3881317890172014e-21,3.5439846021471717e-34,0.0012175324372947216,-2.019326546254252e-18,-0.00024350649619009346,-0.000405844155466184,5.406930180450338e-19,7.792703114739563e-20,2.091439548983014e-34,3.3881317890172014e-21,8.116882963804528e-05,1.5978921896264744e-19,0.0013528139097616076,-5.93560777971258e-18,-8.54248185243659e-19,-0.001623376621864736,1.5620020636187173e-18,2.4992034362067973e-19,6.088425694803517e-34,3.5439846021471717e-34,1.5978921896264744e-19,0.00027056277031078935,4.0,11.0,8.0,0.0806381106376648,-0.028409091755747795,-0.0127549534663558,-0.01666666753590107,0.0028409091755747795,0.001704545458778739,0.0022727272007614374,0.0005463286652229726,0.0009469697251915932,0.0009469697251915932,-0.028409091755747795,0.038825757801532745,0.001704545458778739,0.0022727272007614374,-0.008522727526724339,-0.0011363636003807187,-0.0015151514671742916,-1.1180834903756764e-19,0.0,-0.0,-0.0127549534663558,0.001704545458778739,0.005100524518638849,0.0009469697251915932,0.0,-0.0003409090859349817,0.0,-0.0003642191004473716,-0.00018939393339678645,-0.0,-0.01666666753590107,0.0022727272007614374,0.0009469697251915932,0.009496753104031086,0.0,-6.247866014952427e-21,-0.0006493506371043622,0.0,-0.00027056277031078935,-0.0009469697251915932,0.0028409091755747795,-0.008522727526724339,0.0,0.0,0.0028409091755747795,0.0,0.0,0.0,0.0,-0.0,0.001704545458778739,-0.0011363636003807187,-0.0003409090859349817,-6.247866014952427e-21,0.0,0.00022727272880729288,0.0,2.371692252312041e-20,1.6940658945086007e-21,-0.0,0.0022727272007614374,-0.0015151514671742916,0.0,-0.0006493506371043622,0.0,0.0,0.00043290044413879514,0.0,0.0,-0.0,0.0005463286652229726,-1.1180834903756764e-19,-0.0003642191004473716,0.0,0.0,2.371692252312041e-20,0.0,3.6421912227524444e-05,0.0,-0.0,0.0009469697251915932,0.0,-0.00018939393339678645,-0.00027056277031078935,0.0,1.6940658945086007e-21,0.0,0.0,5.411255551734939e-05,-0.0,0.0009469697251915932,-0.0,-0.0,-0.0009469697251915932,-0.0,-0.0,-0.0,-0.0,-0.0,0.00013528138515539467,4.0,11.0,9.0,0.07310623675584793,-0.02545454539358616,-0.011421911418437958,-0.013539944775402546,0.0025252525229007006,0.0015151514671742916,0.001818181830458343,0.0004856254963669926,0.0007575757335871458,0.000688705244101584,-0.02545454539358616,0.03464646637439728,0.0015151514671742916,0.001818181830458343,-0.007575757801532745,-0.001010101055726409,-0.001212121220305562,-3.533821455944941e-18,-4.0115480381963664e-18,-5.6107462426124854e-18,-0.011421911418437958,0.0015151514671742916,0.004550634417682886,0.0007575757335871458,-1.3638352107704857e-17,-0.0003030303050763905,-3.0357660829594124e-18,-0.00032375031150877476,-0.00015151515253819525,-3.7947076036992655e-19,-0.013539944775402546,0.001818181830458343,0.0007575757335871458,0.00673012575134635,-1.6121755101742185e-17,-2.618015058201757e-18,-0.00045454545761458576,-2.6186490921412787e-19,-0.00018939393339678645,-0.0005903187557123601,0.0025252525229007006,-0.007575757801532745,-1.3638352107704857e-17,-1.6121755101742185e-17,0.0025252525229007006,7.773033793748818e-19,8.631669500057823e-19,8.267006410025938e-19,8.410780740245311e-19,1.2015401205204125e-18,0.0015151514671742916,-0.001010101055726409,-0.0003030303050763905,-2.618015058201757e-18,7.773033793748818e-19,0.00020202020823489875,2.945555006125298e-19,5.421010862427522e-20,1.2110797877298334e-19,1.7989336553695714e-19,0.001818181830458343,-0.001212121220305562,-3.0357660829594124e-18,-0.00045454545761458576,8.631669500057823e-19,2.945555006125298e-19,0.0003030303050763905,1.7364175418713157e-19,1.8126505071242027e-19,2.507217523872729e-19,0.0004856254963669926,-3.533821455944941e-18,-0.00032375031150877476,-2.6186490921412787e-19,8.267006410025938e-19,5.421010862427522e-20,1.7364175418713157e-19,3.237503187847324e-05,-3.3881317890172014e-21,8.470329472543003e-22,0.0007575757335871458,-4.0115480381963664e-18,-0.00015151515253819525,-0.00018939393339678645,8.410780740245311e-19,1.2110797877298334e-19,1.8126505071242027e-19,-3.3881317890172014e-21,3.787878813454881e-05,2.371692252312041e-20,0.000688705244101584,-5.6107462426124854e-18,-3.7947076036992655e-19,-0.0005903187557123601,1.2015401205204125e-18,1.7989336553695714e-19,2.507217523872729e-19,8.470329472543003e-22,2.371692252312041e-20,7.378984446404502e-05,4.0,11.0,10.0,0.06686586141586304,-0.023057851940393448,-0.01034170389175415,-0.011219007894396782,0.0022727272007614374,0.0013636363437399268,0.0014876032946631312,0.0004370629321783781,0.0006198346964083612,0.0005165289039723575,-0.023057851940393448,0.031280990689992905,0.0013636363437399268,0.0014876032946631312,-0.006818181835114956,-0.0009090909152291715,-0.0009917354909703135,-2.0328790734103208e-20,9.486769009248164e-20,2.710505431213761e-19,-0.01034170389175415,0.0013636363437399268,0.00410796795040369,0.0006198346964083612,0.0,-0.00027272728038951755,1.0164395367051604e-19,-0.00029137529782019556,-0.0001239669363712892,1.1519648082658485e-19,-0.011219007894396782,0.0014876032946631312,0.0006198346964083612,0.004946625325828791,-0.0,8.581027079576626e-21,-0.00033057850669138134,2.3328492563073573e-21,-0.00013774105173069984,-0.00038739669253118336,0.0022727272007614374,-0.006818181835114956,0.0,-0.0,0.0022727272007614374,0.0,0.0,0.0,0.0,0.0,0.0013636363437399268,-0.0009090909152291715,-0.00027272728038951755,8.581027079576626e-21,0.0,0.0001818181772250682,-5.734622962108952e-22,6.776263578034403e-21,6.080903364548685e-22,-6.960741010505067e-22,0.0014876032946631312,-0.0009917354909703135,1.0164395367051604e-19,-0.00033057850669138134,0.0,-5.734622962108952e-22,0.00022038567112758756,0.0,-2.202285662861181e-20,-5.759824041329242e-20,0.0004370629321783781,-2.0328790734103208e-20,-0.00029137529782019556,2.3328492563073573e-21,0.0,6.776263578034403e-21,0.0,2.9137529054423794e-05,0.0,0.0,0.0006198346964083612,9.486769009248164e-20,-0.0001239669363712892,-0.00013774105173069984,0.0,6.080903364548685e-22,-2.202285662861181e-20,0.0,2.7548208890948445e-05,-2.541098841762901e-20,0.0005165289039723575,2.710505431213761e-19,1.1519648082658485e-19,-0.00038739669253118336,0.0,-6.960741010505067e-22,-5.759824041329242e-20,0.0,-2.541098841762901e-20,4.3044077756349e-05,4.0,11.0,11.0,0.06160997971892357,-0.021074380725622177,-0.009448505938053131,-0.009448505938053131,0.00206611561588943,0.0012396693928167224,0.0012396693928167224,0.0003973299462813884,0.0005165289039723575,0.0003973299462813884,-0.021074380725622177,0.028512395918369293,0.0012396693928167224,0.0012396693928167224,-0.006198347080498934,-0.0008264462812803686,-0.0008264462812803686,-9.486769009248164e-20,-6.776263578034403e-20,-8.131516293641283e-20,-0.009448505938053131,0.0012396693928167224,0.003743907669559121,0.0005165289039723575,0.0,-0.0002479338727425784,-6.098637220230962e-20,-0.0002648866211529821,-0.00010330578516004607,-6.098637220230962e-20,-0.009448505938053131,0.0012396693928167224,0.0005165289039723575,0.003743907669559121,-0.0,-6.494644526273826e-21,-0.0002479338727425784,-5.111638123969944e-21,-0.00010330578516004607,-0.0002648866211529821,0.00206611561588943,-0.006198347080498934,0.0,-0.0,0.00206611561588943,0.0,0.0,0.0,0.0,0.0,0.0012396693928167224,-0.0008264462812803686,-0.0002479338727425784,-6.494644526273826e-21,0.0,0.00016528925334569067,4.300967095363969e-22,2.0328790734103208e-20,1.7920697072134837e-22,6.057162311616133e-22,0.0012396693928167224,-0.0008264462812803686,-6.098637220230962e-20,-0.0002479338727425784,0.0,4.300967095363969e-22,0.00016528925334569067,0.0,1.1011428314305904e-20,1.3552527156068805e-20,0.0003973299462813884,-9.486769009248164e-20,-0.0002648866211529821,-5.111638123969944e-21,0.0,2.0328790734103208e-20,0.0,2.648866211529821e-05,8.470329472543003e-22,4.235164736271502e-22,0.0005165289039723575,-6.776263578034403e-20,-0.00010330578516004607,-0.00010330578516004607,0.0,1.7920697072134837e-22,1.1011428314305904e-20,8.470329472543003e-22,2.0661156668211333e-05,1.1011428314305904e-20,0.0003973299462813884,-8.131516293641283e-20,-6.098637220230962e-20,-0.0002648866211529821,0.0,6.057162311616133e-22,1.3552527156068805e-20,4.235164736271502e-22,1.1011428314305904e-20,2.648866211529821e-05,4.0,11.0,12.0,0.05712204426527023,-0.01940559409558773,-0.008697552606463432,-0.008066932670772076,0.0018939394503831863,0.0011363636003807187,0.0010489510605111718,0.0003642191004473716,0.0004370629321783781,0.00031218782532960176,-0.01940559409558773,0.02619463950395584,0.0011363636003807187,0.0010489510605111718,-0.005681818351149559,-0.0007575757335871458,-0.0006993007264100015,2.0328790734103208e-20,2.0328790734103208e-20,-6.776263578034403e-20,-0.008697552606463432,0.0011363636003807187,0.0034391996450722218,0.0004370629321783781,0.0,-0.00022727272880729288,1.6940658945086007e-20,-0.0002428127481834963,-8.741259080125019e-05,2.710505431213761e-20,-0.008066932670772076,0.0010489510605111718,0.0004370629321783781,0.0029027790296822786,-0.0,-0.0,-0.00019071837596129626,-5.060155420464538e-21,-7.946598634589463e-05,-0.00018731268937699497,0.0018939394503831863,-0.005681818351149559,0.0,-0.0,0.0018939394503831863,0.0,0.0,0.0,0.0,0.0,0.0011363636003807187,-0.0007575757335871458,-0.00022727272880729288,-0.0,0.0,0.00015151515253819525,4.235164736271502e-22,0.0,-8.470329472543003e-22,9.509314315655824e-23,0.0010489510605111718,-0.0006993007264100015,1.6940658945086007e-20,-0.00019071837596129626,0.0,4.235164736271502e-22,0.0001271455839741975,0.0,-3.3881317890172014e-21,1.1858461261560205e-20,0.0003642191004473716,2.0328790734103208e-20,-0.0002428127481834963,-5.060155420464538e-21,0.0,0.0,0.0,2.428127481834963e-05,8.470329472543003e-22,0.0,0.0004370629321783781,2.0328790734103208e-20,-8.741259080125019e-05,-7.946598634589463e-05,0.0,-8.470329472543003e-22,-3.3881317890172014e-21,8.470329472543003e-22,1.589319799677469e-05,-5.082197683525802e-21,0.00031218782532960176,-6.776263578034403e-20,2.710505431213761e-20,-0.00018731268937699497,0.0,9.509314315655824e-23,1.1858461261560205e-20,0.0,-5.082197683525802e-21,1.702842564554885e-05,4.0,11.0,13.0,0.053244832903146744,-0.017982017248868942,-0.008057327009737492,-0.006968032103031874,0.0017482517287135124,0.0010489510605111718,0.0008991009090095758,0.00033620226895436645,0.00037462537875398993,0.00024975024280138314,-0.017982017248868942,0.02422577515244484,0.0010489510605111718,0.0008991009090095758,-0.005244755186140537,-0.0006993007264100015,-0.0005994006060063839,-9.147955830346444e-20,-3.7269449679189215e-20,0.0,-0.008057327009737492,0.0010489510605111718,0.0031804093159735203,0.00037462537875398993,0.0,-0.00020979020337108523,-2.371692252312041e-20,-0.00022413484111893922,-7.492507575079799e-05,-2.710505431213761e-20,-0.006968032103031874,0.0008991009090095758,0.00037462537875398993,0.0022965669631958008,-0.0,-7.967817250417039e-21,-0.00014985015150159597,-9.37716580093904e-21,-6.243756070034578e-05,-0.0001362274051643908,0.0017482517287135124,-0.005244755186140537,0.0,-0.0,0.0017482517287135124,0.0,0.0,0.0,0.0,0.0,0.0010489510605111718,-0.0006993007264100015,-0.00020979020337108523,-7.967817250417039e-21,0.0,0.0001398601452820003,-3.271357958773009e-22,1.8634724839594607e-20,1.910689673924285e-21,-1.9288566735658692e-22,0.0008991009090095758,-0.0005994006060063839,-2.371692252312041e-20,-0.00014985015150159597,0.0,-3.271357958773009e-22,9.990009857574478e-05,-4.235164736271502e-22,4.235164736271502e-21,0.0,0.00033620226895436645,-9.147955830346444e-20,-0.00022413484111893922,-9.37716580093904e-21,0.0,1.8634724839594607e-20,-4.235164736271502e-22,2.241348374809604e-05,2.541098841762901e-21,-2.117582368135751e-22,0.00037462537875398993,-3.7269449679189215e-20,-7.492507575079799e-05,-6.243756070034578e-05,0.0,1.910689673924285e-21,4.235164736271502e-21,2.541098841762901e-21,1.2487512321968097e-05,4.658681209898652e-21,0.00024975024280138314,0.0,-2.710505431213761e-20,-0.0001362274051643908,0.0,-1.9288566735658692e-22,0.0,-2.117582368135751e-22,4.658681209898652e-21,1.1352283763699234e-05,4.0,11.0,14.0,0.04986139014363289,-0.016753247007727623,-0.007504994980990887,-0.006079545244574547,0.001623376621864736,0.0009740259847603738,0.0007792207761667669,0.00031218782532960176,0.0003246753185521811,0.000202922077733092,-0.016753247007727623,0.022532466799020767,0.0009740259847603738,0.0007792207761667669,-0.004870129749178886,-0.0006493506371043622,-0.0005194804980419576,-1.1671382992297915e-18,-5.082197683525802e-19,-7.182839392716467e-19,-0.007504994980990887,0.0009740259847603738,0.0029578753747045994,0.0003246753185521811,-4.74735786669648e-18,-0.00019480519404169172,-4.404571325722362e-20,-0.00020812520233448595,-6.49350622552447e-05,-4.0657581468206416e-20,-0.006079545244574547,0.0007792207761667669,0.0003246753185521811,0.001848464016802609,-3.7107971615909676e-18,-5.727782683314118e-19,-0.00011988011829089373,-9.129262898955248e-34,-4.995004928787239e-05,-0.000101461038866546,0.001623376621864736,-0.004870129749178886,-4.74735786669648e-18,-3.7107971615909676e-18,0.001623376621864736,3.8349414101999034e-19,2.3599638652018047e-19,3.234915450599477e-19,1.441848056736555e-19,2.0275988176688768e-19,0.0009740259847603738,-0.0006493506371043622,-0.00019480519404169172,-5.727782683314118e-19,3.8349414101999034e-19,0.0001298701245104894,3.7759421713981905e-20,3.9332732163754834e-20,1.8879710856990952e-20,3.244158095345506e-20,0.0007792207761667669,-0.0005194804980419576,-4.404571325722362e-20,-0.00011988011829089373,2.3599638652018047e-19,3.7759421713981905e-20,7.992007886059582e-05,5.846308526433925e-35,-2.117582368135751e-21,-6.776263578034403e-21,0.00031218782532960176,-1.1671382992297915e-18,-0.00020812520233448595,-9.129262898955248e-34,3.234915450599477e-19,3.9332732163754834e-20,5.846308526433925e-35,2.0812520233448595e-05,3.444977040725167e-35,5.022944758248733e-35,0.0003246753185521811,-5.082197683525802e-19,-6.49350622552447e-05,-4.995004928787239e-05,1.441848056736555e-19,1.8879710856990952e-20,-2.117582368135751e-21,3.444977040725167e-35,9.990009857574478e-06,-2.117582368135751e-21,0.000202922077733092,-7.182839392716467e-19,-4.0657581468206416e-20,-0.000101461038866546,2.0275988176688768e-19,3.244158095345506e-20,-6.776263578034403e-21,5.022944758248733e-35,-2.117582368135751e-21,7.804695087543223e-06,4.0,11.0,15.0,0.046882882714271545,-0.01568181812763214,-0.0070236013270914555,-0.005350935738533735,0.0015151514671742916,0.0009090909152291715,0.0006818181718699634,0.00029137529782019556,0.0002840909000951797,0.00016711230273358524,-0.01568181812763214,0.021060606464743614,0.0009090909152291715,0.0006818181718699634,-0.004545454401522875,-0.000606060610152781,-0.00045454545761458576,-0.0,-1.0164395367051604e-20,-4.0657581468206416e-20,-0.0070236013270914555,0.0009090909152291715,0.002764471573755145,0.0002840909000951797,0.0,-0.0001818181772250682,-6.776263578034403e-21,-0.00019425019854679704,-5.681818220182322e-05,-1.0164395367051604e-20,-0.005350935738533735,0.0006818181718699634,0.0002840909000951797,0.0015099974116310477,-0.0,-0.0,-9.740259702084586e-05,-0.0,-4.058441481902264e-05,-7.712875230936334e-05,0.0015151514671742916,-0.004545454401522875,0.0,-0.0,0.0015151514671742916,0.0,0.0,0.0,0.0,0.0,0.0009090909152291715,-0.000606060610152781,-0.0001818181772250682,-0.0,0.0,0.00012121212057536468,0.0,0.0,0.0,0.0,0.0006818181718699634,-0.00045454545761458576,-6.776263578034403e-21,-9.740259702084586e-05,0.0,0.0,6.49350622552447e-05,0.0,1.2705494208814505e-21,5.082197683525802e-21,0.00029137529782019556,-0.0,-0.00019425019854679704,-0.0,0.0,0.0,0.0,1.942501876328606e-05,0.0,0.0,0.0002840909000951797,-1.0164395367051604e-20,-5.681818220182322e-05,-4.058441481902264e-05,0.0,0.0,1.2705494208814505e-21,0.0,8.116882781905588e-06,1.2705494208814505e-21,0.00016711230273358524,-4.0657581468206416e-20,-1.0164395367051604e-20,-7.712875230936334e-05,0.0,0.0,5.082197683525802e-21,0.0,1.2705494208814505e-21,5.509196853381582e-06,4.0,11.0,16.0,0.04424062371253967,-0.014739304780960083,-0.00660029286518693,-0.004745989106595516,0.0014204545877873898,0.0008522727293893695,0.0006016042898409069,0.0002731643326114863,0.00025066843954846263,0.00013926024257671088,-0.014739304780960083,0.01976938545703888,0.0008522727293893695,0.0006016042898409069,-0.004261363763362169,-0.0005681818001903594,-0.00040106952656060457,-0.0,3.049318610115481e-20,3.3881317890172014e-21,-0.00660029286518693,0.0008522727293893695,0.002594825578853488,0.00025066843954846263,0.0,-0.00017045454296749085,3.049318610115481e-20,-0.0001821095502236858,-5.013369082007557e-05,2.710505431213761e-20,-0.004745989106595516,0.0006016042898409069,0.00025066843954846263,0.0012495225528255105,-0.0,-0.0,-8.021390385692939e-05,-0.0,-3.342246054671705e-05,-5.9682963183149695e-05,0.0014204545877873898,-0.004261363763362169,0.0,-0.0,0.0014204545877873898,0.0,0.0,0.0,0.0,0.0,0.0008522727293893695,-0.0005681818001903594,-0.00017045454296749085,-0.0,0.0,0.00011363636440364644,0.0,0.0,0.0,0.0,0.0006016042898409069,-0.00040106952656060457,3.049318610115481e-20,-8.021390385692939e-05,0.0,0.0,5.347593469195999e-05,0.0,-3.8116482626443515e-21,-8.470329472543003e-22,0.0002731643326114863,-0.0,-0.0001821095502236858,-0.0,0.0,0.0,0.0,1.8210956113762222e-05,0.0,0.0,0.00025066843954846263,3.049318610115481e-20,-5.013369082007557e-05,-3.342246054671705e-05,0.0,0.0,-3.8116482626443515e-21,0.0,6.684491836494999e-06,-3.3881317890172014e-21,0.00013926024257671088,3.3881317890172014e-21,2.710505431213761e-20,-5.9682963183149695e-05,0.0,0.0,-8.470329472543003e-22,0.0,-3.3881317890172014e-21,3.97886424252647e-06,4.0,12.0,3.0,0.1558150202035904,-0.06282051652669907,-0.02637362666428089,-0.07644230872392654,0.0069444444961845875,0.003846153849735856,0.012500000186264515,0.0011446886928752065,0.004807692486792803,0.010416666977107525,-0.06282051652669907,0.09049145132303238,0.003846153849735856,0.012500000186264515,-0.02083333395421505,-0.0025641026441007853,-0.008333333767950535,-5.15574748166672e-19,-2.710505431213761e-18,6.765421556309548e-17,-0.02637362666428089,0.003846153849735856,0.01006077229976654,0.004807692486792803,2.227935913270991e-18,-0.0006993007264100015,-3.903127820947816e-18,-0.0006868132040835917,-0.0008741258643567562,5.637851296924623e-18,-0.07644230872392654,0.012500000186264515,0.004807692486792803,0.18060897290706635,6.350111376103414e-17,-7.863221089140321e-18,-0.012500000186264515,2.5163888889144107e-19,-0.004807692486792803,-0.0625,0.0069444444961845875,-0.02083333395421505,2.227935913270991e-18,6.350111376103414e-17,0.0069444444961845875,6.505213034913027e-19,-4.572441840775711e-18,-1.4907779871675686e-19,-1.5200857200533584e-18,-2.2215490449663158e-17,0.003846153849735856,-0.0025641026441007853,-0.0006993007264100015,-7.863221089140321e-18,6.505213034913027e-19,0.0004662004648707807,1.3955306211739251e-18,1.4230153513872246e-19,8.184026235914032e-19,6.015298773516245e-19,0.012500000186264515,-0.008333333767950535,-3.903127820947816e-18,-0.012500000186264515,-4.572441840775711e-18,1.3955306211739251e-18,0.008333333767950535,-1.0972380381073286e-20,1.7889335846010823e-18,-5.204170427930421e-18,0.0011446886928752065,-5.15574748166672e-19,-0.0006868132040835917,2.5163888889144107e-19,-1.4907779871675686e-19,1.4230153513872246e-19,-1.0972380381073286e-20,6.243756070034578e-05,8.617088761550957e-20,-3.5449494650268286e-19,0.004807692486792803,-2.710505431213761e-18,-0.0008741258643567562,-0.004807692486792803,-1.5200857200533584e-18,8.184026235914032e-19,1.7889335846010823e-18,8.617088761550957e-20,0.0008741258643567562,-2.168404344971009e-18,0.010416666977107525,6.765421556309548e-17,5.637851296924623e-18,-0.0625,-2.2215490449663158e-17,6.015298773516245e-19,-5.204170427930421e-18,-3.5449494650268286e-19,-2.168404344971009e-18,0.03125,4.0,12.0,4.0,0.12780678272247314,-0.04899038374423981,-0.02050137333571911,-0.04899038374423981,0.0052083334885537624,0.002884615445509553,0.007499999832361937,0.0008585164905525744,0.002884615445509553,0.0052083334885537624,-0.04899038374423981,0.06911858916282654,0.002884615445509553,0.007499999832361937,-0.015625,-0.001923076924867928,-0.004999999888241291,-7.426784881525705e-18,-1.0625181290357943e-17,-1.9925384675528447e-17,-0.02050137333571911,0.002884615445509553,0.007676698267459869,0.002884615445509553,-2.699663409488906e-17,-0.0005244755302555859,-5.854691731421724e-18,-0.000515109917614609,-0.0005244755302555859,3.0444305930807522e-18,-0.04899038374423981,0.007499999832361937,0.002884615445509553,0.06911858916282654,-3.348366239121572e-17,-2.293480671033927e-18,-0.004999999888241291,8.131516293641283e-20,-0.001923076924867928,-0.015625,0.0052083334885537624,-0.015625,-2.699663409488906e-17,-3.348366239121572e-17,0.0052083334885537624,1.8431436932253575e-18,2.439454888092385e-18,1.7618285302889447e-18,2.4665599424045226e-18,4.668712015596776e-18,0.002884615445509553,-0.001923076924867928,-0.0005244755302555859,-2.293480671033927e-18,1.8431436932253575e-18,0.00034965036320500076,2.439454888092385e-19,1.9651164376299768e-19,2.846030702774449e-19,8.770135269449166e-20,0.007499999832361937,-0.004999999888241291,-5.854691731421724e-18,-0.004999999888241291,2.439454888092385e-18,2.439454888092385e-19,0.0033333334140479565,3.9979955110402976e-19,5.149960319306146e-19,2.3230488624150945e-18,0.0008585164905525744,-7.426784881525705e-18,-0.000515109917614609,8.131516293641283e-20,1.7618285302889447e-18,1.9651164376299768e-19,3.9979955110402976e-19,4.682817234424874e-05,7.581106303619823e-36,-2.0892061957160607e-19,0.002884615445509553,-1.0625181290357943e-17,-0.0005244755302555859,-0.001923076924867928,2.4665599424045226e-18,2.846030702774449e-19,5.149960319306146e-19,7.581106303619823e-36,0.00034965036320500076,-1.8899487259096932e-19,0.0052083334885537624,-1.9925384675528447e-17,3.0444305930807522e-18,-0.015625,4.668712015596776e-18,8.770135269449166e-20,2.3230488624150945e-18,-2.0892061957160607e-19,-1.8899487259096932e-19,0.0052083334885537624,4.0,12.0,5.0,0.10847984999418259,-0.04019230604171753,-0.016785714775323868,-0.03414835035800934,0.004166666883975267,0.0023076923098415136,0.004999999888241291,0.0006868132040835917,0.001923076924867928,0.0029761905316263437,-0.04019230604171753,0.05596153810620308,0.0023076923098415136,0.004999999888241291,-0.012500000186264515,-0.0015384615398943424,-0.0033333334140479565,-2.964615315390051e-19,2.3852447794681098e-18,1.5178830414797062e-18,-0.016785714775323868,0.0023076923098415136,0.0062112887389957905,0.001923076924867928,-3.0018847650692404e-18,-0.00041958040674217045,1.3552527156068805e-20,-0.00041208791662938893,-0.00034965036320500076,5.421010862427522e-19,-0.03414835035800934,0.004999999888241291,0.001923076924867928,0.03493131697177887,-8.023096076392733e-18,1.6263032587282567e-18,-0.0024999999441206455,-1.0842021724855044e-19,-0.000961538462433964,-0.0059523810632526875,0.004166666883975267,-0.012500000186264515,-3.0018847650692404e-18,-8.023096076392733e-18,0.004166666883975267,1.709615339060949e-18,1.868401446434511e-18,8.809142651444724e-20,-2.623090018054923e-19,1.728504111746174e-18,0.0023076923098415136,-0.0015384615398943424,-0.00041958040674217045,1.6263032587282567e-18,1.709615339060949e-18,0.0002797202905640006,-4.0657581468206416e-20,-8.061740216239454e-21,-1.6940658945086007e-19,-1.3552527156068805e-19,0.004999999888241291,-0.0033333334140479565,1.3552527156068805e-20,-0.0024999999441206455,1.868401446434511e-18,-4.0657581468206416e-20,0.0016666667070239782,4.7397623582698946e-20,-2.981555974335137e-19,-2.8189256484623115e-18,0.0006868132040835917,-2.964615315390051e-19,-0.00041208791662938893,-1.0842021724855044e-19,8.809142651444724e-20,-8.061740216239454e-21,4.7397623582698946e-20,3.7462537875398993e-05,-6.854634902105967e-21,2.3612033759626698e-20,0.001923076924867928,2.3852447794681098e-18,-0.00034965036320500076,-0.000961538462433964,-2.623090018054923e-19,-1.6940658945086007e-19,-2.981555974335137e-19,-6.854634902105967e-21,0.00017482518160250038,-2.913793338554793e-19,0.0029761905316263437,1.5178830414797062e-18,5.421010862427522e-19,-0.0059523810632526875,1.728504111746174e-18,-1.3552527156068805e-19,-2.8189256484623115e-18,2.3612033759626698e-20,-2.913793338554793e-19,0.0014880952658131719,4.0,12.0,6.0,0.09428800642490387,-0.034088827669620514,-0.014217033050954342,-0.025188874453306198,0.0034722222480922937,0.001923076924867928,0.0035714285913854837,0.0005723443464376032,0.0013736264081671834,0.0018601190531626344,-0.034088827669620514,0.04703143984079361,0.001923076924867928,0.0035714285913854837,-0.010416666977107525,-0.0012820513220503926,-0.0023809524718672037,-4.726443845678996e-19,-7.589415207398531e-19,3.3610267347050637e-18,-0.014217033050954342,0.001923076924867928,0.005217698868364096,0.0013736264081671834,1.5111067779016718e-18,-0.00034965036320500076,-2.303929616531697e-18,-0.00034340660204179585,-0.00024975024280138314,-4.119968255444917e-18,-0.025188874453306198,0.0035714285913854837,0.0013736264081671834,0.02030620351433754,1.680513367352532e-17,-5.095750210681871e-18,-0.0014285714132711291,-5.827586677109586e-19,-0.0005494505749084055,-0.0027901786379516125,0.0034722222480922937,-0.010416666977107525,1.5111067779016718e-18,1.680513367352532e-17,0.0034722222480922937,3.609341856798902e-19,-2.412785964758216e-18,-4.2351647362715017e-20,-5.400680313934617e-19,-1.7973801326310144e-18,0.001923076924867928,-0.0012820513220503926,-0.00034965036320500076,-5.095750210681871e-18,3.609341856798902e-19,0.00023310023243539035,5.692061405548898e-19,6.243347298518286e-20,2.846030702774449e-19,5.082197683525802e-19,0.0035714285913854837,-0.0023809524718672037,-2.303929616531697e-18,-0.0014285714132711291,-2.412785964758216e-18,5.692061405548898e-19,0.0009523809421807528,7.369906546739276e-20,1.8973538018496328e-19,-3.7947076036992655e-19,0.0005723443464376032,-4.726443845678996e-19,-0.00034340660204179585,-5.827586677109586e-19,-4.2351647362715017e-20,6.243347298518286e-20,7.369906546739276e-20,3.121878035017289e-05,2.615386769353552e-20,5.986740362867852e-20,0.0013736264081671834,-7.589415207398531e-19,-0.00024975024280138314,-0.0005494505749084055,-5.400680313934617e-19,2.846030702774449e-19,1.8973538018496328e-19,2.615386769353552e-20,9.990009857574478e-05,9.58841296291868e-19,0.0018601190531626344,3.3610267347050637e-18,-4.119968255444917e-18,-0.0027901786379516125,-1.7973801326310144e-18,5.082197683525802e-19,-3.7947076036992655e-19,5.986740362867852e-20,9.58841296291868e-19,0.0005580357392318547,4.0,12.0,7.0,0.08340637385845184,-0.029601648449897766,-0.012333202175796032,-0.019356684759259224,0.0029761905316263437,0.0016483516665175557,0.0026785715017467737,0.0004905808600597084,0.001030219835229218,0.0012400794075801969,-0.029601648449897766,0.04056776687502861,0.0016483516665175557,0.0026785715017467737,-0.008928571827709675,-0.001098901149816811,-0.0017857142956927419,2.964615315390051e-19,3.7947076036992655e-19,6.505213034913027e-19,-0.012333202175796032,0.0016483516665175557,0.0044990722090005875,0.001030219835229218,2.053207864144424e-18,-0.00029970030300319195,7.724940478959219e-19,-0.000294348516035825,-0.00018731268937699497,1.4907779871675686e-18,-0.019356684759259224,0.0026785715017467737,0.001030219835229218,0.012900641188025475,-2.4936649967166602e-18,1.1926223897340549e-18,-0.0008928571478463709,3.3881317890172014e-19,-0.00034340660204179585,-0.0014880952658131719,0.0029761905316263437,-0.008928571827709675,2.053207864144424e-18,-2.4936649967166602e-18,0.0029761905316263437,-3.950204375668222e-19,7.25283645012647e-19,-1.1350241493207625e-19,5.447376921335223e-21,1.9627447557174224e-19,0.0016483516665175557,-0.001098901149816811,-0.00029970030300319195,1.1926223897340549e-18,-3.950204375668222e-19,0.00019980019715148956,-6.776263578034403e-20,1.0494622992806392e-20,-2.710505431213761e-20,-1.5246593050577406e-19,0.0026785715017467737,-0.0017857142956927419,7.724940478959219e-19,-0.0008928571478463709,7.25283645012647e-19,-6.776263578034403e-20,0.0005952381179668009,-1.758682755957057e-20,-9.486769009248164e-20,-7.453889935837843e-20,0.0004905808600597084,2.964615315390051e-19,-0.000294348516035825,3.3881317890172014e-19,-1.1350241493207625e-19,1.0494622992806392e-20,-1.758682755957057e-20,2.6758954845718108e-05,7.402183231176323e-21,-5.706754588920284e-20,0.001030219835229218,3.7947076036992655e-19,-0.00018731268937699497,-0.00034340660204179585,5.447376921335223e-21,-2.710505431213761e-20,-9.486769009248164e-20,7.402183231176323e-21,6.243756070034578e-05,-1.3552527156068805e-19,0.0012400794075801969,6.505213034913027e-19,1.4907779871675686e-18,-0.0014880952658131719,1.9627447557174224e-19,-1.5246593050577406e-19,-7.453889935837843e-20,-5.706754588920284e-20,-1.3552527156068805e-19,0.00024801588733680546,4.0,12.0,8.0,0.07479014247655869,-0.026161858811974525,-0.01089171227067709,-0.015344550833106041,0.0026041667442768812,0.0014423077227547765,0.0020833334419876337,0.0004292582452762872,0.0008012820617295802,0.0008680555620230734,-0.026161858811974525,0.035670407116413116,0.0014423077227547765,0.0020833334419876337,-0.0078125,-0.000961538462433964,-0.0013888889225199819,-1.1350241493207625e-19,-2.0328790734103208e-20,2.1857775624113104e-34,-0.01089171227067709,0.0014423077227547765,0.003954899497330189,0.0008012820617295802,0.0,-0.00026223776512779295,0.0,-0.0002575549588073045,-0.00014568764891009778,5.932845410056959e-19,-0.015344550833106041,0.0020833334419876337,0.0008012820617295802,0.008724435232579708,0.0,-9.969991767230304e-21,-0.0005952381179668009,4.811147140404426e-19,-0.00022893772984389216,-0.0008680555620230734,0.0026041667442768812,-0.0078125,0.0,0.0,0.0026041667442768812,0.0,0.0,0.0,0.0,-0.0,0.0014423077227547765,-0.000961538462433964,-0.00026223776512779295,-9.969991767230304e-21,0.0,0.00017482518160250038,0.0,2.0328790734103208e-20,3.3881317890172014e-21,-3.974141205193426e-35,0.0020833334419876337,-0.0013888889225199819,0.0,-0.0005952381179668009,0.0,0.0,0.00039682540227659047,0.0,0.0,-0.0,0.0004292582452762872,-1.1350241493207625e-19,-0.0002575549588073045,4.811147140404426e-19,0.0,2.0328790734103208e-20,0.0,2.341408617212437e-05,-2.710505431213761e-20,-4.6213078327303136e-20,0.0008012820617295802,-2.0328790734103208e-20,-0.00014568764891009778,-0.00022893772984389216,0.0,3.3881317890172014e-21,0.0,-2.710505431213761e-20,4.162504046689719e-05,-2.4268761851618384e-20,0.0008680555620230734,2.1857775624113104e-34,5.932845410056959e-19,-0.0008680555620230734,-0.0,-3.974141205193426e-35,-0.0,-4.6213078327303136e-20,-2.4268761851618384e-20,0.00012400794366840273,4.0,12.0,9.0,0.06779498606920242,-0.023440171033143997,-0.009752747602760792,-0.012465034611523151,0.002314814832061529,0.0012820513220503926,0.0016666667070239782,0.000381562887923792,0.0006410256610251963,0.0006313131307251751,-0.023440171033143997,0.03183048591017723,0.0012820513220503926,0.0016666667070239782,-0.0069444444961845875,-0.0008547008619643748,-0.0011111111380159855,1.0164395367051604e-20,6.776263578034403e-21,-0.0,-0.009752747602760792,0.0012820513220503926,0.003528415923938155,0.0006410256610251963,0.0,-0.00023310023243539035,0.0,-0.00022893772984389216,-0.00011655011621769518,3.0614577440986383e-19,-0.012465034611523151,0.0016666667070239782,0.0006410256610251963,0.006182636599987745,0.0,2.3797580306883216e-21,-0.00041666667675599456,3.5236570605778894e-19,-0.00016025641525629908,-0.0005411255406215787,0.002314814832061529,-0.0069444444961845875,0.0,0.0,0.002314814832061529,0.0,0.0,0.0,0.0,-0.0,0.0012820513220503926,-0.0008547008619643748,-0.00023310023243539035,2.3797580306883216e-21,0.0,0.0001554001501062885,0.0,-3.3881317890172014e-21,-1.6940658945086007e-21,-0.0,0.0016666667070239782,-0.0011111111380159855,0.0,-0.00041666667675599456,0.0,0.0,0.00027777778450399637,0.0,0.0,-0.0,0.000381562887923792,1.0164395367051604e-20,-0.00022893772984389216,3.5236570605778894e-19,0.0,-3.3881317890172014e-21,0.0,2.0812520233448595e-05,-1.6940658945086007e-20,-3.264924206129708e-20,0.0006410256610251963,6.776263578034403e-21,-0.00011655011621769518,-0.00016025641525629908,0.0,-1.6940658945086007e-21,0.0,-1.6940658945086007e-20,2.9137529054423794e-05,1.3248967219339616e-20,0.0006313131307251751,-0.0,3.0614577440986383e-19,-0.0005411255406215787,-0.0,-0.0,-0.0,-3.264924206129708e-20,1.3248967219339616e-20,6.764069257769734e-05,4.0,12.0,10.0,0.06200091540813446,-0.021232517436146736,-0.008829919621348381,-0.010327797383069992,0.0020833334419876337,0.0011538461549207568,0.0013636363437399268,0.00034340660204179585,0.0005244755302555859,0.0004734848625957966,-0.021232517436146736,0.028738344088196754,0.0011538461549207568,0.0013636363437399268,-0.0062500000931322575,-0.0007692307699471712,-0.0009090909152291715,-6.098637220230962e-20,9.486769009248164e-20,2.710505431213761e-19,-0.008829919621348381,0.0011538461549207568,0.0031851103994995356,0.0005244755302555859,0.0,-0.00020979020337108523,8.809142651444724e-20,-0.00020604395831469446,-9.535918798064813e-05,4.2690460541616737e-19,-0.010327797383069992,0.0013636363437399268,0.0005244755302555859,0.004544118884950876,-0.0,8.020904635843184e-21,-0.0003030303050763905,2.27444398811542e-19,-0.00011655011621769518,-0.00035511364694684744,0.0020833334419876337,-0.0062500000931322575,0.0,-0.0,0.0020833334419876337,0.0,0.0,0.0,0.0,0.0,0.0011538461549207568,-0.0007692307699471712,-0.00020979020337108523,8.020904635843184e-21,0.0,0.0001398601452820003,-5.348841454245545e-22,1.0164395367051604e-20,-2.0572467520075925e-22,-6.667122690178482e-22,0.0013636363437399268,-0.0009090909152291715,8.809142651444724e-20,-0.0003030303050763905,0.0,-5.348841454245545e-22,0.00020202020823489875,4.235164736271502e-22,-2.1175823681357508e-20,-5.759824041329242e-20,0.00034340660204179585,-6.098637220230962e-20,-0.00020604395831469446,2.27444398811542e-19,0.0,1.0164395367051604e-20,4.235164736271502e-22,1.8731268937699497e-05,-2.541098841762901e-21,-2.414043899674756e-20,0.0005244755302555859,9.486769009248164e-20,-9.535918798064813e-05,-0.00011655011621769518,0.0,-2.0572467520075925e-22,-2.1175823681357508e-20,-2.541098841762901e-21,2.119093005603645e-05,-3.5575383784680614e-20,0.0004734848625957966,2.710505431213761e-19,4.2690460541616737e-19,-0.00035511364694684744,0.0,-6.667122690178482e-22,-5.759824041329242e-20,-2.414043899674756e-20,-3.5575383784680614e-20,3.9457070670323446e-05,4.0,12.0,11.0,0.05712204426527023,-0.01940559409558773,-0.008066932670772076,-0.008697552606463432,0.0018939394503831863,0.0010489510605111718,0.0011363636003807187,0.00031218782532960176,0.0004370629321783781,0.0003642191004473716,-0.01940559409558773,0.02619463950395584,0.0010489510605111718,0.0011363636003807187,-0.005681818351149559,-0.0006993007264100015,-0.0007575757335871458,-6.437450399132683e-20,-3.7269449679189215e-20,1.3552527156068805e-20,-0.008066932670772076,0.0010489510605111718,0.0029027790296822786,0.0004370629321783781,0.0,-0.00019071837596129626,-2.710505431213761e-20,-0.00018731268937699497,-7.946598634589463e-05,2.0328790734103208e-19,-0.008697552606463432,0.0011363636003807187,0.0004370629321783781,0.0034391996450722218,-0.0,-1.0094041394131982e-20,-0.00022727272880729288,2.691191539392472e-19,-8.741259080125019e-05,-0.0002428127481834963,0.0018939394503831863,-0.005681818351149559,0.0,-0.0,0.0018939394503831863,0.0,0.0,0.0,0.0,0.0,0.0010489510605111718,-0.0006993007264100015,-0.00019071837596129626,-1.0094041394131982e-20,0.0,0.0001271455839741975,6.670447770448425e-22,1.1858461261560205e-20,1.1035886889874297e-21,1.4695158426656472e-22,0.0011363636003807187,-0.0007575757335871458,-2.710505431213761e-20,-0.00022727272880729288,0.0,6.670447770448425e-22,0.00015151515253819525,6.352747104407253e-22,4.235164736271502e-21,0.0,0.00031218782532960176,-6.437450399132683e-20,-0.00018731268937699497,2.691191539392472e-19,0.0,1.1858461261560205e-20,6.352747104407253e-22,1.702842564554885e-05,-1.6940658945086007e-20,-1.7787691892340307e-20,0.0004370629321783781,-3.7269449679189215e-20,-7.946598634589463e-05,-8.741259080125019e-05,0.0,1.1035886889874297e-21,4.235164736271502e-21,-1.6940658945086007e-20,1.589319799677469e-05,-1.6940658945086007e-21,0.0003642191004473716,1.3552527156068805e-20,2.0328790734103208e-19,-0.0002428127481834963,0.0,1.4695158426656472e-22,0.0,-1.7787691892340307e-20,-1.6940658945086007e-21,2.428127481834963e-05,4.0,12.0,12.0,0.05295681953430176,-0.017868589609861374,-0.007425507064908743,-0.007425507064908743,0.0017361111240461469,0.000961538462433964,0.000961538462433964,0.0002861721732188016,0.000369822490029037,0.0002861721732188016,-0.017868589609861374,0.02406517043709755,0.000961538462433964,0.000961538462433964,-0.0052083334885537624,-0.0006410256610251963,-0.0006410256610251963,1.6940658945086007e-20,-4.743384504624082e-20,0.0,-0.007425507064908743,0.000961538462433964,0.002666484098881483,0.000369822490029037,0.0,-0.00017482518160250038,-4.743384504624082e-20,-0.00017170330102089792,-6.724044942529872e-05,1.3213713977167085e-19,-0.007425507064908743,0.000961538462433964,0.000369822490029037,0.002666484098881483,-0.0,-1.8614782839807404e-21,-0.00017482518160250038,2.134023616786008e-19,-6.724044942529872e-05,-0.00017170330102089792,0.0017361111240461469,-0.0052083334885537624,0.0,-0.0,0.0017361111240461469,0.0,0.0,0.0,0.0,0.0,0.000961538462433964,-0.0006410256610251963,-0.00017482518160250038,-1.8614782839807404e-21,0.0,0.00011655011621769518,5.455623180989199e-22,-1.6940658945086007e-21,-8.0009226502744165e-22,2.118796582841067e-22,0.000961538462433964,-0.0006410256610251963,-4.743384504624082e-20,-0.00017482518160250038,0.0,5.455623180989199e-22,0.00011655011621769518,4.235164736271502e-22,8.470329472543003e-21,1.6940658945086007e-21,0.0002861721732188016,1.6940658945086007e-20,-0.00017170330102089792,2.134023616786008e-19,0.0,-1.6940658945086007e-21,4.235164736271502e-22,1.5609390175086446e-05,-1.1858461261560205e-20,-1.376428539288238e-20,0.000369822490029037,-4.743384504624082e-20,-6.724044942529872e-05,-6.724044942529872e-05,0.0,-8.0009226502744165e-22,8.470329472543003e-21,-1.1858461261560205e-20,1.2225536920595914e-05,3.3881317890172014e-21,0.0002861721732188016,0.0,1.3213713977167085e-19,-0.00017170330102089792,0.0,2.118796582841067e-22,1.6940658945086007e-21,-1.376428539288238e-20,3.3881317890172014e-21,1.5609390175086446e-05,4.0,12.0,13.0,0.049358975142240524,-0.0165574811398983,-0.006878698244690895,-0.006413778755813837,0.0016025641234591603,0.000887573987711221,0.0008241758332587779,0.00026415890897624195,0.0003169907140545547,0.00022893772984389216,-0.0165574811398983,0.022256270051002502,0.000887573987711221,0.0008241758332587779,-0.004807692486792803,-0.000591715972404927,-0.0005494505749084055,-5.082197683525802e-20,-3.7269449679189215e-20,-1.3552527156068805e-20,-0.006878698244690895,0.000887573987711221,0.0024658034089952707,0.0003169907140545547,0.0,-0.00016137708735186607,-3.3881317890172014e-20,-0.00015849535702727735,-5.763467197539285e-05,1.0842021724855044e-19,-0.006413778755813837,0.0008241758332587779,0.0003169907140545547,0.0021095890551805496,-0.0,-4.0759074267544685e-21,-0.00013736264372710139,1.8153799446516863e-19,-5.283178325043991e-05,-0.00012487512140069157,0.0016025641234591603,-0.004807692486792803,0.0,-0.0,0.0016025641234591603,0.0,0.0,0.0,0.0,0.0,0.000887573987711221,-0.000591715972404927,-0.00016137708735186607,-4.0759074267544685e-21,0.0,0.00010758472490124404,5.36381744210575e-23,1.1858461261560205e-20,5.255919950497751e-22,2.9051843775697748e-22,0.0008241758332587779,-0.0005494505749084055,-3.3881317890172014e-20,-0.00013736264372710139,0.0,5.36381744210575e-23,9.157509339274839e-05,-4.235164736271502e-22,6.3527471044072525e-21,1.6940658945086007e-21,0.00026415890897624195,-5.082197683525802e-20,-0.00015849535702727735,1.8153799446516863e-19,0.0,1.1858461261560205e-20,-4.235164736271502e-22,1.4408667993848212e-05,-8.470329472543003e-21,-1.122318655111948e-20,0.0003169907140545547,-3.7269449679189215e-20,-5.763467197539285e-05,-5.283178325043991e-05,0.0,5.255919950497751e-22,6.3527471044072525e-21,-8.470329472543003e-21,9.605779268895276e-06,1.6940658945086007e-21,0.00022893772984389216,-1.3552527156068805e-20,1.0842021724855044e-19,-0.00012487512140069157,0.0,2.9051843775697748e-22,1.6940658945086007e-21,-1.122318655111948e-20,1.6940658945086007e-21,1.0406260116724297e-05,4.0,12.0,14.0,0.04621974751353264,-0.01542582456022501,-0.006406985688954592,-0.005595810245722532,0.0014880952658131719,0.0008241758332587779,0.0007142857066355646,0.0002452904300298542,0.00027472528745420277,0.00018601190822664648,-0.01542582456022501,0.020700549706816673,0.0008241758332587779,0.0007142857066355646,-0.004464285913854837,-0.0005494505749084055,-0.0004761904710903764,1.7110065534536867e-19,2.0328790734103208e-20,2.710505431213761e-20,-0.006406985688954592,0.0008241758332587779,0.002293242374435067,0.00027472528745420277,-4.575095125988051e-19,-0.00014985015150159597,-3.7269449679189215e-20,-0.0001471742580179125,-4.995004928787239e-05,1.2705494208814505e-19,-0.005595810245722532,0.0007142857066355646,0.00027472528745420277,0.0016979475039988756,-3.965082252960754e-19,-4.9590941444497316e-20,-0.00010989011207129806,1.1773794155986574e-19,-4.226542660035193e-05,-9.300595411332324e-05,0.0014880952658131719,-0.004464285913854837,-4.575095125988051e-19,-3.965082252960754e-19,0.0014880952658131719,3.0500633311607204e-19,2.64338825480515e-19,-9.027796614315168e-35,-1.0708816672894648e-35,-1.504632769052528e-35,0.0008241758332587779,-0.0005494505749084055,-0.00014985015150159597,-4.9590941444497316e-20,3.0500633311607204e-19,9.990009857574478e-05,3.518499007847253e-20,-3.049318610115481e-20,-4.5964473798623655e-22,-5.9322024528258e-23,0.0007142857066355646,-0.0004761904710903764,-3.7269449679189215e-20,-0.00010989011207129806,2.64338825480515e-19,3.518499007847253e-20,7.326007471419871e-05,-4.235164736271502e-22,-2.117582368135751e-21,-6.776263578034403e-21,0.0002452904300298542,1.7110065534536867e-19,-0.0001471742580179125,1.1773794155986574e-19,-9.027796614315168e-35,-3.049318610115481e-20,-4.235164736271502e-22,1.3379477422859054e-05,0.0,-8.893845946170154e-21,0.00027472528745420277,2.0328790734103208e-20,-4.995004928787239e-05,-4.226542660035193e-05,-1.0708816672894648e-35,-4.5964473798623655e-22,-2.117582368135751e-21,0.0,7.68462268752046e-06,-4.235164736271502e-21,0.00018601190822664648,2.710505431213761e-20,1.2705494208814505e-19,-9.300595411332324e-05,-1.504632769052528e-35,-5.9322024528258e-23,-6.776263578034403e-21,-8.893845946170154e-21,-4.235164736271502e-21,7.15430405762163e-06,4.0,12.0,15.0,0.0434565544128418,-0.01443910226225853,-0.005995878949761391,-0.0049250563606619835,0.0013888889225199819,0.0007692307699471712,0.0006249999860301614,0.00022893772984389216,0.000240384615608491,0.00015318627993110567,-0.01443910226225853,0.01934828981757164,0.0007692307699471712,0.0006249999860301614,-0.004166666883975267,-0.0005128204938955605,-0.00041666667675599456,-1.6940658945086007e-20,1.3552527156068805e-20,8.131516293641283e-20,-0.005995878949761391,0.0007692307699471712,0.002143273362889886,0.000240384615608491,0.0,-0.0001398601452820003,1.3552527156068805e-20,-0.00013736264372710139,-4.3706295400625095e-05,-1.5585406229479126e-19,-0.0049250563606619835,0.0006249999860301614,0.000240384615608491,0.0013870259281247854,-0.0,2.590185831497136e-21,-8.928571332944557e-05,-2.535705365675114e-19,-3.4340660931775346e-05,-7.070136052789167e-05,0.0013888889225199819,-0.004166666883975267,0.0,-0.0,0.0013888889225199819,0.0,0.0,0.0,0.0,0.0,0.0007692307699471712,-0.0005128204938955605,-0.0001398601452820003,2.590185831497136e-21,0.0,9.324009442934766e-05,-1.6673558468078352e-22,1.6940658945086007e-21,-4.876455388327864e-22,3.5069161795842e-23,0.0006249999860301614,-0.00041666667675599456,1.3552527156068805e-20,-8.928571332944557e-05,0.0,-1.6673558468078352e-22,5.952380888629705e-05,-2.117582368135751e-22,-1.2705494208814505e-21,-1.1858461261560205e-20,0.00022893772984389216,-1.6940658945086007e-20,-0.00013736264372710139,-2.535705365675114e-19,0.0,1.6940658945086007e-21,-2.117582368135751e-22,1.2487512321968097e-05,9.740878893424454e-21,1.4505439221729893e-20,0.000240384615608491,1.3552527156068805e-20,-4.3706295400625095e-05,-3.4340660931775346e-05,0.0,-4.876455388327864e-22,-1.2705494208814505e-21,9.740878893424454e-21,6.243756160984049e-06,-6.352747104407253e-22,0.00015318627993110567,8.131516293641283e-20,-1.5585406229479126e-19,-7.070136052789167e-05,0.0,3.5069161795842e-23,-1.1858461261560205e-20,1.4505439221729893e-20,-6.352747104407253e-22,5.050097115599783e-06,4.0,12.0,16.0,0.04100555181503296,-0.013571125455200672,-0.005634393077343702,-0.004368165507912636,0.0013020833721384406,0.0007211538613773882,0.0005514706135727465,0.0002146291226381436,0.00021210407430771738,0.0001276552357012406,-0.013571125455200672,0.01816200092434883,0.0007211538613773882,0.0005514706135727465,-0.00390625,-0.000480769231216982,-0.0003676470660138875,2.407412430484045e-35,-1.1858461261560205e-20,-6.776263578034403e-21,-0.005634393077343702,0.0007211538613773882,0.00201172917149961,0.00021210407430771738,0.0,-0.00013111888256389648,-1.0164395367051604e-20,-0.00012877747940365225,-3.856437615468167e-05,5.759824041329242e-20,-0.004368165507912636,0.0005514706135727465,0.00021210407430771738,0.001147752394899726,-0.0,-0.0,-7.352940883720294e-05,1.288332253087692e-19,-2.8280543119763024e-05,-5.470938413054682e-05,0.0013020833721384406,-0.00390625,0.0,-0.0,0.0013020833721384406,0.0,0.0,0.0,0.0,0.0,0.0007211538613773882,-0.000480769231216982,-0.00013111888256389648,-0.0,0.0,8.741259080125019e-05,0.0,0.0,0.0,0.0,0.0005514706135727465,-0.0003676470660138875,-1.0164395367051604e-20,-7.352940883720294e-05,0.0,0.0,4.901960710412823e-05,-3.009265538105056e-36,1.2705494208814505e-21,4.235164736271502e-22,0.0002146291226381436,2.407412430484045e-35,-0.00012877747940365225,1.288332253087692e-19,0.0,0.0,-3.009265538105056e-36,1.1707043086062185e-05,-7.007811141651029e-21,-6.019350504489334e-21,0.00021210407430771738,-1.1858461261560205e-20,-3.856437615468167e-05,-2.8280543119763024e-05,0.0,0.0,1.2705494208814505e-21,-7.007811141651029e-21,5.141916972206673e-06,1.0587911840678754e-21,0.0001276552357012406,-6.776263578034403e-21,5.759824041329242e-20,-5.470938413054682e-05,0.0,0.0,4.235164736271502e-22,-6.019350504489334e-21,1.0587911840678754e-21,3.647292260211543e-06,4.0,13.0,3.0,0.14551281929016113,-0.05824175849556923,-0.02280219830572605,-0.07087912410497665,0.006410256493836641,0.0032967033330351114,0.011538461782038212,0.0009157509193755686,0.004120879340916872,0.009615384973585606,-0.05824175849556923,0.08369963616132736,0.0032967033330351114,0.011538461782038212,-0.01923076994717121,-0.002197802299633622,-0.007692307699471712,4.8063346036005924e-18,1.1058862159352145e-17,9.540979117872439e-18,-0.02280219830572605,0.0032967033330351114,0.00796287041157484,0.004120879340916872,1.8440903187183632e-17,-0.0005494505749084055,7.48099499014998e-18,-0.0004995004856027663,-0.0006868132040835917,-1.235990476633475e-17,-0.07087912410497665,0.011538461782038212,0.004120879340916872,0.16703297197818756,1.1986775172540656e-17,5.235900662637649e-18,-0.011538461782038212,-1.423059398754843e-18,-0.004120879340916872,-0.057692307978868484,0.006410256493836641,-0.01923076994717121,1.8440903187183632e-17,1.1986775172540656e-17,0.006410256493836641,-1.1926223897340549e-18,5.514690100774918e-19,-1.0842021724855044e-18,-2.1911700097896933e-18,1.0821174705467177e-18,0.0032967033330351114,-0.002197802299633622,-0.0005494505749084055,5.235900662637649e-18,-1.1926223897340549e-18,0.00036630037357099354,-1.0665815710768998e-18,-1.5585406229479126e-19,-4.836240181274105e-19,-1.3442191602111888e-19,0.011538461782038212,-0.007692307699471712,7.48099499014998e-18,-0.011538461782038212,5.514690100774918e-19,-1.0665815710768998e-18,0.007692307699471712,-3.3822445895012966e-19,-1.6805133673525319e-18,-1.474514954580286e-17,0.0009157509193755686,4.8063346036005924e-18,-0.0004995004856027663,-1.423059398754843e-18,-1.0842021724855044e-18,-1.5585406229479126e-19,-3.3822445895012966e-19,4.162504046689719e-05,-1.0436919067145149e-20,9.963368764710139e-19,0.004120879340916872,1.1058862159352145e-17,-0.0006868132040835917,-0.004120879340916872,-2.1911700097896933e-18,-4.836240181274105e-19,-1.6805133673525319e-18,-1.0436919067145149e-20,0.0006868132040835917,-1.0842021724855044e-18,0.009615384973585606,9.540979117872439e-18,-1.235990476633475e-17,-0.057692307978868484,1.0821174705467177e-18,-1.3442191602111888e-19,-1.474514954580286e-17,9.963368764710139e-19,-1.0842021724855044e-18,0.028846153989434242,4.0,13.0,4.0,0.1192857176065445,-0.0454120896756649,-0.017719781026244164,-0.0454120896756649,0.004807692486792803,0.0024725275579839945,0.006923076696693897,0.0006868132040835917,0.0024725275579839945,0.004807692486792803,-0.0454120896756649,0.06392857432365417,0.0024725275579839945,0.006923076696693897,-0.014423076994717121,-0.0016483516665175557,-0.004615384619683027,-1.6864550056925003e-18,6.2341624917916505e-19,1.8648277366750676e-17,-0.017719781026244164,0.0024725275579839945,0.006075175013393164,0.0024725275579839945,-6.78825562896489e-18,-0.00041208791662938893,3.415236843329339e-18,-0.00037462537875398993,-0.00041208791662938893,8.348356728138384e-18,-0.0454120896756649,0.006923076696693897,0.0024725275579839945,0.06392857432365417,-1.6022488465152146e-17,2.769007573241421e-18,-0.004615384619683027,9.570720603591936e-19,-0.0016483516665175557,-0.014423076994717121,0.004807692486792803,-0.014423076994717121,-6.78825562896489e-18,-1.6022488465152146e-17,0.004807692486792803,3.5236570605778894e-19,2.148327223938275e-18,4.54009659728305e-19,5.552379551410131e-19,2.900793781638216e-18,0.0024725275579839945,-0.0016483516665175557,-0.00041208791662938893,2.769007573241421e-18,3.5236570605778894e-19,0.00027472528745420277,-3.7150059082464257e-19,5.082197683525802e-20,7.713813833432873e-21,-6.941188916516757e-19,0.006923076696693897,-0.004615384619683027,3.415236843329339e-18,-0.004615384619683027,2.148327223938275e-18,-3.7150059082464257e-19,0.003076923079788685,-1.2899598925016035e-20,-1.3823577699190182e-18,-1.452830911130576e-17,0.0006868132040835917,-1.6864550056925003e-18,-0.00037462537875398993,9.570720603591936e-19,4.54009659728305e-19,5.082197683525802e-20,-1.2899598925016035e-20,3.121878035017289e-05,-3.3796493103294115e-20,-2.1759942440790657e-19,0.0024725275579839945,6.2341624917916505e-19,-0.00041208791662938893,-0.0016483516665175557,5.552379551410131e-19,7.713813833432873e-21,-1.3823577699190182e-18,-3.3796493103294115e-20,0.00027472528745420277,-2.5478751053409354e-18,0.004807692486792803,1.8648277366750676e-17,8.348356728138384e-18,-0.014423076994717121,2.900793781638216e-18,-6.941188916516757e-19,-1.452830911130576e-17,-2.1759942440790657e-19,-2.5478751053409354e-18,0.004807692486792803,4.0,13.0,5.0,0.10120879113674164,-0.037252746522426605,-0.014505494385957718,-0.03164835274219513,0.003846153849735856,0.0019780220463871956,0.004615384619683027,0.0005494505749084055,0.0016483516665175557,0.002747252816334367,-0.037252746522426605,0.05175824090838432,0.0019780220463871956,0.004615384619683027,-0.011538461782038212,-0.0013186812866479158,-0.003076923079788685,-2.4242082950418076e-18,-3.0357660829594124e-18,3.2526065174565133e-18,-0.014505494385957718,0.0019780220463871956,0.0049150846898555756,0.0016483516665175557,-1.0055975149803054e-17,-0.00032967032166197896,-3.0696474008495844e-18,-0.00029970030300319195,-0.00027472528745420277,-2.8189256484623115e-18,-0.03164835274219513,0.004615384619683027,0.0016483516665175557,0.032307691872119904,7.806255641895632e-18,-1.951563910473908e-18,-0.0023076923098415136,-1.3552527156068805e-19,-0.0008241758332587779,-0.005494505632668734,0.003846153849735856,-0.011538461782038212,-1.0055975149803054e-17,7.806255641895632e-18,0.003846153849735856,1.2388259070166996e-18,1.1109037694538693e-18,5.869938324472301e-19,2.5211164846090927e-19,-2.770843293815829e-18,0.0019780220463871956,-0.0013186812866479158,-0.00032967032166197896,-1.951563910473908e-18,1.2388259070166996e-18,0.00021978022414259613,3.5236570605778894e-19,6.327801146590243e-20,1.2197274440461925e-19,1.5585406229479126e-19,0.004615384619683027,-0.003076923079788685,-3.0696474008495844e-18,-0.0023076923098415136,1.1109037694538693e-18,3.5236570605778894e-19,0.0015384615398943424,8.766014229788033e-20,7.453889935837843e-19,2.1141942363467336e-18,0.0005494505749084055,-2.4242082950418076e-18,-0.00029970030300319195,-1.3552527156068805e-19,5.869938324472301e-19,6.327801146590243e-20,8.766014229788033e-20,2.4975024643936194e-05,-3.876189353056228e-21,1.4678896734360276e-20,0.0016483516665175557,-3.0357660829594124e-18,-0.00027472528745420277,-0.0008241758332587779,2.5211164846090927e-19,1.2197274440461925e-19,7.453889935837843e-19,-3.876189353056228e-21,0.00013736264372710139,1.1248597539537109e-18,0.002747252816334367,3.2526065174565133e-18,-2.8189256484623115e-18,-0.005494505632668734,-2.770843293815829e-18,1.5585406229479126e-19,2.1141942363467336e-18,1.4678896734360276e-20,1.1248597539537109e-18,0.0013736264081671834,4.0,13.0,6.0,0.08794479072093964,-0.031593408435583115,-0.012284144759178162,-0.023341836407780647,0.0032051282469183207,0.0016483516665175557,0.0032967033330351114,0.0004578754596877843,0.0011773940641433,0.0017170329811051488,-0.031593408435583115,0.043498169630765915,0.0016483516665175557,0.0032967033330351114,-0.009615384973585606,-0.001098901149816811,-0.002197802299633622,2.8782179547701126e-18,3.74049749507499e-18,6.7220534694101275e-18,-0.012284144759178162,0.0016483516665175557,0.0041286093182861805,0.0011773940641433,9.554531645028508e-18,-0.00027472528745420277,4.323256162785949e-18,-0.00024975024280138314,-0.00019623234402388334,1.6534083130403943e-18,-0.023341836407780647,0.0032967033330351114,0.0011773940641433,0.018780415877699852,1.485356976305141e-17,3.0357660829594124e-18,-0.0013186812866479158,7.860465750519907e-19,-0.00047095760237425566,-0.002575549529865384,0.0032051282469183207,-0.009615384973585606,9.554531645028508e-18,1.485356976305141e-17,0.0032051282469183207,-6.238911542483471e-19,-1.62134555172692e-18,-5.742883382384156e-19,-5.999764838600382e-19,-1.6545907677260388e-18,0.0016483516665175557,-0.001098901149816811,-0.00027472528745420277,3.0357660829594124e-18,-6.238911542483471e-19,0.00018315018678549677,-4.607859233063394e-19,-7.778445881400387e-20,-1.5246593050577406e-19,-2.439454888092385e-19,0.0032967033330351114,-0.002197802299633622,4.323256162785949e-18,-0.0013186812866479158,-1.62134555172692e-18,-4.607859233063394e-19,0.0008791208965703845,-2.0893509523232574e-19,-3.7269449679189215e-19,-2.439454888092385e-19,0.0004578754596877843,2.8782179547701126e-18,-0.00024975024280138314,7.860465750519907e-19,-5.742883382384156e-19,-7.778445881400387e-20,-2.0893509523232574e-19,2.0812520233448595e-05,-2.38482277518404e-20,-5.54707254154575e-20,0.0011773940641433,3.74049749507499e-18,-0.00019623234402388334,-0.00047095760237425566,-5.999764838600382e-19,-1.5246593050577406e-19,-3.7269449679189215e-19,-2.38482277518404e-20,7.849293615436181e-05,-2.337810934421869e-19,0.0017170329811051488,6.7220534694101275e-18,1.6534083130403943e-18,-0.002575549529865384,-1.6545907677260388e-18,-2.439454888092385e-19,-2.439454888092385e-19,-5.54707254154575e-20,-2.337810934421869e-19,0.000515109917614609,4.0,13.0,7.0,0.07777995616197586,-0.027433281764388084,-0.010655416175723076,-0.017935635522007942,0.002747252816334367,0.001412872807122767,0.0024725275579839945,0.0003924646880477667,0.000883045548107475,0.0011446886928752065,-0.027433281764388084,0.03751962259411812,0.001412872807122767,0.0024725275579839945,-0.008241758681833744,-0.0009419152047485113,-0.0016483516665175557,-8.673617379884035e-19,1.6263032587282567e-18,6.559423143537302e-18,-0.010655416175723076,0.001412872807122767,0.00355983292683959,0.000883045548107475,-4.8213115357714775e-18,-0.00023547880118712783,1.0299920638612292e-18,-0.00021407163876574486,-0.0001471742580179125,1.4094628242311558e-18,-0.017935635522007942,0.0024725275579839945,0.000883045548107475,0.011930925771594048,3.144186300207963e-18,2.7647155398380363e-18,-0.0008241758332587779,5.624298769768554e-19,-0.000294348516035825,-0.0013736264081671834,0.002747252816334367,-0.008241758681833744,-4.8213115357714775e-18,3.144186300207963e-18,0.002747252816334367,9.420337100278264e-19,1.1629018937226012e-18,2.710505431213761e-19,-5.96652484417888e-20,-6.938018229831264e-19,0.001412872807122767,-0.0009419152047485113,-0.00023547880118712783,2.7647155398380363e-18,9.420337100278264e-19,0.00015698587230872363,-2.168404344971009e-19,8.096087598706012e-21,-7.115076756936123e-20,-3.083199928005653e-19,0.0024725275579839945,-0.0016483516665175557,1.0299920638612292e-18,-0.0008241758332587779,1.1629018937226012e-18,-2.168404344971009e-19,0.0005494505749084055,-1.424831832742249e-21,-2.541098841762901e-19,-6.708500942254059e-19,0.0003924646880477667,-8.673617379884035e-19,-0.00021407163876574486,5.624298769768554e-19,2.710505431213761e-19,8.096087598706012e-21,-1.424831832742249e-21,1.783930383680854e-05,-2.4802509835391028e-20,-5.696273305830442e-20,0.000883045548107475,1.6263032587282567e-18,-0.0001471742580179125,-0.000294348516035825,-5.96652484417888e-20,-7.115076756936123e-20,-2.541098841762901e-19,-2.4802509835391028e-20,4.9058086005970836e-05,-6.268043809681823e-20,0.0011446886928752065,6.559423143537302e-18,1.4094628242311558e-18,-0.0013736264081671834,-6.938018229831264e-19,-3.083199928005653e-19,-6.708500942254059e-19,-5.696273305830442e-20,-6.268043809681823e-20,0.00022893772984389216,4.0,13.0,8.0,0.06973443180322647,-0.024244505912065506,-0.009409341029822826,-0.014217033050954342,0.0024038462433964014,0.0012362637789919972,0.001923076924867928,0.00034340660204179585,0.0006868132040835917,0.0008012820617295802,-0.024244505912065506,0.032989926636219025,0.0012362637789919972,0.001923076924867928,-0.0072115384973585606,-0.0008241758332587779,-0.0012820513220503926,8.470329472543003e-21,0.0,-0.0,-0.009409341029822826,0.0012362637789919972,0.0031291625928133726,0.0006868132040835917,0.0,-0.00020604395831469446,0.0,-0.00018731268937699497,-0.00011446886492194608,-0.0,-0.014217033050954342,0.001923076924867928,0.0006868132040835917,0.008068419992923737,0.0,-1.6591924364815695e-21,-0.0005494505749084055,-1.3552527156068805e-20,-0.00019623234402388334,-0.0008012820617295802,0.0024038462433964014,-0.0072115384973585606,0.0,0.0,0.0024038462433964014,0.0,0.0,0.0,0.0,-0.0,0.0012362637789919972,-0.0008241758332587779,-0.00020604395831469446,-1.6591924364815695e-21,0.0,0.00013736264372710139,0.0,1.6940658945086007e-21,8.470329472543003e-22,-0.0,0.001923076924867928,-0.0012820513220503926,0.0,-0.0005494505749084055,0.0,0.0,0.00036630037357099354,0.0,0.0,-0.0,0.00034340660204179585,8.470329472543003e-21,-0.00018731268937699497,-1.3552527156068805e-20,0.0,1.6940658945086007e-21,0.0,1.5609390175086446e-05,1.6940658945086007e-21,-0.0,0.0006868132040835917,0.0,-0.00011446886492194608,-0.00019623234402388334,0.0,8.470329472543003e-22,0.0,1.6940658945086007e-21,3.270538945798762e-05,-0.0,0.0008012820617295802,-0.0,-0.0,-0.0008012820617295802,-0.0,-0.0,-0.0,-0.0,-0.0,0.00011446886492194608,4.0,13.0,9.0,0.0632045716047287,-0.0217216107994318,-0.008424908854067326,-0.011548451147973537,0.0021367522422224283,0.001098901149816811,0.0015384615398943424,0.0003052503161597997,0.0005494505749084055,0.0005827505956403911,-0.0217216107994318,0.029438339173793793,0.001098901149816811,0.0015384615398943424,-0.006410256493836641,-0.0007326007471419871,-0.001025640987791121,-9.351243737687476e-19,-2.2158381900172497e-18,-5.612644622118295e-18,-0.008424908854067326,0.001098901149816811,0.002791652688756585,0.0005494505749084055,-1.2510552553854133e-18,-0.00018315018678549677,-2.3818533389566423e-18,-0.00016650016186758876,-9.157509339274839e-05,-1.8752986851771314e-18,-0.011548451147973537,0.0015384615398943424,0.0005494505749084055,0.005717615596950054,-1.2103068494859486e-17,-3.1476902372827375e-18,-0.0003846153849735856,-1.3213713977167085e-18,-0.00013736264372710139,-0.0004995004856027663,0.0021367522422224283,-0.006410256493836641,-1.2510552553854133e-18,-1.2103068494859486e-17,0.0021367522422224283,-7.461503228647599e-20,7.756719207129858e-19,-6.161743911606013e-21,3.2534008693385056e-19,1.0166877942865029e-18,0.001098901149816811,-0.0007326007471419871,-0.00018315018678549677,-3.1476902372827375e-18,-7.461503228647599e-20,0.00012210012937430292,3.1966748908811504e-19,8.131516293641283e-20,1.0333801956502464e-19,2.3238576899578065e-19,0.0015384615398943424,-0.001025640987791121,-2.3818533389566423e-18,-0.0003846153849735856,7.756719207129858e-19,3.1966748908811504e-19,0.00025641024694778025,1.0647493401707007e-19,1.3176273714691404e-19,2.661873415050237e-19,0.0003052503161597997,-9.351243737687476e-19,-0.00016650016186758876,-1.3213713977167085e-18,-6.161743911606013e-21,8.131516293641283e-20,1.0647493401707007e-19,1.387501379213063e-05,3.8116482626443515e-20,1.0562989793551326e-19,0.0005494505749084055,-2.2158381900172497e-18,-9.157509339274839e-05,-0.00013736264372710139,3.2534008693385056e-19,1.0333801956502464e-19,1.3176273714691404e-19,3.8116482626443515e-20,2.2893773348187096e-05,5.554769844886468e-20,0.0005827505956403911,-5.612644622118295e-18,-1.8752986851771314e-18,-0.0004995004856027663,1.0166877942865029e-18,2.3238576899578065e-19,2.661873415050237e-19,1.0562989793551326e-19,5.554769844886468e-20,6.243756070034578e-05,4.0,13.0,10.0,0.05779720097780228,-0.019675325602293015,-0.00762737262994051,-0.009567932225763798,0.001923076924867928,0.0009890110231935978,0.0012587412493303418,0.00027472528745420277,0.0004495504545047879,0.0004370629321783781,-0.019675325602293015,0.026578420773148537,0.0009890110231935978,0.0012587412493303418,-0.005769230891019106,-0.0006593406433239579,-0.0008391608134843409,1.1858461261560205e-20,0.0,-0.0,-0.00762737262994051,0.0009890110231935978,0.0025199800729751587,0.0004495504545047879,0.0,-0.00016483516083098948,0.0,-0.00014985015150159597,-7.492507575079799e-05,-0.0,-0.009567932225763798,0.0012587412493303418,0.0004495504545047879,0.004202255979180336,0.0,2.6230527303038726e-21,-0.0002797202905640006,-3.3881317890172014e-21,-9.990009857574478e-05,-0.0003277971991337836,0.001923076924867928,-0.005769230891019106,0.0,0.0,0.001923076924867928,0.0,0.0,0.0,0.0,-0.0,0.0009890110231935978,-0.0006593406433239579,-0.00016483516083098948,2.6230527303038726e-21,0.0,0.00010989011207129806,0.0,-3.3881317890172014e-21,-8.470329472543003e-22,-0.0,0.0012587412493303418,-0.0008391608134843409,0.0,-0.0002797202905640006,0.0,0.0,0.00018648018885869533,0.0,0.0,-0.0,0.00027472528745420277,1.1858461261560205e-20,-0.00014985015150159597,-3.3881317890172014e-21,0.0,-3.3881317890172014e-21,0.0,1.2487512321968097e-05,0.0,-0.0,0.0004495504545047879,0.0,-7.492507575079799e-05,-9.990009857574478e-05,0.0,-8.470329472543003e-22,0.0,0.0,1.6650015822960995e-05,-0.0,0.0004370629321783781,-0.0,-0.0,-0.0003277971991337836,-0.0,-0.0,-0.0,-0.0,-0.0,3.6421912227524444e-05,4.0,13.0,11.0,0.053244832903146744,-0.017982017248868942,-0.006968032103031874,-0.008057327009737492,0.0017482517287135124,0.0008991009090095758,0.0010489510605111718,0.00024975024280138314,0.00037462537875398993,0.00033620226895436645,-0.017982017248868942,0.02422577515244484,0.0008991009090095758,0.0010489510605111718,-0.005244755186140537,-0.0005994006060063839,-0.0006993007264100015,1.1858461261560205e-20,-2.0328790734103208e-20,-8.131516293641283e-20,-0.006968032103031874,0.0008991009090095758,0.0022965669631958008,0.00037462537875398993,0.0,-0.00014985015150159597,-2.371692252312041e-20,-0.0001362274051643908,-6.243756070034578e-05,-2.371692252312041e-20,-0.008057327009737492,0.0010489510605111718,0.00037462537875398993,0.0031804093159735203,-0.0,-0.0,-0.00020979020337108523,-2.710861557105169e-22,-7.492507575079799e-05,-0.00022413484111893922,0.0017482517287135124,-0.005244755186140537,0.0,-0.0,0.0017482517287135124,0.0,0.0,0.0,0.0,0.0,0.0008991009090095758,-0.0005994006060063839,-0.00014985015150159597,-0.0,0.0,9.990009857574478e-05,-2.117582368135751e-22,-1.6940658945086007e-21,4.235164736271502e-22,-3.8826090399940445e-22,0.0010489510605111718,-0.0006993007264100015,-2.371692252312041e-20,-0.00020979020337108523,0.0,-2.117582368135751e-22,0.0001398601452820003,-2.117582368135751e-22,4.235164736271502e-21,1.5246593050577406e-20,0.00024975024280138314,1.1858461261560205e-20,-0.0001362274051643908,-2.710861557105169e-22,0.0,-1.6940658945086007e-21,-2.117582368135751e-22,1.1352283763699234e-05,0.0,-2.117582368135751e-22,0.00037462537875398993,-2.0328790734103208e-20,-6.243756070034578e-05,-7.492507575079799e-05,0.0,4.235164736271502e-22,4.235164736271502e-21,0.0,1.2487512321968097e-05,5.929230630780102e-21,0.00033620226895436645,-8.131516293641283e-20,-2.371692252312041e-20,-0.00022413484111893922,0.0,-3.8826090399940445e-22,1.5246593050577406e-20,-2.117582368135751e-22,5.929230630780102e-21,2.241348374809604e-05,4.0,13.0,12.0,0.049358975142240524,-0.0165574811398983,-0.006413778755813837,-0.006878698244690895,0.0016025641234591603,0.0008241758332587779,0.000887573987711221,0.00022893772984389216,0.0003169907140545547,0.00026415890897624195,-0.0165574811398983,0.022256270051002502,0.0008241758332587779,0.000887573987711221,-0.004807692486792803,-0.0005494505749084055,-0.000591715972404927,1.6940658945086007e-21,-1.3552527156068805e-20,-4.0657581468206416e-20,-0.006413778755813837,0.0008241758332587779,0.0021095890551805496,0.0003169907140545547,0.0,-0.00013736264372710139,-1.6940658945086007e-20,-0.00012487512140069157,-5.283178325043991e-05,-2.0328790734103208e-20,-0.006878698244690895,0.000887573987711221,0.0003169907140545547,0.0024658034089952707,-0.0,1.2832461586079993e-20,-0.00016137708735186607,7.013171659761284e-21,-5.763467197539285e-05,-0.00015849535702727735,0.0016025641234591603,-0.004807692486792803,0.0,-0.0,0.0016025641234591603,0.0,0.0,0.0,0.0,0.0,0.0008241758332587779,-0.0005494505749084055,-0.00013736264372710139,1.2832461586079993e-20,0.0,9.157509339274839e-05,-4.1631736687142667e-22,0.0,-1.1469735649067865e-21,-3.6485753402138474e-22,0.000887573987711221,-0.000591715972404927,-1.6940658945086007e-20,-0.00016137708735186607,0.0,-4.1631736687142667e-22,0.00010758472490124404,-2.117582368135751e-22,3.8116482626443515e-21,1.0164395367051604e-20,0.00022893772984389216,1.6940658945086007e-21,-0.00012487512140069157,7.013171659761284e-21,0.0,0.0,-2.117582368135751e-22,1.0406260116724297e-05,-8.470329472543003e-22,0.0,0.0003169907140545547,-1.3552527156068805e-20,-5.283178325043991e-05,-5.763467197539285e-05,0.0,-1.1469735649067865e-21,3.8116482626443515e-21,-8.470329472543003e-22,9.605779268895276e-06,4.235164736271502e-21,0.00026415890897624195,-4.0657581468206416e-20,-2.0328790734103208e-20,-0.00015849535702727735,0.0,-3.6485753402138474e-22,1.0164395367051604e-20,0.0,4.235164736271502e-21,1.4408667993848212e-05,4.0,13.0,13.0,0.04600289836525917,-0.015342350117862225,-0.005941311363130808,-0.005941311363130808,0.001479289960116148,0.0007607776788063347,0.0007607776788063347,0.00021132713300175965,0.00027170631801709533,0.00021132713300175965,-0.015342350117862225,0.0205832626670599,0.0007607776788063347,0.0007607776788063347,-0.004437869880348444,-0.0005071851192042232,-0.0005071851192042232,0.0,3.3881317890172014e-21,0.0,-0.005941311363130808,0.0007607776788063347,0.0019507964607328176,0.00027170631801709533,0.0,-0.0001267962798010558,-3.3881317890172014e-21,-0.0001152693439507857,-4.528438512352295e-05,3.3881317890172014e-21,-0.005941311363130808,0.0007607776788063347,0.00027170631801709533,0.0019507964607328176,-0.0,-0.0,-0.0001267962798010558,2.2343965880582907e-21,-4.528438512352295e-05,-0.0001152693439507857,0.001479289960116148,-0.004437869880348444,0.0,-0.0,0.001479289960116148,0.0,0.0,0.0,0.0,0.0,0.0007607776788063347,-0.0005071851192042232,-0.0001267962798010558,-0.0,0.0,8.453085320070386e-05,2.117582368135751e-22,0.0,0.0,-3.830079044750867e-24,0.0007607776788063347,-0.0005071851192042232,-3.3881317890172014e-21,-0.0001267962798010558,0.0,2.117582368135751e-22,8.453085320070386e-05,0.0,0.0,0.0,0.00021132713300175965,0.0,-0.0001152693439507857,2.2343965880582907e-21,0.0,0.0,0.0,9.605779268895276e-06,0.0,-2.117582368135751e-22,0.00027170631801709533,3.3881317890172014e-21,-4.528438512352295e-05,-4.528438512352295e-05,0.0,0.0,0.0,0.0,7.547397672169609e-06,0.0,0.00021132713300175965,0.0,3.3881317890172014e-21,-0.0001152693439507857,0.0,-3.830079044750867e-24,0.0,-2.117582368135751e-22,0.0,9.605779268895276e-06,4.0,13.0,14.0,0.04307496175169945,-0.014293563552200794,-0.005533752031624317,-0.00518347742035985,0.0013736264081671834,0.0007064364035613835,0.0006593406433239579,0.00019623234402388334,0.00023547880118712783,0.00017170330102089792,-0.014293563552200794,0.01914442703127861,0.0007064364035613835,0.0006593406433239579,-0.004120879340916872,-0.00047095760237425566,-0.00043956044828519225,2.0498197323554068e-19,-4.912791094074942e-20,8.809142651444724e-20,-0.005533752031624317,0.0007064364035613835,0.0018142571207135916,0.00023547880118712783,-7.657587039088147e-20,-0.00011773940059356391,2.286988957586611e-19,-0.00010703581938287243,-3.924646807718091e-05,-1.0164395367051604e-20,-0.00518347742035985,0.0006593406433239579,0.00023547880118712783,0.001570122898556292,-4.44300472192099e-19,2.0577273205174723e-19,-0.00010143702093046159,-8.09773824408071e-20,-3.6227509554009885e-05,-8.585165051044896e-05,0.0013736264081671834,-0.004120879340916872,-7.657587039088147e-20,-4.44300472192099e-19,0.0013736264081671834,-9.154977818265195e-20,-4.5088338876429763e-20,-3.9611211725817474e-21,2.681374294926403e-20,1.9062895819754502e-20,0.0007064364035613835,-0.00047095760237425566,-0.00011773940059356391,2.0577273205174723e-19,-9.154977818265195e-20,7.849293615436181e-05,-3.192857387730733e-20,-2.371692252312041e-20,-5.171319124386288e-21,-1.3212589043845756e-20,0.0006593406433239579,-0.00043956044828519225,2.286988957586611e-19,-0.00010143702093046159,-4.5088338876429763e-20,-3.192857387730733e-20,6.762468547094613e-05,-1.514071393217062e-20,-6.3527471044072525e-21,-1.4399560103323106e-20,0.00019623234402388334,2.0498197323554068e-19,-0.00010703581938287243,-8.09773824408071e-20,-3.9611211725817474e-21,-2.371692252312041e-20,-1.514071393217062e-20,8.91965191840427e-06,3.8116482626443515e-21,4.9763185651190145e-21,0.00023547880118712783,-4.912791094074942e-20,-3.924646807718091e-05,-3.6227509554009885e-05,2.681374294926403e-20,-5.171319124386288e-21,-6.3527471044072525e-21,3.8116482626443515e-21,6.037917955836747e-06,-6.3527471044072525e-21,0.00017170330102089792,8.809142651444724e-20,-1.0164395367051604e-20,-8.585165051044896e-05,1.9062895819754502e-20,-1.3212589043845756e-20,-1.4399560103323106e-20,4.9763185651190145e-21,-6.3527471044072525e-21,6.603972906304989e-06,4.0,13.0,15.0,0.04049800708889961,-0.013379121199250221,-0.005178571213036776,-0.004562055692076683,0.0012820513220503926,0.0006593406433239579,0.0005769230774603784,0.00018315018678549677,0.00020604395831469446,0.00014140272105578333,-0.013379121199250221,0.017893772572278976,0.0006593406433239579,0.0005769230774603784,-0.003846153849735856,-0.00043956044828519225,-0.0003846153849735856,-8.470329472543003e-21,1.5246593050577406e-20,3.3881317890172014e-20,-0.005178571213036776,0.0006593406433239579,0.0016955960309132934,0.00020604395831469446,0.0,-0.00010989011207129806,1.8634724839594607e-20,-9.990009857574478e-05,-3.4340660931775346e-05,1.5246593050577406e-20,-0.004562055692076683,0.0005769230774603784,0.00020604395831469446,0.001282595912925899,-0.0,4.4498984806889235e-21,-8.241758041549474e-05,7.216744524360992e-21,-2.943485014839098e-05,-6.526279321406037e-05,0.0012820513220503926,-0.003846153849735856,0.0,-0.0,0.0012820513220503926,0.0,0.0,0.0,0.0,0.0,0.0006593406433239579,-0.00043956044828519225,-0.00010989011207129806,4.4498984806889235e-21,0.0,7.326007471419871e-05,-1.8006431737491705e-22,1.6940658945086007e-21,-5.256391499992456e-22,-1.4953526150334458e-22,0.0005769230774603784,-0.0003846153849735856,1.8634724839594607e-20,-8.241758041549474e-05,0.0,-1.8006431737491705e-22,5.494505603564903e-05,-3.1763735522036263e-22,-1.9058241313221758e-21,-5.082197683525802e-21,0.00018315018678549677,-8.470329472543003e-21,-9.990009857574478e-05,7.216744524360992e-21,0.0,1.6940658945086007e-21,-3.1763735522036263e-22,8.325007911480498e-06,-4.235164736271502e-22,-2.117582368135751e-22,0.00020604395831469446,1.5246593050577406e-20,-3.4340660931775346e-05,-2.943485014839098e-05,0.0,-5.256391499992456e-22,-1.9058241313221758e-21,-4.235164736271502e-22,4.905808509647613e-06,-1.9058241313221758e-21,0.00014140272105578333,3.3881317890172014e-20,1.5246593050577406e-20,-6.526279321406037e-05,0.0,-1.4953526150334458e-22,-5.082197683525802e-21,-2.117582368135751e-22,-1.9058241313221758e-21,4.6616278268629685e-06,4.0,13.0,16.0,0.03821239992976189,-0.012574741616845131,-0.004866273608058691,-0.004046137910336256,0.0012019231216982007,0.0006181318894959986,0.0005090498016215861,0.00017170330102089792,0.0001818034943426028,0.00011783559602918103,-0.012574741616845131,0.016796622425317764,0.0006181318894959986,0.0005090498016215861,-0.0036057692486792803,-0.00041208791662938893,-0.0003393665247131139,3.3881317890172014e-21,-1.6940658945086007e-21,0.0,-0.004866273608058691,0.0006181318894959986,0.001591515145264566,0.0001818034943426028,0.0,-0.00010302197915734723,0.0,-9.365634468849748e-05,-3.0300581784103997e-05,0.0,-0.004046137910336256,0.0005090498016215861,0.0001818034943426028,0.0010613283375278115,-0.0,-3.682222365657862e-21,-6.787330494262278e-05,-1.2306238199383454e-21,-2.424046579108108e-05,-5.050097024650313e-05,0.0012019231216982007,-0.0036057692486792803,0.0,-0.0,0.0012019231216982007,0.0,0.0,0.0,0.0,0.0,0.0006181318894959986,-0.00041208791662938893,-0.00010302197915734723,-3.682222365657862e-21,0.0,6.868132186355069e-05,2.3724587827738457e-23,0.0,5.07617477469065e-22,1.2041341989071604e-22,0.0005090498016215861,-0.0003393665247131139,0.0,-6.787330494262278e-05,0.0,2.3724587827738457e-23,4.5248867536429316e-05,-1.0587911840678754e-22,2.117582368135751e-22,-4.235164736271502e-22,0.00017170330102089792,3.3881317890172014e-21,-9.365634468849748e-05,-1.2306238199383454e-21,0.0,0.0,-1.0587911840678754e-22,7.804695087543223e-06,2.117582368135751e-22,0.0,0.0001818034943426028,-1.6940658945086007e-21,-3.0300581784103997e-05,-2.424046579108108e-05,0.0,5.07617477469065e-22,2.117582368135751e-22,2.117582368135751e-22,4.040077783429297e-06,-2.117582368135751e-22,0.00011783559602918103,0.0,0.0,-5.050097024650313e-05,0.0,1.2041341989071604e-22,-4.235164736271502e-22,0.0,-2.117582368135751e-22,3.3667313346086303e-06,4.0,14.0,3.0,0.13648809492588043,-0.05428571254014969,-0.019910713657736778,-0.06607142835855484,0.0059523810632526875,0.0028571428265422583,0.010714286006987095,0.0007440476329065859,0.0035714285913854837,0.008928571827709675,-0.05428571254014969,0.07785714417695999,0.0028571428265422583,0.010714286006987095,-0.01785714365541935,-0.0019047618843615055,-0.0071428571827709675,4.921951085383201e-19,9.75781955236954e-19,9.237402509576498e-17,-0.019910713657736778,0.0028571428265422583,0.006411401089280844,0.0035714285913854837,5.844429315152085e-18,-0.00043956044828519225,-1.1926223897340549e-18,-0.00037202381645329297,-0.0005494505749084055,1.6263032587282567e-17,-0.06607142835855484,0.010714286006987095,0.0035714285913854837,0.15535713732242584,3.6019940424368663e-17,3.949115754283314e-18,-0.010714286006987095,1.0870237889524994e-18,-0.0035714285913854837,-0.0535714291036129,0.0059523810632526875,-0.01785714365541935,5.844429315152085e-18,3.6019940424368663e-17,0.0059523810632526875,-2.222614453595284e-18,1.2044724240931247e-19,-1.2197274440461925e-19,-5.738473992731366e-19,-1.565084283337697e-17,0.0028571428265422583,-0.0019047618843615055,-0.00043956044828519225,3.949115754283314e-18,-2.222614453595284e-18,0.00029304029885679483,2.013056853253224e-19,-1.3552527156068805e-20,4.2016561666448614e-20,-2.208566445252296e-18,0.010714286006987095,-0.0071428571827709675,-1.1926223897340549e-18,-0.010714286006987095,1.2044724240931247e-19,2.013056853253224e-19,0.0071428571827709675,8.157129327385877e-21,8.131516293641283e-19,-2.47198095326695e-17,0.0007440476329065859,4.921951085383201e-19,-0.00037202381645329297,1.0870237889524994e-18,-1.2197274440461925e-19,-1.3552527156068805e-20,8.157129327385877e-21,2.861721623048652e-05,-5.9662360579786966e-21,-5.338276257559968e-19,0.0035714285913854837,9.75781955236954e-19,-0.0005494505749084055,-0.0035714285913854837,-5.738473992731366e-19,4.2016561666448614e-20,8.131516293641283e-19,-5.9662360579786966e-21,0.0005494505749084055,-4.7704895589362195e-18,0.008928571827709675,9.237402509576498e-17,1.6263032587282567e-17,-0.0535714291036129,-1.565084283337697e-17,-2.208566445252296e-18,-2.47198095326695e-17,-5.338276257559968e-19,-4.7704895589362195e-18,0.02678571455180645,4.0,14.0,4.0,0.11183035373687744,-0.042321428656578064,-0.015468750149011612,-0.042321428656578064,0.004464285913854837,0.002142857061699033,0.006428571417927742,0.0005580357392318547,0.002142857061699033,0.004464285913854837,-0.042321428656578064,0.059464287012815475,0.002142857061699033,0.006428571417927742,-0.013392857275903225,-0.0014285714132711291,-0.004285714123398066,-1.0548995060809666e-18,-8.212831456577696e-18,-1.5612511283791264e-17,-0.015468750149011612,0.002142857061699033,0.004890968557447195,0.002142857061699033,-6.5839213381489786e-18,-0.00032967032166197896,-2.927345865710862e-18,-0.00027901786961592734,-0.00032967032166197896,-4.065758146820642e-18,-0.042321428656578064,0.006428571417927742,0.002142857061699033,0.059464287012815475,-9.584553338180507e-18,-2.511459512849054e-18,-0.004285714123398066,-9.91869997765651e-19,-0.0014285714132711291,-0.013392857275903225,0.004464285913854837,-0.013392857275903225,-6.5839213381489786e-18,-9.584553338180507e-18,0.004464285913854837,2.710505431213761e-20,-8.073804936279224e-19,2.439454888092385e-19,1.6147503373054582e-18,6.897771886374468e-20,0.002142857061699033,-0.0014285714132711291,-0.00032967032166197896,-2.511459512849054e-18,2.710505431213761e-20,0.00021978022414259613,-1.3805902917451455e-19,2.710505431213761e-20,1.5434435427930542e-19,5.721969671559402e-19,0.006428571417927742,-0.004285714123398066,-2.927345865710862e-18,-0.004285714123398066,-8.073804936279224e-19,-1.3805902917451455e-19,0.0028571428265422583,7.476582472720499e-20,1.2874900798265365e-18,6.938893903907228e-18,0.0005580357392318547,-1.0548995060809666e-18,-0.00027901786961592734,-9.91869997765651e-19,2.439454888092385e-19,2.710505431213761e-20,7.476582472720499e-20,2.146291262761224e-05,4.1053103047977475e-20,1.9729572051081845e-19,0.002142857061699033,-8.212831456577696e-18,-0.00032967032166197896,-0.0014285714132711291,1.6147503373054582e-18,1.5434435427930542e-19,1.2874900798265365e-18,4.1053103047977475e-20,0.00021978022414259613,-2.168404344971009e-19,0.004464285913854837,-1.5612511283791264e-17,-4.065758146820642e-18,-0.013392857275903225,6.897771886374468e-20,5.721969671559402e-19,6.938893903907228e-18,1.9729572051081845e-19,-2.168404344971009e-19,0.004464285913854837,4.0,14.0,5.0,0.0948520377278328,-0.03471428528428078,-0.012660713866353035,-0.029489796608686447,0.0035714285913854837,0.001714285695925355,0.004285714123398066,0.00044642857392318547,0.0014285714132711291,0.0025510203558951616,-0.03471428528428078,0.04814285784959793,0.001714285695925355,0.004285714123398066,-0.010714286006987095,-0.0011428571306169033,-0.0028571428265422583,4.0463468027834363e-19,5.421010862427522e-19,1.1709383462843448e-17,-0.012660713866353035,0.001714285695925355,0.00395673094317317,0.0014285714132711291,2.6020852139652106e-18,-0.00026373626315034926,1.0977546996415732e-18,-0.00022321428696159273,-0.00021978022414259613,3.2526065174565133e-19,-0.029489796608686447,0.004285714123398066,0.0014285714132711291,0.03005102090537548,1.496198998029996e-17,-3.7947076036992655e-19,-0.002142857061699033,5.996993266560446e-19,-0.0007142857066355646,-0.005102040711790323,0.0035714285913854837,-0.010714286006987095,2.6020852139652106e-18,1.496198998029996e-17,0.0035714285913854837,-7.386127300057499e-19,-8.605259691050536e-19,-6.776263578034403e-20,-2.2101542184380916e-19,-2.958974563997899e-18,0.001714285695925355,-0.0011428571306169033,-0.00026373626315034926,-3.7947076036992655e-19,-7.386127300057499e-19,0.00017582417058292776,-1.3552527156068805e-20,2.541098841762901e-21,6.776263578034403e-20,-2.0328790734103208e-20,0.004285714123398066,-0.0028571428265422583,1.0977546996415732e-18,-0.002142857061699033,-8.605259691050536e-19,-1.3552527156068805e-20,0.0014285714132711291,-6.824603237550177e-20,-6.776263578034403e-20,-1.2197274440461925e-18,0.00044642857392318547,4.0463468027834363e-19,-0.00022321428696159273,5.996993266560446e-19,-6.776263578034403e-20,2.541098841762901e-21,-6.824603237550177e-20,1.7170330465887673e-05,-6.050026869090904e-21,-1.0518383432784551e-19,0.0014285714132711291,5.421010862427522e-19,-0.00021978022414259613,-0.0007142857066355646,-2.2101542184380916e-19,6.776263578034403e-20,-6.776263578034403e-20,-6.050026869090904e-21,0.00010989011207129806,5.827586677109586e-19,0.0025510203558951616,1.1709383462843448e-17,3.2526065174565133e-19,-0.005102040711790323,-2.958974563997899e-18,-2.0328790734103208e-20,-1.2197274440461925e-18,-1.0518383432784551e-19,5.827586677109586e-19,0.0012755101779475808,4.0,14.0,6.0,0.08240221440792084,-0.029438775032758713,-0.010720663703978062,-0.021747449412941933,0.0029761905316263437,0.0014285714132711291,0.0030612244736403227,0.00037202381645329297,0.0010204081190750003,0.0015943878097459674,-0.029438775032758713,0.04045918211340904,0.0014285714132711291,0.0030612244736403227,-0.008928571827709675,-0.0009523809421807528,-0.0020408162381500006,2.0735848898479967e-19,-9.215718466126788e-19,8.673617379884035e-19,-0.010720663703978062,0.0014285714132711291,0.0033234399743378162,0.0010204081190750003,1.7414997395548415e-18,-0.00021978022414259613,-3.083199928005653e-19,-0.00018601190822664648,-0.00015698587230872363,1.6263032587282567e-19,-0.021747449412941933,0.0030612244736403227,0.0010204081190750003,0.017468111589550972,-5.421010862427522e-19,-5.421010862427522e-19,-0.0012244897661730647,6.776263578034403e-21,-0.0004081632650922984,-0.00239158165641129,0.0029761905316263437,-0.008928571827709675,1.7414997395548415e-18,-5.421010862427522e-19,0.0029761905316263437,-1.0570971181733668e-18,6.629716641799328e-19,-4.0657581468206416e-20,1.312857382768065e-19,-2.578703764879269e-19,0.0014285714132711291,-0.0009523809421807528,-0.00021978022414259613,-5.421010862427522e-19,-1.0570971181733668e-18,0.00014652014942839742,9.486769009248164e-20,-5.505714157152952e-21,4.404571325722362e-20,3.049318610115481e-20,0.0030612244736403227,-0.0020408162381500006,-3.083199928005653e-19,-0.0012244897661730647,6.629716641799328e-19,9.486769009248164e-20,0.0008163265301845968,-1.3550092466258029e-20,6.776263578034403e-20,-1.3552527156068805e-19,0.00037202381645329297,2.0735848898479967e-19,-0.00018601190822664648,6.776263578034403e-21,-4.0657581468206416e-20,-5.505714157152952e-21,-1.3550092466258029e-20,1.430860811524326e-05,5.16367901283011e-21,-6.793832684218702e-22,0.0010204081190750003,-9.215718466126788e-19,-0.00015698587230872363,-0.0004081632650922984,1.312857382768065e-19,4.404571325722362e-20,6.776263578034403e-20,5.16367901283011e-21,6.27943518338725e-05,-8.809142651444724e-20,0.0015943878097459674,8.673617379884035e-19,1.6263032587282567e-19,-0.00239158165641129,-2.578703764879269e-19,3.049318610115481e-20,-1.3552527156068805e-19,-6.793832684218702e-22,-8.809142651444724e-20,0.00047831633128225803,4.0,14.0,7.0,0.07286564260721207,-0.025561224669218063,-0.009298468939960003,-0.016709184274077415,0.0025510203558951616,0.0012244897661730647,0.002295918297022581,0.0003188775444868952,0.0007653061184100807,0.0010629252064973116,-0.025561224669218063,0.03489796072244644,0.0012244897661730647,0.002295918297022581,-0.0076530613005161285,-0.0008163265301845968,-0.0015306122368201613,-3.3373098121819433e-19,-1.6805133673525319e-18,-5.908901840045999e-18,-0.009298468939960003,0.0012244897661730647,0.00286548282019794,0.0007653061184100807,1.2637731573034161e-18,-0.00018838304094970226,-1.260385025514399e-18,-0.0001594387722434476,-0.00011773940059356391,-1.8973538018496328e-18,-0.016709184274077415,0.002295918297022581,0.0007653061184100807,0.011096938513219357,-4.553649124439119e-18,-2.656295322589486e-18,-0.0007653061184100807,-5.759824041329242e-19,-0.00025510202976875007,-0.0012755101779475808,0.0025510203558951616,-0.0076530613005161285,1.2637731573034161e-18,-4.553649124439119e-18,0.0025510203558951616,-1.1562139316749568e-18,-9.92219378176878e-19,-1.3552527156068805e-20,1.6208357241262518e-19,7.778424943391132e-19,0.0012244897661730647,-0.0008163265301845968,-0.00018838304094970226,-2.656295322589486e-18,-1.1562139316749568e-18,0.000125588703667745,8.131516293641283e-20,2.1525918182097774e-20,1.0164395367051604e-19,2.812149384884277e-19,0.002295918297022581,-0.0015306122368201613,-1.260385025514399e-18,-0.0007653061184100807,-9.92219378176878e-19,8.131516293641283e-20,0.0005102040595375001,5.497241371987966e-20,1.4907779871675686e-19,4.2012834183813297e-19,0.0003188775444868952,-3.3373098121819433e-19,-0.0001594387722434476,-5.759824041329242e-19,-1.3552527156068805e-20,2.1525918182097774e-20,5.497241371987966e-20,1.2264521501492709e-05,1.5834899411861605e-20,5.800238276600993e-20,0.0007653061184100807,-1.6805133673525319e-18,-0.00011773940059356391,-0.00025510202976875007,1.6208357241262518e-19,1.0164395367051604e-19,1.4907779871675686e-19,1.5834899411861605e-20,3.924646807718091e-05,1.7618285302889447e-19,0.0010629252064973116,-5.908901840045999e-18,-1.8973538018496328e-18,-0.0012755101779475808,7.778424943391132e-19,2.812149384884277e-19,4.2012834183813297e-19,5.800238276600993e-20,1.7618285302889447e-19,0.00021258502965793014,4.0,14.0,8.0,0.06531994044780731,-0.02258928492665291,-0.008210565894842148,-0.01324404776096344,0.0022321429569274187,0.0010714285308495164,0.0017857142956927419,0.00027901786961592734,0.0005952381179668009,0.0007440476329065859,-0.02258928492665291,0.030684523284435272,0.0010714285308495164,0.0017857142956927419,-0.0066964286379516125,-0.0007142857066355646,-0.0011904762359336019,-5.082197683525802e-19,-1.2197274440461925e-18,-1.951563910473908e-18,-0.008210565894842148,0.0010714285308495164,0.002518744207918644,0.0005952381179668009,-5.339695699491109e-18,-0.00016483516083098948,9.452887691357992e-19,-0.00013950893480796367,-9.157509339274839e-05,3.3881317890172014e-19,-0.01324404776096344,0.0017857142956927419,0.0005952381179668009,0.0075042517855763435,-1.2522535092207576e-17,1.1655173354219173e-18,-0.0005102040595375001,-1.3552527156068805e-19,-0.0001700680295471102,-0.0007440476329065859,0.0022321429569274187,-0.0066964286379516125,-5.339695699491109e-18,-1.2522535092207576e-17,0.0022321429569274187,4.0316149745678083e-19,5.418961005472039e-19,1.6517142471458857e-19,5.320296969958245e-19,1.117110725975314e-18,0.0010714285308495164,-0.0007142857066355646,-0.00016483516083098948,1.1655173354219173e-18,4.0316149745678083e-19,0.00010989011207129806,-2.812149384884277e-19,5.475328598235483e-21,1.6940658945086007e-21,-9.486769009248164e-20,0.0017857142956927419,-0.0011904762359336019,9.452887691357992e-19,-0.0005102040595375001,5.418961005472039e-19,-2.812149384884277e-19,0.0003401360590942204,-8.258794994547472e-21,-1.2536087619363645e-19,-2.676624113323589e-19,0.00027901786961592734,-5.082197683525802e-19,-0.00013950893480796367,-1.3552527156068805e-19,1.6517142471458857e-19,5.475328598235483e-21,-8.258794994547472e-21,1.073145631380612e-05,1.2513829029185153e-20,8.306375651227744e-21,0.0005952381179668009,-1.2197274440461925e-18,-9.157509339274839e-05,-0.0001700680295471102,5.320296969958245e-19,1.6940658945086007e-21,-1.2536087619363645e-19,1.2513829029185153e-20,2.616431265778374e-05,-9.571472303973594e-20,0.0007440476329065859,-1.951563910473908e-18,3.3881317890172014e-19,-0.0007440476329065859,1.117110725975314e-18,-9.486769009248164e-20,-2.676624113323589e-19,8.306375651227744e-21,-9.571472303973594e-20,0.00010629251482896507,4.0,14.0,9.0,0.059197328984737396,-0.02023809589445591,-0.0073511903174221516,-0.010757575742900372,0.0019841270986944437,0.0009523809421807528,0.0014285714132711291,0.00024801588733680546,0.0004761904710903764,0.0005411255406215787,-0.02023809589445591,0.02738095261156559,0.0009523809421807528,0.0014285714132711291,-0.0059523810632526875,-0.0006349206087179482,-0.0009523809421807528,-7.623296525288703e-20,-8.809142651444724e-20,-3.2956527380398314e-19,-0.0073511903174221516,0.0009523809421807528,0.0022470238618552685,0.0004761904710903764,0.0,-0.00014652014942839742,-8.458842001786173e-20,-0.00012400794366840273,-7.326007471419871e-05,-1.0140469814068361e-19,-0.010757575742900372,0.0014285714132711291,0.0004761904710903764,0.005317717790603638,0.0,-1.2302050799480796e-21,-0.0003571428533177823,-3.3881317890172014e-21,-0.0001190476177725941,-0.00046382189611904323,0.0019841270986944437,-0.0059523810632526875,0.0,0.0,0.0019841270986944437,0.0,0.0,0.0,0.0,-0.0,0.0009523809421807528,-0.0006349206087179482,-0.00014652014942839742,-1.2302050799480796e-21,0.0,9.76800947682932e-05,7.52316384526264e-37,1.1858461261560205e-20,0.0,1.42926156575701e-36,0.0014285714132711291,-0.0009523809421807528,-8.458842001786173e-20,-0.0003571428533177823,0.0,7.52316384526264e-37,0.0002380952355451882,7.52316384526264e-37,2.1147105004465433e-20,8.239131845099579e-20,0.00024801588733680546,-7.623296525288703e-20,-0.00012400794366840273,-3.3881317890172014e-21,0.0,1.1858461261560205e-20,7.52316384526264e-37,9.53907237999374e-06,8.470329472543003e-22,2.4338691158883906e-37,0.0004761904710903764,-8.809142651444724e-20,-7.326007471419871e-05,-0.0001190476177725941,0.0,0.0,2.1147105004465433e-20,8.470329472543003e-22,1.8315018678549677e-05,2.5351174535170903e-20,0.0005411255406215787,-3.2956527380398314e-19,-1.0140469814068361e-19,-0.00046382189611904323,-0.0,1.42926156575701e-36,8.239131845099579e-20,2.4338691158883906e-37,2.5351174535170903e-20,5.7977737014880404e-05,4.0,14.0,10.0,0.054128248244524,-0.018331168219447136,-0.006655032280832529,-0.008912337943911552,0.0017857142956927419,0.0008571428479626775,0.0011688311351463199,0.00022321428696159273,0.00038961038808338344,0.000405844155466184,-0.018331168219447136,0.024720778688788414,0.0008571428479626775,0.0011688311351463199,-0.0053571430034935474,-0.0005714285653084517,-0.0007792207761667669,6.437450399132683e-20,6.776263578034403e-21,-0.0,-0.006655032280832529,0.0008571428479626775,0.0020283153280615807,0.00038961038808338344,0.0,-0.00013186813157517463,0.0,-0.00011160714348079637,-5.994005914544687e-05,-0.0,-0.008912337943911552,0.0011688311351463199,0.00038961038808338344,0.003908279351890087,0.0,5.847058637976055e-21,-0.0002597402490209788,-3.3881317890172014e-21,-8.658008300699294e-05,-0.0003043831093236804,0.0017857142956927419,-0.0053571430034935474,0.0,0.0,0.0017857142956927419,0.0,0.0,0.0,0.0,-0.0,0.0008571428479626775,-0.0005714285653084517,-0.00013186813157517463,5.847058637976055e-21,0.0,8.791208529146388e-05,0.0,-8.470329472543003e-21,-8.470329472543003e-22,-0.0,0.0011688311351463199,-0.0007792207761667669,0.0,-0.0002597402490209788,0.0,0.0,0.00017316016601398587,0.0,0.0,-0.0,0.00022321428696159273,6.437450399132683e-20,-0.00011160714348079637,-3.3881317890172014e-21,0.0,-8.470329472543003e-21,0.0,8.585165232943837e-06,0.0,-0.0,0.00038961038808338344,6.776263578034403e-21,-5.994005914544687e-05,-8.658008300699294e-05,0.0,-8.470329472543003e-22,0.0,0.0,1.3320013749762438e-05,-0.0,0.000405844155466184,-0.0,-0.0,-0.0003043831093236804,-0.0,-0.0,-0.0,-0.0,-0.0,3.382034628884867e-05,4.0,14.0,11.0,0.04986139014363289,-0.016753247007727623,-0.006079545244574547,-0.007504994980990887,0.001623376621864736,0.0007792207761667669,0.0009740259847603738,0.000202922077733092,0.0003246753185521811,0.00031218782532960176,-0.016753247007727623,0.022532466799020767,0.0007792207761667669,0.0009740259847603738,-0.004870129749178886,-0.0005194804980419576,-0.0006493506371043622,-7.047314121155779e-19,-5.014435047745458e-19,-1.1671382992297915e-18,-0.006079545244574547,0.0007792207761667669,0.001848464016802609,0.0003246753185521811,-3.7107971615909676e-18,-0.00011988011829089373,-4.9597434166071e-19,-0.000101461038866546,-4.995004928787239e-05,-3.1991985672312614e-19,-0.007504994980990887,0.0009740259847603738,0.0003246753185521811,0.0029578753747045994,-4.74735786669648e-18,1.4746972325524326e-21,-0.00019480519404169172,-3.5575383784680614e-19,-6.49350622552447e-05,-0.00020812520233448595,0.001623376621864736,-0.004870129749178886,-3.7107971615909676e-18,-4.74735786669648e-18,0.001623376621864736,2.3599638652018047e-19,3.8349414101999034e-19,2.0275988176688768e-19,1.441848056736555e-19,3.234915450599477e-19,0.0007792207761667669,-0.0005194804980419576,-0.00011988011829089373,1.4746972325524326e-21,2.3599638652018047e-19,7.992007886059582e-05,1.8055593228630336e-35,-8.470329472543003e-21,-4.235164736271502e-22,2.0212204928008385e-35,0.0009740259847603738,-0.0006493506371043622,-4.9597434166071e-19,-0.00019480519404169172,3.8349414101999034e-19,1.8055593228630336e-35,0.0001298701245104894,3.244158095345506e-20,1.4846753006397452e-20,3.9332732163754834e-20,0.000202922077733092,-7.047314121155779e-19,-0.000101461038866546,-3.5575383784680614e-19,2.0275988176688768e-19,-8.470329472543003e-21,3.244158095345506e-20,7.804695087543223e-06,8.893845946170154e-21,2.488396612309476e-20,0.0003246753185521811,-5.014435047745458e-19,-4.995004928787239e-05,-6.49350622552447e-05,1.441848056736555e-19,-4.235164736271502e-22,1.4846753006397452e-20,8.893845946170154e-21,9.990009857574478e-06,-7.143375562926939e-22,0.00031218782532960176,-1.1671382992297915e-18,-3.1991985672312614e-19,-0.00020812520233448595,3.234915450599477e-19,2.0212204928008385e-35,3.9332732163754834e-20,2.488396612309476e-20,-7.143375562926939e-22,2.0812520233448595e-05,4.0,14.0,12.0,0.04621974751353264,-0.01542582456022501,-0.005595810245722532,-0.006406985688954592,0.0014880952658131719,0.0007142857066355646,0.0008241758332587779,0.00018601190822664648,0.00027472528745420277,0.0002452904300298542,-0.01542582456022501,0.020700549706816673,0.0007142857066355646,0.0008241758332587779,-0.004464285913854837,-0.0004761904710903764,-0.0005494505749084055,3.7269449679189215e-20,-1.3552527156068805e-20,1.7618285302889447e-19,-0.005595810245722532,0.0007142857066355646,0.0016979475039988756,0.00027472528745420277,-3.965082252960754e-19,-0.00010989011207129806,-5.082197683525802e-20,-9.300595411332324e-05,-4.226542660035193e-05,-1.0164395367051604e-20,-0.006406985688954592,0.0008241758332587779,0.00027472528745420277,0.002293242374435067,-4.575095125988051e-19,-4.793656406351992e-20,-0.00014985015150159597,-8.416906549863988e-22,-4.995004928787239e-05,-0.0001471742580179125,0.0014880952658131719,-0.004464285913854837,-3.965082252960754e-19,-4.575095125988051e-19,0.0014880952658131719,2.64338825480515e-19,3.0500633311607204e-19,-2.407412430484045e-35,5.332008367497725e-36,-9.62964972193618e-35,0.0007142857066355646,-0.0004761904710903764,-0.00010989011207129806,-4.793656406351992e-20,2.64338825480515e-19,7.326007471419871e-05,2.960215748507035e-20,-5.929230630780102e-21,1.0441258938083568e-21,-2.5684773386403146e-22,0.0008241758332587779,-0.0005494505749084055,-5.082197683525802e-20,-0.00014985015150159597,3.0500633311607204e-19,2.960215748507035e-20,9.990009857574478e-05,0.0,8.470329472543003e-22,-3.218725199566341e-20,0.00018601190822664648,3.7269449679189215e-20,-9.300595411332324e-05,-8.416906549863988e-22,-2.407412430484045e-35,-5.929230630780102e-21,0.0,7.15430405762163e-06,4.235164736271502e-22,-2.117582368135751e-22,0.00027472528745420277,-1.3552527156068805e-20,-4.226542660035193e-05,-4.995004928787239e-05,5.332008367497725e-36,1.0441258938083568e-21,8.470329472543003e-22,4.235164736271502e-22,7.68462268752046e-06,1.2705494208814505e-21,0.0002452904300298542,1.7618285302889447e-19,-1.0164395367051604e-20,-0.0001471742580179125,-9.62964972193618e-35,-2.5684773386403146e-22,-3.218725199566341e-20,-2.117582368135751e-22,1.2705494208814505e-21,1.3379477422859054e-05,4.0,14.0,13.0,0.04307496175169945,-0.014293563552200794,-0.00518347742035985,-0.005533752031624317,0.0013736264081671834,0.0006593406433239579,0.0007064364035613835,0.00017170330102089792,0.00023547880118712783,0.00019623234402388334,-0.014293563552200794,0.01914442703127861,0.0006593406433239579,0.0007064364035613835,-0.004120879340916872,-0.00043956044828519225,-0.00047095760237425566,9.994988777600744e-20,-1.3552527156068805e-20,2.439454888092385e-19,-0.00518347742035985,0.0006593406433239579,0.001570122898556292,0.00023547880118712783,-4.44300472192099e-19,-0.00010143702093046159,2.879912020664621e-19,-8.585165051044896e-05,-3.6227509554009885e-05,1.2027867851011065e-19,-0.005533752031624317,0.0007064364035613835,0.00023547880118712783,0.0018142571207135916,-7.657587039088147e-20,2.890396534928731e-19,-0.00011773940059356391,1.163054796120127e-20,-3.924646807718091e-05,-0.00010703581938287243,0.0013736264081671834,-0.004120879340916872,-4.44300472192099e-19,-7.657587039088147e-20,0.0013736264081671834,-4.5088338876429763e-20,-9.154977818265195e-20,1.9062895819754502e-20,2.681374294926403e-20,-3.9611211725817474e-21,0.0006593406433239579,-0.00043956044828519225,-0.00010143702093046159,2.890396534928731e-19,-4.5088338876429763e-20,6.762468547094613e-05,-3.8451251667631675e-20,-1.4399560103323106e-20,-6.676095156249142e-21,-1.88317069164816e-20,0.0007064364035613835,-0.00047095760237425566,2.879912020664621e-19,-0.00011773940059356391,-9.154977818265195e-20,-3.8451251667631675e-20,7.849293615436181e-05,-1.6305384234645282e-20,-9.740878893424454e-21,-2.456395547037471e-20,0.00017170330102089792,9.994988777600744e-20,-8.585165051044896e-05,1.163054796120127e-20,1.9062895819754502e-20,-1.4399560103323106e-20,-1.6305384234645282e-20,6.603972906304989e-06,1.9058241313221758e-21,-5.293955920339377e-22,0.00023547880118712783,-1.3552527156068805e-20,-3.6227509554009885e-05,-3.924646807718091e-05,2.681374294926403e-20,-6.676095156249142e-21,-9.740878893424454e-21,1.9058241313221758e-21,6.037917955836747e-06,-1.5670109524204556e-20,0.00019623234402388334,2.439454888092385e-19,1.2027867851011065e-19,-0.00010703581938287243,-3.9611211725817474e-21,-1.88317069164816e-20,-2.456395547037471e-20,-5.293955920339377e-22,-1.5670109524204556e-20,8.91965191840427e-06,4.0,14.0,14.0,0.040331631898880005,-0.013316326774656773,-0.004827806260436773,-0.004827806260436773,0.0012755101779475808,0.0006122448830865324,0.0006122448830865324,0.0001594387722434476,0.0002040816325461492,0.0001594387722434476,-0.013316326774656773,0.017806122079491615,0.0006122448830865324,0.0006122448830865324,-0.0038265306502580643,-0.0004081632650922984,-0.0004081632650922984,-1.6940658945086007e-20,9.994988777600744e-20,-1.3552527156068805e-20,-0.004827806260436773,0.0006122448830865324,0.0014602139126509428,0.0002040816325461492,8.237672000565393e-19,-9.419152047485113e-05,-1.4568966692773966e-19,-7.97193861217238e-05,-3.139717591693625e-05,-4.743384504624082e-20,-0.004827806260436773,0.0006122448830865324,0.0002040816325461492,0.0014602139126509428,8.237672000565393e-19,-1.2742491154180646e-19,-9.419152047485113e-05,2.414339875237685e-20,-3.139717591693625e-05,-7.97193861217238e-05,0.0012755101779475808,-0.0038265306502580643,8.237672000565393e-19,8.237672000565393e-19,0.0012755101779475808,-1.9591542748710594e-19,-1.9591542748710594e-19,-1.7701259596264185e-20,-3.1372078426689475e-20,-1.7701259596264185e-20,0.0006122448830865324,-0.0004081632650922984,-9.419152047485113e-05,-1.2742491154180646e-19,-1.9591542748710594e-19,6.27943518338725e-05,-2.507482613448626e-22,2.541098841762901e-21,8.340362555815052e-22,1.2101410831374278e-20,0.0006122448830865324,-0.0004081632650922984,-1.4568966692773966e-19,-9.419152047485113e-05,-1.9591542748710594e-19,-2.507482613448626e-22,6.27943518338725e-05,1.207021949837378e-20,3.8116482626443515e-21,2.541098841762901e-21,0.0001594387722434476,-1.6940658945086007e-20,-7.97193861217238e-05,2.414339875237685e-20,-1.7701259596264185e-20,2.541098841762901e-21,1.207021949837378e-20,6.1322607507463545e-06,-2.541098841762901e-21,-1.164670302474663e-21,0.0002040816325461492,9.994988777600744e-20,-3.139717591693625e-05,-3.139717591693625e-05,-3.1372078426689475e-20,8.340362555815052e-22,3.8116482626443515e-21,-2.541098841762901e-21,4.830334546568338e-06,8.470329472543003e-21,0.0001594387722434476,-1.3552527156068805e-20,-4.743384504624082e-20,-7.97193861217238e-05,-1.7701259596264185e-20,1.2101410831374278e-20,2.541098841762901e-21,-1.164670302474663e-21,8.470329472543003e-21,6.1322607507463545e-06,4.0,14.0,15.0,0.0379173681139946,-0.01246428582817316,-0.004517856985330582,-0.004248949699103832,0.0011904762359336019,0.0005714285653084517,0.0005357142654247582,0.00014880952949170023,0.00017857142665889114,0.00013130252773407847,-0.01246428582817316,0.01664285734295845,0.0005714285653084517,0.0005357142654247582,-0.0035714285913854837,-0.0003809523768723011,-0.0003571428533177823,-1.5924219408380846e-19,-3.2187251995663413e-19,-2.507217523872729e-19,-0.004517856985330582,0.0005714285653084517,0.0013646978186443448,0.00017857142665889114,-8.269781600981053e-19,-8.791208529146388e-05,-4.2521053952165877e-19,-7.440476474585012e-05,-2.7472528017824516e-05,-8.639736061993863e-20,-0.004248949699103832,0.0005357142654247582,0.00017857142665889114,0.0011928040767088532,-1.0354624160471955e-18,4.1312007348532305e-20,-7.653061038581654e-05,-1.0546006741599847e-19,-2.551020406826865e-05,-6.0601163568207994e-05,0.0011904762359336019,-0.0035714285913854837,-8.269781600981053e-19,-1.0354624160471955e-18,0.0011904762359336019,1.9191966691468319e-19,2.0672374418693886e-19,1.6521176592532187e-20,3.355069444556942e-20,2.915501789637142e-20,0.0005714285653084517,-0.0003809523768723011,-8.791208529146388e-05,4.1312007348532305e-20,1.9191966691468319e-19,5.860805686097592e-05,8.254960398485178e-21,-4.235164736271502e-21,3.1398768330038165e-21,-7.839703614080054e-21,0.0005357142654247582,-0.0003571428533177823,-4.2521053952165877e-19,-7.653061038581654e-05,2.0672374418693886e-19,8.254960398485178e-21,5.10204081365373e-05,1.6199505116238494e-20,2.4352197233561135e-20,2.710505431213761e-20,0.00014880952949170023,-1.5924219408380846e-19,-7.440476474585012e-05,-1.0546006741599847e-19,1.6521176592532187e-20,-4.235164736271502e-21,1.6199505116238494e-20,5.723443337046774e-06,6.776263578034403e-21,2.117582368135751e-21,0.00017857142665889114,-3.2187251995663413e-19,-2.7472528017824516e-05,-2.551020406826865e-05,3.355069444556942e-20,3.1398768330038165e-21,2.4352197233561135e-20,6.776263578034403e-21,3.924646989617031e-06,8.893845946170154e-21,0.00013130252773407847,-2.507217523872729e-19,-8.639736061993863e-20,-6.0601163568207994e-05,2.915501789637142e-20,-7.839703614080054e-21,2.710505431213761e-20,2.117582368135751e-21,8.893845946170154e-21,4.328654540586285e-06,4.0,14.0,16.0,0.03577621653676033,-0.011714810505509377,-0.004245338961482048,-0.0037683823611587286,0.0011160714784637094,0.0005357142654247582,0.0004726890765596181,0.00013950893480796367,0.00015756303037051111,0.00010941876826109365,-0.011714810505509377,0.015622373670339584,0.0005357142654247582,0.0004726890765596181,-0.0033482143189758062,-0.0003571428533177823,-0.00031512606074102223,-3.7269449679189215e-20,5.082197683525802e-21,3.3881317890172014e-21,-0.004245338961482048,0.0005357142654247582,0.0012809191830456257,0.00015756303037051111,0.0,-8.241758041549474e-05,5.082197683525802e-21,-6.975446740398183e-05,-2.424046579108108e-05,4.235164736271502e-21,-0.0037683823611587286,0.0004726890765596181,0.00015756303037051111,0.00098701985552907,-0.0,-0.0,-6.302521069301292e-05,-4.899783961670294e-22,-2.100840356433764e-05,-4.689375782618299e-05,0.0011160714784637094,-0.0033482143189758062,0.0,-0.0,0.0011160714784637094,0.0,0.0,0.0,0.0,0.0,0.0005357142654247582,-0.0003571428533177823,-8.241758041549474e-05,-0.0,0.0,5.494505603564903e-05,-1.0587911840678754e-22,5.929230630780102e-21,0.0,-4.88673677027779e-23,0.0004726890765596181,-0.00031512606074102223,5.082197683525802e-21,-6.302521069301292e-05,0.0,-1.0587911840678754e-22,4.201680712867528e-05,0.0,-6.352747104407253e-22,-4.235164736271502e-22,0.00013950893480796367,-3.7269449679189215e-20,-6.975446740398183e-05,-4.899783961670294e-22,0.0,5.929230630780102e-21,0.0,5.36572815690306e-06,-2.117582368135751e-22,5.293955920339377e-23,0.00015756303037051111,5.082197683525802e-21,-2.424046579108108e-05,-2.100840356433764e-05,0.0,0.0,-6.352747104407253e-22,-2.117582368135751e-22,3.232061999369762e-06,-4.235164736271502e-22,0.00010941876826109365,3.3881317890172014e-21,4.235164736271502e-21,-4.689375782618299e-05,0.0,-4.88673677027779e-23,-4.235164736271502e-22,5.293955920339377e-23,-4.235164736271502e-22,3.1262504762707977e-06,4.0,15.0,3.0,0.12851715087890625,-0.050833333283662796,-0.017536764964461327,-0.06187500059604645,0.0055555556900799274,0.0024999999441206455,0.009999999776482582,0.0006127451197244227,0.0031250000465661287,0.008333333767950535,-0.050833333283662796,0.07277777791023254,0.0024999999441206455,0.009999999776482582,-0.01666666753590107,-0.0016666667070239782,-0.006666666828095913,-4.12127295191546e-20,-9.75781955236954e-19,3.5128150388530344e-17,-0.017536764964461327,0.0024999999441206455,0.005239037796854973,0.0031250000465661287,-1.221699442626519e-18,-0.0003571428533177823,-1.6263032587282567e-18,-0.00028280544211156666,-0.00044642857392318547,1.951563910473908e-18,-0.06187500059604645,0.009999999776482582,0.0031250000465661287,0.14520832896232605,1.1167212066248629e-17,6.9046597934858025e-18,-0.009999999776482582,-9.354689978914525e-19,-0.0031250000465661287,-0.05000000074505806,0.0055555556900799274,-0.01666666753590107,-1.221699442626519e-18,1.1167212066248629e-17,0.0055555556900799274,-1.6263032587282567e-19,4.932107312341704e-19,4.0657581468206416e-20,2.298755860294119e-19,-6.437616662435806e-18,0.0024999999441206455,-0.0016666667070239782,-0.0003571428533177823,6.9046597934858025e-18,-1.6263032587282567e-19,0.0002380952355451882,-7.394189726090477e-19,-2.0328790734103208e-20,-1.5793038902987593e-19,-2.134420249889727e-18,0.009999999776482582,-0.006666666828095913,-1.6263032587282567e-18,-0.009999999776482582,4.932107312341704e-19,-7.394189726090477e-19,0.006666666828095913,9.510127814264837e-20,1.2197274440461925e-18,-8.673617379884035e-19,0.0006127451197244227,-4.12127295191546e-20,-0.00028280544211156666,-9.354689978914525e-19,4.0657581468206416e-20,-2.0328790734103208e-20,9.510127814264837e-20,2.0200388462399133e-05,3.8796906534928004e-20,2.52039115060946e-19,0.0031250000465661287,-9.75781955236954e-19,-0.00044642857392318547,-0.0031250000465661287,2.298755860294119e-19,-1.5793038902987593e-19,1.2197274440461925e-18,3.8796906534928004e-20,0.00044642857392318547,-2.168404344971009e-18,0.008333333767950535,3.5128150388530344e-17,1.951563910473908e-18,-0.05000000074505806,-6.437616662435806e-18,-2.134420249889727e-18,-8.673617379884035e-19,2.52039115060946e-19,-2.168404344971009e-18,0.02500000037252903,4.0,15.0,4.0,0.1052524521946907,-0.03962500020861626,-0.013621323741972446,-0.03962500020861626,0.004166666883975267,0.0018749999580904841,0.006000000052154064,0.0004595588252414018,0.0018749999580904841,0.004166666883975267,-0.03962500020861626,0.05558333173394203,0.0018749999580904841,0.006000000052154064,-0.012500000186264515,-0.0012499999720603228,-0.004000000189989805,1.5575673932584557e-19,-1.0842021724855044e-19,1.7564075194265172e-17,-0.013621323741972446,0.0018749999580904841,0.003996242769062519,0.0018749999580904841,2.1875905924840232e-18,-0.0002678571327123791,-1.2468324983583301e-18,-0.00021210407430771738,-0.0002678571327123791,3.2526065174565133e-19,-0.03962500020861626,0.006000000052154064,0.0018749999580904841,0.05558333173394203,1.852441699618821e-17,4.072799108194693e-18,-0.004000000189989805,-4.400726486837639e-19,-0.0012499999720603228,-0.012500000186264515,0.004166666883975267,-0.012500000186264515,2.1875905924840232e-18,1.852441699618821e-17,0.004166666883975267,2.439454888092385e-19,8.71809281346948e-19,-1.2874900798265365e-19,-3.1893483970994034e-19,-5.294651579234534e-18,0.0018749999580904841,-0.0012499999720603228,-0.0002678571327123791,4.072799108194693e-18,2.439454888092385e-19,0.00017857142665889114,-2.8811209968286557e-19,1.8634724839594607e-20,-8.292304695085106e-21,-1.1495866640047585e-18,0.006000000052154064,-0.004000000189989805,-1.2468324983583301e-18,-0.004000000189989805,8.71809281346948e-19,-2.8811209968286557e-19,0.0026666666381061077,3.977708648023493e-20,6.2341624917916505e-19,5.204170427930421e-18,0.0004595588252414018,1.5575673932584557e-19,-0.00021210407430771738,-4.400726486837639e-19,-1.2874900798265365e-19,1.8634724839594607e-20,3.977708648023493e-20,1.5150290892051999e-05,4.6439024650326556e-20,3.632773686354027e-21,0.0018749999580904841,-1.0842021724855044e-19,-0.0002678571327123791,-0.0012499999720603228,-3.1893483970994034e-19,-8.292304695085106e-21,6.2341624917916505e-19,4.6439024650326556e-20,0.00017857142665889114,9.75781955236954e-19,0.004166666883975267,1.7564075194265172e-17,3.2526065174565133e-19,-0.012500000186264515,-5.294651579234534e-18,-1.1495866640047585e-18,5.204170427930421e-18,3.632773686354027e-21,9.75781955236954e-19,0.004166666883975267,4.0,15.0,5.0,0.0892471969127655,-0.032499998807907104,-0.011147058568894863,-0.02760714292526245,0.0033333334140479565,0.001500000013038516,0.004000000189989805,0.0003676470660138875,0.0012499999720603228,0.0023809524718672037,-0.032499998807907104,0.04500000178813934,0.001500000013038516,0.004000000189989805,-0.009999999776482582,-0.0010000000474974513,-0.0026666666381061077,-3.084151702697972e-19,-1.2468324983583301e-18,9.75781955236954e-19,-0.011147058568894863,0.001500000013038516,0.0032327084336429834,0.0012499999720603228,0.0,-0.00021428571199066937,-1.7618285302889447e-18,-0.00016968326235655695,-0.00017857142665889114,-2.710505431213761e-18,-0.02760714292526245,0.004000000189989805,0.0012499999720603228,0.028089284896850586,8.239936510889834e-18,-2.3852447794681098e-18,-0.0020000000949949026,-4.45539330255762e-19,-0.0006249999860301614,-0.004761904943734407,0.0033333334140479565,-0.009999999776482582,0.0,8.239936510889834e-18,0.0033333334140479565,1.4907779871675686e-19,1.9246387679450007e-18,-1.6940658945086007e-20,-1.3115482402017292e-19,-2.4694559017290707e-18,0.001500000013038516,-0.0010000000474974513,-0.00021428571199066937,-2.3852447794681098e-18,1.4907779871675686e-19,0.0001428571413271129,1.4907779871675686e-19,2.9857911390714087e-20,1.3213713977167085e-19,2.846030702774449e-19,0.004000000189989805,-0.0026666666381061077,-1.7618285302889447e-18,-0.0020000000949949026,1.9246387679450007e-18,1.4907779871675686e-19,0.0013333333190530539,5.900383999387023e-20,3.3881317890172014e-19,2.439454888092385e-18,0.0003676470660138875,-3.084151702697972e-19,-0.00016968326235655695,-4.45539330255762e-19,-1.6940658945086007e-20,2.9857911390714087e-20,5.900383999387023e-20,1.212023289554054e-05,1.137843154998949e-20,6.704854626716348e-20,0.0012499999720603228,-1.2468324983583301e-18,-0.00017857142665889114,-0.0006249999860301614,-1.3115482402017292e-19,1.3213713977167085e-19,3.3881317890172014e-19,1.137843154998949e-20,8.928571332944557e-05,6.301925127571995e-19,0.0023809524718672037,9.75781955236954e-19,-2.710505431213761e-18,-0.004761904943734407,-2.4694559017290707e-18,2.846030702774449e-19,2.439454888092385e-18,6.704854626716348e-20,6.301925127571995e-19,0.0011904762359336019,4.0,15.0,6.0,0.07751750946044922,-0.027559524402022362,-0.009438024833798409,-0.020357143133878708,0.0027777778450399637,0.0012499999720603228,0.0028571428265422583,0.00030637255986221135,0.0008928571478463709,0.0014880952658131719,-0.027559524402022362,0.03781745955348015,0.0012499999720603228,0.0028571428265422583,-0.008333333767950535,-0.0008333333535119891,-0.0019047618843615055,-1.6099745841894892e-20,-9.75781955236954e-19,-5.9631119486702744e-18,-0.009438024833798409,0.0012499999720603228,0.0027151822578161955,0.0008928571478463709,-9.961107459710572e-19,-0.00017857142665889114,1.3891340334970526e-19,-0.00014140272105578333,-0.00012755101488437504,1.3552527156068805e-19,-0.020357143133878708,0.0028571428265422583,0.0008928571478463709,0.016327381134033203,-1.0191500421363742e-17,8.131516293641283e-19,-0.0011428571306169033,6.776263578034403e-21,-0.0003571428533177823,-0.0022321429569274187,0.0027777778450399637,-0.008333333767950535,-9.961107459710572e-19,-1.0191500421363742e-17,0.0027777778450399637,-1.2874900798265365e-19,-2.0740888237868005e-19,1.1011428314305904e-20,3.1840125651605535e-19,1.6078436893833701e-18,0.0012499999720603228,-0.0008333333535119891,-0.00017857142665889114,8.131516293641283e-19,-1.2874900798265365e-19,0.0001190476177725941,-2.168404344971009e-19,-4.0234064994579266e-21,-1.3552527156068805e-20,-6.776263578034403e-20,0.0028571428265422583,-0.0019047618843615055,1.3891340334970526e-19,-0.0011428571306169033,-2.0740888237868005e-19,-2.168404344971009e-19,0.0007619047537446022,4.34495599892301e-21,5.421010862427522e-20,6.911788849595091e-19,0.00030637255986221135,-1.6099745841894892e-20,-0.00014140272105578333,6.776263578034403e-21,1.1011428314305904e-20,-4.0234064994579266e-21,4.34495599892301e-21,1.0100194231199566e-05,3.4463163518507776e-21,-8.043953409688863e-21,0.0008928571478463709,-9.75781955236954e-19,-0.00012755101488437504,-0.0003571428533177823,3.1840125651605535e-19,-1.3552527156068805e-20,5.421010862427522e-20,3.4463163518507776e-21,5.10204081365373e-05,5.421010862427522e-20,0.0014880952658131719,-5.9631119486702744e-18,1.3552527156068805e-19,-0.0022321429569274187,1.6078436893833701e-18,-6.776263578034403e-20,6.911788849595091e-19,-8.043953409688863e-21,5.421010862427522e-20,0.00044642857392318547,4.0,15.0,7.0,0.06853612512350082,-0.023928571492433548,-0.008185398764908314,-0.015639880672097206,0.0023809524718672037,0.0010714285308495164,0.002142857061699033,0.00026260505546815693,0.0006696428754366934,0.0009920635493472219,-0.023928571492433548,0.03261904790997505,0.0010714285308495164,0.002142857061699033,-0.0071428571827709675,-0.0007142857066355646,-0.0014285714132711291,1.62977935600554e-19,7.047314121155779e-19,3.7947076036992655e-19,-0.008185398764908314,0.0010714285308495164,0.0023409652058035135,0.0006696428754366934,3.784543208332214e-18,-0.0001530612207716331,-7.894347068410079e-19,-0.00012120232713641599,-9.566326480126008e-05,-1.0299920638612292e-18,-0.015639880672097206,0.002142857061699033,0.0006696428754366934,0.010372024029493332,8.348356728138384e-18,-2.2497195079074217e-18,-0.0007142857066355646,-3.1848438816761693e-19,-0.00022321428696159273,-0.0011904762359336019,0.0023809524718672037,-0.0071428571827709675,3.784543208332214e-18,8.348356728138384e-18,0.0023809524718672037,-3.3881317890172014e-19,-1.6563249518802562e-18,-1.1519648082658485e-19,-4.0680964830147525e-19,-3.7295725588334845e-19,0.0010714285308495164,-0.0007142857066355646,-0.0001530612207716331,-2.2497195079074217e-18,-3.3881317890172014e-19,0.0001020408162730746,1.4230153513872246e-19,7.623296525288703e-21,6.945670167485263e-20,2.405573570202213e-19,0.002142857061699033,-0.0014285714132711291,-7.894347068410079e-19,-0.0007142857066355646,-1.6563249518802562e-18,1.4230153513872246e-19,0.0004761904710903764,3.6993549401985835e-20,2.0328790734103208e-20,-3.8624702394796095e-19,0.00026260505546815693,1.62977935600554e-19,-0.00012120232713641599,-3.1848438816761693e-19,-1.1519648082658485e-19,7.623296525288703e-21,3.6993549401985835e-20,8.65730908117257e-06,4.547549413822796e-21,3.670989753771404e-20,0.0006696428754366934,7.047314121155779e-19,-9.566326480126008e-05,-0.00022321428696159273,-4.0680964830147525e-19,6.945670167485263e-20,2.0328790734103208e-20,4.547549413822796e-21,3.188775372109376e-05,4.0657581468206416e-20,0.0009920635493472219,3.7947076036992655e-19,-1.0299920638612292e-18,-0.0011904762359336019,-3.7295725588334845e-19,2.405573570202213e-19,-3.8624702394796095e-19,3.670989753771404e-20,4.0657581468206416e-20,0.00019841270113829523,4.0,15.0,8.0,0.06143178045749664,-0.021145833656191826,-0.007227328605949879,-0.012395833618938923,0.0020833334419876337,0.0009374999790452421,0.0016666667070239782,0.0002297794126207009,0.0005208333604969084,0.0006944444612599909,-0.021145833656191826,0.028680555522441864,0.0009374999790452421,0.0016666667070239782,-0.0062500000931322575,-0.0006249999860301614,-0.0011111111380159855,1.2451384324638215e-19,-3.5236570605778894e-19,-1.328147661294743e-18,-0.007227328605949879,0.0009374999790452421,0.0020576452370733023,0.0005208333604969084,9.147955830346444e-20,-0.00013392856635618955,-1.6601845766184287e-19,-0.00010605203715385869,-7.440476474585012e-05,-2.846030702774449e-19,-0.012395833618938923,0.0016666667070239782,0.0005208333604969084,0.007013889029622078,-2.439454888092385e-18,7.589415207398531e-19,-0.0004761904710903764,4.0657581468206416e-20,-0.00014880952949170023,-0.0006944444612599909,0.0020833334419876337,-0.0062500000931322575,9.147955830346444e-20,-2.439454888092385e-18,0.0020833334419876337,3.855796200561885e-21,1.249370495272796e-18,-3.3034284942917713e-20,5.72055234927858e-20,4.532909690229671e-20,0.0009374999790452421,-0.0006249999860301614,-0.00013392856635618955,7.589415207398531e-19,3.855796200561885e-21,8.928571332944557e-05,-1.0503208545953324e-19,-4.237760580898884e-21,-1.6940658945086007e-20,-6.098637220230962e-20,0.0016666667070239782,-0.0011111111380159855,-1.6601845766184287e-19,-0.0004761904710903764,1.249370495272796e-18,-1.0503208545953324e-19,0.0003174603043589741,3.7931930069171125e-21,6.437450399132683e-20,4.573977915173222e-19,0.0002297794126207009,1.2451384324638215e-19,-0.00010605203715385869,4.0657581468206416e-20,-3.3034284942917713e-20,-4.237760580898884e-21,3.7931930069171125e-21,7.575145446025999e-06,5.687826471033793e-22,-6.142450570053067e-21,0.0005208333604969084,-3.5236570605778894e-19,-7.440476474585012e-05,-0.00014880952949170023,5.72055234927858e-20,-1.6940658945086007e-20,6.437450399132683e-20,5.687826471033793e-22,2.1258503693388775e-05,1.2112571145736495e-19,0.0006944444612599909,-1.328147661294743e-18,-2.846030702774449e-19,-0.0006944444612599909,4.532909690229671e-20,-6.098637220230962e-20,4.573977915173222e-19,-6.142450570053067e-21,1.2112571145736495e-19,9.920635056914762e-05,4.0,15.0,9.0,0.05566859617829323,-0.01894444413483143,-0.006470588035881519,-0.010068181902170181,0.0018518518190830946,0.0008333333535119891,0.0013333333190530539,0.00020424836839083582,0.00041666667675599456,0.0005050505278632045,-0.01894444413483143,0.025592593476176262,0.0008333333535119891,0.0013333333190530539,-0.0055555556900799274,-0.0005555555690079927,-0.0008888888987712562,-5.336307567702092e-20,3.3881317890172014e-21,-1.2606086366052157e-34,-0.006470588035881519,0.0008333333535119891,0.0018356316722929478,0.00041666667675599456,0.0,-0.0001190476177725941,0.0,-9.426847827853635e-05,-5.952380888629705e-05,-2.516483756190913e-19,-0.010068181902170181,0.0013333333190530539,0.00041666667675599456,0.004970147740095854,0.0,5.8621607426069e-21,-0.00033333332976326346,-2.473336205982557e-19,-0.00010416666918899864,-0.00043290044413879514,0.0018518518190830946,-0.0055555556900799274,0.0,0.0,0.0018518518190830946,0.0,0.0,0.0,0.0,-0.0,0.0008333333535119891,-0.0005555555690079927,-0.0001190476177725941,5.8621607426069e-21,0.0,7.936507608974352e-05,0.0,5.929230630780102e-21,-8.470329472543003e-22,1.800869542361578e-35,0.0013333333190530539,-0.0008888888987712562,0.0,-0.00033333332976326346,0.0,0.0,0.00022222222469281405,0.0,0.0,-0.0,0.00020424836839083582,-5.336307567702092e-20,-9.426847827853635e-05,-2.473336205982557e-19,0.0,5.929230630780102e-21,0.0,6.7334626692172606e-06,1.1011428314305904e-20,2.1125979587102653e-20,0.00041666667675599456,3.3881317890172014e-21,-5.952380888629705e-05,-0.00010416666918899864,0.0,-8.470329472543003e-22,0.0,1.1011428314305904e-20,1.4880952221574262e-05,-1.1028834650086464e-20,0.0005050505278632045,-1.2606086366052157e-34,-2.516483756190913e-19,-0.00043290044413879514,-0.0,1.800869542361578e-35,-0.0,2.1125979587102653e-20,-1.1028834650086464e-20,5.411255551734939e-05,4.0,15.0,10.0,0.05089794844388962,-0.01715909130871296,-0.0058576203882694244,-0.008340909145772457,0.0016666667070239782,0.000750000006519258,0.0010909091215580702,0.00018382353300694376,0.0003409090859349817,0.0003787878667935729,-0.01715909130871296,0.023106060922145844,0.000750000006519258,0.0010909091215580702,-0.004999999888241291,-0.0005000000237487257,-0.0007272727089002728,3.7354152973914645e-19,2.710505431213761e-20,-1.349930221955408e-18,-0.0058576203882694244,0.000750000006519258,0.001656938693486154,0.0003409090859349817,1.2703937041311374e-18,-0.00010714285599533468,3.734678943620577e-34,-8.484163117827848e-05,-4.870129851042293e-05,-6.78106122558721e-19,-0.008340909145772457,0.0010909091215580702,0.0003409090859349817,0.0036527777556329966,-4.330553963740198e-18,-2.1484000158321796e-19,-0.00024242424115072936,-4.472333961502706e-19,-7.575757626909763e-05,-0.0002840909000951797,0.0016666667070239782,-0.004999999888241291,1.2703937041311374e-18,-4.330553963740198e-18,0.0016666667070239782,1.0002580744660332e-19,4.899634786432286e-19,-8.163404752490056e-20,2.0996693869712123e-34,3.9951207999177344e-19,0.000750000006519258,-0.0005000000237487257,-0.00010714285599533468,-2.1484000158321796e-19,1.0002580744660332e-19,7.142857066355646e-05,2.940539583597447e-35,-1.9481757786848908e-20,-4.235164736271502e-21,2.162772117416575e-20,0.0010909091215580702,-0.0007272727089002728,3.734678943620577e-34,-0.00024242424115072936,4.899634786432286e-19,2.940539583597447e-35,0.0001616161607671529,-2.3998621177702305e-35,0.0,1.174477961468559e-34,0.00018382353300694376,3.7354152973914645e-19,-8.484163117827848e-05,-4.472333961502706e-19,-8.163404752490056e-20,-1.9481757786848908e-20,-2.3998621177702305e-35,6.06011644777027e-06,1.5670109524204556e-20,3.262099836702237e-20,0.0003409090859349817,2.710505431213761e-20,-4.870129851042293e-05,-7.575757626909763e-05,2.0996693869712123e-34,-4.235164736271502e-21,0.0,1.5670109524204556e-20,1.0822510375874117e-05,3.798832456146035e-20,0.0003787878667935729,-1.349930221955408e-18,-6.78106122558721e-19,-0.0002840909000951797,3.9951207999177344e-19,2.162772117416575e-20,1.174477961468559e-34,3.262099836702237e-20,3.798832456146035e-20,3.156565799145028e-05,4.0,15.0,11.0,0.046882882714271545,-0.01568181812763214,-0.005350935738533735,-0.0070236013270914555,0.0015151514671742916,0.0006818181718699634,0.0009090909152291715,0.00016711230273358524,0.0002840909000951797,0.00029137529782019556,-0.01568181812763214,0.021060606464743614,0.0006818181718699634,0.0009090909152291715,-0.004545454401522875,-0.00045454545761458576,-0.000606060610152781,-4.2351647362715017e-20,0.0,-7.877307921153e-35,-0.005350935738533735,0.0006818181718699634,0.0015099974116310477,0.0002840909000951797,0.0,-9.740259702084586e-05,0.0,-7.712875230936334e-05,-4.058441481902264e-05,-1.4670797796058072e-19,-0.0070236013270914555,0.0009090909152291715,0.0002840909000951797,0.002764471573755145,0.0,-5.04900514293739e-22,-0.0001818181772250682,-1.5754812818929986e-19,-5.681818220182322e-05,-0.00019425019854679704,0.0015151514671742916,-0.004545454401522875,0.0,0.0,0.0015151514671742916,0.0,0.0,0.0,0.0,-0.0,0.0006818181718699634,-0.00045454545761458576,-9.740259702084586e-05,-5.04900514293739e-22,0.0,6.49350622552447e-05,0.0,6.776263578034403e-21,4.235164736271502e-22,1.1253297132713544e-35,0.0009090909152291715,-0.000606060610152781,0.0,-0.0001818181772250682,0.0,0.0,0.00012121212057536468,0.0,0.0,-0.0,0.00016711230273358524,-4.2351647362715017e-20,-7.712875230936334e-05,-1.5754812818929986e-19,0.0,6.776263578034403e-21,0.0,5.509196853381582e-06,5.929230630780102e-21,1.1710101895054844e-20,0.0002840909000951797,0.0,-4.058441481902264e-05,-5.681818220182322e-05,0.0,4.235164736271502e-22,0.0,5.929230630780102e-21,8.116882781905588e-06,-3.446689148581923e-21,0.00029137529782019556,-7.877307921153e-35,-1.4670797796058072e-19,-0.00019425019854679704,-0.0,1.1253297132713544e-35,-0.0,1.1710101895054844e-20,-3.446689148581923e-21,1.942501876328606e-05,4.0,15.0,12.0,0.0434565544128418,-0.01443910226225853,-0.0049250563606619835,-0.005995878949761391,0.0013888889225199819,0.0006249999860301614,0.0007692307699471712,0.00015318627993110567,0.000240384615608491,0.00022893772984389216,-0.01443910226225853,0.01934828981757164,0.0006249999860301614,0.0007692307699471712,-0.004166666883975267,-0.00041666667675599456,-0.0005128204938955605,7.623296525288703e-20,-1.0164395367051604e-20,0.0,-0.0049250563606619835,0.0006249999860301614,0.0013870259281247854,0.000240384615608491,0.0,-8.928571332944557e-05,0.0,-7.070136052789167e-05,-3.4340660931775346e-05,-1.5246593050577406e-19,-0.005995878949761391,0.0007692307699471712,0.000240384615608491,0.002143273362889886,-0.0,-2.261970621466003e-21,-0.0001398601452820003,-1.2556923523512032e-19,-4.3706295400625095e-05,-0.00013736264372710139,0.0013888889225199819,-0.004166666883975267,0.0,-0.0,0.0013888889225199819,0.0,0.0,0.0,0.0,0.0,0.0006249999860301614,-0.00041666667675599456,-8.928571332944557e-05,-2.261970621466003e-21,0.0,5.952380888629705e-05,-2.7591070278910377e-22,-1.0164395367051604e-20,4.696432533482125e-22,-1.0297537821265417e-23,0.0007692307699471712,-0.0005128204938955605,0.0,-0.0001398601452820003,0.0,-2.7591070278910377e-22,9.324009442934766e-05,-3.1763735522036263e-22,0.0,0.0,0.00015318627993110567,7.623296525288703e-20,-7.070136052789167e-05,-1.2556923523512032e-19,0.0,-1.0164395367051604e-20,-3.1763735522036263e-22,5.050097115599783e-06,4.235164736271502e-21,8.893845946170154e-21,0.000240384615608491,-1.0164395367051604e-20,-3.4340660931775346e-05,-4.3706295400625095e-05,0.0,4.696432533482125e-22,0.0,4.235164736271502e-21,6.243756160984049e-06,4.658681209898652e-21,0.00022893772984389216,0.0,-1.5246593050577406e-19,-0.00013736264372710139,0.0,-1.0297537821265417e-23,0.0,8.893845946170154e-21,4.658681209898652e-21,1.2487512321968097e-05,4.0,15.0,13.0,0.04049800708889961,-0.013379121199250221,-0.004562055692076683,-0.005178571213036776,0.0012820513220503926,0.0005769230774603784,0.0006593406433239579,0.00014140272105578333,0.00020604395831469446,0.00018315018678549677,-0.013379121199250221,0.017893772572278976,0.0005769230774603784,0.0006593406433239579,-0.003846153849735856,-0.0003846153849735856,-0.00043956044828519225,4.404571325722362e-20,-1.8634724839594607e-20,-6.776263578034403e-21,-0.004562055692076683,0.0005769230774603784,0.001282595912925899,0.00020604395831469446,0.0,-8.241758041549474e-05,-1.8634724839594607e-20,-6.526279321406037e-05,-2.943485014839098e-05,-1.0672615135404184e-19,-0.005178571213036776,0.0006593406433239579,0.00020604395831469446,0.0016955960309132934,-0.0,3.24130500885673e-21,-0.00010989011207129806,-1.2266342729140396e-19,-3.4340660931775346e-05,-9.990009857574478e-05,0.0012820513220503926,-0.003846153849735856,0.0,-0.0,0.0012820513220503926,0.0,0.0,0.0,0.0,0.0,0.0005769230774603784,-0.0003846153849735856,-8.241758041549474e-05,3.24130500885673e-21,0.0,5.494505603564903e-05,-1.0418704331952468e-22,-5.929230630780102e-21,-6.564567869491619e-23,1.9340846756658223e-23,0.0006593406433239579,-0.00043956044828519225,-1.8634724839594607e-20,-0.00010989011207129806,0.0,-1.0418704331952468e-22,7.326007471419871e-05,0.0,3.3881317890172014e-21,0.0,0.00014140272105578333,4.404571325722362e-20,-6.526279321406037e-05,-1.2266342729140396e-19,0.0,-5.929230630780102e-21,0.0,4.6616278268629685e-06,5.505714157152952e-21,7.093900933254765e-21,0.00020604395831469446,-1.8634724839594607e-20,-2.943485014839098e-05,-3.4340660931775346e-05,0.0,-6.564567869491619e-23,3.3881317890172014e-21,5.505714157152952e-21,4.905808509647613e-06,1.2705494208814505e-21,0.00018315018678549677,-6.776263578034403e-21,-1.0672615135404184e-19,-9.990009857574478e-05,0.0,1.9340846756658223e-23,0.0,7.093900933254765e-21,1.2705494208814505e-21,8.325007911480498e-06,4.0,15.0,14.0,0.0379173681139946,-0.01246428582817316,-0.004248949699103832,-0.004517856985330582,0.0011904762359336019,0.0005357142654247582,0.0005714285653084517,0.00013130252773407847,0.00017857142665889114,0.00014880952949170023,-0.01246428582817316,0.01664285734295845,0.0005357142654247582,0.0005714285653084517,-0.0035714285913854837,-0.0003571428533177823,-0.0003809523768723011,-2.371692252312041e-19,-2.473336205982557e-19,-1.5585406229479126e-19,-0.004248949699103832,0.0005357142654247582,0.0011928040767088532,0.00017857142665889114,-1.0354624160471955e-18,-7.653061038581654e-05,4.743384504624082e-20,-6.0601163568207994e-05,-2.551020406826865e-05,-1.3552527156068805e-20,-0.004517856985330582,0.0005714285653084517,0.00017857142665889114,0.0013646978186443448,-8.269781600981053e-19,-4.072737483239058e-19,-8.791208529146388e-05,4.8650553410298164e-20,-2.7472528017824516e-05,-7.440476474585012e-05,0.0011904762359336019,-0.0035714285913854837,-1.0354624160471955e-18,-8.269781600981053e-19,0.0011904762359336019,2.0672374418693886e-19,1.9191966691468319e-19,2.915501789637142e-20,3.355069444556942e-20,1.6521176592532187e-20,0.0005357142654247582,-0.0003571428533177823,-7.653061038581654e-05,-4.072737483239058e-19,2.0672374418693886e-19,5.10204081365373e-05,4.624720922109375e-20,2.710505431213761e-20,1.793964594021858e-20,1.4025328730802484e-20,0.0005714285653084517,-0.0003809523768723011,4.743384504624082e-20,-8.791208529146388e-05,1.9191966691468319e-19,4.624720922109375e-20,5.860805686097592e-05,-9.846758011831241e-21,-1.4823076576950256e-21,-4.235164736271502e-21,0.00013130252773407847,-2.371692252312041e-19,-6.0601163568207994e-05,4.8650553410298164e-20,2.915501789637142e-20,2.710505431213761e-20,-9.846758011831241e-21,4.328654540586285e-06,1.0587911840678754e-21,-3.705769144237564e-21,0.00017857142665889114,-2.473336205982557e-19,-2.551020406826865e-05,-2.7472528017824516e-05,3.355069444556942e-20,1.793964594021858e-20,-1.4823076576950256e-21,1.0587911840678754e-21,3.924646989617031e-06,5.929230630780102e-21,0.00014880952949170023,-1.5585406229479126e-19,-1.3552527156068805e-20,-7.440476474585012e-05,1.6521176592532187e-20,1.4025328730802484e-20,-4.235164736271502e-21,-3.705769144237564e-21,5.929230630780102e-21,5.723443337046774e-06,4.0,15.0,15.0,0.03564644604921341,-0.011666666716337204,-0.003976102918386459,-0.003976102918386459,0.0011111111380159855,0.0005000000237487257,0.0005000000237487257,0.00012254902685526758,0.00015624999650754035,0.00012254902685526758,-0.011666666716337204,0.015555555932223797,0.0005000000237487257,0.0005000000237487257,-0.0033333334140479565,-0.00033333332976326346,-0.00033333332976326346,-3.9810548520952116e-20,1.6940658945086007e-21,-2.710505431213761e-20,-0.003976102918386459,0.0005000000237487257,0.0011147718178108335,0.00015624999650754035,0.0,-7.142857066355646e-05,3.3881317890172014e-21,-5.656108623952605e-05,-2.2321428332361393e-05,-5.421010862427522e-20,-0.003976102918386459,0.0005000000237487257,0.00015624999650754035,0.0011147718178108335,-0.0,2.9480278803379838e-21,-7.142857066355646e-05,-8.784367299629053e-20,-2.2321428332361393e-05,-5.656108623952605e-05,0.0011111111380159855,-0.0033333334140479565,0.0,-0.0,0.0011111111380159855,0.0,0.0,0.0,0.0,0.0,0.0005000000237487257,-0.00033333332976326346,-7.142857066355646e-05,2.9480278803379838e-21,0.0,4.761904710903764e-05,-4.0065197768893056e-22,5.929230630780102e-21,1.5272894910091374e-22,-2.885192748965302e-22,0.0005000000237487257,-0.00033333332976326346,3.3881317890172014e-21,-7.142857066355646e-05,0.0,-4.0065197768893056e-22,4.761904710903764e-05,0.0,-4.235164736271502e-22,4.235164736271502e-21,0.00012254902685526758,-3.9810548520952116e-20,-5.656108623952605e-05,-8.784367299629053e-20,0.0,5.929230630780102e-21,0.0,4.040077783429297e-06,3.1763735522036263e-21,4.605741650695258e-21,0.00015624999650754035,1.6940658945086007e-21,-2.2321428332361393e-05,-2.2321428332361393e-05,0.0,1.5272894910091374e-22,-4.235164736271502e-22,3.1763735522036263e-21,3.188775508533581e-06,-1.4823076576950256e-21,0.00012254902685526758,-2.710505431213761e-20,-5.421010862427522e-20,-5.656108623952605e-05,0.0,-2.885192748965302e-22,4.235164736271502e-21,4.605741650695258e-21,-1.4823076576950256e-21,4.040077783429297e-06,4.0,15.0,16.0,0.0336325578391552,-0.010965073481202126,-0.0037362133152782917,-0.003526348154991865,0.0010416667209938169,0.00046874998952262104,0.00044117646757513285,0.00011488970631035045,0.00013786765339318663,0.00010212418419541791,-0.010965073481202126,0.014601715840399265,0.00046874998952262104,0.00044117646757513285,-0.0031250000465661287,-0.0003124999930150807,-0.00029411763534881175,2.879912020664621e-20,8.470329472543003e-21,4.404571325722362e-20,-0.0037362133152782917,0.00046874998952262104,0.001046329620294273,0.00013786765339318663,0.0,-6.696428317809477e-05,-1.6940658945086007e-20,-5.3026018576929346e-05,-1.969537879631389e-05,-6.013933925505532e-20,-0.003526348154991865,0.00044117646757513285,0.00013786765339318663,0.0009224439854733646,-0.0,-1.6666761995928653e-20,-5.8823530707741156e-05,-7.277812263993713e-20,-1.8382352209300734e-05,-4.376750803203322e-05,0.0010416667209938169,-0.0031250000465661287,0.0,-0.0,0.0010416667209938169,0.0,0.0,0.0,0.0,0.0,0.00046874998952262104,-0.0003124999930150807,-6.696428317809477e-05,-1.6666761995928653e-20,0.0,4.4642856664722785e-05,1.398007936635642e-20,-3.3881317890172014e-21,-3.03141474417962e-22,-4.0692828126861377e-23,0.00044117646757513285,-0.00029411763534881175,-1.6940658945086007e-20,-5.8823530707741156e-05,0.0,1.398007936635642e-20,3.9215687138494104e-05,5.293955920339377e-23,-8.470329472543003e-22,-4.658681209898652e-21,0.00011488970631035045,2.879912020664621e-20,-5.3026018576929346e-05,-7.277812263993713e-20,0.0,-3.3881317890172014e-21,5.293955920339377e-23,3.7875727230129996e-06,2.117582368135751e-21,3.864587821847745e-21,0.00013786765339318663,8.470329472543003e-21,-1.969537879631389e-05,-1.8382352209300734e-05,0.0,-3.03141474417962e-22,-8.470329472543003e-22,2.117582368135751e-21,2.626050445542205e-06,5.293955920339377e-22,0.00010212418419541791,4.404571325722362e-20,-6.013933925505532e-20,-4.376750803203322e-05,0.0,-4.0692828126861377e-23,-4.658681209898652e-21,3.864587821847745e-21,5.293955920339377e-22,2.9178338536439696e-06,4.0,16.0,3.0,0.12142565101385117,-0.04779411852359772,-0.015563725493848324,-0.05818014591932297,0.0052083334885537624,0.002205882454290986,0.00937500037252903,0.0005106209428049624,0.0027573530096560717,0.0078125,-0.04779411852359772,0.06832107901573181,0.002205882454290986,0.00937500037252903,-0.015625,-0.00147058826405555,-0.0062500000931322575,-2.6263247078403114e-18,-6.207057437479513e-18,-3.729655473350135e-17,-0.015563725493848324,0.002205882454290986,0.004336484707891941,0.0027573530096560717,-7.50716119446687e-18,-0.00029411763534881175,-8.836247705756861e-18,-0.0002188375365221873,-0.0003676470660138875,-8.782037597132586e-18,-0.05818014591932297,0.00937500037252903,0.0027573530096560717,0.13630515336990356,-6.069886903680457e-18,-7.770255914456712e-18,-0.00937500037252903,-9.456554169423133e-19,-0.0027573530096560717,-0.046875,0.0052083334885537624,-0.015625,-7.50716119446687e-18,-6.069886903680457e-18,0.0052083334885537624,-7.318364664277155e-19,-8.78494844570816e-18,5.353248226647178e-19,6.03685561726726e-19,7.164819263071999e-18,0.002205882454290986,-0.00147058826405555,-0.00029411763534881175,-7.770255914456712e-18,-7.318364664277155e-19,0.0001960784284165129,9.028093223684447e-19,6.945670167485263e-20,3.3892097087529345e-19,1.7212843759622346e-18,0.00937500037252903,-0.0062500000931322575,-8.836247705756861e-18,-0.00937500037252903,-8.78494844570816e-18,9.028093223684447e-19,0.0062500000931322575,3.6734995360721633e-19,1.7618285302889447e-18,4.336808689942018e-18,0.0005106209428049624,-2.6263247078403114e-18,-0.0002188375365221873,-9.456554169423133e-19,5.353248226647178e-19,6.945670167485263e-20,3.6734995360721633e-19,1.4589169040846173e-05,3.2782469838706404e-20,4.870667244498106e-20,0.0027573530096560717,-6.207057437479513e-18,-0.0003676470660138875,-0.0027573530096560717,6.03685561726726e-19,3.3892097087529345e-19,1.7618285302889447e-18,3.2782469838706404e-20,0.0003676470660138875,4.9873299934333204e-18,0.0078125,-3.729655473350135e-17,-8.782037597132586e-18,-0.046875,7.164819263071999e-18,1.7212843759622346e-18,4.336808689942018e-18,4.870667244498106e-20,4.9873299934333204e-18,0.0234375,4.0,16.0,4.0,0.09940563887357712,-0.03725183755159378,-0.012086397036910057,-0.03725183755159378,0.00390625,0.0016544117825105786,0.005625000223517418,0.00038296569255180657,0.0016544117825105786,0.00390625,-0.03725183755159378,0.05217830836772919,0.0016544117825105786,0.005625000223517418,-0.01171875,-0.001102941227145493,-0.0037499999161809683,1.23422481825695e-18,6.776263578034403e-20,-5.854691731421724e-18,-0.012086397036910057,0.0016544117825105786,0.0033075104001909494,0.0016544117825105786,2.190535355464712e-18,-0.00022058823378756642,3.0899761915836876e-18,-0.00016412815602961928,-0.00022058823378756642,-7.047314121155779e-19,-0.03725183755159378,0.005625000223517418,0.0016544117825105786,0.05217830836772919,-9.808354497532242e-18,2.0767779621088163e-18,-0.0037499999161809683,5.398516719644908e-19,-0.001102941227145493,-0.01171875,0.00390625,-0.01171875,2.190535355464712e-18,-9.808354497532242e-18,0.00390625,4.0657581468206416e-19,3.6589296284614425e-18,-1.9989977555201488e-19,2.633542996058179e-19,6.465925057744055e-19,0.0016544117825105786,-0.001102941227145493,-0.00022058823378756642,2.0767779621088163e-18,4.0657581468206416e-19,0.00014705881767440587,-4.953694658377806e-19,-4.573977915173222e-20,-1.1327840408243923e-19,-1.4405842798569387e-19,0.005625000223517418,-0.0037499999161809683,3.0899761915836876e-18,-0.0037499999161809683,3.6589296284614425e-18,-4.953694658377806e-19,0.0024999999441206455,-1.3385551702137027e-19,4.0657581468206416e-20,3.686287386450715e-18,0.00038296569255180657,1.23422481825695e-18,-0.00016412815602961928,5.398516719644908e-19,-1.9989977555201488e-19,-4.573977915173222e-20,-1.3385551702137027e-19,1.0941877008008305e-05,-2.0110497447333037e-20,-5.596180574302404e-20,0.0016544117825105786,6.776263578034403e-20,-0.00022058823378756642,-0.001102941227145493,2.633542996058179e-19,-1.1327840408243923e-19,4.0657581468206416e-20,-2.0110497447333037e-20,0.00014705881767440587,1.3552527156068805e-18,0.00390625,-5.854691731421724e-18,-7.047314121155779e-19,-0.01171875,6.465925057744055e-19,-1.4405842798569387e-19,3.686287386450715e-18,-5.596180574302404e-20,1.3552527156068805e-18,0.00390625,4.0,16.0,5.0,0.08426820486783981,-0.030551470816135406,-0.009889706037938595,-0.025950631126761436,0.0031250000465661287,0.0013235294027253985,0.0037499999161809683,0.00030637255986221135,0.001102941227145493,0.0022321429569274187,-0.030551470816135406,0.04224264621734619,0.0013235294027253985,0.0037499999161809683,-0.00937500037252903,-0.0008823529351502657,-0.0024999999441206455,1.0360194187921734e-18,-1.3552527156068805e-18,-1.8865117801247777e-17,-0.009889706037938595,0.0013235294027253985,0.0026754201389849186,0.001102941227145493,2.927345865710862e-18,-0.00017647058120928705,-4.743384504624082e-19,-0.00013130252773407847,-0.00014705881767440587,-2.656295322589486e-18,-0.025950631126761436,0.0037499999161809683,0.001102941227145493,0.026368172839283943,-1.1600963245594897e-17,-4.2825985813177425e-18,-0.0018749999580904841,-2.0328790734103208e-20,-0.0005514706135727465,-0.004464285913854837,0.0031250000465661287,-0.00937500037252903,2.927345865710862e-18,-1.1600963245594897e-17,0.0031250000465661287,5.21772295508649e-19,2.5183155993562e-18,-2.541098841762901e-19,5.619869605329245e-20,1.870465675653137e-18,0.0013235294027253985,-0.0008823529351502657,-0.00017647058120928705,-4.2825985813177425e-18,5.21772295508649e-19,0.00011764706141548231,3.1848438816761693e-19,-2.0328790734103208e-20,9.147955830346444e-20,7.250602028496811e-19,0.0037499999161809683,-0.0024999999441206455,-4.743384504624082e-19,-0.0018749999580904841,2.5183155993562e-18,3.1848438816761693e-19,0.0012499999720603228,-3.85839075271956e-20,2.303929616531697e-19,3.415236843329339e-18,0.00030637255986221135,1.0360194187921734e-18,-0.00013130252773407847,-2.0328790734103208e-20,-2.541098841762901e-19,-2.0328790734103208e-20,-3.85839075271956e-20,8.753501788305584e-06,-5.0242817120532355e-21,2.869686323459361e-20,0.001102941227145493,-1.3552527156068805e-18,-0.00014705881767440587,-0.0005514706135727465,5.619869605329245e-20,9.147955830346444e-20,2.303929616531697e-19,-5.0242817120532355e-21,7.352940883720294e-05,5.014435047745458e-19,0.0022321429569274187,-1.8865117801247777e-17,-2.656295322589486e-18,-0.004464285913854837,1.870465675653137e-18,7.250602028496811e-19,3.415236843329339e-18,2.869686323459361e-20,5.014435047745458e-19,0.0011160714784637094,4.0,16.0,6.0,0.07317999750375748,-0.02590598724782467,-0.008372724056243896,-0.01913405954837799,0.0026041667442768812,0.001102941227145493,0.0026785715017467737,0.0002553104714024812,0.0007878151373006403,0.0013950893189758062,-0.02590598724782467,0.035499826073646545,0.001102941227145493,0.0026785715017467737,-0.0078125,-0.000735294132027775,-0.0017857142956927419,-1.4954292237519543e-18,-2.168404344971009e-19,7.37257477290143e-18,-0.008372724056243896,0.001102941227145493,0.0022470238618552685,0.0007878151373006403,-3.8014838672773e-18,-0.00014705881767440587,-1.7448878713438587e-18,-0.00010941876826109365,-0.0001050420178216882,1.0570971181733668e-18,-0.01913405954837799,0.0026785715017467737,0.0007878151373006403,0.015326615422964096,1.0625181290357943e-17,-9.75781955236954e-19,-0.0010714285308495164,-1.5585406229479126e-19,-0.00031512606074102223,-0.0020926338620483875,0.0026041667442768812,-0.0078125,-3.8014838672773e-18,1.0625181290357943e-17,0.0026041667442768812,-2.981555974335137e-19,-9.573445129734533e-19,2.939204326972422e-19,-6.054614409536949e-20,-1.5943951801893299e-18,0.001102941227145493,-0.000735294132027775,-0.00014705881767440587,-9.75781955236954e-19,-2.981555974335137e-19,9.803921420825645e-05,2.981555974335137e-19,4.319868030996932e-20,7.792703114739563e-20,-1.3552527156068805e-20,0.0026785715017467737,-0.0017857142956927419,-1.7448878713438587e-18,-0.0010714285308495164,-9.573445129734533e-19,2.981555974335137e-19,0.0007142857066355646,8.578504663384479e-20,-4.0657581468206416e-20,-7.860465750519907e-19,0.0002553104714024812,-1.4954292237519543e-18,-0.00010941876826109365,-1.5585406229479126e-19,2.939204326972422e-19,4.319868030996932e-20,8.578504663384479e-20,7.294584520423086e-06,5.899591877015275e-21,-3.627462443651355e-21,0.0007878151373006403,-2.168404344971009e-19,-0.0001050420178216882,-0.00031512606074102223,-6.054614409536949e-20,7.792703114739563e-20,-4.0657581468206416e-20,5.899591877015275e-21,4.201680712867528e-05,-4.0318768289304696e-19,0.0013950893189758062,7.37257477290143e-18,1.0570971181733668e-18,-0.0020926338620483875,-1.5943951801893299e-18,-1.3552527156068805e-20,-7.860465750519907e-19,-3.627462443651355e-21,-4.0318768289304696e-19,0.0004185267898719758,4.0,16.0,7.0,0.06469275057315826,-0.022492121905088425,-0.007261029444634914,-0.014699317514896393,0.0022321429569274187,0.0009453781531192362,0.002008928684517741,0.0002188375365221873,0.0005908613675273955,0.0009300595265813172,-0.022492121905088425,0.030619747936725616,0.0009453781531192362,0.002008928684517741,-0.0066964286379516125,-0.0006302521214820445,-0.0013392857508733869,-1.1175239026912843e-18,1.4094628242311558e-18,7.860465750519907e-18,-0.007261029444634914,0.0009453781531192362,0.001937274937517941,0.0005908613675273955,-4.208059681959364e-18,-0.00012605042138602585,1.9312351197398048e-19,-9.378751565236598e-05,-7.878151518525556e-05,1.395910297075087e-18,-0.014699317514896393,0.002008928684517741,0.0005908613675273955,0.009736081585288048,1.0299920638612292e-17,1.870248747537495e-18,-0.0006696428754366934,2.574980159653073e-19,-0.00019695378432516009,-0.0011160714784637094,0.0022321429569274187,-0.0066964286379516125,-4.208059681959364e-18,1.0299920638612292e-17,0.0022321429569274187,7.250602028496811e-19,2.156458564456036e-19,2.608861477543245e-19,-2.5050366104889447e-19,-1.3093040733504787e-18,0.0009453781531192362,-0.0006302521214820445,-0.00012605042138602585,1.870248747537495e-18,7.250602028496811e-19,8.403361425735056e-05,-5.421010862427522e-20,2.625802136488331e-20,-2.0328790734103208e-20,-2.473336205982557e-19,0.002008928684517741,-0.0013392857508733869,1.9312351197398048e-19,-0.0006696428754366934,2.156458564456036e-19,-5.421010862427522e-20,0.00044642857392318547,2.6353431478662474e-20,-1.3891340334970526e-19,-4.777265822514254e-19,0.0002188375365221873,-1.1175239026912843e-18,-9.378751565236598e-05,2.574980159653073e-19,2.608861477543245e-19,2.625802136488331e-20,2.6353431478662474e-20,6.252500952541595e-06,-1.123626230558764e-20,-3.158643129644008e-20,0.0005908613675273955,1.4094628242311558e-18,-7.878151518525556e-05,-0.00019695378432516009,-2.5050366104889447e-19,-2.0328790734103208e-20,-1.3891340334970526e-19,-1.123626230558764e-20,2.626050445542205e-05,-1.2705494208814505e-19,0.0009300595265813172,7.860465750519907e-18,1.395910297075087e-18,-0.0011160714784637094,-1.3093040733504787e-18,-2.473336205982557e-19,-4.777265822514254e-19,-3.158643129644008e-20,-1.2705494208814505e-19,0.00018601190822664648,4.0,16.0,8.0,0.05798100307583809,-0.019875919446349144,-0.006410845555365086,-0.011649816296994686,0.001953125,0.0008272058912552893,0.0015625000232830644,0.00019148284627590328,0.0004595588252414018,0.0006510416860692203,-0.019875919446349144,0.02692248858511448,0.0008272058912552893,0.0015625000232830644,-0.005859375,-0.0005514706135727465,-0.0010416667209938169,5.454892180317694e-19,8.131516293641283e-19,8.402566836762659e-19,-0.006410845555365086,0.0008272058912552893,0.0017027748981490731,0.0004595588252414018,1.2671612890924333e-18,-0.00011029411689378321,1.370499308657458e-18,-8.206407801480964e-05,-6.127451342763379e-05,7.453889935837843e-19,-0.011649816296994686,0.0015625000232830644,0.0004595588252414018,0.006583727430552244,-2.2768245622195593e-18,1.5178830414797062e-18,-0.00044642857392318547,3.1170812458958252e-19,-0.00013130252773407847,-0.0006510416860692203,0.001953125,-0.005859375,1.2671612890924333e-18,-2.2768245622195593e-18,0.001953125,1.6059834377339208e-20,-4.458011716937262e-20,-8.216219588366713e-20,6.400301911693382e-22,3.479078746403758e-19,0.0008272058912552893,-0.0005514706135727465,-0.00011029411689378321,1.5178830414797062e-18,1.6059834377339208e-20,7.352940883720294e-05,-2.168404344971009e-19,-1.7874652485409212e-20,-5.505714157152952e-20,-9.994988777600744e-20,0.0015625000232830644,-0.0010416667209938169,1.370499308657458e-18,-0.00044642857392318547,-4.458011716937262e-20,-2.168404344971009e-19,0.00029761905898340046,-3.954298790453389e-20,-1.0672615135404184e-19,-3.1170812458958252e-19,0.00019148284627590328,5.454892180317694e-19,-8.206407801480964e-05,3.1170812458958252e-19,-8.216219588366713e-20,-1.7874652485409212e-20,-3.954298790453389e-20,5.4709385040041525e-06,-8.805137287822377e-21,-2.4316835262374493e-20,0.0004595588252414018,8.131516293641283e-19,-6.127451342763379e-05,-0.00013130252773407847,6.400301911693382e-22,-5.505714157152952e-20,-1.0672615135404184e-19,-8.805137287822377e-21,1.750700357661117e-05,-4.573977915173222e-20,0.0006510416860692203,8.402566836762659e-19,7.453889935837843e-19,-0.0006510416860692203,3.479078746403758e-19,-9.994988777600744e-20,-3.1170812458958252e-19,-2.4316835262374493e-20,-4.573977915173222e-20,9.300595411332324e-05,4.0,16.0,9.0,0.05253738537430763,-0.017806371673941612,-0.005739379208534956,-0.009461898356676102,0.0017361111240461469,0.000735294132027775,0.0012499999720603228,0.00017020697123371065,0.0003676470660138875,0.0004734848625957966,-0.017806371673941612,0.024023693054914474,0.000735294132027775,0.0012499999720603228,-0.0052083334885537624,-0.0004901961074210703,-0.0008333333535119891,4.1081097941833566e-19,8.131516293641283e-19,2.710505431213761e-20,-0.005739379208534956,0.000735294132027775,0.0015190242556855083,0.0003676470660138875,2.9984966332802232e-18,-9.803921420825645e-05,4.0318768289304696e-19,-7.294584793271497e-05,-4.901960710412823e-05,3.1848438816761693e-19,-0.009461898356676102,0.0012499999720603228,0.0003676470660138875,0.004665258340537548,2.0599841277224584e-18,4.336808689942018e-19,-0.0003124999930150807,1.3552527156068805e-20,-9.191176650347188e-05,-0.000405844155466184,0.0017361111240461469,-0.0052083334885537624,2.9984966332802232e-18,2.0599841277224584e-18,0.0017361111240461469,-4.776779336916496e-19,2.0825629014214942e-20,-9.486769009248164e-20,-1.7879373231014446e-19,-7.481842824428453e-20,0.000735294132027775,-0.0004901961074210703,-9.803921420825645e-05,4.336808689942018e-19,-4.776779336916496e-19,6.535947613883764e-05,-5.082197683525802e-20,-9.116479507775527e-21,-2.371692252312041e-20,-1.6093625997831706e-20,0.0012499999720603228,-0.0008333333535119891,4.0318768289304696e-19,-0.0003124999930150807,2.0825629014214942e-20,-5.082197683525802e-20,0.00020833333837799728,-1.4724982972941697e-20,-2.371692252312041e-20,6.776263578034403e-20,0.00017020697123371065,4.1081097941833566e-19,-7.294584793271497e-05,1.3552527156068805e-20,-9.486769009248164e-20,-9.116479507775527e-21,-1.4724982972941697e-20,4.863056346948724e-06,-1.246960384600778e-22,6.155039628897142e-22,0.0003676470660138875,8.131516293641283e-19,-4.901960710412823e-05,-9.191176650347188e-05,-1.7879373231014446e-19,-2.371692252312041e-20,-2.371692252312041e-20,-1.246960384600778e-22,1.2254901776032057e-05,-7.030373462210693e-20,0.0004734848625957966,2.710505431213761e-20,3.1848438816761693e-19,-0.000405844155466184,-7.481842824428453e-20,-1.6093625997831706e-20,6.776263578034403e-20,6.155039628897142e-22,-7.030373462210693e-20,5.0730519433273e-05,4.0,16.0,10.0,0.04803197458386421,-0.01612800732254982,-0.005195521283894777,-0.007838401943445206,0.0015625000232830644,0.0006617647013626993,0.0010227272287011147,0.00015318627993110567,0.00030080214492045343,0.00035511364694684744,-0.01612800732254982,0.021689506247639656,0.0006617647013626993,0.0010227272287011147,-0.004687500186264515,-0.00044117646757513285,-0.0006818181718699634,6.522153693858113e-20,-3.3881317890172014e-21,-0.0,-0.005195521283894777,0.0006617647013626993,0.0013711325591430068,0.00030080214492045343,0.0,-8.823529060464352e-05,0.0,-6.565126386703923e-05,-4.0106951928464696e-05,-0.0,-0.007838401943445206,0.0010227272287011147,0.00030080214492045343,0.0034286570735275745,0.0,-4.6508387460539536e-21,-0.00022727272880729288,-1.6940658945086007e-21,-6.68449210934341e-05,-0.0002663352352101356,0.0015625000232830644,-0.004687500186264515,0.0,0.0,0.0015625000232830644,0.0,0.0,0.0,0.0,-0.0,0.0006617647013626993,-0.00044117646757513285,-8.823529060464352e-05,-4.6508387460539536e-21,0.0,5.8823530707741156e-05,0.0,-8.470329472543003e-21,4.235164736271502e-22,-0.0,0.0010227272287011147,-0.0006818181718699634,0.0,-0.00022727272880729288,0.0,0.0,0.00015151515253819525,0.0,0.0,-0.0,0.00015318627993110567,6.522153693858113e-20,-6.565126386703923e-05,-1.6940658945086007e-21,0.0,-8.470329472543003e-21,0.0,4.376750894152792e-06,0.0,-0.0,0.00030080214492045343,-3.3881317890172014e-21,-4.0106951928464696e-05,-6.68449210934341e-05,0.0,4.235164736271502e-22,0.0,0.0,8.912656085158233e-06,-0.0,0.00035511364694684744,-0.0,-0.0,-0.0002663352352101356,-0.0,-0.0,-0.0,-0.0,-0.0,2.9592803912237287e-05,4.0,16.0,11.0,0.04424062371253967,-0.014739304780960083,-0.004745989106595516,-0.00660029286518693,0.0014204545877873898,0.0006016042898409069,0.0008522727293893695,0.00013926024257671088,0.00025066843954846263,0.0002731643326114863,-0.014739304780960083,0.01976938545703888,0.0006016042898409069,0.0008522727293893695,-0.004261363763362169,-0.00040106952656060457,-0.0005681818001903594,-1.6940658945086007e-21,0.0,-0.0,-0.004745989106595516,0.0006016042898409069,0.0012495225528255105,0.00025066843954846263,0.0,-8.021390385692939e-05,0.0,-5.9682963183149695e-05,-3.342246054671705e-05,-0.0,-0.00660029286518693,0.0008522727293893695,0.00025066843954846263,0.002594825578853488,0.0,-3.1867390582804855e-22,-0.00017045454296749085,1.6940658945086007e-21,-5.013369082007557e-05,-0.0001821095502236858,0.0014204545877873898,-0.004261363763362169,0.0,0.0,0.0014204545877873898,0.0,0.0,0.0,0.0,-0.0,0.0006016042898409069,-0.00040106952656060457,-8.021390385692939e-05,-3.1867390582804855e-22,0.0,5.347593469195999e-05,0.0,0.0,4.235164736271502e-22,-0.0,0.0008522727293893695,-0.0005681818001903594,0.0,-0.00017045454296749085,0.0,0.0,0.00011363636440364644,0.0,0.0,-0.0,0.00013926024257671088,-1.6940658945086007e-21,-5.9682963183149695e-05,1.6940658945086007e-21,0.0,0.0,0.0,3.97886424252647e-06,-4.235164736271502e-22,-0.0,0.00025066843954846263,0.0,-3.342246054671705e-05,-5.013369082007557e-05,0.0,4.235164736271502e-22,0.0,-4.235164736271502e-22,6.684491836494999e-06,-0.0,0.0002731643326114863,-0.0,-0.0,-0.0001821095502236858,-0.0,-0.0,-0.0,-0.0,-0.0,1.8210956113762222e-05,4.0,16.0,12.0,0.04100555181503296,-0.013571125455200672,-0.004368165507912636,-0.005634393077343702,0.0013020833721384406,0.0005514706135727465,0.0007211538613773882,0.0001276552357012406,0.00021210407430771738,0.0002146291226381436,-0.013571125455200672,0.01816200092434883,0.0005514706135727465,0.0007211538613773882,-0.00390625,-0.0003676470660138875,-0.000480769231216982,0.0,0.0,-0.0,-0.004368165507912636,0.0005514706135727465,0.001147752394899726,0.00021210407430771738,0.0,-7.352940883720294e-05,0.0,-5.470938413054682e-05,-2.8280543119763024e-05,-0.0,-0.005634393077343702,0.0007211538613773882,0.00021210407430771738,0.00201172917149961,0.0,-8.556997644340674e-22,-0.00013111888256389648,-1.6940658945086007e-21,-3.856437615468167e-05,-0.00012877747940365225,0.0013020833721384406,-0.00390625,0.0,0.0,0.0013020833721384406,0.0,0.0,0.0,0.0,-0.0,0.0005514706135727465,-0.0003676470660138875,-7.352940883720294e-05,-8.556997644340674e-22,0.0,4.901960710412823e-05,0.0,4.235164736271502e-22,-2.117582368135751e-22,-0.0,0.0007211538613773882,-0.000480769231216982,0.0,-0.00013111888256389648,0.0,0.0,8.741259080125019e-05,0.0,0.0,-0.0,0.0001276552357012406,0.0,-5.470938413054682e-05,-1.6940658945086007e-21,0.0,4.235164736271502e-22,0.0,3.647292260211543e-06,0.0,-0.0,0.00021210407430771738,0.0,-2.8280543119763024e-05,-3.856437615468167e-05,0.0,-2.117582368135751e-22,0.0,0.0,5.141916972206673e-06,-0.0,0.0002146291226381436,-0.0,-0.0,-0.00012877747940365225,-0.0,-0.0,-0.0,-0.0,-0.0,1.1707043086062185e-05,4.0,16.0,13.0,0.03821239992976189,-0.012574741616845131,-0.004046137910336256,-0.004866273608058691,0.0012019231216982007,0.0005090498016215861,0.0006181318894959986,0.00011783559602918103,0.0001818034943426028,0.00017170330102089792,-0.012574741616845131,0.016796622425317764,0.0005090498016215861,0.0006181318894959986,-0.0036057692486792803,-0.0003393665247131139,-0.00041208791662938893,5.082197683525802e-21,5.082197683525802e-21,-1.3552527156068805e-20,-0.004046137910336256,0.0005090498016215861,0.0010613283375278115,0.0001818034943426028,0.0,-6.787330494262278e-05,3.3881317890172014e-21,-5.050097024650313e-05,-2.424046579108108e-05,1.6940658945086007e-21,-0.004866273608058691,0.0006181318894959986,0.0001818034943426028,0.001591515145264566,-0.0,-0.0,-0.00010302197915734723,9.599628918101788e-22,-3.0300581784103997e-05,-9.365634468849748e-05,0.0012019231216982007,-0.0036057692486792803,0.0,-0.0,0.0012019231216982007,0.0,0.0,0.0,0.0,0.0,0.0005090498016215861,-0.0003393665247131139,-6.787330494262278e-05,-0.0,0.0,4.5248867536429316e-05,0.0,-8.470329472543003e-22,-2.117582368135751e-22,1.1532092516161817e-22,0.0006181318894959986,-0.00041208791662938893,3.3881317890172014e-21,-0.00010302197915734723,0.0,0.0,6.868132186355069e-05,-1.0587911840678754e-22,-4.235164736271502e-22,1.6940658945086007e-21,0.00011783559602918103,5.082197683525802e-21,-5.050097024650313e-05,9.599628918101788e-22,0.0,-8.470329472543003e-22,-1.0587911840678754e-22,3.3667313346086303e-06,-2.117582368135751e-22,0.0,0.0001818034943426028,5.082197683525802e-21,-2.424046579108108e-05,-3.0300581784103997e-05,0.0,-2.117582368135751e-22,-4.235164736271502e-22,-2.117582368135751e-22,4.040077783429297e-06,-2.117582368135751e-22,0.00017170330102089792,-1.3552527156068805e-20,1.6940658945086007e-21,-9.365634468849748e-05,0.0,1.1532092516161817e-22,1.6940658945086007e-21,0.0,-2.117582368135751e-22,7.804695087543223e-06,4.0,16.0,14.0,0.03577621653676033,-0.011714810505509377,-0.0037683823611587286,-0.004245338961482048,0.0011160714784637094,0.0004726890765596181,0.0005357142654247582,0.00010941876826109365,0.00015756303037051111,0.00013950893480796367,-0.011714810505509377,0.015622373670339584,0.0004726890765596181,0.0005357142654247582,-0.0033482143189758062,-0.00031512606074102223,-0.0003571428533177823,-3.3881317890172014e-21,-1.6940658945086007e-21,-3.3881317890172014e-20,-0.0037683823611587286,0.0004726890765596181,0.00098701985552907,0.00015756303037051111,0.0,-6.302521069301292e-05,-1.6940658945086007e-21,-4.689375782618299e-05,-2.100840356433764e-05,-3.3881317890172014e-21,-0.004245338961482048,0.0005357142654247582,0.00015756303037051111,0.0012809191830456257,-0.0,-4.44408115531656e-21,-8.241758041549474e-05,-2.1816113174261836e-21,-2.424046579108108e-05,-6.975446740398183e-05,0.0011160714784637094,-0.0033482143189758062,0.0,-0.0,0.0011160714784637094,0.0,0.0,0.0,0.0,0.0,0.0004726890765596181,-0.00031512606074102223,-6.302521069301292e-05,-4.44408115531656e-21,0.0,4.201680712867528e-05,7.418519265724227e-23,1.2705494208814505e-21,5.07617477469065e-22,1.735068511468386e-22,0.0005357142654247582,-0.0003571428533177823,-1.6940658945086007e-21,-8.241758041549474e-05,0.0,7.418519265724227e-23,5.494505603564903e-05,-1.0587911840678754e-22,2.117582368135751e-22,5.082197683525802e-21,0.00010941876826109365,-3.3881317890172014e-21,-4.689375782618299e-05,-2.1816113174261836e-21,0.0,1.2705494208814505e-21,-1.0587911840678754e-22,3.1262504762707977e-06,2.117582368135751e-22,5.293955920339377e-23,0.00015756303037051111,-1.6940658945086007e-21,-2.100840356433764e-05,-2.424046579108108e-05,0.0,5.07617477469065e-22,2.117582368135751e-22,2.117582368135751e-22,3.232061999369762e-06,0.0,0.00013950893480796367,-3.3881317890172014e-20,-3.3881317890172014e-21,-6.975446740398183e-05,0.0,1.735068511468386e-22,5.082197683525802e-21,5.293955920339377e-23,0.0,5.36572815690306e-06,4.0,16.0,15.0,0.0336325578391552,-0.010965073481202126,-0.003526348154991865,-0.0037362133152782917,0.0010416667209938169,0.00044117646757513285,0.00046874998952262104,0.00010212418419541791,0.00013786765339318663,0.00011488970631035045,-0.010965073481202126,0.014601715840399265,0.00044117646757513285,0.00046874998952262104,-0.0031250000465661287,-0.00029411763534881175,-0.0003124999930150807,3.9810548520952116e-20,-1.6940658945086007e-21,3.3881317890172014e-20,-0.003526348154991865,0.00044117646757513285,0.0009224439854733646,0.00013786765339318663,0.0,-5.8823530707741156e-05,-1.6940658945086007e-20,-4.376750803203322e-05,-1.8382352209300734e-05,4.235164736271502e-21,-0.0037362133152782917,0.00046874998952262104,0.00013786765339318663,0.001046329620294273,-0.0,-2.285958051436474e-20,-6.696428317809477e-05,3.7343352491196824e-22,-1.969537879631389e-05,-5.3026018576929346e-05,0.0010416667209938169,-0.0031250000465661287,0.0,-0.0,0.0010416667209938169,0.0,0.0,0.0,0.0,0.0,0.00044117646757513285,-0.00029411763534881175,-5.8823530707741156e-05,-2.285958051436474e-20,0.0,3.9215687138494104e-05,1.310969876163667e-20,-5.082197683525802e-21,2.1853456461119806e-22,1.9048133606888725e-23,0.00046874998952262104,-0.0003124999930150807,-1.6940658945086007e-20,-6.696428317809477e-05,0.0,1.310969876163667e-20,4.4642856664722785e-05,1.0587911840678754e-22,-4.235164736271502e-22,-4.235164736271502e-21,0.00010212418419541791,3.9810548520952116e-20,-4.376750803203322e-05,3.7343352491196824e-22,0.0,-5.082197683525802e-21,1.0587911840678754e-22,2.9178338536439696e-06,-2.117582368135751e-22,5.293955920339377e-23,0.00013786765339318663,-1.6940658945086007e-21,-1.8382352209300734e-05,-1.969537879631389e-05,0.0,2.1853456461119806e-22,-4.235164736271502e-22,-2.117582368135751e-22,2.626050445542205e-06,-4.235164736271502e-22,0.00011488970631035045,3.3881317890172014e-20,4.235164736271502e-21,-5.3026018576929346e-05,0.0,1.9048133606888725e-23,-4.235164736271502e-21,5.293955920339377e-23,-4.235164736271502e-22,3.7875727230129996e-06,4.0,16.0,16.0,0.031731635332107544,-0.010305606760084629,-0.0033135542180389166,-0.0033135542180389166,0.0009765625,0.00041360294562764466,0.00041360294562764466,9.574142313795164e-05,0.00012164792133262381,9.574142313795164e-05,-0.010305606760084629,0.013706342317163944,0.00041360294562764466,0.00041360294562764466,-0.0029296875,-0.00027573530678637326,-0.00027573530678637326,-1.7787691892340307e-20,-3.3881317890172014e-21,-1.6940658945086007e-20,-0.0033135542180389166,0.00041360294562764466,0.0008658049628138542,0.00012164792133262381,0.0,-5.5147058446891606e-05,-5.082197683525802e-21,-4.103203900740482e-05,-1.62197229656158e-05,-3.3881317890172014e-21,-0.0033135542180389166,0.00041360294562764466,0.00012164792133262381,0.0008658049628138542,-0.0,-1.5019321946104194e-21,-5.5147058446891606e-05,-2.0770250726232937e-21,-1.62197229656158e-05,-4.103203900740482e-05,0.0009765625,-0.0029296875,0.0,-0.0,0.0009765625,0.0,0.0,0.0,0.0,0.0,0.00041360294562764466,-0.00027573530678637326,-5.5147058446891606e-05,-1.5019321946104194e-21,0.0,3.676470441860147e-05,9.566489691888795e-23,2.117582368135751e-21,1.3401585576452505e-22,3.976745010882644e-23,0.00041360294562764466,-0.00027573530678637326,-5.082197683525802e-21,-5.5147058446891606e-05,0.0,9.566489691888795e-23,3.676470441860147e-05,0.0,5.293955920339377e-22,1.6940658945086007e-21,9.574142313795164e-05,-1.7787691892340307e-20,-4.103203900740482e-05,-2.0770250726232937e-21,0.0,2.117582368135751e-21,0.0,2.7354692520020762e-06,2.117582368135751e-22,5.293955920339377e-23,0.00012164792133262381,-3.3881317890172014e-21,-1.62197229656158e-05,-1.62197229656158e-05,0.0,1.3401585576452505e-22,5.293955920339377e-22,2.117582368135751e-22,2.1626296984322835e-06,4.235164736271502e-22,9.574142313795164e-05,-1.6940658945086007e-20,-3.3881317890172014e-21,-4.103203900740482e-05,0.0,3.976745010882644e-23,1.6940658945086007e-21,5.293955920339377e-23,4.235164736271502e-22,2.7354692520020762e-06,5.0,3.0,3.0,0.37063491344451904,-0.15238095819950104,-0.21666666865348816,-0.21666666865348816,0.01587301678955555,0.03333333507180214,0.03333333507180214,0.03333333507180214,0.05000000074505806,0.03333333507180214,-0.15238095819950104,0.17142857611179352,0.03333333507180214,0.03333333507180214,-0.0317460335791111,-0.01666666753590107,-0.01666666753590107,-2.2204460823375376e-17,-1.2534776538092748e-18,1.3837874688897548e-17,-0.21666666865348816,0.03333333507180214,0.550000011920929,0.05000000074505806,-2.664152049483637e-17,-0.03333333507180214,6.207285077584087e-17,-0.20000000298023224,-0.05000000074505806,5.935011630645113e-16,-0.21666666865348816,0.03333333507180214,0.05000000074505806,0.550000011920929,-2.7919995960347304e-17,5.292063000225611e-17,-0.03333333507180214,5.243294879764097e-16,-0.05000000074505806,-0.20000000298023224,0.01587301678955555,-0.0317460335791111,-2.664152049483637e-17,-2.7919995960347304e-17,0.007936508394777775,2.211037440537145e-18,2.211037440537145e-18,9.048004288209211e-18,2.3887145953426166e-18,1.0337762497275368e-17,0.03333333507180214,-0.01666666753590107,-0.03333333507180214,5.292063000225611e-17,2.211037440537145e-18,0.01666666753590107,2.846725599112479e-20,1.508764615997228e-18,-5.878488476873956e-18,-2.3656290184220273e-17,0.03333333507180214,-0.01666666753590107,6.207285077584087e-17,-0.03333333507180214,2.211037440537145e-18,2.846725599112479e-20,0.01666666753590107,-2.6616885401833316e-17,-8.839083280896693e-18,-2.957748061944636e-17,0.03333333507180214,-2.2204460823375376e-17,-0.20000000298023224,5.243294879764097e-16,9.048004288209211e-18,1.508764615997228e-18,-2.6616885401833316e-17,0.10000000149011612,-1.147052513480141e-17,-2.3006169236145446e-16,0.05000000074505806,-1.2534776538092748e-18,-0.05000000074505806,-0.05000000074505806,2.3887145953426166e-18,-5.878488476873956e-18,-8.839083280896693e-18,-1.147052513480141e-17,0.05000000074505806,-8.21351503863591e-17,0.03333333507180214,1.3837874688897548e-17,5.935011630645113e-16,-0.20000000298023224,1.0337762497275368e-17,-2.3656290184220273e-17,-2.957748061944636e-17,-2.3006169236145446e-16,-8.21351503863591e-17,0.10000000149011612,5.0,3.0,4.0,0.3088095188140869,-0.1192857176065445,-0.17000000178813934,-0.14000000059604645,0.011904762126505375,0.02500000037252903,0.019999999552965164,0.02500000037252903,0.029999999329447746,0.01666666753590107,-0.1192857176065445,0.13107143342494965,0.02500000037252903,0.019999999552965164,-0.02380952425301075,-0.012500000186264515,-0.009999999776482582,0.0,0.0,-0.0,-0.17000000178813934,0.02500000037252903,0.41999998688697815,0.029999999329447746,0.0,-0.02500000037252903,0.0,-0.15000000596046448,-0.029999999329447746,-3.885780520013599e-17,-0.14000000059604645,0.019999999552965164,0.029999999329447746,0.20999999344348907,-3.7007435050284215e-19,0.0,-0.013333333656191826,-5.828670614584276e-17,-0.019999999552965164,-0.05000000074505806,0.011904762126505375,-0.02380952425301075,0.0,-3.7007435050284215e-19,0.0059523810632526875,0.0,1.8503717525142107e-19,0.0,0.0,-0.0,0.02500000037252903,-0.012500000186264515,-0.02500000037252903,0.0,0.0,0.012500000186264515,0.0,0.0,0.0,-0.0,0.019999999552965164,-0.009999999776482582,0.0,-0.013333333656191826,1.8503717525142107e-19,0.0,0.006666666828095913,0.0,0.0,-0.0,0.02500000037252903,0.0,-0.15000000596046448,-5.828670614584276e-17,0.0,0.0,0.0,0.07500000298023224,0.0,1.9428902600067994e-17,0.029999999329447746,0.0,-0.029999999329447746,-0.019999999552965164,0.0,0.0,0.0,0.0,0.019999999552965164,-0.0,0.01666666753590107,-0.0,-3.885780520013599e-17,-0.05000000074505806,-0.0,-0.0,-0.0,1.9428902600067994e-17,-0.0,0.01666666753590107,5.0,3.0,5.0,0.26476189494132996,-0.09809523820877075,-0.14000000059604645,-0.09809523820877075,0.009523809887468815,0.019999999552965164,0.013333333656191826,0.019999999552965164,0.019999999552965164,0.009523809887468815,-0.09809523820877075,0.10619047284126282,0.019999999552965164,0.013333333656191826,-0.01904761977493763,-0.009999999776482582,-0.006666666828095913,-7.703719777548943e-34,0.0,0.0,-0.14000000059604645,0.019999999552965164,0.3400000035762787,0.019999999552965164,-5.610336995004425e-19,-0.019999999552965164,0.0,-0.11999999731779099,-0.019999999552965164,-1.9081958235744878e-17,-0.09809523820877075,0.013333333656191826,0.019999999552965164,0.10619047284126282,-5.422363819716929e-19,-1.8421110616281617e-19,-0.006666666828095913,-3.806479045560385e-17,-0.009999999776482582,-0.01904761977493763,0.009523809887468815,-0.01904761977493763,-5.610336995004425e-19,-5.422363819716929e-19,0.004761904943734407,2.7825288226305775e-19,2.4556976133956294e-19,-1.7505715568003642e-34,2.263965669627969e-21,-6.717248764972719e-20,0.019999999552965164,-0.009999999776482582,-0.019999999552965164,-1.8421110616281617e-19,2.7825288226305775e-19,0.009999999776482582,1.284226577660202e-20,1.0020733478212389e-34,-1.084434792798978e-21,-1.7517921152722915e-20,0.013333333656191826,-0.006666666828095913,0.0,-0.006666666828095913,2.4556976133956294e-19,1.284226577660202e-20,0.0033333334140479565,3.9437518637626e-34,-6.379452113495644e-20,0.0,0.019999999552965164,-7.703719777548943e-34,-0.11999999731779099,-3.806479045560385e-17,-1.7505715568003642e-34,1.0020733478212389e-34,3.9437518637626e-34,0.05999999865889549,0.0,9.516197613900963e-18,0.019999999552965164,0.0,-0.019999999552965164,-0.009999999776482582,2.263965669627969e-21,-1.084434792798978e-21,-6.379452113495644e-20,0.0,0.009999999776482582,0.0,0.009523809887468815,0.0,-1.9081958235744878e-17,-0.01904761977493763,-6.717248764972719e-20,-1.7517921152722915e-20,0.0,9.516197613900963e-18,0.0,0.004761904943734407,5.0,3.0,6.0,0.23174603283405304,-0.0833333358168602,-0.1190476194024086,-0.07261905074119568,0.007936508394777775,0.01666666753590107,0.009523809887468815,0.01666666753590107,0.014285714365541935,0.0059523810632526875,-0.0833333358168602,0.0892857164144516,0.01666666753590107,0.009523809887468815,-0.01587301678955555,-0.008333333767950535,-0.004761904943734407,-7.703719777548943e-34,1.0842021724855044e-19,0.0,-0.1190476194024086,0.01666666753590107,0.2857142984867096,0.014285714365541935,3.9718904663899483e-19,-0.01666666753590107,-2.168404344971009e-19,-0.10000000149011612,-0.014285714365541935,-1.0842021724855044e-17,-0.07261905074119568,0.009523809887468815,0.014285714365541935,0.06178571283817291,4.149473736195895e-19,1.0718112654034015e-19,-0.003809523768723011,-2.7259940573115715e-17,-0.0057142856530845165,-0.008928571827709675,0.007936508394777775,-0.01587301678955555,3.9718904663899483e-19,4.149473736195895e-19,0.003968254197388887,-1.6672119929099495e-19,-3.039188232551121e-20,-2.332852769575962e-35,-2.5498658253449694e-20,-5.923707907721604e-20,0.01666666753590107,-0.008333333767950535,-0.01666666753590107,1.0718112654034015e-19,-1.6672119929099495e-19,0.008333333767950535,-7.346541602491493e-21,2.0471406311125433e-35,9.507836305863802e-22,-1.721845753717171e-20,0.009523809887468815,-0.004761904943734407,-2.168404344971009e-19,-0.003809523768723011,-3.039188232551121e-20,-7.346541602491493e-21,0.0019047618843615055,1.4225614524347948e-34,8.987089880720194e-20,1.0842021724855044e-19,0.01666666753590107,-7.703719777548943e-34,-0.10000000149011612,-2.7259940573115715e-17,-2.332852769575962e-35,2.0471406311125433e-35,1.4225614524347948e-34,0.05000000074505806,3.851859888774472e-34,5.4519879491870205e-18,0.014285714365541935,1.0842021724855044e-19,-0.014285714365541935,-0.0057142856530845165,-2.5498658253449694e-20,9.507836305863802e-22,8.987089880720194e-20,3.851859888774472e-34,0.0057142856530845165,0.0,0.0059523810632526875,0.0,-1.0842021724855044e-17,-0.008928571827709675,-5.923707907721604e-20,-1.721845753717171e-20,1.0842021724855044e-19,5.4519879491870205e-18,0.0,0.0017857142956927419,5.0,3.0,7.0,0.20606575906276703,-0.0724489763379097,-0.10357142984867096,-0.05595238134264946,0.006802720949053764,0.014285714365541935,0.0071428571827709675,0.014285714365541935,0.010714286006987095,0.003968254197388887,-0.0724489763379097,0.07704081386327744,0.014285714365541935,0.0071428571827709675,-0.013605441898107529,-0.0071428571827709675,-0.0035714285913854837,-9.06304540959563e-17,2.3852447794681098e-18,8.131516293641283e-18,-0.10357142984867096,0.014285714365541935,0.24642856419086456,0.010714286006987095,-5.636351122165697e-17,-0.014285714365541935,3.2526065174565133e-18,-0.08571428805589676,-0.010714286006987095,3.122502256758253e-17,-0.05595238134264946,0.0071428571827709675,0.010714286006987095,0.03928571566939354,1.066706061759089e-17,2.6169542817842188e-17,-0.0023809524718672037,9.436895974011627e-17,-0.0035714285913854837,-0.004761904943734407,0.006802720949053764,-0.013605441898107529,-5.636351122165697e-17,1.066706061759089e-17,0.003401360474526882,5.524141673249102e-18,-4.2438067057211495e-19,2.2657613523989076e-17,-8.02660456583281e-33,-1.258756306888282e-18,0.014285714365541935,-0.0071428571827709675,-0.014285714365541935,2.6169542817842188e-17,5.524141673249102e-18,0.0071428571827709675,-1.5860329011843016e-18,9.966052695254502e-32,-2.3790494034752407e-18,-3.1720658023686032e-18,0.0071428571827709675,-0.0035714285913854837,3.2526065174565133e-18,-0.0023809524718672037,-4.2438067057211495e-19,-1.5860329011843016e-18,0.0011904762359336019,-2.311115933264683e-33,-2.710505431213761e-20,5.421010862427522e-20,0.014285714365541935,-9.06304540959563e-17,-0.08571428805589676,9.436895974011627e-17,2.2657613523989076e-17,9.966052695254502e-32,-2.311115933264683e-33,0.04285714402794838,-1.189524681058105e-17,-1.2423924409843292e-17,0.010714286006987095,2.3852447794681098e-18,-0.010714286006987095,-0.0035714285913854837,-8.02660456583281e-33,-2.3790494034752407e-18,-2.710505431213761e-20,-1.189524681058105e-17,0.0035714285913854837,0.0,0.003968254197388887,8.131516293641283e-18,3.122502256758253e-17,-0.004761904943734407,-1.258756306888282e-18,-3.1720658023686032e-18,5.421010862427522e-20,-1.2423924409843292e-17,0.0,0.0007936508045531809,5.0,3.0,8.0,0.1855158656835556,-0.06408730149269104,-0.09166666865348816,-0.04444444552063942,0.0059523810632526875,0.012500000186264515,0.0055555556900799274,0.012500000186264515,0.008333333767950535,0.0027777778450399637,-0.06408730149269104,0.06775793433189392,0.012500000186264515,0.0055555556900799274,-0.011904762126505375,-0.0062500000931322575,-0.0027777778450399637,-8.673617379884035e-18,-7.37257477290143e-18,-1.2739375526704677e-17,-0.09166666865348816,0.012500000186264515,0.21666666865348816,0.008333333767950535,-1.8648277366750676e-17,-0.012500000186264515,-3.3610267347050637e-18,-0.07500000298023224,-0.008333333767950535,-1.6859343782149594e-17,-0.04444444552063942,0.0055555556900799274,0.008333333767950535,0.02658730186522007,-1.6696713456276768e-17,-1.8648277366750676e-17,-0.0015873016091063619,-3.426078865054194e-17,-0.0023809524718672037,-0.0027777778450399637,0.0059523810632526875,-0.011904762126505375,-1.8648277366750676e-17,-1.6696713456276768e-17,0.0029761905316263437,2.451953380352908e-18,1.836738394302659e-19,3.4328981833831118e-18,1.7327300740981309e-18,1.883801274693564e-18,0.012500000186264515,-0.0062500000931322575,-0.012500000186264515,-1.8648277366750676e-17,2.451953380352908e-18,0.0062500000931322575,8.131516293641283e-19,-7.26415455565288e-18,6.505213034913027e-19,2.1348946379710263e-18,0.0055555556900799274,-0.0027777778450399637,-3.3610267347050637e-18,-0.0015873016091063619,1.836738394302659e-19,8.131516293641283e-19,0.0007936508045531809,5.421010862427522e-19,1.6263032587282567e-19,6.183611416607004e-19,0.012500000186264515,-8.673617379884035e-18,-0.07500000298023224,-3.426078865054194e-17,3.4328981833831118e-18,-7.26415455565288e-18,5.421010862427522e-19,0.03750000149011612,-3.2526065174565133e-18,4.406900666327311e-18,0.008333333767950535,-7.37257477290143e-18,-0.008333333767950535,-0.0023809524718672037,1.7327300740981309e-18,6.505213034913027e-19,1.6263032587282567e-19,-3.2526065174565133e-18,0.0023809524718672037,7.347946710933583e-19,0.0027777778450399637,-1.2739375526704677e-17,-1.6859343782149594e-17,-0.0027777778450399637,1.883801274693564e-18,2.1348946379710263e-18,6.183611416607004e-19,4.406900666327311e-18,7.347946710933583e-19,0.00039682540227659047,5.0,3.0,9.0,0.16869649291038513,-0.05746031925082207,-0.08222222328186035,-0.03616161644458771,0.005291005130857229,0.011111111380159855,0.004444444552063942,0.011111111380159855,0.006666666828095913,0.002020202111452818,-0.05746031925082207,0.060476191341876984,0.011111111380159855,0.004444444552063942,-0.010582010261714458,-0.0055555556900799274,-0.002222222276031971,5.117434254131581e-17,2.168404344971009e-19,-2.168404344971009e-19,-0.08222222328186035,0.011111111380159855,0.19333332777023315,0.006666666828095913,2.129791719413156e-17,-0.011111111380159855,7.37257477290143e-18,-0.06666667014360428,-0.006666666828095913,2.536583262798974e-18,-0.03616161644458771,0.004444444552063942,0.006666666828095913,0.01885281316936016,2.3852447794681098e-18,2.6020852139652106e-18,-0.0011111111380159855,1.3010426069826053e-17,-0.0016666667070239782,-0.0017316017765551805,0.005291005130857229,-0.010582010261714458,2.129791719413156e-17,2.3852447794681098e-18,0.0026455025654286146,-2.0650925883904328e-18,-1.292760254304265e-18,-8.549080375580502e-18,-2.0328790734103208e-20,1.3552527156068805e-20,0.011111111380159855,-0.0055555556900799274,-0.011111111380159855,2.6020852139652106e-18,-2.0650925883904328e-18,0.0055555556900799274,-8.131516293641283e-19,-3.2526065174565133e-18,-8.131516293641283e-20,-3.6290904708061787e-20,0.004444444552063942,-0.002222222276031971,7.37257477290143e-18,-0.0011111111380159855,-1.292760254304265e-18,-8.131516293641283e-19,0.0005555555690079927,-2.710505431213761e-18,-8.131516293641283e-20,2.6830267578366266e-21,0.011111111380159855,5.117434254131581e-17,-0.06666667014360428,1.3010426069826053e-17,-8.549080375580502e-18,-3.2526065174565133e-18,-2.710505431213761e-18,0.03333333507180214,3.469446951953614e-18,-1.2952248389393667e-18,0.006666666828095913,2.168404344971009e-19,-0.006666666828095913,-0.0016666667070239782,-2.0328790734103208e-20,-8.131516293641283e-20,-8.131516293641283e-20,3.469446951953614e-18,0.0016666667070239782,2.0328790734103208e-20,0.002020202111452818,-2.168404344971009e-19,2.536583262798974e-18,-0.0017316017765551805,1.3552527156068805e-20,-3.6290904708061787e-20,2.6830267578366266e-21,-1.2952248389393667e-18,2.0328790734103208e-20,0.00021645022206939757,5.0,3.0,10.0,0.15467531979084015,-0.052077922970056534,-0.07454545795917511,-0.029999999329447746,0.004761904943734407,0.009999999776482582,0.003636363660916686,0.009999999776482582,0.005454545374959707,0.0015151514671742916,-0.052077922970056534,0.05461039021611214,0.009999999776482582,0.003636363660916686,-0.009523809887468815,-0.004999999888241291,-0.001818181830458343,-6.635317295611287e-17,-7.15573433840433e-18,-3.1712913545201005e-18,-0.07454545795917511,0.009999999776482582,0.17454545199871063,0.005454545374959707,-4.9530274751752364e-17,-0.009999999776482582,-4.336808689942018e-19,-0.05999999865889549,-0.005454545374959707,-5.933613033665408e-18,-0.029999999329447746,0.003636363660916686,0.005454545374959707,0.013863636180758476,-8.348356728138384e-18,-6.7220534694101275e-18,-0.000808080832939595,-1.7997756063259374e-17,-0.001212121220305562,-0.0011363636003807187,0.004761904943734407,-0.009523809887468815,-4.9530274751752364e-17,-8.348356728138384e-18,0.0023809524718672037,3.4424330943040105e-18,7.428759671840599e-19,1.678689599537975e-17,1.782157321023048e-18,4.404571325722362e-19,0.009999999776482582,-0.004999999888241291,-0.009999999776482582,-6.7220534694101275e-18,3.4424330943040105e-18,0.004999999888241291,4.336808689942018e-19,1.6263032587282567e-18,-2.574980159653073e-19,6.278490066842602e-19,0.003636363660916686,-0.001818181830458343,-4.336808689942018e-19,-0.000808080832939595,7.428759671840599e-19,4.336808689942018e-19,0.0004040404164697975,-5.421010862427522e-19,1.0164395367051604e-19,1.0737389193480768e-19,0.009999999776482582,-6.635317295611287e-17,-0.05999999865889549,-1.7997756063259374e-17,1.678689599537975e-17,1.6263032587282567e-18,-5.421010862427522e-19,0.029999999329447746,2.3852447794681098e-18,1.813407584179842e-18,0.005454545374959707,-7.15573433840433e-18,-0.005454545374959707,-0.001212121220305562,1.782157321023048e-18,-2.574980159653073e-19,1.0164395367051604e-19,2.3852447794681098e-18,0.001212121220305562,1.5585406229479126e-19,0.0015151514671742916,-3.1712913545201005e-18,-5.933613033665408e-18,-0.0011363636003807187,4.404571325722362e-19,6.278490066842602e-19,1.0737389193480768e-19,1.813407584179842e-18,1.5585406229479126e-19,0.00012626263196580112,5.0,3.0,11.0,0.14280718564987183,-0.0476190485060215,-0.06818182021379471,-0.025291375815868378,0.0043290043249726295,0.00909090880304575,0.0030303029343485832,0.00909090880304575,0.004545454401522875,0.0011655011912807822,-0.0476190485060215,0.04978355020284653,0.00909090880304575,0.0030303029343485832,-0.008658008649945259,-0.004545454401522875,-0.0015151514671742916,5.4643789493269423e-17,1.3010426069826053e-18,-2.032879073410321e-18,-0.06818182021379471,0.00909090880304575,0.15909090638160706,0.004545454401522875,4.890129240423133e-18,-0.00909090880304575,6.7220534694101275e-18,-0.05454545468091965,-0.004545454401522875,-2.807324233576102e-18,-0.025291375815868378,0.0030303029343485832,0.004545454401522875,0.010497280396521091,-2.2768245622195593e-18,-2.8189256484623115e-18,-0.000606060610152781,4.336808689942018e-18,-0.0009090909152291715,-0.0007770007941871881,0.0043290043249726295,-0.008658008649945259,4.890129240423133e-18,-2.2768245622195593e-18,0.0021645021624863148,2.0135555139156227e-18,-4.081278898545492e-19,-4.409990185915197e-18,0.0,2.981555974335137e-19,0.00909090880304575,-0.004545454401522875,-0.00909090880304575,-2.8189256484623115e-18,2.0135555139156227e-18,0.004545454401522875,0.0,-1.5937771935536915e-17,-6.776263578034403e-19,3.6068367920125733e-19,0.0030303029343485832,-0.0015151514671742916,6.7220534694101275e-18,-0.000606060610152781,-4.081278898545492e-19,0.0,0.0003030303050763905,-3.198396408832238e-18,-4.743384504624082e-20,7.159095690221015e-20,0.00909090880304575,5.4643789493269423e-17,-0.05454545468091965,4.336808689942018e-18,-4.409990185915197e-18,-1.5937771935536915e-17,-3.198396408832238e-18,0.027272727340459824,-2.3852447794681098e-18,6.912516251546255e-19,0.004545454401522875,1.3010426069826053e-18,-0.004545454401522875,-0.0009090909152291715,0.0,-6.776263578034403e-19,-4.743384504624082e-20,-2.3852447794681098e-18,0.0009090909152291715,1.0842021724855044e-19,0.0011655011912807822,-2.032879073410321e-18,-2.807324233576102e-18,-0.0007770007941871881,2.981555974335137e-19,3.6068367920125733e-19,7.159095690221015e-20,6.912516251546255e-19,1.0842021724855044e-19,7.770007505314425e-05,5.0,3.0,12.0,0.13263125717639923,-0.04386446997523308,-0.06282051652669907,-0.02161172218620777,0.003968254197388887,0.008333333767950535,0.0025641026441007853,0.008333333767950535,0.003846153849735856,0.0009157509193755686,-0.04386446997523308,0.04574175924062729,0.008333333767950535,0.0025641026441007853,-0.007936508394777775,-0.004166666883975267,-0.0012820513220503926,-5.117434254131581e-17,-4.445228907190568e-18,4.946672411965114e-19,-0.06282051652669907,0.008333333767950535,0.14615385234355927,0.003846153849735856,-2.4822626428448617e-17,-0.008333333767950535,-4.9873299934333204e-18,-0.05000000074505806,-0.003846153849735856,3.655475529018574e-19,-0.02161172218620777,0.0025641026441007853,0.003846153849735856,0.008141858503222466,-3.2526065174565133e-19,2.168404344971009e-19,-0.0004662004648707807,-5.854691731421724e-18,-0.0006993007264100015,-0.0005494505749084055,0.003968254197388887,-0.007936508394777775,-2.4822626428448617e-17,-3.2526065174565133e-19,0.0019841270986944437,2.3780038471809737e-18,4.3092338487407383e-19,7.147632931484985e-18,8.267041565201971e-19,-1.3552527156068805e-19,0.008333333767950535,-0.004166666883975267,-0.008333333767950535,2.168404344971009e-19,2.3780038471809737e-18,0.004166666883975267,1.0842021724855044e-19,8.782037597132586e-18,9.486769009248164e-20,-4.924577771568969e-20,0.0025641026441007853,-0.0012820513220503926,-4.9873299934333204e-18,-0.0004662004648707807,4.3092338487407383e-19,1.0842021724855044e-19,0.00023310023243539035,1.7889335846010823e-18,1.6940658945086007e-19,2.6345145132252738e-20,0.008333333767950535,-5.117434254131581e-17,-0.05000000074505806,-5.854691731421724e-18,7.147632931484985e-18,8.782037597132586e-18,1.7889335846010823e-18,0.02500000037252903,5.204170427930421e-18,-2.7775230874549245e-19,0.003846153849735856,-4.445228907190568e-18,-0.003846153849735856,-0.0006993007264100015,8.267041565201971e-19,9.486769009248164e-20,1.6940658945086007e-19,5.204170427930421e-18,0.0006993007264100015,4.912791094074942e-20,0.0009157509193755686,4.946672411965114e-19,3.655475529018574e-19,-0.0005494505749084055,-1.3552527156068805e-19,-4.924577771568969e-20,2.6345145132252738e-20,-2.7775230874549245e-19,4.912791094074942e-20,4.995004928787239e-05,5.0,3.0,13.0,0.12380952388048172,-0.0406593419611454,-0.05824175849556923,-0.018681319430470467,0.0036630036775022745,0.007692307699471712,0.002197802299633622,0.007692307699471712,0.0032967033330351114,0.0007326007471419871,-0.0406593419611454,0.042307693511247635,0.007692307699471712,0.002197802299633622,-0.007326007355004549,-0.003846153849735856,-0.001098901149816811,-4.0332320816460765e-17,-3.7947076036992655e-18,1.0842021724855044e-19,-0.05824175849556923,0.007692307699471712,0.13516484200954437,0.0032967033330351114,-3.547907349159984e-17,-0.007692307699471712,3.686287386450715e-18,-0.04615384712815285,-0.0032967033330351114,5.011703800760384e-19,-0.018681319430470467,0.002197802299633622,0.0032967033330351114,0.006443556398153305,-2.927345865710862e-18,0.0,-0.00036630037357099354,5.204170427930421e-18,-0.0005494505749084055,-0.0003996003943029791,0.0036630036775022745,-0.007326007355004549,-3.547907349159984e-17,-2.927345865710862e-18,0.0018315018387511373,2.2175291539844612e-18,6.396007099480127e-19,1.1487457521940371e-17,9.961107459710572e-19,2.0328790734103208e-20,0.007692307699471712,-0.003846153849735856,-0.007692307699471712,0.0,2.2175291539844612e-18,0.003846153849735856,-1.0842021724855044e-19,4.87890977618477e-18,4.336808689942018e-19,-4.0142968498447596e-20,0.002197802299633622,-0.001098901149816811,3.686287386450715e-18,-0.00036630037357099354,6.396007099480127e-19,-1.0842021724855044e-19,0.00018315018678549677,-1.4094628242311558e-18,-9.486769009248164e-20,-1.9461580719133723e-20,0.007692307699471712,-4.0332320816460765e-17,-0.04615384712815285,5.204170427930421e-18,1.1487457521940371e-17,4.87890977618477e-18,-1.4094628242311558e-18,0.023076923564076424,9.75781955236954e-19,-2.0954956118048193e-19,0.0032967033330351114,-3.7947076036992655e-18,-0.0032967033330351114,-0.0005494505749084055,9.961107459710572e-19,4.336808689942018e-19,-9.486769009248164e-20,9.75781955236954e-19,0.0005494505749084055,-4.235164736271502e-21,0.0007326007471419871,1.0842021724855044e-19,5.011703800760384e-19,-0.0003996003943029791,2.0328790734103208e-20,-4.0142968498447596e-20,-1.9461580719133723e-20,-2.0954956118048193e-19,-4.235164736271502e-21,3.330003164592199e-05,5.0,3.0,14.0,0.11608843505382538,-0.03789115697145462,-0.05428571254014969,-0.016309523954987526,0.003401360474526882,0.0071428571827709675,0.0019047618843615055,0.0071428571827709675,0.0028571428265422583,0.0005952381179668009,-0.03789115697145462,0.03935374319553375,0.0071428571827709675,0.0019047618843615055,-0.006802720949053764,-0.0035714285913854837,-0.0009523809421807528,4.7271214720367993e-17,8.673617379884035e-19,6.166399856011306e-19,-0.05428571254014969,0.0071428571827709675,0.1257142871618271,0.0028571428265422583,2.0146643908857806e-17,-0.0071428571827709675,2.2768245622195593e-18,-0.04285714402794838,-0.0028571428265422583,7.480815181764327e-19,-0.016309523954987526,0.0019047618843615055,0.0028571428265422583,0.00518772890791297,2.3310346708438345e-18,1.5178830414797062e-18,-0.00029304029885679483,5.637851296924623e-18,-0.00043956044828519225,-0.00029761905898340046,0.003401360474526882,-0.006802720949053764,2.0146643908857806e-17,2.3310346708438345e-18,0.001700680237263441,-2.436052280642648e-18,-2.7694710011796037e-19,-6.565239877604775e-18,-3.1509625637859973e-19,-1.0503208545953324e-19,0.0071428571827709675,-0.0035714285913854837,-0.0071428571827709675,1.5178830414797062e-18,-2.436052280642648e-18,0.0035714285913854837,-2.303929616531697e-19,-9.75781955236954e-18,2.507217523872729e-19,-8.615977883837692e-20,0.0019047618843615055,-0.0009523809421807528,2.2768245622195593e-18,-0.00029304029885679483,-2.7694710011796037e-19,-2.303929616531697e-19,0.00014652014942839742,-1.0570971181733668e-18,3.049318610115481e-20,-1.4792795627299706e-20,0.0071428571827709675,4.7271214720367993e-17,-0.04285714402794838,5.637851296924623e-18,-6.565239877604775e-18,-9.75781955236954e-18,-1.0570971181733668e-18,0.02142857201397419,5.421010862427522e-19,-2.4769300472501585e-19,0.0028571428265422583,8.673617379884035e-19,-0.0028571428265422583,-0.00043956044828519225,-3.1509625637859973e-19,2.507217523872729e-19,3.049318610115481e-20,5.421010862427522e-19,0.00043956044828519225,-1.6093625997831706e-20,0.0005952381179668009,6.166399856011306e-19,7.480815181764327e-19,-0.00029761905898340046,-1.0503208545953324e-19,-8.615977883837692e-20,-1.4792795627299706e-20,-2.4769300472501585e-19,-1.6093625997831706e-20,2.2893773348187096e-05,5.0,3.0,15.0,0.10927404463291168,-0.035476189106702805,-0.050833333283662796,-0.014362744987010956,0.0031746032182127237,0.006666666828095913,0.0016666667070239782,0.006666666828095913,0.0024999999441206455,0.0004901961074210703,-0.035476189106702805,0.03678571432828903,0.006666666828095913,0.0016666667070239782,-0.0063492064364254475,-0.0033333334140479565,-0.0008333333535119891,1.214306433183765e-17,3.2526065174565133e-19,-9.317362419797304e-19,-0.050833333283662796,0.006666666828095913,0.11749999970197678,0.0024999999441206455,7.898143000241085e-18,-0.006666666828095913,3.2526065174565133e-19,-0.03999999910593033,-0.0024999999441206455,-2.0781814808131656e-18,-0.014362744987010956,0.0016666667070239782,0.0024999999441206455,0.004238849505782127,-1.8431436932253575e-18,-2.927345865710862e-18,-0.0002380952355451882,-1.2576745200831851e-17,-0.0003571428533177823,-0.0002262443449581042,0.0031746032182127237,-0.0063492064364254475,7.898143000241085e-18,-1.8431436932253575e-18,0.0015873016091063619,-3.088324053406478e-19,5.281010866870349e-20,-2.7700574722339038e-18,-1.1519648082658485e-19,1.2197274440461925e-19,0.006666666828095913,-0.0033333334140479565,-0.006666666828095913,-2.927345865710862e-18,-3.088324053406478e-19,0.0033333334140479565,5.421010862427522e-20,9.75781955236954e-19,-2.0328790734103208e-20,1.9539222282496908e-19,0.0016666667070239782,-0.0008333333535119891,3.2526065174565133e-19,-0.0002380952355451882,5.281010866870349e-20,5.421010862427522e-20,0.0001190476177725941,-1.6263032587282567e-19,-1.6940658945086007e-21,1.9198580905194475e-20,0.006666666828095913,1.214306433183765e-17,-0.03999999910593033,-1.2576745200831851e-17,-2.7700574722339038e-18,9.75781955236954e-19,-1.6263032587282567e-19,0.019999999552965164,3.2526065174565133e-18,6.12756889613077e-19,0.0024999999441206455,3.2526065174565133e-19,-0.0024999999441206455,-0.0003571428533177823,-1.1519648082658485e-19,-2.0328790734103208e-20,-1.6940658945086007e-21,3.2526065174565133e-18,0.0003571428533177823,5.378659215064807e-20,0.0004901961074210703,-9.317362419797304e-19,-2.0781814808131656e-18,-0.0002262443449581042,1.2197274440461925e-19,1.9539222282496908e-19,1.9198580905194475e-20,6.12756889613077e-19,5.378659215064807e-20,1.6160311133717187e-05,5.0,3.0,16.0,0.10321545600891113,-0.03335084021091461,-0.04779411852359772,-0.01274509821087122,0.0029761905316263437,0.0062500000931322575,0.00147058826405555,0.0062500000931322575,0.002205882454290986,0.00040849673678167164,-0.03335084021091461,0.034532561898231506,0.0062500000931322575,0.00147058826405555,-0.0059523810632526875,-0.0031250000465661287,-0.000735294132027775,-3.426078865054194e-17,-2.168404344971009e-19,-1.6601845766184287e-19,-0.04779411852359772,0.0062500000931322575,0.11029411852359772,0.002205882454290986,-1.1750773099153764e-17,-0.0062500000931322575,-5.421010862427522e-19,-0.03750000149011612,-0.002205882454290986,-3.200553075484317e-19,-0.01274509821087122,0.00147058826405555,0.002205882454290986,0.003508403431624174,1.0842021724855044e-18,-6.505213034913027e-19,-0.0001960784284165129,3.2526065174565133e-19,-0.00029411763534881175,-0.00017507003212813288,0.0029761905316263437,-0.0059523810632526875,-1.1750773099153764e-17,1.0842021724855044e-18,0.0014880952658131719,-6.705855515257538e-19,-5.872139141889575e-19,6.388345235658778e-18,-1.3552527156068805e-20,2.541098841762901e-20,0.0062500000931322575,-0.0031250000465661287,-0.0062500000931322575,-6.505213034913027e-19,-6.705855515257538e-19,0.0031250000465661287,2.710505431213761e-20,4.9873299934333204e-18,1.2197274440461925e-19,2.9628174900274555e-20,0.00147058826405555,-0.000735294132027775,-5.421010862427522e-19,-0.0001960784284165129,-5.872139141889575e-19,2.710505431213761e-20,9.803921420825645e-05,1.6263032587282567e-19,-1.6940658945086007e-21,4.767616615265981e-21,0.0062500000931322575,-3.426078865054194e-17,-0.03750000149011612,3.2526065174565133e-19,6.388345235658778e-18,4.9873299934333204e-18,1.6263032587282567e-19,0.01875000074505806,-1.734723475976807e-18,1.1811819907239578e-19,0.002205882454290986,-2.168404344971009e-19,-0.002205882454290986,-0.00029411763534881175,-1.3552527156068805e-20,1.2197274440461925e-19,-1.6940658945086007e-21,-1.734723475976807e-18,0.00029411763534881175,2.541098841762901e-21,0.00040849673678167164,-1.6601845766184287e-19,-3.200553075484317e-19,-0.00017507003212813288,2.541098841762901e-20,2.9628174900274555e-20,4.767616615265981e-21,1.1811819907239578e-19,2.541098841762901e-21,1.1671335414575879e-05,5.0,4.0,3.0,0.3088095188140869,-0.1192857176065445,-0.14000000059604645,-0.17000000178813934,0.011904762126505375,0.019999999552965164,0.02500000037252903,0.01666666753590107,0.029999999329447746,0.02500000037252903,-0.1192857176065445,0.13107143342494965,0.019999999552965164,0.02500000037252903,-0.02380952425301075,-0.009999999776482582,-0.012500000186264515,0.0,0.0,-0.0,-0.14000000059604645,0.019999999552965164,0.20999999344348907,0.029999999329447746,-7.401487010056843e-19,-0.013333333656191826,2.2204459996194763e-18,-0.05000000074505806,-0.019999999552965164,-0.0,-0.17000000178813934,0.02500000037252903,0.029999999329447746,0.41999998688697815,-5.583018062805154e-20,2.2204459996194763e-18,-0.02500000037252903,0.0,-0.029999999329447746,-0.15000000596046448,0.011904762126505375,-0.02380952425301075,-7.401487010056843e-19,-5.583018062805154e-20,0.0059523810632526875,3.7007435050284215e-19,2.791509031402577e-20,0.0,0.0,-0.0,0.019999999552965164,-0.009999999776482582,-0.013333333656191826,2.2204459996194763e-18,3.7007435050284215e-19,0.006666666828095913,-1.1102229998097382e-18,0.0,0.0,-0.0,0.02500000037252903,-0.012500000186264515,2.2204459996194763e-18,-0.02500000037252903,2.791509031402577e-20,-1.1102229998097382e-18,0.012500000186264515,0.0,0.0,-0.0,0.01666666753590107,0.0,-0.05000000074505806,0.0,0.0,0.0,0.0,0.01666666753590107,0.0,-0.0,0.029999999329447746,0.0,-0.019999999552965164,-0.029999999329447746,0.0,0.0,0.0,0.0,0.019999999552965164,-0.0,0.02500000037252903,-0.0,-0.0,-0.15000000596046448,-0.0,-0.0,-0.0,-0.0,-0.0,0.07500000298023224,5.0,4.0,4.0,0.2558571398258209,-0.09321428835391998,-0.10949999839067459,-0.10949999839067459,0.008928571827709675,0.014999999664723873,0.014999999664723873,0.012500000186264515,0.017999999225139618,0.012500000186264515,-0.09321428835391998,0.10017856955528259,0.014999999664723873,0.014999999664723873,-0.01785714365541935,-0.007499999832361937,-0.007499999832361937,0.0,0.0,-0.0,-0.10949999839067459,0.014999999664723873,0.16050000488758087,0.017999999225139618,4.2928313268342166e-35,-0.009999999776482582,-1.3322676411307164e-18,-0.03750000149011612,-0.012000000104308128,-0.0,-0.10949999839067459,0.014999999664723873,0.017999999225139618,0.16050000488758087,3.2221990996451226e-19,-1.3322676411307164e-18,-0.009999999776482582,0.0,-0.012000000104308128,-0.03750000149011612,0.008928571827709675,-0.01785714365541935,4.2928313268342166e-35,3.2221990996451226e-19,0.004464285913854837,-2.1464156634171083e-35,-1.6110995498225613e-19,0.0,0.0,-0.0,0.014999999664723873,-0.007499999832361937,-0.009999999776482582,-1.3322676411307164e-18,-2.1464156634171083e-35,0.004999999888241291,6.661338205653582e-19,0.0,0.0,-0.0,0.014999999664723873,-0.007499999832361937,-1.3322676411307164e-18,-0.009999999776482582,-1.6110995498225613e-19,6.661338205653582e-19,0.004999999888241291,0.0,0.0,-0.0,0.012500000186264515,0.0,-0.03750000149011612,0.0,0.0,0.0,0.0,0.012500000186264515,0.0,-0.0,0.017999999225139618,0.0,-0.012000000104308128,-0.012000000104308128,0.0,0.0,0.0,0.0,0.00800000037997961,-0.0,0.012500000186264515,-0.0,-0.0,-0.03750000149011612,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,5.0,4.0,5.0,0.21857142448425293,-0.07657142728567123,-0.09000000357627869,-0.07657142728567123,0.0071428571827709675,0.012000000104308128,0.009999999776482582,0.009999999776482582,0.012000000104308128,0.0071428571827709675,-0.07657142728567123,0.081142857670784,0.012000000104308128,0.009999999776482582,-0.014285714365541935,-0.006000000052154064,-0.004999999888241291,0.0,1.0297782376728843e-18,0.0,-0.09000000357627869,0.012000000104308128,0.12999999523162842,0.012000000104308128,4.65820299610702e-19,-0.00800000037997961,1.0842021724855044e-19,-0.029999999329447746,-0.00800000037997961,3.0357660829594124e-18,-0.07657142728567123,0.009999999776482582,0.012000000104308128,0.081142857670784,1.2897910636461118e-19,-8.518345756138058e-19,-0.004999999888241291,-0.0,-0.006000000052154064,-0.014285714365541935,0.0071428571827709675,-0.014285714365541935,4.65820299610702e-19,1.2897910636461118e-19,0.0035714285913854837,-2.220446154715841e-19,9.249524562280006e-20,0.0,-1.0865541603908967e-20,-6.843018345937139e-20,0.012000000104308128,-0.006000000052154064,-0.00800000037997961,-8.518345756138058e-19,-2.220446154715841e-19,0.004000000189989805,4.259172878069029e-19,0.0,-9.62964972193618e-35,0.0,0.009999999776482582,-0.004999999888241291,1.0842021724855044e-19,-0.004999999888241291,9.249524562280006e-20,4.259172878069029e-19,0.0024999999441206455,0.0,-4.336808689942018e-19,0.0,0.009999999776482582,0.0,-0.029999999329447746,-0.0,0.0,0.0,0.0,0.009999999776482582,0.0,0.0,0.012000000104308128,1.0297782376728843e-18,-0.00800000037997961,-0.006000000052154064,-1.0865541603908967e-20,-9.62964972193618e-35,-4.336808689942018e-19,0.0,0.004000000189989805,-1.5178830414797062e-18,0.0071428571827709675,0.0,3.0357660829594124e-18,-0.014285714365541935,-6.843018345937139e-20,0.0,0.0,0.0,-1.5178830414797062e-18,0.0035714285913854837,5.0,4.0,6.0,0.19083333015441895,-0.06499999761581421,-0.07642856985330582,-0.056607142090797424,0.0059523810632526875,0.009999999776482582,0.0071428571827709675,0.008333333767950535,0.008571428246796131,0.004464285913854837,-0.06499999761581421,0.0682142823934555,0.009999999776482582,0.0071428571827709675,-0.011904762126505375,-0.004999999888241291,-0.0035714285913854837,0.0,7.276900685109286e-19,0.0,-0.07642856985330582,0.009999999776482582,0.10928571224212646,0.008571428246796131,-4.022256201418595e-19,-0.006666666828095913,1.5178830414797062e-18,-0.02500000037252903,-0.0057142856530845165,2.168404344971009e-18,-0.056607142090797424,0.0071428571827709675,0.008571428246796131,0.04719642922282219,-1.6542539501203649e-19,6.767073601428939e-19,-0.0028571428265422583,-0.0,-0.00342857139185071,-0.0066964286379516125,0.0059523810632526875,-0.011904762126505375,-4.022256201418595e-19,-1.6542539501203649e-19,0.0029761905316263437,1.8503717525142107e-19,5.521867443552464e-20,0.0,1.2860508986517936e-20,6.5781239329659756e-21,0.009999999776482582,-0.004999999888241291,-0.006666666828095913,6.767073601428939e-19,1.8503717525142107e-19,0.0033333334140479565,-3.3835368007144693e-19,-0.0,7.222237291452134e-35,0.0,0.0071428571827709675,-0.0035714285913854837,1.5178830414797062e-18,-0.0028571428265422583,5.521867443552464e-20,-3.3835368007144693e-19,0.0014285714132711291,0.0,-2.981555974335137e-19,0.0,0.008333333767950535,0.0,-0.02500000037252903,-0.0,0.0,-0.0,0.0,0.008333333767950535,0.0,0.0,0.008571428246796131,7.276900685109286e-19,-0.0057142856530845165,-0.00342857139185071,1.2860508986517936e-20,7.222237291452134e-35,-2.981555974335137e-19,0.0,0.0022857142612338066,-7.589415207398531e-19,0.004464285913854837,0.0,2.168404344971009e-18,-0.0066964286379516125,6.5781239329659756e-21,0.0,0.0,0.0,-7.589415207398531e-19,0.0013392857508733869,5.0,4.0,7.0,0.16937075555324554,-0.05647959187626839,-0.06642857193946838,-0.04357142746448517,0.005102040711790323,0.008571428246796131,0.0053571430034935474,0.0071428571827709675,0.006428571417927742,0.0029761905316263437,-0.05647959187626839,0.05885203927755356,0.008571428246796131,0.0053571430034935474,-0.010204081423580647,-0.004285714123398066,-0.0026785715017467737,-0.0,0.0,1.0842021724855044e-19,-0.06642857193946838,0.008571428246796131,0.09428571164608002,0.006428571417927742,0.0,-0.0057142856530845165,1.0842021724855044e-19,-0.02142857201397419,-0.004285714123398066,3.2526065174565133e-19,-0.04357142746448517,0.0053571430034935474,0.006428571417927742,0.029999999329447746,-0.0,-0.0,-0.0017857142956927419,-0.0,-0.002142857061699033,-0.0035714285913854837,0.005102040711790323,-0.010204081423580647,0.0,-0.0,0.0025510203558951616,0.0,0.0,0.0,0.0,0.0,0.008571428246796131,-0.004285714123398066,-0.0057142856530845165,-0.0,0.0,0.0028571428265422583,0.0,0.0,0.0,0.0,0.0053571430034935474,-0.0026785715017467737,1.0842021724855044e-19,-0.0017857142956927419,0.0,0.0,0.0008928571478463709,0.0,-2.710505431213761e-20,-2.710505431213761e-20,0.0071428571827709675,-0.0,-0.02142857201397419,-0.0,0.0,0.0,0.0,0.0071428571827709675,0.0,0.0,0.006428571417927742,0.0,-0.004285714123398066,-0.002142857061699033,0.0,0.0,-2.710505431213761e-20,0.0,0.0014285714132711291,-5.421010862427522e-20,0.0029761905316263437,1.0842021724855044e-19,3.2526065174565133e-19,-0.0035714285913854837,0.0,0.0,-2.710505431213761e-20,0.0,-5.421010862427522e-20,0.0005952381179668009,5.0,4.0,8.0,0.1522618979215622,-0.04994047433137894,-0.05874999985098839,-0.034583333879709244,0.004464285913854837,0.007499999832361937,0.004166666883975267,0.0062500000931322575,0.004999999888241291,0.0020833334419876337,-0.04994047433137894,0.05175595358014107,0.007499999832361937,0.004166666883975267,-0.008928571827709675,-0.0037499999161809683,-0.0020833334419876337,-9.107298248878237e-18,2.8189256484623115e-18,6.098637220230962e-19,-0.05874999985098839,0.007499999832361937,0.08291666954755783,0.004999999888241291,-8.673617379884035e-19,-0.004999999888241291,4.607859233063394e-19,-0.01875000074505806,-0.0033333334140479565,9.974659986866641e-18,-0.034583333879709244,0.004166666883975267,0.004999999888241291,0.020297618582844734,5.421010862427522e-18,6.7220534694101275e-18,-0.0011904762359336019,1.7564075194265172e-17,-0.0014285714132711291,-0.0020833334419876337,0.004464285913854837,-0.008928571827709675,-8.673617379884035e-19,5.421010862427522e-18,0.0022321429569274187,-2.1486046137868157e-19,-1.006949913922799e-18,1.953213929000798e-18,-1.0983707424027721e-18,-8.131516293641283e-20,0.007499999832361937,-0.0037499999161809683,-0.004999999888241291,6.7220534694101275e-18,-2.1486046137868157e-19,0.0024999999441206455,-8.673617379884035e-19,1.1926223897340549e-18,-1.6263032587282567e-19,-6.595584584785976e-19,0.004166666883975267,-0.0020833334419876337,4.607859233063394e-19,-0.0011904762359336019,-1.006949913922799e-18,-8.673617379884035e-19,0.0005952381179668009,5.421010862427522e-20,3.5236570605778894e-19,1.1986339506851781e-19,0.0062500000931322575,-9.107298248878237e-18,-0.01875000074505806,1.7564075194265172e-17,1.953213929000798e-18,1.1926223897340549e-18,5.421010862427522e-20,0.0062500000931322575,8.131516293641283e-20,-2.4742415551629963e-18,0.004999999888241291,2.8189256484623115e-18,-0.0033333334140479565,-0.0014285714132711291,-1.0983707424027721e-18,-1.6263032587282567e-19,3.5236570605778894e-19,8.131516293641283e-20,0.0009523809421807528,-1.8070177948936287e-19,0.0020833334419876337,6.098637220230962e-19,9.974659986866641e-18,-0.0020833334419876337,-8.131516293641283e-20,-6.595584584785976e-19,1.1986339506851781e-19,-2.4742415551629963e-18,-1.8070177948936287e-19,0.00029761905898340046,5.0,4.0,9.0,0.13830015063285828,-0.04476190358400345,-0.052666667848825455,-0.028121212497353554,0.003968254197388887,0.006666666828095913,0.0033333334140479565,0.0055555556900799274,0.004000000189989805,0.0015151514671742916,-0.04476190358400345,0.04619047790765762,0.006666666828095913,0.0033333334140479565,-0.007936508394777775,-0.0033333334140479565,-0.0016666667070239782,8.673617379884035e-19,2.8189256484623115e-18,7.250602028496811e-19,-0.052666667848825455,0.006666666828095913,0.07400000095367432,0.004000000189989805,6.342582709040201e-18,-0.004444444552063942,-4.20128341838133e-18,-0.01666666753590107,-0.0026666666381061077,-1.3552527156068805e-19,-0.028121212497353554,0.0033333334140479565,0.004000000189989805,0.014389610849320889,2.8189256484623115e-18,2.168404344971009e-18,-0.0008333333535119891,-5.637851296924623e-18,-0.0010000000474974513,-0.0012987012742087245,0.003968254197388887,-0.007936508394777775,6.342582709040201e-18,2.8189256484623115e-18,0.0019841270986944437,3.9987254979308756e-19,-2.4256448492718708e-19,-1.4247292696164344e-18,-4.977211403192689e-19,-1.6940658945086007e-19,0.006666666828095913,-0.0033333334140479565,-0.004444444552063942,2.168404344971009e-18,3.9987254979308756e-19,0.002222222276031971,-8.131516293641283e-20,-8.131516293641283e-19,-7.589415207398531e-19,-1.4635160528823815e-19,0.0033333334140479565,-0.0016666667070239782,-4.20128341838133e-18,-0.0008333333535119891,-2.4256448492718708e-19,-8.131516293641283e-20,0.00041666667675599456,1.3010426069826053e-18,1.0842021724855044e-19,2.8919898269601757e-20,0.0055555556900799274,8.673617379884035e-19,-0.01666666753590107,-5.637851296924623e-18,-1.4247292696164344e-18,-8.131516293641283e-19,1.3010426069826053e-18,0.0055555556900799274,5.963111948670274e-19,1.2342320560873098e-19,0.004000000189989805,2.8189256484623115e-18,-0.0026666666381061077,-0.0010000000474974513,-4.977211403192689e-19,-7.589415207398531e-19,1.0842021724855044e-19,5.963111948670274e-19,0.0006666666595265269,9.61938350978146e-21,0.0015151514671742916,7.250602028496811e-19,-1.3552527156068805e-19,-0.0012987012742087245,-1.6940658945086007e-19,-1.4635160528823815e-19,2.8919898269601757e-20,1.2342320560873098e-19,9.61938350978146e-21,0.00016233765927609056,5.0,4.0,10.0,0.12668831646442413,-0.04055844247341156,-0.04772727191448212,-0.023318182677030563,0.0035714285913854837,0.006000000052154064,0.0027272726874798536,0.004999999888241291,0.0032727273646742105,0.0011363636003807187,-0.04055844247341156,0.04170779138803482,0.006000000052154064,0.0027272726874798536,-0.0071428571827709675,-0.003000000026077032,-0.0013636363437399268,-2.3201926491189795e-17,-4.336808689942018e-18,-2.4868887331386258e-18,-0.04772727191448212,0.006000000052154064,0.06681818515062332,0.0032727273646742105,-2.47198095326695e-17,-0.004000000189989805,-4.662069341687669e-18,-0.014999999664723873,-0.0021818182431161404,-2.168404344971009e-19,-0.023318182677030563,0.0027272726874798536,0.0032727273646742105,0.010579545050859451,-6.071532165918825e-18,-2.3852447794681098e-18,-0.000606060610152781,-2.168404344971009e-18,-0.0007272727089002728,-0.0008522727293893695,0.0035714285913854837,-0.0071428571827709675,-2.47198095326695e-17,-6.071532165918825e-18,0.0017857142956927419,2.7617935243241927e-18,4.4206822191154805e-19,4.873118684716286e-18,6.639935941279538e-19,4.2012834183813297e-19,0.006000000052154064,-0.003000000026077032,-0.004000000189989805,-2.3852447794681098e-18,2.7617935243241927e-18,0.0020000000949949026,1.8973538018496328e-19,-1.328147661294743e-18,3.2526065174565133e-19,1.6743163111490436e-19,0.0027272726874798536,-0.0013636363437399268,-4.662069341687669e-18,-0.000606060610152781,4.4206822191154805e-19,1.8973538018496328e-19,0.0003030303050763905,1.0028870095490916e-18,2.168404344971009e-19,8.684091037402605e-20,0.004999999888241291,-2.3201926491189795e-17,-0.014999999664723873,-2.168404344971009e-18,4.873118684716286e-18,-1.328147661294743e-18,1.0028870095490916e-18,0.004999999888241291,-2.439454888092385e-19,2.4083473394406505e-20,0.0032727273646742105,-4.336808689942018e-18,-0.0021818182431161404,-0.0007272727089002728,6.639935941279538e-19,3.2526065174565133e-19,2.168404344971009e-19,-2.439454888092385e-19,0.0004848484823014587,-2.6720644740673466e-20,0.0011363636003807187,-2.4868887331386258e-18,-2.168404344971009e-19,-0.0008522727293893695,4.2012834183813297e-19,1.6743163111490436e-19,8.684091037402605e-20,2.4083473394406505e-20,-2.6720644740673466e-20,9.469696669839323e-05,5.0,4.0,11.0,0.11687812209129333,-0.037077922374010086,-0.04363636299967766,-0.019650349393486977,0.003246753243729472,0.005454545374959707,0.0022727272007614374,0.004545454401522875,0.0027272726874798536,0.0008741258643567562,-0.037077922374010086,0.03801948204636574,0.005454545374959707,0.0022727272007614374,-0.006493506487458944,-0.0027272726874798536,-0.0011363636003807187,1.0191500421363742e-17,4.228388472693467e-18,3.028989819381378e-18,-0.04363636299967766,0.005454545374959707,0.06090909242630005,0.0027272726874798536,2.7647155398380363e-18,-0.003636363660916686,1.7076184216646695e-18,-0.013636363670229912,-0.001818181830458343,4.9737774662772516e-18,-0.019650349393486977,0.0022727272007614374,0.0027272726874798536,0.008009323850274086,4.553649124439119e-18,4.9873299934333204e-18,-0.00045454545761458576,1.2034644114589099e-17,-0.0005454545607790351,-0.0005827505956403911,0.003246753243729472,-0.006493506487458944,2.7647155398380363e-18,4.553649124439119e-18,0.001623376621864736,3.1328169094835746e-18,6.992901663474158e-19,-1.90260412399266e-18,-7.051359034351163e-19,-4.573977915173222e-19,0.005454545374959707,-0.0027272726874798536,-0.003636363660916686,4.9873299934333204e-18,3.1328169094835746e-18,0.001818181830458343,2.574980159653073e-19,-2.439454888092385e-19,-4.0657581468206416e-19,-4.558985783558581e-19,0.0022727272007614374,-0.0011363636003807187,1.7076184216646695e-18,-0.00045454545761458576,6.992901663474158e-19,2.574980159653073e-19,0.00022727272880729288,-4.87890977618477e-19,-1.4907779871675686e-19,-7.868642818615906e-20,0.004545454401522875,1.0191500421363742e-17,-0.013636363670229912,1.2034644114589099e-17,-1.90260412399266e-18,-2.439454888092385e-19,-4.87890977618477e-19,0.004545454401522875,2.0328790734103208e-19,-1.0383344905315562e-18,0.0027272726874798536,4.228388472693467e-18,-0.001818181830458343,-0.0005454545607790351,-7.051359034351163e-19,-4.0657581468206416e-19,-1.4907779871675686e-19,2.0328790734103208e-19,0.0003636363544501364,-1.475581516092233e-19,0.0008741258643567562,3.028989819381378e-18,4.9737774662772516e-18,-0.0005827505956403911,-4.573977915173222e-19,-4.558985783558581e-19,-7.868642818615906e-20,-1.0383344905315562e-18,-1.475581516092233e-19,5.827505810884759e-05,5.0,4.0,12.0,0.10847984999418259,-0.03414835035800934,-0.04019230604171753,-0.016785714775323868,0.0029761905316263437,0.004999999888241291,0.001923076924867928,0.004166666883975267,0.0023076923098415136,0.0006868132040835917,-0.03414835035800934,0.03493131697177887,0.004999999888241291,0.001923076924867928,-0.0059523810632526875,-0.0024999999441206455,-0.000961538462433964,-8.673617379884035e-18,-7.589415207398531e-19,1.0028870095490916e-18,-0.04019230604171753,0.004999999888241291,0.05596153810620308,0.0023076923098415136,-2.7647155398380363e-18,-0.0033333334140479565,-1.2874900798265365e-18,-0.012500000186264515,-0.0015384615398943424,-6.776263578034403e-20,-0.016785714775323868,0.001923076924867928,0.0023076923098415136,0.0062112887389957905,2.222614453595284e-18,-4.336808689942018e-19,-0.00034965036320500076,-1.0842021724855044e-18,-0.00041958040674217045,-0.00041208791662938893,0.0029761905316263437,-0.0059523810632526875,-2.7647155398380363e-18,2.222614453595284e-18,0.0014880952658131719,-9.899654144052476e-19,-1.0057110041603476e-19,1.5146682040290189e-18,5.12381682368201e-20,-1.8634724839594607e-19,0.004999999888241291,-0.0024999999441206455,-0.0033333334140479565,-4.336808689942018e-19,-9.899654144052476e-19,0.0016666667070239782,2.439454888092385e-19,3.2526065174565133e-19,2.574980159653073e-19,-2.394618079976831e-20,0.001923076924867928,-0.000961538462433964,-1.2874900798265365e-18,-0.00034965036320500076,-1.0057110041603476e-19,2.439454888092385e-19,0.00017482518160250038,2.303929616531697e-19,1.3552527156068805e-20,-3.0728858258724266e-20,0.004166666883975267,-8.673617379884035e-18,-0.012500000186264515,-1.0842021724855044e-18,1.5146682040290189e-18,3.2526065174565133e-19,2.303929616531697e-19,0.004166666883975267,6.098637220230962e-19,1.6693761688110267e-20,0.0023076923098415136,-7.589415207398531e-19,-0.0015384615398943424,-0.00041958040674217045,5.12381682368201e-20,2.574980159653073e-19,1.3552527156068805e-20,6.098637220230962e-19,0.0002797202905640006,3.816459481129084e-21,0.0006868132040835917,1.0028870095490916e-18,-6.776263578034403e-20,-0.00041208791662938893,-1.8634724839594607e-19,-2.394618079976831e-20,-3.0728858258724266e-20,1.6693761688110267e-20,3.816459481129084e-21,3.7462537875398993e-05,5.0,4.0,13.0,0.10120879113674164,-0.03164835274219513,-0.037252746522426605,-0.014505494385957718,0.002747252816334367,0.004615384619683027,0.0016483516665175557,0.003846153849735856,0.0019780220463871956,0.0005494505749084055,-0.03164835274219513,0.032307691872119904,0.004615384619683027,0.0016483516665175557,-0.005494505632668734,-0.0023076923098415136,-0.0008241758332587779,5.637851296924623e-18,-2.0057740190981832e-18,-7.386127300057499e-19,-0.037252746522426605,0.004615384619683027,0.05175824090838432,0.0019780220463871956,2.3718789883353248e-18,-0.003076923079788685,-1.734723475976807e-18,-0.011538461782038212,-0.0013186812866479158,-2.2518629396696997e-18,-0.014505494385957718,0.0016483516665175557,0.0019780220463871956,0.0049150846898555756,-3.7947076036992655e-18,-3.0357660829594124e-18,-0.00027472528745420277,-5.854691731421724e-18,-0.00032967032166197896,-0.00029970030300319195,0.002747252816334367,-0.005494505632668734,2.3718789883353248e-18,-3.7947076036992655e-18,0.0013736264081671834,4.574784416270461e-19,1.0486183100995452e-18,-1.7755557993494153e-18,3.2864878353466853e-19,9.486769009248164e-20,0.004615384619683027,-0.0023076923098415136,-0.003076923079788685,-3.0357660829594124e-18,4.574784416270461e-19,0.0015384615398943424,3.9302328752599536e-19,2.168404344971009e-19,2.1006417091906648e-19,1.517867764487768e-19,0.0016483516665175557,-0.0008241758332587779,-1.734723475976807e-18,-0.00027472528745420277,1.0486183100995452e-18,3.9302328752599536e-19,0.00013736264372710139,2.0328790734103208e-19,5.082197683525802e-20,1.1947272509690984e-20,0.003846153849735856,5.637851296924623e-18,-0.011538461782038212,-5.854691731421724e-18,-1.7755557993494153e-18,2.168404344971009e-19,2.0328790734103208e-19,0.003846153849735856,-3.5236570605778894e-19,4.733852799028057e-19,0.0019780220463871956,-2.0057740190981832e-18,-0.0013186812866479158,-0.00032967032166197896,3.2864878353466853e-19,2.1006417091906648e-19,5.082197683525802e-20,-3.5236570605778894e-19,0.00021978022414259613,6.945670167485263e-20,0.0005494505749084055,-7.386127300057499e-19,-2.2518629396696997e-18,-0.00029970030300319195,9.486769009248164e-20,1.517867764487768e-19,1.1947272509690984e-20,4.733852799028057e-19,6.945670167485263e-20,2.4975024643936194e-05,5.0,4.0,14.0,0.0948520377278328,-0.029489796608686447,-0.03471428528428078,-0.012660713866353035,0.0025510203558951616,0.004285714123398066,0.0014285714132711291,0.0035714285913854837,0.001714285695925355,0.00044642857392318547,-0.029489796608686447,0.03005102090537548,0.004285714123398066,0.0014285714132711291,-0.005102040711790323,-0.002142857061699033,-0.0007142857066355646,-1.0408340855860843e-17,-1.463672932855431e-18,2.846030702774449e-19,-0.03471428528428078,0.004285714123398066,0.04814285784959793,0.001714285695925355,-8.80970182553881e-18,-0.0028571428265422583,-6.505213034913027e-19,-0.010714286006987095,-0.0011428571306169033,4.507323184425816e-19,-0.012660713866353035,0.0014285714132711291,0.001714285695925355,0.00395673094317317,-7.589415207398531e-19,0.0,-0.00021978022414259613,2.1141942363467336e-18,-0.00026373626315034926,-0.00022321428696159273,0.0025510203558951616,-0.005102040711790323,-8.80970182553881e-18,-7.589415207398531e-19,0.0012755101779475808,1.1614820382011539e-18,5.553687530753731e-19,1.4133833501419274e-18,2.354751593366955e-19,-3.5575383784680614e-20,0.004285714123398066,-0.002142857061699033,-0.0028571428265422583,0.0,1.1614820382011539e-18,0.0014285714132711291,2.981555974335137e-19,2.9544509200229996e-18,1.5924219408380846e-19,-4.876811968603153e-20,0.0014285714132711291,-0.0007142857066355646,-6.505213034913027e-19,-0.00021978022414259613,5.553687530753731e-19,2.981555974335137e-19,0.00010989011207129806,-4.0657581468206416e-20,2.1175823681357508e-20,-2.6873783417817664e-21,0.0035714285913854837,-1.0408340855860843e-17,-0.010714286006987095,2.1141942363467336e-18,1.4133833501419274e-18,2.9544509200229996e-18,-4.0657581468206416e-20,0.0035714285913854837,-2.710505431213761e-19,-1.01029513571754e-19,0.001714285695925355,-1.463672932855431e-18,-0.0011428571306169033,-0.00026373626315034926,2.354751593366955e-19,1.5924219408380846e-19,2.1175823681357508e-20,-2.710505431213761e-19,0.00017582417058292776,-2.541098841762901e-21,0.00044642857392318547,2.846030702774449e-19,4.507323184425816e-19,-0.00022321428696159273,-3.5575383784680614e-20,-4.876811968603153e-20,-2.6873783417817664e-21,-1.01029513571754e-19,-2.541098841762901e-21,1.7170330465887673e-05,5.0,4.0,15.0,0.0892471969127655,-0.02760714292526245,-0.032499998807907104,-0.011147058568894863,0.0023809524718672037,0.004000000189989805,0.0012499999720603228,0.0033333334140479565,0.001500000013038516,0.0003676470660138875,-0.02760714292526245,0.028089284896850586,0.004000000189989805,0.0012499999720603228,-0.004761904943734407,-0.0020000000949949026,-0.0006249999860301614,1.0625181290357943e-17,6.505213034913027e-19,-1.5924219408380846e-19,-0.032499998807907104,0.004000000189989805,0.04500000178813934,0.001500000013038516,1.3432288182228097e-17,-0.0026666666381061077,1.3010426069826053e-18,-0.009999999776482582,-0.0010000000474974513,-4.589065689546189e-19,-0.011147058568894863,0.0012499999720603228,0.001500000013038516,0.0032327084336429834,1.1926223897340549e-18,-6.505213034913027e-19,-0.00017857142665889114,-2.8731357570865868e-18,-0.00021428571199066937,-0.00016968326235655695,0.0023809524718672037,-0.004761904943734407,1.3432288182228097e-17,1.1926223897340549e-18,0.0011904762359336019,-1.1328711015838635e-18,-4.474539948798808e-19,-2.660755687247525e-18,-2.846030702774449e-19,2.710505431213761e-20,0.004000000189989805,-0.0020000000949949026,-0.0026666666381061077,-6.505213034913027e-19,-1.1328711015838635e-18,0.0013333333190530539,-1.8973538018496328e-19,1.951563910473908e-18,2.947674656444965e-19,5.156817129596328e-20,0.0012499999720603228,-0.0006249999860301614,1.3010426069826053e-18,-0.00017857142665889114,-4.474539948798808e-19,-1.8973538018496328e-19,8.928571332944557e-05,-2.846030702774449e-19,8.470329472543003e-21,-8.071494777944212e-23,0.0033333334140479565,1.0625181290357943e-17,-0.009999999776482582,-2.8731357570865868e-18,-2.660755687247525e-18,1.951563910473908e-18,-2.846030702774449e-19,0.0033333334140479565,1.5720931501039814e-18,5.764873720474937e-20,0.001500000013038516,6.505213034913027e-19,-0.0010000000474974513,-0.00021428571199066937,-2.846030702774449e-19,2.947674656444965e-19,8.470329472543003e-21,1.5720931501039814e-18,0.0001428571413271129,2.202285662861181e-20,0.0003676470660138875,-1.5924219408380846e-19,-4.589065689546189e-19,-0.00016968326235655695,2.710505431213761e-20,5.156817129596328e-20,-8.071494777944212e-23,5.764873720474937e-20,2.202285662861181e-20,1.212023289554054e-05,5.0,4.0,16.0,0.08426820486783981,-0.025950631126761436,-0.030551470816135406,-0.009889706037938595,0.0022321429569274187,0.0037499999161809683,0.001102941227145493,0.0031250000465661287,0.0013235294027253985,0.00030637255986221135,-0.025950631126761436,0.026368172839283943,0.0037499999161809683,0.001102941227145493,-0.004464285913854837,-0.0018749999580904841,-0.0005514706135727465,7.697835424647081e-18,-8.673617379884035e-19,4.2521053952165877e-19,-0.030551470816135406,0.0037499999161809683,0.04224264621734619,0.0013235294027253985,-3.522966364766408e-18,-0.0024999999441206455,-3.2526065174565133e-19,-0.00937500037252903,-0.0008823529351502657,9.764734782290483e-19,-0.009889706037938595,0.001102941227145493,0.0013235294027253985,0.0026754201389849186,-5.421010862427522e-19,2.710505431213761e-19,-0.00014705881767440587,5.4752209710517974e-18,-0.00017647058120928705,-0.00013130252773407847,0.0022321429569274187,-0.004464285913854837,-3.522966364766408e-18,-5.421010862427522e-19,0.0011160714784637094,2.2879857102247373e-18,6.912727699590338e-19,-6.144379274129379e-19,7.623296525288703e-20,-6.776263578034403e-20,0.0037499999161809683,-0.0018749999580904841,-0.0024999999441206455,2.710505431213761e-19,2.2879857102247373e-18,0.0012499999720603228,2.778268066994105e-19,-2.656295322589486e-18,8.470329472543003e-20,-5.702765381169276e-20,0.001102941227145493,-0.0005514706135727465,-3.2526065174565133e-19,-0.00014705881767440587,6.912727699590338e-19,2.778268066994105e-19,7.352940883720294e-05,-1.3552527156068805e-19,3.049318610115481e-20,-1.094423604540731e-20,0.0031250000465661287,7.697835424647081e-18,-0.00937500037252903,5.4752209710517974e-18,-6.144379274129379e-19,-2.656295322589486e-18,-1.3552527156068805e-19,0.0031250000465661287,-8.402566836762659e-19,-2.395393303307158e-19,0.0013235294027253985,-8.673617379884035e-19,-0.0008823529351502657,-0.00017647058120928705,7.623296525288703e-20,8.470329472543003e-20,3.049318610115481e-20,-8.402566836762659e-19,0.00011764706141548231,-1.2281977735187355e-20,0.00030637255986221135,4.2521053952165877e-19,9.764734782290483e-19,-0.00013130252773407847,-6.776263578034403e-20,-5.702765381169276e-20,-1.094423604540731e-20,-2.395393303307158e-19,-1.2281977735187355e-20,8.753501788305584e-06,5.0,5.0,3.0,0.26476189494132996,-0.09809523820877075,-0.09809523820877075,-0.14000000059604645,0.009523809887468815,0.013333333656191826,0.019999999552965164,0.009523809887468815,0.019999999552965164,0.019999999552965164,-0.09809523820877075,0.10619047284126282,0.013333333656191826,0.019999999552965164,-0.01904761977493763,-0.006666666828095913,-0.009999999776482582,-3.4142399355948477e-19,0.0,-0.0,-0.09809523820877075,0.013333333656191826,0.10619047284126282,0.019999999552965164,1.492602825147043e-19,-0.006666666828095913,0.0,-0.01904761977493763,-0.009999999776482582,-0.0,-0.14000000059604645,0.019999999552965164,0.019999999552965164,0.3400000035762787,0.0,0.0,-0.019999999552965164,0.0,-0.019999999552965164,-0.11999999731779099,0.009523809887468815,-0.01904761977493763,1.492602825147043e-19,0.0,0.004761904943734407,-1.0344771631582882e-20,0.0,-2.955649129914374e-20,0.0,-0.0,0.013333333656191826,-0.006666666828095913,-0.006666666828095913,0.0,-1.0344771631582882e-20,0.0033333334140479565,0.0,1.7071199677974239e-19,0.0,-0.0,0.019999999552965164,-0.009999999776482582,0.0,-0.019999999552965164,0.0,0.0,0.009999999776482582,0.0,0.0,-0.0,0.009523809887468815,-3.4142399355948477e-19,-0.01904761977493763,0.0,-2.955649129914374e-20,1.7071199677974239e-19,0.0,0.004761904943734407,0.0,-0.0,0.019999999552965164,0.0,-0.009999999776482582,-0.019999999552965164,0.0,0.0,0.0,0.0,0.009999999776482582,-0.0,0.019999999552965164,-0.0,-0.0,-0.11999999731779099,-0.0,-0.0,-0.0,-0.0,-0.0,0.05999999865889549,5.0,5.0,4.0,0.21857142448425293,-0.07657142728567123,-0.07657142728567123,-0.09000000357627869,0.0071428571827709675,0.009999999776482582,0.012000000104308128,0.0071428571827709675,0.012000000104308128,0.009999999776482582,-0.07657142728567123,0.081142857670784,0.009999999776482582,0.012000000104308128,-0.014285714365541935,-0.004999999888241291,-0.006000000052154064,2.3800307498744583e-19,1.907165327137248e-19,-0.0,-0.07657142728567123,0.009999999776482582,0.081142857670784,0.012000000104308128,-3.139023439490016e-20,-0.004999999888241291,0.0,-0.014285714365541935,-0.006000000052154064,-0.0,-0.09000000357627869,0.012000000104308128,0.012000000104308128,0.12999999523162842,6.304025132352114e-19,1.907165327137248e-19,-0.00800000037997961,9.510745873278779e-19,-0.00800000037997961,-0.029999999329447746,0.0071428571827709675,-0.014285714365541935,-3.139023439490016e-20,6.304025132352114e-19,0.0035714285913854837,2.175560741661364e-21,-3.152012566176057e-19,6.215887891017723e-21,2.308573437420027e-36,-0.0,0.009999999776482582,-0.004999999888241291,-0.004999999888241291,1.907165327137248e-19,2.175560741661364e-21,0.0024999999441206455,0.0,-1.1900153749372292e-19,-9.53582663568624e-20,-0.0,0.012000000104308128,-0.006000000052154064,0.0,-0.00800000037997961,-3.152012566176057e-19,0.0,0.004000000189989805,0.0,0.0,-0.0,0.0071428571827709675,2.3800307498744583e-19,-0.014285714365541935,9.510745873278779e-19,6.215887891017723e-21,-1.1900153749372292e-19,0.0,0.0035714285913854837,-4.7553729366393895e-19,-0.0,0.012000000104308128,1.907165327137248e-19,-0.006000000052154064,-0.00800000037997961,2.308573437420027e-36,-9.53582663568624e-20,0.0,-4.7553729366393895e-19,0.004000000189989805,-0.0,0.009999999776482582,-0.0,-0.0,-0.029999999329447746,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,5.0,5.0,5.0,0.18628571927547455,-0.06285714358091354,-0.06285714358091354,-0.06285714358091354,0.0057142856530845165,0.00800000037997961,0.00800000037997961,0.0057142856530845165,0.00800000037997961,0.0057142856530845165,-0.06285714358091354,0.0657142847776413,0.00800000037997961,0.00800000037997961,-0.011428571306169033,-0.004000000189989805,-0.004000000189989805,-2.168404344971009e-19,9.264554692504036e-20,0.0,-0.06285714358091354,0.00800000037997961,0.0657142847776413,0.00800000037997961,1.384523147816923e-19,-0.004000000189989805,5.421010862427522e-20,-0.011428571306169033,-0.004000000189989805,2.168404344971009e-19,-0.06285714358091354,0.00800000037997961,0.00800000037997961,0.0657142847776413,4.124597184002158e-20,-0.0,-0.004000000189989805,3.213083892412215e-20,-0.004000000189989805,-0.011428571306169033,0.0057142856530845165,-0.011428571306169033,1.384523147816923e-19,4.124597184002158e-20,0.0028571428265422583,-7.866299409478195e-21,-1.1292264412151719e-21,-2.2475141862332185e-20,-1.2476423340274137e-20,-3.2263612317650065e-21,0.00800000037997961,-0.004000000189989805,-0.004000000189989805,-0.0,-7.866299409478195e-21,0.0020000000949949026,3.3881317890172014e-21,1.0842021724855044e-19,-2.710505431213761e-20,6.895347697880062e-21,0.00800000037997961,-0.004000000189989805,5.421010862427522e-20,-0.004000000189989805,-1.1292264412151719e-21,3.3881317890172014e-21,0.0020000000949949026,0.0,-2.710505431213761e-20,0.0,0.0057142856530845165,-2.168404344971009e-19,-0.011428571306169033,3.213083892412215e-20,-2.2475141862332185e-20,1.0842021724855044e-19,0.0,0.0028571428265422583,0.0,0.0,0.00800000037997961,9.264554692504036e-20,-0.004000000189989805,-0.004000000189989805,-1.2476423340274137e-20,-2.710505431213761e-20,-2.710505431213761e-20,0.0,0.0020000000949949026,-2.168404344971009e-19,0.0057142856530845165,0.0,2.168404344971009e-19,-0.011428571306169033,-3.2263612317650065e-21,6.895347697880062e-21,0.0,0.0,-2.168404344971009e-19,0.0028571428265422583,5.0,5.0,6.0,0.16238094866275787,-0.0533333346247673,-0.0533333346247673,-0.04642857238650322,0.004761904943734407,0.006666666828095913,0.0057142856530845165,0.004761904943734407,0.0057142856530845165,0.0035714285913854837,-0.0533333346247673,0.05523809418082237,0.006666666828095913,0.0057142856530845165,-0.009523809887468815,-0.0033333334140479565,-0.0028571428265422583,2.168404344971009e-19,2.24379187347673e-20,2.168404344971009e-19,-0.0533333346247673,0.006666666828095913,0.05523809418082237,0.0057142856530845165,1.658542203049856e-20,-0.0033333334140479565,5.421010862427522e-20,-0.009523809887468815,-0.0028571428265422583,0.0,-0.04642857238650322,0.0057142856530845165,0.0057142856530845165,0.03821428492665291,3.0421751300442616e-20,6.629121717993144e-20,-0.0022857142612338066,-5.424072723163675e-20,-0.0022857142612338066,-0.0053571430034935474,0.004761904943734407,-0.009523809887468815,1.658542203049856e-20,3.0421751300442616e-20,0.0023809524718672037,-9.769053521349191e-22,2.5478891544866518e-20,-2.7911582066564522e-21,-9.96029258987198e-22,-1.4629141497397784e-20,0.006666666828095913,-0.0033333334140479565,-0.0033333334140479565,6.629121717993144e-20,-9.769053521349191e-22,0.0016666667070239782,-3.965082188337269e-21,-1.0842021724855044e-19,-3.965082188337269e-21,-2.9564059113175675e-21,0.0057142856530845165,-0.0028571428265422583,5.421010862427522e-20,-0.0022857142612338066,2.5478891544866518e-20,-3.965082188337269e-21,0.0011428571306169033,0.0,0.0,0.0,0.004761904943734407,2.168404344971009e-19,-0.009523809887468815,-5.424072723163675e-20,-2.7911582066564522e-21,-1.0842021724855044e-19,0.0,0.0023809524718672037,0.0,-2.710505431213761e-20,0.0057142856530845165,2.24379187347673e-20,-0.0028571428265422583,-0.0022857142612338066,-9.96029258987198e-22,-3.965082188337269e-21,0.0,0.0,0.0011428571306169033,0.0,0.0035714285913854837,2.168404344971009e-19,0.0,-0.0053571430034935474,-1.4629141497397784e-20,-2.9564059113175675e-21,0.0,-2.710505431213761e-20,0.0,0.0010714285308495164,5.0,5.0,7.0,0.143945574760437,-0.04632652923464775,-0.04632652923464775,-0.0357142873108387,0.004081632476300001,0.0057142856530845165,0.004285714123398066,0.004081632476300001,0.004285714123398066,0.0023809524718672037,-0.04632652923464775,0.04765306040644646,0.0057142856530845165,0.004285714123398066,-0.008163264952600002,-0.0028571428265422583,-0.002142857061699033,-0.0,0.0,1.0842021724855044e-19,-0.04632652923464775,0.0057142856530845165,0.04765306040644646,0.004285714123398066,0.0,-0.0028571428265422583,0.0,-0.008163264952600002,-0.002142857061699033,1.0842021724855044e-19,-0.0357142873108387,0.004285714123398066,0.004285714123398066,0.02428571507334709,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0014285714132711291,-0.0028571428265422583,0.004081632476300001,-0.008163264952600002,0.0,-0.0,0.0020408162381500006,0.0,0.0,0.0,0.0,0.0,0.0057142856530845165,-0.0028571428265422583,-0.0028571428265422583,-0.0,0.0,0.0014285714132711291,0.0,0.0,0.0,0.0,0.004285714123398066,-0.002142857061699033,0.0,-0.0014285714132711291,0.0,0.0,0.0007142857066355646,0.0,0.0,-2.710505431213761e-20,0.004081632476300001,-0.0,-0.008163264952600002,-0.0,0.0,0.0,0.0,0.0020408162381500006,0.0,0.0,0.004285714123398066,0.0,-0.002142857061699033,-0.0014285714132711291,0.0,0.0,0.0,0.0,0.0007142857066355646,0.0,0.0023809524718672037,1.0842021724855044e-19,1.0842021724855044e-19,-0.0028571428265422583,0.0,0.0,-2.710505431213761e-20,0.0,0.0,0.0004761904710903764,5.0,5.0,8.0,0.12928570806980133,-0.04095238074660301,-0.04095238074660301,-0.028333334252238274,0.0035714285913854837,0.004999999888241291,0.0033333334140479565,0.0035714285913854837,0.0033333334140479565,0.0016666667070239782,-0.04095238074660301,0.041904762387275696,0.004999999888241291,0.0033333334140479565,-0.0071428571827709675,-0.0024999999441206455,-0.0016666667070239782,7.15573433840433e-18,-1.3010426069826053e-18,-3.469446951953614e-18,-0.04095238074660301,0.004999999888241291,0.041904762387275696,0.0033333334140479565,8.348356728138384e-18,-0.0024999999441206455,2.1412992906588713e-18,-0.0071428571827709675,-0.0016666667070239782,-3.9302328752599536e-18,-0.028333334252238274,0.0033333334140479565,0.0033333334140479565,0.016428571194410324,-7.15573433840433e-18,-3.686287386450715e-18,-0.0009523809421807528,-7.26415455565288e-18,-0.0009523809421807528,-0.0016666667070239782,0.0035714285913854837,-0.0071428571827709675,8.348356728138384e-18,-7.15573433840433e-18,0.0017857142956927419,-1.382079604588653e-19,1.3188730020740687e-18,-1.8933510748654887e-18,8.288256679962425e-20,5.793705359219414e-19,0.004999999888241291,-0.0024999999441206455,-0.0024999999441206455,-3.686287386450715e-18,-1.382079604588653e-19,0.0012499999720603228,2.710505431213761e-20,1.1655173354219173e-18,5.421010862427522e-19,2.7499001663805405e-19,0.0033333334140479565,-0.0016666667070239782,2.1412992906588713e-18,-0.0009523809421807528,1.3188730020740687e-18,2.710505431213761e-20,0.0004761904710903764,-4.336808689942018e-19,1.3552527156068805e-20,1.01379062004043e-19,0.0035714285913854837,7.15573433840433e-18,-0.0071428571827709675,-7.26415455565288e-18,-1.8933510748654887e-18,1.1655173354219173e-18,-4.336808689942018e-19,0.0017857142956927419,1.5043305143236374e-18,7.038538768832357e-19,0.0033333334140479565,-1.3010426069826053e-18,-0.0016666667070239782,-0.0009523809421807528,8.288256679962425e-20,5.421010862427522e-19,1.3552527156068805e-20,1.5043305143236374e-18,0.0004761904710903764,1.4845150667078058e-19,0.0016666667070239782,-3.469446951953614e-18,-3.9302328752599536e-18,-0.0016666667070239782,5.793705359219414e-19,2.7499001663805405e-19,1.01379062004043e-19,7.038538768832357e-19,1.4845150667078058e-19,0.0002380952355451882,5.0,5.0,9.0,0.11734487861394882,-0.03669841215014458,-0.03669841215014458,-0.023030303418636322,0.0031746032182127237,0.004444444552063942,0.0026666666381061077,0.0031746032182127237,0.0026666666381061077,0.001212121220305562,-0.03669841215014458,0.03739682585000992,0.004444444552063942,0.0026666666381061077,-0.0063492064364254475,-0.002222222276031971,-0.0013333333190530539,-5.637851296924623e-18,8.673617379884035e-19,5.353248226647178e-19,-0.03669841215014458,0.004444444552063942,0.03739682585000992,0.0026666666381061077,-6.69494841509799e-18,-0.002222222276031971,6.505213034913027e-19,-0.0063492064364254475,-0.0013333333190530539,1.3552527156068805e-19,-0.023030303418636322,0.0026666666381061077,0.0026666666381061077,0.011645021848380566,1.4094628242311558e-18,2.0599841277224584e-18,-0.0006666666595265269,1.1926223897340549e-18,-0.0006666666595265269,-0.0010389609960839152,0.0031746032182127237,-0.0063492064364254475,-6.69494841509799e-18,1.4094628242311558e-18,0.0015873016091063619,2.8093612692320906e-19,-4.372147913661814e-19,1.5596706550622366e-18,-5.3527668463047635e-20,-5.759824041329242e-20,0.004444444552063942,-0.002222222276031971,-0.002222222276031971,2.0599841277224584e-18,2.8093612692320906e-19,0.0011111111380159855,-1.4907779871675686e-19,-2.710505431213761e-19,-1.8973538018496328e-19,-1.2660574424143754e-19,0.0026666666381061077,-0.0013333333190530539,6.505213034913027e-19,-0.0006666666595265269,-4.372147913661814e-19,-1.4907779871675686e-19,0.00033333332976326346,-5.421010862427522e-20,-4.743384504624082e-20,-5.050875891864242e-21,0.0031746032182127237,-5.637851296924623e-18,-0.0063492064364254475,1.1926223897340549e-18,1.5596706550622366e-18,-2.710505431213761e-19,-5.421010862427522e-20,0.0015873016091063619,-4.472333961502706e-19,3.8216594098782306e-20,0.0026666666381061077,8.673617379884035e-19,-0.0013333333190530539,-0.0006666666595265269,-5.3527668463047635e-20,-1.8973538018496328e-19,-4.743384504624082e-20,-4.472333961502706e-19,0.00033333332976326346,-3.9954212991246384e-21,0.001212121220305562,5.353248226647178e-19,1.3552527156068805e-19,-0.0010389609960839152,-5.759824041329242e-20,-1.2660574424143754e-19,-5.050875891864242e-21,3.8216594098782306e-20,-3.9954212991246384e-21,0.0001298701245104894,5.0,5.0,10.0,0.10742857307195663,-0.03324675187468529,-0.03324675187468529,-0.019090909510850906,0.0028571428265422583,0.004000000189989805,0.0021818182431161404,0.0028571428265422583,0.0021818182431161404,0.0009090909152291715,-0.03324675187468529,0.033766232430934906,0.004000000189989805,0.0021818182431161404,-0.0057142856530845165,-0.0020000000949949026,-0.0010909091215580702,3.144186300207963e-18,-2.168404344971009e-19,-3.686287386450715e-18,-0.03324675187468529,0.004000000189989805,0.033766232430934906,0.0021818182431161404,1.0842021724855044e-18,-0.0020000000949949026,-6.776263578034403e-20,-0.0057142856530845165,-0.0010909091215580702,-3.584643432780199e-18,-0.019090909510850906,0.0021818182431161404,0.0021818182431161404,0.0085606062784791,-4.228388472693467e-18,-3.469446951953614e-18,-0.0004848484823014587,-4.0115480381963664e-18,-0.0004848484823014587,-0.0006818181718699634,0.0028571428265422583,-0.0057142856530845165,1.0842021724855044e-18,-4.228388472693467e-18,0.0014285714132711291,2.1652901392117174e-19,-2.915115341194715e-20,-3.477866926806368e-19,1.402332701834359e-20,4.777265822514254e-19,0.004000000189989805,-0.0020000000949949026,-0.0020000000949949026,-3.469446951953614e-18,2.1652901392117174e-19,0.0010000000474974513,6.776263578034403e-20,-1.0164395367051604e-18,-1.2197274440461925e-19,3.923475068149337e-19,0.0021818182431161404,-0.0010909091215580702,-6.776263578034403e-20,-0.0004848484823014587,-2.915115341194715e-20,6.776263578034403e-20,0.00024242424115072936,0.0,-6.776263578034403e-21,1.2417127415051156e-19,0.0028571428265422583,3.144186300207963e-18,-0.0057142856530845165,-4.0115480381963664e-18,-3.477866926806368e-19,-1.0164395367051604e-18,0.0,0.0014285714132711291,-3.1848438816761693e-19,4.961962845588157e-19,0.0021818182431161404,-2.168404344971009e-19,-0.0010909091215580702,-0.0004848484823014587,1.402332701834359e-20,-1.2197274440461925e-19,-6.776263578034403e-21,-3.1848438816761693e-19,0.00024242424115072936,1.2990028829896261e-19,0.0009090909152291715,-3.686287386450715e-18,-3.584643432780199e-18,-0.0006818181718699634,4.777265822514254e-19,3.923475068149337e-19,1.2417127415051156e-19,4.961962845588157e-19,1.2990028829896261e-19,7.575757626909763e-05,5.0,5.0,11.0,0.09906093776226044,-0.030389610677957535,-0.030389610677957535,-0.016083916649222374,0.002597402548417449,0.003636363660916686,0.001818181830458343,0.002597402548417449,0.001818181830458343,0.0006993007264100015,-0.030389610677957535,0.030779220163822174,0.003636363660916686,0.001818181830458343,-0.005194805096834898,-0.001818181830458343,-0.0009090909152291715,-1.0516761073109393e-17,-9.75781955236954e-19,3.2729353081906165e-18,-0.030389610677957535,0.003636363660916686,0.030779220163822174,0.001818181830458343,-1.2739375526704677e-17,-0.001818181830458343,-7.724940478959219e-19,-0.005194805096834898,-0.0009090909152291715,3.1204693776848424e-18,-0.016083916649222374,0.001818181830458343,0.001818181830458343,0.006480186711996794,6.1257422745431e-18,3.577867169202165e-18,-0.0003636363544501364,6.396792817664476e-18,-0.0003636363544501364,-0.0004662004648707807,0.002597402548417449,-0.005194805096834898,-1.2739375526704677e-17,6.1257422745431e-18,0.0012987012742087245,1.0033962426136946e-18,-6.321027829843141e-19,2.190251012129147e-18,3.2796175833715496e-19,-5.47183283926278e-19,0.003636363660916686,-0.001818181830458343,-0.001818181830458343,3.577867169202165e-18,1.0033962426136946e-18,0.0009090909152291715,-1.0842021724855044e-19,4.0657581468206416e-20,-2.0328790734103208e-19,-2.722266647054558e-19,0.001818181830458343,-0.0009090909152291715,-7.724940478959219e-19,-0.0003636363544501364,-6.321027829843141e-19,-1.0842021724855044e-19,0.0001818181772250682,2.303929616531697e-19,2.710505431213761e-20,-7.466731268612875e-20,0.002597402548417449,-1.0516761073109393e-17,-0.005194805096834898,6.396792817664476e-18,2.190251012129147e-18,4.0657581468206416e-20,2.303929616531697e-19,0.0012987012742087245,-7.047314121155779e-19,-5.1757316482781185e-19,0.001818181830458343,-9.75781955236954e-19,-0.0009090909152291715,-0.0003636363544501364,3.2796175833715496e-19,-2.0328790734103208e-19,2.710505431213761e-20,-7.047314121155779e-19,0.0001818181772250682,-6.573732928694769e-20,0.0006993007264100015,3.2729353081906165e-18,3.1204693776848424e-18,-0.0004662004648707807,-5.47183283926278e-19,-2.722266647054558e-19,-7.466731268612875e-20,-5.1757316482781185e-19,-6.573732928694769e-20,4.662004721467383e-05,5.0,5.0,12.0,0.09190475940704346,-0.02798534743487835,-0.02798534743487835,-0.01373626384884119,0.0023809524718672037,0.0033333334140479565,0.0015384615398943424,0.0023809524718672037,0.0015384615398943424,0.0005494505749084055,-0.02798534743487835,0.02827838808298111,0.0033333334140479565,0.0015384615398943424,-0.004761904943734407,-0.0016666667070239782,-0.0007692307699471712,-2.3852447794681098e-18,7.047314121155779e-19,1.582257545471033e-18,-0.02798534743487835,0.0033333334140479565,0.02827838808298111,0.0015384615398943424,-5.963111948670274e-19,-0.0016666667070239782,6.776263578034403e-20,-0.004761904943734407,-0.0007692307699471712,1.4907779871675686e-18,-0.01373626384884119,0.0015384615398943424,0.0015384615398943424,0.005024975165724754,2.8189256484623115e-18,2.4936649967166602e-18,-0.0002797202905640006,2.8189256484623115e-18,-0.0002797202905640006,-0.00032967032166197896,0.0023809524718672037,-0.004761904943734407,-5.963111948670274e-19,2.8189256484623115e-18,0.0011904762359336019,9.02592277930529e-20,-1.1279106545467478e-19,1.7434776576464265e-19,-2.1537377541638475e-20,-2.303929616531697e-19,0.0033333334140479565,-0.0016666667070239782,-0.0016666667070239782,2.4936649967166602e-18,9.02592277930529e-20,0.0008333333535119891,-8.131516293641283e-20,7.724940478959219e-19,-1.6263032587282567e-19,-1.664756171219462e-19,0.0015384615398943424,-0.0007692307699471712,6.776263578034403e-20,-0.0002797202905640006,-1.1279106545467478e-19,-8.131516293641283e-20,0.0001398601452820003,4.743384504624082e-20,-1.0164395367051604e-20,-3.601349870364962e-20,0.0023809524718672037,-2.3852447794681098e-18,-0.004761904943734407,2.8189256484623115e-18,1.7434776576464265e-19,7.724940478959219e-19,4.743384504624082e-20,0.0011904762359336019,-2.0328790734103208e-19,-2.0716906462452503e-19,0.0015384615398943424,7.047314121155779e-19,-0.0007692307699471712,-0.0002797202905640006,-2.1537377541638475e-20,-1.6263032587282567e-19,-1.0164395367051604e-20,-2.0328790734103208e-19,0.0001398601452820003,-4.258126429970664e-20,0.0005494505749084055,1.582257545471033e-18,1.4907779871675686e-18,-0.00032967032166197896,-2.303929616531697e-19,-1.664756171219462e-19,-3.601349870364962e-20,-2.0716906462452503e-19,-4.258126429970664e-20,2.9970029572723433e-05,5.0,5.0,13.0,0.08571428805589676,-0.025934066623449326,-0.025934066623449326,-0.011868132278323174,0.002197802299633622,0.003076923079788685,0.0013186812866479158,0.002197802299633622,0.0013186812866479158,0.00043956044828519225,-0.025934066623449326,0.026153845712542534,0.003076923079788685,0.0013186812866479158,-0.004395604599267244,-0.0015384615398943424,-0.0006593406433239579,2.2768245622195593e-18,-1.0842021724855044e-19,1.6263032587282567e-19,-0.025934066623449326,0.003076923079788685,0.026153845712542534,0.0013186812866479158,1.6805133673525319e-18,-0.0015384615398943424,4.336808689942018e-19,-0.004395604599267244,-0.0006593406433239579,3.3881317890172014e-21,-0.011868132278323174,0.0013186812866479158,0.0013186812866479158,0.003976023755967617,-1.1384122811097797e-18,7.047314121155779e-19,-0.00021978022414259613,-1.3010426069826053e-18,-0.00021978022414259613,-0.00023976023658178747,0.002197802299633622,-0.004395604599267244,1.6805133673525319e-18,-1.1384122811097797e-18,0.001098901149816811,-8.544733334666383e-19,3.706248392004962e-19,-1.8129530742826381e-19,1.2711125499328401e-19,-1.9481757786848908e-20,0.003076923079788685,-0.0015384615398943424,-0.0015384615398943424,7.047314121155779e-19,-8.544733334666383e-19,0.0007692307699471712,-1.6940658945086007e-19,-9.215718466126788e-19,-1.1519648082658485e-19,-1.7876214758167686e-20,0.0013186812866479158,-0.0006593406433239579,4.336808689942018e-19,-0.00021978022414259613,3.706248392004962e-19,-1.6940658945086007e-19,0.00010989011207129806,-2.0328790734103208e-20,6.776263578034403e-21,-4.823714647316135e-21,0.002197802299633622,2.2768245622195593e-18,-0.004395604599267244,-1.3010426069826053e-18,-1.8129530742826381e-19,-9.215718466126788e-19,-2.0328790734103208e-20,0.001098901149816811,4.811147140404426e-19,3.82514245418019e-21,0.0013186812866479158,-1.0842021724855044e-19,-0.0006593406433239579,-0.00021978022414259613,1.2711125499328401e-19,-1.1519648082658485e-19,6.776263578034403e-21,4.811147140404426e-19,0.00010989011207129806,5.427059701436173e-21,0.00043956044828519225,1.6263032587282567e-19,3.3881317890172014e-21,-0.00023976023658178747,-1.9481757786848908e-20,-1.7876214758167686e-20,-4.823714647316135e-21,3.82514245418019e-21,5.427059701436173e-21,1.9980019715148956e-05,5.0,5.0,14.0,0.08030612021684647,-0.02416326478123665,-0.02416326478123665,-0.010357142426073551,0.0020408162381500006,0.0028571428265422583,0.0011428571306169033,0.0020408162381500006,0.0011428571306169033,0.0003571428533177823,-0.02416326478123665,0.02432653121650219,0.0028571428265422583,0.0011428571306169033,-0.004081632476300001,-0.0014285714132711291,-0.0005714285653084517,1.6263032587282567e-18,-5.421010862427522e-20,-2.5258522487123236e-18,-0.02416326478123665,0.0028571428265422583,0.02432653121650219,0.0011428571306169033,4.512991542970912e-18,-0.0014285714132711291,3.3881317890172014e-20,-0.004081632476300001,-0.0005714285653084517,-2.3987973066241786e-18,-0.010357142426073551,0.0011428571306169033,0.0011428571306169033,0.0032005493994802237,-4.336808689942018e-18,-4.7704895589362195e-18,-0.00017582417058292776,-4.716279450311944e-18,-0.00017582417058292776,-0.00017857142665889114,0.0020408162381500006,-0.004081632476300001,4.512991542970912e-18,-4.336808689942018e-18,0.0010204081190750003,-3.780910231081881e-19,3.644120277912782e-20,-6.669406835541154e-19,-1.201734585512545e-19,3.4474240953250024e-19,0.0028571428265422583,-0.0014285714132711291,-0.0014285714132711291,-4.7704895589362195e-18,-3.780910231081881e-19,0.0007142857066355646,1.6263032587282567e-19,1.0028870095490916e-18,2.574980159653073e-19,2.936175036472888e-19,0.0011428571306169033,-0.0005714285653084517,3.3881317890172014e-20,-0.00017582417058292776,3.644120277912782e-20,1.6263032587282567e-19,8.791208529146388e-05,-9.486769009248164e-20,0.0,6.341888420162933e-20,0.0020408162381500006,1.6263032587282567e-18,-0.004081632476300001,-4.716279450311944e-18,-6.669406835541154e-19,1.0028870095490916e-18,-9.486769009248164e-20,0.0010204081190750003,3.015437292225309e-19,3.2998473192272996e-19,0.0011428571306169033,-5.421010862427522e-20,-0.0005714285653084517,-0.00017582417058292776,-1.201734585512545e-19,2.574980159653073e-19,0.0,3.015437292225309e-19,8.791208529146388e-05,5.439193326267203e-20,0.0003571428533177823,-2.5258522487123236e-18,-2.3987973066241786e-18,-0.00017857142665889114,3.4474240953250024e-19,2.936175036472888e-19,6.341888420162933e-20,3.2998473192272996e-19,5.439193326267203e-20,1.3736264008912258e-05,5.0,5.0,15.0,0.07554061710834503,-0.02261904813349247,-0.02261904813349247,-0.00911764707416296,0.0019047618843615055,0.0026666666381061077,0.0010000000474974513,0.0019047618843615055,0.0010000000474974513,0.00029411763534881175,-0.02261904813349247,0.022738095372915268,0.0026666666381061077,0.0010000000474974513,-0.003809523768723011,-0.0013333333190530539,-0.0005000000237487257,1.1817803680091998e-17,8.673617379884035e-19,-7.894347068410079e-19,-0.02261904813349247,0.0026666666381061077,0.022738095372915268,0.0010000000474974513,1.1329912702473521e-17,-0.0013333333190530539,7.589415207398531e-19,-0.003809523768723011,-0.0005000000237487257,-7.132017415881209e-19,-0.00911764707416296,0.0010000000474974513,0.0010000000474974513,0.0026147381868213415,-1.4907779871675686e-18,-1.6805133673525319e-18,-0.0001428571413271129,-9.215718466126788e-19,-0.0001428571413271129,-0.00013574660988524556,0.0019047618843615055,-0.003809523768723011,1.1329912702473521e-17,-1.4907779871675686e-18,0.0009523809421807528,-4.2924296745967235e-19,1.9558473618784373e-19,-2.0370294521338056e-18,-2.58089320856312e-19,1.2451384324638215e-19,0.0026666666381061077,-0.0013333333190530539,-0.0013333333190530539,-1.6805133673525319e-18,-4.2924296745967235e-19,0.0006666666595265269,6.098637220230962e-20,-5.963111948670274e-19,1.0842021724855044e-19,9.153951597317746e-20,0.0010000000474974513,-0.0005000000237487257,7.589415207398531e-19,-0.0001428571413271129,1.9558473618784373e-19,6.098637220230962e-20,7.142857066355646e-05,-2.303929616531697e-19,-6.776263578034403e-21,1.3810185838943404e-20,0.0019047618843615055,1.1817803680091998e-17,-0.003809523768723011,-9.215718466126788e-19,-2.0370294521338056e-18,-5.963111948670274e-19,-2.303929616531697e-19,0.0009523809421807528,2.0328790734103208e-20,9.827159647427417e-20,0.0010000000474974513,8.673617379884035e-19,-0.0005000000237487257,-0.0001428571413271129,-2.58089320856312e-19,1.0842021724855044e-19,-6.776263578034403e-21,2.0328790734103208e-20,7.142857066355646e-05,1.4310434623494785e-20,0.00029411763534881175,-7.894347068410079e-19,-7.132017415881209e-19,-0.00013574660988524556,1.2451384324638215e-19,9.153951597317746e-20,1.3810185838943404e-20,9.827159647427417e-20,1.4310434623494785e-20,9.69618577073561e-06,5.0,5.0,16.0,0.07130952179431915,-0.02126050367951393,-0.02126050367951393,-0.00808823574334383,0.0017857142956927419,0.0024999999441206455,0.0008823529351502657,0.0017857142956927419,0.0008823529351502657,0.00024509805371053517,-0.02126050367951393,0.021344536915421486,0.0024999999441206455,0.0008823529351502657,-0.0035714285913854837,-0.0012499999720603228,-0.00044117646757513285,-2.4936649967166602e-18,-5.421010862427522e-19,1.6093625997831706e-19,-0.02126050367951393,0.0024999999441206455,0.021344536915421486,0.0008823529351502657,-3.713392440762853e-18,-0.0012499999720603228,-1.4230153513872246e-19,-0.0035714285913854837,-0.00044117646757513285,2.998496633280223e-19,-0.00808823574334383,0.0008823529351502657,0.0008823529351502657,0.002163865603506565,-6.2341624917916505e-19,3.7947076036992655e-19,-0.00011764706141548231,1.3552527156068805e-19,-0.00011764706141548231,-0.0001050420178216882,0.0017857142956927419,-0.0035714285913854837,-3.713392440762853e-18,-6.2341624917916505e-19,0.0008928571478463709,3.023031327236429e-19,2.020469296270494e-19,4.541787147659955e-19,1.130842751324307e-19,5.082197683525802e-21,0.0024999999441206455,-0.0012499999720603228,-0.0012499999720603228,3.7947076036992655e-19,3.023031327236429e-19,0.0006249999860301614,6.776263578034403e-21,3.9302328752599536e-19,4.0657581468206416e-20,-2.5549146966970973e-20,0.0008823529351502657,-0.00044117646757513285,-1.4230153513872246e-19,-0.00011764706141548231,2.020469296270494e-19,6.776263578034403e-21,5.8823530707741156e-05,1.6940658945086007e-20,3.3881317890172014e-21,-8.491247286959078e-21,0.0017857142956927419,-2.4936649967166602e-18,-0.0035714285913854837,1.3552527156068805e-19,4.541787147659955e-19,3.9302328752599536e-19,1.6940658945086007e-20,0.0008928571478463709,2.507217523872729e-19,-4.4518327423849765e-20,0.0008823529351502657,-5.421010862427522e-19,-0.00044117646757513285,-0.00011764706141548231,1.130842751324307e-19,4.0657581468206416e-20,3.3881317890172014e-21,2.507217523872729e-19,5.8823530707741156e-05,-7.215715395356703e-21,0.00024509805371053517,1.6093625997831706e-19,2.998496633280223e-19,-0.0001050420178216882,5.082197683525802e-21,-2.5549146966970973e-20,-8.491247286959078e-21,-4.4518327423849765e-20,-7.215715395356703e-21,7.002801339694997e-06,5.0,6.0,3.0,0.23174603283405304,-0.0833333358168602,-0.07261905074119568,-0.1190476194024086,0.007936508394777775,0.009523809887468815,0.01666666753590107,0.0059523810632526875,0.014285714365541935,0.01666666753590107,-0.0833333358168602,0.0892857164144516,0.009523809887468815,0.01666666753590107,-0.01587301678955555,-0.004761904943734407,-0.008333333767950535,3.084566843967897e-20,3.377475634775987e-19,-9.391201152049359e-35,-0.07261905074119568,0.009523809887468815,0.06178571283817291,0.014285714365541935,1.612428079434504e-19,-0.003809523768723011,-4.1501194540615693e-19,-0.008928571827709675,-0.0057142856530845165,-7.241319738534986e-17,-0.1190476194024086,0.01666666753590107,0.014285714365541935,0.2857142984867096,1.8792819734168805e-19,-4.5639787232841336e-20,-0.01666666753590107,-3.7326071846479695e-17,-0.014285714365541935,-0.10000000149011612,0.007936508394777775,-0.01587301678955555,1.612428079434504e-19,1.8792819734168805e-19,0.003968254197388887,-9.460255447235138e-21,-6.646449859356423e-20,-2.2172472921907338e-20,-2.199967780000185e-20,8.514342059408435e-35,0.009523809887468815,-0.004761904943734407,-0.003809523768723011,-4.5639787232841336e-20,-9.460255447235138e-21,0.0019047618843615055,1.4384436915280164e-19,6.248056250337443e-21,-9.68195843065139e-20,-1.4814955045617433e-34,0.01666666753590107,-0.008333333767950535,-4.1501194540615693e-19,-0.01666666753590107,-6.646449859356423e-20,1.4384436915280164e-19,0.008333333767950535,2.34625047080364e-20,7.512960921639487e-35,9.391201152049359e-35,0.0059523810632526875,3.084566843967897e-20,-0.008928571827709675,-3.7326071846479695e-17,-2.2172472921907338e-20,6.248056250337443e-21,2.34625047080364e-20,0.0017857142956927419,2.223395105298381e-18,1.5860329632228476e-17,0.014285714365541935,3.377475634775987e-19,-0.0057142856530845165,-0.014285714365541935,-2.199967780000185e-20,-9.68195843065139e-20,7.512960921639487e-35,2.223395105298381e-18,0.0057142856530845165,-6.888448707840988e-18,0.01666666753590107,-9.391201152049359e-35,-7.241319738534986e-17,-0.10000000149011612,8.514342059408435e-35,-1.4814955045617433e-34,9.391201152049359e-35,1.5860329632228476e-17,-6.888448707840988e-18,0.05000000074505806,5.0,6.0,4.0,0.19083333015441895,-0.06499999761581421,-0.056607142090797424,-0.07642856985330582,0.0059523810632526875,0.0071428571827709675,0.009999999776482582,0.004464285913854837,0.008571428246796131,0.008333333767950535,-0.06499999761581421,0.0682142823934555,0.0071428571827709675,0.009999999776482582,-0.011904762126505375,-0.0035714285913854837,-0.004999999888241291,9.70092930101241e-20,5.699279590369189e-20,-5.135813338091789e-34,-0.056607142090797424,0.0071428571827709675,0.04719642922282219,0.008571428246796131,-1.751030979861772e-19,-0.0028571428265422583,3.3835368007144693e-19,-0.0066964286379516125,-0.00342857139185071,1.5841818984480764e-17,-0.07642856985330582,0.009999999776482582,0.008571428246796131,0.10928571224212646,-1.8503717525142107e-19,3.953464759751388e-19,-0.006666666828095913,1.2054862890301733e-17,-0.0057142856530845165,-0.02500000037252903,0.0059523810632526875,-0.011904762126505375,-1.751030979861772e-19,-1.8503717525142107e-19,0.0029761905316263437,1.1896601234823575e-20,9.251858762571054e-20,2.788265901790001e-20,-1.2177097562546598e-37,0.0,0.0071428571827709675,-0.0035714285913854837,-0.0028571428265422583,3.953464759751388e-19,1.1896601234823575e-20,0.0014285714132711291,-1.6917684003572346e-19,-3.10594170798415e-20,-2.2797118684594183e-20,2.0543253811544638e-34,0.009999999776482582,-0.004999999888241291,3.3835368007144693e-19,-0.006666666828095913,9.251858762571054e-20,-1.6917684003572346e-19,0.0033333334140479565,1.0613814287048833e-35,4.3431815007859814e-36,-0.0,0.004464285913854837,9.70092930101241e-20,-0.0066964286379516125,1.2054862890301733e-17,2.788265901790001e-20,-3.10594170798415e-20,1.0613814287048833e-35,0.0013392857508733869,-1.4912759498963255e-18,-2.775557602921922e-18,0.008571428246796131,5.699279590369189e-20,-0.00342857139185071,-0.0057142856530845165,-1.2177097562546598e-37,-2.2797118684594183e-20,4.3431815007859814e-36,-1.4912759498963255e-18,0.0022857142612338066,-1.309353910982385e-18,0.008333333767950535,-5.135813338091789e-34,1.5841818984480764e-17,-0.02500000037252903,0.0,2.0543253811544638e-34,-0.0,-2.775557602921922e-18,-1.309353910982385e-18,0.008333333767950535,5.0,6.0,5.0,0.16238094866275787,-0.0533333346247673,-0.04642857238650322,-0.0533333346247673,0.004761904943734407,0.0057142856530845165,0.006666666828095913,0.0035714285913854837,0.0057142856530845165,0.004761904943734407,-0.0533333346247673,0.05523809418082237,0.0057142856530845165,0.006666666828095913,-0.009523809887468815,-0.0028571428265422583,-0.0033333334140479565,2.168404344971009e-19,8.937813826901615e-20,2.168404344971009e-19,-0.04642857238650322,0.0057142856530845165,0.03821428492665291,0.0057142856530845165,1.0612449378068316e-19,-0.0022857142612338066,3.7947076036992655e-19,-0.0053571430034935474,-0.0022857142612338066,-1.3444106938820255e-17,-0.0533333346247673,0.006666666828095913,0.0057142856530845165,0.05523809418082237,5.87166403002524e-20,2.486047387058083e-19,-0.0033333334140479565,-1.3805707289236586e-17,-0.0028571428265422583,-0.009523809887468815,0.004761904943734407,-0.009523809887468815,1.0612449378068316e-19,5.87166403002524e-20,0.0023809524718672037,-5.995890967614863e-21,6.434875799476111e-20,-1.4052869644673952e-20,-8.936234105802095e-21,-3.7947944576635836e-20,0.0057142856530845165,-0.0028571428265422583,-0.0022857142612338066,2.486047387058083e-19,-5.995890967614863e-21,0.0011428571306169033,-1.2681035512077078e-19,0.0,-1.2858865934402767e-20,1.3164682038564438e-20,0.006666666828095913,-0.0033333334140479565,3.7947076036992655e-19,-0.0033333334140479565,6.434875799476111e-20,-1.2681035512077078e-19,0.0016666667070239782,-6.776263578034403e-21,-5.421010862427522e-20,-1.0842021724855044e-19,0.0035714285913854837,2.168404344971009e-19,-0.0053571430034935474,-1.3805707289236586e-17,-1.4052869644673952e-20,0.0,-6.776263578034403e-21,0.0010714285308495164,1.1926223897340549e-18,2.7376104855258987e-18,0.0057142856530845165,8.937813826901615e-20,-0.0022857142612338066,-0.0028571428265422583,-8.936234105802095e-21,-1.2858865934402767e-20,-5.421010862427522e-20,1.1926223897340549e-18,0.0011428571306169033,-1.0842021724855044e-19,0.004761904943734407,2.168404344971009e-19,-1.3444106938820255e-17,-0.009523809887468815,-3.7947944576635836e-20,1.3164682038564438e-20,-1.0842021724855044e-19,2.7376104855258987e-18,-1.0842021724855044e-19,0.0023809524718672037,5.0,6.0,6.0,0.14138321578502655,-0.04523809626698494,-0.03937074914574623,-0.03937074914574623,0.003968254197388887,0.004761904943734407,0.004761904943734407,0.0029761905316263437,0.004081632476300001,0.0029761905316263437,-0.04523809626698494,0.04642857238650322,0.004761904943734407,0.004761904943734407,-0.007936508394777775,-0.0023809524718672037,-0.0023809524718672037,-1.0842021724855044e-19,-1.8260804306038547e-19,-1.0842021724855044e-19,-0.03937074914574623,0.004761904943734407,0.03211734816431999,0.004081632476300001,-7.375525558790954e-20,-0.0019047618843615055,-2.710505431213761e-19,-0.004464285913854837,-0.0016326530603691936,-8.348356728138384e-18,-0.03937074914574623,0.004761904943734407,0.004081632476300001,0.03211734816431999,-2.4760061899035133e-20,2.248974030767404e-20,-0.0019047618843615055,-8.995330253982447e-18,-0.0016326530603691936,-0.004464285913854837,0.003968254197388887,-0.007936508394777775,-7.375525558790954e-20,-2.4760061899035133e-20,0.0019841270986944437,3.39000506229895e-21,-1.8711218043623022e-20,7.945324238545419e-21,9.543447683314239e-21,7.062139297996003e-21,0.004761904943734407,-0.0023809524718672037,-0.0019047618843615055,2.248974030767404e-20,3.39000506229895e-21,0.0009523809421807528,3.4241600283378606e-20,5.421010862427522e-20,-2.824829869804259e-20,5.924125375437002e-21,0.004761904943734407,-0.0023809524718672037,-2.710505431213761e-19,-0.0019047618843615055,-1.8711218043623022e-20,3.4241600283378606e-20,0.0009523809421807528,0.0,8.131516293641283e-20,5.421010862427522e-20,0.0029761905316263437,-1.0842021724855044e-19,-0.004464285913854837,-8.995330253982447e-18,7.945324238545419e-21,5.421010862427522e-20,0.0,0.0008928571478463709,5.149960319306146e-19,1.5449880957918438e-18,0.004081632476300001,-1.8260804306038547e-19,-0.0016326530603691936,-0.0016326530603691936,9.543447683314239e-21,-2.824829869804259e-20,8.131516293641283e-20,5.149960319306146e-19,0.0006530612008646131,1.8973538018496328e-19,0.0029761905316263437,-1.0842021724855044e-19,-8.348356728138384e-18,-0.004464285913854837,7.062139297996003e-21,5.924125375437002e-21,5.421010862427522e-20,1.5449880957918438e-18,1.8973538018496328e-19,0.0008928571478463709,5.0,6.0,7.0,0.12522675096988678,-0.03928571566939354,-0.034183673560619354,-0.0302721094340086,0.003401360474526882,0.004081632476300001,0.0035714285913854837,0.0025510203558951616,0.0030612244736403227,0.0019841270986944437,-0.03928571566939354,0.04005102068185806,0.004081632476300001,0.0035714285913854837,-0.006802720949053764,-0.0020408162381500006,-0.0017857142956927419,5.502326025363935e-18,4.4181238528784306e-18,2.168404344971009e-18,-0.034183673560619354,0.004081632476300001,0.027704082429409027,0.0030612244736403227,1.2711922229354655e-17,-0.0016326530603691936,-5.692061405548898e-19,-0.0038265306502580643,-0.0012244897661730647,-8.673617379884035e-19,-0.0302721094340086,0.0035714285913854837,0.0030612244736403227,0.020408162847161293,8.246651563102539e-18,-1.8727528300468463e-18,-0.0011904762359336019,-1.7039808949209675e-18,-0.0010204081190750003,-0.0023809524718672037,0.003401360474526882,-0.006802720949053764,1.2711922229354655e-17,8.246651563102539e-18,0.001700680237263441,-2.910038972549568e-19,-2.1219033528605747e-19,-1.4161008452493172e-18,-1.1652486051204141e-18,-6.29378153444141e-19,0.004081632476300001,-0.0020408162381500006,-0.0016326530603691936,-1.8727528300468463e-18,-2.910038972549568e-19,0.0008163265301845968,2.617098386986683e-19,2.710505431213761e-20,6.6532585897735e-20,1.7667874780612e-19,0.0035714285913854837,-0.0017857142956927419,-5.692061405548898e-19,-0.0011904762359336019,-2.1219033528605747e-19,2.617098386986683e-19,0.0005952381179668009,-3.3881317890172014e-21,1.3552527156068805e-20,0.0,0.0025510203558951616,5.502326025363935e-18,-0.0038265306502580643,-1.7039808949209675e-18,-1.4161008452493172e-18,2.710505431213761e-20,-3.3881317890172014e-21,0.0007653061184100807,1.8973538018496328e-19,1.0842021724855044e-19,0.0030612244736403227,4.4181238528784306e-18,-0.0012244897661730647,-0.0010204081190750003,-1.1652486051204141e-18,6.6532585897735e-20,1.3552527156068805e-20,1.8973538018496328e-19,0.0004081632650922984,-1.3552527156068805e-19,0.0019841270986944437,2.168404344971009e-18,-8.673617379884035e-19,-0.0023809524718672037,-6.29378153444141e-19,1.7667874780612e-19,0.0,1.0842021724855044e-19,-1.3552527156068805e-19,0.00039682540227659047,5.0,6.0,8.0,0.11240079253911972,-0.0347222238779068,-0.03020833246409893,-0.02400793693959713,0.0029761905316263437,0.0035714285913854837,0.0027777778450399637,0.0022321429569274187,0.0023809524718672037,0.0013888889225199819,-0.0347222238779068,0.0352182537317276,0.0035714285913854837,0.0027777778450399637,-0.0059523810632526875,-0.0017857142956927419,-0.0013888889225199819,-1.925929944387236e-34,2.710505431213761e-19,-5.421010862427522e-20,-0.03020833246409893,0.0035714285913854837,0.024360118433833122,0.0023809524718672037,0.0,-0.0014285714132711291,2.710505431213761e-19,-0.0033482143189758062,-0.0009523809421807528,2.222614453595284e-18,-0.02400793693959713,0.0027777778450399637,0.0023809524718672037,0.013803854584693909,-0.0,-0.0,-0.0007936508045531809,3.1415858511572493e-18,-0.0006802721181884408,-0.0013888889225199819,0.0029761905316263437,-0.0059523810632526875,0.0,-0.0,0.0014880952658131719,0.0,0.0,0.0,0.0,0.0,0.0035714285913854837,-0.0017857142956927419,-0.0014285714132711291,-0.0,0.0,0.0007142857066355646,0.0,0.0,0.0,0.0,0.0027777778450399637,-0.0013888889225199819,2.710505431213761e-19,-0.0007936508045531809,0.0,0.0,0.00039682540227659047,7.222237291452134e-35,-8.131516293641283e-20,0.0,0.0022321429569274187,-1.925929944387236e-34,-0.0033482143189758062,3.1415858511572493e-18,0.0,0.0,7.222237291452134e-35,0.0006696428754366934,-3.3144850556482497e-19,-3.304235253882952e-19,0.0023809524718672037,2.710505431213761e-19,-0.0009523809421807528,-0.0006802721181884408,0.0,0.0,-8.131516293641283e-20,-3.3144850556482497e-19,0.0002721088530961424,-1.6263032587282567e-19,0.0013888889225199819,-5.421010862427522e-20,2.222614453595284e-18,-0.0013888889225199819,0.0,0.0,0.0,-3.304235253882952e-19,-1.6263032587282567e-19,0.00019841270113829523,5.0,6.0,9.0,0.10196729004383087,-0.031111111864447594,-0.027063492685556412,-0.01950937882065773,0.0026455025654286146,0.0031746032182127237,0.002222222276031971,0.0019841270986944437,0.0019047618843615055,0.001010101055726409,-0.031111111864447594,0.03142857179045677,0.0031746032182127237,0.002222222276031971,-0.005291005130857229,-0.0015873016091063619,-0.0011111111380159855,-5.7777898331617076e-34,-1.7618285302889447e-19,-2.710505431213761e-20,-0.027063492685556412,0.0031746032182127237,0.021738095209002495,0.0019047618843615055,0.0,-0.0012698412174358964,-2.0328790734103208e-19,-0.0029761905316263437,-0.0007619047537446022,-2.6291902682773483e-18,-0.01950937882065773,0.002222222276031971,0.0019047618843615055,0.009783550165593624,-0.0,-0.0,-0.0005555555690079927,-4.7662461223938225e-18,-0.0004761904710903764,-0.0008658008882775903,0.0026455025654286146,-0.005291005130857229,0.0,-0.0,0.0013227512827143073,0.0,0.0,0.0,0.0,0.0,0.0031746032182127237,-0.0015873016091063619,-0.0012698412174358964,-0.0,0.0,0.0006349206087179482,0.0,0.0,0.0,0.0,0.002222222276031971,-0.0011111111380159855,-2.0328790734103208e-19,-0.0005555555690079927,0.0,0.0,0.00027777778450399637,1.4444474582904269e-34,4.404571325722362e-20,6.776263578034403e-21,0.0019841270986944437,-5.7777898331617076e-34,-0.0029761905316263437,-4.7662461223938225e-18,0.0,0.0,1.4444474582904269e-34,0.0005952381179668009,4.124692439019572e-19,4.668841572760217e-19,0.0019047618843615055,-1.7618285302889447e-19,-0.0007619047537446022,-0.0004761904710903764,0.0,0.0,4.404571325722362e-20,4.124692439019572e-19,0.00019047618843615055,6.776263578034403e-20,0.001010101055726409,-2.710505431213761e-20,-2.6291902682773483e-18,-0.0008658008882775903,0.0,0.0,6.776263578034403e-21,4.668841572760217e-19,6.776263578034403e-20,0.00010822511103469878,5.0,6.0,10.0,0.09331168979406357,-0.02818181738257408,-0.024512987583875656,-0.016168830916285515,0.0023809524718672037,0.0028571428265422583,0.001818181830458343,0.0017857142956927419,0.0015584415523335338,0.0007575757335871458,-0.02818181738257408,0.02837662398815155,0.0028571428265422583,0.001818181830458343,-0.004761904943734407,-0.0014285714132711291,-0.0009090909152291715,-3.3610267347050637e-18,-3.469446951953614e-18,-2.032879073410321e-18,-0.024512987583875656,0.0028571428265422583,0.019626623019576073,0.0015584415523335338,-8.429671891074797e-18,-0.0011428571306169033,1.8973538018496328e-19,-0.0026785715017467737,-0.0006233766325749457,-3.2559946492455305e-18,-0.016168830916285515,0.001818181830458343,0.0015584415523335338,0.007191558368504047,-4.607859233063394e-18,-3.469446951953614e-18,-0.0004040404164697975,-3.3068166260807885e-18,-0.00034632033202797174,-0.0005681818001903594,0.0023809524718672037,-0.004761904943734407,-8.429671891074797e-18,-4.607859233063394e-18,0.0011904762359336019,1.0208956620625601e-18,3.6782700417611214e-19,7.768280090166052e-19,5.448250436986776e-19,2.371692252312041e-19,0.0028571428265422583,-0.0014285714132711291,-0.0011428571306169033,-3.469446951953614e-18,1.0208956620625601e-18,0.0005714285653084517,6.098637220230962e-20,4.87890977618477e-19,3.4558944247975454e-19,2.6811208739285805e-19,0.001818181830458343,-0.0009090909152291715,1.8973538018496328e-19,-0.0004040404164697975,3.6782700417611214e-19,6.098637220230962e-20,0.00020202020823489875,-1.3552527156068805e-19,8.809142651444724e-20,6.764184802386568e-20,0.0017857142956927419,-3.3610267347050637e-18,-0.0026785715017467737,-3.3068166260807885e-18,7.768280090166052e-19,4.87890977618477e-19,-1.3552527156068805e-19,0.0005357142654247582,4.404571325722362e-20,3.77819035783023e-19,0.0015584415523335338,-3.469446951953614e-18,-0.0006233766325749457,-0.00034632033202797174,5.448250436986776e-19,3.4558944247975454e-19,8.809142651444724e-20,4.404571325722362e-20,0.00013852813572157174,1.4234613826831496e-19,0.0007575757335871458,-2.032879073410321e-18,-3.2559946492455305e-18,-0.0005681818001903594,2.371692252312041e-19,2.6811208739285805e-19,6.764184802386568e-20,3.77819035783023e-19,1.4234613826831496e-19,6.313131598290056e-05,5.0,6.0,11.0,0.08601398766040802,-0.025757575407624245,-0.022402597591280937,-0.013619713485240936,0.0021645021624863148,0.002597402548417449,0.0015151514671742916,0.001623376621864736,0.0012987012742087245,0.0005827505956403911,-0.025757575407624245,0.02586580067873001,0.002597402548417449,0.0015151514671742916,-0.0043290043249726295,-0.0012987012742087245,-0.0007575757335871458,-5.4752209710517974e-18,-1.8431436932253575e-18,-9.351243737687476e-19,-0.022402597591280937,0.002597402548417449,0.017889609560370445,0.0012987012742087245,-8.822695178600792e-18,-0.0010389609960839152,-5.55653613398821e-19,-0.002435064874589443,-0.0005194804980419576,-5.183841637196318e-19,-0.013619713485240936,0.0015151514671742916,0.0012987012742087245,0.005443445406854153,-1.4094628242311558e-18,-1.1384122811097797e-18,-0.0003030303050763905,-6.505213034913027e-19,-0.0002597402490209788,-0.0003885003970935941,0.0021645021624863148,-0.0043290043249726295,-8.822695178600792e-18,-1.4094628242311558e-18,0.0010822510812431574,3.252317456606517e-20,-2.1512703325577386e-19,1.4284990418605683e-18,2.295525461508158e-19,1.0842021724855044e-19,0.002597402548417449,-0.0012987012742087245,-0.0010389609960839152,-1.1384122811097797e-18,3.252317456606517e-20,0.0005194804980419576,-3.3881317890172014e-20,-1.4907779871675686e-19,1.4230153513872246e-19,7.244936358288706e-20,0.0015151514671742916,-0.0007575757335871458,-5.55653613398821e-19,-0.0003030303050763905,-2.1512703325577386e-19,-3.3881317890172014e-20,0.00015151515253819525,6.776263578034403e-21,8.470329472543003e-20,4.3523135442894707e-20,0.001623376621864736,-5.4752209710517974e-18,-0.002435064874589443,-6.505213034913027e-19,1.4284990418605683e-18,-1.4907779871675686e-19,6.776263578034403e-21,0.0004870129923801869,2.1006417091906648e-19,1.704642012563202e-20,0.0012987012742087245,-1.8431436932253575e-18,-0.0005194804980419576,-0.0002597402490209788,2.295525461508158e-19,1.4230153513872246e-19,8.470329472543003e-20,2.1006417091906648e-19,0.00010389610542915761,4.100281628284793e-20,0.0005827505956403911,-9.351243737687476e-19,-5.183841637196318e-19,-0.0003885003970935941,1.0842021724855044e-19,7.244936358288706e-20,4.3523135442894707e-20,1.704642012563202e-20,4.100281628284793e-20,3.885003752657212e-05,5.0,6.0,12.0,0.07977716624736786,-0.02371794916689396,-0.02062729001045227,-0.011630036868155003,0.0019841270986944437,0.0023809524718672037,0.0012820513220503926,0.0014880952658131719,0.001098901149816811,0.0004578754596877843,-0.02371794916689396,0.023763736709952354,0.0023809524718672037,0.0012820513220503926,-0.003968254197388887,-0.0011904762359336019,-0.0006410256610251963,8.077306185017008e-18,2.1141942363467336e-18,4.1335207826009857e-19,-0.02062729001045227,0.0023809524718672037,0.01643543876707554,0.001098901149816811,6.667843360785852e-18,-0.0009523809421807528,1.4162390878091902e-18,-0.0022321429569274187,-0.00043956044828519225,-9.537590986083422e-19,-0.011630036868155003,0.0012820513220503926,0.001098901149816811,0.004220779053866863,1.5178830414797062e-18,0.0,-0.00023310023243539035,1.111307226797642e-18,-0.00019980019715148956,-0.00027472528745420277,0.0019841270986944437,-0.003968254197388887,6.667843360785852e-18,1.5178830414797062e-18,0.0009920635493472219,-2.759984402776357e-20,1.2894591574253249e-19,-8.665550300960112e-19,-3.0411773434303695e-19,-1.2112571145736495e-19,0.0023809524718672037,-0.0011904762359336019,-0.0009523809421807528,0.0,-2.759984402776357e-20,0.0004761904710903764,1.3552527156068805e-20,-1.1384122811097797e-18,-1.8973538018496328e-19,3.900559838736145e-20,0.0012820513220503926,-0.0006410256610251963,1.4162390878091902e-18,-0.00023310023243539035,1.2894591574253249e-19,1.3552527156068805e-20,0.00011655011621769518,-2.168404344971009e-19,-4.743384504624082e-20,-2.3563831101899878e-21,0.0014880952658131719,8.077306185017008e-18,-0.0022321429569274187,1.111307226797642e-18,-8.665550300960112e-19,-1.1384122811097797e-18,-2.168404344971009e-19,0.00044642857392318547,-6.877907531704919e-19,1.1306951512837545e-19,0.001098901149816811,2.1141942363467336e-18,-0.00043956044828519225,-0.00019980019715148956,-3.0411773434303695e-19,-1.8973538018496328e-19,-4.743384504624082e-20,-6.877907531704919e-19,7.992007886059582e-05,4.4120269372278495e-20,0.0004578754596877843,4.1335207826009857e-19,-9.537590986083422e-19,-0.00027472528745420277,-1.2112571145736495e-19,3.900559838736145e-20,-2.3563831101899878e-21,1.1306951512837545e-19,4.4120269372278495e-20,2.4975024643936194e-05,5.0,6.0,13.0,0.0743851363658905,-0.021978022530674934,-0.019113030284643173,-0.010047095827758312,0.0018315018387511373,0.002197802299633622,0.001098901149816811,0.0013736264081671834,0.0009419152047485113,0.00036630037357099354,-0.021978022530674934,0.021978022530674934,0.002197802299633622,0.001098901149816811,-0.0036630036775022745,-0.001098901149816811,-0.0005494505749084055,2.439454888092385e-18,-8.673617379884035e-19,-2.879912020664621e-20,-0.019113030284643173,0.002197802299633622,0.015200156718492508,0.0009419152047485113,-1.8431436932253575e-18,-0.0008791208965703845,1.1858461261560205e-18,-0.002060439670458436,-0.0003767660818994045,2.829090043829363e-19,-0.010047095827758312,0.001098901149816811,0.0009419152047485113,0.003339517628774047,-1.4094628242311558e-18,-1.6263032587282567e-19,-0.00018315018678549677,1.4094628242311558e-18,-0.00015698587230872363,-0.00019980019715148956,0.0018315018387511373,-0.0036630036775022745,-1.8431436932253575e-18,-1.4094628242311558e-18,0.0009157509193755686,2.511956234806892e-19,3.288733113721884e-19,2.9774782970326775e-20,1.6414718124579185e-19,3.134021904840911e-20,0.002197802299633622,-0.001098901149816811,-0.0008791208965703845,-1.6263032587282567e-19,2.511956234806892e-19,0.00043956044828519225,-4.743384504624082e-20,-3.2526065174565133e-19,1.0164395367051604e-19,-1.2521348577551464e-21,0.001098901149816811,-0.0005494505749084055,1.1858461261560205e-18,-0.00018315018678549677,3.288733113721884e-19,-4.743384504624082e-20,9.157509339274839e-05,-2.168404344971009e-19,0.0,-9.0988793015389e-21,0.0013736264081671834,2.439454888092385e-18,-0.002060439670458436,1.4094628242311558e-18,2.9774782970326775e-20,-3.2526065174565133e-19,-2.168404344971009e-19,0.00041208791662938893,-1.1858461261560205e-19,-5.00287073966454e-20,0.0009419152047485113,-8.673617379884035e-19,-0.0003767660818994045,-0.00015698587230872363,1.6414718124579185e-19,1.0164395367051604e-19,0.0,-1.1858461261560205e-19,6.27943518338725e-05,-2.7423721200259047e-21,0.00036630037357099354,-2.879912020664621e-20,2.829090043829363e-19,-0.00019980019715148956,3.134021904840911e-20,-1.2521348577551464e-21,-9.0988793015389e-21,-5.00287073966454e-20,-2.7423721200259047e-21,1.6650015822960995e-05,5.0,6.0,14.0,0.06967686861753464,-0.020476190373301506,-0.017806122079491615,-0.008767006918787956,0.001700680237263441,0.0020408162381500006,0.0009523809421807528,0.0012755101779475808,0.0008163265301845968,0.00029761905898340046,-0.020476190373301506,0.0204421766102314,0.0020408162381500006,0.0009523809421807528,-0.003401360474526882,-0.0010204081190750003,-0.0004761904710903764,6.613633252161577e-18,1.0028870095490916e-18,3.7777669447541795e-19,-0.017806122079491615,0.0020408162381500006,0.014137755148112774,0.0008163265301845968,9.01920682236379e-18,-0.0008163265301845968,1.3417001884508117e-18,-0.0019132653251290321,-0.00032653060043230653,4.811147140404426e-19,-0.008767006918787956,0.0009523809421807528,0.0008163265301845968,0.0026880560908466578,1.5178830414797062e-18,4.87890977618477e-19,-0.00014652014942839742,1.1655173354219173e-18,-0.000125588703667745,-0.00014880952949170023,0.001700680237263441,-0.003401360474526882,9.01920682236379e-18,1.5178830414797062e-18,0.0008503401186317205,-5.0868717709746095e-19,-1.5777317301470257e-19,-1.2606771236682067e-18,-1.9799855261285003e-19,-5.759824041329242e-20,0.0020408162381500006,-0.0010204081190750003,-0.0008163265301845968,4.87890977618477e-19,-5.0868717709746095e-19,0.0004081632650922984,-1.1180834903756764e-19,2.710505431213761e-20,-3.3881317890172014e-21,-2.6522872641678e-20,0.0009523809421807528,-0.0004761904710903764,1.3417001884508117e-18,-0.00014652014942839742,-1.5777317301470257e-19,-1.1180834903756764e-19,7.326007471419871e-05,-1.9312351197398048e-19,-1.8634724839594607e-20,-7.372586482676977e-21,0.0012755101779475808,6.613633252161577e-18,-0.0019132653251290321,1.1655173354219173e-18,-1.2606771236682067e-18,2.710505431213761e-20,-1.9312351197398048e-19,0.00038265305920504034,6.776263578034403e-20,-6.93045973773709e-20,0.0008163265301845968,1.0028870095490916e-18,-0.00032653060043230653,-0.000125588703667745,-1.9799855261285003e-19,-3.3881317890172014e-21,-1.8634724839594607e-20,6.776263578034403e-20,5.023547782911919e-05,-9.752435995986755e-21,0.00029761905898340046,3.7777669447541795e-19,4.811147140404426e-19,-0.00014880952949170023,-5.759824041329242e-20,-2.6522872641678e-20,-7.372586482676977e-21,-6.93045973773709e-20,-9.752435995986755e-21,1.1446886674093548e-05,5.0,6.0,15.0,0.06552987545728683,-0.019166667014360428,-0.01666666753590107,-0.007717086933553219,0.0015873016091063619,0.0019047618843615055,0.0008333333535119891,0.0011904762359336019,0.0007142857066355646,0.00024509805371053517,-0.019166667014360428,0.019107142463326454,0.0019047618843615055,0.0008333333535119891,-0.0031746032182127237,-0.0009523809421807528,-0.00041666667675599456,0.0,-5.692061405548898e-19,-6.437450399132683e-19,-0.01666666753590107,0.0019047618843615055,0.013214285485446453,0.0007142857066355646,1.1045309632196076e-18,-0.0007619047537446022,-6.844026213814747e-19,-0.0017857142956927419,-0.0002857142826542258,-1.5839516113655416e-18,-0.007717086933553219,0.0008333333535119891,0.0007142857066355646,0.002195955254137516,-1.2468324983583301e-18,-1.9786689647860456e-18,-0.0001190476177725941,-3.6591823321385775e-18,-0.0001020408162730746,-0.0001131221724790521,0.0015873016091063619,-0.0031746032182127237,1.1045309632196076e-18,-1.2468324983583301e-18,0.0007936508045531809,-3.0447551580736027e-19,4.250020706202498e-20,-1.6513628246325213e-19,5.894714581016767e-20,6.522153693858113e-20,0.0019047618843615055,-0.0009523809421807528,-0.0007619047537446022,-1.9786689647860456e-18,-3.0447551580736027e-19,0.0003809523768723011,5.759824041329242e-20,-7.453889935837843e-20,5.759824041329242e-20,1.084666298357329e-19,0.0008333333535119891,-0.00041666667675599456,-6.844026213814747e-19,-0.0001190476177725941,4.250020706202498e-20,5.759824041329242e-20,5.952380888629705e-05,9.486769009248164e-20,2.0328790734103208e-20,1.077160571338948e-20,0.0011904762359336019,0.0,-0.0017857142956927419,-3.6591823321385775e-18,-1.6513628246325213e-19,-7.453889935837843e-20,9.486769009248164e-20,0.0003571428533177823,1.0333801956502464e-19,2.078248766786118e-19,0.0007142857066355646,-5.692061405548898e-19,-0.0002857142826542258,-0.0001020408162730746,5.894714581016767e-20,5.759824041329242e-20,2.0328790734103208e-20,1.0333801956502464e-19,4.0816325054038316e-05,3.678984648262185e-20,0.00024509805371053517,-6.437450399132683e-19,-1.5839516113655416e-18,-0.0001131221724790521,6.522153693858113e-20,1.084666298357329e-19,1.077160571338948e-20,2.078248766786118e-19,3.678984648262185e-20,8.080155566858593e-06,5.0,6.0,16.0,0.06184932217001915,-0.018014706671237946,-0.015664391219615936,-0.0068452381528913975,0.0014880952658131719,0.0017857142956927419,0.000735294132027775,0.0011160714784637094,0.0006302521214820445,0.00020424836839083582,-0.018014706671237946,0.017935924232006073,0.0017857142956927419,0.000735294132027775,-0.0029761905316263437,-0.0008928571478463709,-0.0003676470660138875,6.505213034913027e-19,0.0,-1.5839516113655416e-19,-0.015664391219615936,0.0017857142956927419,0.012404149398207664,0.0006302521214820445,6.329030181884132e-18,-0.0007142857066355646,-4.743384504624082e-20,-0.0016741071594879031,-0.0002521008427720517,-4.599388903590851e-19,-0.0068452381528913975,0.000735294132027775,0.0006302521214820445,0.0018172268755733967,7.860465750519907e-19,-3.2526065174565133e-19,-9.803921420825645e-05,-1.2197274440461925e-18,-8.403361425735056e-05,-8.753501606406644e-05,0.0014880952658131719,-0.0029761905316263437,6.329030181884132e-18,7.860465750519907e-19,0.0007440476329065859,-1.307873257685915e-18,-2.939831433274314e-19,-5.067210204802107e-19,-1.1674838797800797e-19,1.6093625997831706e-20,0.0017857142956927419,-0.0008928571478463709,-0.0007142857066355646,-3.2526065174565133e-19,-1.307873257685915e-18,0.0003571428533177823,-1.2197274440461925e-19,3.9302328752599536e-19,1.0842021724855044e-19,2.056950837029181e-20,0.000735294132027775,-0.0003676470660138875,-4.743384504624082e-20,-9.803921420825645e-05,-2.939831433274314e-19,-1.2197274440461925e-19,4.901960710412823e-05,3.049318610115481e-20,1.4399560103323106e-20,3.1475906557229786e-21,0.0011160714784637094,6.505213034913027e-19,-0.0016741071594879031,-1.2197274440461925e-18,-5.067210204802107e-19,3.9302328752599536e-19,3.049318610115481e-20,0.0003348214377183467,7.623296525288703e-20,5.791546417820651e-20,0.0006302521214820445,0.0,-0.0002521008427720517,-8.403361425735056e-05,-1.1674838797800797e-19,1.0842021724855044e-19,1.4399560103323106e-20,7.623296525288703e-20,3.361344715813175e-05,1.3302059451527163e-20,0.00020424836839083582,-1.5839516113655416e-19,-4.599388903590851e-19,-8.753501606406644e-05,1.6093625997831706e-20,2.056950837029181e-20,3.1475906557229786e-21,5.791546417820651e-20,1.3302059451527163e-20,5.835667707287939e-06,5.0,7.0,3.0,0.20606575906276703,-0.0724489763379097,-0.05595238134264946,-0.10357142984867096,0.006802720949053764,0.0071428571827709675,0.014285714365541935,0.003968254197388887,0.010714286006987095,0.014285714365541935,-0.0724489763379097,0.07704081386327744,0.0071428571827709675,0.014285714365541935,-0.013605441898107529,-0.0035714285913854837,-0.0071428571827709675,5.204170427930421e-18,-3.64787560034559e-18,-1.1917904445611735e-16,-0.05595238134264946,0.0071428571827709675,0.03928571566939354,0.010714286006987095,1.066706061759089e-17,-0.0023809524718672037,-5.45293217585625e-18,-0.004761904943734407,-0.0035714285913854837,-1.1279134400774606e-16,-0.10357142984867096,0.014285714365541935,0.010714286006987095,0.24642856419086456,-5.636351122165697e-17,-2.97192362153808e-17,-0.014285714365541935,-3.795905361226242e-17,-0.010714286006987095,-0.08571428805589676,0.006802720949053764,-0.013605441898107529,1.066706061759089e-17,-5.636351122165697e-17,0.003401360474526882,-4.2438067057211495e-19,5.524141673249102e-18,-1.258756306888282e-18,-3.450996111334917e-34,2.2657613523989076e-17,0.0071428571827709675,-0.0035714285913854837,-0.0023809524718672037,-2.97192362153808e-17,-4.2438067057211495e-19,0.0011904762359336019,2.726466087928125e-18,1.6762109101809595e-20,1.2159586023802478e-18,9.516197613900963e-18,0.014285714365541935,-0.0071428571827709675,-5.45293217585625e-18,-0.014285714365541935,5.524141673249102e-18,2.726466087928125e-18,0.0071428571827709675,-2.0287265580246603e-33,2.7848265649926335e-33,5.859246889696289e-32,0.003968254197388887,5.204170427930421e-18,-0.004761904943734407,-3.795905361226242e-17,-1.258756306888282e-18,1.6762109101809595e-20,-2.0287265580246603e-33,0.0007936508045531809,2.4319172047604955e-18,1.3745618407998896e-17,0.010714286006987095,-3.64787560034559e-18,-0.0035714285913854837,-0.010714286006987095,-3.450996111334917e-34,1.2159586023802478e-18,2.7848265649926335e-33,2.4319172047604955e-18,0.0035714285913854837,9.69920139826097e-18,0.014285714365541935,-1.1917904445611735e-16,-1.1279134400774606e-16,-0.08571428805589676,2.2657613523989076e-17,9.516197613900963e-18,5.859246889696289e-32,1.3745618407998896e-17,9.69920139826097e-18,0.04285714402794838,5.0,7.0,4.0,0.16937075555324554,-0.05647959187626839,-0.04357142746448517,-0.06642857193946838,0.005102040711790323,0.0053571430034935474,0.008571428246796131,0.0029761905316263437,0.006428571417927742,0.0071428571827709675,-0.05647959187626839,0.05885203927755356,0.0053571430034935474,0.008571428246796131,-0.010204081423580647,-0.0026785715017467737,-0.004285714123398066,1.0842021724855044e-19,3.370319940866035e-20,-0.0,-0.04357142746448517,0.0053571430034935474,0.029999999329447746,0.006428571417927742,0.0,-0.0017857142956927419,0.0,-0.0035714285913854837,-0.002142857061699033,-0.0,-0.06642857193946838,0.008571428246796131,0.006428571417927742,0.09428571164608002,0.0,3.370319940866035e-20,-0.0057142856530845165,1.3603282441467176e-19,-0.004285714123398066,-0.02142857201397419,0.005102040711790323,-0.010204081423580647,0.0,0.0,0.0025510203558951616,0.0,0.0,0.0,0.0,-0.0,0.0053571430034935474,-0.0026785715017467737,-0.0017857142956927419,3.370319940866035e-20,0.0,0.0008928571478463709,0.0,9.602933601584165e-21,-1.1234399533622261e-20,-0.0,0.008571428246796131,-0.004285714123398066,0.0,-0.0057142856530845165,0.0,0.0,0.0028571428265422583,0.0,0.0,-0.0,0.0029761905316263437,1.0842021724855044e-19,-0.0035714285913854837,1.3603282441467176e-19,0.0,9.602933601584165e-21,0.0,0.0005952381179668009,-4.53442737278325e-20,-0.0,0.006428571417927742,3.370319940866035e-20,-0.002142857061699033,-0.004285714123398066,0.0,-1.1234399533622261e-20,0.0,-4.53442737278325e-20,0.0014285714132711291,-0.0,0.0071428571827709675,-0.0,-0.0,-0.02142857201397419,-0.0,-0.0,-0.0,-0.0,-0.0,0.0071428571827709675,5.0,7.0,5.0,0.143945574760437,-0.04632652923464775,-0.0357142873108387,-0.04632652923464775,0.004081632476300001,0.004285714123398066,0.0057142856530845165,0.0023809524718672037,0.004285714123398066,0.004081632476300001,-0.04632652923464775,0.04765306040644646,0.004285714123398066,0.0057142856530845165,-0.008163264952600002,-0.002142857061699033,-0.0028571428265422583,9.486769009248164e-20,0.0,-0.0,-0.0357142873108387,0.004285714123398066,0.02428571507334709,0.004285714123398066,0.0,-0.0014285714132711291,0.0,-0.0028571428265422583,-0.0014285714132711291,-0.0,-0.04632652923464775,0.0057142856530845165,0.004285714123398066,0.04765306040644646,0.0,2.463598965391358e-20,-0.0028571428265422583,0.0,-0.002142857061699033,-0.008163264952600002,0.004081632476300001,-0.008163264952600002,0.0,0.0,0.0020408162381500006,0.0,0.0,0.0,0.0,-0.0,0.004285714123398066,-0.002142857061699033,-0.0014285714132711291,2.463598965391358e-20,0.0,0.0007142857066355646,0.0,-2.710505431213761e-20,0.0,-0.0,0.0057142856530845165,-0.0028571428265422583,0.0,-0.0028571428265422583,0.0,0.0,0.0014285714132711291,0.0,0.0,-0.0,0.0023809524718672037,9.486769009248164e-20,-0.0028571428265422583,0.0,0.0,-2.710505431213761e-20,0.0,0.0004761904710903764,0.0,-0.0,0.004285714123398066,0.0,-0.0014285714132711291,-0.002142857061699033,0.0,0.0,0.0,0.0,0.0007142857066355646,-0.0,0.004081632476300001,-0.0,-0.0,-0.008163264952600002,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,5.0,7.0,6.0,0.12522675096988678,-0.03928571566939354,-0.0302721094340086,-0.034183673560619354,0.003401360474526882,0.0035714285913854837,0.004081632476300001,0.0019841270986944437,0.0030612244736403227,0.0025510203558951616,-0.03928571566939354,0.04005102068185806,0.0035714285913854837,0.004081632476300001,-0.006802720949053764,-0.0017857142956927419,-0.0020408162381500006,2.5614276324970042e-18,4.851804721872632e-18,6.288372600415926e-18,-0.0302721094340086,0.0035714285913854837,0.020408162847161293,0.0030612244736403227,8.246651563102539e-18,-0.0011904762359336019,-1.6263032587282567e-19,-0.0023809524718672037,-0.0010204081190750003,2.2768245622195593e-18,-0.034183673560619354,0.004081632476300001,0.0030612244736403227,0.027704082429409027,1.2711922229354655e-17,1.067456211177098e-18,-0.0016326530603691936,9.948572571503097e-19,-0.0012244897661730647,-0.0038265306502580643,0.003401360474526882,-0.006802720949053764,8.246651563102539e-18,1.2711922229354655e-17,0.001700680237263441,-2.1219033528605747e-19,-2.910038972549568e-19,-6.29378153444141e-19,-1.1652486051204141e-18,-1.4161008452493172e-18,0.0035714285913854837,-0.0017857142956927419,-0.0011904762359336019,1.067456211177098e-18,-2.1219033528605747e-19,0.0005952381179668009,1.2344007233840882e-19,2.710505431213761e-20,-5.395664885236161e-20,-2.166419369994823e-19,0.004081632476300001,-0.0020408162381500006,-1.6263032587282567e-19,-0.0016326530603691936,-2.910038972549568e-19,1.2344007233840882e-19,0.0008163265301845968,6.776263578034403e-21,-4.0657581468206416e-20,-8.131516293641283e-20,0.0019841270986944437,2.5614276324970042e-18,-0.0023809524718672037,9.948572571503097e-19,-6.29378153444141e-19,2.710505431213761e-20,6.776263578034403e-21,0.00039682540227659047,0.0,-2.303929616531697e-19,0.0030612244736403227,4.851804721872632e-18,-0.0010204081190750003,-0.0012244897661730647,-1.1652486051204141e-18,-5.395664885236161e-20,-4.0657581468206416e-20,0.0,0.0004081632650922984,-2.981555974335137e-19,0.0025510203558951616,6.288372600415926e-18,2.2768245622195593e-18,-0.0038265306502580643,-1.4161008452493172e-18,-2.166419369994823e-19,-8.131516293641283e-20,-2.303929616531697e-19,-2.981555974335137e-19,0.0007653061184100807,5.0,7.0,7.0,0.11084791272878647,-0.03411078825592995,-0.0262755099684,-0.0262755099684,0.0029154520016163588,0.0030612244736403227,0.0030612244736403227,0.001700680237263441,0.002295918297022581,0.001700680237263441,-0.03411078825592995,0.03454810380935669,0.0030612244736403227,0.0030612244736403227,-0.0058309040032327175,-0.0015306122368201613,-0.0015306122368201613,2.222614453595284e-18,3.0899761915836876e-18,2.1141942363467336e-18,-0.0262755099684,0.0030612244736403227,0.017602041363716125,0.002295918297022581,6.981913913204886e-18,-0.0010204081190750003,-5.421010862427522e-20,-0.0020408162381500006,-0.0007653061184100807,9.75781955236954e-19,-0.0262755099684,0.0030612244736403227,0.002295918297022581,0.017602041363716125,6.981913913204886e-18,-1.0006173164211256e-19,-0.0010204081190750003,-5.902990393798389e-19,-0.0007653061184100807,-0.0020408162381500006,0.0029154520016163588,-0.0058309040032327175,6.981913913204886e-18,6.981913913204886e-18,0.0014577260008081794,-2.946150317672395e-19,-2.946150317672395e-19,-5.394669812808654e-19,-7.2828041697435e-19,-5.394669812808654e-19,0.0030612244736403227,-0.0015306122368201613,-0.0010204081190750003,-1.0006173164211256e-19,-2.946150317672395e-19,0.0005102040595375001,6.678705379602016e-20,-1.3552527156068805e-20,-9.202016768579472e-21,-1.3973521092334774e-21,0.0030612244736403227,-0.0015306122368201613,-5.421010862427522e-20,-0.0010204081190750003,-2.946150317672395e-19,6.678705379602016e-20,0.0005102040595375001,0.0,-3.3881317890172014e-20,0.0,0.001700680237263441,2.222614453595284e-18,-0.0020408162381500006,-5.902990393798389e-19,-5.394669812808654e-19,-1.3552527156068805e-20,0.0,0.0003401360590942204,2.710505431213761e-20,4.743384504624082e-20,0.002295918297022581,3.0899761915836876e-18,-0.0007653061184100807,-0.0007653061184100807,-7.2828041697435e-19,-9.202016768579472e-21,-3.3881317890172014e-20,2.710505431213761e-20,0.00025510202976875007,-4.87890977618477e-19,0.001700680237263441,2.1141942363467336e-18,9.75781955236954e-19,-0.0020408162381500006,-5.394669812808654e-19,-1.3973521092334774e-21,0.0,4.743384504624082e-20,-4.87890977618477e-19,0.0003401360590942204,5.0,7.0,8.0,0.09944728016853333,-0.03014455735683441,-0.02321428619325161,-0.02083333395421505,0.0025510203558951616,0.0026785715017467737,0.0023809524718672037,0.0014880952658131719,0.0017857142956927419,0.0011904762359336019,-0.03014455735683441,0.030378401279449463,0.0026785715017467737,0.0023809524718672037,-0.005102040711790323,-0.0013392857508733869,-0.0011904762359336019,9.486769009248164e-20,-1.0842021724855044e-19,0.0,-0.02321428619325161,0.0026785715017467737,0.015476190485060215,0.0017857142956927419,0.0,-0.0008928571478463709,-1.2197274440461925e-19,-0.0017857142956927419,-0.0005952381179668009,-2.439454888092385e-19,-0.02083333395421505,0.0023809524718672037,0.0017857142956927419,0.011904762126505375,-0.0,2.065147033676845e-20,-0.0006802721181884408,6.00027316693619e-20,-0.0005102040595375001,-0.0011904762359336019,0.0025510203558951616,-0.005102040711790323,0.0,-0.0,0.0012755101779475808,0.0,0.0,0.0,0.0,0.0,0.0026785715017467737,-0.0013392857508733869,-0.0008928571478463709,2.065147033676845e-20,0.0,0.00044642857392318547,5.139818810346433e-22,-1.3552527156068805e-20,-7.661326638626969e-21,-3.940790876524332e-22,0.0023809524718672037,-0.0011904762359336019,-1.2197274440461925e-19,-0.0006802721181884408,0.0,5.139818810346433e-22,0.0003401360590942204,-1.6940658945086007e-21,3.3881317890172014e-20,0.0,0.0014880952658131719,9.486769009248164e-20,-0.0017857142956927419,6.00027316693619e-20,0.0,-1.3552527156068805e-20,-1.6940658945086007e-21,0.00029761905898340046,-1.3552527156068805e-20,0.0,0.0017857142956927419,-1.0842021724855044e-19,-0.0005952381179668009,-0.0005102040595375001,0.0,-7.661326638626969e-21,3.3881317890172014e-20,-1.3552527156068805e-20,0.0001700680295471102,6.776263578034403e-20,0.0011904762359336019,0.0,-2.439454888092385e-19,-0.0011904762359336019,0.0,-3.940790876524332e-22,0.0,0.0,6.776263578034403e-20,0.0001700680295471102,5.0,7.0,9.0,0.0901820957660675,-0.027006803080439568,-0.020793650299310684,-0.01692640781402588,0.0022675737272948027,0.0023809524718672037,0.0019047618843615055,0.0013227512827143073,0.0014285714132711291,0.0008658008882775903,-0.027006803080439568,0.027108844369649887,0.0023809524718672037,0.0019047618843615055,-0.004535147454589605,-0.0011904762359336019,-0.0009523809421807528,-0.0,-2.710505431213761e-20,-2.710505431213761e-20,-0.020793650299310684,0.0023809524718672037,0.013809523545205593,0.0014285714132711291,0.0,-0.0007936508045531809,-2.710505431213761e-20,-0.0015873016091063619,-0.0004761904710903764,0.0,-0.01692640781402588,0.0019047618843615055,0.0014285714132711291,0.008436920121312141,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0003571428533177823,-0.000742115022148937,0.0022675737272948027,-0.004535147454589605,0.0,-0.0,0.0011337868636474013,0.0,0.0,0.0,0.0,0.0,0.0023809524718672037,-0.0011904762359336019,-0.0007936508045531809,-0.0,0.0,0.00039682540227659047,0.0,0.0,0.0,0.0,0.0019047618843615055,-0.0009523809421807528,-2.710505431213761e-20,-0.0004761904710903764,0.0,0.0,0.0002380952355451882,0.0,6.776263578034403e-21,6.776263578034403e-21,0.0013227512827143073,-0.0,-0.0015873016091063619,-0.0,0.0,0.0,0.0,0.00026455026818439364,0.0,0.0,0.0014285714132711291,-2.710505431213761e-20,-0.0004761904710903764,-0.0003571428533177823,0.0,0.0,6.776263578034403e-21,0.0,0.0001190476177725941,0.0,0.0008658008882775903,-2.710505431213761e-20,0.0,-0.000742115022148937,0.0,0.0,6.776263578034403e-21,0.0,0.0,9.276437776861712e-05,5.0,7.0,10.0,0.08250154554843903,-0.024461966007947922,-0.018831169232726097,-0.014025974087417126,0.0020408162381500006,0.002142857061699033,0.0015584415523335338,0.0011904762359336019,0.0011688311351463199,0.0006493506371043622,-0.024461966007947922,0.024475881829857826,0.002142857061699033,0.0015584415523335338,-0.004081632476300001,-0.0010714285308495164,-0.0007792207761667669,-0.0,-5.421010862427522e-20,0.0,-0.018831169232726097,0.002142857061699033,0.01246753241866827,0.0011688311351463199,0.0,-0.0007142857066355646,-4.0657581468206416e-20,-0.0014285714132711291,-0.00038961038808338344,-6.776263578034403e-20,-0.014025974087417126,0.0015584415523335338,0.0011688311351463199,0.0062012989073991776,-0.0,-0.0,-0.00034632033202797174,-0.0,-0.0002597402490209788,-0.0004870129923801869,0.0020408162381500006,-0.004081632476300001,0.0,-0.0,0.0010204081190750003,0.0,0.0,0.0,0.0,0.0,0.002142857061699033,-0.0010714285308495164,-0.0007142857066355646,-0.0,0.0,0.0003571428533177823,0.0,0.0,0.0,0.0,0.0015584415523335338,-0.0007792207761667669,-4.0657581468206416e-20,-0.00034632033202797174,0.0,0.0,0.00017316016601398587,0.0,8.470329472543003e-21,0.0,0.0011904762359336019,-0.0,-0.0014285714132711291,-0.0,0.0,0.0,0.0,0.0002380952355451882,0.0,0.0,0.0011688311351463199,-5.421010862427522e-20,-0.00038961038808338344,-0.0002597402490209788,0.0,0.0,8.470329472543003e-21,0.0,8.658008300699294e-05,1.3552527156068805e-20,0.0006493506371043622,0.0,-6.776263578034403e-20,-0.0004870129923801869,0.0,0.0,0.0,0.0,1.3552527156068805e-20,5.411255551734939e-05,5.0,7.0,11.0,0.07602991908788681,-0.022356215864419937,-0.017207792028784752,-0.011813187040388584,0.001855287584476173,0.0019480519695207477,0.0012987012742087245,0.0010822510812431574,0.0009740259847603738,0.0004995004856027663,-0.022356215864419937,0.022309832274913788,0.0019480519695207477,0.0012987012742087245,-0.003710575168952346,-0.0009740259847603738,-0.0006493506371043622,-0.0,6.776263578034403e-21,1.3552527156068805e-20,-0.017207792028784752,0.0019480519695207477,0.011363636702299118,0.0009740259847603738,0.0,-0.0006493506371043622,0.0,-0.0012987012742087245,-0.0003246753185521811,1.3552527156068805e-20,-0.011813187040388584,0.0012987012742087245,0.0009740259847603738,0.00469363946467638,-0.0,-0.0,-0.0002597402490209788,-0.0,-0.00019480519404169172,-0.0003330003237351775,0.001855287584476173,-0.003710575168952346,0.0,-0.0,0.0009276437922380865,0.0,0.0,0.0,0.0,0.0,0.0019480519695207477,-0.0009740259847603738,-0.0006493506371043622,-0.0,0.0,0.0003246753185521811,0.0,0.0,0.0,0.0,0.0012987012742087245,-0.0006493506371043622,0.0,-0.0002597402490209788,0.0,0.0,0.0001298701245104894,0.0,1.6940658945086007e-21,0.0,0.0010822510812431574,-0.0,-0.0012987012742087245,-0.0,0.0,0.0,0.0,0.00021645022206939757,0.0,0.0,0.0009740259847603738,6.776263578034403e-21,-0.0003246753185521811,-0.00019480519404169172,0.0,0.0,1.6940658945086007e-21,0.0,6.49350622552447e-05,0.0,0.0004995004856027663,1.3552527156068805e-20,1.3552527156068805e-20,-0.0003330003237351775,0.0,0.0,0.0,0.0,0.0,3.330003164592199e-05,5.0,7.0,12.0,0.0705019161105156,-0.020584773272275925,-0.015842491760849953,-0.010086342692375183,0.001700680237263441,0.0017857142956927419,0.001098901149816811,0.0009920635493472219,0.0008241758332587779,0.0003924646880477667,-0.020584773272275925,0.020496467128396034,0.0017857142956927419,0.001098901149816811,-0.003401360474526882,-0.0008928571478463709,-0.0005494505749084055,1.7889335846010823e-18,1.2739375526704677e-18,5.116079001415974e-19,-0.015842491760849953,0.0017857142956927419,0.010439560748636723,0.0008241758332587779,1.3145951341386741e-18,-0.0005952381179668009,3.8963515573697816e-19,-0.0011904762359336019,-0.00027472528745420277,-1.6601845766184287e-19,-0.010086342692375183,0.001098901149816811,0.0008241758332587779,0.003639217931777239,1.0842021724855044e-19,6.505213034913027e-19,-0.00019980019715148956,-5.149960319306146e-19,-0.00014985015150159597,-0.00023547880118712783,0.001700680237263441,-0.003401360474526882,1.3145951341386741e-18,1.0842021724855044e-19,0.0008503401186317205,6.433452014846754e-19,4.362502987719446e-19,-3.1522361634353875e-19,-1.0056968516170547e-19,-6.183340514956392e-20,0.0017857142956927419,-0.0008928571478463709,-0.0005952381179668009,6.505213034913027e-19,6.433452014846754e-19,0.00029761905898340046,4.0657581468206416e-20,-1.3213713977167085e-19,-1.1858461261560205e-19,-1.5105796247445797e-20,0.001098901149816811,-0.0005494505749084055,3.8963515573697816e-19,-0.00019980019715148956,4.362502987719446e-19,4.0657581468206416e-20,9.990009857574478e-05,-3.3881317890172014e-21,-6.098637220230962e-20,-2.2599640622457085e-20,0.0009920635493472219,1.7889335846010823e-18,-0.0011904762359336019,-5.149960319306146e-19,-3.1522361634353875e-19,-1.3213713977167085e-19,-3.3881317890172014e-21,0.00019841270113829523,3.3881317890172014e-21,4.338564251545191e-20,0.0008241758332587779,1.2739375526704677e-18,-0.00027472528745420277,-0.00014985015150159597,-1.0056968516170547e-19,-1.1858461261560205e-19,-6.098637220230962e-20,3.3881317890172014e-21,4.995004928787239e-05,-9.588389278411297e-21,0.0003924646880477667,5.116079001415974e-19,-1.6601845766184287e-19,-0.00023547880118712783,-6.183340514956392e-20,-1.5105796247445797e-20,-2.2599640622457085e-20,4.338564251545191e-20,-9.588389278411297e-21,2.1407164240372367e-05,5.0,7.0,13.0,0.06572475284337997,-0.019073782488703728,-0.014678179286420345,-0.008712715469300747,0.0015698587521910667,0.0016483516665175557,0.0009419152047485113,0.0009157509193755686,0.0007064364035613835,0.00031397174461744726,-0.019073782488703728,0.01895604468882084,0.0016483516665175557,0.0009419152047485113,-0.0031397175043821335,-0.0008241758332587779,-0.00047095760237425566,1.0299920638612292e-18,1.2739375526704677e-18,2.812149384884277e-19,-0.014678179286420345,0.0016483516665175557,0.009654630906879902,0.0007064364035613835,7.43356114510374e-18,-0.0005494505749084055,2.574980159653073e-19,-0.001098901149816811,-0.00023547880118712783,8.571973426213519e-19,-0.008712715469300747,0.0009419152047485113,0.0007064364035613835,0.002879263600334525,2.6020852139652106e-18,7.589415207398531e-19,-0.00015698587230872363,9.75781955236954e-19,-0.00011773940059356391,-0.00017125731392297894,0.0015698587521910667,-0.0031397175043821335,7.43356114510374e-18,2.6020852139652106e-18,0.0007849293760955334,-1.5236618286365782e-18,-5.981560144281738e-19,-3.8861650866201324e-19,-2.7678766105489077e-19,-4.2351647362715017e-20,0.0016483516665175557,-0.0008241758332587779,-0.0005494505749084055,7.589415207398531e-19,-1.5236618286365782e-18,0.00027472528745420277,-1.0503208545953324e-19,2.473336205982557e-19,-2.710505431213761e-20,-3.6392334499501834e-20,0.0009419152047485113,-0.00047095760237425566,2.574980159653073e-19,-0.00015698587230872363,-5.981560144281738e-19,-1.0503208545953324e-19,7.849293615436181e-05,-1.0164395367051604e-20,-6.776263578034403e-21,9.8629130753766e-22,0.0009157509193755686,1.0299920638612292e-18,-0.001098901149816811,9.75781955236954e-19,-3.8861650866201324e-19,2.473336205982557e-19,-1.0164395367051604e-20,0.00018315018678549677,8.131516293641283e-20,-1.0008497024744647e-19,0.0007064364035613835,1.2739375526704677e-18,-0.00023547880118712783,-0.00011773940059356391,-2.7678766105489077e-19,-2.710505431213761e-20,-6.776263578034403e-21,8.131516293641283e-20,3.924646807718091e-05,-2.2492653211276447e-20,0.00031397174461744726,2.812149384884277e-19,8.571973426213519e-19,-0.00017125731392297894,-4.2351647362715017e-20,-3.6392334499501834e-20,9.8629130753766e-22,-1.0008497024744647e-19,-2.2492653211276447e-20,1.4271442523750011e-05,5.0,7.0,14.0,0.061554908752441406,-0.01776967942714691,-0.013673469424247742,-0.007602040655910969,0.0014577260008081794,0.0015306122368201613,0.0008163265301845968,0.0008503401186317205,0.0006122448830865324,0.00025510202976875007,-0.01776967942714691,0.01763119548559189,0.0015306122368201613,0.0008163265301845968,-0.0029154520016163588,-0.0007653061184100807,-0.0004081632650922984,1.0842021724855044e-19,1.6263032587282567e-19,1.1011428314305904e-19,-0.013673469424247742,0.0015306122368201613,0.00897959154099226,0.0006122448830865324,-1.2874900798265365e-19,-0.0005102040595375001,-4.0657581468206416e-20,-0.0010204081190750003,-0.0002040816325461492,-9.147955830346444e-20,-0.007602040655910969,0.0008163265301845968,0.0006122448830865324,0.0023175040259957314,1.0842021724855044e-19,7.318364664277155e-19,-0.000125588703667745,-4.607859233063394e-19,-9.419152047485113e-05,-0.00012755101488437504,0.0014577260008081794,-0.0029154520016163588,-1.2874900798265365e-19,1.0842021724855044e-19,0.0007288630004040897,-1.423777391526539e-19,4.3627072625566555e-20,7.919406505067373e-20,2.4419631840529813e-21,-8.470329472543003e-21,0.0015306122368201613,-0.0007653061184100807,-0.0005102040595375001,7.318364664277155e-19,-1.423777391526539e-19,0.00025510202976875007,-9.825582188149884e-20,-1.5246593050577406e-19,-6.606856988583543e-20,-1.9483967910048073e-20,0.0008163265301845968,-0.0004081632650922984,-4.0657581468206416e-20,-0.000125588703667745,4.3627072625566555e-20,-9.825582188149884e-20,6.27943518338725e-05,2.879912020664621e-20,1.1858461261560205e-20,2.3021952574901723e-23,0.0008503401186317205,1.0842021724855044e-19,-0.0010204081190750003,-4.607859233063394e-19,7.919406505067373e-20,-1.5246593050577406e-19,2.879912020664621e-20,0.0001700680295471102,5.082197683525802e-20,1.80250151799606e-20,0.0006122448830865324,1.6263032587282567e-19,-0.0002040816325461492,-9.419152047485113e-05,2.4419631840529813e-21,-6.606856988583543e-20,1.1858461261560205e-20,5.082197683525802e-20,3.139717591693625e-05,2.235974208894537e-21,0.00025510202976875007,1.1011428314305904e-19,-9.147955830346444e-20,-0.00012755101488437504,-8.470329472543003e-21,-1.9483967910048073e-20,2.3021952574901723e-23,1.80250151799606e-20,2.235974208894537e-21,9.811617019295227e-06,5.0,7.0,15.0,0.05788331851363182,-0.016632653772830963,-0.012797619216144085,-0.0066911764442920685,0.0013605442363768816,0.0014285714132711291,0.0007142857066355646,0.0007936508045531809,0.0005357142654247582,0.0002100840356433764,-0.016632653772830963,0.01647959090769291,0.0014285714132711291,0.0007142857066355646,-0.002721088472753763,-0.0007142857066355646,-0.0003571428533177823,6.776263578034403e-19,1.2739375526704677e-18,1.807568309440677e-18,-0.012797619216144085,0.0014285714132711291,0.008392857387661934,0.0005357142654247582,5.21772295508649e-19,-0.0004761904710903764,5.72594272343907e-19,-0.0009523809421807528,-0.00017857142665889114,1.1714465660526974e-18,-0.0066911764442920685,0.0007142857066355646,0.0005357142654247582,0.001893180306069553,5.204170427930421e-18,2.303929616531697e-18,-0.0001020408162730746,1.81603863891322e-18,-7.653061038581654e-05,-9.696186316432431e-05,0.0013605442363768816,-0.002721088472753763,5.21772295508649e-19,5.204170427930421e-18,0.0006802721181884408,7.757194835982076e-19,-1.9303199219401973e-19,-1.0551173389254036e-19,-2.0553219051455623e-19,-2.7570922433127476e-19,0.0014285714132711291,-0.0007142857066355646,-0.0004761904710903764,2.303929616531697e-18,7.757194835982076e-19,0.0002380952355451882,-4.743384504624082e-20,2.710505431213761e-20,-7.962109704190423e-20,-1.2740131104495456e-19,0.0007142857066355646,-0.0003571428533177823,5.72594272343907e-19,-0.0001020408162730746,-1.9303199219401973e-19,-4.743384504624082e-20,5.10204081365373e-05,-4.0657581468206416e-20,-2.456395547037471e-20,-3.613293582928403e-20,0.0007936508045531809,6.776263578034403e-19,-0.0009523809421807528,1.81603863891322e-18,-1.0551173389254036e-19,2.710505431213761e-20,-4.0657581468206416e-20,0.00015873015217948705,2.541098841762901e-21,-1.1234876939620327e-19,0.0005357142654247582,1.2739375526704677e-18,-0.00017857142665889114,-7.653061038581654e-05,-2.0553219051455623e-19,-7.962109704190423e-20,-2.456395547037471e-20,2.541098841762901e-21,2.551020406826865e-05,-2.5750321492470417e-20,0.0002100840356433764,1.807568309440677e-18,1.1714465660526974e-18,-9.696186316432431e-05,-2.7570922433127476e-19,-1.2740131104495456e-19,-3.613293582928403e-20,-1.1234876939620327e-19,-2.5750321492470417e-20,6.925847173988586e-06,5.0,7.0,16.0,0.05462560057640076,-0.015632502734661102,-0.012027311138808727,-0.005934874061495066,0.0012755101779475808,0.0013392857508733869,0.0006302521214820445,0.0007440476329065859,0.0004726890765596181,0.00017507003212813288,-0.015632502734661102,0.01546931266784668,0.0013392857508733869,0.0006302521214820445,-0.0025510203558951616,-0.0006696428754366934,-0.00031512606074102223,1.8973538018496328e-18,4.607859233063394e-19,4.760325163569168e-19,-0.012027311138808727,0.0013392857508733869,0.007878151722252369,0.0004726890765596181,4.9873299934333204e-18,-0.00044642857392318547,2.337810934421869e-19,-0.0008928571478463709,-0.00015756303037051111,2.803679055411734e-19,-0.005934874061495066,0.0006302521214820445,0.0004726890765596181,0.0015666265971958637,1.7889335846010823e-18,7.047314121155779e-19,-8.403361425735056e-05,2.981555974335137e-19,-6.302521069301292e-05,-7.503000961150974e-05,0.0012755101779475808,-0.0025510203558951616,4.9873299934333204e-18,1.7889335846010823e-18,0.0006377550889737904,-4.271312529040069e-19,-1.6966171004634732e-19,-4.770918762276558e-19,-1.0948451435357062e-19,-6.564505341220828e-20,0.0013392857508733869,-0.0006696428754366934,-0.00044642857392318547,7.047314121155779e-19,-4.271312529040069e-19,0.00022321428696159273,-7.453889935837843e-20,1.6940658945086007e-20,8.470329472543003e-21,-3.719382727662597e-20,0.0006302521214820445,-0.00031512606074102223,2.337810934421869e-19,-8.403361425735056e-05,-1.6966171004634732e-19,-7.453889935837843e-20,4.201680712867528e-05,1.6940658945086007e-21,-5.082197683525802e-21,-9.878564883529753e-21,0.0007440476329065859,1.8973538018496328e-18,-0.0008928571478463709,2.981555974335137e-19,-4.770918762276558e-19,1.6940658945086007e-20,1.6940658945086007e-21,0.00014880952949170023,2.879912020664621e-20,-2.149998962418593e-20,0.0004726890765596181,4.607859233063394e-19,-0.00015756303037051111,-6.302521069301292e-05,-1.0948451435357062e-19,8.470329472543003e-21,-5.082197683525802e-21,2.879912020664621e-20,2.100840356433764e-05,-7.200724362341313e-21,0.00017507003212813288,4.760325163569168e-19,2.803679055411734e-19,-7.503000961150974e-05,-6.564505341220828e-20,-3.719382727662597e-20,-9.878564883529753e-21,-2.149998962418593e-20,-7.200724362341313e-21,5.002000762033276e-06,5.0,8.0,3.0,0.1855158656835556,-0.06408730149269104,-0.04444444552063942,-0.09166666865348816,0.0059523810632526875,0.0055555556900799274,0.012500000186264515,0.0027777778450399637,0.008333333767950535,0.012500000186264515,-0.06408730149269104,0.06775793433189392,0.0055555556900799274,0.012500000186264515,-0.011904762126505375,-0.0027777778450399637,-0.0062500000931322575,-1.1167282376600696e-17,-1.0408340855860843e-17,-9.3616765531633e-19,-0.04444444552063942,0.0055555556900799274,0.02658730186522007,0.008333333767950535,-1.6263032587282567e-17,-0.0015873016091063619,-1.214306433183765e-17,-0.0027777778450399637,-0.0023809524718672037,1.8825520665324864e-17,-0.09166666865348816,0.012500000186264515,0.008333333767950535,0.21666666865348816,-1.5996834285634426e-17,-1.5474089432520568e-18,-0.012500000186264515,0.0,-0.008333333767950535,-0.07500000298023224,0.0059523810632526875,-0.011904762126505375,-1.6263032587282567e-17,-1.5996834285634426e-17,0.0029761905316263437,4.0657581468206416e-19,2.1141942363467336e-18,1.7753810574450135e-18,1.8431436932253575e-18,2.190794262996441e-18,0.0055555556900799274,-0.0027777778450399637,-0.0015873016091063619,-1.5474089432520568e-18,4.0657581468206416e-19,0.0007936508045531809,1.1926223897340549e-18,6.2341624917916505e-19,4.87890977618477e-19,-1.414375243093955e-18,0.012500000186264515,-0.0062500000931322575,-1.214306433183765e-17,-0.012500000186264515,2.1141942363467336e-18,1.1926223897340549e-18,0.0062500000931322575,1.0842021724855044e-18,1.1926223897340549e-18,-4.9457203270800654e-18,0.0027777778450399637,-1.1167282376600696e-17,-0.0027777778450399637,0.0,1.7753810574450135e-18,6.2341624917916505e-19,1.0842021724855044e-18,0.00039682540227659047,8.131516293641283e-20,-1.202508542222559e-18,0.008333333767950535,-1.0408340855860843e-17,-0.0023809524718672037,-0.008333333767950535,1.8431436932253575e-18,4.87890977618477e-19,1.1926223897340549e-18,8.131516293641283e-20,0.0023809524718672037,-1.0048394866669618e-17,0.012500000186264515,-9.3616765531633e-19,1.8825520665324864e-17,-0.07500000298023224,2.190794262996441e-18,-1.414375243093955e-18,-4.9457203270800654e-18,-1.202508542222559e-18,-1.0048394866669618e-17,0.03750000149011612,5.0,8.0,4.0,0.1522618979215622,-0.04994047433137894,-0.034583333879709244,-0.05874999985098839,0.004464285913854837,0.004166666883975267,0.007499999832361937,0.0020833334419876337,0.004999999888241291,0.0062500000931322575,-0.04994047433137894,0.05175595358014107,0.004166666883975267,0.007499999832361937,-0.008928571827709675,-0.0020833334419876337,-0.0037499999161809683,-5.421010862427522e-19,1.734723475976807e-18,-2.4551820730788557e-17,-0.034583333879709244,0.004166666883975267,0.020297618582844734,0.004999999888241291,6.5052130349130266e-18,-0.0011904762359336019,-3.903127820947816e-18,-0.0020833334419876337,-0.0014285714132711291,-2.1420063646464816e-17,-0.05874999985098839,0.007499999832361937,0.004999999888241291,0.08291666954755783,-4.350550938726394e-20,-1.0869287252206017e-17,-0.004999999888241291,-5.800481622797449e-18,-0.0033333334140479565,-0.01875000074505806,0.004464285913854837,-0.008928571827709675,6.5052130349130266e-18,-4.350550938726394e-20,0.0022321429569274187,-1.0570971181733668e-18,-3.2526065174565133e-19,-1.0842021724855044e-19,-1.3552527156068805e-18,2.1807303700738147e-18,0.004166666883975267,-0.0020833334419876337,-0.0011904762359336019,-1.0869287252206017e-17,-1.0570971181733668e-18,0.0005952381179668009,1.8973538018496328e-19,1.2874900798265365e-19,5.692061405548898e-19,2.655016708157632e-18,0.007499999832361937,-0.0037499999161809683,-3.903127820947816e-18,-0.004999999888241291,-3.2526065174565133e-19,1.8973538018496328e-19,0.0024999999441206455,3.1170812458958252e-19,9.215718466126788e-19,3.3764306988671794e-18,0.0020833334419876337,-5.421010862427522e-19,-0.0020833334419876337,-5.800481622797449e-18,-1.0842021724855044e-19,1.2874900798265365e-19,3.1170812458958252e-19,0.00029761905898340046,4.2012834183813297e-19,1.1093477393240805e-18,0.004999999888241291,1.734723475976807e-18,-0.0014285714132711291,-0.0033333334140479565,-1.3552527156068805e-18,5.692061405548898e-19,9.215718466126788e-19,4.2012834183813297e-19,0.0009523809421807528,4.005687049966122e-18,0.0062500000931322575,-2.4551820730788557e-17,-2.1420063646464816e-17,-0.01875000074505806,2.1807303700738147e-18,2.655016708157632e-18,3.3764306988671794e-18,1.1093477393240805e-18,4.005687049966122e-18,0.0062500000931322575,5.0,8.0,5.0,0.12928570806980133,-0.04095238074660301,-0.028333334252238274,-0.04095238074660301,0.0035714285913854837,0.0033333334140479565,0.004999999888241291,0.0016666667070239782,0.0033333334140479565,0.0035714285913854837,-0.04095238074660301,0.041904762387275696,0.0033333334140479565,0.004999999888241291,-0.0071428571827709675,-0.0016666667070239782,-0.0024999999441206455,-3.06287113727155e-18,-6.505213034913027e-19,5.421010862427522e-18,-0.028333334252238274,0.0033333334140479565,0.016428571194410324,0.0033333334140479565,-7.026985330421676e-18,-0.0009523809421807528,-1.0028870095490916e-18,-0.0016666667070239782,-0.0009523809421807528,-2.168404344971009e-18,-0.04095238074660301,0.004999999888241291,0.0033333334140479565,0.041904762387275696,6.288372600415926e-18,2.3852447794681098e-18,-0.0024999999441206455,-1.3552527156068805e-18,-0.0016666667070239782,-0.0071428571827709675,0.0035714285913854837,-0.0071428571827709675,-7.026985330421676e-18,6.288372600415926e-18,0.0017857142956927419,1.297141209623499e-18,-1.9578107526105143e-19,5.72594272343907e-19,1.4285312243562754e-19,-1.5092573054495798e-18,0.0033333334140479565,-0.0016666667070239782,-0.0009523809421807528,2.3852447794681098e-18,1.297141209623499e-18,0.0004761904710903764,-2.439454888092385e-19,9.030741752608265e-20,-5.421010862427522e-20,-3.6591823321385775e-19,0.004999999888241291,-0.0024999999441206455,-1.0028870095490916e-18,-0.0024999999441206455,-1.9578107526105143e-19,-2.439454888092385e-19,0.0012499999720603228,1.3966241539437202e-19,1.8973538018496328e-19,8.944667923005412e-19,0.0016666667070239782,-3.06287113727155e-18,-0.0016666667070239782,-1.3552527156068805e-18,5.72594272343907e-19,9.030741752608265e-20,1.3966241539437202e-19,0.0002380952355451882,4.088587039257398e-20,2.6262152098067247e-19,0.0033333334140479565,-6.505213034913027e-19,-0.0009523809421807528,-0.0016666667070239782,1.4285312243562754e-19,-5.421010862427522e-20,1.8973538018496328e-19,4.088587039257398e-20,0.0004761904710903764,4.2012834183813297e-19,0.0035714285913854837,5.421010862427522e-18,-2.168404344971009e-18,-0.0071428571827709675,-1.5092573054495798e-18,-3.6591823321385775e-19,8.944667923005412e-19,2.6262152098067247e-19,4.2012834183813297e-19,0.0017857142956927419,5.0,8.0,6.0,0.11240079253911972,-0.0347222238779068,-0.02400793693959713,-0.03020833246409893,0.0029761905316263437,0.0027777778450399637,0.0035714285913854837,0.0013888889225199819,0.0023809524718672037,0.0022321429569274187,-0.0347222238779068,0.0352182537317276,0.0027777778450399637,0.0035714285913854837,-0.0059523810632526875,-0.0013888889225199819,-0.0017857142956927419,-4.0657581468206416e-20,0.0,-0.0,-0.02400793693959713,0.0027777778450399637,0.013803854584693909,0.0023809524718672037,0.0,-0.0007936508045531809,0.0,-0.0013888889225199819,-0.0006802721181884408,-0.0,-0.03020833246409893,0.0035714285913854837,0.0023809524718672037,0.024360118433833122,0.0,-1.2911939587338274e-20,-0.0014285714132711291,0.0,-0.0009523809421807528,-0.0033482143189758062,0.0029761905316263437,-0.0059523810632526875,0.0,0.0,0.0014880952658131719,0.0,0.0,0.0,0.0,-0.0,0.0027777778450399637,-0.0013888889225199819,-0.0007936508045531809,-1.2911939587338274e-20,0.0,0.00039682540227659047,0.0,2.710505431213761e-20,6.776263578034403e-21,-0.0,0.0035714285913854837,-0.0017857142956927419,0.0,-0.0014285714132711291,0.0,0.0,0.0007142857066355646,0.0,0.0,-0.0,0.0013888889225199819,-4.0657581468206416e-20,-0.0013888889225199819,0.0,0.0,2.710505431213761e-20,0.0,0.00019841270113829523,0.0,-0.0,0.0023809524718672037,0.0,-0.0006802721181884408,-0.0009523809421807528,0.0,6.776263578034403e-21,0.0,0.0,0.0002721088530961424,-0.0,0.0022321429569274187,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,5.0,8.0,7.0,0.09944728016853333,-0.03014455735683441,-0.02083333395421505,-0.02321428619325161,0.0025510203558951616,0.0023809524718672037,0.0026785715017467737,0.0011904762359336019,0.0017857142956927419,0.0014880952658131719,-0.03014455735683441,0.030378401279449463,0.0023809524718672037,0.0026785715017467737,-0.005102040711790323,-0.0011904762359336019,-0.0013392857508733869,-2.710505431213761e-20,-1.4907779871675686e-19,1.0842021724855044e-19,-0.02083333395421505,0.0023809524718672037,0.011904762126505375,0.0017857142956927419,0.0,-0.0006802721181884408,-1.6263032587282567e-19,-0.0011904762359336019,-0.0005102040595375001,-2.439454888092385e-19,-0.02321428619325161,0.0026785715017467737,0.0017857142956927419,0.015476190485060215,-0.0,2.6846910953122844e-20,-0.0008928571478463709,2.6262435148933105e-20,-0.0005952381179668009,-0.0017857142956927419,0.0025510203558951616,-0.005102040711790323,0.0,-0.0,0.0012755101779475808,0.0,0.0,0.0,0.0,0.0,0.0023809524718672037,-0.0011904762359336019,-0.0006802721181884408,2.6846910953122844e-20,0.0,0.0003401360590942204,1.452056520675806e-22,0.0,-4.420705225076267e-21,-3.1270670445675736e-21,0.0026785715017467737,-0.0013392857508733869,-1.6263032587282567e-19,-0.0008928571478463709,0.0,1.452056520675806e-22,0.00044642857392318547,-3.3881317890172014e-21,5.759824041329242e-20,-2.710505431213761e-20,0.0011904762359336019,-2.710505431213761e-20,-0.0011904762359336019,2.6262435148933105e-20,0.0,0.0,-3.3881317890172014e-21,0.0001700680295471102,6.776263578034403e-21,-6.776263578034403e-21,0.0017857142956927419,-1.4907779871675686e-19,-0.0005102040595375001,-0.0005952381179668009,0.0,-4.420705225076267e-21,5.759824041329242e-20,6.776263578034403e-21,0.0001700680295471102,1.0842021724855044e-19,0.0014880952658131719,1.0842021724855044e-19,-2.439454888092385e-19,-0.0017857142956927419,0.0,-3.1270670445675736e-21,-2.710505431213761e-20,-6.776263578034403e-21,1.0842021724855044e-19,0.00029761905898340046,5.0,8.0,8.0,0.08918650448322296,-0.02663690410554409,-0.01840277761220932,-0.01840277761220932,0.0022321429569274187,0.0020833334419876337,0.0020833334419876337,0.0010416667209938169,0.0013888889225199819,0.0010416667209938169,-0.02663690410554409,0.02671130932867527,0.0020833334419876337,0.0020833334419876337,-0.004464285913854837,-0.0010416667209938169,-0.0010416667209938169,-4.0657581468206416e-20,1.3552527156068805e-20,-5.421010862427522e-20,-0.01840277761220932,0.0020833334419876337,0.01046627014875412,0.0013888889225199819,0.0,-0.0005952381179668009,2.710505431213761e-20,-0.0010416667209938169,-0.00039682540227659047,5.421010862427522e-20,-0.01840277761220932,0.0020833334419876337,0.0013888889225199819,0.01046627014875412,-0.0,-1.815608453295904e-20,-0.0005952381179668009,-2.4080392469742172e-20,-0.00039682540227659047,-0.0010416667209938169,0.0022321429569274187,-0.004464285913854837,0.0,-0.0,0.0011160714784637094,0.0,0.0,0.0,0.0,0.0,0.0020833334419876337,-0.0010416667209938169,-0.0005952381179668009,-1.815608453295904e-20,0.0,0.00029761905898340046,1.8554055191363787e-22,1.3552527156068805e-20,4.076514079723245e-21,-1.0813868866966936e-21,0.0020833334419876337,-0.0010416667209938169,2.710505431213761e-20,-0.0005952381179668009,0.0,1.8554055191363787e-22,0.00029761905898340046,0.0,-3.3881317890172014e-21,1.3552527156068805e-20,0.0010416667209938169,-4.0657581468206416e-20,-0.0010416667209938169,-2.4080392469742172e-20,0.0,1.3552527156068805e-20,0.0,0.00014880952949170023,6.776263578034403e-21,-1.6940658945086007e-21,0.0013888889225199819,1.3552527156068805e-20,-0.00039682540227659047,-0.00039682540227659047,0.0,4.076514079723245e-21,-3.3881317890172014e-21,6.776263578034403e-21,0.00011337868636474013,-1.3552527156068805e-20,0.0010416667209938169,-5.421010862427522e-20,5.421010862427522e-20,-0.0010416667209938169,0.0,-1.0813868866966936e-21,1.3552527156068805e-20,-1.6940658945086007e-21,-1.3552527156068805e-20,0.00014880952949170023,5.0,8.0,9.0,0.08085377514362335,-0.023862434551119804,-0.01648148149251938,-0.01494949497282505,0.0019841270986944437,0.0018518518190830946,0.0016666667070239782,0.0009259259095415473,0.0011111111380159855,0.0007575757335871458,-0.023862434551119804,0.023835979402065277,0.0018518518190830946,0.0016666667070239782,-0.003968254197388887,-0.0009259259095415473,-0.0008333333535119891,-3.3881317890172014e-20,6.776263578034403e-20,0.0,-0.01648148149251938,0.0018518518190830946,0.009338624775409698,0.0011111111380159855,0.0,-0.0005291005363687873,8.131516293641283e-20,-0.0009259259095415473,-0.0003174603043589741,1.0842021724855044e-19,-0.01494949497282505,0.0016666667070239782,0.0011111111380159855,0.007417027372866869,-0.0,-0.0,-0.00041666667675599456,-3.687745654171858e-21,-0.00027777778450399637,-0.0006493506371043622,0.0019841270986944437,-0.003968254197388887,0.0,-0.0,0.0009920635493472219,0.0,0.0,0.0,0.0,0.0,0.0018518518190830946,-0.0009259259095415473,-0.0005291005363687873,-0.0,0.0,0.00026455026818439364,4.235164736271502e-22,1.3552527156068805e-20,-3.3881317890172014e-21,1.7253549705306993e-21,0.0016666667070239782,-0.0008333333535119891,8.131516293641283e-20,-0.00041666667675599456,0.0,4.235164736271502e-22,0.00020833333837799728,-8.470329472543003e-22,-2.0328790734103208e-20,0.0,0.0009259259095415473,-3.3881317890172014e-20,-0.0009259259095415473,-3.687745654171858e-21,0.0,1.3552527156068805e-20,-8.470329472543003e-22,0.00013227513409219682,3.3881317890172014e-21,1.6940658945086007e-21,0.0011111111380159855,6.776263578034403e-20,-0.0003174603043589741,-0.00027777778450399637,0.0,-3.3881317890172014e-21,-2.0328790734103208e-20,3.3881317890172014e-21,7.936507608974352e-05,-3.3881317890172014e-20,0.0007575757335871458,0.0,1.0842021724855044e-19,-0.0006493506371043622,0.0,1.7253549705306993e-21,0.0,1.6940658945086007e-21,-3.3881317890172014e-20,8.116882963804528e-05,5.0,8.0,10.0,0.07395021617412567,-0.021612554788589478,-0.014924242161214352,-0.012386363931000233,0.0017857142956927419,0.0016666667070239782,0.0013636363437399268,0.0008333333535119891,0.0009090909152291715,0.0005681818001903594,-0.021612554788589478,0.02152056246995926,0.0016666667070239782,0.0013636363437399268,-0.0035714285913854837,-0.0008333333535119891,-0.0006818181718699634,-0.0,0.0,0.0,-0.014924242161214352,0.0016666667070239782,0.008430736139416695,0.0009090909152291715,0.0,-0.0004761904710903764,0.0,-0.0008333333535119891,-0.0002597402490209788,0.0,-0.012386363931000233,0.0013636363437399268,0.0009090909152291715,0.005451388657093048,-0.0,-0.0,-0.0003030303050763905,-0.0,-0.00020202020823489875,-0.00042613636469468474,0.0017857142956927419,-0.0035714285913854837,0.0,-0.0,0.0008928571478463709,0.0,0.0,0.0,0.0,0.0,0.0016666667070239782,-0.0008333333535119891,-0.0004761904710903764,-0.0,0.0,0.0002380952355451882,0.0,0.0,0.0,0.0,0.0013636363437399268,-0.0006818181718699634,0.0,-0.0003030303050763905,0.0,0.0,0.00015151515253819525,0.0,0.0,3.3881317890172014e-21,0.0008333333535119891,-0.0,-0.0008333333535119891,-0.0,0.0,0.0,0.0,0.0001190476177725941,0.0,0.0,0.0009090909152291715,0.0,-0.0002597402490209788,-0.00020202020823489875,0.0,0.0,0.0,0.0,5.77200589759741e-05,3.3881317890172014e-21,0.0005681818001903594,0.0,0.0,-0.00042613636469468474,0.0,0.0,3.3881317890172014e-21,0.0,3.3881317890172014e-21,4.734848334919661e-05,5.0,8.0,11.0,0.06813602894544601,-0.019751083105802536,-0.013636363670229912,-0.010431235656142235,0.001623376621864736,0.0015151514671742916,0.0011363636003807187,0.0007575757335871458,0.0007575757335871458,0.0004370629321783781,-0.019751083105802536,0.01961580105125904,0.0015151514671742916,0.0011363636003807187,-0.003246753243729472,-0.0007575757335871458,-0.0005681818001903594,-0.0,-6.098637220230962e-20,1.3552527156068805e-20,-0.013636363670229912,0.0015151514671742916,0.007683982606977224,0.0007575757335871458,0.0,-0.00043290044413879514,-7.453889935837843e-20,-0.0007575757335871458,-0.00021645022206939757,-8.131516293641283e-20,-0.010431235656142235,0.0011363636003807187,0.0007575757335871458,0.004125874023884535,-0.0,-0.0,-0.00022727272880729288,-0.0,-0.00015151515253819525,-0.00029137529782019556,0.001623376621864736,-0.003246753243729472,0.0,-0.0,0.000811688310932368,0.0,0.0,0.0,0.0,0.0,0.0015151514671742916,-0.0007575757335871458,-0.00043290044413879514,-0.0,0.0,0.00021645022206939757,0.0,0.0,0.0,0.0,0.0011363636003807187,-0.0005681818001903594,-7.453889935837843e-20,-0.00022727272880729288,0.0,0.0,0.00011363636440364644,0.0,1.3552527156068805e-20,-3.3881317890172014e-21,0.0007575757335871458,-0.0,-0.0007575757335871458,-0.0,0.0,0.0,0.0,0.00010822511103469878,0.0,0.0,0.0007575757335871458,-6.098637220230962e-20,-0.00021645022206939757,-0.00015151515253819525,0.0,0.0,1.3552527156068805e-20,0.0,4.329004150349647e-05,1.3552527156068805e-20,0.0004370629321783781,1.3552527156068805e-20,-8.131516293641283e-20,-0.00029137529782019556,0.0,0.0,-3.3881317890172014e-21,0.0,1.3552527156068805e-20,2.9137529054423794e-05,5.0,8.0,12.0,0.06317155063152313,-0.018185287714004517,-0.01255341898649931,-0.008905678056180477,0.0014880952658131719,0.0013888889225199819,0.000961538462433964,0.0006944444612599909,0.0006410256610251963,0.00034340660204179585,-0.018185287714004517,0.01802121475338936,0.0013888889225199819,0.000961538462433964,-0.0029761905316263437,-0.0006944444612599909,-0.000480769231216982,-0.0,-1.3552527156068805e-20,1.3552527156068805e-20,-0.01255341898649931,0.0013888889225199819,0.007058913353830576,0.0006410256610251963,0.0,-0.00039682540227659047,-1.3552527156068805e-20,-0.0006944444612599909,-0.00018315018678549677,-2.710505431213761e-20,-0.008905678056180477,0.000961538462433964,0.0006410256610251963,0.003198884427547455,-0.0,-0.0,-0.00017482518160250038,-0.0,-0.00011655011621769518,-0.00020604395831469446,0.0014880952658131719,-0.0029761905316263437,0.0,-0.0,0.0007440476329065859,0.0,0.0,0.0,0.0,0.0,0.0013888889225199819,-0.0006944444612599909,-0.00039682540227659047,-0.0,0.0,0.00019841270113829523,0.0,0.0,0.0,0.0,0.000961538462433964,-0.000480769231216982,-1.3552527156068805e-20,-0.00017482518160250038,0.0,0.0,8.741259080125019e-05,0.0,2.541098841762901e-21,1.6940658945086007e-21,0.0006944444612599909,-0.0,-0.0006944444612599909,-0.0,0.0,0.0,0.0,9.920635056914762e-05,0.0,0.0,0.0006410256610251963,-1.3552527156068805e-20,-0.00018315018678549677,-0.00011655011621769518,0.0,0.0,2.541098841762901e-21,0.0,3.330003164592199e-05,4.235164736271502e-21,0.00034340660204179585,1.3552527156068805e-20,-2.710505431213761e-20,-0.00020604395831469446,0.0,0.0,1.6940658945086007e-21,0.0,4.235164736271502e-21,1.8731268937699497e-05,5.0,8.0,13.0,0.058882784098386765,-0.01684981770813465,-0.011630036868155003,-0.007692307699471712,0.0013736264081671834,0.0012820513220503926,0.0008241758332587779,0.0006410256610251963,0.0005494505749084055,0.00027472528745420277,-0.01684981770813465,0.01666666753590107,0.0012820513220503926,0.0008241758332587779,-0.002747252816334367,-0.0006410256610251963,-0.00041208791662938893,-0.0,1.6940658945086007e-20,-1.3552527156068805e-20,-0.011630036868155003,0.0012820513220503926,0.006527995690703392,0.0005494505749084055,0.0,-0.00036630037357099354,2.371692252312041e-20,-0.0006410256610251963,-0.00015698587230872363,3.3881317890172014e-20,-0.007692307699471712,0.0008241758332587779,0.0005494505749084055,0.002530802506953478,-0.0,-0.0,-0.00013736264372710139,-0.0,-9.157509339274839e-05,-0.00014985015150159597,0.0013736264081671834,-0.002747252816334367,0.0,-0.0,0.0006868132040835917,0.0,0.0,0.0,0.0,0.0,0.0012820513220503926,-0.0006410256610251963,-0.00036630037357099354,-0.0,0.0,0.00018315018678549677,0.0,0.0,0.0,0.0,0.0008241758332587779,-0.00041208791662938893,2.371692252312041e-20,-0.00013736264372710139,0.0,0.0,6.868132186355069e-05,0.0,-3.3881317890172014e-21,1.6940658945086007e-21,0.0006410256610251963,-0.0,-0.0006410256610251963,-0.0,0.0,0.0,0.0,9.157509339274839e-05,0.0,0.0,0.0005494505749084055,1.6940658945086007e-20,-0.00015698587230872363,-9.157509339274839e-05,0.0,0.0,-3.3881317890172014e-21,0.0,2.616431265778374e-05,-4.235164736271502e-21,0.00027472528745420277,-1.3552527156068805e-20,3.3881317890172014e-20,-0.00014985015150159597,0.0,0.0,1.6940658945086007e-21,0.0,-4.235164736271502e-21,1.2487512321968097e-05,5.0,8.0,14.0,0.05514030531048775,-0.015697278082370758,-0.010833333246409893,-0.006711309310048819,0.0012755101779475808,0.0011904762359336019,0.0007142857066355646,0.0005952381179668009,0.0004761904710903764,0.00022321428696159273,-0.015697278082370758,0.015501700341701508,0.0011904762359336019,0.0007142857066355646,-0.0025510203558951616,-0.0005952381179668009,-0.0003571428533177823,-1.3552527156068805e-19,-1.8973538018496328e-19,1.5924219408380846e-19,-0.010833333246409893,0.0011904762359336019,0.006071428768336773,0.0004761904710903764,-2.375080384101058e-18,-0.0003401360590942204,4.980553729855286e-19,-0.0005952381179668009,-0.0001360544265480712,1.0249098661777034e-19,-0.006711309310048819,0.0007142857066355646,0.0004761904710903764,0.0020369733683764935,-5.692061405548898e-19,2.710505431213761e-19,-0.00010989011207129806,3.2526065174565133e-19,-7.326007471419871e-05,-0.00011160714348079637,0.0012755101779475808,-0.0025510203558951616,-2.375080384101058e-18,-5.692061405548898e-19,0.0006377550889737904,3.653484350187794e-19,2.9372030668779267e-19,1.8993449806804128e-19,4.054720778639314e-20,-1.3976043629695956e-20,0.0011904762359336019,-0.0005952381179668009,-0.0003401360590942204,2.710505431213761e-19,3.653484350187794e-19,0.0001700680295471102,-6.776263578034403e-20,-1.0333801956502464e-19,-6.776263578034403e-21,-1.0631817844422987e-20,0.0007142857066355646,-0.0003571428533177823,4.980553729855286e-19,-0.00010989011207129806,2.9372030668779267e-19,-6.776263578034403e-20,5.494505603564903e-05,-4.573977915173222e-20,8.470329472543003e-22,-7.942471111666965e-21,0.0005952381179668009,-1.3552527156068805e-19,-0.0005952381179668009,3.2526065174565133e-19,1.8993449806804128e-19,-1.0333801956502464e-19,-4.573977915173222e-20,8.50340147735551e-05,-2.0328790734103208e-20,-9.551073254586212e-21,0.0004761904710903764,-1.8973538018496328e-19,-0.0001360544265480712,-7.326007471419871e-05,4.054720778639314e-20,-6.776263578034403e-21,8.470329472543003e-22,-2.0328790734103208e-20,2.093144939863123e-05,-2.0874968540413043e-22,0.00022321428696159273,1.5924219408380846e-19,1.0249098661777034e-19,-0.00011160714348079637,-1.3976043629695956e-20,-1.0631817844422987e-20,-7.942471111666965e-21,-9.551073254586212e-21,-2.0874968540413043e-22,8.585165232943837e-06,5.0,8.0,15.0,0.05184582248330116,-0.014692460186779499,-0.010138888843357563,-0.005906862672418356,0.0011904762359336019,0.0011111111380159855,0.0006249999860301614,0.0005555555690079927,0.00041666667675599456,0.00018382353300694376,-0.014692460186779499,0.014489087276160717,0.0011111111380159855,0.0006249999860301614,-0.0023809524718672037,-0.0005555555690079927,-0.0003124999930150807,9.486769009248164e-19,8.131516293641283e-20,-2.0328790734103208e-19,-0.010138888843357563,0.0011111111380159855,0.005674603395164013,0.00041666667675599456,3.926844743470936e-18,-0.0003174603043589741,8.470329472543003e-21,-0.0005555555690079927,-0.0001190476177725941,-5.802175688691957e-19,-0.005906862672418356,0.0006249999860301614,0.00041666667675599456,0.0016639733221381903,5.149960319306146e-19,-5.963111948670274e-19,-8.928571332944557e-05,-7.047314121155779e-19,-5.952380888629705e-05,-8.484163117827848e-05,0.0011904762359336019,-0.0023809524718672037,3.926844743470936e-18,5.149960319306146e-19,0.0005952381179668009,-6.200200523791755e-19,-2.1245147879037988e-19,-2.887938516039741e-19,-5.98136239641655e-20,1.4399560103323106e-20,0.0011111111380159855,-0.0005555555690079927,-0.0003174603043589741,-5.963111948670274e-19,-6.200200523791755e-19,0.00015873015217948705,-1.3552527156068805e-20,1.0333801956502464e-19,3.8963515573697816e-20,3.2384818915092875e-20,0.0006249999860301614,-0.0003124999930150807,8.470329472543003e-21,-8.928571332944557e-05,-2.1245147879037988e-19,-1.3552527156068805e-20,4.4642856664722785e-05,-1.6940658945086007e-21,5.082197683525802e-21,3.793233800492243e-21,0.0005555555690079927,9.486769009248164e-19,-0.0005555555690079927,-7.047314121155779e-19,-2.887938516039741e-19,1.0333801956502464e-19,-1.6940658945086007e-21,7.936507608974352e-05,-2.286988957586611e-20,5.480714561843098e-20,0.00041666667675599456,8.131516293641283e-20,-0.0001190476177725941,-5.952380888629705e-05,-5.98136239641655e-20,3.8963515573697816e-20,5.082197683525802e-21,-2.286988957586611e-20,1.70068033185089e-05,1.427434563809789e-20,0.00018382353300694376,-2.0328790734103208e-19,-5.802175688691957e-19,-8.484163117827848e-05,1.4399560103323106e-20,3.2384818915092875e-20,3.793233800492243e-21,5.480714561843098e-20,1.427434563809789e-20,6.06011644777027e-06,5.0,8.0,16.0,0.048923321068286896,-0.013808648101985455,-0.009528186172246933,-0.0052389707416296005,0.0011160714784637094,0.0010416667209938169,0.0005514706135727465,0.0005208333604969084,0.0003676470660138875,0.00015318627993110567,-0.013808648101985455,0.01360075268894434,0.0010416667209938169,0.0005514706135727465,-0.0022321429569274187,-0.0005208333604969084,-0.00027573530678637326,2.710505431213761e-20,-5.421010862427522e-20,9.486769009248164e-20,-0.009528186172246933,0.0010416667209938169,0.005326505750417709,0.0003676470660138875,-1.060485249962384e-18,-0.00029761905898340046,-3.6930636500287495e-19,-0.0005208333604969084,-0.0001050420178216882,-3.057788939588024e-19,-0.0052389707416296005,0.0005514706135727465,0.0003676470660138875,0.0013769257348030806,-2.710505431213761e-19,-4.336808689942018e-19,-7.352940883720294e-05,-4.2012834183813297e-19,-4.901960710412823e-05,-6.565126386703923e-05,0.0011160714784637094,-0.0022321429569274187,-1.060485249962384e-18,-2.710505431213761e-19,0.0005580357392318547,7.744252044335035e-19,3.454444790774046e-19,-7.3089310571319e-20,-7.518269629095044e-21,-2.286988957586611e-20,0.0010416667209938169,-0.0005208333604969084,-0.00029761905898340046,-4.336808689942018e-19,7.744252044335035e-19,0.00014880952949170023,1.3383120566617945e-19,-1.6940658945086007e-20,1.6940658945086007e-20,8.669258331926337e-21,0.0005514706135727465,-0.00027573530678637326,-3.6930636500287495e-19,-7.352940883720294e-05,3.454444790774046e-19,1.3383120566617945e-19,3.676470441860147e-05,1.6093625997831706e-20,-2.541098841762901e-21,-5.7257296598078525e-21,0.0005208333604969084,2.710505431213761e-20,-0.0005208333604969084,-4.2012834183813297e-19,-7.3089310571319e-20,-1.6940658945086007e-20,1.6093625997831706e-20,7.440476474585012e-05,-2.964615315390051e-20,3.336626871188704e-20,0.0003676470660138875,-5.421010862427522e-20,-0.0001050420178216882,-4.901960710412823e-05,-7.518269629095044e-21,1.6940658945086007e-20,-2.541098841762901e-21,-2.964615315390051e-20,1.4005602679389995e-05,4.628263339238505e-21,0.00015318627993110567,9.486769009248164e-20,-3.057788939588024e-19,-6.565126386703923e-05,-2.286988957586611e-20,8.669258331926337e-21,-5.7257296598078525e-21,3.336626871188704e-20,4.628263339238505e-21,4.376750894152792e-06,5.0,9.0,3.0,0.16869649291038513,-0.05746031925082207,-0.03616161644458771,-0.08222222328186035,0.005291005130857229,0.004444444552063942,0.011111111380159855,0.002020202111452818,0.006666666828095913,0.011111111380159855,-0.05746031925082207,0.060476191341876984,0.004444444552063942,0.011111111380159855,-0.010582010261714458,-0.002222222276031971,-0.0055555556900799274,2.678585306857164e-19,-1.5178830414797062e-18,3.599551212651875e-17,-0.03616161644458771,0.004444444552063942,0.01885281316936016,0.006666666828095913,2.154367089975984e-18,-0.0011111111380159855,2.168404344971009e-19,-0.0017316017765551805,-0.0016666667070239782,-2.6020852139652106e-18,-0.08222222328186035,0.011111111380159855,0.006666666828095913,0.19333332777023315,1.9727887032475286e-17,5.4931831980533864e-18,-0.011111111380159855,7.617766822893786e-19,-0.006666666828095913,-0.06666667014360428,0.005291005130857229,-0.010582010261714458,2.154367089975984e-18,1.9727887032475286e-17,0.0026455025654286146,-1.328147661294743e-18,-1.969119578204427e-18,-1.3552527156068805e-20,9.013986821560092e-20,-8.095881352852499e-18,0.004444444552063942,-0.002222222276031971,-0.0011111111380159855,5.4931831980533864e-18,-1.328147661294743e-18,0.0005555555690079927,-7.047500753781486e-19,-2.710505431213761e-20,-6.843048072740403e-20,-1.8364546972019475e-18,0.011111111380159855,-0.0055555556900799274,2.168404344971009e-19,-0.011111111380159855,-1.969119578204427e-18,-7.047500753781486e-19,0.0055555556900799274,-2.688869488316671e-20,1.4094628242311558e-18,5.637851296924623e-18,0.002020202111452818,2.678585306857164e-19,-0.0017316017765551805,7.617766822893786e-19,-1.3552527156068805e-20,-2.710505431213761e-20,-2.688869488316671e-20,0.00021645022206939757,4.5791636267555904e-20,-4.772228292583806e-19,0.006666666828095913,-1.5178830414797062e-18,-0.0016666667070239782,-0.006666666828095913,9.013986821560092e-20,-6.843048072740403e-20,1.4094628242311558e-18,4.5791636267555904e-20,0.0016666667070239782,9.540979117872439e-18,0.011111111380159855,3.599551212651875e-17,-2.6020852139652106e-18,-0.06666667014360428,-8.095881352852499e-18,-1.8364546972019475e-18,5.637851296924623e-18,-4.772228292583806e-19,9.540979117872439e-18,0.03333333507180214,5.0,9.0,4.0,0.13830015063285828,-0.04476190358400345,-0.028121212497353554,-0.052666667848825455,0.003968254197388887,0.0033333334140479565,0.006666666828095913,0.0015151514671742916,0.004000000189989805,0.0055555556900799274,-0.04476190358400345,0.04619047790765762,0.0033333334140479565,0.006666666828095913,-0.007936508394777775,-0.0016666667070239782,-0.0033333334140479565,7.589415207398531e-19,1.951563910473908e-18,1.049035415923425e-17,-0.028121212497353554,0.0033333334140479565,0.014389610849320889,0.004000000189989805,3.3610267347050637e-18,-0.0008333333535119891,-2.168404344971009e-19,-0.0012987012742087245,-0.0010000000474974513,-3.700743608425998e-18,-0.052666667848825455,0.006666666828095913,0.004000000189989805,0.07400000095367432,1.0124220031880516e-17,-3.63346239176216e-18,-0.004444444552063942,-1.3552527156068805e-18,-0.0026666666381061077,-0.01666666753590107,0.003968254197388887,-0.007936508394777775,3.3610267347050637e-18,1.0124220031880516e-17,0.0019841270986944437,-3.2526065174565133e-19,2.710505431213761e-19,-2.168404344971009e-19,-4.607859233063394e-19,-2.7570934840836664e-18,0.0033333334140479565,-0.0016666667070239782,-0.0008333333535119891,-3.63346239176216e-18,-3.2526065174565133e-19,0.00041666667675599456,2.981555974335137e-19,2.710505431213761e-20,1.3552527156068805e-19,7.0001405278097625e-19,0.006666666828095913,-0.0033333334140479565,-2.168404344971009e-19,-0.004444444552063942,2.710505431213761e-19,2.981555974335137e-19,0.002222222276031971,4.0657581468206416e-20,-2.439454888092385e-19,-1.773885928487824e-18,0.0015151514671742916,7.589415207398531e-19,-0.0012987012742087245,-1.3552527156068805e-18,-2.168404344971009e-19,2.710505431213761e-20,4.0657581468206416e-20,0.00016233765927609056,1.2874900798265365e-19,1.7448303564418921e-19,0.004000000189989805,1.951563910473908e-18,-0.0010000000474974513,-0.0026666666381061077,-4.607859233063394e-19,1.3552527156068805e-19,-2.439454888092385e-19,1.2874900798265365e-19,0.0006666666595265269,5.176613629606253e-19,0.0055555556900799274,1.049035415923425e-17,-3.700743608425998e-18,-0.01666666753590107,-2.7570934840836664e-18,7.0001405278097625e-19,-1.773885928487824e-18,1.7448303564418921e-19,5.176613629606253e-19,0.0055555556900799274,5.0,9.0,5.0,0.11734487861394882,-0.03669841215014458,-0.023030303418636322,-0.03669841215014458,0.0031746032182127237,0.0026666666381061077,0.004444444552063942,0.001212121220305562,0.0026666666381061077,0.0031746032182127237,-0.03669841215014458,0.03739682585000992,0.0026666666381061077,0.004444444552063942,-0.0063492064364254475,-0.0013333333190530539,-0.002222222276031971,8.538092108323347e-19,4.336808689942018e-19,-5.854691731421724e-18,-0.023030303418636322,0.0026666666381061077,0.011645021848380566,0.0026666666381061077,1.870248747537495e-18,-0.0006666666595265269,5.759824041329242e-19,-0.0010389609960839152,-0.0006666666595265269,6.505213034913027e-19,-0.03669841215014458,0.004444444552063942,0.0026666666381061077,0.03739682585000992,-4.9873299934333204e-18,1.1926223897340549e-18,-0.002222222276031971,0.0,-0.0013333333190530539,-0.0063492064364254475,0.0031746032182127237,-0.0063492064364254475,1.870248747537495e-18,-4.9873299934333204e-18,0.0015873016091063619,-4.625646718160581e-19,3.2656976846259307e-19,-1.0672615135404184e-19,-1.3644354543819848e-19,1.2662002086182233e-18,0.0026666666381061077,-0.0013333333190530539,-0.0006666666595265269,1.1926223897340549e-18,-4.625646718160581e-19,0.00033333332976326346,8.131516293641283e-20,-5.3890451785137493e-20,-6.776263578034403e-20,-2.439454888092385e-19,0.004444444552063942,-0.002222222276031971,5.759824041329242e-19,-0.002222222276031971,3.2656976846259307e-19,8.131516293641283e-20,0.0011111111380159855,-1.0859657474008616e-19,1.0842021724855044e-19,1.0299920638612292e-18,0.001212121220305562,8.538092108323347e-19,-0.0010389609960839152,0.0,-1.0672615135404184e-19,-5.3890451785137493e-20,-1.0859657474008616e-19,0.0001298701245104894,-3.9639764805028326e-20,9.623543323533807e-20,0.0026666666381061077,4.336808689942018e-19,-0.0006666666595265269,-0.0013333333190530539,-1.3644354543819848e-19,-6.776263578034403e-20,1.0842021724855044e-19,-3.9639764805028326e-20,0.00033333332976326346,-3.3881317890172014e-19,0.0031746032182127237,-5.854691731421724e-18,6.505213034913027e-19,-0.0063492064364254475,1.2662002086182233e-18,-2.439454888092385e-19,1.0299920638612292e-18,9.623543323533807e-20,-3.3881317890172014e-19,0.0015873016091063619,5.0,9.0,6.0,0.10196729004383087,-0.031111111864447594,-0.01950937882065773,-0.027063492685556412,0.0026455025654286146,0.002222222276031971,0.0031746032182127237,0.001010101055726409,0.0019047618843615055,0.0019841270986944437,-0.031111111864447594,0.03142857179045677,0.002222222276031971,0.0031746032182127237,-0.005291005130857229,-0.0011111111380159855,-0.0015873016091063619,-1.6940658945086007e-20,-2.710505431213761e-20,-6.60318856114739e-35,-0.01950937882065773,0.002222222276031971,0.009783550165593624,0.0019047618843615055,0.0,-0.0005555555690079927,0.0,-0.0008658008882775903,-0.0004761904710903764,-1.750848534837916e-18,-0.027063492685556412,0.0031746032182127237,0.0019047618843615055,0.021738095209002495,0.0,-2.796636904965552e-20,-0.0012698412174358964,-9.75781955236954e-19,-0.0007619047537446022,-0.0029761905316263437,0.0026455025654286146,-0.005291005130857229,0.0,0.0,0.0013227512827143073,0.0,0.0,0.0,0.0,-0.0,0.002222222276031971,-0.0011111111380159855,-0.0005555555690079927,-2.796636904965552e-20,0.0,0.00027777778450399637,0.0,0.0,6.776263578034403e-21,1.6507971402868476e-35,0.0031746032182127237,-0.0015873016091063619,0.0,-0.0012698412174358964,0.0,0.0,0.0006349206087179482,0.0,0.0,-0.0,0.001010101055726409,-1.6940658945086007e-20,-0.0008658008882775903,-9.75781955236954e-19,0.0,0.0,0.0,0.00010822511103469878,6.776263578034403e-21,1.8881343569348464e-19,0.0019047618843615055,-2.710505431213761e-20,-0.0004761904710903764,-0.0007619047537446022,0.0,6.776263578034403e-21,0.0,6.776263578034403e-21,0.00019047618843615055,9.613644944281874e-20,0.0019841270986944437,-6.60318856114739e-35,-1.750848534837916e-18,-0.0029761905316263437,-0.0,1.6507971402868476e-35,-0.0,1.8881343569348464e-19,9.613644944281874e-20,0.0005952381179668009,5.0,9.0,7.0,0.0901820957660675,-0.027006803080439568,-0.01692640781402588,-0.020793650299310684,0.0022675737272948027,0.0019047618843615055,0.0023809524718672037,0.0008658008882775903,0.0014285714132711291,0.0013227512827143073,-0.027006803080439568,0.027108844369649887,0.0019047618843615055,0.0023809524718672037,-0.004535147454589605,-0.0009523809421807528,-0.0011904762359336019,3.049318610115481e-20,0.0,6.521667339151644e-35,-0.01692640781402588,0.0019047618843615055,0.008436920121312141,0.0014285714132711291,0.0,-0.0004761904710903764,0.0,-0.000742115022148937,-0.0003571428533177823,-1.1111396193260235e-18,-0.020793650299310684,0.0023809524718672037,0.0014285714132711291,0.013809523545205593,0.0,6.857389478169254e-21,-0.0007936508045531809,-1.0299920638612292e-18,-0.0004761904710903764,-0.0015873016091063619,0.0022675737272948027,-0.004535147454589605,0.0,0.0,0.0011337868636474013,0.0,0.0,0.0,0.0,-0.0,0.0019047618843615055,-0.0009523809421807528,-0.0004761904710903764,6.857389478169254e-21,0.0,0.0002380952355451882,0.0,-6.776263578034403e-21,-0.0,-1.630416834787911e-35,0.0023809524718672037,-0.0011904762359336019,0.0,-0.0007936508045531809,0.0,0.0,0.00039682540227659047,0.0,0.0,-0.0,0.0008658008882775903,3.049318610115481e-20,-0.000742115022148937,-1.0299920638612292e-18,0.0,-6.776263578034403e-21,0.0,9.276437776861712e-05,8.131516293641283e-20,1.1900968005287773e-19,0.0014285714132711291,0.0,-0.0003571428533177823,-0.0004761904710903764,0.0,-0.0,0.0,8.131516293641283e-20,0.0001190476177725941,5.302070691395493e-20,0.0013227512827143073,6.521667339151644e-35,-1.1111396193260235e-18,-0.0015873016091063619,-0.0,-1.630416834787911e-35,-0.0,1.1900968005287773e-19,5.302070691395493e-20,0.00026455026818439364,5.0,9.0,8.0,0.08085377514362335,-0.023862434551119804,-0.01494949497282505,-0.01648148149251938,0.0019841270986944437,0.0016666667070239782,0.0018518518190830946,0.0007575757335871458,0.0011111111380159855,0.0009259259095415473,-0.023862434551119804,0.023835979402065277,0.0016666667070239782,0.0018518518190830946,-0.003968254197388887,-0.0008333333535119891,-0.0009259259095415473,2.0328790734103208e-20,0.0,-2.710505431213761e-20,-0.01494949497282505,0.0016666667070239782,0.007417027372866869,0.0011111111380159855,0.0,-0.00041666667675599456,-1.3552527156068805e-20,-0.0006493506371043622,-0.00027777778450399637,-7.453889935837843e-19,-0.01648148149251938,0.0018518518190830946,0.0011111111380159855,0.009338624775409698,-0.0,4.824595950097673e-21,-0.0005291005363687873,-5.6055579590154e-19,-0.0003174603043589741,-0.0009259259095415473,0.0019841270986944437,-0.003968254197388887,0.0,-0.0,0.0009920635493472219,0.0,0.0,0.0,0.0,0.0,0.0016666667070239782,-0.0008333333535119891,-0.00041666667675599456,4.824595950097673e-21,0.0,0.00020833333837799728,5.736847423643931e-22,-6.776263578034403e-21,-1.8580748477348038e-21,4.3962782796747306e-23,0.0018518518190830946,-0.0009259259095415473,-1.3552527156068805e-20,-0.0005291005363687873,0.0,5.736847423643931e-22,0.00026455026818439364,0.0,3.3881317890172014e-21,1.3552527156068805e-20,0.0007575757335871458,2.0328790734103208e-20,-0.0006493506371043622,-5.6055579590154e-19,0.0,-6.776263578034403e-21,0.0,8.116882963804528e-05,3.3881317890172014e-21,8.131516293641283e-20,0.0011111111380159855,0.0,-0.00027777778450399637,-0.0003174603043589741,0.0,-1.8580748477348038e-21,3.3881317890172014e-21,3.3881317890172014e-21,7.936507608974352e-05,3.3881317890172014e-20,0.0009259259095415473,-2.710505431213761e-20,-7.453889935837843e-19,-0.0009259259095415473,0.0,4.3962782796747306e-23,1.3552527156068805e-20,8.131516293641283e-20,3.3881317890172014e-20,0.00013227513409219682,5.0,9.0,9.0,0.07328266650438309,-0.021375661715865135,-0.013387205079197884,-0.013387205079197884,0.0017636683769524097,0.00148148147854954,0.00148148147854954,0.0006734006456099451,0.0008888888987712562,0.0006734006456099451,-0.021375661715865135,0.021269841119647026,0.00148148147854954,0.00148148147854954,-0.0035273367539048195,-0.00074074073927477,-0.00074074073927477,-1.3552527156068805e-20,-6.776263578034403e-21,-2.710505431213761e-20,-0.013387205079197884,0.00148148147854954,0.0066176047548651695,0.0008888888987712562,0.0,-0.000370370369637385,6.776263578034403e-21,-0.0005772005533799529,-0.00022222222469281405,-5.55653613398821e-19,-0.013387205079197884,0.00148148147854954,0.0008888888987712562,0.0066176047548651695,-0.0,-3.3497194883475743e-22,-0.000370370369637385,-6.943081609155855e-19,-0.00022222222469281405,-0.0005772005533799529,0.0017636683769524097,-0.0035273367539048195,0.0,-0.0,0.0008818341884762049,0.0,0.0,0.0,0.0,0.0,0.00148148147854954,-0.00074074073927477,-0.000370370369637385,-3.3497194883475743e-22,0.0,0.0001851851848186925,-4.047689480899704e-22,0.0,1.705314419928328e-21,-3.6396691637027746e-22,0.00148148147854954,-0.00074074073927477,6.776263578034403e-21,-0.000370370369637385,0.0,-4.047689480899704e-22,0.0001851851848186925,-1.6940658945086007e-21,1.6940658945086007e-21,6.776263578034403e-21,0.0006734006456099451,-1.3552527156068805e-20,-0.0005772005533799529,-6.943081609155855e-19,0.0,0.0,-1.6940658945086007e-21,7.215006917249411e-05,6.776263578034403e-20,5.505714157152952e-20,0.0008888888987712562,-6.776263578034403e-21,-0.00022222222469281405,-0.00022222222469281405,0.0,1.705314419928328e-21,1.6940658945086007e-21,6.776263578034403e-20,5.555555617320351e-05,2.371692252312041e-20,0.0006734006456099451,-2.710505431213761e-20,-5.55653613398821e-19,-0.0005772005533799529,0.0,-3.6396691637027746e-22,6.776263578034403e-21,5.505714157152952e-20,2.371692252312041e-20,7.215006917249411e-05,5.0,9.0,10.0,0.06701298803091049,-0.01935930736362934,-0.012121211737394333,-0.011090909130871296,0.0015873016091063619,0.0013333333190530539,0.001212121220305562,0.000606060610152781,0.0007272727089002728,0.0005050505278632045,-0.01935930736362934,0.019203463569283485,0.0013333333190530539,0.001212121220305562,-0.0031746032182127237,-0.0006666666595265269,-0.000606060610152781,-1.3552527156068805e-20,0.0,-4.0657581468206416e-20,-0.012121211737394333,0.0013333333190530539,0.005974025931209326,0.0007272727089002728,0.0,-0.00033333332976326346,-1.3552527156068805e-20,-0.0005194804980419576,-0.0001818181772250682,-3.9979955110402976e-19,-0.011090909130871296,0.001212121220305562,0.0007272727089002728,0.004863636568188667,-0.0,-2.9857274041589766e-21,-0.000269360258243978,-5.311253817911509e-19,-0.0001616161607671529,-0.0003787878667935729,0.0015873016091063619,-0.0031746032182127237,0.0,-0.0,0.0007936508045531809,0.0,0.0,0.0,0.0,0.0,0.0013333333190530539,-0.0006666666595265269,-0.00033333332976326346,-2.9857274041589766e-21,0.0,0.00016666666488163173,5.888734828552929e-22,6.776263578034403e-21,-1.5948516788742955e-21,-9.645823855405061e-23,0.001212121220305562,-0.000606060610152781,-1.3552527156068805e-20,-0.000269360258243978,0.0,5.888734828552929e-22,0.000134680129121989,-4.235164736271502e-22,1.6940658945086007e-21,3.3881317890172014e-21,0.000606060610152781,-1.3552527156068805e-20,-0.0005194804980419576,-5.311253817911509e-19,0.0,6.776263578034403e-21,-4.235164736271502e-22,6.49350622552447e-05,4.0657581468206416e-20,4.0657581468206416e-20,0.0007272727089002728,0.0,-0.0001818181772250682,-0.0001616161607671529,0.0,-1.5948516788742955e-21,1.6940658945086007e-21,4.0657581468206416e-20,4.0404040191788226e-05,1.5246593050577406e-20,0.0005050505278632045,-4.0657581468206416e-20,-3.9979955110402976e-19,-0.0003787878667935729,0.0,-9.645823855405061e-23,3.3881317890172014e-21,4.0657581468206416e-20,1.5246593050577406e-20,4.2087540350621566e-05,5.0,9.0,11.0,0.061734627932310104,-0.017691196873784065,-0.01107438001781702,-0.009339549578726292,0.0014430014416575432,0.001212121220305562,0.001010101055726409,0.0005509642069227993,0.000606060610152781,0.0003885003970935941,-0.017691196873784065,0.017503608018159866,0.001212121220305562,0.001010101055726409,-0.0028860028833150864,-0.000606060610152781,-0.0005050505278632045,4.404571325722362e-20,6.776263578034403e-21,1.3552527156068805e-20,-0.01107438001781702,0.001212121220305562,0.005444706883281469,0.000606060610152781,0.0,-0.0003030303050763905,0.0,-0.0004722550220321864,-0.00015151515253819525,-2.981555974335137e-19,-0.009339549578726292,0.001010101055726409,0.000606060610152781,0.0036809116136282682,-0.0,2.0627701414957838e-21,-0.00020202020823489875,-2.99717159333649e-19,-0.00012121212057536468,-0.0002590002550277859,0.0014430014416575432,-0.0028860028833150864,0.0,-0.0,0.0007215007208287716,0.0,0.0,0.0,0.0,0.0,0.001212121220305562,-0.000606060610152781,-0.0003030303050763905,2.0627701414957838e-21,0.0,0.00015151515253819525,3.103050382567399e-22,-6.776263578034403e-21,-1.7619926497079412e-21,8.71403069427112e-22,0.001010101055726409,-0.0005050505278632045,0.0,-0.00020202020823489875,0.0,3.103050382567399e-22,0.00010101010411744937,-4.235164736271502e-22,0.0,0.0,0.0005509642069227993,4.404571325722362e-20,-0.0004722550220321864,-2.99717159333649e-19,0.0,-6.776263578034403e-21,-4.235164736271502e-22,5.90318777540233e-05,-1.6940658945086007e-21,3.176373552203626e-20,0.000606060610152781,6.776263578034403e-21,-0.00015151515253819525,-0.00012121212057536468,0.0,-1.7619926497079412e-21,0.0,-1.6940658945086007e-21,3.030303014384117e-05,8.470329472543003e-21,0.0003885003970935941,1.3552527156068805e-20,-2.981555974335137e-19,-0.0002590002550277859,0.0,8.71403069427112e-22,0.0,3.176373552203626e-20,8.470329472543003e-21,2.590002623037435e-05,5.0,9.0,12.0,0.057229068130254745,-0.01628815568983555,-0.010194250382483006,-0.007973138242959976,0.0013227512827143073,0.0011111111380159855,0.0008547008619643748,0.0005050505278632045,0.0005128204938955605,0.0003052503161597997,-0.01628815568983555,0.01608058623969555,0.0011111111380159855,0.0008547008619643748,-0.0026455025654286146,-0.0005555555690079927,-0.0004273504309821874,0.0,6.776263578034403e-21,0.0,-0.010194250382483006,0.0011111111380159855,0.0050016650930047035,0.0005128204938955605,0.0,-0.00027777778450399637,6.776263578034403e-21,-0.00043290044413879514,-0.00012820512347389013,-1.8973538018496328e-19,-0.007973138242959976,0.0008547008619643748,0.0005128204938955605,0.0028538128826767206,-0.0,-0.0,-0.0001554001501062885,-2.672436252978598e-19,-9.324009442934766e-05,-0.00018315018678549677,0.0013227512827143073,-0.0026455025654286146,0.0,-0.0,0.0006613756413571537,0.0,0.0,0.0,0.0,0.0,0.0011111111380159855,-0.0005555555690079927,-0.00027777778450399637,-0.0,0.0,0.00013888889225199819,0.0,0.0,0.0,0.0,0.0008547008619643748,-0.0004273504309821874,6.776263578034403e-21,-0.0001554001501062885,0.0,0.0,7.770007505314425e-05,0.0,-8.470329472543003e-22,0.0,0.0005050505278632045,0.0,-0.00043290044413879514,-2.672436252978598e-19,0.0,0.0,0.0,5.411255551734939e-05,-1.504632769052528e-36,2.4294876202050624e-20,0.0005128204938955605,6.776263578034403e-21,-0.00012820512347389013,-9.324009442934766e-05,0.0,0.0,-8.470329472543003e-22,-1.504632769052528e-36,2.3310023607336916e-05,-8.470329472543003e-22,0.0003052503161597997,0.0,-1.8973538018496328e-19,-0.00018315018678549677,0.0,0.0,0.0,2.4294876202050624e-20,-8.470329472543003e-22,1.6650015822960995e-05,5.0,9.0,13.0,0.05333777517080307,-0.015091574750840664,-0.009443889372050762,-0.006886446848511696,0.0012210012646391988,0.001025640987791121,0.0007326007471419871,0.0004662004648707807,0.00043956044828519225,0.00024420025874860585,-0.015091574750840664,0.014871794730424881,0.001025640987791121,0.0007326007471419871,-0.0024420025292783976,-0.0005128204938955605,-0.00036630037357099354,0.0,0.0,0.0,-0.009443889372050762,0.001025640987791121,0.00462537445127964,0.00043956044828519225,0.0,-0.00025641024694778025,3.3881317890172014e-21,-0.0003996003943029791,-0.00010989011207129806,-1.4568966692773966e-19,-0.006886446848511696,0.0007326007471419871,0.00043956044828519225,0.0022577422205358744,-0.0,-0.0,-0.00012210012937430292,-3.3696616214207165e-19,-7.326007471419871e-05,-0.00013320012658368796,0.0012210012646391988,-0.0024420025292783976,0.0,-0.0,0.0006105006323195994,0.0,0.0,0.0,0.0,0.0,0.001025640987791121,-0.0005128204938955605,-0.00025641024694778025,-0.0,0.0,0.00012820512347389013,0.0,0.0,0.0,0.0,0.0007326007471419871,-0.00036630037357099354,3.3881317890172014e-21,-0.00012210012937430292,0.0,0.0,6.105006468715146e-05,0.0,0.0,-1.6940658945086007e-21,0.0004662004648707807,0.0,-0.0003996003943029791,-3.3696616214207165e-19,0.0,0.0,0.0,4.995004928787239e-05,2.6625234626894302e-20,1.920543584140358e-20,0.00043956044828519225,0.0,-0.00010989011207129806,-7.326007471419871e-05,0.0,0.0,0.0,2.6625234626894302e-20,1.8315018678549677e-05,-1.6940658945086007e-21,0.00024420025874860585,0.0,-1.4568966692773966e-19,-0.00013320012658368796,0.0,0.0,-1.6940658945086007e-21,1.920543584140358e-20,-1.6940658945086007e-21,1.1100010851805564e-05,5.0,9.0,14.0,0.049942899495363235,-0.014058956876397133,-0.00879653636366129,-0.00600793631747365,0.0011337868636474013,0.0009523809421807528,0.0006349206087179482,0.00043290044413879514,0.0003809523768723011,0.00019841270113829523,-0.014058956876397133,0.01383219938725233,0.0009523809421807528,0.0006349206087179482,-0.0022675737272948027,-0.0004761904710903764,-0.0003174603043589741,0.0,0.0,-6.776263578034403e-21,-0.00879653636366129,0.0009523809421807528,0.004301793407648802,0.0003809523768723011,0.0,-0.0002380952355451882,3.3881317890172014e-21,-0.0003710575110744685,-9.523809421807528e-05,-1.2197274440461925e-19,-0.00600793631747365,0.0006349206087179482,0.0003809523768723011,0.0018171550473198295,-0.0,-0.0,-9.76800947682932e-05,-2.7994382038087513e-19,-5.860805686097592e-05,-9.920635056914762e-05,0.0011337868636474013,-0.0022675737272948027,0.0,-0.0,0.0005668934318237007,0.0,0.0,0.0,0.0,0.0,0.0009523809421807528,-0.0004761904710903764,-0.0002380952355451882,-0.0,0.0,0.0001190476177725941,0.0,0.0,0.0,0.0,0.0006349206087179482,-0.0003174603043589741,3.3881317890172014e-21,-9.76800947682932e-05,0.0,0.0,4.88400473841466e-05,0.0,-4.235164736271502e-22,0.0,0.00043290044413879514,0.0,-0.0003710575110744685,-2.7994382038087513e-19,0.0,0.0,0.0,4.638218888430856e-05,1.9778744707323855e-20,1.5448371805664926e-20,0.0003809523768723011,0.0,-9.523809421807528e-05,-5.860805686097592e-05,0.0,0.0,-4.235164736271502e-22,1.9778744707323855e-20,1.465201421524398e-05,0.0,0.00019841270113829523,-6.776263578034403e-21,-1.2197274440461925e-19,-9.920635056914762e-05,0.0,0.0,0.0,1.5448371805664926e-20,0.0,7.631258085893933e-06,5.0,9.0,15.0,0.046954985707998276,-0.01315873023122549,-0.008232323452830315,-0.005287581589072943,0.0010582010727375746,0.0008888888987712562,0.0005555555690079927,0.0004040404164697975,0.00033333332976326346,0.0001633986976230517,-0.01315873023122549,0.012928571552038193,0.0008888888987712562,0.0005555555690079927,-0.002116402145475149,-0.0004444444493856281,-0.00027777778450399637,-2.407412430484045e-35,3.3881317890172014e-21,0.0,-0.008232323452830315,0.0008888888987712562,0.00402056286111474,0.00033333332976326346,0.0,-0.00022222222469281405,3.3881317890172014e-21,-0.00034632033202797174,-8.333333244081587e-05,2.0667603913004928e-19,-0.005287581589072943,0.0005555555690079927,0.00033333332976326346,0.0014843783574178815,-0.0,-0.0,-7.936507608974352e-05,4.731677314017042e-19,-4.761904710903764e-05,-7.54147840780206e-05,0.0010582010727375746,-0.002116402145475149,0.0,-0.0,0.0005291005363687873,0.0,0.0,0.0,0.0,0.0,0.0008888888987712562,-0.0004444444493856281,-0.00022222222469281405,-0.0,0.0,0.00011111111234640703,0.0,0.0,0.0,0.0,0.0005555555690079927,-0.00027777778450399637,3.3881317890172014e-21,-7.936507608974352e-05,0.0,0.0,3.968253804487176e-05,0.0,0.0,0.0,0.0004040404164697975,-2.407412430484045e-35,-0.00034632033202797174,4.731677314017042e-19,0.0,0.0,0.0,4.329004150349647e-05,-2.999776307537237e-20,-2.5226905188419016e-20,0.00033333332976326346,3.3881317890172014e-21,-8.333333244081587e-05,-4.761904710903764e-05,0.0,0.0,0.0,-2.999776307537237e-20,1.190476177725941e-05,0.0,0.0001633986976230517,0.0,2.0667603913004928e-19,-7.54147840780206e-05,0.0,0.0,0.0,-2.5226905188419016e-20,0.0,5.386770226323279e-06,5.0,9.0,16.0,0.04430488497018814,-0.012366946786642075,-0.0077361855655908585,-0.004689542576670647,0.0009920635493472219,0.0008333333535119891,0.0004901961074210703,0.0003787878667935729,0.00029411763534881175,0.00013616557407658547,-0.012366946786642075,0.012135853990912437,0.0008333333535119891,0.0004901961074210703,-0.0019841270986944437,-0.00041666667675599456,-0.00024509805371053517,6.776263578034403e-20,9.486769009248164e-20,-8.555032767268433e-20,-0.0077361855655908585,0.0008333333535119891,0.003773873206228018,0.00029411763534881175,-6.776263578034403e-21,-0.00020833333837799728,5.759824041329242e-20,-0.0003246753185521811,-7.352940883720294e-05,-6.013933925505532e-20,-0.004689542576670647,0.0004901961074210703,0.00029411763534881175,0.0012282913085073233,-5.014435047745458e-19,-6.776263578034403e-20,-6.535947613883764e-05,-1.1519648082658485e-19,-3.9215687138494104e-05,-5.835667616338469e-05,0.0009920635493472219,-0.0019841270986944437,-6.776263578034403e-21,-5.014435047745458e-19,0.0004960317746736109,1.9463740759131737e-19,1.5937347023196004e-19,-1.813482179068988e-20,-2.2347437777333642e-20,1.9905274260476058e-20,0.0008333333535119891,-0.00041666667675599456,-0.00020833333837799728,-6.776263578034403e-20,1.9463740759131737e-19,0.00010416666918899864,1.6940658945086007e-21,1.4399560103323106e-20,8.470329472543003e-22,5.149145998767179e-21,0.0004901961074210703,-0.00024509805371053517,5.759824041329242e-20,-6.535947613883764e-05,1.5937347023196004e-19,1.6940658945086007e-21,3.267973806941882e-05,-5.929230630780102e-21,-3.3881317890172014e-21,-1.5024398928672452e-21,0.0003787878667935729,6.776263578034403e-20,-0.0003246753185521811,-1.1519648082658485e-19,-1.813482179068988e-20,1.4399560103323106e-20,-5.929230630780102e-21,4.058441481902264e-05,8.046812998915853e-21,5.774535739329182e-21,0.00029411763534881175,9.486769009248164e-20,-7.352940883720294e-05,-3.9215687138494104e-05,-2.2347437777333642e-20,8.470329472543003e-22,-3.3881317890172014e-21,8.046812998915853e-21,9.803921784623526e-06,5.433361904897096e-22,0.00013616557407658547,-8.555032767268433e-20,-6.013933925505532e-20,-5.835667616338469e-05,1.9905274260476058e-20,5.149145998767179e-21,-1.5024398928672452e-21,5.774535739329182e-21,5.433361904897096e-22,3.890444986609509e-06,5.0,10.0,3.0,0.15467531979084015,-0.052077922970056534,-0.029999999329447746,-0.07454545795917511,0.004761904943734407,0.003636363660916686,0.009999999776482582,0.0015151514671742916,0.005454545374959707,0.009999999776482582,-0.052077922970056534,0.05461039021611214,0.003636363660916686,0.009999999776482582,-0.009523809887468815,-0.001818181830458343,-0.004999999888241291,-3.465773236058113e-18,-5.800481622797449e-18,-5.5077470362263625e-17,-0.029999999329447746,0.003636363660916686,0.013863636180758476,0.005454545374959707,-8.496063061399528e-18,-0.000808080832939595,-1.5178830414797062e-18,-0.0011363636003807187,-0.001212121220305562,1.3444106938820255e-17,-0.07454545795917511,0.009999999776482582,0.005454545374959707,0.17454545199871063,-4.801824484028708e-17,3.6089571661152765e-18,-0.009999999776482582,-6.624662051268747e-20,-0.005454545374959707,-0.05999999865889549,0.004761904943734407,-0.009523809887468815,-8.496063061399528e-18,-4.801824484028708e-17,0.0023809524718672037,7.318364664277155e-19,3.232135244861898e-18,5.692061405548898e-19,1.7971001319936652e-18,1.630577300953318e-17,0.003636363660916686,-0.001818181830458343,-0.000808080832939595,3.6089571661152765e-18,7.318364664277155e-19,0.0004040404164697975,1.76634416095166e-19,1.4907779871675686e-19,2.3877943245994086e-20,-1.944053937692539e-18,0.009999999776482582,-0.004999999888241291,-1.5178830414797062e-18,-0.009999999776482582,3.232135244861898e-18,1.76634416095166e-19,0.004999999888241291,2.660030611741834e-19,-1.463672932855431e-18,-8.673617379884035e-19,0.0015151514671742916,-3.465773236058113e-18,-0.0011363636003807187,-6.624662051268747e-20,5.692061405548898e-19,1.4907779871675686e-19,2.660030611741834e-19,0.00012626263196580112,3.828858789264283e-20,-3.075224614430935e-19,0.005454545374959707,-5.800481622797449e-18,-0.001212121220305562,-0.005454545374959707,1.7971001319936652e-18,2.3877943245994086e-20,-1.463672932855431e-18,3.828858789264283e-20,0.001212121220305562,-4.9873299934333204e-18,0.009999999776482582,-5.5077470362263625e-17,1.3444106938820255e-17,-0.05999999865889549,1.630577300953318e-17,-1.944053937692539e-18,-8.673617379884035e-19,-3.075224614430935e-19,-4.9873299934333204e-18,0.029999999329447746,5.0,10.0,4.0,0.12668831646442413,-0.04055844247341156,-0.023318182677030563,-0.04772727191448212,0.0035714285913854837,0.0027272726874798536,0.006000000052154064,0.0011363636003807187,0.0032727273646742105,0.004999999888241291,-0.04055844247341156,0.04170779138803482,0.0027272726874798536,0.006000000052154064,-0.0071428571827709675,-0.0013636363437399268,-0.003000000026077032,-2.2768245622195593e-18,-5.421010862427522e-18,-2.3085619933981164e-17,-0.023318182677030563,0.0027272726874798536,0.010579545050859451,0.0032727273646742105,-5.854691731421724e-18,-0.000606060610152781,-2.168404344971009e-18,-0.0008522727293893695,-0.0007272727089002728,-2.664535282261433e-18,-0.04772727191448212,0.006000000052154064,0.0032727273646742105,0.06681818515062332,-2.5041266807958634e-17,-5.022900414134326e-18,-0.004000000189989805,-1.3552527156068805e-19,-0.0021818182431161404,-0.014999999664723873,0.0035714285913854837,-0.0071428571827709675,-5.854691731421724e-18,-2.5041266807958634e-17,0.0017857142956927419,4.87890977618477e-19,2.846030702774449e-18,3.9302328752599536e-19,7.860465750519907e-19,4.782816204424485e-18,0.0027272726874798536,-0.0013636363437399268,-0.000606060610152781,-5.022900414134326e-18,4.87890977618477e-19,0.0003030303050763905,4.607859233063394e-19,7.453889935837843e-20,2.303929616531697e-19,9.342486996927836e-19,0.006000000052154064,-0.003000000026077032,-2.168404344971009e-18,-0.004000000189989805,2.846030702774449e-18,4.607859233063394e-19,0.0020000000949949026,1.1519648082658485e-19,2.981555974335137e-19,-1.6375513640953293e-18,0.0011363636003807187,-2.2768245622195593e-18,-0.0008522727293893695,-1.3552527156068805e-19,3.9302328752599536e-19,7.453889935837843e-20,1.1519648082658485e-19,9.469696669839323e-05,-1.3552527156068805e-20,1.0756325490277124e-20,0.0032727273646742105,-5.421010862427522e-18,-0.0007272727089002728,-0.0021818182431161404,7.860465750519907e-19,2.303929616531697e-19,2.981555974335137e-19,-1.3552527156068805e-20,0.0004848484823014587,-3.3758052469265127e-19,0.004999999888241291,-2.3085619933981164e-17,-2.664535282261433e-18,-0.014999999664723873,4.782816204424485e-18,9.342486996927836e-19,-1.6375513640953293e-18,1.0756325490277124e-20,-3.3758052469265127e-19,0.004999999888241291,5.0,10.0,5.0,0.10742857307195663,-0.03324675187468529,-0.019090909510850906,-0.03324675187468529,0.0028571428265422583,0.0021818182431161404,0.004000000189989805,0.0009090909152291715,0.0021818182431161404,0.0028571428265422583,-0.03324675187468529,0.033766232430934906,0.0021818182431161404,0.004000000189989805,-0.0057142856530845165,-0.0010909091215580702,-0.0020000000949949026,-2.846030702774449e-18,-2.168404344971009e-19,4.87890977618477e-18,-0.019090909510850906,0.0021818182431161404,0.0085606062784791,0.0021818182431161404,-4.397795062144327e-18,-0.0004848484823014587,-1.3078188705606397e-18,-0.0006818181718699634,-0.0004848484823014587,2.6020852139652106e-18,-0.03324675187468529,0.004000000189989805,0.0021818182431161404,0.033766232430934906,1.4094628242311558e-18,2.168404344971009e-18,-0.0020000000949949026,-2.168404344971009e-19,-0.0010909091215580702,-0.0057142856530845165,0.0028571428265422583,-0.0057142856530845165,-4.397795062144327e-18,1.4094628242311558e-18,0.0014285714132711291,-8.318982077633509e-21,1.5403250718837293e-19,4.506215279392878e-19,6.722667444219795e-20,-4.849382530243924e-19,0.0021818182431161404,-0.0010909091215580702,-0.0004848484823014587,2.168404344971009e-18,-8.318982077633509e-21,0.00024242424115072936,-8.131516293641283e-20,1.1516316095753544e-19,-6.776263578034403e-21,-4.675621868843738e-19,0.004000000189989805,-0.0020000000949949026,-1.3078188705606397e-18,-0.0020000000949949026,1.5403250718837293e-19,-8.131516293641283e-20,0.0010000000474974513,1.533412039161288e-19,4.0657581468206416e-20,-4.0657581468206416e-19,0.0009090909152291715,-2.846030702774449e-18,-0.0006818181718699634,-2.168404344971009e-19,4.506215279392878e-19,1.1516316095753544e-19,1.533412039161288e-19,7.575757626909763e-05,4.1560623590218506e-20,-8.91048520117954e-20,0.0021818182431161404,-2.168404344971009e-19,-0.0004848484823014587,-0.0010909091215580702,6.722667444219795e-20,-6.776263578034403e-21,4.0657581468206416e-20,4.1560623590218506e-20,0.00024242424115072936,-4.2690460541616737e-19,0.0028571428265422583,4.87890977618477e-18,2.6020852139652106e-18,-0.0057142856530845165,-4.849382530243924e-19,-4.675621868843738e-19,-4.0657581468206416e-19,-8.91048520117954e-20,-4.2690460541616737e-19,0.0014285714132711291,5.0,10.0,6.0,0.09331168979406357,-0.02818181738257408,-0.016168830916285515,-0.024512987583875656,0.0023809524718672037,0.001818181830458343,0.0028571428265422583,0.0007575757335871458,0.0015584415523335338,0.0017857142956927419,-0.02818181738257408,0.02837662398815155,0.001818181830458343,0.0028571428265422583,-0.004761904943734407,-0.0009090909152291715,-0.0014285714132711291,-1.5585406229479126e-18,-2.4936649967166602e-18,-3.7947076036992655e-18,-0.016168830916285515,0.001818181830458343,0.007191558368504047,0.0015584415523335338,-4.47911022508074e-18,-0.0004040404164697975,-1.4162390878091902e-18,-0.0005681818001903594,-0.00034632033202797174,-7.047314121155779e-19,-0.024512987583875656,0.0028571428265422583,0.0015584415523335338,0.019626623019576073,-1.0191500421363742e-17,1.1384122811097797e-18,-0.0011428571306169033,-9.75781955236954e-19,-0.0006233766325749457,-0.0026785715017467737,0.0023809524718672037,-0.004761904943734407,-4.47911022508074e-18,-1.0191500421363742e-17,0.0011904762359336019,3.6161593760099874e-19,1.1493896916213943e-18,2.405573570202213e-19,5.077127583358735e-19,1.0478401399382859e-18,0.001818181830458343,-0.0009090909152291715,-0.0004040404164697975,1.1384122811097797e-18,3.6161593760099874e-19,0.00020202020823489875,-1.2874900798265365e-19,5.427751091950122e-20,1.6940658945086007e-20,-1.9651164376299768e-19,0.0028571428265422583,-0.0014285714132711291,-1.4162390878091902e-18,-0.0011428571306169033,1.1493896916213943e-18,-1.2874900798265365e-19,0.0005714285653084517,1.2107835536729629e-19,1.8295911660692887e-19,2.303929616531697e-19,0.0007575757335871458,-1.5585406229479126e-18,-0.0005681818001903594,-9.75781955236954e-19,2.405573570202213e-19,5.427751091950122e-20,1.2107835536729629e-19,6.313131598290056e-05,3.422510513874156e-20,1.0150078033871048e-19,0.0015584415523335338,-2.4936649967166602e-18,-0.00034632033202797174,-0.0006233766325749457,5.077127583358735e-19,1.6940658945086007e-20,1.8295911660692887e-19,3.422510513874156e-20,0.00013852813572157174,1.3891340334970526e-19,0.0017857142956927419,-3.7947076036992655e-18,-7.047314121155779e-19,-0.0026785715017467737,1.0478401399382859e-18,-1.9651164376299768e-19,2.303929616531697e-19,1.0150078033871048e-19,1.3891340334970526e-19,0.0005357142654247582,5.0,10.0,7.0,0.08250154554843903,-0.024461966007947922,-0.014025974087417126,-0.018831169232726097,0.0020408162381500006,0.0015584415523335338,0.002142857061699033,0.0006493506371043622,0.0011688311351463199,0.0011904762359336019,-0.024461966007947922,0.024475881829857826,0.0015584415523335338,0.002142857061699033,-0.004081632476300001,-0.0007792207761667669,-0.0010714285308495164,3.3881317890172014e-21,0.0,-0.0,-0.014025974087417126,0.0015584415523335338,0.0062012989073991776,0.0011688311351463199,0.0,-0.00034632033202797174,0.0,-0.0004870129923801869,-0.0002597402490209788,-0.0,-0.018831169232726097,0.002142857061699033,0.0011688311351463199,0.01246753241866827,0.0,-3.648164122801174e-22,-0.0007142857066355646,0.0,-0.00038961038808338344,-0.0014285714132711291,0.0020408162381500006,-0.004081632476300001,0.0,0.0,0.0010204081190750003,0.0,0.0,0.0,0.0,-0.0,0.0015584415523335338,-0.0007792207761667669,-0.00034632033202797174,-3.648164122801174e-22,0.0,0.00017316016601398587,0.0,6.776263578034403e-21,-1.6940658945086007e-21,-0.0,0.002142857061699033,-0.0010714285308495164,0.0,-0.0007142857066355646,0.0,0.0,0.0003571428533177823,0.0,0.0,-0.0,0.0006493506371043622,3.3881317890172014e-21,-0.0004870129923801869,0.0,0.0,6.776263578034403e-21,0.0,5.411255551734939e-05,0.0,-0.0,0.0011688311351463199,0.0,-0.0002597402490209788,-0.00038961038808338344,0.0,-1.6940658945086007e-21,0.0,0.0,8.658008300699294e-05,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,5.0,10.0,8.0,0.07395021617412567,-0.021612554788589478,-0.012386363931000233,-0.014924242161214352,0.0017857142956927419,0.0013636363437399268,0.0016666667070239782,0.0005681818001903594,0.0009090909152291715,0.0008333333535119891,-0.021612554788589478,0.02152056246995926,0.0013636363437399268,0.0016666667070239782,-0.0035714285913854837,-0.0006818181718699634,-0.0008333333535119891,3.3881317890172014e-21,0.0,-0.0,-0.012386363931000233,0.0013636363437399268,0.005451388657093048,0.0009090909152291715,0.0,-0.0003030303050763905,0.0,-0.00042613636469468474,-0.00020202020823489875,-0.0,-0.014924242161214352,0.0016666667070239782,0.0009090909152291715,0.008430736139416695,0.0,2.522366714790591e-21,-0.0004761904710903764,-1.3552527156068805e-20,-0.0002597402490209788,-0.0008333333535119891,0.0017857142956927419,-0.0035714285913854837,0.0,0.0,0.0008928571478463709,0.0,0.0,0.0,0.0,-0.0,0.0013636363437399268,-0.0006818181718699634,-0.0003030303050763905,2.522366714790591e-21,0.0,0.00015151515253819525,0.0,3.3881317890172014e-21,0.0,-0.0,0.0016666667070239782,-0.0008333333535119891,0.0,-0.0004761904710903764,0.0,0.0,0.0002380952355451882,0.0,0.0,-0.0,0.0005681818001903594,3.3881317890172014e-21,-0.00042613636469468474,-1.3552527156068805e-20,0.0,3.3881317890172014e-21,0.0,4.734848334919661e-05,3.3881317890172014e-21,-0.0,0.0009090909152291715,0.0,-0.00020202020823489875,-0.0002597402490209788,0.0,0.0,0.0,3.3881317890172014e-21,5.77200589759741e-05,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001190476177725941,5.0,10.0,9.0,0.06701298803091049,-0.01935930736362934,-0.011090909130871296,-0.012121211737394333,0.0015873016091063619,0.001212121220305562,0.0013333333190530539,0.0005050505278632045,0.0007272727089002728,0.000606060610152781,-0.01935930736362934,0.019203463569283485,0.001212121220305562,0.0013333333190530539,-0.0031746032182127237,-0.000606060610152781,-0.0006666666595265269,-3.049318610115481e-20,3.3881317890172014e-20,0.0,-0.011090909130871296,0.001212121220305562,0.004863636568188667,0.0007272727089002728,0.0,-0.000269360258243978,2.710505431213761e-20,-0.0003787878667935729,-0.0001616161607671529,6.776263578034403e-20,-0.012121211737394333,0.0013333333190530539,0.0007272727089002728,0.005974025931209326,-0.0,-0.0,-0.00033333332976326346,1.084891701035282e-21,-0.0001818181772250682,-0.0005194804980419576,0.0015873016091063619,-0.0031746032182127237,0.0,-0.0,0.0007936508045531809,0.0,0.0,0.0,0.0,0.0,0.001212121220305562,-0.000606060610152781,-0.000269360258243978,-0.0,0.0,0.000134680129121989,-4.235164736271502e-22,0.0,0.0,2.5611604959722086e-22,0.0013333333190530539,-0.0006666666595265269,2.710505431213761e-20,-0.00033333332976326346,0.0,-4.235164736271502e-22,0.00016666666488163173,-8.470329472543003e-22,-8.470329472543003e-21,3.3881317890172014e-21,0.0005050505278632045,-3.049318610115481e-20,-0.0003787878667935729,1.084891701035282e-21,0.0,0.0,-8.470329472543003e-22,4.2087540350621566e-05,1.6940658945086007e-21,-1.6940658945086007e-21,0.0007272727089002728,3.3881317890172014e-20,-0.0001616161607671529,-0.0001818181772250682,0.0,0.0,-8.470329472543003e-21,1.6940658945086007e-21,4.0404040191788226e-05,-1.6940658945086007e-20,0.000606060610152781,0.0,6.776263578034403e-20,-0.0005194804980419576,0.0,2.5611604959722086e-22,3.3881317890172014e-21,-1.6940658945086007e-21,-1.6940658945086007e-20,6.49350622552447e-05,5.0,10.0,10.0,0.06127036735415459,-0.01753246784210205,-0.010041322559118271,-0.010041322559118271,0.0014285714132711291,0.0010909091215580702,0.0010909091215580702,0.00045454545761458576,0.0005950413178652525,0.00045454545761458576,-0.01753246784210205,0.01733766309916973,0.0010909091215580702,0.0010909091215580702,-0.0028571428265422583,-0.0005454545607790351,-0.0005454545607790351,3.3881317890172014e-21,1.3552527156068805e-20,-1.3552527156068805e-20,-0.010041322559118271,0.0010909091215580702,0.004390495829284191,0.0005950413178652525,0.0,-0.00024242424115072936,-6.776263578034403e-21,-0.0003409090859349817,-0.00013223140558693558,-6.776263578034403e-21,-0.010041322559118271,0.0010909091215580702,0.0005950413178652525,0.004390495829284191,-0.0,7.616296186237546e-21,-0.00024242424115072936,2.6324724110880336e-21,-0.00013223140558693558,-0.0003409090859349817,0.0014285714132711291,-0.0028571428265422583,0.0,-0.0,0.0007142857066355646,0.0,0.0,0.0,0.0,0.0,0.0010909091215580702,-0.0005454545607790351,-0.00024242424115072936,7.616296186237546e-21,0.0,0.00012121212057536468,2.9774491877497305e-24,-3.3881317890172014e-21,-1.0764178455438193e-21,-1.2740685483123032e-22,0.0010909091215580702,-0.0005454545607790351,-6.776263578034403e-21,-0.00024242424115072936,0.0,2.9774491877497305e-24,0.00012121212057536468,4.235164736271502e-22,0.0,0.0,0.00045454545761458576,3.3881317890172014e-21,-0.0003409090859349817,2.6324724110880336e-21,0.0,-3.3881317890172014e-21,4.235164736271502e-22,3.787878813454881e-05,-1.6940658945086007e-21,4.235164736271502e-22,0.0005950413178652525,1.3552527156068805e-20,-0.00013223140558693558,-0.00013223140558693558,0.0,-1.0764178455438193e-21,0.0,-1.6940658945086007e-21,2.938475699920673e-05,0.0,0.00045454545761458576,-1.3552527156068805e-20,-6.776263578034403e-21,-0.0003409090859349817,0.0,-1.2740685483123032e-22,0.0,4.235164736271502e-22,0.0,3.787878813454881e-05,5.0,10.0,11.0,0.05643719807267189,-0.016021251678466797,-0.009173553436994553,-0.008455181494355202,0.0012987012742087245,0.0009917354909703135,0.0009090909152291715,0.0004132231406401843,0.0004958677454851568,0.00034965036320500076,-0.016021251678466797,0.015802834182977676,0.0009917354909703135,0.0009090909152291715,-0.002597402548417449,-0.0004958677454851568,-0.00045454545761458576,-1.6940658945086007e-20,-3.3881317890172014e-20,0.0,-0.009173553436994553,0.0009917354909703135,0.0040013776160776615,0.0004958677454851568,0.0,-0.00022038567112758756,-3.3881317890172014e-20,-0.0003099173482041806,-0.00011019283556379378,-4.0657581468206416e-20,-0.008455181494355202,0.0009090909152291715,0.0004958677454851568,0.003322737757116556,-0.0,-5.764031191784612e-21,-0.0001818181772250682,-1.3410195545159998e-20,-9.917355055222288e-05,-0.00023310023243539035,0.0012987012742087245,-0.002597402548417449,0.0,-0.0,0.0006493506371043622,0.0,0.0,0.0,0.0,0.0,0.0009917354909703135,-0.0004958677454851568,-0.00022038567112758756,-5.764031191784612e-21,0.0,0.00011019283556379378,3.1540426039163747e-22,0.0,1.7203868633891367e-22,-8.159070960198228e-23,0.0009090909152291715,-0.00045454545761458576,-3.3881317890172014e-20,-0.0001818181772250682,0.0,3.1540426039163747e-22,9.09090886125341e-05,4.235164736271502e-22,6.776263578034403e-21,0.0,0.0004132231406401843,-1.6940658945086007e-20,-0.0003099173482041806,-1.3410195545159998e-20,0.0,0.0,4.235164736271502e-22,3.443526293267496e-05,8.470329472543003e-22,0.0,0.0004958677454851568,-3.3881317890172014e-20,-0.00011019283556379378,-9.917355055222288e-05,0.0,1.7203868633891367e-22,6.776263578034403e-21,8.470329472543003e-22,2.2038568204152398e-05,9.317362419797304e-21,0.00034965036320500076,0.0,-4.0657581468206416e-20,-0.00023310023243539035,0.0,-8.159070960198228e-23,0.0,0.0,9.317362419797304e-21,2.3310023607336916e-05,5.0,10.0,12.0,0.052312687039375305,-0.014750249683856964,-0.008444055914878845,-0.007217782083898783,0.0011904762359336019,0.0009090909152291715,0.0007692307699471712,0.0003787878667935729,0.00041958040674217045,0.00027472528745420277,-0.014750249683856964,0.014517981559038162,0.0009090909152291715,0.0007692307699471712,-0.0023809524718672037,-0.00045454545761458576,-0.0003846153849735856,1.0164395367051604e-20,-6.776263578034403e-21,1.3552527156068805e-20,-0.008444055914878845,0.0009090909152291715,0.003675699234008789,0.00041958040674217045,0.0,-0.00020202020823489875,-3.3881317890172014e-21,-0.0002840909000951797,-9.324009442934766e-05,-3.7608262858090935e-19,-0.007217782083898783,0.0007692307699471712,0.00041958040674217045,0.0025760603602975607,-0.0,1.714273456430938e-21,-0.0001398601452820003,-6.0537967932002285e-19,-7.628734601894394e-05,-0.00016483516083098948,0.0011904762359336019,-0.0023809524718672037,0.0,-0.0,0.0005952381179668009,0.0,0.0,0.0,0.0,0.0,0.0009090909152291715,-0.00045454545761458576,-0.00020202020823489875,1.714273456430938e-21,0.0,0.00010101010411744937,1.186864455970062e-22,0.0,-5.0766430425239895e-23,-4.705153674779269e-22,0.0007692307699471712,-0.0003846153849735856,-3.3881317890172014e-21,-0.0001398601452820003,0.0,1.186864455970062e-22,6.993007264100015e-05,0.0,4.235164736271502e-22,-1.6940658945086007e-21,0.0003787878667935729,1.0164395367051604e-20,-0.0002840909000951797,-6.0537967932002285e-19,0.0,0.0,0.0,3.156565799145028e-05,3.049318610115481e-20,4.2351647362715017e-20,0.00041958040674217045,-6.776263578034403e-21,-9.324009442934766e-05,-7.628734601894394e-05,0.0,-5.0766430425239895e-23,4.235164736271502e-22,3.049318610115481e-20,1.695274477242492e-05,-8.470329472543003e-22,0.00027472528745420277,1.3552527156068805e-20,-3.7608262858090935e-19,-0.00016483516083098948,0.0,-4.705153674779269e-22,-1.6940658945086007e-21,4.2351647362715017e-20,-8.470329472543003e-22,1.4985014786361717e-05,5.0,10.0,13.0,0.04875124990940094,-0.013666333630681038,-0.00782217737287283,-0.006233766209334135,0.001098901149816811,0.0008391608134843409,0.0006593406433239579,0.00034965036320500076,0.00035964036942459643,0.00021978022414259613,-0.013666333630681038,0.013426573015749454,0.0008391608134843409,0.0006593406433239579,-0.002197802299633622,-0.00041958040674217045,-0.00032967032166197896,-0.0,4.404571325722362e-20,-1.3552527156068805e-20,-0.00782217737287283,0.0008391608134843409,0.0033991008531302214,0.00035964036942459643,0.0,-0.00018648018885869533,4.0657581468206416e-20,-0.00026223776512779295,-7.992007886059582e-05,4.743384504624082e-20,-0.006233766209334135,0.0006593406433239579,0.00035964036942459643,0.002037961967289448,-0.0,-0.0,-0.00010989011207129806,-0.0,-5.994005914544687e-05,-0.00011988011829089373,0.001098901149816811,-0.002197802299633622,0.0,-0.0,0.0005494505749084055,0.0,0.0,0.0,0.0,0.0,0.0008391608134843409,-0.00041958040674217045,-0.00018648018885869533,-0.0,0.0,9.324009442934766e-05,0.0,0.0,0.0,0.0,0.0006593406433239579,-0.00032967032166197896,4.0657581468206416e-20,-0.00010989011207129806,0.0,0.0,5.494505603564903e-05,0.0,-8.046812998915853e-21,8.470329472543003e-22,0.00034965036320500076,-0.0,-0.00026223776512779295,-0.0,0.0,0.0,0.0,2.9137529054423794e-05,0.0,0.0,0.00035964036942459643,4.404571325722362e-20,-7.992007886059582e-05,-5.994005914544687e-05,0.0,0.0,-8.046812998915853e-21,0.0,1.3320013749762438e-05,-8.470329472543003e-21,0.00021978022414259613,-1.3552527156068805e-20,4.743384504624082e-20,-0.00011988011829089373,0.0,0.0,8.470329472543003e-22,0.0,-8.470329472543003e-21,9.990009857574478e-06,5.0,10.0,14.0,0.04564471170306206,-0.012730983085930347,-0.007285714149475098,-0.005438311491161585,0.0010204081190750003,0.0007792207761667669,0.0005714285653084517,0.0003246753185521811,0.00031168831628747284,0.00017857142665889114,-0.012730983085930347,0.012487940490245819,0.0007792207761667669,0.0005714285653084517,-0.0020408162381500006,-0.00038961038808338344,-0.0002857142826542258,-0.0,6.776263578034403e-21,0.0,-0.007285714149475098,0.0007792207761667669,0.0031612555030733347,0.00031168831628747284,0.0,-0.00017316016601398587,6.776263578034403e-21,-0.00024350649619009346,-6.926406786078587e-05,6.776263578034403e-21,-0.005438311491161585,0.0005714285653084517,0.00031168831628747284,0.0016402347246184945,-0.0,-0.0,-8.791208529146388e-05,-0.0,-4.795204949914478e-05,-8.928571332944557e-05,0.0010204081190750003,-0.0020408162381500006,0.0,-0.0,0.0005102040595375001,0.0,0.0,0.0,0.0,0.0,0.0007792207761667669,-0.00038961038808338344,-0.00017316016601398587,-0.0,0.0,8.658008300699294e-05,0.0,0.0,0.0,0.0,0.0005714285653084517,-0.0002857142826542258,6.776263578034403e-21,-8.791208529146388e-05,0.0,0.0,4.395604264573194e-05,0.0,-1.2705494208814505e-21,-8.470329472543003e-22,0.0003246753185521811,-0.0,-0.00024350649619009346,-0.0,0.0,0.0,0.0,2.7056277758674696e-05,0.0,0.0,0.00031168831628747284,6.776263578034403e-21,-6.926406786078587e-05,-4.795204949914478e-05,0.0,0.0,-1.2705494208814505e-21,0.0,1.065601099980995e-05,-1.2705494208814505e-21,0.00017857142665889114,0.0,6.776263578034403e-21,-8.928571332944557e-05,0.0,0.0,-8.470329472543003e-22,0.0,-1.2705494208814505e-21,6.868132004456129e-06,5.0,10.0,15.0,0.04291100054979324,-0.011915584094822407,-0.006818181835114956,-0.0047860960476100445,0.0009523809421807528,0.0007272727089002728,0.0005000000237487257,0.0003030303050763905,0.00027272728038951755,0.00014705881767440587,-0.011915584094822407,0.01167207770049572,0.0007272727089002728,0.0005000000237487257,-0.0019047618843615055,-0.0003636363544501364,-0.0002500000118743628,-0.0,1.6940658945086007e-21,1.0164395367051604e-20,-0.006818181835114956,0.0007272727089002728,0.0029545454308390617,0.00027272728038951755,0.0,-0.0001616161607671529,3.3881317890172014e-21,-0.00022727272880729288,-6.060606028768234e-05,0.0,-0.0047860960476100445,0.0005000000237487257,0.00027272728038951755,0.001339836628176272,-0.0,-0.0,-7.142857066355646e-05,-0.0,-3.8961039535934106e-05,-6.787330494262278e-05,0.0009523809421807528,-0.0019047618843615055,0.0,-0.0,0.0004761904710903764,0.0,0.0,0.0,0.0,0.0,0.0007272727089002728,-0.0003636363544501364,-0.0001616161607671529,-0.0,0.0,8.080808038357645e-05,0.0,0.0,0.0,0.0,0.0005000000237487257,-0.0002500000118743628,3.3881317890172014e-21,-7.142857066355646e-05,0.0,0.0,3.571428533177823e-05,0.0,0.0,-8.470329472543003e-22,0.0003030303050763905,-0.0,-0.00022727272880729288,-0.0,0.0,0.0,0.0,2.5252526029362343e-05,0.0,0.0,0.00027272728038951755,1.6940658945086007e-21,-6.060606028768234e-05,-3.8961039535934106e-05,0.0,0.0,0.0,0.0,8.658008482598234e-06,4.235164736271502e-22,0.00014705881767440587,1.0164395367051604e-20,0.0,-6.787330494262278e-05,0.0,0.0,-8.470329472543003e-22,0.0,4.235164736271502e-22,4.848092885367805e-06,5.0,10.0,16.0,0.040486693382263184,-0.011198434047400951,-0.006407085340470076,-0.004244652576744556,0.0008928571478463709,0.0006818181718699634,0.00044117646757513285,0.0002840909000951797,0.00024064170429483056,0.00012254902685526758,-0.011198434047400951,0.010956360027194023,0.0006818181718699634,0.00044117646757513285,-0.0017857142956927419,-0.0003409090859349817,-0.00022058823378756642,-0.0,1.1858461261560205e-20,6.776263578034403e-21,-0.006407085340470076,0.0006818181718699634,0.0027732285670936108,0.00024064170429483056,0.0,-0.00015151515253819525,1.0164395367051604e-20,-0.00021306818234734237,-5.347593469195999e-05,1.0164395367051604e-20,-0.004244652576744556,0.00044117646757513285,0.00024064170429483056,0.0011086707236245275,-0.0,-0.0,-5.8823530707741156e-05,-0.0,-3.208556154277176e-05,-5.25210089108441e-05,0.0008928571478463709,-0.0017857142956927419,0.0,-0.0,0.00044642857392318547,0.0,0.0,0.0,0.0,0.0,0.0006818181718699634,-0.0003409090859349817,-0.00015151515253819525,-0.0,0.0,7.575757626909763e-05,0.0,0.0,0.0,0.0,0.00044117646757513285,-0.00022058823378756642,1.0164395367051604e-20,-5.8823530707741156e-05,0.0,0.0,2.9411765353870578e-05,0.0,-1.4823076576950256e-21,-4.235164736271502e-22,0.0002840909000951797,-0.0,-0.00021306818234734237,-0.0,0.0,0.0,0.0,2.3674241674598306e-05,0.0,0.0,0.00024064170429483056,1.1858461261560205e-20,-5.347593469195999e-05,-3.208556154277176e-05,0.0,0.0,-1.4823076576950256e-21,0.0,7.130124686227646e-06,-1.2705494208814505e-21,0.00012254902685526758,6.776263578034403e-21,1.0164395367051604e-20,-5.25210089108441e-05,0.0,0.0,-4.235164736271502e-22,0.0,-1.2705494208814505e-21,3.5014006698474986e-06,5.0,11.0,3.0,0.14280718564987183,-0.0476190485060215,-0.025291375815868378,-0.06818182021379471,0.0043290043249726295,0.0030303029343485832,0.00909090880304575,0.0011655011912807822,0.004545454401522875,0.00909090880304575,-0.0476190485060215,0.04978355020284653,0.0030303029343485832,0.00909090880304575,-0.008658008649945259,-0.0015151514671742916,-0.004545454401522875,-1.686317797108393e-18,1.0842021724855044e-19,1.3877787807814457e-17,-0.025291375815868378,0.0030303029343485832,0.010497280396521091,0.004545454401522875,-1.8091440885075904e-18,-0.000606060610152781,-1.4094628242311558e-18,-0.0007770007941871881,-0.0009090909152291715,-1.734723475976807e-18,-0.06818182021379471,0.00909090880304575,0.004545454401522875,0.15909090638160706,-3.727594563193717e-19,-7.468054369852048e-19,-0.00909090880304575,-6.103527925602682e-19,-0.004545454401522875,-0.05454545468091965,0.0043290043249726295,-0.008658008649945259,-1.8091440885075904e-18,-3.727594563193717e-19,0.0021645021624863148,-4.607859233063394e-19,1.772882351609644e-18,2.642742795433417e-19,-1.5321444818077786e-20,-1.3895578601634094e-18,0.0030303029343485832,-0.0015151514671742916,-0.000606060610152781,-7.468054369852048e-19,-4.607859233063394e-19,0.0003030303050763905,2.17393301339016e-19,8.131516293641283e-20,6.466334512147269e-20,1.024963616761648e-20,0.00909090880304575,-0.004545454401522875,-1.4094628242311558e-18,-0.00909090880304575,1.772882351609644e-18,2.17393301339016e-19,0.004545454401522875,1.3764264713367067e-19,-3.7947076036992655e-19,-7.37257477290143e-18,0.0011655011912807822,-1.686317797108393e-18,-0.0007770007941871881,-6.103527925602682e-19,2.642742795433417e-19,8.131516293641283e-20,1.3764264713367067e-19,7.770007505314425e-05,1.2175328789511268e-20,1.4555571536729435e-19,0.004545454401522875,1.0842021724855044e-19,-0.0009090909152291715,-0.004545454401522875,-1.5321444818077786e-20,6.466334512147269e-20,-3.7947076036992655e-19,1.2175328789511268e-20,0.0009090909152291715,-6.505213034913027e-19,0.00909090880304575,1.3877787807814457e-17,-1.734723475976807e-18,-0.05454545468091965,-1.3895578601634094e-18,1.024963616761648e-20,-7.37257477290143e-18,1.4555571536729435e-19,-6.505213034913027e-19,0.027272727340459824,5.0,11.0,4.0,0.11687812209129333,-0.037077922374010086,-0.019650349393486977,-0.04363636299967766,0.003246753243729472,0.0022727272007614374,0.005454545374959707,0.0008741258643567562,0.0027272726874798536,0.004545454401522875,-0.037077922374010086,0.03801948204636574,0.0022727272007614374,0.005454545374959707,-0.006493506487458944,-0.0011363636003807187,-0.0027272726874798536,3.469446951953614e-18,3.686287386450715e-18,4.492311200476474e-18,-0.019650349393486977,0.0022727272007614374,0.008009323850274086,0.0027272726874798536,5.421010862427522e-18,-0.00045454545761458576,1.5178830414797062e-18,-0.0005827505956403911,-0.0005454545607790351,-6.55114895926751e-19,-0.04363636299967766,0.005454545374959707,0.0027272726874798536,0.06090909242630005,3.279611276119379e-18,-2.333990807557946e-18,-0.003636363660916686,1.1384122811097797e-18,-0.001818181830458343,-0.013636363670229912,0.003246753243729472,-0.006493506487458944,5.421010862427522e-18,3.279611276119379e-18,0.001623376621864736,6.776263578034403e-19,3.1170812458958252e-18,-5.692061405548898e-19,-7.589415207398531e-19,-1.8506534592115733e-18,0.0022727272007614374,-0.0011363636003807187,-0.00045454545761458576,-2.333990807557946e-18,6.776263578034403e-19,0.00022727272880729288,7.860465750519907e-19,-1.0842021724855044e-19,-6.776263578034403e-20,2.9028282840535785e-19,0.005454545374959707,-0.0027272726874798536,1.5178830414797062e-18,-0.003636363660916686,3.1170812458958252e-18,7.860465750519907e-19,0.001818181830458343,-2.913793338554793e-19,-1.0842021724855044e-19,4.969914636214206e-19,0.0008741258643567562,3.469446951953614e-18,-0.0005827505956403911,1.1384122811097797e-18,-5.692061405548898e-19,-1.0842021724855044e-19,-2.913793338554793e-19,5.827505810884759e-05,-7.453889935837843e-20,-3.065969497352232e-20,0.0027272726874798536,3.686287386450715e-18,-0.0005454545607790351,-0.001818181830458343,-7.589415207398531e-19,-6.776263578034403e-20,-1.0842021724855044e-19,-7.453889935837843e-20,0.0003636363544501364,5.412803679787348e-19,0.004545454401522875,4.492311200476474e-18,-6.55114895926751e-19,-0.013636363670229912,-1.8506534592115733e-18,2.9028282840535785e-19,4.969914636214206e-19,-3.065969497352232e-20,5.412803679787348e-19,0.004545454401522875,5.0,11.0,5.0,0.09906093776226044,-0.030389610677957535,-0.016083916649222374,-0.030389610677957535,0.002597402548417449,0.001818181830458343,0.003636363660916686,0.0006993007264100015,0.001818181830458343,0.002597402548417449,-0.030389610677957535,0.030779220163822174,0.001818181830458343,0.003636363660916686,-0.005194805096834898,-0.0009090909152291715,-0.001818181830458343,3.2526065174565133e-18,5.421010862427522e-19,-5.854691731421724e-18,-0.016083916649222374,0.001818181830458343,0.006480186711996794,0.001818181830458343,6.799980500557523e-18,-0.0003636363544501364,2.0803129184565616e-18,-0.0004662004648707807,-0.0003636363544501364,2.0599841277224584e-18,-0.030389610677957535,0.003636363660916686,0.001818181830458343,0.030779220163822174,-9.86623976961809e-18,-1.5178830414797062e-18,-0.001818181830458343,1.0299920638612292e-18,-0.0009090909152291715,-0.005194805096834898,0.002597402548417449,-0.005194805096834898,6.799980500557523e-18,-9.86623976961809e-18,0.0012987012742087245,-6.337435474281013e-19,9.052470236336385e-19,-5.72594272343907e-19,1.6837244566410686e-19,1.6677111964096252e-18,0.001818181830458343,-0.0009090909152291715,-0.0003636363544501364,-1.5178830414797062e-18,-6.337435474281013e-19,0.0001818181772250682,1.2197274440461925e-19,-9.977533327971314e-20,-2.710505431213761e-20,3.1170812458958252e-19,0.003636363660916686,-0.001818181830458343,2.0803129184565616e-18,-0.001818181830458343,9.052470236336385e-19,1.2197274440461925e-19,0.0009090909152291715,-1.4625985286373012e-19,-4.607859233063394e-19,-1.1655173354219173e-18,0.0006993007264100015,3.2526065174565133e-18,-0.0004662004648707807,1.0299920638612292e-18,-5.72594272343907e-19,-9.977533327971314e-20,-1.4625985286373012e-19,4.662004721467383e-05,-3.159569507306582e-20,-1.328889823249962e-19,0.001818181830458343,5.421010862427522e-19,-0.0003636363544501364,-0.0009090909152291715,1.6837244566410686e-19,-2.710505431213761e-20,-4.607859233063394e-19,-3.159569507306582e-20,0.0001818181772250682,-7.182839392716467e-19,0.002597402548417449,-5.854691731421724e-18,2.0599841277224584e-18,-0.005194805096834898,1.6677111964096252e-18,3.1170812458958252e-19,-1.1655173354219173e-18,-1.328889823249962e-19,-7.182839392716467e-19,0.0012987012742087245,5.0,11.0,6.0,0.08601398766040802,-0.025757575407624245,-0.013619713485240936,-0.022402597591280937,0.0021645021624863148,0.0015151514671742916,0.002597402548417449,0.0005827505956403911,0.0012987012742087245,0.001623376621864736,-0.025757575407624245,0.02586580067873001,0.0015151514671742916,0.002597402548417449,-0.0043290043249726295,-0.0007575757335871458,-0.0012987012742087245,-9.893344823930228e-19,-8.673617379884035e-19,-6.667843360785852e-18,-0.013619713485240936,0.0015151514671742916,0.005443445406854153,0.0012987012742087245,-9.9272261418204e-19,-0.0003030303050763905,-8.876905287225068e-19,-0.0003885003970935941,-0.0002597402490209788,-1.5178830414797062e-18,-0.022402597591280937,0.002597402548417449,0.0012987012742087245,0.017889609560370445,-9.107298248878237e-18,-4.87890977618477e-19,-0.0010389609960839152,-3.7947076036992655e-19,-0.0005194804980419576,-0.002435064874589443,0.0021645021624863148,-0.0043290043249726295,-9.9272261418204e-19,-9.107298248878237e-18,0.0010822510812431574,-2.488774239646152e-19,-3.414335319859233e-20,1.2620790914089075e-19,1.466733656218242e-19,1.6206062590544508e-18,0.0015151514671742916,-0.0007575757335871458,-0.0003030303050763905,-4.87890977618477e-19,-2.488774239646152e-19,0.00015151515253819525,6.776263578034403e-20,4.0094678599015545e-20,1.0164395367051604e-20,6.098637220230962e-20,0.002597402548417449,-0.0012987012742087245,-8.876905287225068e-19,-0.0010389609960839152,-3.414335319859233e-20,6.776263578034403e-20,0.0005194804980419576,7.023205425215038e-20,6.776263578034403e-20,-6.098637220230962e-20,0.0005827505956403911,-9.893344823930228e-19,-0.0003885003970935941,-3.7947076036992655e-19,1.2620790914089075e-19,4.0094678599015545e-20,7.023205425215038e-20,3.885003752657212e-05,1.9648295739784828e-20,2.6539742602530106e-20,0.0012987012742087245,-8.673617379884035e-19,-0.0002597402490209788,-0.0005194804980419576,1.466733656218242e-19,1.0164395367051604e-20,6.776263578034403e-20,1.9648295739784828e-20,0.00010389610542915761,5.183841637196318e-19,0.001623376621864736,-6.667843360785852e-18,-1.5178830414797062e-18,-0.002435064874589443,1.6206062590544508e-18,6.098637220230962e-20,-6.098637220230962e-20,2.6539742602530106e-20,5.183841637196318e-19,0.0004870129923801869,5.0,11.0,7.0,0.07602991908788681,-0.022356215864419937,-0.011813187040388584,-0.017207792028784752,0.001855287584476173,0.0012987012742087245,0.0019480519695207477,0.0004995004856027663,0.0009740259847603738,0.0010822510812431574,-0.022356215864419937,0.022309832274913788,0.0012987012742087245,0.0019480519695207477,-0.003710575168952346,-0.0006493506371043622,-0.0009740259847603738,8.470329472543003e-21,6.776263578034403e-21,-0.0,-0.011813187040388584,0.0012987012742087245,0.00469363946467638,0.0009740259847603738,0.0,-0.0002597402490209788,0.0,-0.0003330003237351775,-0.00019480519404169172,-0.0,-0.017207792028784752,0.0019480519695207477,0.0009740259847603738,0.011363636702299118,0.0,-1.187287613581397e-21,-0.0006493506371043622,0.0,-0.0003246753185521811,-0.0012987012742087245,0.001855287584476173,-0.003710575168952346,0.0,0.0,0.0009276437922380865,0.0,0.0,0.0,0.0,-0.0,0.0012987012742087245,-0.0006493506371043622,-0.0002597402490209788,-1.187287613581397e-21,0.0,0.0001298701245104894,0.0,0.0,1.6940658945086007e-21,-0.0,0.0019480519695207477,-0.0009740259847603738,0.0,-0.0006493506371043622,0.0,0.0,0.0003246753185521811,0.0,0.0,-0.0,0.0004995004856027663,8.470329472543003e-21,-0.0003330003237351775,0.0,0.0,0.0,0.0,3.330003164592199e-05,0.0,-0.0,0.0009740259847603738,6.776263578034403e-21,-0.00019480519404169172,-0.0003246753185521811,0.0,1.6940658945086007e-21,0.0,0.0,6.49350622552447e-05,-0.0,0.0010822510812431574,-0.0,-0.0,-0.0012987012742087245,-0.0,-0.0,-0.0,-0.0,-0.0,0.00021645022206939757,5.0,11.0,8.0,0.06813602894544601,-0.019751083105802536,-0.010431235656142235,-0.013636363670229912,0.001623376621864736,0.0011363636003807187,0.0015151514671742916,0.0004370629321783781,0.0007575757335871458,0.0007575757335871458,-0.019751083105802536,0.01961580105125904,0.0011363636003807187,0.0015151514671742916,-0.003246753243729472,-0.0005681818001903594,-0.0007575757335871458,2.371692252312041e-20,6.776263578034403e-21,-0.0,-0.010431235656142235,0.0011363636003807187,0.004125874023884535,0.0007575757335871458,0.0,-0.00022727272880729288,0.0,-0.00029137529782019556,-0.00015151515253819525,-0.0,-0.013636363670229912,0.0015151514671742916,0.0007575757335871458,0.007683982606977224,0.0,-1.343419519300817e-22,-0.00043290044413879514,1.3552527156068805e-20,-0.00021645022206939757,-0.0007575757335871458,0.001623376621864736,-0.003246753243729472,0.0,0.0,0.000811688310932368,0.0,0.0,0.0,0.0,-0.0,0.0011363636003807187,-0.0005681818001903594,-0.00022727272880729288,-1.343419519300817e-22,0.0,0.00011363636440364644,0.0,-3.3881317890172014e-21,0.0,-0.0,0.0015151514671742916,-0.0007575757335871458,0.0,-0.00043290044413879514,0.0,0.0,0.00021645022206939757,0.0,0.0,-0.0,0.0004370629321783781,2.371692252312041e-20,-0.00029137529782019556,1.3552527156068805e-20,0.0,-3.3881317890172014e-21,0.0,2.9137529054423794e-05,-1.6940658945086007e-21,-0.0,0.0007575757335871458,6.776263578034403e-21,-0.00015151515253819525,-0.00021645022206939757,0.0,0.0,0.0,-1.6940658945086007e-21,4.329004150349647e-05,-0.0,0.0007575757335871458,-0.0,-0.0,-0.0007575757335871458,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010822511103469878,5.0,11.0,9.0,0.061734627932310104,-0.017691196873784065,-0.009339549578726292,-0.01107438001781702,0.0014430014416575432,0.001010101055726409,0.001212121220305562,0.0003885003970935941,0.000606060610152781,0.0005509642069227993,-0.017691196873784065,0.017503608018159866,0.001010101055726409,0.001212121220305562,-0.0028860028833150864,-0.0005050505278632045,-0.000606060610152781,1.0164395367051604e-20,6.098637220230962e-20,2.710505431213761e-20,-0.009339549578726292,0.001010101055726409,0.0036809116136282682,0.000606060610152781,0.0,-0.00020202020823489875,6.776263578034403e-20,-0.0002590002550277859,-0.00012121212057536468,1.0164395367051604e-19,-0.01107438001781702,0.001212121220305562,0.000606060610152781,0.005444706883281469,-0.0,-0.0,-0.0003030303050763905,8.547280897472268e-22,-0.00015151515253819525,-0.0004722550220321864,0.0014430014416575432,-0.0028860028833150864,0.0,-0.0,0.0007215007208287716,0.0,0.0,0.0,0.0,0.0,0.001010101055726409,-0.0005050505278632045,-0.00020202020823489875,-0.0,0.0,0.00010101010411744937,-2.117582368135751e-22,0.0,0.0,-5.482745402202055e-24,0.001212121220305562,-0.000606060610152781,6.776263578034403e-20,-0.0003030303050763905,0.0,-2.117582368135751e-22,0.00015151515253819525,-4.235164736271502e-22,-1.6940658945086007e-20,-3.3881317890172014e-21,0.0003885003970935941,1.0164395367051604e-20,-0.0002590002550277859,8.547280897472268e-22,0.0,0.0,-4.235164736271502e-22,2.590002623037435e-05,8.470329472543003e-22,-4.235164736271502e-22,0.000606060610152781,6.098637220230962e-20,-0.00012121212057536468,-0.00015151515253819525,0.0,0.0,-1.6940658945086007e-20,8.470329472543003e-22,3.030303014384117e-05,-2.541098841762901e-20,0.0005509642069227993,2.710505431213761e-20,1.0164395367051604e-19,-0.0004722550220321864,0.0,-5.482745402202055e-24,-3.3881317890172014e-21,-4.235164736271502e-22,-2.541098841762901e-20,5.90318777540233e-05,5.0,11.0,10.0,0.05643719807267189,-0.016021251678466797,-0.008455181494355202,-0.009173553436994553,0.0012987012742087245,0.0009090909152291715,0.0009917354909703135,0.00034965036320500076,0.0004958677454851568,0.0004132231406401843,-0.016021251678466797,0.015802834182977676,0.0009090909152291715,0.0009917354909703135,-0.002597402548417449,-0.00045454545761458576,-0.0004958677454851568,-3.3881317890172014e-21,1.0164395367051604e-20,0.0,-0.008455181494355202,0.0009090909152291715,0.003322737757116556,0.0004958677454851568,0.0,-0.0001818181772250682,0.0,-0.00023310023243539035,-9.917355055222288e-05,0.0,-0.009173553436994553,0.0009917354909703135,0.0004958677454851568,0.0040013776160776615,-0.0,-0.0,-0.00022038567112758756,-5.1753023544649005e-21,-0.00011019283556379378,-0.0003099173482041806,0.0012987012742087245,-0.002597402548417449,0.0,-0.0,0.0006493506371043622,0.0,0.0,0.0,0.0,0.0,0.0009090909152291715,-0.00045454545761458576,-0.0001818181772250682,-0.0,0.0,9.09090886125341e-05,0.0,-1.6940658945086007e-21,0.0,1.687975850454971e-23,0.0009917354909703135,-0.0004958677454851568,0.0,-0.00022038567112758756,0.0,0.0,0.00011019283556379378,4.235164736271502e-22,-8.470329472543003e-22,-3.3881317890172014e-21,0.00034965036320500076,-3.3881317890172014e-21,-0.00023310023243539035,-5.1753023544649005e-21,0.0,-1.6940658945086007e-21,4.235164736271502e-22,2.3310023607336916e-05,0.0,4.235164736271502e-22,0.0004958677454851568,1.0164395367051604e-20,-9.917355055222288e-05,-0.00011019283556379378,0.0,0.0,-8.470329472543003e-22,0.0,2.2038568204152398e-05,-1.6940658945086007e-21,0.0004132231406401843,0.0,0.0,-0.0003099173482041806,0.0,1.687975850454971e-23,-3.3881317890172014e-21,4.235164736271502e-22,-1.6940658945086007e-21,3.443526293267496e-05,5.0,11.0,11.0,0.05197983980178833,-0.014639905653893948,-0.007724094204604626,-0.007724094204604626,0.0011806375114247203,0.0008264462812803686,0.0008264462812803686,0.00031786394538357854,0.0004132231406401843,0.00031786394538357854,-0.014639905653893948,0.01440377812832594,0.0008264462812803686,0.0008264462812803686,-0.0023612750228494406,-0.0004132231406401843,-0.0004132231406401843,3.3881317890172014e-21,3.3881317890172014e-21,-1.3552527156068805e-20,-0.007724094204604626,0.0008264462812803686,0.0030281839426606894,0.0004132231406401843,0.0,-0.00016528925334569067,3.3881317890172014e-21,-0.0002119092969223857,-8.264462667284533e-05,1.0164395367051604e-20,-0.007724094204604626,0.0008264462812803686,0.0004132231406401843,0.0030281839426606894,-0.0,-5.253061774909503e-21,-0.00016528925334569067,-6.863829006536559e-22,-8.264462667284533e-05,-0.0002119092969223857,0.0011806375114247203,-0.0023612750228494406,0.0,-0.0,0.0005903187557123601,0.0,0.0,0.0,0.0,0.0,0.0008264462812803686,-0.0004132231406401843,-0.00016528925334569067,-5.253061774909503e-21,0.0,8.264462667284533e-05,7.497291760275976e-23,-1.6940658945086007e-21,9.903985339287986e-22,4.878447419885728e-23,0.0008264462812803686,-0.0004132231406401843,3.3881317890172014e-21,-0.00016528925334569067,0.0,7.497291760275976e-23,8.264462667284533e-05,-2.117582368135751e-22,-8.470329472543003e-22,0.0,0.00031786394538357854,3.3881317890172014e-21,-0.0002119092969223857,-6.863829006536559e-22,0.0,-1.6940658945086007e-21,-2.117582368135751e-22,2.119093005603645e-05,8.470329472543003e-22,0.0,0.0004132231406401843,3.3881317890172014e-21,-8.264462667284533e-05,-8.264462667284533e-05,0.0,9.903985339287986e-22,-8.470329472543003e-22,8.470329472543003e-22,1.6528925698366947e-05,-1.6940658945086007e-21,0.00031786394538357854,-1.3552527156068805e-20,1.0164395367051604e-20,-0.0002119092969223857,0.0,4.878447419885728e-23,0.0,0.0,-1.6940658945086007e-21,2.119093005603645e-05,5.0,11.0,12.0,0.04817682132124901,-0.013478188775479794,-0.007109557278454304,-0.006593406666070223,0.0010822510812431574,0.0007575757335871458,0.0006993007264100015,0.00029137529782019556,0.00034965036320500076,0.00024975024280138314,-0.013478188775479794,0.013232600875198841,0.0007575757335871458,0.0006993007264100015,-0.0021645021624863148,-0.0003787878667935729,-0.00034965036320500076,1.6940658945086007e-20,1.6940658945086007e-20,0.0,-0.007109557278454304,0.0007575757335871458,0.002781662857159972,0.00034965036320500076,0.0,-0.00015151515253819525,1.6940658945086007e-20,-0.00019425019854679704,-6.993007264100015e-05,1.6940658945086007e-20,-0.006593406666070223,0.0006993007264100015,0.00034965036320500076,0.0023476523347198963,-0.0,-0.0,-0.0001271455839741975,-1.6069548498878521e-21,-6.357279198709875e-05,-0.00014985015150159597,0.0010822510812431574,-0.0021645021624863148,0.0,-0.0,0.0005411255406215787,0.0,0.0,0.0,0.0,0.0,0.0007575757335871458,-0.0003787878667935729,-0.00015151515253819525,-0.0,0.0,7.575757626909763e-05,2.117582368135751e-22,-3.3881317890172014e-21,-4.235164736271502e-22,8.337341534092418e-23,0.0006993007264100015,-0.00034965036320500076,1.6940658945086007e-20,-0.0001271455839741975,0.0,2.117582368135751e-22,6.357279198709875e-05,2.117582368135751e-22,-2.964615315390051e-21,0.0,0.00029137529782019556,1.6940658945086007e-20,-0.00019425019854679704,-1.6069548498878521e-21,0.0,-3.3881317890172014e-21,2.117582368135751e-22,1.942501876328606e-05,0.0,2.117582368135751e-22,0.00034965036320500076,1.6940658945086007e-20,-6.993007264100015e-05,-6.357279198709875e-05,0.0,-4.235164736271502e-22,-2.964615315390051e-21,0.0,1.2714558579318691e-05,-3.3881317890172014e-21,0.00024975024280138314,0.0,1.6940658945086007e-20,-0.00014985015150159597,0.0,8.337341534092418e-23,0.0,2.117582368135751e-22,-3.3881317890172014e-21,1.3622740880236961e-05,5.0,11.0,13.0,0.04489356651902199,-0.012487512081861496,-0.006585721857845783,-0.005694305524230003,0.0009990009712055326,0.0006993007264100015,0.0005994006060063839,0.0002689617977011949,0.00029970030300319195,0.00019980019715148956,-0.012487512081861496,0.012237762100994587,0.0006993007264100015,0.0005994006060063839,-0.001998001942411065,-0.00034965036320500076,-0.00029970030300319195,-1.1858461261560205e-20,-3.049318610115481e-20,0.0,-0.006585721857845783,0.0006993007264100015,0.0025722994469106197,0.00029970030300319195,0.0,-0.0001398601452820003,-2.371692252312041e-20,-0.00017930786998476833,-5.994005914544687e-05,-1.6940658945086007e-20,-0.005694305524230003,0.0005994006060063839,0.00029970030300319195,0.0018572336994111538,-0.0,-9.665360696231344e-21,-9.990009857574478e-05,-7.188928960676763e-21,-4.995004928787239e-05,-0.00010898192704189569,0.0009990009712055326,-0.001998001942411065,0.0,-0.0,0.0004995004856027663,0.0,0.0,0.0,0.0,0.0,0.0006993007264100015,-0.00034965036320500076,-0.0001398601452820003,-9.665360696231344e-21,0.0,6.993007264100015e-05,2.0225979615663683e-22,1.6940658945086007e-21,1.5304979965699502e-21,2.102724898737946e-22,0.0005994006060063839,-0.00029970030300319195,-2.371692252312041e-20,-9.990009857574478e-05,0.0,2.0225979615663683e-22,4.995004928787239e-05,2.117582368135751e-22,3.3881317890172014e-21,-8.470329472543003e-22,0.0002689617977011949,-1.1858461261560205e-20,-0.00017930786998476833,-7.188928960676763e-21,0.0,1.6940658945086007e-21,2.117582368135751e-22,1.793078627088107e-05,4.235164736271502e-22,4.235164736271502e-22,0.00029970030300319195,-3.049318610115481e-20,-5.994005914544687e-05,-4.995004928787239e-05,0.0,1.5304979965699502e-21,3.3881317890172014e-21,4.235164736271502e-22,9.990009857574478e-06,2.964615315390051e-21,0.00019980019715148956,0.0,-1.6940658945086007e-20,-0.00010898192704189569,0.0,2.102724898737946e-22,-8.470329472543003e-22,4.235164736271502e-22,2.964615315390051e-21,9.081827556656208e-06,5.0,11.0,14.0,0.04203011095523834,-0.011632652953267097,-0.0061338660307228565,-0.0049675325863063335,0.0009276437922380865,0.0006493506371043622,0.0005194804980419576,0.00024975024280138314,0.0002597402490209788,0.00016233765927609056,-0.011632652953267097,0.011382189579308033,0.0006493506371043622,0.0005194804980419576,-0.001855287584476173,-0.0003246753185521811,-0.0002597402490209788,-0.0,8.470329472543003e-21,-3.3881317890172014e-21,-0.0061338660307228565,0.0006493506371043622,0.0023922743275761604,0.0002597402490209788,0.0,-0.0001298701245104894,5.082197683525802e-21,-0.00016650016186758876,-5.194805271457881e-05,3.3881317890172014e-21,-0.0049675325863063335,0.0005194804980419576,0.0002597402490209788,0.001494755269959569,-0.0,-0.0,-7.992007886059582e-05,-0.0,-3.996003943029791e-05,-8.116882963804528e-05,0.0009276437922380865,-0.001855287584476173,0.0,-0.0,0.00046382189611904323,0.0,0.0,0.0,0.0,0.0,0.0006493506371043622,-0.0003246753185521811,-0.0001298701245104894,-0.0,0.0,6.49350622552447e-05,0.0,0.0,0.0,0.0,0.0005194804980419576,-0.0002597402490209788,5.082197683525802e-21,-7.992007886059582e-05,0.0,0.0,3.996003943029791e-05,0.0,-8.470329472543003e-22,0.0,0.00024975024280138314,-0.0,-0.00016650016186758876,-0.0,0.0,0.0,0.0,1.6650015822960995e-05,0.0,0.0,0.0002597402490209788,8.470329472543003e-21,-5.194805271457881e-05,-3.996003943029791e-05,0.0,0.0,-8.470329472543003e-22,0.0,7.992008249857463e-06,-8.470329472543003e-22,0.00016233765927609056,-3.3881317890172014e-21,3.3881317890172014e-21,-8.116882963804528e-05,0.0,0.0,0.0,0.0,-8.470329472543003e-22,6.243756160984049e-06,5.0,11.0,15.0,0.039510637521743774,-0.010887445881962776,-0.005740093067288399,-0.004371657967567444,0.0008658008882775903,0.000606060610152781,0.00045454545761458576,0.00023310023243539035,0.00022727272880729288,0.0001336898421868682,-0.010887445881962776,0.010638528503477573,0.000606060610152781,0.00045454545761458576,-0.0017316017765551805,-0.0003030303050763905,-0.00022727272880729288,-0.0,-8.470329472543003e-21,-3.3881317890172014e-21,-0.005740093067288399,0.000606060610152781,0.0022358198184520006,0.00022727272880729288,0.0,-0.00012121212057536468,-6.776263578034403e-21,-0.0001554001501062885,-4.545454430626705e-05,-5.082197683525802e-21,-0.004371657967567444,0.00045454545761458576,0.00022727272880729288,0.0012209848500788212,-0.0,-0.0,-6.49350622552447e-05,-0.0,-3.246753112762235e-05,-6.170300184749067e-05,0.0008658008882775903,-0.0017316017765551805,0.0,-0.0,0.00043290044413879514,0.0,0.0,0.0,0.0,0.0,0.000606060610152781,-0.0003030303050763905,-0.00012121212057536468,-0.0,0.0,6.060606028768234e-05,0.0,0.0,0.0,0.0,0.00045454545761458576,-0.00022727272880729288,-6.776263578034403e-21,-6.49350622552447e-05,0.0,0.0,3.246753112762235e-05,0.0,1.2705494208814505e-21,-4.235164736271502e-22,0.00023310023243539035,-0.0,-0.0001554001501062885,-0.0,0.0,0.0,0.0,1.554001573822461e-05,0.0,0.0,0.00022727272880729288,-8.470329472543003e-21,-4.545454430626705e-05,-3.246753112762235e-05,0.0,0.0,1.2705494208814505e-21,0.0,6.493506589322351e-06,8.470329472543003e-22,0.0001336898421868682,-3.3881317890172014e-21,-5.082197683525802e-21,-6.170300184749067e-05,0.0,0.0,-4.235164736271502e-22,0.0,8.470329472543003e-22,4.407357209856855e-06,5.0,11.0,16.0,0.03727656975388527,-0.0102320471778512,-0.0053938706405460835,-0.0038770053070038557,0.000811688310932368,0.0005681818001903594,0.00040106952656060457,0.00021853146608918905,0.00020053476328030229,0.00011140819697175175,-0.0102320471778512,0.009986153803765774,0.0005681818001903594,0.00040106952656060457,-0.001623376621864736,-0.0002840909000951797,-0.00020053476328030229,-0.0,1.5246593050577406e-20,3.3881317890172014e-21,-0.0053938706405460835,0.0005681818001903594,0.0020985875744372606,0.00020053476328030229,0.0,-0.00011363636440364644,1.6940658945086007e-20,-0.00014568764891009778,-4.0106951928464696e-05,1.6940658945086007e-20,-0.0038770053070038557,0.00040106952656060457,0.00020053476328030229,0.0010103131644427776,-0.0,-0.0,-5.347593469195999e-05,-0.0,-2.6737967345979996e-05,-4.774637272930704e-05,0.000811688310932368,-0.001623376621864736,0.0,-0.0,0.000405844155466184,0.0,0.0,0.0,0.0,0.0,0.0005681818001903594,-0.0002840909000951797,-0.00011363636440364644,-0.0,0.0,5.681818220182322e-05,0.0,0.0,0.0,0.0,0.00040106952656060457,-0.00020053476328030229,1.6940658945086007e-20,-5.347593469195999e-05,0.0,0.0,2.6737967345979996e-05,0.0,-2.117582368135751e-21,-4.235164736271502e-22,0.00021853146608918905,-0.0,-0.00014568764891009778,-0.0,0.0,0.0,0.0,1.4568764527211897e-05,0.0,0.0,0.00020053476328030229,1.5246593050577406e-20,-4.0106951928464696e-05,-2.6737967345979996e-05,0.0,0.0,-2.117582368135751e-21,0.0,5.34759374204441e-06,-2.329340604949326e-21,0.00011140819697175175,3.3881317890172014e-21,1.6940658945086007e-20,-4.774637272930704e-05,0.0,0.0,-4.235164736271502e-22,0.0,-2.329340604949326e-21,3.183091394021176e-06,5.0,12.0,3.0,0.13263125717639923,-0.04386446997523308,-0.02161172218620777,-0.06282051652669907,0.003968254197388887,0.0025641026441007853,0.008333333767950535,0.0009157509193755686,0.003846153849735856,0.008333333767950535,-0.04386446997523308,0.04574175924062729,0.0025641026441007853,0.008333333767950535,-0.007936508394777775,-0.0012820513220503926,-0.004166666883975267,8.316178678527035e-19,-3.3068166260807885e-18,-2.0383000842727483e-17,-0.02161172218620777,0.0025641026441007853,0.008141858503222466,0.003846153849735856,6.0626657203304455e-19,-0.0004662004648707807,-3.2526065174565133e-19,-0.0005494505749084055,-0.0006993007264100015,4.553649124439119e-18,-0.06282051652669907,0.008333333767950535,0.003846153849735856,0.14615385234355927,-1.5998281851706394e-17,-1.2018702689823977e-18,-0.008333333767950535,1.5281233306679596e-18,-0.003846153849735856,-0.05000000074505806,0.003968254197388887,-0.007936508394777775,6.0626657203304455e-19,-1.5998281851706394e-17,0.0019841270986944437,3.2526065174565133e-19,1.9430764170036545e-18,-1.6940658945086007e-19,5.756048478820821e-19,4.054800485246152e-18,0.0025641026441007853,-0.0012820513220503926,-0.0004662004648707807,-1.2018702689823977e-18,3.2526065174565133e-19,0.00023310023243539035,5.568656914901526e-19,3.3881317890172014e-21,2.21328829591913e-20,-5.59994230738496e-20,0.008333333767950535,-0.004166666883975267,-3.2526065174565133e-19,-0.008333333767950535,1.9430764170036545e-18,5.568656914901526e-19,0.004166666883975267,-1.2491682237636326e-19,9.486769009248164e-19,5.637851296924623e-18,0.0009157509193755686,8.316178678527035e-19,-0.0005494505749084055,1.5281233306679596e-18,-1.6940658945086007e-19,3.3881317890172014e-21,-1.2491682237636326e-19,4.995004928787239e-05,-8.939433776120769e-21,-6.161316314159285e-19,0.003846153849735856,-3.3068166260807885e-18,-0.0006993007264100015,-0.003846153849735856,5.756048478820821e-19,2.21328829591913e-20,9.486769009248164e-19,-8.939433776120769e-21,0.0006993007264100015,3.903127820947816e-18,0.008333333767950535,-2.0383000842727483e-17,4.553649124439119e-18,-0.05000000074505806,4.054800485246152e-18,-5.59994230738496e-20,5.637851296924623e-18,-6.161316314159285e-19,3.903127820947816e-18,0.02500000037252903,5.0,12.0,4.0,0.10847984999418259,-0.03414835035800934,-0.016785714775323868,-0.04019230604171753,0.0029761905316263437,0.001923076924867928,0.004999999888241291,0.0006868132040835917,0.0023076923098415136,0.004166666883975267,-0.03414835035800934,0.03493131697177887,0.001923076924867928,0.004999999888241291,-0.0059523810632526875,-0.000961538462433964,-0.0024999999441206455,1.0028870095490916e-18,3.2526065174565133e-19,-3.44596370795354e-18,-0.016785714775323868,0.001923076924867928,0.0062112887389957905,0.0023076923098415136,2.4936649967166602e-18,-0.00034965036320500076,5.421010862427522e-19,-0.00041208791662938893,-0.00041958040674217045,4.394632750662537e-18,-0.04019230604171753,0.004999999888241291,0.0023076923098415136,0.05596153810620308,-4.1349306085575057e-19,1.2397865739006034e-18,-0.0033333334140479565,1.179069862577986e-18,-0.0015384615398943424,-0.012500000186264515,0.0029761905316263437,-0.0059523810632526875,2.4936649967166602e-18,-4.1349306085575057e-19,0.0014880952658131719,-1.0842021724855044e-19,-1.0570971181733668e-18,-1.8634724839594607e-19,-4.0657581468206416e-20,9.889521181548702e-19,0.001923076924867928,-0.000961538462433964,-0.00034965036320500076,1.2397865739006034e-18,-1.0842021724855044e-19,0.00017482518160250038,1.0842021724855044e-19,-3.8963515573697816e-20,-4.743384504624082e-20,-3.4848728881007507e-19,0.004999999888241291,-0.0024999999441206455,5.421010862427522e-19,-0.0033333334140479565,-1.0570971181733668e-18,1.0842021724855044e-19,0.0016666667070239782,-4.743384504624082e-20,-2.710505431213761e-20,-3.199248044587237e-21,0.0006868132040835917,1.0028870095490916e-18,-0.00041208791662938893,1.179069862577986e-18,-1.8634724839594607e-19,-3.8963515573697816e-20,-4.743384504624082e-20,3.7462537875398993e-05,-3.3881317890172014e-20,-2.9045498537034545e-19,0.0023076923098415136,3.2526065174565133e-19,-0.00041958040674217045,-0.0015384615398943424,-4.0657581468206416e-20,-4.743384504624082e-20,-2.710505431213761e-20,-3.3881317890172014e-20,0.0002797202905640006,2.0009245693595145e-19,0.004166666883975267,-3.44596370795354e-18,4.394632750662537e-18,-0.012500000186264515,9.889521181548702e-19,-3.4848728881007507e-19,-3.199248044587237e-21,-2.9045498537034545e-19,2.0009245693595145e-19,0.004166666883975267,5.0,12.0,5.0,0.09190475940704346,-0.02798534743487835,-0.01373626384884119,-0.02798534743487835,0.0023809524718672037,0.0015384615398943424,0.0033333334140479565,0.0005494505749084055,0.0015384615398943424,0.0023809524718672037,-0.02798534743487835,0.02827838808298111,0.0015384615398943424,0.0033333334140479565,-0.004761904943734407,-0.0007692307699471712,-0.0016666667070239782,1.285796013932028e-18,-5.421010862427522e-20,-3.686287386450715e-18,-0.01373626384884119,0.0015384615398943424,0.005024975165724754,0.0015384615398943424,2.693564772268675e-18,-0.0002797202905640006,6.301925127571995e-19,-0.00032967032166197896,-0.0002797202905640006,-1.734723475976807e-18,-0.02798534743487835,0.0033333334140479565,0.0015384615398943424,0.02827838808298111,-2.168404344971009e-19,-1.8973538018496328e-18,-0.0016666667070239782,1.6263032587282567e-19,-0.0007692307699471712,-0.004761904943734407,0.0023809524718672037,-0.004761904943734407,2.693564772268675e-18,-2.168404344971009e-19,0.0011904762359336019,-6.058272098808082e-20,1.1578065128480628e-19,-2.286988957586611e-19,-2.967005091878505e-20,7.00698751533017e-20,0.0015384615398943424,-0.0007692307699471712,-0.0002797202905640006,-1.8973538018496328e-18,-6.058272098808082e-20,0.0001398601452820003,1.4907779871675686e-19,-2.2766585703350746e-20,4.743384504624082e-20,3.2526065174565133e-19,0.0033333334140479565,-0.0016666667070239782,6.301925127571995e-19,-0.0016666667070239782,1.1578065128480628e-19,1.4907779871675686e-19,0.0008333333535119891,-8.801063423305553e-20,-1.3552527156068805e-20,7.182839392716467e-19,0.0005494505749084055,1.285796013932028e-18,-0.00032967032166197896,1.6263032587282567e-19,-2.286988957586611e-19,-2.2766585703350746e-20,-8.801063423305553e-20,2.9970029572723433e-05,-4.556307915572411e-21,1.2650176505350021e-20,0.0015384615398943424,-5.421010862427522e-20,-0.0002797202905640006,-0.0007692307699471712,-2.967005091878505e-20,4.743384504624082e-20,-1.3552527156068805e-20,-4.556307915572411e-21,0.0001398601452820003,4.0657581468206416e-19,0.0023809524718672037,-3.686287386450715e-18,-1.734723475976807e-18,-0.004761904943734407,7.00698751533017e-20,3.2526065174565133e-19,7.182839392716467e-19,1.2650176505350021e-20,4.0657581468206416e-19,0.0011904762359336019,5.0,12.0,6.0,0.07977716624736786,-0.02371794916689396,-0.011630036868155003,-0.02062729001045227,0.0019841270986944437,0.0012820513220503926,0.0023809524718672037,0.0004578754596877843,0.001098901149816811,0.0014880952658131719,-0.02371794916689396,0.023763736709952354,0.0012820513220503926,0.0023809524718672037,-0.003968254197388887,-0.0006410256610251963,-0.0011904762359336019,4.946672411965114e-19,1.5178830414797062e-18,6.396792817664476e-18,-0.011630036868155003,0.0012820513220503926,0.004220779053866863,0.001098901149816811,1.3721933745519665e-18,-0.00023310023243539035,6.335806445462167e-19,-0.00027472528745420277,-0.00019980019715148956,2.520770051028798e-18,-0.02062729001045227,0.0023809524718672037,0.001098901149816811,0.01643543876707554,5.421010862427522e-18,1.8431436932253575e-18,-0.0009523809421807528,9.486769009248164e-20,-0.00043956044828519225,-0.0022321429569274187,0.0019841270986944437,-0.003968254197388887,1.3721933745519665e-18,5.421010862427522e-18,0.0009920635493472219,1.5011101192532095e-19,5.1350196279858484e-20,-9.740878893424454e-20,-2.477310550331933e-19,-7.220747012238241e-19,0.0012820513220503926,-0.0006410256610251963,-0.00023310023243539035,1.8431436932253575e-18,1.5011101192532095e-19,0.00011655011621769518,2.710505431213761e-20,-3.514722330583709e-21,-5.082197683525802e-20,-3.083199928005653e-19,0.0023809524718672037,-0.0011904762359336019,6.335806445462167e-19,-0.0009523809421807528,5.1350196279858484e-20,2.710505431213761e-20,0.0004761904710903764,-3.9901147416246547e-20,-8.809142651444724e-20,-6.2341624917916505e-19,0.0004578754596877843,4.946672411965114e-19,-0.00027472528745420277,9.486769009248164e-20,-9.740878893424454e-20,-3.514722330583709e-21,-3.9901147416246547e-20,2.4975024643936194e-05,2.110632273844458e-20,-2.777872506640243e-20,0.001098901149816811,1.5178830414797062e-18,-0.00019980019715148956,-0.00043956044828519225,-2.477310550331933e-19,-5.082197683525802e-20,-8.809142651444724e-20,2.110632273844458e-20,7.992007886059582e-05,-5.319366908757006e-19,0.0014880952658131719,6.396792817664476e-18,2.520770051028798e-18,-0.0022321429569274187,-7.220747012238241e-19,-3.083199928005653e-19,-6.2341624917916505e-19,-2.777872506640243e-20,-5.319366908757006e-19,0.00044642857392318547,5.0,12.0,7.0,0.0705019161105156,-0.020584773272275925,-0.010086342692375183,-0.015842491760849953,0.001700680237263441,0.001098901149816811,0.0017857142956927419,0.0003924646880477667,0.0008241758332587779,0.0009920635493472219,-0.020584773272275925,0.020496467128396034,0.001098901149816811,0.0017857142956927419,-0.003401360474526882,-0.0005494505749084055,-0.0008928571478463709,7.335305323222241e-19,1.4094628242311558e-18,4.87890977618477e-18,-0.010086342692375183,0.001098901149816811,0.003639217931777239,0.0008241758332587779,1.7618285302889447e-19,-0.00019980019715148956,9.622294280808852e-19,-0.00023547880118712783,-0.00014985015150159597,1.81603863891322e-18,-0.015842491760849953,0.0017857142956927419,0.0008241758332587779,0.010439560748636723,2.7647155398380363e-18,1.3552527156068805e-18,-0.0005952381179668009,7.521652571618187e-19,-0.00027472528745420277,-0.0011904762359336019,0.001700680237263441,-0.003401360474526882,1.7618285302889447e-19,2.7647155398380363e-18,0.0008503401186317205,4.357633478850923e-19,6.203812718129197e-19,-8.555032767268433e-20,-1.119981740634515e-19,-5.428524247328918e-19,0.001098901149816811,-0.0005494505749084055,-0.00019980019715148956,1.3552527156068805e-18,4.357633478850923e-19,9.990009857574478e-05,5.421010862427522e-20,-2.912396954283227e-20,-7.115076756936123e-20,-1.6940658945086007e-19,0.0017857142956927419,-0.0008928571478463709,9.622294280808852e-19,-0.0005952381179668009,6.203812718129197e-19,5.421010862427522e-20,0.00029761905898340046,-5.990878204635177e-20,-1.3552527156068805e-19,-4.573977915173222e-19,0.0003924646880477667,7.335305323222241e-19,-0.00023547880118712783,7.521652571618187e-19,-8.555032767268433e-20,-2.912396954283227e-20,-5.990878204635177e-20,2.1407164240372367e-05,-2.3175691139743574e-20,-7.618599044138197e-20,0.0008241758332587779,1.4094628242311558e-18,-0.00014985015150159597,-0.00027472528745420277,-1.119981740634515e-19,-7.115076756936123e-20,-1.3552527156068805e-19,-2.3175691139743574e-20,4.995004928787239e-05,-1.8465318250143747e-19,0.0009920635493472219,4.87890977618477e-18,1.81603863891322e-18,-0.0011904762359336019,-5.428524247328918e-19,-1.6940658945086007e-19,-4.573977915173222e-19,-7.618599044138197e-20,-1.8465318250143747e-19,0.00019841270113829523,5.0,12.0,8.0,0.06317155063152313,-0.018185287714004517,-0.008905678056180477,-0.01255341898649931,0.0014880952658131719,0.000961538462433964,0.0013888889225199819,0.00034340660204179585,0.0006410256610251963,0.0006944444612599909,-0.018185287714004517,0.01802121475338936,0.000961538462433964,0.0013888889225199819,-0.0029761905316263437,-0.000480769231216982,-0.0006944444612599909,1.5246593050577406e-20,6.776263578034403e-21,2.3539143796620208e-35,-0.008905678056180477,0.000961538462433964,0.003198884427547455,0.0006410256610251963,0.0,-0.00017482518160250038,0.0,-0.00020604395831469446,-0.00011655011621769518,4.74627653484072e-19,-0.01255341898649931,0.0013888889225199819,0.0006410256610251963,0.007058913353830576,0.0,-2.710980252272412e-21,-0.00039682540227659047,3.6591823321385775e-19,-0.00018315018678549677,-0.0006944444612599909,0.0014880952658131719,-0.0029761905316263437,0.0,0.0,0.0007440476329065859,0.0,0.0,0.0,0.0,-0.0,0.000961538462433964,-0.000480769231216982,-0.00017482518160250038,-2.710980252272412e-21,0.0,8.741259080125019e-05,0.0,-1.6940658945086007e-21,0.0,-4.2798444244943305e-36,0.0013888889225199819,-0.0006944444612599909,0.0,-0.00039682540227659047,0.0,0.0,0.00019841270113829523,0.0,0.0,-0.0,0.00034340660204179585,1.5246593050577406e-20,-0.00020604395831469446,3.6591823321385775e-19,0.0,-1.6940658945086007e-21,0.0,1.8731268937699497e-05,-1.9481757786848908e-20,-3.697046266184251e-20,0.0006410256610251963,6.776263578034403e-21,-0.00011655011621769518,-0.00018315018678549677,0.0,0.0,0.0,-1.9481757786848908e-20,3.330003164592199e-05,-1.9415009804412134e-20,0.0006944444612599909,2.3539143796620208e-35,4.74627653484072e-19,-0.0006944444612599909,-0.0,-4.2798444244943305e-36,-0.0,-3.697046266184251e-20,-1.9415009804412134e-20,9.920635056914762e-05,5.0,12.0,9.0,0.057229068130254745,-0.01628815568983555,-0.007973138242959976,-0.010194250382483006,0.0013227512827143073,0.0008547008619643748,0.0011111111380159855,0.0003052503161597997,0.0005128204938955605,0.0005050505278632045,-0.01628815568983555,0.01608058623969555,0.0008547008619643748,0.0011111111380159855,-0.0026455025654286146,-0.0004273504309821874,-0.0005555555690079927,-1.1858461261560205e-20,-3.3881317890172014e-21,-4.0352818347043107e-35,-0.007973138242959976,0.0008547008619643748,0.0028538128826767206,0.0005128204938955605,0.0,-0.0001554001501062885,0.0,-0.00018315018678549677,-9.324009442934766e-05,-5.265437834745846e-19,-0.010194250382483006,0.0011111111380159855,0.0005128204938955605,0.0050016650930047035,0.0,-7.142102783188019e-21,-0.00027777778450399637,-5.488773498207866e-19,-0.00012820512347389013,-0.00043290044413879514,0.0013227512827143073,-0.0026455025654286146,0.0,0.0,0.0006613756413571537,0.0,0.0,0.0,0.0,-0.0,0.0008547008619643748,-0.0004273504309821874,-0.0001554001501062885,-7.142102783188019e-21,0.0,7.770007505314425e-05,0.0,0.0,8.470329472543003e-22,7.336876258770969e-36,0.0011111111380159855,-0.0005555555690079927,0.0,-0.00027777778450399637,0.0,0.0,0.00013888889225199819,0.0,0.0,-0.0,0.0003052503161597997,-1.1858461261560205e-20,-0.00018315018678549677,-5.488773498207866e-19,0.0,0.0,0.0,1.6650015822960995e-05,2.286988957586611e-20,5.223878535937077e-20,0.0005128204938955605,-3.3881317890172014e-21,-9.324009442934766e-05,-0.00012820512347389013,0.0,8.470329472543003e-22,0.0,2.286988957586611e-20,2.3310023607336916e-05,-1.202070983065564e-20,0.0005050505278632045,-4.0352818347043107e-35,-5.265437834745846e-19,-0.00043290044413879514,-0.0,7.336876258770969e-36,-0.0,5.223878535937077e-20,-1.202070983065564e-20,5.411255551734939e-05,5.0,12.0,10.0,0.052312687039375305,-0.014750249683856964,-0.007217782083898783,-0.008444055914878845,0.0011904762359336019,0.0007692307699471712,0.0009090909152291715,0.00027472528745420277,0.00041958040674217045,0.0003787878667935729,-0.014750249683856964,0.014517981559038162,0.0007692307699471712,0.0009090909152291715,-0.0023809524718672037,-0.0003846153849735856,-0.00045454545761458576,-6.776263578034403e-21,2.0328790734103208e-20,-1.3552527156068805e-20,-0.007217782083898783,0.0007692307699471712,0.0025760603602975607,0.00041958040674217045,0.0,-0.0001398601452820003,3.3881317890172014e-20,-0.00016483516083098948,-7.628734601894394e-05,-3.7947076036992655e-19,-0.008444055914878845,0.0009090909152291715,0.00041958040674217045,0.003675699234008789,-0.0,2.7200905986075306e-22,-0.00020202020823489875,-4.2229961339790224e-19,-9.324009442934766e-05,-0.0002840909000951797,0.0011904762359336019,-0.0023809524718672037,0.0,-0.0,0.0005952381179668009,0.0,0.0,0.0,0.0,0.0,0.0007692307699471712,-0.0003846153849735856,-0.0001398601452820003,2.7200905986075306e-22,0.0,6.993007264100015e-05,-2.267081228441485e-22,-1.6940658945086007e-21,4.1661652817023544e-22,-4.642017539328704e-22,0.0009090909152291715,-0.00045454545761458576,3.3881317890172014e-20,-0.00020202020823489875,0.0,-2.267081228441485e-22,0.00010101010411744937,4.235164736271502e-22,-6.776263578034403e-21,-3.3881317890172014e-21,0.00027472528745420277,-6.776263578034403e-21,-0.00016483516083098948,-4.2229961339790224e-19,0.0,-1.6940658945086007e-21,4.235164736271502e-22,1.4985014786361717e-05,1.3552527156068805e-20,3.8539999100070665e-20,0.00041958040674217045,2.0328790734103208e-20,-7.628734601894394e-05,-9.324009442934766e-05,0.0,4.1661652817023544e-22,-6.776263578034403e-21,1.3552527156068805e-20,1.695274477242492e-05,-6.776263578034403e-21,0.0003787878667935729,-1.3552527156068805e-20,-3.7947076036992655e-19,-0.0002840909000951797,0.0,-4.642017539328704e-22,-3.3881317890172014e-21,3.8539999100070665e-20,-6.776263578034403e-21,3.156565799145028e-05,5.0,12.0,11.0,0.04817682132124901,-0.013478188775479794,-0.006593406666070223,-0.007109557278454304,0.0010822510812431574,0.0006993007264100015,0.0007575757335871458,0.00024975024280138314,0.00034965036320500076,0.00029137529782019556,-0.013478188775479794,0.013232600875198841,0.0006993007264100015,0.0007575757335871458,-0.0021645021624863148,-0.00034965036320500076,-0.0003787878667935729,1.1858461261560205e-20,4.0657581468206416e-20,1.3552527156068805e-20,-0.006593406666070223,0.0006993007264100015,0.0023476523347198963,0.00034965036320500076,0.0,-0.0001271455839741975,3.7269449679189215e-20,-0.00014985015150159597,-6.357279198709875e-05,2.337810934421869e-19,-0.007109557278454304,0.0007575757335871458,0.00034965036320500076,0.002781662857159972,-0.0,4.785469256992278e-21,-0.00015151515253819525,1.9798430959667763e-19,-6.993007264100015e-05,-0.00019425019854679704,0.0010822510812431574,-0.0021645021624863148,0.0,-0.0,0.0005411255406215787,0.0,0.0,0.0,0.0,0.0,0.0006993007264100015,-0.00034965036320500076,-0.0001271455839741975,4.785469256992278e-21,0.0,6.357279198709875e-05,-2.606610243709974e-22,0.0,-1.2030508720032384e-22,-3.0192985979818944e-22,0.0007575757335871458,-0.0003787878667935729,3.7269449679189215e-20,-0.00015151515253819525,0.0,-2.606610243709974e-22,7.575757626909763e-05,0.0,-7.623296525288703e-21,-6.776263578034403e-21,0.00024975024280138314,1.1858461261560205e-20,-0.00014985015150159597,1.9798430959667763e-19,0.0,0.0,0.0,1.3622740880236961e-05,-9.740878893424454e-21,-1.4399560103323106e-20,0.00034965036320500076,4.0657581468206416e-20,-6.357279198709875e-05,-6.993007264100015e-05,0.0,-1.2030508720032384e-22,-7.623296525288703e-21,-9.740878893424454e-21,1.2714558579318691e-05,-1.4399560103323106e-20,0.00029137529782019556,1.3552527156068805e-20,2.337810934421869e-19,-0.00019425019854679704,0.0,-3.0192985979818944e-22,-6.776263578034403e-21,-1.4399560103323106e-20,-1.4399560103323106e-20,1.942501876328606e-05,5.0,12.0,12.0,0.04464872553944588,-0.012408425100147724,-0.006068611051887274,-0.006068611051887274,0.0009920635493472219,0.0006410256610251963,0.0006410256610251963,0.00022893772984389216,0.0002958579862024635,0.00022893772984389216,-0.012408425100147724,0.01215659361332655,0.0006410256610251963,0.0006410256610251963,-0.0019841270986944437,-0.00032051283051259816,-0.00032051283051259816,-5.082197683525802e-21,3.7269449679189215e-20,6.776263578034403e-21,-0.006068611051887274,0.0006410256610251963,0.0021564974449574947,0.0002958579862024635,0.0,-0.00011655011621769518,3.3881317890172014e-20,-0.00013736264372710139,-5.379236245062202e-05,-2.1345230270808369e-19,-0.006068611051887274,0.0006410256610251963,0.0002958579862024635,0.0021564974449574947,-0.0,-1.898877308594829e-21,-0.00011655011621769518,-3.21069301732451e-19,-5.379236245062202e-05,-0.00013736264372710139,0.0009920635493472219,-0.0019841270986944437,0.0,-0.0,0.0004960317746736109,0.0,0.0,0.0,0.0,0.0,0.0006410256610251963,-0.00032051283051259816,-0.00011655011621769518,-1.898877308594829e-21,0.0,5.827505810884759e-05,3.14385001614994e-22,8.470329472543003e-22,-3.7615026089535354e-22,4.021092372837017e-22,0.0006410256610251963,-0.00032051283051259816,3.3881317890172014e-20,-0.00011655011621769518,0.0,3.14385001614994e-22,5.827505810884759e-05,0.0,-6.3527471044072525e-21,0.0,0.00022893772984389216,-5.082197683525802e-21,-0.00013736264372710139,-3.21069301732451e-19,0.0,8.470329472543003e-22,0.0,1.2487512321968097e-05,1.3552527156068805e-20,2.286988957586611e-20,0.0002958579862024635,3.7269449679189215e-20,-5.379236245062202e-05,-5.379236245062202e-05,0.0,-3.7615026089535354e-22,-6.3527471044072525e-21,1.3552527156068805e-20,9.780429536476731e-06,-7.199780051661553e-21,0.00022893772984389216,6.776263578034403e-21,-2.1345230270808369e-19,-0.00013736264372710139,0.0,4.021092372837017e-22,0.0,2.286988957586611e-20,-7.199780051661553e-21,1.2487512321968097e-05,5.0,12.0,13.0,0.041603267192840576,-0.011496196500957012,-0.00562130194157362,-0.005240913014858961,0.0009157509193755686,0.000591715972404927,0.0005494505749084055,0.00021132713300175965,0.0002535925596021116,0.00018315018678549677,-0.011496196500957012,0.01124260388314724,0.000591715972404927,0.0005494505749084055,-0.0018315018387511373,-0.0002958579862024635,-0.00027472528745420277,-1.6940658945086007e-21,-2.541098841762901e-20,6.776263578034403e-21,-0.00562130194157362,0.000591715972404927,0.001994159771129489,0.0002535925596021116,0.0,-0.00010758472490124404,-2.371692252312041e-20,-0.0001267962798010558,-4.610773976310156e-05,8.131516293641283e-20,-0.005240913014858961,0.0005494505749084055,0.0002535925596021116,0.001705986331216991,-0.0,-1.4349243045934803e-21,-9.157509339274839e-05,1.6744398712530437e-19,-4.226542660035193e-05,-9.990009857574478e-05,0.0009157509193755686,-0.0018315018387511373,0.0,-0.0,0.0004578754596877843,0.0,0.0,0.0,0.0,0.0,0.000591715972404927,-0.0002958579862024635,-0.00010758472490124404,-1.4349243045934803e-21,0.0,5.379236245062202e-05,7.702483948054824e-23,8.470329472543003e-22,3.554992834136351e-23,1.3721144925004123e-22,0.0005494505749084055,-0.00027472528745420277,-2.371692252312041e-20,-9.157509339274839e-05,0.0,7.702483948054824e-23,4.578754669637419e-05,-3.1763735522036263e-22,4.235164736271502e-21,8.470329472543003e-22,0.00021132713300175965,-1.6940658945086007e-21,-0.0001267962798010558,1.6744398712530437e-19,0.0,8.470329472543003e-22,-3.1763735522036263e-22,1.152693494077539e-05,-1.0587911840678754e-20,-8.893845946170154e-21,0.0002535925596021116,-2.541098841762901e-20,-4.610773976310156e-05,-4.226542660035193e-05,0.0,3.554992834136351e-23,4.235164736271502e-21,-1.0587911840678754e-20,7.68462268752046e-06,2.117582368135751e-21,0.00018315018678549677,6.776263578034403e-21,8.131516293641283e-20,-9.990009857574478e-05,0.0,1.3721144925004123e-22,8.470329472543003e-22,-8.893845946170154e-21,2.117582368135751e-21,8.325007911480498e-06,5.0,12.0,14.0,0.038947541266679764,-0.01070905290544033,-0.00523547874763608,-0.004571886267513037,0.0008503401186317205,0.0005494505749084055,0.0004761904710903764,0.00019623234402388334,0.00021978022414259613,0.00014880952949170023,-0.01070905290544033,0.010456567630171776,0.0005494505749084055,0.0004761904710903764,-0.001700680237263441,-0.00027472528745420277,-0.0002380952355451882,3.2017845406212553e-19,2.846030702774449e-19,1.1519648082658485e-19,-0.00523547874763608,0.0005494505749084055,0.0018545739585533738,0.00021978022414259613,1.6109690879303252e-18,-9.990009857574478e-05,-4.743384504624082e-20,-0.00011773940059356391,-3.996003943029791e-05,-2.710505431213761e-20,-0.004571886267513037,0.0004761904710903764,0.00021978022414259613,0.0013730099890381098,1.0406949538070528e-18,-1.449817166456679e-19,-7.326007471419871e-05,-3.83721816021247e-20,-3.3812342735473067e-05,-7.440476474585012e-05,0.0008503401186317205,-0.001700680237263441,1.6109690879303252e-18,1.0406949538070528e-18,0.00042517005931586027,-3.5612364574175417e-20,-2.6115734990414253e-20,-8.092004848459951e-20,-7.069077760059932e-20,-3.540251919252837e-20,0.0005494505749084055,-0.00027472528745420277,-9.990009857574478e-05,-1.449817166456679e-19,-3.5612364574175417e-20,4.995004928787239e-05,2.7746982010395706e-20,-8.470329472543003e-22,2.299833319587519e-21,5.4917474063804504e-21,0.0004761904710903764,-0.0002380952355451882,-4.743384504624082e-20,-7.326007471419871e-05,-2.6115734990414253e-20,2.7746982010395706e-20,3.6630037357099354e-05,1.0587911840678754e-22,-1.4823076576950256e-21,0.0,0.00019623234402388334,3.2017845406212553e-19,-0.00011773940059356391,-3.83721816021247e-20,-8.092004848459951e-20,-8.470329472543003e-22,1.0587911840678754e-22,1.0703582120186184e-05,-1.6940658945086007e-21,2.4352197233561135e-21,0.00021978022414259613,2.846030702774449e-19,-3.996003943029791e-05,-3.3812342735473067e-05,-7.069077760059932e-20,2.299833319587519e-21,-1.4823076576950256e-21,-1.6940658945086007e-21,6.147698513814248e-06,-3.3881317890172014e-21,0.00014880952949170023,1.1519648082658485e-19,-2.710505431213761e-20,-7.440476474585012e-05,-3.540251919252837e-20,5.4917474063804504e-21,0.0,2.4352197233561135e-21,-3.3881317890172014e-21,5.723443337046774e-06,5.0,12.0,15.0,0.03661109134554863,-0.01002289354801178,-0.004899267572909594,-0.00402337871491909,0.0007936508045531809,0.0005128204938955605,0.00041666667675599456,0.00018315018678549677,0.0001923076924867928,0.00012254902685526758,-0.01002289354801178,0.00977335125207901,0.0005128204938955605,0.00041666667675599456,-0.0015873016091063619,-0.00025641024694778025,-0.00020833333837799728,5.082197683525802e-21,-5.082197683525802e-21,-3.3881317890172014e-21,-0.004899267572909594,0.0005128204938955605,0.0017332667484879494,0.0001923076924867928,0.0,-9.324009442934766e-05,-5.082197683525802e-21,-0.00010989011207129806,-3.4965036320500076e-05,6.606856988583543e-20,-0.00402337871491909,0.00041666667675599456,0.0001923076924867928,0.0011215255362913013,-0.0,2.015942954265081e-21,-5.952380888629705e-05,1.1942787155131157e-19,-2.7472528017824516e-05,-5.656108623952605e-05,0.0007936508045531809,-0.0015873016091063619,0.0,-0.0,0.00039682540227659047,0.0,0.0,0.0,0.0,0.0,0.0005128204938955605,-0.00025641024694778025,-9.324009442934766e-05,2.015942954265081e-21,0.0,4.662004721467383e-05,-1.1149681148303259e-24,0.0,-2.611401216868435e-22,6.21938884309332e-23,0.00041666667675599456,-0.00020833333837799728,-5.082197683525802e-21,-5.952380888629705e-05,0.0,-1.1149681148303259e-24,2.9761904443148524e-05,0.0,8.470329472543003e-22,4.235164736271502e-22,0.00018315018678549677,5.082197683525802e-21,-0.00010989011207129806,1.1942787155131157e-19,0.0,0.0,0.0,9.990009857574478e-06,-7.199780051661553e-21,-5.823351512373315e-21,0.0001923076924867928,-5.082197683525802e-21,-3.4965036320500076e-05,-2.7472528017824516e-05,0.0,-2.611401216868435e-22,8.470329472543003e-22,-7.199780051661553e-21,4.995004928787239e-06,-4.235164736271502e-22,0.00012254902685526758,-3.3881317890172014e-21,6.606856988583543e-20,-5.656108623952605e-05,0.0,6.21938884309332e-23,4.235164736271502e-22,-5.823351512373315e-21,-4.235164736271502e-22,4.040077783429297e-06,5.0,12.0,16.0,0.03453952074050903,-0.009419441223144531,-0.0046036685816943645,-0.003568061860278249,0.0007440476329065859,0.000480769231216982,0.0003676470660138875,0.00017170330102089792,0.00016968326235655695,0.00010212418419541791,-0.009419441223144531,0.009174006059765816,0.000480769231216982,0.0003676470660138875,-0.0014880952658131719,-0.000240384615608491,-0.00018382353300694376,-1.2037062152420224e-35,1.1858461261560205e-20,-6.776263578034403e-21,-0.0046036685816943645,0.000480769231216982,0.001626865821890533,0.00016968326235655695,0.0,-8.741259080125019e-05,1.0164395367051604e-20,-0.00010302197915734723,-3.0851500923745334e-05,6.437450399132683e-20,-0.003568061860278249,0.0003676470660138875,0.00016968326235655695,0.0009280058438889682,-0.0,-0.0,-4.901960710412823e-05,9.68997045036579e-20,-2.2624433768214658e-05,-4.376750803203322e-05,0.0007440476329065859,-0.0014880952658131719,0.0,-0.0,0.00037202381645329297,0.0,0.0,0.0,0.0,0.0,0.000480769231216982,-0.000240384615608491,-8.741259080125019e-05,-0.0,0.0,4.3706295400625095e-05,0.0,0.0,0.0,0.0,0.0003676470660138875,-0.00018382353300694376,1.0164395367051604e-20,-4.901960710412823e-05,0.0,0.0,2.4509803552064113e-05,1.504632769052528e-36,-1.4823076576950256e-21,4.235164736271502e-22,0.00017170330102089792,-1.2037062152420224e-35,-0.00010302197915734723,9.68997045036579e-20,0.0,0.0,1.504632769052528e-36,9.365634468849748e-06,-4.484999534553442e-21,-4.8154804035914674e-21,0.00016968326235655695,1.1858461261560205e-20,-3.0851500923745334e-05,-2.2624433768214658e-05,0.0,0.0,-1.4823076576950256e-21,-4.484999534553442e-21,4.113533577765338e-06,-1.4823076576950256e-21,0.00010212418419541791,-6.776263578034403e-21,6.437450399132683e-20,-4.376750803203322e-05,0.0,0.0,4.235164736271502e-22,-4.8154804035914674e-21,-1.4823076576950256e-21,2.9178338536439696e-06,5.0,13.0,3.0,0.12380952388048172,-0.0406593419611454,-0.018681319430470467,-0.05824175849556923,0.0036630036775022745,0.002197802299633622,0.007692307699471712,0.0007326007471419871,0.0032967033330351114,0.007692307699471712,-0.0406593419611454,0.042307693511247635,0.002197802299633622,0.007692307699471712,-0.007326007355004549,-0.001098901149816811,-0.003846153849735856,1.598642080550542e-19,-2.7376104855258987e-18,-2.992397996059992e-17,-0.018681319430470467,0.002197802299633622,0.006443556398153305,0.0032967033330351114,-3.011115893910179e-18,-0.00036630037357099354,1.6263032587282567e-18,-0.0003996003943029791,-0.0005494505749084055,5.854691731421724e-18,-0.05824175849556923,0.007692307699471712,0.0032967033330351114,0.13516484200954437,-3.548019183978801e-17,4.545145294151767e-18,-0.007692307699471712,7.111388694626873e-20,-0.0032967033330351114,-0.04615384712815285,0.0036630036775022745,-0.007326007355004549,-3.011115893910179e-18,-3.548019183978801e-17,0.0018315018387511373,6.505213034913027e-19,2.167956013079005e-18,6.776263578034403e-21,9.73215420591355e-19,1.1765358774894911e-17,0.002197802299633622,-0.001098901149816811,-0.00036630037357099354,4.545145294151767e-18,6.505213034913027e-19,0.00018315018678549677,-5.129973050767451e-19,-1.6940658945086007e-20,-1.154292029220478e-19,-1.3092415178166544e-18,0.007692307699471712,-0.003846153849735856,1.6263032587282567e-18,-0.007692307699471712,2.167956013079005e-18,-5.129973050767451e-19,0.003846153849735856,-2.2328044269378395e-20,-4.0657581468206416e-19,-7.806255641895632e-18,0.0007326007471419871,1.598642080550542e-19,-0.0003996003943029791,7.111388694626873e-20,6.776263578034403e-21,-1.6940658945086007e-20,-2.2328044269378395e-20,3.330003164592199e-05,-6.900884012065324e-22,-8.159774043524059e-21,0.0032967033330351114,-2.7376104855258987e-18,-0.0005494505749084055,-0.0032967033330351114,9.73215420591355e-19,-1.154292029220478e-19,-4.0657581468206416e-19,-6.900884012065324e-22,0.0005494505749084055,-3.2526065174565133e-18,0.007692307699471712,-2.992397996059992e-17,5.854691731421724e-18,-0.04615384712815285,1.1765358774894911e-17,-1.3092415178166544e-18,-7.806255641895632e-18,-8.159774043524059e-21,-3.2526065174565133e-18,0.023076923564076424,5.0,13.0,4.0,0.10120879113674164,-0.03164835274219513,-0.014505494385957718,-0.037252746522426605,0.002747252816334367,0.0016483516665175557,0.004615384619683027,0.0005494505749084055,0.0019780220463871956,0.003846153849735856,-0.03164835274219513,0.032307691872119904,0.0016483516665175557,0.004615384619683027,-0.005494505632668734,-0.0008241758332587779,-0.0023076923098415136,-2.9591274890136447e-19,-1.2468324983583301e-18,3.2526065174565133e-18,-0.014505494385957718,0.0016483516665175557,0.0049150846898555756,0.0019780220463871956,-3.566354883026958e-18,-0.00027472528745420277,-7.589415207398531e-19,-0.00029970030300319195,-0.00032967032166197896,-8.673617379884035e-19,-0.037252746522426605,0.004615384619683027,0.0019780220463871956,0.05175824090838432,6.906717715452258e-19,9.0863412144689e-19,-0.003076923079788685,-7.585529526471063e-19,-0.0013186812866479158,-0.011538461782038212,0.002747252816334367,-0.005494505632668734,-3.566354883026958e-18,6.906717715452258e-19,0.0013736264081671834,1.0164395367051604e-18,4.477127473152451e-19,7.792703114739563e-20,2.879921843434395e-19,-1.1551626885139785e-18,0.0016483516665175557,-0.0008241758332587779,-0.00027472528745420277,9.0863412144689e-19,1.0164395367051604e-18,0.00013736264372710139,9.034276011022369e-20,-3.3881317890172014e-21,-2.2002826579325808e-20,-3.040299756499239e-19,0.004615384619683027,-0.0023076923098415136,-7.589415207398531e-19,-0.003076923079788685,4.477127473152451e-19,9.034276011022369e-20,0.0015384615398943424,3.740239634443724e-20,1.3552527156068805e-20,1.6263032587282567e-18,0.0005494505749084055,-2.9591274890136447e-19,-0.00029970030300319195,-7.585529526471063e-19,7.792703114739563e-20,-3.3881317890172014e-21,3.740239634443724e-20,2.4975024643936194e-05,1.6834225680292294e-20,1.8084568306655296e-19,0.0019780220463871956,-1.2468324983583301e-18,-0.00032967032166197896,-0.0013186812866479158,2.879921843434395e-19,-2.2002826579325808e-20,1.3552527156068805e-20,1.6834225680292294e-20,0.00021978022414259613,-5.963111948670274e-19,0.003846153849735856,3.2526065174565133e-18,-8.673617379884035e-19,-0.011538461782038212,-1.1551626885139785e-18,-3.040299756499239e-19,1.6263032587282567e-18,1.8084568306655296e-19,-5.963111948670274e-19,0.003846153849735856,5.0,13.0,5.0,0.08571428805589676,-0.025934066623449326,-0.011868132278323174,-0.025934066623449326,0.002197802299633622,0.0013186812866479158,0.003076923079788685,0.00043956044828519225,0.0013186812866479158,0.002197802299633622,-0.025934066623449326,0.026153845712542534,0.0013186812866479158,0.003076923079788685,-0.004395604599267244,-0.0006593406433239579,-0.0015384615398943424,2.922263668027336e-19,-1.0842021724855044e-19,4.228388472693467e-18,-0.011868132278323174,0.0013186812866479158,0.003976023755967617,0.0013186812866479158,-5.793705359219414e-19,-0.00021978022414259613,8.978549240895584e-19,-0.00023976023658178747,-0.00021978022414259613,3.2526065174565133e-19,-0.025934066623449326,0.003076923079788685,0.0013186812866479158,0.026153845712542534,3.3610267347050637e-18,1.3552527156068805e-18,-0.0015384615398943424,2.0328790734103208e-19,-0.0006593406433239579,-0.004395604599267244,0.002197802299633622,-0.004395604599267244,-5.793705359219414e-19,3.3610267347050637e-18,0.001098901149816811,3.207336731989076e-19,-8.8274005955153e-19,-3.6422416731934915e-20,8.146455304750962e-20,-5.321121565631384e-19,0.0013186812866479158,-0.0006593406433239579,-0.00021978022414259613,1.3552527156068805e-18,3.207336731989076e-19,0.00010989011207129806,-2.303929616531697e-19,-1.502869235148077e-20,-3.3881317890172014e-20,-1.6263032587282567e-19,0.003076923079788685,-0.0015384615398943424,8.978549240895584e-19,-0.0015384615398943424,-8.8274005955153e-19,-2.303929616531697e-19,0.0007692307699471712,-2.377628081000676e-20,-2.710505431213761e-20,-6.369687763352339e-19,0.00043956044828519225,2.922263668027336e-19,-0.00023976023658178747,2.0328790734103208e-19,-3.6422416731934915e-20,-1.502869235148077e-20,-2.377628081000676e-20,1.9980019715148956e-05,-1.3879254612298015e-21,-3.9215795967003686e-20,0.0013186812866479158,-1.0842021724855044e-19,-0.00021978022414259613,-0.0006593406433239579,8.146455304750962e-20,-3.3881317890172014e-20,-2.710505431213761e-20,-1.3879254612298015e-21,0.00010989011207129806,2.439454888092385e-19,0.002197802299633622,4.228388472693467e-18,3.2526065174565133e-19,-0.004395604599267244,-5.321121565631384e-19,-1.6263032587282567e-19,-6.369687763352339e-19,-3.9215795967003686e-20,2.439454888092385e-19,0.001098901149816811,5.0,13.0,6.0,0.0743851363658905,-0.021978022530674934,-0.010047095827758312,-0.019113030284643173,0.0018315018387511373,0.001098901149816811,0.002197802299633622,0.00036630037357099354,0.0009419152047485113,0.0013736264081671834,-0.021978022530674934,0.021978022530674934,0.001098901149816811,0.002197802299633622,-0.0036630036775022745,-0.0005494505749084055,-0.001098901149816811,-1.7872395187065737e-19,-3.7947076036992655e-19,-4.87890977618477e-19,-0.010047095827758312,0.001098901149816811,0.003339517628774047,0.0009419152047485113,-1.294266343404571e-18,-0.00018315018678549677,-2.337810934421869e-19,-0.00019980019715148956,-0.00015698587230872363,-5.421010862427522e-19,-0.019113030284643173,0.002197802299633622,0.0009419152047485113,0.015200156718492508,-2.656295322589486e-18,7.589415207398531e-19,-0.0008791208965703845,-2.846030702774449e-19,-0.0003767660818994045,-0.002060439670458436,0.0018315018387511373,-0.0036630036775022745,-1.294266343404571e-18,-2.656295322589486e-18,0.0009157509193755686,3.102061196935511e-19,2.4647666148365076e-19,3.4304834363799164e-20,9.214947766440436e-20,2.934949775190544e-19,0.001098901149816811,-0.0005494505749084055,-0.00018315018678549677,7.589415207398531e-19,3.102061196935511e-19,9.157509339274839e-05,-1.4907779871675686e-19,8.222826067469466e-22,-1.3552527156068805e-20,-7.453889935837843e-20,0.002197802299633622,-0.001098901149816811,-2.337810934421869e-19,-0.0008791208965703845,2.4647666148365076e-19,-1.4907779871675686e-19,0.00043956044828519225,2.4096832684416664e-20,7.453889935837843e-20,-1.3552527156068805e-20,0.00036630037357099354,-1.7872395187065737e-19,-0.00019980019715148956,-2.846030702774449e-19,3.4304834363799164e-20,8.222826067469466e-22,2.4096832684416664e-20,1.6650015822960995e-05,8.81638419765497e-21,3.4225496110827964e-20,0.0009419152047485113,-3.7947076036992655e-19,-0.00015698587230872363,-0.0003767660818994045,9.214947766440436e-20,-1.3552527156068805e-20,7.453889935837843e-20,8.81638419765497e-21,6.27943518338725e-05,4.743384504624082e-20,0.0013736264081671834,-4.87890977618477e-19,-5.421010862427522e-19,-0.002060439670458436,2.934949775190544e-19,-7.453889935837843e-20,-1.3552527156068805e-20,3.4225496110827964e-20,4.743384504624082e-20,0.00041208791662938893,5.0,13.0,7.0,0.06572475284337997,-0.019073782488703728,-0.008712715469300747,-0.014678179286420345,0.0015698587521910667,0.0009419152047485113,0.0016483516665175557,0.00031397174461744726,0.0007064364035613835,0.0009157509193755686,-0.019073782488703728,0.01895604468882084,0.0009419152047485113,0.0016483516665175557,-0.0031397175043821335,-0.00047095760237425566,-0.0008241758332587779,8.724439356719293e-20,6.505213034913027e-19,-1.3010426069826053e-18,-0.008712715469300747,0.0009419152047485113,0.002879263600334525,0.0007064364035613835,2.5038293920837118e-18,-0.00015698587230872363,-4.743384504624082e-19,-0.00017125731392297894,-0.00011773940059356391,-1.6534083130403943e-18,-0.014678179286420345,0.0016483516665175557,0.0007064364035613835,0.009654630906879902,6.0173220572945496e-18,-1.4365678785432934e-18,-0.0005494505749084055,-3.4558944247975454e-19,-0.00023547880118712783,-0.001098901149816811,0.0015698587521910667,-0.0031397175043821335,2.5038293920837118e-18,6.0173220572945496e-18,0.0007849293760955334,-5.934712253301915e-19,-1.522390038444778e-18,-2.837560373301906e-20,-2.352985304265213e-19,-1.9491760209912264e-19,0.0009419152047485113,-0.00047095760237425566,-0.00015698587230872363,-1.4365678785432934e-18,-5.934712253301915e-19,7.849293615436181e-05,4.404571325722362e-20,-2.3291800559778954e-21,3.7269449679189215e-20,1.7957098481791167e-19,0.0016483516665175557,-0.0008241758332587779,-4.743384504624082e-19,-0.0005494505749084055,-1.522390038444778e-18,4.404571325722362e-20,0.00027472528745420277,2.2785316820581098e-20,2.710505431213761e-20,3.083199928005653e-19,0.00031397174461744726,8.724439356719293e-20,-0.00017125731392297894,-3.4558944247975454e-19,-2.837560373301906e-20,-2.3291800559778954e-21,2.2785316820581098e-20,1.4271442523750011e-05,6.96804669552453e-21,4.111018820376644e-20,0.0007064364035613835,6.505213034913027e-19,-0.00011773940059356391,-0.00023547880118712783,-2.352985304265213e-19,3.7269449679189215e-20,2.710505431213761e-20,6.96804669552453e-21,3.924646807718091e-05,2.185345003916095e-19,0.0009157509193755686,-1.3010426069826053e-18,-1.6534083130403943e-18,-0.001098901149816811,-1.9491760209912264e-19,1.7957098481791167e-19,3.083199928005653e-19,4.111018820376644e-20,2.185345003916095e-19,0.00018315018678549677,5.0,13.0,8.0,0.058882784098386765,-0.01684981770813465,-0.007692307699471712,-0.011630036868155003,0.0013736264081671834,0.0008241758332587779,0.0012820513220503926,0.00027472528745420277,0.0005494505749084055,0.0006410256610251963,-0.01684981770813465,0.01666666753590107,0.0008241758332587779,0.0012820513220503926,-0.002747252816334367,-0.00041208791662938893,-0.0006410256610251963,1.1011428314305904e-20,3.3881317890172014e-21,-0.0,-0.007692307699471712,0.0008241758332587779,0.002530802506953478,0.0005494505749084055,0.0,-0.00013736264372710139,0.0,-0.00014985015150159597,-9.157509339274839e-05,-0.0,-0.011630036868155003,0.0012820513220503926,0.0005494505749084055,0.006527995690703392,0.0,4.102990321673478e-21,-0.00036630037357099354,1.3552527156068805e-20,-0.00015698587230872363,-0.0006410256610251963,0.0013736264081671834,-0.002747252816334367,0.0,0.0,0.0006868132040835917,0.0,0.0,0.0,0.0,-0.0,0.0008241758332587779,-0.00041208791662938893,-0.00013736264372710139,4.102990321673478e-21,0.0,6.868132186355069e-05,0.0,-3.3881317890172014e-21,0.0,-0.0,0.0012820513220503926,-0.0006410256610251963,0.0,-0.00036630037357099354,0.0,0.0,0.00018315018678549677,0.0,0.0,-0.0,0.00027472528745420277,1.1011428314305904e-20,-0.00014985015150159597,1.3552527156068805e-20,0.0,-3.3881317890172014e-21,0.0,1.2487512321968097e-05,-1.6940658945086007e-21,-0.0,0.0005494505749084055,3.3881317890172014e-21,-9.157509339274839e-05,-0.00015698587230872363,0.0,0.0,0.0,-1.6940658945086007e-21,2.616431265778374e-05,-0.0,0.0006410256610251963,-0.0,-0.0,-0.0006410256610251963,-0.0,-0.0,-0.0,-0.0,-0.0,9.157509339274839e-05,5.0,13.0,9.0,0.05333777517080307,-0.015091574750840664,-0.006886446848511696,-0.009443889372050762,0.0012210012646391988,0.0007326007471419871,0.001025640987791121,0.00024420025874860585,0.00043956044828519225,0.0004662004648707807,-0.015091574750840664,0.014871794730424881,0.0007326007471419871,0.001025640987791121,-0.0024420025292783976,-0.00036630037357099354,-0.0005128204938955605,0.0,0.0,-0.0,-0.006886446848511696,0.0007326007471419871,0.0022577422205358744,0.00043956044828519225,0.0,-0.00012210012937430292,0.0,-0.00013320012658368796,-7.326007471419871e-05,-0.0,-0.009443889372050762,0.001025640987791121,0.00043956044828519225,0.00462537445127964,0.0,1.3951281525694783e-21,-0.00025641024694778025,6.776263578034403e-21,-0.00010989011207129806,-0.0003996003943029791,0.0012210012646391988,-0.0024420025292783976,0.0,0.0,0.0006105006323195994,0.0,0.0,0.0,0.0,-0.0,0.0007326007471419871,-0.00036630037357099354,-0.00012210012937430292,1.3951281525694783e-21,0.0,6.105006468715146e-05,0.0,-1.6940658945086007e-21,0.0,-0.0,0.001025640987791121,-0.0005128204938955605,0.0,-0.00025641024694778025,0.0,0.0,0.00012820512347389013,0.0,0.0,-0.0,0.00024420025874860585,0.0,-0.00013320012658368796,6.776263578034403e-21,0.0,-1.6940658945086007e-21,0.0,1.1100010851805564e-05,-1.6940658945086007e-21,-0.0,0.00043956044828519225,0.0,-7.326007471419871e-05,-0.00010989011207129806,0.0,0.0,0.0,-1.6940658945086007e-21,1.8315018678549677e-05,-0.0,0.0004662004648707807,-0.0,-0.0,-0.0003996003943029791,-0.0,-0.0,-0.0,-0.0,-0.0,4.995004928787239e-05,5.0,13.0,10.0,0.04875124990940094,-0.013666333630681038,-0.006233766209334135,-0.00782217737287283,0.001098901149816811,0.0006593406433239579,0.0008391608134843409,0.00021978022414259613,0.00035964036942459643,0.00034965036320500076,-0.013666333630681038,0.013426573015749454,0.0006593406433239579,0.0008391608134843409,-0.002197802299633622,-0.00032967032166197896,-0.00041958040674217045,1.6940658945086007e-21,0.0,-0.0,-0.006233766209334135,0.0006593406433239579,0.002037961967289448,0.00035964036942459643,0.0,-0.00010989011207129806,0.0,-0.00011988011829089373,-5.994005914544687e-05,-0.0,-0.00782217737287283,0.0008391608134843409,0.00035964036942459643,0.0033991008531302214,0.0,1.6653831644302544e-21,-0.00018648018885869533,3.3881317890172014e-21,-7.992007886059582e-05,-0.00026223776512779295,0.001098901149816811,-0.002197802299633622,0.0,0.0,0.0005494505749084055,0.0,0.0,0.0,0.0,-0.0,0.0006593406433239579,-0.00032967032166197896,-0.00010989011207129806,1.6653831644302544e-21,0.0,5.494505603564903e-05,0.0,-8.470329472543003e-22,4.235164736271502e-22,-0.0,0.0008391608134843409,-0.00041958040674217045,0.0,-0.00018648018885869533,0.0,0.0,9.324009442934766e-05,0.0,0.0,-0.0,0.00021978022414259613,1.6940658945086007e-21,-0.00011988011829089373,3.3881317890172014e-21,0.0,-8.470329472543003e-22,0.0,9.990009857574478e-06,-4.235164736271502e-22,-0.0,0.00035964036942459643,0.0,-5.994005914544687e-05,-7.992007886059582e-05,0.0,4.235164736271502e-22,0.0,-4.235164736271502e-22,1.3320013749762438e-05,-0.0,0.00034965036320500076,-0.0,-0.0,-0.00026223776512779295,-0.0,-0.0,-0.0,-0.0,-0.0,2.9137529054423794e-05,5.0,13.0,11.0,0.04489356651902199,-0.012487512081861496,-0.005694305524230003,-0.006585721857845783,0.0009990009712055326,0.0005994006060063839,0.0006993007264100015,0.00019980019715148956,0.00029970030300319195,0.0002689617977011949,-0.012487512081861496,0.012237762100994587,0.0005994006060063839,0.0006993007264100015,-0.001998001942411065,-0.00029970030300319195,-0.00034965036320500076,1.1858461261560205e-20,0.0,0.0,-0.005694305524230003,0.0005994006060063839,0.0018572336994111538,0.00029970030300319195,0.0,-9.990009857574478e-05,0.0,-0.00010898192704189569,-4.995004928787239e-05,3.3881317890172014e-21,-0.006585721857845783,0.0006993007264100015,0.00029970030300319195,0.0025722994469106197,-0.0,4.462228237798009e-21,-0.0001398601452820003,7.30164362824705e-21,-5.994005914544687e-05,-0.00017930786998476833,0.0009990009712055326,-0.001998001942411065,0.0,-0.0,0.0004995004856027663,0.0,0.0,0.0,0.0,0.0,0.0005994006060063839,-0.00029970030300319195,-9.990009857574478e-05,4.462228237798009e-21,0.0,4.995004928787239e-05,-3.0860431094306856e-23,-8.470329472543003e-22,-5.2749591399996965e-22,-2.861815455573365e-22,0.0006993007264100015,-0.00034965036320500076,0.0,-0.0001398601452820003,0.0,-3.0860431094306856e-23,6.993007264100015e-05,0.0,8.470329472543003e-22,0.0,0.00019980019715148956,1.1858461261560205e-20,-0.00010898192704189569,7.30164362824705e-21,0.0,-8.470329472543003e-22,0.0,9.081827556656208e-06,-8.470329472543003e-22,0.0,0.00029970030300319195,0.0,-4.995004928787239e-05,-5.994005914544687e-05,0.0,-5.2749591399996965e-22,8.470329472543003e-22,-8.470329472543003e-22,9.990009857574478e-06,-8.470329472543003e-22,0.0002689617977011949,0.0,3.3881317890172014e-21,-0.00017930786998476833,0.0,-2.861815455573365e-22,0.0,0.0,-8.470329472543003e-22,1.793078627088107e-05,5.0,13.0,12.0,0.041603267192840576,-0.011496196500957012,-0.005240913014858961,-0.00562130194157362,0.0009157509193755686,0.0005494505749084055,0.000591715972404927,0.00018315018678549677,0.0002535925596021116,0.00021132713300175965,-0.011496196500957012,0.01124260388314724,0.0005494505749084055,0.000591715972404927,-0.0018315018387511373,-0.00027472528745420277,-0.0002958579862024635,5.082197683525802e-21,2.0328790734103208e-20,-6.776263578034403e-21,-0.005240913014858961,0.0005494505749084055,0.001705986331216991,0.0002535925596021116,0.0,-9.157509339274839e-05,2.202285662861181e-20,-9.990009857574478e-05,-4.226542660035193e-05,3.049318610115481e-20,-0.00562130194157362,0.000591715972404927,0.0002535925596021116,0.001994159771129489,-0.0,3.459315769826861e-21,-0.00010758472490124404,-1.7933227212535623e-21,-4.610773976310156e-05,-0.0001267962798010558,0.0009157509193755686,-0.0018315018387511373,0.0,-0.0,0.0004578754596877843,0.0,0.0,0.0,0.0,0.0,0.0005494505749084055,-0.00027472528745420277,-9.157509339274839e-05,3.459315769826861e-21,0.0,4.578754669637419e-05,-8.075062322501984e-23,-8.470329472543003e-22,-5.03500658529319e-22,-9.549767102875558e-23,0.000591715972404927,-0.0002958579862024635,2.202285662861181e-20,-0.00010758472490124404,0.0,-8.075062322501984e-23,5.379236245062202e-05,2.117582368135751e-22,-3.8116482626443515e-21,-8.470329472543003e-22,0.00018315018678549677,5.082197683525802e-21,-9.990009857574478e-05,-1.7933227212535623e-21,0.0,-8.470329472543003e-22,2.117582368135751e-22,8.325007911480498e-06,-4.235164736271502e-22,4.235164736271502e-22,0.0002535925596021116,2.0328790734103208e-20,-4.226542660035193e-05,-4.610773976310156e-05,0.0,-5.03500658529319e-22,-3.8116482626443515e-21,-4.235164736271502e-22,7.68462268752046e-06,-5.505714157152952e-21,0.00021132713300175965,-6.776263578034403e-21,3.049318610115481e-20,-0.0001267962798010558,0.0,-9.549767102875558e-23,-8.470329472543003e-22,4.235164736271502e-22,-5.505714157152952e-21,1.152693494077539e-05,5.0,13.0,13.0,0.03876343369483948,-0.01065088715404272,-0.00485448632389307,-0.00485448632389307,0.0008453085320070386,0.0005071851192042232,0.0005071851192042232,0.00016906170640140772,0.0002173650573240593,0.00016906170640140772,-0.01065088715404272,0.010397295467555523,0.0005071851192042232,0.0005071851192042232,-0.0016906170640140772,-0.0002535925596021116,-0.0002535925596021116,0.0,1.6940658945086007e-21,0.0,-0.00485448632389307,0.0005071851192042232,0.0015775433275848627,0.0002173650573240593,0.0,-8.453085320070386e-05,0.0,-9.221547952620313e-05,-3.6227509554009885e-05,0.0,-0.00485448632389307,0.0005071851192042232,0.0002173650573240593,0.0015775433275848627,-0.0,-0.0,-8.453085320070386e-05,5.0976090721185915e-23,-3.6227509554009885e-05,-9.221547952620313e-05,0.0008453085320070386,-0.0016906170640140772,0.0,-0.0,0.0004226542660035193,0.0,0.0,0.0,0.0,0.0,0.0005071851192042232,-0.0002535925596021116,-8.453085320070386e-05,-0.0,0.0,4.226542660035193e-05,1.0587911840678754e-22,0.0,-4.235164736271502e-22,5.770083963738192e-23,0.0005071851192042232,-0.0002535925596021116,0.0,-8.453085320070386e-05,0.0,1.0587911840678754e-22,4.226542660035193e-05,-2.117582368135751e-22,0.0,-8.470329472543003e-22,0.00016906170640140772,0.0,-9.221547952620313e-05,5.0976090721185915e-23,0.0,0.0,-2.117582368135751e-22,7.68462268752046e-06,2.117582368135751e-22,-1.0587911840678754e-22,0.0002173650573240593,1.6940658945086007e-21,-3.6227509554009885e-05,-3.6227509554009885e-05,0.0,-4.235164736271502e-22,0.0,2.117582368135751e-22,6.037917955836747e-06,0.0,0.00016906170640140772,0.0,0.0,-9.221547952620313e-05,0.0,5.770083963738192e-23,-8.470329472543003e-22,-1.0587911840678754e-22,0.0,7.68462268752046e-06,5.0,13.0,14.0,0.03628728538751602,-0.009921506978571415,-0.004521192982792854,-0.004234693944454193,0.0007849293760955334,0.00047095760237425566,0.00043956044828519225,0.00015698587230872363,0.00018838304094970226,0.00013736264372710139,-0.009921506978571415,0.00967032928019762,0.00047095760237425566,0.00043956044828519225,-0.0015698587521910667,-0.00023547880118712783,-0.00021978022414259613,0.0,-1.3552527156068805e-20,-3.3881317890172014e-21,-0.004521192982792854,0.00047095760237425566,0.0014671043027192354,0.00018838304094970226,0.0,-7.849293615436181e-05,-1.1858461261560205e-20,-8.562865696148947e-05,-3.139717591693625e-05,-1.0164395367051604e-20,-0.004234693944454193,0.00043956044828519225,0.00018838304094970226,0.0012696232879534364,-0.0,2.202445323259688e-21,-6.762468547094613e-05,2.756950168580193e-21,-2.8982007279410027e-05,-6.868132186355069e-05,0.0007849293760955334,-0.0015698587521910667,0.0,-0.0,0.0003924646880477667,0.0,0.0,0.0,0.0,0.0,0.00047095760237425566,-0.00023547880118712783,-7.849293615436181e-05,2.202445323259688e-21,0.0,3.924646807718091e-05,-1.1731012944199796e-22,8.470329472543003e-22,-5.027576840852329e-23,-1.5263703733912463e-22,0.00043956044828519225,-0.00021978022414259613,-1.1858461261560205e-20,-6.762468547094613e-05,0.0,-1.1731012944199796e-22,3.3812342735473067e-05,-1.0587911840678754e-22,1.6940658945086007e-21,0.0,0.00015698587230872363,0.0,-8.562865696148947e-05,2.756950168580193e-21,0.0,8.470329472543003e-22,-1.0587911840678754e-22,7.1357212618750054e-06,-2.117582368135751e-22,0.0,0.00018838304094970226,-1.3552527156068805e-20,-3.139717591693625e-05,-2.8982007279410027e-05,0.0,-5.027576840852329e-23,1.6940658945086007e-21,-2.117582368135751e-22,4.830334546568338e-06,1.6940658945086007e-21,0.00013736264372710139,-3.3881317890172014e-21,-1.0164395367051604e-20,-6.868132186355069e-05,0.0,-1.5263703733912463e-22,0.0,0.0,1.6940658945086007e-21,5.283178325043991e-06,5.0,13.0,15.0,0.03410902991890907,-0.009285714477300644,-0.0042307693511247635,-0.003726567607372999,0.0007326007471419871,0.00043956044828519225,0.0003846153849735856,0.00014652014942839742,0.00016483516083098948,0.0001131221724790521,-0.009285714477300644,0.009038461372256279,0.00043956044828519225,0.0003846153849735856,-0.0014652014942839742,-0.00021978022414259613,-0.0001923076924867928,1.6940658945086007e-21,-1.3552527156068805e-20,0.0,-0.0042307693511247635,0.00043956044828519225,0.0013711288338527083,0.00016483516083098948,0.0,-7.326007471419871e-05,-8.470329472543003e-21,-7.992007886059582e-05,-2.7472528017824516e-05,-8.470329472543003e-21,-0.003726567607372999,0.0003846153849735856,0.00016483516083098948,0.0010370657546445727,-0.0,1.7990223107135438e-21,-5.494505603564903e-05,-1.2374445258950525e-21,-2.3547880118712783e-05,-5.221023457124829e-05,0.0007326007471419871,-0.0014652014942839742,0.0,-0.0,0.00036630037357099354,0.0,0.0,0.0,0.0,0.0,0.00043956044828519225,-0.00021978022414259613,-7.326007471419871e-05,1.7990223107135438e-21,0.0,3.6630037357099354e-05,-9.531447859390153e-23,8.470329472543003e-22,-4.084906045141859e-23,-1.1832876975169175e-22,0.0003846153849735856,-0.0001923076924867928,-8.470329472543003e-21,-5.494505603564903e-05,0.0,-9.531447859390153e-23,2.7472528017824516e-05,0.0,1.4823076576950256e-21,-4.235164736271502e-22,0.00014652014942839742,1.6940658945086007e-21,-7.992007886059582e-05,-1.2374445258950525e-21,0.0,8.470329472543003e-22,0.0,6.660006874881219e-06,2.117582368135751e-22,0.0,0.00016483516083098948,-1.3552527156068805e-20,-2.7472528017824516e-05,-2.3547880118712783e-05,0.0,-4.084906045141859e-23,1.4823076576950256e-21,2.117582368135751e-22,3.924646989617031e-06,1.4823076576950256e-21,0.0001131221724790521,0.0,-8.470329472543003e-21,-5.221023457124829e-05,0.0,-1.1832876975169175e-22,-4.235164736271502e-22,0.0,1.4823076576950256e-21,3.72930230696511e-06,5.0,13.0,16.0,0.0321778729557991,-0.008726567961275578,-0.003975436557084322,-0.0033047834876924753,0.0006868132040835917,0.00041208791662938893,0.0003393665247131139,0.00013736264372710139,0.00014544279838446528,9.426847827853635e-05,-0.008726567961275578,0.00848416332155466,0.00041208791662938893,0.0003393665247131139,-0.0013736264081671834,-0.00020604395831469446,-0.00016968326235655695,1.6940658945086007e-21,0.0,-3.3881317890172014e-21,-0.003975436557084322,0.00041208791662938893,0.0012869483325630426,0.00014544279838446528,0.0,-6.868132186355069e-05,-1.6940658945086007e-21,-7.492507575079799e-05,-2.424046579108108e-05,-1.6940658945086007e-21,-0.0033047834876924753,0.0003393665247131139,0.00014544279838446528,0.000858112471178174,-0.0,-2.9771756975624995e-21,-4.5248867536429316e-05,-4.0769997656053717e-22,-1.939237154147122e-05,-4.0400776924798265e-05,0.0006868132040835917,-0.0013736264081671834,0.0,-0.0,0.00034340660204179585,0.0,0.0,0.0,0.0,0.0,0.00041208791662938893,-0.00020604395831469446,-6.868132186355069e-05,-2.9771756975624995e-21,0.0,3.4340660931775346e-05,1.5698854555361753e-22,-8.470329472543003e-22,6.728080433570934e-23,1.4329057546874263e-22,0.0003393665247131139,-0.00016968326235655695,-1.6940658945086007e-21,-4.5248867536429316e-05,0.0,1.5698854555361753e-22,2.2624433768214658e-05,1.0587911840678754e-22,0.0,4.235164736271502e-22,0.00013736264372710139,1.6940658945086007e-21,-7.492507575079799e-05,-4.0769997656053717e-22,0.0,-8.470329472543003e-22,1.0587911840678754e-22,6.243756160984049e-06,-4.235164736271502e-22,1.5881867761018131e-22,0.00014544279838446528,0.0,-2.424046579108108e-05,-1.939237154147122e-05,0.0,6.728080433570934e-23,0.0,-4.235164736271502e-22,3.232061999369762e-06,0.0,9.426847827853635e-05,-3.3881317890172014e-21,-1.6940658945086007e-21,-4.0400776924798265e-05,0.0,1.4329057546874263e-22,4.235164736271502e-22,1.5881867761018131e-22,0.0,2.6933851131616393e-06,5.0,14.0,3.0,0.11608843505382538,-0.03789115697145462,-0.016309523954987526,-0.05428571254014969,0.003401360474526882,0.0019047618843615055,0.0071428571827709675,0.0005952381179668009,0.0028571428265422583,0.0071428571827709675,-0.03789115697145462,0.03935374319553375,0.0019047618843615055,0.0071428571827709675,-0.006802720949053764,-0.0009523809421807528,-0.0035714285913854837,5.261443069375098e-19,2.3852447794681098e-18,2.42861286636753e-17,-0.016309523954987526,0.0019047618843615055,0.00518772890791297,0.0028571428265422583,2.2941575115701486e-18,-0.00029304029885679483,2.3310346708438345e-18,-0.00029761905898340046,-0.00043956044828519225,-6.288372600415926e-18,-0.05428571254014969,0.0071428571827709675,0.0028571428265422583,0.1257142871618271,1.733552849973922e-17,1.240873282430345e-18,-0.0071428571827709675,-4.1992586353381647e-19,-0.0028571428265422583,-0.04285714402794838,0.003401360474526882,-0.006802720949053764,2.2941575115701486e-18,1.733552849973922e-17,0.001700680237263441,-2.846030702774449e-19,-2.6571835077722147e-18,-9.147955830346444e-20,-4.1881307296538537e-19,-4.3647740120912105e-18,0.0019047618843615055,-0.0009523809421807528,-0.00029304029885679483,1.240873282430345e-18,-2.846030702774449e-19,0.00014652014942839742,-4.163979899200661e-19,-3.3881317890172014e-21,-2.7452731894525573e-20,-1.0452795765027339e-19,0.0071428571827709675,-0.0035714285913854837,2.3310346708438345e-18,-0.0071428571827709675,-2.6571835077722147e-18,-4.163979899200661e-19,0.0035714285913854837,-7.182443509245178e-20,-5.149960319306146e-19,-6.5052130349130266e-18,0.0005952381179668009,5.261443069375098e-19,-0.00029761905898340046,-4.1992586353381647e-19,-9.147955830346444e-20,-3.3881317890172014e-21,-7.182443509245178e-20,2.2893773348187096e-05,-1.2194412104736807e-20,3.2536141268401795e-19,0.0028571428265422583,2.3852447794681098e-18,-0.00043956044828519225,-0.0028571428265422583,-4.1881307296538537e-19,-2.7452731894525573e-20,-5.149960319306146e-19,-1.2194412104736807e-20,0.00043956044828519225,1.4094628242311558e-18,0.0071428571827709675,2.42861286636753e-17,-6.288372600415926e-18,-0.04285714402794838,-4.3647740120912105e-18,-1.0452795765027339e-19,-6.5052130349130266e-18,3.2536141268401795e-19,1.4094628242311558e-18,0.02142857201397419,5.0,14.0,4.0,0.0948520377278328,-0.029489796608686447,-0.012660713866353035,-0.03471428528428078,0.0025510203558951616,0.0014285714132711291,0.004285714123398066,0.00044642857392318547,0.001714285695925355,0.0035714285913854837,-0.029489796608686447,0.03005102090537548,0.0014285714132711291,0.004285714123398066,-0.005102040711790323,-0.0007142857066355646,-0.002142857061699033,1.2386533364614058e-19,-1.1519648082658485e-18,-1.5937771935536915e-17,-0.012660713866353035,0.0014285714132711291,0.00395673094317317,0.001714285695925355,-1.1660449732551495e-18,-0.00021978022414259613,-7.318364664277155e-19,-0.00022321428696159273,-0.00026373626315034926,-1.2468324983583301e-18,-0.03471428528428078,0.004285714123398066,0.001714285695925355,0.04814285784959793,-9.117136735083943e-18,-2.8302842858387366e-19,-0.0028571428265422583,-3.9119464968558204e-19,-0.0011428571306169033,-0.010714286006987095,0.0025510203558951616,-0.005102040711790323,-1.1660449732551495e-18,-9.117136735083943e-18,0.0012755101779475808,6.098637220230962e-19,1.3263293115131982e-18,-1.3552527156068805e-20,2.303756167097002e-19,1.3895156739521692e-18,0.0014285714132711291,-0.0007142857066355646,-0.00021978022414259613,-2.8302842858387366e-19,6.098637220230962e-19,0.00010989011207129806,1.4966724245138332e-19,-1.0164395367051604e-20,-2.3798713237360858e-20,6.140483511938196e-20,0.004285714123398066,-0.002142857061699033,-7.318364664277155e-19,-0.0028571428265422583,1.3263293115131982e-18,1.4966724245138332e-19,0.0014285714132711291,6.3846085021715326e-21,2.710505431213761e-19,6.288372600415926e-18,0.00044642857392318547,1.2386533364614058e-19,-0.00022321428696159273,-3.9119464968558204e-19,-1.3552527156068805e-20,-1.0164395367051604e-20,6.3846085021715326e-21,1.7170330465887673e-05,6.22035539333972e-21,1.1066562487071978e-19,0.001714285695925355,-1.1519648082658485e-18,-0.00026373626315034926,-0.0011428571306169033,2.303756167097002e-19,-2.3798713237360858e-20,2.710505431213761e-19,6.22035539333972e-21,0.00017582417058292776,-1.0842021724855044e-19,0.0035714285913854837,-1.5937771935536915e-17,-1.2468324983583301e-18,-0.010714286006987095,1.3895156739521692e-18,6.140483511938196e-20,6.288372600415926e-18,1.1066562487071978e-19,-1.0842021724855044e-19,0.0035714285913854837,5.0,14.0,5.0,0.08030612021684647,-0.02416326478123665,-0.010357142426073551,-0.02416326478123665,0.0020408162381500006,0.0011428571306169033,0.0028571428265422583,0.0003571428533177823,0.0011428571306169033,0.0020408162381500006,-0.02416326478123665,0.02432653121650219,0.0011428571306169033,0.0028571428265422583,-0.004081632476300001,-0.0005714285653084517,-0.0014285714132711291,-2.050666765302661e-18,-5.963111948670274e-19,2.8189256484623115e-18,-0.010357142426073551,0.0011428571306169033,0.0032005493994802237,0.0011428571306169033,-4.440146709507042e-18,-0.00017582417058292776,-1.9888333601530972e-18,-0.00017857142665889114,-0.00017582417058292776,2.222614453595284e-18,-0.02416326478123665,0.0028571428265422583,0.0011428571306169033,0.02432653121650219,2.3852447794681098e-18,2.222614453595284e-18,-0.0014285714132711291,-1.8973538018496328e-19,-0.0005714285653084517,-0.004081632476300001,0.0020408162381500006,-0.004081632476300001,-4.440146709507042e-18,2.3852447794681098e-18,0.0010204081190750003,-9.265707252365355e-21,-4.1737685477744603e-19,3.2864878353466853e-19,9.804634808489259e-21,-3.012043008280486e-19,0.0011428571306169033,-0.0005714285653084517,-0.00017582417058292776,2.222614453595284e-18,-9.265707252365355e-21,8.791208529146388e-05,-1.0164395367051604e-19,5.1420328917340763e-20,-3.3881317890172014e-21,-4.472333961502706e-19,0.0028571428265422583,-0.0014285714132711291,-1.9888333601530972e-18,-0.0014285714132711291,-4.1737685477744603e-19,-1.0164395367051604e-19,0.0007142857066355646,1.3503424939425833e-19,1.8295911660692887e-19,6.640738306473715e-19,0.0003571428533177823,-2.050666765302661e-18,-0.00017857142665889114,-1.8973538018496328e-19,3.2864878353466853e-19,5.1420328917340763e-20,1.3503424939425833e-19,1.3736264008912258e-05,1.3507134004367824e-20,-3.769900198634859e-20,0.0011428571306169033,-5.963111948670274e-19,-0.00017582417058292776,-0.0005714285653084517,9.804634808489259e-21,-3.3881317890172014e-21,1.8295911660692887e-19,1.3507134004367824e-20,8.791208529146388e-05,-3.3203691532368573e-19,0.0020408162381500006,2.8189256484623115e-18,2.222614453595284e-18,-0.004081632476300001,-3.012043008280486e-19,-4.472333961502706e-19,6.640738306473715e-19,-3.769900198634859e-20,-3.3203691532368573e-19,0.0010204081190750003,5.0,14.0,6.0,0.06967686861753464,-0.020476190373301506,-0.008767006918787956,-0.017806122079491615,0.001700680237263441,0.0009523809421807528,0.0020408162381500006,0.00029761905898340046,0.0008163265301845968,0.0012755101779475808,-0.020476190373301506,0.0204421766102314,0.0009523809421807528,0.0020408162381500006,-0.003401360474526882,-0.0004761904710903764,-0.0010204081190750003,2.193815333388638e-19,6.505213034913027e-19,4.391018798566293e-18,-0.008767006918787956,0.0009523809421807528,0.0026880560908466578,0.0008163265301845968,1.3501705179233547e-18,-0.00014652014942839742,3.6930636500287495e-19,-0.00014880952949170023,-0.000125588703667745,-3.2526065174565133e-19,-0.017806122079491615,0.0020408162381500006,0.0008163265301845968,0.014137755148112774,7.209944447028604e-18,4.336808689942018e-19,-0.0008163265301845968,1.2197274440461925e-19,-0.00032653060043230653,-0.0019132653251290321,0.001700680237263441,-0.003401360474526882,1.3501705179233547e-18,7.209944447028604e-18,0.0008503401186317205,-1.2765529426709955e-19,-4.359403128373904e-19,-4.0234064994579266e-20,-1.6377381259680073e-19,-1.0014526783669247e-18,0.0009523809421807528,-0.0004761904710903764,-0.00014652014942839742,4.336808689942018e-19,-1.2765529426709955e-19,7.326007471419871e-05,-1.2197274440461925e-19,-5.204015780698791e-21,-6.776263578034403e-21,-4.0657581468206416e-20,0.0020408162381500006,-0.0010204081190750003,3.6930636500287495e-19,-0.0008163265301845968,-4.359403128373904e-19,-1.2197274440461925e-19,0.0004081632650922984,-9.270703455576918e-21,0.0,-2.0328790734103208e-20,0.00029761905898340046,2.193815333388638e-19,-0.00014880952949170023,1.2197274440461925e-19,-4.0234064994579266e-20,-5.204015780698791e-21,-9.270703455576918e-21,1.1446886674093548e-05,-3.360594308268393e-21,-1.8425063634880825e-20,0.0008163265301845968,6.505213034913027e-19,-0.000125588703667745,-0.00032653060043230653,-1.6377381259680073e-19,-6.776263578034403e-21,0.0,-3.360594308268393e-21,5.023547782911919e-05,2.913793338554793e-19,0.0012755101779475808,4.391018798566293e-18,-3.2526065174565133e-19,-0.0019132653251290321,-1.0014526783669247e-18,-4.0657581468206416e-20,-2.0328790734103208e-20,-1.8425063634880825e-20,2.913793338554793e-19,0.00038265305920504034,5.0,14.0,7.0,0.061554908752441406,-0.01776967942714691,-0.007602040655910969,-0.013673469424247742,0.0014577260008081794,0.0008163265301845968,0.0015306122368201613,0.00025510202976875007,0.0006122448830865324,0.0008503401186317205,-0.01776967942714691,0.01763119548559189,0.0008163265301845968,0.0015306122368201613,-0.0029154520016163588,-0.0004081632650922984,-0.0007653061184100807,7.284483346386983e-20,2.981555974335137e-19,-1.0842021724855044e-19,-0.007602040655910969,0.0008163265301845968,0.0023175040259957314,0.0006122448830865324,1.2366681029912785e-19,-0.000125588703667745,5.149960319306146e-19,-0.00012755101488437504,-9.419152047485113e-05,-9.0801931945661e-19,-0.013673469424247742,0.0015306122368201613,0.0006122448830865324,0.00897959154099226,-1.6263032587282567e-19,1.8973538018496328e-19,-0.0005102040595375001,-2.371692252312041e-19,-0.0002040816325461492,-0.0010204081190750003,0.0014577260008081794,-0.0029154520016163588,1.2366681029912785e-19,-1.6263032587282567e-19,0.0007288630004040897,2.8967008790426066e-20,-1.4796721827152492e-19,-8.893845946170154e-21,-1.8300136744165443e-20,1.1007987759945567e-19,0.0008163265301845968,-0.0004081632650922984,-0.000125588703667745,1.8973538018496328e-19,2.8967008790426066e-20,6.27943518338725e-05,-8.809142651444724e-20,7.951470537847922e-22,-3.3881317890172014e-21,1.6940658945086007e-21,0.0015306122368201613,-0.0007653061184100807,5.149960319306146e-19,-0.0005102040595375001,-1.4796721827152492e-19,-8.809142651444724e-20,0.00025510202976875007,-1.2594695627585014e-20,-5.759824041329242e-20,-8.470329472543003e-20,0.00025510202976875007,7.284483346386983e-20,-0.00012755101488437504,-2.371692252312041e-19,-8.893845946170154e-21,7.951470537847922e-22,-1.2594695627585014e-20,9.811617019295227e-06,8.128722660759034e-22,4.2294500814614967e-20,0.0006122448830865324,2.981555974335137e-19,-9.419152047485113e-05,-0.0002040816325461492,-1.8300136744165443e-20,-3.3881317890172014e-21,-5.759824041329242e-20,8.128722660759034e-22,3.139717591693625e-05,8.470329472543003e-20,0.0008503401186317205,-1.0842021724855044e-19,-9.0801931945661e-19,-0.0010204081190750003,1.1007987759945567e-19,1.6940658945086007e-21,-8.470329472543003e-20,4.2294500814614967e-20,8.470329472543003e-20,0.0001700680295471102,5.0,14.0,8.0,0.05514030531048775,-0.015697278082370758,-0.006711309310048819,-0.010833333246409893,0.0012755101779475808,0.0007142857066355646,0.0011904762359336019,0.00022321428696159273,0.0004761904710903764,0.0005952381179668009,-0.015697278082370758,0.015501700341701508,0.0007142857066355646,0.0011904762359336019,-0.0025510203558951616,-0.0003571428533177823,-0.0005952381179668009,1.7618285302889447e-19,2.439454888092385e-19,-3.5236570605778894e-19,-0.006711309310048819,0.0007142857066355646,0.0020369733683764935,0.0004761904710903764,-5.30242624981192e-19,-0.00010989011207129806,1.6940658945086007e-19,-0.00011160714348079637,-7.326007471419871e-05,2.0328790734103208e-19,-0.010833333246409893,0.0011904762359336019,0.0004761904710903764,0.006071428768336773,-2.3852447794681098e-18,3.2526065174565133e-19,-0.0003401360590942204,1.4230153513872246e-19,-0.0001360544265480712,-0.0005952381179668009,0.0012755101779475808,-0.0025510203558951616,-5.30242624981192e-19,-2.3852447794681098e-18,0.0006377550889737904,3.013954570977308e-19,3.73645909592693e-19,-1.5670109524204556e-20,9.051412543751568e-21,2.123030903433061e-19,0.0007142857066355646,-0.0003571428533177823,-0.00010989011207129806,3.2526065174565133e-19,3.013954570977308e-19,5.494505603564903e-05,1.0164395367051604e-20,-8.113103770193736e-21,-1.6093625997831706e-20,-2.879912020664621e-20,0.0011904762359336019,-0.0005952381179668009,1.6940658945086007e-19,-0.0003401360590942204,3.73645909592693e-19,1.0164395367051604e-20,0.0001700680295471102,-6.253490277662291e-21,-3.8963515573697816e-20,-7.284483346386983e-20,0.00022321428696159273,1.7618285302889447e-19,-0.00011160714348079637,1.4230153513872246e-19,-1.5670109524204556e-20,-8.113103770193736e-21,-6.253490277662291e-21,8.585165232943837e-06,-7.844963965788009e-21,-1.0229721632810553e-20,0.0004761904710903764,2.439454888092385e-19,-7.326007471419871e-05,-0.0001360544265480712,9.051412543751568e-21,-1.6093625997831706e-20,-3.8963515573697816e-20,-7.844963965788009e-21,2.093144939863123e-05,-1.6940658945086007e-20,0.0005952381179668009,-3.5236570605778894e-19,2.0328790734103208e-19,-0.0005952381179668009,2.123030903433061e-19,-2.879912020664621e-20,-7.284483346386983e-20,-1.0229721632810553e-20,-1.6940658945086007e-20,8.50340147735551e-05,5.0,14.0,9.0,0.049942899495363235,-0.014058956876397133,-0.00600793631747365,-0.00879653636366129,0.0011337868636474013,0.0006349206087179482,0.0009523809421807528,0.00019841270113829523,0.0003809523768723011,0.00043290044413879514,-0.014058956876397133,0.01383219938725233,0.0006349206087179482,0.0009523809421807528,-0.0022675737272948027,-0.0003174603043589741,-0.0004761904710903764,-4.235164736271502e-21,0.0,-0.0,-0.00600793631747365,0.0006349206087179482,0.0018171550473198295,0.0003809523768723011,0.0,-9.76800947682932e-05,0.0,-9.920635056914762e-05,-5.860805686097592e-05,-0.0,-0.00879653636366129,0.0009523809421807528,0.0003809523768723011,0.004301793407648802,0.0,6.215303553346234e-22,-0.0002380952355451882,0.0,-9.523809421807528e-05,-0.0003710575110744685,0.0011337868636474013,-0.0022675737272948027,0.0,0.0,0.0005668934318237007,0.0,0.0,0.0,0.0,-0.0,0.0006349206087179482,-0.0003174603043589741,-9.76800947682932e-05,6.215303553346234e-22,0.0,4.88400473841466e-05,0.0,0.0,-4.235164736271502e-22,-0.0,0.0009523809421807528,-0.0004761904710903764,0.0,-0.0002380952355451882,0.0,0.0,0.0001190476177725941,0.0,0.0,-0.0,0.00019841270113829523,-4.235164736271502e-21,-9.920635056914762e-05,0.0,0.0,0.0,0.0,7.631258085893933e-06,0.0,-0.0,0.0003809523768723011,0.0,-5.860805686097592e-05,-9.523809421807528e-05,0.0,-4.235164736271502e-22,0.0,0.0,1.465201421524398e-05,-0.0,0.00043290044413879514,-0.0,-0.0,-0.0003710575110744685,-0.0,-0.0,-0.0,-0.0,-0.0,4.638218888430856e-05,5.0,14.0,10.0,0.04564471170306206,-0.012730983085930347,-0.005438311491161585,-0.007285714149475098,0.0010204081190750003,0.0005714285653084517,0.0007792207761667669,0.00017857142665889114,0.00031168831628747284,0.0003246753185521811,-0.012730983085930347,0.012487940490245819,0.0005714285653084517,0.0007792207761667669,-0.0020408162381500006,-0.0002857142826542258,-0.00038961038808338344,-1.6940658945086007e-21,0.0,-0.0,-0.005438311491161585,0.0005714285653084517,0.0016402347246184945,0.00031168831628747284,0.0,-8.791208529146388e-05,0.0,-8.928571332944557e-05,-4.795204949914478e-05,-0.0,-0.007285714149475098,0.0007792207761667669,0.00031168831628747284,0.0031612555030733347,0.0,-5.093551928928604e-22,-0.00017316016601398587,-3.3881317890172014e-21,-6.926406786078587e-05,-0.00024350649619009346,0.0010204081190750003,-0.0020408162381500006,0.0,0.0,0.0005102040595375001,0.0,0.0,0.0,0.0,-0.0,0.0005714285653084517,-0.0002857142826542258,-8.791208529146388e-05,-5.093551928928604e-22,0.0,4.395604264573194e-05,0.0,-8.470329472543003e-22,0.0,-0.0,0.0007792207761667669,-0.00038961038808338344,0.0,-0.00017316016601398587,0.0,0.0,8.658008300699294e-05,0.0,0.0,-0.0,0.00017857142665889114,-1.6940658945086007e-21,-8.928571332944557e-05,-3.3881317890172014e-21,0.0,-8.470329472543003e-22,0.0,6.868132004456129e-06,0.0,-0.0,0.00031168831628747284,0.0,-4.795204949914478e-05,-6.926406786078587e-05,0.0,0.0,0.0,0.0,1.065601099980995e-05,-0.0,0.0003246753185521811,-0.0,-0.0,-0.00024350649619009346,-0.0,-0.0,-0.0,-0.0,-0.0,2.7056277758674696e-05,5.0,14.0,11.0,0.04203011095523834,-0.011632652953267097,-0.0049675325863063335,-0.0061338660307228565,0.0009276437922380865,0.0005194804980419576,0.0006493506371043622,0.00016233765927609056,0.0002597402490209788,0.00024975024280138314,-0.011632652953267097,0.011382189579308033,0.0005194804980419576,0.0006493506371043622,-0.001855287584476173,-0.0002597402490209788,-0.0003246753185521811,-8.470329472543003e-22,3.3881317890172014e-21,-0.0,-0.0049675325863063335,0.0005194804980419576,0.001494755269959569,0.0002597402490209788,0.0,-7.992007886059582e-05,0.0,-8.116882963804528e-05,-3.996003943029791e-05,-0.0,-0.0061338660307228565,0.0006493506371043622,0.0002597402490209788,0.0023922743275761604,0.0,2.72041003047616e-21,-0.0001298701245104894,3.3881317890172014e-21,-5.194805271457881e-05,-0.00016650016186758876,0.0009276437922380865,-0.001855287584476173,0.0,0.0,0.00046382189611904323,0.0,0.0,0.0,0.0,-0.0,0.0005194804980419576,-0.0002597402490209788,-7.992007886059582e-05,2.72041003047616e-21,0.0,3.996003943029791e-05,0.0,-8.470329472543003e-22,0.0,-0.0,0.0006493506371043622,-0.0003246753185521811,0.0,-0.0001298701245104894,0.0,0.0,6.49350622552447e-05,0.0,0.0,-0.0,0.00016233765927609056,-8.470329472543003e-22,-8.116882963804528e-05,3.3881317890172014e-21,0.0,-8.470329472543003e-22,0.0,6.243756160984049e-06,-4.235164736271502e-22,-0.0,0.0002597402490209788,3.3881317890172014e-21,-3.996003943029791e-05,-5.194805271457881e-05,0.0,0.0,0.0,-4.235164736271502e-22,7.992008249857463e-06,-0.0,0.00024975024280138314,-0.0,-0.0,-0.00016650016186758876,-0.0,-0.0,-0.0,-0.0,-0.0,1.6650015822960995e-05,5.0,14.0,12.0,0.038947541266679764,-0.01070905290544033,-0.004571886267513037,-0.00523547874763608,0.0008503401186317205,0.0004761904710903764,0.0005494505749084055,0.00014880952949170023,0.00021978022414259613,0.00019623234402388334,-0.01070905290544033,0.010456567630171776,0.0004761904710903764,0.0005494505749084055,-0.001700680237263441,-0.0002380952355451882,-0.00027472528745420277,1.3891340334970526e-19,3.1509625637859973e-19,3.6591823321385775e-19,-0.004571886267513037,0.0004761904710903764,0.0013730099890381098,0.00021978022414259613,1.0406949538070528e-18,-7.326007471419871e-05,1.0164395367051604e-20,-7.440476474585012e-05,-3.3812342735473067e-05,1.5077186461126546e-19,-0.00523547874763608,0.0005494505749084055,0.00021978022414259613,0.0018545739585533738,1.6109690879303252e-18,7.652682762784503e-20,-9.990009857574478e-05,-4.858394032938707e-21,-3.996003943029791e-05,-0.00011773940059356391,0.0008503401186317205,-0.001700680237263441,1.0406949538070528e-18,1.6109690879303252e-18,0.00042517005931586027,-2.6115734990414253e-20,-3.5612364574175417e-20,-3.540251919252837e-20,-7.069077760059932e-20,-8.092004848459951e-20,0.0004761904710903764,-0.0002380952355451882,-7.326007471419871e-05,7.652682762784503e-20,-2.6115734990414253e-20,3.6630037357099354e-05,6.0421347259418386e-21,8.470329472543003e-22,-1.6489042766387454e-21,-6.390745309899624e-21,0.0005494505749084055,-0.00027472528745420277,1.0164395367051604e-20,-9.990009857574478e-05,-3.5612364574175417e-20,6.0421347259418386e-21,4.995004928787239e-05,-2.117582368135751e-22,-3.8116482626443515e-21,8.470329472543003e-22,0.00014880952949170023,1.3891340334970526e-19,-7.440476474585012e-05,-4.858394032938707e-21,-3.540251919252837e-20,8.470329472543003e-22,-2.117582368135751e-22,5.723443337046774e-06,5.293955920339377e-21,-3.0704944337968387e-21,0.00021978022414259613,3.1509625637859973e-19,-3.3812342735473067e-05,-3.996003943029791e-05,-7.069077760059932e-20,-1.6489042766387454e-21,-3.8116482626443515e-21,5.293955920339377e-21,6.147698513814248e-06,-2.0328790734103208e-20,0.00019623234402388334,3.6591823321385775e-19,1.5077186461126546e-19,-0.00011773940059356391,-8.092004848459951e-20,-6.390745309899624e-21,8.470329472543003e-22,-3.0704944337968387e-21,-2.0328790734103208e-20,1.0703582120186184e-05,5.0,14.0,13.0,0.03628728538751602,-0.009921506978571415,-0.004234693944454193,-0.004521192982792854,0.0007849293760955334,0.00043956044828519225,0.00047095760237425566,0.00013736264372710139,0.00018838304094970226,0.00015698587230872363,-0.009921506978571415,0.00967032928019762,0.00043956044828519225,0.00047095760237425566,-0.0015698587521910667,-0.00021978022414259613,-0.00023547880118712783,-5.082197683525802e-21,1.3552527156068805e-20,6.776263578034403e-21,-0.004234693944454193,0.00043956044828519225,0.0012696232879534364,0.00018838304094970226,0.0,-6.762468547094613e-05,1.3552527156068805e-20,-6.868132186355069e-05,-2.8982007279410027e-05,1.8634724839594607e-20,-0.004521192982792854,0.00047095760237425566,0.00018838304094970226,0.0014671043027192354,-0.0,-0.0,-7.849293615436181e-05,-2.3118958989743368e-21,-3.139717591693625e-05,-8.562865696148947e-05,0.0007849293760955334,-0.0015698587521910667,0.0,-0.0,0.0003924646880477667,0.0,0.0,0.0,0.0,0.0,0.00043956044828519225,-0.00021978022414259613,-6.762468547094613e-05,-0.0,0.0,3.3812342735473067e-05,0.0,4.235164736271502e-22,0.0,-8.83734050848322e-23,0.00047095760237425566,-0.00023547880118712783,1.3552527156068805e-20,-7.849293615436181e-05,0.0,0.0,3.924646807718091e-05,0.0,-2.541098841762901e-21,0.0,0.00013736264372710139,-5.082197683525802e-21,-6.868132186355069e-05,-2.3118958989743368e-21,0.0,4.235164736271502e-22,0.0,5.283178325043991e-06,2.117582368135751e-22,-1.0587911840678754e-22,0.00018838304094970226,1.3552527156068805e-20,-2.8982007279410027e-05,-3.139717591693625e-05,0.0,0.0,-2.541098841762901e-21,2.117582368135751e-22,4.830334546568338e-06,-3.3881317890172014e-21,0.00015698587230872363,6.776263578034403e-21,1.8634724839594607e-20,-8.562865696148947e-05,0.0,-8.83734050848322e-23,0.0,-1.0587911840678754e-22,-3.3881317890172014e-21,7.1357212618750054e-06,5.0,14.0,14.0,0.03396793082356453,-0.009241982363164425,-0.003943877760320902,-0.003943877760320902,0.0007288630004040897,0.0004081632650922984,0.0004081632650922984,0.00012755101488437504,0.00016326530021615326,0.00012755101488437504,-0.009241982363164425,0.008994169533252716,0.0004081632650922984,0.0004081632650922984,-0.0014577260008081794,-0.0002040816325461492,-0.0002040816325461492,1.2536087619363645e-19,1.6601845766184287e-19,1.2197274440461925e-19,-0.003943877760320902,0.0004081632650922984,0.0011807299451902509,0.00016326530021615326,7.048523355813755e-19,-6.27943518338725e-05,-4.0657581468206416e-20,-6.377550744218752e-05,-2.5117738914559595e-05,-4.404571325722362e-20,-0.003943877760320902,0.0004081632650922984,0.00016326530021615326,0.0011807299451902509,7.048523355813755e-19,-3.595939915288409e-20,-6.27943518338725e-05,-7.270251154648383e-21,-2.5117738914559595e-05,-6.377550744218752e-05,0.0007288630004040897,-0.0014577260008081794,7.048523355813755e-19,7.048523355813755e-19,0.00036443150020204484,4.699206274447788e-20,4.699206274447788e-20,-3.034501737393125e-20,-4.3821317897848734e-20,-3.034501737393125e-20,0.0004081632650922984,-0.0002040816325461492,-6.27943518338725e-05,-3.595939915288409e-20,4.699206274447788e-20,3.139717591693625e-05,1.752958569182962e-20,4.235164736271502e-22,3.4144994837068754e-22,2.42200902949695e-23,0.0004081632650922984,-0.0002040816325461492,-4.0657581468206416e-20,-6.27943518338725e-05,4.699206274447788e-20,1.752958569182962e-20,3.139717591693625e-05,1.0587911840678754e-22,6.352747104407253e-22,0.0,0.00012755101488437504,1.2536087619363645e-19,-6.377550744218752e-05,-7.270251154648383e-21,-3.034501737393125e-20,4.235164736271502e-22,1.0587911840678754e-22,4.905808509647613e-06,-1.9058241313221758e-21,1.0587911840678754e-21,0.00016326530021615326,1.6601845766184287e-19,-2.5117738914559595e-05,-2.5117738914559595e-05,-4.3821317897848734e-20,3.4144994837068754e-22,6.352747104407253e-22,-1.9058241313221758e-21,3.86426745535573e-06,3.5998900258307764e-21,0.00012755101488437504,1.2197274440461925e-19,-4.404571325722362e-20,-6.377550744218752e-05,-3.034501737393125e-20,2.42200902949695e-23,0.0,1.0587911840678754e-21,3.5998900258307764e-21,4.905808509647613e-06,5.0,14.0,15.0,0.031927771866321564,-0.008649660274386406,-0.003690476296469569,-0.003470588242635131,0.0006802721181884408,0.0003809523768723011,0.0003571428533177823,0.0001190476177725941,0.0001428571413271129,0.0001050420178216882,-0.008649660274386406,0.008406462147831917,0.0003809523768723011,0.0003571428533177823,-0.0013605442363768816,-0.00019047618843615055,-0.00017857142665889114,0.0,-1.4399560103323106e-20,-6.776263578034403e-21,-0.003690476296469569,0.0003809523768723011,0.0011034798808395863,0.0001428571413271129,0.0,-5.860805686097592e-05,-1.3552527156068805e-20,-5.952380888629705e-05,-2.197802132286597e-05,-1.2705494208814505e-20,-0.003470588242635131,0.0003571428533177823,0.0001428571413271129,0.0009644473320804536,-0.0,-0.0,-5.10204081365373e-05,7.8892058097077e-22,-2.0408162527019158e-05,-4.848093158216216e-05,0.0006802721181884408,-0.0013605442363768816,0.0,-0.0,0.0003401360590942204,0.0,0.0,0.0,0.0,0.0,0.0003809523768723011,-0.00019047618843615055,-5.860805686097592e-05,-0.0,0.0,2.930402843048796e-05,-5.293955920339377e-23,0.0,0.0,-1.3082873148968733e-23,0.0003571428533177823,-0.00017857142665889114,-1.3552527156068805e-20,-5.10204081365373e-05,0.0,-5.293955920339377e-23,2.551020406826865e-05,-1.5881867761018131e-22,2.0117032497289633e-21,0.0,0.0001190476177725941,0.0,-5.952380888629705e-05,7.8892058097077e-22,0.0,0.0,-1.5881867761018131e-22,4.578754669637419e-06,2.117582368135751e-22,-1.5881867761018131e-22,0.0001428571413271129,-1.4399560103323106e-20,-2.197802132286597e-05,-2.0408162527019158e-05,0.0,0.0,2.0117032497289633e-21,2.117582368135751e-22,3.1397173643199494e-06,1.9058241313221758e-21,0.0001050420178216882,-6.776263578034403e-21,-1.2705494208814505e-20,-4.848093158216216e-05,0.0,-1.3082873148968733e-23,0.0,-1.5881867761018131e-22,1.9058241313221758e-21,3.462923586994293e-06,5.0,14.0,16.0,0.030119173228740692,-0.008128751069307327,-0.0034676995128393173,-0.0030777310021221638,0.0006377550889737904,0.0003571428533177823,0.00031512606074102223,0.00011160714348079637,0.00012605042138602585,8.753501606406644e-05,-0.008128751069307327,0.007890906184911728,0.0003571428533177823,0.00031512606074102223,-0.0012755101779475808,-0.00017857142665889114,-0.00015756303037051111,5.929230630780102e-21,-1.0164395367051604e-20,6.776263578034403e-21,-0.0034676995128393173,0.0003571428533177823,0.0010357244173064828,0.00012605042138602585,0.0,-5.494505603564903e-05,-1.1011428314305904e-20,-5.5803571740398183e-05,-1.939237154147122e-05,-1.1011428314305904e-20,-0.0030777310021221638,0.00031512606074102223,0.00012605042138602585,0.0007980192312970757,-0.0,-0.0,-4.201680712867528e-05,1.5190196538804266e-21,-1.6806723579065874e-05,-3.751500480575487e-05,0.0006377550889737904,-0.0012755101779475808,0.0,-0.0,0.0003188775444868952,0.0,0.0,0.0,0.0,0.0,0.0003571428533177823,-0.00017857142665889114,-5.494505603564903e-05,-0.0,0.0,2.7472528017824516e-05,0.0,0.0,0.0,1.8630807255365084e-23,0.00031512606074102223,-0.00015756303037051111,-1.1011428314305904e-20,-4.201680712867528e-05,0.0,0.0,2.100840356433764e-05,0.0,1.4823076576950256e-21,-4.235164736271502e-22,0.00011160714348079637,5.929230630780102e-21,-5.5803571740398183e-05,1.5190196538804266e-21,0.0,0.0,0.0,4.292582616471918e-06,-3.1763735522036263e-22,5.293955920339377e-23,0.00012605042138602585,-1.0164395367051604e-20,-1.939237154147122e-05,-1.6806723579065874e-05,0.0,0.0,1.4823076576950256e-21,-3.1763735522036263e-22,2.5856495540210744e-06,1.376428539288238e-21,8.753501606406644e-05,6.776263578034403e-21,-1.1011428314305904e-20,-3.751500480575487e-05,0.0,1.8630807255365084e-23,-4.235164736271502e-22,5.293955920339377e-23,1.376428539288238e-21,2.501000381016638e-06,5.0,15.0,3.0,0.10927404463291168,-0.035476189106702805,-0.014362744987010956,-0.050833333283662796,0.0031746032182127237,0.0016666667070239782,0.006666666828095913,0.0004901961074210703,0.0024999999441206455,0.006666666828095913,-0.035476189106702805,0.03678571432828903,0.0016666667070239782,0.006666666828095913,-0.0063492064364254475,-0.0008333333535119891,-0.0033333334140479565,-9.949846429646428e-19,-1.0842021724855044e-19,1.691355389077387e-17,-0.014362744987010956,0.0016666667070239782,0.004238849505782127,0.0024999999441206455,-2.341758447100125e-18,-0.0002380952355451882,-1.4094628242311558e-18,-0.0002262443449581042,-0.0003571428533177823,1.6263032587282567e-18,-0.050833333283662796,0.006666666828095913,0.0024999999441206455,0.11749999970197678,8.200294707213842e-18,2.521108574694485e-18,-0.006666666828095913,-1.0533222277491928e-19,-0.0024999999441206455,-0.03999999910593033,0.0031746032182127237,-0.0063492064364254475,-2.341758447100125e-18,8.200294707213842e-18,0.0015873016091063619,9.486769009248164e-20,-3.0832575721545905e-19,1.4568966692773966e-19,-5.2742987485638787e-20,-3.2348045566986065e-18,0.0016666667070239782,-0.0008333333535119891,-0.0002380952355451882,2.521108574694485e-18,9.486769009248164e-20,0.0001190476177725941,-1.0500111142300225e-19,3.049318610115481e-20,-2.952414078237467e-20,-9.650759633638333e-19,0.006666666828095913,-0.0033333334140479565,-1.4094628242311558e-18,-0.006666666828095913,-3.0832575721545905e-19,-1.0500111142300225e-19,0.0033333334140479565,8.652799053323666e-20,4.607859233063394e-19,2.6020852139652106e-18,0.0004901961074210703,-9.949846429646428e-19,-0.0002262443449581042,-1.0533222277491928e-19,1.4568966692773966e-19,3.049318610115481e-20,8.652799053323666e-20,1.6160311133717187e-05,9.666262193852056e-21,-6.617598058084514e-20,0.0024999999441206455,-1.0842021724855044e-19,-0.0003571428533177823,-0.0024999999441206455,-5.2742987485638787e-20,-2.952414078237467e-20,4.607859233063394e-19,9.666262193852056e-21,0.0003571428533177823,7.589415207398531e-19,0.006666666828095913,1.691355389077387e-17,1.6263032587282567e-18,-0.03999999910593033,-3.2348045566986065e-18,-9.650759633638333e-19,2.6020852139652106e-18,-6.617598058084514e-20,7.589415207398531e-19,0.019999999552965164,5.0,15.0,4.0,0.0892471969127655,-0.02760714292526245,-0.011147058568894863,-0.032499998807907104,0.0023809524718672037,0.0012499999720603228,0.004000000189989805,0.0003676470660138875,0.001500000013038516,0.0033333334140479565,-0.02760714292526245,0.028089284896850586,0.0012499999720603228,0.004000000189989805,-0.004761904943734407,-0.0006249999860301614,-0.0020000000949949026,-2.293589341886901e-19,1.5585406229479126e-18,8.998878031629687e-18,-0.011147058568894863,0.0012499999720603228,0.0032327084336429834,0.001500000013038516,1.088347588125314e-18,-0.00017857142665889114,1.8973538018496328e-19,-0.00016968326235655695,-0.00021428571199066937,-2.0057740190981832e-18,-0.032499998807907104,0.004000000189989805,0.001500000013038516,0.04500000178813934,1.2039839636016545e-17,1.7738722800077168e-18,-0.0026666666381061077,2.4412648626702276e-19,-0.0010000000474974513,-0.009999999776482582,0.0023809524718672037,-0.004761904943734407,1.088347588125314e-18,1.2039839636016545e-17,0.0011904762359336019,-4.404571325722362e-19,-1.0202624553036508e-18,1.6940658945086007e-20,-3.084789924239345e-19,-2.246083635524945e-18,0.0012499999720603228,-0.0006249999860301614,-0.00017857142665889114,1.7738722800077168e-18,-4.404571325722362e-19,8.928571332944557e-05,-1.8755307093389525e-19,1.0164395367051604e-20,-3.5461817702690766e-20,-3.387162695230807e-19,0.004000000189989805,-0.0020000000949949026,1.8973538018496328e-19,-0.0026666666381061077,-1.0202624553036508e-18,-1.8755307093389525e-19,0.0013333333190530539,1.9830052523522017e-20,6.776263578034403e-21,1.951563910473908e-18,0.0003676470660138875,-2.293589341886901e-19,-0.00016968326235655695,2.4412648626702276e-19,1.6940658945086007e-20,1.0164395367051604e-20,1.9830052523522017e-20,1.212023289554054e-05,-5.997147162342111e-23,-9.294376492291133e-20,0.001500000013038516,1.5585406229479126e-18,-0.00021428571199066937,-0.0010000000474974513,-3.084789924239345e-19,-3.5461817702690766e-20,6.776263578034403e-21,-5.997147162342111e-23,0.0001428571413271129,2.6291902682773483e-18,0.0033333334140479565,8.998878031629687e-18,-2.0057740190981832e-18,-0.009999999776482582,-2.246083635524945e-18,-3.387162695230807e-19,1.951563910473908e-18,-9.294376492291133e-20,2.6291902682773483e-18,0.0033333334140479565,5.0,15.0,5.0,0.07554061710834503,-0.02261904813349247,-0.00911764707416296,-0.02261904813349247,0.0019047618843615055,0.0010000000474974513,0.0026666666381061077,0.00029411763534881175,0.0010000000474974513,0.0019047618843615055,-0.02261904813349247,0.022738095372915268,0.0010000000474974513,0.0026666666381061077,-0.003809523768723011,-0.0005000000237487257,-0.0013333333190530539,-8.03834266944331e-19,1.0842021724855044e-19,5.312590645178972e-18,-0.00911764707416296,0.0010000000474974513,0.0026147381868213415,0.0010000000474974513,-1.9922214919421144e-18,-0.0001428571413271129,-1.1214716221646936e-18,-0.00013574660988524556,-0.0001428571413271129,-1.3823577699190182e-18,-0.02261904813349247,0.0026666666381061077,0.0010000000474974513,0.022738095372915268,7.589415207398531e-18,-2.710505431213761e-19,-0.0013333333190530539,-3.4558944247975454e-19,-0.0005000000237487257,-0.003809523768723011,0.0019047618843615055,-0.003809523768723011,-1.9922214919421144e-18,7.589415207398531e-18,0.0009523809421807528,2.54243034405517e-19,-3.721372097035787e-19,1.283254915090265e-19,-1.717387088656797e-19,-1.290309628342e-18,0.0010000000474974513,-0.0005000000237487257,-0.0001428571413271129,-2.710505431213761e-19,2.54243034405517e-19,7.142857066355646e-05,1.2874900798265365e-19,2.5393186263000647e-20,2.710505431213761e-20,-1.3552527156068805e-20,0.0026666666381061077,-0.0013333333190530539,-1.1214716221646936e-18,-0.0013333333190530539,-3.721372097035787e-19,1.2874900798265365e-19,0.0006666666595265269,3.3549505373438877e-20,1.0842021724855044e-19,-2.710505431213761e-20,0.00029411763534881175,-8.03834266944331e-19,-0.00013574660988524556,-3.4558944247975454e-19,1.283254915090265e-19,2.5393186263000647e-20,3.3549505373438877e-20,9.69618577073561e-06,7.07535076178341e-21,6.050877879613682e-20,0.0010000000474974513,1.0842021724855044e-19,-0.0001428571413271129,-0.0005000000237487257,-1.717387088656797e-19,2.710505431213761e-20,1.0842021724855044e-19,7.07535076178341e-21,7.142857066355646e-05,2.270048298641525e-19,0.0019047618843615055,5.312590645178972e-18,-1.3823577699190182e-18,-0.003809523768723011,-1.290309628342e-18,-1.3552527156068805e-20,-2.710505431213761e-20,6.050877879613682e-20,2.270048298641525e-19,0.0009523809421807528,5.0,15.0,6.0,0.06552987545728683,-0.019166667014360428,-0.007717086933553219,-0.01666666753590107,0.0015873016091063619,0.0008333333535119891,0.0019047618843615055,0.00024509805371053517,0.0007142857066355646,0.0011904762359336019,-0.019166667014360428,0.019107142463326454,0.0008333333535119891,0.0019047618843615055,-0.0031746032182127237,-0.00041666667675599456,-0.0009523809421807528,-4.989024059327829e-19,1.0842021724855044e-19,2.710505431213761e-18,-0.007717086933553219,0.0008333333535119891,0.002195955254137516,0.0007142857066355646,-1.212951180468158e-18,-0.0001190476177725941,-3.9810548520952116e-19,-0.0001131221724790521,-0.0001020408162730746,7.047314121155779e-19,-0.01666666753590107,0.0019047618843615055,0.0007142857066355646,0.013214285485446453,1.951563910473908e-18,1.4365678785432934e-18,-0.0007619047537446022,-1.4230153513872246e-19,-0.0002857142826542258,-0.0017857142956927419,0.0015873016091063619,-0.0031746032182127237,-1.212951180468158e-18,1.951563910473908e-18,0.0007936508045531809,3.59270712543349e-20,-2.827051819101244e-19,6.310395457044538e-20,4.041200899268047e-20,-3.0832772176941387e-19,0.0008333333535119891,-0.00041666667675599456,-0.0001190476177725941,1.4365678785432934e-18,3.59270712543349e-20,5.952380888629705e-05,-5.421010862427522e-20,1.2549817848179745e-20,-2.879912020664621e-20,-2.0159384144652348e-19,0.0019047618843615055,-0.0009523809421807528,-3.9810548520952116e-19,-0.0007619047537446022,-2.827051819101244e-19,-5.421010862427522e-20,0.0003809523768723011,3.7530980924423754e-20,-3.7269449679189215e-20,-1.0164395367051604e-19,0.00024509805371053517,-4.989024059327829e-19,-0.0001131221724790521,-1.4230153513872246e-19,6.310395457044538e-20,1.2549817848179745e-20,3.7530980924423754e-20,8.080155566858593e-06,5.063597024956513e-21,6.126319336417932e-21,0.0007142857066355646,1.0842021724855044e-19,-0.0001020408162730746,-0.0002857142826542258,4.041200899268047e-20,-2.879912020664621e-20,-3.7269449679189215e-20,5.063597024956513e-21,4.0816325054038316e-05,-1.1689054672109345e-19,0.0011904762359336019,2.710505431213761e-18,7.047314121155779e-19,-0.0017857142956927419,-3.0832772176941387e-19,-2.0159384144652348e-19,-1.0164395367051604e-19,6.126319336417932e-21,-1.1689054672109345e-19,0.0003571428533177823,5.0,15.0,7.0,0.05788331851363182,-0.016632653772830963,-0.0066911764442920685,-0.012797619216144085,0.0013605442363768816,0.0007142857066355646,0.0014285714132711291,0.0002100840356433764,0.0005357142654247582,0.0007936508045531809,-0.016632653772830963,0.01647959090769291,0.0007142857066355646,0.0014285714132711291,-0.002721088472753763,-0.0003571428533177823,-0.0007142857066355646,1.6788193014580233e-18,1.328147661294743e-18,-2.168404344971009e-19,-0.0066911764442920685,0.0007142857066355646,0.001893180306069553,0.0005357142654247582,5.319366908757006e-18,-0.0001020408162730746,1.2400562347802957e-18,-9.696186316432431e-05,-7.653061038581654e-05,-8.538092108323347e-19,-0.012797619216144085,0.0014285714132711291,0.0005357142654247582,0.008392857387661934,4.87890977618477e-19,-6.776263578034403e-19,-0.0004761904710903764,1.0842021724855044e-19,-0.00017857142665889114,-0.0009523809421807528,0.0013605442363768816,-0.002721088472753763,5.319366908757006e-18,4.87890977618477e-19,0.0006802721181884408,-1.9726330537056403e-19,7.221094428095513e-19,-2.8417955380381776e-19,-2.243901894960548e-19,-5.928057714520896e-20,0.0007142857066355646,-0.0003571428533177823,-0.0001020408162730746,-6.776263578034403e-19,-1.9726330537056403e-19,5.10204081365373e-05,6.437450399132683e-20,-3.4500016676619e-20,-1.1011428314305904e-20,9.317362419797304e-20,0.0014285714132711291,-0.0007142857066355646,1.2400562347802957e-18,-0.0004761904710903764,7.221094428095513e-19,6.437450399132683e-20,0.0002380952355451882,-7.201376251749839e-20,-8.300922883092143e-20,-4.0657581468206416e-20,0.0002100840356433764,1.6788193014580233e-18,-9.696186316432431e-05,1.0842021724855044e-19,-2.8417955380381776e-19,-3.4500016676619e-20,-7.201376251749839e-20,6.925847173988586e-06,-7.235304389355151e-21,1.3528713401715228e-20,0.0005357142654247582,1.328147661294743e-18,-7.653061038581654e-05,-0.00017857142665889114,-2.243901894960548e-19,-1.1011428314305904e-20,-8.300922883092143e-20,-7.235304389355151e-21,2.551020406826865e-05,1.4738373282224826e-19,0.0007936508045531809,-2.168404344971009e-19,-8.538092108323347e-19,-0.0009523809421807528,-5.928057714520896e-20,9.317362419797304e-20,-4.0657581468206416e-20,1.3528713401715228e-20,1.4738373282224826e-19,0.00015873015217948705,5.0,15.0,8.0,0.05184582248330116,-0.014692460186779499,-0.005906862672418356,-0.010138888843357563,0.0011904762359336019,0.0006249999860301614,0.0011111111380159855,0.00018382353300694376,0.00041666667675599456,0.0005555555690079927,-0.014692460186779499,0.014489087276160717,0.0006249999860301614,0.0011111111380159855,-0.0023809524718672037,-0.0003124999930150807,-0.0005555555690079927,-1.5754812818929986e-19,3.7947076036992655e-19,1.2468324983583301e-18,-0.005906862672418356,0.0006249999860301614,0.0016639733221381903,0.00041666667675599456,7.436949276892757e-19,-8.928571332944557e-05,-3.5575383784680614e-20,-8.484163117827848e-05,-5.952380888629705e-05,2.168404344971009e-19,-0.010138888843357563,0.0011111111380159855,0.00041666667675599456,0.005674603395164013,4.255493527005605e-18,5.963111948670274e-19,-0.0003174603043589741,-1.7279472123987727e-19,-0.0001190476177725941,-0.0005555555690079927,0.0011904762359336019,-0.0023809524718672037,7.436949276892757e-19,4.255493527005605e-18,0.0005952381179668009,-2.334438880956008e-19,-6.270259619747699e-19,1.3552527156068805e-20,-8.62586075345314e-20,-3.034292615794514e-19,0.0006249999860301614,-0.0003124999930150807,-8.928571332944557e-05,5.963111948670274e-19,-2.334438880956008e-19,4.4642856664722785e-05,-5.082197683525802e-20,6.791929118678193e-21,-1.0164395367051604e-20,-5.844527336054672e-20,0.0011111111380159855,-0.0005555555690079927,-3.5575383784680614e-20,-0.0003174603043589741,-6.270259619747699e-19,-5.082197683525802e-20,0.00015873015217948705,1.1944994531832195e-20,1.6940658945086007e-21,1.1180834903756764e-19,0.00018382353300694376,-1.5754812818929986e-19,-8.484163117827848e-05,-1.7279472123987727e-19,1.3552527156068805e-20,6.791929118678193e-21,1.1944994531832195e-20,6.06011644777027e-06,6.19212341207173e-21,1.2150855067813495e-20,0.00041666667675599456,3.7947076036992655e-19,-5.952380888629705e-05,-0.0001190476177725941,-8.62586075345314e-20,-1.0164395367051604e-20,1.6940658945086007e-21,6.19212341207173e-21,1.70068033185089e-05,-7.115076756936123e-20,0.0005555555690079927,1.2468324983583301e-18,2.168404344971009e-19,-0.0005555555690079927,-3.034292615794514e-19,-5.844527336054672e-20,1.1180834903756764e-19,1.2150855067813495e-20,-7.115076756936123e-20,7.936507608974352e-05,5.0,15.0,9.0,0.046954985707998276,-0.01315873023122549,-0.005287581589072943,-0.008232323452830315,0.0010582010727375746,0.0005555555690079927,0.0008888888987712562,0.0001633986976230517,0.00033333332976326346,0.0004040404164697975,-0.01315873023122549,0.012928571552038193,0.0005555555690079927,0.0008888888987712562,-0.002116402145475149,-0.00027777778450399637,-0.0004444444493856281,2.541098841762901e-21,0.0,-9.337842217654718e-37,-0.005287581589072943,0.0005555555690079927,0.0014843783574178815,0.00033333332976326346,0.0,-7.936507608974352e-05,0.0,-7.54147840780206e-05,-4.761904710903764e-05,4.926306708296176e-19,-0.008232323452830315,0.0008888888987712562,0.00033333332976326346,0.00402056286111474,0.0,-8.916933292158654e-22,-0.00022222222469281405,3.7269449679189215e-19,-8.333333244081587e-05,-0.00034632033202797174,0.0010582010727375746,-0.002116402145475149,0.0,0.0,0.0005291005363687873,0.0,0.0,0.0,0.0,-0.0,0.0005555555690079927,-0.00027777778450399637,-7.936507608974352e-05,-8.916933292158654e-22,0.0,3.968253804487176e-05,0.0,0.0,-0.0,1.3339773956056014e-37,0.0008888888987712562,-0.0004444444493856281,0.0,-0.00022222222469281405,0.0,0.0,0.00011111111234640703,0.0,0.0,-0.0,0.0001633986976230517,2.541098841762901e-21,-7.54147840780206e-05,3.7269449679189215e-19,0.0,0.0,0.0,5.386770226323279e-06,-1.4823076576950256e-20,-3.380156604689454e-20,0.00033333332976326346,0.0,-4.761904710903764e-05,-8.333333244081587e-05,0.0,-0.0,0.0,-1.4823076576950256e-20,1.190476177725941e-05,-4.8521869471702915e-21,0.0004040404164697975,-9.337842217654718e-37,4.926306708296176e-19,-0.00034632033202797174,-0.0,1.3339773956056014e-37,-0.0,-3.380156604689454e-20,-4.8521869471702915e-21,4.329004150349647e-05,5.0,15.0,10.0,0.04291100054979324,-0.011915584094822407,-0.0047860960476100445,-0.006818181835114956,0.0009523809421807528,0.0005000000237487257,0.0007272727089002728,0.00014705881767440587,0.00027272728038951755,0.0003030303050763905,-0.011915584094822407,0.01167207770049572,0.0005000000237487257,0.0007272727089002728,-0.0019047618843615055,-0.0002500000118743628,-0.0003636363544501364,9.740878893424454e-21,5.082197683525802e-21,4.357659581994733e-36,-0.0047860960476100445,0.0005000000237487257,0.001339836628176272,0.00027272728038951755,0.0,-7.142857066355646e-05,0.0,-6.787330494262278e-05,-3.8961039535934106e-05,-1.4605683172213663e-19,-0.006818181835114956,0.0007272727089002728,0.00027272728038951755,0.0029545454308390617,0.0,4.623734040708637e-21,-0.0001616161607671529,-1.4230153513872246e-19,-6.060606028768234e-05,-0.00022727272880729288,0.0009523809421807528,-0.0019047618843615055,0.0,0.0,0.0004761904710903764,0.0,0.0,0.0,0.0,-0.0,0.0005000000237487257,-0.0002500000118743628,-7.142857066355646e-05,4.623734040708637e-21,0.0,3.571428533177823e-05,0.0,-8.470329472543003e-22,-4.235164736271502e-22,-6.2252282945749816e-37,0.0007272727089002728,-0.0003636363544501364,0.0,-0.0001616161607671529,0.0,0.0,8.080808038357645e-05,0.0,0.0,-0.0,0.00014705881767440587,9.740878893424454e-21,-6.787330494262278e-05,-1.4230153513872246e-19,0.0,-8.470329472543003e-22,0.0,4.848092885367805e-06,4.235164736271502e-21,1.2395979217909788e-20,0.00027272728038951755,5.082197683525802e-21,-3.8961039535934106e-05,-6.060606028768234e-05,0.0,-4.235164736271502e-22,0.0,4.235164736271502e-21,8.658008482598234e-06,-6.108195276053141e-21,0.0003030303050763905,4.357659581994733e-36,-1.4605683172213663e-19,-0.00022727272880729288,-0.0,-6.2252282945749816e-37,-0.0,1.2395979217909788e-20,-6.108195276053141e-21,2.5252526029362343e-05,5.0,15.0,11.0,0.039510637521743774,-0.010887445881962776,-0.004371657967567444,-0.005740093067288399,0.0008658008882775903,0.00045454545761458576,0.000606060610152781,0.0001336898421868682,0.00022727272880729288,0.00023310023243539035,-0.010887445881962776,0.010638528503477573,0.00045454545761458576,0.000606060610152781,-0.0017316017765551805,-0.00022727272880729288,-0.0003030303050763905,-8.470329472543003e-22,-3.3881317890172014e-21,-1.6089819995057475e-35,-0.004371657967567444,0.00045454545761458576,0.0012209848500788212,0.00022727272880729288,0.0,-6.49350622552447e-05,0.0,-6.170300184749067e-05,-3.246753112762235e-05,-1.5407692937220644e-19,-0.005740093067288399,0.000606060610152781,0.00022727272880729288,0.0022358198184520006,0.0,-2.7066829924446495e-21,-0.00012121212057536468,-1.3891340334970526e-19,-4.545454430626705e-05,-0.0001554001501062885,0.0008658008882775903,-0.0017316017765551805,0.0,0.0,0.00043290044413879514,0.0,0.0,0.0,0.0,-0.0,0.00045454545761458576,-0.00022727272880729288,-6.49350622552447e-05,-2.7066829924446495e-21,0.0,3.246753112762235e-05,0.0,-4.235164736271502e-22,4.235164736271502e-22,2.2985457904508693e-36,0.000606060610152781,-0.0003030303050763905,0.0,-0.00012121212057536468,0.0,0.0,6.060606028768234e-05,0.0,0.0,-0.0,0.0001336898421868682,-8.470329472543003e-22,-6.170300184749067e-05,-1.3891340334970526e-19,0.0,-4.235164736271502e-22,0.0,4.407357209856855e-06,6.564505341220828e-21,9.368081354485162e-21,0.00022727272880729288,-3.3881317890172014e-21,-3.246753112762235e-05,-4.545454430626705e-05,0.0,4.235164736271502e-22,0.0,6.564505341220828e-21,6.493506589322351e-06,4.5847584050002606e-21,0.00023310023243539035,-1.6089819995057475e-35,-1.5407692937220644e-19,-0.0001554001501062885,-0.0,2.2985457904508693e-36,-0.0,9.368081354485162e-21,4.5847584050002606e-21,1.554001573822461e-05,5.0,15.0,12.0,0.03661109134554863,-0.01002289354801178,-0.00402337871491909,-0.004899267572909594,0.0007936508045531809,0.00041666667675599456,0.0005128204938955605,0.00012254902685526758,0.0001923076924867928,0.00018315018678549677,-0.01002289354801178,0.00977335125207901,0.00041666667675599456,0.0005128204938955605,-0.0015873016091063619,-0.00020833333837799728,-0.00025641024694778025,-8.470329472543003e-22,6.776263578034403e-21,6.776263578034403e-21,-0.00402337871491909,0.00041666667675599456,0.0011215255362913013,0.0001923076924867928,0.0,-5.952380888629705e-05,3.3881317890172014e-21,-5.656108623952605e-05,-2.7472528017824516e-05,-8.131516293641283e-20,-0.004899267572909594,0.0005128204938955605,0.0001923076924867928,0.0017332667484879494,-0.0,-7.955992667209883e-22,-9.324009442934766e-05,-1.1490425342580635e-19,-3.4965036320500076e-05,-0.00010989011207129806,0.0007936508045531809,-0.0015873016091063619,0.0,-0.0,0.00039682540227659047,0.0,0.0,0.0,0.0,0.0,0.00041666667675599456,-0.00020833333837799728,-5.952380888629705e-05,-7.955992667209883e-22,0.0,2.9761904443148524e-05,4.279880906476284e-23,4.235164736271502e-22,1.6049553399286065e-23,-9.282938845989077e-24,0.0005128204938955605,-0.00025641024694778025,3.3881317890172014e-21,-9.324009442934766e-05,0.0,4.279880906476284e-23,4.662004721467383e-05,0.0,-1.0587911840678754e-21,-8.470329472543003e-22,0.00012254902685526758,-8.470329472543003e-22,-5.656108623952605e-05,-1.1490425342580635e-19,0.0,4.235164736271502e-22,0.0,4.040077783429297e-06,4.870439446712227e-21,7.30565917006834e-21,0.0001923076924867928,6.776263578034403e-21,-2.7472528017824516e-05,-3.4965036320500076e-05,0.0,1.6049553399286065e-23,-1.0587911840678754e-21,4.870439446712227e-21,4.995004928787239e-06,-3.8116482626443515e-21,0.00018315018678549677,6.776263578034403e-21,-8.131516293641283e-20,-0.00010989011207129806,0.0,-9.282938845989077e-24,-8.470329472543003e-22,7.30565917006834e-21,-3.8116482626443515e-21,9.990009857574478e-06,5.0,15.0,13.0,0.03410902991890907,-0.009285714477300644,-0.003726567607372999,-0.0042307693511247635,0.0007326007471419871,0.0003846153849735856,0.00043956044828519225,0.0001131221724790521,0.00016483516083098948,0.00014652014942839742,-0.009285714477300644,0.009038461372256279,0.0003846153849735856,0.00043956044828519225,-0.0014652014942839742,-0.0001923076924867928,-0.00021978022414259613,-2.541098841762901e-21,-2.371692252312041e-20,-6.776263578034403e-21,-0.003726567607372999,0.0003846153849735856,0.0010370657546445727,0.00016483516083098948,0.0,-5.494505603564903e-05,-2.202285662861181e-20,-5.221023457124829e-05,-2.3547880118712783e-05,-1.2197274440461925e-19,-0.0042307693511247635,0.00043956044828519225,0.00016483516083098948,0.0013711288338527083,-0.0,3.503765014744866e-21,-7.326007471419871e-05,-9.210707819566248e-20,-2.7472528017824516e-05,-7.992007886059582e-05,0.0007326007471419871,-0.0014652014942839742,0.0,-0.0,0.00036630037357099354,0.0,0.0,0.0,0.0,0.0,0.0003846153849735856,-0.0001923076924867928,-5.494505603564903e-05,3.503765014744866e-21,0.0,2.7472528017824516e-05,-1.342682786324213e-22,-4.235164736271502e-22,-2.8196117757972754e-22,-1.9912958346294537e-22,0.00043956044828519225,-0.00021978022414259613,-2.202285662861181e-20,-7.326007471419871e-05,0.0,-1.342682786324213e-22,3.6630037357099354e-05,0.0,4.0234064994579266e-21,0.0,0.0001131221724790521,-2.541098841762901e-21,-5.221023457124829e-05,-9.210707819566248e-20,0.0,-4.235164736271502e-22,0.0,3.72930230696511e-06,3.3881317890172014e-21,5.823351512373315e-21,0.00016483516083098948,-2.371692252312041e-20,-2.3547880118712783e-05,-2.7472528017824516e-05,0.0,-2.8196117757972754e-22,4.0234064994579266e-21,3.3881317890172014e-21,3.924646989617031e-06,7.199780051661553e-21,0.00014652014942839742,-6.776263578034403e-21,-1.2197274440461925e-19,-7.992007886059582e-05,0.0,-1.9912958346294537e-22,0.0,5.823351512373315e-21,7.199780051661553e-21,6.660006874881219e-06,5.0,15.0,14.0,0.031927771866321564,-0.008649660274386406,-0.003470588242635131,-0.003690476296469569,0.0006802721181884408,0.0003571428533177823,0.0003809523768723011,0.0001050420178216882,0.0001428571413271129,0.0001190476177725941,-0.008649660274386406,0.008406462147831917,0.0003571428533177823,0.0003809523768723011,-0.0013605442363768816,-0.00017857142665889114,-0.00019047618843615055,-4.235164736271502e-21,3.3881317890172014e-21,0.0,-0.003470588242635131,0.0003571428533177823,0.0009644473320804536,0.0001428571413271129,0.0,-5.10204081365373e-05,5.082197683525802e-21,-4.848093158216216e-05,-2.0408162527019158e-05,-5.082197683525802e-20,-0.003690476296469569,0.0003809523768723011,0.0001428571413271129,0.0011034798808395863,-0.0,2.318793244345708e-21,-5.860805686097592e-05,-7.796904933757391e-20,-2.197802132286597e-05,-5.952380888629705e-05,0.0006802721181884408,-0.0013605442363768816,0.0,-0.0,0.0003401360590942204,0.0,0.0,0.0,0.0,0.0,0.0003571428533177823,-0.00017857142665889114,-5.10204081365373e-05,2.318793244345708e-21,0.0,2.551020406826865e-05,-1.2315582856340084e-22,0.0,-1.5206255727350648e-22,-5.011201981726113e-23,0.0003809523768723011,-0.00019047618843615055,5.082197683525802e-21,-5.860805686097592e-05,0.0,-1.2315582856340084e-22,2.930402843048796e-05,5.293955920339377e-23,-6.352747104407253e-22,0.0,0.0001050420178216882,-4.235164736271502e-21,-4.848093158216216e-05,-7.796904933757391e-20,0.0,0.0,5.293955920339377e-23,3.462923586994293e-06,2.4352197233561135e-21,4.711620769102046e-21,0.0001428571413271129,3.3881317890172014e-21,-2.0408162527019158e-05,-2.197802132286597e-05,0.0,-1.5206255727350648e-22,-6.352747104407253e-22,2.4352197233561135e-21,3.1397173643199494e-06,-2.329340604949326e-21,0.0001190476177725941,0.0,-5.082197683525802e-20,-5.952380888629705e-05,0.0,-5.011201981726113e-23,0.0,4.711620769102046e-21,-2.329340604949326e-21,4.578754669637419e-06,5.0,15.0,15.0,0.03000922128558159,-0.008095238357782364,-0.003247549058869481,-0.003247549058869481,0.0006349206087179482,0.00033333332976326346,0.00033333332976326346,9.803921420825645e-05,0.0001250000059371814,9.803921420825645e-05,-0.008095238357782364,0.007857142947614193,0.00033333332976326346,0.00033333332976326346,-0.0012698412174358964,-0.00016666666488163173,-0.00016666666488163173,-4.235164736271502e-21,-1.1858461261560205e-20,0.0,-0.003247549058869481,0.00033333332976326346,0.0009013413218781352,0.0001250000059371814,0.0,-4.761904710903764e-05,-1.0164395367051604e-20,-4.5248867536429316e-05,-1.7857142665889114e-05,-5.759824041329242e-20,-0.003247549058869481,0.00033333332976326346,0.0001250000059371814,0.0009013413218781352,-0.0,-1.6416538245044229e-21,-4.761904710903764e-05,-6.630509184223731e-20,-1.7857142665889114e-05,-4.5248867536429316e-05,0.0006349206087179482,-0.0012698412174358964,0.0,-0.0,0.0003174603043589741,0.0,0.0,0.0,0.0,0.0,0.00033333332976326346,-0.00016666666488163173,-4.761904710903764e-05,-1.6416538245044229e-21,0.0,2.380952355451882e-05,-1.9148386783889642e-23,0.0,2.4428225249469184e-22,-5.249914683747884e-24,0.00033333332976326346,-0.00016666666488163173,-1.0164395367051604e-20,-4.761904710903764e-05,0.0,-1.9148386783889642e-23,2.380952355451882e-05,0.0,1.376428539288238e-21,0.0,9.803921420825645e-05,-4.235164736271502e-21,-4.5248867536429316e-05,-6.630509184223731e-20,0.0,0.0,0.0,3.232061999369762e-06,2.0117032497289633e-21,3.705769144237564e-21,0.0001250000059371814,-1.1858461261560205e-20,-1.7857142665889114e-05,-1.7857142665889114e-05,0.0,2.4428225249469184e-22,1.376428539288238e-21,2.0117032497289633e-21,2.5510203158773948e-06,9.529120656610879e-22,9.803921420825645e-05,0.0,-5.759824041329242e-20,-4.5248867536429316e-05,0.0,-5.249914683747884e-24,0.0,3.705769144237564e-21,9.529120656610879e-22,3.232061999369762e-06,5.0,15.0,16.0,0.028308531269431114,-0.007607668172568083,-0.003051470499485731,-0.002879902021959424,0.0005952381179668009,0.0003124999930150807,0.00029411763534881175,9.191176650347188e-05,0.00011029411689378321,8.169934881152585e-05,-0.007607668172568083,0.007375262677669525,0.0003124999930150807,0.00029411763534881175,-0.0011904762359336019,-0.00015624999650754035,-0.00014705881767440587,3.2271955290388843e-19,2.303929616531697e-19,2.574980159653073e-19,-0.003051470499485731,0.0003124999930150807,0.0008459922391921282,0.00011029411689378321,1.8200419862828234e-18,-4.4642856664722785e-05,-1.1011428314305904e-20,-4.242081558913924e-05,-1.575630267325323e-05,1.1858461261560205e-20,-0.002879902021959424,0.00029411763534881175,0.00011029411689378321,0.0007457983447238803,1.6293489377436769e-18,-2.915316320234171e-20,-3.9215687138494104e-05,-4.2766845178189754e-21,-1.4705882676935289e-05,-3.501400715322234e-05,0.0005952381179668009,-0.0011904762359336019,1.8200419862828234e-18,1.6293489377436769e-18,0.00029761905898340046,-8.49660473545378e-20,-7.463684271278354e-20,-8.07369701505868e-20,-5.797683063990029e-20,-6.664003536683593e-20,0.0003124999930150807,-0.00015624999650754035,-4.4642856664722785e-05,-2.915316320234171e-20,-8.49660473545378e-20,2.2321428332361393e-05,6.615133803029188e-21,4.235164736271502e-22,3.630928332437436e-22,7.55911409522055e-22,0.00029411763534881175,-0.00014705881767440587,-1.1011428314305904e-20,-3.9215687138494104e-05,-7.463684271278354e-20,6.615133803029188e-21,1.9607843569247052e-05,0.0,-3.1763735522036263e-22,4.235164736271502e-22,9.191176650347188e-05,3.2271955290388843e-19,-4.242081558913924e-05,-4.2766845178189754e-21,-8.07369701505868e-20,4.235164736271502e-22,0.0,3.030058223885135e-06,1.7999450129153882e-21,-8.999725064576941e-22,0.00011029411689378321,2.303929616531697e-19,-1.575630267325323e-05,-1.4705882676935289e-05,-5.797683063990029e-20,3.630928332437436e-22,-3.1763735522036263e-22,1.7999450129153882e-21,2.1008404473832343e-06,-6.352747104407253e-22,8.169934881152585e-05,2.574980159653073e-19,1.1858461261560205e-20,-3.501400715322234e-05,-6.664003536683593e-20,7.55911409522055e-22,4.235164736271502e-22,-8.999725064576941e-22,-6.352747104407253e-22,2.3342670374404406e-06,5.0,16.0,3.0,0.10321545600891113,-0.03335084021091461,-0.01274509821087122,-0.04779411852359772,0.0029761905316263437,0.00147058826405555,0.0062500000931322575,0.00040849673678167164,0.002205882454290986,0.0062500000931322575,-0.03335084021091461,0.034532561898231506,0.00147058826405555,0.0062500000931322575,-0.0059523810632526875,-0.000735294132027775,-0.0031250000465661287,-1.2391146188998748e-19,-1.0842021724855044e-19,-2.5587171270657905e-17,-0.01274509821087122,0.00147058826405555,0.003508403431624174,0.002205882454290986,1.1110335334124636e-18,-0.0001960784284165129,-4.87890977618477e-19,-0.00017507003212813288,-0.00029411763534881175,1.951563910473908e-18,-0.04779411852359772,0.0062500000931322575,0.002205882454290986,0.11029411852359772,-8.479426804919862e-18,6.904250649275318e-19,-0.0062500000931322575,1.2268967735115544e-19,-0.002205882454290986,-0.03750000149011612,0.0029761905316263437,-0.0059523810632526875,1.1110335334124636e-18,-8.479426804919862e-18,0.0014880952658131719,-5.55653613398821e-19,-7.421347616564241e-19,1.6940658945086007e-20,-2.8105005812789117e-20,4.969703601760428e-18,0.00147058826405555,-0.000735294132027775,-0.0001960784284165129,6.904250649275318e-19,-5.55653613398821e-19,9.803921420825645e-05,-9.929121936386795e-20,1.6940658945086007e-21,-7.208729596589751e-22,-2.467091250851723e-19,0.0062500000931322575,-0.0031250000465661287,-4.87890977618477e-19,-0.0062500000931322575,-7.421347616564241e-19,-9.929121936386795e-20,0.0031250000465661287,2.819789237946514e-20,2.439454888092385e-19,8.239936510889834e-18,0.00040849673678167164,-1.2391146188998748e-19,-0.00017507003212813288,1.2268967735115544e-19,1.6940658945086007e-20,1.6940658945086007e-21,2.819789237946514e-20,1.1671335414575879e-05,5.333631206250925e-22,-9.289878697710376e-20,0.002205882454290986,-1.0842021724855044e-19,-0.00029411763534881175,-0.002205882454290986,-2.8105005812789117e-20,-7.208729596589751e-22,2.439454888092385e-19,5.333631206250925e-22,0.00029411763534881175,6.505213034913027e-19,0.0062500000931322575,-2.5587171270657905e-17,1.951563910473908e-18,-0.03750000149011612,4.969703601760428e-18,-2.467091250851723e-19,8.239936510889834e-18,-9.289878697710376e-20,6.505213034913027e-19,0.01875000074505806,5.0,16.0,4.0,0.08426820486783981,-0.025950631126761436,-0.009889706037938595,-0.030551470816135406,0.0022321429569274187,0.001102941227145493,0.0037499999161809683,0.00030637255986221135,0.0013235294027253985,0.0031250000465661287,-0.025950631126761436,0.026368172839283943,0.001102941227145493,0.0037499999161809683,-0.004464285913854837,-0.0005514706135727465,-0.0018749999580904841,3.9518442612326085e-19,-1.3552527156068805e-20,4.445228907190568e-18,-0.009889706037938595,0.001102941227145493,0.0026754201389849186,0.0013235294027253985,-5.699996135574813e-19,-0.00014705881767440587,-1.3552527156068805e-19,-0.00013130252773407847,-0.00017647058120928705,3.3068166260807885e-18,-0.030551470816135406,0.0037499999161809683,0.0013235294027253985,0.04224264621734619,-2.864571749409672e-18,-3.0222912590821353e-19,-0.0024999999441206455,6.388329312431987e-19,-0.0008823529351502657,-0.00937500037252903,0.0022321429569274187,-0.004464285913854837,-5.699996135574813e-19,-2.864571749409672e-18,0.0011160714784637094,6.911788849595091e-19,2.3006066252159183e-18,-5.929230630780102e-20,-2.3939820637118958e-21,-6.3497563295049905e-19,0.001102941227145493,-0.0005514706135727465,-0.00014705881767440587,-3.0222912590821353e-19,6.911788849595091e-19,7.352940883720294e-05,2.248562799218343e-19,-1.1858461261560205e-20,-8.584810784644202e-21,-3.259873557631733e-20,0.0037499999161809683,-0.0018749999580904841,-1.3552527156068805e-19,-0.0024999999441206455,2.3006066252159183e-18,2.248562799218343e-19,0.0012499999720603228,-2.4387586669729053e-20,6.098637220230962e-20,-8.673617379884035e-19,0.00030637255986221135,3.9518442612326085e-19,-0.00013130252773407847,6.388329312431987e-19,-5.929230630780102e-20,-1.1858461261560205e-20,-2.4387586669729053e-20,8.753501788305584e-06,-1.5429278796916583e-20,-1.505553500859297e-19,0.0013235294027253985,-1.3552527156068805e-20,-0.00017647058120928705,-0.0008823529351502657,-2.3939820637118958e-21,-8.584810784644202e-21,6.098637220230962e-20,-1.5429278796916583e-20,0.00011764706141548231,-5.421010862427522e-19,0.0031250000465661287,4.445228907190568e-18,3.3068166260807885e-18,-0.00937500037252903,-6.3497563295049905e-19,-3.259873557631733e-20,-8.673617379884035e-19,-1.505553500859297e-19,-5.421010862427522e-19,0.0031250000465661287,5.0,16.0,5.0,0.07130952179431915,-0.02126050367951393,-0.00808823574334383,-0.02126050367951393,0.0017857142956927419,0.0008823529351502657,0.0024999999441206455,0.00024509805371053517,0.0008823529351502657,0.0017857142956927419,-0.02126050367951393,0.021344536915421486,0.0008823529351502657,0.0024999999441206455,-0.0035714285913854837,-0.00044117646757513285,-0.0012499999720603228,8.300922883092143e-20,-5.963111948670274e-19,-3.577867169202165e-18,-0.00808823574334383,0.0008823529351502657,0.002163865603506565,0.0008823529351502657,-7.267542687441897e-19,-0.00011764706141548231,1.0503208545953324e-19,-0.0001050420178216882,-0.00011764706141548231,-1.0299920638612292e-18,-0.02126050367951393,0.0024999999441206455,0.0008823529351502657,0.021344536915421486,-3.7947076036992655e-18,-2.168404344971009e-19,-0.0012499999720603228,-1.3552527156068805e-20,-0.00044117646757513285,-0.0035714285913854837,0.0017857142956927419,-0.0035714285913854837,-7.267542687441897e-19,-3.7947076036992655e-18,0.0008928571478463709,2.194441922702647e-19,2.7505585504493444e-19,-4.235164736271502e-22,1.0415090546261699e-19,5.504106841825185e-19,0.0008823529351502657,-0.00044117646757513285,-0.00011764706141548231,-2.168404344971009e-19,2.194441922702647e-19,5.8823530707741156e-05,-1.3552527156068805e-20,-4.825778963776466e-21,1.1858461261560205e-20,4.404571325722362e-20,0.0024999999441206455,-0.0012499999720603228,1.0503208545953324e-19,-0.0012499999720603228,2.7505585504493444e-19,-1.3552527156068805e-20,0.0006249999860301614,-1.207225917713032e-20,6.098637220230962e-20,4.87890977618477e-19,0.00024509805371053517,8.300922883092143e-20,-0.0001050420178216882,-1.3552527156068805e-20,-4.235164736271502e-22,-4.825778963776466e-21,-1.207225917713032e-20,7.002801339694997e-06,-5.706840416986772e-22,1.1374053308856641e-20,0.0008823529351502657,-5.963111948670274e-19,-0.00011764706141548231,-0.00044117646757513285,1.0415090546261699e-19,1.1858461261560205e-20,6.098637220230962e-20,-5.706840416986772e-22,5.8823530707741156e-05,3.9302328752599536e-19,0.0017857142956927419,-3.577867169202165e-18,-1.0299920638612292e-18,-0.0035714285913854837,5.504106841825185e-19,4.404571325722362e-20,4.87890977618477e-19,1.1374053308856641e-20,3.9302328752599536e-19,0.0008928571478463709,5.0,16.0,6.0,0.06184932217001915,-0.018014706671237946,-0.0068452381528913975,-0.015664391219615936,0.0014880952658131719,0.000735294132027775,0.0017857142956927419,0.00020424836839083582,0.0006302521214820445,0.0011160714784637094,-0.018014706671237946,0.017935924232006073,0.000735294132027775,0.0017857142956927419,-0.0029761905316263437,-0.0003676470660138875,-0.0008928571478463709,2.541098841762901e-21,4.607859233063394e-19,1.0299920638612292e-18,-0.0068452381528913975,0.000735294132027775,0.0018172268755733967,0.0006302521214820445,9.67311625764411e-19,-9.803921420825645e-05,4.472333961502706e-19,-8.753501606406644e-05,-8.403361425735056e-05,-2.168404344971009e-19,-0.015664391219615936,0.0017857142956927419,0.0006302521214820445,0.012404149398207664,6.451002926288751e-18,5.963111948670274e-19,-0.0007142857066355646,-5.421010862427522e-20,-0.0002521008427720517,-0.0016741071594879031,0.0014880952658131719,-0.0029761905316263437,9.67311625764411e-19,6.451002926288751e-18,0.0007440476329065859,-2.888132128001867e-19,-1.3020017229028606e-18,-4.235164736271502e-22,-1.3254209638030384e-19,-5.29067356427119e-19,0.000735294132027775,-0.0003676470660138875,-9.803921420825645e-05,5.963111948670274e-19,-2.888132128001867e-19,4.901960710412823e-05,-1.6263032587282567e-19,-1.2906360157171376e-21,-5.929230630780102e-21,-4.2351647362715017e-20,0.0017857142956927419,-0.0008928571478463709,4.472333961502706e-19,-0.0007142857066355646,-1.3020017229028606e-18,-1.6263032587282567e-19,0.0003571428533177823,-6.727766883449214e-21,2.371692252312041e-20,4.607859233063394e-19,0.00020424836839083582,2.541098841762901e-21,-8.753501606406644e-05,-5.421010862427522e-20,-4.235164736271502e-22,-1.2906360157171376e-21,-6.727766883449214e-21,5.835667707287939e-06,1.3305021428588763e-22,1.065628348818509e-20,0.0006302521214820445,4.607859233063394e-19,-8.403361425735056e-05,-0.0002521008427720517,-1.3254209638030384e-19,-5.929230630780102e-21,2.371692252312041e-20,1.3305021428588763e-22,3.361344715813175e-05,6.268043809681823e-20,0.0011160714784637094,1.0299920638612292e-18,-2.168404344971009e-19,-0.0016741071594879031,-5.29067356427119e-19,-4.2351647362715017e-20,4.607859233063394e-19,1.065628348818509e-20,6.268043809681823e-20,0.0003348214377183467,5.0,16.0,7.0,0.05462560057640076,-0.015632502734661102,-0.005934874061495066,-0.012027311138808727,0.0012755101779475808,0.0006302521214820445,0.0013392857508733869,0.00017507003212813288,0.0004726890765596181,0.0007440476329065859,-0.015632502734661102,0.01546931266784668,0.0006302521214820445,0.0013392857508733869,-0.0025510203558951616,-0.00031512606074102223,-0.0006696428754366934,4.019171334721655e-19,5.692061405548898e-19,2.1955093992831465e-18,-0.005934874061495066,0.0006302521214820445,0.0015666265971958637,0.0004726890765596181,1.7499700690273845e-18,-8.403361425735056e-05,4.0318768289304696e-19,-7.503000961150974e-05,-6.302521069301292e-05,-2.303929616531697e-19,-0.012027311138808727,0.0013392857508733869,0.0004726890765596181,0.007878151722252369,4.824699667560495e-18,-5.421010862427522e-20,-0.00044642857392318547,1.6940658945086007e-20,-0.00015756303037051111,-0.0008928571478463709,0.0012755101779475808,-0.0025510203558951616,1.7499700690273845e-18,4.824699667560495e-18,0.0006377550889737904,-1.7164495311312563e-19,-4.563720358589681e-19,-6.564505341220828e-20,-1.1996951975616895e-19,-4.548764933114723e-19,0.0006302521214820445,-0.00031512606074102223,-8.403361425735056e-05,-5.421010862427522e-20,-1.7164495311312563e-19,4.201680712867528e-05,-4.0657581468206416e-20,-6.929990732792121e-21,-6.776263578034403e-21,2.879912020664621e-20,0.0013392857508733869,-0.0006696428754366934,4.0318768289304696e-19,-0.00044642857392318547,-4.563720358589681e-19,-4.0657581468206416e-20,0.00022321428696159273,-2.017737306115339e-20,5.082197683525802e-21,-1.4907779871675686e-19,0.00017507003212813288,4.019171334721655e-19,-7.503000961150974e-05,1.6940658945086007e-20,-6.564505341220828e-20,-6.929990732792121e-21,-2.017737306115339e-20,5.002000762033276e-06,-7.060828148062653e-22,5.672218586655844e-21,0.0004726890765596181,5.692061405548898e-19,-6.302521069301292e-05,-0.00015756303037051111,-1.1996951975616895e-19,-6.776263578034403e-21,5.082197683525802e-21,-7.060828148062653e-22,2.100840356433764e-05,2.0328790734103208e-20,0.0007440476329065859,2.1955093992831465e-18,-2.303929616531697e-19,-0.0008928571478463709,-4.548764933114723e-19,2.879912020664621e-20,-1.4907779871675686e-19,5.672218586655844e-21,2.0328790734103208e-20,0.00014880952949170023,5.0,16.0,8.0,0.048923321068286896,-0.013808648101985455,-0.0052389707416296005,-0.009528186172246933,0.0011160714784637094,0.0005514706135727465,0.0010416667209938169,0.00015318627993110567,0.0003676470660138875,0.0005208333604969084,-0.013808648101985455,0.01360075268894434,0.0005514706135727465,0.0010416667209938169,-0.0022321429569274187,-0.00027573530678637326,-0.0005208333604969084,1.7237120476625012e-19,1.2197274440461925e-19,1.0299920638612292e-18,-0.0052389707416296005,0.0005514706135727465,0.0013769257348030806,0.0003676470660138875,-2.574980159653073e-19,-7.352940883720294e-05,-1.5246593050577406e-19,-6.565126386703923e-05,-4.901960710412823e-05,1.4907779871675686e-19,-0.009528186172246933,0.0010416667209938169,0.0003676470660138875,0.005326505750417709,-4.87890977618477e-19,5.421010862427522e-20,-0.00029761905898340046,-8.809142651444724e-20,-0.0001050420178216882,-0.0005208333604969084,0.0011160714784637094,-0.0022321429569274187,-2.574980159653073e-19,-4.87890977618477e-19,0.0005580357392318547,3.4483962910386936e-19,7.566647578025892e-19,-2.583450489125616e-20,-1.7117846848408547e-20,-1.340015531735771e-19,0.0005514706135727465,-0.00027573530678637326,-7.352940883720294e-05,5.421010862427522e-20,3.4483962910386936e-19,3.676470441860147e-05,7.453889935837843e-20,-5.350373838642042e-21,-5.929230630780102e-21,-2.202285662861181e-20,0.0010416667209938169,-0.0005208333604969084,-1.5246593050577406e-19,-0.00029761905898340046,7.566647578025892e-19,7.453889935837843e-20,0.00014880952949170023,-2.968763739253104e-21,1.1858461261560205e-20,-8.300922883092143e-20,0.00015318627993110567,1.7237120476625012e-19,-6.565126386703923e-05,-8.809142651444724e-20,-2.583450489125616e-20,-5.350373838642042e-21,-2.968763739253104e-21,4.376750894152792e-06,1.822538797034485e-21,1.035331889531474e-20,0.0003676470660138875,1.2197274440461925e-19,-4.901960710412823e-05,-0.0001050420178216882,-1.7117846848408547e-20,-5.929230630780102e-21,1.1858461261560205e-20,1.822538797034485e-21,1.4005602679389995e-05,-7.284483346386983e-20,0.0005208333604969084,1.0299920638612292e-18,1.4907779871675686e-19,-0.0005208333604969084,-1.340015531735771e-19,-2.202285662861181e-20,-8.300922883092143e-20,1.035331889531474e-20,-7.284483346386983e-20,7.440476474585012e-05,5.0,16.0,9.0,0.04430488497018814,-0.012366946786642075,-0.004689542576670647,-0.0077361855655908585,0.0009920635493472219,0.0004901961074210703,0.0008333333535119891,0.00013616557407658547,0.00029411763534881175,0.0003787878667935729,-0.012366946786642075,0.012135853990912437,0.0004901961074210703,0.0008333333535119891,-0.0019841270986944437,-0.00024509805371053517,-0.00041666667675599456,-9.190307477709159e-20,1.4907779871675686e-19,4.0657581468206416e-19,-0.004689542576670647,0.0004901961074210703,0.0012282913085073233,0.00029411763534881175,-6.403569081242511e-19,-6.535947613883764e-05,3.7269449679189215e-20,-5.835667616338469e-05,-3.9215687138494104e-05,1.6940658945086007e-19,-0.0077361855655908585,0.0008333333535119891,0.00029411763534881175,0.003773873206228018,-1.8973538018496328e-19,2.0328790734103208e-19,-0.00020833333837799728,6.776263578034403e-21,-7.352940883720294e-05,-0.0003246753185521811,0.0009920635493472219,-0.0019841270986944437,-6.403569081242511e-19,-1.8973538018496328e-19,0.0004960317746736109,1.7390285891736276e-19,2.1900123705224253e-19,2.3505164286306834e-20,-1.548521203907908e-20,-1.954217105213369e-20,0.0004901961074210703,-0.00024509805371053517,-6.535947613883764e-05,2.0328790734103208e-19,1.7390285891736276e-19,3.267973806941882e-05,-1.0164395367051604e-20,2.6123231112767123e-22,-4.658681209898652e-21,-2.0328790734103208e-20,0.0008333333535119891,-0.00041666667675599456,3.7269449679189215e-20,-0.00020833333837799728,2.1900123705224253e-19,-1.0164395367051604e-20,0.00010416666918899864,1.3374684788495745e-22,-7.623296525288703e-21,-3.3034284942917713e-20,0.00013616557407658547,-9.190307477709159e-20,-5.835667616338469e-05,6.776263578034403e-21,2.3505164286306834e-20,2.6123231112767123e-22,1.3374684788495745e-22,3.890444986609509e-06,-4.933445729346906e-22,-4.023982759193747e-22,0.00029411763534881175,1.4907779871675686e-19,-3.9215687138494104e-05,-7.352940883720294e-05,-1.548521203907908e-20,-4.658681209898652e-21,-7.623296525288703e-21,-4.933445729346906e-22,9.803921784623526e-06,-3.218725199566341e-20,0.0003787878667935729,4.0657581468206416e-19,1.6940658945086007e-19,-0.0003246753185521811,-1.954217105213369e-20,-2.0328790734103208e-20,-3.3034284942917713e-20,-4.023982759193747e-22,-3.218725199566341e-20,4.058441481902264e-05,5.0,16.0,10.0,0.040486693382263184,-0.011198434047400951,-0.004244652576744556,-0.006407085340470076,0.0008928571478463709,0.00044117646757513285,0.0006818181718699634,0.00012254902685526758,0.00024064170429483056,0.0002840909000951797,-0.011198434047400951,0.010956360027194023,0.00044117646757513285,0.0006818181718699634,-0.0017857142956927419,-0.00022058823378756642,-0.0003409090859349817,0.0,1.6940658945086007e-21,-0.0,-0.004244652576744556,0.00044117646757513285,0.0011086707236245275,0.00024064170429483056,0.0,-5.8823530707741156e-05,0.0,-5.25210089108441e-05,-3.208556154277176e-05,-0.0,-0.006407085340470076,0.0006818181718699634,0.00024064170429483056,0.0027732285670936108,0.0,4.335300341443105e-22,-0.00015151515253819525,1.6940658945086007e-21,-5.347593469195999e-05,-0.00021306818234734237,0.0008928571478463709,-0.0017857142956927419,0.0,0.0,0.00044642857392318547,0.0,0.0,0.0,0.0,-0.0,0.00044117646757513285,-0.00022058823378756642,-5.8823530707741156e-05,4.335300341443105e-22,0.0,2.9411765353870578e-05,0.0,0.0,0.0,-0.0,0.0006818181718699634,-0.0003409090859349817,0.0,-0.00015151515253819525,0.0,0.0,7.575757626909763e-05,0.0,0.0,-0.0,0.00012254902685526758,0.0,-5.25210089108441e-05,1.6940658945086007e-21,0.0,0.0,0.0,3.5014006698474986e-06,-2.117582368135751e-22,-0.0,0.00024064170429483056,1.6940658945086007e-21,-3.208556154277176e-05,-5.347593469195999e-05,0.0,0.0,0.0,-2.117582368135751e-22,7.130124686227646e-06,-0.0,0.0002840909000951797,-0.0,-0.0,-0.00021306818234734237,-0.0,-0.0,-0.0,-0.0,-0.0,2.3674241674598306e-05,5.0,16.0,11.0,0.03727656975388527,-0.0102320471778512,-0.0038770053070038557,-0.0053938706405460835,0.000811688310932368,0.00040106952656060457,0.0005681818001903594,0.00011140819697175175,0.00020053476328030229,0.00021853146608918905,-0.0102320471778512,0.009986153803765774,0.00040106952656060457,0.0005681818001903594,-0.001623376621864736,-0.00020053476328030229,-0.0002840909000951797,3.3881317890172014e-21,-1.6940658945086007e-21,-0.0,-0.0038770053070038557,0.00040106952656060457,0.0010103131644427776,0.00020053476328030229,0.0,-5.347593469195999e-05,0.0,-4.774637272930704e-05,-2.6737967345979996e-05,-0.0,-0.0053938706405460835,0.0005681818001903594,0.00020053476328030229,0.0020985875744372606,0.0,7.274740972267666e-22,-0.00011363636440364644,1.6940658945086007e-21,-4.0106951928464696e-05,-0.00014568764891009778,0.000811688310932368,-0.001623376621864736,0.0,0.0,0.000405844155466184,0.0,0.0,0.0,0.0,-0.0,0.00040106952656060457,-0.00020053476328030229,-5.347593469195999e-05,7.274740972267666e-22,0.0,2.6737967345979996e-05,0.0,-4.235164736271502e-22,0.0,-0.0,0.0005681818001903594,-0.0002840909000951797,0.0,-0.00011363636440364644,0.0,0.0,5.681818220182322e-05,0.0,0.0,-0.0,0.00011140819697175175,3.3881317890172014e-21,-4.774637272930704e-05,1.6940658945086007e-21,0.0,-4.235164736271502e-22,0.0,3.183091394021176e-06,-2.117582368135751e-22,-0.0,0.00020053476328030229,-1.6940658945086007e-21,-2.6737967345979996e-05,-4.0106951928464696e-05,0.0,0.0,0.0,-2.117582368135751e-22,5.34759374204441e-06,-0.0,0.00021853146608918905,-0.0,-0.0,-0.00014568764891009778,-0.0,-0.0,-0.0,-0.0,-0.0,1.4568764527211897e-05,5.0,16.0,12.0,0.03453952074050903,-0.009419441223144531,-0.003568061860278249,-0.0046036685816943645,0.0007440476329065859,0.0003676470660138875,0.000480769231216982,0.00010212418419541791,0.00016968326235655695,0.00017170330102089792,-0.009419441223144531,0.009174006059765816,0.0003676470660138875,0.000480769231216982,-0.0014880952658131719,-0.00018382353300694376,-0.000240384615608491,-3.3881317890172014e-21,-1.6940658945086007e-21,-0.0,-0.003568061860278249,0.0003676470660138875,0.0009280058438889682,0.00016968326235655695,0.0,-4.901960710412823e-05,0.0,-4.376750803203322e-05,-2.2624433768214658e-05,-0.0,-0.0046036685816943645,0.000480769231216982,0.00016968326235655695,0.001626865821890533,0.0,-8.323059617611062e-22,-8.741259080125019e-05,0.0,-3.0851500923745334e-05,-0.00010302197915734723,0.0007440476329065859,-0.0014880952658131719,0.0,0.0,0.00037202381645329297,0.0,0.0,0.0,0.0,-0.0,0.0003676470660138875,-0.00018382353300694376,-4.901960710412823e-05,-8.323059617611062e-22,0.0,2.4509803552064113e-05,0.0,0.0,0.0,-0.0,0.000480769231216982,-0.000240384615608491,0.0,-8.741259080125019e-05,0.0,0.0,4.3706295400625095e-05,0.0,0.0,-0.0,0.00010212418419541791,-3.3881317890172014e-21,-4.376750803203322e-05,0.0,0.0,0.0,0.0,2.9178338536439696e-06,0.0,-0.0,0.00016968326235655695,-1.6940658945086007e-21,-2.2624433768214658e-05,-3.0851500923745334e-05,0.0,0.0,0.0,0.0,4.113533577765338e-06,-0.0,0.00017170330102089792,-0.0,-0.0,-0.00010302197915734723,-0.0,-0.0,-0.0,-0.0,-0.0,9.365634468849748e-06,5.0,16.0,13.0,0.0321778729557991,-0.008726567961275578,-0.0033047834876924753,-0.003975436557084322,0.0006868132040835917,0.0003393665247131139,0.00041208791662938893,9.426847827853635e-05,0.00014544279838446528,0.00013736264372710139,-0.008726567961275578,0.00848416332155466,0.0003393665247131139,0.00041208791662938893,-0.0013736264081671834,-0.00016968326235655695,-0.00020604395831469446,-1.6940658945086007e-21,3.3881317890172014e-21,0.0,-0.0033047834876924753,0.0003393665247131139,0.000858112471178174,0.00014544279838446528,0.0,-4.5248867536429316e-05,3.3881317890172014e-21,-4.0400776924798265e-05,-1.939237154147122e-05,5.082197683525802e-21,-0.003975436557084322,0.00041208791662938893,0.00014544279838446528,0.0012869483325630426,-0.0,-1.1162497424331586e-21,-6.868132186355069e-05,-1.1334001086271917e-21,-2.424046579108108e-05,-7.492507575079799e-05,0.0006868132040835917,-0.0013736264081671834,0.0,-0.0,0.00034340660204179585,0.0,0.0,0.0,0.0,0.0,0.0003393665247131139,-0.00016968326235655695,-4.5248867536429316e-05,-1.1162497424331586e-21,0.0,2.2624433768214658e-05,1.125111035914168e-22,0.0,2.1025252538200526e-23,1.5617412239962374e-23,0.00041208791662938893,-0.00020604395831469446,3.3881317890172014e-21,-6.868132186355069e-05,0.0,1.125111035914168e-22,3.4340660931775346e-05,0.0,-6.352747104407253e-22,0.0,9.426847827853635e-05,-1.6940658945086007e-21,-4.0400776924798265e-05,-1.1334001086271917e-21,0.0,0.0,0.0,2.6933851131616393e-06,1.0587911840678754e-22,-5.293955920339377e-23,0.00014544279838446528,3.3881317890172014e-21,-1.939237154147122e-05,-2.424046579108108e-05,0.0,2.1025252538200526e-23,-6.352747104407253e-22,1.0587911840678754e-22,3.232061999369762e-06,-1.0587911840678754e-21,0.00013736264372710139,0.0,5.082197683525802e-21,-7.492507575079799e-05,0.0,1.5617412239962374e-23,0.0,-5.293955920339377e-23,-1.0587911840678754e-21,6.243756160984049e-06,5.0,16.0,14.0,0.030119173228740692,-0.008128751069307327,-0.0030777310021221638,-0.0034676995128393173,0.0006377550889737904,0.00031512606074102223,0.0003571428533177823,8.753501606406644e-05,0.00012605042138602585,0.00011160714348079637,-0.008128751069307327,0.007890906184911728,0.00031512606074102223,0.0003571428533177823,-0.0012755101779475808,-0.00015756303037051111,-0.00017857142665889114,3.3881317890172014e-21,-2.541098841762901e-21,3.3881317890172014e-21,-0.0030777310021221638,0.00031512606074102223,0.0007980192312970757,0.00012605042138602585,0.0,-4.201680712867528e-05,-3.3881317890172014e-21,-3.751500480575487e-05,-1.6806723579065874e-05,-8.470329472543003e-22,-0.0034676995128393173,0.0003571428533177823,0.00012605042138602585,0.0010357244173064828,-0.0,-8.983477306719775e-22,-5.494505603564903e-05,-9.253007727751e-22,-1.939237154147122e-05,-5.5803571740398183e-05,0.0006377550889737904,-0.0012755101779475808,0.0,-0.0,0.0003188775444868952,0.0,0.0,0.0,0.0,0.0,0.00031512606074102223,-0.00015756303037051111,-4.201680712867528e-05,-8.983477306719775e-22,0.0,2.100840356433764e-05,1.0059679850034454e-22,0.0,-1.9493803099648232e-22,2.956925196363369e-23,0.0003571428533177823,-0.00017857142665889114,-3.3881317890172014e-21,-5.494505603564903e-05,0.0,1.0059679850034454e-22,2.7472528017824516e-05,5.293955920339377e-23,2.117582368135751e-22,0.0,8.753501606406644e-05,3.3881317890172014e-21,-3.751500480575487e-05,-9.253007727751e-22,0.0,0.0,5.293955920339377e-23,2.501000381016638e-06,1.0587911840678754e-22,0.0,0.00012605042138602585,-2.541098841762901e-21,-1.6806723579065874e-05,-1.939237154147122e-05,0.0,-1.9493803099648232e-22,2.117582368135751e-22,1.0587911840678754e-22,2.5856495540210744e-06,2.117582368135751e-22,0.00011160714348079637,3.3881317890172014e-21,-8.470329472543003e-22,-5.5803571740398183e-05,0.0,2.956925196363369e-23,0.0,0.0,2.117582368135751e-22,4.292582616471918e-06,5.0,16.0,15.0,0.028308531269431114,-0.007607668172568083,-0.002879902021959424,-0.003051470499485731,0.0005952381179668009,0.00029411763534881175,0.0003124999930150807,8.169934881152585e-05,0.00011029411689378321,9.191176650347188e-05,-0.007607668172568083,0.007375262677669525,0.00029411763534881175,0.0003124999930150807,-0.0011904762359336019,-0.00014705881767440587,-0.00015624999650754035,2.685094442796132e-19,2.31239994600424e-19,3.2526065174565133e-19,-0.002879902021959424,0.00029411763534881175,0.0007457983447238803,0.00011029411689378321,1.6293489377436769e-18,-3.9215687138494104e-05,-1.4399560103323106e-20,-3.501400715322234e-05,-1.4705882676935289e-05,8.046812998915853e-20,-0.003051470499485731,0.0003124999930150807,0.00011029411689378321,0.0008459922391921282,1.8200419862828234e-18,5.451634397329814e-21,-4.4642856664722785e-05,7.424511453160286e-20,-1.575630267325323e-05,-4.242081558913924e-05,0.0005952381179668009,-0.0011904762359336019,1.6293489377436769e-18,1.8200419862828234e-18,0.00029761905898340046,-7.463684271278354e-20,-8.49660473545378e-20,-6.664003536683593e-20,-5.797683063990029e-20,-8.07369701505868e-20,0.00029411763534881175,-0.00014705881767440587,-3.9215687138494104e-05,5.451634397329814e-21,-7.463684271278354e-20,1.9607843569247052e-05,5.323911329182447e-21,0.0,-4.19172084093466e-22,-9.768063974229682e-22,0.0003124999930150807,-0.00015624999650754035,-1.4399560103323106e-20,-4.4642856664722785e-05,-8.49660473545378e-20,5.323911329182447e-21,2.2321428332361393e-05,5.293955920339377e-23,5.293955920339377e-22,4.235164736271502e-22,8.169934881152585e-05,2.685094442796132e-19,-3.501400715322234e-05,7.424511453160286e-20,-6.664003536683593e-20,0.0,5.293955920339377e-23,2.3342670374404406e-06,-1.4823076576950256e-21,-4.7645603283054394e-21,0.00011029411689378321,2.31239994600424e-19,-1.4705882676935289e-05,-1.575630267325323e-05,-5.797683063990029e-20,-4.19172084093466e-22,5.293955920339377e-22,-1.4823076576950256e-21,2.1008404473832343e-06,-1.376428539288238e-21,9.191176650347188e-05,3.2526065174565133e-19,8.046812998915853e-20,-4.242081558913924e-05,-8.07369701505868e-20,-9.768063974229682e-22,4.235164736271502e-22,-4.7645603283054394e-21,-1.376428539288238e-21,3.030058223885135e-06,5.0,16.0,16.0,0.02670358493924141,-0.007149422075599432,-0.002705990569666028,-0.002705990569666028,0.0005580357392318547,0.00027573530678637326,0.00027573530678637326,7.659313996555284e-05,9.731834143167362e-05,7.659313996555284e-05,-0.007149422075599432,0.006922925356775522,0.00027573530678637326,0.00027573530678637326,-0.0011160714784637094,-0.00013786765339318663,-0.00013786765339318663,1.2705494208814505e-21,7.623296525288703e-21,0.0,-0.002705990569666028,0.00027573530678637326,0.0006999968900345266,9.731834143167362e-05,0.0,-3.676470441860147e-05,7.623296525288703e-21,-3.282563193351962e-05,-1.2975778190593701e-05,8.470329472543003e-21,-0.002705990569666028,0.00027573530678637326,9.731834143167362e-05,0.0006999968900345266,-0.0,1.2143010382536488e-21,-3.676470441860147e-05,1.3364569950860128e-21,-1.2975778190593701e-05,-3.282563193351962e-05,0.0005580357392318547,-0.0011160714784637094,0.0,-0.0,0.00027901786961592734,0.0,0.0,0.0,0.0,0.0,0.00027573530678637326,-0.00013786765339318663,-3.676470441860147e-05,1.2143010382536488e-21,0.0,1.8382352209300734e-05,-6.377659584229622e-23,-2.117582368135751e-22,-2.250938704629075e-23,-5.503045159876107e-24,0.00027573530678637326,-0.00013786765339318663,7.623296525288703e-21,-3.676470441860147e-05,0.0,-6.377659584229622e-23,1.8382352209300734e-05,5.293955920339377e-23,-8.470329472543003e-22,-2.117582368135751e-22,7.659313996555284e-05,1.2705494208814505e-21,-3.282563193351962e-05,1.3364569950860128e-21,0.0,-2.117582368135751e-22,5.293955920339377e-23,2.188375447076396e-06,-3.1763735522036263e-22,5.293955920339377e-23,9.731834143167362e-05,7.623296525288703e-21,-1.2975778190593701e-05,-1.2975778190593701e-05,0.0,-2.250938704629075e-23,-8.470329472543003e-22,-3.1763735522036263e-22,1.7301038042205619e-06,-1.0587911840678754e-21,7.659313996555284e-05,0.0,8.470329472543003e-21,-3.282563193351962e-05,0.0,-5.503045159876107e-24,-2.117582368135751e-22,5.293955920339377e-23,-1.0587911840678754e-21,2.188375447076396e-06,6.0,3.0,3.0,0.32605820894241333,-0.1130952388048172,-0.184523805975914,-0.184523805975914,0.009920635260641575,0.02380952425301075,0.02380952425301075,0.02777777798473835,0.0416666679084301,0.02777777798473835,-0.1130952388048172,0.09980158507823944,0.02380952425301075,0.02380952425301075,-0.014880952425301075,-0.009523809887468815,-0.009523809887468815,5.269536886912322e-17,-7.03945755969775e-18,7.10582953943227e-17,-0.184523805975914,0.02380952425301075,0.4623015820980072,0.0416666679084301,1.0636389587658037e-17,-0.02380952425301075,5.7964023816066435e-18,-0.1666666716337204,-0.0416666679084301,-9.961167678459166e-17,-0.184523805975914,0.02380952425301075,0.0416666679084301,0.4623015820980072,1.1301420466274132e-17,5.932143960897514e-18,-0.02380952425301075,-1.91097422399038e-16,-0.0416666679084301,-0.1666666716337204,0.009920635260641575,-0.014880952425301075,1.0636389587658037e-17,1.1301420466274132e-17,0.0029761905316263437,-2.2167739897839886e-19,-9.507017356667696e-19,-5.977529706747074e-18,1.4391828032547266e-18,-5.2903444497849706e-18,0.02380952425301075,-0.009523809887468815,-0.02380952425301075,5.932143960897514e-18,-2.2167739897839886e-19,0.009523809887468815,-6.858520486098207e-19,-1.7189167162154088e-17,2.5005022648648704e-18,-3.09109722810885e-18,0.02380952425301075,-0.009523809887468815,5.7964023816066435e-18,-0.02380952425301075,-9.507017356667696e-19,-6.858520486098207e-19,0.009523809887468815,-9.763866242647303e-19,-1.7289187360282162e-18,-2.7057815681715933e-17,0.02777777798473835,5.269536886912322e-17,-0.1666666716337204,-1.91097422399038e-16,-5.977529706747074e-18,-1.7189167162154088e-17,-9.763866242647303e-19,0.0833333358168602,3.0297753100910584e-17,8.213455481631806e-17,0.0416666679084301,-7.03945755969775e-18,-0.0416666679084301,-0.0416666679084301,1.4391828032547266e-18,2.5005022648648704e-18,-1.7289187360282162e-18,3.0297753100910584e-17,0.0416666679084301,-5.2427196914533525e-17,0.02777777798473835,7.10582953943227e-17,-9.961167678459166e-17,-0.1666666716337204,-5.2903444497849706e-18,-3.09109722810885e-18,-2.7057815681715933e-17,8.213455481631806e-17,-5.2427196914533525e-17,0.0833333358168602,6.0,3.0,4.0,0.2708333432674408,-0.08839285373687744,-0.14464285969734192,-0.1190476194024086,0.0074404762126505375,0.01785714365541935,0.014285714365541935,0.02083333395421505,0.02500000037252903,0.013888888992369175,-0.08839285373687744,0.07627975940704346,0.01785714365541935,0.014285714365541935,-0.01116071455180645,-0.0071428571827709675,-0.0057142856530845165,5.540885876798707e-17,1.2274751485356092e-17,2.6403031089347532e-17,-0.14464285969734192,0.01785714365541935,0.3529762029647827,0.02500000037252903,2.3393984594534807e-17,-0.01785714365541935,-1.0233744121656519e-18,-0.125,-0.02500000037252903,6.476300756398583e-17,-0.1190476194024086,0.014285714365541935,0.02500000037252903,0.1765872985124588,2.093992004246351e-17,1.4028791903382696e-18,-0.009523809887468815,1.2675046021338673e-16,-0.01666666753590107,-0.0416666679084301,0.0074404762126505375,-0.01116071455180645,2.3393984594534807e-17,2.093992004246351e-17,0.0022321429569274187,1.1273396737278756e-33,-1.8732334219827396e-18,-9.912705813347644e-18,-2.3790494034752407e-18,-4.625929407134921e-18,0.01785714365541935,-0.0071428571827709675,-0.01785714365541935,1.4028791903382696e-18,1.1273396737278756e-33,0.0071428571827709675,-5.74268250051295e-35,-5.845330114839155e-18,-1.4028791903382696e-18,3.028489278844816e-33,0.014285714365541935,-0.0057142856530845165,-1.0233744121656519e-18,-0.009523809887468815,-1.8732334219827396e-18,-5.74268250051295e-35,0.003809523768723011,1.186607915225343e-32,6.82249625343364e-19,-2.182256518303975e-18,0.02083333395421505,5.540885876798707e-17,-0.125,1.2675046021338673e-16,-9.912705813347644e-18,-5.845330114839155e-18,1.186607915225343e-32,0.0625,-2.9605948867407985e-17,-3.2381503781992916e-17,0.02500000037252903,1.2274751485356092e-17,-0.02500000037252903,-0.01666666753590107,-2.3790494034752407e-18,-1.4028791903382696e-18,6.82249625343364e-19,-2.9605948867407985e-17,0.01666666753590107,1.9490874769720226e-32,0.013888888992369175,2.6403031089347532e-17,6.476300756398583e-17,-0.0416666679084301,-4.625929407134921e-18,3.028489278844816e-33,-2.182256518303975e-18,-3.2381503781992916e-17,1.9490874769720226e-32,0.013888888992369175,6.0,3.0,5.0,0.23174603283405304,-0.07261905074119568,-0.1190476194024086,-0.0833333358168602,0.0059523810632526875,0.014285714365541935,0.009523809887468815,0.01666666753590107,0.01666666753590107,0.007936508394777775,-0.07261905074119568,0.06178571283817291,0.014285714365541935,0.009523809887468815,-0.008928571827709675,-0.0057142856530845165,-0.003809523768723011,-7.241319738534986e-17,-1.5720931501039814e-17,-2.5587171270657905e-17,-0.1190476194024086,0.014285714365541935,0.2857142984867096,0.01666666753590107,-4.386388903241711e-17,-0.014285714365541935,6.505213034913027e-19,-0.10000000149011612,-0.01666666753590107,-1.6479873021779667e-17,-0.0833333358168602,0.009523809887468815,0.01666666753590107,0.0892857164144516,-2.5144298770697014e-17,2.32329039915396e-18,-0.004761904943734407,-3.172065926445695e-17,-0.008333333767950535,-0.01587301678955555,0.0059523810632526875,-0.008928571827709675,-4.386388903241711e-17,-2.5144298770697014e-17,0.0017857142956927419,2.4553985876041914e-18,1.5926050579461886e-18,1.5860329632228476e-17,3.1417655561453264e-18,4.5711034625446e-18,0.014285714365541935,-0.0057142856530845165,-0.014285714365541935,2.32329039915396e-18,2.4553985876041914e-18,0.0057142856530845165,-6.8425207450999e-19,-6.888448707840988e-18,-8.282951350308663e-19,3.212433133914683e-20,0.009523809887468815,-0.003809523768723011,6.505213034913027e-19,-0.004761904943734407,1.5926050579461886e-18,-6.8425207450999e-19,0.0019047618843615055,1.792985794476257e-32,3.904435696893839e-19,1.4094628242311558e-18,0.01666666753590107,-7.241319738534986e-17,-0.10000000149011612,-3.172065926445695e-17,1.5860329632228476e-17,-6.888448707840988e-18,1.792985794476257e-32,0.05000000074505806,2.6577833232543855e-32,7.930164816114238e-18,0.01666666753590107,-1.5720931501039814e-17,-0.01666666753590107,-0.008333333767950535,3.1417655561453264e-18,-8.282951350308663e-19,3.904435696893839e-19,2.6577833232543855e-32,0.008333333767950535,0.0,0.007936508394777775,-2.5587171270657905e-17,-1.6479873021779667e-17,-0.01587301678955555,4.5711034625446e-18,3.212433133914683e-20,1.4094628242311558e-18,7.930164816114238e-18,0.0,0.003968254197388887,6.0,3.0,6.0,0.20256991684436798,-0.061649661511182785,-0.1011904776096344,-0.061649661511182785,0.004960317630320787,0.011904762126505375,0.006802720949053764,0.013888888992369175,0.011904762126505375,0.004960317630320787,-0.061649661511182785,0.051941610872745514,0.011904762126505375,0.006802720949053764,-0.0074404762126505375,-0.004761904943734407,-0.002721088472753763,3.6939239178658046e-17,4.445228907190568e-18,6.396792817664476e-18,-0.1011904776096344,0.011904762126505375,0.2400793582201004,0.011904762126505375,2.0287019767530505e-17,-0.011904762126505375,-1.0842021724855044e-19,-0.0833333358168602,-0.011904762126505375,1.8214596497756474e-17,-0.061649661511182785,0.006802720949053764,0.011904762126505375,0.051941610872745514,9.552071609886775e-18,-4.50521645880322e-19,-0.002721088472753763,5.671168808509279e-17,-0.004761904943734407,-0.0074404762126505375,0.004960317630320787,-0.0074404762126505375,2.0287019767530505e-17,9.552071609886775e-18,0.0014880952658131719,-1.7345541107463869e-18,-8.132026043693769e-19,-6.608470404368327e-18,-1.0955426118884533e-18,-1.3046330878289683e-18,0.011904762126505375,-0.004761904943734407,-0.011904762126505375,-4.50521645880322e-19,-1.7345541107463869e-18,0.004761904943734407,-6.484236510060506e-20,-3.896886743226103e-18,6.348694436393626e-19,-1.552004248209867e-20,0.006802720949053764,-0.002721088472753763,-1.0842021724855044e-19,-0.002721088472753763,-8.132026043693769e-19,-6.484236510060506e-20,0.0010884354123845696,4.200158130239146e-33,1.3195584504585396e-19,1.0842021724855044e-19,0.013888888992369175,3.6939239178658046e-17,-0.0833333358168602,5.671168808509279e-17,-6.608470404368327e-18,-3.896886743226103e-18,4.200158130239146e-33,0.0416666679084301,-1.1278456278108435e-17,-9.086646857705238e-18,0.011904762126505375,4.445228907190568e-18,-0.011904762126505375,-0.004761904943734407,-1.0955426118884533e-18,6.348694436393626e-19,1.3195584504585396e-19,-1.1278456278108435e-17,0.004761904943734407,0.0,0.004960317630320787,6.396792817664476e-18,1.8214596497756474e-17,-0.0074404762126505375,-1.3046330878289683e-18,-1.552004248209867e-20,1.0842021724855044e-19,-9.086646857705238e-18,0.0,0.0014880952658131719,6.0,3.0,7.0,0.17994141578674316,-0.0535714291036129,-0.08801020681858063,-0.047477323561906815,0.004251700825989246,0.010204081423580647,0.005102040711790323,0.011904762126505375,0.008928571827709675,0.003306878264993429,-0.0535714291036129,0.04481292515993118,0.010204081423580647,0.005102040711790323,-0.0063775512389838696,-0.004081632476300001,-0.0020408162381500006,3.1662204064929054e-17,3.957337929572091e-18,3.903127820947816e-18,-0.08801020681858063,0.010204081423580647,0.20705781877040863,0.008928571827709675,1.697814015300201e-17,-0.010204081423580647,-1.0299920638612292e-18,-0.0714285746216774,-0.008928571827709675,1.1492543028346347e-17,-0.047477323561906815,0.005102040711790323,0.008928571827709675,0.03302154317498207,7.799248594926695e-18,2.2913298463449244e-19,-0.001700680237263441,4.0406075548598443e-17,-0.0029761905316263437,-0.003968254197388887,0.004251700825989246,-0.0063775512389838696,1.697814015300201e-17,7.799248594926695e-18,0.0012755101779475808,-1.2472470192427957e-18,-8.073868525788814e-19,-5.664403380997269e-18,-8.437388038623845e-19,-8.31115976016037e-19,0.010204081423580647,-0.004081632476300001,-0.010204081423580647,2.2913298463449244e-19,-1.2472470192427957e-18,0.004081632476300001,1.2373585403088189e-19,-3.340188607508781e-18,-4.997091138251752e-19,-1.847363787764844e-20,0.005102040711790323,-0.0020408162381500006,-1.0299920638612292e-18,-0.001700680237263441,-8.073868525788814e-19,1.2373585403088189e-19,0.0006802721181884408,2.5058624700883115e-33,2.6385071137092627e-19,1.0842021724855044e-19,0.011904762126505375,3.1662204064929054e-17,-0.0714285746216774,4.0406075548598443e-17,-5.664403380997269e-18,-3.340188607508781e-18,2.5058624700883115e-33,0.0357142873108387,-6.0420299421915085e-18,-5.727341072264591e-18,0.008928571827709675,3.957337929572091e-18,-0.008928571827709675,-0.0029761905316263437,-8.437388038623845e-19,-4.997091138251752e-19,2.6385071137092627e-19,-6.0420299421915085e-18,0.0029761905316263437,5.421010862427522e-20,0.003306878264993429,3.903127820947816e-18,1.1492543028346347e-17,-0.003968254197388887,-8.31115976016037e-19,-1.847363787764844e-20,1.0842021724855044e-19,-5.727341072264591e-18,5.421010862427522e-20,0.0006613756413571537,6.0,3.0,8.0,0.16187168657779694,-0.0473710335791111,-0.0778769850730896,-0.0376984141767025,0.0037202381063252687,0.008928571827709675,0.003968254197388887,0.010416666977107525,0.0069444444961845875,0.002314814832061529,-0.0473710335791111,0.03940972313284874,0.008928571827709675,0.003968254197388887,-0.005580357275903225,-0.0035714285913854837,-0.0015873016091063619,2.4781763706188498e-17,3.2526065174565133e-18,2.3852447794681098e-18,-0.0778769850730896,0.008928571827709675,0.18204365670681,0.0069444444961845875,8.508405423319432e-18,-0.008928571827709675,5.421010862427522e-20,-0.0625,-0.0069444444961845875,7.806255641895632e-18,-0.0376984141767025,0.003968254197388887,0.0069444444961845875,0.022345049306750298,4.01453333302707e-18,5.34843280734219e-33,-0.0011337868636474013,3.403362169327773e-17,-0.0019841270986944437,-0.002314814832061529,0.0037202381063252687,-0.005580357275903225,8.508405423319432e-18,4.01453333302707e-18,0.0011160714784637094,1.4869058513226313e-18,2.0050188548977106e-19,-4.956352906673822e-18,-6.608470507765904e-19,-5.507058842636234e-19,0.008928571827709675,-0.0035714285913854837,-0.008928571827709675,5.34843280734219e-33,1.4869058513226313e-18,0.0035714285913854837,2.671221831812375e-34,-6.603188170846532e-33,-8.804251567922347e-34,-7.336876000483636e-34,0.003968254197388887,-0.0015873016091063619,5.421010862427522e-20,-0.0011337868636474013,2.0050188548977106e-19,2.671221831812375e-34,0.00045351474545896053,-2.1185229388259594e-33,0.0,6.776263578034403e-20,0.010416666977107525,2.4781763706188498e-17,-0.0625,3.403362169327773e-17,-4.956352906673822e-18,-6.603188170846532e-33,-2.1185229388259594e-33,0.03125,-7.049035484010502e-18,-3.854941241544152e-18,0.0069444444961845875,3.2526065174565133e-18,-0.0069444444961845875,-0.0019841270986944437,-6.608470507765904e-19,-8.804251567922347e-34,0.0,-7.049035484010502e-18,0.0019841270986944437,2.710505431213761e-20,0.002314814832061529,2.3852447794681098e-18,7.806255641895632e-18,-0.002314814832061529,-5.507058842636234e-19,-7.336876000483636e-34,6.776263578034403e-20,-3.854941241544152e-18,2.710505431213761e-20,0.0003306878206785768,6.0,3.0,9.0,0.14710597693920135,-0.04246031865477562,-0.06984127312898636,-0.030663780868053436,0.003306878264993429,0.007936508394777775,0.0031746032182127237,0.009259259328246117,0.0055555556900799274,0.001683501643128693,-0.04246031865477562,0.035171955823898315,0.007936508394777775,0.0031746032182127237,-0.004960317630320787,-0.0031746032182127237,-0.0012698412174358964,2.202823495695463e-17,2.6020852139652106e-18,2.0057740190981832e-18,-0.06984127312898636,0.007936508394777775,0.16243386268615723,0.0055555556900799274,1.4506466580050684e-17,-0.007936508394777775,0.0,-0.0555555559694767,-0.0055555556900799274,5.312590645178972e-18,-0.030663780868053436,0.0031746032182127237,0.0055555556900799274,0.015842953696846962,5.073423365178146e-18,-7.32420922233406e-33,-0.0007936508045531809,2.6173993049537724e-17,-0.0013888889225199819,-0.0014430014416575432,0.003306878264993429,-0.004960317630320787,1.4506466580050684e-17,5.073423365178146e-18,0.0009920635493472219,-1.432184855272528e-18,-5.728739627885265e-19,-4.405647074108987e-18,-5.2867765096103e-19,-3.89070113830422e-19,0.007936508394777775,-0.0031746032182127237,-0.007936508394777775,-7.32420922233406e-33,-1.432184855272528e-18,0.0031746032182127237,8.270251116637668e-34,6.36017895838501e-33,7.6322143643529275e-34,5.616781086232633e-34,0.0031746032182127237,-0.0012698412174358964,0.0,-0.0007936508045531809,-5.728739627885265e-19,8.270251116637668e-34,0.0003174603043589741,2.6963019221421302e-33,1.3552527156068805e-20,-2.710505431213761e-20,0.009259259328246117,2.202823495695463e-17,-0.0555555559694767,2.6173993049537724e-17,-4.405647074108987e-18,6.36017895838501e-33,2.6963019221421302e-33,0.02777777798473835,-4.386066468238938e-18,-2.7234909260599248e-18,0.0055555556900799274,2.6020852139652106e-18,-0.0055555556900799274,-0.0013888889225199819,-5.2867765096103e-19,7.6322143643529275e-34,1.3552527156068805e-20,-4.386066468238938e-18,0.0013888889225199819,2.710505431213761e-20,0.001683501643128693,2.0057740190981832e-18,5.312590645178972e-18,-0.0014430014416575432,-3.89070113830422e-19,5.616781086232633e-34,-2.710505431213761e-20,-2.7234909260599248e-18,2.710505431213761e-20,0.0001803751802071929,6.0,3.0,10.0,0.13481241464614868,-0.03847402706742287,-0.06331168860197067,-0.025432899594306946,0.0029761905316263437,0.0071428571827709675,0.002597402548417449,0.008333333767950535,0.004545454401522875,0.0012626262614503503,-0.03847402706742287,0.03175865858793259,0.0071428571827709675,0.002597402548417449,-0.004464285913854837,-0.0028571428265422583,-0.0010389609960839152,-1.5612511283791264e-17,-4.445228907190568e-18,-3.652406068560543e-18,-0.06331168860197067,0.0071428571827709675,0.14664502441883087,0.004545454401522875,-1.0491803379667443e-17,-0.0071428571827709675,-2.168404344971009e-18,-0.05000000074505806,-0.004545454401522875,-4.4800904341066155e-18,-0.025432899594306946,0.002597402548417449,0.004545454401522875,0.011649230495095253,-6.396792817664476e-18,-4.336808689942018e-18,-0.0005772005533799529,-1.8431436932253575e-17,-0.001010101055726409,-0.0009469697251915932,0.0029761905316263437,-0.004464285913854837,-1.0491803379667443e-17,-6.396792817664476e-18,0.0008928571478463709,1.2627486941147692e-18,4.626928137251699e-20,1.4723463351683558e-18,7.284483346386983e-19,5.827586677109586e-19,0.0071428571827709675,-0.0028571428265422583,-0.0071428571827709675,-4.336808689942018e-18,1.2627486941147692e-18,0.0028571428265422583,1.6263032587282567e-19,2.8189256484623115e-18,6.640738306473715e-19,3.4326294530816086e-19,0.002597402548417449,-0.0010389609960839152,-2.168404344971009e-18,-0.0005772005533799529,4.626928137251699e-20,1.6263032587282567e-19,0.0002308802359038964,7.589415207398531e-19,-1.0164395367051604e-20,4.430109557782656e-20,0.008333333767950535,-1.5612511283791264e-17,-0.05000000074505806,-1.8431436932253575e-17,1.4723463351683558e-18,2.8189256484623115e-18,7.589415207398531e-19,0.02500000037252903,-8.673617379884035e-19,1.6888990142098648e-18,0.004545454401522875,-4.445228907190568e-18,-0.004545454401522875,-0.001010101055726409,7.284483346386983e-19,6.640738306473715e-19,-1.0164395367051604e-20,-8.673617379884035e-19,0.001010101055726409,3.7269449679189215e-20,0.0012626262614503503,-3.652406068560543e-18,-4.4800904341066155e-18,-0.0009469697251915932,5.827586677109586e-19,3.4326294530816086e-19,4.430109557782656e-20,1.6888990142098648e-18,3.7269449679189215e-20,0.00010521885269554332,6.0,3.0,11.0,0.1244172528386116,-0.03517315909266472,-0.057900432497262955,-0.021436896175146103,0.0027056278195232153,0.006493506487458944,0.0021645021624863148,0.007575757801532745,0.0037878789007663727,0.0009712509927339852,-0.03517315909266472,0.028950216248631477,0.006493506487458944,0.0021645021624863148,-0.004058441612869501,-0.002597402548417449,-0.0008658008882775903,3.859759734048396e-17,1.951563910473908e-18,-1.971892701208011e-18,-0.057900432497262955,0.006493506487458944,0.1336580067873001,0.0037878789007663727,1.808225090847044e-17,-0.006493506487458944,4.119968255444917e-18,-0.04545454680919647,-0.0037878789007663727,-2.4461037658560862e-18,-0.021436896175146103,0.0021645021624863148,0.0037878789007663727,0.008819883689284325,-1.734723475976807e-18,-3.2526065174565133e-18,-0.00043290044413879514,-2.8189256484623115e-18,-0.0007575757335871458,-0.0006475006230175495,0.0027056278195232153,-0.004058441612869501,1.808225090847044e-17,-1.734723475976807e-18,0.000811688310932368,-1.5056845055888101e-18,-2.4787782789313316e-19,-5.77977687847494e-18,-3.4897757426877174e-19,2.846030702774449e-19,0.006493506487458944,-0.002597402548417449,-0.006493506487458944,-3.2526065174565133e-18,-1.5056845055888101e-18,0.002597402548417449,-1.3552527156068805e-20,2.710505431213761e-19,3.1170812458958252e-19,2.5115485898612684e-19,0.0021645021624863148,-0.0008658008882775903,4.119968255444917e-18,-0.00043290044413879514,-2.4787782789313316e-19,-1.3552527156068805e-20,0.00017316016601398587,-1.6805133673525319e-18,-1.1858461261560205e-19,4.08265201836233e-20,0.007575757801532745,3.859759734048396e-17,-0.04545454680919647,-2.8189256484623115e-18,-5.77977687847494e-18,2.710505431213761e-19,-1.6805133673525319e-18,0.022727273404598236,8.673617379884035e-19,7.376771370341641e-19,0.0037878789007663727,1.951563910473908e-18,-0.0037878789007663727,-0.0007575757335871458,-3.4897757426877174e-19,3.1170812458958252e-19,-1.1858461261560205e-19,8.673617379884035e-19,0.0007575757335871458,5.759824041329242e-20,0.0009712509927339852,-1.971892701208011e-18,-2.4461037658560862e-18,-0.0006475006230175495,2.846030702774449e-19,2.5115485898612684e-19,4.08265201836233e-20,7.376771370341641e-19,5.759824041329242e-20,6.475006375694647e-05,6.0,3.0,12.0,0.11551180481910706,-0.032394688576459885,-0.05334249138832092,-0.018315019086003304,0.0024801588151603937,0.0059523810632526875,0.0018315018387511373,0.0069444444961845875,0.0032051282469183207,0.000763125775847584,-0.032394688576459885,0.026598747819662094,0.0059523810632526875,0.0018315018387511373,-0.0037202381063252687,-0.0023809524718672037,-0.0007326007471419871,1.214306433183765e-17,1.4094628242311558e-18,-3.4897757426877174e-19,-0.05334249138832092,0.0059523810632526875,0.12278693169355392,0.0032051282469183207,-2.0345282647565984e-18,-0.0059523810632526875,7.26415455565288e-18,-0.0416666679084301,-0.0032051282469183207,1.7872149100833503e-18,-0.018315019086003304,0.0018315018387511373,0.0032051282469183207,0.006840381771326065,-3.7947076036992655e-19,5.421010862427522e-19,-0.0003330003237351775,1.474514954580286e-17,-0.0005827505956403911,-0.0004578754596877843,0.0024801588151603937,-0.0037202381063252687,-2.0345282647565984e-18,-3.7947076036992655e-19,0.0007440476329065859,1.052275275587642e-18,-2.8870018632429956e-20,-3.696793976097422e-19,-5.421010862427522e-20,6.437450399132683e-20,0.0059523810632526875,-0.0023809524718672037,-0.0059523810632526875,5.421010862427522e-19,1.052275275587642e-18,0.0023809524718672037,-1.8973538018496328e-19,5.4752209710517974e-18,-4.0657581468206416e-20,1.0843858001191427e-20,0.0018315018387511373,-0.0007326007471419871,7.26415455565288e-18,-0.0003330003237351775,-2.8870018632429956e-20,-1.8973538018496328e-19,0.00013320012658368796,-2.5478751053409354e-18,-2.625802136488331e-19,-5.651349239853786e-21,0.0069444444961845875,1.214306433183765e-17,-0.0416666679084301,1.474514954580286e-17,-3.696793976097422e-19,5.4752209710517974e-18,-2.5478751053409354e-18,0.02083333395421505,1.6263032587282567e-18,-7.93150557248961e-19,0.0032051282469183207,1.4094628242311558e-18,-0.0032051282469183207,-0.0005827505956403911,-5.421010862427522e-20,-4.0657581468206416e-20,-2.625802136488331e-19,1.6263032587282567e-18,0.0005827505956403911,-3.3881317890172014e-20,0.000763125775847584,-3.4897757426877174e-19,1.7872149100833503e-18,-0.0004578754596877843,6.437450399132683e-20,1.0843858001191427e-20,-5.651349239853786e-21,-7.93150557248961e-19,-3.3881317890172014e-20,4.162504046689719e-05,6.0,3.0,13.0,0.10779696702957153,-0.030023548752069473,-0.049450550228357315,-0.015829408541321754,0.002289377385750413,0.005494505632668734,0.0015698587521910667,0.006410256493836641,0.002747252816334367,0.0006105006323195994,-0.030023548752069473,0.02460099384188652,0.005494505632668734,0.0015698587521910667,-0.0034340659622102976,-0.002197802299633622,-0.0006279434892348945,2.2551405187698492e-17,3.3610267347050637e-18,1.0960606337470646e-18,-0.049450550228357315,0.005494505632668734,0.11355311423540115,0.002747252816334367,8.22041091253052e-18,-0.005494505632668734,1.6263032587282567e-18,-0.03846153989434242,-0.002747252816334367,-8.542704674214096e-19,-0.015829408541321754,0.0015698587521910667,0.002747252816334367,0.005413237493485212,3.3068166260807885e-18,1.1926223897340549e-18,-0.00026164311566390097,2.2768245622195593e-18,-0.0004578754596877843,-0.0003330003237351775,0.002289377385750413,-0.0034340659622102976,8.22041091253052e-18,3.3068166260807885e-18,0.0006868132040835917,-2.362325207356702e-19,-2.4724506057392424e-19,-2.2473318510692874e-18,-4.404571325722362e-19,-1.8295911660692887e-19,0.005494505632668734,-0.002197802299633622,-0.005494505632668734,1.1926223897340549e-18,-2.362325207356702e-19,0.002197802299633622,-8.131516293641283e-20,-9.64939933512099e-18,-6.640738306473715e-19,-5.46883870393928e-20,0.0015698587521910667,-0.0006279434892348945,1.6263032587282567e-18,-0.00026164311566390097,-2.4724506057392424e-19,-8.131516293641283e-20,0.00010465725063113496,-3.7947076036992655e-19,-8.470329472543003e-20,-1.5414861297333725e-20,0.006410256493836641,2.2551405187698492e-17,-0.03846153989434242,2.2768245622195593e-18,-2.2473318510692874e-18,-9.64939933512099e-18,-3.7947076036992655e-19,0.01923076994717121,-7.047314121155779e-18,4.0982655694121513e-19,0.002747252816334367,3.3610267347050637e-18,-0.002747252816334367,-0.0004578754596877843,-4.404571325722362e-19,-6.640738306473715e-19,-8.470329472543003e-20,-7.047314121155779e-18,0.0004578754596877843,2.1175823681357508e-20,0.0006105006323195994,1.0960606337470646e-18,-8.542704674214096e-19,-0.0003330003237351775,-1.8295911660692887e-19,-5.46883870393928e-20,-1.5414861297333725e-20,4.0982655694121513e-19,2.1175823681357508e-20,2.775002758426126e-05,6.0,3.0,14.0,0.10104875266551971,-0.02797619067132473,-0.046088434755802155,-0.013818027451634407,0.002125850412994623,0.005102040711790323,0.0013605442363768816,0.0059523810632526875,0.0023809524718672037,0.0004960317746736109,-0.02797619067132473,0.022882653400301933,0.005102040711790323,0.0013605442363768816,-0.0031887756194919348,-0.0020408162381500006,-0.0005442177061922848,-1.0408340855860843e-17,-2.168404344971009e-19,3.7947076036992655e-19,-0.046088434755802155,0.005102040711790323,0.10561224818229675,0.0023809524718672037,-1.923644910439018e-18,-0.005102040711790323,-1.0842021724855044e-18,-0.0357142873108387,-0.0023809524718672037,1.5372715346524898e-18,-0.013818027451634407,0.0013605442363768816,0.0023809524718672037,0.004357993137091398,1.6263032587282567e-19,8.673617379884035e-19,-0.00020931450126226991,2.710505431213761e-18,-0.00036630037357099354,-0.00024801588733680546,0.002125850412994623,-0.0031887756194919348,-1.923644910439018e-18,1.6263032587282567e-19,0.0006377550889737904,2.8291538918328946e-19,2.079331210165826e-19,6.983986207434485e-19,3.3881317890172014e-20,-6.098637220230962e-20,0.005102040711790323,-0.0020408162381500006,-0.005102040711790323,8.673617379884035e-19,2.8291538918328946e-19,0.0020408162381500006,-5.421010862427522e-20,7.047314121155779e-19,2.0328790734103208e-19,-7.723135932754146e-20,0.0013605442363768816,-0.0005442177061922848,-1.0842021724855044e-18,-0.00020931450126226991,2.079331210165826e-19,-5.421010862427522e-20,8.372579759452492e-05,6.505213034913027e-19,-1.3552527156068805e-20,-7.789406953479317e-22,0.0059523810632526875,-1.0408340855860843e-17,-0.0357142873108387,2.710505431213761e-18,6.983986207434485e-19,7.047314121155779e-19,6.505213034913027e-19,0.01785714365541935,1.4094628242311558e-18,-5.135838795286217e-19,0.0023809524718672037,-2.168404344971009e-19,-0.0023809524718672037,-0.00036630037357099354,3.3881317890172014e-20,2.0328790734103208e-19,-1.3552527156068805e-20,1.4094628242311558e-18,0.00036630037357099354,-3.5998900258307764e-20,0.0004960317746736109,3.7947076036992655e-19,1.5372715346524898e-18,-0.00024801588733680546,-6.098637220230962e-20,-7.723135932754146e-20,-7.789406953479317e-22,-5.135838795286217e-19,-3.5998900258307764e-20,1.907814475998748e-05,6.0,3.0,15.0,0.09509609639644623,-0.02619047649204731,-0.0431547611951828,-0.012167367152869701,0.0019841270986944437,0.004761904943734407,0.0011904762359336019,0.0055555556900799274,0.0020833334419876337,0.00040849673678167164,-0.02619047649204731,0.021388888359069824,0.004761904943734407,0.0011904762359336019,-0.0029761905316263437,-0.0019047618843615055,-0.0004761904710903764,-3.5128150388530344e-17,4.336808689942018e-19,1.2637731573034161e-18,-0.0431547611951828,0.004761904943734407,0.0987103208899498,0.0020833334419876337,-2.5839992407439837e-17,-0.004761904943734407,2.6020852139652106e-18,-0.03333333507180214,-0.0020833334419876337,4.3555050397372475e-18,-0.012167367152869701,0.0011904762359336019,0.0020833334419876337,0.0035607190802693367,1.734723475976807e-18,6.288372600415926e-18,-0.0001700680295471102,2.1467203015212988e-17,-0.00029761905898340046,-0.0001885369565570727,0.0019841270986944437,-0.0029761905316263437,-2.5839992407439837e-17,1.734723475976807e-18,0.0005952381179668009,2.2000537227733597e-18,-2.6076527921848946e-20,8.868618591848511e-18,2.574980159653073e-19,-1.2705494208814505e-19,0.004761904943734407,-0.0019047618843615055,-0.004761904943734407,6.288372600415926e-18,2.2000537227733597e-18,0.0019047618843615055,-2.439454888092385e-19,-7.426784881525705e-18,-8.944667923005412e-19,-3.208209666029261e-19,0.0011904762359336019,-0.0004761904710903764,2.6020852139652106e-18,-0.0001700680295471102,-2.6076527921848946e-20,-2.439454888092385e-19,6.80272132740356e-05,-4.0657581468206416e-19,-1.3044307387716225e-19,-3.503568720908098e-20,0.0055555556900799274,-3.5128150388530344e-17,-0.03333333507180214,2.1467203015212988e-17,8.868618591848511e-18,-7.426784881525705e-18,-4.0657581468206416e-19,0.01666666753590107,-1.0842021724855044e-18,-1.3467255174672245e-18,0.0020833334419876337,4.336808689942018e-19,-0.0020833334419876337,-0.00029761905898340046,2.574980159653073e-19,-8.944667923005412e-19,-1.3044307387716225e-19,-1.0842021724855044e-18,0.00029761905898340046,-8.724439356719293e-20,0.00040849673678167164,1.2637731573034161e-18,4.3555050397372475e-18,-0.0001885369565570727,-1.2705494208814505e-19,-3.208209666029261e-19,-3.503568720908098e-20,-1.3467255174672245e-18,-8.724439356719293e-20,1.3466925338434521e-05,6.0,3.0,16.0,0.08980606496334076,-0.024619223549962044,-0.040572479367256165,-0.010795985348522663,0.0018601190531626344,0.004464285913854837,0.0010504202218726277,0.0052083334885537624,0.0018382353009656072,0.0003404139424674213,-0.024619223549962044,0.020078344270586967,0.004464285913854837,0.0010504202218726277,-0.0027901786379516125,-0.0017857142956927419,-0.0004201680712867528,8.673617379884035e-18,5.583641188300348e-18,2.112500170452225e-18,-0.040572479367256165,0.004464285913854837,0.09265581518411636,0.0018382353009656072,1.2461790256744132e-17,-0.004464285913854837,3.0899761915836876e-18,-0.03125,-0.0018382353009656072,1.6332361696347933e-18,-0.010795985348522663,0.0010504202218726277,0.0018382353009656072,0.002947012195363641,5.366800753803247e-18,5.421010862427522e-18,-0.00014005602861288935,5.7462715141731735e-18,-0.00024509805371053517,-0.00014589169586542994,0.0018601190531626344,-0.0027901786379516125,1.2461790256744132e-17,5.366800753803247e-18,0.0005580357392318547,-1.0976872844216502e-18,-8.519043948273841e-20,-1.8305881255025683e-18,-6.420509740187597e-19,-2.871441691192078e-19,0.004464285913854837,-0.0017857142956927419,-0.004464285913854837,5.421010862427522e-18,-1.0976872844216502e-18,0.0017857142956927419,-3.3881317890172014e-19,2.0599841277224584e-18,-9.147955830346444e-19,-2.3349605217297995e-19,0.0010504202218726277,-0.0004201680712867528,3.0899761915836876e-18,-0.00014005602861288935,-8.519043948273841e-20,-3.3881317890172014e-19,5.602241071755998e-05,-4.607859233063394e-19,-1.5754812818929986e-19,-4.357243993104684e-20,0.0052083334885537624,8.673617379884035e-18,-0.03125,5.7462715141731735e-18,-1.8305881255025683e-18,2.0599841277224584e-18,-4.607859233063394e-19,0.015625,1.3010426069826053e-18,-3.7131129571133863e-19,0.0018382353009656072,5.583641188300348e-18,-0.0018382353009656072,-0.00024509805371053517,-6.420509740187597e-19,-9.147955830346444e-19,-1.5754812818929986e-19,1.3010426069826053e-18,0.00024509805371053517,-3.134021904840911e-20,0.0003404139424674213,2.112500170452225e-18,1.6332361696347933e-18,-0.00014589169586542994,-2.871441691192078e-19,-2.3349605217297995e-19,-4.357243993104684e-20,-3.7131129571133863e-19,-3.134021904840911e-20,9.726112693897448e-06,6.0,4.0,3.0,0.2708333432674408,-0.08839285373687744,-0.1190476194024086,-0.14464285969734192,0.0074404762126505375,0.014285714365541935,0.01785714365541935,0.013888888992369175,0.02500000037252903,0.02083333395421505,-0.08839285373687744,0.07627975940704346,0.014285714365541935,0.01785714365541935,-0.01116071455180645,-0.0057142856530845165,-0.0071428571827709675,2.6403031089347532e-17,1.2274751485356092e-17,5.540885876798707e-17,-0.1190476194024086,0.014285714365541935,0.1765872985124588,0.02500000037252903,2.101493539785472e-17,-0.009523809887468815,1.3669535989617494e-18,-0.0416666679084301,-0.01666666753590107,-9.245816727056529e-32,-0.14464285969734192,0.01785714365541935,0.02500000037252903,0.3529762029647827,2.3393984594534807e-17,-1.0593000035421721e-18,-0.01785714365541935,-4.7293793521011684e-32,-0.02500000037252903,-0.125,0.0074404762126505375,-0.01116071455180645,2.101493539785472e-17,2.3393984594534807e-17,0.0022321429569274187,-1.9032393987031007e-18,1.1273396737278756e-33,-4.625929407134921e-18,-2.3790494034752407e-18,-9.912705813347644e-18,0.014285714365541935,-0.0057142856530845165,-0.009523809887468815,-1.0593000035421721e-18,-1.9032393987031007e-18,0.003809523768723011,1.4370233965668687e-20,-2.182256518303975e-18,6.82249625343364e-19,7.97837550198651e-33,0.01785714365541935,-0.0071428571827709675,1.3669535989617494e-18,-0.01785714365541935,1.1273396737278756e-33,1.4370233965668687e-20,0.0071428571827709675,-8.231878458128643e-36,-1.4028791903382696e-18,-5.845330114839155e-18,0.013888888992369175,2.6403031089347532e-17,-0.0416666679084301,-4.7293793521011684e-32,-4.625929407134921e-18,-2.182256518303975e-18,-8.231878458128643e-36,0.013888888992369175,4.151912536003538e-33,2.0543252250341203e-32,0.02500000037252903,1.2274751485356092e-17,-0.01666666753590107,-0.02500000037252903,-2.3790494034752407e-18,6.82249625343364e-19,-1.4028791903382696e-18,4.151912536003538e-33,0.01666666753590107,1.0882471029891434e-32,0.02083333395421505,5.540885876798707e-17,-9.245816727056529e-32,-0.125,-9.912705813347644e-18,7.97837550198651e-33,-5.845330114839155e-18,2.0543252250341203e-32,1.0882471029891434e-32,0.0625,6.0,4.0,4.0,0.22377976775169373,-0.06897321343421936,-0.09303571283817291,-0.09303571283817291,0.005580357275903225,0.010714286006987095,0.010714286006987095,0.010416666977107525,0.014999999664723873,0.010416666977107525,-0.06897321343421936,0.058281250298023224,0.010714286006987095,0.010714286006987095,-0.00837053544819355,-0.004285714123398066,-0.004285714123398066,1.9802273730600955e-17,5.909098709031787e-18,1.9802273730600955e-17,-0.09303571283817291,0.010714286006987095,0.1349404752254486,0.014999999664723873,1.2549485463745166e-17,-0.0071428571827709675,1.8815505162468072e-19,-0.03125,-0.009999999776482582,-2.5902796785376525e-32,-0.09303571283817291,0.010714286006987095,0.014999999664723873,0.1349404752254486,1.2638383391356853e-17,1.8815505162468072e-19,-0.0071428571827709675,-2.5902796785376525e-32,-0.009999999776482582,-0.03125,0.005580357275903225,-0.00837053544819355,1.2549485463745166e-17,1.2638383391356853e-17,0.0016741071594879031,4.614738732891347e-34,-3.555909220402244e-20,-3.469446951953614e-18,-1.4274296007261138e-18,-3.469446951953614e-18,0.010714286006987095,-0.004285714123398066,-0.0071428571827709675,1.8815505162468072e-19,4.614738732891347e-34,0.0028571428265422583,-3.208718899093864e-19,-1.6366924404267695e-18,4.0934976486626074e-19,2.382641182927869e-34,0.010714286006987095,-0.004285714123398066,1.8815505162468072e-19,-0.0071428571827709675,-3.555909220402244e-20,-3.208718899093864e-19,0.0028571428265422583,2.382641182927869e-34,4.0934976486626074e-19,-1.6366924404267695e-18,0.010416666977107525,1.9802273730600955e-17,-0.03125,-2.5902796785376525e-32,-3.469446951953614e-18,-1.6366924404267695e-18,2.382641182927869e-34,0.010416666977107525,2.4911474848679243e-33,7.190138214151024e-33,0.014999999664723873,5.909098709031787e-18,-0.009999999776482582,-0.009999999776482582,-1.4274296007261138e-18,4.0934976486626074e-19,4.0934976486626074e-19,2.4911474848679243e-33,0.006666666828095913,2.4911474848679243e-33,0.010416666977107525,1.9802273730600955e-17,-2.5902796785376525e-32,-0.03125,-3.469446951953614e-18,2.382641182927869e-34,-1.6366924404267695e-18,7.190138214151024e-33,2.4911474848679243e-33,0.010416666977107525,6.0,4.0,5.0,0.19083333015441895,-0.056607142090797424,-0.07642856985330582,-0.06499999761581421,0.004464285913854837,0.008571428246796131,0.0071428571827709675,0.008333333767950535,0.009999999776482582,0.0059523810632526875,-0.056607142090797424,0.04719642922282219,0.008571428246796131,0.0071428571827709675,-0.0066964286379516125,-0.00342857139185071,-0.0028571428265422583,1.5841818984480764e-17,3.141461567270213e-18,8.023096076392733e-18,-0.07642856985330582,0.008571428246796131,0.10928571224212646,0.009999999776482582,1.403304630006821e-17,-0.0057142856530845165,-1.8431436932253575e-18,-0.02500000037252903,-0.006666666828095913,-2.3852447794681098e-18,-0.06499999761581421,0.0071428571827709675,0.009999999776482582,0.0682142823934555,1.0318709219045822e-17,-1.6073949439010601e-18,-0.0035714285913854837,-2.044035976044579e-32,-0.004999999888241291,-0.011904762126505375,0.004464285913854837,-0.0066964286379516125,1.403304630006821e-17,1.0318709219045822e-17,0.0013392857508733869,-1.5225915603215112e-18,-8.762922900742557e-19,-2.775557602921922e-18,-9.499474503456978e-19,-1.677659594239224e-18,0.008571428246796131,-0.00342857139185071,-0.0057142856530845165,-1.6073949439010601e-18,-1.5225915603215112e-18,0.0022857142612338066,3.9259953840782093e-19,-1.309353910982385e-18,4.1726407387080326e-19,2.1185229388259594e-33,0.0071428571827709675,-0.0028571428265422583,-1.8431436932253575e-18,-0.0035714285913854837,-8.762922900742557e-19,3.9259953840782093e-19,0.0014285714132711291,1.5945828824743957e-33,4.336808689942018e-19,0.0,0.008333333767950535,1.5841818984480764e-17,-0.02500000037252903,-2.044035976044579e-32,-2.775557602921922e-18,-1.309353910982385e-18,1.5945828824743957e-33,0.008333333767950535,1.5780670031743502e-33,3.521700627168939e-33,0.009999999776482582,3.141461567270213e-18,-0.006666666828095913,-0.004999999888241291,-9.499474503456978e-19,4.1726407387080326e-19,4.336808689942018e-19,1.5780670031743502e-33,0.0033333334140479565,1.3010426069826053e-18,0.0059523810632526875,8.023096076392733e-18,-2.3852447794681098e-18,-0.011904762126505375,-1.677659594239224e-18,2.1185229388259594e-33,0.0,3.521700627168939e-33,1.3010426069826053e-18,0.0029761905316263437,6.0,4.0,6.0,0.16641156375408173,-0.048022959381341934,-0.06488095223903656,-0.048022959381341934,0.0037202381063252687,0.0071428571827709675,0.005102040711790323,0.0069444444961845875,0.0071428571827709675,0.0037202381063252687,-0.048022959381341934,0.039670493453741074,0.0071428571827709675,0.005102040711790323,-0.005580357275903225,-0.0028571428265422583,-0.0020408162381500006,1.3201515544673766e-17,3.2526065174565133e-18,4.553649124439119e-18,-0.06488095223903656,0.0071428571827709675,0.09186507761478424,0.0071428571827709675,1.0996039446189968e-17,-0.004761904943734407,-7.047314121155779e-19,-0.02083333395421505,-0.004761904943734407,-1.0842021724855044e-18,-0.048022959381341934,0.005102040711790323,0.0071428571827709675,0.039670493453741074,8.003614318605884e-18,4.1290400486203625e-19,-0.0020408162381500006,-1.6763733753284273e-32,-0.0028571428265422583,-0.005580357275903225,0.0037202381063252687,-0.005580357275903225,1.0996039446189968e-17,8.003614318605884e-18,0.0011160714784637094,-9.330523897318788e-19,-7.458295706575454e-19,-2.3129647035674605e-18,-6.851593365455958e-19,-1.0140678030938177e-18,0.0071428571827709675,-0.0028571428265422583,-0.004761904943734407,4.1290400486203625e-19,-9.330523897318788e-19,0.0019047618843615055,3.1252867483253806e-20,-1.0911282591519875e-18,-3.232140518138303e-19,-2.2108461744075378e-21,0.005102040711790323,-0.0020408162381500006,-7.047314121155779e-19,-0.0020408162381500006,-7.458295706575454e-19,3.1252867483253806e-20,0.0008163265301845968,1.672540014781999e-33,2.5358684753521517e-19,1.6263032587282567e-19,0.0069444444961845875,1.3201515544673766e-17,-0.02083333395421505,-1.6763733753284273e-32,-2.3129647035674605e-18,-1.0911282591519875e-18,1.672540014781999e-33,0.0069444444961845875,1.511199374369809e-33,2.0595414077474973e-33,0.0071428571827709675,3.2526065174565133e-18,-0.004761904943734407,-0.0028571428265422583,-6.851593365455958e-19,-3.232140518138303e-19,2.5358684753521517e-19,1.511199374369809e-33,0.0019047618843615055,3.7947076036992655e-19,0.0037202381063252687,4.553649124439119e-18,-1.0842021724855044e-18,-0.005580357275903225,-1.0140678030938177e-18,-2.2108461744075378e-21,1.6263032587282567e-19,2.0595414077474973e-33,3.7947076036992655e-19,0.0011160714784637094,6.0,4.0,7.0,0.14756235480308533,-0.041709184646606445,-0.05637755244970322,-0.036947280168533325,0.0031887756194919348,0.006122448947280645,0.0038265306502580643,0.0059523810632526875,0.0053571430034935474,0.0024801588151603937,-0.041709184646606445,0.034221939742565155,0.006122448947280645,0.0038265306502580643,-0.00478316331282258,-0.0024489795323461294,-0.0015306122368201613,7.23721411028264e-18,1.1384122811097797e-18,3.7947076036992655e-18,-0.05637755244970322,0.006122448947280645,0.07925169914960861,0.0053571430034935474,9.024096286964591e-18,-0.004081632476300001,-5.421010862427522e-19,-0.01785714365541935,-0.0035714285913854837,-1.0842021724855044e-19,-0.036947280168533325,0.0038265306502580643,0.0053571430034935474,0.025212585926055908,5.766084144205044e-18,-1.2246322114883257e-18,-0.0012755101779475808,-2.9738117026452626e-18,-0.0017857142956927419,-0.0029761905316263437,0.0031887756194919348,-0.00478316331282258,9.024096286964591e-18,5.766084144205044e-18,0.0009566326625645161,-5.987311634478396e-19,-4.1183482222152317e-19,-1.9825412040285595e-18,-5.366896706754303e-19,-6.423917207323432e-19,0.006122448947280645,-0.0024489795323461294,-0.004081632476300001,-1.2246322114883257e-18,-5.987311634478396e-19,0.0016326530603691936,4.7034278036286493e-20,1.783660721786363e-18,7.413181275966811e-19,-5.449828978707689e-21,0.0038265306502580643,-0.0015306122368201613,-5.421010862427522e-19,-0.0012755101779475808,-4.1183482222152317e-19,4.7034278036286493e-20,0.0005102040595375001,1.2432603144502462e-33,1.5582863941565233e-19,-1.6263032587282567e-19,0.0059523810632526875,7.23721411028264e-18,-0.01785714365541935,-2.9738117026452626e-18,-1.9825412040285595e-18,1.783660721786363e-18,1.2432603144502462e-33,0.0059523810632526875,1.9825412040285595e-18,1.2518544638517033e-33,0.0053571430034935474,1.1384122811097797e-18,-0.0035714285913854837,-0.0017857142956927419,-5.366896706754303e-19,7.413181275966811e-19,1.5582863941565233e-19,1.9825412040285595e-18,0.0011904762359336019,0.0,0.0024801588151603937,3.7947076036992655e-18,-1.0842021724855044e-19,-0.0029761905316263437,-6.423917207323432e-19,-5.449828978707689e-21,-1.6263032587282567e-19,1.2518544638517033e-33,0.0,0.0004960317746736109,6.0,4.0,8.0,0.1325644850730896,-0.03686755895614624,-0.0498511902987957,-0.02931547537446022,0.0027901786379516125,0.0053571430034935474,0.0029761905316263437,0.0052083334885537624,0.004166666883975267,0.0017361111240461469,-0.03686755895614624,0.030093006789684296,0.0053571430034935474,0.0029761905316263437,-0.004185267724096775,-0.002142857061699033,-0.0011904762359336019,8.673617379884035e-18,2.168404344971009e-18,2.7647155398380363e-18,-0.0498511902987957,0.0053571430034935474,0.069692462682724,0.004166666883975267,6.591949125993806e-18,-0.0035714285913854837,1.8973538018496328e-19,-0.015625,-0.0027777778450399637,4.87890977618477e-19,-0.02931547537446022,0.0029761905316263437,0.004166666883975267,0.017056405544281006,4.780688695888998e-18,-0.0,-0.0008503401186317205,-9.907577728772847e-33,-0.0011904762359336019,-0.0017361111240461469,0.0027901786379516125,-0.004185267724096775,6.591949125993806e-18,4.780688695888998e-18,0.0008370535797439516,0.0,-5.178882689424063e-19,-1.734723475976807e-18,-3.965082252960754e-19,-4.1302940027302046e-19,0.0053571430034935474,-0.002142857061699033,-0.0035714285913854837,-0.0,0.0,0.0014285714132711291,0.0,0.0,0.0,0.0,0.0029761905316263437,-0.0011904762359336019,1.8973538018496328e-19,-0.0008503401186317205,-5.178882689424063e-19,0.0,0.0003401360590942204,1.073280157901497e-33,-6.098637220230962e-20,-2.168404344971009e-19,0.0052083334885537624,8.673617379884035e-18,-0.015625,-9.907577728772847e-33,-1.734723475976807e-18,0.0,1.073280157901497e-33,0.0052083334885537624,8.217301524617855e-34,8.559689049878809e-34,0.004166666883975267,2.168404344971009e-18,-0.0027777778450399637,-0.0011904762359336019,-3.965082252960754e-19,0.0,-6.098637220230962e-20,8.217301524617855e-34,0.0007936508045531809,-1.6263032587282567e-19,0.0017361111240461469,2.7647155398380363e-18,4.87890977618477e-19,-0.0017361111240461469,-4.1302940027302046e-19,0.0,-2.168404344971009e-19,8.559689049878809e-34,-1.6263032587282567e-19,0.00024801588733680546,6.0,4.0,9.0,0.12034270912408829,-0.03303571417927742,-0.044682539999485016,-0.023831168189644814,0.0024801588151603937,0.004761904943734407,0.0023809524718672037,0.004629629664123058,0.0033333334140479565,0.0012626262614503503,-0.03303571417927742,0.026855159550905228,0.004761904943734407,0.0023809524718672037,-0.0037202381063252687,-0.0019047618843615055,-0.0009523809421807528,7.709882483088304e-18,1.463672932855431e-18,1.5720931501039814e-18,-0.044682539999485016,0.004761904943734407,0.06219576671719551,0.0033333334140479565,8.043032783516486e-18,-0.0031746032182127237,-1.3552527156068805e-19,-0.013888888992369175,-0.002222222276031971,-2.168404344971009e-19,-0.023831168189644814,0.0023809524718672037,0.0033333334140479565,0.012090547941625118,3.6158347593183486e-18,-4.1759774767587625e-33,-0.0005952381179668009,-7.493514938999025e-33,-0.0008333333535119891,-0.0010822510812431574,0.0024801588151603937,-0.0037202381063252687,8.043032783516486e-18,3.6158347593183486e-18,0.0007440476329065859,-8.593109441827898e-19,-3.2224159760619763e-19,-1.5419764345791148e-18,-3.172065750669815e-19,-2.9180259183516504e-19,0.004761904943734407,-0.0019047618843615055,-0.0031746032182127237,-4.1759774767587625e-33,-8.593109441827898e-19,0.0012698412174358964,3.7216130484046987e-34,1.7808500642667645e-33,3.6634628122374587e-34,3.3700686058218315e-34,0.0023809524718672037,-0.0009523809421807528,-1.3552527156068805e-19,-0.0005952381179668009,-3.2224159760619763e-19,3.7216130484046987e-34,0.0002380952355451882,6.678187741000367e-34,3.3881317890172014e-20,-1.3552527156068805e-20,0.004629629664123058,7.709882483088304e-18,-0.013888888992369175,-7.493514938999025e-33,-1.5419764345791148e-18,1.7808500642667645e-33,6.678187741000367e-34,0.004629629664123058,6.573841036023292e-34,6.0473646669388365e-34,0.0033333334140479565,1.463672932855431e-18,-0.002222222276031971,-0.0008333333535119891,-3.172065750669815e-19,3.6634628122374587e-34,3.3881317890172014e-20,6.573841036023292e-34,0.0005555555690079927,6.776263578034403e-20,0.0012626262614503503,1.5720931501039814e-18,-2.168404344971009e-19,-0.0010822510812431574,-2.9180259183516504e-19,3.3700686058218315e-34,-1.3552527156068805e-20,6.0473646669388365e-34,6.776263578034403e-20,0.00013528138515539467,6.0,4.0,10.0,0.11018939316272736,-0.029926948249340057,-0.04048701375722885,-0.019756494089961052,0.0022321429569274187,0.004285714123398066,0.0019480519695207477,0.004166666883975267,0.0027272726874798536,0.0009469697251915932,-0.029926948249340057,0.024247564375400543,0.004285714123398066,0.0019480519695207477,-0.0033482143189758062,-0.001714285695925355,-0.0007792207761667669,1.1275702593849246e-17,2.8189256484623115e-18,-3.2255014631443757e-18,-0.04048701375722885,0.004285714123398066,0.05615800991654396,0.0027272726874798536,1.769960046582586e-17,-0.0028571428265422583,2.15485181781494e-18,-0.012500000186264515,-0.001818181830458343,-6.844026213814747e-18,-0.019756494089961052,0.0019480519695207477,0.0027272726874798536,0.00888843834400177,-8.131516293641283e-19,-4.0115480381963664e-18,-0.00043290044413879514,-1.745565497701662e-17,-0.000606060610152781,-0.0007102272938936949,0.0022321429569274187,-0.0033482143189758062,1.769960046582586e-17,-8.131516293641283e-19,0.0006696428754366934,-2.2459099275963087e-18,-7.100401021905784e-19,-2.9010007835865075e-18,-4.904829480679119e-19,3.8285889215894375e-19,0.004285714123398066,-0.001714285695925355,-0.0028571428265422583,-4.0115480381963664e-18,-2.2459099275963087e-18,0.0011428571306169033,-4.2012834183813297e-19,3.6591823321385775e-18,1.7618285302889447e-19,4.812476833239105e-19,0.0019480519695207477,-0.0007792207761667669,2.15485181781494e-18,-0.00043290044413879514,-7.100401021905784e-19,-4.2012834183813297e-19,0.00017316016601398587,-2.439454888092385e-19,-5.421010862427522e-20,9.928697360088008e-20,0.004166666883975267,1.1275702593849246e-17,-0.012500000186264515,-1.745565497701662e-17,-2.9010007835865075e-18,3.6591823321385775e-18,-2.439454888092385e-19,0.004166666883975267,3.1848438816761693e-18,1.423692191923446e-18,0.0027272726874798536,2.8189256484623115e-18,-0.001818181830458343,-0.000606060610152781,-4.904829480679119e-19,1.7618285302889447e-19,-5.421010862427522e-20,3.1848438816761693e-18,0.0004040404164697975,2.1247289501342676e-19,0.0009469697251915932,-3.2255014631443757e-18,-6.844026213814747e-18,-0.0007102272938936949,3.8285889215894375e-19,4.812476833239105e-19,9.928697360088008e-20,1.423692191923446e-18,2.1247289501342676e-19,7.891414134064689e-05,6.0,4.0,11.0,0.10161921381950378,-0.02735389582812786,-0.037012986838817596,-0.016645854339003563,0.0020292208064347506,0.0038961039390414953,0.001623376621864736,0.0037878789007663727,0.0022727272007614374,0.0007284382008947432,-0.02735389582812786,0.022102272137999535,0.0038961039390414953,0.001623376621864736,-0.003043831093236804,-0.0015584415523335338,-0.0006493506371043622,-7.589415207398531e-18,-1.0842021724855044e-19,-2.168404344971009e-19,-0.037012986838817596,0.0038961039390414953,0.05119047686457634,0.0022727272007614374,-6.1257422745431e-18,-0.002597402548417449,-1.0842021724855044e-19,-0.011363636702299118,-0.0015151514671742916,-1.951563910473908e-18,-0.016645854339003563,0.001623376621864736,0.0022727272007614374,0.006728549022227526,-1.3552527156068805e-18,-1.3010426069826053e-18,-0.0003246753185521811,-8.890457814381136e-18,-0.00045454545761458576,-0.0004856254963669926,0.0020292208064347506,-0.003043831093236804,-6.1257422745431e-18,-1.3552527156068805e-18,0.0006087662186473608,1.5351587085728762e-18,5.718575129120637e-19,6.288694373674209e-19,-3.944383285977836e-21,0.0,0.0038961039390414953,-0.0015584415523335338,-0.002597402548417449,-1.3010426069826053e-18,1.5351587085728762e-18,0.0010389609960839152,2.0328790734103208e-19,2.0057740190981832e-18,1.8973538018496328e-19,5.168110406779664e-20,0.001623376621864736,-0.0006493506371043622,-1.0842021724855044e-19,-0.0003246753185521811,5.718575129120637e-19,2.0328790734103208e-19,0.0001298701245104894,4.0657581468206416e-20,-9.486769009248164e-20,1.205386894878522e-20,0.0037878789007663727,-7.589415207398531e-18,-0.011363636702299118,-8.890457814381136e-18,6.288694373674209e-19,2.0057740190981832e-18,4.0657581468206416e-20,0.0037878789007663727,2.290377089375628e-18,4.858828415851397e-19,0.0022727272007614374,-1.0842021724855044e-19,-0.0015151514671742916,-0.00045454545761458576,-3.944383285977836e-21,1.8973538018496328e-19,-9.486769009248164e-20,2.290377089375628e-18,0.0003030303050763905,4.7513131600423734e-20,0.0007284382008947432,-2.168404344971009e-19,-1.951563910473908e-18,-0.0004856254963669926,0.0,5.168110406779664e-20,1.205386894878522e-20,4.858828415851397e-19,4.7513131600423734e-20,4.856254963669926e-05,6.0,4.0,12.0,0.09428800642490387,-0.025188874453306198,-0.034088827669620514,-0.014217033050954342,0.0018601190531626344,0.0035714285913854837,0.0013736264081671834,0.0034722222480922937,0.001923076924867928,0.0005723443464376032,-0.025188874453306198,0.02030620351433754,0.0035714285913854837,0.0013736264081671834,-0.0027901786379516125,-0.0014285714132711291,-0.0005494505749084055,1.5178830414797062e-17,-4.87890977618477e-18,-2.320870275476783e-18,-0.034088827669620514,0.0035714285913854837,0.04703143984079361,0.001923076924867928,4.8382521947165635e-18,-0.0023809524718672037,-3.1848438816761693e-18,-0.010416666977107525,-0.0012820513220503926,-5.692061405548898e-19,-0.014217033050954342,0.0013736264081671834,0.001923076924867928,0.005217698868364096,-5.692061405548898e-18,-3.0357660829594124e-18,-0.00024975024280138314,-1.0842021724855044e-18,-0.00034965036320500076,-0.00034340660204179585,0.0018601190531626344,-0.0027901786379516125,4.8382521947165635e-18,-5.692061405548898e-18,0.0005580357392318547,-6.533928092889922e-19,4.838948680792333e-19,-1.9594827172730313e-18,4.8542639298337525e-19,3.091670257478196e-19,0.0035714285913854837,-0.0014285714132711291,-0.0023809524718672037,-3.0357660829594124e-18,-6.533928092889922e-19,0.0009523809421807528,3.2526065174565133e-19,-3.2255014631443757e-18,1.7618285302889447e-19,1.467898559165264e-19,0.0013736264081671834,-0.0005494505749084055,-3.1848438816761693e-18,-0.00024975024280138314,4.838948680792333e-19,3.2526065174565133e-19,9.990009857574478e-05,1.5585406229479126e-19,3.1170812458958252e-19,7.268897454188894e-20,0.0034722222480922937,1.5178830414797062e-17,-0.010416666977107525,-1.0842021724855044e-18,-1.9594827172730313e-18,-3.2255014631443757e-18,1.5585406229479126e-19,0.0034722222480922937,7.860465750519907e-19,-1.7890187971288723e-20,0.001923076924867928,-4.87890977618477e-18,-0.0012820513220503926,-0.00034965036320500076,4.8542639298337525e-19,1.7618285302889447e-19,3.1170812458958252e-19,7.860465750519907e-19,0.00023310023243539035,5.055040956274774e-20,0.0005723443464376032,-2.320870275476783e-18,-5.692061405548898e-19,-0.00034340660204179585,3.091670257478196e-19,1.467898559165264e-19,7.268897454188894e-20,-1.7890187971288723e-20,5.055040956274774e-20,3.121878035017289e-05,6.0,4.0,13.0,0.08794479072093964,-0.023341836407780647,-0.031593408435583115,-0.012284144759178162,0.0017170329811051488,0.0032967033330351114,0.0011773940641433,0.0032051282469183207,0.0016483516665175557,0.0004578754596877843,-0.023341836407780647,0.018780415877699852,0.0032967033330351114,0.0011773940641433,-0.002575549529865384,-0.0013186812866479158,-0.00047095760237425566,8.239936510889834e-18,1.951563910473908e-18,1.3145951341386741e-18,-0.031593408435583115,0.0032967033330351114,0.043498169630765915,0.0016483516665175557,2.838712015509733e-18,-0.002197802299633622,3.0899761915836876e-18,-0.009615384973585606,-0.001098901149816811,3.048701946968823e-18,-0.012284144759178162,0.0011773940641433,0.0016483516665175557,0.0041286093182861805,2.710505431213761e-18,3.74049749507499e-18,-0.00019623234402388334,1.0137290312739466e-17,-0.00027472528745420277,-0.00024975024280138314,0.0017170329811051488,-0.002575549529865384,2.838712015509733e-18,2.710505431213761e-18,0.000515109917614609,-5.643018384018512e-20,-3.180113701042073e-19,-4.487464645869949e-19,-2.1006417091906648e-19,-1.3552527156068805e-19,0.0032967033330351114,-0.0013186812866479158,-0.002197802299633622,3.74049749507499e-18,-5.643018384018512e-20,0.0008791208965703845,-2.236166980751353e-19,-1.1926223897340549e-18,-6.776263578034403e-20,-2.3174493666559933e-19,0.0011773940641433,-0.00047095760237425566,3.0899761915836876e-18,-0.00019623234402388334,-3.180113701042073e-19,-2.236166980751353e-19,7.849293615436181e-05,-5.963111948670274e-19,-1.1434944787933055e-19,-3.828596417913739e-20,0.0032051282469183207,8.239936510889834e-18,-0.009615384973585606,1.0137290312739466e-17,-4.487464645869949e-19,-1.1926223897340549e-18,-5.963111948670274e-19,0.0032051282469183207,-1.8973538018496328e-19,-6.34823380019001e-19,0.0016483516665175557,1.951563910473908e-18,-0.001098901149816811,-0.00027472528745420277,-2.1006417091906648e-19,-6.776263578034403e-20,-1.1434944787933055e-19,-1.8973538018496328e-19,0.00018315018678549677,-6.776263578034403e-20,0.0004578754596877843,1.3145951341386741e-18,3.048701946968823e-18,-0.00024975024280138314,-1.3552527156068805e-19,-2.3174493666559933e-19,-3.828596417913739e-20,-6.34823380019001e-19,-6.776263578034403e-20,2.0812520233448595e-05,6.0,4.0,14.0,0.08240221440792084,-0.021747449412941933,-0.029438775032758713,-0.010720663703978062,0.0015943878097459674,0.0030612244736403227,0.0010204081190750003,0.0029761905316263437,0.0014285714132711291,0.00037202381645329297,-0.021747449412941933,0.017468111589550972,0.0030612244736403227,0.0010204081190750003,-0.00239158165641129,-0.0012244897661730647,-0.0004081632650922984,-4.445228907190568e-18,1.1384122811097797e-18,6.2002811739014785e-19,-0.029438775032758713,0.0030612244736403227,0.04045918211340904,0.0014285714132711291,1.4592076051137166e-18,-0.0020408162381500006,3.2526065174565133e-19,-0.008928571827709675,-0.0009523809421807528,2.217050061313428e-19,-0.010720663703978062,0.0010204081190750003,0.0014285714132711291,0.0033234399743378162,2.222614453595284e-18,8.131516293641283e-19,-0.00015698587230872363,2.0057740190981832e-18,-0.00021978022414259613,-0.00018601190822664648,0.0015943878097459674,-0.00239158165641129,1.4592076051137166e-18,2.222614453595284e-18,0.00047831633128225803,-8.422387118215196e-19,-3.74138805840198e-19,6.507340440050936e-19,-1.5754812818929986e-19,-6.776263578034403e-20,0.0030612244736403227,-0.0012244897661730647,-0.0020408162381500006,8.131516293641283e-19,-8.422387118215196e-19,0.0008163265301845968,-4.743384504624082e-20,-1.4907779871675686e-19,-1.0164395367051604e-20,-4.889570906434357e-20,0.0010204081190750003,-0.0004081632650922984,3.2526065174565133e-19,-0.00015698587230872363,-3.74138805840198e-19,-4.743384504624082e-20,6.27943518338725e-05,8.131516293641283e-20,-4.912791094074942e-20,-2.5911720262733425e-20,0.0029761905316263437,-4.445228907190568e-18,-0.008928571827709675,2.0057740190981832e-18,6.507340440050936e-19,-1.4907779871675686e-19,8.131516293641283e-20,0.0029761905316263437,-1.4365678785432934e-18,9.016520708420889e-21,0.0014285714132711291,1.1384122811097797e-18,-0.0009523809421807528,-0.00021978022414259613,-1.5754812818929986e-19,-1.0164395367051604e-20,-4.912791094074942e-20,-1.4365678785432934e-18,0.00014652014942839742,-1.5670109524204556e-20,0.00037202381645329297,6.2002811739014785e-19,2.217050061313428e-19,-0.00018601190822664648,-6.776263578034403e-20,-4.889570906434357e-20,-2.5911720262733425e-20,9.016520708420889e-21,-1.5670109524204556e-20,1.430860811524326e-05,6.0,4.0,15.0,0.07751750946044922,-0.020357143133878708,-0.027559524402022362,-0.009438024833798409,0.0014880952658131719,0.0028571428265422583,0.0008928571478463709,0.0027777778450399637,0.0012499999720603228,0.00030637255986221135,-0.020357143133878708,0.016327381134033203,0.0028571428265422583,0.0008928571478463709,-0.0022321429569274187,-0.0011428571306169033,-0.0003571428533177823,-1.951563910473908e-17,-5.421010862427522e-20,8.521151449378261e-19,-0.027559524402022362,0.0028571428265422583,0.03781745955348015,0.0012499999720603228,-7.225701410517127e-18,-0.0019047618843615055,-3.5236570605778894e-18,-0.008333333767950535,-0.0008333333535119891,9.368371675493123e-20,-0.009438024833798409,0.0008928571478463709,0.0012499999720603228,0.0027151822578161955,2.358139725155972e-18,3.2526065174565133e-19,-0.00012755101488437504,-3.3068166260807885e-18,-0.00017857142665889114,-0.00014140272105578333,0.0014880952658131719,-0.0022321429569274187,-7.225701410517127e-18,2.358139725155972e-18,0.00044642857392318547,1.927042218762956e-19,-1.0337829292109832e-19,2.2026622368350456e-18,-2.710505431213761e-20,-1.2705494208814505e-19,0.0028571428265422583,-0.0011428571306169033,-0.0019047618843615055,3.2526065174565133e-19,1.927042218762956e-19,0.0007619047537446022,1.6263032587282567e-19,7.318364664277155e-19,-1.5246593050577406e-19,-4.3238468989902825e-20,0.0008928571478463709,-0.0003571428533177823,-3.5236570605778894e-18,-0.00012755101488437504,-1.0337829292109832e-19,1.6263032587282567e-19,5.10204081365373e-05,8.538092108323347e-19,5.844527336054672e-20,-1.661988573523876e-20,0.0027777778450399637,-1.951563910473908e-17,-0.008333333767950535,-3.3068166260807885e-18,2.2026622368350456e-18,7.318364664277155e-19,8.538092108323347e-19,0.0027777778450399637,2.168404344971009e-19,3.1262321899161345e-20,0.0012499999720603228,-5.421010862427522e-20,-0.0008333333535119891,-0.00017857142665889114,-2.710505431213761e-20,-1.5246593050577406e-19,5.844527336054672e-20,2.168404344971009e-19,0.0001190476177725941,-9.740878893424454e-21,0.00030637255986221135,8.521151449378261e-19,9.368371675493123e-20,-0.00014140272105578333,-1.2705494208814505e-19,-4.3238468989902825e-20,-1.661988573523876e-20,3.1262321899161345e-20,-9.740878893424454e-21,1.0100194231199566e-05,6.0,4.0,16.0,0.07317999750375748,-0.01913405954837799,-0.02590598724782467,-0.008372724056243896,0.0013950893189758062,0.0026785715017467737,0.0007878151373006403,0.0026041667442768812,0.001102941227145493,0.0002553104714024812,-0.01913405954837799,0.015326615422964096,0.0026785715017467737,0.0007878151373006403,-0.0020926338620483875,-0.0010714285308495164,-0.00031512606074102223,9.432558900623889e-18,-1.328147661294743e-18,-3.8794108984246956e-19,-0.02590598724782467,0.0026785715017467737,0.035499826073646545,0.001102941227145493,1.5697197621314137e-18,-0.0017857142956927419,6.505213034913027e-19,-0.0078125,-0.000735294132027775,-1.2785974746512852e-18,-0.008372724056243896,0.0007878151373006403,0.001102941227145493,0.0022470238618552685,-1.6263032587282567e-18,-1.3010426069826053e-18,-0.0001050420178216882,-3.3610267347050637e-18,-0.00014705881767440587,-0.00010941876826109365,0.0013950893189758062,-0.0020926338620483875,1.5697197621314137e-18,-1.6263032587282567e-18,0.0004185267898719758,-7.846298602319317e-20,1.976921855934757e-19,-8.611199881824433e-19,1.8380614955418317e-19,5.421010862427522e-20,0.0026785715017467737,-0.0010714285308495164,-0.0017857142956927419,-1.3010426069826053e-18,-7.846298602319317e-20,0.0007142857066355646,-1.6940658945086007e-20,-1.734723475976807e-18,7.453889935837843e-20,7.587270870907458e-20,0.0007878151373006403,-0.00031512606074102223,6.505213034913027e-19,-0.0001050420178216882,1.976921855934757e-19,-1.6940658945086007e-20,4.201680712867528e-05,-2.574980159653073e-19,3.4304834363799164e-20,8.58963654341314e-22,0.0026041667442768812,9.432558900623889e-18,-0.0078125,-3.3610267347050637e-18,-8.611199881824433e-19,-1.734723475976807e-18,-2.574980159653073e-19,0.0026041667442768812,-2.710505431213761e-20,2.602028190201733e-19,0.001102941227145493,-1.328147661294743e-18,-0.000735294132027775,-0.00014705881767440587,1.8380614955418317e-19,7.453889935837843e-20,3.4304834363799164e-20,-2.710505431213761e-20,9.803921420825645e-05,3.494010907423989e-20,0.0002553104714024812,-3.8794108984246956e-19,-1.2785974746512852e-18,-0.00010941876826109365,5.421010862427522e-20,7.587270870907458e-20,8.58963654341314e-22,2.602028190201733e-19,3.494010907423989e-20,7.294584520423086e-06,6.0,5.0,3.0,0.23174603283405304,-0.07261905074119568,-0.0833333358168602,-0.1190476194024086,0.0059523810632526875,0.009523809887468815,0.014285714365541935,0.007936508394777775,0.01666666753590107,0.01666666753590107,-0.07261905074119568,0.06178571283817291,0.009523809887468815,0.014285714365541935,-0.008928571827709675,-0.003809523768723011,-0.0057142856530845165,-2.5518333300081242e-17,-1.430733773682957e-17,-7.241319738534986e-17,-0.0833333358168602,0.009523809887468815,0.0892857164144516,0.01666666753590107,-2.5129689106718102e-17,-0.004761904943734407,3.6423256320256656e-18,-0.01587301678955555,-0.008333333767950535,-2.237829032666057e-31,-0.1190476194024086,0.014285714365541935,0.01666666753590107,0.2857142984867096,-4.4000618678949677e-17,9.288277715484174e-19,-0.014285714365541935,3.441305285237583e-19,-0.01666666753590107,-0.10000000149011612,0.0059523810632526875,-0.008928571827709675,-2.5129689106718102e-17,-4.4000618678949677e-17,0.0017857142956927419,1.5096387391095433e-18,2.3902893404337644e-18,4.580378225162851e-18,3.1521179283065807e-18,1.5860329632228476e-17,0.009523809887468815,-0.003809523768723011,-0.004761904943734407,9.288277715484174e-19,1.5096387391095433e-18,0.0019047618843615055,-6.395190258625231e-19,1.426672420272898e-18,3.3498488362924815e-19,1.3424561317517127e-32,0.014285714365541935,-0.0057142856530845165,3.6423256320256656e-18,-0.014285714365541935,2.3902893404337644e-18,-6.395190258625231e-19,0.0057142856530845165,1.6363831330388115e-20,-2.11471060384412e-18,-6.888448707840988e-18,0.007936508394777775,-2.5518333300081242e-17,-0.01587301678955555,3.441305285237583e-19,4.580378225162851e-18,1.426672420272898e-18,1.6363831330388115e-20,0.003968254197388887,-1.925200578677289e-19,4.0102122021416806e-32,0.01666666753590107,-1.430733773682957e-17,-0.008333333767950535,-0.01666666753590107,3.1521179283065807e-18,3.3498488362924815e-19,-2.11471060384412e-18,-1.925200578677289e-19,0.008333333767950535,2.9864071688325535e-32,0.01666666753590107,-7.241319738534986e-17,-2.237829032666057e-31,-0.10000000149011612,1.5860329632228476e-17,1.3424561317517127e-32,-6.888448707840988e-18,4.0102122021416806e-32,2.9864071688325535e-32,0.05000000074505806,6.0,5.0,4.0,0.19083333015441895,-0.056607142090797424,-0.06499999761581421,-0.07642856985330582,0.004464285913854837,0.0071428571827709675,0.008571428246796131,0.0059523810632526875,0.009999999776482582,0.008333333767950535,-0.056607142090797424,0.04719642922282219,0.0071428571827709675,0.008571428246796131,-0.0066964286379516125,-0.0028571428265422583,-0.00342857139185071,8.748934656198826e-18,3.3262987974579437e-18,1.5841818984480764e-17,-0.06499999761581421,0.0071428571827709675,0.0682142823934555,0.009999999776482582,1.0581742727670334e-17,-0.0035714285913854837,-1.1465908226212446e-18,-0.011904762126505375,-0.004999999888241291,-2.0864733792243775e-32,-0.07642856985330582,0.008571428246796131,0.009999999776482582,0.10928571224212646,1.3979107506684852e-17,-3.977957319195142e-19,-0.0057142856530845165,-3.2906966337009317e-19,-0.006666666828095913,-0.02500000037252903,0.004464285913854837,-0.0066964286379516125,1.0581742727670334e-17,1.3979107506684852e-17,0.0013392857508733869,-9.128897589033222e-19,-1.4996779335707563e-18,-1.716517437489668e-18,-9.516196993515503e-19,-2.775557602921922e-18,0.0071428571827709675,-0.0028571428265422583,-0.0035714285913854837,-3.977957319195142e-19,-9.128897589033222e-19,0.0014285714132711291,2.2517324842398122e-20,-1.3059018277922598e-19,1.7075121031065623e-19,1.8065816356062644e-33,0.008571428246796131,-0.00342857139185071,-1.1465908226212446e-18,-0.0057142856530845165,-1.4996779335707563e-18,2.2517324842398122e-20,0.0022857142612338066,2.0176230955261822e-33,7.268650075486952e-19,-1.309353910982385e-18,0.0059523810632526875,8.748934656198826e-18,-0.011904762126505375,-3.2906966337009317e-19,-1.716517437489668e-18,-1.3059018277922598e-19,2.0176230955261822e-33,0.0029761905316263437,1.6453483168504658e-19,3.521700627168939e-33,0.009999999776482582,3.3262987974579437e-18,-0.004999999888241291,-0.006666666828095913,-9.516196993515503e-19,1.7075121031065623e-19,7.268650075486952e-19,1.6453483168504658e-19,0.0033333334140479565,1.5076515854822335e-33,0.008333333767950535,1.5841818984480764e-17,-2.0864733792243775e-32,-0.02500000037252903,-2.775557602921922e-18,1.8065816356062644e-33,-1.309353910982385e-18,3.521700627168939e-33,1.5076515854822335e-33,0.008333333767950535,6.0,5.0,5.0,0.16238094866275787,-0.04642857238650322,-0.0533333346247673,-0.0533333346247673,0.0035714285913854837,0.0057142856530845165,0.0057142856530845165,0.004761904943734407,0.006666666828095913,0.004761904943734407,-0.04642857238650322,0.03821428492665291,0.0057142856530845165,0.0057142856530845165,-0.0053571430034935474,-0.0022857142612338066,-0.0022857142612338066,-1.3552527156068805e-17,-6.8585986546660934e-18,-1.3660947373317356e-17,-0.0533333346247673,0.0057142856530845165,0.05523809418082237,0.006666666828095913,-1.6435714811959137e-17,-0.0028571428265422583,1.0842021724855044e-19,-0.009523809887468815,-0.0033333334140479565,2.168404344971009e-19,-0.0533333346247673,0.0057142856530845165,0.006666666828095913,0.05523809418082237,-1.6318989701360554e-17,2.762378185920903e-19,-0.0028571428265422583,-7.208766593535117e-20,-0.0033333334140479565,-0.009523809887468815,0.0035714285913854837,-0.0053571430034935474,-1.6435714811959137e-17,-1.6318989701360554e-17,0.0010714285308495164,1.1994482841488425e-18,1.1613382121721462e-18,2.721727583789115e-18,1.2745994005580867e-18,2.7167967601576863e-18,0.0057142856530845165,-0.0022857142612338066,-0.0028571428265422583,2.762378185920903e-19,1.1994482841488425e-18,0.0011428571306169033,-1.735303562230754e-19,0.0,6.464563828648522e-20,1.096629769551418e-20,0.0057142856530845165,-0.0022857142612338066,1.0842021724855044e-19,-0.0028571428265422583,1.1613382121721462e-18,-1.735303562230754e-19,0.0011428571306169033,6.776263578034403e-21,1.6263032587282567e-19,0.0,0.004761904943734407,-1.3552527156068805e-17,-0.009523809887468815,-7.208766593535117e-20,2.721727583789115e-18,0.0,6.776263578034403e-21,0.0023809524718672037,0.0,0.0,0.006666666828095913,-6.8585986546660934e-18,-0.0033333334140479565,-0.0033333334140479565,1.2745994005580867e-18,6.464563828648522e-20,1.6263032587282567e-19,0.0,0.0016666667070239782,-1.0842021724855044e-19,0.004761904943734407,-1.3660947373317356e-17,2.168404344971009e-19,-0.009523809887468815,2.7167967601576863e-18,1.096629769551418e-20,0.0,0.0,-1.0842021724855044e-19,0.0023809524718672037,6.0,5.0,6.0,0.14138321578502655,-0.03937074914574623,-0.04523809626698494,-0.03937074914574623,0.0029761905316263437,0.004761904943734407,0.004081632476300001,0.003968254197388887,0.004761904943734407,0.0029761905316263437,-0.03937074914574623,0.03211734816431999,0.004761904943734407,0.004081632476300001,-0.004464285913854837,-0.0019047618843615055,-0.0016326530603691936,-1.3118846287074604e-17,-4.797027580938452e-18,-8.131516293641283e-18,-0.04523809626698494,0.004761904943734407,0.04642857238650322,0.004761904943734407,-1.331853926747348e-17,-0.0023809524718672037,2.439454888092385e-19,-0.007936508394777775,-0.0023809524718672037,1.0842021724855044e-19,-0.03937074914574623,0.004081632476300001,0.004761904943734407,0.03211734816431999,-1.0784203454398813e-17,6.340838288525903e-19,-0.0016326530603691936,1.5811163205690454e-19,-0.0019047618843615055,-0.004464285913854837,0.0029761905316263437,-0.004464285913854837,-1.331853926747348e-17,-1.0784203454398813e-17,0.0008928571478463709,7.419325676954432e-19,4.902249194155836e-19,2.2905435594739044e-18,9.171439487936824e-19,1.5458802100824823e-18,0.004761904943734407,-0.0019047618843615055,-0.0023809524718672037,6.340838288525903e-19,7.419325676954432e-19,0.0009523809421807528,-2.1688618792473273e-19,9.215718466126788e-19,-5.115771199755225e-20,4.848381027779624e-21,0.004081632476300001,-0.0016326530603691936,2.439454888092385e-19,-0.0016326530603691936,4.902249194155836e-19,-2.1688618792473273e-19,0.0006530612008646131,-1.3552527156068805e-20,1.0842021724855044e-19,1.3552527156068805e-19,0.003968254197388887,-1.3118846287074604e-17,-0.007936508394777775,1.5811163205690454e-19,2.2905435594739044e-18,9.215718466126788e-19,-1.3552527156068805e-20,0.0019841270986944437,5.421010862427522e-20,-5.421010862427522e-20,0.004761904943734407,-4.797027580938452e-18,-0.0023809524718672037,-0.0019047618843615055,9.171439487936824e-19,-5.115771199755225e-20,1.0842021724855044e-19,5.421010862427522e-20,0.0009523809421807528,0.0,0.0029761905316263437,-8.131516293641283e-18,1.0842021724855044e-19,-0.004464285913854837,1.5458802100824823e-18,4.848381027779624e-21,1.3552527156068805e-19,-5.421010862427522e-20,0.0,0.0008928571478463709,6.0,5.0,7.0,0.12522675096988678,-0.034183673560619354,-0.03928571566939354,-0.0302721094340086,0.0025510203558951616,0.004081632476300001,0.0030612244736403227,0.003401360474526882,0.0035714285913854837,0.0019841270986944437,-0.034183673560619354,0.027704082429409027,0.004081632476300001,0.0030612244736403227,-0.0038265306502580643,-0.0016326530603691936,-0.0012244897661730647,-2.1514195145812125e-17,-8.642559229424507e-18,-1.0299920638612292e-18,-0.03928571566939354,0.004081632476300001,0.04005102068185806,0.0035714285913854837,-2.0143629662705663e-17,-0.0020408162381500006,-3.198396408832238e-18,-0.006802720949053764,-0.0017857142956927419,2.0057740190981832e-18,-0.0302721094340086,0.0030612244736403227,0.0035714285913854837,0.020408162847161293,-4.01866427300616e-18,-4.2481593301044035e-18,-0.0010204081190750003,4.848010030812545e-18,-0.0011904762359336019,-0.0023809524718672037,0.0025510203558951616,-0.0038265306502580643,-2.0143629662705663e-17,-4.01866427300616e-18,0.0007653061184100807,9.06304470649211e-19,1.2144204341818113e-19,3.15588180688885e-18,1.1850067446294323e-18,1.4084542584199063e-19,0.004081632476300001,-0.0016326530603691936,-0.0020408162381500006,-4.2481593301044035e-18,9.06304470649211e-19,0.0008163265301845968,5.474233730990715e-19,2.3171365889868717e-18,8.50702578945527e-19,1.8126090188466044e-19,0.0030612244736403227,-0.0012244897661730647,-3.198396408832238e-18,-0.0010204081190750003,1.2144204341818113e-19,5.474233730990715e-19,0.0004081632650922984,1.9420811377809942e-19,1.7618285302889447e-19,-1.2197274440461925e-19,0.003401360474526882,-2.1514195145812125e-17,-0.006802720949053764,4.848010030812545e-18,3.15588180688885e-18,2.3171365889868717e-18,1.9420811377809942e-19,0.001700680237263441,-2.1219033528605747e-19,-6.29378153444141e-19,0.0035714285913854837,-8.642559229424507e-18,-0.0017857142956927419,-0.0011904762359336019,1.1850067446294323e-18,8.50702578945527e-19,1.7618285302889447e-19,-2.1219033528605747e-19,0.0005952381179668009,0.0,0.0019841270986944437,-1.0299920638612292e-18,2.0057740190981832e-18,-0.0023809524718672037,1.4084542584199063e-19,1.8126090188466044e-19,-1.2197274440461925e-19,-6.29378153444141e-19,0.0,0.00039682540227659047,6.0,5.0,8.0,0.11240079253911972,-0.03020833246409893,-0.0347222238779068,-0.02400793693959713,0.0022321429569274187,0.0035714285913854837,0.0023809524718672037,0.0029761905316263437,0.0027777778450399637,0.0013888889225199819,-0.03020833246409893,0.024360118433833122,0.0035714285913854837,0.0023809524718672037,-0.0033482143189758062,-0.0014285714132711291,-0.0009523809421807528,4.248302432350375e-18,1.328147661294743e-18,2.222614453595284e-18,-0.0347222238779068,0.0035714285913854837,0.0352182537317276,0.0027777778450399637,5.411393233445368e-18,-0.0017857142956927419,0.0,-0.0059523810632526875,-0.0013888889225199819,0.0,-0.02400793693959713,0.0023809524718672037,0.0027777778450399637,0.013803854584693909,3.670263657214644e-18,-2.384346659927019e-33,-0.0006802721181884408,-4.6569269496358705e-33,-0.0007936508045531809,-0.0013888889225199819,0.0022321429569274187,-0.0033482143189758062,5.411393233445368e-18,3.670263657214644e-18,0.0006696428754366934,-4.350261748629427e-19,-3.3144850556482497e-19,-8.49660486470075e-19,-2.64338825480515e-19,-3.304235253882952e-19,0.0035714285913854837,-0.0014285714132711291,-0.0017857142956927419,-2.384346659927019e-33,-4.350261748629427e-19,0.0007142857066355646,2.1532188943696774e-34,5.519726578827983e-34,1.7172482434588457e-34,2.1465603617207422e-34,0.0023809524718672037,-0.0009523809421807528,0.0,-0.0006802721181884408,-3.3144850556482497e-19,2.1532188943696774e-34,0.0002721088530961424,4.2055059866869145e-34,0.0,-1.7618285302889447e-19,0.0029761905316263437,4.248302432350375e-18,-0.0059523810632526875,-4.6569269496358705e-33,-8.49660486470075e-19,5.519726578827983e-34,4.2055059866869145e-34,0.0014880952658131719,3.354000378647808e-34,4.192500702898501e-34,0.0027777778450399637,1.328147661294743e-18,-0.0013888889225199819,-0.0007936508045531809,-2.64338825480515e-19,1.7172482434588457e-34,0.0,3.354000378647808e-34,0.00039682540227659047,0.0,0.0013888889225199819,2.222614453595284e-18,0.0,-0.0013888889225199819,-3.304235253882952e-19,2.1465603617207422e-34,-1.7618285302889447e-19,4.192500702898501e-34,0.0,0.00019841270113829523,6.0,5.0,9.0,0.10196729004383087,-0.027063492685556412,-0.031111111864447594,-0.01950937882065773,0.0019841270986944437,0.0031746032182127237,0.0019047618843615055,0.0026455025654286146,0.002222222276031971,0.001010101055726409,-0.027063492685556412,0.021738095209002495,0.0031746032182127237,0.0019047618843615055,-0.0029761905316263437,-0.0012698412174358964,-0.0007619047537446022,-7.552537841329692e-18,-2.100641709190665e-18,-2.6020852139652106e-18,-0.031111111864447594,0.0031746032182127237,0.03142857179045677,0.002222222276031971,-9.4524203343119e-18,-0.0015873016091063619,2.710505431213761e-20,-0.005291005130857229,-0.0011111111380159855,0.0,-0.01950937882065773,0.0019047618843615055,0.002222222276031971,0.009783550165593624,-5.612130529367593e-18,-6.481527444272302e-33,-0.0004761904710903764,-1.424163715519813e-32,-0.0005555555690079927,-0.0008658008882775903,0.0019841270986944437,-0.0029761905316263437,-9.4524203343119e-18,-5.612130529367593e-18,0.0005952381179668009,6.874487656859895e-19,4.124692439019572e-19,1.5105074855478771e-18,4.2294210008930866e-19,4.668841572760217e-19,0.0031746032182127237,-0.0012698412174358964,-0.0015873016091063619,-6.481527444272302e-33,6.874487656859895e-19,0.0006349206087179482,4.763664683590915e-34,1.7445061666622395e-33,4.884617082983278e-34,5.392109677479434e-34,0.0019047618843615055,-0.0007619047537446022,2.710505431213761e-20,-0.0004761904710903764,4.124692439019572e-19,4.763664683590915e-34,0.00019047618843615055,1.0467036999973437e-33,-3.3881317890172014e-21,6.776263578034403e-20,0.0026455025654286146,-7.552537841329692e-18,-0.005291005130857229,-1.424163715519813e-32,1.5105074855478771e-18,1.7445061666622395e-33,1.0467036999973437e-33,0.0013227512827143073,1.073280157901497e-33,1.184789756072407e-33,0.002222222276031971,-2.100641709190665e-18,-0.0011111111380159855,-0.0005555555690079927,4.2294210008930866e-19,4.884617082983278e-34,-3.3881317890172014e-21,1.073280157901497e-33,0.00027777778450399637,0.0,0.001010101055726409,-2.6020852139652106e-18,0.0,-0.0008658008882775903,4.668841572760217e-19,5.392109677479434e-34,6.776263578034403e-20,1.184789756072407e-33,0.0,0.00010822511103469878,6.0,5.0,10.0,0.09331168979406357,-0.024512987583875656,-0.02818181738257408,-0.016168830916285515,0.0017857142956927419,0.0028571428265422583,0.0015584415523335338,0.0023809524718672037,0.001818181830458343,0.0007575757335871458,-0.024512987583875656,0.019626623019576073,0.0028571428265422583,0.0015584415523335338,-0.0026785715017467737,-0.0011428571306169033,-0.0006233766325749457,-9.324138683375338e-18,-1.6263032587282567e-18,-2.947674656444965e-18,-0.02818181738257408,0.0028571428265422583,0.02837662398815155,0.001818181830458343,-5.1906179007743525e-18,-0.0014285714132711291,-5.177065373618284e-18,-0.004761904943734407,-0.0009090909152291715,-1.4026865606531214e-18,-0.016168830916285515,0.0015584415523335338,0.001818181830458343,0.007191558368504047,-3.3068166260807885e-18,-2.8189256484623115e-18,-0.00034632033202797174,-2.168404344971009e-18,-0.0004040404164697975,-0.0005681818001903594,0.0017857142956927419,-0.0026785715017467737,-5.1906179007743525e-18,-3.3068166260807885e-18,0.0005357142654247582,-1.2957113503865186e-19,8.539890838414738e-20,1.3224287413347044e-18,3.5628636767787983e-20,3.5236570605778894e-19,0.0028571428265422583,-0.0011428571306169033,-0.0014285714132711291,-2.8189256484623115e-18,-1.2957113503865186e-19,0.0005714285653084517,2.642742795433417e-19,-3.6591823321385775e-19,0.0,2.2411357512933824e-19,0.0015584415523335338,-0.0006233766325749457,-5.177065373618284e-18,-0.00034632033202797174,8.539890838414738e-20,2.642742795433417e-19,0.00013852813572157174,7.182839392716467e-19,3.1848438816761693e-19,1.3638432447621852e-19,0.0023809524718672037,-9.324138683375338e-18,-0.004761904943734407,-2.168404344971009e-18,1.3224287413347044e-18,-3.6591823321385775e-19,7.182839392716467e-19,0.0011904762359336019,-5.692061405548898e-19,1.2979963075817257e-19,0.001818181830458343,-1.6263032587282567e-18,-0.0009090909152291715,-0.0004040404164697975,3.5628636767787983e-20,0.0,3.1848438816761693e-19,-5.692061405548898e-19,0.00020202020823489875,6.170111441269226e-20,0.0007575757335871458,-2.947674656444965e-18,-1.4026865606531214e-18,-0.0005681818001903594,3.5236570605778894e-19,2.2411357512933824e-19,1.3638432447621852e-19,1.2979963075817257e-19,6.170111441269226e-20,6.313131598290056e-05,6.0,5.0,11.0,0.08601398766040802,-0.022402597591280937,-0.025757575407624245,-0.013619713485240936,0.001623376621864736,0.002597402548417449,0.0012987012742087245,0.0021645021624863148,0.0015151514671742916,0.0005827505956403911,-0.022402597591280937,0.017889609560370445,0.002597402548417449,0.0012987012742087245,-0.002435064874589443,-0.0010389609960839152,-0.0005194804980419576,4.228388472693467e-18,1.734723475976807e-18,-8.131516293641283e-20,-0.025757575407624245,0.002597402548417449,0.02586580067873001,0.0015151514671742916,4.851804721872632e-18,-0.0012987012742087245,-1.700842158086635e-18,-0.0043290043249726295,-0.0007575757335871458,-1.2874900798265365e-18,-0.013619713485240936,0.0012987012742087245,0.0015151514671742916,0.005443445406854153,1.951563910473908e-18,-4.336808689942018e-19,-0.0002597402490209788,2.168404344971009e-19,-0.0003030303050763905,-0.0003885003970935941,0.001623376621864736,-0.002435064874589443,4.851804721872632e-18,1.951563910473908e-18,0.0004870129923801869,-5.375209354922578e-19,-1.4617169350500786e-19,-3.5639588509851215e-19,-3.5800294193233782e-19,-6.268043809681823e-20,0.002597402548417449,-0.0010389609960839152,-0.0012987012742087245,-4.336808689942018e-19,-5.375209354922578e-19,0.0005194804980419576,6.776263578034403e-20,-1.802486111757151e-18,-2.371692252312041e-19,9.175420165387765e-20,0.0012987012742087245,-0.0005194804980419576,-1.700842158086635e-18,-0.0002597402490209788,-1.4617169350500786e-19,6.776263578034403e-20,0.00010389610542915761,2.168404344971009e-19,1.1180834903756764e-19,3.1937582391165913e-20,0.0021645021624863148,4.228388472693467e-18,-0.0043290043249726295,2.168404344971009e-19,-3.5639588509851215e-19,-1.802486111757151e-18,2.168404344971009e-19,0.0010822510812431574,-1.2332799712022613e-18,1.7646174214229555e-19,0.0015151514671742916,1.734723475976807e-18,-0.0007575757335871458,-0.0003030303050763905,-3.5800294193233782e-19,-2.371692252312041e-19,1.1180834903756764e-19,-1.2332799712022613e-18,0.00015151515253819525,3.915992250156514e-20,0.0005827505956403911,-8.131516293641283e-20,-1.2874900798265365e-18,-0.0003885003970935941,-6.268043809681823e-20,9.175420165387765e-20,3.1937582391165913e-20,1.7646174214229555e-19,3.915992250156514e-20,3.885003752657212e-05,6.0,5.0,12.0,0.07977716624736786,-0.02062729001045227,-0.02371794916689396,-0.011630036868155003,0.0014880952658131719,0.0023809524718672037,0.001098901149816811,0.0019841270986944437,0.0012820513220503926,0.0004578754596877843,-0.02062729001045227,0.01643543876707554,0.0023809524718672037,0.001098901149816811,-0.0022321429569274187,-0.0009523809421807528,-0.00043956044828519225,-8.673617379884035e-19,-3.2526065174565133e-19,-8.300922883092143e-19,-0.02371794916689396,0.0023809524718672037,0.023763736709952354,0.0012820513220503926,-1.4094628242311558e-18,-0.0011904762359336019,1.8973538018496328e-18,-0.003968254197388887,-0.0006410256610251963,5.692061405548898e-19,-0.011630036868155003,0.001098901149816811,0.0012820513220503926,0.004220779053866863,-9.215718466126788e-19,-1.6263032587282567e-19,-0.00019980019715148956,1.8973538018496328e-18,-0.00023310023243539035,-0.00027472528745420277,0.0014880952658131719,-0.0022321429569274187,-1.4094628242311558e-18,-9.215718466126788e-19,0.00044642857392318547,-3.866717553431128e-19,-3.4178921964932108e-19,3.750295501129469e-19,1.145209973835558e-19,1.3383120566617945e-19,0.0023809524718672037,-0.0009523809421807528,-0.0011904762359336019,-1.6263032587282567e-19,-3.866717553431128e-19,0.0004761904710903764,-6.098637220230962e-20,2.913793338554793e-19,1.0842021724855044e-19,9.443950134086327e-21,0.001098901149816811,-0.00043956044828519225,1.8973538018496328e-18,-0.00019980019715148956,-3.4178921964932108e-19,-6.098637220230962e-20,7.992007886059582e-05,-2.778268066994105e-19,-9.825582188149884e-20,1.596827743887438e-20,0.0019841270986944437,-8.673617379884035e-19,-0.003968254197388887,1.8973538018496328e-18,3.750295501129469e-19,2.913793338554793e-19,-2.778268066994105e-19,0.0009920635493472219,-4.0657581468206416e-20,-9.889755894047514e-20,0.0012820513220503926,-3.2526065174565133e-19,-0.0006410256610251963,-0.00023310023243539035,1.145209973835558e-19,1.0842021724855044e-19,-9.825582188149884e-20,-4.0657581468206416e-20,0.00011655011621769518,-2.6282222860149022e-20,0.0004578754596877843,-8.300922883092143e-19,5.692061405548898e-19,-0.00027472528745420277,1.3383120566617945e-19,9.443950134086327e-21,1.596827743887438e-20,-9.889755894047514e-20,-2.6282222860149022e-20,2.4975024643936194e-05,6.0,5.0,13.0,0.0743851363658905,-0.019113030284643173,-0.021978022530674934,-0.010047095827758312,0.0013736264081671834,0.002197802299633622,0.0009419152047485113,0.0018315018387511373,0.001098901149816811,0.00036630037357099354,-0.019113030284643173,0.015200156718492508,0.002197802299633622,0.0009419152047485113,-0.002060439670458436,-0.0008791208965703845,-0.0003767660818994045,1.1926223897340549e-18,9.215718466126788e-19,2.676624113323589e-19,-0.021978022530674934,0.002197802299633622,0.021978022530674934,0.001098901149816811,4.445228907190568e-18,-0.001098901149816811,-1.9447876468958736e-18,-0.0036630036775022745,-0.0005494505749084055,-1.3552527156068805e-20,-0.010047095827758312,0.0009419152047485113,0.001098901149816811,0.003339517628774047,1.2739375526704677e-18,2.168404344971009e-19,-0.00015698587230872363,-1.0842021724855044e-18,-0.00018315018678549677,-0.00019980019715148956,0.0013736264081671834,-0.002060439670458436,4.445228907190568e-18,1.2739375526704677e-18,0.00041208791662938893,-1.532450053958283e-19,-8.282984696027107e-20,-6.264545352678606e-19,-2.0976491248308128e-19,-4.404571325722362e-20,0.002197802299633622,-0.0008791208965703845,-0.001098901149816811,2.168404344971009e-19,-1.532450053958283e-19,0.00043956044828519225,7.453889935837843e-20,-2.710505431213761e-20,-8.809142651444724e-20,-1.0572600113617287e-20,0.0009419152047485113,-0.0003767660818994045,-1.9447876468958736e-18,-0.00015698587230872363,-8.282984696027107e-20,7.453889935837843e-20,6.27943518338725e-05,3.1170812458958252e-19,7.792703114739563e-20,1.4946541765206248e-21,0.0018315018387511373,1.1926223897340549e-18,-0.0036630036775022745,-1.0842021724855044e-18,-6.264545352678606e-19,-2.710505431213761e-20,3.1170812458958252e-19,0.0009157509193755686,-1.6940658945086007e-20,1.7883345959776688e-20,0.001098901149816811,9.215718466126788e-19,-0.0005494505749084055,-0.00018315018678549677,-2.0976491248308128e-19,-8.809142651444724e-20,7.792703114739563e-20,-1.6940658945086007e-20,9.157509339274839e-05,-4.6508702500030645e-21,0.00036630037357099354,2.676624113323589e-19,-1.3552527156068805e-20,-0.00019980019715148956,-4.404571325722362e-20,-1.0572600113617287e-20,1.4946541765206248e-21,1.7883345959776688e-20,-4.6508702500030645e-21,1.6650015822960995e-05,6.0,5.0,14.0,0.06967686861753464,-0.017806122079491615,-0.020476190373301506,-0.008767006918787956,0.0012755101779475808,0.0020408162381500006,0.0008163265301845968,0.001700680237263441,0.0009523809421807528,0.00029761905898340046,-0.017806122079491615,0.014137755148112774,0.0020408162381500006,0.0008163265301845968,-0.0019132653251290321,-0.0008163265301845968,-0.00032653060043230653,3.2526065174565133e-19,8.944667923005412e-19,9.385125055577648e-19,-0.020476190373301506,0.0020408162381500006,0.0204421766102314,0.0009523809421807528,3.706616177184818e-18,-0.0010204081190750003,4.336808689942018e-19,-0.003401360474526882,-0.0004761904710903764,5.98005260761536e-19,-0.008767006918787956,0.0008163265301845968,0.0009523809421807528,0.0026880560908466578,2.520770051028798e-18,7.589415207398531e-19,-0.000125588703667745,9.486769009248164e-19,-0.00014652014942839742,-0.00014880952949170023,0.0012755101779475808,-0.0019132653251290321,3.706616177184818e-18,2.520770051028798e-18,0.00038265305920504034,-1.6337096271379033e-19,-1.5626785939622091e-19,-4.605733895877015e-19,-2.0573556062297063e-19,-1.24090326772755e-19,0.0020408162381500006,-0.0008163265301845968,-0.0010204081190750003,7.589415207398531e-19,-1.6337096271379033e-19,0.0004081632650922984,-2.371692252312041e-20,1.2400562347802957e-18,9.825582188149884e-20,-6.751027460768146e-20,0.0008163265301845968,-0.00032653060043230653,4.336808689942018e-19,-0.000125588703667745,-1.5626785939622091e-19,-2.371692252312041e-20,5.023547782911919e-05,-8.470329472543003e-20,-8.470329472543003e-21,-2.0458561155046e-20,0.001700680237263441,3.2526065174565133e-19,-0.003401360474526882,9.486769009248164e-19,-4.605733895877015e-19,1.2400562347802957e-18,-8.470329472543003e-20,0.0008503401186317205,1.7957098481791167e-19,-8.211592546815245e-20,0.0009523809421807528,8.944667923005412e-19,-0.0004761904710903764,-0.00014652014942839742,-2.0573556062297063e-19,9.825582188149884e-20,-8.470329472543003e-21,1.7957098481791167e-19,7.326007471419871e-05,-1.2449510889797753e-20,0.00029761905898340046,9.385125055577648e-19,5.98005260761536e-19,-0.00014880952949170023,-1.24090326772755e-19,-6.751027460768146e-20,-2.0458561155046e-20,-8.211592546815245e-20,-1.2449510889797753e-20,1.1446886674093548e-05,6.0,5.0,15.0,0.06552987545728683,-0.01666666753590107,-0.019166667014360428,-0.007717086933553219,0.0011904762359336019,0.0019047618843615055,0.0007142857066355646,0.0015873016091063619,0.0008333333535119891,0.00024509805371053517,-0.01666666753590107,0.013214285485446453,0.0019047618843615055,0.0007142857066355646,-0.0017857142956927419,-0.0007619047537446022,-0.0002857142826542258,-1.4094628242311558e-18,-7.860465750519907e-19,-1.294266343404571e-18,-0.019166667014360428,0.0019047618843615055,0.019107142463326454,0.0008333333535119891,-1.1180834903756764e-18,-0.0009523809421807528,-1.4704491964334654e-18,-0.0031746032182127237,-0.00041666667675599456,-5.861467994999758e-19,-0.007717086933553219,0.0007142857066355646,0.0008333333535119891,0.002195955254137516,-2.3852447794681098e-18,-1.7076184216646695e-18,-0.0001020408162730746,-1.2197274440461925e-18,-0.0001190476177725941,-0.0001131221724790521,0.0011904762359336019,-0.0017857142956927419,-1.1180834903756764e-18,-2.3852447794681098e-18,0.0003571428533177823,-3.110837324740757e-19,-1.8384444543160496e-20,2.711836416518147e-19,9.890007279405547e-20,1.5627757876841841e-19,0.0019047618843615055,-0.0007619047537446022,-0.0009523809421807528,-1.7076184216646695e-18,-3.110837324740757e-19,0.0003809523768723011,1.1858461261560205e-19,-5.963111948670274e-19,-2.0328790734103208e-20,9.986593540618184e-20,0.0007142857066355646,-0.0002857142826542258,-1.4704491964334654e-18,-0.0001020408162730746,-1.8384444543160496e-20,1.1858461261560205e-19,4.0816325054038316e-05,1.9312351197398048e-19,4.743384504624082e-20,3.496177409770539e-20,0.0015873016091063619,-1.4094628242311558e-18,-0.0031746032182127237,-1.2197274440461925e-18,2.711836416518147e-19,-5.963111948670274e-19,1.9312351197398048e-19,0.0007936508045531809,-7.453889935837843e-20,5.854472244216062e-20,0.0008333333535119891,-7.860465750519907e-19,-0.00041666667675599456,-0.0001190476177725941,9.890007279405547e-20,-2.0328790734103208e-20,4.743384504624082e-20,-7.453889935837843e-20,5.952380888629705e-05,8.752898085641526e-21,0.00024509805371053517,-1.294266343404571e-18,-5.861467994999758e-19,-0.0001131221724790521,1.5627757876841841e-19,9.986593540618184e-20,3.496177409770539e-20,5.854472244216062e-20,8.752898085641526e-21,8.080155566858593e-06,6.0,5.0,16.0,0.06184932217001915,-0.015664391219615936,-0.018014706671237946,-0.0068452381528913975,0.0011160714784637094,0.0017857142956927419,0.0006302521214820445,0.0014880952658131719,0.000735294132027775,0.00020424836839083582,-0.015664391219615936,0.012404149398207664,0.0017857142956927419,0.0006302521214820445,-0.0016741071594879031,-0.0007142857066355646,-0.0002521008427720517,5.041540102057596e-18,-4.607859233063394e-19,-4.929731753020028e-19,-0.018014706671237946,0.0017857142956927419,0.017935924232006073,0.000735294132027775,3.903127820947816e-18,-0.0008928571478463709,-7.758821796849391e-19,-0.0029761905316263437,-0.0003676470660138875,-3.5914196963582334e-19,-0.0068452381528913975,0.0006302521214820445,0.000735294132027775,0.0018172268755733967,-9.75781955236954e-19,-6.2341624917916505e-19,-8.403361425735056e-05,-6.776263578034403e-19,-9.803921420825645e-05,-8.753501606406644e-05,0.0011160714784637094,-0.0016741071594879031,3.903127820947816e-18,-9.75781955236954e-19,0.0003348214377183467,-3.3861222571165803e-19,-2.17383985863602e-20,-8.326676117488216e-19,4.3530547756665006e-20,5.251604272976662e-20,0.0017857142956927419,-0.0007142857066355646,-0.0008928571478463709,-6.2341624917916505e-19,-3.3861222571165803e-19,0.0003571428533177823,6.098637220230962e-20,-4.54009659728305e-19,-2.371692252312041e-20,3.0661950333161237e-20,0.0006302521214820445,-0.0002521008427720517,-7.758821796849391e-19,-8.403361425735056e-05,-2.17383985863602e-20,6.098637220230962e-20,3.361344715813175e-05,6.776263578034403e-20,4.0657581468206416e-20,1.688379997149579e-20,0.0014880952658131719,5.041540102057596e-18,-0.0029761905316263437,-6.776263578034403e-19,-8.326676117488216e-19,-4.54009659728305e-19,6.776263578034403e-20,0.0007440476329065859,-7.115076756936123e-20,4.753296131690513e-20,0.000735294132027775,-4.607859233063394e-19,-0.0003676470660138875,-9.803921420825645e-05,4.3530547756665006e-20,-2.371692252312041e-20,4.0657581468206416e-20,-7.115076756936123e-20,4.901960710412823e-05,9.161987366163015e-21,0.00020424836839083582,-4.929731753020028e-19,-3.5914196963582334e-19,-8.753501606406644e-05,5.251604272976662e-20,3.0661950333161237e-20,1.688379997149579e-20,4.753296131690513e-20,9.161987366163015e-21,5.835667707287939e-06,6.0,6.0,3.0,0.20256991684436798,-0.061649661511182785,-0.061649661511182785,-0.1011904776096344,0.004960317630320787,0.006802720949053764,0.011904762126505375,0.004960317630320787,0.011904762126505375,0.013888888992369175,-0.061649661511182785,0.051941610872745514,0.006802720949053764,0.011904762126505375,-0.0074404762126505375,-0.002721088472753763,-0.004761904943734407,6.0175027962583924e-18,4.041087071460941e-18,3.6939239178658046e-17,-0.061649661511182785,0.006802720949053764,0.051941610872745514,0.011904762126505375,9.616948212509922e-18,-0.002721088472753763,-1.2186712378015388e-18,-0.0074404762126505375,-0.004761904943734407,3.6939239178658046e-17,-0.1011904776096344,0.011904762126505375,0.011904762126505375,0.2400793582201004,2.0336323040761116e-17,-7.076565295567185e-19,-0.011904762126505375,1.7457026442472234e-17,-0.011904762126505375,-0.0833333358168602,0.004960317630320787,-0.0074404762126505375,9.616948212509922e-18,2.0336323040761116e-17,0.0014880952658131719,-8.1503785965469065e-19,-1.7228271712022226e-18,-1.285024461215669e-18,-1.1249255148124088e-18,-6.608470404368327e-18,0.006802720949053764,-0.002721088472753763,-0.002721088472753763,-7.076565295567185e-19,-8.1503785965469065e-19,0.0010884354123845696,7.79741158188258e-20,2.136704457452504e-19,2.0508849858880103e-19,2.5201331551782864e-33,0.011904762126505375,-0.004761904943734407,-1.2186712378015388e-18,-0.011904762126505375,-1.7228271712022226e-18,7.79741158188258e-20,0.004761904943734407,-8.050860044686254e-21,1.067425295301704e-18,-3.896886743226103e-18,0.004960317630320787,6.0175027962583924e-18,-0.0074404762126505375,1.7457026442472234e-17,-1.285024461215669e-18,2.136704457452504e-19,-8.050860044686254e-21,0.0014880952658131719,-1.6879837388620748e-18,-6.608470404368327e-18,0.011904762126505375,4.041087071460941e-18,-0.004761904943734407,-0.011904762126505375,-1.1249255148124088e-18,2.0508849858880103e-19,1.067425295301704e-18,-1.6879837388620748e-18,0.004761904943734407,-3.896886743226103e-18,0.013888888992369175,3.6939239178658046e-17,3.6939239178658046e-17,-0.0833333358168602,-6.608470404368327e-18,2.5201331551782864e-33,-3.896886743226103e-18,-6.608470404368327e-18,-3.896886743226103e-18,0.0416666679084301,6.0,6.0,4.0,0.16641156375408173,-0.048022959381341934,-0.048022959381341934,-0.06488095223903656,0.0037202381063252687,0.005102040711790323,0.0071428571827709675,0.0037202381063252687,0.0071428571827709675,0.0069444444961845875,-0.048022959381341934,0.039670493453741074,0.005102040711790323,0.0071428571827709675,-0.005580357275903225,-0.0020408162381500006,-0.0028571428265422583,4.567914267692902e-18,3.204537604494985e-18,1.3201515544673766e-17,-0.048022959381341934,0.005102040711790323,0.039670493453741074,0.0071428571827709675,7.849005990313598e-18,-0.0020408162381500006,3.0096496128768522e-19,-0.005580357275903225,-0.0028571428265422583,1.3201515544673766e-17,-0.06488095223903656,0.0071428571827709675,0.0071428571827709675,0.09186507761478424,1.0935149854119327e-17,-2.3086018945229144e-19,-0.004761904943734407,9.454183883377862e-18,-0.004761904943734407,-0.02083333395421505,0.0037202381063252687,-0.005580357275903225,7.849005990313598e-18,1.0935149854119327e-17,0.0011160714784637094,-7.734555936592265e-19,-9.199134528820865e-19,-9.417769738452053e-19,-6.78588834144934e-19,-2.3129647035674605e-18,0.005102040711790323,-0.0020408162381500006,-0.0020408162381500006,-2.3086018945229144e-19,-7.734555936592265e-19,0.0008163265301845968,-4.4694449039663936e-20,8.87744902923085e-20,1.3703853386786846e-19,1.2428961867079797e-33,0.0071428571827709675,-0.0028571428265422583,3.0096496128768522e-19,-0.004761904943734407,-9.199134528820865e-19,-4.4694449039663936e-20,0.0019047618843615055,-6.367234478133651e-21,-1.031173109754893e-19,-1.0911282591519875e-18,0.0037202381063252687,4.567914267692902e-18,-0.005580357275903225,9.454183883377862e-18,-9.417769738452053e-19,8.87744902923085e-20,-6.367234478133651e-21,0.0011160714784637094,-9.997486863050654e-19,-2.3129647035674605e-18,0.0071428571827709675,3.204537604494985e-18,-0.0028571428265422583,-0.004761904943734407,-6.78588834144934e-19,1.3703853386786846e-19,-1.031173109754893e-19,-9.997486863050654e-19,0.0019047618843615055,-1.0911282591519875e-18,0.0069444444961845875,1.3201515544673766e-17,1.3201515544673766e-17,-0.02083333395421505,-2.3129647035674605e-18,1.2428961867079797e-33,-1.0911282591519875e-18,-2.3129647035674605e-18,-1.0911282591519875e-18,0.0069444444961845875,6.0,6.0,5.0,0.14138321578502655,-0.03937074914574623,-0.03937074914574623,-0.04523809626698494,0.0029761905316263437,0.004081632476300001,0.004761904943734407,0.0029761905316263437,0.004761904943734407,0.003968254197388887,-0.03937074914574623,0.03211734816431999,0.004081632476300001,0.004761904943734407,-0.004464285913854837,-0.0016326530603691936,-0.0019047618843615055,-8.239936510889834e-18,-5.248518062111227e-18,-1.2902005852577503e-17,-0.03937074914574623,0.004081632476300001,0.03211734816431999,0.004761904943734407,-1.0793184981489914e-17,-0.0016326530603691936,-5.963111948670274e-19,-0.004464285913854837,-0.0019047618843615055,-1.2468324983583301e-17,-0.04523809626698494,0.004761904943734407,0.004761904943734407,0.04642857238650322,-1.3249294324035441e-17,3.545858652842298e-20,-0.0023809524718672037,-1.1114000364623705e-17,-0.0023809524718672037,-0.007936508394777775,0.0029761905316263437,-0.004464285913854837,-1.0793184981489914e-17,-1.3249294324035441e-17,0.0008928571478463709,4.817594496291394e-19,7.811020512416667e-19,1.5526288665075727e-18,9.139052265028076e-19,2.253975352159007e-18,0.004081632476300001,-0.0016326530603691936,-0.0016326530603691936,3.545858652842298e-20,4.817594496291394e-19,0.0006530612008646131,-3.569970644580792e-20,1.3552527156068805e-19,1.1734137792639332e-20,-6.128805018197622e-22,0.004761904943734407,-0.0019047618843615055,-5.963111948670274e-19,-0.0023809524718672037,7.811020512416667e-19,-3.569970644580792e-20,0.0009523809421807528,0.0,3.3881317890172014e-19,8.673617379884035e-19,0.0029761905316263437,-8.239936510889834e-18,-0.004464285913854837,-1.1114000364623705e-17,1.5526288665075727e-18,1.3552527156068805e-19,0.0,0.0008928571478463709,8.131516293641283e-19,2.2497195079074217e-18,0.004761904943734407,-5.248518062111227e-18,-0.0019047618843615055,-0.0023809524718672037,9.139052265028076e-19,1.1734137792639332e-20,3.3881317890172014e-19,8.131516293641283e-19,0.0009523809421807528,6.505213034913027e-19,0.003968254197388887,-1.2902005852577503e-17,-1.2468324983583301e-17,-0.007936508394777775,2.253975352159007e-18,-6.128805018197622e-22,8.673617379884035e-19,2.2497195079074217e-18,6.505213034913027e-19,0.0019841270986944437,6.0,6.0,6.0,0.1229686290025711,-0.033375851809978485,-0.033375851809978485,-0.033375851809978485,0.0024801588151603937,0.003401360474526882,0.003401360474526882,0.0024801588151603937,0.003401360474526882,0.0024801588151603937,-0.033375851809978485,0.026991212740540504,0.003401360474526882,0.003401360474526882,-0.0037202381063252687,-0.0013605442363768816,-0.0013605442363768816,2.8731357570865868e-18,1.7796917024121805e-18,3.0899761915836876e-18,-0.033375851809978485,0.003401360474526882,0.026991212740540504,0.003401360474526882,4.982465344250896e-18,-0.0013605442363768816,5.421010862427522e-20,-0.0037202381063252687,-0.0013605442363768816,3.0899761915836876e-18,-0.033375851809978485,0.003401360474526882,0.003401360474526882,0.026991212740540504,5.024189988709296e-18,-7.644723088093241e-20,-0.0013605442363768816,4.274529434442288e-18,-0.0013605442363768816,-0.0037202381063252687,0.0024801588151603937,-0.0037202381063252687,4.982465344250896e-18,5.024189988709296e-18,0.0007440476329065859,-3.8070819671691174e-19,-3.746501327057265e-19,-6.434128234997516e-19,-3.2641368982076197e-19,-6.538925297765508e-19,0.003401360474526882,-0.0013605442363768816,-0.0013605442363768816,-7.644723088093241e-20,-3.8070819671691174e-19,0.0005442177061922848,4.112291903038151e-20,1.0842021724855044e-19,3.853470158985863e-21,-6.726057188364772e-21,0.003401360474526882,-0.0013605442363768816,5.421010862427522e-20,-0.0013605442363768816,-3.746501327057265e-19,4.112291903038151e-20,0.0005442177061922848,-1.0164395367051604e-20,-4.743384504624082e-20,8.131516293641283e-20,0.0024801588151603937,2.8731357570865868e-18,-0.0037202381063252687,4.274529434442288e-18,-6.434128234997516e-19,1.0842021724855044e-19,-1.0164395367051604e-20,0.0007440476329065859,-3.5236570605778894e-19,-6.640738306473715e-19,0.003401360474526882,1.7796917024121805e-18,-0.0013605442363768816,-0.0013605442363768816,-3.2641368982076197e-19,3.853470158985863e-21,-4.743384504624082e-20,-3.5236570605778894e-19,0.0005442177061922848,8.131516293641283e-20,0.0024801588151603937,3.0899761915836876e-18,3.0899761915836876e-18,-0.0037202381063252687,-6.538925297765508e-19,-6.726057188364772e-21,8.131516293641283e-20,-6.640738306473715e-19,8.131516293641283e-20,0.0007440476329065859,6.0,6.0,7.0,0.1088300421833992,-0.028972303494811058,-0.028972303494811058,-0.025651928037405014,0.002125850412994623,0.0029154520016163588,0.0025510203558951616,0.002125850412994623,0.0025510203558951616,0.0016534391324967146,-0.028972303494811058,0.023281097412109375,0.0029154520016163588,0.0025510203558951616,-0.0031887756194919348,-0.001166180707514286,-0.0010204081190750003,3.415236843329339e-18,7.878660622068777e-19,1.8431436932253575e-18,-0.028972303494811058,0.0029154520016163588,0.023281097412109375,0.0025510203558951616,4.879978907126495e-18,-0.001166180707514286,-3.2526065174565133e-19,-0.0031887756194919348,-0.0010204081190750003,1.951563910473908e-18,-0.025651928037405014,0.0025510203558951616,0.0025510203558951616,0.01714852638542652,3.970708476993398e-18,-2.938169834218848e-19,-0.0008503401186317205,3.505414832938951e-18,-0.0008503401186317205,-0.0019841270986944437,0.002125850412994623,-0.0031887756194919348,4.879978907126495e-18,3.970708476993398e-18,0.0006377550889737904,-5.834852941802982e-19,-3.966617448478864e-19,-5.466290729158675e-19,-2.307525008762947e-19,-4.010339630719003e-19,0.0029154520016163588,-0.001166180707514286,-0.001166180707514286,-2.938169834218848e-19,-5.834852941802982e-19,0.0004664722946472466,5.3532951432975464e-20,-2.981555974335137e-19,6.877954448355287e-20,-4.664638687454881e-21,0.0025510203558951616,-0.0010204081190750003,-3.2526065174565133e-19,-0.0008503401186317205,-3.966617448478864e-19,5.3532951432975464e-20,0.0003401360590942204,3.3881317890172014e-21,6.776263578034403e-20,6.776263578034403e-20,0.002125850412994623,3.415236843329339e-18,-0.0031887756194919348,3.505414832938951e-18,-5.466290729158675e-19,-2.981555974335137e-19,3.3881317890172014e-21,0.0006377550889737904,-4.0657581468206416e-19,-4.2012834183813297e-19,0.0025510203558951616,7.878660622068777e-19,-0.0010204081190750003,-0.0008503401186317205,-2.307525008762947e-19,6.877954448355287e-20,6.776263578034403e-20,-4.0657581468206416e-19,0.0003401360590942204,6.776263578034403e-20,0.0016534391324967146,1.8431436932253575e-18,1.951563910473908e-18,-0.0019841270986944437,-4.010339630719003e-19,-4.664638687454881e-21,6.776263578034403e-20,-4.2012834183813297e-19,6.776263578034403e-20,0.0003306878206785768,6.0,6.0,8.0,0.09762377291917801,-0.025598781183362007,-0.025598781183362007,-0.0203373022377491,0.0018601190531626344,0.0025510203558951616,0.0019841270986944437,0.0018601190531626344,0.0019841270986944437,0.0011574074160307646,-0.025598781183362007,0.020470166578888893,0.0025510203558951616,0.0019841270986944437,-0.0027901786379516125,-0.0010204081190750003,-0.0007936508045531809,1.3718476130559194e-18,5.55653613398821e-19,1.1655173354219173e-18,-0.025598781183362007,0.0025510203558951616,0.020470166578888893,0.0019841270986944437,3.068471356813687e-18,-0.0010204081190750003,-3.7947076036992655e-19,-0.0027901786379516125,-0.0007936508045531809,1.2197274440461925e-18,-0.0203373022377491,0.0019841270986944437,0.0019841270986944437,0.011597694829106331,2.1488766786601633e-18,-6.042030148986662e-19,-0.0005668934318237007,1.676843166974634e-18,-0.0005668934318237007,-0.0011574074160307646,0.0018601190531626344,-0.0027901786379516125,3.068471356813687e-18,2.1488766786601633e-18,0.0005580357392318547,1.051960562445134e-20,1.0025094274488553e-19,-4.867846235491873e-19,-1.8881343569348464e-19,-2.753529421318117e-19,0.0025510203558951616,-0.0010204081190750003,-0.0010204081190750003,-6.042030148986662e-19,1.051960562445134e-20,0.0004081632650922984,1.2084060556467265e-19,4.248302432350375e-19,1.2084060556467265e-19,-1.5648180798146291e-34,0.0019841270986944437,-0.0007936508045531809,-3.7947076036992655e-19,-0.0005668934318237007,1.0025094274488553e-19,1.2084060556467265e-19,0.00022675737272948027,-2.407412430484045e-35,2.371692252312041e-20,4.743384504624082e-20,0.0018601190531626344,1.3718476130559194e-18,-0.0027901786379516125,1.676843166974634e-18,-4.867846235491873e-19,4.248302432350375e-19,-2.407412430484045e-35,0.0005580357392318547,1.0025094274488553e-19,-2.753529421318117e-19,0.0019841270986944437,5.55653613398821e-19,-0.0007936508045531809,-0.0005668934318237007,-1.8881343569348464e-19,1.2084060556467265e-19,2.371692252312041e-20,1.0025094274488553e-19,0.00022675737272948027,5.421010862427522e-20,0.0011574074160307646,1.1655173354219173e-18,1.2197274440461925e-18,-0.0011574074160307646,-2.753529421318117e-19,-1.5648180798146291e-34,4.743384504624082e-20,-2.753529421318117e-19,5.421010862427522e-20,0.0001653439103392884,6.0,6.0,9.0,0.08851897716522217,-0.02293083816766739,-0.02293083816766739,-0.016522366553544998,0.0016534391324967146,0.0022675737272948027,0.0015873016091063619,0.0016534391324967146,0.0015873016091063619,0.0008417508215643466,-0.02293083816766739,0.01826625131070614,0.0022675737272948027,0.0015873016091063619,-0.0024801588151603937,-0.0009070294909179211,-0.0006349206087179482,2.1634873766148405e-18,7.860465750519907e-19,1.0842021724855044e-18,-0.02293083816766739,0.0022675737272948027,0.01826625131070614,0.0015873016091063619,3.586081899865429e-18,-0.0009070294909179211,5.421010862427522e-20,-0.0024801588151603937,-0.0006349206087179482,1.0842021724855044e-18,-0.016522366553544998,0.0015873016091063619,0.0015873016091063619,0.008219095878303051,2.649999857742498e-18,-1.748869454755698e-33,-0.00039682540227659047,2.272372882957952e-18,-0.00039682540227659047,-0.0007215007208287716,0.0016534391324967146,-0.0024801588151603937,3.586081899865429e-18,2.649999857742498e-18,0.0004960317746736109,-3.273565464721017e-19,-2.8643698139426326e-19,-4.326974546434528e-19,-1.5105075372466654e-19,-1.94535056915211e-19,0.0022675737272948027,-0.0009070294909179211,-0.0009070294909179211,-1.748869454755698e-33,-3.273565464721017e-19,0.00036281178472563624,1.8903431156541633e-34,2.8555903147216775e-34,9.96860650264941e-35,1.2838356702934949e-34,0.0015873016091063619,-0.0006349206087179482,5.421010862427522e-20,-0.00039682540227659047,-2.8643698139426326e-19,1.8903431156541633e-34,0.00015873015217948705,2.8888949165808538e-34,-1.0164395367051604e-20,-2.710505431213761e-20,0.0016534391324967146,2.1634873766148405e-18,-0.0024801588151603937,2.272372882957952e-18,-4.326974546434528e-19,2.8555903147216775e-34,2.8888949165808538e-34,0.0004960317746736109,-2.8643698139426326e-19,-1.94535056915211e-19,0.0015873016091063619,7.860465750519907e-19,-0.0006349206087179482,-0.00039682540227659047,-1.5105075372466654e-19,9.96860650264941e-35,-1.0164395367051604e-20,-2.8643698139426326e-19,0.00015873015217948705,-2.710505431213761e-20,0.0008417508215643466,1.0842021724855044e-18,1.0842021724855044e-18,-0.0007215007208287716,-1.94535056915211e-19,1.2838356702934949e-34,-2.710505431213761e-20,-1.94535056915211e-19,-2.710505431213761e-20,9.018759010359645e-05,6.0,6.0,10.0,0.08097299188375473,-0.02076762542128563,-0.02076762542128563,-0.013690476305782795,0.0014880952658131719,0.0020408162381500006,0.0012987012742087245,0.0014880952658131719,0.0012987012742087245,0.0006313131307251751,-0.02076762542128563,0.016491573303937912,0.0020408162381500006,0.0012987012742087245,-0.0022321429569274187,-0.0008163265301845968,-0.0005194804980419576,1.8973538018496328e-18,7.047314121155779e-19,-2.4936649967166602e-18,-0.02076762542128563,0.0020408162381500006,0.016491573303937912,0.0012987012742087245,8.470329472543003e-19,-0.0008163265301845968,1.0503208545953324e-18,-0.0022321429569274187,-0.0005194804980419576,-2.7037291676357267e-18,-0.013690476305782795,0.0012987012742087245,0.0012987012742087245,0.006041065324097872,-3.0899761915836876e-18,-1.951563910473908e-18,-0.00028860027668997645,-3.903127820947816e-18,-0.00028860027668997645,-0.0004734848625957966,0.0014880952658131719,-0.0022321429569274187,8.470329472543003e-19,-3.0899761915836876e-18,0.00044642857392318547,3.541493142536064e-19,4.33326641821573e-20,-2.7476497181265134e-19,-5.895664546251495e-20,3.3542504711270293e-19,0.0020408162381500006,-0.0008163265301845968,-0.0008163265301845968,-1.951563910473908e-18,3.541493142536064e-19,0.00032653060043230653,-1.3552527156068805e-20,3.2526065174565133e-19,1.3552527156068805e-20,2.0419138244039605e-19,0.0012987012742087245,-0.0005194804980419576,1.0503208545953324e-18,-0.00028860027668997645,4.33326641821573e-20,-1.3552527156068805e-20,0.0001154401179519482,-1.4907779871675686e-19,-6.098637220230962e-20,5.155558910336452e-20,0.0014880952658131719,1.8973538018496328e-18,-0.0022321429569274187,-3.903127820947816e-18,-2.7476497181265134e-19,3.2526065174565133e-19,-1.4907779871675686e-19,0.00044642857392318547,3.5575383784680614e-19,3.5121776031332433e-19,0.0012987012742087245,7.047314121155779e-19,-0.0005194804980419576,-0.00028860027668997645,-5.895664546251495e-20,1.3552527156068805e-20,-6.098637220230962e-20,3.5575383784680614e-19,0.0001154401179519482,6.139485725324304e-20,0.0006313131307251751,-2.4936649967166602e-18,-2.7037291676357267e-18,-0.0004734848625957966,3.3542504711270293e-19,2.0419138244039605e-19,5.155558910336452e-20,3.5121776031332433e-19,6.139485725324304e-20,5.260942634777166e-05,6.0,6.0,11.0,0.07461585849523544,-0.018978046253323555,-0.018978046253323555,-0.011530136689543724,0.0013528139097616076,0.001855287584476173,0.0010822510812431574,0.0013528139097616076,0.0010822510812431574,0.0004856254963669926,-0.018978046253323555,0.015031694434583187,0.001855287584476173,0.0010822510812431574,-0.0020292208064347506,-0.000742115022148937,-0.00043290044413879514,2.0599841277224584e-18,4.336808689942018e-19,-1.0808140406964872e-18,-0.018978046253323555,0.001855287584476173,0.015031694434583187,0.0010822510812431574,2.236166980751353e-18,-0.000742115022148937,6.776263578034403e-19,-0.0020292208064347506,-0.00043290044413879514,-1.294266343404571e-18,-0.011530136689543724,0.0010822510812431574,0.0010822510812431574,0.004572279751300812,-1.0570971181733668e-18,-1.0842021724855044e-18,-0.00021645022206939757,-8.402566836762659e-19,-0.00021645022206939757,-0.00032375031150877476,0.0013528139097616076,-0.0020292208064347506,2.236166980751353e-18,-1.0570971181733668e-18,0.000405844155466184,-5.550458424437477e-19,-1.4032626661003704e-19,-1.444892986119545e-19,-1.522940320347279e-20,1.2281977735187355e-19,0.001855287584476173,-0.000742115022148937,-0.000742115022148937,-1.0842021724855044e-18,-5.550458424437477e-19,0.0002968460030388087,-3.7269449679189215e-20,-4.1335207826009857e-19,-5.759824041329242e-20,1.2884834720434244e-19,0.0010822510812431574,-0.00043290044413879514,6.776263578034403e-19,-0.00021645022206939757,-1.4032626661003704e-19,-3.7269449679189215e-20,8.658008300699294e-05,-7.453889935837843e-20,-4.0657581468206416e-20,1.976676835990031e-20,0.0013528139097616076,2.0599841277224584e-18,-0.0020292208064347506,-8.402566836762659e-19,-1.444892986119545e-19,-4.1335207826009857e-19,-7.453889935837843e-20,0.000405844155466184,-2.202285662861181e-19,1.5363730872602865e-19,0.0010822510812431574,4.336808689942018e-19,-0.00043290044413879514,-0.00021645022206939757,-1.522940320347279e-20,-5.759824041329242e-20,-4.0657581468206416e-20,-2.202285662861181e-19,8.658008300699294e-05,3.1639050969390965e-20,0.0004856254963669926,-1.0808140406964872e-18,-1.294266343404571e-18,-0.00032375031150877476,1.2281977735187355e-19,1.2884834720434244e-19,1.976676835990031e-20,1.5363730872602865e-19,3.1639050969390965e-20,3.237503187847324e-05,6.0,6.0,12.0,0.06918643414974213,-0.017472853884100914,-0.017472853884100914,-0.009844322688877583,0.0012400794075801969,0.001700680237263441,0.0009157509193755686,0.0012400794075801969,0.0009157509193755686,0.000381562887923792,-0.017472853884100914,0.013809578493237495,0.001700680237263441,0.0009157509193755686,-0.0018601190531626344,-0.0006802721181884408,-0.00036630037357099354,3.957337929572091e-18,1.9244588561617704e-18,-1.9989977555201488e-19,-0.017472853884100914,0.001700680237263441,0.013809578493237495,0.0009157509193755686,1.5043305143236374e-18,-0.0006802721181884408,2.5139937874507634e-18,-0.0018601190531626344,-0.00036630037357099354,-4.2012834183813297e-19,-0.009844322688877583,0.0009157509193755686,0.0009157509193755686,0.0035450661089271307,1.6263032587282567e-19,1.4094628242311558e-18,-0.00016650016186758876,4.607859233063394e-19,-0.00016650016186758876,-0.00022893772984389216,0.0012400794075801969,-0.0018601190531626344,1.5043305143236374e-18,1.6263032587282567e-19,0.00037202381645329297,2.9194595257507814e-19,-1.2171831851159957e-20,-2.58256824930354e-19,-1.3812428597002674e-19,3.134021904840911e-20,0.001700680237263441,-0.0006802721181884408,-0.0006802721181884408,1.4094628242311558e-18,2.9194595257507814e-19,0.0002721088530961424,-2.778268066994105e-19,-4.3029273720518457e-19,-2.371692252312041e-19,8.775675440848711e-21,0.0009157509193755686,-0.00036630037357099354,2.5139937874507634e-18,-0.00016650016186758876,-1.2171831851159957e-20,-2.778268066994105e-19,6.660006329184398e-05,-2.303929616531697e-19,-1.0164395367051604e-19,-7.175410636308112e-22,0.0012400794075801969,3.957337929572091e-18,-0.0018601190531626344,4.607859233063394e-19,-2.58256824930354e-19,-4.3029273720518457e-19,-2.303929616531697e-19,0.00037202381645329297,-1.9312351197398048e-19,6.257506304159721e-20,0.0009157509193755686,1.9244588561617704e-18,-0.00036630037357099354,-0.00016650016186758876,-1.3812428597002674e-19,-2.371692252312041e-19,-1.0164395367051604e-19,-1.9312351197398048e-19,6.660006329184398e-05,6.984356855434742e-21,0.000381562887923792,-1.9989977555201488e-19,-4.2012834183813297e-19,-0.00022893772984389216,3.134021904840911e-20,8.775675440848711e-21,-7.175410636308112e-22,6.257506304159721e-20,6.984356855434742e-21,2.0812520233448595e-05,6.0,6.0,13.0,0.0644950270652771,-0.01618916727602482,-0.01618916727602482,-0.008503401651978493,0.0011446886928752065,0.0015698587521910667,0.0007849293760955334,0.0011446886928752065,0.0007849293760955334,0.0003052503161597997,-0.01618916727602482,0.012771454639732838,0.0015698587521910667,0.0007849293760955334,-0.0017170329811051488,-0.0006279434892348945,-0.00031397174461744726,-2.0057740190981832e-18,1.3552527156068805e-19,5.21772295508649e-19,-0.01618916727602482,0.0015698587521910667,0.012771454639732838,0.0007849293760955334,-1.9312351197398048e-18,-0.0006279434892348945,-2.0328790734103208e-20,-0.0017170329811051488,-0.00031397174461744726,5.488773498207866e-19,-0.008503401651978493,0.0007849293760955334,0.0007849293760955334,0.0028047349769622087,1.463672932855431e-18,1.8973538018496328e-19,-0.00013082155783195049,1.3010426069826053e-18,-0.00013082155783195049,-0.00016650016186758876,0.0011446886928752065,-0.0017170329811051488,-1.9312351197398048e-18,1.463672932855431e-18,0.00034340660204179585,3.0812064227294004e-19,-1.2685055092866203e-19,2.464314508932959e-19,-3.473184373680979e-20,-8.004461351553138e-20,0.0015698587521910667,-0.0006279434892348945,-0.0006279434892348945,1.8973538018496328e-19,3.0812064227294004e-19,0.00025117740733549,4.0657581468206416e-20,2.473336205982557e-19,2.710505431213761e-20,-3.342156379713165e-20,0.0007849293760955334,-0.00031397174461744726,-2.0328790734103208e-20,-0.00013082155783195049,-1.2685055092866203e-19,4.0657581468206416e-20,5.232862531556748e-05,-1.3552527156068805e-20,-1.1858461261560205e-20,-8.667587814829892e-21,0.0011446886928752065,-2.0057740190981832e-18,-0.0017170329811051488,1.3010426069826053e-18,2.464314508932959e-19,2.473336205982557e-19,-1.3552527156068805e-20,0.00034340660204179585,-9.825582188149884e-20,-8.455340055114748e-20,0.0007849293760955334,1.3552527156068805e-19,-0.00031397174461744726,-0.00013082155783195049,-3.473184373680979e-20,2.710505431213761e-20,-1.1858461261560205e-20,-9.825582188149884e-20,5.232862531556748e-05,-7.39600441818275e-21,0.0003052503161597997,5.21772295508649e-19,5.488773498207866e-19,-0.00016650016186758876,-8.004461351553138e-20,-3.342156379713165e-20,-8.667587814829892e-21,-8.455340055114748e-20,-7.39600441818275e-21,1.387501379213063e-05,6.0,6.0,14.0,0.06040047109127045,-0.015081389807164669,-0.015081389807164669,-0.007419217843562365,0.0010629252064973116,0.0014577260008081794,0.0006802721181884408,0.0010629252064973116,0.0006802721181884408,0.00024801588733680546,-0.015081389807164669,0.011878644116222858,0.0014577260008081794,0.0006802721181884408,-0.0015943878097459674,-0.000583090353757143,-0.0002721088530961424,-8.673617379884035e-19,-2.710505431213761e-20,1.4060746924421386e-19,-0.015081389807164669,0.0014577260008081794,0.011878644116222858,0.0006802721181884408,2.642742795433417e-19,-0.000583090353757143,1.2536087619363645e-19,-0.0015943878097459674,-0.0002721088530961424,6.098637220230962e-20,-0.007419217843562365,0.0006802721181884408,0.0006802721181884408,0.00225748959928751,1.8973538018496328e-19,-5.421010862427522e-19,-0.00010465725063113496,-3.5236570605778894e-19,-0.00010465725063113496,-0.00012400794366840273,0.0010629252064973116,-0.0015943878097459674,2.642742795433417e-19,1.8973538018496328e-19,0.0003188775444868952,3.5892341300835035e-19,9.694301516354329e-20,-1.3233443527246182e-19,-2.3531574289184577e-20,-3.2610768469290563e-20,0.0014577260008081794,-0.000583090353757143,-0.000583090353757143,-5.421010862427522e-19,3.5892341300835035e-19,0.0002332361473236233,6.437450399132683e-20,7.047314121155779e-19,8.131516293641283e-20,1.2713159361971259e-20,0.0006802721181884408,-0.0002721088530961424,1.2536087619363645e-19,-0.00010465725063113496,9.694301516354329e-20,6.437450399132683e-20,4.186289879726246e-05,-3.3881317890172014e-20,-3.3881317890172014e-21,-4.634112774405155e-22,0.0010629252064973116,-8.673617379884035e-19,-0.0015943878097459674,-3.5236570605778894e-19,-1.3233443527246182e-19,7.047314121155779e-19,-3.3881317890172014e-20,0.0003188775444868952,2.202285662861181e-19,-1.689333355117289e-20,0.0006802721181884408,-2.710505431213761e-20,-0.0002721088530961424,-0.00010465725063113496,-2.3531574289184577e-20,8.131516293641283e-20,-3.3881317890172014e-21,2.202285662861181e-19,4.186289879726246e-05,2.5684289215133957e-21,0.00024801588733680546,1.4060746924421386e-19,6.098637220230962e-20,-0.00012400794366840273,-3.2610768469290563e-20,1.2713159361971259e-20,-4.634112774405155e-22,-1.689333355117289e-20,2.5684289215133957e-21,9.53907237999374e-06,6.0,6.0,15.0,0.05679549649357796,-0.014115646481513977,-0.014115646481513977,-0.006530112121254206,0.0009920635493472219,0.0013605442363768816,0.0005952381179668009,0.0009920635493472219,0.0005952381179668009,0.00020424836839083582,-0.014115646481513977,0.011102607473731041,0.0013605442363768816,0.0005952381179668009,-0.0014880952658131719,-0.0005442177061922848,-0.0002380952355451882,1.3552527156068805e-18,1.1384122811097797e-18,5.590417451878382e-19,-0.014115646481513977,0.0013605442363768816,0.011102607473731041,0.0005952381179668009,-6.166399856011306e-19,-0.0005442177061922848,1.4840017235895342e-18,-0.0014880952658131719,-0.0002380952355451882,6.318865786517081e-19,-0.006530112121254206,0.0005952381179668009,0.0005952381179668009,0.0018441351130604744,9.351243737687476e-19,1.3823577699190182e-18,-8.50340147735551e-05,1.870248747537495e-18,-8.50340147735551e-05,-9.426847827853635e-05,0.0009920635493472219,-0.0014880952658131719,-6.166399856011306e-19,9.351243737687476e-19,0.00029761905898340046,1.7217118215437714e-19,1.1590882469786722e-21,1.0316345214403327e-19,-4.99855679889962e-20,-5.717472393966527e-20,0.0013605442363768816,-0.0005442177061922848,-0.0005442177061922848,1.3823577699190182e-18,1.7217118215437714e-19,0.00021768707665614784,-8.300922883092143e-20,-3.4220131069073734e-19,-1.4060746924421386e-19,-5.2307874327564555e-20,0.0005952381179668009,-0.0002380952355451882,1.4840017235895342e-18,-8.50340147735551e-05,1.1590882469786722e-21,-8.300922883092143e-20,3.40136066370178e-05,-1.4230153513872246e-19,-6.945670167485263e-20,-1.5925739029638986e-20,0.0009920635493472219,1.3552527156068805e-18,-0.0014880952658131719,1.870248747537495e-18,1.0316345214403327e-19,-3.4220131069073734e-19,-1.4230153513872246e-19,0.00029761905898340046,-1.7279472123987727e-19,-7.1420880813451e-20,0.0005952381179668009,1.1384122811097797e-18,-0.0002380952355451882,-8.50340147735551e-05,-4.99855679889962e-20,-1.4060746924421386e-19,-6.945670167485263e-20,-1.7279472123987727e-19,3.40136066370178e-05,-1.6365863739002552e-20,0.00020424836839083582,5.590417451878382e-19,6.318865786517081e-19,-9.426847827853635e-05,-5.717472393966527e-20,-5.2307874327564555e-20,-1.5925739029638986e-20,-7.1420880813451e-20,-1.6365863739002552e-20,6.7334626692172606e-06,6.0,6.0,16.0,0.05359713360667229,-0.01326624397188425,-0.01326624397188425,-0.005791900213807821,0.0009300595265813172,0.0012755101779475808,0.0005252101109363139,0.0009300595265813172,0.0005252101109363139,0.00017020697123371065,-0.01326624397188425,0.010421824641525745,0.0012755101779475808,0.0005252101109363139,-0.0013950893189758062,-0.0005102040595375001,-0.0002100840356433764,4.1470733097570545e-18,1.2197274440461925e-18,1.0079692072326174e-18,-0.01326624397188425,0.0012755101779475808,0.010421824641525745,0.0005252101109363139,4.763713295358185e-18,-0.0005102040595375001,1.2434443665693129e-18,-0.0013950893189758062,-0.0002100840356433764,9.359714067160019e-19,-0.005791900213807821,0.0005252101109363139,0.0005252101109363139,0.0015260271029546857,2.6969529040576923e-18,6.2341624917916505e-19,-7.002801430644467e-05,2.642742795433417e-18,-7.002801430644467e-05,-7.294584793271497e-05,0.0009300595265813172,-0.0013950893189758062,4.763713295358185e-18,2.6969529040576923e-18,0.00027901786961592734,-3.0627535096035056e-20,-3.320586352771138e-20,-6.138943146541257e-19,-1.8163830303913776e-19,-1.334076891925523e-19,0.0012755101779475808,-0.0005102040595375001,-0.0005102040595375001,6.2341624917916505e-19,-3.0627535096035056e-20,0.0002040816325461492,7.284483346386983e-20,2.337810934421869e-19,4.912791094074942e-20,-6.309731127615081e-20,0.0005252101109363139,-0.0002100840356433764,1.2434443665693129e-18,-7.002801430644467e-05,-3.320586352771138e-20,7.284483346386983e-20,2.801120535877999e-05,-2.0159384144652348e-19,-4.997494388800372e-20,-1.9258336626515762e-20,0.0009300595265813172,4.1470733097570545e-18,-0.0013950893189758062,2.642742795433417e-18,-6.138943146541257e-19,2.337810934421869e-19,-2.0159384144652348e-19,0.00027901786961592734,-6.606856988583543e-20,-1.2177731006020652e-19,0.0005252101109363139,1.2197274440461925e-18,-0.0002100840356433764,-7.002801430644467e-05,-1.8163830303913776e-19,4.912791094074942e-20,-4.997494388800372e-20,-6.606856988583543e-20,2.801120535877999e-05,-1.738526852433326e-20,0.00017020697123371065,1.0079692072326174e-18,9.359714067160019e-19,-7.294584793271497e-05,-1.334076891925523e-19,-6.309731127615081e-20,-1.9258336626515762e-20,-1.2177731006020652e-19,-1.738526852433326e-20,4.863056346948724e-06,6.0,7.0,3.0,0.17994141578674316,-0.0535714291036129,-0.047477323561906815,-0.08801020681858063,0.004251700825989246,0.005102040711790323,0.010204081423580647,0.003306878264993429,0.008928571827709675,0.011904762126505375,-0.0535714291036129,0.04481292515993118,0.005102040711790323,0.010204081423580647,-0.0063775512389838696,-0.0020408162381500006,-0.004081632476300001,3.907998260394528e-18,3.654665925994038e-18,3.1662204064929054e-17,-0.047477323561906815,0.005102040711790323,0.03302154317498207,0.008928571827709675,7.62581942615699e-18,-0.001700680237263441,2.1133606450844333e-19,-0.003968254197388887,-0.0029761905316263437,-3.50901050443624e-32,-0.08801020681858063,0.010204081423580647,0.008928571827709675,0.20705781877040863,1.70633811151256e-17,-7.117660145386703e-19,-0.010204081423580647,-3.1721957731223506e-19,-0.008928571827709675,-0.0714285746216774,0.004251700825989246,-0.0063775512389838696,7.62581942615699e-18,1.70633811151256e-17,0.0012755101779475808,-7.627860494318464e-19,-1.269130599335769e-18,-8.130872126739258e-19,-8.5391602052893065e-19,-5.664403380997269e-18,0.005102040711790323,-0.0020408162381500006,-0.001700680237263441,-7.117660145386703e-19,-7.627860494318464e-19,0.0006802721181884408,-2.6721549469468446e-20,1.033547635100803e-19,2.595233159963551e-19,3.8129366994248533e-33,0.010204081423580647,-0.004081632476300001,2.1133606450844333e-19,-0.010204081423580647,-1.269130599335769e-18,-2.6721549469468446e-20,0.004081632476300001,2.662753562686975e-21,-1.6184009696919903e-19,-3.340188607508781e-18,0.003306878264993429,3.907998260394528e-18,-0.003968254197388887,-3.1721957731223506e-19,-8.130872126739258e-19,1.033547635100803e-19,2.662753562686975e-21,0.0006613756413571537,1.0352089756623275e-19,3.623541416962351e-33,0.008928571827709675,3.654665925994038e-18,-0.0029761905316263437,-0.008928571827709675,-8.5391602052893065e-19,2.595233159963551e-19,-1.6184009696919903e-19,1.0352089756623275e-19,0.0029761905316263437,3.821496135008763e-33,0.011904762126505375,3.1662204064929054e-17,-3.50901050443624e-32,-0.0714285746216774,-5.664403380997269e-18,3.8129366994248533e-33,-3.340188607508781e-18,3.623541416962351e-33,3.821496135008763e-33,0.0357142873108387,6.0,7.0,4.0,0.14756235480308533,-0.041709184646606445,-0.036947280168533325,-0.05637755244970322,0.0031887756194919348,0.0038265306502580643,0.006122448947280645,0.0024801588151603937,0.0053571430034935474,0.0059523810632526875,-0.041709184646606445,0.034221939742565155,0.0038265306502580643,0.006122448947280645,-0.00478316331282258,-0.0015306122368201613,-0.0024489795323461294,3.650731855000736e-18,8.188446999300245e-19,7.23721411028264e-18,-0.036947280168533325,0.0038265306502580643,0.025212585926055908,0.0053571430034935474,5.771998485584798e-18,-0.0012755101779475808,-1.4183101412678698e-18,-0.0029761905316263437,-0.0017857142956927419,-2.9738117026452626e-18,-0.05637755244970322,0.006122448947280645,0.0053571430034935474,0.07925169914960861,9.38683318354257e-18,-5.052586685547935e-19,-0.004081632476300001,-1.94313230339379e-19,-0.0035714285913854837,-0.01785714365541935,0.0031887756194919348,-0.00478316331282258,5.771998485584798e-18,9.38683318354257e-18,0.0009566326625645161,-4.989338904948482e-19,-7.450061123577488e-19,-6.175605342253256e-19,-5.255648152196281e-19,-1.9825412040285595e-18,0.0038265306502580643,-0.0015306122368201613,-0.0012755101779475808,-5.052586685547935e-19,-4.989338904948482e-19,0.0005102040595375001,1.9603230552272027e-20,-1.6540658957779798e-19,1.5208354041822728e-19,1.1879290606730718e-33,0.006122448947280645,-0.0024489795323461294,-1.4183101412678698e-18,-0.004081632476300001,-7.450061123577488e-19,1.9603230552272027e-20,0.0016326530603691936,1.5146572656963288e-21,9.06304470649211e-19,1.783660721786363e-18,0.0024801588151603937,3.650731855000736e-18,-0.0029761905316263437,-1.94313230339379e-19,-6.175605342253256e-19,-1.6540658957779798e-19,1.5146572656963288e-21,0.0004960317746736109,6.350885948029008e-20,1.4138411669793647e-33,0.0053571430034935474,8.188446999300245e-19,-0.0017857142956927419,-0.0035714285913854837,-5.255648152196281e-19,1.5208354041822728e-19,9.06304470649211e-19,6.350885948029008e-20,0.0011904762359336019,1.9825412040285595e-18,0.0059523810632526875,7.23721411028264e-18,-2.9738117026452626e-18,-0.01785714365541935,-1.9825412040285595e-18,1.1879290606730718e-33,1.783660721786363e-18,1.4138411669793647e-33,1.9825412040285595e-18,0.0059523810632526875,6.0,7.0,5.0,0.12522675096988678,-0.034183673560619354,-0.0302721094340086,-0.03928571566939354,0.0025510203558951616,0.0030612244736403227,0.004081632476300001,0.0019841270986944437,0.0035714285913854837,0.003401360474526882,-0.034183673560619354,0.027704082429409027,0.0030612244736403227,0.004081632476300001,-0.0038265306502580643,-0.0012244897661730647,-0.0016326530603691936,-2.8189256484623115e-18,-1.0516761073109393e-17,-2.5398357369675325e-17,-0.0302721094340086,0.0030612244736403227,0.020408162847161293,0.0035714285913854837,-3.978477770896803e-18,-0.0010204081190750003,-1.1550579674484293e-17,-0.0023809524718672037,-0.0011904762359336019,-2.1354592300981244e-17,-0.03928571566939354,0.004081632476300001,0.0035714285913854837,0.04005102068185806,-2.0073698159359205e-17,-1.0444932017437738e-17,-0.0020408162381500006,-1.5395670849294163e-17,-0.0017857142956927419,-0.006802720949053764,0.0025510203558951616,-0.0038265306502580643,-3.978477770896803e-18,-2.0073698159359205e-17,0.0007653061184100807,1.4350748692364234e-19,8.875994354575494e-19,1.2855238456611038e-19,1.177283979635484e-18,3.15588180688885e-18,0.0030612244736403227,-0.0012244897661730647,-0.0010204081190750003,-1.0444932017437738e-17,1.4350748692364234e-19,0.0004081632650922984,7.787476367243994e-19,-9.486769009248164e-20,5.149960319306146e-19,1.4889288249082063e-18,0.004081632476300001,-0.0016326530603691936,-1.1550579674484293e-17,-0.0020408162381500006,8.875994354575494e-19,7.787476367243994e-19,0.0008163265301845968,1.0875653854585685e-18,1.2672675818011464e-18,2.3171365889868717e-18,0.0019841270986944437,-2.8189256484623115e-18,-0.0023809524718672037,-1.5395670849294163e-17,1.2855238456611038e-19,-9.486769009248164e-20,1.0875653854585685e-18,0.00039682540227659047,8.402566836762659e-19,2.2657612283218157e-18,0.0035714285913854837,-1.0516761073109393e-17,-0.0011904762359336019,-0.0017857142956927419,1.177283979635484e-18,5.149960319306146e-19,1.2672675818011464e-18,8.402566836762659e-19,0.0005952381179668009,1.8300380503952205e-18,0.003401360474526882,-2.5398357369675325e-17,-2.1354592300981244e-17,-0.006802720949053764,3.15588180688885e-18,1.4889288249082063e-18,2.3171365889868717e-18,2.2657612283218157e-18,1.8300380503952205e-18,0.001700680237263441,6.0,7.0,6.0,0.1088300421833992,-0.028972303494811058,-0.025651928037405014,-0.028972303494811058,0.002125850412994623,0.0025510203558951616,0.0029154520016163588,0.0016534391324967146,0.0025510203558951616,0.002125850412994623,-0.028972303494811058,0.023281097412109375,0.0025510203558951616,0.0029154520016163588,-0.0031887756194919348,-0.0010204081190750003,-0.001166180707514286,1.8973538018496328e-18,7.417346647338899e-19,3.415236843329339e-18,-0.025651928037405014,0.0025510203558951616,0.01714852638542652,0.0025510203558951616,4.0622968095474135e-18,-0.0008503401186317205,-3.5236570605778894e-19,-0.0019841270986944437,-0.0008503401186317205,-3.2526065174565133e-19,-0.028972303494811058,0.0029154520016163588,0.0025510203558951616,0.023281097412109375,4.955915741720088e-18,-4.065185259622963e-20,-0.001166180707514286,6.154999885453648e-20,-0.0010204081190750003,-0.0031887756194919348,0.002125850412994623,-0.0031887756194919348,4.0622968095474135e-18,4.955915741720088e-18,0.0006377550889737904,-4.1203766241735766e-19,-5.756405200459984e-19,-4.057901223471095e-19,-2.3964593323215857e-19,-5.593197295724443e-19,0.0025510203558951616,-0.0010204081190750003,-0.0008503401186317205,-4.065185259622963e-20,-4.1203766241735766e-19,0.0003401360590942204,-8.975123711495591e-21,5.421010862427522e-20,2.2110557160588036e-20,2.7209070254682237e-21,0.0029154520016163588,-0.001166180707514286,-3.5236570605778894e-19,-0.001166180707514286,-5.756405200459984e-19,-8.975123711495591e-21,0.0004664722946472466,-1.6940658945086007e-21,1.5585406229479126e-19,-2.710505431213761e-19,0.0016534391324967146,1.8973538018496328e-18,-0.0019841270986944437,6.154999885453648e-20,-4.057901223471095e-19,5.421010862427522e-20,-1.6940658945086007e-21,0.0003306878206785768,-1.3552527156068805e-20,1.3552527156068805e-20,0.0025510203558951616,7.417346647338899e-19,-0.0008503401186317205,-0.0010204081190750003,-2.3964593323215857e-19,2.2110557160588036e-20,1.5585406229479126e-19,-1.3552527156068805e-20,0.0003401360590942204,1.0842021724855044e-19,0.002125850412994623,3.415236843329339e-18,-3.2526065174565133e-19,-0.0031887756194919348,-5.593197295724443e-19,2.7209070254682237e-21,-2.710505431213761e-19,1.3552527156068805e-20,1.0842021724855044e-19,0.0006377550889737904,6.0,7.0,7.0,0.09626052528619766,-0.025145772844552994,-0.022260690107941628,-0.022260690107941628,0.0018221574136987329,0.002186588943004608,0.002186588943004608,0.0014172336086630821,0.0019132653251290321,0.0014172336086630821,-0.025145772844552994,0.02008017525076866,0.002186588943004608,0.002186588943004608,-0.00273323617875576,-0.0008746355888433754,-0.0008746355888433754,2.1955093992831465e-18,1.1894598714571115e-18,2.222614453595284e-18,-0.022260690107941628,0.002186588943004608,0.014789844863116741,0.0019132653251290321,3.271749958372828e-18,-0.0007288630004040897,1.7618285302889447e-19,-0.001700680237263441,-0.0006377550889737904,2.439454888092385e-19,-0.022260690107941628,0.002186588943004608,0.0019132653251290321,0.014789844863116741,3.3259683388032288e-18,1.4034893652869982e-19,-0.0007288630004040897,-7.304325987565452e-20,-0.0006377550889737904,-0.001700680237263441,0.0018221574136987329,-0.00273323617875576,3.271749958372828e-18,3.3259683388032288e-18,0.000546647235751152,-2.5633316471707364e-19,-2.64556839270711e-19,-3.484316092150926e-19,-1.8047943592564803e-19,-3.5360994079543355e-19,0.002186588943004608,-0.0008746355888433754,-0.0007288630004040897,1.4034893652869982e-19,-2.5633316471707364e-19,0.0002915451768785715,-1.0304712340804447e-20,-1.4907779871675686e-19,-4.332145846979662e-20,2.843940448062683e-21,0.002186588943004608,-0.0008746355888433754,1.7618285302889447e-19,-0.0007288630004040897,-2.64556839270711e-19,-1.0304712340804447e-20,0.0002915451768785715,-1.6940658945086007e-21,-5.421010862427522e-20,-1.4907779871675686e-19,0.0014172336086630821,2.1955093992831465e-18,-0.001700680237263441,-7.304325987565452e-20,-3.484316092150926e-19,-1.4907779871675686e-19,-1.6940658945086007e-21,0.00028344671591185033,1.3552527156068805e-20,0.0,0.0019132653251290321,1.1894598714571115e-18,-0.0006377550889737904,-0.0006377550889737904,-1.8047943592564803e-19,-4.332145846979662e-20,-5.421010862427522e-20,1.3552527156068805e-20,0.00021258502965793014,-8.131516293641283e-20,0.0014172336086630821,2.222614453595284e-18,2.439454888092385e-19,-0.001700680237263441,-3.5360994079543355e-19,2.843940448062683e-21,-1.4907779871675686e-19,0.0,-8.131516293641283e-20,0.00028344671591185033,6.0,7.0,8.0,0.0863095223903656,-0.022215135395526886,-0.019664116203784943,-0.01764455810189247,0.0015943878097459674,0.0019132653251290321,0.001700680237263441,0.0012400794075801969,0.0014880952658131719,0.0009920635493472219,-0.022215135395526886,0.017655186355113983,0.0019132653251290321,0.001700680237263441,-0.00239158165641129,-0.0007653061184100807,-0.0006802721181884408,1.5449880957918438e-18,7.995991022080595e-19,1.0299920638612292e-18,-0.019664116203784943,0.0019132653251290321,0.013003118336200714,0.0014880952658131719,2.0948899088012774e-18,-0.0006377550889737904,-1.2197274440461925e-19,-0.0014880952658131719,-0.0004960317746736109,1.3552527156068805e-19,-0.01764455810189247,0.001700680237263441,0.0014880952658131719,0.010001619346439838,1.368897473401249e-18,-1.7944460712995005e-19,-0.00048590864753350616,7.408556722419529e-21,-0.00042517005931586027,-0.0009920635493472219,0.0015943878097459674,-0.00239158165641129,2.0948899088012774e-18,1.368897473401249e-18,0.00047831633128225803,9.66705560869351e-20,2.8322015354022696e-19,-3.068218394642611e-19,-1.4161007677011348e-19,-2.3601680754155287e-19,0.0019132653251290321,-0.0007653061184100807,-0.0006377550889737904,-1.7944460712995005e-19,9.66705560869351e-20,0.00025510202976875007,7.605707305044587e-20,-1.3552527156068805e-20,-5.924315206925234e-21,-1.2848852828269488e-22,0.001700680237263441,-0.0006802721181884408,-1.2197274440461925e-19,-0.00048590864753350616,2.8322015354022696e-19,7.605707305044587e-20,0.00019436345610301942,1.6940658945086007e-21,-2.0328790734103208e-20,3.3881317890172014e-20,0.0012400794075801969,1.5449880957918438e-18,-0.0014880952658131719,7.408556722419529e-21,-3.068218394642611e-19,-1.3552527156068805e-20,1.6940658945086007e-21,0.00024801588733680546,-6.776263578034403e-21,3.3881317890172014e-21,0.0014880952658131719,7.995991022080595e-19,-0.0004960317746736109,-0.00042517005931586027,-1.4161007677011348e-19,-5.924315206925234e-21,-2.0328790734103208e-20,-6.776263578034403e-21,0.00014172335795592517,-3.3881317890172014e-20,0.0009920635493472219,1.0299920638612292e-18,1.3552527156068805e-19,-0.0009920635493472219,-2.3601680754155287e-19,-1.2848852828269488e-22,3.3881317890172014e-20,3.3881317890172014e-21,-3.3881317890172014e-20,0.00014172335795592517,6.0,7.0,9.0,0.07823186367750168,-0.019897958263754845,-0.017611488699913025,-0.014332096092402935,0.0014172336086630821,0.001700680237263441,0.0013605442363768816,0.001102292793802917,0.0011904762359336019,0.0007215007208287716,-0.019897958263754845,0.015753967687487602,0.001700680237263441,0.0013605442363768816,-0.002125850412994623,-0.0006802721181884408,-0.0005442177061922848,1.36365263132978e-18,5.353248226647178e-19,8.809142651444724e-19,-0.017611488699913025,0.001700680237263441,0.01160241849720478,0.0011904762359336019,2.0895353619010685e-18,-0.0005668934318237007,-3.3881317890172014e-20,-0.0013227512827143073,-0.00039682540227659047,-8.131516293641283e-20,-0.014332096092402935,0.0013605442363768816,0.0011904762359336019,0.007087456062436104,2.1999275777299453e-18,-0.0,-0.0003401360590942204,-1.411170407080098e-33,-0.00029761905898340046,-0.0006184292142279446,0.0014172336086630821,-0.002125850412994623,2.0895353619010685e-18,2.1999275777299453e-18,0.00042517005931586027,0.0,-2.104434978534074e-19,-2.7273052109607717e-19,-1.1328805883115137e-19,-1.667443344987523e-19,0.001700680237263441,-0.0006802721181884408,-0.0005668934318237007,-0.0,0.0,0.00022675737272948027,0.0,0.0,0.0,0.0,0.0013605442363768816,-0.0005442177061922848,-3.3881317890172014e-20,-0.0003401360590942204,-2.104434978534074e-19,0.0,0.0001360544265480712,1.3499154423764967e-34,8.470329472543003e-21,-1.0164395367051604e-20,0.001102292793802917,1.36365263132978e-18,-0.0013227512827143073,-1.411170407080098e-33,-2.7273052109607717e-19,0.0,1.3499154423764967e-34,0.00022045854711905122,7.267000782138794e-35,1.069601824856133e-34,0.0011904762359336019,5.353248226647178e-19,-0.00039682540227659047,-0.00029761905898340046,-1.1328805883115137e-19,0.0,8.470329472543003e-21,7.267000782138794e-35,9.920635056914762e-05,2.371692252312041e-20,0.0007215007208287716,8.809142651444724e-19,-8.131516293641283e-20,-0.0006184292142279446,-1.667443344987523e-19,0.0,-1.0164395367051604e-20,1.069601824856133e-34,2.371692252312041e-20,7.730365177849308e-05,6.0,7.0,10.0,0.07154195010662079,-0.018019480630755424,-0.015947742387652397,-0.011873840354382992,0.0012755101779475808,0.0015306122368201613,0.001113172504119575,0.0009920635493472219,0.0009740259847603738,0.0005411255406215787,-0.018019480630755424,0.014223098754882812,0.0015306122368201613,0.001113172504119575,-0.0019132653251290321,-0.0006122448830865324,-0.0004452690191101283,-1.8023248115377033e-18,-2.9070170749767588e-18,-3.4423418976414766e-18,-0.015947742387652397,0.0015306122368201613,0.010474644601345062,0.0009740259847603738,-2.633634916503749e-18,-0.0005102040595375001,-3.0222135558033436e-18,-0.0011904762359336019,-0.0003246753185521811,-2.6291902682773483e-18,-0.011873840354382992,0.001113172504119575,0.0009740259847603738,0.005208977498114109,-6.6488268920935644e-18,-3.1621466660531736e-18,-0.00024737167404964566,-4.310572588863367e-18,-0.00021645022206939757,-0.000405844155466184,0.0012755101779475808,-0.0019132653251290321,-2.633634916503749e-18,-6.6488268920935644e-18,0.00038265305920504034,2.1872687158281635e-19,5.137519005905466e-19,6.608470637012875e-20,3.205537355662832e-19,4.377038619033534e-19,0.0015306122368201613,-0.0006122448830865324,-0.0005102040595375001,-3.1621466660531736e-18,2.1872687158281635e-19,0.0002040816325461492,2.17504117691704e-19,3.107329820449591e-20,1.4878171975625116e-19,2.1112775716574775e-19,0.001113172504119575,-0.0004452690191101283,-3.0222135558033436e-18,-0.00024737167404964566,5.137519005905466e-19,2.17504117691704e-19,9.894867253024131e-05,2.7280680265819104e-19,1.5585406229479126e-19,1.1858461261560205e-19,0.0009920635493472219,-1.8023248115377033e-18,-0.0011904762359336019,-4.310572588863367e-18,6.608470637012875e-20,3.107329820449591e-20,2.7280680265819104e-19,0.00019841270113829523,1.8220179398204536e-19,3.103978446499044e-19,0.0009740259847603738,-2.9070170749767588e-18,-0.0003246753185521811,-0.00021645022206939757,3.205537355662832e-19,1.4878171975625116e-19,1.5585406229479126e-19,1.8220179398204536e-19,7.215006917249411e-05,3.7269449679189215e-20,0.0005411255406215787,-3.4423418976414766e-18,-2.6291902682773483e-18,-0.000405844155466184,4.377038619033534e-19,2.1112775716574775e-19,1.1858461261560205e-19,3.103978446499044e-19,3.7269449679189215e-20,4.5093795051798224e-05,6.0,7.0,11.0,0.06590928882360458,-0.016465676948428154,-0.014571737498044968,-0.009998929686844349,0.0011595546966418624,0.0013914656592532992,0.0009276437922380865,0.0009018759010359645,0.000811688310932368,0.0004162504046689719,-0.016465676948428154,0.012963822111487389,0.0013914656592532992,0.0009276437922380865,-0.0017393321031704545,-0.0005565862520597875,-0.0003710575110744685,1.11571578926982e-18,4.811147140404426e-19,5.014435047745458e-19,-0.014571737498044968,0.0013914656592532992,0.009547000750899315,0.000811688310932368,2.3120490146293643e-18,-0.00046382189611904323,1.0164395367051604e-19,-0.0010822510812431574,-0.00027056277031078935,1.5585406229479126e-19,-0.009998929686844349,0.0009276437922380865,0.000811688310932368,0.003942287992686033,1.1559871807895407e-18,-7.802331814968433e-34,-0.00018552875553723425,-7.415220862256018e-34,-0.00016233765927609056,-0.0002775002794805914,0.0011595546966418624,-0.0017393321031704545,2.3120490146293643e-18,1.1559871807895407e-18,0.0003478664148133248,-2.3479232174103297e-19,5.915266652555259e-35,-2.231431630238428e-19,-7.724186064391177e-20,-9.242615665460627e-20,0.0013914656592532992,-0.0005565862520597875,-0.00046382189611904323,-7.802331814968433e-34,-2.3479232174103297e-19,0.00018552875553723425,-0.0,1.506103973700979e-34,5.21343683204185e-35,6.238300880150248e-35,0.0009276437922380865,-0.0003710575110744685,1.0164395367051604e-19,-0.00018552875553723425,5.915266652555259e-35,-0.0,7.421150075970218e-05,-0.0,-2.0328790734103208e-20,-1.0164395367051604e-20,0.0009018759010359645,1.11571578926982e-18,-0.0010822510812431574,-7.415220862256018e-34,-2.231431630238428e-19,1.506103973700979e-34,-0.0,0.0001803751802071929,4.954773547535103e-35,5.928788855392672e-35,0.000811688310932368,4.811147140404426e-19,-0.00027056277031078935,-0.00016233765927609056,-7.724186064391177e-20,5.21343683204185e-35,-2.0328790734103208e-20,4.954773547535103e-35,5.411255551734939e-05,-3.218725199566341e-20,0.0004162504046689719,5.014435047745458e-19,1.5585406229479126e-19,-0.0002775002794805914,-9.242615665460627e-20,6.238300880150248e-35,-1.0164395367051604e-20,5.928788855392672e-35,-3.218725199566341e-20,2.775002758426126e-05,6.0,7.0,12.0,0.06110093742609024,-0.015158948488533497,-0.013414660468697548,-0.008536106906831264,0.0010629252064973116,0.0012755101779475808,0.0007849293760955334,0.0008267195662483573,0.0006868132040835917,0.0003270538873039186,-0.015158948488533497,0.011909667402505875,0.0012755101779475808,0.0007849293760955334,-0.0015943878097459674,-0.0005102040595375001,-0.00031397174461744726,6.396792817664476e-18,8.131516293641283e-19,3.6083603553033194e-19,-0.013414660468697548,0.0012755101779475808,0.008770495653152466,0.0006868132040835917,6.461167321655803e-18,-0.00042517005931586027,4.946672411965114e-19,-0.0009920635493472219,-0.00022893772984389216,-1.4653669987499396e-18,-0.008536106906831264,0.0007849293760955334,0.0006868132040835917,0.003056467277929187,1.0842021724855044e-18,-2.439454888092385e-19,-0.00014271443069446832,-8.267041565201971e-19,-0.00012487512140069157,-0.00019623234402388334,0.0010629252064973116,-0.0015943878097459674,6.461167321655803e-18,1.0842021724855044e-18,0.0003188775444868952,-5.485418763836081e-19,1.0069443433783613e-19,-6.732315989077343e-19,-1.2507385744577762e-19,-9.783230540787169e-20,0.0012755101779475808,-0.0005102040595375001,-0.00042517005931586027,-2.439454888092385e-19,-5.485418763836081e-19,0.0001700680295471102,-1.6940658945086007e-20,-7.758821796849391e-19,-9.825582188149884e-20,4.927320392287465e-20,0.0007849293760955334,-0.00031397174461744726,4.946672411965114e-19,-0.00014271443069446832,1.0069443433783613e-19,-1.6940658945086007e-20,5.7085770095000044e-05,-9.486769009248164e-20,2.0328790734103208e-20,-4.170643032905232e-21,0.0008267195662483573,6.396792817664476e-18,-0.0009920635493472219,-8.267041565201971e-19,-6.732315989077343e-19,-7.758821796849391e-19,-9.486769009248164e-20,0.0001653439103392884,-2.507217523872729e-19,1.573107919769825e-19,0.0006868132040835917,8.131516293641283e-19,-0.00022893772984389216,-0.00012487512140069157,-1.2507385744577762e-19,-9.825582188149884e-20,2.0328790734103208e-20,-2.507217523872729e-19,4.162504046689719e-05,5.3323681200348083e-20,0.0003270538873039186,3.6083603553033194e-19,-1.4653669987499396e-18,-0.00019623234402388334,-9.783230540787169e-20,4.927320392287465e-20,-4.170643032905232e-21,1.573107919769825e-19,5.3323681200348083e-20,1.783930383680854e-05,6.0,7.0,13.0,0.056947872042655945,-0.014044628478586674,-0.012428048066794872,-0.007372729480266571,0.0009811617201194167,0.0011773940641433,0.0006727965665049851,0.000763125775847584,0.00058869703207165,0.00026164311566390097,-0.014044628478586674,0.0110142407938838,0.0011773940641433,0.0006727965665049851,-0.0014717425219714642,-0.00047095760237425566,-0.0002691186382435262,-1.3010426069826053e-18,-4.87890977618477e-19,2.659683454378503e-19,-0.012428048066794872,0.0011773940641433,0.008110936731100082,0.00058869703207165,-1.212951180468158e-18,-0.0003924646880477667,-1.0875903042745216e-18,-0.0009157509193755686,-0.00019623234402388334,-7.716470149486676e-19,-0.007372729480266571,0.0006727965665049851,0.00058869703207165,0.0024180752225220203,-1.3552527156068805e-19,-5.963111948670274e-19,-0.00011213276593480259,-1.6940658945086007e-18,-9.811617201194167e-05,-0.00014271443069446832,0.0009811617201194167,-0.0014717425219714642,-1.212951180468158e-18,-1.3552527156068805e-19,0.000294348516035825,2.93584468121575e-19,2.567771797602556e-19,6.436864264120506e-20,2.3221163455214116e-20,-6.564505341220828e-20,0.0011773940641433,-0.00047095760237425566,-0.0003924646880477667,-5.963111948670274e-19,2.93584468121575e-19,0.00015698587230872363,9.147955830346444e-20,8.809142651444724e-20,2.202285662861181e-20,1.897105130677984e-20,0.0006727965665049851,-0.0002691186382435262,-1.0875903042745216e-18,-0.00011213276593480259,2.567771797602556e-19,9.147955830346444e-20,4.485310637392104e-05,9.317362419797304e-20,4.828087799349512e-20,2.77035933984311e-22,0.000763125775847584,-1.3010426069826053e-18,-0.0009157509193755686,-1.6940658945086007e-18,6.436864264120506e-20,8.809142651444724e-20,9.317362419797304e-20,0.00015262515807989985,1.0164395367051604e-19,8.681825338006034e-20,0.00058869703207165,-4.87890977618477e-19,-0.00019623234402388334,-9.811617201194167e-05,2.3221163455214116e-20,2.202285662861181e-20,4.828087799349512e-20,1.0164395367051604e-19,3.270538945798762e-05,2.5943495630482825e-20,0.00026164311566390097,2.659683454378503e-19,-7.716470149486676e-19,-0.00014271443069446832,-6.564505341220828e-20,1.897105130677984e-20,2.77035933984311e-22,8.681825338006034e-20,2.5943495630482825e-20,1.1892869224539027e-05,6.0,7.0,14.0,0.05332442373037338,-0.01308309007436037,-0.011576773598790169,-0.006432215683162212,0.0009110787068493664,0.001093294471502304,0.000583090353757143,0.0007086168043315411,0.0005102040595375001,0.00021258502965793014,-0.01308309007436037,0.010244169272482395,0.001093294471502304,0.000583090353757143,-0.00136661808937788,-0.0004373177944216877,-0.0002332361473236233,1.6805133673525319e-18,1.6263032587282567e-19,1.5246593050577406e-20,-0.011576773598790169,0.001093294471502304,0.007543731946498156,0.0005102040595375001,9.41900637346782e-19,-0.00036443150020204484,5.89534931288993e-19,-0.0008503401186317205,-0.0001700680295471102,3.049318610115481e-20,-0.006432215683162212,0.000583090353757143,0.0005102040595375001,0.0019462043419480324,-1.6263032587282567e-19,4.0657581468206416e-19,-8.970621274784207e-05,3.2526065174565133e-19,-7.849293615436181e-05,-0.00010629251482896507,0.0009110787068493664,-0.00136661808937788,9.41900637346782e-19,-1.6263032587282567e-19,0.000273323617875576,-6.103840864830517e-21,-9.56456966755436e-22,-1.5600414387718135e-19,-5.294491588448458e-22,2.541098841762901e-21,0.001093294471502304,-0.0004373177944216877,-0.00036443150020204484,4.0657581468206416e-19,-6.103840864830517e-21,0.00014577258843928576,-7.115076756936123e-20,-1.6432439176733427e-19,-3.218725199566341e-20,-8.515709699546914e-21,0.000583090353757143,-0.0002332361473236233,5.89534931288993e-19,-8.970621274784207e-05,-9.56456966755436e-22,-7.115076756936123e-20,3.5882483643945307e-05,-4.573977915173222e-20,-1.3552527156068805e-20,-3.2919058037354223e-21,0.0007086168043315411,1.6805133673525319e-18,-0.0008503401186317205,3.2526065174565133e-19,-1.5600414387718135e-19,-1.6432439176733427e-19,-4.573977915173222e-20,0.00014172335795592517,-8.300922883092143e-20,3.963422172557194e-21,0.0005102040595375001,1.6263032587282567e-19,-0.0001700680295471102,-7.849293615436181e-05,-5.294491588448458e-22,-3.218725199566341e-20,-1.3552527156068805e-20,-8.300922883092143e-20,2.616431265778374e-05,-2.875736010651257e-21,0.00021258502965793014,1.5246593050577406e-20,3.049318610115481e-20,-0.00010629251482896507,2.541098841762901e-21,-8.515709699546914e-21,-3.2919058037354223e-21,3.963422172557194e-21,-2.875736010651257e-21,8.176347364496905e-06,6.0,7.0,15.0,0.05013519152998924,-0.01224489789456129,-0.010834750719368458,-0.0056610144674777985,0.0008503401186317205,0.0010204081190750003,0.0005102040595375001,0.0006613756413571537,0.00044642857392318547,0.00017507003212813288,-0.01224489789456129,0.0095748296007514,0.0010204081190750003,0.0005102040595375001,-0.0012755101779475808,-0.0004081632650922984,-0.0002040816325461492,-4.336808689942018e-19,4.472333961502706e-19,4.1758724299637007e-19,-0.010834750719368458,0.0010204081190750003,0.007050736807286739,0.00044642857392318547,-8.504210790433175e-19,-0.0003401360590942204,6.2511031507367365e-19,-0.0007936508045531809,-0.00014880952949170023,4.0234064994579266e-19,-0.0056610144674777985,0.0005102040595375001,0.00044642857392318547,0.0015897980192676187,8.944667923005412e-19,5.149960319306146e-19,-7.288629421964288e-05,1.2197274440461925e-18,-6.377550744218752e-05,-8.080155384959653e-05,0.0008503401186317205,-0.0012755101779475808,-8.504210790433175e-19,8.944667923005412e-19,0.00025510202976875007,1.5576932798079286e-19,-2.926788281354516e-20,9.85176116206748e-20,-1.7481912946682716e-20,-5.082197683525802e-20,0.0010204081190750003,-0.0004081632650922984,-0.0003401360590942204,5.149960319306146e-19,1.5576932798079286e-19,0.0001360544265480712,-1.0164395367051604e-20,6.945670167485263e-20,-3.8963515573697816e-20,-2.2712295513303418e-20,0.0005102040595375001,-0.0002040816325461492,6.2511031507367365e-19,-7.288629421964288e-05,-2.926788281354516e-20,-1.0164395367051604e-20,2.9154518415452912e-05,-5.251604272976662e-20,-3.6422416731934915e-20,-1.148130486853367e-20,0.0006613756413571537,-4.336808689942018e-19,-0.0007936508045531809,1.2197274440461925e-18,9.85176116206748e-20,6.945670167485263e-20,-5.251604272976662e-20,0.00013227513409219682,-1.3976043629695956e-19,-3.910111836106572e-20,0.00044642857392318547,4.472333961502706e-19,-0.00014880952949170023,-6.377550744218752e-05,-1.7481912946682716e-20,-3.8963515573697816e-20,-3.6422416731934915e-20,-1.3976043629695956e-19,2.1258503693388775e-05,-1.1704914244767915e-20,0.00017507003212813288,4.1758724299637007e-19,4.0234064994579266e-19,-8.080155384959653e-05,-5.082197683525802e-20,-2.2712295513303418e-20,-1.148130486853367e-20,-3.910111836106572e-20,-1.1704914244767915e-20,5.77153923586593e-06,6.0,7.0,16.0,0.047306422144174576,-0.011507728137075901,-0.010182198137044907,-0.0050207581371068954,0.0007971939048729837,0.0009566326625645161,0.00045018005766905844,0.0006200397037900984,0.00039390756865032017,0.00014589169586542994,-0.011507728137075901,0.008987657725811005,0.0009566326625645161,0.00045018005766905844,-0.001195790828205645,-0.00038265305920504034,-0.00018007203470915556,2.6020852139652106e-18,2.710505431213761e-20,-2.380162581784584e-19,-0.010182198137044907,0.0009566326625645161,0.006618272513151169,0.00039390756865032017,2.236166980751353e-18,-0.0003188775444868952,-5.251604272976662e-20,-0.0007440476329065859,-0.00013130252773407847,-6.962610826430349e-19,-0.0050207581371068954,0.00045018005766905844,0.00039390756865032017,0.0013155261985957623,-4.2012834183813297e-19,-5.014435047745458e-19,-6.0024009144399315e-05,-1.111307226797642e-18,-5.25210089108441e-05,-6.252501043491066e-05,0.0007971939048729837,-0.001195790828205645,2.236166980751353e-18,-4.2012834183813297e-19,0.00023915816564112902,-3.724296374371618e-20,8.799915710205636e-20,-3.111877245867101e-19,-1.1677742492556542e-20,1.6517142471458857e-20,0.0009566326625645161,-0.00038265305920504034,-0.0003188775444868952,-5.014435047745458e-19,-3.724296374371618e-20,0.00012755101488437504,1.0164395367051604e-20,-2.879912020664621e-19,-2.202285662861181e-20,3.7119836617067954e-20,0.00045018005766905844,-0.00018007203470915556,-5.251604272976662e-20,-6.0024009144399315e-05,8.799915710205636e-20,1.0164395367051604e-20,2.4009603293961845e-05,-1.4399560103323106e-20,1.3552527156068805e-20,4.932622183805404e-21,0.0006200397037900984,2.6020852139652106e-18,-0.0007440476329065859,-1.111307226797642e-18,-3.111877245867101e-19,-2.879912020664621e-19,-1.4399560103323106e-20,0.00012400794366840273,-1.1011428314305904e-20,7.412362884148267e-20,0.00039390756865032017,2.710505431213761e-20,-0.00013130252773407847,-5.25210089108441e-05,-1.1677742492556542e-20,-2.202285662861181e-20,1.3552527156068805e-20,-1.1011428314305904e-20,1.750700357661117e-05,1.43274289845562e-20,0.00014589169586542994,-2.380162581784584e-19,-6.962610826430349e-19,-6.252501043491066e-05,1.6517142471458857e-20,3.7119836617067954e-20,4.932622183805404e-21,7.412362884148267e-20,1.43274289845562e-20,4.168333816778613e-06,6.0,8.0,3.0,0.16187168657779694,-0.0473710335791111,-0.0376984141767025,-0.0778769850730896,0.0037202381063252687,0.003968254197388887,0.008928571827709675,0.002314814832061529,0.0069444444961845875,0.010416666977107525,-0.0473710335791111,0.03940972313284874,0.003968254197388887,0.008928571827709675,-0.005580357275903225,-0.0015873016091063619,-0.0035714285913854837,2.4936649967166602e-18,3.3042352021841637e-18,2.4781763706188498e-17,-0.0376984141767025,0.003968254197388887,0.022345049306750298,0.0069444444961845875,4.01453333302707e-18,-0.0011337868636474013,-7.552537427739386e-19,-0.002314814832061529,-0.0019841270986944437,-1.7828110092491269e-32,-0.0778769850730896,0.008928571827709675,0.0069444444961845875,0.18204365670681,8.508405423319432e-18,-7.552537427739386e-19,-0.008928571827709675,-3.299896965454266e-33,-0.0069444444961845875,-0.0625,0.0037202381063252687,-0.005580357275903225,4.01453333302707e-18,8.508405423319432e-18,0.0011160714784637094,2.0050188548977106e-19,1.4869058513226313e-18,-5.507058842636234e-19,-6.608470507765904e-19,-4.956352906673822e-18,0.003968254197388887,-0.0015873016091063619,-0.0011337868636474013,-7.552537427739386e-19,2.0050188548977106e-19,0.00045351474545896053,3.021015074493331e-19,8.219094687230189e-20,-0.0,-8.904072160471276e-34,0.008928571827709675,-0.0035714285913854837,-7.552537427739386e-19,-0.008928571827709675,1.4869058513226313e-18,3.021015074493331e-19,0.0035714285913854837,-6.815168189537184e-34,-8.926532367766636e-34,-6.603188170846532e-33,0.002314814832061529,2.4936649967166602e-18,-0.002314814832061529,-3.299896965454266e-33,-5.507058842636234e-19,8.219094687230189e-20,-6.815168189537184e-34,0.0003306878206785768,2.4610064780981465e-35,2.4456253641063773e-33,0.0069444444961845875,3.3042352021841637e-18,-0.0019841270986944437,-0.0069444444961845875,-6.608470507765904e-19,-0.0,-8.926532367766636e-34,2.4610064780981465e-35,0.0019841270986944437,2.9347504001934543e-33,0.010416666977107525,2.4781763706188498e-17,-1.7828110092491269e-32,-0.0625,-4.956352906673822e-18,-8.904072160471276e-34,-6.603188170846532e-33,2.4456253641063773e-33,2.9347504001934543e-33,0.03125,6.0,8.0,4.0,0.1325644850730896,-0.03686755895614624,-0.02931547537446022,-0.0498511902987957,0.0027901786379516125,0.0029761905316263437,0.0053571430034935474,0.0017361111240461469,0.004166666883975267,0.0052083334885537624,-0.03686755895614624,0.030093006789684296,0.0029761905316263437,0.0053571430034935474,-0.004185267724096775,-0.0011904762359336019,-0.002142857061699033,2.710505431213761e-18,1.963266448190002e-18,8.673617379884035e-18,-0.02931547537446022,0.0029761905316263437,0.017056405544281006,0.004166666883975267,4.780688695888998e-18,-0.0008503401186317205,0.0,-0.0017361111240461469,-0.0011904762359336019,-9.907577728772847e-33,-0.0498511902987957,0.0053571430034935474,0.004166666883975267,0.069692462682724,6.591949125993806e-18,-1.9274705755356362e-20,-0.0035714285913854837,4.4913700369604505e-20,-0.0027777778450399637,-0.015625,0.0027901786379516125,-0.004185267724096775,4.780688695888998e-18,6.591949125993806e-18,0.0008370535797439516,-5.178882689424063e-19,0.0,-4.1302940027302046e-19,-3.965082252960754e-19,-1.734723475976807e-18,0.0029761905316263437,-0.0011904762359336019,-0.0008503401186317205,-1.9274705755356362e-20,-5.178882689424063e-19,0.0003401360590942204,0.0,-1.846448848459178e-19,5.507058729545134e-21,1.073280157901497e-33,0.0053571430034935474,-0.002142857061699033,0.0,-0.0035714285913854837,0.0,0.0,0.0014285714132711291,0.0,0.0,-0.0,0.0017361111240461469,2.710505431213761e-18,-0.0017361111240461469,4.4913700369604505e-20,-4.1302940027302046e-19,-1.846448848459178e-19,0.0,0.00024801588733680546,-1.2832485819887002e-20,8.559689049878809e-34,0.004166666883975267,1.963266448190002e-18,-0.0011904762359336019,-0.0027777778450399637,-3.965082252960754e-19,5.507058729545134e-21,0.0,-1.2832485819887002e-20,0.0007936508045531809,8.217301524617855e-34,0.0052083334885537624,8.673617379884035e-18,-9.907577728772847e-33,-0.015625,-1.734723475976807e-18,1.073280157901497e-33,-0.0,8.559689049878809e-34,8.217301524617855e-34,0.0052083334885537624,6.0,8.0,5.0,0.11240079253911972,-0.03020833246409893,-0.02400793693959713,-0.0347222238779068,0.0022321429569274187,0.0023809524718672037,0.0035714285913854837,0.0013888889225199819,0.0027777778450399637,0.0029761905316263437,-0.03020833246409893,0.024360118433833122,0.0023809524718672037,0.0035714285913854837,-0.0033482143189758062,-0.0009523809421807528,-0.0014285714132711291,2.168404344971009e-18,1.328147661294743e-18,4.248302432350375e-18,-0.02400793693959713,0.0023809524718672037,0.013803854584693909,0.0027777778450399637,3.670263657214644e-18,-0.0006802721181884408,-2.384346659927019e-33,-0.0013888889225199819,-0.0007936508045531809,-4.6569269496358705e-33,-0.0347222238779068,0.0035714285913854837,0.0027777778450399637,0.0352182537317276,5.411393233445368e-18,-9.440697149392234e-21,-0.0017857142956927419,0.0,-0.0013888889225199819,-0.0059523810632526875,0.0022321429569274187,-0.0033482143189758062,3.670263657214644e-18,5.411393233445368e-18,0.0006696428754366934,-3.3144850556482497e-19,-4.350261748629427e-19,-3.304235253882952e-19,-2.64338825480515e-19,-8.49660486470075e-19,0.0023809524718672037,-0.0009523809421807528,-0.0006802721181884408,-9.440697149392234e-21,-3.3144850556482497e-19,0.0002721088530961424,2.1532188943696774e-34,-1.7618285302889447e-19,6.776263578034403e-21,4.2055059866869145e-34,0.0035714285913854837,-0.0014285714132711291,-2.384346659927019e-33,-0.0017857142956927419,-4.350261748629427e-19,2.1532188943696774e-34,0.0007142857066355646,2.1465603617207422e-34,1.7172482434588457e-34,5.519726578827983e-34,0.0013888889225199819,2.168404344971009e-18,-0.0013888889225199819,0.0,-3.304235253882952e-19,-1.7618285302889447e-19,2.1465603617207422e-34,0.00019841270113829523,0.0,4.192500702898501e-34,0.0027777778450399637,1.328147661294743e-18,-0.0007936508045531809,-0.0013888889225199819,-2.64338825480515e-19,6.776263578034403e-21,1.7172482434588457e-34,0.0,0.00039682540227659047,3.354000378647808e-34,0.0029761905316263437,4.248302432350375e-18,-4.6569269496358705e-33,-0.0059523810632526875,-8.49660486470075e-19,4.2055059866869145e-34,5.519726578827983e-34,4.192500702898501e-34,3.354000378647808e-34,0.0014880952658131719,6.0,8.0,6.0,0.09762377291917801,-0.025598781183362007,-0.0203373022377491,-0.025598781183362007,0.0018601190531626344,0.0019841270986944437,0.0025510203558951616,0.0011574074160307646,0.0019841270986944437,0.0018601190531626344,-0.025598781183362007,0.020470166578888893,0.0019841270986944437,0.0025510203558951616,-0.0027901786379516125,-0.0007936508045531809,-0.0010204081190750003,1.1993986533120893e-18,6.505213034913027e-19,1.3718476130559194e-18,-0.0203373022377491,0.0019841270986944437,0.011597694829106331,0.0019841270986944437,2.1488766786601633e-18,-0.0005668934318237007,-5.178882689424063e-19,-0.0011574074160307646,-0.0005668934318237007,-5.90041993004488e-19,-0.025598781183362007,0.0025510203558951616,0.0019841270986944437,0.020470166578888893,3.068471356813687e-18,-2.2396961985335987e-19,-0.0010204081190750003,0.0,-0.0007936508045531809,-0.0027901786379516125,0.0018601190531626344,-0.0027901786379516125,2.1488766786601633e-18,3.068471356813687e-18,0.0005580357392318547,1.0025094274488553e-19,1.051960562445134e-20,-2.753529421318117e-19,-1.8881343569348464e-19,-4.867846235491873e-19,0.0019841270986944437,-0.0007936508045531809,-0.0005668934318237007,-2.2396961985335987e-19,1.0025094274488553e-19,0.00022675737272948027,8.631471364451722e-20,4.0657581468206416e-20,-3.3881317890172014e-21,-5.207187785260706e-36,0.0025510203558951616,-0.0010204081190750003,-5.178882689424063e-19,-0.0010204081190750003,1.051960562445134e-20,8.631471364451722e-20,0.0004081632650922984,1.8055593228630336e-35,1.2084060556467265e-19,4.248302432350375e-19,0.0011574074160307646,1.1993986533120893e-18,-0.0011574074160307646,0.0,-2.753529421318117e-19,4.0657581468206416e-20,1.8055593228630336e-35,0.0001653439103392884,6.776263578034403e-21,2.322162457755543e-34,0.0019841270986944437,6.505213034913027e-19,-0.0005668934318237007,-0.0007936508045531809,-1.8881343569348464e-19,-3.3881317890172014e-21,1.2084060556467265e-19,6.776263578034403e-21,0.00022675737272948027,2.3601680754155287e-19,0.0018601190531626344,1.3718476130559194e-18,-5.90041993004488e-19,-0.0027901786379516125,-4.867846235491873e-19,-5.207187785260706e-36,4.248302432350375e-19,2.322162457755543e-34,2.3601680754155287e-19,0.0005580357392318547,6.0,8.0,7.0,0.0863095223903656,-0.022215135395526886,-0.01764455810189247,-0.019664116203784943,0.0015943878097459674,0.001700680237263441,0.0019132653251290321,0.0009920635493472219,0.0014880952658131719,0.0012400794075801969,-0.022215135395526886,0.017655186355113983,0.001700680237263441,0.0019132653251290321,-0.00239158165641129,-0.0006802721181884408,-0.0007653061184100807,1.0503208545953324e-18,5.963111948670274e-19,1.5178830414797062e-18,-0.01764455810189247,0.001700680237263441,0.010001619346439838,0.0014880952658131719,1.368897473401249e-18,-0.00048590864753350616,-2.846030702774449e-19,-0.0009920635493472219,-0.00042517005931586027,-2.981555974335137e-19,-0.019664116203784943,0.0019132653251290321,0.0014880952658131719,0.013003118336200714,2.0948899088012774e-18,-1.6186696741440993e-19,-0.0006377550889737904,-1.091657981900416e-21,-0.0004960317746736109,-0.0014880952658131719,0.0015943878097459674,-0.00239158165641129,1.368897473401249e-18,2.0948899088012774e-18,0.00047831633128225803,2.8322015354022696e-19,9.66705560869351e-20,-2.3601680754155287e-19,-1.4161007677011348e-19,-3.068218394642611e-19,0.001700680237263441,-0.0006802721181884408,-0.00048590864753350616,-1.6186696741440993e-19,2.8322015354022696e-19,0.00019436345610301942,6.469018971728945e-20,3.3881317890172014e-20,2.786629715920151e-21,2.597328695625761e-22,0.0019132653251290321,-0.0007653061184100807,-2.846030702774449e-19,-0.0006377550889737904,9.66705560869351e-20,6.469018971728945e-20,0.00025510202976875007,0.0,3.7269449679189215e-20,0.0,0.0009920635493472219,1.0503208545953324e-18,-0.0009920635493472219,-1.091657981900416e-21,-2.3601680754155287e-19,3.3881317890172014e-20,0.0,0.00014172335795592517,0.0,0.0,0.0014880952658131719,5.963111948670274e-19,-0.00042517005931586027,-0.0004960317746736109,-1.4161007677011348e-19,2.786629715920151e-21,3.7269449679189215e-20,0.0,0.00014172335795592517,9.486769009248164e-20,0.0012400794075801969,1.5178830414797062e-18,-2.981555974335137e-19,-0.0014880952658131719,-3.068218394642611e-19,2.597328695625761e-22,0.0,0.0,9.486769009248164e-20,0.00024801588733680546,6.0,8.0,8.0,0.07736028730869293,-0.0196242555975914,-0.015583664178848267,-0.015583664178848267,0.0013950893189758062,0.0014880952658131719,0.0014880952658131719,0.0008680555620230734,0.0011574074160307646,0.0008680555620230734,-0.0196242555975914,0.015522693283855915,0.0014880952658131719,0.0014880952658131719,-0.0020926338620483875,-0.0005952381179668009,-0.0005952381179668009,1.3891340334970526e-18,6.030874584450618e-19,1.328147661294743e-18,-0.015583664178848267,0.0014880952658131719,0.008792753331363201,0.0011574074160307646,2.4784572811548728e-18,-0.00042517005931586027,5.421010862427522e-20,-0.0008680555620230734,-0.0003306878206785768,8.131516293641283e-20,-0.015583664178848267,0.0014880952658131719,0.0011574074160307646,0.008792753331363201,2.4784572811548728e-18,2.2879492625789967e-20,-0.00042517005931586027,2.9751382806279475e-20,-0.0003306878206785768,-0.0008680555620230734,0.0013950893189758062,-0.0020926338620483875,2.4784572811548728e-18,2.4784572811548728e-18,0.0004185267898719758,-2.5894413447120313e-19,-2.5894413447120313e-19,-2.0651470013651023e-19,-1.101411794376641e-19,-2.0651470013651023e-19,0.0014880952658131719,-0.0005952381179668009,-0.00042517005931586027,2.2879492625789967e-20,-2.5894413447120313e-19,0.0001700680295471102,-2.592958027557602e-22,-9.486769009248164e-20,-4.248609652399756e-21,-8.757995868894132e-22,0.0014880952658131719,-0.0005952381179668009,5.421010862427522e-20,-0.00042517005931586027,-2.5894413447120313e-19,-2.592958027557602e-22,0.0001700680295471102,-8.470329472543003e-22,-1.3552527156068805e-20,-9.486769009248164e-20,0.0008680555620230734,1.3891340334970526e-18,-0.0008680555620230734,2.9751382806279475e-20,-2.0651470013651023e-19,-9.486769009248164e-20,-8.470329472543003e-22,0.00012400794366840273,-6.776263578034403e-21,-1.6940658945086007e-21,0.0011574074160307646,6.030874584450618e-19,-0.0003306878206785768,-0.0003306878206785768,-1.101411794376641e-19,-4.248609652399756e-21,-1.3552527156068805e-20,-6.776263578034403e-21,9.448223863728344e-05,-2.0328790734103208e-20,0.0008680555620230734,1.328147661294743e-18,8.131516293641283e-20,-0.0008680555620230734,-2.0651470013651023e-19,-8.757995868894132e-22,-9.486769009248164e-20,-1.6940658945086007e-21,-2.0328790734103208e-20,0.00012400794366840273,6.0,8.0,9.0,0.0701008066534996,-0.017576057463884354,-0.013955026865005493,-0.012656325474381447,0.0012400794075801969,0.0013227512827143073,0.0011904762359336019,0.0007716049440205097,0.0009259259095415473,0.0006313131307251751,-0.017576057463884354,0.013850859366357327,0.0013227512827143073,0.0011904762359336019,-0.0018601190531626344,-0.0005291005363687873,-0.0004761904710903764,8.673617379884035e-19,4.87890977618477e-19,7.860465750519907e-19,-0.013955026865005493,0.0013227512827143073,0.007845175452530384,0.0009259259095415473,2.1489267230872227e-18,-0.0003779289545491338,6.098637220230962e-20,-0.0007716049440205097,-0.00026455026818439364,6.776263578034403e-20,-0.012656325474381447,0.0011904762359336019,0.0009259259095415473,0.006230459548532963,1.878407643509412e-18,-6.101423516957868e-35,-0.00029761905898340046,-8.796061727097735e-21,-0.00023148147738538682,-0.0005411255406215787,0.0012400794075801969,-0.0018601190531626344,2.1489267230872227e-18,1.878407643509412e-18,0.00037202381645329297,-2.045978383138893e-19,-1.6112079880309882e-19,-1.8356861947140974e-19,-8.811293967272215e-20,-1.4590129591758252e-19,0.0013227512827143073,-0.0005291005363687873,-0.0003779289545491338,-6.101423516957868e-35,-2.045978383138893e-19,0.0001511715818196535,2.914552111212973e-36,2.0328790734103208e-20,1.6940658945086007e-21,-1.4365008778224443e-23,0.0011904762359336019,-0.0004761904710903764,6.098637220230962e-20,-0.00029761905898340046,-1.6112079880309882e-19,2.914552111212973e-36,0.0001190476177725941,0.0,-1.5246593050577406e-20,-6.776263578034403e-21,0.0007716049440205097,8.673617379884035e-19,-0.0007716049440205097,-8.796061727097735e-21,-1.8356861947140974e-19,2.0328790734103208e-20,0.0,0.00011022927355952561,0.0,1.6940658945086007e-21,0.0009259259095415473,4.87890977618477e-19,-0.00026455026818439364,-0.00023148147738538682,-8.811293967272215e-20,1.6940658945086007e-21,-1.5246593050577406e-20,0.0,6.613756704609841e-05,-1.6940658945086007e-20,0.0006313131307251751,7.860465750519907e-19,6.776263578034403e-20,-0.0005411255406215787,-1.4590129591758252e-19,-1.4365008778224443e-23,-6.776263578034403e-21,1.6940658945086007e-21,-1.6940658945086007e-20,6.764069257769734e-05,6.0,8.0,10.0,0.06409180909395218,-0.015915855765342712,-0.012635281309485435,-0.010484307073056698,0.0011160714784637094,0.0011904762359336019,0.0009740259847603738,0.0006944444612599909,0.0007575757335871458,0.0004734848625957966,-0.015915855765342712,0.01250473503023386,0.0011904762359336019,0.0009740259847603738,-0.0016741071594879031,-0.0004761904710903764,-0.00038961038808338344,8.260588005460409e-19,3.5236570605778894e-19,7.318364664277155e-19,-0.012635281309485435,0.0011904762359336019,0.007082302588969469,0.0007575757335871458,1.8952087157261296e-18,-0.0003401360590942204,0.0,-0.0006944444612599909,-0.00021645022206939757,6.776263578034403e-21,-0.010484307073056698,0.0009740259847603738,0.0007575757335871458,0.004578899126499891,1.4790850654260956e-18,-7.320925552333435e-34,-0.00021645022206939757,-7.298285806643086e-34,-0.00016835016140248626,-0.00035511364694684744,0.0011160714784637094,-0.0016741071594879031,1.8952087157261296e-18,1.4790850654260956e-18,0.0003348214377183467,-1.6572425278241248e-19,-1.0546088813426249e-19,-1.652117626941476e-19,-7.209240283682775e-20,-1.0701216197552912e-19,0.0011904762359336019,-0.0004761904710903764,-0.0003401360590942204,-7.320925552333435e-34,-1.6572425278241248e-19,0.0001360544265480712,5.219925009845413e-35,8.177372369243322e-35,3.568308094262392e-35,5.296706946267556e-35,0.0009740259847603738,-0.00038961038808338344,0.0,-0.00021645022206939757,-1.0546088813426249e-19,5.219925009845413e-35,8.658008300699294e-05,5.203782625508242e-35,0.0,-4.404571325722362e-20,0.0006944444612599909,8.260588005460409e-19,-0.0006944444612599909,-7.298285806643086e-34,-1.652117626941476e-19,8.177372369243322e-35,5.203782625508242e-35,9.920635056914762e-05,3.557273198441233e-35,5.280327511555927e-35,0.0007575757335871458,3.5236570605778894e-19,-0.00021645022206939757,-0.00016835016140248626,-7.209240283682775e-20,3.568308094262392e-35,0.0,3.557273198441233e-35,4.810004975297488e-05,-1.6940658945086007e-21,0.0004734848625957966,7.318364664277155e-19,6.776263578034403e-21,-0.00035511364694684744,-1.0701216197552912e-19,5.296706946267556e-35,-4.404571325722362e-20,5.280327511555927e-35,-1.6940658945086007e-21,3.9457070670323446e-05,6.0,8.0,11.0,0.059034716337919235,-0.014542749151587486,-0.011544011533260345,-0.008827977813780308,0.0010146104032173753,0.0010822510812431574,0.000811688310932368,0.0006313131307251751,0.0006313131307251751,0.0003642191004473716,-0.014542749151587486,0.011397456750273705,0.0010822510812431574,0.000811688310932368,-0.001521915546618402,-0.00043290044413879514,-0.0003246753185521811,7.509625365511666e-19,2.608861477543245e-19,4.1335207826009857e-19,-0.011544011533260345,0.0010822510812431574,0.006454854737967253,0.0006313131307251751,1.694138066017046e-18,-0.0003092146071139723,-4.404571325722362e-20,-0.0006313131307251751,-0.0001803751802071929,-6.098637220230962e-20,-0.008827977813780308,0.000811688310932368,0.0006313131307251751,0.003465284826233983,1.3785242013701411e-18,-6.202896344877049e-34,-0.00016233765927609056,-6.8020857639319975e-34,-0.00012626263196580112,-0.0002428127481834963,0.0010146104032173753,-0.001521915546618402,1.694138066017046e-18,1.3785242013701411e-18,0.0003043831093236804,-1.3696218768226923e-19,-1.438102996513221e-19,-1.5019251506505156e-19,-6.007700344108121e-20,-8.087288626498692e-20,0.0010822510812431574,-0.00043290044413879514,-0.0003092146071139723,-6.202896344877049e-34,-1.3696218768226923e-19,0.00012368583702482283,6.470981032934644e-35,6.758159238998448e-35,2.703263638202194e-35,3.6390087989233237e-35,0.000811688310932368,-0.0003246753185521811,-4.404571325722362e-20,-0.00016233765927609056,-1.438102996513221e-19,6.470981032934644e-35,6.49350622552447e-05,7.096066799168074e-35,8.470329472543003e-21,0.0,0.0006313131307251751,7.509625365511666e-19,-0.0006313131307251751,-6.8020857639319975e-34,-1.5019251506505156e-19,6.758159238998448e-35,7.096066799168074e-35,9.018759010359645e-05,2.964394427696336e-35,3.9905309713983725e-35,0.0006313131307251751,2.608861477543245e-19,-0.0001803751802071929,-0.00012626263196580112,-6.007700344108121e-20,2.703263638202194e-35,8.470329472543003e-21,2.964394427696336e-35,3.607503458624706e-05,1.1858461261560205e-20,0.0003642191004473716,4.1335207826009857e-19,-6.098637220230962e-20,-0.0002428127481834963,-8.087288626498692e-20,3.6390087989233237e-35,0.0,3.9905309713983725e-35,1.1858461261560205e-20,2.428127481834963e-05,6.0,8.0,12.0,0.05471929535269737,-0.013388087972998619,-0.010626526549458504,-0.007535866927355528,0.0009300595265813172,0.0009920635493472219,0.0006868132040835917,0.0005787037080153823,0.0005341880605556071,0.0002861721732188016,-0.013388087972998619,0.010470562614500523,0.0009920635493472219,0.0006868132040835917,-0.0013950893189758062,-0.00039682540227659047,-0.00027472528745420277,6.883823424048321e-19,2.473336205982557e-19,2.168404344971009e-19,-0.010626526549458504,0.0009920635493472219,0.00592966889962554,0.0005341880605556071,1.1180106984817718e-18,-0.00028344671591185033,-6.098637220230962e-20,-0.0005787037080153823,-0.00015262515807989985,1.3552527156068805e-20,-0.007535866927355528,0.0006868132040835917,0.0005341880605556071,0.002686549676582217,8.344761904593805e-19,-5.809644224894516e-20,-0.00012487512140069157,-4.117576254180523e-34,-9.712509927339852e-05,-0.00017170330102089792,0.0009300595265813172,-0.0013950893189758062,1.1180106984817718e-18,8.344761904593805e-19,0.00027901786961592734,5.0125471372442764e-20,1.2972671931081999e-20,-1.3767647106590584e-19,-5.0834387775620584e-20,-6.263522750646337e-20,0.0009920635493472219,-0.00039682540227659047,-0.00028344671591185033,-5.809644224894516e-20,5.0125471372442764e-20,0.00011337868636474013,2.3238577868930345e-20,-2.473353473570663e-35,-8.651638422052036e-36,-2.256949153578792e-36,0.0006868132040835917,-0.00027472528745420277,-6.098637220230962e-20,-0.00012487512140069157,1.2972671931081999e-20,2.3238577868930345e-20,4.995004928787239e-05,-6.401137124754274e-36,8.470329472543003e-22,2.0328790734103208e-20,0.0005787037080153823,6.883823424048321e-19,-0.0005787037080153823,-4.117576254180523e-34,-1.3767647106590584e-19,-2.473353473570663e-35,-6.401137124754274e-36,8.26719551696442e-05,2.508333614057242e-35,3.0906254740106754e-35,0.0005341880605556071,2.473336205982557e-19,-0.00015262515807989985,-9.712509927339852e-05,-5.0834387775620584e-20,-8.651638422052036e-36,8.470329472543003e-22,2.508333614057242e-35,2.775002758426126e-05,8.470329472543003e-22,0.0002861721732188016,2.168404344971009e-19,1.3552527156068805e-20,-0.00017170330102089792,-6.263522750646337e-20,-2.256949153578792e-36,2.0328790734103208e-20,3.0906254740106754e-35,8.470329472543003e-22,1.5609390175086446e-05,6.0,8.0,13.0,0.05099315196275711,-0.01240351889282465,-0.009844322688877583,-0.006508372724056244,0.0008585164905525744,0.0009157509193755686,0.00058869703207165,0.0005341880605556071,0.0004578754596877843,0.00022893772984389216,-0.01240351889282465,0.009683248586952686,0.0009157509193755686,0.00058869703207165,-0.001287774764932692,-0.00036630037357099354,-0.00023547880118712783,6.354298585043672e-19,2.405573570202213e-19,2.0328790734103208e-19,-0.009844322688877583,0.0009157509193755686,0.005483603570610285,0.0004578754596877843,1.3961899875197065e-18,-0.00026164311566390097,2.371692252312041e-20,-0.0005341880605556071,-0.00013082155783195049,3.049318610115481e-20,-0.006508372724056244,0.00058869703207165,0.0004578754596877843,0.002125354716554284,9.305370368866816e-19,-3.542934463248605e-34,-9.811617201194167e-05,-4.591571392275571e-34,-7.631257903994992e-05,-0.00012487512140069157,0.0008585164905525744,-0.001287774764932692,1.3961899875197065e-18,9.305370368866816e-19,0.0002575549588073045,-9.806168646914177e-20,-7.354626323626919e-20,-1.2708597428581286e-19,-4.3572333302296005e-20,-4.9514013647529884e-20,0.0009157509193755686,-0.00036630037357099354,-0.00026164311566390097,-3.542934463248605e-34,-9.806168646914177e-20,0.00010465725063113496,2.8002069098621224e-35,4.838682000954383e-35,1.658976669642307e-35,1.8852007870467966e-35,0.00058869703207165,-0.00023547880118712783,2.371692252312041e-20,-9.811617201194167e-05,-7.354626323626919e-20,2.8002069098621224e-35,3.924646807718091e-05,3.6290113572228243e-35,-3.3881317890172014e-21,7.623296525288703e-21,0.0005341880605556071,6.354298585043672e-19,-0.0005341880605556071,-4.591571392275571e-34,-1.2708597428581286e-19,4.838682000954383e-35,3.6290113572228243e-35,7.631257903994992e-05,2.1500002611194876e-35,2.443182069251657e-35,0.0004578754596877843,2.405573570202213e-19,-0.00013082155783195049,-7.631257903994992e-05,-4.3572333302296005e-20,1.658976669642307e-35,-3.3881317890172014e-21,2.1500002611194876e-35,2.1803592971991748e-05,-5.082197683525802e-21,0.00022893772984389216,2.0328790734103208e-19,3.049318610115481e-20,-0.00012487512140069157,-4.9514013647529884e-20,1.8852007870467966e-35,7.623296525288703e-21,2.443182069251657e-35,-5.082197683525802e-21,1.0406260116724297e-05,6.0,8.0,14.0,0.0477430559694767,-0.011553996242582798,-0.0091695012524724,-0.005677791777998209,0.0007971939048729837,0.0008503401186317205,0.0005102040595375001,0.0004960317746736109,0.00039682540227659047,0.00018601190822664648,-0.011553996242582798,0.009006164968013763,0.0008503401186317205,0.0005102040595375001,-0.001195790828205645,-0.0003401360590942204,-0.0002040816325461492,2.2768245622195593e-18,9.622294280808852e-19,3.7015339795012925e-19,-0.0091695012524724,0.0008503401186317205,0.005100016016513109,0.00039682540227659047,4.472333961502706e-18,-0.00024295432376675308,9.16489648929153e-19,-0.0004960317746736109,-0.00011337868636474013,7.369186641112413e-20,-0.005677791777998209,0.0005102040595375001,0.00039682540227659047,0.0017105600563809276,1.531435568635775e-18,5.149960319306146e-19,-7.849293615436181e-05,-2.710505431213761e-20,-6.105006468715146e-05,-9.300595411332324e-05,0.0007971939048729837,-0.001195790828205645,4.472333961502706e-18,1.531435568635775e-18,0.00023915816564112902,-5.050186310807883e-19,-1.96022263033096e-19,-3.0785573768176994e-19,-1.2745795999221737e-19,-3.9810548520952116e-20,0.0008503401186317205,-0.0003401360590942204,-0.00024295432376675308,5.149960319306146e-19,-5.050186310807883e-19,9.718172805150971e-05,-7.623296525288703e-20,-3.218725199566341e-20,-1.6093625997831706e-20,-1.76691417240424e-20,0.0005102040595375001,-0.0002040816325461492,9.16489648929153e-19,-7.849293615436181e-05,-1.96022263033096e-19,-7.623296525288703e-20,3.139717591693625e-05,-6.522153693858113e-20,-2.964615315390051e-20,-1.2872339931099432e-20,0.0004960317746736109,2.2768245622195593e-18,-0.0004960317746736109,-2.710505431213761e-20,-3.0785573768176994e-19,-3.218725199566341e-20,-6.522153693858113e-20,7.086167897796258e-05,5.929230630780102e-20,-1.3588148025093654e-22,0.00039682540227659047,9.622294280808852e-19,-0.00011337868636474013,-6.105006468715146e-05,-1.2745795999221737e-19,-1.6093625997831706e-20,-2.964615315390051e-20,5.929230630780102e-20,1.744287510518916e-05,-3.609774591812715e-21,0.00018601190822664648,3.7015339795012925e-19,7.369186641112413e-20,-9.300595411332324e-05,-3.9810548520952116e-20,-1.76691417240424e-20,-1.2872339931099432e-20,-1.3588148025093654e-22,-3.609774591812715e-21,7.15430405762163e-06,6.0,8.0,15.0,0.04488309100270271,-0.010813492350280285,-0.00858134962618351,-0.004996790550649166,0.0007440476329065859,0.0007936508045531809,0.00044642857392318547,0.00046296295477077365,0.00034722223062999547,0.00015318627993110567,-0.010813492350280285,0.008417658507823944,0.0007936508045531809,0.00044642857392318547,-0.0011160714784637094,-0.0003174603043589741,-0.00017857142665889114,1.463672932855431e-18,4.87890977618477e-19,4.1081097941833566e-19,-0.00858134962618351,0.0007936508045531809,0.0047666290774941444,0.00034722223062999547,3.432177502274425e-18,-0.00022675737272948027,1.0842021724855044e-19,-0.00046296295477077365,-9.920635056914762e-05,1.1858461261560205e-20,-0.004996790550649166,0.00044642857392318547,0.00034722223062999547,0.001397273619659245,1.2874900798265365e-18,2.168404344971009e-19,-6.377550744218752e-05,2.710505431213761e-20,-4.960317528457381e-05,-7.070136052789167e-05,0.0007440476329065859,-0.0011160714784637094,3.432177502274425e-18,1.2874900798265365e-18,0.00022321428696159273,-2.9472608076447472e-19,-2.8412830091758215e-20,-2.538975055540171e-19,-9.99721182549698e-20,-5.971582278142817e-20,0.0007936508045531809,-0.0003174603043589741,-0.00022675737272948027,2.168404344971009e-19,-2.9472608076447472e-19,9.070294618140906e-05,-8.470329472543003e-21,5.082197683525802e-21,-4.235164736271502e-21,-1.2863038188176045e-20,0.00044642857392318547,-0.00017857142665889114,1.0842021724855044e-19,-6.377550744218752e-05,-2.8412830091758215e-20,-8.470329472543003e-21,2.551020406826865e-05,-1.6940658945086007e-20,5.929230630780102e-21,-6.5706001436834376e-21,0.00046296295477077365,1.463672932855431e-18,-0.00046296295477077365,2.710505431213761e-20,-2.538975055540171e-19,5.082197683525802e-21,-1.6940658945086007e-20,6.613756704609841e-05,-5.929230630780102e-21,1.925338808312465e-21,0.00034722223062999547,4.87890977618477e-19,-9.920635056914762e-05,-4.960317528457381e-05,-9.99721182549698e-20,-4.235164736271502e-21,5.929230630780102e-21,-5.929230630780102e-21,1.4172335795592517e-05,6.125416324184282e-22,0.00015318627993110567,4.1081097941833566e-19,1.1858461261560205e-20,-7.070136052789167e-05,-5.971582278142817e-20,-1.2863038188176045e-20,-6.5706001436834376e-21,1.925338808312465e-21,6.125416324184282e-22,5.050097115599783e-06,6.0,8.0,16.0,0.04234688729047775,-0.010162267833948135,-0.00806416291743517,-0.004431460052728653,0.0006975446594879031,0.0007440476329065859,0.00039390756865032017,0.0004340277810115367,0.00030637255986221135,0.0001276552357012406,-0.010162267833948135,0.007901403121650219,0.0007440476329065859,0.00039390756865032017,-0.0010463169310241938,-0.00029761905898340046,-0.00015756303037051111,-2.087089182034596e-18,-7.724940478959219e-19,-1.4653669987499396e-19,-0.00806416291743517,0.0007440476329065859,0.004474185407161713,0.00030637255986221135,-3.215337067777324e-18,-0.00021258502965793014,-5.573476792933296e-19,-0.0004340277810115367,-8.753501606406644e-05,-3.9302328752599536e-19,-0.004431460052728653,0.00039390756865032017,0.00030637255986221135,0.001156191690824926,-9.351243737687476e-19,-4.0657581468206416e-19,-5.25210089108441e-05,-7.860465750519907e-19,-4.0849674405762926e-05,-5.470938413054682e-05,0.0006975446594879031,-0.0010463169310241938,-3.215337067777324e-18,-9.351243737687476e-19,0.0002092633949359879,1.4042104341365972e-19,9.183640918959864e-20,2.9118990949520467e-19,1.0068456633162231e-19,2.2658131339052534e-20,0.0007440476329065859,-0.00029761905898340046,-0.00021258502965793014,-4.0657581468206416e-19,1.4042104341365972e-19,8.50340147735551e-05,1.9481757786848908e-20,7.792703114739563e-20,2.879912020664621e-20,1.6444033922475947e-20,0.00039390756865032017,-0.00015756303037051111,-5.573476792933296e-19,-5.25210089108441e-05,9.183640918959864e-20,1.9481757786848908e-20,2.100840356433764e-05,4.912791094074942e-20,2.159934015498466e-20,-1.0054980132305509e-21,0.0004340277810115367,-2.087089182034596e-18,-0.0004340277810115367,-7.860465750519907e-19,2.9118990949520467e-19,7.792703114739563e-20,4.912791094074942e-20,6.200397183420137e-05,7.623296525288703e-21,4.0148280548943835e-20,0.00030637255986221135,-7.724940478959219e-19,-8.753501606406644e-05,-4.0849674405762926e-05,1.0068456633162231e-19,2.879912020664621e-20,2.159934015498466e-20,7.623296525288703e-21,1.1671335414575879e-05,8.014754903418022e-21,0.0001276552357012406,-1.4653669987499396e-19,-3.9302328752599536e-19,-5.470938413054682e-05,2.2658131339052534e-20,1.6444033922475947e-20,-1.0054980132305509e-21,4.0148280548943835e-20,8.014754903418022e-21,3.647292260211543e-06,6.0,9.0,3.0,0.14710597693920135,-0.04246031865477562,-0.030663780868053436,-0.06984127312898636,0.003306878264993429,0.0031746032182127237,0.007936508394777775,0.001683501643128693,0.0055555556900799274,0.009259259328246117,-0.04246031865477562,0.035171955823898315,0.0031746032182127237,0.007936508394777775,-0.004960317630320787,-0.0012698412174358964,-0.0031746032182127237,2.0057740190981832e-18,3.0899761915836876e-18,2.1250362580715887e-17,-0.030663780868053436,0.0031746032182127237,0.015842953696846962,0.0055555556900799274,5.073423365178146e-18,-0.0007936508045531809,2.168404344971009e-19,-0.0014430014416575432,-0.0013888889225199819,2.2551405187698492e-17,-0.06984127312898636,0.007936508394777775,0.0055555556900799274,0.16243386268615723,1.4506466580050684e-17,1.0566668808572627e-19,-0.007936508394777775,7.88936744112251e-18,-0.0055555556900799274,-0.0555555559694767,0.003306878264993429,-0.004960317630320787,5.073423365178146e-18,1.4506466580050684e-17,0.0009920635493472219,-5.728739627885265e-19,-1.432184855272528e-18,-3.89070113830422e-19,-5.2867765096103e-19,-4.405647074108987e-18,0.0031746032182127237,-0.0012698412174358964,-0.0007936508045531809,1.0566668808572627e-19,-5.728739627885265e-19,0.0003174603043589741,-1.087154709469533e-22,-2.077625182464178e-20,1.1443546981627466e-20,-7.439175168222349e-20,0.007936508394777775,-0.0031746032182127237,2.168404344971009e-19,-0.007936508394777775,-1.432184855272528e-18,-1.087154709469533e-22,0.0031746032182127237,4.7243441640163037e-20,-6.505213034913027e-19,0.0,0.001683501643128693,2.0057740190981832e-18,-0.0014430014416575432,7.88936744112251e-18,-3.89070113830422e-19,-2.077625182464178e-20,4.7243441640163037e-20,0.0001803751802071929,-4.073097823793401e-19,-3.186234372285871e-18,0.0055555556900799274,3.0899761915836876e-18,-0.0013888889225199819,-0.0055555556900799274,-5.2867765096103e-19,1.1443546981627466e-20,-6.505213034913027e-19,-4.073097823793401e-19,0.0013888889225199819,2.6020852139652106e-18,0.009259259328246117,2.1250362580715887e-17,2.2551405187698492e-17,-0.0555555559694767,-4.405647074108987e-18,-7.439175168222349e-20,0.0,-3.186234372285871e-18,2.6020852139652106e-18,0.02777777798473835,6.0,9.0,4.0,0.12034270912408829,-0.03303571417927742,-0.023831168189644814,-0.044682539999485016,0.0024801588151603937,0.0023809524718672037,0.004761904943734407,0.0012626262614503503,0.0033333334140479565,0.004629629664123058,-0.03303571417927742,0.026855159550905228,0.0023809524718672037,0.004761904943734407,-0.0037202381063252687,-0.0009523809421807528,-0.0019047618843615055,1.4907779871675686e-18,1.5686118570984754e-18,7.709882483088304e-18,-0.023831168189644814,0.0023809524718672037,0.012090547941625118,0.0033333334140479565,3.6158347593183486e-18,-0.0005952381179668009,-4.1759774767587625e-33,-0.0010822510812431574,-0.0008333333535119891,8.416156587046293e-18,-0.044682539999485016,0.004761904943734407,0.0033333334140479565,0.06219576671719551,8.043032783516486e-18,-1.742099884938643e-20,-0.0031746032182127237,4.4479772147757756e-18,-0.002222222276031971,-0.013888888992369175,0.0024801588151603937,-0.0037202381063252687,3.6158347593183486e-18,8.043032783516486e-18,0.0007440476329065859,-3.2224159760619763e-19,-8.593109441827898e-19,-2.9180259183516504e-19,-3.172065750669815e-19,-1.5419764345791148e-18,0.0023809524718672037,-0.0009523809421807528,-0.0005952381179668009,-1.742099884938643e-20,-3.2224159760619763e-19,0.0002380952355451882,3.7216130484046987e-34,-1.5046877400259867e-20,4.355249712346607e-21,7.989042562207245e-34,0.004761904943734407,-0.0019047618843615055,-4.1759774767587625e-33,-0.0031746032182127237,-8.593109441827898e-19,3.7216130484046987e-34,0.0012698412174358964,3.3700686058218315e-34,3.6634628122374587e-34,1.7808500642667645e-33,0.0012626262614503503,1.4907779871675686e-18,-0.0010822510812431574,4.4479772147757756e-18,-2.9180259183516504e-19,-1.5046877400259867e-20,3.3700686058218315e-34,0.00013528138515539467,-2.7091625551880695e-19,-1.1214373975668493e-18,0.0033333334140479565,1.5686118570984754e-18,-0.0008333333535119891,-0.002222222276031971,-3.172065750669815e-19,4.355249712346607e-21,3.6634628122374587e-34,-2.7091625551880695e-19,0.0005555555690079927,3.7022854213890086e-19,0.004629629664123058,7.709882483088304e-18,8.416156587046293e-18,-0.013888888992369175,-1.5419764345791148e-18,7.989042562207245e-34,1.7808500642667645e-33,-1.1214373975668493e-18,3.7022854213890086e-19,0.004629629664123058,6.0,9.0,5.0,0.10196729004383087,-0.027063492685556412,-0.01950937882065773,-0.031111111864447594,0.0019841270986944437,0.0019047618843615055,0.0031746032182127237,0.001010101055726409,0.002222222276031971,0.0026455025654286146,-0.027063492685556412,0.021738095209002495,0.0019047618843615055,0.0031746032182127237,-0.0029761905316263437,-0.0007619047537446022,-0.0012698412174358964,-2.6359665318553827e-18,-2.1141942363467336e-18,-7.552537841329692e-18,-0.01950937882065773,0.0019047618843615055,0.009783550165593624,0.002222222276031971,-5.612130529367593e-18,-0.0004761904710903764,-6.481527444272302e-33,-0.0008658008882775903,-0.0005555555690079927,-2.523383114583853e-18,-0.031111111864447594,0.0031746032182127237,0.002222222276031971,0.03142857179045677,-9.4524203343119e-18,-3.46582214311183e-21,-0.0015873016091063619,-1.5178830414797062e-18,-0.0011111111380159855,-0.005291005130857229,0.0019841270986944437,-0.0029761905316263437,-5.612130529367593e-18,-9.4524203343119e-18,0.0005952381179668009,4.124692439019572e-19,6.874487656859895e-19,4.668841572760217e-19,4.2294210008930866e-19,1.5105074855478771e-18,0.0019047618843615055,-0.0007619047537446022,-0.0004761904710903764,-3.46582214311183e-21,4.124692439019572e-19,0.00019047618843615055,4.763664683590915e-34,7.453889935837843e-20,3.3881317890172014e-21,1.228926722045403e-33,0.0031746032182127237,-0.0012698412174358964,-6.481527444272302e-33,-0.0015873016091063619,6.874487656859895e-19,4.763664683590915e-34,0.0006349206087179482,5.392109677479434e-34,4.884617082983278e-34,1.7445061666622395e-33,0.001010101055726409,-2.6359665318553827e-18,-0.0008658008882775903,-1.5178830414797062e-18,4.668841572760217e-19,7.453889935837843e-20,5.392109677479434e-34,0.00010822511103469878,1.0164395367051604e-19,2.7463774109468302e-19,0.002222222276031971,-2.1141942363467336e-18,-0.0005555555690079927,-0.0011111111380159855,4.2294210008930866e-19,3.3881317890172014e-21,4.884617082983278e-34,1.0164395367051604e-19,0.00027777778450399637,1.631406446119826e-19,0.0026455025654286146,-7.552537841329692e-18,-2.523383114583853e-18,-0.005291005130857229,1.5105074855478771e-18,1.228926722045403e-33,1.7445061666622395e-33,2.7463774109468302e-19,1.631406446119826e-19,0.0013227512827143073,6.0,9.0,6.0,0.08851897716522217,-0.02293083816766739,-0.016522366553544998,-0.02293083816766739,0.0016534391324967146,0.0015873016091063619,0.0022675737272948027,0.0008417508215643466,0.0015873016091063619,0.0016534391324967146,-0.02293083816766739,0.01826625131070614,0.0015873016091063619,0.0022675737272948027,-0.0024801588151603937,-0.0006349206087179482,-0.0009070294909179211,1.0706496453294356e-18,7.589415207398531e-19,2.1634873766148405e-18,-0.016522366553544998,0.0015873016091063619,0.008219095878303051,0.0015873016091063619,2.649999857742498e-18,-0.00039682540227659047,-1.748869454755698e-33,-0.0007215007208287716,-0.00039682540227659047,2.2019887050212743e-18,-0.02293083816766739,0.0022675737272948027,0.0015873016091063619,0.01826625131070614,3.586081899865429e-18,1.0107058987463321e-20,-0.0009070294909179211,2.0057740190981832e-18,-0.0006349206087179482,-0.0024801588151603937,0.0016534391324967146,-0.0024801588151603937,2.649999857742498e-18,3.586081899865429e-18,0.0004960317746736109,-2.8643698139426326e-19,-3.273565464721017e-19,-1.94535056915211e-19,-1.5105075372466654e-19,-4.326974546434528e-19,0.0015873016091063619,-0.0006349206087179482,-0.00039682540227659047,1.0107058987463321e-20,-2.8643698139426326e-19,0.00015873015217948705,1.8903431156541633e-34,-1.3552527156068805e-20,0.0,2.7513285575785485e-34,0.0022675737272948027,-0.0009070294909179211,-1.748869454755698e-33,-0.0009070294909179211,-3.273565464721017e-19,1.8903431156541633e-34,0.00036281178472563624,1.2838356702934949e-34,9.96860650264941e-35,2.8555903147216775e-34,0.0008417508215643466,1.0706496453294356e-18,-0.0007215007208287716,2.0057740190981832e-18,-1.94535056915211e-19,-1.3552527156068805e-20,1.2838356702934949e-34,9.018759010359645e-05,-1.0842021724855044e-19,-3.146890767220705e-19,0.0015873016091063619,7.589415207398531e-19,-0.00039682540227659047,-0.0006349206087179482,-1.5105075372466654e-19,0.0,9.96860650264941e-35,-1.0842021724855044e-19,0.00015873015217948705,1.2620956350211586e-19,0.0016534391324967146,2.1634873766148405e-18,2.2019887050212743e-18,-0.0024801588151603937,-4.326974546434528e-19,2.7513285575785485e-34,2.8555903147216775e-34,-3.146890767220705e-19,1.2620956350211586e-19,0.0004960317746736109,6.0,9.0,7.0,0.07823186367750168,-0.019897958263754845,-0.014332096092402935,-0.017611488699913025,0.0014172336086630821,0.0013605442363768816,0.001700680237263441,0.0007215007208287716,0.0011904762359336019,0.001102292793802917,-0.019897958263754845,0.015753967687487602,0.0013605442363768816,0.001700680237263441,-0.002125850412994623,-0.0005442177061922848,-0.0006802721181884408,8.74138001566438e-19,5.692061405548898e-19,1.36365263132978e-18,-0.014332096092402935,0.0013605442363768816,0.007087456062436104,0.0011904762359336019,2.1999275777299453e-18,-0.0003401360590942204,0.0,-0.0006184292142279446,-0.00029761905898340046,1.3745043103882866e-18,-0.017611488699913025,0.001700680237263441,0.0011904762359336019,0.01160241849720478,2.0895353619010685e-18,5.8177753133806844e-21,-0.0005668934318237007,1.395910297075087e-18,-0.00039682540227659047,-0.0013227512827143073,0.0014172336086630821,-0.002125850412994623,2.1999275777299453e-18,2.0895353619010685e-18,0.00042517005931586027,-2.104434978534074e-19,0.0,-1.667443344987523e-19,-1.1328805883115137e-19,-2.7273052109607717e-19,0.0013605442363768816,-0.0005442177061922848,-0.0003401360590942204,5.8177753133806844e-21,-2.104434978534074e-19,0.0001360544265480712,0.0,-1.0164395367051604e-20,0.0,1.6304168634865034e-34,0.001700680237263441,-0.0006802721181884408,0.0,-0.0005668934318237007,0.0,0.0,0.00022675737272948027,0.0,0.0,-0.0,0.0007215007208287716,8.74138001566438e-19,-0.0006184292142279446,1.395910297075087e-18,-1.667443344987523e-19,-1.0164395367051604e-20,0.0,7.730365177849308e-05,-5.082197683525802e-20,-1.9834947106302858e-19,0.0011904762359336019,5.692061405548898e-19,-0.00029761905898340046,-0.00039682540227659047,-1.1328805883115137e-19,0.0,0.0,-5.082197683525802e-20,9.920635056914762e-05,7.07638086013998e-20,0.001102292793802917,1.36365263132978e-18,1.3745043103882866e-18,-0.0013227512827143073,-2.7273052109607717e-19,1.6304168634865034e-34,-0.0,-1.9834947106302858e-19,7.07638086013998e-20,0.00022045854711905122,6.0,9.0,8.0,0.0701008066534996,-0.017576057463884354,-0.012656325474381447,-0.013955026865005493,0.0012400794075801969,0.0011904762359336019,0.0013227512827143073,0.0006313131307251751,0.0009259259095415473,0.0007716049440205097,-0.017576057463884354,0.013850859366357327,0.0011904762359336019,0.0013227512827143073,-0.0018601190531626344,-0.0004761904710903764,-0.0005291005363687873,7.894347068410079e-19,3.7269449679189215e-19,8.131516293641283e-19,-0.012656325474381447,0.0011904762359336019,0.006230459548532963,0.0009259259095415473,1.878407643509412e-18,-0.00029761905898340046,-6.098637220230962e-20,-0.0005411255406215787,-0.00023148147738538682,9.215718466126788e-19,-0.013955026865005493,0.0013227512827143073,0.0009259259095415473,0.007845175452530384,2.1489267230872227e-18,-8.460970376276363e-21,-0.0003779289545491338,1.17987832822918e-18,-0.00026455026818439364,-0.0007716049440205097,0.0012400794075801969,-0.0018601190531626344,1.878407643509412e-18,2.1489267230872227e-18,0.00037202381645329297,-1.6112079880309882e-19,-2.045978383138893e-19,-1.4590129591758252e-19,-8.811293967272215e-20,-1.8356861947140974e-19,0.0011904762359336019,-0.0004761904710903764,-0.00029761905898340046,-8.460970376276363e-21,-1.6112079880309882e-19,0.0001190476177725941,-1.5922554682154534e-23,-1.6940658945086007e-20,2.8531574231486386e-22,1.560253653210044e-22,0.0013227512827143073,-0.0005291005363687873,-6.098637220230962e-20,-0.0003779289545491338,-2.045978383138893e-19,-1.5922554682154534e-23,0.0001511715818196535,0.0,1.5246593050577406e-20,2.710505431213761e-20,0.0006313131307251751,7.894347068410079e-19,-0.0005411255406215787,1.17987832822918e-18,-1.4590129591758252e-19,-1.6940658945086007e-20,0.0,6.764069257769734e-05,-6.098637220230962e-20,-1.3552527156068805e-19,0.0009259259095415473,3.7269449679189215e-19,-0.00023148147738538682,-0.00026455026818439364,-8.811293967272215e-20,2.8531574231486386e-22,1.5246593050577406e-20,-6.098637220230962e-20,6.613756704609841e-05,4.0657581468206416e-20,0.0007716049440205097,8.131516293641283e-19,9.215718466126788e-19,-0.0007716049440205097,-1.8356861947140974e-19,1.560253653210044e-22,2.710505431213761e-20,-1.3552527156068805e-19,4.0657581468206416e-20,0.00011022927355952561,6.0,9.0,9.0,0.06350862979888916,-0.015740741044282913,-0.011332371272146702,-0.011332371272146702,0.001102292793802917,0.0010582010727375746,0.0010582010727375746,0.0005611672531813383,0.00074074073927477,0.0005611672531813383,-0.015740741044282913,0.01235890667885542,0.0010582010727375746,0.0010582010727375746,-0.0016534391324967146,-0.0004232804349157959,-0.0004232804349157959,-1.1350241493207625e-18,-6.979551485375435e-19,-1.1248597539537109e-18,-0.011332371272146702,0.0010582010727375746,0.0055587622337043285,0.00074074073927477,-3.2754900555124865e-18,-0.00026455026818439364,6.776263578034403e-21,-0.0004810004902537912,-0.0001851851848186925,-4.472333961502706e-19,-0.011332371272146702,0.0010582010727375746,0.00074074073927477,0.0055587622337043285,-3.2754900555124865e-18,7.380905948622957e-21,-0.00026455026818439364,-5.363135619906601e-19,-0.0001851851848186925,-0.0004810004902537912,0.001102292793802917,-0.0016534391324967146,-3.2754900555124865e-18,-3.2754900555124865e-18,0.0003306878206785768,2.546106386396144e-19,2.546106386396144e-19,2.593800845034127e-19,1.409806957215372e-19,2.593800845034127e-19,0.0010582010727375746,-0.0004232804349157959,-0.00026455026818439364,7.380905948622957e-21,2.546106386396144e-19,0.00010582010872894898,-1.3951073266415805e-22,-4.404571325722362e-20,-2.4588827232352595e-22,9.126451719359479e-24,0.0010582010727375746,-0.0004232804349157959,6.776263578034403e-21,-0.00026455026818439364,2.546106386396144e-19,-1.3951073266415805e-22,0.00010582010872894898,-8.470329472543003e-22,-1.6940658945086007e-21,-4.743384504624082e-20,0.0005611672531813383,-1.1350241493207625e-18,-0.0004810004902537912,-5.363135619906601e-19,2.593800845034127e-19,-4.404571325722362e-20,-8.470329472543003e-22,6.01250612817239e-05,4.2351647362715017e-20,4.743384504624082e-20,0.00074074073927477,-6.979551485375435e-19,-0.0001851851848186925,-0.0001851851848186925,1.409806957215372e-19,-2.4588827232352595e-22,-1.6940658945086007e-21,4.2351647362715017e-20,4.6296296204673126e-05,1.6940658945086007e-20,0.0005611672531813383,-1.1248597539537109e-18,-4.472333961502706e-19,-0.0004810004902537912,2.593800845034127e-19,9.126451719359479e-24,-4.743384504624082e-20,4.743384504624082e-20,1.6940658945086007e-20,6.01250612817239e-05,6.0,9.0,10.0,0.058054354041814804,-0.01425324659794569,-0.010259740054607391,-0.009386724792420864,0.0009920635493472219,0.0009523809421807528,0.0008658008882775903,0.0005050505278632045,0.000606060610152781,0.0004208754107821733,-0.01425324659794569,0.011157647706568241,0.0009523809421807528,0.0008658008882775903,-0.0014880952658131719,-0.0003809523768723011,-0.00034632033202797174,-1.3247595295057257e-18,-5.590417451878382e-19,-7.724940478959219e-19,-0.010259740054607391,0.0009523809421807528,0.005018037743866444,0.000606060610152781,-2.9021884081509805e-18,-0.0002380952355451882,3.3881317890172014e-21,-0.00043290044413879514,-0.00015151515253819525,-3.2526065174565133e-19,-0.009386724792420864,0.0008658008882775903,0.000606060610152781,0.004085096996277571,-2.590221582824822e-18,6.888429753772733e-21,-0.00019240019901189953,-4.2103307063311284e-19,-0.000134680129121989,-0.00031565656536258757,0.0009920635493472219,-0.0014880952658131719,-2.9021884081509805e-18,-2.590221582824822e-18,0.00029761905898340046,2.062346219509786e-19,1.6665424936016644e-19,2.3344207863801086e-19,1.1534784195398498e-19,1.9024385069243904e-19,0.0009523809421807528,-0.0003809523768723011,-0.0002380952355451882,6.888429753772733e-21,2.062346219509786e-19,9.523809421807528e-05,-3.2443175739904603e-22,4.0657581468206416e-20,-2.2710222513062242e-22,-1.0812280290430439e-22,0.0008658008882775903,-0.00034632033202797174,3.3881317890172014e-21,-0.00019240019901189953,1.6665424936016644e-19,-3.2443175739904603e-22,7.696007378399372e-05,0.0,-8.470329472543003e-22,-4.2351647362715017e-20,0.0005050505278632045,-1.3247595295057257e-18,-0.00043290044413879514,-4.2103307063311284e-19,2.3344207863801086e-19,4.0657581468206416e-20,0.0,5.411255551734939e-05,2.879912020664621e-20,3.3881317890172014e-20,0.000606060610152781,-5.590417451878382e-19,-0.00015151515253819525,-0.000134680129121989,1.1534784195398498e-19,-2.2710222513062242e-22,-8.470329472543003e-22,2.879912020664621e-20,3.367003228049725e-05,8.470329472543003e-21,0.0004208754107821733,-7.724940478959219e-19,-3.2526065174565133e-19,-0.00031565656536258757,1.9024385069243904e-19,-1.0812280290430439e-22,-4.2351647362715017e-20,3.3881317890172014e-20,8.470329472543003e-21,3.5072953323833644e-05,6.0,9.0,11.0,0.05346572771668434,-0.01302308775484562,-0.009372950531542301,-0.007903208024799824,0.0009018759010359645,0.0008658008882775903,0.0007215007208287716,0.00045913681969977915,0.0005050505278632045,0.00032375031150877476,-0.01302308775484562,0.010169552639126778,0.0008658008882775903,0.0007215007208287716,-0.0013528139097616076,-0.00034632033202797174,-0.00028860027668997645,5.963111948670274e-19,2.303929616531697e-19,3.7947076036992655e-19,-0.009372950531542301,0.0008658008882775903,0.004573330748826265,0.0005050505278632045,1.0891883138203975e-18,-0.00021645022206939757,-1.0164395367051604e-20,-0.00039354583714157343,-0.00012626263196580112,3.9979955110402976e-19,-0.007903208024799824,0.0007215007208287716,0.0005050505278632045,0.0030914763920009136,1.195186236042663e-18,-1.932105896971166e-21,-0.00014430013834498823,6.615018676290027e-19,-0.00010101010411744937,-0.00021583355555776507,0.0009018759010359645,-0.0013528139097616076,1.0891883138203975e-18,1.195186236042663e-18,0.00027056277031078935,2.3327158772895015e-35,-1.1362788789124288e-19,-1.0611003104466055e-19,-4.8061604045334676e-20,-7.188701001332171e-20,0.0008658008882775903,-0.00034632033202797174,-0.00021645022206939757,-1.932105896971166e-21,2.3327158772895015e-35,8.658008300699294e-05,3.019427087646137e-22,-1.0164395367051604e-20,-7.839038295103478e-22,-7.056220379960821e-24,0.0007215007208287716,-0.00028860027668997645,-1.0164395367051604e-20,-0.00014430013834498823,-1.1362788789124288e-19,3.019427087646137e-22,5.77200589759741e-05,4.235164736271502e-22,1.6940658945086007e-21,-5.082197683525802e-21,0.00045913681969977915,5.963111948670274e-19,-0.00039354583714157343,6.615018676290027e-19,-1.0611003104466055e-19,-1.0164395367051604e-20,4.235164736271502e-22,4.919322964269668e-05,-3.5575383784680614e-20,-5.209252625613947e-20,0.0005050505278632045,2.303929616531697e-19,-0.00012626263196580112,-0.00010101010411744937,-4.8061604045334676e-20,-7.839038295103478e-22,1.6940658945086007e-21,-3.5575383784680614e-20,2.5252526029362343e-05,3.3881317890172014e-21,0.00032375031150877476,3.7947076036992655e-19,3.9979955110402976e-19,-0.00021583355555776507,-7.188701001332171e-20,-7.056220379960821e-24,-5.082197683525802e-21,-5.209252625613947e-20,3.3881317890172014e-21,2.1583355191978626e-05,6.0,9.0,12.0,0.04955121874809265,-0.011988705955445766,-0.008627483621239662,-0.0067460318095982075,0.0008267195662483573,0.0007936508045531809,0.0006105006323195994,0.0004208754107821733,0.0004273504309821874,0.0002543752489145845,-0.011988705955445766,0.009342440403997898,0.0007936508045531809,0.0006105006323195994,-0.0012400794075801969,-0.0003174603043589741,-0.00024420025874860585,4.86337635825679e-19,2.0667603913004928e-19,3.049318610115481e-19,-0.008627483621239662,0.0007936508045531809,0.004201123025268316,0.0004273504309821874,1.3598577334745398e-18,-0.00019841270113829523,0.0,-0.0003607503604143858,-0.00010683760774554685,3.2526065174565133e-19,-0.0067460318095982075,0.0006105006323195994,0.0004273504309821874,0.0023966773878782988,9.754090001782691e-19,-5.63256668966723e-34,-0.00011100011033704504,5.473797910205476e-19,-7.770007505314425e-05,-0.00015262515807989985,0.0008267195662483573,-0.0012400794075801969,1.3598577334745398e-18,9.754090001782691e-19,0.00024801588733680546,-1.4321849069713163e-19,-8.012223278379212e-20,-9.72675284576055e-20,-4.066751086673132e-20,-5.567575634744555e-20,0.0007936508045531809,-0.0003174603043589741,-0.00019841270113829523,-5.63256668966723e-34,-1.4321849069713163e-19,7.936507608974352e-05,4.626713909398794e-35,5.616781201027003e-35,2.3483736858914762e-35,3.2150353076418316e-35,0.0006105006323195994,-0.00024420025874860585,0.0,-0.00011100011033704504,-8.012223278379212e-20,4.626713909398794e-35,4.4400043407222256e-05,3.912045199536573e-35,4.235164736271502e-22,-8.470329472543003e-22,0.0004208754107821733,4.86337635825679e-19,-0.0003607503604143858,5.473797910205476e-19,-9.72675284576055e-20,5.616781201027003e-35,3.912045199536573e-35,4.5093795051798224e-05,-2.5493438291420087e-20,-4.049146033675104e-20,0.0004273504309821874,2.0667603913004928e-19,-0.00010683760774554685,-7.770007505314425e-05,-4.066751086673132e-20,2.3483736858914762e-35,4.235164736271502e-22,-2.5493438291420087e-20,1.942501876328606e-05,8.470329472543003e-22,0.0002543752489145845,3.049318610115481e-19,3.2526065174565133e-19,-0.00015262515807989985,-5.567575634744555e-20,3.2150353076418316e-35,-8.470329472543003e-22,-4.049146033675104e-20,8.470329472543003e-22,1.387501379213063e-05,6.0,9.0,13.0,0.04617208242416382,-0.01110674999654293,-0.00799200776964426,-0.005825920030474663,0.000763125775847584,0.0007326007471419871,0.0005232862313278019,0.0003885003970935941,0.00036630037357099354,0.0002035002107731998,-0.01110674999654293,0.008639891631901264,0.0007326007471419871,0.0005232862313278019,-0.0011446886928752065,-0.00029304029885679483,-0.00020931450126226991,-8.978540969089458e-19,-3.4558944247975454e-19,-3.6591823321385775e-19,-0.00799200776964426,0.0007326007471419871,0.0038850039709359407,0.00036630037357099354,-2.159941873714285e-18,-0.00018315018678549677,6.776263578034403e-21,-0.0003330003237351775,-9.157509339274839e-05,-1.2536087619363645e-19,-0.005825920030474663,0.0005232862313278019,0.00036630037357099354,0.0018959876615554094,-1.6257150299151549e-18,-8.665665375735208e-34,-8.721437188796699e-05,-2.66013349233052e-19,-6.105006468715146e-05,-0.00011100011033704504,0.000763125775847584,-0.0011446886928752065,-2.159941873714285e-18,-1.6257150299151549e-18,0.00022893772984389216,1.220323272581172e-19,1.1622125420796148e-19,1.7957082972154682e-19,6.97157319912039e-20,8.802491602331914e-20,0.0007326007471419871,-0.00029304029885679483,-0.00018315018678549677,-8.665665375735208e-34,1.220323272581172e-19,7.326007471419871e-05,6.195025124501347e-35,9.571792785384794e-35,3.7161078547931377e-35,4.69205515190113e-35,0.0005232862313278019,-0.00020931450126226991,6.776263578034403e-21,-8.721437188796699e-05,1.1622125420796148e-19,6.195025124501347e-35,3.488575021037832e-05,7.071774014546882e-35,-4.235164736271502e-22,-1.1011428314305904e-20,0.0003885003970935941,-8.978540969089458e-19,-0.0003330003237351775,-2.66013349233052e-19,1.7957082972154682e-19,9.571792785384794e-35,7.071774014546882e-35,4.162504046689719e-05,1.848974528137335e-20,1.6004529598571796e-20,0.00036630037357099354,-3.4558944247975454e-19,-9.157509339274839e-05,-6.105006468715146e-05,6.97157319912039e-20,3.7161078547931377e-35,-4.235164736271502e-22,1.848974528137335e-20,1.5262516171787865e-05,4.235164736271502e-22,0.0002035002107731998,-3.6591823321385775e-19,-1.2536087619363645e-19,-0.00011100011033704504,8.802491602331914e-20,4.69205515190113e-35,-1.1011428314305904e-20,1.6004529598571796e-20,4.235164736271502e-22,9.250009497918654e-06,6.0,9.0,14.0,0.043225280940532684,-0.010345805436372757,-0.007443826179951429,-0.005082199349999428,0.0007086168043315411,0.0006802721181884408,0.00045351474545896053,0.0003607503604143858,0.0003174603043589741,0.0001653439103392884,-0.010345805436372757,0.008035714738070965,0.0006802721181884408,0.00045351474545896053,-0.0010629252064973116,-0.0002721088530961424,-0.00018140589236281812,4.168608491715778e-19,1.5585406229479126e-19,1.9651164376299768e-19,-0.007443826179951429,0.0006802721181884408,0.0036131725646555424,0.0003174603043589741,1.1263976895076e-18,-0.0001700680295471102,3.3881317890172014e-21,-0.0003092146071139723,-7.936507608974352e-05,2.1006417091906648e-19,-0.005082199349999428,0.00045351474545896053,0.0003174603043589741,0.0015259244246408343,5.810733389116701e-19,-2.8760987881349397e-34,-6.977150042075664e-05,4.445966545501812e-19,-4.88400473841466e-05,-8.26719551696442e-05,0.0007086168043315411,-0.0010629252064973116,1.1263976895076e-18,5.810733389116701e-19,0.00021258502965793014,-1.052217489267037e-19,1.4904672872631206e-35,-8.337216724937615e-20,-3.021015139116816e-20,-3.540251919252837e-20,0.0006802721181884408,-0.0002721088530961424,-0.0001700680295471102,-2.8760987881349397e-34,-1.052217489267037e-19,6.80272132740356e-05,-0.0,4.1266148185067624e-35,1.495290946698819e-35,1.7522941611195477e-35,0.00045351474545896053,-0.00018140589236281812,3.3881317890172014e-21,-6.977150042075664e-05,1.4904672872631206e-35,-0.0,2.7908599804504775e-05,1.504632769052528e-35,0.0,-2.964615315390051e-21,0.0003607503604143858,4.168608491715778e-19,-0.0003092146071139723,4.445966545501812e-19,-8.337216724937615e-20,4.1266148185067624e-35,1.504632769052528e-35,3.865182588924654e-05,-2.747048073477852e-20,-2.5747287419832967e-20,0.0003174603043589741,1.5585406229479126e-19,-7.936507608974352e-05,-4.88400473841466e-05,-3.021015139116816e-20,1.495290946698819e-35,0.0,-2.747048073477852e-20,1.221001184603665e-05,-8.470329472543003e-22,0.0001653439103392884,1.9651164376299768e-19,2.1006417091906648e-19,-8.26719551696442e-05,-3.540251919252837e-20,1.7522941611195477e-35,-2.964615315390051e-21,-2.5747287419832967e-20,-8.470329472543003e-22,6.359381586662494e-06,6.0,9.0,15.0,0.04063268005847931,-0.009682539850473404,-0.006966089364141226,-0.004472455475479364,0.0006613756413571537,0.0006349206087179482,0.00039682540227659047,0.00033670032280497253,0.00027777778450399637,0.00013616557407658547,-0.009682539850473404,0.007510581985116005,0.0006349206087179482,0.00039682540227659047,-0.0009920635493472219,-0.00025396826094947755,-0.00015873015217948705,3.89070113830422e-19,1.3044307387716225e-19,1.2536087619363645e-19,-0.006966089364141226,0.0006349206087179482,0.003376923967152834,0.00027777778450399637,1.0366989476653857e-18,-0.00015873015217948705,-1.6940658945086007e-21,-0.00028860027668997645,-6.944444612599909e-05,-8.639736061993863e-20,-0.004472455475479364,0.00039682540227659047,0.00027777778450399637,0.0012464302126318216,6.740953822623928e-19,-3.1140886397184507e-34,-5.668934318237007e-05,-1.4715694316274095e-19,-3.968253804487176e-05,-6.28456546110101e-05,0.0006613756413571537,-0.0009920635493472219,1.0366989476653857e-18,6.740953822623928e-19,0.00019841270113829523,-9.165983197821271e-20,-6.547130670948093e-20,-7.781402405855411e-20,-2.643388125558179e-20,-2.890582973683982e-20,0.0006349206087179482,-0.00025396826094947755,-0.00015873015217948705,-3.1140886397184507e-34,-9.165983197821271e-20,6.349206523736939e-05,3.024548973567224e-35,3.5947397849862895e-35,1.221154242047227e-35,1.3353496726182106e-35,0.00039682540227659047,-0.00015873015217948705,-1.6940658945086007e-21,-5.668934318237007e-05,-6.547130670948093e-20,3.024548973567224e-35,2.2675736545352265e-05,3.611118645726067e-35,0.0,2.541098841762901e-21,0.00033670032280497253,3.89070113830422e-19,-0.00028860027668997645,-1.4715694316274095e-19,-7.781402405855411e-20,3.5947397849862895e-35,3.611118645726067e-35,3.607503458624706e-05,1.128474576789396e-35,1.0511210225910068e-20,0.00027777778450399637,1.3044307387716225e-19,-6.944444612599909e-05,-3.968253804487176e-05,-2.643388125558179e-20,1.221154242047227e-35,0.0,1.128474576789396e-35,9.92063451121794e-06,0.0,0.00013616557407658547,1.2536087619363645e-19,-8.639736061993863e-20,-6.28456546110101e-05,-2.890582973683982e-20,1.3353496726182106e-35,2.541098841762901e-21,1.0511210225910068e-20,0.0,4.488975264393957e-06,6.0,9.0,16.0,0.038333941251039505,-0.0090992646291852,-0.00654602749273181,-0.003966308664530516,0.0006200397037900984,0.0005952381179668009,0.00035014006425626576,0.00031565656536258757,0.00024509805371053517,0.0001134713165811263,-0.0090992646291852,0.007049924228340387,0.0005952381179668009,0.00035014006425626576,-0.0009300595265813172,-0.0002380952355451882,-0.00014005602861288935,7.453889935837843e-19,2.778268066994105e-19,5.831821841845858e-19,-0.00654602749273181,0.0005952381179668009,0.003169695846736431,0.00024509805371053517,-1.1689054672109345e-19,-0.00014880952949170023,4.87890977618477e-19,-0.00027056277031078935,-6.127451342763379e-05,2.1726395097072804e-19,-0.003966308664530516,0.00035014006425626576,0.00024509805371053517,0.0010313569800928235,1.0842021724855044e-18,6.640738306473715e-19,-4.6685341658303514e-05,5.082197683525802e-19,-3.267973806941882e-05,-4.863056165049784e-05,0.0006200397037900984,-0.0009300595265813172,-1.1689054672109345e-19,1.0842021724855044e-18,0.00018601190822664648,8.018230677577878e-20,1.5515817721743542e-20,2.569403120555133e-21,-1.496805451958438e-20,-6.839791049078475e-20,0.0005952381179668009,-0.0002380952355451882,-0.00014880952949170023,6.640738306473715e-19,8.018230677577878e-20,5.952380888629705e-05,-3.7269449679189215e-20,-1.1350241493207625e-19,-2.752857078576476e-20,-2.873453872655599e-20,0.00035014006425626576,-0.00014005602861288935,4.87890977618477e-19,-4.6685341658303514e-05,1.5515817721743542e-20,-3.7269449679189215e-20,1.8674136299523525e-05,-3.3881317890172014e-20,-1.3552527156068805e-20,-1.3339976473766056e-20,0.00031565656536258757,7.453889935837843e-19,-0.00027056277031078935,5.082197683525802e-19,2.569403120555133e-21,-1.1350241493207625e-19,-3.3881317890172014e-20,3.382034628884867e-05,-4.277516383634217e-20,-1.4479185930804138e-20,0.00024509805371053517,2.778268066994105e-19,-6.127451342763379e-05,-3.267973806941882e-05,-1.496805451958438e-20,-2.752857078576476e-20,-1.3552527156068805e-20,-4.277516383634217e-20,8.169934517354704e-06,-2.6652310655567993e-21,0.0001134713165811263,5.831821841845858e-19,2.1726395097072804e-19,-4.863056165049784e-05,-6.839791049078475e-20,-2.873453872655599e-20,-1.3339976473766056e-20,-1.4479185930804138e-20,-2.6652310655567993e-21,3.242037564632483e-06,6.0,10.0,3.0,0.13481241464614868,-0.03847402706742287,-0.025432899594306946,-0.06331168860197067,0.0029761905316263437,0.002597402548417449,0.0071428571827709675,0.0012626262614503503,0.004545454401522875,0.008333333767950535,-0.03847402706742287,0.03175865858793259,0.002597402548417449,0.0071428571827709675,-0.004464285913854837,-0.0010389609960839152,-0.0028571428265422583,-4.119968255444917e-18,-2.8189256484623115e-18,-1.4684982082406978e-17,-0.025432899594306946,0.002597402548417449,0.011649230495095253,0.004545454401522875,-7.37257477290143e-18,-0.0005772005533799529,-1.3010426069826053e-18,-0.0009469697251915932,-0.001010101055726409,-9.742596947556727e-18,-0.06331168860197067,0.0071428571827709675,0.004545454401522875,0.14664502441883087,-1.2017740678771578e-17,1.5077520435298864e-18,-0.0071428571827709675,-2.7647155398380363e-18,-0.004545454401522875,-0.05000000074505806,0.0029761905316263437,-0.004464285913854837,-7.37257477290143e-18,-1.2017740678771578e-17,0.0008928571478463709,8.809142651444724e-20,1.3823577699190182e-18,6.776263578034403e-19,8.673617379884035e-19,1.947864758774571e-18,0.002597402548417449,-0.0010389609960839152,-0.0005772005533799529,1.5077520435298864e-18,8.809142651444724e-20,0.0002308802359038964,-3.5236570605778894e-19,7.792703114739563e-20,-6.776263578034403e-20,-7.373388460130241e-20,0.0071428571827709675,-0.0028571428265422583,-1.3010426069826053e-18,-0.0071428571827709675,1.3823577699190182e-18,-3.5236570605778894e-19,0.0028571428265422583,2.846030702774449e-19,-1.1926223897340549e-18,4.779036402615424e-18,0.0012626262614503503,-4.119968255444917e-18,-0.0009469697251915932,-2.7647155398380363e-18,6.776263578034403e-19,7.792703114739563e-20,2.846030702774449e-19,0.00010521885269554332,3.3881317890172014e-20,9.94017255238262e-19,0.004545454401522875,-2.8189256484623115e-18,-0.001010101055726409,-0.004545454401522875,8.673617379884035e-19,-6.776263578034403e-20,-1.1926223897340549e-18,3.3881317890172014e-20,0.001010101055726409,2.2703075357530293e-20,0.008333333767950535,-1.4684982082406978e-17,-9.742596947556727e-18,-0.05000000074505806,1.947864758774571e-18,-7.373388460130241e-20,4.779036402615424e-18,9.94017255238262e-19,2.2703075357530293e-20,0.02500000037252903,6.0,10.0,4.0,0.11018939316272736,-0.029926948249340057,-0.019756494089961052,-0.04048701375722885,0.0022321429569274187,0.0019480519695207477,0.004285714123398066,0.0009469697251915932,0.0027272726874798536,0.004166666883975267,-0.029926948249340057,0.024247564375400543,0.0019480519695207477,0.004285714123398066,-0.0033482143189758062,-0.0007792207761667669,-0.001714285695925355,-2.8731357570865868e-18,3.0357660829594124e-18,1.893325928574867e-17,-0.019756494089961052,0.0019480519695207477,0.00888843834400177,0.0027272726874798536,-1.0299920638612292e-18,-0.00043290044413879514,4.336808689942018e-19,-0.0007102272938936949,-0.000606060610152781,6.462228180791402e-18,-0.04048701375722885,0.004285714123398066,0.0027272726874798536,0.05615800991654396,1.7615646596735403e-17,6.2823862943228795e-18,-0.0028571428265422583,-5.421010862427522e-20,-0.001818181830458343,-0.012500000186264515,0.0022321429569274187,-0.0033482143189758062,-1.0299920638612292e-18,1.7615646596735403e-17,0.0006696428754366934,-7.182839392716467e-19,-2.3445871979999033e-18,3.8963515573697816e-19,-3.8624702394796095e-19,-2.919201445399665e-18,0.0019480519695207477,-0.0007792207761667669,-0.00043290044413879514,6.2823862943228795e-18,-7.182839392716467e-19,0.00017316016601398587,-5.692061405548898e-19,1.1180834903756764e-19,-1.1519648082658485e-19,-1.3108912261508148e-18,0.004285714123398066,-0.001714285695925355,4.336808689942018e-19,-0.0028571428265422583,-2.3445871979999033e-18,-5.692061405548898e-19,0.0011428571306169033,1.9651164376299768e-19,-2.574980159653073e-19,1.7405141538549846e-18,0.0009469697251915932,-2.8731357570865868e-18,-0.0007102272938936949,-5.421010862427522e-20,3.8963515573697816e-19,1.1180834903756764e-19,1.9651164376299768e-19,7.891414134064689e-05,6.098637220230962e-20,-2.403046791924805e-19,0.0027272726874798536,3.0357660829594124e-18,-0.000606060610152781,-0.001818181830458343,-3.8624702394796095e-19,-1.1519648082658485e-19,-2.574980159653073e-19,6.098637220230962e-20,0.0004040404164697975,-4.820225706121137e-20,0.004166666883975267,1.893325928574867e-17,6.462228180791402e-18,-0.012500000186264515,-2.919201445399665e-18,-1.3108912261508148e-18,1.7405141538549846e-18,-2.403046791924805e-19,-4.820225706121137e-20,0.004166666883975267,6.0,10.0,5.0,0.09331168979406357,-0.024512987583875656,-0.016168830916285515,-0.02818181738257408,0.0017857142956927419,0.0015584415523335338,0.0028571428265422583,0.0007575757335871458,0.001818181830458343,0.0023809524718672037,-0.024512987583875656,0.019626623019576073,0.0015584415523335338,0.0028571428265422583,-0.0026785715017467737,-0.0006233766325749457,-0.0011428571306169033,-2.3615278569449893e-18,-1.6805133673525319e-18,-5.9631119486702744e-18,-0.016168830916285515,0.0015584415523335338,0.007191558368504047,0.001818181830458343,-3.093364323372705e-18,-0.00034632033202797174,-1.8634724839594607e-18,-0.0005681818001903594,-0.0004040404164697975,2.3852447794681098e-18,-0.02818181738257408,0.0028571428265422583,0.001818181830458343,0.02837662398815155,-4.662069341687669e-18,-4.445228907190568e-18,-0.0014285714132711291,3.2526065174565133e-19,-0.0009090909152291715,-0.004761904943734407,0.0017857142956927419,-0.0026785715017467737,-3.093364323372705e-18,-4.662069341687669e-18,0.0005357142654247582,6.450647161077171e-20,-1.9299451057251342e-19,3.032377951170395e-19,7.906516704678324e-20,1.2224970515321732e-18,0.0015584415523335338,-0.0006233766325749457,-0.00034632033202797174,-4.445228907190568e-18,6.450647161077171e-20,0.00013852813572157174,3.1170812458958252e-19,1.279141759494345e-19,3.3542504711270293e-19,4.946672411965114e-19,0.0028571428265422583,-0.0011428571306169033,-1.8634724839594607e-18,-0.0014285714132711291,-1.9299451057251342e-19,3.1170812458958252e-19,0.0005714285653084517,1.1892270976628603e-19,-6.776263578034403e-20,-1.1248597539537109e-18,0.0007575757335871458,-2.3615278569449893e-18,-0.0005681818001903594,3.2526065174565133e-19,3.032377951170395e-19,1.279141759494345e-19,1.1892270976628603e-19,6.313131598290056e-05,1.3440996713867661e-20,-1.7083602217283706e-19,0.001818181830458343,-1.6805133673525319e-18,-0.0004040404164697975,-0.0009090909152291715,7.906516704678324e-20,3.3542504711270293e-19,-6.776263578034403e-20,1.3440996713867661e-20,0.00020202020823489875,-1.1655173354219173e-18,0.0023809524718672037,-5.9631119486702744e-18,2.3852447794681098e-18,-0.004761904943734407,1.2224970515321732e-18,4.946672411965114e-19,-1.1248597539537109e-18,-1.7083602217283706e-19,-1.1655173354219173e-18,0.0011904762359336019,6.0,10.0,6.0,0.08097299188375473,-0.02076762542128563,-0.013690476305782795,-0.02076762542128563,0.0014880952658131719,0.0012987012742087245,0.0020408162381500006,0.0006313131307251751,0.0012987012742087245,0.0014880952658131719,-0.02076762542128563,0.016491573303937912,0.0012987012742087245,0.0020408162381500006,-0.0022321429569274187,-0.0005194804980419576,-0.0008163265301845968,-1.7414997395548415e-18,1.0842021724855044e-18,3.903127820947816e-18,-0.013690476305782795,0.0012987012742087245,0.006041065324097872,0.0012987012742087245,-2.8900764160316728e-18,-0.00028860027668997645,1.7957098481791167e-19,-0.0004734848625957966,-0.00028860027668997645,1.3010426069826053e-18,-0.02076762542128563,0.0020408162381500006,0.0012987012742087245,0.016491573303937912,1.3552527156068805e-18,3.5236570605778894e-18,-0.0008163265301845968,1.3552527156068805e-19,-0.0005194804980419576,-0.0022321429569274187,0.0014880952658131719,-0.0022321429569274187,-2.8900764160316728e-18,1.3552527156068805e-18,0.00044642857392318547,4.8387752313576385e-20,3.3968986110405563e-19,2.981555974335137e-19,-4.583457857357477e-20,-3.7255271286502173e-19,0.0012987012742087245,-0.0005194804980419576,-0.00028860027668997645,3.5236570605778894e-18,4.8387752313576385e-20,0.0001154401179519482,-1.6263032587282567e-19,2.0622444698320935e-20,-1.0842021724855044e-19,-4.845028458294598e-19,0.0020408162381500006,-0.0008163265301845968,1.7957098481791167e-19,-0.0008163265301845968,3.3968986110405563e-19,-1.6263032587282567e-19,0.00032653060043230653,4.5827221189767023e-20,-8.131516293641283e-20,2.778268066994105e-19,0.0006313131307251751,-1.7414997395548415e-18,-0.0004734848625957966,1.3552527156068805e-19,2.981555974335137e-19,2.0622444698320935e-20,4.5827221189767023e-20,5.260942634777166e-05,-3.3005863534058274e-20,-9.326685165353431e-21,0.0012987012742087245,1.0842021724855044e-18,-0.00028860027668997645,-0.0005194804980419576,-4.583457857357477e-20,-1.0842021724855044e-19,-8.131516293641283e-20,-3.3005863534058274e-20,0.0001154401179519482,5.082197683525802e-20,0.0014880952658131719,3.903127820947816e-18,1.3010426069826053e-18,-0.0022321429569274187,-3.7255271286502173e-19,-4.845028458294598e-19,2.778268066994105e-19,-9.326685165353431e-21,5.082197683525802e-20,0.00044642857392318547,6.0,10.0,7.0,0.07154195010662079,-0.018019480630755424,-0.011873840354382992,-0.015947742387652397,0.0012755101779475808,0.001113172504119575,0.0015306122368201613,0.0005411255406215787,0.0009740259847603738,0.0009920635493472219,-0.018019480630755424,0.014223098754882812,0.001113172504119575,0.0015306122368201613,-0.0019132653251290321,-0.0004452690191101283,-0.0006122448830865324,-2.8866882842426556e-18,-2.270048298641525e-18,-6.900420286051315e-19,-0.011873840354382992,0.001113172504119575,0.005208977498114109,0.0009740259847603738,-6.6488268920935644e-18,-0.00024737167404964566,-1.1925054470749552e-18,-0.000405844155466184,-0.00021645022206939757,1.0750471442609207e-18,-0.015947742387652397,0.0015306122368201613,0.0009740259847603738,0.010474644601345062,-2.633634916503749e-18,-1.1552282425775233e-18,-0.0005102040595375001,8.809142651444724e-19,-0.0003246753185521811,-0.0011904762359336019,0.0012755101779475808,-0.0019132653251290321,-6.6488268920935644e-18,-2.633634916503749e-18,0.00038265305920504034,5.137519005905466e-19,2.1872687158281635e-19,4.377038619033534e-19,3.205537355662832e-19,6.608470637012875e-20,0.001113172504119575,-0.0004452690191101283,-0.00024737167404964566,-1.1552282425775233e-18,5.137519005905466e-19,9.894867253024131e-05,2.371749120979154e-19,1.1519648082658485e-19,8.809142651444724e-20,2.563285538313935e-20,0.0015306122368201613,-0.0006122448830865324,-1.1925054470749552e-18,-0.0005102040595375001,2.1872687158281635e-19,2.371749120979154e-19,0.0002040816325461492,3.733356587018488e-20,3.8420568436784786e-20,3.107329820449591e-20,0.0005411255406215787,-2.8866882842426556e-18,-0.000405844155466184,8.809142651444724e-19,4.377038619033534e-19,1.1519648082658485e-19,3.733356587018488e-20,4.5093795051798224e-05,-3.3881317890172014e-20,-1.118099775493986e-19,0.0009740259847603738,-2.270048298641525e-18,-0.00021645022206939757,-0.0003246753185521811,3.205537355662832e-19,8.809142651444724e-20,3.8420568436784786e-20,-3.3881317890172014e-20,7.215006917249411e-05,-4.4279834451144535e-20,0.0009920635493472219,-6.900420286051315e-19,1.0750471442609207e-18,-0.0011904762359336019,6.608470637012875e-20,2.563285538313935e-20,3.107329820449591e-20,-1.118099775493986e-19,-4.4279834451144535e-20,0.00019841270113829523,6.0,10.0,8.0,0.06409180909395218,-0.015915855765342712,-0.010484307073056698,-0.012635281309485435,0.0011160714784637094,0.0009740259847603738,0.0011904762359336019,0.0004734848625957966,0.0007575757335871458,0.0006944444612599909,-0.015915855765342712,0.01250473503023386,0.0009740259847603738,0.0011904762359336019,-0.0016741071594879031,-0.00038961038808338344,-0.0004761904710903764,7.284483346386983e-19,3.5914196963582334e-19,8.260588005460409e-19,-0.010484307073056698,0.0009740259847603738,0.004578899126499891,0.0007575757335871458,1.4790850654260956e-18,-0.00021645022206939757,-7.320925552333435e-34,-0.00035511364694684744,-0.00016835016140248626,-7.298285806643086e-34,-0.012635281309485435,0.0011904762359336019,0.0007575757335871458,0.007082302588969469,1.8952087157261296e-18,7.587621937991653e-21,-0.0003401360590942204,2.0328790734103208e-20,-0.00021645022206939757,-0.0006944444612599909,0.0011160714784637094,-0.0016741071594879031,1.4790850654260956e-18,1.8952087157261296e-18,0.0003348214377183467,-1.0546088813426249e-19,-1.6572425278241248e-19,-1.0701216197552912e-19,-7.209240283682775e-20,-1.652117626941476e-19,0.0009740259847603738,-0.00038961038808338344,-0.00021645022206939757,7.587621937991653e-21,-1.0546088813426249e-19,8.658008300699294e-05,5.219925009845413e-35,-4.0657581468206416e-20,-1.6940658945086007e-21,5.203782625508242e-35,0.0011904762359336019,-0.0004761904710903764,-7.320925552333435e-34,-0.0003401360590942204,-1.6572425278241248e-19,5.219925009845413e-35,0.0001360544265480712,5.296706946267556e-35,3.568308094262392e-35,8.177372369243322e-35,0.0004734848625957966,7.284483346386983e-19,-0.00035511364694684744,2.0328790734103208e-20,-1.0701216197552912e-19,-4.0657581468206416e-20,5.296706946267556e-35,3.9457070670323446e-05,-3.3881317890172014e-21,5.280327511555927e-35,0.0007575757335871458,3.5914196963582334e-19,-0.00016835016140248626,-0.00021645022206939757,-7.209240283682775e-20,-1.6940658945086007e-21,3.568308094262392e-35,-3.3881317890172014e-21,4.810004975297488e-05,3.557273198441233e-35,0.0006944444612599909,8.260588005460409e-19,-7.298285806643086e-34,-0.0006944444612599909,-1.652117626941476e-19,5.203782625508242e-35,8.177372369243322e-35,5.280327511555927e-35,3.557273198441233e-35,9.920635056914762e-05,6.0,10.0,9.0,0.058054354041814804,-0.01425324659794569,-0.009386724792420864,-0.010259740054607391,0.0009920635493472219,0.0008658008882775903,0.0009523809421807528,0.0004208754107821733,0.000606060610152781,0.0005050505278632045,-0.01425324659794569,0.011157647706568241,0.0008658008882775903,0.0009523809421807528,-0.0014880952658131719,-0.00034632033202797174,-0.0003809523768723011,-7.758821796849391e-19,-6.06475590234079e-19,-1.3010426069826053e-18,-0.009386724792420864,0.0008658008882775903,0.004085096996277571,0.000606060610152781,-2.590221582824822e-18,-0.00019240019901189953,-3.049318610115481e-20,-0.00031565656536258757,-0.000134680129121989,-6.098637220230962e-20,-0.010259740054607391,0.0009523809421807528,0.000606060610152781,0.005018037743866444,-2.9021884081509805e-18,4.352453938811406e-21,-0.0002380952355451882,1.950014478401974e-21,-0.00015151515253819525,-0.00043290044413879514,0.0009920635493472219,-0.0014880952658131719,-2.590221582824822e-18,-2.9021884081509805e-18,0.00029761905898340046,1.6665424936016644e-19,2.062346219509786e-19,1.9024385069243904e-19,1.1534784195398498e-19,2.3344207863801086e-19,0.0008658008882775903,-0.00034632033202797174,-0.00019240019901189953,4.352453938811406e-21,1.6665424936016644e-19,7.696007378399372e-05,-2.0651469730923274e-22,-4.2351647362715017e-20,-1.314184460371071e-22,6.173686028777159e-23,0.0009523809421807528,-0.0003809523768723011,-3.049318610115481e-20,-0.0002380952355451882,2.062346219509786e-19,-2.0651469730923274e-22,9.523809421807528e-05,4.235164736271502e-22,7.623296525288703e-21,3.7269449679189215e-20,0.0004208754107821733,-7.758821796849391e-19,-0.00031565656536258757,1.950014478401974e-21,1.9024385069243904e-19,-4.2351647362715017e-20,4.235164736271502e-22,3.5072953323833644e-05,-1.6940658945086007e-21,1.6940658945086007e-21,0.000606060610152781,-6.06475590234079e-19,-0.000134680129121989,-0.00015151515253819525,1.1534784195398498e-19,-1.314184460371071e-22,7.623296525288703e-21,-1.6940658945086007e-21,3.367003228049725e-05,1.1858461261560205e-20,0.0005050505278632045,-1.3010426069826053e-18,-6.098637220230962e-20,-0.00043290044413879514,2.3344207863801086e-19,6.173686028777159e-23,3.7269449679189215e-20,1.6940658945086007e-21,1.1858461261560205e-20,5.411255551734939e-05,6.0,10.0,10.0,0.053060803562402725,-0.012905844487249851,-0.008497638627886772,-0.008497638627886772,0.0008928571478463709,0.0007792207761667669,0.0007792207761667669,0.0003787878667935729,0.0004958677454851568,0.0003787878667935729,-0.012905844487249851,0.010073051787912846,0.0007792207761667669,0.0007792207761667669,-0.0013392857508733869,-0.00031168831628747284,-0.00031168831628747284,-8.639736061993863e-19,-4.777265822514254e-19,-8.402566836762659e-19,-0.008497638627886772,0.0007792207761667669,0.0036876066587865353,0.0004958677454851568,-2.303139865841862e-18,-0.00017316016601398587,-3.3881317890172014e-21,-0.0002840909000951797,-0.00011019283556379378,-5.488773498207866e-19,-0.008497638627886772,0.0007792207761667669,0.0004958677454851568,0.0036876066587865353,-2.303139865841862e-18,3.0387503680481576e-21,-0.00017316016601398587,-6.386717344213274e-19,-0.00011019283556379378,-0.0002840909000951797,0.0008928571478463709,-0.0013392857508733869,-2.303139865841862e-18,-2.303139865841862e-18,0.0002678571327123791,1.3498994353269846e-19,1.3498994353269846e-19,1.712194591608466e-19,9.437551116566405e-20,1.712194591608466e-19,0.0007792207761667669,-0.00031168831628747284,-0.00017316016601398587,3.0387503680481576e-21,1.3498994353269846e-19,6.926406786078587e-05,-1.426916217824009e-22,-1.6940658945086007e-21,-9.08037593160733e-23,1.243547330562685e-22,0.0007792207761667669,-0.00031168831628747284,-3.3881317890172014e-21,-0.00017316016601398587,1.3498994353269846e-19,-1.426916217824009e-22,6.926406786078587e-05,0.0,1.6940658945086007e-21,-8.470329472543003e-21,0.0003787878667935729,-8.639736061993863e-19,-0.0002840909000951797,-6.386717344213274e-19,1.712194591608466e-19,-1.6940658945086007e-21,0.0,3.156565799145028e-05,2.1175823681357508e-20,6.056285572868247e-20,0.0004958677454851568,-4.777265822514254e-19,-0.00011019283556379378,-0.00011019283556379378,9.437551116566405e-20,-9.08037593160733e-23,1.6940658945086007e-21,2.1175823681357508e-20,2.448729719617404e-05,0.0,0.0003787878667935729,-8.402566836762659e-19,-5.488773498207866e-19,-0.0002840909000951797,1.712194591608466e-19,1.243547330562685e-22,-8.470329472543003e-21,6.056285572868247e-20,0.0,3.156565799145028e-05,6.0,10.0,11.0,0.04886098578572273,-0.01179161760956049,-0.00776269193738699,-0.007154209539294243,0.000811688310932368,0.0007083825184963644,0.0006493506371043622,0.000344352622050792,0.0004132231406401843,0.00029137529782019556,-0.01179161760956049,0.009180932305753231,0.0007083825184963644,0.0006493506371043622,-0.0012175324372947216,-0.00028335300157777965,-0.0002597402490209788,3.9810548520952116e-19,2.236166980751353e-19,3.3881317890172014e-19,-0.00776269193738699,0.0007083825184963644,0.0033607175573706627,0.0004132231406401843,1.1759636959802729e-18,-0.00015741834067739546,2.371692252312041e-20,-0.00025826445198617876,-9.182736539514735e-05,4.404571325722362e-20,-0.007154209539294243,0.0006493506371043622,0.0004132231406401843,0.00279059330932796,1.0540336547747767e-18,-3.1141471274500664e-35,-0.0001298701245104894,-2.3278270017532603e-21,-8.264462667284533e-05,-0.00019425019854679704,0.000811688310932368,-0.0012175324372947216,1.1759636959802729e-18,1.0540336547747767e-18,0.00024350649619009346,-1.1156192676320927e-19,-9.203859668823104e-20,-7.782702630380768e-20,-3.9323129113830977e-20,-6.469831288939866e-20,0.0007083825184963644,-0.00028335300157777965,-0.00015741834067739546,-3.1141471274500664e-35,-1.1156192676320927e-19,6.296733772614971e-05,1.449278565010892e-36,-1.6940658945086007e-21,-4.235164736271502e-22,-1.0904623716906886e-22,0.0006493506371043622,-0.0002597402490209788,2.371692252312041e-20,-0.0001298701245104894,-9.203859668823104e-20,1.449278565010892e-36,5.194805271457881e-05,6.352747104407253e-22,-5.082197683525802e-21,-5.082197683525802e-21,0.000344352622050792,3.9810548520952116e-19,-0.00025826445198617876,-2.3278270017532603e-21,-7.782702630380768e-20,-1.6940658945086007e-21,6.352747104407253e-22,2.8696051231236197e-05,-8.470329472543003e-22,4.235164736271502e-22,0.0004132231406401843,2.236166980751353e-19,-9.182736539514735e-05,-8.264462667284533e-05,-3.9323129113830977e-20,-4.235164736271502e-22,-5.082197683525802e-21,-8.470329472543003e-22,1.8365473806625232e-05,-8.470329472543003e-21,0.00029137529782019556,3.3881317890172014e-19,4.404571325722362e-20,-0.00019425019854679704,-6.469831288939866e-20,-1.0904623716906886e-22,-5.082197683525802e-21,4.235164736271502e-22,-8.470329472543003e-21,1.942501876328606e-05,6.0,10.0,12.0,0.04527902603149414,-0.010854770429432392,-0.007144938223063946,-0.006106393411755562,0.0007440476329065859,0.0006493506371043622,0.0005494505749084055,0.00031565656536258757,0.00034965036320500076,0.00022893772984389216,-0.010854770429432392,0.008434169925749302,0.0006493506371043622,0.0005494505749084055,-0.0011160714784637094,-0.0002597402490209788,-0.00021978022414259613,-5.946171289725188e-19,-3.3542504711270293e-19,-4.1335207826009857e-19,-0.007144938223063946,0.0006493506371043622,0.003087132703512907,0.00034965036320500076,-1.8845109956591345e-18,-0.00014430013834498823,0.0,-0.0002367424312978983,-7.770007505314425e-05,0.0,-0.006106393411755562,0.0005494505749084055,0.00034965036320500076,0.0021633668802678585,-1.7263357611679428e-18,-3.7528433143513606e-21,-9.990009857574478e-05,4.573516745825852e-21,-6.357279198709875e-05,-0.00013736264372710139,0.0007440476329065859,-0.0011160714784637094,-1.8845109956591345e-18,-1.7263357611679428e-18,0.00022321428696159273,9.374300880274509e-20,1.2979801517103867e-19,1.4268287832580647e-19,6.654683537625593e-20,1.0021636271787169e-19,0.0006493506371043622,-0.0002597402490209788,-0.00014430013834498823,-3.7528433143513606e-21,9.374300880274509e-20,5.77200589759741e-05,-3.8459187406389807e-23,-2.710505431213761e-20,1.380830610331312e-21,1.1652333850779225e-22,0.0005494505749084055,-0.00021978022414259613,0.0,-9.990009857574478e-05,1.2979801517103867e-19,-3.8459187406389807e-23,3.996003943029791e-05,-2.117582368135751e-22,0.0,-1.6093625997831706e-20,0.00031565656536258757,-5.946171289725188e-19,-0.0002367424312978983,4.573516745825852e-21,1.4268287832580647e-19,-2.710505431213761e-20,-2.117582368135751e-22,2.630471317388583e-05,0.0,0.0,0.00034965036320500076,-3.3542504711270293e-19,-7.770007505314425e-05,-6.357279198709875e-05,6.654683537625593e-20,1.380830610331312e-21,0.0,0.0,1.41272867040243e-05,-8.470329472543003e-22,0.00022893772984389216,-4.1335207826009857e-19,0.0,-0.00013736264372710139,1.0021636271787169e-19,1.1652333850779225e-22,-1.6093625997831706e-20,0.0,-8.470329472543003e-22,1.2487512321968097e-05,6.0,10.0,13.0,0.04218757525086403,-0.010056015104055405,-0.006618381477892399,-0.0052732983604073524,0.0006868132040835917,0.0005994006060063839,0.00047095760237425566,0.00029137529782019556,0.00029970030300319195,0.00018315018678549677,-0.010056015104055405,0.007799878716468811,0.0005994006060063839,0.00047095760237425566,-0.001030219835229218,-0.00023976023658178747,-0.00018838304094970226,3.292681867171059e-19,1.3213713977167085e-19,1.5924219408380846e-19,-0.006618381477892399,0.0005994006060063839,0.002854784019291401,0.00029970030300319195,9.63492429478677e-19,-0.00013320012658368796,-1.1858461261560205e-20,-0.00021853146608918905,-6.660006329184398e-05,-1.6940658945086007e-20,-0.0052732983604073524,0.00047095760237425566,0.00029970030300319195,0.001711383811198175,6.036748600775511e-19,-2.34022649984982e-34,-7.849293615436181e-05,-1.929403162851931e-34,-4.995004928787239e-05,-9.990009857574478e-05,0.0006868132040835917,-0.001030219835229218,9.63492429478677e-19,6.036748600775511e-19,0.00020604395831469446,-7.987570064950864e-20,-3.502015493417044e-35,-6.585363863589089e-20,-2.852007276570601e-20,-3.961121091802391e-20,0.0005994006060063839,-0.00023976023658178747,-0.00013320012658368796,-2.34022649984982e-34,-7.987570064950864e-20,5.328005499904975e-05,0.0,2.5529045371878954e-35,1.1056188024436318e-35,1.5355817617366593e-35,0.00047095760237425566,-0.00018838304094970226,-1.1858461261560205e-20,-7.849293615436181e-05,-3.502015493417044e-35,0.0,3.139717591693625e-05,0.0,1.6940658945086007e-21,6.776263578034403e-21,0.00029137529782019556,3.292681867171059e-19,-0.00021853146608918905,-1.929403162851931e-34,-6.585363863589089e-20,2.5529045371878954e-35,0.0,2.428127481834963e-05,9.115290730885253e-36,1.2660125815822625e-35,0.00029970030300319195,1.3213713977167085e-19,-6.660006329184398e-05,-4.995004928787239e-05,-2.852007276570601e-20,1.1056188024436318e-35,1.6940658945086007e-21,9.115290730885253e-36,1.1100010851805564e-05,2.117582368135751e-21,0.00018315018678549677,1.5924219408380846e-19,-1.6940658945086007e-20,-9.990009857574478e-05,-3.961121091802391e-20,1.5355817617366593e-35,6.776263578034403e-21,1.2660125815822625e-35,2.117582368135751e-21,8.325007911480498e-06,6.0,10.0,14.0,0.03949211537837982,-0.009366882964968681,-0.006164193153381348,-0.004599953535944223,0.0006377550889737904,0.0005565862520597875,0.0004081632650922984,0.00027056277031078935,0.0002597402490209788,0.00014880952949170023,-0.009366882964968681,0.007254406344145536,0.0005565862520597875,0.0004081632650922984,-0.0009566326625645161,-0.00022263450955506414,-0.00016326530021615326,-1.1788623436418118e-18,-5.996993266560446e-19,-9.825582188149884e-20,-0.006164193153381348,0.0005565862520597875,0.0026549939066171646,0.0002597402490209788,-3.4275314355688678e-18,-0.00012368583702482283,-9.147955830346444e-20,-0.000202922077733092,-5.77200589759741e-05,9.656175598699024e-20,-0.004599953535944223,0.0004081632650922984,0.0002597402490209788,0.0013773280661553144,-9.071566734752937e-19,-3.5332652803805757e-19,-6.27943518338725e-05,2.737963174659576e-19,-3.996003943029791e-05,-7.440476474585012e-05,0.0006377550889737904,-0.0009566326625645161,-3.4275314355688678e-18,-9.071566734752937e-19,0.00019132652960252017,2.568759502952733e-19,7.027345851921778e-20,2.188519309516767e-19,8.983822517300609e-20,1.9471385717449317e-20,0.0005565862520597875,-0.00022263450955506414,-0.00012368583702482283,-3.5332652803805757e-19,2.568759502952733e-19,4.9474336265120655e-05,6.494867719636373e-20,2.9328376858186634e-20,2.2554863009454117e-20,6.179348964604041e-21,0.0004081632650922984,-0.00016326530021615326,-9.147955830346444e-20,-6.27943518338725e-05,7.027345851921778e-20,6.494867719636373e-20,2.5117738914559595e-05,-1.362625609051113e-20,1.6940658945086007e-21,-6.776263578034403e-21,0.00027056277031078935,-1.1788623436418118e-18,-0.000202922077733092,2.737963174659576e-19,2.188519309516767e-19,2.9328376858186634e-20,-1.362625609051113e-20,2.2546897525899112e-05,-7.503279403873221e-21,-1.3141844906633298e-20,0.0002597402490209788,-5.996993266560446e-19,-5.77200589759741e-05,-3.996003943029791e-05,8.983822517300609e-20,2.2554863009454117e-20,1.6940658945086007e-21,-7.503279403873221e-21,8.880008863343392e-06,8.470329472543003e-22,0.00014880952949170023,-9.825582188149884e-20,9.656175598699024e-20,-7.440476474585012e-05,1.9471385717449317e-20,6.179348964604041e-21,-6.776263578034403e-21,-1.3141844906633298e-20,8.470329472543003e-22,5.723443337046774e-06,6.0,10.0,15.0,0.0371210016310215,-0.008766233921051025,-0.0057683982886374,-0.004047937225550413,0.0005952381179668009,0.0005194804980419576,0.0003571428533177823,0.00025252526393160224,0.00022727272880729288,0.00012254902685526758,-0.008766233921051025,0.006780303083360195,0.0005194804980419576,0.0003571428533177823,-0.0008928571478463709,-0.00020779221085831523,-0.0001428571413271129,2.8536575665161295e-19,1.0503208545953324e-19,1.1180834903756764e-19,-0.0057683982886374,0.0005194804980419576,0.0024813611526042223,0.00022727272880729288,8.150412717747174e-19,-0.0001154401179519482,-3.3881317890172014e-21,-0.00018939393339678645,-5.0505052058724687e-05,-6.776263578034403e-21,-0.004047937225550413,0.0003571428533177823,0.00022727272880729288,0.0011250339448451996,5.941175635813251e-19,-1.996086294144691e-34,-5.10204081365373e-05,-1.8988571845029706e-34,-3.246753112762235e-05,-5.656108623952605e-05,0.0005952381179668009,-0.0008928571478463709,8.150412717747174e-19,5.941175635813251e-19,0.00017857142665889114,-5.999552615074474e-20,-5.3031760761125024e-20,-5.707315520773171e-20,-2.162772117416575e-20,-2.601524547068613e-20,0.0005194804980419576,-0.00020779221085831523,-0.0001154401179519482,-1.996086294144691e-34,-5.999552615074474e-20,4.617604645318352e-05,1.7817343253003958e-35,1.9175149717785015e-35,7.266372426454926e-36,8.740470610499735e-36,0.0003571428533177823,-0.0001428571413271129,-3.3881317890172014e-21,-5.10204081365373e-05,-5.3031760761125024e-20,1.7817343253003958e-35,2.0408162527019158e-05,1.6949463375999881e-35,2.117582368135751e-22,1.6940658945086007e-21,0.00025252526393160224,2.8536575665161295e-19,-0.00018939393339678645,-1.8988571845029706e-34,-5.707315520773171e-20,1.9175149717785015e-35,1.6949463375999881e-35,2.1043770175310783e-05,6.912428379754635e-36,8.31472340270573e-36,0.00022727272880729288,1.0503208545953324e-19,-5.0505052058724687e-05,-3.246753112762235e-05,-2.162772117416575e-20,7.266372426454926e-36,2.117582368135751e-22,6.912428379754635e-36,7.215007371996762e-06,8.470329472543003e-22,0.00012254902685526758,1.1180834903756764e-19,-6.776263578034403e-21,-5.656108623952605e-05,-2.601524547068613e-20,8.740470610499735e-36,1.6940658945086007e-21,8.31472340270573e-36,8.470329472543003e-22,4.040077783429297e-06,6.0,10.0,16.0,0.0350189134478569,-0.008238039910793304,-0.005420406814664602,-0.0035897314082831144,0.0005580357392318547,0.0004870129923801869,0.00031512606074102223,0.0002367424312978983,0.00020053476328030229,0.00010212418419541791,-0.008238039910793304,0.006364412140101194,0.0004870129923801869,0.00031512606074102223,-0.0008370535797439516,-0.00019480519404169172,-0.00012605042138602585,2.6753039847647427e-19,8.809142651444724e-20,1.1350241493207625e-19,-0.005420406814664602,0.0004870129923801869,0.002329061273485422,0.00020053476328030229,7.565054738358844e-19,-0.00010822511103469878,-5.082197683525802e-21,-0.00017755682347342372,-4.456327951629646e-05,-5.082197683525802e-21,-0.0035897314082831144,0.00031512606074102223,0.00020053476328030229,0.00093089509755373,5.110215324848739e-19,-1.609597871301857e-34,-4.201680712867528e-05,-1.6332742101550891e-34,-2.6737967345979996e-05,-4.376750803203322e-05,0.0005580357392318547,-0.0008370535797439516,7.565054738358844e-19,5.110215324848739e-19,0.00016741071885917336,-5.2730444067131244e-20,-4.0943640557307714e-20,-5.350608098776456e-20,-1.9083282913797093e-20,-2.1519179568162308e-20,0.0004870129923801869,-0.00019480519404169172,-0.00010822511103469878,-1.609597871301857e-34,-5.2730444067131244e-20,4.329004150349647e-05,1.2896285098981782e-35,1.6853159508981953e-35,6.01078604354585e-36,6.77803574070518e-36,0.00031512606074102223,-0.00012605042138602585,-5.082197683525802e-21,-4.201680712867528e-05,-4.0943640557307714e-20,1.2896285098981782e-35,1.6806723579065874e-05,1.3085982795733133e-35,6.352747104407253e-22,-8.470329472543003e-22,0.0002367424312978983,2.6753039847647427e-19,-0.00017755682347342372,-1.6332742101550891e-34,-5.350608098776456e-20,1.6853159508981953e-35,1.3085982795733133e-35,1.9728535335161723e-05,6.09920138493677e-36,6.877737521080954e-36,0.00020053476328030229,8.809142651444724e-20,-4.456327951629646e-05,-2.6737967345979996e-05,-1.9083282913797093e-20,6.01078604354585e-36,6.352747104407253e-22,6.09920138493677e-36,5.941770723438822e-06,8.470329472543003e-22,0.00010212418419541791,1.1350241493207625e-19,-5.082197683525802e-21,-4.376750803203322e-05,-2.1519179568162308e-20,6.77803574070518e-36,-8.470329472543003e-22,6.877737521080954e-36,8.470329472543003e-22,2.9178338536439696e-06,6.0,11.0,3.0,0.1244172528386116,-0.03517315909266472,-0.021436896175146103,-0.057900432497262955,0.0027056278195232153,0.0021645021624863148,0.006493506487458944,0.0009712509927339852,0.0037878789007663727,0.007575757801532745,-0.03517315909266472,0.028950216248631477,0.0021645021624863148,0.006493506487458944,-0.004058441612869501,-0.0008658008882775903,-0.002597402548417449,-1.8316547749024554e-18,2.710505431213761e-18,2.5153490401663703e-17,-0.021436896175146103,0.0021645021624863148,0.008819883689284325,0.0037878789007663727,-1.7646924363647564e-18,-0.00043290044413879514,-8.673617379884035e-19,-0.0006475006230175495,-0.0007575757335871458,1.734723475976807e-18,-0.057900432497262955,0.006493506487458944,0.0037878789007663727,0.1336580067873001,1.369549374442002e-17,2.6168923673153693e-18,-0.006493506487458944,-2.0227523147611404e-18,-0.0037878789007663727,-0.04545454680919647,0.0027056278195232153,-0.004058441612869501,-1.7646924363647564e-18,1.369549374442002e-17,0.000811688310932368,-2.846030702774449e-19,-1.4102609501246929e-18,2.846030702774449e-19,-2.748666891786012e-19,-3.926666486048931e-18,0.0021645021624863148,-0.0008658008882775903,-0.00043290044413879514,2.6168923673153693e-18,-2.846030702774449e-19,0.00017316016601398587,-2.86736705119343e-19,2.710505431213761e-20,-1.4813989222439537e-19,-4.406805230364138e-19,0.006493506487458944,-0.002597402548417449,-8.673617379884035e-19,-0.006493506487458944,-1.4102609501246929e-18,-2.86736705119343e-19,0.002597402548417449,1.9222806311149768e-19,-6.505213034913027e-19,-3.903127820947816e-18,0.0009712509927339852,-1.8316547749024554e-18,-0.0006475006230175495,-2.0227523147611404e-18,2.846030702774449e-19,2.710505431213761e-20,1.9222806311149768e-19,6.475006375694647e-05,1.7342066108785836e-20,7.324440305876357e-19,0.0037878789007663727,2.710505431213761e-18,-0.0007575757335871458,-0.0037878789007663727,-2.748666891786012e-19,-1.4813989222439537e-19,-6.505213034913027e-19,1.7342066108785836e-20,0.0007575757335871458,-8.456776945386935e-18,0.007575757801532745,2.5153490401663703e-17,1.734723475976807e-18,-0.04545454680919647,-3.926666486048931e-18,-4.406805230364138e-19,-3.903127820947816e-18,7.324440305876357e-19,-8.456776945386935e-18,0.022727273404598236,6.0,11.0,4.0,0.10161921381950378,-0.02735389582812786,-0.016645854339003563,-0.037012986838817596,0.0020292208064347506,0.001623376621864736,0.0038961039390414953,0.0007284382008947432,0.0022727272007614374,0.0037878789007663727,-0.02735389582812786,0.022102272137999535,0.001623376621864736,0.0038961039390414953,-0.003043831093236804,-0.0006493506371043622,-0.0015584415523335338,-1.3552527156068805e-19,1.3010426069826053e-18,3.3264809839878585e-19,-0.016645854339003563,0.001623376621864736,0.006728549022227526,0.0022727272007614374,-1.463672932855431e-18,-0.0003246753185521811,-4.336808689942018e-19,-0.0004856254963669926,-0.00045454545761458576,-3.688387184435681e-18,-0.037012986838817596,0.0038961039390414953,0.0022727272007614374,0.05119047686457634,-4.311296785489657e-18,1.962252324759012e-18,-0.002597402548417449,-9.893344823930228e-19,-0.0015151514671742916,-0.011363636702299118,0.0020292208064347506,-0.003043831093236804,-1.463672932855431e-18,-4.311296785489657e-18,0.0006087662186473608,5.55653613398821e-19,1.5043305143236374e-18,6.776263578034403e-21,-2.710505431213761e-20,1.409080976980886e-19,0.001623376621864736,-0.0006493506371043622,-0.0003246753185521811,1.962252324759012e-18,5.55653613398821e-19,0.0001298701245104894,1.3552527156068805e-19,1.3552527156068805e-20,-1.6263032587282567e-19,-4.83779993371665e-19,0.0038961039390414953,-0.0015584415523335338,-4.336808689942018e-19,-0.002597402548417449,1.5043305143236374e-18,1.3552527156068805e-19,0.0010389609960839152,4.404571325722362e-20,-1.4907779871675686e-19,9.924764245522289e-19,0.0007284382008947432,-1.3552527156068805e-19,-0.0004856254963669926,-9.893344823930228e-19,6.776263578034403e-21,1.3552527156068805e-20,4.404571325722362e-20,4.856254963669926e-05,1.6940658945086007e-20,2.504747097274551e-19,0.0022727272007614374,1.3010426069826053e-18,-0.00045454545761458576,-0.0015151514671742916,-2.710505431213761e-20,-1.6263032587282567e-19,-1.4907779871675686e-19,1.6940658945086007e-20,0.0003030303050763905,1.633208148891543e-18,0.0037878789007663727,3.3264809839878585e-19,-3.688387184435681e-18,-0.011363636702299118,1.409080976980886e-19,-4.83779993371665e-19,9.924764245522289e-19,2.504747097274551e-19,1.633208148891543e-18,0.0037878789007663727,6.0,11.0,5.0,0.08601398766040802,-0.022402597591280937,-0.013619713485240936,-0.025757575407624245,0.001623376621864736,0.0012987012742087245,0.002597402548417449,0.0005827505956403911,0.0015151514671742916,0.0021645021624863148,-0.022402597591280937,0.017889609560370445,0.0012987012742087245,0.002597402548417449,-0.002435064874589443,-0.0005194804980419576,-0.0010389609960839152,3.3711911300721153e-19,1.3010426069826053e-18,4.553649124439119e-18,-0.013619713485240936,0.0012987012742087245,0.005443445406854153,0.0015151514671742916,2.095559511507139e-18,-0.0002597402490209788,-1.5246593050577406e-19,-0.0003885003970935941,-0.0003030303050763905,2.9815559743351372e-18,-0.025757575407624245,0.002597402548417449,0.0015151514671742916,0.02586580067873001,5.692061405548898e-18,-1.2468324983583301e-18,-0.0012987012742087245,4.87890977618477e-19,-0.0007575757335871458,-0.0043290043249726295,0.001623376621864736,-0.002435064874589443,2.095559511507139e-18,5.692061405548898e-18,0.0004870129923801869,-1.631839035730797e-19,-5.728653807896713e-19,-8.893845946170154e-20,-3.530848879016155e-19,-5.342526931932725e-19,0.0012987012742087245,-0.0005194804980419576,-0.0002597402490209788,-1.2468324983583301e-18,-1.631839035730797e-19,0.00010389610542915761,1.2197274440461925e-19,1.622280834505776e-20,1.1180834903756764e-19,6.776263578034403e-20,0.002597402548417449,-0.0010389609960839152,-1.5246593050577406e-19,-0.0012987012742087245,-5.728653807896713e-19,1.2197274440461925e-19,0.0005194804980419576,-4.871219775297897e-21,-7.453889935837843e-20,-1.0977546996415732e-18,0.0005827505956403911,3.3711911300721153e-19,-0.0003885003970935941,4.87890977618477e-19,-8.893845946170154e-20,1.622280834505776e-20,-4.871219775297897e-21,3.885003752657212e-05,-3.0791351996340717e-21,-1.089874434289116e-19,0.0015151514671742916,1.3010426069826053e-18,-0.0003030303050763905,-0.0007575757335871458,-3.530848879016155e-19,1.1180834903756764e-19,-7.453889935837843e-20,-3.0791351996340717e-21,0.00015151515253819525,-8.944667923005412e-19,0.0021645021624863148,4.553649124439119e-18,2.9815559743351372e-18,-0.0043290043249726295,-5.342526931932725e-19,6.776263578034403e-20,-1.0977546996415732e-18,-1.089874434289116e-19,-8.944667923005412e-19,0.0010822510812431574,6.0,11.0,6.0,0.07461585849523544,-0.018978046253323555,-0.011530136689543724,-0.018978046253323555,0.0013528139097616076,0.0010822510812431574,0.001855287584476173,0.0004856254963669926,0.0010822510812431574,0.0013528139097616076,-0.018978046253323555,0.015031694434583187,0.0010822510812431574,0.001855287584476173,-0.0020292208064347506,-0.00043290044413879514,-0.000742115022148937,-8.74138001566438e-19,2.168404344971009e-19,5.421010862427522e-20,-0.011530136689543724,0.0010822510812431574,0.004572279751300812,0.0010822510812431574,-1.1468826105823227e-18,-0.00021645022206939757,-2.202285662861181e-19,-0.00032375031150877476,-0.00021645022206939757,1.8973538018496328e-19,-0.018978046253323555,0.001855287584476173,0.0010822510812431574,0.015031694434583187,7.047314121155779e-19,6.505213034913027e-19,-0.000742115022148937,-2.846030702774449e-19,-0.00043290044413879514,-0.0020292208064347506,0.0013528139097616076,-0.0020292208064347506,-1.1468826105823227e-18,7.047314121155779e-19,0.000405844155466184,-1.5219174598210687e-19,-5.251366975538436e-19,1.249373597200093e-19,3.1808739317237976e-20,1.113700467104911e-19,0.0010822510812431574,-0.00043290044413879514,-0.00021645022206939757,6.505213034913027e-19,-1.5219174598210687e-19,8.658008300699294e-05,-7.115076756936123e-20,1.2393504138420664e-20,-3.049318610115481e-20,-4.743384504624082e-20,0.001855287584476173,-0.000742115022148937,-2.202285662861181e-19,-0.000742115022148937,-5.251366975538436e-19,-7.115076756936123e-20,0.0002968460030388087,5.019518395727023e-20,-8.131516293641283e-20,-2.913793338554793e-19,0.0004856254963669926,-8.74138001566438e-19,-0.00032375031150877476,-2.846030702774449e-19,1.249373597200093e-19,1.2393504138420664e-20,5.019518395727023e-20,3.237503187847324e-05,-2.0014493201385385e-21,3.9047884765003957e-20,0.0010822510812431574,2.168404344971009e-19,-0.00021645022206939757,-0.00043290044413879514,3.1808739317237976e-20,-3.049318610115481e-20,-8.131516293641283e-20,-2.0014493201385385e-21,8.658008300699294e-05,-2.439454888092385e-19,0.0013528139097616076,5.421010862427522e-20,1.8973538018496328e-19,-0.0020292208064347506,1.113700467104911e-19,-4.743384504624082e-20,-2.913793338554793e-19,3.9047884765003957e-20,-2.439454888092385e-19,0.000405844155466184,6.0,11.0,7.0,0.06590928882360458,-0.016465676948428154,-0.009998929686844349,-0.014571737498044968,0.0011595546966418624,0.0009276437922380865,0.0013914656592532992,0.0004162504046689719,0.000811688310932368,0.0009018759010359645,-0.016465676948428154,0.012963822111487389,0.0009276437922380865,0.0013914656592532992,-0.0017393321031704545,-0.0003710575110744685,-0.0005565862520597875,5.166900978251232e-19,3.9302328752599536e-19,1.11571578926982e-18,-0.009998929686844349,0.0009276437922380865,0.003942287992686033,0.000811688310932368,1.1559871807895407e-18,-0.00018552875553723425,-7.802331814968433e-34,-0.0002775002794805914,-0.00016233765927609056,-7.415220862256018e-34,-0.014571737498044968,0.0013914656592532992,0.000811688310932368,0.009547000750899315,2.3120490146293643e-18,1.1215916409016963e-20,-0.00046382189611904323,1.3552527156068805e-20,-0.00027056277031078935,-0.0010822510812431574,0.0011595546966418624,-0.0017393321031704545,1.1559871807895407e-18,2.3120490146293643e-18,0.0003478664148133248,3.611118645726067e-35,-2.3479232174103297e-19,-9.242615665460627e-20,-7.724186064391177e-20,-2.231431630238428e-19,0.0009276437922380865,-0.0003710575110744685,-0.00018552875553723425,1.1215916409016963e-20,3.611118645726067e-35,7.421150075970218e-05,-0.0,-1.1858461261560205e-20,-0.0,-0.0,0.0013914656592532992,-0.0005565862520597875,-7.802331814968433e-34,-0.00046382189611904323,-2.3479232174103297e-19,-0.0,0.00018552875553723425,6.238300880150248e-35,5.21343683204185e-35,1.506103973700979e-34,0.0004162504046689719,5.166900978251232e-19,-0.0002775002794805914,1.3552527156068805e-20,-9.242615665460627e-20,-1.1858461261560205e-20,6.238300880150248e-35,2.775002758426126e-05,-1.6940658945086007e-21,5.928788855392672e-35,0.000811688310932368,3.9302328752599536e-19,-0.00016233765927609056,-0.00027056277031078935,-7.724186064391177e-20,-0.0,5.21343683204185e-35,-1.6940658945086007e-21,5.411255551734939e-05,4.954773547535103e-35,0.0009018759010359645,1.11571578926982e-18,-7.415220862256018e-34,-0.0010822510812431574,-2.231431630238428e-19,-0.0,1.506103973700979e-34,5.928788855392672e-35,4.954773547535103e-35,0.0001803751802071929,6.0,11.0,8.0,0.059034716337919235,-0.014542749151587486,-0.008827977813780308,-0.011544011533260345,0.0010146104032173753,0.000811688310932368,0.0010822510812431574,0.0003642191004473716,0.0006313131307251751,0.0006313131307251751,-0.014542749151587486,0.011397456750273705,0.000811688310932368,0.0010822510812431574,-0.001521915546618402,-0.0003246753185521811,-0.00043290044413879514,4.1674021004911577e-19,3.083199928005653e-19,7.509625365511666e-19,-0.008827977813780308,0.000811688310932368,0.003465284826233983,0.0006313131307251751,1.3785242013701411e-18,-0.00016233765927609056,-6.202896344877049e-34,-0.0002428127481834963,-0.00012626263196580112,-6.8020857639319975e-34,-0.011544011533260345,0.0010822510812431574,0.0006313131307251751,0.006454854737967253,1.694138066017046e-18,3.914002977718552e-21,-0.0003092146071139723,1.3552527156068805e-20,-0.0001803751802071929,-0.0006313131307251751,0.0010146104032173753,-0.001521915546618402,1.3785242013701411e-18,1.694138066017046e-18,0.0003043831093236804,-1.438102996513221e-19,-1.3696218768226923e-19,-8.087288626498692e-20,-6.007700344108121e-20,-1.5019251506505156e-19,0.000811688310932368,-0.0003246753185521811,-0.00016233765927609056,3.914002977718552e-21,-1.438102996513221e-19,6.49350622552447e-05,6.470981032934644e-35,-1.6940658945086007e-21,-8.470329472543003e-22,7.096066799168074e-35,0.0010822510812431574,-0.00043290044413879514,-6.202896344877049e-34,-0.0003092146071139723,-1.3696218768226923e-19,6.470981032934644e-35,0.00012368583702482283,3.6390087989233237e-35,2.703263638202194e-35,6.758159238998448e-35,0.0003642191004473716,4.1674021004911577e-19,-0.0002428127481834963,1.3552527156068805e-20,-8.087288626498692e-20,-1.6940658945086007e-21,3.6390087989233237e-35,2.428127481834963e-05,-1.6940658945086007e-21,3.9905309713983725e-35,0.0006313131307251751,3.083199928005653e-19,-0.00012626263196580112,-0.0001803751802071929,-6.007700344108121e-20,-8.470329472543003e-22,2.703263638202194e-35,-1.6940658945086007e-21,3.607503458624706e-05,2.964394427696336e-35,0.0006313131307251751,7.509625365511666e-19,-6.8020857639319975e-34,-0.0006313131307251751,-1.5019251506505156e-19,7.096066799168074e-35,6.758159238998448e-35,3.9905309713983725e-35,2.964394427696336e-35,9.018759010359645e-05,6.0,11.0,9.0,0.05346572771668434,-0.01302308775484562,-0.007903208024799824,-0.009372950531542301,0.0009018759010359645,0.0007215007208287716,0.0008658008882775903,0.00032375031150877476,0.0005050505278632045,0.00045913681969977915,-0.01302308775484562,0.010169552639126778,0.0007215007208287716,0.0008658008882775903,-0.0013528139097616076,-0.00028860027668997645,-0.00034632033202797174,3.9810548520952116e-19,2.507217523872729e-19,5.827586677109586e-19,-0.007903208024799824,0.0007215007208287716,0.0030914763920009136,0.0005050505278632045,1.195186236042663e-18,-0.00014430013834498823,1.0164395367051604e-20,-0.00021583355555776507,-0.00010101010411744937,2.0328790734103208e-20,-0.009372950531542301,0.0008658008882775903,0.0005050505278632045,0.004573330748826265,1.0891883138203975e-18,2.9840641560437503e-35,-0.00021645022206939757,3.6009272327707355e-21,-0.00012626263196580112,-0.00039354583714157343,0.0009018759010359645,-0.0013528139097616076,1.195186236042663e-18,1.0891883138203975e-18,0.00027056277031078935,-1.1362788789124288e-19,2.3301803566377644e-35,-7.188701001332171e-20,-4.8061604045334676e-20,-1.0611003104466055e-19,0.0007215007208287716,-0.00028860027668997645,-0.00014430013834498823,2.9840641560437503e-35,-1.1362788789124288e-19,5.77200589759741e-05,2.117582368135751e-22,-5.082197683525802e-21,-8.470329472543003e-22,1.74968528362679e-22,0.0008658008882775903,-0.00034632033202797174,1.0164395367051604e-20,-0.00021645022206939757,2.3301803566377644e-35,2.117582368135751e-22,8.658008300699294e-05,0.0,-3.3881317890172014e-21,-6.776263578034403e-21,0.00032375031150877476,3.9810548520952116e-19,-0.00021583355555776507,3.6009272327707355e-21,-7.188701001332171e-20,-5.082197683525802e-21,0.0,2.1583355191978626e-05,0.0,0.0,0.0005050505278632045,2.507217523872729e-19,-0.00010101010411744937,-0.00012626263196580112,-4.8061604045334676e-20,-8.470329472543003e-22,-3.3881317890172014e-21,0.0,2.5252526029362343e-05,-5.082197683525802e-21,0.00045913681969977915,5.827586677109586e-19,2.0328790734103208e-20,-0.00039354583714157343,-1.0611003104466055e-19,1.74968528362679e-22,-6.776263578034403e-21,0.0,-5.082197683525802e-21,4.919322964269668e-05,6.0,11.0,10.0,0.04886098578572273,-0.01179161760956049,-0.007154209539294243,-0.00776269193738699,0.000811688310932368,0.0006493506371043622,0.0007083825184963644,0.00029137529782019556,0.0004132231406401843,0.000344352622050792,-0.01179161760956049,0.009180932305753231,0.0006493506371043622,0.0007083825184963644,-0.0012175324372947216,-0.0002597402490209788,-0.00028335300157777965,3.3881317890172014e-19,1.9312351197398048e-19,3.9302328752599536e-19,-0.007154209539294243,0.0006493506371043622,0.00279059330932796,0.0004132231406401843,1.0540336547747767e-18,-0.0001298701245104894,-3.3881317890172014e-21,-0.00019425019854679704,-8.264462667284533e-05,0.0,-0.00776269193738699,0.0007083825184963644,0.0004132231406401843,0.0033607175573706627,1.1759636959802729e-18,-3.119175407850642e-35,-0.00015741834067739546,4.5736039875310824e-21,-9.182736539514735e-05,-0.00025826445198617876,0.000811688310932368,-0.0012175324372947216,1.0540336547747767e-18,1.1759636959802729e-18,0.00024350649619009346,-9.203859668823104e-20,-1.1156192676320927e-19,-6.469831288939866e-20,-3.9323129113830977e-20,-7.782702630380768e-20,0.0006493506371043622,-0.0002597402490209788,-0.0001298701245104894,-3.119175407850642e-35,-9.203859668823104e-20,5.194805271457881e-05,1.4610433736603037e-36,-3.3881317890172014e-21,8.522752863546602e-37,1.5387161096668275e-22,0.0007083825184963644,-0.00028335300157777965,-3.3881317890172014e-21,-0.00015741834067739546,-1.1156192676320927e-19,1.4610433736603037e-36,6.296733772614971e-05,-2.117582368135751e-22,8.470329472543003e-22,1.6940658945086007e-21,0.00029137529782019556,3.3881317890172014e-19,-0.00019425019854679704,4.5736039875310824e-21,-6.469831288939866e-20,-3.3881317890172014e-21,-2.117582368135751e-22,1.942501876328606e-05,0.0,0.0,0.0004132231406401843,1.9312351197398048e-19,-8.264462667284533e-05,-9.182736539514735e-05,-3.9323129113830977e-20,8.522752863546602e-37,8.470329472543003e-22,0.0,1.8365473806625232e-05,0.0,0.000344352622050792,3.9302328752599536e-19,0.0,-0.00025826445198617876,-7.782702630380768e-20,1.5387161096668275e-22,1.6940658945086007e-21,0.0,0.0,2.8696051231236197e-05,6.0,11.0,11.0,0.044989101588726044,-0.010773317888379097,-0.006535131484270096,-0.006535131484270096,0.0007378984591923654,0.0005903187557123601,0.0005903187557123601,0.0002648866211529821,0.000344352622050792,0.0002648866211529821,-0.010773317888379097,0.008367768488824368,0.0005903187557123601,0.0005903187557123601,-0.0011068476596847177,-0.0002361275110160932,-0.0002361275110160932,3.1001405869507392e-19,1.6940658945086007e-19,3.1848438816761693e-19,-0.006535131484270096,0.0005903187557123601,0.002543163951486349,0.000344352622050792,9.421752613101496e-19,-0.0001180637555080466,6.776263578034403e-21,-0.00017659108561929315,-6.887052586534992e-05,1.0164395367051604e-20,-0.006535131484270096,0.0005903187557123601,0.000344352622050792,0.002543163951486349,9.421752613101496e-19,-2.2058431049506558e-21,-0.0001180637555080466,-5.3907421104598335e-21,-6.887052586534992e-05,-0.00017659108561929315,0.0007378984591923654,-0.0011068476596847177,9.421752613101496e-19,9.421752613101496e-19,0.00022136954066809267,-7.606495065331073e-20,-7.606495065331073e-20,-5.881664514384035e-20,-3.276927372299677e-20,-5.881664514384035e-20,0.0005903187557123601,-0.0002361275110160932,-0.0001180637555080466,-2.2058431049506558e-21,-7.606495065331073e-20,4.722550147562288e-05,-3.475135024751199e-24,-3.3881317890172014e-21,4.832521515705571e-22,9.982476242051008e-23,0.0005903187557123601,-0.0002361275110160932,6.776263578034403e-21,-0.0001180637555080466,-7.606495065331073e-20,-3.475135024751199e-24,4.722550147562288e-05,0.0,-1.6940658945086007e-21,-5.082197683525802e-21,0.0002648866211529821,3.1001405869507392e-19,-0.00017659108561929315,-5.3907421104598335e-21,-5.881664514384035e-20,-3.3881317890172014e-21,0.0,1.7659109289525077e-05,8.470329472543003e-22,4.235164736271502e-22,0.000344352622050792,1.6940658945086007e-19,-6.887052586534992e-05,-6.887052586534992e-05,-3.276927372299677e-20,4.832521515705571e-22,-1.6940658945086007e-21,8.470329472543003e-22,1.3774104445474222e-05,-3.3881317890172014e-21,0.0002648866211529821,3.1848438816761693e-19,1.0164395367051604e-20,-0.00017659108561929315,-5.881664514384035e-20,9.982476242051008e-23,-5.082197683525802e-21,4.235164736271502e-22,-3.3881317890172014e-21,1.7659109289525077e-05,6.0,11.0,12.0,0.04168747738003731,-0.009917166084051132,-0.006014818325638771,-0.005577755626291037,0.0006764069548808038,0.0005411255406215787,0.0004995004856027663,0.0002428127481834963,0.00029137529782019556,0.00020812520233448595,-0.009917166084051132,0.0076871044002473354,0.0005411255406215787,0.0004995004856027663,-0.0010146104032173753,-0.00021645022206939757,-0.00019980019715148956,-6.352747104407253e-19,1.0842021724855044e-19,5.082197683525802e-19,-0.006014818325638771,0.0005411255406215787,0.0023360897321254015,0.00029137529782019556,-1.3216320630072393e-18,-0.00010822511103469878,1.0672615135404184e-19,-0.00016187515575438738,-5.827505810884759e-05,5.692061405548898e-19,-0.005577755626291037,0.0004995004856027663,0.00029137529782019556,0.0019715132657438517,1.0320603255853415e-18,2.4657936112657805e-19,-9.081827010959387e-05,7.208064782484154e-19,-5.297732423059642e-05,-0.00012487512140069157,0.0006764069548808038,-0.0010146104032173753,-1.3216320630072393e-18,1.0320603255853415e-18,0.000202922077733092,1.2783138033999678e-19,-1.1562545475355029e-20,1.078305214823311e-19,-1.386392349819094e-20,-7.229046089474591e-20,0.0005411255406215787,-0.00021645022206939757,-0.00010822511103469878,2.4657936112657805e-19,1.2783138033999678e-19,4.329004150349647e-05,-2.9676773705015315e-23,2.710505431213761e-20,-1.5437354107256954e-21,-1.818507462848961e-20,0.0004995004856027663,-0.00019980019715148956,1.0672615135404184e-19,-9.081827010959387e-05,-1.1562545475355029e-20,-2.9676773705015315e-23,3.632731022662483e-05,-7.199780051661553e-21,-6.776263578034403e-21,-1.0164395367051604e-20,0.0002428127481834963,-6.352747104407253e-19,-0.00016187515575438738,7.208064782484154e-19,1.078305214823311e-19,2.710505431213761e-20,-7.199780051661553e-21,1.618751593923662e-05,-2.286988957586611e-20,-5.0186702124817295e-20,0.00029137529782019556,1.0842021724855044e-19,-5.827505810884759e-05,-5.297732423059642e-05,-1.386392349819094e-20,-1.5437354107256954e-21,-6.776263578034403e-21,-2.286988957586611e-20,1.0595465028018225e-05,-4.235164736271502e-21,0.00020812520233448595,5.082197683525802e-19,5.692061405548898e-19,-0.00012487512140069157,-7.229046089474591e-20,-1.818507462848961e-20,-1.0164395367051604e-20,-5.0186702124817295e-20,-4.235164736271502e-21,1.1352283763699234e-05,6.0,11.0,13.0,0.038838449865579605,-0.009187241084873676,-0.005571351852267981,-0.004816611763089895,0.0006243756506592035,0.0004995004856027663,0.00042814327753148973,0.00022413484111893922,0.00024975024280138314,0.00016650016186758876,-0.009187241084873676,0.007108962628990412,0.0004995004856027663,0.00042814327753148973,-0.0009365634177811444,-0.00019980019715148956,-0.00017125731392297894,2.541098841762901e-19,1.0333801956502464e-19,1.3552527156068805e-19,-0.005571351852267981,0.0004995004856027663,0.0021602329798042774,0.00024975024280138314,7.764314276116743e-19,-9.990009857574478e-05,-1.5246593050577406e-20,-0.00014942322741262615,-4.995004928787239e-05,-2.0328790734103208e-20,-0.004816611763089895,0.00042814327753148973,0.00024975024280138314,0.0015595875447615981,7.454584767552388e-19,-1.4045099803240546e-35,-7.135721534723416e-05,-5.1971499392765306e-21,-4.162504046689719e-05,-9.081827010959387e-05,0.0006243756506592035,-0.0009365634177811444,7.764314276116743e-19,7.454584767552388e-19,0.00018731268937699497,-5.446070557578758e-20,-7.780100888860347e-20,-4.976793224618952e-20,-2.3766726227696918e-20,-3.6010193212373674e-20,0.0004995004856027663,-0.00019980019715148956,-9.990009857574478e-05,-1.4045099803240546e-35,-5.446070557578758e-20,3.996003943029791e-05,6.4261807721762805e-37,8.470329472543003e-22,3.7486054504361636e-37,-5.375877547624769e-23,0.00042814327753148973,-0.00017125731392297894,-1.5246593050577406e-20,-7.135721534723416e-05,-7.780100888860347e-20,6.4261807721762805e-37,2.8542885047500022e-05,0.0,2.329340604949326e-21,6.776263578034403e-21,0.00022413484111893922,2.541098841762901e-19,-0.00014942322741262615,-5.1971499392765306e-21,-4.976793224618952e-20,8.470329472543003e-22,0.0,1.4942322195565794e-05,8.470329472543003e-22,0.0,0.00024975024280138314,1.0333801956502464e-19,-4.995004928787239e-05,-4.162504046689719e-05,-2.3766726227696918e-20,3.7486054504361636e-37,2.329340604949326e-21,8.470329472543003e-22,8.325007911480498e-06,3.8116482626443515e-21,0.00016650016186758876,1.3552527156068805e-19,-2.0328790734103208e-20,-9.081827010959387e-05,-3.6010193212373674e-20,-5.375877547624769e-23,6.776263578034403e-21,0.0,3.8116482626443515e-21,7.568189175799489e-06,6.0,11.0,14.0,0.03635471686720848,-0.008557514287531376,-0.005188858602195978,-0.0042014531791210175,0.0005797773483209312,0.00046382189611904323,0.0003710575110744685,0.00020812520233448595,0.00021645022206939757,0.00013528138515539467,-0.008557514287531376,0.006611781194806099,0.00046382189611904323,0.0003710575110744685,-0.0008696660515852273,-0.00018552875553723425,-0.00014842300151940435,2.31065407792387e-19,1.1180834903756764e-19,1.6601845766184287e-19,-0.005188858602195978,0.00046382189611904323,0.0020090227480977774,0.00021645022206939757,5.960166668701703e-19,-9.276437776861712e-05,8.470329472543003e-21,-0.0001387501397402957,-4.329004150349647e-05,1.0164395367051604e-20,-0.0042014531791210175,0.0003710575110744685,0.00021645022206939757,0.001255143666639924,6.240307926755037e-19,-0.0,-5.7085770095000044e-05,-1.6580149224087924e-34,-3.330003164592199e-05,-6.764069257769734e-05,0.0005797773483209312,-0.0008696660515852273,5.960166668701703e-19,6.240307926755037e-19,0.0001739332074066624,0.0,-5.779503831324615e-20,-4.6213078327303136e-20,-2.0597829612748946e-20,-2.8965696933673345e-20,0.00046382189611904323,-0.00018552875553723425,-9.276437776861712e-05,-0.0,0.0,3.710575037985109e-05,0.0,0.0,0.0,0.0,0.0003710575110744685,-0.00014842300151940435,8.470329472543003e-21,-5.7085770095000044e-05,-5.779503831324615e-20,0.0,2.283430876559578e-05,1.5355817617366593e-35,-1.2705494208814505e-21,-2.541098841762901e-21,0.00020812520233448595,2.31065407792387e-19,-0.0001387501397402957,-1.6580149224087924e-34,-4.6213078327303136e-20,0.0,1.5355817617366593e-35,1.387501379213063e-05,5.4727279700070964e-36,7.696024077765274e-36,0.00021645022206939757,1.1180834903756764e-19,-4.329004150349647e-05,-3.330003164592199e-05,-2.0597829612748946e-20,0.0,-1.2705494208814505e-21,5.4727279700070964e-36,6.660006874881219e-06,-1.0587911840678754e-21,0.00013528138515539467,1.6601845766184287e-19,1.0164395367051604e-20,-6.764069257769734e-05,-2.8965696933673345e-20,0.0,-2.541098841762901e-21,7.696024077765274e-36,-1.0587911840678754e-21,5.203130058362149e-06,6.0,11.0,15.0,0.03417012095451355,-0.008008657954633236,-0.0048555610701441765,-0.003697160631418228,0.0005411255406215787,0.00043290044413879514,0.0003246753185521811,0.00019425019854679704,0.00018939393339678645,0.00011140819697175175,-0.008008657954633236,0.006179653573781252,0.00043290044413879514,0.0003246753185521811,-0.000811688310932368,-0.00017316016601398587,-0.0001298701245104894,2.156610429646622e-19,8.470329472543003e-20,1.0842021724855044e-19,-0.0048555610701441765,0.00043290044413879514,0.0018776131328195333,0.00018939393339678645,7.620139797276048e-19,-8.658008300699294e-05,-5.082197683525802e-21,-0.00012950012751389295,-3.787878813454881e-05,-5.082197683525802e-21,-0.003697160631418228,0.0003246753185521811,0.00018939393339678645,0.00102521781809628,5.307883573903239e-19,-2.6749740005966502e-34,-4.638218888430856e-05,-1.4102750109925576e-34,-2.7056277758674696e-05,-5.141917063156143e-05,0.0005411255406215787,-0.000811688310932368,7.620139797276048e-19,5.307883573903239e-19,0.00016233765927609056,-8.181208522705553e-20,-4.382790303100648e-20,-4.313220859293244e-20,-1.8023100709206936e-20,-2.3650223008297652e-20,0.00043290044413879514,-0.00017316016601398587,-8.658008300699294e-05,-2.6749740005966502e-34,-8.181208522705553e-20,3.4632033930392936e-05,2.2087616338150666e-35,2.1737012807623122e-35,9.082966071167268e-36,1.191882395111681e-35,0.0003246753185521811,-0.0001298701245104894,-5.082197683525802e-21,-4.638218888430856e-05,-4.382790303100648e-20,2.2087616338150666e-35,1.8552875189925544e-05,1.1644827726075747e-35,6.352747104407253e-22,1.6940658945086007e-21,0.00019425019854679704,2.156610429646622e-19,-0.00012950012751389295,-1.4102750109925576e-34,-4.313220859293244e-20,2.1737012807623122e-35,1.1644827726075747e-35,1.2950013115187176e-05,4.788637108280862e-36,6.283731900099606e-36,0.00018939393339678645,8.470329472543003e-20,-3.787878813454881e-05,-2.7056277758674696e-05,-1.8023100709206936e-20,9.082966071167268e-36,6.352747104407253e-22,4.788637108280862e-36,5.4112551879370585e-06,1.0587911840678754e-21,0.00011140819697175175,1.0842021724855044e-19,-5.082197683525802e-21,-5.141917063156143e-05,-2.3650223008297652e-20,1.191882395111681e-35,1.6940658945086007e-21,6.283731900099606e-36,1.0587911840678754e-21,3.6727979022543877e-06,6.0,11.0,16.0,0.032233595848083496,-0.007526021916419268,-0.0045625329948961735,-0.0032785842195153236,0.0005073052016086876,0.000405844155466184,0.00028647822909988463,0.0001821095502236858,0.00016711230273358524,9.284016414312646e-05,-0.007526021916419268,0.005800587125122547,0.000405844155466184,0.00028647822909988463,-0.000760957773309201,-0.00016233765927609056,-0.00011459129018476233,2.021822253559901e-19,6.776263578034403e-20,7.453889935837843e-20,-0.0045625329948961735,0.000405844155466184,0.0017623512540012598,0.00016711230273358524,7.033978418717775e-19,-8.116882963804528e-05,-1.2705494208814505e-20,-0.00012140637409174815,-3.342246054671705e-05,-1.3552527156068805e-20,-0.0032785842195153236,0.00028647822909988463,0.00016711230273358524,0.0008482938865199685,4.575513369185273e-19,-2.1617687790619864e-34,-3.819709672825411e-05,-1.215688222014496e-34,-2.228163975814823e-05,-3.97886433347594e-05,0.0005073052016086876,-0.000760957773309201,7.033978418717775e-19,4.575513369185273e-19,0.0001521915546618402,-7.190514982566105e-20,-3.383771965577679e-20,-4.043644313249346e-20,-1.5902736300026622e-20,-1.9562889341538728e-20,0.000405844155466184,-0.00016233765927609056,-8.116882963804528e-05,-2.1617687790619864e-34,-7.190514982566105e-20,3.246753112762235e-05,1.598713069119731e-35,1.9104796553079856e-35,7.513483092530923e-36,9.242776336172888e-36,0.00028647822909988463,-0.00011459129018476233,-1.2705494208814505e-20,-3.819709672825411e-05,-3.383771965577679e-20,1.598713069119731e-35,1.5278837963705882e-05,8.990492031325053e-36,1.9058241313221758e-21,3.1763735522036263e-21,0.0001821095502236858,2.021822253559901e-19,-0.00012140637409174815,-1.215688222014496e-34,-4.043644313249346e-20,1.9104796553079856e-35,8.990492031325053e-36,1.2140637409174815e-05,4.2252679523107825e-36,5.197750253100845e-36,0.00016711230273358524,6.776263578034403e-20,-3.342246054671705e-05,-2.228163975814823e-05,-1.5902736300026622e-20,7.513483092530923e-36,1.9058241313221758e-21,4.2252679523107825e-36,4.456328042579116e-06,1.6940658945086007e-21,9.284016414312646e-05,7.453889935837843e-20,-1.3552527156068805e-20,-3.97886433347594e-05,-1.9562889341538728e-20,9.242776336172888e-36,3.1763735522036263e-21,5.197750253100845e-36,1.6940658945086007e-21,2.652576085893088e-06,6.0,12.0,3.0,0.11551180481910706,-0.032394688576459885,-0.018315019086003304,-0.05334249138832092,0.0024801588151603937,0.0018315018387511373,0.0059523810632526875,0.000763125775847584,0.0032051282469183207,0.0069444444961845875,-0.032394688576459885,0.026598747819662094,0.0018315018387511373,0.0059523810632526875,-0.0037202381063252687,-0.0007326007471419871,-0.0023809524718672037,-2.6477805838578064e-19,1.3823577699190182e-18,-1.5178830414797062e-17,-0.018315019086003304,0.0018315018387511373,0.006840381771326065,0.0032051282469183207,-3.4188695620857304e-19,-0.0003330003237351775,-1.0842021724855044e-19,-0.0004578754596877843,-0.0005827505956403911,-9.974659986866641e-18,-0.05334249138832092,0.0059523810632526875,0.0032051282469183207,0.12278693169355392,-5.248926275743522e-18,2.4740523375978748e-18,-0.0059523810632526875,-4.574240028029825e-19,-0.0032051282469183207,-0.0416666679084301,0.0024801588151603937,-0.0037202381063252687,-3.4188695620857304e-19,-5.248926275743522e-18,0.0007440476329065859,-2.710505431213761e-20,1.1435443164252118e-18,6.098637220230962e-20,-4.238294128549852e-20,1.0846721144710111e-18,0.0018315018387511373,-0.0007326007471419871,-0.0003330003237351775,2.4740523375978748e-18,-2.710505431213761e-20,0.00013320012658368796,-2.8140593966174504e-19,-1.0164395367051604e-20,-2.0979682356014993e-19,-2.5218581037270347e-19,0.0059523810632526875,-0.0023809524718672037,-1.0842021724855044e-19,-0.0059523810632526875,1.1435443164252118e-18,-2.8140593966174504e-19,0.0023809524718672037,5.81816741637808e-20,8.131516293641283e-20,1.214306433183765e-17,0.000763125775847584,-2.6477805838578064e-19,-0.0004578754596877843,-4.574240028029825e-19,6.098637220230962e-20,-1.0164395367051604e-20,5.81816741637808e-20,4.162504046689719e-05,-1.8261575910453694e-20,2.1270188187143616e-19,0.0032051282469183207,1.3823577699190182e-18,-0.0005827505956403911,-0.0032051282469183207,-4.238294128549852e-20,-2.0979682356014993e-19,8.131516293641283e-20,-1.8261575910453694e-20,0.0005827505956403911,7.37257477290143e-18,0.0069444444961845875,-1.5178830414797062e-17,-9.974659986866641e-18,-0.0416666679084301,1.0846721144710111e-18,-2.5218581037270347e-19,1.214306433183765e-17,2.1270188187143616e-19,7.37257477290143e-18,0.02083333395421505,6.0,12.0,4.0,0.09428800642490387,-0.025188874453306198,-0.014217033050954342,-0.034088827669620514,0.0018601190531626344,0.0013736264081671834,0.0035714285913854837,0.0005723443464376032,0.001923076924867928,0.0034722222480922937,-0.025188874453306198,0.02030620351433754,0.0013736264081671834,0.0035714285913854837,-0.0027901786379516125,-0.0005494505749084055,-0.0014285714132711291,-2.3852447794681098e-18,-4.445228907190568e-18,9.314363890076799e-18,-0.014217033050954342,0.0013736264081671834,0.005217698868364096,0.001923076924867928,-5.692061405548898e-18,-0.00024975024280138314,-2.710505431213761e-18,-0.00034340660204179585,-0.00034965036320500076,-8.586004994341833e-19,-0.034088827669620514,0.0035714285913854837,0.001923076924867928,0.04703143984079361,4.2656099458971284e-18,-2.5963888346768642e-18,-0.0023809524718672037,0.0,-0.0012820513220503926,-0.010416666977107525,0.0018601190531626344,-0.0027901786379516125,-5.692061405548898e-18,4.2656099458971284e-18,0.0005580357392318547,4.845028458294598e-19,-6.369687763352339e-19,3.2695471764015993e-19,4.2690460541616737e-19,-1.6649321797441768e-18,0.0013736264081671834,-0.0005494505749084055,-0.00024975024280138314,-2.5963888346768642e-18,4.845028458294598e-19,9.990009857574478e-05,2.1006417091906648e-19,7.115076756936123e-20,2.439454888092385e-19,2.270058121411299e-19,0.0035714285913854837,-0.0014285714132711291,-2.710505431213761e-18,-0.0023809524718672037,-6.369687763352339e-19,2.1006417091906648e-19,0.0009523809421807528,1.3552527156068805e-19,3.9302328752599536e-19,-9.247091358809393e-19,0.0005723443464376032,-2.3852447794681098e-18,-0.00034340660204179585,0.0,3.2695471764015993e-19,7.115076756936123e-20,1.3552527156068805e-19,3.121878035017289e-05,2.371692252312041e-20,-1.4431727089393762e-19,0.001923076924867928,-4.445228907190568e-18,-0.00034965036320500076,-0.0012820513220503926,4.2690460541616737e-19,2.439454888092385e-19,3.9302328752599536e-19,2.371692252312041e-20,0.00023310023243539035,1.2812286327822398e-18,0.0034722222480922937,9.314363890076799e-18,-8.586004994341833e-19,-0.010416666977107525,-1.6649321797441768e-18,2.270058121411299e-19,-9.247091358809393e-19,-1.4431727089393762e-19,1.2812286327822398e-18,0.0034722222480922937,6.0,12.0,5.0,0.07977716624736786,-0.02062729001045227,-0.011630036868155003,-0.02371794916689396,0.0014880952658131719,0.001098901149816811,0.0023809524718672037,0.0004578754596877843,0.0012820513220503926,0.0019841270986944437,-0.02062729001045227,0.01643543876707554,0.001098901149816811,0.0023809524718672037,-0.0022321429569274187,-0.00043956044828519225,-0.0009523809421807528,-9.73240856395191e-19,-3.2526065174565133e-19,-3.2526065174565133e-19,-0.011630036868155003,0.001098901149816811,0.004220779053866863,0.0012820513220503926,-8.978549240895584e-19,-0.00019980019715148956,-1.07742590890747e-18,-0.00027472528745420277,-0.00023310023243539035,8.673617379884035e-19,-0.02371794916689396,0.0023809524718672037,0.0012820513220503926,0.023763736709952354,-1.0842021724855044e-19,2.2768245622195593e-18,-0.0011904762359336019,-1.3552527156068805e-19,-0.0006410256610251963,-0.003968254197388887,0.0014880952658131719,-0.0022321429569274187,-8.978549240895584e-19,-1.0842021724855044e-19,0.00044642857392318547,-3.478500236962854e-19,-3.635289737132866e-19,1.308665903507894e-19,8.015677403671474e-20,9.088917106595178e-20,0.001098901149816811,-0.00043956044828519225,-0.00019980019715148956,2.2768245622195593e-18,-3.478500236962854e-19,7.992007886059582e-05,-1.2197274440461925e-19,1.9724811562033117e-20,-1.1180834903756764e-19,-3.1170812458958252e-19,0.0023809524718672037,-0.0009523809421807528,-1.07742590890747e-18,-0.0011904762359336019,-3.635289737132866e-19,-1.2197274440461925e-19,0.0004761904710903764,7.407162632281693e-20,2.642742795433417e-19,8.538092108323347e-19,0.0004578754596877843,-9.73240856395191e-19,-0.00027472528745420277,-1.3552527156068805e-19,1.308665903507894e-19,1.9724811562033117e-20,7.407162632281693e-20,2.4975024643936194e-05,-7.188735898014263e-21,-4.246034002611548e-21,0.0012820513220503926,-3.2526065174565133e-19,-0.00023310023243539035,-0.0006410256610251963,8.015677403671474e-20,-1.1180834903756764e-19,2.642742795433417e-19,-7.188735898014263e-21,0.00011655011621769518,4.743384504624082e-20,0.0019841270986944437,-3.2526065174565133e-19,8.673617379884035e-19,-0.003968254197388887,9.088917106595178e-20,-3.1170812458958252e-19,8.538092108323347e-19,-4.246034002611548e-21,4.743384504624082e-20,0.0009920635493472219,6.0,12.0,6.0,0.06918643414974213,-0.017472853884100914,-0.009844322688877583,-0.017472853884100914,0.0012400794075801969,0.0009157509193755686,0.001700680237263441,0.000381562887923792,0.0009157509193755686,0.0012400794075801969,-0.017472853884100914,0.013809578493237495,0.0009157509193755686,0.001700680237263441,-0.0018601190531626344,-0.00036630037357099354,-0.0006802721181884408,-4.573977915173222e-20,1.5720931501039814e-18,3.5236570605778894e-18,-0.009844322688877583,0.0009157509193755686,0.0035450661089271307,0.0009157509193755686,3.049318610115481e-20,-0.00016650016186758876,1.7279472123987727e-18,-0.00022893772984389216,-0.00016650016186758876,1.5449880957918438e-18,-0.017472853884100914,0.001700680237263441,0.0009157509193755686,0.013809578493237495,8.673617379884035e-19,3.06287113727155e-18,-0.0006802721181884408,3.6591823321385775e-19,-0.00036630037357099354,-0.0018601190531626344,0.0012400794075801969,-0.0018601190531626344,3.049318610115481e-20,8.673617379884035e-19,0.00037202381645329297,-8.059282908208804e-21,2.9073289220676913e-19,2.456395547037471e-20,-9.776410824377581e-20,-1.966748826870062e-19,0.0009157509193755686,-0.00036630037357099354,-0.00016650016186758876,3.06287113727155e-18,-8.059282908208804e-21,6.660006329184398e-05,-2.676624113323589e-19,-1.3073923805988926e-21,-1.0164395367051604e-19,-3.4558944247975454e-19,0.001700680237263441,-0.0006802721181884408,1.7279472123987727e-18,-0.0006802721181884408,2.9073289220676913e-19,-2.676624113323589e-19,0.0002721088530961424,-3.630563886272289e-20,-1.7279472123987727e-19,-1.7618285302889447e-19,0.000381562887923792,-4.573977915173222e-20,-0.00022893772984389216,3.6591823321385775e-19,2.456395547037471e-20,-1.3073923805988926e-21,-3.630563886272289e-20,2.0812520233448595e-05,-6.6253939930197566e-21,-4.628604470461826e-20,0.0009157509193755686,1.5720931501039814e-18,-0.00016650016186758876,-0.00036630037357099354,-9.776410824377581e-20,-1.0164395367051604e-19,-1.7279472123987727e-19,-6.6253939930197566e-21,6.660006329184398e-05,2.710505431213761e-20,0.0012400794075801969,3.5236570605778894e-18,1.5449880957918438e-18,-0.0018601190531626344,-1.966748826870062e-19,-3.4558944247975454e-19,-1.7618285302889447e-19,-4.628604470461826e-20,2.710505431213761e-20,0.00037202381645329297,6.0,12.0,7.0,0.06110093742609024,-0.015158948488533497,-0.008536106906831264,-0.013414660468697548,0.0010629252064973116,0.0007849293760955334,0.0012755101779475808,0.0003270538873039186,0.0006868132040835917,0.0008267195662483573,-0.015158948488533497,0.011909667402505875,0.0007849293760955334,0.0012755101779475808,-0.0015943878097459674,-0.00031397174461744726,-0.0005102040595375001,6.649208635946258e-19,1.2197274440461925e-18,5.800481622797449e-18,-0.008536106906831264,0.0007849293760955334,0.003056467277929187,0.0006868132040835917,1.2485265642528387e-18,-0.00014271443069446832,9.33430307874239e-19,-0.00019623234402388334,-0.00012487512140069157,1.1655173354219173e-18,-0.013414660468697548,0.0012755101779475808,0.0006868132040835917,0.008770495653152466,6.0173220572945496e-18,1.328147661294743e-18,-0.00042517005931586027,2.0328790734103208e-19,-0.00022893772984389216,-0.0009920635493472219,0.0010629252064973116,-0.0015943878097459674,1.2485265642528387e-18,6.0173220572945496e-18,0.0003188775444868952,1.032906311632133e-19,-5.493807409223134e-19,-1.105377996166862e-19,-1.4440584384296615e-19,-5.628474997886181e-19,0.0007849293760955334,-0.00031397174461744726,-0.00014271443069446832,1.328147661294743e-18,1.032906311632133e-19,5.7085770095000044e-05,-7.453889935837843e-20,-4.125593597366986e-21,-1.3552527156068805e-20,-1.5924219408380846e-19,0.0012755101779475808,-0.0005102040595375001,9.33430307874239e-19,-0.00042517005931586027,-5.493807409223134e-19,-7.453889935837843e-20,0.0001700680295471102,-3.0454476633426745e-20,-1.3891340334970526e-19,-6.572975670693371e-19,0.0003270538873039186,6.649208635946258e-19,-0.00019623234402388334,2.0328790734103208e-19,-1.105377996166862e-19,-4.125593597366986e-21,-3.0454476633426745e-20,1.783930383680854e-05,7.060017224295635e-21,-2.222616696030226e-20,0.0006868132040835917,1.2197274440461925e-18,-0.00012487512140069157,-0.00022893772984389216,-1.4440584384296615e-19,-1.3552527156068805e-20,-1.3891340334970526e-19,7.060017224295635e-21,4.162504046689719e-05,-1.6432439176733427e-19,0.0008267195662483573,5.800481622797449e-18,1.1655173354219173e-18,-0.0009920635493472219,-5.628474997886181e-19,-1.5924219408380846e-19,-6.572975670693371e-19,-2.222616696030226e-20,-1.6432439176733427e-19,0.0001653439103392884,6.0,12.0,8.0,0.05471929535269737,-0.013388087972998619,-0.007535866927355528,-0.010626526549458504,0.0009300595265813172,0.0006868132040835917,0.0009920635493472219,0.0002861721732188016,0.0005341880605556071,0.0005787037080153823,-0.013388087972998619,0.010470562614500523,0.0006868132040835917,0.0009920635493472219,-0.0013950893189758062,-0.00027472528745420277,-0.00039682540227659047,2.1429933565533799e-19,2.473336205982557e-19,6.883823424048321e-19,-0.007535866927355528,0.0006868132040835917,0.002686549676582217,0.0005341880605556071,8.344761904593805e-19,-0.00012487512140069157,-7.394092532368502e-20,-0.00017170330102089792,-9.712509927339852e-05,3.955230273371306e-19,-0.010626526549458504,0.0009920635493472219,0.0005341880605556071,0.00592966889962554,1.1180106984817718e-18,-8.010594120313395e-20,-0.00028344671591185033,2.168404344971009e-19,-0.00015262515807989985,-0.0005787037080153823,0.0009300595265813172,-0.0013950893189758062,8.344761904593805e-19,1.1180106984817718e-18,0.00027901786961592734,1.2972671931081999e-20,5.0125471372442764e-20,-6.263522750646337e-20,-5.0834387775620584e-20,-1.3767647106590584e-19,0.0006868132040835917,-0.00027472528745420277,-0.00012487512140069157,-8.010594120313395e-20,1.2972671931081999e-20,4.995004928787239e-05,2.9576369483239154e-20,2.0328790734103208e-20,8.470329472543003e-22,-4.5345968800478933e-35,0.0009920635493472219,-0.00039682540227659047,-7.394092532368502e-20,-0.00028344671591185033,5.0125471372442764e-20,2.9576369483239154e-20,0.00011337868636474013,0.0,-9.027796614315168e-36,-2.473353473570663e-35,0.0002861721732188016,2.1429933565533799e-19,-0.00017170330102089792,2.168404344971009e-19,-6.263522750646337e-20,2.0328790734103208e-20,0.0,1.5609390175086446e-05,0.0,-3.0808719961926847e-20,0.0005341880605556071,2.473336205982557e-19,-9.712509927339852e-05,-0.00015262515807989985,-5.0834387775620584e-20,8.470329472543003e-22,-9.027796614315168e-36,0.0,2.775002758426126e-05,-1.617917456774559e-20,0.0005787037080153823,6.883823424048321e-19,3.955230273371306e-19,-0.0005787037080153823,-1.3767647106590584e-19,-4.5345968800478933e-35,-2.473353473570663e-35,-3.0808719961926847e-20,-1.617917456774559e-20,8.26719551696442e-05,6.0,12.0,9.0,0.04955121874809265,-0.011988705955445766,-0.0067460318095982075,-0.008627483621239662,0.0008267195662483573,0.0006105006323195994,0.0007936508045531809,0.0002543752489145845,0.0004273504309821874,0.0004208754107821733,-0.011988705955445766,0.009342440403997898,0.0006105006323195994,0.0007936508045531809,-0.0012400794075801969,-0.00024420025874860585,-0.0003174603043589741,3.032377951170395e-19,1.9651164376299768e-19,4.86337635825679e-19,-0.0067460318095982075,0.0006105006323195994,0.0023966773878782988,0.0004273504309821874,9.754090001782691e-19,-0.00011100011033704504,-5.63256668966723e-34,-0.00015262515807989985,-7.770007505314425e-05,2.8057749242887904e-19,-0.008627483621239662,0.0007936508045531809,0.0004273504309821874,0.004201123025268316,1.3598577334745398e-18,-1.0514949502331462e-20,-0.00019841270113829523,2.507217523872729e-19,-0.00010683760774554685,-0.0003607503604143858,0.0008267195662483573,-0.0012400794075801969,9.754090001782691e-19,1.3598577334745398e-18,0.00024801588733680546,-8.012223278379212e-20,-1.4321849069713163e-19,-5.567575634744555e-20,-4.066751086673132e-20,-9.72675284576055e-20,0.0006105006323195994,-0.00024420025874860585,-0.00011100011033704504,-1.0514949502331462e-20,-8.012223278379212e-20,4.4400043407222256e-05,4.626713909398794e-35,-2.541098841762901e-21,1.2705494208814505e-21,3.112614048636079e-35,0.0007936508045531809,-0.0003174603043589741,-5.63256668966723e-34,-0.00019841270113829523,-1.4321849069713163e-19,4.626713909398794e-35,7.936507608974352e-05,3.2150353076418316e-35,2.3483736858914762e-35,5.616781201027003e-35,0.0002543752489145845,3.032377951170395e-19,-0.00015262515807989985,2.507217523872729e-19,-5.567575634744555e-20,-2.541098841762901e-21,3.2150353076418316e-35,1.387501379213063e-05,-1.4399560103323106e-20,-2.176616083566901e-20,0.0004273504309821874,1.9651164376299768e-19,-7.770007505314425e-05,-0.00010683760774554685,-4.066751086673132e-20,1.2705494208814505e-21,2.3483736858914762e-35,-1.4399560103323106e-20,1.942501876328606e-05,-1.0287433636407465e-20,0.0004208754107821733,4.86337635825679e-19,2.8057749242887904e-19,-0.0003607503604143858,-9.72675284576055e-20,3.112614048636079e-35,5.616781201027003e-35,-2.176616083566901e-20,-1.0287433636407465e-20,4.5093795051798224e-05,6.0,12.0,10.0,0.04527902603149414,-0.010854770429432392,-0.006106393411755562,-0.007144938223063946,0.0007440476329065859,0.0005494505749084055,0.0006493506371043622,0.00022893772984389216,0.00034965036320500076,0.00031565656536258757,-0.010854770429432392,0.008434169925749302,0.0005494505749084055,0.0006493506371043622,-0.0011160714784637094,-0.00021978022414259613,-0.0002597402490209788,-4.1843427594362437e-19,-3.049318610115481e-19,-5.963111948670274e-19,-0.006106393411755562,0.0005494505749084055,0.0021633668802678585,0.00034965036320500076,-1.7263357611679428e-18,-9.990009857574478e-05,3.049318610115481e-20,-0.00013736264372710139,-6.357279198709875e-05,-2.541098841762901e-19,-0.007144938223063946,0.0006493506371043622,0.00034965036320500076,0.003087132703512907,-1.8845109956591345e-18,-2.2957973809786636e-21,-0.00014430013834498823,-3.3814031917219653e-19,-7.770007505314425e-05,-0.0002367424312978983,0.0007440476329065859,-0.0011160714784637094,-1.7263357611679428e-18,-1.8845109956591345e-18,0.00022321428696159273,1.2979801517103867e-19,9.374300880274509e-20,1.0021636271787169e-19,6.654683537625593e-20,1.4268287832580647e-19,0.0005494505749084055,-0.00021978022414259613,-9.990009857574478e-05,-2.2957973809786636e-21,1.2979801517103867e-19,3.996003943029791e-05,1.4320766894861707e-24,-1.5246593050577406e-20,4.8129941159666025e-22,6.833494338613807e-23,0.0006493506371043622,-0.0002597402490209788,3.049318610115481e-20,-0.00014430013834498823,9.374300880274509e-20,1.4320766894861707e-24,5.77200589759741e-05,0.0,-6.3527471044072525e-21,-2.371692252312041e-20,0.00022893772984389216,-4.1843427594362437e-19,-0.00013736264372710139,-3.3814031917219653e-19,1.0021636271787169e-19,-1.5246593050577406e-20,0.0,1.2487512321968097e-05,9.740878893424454e-21,3.176373552203626e-20,0.00034965036320500076,-3.049318610115481e-19,-6.357279198709875e-05,-7.770007505314425e-05,6.654683537625593e-20,4.8129941159666025e-22,-6.3527471044072525e-21,9.740878893424454e-21,1.41272867040243e-05,-2.1175823681357508e-20,0.00031565656536258757,-5.963111948670274e-19,-2.541098841762901e-19,-0.0002367424312978983,1.4268287832580647e-19,6.833494338613807e-23,-2.371692252312041e-20,3.176373552203626e-20,-2.1175823681357508e-20,2.630471317388583e-05,6.0,12.0,11.0,0.04168747738003731,-0.009917166084051132,-0.005577755626291037,-0.006014818325638771,0.0006764069548808038,0.0004995004856027663,0.0005411255406215787,0.00020812520233448595,0.00029137529782019556,0.0002428127481834963,-0.009917166084051132,0.0076871044002473354,0.0004995004856027663,0.0005411255406215787,-0.0010146104032173753,-0.00019980019715148956,-0.00021645022206939757,2.812149384884277e-19,-7.962109704190423e-20,-9.215718466126788e-19,-0.005577755626291037,0.0004995004856027663,0.0019715132657438517,0.00029137529782019556,1.0320603255853415e-18,-9.081827010959387e-05,-4.62479989200848e-19,-0.00012487512140069157,-5.297732423059642e-05,-7.657177843178875e-19,-0.006014818325638771,0.0005411255406215787,0.00029137529782019556,0.0023360897321254015,-1.3216320630072393e-18,-6.038624232814475e-19,-0.00010822511103469878,-6.756543592231139e-19,-5.827505810884759e-05,-0.00016187515575438738,0.0006764069548808038,-0.0010146104032173753,1.0320603255853415e-18,-1.3216320630072393e-18,0.000202922077733092,-1.1562545475355029e-20,1.2783138033999678e-19,-7.229046089474591e-20,-1.386392349819094e-20,1.078305214823311e-19,0.0004995004856027663,-0.00019980019715148956,-9.081827010959387e-05,-6.038624232814475e-19,-1.1562545475355029e-20,3.632731022662483e-05,2.2893213807318117e-20,-1.1858461261560205e-20,1.1252035282775833e-20,4.461688470136575e-20,0.0005411255406215787,-0.00021645022206939757,-4.62479989200848e-19,-0.00010822511103469878,1.2783138033999678e-19,2.2893213807318117e-20,4.329004150349647e-05,2.9010878443459787e-20,1.7787691892340307e-20,2.625802136488331e-20,0.00020812520233448595,2.812149384884277e-19,-0.00012487512140069157,-6.756543592231139e-19,-7.229046089474591e-20,-1.1858461261560205e-20,2.9010878443459787e-20,1.1352283763699234e-05,1.7787691892340307e-20,4.5104504441291493e-20,0.00029137529782019556,-7.962109704190423e-20,-5.297732423059642e-05,-5.827505810884759e-05,-1.386392349819094e-20,1.1252035282775833e-20,1.7787691892340307e-20,1.7787691892340307e-20,1.0595465028018225e-05,2.710505431213761e-20,0.0002428127481834963,-9.215718466126788e-19,-7.657177843178875e-19,-0.00016187515575438738,1.078305214823311e-19,4.461688470136575e-20,2.625802136488331e-20,4.5104504441291493e-20,2.710505431213761e-20,1.618751593923662e-05,6.0,12.0,12.0,0.03862541541457176,-0.009128891862928867,-0.005133488215506077,-0.005133488215506077,0.0006200397037900984,0.0004578754596877843,0.0004578754596877843,0.000190781443961896,0.00024654832668602467,0.000190781443961896,-0.009128891862928867,0.007061774842441082,0.0004578754596877843,0.0004578754596877843,-0.0009300595265813172,-0.00018315018678549677,-0.00018315018678549677,1.4399560103323106e-19,9.147955830346444e-20,1.4230153513872246e-19,-0.005133488215506077,0.0004578754596877843,0.0018109561642631888,0.00024654832668602467,5.883661250834556e-19,-8.325008093379438e-05,-2.710505431213761e-20,-0.00011446886492194608,-4.482696749619208e-05,8.809142651444724e-20,-0.005133488215506077,0.0004578754596877843,0.00024654832668602467,0.0018109561642631888,5.883661250834556e-19,-1.762425829008216e-21,-8.325008093379438e-05,1.518604989208706e-19,-4.482696749619208e-05,-0.00011446886492194608,0.0006200397037900984,-0.0009300595265813172,5.883661250834556e-19,5.883661250834556e-19,0.00018601190822664648,-4.872084866794448e-35,-6.51924116013752e-35,-4.175681726058416e-20,-2.3462024878657633e-20,-4.175681726058416e-20,0.0004578754596877843,-0.00018315018678549677,-8.325008093379438e-05,-1.762425829008216e-21,-4.872084866794448e-35,3.330003164592199e-05,8.101913254449535e-23,1.1858461261560205e-20,4.3625686754728263e-23,-8.672497609373341e-23,0.0004578754596877843,-0.00018315018678549677,-2.710505431213761e-20,-8.325008093379438e-05,-6.51924116013752e-35,8.101913254449535e-23,3.330003164592199e-05,1.0587911840678754e-22,4.658681209898652e-21,1.1858461261560205e-20,0.000190781443961896,1.4399560103323106e-19,-0.00011446886492194608,1.518604989208706e-19,-4.175681726058416e-20,1.1858461261560205e-20,1.0587911840678754e-22,1.0406260116724297e-05,-9.317362419797304e-21,-9.317362419797304e-21,0.00024654832668602467,9.147955830346444e-20,-4.482696749619208e-05,-4.482696749619208e-05,-2.3462024878657633e-20,4.3625686754728263e-23,4.658681209898652e-21,-9.317362419797304e-21,8.150357643899042e-06,2.964615315390051e-21,0.000190781443961896,1.4230153513872246e-19,8.809142651444724e-20,-0.00011446886492194608,-4.175681726058416e-20,-8.672497609373341e-23,1.1858461261560205e-20,-9.317362419797304e-21,2.964615315390051e-21,1.0406260116724297e-05,6.0,12.0,13.0,0.03598347678780556,-0.008456858806312084,-0.004754860419780016,-0.004432838410139084,0.0005723443464376032,0.0004226542660035193,0.0003924646880477667,0.00017610593931749463,0.00021132713300175965,0.00015262515807989985,-0.008456858806312084,0.006530637387186289,0.0004226542660035193,0.0003924646880477667,-0.0008585164905525744,-0.00016906170640140772,-0.00015698587230872363,-1.1096131609031334e-19,-2.778268066994105e-19,-1.9989977555201488e-19,-0.004754860419780016,0.0004226542660035193,0.0016746073961257935,0.00021132713300175965,-1.504054106752074e-19,-7.684623415116221e-05,-2.744386749103933e-19,-0.00010566356650087982,-3.8423117075581104e-05,-2.371692252312041e-20,-0.004432838410139084,0.0003924646880477667,0.00021132713300175965,0.001432557008229196,-3.0133721841272823e-19,-2.8611590606962197e-19,-6.541077891597524e-05,-6.289442584387657e-20,-3.522119004628621e-05,-8.325008093379438e-05,0.0005723443464376032,-0.0008585164905525744,-1.504054106752074e-19,-3.0133721841272823e-19,0.00017170330102089792,-1.692734650710273e-20,-2.73723616852726e-21,1.6758589343290018e-21,1.9272377694296423e-20,1.1553269581825784e-20,0.0004226542660035193,-0.00016906170640140772,-7.684623415116221e-05,-2.8611590606962197e-19,-1.692734650710273e-20,3.073849075008184e-05,3.1381183875776094e-20,6.776263578034403e-21,1.2116711249325808e-20,8.922532311319551e-21,0.0003924646880477667,-0.00015698587230872363,-2.744386749103933e-19,-6.541077891597524e-05,-2.73723616852726e-21,3.1381183875776094e-20,2.616431265778374e-05,6.988021814847978e-21,1.4399560103323106e-20,1.1011428314305904e-20,0.00017610593931749463,-1.1096131609031334e-19,-0.00010566356650087982,-6.289442584387657e-20,1.6758589343290018e-21,6.776263578034403e-21,6.988021814847978e-21,9.605779268895276e-06,5.505714157152952e-21,2.117582368135751e-22,0.00021132713300175965,-2.778268066994105e-19,-3.8423117075581104e-05,-3.522119004628621e-05,1.9272377694296423e-20,1.2116711249325808e-20,1.4399560103323106e-20,5.505714157152952e-21,6.403852694347734e-06,-2.117582368135751e-21,0.00015262515807989985,-1.9989977555201488e-19,-2.371692252312041e-20,-8.325008093379438e-05,1.1553269581825784e-20,8.922532311319551e-21,1.1011428314305904e-20,2.117582368135751e-22,-2.117582368135751e-21,6.937506896065315e-06,6.0,12.0,14.0,0.03368055447936058,-0.007877092808485031,-0.004428309854120016,-0.0038665947504341602,0.0005314626032486558,0.0003924646880477667,0.0003401360590942204,0.0001635269436519593,0.00018315018678549677,0.00012400794366840273,-0.007877092808485031,0.006073881406337023,0.0003924646880477667,0.0003401360590942204,-0.0007971939048729837,-0.00015698587230872363,-0.0001360544265480712,1.7702988597614877e-19,9.147955830346444e-20,1.4230153513872246e-19,-0.004428309854120016,0.0003924646880477667,0.001557371229864657,0.00018315018678549677,6.72553879492112e-19,-7.135721534723416e-05,6.776263578034403e-21,-9.811617201194167e-05,-3.330003164592199e-05,8.470329472543003e-20,-0.0038665947504341602,0.0003401360590942204,0.00018315018678549677,0.0011528964387252927,5.62443422059386e-19,8.2178036109669775e-22,-5.232862531556748e-05,1.0562357129629694e-19,-2.8176951673231088e-05,-6.200397183420137e-05,0.0005314626032486558,-0.0007971939048729837,6.72553879492112e-19,5.62443422059386e-19,0.0001594387722434476,-6.622347884258159e-20,-4.856388362291336e-20,-3.579155903671825e-20,-1.7428932997800975e-20,-2.6551890202189845e-20,0.0003924646880477667,-0.00015698587230872363,-7.135721534723416e-05,8.2178036109669775e-22,-6.622347884258159e-20,2.8542885047500022e-05,-9.02392125869737e-23,8.470329472543003e-22,1.9167381292309916e-22,-8.45615282166084e-23,0.0003401360590942204,-0.0001360544265480712,6.776263578034403e-21,-5.232862531556748e-05,-4.856388362291336e-20,-9.02392125869737e-23,2.093144939863123e-05,-1.0587911840678754e-22,-8.470329472543003e-22,-1.6940658945086007e-21,0.0001635269436519593,1.7702988597614877e-19,-9.811617201194167e-05,1.0562357129629694e-19,-3.579155903671825e-20,8.470329472543003e-22,-1.0587911840678754e-22,8.91965191840427e-06,-4.658681209898652e-21,-6.03510974918689e-21,0.00018315018678549677,9.147955830346444e-20,-3.330003164592199e-05,-2.8176951673231088e-05,-1.7428932997800975e-20,1.9167381292309916e-22,-8.470329472543003e-22,-4.658681209898652e-21,5.123082246427657e-06,-2.964615315390051e-21,0.00012400794366840273,1.4230153513872246e-19,8.470329472543003e-20,-6.200397183420137e-05,-2.6551890202189845e-20,-8.45615282166084e-23,-1.6940658945086007e-21,-6.03510974918689e-21,-2.964615315390051e-21,4.76953618999687e-06,6.0,12.0,15.0,0.031655203551054,-0.007371794898062944,-0.00414377311244607,-0.003402418689802289,0.0004960317746736109,0.00036630037357099354,0.00029761905898340046,0.00015262515807989985,0.00016025641525629908,0.00010212418419541791,-0.007371794898062944,0.005676892586052418,0.00036630037357099354,0.00029761905898340046,-0.0007440476329065859,-0.00014652014942839742,-0.0001190476177725941,-2.668153783851046e-19,-1.5585406229479126e-19,-2.236166980751353e-19,-0.00414377311244607,0.00036630037357099354,0.001455488963983953,0.00016025641525629908,-1.0926444812147972e-18,-6.660006329184398e-05,-2.541098841762901e-21,-9.157509339274839e-05,-2.9137529054423794e-05,-1.0842021724855044e-19,-0.003402418689802289,0.00029761905898340046,0.00016025641525629908,0.000941690756008029,-9.589138813906195e-19,4.423118104460736e-21,-4.251700738677755e-05,-1.763236029799992e-19,-2.2893773348187096e-05,-4.7134239139268175e-05,0.0004960317746736109,-0.0007440476329065859,-1.0926444812147972e-18,-9.589138813906195e-19,0.00014880952949170023,5.768800889680003e-20,7.365522489492744e-20,6.681090632446495e-20,3.050063395784206e-20,4.3358742989672596e-20,0.00036630037357099354,-0.00014652014942839742,-6.660006329184398e-05,4.423118104460736e-21,5.768800889680003e-20,2.6640027499524876e-05,-1.4676266154609515e-22,-1.1858461261560205e-20,-1.0753196501895557e-22,-1.4491629788754554e-22,0.00029761905898340046,-0.0001190476177725941,-2.541098841762901e-21,-4.251700738677755e-05,7.365522489492744e-20,-1.4676266154609515e-22,1.70068033185089e-05,5.293955920339377e-23,5.293955920339377e-22,8.470329472543003e-22,0.00015262515807989985,-2.668153783851046e-19,-9.157509339274839e-05,-1.763236029799992e-19,6.681090632446495e-20,-1.1858461261560205e-20,5.293955920339377e-23,8.325007911480498e-06,7.199780051661553e-21,9.740878893424454e-21,0.00016025641525629908,-1.5585406229479126e-19,-2.9137529054423794e-05,-2.2893773348187096e-05,3.050063395784206e-20,-1.0753196501895557e-22,5.293955920339377e-22,7.199780051661553e-21,4.162503955740249e-06,4.235164736271502e-22,0.00010212418419541791,-2.236166980751353e-19,-1.0842021724855044e-19,-4.7134239139268175e-05,4.3358742989672596e-20,-1.4491629788754554e-22,8.470329472543003e-22,9.740878893424454e-21,4.235164736271502e-22,3.3667313346086303e-06,6.0,12.0,16.0,0.029860006645321846,-0.006927470676600933,-0.003893624758347869,-0.003017152426764369,0.0004650297632906586,0.00034340660204179585,0.00026260505546815693,0.0001430860866094008,0.00014140272105578333,8.510348561685532e-05,-0.006927470676600933,0.005328651983290911,0.00034340660204179585,0.00026260505546815693,-0.0006975446594879031,-0.00013736264372710139,-0.0001050420178216882,1.5658806876615843e-19,7.453889935837843e-20,9.486769009248164e-20,-0.003893624758347869,0.00034340660204179585,0.001366127748042345,0.00014140272105578333,4.2919912688720704e-19,-6.243756070034578e-05,-1.1858461261560205e-20,-8.585165051044896e-05,-2.5709585315780714e-05,5.336307567702092e-20,-0.003017152426764369,0.00026260505546815693,0.00014140272105578333,0.0007791738607920706,3.0475001052375717e-19,-1.9572599020213423e-20,-3.501400715322234e-05,6.019350666048048e-20,-1.885369601950515e-05,-3.6472923966357484e-05,0.0004650297632906586,-0.0006975446594879031,4.2919912688720704e-19,3.0475001052375717e-19,0.00013950893480796367,6.4863359655409996e-21,1.5299442136901302e-20,-3.1317613753231687e-20,-1.3456161422499945e-20,-1.793264883234169e-20,0.00034340660204179585,-0.00013736264372710139,-6.243756070034578e-05,-1.9572599020213423e-20,6.4863359655409996e-21,2.4975024643936194e-05,7.829039123409229e-21,-1.4560828219381447e-36,-1.128474576789396e-36,-1.316553672920962e-36,0.00026260505546815693,-0.0001050420178216882,-1.1858461261560205e-20,-3.501400715322234e-05,1.5299442136901302e-20,7.829039123409229e-21,1.4005602679389995e-05,-1.88079096131566e-36,-8.470329472543003e-22,-1.0587911840678754e-21,0.0001430860866094008,1.5658806876615843e-19,-8.585165051044896e-05,6.019350666048048e-20,-3.1317613753231687e-20,-1.4560828219381447e-36,-1.88079096131566e-36,7.804695087543223e-06,4.70197740328915e-36,-4.012900336326223e-21,0.00014140272105578333,7.453889935837843e-20,-2.5709585315780714e-05,-1.885369601950515e-05,-1.3456161422499945e-20,-1.128474576789396e-36,-8.470329472543003e-22,4.70197740328915e-36,3.4279446481377818e-06,-1.164670302474663e-21,8.510348561685532e-05,9.486769009248164e-20,5.336307567702092e-20,-3.6472923966357484e-05,-1.793264883234169e-20,-1.316553672920962e-36,-1.0587911840678754e-21,-4.012900336326223e-21,-1.164670302474663e-21,2.431528173474362e-06,6.0,13.0,3.0,0.10779696702957153,-0.030023548752069473,-0.015829408541321754,-0.049450550228357315,0.002289377385750413,0.0015698587521910667,0.005494505632668734,0.0006105006323195994,0.002747252816334367,0.006410256493836641,-0.030023548752069473,0.02460099384188652,0.0015698587521910667,0.005494505632668734,-0.0034340659622102976,-0.0006279434892348945,-0.002197802299633622,1.189695411136536e-18,3.577867169202165e-18,2.7538735181131813e-17,-0.015829408541321754,0.0015698587521910667,0.005413237493485212,0.002747252816334367,3.235837705283685e-18,-0.00026164311566390097,2.4936649967166602e-18,-0.0003330003237351775,-0.0004578754596877843,1.4094628242311558e-17,-0.049450550228357315,0.005494505632668734,0.002747252816334367,0.11355311423540115,7.47631314788293e-18,4.936598179284831e-18,-0.005494505632668734,6.47194486465191e-19,-0.002747252816334367,-0.03846153989434242,0.002289377385750413,-0.0034340659622102976,3.235837705283685e-18,7.47631314788293e-18,0.0006868132040835917,-2.507217523872729e-19,-1.5667790833549994e-19,-1.8295911660692887e-19,-3.836350460674599e-19,-2.212658714537749e-18,0.0015698587521910667,-0.0006279434892348945,-0.00026164311566390097,4.936598179284831e-18,-2.507217523872729e-19,0.00010465725063113496,-1.951459814963697e-19,-2.371692252312041e-20,-1.3895542153988354e-19,-1.702120048735453e-18,0.005494505632668734,-0.002197802299633622,2.4936649967166602e-18,-0.005494505632668734,-1.5667790833549994e-19,-1.951459814963697e-19,0.002197802299633622,-8.708443751624049e-20,-8.131516293641283e-19,-5.637851296924623e-18,0.0006105006323195994,1.189695411136536e-18,-0.0003330003237351775,6.47194486465191e-19,-1.8295911660692887e-19,-2.371692252312041e-20,-8.708443751624049e-20,2.775002758426126e-05,9.584590831111124e-22,-2.0726067487736528e-19,0.002747252816334367,3.577867169202165e-18,-0.0004578754596877843,-0.002747252816334367,-3.836350460674599e-19,-1.3895542153988354e-19,-8.131516293641283e-19,9.584590831111124e-22,0.0004578754596877843,-6.830473686658678e-18,0.006410256493836641,2.7538735181131813e-17,1.4094628242311558e-17,-0.03846153989434242,-2.212658714537749e-18,-1.702120048735453e-18,-5.637851296924623e-18,-2.0726067487736528e-19,-6.830473686658678e-18,0.01923076994717121,6.0,13.0,4.0,0.08794479072093964,-0.023341836407780647,-0.012284144759178162,-0.031593408435583115,0.0017170329811051488,0.0011773940641433,0.0032967033330351114,0.0004578754596877843,0.0016483516665175557,0.0032051282469183207,-0.023341836407780647,0.018780415877699852,0.0011773940641433,0.0032967033330351114,-0.002575549529865384,-0.00047095760237425566,-0.0013186812866479158,1.2632519301199311e-18,1.3823577699190182e-18,1.8431436932253575e-18,-0.012284144759178162,0.0011773940641433,0.0041286093182861805,0.0016483516665175557,3.0503395577865248e-18,-0.00019623234402388334,2.2768245622195593e-18,-0.00024975024280138314,-0.00027472528745420277,-2.168404344971009e-19,-0.031593408435583115,0.0032967033330351114,0.0016483516665175557,0.043498169630765915,1.808283407080229e-18,3.0104139794616395e-19,-0.002197802299633622,5.690756528132596e-19,-0.001098901149816811,-0.009615384973585606,0.0017170329811051488,-0.002575549529865384,3.0503395577865248e-18,1.808283407080229e-18,0.000515109917614609,-3.3881317890172014e-19,-1.0586116600255573e-19,-1.4399560103323106e-19,-1.8791934392419432e-19,-9.877478724299637e-20,0.0011773940641433,-0.00047095760237425566,-0.00019623234402388334,3.0104139794616395e-19,-3.3881317890172014e-19,7.849293615436181e-05,-1.0736116110819261e-19,-4.0657581468206416e-20,-5.155320126558063e-20,9.564343041069152e-20,0.0032967033330351114,-0.0013186812866479158,2.2768245622195593e-18,-0.002197802299633622,-1.0586116600255573e-19,-1.0736116110819261e-19,0.0008791208965703845,-1.3418177514953708e-19,-5.421010862427522e-20,-1.4094628242311558e-18,0.0004578754596877843,1.2632519301199311e-18,-0.00024975024280138314,5.690756528132596e-19,-1.4399560103323106e-19,-4.0657581468206416e-20,-1.3418177514953708e-19,2.0812520233448595e-05,-6.651219557251814e-21,-5.1651425732147033e-20,0.0016483516665175557,1.3823577699190182e-18,-0.00027472528745420277,-0.001098901149816811,-1.8791934392419432e-19,-5.155320126558063e-20,-5.421010862427522e-20,-6.651219557251814e-21,0.00018315018678549677,3.2526065174565133e-19,0.0032051282469183207,1.8431436932253575e-18,-2.168404344971009e-19,-0.009615384973585606,-9.877478724299637e-20,9.564343041069152e-20,-1.4094628242311558e-18,-5.1651425732147033e-20,3.2526065174565133e-19,0.0032051282469183207,6.0,13.0,5.0,0.0743851363658905,-0.019113030284643173,-0.010047095827758312,-0.021978022530674934,0.0013736264081671834,0.0009419152047485113,0.002197802299633622,0.00036630037357099354,0.001098901149816811,0.0018315018387511373,-0.019113030284643173,0.015200156718492508,0.0009419152047485113,0.002197802299633622,-0.002060439670458436,-0.0003767660818994045,-0.0008791208965703845,1.8041801776516597e-19,3.7947076036992655e-19,3.469446951953614e-18,-0.010047095827758312,0.0009419152047485113,0.003339517628774047,0.001098901149816811,9.961107459710572e-19,-0.00015698587230872363,-2.778268066994105e-19,-0.00019980019715148956,-0.00018315018678549677,-1.6263032587282567e-19,-0.021978022530674934,0.002197802299633622,0.001098901149816811,0.021978022530674934,4.119968255444917e-18,-1.8431436932253575e-18,-0.001098901149816811,-8.131516293641283e-20,-0.0005494505749084055,-0.0036630036775022745,0.0013736264081671834,-0.002060439670458436,9.961107459710572e-19,4.119968255444917e-18,0.00041208791662938893,-6.31441633030337e-20,-1.0310450906304034e-19,-4.1928130889087867e-20,-1.6324890187465048e-19,-6.568144418928178e-19,0.0009419152047485113,-0.0003767660818994045,-0.00015698587230872363,-1.8431436932253575e-18,-6.31441633030337e-20,6.27943518338725e-05,2.168404344971009e-19,4.920580405102935e-21,9.147955830346444e-20,1.8634724839594607e-19,0.002197802299633622,-0.0008791208965703845,-2.778268066994105e-19,-0.001098901149816811,-1.0310450906304034e-19,2.168404344971009e-19,0.00043956044828519225,-5.052026189903574e-21,-8.131516293641283e-20,-6.437450399132683e-19,0.00036630037357099354,1.8041801776516597e-19,-0.00019980019715148956,-8.131516293641283e-20,-4.1928130889087867e-20,4.920580405102935e-21,-5.052026189903574e-21,1.6650015822960995e-05,5.5223514734577785e-21,1.2939344791890495e-20,0.001098901149816811,3.7947076036992655e-19,-0.00018315018678549677,-0.0005494505749084055,-1.6324890187465048e-19,9.147955830346444e-20,-8.131516293641283e-20,5.5223514734577785e-21,9.157509339274839e-05,-1.6263032587282567e-19,0.0018315018387511373,3.469446951953614e-18,-1.6263032587282567e-19,-0.0036630036775022745,-6.568144418928178e-19,1.8634724839594607e-19,-6.437450399132683e-19,1.2939344791890495e-20,-1.6263032587282567e-19,0.0009157509193755686,6.0,13.0,6.0,0.0644950270652771,-0.01618916727602482,-0.008503401651978493,-0.01618916727602482,0.0011446886928752065,0.0007849293760955334,0.0015698587521910667,0.0003052503161597997,0.0007849293760955334,0.0011446886928752065,-0.01618916727602482,0.012771454639732838,0.0007849293760955334,0.0015698587521910667,-0.0017170329811051488,-0.00031397174461744726,-0.0006279434892348945,4.3113977015243887e-19,-6.2341624917916505e-19,-4.607859233063394e-18,-0.008503401651978493,0.0007849293760955334,0.0028047349769622087,0.0007849293760955334,1.4094628242311558e-18,-0.00013082155783195049,-8.707498697774207e-19,-0.00016650016186758876,-0.00013082155783195049,-1.734723475976807e-18,-0.01618916727602482,0.0015698587521910667,0.0007849293760955334,0.012771454639732838,-2.2768245622195593e-18,-8.944667923005412e-19,-0.0006279434892348945,-2.846030702774449e-19,-0.00031397174461744726,-0.0017170329811051488,0.0011446886928752065,-0.0017170329811051488,1.4094628242311558e-18,-2.2768245622195593e-18,0.00034340660204179585,-1.1932265159245542e-19,3.4231380725404455e-19,-8.512681119905718e-20,-1.8634322558398268e-20,2.7683039010340796e-19,0.0007849293760955334,-0.00031397174461744726,-0.00013082155783195049,-8.944667923005412e-19,-1.1932265159245542e-19,5.232862531556748e-05,4.743384504624082e-20,-6.225977636565666e-21,1.6940658945086007e-20,1.1519648082658485e-19,0.0015698587521910667,-0.0006279434892348945,-8.707498697774207e-19,-0.0006279434892348945,3.4231380725404455e-19,4.743384504624082e-20,0.00025117740733549,1.1067429411128025e-20,1.9312351197398048e-19,8.775261333554552e-19,0.0003052503161597997,4.3113977015243887e-19,-0.00016650016186758876,-2.846030702774449e-19,-8.512681119905718e-20,-6.225977636565666e-21,1.1067429411128025e-20,1.387501379213063e-05,1.5062059072557056e-20,2.4301912084018727e-20,0.0007849293760955334,-6.2341624917916505e-19,-0.00013082155783195049,-0.00031397174461744726,-1.8634322558398268e-20,1.6940658945086007e-20,1.9312351197398048e-19,1.5062059072557056e-20,5.232862531556748e-05,4.2521053952165877e-19,0.0011446886928752065,-4.607859233063394e-18,-1.734723475976807e-18,-0.0017170329811051488,2.7683039010340796e-19,1.1519648082658485e-19,8.775261333554552e-19,2.4301912084018727e-20,4.2521053952165877e-19,0.00034340660204179585,6.0,13.0,7.0,0.056947872042655945,-0.014044628478586674,-0.007372729480266571,-0.012428048066794872,0.0009811617201194167,0.0006727965665049851,0.0011773940641433,0.00026164311566390097,0.00058869703207165,0.000763125775847584,-0.014044628478586674,0.0110142407938838,0.0006727965665049851,0.0011773940641433,-0.0014717425219714642,-0.0002691186382435262,-0.00047095760237425566,1.9142944607947188e-19,-2.981555974335137e-19,-4.336808689942018e-19,-0.007372729480266571,0.0006727965665049851,0.0024180752225220203,0.00058869703207165,-1.3044307387716225e-19,-0.00011213276593480259,-3.4389537658524594e-19,-0.00014271443069446832,-9.811617201194167e-05,-2.168404344971009e-19,-0.012428048066794872,0.0011773940641433,0.00058869703207165,0.008110936731100082,-7.589415207398531e-19,-4.607859233063394e-19,-0.0003924646880477667,-2.1006417091906648e-19,-0.00019623234402388334,-0.0009157509193755686,0.0009811617201194167,-0.0014717425219714642,-1.3044307387716225e-19,-7.589415207398531e-19,0.000294348516035825,2.4654591201055794e-19,2.8936390829299386e-19,-5.2727800966580196e-20,1.2520878643643893e-20,3.012431658465254e-23,0.0006727965665049851,-0.0002691186382435262,-0.00011213276593480259,-4.607859233063394e-19,2.4654591201055794e-19,4.485310637392104e-05,7.792703114739563e-20,6.225572528091843e-21,3.049318610115481e-20,6.776263578034403e-21,0.0011773940641433,-0.00047095760237425566,-3.4389537658524594e-19,-0.0003924646880477667,2.8936390829299386e-19,7.792703114739563e-20,0.00015698587230872363,9.76493094688028e-21,1.5246593050577406e-20,1.2197274440461925e-19,0.00026164311566390097,1.9142944607947188e-19,-0.00014271443069446832,-2.1006417091906648e-19,-5.2727800966580196e-20,6.225572528091843e-21,9.76493094688028e-21,1.1892869224539027e-05,1.6226323862661112e-20,9.52044656928901e-21,0.00058869703207165,-2.981555974335137e-19,-9.811617201194167e-05,-0.00019623234402388334,1.2520878643643893e-20,3.049318610115481e-20,1.5246593050577406e-20,1.6226323862661112e-20,3.270538945798762e-05,4.0657581468206416e-20,0.000763125775847584,-4.336808689942018e-19,-2.168404344971009e-19,-0.0009157509193755686,3.012431658465254e-23,6.776263578034403e-21,1.2197274440461925e-19,9.52044656928901e-21,4.0657581468206416e-20,0.00015262515807989985,6.0,13.0,8.0,0.05099315196275711,-0.01240351889282465,-0.006508372724056244,-0.009844322688877583,0.0008585164905525744,0.00058869703207165,0.0009157509193755686,0.00022893772984389216,0.0004578754596877843,0.0005341880605556071,-0.01240351889282465,0.009683248586952686,0.00058869703207165,0.0009157509193755686,-0.001287774764932692,-0.00023547880118712783,-0.00036630037357099354,2.22769665127881e-19,2.236166980751353e-19,6.354298585043672e-19,-0.006508372724056244,0.00058869703207165,0.002125354716554284,0.0004578754596877843,9.305370368866816e-19,-9.811617201194167e-05,-3.542934463248605e-34,-0.00012487512140069157,-7.631257903994992e-05,-4.591571392275571e-34,-0.009844322688877583,0.0009157509193755686,0.0004578754596877843,0.005483603570610285,1.3961899875197065e-18,8.770822217098497e-21,-0.00026164311566390097,1.6940658945086007e-20,-0.00013082155783195049,-0.0005341880605556071,0.0008585164905525744,-0.001287774764932692,9.305370368866816e-19,1.3961899875197065e-18,0.0002575549588073045,-7.354626323626919e-20,-9.806168646914177e-20,-4.9514013647529884e-20,-4.3572333302296005e-20,-1.2708597428581286e-19,0.00058869703207165,-0.00023547880118712783,-9.811617201194167e-05,8.770822217098497e-21,-7.354626323626919e-20,3.924646807718091e-05,2.8002069098621224e-35,5.082197683525802e-21,-1.6940658945086007e-21,3.6290113572228243e-35,0.0009157509193755686,-0.00036630037357099354,-3.542934463248605e-34,-0.00026164311566390097,-9.806168646914177e-20,2.8002069098621224e-35,0.00010465725063113496,1.8852007870467966e-35,1.658976669642307e-35,4.838682000954383e-35,0.00022893772984389216,2.22769665127881e-19,-0.00012487512140069157,1.6940658945086007e-20,-4.9514013647529884e-20,5.082197683525802e-21,1.8852007870467966e-35,1.0406260116724297e-05,-2.541098841762901e-21,2.443182069251657e-35,0.0004578754596877843,2.236166980751353e-19,-7.631257903994992e-05,-0.00013082155783195049,-4.3572333302296005e-20,-1.6940658945086007e-21,1.658976669642307e-35,-2.541098841762901e-21,2.1803592971991748e-05,2.1500002611194876e-35,0.0005341880605556071,6.354298585043672e-19,-4.591571392275571e-34,-0.0005341880605556071,-1.2708597428581286e-19,3.6290113572228243e-35,4.838682000954383e-35,2.443182069251657e-35,2.1500002611194876e-35,7.631257903994992e-05,6.0,13.0,9.0,0.04617208242416382,-0.01110674999654293,-0.005825920030474663,-0.00799200776964426,0.000763125775847584,0.0005232862313278019,0.0007326007471419871,0.0002035002107731998,0.00036630037357099354,0.0003885003970935941,-0.01110674999654293,0.008639891631901264,0.0005232862313278019,0.0007326007471419871,-0.0011446886928752065,-0.00020931450126226991,-0.00029304029885679483,-3.7438856268640075e-19,-3.4897757426877174e-19,-8.978540969089458e-19,-0.005825920030474663,0.0005232862313278019,0.0018959876615554094,0.00036630037357099354,-1.6257150299151549e-18,-8.721437188796699e-05,-8.665665375735208e-34,-0.00011100011033704504,-6.105006468715146e-05,-1.2751545985949242e-33,-0.00799200776964426,0.0007326007471419871,0.00036630037357099354,0.0038850039709359407,-2.159941873714285e-18,1.9143816944220133e-21,-0.00018315018678549677,0.0,-9.157509339274839e-05,-0.0003330003237351775,0.000763125775847584,-0.0011446886928752065,-1.6257150299151549e-18,-2.159941873714285e-18,0.00022893772984389216,1.1622125420796148e-19,1.220323272581172e-19,8.802491602331914e-20,6.97157319912039e-20,1.7957082972154682e-19,0.0005232862313278019,-0.00020931450126226991,-8.721437188796699e-05,1.9143816944220133e-21,1.1622125420796148e-19,3.488575021037832e-05,6.195025124501347e-35,-1.1858461261560205e-20,0.0,9.115993128937899e-35,0.0007326007471419871,-0.00029304029885679483,-8.665665375735208e-34,-0.00018315018678549677,1.220323272581172e-19,6.195025124501347e-35,7.326007471419871e-05,4.69205515190113e-35,3.7161078547931377e-35,9.571792785384794e-35,0.0002035002107731998,-3.7438856268640075e-19,-0.00011100011033704504,0.0,8.802491602331914e-20,-1.1858461261560205e-20,4.69205515190113e-35,9.250009497918654e-06,0.0,6.904369384487883e-35,0.00036630037357099354,-3.4897757426877174e-19,-6.105006468715146e-05,-9.157509339274839e-05,6.97157319912039e-20,0.0,3.7161078547931377e-35,0.0,1.5262516171787865e-05,5.468260244865492e-35,0.0003885003970935941,-8.978540969089458e-19,-1.2751545985949242e-33,-0.0003330003237351775,1.7957082972154682e-19,9.115993128937899e-35,9.571792785384794e-35,6.904369384487883e-35,5.468260244865492e-35,4.162504046689719e-05,6.0,13.0,10.0,0.04218757525086403,-0.010056015104055405,-0.0052732983604073524,-0.006618381477892399,0.0006868132040835917,0.00047095760237425566,0.0005994006060063839,0.00018315018678549677,0.00029970030300319195,0.00029137529782019556,-0.010056015104055405,0.007799878716468811,0.00047095760237425566,0.0005994006060063839,-0.001030219835229218,-0.00018838304094970226,-0.00023976023658178747,1.6008922703106276e-19,1.3891340334970526e-19,3.292681867171059e-19,-0.0052732983604073524,0.00047095760237425566,0.001711383811198175,0.00029970030300319195,6.036748600775511e-19,-7.849293615436181e-05,-2.34022649984982e-34,-9.990009857574478e-05,-4.995004928787239e-05,-1.929403162851931e-34,-0.006618381477892399,0.0005994006060063839,0.00029970030300319195,0.002854784019291401,9.63492429478677e-19,-2.586626289144387e-21,-0.00013320012658368796,0.0,-6.660006329184398e-05,-0.00021853146608918905,0.0006868132040835917,-0.001030219835229218,6.036748600775511e-19,9.63492429478677e-19,0.00020604395831469446,-3.009265538105056e-35,-7.987570064950864e-20,-3.961121091802391e-20,-2.852007276570601e-20,-6.585363863589089e-20,0.00047095760237425566,-0.00018838304094970226,-7.849293615436181e-05,-2.586626289144387e-21,-3.009265538105056e-35,3.139717591693625e-05,0.0,5.929230630780102e-21,0.0,0.0,0.0005994006060063839,-0.00023976023658178747,-2.34022649984982e-34,-0.00013320012658368796,-7.987570064950864e-20,0.0,5.328005499904975e-05,1.5355817617366593e-35,1.1056188024436318e-35,2.5529045371878954e-35,0.00018315018678549677,1.6008922703106276e-19,-9.990009857574478e-05,0.0,-3.961121091802391e-20,5.929230630780102e-21,1.5355817617366593e-35,8.325007911480498e-06,-4.235164736271502e-22,1.2660125815822625e-35,0.00029970030300319195,1.3891340334970526e-19,-4.995004928787239e-05,-6.660006329184398e-05,-2.852007276570601e-20,0.0,1.1056188024436318e-35,-4.235164736271502e-22,1.1100010851805564e-05,9.115290730885253e-36,0.00029137529782019556,3.292681867171059e-19,-1.929403162851931e-34,-0.00021853146608918905,-6.585363863589089e-20,0.0,2.5529045371878954e-35,1.2660125815822625e-35,9.115290730885253e-36,2.428127481834963e-05,6.0,13.0,11.0,0.038838449865579605,-0.009187241084873676,-0.004816611763089895,-0.005571351852267981,0.0006243756506592035,0.00042814327753148973,0.0004995004856027663,0.00016650016186758876,0.00024975024280138314,0.00022413484111893922,-0.009187241084873676,0.007108962628990412,0.00042814327753148973,0.0004995004856027663,-0.0009365634177811444,-0.00017125731392297894,-0.00019980019715148956,1.3721933745519665e-19,1.1180834903756764e-19,2.574980159653073e-19,-0.004816611763089895,0.00042814327753148973,0.0015595875447615981,0.00024975024280138314,7.454584767552388e-19,-7.135721534723416e-05,0.0,-9.081827010959387e-05,-4.162504046689719e-05,3.3881317890172014e-21,-0.005571351852267981,0.0004995004856027663,0.00024975024280138314,0.0021602329798042774,7.764314276116743e-19,-5.621110295468718e-21,-9.990009857574478e-05,-8.394133536547225e-21,-4.995004928787239e-05,-0.00014942322741262615,0.0006243756506592035,-0.0009365634177811444,7.454584767552388e-19,7.764314276116743e-19,0.00018731268937699497,-7.780100888860347e-20,-5.446070557578758e-20,-3.6010193212373674e-20,-2.3766726227696918e-20,-4.976793224618952e-20,0.00042814327753148973,-0.00017125731392297894,-7.135721534723416e-05,-5.621110295468718e-21,-7.780100888860347e-20,2.8542885047500022e-05,-5.76887795318629e-23,5.929230630780102e-21,9.770072350985502e-22,-4.83122652164356e-23,0.0004995004856027663,-0.00019980019715148956,0.0,-9.990009857574478e-05,-5.446070557578758e-20,-5.76887795318629e-23,3.996003943029791e-05,0.0,0.0,8.470329472543003e-22,0.00016650016186758876,1.3721933745519665e-19,-9.081827010959387e-05,-8.394133536547225e-21,-3.6010193212373674e-20,5.929230630780102e-21,0.0,7.568189175799489e-06,1.2705494208814505e-21,0.0,0.00024975024280138314,1.1180834903756764e-19,-4.162504046689719e-05,-4.995004928787239e-05,-2.3766726227696918e-20,9.770072350985502e-22,0.0,1.2705494208814505e-21,8.325007911480498e-06,4.235164736271502e-22,0.00022413484111893922,2.574980159653073e-19,3.3881317890172014e-21,-0.00014942322741262615,-4.976793224618952e-20,-4.83122652164356e-23,8.470329472543003e-22,0.0,4.235164736271502e-22,1.4942322195565794e-05,6.0,13.0,12.0,0.03598347678780556,-0.008456858806312084,-0.004432838410139084,-0.004754860419780016,0.0005723443464376032,0.0003924646880477667,0.0004226542660035193,0.00015262515807989985,0.00021132713300175965,0.00017610593931749463,-0.008456858806312084,0.006530637387186289,0.0003924646880477667,0.0004226542660035193,-0.0008585164905525744,-0.00015698587230872363,-0.00016906170640140772,-1.8211208365967457e-19,-2.354751593366955e-19,-8.809142651444724e-20,-0.004432838410139084,0.0003924646880477667,0.001432557008229196,0.00021132713300175965,-3.0133721841272823e-19,-6.541077891597524e-05,-2.1345230270808369e-19,-8.325008093379438e-05,-3.522119004628621e-05,5.082197683525802e-21,-0.004754860419780016,0.0004226542660035193,0.00021132713300175965,0.0016746073961257935,-1.504054106752074e-19,-2.1428095673610282e-19,-7.684623415116221e-05,-7.068618933313906e-20,-3.8423117075581104e-05,-0.00010566356650087982,0.0005723443464376032,-0.0008585164905525744,-3.0133721841272823e-19,-1.504054106752074e-19,0.00017170330102089792,-2.73723616852726e-21,-1.692734650710273e-20,1.1553269581825784e-20,1.9272377694296423e-20,1.6758589343290018e-21,0.0003924646880477667,-0.00015698587230872363,-6.541077891597524e-05,-2.1428095673610282e-19,-2.73723616852726e-21,2.616431265778374e-05,2.719733664922556e-20,1.1011428314305904e-20,1.1481085956477028e-20,4.299888791926292e-21,0.0004226542660035193,-0.00016906170640140772,-2.1345230270808369e-19,-7.684623415116221e-05,-1.692734650710273e-20,2.719733664922556e-20,3.073849075008184e-05,6.3527471044072525e-21,6.564505341220828e-21,5.082197683525802e-21,0.00015262515807989985,-1.8211208365967457e-19,-8.325008093379438e-05,-7.068618933313906e-20,1.1553269581825784e-20,1.1011428314305904e-20,6.3527471044072525e-21,6.937506896065315e-06,7.199780051661553e-21,4.235164736271502e-22,0.00021132713300175965,-2.354751593366955e-19,-3.522119004628621e-05,-3.8423117075581104e-05,1.9272377694296423e-20,1.1481085956477028e-20,6.564505341220828e-21,7.199780051661553e-21,6.403852694347734e-06,-5.929230630780102e-21,0.00017610593931749463,-8.809142651444724e-20,5.082197683525802e-21,-0.00010566356650087982,1.6758589343290018e-21,4.299888791926292e-21,5.082197683525802e-21,4.235164736271502e-22,-5.929230630780102e-21,9.605779268895276e-06,6.0,13.0,13.0,0.03352050855755806,-0.007834198884665966,-0.004105784464627504,-0.004105784464627504,0.0005283178179524839,0.0003622750809881836,0.0003622750809881836,0.00014088476018514484,0.0001811375404940918,0.00014088476018514484,-0.007834198884665966,0.0060394275933504105,0.0003622750809881836,0.0003622750809881836,-0.0007924767560325563,-0.00014491003821603954,-0.00014491003821603954,-3.2949581648192283e-19,-1.8804131429045468e-19,-3.2526065174565133e-19,-0.004105784464627504,0.0003622750809881836,0.0013246826129034162,0.0001811375404940918,-1.0773919945023554e-18,-6.037918137735687e-05,-1.5246593050577406e-20,-7.684623415116221e-05,-3.0189590688678436e-05,-2.202285662861181e-20,-0.004105784464627504,0.0003622750809881836,0.0001811375404940918,0.0013246826129034162,-1.0773919945023554e-18,1.1489790134109266e-21,-6.037918137735687e-05,-1.4302137573820287e-21,-3.0189590688678436e-05,-7.684623415116221e-05,0.0005283178179524839,-0.0007924767560325563,-1.0773919945023554e-18,-1.0773919945023554e-18,0.00015849535702727735,5.570368015546775e-20,5.570368015546775e-20,6.094032796899368e-20,3.4474813517330275e-20,6.094032796899368e-20,0.0003622750809881836,-0.00014491003821603954,-6.037918137735687e-05,1.1489790134109266e-21,5.570368015546775e-20,2.4151671823346987e-05,-1.0531014774573146e-22,5.082197683525802e-21,1.8557293938696262e-22,-4.1077457771585417e-23,0.0003622750809881836,-0.00014491003821603954,-1.5246593050577406e-20,-6.037918137735687e-05,5.570368015546775e-20,-1.0531014774573146e-22,2.4151671823346987e-05,0.0,2.964615315390051e-21,4.235164736271502e-21,0.00014088476018514484,-3.2949581648192283e-19,-7.684623415116221e-05,-1.4302137573820287e-21,6.094032796899368e-20,5.082197683525802e-21,0.0,6.403852694347734e-06,6.352747104407253e-22,0.0,0.0001811375404940918,-1.8804131429045468e-19,-3.0189590688678436e-05,-3.0189590688678436e-05,3.4474813517330275e-20,1.8557293938696262e-22,2.964615315390051e-21,6.352747104407253e-22,5.031598448113073e-06,3.8116482626443515e-21,0.00014088476018514484,-3.2526065174565133e-19,-2.202285662861181e-20,-7.684623415116221e-05,6.094032796899368e-20,-4.1077457771585417e-23,4.235164736271502e-21,0.0,3.8116482626443515e-21,6.403852694347734e-06,6.0,13.0,14.0,0.03137381374835968,-0.007297039497643709,-0.0038237273693084717,-0.003581240074709058,0.0004905808600597084,0.00033639828325249255,0.00031397174461744726,0.00013082155783195049,0.00015698587230872363,0.00011446886492194608,-0.007297039497643709,0.005617010407149792,0.00033639828325249255,0.00031397174461744726,-0.0007358712609857321,-0.0001345593191217631,-0.000125588703667745,1.1519648082658485e-19,8.470329472543003e-20,1.3552527156068805e-19,-0.0038237273693084717,0.00033639828325249255,0.0012319313827902079,0.00015698587230872363,5.567042361743399e-19,-5.6066382967401296e-05,6.776263578034403e-21,-7.135721534723416e-05,-2.616431265778374e-05,1.0164395367051604e-20,-0.003581240074709058,0.00031397174461744726,0.00015698587230872363,0.0010660699335858226,5.117069033211623e-19,-1.849336540824362e-21,-4.8303343646693975e-05,-7.750256228515305e-22,-2.4151671823346987e-05,-5.723443246097304e-05,0.0004905808600597084,-0.0007358712609857321,5.567042361743399e-19,5.117069033211623e-19,0.0001471742580179125,-4.803021318732314e-20,-4.1379878164027134e-20,-2.8293722545899115e-20,-1.493908542668655e-20,-2.4509437482541503e-20,0.00033639828325249255,-0.0001345593191217631,-5.6066382967401296e-05,-1.849336540824362e-21,-4.803021318732314e-20,2.242655318696052e-05,3.085338814414504e-23,4.658681209898652e-21,2.5365470259873544e-22,3.430597673536412e-23,0.00031397174461744726,-0.000125588703667745,6.776263578034403e-21,-4.8303343646693975e-05,-4.1379878164027134e-20,3.085338814414504e-23,1.932133818627335e-05,0.0,-1.0587911840678754e-21,-1.6940658945086007e-21,0.00013082155783195049,1.1519648082658485e-19,-7.135721534723416e-05,-7.750256228515305e-22,-2.8293722545899115e-20,4.658681209898652e-21,0.0,5.946434612269513e-06,2.117582368135751e-22,-2.117582368135751e-22,0.00015698587230872363,8.470329472543003e-20,-2.616431265778374e-05,-2.4151671823346987e-05,-1.493908542668655e-20,2.5365470259873544e-22,-1.0587911840678754e-21,2.117582368135751e-22,4.0252789403893985e-06,-1.4823076576950256e-21,0.00011446886492194608,1.3552527156068805e-19,1.0164395367051604e-20,-5.723443246097304e-05,-2.4509437482541503e-20,3.430597673536412e-23,-1.6940658945086007e-21,-2.117582368135751e-22,-1.4823076576950256e-21,4.402648755785776e-06,6.0,13.0,15.0,0.029486024752259254,-0.006828885525465012,-0.0035779697354882956,-0.0031512605492025614,0.0004578754596877843,0.00031397174461744726,0.00027472528745420277,0.00012210012937430292,0.00013736264372710139,9.426847827853635e-05,-0.006828885525465012,0.005249869078397751,0.00031397174461744726,0.00027472528745420277,-0.0006868132040835917,-0.000125588703667745,-0.00010989011207129806,1.0757318430129614e-19,5.675120746603812e-20,8.470329472543003e-20,-0.0035779697354882956,0.00031397174461744726,0.0011513287900015712,0.00013736264372710139,5.129907393306329e-19,-5.232862531556748e-05,-5.929230630780102e-21,-6.660006329184398e-05,-2.2893773348187096e-05,-5.929230630780102e-21,-0.0031512605492025614,0.00027472528745420277,0.00013736264372710139,0.0008707625092938542,4.370437200757478e-19,-1.5105321668725216e-21,-3.924646807718091e-05,4.370258112923686e-22,-1.9623234038590454e-05,-4.3508527596713975e-05,0.0004578754596877843,-0.0006868132040835917,5.129907393306329e-19,4.370437200757478e-19,0.00013736264372710139,-4.183965487528737e-20,-3.1379739540878394e-20,-2.6407474483878316e-20,-1.3071699344453948e-20,-2.0011726912315377e-20,0.00031397174461744726,-0.000125588703667745,-5.232862531556748e-05,-1.5105321668725216e-21,-4.183965487528737e-20,2.093144939863123e-05,-3.779734888412748e-23,4.658681209898652e-21,4.575573489221493e-22,-3.721415348322845e-23,0.00027472528745420277,-0.00010989011207129806,-5.929230630780102e-21,-3.924646807718091e-05,-3.1379739540878394e-20,-3.779734888412748e-23,1.5698587958468124e-05,-5.293955920339377e-23,9.529120656610879e-22,1.2705494208814505e-21,0.00012210012937430292,1.0757318430129614e-19,-6.660006329184398e-05,4.370258112923686e-22,-2.6407474483878316e-20,4.658681209898652e-21,-5.293955920339377e-23,5.550005425902782e-06,0.0,-5.293955920339377e-23,0.00013736264372710139,5.675120746603812e-20,-2.2893773348187096e-05,-1.9623234038590454e-05,-1.3071699344453948e-20,4.575573489221493e-22,9.529120656610879e-22,0.0,3.2705390822229674e-06,1.0587911840678754e-21,9.426847827853635e-05,8.470329472543003e-20,-5.929230630780102e-21,-4.3508527596713975e-05,-2.0011726912315377e-20,-3.721415348322845e-23,1.2705494208814505e-21,-5.293955920339377e-23,1.0587911840678754e-21,3.1077520361577626e-06,6.0,13.0,16.0,0.027812888845801353,-0.006417230237275362,-0.0033619217574596405,-0.002794387051835656,0.0004292582452762872,0.000294348516035825,0.00024240465427283198,0.00011446886492194608,0.00012120232713641599,7.855706644477323e-05,-0.006417230237275362,0.004927812609821558,0.000294348516035825,0.00024240465427283198,-0.000643887382466346,-0.00011773940059356391,-9.696186316432431e-05,1.0842021724855044e-19,5.675120746603812e-20,8.978549240895584e-20,-0.0033619217574596405,0.000294348516035825,0.0010806332575157285,0.00012120232713641599,4.755208017504762e-19,-4.9058086005970836e-05,-1.6940658945086007e-21,-6.243756070034578e-05,-2.0200388462399133e-05,-5.929230630780102e-21,-0.002794387051835656,0.00024240465427283198,0.00012120232713641599,0.0007204805151559412,3.1750133570838594e-19,3.749503491848821e-21,-3.2320622267434373e-05,2.531545875040194e-21,-1.6160311133717187e-05,-3.3667314710328355e-05,0.0004292582452762872,-0.000643887382466346,4.755208017504762e-19,3.1750133570838594e-19,0.00012877747940365225,-3.6773131618134595e-20,-4.67700514361611e-37,-2.4757006823764942e-20,-1.1533852647857095e-20,-1.6553213685397277e-20,0.000294348516035825,-0.00011773940059356391,-4.9058086005970836e-05,3.749503491848821e-21,-3.6773131618134595e-20,1.9623234038590454e-05,-1.1526246110221043e-22,3.3881317890172014e-21,-4.017383590622775e-22,-5.943107665979575e-23,0.00024240465427283198,-9.696186316432431e-05,-1.6940658945086007e-21,-3.2320622267434373e-05,-4.67700514361611e-37,-1.1526246110221043e-22,1.2928247997479048e-05,-5.293955920339377e-23,3.1763735522036263e-22,-8.470329472543003e-22,0.00011446886492194608,1.0842021724855044e-19,-6.243756070034578e-05,2.531545875040194e-21,-2.4757006823764942e-20,3.3881317890172014e-21,-5.293955920339377e-23,5.203130058362149e-06,-2.117582368135751e-22,0.0,0.00012120232713641599,5.675120746603812e-20,-2.0200388462399133e-05,-1.6160311133717187e-05,-1.1533852647857095e-20,-4.017383590622775e-22,3.1763735522036263e-22,-2.117582368135751e-22,2.6933851131616393e-06,8.470329472543003e-22,7.855706644477323e-05,8.978549240895584e-20,-5.929230630780102e-21,-3.3667314710328355e-05,-1.6553213685397277e-20,-5.943107665979575e-23,-8.470329472543003e-22,0.0,8.470329472543003e-22,2.2444876321969787e-06,6.0,14.0,3.0,0.10104875266551971,-0.02797619067132473,-0.013818027451634407,-0.046088434755802155,0.002125850412994623,0.0013605442363768816,0.005102040711790323,0.0004960317746736109,0.0023809524718672037,0.0059523810632526875,-0.02797619067132473,0.022882653400301933,0.0013605442363768816,0.005102040711790323,-0.0031887756194919348,-0.0005442177061922848,-0.0020408162381500006,4.359858077710808e-19,2.981555974335137e-19,-1.734723475976807e-18,-0.013818027451634407,0.0013605442363768816,0.004357993137091398,0.0023809524718672037,3.3827605434083766e-19,-0.00020931450126226991,-3.5236570605778894e-19,-0.00024801588733680546,-0.00036630037357099354,-2.8189256484623115e-18,-0.046088434755802155,0.005102040711790323,0.0023809524718672037,0.10561224818229675,-1.6632982653898373e-19,-1.7911700741822726e-18,-0.005102040711790323,1.6836090390962233e-19,-0.0023809524718672037,-0.0357142873108387,0.002125850412994623,-0.0031887756194919348,3.3827605434083766e-19,-1.6632982653898373e-19,0.0006377550889737904,1.8973538018496328e-19,2.5073341046403107e-19,-7.453889935837843e-20,-3.162556404799723e-20,9.064571500957124e-20,0.0013605442363768816,-0.0005442177061922848,-0.00020931450126226991,-1.7911700741822726e-18,1.8973538018496328e-19,8.372579759452492e-05,7.465356727079359e-20,-8.470329472543003e-21,-6.132221884011609e-21,7.919252442678285e-19,0.005102040711790323,-0.0020408162381500006,-3.5236570605778894e-19,-0.005102040711790323,2.5073341046403107e-19,7.465356727079359e-20,0.0020408162381500006,9.237679238973018e-21,1.3552527156068805e-20,-4.9873299934333204e-18,0.0004960317746736109,4.359858077710808e-19,-0.00024801588733680546,1.6836090390962233e-19,-7.453889935837843e-20,-8.470329472543003e-21,9.237679238973018e-21,1.907814475998748e-05,-1.4947922688308943e-20,-4.320992802759548e-20,0.0023809524718672037,2.981555974335137e-19,-0.00036630037357099354,-0.0023809524718672037,-3.162556404799723e-20,-6.132221884011609e-21,1.3552527156068805e-20,-1.4947922688308943e-20,0.00036630037357099354,6.505213034913027e-19,0.0059523810632526875,-1.734723475976807e-18,-2.8189256484623115e-18,-0.0357142873108387,9.064571500957124e-20,7.919252442678285e-19,-4.9873299934333204e-18,-4.320992802759548e-20,6.505213034913027e-19,0.01785714365541935,6.0,14.0,4.0,0.08240221440792084,-0.021747449412941933,-0.010720663703978062,-0.029438775032758713,0.0015943878097459674,0.0010204081190750003,0.0030612244736403227,0.00037202381645329297,0.0014285714132711291,0.0029761905316263437,-0.021747449412941933,0.017468111589550972,0.0010204081190750003,0.0030612244736403227,-0.00239158165641129,-0.0004081632650922984,-0.0012244897661730647,5.711408643088631e-19,9.893344823930228e-19,-3.903127820947816e-18,-0.010720663703978062,0.0010204081190750003,0.0033234399743378162,0.0014285714132711291,2.442048306107892e-18,-0.00015698587230872363,4.87890977618477e-19,-0.00018601190822664648,-0.00021978022414259613,1.6805133673525319e-18,-0.029438775032758713,0.0030612244736403227,0.0014285714132711291,0.04045918211340904,1.2901059351161589e-18,2.548738371707711e-19,-0.0020408162381500006,9.840266582727261e-20,-0.0009523809421807528,-0.008928571827709675,0.0015943878097459674,-0.00239158165641129,2.442048306107892e-18,1.2901059351161589e-18,0.00047831633128225803,-3.8624702394796095e-19,-8.166387643327105e-19,-6.945670167485263e-20,-1.781154829819422e-19,7.046667369314339e-19,0.0010204081190750003,-0.0004081632650922984,-0.00015698587230872363,2.548738371707711e-19,-3.8624702394796095e-19,6.27943518338725e-05,-9.91465403048536e-20,-2.371692252312041e-20,-4.8903428339669306e-20,1.2385021175056734e-19,0.0030612244736403227,-0.0012244897661730647,4.87890977618477e-19,-0.0020408162381500006,-8.166387643327105e-19,-9.91465403048536e-20,0.0008163265301845968,-3.5164472121872094e-20,1.7618285302889447e-19,-4.87890977618477e-19,0.00037202381645329297,5.711408643088631e-19,-0.00018601190822664648,9.840266582727261e-20,-6.945670167485263e-20,-2.371692252312041e-20,-3.5164472121872094e-20,1.430860811524326e-05,-1.1434888242383368e-20,2.6759703175222454e-20,0.0014285714132711291,9.893344823930228e-19,-0.00021978022414259613,-0.0009523809421807528,-1.781154829819422e-19,-4.8903428339669306e-20,1.7618285302889447e-19,-1.1434888242383368e-20,0.00014652014942839742,-1.6805133673525319e-18,0.0029761905316263437,-3.903127820947816e-18,1.6805133673525319e-18,-0.008928571827709675,7.046667369314339e-19,1.2385021175056734e-19,-4.87890977618477e-19,2.6759703175222454e-20,-1.6805133673525319e-18,0.0029761905316263437,6.0,14.0,5.0,0.06967686861753464,-0.017806122079491615,-0.008767006918787956,-0.020476190373301506,0.0012755101779475808,0.0008163265301845968,0.0020408162381500006,0.00029761905898340046,0.0009523809421807528,0.001700680237263441,-0.017806122079491615,0.014137755148112774,0.0008163265301845968,0.0020408162381500006,-0.0019132653251290321,-0.00032653060043230653,-0.0008163265301845968,7.309894334804612e-19,8.673617379884035e-19,-2.3310346708438345e-18,-0.008767006918787956,0.0008163265301845968,0.0026880560908466578,0.0009523809421807528,2.4106557678857388e-18,-0.000125588703667745,3.5405977195229754e-19,-0.00014880952949170023,-0.00014652014942839742,-1.4094628242311558e-18,-0.020476190373301506,0.0020408162381500006,0.0009523809421807528,0.0204421766102314,3.2526065174565133e-18,2.710505431213761e-20,-0.0010204081190750003,-1.0842021724855044e-19,-0.0004761904710903764,-0.003401360474526882,0.0012755101779475808,-0.0019132653251290321,2.4106557678857388e-18,3.2526065174565133e-18,0.00038265305920504034,-1.5194874875247235e-19,-1.2676460169313894e-19,-1.0418505251227894e-19,-1.983053073731365e-19,-3.3886508448515784e-19,0.0008163265301845968,-0.00032653060043230653,-0.000125588703667745,2.710505431213761e-20,-1.5194874875247235e-19,5.023547782911919e-05,-1.3552527156068805e-20,-1.802667600353424e-20,-1.3552527156068805e-20,2.0328790734103208e-20,0.0020408162381500006,-0.0008163265301845968,3.5405977195229754e-19,-0.0010204081190750003,-1.2676460169313894e-19,-1.3552527156068805e-20,0.0004081632650922984,-3.588444883456854e-20,1.1180834903756764e-19,1.9109063290057016e-18,0.00029761905898340046,7.309894334804612e-19,-0.00014880952949170023,-1.0842021724855044e-19,-1.0418505251227894e-19,-1.802667600353424e-20,-3.588444883456854e-20,1.1446886674093548e-05,1.0206414163075059e-21,4.8152393579910906e-20,0.0009523809421807528,8.673617379884035e-19,-0.00014652014942839742,-0.0004761904710903764,-1.983053073731365e-19,-1.3552527156068805e-20,1.1180834903756764e-19,1.0206414163075059e-21,7.326007471419871e-05,3.4897757426877174e-19,0.001700680237263441,-2.3310346708438345e-18,-1.4094628242311558e-18,-0.003401360474526882,-3.3886508448515784e-19,2.0328790734103208e-20,1.9109063290057016e-18,4.8152393579910906e-20,3.4897757426877174e-19,0.0008503401186317205,6.0,14.0,6.0,0.06040047109127045,-0.015081389807164669,-0.007419217843562365,-0.015081389807164669,0.0010629252064973116,0.0006802721181884408,0.0014577260008081794,0.00024801588733680546,0.0006802721181884408,0.0010629252064973116,-0.015081389807164669,0.011878644116222858,0.0006802721181884408,0.0014577260008081794,-0.0015943878097459674,-0.0002721088530961424,-0.000583090353757143,1.7194768829262297e-19,4.336808689942018e-19,-6.505213034913027e-19,-0.007419217843562365,0.0006802721181884408,0.00225748959928751,0.0006802721181884408,2.371692252312041e-19,-0.00010465725063113496,-2.270048298641525e-19,-0.00012400794366840273,-0.00010465725063113496,1.6263032587282567e-19,-0.015081389807164669,0.0014577260008081794,0.0006802721181884408,0.011878644116222858,1.0842021724855044e-19,4.607859233063394e-19,-0.000583090353757143,2.439454888092385e-19,-0.0002721088530961424,-0.0015943878097459674,0.0010629252064973116,-0.0015943878097459674,2.371692252312041e-19,1.0842021724855044e-19,0.0003188775444868952,9.619487553592883e-20,3.5458901244796663e-19,-2.8587361969832636e-20,-5.333236982795416e-20,-9.599986770651945e-20,0.0006802721181884408,-0.0002721088530961424,-0.00010465725063113496,4.607859233063394e-19,9.619487553592883e-20,4.186289879726246e-05,2.0328790734103208e-20,-3.417280212086892e-21,-2.541098841762901e-20,-6.606856988583543e-20,0.0014577260008081794,-0.000583090353757143,-2.270048298641525e-19,-0.000583090353757143,3.5458901244796663e-19,2.0328790734103208e-20,0.0002332361473236233,9.785640552504475e-22,3.3881317890172014e-20,6.979551485375435e-19,0.00024801588733680546,1.7194768829262297e-19,-0.00012400794366840273,2.439454888092385e-19,-2.8587361969832636e-20,-3.417280212086892e-21,9.785640552504475e-22,9.53907237999374e-06,-1.1060744111567977e-20,-3.158323566508924e-20,0.0006802721181884408,4.336808689942018e-19,-0.00010465725063113496,-0.0002721088530961424,-5.333236982795416e-20,-2.541098841762901e-20,3.3881317890172014e-20,-1.1060744111567977e-20,4.186289879726246e-05,1.0672615135404184e-19,0.0010629252064973116,-6.505213034913027e-19,1.6263032587282567e-19,-0.0015943878097459674,-9.599986770651945e-20,-6.606856988583543e-20,6.979551485375435e-19,-3.158323566508924e-20,1.0672615135404184e-19,0.0003188775444868952,6.0,14.0,7.0,0.05332442373037338,-0.01308309007436037,-0.006432215683162212,-0.011576773598790169,0.0009110787068493664,0.000583090353757143,0.001093294471502304,0.00021258502965793014,0.0005102040595375001,0.0007086168043315411,-0.01308309007436037,0.010244169272482395,0.000583090353757143,0.001093294471502304,-0.00136661808937788,-0.0002332361473236233,-0.0004373177944216877,-2.964615315390051e-21,2.981555974335137e-19,1.734723475976807e-18,-0.006432215683162212,0.000583090353757143,0.0019462043419480324,0.0005102040595375001,-1.0164395367051604e-19,-8.970621274784207e-05,3.2187251995663413e-19,-0.00010629251482896507,-7.849293615436181e-05,5.421010862427522e-20,-0.011576773598790169,0.001093294471502304,0.0005102040595375001,0.007543731946498156,1.111307226797642e-18,5.692061405548898e-19,-0.00036443150020204484,3.3881317890172014e-21,-0.0001700680295471102,-0.0008503401186317205,0.0009110787068493664,-0.00136661808937788,-1.0164395367051604e-19,1.111307226797642e-18,0.000273323617875576,-5.3578693551497366e-21,-9.355167158730391e-21,8.682087709356578e-21,-1.6650932473190773e-20,-1.7746821415261945e-19,0.000583090353757143,-0.0002332361473236233,-8.970621274784207e-05,5.692061405548898e-19,-5.3578693551497366e-21,3.5882483643945307e-05,-6.437450399132683e-20,-4.991009906721067e-21,-1.9481757786848908e-20,-4.912791094074942e-20,0.001093294471502304,-0.0004373177944216877,3.2187251995663413e-19,-0.00036443150020204484,-9.355167158730391e-21,-6.437450399132683e-20,0.00014577258843928576,-5.939400347891173e-21,-2.202285662861181e-20,-1.7787691892340307e-19,0.00021258502965793014,-2.964615315390051e-21,-0.00010629251482896507,3.3881317890172014e-21,8.682087709356578e-21,-4.991009906721067e-21,-5.939400347891173e-21,8.176347364496905e-06,-4.719703955429694e-21,5.988690295759103e-21,0.0005102040595375001,2.981555974335137e-19,-7.849293615436181e-05,-0.0001700680295471102,-1.6650932473190773e-20,-1.9481757786848908e-20,-2.202285662861181e-20,-4.719703955429694e-21,2.616431265778374e-05,-6.776263578034403e-21,0.0007086168043315411,1.734723475976807e-18,5.421010862427522e-20,-0.0008503401186317205,-1.7746821415261945e-19,-4.912791094074942e-20,-1.7787691892340307e-19,5.988690295759103e-21,-6.776263578034403e-21,0.00014172335795592517,6.0,14.0,8.0,0.0477430559694767,-0.011553996242582798,-0.005677791777998209,-0.0091695012524724,0.0007971939048729837,0.0005102040595375001,0.0008503401186317205,0.00018601190822664648,0.00039682540227659047,0.0004960317746736109,-0.011553996242582798,0.009006164968013763,0.0005102040595375001,0.0008503401186317205,-0.001195790828205645,-0.0002040816325461492,-0.0003401360590942204,4.010701005249112e-19,8.402566836762659e-19,2.3987973066241786e-18,-0.005677791777998209,0.0005102040595375001,0.0017105600563809276,0.00039682540227659047,1.438261944437802e-18,-7.849293615436181e-05,6.606856988583543e-19,-9.300595411332324e-05,-6.105006468715146e-05,2.439454888092385e-19,-0.0091695012524724,0.0008503401186317205,0.00039682540227659047,0.005100016016513109,4.445228907190568e-18,9.486769009248164e-19,-0.00024295432376675308,2.303929616531697e-19,-0.00011337868636474013,-0.0004960317746736109,0.0007971939048729837,-0.001195790828205645,1.438261944437802e-18,4.445228907190568e-18,0.00023915816564112902,-1.9201094112539958e-19,-5.132915745796608e-19,-3.7692966152816365e-20,-1.1851637021506642e-19,-3.1943194940869056e-19,0.0005102040595375001,-0.0002040816325461492,-7.849293615436181e-05,9.486769009248164e-19,-1.9201094112539958e-19,3.139717591693625e-05,-9.656175598699024e-20,-1.2782356574503014e-20,-2.286988957586611e-20,-7.369186641112413e-20,0.0008503401186317205,-0.0003401360590942204,6.606856988583543e-19,-0.00024295432376675308,-5.132915745796608e-19,-9.656175598699024e-20,9.718172805150971e-05,-2.5969330484340902e-20,-1.1011428314305904e-20,-4.743384504624082e-20,0.00018601190822664648,4.010701005249112e-19,-9.300595411332324e-05,2.303929616531697e-19,-3.7692966152816365e-20,-1.2782356574503014e-20,-2.5969330484340902e-20,7.15430405762163e-06,-4.19859107473444e-21,-1.8886476935907695e-20,0.00039682540227659047,8.402566836762659e-19,-6.105006468715146e-05,-0.00011337868636474013,-1.1851637021506642e-19,-2.286988957586611e-20,-1.1011428314305904e-20,-4.19859107473444e-21,1.744287510518916e-05,5.590417451878382e-20,0.0004960317746736109,2.3987973066241786e-18,2.439454888092385e-19,-0.0004960317746736109,-3.1943194940869056e-19,-7.369186641112413e-20,-4.743384504624082e-20,-1.8886476935907695e-20,5.590417451878382e-20,7.086167897796258e-05,6.0,14.0,9.0,0.043225280940532684,-0.010345805436372757,-0.005082199349999428,-0.007443826179951429,0.0007086168043315411,0.00045351474545896053,0.0006802721181884408,0.0001653439103392884,0.0003174603043589741,0.0003607503604143858,-0.010345805436372757,0.008035714738070965,0.00045351474545896053,0.0006802721181884408,-0.0010629252064973116,-0.00018140589236281812,-0.0002721088530961424,1.9947625907838773e-19,1.5246593050577406e-19,4.168608491715778e-19,-0.005082199349999428,0.00045351474545896053,0.0015259244246408343,0.0003174603043589741,5.810733389116701e-19,-6.977150042075664e-05,-2.8760987881349397e-34,-8.26719551696442e-05,-4.88400473841466e-05,-2.2788691385680025e-34,-0.007443826179951429,0.0006802721181884408,0.0003174603043589741,0.0036131725646555424,1.1263976895076e-18,-5.956667238307238e-22,-0.0001700680295471102,3.3881317890172014e-21,-7.936507608974352e-05,-0.0003092146071139723,0.0007086168043315411,-0.0010629252064973116,5.810733389116701e-19,1.1263976895076e-18,0.00021258502965793014,1.2037062152420224e-35,-1.052217489267037e-19,-3.540251919252837e-20,-3.021015139116816e-20,-8.337216724937615e-20,0.00045351474545896053,-0.00018140589236281812,-6.977150042075664e-05,-5.956667238307238e-22,1.2037062152420224e-35,2.7908599804504775e-05,-0.0,-2.964615315390051e-21,4.235164736271502e-22,-0.0,0.0006802721181884408,-0.0002721088530961424,-2.8760987881349397e-34,-0.0001700680295471102,-1.052217489267037e-19,-0.0,6.80272132740356e-05,1.7522941611195477e-35,1.495290946698819e-35,4.1266148185067624e-35,0.0001653439103392884,1.9947625907838773e-19,-8.26719551696442e-05,3.3881317890172014e-21,-3.540251919252837e-20,-2.964615315390051e-21,1.7522941611195477e-35,6.359381586662494e-06,-4.235164736271502e-22,1.3884255671438334e-35,0.0003174603043589741,1.5246593050577406e-19,-4.88400473841466e-05,-7.936507608974352e-05,-3.021015139116816e-20,4.235164736271502e-22,1.495290946698819e-35,-4.235164736271502e-22,1.221001184603665e-05,1.1847897532025478e-35,0.0003607503604143858,4.168608491715778e-19,-2.2788691385680025e-34,-0.0003092146071139723,-8.337216724937615e-20,-0.0,4.1266148185067624e-35,1.3884255671438334e-35,1.1847897532025478e-35,3.865182588924654e-05,6.0,14.0,10.0,0.03949211537837982,-0.009366882964968681,-0.004599953535944223,-0.006164193153381348,0.0006377550889737904,0.0004081632650922984,0.0005565862520597875,0.00014880952949170023,0.0002597402490209788,0.00027056277031078935,-0.009366882964968681,0.007254406344145536,0.0004081632650922984,0.0005565862520597875,-0.0009566326625645161,-0.00016326530021615326,-0.00022263450955506414,-2.3843977465208555e-19,-7.623296525288703e-19,-1.456933065224349e-18,-0.004599953535944223,0.0004081632650922984,0.0013773280661553144,0.0002597402490209788,-9.071566734752937e-19,-6.27943518338725e-05,-8.172115352081152e-19,-7.440476474585012e-05,-3.996003943029791e-05,-6.539032314257257e-19,-0.006164193153381348,0.0005565862520597875,0.0002597402490209788,0.0026549939066171646,-3.4275314355688678e-18,-5.644416319253727e-19,-0.00012368583702482283,-5.573476792933296e-19,-5.77200589759741e-05,-0.000202922077733092,0.0006377550889737904,-0.0009566326625645161,-9.071566734752937e-19,-3.4275314355688678e-18,0.00019132652960252017,7.027345851921778e-20,2.568759502952733e-19,1.9471385717449317e-20,8.983822517300609e-20,2.188519309516767e-19,0.0004081632650922984,-0.00016326530021615326,-6.27943518338725e-05,-5.644416319253727e-19,7.027345851921778e-20,2.5117738914559595e-05,5.057928333600467e-20,-7.199780051661553e-21,1.6517142471458857e-20,2.915385144246075e-20,0.0005565862520597875,-0.00022263450955506414,-8.172115352081152e-19,-0.00012368583702482283,2.568759502952733e-19,5.057928333600467e-20,4.9474336265120655e-05,3.7076092979830677e-20,3.7605840769859803e-20,2.9328376858186634e-20,0.00014880952949170023,-2.3843977465208555e-19,-7.440476474585012e-05,-5.573476792933296e-19,1.9471385717449317e-20,-7.199780051661553e-21,3.7076092979830677e-20,5.723443337046774e-06,1.5246593050577406e-20,3.697046266184251e-20,0.0002597402490209788,-7.623296525288703e-19,-3.996003943029791e-05,-5.77200589759741e-05,8.983822517300609e-20,1.6517142471458857e-20,3.7605840769859803e-20,1.5246593050577406e-20,8.880008863343392e-06,1.9025423891770997e-20,0.00027056277031078935,-1.456933065224349e-18,-6.539032314257257e-19,-0.000202922077733092,2.188519309516767e-19,2.915385144246075e-20,2.9328376858186634e-20,3.697046266184251e-20,1.9025423891770997e-20,2.2546897525899112e-05,6.0,14.0,11.0,0.03635471686720848,-0.008557514287531376,-0.0042014531791210175,-0.005188858602195978,0.0005797773483209312,0.0003710575110744685,0.00046382189611904323,0.00013528138515539467,0.00021645022206939757,0.00020812520233448595,-0.008557514287531376,0.006611781194806099,0.0003710575110744685,0.00046382189611904323,-0.0008696660515852273,-0.00014842300151940435,-0.00018552875553723425,1.6813604002997862e-19,1.0842021724855044e-19,2.31065407792387e-19,-0.0042014531791210175,0.0003710575110744685,0.001255143666639924,0.00021645022206939757,6.240307926755037e-19,-5.7085770095000044e-05,0.0,-6.764069257769734e-05,-3.330003164592199e-05,-1.6580149224087924e-34,-0.005188858602195978,0.00046382189611904323,0.00021645022206939757,0.0020090227480977774,5.960166668701703e-19,3.6005524165556724e-21,-9.276437776861712e-05,3.3881317890172014e-21,-4.329004150349647e-05,-0.0001387501397402957,0.0005797773483209312,-0.0008696660515852273,6.240307926755037e-19,5.960166668701703e-19,0.0001739332074066624,-5.779503831324615e-20,0.0,-2.8965696933673345e-20,-2.0597829612748946e-20,-4.6213078327303136e-20,0.0003710575110744685,-0.00014842300151940435,-5.7085770095000044e-05,3.6005524165556724e-21,-5.779503831324615e-20,2.283430876559578e-05,0.0,-2.964615315390051e-21,-6.352747104407253e-22,1.5355817617366593e-35,0.00046382189611904323,-0.00018552875553723425,0.0,-9.276437776861712e-05,0.0,0.0,3.710575037985109e-05,0.0,0.0,-0.0,0.00013528138515539467,1.6813604002997862e-19,-6.764069257769734e-05,3.3881317890172014e-21,-2.8965696933673345e-20,-2.964615315390051e-21,0.0,5.203130058362149e-06,-6.352747104407253e-22,7.696024077765274e-36,0.00021645022206939757,1.0842021724855044e-19,-3.330003164592199e-05,-4.329004150349647e-05,-2.0597829612748946e-20,-6.352747104407253e-22,0.0,-6.352747104407253e-22,6.660006874881219e-06,5.4727279700070964e-36,0.00020812520233448595,2.31065407792387e-19,-1.6580149224087924e-34,-0.0001387501397402957,-4.6213078327303136e-20,1.5355817617366593e-35,-0.0,7.696024077765274e-36,5.4727279700070964e-36,1.387501379213063e-05,6.0,14.0,12.0,0.03368055447936058,-0.007877092808485031,-0.0038665947504341602,-0.004428309854120016,0.0005314626032486558,0.0003401360590942204,0.0003924646880477667,0.00012400794366840273,0.00018315018678549677,0.0001635269436519593,-0.007877092808485031,0.006073881406337023,0.0003401360590942204,0.0003924646880477667,-0.0007971939048729837,-0.0001360544265480712,-0.00015698587230872363,1.4399560103323106e-19,8.809142651444724e-20,1.8295911660692887e-19,-0.0038665947504341602,0.0003401360590942204,0.0011528964387252927,0.00018315018678549677,5.62443422059386e-19,-5.232862531556748e-05,2.202285662861181e-20,-6.200397183420137e-05,-2.8176951673231088e-05,0.0,-0.004428309854120016,0.0003924646880477667,0.00018315018678549677,0.001557371229864657,6.72553879492112e-19,2.2691313883195555e-20,-7.135721534723416e-05,5.148948897136844e-22,-3.330003164592199e-05,-9.811617201194167e-05,0.0005314626032486558,-0.0007971939048729837,5.62443422059386e-19,6.72553879492112e-19,0.0001594387722434476,-4.856388362291336e-20,-6.622347884258159e-20,-2.6551890202189845e-20,-1.7428932997800975e-20,-3.579155903671825e-20,0.0003401360590942204,-0.0001360544265480712,-5.232862531556748e-05,2.2691313883195555e-20,-4.856388362291336e-20,2.093144939863123e-05,-8.557110735440046e-21,-1.6940658945086007e-21,-6.167390287664772e-23,-4.518507543773295e-23,0.0003924646880477667,-0.00015698587230872363,2.202285662861181e-20,-7.135721534723416e-05,-6.622347884258159e-20,-8.557110735440046e-21,2.8542885047500022e-05,-5.293955920339377e-23,0.0,-8.470329472543003e-22,0.00012400794366840273,1.4399560103323106e-19,-6.200397183420137e-05,5.148948897136844e-22,-2.6551890202189845e-20,-1.6940658945086007e-21,-5.293955920339377e-23,4.76953618999687e-06,2.117582368135751e-22,-1.0587911840678754e-22,0.00018315018678549677,8.809142651444724e-20,-2.8176951673231088e-05,-3.330003164592199e-05,-1.7428932997800975e-20,-6.167390287664772e-23,0.0,2.117582368135751e-22,5.123082246427657e-06,4.235164736271502e-22,0.0001635269436519593,1.8295911660692887e-19,0.0,-9.811617201194167e-05,-3.579155903671825e-20,-4.518507543773295e-23,-8.470329472543003e-22,-1.0587911840678754e-22,4.235164736271502e-22,8.91965191840427e-06,6.0,14.0,13.0,0.03137381374835968,-0.007297039497643709,-0.003581240074709058,-0.0038237273693084717,0.0004905808600597084,0.00031397174461744726,0.00033639828325249255,0.00011446886492194608,0.00015698587230872363,0.00013082155783195049,-0.007297039497643709,0.005617010407149792,0.00031397174461744726,0.00033639828325249255,-0.0007358712609857321,-0.000125588703667745,-0.0001345593191217631,1.4145450219146816e-19,8.555032767268433e-20,1.2197274440461925e-19,-0.003581240074709058,0.00031397174461744726,0.0010660699335858226,0.00015698587230872363,5.117069033211623e-19,-4.8303343646693975e-05,1.1011428314305904e-20,-5.723443246097304e-05,-2.4151671823346987e-05,1.3552527156068805e-20,-0.0038237273693084717,0.00033639828325249255,0.00015698587230872363,0.0012319313827902079,5.567042361743399e-19,-2.137060290518744e-21,-5.6066382967401296e-05,3.8500345119714446e-22,-2.616431265778374e-05,-7.135721534723416e-05,0.0004905808600597084,-0.0007358712609857321,5.117069033211623e-19,5.567042361743399e-19,0.0001471742580179125,-4.1379878164027134e-20,-4.803021318732314e-20,-2.4509437482541503e-20,-1.493908542668655e-20,-2.8293722545899115e-20,0.00031397174461744726,-0.000125588703667745,-4.8303343646693975e-05,-2.137060290518744e-21,-4.1379878164027134e-20,1.932133818627335e-05,9.725967074665723e-23,-2.117582368135751e-21,4.538784740025458e-23,1.6127115150120481e-22,0.00033639828325249255,-0.0001345593191217631,1.1011428314305904e-20,-5.6066382967401296e-05,-4.803021318732314e-20,9.725967074665723e-23,2.242655318696052e-05,0.0,-1.9058241313221758e-21,4.658681209898652e-21,0.00011446886492194608,1.4145450219146816e-19,-5.723443246097304e-05,3.8500345119714446e-22,-2.4509437482541503e-20,-2.117582368135751e-21,0.0,4.402648755785776e-06,0.0,2.117582368135751e-22,0.00015698587230872363,8.555032767268433e-20,-2.4151671823346987e-05,-2.616431265778374e-05,-1.493908542668655e-20,4.538784740025458e-23,-1.9058241313221758e-21,0.0,4.0252789403893985e-06,-2.541098841762901e-21,0.00013082155783195049,1.2197274440461925e-19,1.3552527156068805e-20,-7.135721534723416e-05,-2.8293722545899115e-20,1.6127115150120481e-22,4.658681209898652e-21,2.117582368135751e-22,-2.541098841762901e-21,5.946434612269513e-06,6.0,14.0,14.0,0.02936345897614956,-0.0067966473288834095,-0.0033351555466651917,-0.0033351555466651917,0.0004555393534246832,0.0002915451768785715,0.0002915451768785715,0.00010629251482896507,0.0001360544265480712,0.00010629251482896507,-0.0067966473288834095,0.00522412545979023,0.0002915451768785715,0.0002915451768785715,-0.00068330904468894,-0.00011661807366181165,-0.00011661807366181165,7.369186641112413e-20,5.929230630780102e-20,7.453889935837843e-20,-0.0033351555466651917,0.0002915451768785715,0.0009914172114804387,0.0001360544265480712,4.692197534343535e-19,-4.485310637392104e-05,-6.776263578034403e-21,-5.3146257414482534e-05,-2.093144939863123e-05,-7.623296525288703e-21,-0.0033351555466651917,0.0002915451768785715,0.0001360544265480712,0.0009914172114804387,4.692197534343535e-19,-5.050121464435212e-36,-4.485310637392104e-05,2.564851607702174e-22,-2.093144939863123e-05,-5.3146257414482534e-05,0.0004555393534246832,-0.00068330904468894,4.692197534343535e-19,4.692197534343535e-19,0.000136661808937788,-3.567958915481669e-20,-3.567958915481669e-20,-2.2758763030448438e-20,-1.2947207046677583e-20,-2.2758763030448438e-20,0.0002915451768785715,-0.00011661807366181165,-4.485310637392104e-05,-5.050121464435212e-36,-3.567958915481669e-20,1.7941241821972653e-05,2.2847460722235037e-37,5.505714157152952e-21,1.066214818757118e-37,-3.688196100059626e-23,0.0002915451768785715,-0.00011661807366181165,-6.776263578034403e-21,-4.485310637392104e-05,-3.567958915481669e-20,2.2847460722235037e-37,1.7941241821972653e-05,0.0,9.529120656610879e-22,5.929230630780102e-21,0.00010629251482896507,7.369186641112413e-20,-5.3146257414482534e-05,2.564851607702174e-22,-2.2758763030448438e-20,5.505714157152952e-21,0.0,4.088173682248453e-06,0.0,0.0,0.0001360544265480712,5.929230630780102e-20,-2.093144939863123e-05,-2.093144939863123e-05,-1.2947207046677583e-20,1.066214818757118e-37,9.529120656610879e-22,0.0,3.2202231068367837e-06,1.2705494208814505e-21,0.00010629251482896507,7.453889935837843e-20,-7.623296525288703e-21,-5.3146257414482534e-05,-2.2758763030448438e-20,-3.688196100059626e-23,5.929230630780102e-21,0.0,1.2705494208814505e-21,4.088173682248453e-06,6.0,14.0,15.0,0.027595704421401024,-0.006360544357448816,-0.0031207483261823654,-0.0029346738010644913,0.00042517005931586027,0.0002721088530961424,0.00025510202976875007,9.920635056914762e-05,0.0001190476177725941,8.753501606406644e-05,-0.006360544357448816,0.004882653243839741,0.0002721088530961424,0.00025510202976875007,-0.0006377550889737904,-0.00010884353832807392,-0.0001020408162730746,7.115076756936123e-20,4.828087799349512e-20,8.131516293641283e-20,-0.0031207483261823654,0.0002721088530961424,0.0009265436674468219,0.0001190476177725941,4.33143511788772e-19,-4.186289879726246e-05,-8.470329472543003e-21,-4.960317528457381e-05,-1.8315018678549677e-05,-1.0164395367051604e-20,-0.0029346738010644913,0.00025510202976875007,0.0001190476177725941,0.00080977997276932,4.014322505368446e-19,-2.815305024162903e-36,-3.644314710982144e-05,1.694054938808349e-22,-1.70068033185089e-05,-4.0400776924798265e-05,0.00042517005931586027,-0.0006377550889737904,4.33143511788772e-19,4.014322505368446e-19,0.00012755101488437504,-3.108088500167667e-20,-2.705702129105985e-20,-2.124151183863445e-20,-1.1328806367791277e-20,-1.8582318424145398e-20,0.0002721088530961424,-0.00010884353832807392,-4.186289879726246e-05,-2.815305024162903e-36,-3.108088500167667e-20,1.6745159882702865e-05,5.293955920339377e-23,4.658681209898652e-21,-1.0587911840678754e-22,5.665525815005302e-23,0.00025510202976875007,-0.0001020408162730746,-8.470329472543003e-21,-3.644314710982144e-05,-2.705702129105985e-20,5.293955920339377e-23,1.4577259207726456e-05,0.0,1.2705494208814505e-21,1.9058241313221758e-21,9.920635056914762e-05,7.115076756936123e-20,-4.960317528457381e-05,1.694054938808349e-22,-2.124151183863445e-20,4.658681209898652e-21,0.0,3.815629042946966e-06,-1.0587911840678754e-22,5.293955920339377e-23,0.0001190476177725941,4.828087799349512e-20,-1.8315018678549677e-05,-1.70068033185089e-05,-1.1328806367791277e-20,-1.0587911840678754e-22,1.2705494208814505e-21,-1.0587911840678754e-22,2.6164311748289037e-06,1.2705494208814505e-21,8.753501606406644e-05,8.131516293641283e-20,-1.0164395367051604e-20,-4.0400776924798265e-05,-1.8582318424145398e-20,5.665525815005302e-23,1.9058241313221758e-21,5.293955920339377e-23,1.2705494208814505e-21,2.885769617932965e-06,6.0,14.0,16.0,0.026029057800769806,-0.005977078340947628,-0.002932266565039754,-0.002602290827780962,0.00039859695243649185,0.00025510202976875007,0.00022509002883452922,9.300595411332324e-05,0.0001050420178216882,7.294584793271497e-05,-0.005977078340947628,0.004583114292472601,0.00025510202976875007,0.00022509002883452922,-0.0005978954141028225,-0.0001020408162730746,-9.003601735457778e-05,1.0079692072326174e-19,5.082197683525802e-20,5.929230630780102e-20,-0.002932266565039754,0.00025510202976875007,0.0008696447475813329,0.0001050420178216882,2.959363752476105e-19,-3.924646807718091e-05,-8.470329472543003e-21,-4.650297705666162e-05,-1.6160311133717187e-05,2.541098841762901e-21,-0.002602290827780962,0.00022509002883452922,0.0001050420178216882,0.0006700180238112807,3.062721779472196e-19,-1.3014550372973197e-20,-3.0012004572199658e-05,-2.0210615382020364e-21,-1.4005602679389995e-05,-3.126250521745533e-05,0.00039859695243649185,-0.0005978954141028225,2.959363752476105e-19,3.062721779472196e-19,0.00011957908282056451,1.5165839543276917e-20,-4.294202329111773e-21,-1.9913917651642384e-20,-9.996005951260243e-21,-1.5370841394696553e-20,0.00025510202976875007,-0.0001020408162730746,-3.924646807718091e-05,-1.3014550372973197e-20,1.5165839543276917e-20,1.5698587958468124e-05,4.950472402151e-21,-8.470329472543003e-22,1.6616822329597408e-22,1.5029149196608203e-23,0.00022509002883452922,-9.003601735457778e-05,-8.470329472543003e-21,-3.0012004572199658e-05,-4.294202329111773e-21,4.950472402151e-21,1.2004801646980923e-05,0.0,-5.293955920339377e-22,2.117582368135751e-21,9.300595411332324e-05,1.0079692072326174e-19,-4.650297705666162e-05,-2.0210615382020364e-21,-1.9913917651642384e-20,-8.470329472543003e-22,0.0,3.577152028810815e-06,3.1763735522036263e-22,0.0,0.0001050420178216882,5.082197683525802e-20,-1.6160311133717187e-05,-1.4005602679389995e-05,-9.996005951260243e-21,1.6616822329597408e-22,-5.293955920339377e-22,3.1763735522036263e-22,2.1547079995798413e-06,-5.293955920339377e-22,7.294584793271497e-05,5.929230630780102e-20,2.541098841762901e-21,-3.126250521745533e-05,-1.5370841394696553e-20,1.5029149196608203e-23,2.117582368135751e-21,0.0,-5.293955920339377e-22,2.0841669083893066e-06,6.0,15.0,3.0,0.09509609639644623,-0.02619047649204731,-0.012167367152869701,-0.0431547611951828,0.0019841270986944437,0.0011904762359336019,0.004761904943734407,0.00040849673678167164,0.0020833334419876337,0.0055555556900799274,-0.02619047649204731,0.021388888359069824,0.0011904762359336019,0.004761904943734407,-0.0029761905316263437,-0.0004761904710903764,-0.0019047618843615055,1.0110751670351775e-18,1.260385025514399e-18,-4.0332320816460765e-17,-0.012167367152869701,0.0011904762359336019,0.0035607190802693367,0.0020833334419876337,1.778362836758114e-18,-0.0001700680295471102,2.358139725155972e-18,-0.0001885369565570727,-0.00029761905898340046,-1.3010426069826053e-18,-0.0431547611951828,0.004761904943734407,0.0020833334419876337,0.0987103208899498,-2.523137607378047e-17,2.0907983891482545e-19,-0.004761904943734407,5.494994413402148e-19,-0.0020833334419876337,-0.03333333507180214,0.0019841270986944437,-0.0029761905316263437,1.778362836758114e-18,-2.523137607378047e-17,0.0005952381179668009,-4.079137014936783e-35,2.2937180718697298e-18,-1.2536087619363645e-19,1.5029234542522906e-19,8.681594709711497e-18,0.0011904762359336019,-0.0004761904710903764,-0.0001700680295471102,2.0907983891482545e-19,-4.079137014936783e-35,6.80272132740356e-05,1.9467889586891573e-20,-3.5575383784680614e-20,-1.4527987648240206e-19,3.5389159579400785e-19,0.004761904943734407,-0.0019047618843615055,2.358139725155972e-18,-0.004761904943734407,2.2937180718697298e-18,1.9467889586891573e-20,0.0019047618843615055,-1.0119010293286292e-19,-7.995991022080595e-19,-6.071532165918825e-18,0.00040849673678167164,1.0110751670351775e-18,-0.0001885369565570727,5.494994413402148e-19,-1.2536087619363645e-19,-3.5575383784680614e-20,-1.0119010293286292e-19,1.3466925338434521e-05,-2.2899314264335696e-20,-7.419284705664716e-20,0.0020833334419876337,1.260385025514399e-18,-0.00029761905898340046,-0.0020833334419876337,1.5029234542522906e-19,-1.4527987648240206e-19,-7.995991022080595e-19,-2.2899314264335696e-20,0.00029761905898340046,9.75781955236954e-19,0.0055555556900799274,-4.0332320816460765e-17,-1.3010426069826053e-18,-0.03333333507180214,8.681594709711497e-18,3.5389159579400785e-19,-6.071532165918825e-18,-7.419284705664716e-20,9.75781955236954e-19,0.01666666753590107,6.0,15.0,4.0,0.07751750946044922,-0.020357143133878708,-0.009438024833798409,-0.027559524402022362,0.0014880952658131719,0.0008928571478463709,0.0028571428265422583,0.00030637255986221135,0.0012499999720603228,0.0027777778450399637,-0.020357143133878708,0.016327381134033203,0.0008928571478463709,0.0028571428265422583,-0.0022321429569274187,-0.0003571428533177823,-0.0011428571306169033,8.226888667304999e-19,-7.724940478959219e-19,-1.734723475976807e-17,-0.009438024833798409,0.0008928571478463709,0.0027151822578161955,0.0012499999720603228,1.960219735198816e-18,-0.00012755101488437504,-5.421010862427522e-20,-0.00014140272105578333,-0.00017857142665889114,-2.8189256484623115e-18,-0.027559524402022362,0.0028571428265422583,0.0012499999720603228,0.03781745955348015,-6.793452391163255e-18,-3.1640187825745343e-18,-0.0019047618843615055,-1.8807179072614843e-19,-0.0008333333535119891,-0.008333333767950535,0.0014880952658131719,-0.0022321429569274187,1.960219735198816e-18,-6.793452391163255e-18,0.00044642857392318547,-8.470329472543003e-20,1.7612053013961743e-19,-1.1350241493207625e-19,3.292596628793875e-20,1.9354944795089935e-18,0.0008928571478463709,-0.0003571428533177823,-0.00012755101488437504,-3.1640187825745343e-18,-8.470329472543003e-20,5.10204081365373e-05,2.0426447160233336e-19,-1.8634724839594607e-20,8.172320208529729e-20,6.50179264308012e-19,0.0028571428265422583,-0.0011428571306169033,-5.421010862427522e-20,-0.0019047618843615055,1.7612053013961743e-19,2.0426447160233336e-19,0.0007619047537446022,-2.83974755516377e-20,-2.710505431213761e-20,1.0299920638612292e-18,0.00030637255986221135,8.226888667304999e-19,-0.00014140272105578333,-1.8807179072614843e-19,-1.1350241493207625e-19,-1.8634724839594607e-20,-2.83974755516377e-20,1.0100194231199566e-05,7.152328641951992e-21,6.668454802354894e-20,0.0012499999720603228,-7.724940478959219e-19,-0.00017857142665889114,-0.0008333333535119891,3.292596628793875e-20,8.172320208529729e-20,-2.710505431213761e-20,7.152328641951992e-21,0.0001190476177725941,-2.710505431213761e-20,0.0027777778450399637,-1.734723475976807e-17,-2.8189256484623115e-18,-0.008333333767950535,1.9354944795089935e-18,6.50179264308012e-19,1.0299920638612292e-18,6.668454802354894e-20,-2.710505431213761e-20,0.0027777778450399637,6.0,15.0,5.0,0.06552987545728683,-0.01666666753590107,-0.007717086933553219,-0.019166667014360428,0.0011904762359336019,0.0007142857066355646,0.0019047618843615055,0.00024509805371053517,0.0008333333535119891,0.0015873016091063619,-0.01666666753590107,0.013214285485446453,0.0007142857066355646,0.0019047618843615055,-0.0017857142956927419,-0.0002857142826542258,-0.0007619047537446022,-1.2743610691440949e-18,-6.505213034913027e-19,1.7889335846010823e-18,-0.007717086933553219,0.0007142857066355646,0.002195955254137516,0.0008333333535119891,-2.5512632371299526e-18,-0.0001020408162730746,-1.1485766764768313e-18,-0.0001131221724790521,-0.0001190476177725941,1.2468324983583301e-18,-0.019166667014360428,0.0019047618843615055,0.0008333333535119891,0.019107142463326454,-4.336808689942018e-19,-5.963111948670274e-19,-0.0009523809421807528,-1.8973538018496328e-19,-0.00041666667675599456,-0.0031746032182127237,0.0011904762359336019,-0.0017857142956927419,-2.5512632371299526e-18,-4.336808689942018e-19,0.0003571428533177823,-6.0661972807140354e-21,-3.460837604439374e-19,1.5331296345302836e-19,1.0901468869033758e-19,1.3894247099341825e-19,0.0007142857066355646,-0.0002857142826542258,-0.0001020408162730746,-5.963111948670274e-19,-6.0661972807140354e-21,4.0816325054038316e-05,4.743384504624082e-20,3.785440208158345e-20,4.0657581468206416e-20,4.404571325722362e-20,0.0019047618843615055,-0.0007619047537446022,-1.1485766764768313e-18,-0.0009523809421807528,-3.460837604439374e-19,4.743384504624082e-20,0.0003809523768723011,8.324706910642457e-20,-8.131516293641283e-20,-1.2807138162485021e-18,0.00024509805371053517,-1.2743610691440949e-18,-0.0001131221724790521,-1.8973538018496328e-19,1.5331296345302836e-19,3.785440208158345e-20,8.324706910642457e-20,8.080155566858593e-06,4.13867217911263e-21,-1.251615224348369e-20,0.0008333333535119891,-6.505213034913027e-19,-0.0001190476177725941,-0.00041666667675599456,1.0901468869033758e-19,4.0657581468206416e-20,-8.131516293641283e-20,4.13867217911263e-21,5.952380888629705e-05,-5.590417451878382e-19,0.0015873016091063619,1.7889335846010823e-18,1.2468324983583301e-18,-0.0031746032182127237,1.3894247099341825e-19,4.404571325722362e-20,-1.2807138162485021e-18,-1.251615224348369e-20,-5.590417451878382e-19,0.0007936508045531809,6.0,15.0,6.0,0.05679549649357796,-0.014115646481513977,-0.006530112121254206,-0.014115646481513977,0.0009920635493472219,0.0005952381179668009,0.0013605442363768816,0.00020424836839083582,0.0005952381179668009,0.0009920635493472219,-0.014115646481513977,0.011102607473731041,0.0005952381179668009,0.0013605442363768816,-0.0014880952658131719,-0.0002380952355451882,-0.0005442177061922848,5.073727354053259e-19,1.2739375526704677e-18,3.74049749507499e-18,-0.006530112121254206,0.0005952381179668009,0.0018441351130604744,0.0005952381179668009,1.164670302474663e-18,-8.50340147735551e-05,1.0977546996415732e-18,-9.426847827853635e-05,-8.50340147735551e-05,1.6398557858843255e-18,-0.014115646481513977,0.0013605442363768816,0.0005952381179668009,0.011102607473731041,5.421010862427522e-19,1.4365678785432934e-18,-0.0005442177061922848,1.8295911660692887e-19,-0.0002380952355451882,-0.0014880952658131719,0.0009920635493472219,-0.0014880952658131719,1.164670302474663e-18,5.421010862427522e-19,0.00029761905898340046,-1.126775736896931e-20,1.4394366960039921e-19,-5.844527336054672e-20,-7.607249867640028e-20,-7.604619045551197e-20,0.0005952381179668009,-0.0002380952355451882,-8.50340147735551e-05,1.4365678785432934e-18,-1.126775736896931e-20,3.40136066370178e-05,-1.0164395367051604e-19,-1.6514376586285632e-20,-6.352747104407253e-20,-1.4907779871675686e-19,0.0013605442363768816,-0.0005442177061922848,1.0977546996415732e-18,-0.0005442177061922848,1.4394366960039921e-19,-1.0164395367051604e-19,0.00021768707665614784,-2.382132176371255e-20,-1.4399560103323106e-19,-7.928228386300251e-19,0.00020424836839083582,5.073727354053259e-19,-9.426847827853635e-05,1.8295911660692887e-19,-5.844527336054672e-20,-1.6514376586285632e-20,-2.382132176371255e-20,6.7334626692172606e-06,-5.666264340273883e-21,-1.8727919983413204e-20,0.0005952381179668009,1.2739375526704677e-18,-8.50340147735551e-05,-0.0002380952355451882,-7.607249867640028e-20,-6.352747104407253e-20,-1.4399560103323106e-19,-5.666264340273883e-21,3.40136066370178e-05,-3.1848438816761693e-19,0.0009920635493472219,3.74049749507499e-18,1.6398557858843255e-18,-0.0014880952658131719,-7.604619045551197e-20,-1.4907779871675686e-19,-7.928228386300251e-19,-1.8727919983413204e-20,-3.1848438816761693e-19,0.00029761905898340046,6.0,15.0,7.0,0.05013519152998924,-0.01224489789456129,-0.0056610144674777985,-0.010834750719368458,0.0008503401186317205,0.0005102040595375001,0.0010204081190750003,0.00017507003212813288,0.00044642857392318547,0.0006613756413571537,-0.01224489789456129,0.0095748296007514,0.0005102040595375001,0.0010204081190750003,-0.0012755101779475808,-0.0002040816325461492,-0.0004081632650922984,3.9979955110402976e-19,5.963111948670274e-19,-1.6263032587282567e-19,-0.0056610144674777985,0.0005102040595375001,0.0015897980192676187,0.00044642857392318547,8.953138252477955e-19,-7.288629421964288e-05,3.5914196963582334e-19,-8.080155384959653e-05,-6.377550744218752e-05,8.131516293641283e-19,-0.010834750719368458,0.0010204081190750003,0.00044642857392318547,0.007050736807286739,-9.75781955236954e-19,5.149960319306146e-19,-0.0003401360590942204,1.6940658945086007e-19,-0.00014880952949170023,-0.0007936508045531809,0.0008503401186317205,-0.0012755101779475808,8.953138252477955e-19,-9.75781955236954e-19,0.00025510202976875007,-2.763997844334373e-20,1.519261951560832e-19,-4.997494388800372e-20,-2.5632716442645837e-20,1.1534176734636154e-19,0.0005102040595375001,-0.0002040816325461492,-7.288629421964288e-05,5.149960319306146e-19,-2.763997844334373e-20,2.9154518415452912e-05,1.6940658945086007e-21,-1.2406449838124546e-20,-3.9810548520952116e-20,-3.9810548520952116e-20,0.0010204081190750003,-0.0004081632650922984,3.5914196963582334e-19,-0.0003401360590942204,1.519261951560832e-19,1.6940658945086007e-21,0.0001360544265480712,-1.3144249708082098e-20,-4.912791094074942e-20,-8.470329472543003e-20,0.00017507003212813288,3.9979955110402976e-19,-8.080155384959653e-05,1.6940658945086007e-19,-4.997494388800372e-20,-1.2406449838124546e-20,-1.3144249708082098e-20,5.77153923586593e-06,-8.175077692649857e-21,-1.3273162252256792e-20,0.00044642857392318547,5.963111948670274e-19,-6.377550744218752e-05,-0.00014880952949170023,-2.5632716442645837e-20,-3.9810548520952116e-20,-4.912791094074942e-20,-8.175077692649857e-21,2.1258503693388775e-05,-1.4823076576950256e-19,0.0006613756413571537,-1.6263032587282567e-19,8.131516293641283e-19,-0.0007936508045531809,1.1534176734636154e-19,-3.9810548520952116e-20,-8.470329472543003e-20,-1.3273162252256792e-20,-1.4823076576950256e-19,0.00013227513409219682,6.0,15.0,8.0,0.04488309100270271,-0.010813492350280285,-0.004996790550649166,-0.00858134962618351,0.0007440476329065859,0.00044642857392318547,0.0007936508045531809,0.00015318627993110567,0.00034722223062999547,0.00046296295477077365,-0.010813492350280285,0.008417658507823944,0.00044642857392318547,0.0007936508045531809,-0.0011160714784637094,-0.00017857142665889114,-0.0003174603043589741,4.425747149403719e-19,5.421010862427522e-19,1.6940658945086007e-18,-0.004996790550649166,0.00044642857392318547,0.001397273619659245,0.00034722223062999547,1.3383120566617945e-18,-6.377550744218752e-05,2.973085644862594e-19,-7.070136052789167e-05,-4.960317528457381e-05,3.4558944247975454e-19,-0.00858134962618351,0.0007936508045531809,0.00034722223062999547,0.0047666290774941444,3.3610267347050637e-18,2.574980159653073e-19,-0.00022675737272948027,9.486769009248164e-20,-9.920635056914762e-05,-0.00046296295477077365,0.0007440476329065859,-0.0011160714784637094,1.3383120566617945e-18,3.3610267347050637e-18,0.00022321428696159273,-4.539158458146141e-20,-2.9715116752532706e-19,-6.03510974918689e-20,-9.78819233199278e-20,-2.441729893270847e-19,0.00044642857392318547,-0.00017857142665889114,-6.377550744218752e-05,2.574980159653073e-19,-4.539158458146141e-20,2.551020406826865e-05,-3.3881317890172014e-21,-7.233210588429626e-21,2.117582368135751e-21,-3.5575383784680614e-20,0.0007936508045531809,-0.0003174603043589741,2.973085644862594e-19,-0.00022675737272948027,-2.9715116752532706e-19,-3.3881317890172014e-21,9.070294618140906e-05,-1.7424530522861118e-20,-1.2705494208814505e-20,-3.049318610115481e-20,0.00015318627993110567,4.425747149403719e-19,-7.070136052789167e-05,9.486769009248164e-20,-6.03510974918689e-20,-7.233210588429626e-21,-1.7424530522861118e-20,5.050097115599783e-06,3.9509628276894865e-23,-6.7194320694254616e-21,0.00034722223062999547,5.421010862427522e-19,-4.960317528457381e-05,-9.920635056914762e-05,-9.78819233199278e-20,2.117582368135751e-21,-1.2705494208814505e-20,3.9509628276894865e-23,1.4172335795592517e-05,-4.0234064994579266e-20,0.00046296295477077365,1.6940658945086007e-18,3.4558944247975454e-19,-0.00046296295477077365,-2.441729893270847e-19,-3.5575383784680614e-20,-3.049318610115481e-20,-6.7194320694254616e-21,-4.0234064994579266e-20,6.613756704609841e-05,6.0,15.0,9.0,0.04063268005847931,-0.009682539850473404,-0.004472455475479364,-0.006966089364141226,0.0006613756413571537,0.00039682540227659047,0.0006349206087179482,0.00013616557407658547,0.00027777778450399637,0.00033670032280497253,-0.009682539850473404,0.007510581985116005,0.00039682540227659047,0.0006349206087179482,-0.0009920635493472219,-0.00015873015217948705,-0.00025396826094947755,1.300195574035351e-19,1.3044307387716225e-19,3.89070113830422e-19,-0.004472455475479364,0.00039682540227659047,0.0012464302126318216,0.00027777778450399637,6.740953822623928e-19,-5.668934318237007e-05,-3.1140886397184507e-34,-6.28456546110101e-05,-3.968253804487176e-05,-2.302609229478909e-19,-0.006966089364141226,0.0006349206087179482,0.00027777778450399637,0.003376923967152834,1.0366989476653857e-18,-2.827960877669743e-21,-0.00015873015217948705,-1.4907779871675686e-19,-6.944444612599909e-05,-0.00028860027668997645,0.0006613756413571537,-0.0009920635493472219,6.740953822623928e-19,1.0366989476653857e-18,0.00019841270113829523,-6.547130670948093e-20,-9.165983197821271e-20,-2.890582973683982e-20,-2.643388125558179e-20,-7.781402405855411e-20,0.00039682540227659047,-0.00015873015217948705,-5.668934318237007e-05,-2.827960877669743e-21,-6.547130670948093e-20,2.2675736545352265e-05,3.024548973567224e-35,1.6940658945086007e-21,4.235164736271502e-22,3.2015458211999246e-35,0.0006349206087179482,-0.00025396826094947755,-3.1140886397184507e-34,-0.00015873015217948705,-9.165983197821271e-20,3.024548973567224e-35,6.349206523736939e-05,1.3353496726182106e-35,1.221154242047227e-35,3.5947397849862895e-35,0.00013616557407658547,1.300195574035351e-19,-6.28456546110101e-05,-1.4907779871675686e-19,-2.890582973683982e-20,1.6940658945086007e-21,1.3353496726182106e-35,4.488975264393957e-06,5.082197683525802e-21,1.4083985852872724e-20,0.00027777778450399637,1.3044307387716225e-19,-3.968253804487176e-05,-6.944444612599909e-05,-2.643388125558179e-20,4.235164736271502e-22,1.221154242047227e-35,5.082197683525802e-21,9.92063451121794e-06,8.271278636331061e-21,0.00033670032280497253,3.89070113830422e-19,-2.302609229478909e-19,-0.00028860027668997645,-7.781402405855411e-20,3.2015458211999246e-35,3.5947397849862895e-35,1.4083985852872724e-20,8.271278636331061e-21,3.607503458624706e-05,6.0,15.0,10.0,0.0371210016310215,-0.008766233921051025,-0.004047937225550413,-0.0057683982886374,0.0005952381179668009,0.0003571428533177823,0.0005194804980419576,0.00012254902685526758,0.00022727272880729288,0.00025252526393160224,-0.008766233921051025,0.006780303083360195,0.0003571428533177823,0.0005194804980419576,-0.0008928571478463709,-0.0001428571413271129,-0.00020779221085831523,1.1943164556285635e-19,1.0842021724855044e-19,2.8536575665161295e-19,-0.004047937225550413,0.0003571428533177823,0.0011250339448451996,0.00022727272880729288,5.941175635813251e-19,-5.10204081365373e-05,-1.996086294144691e-34,-5.656108623952605e-05,-3.246753112762235e-05,-8.911599956301926e-20,-0.0057683982886374,0.0005194804980419576,0.00022727272880729288,0.0024813611526042223,8.150412717747174e-19,1.7098419009226705e-21,-0.0001154401179519482,-1.4060746924421386e-19,-5.0505052058724687e-05,-0.00018939393339678645,0.0005952381179668009,-0.0008928571478463709,5.941175635813251e-19,8.150412717747174e-19,0.00017857142665889114,-5.3031760761125024e-20,-5.999552615074474e-20,-2.601524547068613e-20,-2.162772117416575e-20,-5.707315520773171e-20,0.0003571428533177823,-0.0001428571413271129,-5.10204081365373e-05,1.7098419009226705e-21,-5.3031760761125024e-20,2.0408162527019158e-05,1.7817343253003958e-35,1.2705494208814505e-21,-0.0,2.075075984593065e-35,0.0005194804980419576,-0.00020779221085831523,-1.996086294144691e-34,-0.0001154401179519482,-5.999552615074474e-20,1.7817343253003958e-35,4.617604645318352e-05,8.740470610499735e-36,7.266372426454926e-36,1.9175149717785015e-35,0.00012254902685526758,1.1943164556285635e-19,-5.656108623952605e-05,-1.4060746924421386e-19,-2.601524547068613e-20,1.2705494208814505e-21,8.740470610499735e-36,4.040077783429297e-06,6.988021814847978e-21,1.0329982546959229e-20,0.00022727272880729288,1.0842021724855044e-19,-3.246753112762235e-05,-5.0505052058724687e-05,-2.162772117416575e-20,-0.0,7.266372426454926e-36,6.988021814847978e-21,7.215007371996762e-06,-1.233416846975419e-20,0.00025252526393160224,2.8536575665161295e-19,-8.911599956301926e-20,-0.00018939393339678645,-5.707315520773171e-20,2.075075984593065e-35,1.9175149717785015e-35,1.0329982546959229e-20,-1.233416846975419e-20,2.1043770175310783e-05,6.0,15.0,11.0,0.03417012095451355,-0.008008657954633236,-0.003697160631418228,-0.0048555610701441765,0.0005411255406215787,0.0003246753185521811,0.00043290044413879514,0.00011140819697175175,0.00018939393339678645,0.00019425019854679704,-0.008008657954633236,0.006179653573781252,0.0003246753185521811,0.00043290044413879514,-0.000811688310932368,-0.0001298701245104894,-0.00017316016601398587,1.0842021724855044e-19,9.317362419797304e-20,2.156610429646622e-19,-0.003697160631418228,0.0003246753185521811,0.00102521781809628,0.00018939393339678645,5.307883573903239e-19,-4.638218888430856e-05,-2.6749740005966502e-34,-5.141917063156143e-05,-2.7056277758674696e-05,-1.2839744329762154e-19,-0.0048555610701441765,0.00043290044413879514,0.00018939393339678645,0.0018776131328195333,7.620139797276048e-19,-4.545109069457051e-22,-8.658008300699294e-05,-1.1011428314305904e-19,-3.787878813454881e-05,-0.00012950012751389295,0.0005411255406215787,-0.000811688310932368,5.307883573903239e-19,7.620139797276048e-19,0.00016233765927609056,-4.382790303100648e-20,-8.181208522705553e-20,-2.3650223008297652e-20,-1.8023100709206936e-20,-4.313220859293244e-20,0.0003246753185521811,-0.0001298701245104894,-4.638218888430856e-05,-4.545109069457051e-22,-4.382790303100648e-20,1.8552875189925544e-05,2.2087616338150666e-35,1.2705494208814505e-21,0.0,1.372742647273378e-35,0.00043290044413879514,-0.00017316016601398587,-2.6749740005966502e-34,-8.658008300699294e-05,-8.181208522705553e-20,2.2087616338150666e-35,3.4632033930392936e-05,1.191882395111681e-35,9.082966071167268e-36,2.1737012807623122e-35,0.00011140819697175175,1.0842021724855044e-19,-5.141917063156143e-05,-1.1011428314305904e-19,-2.3650223008297652e-20,1.2705494208814505e-21,1.191882395111681e-35,3.6727979022543877e-06,4.658681209898652e-21,7.806734327438707e-21,0.00018939393339678645,9.317362419797304e-20,-2.7056277758674696e-05,-3.787878813454881e-05,-1.8023100709206936e-20,0.0,9.082966071167268e-36,4.658681209898652e-21,5.4112551879370585e-06,3.820632138799145e-21,0.00019425019854679704,2.156610429646622e-19,-1.2839744329762154e-19,-0.00012950012751389295,-4.313220859293244e-20,1.372742647273378e-35,2.1737012807623122e-35,7.806734327438707e-21,3.820632138799145e-21,1.2950013115187176e-05,6.0,15.0,12.0,0.031655203551054,-0.007371794898062944,-0.003402418689802289,-0.00414377311244607,0.0004960317746736109,0.00029761905898340046,0.00036630037357099354,0.00010212418419541791,0.00016025641525629908,0.00015262515807989985,-0.007371794898062944,0.005676892586052418,0.00029761905898340046,0.00036630037357099354,-0.0007440476329065859,-0.0001190476177725941,-0.00014652014942839742,-2.253107639696439e-19,-1.4484263398048536e-19,-2.744386749103933e-19,-0.003402418689802289,0.00029761905898340046,0.000941690756008029,0.00016025641525629908,-9.589138813906195e-19,-4.251700738677755e-05,8.470329472543003e-21,-4.7134239139268175e-05,-2.2893773348187096e-05,-6.098637220230962e-20,-0.00414377311244607,0.00036630037357099354,0.00016025641525629908,0.001455488963983953,-1.0926444812147972e-18,1.2776277624989155e-22,-6.660006329184398e-05,-9.094757777201627e-20,-2.9137529054423794e-05,-9.157509339274839e-05,0.0004960317746736109,-0.0007440476329065859,-9.589138813906195e-19,-1.0926444812147972e-18,0.00014880952949170023,7.365522489492744e-20,5.768800889680003e-20,4.3358742989672596e-20,3.050063395784206e-20,6.681090632446495e-20,0.00029761905898340046,-0.0001190476177725941,-4.251700738677755e-05,1.2776277624989155e-22,7.365522489492744e-20,1.70068033185089e-05,4.70934088535531e-23,1.2705494208814505e-21,-2.1431593843846783e-22,-2.0168937714695876e-23,0.00036630037357099354,-0.00014652014942839742,8.470329472543003e-21,-6.660006329184398e-05,5.768800889680003e-20,4.70934088535531e-23,2.6640027499524876e-05,5.293955920339377e-23,-1.9058241313221758e-21,-1.0164395367051604e-20,0.00010212418419541791,-2.253107639696439e-19,-4.7134239139268175e-05,-9.094757777201627e-20,4.3358742989672596e-20,1.2705494208814505e-21,5.293955920339377e-23,3.3667313346086303e-06,3.3881317890172014e-21,6.03510974918689e-21,0.00016025641525629908,-1.4484263398048536e-19,-2.2893773348187096e-05,-2.9137529054423794e-05,3.050063395784206e-20,-2.1431593843846783e-22,-1.9058241313221758e-21,3.3881317890172014e-21,4.162503955740249e-06,-4.235164736271502e-21,0.00015262515807989985,-2.744386749103933e-19,-6.098637220230962e-20,-9.157509339274839e-05,6.681090632446495e-20,-2.0168937714695876e-23,-1.0164395367051604e-20,6.03510974918689e-21,-4.235164736271502e-21,8.325007911480498e-06,6.0,15.0,13.0,0.029486024752259254,-0.006828885525465012,-0.0031512605492025614,-0.0035779697354882956,0.0004578754596877843,0.00027472528745420277,0.00031397174461744726,9.426847827853635e-05,0.00013736264372710139,0.00012210012937430292,-0.006828885525465012,0.005249869078397751,0.00027472528745420277,0.00031397174461744726,-0.0006868132040835917,-0.00010989011207129806,-0.000125588703667745,8.427977825180288e-20,6.860966872759833e-20,1.0503208545953324e-19,-0.0031512605492025614,0.00027472528745420277,0.0008707625092938542,0.00013736264372710139,4.370437200757478e-19,-3.924646807718091e-05,5.082197683525802e-21,-4.3508527596713975e-05,-1.9623234038590454e-05,-7.284483346386983e-20,-0.0035779697354882956,0.00031397174461744726,0.00013736264372710139,0.0011513287900015712,5.129907393306329e-19,-3.3684398013389675e-21,-5.232862531556748e-05,-7.740146772804329e-20,-2.2893773348187096e-05,-6.660006329184398e-05,0.0004578754596877843,-0.0006868132040835917,4.370437200757478e-19,5.129907393306329e-19,0.00013736264372710139,-3.1379739540878394e-20,-4.183965487528737e-20,-2.0011726912315377e-20,-1.3071699344453948e-20,-2.6407474483878316e-20,0.00027472528745420277,-0.00010989011207129806,-3.924646807718091e-05,-3.3684398013389675e-21,-3.1379739540878394e-20,1.5698587958468124e-05,4.7218604234655296e-23,2.117582368135751e-21,2.787384851443952e-22,1.3062456166564165e-22,0.00031397174461744726,-0.000125588703667745,5.082197683525802e-21,-5.232862531556748e-05,-4.183965487528737e-20,4.7218604234655296e-23,2.093144939863123e-05,1.0587911840678754e-22,-1.0587911840678754e-21,4.658681209898652e-21,9.426847827853635e-05,8.427977825180288e-20,-4.3508527596713975e-05,-7.740146772804329e-20,-2.0011726912315377e-20,2.117582368135751e-21,1.0587911840678754e-22,3.1077520361577626e-06,2.6469779601696886e-21,4.9763185651190145e-21,0.00013736264372710139,6.860966872759833e-20,-1.9623234038590454e-05,-2.2893773348187096e-05,-1.3071699344453948e-20,2.787384851443952e-22,-1.0587911840678754e-21,2.6469779601696886e-21,3.2705390822229674e-06,4.235164736271502e-22,0.00012210012937430292,1.0503208545953324e-19,-7.284483346386983e-20,-6.660006329184398e-05,-2.6407474483878316e-20,1.3062456166564165e-22,4.658681209898652e-21,4.9763185651190145e-21,4.235164736271502e-22,5.550005425902782e-06,6.0,15.0,14.0,0.027595704421401024,-0.006360544357448816,-0.0029346738010644913,-0.0031207483261823654,0.00042517005931586027,0.00025510202976875007,0.0002721088530961424,8.753501606406644e-05,0.0001190476177725941,9.920635056914762e-05,-0.006360544357448816,0.004882653243839741,0.00025510202976875007,0.0002721088530961424,-0.0006377550889737904,-0.0001020408162730746,-0.00010884353832807392,8.089164646278568e-20,4.1504614415460717e-20,7.115076756936123e-20,-0.0029346738010644913,0.00025510202976875007,0.00080977997276932,0.0001190476177725941,4.014322505368446e-19,-3.644314710982144e-05,-1.4399560103323106e-20,-4.0400776924798265e-05,-1.70068033185089e-05,-6.691560283308973e-20,-0.0031207483261823654,0.0002721088530961424,0.0001190476177725941,0.0009265436674468219,4.33143511788772e-19,1.730766783532456e-21,-4.186289879726246e-05,-7.370024161482623e-20,-1.8315018678549677e-05,-4.960317528457381e-05,0.00042517005931586027,-0.0006377550889737904,4.014322505368446e-19,4.33143511788772e-19,0.00012755101488437504,-2.705702129105985e-20,-3.108088500167667e-20,-1.8582318424145398e-20,-1.1328806367791277e-20,-2.124151183863445e-20,0.00025510202976875007,-0.0001020408162730746,-3.644314710982144e-05,1.730766783532456e-21,-2.705702129105985e-20,1.4577259207726456e-05,-7.819913782406024e-23,1.9058241313221758e-21,-3.4212124375748165e-23,-9.145334525075573e-23,0.0002721088530961424,-0.00010884353832807392,-1.4399560103323106e-20,-4.186289879726246e-05,-3.108088500167667e-20,-7.819913782406024e-23,1.6745159882702865e-05,-5.293955920339377e-23,2.541098841762901e-21,5.082197683525802e-21,8.753501606406644e-05,8.089164646278568e-20,-4.0400776924798265e-05,-7.370024161482623e-20,-1.8582318424145398e-20,1.9058241313221758e-21,-5.293955920339377e-23,2.885769617932965e-06,3.494010907423989e-21,3.8116482626443515e-21,0.0001190476177725941,4.1504614415460717e-20,-1.70068033185089e-05,-1.8315018678549677e-05,-1.1328806367791277e-20,-3.4212124375748165e-23,2.541098841762901e-21,3.494010907423989e-21,2.6164311748289037e-06,2.117582368135751e-21,9.920635056914762e-05,7.115076756936123e-20,-6.691560283308973e-20,-4.960317528457381e-05,-2.124151183863445e-20,-9.145334525075573e-23,5.082197683525802e-21,3.8116482626443515e-21,2.117582368135751e-21,3.815629042946966e-06,6.0,15.0,15.0,0.025933610275387764,-0.0059523810632526875,-0.002745973411947489,-0.002745973411947489,0.00039682540227659047,0.0002380952355451882,0.0002380952355451882,8.169934881152585e-05,0.00010416666918899864,8.169934881152585e-05,-0.0059523810632526875,0.004563492257148027,0.0002380952355451882,0.0002380952355451882,-0.0005952381179668009,-9.523809421807528e-05,-9.523809421807528e-05,8.766791004082009e-20,4.997494388800372e-20,9.147955830346444e-20,-0.002745973411947489,0.0002380952355451882,0.0007567866705358028,0.00010416666918899864,3.1219789306039634e-19,-3.40136066370178e-05,-1.6940658945086007e-21,-3.77073920390103e-05,-1.4880952221574262e-05,8.216219588366713e-20,-0.002745973411947489,0.0002380952355451882,0.00010416666918899864,0.0007567866705358028,3.1219789306039634e-19,1.7313435481392558e-21,-3.40136066370178e-05,1.0666541820250455e-19,-1.4880952221574262e-05,-3.77073920390103e-05,0.00039682540227659047,-0.0005952381179668009,3.1219789306039634e-19,3.1219789306039634e-19,0.0001190476177725941,3.723498172853489e-36,1.3334593860100852e-36,-1.7343497518986465e-20,-9.912705470843172e-21,-1.7343497518986465e-20,0.0002380952355451882,-9.523809421807528e-05,-3.40136066370178e-05,1.7313435481392558e-21,3.723498172853489e-36,1.360544229100924e-05,1.5944952612621248e-24,-2.117582368135751e-22,-2.4580224230864617e-22,-2.826972037369605e-23,0.0002380952355451882,-9.523809421807528e-05,-1.6940658945086007e-21,-3.40136066370178e-05,1.3334593860100852e-36,1.5944952612621248e-24,1.360544229100924e-05,0.0,2.117582368135751e-22,-8.470329472543003e-22,8.169934881152585e-05,8.766791004082009e-20,-3.77073920390103e-05,1.0666541820250455e-19,-1.7343497518986465e-20,-2.117582368135751e-22,0.0,2.6933851131616393e-06,-2.752857078576476e-21,-6.3527471044072525e-21,0.00010416666918899864,4.997494388800372e-20,-1.4880952221574262e-05,-1.4880952221574262e-05,-9.912705470843172e-21,-2.4580224230864617e-22,2.117582368135751e-22,-2.752857078576476e-21,2.1258504148136126e-06,8.470329472543003e-22,8.169934881152585e-05,9.147955830346444e-20,8.216219588366713e-20,-3.77073920390103e-05,-1.7343497518986465e-20,-2.826972037369605e-23,-8.470329472543003e-22,-6.3527471044072525e-21,8.470329472543003e-22,2.6933851131616393e-06,6.0,15.0,16.0,0.0244606863707304,-0.005593487527221441,-0.0025800946168601513,-0.002434932393953204,0.00037202381645329297,0.00022321428696159273,0.0002100840356433764,7.659313996555284e-05,9.191176650347188e-05,6.808278703829274e-05,-0.005593487527221441,0.0042835259810090065,0.00022321428696159273,0.0002100840356433764,-0.0005580357392318547,-8.928571332944557e-05,-8.403361425735056e-05,-1.283254915090265e-19,-8.639736061993863e-20,-1.4230153513872246e-19,-0.0025800946168601513,0.00022321428696159273,0.0007103081443347037,9.191176650347188e-05,-6.900420286051315e-19,-3.188775372109376e-05,2.541098841762901e-21,-3.535068026394583e-05,-1.3130252227711026e-05,-2.879912020664621e-20,-0.002434932393953204,0.0002100840356433764,9.191176650347188e-05,0.0006261671078391373,-6.438205201441637e-19,-4.293707555552019e-22,-2.801120535877999e-05,-5.46302517519668e-20,-1.2254901776032057e-05,-2.9178338081692345e-05,0.00037202381645329297,-0.0005580357392318547,-6.900420286051315e-19,-6.438205201441637e-19,0.00011160714348079637,4.143106319560312e-20,3.6394344289896396e-20,3.2519058050048014e-20,1.7493010414705425e-20,2.869223942421641e-20,0.00022321428696159273,-8.928571332944557e-05,-3.188775372109376e-05,-4.293707555552019e-22,4.143106319560312e-20,1.2755102034134325e-05,-7.262140686355188e-24,-4.658681209898652e-21,8.403342370588639e-24,-1.489774863562554e-23,0.0002100840356433764,-8.403361425735056e-05,2.541098841762901e-21,-2.801120535877999e-05,3.6394344289896396e-20,-7.262140686355188e-24,1.1204481779714115e-05,0.0,-3.1763735522036263e-22,-4.235164736271502e-22,7.659313996555284e-05,-1.283254915090265e-19,-3.535068026394583e-05,-5.46302517519668e-20,3.2519058050048014e-20,-4.658681209898652e-21,0.0,2.5250485577998916e-06,2.117582368135751e-21,2.6205081805679917e-21,9.191176650347188e-05,-8.639736061993863e-20,-1.3130252227711026e-05,-1.2254901776032057e-05,1.7493010414705425e-20,8.403342370588639e-24,-3.1763735522036263e-22,2.117582368135751e-21,1.7507003349237493e-06,-1.0587911840678754e-21,6.808278703829274e-05,-1.4230153513872246e-19,-2.879912020664621e-20,-2.9178338081692345e-05,2.869223942421641e-20,-1.489774863562554e-23,-4.235164736271502e-22,2.6205081805679917e-21,-1.0587911840678754e-21,1.9452224933047546e-06,6.0,16.0,3.0,0.08980606496334076,-0.024619223549962044,-0.010795985348522663,-0.040572479367256165,0.0018601190531626344,0.0010504202218726277,0.004464285913854837,0.0003404139424674213,0.0018382353009656072,0.0052083334885537624,-0.024619223549962044,0.020078344270586967,0.0010504202218726277,0.004464285913854837,-0.0027901786379516125,-0.0004201680712867528,-0.0017857142956927419,1.8662123129433895e-18,5.2583805365546965e-18,1.0625181290357943e-17,-0.010795985348522663,0.0010504202218726277,0.002947012195363641,0.0018382353009656072,5.132086187039794e-18,-0.00014005602861288935,4.336808689942018e-18,-0.00014589169586542994,-0.00024509805371053517,1.3010426069826053e-18,-0.040572479367256165,0.004464285913854837,0.0018382353009656072,0.09265581518411636,1.372184110129106e-17,2.0825725690949034e-18,-0.004464285913854837,8.518783127886946e-19,-0.0018382353009656072,-0.03125,0.0018601190531626344,-0.0027901786379516125,5.132086187039794e-18,1.372184110129106e-17,0.0005580357392318547,-7.453889935837843e-20,-1.141051194058977e-18,-2.744386749103933e-19,-6.56909671060838e-19,-2.3096197919654492e-18,0.0010504202218726277,-0.0004201680712867528,-0.00014005602861288935,2.0825725690949034e-18,-7.453889935837843e-20,5.602241071755998e-05,-2.3198057974260038e-19,-3.4728350837426314e-20,-1.377713900411963e-19,-1.6661707793138984e-19,0.004464285913854837,-0.0017857142956927419,4.336808689942018e-18,-0.004464285913854837,-1.141051194058977e-18,-2.3198057974260038e-19,0.0017857142956927419,-1.770493117958467e-19,-8.809142651444724e-19,2.168404344971009e-19,0.0003404139424674213,1.8662123129433895e-18,-0.00014589169586542994,8.518783127886946e-19,-2.744386749103933e-19,-3.4728350837426314e-20,-1.770493117958467e-19,9.726112693897448e-06,-5.954717729507609e-21,-1.7877614179743064e-19,0.0018382353009656072,5.2583805365546965e-18,-0.00024509805371053517,-0.0018382353009656072,-6.56909671060838e-19,-1.377713900411963e-19,-8.809142651444724e-19,-5.954717729507609e-21,0.00024509805371053517,1.8431436932253575e-18,0.0052083334885537624,1.0625181290357943e-17,1.3010426069826053e-18,-0.03125,-2.3096197919654492e-18,-1.6661707793138984e-19,2.168404344971009e-19,-1.7877614179743064e-19,1.8431436932253575e-18,0.015625,6.0,16.0,4.0,0.07317999750375748,-0.01913405954837799,-0.008372724056243896,-0.02590598724782467,0.0013950893189758062,0.0007878151373006403,0.0026785715017467737,0.0002553104714024812,0.001102941227145493,0.0026041667442768812,-0.01913405954837799,0.015326615422964096,0.0007878151373006403,0.0026785715017467737,-0.0020926338620483875,-0.00031512606074102223,-0.0010714285308495164,-2.212955000293408e-19,-8.809142651444724e-20,1.0299920638612292e-17,-0.008372724056243896,0.0007878151373006403,0.0022470238618552685,0.001102941227145493,-1.4635309679828016e-18,-0.0001050420178216882,5.692061405548898e-19,-0.00010941876826109365,-0.00014705881767440587,3.74049749507499e-18,-0.02590598724782467,0.0026785715017467737,0.001102941227145493,0.035499826073646545,1.7653024820665143e-18,1.971244605198076e-18,-0.0017857142956927419,5.570228041077494e-19,-0.000735294132027775,-0.0078125,0.0013950893189758062,-0.0020926338620483875,-1.4635309679828016e-18,1.7653024820665143e-18,0.0004185267898719758,1.9989977555201488e-19,-7.945312767876768e-20,4.573977915173222e-20,1.0568858252256478e-19,-7.461471563139774e-19,0.0007878151373006403,-0.00031512606074102223,-0.0001050420178216882,1.971244605198076e-18,1.9989977555201488e-19,4.201680712867528e-05,-7.007982070769794e-20,2.541098841762901e-21,-3.27806345317223e-20,-4.637248960227403e-19,0.0026785715017467737,-0.0010714285308495164,5.692061405548898e-19,-0.0017857142956927419,-7.945312767876768e-20,-7.007982070769794e-20,0.0007142857066355646,-1.084620625709054e-20,-8.131516293641283e-20,-1.5178830414797062e-18,0.0002553104714024812,-2.212955000293408e-19,-0.00010941876826109365,5.570228041077494e-19,4.573977915173222e-20,2.541098841762901e-21,-1.084620625709054e-20,7.294584520423086e-06,-1.7411946714675228e-20,-1.1803153897853378e-19,0.001102941227145493,-8.809142651444724e-20,-0.00014705881767440587,-0.000735294132027775,1.0568858252256478e-19,-3.27806345317223e-20,-8.131516293641283e-20,-1.7411946714675228e-20,9.803921420825645e-05,-2.168404344971009e-19,0.0026041667442768812,1.0299920638612292e-17,3.74049749507499e-18,-0.0078125,-7.461471563139774e-19,-4.637248960227403e-19,-1.5178830414797062e-18,-1.1803153897853378e-19,-2.168404344971009e-19,0.0026041667442768812,6.0,16.0,5.0,0.06184932217001915,-0.015664391219615936,-0.0068452381528913975,-0.018014706671237946,0.0011160714784637094,0.0006302521214820445,0.0017857142956927419,0.00020424836839083582,0.000735294132027775,0.0014880952658131719,-0.015664391219615936,0.012404149398207664,0.0006302521214820445,0.0017857142956927419,-0.0016741071594879031,-0.0002521008427720517,-0.0007142857066355646,-4.273281218897945e-19,-4.336808689942018e-19,6.451002926288751e-18,-0.0068452381528913975,0.0006302521214820445,0.0018172268755733967,0.000735294132027775,-9.47829867977562e-19,-8.403361425735056e-05,-2.879912020664621e-19,-8.753501606406644e-05,-9.803921420825645e-05,1.111307226797642e-18,-0.018014706671237946,0.0017857142956927419,0.000735294132027775,0.017935924232006073,3.848917712323541e-18,-4.336808689942018e-19,-0.0008928571478463709,-6.776263578034403e-21,-0.0003676470660138875,-0.0029761905316263437,0.0011160714784637094,-0.0016741071594879031,-9.47829867977562e-19,3.848917712323541e-18,0.0003348214377183467,-2.252751758162585e-20,-3.685581542894266e-19,4.9763185651190145e-20,5.047521367518784e-20,-8.174489877427062e-19,0.0006302521214820445,-0.0002521008427720517,-8.403361425735056e-05,-4.336808689942018e-19,-2.252751758162585e-20,3.361344715813175e-05,6.098637220230962e-20,1.4470443988822645e-20,3.4728350837426314e-20,-1.0164395367051604e-20,0.0017857142956927419,-0.0007142857066355646,-2.879912020664621e-19,-0.0008928571478463709,-3.685581542894266e-19,6.098637220230962e-20,0.0003571428533177823,1.580958800823491e-20,-6.098637220230962e-20,-9.554531645028508e-19,0.00020424836839083582,-4.273281218897945e-19,-8.753501606406644e-05,-6.776263578034403e-21,4.9763185651190145e-20,1.4470443988822645e-20,1.580958800823491e-20,5.835667707287939e-06,1.3370999987653021e-21,-1.0658525923126933e-20,0.000735294132027775,-4.336808689942018e-19,-9.803921420825645e-05,-0.0003676470660138875,5.047521367518784e-20,3.4728350837426314e-20,-6.098637220230962e-20,1.3370999987653021e-21,4.901960710412823e-05,-4.0657581468206416e-19,0.0014880952658131719,6.451002926288751e-18,1.111307226797642e-18,-0.0029761905316263437,-8.174489877427062e-19,-1.0164395367051604e-20,-9.554531645028508e-19,-1.0658525923126933e-20,-4.0657581468206416e-19,0.0007440476329065859,6.0,16.0,6.0,0.05359713360667229,-0.01326624397188425,-0.005791900213807821,-0.01326624397188425,0.0009300595265813172,0.0005252101109363139,0.0012755101779475808,0.00017020697123371065,0.0005252101109363139,0.0009300595265813172,-0.01326624397188425,0.010421824641525745,0.0005252101109363139,0.0012755101779475808,-0.0013950893189758062,-0.0002100840356433764,-0.0005102040595375001,9.41900637346782e-19,5.963111948670274e-19,-8.131516293641283e-20,-0.005791900213807821,0.0005252101109363139,0.0015260271029546857,0.0005252101109363139,2.6461309272224343e-18,-7.002801430644467e-05,-1.7448878713438587e-19,-7.294584793271497e-05,-7.002801430644467e-05,-9.0801931945661e-19,-0.01326624397188425,0.0012755101779475808,0.0005252101109363139,0.010421824641525745,3.550762114890027e-18,-8.131516293641283e-20,-0.0005102040595375001,-2.710505431213761e-20,-0.0002100840356433764,-0.0013950893189758062,0.0009300595265813172,-0.0013950893189758062,2.6461309272224343e-18,3.550762114890027e-18,0.00027901786961592734,-3.4910282104573963e-20,-2.72530194753823e-20,-1.3637230450794235e-19,-1.6269125289481902e-19,-3.932992298084642e-19,0.0005252101109363139,-0.0002100840356433764,-7.002801430644467e-05,-8.131516293641283e-20,-3.4910282104573963e-20,2.801120535877999e-05,5.082197683525802e-20,-1.955249303833213e-20,-2.541098841762901e-20,3.049318610115481e-20,0.0012755101779475808,-0.0005102040595375001,-1.7448878713438587e-19,-0.0005102040595375001,-2.72530194753823e-20,5.082197683525802e-20,0.0002040816325461492,-2.758844444494682e-20,1.4738373282224826e-19,7.284483346386983e-19,0.00017020697123371065,9.41900637346782e-19,-7.294584793271497e-05,-2.710505431213761e-20,-1.3637230450794235e-19,-1.955249303833213e-20,-2.758844444494682e-20,4.863056346948724e-06,1.5873460649470138e-21,1.6005542571704746e-20,0.0005252101109363139,5.963111948670274e-19,-7.002801430644467e-05,-0.0002100840356433764,-1.6269125289481902e-19,-2.541098841762901e-20,1.4738373282224826e-19,1.5873460649470138e-21,2.801120535877999e-05,2.0498197323554068e-19,0.0009300595265813172,-8.131516293641283e-20,-9.0801931945661e-19,-0.0013950893189758062,-3.932992298084642e-19,3.049318610115481e-20,7.284483346386983e-19,1.6005542571704746e-20,2.0498197323554068e-19,0.00027901786961592734,6.0,16.0,7.0,0.047306422144174576,-0.011507728137075901,-0.0050207581371068954,-0.010182198137044907,0.0007971939048729837,0.00045018005766905844,0.0009566326625645161,0.00014589169586542994,0.00039390756865032017,0.0006200397037900984,-0.011507728137075901,0.008987657725811005,0.00045018005766905844,0.0009566326625645161,-0.001195790828205645,-0.00018007203470915556,-0.00038265305920504034,-5.590417451878382e-20,4.336808689942018e-19,3.903127820947816e-18,-0.0050207581371068954,0.00045018005766905844,0.0013155261985957623,0.00039390756865032017,-3.2017845406212553e-19,-6.0024009144399315e-05,3.6083603553033194e-19,-6.252501043491066e-05,-5.25210089108441e-05,7.995991022080595e-19,-0.010182198137044907,0.0009566326625645161,0.00039390756865032017,0.006618272513151169,2.791820594150174e-18,9.75781955236954e-19,-0.0003188775444868952,1.7618285302889447e-19,-0.00013130252773407847,-0.0007440476329065859,0.0007971939048729837,-0.001195790828205645,-3.2017845406212553e-19,2.791820594150174e-18,0.00023915816564112902,8.806087253057106e-20,-2.9812642639222415e-20,1.0376153603865179e-20,-2.993434481801855e-20,-3.7264137628692976e-19,0.00045018005766905844,-0.00018007203470915556,-6.0024009144399315e-05,9.75781955236954e-19,8.806087253057106e-20,2.4009603293961845e-05,-3.218725199566341e-20,3.400169124855052e-21,-1.3129010682441655e-20,-1.2451384324638215e-19,0.0009566326625645161,-0.00038265305920504034,3.6083603553033194e-19,-0.0003188775444868952,-2.9812642639222415e-20,-3.218725199566341e-20,0.00012755101488437504,-6.817365730307765e-21,-4.912791094074942e-20,-2.913793338554793e-19,0.00014589169586542994,-5.590417451878382e-20,-6.252501043491066e-05,1.7618285302889447e-19,1.0376153603865179e-20,3.400169124855052e-21,-6.817365730307765e-21,4.168333816778613e-06,-6.47206709997446e-21,-1.7882772426344156e-20,0.00039390756865032017,4.336808689942018e-19,-5.25210089108441e-05,-0.00013130252773407847,-2.993434481801855e-20,-1.3129010682441655e-20,-4.912791094074942e-20,-6.47206709997446e-21,1.750700357661117e-05,-5.844527336054672e-20,0.0006200397037900984,3.903127820947816e-18,7.995991022080595e-19,-0.0007440476329065859,-3.7264137628692976e-19,-1.2451384324638215e-19,-2.913793338554793e-19,-1.7882772426344156e-20,-5.844527336054672e-20,0.00012400794366840273,6.0,16.0,8.0,0.04234688729047775,-0.010162267833948135,-0.004431460052728653,-0.00806416291743517,0.0006975446594879031,0.00039390756865032017,0.0007440476329065859,0.0001276552357012406,0.00030637255986221135,0.0004340277810115367,-0.010162267833948135,0.007901403121650219,0.00039390756865032017,0.0007440476329065859,-0.0010463169310241938,-0.00015756303037051111,-0.00029761905898340046,-1.0630263488041469e-19,-4.0657581468206416e-19,-1.4230153513872246e-18,-0.004431460052728653,0.00039390756865032017,0.001156191690824926,0.00030637255986221135,-8.80067232197218e-19,-5.25210089108441e-05,3.218725199566341e-20,-5.470938413054682e-05,-4.0849674405762926e-05,2.236166980751353e-19,-0.00806416291743517,0.0007440476329065859,0.00030637255986221135,0.004474185407161713,-2.846030702774449e-18,-1.3552527156068805e-19,-0.00021258502965793014,8.639736061993863e-20,-8.753501606406644e-05,-0.0004340277810115367,0.0006975446594879031,-0.0010463169310241938,-8.80067232197218e-19,-2.846030702774449e-18,0.0002092633949359879,9.748228522413958e-20,1.319264025859259e-19,2.4352197233561135e-20,7.994716129961498e-20,2.5751626563757175e-19,0.00039390756865032017,-0.00015756303037051111,-5.25210089108441e-05,-1.3552527156068805e-19,9.748228522413958e-20,2.100840356433764e-05,1.7787691892340307e-20,-2.155371960939458e-22,6.776263578034403e-21,7.623296525288703e-21,0.0007440476329065859,-0.00029761905898340046,3.218725199566341e-20,-0.00021258502965793014,1.319264025859259e-19,1.7787691892340307e-20,8.50340147735551e-05,-2.8038229961474283e-21,-1.1011428314305904e-20,1.9481757786848908e-20,0.0001276552357012406,-1.0630263488041469e-19,-5.470938413054682e-05,8.639736061993863e-20,2.4352197233561135e-20,-2.155371960939458e-22,-2.8038229961474283e-21,3.647292260211543e-06,-3.421981166749736e-21,-6.689618832250174e-21,0.00030637255986221135,-4.0657581468206416e-19,-4.0849674405762926e-05,-8.753501606406644e-05,7.994716129961498e-20,6.776263578034403e-21,-1.1011428314305904e-20,-3.421981166749736e-21,1.1671335414575879e-05,-2.752857078576476e-20,0.0004340277810115367,-1.4230153513872246e-18,2.236166980751353e-19,-0.0004340277810115367,2.5751626563757175e-19,7.623296525288703e-21,1.9481757786848908e-20,-6.689618832250174e-21,-2.752857078576476e-20,6.200397183420137e-05,6.0,16.0,9.0,0.038333941251039505,-0.0090992646291852,-0.003966308664530516,-0.00654602749273181,0.0006200397037900984,0.00035014006425626576,0.0005952381179668009,0.0001134713165811263,0.00024509805371053517,0.00031565656536258757,-0.0090992646291852,0.007049924228340387,0.00035014006425626576,0.0005952381179668009,-0.0009300595265813172,-0.00014005602861288935,-0.0002380952355451882,5.501478992416681e-19,3.6591823321385775e-19,3.7947076036992655e-19,-0.003966308664530516,0.00035014006425626576,0.0010313569800928235,0.00024509805371053517,1.094366567852556e-18,-4.6685341658303514e-05,4.751854834096625e-19,-4.863056165049784e-05,-3.267973806941882e-05,1.2197274440461925e-19,-0.00654602749273181,0.0005952381179668009,0.00024509805371053517,0.003169695846736431,-2.981555974335137e-19,3.1170812458958252e-19,-0.00014880952949170023,5.082197683525802e-20,-6.127451342763379e-05,-0.00027056277031078935,0.0006200397037900984,-0.0009300595265813172,1.094366567852556e-18,-2.981555974335137e-19,0.00018601190822664648,9.348776703822279e-21,8.801307053845344e-20,-6.45862622281404e-20,-1.9658753435302515e-20,3.016928996137775e-20,0.00035014006425626576,-0.00014005602861288935,-4.6685341658303514e-05,3.1170812458958252e-19,9.348776703822279e-21,1.8674136299523525e-05,-2.202285662861181e-20,-1.4762303035734617e-20,-1.7364175418713157e-20,-1.3552527156068805e-20,0.0005952381179668009,-0.0002380952355451882,4.751854834096625e-19,-0.00014880952949170023,8.801307053845344e-20,-2.202285662861181e-20,5.952380888629705e-05,-1.903758603171494e-20,-2.879912020664621e-20,-1.0587911840678754e-19,0.0001134713165811263,5.501478992416681e-19,-4.863056165049784e-05,5.082197683525802e-20,-6.45862622281404e-20,-1.4762303035734617e-20,-1.903758603171494e-20,3.242037564632483e-06,-1.4627570338910074e-21,1.0645863960913442e-21,0.00024509805371053517,3.6591823321385775e-19,-3.267973806941882e-05,-6.127451342763379e-05,-1.9658753435302515e-20,-1.7364175418713157e-20,-2.879912020664621e-20,-1.4627570338910074e-21,8.169934517354704e-06,-2.414043899674756e-20,0.00031565656536258757,3.7947076036992655e-19,1.2197274440461925e-19,-0.00027056277031078935,3.016928996137775e-20,-1.3552527156068805e-20,-1.0587911840678754e-19,1.0645863960913442e-21,-2.414043899674756e-20,3.382034628884867e-05,6.0,16.0,10.0,0.0350189134478569,-0.008238039910793304,-0.0035897314082831144,-0.005420406814664602,0.0005580357392318547,0.00031512606074102223,0.0004870129923801869,0.00010212418419541791,0.00020053476328030229,0.0002367424312978983,-0.008238039910793304,0.006364412140101194,0.00031512606074102223,0.0004870129923801869,-0.0008370535797439516,-0.00012605042138602585,-0.00019480519404169172,1.1265538198482195e-19,9.486769009248164e-20,2.6753039847647427e-19,-0.0035897314082831144,0.00031512606074102223,0.00093089509755373,0.00020053476328030229,5.110215324848739e-19,-4.201680712867528e-05,-1.609597871301857e-34,-4.376750803203322e-05,-2.6737967345979996e-05,-1.6332742101550891e-34,-0.005420406814664602,0.0004870129923801869,0.00020053476328030229,0.002329061273485422,7.565054738358844e-19,1.5031726626066613e-21,-0.00010822511103469878,0.0,-4.456327951629646e-05,-0.00017755682347342372,0.0005580357392318547,-0.0008370535797439516,5.110215324848739e-19,7.565054738358844e-19,0.00016741071885917336,-4.0943640557307714e-20,-5.2730444067131244e-20,-2.1519179568162308e-20,-1.9083282913797093e-20,-5.350608098776456e-20,0.00031512606074102223,-0.00012605042138602585,-4.201680712867528e-05,1.5031726626066613e-21,-4.0943640557307714e-20,1.6806723579065874e-05,1.2896285098981782e-35,-8.470329472543003e-22,-2.117582368135751e-22,1.3085982795733133e-35,0.0004870129923801869,-0.00019480519404169172,-1.609597871301857e-34,-0.00010822511103469878,-5.2730444067131244e-20,1.2896285098981782e-35,4.329004150349647e-05,6.77803574070518e-36,6.01078604354585e-36,1.6853159508981953e-35,0.00010212418419541791,1.1265538198482195e-19,-4.376750803203322e-05,0.0,-2.1519179568162308e-20,-8.470329472543003e-22,6.77803574070518e-36,2.9178338536439696e-06,2.117582368135751e-22,6.877737521080954e-36,0.00020053476328030229,9.486769009248164e-20,-2.6737967345979996e-05,-4.456327951629646e-05,-1.9083282913797093e-20,-2.117582368135751e-22,6.01078604354585e-36,2.117582368135751e-22,5.941770723438822e-06,6.09920138493677e-36,0.0002367424312978983,2.6753039847647427e-19,-1.6332742101550891e-34,-0.00017755682347342372,-5.350608098776456e-20,1.3085982795733133e-35,1.6853159508981953e-35,6.877737521080954e-36,6.09920138493677e-36,1.9728535335161723e-05,6.0,16.0,11.0,0.032233595848083496,-0.007526021916419268,-0.0032785842195153236,-0.0045625329948961735,0.0005073052016086876,0.00028647822909988463,0.000405844155466184,9.284016414312646e-05,0.00016711230273358524,0.0001821095502236858,-0.007526021916419268,0.005800587125122547,0.00028647822909988463,0.000405844155466184,-0.000760957773309201,-0.00011459129018476233,-0.00016233765927609056,7.496241583200558e-20,8.046812998915853e-20,2.021822253559901e-19,-0.0032785842195153236,0.00028647822909988463,0.0008482938865199685,0.00016711230273358524,4.575513369185273e-19,-3.819709672825411e-05,-2.1617687790619864e-34,-3.97886433347594e-05,-2.228163975814823e-05,-1.215688222014496e-34,-0.0045625329948961735,0.000405844155466184,0.00016711230273358524,0.0017623512540012598,7.033978418717775e-19,-5.440604531531239e-23,-8.116882963804528e-05,1.6940658945086007e-21,-3.342246054671705e-05,-0.00012140637409174815,0.0005073052016086876,-0.000760957773309201,4.575513369185273e-19,7.033978418717775e-19,0.0001521915546618402,-3.383771965577679e-20,-7.190514982566105e-20,-1.9562889341538728e-20,-1.5902736300026622e-20,-4.043644313249346e-20,0.00028647822909988463,-0.00011459129018476233,-3.819709672825411e-05,-5.440604531531239e-23,-3.383771965577679e-20,1.5278837963705882e-05,1.598713069119731e-35,2.752857078576476e-21,2.117582368135751e-22,8.990492031325053e-36,0.000405844155466184,-0.00016233765927609056,-2.1617687790619864e-34,-8.116882963804528e-05,-7.190514982566105e-20,1.598713069119731e-35,3.246753112762235e-05,9.242776336172888e-36,7.513483092530923e-36,1.9104796553079856e-35,9.284016414312646e-05,7.496241583200558e-20,-3.97886433347594e-05,1.6940658945086007e-21,-1.9562889341538728e-20,2.752857078576476e-21,9.242776336172888e-36,2.652576085893088e-06,-2.117582368135751e-22,5.197750253100845e-36,0.00016711230273358524,8.046812998915853e-20,-2.228163975814823e-05,-3.342246054671705e-05,-1.5902736300026622e-20,2.117582368135751e-22,7.513483092530923e-36,-2.117582368135751e-22,4.456328042579116e-06,4.2252679523107825e-36,0.0001821095502236858,2.021822253559901e-19,-1.215688222014496e-34,-0.00012140637409174815,-4.043644313249346e-20,8.990492031325053e-36,1.9104796553079856e-35,5.197750253100845e-36,4.2252679523107825e-36,1.2140637409174815e-05,6.0,16.0,12.0,0.029860006645321846,-0.006927470676600933,-0.003017152426764369,-0.003893624758347869,0.0004650297632906586,0.00026260505546815693,0.00034340660204179585,8.510348561685532e-05,0.00014140272105578333,0.0001430860866094008,-0.006927470676600933,0.005328651983290911,0.00026260505546815693,0.00034340660204179585,-0.0006975446594879031,-0.0001050420178216882,-0.00013736264372710139,9.465593185566806e-20,6.352747104407253e-20,1.5658806876615843e-19,-0.003017152426764369,0.00026260505546815693,0.0007791738607920706,0.00014140272105578333,3.0475001052375717e-19,-3.501400715322234e-05,-1.435323960460727e-20,-3.6472923966357484e-05,-1.885369601950515e-05,-6.841170491919358e-35,-0.003893624758347869,0.00034340660204179585,0.00014140272105578333,0.001366127748042345,4.2919912688720704e-19,-1.6708016013392602e-20,-6.243756070034578e-05,8.470329472543003e-22,-2.5709585315780714e-05,-8.585165051044896e-05,0.0004650297632906586,-0.0006975446594879031,3.0475001052375717e-19,4.2919912688720704e-19,0.00013950893480796367,1.5299442136901302e-20,6.4863359655409996e-21,-1.793264883234169e-20,-1.3456161422499945e-20,-3.1317613753231687e-20,0.00026260505546815693,-0.0001050420178216882,-3.501400715322234e-05,-1.6708016013392602e-20,1.5299442136901302e-20,1.4005602679389995e-05,5.7412954379461246e-21,-6.352747104407253e-22,3.1763735522036263e-22,-3.4344900727822566e-36,0.00034340660204179585,-0.00013736264372710139,-1.435323960460727e-20,-6.243756070034578e-05,6.4863359655409996e-21,5.7412954379461246e-21,2.4975024643936194e-05,-1.128474576789396e-36,-5.64237288394698e-37,-1.4560828219381447e-36,8.510348561685532e-05,9.465593185566806e-20,-3.6472923966357484e-05,8.470329472543003e-22,-1.793264883234169e-20,-6.352747104407253e-22,-1.128474576789396e-36,2.431528173474362e-06,-1.0587911840678754e-22,4.0256046692966624e-36,0.00014140272105578333,6.352747104407253e-20,-1.885369601950515e-05,-2.5709585315780714e-05,-1.3456161422499945e-20,3.1763735522036263e-22,-5.64237288394698e-37,-1.0587911840678754e-22,3.4279446481377818e-06,3.020701927235981e-36,0.0001430860866094008,1.5658806876615843e-19,-6.841170491919358e-35,-8.585165051044896e-05,-3.1317613753231687e-20,-3.4344900727822566e-36,-1.4560828219381447e-36,4.0256046692966624e-36,3.020701927235981e-36,7.804695087543223e-06,6.0,16.0,13.0,0.027812888845801353,-0.006417230237275362,-0.002794387051835656,-0.0033619217574596405,0.0004292582452762872,0.00024240465427283198,0.000294348516035825,7.855706644477323e-05,0.00012120232713641599,0.00011446886492194608,-0.006417230237275362,0.004927812609821558,0.00024240465427283198,0.000294348516035825,-0.000643887382466346,-9.696186316432431e-05,-0.00011773940059356391,9.147955830346444e-20,6.268043809681823e-20,1.0842021724855044e-19,-0.002794387051835656,0.00024240465427283198,0.0007204805151559412,0.00012120232713641599,3.1750133570838594e-19,-3.2320622267434373e-05,4.235164736271502e-21,-3.3667314710328355e-05,-1.6160311133717187e-05,5.929230630780102e-21,-0.0033619217574596405,0.000294348516035825,0.00012120232713641599,0.0010806332575157285,4.755208017504762e-19,4.6728741605848316e-36,-4.9058086005970836e-05,-6.822443217747002e-22,-2.0200388462399133e-05,-6.243756070034578e-05,0.0004292582452762872,-0.000643887382466346,3.1750133570838594e-19,4.755208017504762e-19,0.00012877747940365225,1.504632769052528e-36,-3.6773131618134595e-20,-1.6553213685397277e-20,-1.1533852647857095e-20,-2.4757006823764942e-20,0.00024240465427283198,-9.696186316432431e-05,-3.2320622267434373e-05,4.6728741605848316e-36,1.504632769052528e-36,1.2928247997479048e-05,5.293955920339377e-23,-8.470329472543003e-22,-8.735051150346092e-38,-4.740994481379937e-24,0.000294348516035825,-0.00011773940059356391,4.235164736271502e-21,-4.9058086005970836e-05,-3.6773131618134595e-20,5.293955920339377e-23,1.9623234038590454e-05,5.293955920339377e-23,-6.352747104407253e-22,2.964615315390051e-21,7.855706644477323e-05,9.147955830346444e-20,-3.3667314710328355e-05,-6.822443217747002e-22,-1.6553213685397277e-20,-8.470329472543003e-22,5.293955920339377e-23,2.2444876321969787e-06,1.0587911840678754e-22,-5.293955920339377e-23,0.00012120232713641599,6.268043809681823e-20,-1.6160311133717187e-05,-2.0200388462399133e-05,-1.1533852647857095e-20,-8.735051150346092e-38,-6.352747104407253e-22,1.0587911840678754e-22,2.6933851131616393e-06,-8.470329472543003e-22,0.00011446886492194608,1.0842021724855044e-19,5.929230630780102e-21,-6.243756070034578e-05,-2.4757006823764942e-20,-4.740994481379937e-24,2.964615315390051e-21,-5.293955920339377e-23,-8.470329472543003e-22,5.203130058362149e-06,6.0,16.0,14.0,0.026029057800769806,-0.005977078340947628,-0.002602290827780962,-0.002932266565039754,0.00039859695243649185,0.00022509002883452922,0.00025510202976875007,7.294584793271497e-05,0.0001050420178216882,9.300595411332324e-05,-0.005977078340947628,0.004583114292472601,0.00022509002883452922,0.00025510202976875007,-0.0005978954141028225,-9.003601735457778e-05,-0.0001020408162730746,5.844527336054672e-20,4.828087799349512e-20,1.0842021724855044e-19,-0.002602290827780962,0.00022509002883452922,0.0006700180238112807,0.0001050420178216882,3.062721779472196e-19,-3.0012004572199658e-05,-1.1858461261560205e-20,-3.126250521745533e-05,-1.4005602679389995e-05,-2.541098841762901e-21,-0.002932266565039754,0.00025510202976875007,0.0001050420178216882,0.0008696447475813329,2.959363752476105e-19,-1.1543558287563955e-20,-3.924646807718091e-05,-7.836507881755019e-22,-1.6160311133717187e-05,-4.650297705666162e-05,0.00039859695243649185,-0.0005978954141028225,3.062721779472196e-19,2.959363752476105e-19,0.00011957908282056451,-4.294202329111773e-21,1.5165839543276917e-20,-1.5370841394696553e-20,-9.996005951260243e-21,-1.9913917651642384e-20,0.00022509002883452922,-9.003601735457778e-05,-3.0012004572199658e-05,-1.1543558287563955e-20,-4.294202329111773e-21,1.2004801646980923e-05,4.306131420611653e-21,2.117582368135751e-21,2.7517564771964517e-24,6.031881023543354e-23,0.00025510202976875007,-0.0001020408162730746,-1.1858461261560205e-20,-3.924646807718091e-05,1.5165839543276917e-20,4.306131420611653e-21,1.5698587958468124e-05,5.293955920339377e-23,1.0587911840678754e-22,-1.2705494208814505e-21,7.294584793271497e-05,5.844527336054672e-20,-3.126250521745533e-05,-7.836507881755019e-22,-1.5370841394696553e-20,2.117582368135751e-21,5.293955920339377e-23,2.0841669083893066e-06,-1.0587911840678754e-22,1.0587911840678754e-22,0.0001050420178216882,4.828087799349512e-20,-1.4005602679389995e-05,-1.6160311133717187e-05,-9.996005951260243e-21,2.7517564771964517e-24,1.0587911840678754e-22,-1.0587911840678754e-22,2.1547079995798413e-06,1.0587911840678754e-22,9.300595411332324e-05,1.0842021724855044e-19,-2.541098841762901e-21,-4.650297705666162e-05,-1.9913917651642384e-20,6.031881023543354e-23,-1.2705494208814505e-21,1.0587911840678754e-22,1.0587911840678754e-22,3.577152028810815e-06,6.0,16.0,15.0,0.0244606863707304,-0.005593487527221441,-0.002434932393953204,-0.0025800946168601513,0.00037202381645329297,0.0002100840356433764,0.00022321428696159273,6.808278703829274e-05,9.191176650347188e-05,7.659313996555284e-05,-0.005593487527221441,0.0042835259810090065,0.0002100840356433764,0.00022321428696159273,-0.0005580357392318547,-8.403361425735056e-05,-8.928571332944557e-05,-1.384898868760781e-19,-8.046812998915853e-20,-1.3213713977167085e-19,-0.002434932393953204,0.0002100840356433764,0.0006261671078391373,9.191176650347188e-05,-6.438205201441637e-19,-2.801120535877999e-05,8.470329472543003e-21,-2.9178338081692345e-05,-1.2254901776032057e-05,1.0164395367051604e-20,-0.0025800946168601513,0.00022321428696159273,9.191176650347188e-05,0.0007103081443347037,-6.900420286051315e-19,-2.969169837623311e-36,-3.188775372109376e-05,4.293087069118408e-22,-1.3130252227711026e-05,-3.535068026394583e-05,0.00037202381645329297,-0.0005580357392318547,-6.438205201441637e-19,-6.900420286051315e-19,0.00011160714348079637,3.6394344289896396e-20,4.143106319560312e-20,2.869223942421641e-20,1.7493010414705425e-20,3.2519058050048014e-20,0.0002100840356433764,-8.403361425735056e-05,-2.801120535877999e-05,-2.969169837623311e-36,3.6394344289896396e-20,1.1204481779714115e-05,-2.6469779601696886e-23,-4.235164736271502e-22,1.0587911840678754e-22,-3.0940983259060784e-23,0.00022321428696159273,-8.928571332944557e-05,8.470329472543003e-21,-3.188775372109376e-05,4.143106319560312e-20,-2.6469779601696886e-23,1.2755102034134325e-05,-2.6469779601696886e-23,-1.0587911840678754e-21,-4.870439446712227e-21,6.808278703829274e-05,-1.384898868760781e-19,-2.9178338081692345e-05,4.293087069118408e-22,2.869223942421641e-20,-4.235164736271502e-22,-2.6469779601696886e-23,1.9452224933047546e-06,0.0,-2.6469779601696886e-23,9.191176650347188e-05,-8.046812998915853e-20,-1.2254901776032057e-05,-1.3130252227711026e-05,1.7493010414705425e-20,1.0587911840678754e-22,-1.0587911840678754e-21,0.0,1.7507003349237493e-06,-1.376428539288238e-21,7.659313996555284e-05,-1.3213713977167085e-19,1.0164395367051604e-20,-3.535068026394583e-05,3.2519058050048014e-20,-3.0940983259060784e-23,-4.870439446712227e-21,-2.6469779601696886e-23,-1.376428539288238e-21,2.5250485577998916e-06,6.0,16.0,16.0,0.023070894181728363,-0.005256203934550285,-0.0022878176532685757,-0.0022878176532685757,0.00034877232974395156,0.00019695378432516009,0.00019695378432516009,6.38276178506203e-05,8.109861664706841e-05,6.38276178506203e-05,-0.005256203934550285,0.0040207295678555965,0.00019695378432516009,0.00019695378432516009,-0.0005231584655120969,-7.878151518525556e-05,-7.878151518525556e-05,8.258571235729428e-20,4.489274620447792e-20,7.962109704190423e-20,-0.0022878176532685757,0.00019695378432516009,0.0005877075018361211,8.109861664706841e-05,3.3959163340631496e-19,-2.626050445542205e-05,5.929230630780102e-21,-2.735469206527341e-05,-1.0813148946908768e-05,5.929230630780102e-21,-0.0022878176532685757,0.00019695378432516009,8.109861664706841e-05,0.0005877075018361211,3.3959163340631496e-19,-5.0975500022140085e-22,-2.626050445542205e-05,-2.1782925985305806e-22,-1.0813148946908768e-05,-2.735469206527341e-05,0.00034877232974395156,-0.0005231584655120969,3.3959163340631496e-19,3.3959163340631496e-19,0.00010463169746799394,-3.198721645909336e-20,-3.198721645909336e-20,-1.3449486624256267e-20,-7.71750464224025e-21,-1.3449486624256267e-20,0.00019695378432516009,-7.878151518525556e-05,-2.626050445542205e-05,-5.0975500022140085e-22,-3.198721645909336e-20,1.050420178216882e-05,2.2777356784907085e-23,-2.117582368135751e-21,9.378911663718265e-24,-7.322123303005478e-24,0.00019695378432516009,-7.878151518525556e-05,5.929230630780102e-21,-2.626050445542205e-05,-3.198721645909336e-20,2.2777356784907085e-23,1.050420178216882e-05,2.6469779601696886e-23,-7.940933880509066e-22,-1.6940658945086007e-21,6.38276178506203e-05,8.258571235729428e-20,-2.735469206527341e-05,-2.1782925985305806e-22,-1.3449486624256267e-20,-2.117582368135751e-21,2.6469779601696886e-23,1.8236461301057716e-06,-5.293955920339377e-23,0.0,8.109861664706841e-05,4.489274620447792e-20,-1.0813148946908768e-05,-1.0813148946908768e-05,-7.71750464224025e-21,9.378911663718265e-24,-7.940933880509066e-22,-5.293955920339377e-23,1.4417531701838016e-06,-7.411538288475128e-22,6.38276178506203e-05,7.962109704190423e-20,5.929230630780102e-21,-2.735469206527341e-05,-1.3449486624256267e-20,-7.322123303005478e-24,-1.6940658945086007e-21,0.0,-7.411538288475128e-22,1.8236461301057716e-06,7.0,3.0,3.0,0.29100528359413147,-0.0873015895485878,-0.1607142835855484,-0.1607142835855484,0.006613756529986858,0.01785714365541935,0.01785714365541935,0.02380952425301075,0.0357142873108387,0.02380952425301075,-0.0873015895485878,0.0634920671582222,0.01785714365541935,0.01785714365541935,-0.007936508394777775,-0.0059523810632526875,-0.0059523810632526875,-1.5860329632228476e-17,5.142215840821118e-18,-1.347886155264213e-18,-0.1607142835855484,0.01785714365541935,0.3988095223903656,0.0357142873108387,-7.448064102783632e-18,-0.01785714365541935,1.630592851948834e-17,-0.1428571492433548,-0.0357142873108387,1.2378793435622399e-17,-0.1607142835855484,0.01785714365541935,0.0357142873108387,0.3988095223903656,-5.738663934079523e-18,1.299886125768195e-17,-0.01785714365541935,3.3457741445950453e-18,-0.0357142873108387,-0.1428571492433548,0.006613756529986858,-0.007936508394777775,-7.448064102783632e-18,-5.738663934079523e-18,0.0013227512827143073,6.034041652220931e-19,9.099355091949832e-20,3.0744636599661744e-18,-5.110762298028789e-19,3.0967998112517907e-18,0.01785714365541935,-0.0059523810632526875,-0.01785714365541935,1.299886125768195e-17,6.034041652220931e-19,0.0059523810632526875,1.8944281674206093e-19,1.4274296007261138e-18,-1.6351244161780987e-18,-5.936294339620999e-18,0.01785714365541935,-0.0059523810632526875,1.630592851948834e-17,-0.01785714365541935,9.099355091949832e-20,1.8944281674206093e-19,0.0059523810632526875,-6.223290857000866e-18,-3.859346805486609e-18,-2.635835630523446e-18,0.02380952425301075,-1.5860329632228476e-17,-0.1428571492433548,3.3457741445950453e-18,3.0744636599661744e-18,1.4274296007261138e-18,-6.223290857000866e-18,0.0714285746216774,-1.5648857599906844e-17,1.6064247851196273e-17,0.0357142873108387,5.142215840821118e-18,-0.0357142873108387,-0.0357142873108387,-5.110762298028789e-19,-1.6351244161780987e-18,-3.859346805486609e-18,-1.5648857599906844e-17,0.0357142873108387,-2.1819280862417608e-17,0.02380952425301075,-1.347886155264213e-18,1.2378793435622399e-17,-0.1428571492433548,3.0967998112517907e-18,-5.936294339620999e-18,-2.635835630523446e-18,1.6064247851196273e-17,-2.1819280862417608e-17,0.0714285746216774,7.0,3.0,4.0,0.24117062985897064,-0.06815475970506668,-0.12589286267757416,-0.10357142984867096,0.004960317630320787,0.013392857275903225,0.010714286006987095,0.01785714365541935,0.02142857201397419,0.011904762126505375,-0.06815475970506668,0.04851190373301506,0.013392857275903225,0.010714286006987095,-0.0059523810632526875,-0.004464285913854837,-0.0035714285913854837,3.5128150388530344e-17,-4.7580988069504814e-18,-1.4972315469091307e-18,-0.12589286267757416,0.013392857275903225,0.30446428060531616,0.02142857201397419,3.5731584435652065e-18,-0.013392857275903225,-6.748906647225743e-18,-0.1071428582072258,-0.02142857201397419,4.625929407134921e-18,-0.10357142984867096,0.010714286006987095,0.02142857201397419,0.15238095819950104,1.0400334161121636e-18,-6.091434131456851e-18,-0.0071428571827709675,3.7586091108952064e-17,-0.014285714365541935,-0.0357142873108387,0.004960317630320787,-0.0059523810632526875,3.5731584435652065e-18,1.0400334161121636e-18,0.0009920635493472219,2.7298066568319203e-19,3.5726408869956897e-19,-2.4974299092746953e-18,3.295593284433304e-19,-8.860751483837673e-19,0.013392857275903225,-0.004464285913854837,-0.013392857275903225,-6.091434131456851e-18,2.7298066568319203e-19,0.004464285913854837,9.578454742319307e-19,-1.9306812396016393e-17,-1.4451882378994382e-18,1.0537831224467497e-18,0.010714286006987095,-0.0035714285913854837,-6.748906647225743e-18,-0.0071428571827709675,3.5726408869956897e-19,9.578454742319307e-19,0.0023809524718672037,3.658898247296954e-19,1.8967075669960757e-18,8.103668741331803e-19,0.01785714365541935,3.5128150388530344e-17,-0.1071428582072258,3.7586091108952064e-17,-2.4974299092746953e-18,-1.9306812396016393e-17,3.658898247296954e-19,0.0535714291036129,-2.466464816634079e-17,-5.1745089719351885e-18,0.02142857201397419,-4.7580988069504814e-18,-0.02142857201397419,-0.014285714365541935,3.295593284433304e-19,-1.4451882378994382e-18,1.8967075669960757e-18,-2.466464816634079e-17,0.014285714365541935,9.512114857192554e-19,0.011904762126505375,-1.4972315469091307e-18,4.625929407134921e-18,-0.0357142873108387,-8.860751483837673e-19,1.0537831224467497e-18,8.103668741331803e-19,-5.1745089719351885e-18,9.512114857192554e-19,0.011904762126505375,7.0,3.0,5.0,0.20606575906276703,-0.05595238134264946,-0.10357142984867096,-0.0724489763379097,0.003968254197388887,0.010714286006987095,0.0071428571827709675,0.014285714365541935,0.014285714365541935,0.006802720949053764,-0.05595238134264946,0.03928571566939354,0.010714286006987095,0.0071428571827709675,-0.004761904943734407,-0.0035714285913854837,-0.0023809524718672037,-1.1279134400774606e-16,-4.7243447921565813e-17,-3.979606293406509e-17,-0.10357142984867096,0.010714286006987095,0.24642856419086456,0.014285714365541935,-4.864247172646655e-17,-0.010714286006987095,-3.645802189422165e-17,-0.08571428805589676,-0.014285714365541935,-2.71891355670424e-17,-0.0724489763379097,0.0071428571827709675,0.014285714365541935,0.07704081386327744,-3.026708786124202e-17,-3.2201294213742113e-17,-0.0035714285913854837,-5.573772592720345e-17,-0.0071428571827709675,-0.013605441898107529,0.003968254197388887,-0.004761904943734407,-4.864247172646655e-17,-3.026708786124202e-17,0.0007936508045531809,2.388342570862121e-18,1.5939493298391638e-18,1.3745618407998896e-17,5.286776406212723e-18,4.5315224566436314e-18,0.010714286006987095,-0.0035714285913854837,-0.010714286006987095,-3.2201294213742113e-17,2.388342570862121e-18,0.0035714285913854837,2.4123498337802474e-18,9.69920139826097e-18,5.2931667900350015e-18,4.5315224566436314e-18,0.0071428571827709675,-0.0023809524718672037,-3.645802189422165e-17,-0.0035714285913854837,1.5939493298391638e-18,2.4123498337802474e-18,0.0011904762359336019,9.516197613900963e-18,4.321794534643568e-18,3.660076100790441e-18,0.014285714365541935,-1.1279134400774606e-16,-0.08571428805589676,-5.573772592720345e-17,1.3745618407998896e-17,9.69920139826097e-18,9.516197613900963e-18,0.04285714402794838,1.3937529713674298e-31,6.7972838917606e-18,0.014285714365541935,-4.7243447921565813e-17,-0.014285714365541935,-0.0071428571827709675,5.286776406212723e-18,5.2931667900350015e-18,4.321794534643568e-18,1.3937529713674298e-31,0.0071428571827709675,5.007321464870046e-32,0.006802720949053764,-3.979606293406509e-17,-2.71891355670424e-17,-0.013605441898107529,4.5315224566436314e-18,4.5315224566436314e-18,3.660076100790441e-18,6.7972838917606e-18,5.007321464870046e-32,0.003401360474526882,7.0,3.0,6.0,0.17994141578674316,-0.047477323561906815,-0.08801020681858063,-0.0535714291036129,0.003306878264993429,0.008928571827709675,0.005102040711790323,0.011904762126505375,0.010204081423580647,0.004251700825989246,-0.047477323561906815,0.03302154317498207,0.008928571827709675,0.005102040711790323,-0.003968254197388887,-0.0029761905316263437,-0.001700680237263441,4.622231866529366e-33,5.421010862427522e-20,-6.505213034913027e-19,-0.08801020681858063,0.008928571827709675,0.20705781877040863,0.010204081423580647,1.5647921696742528e-19,-0.008928571827709675,5.421010862427522e-20,-0.0714285746216774,-0.010204081423580647,1.5395670849294163e-17,-0.0535714291036129,0.005102040711790323,0.010204081423580647,0.04481292515993118,2.0424531235451252e-21,-7.773803330212434e-20,-0.0020408162381500006,4.7228985495735936e-17,-0.004081632476300001,-0.0063775512389838696,0.003306878264993429,-0.003968254197388887,1.5647921696742528e-19,2.0424531235451252e-21,0.0006613756413571537,-2.2949279527625593e-20,-4.377907675664598e-20,-7.57739040985653e-35,8.315536030276916e-21,2.6558863076259725e-20,0.008928571827709675,-0.0029761905316263437,-0.008928571827709675,-7.773803330212434e-20,-2.2949279527625593e-20,0.0029761905316263437,3.718777447942884e-21,-1.0252143861769438e-35,3.5174320741040304e-21,1.1621179979205394e-20,0.005102040711790323,-0.001700680237263441,5.421010862427522e-20,-0.0020408162381500006,-4.377907675664598e-20,3.718777447942884e-21,0.0006802721181884408,-1.8917766907080636e-33,-2.149384716190287e-20,3.2526065174565133e-19,0.011904762126505375,4.622231866529366e-33,-0.0714285746216774,4.7228985495735936e-17,-7.57739040985653e-35,-1.0252143861769438e-35,-1.8917766907080636e-33,0.0357142873108387,-8.2862123030785e-18,-7.788553976786997e-18,0.010204081423580647,5.421010862427522e-20,-0.010204081423580647,-0.004081632476300001,8.315536030276916e-21,3.5174320741040304e-21,-2.149384716190287e-20,-8.2862123030785e-18,0.004081632476300001,0.0,0.004251700825989246,-6.505213034913027e-19,1.5395670849294163e-17,-0.0063775512389838696,2.6558863076259725e-20,1.1621179979205394e-20,3.2526065174565133e-19,-7.788553976786997e-18,0.0,0.0012755101779475808,7.0,3.0,7.0,0.1597222238779068,-0.04124149680137634,-0.07653061300516129,-0.04124149680137634,0.0028344672173261642,0.0076530613005161285,0.0038265306502580643,0.010204081423580647,0.0076530613005161285,0.0028344672173261642,-0.04124149680137634,0.02848639525473118,0.0076530613005161285,0.0038265306502580643,-0.003401360474526882,-0.0025510203558951616,-0.0012755101779475808,6.7972838917606e-18,8.673617379884035e-19,3.7947076036992655e-19,-0.07653061300516129,0.0076530613005161285,0.1785714328289032,0.0076530613005161285,8.929872731462392e-21,-0.0076530613005161285,5.421010862427522e-20,-0.06122449040412903,-0.0076530613005161285,1.0083080204115191e-17,-0.04124149680137634,0.0038265306502580643,0.0076530613005161285,0.02848639525473118,6.830871069394827e-20,8.894883023863142e-19,-0.0012755101779475808,4.343094600852931e-17,-0.0025510203558951616,-0.003401360474526882,0.0028344672173261642,-0.003401360474526882,8.929872731462392e-21,6.830871069394827e-20,0.0005668934318237007,-2.4244414953510622e-20,2.082551390363165e-21,6.19706674237531e-35,-1.4734114271422458e-21,-1.427175100516086e-20,0.0076530613005161285,-0.0025510203558951616,-0.0076530613005161285,8.894883023863142e-19,-2.4244414953510622e-20,0.0025510203558951616,-1.5527668053370645e-20,-6.7972838917606e-18,-8.493271326832162e-19,-5.267040238688726e-21,0.0038265306502580643,-0.0012755101779475808,5.421010862427522e-20,-0.0012755101779475808,2.082551390363165e-21,-1.5527668053370645e-20,0.00042517005931586027,1.1631393541821683e-33,-2.187888933670413e-22,-1.6263032587282567e-19,0.010204081423580647,6.7972838917606e-18,-0.06122449040412903,4.343094600852931e-17,6.19706674237531e-35,-6.7972838917606e-18,1.1631393541821683e-33,0.030612245202064514,-1.397604859277963e-17,-4.909149431428177e-18,0.0076530613005161285,8.673617379884035e-19,-0.0076530613005161285,-0.0025510203558951616,-1.4734114271422458e-21,-8.493271326832162e-19,-2.187888933670413e-22,-1.397604859277963e-17,0.0025510203558951616,-5.421010862427522e-20,0.0028344672173261642,3.7947076036992655e-19,1.0083080204115191e-17,-0.003401360474526882,-1.427175100516086e-20,-5.267040238688726e-21,-1.6263032587282567e-19,-4.909149431428177e-18,-5.421010862427522e-20,0.0005668934318237007,7.0,3.0,8.0,0.143601194024086,-0.0364583320915699,-0.0677083358168602,-0.032738097012043,0.0024801588151603937,0.0066964286379516125,0.0029761905316263437,0.008928571827709675,0.0059523810632526875,0.0019841270986944437,-0.0364583320915699,0.02504960261285305,0.0066964286379516125,0.0029761905316263437,-0.0029761905316263437,-0.0022321429569274187,-0.0009920635493472219,-4.622231866529366e-33,0.0,3.2526065174565133e-19,-0.0677083358168602,0.0066964286379516125,0.1569940447807312,0.0059523810632526875,5.167817016156149e-20,-0.0066964286379516125,1.0842021724855044e-19,-0.0535714291036129,-0.0059523810632526875,6.613633252161577e-18,-0.032738097012043,0.0029761905316263437,0.0059523810632526875,0.019274376332759857,6.051712815044478e-20,-0.0,-0.0008503401186317205,2.830852931150836e-17,-0.001700680237263441,-0.0019841270986944437,0.0024801588151603937,-0.0029761905316263437,5.167817016156149e-20,6.051712815044478e-20,0.0004960317746736109,3.3319679217913414e-21,-3.2241929926622875e-20,9.798310202405138e-35,5.9805162326551736e-21,1.3379032484934343e-21,0.0066964286379516125,-0.0022321429569274187,-0.0066964286379516125,-0.0,3.3319679217913414e-21,0.0022321429569274187,-1.3643445937615747e-20,-1.0212475949682882e-35,1.8789799394021993e-21,6.564120831482961e-21,0.0029761905316263437,-0.0009920635493472219,1.0842021724855044e-19,-0.0008503401186317205,-3.2241929926622875e-20,-1.3643445937615747e-20,0.00028344671591185033,1.1758757436378316e-33,-6.616279658203901e-21,-1.2197274440461925e-19,0.008928571827709675,-4.622231866529366e-33,-0.0535714291036129,2.830852931150836e-17,9.798310202405138e-35,-1.0212475949682882e-35,1.1758757436378316e-33,0.02678571455180645,-5.178883103014369e-18,-3.3042352021841637e-18,0.0059523810632526875,0.0,-0.0059523810632526875,-0.001700680237263441,5.9805162326551736e-21,1.8789799394021993e-21,-6.616279658203901e-21,-5.178883103014369e-18,0.001700680237263441,2.710505431213761e-20,0.0019841270986944437,3.2526065174565133e-19,6.613633252161577e-18,-0.0019841270986944437,1.3379032484934343e-21,6.564120831482961e-21,-1.2197274440461925e-19,-3.3042352021841637e-18,2.710505431213761e-20,0.00028344671591185033,7.0,3.0,9.0,0.13044331967830658,-0.032671958208084106,-0.06071428582072258,-0.026623375713825226,0.002204585587605834,0.0059523810632526875,0.0023809524718672037,0.007936508394777775,0.004761904943734407,0.0014430014416575432,-0.032671958208084106,0.022354496642947197,0.0059523810632526875,0.0023809524718672037,-0.0026455025654286146,-0.0019841270986944437,-0.0007936508045531809,7.703719777548943e-34,0.0,-1.0842021724855044e-19,-0.06071428582072258,0.0059523810632526875,0.14007936418056488,0.004761904943734407,0.0,-0.0059523810632526875,2.710505431213761e-20,-0.0476190485060215,-0.004761904943734407,4.7704895589362195e-18,-0.026623375713825226,0.0023809524718672037,0.004761904943734407,0.013664708472788334,-0.0,-0.0,-0.0005952381179668009,2.1897781956910116e-17,-0.0011904762359336019,-0.0012368584284558892,0.002204585587605834,-0.0026455025654286146,0.0,-0.0,0.00044091709423810244,0.0,0.0,0.0,0.0,0.0,0.0059523810632526875,-0.0019841270986944437,-0.0059523810632526875,-0.0,0.0,0.0019841270986944437,0.0,0.0,0.0,0.0,0.0023809524718672037,-0.0007936508045531809,2.710505431213761e-20,-0.0005952381179668009,0.0,0.0,0.00019841270113829523,-1.925929944387236e-34,0.0,2.710505431213761e-20,0.007936508394777775,7.703719777548943e-34,-0.0476190485060215,2.1897781956910116e-17,0.0,0.0,-1.925929944387236e-34,0.02380952425301075,-3.222416079459553e-18,-2.3344207346813204e-18,0.004761904943734407,0.0,-0.004761904943734407,-0.0011904762359336019,0.0,0.0,0.0,-3.222416079459553e-18,0.0011904762359336019,-1.3552527156068805e-20,0.0014430014416575432,-1.0842021724855044e-19,4.7704895589362195e-18,-0.0012368584284558892,0.0,0.0,2.710505431213761e-20,-2.3344207346813204e-18,-1.3552527156068805e-20,0.00015460730355698615,7.0,3.0,10.0,0.11949855834245682,-0.029599567875266075,-0.05503246933221817,-0.02207792177796364,0.0019841270986944437,0.0053571430034935474,0.0019480519695207477,0.0071428571827709675,0.0038961039390414953,0.0010822510812431574,-0.029599567875266075,0.020183982327580452,0.0053571430034935474,0.0019480519695207477,-0.0023809524718672037,-0.0017857142956927419,-0.0006493506371043622,-6.214365081883051e-17,-1.2630955309456127e-17,-4.824699667560495e-18,-0.05503246933221817,0.0053571430034935474,0.12646104395389557,0.0038961039390414953,-2.6007850514783998e-17,-0.0053571430034935474,-9.134403303190375e-18,-0.04285714402794838,-0.0038961039390414953,-3.577867169202165e-18,-0.02207792177796364,0.0019480519695207477,0.0038961039390414953,0.010046897456049919,-8.698959712310823e-18,-9.367506935710881e-18,-0.00043290044413879514,-1.476993187695495e-17,-0.0008658008882775903,-0.000811688310932368,0.0019841270986944437,-0.0023809524718672037,-2.6007850514783998e-17,-8.698959712310823e-18,0.00039682540227659047,1.3959606516948761e-18,3.6440358796409073e-19,6.872809203999448e-18,1.441848082585949e-18,6.207956892998088e-19,0.0053571430034935474,-0.0017857142956927419,-0.0053571430034935474,-9.367506935710881e-18,1.3959606516948761e-18,0.0017857142956927419,6.488316319937982e-19,9.516197613900963e-18,1.5139404918851253e-18,6.082796711500572e-19,0.0019480519695207477,-0.0006493506371043622,-9.134403303190375e-18,-0.00043290044413879514,3.6440358796409073e-19,6.488316319937982e-19,0.00014430013834498823,2.3550185659096564e-18,4.472333961502706e-19,7.453889935837843e-20,0.0071428571827709675,-6.214365081883051e-17,-0.04285714402794838,-1.476993187695495e-17,6.872809203999448e-18,9.516197613900963e-18,2.3550185659096564e-18,0.02142857201397419,4.08297148210094e-32,8.56097295804233e-19,0.0038961039390414953,-1.2630955309456127e-17,-0.0038961039390414953,-0.0008658008882775903,1.441848082585949e-18,1.5139404918851253e-18,4.472333961502706e-19,4.08297148210094e-32,0.0008658008882775903,1.3552527156068805e-20,0.0010822510812431574,-4.824699667560495e-18,-3.577867169202165e-18,-0.000811688310932368,6.207956892998088e-19,6.082796711500572e-19,7.453889935837843e-20,8.56097295804233e-19,1.3552527156068805e-20,9.018759010359645e-05,7.0,3.0,11.0,0.11025086045265198,-0.02705627679824829,-0.05032467469573021,-0.01860639452934265,0.001803751802071929,0.004870129749178886,0.001623376621864736,0.006493506487458944,0.003246753243729472,0.0008325008093379438,-0.02705627679824829,0.018398268148303032,0.004870129749178886,0.001623376621864736,-0.0021645021624863148,-0.001623376621864736,-0.0005411255406215787,3.659266894335748e-33,0.0,3.1170812458958252e-19,-0.05032467469573021,0.004870129749178886,0.11525973677635193,0.003246753243729472,0.0,-0.004870129749178886,0.0,-0.03896103799343109,-0.003246753243729472,-1.2468324983583301e-18,-0.01860639452934265,0.001623376621864736,0.003246753243729472,0.007606282830238342,-0.0,-0.0,-0.0003246753185521811,-6.4698312113916834e-18,-0.0006493506371043622,-0.0005550005589611828,0.001803751802071929,-0.0021645021624863148,0.0,-0.0,0.0003607503604143858,0.0,0.0,0.0,0.0,0.0,0.004870129749178886,-0.001623376621864736,-0.004870129749178886,-0.0,0.0,0.001623376621864736,0.0,0.0,0.0,0.0,0.001623376621864736,-0.0005411255406215787,0.0,-0.0003246753185521811,0.0,0.0,0.00010822511103469878,-7.2222372914521344e-34,0.0,-6.776263578034403e-20,0.006493506487458944,3.659266894335748e-33,-0.03896103799343109,-6.4698312113916834e-18,0.0,0.0,-7.2222372914521344e-34,0.019480518996715546,0.0,6.469830901198954e-19,0.003246753243729472,0.0,-0.003246753243729472,-0.0006493506371043622,0.0,0.0,0.0,0.0,0.0006493506371043622,-6.776263578034403e-21,0.0008325008093379438,3.1170812458958252e-19,-1.2468324983583301e-18,-0.0005550005589611828,0.0,0.0,-6.776263578034403e-20,6.469830901198954e-19,-6.776263578034403e-21,5.550005516852252e-05,7.0,3.0,12.0,0.10233334451913834,-0.02491605654358864,-0.04635988920927048,-0.015894819051027298,0.0016534391324967146,0.004464285913854837,0.0013736264081671834,0.0059523810632526875,0.002747252816334367,0.0006541077746078372,-0.02491605654358864,0.016903236508369446,0.004464285913854837,0.0013736264081671834,-0.0019841270986944437,-0.0014880952658131719,-0.0004578754596877843,9.974659986866641e-18,-2.2768245622195593e-18,-3.40168431617327e-18,-0.04635988920927048,0.004464285913854837,0.10588370263576508,0.002747252816334367,4.562347755760726e-18,-0.004464285913854837,-4.119968255444917e-18,-0.0357142873108387,-0.002747252816334367,-6.421481677407346e-18,-0.015894819051027298,0.0013736264081671834,0.002747252816334367,0.005898863077163696,-3.0357660829594124e-18,-8.348356728138384e-18,-0.00024975024280138314,-2.3093506273941244e-17,-0.0004995004856027663,-0.0003924646880477667,0.0016534391324967146,-0.0019841270986944437,4.562347755760726e-18,-3.0357660829594124e-18,0.0003306878206785768,-4.482479331715669e-19,-3.450273474041306e-19,-1.6134103047131223e-18,5.251604272976662e-20,3.5914196963582334e-19,0.004464285913854837,-0.0014880952658131719,-0.004464285913854837,-8.348356728138384e-18,-4.482479331715669e-19,0.0014880952658131719,3.9302328752599536e-19,-3.577867169202165e-18,8.402566836762659e-19,5.529499218679032e-19,0.0013736264081671834,-0.0004578754596877843,-4.119968255444917e-18,-0.00024975024280138314,-3.450273474041306e-19,3.9302328752599536e-19,8.325008093379438e-05,7.589415207398531e-19,2.1345230270808369e-19,9.20603554157503e-20,0.0059523810632526875,9.974659986866641e-18,-0.0357142873108387,-2.3093506273941244e-17,-1.6134103047131223e-18,-3.577867169202165e-18,7.589415207398531e-19,0.01785714365541935,-1.4094628242311558e-18,1.8818605021813614e-18,0.002747252816334367,-2.2768245622195593e-18,-0.002747252816334367,-0.0004995004856027663,5.251604272976662e-20,8.402566836762659e-19,2.1345230270808369e-19,-1.4094628242311558e-18,0.0004995004856027663,1.2705494208814505e-19,0.0006541077746078372,-3.40168431617327e-18,-6.421481677407346e-18,-0.0003924646880477667,3.5914196963582334e-19,5.529499218679032e-19,9.20603554157503e-20,1.8818605021813614e-18,1.2705494208814505e-19,3.567860767361708e-05,7.0,3.0,13.0,0.09547793120145798,-0.023090004920959473,-0.04297488182783127,-0.01373626384884119,0.001526251551695168,0.004120879340916872,0.0011773940641433,0.005494505632668734,0.0023547881282866,0.0005232862313278019,-0.023090004920959473,0.015633177012205124,0.004120879340916872,0.0011773940641433,-0.0018315018387511373,-0.0013736264081671834,-0.0003924646880477667,1.0408340855860843e-17,-1.2468324983583301e-18,-1.717782817031721e-18,-0.04297488182783127,0.004120879340916872,0.09791993349790573,0.0023547881282866,1.6839517503637617e-18,-0.004120879340916872,-2.168404344971009e-19,-0.032967034727334976,-0.0023547881282866,6.905277904198533e-19,-0.01373626384884119,0.0011773940641433,0.0023547881282866,0.004667951259762049,-3.74049749507499e-18,-1.734723475976807e-18,-0.00019623234402388334,7.589415207398531e-18,-0.0003924646880477667,-0.00028542886138893664,0.001526251551695168,-0.0018315018387511373,1.6839517503637617e-18,-3.74049749507499e-18,0.0003052503161597997,7.10124345366088e-20,3.7663350501947552e-19,-1.3177029550976124e-18,1.2874900798265365e-19,1.8973538018496328e-19,0.004120879340916872,-0.0013736264081671834,-0.004120879340916872,-1.734723475976807e-18,7.10124345366088e-20,0.0013736264081671834,1.1519648082658485e-19,3.550762114890027e-18,-6.776263578034403e-21,1.0039818089391997e-19,0.0011773940641433,-0.0003924646880477667,-2.168404344971009e-19,-0.00019623234402388334,3.7663350501947552e-19,1.1519648082658485e-19,6.541077891597524e-05,-3.5236570605778894e-19,8.470329472543003e-20,5.892098622329568e-20,0.005494505632668734,1.0408340855860843e-17,-0.032967034727334976,7.589415207398531e-18,-1.3177029550976124e-18,3.550762114890027e-18,-3.5236570605778894e-19,0.016483517363667488,6.505213034913027e-19,-4.899089364215884e-19,0.0023547881282866,-1.2468324983583301e-18,-0.0023547881282866,-0.0003924646880477667,1.2874900798265365e-19,-6.776263578034403e-21,8.470329472543003e-20,6.505213034913027e-19,0.0003924646880477667,-1.6940658945086007e-21,0.0005232862313278019,-1.717782817031721e-18,6.905277904198533e-19,-0.00028542886138893664,1.8973538018496328e-19,1.0039818089391997e-19,5.892098622329568e-20,-4.899089364215884e-19,-1.6940658945086007e-21,2.3785738449078053e-05,7.0,3.0,14.0,0.08948412537574768,-0.02151360549032688,-0.04005102068185806,-0.011989795602858067,0.0014172336086630821,0.0038265306502580643,0.0010204081190750003,0.005102040711790323,0.0020408162381500006,0.00042517005931586027,-0.02151360549032688,0.01454081665724516,0.0038265306502580643,0.0010204081190750003,-0.001700680237263441,-0.0012755101779475808,-0.0003401360590942204,-3.0357660829594124e-18,-7.047314121155779e-19,-2.710505431213761e-20,-0.04005102068185806,0.0038265306502580643,0.09107142686843872,0.0020408162381500006,3.8818878907689856e-18,-0.0038265306502580643,-3.469446951953614e-18,-0.030612245202064514,-0.0020408162381500006,-1.0650299870429035e-18,-0.011989795602858067,0.0010204081190750003,0.0020408162381500006,0.003757849335670471,2.710505431213761e-19,-8.673617379884035e-19,-0.00015698587230872363,-1.3010426069826053e-17,-0.00031397174461744726,-0.00021258502965793014,0.0014172336086630821,-0.001700680237263441,3.8818878907689856e-18,2.710505431213761e-19,0.00028344671591185033,-3.9094388471300776e-19,-1.0892491374448143e-19,-1.0014461643196008e-18,-6.945670167485263e-20,5.082197683525802e-21,0.0038265306502580643,-0.0012755101779475808,-0.0038265306502580643,-8.673617379884035e-19,-3.9094388471300776e-19,0.0012755101779475808,1.0842021724855044e-19,1.1926223897340549e-18,3.7947076036992655e-19,1.7881938783383068e-20,0.0010204081190750003,-0.0003401360590942204,-3.469446951953614e-18,-0.00015698587230872363,-1.0892491374448143e-19,1.0842021724855044e-19,5.232862531556748e-05,1.111307226797642e-18,1.1350241493207625e-19,-1.3881254911118166e-21,0.005102040711790323,-3.0357660829594124e-18,-0.030612245202064514,-1.3010426069826053e-17,-1.0014461643196008e-18,1.1926223897340549e-18,1.111307226797642e-18,0.015306122601032257,2.8189256484623115e-18,4.480889076988035e-19,0.0020408162381500006,-7.047314121155779e-19,-0.0020408162381500006,-0.00031397174461744726,-6.945670167485263e-20,3.7947076036992655e-19,1.1350241493207625e-19,2.8189256484623115e-18,0.00031397174461744726,1.5246593050577406e-20,0.00042517005931586027,-2.710505431213761e-20,-1.0650299870429035e-18,-0.00021258502965793014,5.082197683525802e-21,1.7881938783383068e-20,-1.3881254911118166e-21,4.480889076988035e-19,1.5246593050577406e-20,1.635269472899381e-05,7.0,3.0,15.0,0.084198959171772,-0.02013888955116272,-0.03750000149011612,-0.010556722991168499,0.0013227512827143073,0.0035714285913854837,0.0008928571478463709,0.004761904943734407,0.0017857142956927419,0.00035014006425626576,-0.02013888955116272,0.013591269962489605,0.0035714285913854837,0.0008928571478463709,-0.0015873016091063619,-0.0011904762359336019,-0.00029761905898340046,9.75781955236954e-18,2.2768245622195593e-18,6.700030612781516e-19,-0.03750000149011612,0.0035714285913854837,0.08511904627084732,0.0017857142956927419,1.0000812129113117e-17,-0.0035714285913854837,2.0599841277224584e-18,-0.02857142873108387,-0.0017857142956927419,4.162331069745901e-18,-0.010556722991168499,0.0008928571478463709,0.0017857142956927419,0.0030702666845172644,2.8189256484623115e-18,2.3310346708438345e-18,-0.00012755101488437504,2.5478751053409354e-17,-0.00025510202976875007,-0.00016160310769919306,0.0013227512827143073,-0.0015873016091063619,1.0000812129113117e-17,2.8189256484623115e-18,0.00026455026818439364,-1.2262506937543622e-18,-4.467668145860024e-19,-1.8785162109648095e-18,-3.2526065174565133e-19,-6.437450399132683e-20,0.0035714285913854837,-0.0011904762359336019,-0.0035714285913854837,2.3310346708438345e-18,-1.2262506937543622e-18,0.0011904762359336019,-4.743384504624082e-20,7.508100044462118e-18,2.371692252312041e-19,-1.7333176825257732e-19,0.0008928571478463709,-0.00029761905898340046,2.0599841277224584e-18,-0.00012755101488437504,-4.467668145860024e-19,-4.743384504624082e-20,4.251700738677755e-05,-7.318364664277155e-19,-6.183340514956392e-20,-1.2259643858648423e-20,0.004761904943734407,9.75781955236954e-18,-0.02857142873108387,2.5478751053409354e-17,-1.8785162109648095e-18,7.508100044462118e-18,-7.318364664277155e-19,0.014285714365541935,-2.439454888092385e-18,-1.3995683999365262e-18,0.0017857142956927419,2.2768245622195593e-18,-0.0017857142956927419,-0.00025510202976875007,-3.2526065174565133e-19,2.371692252312041e-19,-6.183340514956392e-20,-2.439454888092385e-18,0.00025510202976875007,-8.809142651444724e-20,0.00035014006425626576,6.700030612781516e-19,4.162331069745901e-18,-0.00016160310769919306,-6.437450399132683e-20,-1.7333176825257732e-19,-1.2259643858648423e-20,-1.3995683999365262e-18,-8.809142651444724e-20,1.154307847173186e-05,7.0,3.0,16.0,0.07950367778539658,-0.01892944611608982,-0.03525472804903984,-0.009366246871650219,0.0012400794075801969,0.0033482143189758062,0.0007878151373006403,0.004464285913854837,0.0015756302746012807,0.0002917833917308599,-0.01892944611608982,0.012758227996528149,0.0033482143189758062,0.0007878151373006403,-0.0014880952658131719,-0.0011160714784637094,-0.00026260505546815693,-4.7488055154865094e-17,-2.927345865710862e-18,-1.3018896399298596e-18,-0.03525472804903984,0.0033482143189758062,0.07989758253097534,0.0015756302746012807,-9.07049615624514e-18,-0.0033482143189758062,-4.336808689942018e-18,-0.02678571455180645,-0.0015756302746012807,-8.495848511428147e-19,-0.009366246871650219,0.0007878151373006403,0.0015756302746012807,0.002541016321629286,-3.1170812458958252e-18,-3.5236570605778894e-18,-0.0001050420178216882,-1.5070410197548512e-17,-0.0002100840356433764,-0.0001250500208698213,0.0012400794075801969,-0.0014880952658131719,-9.07049615624514e-18,-3.1170812458958252e-18,0.00024801588733680546,1.213666407354681e-19,1.2332647717585056e-19,3.291523710915908e-18,2.464865876510014e-19,1.6008922703106276e-19,0.0033482143189758062,-0.0011160714784637094,-0.0033482143189758062,-3.5236570605778894e-18,1.213666407354681e-19,0.0011160714784637094,1.8973538018496328e-19,1.4718044491490723e-17,7.792703114739563e-19,1.2302627523697917e-19,0.0007878151373006403,-0.00026260505546815693,-4.336808689942018e-18,-0.0001050420178216882,1.2332647717585056e-19,1.8973538018496328e-19,3.501400715322234e-05,1.463672932855431e-18,9.825582188149884e-20,2.43608567805988e-20,0.004464285913854837,-4.7488055154865094e-17,-0.02678571455180645,-1.5070410197548512e-17,3.291523710915908e-18,1.4718044491490723e-17,1.463672932855431e-18,0.013392857275903225,5.854691731421724e-18,2.3091398204150153e-19,0.0015756302746012807,-2.927345865710862e-18,-0.0015756302746012807,-0.0002100840356433764,2.464865876510014e-19,7.792703114739563e-19,9.825582188149884e-20,5.854691731421724e-18,0.0002100840356433764,2.541098841762901e-21,0.0002917833917308599,-1.3018896399298596e-18,-8.495848511428147e-19,-0.0001250500208698213,1.6008922703106276e-19,1.2302627523697917e-19,2.43608567805988e-20,2.3091398204150153e-19,2.541098841762901e-21,8.336667633557227e-06,7.0,4.0,3.0,0.24117062985897064,-0.06815475970506668,-0.10357142984867096,-0.12589286267757416,0.004960317630320787,0.010714286006987095,0.013392857275903225,0.011904762126505375,0.02142857201397419,0.01785714365541935,-0.06815475970506668,0.04851190373301506,0.010714286006987095,0.013392857275903225,-0.0059523810632526875,-0.0035714285913854837,-0.004464285913854837,-2.2551405187698492e-17,-1.1300484097820722e-17,2.287615960490926e-17,-0.10357142984867096,0.010714286006987095,0.15238095819950104,0.02142857201397419,-6.500571310905685e-18,-0.0071428571827709675,-1.1473095184964613e-17,-0.0357142873108387,-0.014285714365541935,5.24446967475727e-17,-0.12589286267757416,0.013392857275903225,0.02142857201397419,0.30446428060531616,-7.72771308497492e-19,-1.0665050568702387e-17,-0.013392857275903225,-1.7635685874255113e-17,-0.02142857201397419,-0.1071428582072258,0.004960317630320787,-0.0059523810632526875,-6.500571310905685e-18,-7.72771308497492e-19,0.0009920635493472219,8.993619437680534e-19,1.6165334802121811e-19,9.8796632565986e-19,5.133256440811403e-19,-2.952987223929087e-19,0.010714286006987095,-0.0035714285913854837,-0.0071428571827709675,-1.0665050568702387e-17,8.993619437680534e-19,0.0023809524718672037,2.6806404887878403e-18,8.953498903225028e-18,4.50049573904738e-18,-2.1563004178626736e-18,0.013392857275903225,-0.004464285913854837,-1.1473095184964613e-17,-0.013392857275903225,1.6165334802121811e-19,2.6806404887878403e-18,0.004464285913854837,2.98529353823417e-19,1.1604372056899228e-18,-1.1766075113305382e-17,0.011904762126505375,-2.2551405187698492e-17,-0.0357142873108387,-1.7635685874255113e-17,9.8796632565986e-19,8.953498903225028e-18,2.98529353823417e-19,0.011904762126505375,1.9869296866913677e-17,-6.414554039777215e-18,0.02142857201397419,-1.1300484097820722e-17,-0.014285714365541935,-0.02142857201397419,5.133256440811403e-19,4.50049573904738e-18,1.1604372056899228e-18,1.9869296866913677e-17,0.014285714365541935,-1.9376851432842483e-17,0.01785714365541935,2.287615960490926e-17,5.24446967475727e-17,-0.1071428582072258,-2.952987223929087e-19,-2.1563004178626736e-18,-1.1766075113305382e-17,-6.414554039777215e-18,-1.9376851432842483e-17,0.0535714291036129,7.0,4.0,4.0,0.19886904954910278,-0.05312500149011612,-0.08089285343885422,-0.08089285343885422,0.0037202381063252687,0.008035714738070965,0.008035714738070965,0.008928571827709675,0.012857142835855484,0.008928571827709675,-0.05312500149011612,0.03705357015132904,0.008035714738070965,0.008035714738070965,-0.004464285913854837,-0.0026785715017467737,-0.0026785715017467737,6.814984936483776e-19,-1.6653344997146072e-18,1.832974748364937e-18,-0.08089285343885422,0.008035714738070965,0.11642856895923615,0.012857142835855484,1.4986314466983002e-18,-0.0053571430034935474,-1.0782334853395056e-17,-0.02678571455180645,-0.008571428246796131,7.416000927879852e-18,-0.08089285343885422,0.008035714738070965,0.012857142835855484,0.11642856895923615,2.7862195991262125e-19,-7.465148691155302e-18,-0.0053571430034935474,-5.914863020527939e-19,-0.008571428246796131,-0.02678571455180645,0.0037202381063252687,-0.004464285913854837,1.4986314466983002e-18,2.7862195991262125e-19,0.0007440476329065859,-3.9498320151456026e-20,2.5574780518672167e-19,-3.6009808702635807e-19,-1.2761464609481081e-19,-2.848144666227405e-19,0.008035714738070965,-0.0026785715017467737,-0.0053571430034935474,-7.465148691155302e-18,-3.9498320151456026e-20,0.0017857142956927419,1.545452144115486e-18,-1.102445020509902e-18,8.957534717433674e-19,3.844608049633351e-19,0.008035714738070965,-0.0026785715017467737,-1.0782334853395056e-17,-0.0053571430034935474,2.5574780518672167e-19,1.545452144115486e-18,0.0017857142956927419,1.2766042795677621e-18,1.3307796466063101e-18,-1.8197951504181588e-19,0.008928571827709675,6.814984936483776e-19,-0.02678571455180645,-5.914863020527939e-19,-3.6009808702635807e-19,-1.102445020509902e-18,1.2766042795677621e-18,0.008928571827709675,-4.2643654526655424e-18,1.2554684707485368e-18,0.012857142835855484,-1.6653344997146072e-18,-0.008571428246796131,-0.008571428246796131,-1.2761464609481081e-19,8.957534717433674e-19,1.3307796466063101e-18,-4.2643654526655424e-18,0.0057142856530845165,-7.227778461035248e-18,0.008928571827709675,1.832974748364937e-18,7.416000927879852e-18,-0.02678571455180645,-2.848144666227405e-19,3.844608049633351e-19,-1.8197951504181588e-19,1.2554684707485368e-18,-7.227778461035248e-18,0.008928571827709675,7.0,4.0,5.0,0.16937075555324554,-0.04357142746448517,-0.06642857193946838,-0.05647959187626839,0.0029761905316263437,0.006428571417927742,0.0053571430034935474,0.0071428571827709675,0.008571428246796131,0.005102040711790323,-0.04357142746448517,0.029999999329447746,0.006428571417927742,0.0053571430034935474,-0.0035714285913854837,-0.002142857061699033,-0.0017857142956927419,0.0,0.0,-0.0,-0.06642857193946838,0.006428571417927742,0.09428571164608002,0.008571428246796131,0.0,-0.004285714123398066,-5.437827185786784e-20,-0.02142857201397419,-0.0057142856530845165,-0.0,-0.05647959187626839,0.0053571430034935474,0.008571428246796131,0.05885203927755356,0.0,-5.437827185786784e-20,-0.0026785715017467737,0.0,-0.004285714123398066,-0.010204081423580647,0.0029761905316263437,-0.0035714285913854837,0.0,0.0,0.0005952381179668009,0.0,0.0,0.0,0.0,-0.0,0.006428571417927742,-0.002142857061699033,-0.004285714123398066,-5.437827185786784e-20,0.0,0.0014285714132711291,1.812608954223119e-20,0.0,0.0,-0.0,0.0053571430034935474,-0.0017857142956927419,-5.437827185786784e-20,-0.0026785715017467737,0.0,1.812608954223119e-20,0.0008928571478463709,0.0,0.0,-0.0,0.0071428571827709675,0.0,-0.02142857201397419,0.0,0.0,0.0,0.0,0.0071428571827709675,0.0,-0.0,0.008571428246796131,0.0,-0.0057142856530845165,-0.004285714123398066,0.0,0.0,0.0,0.0,0.0028571428265422583,-0.0,0.005102040711790323,-0.0,-0.0,-0.010204081423580647,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025510203558951616,7.0,4.0,6.0,0.14756235480308533,-0.036947280168533325,-0.05637755244970322,-0.041709184646606445,0.0024801588151603937,0.0053571430034935474,0.0038265306502580643,0.0059523810632526875,0.006122448947280645,0.0031887756194919348,-0.036947280168533325,0.025212585926055908,0.0053571430034935474,0.0038265306502580643,-0.0029761905316263437,-0.0017857142956927419,-0.0012755101779475808,-2.9738117026452626e-18,-1.0299920638612292e-18,-5.421010862427522e-19,-0.05637755244970322,0.0053571430034935474,0.07925169914960861,0.006122448947280645,-1.301164280080833e-19,-0.0035714285913854837,-3.7947076036992655e-19,-0.01785714365541935,-0.004081632476300001,-1.1926223897340549e-18,-0.041709184646606445,0.0038265306502580643,0.006122448947280645,0.034221939742565155,-3.125293533791343e-20,-6.53021611989109e-19,-0.0015306122368201613,-3.3986419458803e-18,-0.0024489795323461294,-0.00478316331282258,0.0024801588151603937,-0.0029761905316263437,-1.301164280080833e-19,-3.125293533791343e-20,0.0004960317746736109,3.7832817837474647e-20,2.657103814090074e-20,-8.758091259339125e-35,6.130901545426435e-21,-2.6583763312960846e-21,0.0053571430034935474,-0.0017857142956927419,-0.0035714285913854837,-6.53021611989109e-19,3.7832817837474647e-20,0.0011904762359336019,-1.2251781805809726e-21,1.9825412040285595e-18,4.516494032479615e-19,-3.828681801693765e-21,0.0038265306502580643,-0.0012755101779475808,-3.7947076036992655e-19,-0.0015306122368201613,2.657103814090074e-20,-1.2251781805809726e-21,0.0005102040595375001,1.5972358951640298e-34,1.2854150197117648e-19,2.168404344971009e-19,0.0059523810632526875,-2.9738117026452626e-18,-0.01785714365541935,-3.3986419458803e-18,-8.758091259339125e-35,1.9825412040285595e-18,1.5972358951640298e-34,0.0059523810632526875,2.2657612283218157e-18,6.7407548053553255e-34,0.006122448947280645,-1.0299920638612292e-18,-0.004081632476300001,-0.0024489795323461294,6.130901545426435e-21,4.516494032479615e-19,1.2854150197117648e-19,2.2657612283218157e-18,0.0016326530603691936,4.87890977618477e-19,0.0031887756194919348,-5.421010862427522e-19,-1.1926223897340549e-18,-0.00478316331282258,-2.6583763312960846e-21,-3.828681801693765e-21,2.168404344971009e-19,6.7407548053553255e-34,4.87890977618477e-19,0.0009566326625645161,7.0,4.0,7.0,0.130761057138443,-0.03207908198237419,-0.04897959157824516,-0.03207908198237419,0.002125850412994623,0.004591836594045162,0.002869897987693548,0.005102040711790323,0.004591836594045162,0.002125850412994623,-0.03207908198237419,0.021747449412941933,0.004591836594045162,0.002869897987693548,-0.0025510203558951616,-0.0015306122368201613,-0.0009566326625645161,-5.562163857285715e-18,7.860465750519907e-19,-1.3552527156068805e-18,-0.04897959157824516,0.004591836594045162,0.06836734712123871,0.004591836594045162,1.8488218745402278e-18,-0.0030612244736403227,-3.713392440762853e-18,-0.015306122601032257,-0.0030612244736403227,-2.710505431213761e-18,-0.03207908198237419,0.002869897987693548,0.004591836594045162,0.021747449412941933,1.1703539638610914e-18,-2.9426131382767532e-18,-0.0009566326625645161,-1.3932698331622411e-18,-0.0015306122368201613,-0.0025510203558951616,0.002125850412994623,-0.0025510203558951616,1.8488218745402278e-18,1.1703539638610914e-18,0.00042517005931586027,-1.8645067182190935e-19,-1.1697273486976883e-19,-9.440671784674232e-20,-2.2164909389181306e-19,-4.2801804868180057e-20,0.004591836594045162,-0.0015306122368201613,-0.0030612244736403227,-2.9426131382767532e-18,-1.8645067182190935e-19,0.0010204081190750003,1.0465237724662872e-19,2.3392117647892275e-18,2.6755301669634877e-19,4.518677272308872e-19,0.002869897987693548,-0.0009566326625645161,-3.713392440762853e-18,-0.0009566326625645161,-1.1697273486976883e-19,1.0465237724662872e-19,0.0003188775444868952,1.0620756080875938e-18,2.289605691755634e-19,4.336808689942018e-19,0.005102040711790323,-5.562163857285715e-18,-0.015306122601032257,-1.3932698331622411e-18,-9.440671784674232e-20,2.3392117647892275e-18,1.0620756080875938e-18,0.005102040711790323,-1.1953046262678346e-18,9.440671784674232e-20,0.004591836594045162,7.860465750519907e-19,-0.0030612244736403227,-0.0015306122368201613,-2.2164909389181306e-19,2.6755301669634877e-19,2.289605691755634e-19,-1.1953046262678346e-18,0.0010204081190750003,4.87890977618477e-19,0.002125850412994623,-1.3552527156068805e-18,-2.710505431213761e-18,-0.0025510203558951616,-4.2801804868180057e-20,4.518677272308872e-19,4.336808689942018e-19,9.440671784674232e-20,4.87890977618477e-19,0.00042517005931586027,7.0,4.0,8.0,0.11741071194410324,-0.02834821492433548,-0.04330357164144516,-0.02544642798602581,0.0018601190531626344,0.004017857369035482,0.0022321429569274187,0.004464285913854837,0.0035714285913854837,0.0014880952658131719,-0.02834821492433548,0.01912202313542366,0.004017857369035482,0.0022321429569274187,-0.0022321429569274187,-0.0013392857508733869,-0.0007440476329065859,0.0,-1.0842021724855044e-19,-2.439454888092385e-19,-0.04330357164144516,0.004017857369035482,0.06011904776096344,0.0035714285913854837,3.434607384097891e-21,-0.0026785715017467737,-1.3552527156068805e-19,-0.013392857275903225,-0.0023809524718672037,-2.168404344971009e-19,-0.02544642798602581,0.0022321429569274187,0.0035714285913854837,0.014710884541273117,-1.6339624988361002e-20,-2.551931676613078e-20,-0.0006377550889737904,-0.0,-0.0010204081190750003,-0.0014880952658131719,0.0018601190531626344,-0.0022321429569274187,3.434607384097891e-21,-1.6339624988361002e-20,0.00037202381645329297,2.802654724701232e-21,-4.402599743963516e-21,0.0,-2.277262961481864e-21,2.3536434783076893e-21,0.004017857369035482,-0.0013392857508733869,-0.0026785715017467737,-2.551931676613078e-20,2.802654724701232e-21,0.0008928571478463709,1.2178897621490036e-21,0.0,2.3306366592403934e-22,6.229874432732615e-21,0.0022321429569274187,-0.0007440476329065859,-1.3552527156068805e-19,-0.0006377550889737904,-4.402599743963516e-21,1.2178897621490036e-21,0.00021258502965793014,0.0,3.166866145038095e-20,6.776263578034403e-20,0.004464285913854837,0.0,-0.013392857275903225,-0.0,0.0,0.0,0.0,0.004464285913854837,0.0,0.0,0.0035714285913854837,-1.0842021724855044e-19,-0.0023809524718672037,-0.0010204081190750003,-2.277262961481864e-21,2.3306366592403934e-22,3.166866145038095e-20,0.0,0.0006802721181884408,8.131516293641283e-20,0.0014880952658131719,-2.439454888092385e-19,-2.168404344971009e-19,-0.0014880952658131719,2.3536434783076893e-21,6.229874432732615e-21,6.776263578034403e-20,0.0,8.131516293641283e-20,0.00021258502965793014,7.0,4.0,9.0,0.10654281079769135,-0.02539682574570179,-0.03880952298641205,-0.020681818947196007,0.0016534391324967146,0.0035714285913854837,0.0017857142956927419,0.003968254197388887,0.0028571428265422583,0.0010822510812431574,-0.02539682574570179,0.01706349290907383,0.0035714285913854837,0.0017857142956927419,-0.0019841270986944437,-0.0011904762359336019,-0.0005952381179668009,-0.0,1.0842021724855044e-19,1.8973538018496328e-19,-0.03880952298641205,0.0035714285913854837,0.05365079268813133,0.0028571428265422583,0.0,-0.0023809524718672037,1.0842021724855044e-19,-0.011904762126505375,-0.0019047618843615055,3.2526065174565133e-19,-0.020681818947196007,0.0017857142956927419,0.0028571428265422583,0.010427102446556091,-0.0,-0.0,-0.00044642857392318547,-0.0,-0.0007142857066355646,-0.0009276437922380865,0.0016534391324967146,-0.0019841270986944437,0.0,-0.0,0.0003306878206785768,0.0,0.0,0.0,0.0,0.0,0.0035714285913854837,-0.0011904762359336019,-0.0023809524718672037,-0.0,0.0,0.0007936508045531809,0.0,0.0,0.0,0.0,0.0017857142956927419,-0.0005952381179668009,1.0842021724855044e-19,-0.00044642857392318547,0.0,0.0,0.00014880952949170023,0.0,-2.710505431213761e-20,-4.743384504624082e-20,0.003968254197388887,-0.0,-0.011904762126505375,-0.0,0.0,0.0,0.0,0.003968254197388887,0.0,0.0,0.0028571428265422583,1.0842021724855044e-19,-0.0019047618843615055,-0.0007142857066355646,0.0,0.0,-2.710505431213761e-20,0.0,0.0004761904710903764,-8.131516293641283e-20,0.0010822510812431574,1.8973538018496328e-19,3.2526065174565133e-19,-0.0009276437922380865,0.0,0.0,-4.743384504624082e-20,0.0,-8.131516293641283e-20,0.00011595547402976081,7.0,4.0,10.0,0.09752164781093597,-0.023003246635198593,-0.03516233712434769,-0.017142856493592262,0.0014880952658131719,0.003214285708963871,0.0014610389480367303,0.0035714285913854837,0.0023376622702926397,0.000811688310932368,-0.023003246635198593,0.01540584396570921,0.003214285708963871,0.0014610389480367303,-0.0017857142956927419,-0.0010714285308495164,-0.0004870129923801869,-0.0,0.0,1.3552527156068805e-20,-0.03516233712434769,0.003214285708963871,0.048441559076309204,0.0023376622702926397,0.0,-0.002142857061699033,1.3552527156068805e-20,-0.010714286006987095,-0.0015584415523335338,-2.710505431213761e-20,-0.017142856493592262,0.0014610389480367303,0.0023376622702926397,0.007665043231099844,-0.0,-0.0,-0.0003246753185521811,-0.0,-0.0005194804980419576,-0.0006087662186473608,0.0014880952658131719,-0.0017857142956927419,0.0,-0.0,0.00029761905898340046,0.0,0.0,0.0,0.0,0.0,0.003214285708963871,-0.0010714285308495164,-0.002142857061699033,-0.0,0.0,0.0007142857066355646,0.0,0.0,0.0,0.0,0.0014610389480367303,-0.0004870129923801869,1.3552527156068805e-20,-0.0003246753185521811,0.0,0.0,0.00010822511103469878,0.0,0.0,-3.3881317890172014e-21,0.0035714285913854837,-0.0,-0.010714286006987095,-0.0,0.0,0.0,0.0,0.0035714285913854837,0.0,0.0,0.0023376622702926397,0.0,-0.0015584415523335338,-0.0005194804980419576,0.0,0.0,0.0,0.0,0.00034632033202797174,6.776263578034403e-21,0.000811688310932368,1.3552527156068805e-20,-2.710505431213761e-20,-0.0006087662186473608,0.0,0.0,-3.3881317890172014e-21,0.0,6.776263578034403e-21,6.764069257769734e-05,7.0,4.0,11.0,0.08991216868162155,-0.021022727712988853,-0.03214285895228386,-0.014441807754337788,0.0013528139097616076,0.0029220778960734606,0.0012175324372947216,0.003246753243729472,0.0019480519695207477,0.0006243756506592035,-0.021022727712988853,0.014042207971215248,0.0029220778960734606,0.0012175324372947216,-0.001623376621864736,-0.0009740259847603738,-0.000405844155466184,-2.5232342220735933e-18,-2.303929616531697e-19,-8.131516293641283e-20,-0.03214285895228386,0.0029220778960734606,0.04415584355592728,0.0019480519695207477,0.0,-0.0019480519695207477,-1.7211709488207383e-18,-0.009740259498357773,-0.0012987012742087245,-2.0599841277224584e-18,-0.014441807754337788,0.0012175324372947216,0.0019480519695207477,0.0058021144941449165,-0.0,-0.0,-0.00024350649619009346,-9.134254410680115e-18,-0.00038961038808338344,-0.0004162504046689719,0.0013528139097616076,-0.001623376621864736,0.0,-0.0,0.00027056277031078935,0.0,0.0,0.0,0.0,0.0,0.0029220778960734606,-0.0009740259847603738,-0.0019480519695207477,-0.0,0.0,0.0006493506371043622,0.0,0.0,0.0,0.0,0.0012175324372947216,-0.000405844155466184,-1.7211709488207383e-18,-0.00024350649619009346,0.0,0.0,8.116882963804528e-05,5.046468133954457e-19,4.0657581468206416e-20,1.6940658945086007e-20,0.003246753243729472,-2.5232342220735933e-18,-0.009740259498357773,-9.134254410680115e-18,0.0,0.0,5.046468133954457e-19,0.003246753243729472,7.669882820399807e-19,6.469830901198954e-19,0.0019480519695207477,-2.303929616531697e-19,-0.0012987012742087245,-0.00038961038808338344,0.0,0.0,4.0657581468206416e-20,7.669882820399807e-19,0.0002597402490209788,2.710505431213761e-20,0.0006243756506592035,-8.131516293641283e-20,-2.0599841277224584e-18,-0.0004162504046689719,0.0,0.0,1.6940658945086007e-20,6.469830901198954e-19,2.710505431213761e-20,4.162504046689719e-05,7.0,4.0,12.0,0.08340637385845184,-0.019356684759259224,-0.029601648449897766,-0.012333202175796032,0.0012400794075801969,0.0026785715017467737,0.001030219835229218,0.0029761905316263437,0.0016483516665175557,0.0004905808600597084,-0.019356684759259224,0.012900641188025475,0.0026785715017467737,0.001030219835229218,-0.0014880952658131719,-0.0008928571478463709,-0.00034340660204179585,-3.469446951953614e-18,7.047314121155779e-19,2.354751593366955e-19,-0.029601648449897766,0.0026785715017467737,0.04056776687502861,0.0016483516665175557,-8.673617379884035e-19,-0.0017857142956927419,4.743384504624082e-19,-0.008928571827709675,-0.001098901149816811,2.168404344971009e-19,-0.012333202175796032,0.001030219835229218,0.0016483516665175557,0.0044990722090005875,1.2197274440461925e-18,4.336808689942018e-19,-0.00018731268937699497,4.336808689942018e-19,-0.00029970030300319195,-0.000294348516035825,0.0012400794075801969,-0.0014880952658131719,-8.673617379884035e-19,1.2197274440461925e-18,0.00024801588733680546,4.0378948263807343e-19,-1.645376492690081e-19,3.4370718007119305e-20,-1.1263357802086293e-19,-3.134021904840911e-20,0.0026785715017467737,-0.0008928571478463709,-0.0017857142956927419,4.336808689942018e-19,4.0378948263807343e-19,0.0005952381179668009,-8.131516293641283e-20,1.8431436932253575e-18,1.3552527156068805e-19,-2.4500735930238357e-20,0.001030219835229218,-0.00034340660204179585,4.743384504624082e-19,-0.00018731268937699497,-1.645376492690081e-19,-8.131516293641283e-20,6.243756070034578e-05,2.710505431213761e-20,-5.421010862427522e-20,-7.702597619755823e-21,0.0029761905316263437,-3.469446951953614e-18,-0.008928571827709675,4.336808689942018e-19,3.4370718007119305e-20,1.8431436932253575e-18,2.710505431213761e-20,0.0029761905316263437,6.776263578034403e-20,-4.6485097964210906e-20,0.0016483516665175557,7.047314121155779e-19,-0.001098901149816811,-0.00029970030300319195,-1.1263357802086293e-19,1.3552527156068805e-19,-5.421010862427522e-20,6.776263578034403e-20,0.00019980019715148956,-2.69377707657394e-21,0.0004905808600597084,2.354751593366955e-19,2.168404344971009e-19,-0.000294348516035825,-3.134021904840911e-20,-2.4500735930238357e-20,-7.702597619755823e-21,-4.6485097964210906e-20,-2.69377707657394e-21,2.6758954845718108e-05,7.0,4.0,13.0,0.07777995616197586,-0.017935635522007942,-0.027433281764388084,-0.010655416175723076,0.0011446886928752065,0.0024725275579839945,0.000883045548107475,0.002747252816334367,0.001412872807122767,0.0003924646880477667,-0.017935635522007942,0.011930925771594048,0.0024725275579839945,0.000883045548107475,-0.0013736264081671834,-0.0008241758332587779,-0.000294348516035825,1.1817803680091998e-17,-1.6263032587282567e-19,-1.3467823861343375e-18,-0.027433281764388084,0.0024725275579839945,0.03751962259411812,0.001412872807122767,4.1047398603678156e-18,-0.0016483516665175557,9.75781955236954e-19,-0.008241758681833744,-0.0009419152047485113,-1.2833892285422283e-18,-0.010655416175723076,0.000883045548107475,0.001412872807122767,0.00355983292683959,-2.5478751053409354e-18,-1.6263032587282567e-18,-0.0001471742580179125,-2.3852447794681098e-18,-0.00023547880118712783,-0.00021407163876574486,0.0011446886928752065,-0.0013736264081671834,4.1047398603678156e-18,-2.5478751053409354e-18,0.00022893772984389216,-1.6788353022329973e-19,2.236003871074315e-19,-1.1633782463578551e-18,2.0328790734103208e-20,1.5161889755851976e-19,0.0024725275579839945,-0.0008241758332587779,-0.0016483516665175557,-1.6263032587282567e-18,-1.6788353022329973e-19,0.0005494505749084055,-2.710505431213761e-20,-1.5449880957918438e-18,-1.0164395367051604e-20,1.4413399868946884e-19,0.000883045548107475,-0.000294348516035825,9.75781955236954e-19,-0.0001471742580179125,2.236003871074315e-19,-2.710505431213761e-20,4.9058086005970836e-05,-2.981555974335137e-19,1.6940658945086007e-20,2.807217708222842e-20,0.002747252816334367,1.1817803680091998e-17,-0.008241758681833744,-2.3852447794681098e-18,-1.1633782463578551e-18,-1.5449880957918438e-18,-2.981555974335137e-19,0.002747252816334367,7.860465750519907e-19,1.924516732955255e-19,0.001412872807122767,-1.6263032587282567e-19,-0.0009419152047485113,-0.00023547880118712783,2.0328790734103208e-20,-1.0164395367051604e-20,1.6940658945086007e-20,7.860465750519907e-19,0.00015698587230872363,3.3457801416544863e-20,0.0003924646880477667,-1.3467823861343375e-18,-1.2833892285422283e-18,-0.00021407163876574486,1.5161889755851976e-19,1.4413399868946884e-19,2.807217708222842e-20,1.924516732955255e-19,3.3457801416544863e-20,1.783930383680854e-05,7.0,4.0,14.0,0.07286564260721207,-0.016709184274077415,-0.025561224669218063,-0.009298468939960003,0.0010629252064973116,0.002295918297022581,0.0007653061184100807,0.0025510203558951616,0.0012244897661730647,0.0003188775444868952,-0.016709184274077415,0.011096938513219357,0.002295918297022581,0.0007653061184100807,-0.0012755101779475808,-0.0007653061184100807,-0.00025510202976875007,-5.204170427930421e-18,-1.2197274440461925e-18,-2.219226321806267e-19,-0.025561224669218063,0.002295918297022581,0.03489796072244644,0.0012244897661730647,-2.4606964726324405e-18,-0.0015306122368201613,-1.951563910473908e-18,-0.0076530613005161285,-0.0008163265301845968,-2.1129226271006924e-19,-0.009298468939960003,0.0007653061184100807,0.0012244897661730647,0.00286548282019794,-9.215718466126788e-19,-1.0842021724855044e-18,-0.00011773940059356391,-1.2468324983583301e-18,-0.00018838304094970226,-0.0001594387722434476,0.0010629252064973116,-0.0012755101779475808,-2.4606964726324405e-18,-9.215718466126788e-19,0.00021258502965793014,4.800528209290776e-19,1.656145608783697e-19,1.9849199169763205e-19,5.082197683525802e-20,1.7787691892340307e-20,0.002295918297022581,-0.0007653061184100807,-0.0015306122368201613,-1.0842021724855044e-18,4.800528209290776e-19,0.0005102040595375001,1.7957098481791167e-19,1.4772254600114998e-18,1.3383120566617945e-19,1.7452383245049427e-20,0.0007653061184100807,-0.00025510202976875007,-1.951563910473908e-18,-0.00011773940059356391,1.656145608783697e-19,1.7957098481791167e-19,3.924646807718091e-05,2.507217523872729e-19,8.724439356719293e-20,1.38210587403545e-20,0.0025510203558951616,-5.204170427930421e-18,-0.0076530613005161285,-1.2468324983583301e-18,1.9849199169763205e-19,1.4772254600114998e-18,2.507217523872729e-19,0.0025510203558951616,3.7947076036992655e-19,-1.0755920785700084e-20,0.0012244897661730647,-1.2197274440461925e-18,-0.0008163265301845968,-0.00018838304094970226,5.082197683525802e-20,1.3383120566617945e-19,8.724439356719293e-20,3.7947076036992655e-19,0.000125588703667745,2.371692252312041e-20,0.0003188775444868952,-2.219226321806267e-19,-2.1129226271006924e-19,-0.0001594387722434476,1.7787691892340307e-20,1.7452383245049427e-20,1.38210587403545e-20,-1.0755920785700084e-20,2.371692252312041e-20,1.2264521501492709e-05,7.0,4.0,15.0,0.06853612512350082,-0.015639880672097206,-0.023928571492433548,-0.008185398764908314,0.0009920635493472219,0.002142857061699033,0.0006696428754366934,0.0023809524718672037,0.0010714285308495164,0.00026260505546815693,-0.015639880672097206,0.010372024029493332,0.002142857061699033,0.0006696428754366934,-0.0011904762359336019,-0.0007142857066355646,-0.00022321428696159273,1.6263032587282567e-18,-1.0299920638612292e-18,-1.0842021724855044e-19,-0.023928571492433548,0.002142857061699033,0.03261904790997505,0.0010714285308495164,4.9462366558033605e-20,-0.0014285714132711291,-1.1655173354219173e-18,-0.0071428571827709675,-0.0007142857066355646,-1.4463026828290944e-19,-0.008185398764908314,0.0006696428754366934,0.0010714285308495164,0.0023409652058035135,-5.014435047745458e-19,-5.421010862427522e-19,-9.566326480126008e-05,1.6805133673525319e-18,-0.0001530612207716331,-0.00012120232713641599,0.0009920635493472219,-0.0011904762359336019,4.9462366558033605e-20,-5.014435047745458e-19,0.00019841270113829523,-1.1957938777507656e-19,9.337030577565313e-20,-9.986905025817599e-20,7.115076756936123e-20,9.317362419797304e-21,0.002142857061699033,-0.0007142857066355646,-0.0014285714132711291,-5.421010862427522e-19,-1.1957938777507656e-19,0.0004761904710903764,7.792703114739563e-20,-1.1248597539537109e-18,3.3881317890172014e-21,1.6664758667882626e-20,0.0006696428754366934,-0.00022321428696159273,-1.1655173354219173e-18,-9.566326480126008e-05,9.337030577565313e-20,7.792703114739563e-20,3.188775372109376e-05,9.486769009248164e-20,8.046812998915853e-20,4.476370279774538e-21,0.0023809524718672037,1.6263032587282567e-18,-0.0071428571827709675,1.6805133673525319e-18,-9.986905025817599e-20,-1.1248597539537109e-18,9.486769009248164e-20,0.0023809524718672037,-1.0570971181733668e-18,-1.0129291082012818e-20,0.0010714285308495164,-1.0299920638612292e-18,-0.0007142857066355646,-0.0001530612207716331,7.115076756936123e-20,3.3881317890172014e-21,8.046812998915853e-20,-1.0570971181733668e-18,0.0001020408162730746,1.503483481376383e-20,0.00026260505546815693,-1.0842021724855044e-19,-1.4463026828290944e-19,-0.00012120232713641599,9.317362419797304e-21,1.6664758667882626e-20,4.476370279774538e-21,-1.0129291082012818e-20,1.503483481376383e-20,8.65730908117257e-06,7.0,4.0,16.0,0.06469275057315826,-0.014699317514896393,-0.022492121905088425,-0.007261029444634914,0.0009300595265813172,0.002008928684517741,0.0005908613675273955,0.0022321429569274187,0.0009453781531192362,0.0002188375365221873,-0.014699317514896393,0.009736081585288048,0.002008928684517741,0.0005908613675273955,-0.0011160714784637094,-0.0006696428754366934,-0.00019695378432516009,4.87890977618477e-18,-3.5236570605778894e-19,-8.580443755686062e-19,-0.022492121905088425,0.002008928684517741,0.030619747936725616,0.0009453781531192362,5.6782859532177464e-18,-0.0013392857508733869,-1.3552527156068805e-18,-0.0066964286379516125,-0.0006302521214820445,-1.6848403491367968e-18,-0.007261029444634914,0.0005908613675273955,0.0009453781531192362,0.001937274937517941,-1.0706496453294356e-18,-2.4123498337802474e-18,-7.878151518525556e-05,-6.559423143537302e-18,-0.00012605042138602585,-9.378751565236598e-05,0.0009300595265813172,-0.0011160714784637094,5.6782859532177464e-18,-1.0706496453294356e-18,0.00018601190822664648,-3.8106142868786602e-19,3.5893725535891354e-21,-1.179331458446706e-18,-7.538593230563273e-20,7.792703114739563e-20,0.002008928684517741,-0.0006696428754366934,-0.0013392857508733869,-2.4123498337802474e-18,-3.8106142868786602e-19,0.00044642857392318547,1.0164395367051604e-19,7.182839392716467e-19,1.9312351197398048e-19,1.216204817859453e-19,0.0005908613675273955,-0.00019695378432516009,-1.3552527156068805e-18,-7.878151518525556e-05,3.5893725535891354e-21,1.0164395367051604e-19,2.626050445542205e-05,1.7618285302889447e-19,6.606856988583543e-20,2.0918972792049856e-20,0.0022321429569274187,4.87890977618477e-18,-0.0066964286379516125,-6.559423143537302e-18,-1.179331458446706e-18,7.182839392716467e-19,1.7618285302889447e-19,0.0022321429569274187,5.827586677109586e-19,3.2929817201431094e-19,0.0009453781531192362,-3.5236570605778894e-19,-0.0006302521214820445,-0.00012605042138602585,-7.538593230563273e-20,1.9312351197398048e-19,6.606856988583543e-20,5.827586677109586e-19,8.403361425735056e-05,3.3881317890172014e-20,0.0002188375365221873,-8.580443755686062e-19,-1.6848403491367968e-18,-9.378751565236598e-05,7.792703114739563e-20,1.216204817859453e-19,2.0918972792049856e-20,3.2929817201431094e-19,3.3881317890172014e-20,6.252500952541595e-06,7.0,5.0,3.0,0.20606575906276703,-0.05595238134264946,-0.0724489763379097,-0.10357142984867096,0.003968254197388887,0.0071428571827709675,0.010714286006987095,0.006802720949053764,0.014285714365541935,0.014285714365541935,-0.05595238134264946,0.03928571566939354,0.0071428571827709675,0.010714286006987095,-0.004761904943734407,-0.0023809524718672037,-0.0035714285913854837,-3.979606293406509e-17,-4.7243447921565813e-17,-1.1279134400774606e-16,-0.0724489763379097,0.0071428571827709675,0.07704081386327744,0.014285714365541935,-3.0460181594713946e-17,-0.0035714285913854837,-3.225147760714448e-17,-0.013605441898107529,-0.0071428571827709675,-1.1917904445611735e-16,-0.10357142984867096,0.010714286006987095,0.014285714365541935,0.24642856419086456,-4.852345697993242e-17,-3.6508205287624014e-17,-0.010714286006987095,-6.995807900517817e-17,-0.014285714365541935,-0.08571428805589676,0.003968254197388887,-0.004761904943734407,-3.0460181594713946e-17,-4.852345697993242e-17,0.0007936508045531809,1.6263032587282567e-18,2.4288669762517062e-18,4.5315224566436314e-18,5.286776406212723e-18,1.3745618407998896e-17,0.0071428571827709675,-0.0023809524718672037,-0.0035714285913854837,-3.6508205287624014e-17,1.6263032587282567e-18,0.0011904762359336019,2.415395926385974e-18,3.660076100790441e-18,4.321794534643568e-18,9.516197613900963e-18,0.010714286006987095,-0.0035714285913854837,-3.225147760714448e-17,-0.010714286006987095,2.4288669762517062e-18,2.415395926385974e-18,0.0035714285913854837,4.5315224566436314e-18,5.2931667900350015e-18,9.69920139826097e-18,0.006802720949053764,-3.979606293406509e-17,-0.013605441898107529,-6.995807900517817e-17,4.5315224566436314e-18,3.660076100790441e-18,4.5315224566436314e-18,0.003401360474526882,5.524141673249102e-18,2.2657613523989076e-17,0.014285714365541935,-4.7243447921565813e-17,-0.0071428571827709675,-0.014285714365541935,5.286776406212723e-18,4.321794534643568e-18,5.2931667900350015e-18,5.524141673249102e-18,0.0071428571827709675,1.7617347775745473e-31,0.014285714365541935,-1.1279134400774606e-16,-1.1917904445611735e-16,-0.08571428805589676,1.3745618407998896e-17,9.516197613900963e-18,9.69920139826097e-18,2.2657613523989076e-17,1.7617347775745473e-31,0.04285714402794838,7.0,5.0,4.0,0.16937075555324554,-0.04357142746448517,-0.05647959187626839,-0.06642857193946838,0.0029761905316263437,0.0053571430034935474,0.006428571417927742,0.005102040711790323,0.008571428246796131,0.0071428571827709675,-0.04357142746448517,0.029999999329447746,0.0053571430034935474,0.006428571417927742,-0.0035714285913854837,-0.0017857142956927419,-0.002142857061699033,0.0,0.0,-0.0,-0.05647959187626839,0.0053571430034935474,0.05885203927755356,0.008571428246796131,0.0,-0.0026785715017467737,0.0,-0.010204081423580647,-0.004285714123398066,-0.0,-0.06642857193946838,0.006428571417927742,0.008571428246796131,0.09428571164608002,0.0,0.0,-0.004285714123398066,0.0,-0.0057142856530845165,-0.02142857201397419,0.0029761905316263437,-0.0035714285913854837,0.0,0.0,0.0005952381179668009,0.0,0.0,0.0,0.0,-0.0,0.0053571430034935474,-0.0017857142956927419,-0.0026785715017467737,0.0,0.0,0.0008928571478463709,0.0,0.0,0.0,-0.0,0.006428571417927742,-0.002142857061699033,0.0,-0.004285714123398066,0.0,0.0,0.0014285714132711291,0.0,0.0,-0.0,0.005102040711790323,0.0,-0.010204081423580647,0.0,0.0,0.0,0.0,0.0025510203558951616,0.0,-0.0,0.008571428246796131,0.0,-0.004285714123398066,-0.0057142856530845165,0.0,0.0,0.0,0.0,0.0028571428265422583,-0.0,0.0071428571827709675,-0.0,-0.0,-0.02142857201397419,-0.0,-0.0,-0.0,-0.0,-0.0,0.0071428571827709675,7.0,5.0,5.0,0.143945574760437,-0.0357142873108387,-0.04632652923464775,-0.04632652923464775,0.0023809524718672037,0.004285714123398066,0.004285714123398066,0.004081632476300001,0.0057142856530845165,0.004081632476300001,-0.0357142873108387,0.02428571507334709,0.004285714123398066,0.004285714123398066,-0.0028571428265422583,-0.0014285714132711291,-0.0014285714132711291,0.0,0.0,-0.0,-0.04632652923464775,0.004285714123398066,0.04765306040644646,0.0057142856530845165,0.0,-0.002142857061699033,0.0,-0.008163264952600002,-0.0028571428265422583,-0.0,-0.04632652923464775,0.004285714123398066,0.0057142856530845165,0.04765306040644646,0.0,0.0,-0.002142857061699033,0.0,-0.0028571428265422583,-0.008163264952600002,0.0023809524718672037,-0.0028571428265422583,0.0,0.0,0.0004761904710903764,0.0,0.0,0.0,0.0,-0.0,0.004285714123398066,-0.0014285714132711291,-0.002142857061699033,0.0,0.0,0.0007142857066355646,0.0,0.0,0.0,-0.0,0.004285714123398066,-0.0014285714132711291,0.0,-0.002142857061699033,0.0,0.0,0.0007142857066355646,0.0,0.0,-0.0,0.004081632476300001,0.0,-0.008163264952600002,0.0,0.0,0.0,0.0,0.0020408162381500006,0.0,-0.0,0.0057142856530845165,0.0,-0.0028571428265422583,-0.0028571428265422583,0.0,0.0,0.0,0.0,0.0014285714132711291,-0.0,0.004081632476300001,-0.0,-0.0,-0.008163264952600002,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,7.0,5.0,6.0,0.12522675096988678,-0.0302721094340086,-0.03928571566939354,-0.034183673560619354,0.0019841270986944437,0.0035714285913854837,0.0030612244736403227,0.003401360474526882,0.004081632476300001,0.0025510203558951616,-0.0302721094340086,0.020408162847161293,0.0035714285913854837,0.0030612244736403227,-0.0023809524718672037,-0.0011904762359336019,-0.0010204081190750003,-1.7470430077118044e-17,-6.46718133829937e-18,2.222614453595284e-18,-0.03928571566939354,0.0035714285913854837,0.04005102068185806,0.004081632476300001,-1.439837227196348e-17,-0.0017857142956927419,-1.5178830414797062e-18,-0.006802720949053764,-0.0020408162381500006,6.179952383167375e-18,-0.034183673560619354,0.0030612244736403227,0.004081632476300001,0.027704082429409027,-3.146512332090462e-19,-9.606599562661424e-19,-0.0012244897661730647,9.41038466994318e-18,-0.0016326530603691936,-0.0038265306502580643,0.0019841270986944437,-0.0023809524718672037,-1.439837227196348e-17,-3.146512332090462e-19,0.00039682540227659047,8.260588005460409e-19,-1.1228883919147152e-20,2.2657612283218157e-18,7.199184481620515e-19,-2.4196069477881165e-19,0.0035714285913854837,-0.0011904762359336019,-0.0017857142956927419,-9.606599562661424e-19,8.260588005460409e-19,0.0005952381179668009,2.80605823364859e-19,1.8300380503952205e-18,6.35774275831919e-19,-2.1241512161751876e-19,0.0030612244736403227,-0.0010204081190750003,-1.5178830414797062e-18,-0.0012244897661730647,-1.1228883919147152e-20,2.80605823364859e-19,0.0004081632650922984,-6.473603361780078e-20,1.6263032587282567e-19,-2.439454888092385e-19,0.003401360474526882,-1.7470430077118044e-17,-0.006802720949053764,9.41038466994318e-18,2.2657612283218157e-18,1.8300380503952205e-18,-6.473603361780078e-20,0.001700680237263441,-2.910038972549568e-19,-1.4161008452493172e-18,0.004081632476300001,-6.46718133829937e-18,-0.0020408162381500006,-0.0016326530603691936,7.199184481620515e-19,6.35774275831919e-19,1.6263032587282567e-19,-2.910038972549568e-19,0.0008163265301845968,0.0,0.0025510203558951616,2.222614453595284e-18,6.179952383167375e-18,-0.0038265306502580643,-2.4196069477881165e-19,-2.1241512161751876e-19,-2.439454888092385e-19,-1.4161008452493172e-18,0.0,0.0007653061184100807,7.0,5.0,7.0,0.11084791272878647,-0.0262755099684,-0.03411078825592995,-0.0262755099684,0.001700680237263441,0.0030612244736403227,0.002295918297022581,0.0029154520016163588,0.0030612244736403227,0.001700680237263441,-0.0262755099684,0.017602041363716125,0.0030612244736403227,0.002295918297022581,-0.0020408162381500006,-0.0010204081190750003,-0.0007653061184100807,-1.3656813951796428e-17,-4.9710043432736676e-18,8.673617379884035e-19,-0.03411078825592995,0.0030612244736403227,0.03454810380935669,0.0030612244736403227,-1.1794964396198797e-17,-0.0015306122368201613,7.318364664277155e-19,-0.0058309040032327175,-0.0015306122368201613,2.168404344971009e-18,-0.0262755099684,0.002295918297022581,0.0030612244736403227,0.017602041363716125,-1.9162521905094786e-18,-1.6060584268263276e-18,-0.0007653061184100807,6.25363308264023e-18,-0.0010204081190750003,-0.0020408162381500006,0.001700680237263441,-0.0020408162381500006,-1.1794964396198797e-17,-1.9162521905094786e-18,0.0003401360590942204,3.965082252960754e-19,4.4401203818991085e-20,1.9420811119316e-18,6.436035920285217e-19,5.1108158708981493e-20,0.0030612244736403227,-0.0010204081190750003,-0.0015306122368201613,-1.6060584268263276e-18,3.965082252960754e-19,0.0005102040595375001,2.826332688956206e-19,1.5686039988826562e-18,3.7907929714503583e-19,-9.388908478887775e-34,0.002295918297022581,-0.0007653061184100807,7.318364664277155e-19,-0.0007653061184100807,4.4401203818991085e-20,2.826332688956206e-19,0.00025510202976875007,-4.855202779829e-19,1.3552527156068805e-20,-4.87890977618477e-19,0.0029154520016163588,-1.3656813951796428e-17,-0.0058309040032327175,6.25363308264023e-18,1.9420811119316e-18,1.5686039988826562e-18,-4.855202779829e-19,0.0014577260008081794,-2.946150317672395e-19,-5.394669812808654e-19,0.0030612244736403227,-4.9710043432736676e-18,-0.0015306122368201613,-0.0010204081190750003,6.436035920285217e-19,3.7907929714503583e-19,1.3552527156068805e-20,-2.946150317672395e-19,0.0005102040595375001,1.3552527156068805e-20,0.001700680237263441,8.673617379884035e-19,2.168404344971009e-18,-0.0020408162381500006,5.1108158708981493e-20,-9.388908478887775e-34,-4.87890977618477e-19,-5.394669812808654e-19,1.3552527156068805e-20,0.0003401360590942204,7.0,5.0,8.0,0.09944728016853333,-0.02321428619325161,-0.03014455735683441,-0.02083333395421505,0.0014880952658131719,0.0026785715017467737,0.0017857142956927419,0.0025510203558951616,0.0023809524718672037,0.0011904762359336019,-0.02321428619325161,0.015476190485060215,0.0026785715017467737,0.0017857142956927419,-0.0017857142956927419,-0.0008928571478463709,-0.0005952381179668009,0.0,-2.710505431213761e-20,-2.710505431213761e-19,-0.03014455735683441,0.0026785715017467737,0.030378401279449463,0.0023809524718672037,-4.367522681567936e-20,-0.0013392857508733869,0.0,-0.005102040711790323,-0.0011904762359336019,2.710505431213761e-20,-0.02083333395421505,0.0017857142956927419,0.0023809524718672037,0.011904762126505375,-1.9425997412509737e-20,-0.0,-0.0005102040595375001,-0.0,-0.0006802721181884408,-0.0011904762359336019,0.0014880952658131719,-0.0017857142956927419,-4.367522681567936e-20,-1.9425997412509737e-20,0.00029761905898340046,-1.84456954903742e-21,-7.907594624414057e-21,0.0,2.775142487501391e-21,5.1557937359263635e-21,0.0026785715017467737,-0.0008928571478463709,-0.0013392857508733869,-0.0,-1.84456954903742e-21,0.00044642857392318547,3.375511630120799e-21,0.0,1.3040816134212142e-22,1.6646188907417273e-21,0.0017857142956927419,-0.0005952381179668009,0.0,-0.0005102040595375001,-7.907594624414057e-21,3.375511630120799e-21,0.0001700680295471102,0.0,-1.0071542929653785e-21,6.776263578034403e-20,0.0025510203558951616,0.0,-0.005102040711790323,-0.0,0.0,0.0,0.0,0.0012755101779475808,0.0,0.0,0.0023809524718672037,-2.710505431213761e-20,-0.0011904762359336019,-0.0006802721181884408,2.775142487501391e-21,1.3040816134212142e-22,-1.0071542929653785e-21,0.0,0.0003401360590942204,0.0,0.0011904762359336019,-2.710505431213761e-19,2.710505431213761e-20,-0.0011904762359336019,5.1557937359263635e-21,1.6646188907417273e-21,6.776263578034403e-20,0.0,0.0,0.0001700680295471102,7.0,5.0,9.0,0.0901820957660675,-0.020793650299310684,-0.027006803080439568,-0.01692640781402588,0.0013227512827143073,0.0023809524718672037,0.0014285714132711291,0.0022675737272948027,0.0019047618843615055,0.0008658008882775903,-0.020793650299310684,0.013809523545205593,0.0023809524718672037,0.0014285714132711291,-0.0015873016091063619,-0.0007936508045531809,-0.0004761904710903764,-0.0,1.3552527156068805e-20,5.421010862427522e-20,-0.027006803080439568,0.0023809524718672037,0.027108844369649887,0.0019047618843615055,0.0,-0.0011904762359336019,1.3552527156068805e-20,-0.004535147454589605,-0.0009523809421807528,5.421010862427522e-20,-0.01692640781402588,0.0014285714132711291,0.0019047618843615055,0.008436920121312141,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0004761904710903764,-0.000742115022148937,0.0013227512827143073,-0.0015873016091063619,0.0,-0.0,0.00026455026818439364,0.0,0.0,0.0,0.0,0.0,0.0023809524718672037,-0.0007936508045531809,-0.0011904762359336019,-0.0,0.0,0.00039682540227659047,0.0,0.0,0.0,0.0,0.0014285714132711291,-0.0004761904710903764,1.3552527156068805e-20,-0.0003571428533177823,0.0,0.0,0.0001190476177725941,0.0,-3.3881317890172014e-21,-6.776263578034403e-21,0.0022675737272948027,-0.0,-0.004535147454589605,-0.0,0.0,0.0,0.0,0.0011337868636474013,0.0,0.0,0.0019047618843615055,1.3552527156068805e-20,-0.0009523809421807528,-0.0004761904710903764,0.0,0.0,-3.3881317890172014e-21,0.0,0.0002380952355451882,-1.3552527156068805e-20,0.0008658008882775903,5.421010862427522e-20,5.421010862427522e-20,-0.000742115022148937,0.0,0.0,-6.776263578034403e-21,0.0,-1.3552527156068805e-20,9.276437776861712e-05,7.0,5.0,10.0,0.08250154554843903,-0.018831169232726097,-0.024461966007947922,-0.014025974087417126,0.0011904762359336019,0.002142857061699033,0.0011688311351463199,0.0020408162381500006,0.0015584415523335338,0.0006493506371043622,-0.018831169232726097,0.01246753241866827,0.002142857061699033,0.0011688311351463199,-0.0014285714132711291,-0.0007142857066355646,-0.00038961038808338344,-0.0,0.0,-6.776263578034403e-20,-0.024461966007947922,0.002142857061699033,0.024475881829857826,0.0015584415523335338,0.0,-0.0010714285308495164,-1.3552527156068805e-20,-0.004081632476300001,-0.0007792207761667669,-2.710505431213761e-20,-0.014025974087417126,0.0011688311351463199,0.0015584415523335338,0.0062012989073991776,-0.0,-0.0,-0.0002597402490209788,-0.0,-0.00034632033202797174,-0.0004870129923801869,0.0011904762359336019,-0.0014285714132711291,0.0,-0.0,0.0002380952355451882,0.0,0.0,0.0,0.0,0.0,0.002142857061699033,-0.0007142857066355646,-0.0010714285308495164,-0.0,0.0,0.0003571428533177823,0.0,0.0,0.0,0.0,0.0011688311351463199,-0.00038961038808338344,-1.3552527156068805e-20,-0.0002597402490209788,0.0,0.0,8.658008300699294e-05,0.0,0.0,1.6940658945086007e-20,0.0020408162381500006,-0.0,-0.004081632476300001,-0.0,0.0,0.0,0.0,0.0010204081190750003,0.0,0.0,0.0015584415523335338,0.0,-0.0007792207761667669,-0.00034632033202797174,0.0,0.0,0.0,0.0,0.00017316016601398587,-3.3881317890172014e-21,0.0006493506371043622,-6.776263578034403e-20,-2.710505431213761e-20,-0.0004870129923801869,0.0,0.0,1.6940658945086007e-20,0.0,-3.3881317890172014e-21,5.411255551734939e-05,7.0,5.0,11.0,0.07602991908788681,-0.017207792028784752,-0.022356215864419937,-0.011813187040388584,0.0010822510812431574,0.0019480519695207477,0.0009740259847603738,0.001855287584476173,0.0012987012742087245,0.0004995004856027663,-0.017207792028784752,0.011363636702299118,0.0019480519695207477,0.0009740259847603738,-0.0012987012742087245,-0.0006493506371043622,-0.0003246753185521811,-0.0,6.776263578034403e-21,1.3552527156068805e-20,-0.022356215864419937,0.0019480519695207477,0.022309832274913788,0.0012987012742087245,0.0,-0.0009740259847603738,1.3552527156068805e-20,-0.003710575168952346,-0.0006493506371043622,0.0,-0.011813187040388584,0.0009740259847603738,0.0012987012742087245,0.00469363946467638,-0.0,-0.0,-0.00019480519404169172,-0.0,-0.0002597402490209788,-0.0003330003237351775,0.0010822510812431574,-0.0012987012742087245,0.0,-0.0,0.00021645022206939757,0.0,0.0,0.0,0.0,0.0,0.0019480519695207477,-0.0006493506371043622,-0.0009740259847603738,-0.0,0.0,0.0003246753185521811,0.0,0.0,0.0,0.0,0.0009740259847603738,-0.0003246753185521811,1.3552527156068805e-20,-0.00019480519404169172,0.0,0.0,6.49350622552447e-05,0.0,-1.6940658945086007e-21,0.0,0.001855287584476173,-0.0,-0.003710575168952346,-0.0,0.0,0.0,0.0,0.0009276437922380865,0.0,0.0,0.0012987012742087245,6.776263578034403e-21,-0.0006493506371043622,-0.0002597402490209788,0.0,0.0,-1.6940658945086007e-21,0.0,0.0001298701245104894,0.0,0.0004995004856027663,1.3552527156068805e-20,0.0,-0.0003330003237351775,0.0,0.0,0.0,0.0,0.0,3.330003164592199e-05,7.0,5.0,12.0,0.0705019161105156,-0.015842491760849953,-0.020584773272275925,-0.010086342692375183,0.0009920635493472219,0.0017857142956927419,0.0008241758332587779,0.001700680237263441,0.001098901149816811,0.0003924646880477667,-0.015842491760849953,0.010439560748636723,0.0017857142956927419,0.0008241758332587779,-0.0011904762359336019,-0.0005952381179668009,-0.00027472528745420277,-1.0733601507606494e-17,-1.1926223897340549e-18,-7.792703114739563e-20,-0.020584773272275925,0.0017857142956927419,0.020496467128396034,0.001098901149816811,-8.023096076392733e-18,-0.0008928571478463709,1.3552527156068805e-20,-0.003401360474526882,-0.0005494505749084055,3.2864878353466853e-19,-0.010086342692375183,0.0008241758332587779,0.001098901149816811,0.003639217931777239,-1.111307226797642e-18,4.336808689942018e-19,-0.00014985015150159597,-6.505213034913027e-19,-0.00019980019715148956,-0.00023547880118712783,0.0009920635493472219,-0.0011904762359336019,-8.023096076392733e-18,-1.111307226797642e-18,0.00019841270113829523,3.323559743955839e-19,7.25142843362754e-20,1.3592110850306765e-18,2.298984368938337e-19,4.489274620447792e-20,0.0017857142956927419,-0.0005952381179668009,-0.0008928571478463709,4.336808689942018e-19,3.323559743955839e-19,0.00029761905898340046,-5.421010862427522e-20,7.250602028496811e-19,4.743384504624082e-20,-2.294555559928197e-20,0.0008241758332587779,-0.00027472528745420277,1.3552527156068805e-20,-0.00014985015150159597,7.25142843362754e-20,-5.421010862427522e-20,4.995004928787239e-05,1.2536087619363645e-19,-4.912791094074942e-20,-1.5408248699194703e-20,0.001700680237263441,-1.0733601507606494e-17,-0.003401360474526882,-6.505213034913027e-19,1.3592110850306765e-18,7.250602028496811e-19,1.2536087619363645e-19,0.0008503401186317205,1.9989977555201488e-19,-2.3526712987498694e-20,0.001098901149816811,-1.1926223897340549e-18,-0.0005494505749084055,-0.00019980019715148956,2.298984368938337e-19,4.743384504624082e-20,-4.912791094074942e-20,1.9989977555201488e-19,9.990009857574478e-05,-2.2957775900362734e-20,0.0003924646880477667,-7.792703114739563e-20,3.2864878353466853e-19,-0.00023547880118712783,4.489274620447792e-20,-2.294555559928197e-20,-1.5408248699194703e-20,-2.3526712987498694e-20,-2.2957775900362734e-20,2.1407164240372367e-05,7.0,5.0,13.0,0.06572475284337997,-0.014678179286420345,-0.019073782488703728,-0.008712715469300747,0.0009157509193755686,0.0016483516665175557,0.0007064364035613835,0.0015698587521910667,0.0009419152047485113,0.00031397174461744726,-0.014678179286420345,0.009654630906879902,0.0016483516665175557,0.0007064364035613835,-0.001098901149816811,-0.0005494505749084055,-0.00023547880118712783,1.2197274440461925e-17,1.8973538018496328e-18,8.267041565201971e-19,-0.019073782488703728,0.0016483516665175557,0.01895604468882084,0.0009419152047485113,4.845028458294598e-18,-0.0008241758332587779,2.6495190590114515e-18,-0.0031397175043821335,-0.00047095760237425566,3.2695471764015993e-19,-0.008712715469300747,0.0007064364035613835,0.0009419152047485113,0.002879263600334525,1.1384122811097797e-18,1.599198204416119e-18,-0.00011773940059356391,3.686287386450715e-18,-0.00015698587230872363,-0.00017125731392297894,0.0009157509193755686,-0.001098901149816811,4.845028458294598e-18,1.1384122811097797e-18,0.00018315018678549677,-7.158490814398086e-20,1.0511374369562871e-19,-8.598069423575919e-19,-1.581507938890301e-19,-8.724439356719293e-20,0.0016483516665175557,-0.0005494505749084055,-0.0008241758332587779,1.599198204416119e-18,-7.158490814398086e-20,0.00027472528745420277,-9.486769009248164e-20,-1.836367429647323e-18,-2.574980159653073e-19,-5.77797677836566e-20,0.0007064364035613835,-0.00023547880118712783,2.6495190590114515e-18,-0.00011773940059356391,1.0511374369562871e-19,-9.486769009248164e-20,3.924646807718091e-05,-4.573977915173222e-19,-6.776263578034403e-20,-2.454304977286214e-20,0.0015698587521910667,1.2197274440461925e-17,-0.0031397175043821335,3.686287386450715e-18,-8.598069423575919e-19,-1.836367429647323e-18,-4.573977915173222e-19,0.0007849293760955334,-7.555533889508359e-19,-3.6569212210094667e-20,0.0009419152047485113,1.8973538018496328e-18,-0.00047095760237425566,-0.00015698587230872363,-1.581507938890301e-19,-2.574980159653073e-19,-6.776263578034403e-20,-7.555533889508359e-19,7.849293615436181e-05,2.768698112372685e-21,0.00031397174461744726,8.267041565201971e-19,3.2695471764015993e-19,-0.00017125731392297894,-8.724439356719293e-20,-5.77797677836566e-20,-2.454304977286214e-20,-3.6569212210094667e-20,2.768698112372685e-21,1.4271442523750011e-05,7.0,5.0,14.0,0.061554908752441406,-0.013673469424247742,-0.01776967942714691,-0.007602040655910969,0.0008503401186317205,0.0015306122368201613,0.0006122448830865324,0.0014577260008081794,0.0008163265301845968,0.00025510202976875007,-0.013673469424247742,0.00897959154099226,0.0015306122368201613,0.0006122448830865324,-0.0010204081190750003,-0.0005102040595375001,-0.0002040816325461492,-2.2768245622195593e-18,-7.589415207398531e-19,-7.792703114739563e-20,-0.01776967942714691,0.0015306122368201613,0.01763119548559189,0.0008163265301845968,-2.392021043046144e-18,-0.0007653061184100807,-3.2526065174565133e-19,-0.0029154520016163588,-0.0004081632650922984,3.1001405869507392e-19,-0.007602040655910969,0.0006122448830865324,0.0008163265301845968,0.0023175040259957314,-6.369687763352339e-19,1.3552527156068805e-19,-9.419152047485113e-05,6.505213034913027e-19,-0.000125588703667745,-0.00012755101488437504,0.0008503401186317205,-0.0010204081190750003,-2.392021043046144e-18,-6.369687763352339e-19,0.0001700680295471102,1.8821351002953349e-19,1.0134866957888022e-19,3.0037531075790563e-19,6.689258394760602e-20,8.893845946170154e-21,0.0015306122368201613,-0.0005102040595375001,-0.0007653061184100807,1.3552527156068805e-19,1.8821351002953349e-19,0.00025510202976875007,1.1858461261560205e-20,1.6940658945086007e-19,3.3881317890172014e-20,-1.9148252134799452e-20,0.0006122448830865324,-0.0002040816325461492,-3.2526065174565133e-19,-9.419152047485113e-05,1.0134866957888022e-19,1.1858461261560205e-20,3.139717591693625e-05,1.0164395367051604e-20,3.3881317890172014e-20,2.4297259193073116e-21,0.0014577260008081794,-2.2768245622195593e-18,-0.0029154520016163588,6.505213034913027e-19,3.0037531075790563e-19,1.6940658945086007e-19,1.0164395367051604e-20,0.0007288630004040897,4.0657581468206416e-20,-6.097973537036359e-20,0.0008163265301845968,-7.589415207398531e-19,-0.0004081632650922984,-0.000125588703667745,6.689258394760602e-20,3.3881317890172014e-20,3.3881317890172014e-20,4.0657581468206416e-20,6.27943518338725e-05,-2.91398150194931e-22,0.00025510202976875007,-7.792703114739563e-20,3.1001405869507392e-19,-0.00012755101488437504,8.893845946170154e-21,-1.9148252134799452e-20,2.4297259193073116e-21,-6.097973537036359e-20,-2.91398150194931e-22,9.811617019295227e-06,7.0,5.0,15.0,0.05788331851363182,-0.012797619216144085,-0.016632653772830963,-0.0066911764442920685,0.0007936508045531809,0.0014285714132711291,0.0005357142654247582,0.0013605442363768816,0.0007142857066355646,0.0002100840356433764,-0.012797619216144085,0.008392857387661934,0.0014285714132711291,0.0005357142654247582,-0.0009523809421807528,-0.0004761904710903764,-0.00017857142665889114,-4.065758146820642e-18,3.7947076036992655e-19,1.1604351377383915e-18,-0.016632653772830963,0.0014285714132711291,0.01647959090769291,0.0007142857066355646,-3.1170812458958252e-18,-0.0007142857066355646,4.845028458294598e-19,-0.002721088472753763,-0.0003571428533177823,1.7211709488207383e-18,-0.0066911764442920685,0.0005357142654247582,0.0007142857066355646,0.001893180306069553,1.5043305143236374e-18,2.222614453595284e-18,-7.653061038581654e-05,5.149960319306146e-18,-0.0001020408162730746,-9.696186316432431e-05,0.0007936508045531809,-0.0009523809421807528,-3.1170812458958252e-18,1.5043305143236374e-18,0.00015873015217948705,2.7029181170451184e-19,6.880244704676293e-20,5.5196495655350565e-19,-4.939892325907921e-21,-1.0926725019580474e-19,0.0014285714132711291,-0.0004761904710903764,-0.0007142857066355646,2.222614453595284e-18,2.7029181170451184e-19,0.0002380952355451882,-5.251604272976662e-20,4.946672411965114e-19,-8.470329472543003e-20,-1.2588866912323357e-19,0.0005357142654247582,-0.00017857142665889114,4.845028458294598e-19,-7.653061038581654e-05,6.880244704676293e-20,-5.251604272976662e-20,2.551020406826865e-05,-3.5575383784680614e-20,-2.1175823681357508e-20,-2.4486059936714077e-20,0.0013605442363768816,-4.065758146820642e-18,-0.002721088472753763,5.149960319306146e-18,5.5196495655350565e-19,4.946672411965114e-19,-3.5575383784680614e-20,0.0006802721181884408,-5.72594272343907e-19,-2.592817017093072e-19,0.0007142857066355646,3.7947076036992655e-19,-0.0003571428533177823,-0.0001020408162730746,-4.939892325907921e-21,-8.470329472543003e-20,-2.1175823681357508e-20,-5.72594272343907e-19,5.10204081365373e-05,-3.1939372461710266e-20,0.0002100840356433764,1.1604351377383915e-18,1.7211709488207383e-18,-9.696186316432431e-05,-1.0926725019580474e-19,-1.2588866912323357e-19,-2.4486059936714077e-20,-2.592817017093072e-19,-3.1939372461710266e-20,6.925847173988586e-06,7.0,5.0,16.0,0.05462560057640076,-0.012027311138808727,-0.015632502734661102,-0.005934874061495066,0.0007440476329065859,0.0013392857508733869,0.0004726890765596181,0.0012755101779475808,0.0006302521214820445,0.00017507003212813288,-0.012027311138808727,0.007878151722252369,0.0013392857508733869,0.0004726890765596181,-0.0008928571478463709,-0.00044642857392318547,-0.00015756303037051111,2.2768245622195593e-18,2.710505431213761e-19,3.6761229910836635e-19,-0.015632502734661102,0.0013392857508733869,0.01546931266784668,0.0006302521214820445,8.673617379884035e-19,-0.0006696428754366934,5.04831636563563e-19,-0.0025510203558951616,-0.00031512606074102223,5.166900978251232e-19,-0.005934874061495066,0.0004726890765596181,0.0006302521214820445,0.0015666265971958637,5.014435047745458e-19,8.131516293641283e-19,-6.302521069301292e-05,1.6805133673525319e-18,-8.403361425735056e-05,-7.503000961150974e-05,0.0007440476329065859,-0.0008928571478463709,8.673617379884035e-19,5.014435047745458e-19,0.00014880952949170023,5.628770197967286e-20,-5.0773307272849505e-21,-2.6098954533089363e-19,-1.1260393522813027e-20,-3.176373552203626e-20,0.0013392857508733869,-0.00044642857392318547,-0.0006696428754366934,8.131516293641283e-19,5.628770197967286e-20,0.00022321428696159273,-2.202285662861181e-20,-4.743384504624082e-20,-4.743384504624082e-20,-4.189724409426211e-20,0.0004726890765596181,-0.00015756303037051111,5.04831636563563e-19,-6.302521069301292e-05,-5.0773307272849505e-21,-2.202285662861181e-20,2.100840356433764e-05,-8.809142651444724e-20,-1.2705494208814505e-20,-9.629523742427337e-21,0.0012755101779475808,2.2768245622195593e-18,-0.0025510203558951616,1.6805133673525319e-18,-2.6098954533089363e-19,-4.743384504624082e-20,-8.809142651444724e-20,0.0006377550889737904,-1.4230153513872246e-19,-6.917928597691766e-20,0.0006302521214820445,2.710505431213761e-19,-0.00031512606074102223,-8.403361425735056e-05,-1.1260393522813027e-20,-4.743384504624082e-20,-1.2705494208814505e-20,-1.4230153513872246e-19,4.201680712867528e-05,-1.0466328407536963e-20,0.00017507003212813288,3.6761229910836635e-19,5.166900978251232e-19,-7.503000961150974e-05,-3.176373552203626e-20,-4.189724409426211e-20,-9.629523742427337e-21,-6.917928597691766e-20,-1.0466328407536963e-20,5.002000762033276e-06,7.0,6.0,3.0,0.17994141578674316,-0.047477323561906815,-0.0535714291036129,-0.08801020681858063,0.003306878264993429,0.005102040711790323,0.008928571827709675,0.004251700825989246,0.010204081423580647,0.011904762126505375,-0.047477323561906815,0.03302154317498207,0.005102040711790323,0.008928571827709675,-0.003968254197388887,-0.001700680237263441,-0.0029761905316263437,-5.79526873057714e-19,1.655566655056331e-21,3.545657569380682e-33,-0.0535714291036129,0.005102040711790323,0.04481292515993118,0.010204081423580647,8.267043374659561e-20,-0.0020408162381500006,-2.1533722760424183e-19,-0.0063775512389838696,-0.004081632476300001,3.1662204064929054e-17,-0.08801020681858063,0.008928571827709675,0.010204081423580647,0.20705781877040863,4.4811679273273453e-20,-1.4722282034371255e-19,-0.008928571827709675,1.449703672106758e-17,-0.010204081423580647,-0.0714285746216774,0.003306878264993429,-0.003968254197388887,8.267043374659561e-20,4.4811679273273453e-20,0.0006613756413571537,-5.888685856067933e-20,-2.3828619370796344e-20,-1.062311851355215e-21,1.0669671050970092e-20,-1.4682732594136561e-34,0.005102040711790323,-0.001700680237263441,-0.0020408162381500006,-1.4722282034371255e-19,-5.888685856067933e-20,0.0006802721181884408,7.274374940807643e-20,2.8004667512016727e-19,-2.840337244467641e-20,-1.026929129951628e-33,0.008928571827709675,-0.0029761905316263437,-2.1533722760424183e-19,-0.008928571827709675,-2.3828619370796344e-20,7.274374940807643e-20,0.0029761905316263437,-5.33295265965469e-22,-3.3540004934421784e-35,-2.3957145971749952e-35,0.004251700825989246,-5.79526873057714e-19,-0.0063775512389838696,1.449703672106758e-17,-1.062311851355215e-21,2.8004667512016727e-19,-5.33295265965469e-22,0.0012755101779475808,-1.2666519526302538e-18,-5.664403380997269e-18,0.010204081423580647,1.655566655056331e-21,-0.004081632476300001,-0.010204081423580647,1.0669671050970092e-20,-2.840337244467641e-20,-3.3540004934421784e-35,-1.2666519526302538e-18,0.004081632476300001,-3.340188607508781e-18,0.011904762126505375,3.545657569380682e-33,3.1662204064929054e-17,-0.0714285746216774,-1.4682732594136561e-34,-1.026929129951628e-33,-2.3957145971749952e-35,-5.664403380997269e-18,-3.340188607508781e-18,0.0357142873108387,7.0,6.0,4.0,0.14756235480308533,-0.036947280168533325,-0.041709184646606445,-0.05637755244970322,0.0024801588151603937,0.0038265306502580643,0.0053571430034935474,0.0031887756194919348,0.006122448947280645,0.0059523810632526875,-0.036947280168533325,0.025212585926055908,0.0038265306502580643,0.0053571430034935474,-0.0029761905316263437,-0.0012755101779475808,-0.0017857142956927419,-4.890250422382872e-19,-6.989451286344046e-19,-2.9738117026452626e-18,-0.041709184646606445,0.0038265306502580643,0.034221939742565155,0.006122448947280645,-3.695706621332827e-20,-0.0015306122368201613,-6.90701601746066e-19,-0.00478316331282258,-0.0024489795323461294,7.23721411028264e-18,-0.05637755244970322,0.0053571430034935474,0.006122448947280645,0.07925169914960861,-1.1913665227690462e-19,-3.1296113519653844e-20,-0.0035714285913854837,7.630444192961774e-18,-0.004081632476300001,-0.01785714365541935,0.0024801588151603937,-0.0029761905316263437,-3.695706621332827e-20,-1.1913665227690462e-19,0.0004960317746736109,2.8735605014064357e-20,3.726000495680448e-20,5.095472559108214e-21,2.94265362973709e-21,6.068793217229232e-35,0.0038265306502580643,-0.0012755101779475808,-0.0015306122368201613,-3.1296113519653844e-20,2.8735605014064357e-20,0.0005102040595375001,9.53906136424572e-21,2.0943911964400903e-19,1.0715717909615124e-21,-3.999055199548942e-34,0.0053571430034935474,-0.0017857142956927419,-6.90701601746066e-19,-0.0035714285913854837,3.726000495680448e-20,9.53906136424572e-21,0.0011904762359336019,-2.7741707118403547e-21,4.514259610849956e-19,1.9825412040285595e-18,0.0031887756194919348,-4.890250422382872e-19,-0.00478316331282258,7.630444192961774e-18,5.095472559108214e-21,2.0943911964400903e-19,-2.7741707118403547e-21,0.0009566326625645161,-6.697991612571572e-19,-1.9825412040285595e-18,0.006122448947280645,-6.989451286344046e-19,-0.0024489795323461294,-0.004081632476300001,2.94265362973709e-21,1.0715717909615124e-21,4.514259610849956e-19,-6.697991612571572e-19,0.0016326530603691936,1.783660721786363e-18,0.0059523810632526875,-2.9738117026452626e-18,7.23721411028264e-18,-0.01785714365541935,6.068793217229232e-35,-3.999055199548942e-34,1.9825412040285595e-18,-1.9825412040285595e-18,1.783660721786363e-18,0.0059523810632526875,7.0,6.0,5.0,0.12522675096988678,-0.0302721094340086,-0.034183673560619354,-0.03928571566939354,0.0019841270986944437,0.0030612244736403227,0.0035714285913854837,0.0025510203558951616,0.004081632476300001,0.003401360474526882,-0.0302721094340086,0.020408162847161293,0.0030612244736403227,0.0035714285913854837,-0.0023809524718672037,-0.0010204081190750003,-0.0011904762359336019,-3.2526065174565133e-19,-8.538092108323347e-18,-2.1354592300981244e-17,-0.034183673560619354,0.0030612244736403227,0.027704082429409027,0.004081632476300001,-3.7380069576481697e-19,-0.0012244897661730647,-9.237003477649002e-18,-0.0038265306502580643,-0.0016326530603691936,-2.5398357369675325e-17,-0.03928571566939354,0.0035714285913854837,0.004081632476300001,0.04005102068185806,-1.439375825850666e-17,-9.84021253164411e-18,-0.0017857142956927419,-1.962405932198763e-17,-0.0020408162381500006,-0.006802720949053764,0.0019841270986944437,-0.0023809524718672037,-3.7380069576481697e-19,-1.439375825850666e-17,0.00039682540227659047,-1.609614631376058e-20,8.209753620915963e-19,-2.299381932620245e-19,7.241729482451414e-19,2.2657612283218157e-18,0.0030612244736403227,-0.0010204081190750003,-0.0012244897661730647,-9.84021253164411e-18,-1.609614631376058e-20,0.0004081632650922984,4.402548352136787e-19,-2.168404344971009e-19,6.369687763352339e-19,1.4889288249082063e-18,0.0035714285913854837,-0.0011904762359336019,-9.237003477649002e-18,-0.0017857142956927419,8.209753620915963e-19,4.402548352136787e-19,0.0005952381179668009,1.0620756080875938e-18,1.0763543998214842e-18,1.8300380503952205e-18,0.0025510203558951616,-3.2526065174565133e-19,-0.0038265306502580643,-1.962405932198763e-17,-2.299381932620245e-19,-2.168404344971009e-19,1.0620756080875938e-18,0.0007653061184100807,8.944667923005412e-19,3.15588180688885e-18,0.004081632476300001,-8.538092108323347e-18,-0.0016326530603691936,-0.0020408162381500006,7.241729482451414e-19,6.369687763352339e-19,1.0763543998214842e-18,8.944667923005412e-19,0.0008163265301845968,2.3171365889868717e-18,0.003401360474526882,-2.1354592300981244e-17,-2.5398357369675325e-17,-0.006802720949053764,2.2657612283218157e-18,1.4889288249082063e-18,1.8300380503952205e-18,3.15588180688885e-18,2.3171365889868717e-18,0.001700680237263441,7.0,6.0,6.0,0.1088300421833992,-0.025651928037405014,-0.028972303494811058,-0.028972303494811058,0.0016534391324967146,0.0025510203558951616,0.0025510203558951616,0.002125850412994623,0.0029154520016163588,0.002125850412994623,-0.025651928037405014,0.01714852638542652,0.0025510203558951616,0.0025510203558951616,-0.0019841270986944437,-0.0008503401186317205,-0.0008503401186317205,-2.168404344971009e-19,1.552283389354861e-19,-2.710505431213761e-19,-0.028972303494811058,0.0025510203558951616,0.023281097412109375,0.0029154520016163588,8.582266396467035e-20,-0.0010204081190750003,5.421010862427522e-20,-0.0031887756194919348,-0.001166180707514286,3.5236570605778894e-18,-0.028972303494811058,0.0025510203558951616,0.0029154520016163588,0.023281097412109375,9.872504654631808e-20,-4.33354429920276e-21,-0.0010204081190750003,4.1525327017999044e-18,-0.001166180707514286,-0.0031887756194919348,0.0016534391324967146,-0.0019841270986944437,8.582266396467035e-20,9.872504654631808e-20,0.0003306878206785768,-2.0006401937122067e-20,-3.2068244616206614e-20,-3.515807197344118e-21,-2.689737704842425e-21,7.746974062278606e-22,0.0025510203558951616,-0.0008503401186317205,-0.0010204081190750003,-4.33354429920276e-21,-2.0006401937122067e-20,0.0003401360590942204,1.0354334291828392e-20,1.0842021724855044e-19,-1.333545444537829e-20,-7.291700093334725e-23,0.0025510203558951616,-0.0008503401186317205,5.421010862427522e-20,-0.0010204081190750003,-3.2068244616206614e-20,1.0354334291828392e-20,0.0003401360590942204,0.0,-4.0657581468206416e-20,8.131516293641283e-20,0.002125850412994623,-2.168404344971009e-19,-0.0031887756194919348,4.1525327017999044e-18,-3.515807197344118e-21,1.0842021724855044e-19,0.0,0.0006377550889737904,-5.692061405548898e-19,-5.421010862427522e-19,0.0029154520016163588,1.552283389354861e-19,-0.001166180707514286,-0.001166180707514286,-2.689737704842425e-21,-1.333545444537829e-20,-4.0657581468206416e-20,-5.692061405548898e-19,0.0004664722946472466,-2.981555974335137e-19,0.002125850412994623,-2.710505431213761e-19,3.5236570605778894e-18,-0.0031887756194919348,7.746974062278606e-22,-7.291700093334725e-23,8.131516293641283e-20,-5.421010862427522e-19,-2.981555974335137e-19,0.0006377550889737904,7.0,6.0,7.0,0.09626052528619766,-0.022260690107941628,-0.025145772844552994,-0.022260690107941628,0.0014172336086630821,0.002186588943004608,0.0019132653251290321,0.0018221574136987329,0.002186588943004608,0.0014172336086630821,-0.022260690107941628,0.014789844863116741,0.002186588943004608,0.0019132653251290321,-0.001700680237263441,-0.0007288630004040897,-0.0006377550889737904,5.963111948670274e-19,8.372262041046014e-20,2.981555974335137e-19,-0.025145772844552994,0.002186588943004608,0.02008017525076866,0.002186588943004608,-5.490439103919424e-20,-0.0008746355888433754,-2.710505431213761e-20,-0.00273323617875576,-0.0008746355888433754,2.2768245622195593e-18,-0.022260690107941628,0.0019132653251290321,0.002186588943004608,0.014789844863116741,-3.0336913588867646e-20,-1.0755222044264675e-19,-0.0006377550889737904,2.8285982849552004e-18,-0.0007288630004040897,-0.001700680237263441,0.0014172336086630821,-0.001700680237263441,-5.490439103919424e-20,-3.0336913588867646e-20,0.00028344671591185033,1.6548643189395495e-20,8.881237904177255e-21,1.139483198083081e-21,-3.083782486511812e-22,6.867915432243348e-22,0.002186588943004608,-0.0007288630004040897,-0.0008746355888433754,-1.0755222044264675e-19,1.6548643189395495e-20,0.0002915451768785715,3.258986277177799e-20,-2.168404344971009e-19,5.3003148712983785e-21,-1.3919825034455935e-21,0.0019132653251290321,-0.0006377550889737904,-2.710505431213761e-20,-0.0006377550889737904,8.881237904177255e-21,3.258986277177799e-20,0.00021258502965793014,1.6940658945086007e-21,-2.371692252312041e-20,-8.131516293641283e-20,0.0018221574136987329,5.963111948670274e-19,-0.00273323617875576,2.8285982849552004e-18,1.139483198083081e-21,-2.168404344971009e-19,1.6940658945086007e-21,0.000546647235751152,-2.981555974335137e-19,-3.5236570605778894e-19,0.002186588943004608,8.372262041046014e-20,-0.0008746355888433754,-0.0007288630004040897,-3.083782486511812e-22,5.3003148712983785e-21,-2.371692252312041e-20,-2.981555974335137e-19,0.0002915451768785715,-1.6263032587282567e-19,0.0014172336086630821,2.981555974335137e-19,2.2768245622195593e-18,-0.001700680237263441,6.867915432243348e-22,-1.3919825034455935e-21,-8.131516293641283e-20,-3.5236570605778894e-19,-1.6263032587282567e-19,0.00028344671591185033,7.0,6.0,8.0,0.0863095223903656,-0.019664116203784943,-0.022215135395526886,-0.01764455810189247,0.0012400794075801969,0.0019132653251290321,0.0014880952658131719,0.0015943878097459674,0.001700680237263441,0.0009920635493472219,-0.019664116203784943,0.013003118336200714,0.0019132653251290321,0.0014880952658131719,-0.0014880952658131719,-0.0006377550889737904,-0.0004960317746736109,-6.63797242130049e-19,-2.90288489422675e-19,1.3552527156068805e-19,-0.022215135395526886,0.0019132653251290321,0.017655186355113983,0.001700680237263441,-3.434040716910678e-21,-0.0007653061184100807,-9.486769009248164e-20,-0.00239158165641129,-0.0006802721181884408,9.75781955236954e-19,-0.01764455810189247,0.0014880952658131719,0.001700680237263441,0.010001619346439838,-5.541639645131896e-20,-1.8881343569348464e-19,-0.00042517005931586027,9.440672301662115e-19,-0.00048590864753350616,-0.0009920635493472219,0.0012400794075801969,-0.0014880952658131719,-3.434040716910678e-21,-5.541639645131896e-20,0.00024801588733680546,3.812551071414514e-37,9.287960349547592e-21,-9.54045607471532e-36,9.811545482454485e-22,3.3150456563057747e-21,0.0019132653251290321,-0.0006377550889737904,-0.0007653061184100807,-1.8881343569348464e-19,3.812551071414514e-37,0.00025510202976875007,9.027796614315168e-36,2.6551890202189845e-19,7.552537686233327e-20,-1.1134282490988707e-34,0.0014880952658131719,-0.0004960317746736109,-9.486769009248164e-20,-0.00042517005931586027,9.287960349547592e-21,9.027796614315168e-36,0.00014172335795592517,1.0833355937178202e-34,2.710505431213761e-20,-4.0657581468206416e-20,0.0015943878097459674,-6.63797242130049e-19,-0.00239158165641129,9.440672301662115e-19,-9.54045607471532e-36,2.6551890202189845e-19,1.0833355937178202e-34,0.00047831633128225803,2.8322015354022696e-19,-2.3601680754155287e-19,0.001700680237263441,-2.90288489422675e-19,-0.0006802721181884408,-0.00048590864753350616,9.811545482454485e-22,7.552537686233327e-20,2.710505431213761e-20,2.8322015354022696e-19,0.00019436345610301942,4.743384504624082e-20,0.0009920635493472219,1.3552527156068805e-19,9.75781955236954e-19,-0.0009920635493472219,3.3150456563057747e-21,-1.1134282490988707e-34,-4.0657581468206416e-20,-2.3601680754155287e-19,4.743384504624082e-20,0.00014172335795592517,7.0,6.0,9.0,0.07823186367750168,-0.017611488699913025,-0.019897958263754845,-0.014332096092402935,0.001102292793802917,0.001700680237263441,0.0011904762359336019,0.0014172336086630821,0.0013605442363768816,0.0007215007208287716,-0.017611488699913025,0.01160241849720478,0.001700680237263441,0.0011904762359336019,-0.0013227512827143073,-0.0005668934318237007,-0.00039682540227659047,4.81482486096809e-35,2.710505431213761e-20,-8.131516293641283e-20,-0.019897958263754845,0.001700680237263441,0.015753967687487602,0.0013605442363768816,0.0,-0.0006802721181884408,2.0328790734103208e-20,-0.002125850412994623,-0.0005442177061922848,8.673617379884035e-19,-0.014332096092402935,0.0011904762359336019,0.0013605442363768816,0.007087456062436104,-0.0,-0.0,-0.00029761905898340046,1.8600634658599766e-18,-0.0003401360590942204,-0.0006184292142279446,0.001102292793802917,-0.0013227512827143073,0.0,-0.0,0.00022045854711905122,0.0,0.0,0.0,0.0,0.0,0.001700680237263441,-0.0005668934318237007,-0.0006802721181884408,-0.0,0.0,0.00022675737272948027,0.0,0.0,0.0,0.0,0.0011904762359336019,-0.00039682540227659047,2.0328790734103208e-20,-0.00029761905898340046,0.0,0.0,9.920635056914762e-05,-1.2037062152420224e-35,-6.776263578034403e-21,2.371692252312041e-20,0.0014172336086630821,4.81482486096809e-35,-0.002125850412994623,1.8600634658599766e-18,0.0,0.0,-1.2037062152420224e-35,0.00042517005931586027,-2.104434978534074e-19,-1.667443344987523e-19,0.0013605442363768816,2.710505431213761e-20,-0.0005442177061922848,-0.0003401360590942204,0.0,0.0,-6.776263578034403e-21,-2.104434978534074e-19,0.0001360544265480712,-6.776263578034403e-21,0.0007215007208287716,-8.131516293641283e-20,8.673617379884035e-19,-0.0006184292142279446,0.0,0.0,2.371692252312041e-20,-1.667443344987523e-19,-6.776263578034403e-21,7.730365177849308e-05,7.0,6.0,10.0,0.07154195010662079,-0.015947742387652397,-0.018019480630755424,-0.011873840354382992,0.0009920635493472219,0.0015306122368201613,0.0009740259847603738,0.0012755101779475808,0.001113172504119575,0.0005411255406215787,-0.015947742387652397,0.010474644601345062,0.0015306122368201613,0.0009740259847603738,-0.0011904762359336019,-0.0005102040595375001,-0.0003246753185521811,-1.1585517508811848e-18,-2.459783678826488e-18,-2.6291902682773483e-18,-0.018019480630755424,0.0015306122368201613,0.014223098754882812,0.001113172504119575,-5.073711327428891e-19,-0.0006122448830865324,-2.202285662861181e-18,-0.0019132653251290321,-0.0004452690191101283,-3.415236843329339e-18,-0.011873840354382992,0.0009740259847603738,0.001113172504119575,0.005208977498114109,-4.122903505848561e-18,-3.1171592076685584e-18,-0.00021645022206939757,-6.4853317488903146e-18,-0.00024737167404964566,-0.000405844155466184,0.0009920635493472219,-0.0011904762359336019,-5.073711327428891e-19,-4.122903505848561e-18,0.00019841270113829523,4.905552940597676e-20,1.8220179398204536e-19,-1.1800840377077644e-19,1.977391668673293e-19,3.103978446499044e-19,0.0015306122368201613,-0.0005102040595375001,-0.0006122448830865324,-3.1171592076685584e-18,4.905552940597676e-20,0.0002040816325461492,8.907416878094852e-20,2.11097280730054e-19,2.7115823169737286e-19,2.1112775716574775e-19,0.0009740259847603738,-0.0003246753185521811,-2.202285662861181e-18,-0.00021645022206939757,1.8220179398204536e-19,8.907416878094852e-20,7.215006917249411e-05,2.6605530279974494e-19,1.0672615135404184e-19,3.3881317890172014e-20,0.0012755101779475808,-1.1585517508811848e-18,-0.0019132653251290321,-6.4853317488903146e-18,-1.1800840377077644e-19,2.11097280730054e-19,2.6605530279974494e-19,0.00038265305920504034,5.137519005905466e-19,4.377038619033534e-19,0.001113172504119575,-2.459783678826488e-18,-0.0004452690191101283,-0.00024737167404964566,1.977391668673293e-19,2.7115823169737286e-19,1.0672615135404184e-19,5.137519005905466e-19,9.894867253024131e-05,1.1180834903756764e-19,0.0005411255406215787,-2.6291902682773483e-18,-3.415236843329339e-18,-0.000405844155466184,3.103978446499044e-19,2.1112775716574775e-19,3.3881317890172014e-20,4.377038619033534e-19,1.1180834903756764e-19,4.5093795051798224e-05,7.0,6.0,11.0,0.06590928882360458,-0.014571737498044968,-0.016465676948428154,-0.009998929686844349,0.0009018759010359645,0.0013914656592532992,0.000811688310932368,0.0011595546966418624,0.0009276437922380865,0.0004162504046689719,-0.014571737498044968,0.009547000750899315,0.0013914656592532992,0.000811688310932368,-0.0010822510812431574,-0.00046382189611904323,-0.00027056277031078935,-5.537048590113303e-34,3.3881317890172014e-20,1.6940658945086007e-19,-0.016465676948428154,0.0013914656592532992,0.012963822111487389,0.0009276437922380865,0.0,-0.0005565862520597875,2.710505431213761e-20,-0.0017393321031704545,-0.0003710575110744685,5.149960319306146e-19,-0.009998929686844349,0.000811688310932368,0.0009276437922380865,0.003942287992686033,-0.0,-0.0,-0.00016233765927609056,9.24261631169548e-19,-0.00018552875553723425,-0.0002775002794805914,0.0009018759010359645,-0.0010822510812431574,0.0,-0.0,0.0001803751802071929,0.0,0.0,0.0,0.0,0.0,0.0013914656592532992,-0.00046382189611904323,-0.0005565862520597875,-0.0,0.0,0.00018552875553723425,0.0,-0.0,0.0,0.0,0.000811688310932368,-0.00027056277031078935,2.710505431213761e-20,-0.00016233765927609056,0.0,0.0,5.411255551734939e-05,1.2037062152420224e-34,-6.776263578034403e-21,-3.7269449679189215e-20,0.0011595546966418624,-5.537048590113303e-34,-0.0017393321031704545,9.24261631169548e-19,0.0,-0.0,1.2037062152420224e-34,0.0003478664148133248,3.611118645726067e-35,-9.242615665460627e-20,0.0009276437922380865,3.3881317890172014e-20,-0.0003710575110744685,-0.00018552875553723425,0.0,0.0,-6.776263578034403e-21,3.611118645726067e-35,7.421150075970218e-05,-1.1858461261560205e-20,0.0004162504046689719,1.6940658945086007e-19,5.149960319306146e-19,-0.0002775002794805914,0.0,0.0,-3.7269449679189215e-20,-9.242615665460627e-20,-1.1858461261560205e-20,2.775002758426126e-05,7.0,6.0,12.0,0.06110093742609024,-0.013414660468697548,-0.015158948488533497,-0.008536106906831264,0.0008267195662483573,0.0012755101779475808,0.0006868132040835917,0.0010629252064973116,0.0007849293760955334,0.0003270538873039186,-0.013414660468697548,0.008770495653152466,0.0012755101779475808,0.0006868132040835917,-0.0009920635493472219,-0.00042517005931586027,-0.00022893772984389216,2.710505431213761e-20,-4.87890977618477e-19,-1.5026364484291288e-18,-0.015158948488533497,0.0012755101779475808,0.011909667402505875,0.0007849293760955334,1.212951180468158e-18,-0.0005102040595375001,-3.8624702394796095e-19,-0.0015943878097459674,-0.00031397174461744726,2.727446090158847e-19,-0.008536106906831264,0.0006868132040835917,0.0007849293760955334,0.003056467277929187,-1.4365678785432934e-18,-1.6263032587282567e-19,-0.00012487512140069157,4.336808689942018e-19,-0.00014271443069446832,-0.00019623234402388334,0.0008267195662483573,-0.0009920635493472219,1.212951180468158e-18,-1.4365678785432934e-18,0.0001653439103392884,-4.98796681910741e-19,-1.8214961697996917e-19,1.968712314537367e-20,3.399463840291751e-20,1.7321823771350442e-19,0.0012755101779475808,-0.00042517005931586027,-0.0005102040595375001,-1.6263032587282567e-19,-4.98796681910741e-19,0.0001700680295471102,-7.792703114739563e-20,-1.9989977555201488e-19,-2.0328790734103208e-20,4.699392713203039e-20,0.0006868132040835917,-0.00022893772984389216,-3.8624702394796095e-19,-0.00012487512140069157,-1.8214961697996917e-19,-7.792703114739563e-20,4.162504046689719e-05,5.251604272976662e-20,5.421010862427522e-20,4.672712907273936e-20,0.0010629252064973116,2.710505431213761e-20,-0.0015943878097459674,4.336808689942018e-19,1.968712314537367e-20,-1.9989977555201488e-19,5.251604272976662e-20,0.0003188775444868952,6.098637220230962e-20,-7.701547165001366e-20,0.0007849293760955334,-4.87890977618477e-19,-0.00031397174461744726,-0.00014271443069446832,3.399463840291751e-20,-2.0328790734103208e-20,5.421010862427522e-20,6.098637220230962e-20,5.7085770095000044e-05,-2.1912812122677063e-21,0.0003270538873039186,-1.5026364484291288e-18,2.727446090158847e-19,-0.00019623234402388334,1.7321823771350442e-19,4.699392713203039e-20,4.672712907273936e-20,-7.701547165001366e-20,-2.1912812122677063e-21,1.783930383680854e-05,7.0,6.0,13.0,0.056947872042655945,-0.012428048066794872,-0.014044628478586674,-0.007372729480266571,0.000763125775847584,0.0011773940641433,0.00058869703207165,0.0009811617201194167,0.0006727965665049851,0.00026164311566390097,-0.012428048066794872,0.008110936731100082,0.0011773940641433,0.00058869703207165,-0.0009157509193755686,-0.0003924646880477667,-0.00019623234402388334,-5.719166459861036e-18,-1.8973538018496328e-18,-8.470329472543003e-19,-0.014044628478586674,0.0011773940641433,0.0110142407938838,0.0006727965665049851,-5.9631119486702744e-18,-0.00047095760237425566,-2.0464316005663896e-18,-0.0014717425219714642,-0.0002691186382435262,-7.962109704190423e-20,-0.007372729480266571,0.00058869703207165,0.0006727965665049851,0.0024180752225220203,-2.2497195079074217e-18,-1.1655173354219173e-18,-9.811617201194167e-05,-1.3010426069826053e-18,-0.00011213276593480259,-0.00014271443069446832,0.000763125775847584,-0.0009157509193755686,-5.9631119486702744e-18,-2.2497195079074217e-18,0.00015262515807989985,5.38733840764202e-19,1.9229209206078812e-19,5.9161043084346515e-19,1.855034336982625e-19,8.766791004082009e-20,0.0011773940641433,-0.0003924646880477667,-0.00047095760237425566,-1.1655173354219173e-18,5.38733840764202e-19,0.00015698587230872363,1.4060746924421386e-19,2.574980159653073e-19,1.0333801956502464e-19,3.526016011663829e-20,0.00058869703207165,-0.00019623234402388334,-2.0464316005663896e-18,-9.811617201194167e-05,1.9229209206078812e-19,1.4060746924421386e-19,3.270538945798762e-05,2.1345230270808369e-19,7.453889935837843e-20,2.955081735712951e-20,0.0009811617201194167,-5.719166459861036e-18,-0.0014717425219714642,-1.3010426069826053e-18,5.9161043084346515e-19,2.574980159653073e-19,2.1345230270808369e-19,0.000294348516035825,2.896852679609707e-19,-1.0265964906778733e-20,0.0006727965665049851,-1.8973538018496328e-18,-0.0002691186382435262,-0.00011213276593480259,1.855034336982625e-19,1.0333801956502464e-19,7.453889935837843e-20,2.896852679609707e-19,4.485310637392104e-05,6.5482020475559336e-21,0.00026164311566390097,-8.470329472543003e-19,-7.962109704190423e-20,-0.00014271443069446832,8.766791004082009e-20,3.526016011663829e-20,2.955081735712951e-20,-1.0265964906778733e-20,6.5482020475559336e-21,1.1892869224539027e-05,7.0,6.0,14.0,0.05332442373037338,-0.011576773598790169,-0.01308309007436037,-0.006432215683162212,0.0007086168043315411,0.001093294471502304,0.0005102040595375001,0.0009110787068493664,0.000583090353757143,0.00021258502965793014,-0.011576773598790169,0.007543731946498156,0.001093294471502304,0.0005102040595375001,-0.0008503401186317205,-0.00036443150020204484,-0.0001700680295471102,1.0570971181733668e-18,1.0842021724855044e-19,-2.541098841762901e-20,-0.01308309007436037,0.001093294471502304,0.010244169272482395,0.000583090353757143,1.2739375526704677e-18,-0.0004373177944216877,-7.284483346386983e-19,-0.00136661808937788,-0.0002332361473236233,8.893845946170154e-20,-0.006432215683162212,0.0005102040595375001,0.000583090353757143,0.0019462043419480324,1.4907779871675686e-19,-1.6263032587282567e-19,-7.849293615436181e-05,5.55653613398821e-19,-8.970621274784207e-05,-0.00010629251482896507,0.0007086168043315411,-0.0008503401186317205,1.2739375526704677e-18,1.4907779871675686e-19,0.00014172335795592517,-4.199184964564859e-20,-6.014750120125575e-20,-1.8852193207574213e-19,-2.755339912883842e-20,3.8116482626443515e-21,0.001093294471502304,-0.00036443150020204484,-0.0004373177944216877,-1.6263032587282567e-19,-4.199184964564859e-20,0.00014577258843928576,4.0657581468206416e-20,-1.4907779871675686e-19,-2.0328790734103208e-20,2.264596354455362e-21,0.0005102040595375001,-0.0001700680295471102,-7.284483346386983e-19,-7.849293615436181e-05,-6.014750120125575e-20,4.0657581468206416e-20,2.616431265778374e-05,8.131516293641283e-20,2.286988957586611e-20,9.475231738017931e-22,0.0009110787068493664,1.0570971181733668e-18,-0.00136661808937788,5.55653613398821e-19,-1.8852193207574213e-19,-1.4907779871675686e-19,8.131516293641283e-20,0.000273323617875576,-2.507217523872729e-19,-1.0148963278748662e-20,0.000583090353757143,1.0842021724855044e-19,-0.0002332361473236233,-8.970621274784207e-05,-2.755339912883842e-20,-2.0328790734103208e-20,2.286988957586611e-20,-2.507217523872729e-19,3.5882483643945307e-05,-5.280564318586541e-21,0.00021258502965793014,-2.541098841762901e-20,8.893845946170154e-20,-0.00010629251482896507,3.8116482626443515e-21,2.264596354455362e-21,9.475231738017931e-22,-1.0148963278748662e-20,-5.280564318586541e-21,8.176347364496905e-06,7.0,6.0,15.0,0.05013519152998924,-0.010834750719368458,-0.01224489789456129,-0.0056610144674777985,0.0006613756413571537,0.0010204081190750003,0.00044642857392318547,0.0008503401186317205,0.0005102040595375001,0.00017507003212813288,-0.010834750719368458,0.007050736807286739,0.0010204081190750003,0.00044642857392318547,-0.0007936508045531809,-0.0003401360590942204,-0.00014880952949170023,-1.870248747537495e-18,4.0657581468206416e-19,3.040848280642938e-19,-0.01224489789456129,0.0010204081190750003,0.0095748296007514,0.0005102040595375001,2.913793338554793e-19,-0.0004081632650922984,-2.456395547037471e-19,-0.0012755101779475808,-0.0002040816325461492,3.3118988237643143e-19,-0.0056610144674777985,0.00044642857392318547,0.0005102040595375001,0.0015897980192676187,1.4230153513872246e-18,4.0657581468206416e-20,-6.377550744218752e-05,2.846030702774449e-19,-7.288629421964288e-05,-8.080155384959653e-05,0.0006613756413571537,-0.0007936508045531809,2.913793338554793e-19,1.4230153513872246e-18,0.00013227513409219682,-1.341834682848534e-19,-2.1835585522869218e-19,1.005287591084297e-19,-6.563519833069153e-20,-3.536362554786704e-20,0.0010204081190750003,-0.0003401360590942204,-0.0004081632650922984,4.0657581468206416e-20,-1.341834682848534e-19,0.0001360544265480712,8.470329472543003e-21,2.812149384884277e-19,3.3881317890172014e-20,-1.2319689577860244e-20,0.00044642857392318547,-0.00014880952949170023,-2.456395547037471e-19,-6.377550744218752e-05,-2.1835585522869218e-19,8.470329472543003e-21,2.1258503693388775e-05,5.421010862427522e-20,-1.2705494208814505e-20,-5.3547193641354294e-21,0.0008503401186317205,-1.870248747537495e-18,-0.0012755101779475808,2.846030702774449e-19,1.005287591084297e-19,2.812149384884277e-19,5.421010862427522e-20,0.00025510202976875007,6.945670167485263e-20,-4.0570178204262825e-20,0.0005102040595375001,4.0657581468206416e-19,-0.0002040816325461492,-7.288629421964288e-05,-6.563519833069153e-20,3.3881317890172014e-20,-1.2705494208814505e-20,6.945670167485263e-20,2.9154518415452912e-05,-1.1155440943627527e-20,0.00017507003212813288,3.040848280642938e-19,3.3118988237643143e-19,-8.080155384959653e-05,-3.536362554786704e-20,-1.2319689577860244e-20,-5.3547193641354294e-21,-4.0570178204262825e-20,-1.1155440943627527e-20,5.77153923586593e-06,7.0,6.0,16.0,0.047306422144174576,-0.010182198137044907,-0.011507728137075901,-0.0050207581371068954,0.0006200397037900984,0.0009566326625645161,0.00039390756865032017,0.0007971939048729837,0.00045018005766905844,0.00014589169586542994,-0.010182198137044907,0.006618272513151169,0.0009566326625645161,0.00039390756865032017,-0.0007440476329065859,-0.0003188775444868952,-0.00013130252773407847,-1.1384122811097797e-18,-5.827586677109586e-19,-6.776263578034403e-19,-0.011507728137075901,0.0009566326625645161,0.008987657725811005,0.00045018005766905844,-4.3029273720518457e-19,-0.00038265305920504034,-4.895850435129856e-19,-0.001195790828205645,-0.00018007203470915556,-3.3118988237643143e-19,-0.0050207581371068954,0.00039390756865032017,0.00045018005766905844,0.0013155261985957623,-1.5856456772600502e-18,-4.2012834183813297e-19,-5.25210089108441e-05,-1.0570971181733668e-18,-6.0024009144399315e-05,-6.252501043491066e-05,0.0006200397037900984,-0.0007440476329065859,-4.3029273720518457e-19,-1.5856456772600502e-18,0.00012400794366840273,-2.033823998013192e-19,5.897579986357439e-20,1.0620372863607779e-19,6.368626387228856e-20,7.877406409464993e-20,0.0009566326625645161,-0.0003188775444868952,-0.00038265305920504034,-4.2012834183813297e-19,-2.033823998013192e-19,0.00012755101488437504,-3.5575383784680614e-20,0.0,0.0,3.511574601391389e-20,0.00039390756865032017,-0.00013130252773407847,-4.895850435129856e-19,-5.25210089108441e-05,5.897579986357439e-20,-3.5575383784680614e-20,1.750700357661117e-05,7.115076756936123e-20,3.049318610115481e-20,1.1998088379606875e-20,0.0007971939048729837,-1.1384122811097797e-18,-0.001195790828205645,-1.0570971181733668e-18,1.0620372863607779e-19,0.0,7.115076756936123e-20,0.00023915816564112902,1.0164395367051604e-19,3.2173167307030137e-20,0.00045018005766905844,-5.827586677109586e-19,-0.00018007203470915556,-6.0024009144399315e-05,6.368626387228856e-20,0.0,3.049318610115481e-20,1.0164395367051604e-19,2.4009603293961845e-05,6.332282866079018e-21,0.00014589169586542994,-6.776263578034403e-19,-3.3118988237643143e-19,-6.252501043491066e-05,7.877406409464993e-20,3.511574601391389e-20,1.1998088379606875e-20,3.2173167307030137e-20,6.332282866079018e-21,4.168333816778613e-06,7.0,7.0,3.0,0.1597222238779068,-0.04124149680137634,-0.04124149680137634,-0.07653061300516129,0.0028344672173261642,0.0038265306502580643,0.0076530613005161285,0.0028344672173261642,0.0076530613005161285,0.010204081423580647,-0.04124149680137634,0.02848639525473118,0.0038265306502580643,0.0076530613005161285,-0.003401360474526882,-0.0012755101779475808,-0.0025510203558951616,3.2483747131414803e-19,8.49660486470075e-19,6.7972838917606e-18,-0.04124149680137634,0.0038265306502580643,0.02848639525473118,0.0076530613005161285,5.185561332765119e-20,-0.0012755101779475808,4.970802821396934e-19,-0.003401360474526882,-0.0025510203558951616,6.7972838917606e-18,-0.07653061300516129,0.0076530613005161285,0.0076530613005161285,0.1785714328289032,1.2254718256594611e-19,-3.175389207274688e-19,-0.0076530613005161285,-1.6172893164969015e-20,-0.0076530613005161285,-0.06122449040412903,0.0028344672173261642,-0.003401360474526882,5.185561332765119e-20,1.2254718256594611e-19,0.0005668934318237007,2.45547789354542e-20,-4.084906085531537e-20,-6.800736491938608e-21,1.3907814346062114e-35,1.3579555252707586e-34,0.0038265306502580643,-0.0012755101779475808,-0.0012755101779475808,-3.175389207274688e-19,2.45547789354542e-20,0.00042517005931586027,1.0584630906327245e-19,-1.1614638143782836e-19,-3.14437535498232e-35,-2.6277994837527325e-34,0.0076530613005161285,-0.0025510203558951616,4.970802821396934e-19,-0.0076530613005161285,-4.084906085531537e-20,1.0584630906327245e-19,0.0025510203558951616,5.390964657587527e-21,-8.49660486470075e-19,-6.7972838917606e-18,0.0028344672173261642,3.2483747131414803e-19,-0.003401360474526882,-1.6172893164969015e-20,-6.800736491938608e-21,-1.1614638143782836e-19,5.390964657587527e-21,0.0005668934318237007,1.4512502300655152e-35,1.9695538426623527e-35,0.0076530613005161285,8.49660486470075e-19,-0.0025510203558951616,-0.0076530613005161285,1.3907814346062114e-35,-3.14437535498232e-35,-8.49660486470075e-19,1.4512502300655152e-35,0.0025510203558951616,-6.7972838917606e-18,0.010204081423580647,6.7972838917606e-18,6.7972838917606e-18,-0.06122449040412903,1.3579555252707586e-34,-2.6277994837527325e-34,-6.7972838917606e-18,1.9695538426623527e-35,-6.7972838917606e-18,0.030612245202064514,7.0,7.0,4.0,0.130761057138443,-0.03207908198237419,-0.03207908198237419,-0.04897959157824516,0.002125850412994623,0.002869897987693548,0.004591836594045162,0.002125850412994623,0.004591836594045162,0.005102040711790323,-0.03207908198237419,0.021747449412941933,0.002869897987693548,0.004591836594045162,-0.0025510203558951616,-0.0009566326625645161,-0.0015306122368201613,-1.500018525187975e-18,9.390241167666288e-19,-5.562163857285715e-18,-0.03207908198237419,0.002869897987693548,0.021747449412941933,0.004591836594045162,1.2517218595615545e-18,-0.0009566326625645161,-2.6581012646618423e-18,-0.0025510203558951616,-0.0015306122368201613,-5.562163857285715e-18,-0.04897959157824516,0.004591836594045162,0.004591836594045162,0.06836734712123871,1.8742274862838752e-18,-3.7784489551692295e-18,-0.0030612244736403227,-1.895559078414334e-19,-0.0030612244736403227,-0.015306122601032257,0.002125850412994623,-0.0025510203558951616,1.2517218595615545e-18,1.8742274862838752e-18,0.00042517005931586027,-1.1255988139816328e-19,-1.772304643499958e-19,-5.169668802129017e-20,-2.2722971959319035e-19,-9.440671784674232e-20,0.002869897987693548,-0.0009566326625645161,-0.0009566326625645161,-3.7784489551692295e-18,-1.1255988139816328e-19,0.0003188775444868952,1.0197148488134436e-19,4.900492469329927e-19,2.653679932588958e-19,1.0620756080875938e-18,0.004591836594045162,-0.0015306122368201613,-2.6581012646618423e-18,-0.0030612244736403227,-1.772304643499958e-19,1.0197148488134436e-19,0.0010204081190750003,4.538747775896706e-19,9.224884919783582e-20,2.3392117647892275e-18,0.002125850412994623,-1.500018525187975e-18,-0.0025510203558951616,-1.895559078414334e-19,-5.169668802129017e-20,4.900492469329927e-19,4.538747775896706e-19,0.00042517005931586027,-1.7040710317583417e-19,-9.440671784674232e-20,0.004591836594045162,9.390241167666288e-19,-0.0015306122368201613,-0.0030612244736403227,-2.2722971959319035e-19,2.653679932588958e-19,9.224884919783582e-20,-1.7040710317583417e-19,0.0010204081190750003,2.3392117647892275e-18,0.005102040711790323,-5.562163857285715e-18,-5.562163857285715e-18,-0.015306122601032257,-9.440671784674232e-20,1.0620756080875938e-18,2.3392117647892275e-18,-9.440671784674232e-20,2.3392117647892275e-18,0.005102040711790323,7.0,7.0,5.0,0.11084791272878647,-0.0262755099684,-0.0262755099684,-0.03411078825592995,0.001700680237263441,0.002295918297022581,0.0030612244736403227,0.001700680237263441,0.0030612244736403227,0.0029154520016163588,-0.0262755099684,0.017602041363716125,0.002295918297022581,0.0030612244736403227,-0.0020408162381500006,-0.0007653061184100807,-0.0010204081190750003,-4.87890977618477e-19,-6.667843360785852e-18,-1.6569934792513216e-17,-0.0262755099684,0.002295918297022581,0.017602041363716125,0.0030612244736403227,-1.9068568663169482e-18,-0.0007653061184100807,-7.039999362998972e-18,-0.0020408162381500006,-0.0010204081190750003,-1.6569934792513216e-17,-0.03411078825592995,0.0030612244736403227,0.0030612244736403227,0.03454810380935669,-1.1799108571067687e-17,-4.472923741279456e-18,-0.0015306122368201613,-1.1817803680091998e-17,-0.0015306122368201613,-0.0058309040032327175,0.001700680237263441,-0.0020408162381500006,-1.9068568663169482e-18,-1.1799108571067687e-17,0.0003401360590942204,3.9624607366538145e-20,3.965082252960754e-19,5.144227505296756e-20,6.449849836514852e-19,1.9420811119316e-18,0.002295918297022581,-0.0007653061184100807,-0.0007653061184100807,-4.472923741279456e-18,3.9624607366538145e-20,0.00025510202976875007,3.365295658750085e-19,-4.607859233063394e-19,2.846030702774449e-19,4.855202779829e-19,0.0030612244736403227,-0.0010204081190750003,-7.039999362998972e-18,-0.0015306122368201613,3.965082252960754e-19,3.365295658750085e-19,0.0005102040595375001,6.797283788363024e-19,8.060881273183849e-19,1.5686039988826562e-18,0.001700680237263441,-4.87890977618477e-19,-0.0020408162381500006,-1.1817803680091998e-17,5.144227505296756e-20,-4.607859233063394e-19,6.797283788363024e-19,0.0003401360590942204,3.9302328752599536e-19,1.9420811119316e-18,0.0030612244736403227,-6.667843360785852e-18,-0.0010204081190750003,-0.0015306122368201613,6.449849836514852e-19,2.846030702774449e-19,8.060881273183849e-19,3.9302328752599536e-19,0.0005102040595375001,1.5686039988826562e-18,0.0029154520016163588,-1.6569934792513216e-17,-1.6569934792513216e-17,-0.0058309040032327175,1.9420811119316e-18,4.855202779829e-19,1.5686039988826562e-18,1.9420811119316e-18,1.5686039988826562e-18,0.0014577260008081794,7.0,7.0,6.0,0.09626052528619766,-0.022260690107941628,-0.022260690107941628,-0.025145772844552994,0.0014172336086630821,0.0019132653251290321,0.002186588943004608,0.0014172336086630821,0.002186588943004608,0.0018221574136987329,-0.022260690107941628,0.014789844863116741,0.0019132653251290321,0.002186588943004608,-0.001700680237263441,-0.0006377550889737904,-0.0007288630004040897,2.981555974335137e-19,1.5463217435838266e-19,5.421010862427522e-19,-0.022260690107941628,0.0019132653251290321,0.014789844863116741,0.002186588943004608,-3.5092223065244416e-20,-0.0006377550889737904,4.0657581468206416e-20,-0.001700680237263441,-0.0007288630004040897,4.87890977618477e-19,-0.025145772844552994,0.002186588943004608,0.002186588943004608,0.02008017525076866,-1.1573900629525593e-20,-1.0991848690712833e-19,-0.0008746355888433754,-1.1300608717749882e-20,-0.0008746355888433754,-0.00273323617875576,0.0014172336086630821,-0.001700680237263441,-3.5092223065244416e-20,-1.1573900629525593e-20,0.00028344671591185033,1.1975183393016113e-20,1.7471980316983545e-20,4.64915792958953e-22,-1.5421125534497002e-21,-6.673655215780181e-21,0.0019132653251290321,-0.0006377550889737904,-0.0006377550889737904,-1.0991848690712833e-19,1.1975183393016113e-20,0.00021258502965793014,3.6974989536991676e-20,-8.131516293641283e-20,1.399606257182041e-21,5.728469594612739e-22,0.002186588943004608,-0.0007288630004040897,4.0657581468206416e-20,-0.0008746355888433754,1.7471980316983545e-20,3.6974989536991676e-20,0.0002915451768785715,1.6940658945086007e-21,-6.098637220230962e-20,-1.8973538018496328e-19,0.0014172336086630821,2.981555974335137e-19,-0.001700680237263441,-1.1300608717749882e-20,4.64915792958953e-22,-8.131516293641283e-20,1.6940658945086007e-21,0.00028344671591185033,0.0,6.776263578034403e-21,0.002186588943004608,1.5463217435838266e-19,-0.0007288630004040897,-0.0008746355888433754,-1.5421125534497002e-21,1.399606257182041e-21,-6.098637220230962e-20,0.0,0.0002915451768785715,-2.0328790734103208e-19,0.0018221574136987329,5.421010862427522e-19,4.87890977618477e-19,-0.00273323617875576,-6.673655215780181e-21,5.728469594612739e-22,-1.8973538018496328e-19,6.776263578034403e-21,-2.0328790734103208e-19,0.000546647235751152,7.0,7.0,7.0,0.08509474992752075,-0.01931486837565899,-0.01931486837565899,-0.01931486837565899,0.0012147716479375958,0.0016399417072534561,0.0016399417072534561,0.0012147716479375958,0.0016399417072534561,0.0012147716479375958,-0.01931486837565899,0.012755102477967739,0.0016399417072534561,0.0016399417072534561,-0.0014577260008081794,-0.000546647235751152,-0.000546647235751152,0.0,-4.023311179817027e-20,-5.421010862427522e-20,-0.01931486837565899,0.0016399417072534561,0.012755102477967739,0.0016399417072534561,-5.680520685040135e-20,-0.000546647235751152,-1.3552527156068805e-20,-0.0014577260008081794,-0.000546647235751152,-5.421010862427522e-20,-0.01931486837565899,0.0016399417072534561,0.0016399417072534561,0.012755102477967739,-3.4429922813227935e-20,-1.1939023321785328e-20,-0.000546647235751152,-4.312908404741549e-21,-0.000546647235751152,-0.0014577260008081794,0.0012147716479375958,-0.0014577260008081794,-5.680520685040135e-20,-3.4429922813227935e-20,0.00024295432376675308,1.1239374734201084e-20,1.2128788570945222e-20,2.998318482486969e-21,1.1993365614517724e-21,-8.545310890910878e-22,0.0016399417072534561,-0.000546647235751152,-0.000546647235751152,-1.1939023321785328e-20,1.1239374734201084e-20,0.00018221575010102242,4.323320863819487e-21,0.0,3.899804390192337e-21,-2.602365339002769e-21,0.0016399417072534561,-0.000546647235751152,-1.3552527156068805e-20,-0.000546647235751152,1.2128788570945222e-20,4.323320863819487e-21,0.00018221575010102242,-1.6940658945086007e-21,3.3881317890172014e-21,1.3552527156068805e-20,0.0012147716479375958,0.0,-0.0014577260008081794,-4.312908404741549e-21,2.998318482486969e-21,0.0,-1.6940658945086007e-21,0.00024295432376675308,1.3552527156068805e-20,-6.776263578034403e-21,0.0016399417072534561,-4.023311179817027e-20,-0.000546647235751152,-0.000546647235751152,1.1993365614517724e-21,3.899804390192337e-21,3.3881317890172014e-21,1.3552527156068805e-20,0.00018221575010102242,2.710505431213761e-20,0.0012147716479375958,-5.421010862427522e-20,-5.421010862427522e-20,-0.0014577260008081794,-8.545310890910878e-22,-2.602365339002769e-21,1.3552527156068805e-20,-6.776263578034403e-21,2.710505431213761e-20,0.00024295432376675308,7.0,7.0,8.0,0.0762648805975914,-0.017059948295354843,-0.017059948295354843,-0.015306122601032257,0.0010629252064973116,0.001434948993846774,0.0012755101779475808,0.0010629252064973116,0.0012755101779475808,0.0008503401186317205,-0.017059948295354843,0.011213860474526882,0.001434948993846774,0.0012755101779475808,-0.0012755101779475808,-0.00047831633128225803,-0.00042517005931586027,-7.318364664277155e-19,6.0010154322889855e-19,-1.3552527156068805e-19,-0.017059948295354843,0.001434948993846774,0.011213860474526882,0.0012755101779475808,7.97097863132064e-19,-0.00047831633128225803,-4.336808689942018e-19,-0.0012755101779475808,-0.00042517005931586027,-1.6263032587282567e-19,-0.015306122601032257,0.0012755101779475808,0.0012755101779475808,0.008624878711998463,1.3900243900288893e-18,-4.215157046711434e-19,-0.00036443150020204484,7.967667840918897e-19,-0.00036443150020204484,-0.0008503401186317205,0.0010629252064973116,-0.0012755101779475808,7.97097863132064e-19,1.3900243900288893e-18,0.00021258502965793014,-5.139584954108802e-20,-9.19206265157142e-20,-3.2360963155473816e-20,-9.436860937742806e-20,-9.790035393795125e-20,0.001434948993846774,-0.00047831633128225803,-0.00047831633128225803,-4.215157046711434e-19,-5.139584954108802e-20,0.0001594387722434476,-2.941784241910664e-21,2.303929616531697e-19,2.797491873676808e-20,7.14128675012669e-20,0.0012755101779475808,-0.00042517005931586027,-4.336808689942018e-19,-0.00036443150020204484,-9.19206265157142e-20,-2.941784241910664e-21,0.00012147716188337654,9.656175598699024e-20,3.3881317890172014e-21,1.7618285302889447e-19,0.0010629252064973116,-7.318364664277155e-19,-0.0012755101779475808,7.967667840918897e-19,-3.2360963155473816e-20,2.303929616531697e-19,9.656175598699024e-20,0.00021258502965793014,-9.486769009248164e-20,-9.317362419797304e-20,0.0012755101779475808,6.0010154322889855e-19,-0.00042517005931586027,-0.00036443150020204484,-9.436860937742806e-20,2.797491873676808e-20,3.3881317890172014e-21,-9.486769009248164e-20,0.00012147716188337654,1.7618285302889447e-19,0.0008503401186317205,-1.3552527156068805e-19,-1.6263032587282567e-19,-0.0008503401186317205,-9.790035393795125e-20,7.14128675012669e-20,1.7618285302889447e-19,-9.317362419797304e-20,1.7618285302889447e-19,0.00012147716188337654,7.0,7.0,9.0,0.06910344958305359,-0.015277777798473835,-0.015277777798473835,-0.01243042666465044,0.0009448223863728344,0.0012755101779475808,0.0010204081190750003,0.0009448223863728344,0.0010204081190750003,0.0006184292142279446,-0.015277777798473835,0.010005668736994267,0.0012755101779475808,0.0010204081190750003,-0.0011337868636474013,-0.00042517005931586027,-0.0003401360590942204,-0.0,1.3552527156068805e-20,0.0,-0.015277777798473835,0.0012755101779475808,0.010005668736994267,0.0010204081190750003,0.0,-0.00042517005931586027,1.3552527156068805e-20,-0.0011337868636474013,-0.0003401360590942204,0.0,-0.01243042666465044,0.0010204081190750003,0.0010204081190750003,0.006111405789852142,-0.0,-0.0,-0.00025510202976875007,-0.0,-0.00025510202976875007,-0.000530082150362432,0.0009448223863728344,-0.0011337868636474013,0.0,-0.0,0.0001889644772745669,0.0,0.0,0.0,0.0,0.0,0.0012755101779475808,-0.00042517005931586027,-0.00042517005931586027,-0.0,0.0,0.00014172335795592517,0.0,0.0,0.0,0.0,0.0010204081190750003,-0.0003401360590942204,1.3552527156068805e-20,-0.00025510202976875007,0.0,0.0,8.50340147735551e-05,0.0,-3.3881317890172014e-21,0.0,0.0009448223863728344,-0.0,-0.0011337868636474013,-0.0,0.0,0.0,0.0,0.0001889644772745669,0.0,0.0,0.0010204081190750003,1.3552527156068805e-20,-0.0003401360590942204,-0.00025510202976875007,0.0,0.0,-3.3881317890172014e-21,0.0,8.50340147735551e-05,0.0,0.0006184292142279446,0.0,0.0,-0.000530082150362432,0.0,0.0,0.0,0.0,0.0,6.6260268795304e-05,7.0,7.0,10.0,0.06317640841007233,-0.013833488337695599,-0.013833488337695599,-0.010296845808625221,0.0008503401186317205,0.0011479591485112906,0.0008348794071935117,0.0008503401186317205,0.0008348794071935117,0.00046382189611904323,-0.013833488337695599,0.009032931178808212,0.0011479591485112906,0.0008348794071935117,-0.0010204081190750003,-0.00038265305920504034,-0.00027829312602989376,-5.087103381546124e-19,-1.6534083130403943e-18,-2.168404344971009e-18,-0.013833488337695599,0.0011479591485112906,0.009032931178808212,0.0008348794071935117,-1.0089906718915438e-18,-0.00038265305920504034,-1.6127507315721878e-18,-0.0010204081190750003,-0.00027829312602989376,-2.1819568721270777e-18,-0.010296845808625221,0.0008348794071935117,0.0008348794071935117,0.004491341765969992,-3.49348316619318e-18,-1.2114256526234572e-18,-0.00018552875553723425,-3.479751140844187e-18,-0.00018552875553723425,-0.0003478664148133248,0.0008503401186317205,-0.0010204081190750003,-1.0089906718915438e-18,-3.49348316619318e-18,0.0001700680295471102,-8.111270886590335e-21,1.0885555981999769e-19,2.5175125620777757e-20,1.7508155251615961e-19,2.6605530279974494e-19,0.0011479591485112906,-0.00038265305920504034,-0.00038265305920504034,-1.2114256526234572e-18,-8.111270886590335e-21,0.00012755101488437504,5.294482924862453e-20,-1.6800542304137767e-19,5.734463846971103e-20,7.724186064391177e-20,0.0008348794071935117,-0.00027829312602989376,-1.6127507315721878e-18,-0.00018552875553723425,1.0885555981999769e-19,5.294482924862453e-20,6.184291851241142e-05,1.7050425812371794e-19,7.792703114739563e-20,6.606856988583543e-20,0.0008503401186317205,-5.087103381546124e-19,-0.0010204081190750003,-3.479751140844187e-18,2.5175125620777757e-20,-1.6800542304137767e-19,1.7050425812371794e-19,0.0001700680295471102,1.0885555981999769e-19,2.6605530279974494e-19,0.0008348794071935117,-1.6534083130403943e-18,-0.00027829312602989376,-0.00018552875553723425,1.7508155251615961e-19,5.734463846971103e-20,7.792703114739563e-20,1.0885555981999769e-19,6.184291851241142e-05,7.284483346386983e-20,0.00046382189611904323,-2.168404344971009e-18,-2.1819568721270777e-18,-0.0003478664148133248,2.6605530279974494e-19,7.724186064391177e-20,6.606856988583543e-20,2.6605530279974494e-19,7.284483346386983e-20,3.865182588924654e-05,7.0,7.0,11.0,0.05818883329629898,-0.01263914629817009,-0.01263914629817009,-0.008669901639223099,0.0007730365032330155,0.001043599215336144,0.0006957328296266496,0.0007730365032330155,0.0006957328296266496,0.0003567860694602132,-0.01263914629817009,0.008232838474214077,0.001043599215336144,0.0006957328296266496,-0.0009276437922380865,-0.0003478664148133248,-0.00023191094805952162,-0.0,-1.0164395367051604e-20,-1.3552527156068805e-20,-0.01263914629817009,0.001043599215336144,0.008232838474214077,0.0006957328296266496,0.0,-0.0003478664148133248,-3.3881317890172014e-21,-0.0009276437922380865,-0.00023191094805952162,0.0,-0.008669901639223099,0.0006957328296266496,0.0006957328296266496,0.0033989818766713142,-0.0,-0.0,-0.00013914656301494688,-0.0,-0.00013914656301494688,-0.00023785738449078053,0.0007730365032330155,-0.0009276437922380865,0.0,-0.0,0.00015460730355698615,0.0,0.0,0.0,0.0,0.0,0.001043599215336144,-0.0003478664148133248,-0.0003478664148133248,-0.0,0.0,0.00011595547402976081,0.0,0.0,0.0,0.0,0.0006957328296266496,-0.00023191094805952162,-3.3881317890172014e-21,-0.00013914656301494688,0.0,0.0,4.638218888430856e-05,0.0,1.6940658945086007e-21,3.3881317890172014e-21,0.0007730365032330155,-0.0,-0.0009276437922380865,-0.0,0.0,0.0,0.0,0.00015460730355698615,0.0,0.0,0.0006957328296266496,-1.0164395367051604e-20,-0.00023191094805952162,-0.00013914656301494688,0.0,0.0,1.6940658945086007e-21,0.0,4.638218888430856e-05,0.0,0.0003567860694602132,-1.3552527156068805e-20,0.0,-0.00023785738449078053,0.0,0.0,3.3881317890172014e-21,0.0,0.0,2.3785738449078053e-05,7.0,7.0,12.0,0.05393313616514206,-0.011634942144155502,-0.011634942144155502,-0.007400762289762497,0.0007086168043315411,0.0009566326625645161,0.00058869703207165,0.0007086168043315411,0.00058869703207165,0.00028033190756104887,-0.011634942144155502,0.0075631216168403625,0.0009566326625645161,0.00058869703207165,-0.0008503401186317205,-0.0003188775444868952,-0.00019623234402388334,-8.402566836762659e-19,2.168404344971009e-19,-2.405573570202213e-19,-0.011634942144155502,0.0009566326625645161,0.0075631216168403625,0.00058869703207165,-8.843023969334896e-19,-0.0003188775444868952,1.6771252355635147e-19,-0.0008503401186317205,-0.00019623234402388334,-9.825582188149884e-20,-0.007400762289762497,0.00058869703207165,0.00058869703207165,0.0026351199485361576,0.0,2.710505431213761e-20,-0.00010703581938287243,3.2526065174565133e-19,-0.00010703581938287243,-0.00016819914162624627,0.0007086168043315411,-0.0008503401186317205,-8.843023969334896e-19,0.0,0.00014172335795592517,-2.946413464504763e-20,-4.909125003750713e-20,1.6176112707009436e-19,-1.3650317029696193e-20,2.795208725939191e-20,0.0009566326625645161,-0.0003188775444868952,-0.0003188775444868952,2.710505431213761e-20,-2.946413464504763e-20,0.00010629251482896507,-8.470329472543003e-21,-7.792703114739563e-20,-2.710505431213761e-20,1.0499342122824492e-20,0.00058869703207165,-0.00019623234402388334,1.6771252355635147e-19,-0.00010703581938287243,-4.909125003750713e-20,-8.470329472543003e-21,3.567860767361708e-05,-1.0164395367051604e-20,-1.6093625997831706e-20,3.239735667904545e-21,0.0007086168043315411,-8.402566836762659e-19,-0.0008503401186317205,3.2526065174565133e-19,1.6176112707009436e-19,-7.792703114739563e-20,-1.0164395367051604e-20,0.00014172335795592517,-8.470329472543003e-20,8.268492556318663e-21,0.00058869703207165,2.168404344971009e-19,-0.00019623234402388334,-0.00010703581938287243,-1.3650317029696193e-20,-2.710505431213761e-20,-1.6093625997831706e-20,-8.470329472543003e-20,3.567860767361708e-05,-1.64352883959105e-22,0.00028033190756104887,-2.405573570202213e-19,-9.825582188149884e-20,-0.00016819914162624627,2.795208725939191e-20,1.0499342122824492e-20,3.239735667904545e-21,8.268492556318663e-21,-1.64352883959105e-22,1.5290832379832864e-05,7.0,7.0,13.0,0.05025884136557579,-0.010778762400150299,-0.010778762400150299,-0.0063915676437318325,0.0006541077746078372,0.000883045548107475,0.000504597439430654,0.0006541077746078372,0.000504597439430654,0.00022426553186960518,-0.010778762400150299,0.006994281429797411,0.000883045548107475,0.000504597439430654,-0.0007849293760955334,-0.000294348516035825,-0.00016819914162624627,-9.215718466126788e-19,-5.285485590866834e-19,-4.819617469876969e-19,-0.010778762400150299,0.000883045548107475,0.006994281429797411,0.000504597439430654,-1.650020181251377e-18,-0.000294348516035825,-4.336808689942018e-19,-0.0007849293760955334,-0.00016819914162624627,-4.0488174878755556e-19,-0.0063915676437318325,0.000504597439430654,0.000504597439430654,0.0020846500992774963,-1.111307226797642e-18,-6.911788849595091e-19,-8.409957081312314e-05,-9.486769009248164e-19,-8.409957081312314e-05,-0.0001223266590386629,0.0006541077746078372,-0.0007849293760955334,-1.650020181251377e-18,-1.111307226797642e-18,0.00013082155783195049,1.7624188012041837e-19,1.3293786352931925e-19,1.419430945148485e-19,3.859763355548515e-20,4.743384504624082e-20,0.000883045548107475,-0.000294348516035825,-0.000294348516035825,-6.911788849595091e-19,1.7624188012041837e-19,9.811617201194167e-05,5.590417451878382e-20,-4.573977915173222e-20,4.912791094074942e-20,2.935029391324502e-20,0.000504597439430654,-0.00016819914162624627,-4.336808689942018e-19,-8.409957081312314e-05,1.3293786352931925e-19,5.590417451878382e-20,2.8033191483700648e-05,2.202285662861181e-20,2.1175823681357508e-20,1.4187499751715493e-20,0.0006541077746078372,-9.215718466126788e-19,-0.0007849293760955334,-9.486769009248164e-19,1.419430945148485e-19,-4.573977915173222e-20,2.202285662861181e-20,0.00013082155783195049,1.2281977735187355e-19,4.143977767260334e-20,0.000504597439430654,-5.285485590866834e-19,-0.00016819914162624627,-8.409957081312314e-05,3.859763355548515e-20,4.912791094074942e-20,2.1175823681357508e-20,1.2281977735187355e-19,2.8033191483700648e-05,1.1040711638901275e-20,0.00022426553186960518,-4.819617469876969e-19,-4.0488174878755556e-19,-0.0001223266590386629,4.743384504624082e-20,2.935029391324502e-20,1.4187499751715493e-20,4.143977767260334e-20,1.1040711638901275e-20,1.0193887646892108e-05,7.0,7.0,14.0,0.04705417901277542,-0.01004008762538433,-0.01004008762538433,-0.005575801711529493,0.0006073858239687979,0.0008199708536267281,0.0004373177944216877,0.0006073858239687979,0.0004373177944216877,0.00018221575010102242,-0.01004008762538433,0.006505101919174194,0.0008199708536267281,0.0004373177944216877,-0.0007288630004040897,-0.000273323617875576,-0.00014577258843928576,1.6263032587282567e-19,-2.981555974335137e-19,2.286988957586611e-20,-0.01004008762538433,0.0008199708536267281,0.006505101919174194,0.0004373177944216877,3.2864878353466853e-19,-0.000273323617875576,-3.2187251995663413e-19,-0.0007288630004040897,-0.00014577258843928576,1.3552527156068805e-20,-0.005575801711529493,0.0004373177944216877,0.0004373177944216877,0.0016777864657342434,9.486769009248164e-20,-2.710505431213761e-20,-6.727965956088156e-05,-1.3552527156068805e-20,-6.727965956088156e-05,-9.110787505051121e-05,0.0006073858239687979,-0.0007288630004040897,3.2864878353466853e-19,9.486769009248164e-20,0.00012147716188337654,3.1025913033858837e-20,-4.825544865200765e-20,-9.44239917043779e-20,1.9486607779424853e-20,-2.117582368135751e-22,0.0008199708536267281,-0.000273323617875576,-0.000273323617875576,-2.710505431213761e-20,3.1025913033858837e-20,9.110787505051121e-05,-5.082197683525802e-21,5.929230630780102e-20,8.470329472543003e-21,1.0090163581113856e-21,0.0004373177944216877,-0.00014577258843928576,-3.2187251995663413e-19,-6.727965956088156e-05,-4.825544865200765e-20,-5.082197683525802e-21,2.242655318696052e-05,3.3034284942917713e-20,2.202285662861181e-20,-4.824956024080139e-22,0.0006073858239687979,1.6263032587282567e-19,-0.0007288630004040897,-1.3552527156068805e-20,-9.44239917043779e-20,5.929230630780102e-20,3.3034284942917713e-20,0.00012147716188337654,-3.218725199566341e-20,-1.2770084372685574e-21,0.0004373177944216877,-2.981555974335137e-19,-0.00014577258843928576,-6.727965956088156e-05,1.9486607779424853e-20,8.470329472543003e-21,2.202285662861181e-20,-3.218725199566341e-20,2.242655318696052e-05,3.5836363104960537e-22,0.00018221575010102242,2.286988957586611e-20,1.3552527156068805e-20,-9.110787505051121e-05,-2.117582368135751e-22,1.0090163581113856e-21,-4.824956024080139e-22,-1.2770084372685574e-21,3.5836363104960537e-22,7.008297870925162e-06,7.0,7.0,15.0,0.04423436149954796,-0.009396258741617203,-0.009396258741617203,-0.004906962625682354,0.0005668934318237007,0.0007653061184100807,0.00038265305920504034,0.0005668934318237007,0.00038265305920504034,0.00015006001922301948,-0.009396258741617203,0.006079931743443012,0.0007653061184100807,0.00038265305920504034,-0.0006802721181884408,-0.00025510202976875007,-0.00012755101488437504,2.4123498337802474e-18,1.6263032587282567e-19,5.844527336054672e-20,-0.009396258741617203,0.0007653061184100807,0.006079931743443012,0.00038265305920504034,1.9227647902672618e-18,-0.00025510202976875007,9.147955830346444e-20,-0.0006802721181884408,-0.00012755101488437504,6.522153693858113e-20,-0.004906962625682354,0.00038265305920504034,0.00038265305920504034,0.0013704932061955333,-9.486769009248164e-20,1.8973538018496328e-19,-5.4664724302710965e-05,6.776263578034403e-20,-5.4664724302710965e-05,-6.925847264938056e-05,0.0005668934318237007,-0.0006802721181884408,1.9227647902672618e-18,-9.486769009248164e-20,0.00011337868636474013,-5.2514502267434454e-21,7.359955822464204e-20,-2.6524973228069486e-19,-2.7304921827645736e-20,-2.117582368135751e-22,0.0007653061184100807,-0.00025510202976875007,-0.00025510202976875007,1.8973538018496328e-19,-5.2514502267434454e-21,8.50340147735551e-05,-5.082197683525802e-21,-1.7448878713438587e-19,-8.470329472543003e-21,-9.072453950583386e-21,0.00038265305920504034,-0.00012755101488437504,9.147955830346444e-20,-5.4664724302710965e-05,7.359955822464204e-20,-5.082197683525802e-21,1.822157355491072e-05,-2.456395547037471e-20,1.0164395367051604e-20,-1.7604907595185963e-21,0.0005668934318237007,2.4123498337802474e-18,-0.0006802721181884408,6.776263578034403e-20,-2.6524973228069486e-19,-1.7448878713438587e-19,-2.456395547037471e-20,0.00011337868636474013,1.5246593050577406e-20,-2.453686894038465e-21,0.00038265305920504034,1.6263032587282567e-19,-0.00012755101488437504,-5.4664724302710965e-05,-2.7304921827645736e-20,-8.470329472543003e-21,1.0164395367051604e-20,1.5246593050577406e-20,1.822157355491072e-05,-2.1003717203467844e-21,0.00015006001922301948,5.844527336054672e-20,6.522153693858113e-20,-6.925847264938056e-05,-2.117582368135751e-22,-9.072453950583386e-21,-1.7604907595185963e-21,-2.453686894038465e-21,-2.1003717203467844e-21,4.947033630742226e-06,7.0,7.0,16.0,0.04173387959599495,-0.008830094709992409,-0.008830094709992409,-0.004351740702986717,0.0005314626032486558,0.000717474496923387,0.00033763505052775145,0.0005314626032486558,0.00033763505052775145,0.0001250500208698213,-0.008830094709992409,0.005706970114260912,0.000717474496923387,0.00033763505052775145,-0.0006377550889737904,-0.00023915816564112902,-0.00011254501441726461,-2.6020852139652106e-18,-6.776263578034403e-19,1.6940658945086007e-21,-0.008830094709992409,0.000717474496923387,0.005706970114260912,0.00033763505052775145,-3.110304982317791e-18,-0.00023915816564112902,-4.692562527788824e-19,-0.0006377550889737904,-0.00011254501441726461,2.964615315390051e-20,-0.004351740702986717,0.00033763505052775145,0.00033763505052775145,0.0011340250493958592,-3.5914196963582334e-19,-3.9302328752599536e-19,-4.501800867728889e-05,-1.1519648082658485e-19,-4.501800867728889e-05,-5.3592866606777534e-05,0.0005314626032486558,-0.0006377550889737904,-3.110304982317791e-18,-3.5914196963582334e-19,0.00010629251482896507,2.6731409074629166e-19,3.299747863683337e-20,2.627223594672215e-19,8.043132045189992e-20,-1.2705494208814505e-21,0.000717474496923387,-0.00023915816564112902,-0.00023915816564112902,-3.9302328752599536e-19,2.6731409074629166e-19,7.97193861217238e-05,6.183340514956392e-20,2.202285662861181e-19,5.505714157152952e-20,1.4538218272986224e-21,0.00033763505052775145,-0.00011254501441726461,-4.692562527788824e-19,-4.501800867728889e-05,3.299747863683337e-20,6.183340514956392e-20,1.5006002286099829e-05,3.8963515573697816e-20,3.8116482626443515e-21,-1.4570128138364521e-21,0.0005314626032486558,-2.6020852139652106e-18,-0.0006377550889737904,-1.1519648082658485e-19,2.627223594672215e-19,2.202285662861181e-19,3.8963515573697816e-20,0.00010629251482896507,1.4399560103323106e-20,-3.216813111803701e-21,0.00033763505052775145,-6.776263578034403e-19,-0.00011254501441726461,-4.501800867728889e-05,8.043132045189992e-20,5.505714157152952e-20,3.8116482626443515e-21,1.4399560103323106e-20,1.5006002286099829e-05,-2.3040457610907525e-21,0.0001250500208698213,1.6940658945086007e-21,2.964615315390051e-20,-5.3592866606777534e-05,-1.2705494208814505e-21,1.4538218272986224e-21,-1.4570128138364521e-21,-3.216813111803701e-21,-2.3040457610907525e-21,3.5728576222027186e-06,7.0,8.0,3.0,0.143601194024086,-0.0364583320915699,-0.032738097012043,-0.0677083358168602,0.0024801588151603937,0.0029761905316263437,0.0066964286379516125,0.0019841270986944437,0.0059523810632526875,0.008928571827709675,-0.0364583320915699,0.02504960261285305,0.0029761905316263437,0.0066964286379516125,-0.0029761905316263437,-0.0009920635493472219,-0.0022321429569274187,3.10660293548631e-19,0.0,-0.0,-0.032738097012043,0.0029761905316263437,0.019274376332759857,0.0059523810632526875,6.354298471952573e-21,-0.0008503401186317205,4.824089415063584e-19,-0.0019841270986944437,-0.001700680237263441,-0.0,-0.0677083358168602,0.0066964286379516125,0.0059523810632526875,0.1569940447807312,1.223474442974087e-19,4.800557677600099e-19,-0.0066964286379516125,9.32377650266725e-22,-0.0059523810632526875,-0.0535714291036129,0.0024801588151603937,-0.0029761905316263437,6.354298471952573e-21,1.223474442974087e-19,0.0004960317746736109,-2.7412519930762985e-20,-4.0782482509527656e-20,6.058842724183773e-21,0.0,-0.0,0.0029761905316263437,-0.0009920635493472219,-0.0008503401186317205,4.800557677600099e-19,-2.7412519930762985e-20,0.00028344671591185033,-1.6001859356156898e-19,-1.1150128408455148e-19,0.0,-0.0,0.0066964286379516125,-0.0022321429569274187,4.824089415063584e-19,-0.0066964286379516125,-4.0782482509527656e-20,-1.6001859356156898e-19,0.0022321429569274187,-3.1079256691794095e-22,0.0,-0.0,0.0019841270986944437,3.10660293548631e-19,-0.0019841270986944437,9.32377650266725e-22,6.058842724183773e-21,-1.1150128408455148e-19,-3.1079256691794095e-22,0.00028344671591185033,0.0,-0.0,0.0059523810632526875,0.0,-0.001700680237263441,-0.0059523810632526875,0.0,0.0,0.0,0.0,0.001700680237263441,-0.0,0.008928571827709675,-0.0,-0.0,-0.0535714291036129,-0.0,-0.0,-0.0,-0.0,-0.0,0.02678571455180645,7.0,8.0,4.0,0.11741071194410324,-0.02834821492433548,-0.02544642798602581,-0.04330357164144516,0.0018601190531626344,0.0022321429569274187,0.004017857369035482,0.0014880952658131719,0.0035714285913854837,0.004464285913854837,-0.02834821492433548,0.01912202313542366,0.0022321429569274187,0.004017857369035482,-0.0022321429569274187,-0.0007440476329065859,-0.0013392857508733869,-2.7971083979147074e-19,5.938922214878897e-20,-0.0,-0.02544642798602581,0.0022321429569274187,0.014710884541273117,0.0035714285913854837,-5.464057212257811e-20,-0.0006377550889737904,2.7116854560563563e-19,-0.0014880952658131719,-0.0010204081190750003,-0.0,-0.04330357164144516,0.004017857369035482,0.0035714285913854837,0.06011904776096344,4.6283427453461357e-20,3.5405165524253687e-19,-0.0026785715017467737,7.424880453261667e-20,-0.0023809524718672037,-0.013392857275903225,0.0018601190531626344,-0.0022321429569274187,-5.464057212257811e-20,4.6283427453461357e-20,0.00037202381645329297,1.6045198773493275e-20,-1.7858648479260872e-20,-9.600307464698023e-22,2.0835770862447953e-21,-0.0,0.0022321429569274187,-0.0007440476329065859,-0.0006377550889737904,3.5405165524253687e-19,1.6045198773493275e-20,0.00021258502965793014,-9.330179195647901e-20,6.553510947657261e-20,-2.1184649633869964e-20,-0.0,0.004017857369035482,-0.0013392857508733869,2.7116854560563563e-19,-0.0026785715017467737,-1.7858648479260872e-20,-9.330179195647901e-20,0.0008928571478463709,9.936085036154515e-22,8.09200440417349e-22,-0.0,0.0014880952658131719,-2.7971083979147074e-19,-0.0014880952658131719,7.424880453261667e-20,-9.600307464698023e-22,6.553510947657261e-20,9.936085036154515e-22,0.00021258502965793014,-2.2065608295348876e-20,-0.0,0.0035714285913854837,5.938922214878897e-20,-0.0010204081190750003,-0.0023809524718672037,2.0835770862447953e-21,-2.1184649633869964e-20,8.09200440417349e-22,-2.2065608295348876e-20,0.0006802721181884408,-0.0,0.004464285913854837,-0.0,-0.0,-0.013392857275903225,-0.0,-0.0,-0.0,-0.0,-0.0,0.004464285913854837,7.0,8.0,5.0,0.09944728016853333,-0.02321428619325161,-0.02083333395421505,-0.03014455735683441,0.0014880952658131719,0.0017857142956927419,0.0026785715017467737,0.0011904762359336019,0.0023809524718672037,0.0025510203558951616,-0.02321428619325161,0.015476190485060215,0.0017857142956927419,0.0026785715017467737,-0.0017857142956927419,-0.0005952381179668009,-0.0008928571478463709,-1.8973538018496328e-19,1.3552527156068805e-20,-0.0,-0.02083333395421505,0.0017857142956927419,0.011904762126505375,0.0023809524718672037,2.1876941645440028e-20,-0.0005102040595375001,1.9801238203871615e-19,-0.0011904762359336019,-0.0006802721181884408,-0.0,-0.03014455735683441,0.0026785715017467737,0.0023809524718672037,0.030378401279449463,8.60584362886421e-20,2.246732403619128e-19,-0.0013392857508733869,8.131516293641283e-20,-0.0011904762359336019,-0.005102040711790323,0.0014880952658131719,-0.0017857142956927419,2.1876941645440028e-20,8.60584362886421e-20,0.00029761905898340046,-2.4220641588835392e-20,-2.5039988219376174e-20,3.3996573876303914e-21,4.149745867712212e-22,-0.0,0.0017857142956927419,-0.0005952381179668009,-0.0005102040595375001,2.246732403619128e-19,-2.4220641588835392e-20,0.0001700680295471102,-6.374452840668527e-20,6.098637220230962e-20,-3.3881317890172014e-21,-0.0,0.0026785715017467737,-0.0008928571478463709,1.9801238203871615e-19,-0.0013392857508733869,-2.5039988219376174e-20,-6.374452840668527e-20,0.00044642857392318547,-1.918184382638413e-21,-4.8387339531063675e-22,-0.0,0.0011904762359336019,-1.8973538018496328e-19,-0.0011904762359336019,8.131516293641283e-20,3.3996573876303914e-21,6.098637220230962e-20,-1.918184382638413e-21,0.0001700680295471102,-1.3552527156068805e-20,-0.0,0.0023809524718672037,1.3552527156068805e-20,-0.0006802721181884408,-0.0011904762359336019,4.149745867712212e-22,-3.3881317890172014e-21,-4.8387339531063675e-22,-1.3552527156068805e-20,0.0003401360590942204,-0.0,0.0025510203558951616,-0.0,-0.0,-0.005102040711790323,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012755101779475808,7.0,8.0,6.0,0.0863095223903656,-0.019664116203784943,-0.01764455810189247,-0.022215135395526886,0.0012400794075801969,0.0014880952658131719,0.0019132653251290321,0.0009920635493472219,0.001700680237263441,0.0015943878097459674,-0.019664116203784943,0.013003118336200714,0.0014880952658131719,0.0019132653251290321,-0.0014880952658131719,-0.0004960317746736109,-0.0006377550889737904,2.168404344971009e-19,-2.0328790734103208e-19,-6.63797242130049e-19,-0.01764455810189247,0.0014880952658131719,0.010001619346439838,0.001700680237263441,-4.740868712339184e-20,-0.00042517005931586027,-6.85893704908481e-20,-0.0009920635493472219,-0.00048590864753350616,-5.057502723325914e-19,-0.022215135395526886,0.0019132653251290321,0.001700680237263441,0.017655186355113983,2.6273499901316352e-21,1.2117323556849553e-19,-0.0007653061184100807,2.710505431213761e-20,-0.0006802721181884408,-0.00239158165641129,0.0012400794075801969,-0.0014880952658131719,-4.740868712339184e-20,2.6273499901316352e-21,0.00024801588733680546,1.5496354743541538e-20,-3.267924836113487e-21,-5.555619946641483e-22,2.050407062902062e-21,1.3832227993005577e-35,0.0014880952658131719,-0.0004960317746736109,-0.00042517005931586027,1.2117323556849553e-19,1.5496354743541538e-20,0.00014172335795592517,-4.0074690554995026e-20,-6.098637220230962e-20,3.3881317890172014e-21,-3.565626497774579e-35,0.0019132653251290321,-0.0006377550889737904,-6.85893704908481e-20,-0.0007653061184100807,-3.267924836113487e-21,-4.0074690554995026e-20,0.00025510202976875007,1.2037062152420224e-35,7.552537686233327e-20,2.6551890202189845e-19,0.0009920635493472219,2.168404344971009e-19,-0.0009920635493472219,2.710505431213761e-20,-5.555619946641483e-22,-6.098637220230962e-20,1.2037062152420224e-35,0.00014172335795592517,-6.776263578034403e-21,7.050990206836701e-36,0.001700680237263441,-2.0328790734103208e-19,-0.00048590864753350616,-0.0006802721181884408,2.050407062902062e-21,3.3881317890172014e-21,7.552537686233327e-20,-6.776263578034403e-21,0.00019436345610301942,2.0230011151797598e-19,0.0015943878097459674,-6.63797242130049e-19,-5.057502723325914e-19,-0.00239158165641129,1.3832227993005577e-35,-3.565626497774579e-35,2.6551890202189845e-19,7.050990206836701e-36,2.0230011151797598e-19,0.00047831633128225803,7.0,8.0,7.0,0.0762648805975914,-0.017059948295354843,-0.015306122601032257,-0.017059948295354843,0.0010629252064973116,0.0012755101779475808,0.001434948993846774,0.0008503401186317205,0.0012755101779475808,0.0010629252064973116,-0.017059948295354843,0.011213860474526882,0.0012755101779475808,0.001434948993846774,-0.0012755101779475808,-0.00042517005931586027,-0.00047831633128225803,-2.574980159653073e-19,6.144718935168409e-19,-8.673617379884035e-19,-0.015306122601032257,0.0012755101779475808,0.008624878711998463,0.0012755101779475808,1.3754871043535761e-18,-0.00036443150020204484,-7.792703114739563e-19,-0.0008503401186317205,-0.00036443150020204484,-2.8189256484623115e-18,-0.017059948295354843,0.001434948993846774,0.0012755101779475808,0.011213860474526882,7.481760752602052e-19,-9.360391321286547e-19,-0.00047831633128225803,-2.781523849885114e-18,-0.00042517005931586027,-0.0012755101779475808,0.0010629252064973116,-0.0012755101779475808,1.3754871043535761e-18,7.481760752602052e-19,0.00021258502965793014,-9.13816084867108e-20,-4.738912559437467e-20,-9.785298492318551e-20,-9.018142111668464e-20,-2.8938429054027505e-20,0.0012755101779475808,-0.00042517005931586027,-0.00036443150020204484,-9.360391321286547e-19,-9.13816084867108e-20,0.00012147716188337654,5.43253969221498e-20,1.7618285302889447e-19,2.1937107725893323e-20,1.3813302306524683e-19,0.001434948993846774,-0.00047831633128225803,-7.792703114739563e-19,-0.00047831633128225803,-4.738912559437467e-20,5.43253969221498e-20,0.0001594387722434476,1.0757318430129614e-19,3.3881317890172014e-21,2.303929616531697e-19,0.0008503401186317205,-2.574980159653073e-19,-0.0008503401186317205,-2.781523849885114e-18,-9.785298492318551e-20,1.7618285302889447e-19,1.0757318430129614e-19,0.00012147716188337654,1.7618285302889447e-19,3.1848438816761693e-19,0.0012755101779475808,6.144718935168409e-19,-0.00036443150020204484,-0.00042517005931586027,-9.018142111668464e-20,2.1937107725893323e-20,3.3881317890172014e-21,1.7618285302889447e-19,0.00012147716188337654,1.0164395367051604e-19,0.0010629252064973116,-8.673617379884035e-19,-2.8189256484623115e-18,-0.0012755101779475808,-2.8938429054027505e-20,1.3813302306524683e-19,2.303929616531697e-19,3.1848438816761693e-19,1.0164395367051604e-19,0.00021258502965793014,7.0,8.0,8.0,0.0683283731341362,-0.01506696455180645,-0.013516864739358425,-0.013516864739358425,0.0009300595265813172,0.0011160714784637094,0.0011160714784637094,0.0007440476329065859,0.0009920635493472219,0.0007440476329065859,-0.01506696455180645,0.0098586305975914,0.0011160714784637094,0.0011160714784637094,-0.0011160714784637094,-0.00037202381645329297,-0.00037202381645329297,-1.2197274440461925e-19,-5.914981798494023e-20,-1.3552527156068805e-19,-0.013516864739358425,0.0011160714784637094,0.007582199759781361,0.0009920635493472219,-8.072072703754265e-21,-0.0003188775444868952,2.0328790734103208e-20,-0.0007440476329065859,-0.00028344671591185033,-1.6263032587282567e-19,-0.013516864739358425,0.0011160714784637094,0.0009920635493472219,0.007582199759781361,-1.3578530030988807e-20,8.524050975919201e-20,-0.0003188775444868952,-1.3382839616015361e-20,-0.00028344671591185033,-0.0007440476329065859,0.0009300595265813172,-0.0011160714784637094,-8.072072703754265e-21,-1.3578530030988807e-20,0.00018601190822664648,2.410586512915967e-22,-2.9844357422454295e-21,5.624701947615753e-22,8.82912613143159e-22,2.5677643093561906e-21,0.0011160714784637094,-0.00037202381645329297,-0.0003188775444868952,8.524050975919201e-20,2.410586512915967e-22,0.00010629251482896507,-2.793707845491805e-20,3.3881317890172014e-20,-1.4924953482129608e-21,4.9507703770030075e-22,0.0011160714784637094,-0.00037202381645329297,2.0328790734103208e-20,-0.0003188775444868952,-2.9844357422454295e-21,-2.793707845491805e-20,0.00010629251482896507,8.470329472543003e-22,1.8634724839594607e-20,4.0657581468206416e-20,0.0007440476329065859,-1.2197274440461925e-19,-0.0007440476329065859,-1.3382839616015361e-20,5.624701947615753e-22,3.3881317890172014e-20,8.470329472543003e-22,0.00010629251482896507,0.0,1.6940658945086007e-21,0.0009920635493472219,-5.914981798494023e-20,-0.00028344671591185033,-0.00028344671591185033,8.82912613143159e-22,-1.4924953482129608e-21,1.8634724839594607e-20,0.0,8.09847770142369e-05,4.743384504624082e-20,0.0007440476329065859,-1.3552527156068805e-19,-1.6263032587282567e-19,-0.0007440476329065859,2.5677643093561906e-21,4.9507703770030075e-22,4.0657581468206416e-20,1.6940658945086007e-21,4.743384504624082e-20,0.00010629251482896507,7.0,8.0,9.0,0.061895743012428284,-0.013492063619196415,-0.012103174813091755,-0.01097582932561636,0.0008267195662483573,0.0009920635493472219,0.0008928571478463709,0.0006613756413571537,0.0007936508045531809,0.0005411255406215787,-0.013492063619196415,0.008796296082437038,0.0009920635493472219,0.0008928571478463709,-0.0009920635493472219,-0.0003306878206785768,-0.00029761905898340046,1.1858461261560205e-19,2.0328790734103208e-20,1.2197274440461925e-19,-0.012103174813091755,0.0009920635493472219,0.0067649283446371555,0.0007936508045531809,0.0,-0.00028344671591185033,1.3552527156068805e-20,-0.0006613756413571537,-0.00022675737272948027,5.421010862427522e-20,-0.01097582932561636,0.0008928571478463709,0.0007936508045531809,0.005372281651943922,-0.0,-9.319423101186584e-21,-0.00022321428696159273,-2.4985034023016816e-20,-0.00019841270113829523,-0.00046382189611904323,0.0008267195662483573,-0.0009920635493472219,0.0,-0.0,0.0001653439103392884,0.0,0.0,0.0,0.0,0.0,0.0009920635493472219,-0.0003306878206785768,-0.00028344671591185033,-9.319423101186584e-21,0.0,9.448223863728344e-05,3.8721506376569864e-22,-3.7269449679189215e-20,3.441911705965709e-22,8.764042203742725e-22,0.0008928571478463709,-0.00029761905898340046,1.3552527156068805e-20,-0.00022321428696159273,0.0,3.8721506376569864e-22,7.440476474585012e-05,8.470329472543003e-22,-5.082197683525802e-21,-3.049318610115481e-20,0.0006613756413571537,1.1858461261560205e-19,-0.0006613756413571537,-2.4985034023016816e-20,0.0,-3.7269449679189215e-20,8.470329472543003e-22,9.448223863728344e-05,3.3881317890172014e-21,1.6940658945086007e-21,0.0007936508045531809,2.0328790734103208e-20,-0.00022675737272948027,-0.00019841270113829523,0.0,3.441911705965709e-22,-5.082197683525802e-21,3.3881317890172014e-21,5.668934318237007e-05,-1.6940658945086007e-20,0.0005411255406215787,1.2197274440461925e-19,5.421010862427522e-20,-0.00046382189611904323,0.0,8.764042203742725e-22,-3.049318610115481e-20,1.6940658945086007e-21,-1.6940658945086007e-20,5.7977737014880404e-05,7.0,8.0,10.0,0.05657467618584633,-0.01221590954810381,-0.010957792401313782,-0.00909090880304575,0.0007440476329065859,0.0008928571478463709,0.0007305194740183651,0.0005952381179668009,0.0006493506371043622,0.000405844155466184,-0.01221590954810381,0.007941016927361488,0.0008928571478463709,0.0007305194740183651,-0.0008928571478463709,-0.00029761905898340046,-0.00024350649619009346,-6.018531076210112e-36,6.776263578034403e-21,6.776263578034403e-21,-0.010957792401313782,0.0008928571478463709,0.006106988061219454,0.0006493506371043622,0.0,-0.00025510202976875007,0.0,-0.0005952381179668009,-0.00018552875553723425,-6.776263578034403e-21,-0.00909090880304575,0.0007305194740183651,0.0006493506371043622,0.003947961609810591,-0.0,-0.0,-0.00016233765927609056,1.441848056736555e-19,-0.00014430013834498823,-0.0003043831093236804,0.0007440476329065859,-0.0008928571478463709,0.0,-0.0,0.00014880952949170023,0.0,0.0,0.0,0.0,0.0,0.0008928571478463709,-0.00029761905898340046,-0.00025510202976875007,-0.0,0.0,8.50340147735551e-05,0.0,0.0,0.0,0.0,0.0007305194740183651,-0.00024350649619009346,0.0,-0.00016233765927609056,0.0,0.0,5.411255551734939e-05,0.0,-8.470329472543003e-22,1.6940658945086007e-21,0.0005952381179668009,-6.018531076210112e-36,-0.0005952381179668009,1.441848056736555e-19,0.0,0.0,0.0,8.50340147735551e-05,-4.119565922549789e-20,-3.009265538105056e-36,0.0006493506371043622,6.776263578034403e-21,-0.00018552875553723425,-0.00014430013834498823,0.0,0.0,-8.470329472543003e-22,-4.119565922549789e-20,4.122861355426721e-05,1.6940658945086007e-21,0.000405844155466184,6.776263578034403e-21,-6.776263578034403e-21,-0.0003043831093236804,0.0,0.0,1.6940658945086007e-21,-3.009265538105056e-36,1.6940658945086007e-21,3.382034628884867e-05,7.0,8.0,11.0,0.052098941057920456,-0.01116071455180645,-0.010010822676122189,-0.007653804495930672,0.0006764069548808038,0.000811688310932368,0.0006087662186473608,0.0005411255406215787,0.0005411255406215787,0.00031218782532960176,-0.01116071455180645,0.007237554062157869,0.000811688310932368,0.0006087662186473608,-0.000811688310932368,-0.00027056277031078935,-0.000202922077733092,1.7001569423467115e-18,4.336808689942018e-19,-1.0164395367051604e-19,-0.010010822676122189,0.000811688310932368,0.005565862637013197,0.0005411255406215787,2.6777178528885373e-18,-0.00023191094805952162,-5.624298769768554e-19,-0.0005411255406215787,-0.00015460730355698615,-3.7269449679189215e-19,-0.007653804495930672,0.0006087662186473608,0.0005411255406215787,0.0029876374173909426,2.6033369450271565e-19,-2.241600264906119e-19,-0.00012175324809504673,-8.434507382140629e-19,-0.00010822511103469878,-0.00020812520233448595,0.0006764069548808038,-0.000811688310932368,2.6777178528885373e-18,2.6033369450271565e-19,0.00013528138515539467,-1.115715815119214e-19,-2.6789592019524263e-34,-2.6033369450271565e-19,-7.438105003304858e-20,-1.7453740121009325e-34,0.000811688310932368,-0.00027056277031078935,-0.00023191094805952162,-2.241600264906119e-19,-1.115715815119214e-19,7.730365177849308e-05,1.716485881841769e-20,-1.2529709281359037e-19,-2.196719642067494e-20,1.9805605459011954e-20,0.0006087662186473608,-0.000202922077733092,-5.624298769768554e-19,-0.00012175324809504673,-2.6789592019524263e-34,1.716485881841769e-20,4.058441481902264e-05,6.007700344108121e-20,1.7787691892340307e-20,6.776263578034403e-21,0.0005411255406215787,1.7001569423467115e-18,-0.0005411255406215787,-8.434507382140629e-19,-2.6033369450271565e-19,-1.2529709281359037e-19,6.007700344108121e-20,7.730365177849308e-05,2.3124258923336102e-20,4.6213078327303136e-20,0.0005411255406215787,4.336808689942018e-19,-0.00015460730355698615,-0.00010822511103469878,-7.438105003304858e-20,-2.196719642067494e-20,1.7787691892340307e-20,2.3124258923336102e-20,3.092145925620571e-05,-8.470329472543003e-21,0.00031218782532960176,-1.0164395367051604e-19,-3.7269449679189215e-19,-0.00020812520233448595,-1.7453740121009325e-34,1.9805605459011954e-20,6.776263578034403e-21,4.6213078327303136e-20,-8.470329472543003e-21,2.0812520233448595e-05,7.0,8.0,12.0,0.04828133061528206,-0.010273580439388752,-0.009214743971824646,-0.006532901432365179,0.0006200397037900984,0.0007440476329065859,0.000515109917614609,0.0004960317746736109,0.0004578754596877843,0.0002452904300298542,-0.010273580439388752,0.006648733280599117,0.0007440476329065859,0.000515109917614609,-0.0007440476329065859,-0.00024801588733680546,-0.00017170330102089792,-0.0,0.0,1.0164395367051604e-19,-0.009214743971824646,0.0007440476329065859,0.005112942773848772,0.0004578754596877843,0.0,-0.00021258502965793014,0.0,-0.0004960317746736109,-0.00013082155783195049,-6.776263578034403e-21,-0.006532901432365179,0.000515109917614609,0.0004578754596877843,0.002316136145964265,-0.0,-0.0,-9.365634468849748e-05,-0.0,-8.325008093379438e-05,-0.0001471742580179125,0.0006200397037900984,-0.0007440476329065859,0.0,-0.0,0.00012400794366840273,0.0,0.0,0.0,0.0,0.0,0.0007440476329065859,-0.00024801588733680546,-0.00021258502965793014,-0.0,0.0,7.086167897796258e-05,0.0,0.0,0.0,0.0,0.000515109917614609,-0.00017170330102089792,0.0,-9.365634468849748e-05,0.0,0.0,3.121878035017289e-05,0.0,0.0,-1.9481757786848908e-20,0.0004960317746736109,-0.0,-0.0004960317746736109,-0.0,0.0,0.0,0.0,7.086167897796258e-05,0.0,0.0,0.0004578754596877843,0.0,-0.00013082155783195049,-8.325008093379438e-05,0.0,0.0,0.0,0.0,2.3785738449078053e-05,8.470329472543003e-22,0.0002452904300298542,1.0164395367051604e-19,-6.776263578034403e-21,-0.0001471742580179125,0.0,0.0,-1.9481757786848908e-20,0.0,8.470329472543003e-22,1.3379477422859054e-05,7.0,8.0,13.0,0.044986262917518616,-0.009517268277704716,-0.008536106906831264,-0.005641679745167494,0.0005723443464376032,0.0006868132040835917,0.0004415227740537375,0.0004578754596877843,0.0003924646880477667,0.00019623234402388334,-0.009517268277704716,0.006148613523691893,0.0006868132040835917,0.0004415227740537375,-0.0006868132040835917,-0.00022893772984389216,-0.0001471742580179125,2.9181225950857426e-20,-1.1858461261560205e-19,1.0164395367051604e-19,-0.008536106906831264,0.0006868132040835917,0.004728265106678009,0.0003924646880477667,-6.142953938536374e-19,-0.00019623234402388334,3.015437292225309e-19,-0.0004578754596877843,-0.00011213276593480259,5.251604272976662e-19,-0.005641679745167494,0.0004415227740537375,0.0003924646880477667,0.0018322451505810022,-1.7390179909220293e-19,3.1488615250301126e-19,-7.358712900895625e-05,8.696293502401411e-19,-6.541077891597524e-05,-0.00010703581938287243,0.0005723443464376032,-0.0006868132040835917,-6.142953938536374e-19,-1.7390179909220293e-19,0.00011446886492194608,3.6177273194793015e-21,-1.3626328791932155e-20,5.0834387775620584e-20,2.835659796597595e-20,6.601868620969579e-21,0.0006868132040835917,-0.00022893772984389216,-0.00019623234402388334,3.1488615250301126e-19,3.6177273194793015e-21,6.541077891597524e-05,-2.062902498471728e-20,-5.3984698676180254e-20,-1.2464438107121354e-20,-2.056010403758542e-20,0.0004415227740537375,-0.0001471742580179125,3.015437292225309e-19,-7.358712900895625e-05,-1.3626328791932155e-20,-2.062902498471728e-20,2.4529043002985418e-05,-3.2679249976722004e-20,-8.893845946170154e-21,-1.5246593050577406e-20,0.0004578754596877843,2.9181225950857426e-20,-0.0004578754596877843,8.696293502401411e-19,5.0834387775620584e-20,-5.3984698676180254e-20,-3.2679249976722004e-20,6.541077891597524e-05,-5.257864996237923e-20,-5.0174200711575234e-20,0.0003924646880477667,-1.1858461261560205e-19,-0.00011213276593480259,-6.541077891597524e-05,2.835659796597595e-20,-1.2464438107121354e-20,-8.893845946170154e-21,-5.257864996237923e-20,1.8688793716137297e-05,-2.1175823681357508e-20,0.00019623234402388334,1.0164395367051604e-19,5.251604272976662e-19,-0.00010703581938287243,6.601868620969579e-21,-2.056010403758542e-20,-1.5246593050577406e-20,-5.0174200711575234e-20,-2.1175823681357508e-20,8.91965191840427e-06,7.0,8.0,14.0,0.04211309552192688,-0.008864795789122581,-0.007950680330395699,-0.004921343643218279,0.0005314626032486558,0.0006377550889737904,0.00038265305920504034,0.00042517005931586027,0.0003401360590942204,0.0001594387722434476,-0.008864795789122581,0.0057185376062989235,0.0006377550889737904,0.00038265305920504034,-0.0006377550889737904,-0.00021258502965793014,-0.00012755101488437504,1.0299920638612292e-18,2.0328790734103208e-19,-1.1689054672109345e-19,-0.007950680330395699,0.0006377550889737904,0.00439747329801321,0.0003401360590942204,8.571973426213519e-19,-0.00018221575010102242,-3.2017845406212553e-19,-0.00042517005931586027,-9.718172805150971e-05,6.945670167485263e-20,-0.004921343643218279,0.00038265305920504034,0.0003401360590942204,0.0014746042434126139,-2.981555974335137e-19,-9.486769009248164e-20,-5.886970029678196e-05,1.8295911660692887e-19,-5.232862531556748e-05,-7.97193861217238e-05,0.0005314626032486558,-0.0006377550889737904,8.571973426213519e-19,-2.981555974335137e-19,0.00010629251482896507,6.48711677880281e-20,8.247056623108749e-20,-1.206774312641495e-19,-2.6757959956704984e-20,9.529120656610879e-21,0.0006377550889737904,-0.00021258502965793014,-0.00018221575010102242,-9.486769009248164e-20,6.48711677880281e-20,6.073858094168827e-05,4.2351647362715017e-20,-1.0333801956502464e-19,-2.286988957586611e-20,3.2154642984952924e-21,0.00038265305920504034,-0.00012755101488437504,-3.2017845406212553e-19,-5.886970029678196e-05,8.247056623108749e-20,4.2351647362715017e-20,1.9623234038590454e-05,1.3552527156068805e-20,1.0164395367051604e-20,7.251756720933147e-21,0.00042517005931586027,1.0299920638612292e-18,-0.00042517005931586027,1.8295911660692887e-19,-1.206774312641495e-19,-1.0333801956502464e-19,1.3552527156068805e-20,6.073858094168827e-05,-2.625802136488331e-20,-8.945573815023128e-21,0.0003401360590942204,2.0328790734103208e-19,-9.718172805150971e-05,-5.232862531556748e-05,-2.6757959956704984e-20,-2.286988957586611e-20,1.0164395367051604e-20,-2.625802136488331e-20,1.4951035154808778e-05,-2.670642070764989e-21,0.0001594387722434476,-1.1689054672109345e-19,6.945670167485263e-20,-7.97193861217238e-05,9.529120656610879e-21,3.2154642984952924e-21,7.251756720933147e-21,-8.945573815023128e-21,-2.670642070764989e-21,6.1322607507463545e-06,7.0,8.0,15.0,0.039585523307323456,-0.008296131156384945,-0.0074404762126505375,-0.004330794792622328,0.0004960317746736109,0.0005952381179668009,0.0003348214377183467,0.00039682540227659047,0.00029761905898340046,0.00013130252773407847,-0.008296131156384945,0.005344741977751255,0.0005952381179668009,0.0003348214377183467,-0.0005952381179668009,-0.00019841270113829523,-0.00011160714348079637,-3.7947076036992655e-19,-2.981555974335137e-19,-2.1175823681357508e-20,-0.0074404762126505375,0.0005952381179668009,0.004109977278858423,0.00029761905898340046,-2.337810934421869e-19,-0.0001700680295471102,-6.378158092824882e-19,-0.00039682540227659047,-8.50340147735551e-05,8.343274530454858e-20,-0.004330794792622328,0.0003348214377183467,0.00029761905898340046,0.0012044962495565414,-2.236166980751353e-19,-2.303929616531697e-19,-4.783163240063004e-05,6.776263578034403e-21,-4.251700738677755e-05,-6.0601163568207994e-05,0.0004960317746736109,-0.0005952381179668009,-2.337810934421869e-19,-2.236166980751353e-19,9.920635056914762e-05,5.761238003188825e-20,4.665106399930143e-20,-8.631207215955331e-21,1.7236794451141392e-20,1.6940658945086007e-21,0.0005952381179668009,-0.00019841270113829523,-0.0001700680295471102,-2.303929616531697e-19,5.761238003188825e-20,5.668934318237007e-05,4.658681209898652e-20,3.4728350837426314e-20,1.1011428314305904e-20,2.336748475855007e-21,0.0003348214377183467,-0.00011160714348079637,-6.378158092824882e-19,-4.783163240063004e-05,4.665106399930143e-20,4.658681209898652e-20,1.594387686054688e-05,4.489274620447792e-20,2.202285662861181e-20,1.729485017090104e-21,0.00039682540227659047,-3.7947076036992655e-19,-0.00039682540227659047,6.776263578034403e-21,-8.631207215955331e-21,3.4728350837426314e-20,4.489274620447792e-20,5.668934318237007e-05,-1.3976043629695956e-20,-9.656457195536461e-21,0.00029761905898340046,-2.981555974335137e-19,-8.50340147735551e-05,-4.251700738677755e-05,1.7236794451141392e-20,1.1011428314305904e-20,2.202285662861181e-20,-1.3976043629695956e-20,1.2147716006438714e-05,-1.956394431993716e-21,0.00013130252773407847,-2.1175823681357508e-20,8.343274530454858e-20,-6.0601163568207994e-05,1.6940658945086007e-21,2.336748475855007e-21,1.729485017090104e-21,-9.656457195536461e-21,-1.956394431993716e-21,4.328654540586285e-06,7.0,8.0,16.0,0.03734462708234787,-0.007796087302267551,-0.006991859059780836,-0.0038405987434089184,0.0004650297632906586,0.0005580357392318547,0.00029543068376369774,0.00037202381645329297,0.00026260505546815693,0.00010941876826109365,-0.007796087302267551,0.005016850307583809,0.0005580357392318547,0.00029543068376369774,-0.0005580357392318547,-0.00018601190822664648,-9.847689216258004e-05,2.168404344971009e-19,-2.439454888092385e-19,-3.9979955110402976e-19,-0.006991859059780836,0.0005580357392318547,0.003857793053612113,0.00026260505546815693,1.2417503006748043e-18,-0.0001594387722434476,-3.2526065174565133e-19,-0.00037202381645329297,-7.503000961150974e-05,-2.5029823591364575e-19,-0.0038405987434089184,0.00029543068376369774,0.00026260505546815693,0.0009966486832126975,-5.692061405548898e-19,-5.353248226647178e-19,-3.939075759262778e-05,-4.1335207826009857e-19,-3.501400715322234e-05,-4.689375782618299e-05,0.0004650297632906586,-0.0005580357392318547,1.2417503006748043e-18,-5.692061405548898e-19,9.300595411332324e-05,-1.3262009692712818e-19,3.733903331996856e-23,-1.0123989532832949e-19,-4.251272543893195e-21,3.525774642946025e-20,0.0005580357392318547,-0.00018601190822664648,-0.0001594387722434476,-5.353248226647178e-19,-1.3262009692712818e-19,5.3146257414482534e-05,8.470329472543003e-21,7.538593230563273e-20,3.8116482626443515e-20,2.4591510924530383e-20,0.00029543068376369774,-9.847689216258004e-05,-3.2526065174565133e-19,-3.939075759262778e-05,3.733903331996856e-23,8.470329472543003e-21,1.3130252227711026e-05,2.286988957586611e-20,1.8211208365967457e-20,1.044979610439584e-20,0.00037202381645329297,2.168404344971009e-19,-0.00037202381645329297,-4.1335207826009857e-19,-1.0123989532832949e-19,7.538593230563273e-20,2.286988957586611e-20,5.3146257414482534e-05,1.9905274260476058e-20,1.8657840660306343e-20,0.00026260505546815693,-2.439454888092385e-19,-7.503000961150974e-05,-3.501400715322234e-05,-4.251272543893195e-21,3.8116482626443515e-20,1.8211208365967457e-20,1.9905274260476058e-20,1.0004001524066553e-05,5.2357087535043626e-21,0.00010941876826109365,-3.9979955110402976e-19,-2.5029823591364575e-19,-4.689375782618299e-05,3.525774642946025e-20,2.4591510924530383e-20,1.044979610439584e-20,1.8657840660306343e-20,5.2357087535043626e-21,3.1262504762707977e-06,7.0,9.0,3.0,0.13044331967830658,-0.032671958208084106,-0.026623375713825226,-0.06071428582072258,0.002204585587605834,0.0023809524718672037,0.0059523810632526875,0.0014430014416575432,0.004761904943734407,0.007936508394777775,-0.032671958208084106,0.022354496642947197,0.0023809524718672037,0.0059523810632526875,-0.0026455025654286146,-0.0007936508045531809,-0.0019841270986944437,-1.8973538018496328e-19,-1.631982273686088e-20,2.9347504001934543e-33,-0.026623375713825226,0.0023809524718672037,0.013664708472788334,0.004761904943734407,0.0,-0.0005952381179668009,0.0,-0.0012368584284558892,-0.0011904762359336019,2.1195712412005733e-17,-0.06071428582072258,0.0059523810632526875,0.004761904943734407,0.14007936418056488,0.0,-1.631982273686088e-20,-0.0059523810632526875,6.7268817226455995e-18,-0.004761904943734407,-0.0476190485060215,0.002204585587605834,-0.0026455025654286146,0.0,0.0,0.00044091709423810244,0.0,0.0,0.0,0.0,-0.0,0.0023809524718672037,-0.0007936508045531809,-0.0005952381179668009,-1.631982273686088e-20,0.0,0.00019841270113829523,0.0,4.2251057676584594e-20,4.07995568421522e-21,-7.336876000483636e-34,0.0059523810632526875,-0.0019841270986944437,0.0,-0.0059523810632526875,0.0,0.0,0.0019841270986944437,0.0,0.0,-0.0,0.0014430014416575432,-1.8973538018496328e-19,-0.0012368584284558892,6.7268817226455995e-18,0.0,4.2251057676584594e-20,0.0,0.00015460730355698615,-3.0853182858556133e-19,-2.746377359248042e-18,0.004761904943734407,-1.631982273686088e-20,-0.0011904762359336019,-0.004761904943734407,0.0,4.07995568421522e-21,0.0,-3.0853182858556133e-19,0.0011904762359336019,7.753064619786022e-19,0.007936508394777775,2.9347504001934543e-33,2.1195712412005733e-17,-0.0476190485060215,-0.0,-7.336876000483636e-34,-0.0,-2.746377359248042e-18,7.753064619786022e-19,0.02380952425301075,7.0,9.0,4.0,0.10654281079769135,-0.02539682574570179,-0.020681818947196007,-0.03880952298641205,0.0016534391324967146,0.0017857142956927419,0.0035714285913854837,0.0010822510812431574,0.0028571428265422583,0.003968254197388887,-0.02539682574570179,0.01706349290907383,0.0017857142956927419,0.0035714285913854837,-0.0019841270986944437,-0.0005952381179668009,-0.0011904762359336019,2.168404344971009e-19,-7.872557386241328e-21,-1.5652002991496387e-33,-0.020681818947196007,0.0017857142956927419,0.010427102446556091,0.0028571428265422583,0.0,-0.00044642857392318547,0.0,-0.0009276437922380865,-0.0007142857066355646,7.428675816406002e-18,-0.03880952298641205,0.0035714285913854837,0.0028571428265422583,0.05365079268813133,0.0,-7.872557386241328e-21,-0.0023809524718672037,3.699863488254242e-18,-0.0019047618843615055,-0.011904762126505375,0.0016534391324967146,-0.0019841270986944437,0.0,0.0,0.0003306878206785768,0.0,0.0,0.0,0.0,-0.0,0.0017857142956927419,-0.0005952381179668009,-0.00044642857392318547,-7.872557386241328e-21,0.0,0.00014880952949170023,0.0,-5.74938993338371e-20,1.968139346560332e-21,3.913000747874097e-34,0.0035714285913854837,-0.0011904762359336019,0.0,-0.0023809524718672037,0.0,0.0,0.0007936508045531809,0.0,0.0,-0.0,0.0010822510812431574,2.168404344971009e-19,-0.0009276437922380865,3.699863488254242e-18,0.0,-5.74938993338371e-20,0.0,0.00011595547402976081,-2.0404188246937417e-19,-9.612320550572994e-19,0.0028571428265422583,-7.872557386241328e-21,-0.0007142857066355646,-0.0019047618843615055,0.0,1.968139346560332e-21,0.0,-2.0404188246937417e-19,0.0004761904710903764,1.7412026524679642e-19,0.003968254197388887,-1.5652002991496387e-33,7.428675816406002e-18,-0.011904762126505375,-0.0,3.913000747874097e-34,-0.0,-9.612320550572994e-19,1.7412026524679642e-19,0.003968254197388887,7.0,9.0,5.0,0.0901820957660675,-0.020793650299310684,-0.01692640781402588,-0.027006803080439568,0.0013227512827143073,0.0014285714132711291,0.0023809524718672037,0.0008658008882775903,0.0019047618843615055,0.0022675737272948027,-0.020793650299310684,0.013809523545205593,0.0014285714132711291,0.0023809524718672037,-0.0015873016091063619,-0.0004761904710903764,-0.0007936508045531809,4.0657581468206416e-20,1.3552527156068805e-20,9.782501869685242e-35,-0.01692640781402588,0.0014285714132711291,0.008436920121312141,0.0019047618843615055,0.0,-0.0003571428533177823,0.0,-0.000742115022148937,-0.0004761904710903764,-2.1628998715847747e-18,-0.027006803080439568,0.0023809524718672037,0.0019047618843615055,0.027108844369649887,0.0,1.2350847791324497e-20,-0.0011904762359336019,-8.944667923005412e-19,-0.0009523809421807528,-0.004535147454589605,0.0013227512827143073,-0.0015873016091063619,0.0,0.0,0.00026455026818439364,0.0,0.0,0.0,0.0,-0.0,0.0014285714132711291,-0.0004761904710903764,-0.0003571428533177823,1.2350847791324497e-20,0.0,0.0001190476177725941,0.0,-6.776263578034403e-21,-3.3881317890172014e-21,-2.4456254674213105e-35,0.0023809524718672037,-0.0007936508045531809,0.0,-0.0011904762359336019,0.0,0.0,0.00039682540227659047,0.0,0.0,-0.0,0.0008658008882775903,4.0657581468206416e-20,-0.000742115022148937,-8.944667923005412e-19,0.0,-6.776263578034403e-21,0.0,9.276437776861712e-05,-1.3552527156068805e-20,2.354037633100745e-19,0.0019047618843615055,1.3552527156068805e-20,-0.0004761904710903764,-0.0009523809421807528,0.0,-3.3881317890172014e-21,0.0,-1.3552527156068805e-20,0.0002380952355451882,1.3983483085330104e-19,0.0022675737272948027,9.782501869685242e-35,-2.1628998715847747e-18,-0.004535147454589605,-0.0,-2.4456254674213105e-35,-0.0,2.354037633100745e-19,1.3983483085330104e-19,0.0011337868636474013,7.0,9.0,6.0,0.07823186367750168,-0.017611488699913025,-0.014332096092402935,-0.019897958263754845,0.001102292793802917,0.0011904762359336019,0.001700680237263441,0.0007215007208287716,0.0013605442363768816,0.0014172336086630821,-0.017611488699913025,0.01160241849720478,0.0011904762359336019,0.001700680237263441,-0.0013227512827143073,-0.00039682540227659047,-0.0005668934318237007,-7.792703114739563e-20,6.776263578034403e-21,2.3582815879832215e-34,-0.014332096092402935,0.0011904762359336019,0.007087456062436104,0.0013605442363768816,0.0,-0.00029761905898340046,0.0,-0.0006184292142279446,-0.0003401360590942204,1.975103609550789e-18,-0.019897958263754845,0.001700680237263441,0.0013605442363768816,0.015753967687487602,0.0,-2.7103311901413708e-22,-0.0006802721181884408,1.666960840196463e-18,-0.0005442177061922848,-0.002125850412994623,0.001102292793802917,-0.0013227512827143073,0.0,0.0,0.00022045854711905122,0.0,0.0,0.0,0.0,-0.0,0.0011904762359336019,-0.00039682540227659047,-0.00029761905898340046,-2.7103311901413708e-22,0.0,9.920635056914762e-05,0.0,2.0328790734103208e-20,-1.6940658945086007e-21,-5.895703969958054e-35,0.001700680237263441,-0.0005668934318237007,0.0,-0.0006802721181884408,0.0,0.0,0.00022675737272948027,0.0,0.0,-0.0,0.0007215007208287716,-7.792703114739563e-20,-0.0006184292142279446,1.666960840196463e-18,0.0,2.0328790734103208e-20,0.0,7.730365177849308e-05,-7.792703114739563e-20,-2.697334906404327e-19,0.0013605442363768816,6.776263578034403e-21,-0.0003401360590942204,-0.0005442177061922848,0.0,-1.6940658945086007e-21,0.0,-7.792703114739563e-20,0.0001360544265480712,7.310571201190228e-20,0.0014172336086630821,2.3582815879832215e-34,1.975103609550789e-18,-0.002125850412994623,-0.0,-5.895703969958054e-35,-0.0,-2.697334906404327e-19,7.310571201190228e-20,0.00042517005931586027,7.0,9.0,7.0,0.06910344958305359,-0.015277777798473835,-0.01243042666465044,-0.015277777798473835,0.0009448223863728344,0.0010204081190750003,0.0012755101779475808,0.0006184292142279446,0.0010204081190750003,0.0009448223863728344,-0.015277777798473835,0.010005668736994267,0.0010204081190750003,0.0012755101779475808,-0.0011337868636474013,-0.0003401360590942204,-0.00042517005931586027,3.3881317890172014e-21,1.3552527156068805e-20,9.316668037339384e-36,-0.01243042666465044,0.0010204081190750003,0.006111405789852142,0.0010204081190750003,0.0,-0.00025510202976875007,0.0,-0.000530082150362432,-0.00025510202976875007,-7.936711123481982e-19,-0.015277777798473835,0.0012755101779475808,0.0010204081190750003,0.010005668736994267,0.0,1.4149853340321527e-20,-0.00042517005931586027,-5.149960319306146e-19,-0.0003401360590942204,-0.0011337868636474013,0.0009448223863728344,-0.0011337868636474013,0.0,0.0,0.0001889644772745669,0.0,0.0,0.0,0.0,-0.0,0.0010204081190750003,-0.0003401360590942204,-0.00025510202976875007,1.4149853340321527e-20,0.0,8.50340147735551e-05,0.0,0.0,-3.3881317890172014e-21,-2.329167009334846e-36,0.0012755101779475808,-0.00042517005931586027,0.0,-0.00042517005931586027,0.0,0.0,0.00014172335795592517,0.0,0.0,-0.0,0.0006184292142279446,3.3881317890172014e-21,-0.000530082150362432,-5.149960319306146e-19,0.0,0.0,0.0,6.6260268795304e-05,0.0,8.500691524667674e-20,0.0010204081190750003,1.3552527156068805e-20,-0.00025510202976875007,-0.0003401360590942204,0.0,-3.3881317890172014e-21,0.0,0.0,8.50340147735551e-05,3.7871934433160455e-20,0.0009448223863728344,9.316668037339384e-36,-7.936711123481982e-19,-0.0011337868636474013,-0.0,-2.329167009334846e-36,-0.0,8.500691524667674e-20,3.7871934433160455e-20,0.0001889644772745669,7.0,9.0,8.0,0.061895743012428284,-0.013492063619196415,-0.01097582932561636,-0.012103174813091755,0.0008267195662483573,0.0008928571478463709,0.0009920635493472219,0.0005411255406215787,0.0007936508045531809,0.0006613756413571537,-0.013492063619196415,0.008796296082437038,0.0008928571478463709,0.0009920635493472219,-0.0009920635493472219,-0.00029761905898340046,-0.0003306878206785768,1.0842021724855044e-19,-1.3552527156068805e-20,8.131516293641283e-20,-0.01097582932561636,0.0008928571478463709,0.005372281651943922,0.0007936508045531809,0.0,-0.00022321428696159273,0.0,-0.00046382189611904323,-0.00019841270113829523,7.724940478959219e-19,-0.012103174813091755,0.0009920635493472219,0.0007936508045531809,0.0067649283446371555,-0.0,-6.750918247077895e-21,-0.00028344671591185033,9.888036392349169e-19,-0.00022675737272948027,-0.0006613756413571537,0.0008267195662483573,-0.0009920635493472219,0.0,-0.0,0.0001653439103392884,0.0,0.0,0.0,0.0,0.0,0.0008928571478463709,-0.00029761905898340046,-0.00022321428696159273,-6.750918247077895e-21,0.0,7.440476474585012e-05,2.828596964616615e-22,-3.049318610115481e-20,2.262877672667488e-22,7.122653512233104e-23,0.0009920635493472219,-0.0003306878206785768,0.0,-0.00028344671591185033,0.0,2.828596964616615e-22,9.448223863728344e-05,0.0,1.6940658945086007e-21,-3.3881317890172014e-20,0.0005411255406215787,1.0842021724855044e-19,-0.00046382189611904323,9.888036392349169e-19,0.0,-3.049318610115481e-20,0.0,5.7977737014880404e-05,-4.912791094074942e-20,-1.1434944787933055e-19,0.0007936508045531809,-1.3552527156068805e-20,-0.00019841270113829523,-0.00022675737272948027,0.0,2.262877672667488e-22,1.6940658945086007e-21,-4.912791094074942e-20,5.668934318237007e-05,4.0657581468206416e-20,0.0006613756413571537,8.131516293641283e-20,7.724940478959219e-19,-0.0006613756413571537,0.0,7.122653512233104e-23,-3.3881317890172014e-20,-1.1434944787933055e-19,4.0657581468206416e-20,9.448223863728344e-05,7.0,9.0,9.0,0.05605686455965042,-0.012081128545105457,-0.0098268399015069,-0.0098268399015069,0.0007348618237301707,0.0007936508045531809,0.0007936508045531809,0.0004810004902537912,0.0006349206087179482,0.0004810004902537912,-0.012081128545105457,0.007848324254155159,0.0007936508045531809,0.0007936508045531809,-0.0008818341884762049,-0.00026455026818439364,-0.00026455026818439364,1.1180834903756764e-19,6.776263578034403e-21,9.486769009248164e-20,-0.0098268399015069,0.0007936508045531809,0.00479299807921052,0.0006349206087179482,0.0,-0.00019841270113829523,3.3881317890172014e-21,-0.0004122861137147993,-0.00015873015217948705,6.505213034913027e-19,-0.0098268399015069,0.0007936508045531809,0.0006349206087179482,0.00479299807921052,-0.0,-4.481362444018266e-21,-0.00019841270113829523,7.685583225413946e-19,-0.00015873015217948705,-0.0004122861137147993,0.0007348618237301707,-0.0008818341884762049,0.0,-0.0,0.00014697236474603415,0.0,0.0,0.0,0.0,0.0,0.0007936508045531809,-0.00026455026818439364,-0.00019841270113829523,-4.481362444018266e-21,0.0,6.613756704609841e-05,-2.6246121757848624e-23,-2.710505431213761e-20,9.954425989092032e-22,1.9827741173691494e-22,0.0007936508045531809,-0.00026455026818439364,3.3881317890172014e-21,-0.00019841270113829523,0.0,-2.6246121757848624e-23,6.613756704609841e-05,4.235164736271502e-22,-8.470329472543003e-22,-2.371692252312041e-20,0.0004810004902537912,1.1180834903756764e-19,-0.0004122861137147993,7.685583225413946e-19,0.0,-2.710505431213761e-20,4.235164736271502e-22,5.153576421434991e-05,-3.218725199566341e-20,-7.962109704190423e-20,0.0006349206087179482,6.776263578034403e-21,-0.00015873015217948705,-0.00015873015217948705,0.0,9.954425989092032e-22,-8.470329472543003e-22,-3.218725199566341e-20,3.968253804487176e-05,-1.6940658945086007e-21,0.0004810004902537912,9.486769009248164e-20,6.505213034913027e-19,-0.0004122861137147993,0.0,1.9827741173691494e-22,-2.371692252312041e-20,-7.962109704190423e-20,-1.6940658945086007e-21,5.153576421434991e-05,7.0,9.0,10.0,0.05122895538806915,-0.010937950573861599,-0.00889610406011343,-0.00813852809369564,0.0006613756413571537,0.0007142857066355646,0.0006493506371043622,0.00043290044413879514,0.0005194804980419576,0.0003607503604143858,-0.010937950573861599,0.007085137069225311,0.0007142857066355646,0.0006493506371043622,-0.0007936508045531809,-0.0002380952355451882,-0.00021645022206939757,6.776263578034403e-21,-6.776263578034403e-21,0.0,-0.00889610406011343,0.0007142857066355646,0.004326685331761837,0.0005194804980419576,0.0,-0.00017857142665889114,0.0,-0.0003710575110744685,-0.0001298701245104894,-2.913793338554793e-19,-0.00813852809369564,0.0006493506371043622,0.0005194804980419576,0.003522126004099846,-0.0,-1.50790380855407e-21,-0.00014430013834498823,-2.775836155993199e-19,-0.0001154401179519482,-0.00027056277031078935,0.0006613756413571537,-0.0007936508045531809,0.0,-0.0,0.00013227513409219682,0.0,0.0,0.0,0.0,0.0,0.0007142857066355646,-0.0002380952355451882,-0.00017857142665889114,-1.50790380855407e-21,0.0,5.952380888629705e-05,-1.4998000234904646e-22,0.0,8.964555752156016e-22,1.5661247978288057e-22,0.0006493506371043622,-0.00021645022206939757,0.0,-0.00014430013834498823,0.0,-1.4998000234904646e-22,4.810004975297488e-05,-6.352747104407253e-22,8.470329472543003e-22,0.0,0.00043290044413879514,6.776263578034403e-21,-0.0003710575110744685,-2.775836155993199e-19,0.0,0.0,-6.352747104407253e-22,4.638218888430856e-05,5.082197683525802e-21,2.922263668027336e-20,0.0005194804980419576,-6.776263578034403e-21,-0.0001298701245104894,-0.0001154401179519482,0.0,8.964555752156016e-22,8.470329472543003e-22,5.082197683525802e-21,2.886002948798705e-05,1.0164395367051604e-20,0.0003607503604143858,0.0,-2.913793338554793e-19,-0.00027056277031078935,0.0,1.5661247978288057e-22,0.0,2.922263668027336e-20,1.0164395367051604e-20,3.006253064086195e-05,7.0,9.0,11.0,0.047169413417577744,-0.009992784820497036,-0.00812672171741724,-0.00685148173943162,0.0006012506200931966,0.0006493506371043622,0.0005411255406215787,0.00039354583714157343,0.00043290044413879514,0.0002775002794805914,-0.009992784820497036,0.0064574312418699265,0.0006493506371043622,0.0005411255406215787,-0.0007215007208287716,-0.00021645022206939757,-0.0001803751802071929,1.0164395367051604e-20,3.3881317890172014e-21,1.0164395367051604e-19,-0.00812672171741724,0.0006493506371043622,0.003943189047276974,0.00043290044413879514,0.0,-0.00016233765927609056,0.0,-0.00033732500742189586,-0.00010822511103469878,-2.1345230270808369e-19,-0.00685148173943162,0.0005411255406215787,0.00043290044413879514,0.002665297593921423,-0.0,-5.436857126687077e-23,-0.00010822511103469878,-3.3891505136403487e-19,-8.658008300699294e-05,-0.00018500018632039428,0.0006012506200931966,-0.0007215007208287716,0.0,-0.0,0.0001202501225634478,0.0,0.0,0.0,0.0,0.0,0.0006493506371043622,-0.00021645022206939757,-0.00016233765927609056,-5.436857126687077e-23,0.0,5.411255551734939e-05,1.080867677381539e-22,-1.6940658945086007e-21,-8.452668075943681e-22,1.5241735535423868e-22,0.0005411255406215787,-0.0001803751802071929,0.0,-0.00010822511103469878,0.0,1.080867677381539e-22,3.607503458624706e-05,0.0,4.235164736271502e-22,-2.0328790734103208e-20,0.00039354583714157343,1.0164395367051604e-20,-0.00033732500742189586,-3.3891505136403487e-19,0.0,-1.6940658945086007e-21,0.0,4.216562592773698e-05,2.710505431213761e-20,2.244637310223896e-20,0.00043290044413879514,3.3881317890172014e-21,-0.00010822511103469878,-8.658008300699294e-05,0.0,-8.452668075943681e-22,4.235164736271502e-22,2.710505431213761e-20,2.1645020751748234e-05,7.623296525288703e-21,0.0002775002794805914,1.0164395367051604e-19,-2.1345230270808369e-19,-0.00018500018632039428,0.0,1.5241735535423868e-22,-2.0328790734103208e-20,2.244637310223896e-20,7.623296525288703e-21,1.850001899583731e-05,7.0,9.0,12.0,0.043707769364118576,-0.009198209270834923,-0.007480020169168711,-0.005847723688930273,0.0005511463969014585,0.0005952381179668009,0.0004578754596877843,0.0003607503604143858,0.00036630037357099354,0.00021803592971991748,-0.009198209270834923,0.005932030733674765,0.0005952381179668009,0.0004578754596877843,-0.0006613756413571537,-0.00019841270113829523,-0.00015262515807989985,-2.7685242950566515e-34,-1.6940658945086007e-21,8.470329472543003e-20,-0.007480020169168711,0.0005952381179668009,0.0036222210619598627,0.00036630037357099354,0.0,-0.00014880952949170023,0.0,-0.0003092146071139723,-9.157509339274839e-05,2.778268066994105e-19,-0.005847723688930273,0.0004578754596877843,0.00036630037357099354,0.0020661877933889627,-0.0,-0.0,-8.325008093379438e-05,4.566961355627241e-19,-6.660006329184398e-05,-0.00013082155783195049,0.0005511463969014585,-0.0006613756413571537,0.0,-0.0,0.00011022927355952561,0.0,0.0,0.0,0.0,0.0,0.0005952381179668009,-0.00019841270113829523,-0.00014880952949170023,-0.0,0.0,4.960317528457381e-05,0.0,0.0,0.0,0.0,0.0004578754596877843,-0.00015262515807989985,0.0,-8.325008093379438e-05,0.0,0.0,2.775002758426126e-05,4.81482486096809e-35,4.235164736271502e-22,-1.6093625997831706e-20,0.0003607503604143858,-2.7685242950566515e-34,-0.0003092146071139723,4.566961355627241e-19,0.0,0.0,4.81482486096809e-35,3.865182588924654e-05,-1.872987322825808e-20,-3.470696692612211e-20,0.00036630037357099354,-1.6940658945086007e-21,-9.157509339274839e-05,-6.660006329184398e-05,0.0,0.0,4.235164736271502e-22,-1.872987322825808e-20,1.6650015822960995e-05,0.0,0.00021803592971991748,8.470329472543003e-20,2.778268066994105e-19,-0.00013082155783195049,0.0,0.0,-1.6093625997831706e-20,-3.470696692612211e-20,0.0,1.1892869224539027e-05,7.0,9.0,13.0,0.040720656514167786,-0.008520844392478466,-0.00692878570407629,-0.005049712024629116,0.000508750497829169,0.0005494505749084055,0.0003924646880477667,0.0003330003237351775,0.00031397174461744726,0.00017442874377593398,-0.008520844392478466,0.005485784262418747,0.0005494505749084055,0.0003924646880477667,-0.0006105006323195994,-0.00018315018678549677,-0.00013082155783195049,-1.2037062152420224e-35,-1.6940658945086007e-21,-3.3881317890172014e-21,-0.00692878570407629,0.0005494505749084055,0.0033496266696602106,0.00031397174461744726,0.0,-0.00013736264372710139,0.0,-0.00028542886138893664,-7.849293615436181e-05,-1.0842021724855044e-19,-0.005049712024629116,0.0003924646880477667,0.00031397174461744726,0.0016344765899702907,-0.0,-0.0,-6.541077891597524e-05,-2.1895522513066927e-19,-5.232862531556748e-05,-9.514295379631221e-05,0.000508750497829169,-0.0006105006323195994,0.0,-0.0,0.0001017501053865999,0.0,0.0,0.0,0.0,0.0,0.0005494505749084055,-0.00018315018678549677,-0.00013736264372710139,-0.0,0.0,4.578754669637419e-05,0.0,0.0,0.0,0.0,0.0003924646880477667,-0.00013082155783195049,0.0,-6.541077891597524e-05,0.0,0.0,2.1803592971991748e-05,1.504632769052528e-36,0.0,4.235164736271502e-22,0.0003330003237351775,-1.2037062152420224e-35,-0.00028542886138893664,-2.1895522513066927e-19,0.0,0.0,1.504632769052528e-36,3.567860767361708e-05,1.3584302523818206e-20,1.3718168458145415e-20,0.00031397174461744726,-1.6940658945086007e-21,-7.849293615436181e-05,-5.232862531556748e-05,0.0,0.0,0.0,1.3584302523818206e-20,1.308215632889187e-05,-4.235164736271502e-22,0.00017442874377593398,-3.3881317890172014e-21,-1.0842021724855044e-19,-9.514295379631221e-05,0.0,0.0,4.235164736271502e-22,1.3718168458145415e-20,-4.235164736271502e-22,7.928579179861117e-06,7.0,9.0,14.0,0.038116540759801865,-0.007936508394777775,-0.006453308742493391,-0.004404761828482151,0.0004724111931864172,0.0005102040595375001,0.0003401360590942204,0.0003092146071139723,0.0002721088530961424,0.00014172335795592517,-0.007936508394777775,0.005102040711790323,0.0005102040595375001,0.0003401360590942204,-0.0005668934318237007,-0.0001700680295471102,-0.00011337868636474013,3.3101920919155616e-35,1.6940658945086007e-21,2.371692252312041e-20,-0.006453308742493391,0.0005102040595375001,0.0031152265146374702,0.0002721088530961424,0.0,-0.00012755101488437504,0.0,-0.000265041075181216,-6.80272132740356e-05,-8.639736061993863e-20,-0.004404761828482151,0.0003401360590942204,0.0002721088530961424,0.0013154108310118318,-0.0,-0.0,-5.232862531556748e-05,-9.636841544350304e-20,-4.186289879726246e-05,-7.086167897796258e-05,0.0004724111931864172,-0.0005668934318237007,0.0,-0.0,9.448223863728344e-05,0.0,0.0,0.0,0.0,0.0,0.0005102040595375001,-0.0001700680295471102,-0.00012755101488437504,-0.0,0.0,4.251700738677755e-05,0.0,0.0,0.0,0.0,0.0003401360590942204,-0.00011337868636474013,0.0,-5.232862531556748e-05,0.0,0.0,1.744287510518916e-05,-5.266214691683848e-36,0.0,-3.8116482626443515e-21,0.0003092146071139723,3.3101920919155616e-35,-0.000265041075181216,-9.636841544350304e-20,0.0,0.0,-5.266214691683848e-36,3.3130134397652e-05,-1.1770188811738579e-20,1.1034551405159743e-20,0.0002721088530961424,1.6940658945086007e-21,-6.80272132740356e-05,-4.186289879726246e-05,0.0,0.0,0.0,-1.1770188811738579e-20,1.0465724699315615e-05,0.0,0.00014172335795592517,2.371692252312041e-20,-8.639736061993863e-20,-7.086167897796258e-05,0.0,0.0,-3.8116482626443515e-21,1.1034551405159743e-20,0.0,5.450898242997937e-06,7.0,9.0,15.0,0.03582606092095375,-0.007427248638123274,-0.006038961000740528,-0.003876050468534231,0.00044091709423810244,0.0004761904710903764,0.00029761905898340046,0.00028860027668997645,0.0002380952355451882,0.00011671335232676938,-0.007427248638123274,0.004768518730998039,0.0004761904710903764,0.00029761905898340046,-0.0005291005363687873,-0.00015873015217948705,-9.920635056914762e-05,1.7508155251615961e-19,2.981555974335137e-19,4.336808689942018e-19,-0.006038961000740528,0.0004761904710903764,0.0029115132056176662,0.0002380952355451882,2.290936418566079e-19,-0.0001190476177725941,2.964615315390051e-19,-0.00024737167404964566,-5.952380888629705e-05,2.439454888092385e-19,-0.003876050468534231,0.00029761905898340046,0.0002380952355451882,0.0010744426399469376,1.0338214965070435e-18,4.2943352919328926e-19,-4.251700738677755e-05,4.447122013419972e-19,-3.40136066370178e-05,-5.3867701353738084e-05,0.00044091709423810244,-0.0005291005363687873,2.290936418566079e-19,1.0338214965070435e-18,8.818342030281201e-05,4.131980651752904e-34,-4.090957751817672e-20,4.278990914002616e-34,-3.272766266077623e-20,-5.183114041374698e-20,0.0004761904710903764,-0.00015873015217948705,-0.0001190476177725941,4.2943352919328926e-19,4.131980651752904e-34,3.968253804487176e-05,-1.6993209147790132e-20,1.7774270109418456e-34,-1.359456796446696e-20,-2.1529858599117338e-20,0.00029761905898340046,-9.920635056914762e-05,2.964615315390051e-19,-4.251700738677755e-05,-4.090957751817672e-20,-1.6993209147790132e-20,1.4172335795592517e-05,-2.5011650821047697e-20,-6.564505341220828e-21,-5.082197683525802e-21,0.00028860027668997645,1.7508155251615961e-19,-0.00024737167404964566,4.447122013419972e-19,4.278990914002616e-34,1.7774270109418456e-34,-2.5011650821047697e-20,3.092145925620571e-05,-4.704338913992808e-21,-2.2679360153991883e-20,0.0002380952355451882,2.981555974335137e-19,-5.952380888629705e-05,-3.40136066370178e-05,-3.272766266077623e-20,-1.359456796446696e-20,-6.564505341220828e-21,-4.704338913992808e-21,8.50340165925445e-06,2.117582368135751e-22,0.00011671335232676938,4.336808689942018e-19,2.439454888092385e-19,-5.3867701353738084e-05,-5.183114041374698e-20,-2.1529858599117338e-20,-5.082197683525802e-21,-2.2679360153991883e-20,2.117582368135751e-22,3.84769282391062e-06,7.0,9.0,16.0,0.03379567712545395,-0.006979458499699831,-0.005674656014889479,-0.00343720824457705,0.00041335978312417865,0.00044642857392318547,0.00026260505546815693,0.00027056277031078935,0.0002100840356433764,9.726112330099568e-05,-0.006979458499699831,0.004475957248359919,0.00044642857392318547,0.00026260505546815693,-0.0004960317746736109,-0.00014880952949170023,-8.753501606406644e-05,1.4907779871675686e-19,1.8973538018496328e-19,1.8126505071242027e-19,-0.005674656014889479,0.00044642857392318547,0.0027328261639922857,0.0002100840356433764,1.001192943654583e-18,-0.00011160714348079637,2.0328790734103208e-19,-0.00023191094805952162,-5.25210089108441e-05,8.131516293641283e-20,-0.00343720824457705,0.00026260505546815693,0.0002100840356433764,0.000889022252522409,6.776263578034403e-19,1.0842021724855044e-19,-3.501400715322234e-05,-3.3881317890172014e-21,-2.801120535877999e-05,-4.1683339077280834e-05,0.00041335978312417865,-0.0004960317746736109,1.001192943654583e-18,6.776263578034403e-19,8.26719551696442e-05,-6.767328088714269e-20,-6.633631144801265e-20,-6.177694361040865e-20,-3.224907082175468e-20,-1.979939514206927e-20,0.00044642857392318547,-0.00014880952949170023,-0.00011160714348079637,1.0842021724855044e-19,-6.767328088714269e-20,3.720238237292506e-05,-1.3129010682441655e-20,7.157428404298838e-20,1.1858461261560205e-20,-7.135620239813275e-21,0.00026260505546815693,-8.753501606406644e-05,2.0328790734103208e-19,-3.501400715322234e-05,-6.633631144801265e-20,-1.3129010682441655e-20,1.1671335414575879e-05,-1.2281977735187355e-20,-7.623296525288703e-21,-4.62120160787626e-21,0.00027056277031078935,1.4907779871675686e-19,-0.00023191094805952162,-3.3881317890172014e-21,-6.177694361040865e-20,7.157428404298838e-20,-1.2281977735187355e-20,2.8988868507440202e-05,2.6046263128069735e-20,-4.607362892384119e-21,0.0002100840356433764,1.8973538018496328e-19,-5.25210089108441e-05,-2.801120535877999e-05,-3.224907082175468e-20,1.1858461261560205e-20,-7.623296525288703e-21,2.6046263128069735e-20,7.002801339694997e-06,-2.0081481502408326e-21,9.726112330099568e-05,1.8126505071242027e-19,8.131516293641283e-20,-4.1683339077280834e-05,-1.979939514206927e-20,-7.135620239813275e-21,-4.62120160787626e-21,-4.607362892384119e-21,-2.0081481502408326e-21,2.7788894385594176e-06,7.0,10.0,3.0,0.11949855834245682,-0.029599567875266075,-0.02207792177796364,-0.05503246933221817,0.0019841270986944437,0.0019480519695207477,0.0053571430034935474,0.0010822510812431574,0.0038961039390414953,0.0071428571827709675,-0.029599567875266075,0.020183982327580452,0.0019480519695207477,0.0053571430034935474,-0.0023809524718672037,-0.0006493506371043622,-0.0017857142956927419,-4.824699667560495e-18,-1.2656997436681134e-17,-6.214365081883051e-17,-0.02207792177796364,0.0019480519695207477,0.010046897456049919,0.0038961039390414953,-8.698959712310823e-18,-0.00043290044413879514,-9.279622304349572e-18,-0.000811688310932368,-0.0008658008882775903,-2.684992699580788e-17,-0.05503246933221817,0.0053571430034935474,0.0038961039390414953,0.12646104395389557,-2.6007850514783998e-17,-9.060616311008807e-18,-0.0053571430034935474,-7.884623560309518e-18,-0.0038961039390414953,-0.04285714402794838,0.0019841270986944437,-0.0023809524718672037,-8.698959712310823e-18,-2.6007850514783998e-17,0.00039682540227659047,3.6440358796409073e-19,1.3959606516948761e-18,6.207956892998088e-19,1.441848082585949e-18,6.872809203999448e-18,0.0019480519695207477,-0.0006493506371043622,-0.00043290044413879514,-9.060616311008807e-18,3.6440358796409073e-19,0.00014430013834498823,6.195369272026562e-19,7.217283322670146e-20,4.576474966647366e-19,2.3550185659096564e-18,0.0053571430034935474,-0.0017857142956927419,-9.279622304349572e-18,-0.0053571430034935474,1.3959606516948761e-18,6.195369272026562e-19,0.0017857142956927419,6.082796711500572e-19,1.5139404918851253e-18,9.516197613900963e-18,0.0010822510812431574,-4.824699667560495e-18,-0.000811688310932368,-7.884623560309518e-18,6.207956892998088e-19,7.217283322670146e-20,6.082796711500572e-19,9.018759010359645e-05,2.785831082732254e-19,2.403080241040825e-18,0.0038961039390414953,-1.2656997436681134e-17,-0.0008658008882775903,-0.0038961039390414953,1.441848082585949e-18,4.576474966647366e-19,1.5139404918851253e-18,2.785831082732254e-19,0.0008658008882775903,-1.8428506644933606e-18,0.0071428571827709675,-6.214365081883051e-17,-2.684992699580788e-17,-0.04285714402794838,6.872809203999448e-18,2.3550185659096564e-18,9.516197613900963e-18,2.403080241040825e-18,-1.8428506644933606e-18,0.02142857201397419,7.0,10.0,4.0,0.09752164781093597,-0.023003246635198593,-0.017142856493592262,-0.03516233712434769,0.0014880952658131719,0.0014610389480367303,0.003214285708963871,0.000811688310932368,0.0023376622702926397,0.0035714285913854837,-0.023003246635198593,0.01540584396570921,0.0014610389480367303,0.003214285708963871,-0.0017857142956927419,-0.0004870129923801869,-0.0010714285308495164,2.710505431213761e-20,1.0813860587082875e-20,-0.0,-0.017142856493592262,0.0014610389480367303,0.007665043231099844,0.0023376622702926397,0.0,-0.0003246753185521811,0.0,-0.0006087662186473608,-0.0005194804980419576,-0.0,-0.03516233712434769,0.003214285708963871,0.0023376622702926397,0.048441559076309204,0.0,1.0813860587082875e-20,-0.002142857061699033,-3.3406662429202193e-21,-0.0015584415523335338,-0.010714286006987095,0.0014880952658131719,-0.0017857142956927419,0.0,0.0,0.00029761905898340046,0.0,0.0,0.0,0.0,-0.0,0.0014610389480367303,-0.0004870129923801869,-0.0003246753185521811,1.0813860587082875e-20,0.0,0.00010822511103469878,0.0,-1.1839832330216072e-21,-2.4030800407080204e-21,-0.0,0.003214285708963871,-0.0010714285308495164,0.0,-0.002142857061699033,0.0,0.0,0.0007142857066355646,0.0,0.0,-0.0,0.000811688310932368,2.710505431213761e-20,-0.0006087662186473608,-3.3406662429202193e-21,0.0,-1.1839832330216072e-21,0.0,6.764069257769734e-05,7.42370315472236e-22,-0.0,0.0023376622702926397,1.0813860587082875e-20,-0.0005194804980419576,-0.0015584415523335338,0.0,-2.4030800407080204e-21,0.0,7.42370315472236e-22,0.00034632033202797174,-0.0,0.0035714285913854837,-0.0,-0.0,-0.010714286006987095,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,7.0,10.0,5.0,0.08250154554843903,-0.018831169232726097,-0.014025974087417126,-0.024461966007947922,0.0011904762359336019,0.0011688311351463199,0.002142857061699033,0.0006493506371043622,0.0015584415523335338,0.0020408162381500006,-0.018831169232726097,0.01246753241866827,0.0011688311351463199,0.002142857061699033,-0.0014285714132711291,-0.00038961038808338344,-0.0007142857066355646,-2.541098841762901e-20,1.3552527156068805e-20,-0.0,-0.014025974087417126,0.0011688311351463199,0.0062012989073991776,0.0015584415523335338,0.0,-0.0002597402490209788,0.0,-0.0004870129923801869,-0.00034632033202797174,-0.0,-0.024461966007947922,0.002142857061699033,0.0015584415523335338,0.024475881829857826,0.0,2.44920444753548e-21,-0.0010714285308495164,2.710505431213761e-20,-0.0007792207761667669,-0.004081632476300001,0.0011904762359336019,-0.0014285714132711291,0.0,0.0,0.0002380952355451882,0.0,0.0,0.0,0.0,-0.0,0.0011688311351463199,-0.00038961038808338344,-0.0002597402490209788,2.44920444753548e-21,0.0,8.658008300699294e-05,0.0,1.0164395367051604e-20,-3.3881317890172014e-21,-0.0,0.002142857061699033,-0.0007142857066355646,0.0,-0.0010714285308495164,0.0,0.0,0.0003571428533177823,0.0,0.0,-0.0,0.0006493506371043622,-2.541098841762901e-20,-0.0004870129923801869,2.710505431213761e-20,0.0,1.0164395367051604e-20,0.0,5.411255551734939e-05,-6.776263578034403e-21,-0.0,0.0015584415523335338,1.3552527156068805e-20,-0.00034632033202797174,-0.0007792207761667669,0.0,-3.3881317890172014e-21,0.0,-6.776263578034403e-21,0.00017316016601398587,-0.0,0.0020408162381500006,-0.0,-0.0,-0.004081632476300001,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,7.0,10.0,6.0,0.07154195010662079,-0.015947742387652397,-0.011873840354382992,-0.018019480630755424,0.0009920635493472219,0.0009740259847603738,0.0015306122368201613,0.0005411255406215787,0.001113172504119575,0.0012755101779475808,-0.015947742387652397,0.010474644601345062,0.0009740259847603738,0.0015306122368201613,-0.0011904762359336019,-0.0003246753185521811,-0.0005102040595375001,-2.0989476432961562e-18,-1.7889335846010823e-18,4.055959675477068e-19,-0.011873840354382992,0.0009740259847603738,0.005208977498114109,0.001113172504119575,-4.122903505848561e-18,-0.00021645022206939757,-7.228300722194498e-19,-0.000405844155466184,-0.00024737167404964566,1.9629922378169406e-18,-0.018019480630755424,0.0015306122368201613,0.001113172504119575,0.014223098754882812,-5.073711327428891e-19,1.602184223029859e-19,-0.0006122448830865324,1.531435568635775e-18,-0.0004452690191101283,-0.0019132653251290321,0.0009920635493472219,-0.0011904762359336019,-4.122903505848561e-18,-5.073711327428891e-19,0.00019841270113829523,1.8220179398204536e-19,4.905552940597676e-20,3.103978446499044e-19,1.977391668673293e-19,-1.1800840377077644e-19,0.0009740259847603738,-0.0003246753185521811,-0.00021645022206939757,1.602184223029859e-19,1.8220179398204536e-19,7.215006917249411e-05,6.07603257128839e-20,3.7269449679189215e-20,2.202285662861181e-20,-8.153307332903227e-20,0.0015306122368201613,-0.0005102040595375001,-7.228300722194498e-19,-0.0006122448830865324,4.905552940597676e-20,6.07603257128839e-20,0.0002040816325461492,2.5747287015936183e-21,1.5751582937131908e-19,2.11097280730054e-19,0.0005411255406215787,-2.0989476432961562e-18,-0.000405844155466184,1.531435568635775e-18,3.103978446499044e-19,3.7269449679189215e-20,2.5747287015936183e-21,4.5093795051798224e-05,-4.743384504624082e-20,-2.2260676224599633e-19,0.001113172504119575,-1.7889335846010823e-18,-0.00024737167404964566,-0.0004452690191101283,1.977391668673293e-19,2.202285662861181e-20,1.5751582937131908e-19,-4.743384504624082e-20,9.894867253024131e-05,1.1402711885907336e-19,0.0012755101779475808,4.055959675477068e-19,1.9629922378169406e-18,-0.0019132653251290321,-1.1800840377077644e-19,-8.153307332903227e-20,2.11097280730054e-19,-2.2260676224599633e-19,1.1402711885907336e-19,0.00038265305920504034,7.0,10.0,7.0,0.06317640841007233,-0.013833488337695599,-0.010296845808625221,-0.013833488337695599,0.0008503401186317205,0.0008348794071935117,0.0011479591485112906,0.00046382189611904323,0.0008348794071935117,0.0008503401186317205,-0.013833488337695599,0.009032931178808212,0.0008348794071935117,0.0011479591485112906,-0.0010204081190750003,-0.00027829312602989376,-0.00038265305920504034,-1.8007920458626425e-18,-1.3349239248727773e-18,3.255017490448164e-19,-0.010296845808625221,0.0008348794071935117,0.004491341765969992,0.0008348794071935117,-3.49348316619318e-18,-0.00018552875553723425,3.2902833018885966e-19,-0.0003478664148133248,-0.00018552875553723425,1.3362420371788806e-18,-0.013833488337695599,0.0011479591485112906,0.0008348794071935117,0.009032931178808212,-1.0089906718915438e-18,-1.5906220475239575e-19,-0.00038265305920504034,8.131516293641283e-19,-0.00027829312602989376,-0.0010204081190750003,0.0008503401186317205,-0.0010204081190750003,-3.49348316619318e-18,-1.0089906718915438e-18,0.0001700680295471102,1.0885555981999769e-19,-8.111270886590335e-21,2.6605530279974494e-19,1.7508155251615961e-19,2.5175125620777757e-20,0.0008348794071935117,-0.00027829312602989376,-0.00018552875553723425,-1.5906220475239575e-19,1.0885555981999769e-19,6.184291851241142e-05,2.1147806169281542e-20,6.437450399132683e-20,4.0657581468206416e-20,-1.4876210006609717e-20,0.0011479591485112906,-0.00038265305920504034,3.2902833018885966e-19,-0.00038265305920504034,-8.111270886590335e-21,2.1147806169281542e-20,0.00012755101488437504,-5.310378040437969e-20,-2.409324688877299e-21,-1.6800542304137767e-19,0.00046382189611904323,-1.8007920458626425e-18,-0.0003478664148133248,8.131516293641283e-19,2.6605530279974494e-19,6.437450399132683e-20,-5.310378040437969e-20,3.865182588924654e-05,1.0164395367051604e-20,-9.583712638334818e-20,0.0008348794071935117,-1.3349239248727773e-18,-0.00018552875553723425,-0.00027829312602989376,1.7508155251615961e-19,4.0657581468206416e-20,-2.409324688877299e-21,1.0164395367051604e-20,6.184291851241142e-05,-1.4302642969865447e-19,0.0008503401186317205,3.255017490448164e-19,1.3362420371788806e-18,-0.0010204081190750003,2.5175125620777757e-20,-1.4876210006609717e-20,-1.6800542304137767e-19,-9.583712638334818e-20,-1.4302642969865447e-19,0.0001700680295471102,7.0,10.0,8.0,0.05657467618584633,-0.01221590954810381,-0.00909090880304575,-0.010957792401313782,0.0007440476329065859,0.0007305194740183651,0.0008928571478463709,0.000405844155466184,0.0006493506371043622,0.0005952381179668009,-0.01221590954810381,0.007941016927361488,0.0007305194740183651,0.0008928571478463709,-0.0008928571478463709,-0.00024350649619009346,-0.00029761905898340046,6.776263578034403e-21,6.776263578034403e-21,-0.0,-0.00909090880304575,0.0007305194740183651,0.003947961609810591,0.0006493506371043622,0.0,-0.00016233765927609056,0.0,-0.0003043831093236804,-0.00014430013834498823,-0.0,-0.010957792401313782,0.0008928571478463709,0.0006493506371043622,0.006106988061219454,0.0,3.979704816999033e-22,-0.00025510202976875007,-6.776263578034403e-21,-0.00018552875553723425,-0.0005952381179668009,0.0007440476329065859,-0.0008928571478463709,0.0,0.0,0.00014880952949170023,0.0,0.0,0.0,0.0,-0.0,0.0007305194740183651,-0.00024350649619009346,-0.00016233765927609056,3.979704816999033e-22,0.0,5.411255551734939e-05,0.0,1.6940658945086007e-21,-8.470329472543003e-22,-0.0,0.0008928571478463709,-0.00029761905898340046,0.0,-0.00025510202976875007,0.0,0.0,8.50340147735551e-05,0.0,0.0,-0.0,0.000405844155466184,6.776263578034403e-21,-0.0003043831093236804,-6.776263578034403e-21,0.0,1.6940658945086007e-21,0.0,3.382034628884867e-05,1.6940658945086007e-21,-0.0,0.0006493506371043622,6.776263578034403e-21,-0.00014430013834498823,-0.00018552875553723425,0.0,-8.470329472543003e-22,0.0,1.6940658945086007e-21,4.122861355426721e-05,-0.0,0.0005952381179668009,-0.0,-0.0,-0.0005952381179668009,-0.0,-0.0,-0.0,-0.0,-0.0,8.50340147735551e-05,7.0,10.0,9.0,0.05122895538806915,-0.010937950573861599,-0.00813852809369564,-0.00889610406011343,0.0006613756413571537,0.0006493506371043622,0.0007142857066355646,0.0003607503604143858,0.0005194804980419576,0.00043290044413879514,-0.010937950573861599,0.007085137069225311,0.0006493506371043622,0.0007142857066355646,-0.0007936508045531809,-0.00021645022206939757,-0.0002380952355451882,-1.1858461261560205e-20,-1.6940658945086007e-20,-1.3552527156068805e-20,-0.00813852809369564,0.0006493506371043622,0.003522126004099846,0.0005194804980419576,0.0,-0.00014430013834498823,-1.6940658945086007e-20,-0.00027056277031078935,-0.0001154401179519482,-6.098637220230962e-20,-0.00889610406011343,0.0007142857066355646,0.0005194804980419576,0.004326685331761837,-0.0,-3.752801309085879e-21,-0.00017857142665889114,-6.842555157105852e-21,-0.0001298701245104894,-0.0003710575110744685,0.0006613756413571537,-0.0007936508045531809,0.0,-0.0,0.00013227513409219682,0.0,0.0,0.0,0.0,0.0,0.0006493506371043622,-0.00021645022206939757,-0.00014430013834498823,-3.752801309085879e-21,0.0,4.810004975297488e-05,4.9006907730580637e-23,1.6940658945086007e-21,1.1264437690818846e-22,4.371118413072484e-22,0.0007142857066355646,-0.0002380952355451882,-1.6940658945086007e-20,-0.00017857142665889114,0.0,4.9006907730580637e-23,5.952380888629705e-05,0.0,4.235164736271502e-21,3.3881317890172014e-21,0.0003607503604143858,-1.1858461261560205e-20,-0.00027056277031078935,-6.842555157105852e-21,0.0,1.6940658945086007e-21,0.0,3.006253064086195e-05,1.6940658945086007e-21,4.235164736271502e-22,0.0005194804980419576,-1.6940658945086007e-20,-0.0001154401179519482,-0.0001298701245104894,0.0,1.1264437690818846e-22,4.235164736271502e-21,1.6940658945086007e-21,2.886002948798705e-05,1.3552527156068805e-20,0.00043290044413879514,-1.3552527156068805e-20,-6.098637220230962e-20,-0.0003710575110744685,0.0,4.371118413072484e-22,3.3881317890172014e-21,4.235164736271502e-22,1.3552527156068805e-20,4.638218888430856e-05,7.0,10.0,10.0,0.04681031033396721,-0.009902597405016422,-0.0073671783320605755,-0.0073671783320605755,0.0005952381179668009,0.0005844155675731599,0.0005844155675731599,0.0003246753185521811,0.0004250295169185847,0.0003246753185521811,-0.009902597405016422,0.0063961041159927845,0.0005844155675731599,0.0005844155675731599,-0.0007142857066355646,-0.00019480519404169172,-0.00019480519404169172,-2.371692252312041e-20,6.776263578034403e-21,-4.0657581468206416e-20,-0.0073671783320605755,0.0005844155675731599,0.0031793585512787104,0.0004250295169185847,0.0,-0.0001298701245104894,3.3881317890172014e-21,-0.00024350649619009346,-9.445100295124575e-05,1.3552527156068805e-20,-0.0073671783320605755,0.0005844155675731599,0.0004250295169185847,0.0031793585512787104,-0.0,2.757653958725395e-21,-0.0001298701245104894,2.6428555876491698e-21,-9.445100295124575e-05,-0.00024350649619009346,0.0005952381179668009,-0.0007142857066355646,0.0,-0.0,0.0001190476177725941,0.0,0.0,0.0,0.0,0.0,0.0005844155675731599,-0.00019480519404169172,-0.0001298701245104894,2.757653958725395e-21,0.0,4.329004150349647e-05,-6.765263234566345e-24,6.776263578034403e-21,-9.28956139639728e-22,-9.842073515962324e-23,0.0005844155675731599,-0.00019480519404169172,3.3881317890172014e-21,-0.0001298701245104894,0.0,-6.765263234566345e-24,4.329004150349647e-05,0.0,-4.235164736271502e-22,1.0164395367051604e-20,0.0003246753185521811,-2.371692252312041e-20,-0.00024350649619009346,2.6428555876491698e-21,0.0,6.776263578034403e-21,0.0,2.7056277758674696e-05,-8.470329472543003e-22,4.235164736271502e-22,0.0004250295169185847,6.776263578034403e-21,-9.445100295124575e-05,-9.445100295124575e-05,0.0,-9.28956139639728e-22,-4.235164736271502e-22,-8.470329472543003e-22,2.0989111362723634e-05,-2.541098841762901e-21,0.0003246753185521811,-4.0657581468206416e-20,1.3552527156068805e-20,-0.00024350649619009346,0.0,-9.842073515962324e-23,1.0164395367051604e-20,4.235164736271502e-22,-2.541098841762901e-21,2.7056277758674696e-05,7.0,10.0,11.0,0.043095920234918594,-0.009046635590493679,-0.006729634013026953,-0.006201752927154303,0.0005411255406215787,0.000531286874320358,0.0004870129923801869,0.00029515937785618007,0.0003541912592481822,0.00024975024280138314,-0.009046635590493679,0.005829398054629564,0.000531286874320358,0.0004870129923801869,-0.0006493506371043622,-0.0001770956296240911,-0.00016233765927609056,0.0,-1.5246593050577406e-20,-6.776263578034403e-21,-0.006729634013026953,0.000531286874320358,0.0028974812012165785,0.0003541912592481822,0.0,-0.0001180637555080466,-1.3552527156068805e-20,-0.00022136954066809267,-7.870917033869773e-05,-3.3881317890172014e-20,-0.006201752927154303,0.0004870129923801869,0.0003541912592481822,0.002405851613730192,-0.0,2.0867436370272248e-21,-9.740259702084586e-05,7.038895038107123e-21,-7.083825039444491e-05,-0.00016650016186758876,0.0005411255406215787,-0.0006493506371043622,0.0,-0.0,0.00010822511103469878,0.0,0.0,0.0,0.0,0.0,0.000531286874320358,-0.0001770956296240911,-0.0001180637555080466,2.0867436370272248e-21,0.0,3.9354585169348866e-05,2.139583257020258e-23,0.0,-4.849588679162209e-22,-1.8502416987596743e-22,0.0004870129923801869,-0.00016233765927609056,-1.3552527156068805e-20,-9.740259702084586e-05,0.0,2.139583257020258e-23,3.246753112762235e-05,-2.117582368135751e-22,2.964615315390051e-21,2.541098841762901e-21,0.00029515937785618007,0.0,-0.00022136954066809267,7.038895038107123e-21,0.0,0.0,-2.117582368135751e-22,2.459661482134834e-05,0.0,-4.235164736271502e-22,0.0003541912592481822,-1.5246593050577406e-20,-7.870917033869773e-05,-7.083825039444491e-05,0.0,-4.849588679162209e-22,2.964615315390051e-21,0.0,1.5741834431537427e-05,7.623296525288703e-21,0.00024975024280138314,-6.776263578034403e-21,-3.3881317890172014e-20,-0.00016650016186758876,0.0,-1.8502416987596743e-22,2.541098841762901e-21,-4.235164736271502e-22,7.623296525288703e-21,1.6650015822960995e-05,7.0,10.0,12.0,0.03992931544780731,-0.008327089250087738,-0.006193806417286396,-0.005292921327054501,0.0004960317746736109,0.0004870129923801869,0.00041208791662938893,0.00027056277031078935,0.00029970030300319195,0.00019623234402388334,-0.008327089250087738,0.005355061497539282,0.0004870129923801869,0.00041208791662938893,-0.0005952381179668009,-0.00016233765927609056,-0.00013736264372710139,-9.232659125071874e-19,-4.1335207826009857e-19,1.0842021724855044e-19,-0.006193806417286396,0.0004870129923801869,0.0026615746319293976,0.00029970030300319195,-2.1359209623160515e-18,-0.00010822511103469878,1.4568966692773966e-19,-0.000202922077733092,-6.660006329184398e-05,2.947674656444965e-19,-0.005292921327054501,0.00041208791662938893,0.00029970030300319195,0.0018650180427357554,-3.2915475957560956e-19,-5.446800156728423e-20,-7.492507575079799e-05,4.55875675792648e-19,-5.4490963520947844e-05,-0.00011773940059356391,0.0004960317746736109,-0.0005952381179668009,-2.1359209623160515e-18,-3.2915475957560956e-19,9.920635056914762e-05,9.110089699102268e-20,2.4021998688374757e-20,1.551989223249522e-19,5.84805513212024e-20,-2.904822233616293e-21,0.0004870129923801869,-0.00016233765927609056,-0.00010822511103469878,-5.446800156728423e-20,9.110089699102268e-20,3.607503458624706e-05,1.9446489519716032e-20,1.5246593050577406e-20,1.5567456733304152e-20,-6.419402998377395e-21,0.00041208791662938893,-0.00013736264372710139,1.4568966692773966e-19,-7.492507575079799e-05,2.4021998688374757e-20,1.9446489519716032e-20,2.4975024643936194e-05,-2.2128735747018596e-20,-6.776263578034403e-21,-1.5246593050577406e-20,0.00027056277031078935,-9.232659125071874e-19,-0.000202922077733092,4.55875675792648e-19,1.551989223249522e-19,1.5246593050577406e-20,-2.2128735747018596e-20,2.2546897525899112e-05,-1.2705494208814505e-20,-2.6046263128069735e-20,0.00029970030300319195,-4.1335207826009857e-19,-6.660006329184398e-05,-5.4490963520947844e-05,5.84805513212024e-20,1.5567456733304152e-20,-6.776263578034403e-21,-1.2705494208814505e-20,1.2109103408874944e-05,-7.199780051661553e-21,0.00019623234402388334,1.0842021724855044e-19,2.947674656444965e-19,-0.00011773940059356391,-2.904822233616293e-21,-6.419402998377395e-21,-1.5246593050577406e-20,-2.6046263128069735e-20,-7.199780051661553e-21,1.0703582120186184e-05,7.0,10.0,13.0,0.03719732537865639,-0.0077137150801718235,-0.005737119819968939,-0.004570429679006338,0.0004578754596877843,0.0004495504545047879,0.00035321820178069174,0.00024975024280138314,0.000256885978160426,0.00015698587230872363,-0.0077137150801718235,0.0049521904438734055,0.0004495504545047879,0.00035321820178069174,-0.0005494505749084055,-0.00014985015150159597,-0.00011773940059356391,-0.0,-1.0164395367051604e-20,0.0,-0.005737119819968939,0.0004495504545047879,0.002461229218170047,0.000256885978160426,0.0,-9.990009857574478e-05,-6.776263578034403e-21,-0.00018731268937699497,-5.7085770095000044e-05,-1.1858461261560205e-20,-0.004570429679006338,0.00035321820178069174,0.000256885978160426,0.001475310418754816,-0.0,-0.0,-5.886970029678196e-05,-0.0,-4.2814328480744734e-05,-8.562865696148947e-05,0.0004578754596877843,-0.0005494505749084055,0.0,-0.0,9.157509339274839e-05,0.0,0.0,0.0,0.0,0.0,0.0004495504545047879,-0.00014985015150159597,-9.990009857574478e-05,-0.0,0.0,3.330003164592199e-05,0.0,0.0,0.0,0.0,0.00035321820178069174,-0.00011773940059356391,-6.776263578034403e-21,-5.886970029678196e-05,0.0,0.0,1.9623234038590454e-05,0.0,1.4823076576950256e-21,0.0,0.00024975024280138314,-0.0,-0.00018731268937699497,-0.0,0.0,0.0,0.0,2.0812520233448595e-05,0.0,0.0,0.000256885978160426,-1.0164395367051604e-20,-5.7085770095000044e-05,-4.2814328480744734e-05,0.0,0.0,1.4823076576950256e-21,0.0,9.51429501583334e-06,2.541098841762901e-21,0.00015698587230872363,0.0,-1.1858461261560205e-20,-8.562865696148947e-05,0.0,0.0,0.0,0.0,2.541098841762901e-21,7.1357212618750054e-06,7.0,10.0,14.0,0.034816015511751175,-0.0071846009232103825,-0.005343228112906218,-0.003986549098044634,0.00042517005931586027,0.00041743970359675586,0.0003061224415432662,0.00023191094805952162,0.00022263450955506414,0.00012755101488437504,-0.0071846009232103825,0.004605751484632492,0.00041743970359675586,0.0003061224415432662,-0.0005102040595375001,-0.00013914656301494688,-0.0001020408162730746,-9.178907894892412e-19,-3.8963515573697816e-19,-8.470329472543003e-20,-0.005343228112906218,0.00041743970359675586,0.00228896108455956,0.00022263450955506414,-1.8054453503985596e-18,-9.276437776861712e-05,5.082197683525802e-20,-0.0001739332074066624,-4.9474336265120655e-05,1.2366681029912785e-19,-0.003986549098044634,0.0003061224415432662,0.00022263450955506414,0.0011872948380187154,-3.8509163357798337e-19,-7.76407943437096e-20,-4.7095760237425566e-05,2.1021351579372352e-19,-3.4251461329404265e-05,-6.377550744218752e-05,0.00042517005931586027,-0.0005102040595375001,-1.8054453503985596e-18,-3.8509163357798337e-19,8.50340147735551e-05,5.442777990999884e-20,3.232059205637854e-21,1.3302765139987247e-19,4.9434791716832325e-20,9.440672107791659e-21,0.00041743970359675586,-0.00013914656301494688,-9.276437776861712e-05,-7.76407943437096e-20,5.442777990999884e-20,3.092145925620571e-05,7.212581964110518e-21,3.862093032195588e-20,1.2022602490982995e-20,-1.7303276844104072e-35,0.0003061224415432662,-0.0001020408162730746,5.082197683525802e-20,-4.7095760237425566e-05,3.232059205637854e-21,7.212581964110518e-21,1.5698587958468124e-05,-1.2279475190716955e-20,2.329340604949326e-21,1.6940658945086007e-21,0.00023191094805952162,-9.178907894892412e-19,-0.0001739332074066624,2.1021351579372352e-19,1.3302765139987247e-19,3.862093032195588e-20,-1.2279475190716955e-20,1.932591294462327e-05,7.038073613023734e-22,-1.1264438145202727e-20,0.00022263450955506414,-3.8963515573697816e-19,-4.9474336265120655e-05,-3.4251461329404265e-05,4.9434791716832325e-20,1.2022602490982995e-20,2.329340604949326e-21,7.038073613023734e-22,7.611436103616143e-06,-3.3881317890172014e-21,0.00012755101488437504,-8.470329472543003e-20,1.2366681029912785e-19,-6.377550744218752e-05,9.440672107791659e-21,-1.7303276844104072e-35,1.6940658945086007e-21,-1.1264438145202727e-20,-3.3881317890172014e-21,4.905808509647613e-06,7.0,10.0,15.0,0.032721810042858124,-0.006723484955728054,-0.004999999888241291,-0.00350792589597404,0.00039682540227659047,0.00038961038808338344,0.0002678571327123791,0.00021645022206939757,0.00019480519404169172,0.0001050420178216882,-0.006723484955728054,0.004304653499275446,0.00038961038808338344,0.0002678571327123791,-0.0004761904710903764,-0.0001298701245104894,-8.928571332944557e-05,-0.0,-1.6940658945086007e-21,-1.1858461261560205e-20,-0.004999999888241291,0.00038961038808338344,0.0021392495837062597,0.00019480519404169172,0.0,-8.658008300699294e-05,-1.6940658945086007e-21,-0.00016233765927609056,-4.329004150349647e-05,-6.776263578034403e-21,-0.00350792589597404,0.0002678571327123791,0.00019480519404169172,0.0009697812492959201,-0.0,-0.0,-3.826530519290827e-05,-0.0,-2.7829313694383018e-05,-4.848093158216216e-05,0.00039682540227659047,-0.0004761904710903764,0.0,-0.0,7.936507608974352e-05,0.0,0.0,0.0,0.0,0.0,0.00038961038808338344,-0.0001298701245104894,-8.658008300699294e-05,-0.0,0.0,2.886002948798705e-05,0.0,0.0,0.0,0.0,0.0002678571327123791,-8.928571332944557e-05,-1.6940658945086007e-21,-3.826530519290827e-05,0.0,0.0,1.2755102034134325e-05,0.0,4.235164736271502e-22,1.6940658945086007e-21,0.00021645022206939757,-0.0,-0.00016233765927609056,-0.0,0.0,0.0,0.0,1.803751729312353e-05,0.0,0.0,0.00019480519404169172,-1.6940658945086007e-21,-4.329004150349647e-05,-2.7829313694383018e-05,0.0,0.0,4.235164736271502e-22,0.0,6.184292033140082e-06,8.470329472543003e-22,0.0001050420178216882,-1.1858461261560205e-20,-6.776263578034403e-21,-4.848093158216216e-05,0.0,0.0,1.6940658945086007e-21,0.0,8.470329472543003e-22,3.462923586994293e-06,7.0,10.0,16.0,0.030865641310811043,-0.006318038795143366,-0.0046982429921627045,-0.003110676072537899,0.00037202381645329297,0.00036525973700918257,0.00023634453827980906,0.000202922077733092,0.00017188693163916469,8.753501606406644e-05,-0.006318038795143366,0.004040536470711231,0.00036525973700918257,0.00023634453827980906,-0.00044642857392318547,-0.00012175324809504673,-7.878151518525556e-05,-0.0,-1.7787691892340307e-20,3.3881317890172014e-21,-0.0046982429921627045,0.00036525973700918257,0.0020079337991774082,0.00017188693163916469,0.0,-8.116882963804528e-05,-1.6940658945086007e-20,-0.0001521915546618402,-3.819709672825411e-05,-2.202285662861181e-20,-0.003110676072537899,0.00023634453827980906,0.00017188693163916469,0.0008024118724279106,-0.0,-0.0,-3.151260534650646e-05,-0.0,-2.2918258764548227e-05,-3.751500480575487e-05,0.00037202381645329297,-0.00044642857392318547,0.0,-0.0,7.440476474585012e-05,0.0,0.0,0.0,0.0,0.0,0.00036525973700918257,-0.00012175324809504673,-8.116882963804528e-05,-0.0,0.0,2.7056277758674696e-05,0.0,0.0,0.0,0.0,0.00023634453827980906,-7.878151518525556e-05,-1.6940658945086007e-20,-3.151260534650646e-05,0.0,0.0,1.050420178216882e-05,0.0,2.541098841762901e-21,-2.117582368135751e-22,0.000202922077733092,-0.0,-0.0001521915546618402,-0.0,0.0,0.0,0.0,1.6910173144424334e-05,0.0,0.0,0.00017188693163916469,-1.7787691892340307e-20,-3.819709672825411e-05,-2.2918258764548227e-05,0.0,0.0,2.541098841762901e-21,0.0,5.092946139484411e-06,2.964615315390051e-21,8.753501606406644e-05,3.3881317890172014e-21,-2.202285662861181e-20,-3.751500480575487e-05,0.0,0.0,-2.117582368135751e-22,0.0,2.964615315390051e-21,2.501000381016638e-06,7.0,11.0,3.0,0.11025086045265198,-0.02705627679824829,-0.01860639452934265,-0.05032467469573021,0.001803751802071929,0.001623376621864736,0.004870129749178886,0.0008325008093379438,0.003246753243729472,0.006493506487458944,-0.02705627679824829,0.018398268148303032,0.001623376621864736,0.004870129749178886,-0.0021645021624863148,-0.0005411255406215787,-0.001623376621864736,2.981555974335137e-19,-2.710505431213761e-19,0.0,-0.01860639452934265,0.001623376621864736,0.007606282830238342,0.003246753243729472,0.0,-0.0003246753185521811,-2.168404344971009e-19,-0.0005550005589611828,-0.0006493506371043622,2.168404344971009e-19,-0.05032467469573021,0.004870129749178886,0.003246753243729472,0.11525973677635193,-0.0,-2.499297140260563e-20,-0.004870129749178886,3.0538330856333958e-21,-0.003246753243729472,-0.03896103799343109,0.001803751802071929,-0.0021645021624863148,0.0,-0.0,0.0003607503604143858,0.0,0.0,0.0,0.0,0.0,0.001623376621864736,-0.0005411255406215787,-0.0003246753185521811,-2.499297140260563e-20,0.0,0.00010822511103469878,3.43568296123228e-21,-5.666916148903052e-20,1.1325473411534057e-20,-1.3661471043268587e-20,0.004870129749178886,-0.001623376621864736,-2.168404344971009e-19,-0.004870129749178886,0.0,3.43568296123228e-21,0.001623376621864736,4.449761559679326e-21,3.2526065174565133e-19,0.0,0.0008325008093379438,2.981555974335137e-19,-0.0005550005589611828,3.0538330856333958e-21,0.0,-5.666916148903052e-20,4.449761559679326e-21,5.550005516852252e-05,7.573958917600323e-21,-2.073128680353128e-20,0.003246753243729472,-2.710505431213761e-19,-0.0006493506371043622,-0.003246753243729472,0.0,1.1325473411534057e-20,3.2526065174565133e-19,7.573958917600323e-21,0.0006493506371043622,0.0,0.006493506487458944,0.0,2.168404344971009e-19,-0.03896103799343109,0.0,-1.3661471043268587e-20,0.0,-2.073128680353128e-20,0.0,0.019480518996715546,7.0,11.0,4.0,0.08991216868162155,-0.021022727712988853,-0.014441807754337788,-0.03214285895228386,0.0013528139097616076,0.0012175324372947216,0.0029220778960734606,0.0006243756506592035,0.0019480519695207477,0.003246753243729472,-0.021022727712988853,0.014042207971215248,0.0012175324372947216,0.0029220778960734606,-0.001623376621864736,-0.000405844155466184,-0.0009740259847603738,-9.486769009248164e-20,-2.0328790734103208e-19,-2.4936649967166602e-18,-0.014441807754337788,0.0012175324372947216,0.0058021144941449165,0.0019480519695207477,0.0,-0.00024350649619009346,-1.6263032587282567e-19,-0.0004162504046689719,-0.00038961038808338344,-2.5478751053409354e-18,-0.03214285895228386,0.0029220778960734606,0.0019480519695207477,0.04415584355592728,-0.0,-2.1926229525356427e-18,-0.0019480519695207477,-1.019776499618473e-19,-0.0012987012742087245,-0.009740259498357773,0.0013528139097616076,-0.001623376621864736,0.0,-0.0,0.00027056277031078935,0.0,0.0,0.0,0.0,0.0,0.0012175324372947216,-0.000405844155466184,-0.00024350649619009346,-2.1926229525356427e-18,0.0,8.116882963804528e-05,9.602242130290859e-20,1.413801431780436e-20,7.530872016532973e-20,5.071300612931182e-19,0.0029220778960734606,-0.0009740259847603738,-1.6263032587282567e-19,-0.0019480519695207477,0.0,9.602242130290859e-20,0.0006493506371043622,1.4536893491536432e-21,-8.809142651444724e-20,-1.0842021724855044e-19,0.0006243756506592035,-9.486769009248164e-20,-0.0004162504046689719,-1.019776499618473e-19,0.0,1.413801431780436e-20,1.4536893491536432e-21,4.162504046689719e-05,-6.901959892122301e-22,2.940826117960909e-20,0.0019480519695207477,-2.0328790734103208e-19,-0.00038961038808338344,-0.0012987012742087245,0.0,7.530872016532973e-20,-8.809142651444724e-20,-6.901959892122301e-22,0.0002597402490209788,4.87890977618477e-19,0.003246753243729472,-2.4936649967166602e-18,-2.5478751053409354e-18,-0.009740259498357773,0.0,5.071300612931182e-19,-1.0842021724855044e-19,2.940826117960909e-20,4.87890977618477e-19,0.003246753243729472,7.0,11.0,5.0,0.07602991908788681,-0.017207792028784752,-0.011813187040388584,-0.022356215864419937,0.0010822510812431574,0.0009740259847603738,0.0019480519695207477,0.0004995004856027663,0.0012987012742087245,0.001855287584476173,-0.017207792028784752,0.011363636702299118,0.0009740259847603738,0.0019480519695207477,-0.0012987012742087245,-0.0003246753185521811,-0.0006493506371043622,8.470329472543003e-21,6.776263578034403e-21,-0.0,-0.011813187040388584,0.0009740259847603738,0.00469363946467638,0.0012987012742087245,0.0,-0.00019480519404169172,0.0,-0.0003330003237351775,-0.0002597402490209788,-0.0,-0.022356215864419937,0.0019480519695207477,0.0012987012742087245,0.022309832274913788,0.0,1.0841784395105076e-20,-0.0009740259847603738,0.0,-0.0006493506371043622,-0.003710575168952346,0.0010822510812431574,-0.0012987012742087245,0.0,0.0,0.00021645022206939757,0.0,0.0,0.0,0.0,-0.0,0.0009740259847603738,-0.0003246753185521811,-0.00019480519404169172,1.0841784395105076e-20,0.0,6.49350622552447e-05,0.0,0.0,-1.6940658945086007e-21,-0.0,0.0019480519695207477,-0.0006493506371043622,0.0,-0.0009740259847603738,0.0,0.0,0.0003246753185521811,0.0,0.0,-0.0,0.0004995004856027663,8.470329472543003e-21,-0.0003330003237351775,0.0,0.0,0.0,0.0,3.330003164592199e-05,0.0,-0.0,0.0012987012742087245,6.776263578034403e-21,-0.0002597402490209788,-0.0006493506371043622,0.0,-1.6940658945086007e-21,0.0,0.0,0.0001298701245104894,-0.0,0.001855287584476173,-0.0,-0.0,-0.003710575168952346,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009276437922380865,7.0,11.0,6.0,0.06590928882360458,-0.014571737498044968,-0.009998929686844349,-0.016465676948428154,0.0009018759010359645,0.000811688310932368,0.0013914656592532992,0.0004162504046689719,0.0009276437922380865,0.0011595546966418624,-0.014571737498044968,0.009547000750899315,0.000811688310932368,0.0013914656592532992,-0.0010822510812431574,-0.00027056277031078935,-0.00046382189611904323,1.5585406229479126e-19,0.0,-0.0,-0.009998929686844349,0.000811688310932368,0.003942287992686033,0.0009276437922380865,0.0,-0.00016233765927609056,0.0,-0.0002775002794805914,-0.00018552875553723425,-0.0,-0.016465676948428154,0.0013914656592532992,0.0009276437922380865,0.012963822111487389,0.0,2.954742664363225e-21,-0.0005565862520597875,0.0,-0.0003710575110744685,-0.0017393321031704545,0.0009018759010359645,-0.0010822510812431574,0.0,0.0,0.0001803751802071929,0.0,0.0,0.0,0.0,-0.0,0.000811688310932368,-0.00027056277031078935,-0.00016233765927609056,2.954742664363225e-21,0.0,5.411255551734939e-05,0.0,-3.218725199566341e-20,0.0,-0.0,0.0013914656592532992,-0.00046382189611904323,0.0,-0.0005565862520597875,0.0,0.0,0.00018552875553723425,0.0,0.0,-0.0,0.0004162504046689719,1.5585406229479126e-19,-0.0002775002794805914,0.0,0.0,-3.218725199566341e-20,0.0,2.775002758426126e-05,0.0,-0.0,0.0009276437922380865,0.0,-0.00018552875553723425,-0.0003710575110744685,0.0,0.0,0.0,0.0,7.421150075970218e-05,-0.0,0.0011595546966418624,-0.0,-0.0,-0.0017393321031704545,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003478664148133248,7.0,11.0,7.0,0.05818883329629898,-0.01263914629817009,-0.008669901639223099,-0.01263914629817009,0.0007730365032330155,0.0006957328296266496,0.001043599215336144,0.0003567860694602132,0.0006957328296266496,0.0007730365032330155,-0.01263914629817009,0.008232838474214077,0.0006957328296266496,0.001043599215336144,-0.0009276437922380865,-0.00023191094805952162,-0.0003478664148133248,-1.5246593050577406e-20,-1.0164395367051604e-20,-0.0,-0.008669901639223099,0.0006957328296266496,0.0033989818766713142,0.0006957328296266496,0.0,-0.00013914656301494688,0.0,-0.00023785738449078053,-0.00013914656301494688,-0.0,-0.01263914629817009,0.001043599215336144,0.0006957328296266496,0.008232838474214077,0.0,-3.916816522712226e-21,-0.0003478664148133248,0.0,-0.00023191094805952162,-0.0009276437922380865,0.0007730365032330155,-0.0009276437922380865,0.0,0.0,0.00015460730355698615,0.0,0.0,0.0,0.0,-0.0,0.0006957328296266496,-0.00023191094805952162,-0.00013914656301494688,-3.916816522712226e-21,0.0,4.638218888430856e-05,0.0,3.3881317890172014e-21,1.6940658945086007e-21,-0.0,0.001043599215336144,-0.0003478664148133248,0.0,-0.0003478664148133248,0.0,0.0,0.00011595547402976081,0.0,0.0,-0.0,0.0003567860694602132,-1.5246593050577406e-20,-0.00023785738449078053,0.0,0.0,3.3881317890172014e-21,0.0,2.3785738449078053e-05,0.0,-0.0,0.0006957328296266496,-1.0164395367051604e-20,-0.00013914656301494688,-0.00023191094805952162,0.0,1.6940658945086007e-21,0.0,0.0,4.638218888430856e-05,-0.0,0.0007730365032330155,-0.0,-0.0,-0.0009276437922380865,-0.0,-0.0,-0.0,-0.0,-0.0,0.00015460730355698615,7.0,11.0,8.0,0.052098941057920456,-0.01116071455180645,-0.007653804495930672,-0.010010822676122189,0.0006764069548808038,0.0006087662186473608,0.000811688310932368,0.00031218782532960176,0.0005411255406215787,0.0005411255406215787,-0.01116071455180645,0.007237554062157869,0.0006087662186473608,0.000811688310932368,-0.000811688310932368,-0.000202922077733092,-0.00027056277031078935,1.2790197503539935e-19,6.301925127571995e-19,2.1507345263159574e-18,-0.007653804495930672,0.0006087662186473608,0.0029876374173909426,0.0005411255406215787,2.6033369450271565e-19,-0.00012175324809504673,6.247845610086926e-19,-0.00020812520233448595,-0.00010822511103469878,1.3344368188895602e-18,-0.010010822676122189,0.000811688310932368,0.0005411255406215787,0.005565862637013197,2.6777178528885373e-18,2.386312928132857e-19,-0.00023191094805952162,1.1180834903756764e-18,-0.00015460730355698615,-0.0005411255406215787,0.0006764069548808038,-0.000811688310932368,2.6033369450271565e-19,2.6777178528885373e-18,0.00013528138515539467,1.1319701801562797e-34,-1.115715815119214e-19,5.416677968589101e-34,-7.438105003304858e-20,-2.6033369450271565e-19,0.0006087662186473608,-0.000202922077733092,-0.00012175324809504673,2.386312928132857e-19,1.1319701801562797e-34,4.058441481902264e-05,7.033133046594095e-21,8.470329472543003e-21,8.470329472543003e-22,-3.0038501720540605e-20,0.000811688310932368,-0.00027056277031078935,6.247845610086926e-19,-0.00023191094805952162,-1.115715815119214e-19,7.033133046594095e-21,7.730365177849308e-05,-4.6213078327303136e-20,-5.250090144714778e-20,-1.2529709281359037e-19,0.00031218782532960176,1.2790197503539935e-19,-0.00020812520233448595,1.1180834903756764e-18,5.416677968589101e-34,8.470329472543003e-21,-4.6213078327303136e-20,2.0812520233448595e-05,-3.3034284942917713e-20,-1.078305214823311e-19,0.0005411255406215787,6.301925127571995e-19,-0.00010822511103469878,-0.00015460730355698615,-7.438105003304858e-20,8.470329472543003e-22,-5.250090144714778e-20,-3.3034284942917713e-20,3.092145925620571e-05,-4.7433179424341655e-20,0.0005411255406215787,2.1507345263159574e-18,1.3344368188895602e-18,-0.0005411255406215787,-2.6033369450271565e-19,-3.0038501720540605e-20,-1.2529709281359037e-19,-1.078305214823311e-19,-4.7433179424341655e-20,7.730365177849308e-05,7.0,11.0,9.0,0.047169413417577744,-0.009992784820497036,-0.00685148173943162,-0.00812672171741724,0.0006012506200931966,0.0005411255406215787,0.0006493506371043622,0.0002775002794805914,0.00043290044413879514,0.00039354583714157343,-0.009992784820497036,0.0064574312418699265,0.0005411255406215787,0.0006493506371043622,-0.0007215007208287716,-0.0001803751802071929,-0.00021645022206939757,9.656175598699024e-20,-2.371692252312041e-20,0.0,-0.00685148173943162,0.0005411255406215787,0.002665297593921423,0.00043290044413879514,0.0,-0.00010822511103469878,-2.371692252312041e-20,-0.00018500018632039428,-8.658008300699294e-05,-7.453889935837843e-20,-0.00812672171741724,0.0006493506371043622,0.00043290044413879514,0.003943189047276974,-0.0,-0.0,-0.00016233765927609056,-1.5861760769394879e-21,-0.00010822511103469878,-0.00033732500742189586,0.0006012506200931966,-0.0007215007208287716,0.0,-0.0,0.0001202501225634478,0.0,0.0,0.0,0.0,0.0,0.0005411255406215787,-0.0001803751802071929,-0.00010822511103469878,-0.0,0.0,3.607503458624706e-05,-1.0587911840678754e-22,-2.0328790734103208e-20,4.235164736271502e-22,1.810440447538781e-22,0.0006493506371043622,-0.00021645022206939757,-2.371692252312041e-20,-0.00016233765927609056,0.0,-1.0587911840678754e-22,5.411255551734939e-05,0.0,6.776263578034403e-21,0.0,0.0002775002794805914,9.656175598699024e-20,-0.00018500018632039428,-1.5861760769394879e-21,0.0,-2.0328790734103208e-20,0.0,1.850001899583731e-05,0.0,4.235164736271502e-22,0.00043290044413879514,-2.371692252312041e-20,-8.658008300699294e-05,-0.00010822511103469878,0.0,4.235164736271502e-22,6.776263578034403e-21,0.0,2.1645020751748234e-05,1.6940658945086007e-20,0.00039354583714157343,0.0,-7.453889935837843e-20,-0.00033732500742189586,0.0,1.810440447538781e-22,0.0,4.235164736271502e-22,1.6940658945086007e-20,4.216562592773698e-05,7.0,11.0,10.0,0.043095920234918594,-0.009046635590493679,-0.006201752927154303,-0.006729634013026953,0.0005411255406215787,0.0004870129923801869,0.000531286874320358,0.00024975024280138314,0.0003541912592481822,0.00029515937785618007,-0.009046635590493679,0.005829398054629564,0.0004870129923801869,0.000531286874320358,-0.0006493506371043622,-0.00016233765927609056,-0.0001770956296240911,-3.3881317890172014e-21,5.082197683525802e-21,6.776263578034403e-21,-0.006201752927154303,0.0004870129923801869,0.002405851613730192,0.0003541912592481822,0.0,-9.740259702084586e-05,3.3881317890172014e-21,-0.00016650016186758876,-7.083825039444491e-05,6.776263578034403e-21,-0.006729634013026953,0.000531286874320358,0.0003541912592481822,0.0028974812012165785,-0.0,-0.0,-0.0001180637555080466,-7.183826128714363e-21,-7.870917033869773e-05,-0.00022136954066809267,0.0005411255406215787,-0.0006493506371043622,0.0,-0.0,0.00010822511103469878,0.0,0.0,0.0,0.0,0.0,0.0004870129923801869,-0.00016233765927609056,-9.740259702084586e-05,-0.0,0.0,3.246753112762235e-05,1.0587911840678754e-22,8.470329472543003e-22,0.0,1.6360008346358346e-22,0.000531286874320358,-0.0001770956296240911,3.3881317890172014e-21,-0.0001180637555080466,0.0,1.0587911840678754e-22,3.9354585169348866e-05,-2.117582368135751e-22,-1.2705494208814505e-21,0.0,0.00024975024280138314,-3.3881317890172014e-21,-0.00016650016186758876,-7.183826128714363e-21,0.0,8.470329472543003e-22,-2.117582368135751e-22,1.6650015822960995e-05,8.470329472543003e-22,2.117582368135751e-22,0.0003541912592481822,5.082197683525802e-21,-7.083825039444491e-05,-7.870917033869773e-05,0.0,0.0,-1.2705494208814505e-21,8.470329472543003e-22,1.5741834431537427e-05,-1.6940658945086007e-21,0.00029515937785618007,6.776263578034403e-21,6.776263578034403e-21,-0.00022136954066809267,0.0,1.6360008346358346e-22,0.0,2.117582368135751e-22,-1.6940658945086007e-21,2.459661482134834e-05,7.0,11.0,11.0,0.039672449231147766,-0.00826446246355772,-0.005664789583534002,-0.005664789583534002,0.0004919323255307972,0.00044273908133618534,0.00044273908133618534,0.00022704567527398467,0.00029515937785618007,0.00022704567527398467,-0.00826446246355772,0.005312868859618902,0.00044273908133618534,0.00044273908133618534,-0.0005903187557123601,-0.00014757968892809004,-0.00014757968892809004,-2.879912020664621e-20,8.470329472543003e-21,-2.710505431213761e-20,-0.005664789583534002,0.00044273908133618534,0.002192504471167922,0.00029515937785618007,0.0,-8.854781481204554e-05,8.470329472543003e-21,-0.00015136378351598978,-5.90318777540233e-05,1.6940658945086007e-20,-0.005664789583534002,0.00044273908133618534,0.00029515937785618007,0.002192504471167922,-0.0,1.9016944886595545e-21,-8.854781481204554e-05,7.076513984519813e-21,-5.90318777540233e-05,-0.00015136378351598978,0.0004919323255307972,-0.0005903187557123601,0.0,-0.0,9.838645928539336e-05,0.0,0.0,0.0,0.0,0.0,0.00044273908133618534,-0.00014757968892809004,-8.854781481204554e-05,1.9016944886595545e-21,0.0,2.951593887701165e-05,2.9076131856336416e-23,5.082197683525802e-21,-4.747184688680424e-22,1.9916895077755952e-23,0.00044273908133618534,-0.00014757968892809004,8.470329472543003e-21,-8.854781481204554e-05,0.0,2.9076131856336416e-23,2.951593887701165e-05,-1.0587911840678754e-22,-1.6940658945086007e-21,4.235164736271502e-21,0.00022704567527398467,-2.879912020664621e-20,-0.00015136378351598978,7.076513984519813e-21,0.0,5.082197683525802e-21,-1.0587911840678754e-22,1.5136378351598978e-05,-1.2705494208814505e-21,0.0,0.00029515937785618007,8.470329472543003e-21,-5.90318777540233e-05,-5.90318777540233e-05,0.0,-4.747184688680424e-22,-1.6940658945086007e-21,-1.2705494208814505e-21,1.180637536890572e-05,-3.3881317890172014e-21,0.00022704567527398467,-2.710505431213761e-20,1.6940658945086007e-20,-0.00015136378351598978,0.0,1.9916895077755952e-23,4.235164736271502e-21,0.0,-3.3881317890172014e-21,1.5136378351598978e-05,7.0,11.0,12.0,0.036754414439201355,-0.0076069761998951435,-0.005213536322116852,-0.004834451247006655,0.00045093795051798224,0.000405844155466184,0.00037462537875398993,0.00020812520233448595,0.00024975024280138314,0.0001783930347301066,-0.0076069761998951435,0.00488053634762764,0.000405844155466184,0.00037462537875398993,-0.0005411255406215787,-0.00013528138515539467,-0.00012487512140069157,7.623296525288703e-20,-1.6940658945086007e-20,-2.371692252312041e-20,-0.005213536322116852,0.000405844155466184,0.002013958292081952,0.00024975024280138314,0.0,-8.116882963804528e-05,-1.6940658945086007e-20,-0.0001387501397402957,-4.995004928787239e-05,-3.049318610115481e-20,-0.004834451247006655,0.00037462537875398993,0.00024975024280138314,0.0016995990881696343,-0.0,-0.0,-6.81137025821954e-05,-1.4711817149490822e-21,-4.5409135054796934e-05,-0.00010703581938287243,0.00045093795051798224,-0.0005411255406215787,0.0,-0.0,9.018759010359645e-05,0.0,0.0,0.0,0.0,0.0,0.000405844155466184,-0.00013528138515539467,-8.116882963804528e-05,-0.0,0.0,2.7056277758674696e-05,0.0,-1.6093625997831706e-20,0.0,8.364882246015493e-23,0.00037462537875398993,-0.00012487512140069157,-1.6940658945086007e-20,-6.81137025821954e-05,0.0,0.0,2.2704567527398467e-05,2.117582368135751e-22,2.964615315390051e-21,5.082197683525802e-21,0.00020812520233448595,7.623296525288703e-20,-0.0001387501397402957,-1.4711817149490822e-21,0.0,-1.6093625997831706e-20,2.117582368135751e-22,1.387501379213063e-05,0.0,2.117582368135751e-22,0.00024975024280138314,-1.6940658945086007e-20,-4.995004928787239e-05,-4.5409135054796934e-05,0.0,0.0,2.964615315390051e-21,0.0,9.081827556656208e-06,4.658681209898652e-21,0.0001783930347301066,-2.371692252312041e-20,-3.049318610115481e-20,-0.00010703581938287243,0.0,8.364882246015493e-23,5.082197683525802e-21,2.117582368135751e-22,4.658681209898652e-21,9.730529200169258e-06,7.0,11.0,13.0,0.03423728421330452,-0.007046524900943041,-0.004828962031751871,-0.004174396861344576,0.0004162504046689719,0.00037462537875398993,0.0003211074508726597,0.0001921155781019479,0.00021407163876574486,0.00014271443069446832,-0.007046524900943041,0.004513343796133995,0.00037462537875398993,0.0003211074508726597,-0.0004995004856027663,-0.00012487512140069157,-0.00010703581938287243,-4.235164736271502e-21,6.776263578034403e-21,3.3881317890172014e-21,-0.004828962031751871,0.00037462537875398993,0.001862331759184599,0.00021407163876574486,0.0,-7.492507575079799e-05,8.470329472543003e-21,-0.00012807705206796527,-4.2814328480744734e-05,1.6940658945086007e-20,-0.004174396861344576,0.0003211074508726597,0.00021407163876574486,0.0013444348005577922,-0.0,-1.1661113052238993e-21,-5.3517909691436216e-05,-2.571269275156073e-22,-3.567860767361708e-05,-7.784423360135406e-05,0.0004162504046689719,-0.0004995004856027663,0.0,-0.0,8.325008093379438e-05,0.0,0.0,0.0,0.0,0.0,0.00037462537875398993,-0.00012487512140069157,-7.492507575079799e-05,-1.1661113052238993e-21,0.0,2.4975024643936194e-05,4.641938716347054e-23,-8.470329472543003e-22,3.09462591607949e-23,-9.412948960740198e-23,0.0003211074508726597,-0.00010703581938287243,8.470329472543003e-21,-5.3517909691436216e-05,0.0,4.641938716347054e-23,1.783930383680854e-05,1.0587911840678754e-22,-1.2705494208814505e-21,-8.470329472543003e-22,0.0001921155781019479,-4.235164736271502e-21,-0.00012807705206796527,-2.571269275156073e-22,0.0,-8.470329472543003e-22,1.0587911840678754e-22,1.2807705388695467e-05,-4.235164736271502e-22,1.0587911840678754e-22,0.00021407163876574486,6.776263578034403e-21,-4.2814328480744734e-05,-3.567860767361708e-05,0.0,3.09462591607949e-23,-1.2705494208814505e-21,-4.235164736271502e-22,7.1357212618750054e-06,-2.541098841762901e-21,0.00014271443069446832,3.3881317890172014e-21,1.6940658945086007e-20,-7.784423360135406e-05,0.0,-9.412948960740198e-23,-8.470329472543003e-22,1.0587911840678754e-22,-2.541098841762901e-21,6.4870196183619555e-06,7.0,11.0,14.0,0.03204355016350746,-0.006563080009073019,-0.0044972882606089115,-0.003641001880168915,0.00038651825161650777,0.0003478664148133248,0.00027829312602989376,0.0001783930347301066,0.00018552875553723425,0.00011595547402976081,-0.006563080009073019,0.004197588190436363,0.0003478664148133248,0.00027829312602989376,-0.00046382189611904323,-0.00011595547402976081,-9.276437776861712e-05,-0.0,-1.5246593050577406e-20,-2.0328790734103208e-20,-0.0044972882606089115,0.0003478664148133248,0.0017319584731012583,0.00018552875553723425,0.0,-6.957328150747344e-05,-1.5246593050577406e-20,-0.00011892869224539027,-3.710575037985109e-05,-2.202285662861181e-20,-0.003641001880168915,0.00027829312602989376,0.00018552875553723425,0.0010819537565112114,-0.0,-0.0,-4.2814328480744734e-05,-0.0,-2.8542885047500022e-05,-5.7977737014880404e-05,0.00038651825161650777,-0.00046382189611904323,0.0,-0.0,7.730365177849308e-05,0.0,0.0,0.0,0.0,0.0,0.0003478664148133248,-0.00011595547402976081,-6.957328150747344e-05,-0.0,0.0,2.319109444215428e-05,0.0,0.0,0.0,0.0,0.00027829312602989376,-9.276437776861712e-05,-1.5246593050577406e-20,-4.2814328480744734e-05,0.0,0.0,1.4271442523750011e-05,0.0,2.329340604949326e-21,2.541098841762901e-21,0.0001783930347301066,-0.0,-0.00011892869224539027,-0.0,0.0,0.0,0.0,1.1892869224539027e-05,0.0,0.0,0.00018552875553723425,-1.5246593050577406e-20,-3.710575037985109e-05,-2.8542885047500022e-05,0.0,0.0,2.329340604949326e-21,0.0,5.708577191398945e-06,3.3881317890172014e-21,0.00011595547402976081,-2.0328790734103208e-20,-2.202285662861181e-20,-5.7977737014880404e-05,0.0,0.0,2.541098841762901e-21,0.0,3.3881317890172014e-21,4.459825959202135e-06,7.0,11.0,15.0,0.030114533379673958,-0.006141774822026491,-0.004208291880786419,-0.0032037815544754267,0.0003607503604143858,0.0003246753185521811,0.00024350649619009346,0.00016650016186758876,0.00016233765927609056,9.549274545861408e-05,-0.006141774822026491,0.003923160023987293,0.0003246753185521811,0.00024350649619009346,-0.00043290044413879514,-0.00010822511103469878,-8.116882963804528e-05,-0.0,1.5246593050577406e-20,1.6940658945086007e-20,-0.004208291880786419,0.0003246753185521811,0.0016186591237783432,0.00016233765927609056,0.0,-6.49350622552447e-05,1.5246593050577406e-20,-0.00011100011033704504,-3.246753112762235e-05,2.0328790734103208e-20,-0.0032037815544754267,0.00024350649619009346,0.00016233765927609056,0.000883727625478059,-0.0,-0.0,-3.478664075373672e-05,-0.0,-2.319109444215428e-05,-4.407357482705265e-05,0.0003607503604143858,-0.00043290044413879514,0.0,-0.0,7.215006917249411e-05,0.0,0.0,0.0,0.0,0.0,0.0003246753185521811,-0.00010822511103469878,-6.49350622552447e-05,-0.0,0.0,2.1645020751748234e-05,0.0,0.0,0.0,0.0,0.00024350649619009346,-8.116882963804528e-05,1.5246593050577406e-20,-3.478664075373672e-05,0.0,0.0,1.159554722107714e-05,0.0,-2.117582368135751e-21,-2.117582368135751e-21,0.00016650016186758876,-0.0,-0.00011100011033704504,-0.0,0.0,0.0,0.0,1.1100010851805564e-05,0.0,0.0,0.00016233765927609056,1.5246593050577406e-20,-3.246753112762235e-05,-2.319109444215428e-05,0.0,0.0,-2.117582368135751e-21,0.0,4.638218797481386e-06,-2.964615315390051e-21,9.549274545861408e-05,1.6940658945086007e-20,2.0328790734103208e-20,-4.407357482705265e-05,0.0,0.0,-2.117582368135751e-21,0.0,-2.964615315390051e-21,3.1481124551646644e-06,7.0,11.0,16.0,0.02840495854616165,-0.0057713426649570465,-0.003954226151108742,-0.0028409091755747795,0.0003382034774404019,0.0003043831093236804,0.00021485866454895586,0.00015609391266480088,0.00014323911454994231,7.95772866695188e-05,-0.0057713426649570465,0.0036824389826506376,0.0003043831093236804,0.00021485866454895586,-0.000405844155466184,-0.000101461038866546,-7.161955727497116e-05,2.4172723274444136e-20,1.6347735882007997e-19,2.456395547037471e-19,-0.003954226151108742,0.0003043831093236804,0.001519283396191895,0.00014323911454994231,1.3782370921494028e-19,-6.0876624047523364e-05,1.5161889755851976e-19,-0.00010406260116724297,-2.8647822546190582e-05,1.7025362239811437e-19,-0.0028409091755747795,0.00021485866454895586,0.00014323911454994231,0.0007312015513889492,7.035572292360589e-19,6.97655114619734e-20,-2.8647822546190582e-05,2.914142305375714e-19,-1.9098548364127055e-05,-3.410455246921629e-05,0.0003382034774404019,-0.000405844155466184,1.3782370921494028e-19,7.035572292360589e-19,6.764069257769734e-05,6.712790781980847e-35,-2.756474378169262e-20,2.8039682047988282e-34,-1.8376495854461745e-20,-3.281516932229639e-20,0.0003043831093236804,-0.000101461038866546,-6.0876624047523364e-05,6.97655114619734e-20,6.712790781980847e-35,2.029220740951132e-05,1.737597687882946e-21,1.2291479003121777e-20,-1.849398740929017e-21,-3.533941355128496e-21,0.00021485866454895586,-7.161955727497116e-05,1.5161889755851976e-19,-2.8647822546190582e-05,-2.756474378169262e-20,1.737597687882946e-21,9.549274182063527e-06,-1.141734942845783e-20,-5.717472393966527e-21,-3.8116482626443515e-21,0.00015609391266480088,2.4172723274444136e-20,-0.00010406260116724297,2.914142305375714e-19,2.8039682047988282e-34,1.2291479003121777e-20,-1.141734942845783e-20,1.0406260116724297e-05,-7.611565747109509e-21,-1.35920815758679e-20,0.00014323911454994231,1.6347735882007997e-19,-2.8647822546190582e-05,-1.9098548364127055e-05,-1.8376495854461745e-20,-1.849398740929017e-21,-5.717472393966527e-21,-7.611565747109509e-21,3.819709490926471e-06,-3.1763735522036263e-21,7.95772866695188e-05,2.456395547037471e-19,1.7025362239811437e-19,-3.410455246921629e-05,-3.281516932229639e-20,-3.533941355128496e-21,-3.8116482626443515e-21,-1.35920815758679e-20,-3.1763735522036263e-21,2.2736367100151256e-06,7.0,12.0,3.0,0.10233334451913834,-0.02491605654358864,-0.015894819051027298,-0.04635988920927048,0.0016534391324967146,0.0013736264081671834,0.004464285913854837,0.0006541077746078372,0.002747252816334367,0.0059523810632526875,-0.02491605654358864,0.016903236508369446,0.0013736264081671834,0.004464285913854837,-0.0019841270986944437,-0.0004578754596877843,-0.0014880952658131719,-2.9252562006884e-18,-2.032879073410321e-18,2.970713952610282e-17,-0.015894819051027298,0.0013736264081671834,0.005898863077163696,0.002747252816334367,-2.791949427530579e-18,-0.00024975024280138314,-4.065758146820642e-18,-0.0003924646880477667,-0.0004995004856027663,9.86623976961809e-18,-0.04635988920927048,0.004464285913854837,0.002747252816334367,0.10588370263576508,7.530170877566258e-18,9.024024529046452e-19,-0.004464285913854837,-9.586585927740703e-19,-0.002747252816334367,-0.0357142873108387,0.0016534391324967146,-0.0019841270986944437,-2.791949427530579e-18,7.530170877566258e-18,0.0003306878206785768,-3.5236570605778894e-19,-5.576079826923424e-19,3.3881317890172014e-19,7.27507739809346e-20,-2.930564839064612e-18,0.0013736264081671834,-0.0004578754596877843,-0.00024975024280138314,9.024024529046452e-19,-3.5236570605778894e-19,8.325008093379438e-05,6.8682074496178e-21,8.978549240895584e-20,1.8074045018299973e-19,-9.597728050591793e-19,0.004464285913854837,-0.0014880952658131719,-4.065758146820642e-18,-0.004464285913854837,-5.576079826923424e-19,6.8682074496178e-21,0.0014880952658131719,3.01809719488255e-19,4.607859233063394e-19,-5.637851296924623e-18,0.0006541077746078372,-2.9252562006884e-18,-0.0003924646880477667,-9.586585927740703e-19,3.3881317890172014e-19,8.978549240895584e-20,3.01809719488255e-19,3.567860767361708e-05,2.2134745731156677e-20,-2.759896191718846e-20,0.002747252816334367,-2.032879073410321e-18,-0.0004995004856027663,-0.002747252816334367,7.27507739809346e-20,1.8074045018299973e-19,4.607859233063394e-19,2.2134745731156677e-20,0.0004995004856027663,-5.9631119486702744e-18,0.0059523810632526875,2.970713952610282e-17,9.86623976961809e-18,-0.0357142873108387,-2.930564839064612e-18,-9.597728050591793e-19,-5.637851296924623e-18,-2.759896191718846e-20,-5.9631119486702744e-18,0.01785714365541935,7.0,12.0,4.0,0.08340637385845184,-0.019356684759259224,-0.012333202175796032,-0.029601648449897766,0.0012400794075801969,0.001030219835229218,0.0026785715017467737,0.0004905808600597084,0.0016483516665175557,0.0029761905316263437,-0.019356684759259224,0.012900641188025475,0.001030219835229218,0.0026785715017467737,-0.0014880952658131719,-0.00034340660204179585,-0.0008928571478463709,2.981555974335137e-19,7.589415207398531e-19,-7.292329154497048e-19,-0.012333202175796032,0.001030219835229218,0.0044990722090005875,0.0016483516665175557,1.1384122811097797e-18,-0.00018731268937699497,7.589415207398531e-19,-0.000294348516035825,-0.00029970030300319195,2.0341601693840123e-18,-0.029601648449897766,0.0026785715017467737,0.0016483516665175557,0.04056776687502861,-9.949333577666645e-19,6.765959492541406e-19,-0.0017857142956927419,-6.776263578034403e-20,-0.001098901149816811,-0.008928571827709675,0.0012400794075801969,-0.0014880952658131719,1.1384122811097797e-18,-9.949333577666645e-19,0.00024801588733680546,-1.5246593050577406e-19,4.336808689942018e-19,-4.0657581468206416e-20,-8.809142651444724e-20,2.6676044842255226e-20,0.001030219835229218,-0.00034340660204179585,-0.00018731268937699497,6.765959492541406e-19,-1.5246593050577406e-19,6.243756070034578e-05,-9.486769009248164e-20,-8.470329472543003e-21,-4.404571325722362e-20,-5.392159061155614e-20,0.0026785715017467737,-0.0008928571478463709,7.589415207398531e-19,-0.0017857142956927419,4.336808689942018e-19,-9.486769009248164e-20,0.0005952381179668009,-1.3552527156068805e-20,-8.809142651444724e-20,2.174264402623064e-19,0.0004905808600597084,2.981555974335137e-19,-0.000294348516035825,-6.776263578034403e-20,-4.0657581468206416e-20,-8.470329472543003e-21,-1.3552527156068805e-20,2.6758954845718108e-05,1.0164395367051604e-20,1.2412262720632292e-20,0.0016483516665175557,7.589415207398531e-19,-0.00029970030300319195,-0.001098901149816811,-8.809142651444724e-20,-4.404571325722362e-20,-8.809142651444724e-20,1.0164395367051604e-20,0.00019980019715148956,-1.434796988249394e-18,0.0029761905316263437,-7.292329154497048e-19,2.0341601693840123e-18,-0.008928571827709675,2.6676044842255226e-20,-5.392159061155614e-20,2.174264402623064e-19,1.2412262720632292e-20,-1.434796988249394e-18,0.0029761905316263437,7.0,12.0,5.0,0.0705019161105156,-0.015842491760849953,-0.010086342692375183,-0.020584773272275925,0.0009920635493472219,0.0008241758332587779,0.0017857142956927419,0.0003924646880477667,0.001098901149816811,0.001700680237263441,-0.015842491760849953,0.010439560748636723,0.0008241758332587779,0.0017857142956927419,-0.0011904762359336019,-0.00027472528745420277,-0.0005952381179668009,-3.3881317890172014e-20,-9.75781955236954e-19,-9.215718466126788e-18,-0.010086342692375183,0.0008241758332587779,0.003639217931777239,0.001098901149816811,-9.579942633446137e-19,-0.00014985015150159597,-6.2172218328465645e-19,-0.00023547880118712783,-0.00019980019715148956,-1.7889335846010823e-18,-0.020584773272275925,0.0017857142956927419,0.001098901149816811,0.020496467128396034,-6.5052130349130266e-18,4.0657581468206416e-19,-0.0008928571478463709,-2.0328790734103208e-19,-0.0005494505749084055,-0.003401360474526882,0.0009920635493472219,-0.0011904762359336019,-9.579942633446137e-19,-6.5052130349130266e-18,0.00019841270113829523,6.814881926648119e-20,3.4705810165734244e-19,2.541098841762901e-20,1.8229087099425967e-19,1.0531331652804361e-18,0.0008241758332587779,-0.00027472528745420277,-0.00014985015150159597,4.0657581468206416e-19,6.814881926648119e-20,4.995004928787239e-05,-1.3552527156068805e-20,-2.0346395787101236e-20,-5.929230630780102e-20,6.776263578034403e-21,0.0017857142956927419,-0.0005952381179668009,-6.2172218328465645e-19,-0.0008928571478463709,3.4705810165734244e-19,-1.3552527156068805e-20,0.00029761905898340046,1.5590301135377394e-20,1.7957098481791167e-19,1.4501204056993622e-18,0.0003924646880477667,-3.3881317890172014e-20,-0.00023547880118712783,-2.0328790734103208e-19,2.541098841762901e-20,-2.0346395787101236e-20,1.5590301135377394e-20,2.1407164240372367e-05,-1.3166002781046395e-20,6.859337068459162e-20,0.001098901149816811,-9.75781955236954e-19,-0.00019980019715148956,-0.0005494505749084055,1.8229087099425967e-19,-5.929230630780102e-20,1.7957098481791167e-19,-1.3166002781046395e-20,9.990009857574478e-05,3.8963515573697816e-19,0.001700680237263441,-9.215718466126788e-18,-1.7889335846010823e-18,-0.003401360474526882,1.0531331652804361e-18,6.776263578034403e-21,1.4501204056993622e-18,6.859337068459162e-20,3.8963515573697816e-19,0.0008503401186317205,7.0,12.0,6.0,0.06110093742609024,-0.013414660468697548,-0.008536106906831264,-0.015158948488533497,0.0008267195662483573,0.0006868132040835917,0.0012755101779475808,0.0003270538873039186,0.0007849293760955334,0.0010629252064973116,-0.013414660468697548,0.008770495653152466,0.0006868132040835917,0.0012755101779475808,-0.0009920635493472219,-0.00022893772984389216,-0.00042517005931586027,-1.5280474368467578e-18,-5.963111948670274e-19,-2.168404344971009e-19,-0.008536106906831264,0.0006868132040835917,0.003056467277929187,0.0007849293760955334,-1.4941661189565858e-18,-0.00012487512140069157,-3.4728350837426314e-19,-0.00019623234402388334,-0.00014271443069446832,-8.131516293641283e-20,-0.015158948488533497,0.0012755101779475808,0.0007849293760955334,0.011909667402505875,1.0842021724855044e-18,-6.505213034913027e-19,-0.0005102040595375001,1.3552527156068805e-19,-0.00031397174461744726,-0.0015943878097459674,0.0008267195662483573,-0.0009920635493472219,-1.4941661189565858e-18,1.0842021724855044e-18,0.0001653439103392884,-1.7923684262453146e-19,-5.11394539242347e-19,1.7406527066075872e-19,4.1643842483485316e-20,5.1430015977795584e-20,0.0006868132040835917,-0.00022893772984389216,-0.00012487512140069157,-6.505213034913027e-19,-1.7923684262453146e-19,4.162504046689719e-05,-7.284483346386983e-20,4.81316817528544e-20,6.606856988583543e-20,9.825582188149884e-20,0.0012755101779475808,-0.00042517005931586027,-3.4728350837426314e-19,-0.0005102040595375001,-5.11394539242347e-19,-7.284483346386983e-20,0.0001700680295471102,5.262638733101149e-20,-1.3552527156068805e-20,-2.778268066994105e-19,0.0003270538873039186,-1.5280474368467578e-18,-0.00019623234402388334,1.3552527156068805e-19,1.7406527066075872e-19,4.81316817528544e-20,5.262638733101149e-20,1.783930383680854e-05,-6.614307127287614e-22,-5.2387299822240985e-20,0.0007849293760955334,-5.963111948670274e-19,-0.00014271443069446832,-0.00031397174461744726,4.1643842483485316e-20,6.606856988583543e-20,-1.3552527156068805e-20,-6.614307127287614e-22,5.7085770095000044e-05,9.994988777600744e-20,0.0010629252064973116,-2.168404344971009e-19,-8.131516293641283e-20,-0.0015943878097459674,5.1430015977795584e-20,9.825582188149884e-20,-2.778268066994105e-19,-5.2387299822240985e-20,9.994988777600744e-20,0.0003188775444868952,7.0,12.0,7.0,0.05393313616514206,-0.011634942144155502,-0.007400762289762497,-0.011634942144155502,0.0007086168043315411,0.00058869703207165,0.0009566326625645161,0.00028033190756104887,0.00058869703207165,0.0007086168043315411,-0.011634942144155502,0.0075631216168403625,0.00058869703207165,0.0009566326625645161,-0.0008503401186317205,-0.00019623234402388334,-0.0003188775444868952,-9.317362419797304e-20,4.0657581468206416e-19,-1.2739375526704677e-18,-0.007400762289762497,0.00058869703207165,0.0026351199485361576,0.00058869703207165,7.623296525288703e-20,-0.00010703581938287243,2.0837010502455788e-19,-0.00016819914162624627,-0.00010703581938287243,2.0328790734103208e-19,-0.011634942144155502,0.0009566326625645161,0.00058869703207165,0.0075631216168403625,-9.486769009248164e-19,2.981555974335137e-19,-0.0003188775444868952,1.9651164376299768e-19,-0.00019623234402388334,-0.0008503401186317205,0.0007086168043315411,-0.0008503401186317205,7.623296525288703e-20,-9.486769009248164e-19,0.00014172335795592517,-5.0873953504529614e-20,-3.6634604714926105e-20,2.0328790734103208e-20,-1.5763380600618446e-20,1.8655428911832868e-19,0.00058869703207165,-0.00019623234402388334,-0.00010703581938287243,2.981555974335137e-19,-5.0873953504529614e-20,3.567860767361708e-05,-2.0328790734103208e-20,8.467461300509365e-23,-2.625802136488331e-20,-1.5246593050577406e-20,0.0009566326625645161,-0.0003188775444868952,2.0837010502455788e-19,-0.0003188775444868952,-3.6634604714926105e-20,-2.0328790734103208e-20,0.00010629251482896507,-3.558199799840677e-21,-3.3881317890172014e-20,6.268043809681823e-20,0.00028033190756104887,-9.317362419797304e-20,-0.00016819914162624627,1.9651164376299768e-19,2.0328790734103208e-20,8.467461300509365e-23,-3.558199799840677e-21,1.5290832379832864e-05,-1.001693911375409e-20,-1.9395042763024355e-20,0.00058869703207165,4.0657581468206416e-19,-0.00010703581938287243,-0.00019623234402388334,-1.5763380600618446e-20,-2.625802136488331e-20,-3.3881317890172014e-20,-1.001693911375409e-20,3.567860767361708e-05,3.3881317890172014e-20,0.0007086168043315411,-1.2739375526704677e-18,2.0328790734103208e-19,-0.0008503401186317205,1.8655428911832868e-19,-1.5246593050577406e-20,6.268043809681823e-20,-1.9395042763024355e-20,3.3881317890172014e-20,0.00014172335795592517,7.0,12.0,8.0,0.04828133061528206,-0.010273580439388752,-0.006532901432365179,-0.009214743971824646,0.0006200397037900984,0.000515109917614609,0.0007440476329065859,0.0002452904300298542,0.0004578754596877843,0.0004960317746736109,-0.010273580439388752,0.006648733280599117,0.000515109917614609,0.0007440476329065859,-0.0007440476329065859,-0.00017170330102089792,-0.00024801588733680546,1.0164395367051604e-19,6.776263578034403e-21,-2.209797136431433e-34,-0.006532901432365179,0.000515109917614609,0.002316136145964265,0.0004578754596877843,0.0,-9.365634468849748e-05,0.0,-0.0001471742580179125,-8.325008093379438e-05,3.390197414103111e-19,-0.009214743971824646,0.0007440476329065859,0.0004578754596877843,0.005112942773848772,0.0,1.5476462423058701e-21,-0.00021258502965793014,2.913793338554793e-19,-0.00013082155783195049,-0.0004960317746736109,0.0006200397037900984,-0.0007440476329065859,0.0,0.0,0.00012400794366840273,0.0,0.0,0.0,0.0,-0.0,0.000515109917614609,-0.00017170330102089792,-9.365634468849748e-05,1.5476462423058701e-21,0.0,3.121878035017289e-05,0.0,-2.0328790734103208e-20,-8.470329472543003e-22,4.017813001419508e-35,0.0007440476329065859,-0.00024801588733680546,0.0,-0.00021258502965793014,0.0,0.0,7.086167897796258e-05,0.0,0.0,-0.0,0.0002452904300298542,1.0164395367051604e-19,-0.0001471742580179125,2.913793338554793e-19,0.0,-2.0328790734103208e-20,0.0,1.3379477422859054e-05,-1.9481757786848908e-20,-2.6407474483878316e-20,0.0004578754596877843,6.776263578034403e-21,-8.325008093379438e-05,-0.00013082155783195049,0.0,-8.470329472543003e-22,0.0,-1.9481757786848908e-20,2.3785738449078053e-05,-1.3867863915210505e-20,0.0004960317746736109,-2.209797136431433e-34,3.390197414103111e-19,-0.0004960317746736109,-0.0,4.017813001419508e-35,-0.0,-2.6407474483878316e-20,-1.3867863915210505e-20,7.086167897796258e-05,7.0,12.0,9.0,0.043707769364118576,-0.009198209270834923,-0.005847723688930273,-0.007480020169168711,0.0005511463969014585,0.0004578754596877843,0.0005952381179668009,0.00021803592971991748,0.00036630037357099354,0.0003607503604143858,-0.009198209270834923,0.005932030733674765,0.0004578754596877843,0.0005952381179668009,-0.0006613756413571537,-0.00015262515807989985,-0.00019841270113829523,7.962109704190423e-20,-5.082197683525802e-21,-1.3101564122585963e-34,-0.005847723688930273,0.0004578754596877843,0.0020661877933889627,0.00036630037357099354,0.0,-8.325008093379438e-05,0.0,-0.00013082155783195049,-6.660006329184398e-05,2.404950082815501e-19,-0.007480020169168711,0.0005952381179668009,0.00036630037357099354,0.0036222210619598627,0.0,-5.773999768297513e-21,-0.00014880952949170023,2.0667603913004928e-19,-9.157509339274839e-05,-0.0003092146071139723,0.0005511463969014585,-0.0006613756413571537,0.0,0.0,0.00011022927355952561,0.0,0.0,0.0,0.0,-0.0,0.0004578754596877843,-0.00015262515807989985,-8.325008093379438e-05,-5.773999768297513e-21,0.0,2.775002758426126e-05,0.0,-1.5246593050577406e-20,8.470329472543003e-22,2.3821025677429024e-35,0.0005952381179668009,-0.00019841270113829523,0.0,-0.00014880952949170023,0.0,0.0,4.960317528457381e-05,0.0,0.0,-0.0,0.00021803592971991748,7.962109704190423e-20,-0.00013082155783195049,2.0667603913004928e-19,0.0,-1.5246593050577406e-20,0.0,1.1892869224539027e-05,-1.1011428314305904e-20,-1.8656709749312618e-20,0.00036630037357099354,-5.082197683525802e-21,-6.660006329184398e-05,-9.157509339274839e-05,0.0,8.470329472543003e-22,0.0,-1.1011428314305904e-20,1.6650015822960995e-05,-8.817800259777827e-21,0.0003607503604143858,-1.3101564122585963e-34,2.404950082815501e-19,-0.0003092146071139723,-0.0,2.3821025677429024e-35,-0.0,-1.8656709749312618e-20,-8.817800259777827e-21,3.865182588924654e-05,7.0,12.0,10.0,0.03992931544780731,-0.008327089250087738,-0.005292921327054501,-0.006193806417286396,0.0004960317746736109,0.00041208791662938893,0.0004870129923801869,0.00019623234402388334,0.00029970030300319195,0.00027056277031078935,-0.008327089250087738,0.005355061497539282,0.00041208791662938893,0.0004870129923801869,-0.0005952381179668009,-0.00013736264372710139,-0.00016233765927609056,-8.216219588366713e-20,-5.793705359219414e-19,-1.2061749168901237e-18,-0.005292921327054501,0.00041208791662938893,0.0018650180427357554,0.00029970030300319195,-3.2915475957560956e-19,-7.492507575079799e-05,-6.081696561285876e-19,-0.00011773940059356391,-5.4490963520947844e-05,-7.453889935837843e-19,-0.006193806417286396,0.0004870129923801869,0.00029970030300319195,0.0026615746319293976,-2.1359209623160515e-18,-4.1868149954920115e-19,-0.00010822511103469878,-7.2496254383861155e-19,-6.660006329184398e-05,-0.000202922077733092,0.0004960317746736109,-0.0005952381179668009,-3.2915475957560956e-19,-2.1359209623160515e-18,9.920635056914762e-05,2.4021998688374757e-20,9.110089699102268e-20,-2.904822233616293e-21,5.84805513212024e-20,1.551989223249522e-19,0.00041208791662938893,-0.00013736264372710139,-7.492507575079799e-05,-4.1868149954920115e-19,2.4021998688374757e-20,2.4975024643936194e-05,1.0777585001372017e-20,-1.5246593050577406e-20,1.0053070104416464e-20,2.920688147454364e-20,0.0004870129923801869,-0.00016233765927609056,-6.081696561285876e-19,-0.00010822511103469878,9.110089699102268e-20,1.0777585001372017e-20,3.607503458624706e-05,3.621065849512134e-20,3.218725199566341e-20,1.8634724839594607e-20,0.00019623234402388334,-8.216219588366713e-20,-0.00011773940059356391,-7.2496254383861155e-19,-2.904822233616293e-21,-1.5246593050577406e-20,3.621065849512134e-20,1.0703582120186184e-05,1.7787691892340307e-20,5.1457251545698746e-20,0.00029970030300319195,-5.793705359219414e-19,-5.4490963520947844e-05,-6.660006329184398e-05,5.84805513212024e-20,1.0053070104416464e-20,3.218725199566341e-20,1.7787691892340307e-20,1.2109103408874944e-05,1.6093625997831706e-20,0.00027056277031078935,-1.2061749168901237e-18,-7.453889935837843e-19,-0.000202922077733092,1.551989223249522e-19,2.920688147454364e-20,1.8634724839594607e-20,5.1457251545698746e-20,1.6093625997831706e-20,2.2546897525899112e-05,7.0,12.0,11.0,0.036754414439201355,-0.0076069761998951435,-0.004834451247006655,-0.005213536322116852,0.00045093795051798224,0.00037462537875398993,0.000405844155466184,0.0001783930347301066,0.00024975024280138314,0.00020812520233448595,-0.0076069761998951435,0.00488053634762764,0.00037462537875398993,0.000405844155466184,-0.0005411255406215787,-0.00012487512140069157,-0.00013528138515539467,-2.456395547037471e-20,-3.3881317890172014e-21,7.453889935837843e-20,-0.004834451247006655,0.00037462537875398993,0.0016995990881696343,0.00024975024280138314,0.0,-6.81137025821954e-05,-3.3881317890172014e-21,-0.00010703581938287243,-4.5409135054796934e-05,9.147955830346444e-20,-0.005213536322116852,0.000405844155466184,0.00024975024280138314,0.002013958292081952,-0.0,-1.6785054175156117e-22,-8.116882963804528e-05,1.6041835444197937e-19,-4.995004928787239e-05,-0.0001387501397402957,0.00045093795051798224,-0.0005411255406215787,0.0,-0.0,9.018759010359645e-05,0.0,0.0,0.0,0.0,0.0,0.00037462537875398993,-0.00012487512140069157,-6.81137025821954e-05,-1.6785054175156117e-22,0.0,2.2704567527398467e-05,5.970446429510915e-23,4.235164736271502e-21,4.1630173953689424e-24,-3.307446388811825e-23,0.000405844155466184,-0.00013528138515539467,-3.3881317890172014e-21,-8.116882963804528e-05,0.0,5.970446429510915e-23,2.7056277758674696e-05,1.0587911840678754e-22,4.235164736271502e-22,-1.4399560103323106e-20,0.0001783930347301066,-2.456395547037471e-20,-0.00010703581938287243,1.6041835444197937e-19,0.0,4.235164736271502e-21,1.0587911840678754e-22,9.730529200169258e-06,-1.0587911840678754e-20,-1.0164395367051604e-20,0.00024975024280138314,-3.3881317890172014e-21,-4.5409135054796934e-05,-4.995004928787239e-05,0.0,4.1630173953689424e-24,4.235164736271502e-22,-1.0587911840678754e-20,9.081827556656208e-06,4.658681209898652e-21,0.00020812520233448595,7.453889935837843e-20,9.147955830346444e-20,-0.0001387501397402957,0.0,-3.307446388811825e-23,-1.4399560103323106e-20,-1.0164395367051604e-20,4.658681209898652e-21,1.387501379213063e-05,7.0,12.0,12.0,0.03404868766665459,-0.007001678925007582,-0.00444919103756547,-0.00444919103756547,0.00041335978312417865,0.00034340660204179585,0.00034340660204179585,0.0001635269436519593,0.00021132713300175965,0.0001635269436519593,-0.007001678925007582,0.0044833640567958355,0.00034340660204179585,0.00034340660204179585,-0.0004960317746736109,-0.00011446886492194608,-0.00011446886492194608,8.470329472543003e-22,0.0,0.0,-0.00444919103756547,0.00034340660204179585,0.001561167766340077,0.00021132713300175965,0.0,-6.243756070034578e-05,1.6940658945086007e-21,-9.811617201194167e-05,-3.8423117075581104e-05,1.0672615135404184e-19,-0.00444919103756547,0.00034340660204179585,0.00021132713300175965,0.001561167766340077,-0.0,1.8064372498129358e-21,-6.243756070034578e-05,1.2838658655208179e-19,-3.8423117075581104e-05,-9.811617201194167e-05,0.00041335978312417865,-0.0004960317746736109,0.0,-0.0,8.26719551696442e-05,0.0,0.0,0.0,0.0,0.0,0.00034340660204179585,-0.00011446886492194608,-6.243756070034578e-05,1.8064372498129358e-21,0.0,2.0812520233448595e-05,-7.224690461512907e-23,-8.470329472543003e-22,-4.445963579384809e-23,-4.1527547094224696e-23,0.00034340660204179585,-0.00011446886492194608,1.6940658945086007e-21,-6.243756070034578e-05,0.0,-7.224690461512907e-23,2.0812520233448595e-05,1.0587911840678754e-22,-2.117582368135751e-22,8.470329472543003e-22,0.0001635269436519593,8.470329472543003e-22,-9.811617201194167e-05,1.2838658655208179e-19,0.0,-8.470329472543003e-22,1.0587911840678754e-22,8.91965191840427e-06,-7.199780051661553e-21,-7.835054762102278e-21,0.00021132713300175965,0.0,-3.8423117075581104e-05,-3.8423117075581104e-05,0.0,-4.445963579384809e-23,-2.117582368135751e-22,-7.199780051661553e-21,6.986021162447287e-06,-3.8116482626443515e-21,0.0001635269436519593,0.0,1.0672615135404184e-19,-9.811617201194167e-05,0.0,-4.1527547094224696e-23,8.470329472543003e-22,-7.835054762102278e-21,-3.8116482626443515e-21,8.91965191840427e-06,7.0,12.0,13.0,0.03171500191092491,-0.006485730409622192,-0.004120879340916872,-0.0038416252937167883,0.000381562887923792,0.0003169907140545547,0.000294348516035825,0.00015094794798642397,0.0001811375404940918,0.00013082155783195049,-0.006485730409622192,0.00414603715762496,0.0003169907140545547,0.000294348516035825,-0.0004578754596877843,-0.00010566356650087982,-9.811617201194167e-05,-1.8634724839594607e-20,-1.6940658945086007e-21,-6.776263578034403e-21,-0.004120879340916872,0.0003169907140545547,0.0014436113415285945,0.0001811375404940918,0.0,-5.763467197539285e-05,0.0,-9.05687702470459e-05,-3.2934098271653056e-05,6.437450399132683e-20,-0.0038416252937167883,0.000294348516035825,0.0001811375404940918,0.0012349144089967012,-0.0,1.888368520134033e-21,-4.9058086005970836e-05,1.0688270174731604e-19,-3.0189590688678436e-05,-7.135721534723416e-05,0.000381562887923792,-0.0004578754596877843,0.0,-0.0,7.631257903994992e-05,0.0,0.0,0.0,0.0,0.0,0.0003169907140545547,-0.00010566356650087982,-5.763467197539285e-05,1.888368520134033e-21,0.0,1.9211558537790552e-05,-1.279566971930566e-22,3.8116482626443515e-21,1.655938442045518e-22,-1.9284322032899879e-22,0.000294348516035825,-9.811617201194167e-05,0.0,-4.9058086005970836e-05,0.0,-1.279566971930566e-22,1.635269472899381e-05,0.0,0.0,4.235164736271502e-22,0.00015094794798642397,-1.8634724839594607e-20,-9.05687702470459e-05,1.0688270174731604e-19,0.0,3.8116482626443515e-21,0.0,8.233524567913264e-06,-5.505714157152952e-21,-6.3527471044072525e-21,0.0001811375404940918,-1.6940658945086007e-21,-3.2934098271653056e-05,-3.0189590688678436e-05,0.0,1.655938442045518e-22,0.0,-5.505714157152952e-21,5.489016530191293e-06,1.0587911840678754e-21,0.00013082155783195049,-6.776263578034403e-21,6.437450399132683e-20,-7.135721534723416e-05,0.0,-1.9284322032899879e-22,4.235164736271502e-22,-6.3527471044072525e-21,1.0587911840678754e-21,5.946434612269513e-06,7.0,12.0,14.0,0.029681386426091194,-0.006040685344487429,-0.0038377437740564346,-0.0033506671898066998,0.00035430840216577053,0.000294348516035825,0.00025510202976875007,0.00014016595378052443,0.00015698587230872363,0.00010629251482896507,-0.006040685344487429,0.0038559655658900738,0.000294348516035825,0.00025510202976875007,-0.00042517005931586027,-9.811617201194167e-05,-8.50340147735551e-05,-2.0328790734103208e-20,-9.317362419797304e-21,-1.6940658945086007e-20,-0.0038377437740564346,0.000294348516035825,0.0013425350189208984,0.00015698587230872363,0.0,-5.3517909691436216e-05,-1.1011428314305904e-20,-8.409957081312314e-05,-2.8542885047500022e-05,5.251604272976662e-20,-0.0033506671898066998,0.00025510202976875007,0.00015698587230872363,0.000993803609162569,-0.0,1.6462793766865023e-22,-3.924646807718091e-05,8.937932734114669e-20,-2.4151671823346987e-05,-5.3146257414482534e-05,0.00035430840216577053,-0.00042517005931586027,0.0,-0.0,7.086167897796258e-05,0.0,0.0,0.0,0.0,0.0,0.000294348516035825,-9.811617201194167e-05,-5.3517909691436216e-05,1.6462793766865023e-22,0.0,1.783930383680854e-05,-6.501350213155108e-24,3.8116482626443515e-21,-4.000830748699123e-24,-1.785846194205578e-23,0.00025510202976875007,-8.50340147735551e-05,-1.1011428314305904e-20,-3.924646807718091e-05,0.0,-6.501350213155108e-24,1.308215632889187e-05,-5.293955920339377e-23,1.6940658945086007e-21,2.541098841762901e-21,0.00014016595378052443,-2.0328790734103208e-20,-8.409957081312314e-05,8.937932734114669e-20,0.0,3.8116482626443515e-21,-5.293955920339377e-23,7.645416189916432e-06,-4.235164736271502e-21,-4.9763185651190145e-21,0.00015698587230872363,-9.317362419797304e-21,-2.8542885047500022e-05,-2.4151671823346987e-05,0.0,-4.000830748699123e-24,1.6940658945086007e-21,-4.235164736271502e-21,4.391213224153034e-06,4.235164736271502e-22,0.00010629251482896507,-1.6940658945086007e-20,5.251604272976662e-20,-5.3146257414482534e-05,0.0,-1.785846194205578e-23,2.541098841762901e-21,-4.9763185651190145e-21,4.235164736271502e-22,4.088173682248453e-06,7.0,12.0,15.0,0.027893342077732086,-0.005652854219079018,-0.0035910517908632755,-0.0029482466634362936,0.0003306878206785768,0.00027472528745420277,0.00022321428696159273,0.00013082155783195049,0.00013736264372710139,8.753501606406644e-05,-0.005652854219079018,0.0036038614343851805,0.00027472528745420277,0.00022321428696159273,-0.00039682540227659047,-9.157509339274839e-05,-7.440476474585012e-05,3.049318610115481e-20,-1.0164395367051604e-20,-1.1858461261560205e-20,-0.0035910517908632755,0.00027472528745420277,0.001254697679542005,0.00013736264372710139,0.0,-4.995004928787239e-05,-7.623296525288703e-21,-7.849293615436181e-05,-2.4975024643936194e-05,2.795208725939191e-20,-0.0029482466634362936,0.00022321428696159273,0.00013736264372710139,0.0008117189281620085,-0.0,-9.728351832736642e-22,-3.188775372109376e-05,5.85521864547192e-20,-1.9623234038590454e-05,-4.0400776924798265e-05,0.0003306878206785768,-0.00039682540227659047,0.0,-0.0,6.613756704609841e-05,0.0,0.0,0.0,0.0,0.0,0.00027472528745420277,-9.157509339274839e-05,-4.995004928787239e-05,-9.728351832736642e-22,0.0,1.6650015822960995e-05,-1.4722476364259914e-23,-5.929230630780102e-21,2.35276439695846e-22,-7.641455775160754e-23,0.00022321428696159273,-7.440476474585012e-05,-7.623296525288703e-21,-3.188775372109376e-05,0.0,-1.4722476364259914e-23,1.0629251846694387e-05,-5.293955920339377e-23,1.2705494208814505e-21,2.117582368135751e-21,0.00013082155783195049,3.049318610115481e-20,-7.849293615436181e-05,5.85521864547192e-20,0.0,-5.929230630780102e-21,-5.293955920339377e-23,7.1357212618750054e-06,2.117582368135751e-22,-4.2881042954748955e-21,0.00013736264372710139,-1.0164395367051604e-20,-2.4975024643936194e-05,-1.9623234038590454e-05,0.0,2.35276439695846e-22,1.2705494208814505e-21,2.117582368135751e-22,3.5678606309375027e-06,2.964615315390051e-21,8.753501606406644e-05,-1.1858461261560205e-20,2.795208725939191e-20,-4.0400776924798265e-05,0.0,-7.641455775160754e-23,2.117582368135751e-21,-4.2881042954748955e-21,2.964615315390051e-21,2.885769617932965e-06,7.0,12.0,16.0,0.02630884014070034,-0.005311860237270594,-0.003374186111614108,-0.002614266937598586,0.0003100198518950492,0.0002575549588073045,0.00019695378432516009,0.0001226452150149271,0.00012120232713641599,7.294584793271497e-05,-0.005311860237270594,0.0033827233128249645,0.0002575549588073045,0.00019695378432516009,-0.00037202381645329297,-8.585165051044896e-05,-6.565126386703923e-05,3.009265538105056e-36,-3.3881317890172014e-21,0.0,-0.003374186111614108,0.0002575549588073045,0.0011776563478633761,0.00012120232713641599,0.0,-4.682817234424874e-05,-3.3881317890172014e-21,-7.358712900895625e-05,-2.2036787413526326e-05,3.3881317890172014e-20,-0.002614266937598586,0.00019695378432516009,0.00012120232713641599,0.000671614776365459,-0.0,-0.0,-2.626050445542205e-05,7.67653464499444e-20,-1.6160311133717187e-05,-3.126250521745533e-05,0.0003100198518950492,-0.00037202381645329297,0.0,-0.0,6.200397183420137e-05,0.0,0.0,0.0,0.0,0.0,0.0002575549588073045,-8.585165051044896e-05,-4.682817234424874e-05,-0.0,0.0,1.5609390175086446e-05,0.0,0.0,0.0,0.0,0.00019695378432516009,-6.565126386703923e-05,-3.3881317890172014e-21,-2.626050445542205e-05,0.0,0.0,8.753501788305584e-06,-1.128474576789396e-36,4.235164736271502e-22,-2.117582368135751e-22,0.0001226452150149271,3.009265538105056e-36,-7.358712900895625e-05,7.67653464499444e-20,0.0,0.0,-1.128474576789396e-36,6.689738711429527e-06,-4.576529815830562e-21,-3.4396290328068125e-21,0.00012120232713641599,-3.3881317890172014e-21,-2.2036787413526326e-05,-1.6160311133717187e-05,0.0,0.0,4.235164736271502e-22,-4.576529815830562e-21,2.93823813990457e-06,5.293955920339377e-22,7.294584793271497e-05,0.0,3.3881317890172014e-20,-3.126250521745533e-05,0.0,0.0,-2.117582368135751e-22,-3.4396290328068125e-21,5.293955920339377e-22,2.0841669083893066e-06,7.0,13.0,3.0,0.09547793120145798,-0.023090004920959473,-0.01373626384884119,-0.04297488182783127,0.001526251551695168,0.0011773940641433,0.004120879340916872,0.0005232862313278019,0.0023547881282866,0.005494505632668734,-0.023090004920959473,0.015633177012205124,0.0011773940641433,0.004120879340916872,-0.0018315018387511373,-0.0003924646880477667,-0.0013736264081671834,-1.7953041160886595e-18,-1.81603863891322e-18,-4.119968255444917e-18,-0.01373626384884119,0.0011773940641433,0.004667951259762049,0.0023547881282866,-3.732704212933822e-18,-0.00019623234402388334,-1.9786689647860456e-18,-0.00028542886138893664,-0.0003924646880477667,1.0842021724855044e-18,-0.04297488182783127,0.004120879340916872,0.0023547881282866,0.09791993349790573,-1.8064654708889906e-18,-2.2660437105010026e-18,-0.004120879340916872,2.3259308113680175e-19,-0.0023547881282866,-0.032967034727334976,0.001526251551695168,-0.0018315018387511373,-3.732704212933822e-18,-1.8064654708889906e-18,0.0003052503161597997,3.7608262858090935e-19,1.0714109229116229e-19,1.9481757786848908e-19,1.7161994382429297e-19,1.8845443930763663e-19,0.0011773940641433,-0.0003924646880477667,-0.00019623234402388334,-2.2660437105010026e-18,3.7608262858090935e-19,6.541077891597524e-05,2.225993951686658e-19,6.606856988583543e-20,1.0842608506102074e-19,4.349058200838162e-19,0.004120879340916872,-0.0013736264081671834,-1.9786689647860456e-18,-0.004120879340916872,1.0714109229116229e-19,2.225993951686658e-19,0.0013736264081671834,9.162797906228088e-20,9.486769009248164e-20,8.673617379884035e-19,0.0005232862313278019,-1.7953041160886595e-18,-0.00028542886138893664,2.3259308113680175e-19,1.9481757786848908e-19,6.606856988583543e-20,9.162797906228088e-20,2.3785738449078053e-05,4.216858518457364e-21,-2.6228116200800104e-19,0.0023547881282866,-1.81603863891322e-18,-0.0003924646880477667,-0.0023547881282866,1.7161994382429297e-19,1.0842608506102074e-19,9.486769009248164e-20,4.216858518457364e-21,0.0003924646880477667,8.673617379884035e-19,0.005494505632668734,-4.119968255444917e-18,1.0842021724855044e-18,-0.032967034727334976,1.8845443930763663e-19,4.349058200838162e-19,8.673617379884035e-19,-2.6228116200800104e-19,8.673617379884035e-19,0.016483517363667488,7.0,13.0,4.0,0.07777995616197586,-0.017935635522007942,-0.010655416175723076,-0.027433281764388084,0.0011446886928752065,0.000883045548107475,0.0024725275579839945,0.0003924646880477667,0.001412872807122767,0.002747252816334367,-0.017935635522007942,0.011930925771594048,0.000883045548107475,0.0024725275579839945,-0.0013736264081671834,-0.000294348516035825,-0.0008241758332587779,-1.1226975038324972e-18,7.318364664277155e-19,1.0842021724855044e-17,-0.010655416175723076,0.000883045548107475,0.00355983292683959,0.001412872807122767,-2.3041440631055013e-18,-0.0001471742580179125,4.0657581468206416e-20,-0.00021407163876574486,-0.00023547880118712783,3.0357660829594124e-18,-0.027433281764388084,0.0024725275579839945,0.001412872807122767,0.03751962259411812,3.909713832984963e-18,2.3180243605792942e-18,-0.0016483516665175557,4.431072124597029e-19,-0.0009419152047485113,-0.008241758681833744,0.0011446886928752065,-0.0013736264081671834,-2.3041440631055013e-18,3.909713832984963e-18,0.00022893772984389216,2.1006417091906648e-19,-1.8453378414989427e-19,1.3721933745519665e-19,-2.3782479817839505e-20,-9.841808369840877e-19,0.000883045548107475,-0.000294348516035825,-0.0001471742580179125,2.3180243605792942e-18,2.1006417091906648e-19,4.9058086005970836e-05,-1.3894603820980989e-19,2.456395547037471e-20,-5.056728921712265e-20,-4.718066574025365e-19,0.0024725275579839945,-0.0008241758332587779,4.0657581468206416e-20,-0.0016483516665175557,-1.8453378414989427e-19,-1.3894603820980989e-19,0.0005494505749084055,4.773310348222602e-20,-9.486769009248164e-20,-9.215718466126788e-19,0.0003924646880477667,-1.1226975038324972e-18,-0.00021407163876574486,4.431072124597029e-19,1.3721933745519665e-19,2.456395547037471e-20,4.773310348222602e-20,1.783930383680854e-05,-2.2792204068532882e-20,-1.3469598422251243e-19,0.001412872807122767,7.318364664277155e-19,-0.00023547880118712783,-0.0009419152047485113,-2.3782479817839505e-20,-5.056728921712265e-20,-9.486769009248164e-20,-2.2792204068532882e-20,0.00015698587230872363,1.6263032587282567e-19,0.002747252816334367,1.0842021724855044e-17,3.0357660829594124e-18,-0.008241758681833744,-9.841808369840877e-19,-4.718066574025365e-19,-9.215718466126788e-19,-1.3469598422251243e-19,1.6263032587282567e-19,0.002747252816334367,7.0,13.0,5.0,0.06572475284337997,-0.014678179286420345,-0.008712715469300747,-0.019073782488703728,0.0009157509193755686,0.0007064364035613835,0.0016483516665175557,0.00031397174461744726,0.0009419152047485113,0.0015698587521910667,-0.014678179286420345,0.009654630906879902,0.0007064364035613835,0.0016483516665175557,-0.001098901149816811,-0.00023547880118712783,-0.0005494505749084055,8.571973426213519e-19,1.6534083130403943e-18,9.75781955236954e-18,-0.008712715469300747,0.0007064364035613835,0.002879263600334525,0.0009419152047485113,1.0952136007998103e-18,-0.00011773940059356391,1.3908280993915612e-18,-0.00017125731392297894,-0.00015698587230872363,1.6534083130403943e-18,-0.019073782488703728,0.0016483516665175557,0.0009419152047485113,0.01895604468882084,4.0115480381963664e-18,2.1412992906588713e-18,-0.0008241758332587779,2.710505431213761e-20,-0.00047095760237425566,-0.0031397175043821335,0.0009157509193755686,-0.001098901149816811,1.0952136007998103e-18,4.0115480381963664e-18,0.00018315018678549677,1.07974302274899e-19,-5.693430518709644e-20,-9.190307477709159e-20,-1.4720468699372174e-19,-6.869214380454869e-19,0.0007064364035613835,-0.00023547880118712783,-0.00011773940059356391,2.1412992906588713e-18,1.07974302274899e-19,3.924646807718091e-05,-1.0503208545953324e-19,-2.5820681927738575e-20,-6.268043809681823e-20,-3.4897757426877174e-19,0.0016483516665175557,-0.0005494505749084055,1.3908280993915612e-18,-0.0008241758332587779,-5.693430518709644e-20,-1.0503208545953324e-19,0.00027472528745420277,-4.7289140137832324e-20,-2.303929616531697e-19,-1.5246593050577406e-18,0.00031397174461744726,8.571973426213519e-19,-0.00017125731392297894,2.710505431213761e-20,-9.190307477709159e-20,-2.5820681927738575e-20,-4.7289140137832324e-20,1.4271442523750011e-05,7.035728487324693e-21,1.8157725969487076e-20,0.0009419152047485113,1.6534083130403943e-18,-0.00015698587230872363,-0.00047095760237425566,-1.4720468699372174e-19,-6.268043809681823e-20,-2.303929616531697e-19,7.035728487324693e-21,7.849293615436181e-05,-3.4558944247975454e-19,0.0015698587521910667,9.75781955236954e-18,1.6534083130403943e-18,-0.0031397175043821335,-6.869214380454869e-19,-3.4897757426877174e-19,-1.5246593050577406e-18,1.8157725969487076e-20,-3.4558944247975454e-19,0.0007849293760955334,7.0,13.0,6.0,0.056947872042655945,-0.012428048066794872,-0.007372729480266571,-0.014044628478586674,0.000763125775847584,0.00058869703207165,0.0011773940641433,0.00026164311566390097,0.0006727965665049851,0.0009811617201194167,-0.012428048066794872,0.008110936731100082,0.00058869703207165,0.0011773940641433,-0.0009157509193755686,-0.00019623234402388334,-0.0003924646880477667,-8.80067232197218e-19,-1.6805133673525319e-18,-3.984442983884229e-18,-0.007372729480266571,0.00058869703207165,0.0024180752225220203,0.0006727965665049851,-2.2268496183315556e-18,-9.811617201194167e-05,-1.3383120566617945e-18,-0.00014271443069446832,-0.00011213276593480259,-5.963111948670274e-19,-0.014044628478586674,0.0011773940641433,0.0006727965665049851,0.0110142407938838,-5.44811591673966e-18,-1.7889335846010823e-18,-0.00047095760237425566,-2.0328790734103208e-19,-0.0002691186382435262,-0.0014717425219714642,0.000763125775847584,-0.0009157509193755686,-2.2268496183315556e-18,-5.44811591673966e-18,0.00015262515807989985,1.8655669311198392e-19,5.268369156041581e-19,8.893845946170154e-20,1.6657281084392118e-19,5.037906814614533e-19,0.00058869703207165,-0.00019623234402388334,-9.811617201194167e-05,-1.7889335846010823e-18,1.8655669311198392e-19,3.270538945798762e-05,1.5924219408380846e-19,2.953998969215816e-20,6.522153693858113e-20,1.5754812818929986e-19,0.0011773940641433,-0.0003924646880477667,-1.3383120566617945e-18,-0.00047095760237425566,5.268369156041581e-19,1.5924219408380846e-19,0.00015698587230872363,4.7701101932277874e-20,7.962109704190423e-20,-5.082197683525802e-20,0.00026164311566390097,-8.80067232197218e-19,-0.00014271443069446832,-2.0328790734103208e-19,8.893845946170154e-20,2.953998969215816e-20,4.7701101932277874e-20,1.1892869224539027e-05,1.0476046971940894e-20,-6.81668718371153e-21,0.0006727965665049851,-1.6805133673525319e-18,-0.00011213276593480259,-0.0002691186382435262,1.6657281084392118e-19,6.522153693858113e-20,7.962109704190423e-20,1.0476046971940894e-20,4.485310637392104e-05,7.962109704190423e-20,0.0009811617201194167,-3.984442983884229e-18,-5.963111948670274e-19,-0.0014717425219714642,5.037906814614533e-19,1.5754812818929986e-19,-5.082197683525802e-20,-6.81668718371153e-21,7.962109704190423e-20,0.000294348516035825,7.0,13.0,7.0,0.05025884136557579,-0.010778762400150299,-0.0063915676437318325,-0.010778762400150299,0.0006541077746078372,0.000504597439430654,0.000883045548107475,0.00022426553186960518,0.000504597439430654,0.0006541077746078372,-0.010778762400150299,0.006994281429797411,0.000504597439430654,0.000883045548107475,-0.0007849293760955334,-0.00016819914162624627,-0.000294348516035825,-4.281751548370488e-19,-2.981555974335137e-19,-8.131516293641283e-20,-0.0063915676437318325,0.000504597439430654,0.0020846500992774963,0.000504597439430654,-1.0850492054327587e-18,-8.409957081312314e-05,-3.9979955110402976e-19,-0.0001223266590386629,-8.409957081312314e-05,3.1170812458958252e-19,-0.010778762400150299,0.000883045548107475,0.000504597439430654,0.006994281429797411,-1.5178830414797062e-18,1.8973538018496328e-19,-0.000294348516035825,9.486769009248164e-20,-0.00016819914162624627,-0.0007849293760955334,0.0006541077746078372,-0.0007849293760955334,-1.0850492054327587e-18,-1.5178830414797062e-18,0.00013082155783195049,1.2826585695674026e-19,1.7682373705786407e-19,4.616329562535937e-20,3.191197856626798e-20,1.2216012666275665e-19,0.000504597439430654,-0.00016819914162624627,-8.409957081312314e-05,1.8973538018496328e-19,1.2826585695674026e-19,2.8033191483700648e-05,4.404571325722362e-20,1.3733048015648566e-20,1.6940658945086007e-21,-4.997494388800372e-20,0.000883045548107475,-0.000294348516035825,-3.9979955110402976e-19,-0.000294348516035825,1.7682373705786407e-19,4.404571325722362e-20,9.811617201194167e-05,1.4617048827700598e-20,2.710505431213761e-20,-1.0842021724855044e-19,0.00022426553186960518,-4.281751548370488e-19,-0.0001223266590386629,9.486769009248164e-20,4.616329562535937e-20,1.3733048015648566e-20,1.4617048827700598e-20,1.0193887646892108e-05,-2.724921759495947e-21,-2.0259037759597394e-20,0.000504597439430654,-2.981555974335137e-19,-8.409957081312314e-05,-0.00016819914162624627,3.191197856626798e-20,1.6940658945086007e-21,2.710505431213761e-20,-2.724921759495947e-21,2.8033191483700648e-05,4.404571325722362e-20,0.0006541077746078372,-8.131516293641283e-20,3.1170812458958252e-19,-0.0007849293760955334,1.2216012666275665e-19,-4.997494388800372e-20,-1.0842021724855044e-19,-2.0259037759597394e-20,4.404571325722362e-20,0.00013082155783195049,7.0,13.0,8.0,0.044986262917518616,-0.009517268277704716,-0.005641679745167494,-0.008536106906831264,0.0005723443464376032,0.0004415227740537375,0.0006868132040835917,0.00019623234402388334,0.0003924646880477667,0.0004578754596877843,-0.009517268277704716,0.006148613523691893,0.0004415227740537375,0.0006868132040835917,-0.0006868132040835917,-0.0001471742580179125,-0.00022893772984389216,6.268043809681823e-20,-1.6940658945086007e-19,-3.6177270771412314e-20,-0.005641679745167494,0.0004415227740537375,0.0018322451505810022,0.0003924646880477667,-1.7390179909220293e-19,-7.358712900895625e-05,2.0021741290723524e-19,-0.00010703581938287243,-6.541077891597524e-05,-1.741641381310044e-20,-0.008536106906831264,0.0006868132040835917,0.0003924646880477667,0.004728265106678009,-6.142953938536374e-19,1.4327915922518357e-19,-0.00019623234402388334,-1.7279472123987727e-19,-0.00011213276593480259,-0.0004578754596877843,0.0005723443464376032,-0.0006868132040835917,-1.7390179909220293e-19,-6.142953938536374e-19,0.00011446886492194608,-1.3626328791932155e-20,3.6177273194793015e-21,6.601868620969579e-21,2.835659796597595e-20,5.0834387775620584e-20,0.0004415227740537375,-0.0001471742580179125,-7.358712900895625e-05,1.4327915922518357e-19,-1.3626328791932155e-20,2.4529043002985418e-05,-1.2198429262145231e-20,-1.2705494208814505e-20,1.5996355853772307e-35,-2.1786166651148003e-20,0.0006868132040835917,-0.00022893772984389216,2.0021741290723524e-19,-0.00019623234402388334,3.6177273194793015e-21,-1.2198429262145231e-20,6.541077891597524e-05,-1.3769611983662825e-20,-1.198831811641466e-20,-5.3984698676180254e-20,0.00019623234402388334,6.268043809681823e-20,-0.00010703581938287243,-1.7279472123987727e-19,6.601868620969579e-21,-1.2705494208814505e-20,-1.3769611983662825e-20,8.91965191840427e-06,1.0164395367051604e-20,1.8485231330921254e-20,0.0003924646880477667,-1.6940658945086007e-19,-6.541077891597524e-05,-0.00011213276593480259,2.835659796597595e-20,1.5996355853772307e-35,-1.198831811641466e-20,1.0164395367051604e-20,1.8688793716137297e-05,-4.8027453764498453e-20,0.0004578754596877843,-3.6177270771412314e-20,-1.741641381310044e-20,-0.0004578754596877843,5.0834387775620584e-20,-2.1786166651148003e-20,-5.3984698676180254e-20,1.8485231330921254e-20,-4.8027453764498453e-20,6.541077891597524e-05,7.0,13.0,9.0,0.040720656514167786,-0.008520844392478466,-0.005049712024629116,-0.00692878570407629,0.000508750497829169,0.0003924646880477667,0.0005494505749084055,0.00017442874377593398,0.00031397174461744726,0.0003330003237351775,-0.008520844392478466,0.005485784262418747,0.0003924646880477667,0.0005494505749084055,-0.0006105006323195994,-0.00013082155783195049,-0.00018315018678549677,1.6940658945086007e-21,-1.6940658945086007e-21,-0.0,-0.005049712024629116,0.0003924646880477667,0.0016344765899702907,0.00031397174461744726,0.0,-6.541077891597524e-05,0.0,-9.514295379631221e-05,-5.232862531556748e-05,-0.0,-0.00692878570407629,0.0005494505749084055,0.00031397174461744726,0.0033496266696602106,0.0,-1.1449637745122241e-21,-0.00013736264372710139,3.3881317890172014e-21,-7.849293615436181e-05,-0.00028542886138893664,0.000508750497829169,-0.0006105006323195994,0.0,0.0,0.0001017501053865999,0.0,0.0,0.0,0.0,-0.0,0.0003924646880477667,-0.00013082155783195049,-6.541077891597524e-05,-1.1449637745122241e-21,0.0,2.1803592971991748e-05,0.0,-4.235164736271502e-22,0.0,-0.0,0.0005494505749084055,-0.00018315018678549677,0.0,-0.00013736264372710139,0.0,0.0,4.578754669637419e-05,0.0,0.0,-0.0,0.00017442874377593398,1.6940658945086007e-21,-9.514295379631221e-05,3.3881317890172014e-21,0.0,-4.235164736271502e-22,0.0,7.928579179861117e-06,-8.470329472543003e-22,-0.0,0.00031397174461744726,-1.6940658945086007e-21,-5.232862531556748e-05,-7.849293615436181e-05,0.0,0.0,0.0,-8.470329472543003e-22,1.308215632889187e-05,-0.0,0.0003330003237351775,-0.0,-0.0,-0.00028542886138893664,-0.0,-0.0,-0.0,-0.0,-0.0,3.567860767361708e-05,7.0,13.0,10.0,0.03719732537865639,-0.0077137150801718235,-0.004570429679006338,-0.005737119819968939,0.0004578754596877843,0.00035321820178069174,0.0004495504545047879,0.00015698587230872363,0.000256885978160426,0.00024975024280138314,-0.0077137150801718235,0.0049521904438734055,0.00035321820178069174,0.0004495504545047879,-0.0005494505749084055,-0.00011773940059356391,-0.00014985015150159597,-5.929230630780102e-21,-3.3881317890172014e-21,-0.0,-0.004570429679006338,0.00035321820178069174,0.001475310418754816,0.000256885978160426,0.0,-5.886970029678196e-05,0.0,-8.562865696148947e-05,-4.2814328480744734e-05,-0.0,-0.005737119819968939,0.0004495504545047879,0.000256885978160426,0.002461229218170047,0.0,-3.2124514304389744e-21,-9.990009857574478e-05,-5.082197683525802e-21,-5.7085770095000044e-05,-0.00018731268937699497,0.0004578754596877843,-0.0005494505749084055,0.0,0.0,9.157509339274839e-05,0.0,0.0,0.0,0.0,-0.0,0.00035321820178069174,-0.00011773940059356391,-5.886970029678196e-05,-3.2124514304389744e-21,0.0,1.9623234038590454e-05,0.0,8.470329472543003e-22,4.235164736271502e-22,-0.0,0.0004495504545047879,-0.00014985015150159597,0.0,-9.990009857574478e-05,0.0,0.0,3.330003164592199e-05,0.0,0.0,-0.0,0.00015698587230872363,-5.929230630780102e-21,-8.562865696148947e-05,-5.082197683525802e-21,0.0,8.470329472543003e-22,0.0,7.1357212618750054e-06,8.470329472543003e-22,-0.0,0.000256885978160426,-3.3881317890172014e-21,-4.2814328480744734e-05,-5.7085770095000044e-05,0.0,4.235164736271502e-22,0.0,8.470329472543003e-22,9.51429501583334e-06,-0.0,0.00024975024280138314,-0.0,-0.0,-0.00018731268937699497,-0.0,-0.0,-0.0,-0.0,-0.0,2.0812520233448595e-05,7.0,13.0,11.0,0.03423728421330452,-0.007046524900943041,-0.004174396861344576,-0.004828962031751871,0.0004162504046689719,0.0003211074508726597,0.00037462537875398993,0.00014271443069446832,0.00021407163876574486,0.0001921155781019479,-0.007046524900943041,0.004513343796133995,0.0003211074508726597,0.00037462537875398993,-0.0004995004856027663,-0.00010703581938287243,-0.00012487512140069157,-1.6940658945086007e-21,-3.3881317890172014e-21,-6.776263578034403e-21,-0.004174396861344576,0.0003211074508726597,0.0013444348005577922,0.00021407163876574486,0.0,-5.3517909691436216e-05,-1.6940658945086007e-21,-7.784423360135406e-05,-3.567860767361708e-05,-1.6940658945086007e-21,-0.004828962031751871,0.00037462537875398993,0.00021407163876574486,0.001862331759184599,-0.0,-3.2306306227147095e-21,-7.492507575079799e-05,-5.565885892161216e-21,-4.2814328480744734e-05,-0.00012807705206796527,0.0004162504046689719,-0.0004995004856027663,0.0,-0.0,8.325008093379438e-05,0.0,0.0,0.0,0.0,0.0,0.0003211074508726597,-0.00010703581938287243,-5.3517909691436216e-05,-3.2306306227147095e-21,0.0,1.783930383680854e-05,2.409516785974051e-23,0.0,4.977874880399932e-22,1.197796379954088e-23,0.00037462537875398993,-0.00012487512140069157,-1.6940658945086007e-21,-7.492507575079799e-05,0.0,2.409516785974051e-23,2.4975024643936194e-05,0.0,4.235164736271502e-22,8.470329472543003e-22,0.00014271443069446832,-1.6940658945086007e-21,-7.784423360135406e-05,-5.565885892161216e-21,0.0,0.0,0.0,6.4870196183619555e-06,8.470329472543003e-22,0.0,0.00021407163876574486,-3.3881317890172014e-21,-3.567860767361708e-05,-4.2814328480744734e-05,0.0,4.977874880399932e-22,4.235164736271502e-22,8.470329472543003e-22,7.1357212618750054e-06,0.0,0.0001921155781019479,-6.776263578034403e-21,-1.6940658945086007e-21,-0.00012807705206796527,0.0,1.197796379954088e-23,8.470329472543003e-22,0.0,0.0,1.2807705388695467e-05,7.0,13.0,12.0,0.03171500191092491,-0.006485730409622192,-0.0038416252937167883,-0.004120879340916872,0.000381562887923792,0.000294348516035825,0.0003169907140545547,0.00013082155783195049,0.0001811375404940918,0.00015094794798642397,-0.006485730409622192,0.00414603715762496,0.000294348516035825,0.0003169907140545547,-0.0004578754596877843,-9.811617201194167e-05,-0.00010566356650087982,0.0,-5.929230630780102e-21,-2.0328790734103208e-20,-0.0038416252937167883,0.000294348516035825,0.0012349144089967012,0.0001811375404940918,0.0,-4.9058086005970836e-05,-4.235164736271502e-21,-7.135721534723416e-05,-3.0189590688678436e-05,-8.470329472543003e-21,-0.004120879340916872,0.0003169907140545547,0.0001811375404940918,0.0014436113415285945,-0.0,-0.0,-5.763467197539285e-05,7.663614310008561e-22,-3.2934098271653056e-05,-9.05687702470459e-05,0.000381562887923792,-0.0004578754596877843,0.0,-0.0,7.631257903994992e-05,0.0,0.0,0.0,0.0,0.0,0.000294348516035825,-9.811617201194167e-05,-4.9058086005970836e-05,-0.0,0.0,1.635269472899381e-05,5.293955920339377e-23,0.0,-2.117582368135751e-22,-8.40561649880621e-23,0.0003169907140545547,-0.00010566356650087982,-4.235164736271502e-21,-5.763467197539285e-05,0.0,5.293955920339377e-23,1.9211558537790552e-05,-1.5881867761018131e-22,8.470329472543003e-22,4.658681209898652e-21,0.00013082155783195049,0.0,-7.135721534723416e-05,7.663614310008561e-22,0.0,0.0,-1.5881867761018131e-22,5.946434612269513e-06,2.117582368135751e-22,-2.117582368135751e-22,0.0001811375404940918,-5.929230630780102e-21,-3.0189590688678436e-05,-3.2934098271653056e-05,0.0,-2.117582368135751e-22,8.470329472543003e-22,2.117582368135751e-22,5.489016530191293e-06,2.117582368135751e-21,0.00015094794798642397,-2.0328790734103208e-20,-8.470329472543003e-21,-9.05687702470459e-05,0.0,-8.40561649880621e-23,4.658681209898652e-21,-2.117582368135751e-22,2.117582368135751e-21,8.233524567913264e-06,7.0,13.0,13.0,0.029539795592427254,-0.006007728632539511,-0.0035580589901655912,-0.0035580589901655912,0.00035221187863498926,0.00027170631801709533,0.00027170631801709533,0.00012075836275471374,0.00015526075731031597,0.00012075836275471374,-0.006007728632539511,0.003834078088402748,0.00027170631801709533,0.00027170631801709533,-0.0004226542660035193,-9.05687702470459e-05,-9.05687702470459e-05,1.5246593050577406e-20,6.776263578034403e-21,1.6940658945086007e-20,-0.0035580589901655912,0.00027170631801709533,0.0011419114889577031,0.00015526075731031597,0.0,-4.528438512352295e-05,6.776263578034403e-21,-6.586819654330611e-05,-2.587679227872286e-05,1.0164395367051604e-20,-0.0035580589901655912,0.00027170631801709533,0.00015526075731031597,0.0011419114889577031,-0.0,-0.0,-4.528438512352295e-05,-3.916714589261497e-23,-2.587679227872286e-05,-6.586819654330611e-05,0.00035221187863498926,-0.0004226542660035193,0.0,-0.0,7.044238009257242e-05,0.0,0.0,0.0,0.0,0.0,0.00027170631801709533,-9.05687702470459e-05,-4.528438512352295e-05,-0.0,0.0,1.5094795344339218e-05,0.0,-2.541098841762901e-21,2.117582368135751e-22,-7.434196771810227e-23,0.00027170631801709533,-9.05687702470459e-05,6.776263578034403e-21,-4.528438512352295e-05,0.0,0.0,1.5094795344339218e-05,0.0,-1.164670302474663e-21,-2.541098841762901e-21,0.00012075836275471374,1.5246593050577406e-20,-6.586819654330611e-05,-3.916714589261497e-23,0.0,-2.541098841762901e-21,0.0,5.489016530191293e-06,0.0,1.0587911840678754e-22,0.00015526075731031597,6.776263578034403e-21,-2.587679227872286e-05,-2.587679227872286e-05,0.0,2.117582368135751e-22,-1.164670302474663e-21,0.0,4.312798864702927e-06,-1.2705494208814505e-21,0.00012075836275471374,1.6940658945086007e-20,1.0164395367051604e-20,-6.586819654330611e-05,0.0,-7.434196771810227e-23,-2.541098841762901e-21,1.0587911840678754e-22,-1.2705494208814505e-21,5.489016530191293e-06,7.0,13.0,14.0,0.027644464746117592,-0.005595425143837929,-0.0033135232515633106,-0.0031032743863761425,0.0003270538873039186,0.000252298719715327,0.00023547880118712783,0.00011213276593480259,0.0001345593191217631,9.811617201194167e-05,-0.005595425143837929,0.0035658220294862986,0.000252298719715327,0.00023547880118712783,-0.0003924646880477667,-8.409957081312314e-05,-7.849293615436181e-05,-2.964615315390051e-20,-8.470329472543003e-21,-2.0328790734103208e-20,-0.0033135232515633106,0.000252298719715327,0.00106194824911654,0.0001345593191217631,0.0,-4.204978540656157e-05,-7.623296525288703e-21,-6.116332951933146e-05,-2.242655318696052e-05,-1.1011428314305904e-20,-0.0031032743863761425,0.00023547880118712783,0.0001345593191217631,0.0009189495467580855,-0.0,-7.970616759997487e-22,-3.6227509554009885e-05,-3.302974595086504e-21,-2.0701432731584646e-05,-4.9058086005970836e-05,0.0003270538873039186,-0.0003924646880477667,0.0,-0.0,6.541077891597524e-05,0.0,0.0,0.0,0.0,0.0,0.000252298719715327,-8.409957081312314e-05,-4.204978540656157e-05,-7.970616759997487e-22,0.0,1.4016595741850324e-05,5.789213525145439e-23,5.082197683525802e-21,-8.792348931159207e-23,1.7803341075164366e-23,0.00023547880118712783,-7.849293615436181e-05,-7.623296525288703e-21,-3.6227509554009885e-05,0.0,5.789213525145439e-23,1.2075835911673494e-05,1.0587911840678754e-22,1.0587911840678754e-21,2.541098841762901e-21,0.00011213276593480259,-2.964615315390051e-20,-6.116332951933146e-05,-3.302974595086504e-21,0.0,5.082197683525802e-21,1.0587911840678754e-22,5.096943823446054e-06,0.0,1.5881867761018131e-22,0.0001345593191217631,-8.470329472543003e-21,-2.242655318696052e-05,-2.0701432731584646e-05,0.0,-8.792348931159207e-23,1.0587911840678754e-21,0.0,3.450238864388666e-06,1.4823076576950256e-21,9.811617201194167e-05,-2.0328790734103208e-20,-1.1011428314305904e-20,-4.9058086005970836e-05,0.0,1.7803341075164366e-23,2.541098841762901e-21,1.5881867761018131e-22,1.4823076576950256e-21,3.7736988360848045e-06,7.0,13.0,15.0,0.025978147983551025,-0.005236133001744747,-0.0031004708725959063,-0.002730515319854021,0.0003052503161597997,0.00023547880118712783,0.00020604395831469446,0.00010465725063113496,0.00011773940059356391,8.080155384959653e-05,-0.005236133001744747,0.003332679159939289,0.00023547880118712783,0.00020604395831469446,-0.00036630037357099354,-7.849293615436181e-05,-6.868132186355069e-05,-2.922263668027336e-20,-5.082197683525802e-21,-1.3552527156068805e-20,-0.0031004708725959063,0.00023547880118712783,0.0009924599435180426,0.00011773940059356391,0.0,-3.924646807718091e-05,-4.235164736271502e-21,-5.7085770095000044e-05,-1.9623234038590454e-05,-5.082197683525802e-21,-0.002730515319854021,0.00020604395831469446,0.00011773940059356391,0.0007505728281103075,-0.0,-0.0,-2.943485014839098e-05,-8.151497390637127e-22,-1.681991489022039e-05,-3.729302261490375e-05,0.0003052503161597997,-0.00036630037357099354,0.0,-0.0,6.105006468715146e-05,0.0,0.0,0.0,0.0,0.0,0.00023547880118712783,-7.849293615436181e-05,-3.924646807718091e-05,-0.0,0.0,1.308215632889187e-05,0.0,4.658681209898652e-21,1.0587911840678754e-22,-3.0857537552506505e-23,0.00020604395831469446,-6.868132186355069e-05,-4.235164736271502e-21,-2.943485014839098e-05,0.0,0.0,9.811617019295227e-06,0.0,6.352747104407253e-22,1.2705494208814505e-21,0.00010465725063113496,-2.922263668027336e-20,-5.7085770095000044e-05,-8.151497390637127e-22,0.0,4.658681209898652e-21,0.0,4.75714750791667e-06,2.117582368135751e-22,-5.293955920339377e-23,0.00011773940059356391,-5.082197683525802e-21,-1.9623234038590454e-05,-1.681991489022039e-05,0.0,1.0587911840678754e-22,6.352747104407253e-22,2.117582368135751e-22,2.803319148370065e-06,9.529120656610879e-22,8.080155384959653e-05,-1.3552527156068805e-20,-5.082197683525802e-21,-3.729302261490375e-05,0.0,-3.0857537552506505e-23,1.2705494208814505e-21,-5.293955920339377e-23,9.529120656610879e-22,2.663787427081843e-06,7.0,13.0,16.0,0.024501627311110497,-0.004920237231999636,-0.0029131844639778137,-0.0024211606942117214,0.0002861721732188016,0.00022076138702686876,0.0001818034943426028,9.811617201194167e-05,0.00010388770897407085,6.733462942065671e-05,-0.004920237231999636,0.0031281744595617056,0.00022076138702686876,0.0001818034943426028,-0.00034340660204179585,-7.358712900895625e-05,-6.0601163568207994e-05,3.218725199566341e-20,-6.691560283308973e-20,-3.049318610115481e-20,-0.0029131844639778137,0.00022076138702686876,0.000931513321120292,0.00010388770897407085,-1.0076304509223828e-19,-3.679356450447813e-05,3.3034284942917713e-20,-5.3517909691436216e-05,-1.731461816234514e-05,-3.218725199566341e-20,-0.0024211606942117214,0.0001818034943426028,0.00010388770897407085,0.0006210176507011056,-2.2306339179351974e-19,1.5130988097624585e-20,-2.424046579108108e-05,-6.425094388732672e-20,-1.3851694347977173e-05,-2.8857697543571703e-05,0.0002861721732188016,-0.00034340660204179585,-1.0076304509223828e-19,-2.2306339179351974e-19,5.723443246097304e-05,-6.813164395966077e-21,3.58502379692148e-21,3.3009343104847895e-21,8.458158446869823e-21,9.255560557370942e-21,0.00022076138702686876,-7.358712900895625e-05,-3.679356450447813e-05,1.5130988097624585e-20,-6.813164395966077e-21,1.2264521501492709e-05,-2.1788016094519526e-21,-6.776263578034403e-21,9.33055288095197e-22,-1.8880231883841633e-21,0.0001818034943426028,-6.0601163568207994e-05,3.3034284942917713e-20,-2.424046579108108e-05,3.58502379692148e-21,-2.1788016094519526e-21,8.080155566858593e-06,-3.1763735522036263e-21,5.293955920339377e-23,-2.964615315390051e-21,9.811617201194167e-05,3.218725199566341e-20,-5.3517909691436216e-05,-6.425094388732672e-20,3.3009343104847895e-21,-6.776263578034403e-21,-3.1763735522036263e-21,4.459825959202135e-06,3.1763735522036263e-21,3.1234339930002325e-21,0.00010388770897407085,-6.691560283308973e-20,-1.731461816234514e-05,-1.3851694347977173e-05,8.458158446869823e-21,9.33055288095197e-22,5.293955920339377e-23,3.1763735522036263e-21,2.308615648871637e-06,-5.293955920339377e-22,6.733462942065671e-05,-3.049318610115481e-20,-3.218725199566341e-20,-2.8857697543571703e-05,9.255560557370942e-21,-1.8880231883841633e-21,-2.964615315390051e-21,3.1234339930002325e-21,-5.293955920339377e-22,1.92384641195531e-06,7.0,14.0,3.0,0.08948412537574768,-0.02151360549032688,-0.011989795602858067,-0.04005102068185806,0.0014172336086630821,0.0010204081190750003,0.0038265306502580643,0.00042517005931586027,0.0020408162381500006,0.005102040711790323,-0.02151360549032688,0.01454081665724516,0.0010204081190750003,0.0038265306502580643,-0.001700680237263441,-0.0003401360590942204,-0.0012755101779475808,-9.098060683538157e-20,-9.0801931945661e-19,-2.168404344971009e-19,-0.011989795602858067,0.0010204081190750003,0.003757849335670471,0.0020408162381500006,1.6316918234311568e-19,-0.00015698587230872363,-6.2341624917916505e-19,-0.00021258502965793014,-0.00031397174461744726,-8.890457814381136e-18,-0.04005102068185806,0.0038265306502580643,0.0020408162381500006,0.09107142686843872,3.021696774715651e-18,-3.260533182471456e-18,-0.0038265306502580643,-6.091557588163274e-19,-0.0020408162381500006,-0.030612245202064514,0.0014172336086630821,-0.001700680237263441,1.6316918234311568e-19,3.021696774715651e-18,0.00028344671591185033,-1.1180834903756764e-19,-3.394859610830613e-19,1.1858461261560205e-20,-3.934259693879438e-20,-7.849703096774827e-19,0.0010204081190750003,-0.0003401360590942204,-0.00015698587230872363,-3.260533182471456e-18,-1.1180834903756764e-19,5.232862531556748e-05,9.324783780855553e-20,5.082197683525802e-21,1.0866304645712304e-19,1.071085362717098e-18,0.0038265306502580643,-0.0012755101779475808,-6.2341624917916505e-19,-0.0038265306502580643,-3.394859610830613e-19,9.324783780855553e-20,0.0012755101779475808,-7.850643562357208e-21,3.6591823321385775e-19,-3.0357660829594124e-18,0.00042517005931586027,-9.098060683538157e-20,-0.00021258502965793014,-6.091557588163274e-19,1.1858461261560205e-20,5.082197683525802e-21,-7.850643562357208e-21,1.635269472899381e-05,8.944225607559894e-21,2.8290629019655137e-19,0.0020408162381500006,-9.0801931945661e-19,-0.00031397174461744726,-0.0020408162381500006,-3.934259693879438e-20,1.0866304645712304e-19,3.6591823321385775e-19,8.944225607559894e-21,0.00031397174461744726,1.3010426069826053e-18,0.005102040711790323,-2.168404344971009e-19,-8.890457814381136e-18,-0.030612245202064514,-7.849703096774827e-19,1.071085362717098e-18,-3.0357660829594124e-18,2.8290629019655137e-19,1.3010426069826053e-18,0.015306122601032257,7.0,14.0,4.0,0.07286564260721207,-0.016709184274077415,-0.009298468939960003,-0.025561224669218063,0.0010629252064973116,0.0007653061184100807,0.002295918297022581,0.0003188775444868952,0.0012244897661730647,0.0025510203558951616,-0.016709184274077415,0.011096938513219357,0.0007653061184100807,0.002295918297022581,-0.0012755101779475808,-0.00025510202976875007,-0.0007653061184100807,-2.9014815306187656e-19,-1.07742590890747e-18,-4.0115480381963664e-18,-0.009298468939960003,0.0007653061184100807,0.00286548282019794,0.0012244897661730647,-9.508975706767916e-19,-0.00011773940059356391,-1.1248597539537109e-18,-0.0001594387722434476,-0.00018838304094970226,-9.215718466126788e-19,-0.025561224669218063,0.002295918297022581,0.0012244897661730647,0.03489796072244644,-1.9585843991277987e-18,-1.9979253158559738e-18,-0.0015306122368201613,-2.4441137243986485e-19,-0.0008163265301845968,-0.0076530613005161285,0.0010629252064973116,-0.0012755101779475808,-9.508975706767916e-19,-1.9585843991277987e-18,0.00021258502965793014,1.7279472123987727e-19,4.419119881733521e-19,2.371692252312041e-20,3.137097659626416e-20,1.2639149153808924e-19,0.0007653061184100807,-0.00025510202976875007,-0.00011773940059356391,-1.9979253158559738e-18,1.7279472123987727e-19,3.924646807718091e-05,1.9809800815681246e-19,1.6093625997831706e-20,8.86654640101649e-20,2.3797497669601317e-19,0.002295918297022581,-0.0007653061184100807,-1.1248597539537109e-18,-0.0015306122368201613,4.419119881733521e-19,1.9809800815681246e-19,0.0005102040595375001,1.9318822593221568e-20,1.2874900798265365e-19,1.1384122811097797e-18,0.0003188775444868952,-2.9014815306187656e-19,-0.0001594387722434476,-2.4441137243986485e-19,2.371692252312041e-20,1.6093625997831706e-20,1.9318822593221568e-20,1.2264521501492709e-05,2.0832225456482625e-20,5.689767094104186e-21,0.0012244897661730647,-1.07742590890747e-18,-0.00018838304094970226,-0.0008163265301845968,3.137097659626416e-20,8.86654640101649e-20,1.2874900798265365e-19,2.0832225456482625e-20,0.000125588703667745,5.421010862427522e-20,0.0025510203558951616,-4.0115480381963664e-18,-9.215718466126788e-19,-0.0076530613005161285,1.2639149153808924e-19,2.3797497669601317e-19,1.1384122811097797e-18,5.689767094104186e-21,5.421010862427522e-20,0.0025510203558951616,7.0,14.0,5.0,0.061554908752441406,-0.013673469424247742,-0.007602040655910969,-0.01776967942714691,0.0008503401186317205,0.0006122448830865324,0.0015306122368201613,0.00025510202976875007,0.0008163265301845968,0.0014577260008081794,-0.013673469424247742,0.00897959154099226,0.0006122448830865324,0.0015306122368201613,-0.0010204081190750003,-0.0002040816325461492,-0.0005102040595375001,-4.1504614415460717e-20,-5.149960319306146e-19,-2.4936649967166602e-18,-0.007602040655910969,0.0006122448830865324,0.0023175040259957314,0.0008163265301845968,-6.437450399132683e-19,-9.419152047485113e-05,2.930733997499879e-19,-0.00012755101488437504,-0.000125588703667745,5.692061405548898e-19,-0.01776967942714691,0.0015306122368201613,0.0008163265301845968,0.01763119548559189,-2.656295322589486e-18,-2.439454888092385e-19,-0.0007653061184100807,3.3203691532368573e-19,-0.0004081632650922984,-0.0029154520016163588,0.0008503401186317205,-0.0010204081190750003,-6.437450399132683e-19,-2.656295322589486e-18,0.0001700680295471102,9.71258931647514e-20,2.0326347966356762e-19,1.291725244562808e-20,6.264896645945e-20,3.8151526650082207e-19,0.0006122448830865324,-0.0002040816325461492,-9.419152047485113e-05,-2.439454888092385e-19,9.71258931647514e-20,3.139717591693625e-05,5.082197683525802e-21,1.793875050104962e-21,2.371692252312041e-20,2.202285662861181e-20,0.0015306122368201613,-0.0005102040595375001,2.930733997499879e-19,-0.0007653061184100807,2.0326347966356762e-19,5.082197683525802e-21,0.00025510202976875007,-2.372842388792659e-20,-1.0164395367051604e-20,8.809142651444724e-20,0.00025510202976875007,-4.1504614415460717e-20,-0.00012755101488437504,3.3203691532368573e-19,1.291725244562808e-20,1.793875050104962e-21,-2.372842388792659e-20,9.811617019295227e-06,-3.094865767660001e-21,-5.962676515625948e-20,0.0008163265301845968,-5.149960319306146e-19,-0.000125588703667745,-0.0004081632650922984,6.264896645945e-20,2.371692252312041e-20,-1.0164395367051604e-20,-3.094865767660001e-21,6.27943518338725e-05,9.486769009248164e-20,0.0014577260008081794,-2.4936649967166602e-18,5.692061405548898e-19,-0.0029154520016163588,3.8151526650082207e-19,2.202285662861181e-20,8.809142651444724e-20,-5.962676515625948e-20,9.486769009248164e-20,0.0007288630004040897,7.0,14.0,6.0,0.05332442373037338,-0.011576773598790169,-0.006432215683162212,-0.01308309007436037,0.0007086168043315411,0.0005102040595375001,0.001093294471502304,0.00021258502965793014,0.000583090353757143,0.0009110787068493664,-0.011576773598790169,0.007543731946498156,0.0005102040595375001,0.001093294471502304,-0.0008503401186317205,-0.0001700680295471102,-0.00036443150020204484,-1.308665903507894e-19,-1.3552527156068805e-19,-7.589415207398531e-19,-0.006432215683162212,0.0005102040595375001,0.0019462043419480324,0.000583090353757143,1.0418505251227894e-19,-7.849293615436181e-05,-6.14945919706622e-19,-0.00010629251482896507,-8.970621274784207e-05,-1.0570971181733668e-18,-0.01308309007436037,0.001093294471502304,0.000583090353757143,0.010244169272482395,8.673617379884035e-19,-1.2197274440461925e-18,-0.0004373177944216877,-3.049318610115481e-19,-0.0002332361473236233,-0.00136661808937788,0.0007086168043315411,-0.0008503401186317205,1.0418505251227894e-19,8.673617379884035e-19,0.00014172335795592517,-5.681594727366747e-20,-2.772478707435029e-20,6.776263578034403e-21,-1.8611581553901596e-20,-1.2269791038318976e-19,0.0005102040595375001,-0.0001700680295471102,-7.849293615436181e-05,-1.2197274440461925e-18,-5.681594727366747e-20,2.616431265778374e-05,5.759824041329242e-20,4.276235788492537e-21,3.134021904840911e-20,1.6093625997831706e-19,0.001093294471502304,-0.00036443150020204484,-6.14945919706622e-19,-0.0004373177944216877,-2.772478707435029e-20,5.759824041329242e-20,0.00014577258843928576,2.4737572926131348e-20,2.541098841762901e-20,1.4907779871675686e-19,0.00021258502965793014,-1.308665903507894e-19,-0.00010629251482896507,-3.049318610115481e-19,6.776263578034403e-21,4.276235788492537e-21,2.4737572926131348e-20,8.176347364496905e-06,4.710558116664728e-21,3.6730357333177654e-20,0.000583090353757143,-1.3552527156068805e-19,-8.970621274784207e-05,-0.0002332361473236233,-1.8611581553901596e-20,3.134021904840911e-20,2.541098841762901e-20,4.710558116664728e-21,3.5882483643945307e-05,3.3881317890172014e-21,0.0009110787068493664,-7.589415207398531e-19,-1.0570971181733668e-18,-0.00136661808937788,-1.2269791038318976e-19,1.6093625997831706e-19,1.4907779871675686e-19,3.6730357333177654e-20,3.3881317890172014e-21,0.000273323617875576,7.0,14.0,7.0,0.04705417901277542,-0.01004008762538433,-0.005575801711529493,-0.01004008762538433,0.0006073858239687979,0.0004373177944216877,0.0008199708536267281,0.00018221575010102242,0.0004373177944216877,0.0006073858239687979,-0.01004008762538433,0.006505101919174194,0.0004373177944216877,0.0008199708536267281,-0.0007288630004040897,-0.00014577258843928576,-0.000273323617875576,6.522153693858113e-20,-1.3552527156068805e-19,-4.0657581468206416e-19,-0.005575801711529493,0.0004373177944216877,0.0016777864657342434,0.0004373177944216877,1.7618285302889447e-19,-6.727965956088156e-05,6.691560283308973e-20,-9.110787505051121e-05,-6.727965956088156e-05,-4.607859233063394e-19,-0.01004008762538433,0.0008199708536267281,0.0004373177944216877,0.006505101919174194,4.0657581468206416e-19,-5.285485590866834e-19,-0.000273323617875576,1.1519648082658485e-19,-0.00014577258843928576,-0.0007288630004040897,0.0006073858239687979,-0.0007288630004040897,1.7618285302889447e-19,4.0657581468206416e-19,0.00012147716188337654,-4.5716395143556256e-20,2.5162614514012892e-20,-4.0234064994579266e-21,1.9240649178573905e-21,-8.995971732547482e-20,0.0004373177944216877,-0.00014577258843928576,-6.727965956088156e-05,-5.285485590866834e-19,-4.5716395143556256e-20,2.242655318696052e-05,-1.6940658945086007e-21,-1.0285249766499226e-21,1.5246593050577406e-20,6.437450399132683e-20,0.0008199708536267281,-0.000273323617875576,6.691560283308973e-20,-0.000273323617875576,2.5162614514012892e-20,-1.6940658945086007e-21,9.110787505051121e-05,-7.151288203837766e-21,5.082197683525802e-21,1.4230153513872246e-19,0.00018221575010102242,6.522153693858113e-20,-9.110787505051121e-05,1.1519648082658485e-19,-4.0234064994579266e-21,-1.0285249766499226e-21,-7.151288203837766e-21,7.008297870925162e-06,-6.218145270140555e-21,-6.596244762156499e-21,0.0004373177944216877,-1.3552527156068805e-19,-6.727965956088156e-05,-0.00014577258843928576,1.9240649178573905e-21,1.5246593050577406e-20,5.082197683525802e-21,-6.218145270140555e-21,2.242655318696052e-05,9.656175598699024e-20,0.0006073858239687979,-4.0657581468206416e-19,-4.607859233063394e-19,-0.0007288630004040897,-8.995971732547482e-20,6.437450399132683e-20,1.4230153513872246e-19,-6.596244762156499e-21,9.656175598699024e-20,0.00012147716188337654,7.0,14.0,8.0,0.04211309552192688,-0.008864795789122581,-0.004921343643218279,-0.007950680330395699,0.0005314626032486558,0.00038265305920504034,0.0006377550889737904,0.0001594387722434476,0.0003401360590942204,0.00042517005931586027,-0.008864795789122581,0.0057185376062989235,0.00038265305920504034,0.0006377550889737904,-0.0006377550889737904,-0.00012755101488437504,-0.00021258502965793014,-1.8888834723770898e-19,6.776263578034403e-20,9.893344823930228e-19,-0.004921343643218279,0.00038265305920504034,0.0014746042434126139,0.0003401360590942204,-3.6507120026660345e-19,-5.886970029678196e-05,-2.430984558619842e-19,-7.97193861217238e-05,-5.232862531556748e-05,-1.0842021724855044e-19,-0.007950680330395699,0.0006377550889737904,0.0003401360590942204,0.00439747329801321,7.589415207398531e-19,-5.421010862427522e-19,-0.00018221575010102242,-1.1519648082658485e-19,-9.718172805150971e-05,-0.00042517005931586027,0.0005314626032486558,-0.0006377550889737904,-3.6507120026660345e-19,7.589415207398531e-19,0.00010629251482896507,8.218767046159435e-20,6.104996171189964e-20,1.291725244562808e-20,-2.1065464539828437e-20,-1.0860062017026943e-19,0.00038265305920504034,-0.00012755101488437504,-5.886970029678196e-05,-5.421010862427522e-19,8.218767046159435e-20,1.9623234038590454e-05,6.183340514956392e-20,9.096208736006576e-21,1.8634724839594607e-20,3.134021904840911e-20,0.0006377550889737904,-0.00021258502965793014,-2.430984558619842e-19,-0.00018221575010102242,6.104996171189964e-20,6.183340514956392e-20,6.073858094168827e-05,1.0253894855301421e-20,-2.202285662861181e-20,-1.4907779871675686e-19,0.0001594387722434476,-1.8888834723770898e-19,-7.97193861217238e-05,-1.1519648082658485e-19,1.291725244562808e-20,9.096208736006576e-21,1.0253894855301421e-20,6.1322607507463545e-06,4.69546610945347e-21,5.5408911436127634e-21,0.0003401360590942204,6.776263578034403e-20,-5.232862531556748e-05,-9.718172805150971e-05,-2.1065464539828437e-20,1.8634724839594607e-20,-2.202285662861181e-20,4.69546610945347e-21,1.4951035154808778e-05,-1.7787691892340307e-20,0.00042517005931586027,9.893344823930228e-19,-1.0842021724855044e-19,-0.00042517005931586027,-1.0860062017026943e-19,3.134021904840911e-20,-1.4907779871675686e-19,5.5408911436127634e-21,-1.7787691892340307e-20,6.073858094168827e-05,7.0,14.0,9.0,0.038116540759801865,-0.007936508394777775,-0.004404761828482151,-0.006453308742493391,0.0004724111931864172,0.0003401360590942204,0.0005102040595375001,0.00014172335795592517,0.0002721088530961424,0.0003092146071139723,-0.007936508394777775,0.005102040711790323,0.0003401360590942204,0.0005102040595375001,-0.0005668934318237007,-0.00011337868636474013,-0.0001700680295471102,2.710505431213761e-20,3.3881317890172014e-21,-0.0,-0.004404761828482151,0.0003401360590942204,0.0013154108310118318,0.0002721088530961424,0.0,-5.232862531556748e-05,0.0,-7.086167897796258e-05,-4.186289879726246e-05,5.794553994829105e-20,-0.006453308742493391,0.0005102040595375001,0.0002721088530961424,0.0031152265146374702,0.0,3.32336572809693e-21,-0.00012755101488437504,1.6940658945086007e-21,-6.80272132740356e-05,-0.000265041075181216,0.0004724111931864172,-0.0005668934318237007,0.0,0.0,9.448223863728344e-05,0.0,0.0,0.0,0.0,-0.0,0.0003401360590942204,-0.00011337868636474013,-5.232862531556748e-05,3.32336572809693e-21,0.0,1.744287510518916e-05,0.0,-4.658681209898652e-21,-2.117582368135751e-22,-0.0,0.0005102040595375001,-0.0001700680295471102,0.0,-0.00012755101488437504,0.0,0.0,4.251700738677755e-05,0.0,0.0,-0.0,0.00014172335795592517,2.710505431213761e-20,-7.086167897796258e-05,1.6940658945086007e-21,0.0,-4.658681209898652e-21,0.0,5.450898242997937e-06,-4.235164736271502e-22,2.333428974536182e-37,0.0002721088530961424,3.3881317890172014e-21,-4.186289879726246e-05,-6.80272132740356e-05,0.0,-2.117582368135751e-22,0.0,-4.235164736271502e-22,1.0465724699315615e-05,-1.4486384987072764e-20,0.0003092146071139723,-0.0,5.794553994829105e-20,-0.000265041075181216,-0.0,-0.0,-0.0,2.333428974536182e-37,-1.4486384987072764e-20,3.3130134397652e-05,7.0,14.0,10.0,0.034816015511751175,-0.0071846009232103825,-0.003986549098044634,-0.005343228112906218,0.00042517005931586027,0.0003061224415432662,0.00041743970359675586,0.00012755101488437504,0.00022263450955506414,0.00023191094805952162,-0.0071846009232103825,0.004605751484632492,0.0003061224415432662,0.00041743970359675586,-0.0005102040595375001,-0.0001020408162730746,-0.00013914656301494688,-1.8931186371133613e-19,-4.980553729855286e-19,-1.1264438048267499e-18,-0.003986549098044634,0.0003061224415432662,0.0011872948380187154,0.00022263450955506414,-3.8509163357798337e-19,-4.7095760237425566e-05,-4.740829550507059e-19,-6.377550744218752e-05,-3.4251461329404265e-05,-5.959627967327778e-19,-0.005343228112906218,0.00041743970359675586,0.00022263450955506414,0.00228896108455956,-1.8054453503985596e-18,-3.3767068737941955e-19,-9.276437776861712e-05,-4.438452643612534e-19,-4.9474336265120655e-05,-0.0001739332074066624,0.00042517005931586027,-0.0005102040595375001,-3.8509163357798337e-19,-1.8054453503985596e-18,8.50340147735551e-05,3.232059205637854e-21,5.442777990999884e-20,9.440672107791659e-21,4.9434791716832325e-20,1.3302765139987247e-19,0.0003061224415432662,-0.0001020408162730746,-4.7095760237425566e-05,-3.3767068737941955e-19,3.232059205637854e-21,1.5698587958468124e-05,1.4118620809849114e-20,1.6940658945086007e-21,1.079967007749233e-20,1.9805605459011954e-20,0.00041743970359675586,-0.00013914656301494688,-4.740829550507059e-19,-9.276437776861712e-05,5.442777990999884e-20,1.4118620809849114e-20,3.092145925620571e-05,2.3172558516290957e-20,2.3503650481162377e-20,3.862093032195588e-20,0.00012755101488437504,-1.8931186371133613e-19,-6.377550744218752e-05,-4.438452643612534e-19,9.440672107791659e-21,1.6940658945086007e-21,2.3172558516290957e-20,4.905808509647613e-06,9.317362419797304e-21,3.168896938065398e-20,0.00022263450955506414,-4.980553729855286e-19,-3.4251461329404265e-05,-4.9474336265120655e-05,4.9434791716832325e-20,1.079967007749233e-20,2.3503650481162377e-20,9.317362419797304e-21,7.611436103616143e-06,2.48697344160323e-20,0.00023191094805952162,-1.1264438048267499e-18,-5.959627967327778e-19,-0.0001739332074066624,1.3302765139987247e-19,1.9805605459011954e-20,3.862093032195588e-20,3.168896938065398e-20,2.48697344160323e-20,1.932591294462327e-05,7.0,14.0,11.0,0.03204355016350746,-0.006563080009073019,-0.003641001880168915,-0.0044972882606089115,0.00038651825161650777,0.00027829312602989376,0.0003478664148133248,0.00011595547402976081,0.00018552875553723425,0.0001783930347301066,-0.006563080009073019,0.004197588190436363,0.00027829312602989376,0.0003478664148133248,-0.00046382189611904323,-9.276437776861712e-05,-0.00011595547402976081,-2.371692252312041e-20,-8.470329472543003e-22,-0.0,-0.003641001880168915,0.00027829312602989376,0.0010819537565112114,0.00018552875553723425,0.0,-4.2814328480744734e-05,0.0,-5.7977737014880404e-05,-2.8542885047500022e-05,-0.0,-0.0044972882606089115,0.0003478664148133248,0.00018552875553723425,0.0017319584731012583,0.0,-1.5252760150564258e-21,-6.957328150747344e-05,-5.082197683525802e-21,-3.710575037985109e-05,-0.00011892869224539027,0.00038651825161650777,-0.00046382189611904323,0.0,0.0,7.730365177849308e-05,0.0,0.0,0.0,0.0,-0.0,0.00027829312602989376,-9.276437776861712e-05,-4.2814328480744734e-05,-1.5252760150564258e-21,0.0,1.4271442523750011e-05,0.0,3.3881317890172014e-21,2.117582368135751e-22,-0.0,0.0003478664148133248,-0.00011595547402976081,0.0,-6.957328150747344e-05,0.0,0.0,2.319109444215428e-05,0.0,0.0,-0.0,0.00011595547402976081,-2.371692252312041e-20,-5.7977737014880404e-05,-5.082197683525802e-21,0.0,3.3881317890172014e-21,0.0,4.459825959202135e-06,6.352747104407253e-22,-0.0,0.00018552875553723425,-8.470329472543003e-22,-2.8542885047500022e-05,-3.710575037985109e-05,0.0,2.117582368135751e-22,0.0,6.352747104407253e-22,5.708577191398945e-06,-0.0,0.0001783930347301066,-0.0,-0.0,-0.00011892869224539027,-0.0,-0.0,-0.0,-0.0,-0.0,1.1892869224539027e-05,7.0,14.0,12.0,0.029681386426091194,-0.006040685344487429,-0.0033506671898066998,-0.0038377437740564346,0.00035430840216577053,0.00025510202976875007,0.000294348516035825,0.00010629251482896507,0.00015698587230872363,0.00014016595378052443,-0.006040685344487429,0.0038559655658900738,0.00025510202976875007,0.000294348516035825,-0.00042517005931586027,-8.50340147735551e-05,-9.811617201194167e-05,-1.9058241313221758e-20,-5.929230630780102e-21,-2.371692252312041e-20,-0.0033506671898066998,0.00025510202976875007,0.000993803609162569,0.00015698587230872363,0.0,-3.924646807718091e-05,-4.235164736271502e-21,-5.3146257414482534e-05,-2.4151671823346987e-05,-5.082197683525802e-21,-0.0038377437740564346,0.000294348516035825,0.00015698587230872363,0.0013425350189208984,-0.0,-1.1644635073215247e-21,-5.3517909691436216e-05,-8.307302594345815e-22,-2.8542885047500022e-05,-8.409957081312314e-05,0.00035430840216577053,-0.00042517005931586027,0.0,-0.0,7.086167897796258e-05,0.0,0.0,0.0,0.0,0.0,0.00025510202976875007,-8.50340147735551e-05,-3.924646807718091e-05,-1.1644635073215247e-21,0.0,1.308215632889187e-05,-6.520171251062324e-24,2.964615315390051e-21,2.365152416178561e-22,-2.1150634090476353e-23,0.000294348516035825,-9.811617201194167e-05,-4.235164736271502e-21,-5.3517909691436216e-05,0.0,-6.520171251062324e-24,1.783930383680854e-05,-5.293955920339377e-23,8.470329472543003e-22,3.8116482626443515e-21,0.00010629251482896507,-1.9058241313221758e-20,-5.3146257414482534e-05,-8.307302594345815e-22,0.0,2.964615315390051e-21,-5.293955920339377e-23,4.088173682248453e-06,4.235164736271502e-22,-2.117582368135751e-22,0.00015698587230872363,-5.929230630780102e-21,-2.4151671823346987e-05,-2.8542885047500022e-05,0.0,2.365152416178561e-22,8.470329472543003e-22,4.235164736271502e-22,4.391213224153034e-06,1.4823076576950256e-21,0.00014016595378052443,-2.371692252312041e-20,-5.082197683525802e-21,-8.409957081312314e-05,0.0,-2.1150634090476353e-23,3.8116482626443515e-21,-2.117582368135751e-22,1.4823076576950256e-21,7.645416189916432e-06,7.0,14.0,13.0,0.027644464746117592,-0.005595425143837929,-0.0031032743863761425,-0.0033135232515633106,0.0003270538873039186,0.00023547880118712783,0.000252298719715327,9.811617201194167e-05,0.0001345593191217631,0.00011213276593480259,-0.005595425143837929,0.0035658220294862986,0.00023547880118712783,0.000252298719715327,-0.0003924646880477667,-7.849293615436181e-05,-8.409957081312314e-05,-1.9481757786848908e-20,-1.2705494208814505e-20,-3.3881317890172014e-20,-0.0031032743863761425,0.00023547880118712783,0.0009189495467580855,0.0001345593191217631,0.0,-3.6227509554009885e-05,-1.2705494208814505e-20,-4.9058086005970836e-05,-2.0701432731584646e-05,-2.0328790734103208e-20,-0.0033135232515633106,0.000252298719715327,0.0001345593191217631,0.00106194824911654,-0.0,-2.7632798370223927e-21,-4.204978540656157e-05,-3.583822607887431e-21,-2.242655318696052e-05,-6.116332951933146e-05,0.0003270538873039186,-0.0003924646880477667,0.0,-0.0,6.541077891597524e-05,0.0,0.0,0.0,0.0,0.0,0.00023547880118712783,-7.849293615436181e-05,-3.6227509554009885e-05,-2.7632798370223927e-21,0.0,1.2075835911673494e-05,3.538010394340934e-24,2.964615315390051e-21,3.759931450465825e-22,1.5182077771694348e-23,0.000252298719715327,-8.409957081312314e-05,-1.2705494208814505e-20,-4.204978540656157e-05,0.0,3.538010394340934e-24,1.4016595741850324e-05,1.0587911840678754e-22,1.9058241313221758e-21,5.505714157152952e-21,9.811617201194167e-05,-1.9481757786848908e-20,-4.9058086005970836e-05,-3.583822607887431e-21,0.0,2.964615315390051e-21,1.0587911840678754e-22,3.7736988360848045e-06,2.117582368135751e-22,5.293955920339377e-23,0.0001345593191217631,-1.2705494208814505e-20,-2.0701432731584646e-05,-2.242655318696052e-05,0.0,3.759931450465825e-22,1.9058241313221758e-21,2.117582368135751e-22,3.450238864388666e-06,3.3881317890172014e-21,0.00011213276593480259,-3.3881317890172014e-20,-2.0328790734103208e-20,-6.116332951933146e-05,0.0,1.5182077771694348e-23,5.505714157152952e-21,5.293955920339377e-23,3.3881317890172014e-21,5.096943823446054e-06,7.0,14.0,14.0,0.02586977556347847,-0.005211370065808296,-0.002889941679313779,-0.002889941679313779,0.00030369291198439896,0.00021865889721084386,0.00021865889721084386,9.110787505051121e-05,0.00011661807366181165,9.110787505051121e-05,-0.005211370065808296,0.003316326532512903,0.00021865889721084386,0.00021865889721084386,-0.00036443150020204484,-7.288629421964288e-05,-7.288629421964288e-05,1.3552527156068805e-20,3.3881317890172014e-21,1.3552527156068805e-20,-0.002889941679313779,0.00021865889721084386,0.0008545918390154839,0.00011661807366181165,0.0,-3.363982978044078e-05,4.235164736271502e-21,-4.5553937525255606e-05,-1.7941241821972653e-05,7.623296525288703e-21,-0.002889941679313779,0.00021865889721084386,0.00011661807366181165,0.0008545918390154839,-0.0,-1.4824805255183521e-21,-3.363982978044078e-05,-5.212139053782199e-22,-1.7941241821972653e-05,-4.5553937525255606e-05,0.00030369291198439896,-0.00036443150020204484,0.0,-0.0,6.073858094168827e-05,0.0,0.0,0.0,0.0,0.0,0.00021865889721084386,-7.288629421964288e-05,-3.363982978044078e-05,-1.4824805255183521e-21,0.0,1.121327659348026e-05,3.188602284629745e-23,-2.117582368135751e-21,1.3700221809442765e-22,7.05851533410629e-23,0.00021865889721084386,-7.288629421964288e-05,4.235164736271502e-21,-3.363982978044078e-05,0.0,3.188602284629745e-23,1.121327659348026e-05,5.293955920339377e-23,-8.470329472543003e-22,-1.9058241313221758e-21,9.110787505051121e-05,1.3552527156068805e-20,-4.5553937525255606e-05,-5.212139053782199e-22,0.0,-2.117582368135751e-21,5.293955920339377e-23,3.504148935462581e-06,-1.0587911840678754e-22,1.0587911840678754e-22,0.00011661807366181165,3.3881317890172014e-21,-1.7941241821972653e-05,-1.7941241821972653e-05,0.0,1.3700221809442765e-22,-8.470329472543003e-22,-1.0587911840678754e-22,2.760191136985668e-06,-1.2705494208814505e-21,9.110787505051121e-05,1.3552527156068805e-20,7.623296525288703e-21,-4.5553937525255606e-05,0.0,7.05851533410629e-23,-1.9058241313221758e-21,1.0587911840678754e-22,-1.2705494208814505e-21,3.504148935462581e-06,7.0,14.0,15.0,0.024309640750288963,-0.004876700695604086,-0.00270408159121871,-0.002542767208069563,0.00028344671591185033,0.0002040816325461492,0.00019132652960252017,8.50340147735551e-05,0.0001020408162730746,7.503000961150974e-05,-0.004876700695604086,0.003099489724263549,0.0002040816325461492,0.00019132652960252017,-0.0003401360590942204,-6.80272132740356e-05,-6.377550744218752e-05,-1.8041801776516597e-19,-1.4230153513872246e-19,-1.4568966692773966e-19,-0.00270408159121871,0.0002040816325461492,0.0007986656273715198,0.0001020408162730746,-2.8912901484842295e-19,-3.139717591693625e-05,-1.2705494208814505e-19,-4.251700738677755e-05,-1.5698587958468124e-05,-1.8634724839594607e-20,-0.002542767208069563,0.00019132652960252017,0.0001020408162730746,0.0006980017060413957,-2.345525686103633e-19,-1.2820615778096866e-19,-2.7332362151355483e-05,1.296929373838503e-20,-1.4577259207726456e-05,-3.462923632469028e-05,0.00028344671591185033,-0.0003401360590942204,-2.8912901484842295e-19,-2.345525686103633e-19,5.668934318237007e-05,-4.324167027580863e-21,-3.764341851880058e-21,1.2587562810388879e-20,1.4026141371130832e-20,8.5435947334779e-21,0.0002040816325461492,-6.80272132740356e-05,-3.139717591693625e-05,-1.2820615778096866e-19,-4.324167027580863e-21,1.0465724699315615e-05,3.829158399898263e-21,9.105604182983729e-21,4.7950747302968365e-21,6.1604231691240554e-21,0.00019132652960252017,-6.377550744218752e-05,-1.2705494208814505e-19,-2.7332362151355483e-05,-3.764341851880058e-21,3.829158399898263e-21,9.11078677745536e-06,6.88214269644119e-21,3.705769144237564e-21,8.046812998915853e-21,8.50340147735551e-05,-1.8041801776516597e-19,-4.251700738677755e-05,1.296929373838503e-20,1.2587562810388879e-20,9.105604182983729e-21,6.88214269644119e-21,3.2705390822229674e-06,-1.9058241313221758e-21,-1.2176098616780567e-21,0.0001020408162730746,-1.4230153513872246e-19,-1.5698587958468124e-05,-1.4577259207726456e-05,1.4026141371130832e-20,4.7950747302968365e-21,3.705769144237564e-21,-1.9058241313221758e-21,2.2426552277465817e-06,2.964615315390051e-21,7.503000961150974e-05,-1.4568966692773966e-19,-1.8634724839594607e-20,-3.462923632469028e-05,8.5435947334779e-21,6.1604231691240554e-21,8.046812998915853e-21,-1.2176098616780567e-21,2.964615315390051e-21,2.473516815371113e-06,7.0,14.0,16.0,0.02292729541659355,-0.004582458175718784,-0.0025407038629055023,-0.0022546518594026566,0.0002657313016243279,0.00019132652960252017,0.00016881752526387572,7.97193861217238e-05,9.003601735457778e-05,6.252501043491066e-05,-0.004582458175718784,0.002909288741648197,0.00019132652960252017,0.00016881752526387572,-0.0003188775444868952,-6.377550744218752e-05,-5.6272507208632305e-05,7.411538288475128e-20,9.740878893424454e-20,6.437450399132683e-20,-0.0025407038629055023,0.00019132652960252017,0.0007496147300116718,9.003601735457778e-05,1.5584922845808666e-19,-2.943485014839098e-05,1.1180834903756764e-19,-3.98596930608619e-05,-1.3851694347977173e-05,3.3881317890172014e-20,-0.0022546518594026566,0.00016881752526387572,9.003601735457778e-05,0.0005775167373940349,2.175513962335902e-19,-1.8833608462538192e-20,-2.2509004338644445e-05,5.545537087533698e-20,-1.2004801646980923e-05,-2.6796433303388767e-05,0.0002657313016243279,-0.0003188775444868952,1.5584922845808666e-19,2.175513962335902e-19,5.3146257414482534e-05,1.0152056724213283e-21,-4.2216689291485296e-21,-5.900419865421395e-21,-8.441071189548208e-21,-8.594449377485006e-21,0.00019132652960252017,-6.377550744218752e-05,-2.943485014839098e-05,-1.8833608462538192e-20,1.0152056724213283e-21,9.811617019295227e-06,1.0252169610190816e-21,1.2705494208814505e-21,7.38556318145899e-23,1.7263861190189063e-21,0.00016881752526387572,-5.6272507208632305e-05,1.1180834903756764e-19,-2.2509004338644445e-05,-4.2216689291485296e-21,1.0252169610190816e-21,7.503001143049914e-06,-5.055727903924105e-21,-5.241016361135983e-21,-2.117582368135751e-21,7.97193861217238e-05,7.411538288475128e-20,-3.98596930608619e-05,5.545537087533698e-20,-5.900419865421395e-21,1.2705494208814505e-21,-5.055727903924105e-21,3.0661303753731772e-06,-1.9058241313221758e-21,-1.5352472168984194e-21,9.003601735457778e-05,9.740878893424454e-20,-1.3851694347977173e-05,-1.2004801646980923e-05,-8.441071189548208e-21,7.38556318145899e-23,-5.241016361135983e-21,-1.9058241313221758e-21,1.8468925873094122e-06,-2.0117032497289633e-21,6.252501043491066e-05,6.437450399132683e-20,3.3881317890172014e-20,-2.6796433303388767e-05,-8.594449377485006e-21,1.7263861190189063e-21,-2.117582368135751e-21,-1.5352472168984194e-21,-2.0117032497289633e-21,1.7864288111013593e-06,7.0,15.0,3.0,0.084198959171772,-0.02013888955116272,-0.010556722991168499,-0.03750000149011612,0.0013227512827143073,0.0008928571478463709,0.0035714285913854837,0.00035014006425626576,0.0017857142956927419,0.004761904943734407,-0.02013888955116272,0.013591269962489605,0.0008928571478463709,0.0035714285913854837,-0.0015873016091063619,-0.00029761905898340046,-0.0011904762359336019,4.0721150298281116e-19,2.5614276324970042e-18,-5.421010862427522e-18,-0.010556722991168499,0.0008928571478463709,0.0030702666845172644,0.0017857142956927419,2.9035269931772444e-18,-0.00012755101488437504,-4.336808689942018e-19,-0.00016160310769919306,-0.00025510202976875007,-4.553649124439119e-18,-0.03750000149011612,0.0035714285913854837,0.0017857142956927419,0.08511904627084732,9.551856542927511e-18,-5.270685778744612e-19,-0.0035714285913854837,1.071401681753217e-19,-0.0017857142956927419,-0.02857142873108387,0.0013227512827143073,-0.0015873016091063619,2.9035269931772444e-18,9.551856542927511e-18,0.00026455026818439364,-4.404571325722362e-19,-1.2063441787229673e-18,-6.268043809681823e-20,-4.1450201440791213e-19,-1.391652901859853e-18,0.0008928571478463709,-0.00029761905898340046,-0.00012755101488437504,-5.270685778744612e-19,-4.404571325722362e-19,4.251700738677755e-05,-9.771760841488812e-21,-3.3881317890172014e-21,-5.3206874250567646e-20,4.1167995850121676e-19,0.0035714285913854837,-0.0011904762359336019,-4.336808689942018e-19,-0.0035714285913854837,-1.2063441787229673e-18,-9.771760841488812e-21,0.0011904762359336019,-9.128008741459768e-22,4.0657581468206416e-19,1.1492543028346347e-17,0.00035014006425626576,4.0721150298281116e-19,-0.00016160310769919306,1.071401681753217e-19,-6.268043809681823e-20,-3.3881317890172014e-21,-9.128008741459768e-22,1.154307847173186e-05,-2.250620152498127e-20,2.5638340301458917e-20,0.0017857142956927419,2.5614276324970042e-18,-0.00025510202976875007,-0.0017857142956927419,-4.1450201440791213e-19,-5.3206874250567646e-20,4.0657581468206416e-19,-2.250620152498127e-20,0.00025510202976875007,2.8189256484623115e-18,0.004761904943734407,-5.421010862427522e-18,-4.553649124439119e-18,-0.02857142873108387,-1.391652901859853e-18,4.1167995850121676e-19,1.1492543028346347e-17,2.5638340301458917e-20,2.8189256484623115e-18,0.014285714365541935,7.0,15.0,4.0,0.06853612512350082,-0.015639880672097206,-0.008185398764908314,-0.023928571492433548,0.0009920635493472219,0.0006696428754366934,0.002142857061699033,0.00026260505546815693,0.0010714285308495164,0.0023809524718672037,-0.015639880672097206,0.010372024029493332,0.0006696428754366934,0.002142857061699033,-0.0011904762359336019,-0.00022321428696159273,-0.0007142857066355646,-4.7058977132389444e-20,-5.488773498207866e-19,-1.3010426069826053e-18,-0.008185398764908314,0.0006696428754366934,0.0023409652058035135,0.0010714285308495164,-4.346323851925792e-19,-9.566326480126008e-05,-2.846030702774449e-19,-0.00012120232713641599,-0.0001530612207716331,1.6263032587282567e-19,-0.023928571492433548,0.002142857061699033,0.0010714285308495164,0.03261904790997505,-4.688861928523415e-19,-1.1620948756374791e-18,-0.0014285714132711291,-8.566362556720996e-20,-0.0007142857066355646,-0.0071428571827709675,0.0009920635493472219,-0.0011904762359336019,-4.346323851925792e-19,-4.688861928523415e-19,0.00019841270113829523,9.147955830346444e-20,-1.0218626103492405e-19,4.235164736271502e-21,4.9693447216968536e-20,1.0756523561259739e-19,0.0006696428754366934,-0.00022321428696159273,-9.566326480126008e-05,-1.1620948756374791e-18,9.147955830346444e-20,3.188775372109376e-05,6.93979977007555e-20,2.541098841762901e-21,5.697782264213497e-20,1.6345125093199626e-19,0.002142857061699033,-0.0007142857066355646,-2.846030702774449e-19,-0.0014285714132711291,-1.0218626103492405e-19,6.93979977007555e-20,0.0004761904710903764,1.2752557877611931e-20,-8.809142651444724e-20,-3.7947076036992655e-19,0.00026260505546815693,-4.7058977132389444e-20,-0.00012120232713641599,-8.566362556720996e-20,4.235164736271502e-21,2.541098841762901e-21,1.2752557877611931e-20,8.65730908117257e-06,-6.888174894902362e-22,1.5336382536717757e-20,0.0010714285308495164,-5.488773498207866e-19,-0.0001530612207716331,-0.0007142857066355646,4.9693447216968536e-20,5.697782264213497e-20,-8.809142651444724e-20,-6.888174894902362e-22,0.0001020408162730746,-5.149960319306146e-19,0.0023809524718672037,-1.3010426069826053e-18,1.6263032587282567e-19,-0.0071428571827709675,1.0756523561259739e-19,1.6345125093199626e-19,-3.7947076036992655e-19,1.5336382536717757e-20,-5.149960319306146e-19,0.0023809524718672037,7.0,15.0,5.0,0.05788331851363182,-0.012797619216144085,-0.0066911764442920685,-0.016632653772830963,0.0007936508045531809,0.0005357142654247582,0.0014285714132711291,0.0002100840356433764,0.0007142857066355646,0.0013605442363768816,-0.012797619216144085,0.008392857387661934,0.0005357142654247582,0.0014285714132711291,-0.0009523809421807528,-0.00017857142665889114,-0.0004761904710903764,1.1540823906339842e-18,7.047314121155779e-19,-6.179952383167375e-18,-0.0066911764442920685,0.0005357142654247582,0.001893180306069553,0.0007142857066355646,1.7558992996581646e-18,-7.653061038581654e-05,1.1722935989999517e-18,-9.696186316432431e-05,-0.0001020408162730746,-2.981555974335137e-19,-0.016632653772830963,0.0014285714132711291,0.0007142857066355646,0.01647959090769291,-2.4665599424045226e-18,-5.421010862427522e-19,-0.0007142857066355646,4.87890977618477e-19,-0.0003571428533177823,-0.002721088472753763,0.0007936508045531809,-0.0009523809421807528,1.7558992996581646e-18,-2.4665599424045226e-18,0.00015873015217948705,5.613739421508403e-20,2.282685033461921e-19,-1.2260801911505997e-19,-5.761175964642884e-20,5.305526109157463e-19,0.0005357142654247582,-0.00017857142665889114,-7.653061038581654e-05,-5.421010862427522e-19,5.613739421508403e-20,2.551020406826865e-05,3.8963515573697816e-20,-2.6531021663181354e-20,-2.202285662861181e-20,1.4568966692773966e-19,0.0014285714132711291,-0.0004761904710903764,1.1722935989999517e-18,-0.0007142857066355646,2.282685033461921e-19,3.8963515573697816e-20,0.0002380952355451882,-8.007956189641175e-20,-7.453889935837843e-20,9.75781955236954e-19,0.0002100840356433764,1.1540823906339842e-18,-9.696186316432431e-05,4.87890977618477e-19,-1.2260801911505997e-19,-2.6531021663181354e-20,-8.007956189641175e-20,6.925847173988586e-06,-1.2856430436798424e-20,-3.4267381822861265e-20,0.0007142857066355646,7.047314121155779e-19,-0.0001020408162730746,-0.0003571428533177823,-5.761175964642884e-20,-2.202285662861181e-20,-7.453889935837843e-20,-1.2856430436798424e-20,5.10204081365373e-05,1.7279472123987727e-19,0.0013605442363768816,-6.179952383167375e-18,-2.981555974335137e-19,-0.002721088472753763,5.305526109157463e-19,1.4568966692773966e-19,9.75781955236954e-19,-3.4267381822861265e-20,1.7279472123987727e-19,0.0006802721181884408,7.0,15.0,6.0,0.05013519152998924,-0.010834750719368458,-0.0056610144674777985,-0.01224489789456129,0.0006613756413571537,0.00044642857392318547,0.0010204081190750003,0.00017507003212813288,0.0005102040595375001,0.0008503401186317205,-0.010834750719368458,0.007050736807286739,0.00044642857392318547,0.0010204081190750003,-0.0007936508045531809,-0.00014880952949170023,-0.0003401360590942204,2.22769665127881e-19,3.9302328752599536e-19,-8.673617379884035e-19,-0.0056610144674777985,0.00044642857392318547,0.0015897980192676187,0.0005102040595375001,1.378969638130001e-18,-6.377550744218752e-05,-2.964615315390051e-19,-8.080155384959653e-05,-7.288629421964288e-05,3.3881317890172014e-19,-0.01224489789456129,0.0010204081190750003,0.0005102040595375001,0.0095748296007514,5.963111948670274e-19,-2.846030702774449e-19,-0.0004081632650922984,1.6940658945086007e-20,-0.0002040816325461492,-0.0012755101779475808,0.0006613756413571537,-0.0007936508045531809,1.378969638130001e-18,5.963111948670274e-19,0.00013227513409219682,-2.1424878716509275e-19,-1.2399942737825366e-19,-3.3775438771765226e-20,-6.731944145542606e-20,3.927491999375562e-20,0.00044642857392318547,-0.00014880952949170023,-6.377550744218752e-05,-2.846030702774449e-19,-2.1424878716509275e-19,2.1258503693388775e-05,1.6940658945086007e-20,-3.672637894986044e-21,-6.776263578034403e-21,4.404571325722362e-20,0.0010204081190750003,-0.0003401360590942204,-2.964615315390051e-19,-0.0004081632650922984,-1.2399942737825366e-19,1.6940658945086007e-20,0.0001360544265480712,9.925748105775087e-21,4.0657581468206416e-20,1.2536087619363645e-19,0.00017507003212813288,2.22769665127881e-19,-8.080155384959653e-05,1.6940658945086007e-20,-3.3775438771765226e-20,-3.672637894986044e-21,9.925748105775087e-21,5.77153923586593e-06,-2.7855791803863375e-21,-7.446303300215797e-21,0.0005102040595375001,3.9302328752599536e-19,-7.288629421964288e-05,-0.0002040816325461492,-6.731944145542606e-20,-6.776263578034403e-21,4.0657581468206416e-20,-2.7855791803863375e-21,2.9154518415452912e-05,-1.3044307387716225e-19,0.0008503401186317205,-8.673617379884035e-19,3.3881317890172014e-19,-0.0012755101779475808,3.927491999375562e-20,4.404571325722362e-20,1.2536087619363645e-19,-7.446303300215797e-21,-1.3044307387716225e-19,0.00025510202976875007,7.0,15.0,7.0,0.04423436149954796,-0.009396258741617203,-0.004906962625682354,-0.009396258741617203,0.0005668934318237007,0.00038265305920504034,0.0007653061184100807,0.00015006001922301948,0.00038265305920504034,0.0005668934318237007,-0.009396258741617203,0.006079931743443012,0.00038265305920504034,0.0007653061184100807,-0.0006802721181884408,-0.00012755101488437504,-0.00025510202976875007,-1.3552527156068805e-20,3.5236570605778894e-19,2.9408983928669308e-18,-0.004906962625682354,0.00038265305920504034,0.0013704932061955333,0.00038265305920504034,-9.317362419797304e-20,-5.4664724302710965e-05,1.8211208365967457e-19,-6.925847264938056e-05,-5.4664724302710965e-05,5.421010862427522e-19,-0.009396258741617203,0.0007653061184100807,0.00038265305920504034,0.006079931743443012,2.358139725155972e-18,4.336808689942018e-19,-0.00025510202976875007,2.439454888092385e-19,-0.00012755101488437504,-0.0006802721181884408,0.0005668934318237007,-0.0006802721181884408,-9.317362419797304e-20,2.358139725155972e-18,0.00011337868636474013,6.797231314092915e-20,-5.853683353018582e-21,4.0234064994579266e-21,-4.303894074769282e-20,-3.1450014350028456e-19,0.00038265305920504034,-0.00012755101488437504,-5.4664724302710965e-05,4.336808689942018e-19,6.797231314092915e-20,1.822157355491072e-05,-3.3881317890172014e-21,1.4902752285684047e-21,8.470329472543003e-22,-6.776263578034403e-20,0.0007653061184100807,-0.00025510202976875007,1.8211208365967457e-19,-0.00025510202976875007,-5.853683353018582e-21,-3.3881317890172014e-21,8.50340147735551e-05,-8.993831402712501e-21,-1.9481757786848908e-20,-1.2366681029912785e-19,0.00015006001922301948,-1.3552527156068805e-20,-6.925847264938056e-05,2.439454888092385e-19,4.0234064994579266e-21,1.4902752285684047e-21,-8.993831402712501e-21,4.947033630742226e-06,-6.4202802621910985e-21,-2.6902346594448102e-20,0.00038265305920504034,3.5236570605778894e-19,-5.4664724302710965e-05,-0.00012755101488437504,-4.303894074769282e-20,8.470329472543003e-22,-1.9481757786848908e-20,-6.4202802621910985e-21,1.822157355491072e-05,1.9481757786848908e-20,0.0005668934318237007,2.9408983928669308e-18,5.421010862427522e-19,-0.0006802721181884408,-3.1450014350028456e-19,-6.776263578034403e-20,-1.2366681029912785e-19,-2.6902346594448102e-20,1.9481757786848908e-20,0.00011337868636474013,7.0,15.0,8.0,0.039585523307323456,-0.008296131156384945,-0.004330794792622328,-0.0074404762126505375,0.0004960317746736109,0.0003348214377183467,0.0005952381179668009,0.00013130252773407847,0.00029761905898340046,0.00039682540227659047,-0.008296131156384945,0.005344741977751255,0.0003348214377183467,0.0005952381179668009,-0.0005952381179668009,-0.00011160714348079637,-0.00019841270113829523,-9.656175598699024e-20,-3.1170812458958252e-19,-3.6591823321385775e-19,-0.004330794792622328,0.0003348214377183467,0.0012044962495565414,0.00029761905898340046,-2.4818065354551e-19,-4.783163240063004e-05,-4.1843427594362437e-19,-6.0601163568207994e-05,-4.251700738677755e-05,-3.2526065174565133e-19,-0.0074404762126505375,0.0005952381179668009,0.00029761905898340046,0.004109977278858423,-1.8973538018496328e-19,-7.860465750519907e-19,-0.0001700680295471102,-1.2027867851011065e-19,-8.50340147735551e-05,-0.00039682540227659047,0.0004960317746736109,-0.0005952381179668009,-2.4818065354551e-19,-1.8973538018496328e-19,9.920635056914762e-05,4.573402766153556e-20,5.508127844330988e-20,4.235164736271502e-21,1.4727584068227264e-20,-1.3993566287750155e-20,0.0003348214377183467,-0.00011160714348079637,-4.783163240063004e-05,-7.860465750519907e-19,4.573402766153556e-20,1.594387686054688e-05,5.590417451878382e-20,3.103297113015003e-21,2.329340604949326e-20,5.675120746603812e-20,0.0005952381179668009,-0.00019841270113829523,-4.1843427594362437e-19,-0.0001700680295471102,5.508127844330988e-20,5.590417451878382e-20,5.668934318237007e-05,1.2573603329758479e-20,1.2705494208814505e-20,1.4399560103323106e-20,0.00013130252773407847,-9.656175598699024e-20,-6.0601163568207994e-05,-1.2027867851011065e-19,4.235164736271502e-21,3.103297113015003e-21,1.2573603329758479e-20,4.328654540586285e-06,2.7705471518474252e-21,7.468342332102793e-21,0.00029761905898340046,-3.1170812458958252e-19,-4.251700738677755e-05,-8.50340147735551e-05,1.4727584068227264e-20,2.329340604949326e-20,1.2705494208814505e-20,2.7705471518474252e-21,1.2147716006438714e-05,8.893845946170154e-21,0.00039682540227659047,-3.6591823321385775e-19,-3.2526065174565133e-19,-0.00039682540227659047,-1.3993566287750155e-20,5.675120746603812e-20,1.4399560103323106e-20,7.468342332102793e-21,8.893845946170154e-21,5.668934318237007e-05,7.0,15.0,9.0,0.03582606092095375,-0.007427248638123274,-0.003876050468534231,-0.006038961000740528,0.00044091709423810244,0.00029761905898340046,0.0004761904710903764,0.00011671335232676938,0.0002380952355451882,0.00028860027668997645,-0.007427248638123274,0.004768518730998039,0.00029761905898340046,0.0004761904710903764,-0.0005291005363687873,-9.920635056914762e-05,-0.00015873015217948705,3.4728350837426314e-19,1.8295911660692887e-19,-7.209240283682775e-20,-0.003876050468534231,0.00029761905898340046,0.0010744426399469376,0.0002380952355451882,1.0338214965070435e-18,-4.251700738677755e-05,-2.2657612735582555e-20,-5.3867701353738084e-05,-3.40136066370178e-05,-5.188491943202515e-19,-0.006038961000740528,0.0004761904710903764,0.0002380952355451882,0.0029115132056176662,2.290936418566079e-19,-1.3945764941867393e-19,-0.0001190476177725941,-2.829090043829363e-19,-5.952380888629705e-05,-0.00024737167404964566,0.00044091709423810244,-0.0005291005363687873,1.0338214965070435e-18,2.290936418566079e-19,8.818342030281201e-05,-4.090957751817672e-20,-2.1801003494360085e-35,-5.183114041374698e-20,-3.272766266077623e-20,-4.992331854781948e-34,0.00029761905898340046,-9.920635056914762e-05,-4.251700738677755e-05,-1.3945764941867393e-19,-4.090957751817672e-20,1.4172335795592517e-05,7.55253784779204e-21,-5.082197683525802e-21,1.6940658945086007e-21,1.0298914806374473e-20,0.0004761904710903764,-0.00015873015217948705,-2.2657612735582555e-20,-0.0001190476177725941,-2.1801003494360085e-35,7.55253784779204e-21,3.968253804487176e-05,-3.009265538105056e-36,9.4039548065783e-37,5.488364398157622e-36,0.00011671335232676938,3.4728350837426314e-19,-5.3867701353738084e-05,-2.829090043829363e-19,-5.183114041374698e-20,-5.082197683525802e-21,-3.009265538105056e-36,3.84769282391062e-06,7.411538288475128e-21,2.5120386297507207e-20,0.0002380952355451882,1.8295911660692887e-19,-3.40136066370178e-05,-5.952380888629705e-05,-3.272766266077623e-20,1.6940658945086007e-21,9.4039548065783e-37,7.411538288475128e-21,8.50340165925445e-06,3.0633780955894685e-20,0.00028860027668997645,-7.209240283682775e-20,-5.188491943202515e-19,-0.00024737167404964566,-4.992331854781948e-34,1.0298914806374473e-20,5.488364398157622e-36,2.5120386297507207e-20,3.0633780955894685e-20,3.092145925620571e-05,7.0,15.0,10.0,0.032721810042858124,-0.006723484955728054,-0.00350792589597404,-0.004999999888241291,0.00039682540227659047,0.0002678571327123791,0.00038961038808338344,0.0001050420178216882,0.00019480519404169172,0.00021645022206939757,-0.006723484955728054,0.004304653499275446,0.0002678571327123791,0.00038961038808338344,-0.0004761904710903764,-8.928571332944557e-05,-0.0001298701245104894,-1.6093625997831706e-20,1.6940658945086007e-21,-5.135813452886159e-35,-0.00350792589597404,0.0002678571327123791,0.0009697812492959201,0.00019480519404169172,0.0,-3.826530519290827e-05,0.0,-4.848093158216216e-05,-2.7829313694383018e-05,-1.4523235237127147e-19,-0.004999999888241291,0.00038961038808338344,0.00019480519404169172,0.0021392495837062597,0.0,2.506455201005666e-21,-8.658008300699294e-05,-1.1350241493207625e-19,-4.329004150349647e-05,-0.00016233765927609056,0.00039682540227659047,-0.0004761904710903764,0.0,0.0,7.936507608974352e-05,0.0,0.0,0.0,0.0,-0.0,0.0002678571327123791,-8.928571332944557e-05,-3.826530519290827e-05,2.506455201005666e-21,0.0,1.2755102034134325e-05,0.0,2.117582368135751e-21,-4.235164736271502e-22,7.336876258770969e-36,0.00038961038808338344,-0.0001298701245104894,0.0,-8.658008300699294e-05,0.0,0.0,2.886002948798705e-05,0.0,0.0,-0.0,0.0001050420178216882,-1.6093625997831706e-20,-4.848093158216216e-05,-1.1350241493207625e-19,0.0,2.117582368135751e-21,0.0,3.462923586994293e-06,4.658681209898652e-21,8.85427052373832e-21,0.00019480519404169172,1.6940658945086007e-21,-2.7829313694383018e-05,-4.329004150349647e-05,0.0,-4.235164736271502e-22,0.0,4.658681209898652e-21,6.184292033140082e-06,4.727234610957551e-21,0.00021645022206939757,-5.135813452886159e-35,-1.4523235237127147e-19,-0.00016233765927609056,-0.0,7.336876258770969e-36,-0.0,8.85427052373832e-21,4.727234610957551e-21,1.803751729312353e-05,7.0,15.0,11.0,0.030114533379673958,-0.006141774822026491,-0.0032037815544754267,-0.004208291880786419,0.0003607503604143858,0.00024350649619009346,0.0003246753185521811,9.549274545861408e-05,0.00016233765927609056,0.00016650016186758876,-0.006141774822026491,0.003923160023987293,0.00024350649619009346,0.0003246753185521811,-0.00043290044413879514,-8.116882963804528e-05,-0.00010822511103469878,2.0117032497289633e-20,3.3881317890172014e-21,3.639364087499085e-35,-0.0032037815544754267,0.00024350649619009346,0.000883727625478059,0.00016233765927609056,0.0,-3.478664075373672e-05,0.0,-4.407357482705265e-05,-2.319109444215428e-05,-8.008715515594104e-20,-0.004208291880786419,0.0003246753185521811,0.00016233765927609056,0.0016186591237783432,0.0,1.3552844416992224e-21,-6.49350622552447e-05,-8.470329472543003e-20,-3.246753112762235e-05,-0.00011100011033704504,0.0003607503604143858,-0.00043290044413879514,0.0,0.0,7.215006917249411e-05,0.0,0.0,0.0,0.0,-0.0,0.00024350649619009346,-8.116882963804528e-05,-3.478664075373672e-05,1.3552844416992224e-21,0.0,1.159554722107714e-05,0.0,-2.541098841762901e-21,-2.117582368135751e-22,-5.199091553570121e-36,0.0003246753185521811,-0.00010822511103469878,0.0,-6.49350622552447e-05,0.0,0.0,2.1645020751748234e-05,0.0,0.0,-0.0,9.549274545861408e-05,2.0117032497289633e-20,-4.407357482705265e-05,-8.470329472543003e-20,0.0,-2.541098841762901e-21,0.0,3.1481124551646644e-06,2.752857078576476e-21,6.691486450976954e-21,0.00016233765927609056,3.3881317890172014e-21,-2.319109444215428e-05,-3.246753112762235e-05,0.0,-2.117582368135751e-22,0.0,2.752857078576476e-21,4.638218797481386e-06,-2.7187316373924372e-21,0.00016650016186758876,3.639364087499085e-35,-8.008715515594104e-20,-0.00011100011033704504,-0.0,-5.199091553570121e-36,-0.0,6.691486450976954e-21,-2.7187316373924372e-21,1.1100010851805564e-05,7.0,15.0,12.0,0.027893342077732086,-0.005652854219079018,-0.0029482466634362936,-0.0035910517908632755,0.0003306878206785768,0.00022321428696159273,0.00027472528745420277,8.753501606406644e-05,0.00013736264372710139,0.00013082155783195049,-0.005652854219079018,0.0036038614343851805,0.00022321428696159273,0.00027472528745420277,-0.00039682540227659047,-7.440476474585012e-05,-9.157509339274839e-05,-1.3552527156068805e-20,1.4399560103323106e-20,3.7269449679189215e-20,-0.0029482466634362936,0.00022321428696159273,0.0008117189281620085,0.00013736264372710139,0.0,-3.188775372109376e-05,1.2705494208814505e-20,-4.0400776924798265e-05,-1.9623234038590454e-05,-6.098637220230962e-20,-0.0035910517908632755,0.00027472528745420277,0.00013736264372710139,0.001254697679542005,-0.0,-3.850522469772978e-22,-4.995004928787239e-05,-7.494949759728297e-20,-2.4975024643936194e-05,-7.849293615436181e-05,0.0003306878206785768,-0.00039682540227659047,0.0,-0.0,6.613756704609841e-05,0.0,0.0,0.0,0.0,0.0,0.00022321428696159273,-7.440476474585012e-05,-3.188775372109376e-05,-3.850522469772978e-22,0.0,1.0629251846694387e-05,-1.1140685767401024e-23,2.117582368135751e-21,7.664546522717478e-24,-2.498403108419458e-23,0.00027472528745420277,-9.157509339274839e-05,1.2705494208814505e-20,-4.995004928787239e-05,0.0,-1.1140685767401024e-23,1.6650015822960995e-05,-5.293955920339377e-23,-2.4352197233561135e-21,-6.776263578034403e-21,8.753501606406644e-05,-1.3552527156068805e-20,-4.0400776924798265e-05,-7.494949759728297e-20,0.0,2.117582368135751e-21,-5.293955920339377e-23,2.885769617932965e-06,2.541098841762901e-21,5.135137242729196e-21,0.00013736264372710139,1.4399560103323106e-20,-1.9623234038590454e-05,-2.4975024643936194e-05,0.0,7.664546522717478e-24,-2.4352197233561135e-21,2.541098841762901e-21,3.5678606309375027e-06,-1.9058241313221758e-21,0.00013082155783195049,3.7269449679189215e-20,-6.098637220230962e-20,-7.849293615436181e-05,0.0,-2.498403108419458e-23,-6.776263578034403e-21,5.135137242729196e-21,-1.9058241313221758e-21,7.1357212618750054e-06,7.0,15.0,13.0,0.025978147983551025,-0.005236133001744747,-0.002730515319854021,-0.0031004708725959063,0.0003052503161597997,0.00020604395831469446,0.00023547880118712783,8.080155384959653e-05,0.00011773940059356391,0.00010465725063113496,-0.005236133001744747,0.003332679159939289,0.00020604395831469446,0.00023547880118712783,-0.00036630037357099354,-6.868132186355069e-05,-7.849293615436181e-05,-1.6093625997831706e-20,-8.470329472543003e-21,-2.710505431213761e-20,-0.002730515319854021,0.00020604395831469446,0.0007505728281103075,0.00011773940059356391,0.0,-2.943485014839098e-05,-7.623296525288703e-21,-3.729302261490375e-05,-1.681991489022039e-05,-5.929230630780102e-20,-0.0031004708725959063,0.00023547880118712783,0.00011773940059356391,0.0009924599435180426,-0.0,-1.5361555807644505e-21,-3.924646807718091e-05,-7.524858801220625e-20,-1.9623234038590454e-05,-5.7085770095000044e-05,0.0003052503161597997,-0.00036630037357099354,0.0,-0.0,6.105006468715146e-05,0.0,0.0,0.0,0.0,0.0,0.00020604395831469446,-6.868132186355069e-05,-2.943485014839098e-05,-1.5361555807644505e-21,0.0,9.811617019295227e-06,-1.8662623593394458e-23,2.329340604949326e-21,3.480107215036807e-22,-4.4901328481012194e-23,0.00023547880118712783,-7.849293615436181e-05,-7.623296525288703e-21,-3.924646807718091e-05,0.0,-1.8662623593394458e-23,1.308215632889187e-05,-2.6469779601696886e-23,1.376428539288238e-21,4.658681209898652e-21,8.080155384959653e-05,-1.6093625997831706e-20,-3.729302261490375e-05,-7.524858801220625e-20,0.0,2.329340604949326e-21,-2.6469779601696886e-23,2.663787427081843e-06,3.8116482626443515e-21,4.0234064994579266e-21,0.00011773940059356391,-8.470329472543003e-21,-1.681991489022039e-05,-1.9623234038590454e-05,0.0,3.480107215036807e-22,1.376428539288238e-21,3.8116482626443515e-21,2.803319148370065e-06,4.235164736271502e-22,0.00010465725063113496,-2.710505431213761e-20,-5.929230630780102e-20,-5.7085770095000044e-05,0.0,-4.4901328481012194e-23,4.658681209898652e-21,4.0234064994579266e-21,4.235164736271502e-22,4.75714750791667e-06,7.0,15.0,14.0,0.024309640750288963,-0.004876700695604086,-0.002542767208069563,-0.00270408159121871,0.00028344671591185033,0.00019132652960252017,0.0002040816325461492,7.503000961150974e-05,0.0001020408162730746,8.50340147735551e-05,-0.004876700695604086,0.003099489724263549,0.00019132652960252017,0.0002040816325461492,-0.0003401360590942204,-6.377550744218752e-05,-6.80272132740356e-05,-1.503483481376383e-19,-1.4992483166401116e-19,-1.9142944607947188e-19,-0.002542767208069563,0.00019132652960252017,0.0006980017060413957,0.0001020408162730746,-2.345525686103633e-19,-2.7332362151355483e-05,-1.5246593050577406e-19,-3.462923632469028e-05,-1.4577259207726456e-05,-3.3881317890172014e-20,-0.00270408159121871,0.0002040816325461492,0.0001020408162730746,0.0007986656273715198,-2.8912901484842295e-19,-1.3747905924284123e-19,-3.139717591693625e-05,4.947255465244832e-22,-1.5698587958468124e-05,-4.251700738677755e-05,0.00028344671591185033,-0.0003401360590942204,-2.345525686103633e-19,-2.8912901484842295e-19,5.668934318237007e-05,-3.764341851880058e-21,-4.324167027580863e-21,8.5435947334779e-21,1.4026141371130832e-20,1.2587562810388879e-20,0.00019132652960252017,-6.377550744218752e-05,-2.7332362151355483e-05,-1.3747905924284123e-19,-3.764341851880058e-21,9.11078677745536e-06,4.610488649591418e-21,7.835054762102278e-21,3.3375657292618876e-21,7.597902726718179e-21,0.0002040816325461492,-6.80272132740356e-05,-1.5246593050577406e-19,-3.139717591693625e-05,-4.324167027580863e-21,4.610488649591418e-21,1.0465724699315615e-05,6.829203137237796e-21,6.564505341220828e-21,9.529120656610879e-21,7.503000961150974e-05,-1.503483481376383e-19,-3.462923632469028e-05,4.947255465244832e-22,8.5435947334779e-21,7.835054762102278e-21,6.829203137237796e-21,2.473516815371113e-06,-4.235164736271502e-22,-1.164670302474663e-21,0.0001020408162730746,-1.4992483166401116e-19,-1.4577259207726456e-05,-1.5698587958468124e-05,1.4026141371130832e-20,3.3375657292618876e-21,6.564505341220828e-21,-4.235164736271502e-22,2.2426552277465817e-06,4.870439446712227e-21,8.50340147735551e-05,-1.9142944607947188e-19,-3.3881317890172014e-20,-4.251700738677755e-05,1.2587562810388879e-20,7.597902726718179e-21,9.529120656610879e-21,-1.164670302474663e-21,4.870439446712227e-21,3.2705390822229674e-06,7.0,15.0,15.0,0.02284294180572033,-0.004563492257148027,-0.0023792015854269266,-0.0023792015854269266,0.00026455026818439364,0.00017857142665889114,0.00017857142665889114,7.002801430644467e-05,8.928571332944557e-05,7.002801430644467e-05,-0.004563492257148027,0.0028968253172934055,0.00017857142665889114,0.00017857142665889114,-0.0003174603043589741,-5.952380888629705e-05,-5.952380888629705e-05,1.3129010682441655e-20,-1.6940658945086007e-21,1.1858461261560205e-20,-0.0023792015854269266,0.00017857142665889114,0.00065231864573434,8.928571332944557e-05,0.0,-2.551020406826865e-05,-1.2705494208814505e-21,-3.2320622267434373e-05,-1.2755102034134325e-05,-3.134021904840911e-20,-0.0023792015854269266,0.00017857142665889114,8.928571332944557e-05,0.00065231864573434,-0.0,-9.29774838419828e-22,-2.551020406826865e-05,-5.1439657801810655e-20,-1.2755102034134325e-05,-3.2320622267434373e-05,0.00026455026818439364,-0.0003174603043589741,0.0,-0.0,5.291005436447449e-05,0.0,0.0,0.0,0.0,0.0,0.00017857142665889114,-5.952380888629705e-05,-2.551020406826865e-05,-9.29774838419828e-22,0.0,8.50340165925445e-06,3.6360675403538976e-23,-1.4823076576950256e-21,7.111989374971964e-23,-2.1140572958491164e-23,0.00017857142665889114,-5.952380888629705e-05,-1.2705494208814505e-21,-2.551020406826865e-05,0.0,3.6360675403538976e-23,8.50340165925445e-06,0.0,1.5881867761018131e-22,-1.6940658945086007e-21,7.002801430644467e-05,1.3129010682441655e-20,-3.2320622267434373e-05,-5.1439657801810655e-20,0.0,-1.4823076576950256e-21,0.0,2.308615648871637e-06,1.9058241313221758e-21,2.6469779601696886e-21,8.928571332944557e-05,-1.6940658945086007e-21,-1.2755102034134325e-05,-1.2755102034134325e-05,0.0,7.111989374971964e-23,1.5881867761018131e-22,1.9058241313221758e-21,1.822157400965807e-06,-7.411538288475128e-22,7.002801430644467e-05,1.1858461261560205e-20,-3.134021904840911e-20,-3.2320622267434373e-05,0.0,-2.1140572958491164e-23,-1.6940658945086007e-21,2.6469779601696886e-21,-7.411538288475128e-22,2.308615648871637e-06,7.0,15.0,16.0,0.021543461829423904,-0.004288121592253447,-0.002235425403341651,-0.0021095939446240664,0.00024801588733680546,0.00016741071885917336,0.00015756303037051111,6.565126386703923e-05,7.878151518525556e-05,5.835667616338469e-05,-0.004288121592253447,0.0027190563268959522,0.00016741071885917336,0.00015756303037051111,-0.00029761905898340046,-5.5803571740398183e-05,-5.25210089108441e-05,-1.3806637040245096e-19,-1.351017550870609e-19,-1.3721933745519665e-19,-0.002235425403341651,0.00016741071885917336,0.0006122521008364856,7.878151518525556e-05,-2.374701380284144e-19,-2.391581620031502e-05,-1.2790197503539935e-19,-3.0300581784103997e-05,-1.1254502169322222e-05,-1.7364175418713157e-20,-0.0021095939446240664,0.00015756303037051111,7.878151518525556e-05,0.0005397158674895763,-2.581857132470686e-19,-1.4356977103882817e-19,-2.100840356433764e-05,-3.768014081435396e-21,-1.050420178216882e-05,-2.501000381016638e-05,0.00024801588733680546,-0.00029761905898340046,-2.374701380284144e-19,-2.581857132470686e-19,4.960317528457381e-05,1.9173555460490478e-20,2.021167682276733e-20,7.101863354444155e-21,8.218937652160774e-21,8.021486247211385e-21,0.00016741071885917336,-5.5803571740398183e-05,-2.391581620031502e-05,-1.4356977103882817e-19,1.9173555460490478e-20,7.97193843027344e-06,8.738347300120122e-21,8.046812998915853e-21,5.864716197555935e-21,4.4428278635974424e-21,0.00015756303037051111,-5.25210089108441e-05,-1.2790197503539935e-19,-2.100840356433764e-05,2.021167682276733e-20,8.738347300120122e-21,7.002801339694997e-06,4.129285617864714e-21,4.711620769102046e-21,6.776263578034403e-21,6.565126386703923e-05,-1.3806637040245096e-19,-3.0300581784103997e-05,-3.768014081435396e-21,7.101863354444155e-21,8.046812998915853e-21,4.129285617864714e-21,2.1643272702931426e-06,-4.235164736271502e-22,-5.823351512373315e-22,7.878151518525556e-05,-1.351017550870609e-19,-1.1254502169322222e-05,-1.050420178216882e-05,8.218937652160774e-21,5.864716197555935e-21,4.711620769102046e-21,-4.235164736271502e-22,1.5006002058726153e-06,1.2705494208814505e-21,5.835667616338469e-05,-1.3721933745519665e-19,-1.7364175418713157e-20,-2.501000381016638e-05,8.021486247211385e-21,4.4428278635974424e-21,6.776263578034403e-21,-5.823351512373315e-22,1.2705494208814505e-21,1.6673335494488128e-06,7.0,16.0,3.0,0.07950367778539658,-0.01892944611608982,-0.009366246871650219,-0.03525472804903984,0.0012400794075801969,0.0007878151373006403,0.0033482143189758062,0.0002917833917308599,0.0015756302746012807,0.004464285913854837,-0.01892944611608982,0.012758227996528149,0.0007878151373006403,0.0033482143189758062,-0.0014880952658131719,-0.00026260505546815693,-0.0011160714784637094,-1.3213438939613411e-18,-2.710505431213761e-18,-3.209238430557093e-17,-0.009366246871650219,0.0007878151373006403,0.002541016321629286,0.0015756302746012807,-3.157791560128082e-18,-0.0001050420178216882,-3.0086610286472748e-18,-0.0001250500208698213,-0.0002100840356433764,-5.5294310796760726e-18,-0.03525472804903984,0.0033482143189758062,0.0015756302746012807,0.07989758253097534,-7.192934304912064e-18,-3.17227776740057e-18,-0.0033482143189758062,-4.274937389580641e-19,-0.0015756302746012807,-0.02678571455180645,0.0012400794075801969,-0.0014880952658131719,-3.157791560128082e-18,-7.192934304912064e-18,0.00024801588733680546,1.2197274440461925e-19,1.2176234326099814e-19,1.6263032587282567e-19,2.5373773044882367e-19,2.3132895787530407e-18,0.0007878151373006403,-0.00026260505546815693,-0.0001050420178216882,-3.17227776740057e-18,1.2197274440461925e-19,3.501400715322234e-05,1.4943985825581073e-19,2.371692252312041e-20,9.870516189987413e-20,9.399580036782012e-19,0.0033482143189758062,-0.0011160714784637094,-3.0086610286472748e-18,-0.0033482143189758062,1.2176234326099814e-19,1.4943985825581073e-19,0.0011160714784637094,1.310623995114172e-19,4.607859233063394e-19,1.0408340855860843e-17,0.0002917833917308599,-1.3213438939613411e-18,-0.0001250500208698213,-4.274937389580641e-19,1.6263032587282567e-19,2.371692252312041e-20,1.310623995114172e-19,8.336667633557227e-06,1.1386339041216328e-21,1.3484968956684384e-20,0.0015756302746012807,-2.710505431213761e-18,-0.0002100840356433764,-0.0015756302746012807,2.5373773044882367e-19,9.870516189987413e-20,4.607859233063394e-19,1.1386339041216328e-21,0.0002100840356433764,2.4936649967166602e-18,0.004464285913854837,-3.209238430557093e-17,-5.5294310796760726e-18,-0.02678571455180645,2.3132895787530407e-18,9.399580036782012e-19,1.0408340855860843e-17,1.3484968956684384e-20,2.4936649967166602e-18,0.013392857275903225,7.0,16.0,4.0,0.06469275057315826,-0.014699317514896393,-0.007261029444634914,-0.022492121905088425,0.0009300595265813172,0.0005908613675273955,0.002008928684517741,0.0002188375365221873,0.0009453781531192362,0.0022321429569274187,-0.014699317514896393,0.009736081585288048,0.0005908613675273955,0.002008928684517741,-0.0011160714784637094,-0.00019695378432516009,-0.0006696428754366934,-7.02013917008188e-19,6.640738306473715e-19,1.0733601507606494e-17,-0.007261029444634914,0.0005908613675273955,0.001937274937517941,0.0009453781531192362,-9.861823038737363e-19,-7.878151518525556e-05,-7.318364664277155e-19,-9.378751565236598e-05,-0.00012605042138602585,2.0599841277224584e-18,-0.022492121905088425,0.002008928684517741,0.0009453781531192362,0.030619747936725616,6.799930456130464e-18,6.162808858177061e-19,-0.0013392857508733869,1.1939275514936928e-19,-0.0006302521214820445,-0.0066964286379516125,0.0009300595265813172,-0.0011160714784637094,-9.861823038737363e-19,6.799930456130464e-18,0.00018601190822664648,3.3881317890172014e-21,-4.002984961097641e-19,7.453889935837843e-20,-1.137530118835886e-19,-1.4162879948629074e-18,0.0005908613675273955,-0.00019695378432516009,-7.878151518525556e-05,6.162808858177061e-19,3.3881317890172014e-21,2.626050445542205e-05,3.4325649588432236e-20,2.0752307207730358e-20,1.3969994871466662e-20,-2.4552703229104574e-19,0.002008928684517741,-0.0006696428754366934,-7.318364664277155e-19,-0.0013392857508733869,-4.002984961097641e-19,3.4325649588432236e-20,0.00044642857392318547,4.7630794811385134e-20,-4.404571325722362e-20,2.168404344971009e-19,0.0002188375365221873,-7.02013917008188e-19,-9.378751565236598e-05,1.1939275514936928e-19,7.453889935837843e-20,2.0752307207730358e-20,4.7630794811385134e-20,6.252500952541595e-06,-3.768020139887148e-21,-7.161934599932691e-20,0.0009453781531192362,6.640738306473715e-19,-0.00012605042138602585,-0.0006302521214820445,-1.137530118835886e-19,1.3969994871466662e-20,-4.404571325722362e-20,-3.768020139887148e-21,8.403361425735056e-05,2.710505431213761e-20,0.0022321429569274187,1.0733601507606494e-17,2.0599841277224584e-18,-0.0066964286379516125,-1.4162879948629074e-18,-2.4552703229104574e-19,2.168404344971009e-19,-7.161934599932691e-20,2.710505431213761e-20,0.0022321429569274187,7.0,16.0,5.0,0.05462560057640076,-0.012027311138808727,-0.005934874061495066,-0.015632502734661102,0.0007440476329065859,0.0004726890765596181,0.0013392857508733869,0.00017507003212813288,0.0006302521214820445,0.0012755101779475808,-0.012027311138808727,0.007878151722252369,0.0004726890765596181,0.0013392857508733869,-0.0008928571478463709,-0.00015756303037051111,-0.00044642857392318547,3.5829493668856904e-19,5.692061405548898e-19,3.74049749507499e-18,-0.005934874061495066,0.0004726890765596181,0.0015666265971958637,0.0006302521214820445,5.742883382384156e-19,-6.302521069301292e-05,6.835555884342204e-19,-7.503000961150974e-05,-8.403361425735056e-05,6.2341624917916505e-19,-0.015632502734661102,0.0013392857508733869,0.0006302521214820445,0.01546931266784668,1.4907779871675686e-18,4.0657581468206416e-19,-0.0006696428754366934,1.3552527156068805e-19,-0.00031512606074102223,-0.0025510203558951616,0.0007440476329065859,-0.0008928571478463709,5.742883382384156e-19,1.4907779871675686e-18,0.00014880952949170023,-1.0262771698808594e-20,2.727000575850805e-20,-3.186961464044305e-20,-3.0382343899072706e-20,-3.3587490411896107e-19,0.0004726890765596181,-0.00015756303037051111,-6.302521069301292e-05,4.0657581468206416e-19,-1.0262771698808594e-20,2.100840356433764e-05,-1.0164395367051604e-20,-1.093539797599135e-20,-1.7787691892340307e-20,-5.421010862427522e-20,0.0013392857508733869,-0.00044642857392318547,6.835555884342204e-19,-0.0006696428754366934,2.727000575850805e-20,-1.0164395367051604e-20,0.00022321428696159273,-2.7713238857517224e-20,-1.1858461261560205e-19,-5.353248226647178e-19,0.00017507003212813288,3.5829493668856904e-19,-7.503000961150974e-05,1.3552527156068805e-19,-3.186961464044305e-20,-1.093539797599135e-20,-2.7713238857517224e-20,5.002000762033276e-06,-4.051934537068203e-21,-2.6509898669199274e-21,0.0006302521214820445,5.692061405548898e-19,-8.403361425735056e-05,-0.00031512606074102223,-3.0382343899072706e-20,-1.7787691892340307e-20,-1.1858461261560205e-19,-4.051934537068203e-21,4.201680712867528e-05,-2.0667603913004928e-19,0.0012755101779475808,3.74049749507499e-18,6.2341624917916505e-19,-0.0025510203558951616,-3.3587490411896107e-19,-5.421010862427522e-20,-5.353248226647178e-19,-2.6509898669199274e-21,-2.0667603913004928e-19,0.0006377550889737904,7.0,16.0,6.0,0.047306422144174576,-0.010182198137044907,-0.0050207581371068954,-0.011507728137075901,0.0006200397037900984,0.00039390756865032017,0.0009566326625645161,0.00014589169586542994,0.00045018005766905844,0.0007971939048729837,-0.010182198137044907,0.006618272513151169,0.00039390756865032017,0.0009566326625645161,-0.0007440476329065859,-0.00013130252773407847,-0.0003188775444868952,-6.295572380467587e-19,-2.168404344971009e-19,-3.5236570605778894e-19,-0.0050207581371068954,0.00039390756865032017,0.0013155261985957623,0.00045018005766905844,-1.5695520512622185e-18,-5.25210089108441e-05,-8.809142651444724e-20,-6.252501043491066e-05,-6.0024009144399315e-05,3.7947076036992655e-19,-0.011507728137075901,0.0009566326625645161,0.00045018005766905844,0.008987657725811005,-5.421010862427522e-20,-1.7618285302889447e-19,-0.00038265305920504034,9.147955830346444e-20,-0.00018007203470915556,-0.001195790828205645,0.0006200397037900984,-0.0007440476329065859,-1.5695520512622185e-18,-5.421010862427522e-20,0.00012400794366840273,6.449379248294492e-20,-2.0588696052446198e-19,7.856230585783636e-20,4.5052123875236426e-20,6.321252202584296e-20,0.00039390756865032017,-0.00013130252773407847,-5.25210089108441e-05,-1.7618285302889447e-19,6.449379248294492e-20,1.750700357661117e-05,-3.3881317890172014e-21,1.2467800143946985e-20,1.3129010682441655e-20,1.9481757786848908e-20,0.0009566326625645161,-0.0003188775444868952,-8.809142651444724e-20,-0.00038265305920504034,-2.0588696052446198e-19,-3.3881317890172014e-21,0.00012755101488437504,1.6135684577688333e-20,-4.573977915173222e-20,-4.404571325722362e-20,0.00014589169586542994,-6.295572380467587e-19,-6.252501043491066e-05,9.147955830346444e-20,7.856230585783636e-20,1.2467800143946985e-20,1.6135684577688333e-20,4.168333816778613e-06,-5.6794087571952334e-21,-1.7296370842290817e-20,0.00045018005766905844,-2.168404344971009e-19,-6.0024009144399315e-05,-0.00018007203470915556,4.5052123875236426e-20,1.3129010682441655e-20,-4.573977915173222e-20,-5.6794087571952334e-21,2.4009603293961845e-05,-5.929230630780102e-20,0.0007971939048729837,-3.5236570605778894e-19,3.7947076036992655e-19,-0.001195790828205645,6.321252202584296e-20,1.9481757786848908e-20,-4.404571325722362e-20,-1.7296370842290817e-20,-5.929230630780102e-20,0.00023915816564112902,7.0,16.0,7.0,0.04173387959599495,-0.008830094709992409,-0.004351740702986717,-0.008830094709992409,0.0005314626032486558,0.00033763505052775145,0.000717474496923387,0.0001250500208698213,0.00033763505052775145,0.0005314626032486558,-0.008830094709992409,0.005706970114260912,0.00033763505052775145,0.000717474496923387,-0.0006377550889737904,-0.00011254501441726461,-0.00023915816564112902,1.1858461261560205e-20,-8.131516293641283e-19,-2.72405795836983e-18,-0.004351740702986717,0.00033763505052775145,0.0011340250493958592,0.00033763505052775145,-4.163166935754886e-19,-4.501800867728889e-05,-4.836558128822055e-19,-5.3592866606777534e-05,-4.501800867728889e-05,-5.014435047745458e-19,-0.008830094709992409,0.000717474496923387,0.00033763505052775145,0.005706970114260912,-3.1170812458958252e-18,-4.607859233063394e-19,-0.00023915816564112902,-1.1180834903756764e-19,-0.00011254501441726461,-0.0006377550889737904,0.0005314626032486558,-0.0006377550889737904,-4.163166935754886e-19,-3.1170812458958252e-18,0.00010629251482896507,3.2278506819334204e-20,2.6055788629811166e-19,-1.0587911840678754e-21,8.614288625930494e-20,2.5770706001573594e-19,0.00033763505052775145,-0.00011254501441726461,-4.501800867728889e-05,-4.607859233063394e-19,3.2278506819334204e-20,1.5006002286099829e-05,3.9810548520952116e-20,-2.5223327874607794e-21,7.199780051661553e-21,4.489274620447792e-20,0.000717474496923387,-0.00023915816564112902,-4.836558128822055e-19,-0.00023915816564112902,2.6055788629811166e-19,3.9810548520952116e-20,7.97193861217238e-05,5.509917914875341e-21,8.046812998915853e-20,2.727446090158847e-19,0.0001250500208698213,1.1858461261560205e-20,-5.3592866606777534e-05,-1.1180834903756764e-19,-1.0587911840678754e-21,-2.5223327874607794e-21,5.509917914875341e-21,3.5728576222027186e-06,2.0176316467167823e-21,1.2184813093780784e-20,0.00033763505052775145,-8.131516293641283e-19,-4.501800867728889e-05,-0.00011254501441726461,8.614288625930494e-20,7.199780051661553e-21,8.046812998915853e-20,2.0176316467167823e-21,1.5006002286099829e-05,3.7269449679189215e-20,0.0005314626032486558,-2.72405795836983e-18,-5.014435047745458e-19,-0.0006377550889737904,2.5770706001573594e-19,4.489274620447792e-20,2.727446090158847e-19,1.2184813093780784e-20,3.7269449679189215e-20,0.00010629251482896507,7.0,16.0,8.0,0.03734462708234787,-0.007796087302267551,-0.0038405987434089184,-0.006991859059780836,0.0004650297632906586,0.00029543068376369774,0.0005580357392318547,0.00010941876826109365,0.00026260505546815693,0.00037202381645329297,-0.007796087302267551,0.005016850307583809,0.00029543068376369774,0.0005580357392318547,-0.0005580357392318547,-9.847689216258004e-05,-0.00018601190822664648,-3.5575383784680614e-19,-6.098637220230962e-20,2.710505431213761e-19,-0.0038405987434089184,0.00029543068376369774,0.0009966486832126975,0.00026260505546815693,-5.404070203482436e-19,-3.939075759262778e-05,-3.3034284942917713e-19,-4.689375782618299e-05,-3.501400715322234e-05,-1.0842021724855044e-19,-0.006991859059780836,0.0005580357392318547,0.00026260505546815693,0.003857793053612113,1.1655173354219173e-18,-1.9651164376299768e-19,-0.0001594387722434476,-3.3881317890172014e-21,-7.503000961150974e-05,-0.00037202381645329297,0.0004650297632906586,-0.0005580357392318547,-5.404070203482436e-19,1.1655173354219173e-18,9.300595411332324e-05,2.422434168726879e-21,-1.2261368013237713e-19,3.631653761352813e-20,-1.2380735345507944e-20,-8.71876670717477e-20,0.00029543068376369774,-9.847689216258004e-05,-3.939075759262778e-05,-1.9651164376299768e-19,2.422434168726879e-21,1.3130252227711026e-05,1.2705494208814505e-20,1.0099559431987792e-20,1.0164395367051604e-20,1.1011428314305904e-20,0.0005580357392318547,-0.00018601190822664648,-3.3034284942917713e-19,-0.0001594387722434476,-1.2261368013237713e-19,1.2705494208814505e-20,5.3146257414482534e-05,1.3230263567090541e-20,2.286988957586611e-20,6.945670167485263e-20,0.00010941876826109365,-3.5575383784680614e-19,-4.689375782618299e-05,-3.3881317890172014e-21,3.631653761352813e-20,1.0099559431987792e-20,1.3230263567090541e-20,3.1262504762707977e-06,-1.565346513970602e-21,-3.011593560017773e-21,0.00026260505546815693,-6.098637220230962e-20,-3.501400715322234e-05,-7.503000961150974e-05,-1.2380735345507944e-20,1.0164395367051604e-20,2.286988957586611e-20,-1.565346513970602e-21,1.0004001524066553e-05,3.8963515573697816e-20,0.00037202381645329297,2.710505431213761e-19,-1.0842021724855044e-19,-0.00037202381645329297,-8.71876670717477e-20,1.1011428314305904e-20,6.945670167485263e-20,-3.011593560017773e-21,3.8963515573697816e-20,5.3146257414482534e-05,7.0,16.0,9.0,0.03379567712545395,-0.006979458499699831,-0.00343720824457705,-0.005674656014889479,0.00041335978312417865,0.00026260505546815693,0.00044642857392318547,9.726112330099568e-05,0.0002100840356433764,0.00027056277031078935,-0.006979458499699831,0.004475957248359919,0.00026260505546815693,0.00044642857392318547,-0.0004960317746736109,-8.753501606406644e-05,-0.00014880952949170023,1.8825307252726825e-19,2.507217523872729e-19,1.0164395367051604e-19,-0.00343720824457705,0.00026260505546815693,0.000889022252522409,0.0002100840356433764,6.560270176484556e-19,-3.501400715322234e-05,7.369186641112413e-20,-4.1683339077280834e-05,-2.801120535877999e-05,-2.270048298641525e-19,-0.005674656014889479,0.00044642857392318547,0.0002100840356433764,0.0027328261639922857,9.75781955236954e-19,1.6940658945086007e-19,-0.00011160714348079637,-6.776263578034403e-21,-5.25210089108441e-05,-0.00023191094805952162,0.00041335978312417865,-0.0004960317746736109,6.560270176484556e-19,9.75781955236954e-19,8.26719551696442e-05,-6.143368304324475e-20,-6.61159647499953e-20,-2.0540548970916783e-20,-3.5299525512742715e-20,-5.863363789566153e-20,0.00026260505546815693,-8.753501606406644e-05,-3.501400715322234e-05,1.6940658945086007e-19,-6.143368304324475e-20,1.1671335414575879e-05,-2.329340604949326e-20,-4.857332188294956e-21,-8.470329472543003e-21,-4.658681209898652e-21,0.00044642857392318547,-0.00014880952949170023,7.369186641112413e-20,-0.00011160714348079637,-6.61159647499953e-20,-2.329340604949326e-20,3.720238237292506e-05,-3.539381844801879e-21,8.893845946170154e-21,7.580944877925988e-20,9.726112330099568e-05,1.8825307252726825e-19,-4.1683339077280834e-05,-6.776263578034403e-21,-2.0540548970916783e-20,-4.857332188294956e-21,-3.539381844801879e-21,2.7788894385594176e-06,-1.3737856406855814e-21,3.3606292453401636e-21,0.0002100840356433764,2.507217523872729e-19,-2.801120535877999e-05,-5.25210089108441e-05,-3.5299525512742715e-20,-8.470329472543003e-21,8.893845946170154e-21,-1.3737856406855814e-21,7.002801339694997e-06,3.9810548520952116e-20,0.00027056277031078935,1.0164395367051604e-19,-2.270048298641525e-19,-0.00023191094805952162,-5.863363789566153e-20,-4.658681209898652e-21,7.580944877925988e-20,3.3606292453401636e-21,3.9810548520952116e-20,2.8988868507440202e-05,7.0,16.0,10.0,0.030865641310811043,-0.006318038795143366,-0.003110676072537899,-0.0046982429921627045,0.00037202381645329297,0.00023634453827980906,0.00036525973700918257,8.753501606406644e-05,0.00017188693163916469,0.000202922077733092,-0.006318038795143366,0.004040536470711231,0.00023634453827980906,0.00036525973700918257,-0.00044642857392318547,-7.878151518525556e-05,-0.00012175324809504673,8.470329472543003e-22,8.470329472543003e-22,-0.0,-0.003110676072537899,0.00023634453827980906,0.0008024118724279106,0.00017188693163916469,0.0,-3.151260534650646e-05,0.0,-3.751500480575487e-05,-2.2918258764548227e-05,-0.0,-0.0046982429921627045,0.00036525973700918257,0.00017188693163916469,0.0020079337991774082,0.0,-1.1888652344176432e-21,-8.116882963804528e-05,-1.6940658945086007e-21,-3.819709672825411e-05,-0.0001521915546618402,0.00037202381645329297,-0.00044642857392318547,0.0,0.0,7.440476474585012e-05,0.0,0.0,0.0,0.0,-0.0,0.00023634453827980906,-7.878151518525556e-05,-3.151260534650646e-05,-1.1888652344176432e-21,0.0,1.050420178216882e-05,0.0,0.0,0.0,-0.0,0.00036525973700918257,-0.00012175324809504673,0.0,-8.116882963804528e-05,0.0,0.0,2.7056277758674696e-05,0.0,0.0,-0.0,8.753501606406644e-05,8.470329472543003e-22,-3.751500480575487e-05,-1.6940658945086007e-21,0.0,0.0,0.0,2.501000381016638e-06,0.0,-0.0,0.00017188693163916469,8.470329472543003e-22,-2.2918258764548227e-05,-3.819709672825411e-05,0.0,0.0,0.0,0.0,5.092946139484411e-06,-0.0,0.000202922077733092,-0.0,-0.0,-0.0001521915546618402,-0.0,-0.0,-0.0,-0.0,-0.0,1.6910173144424334e-05,7.0,16.0,11.0,0.02840495854616165,-0.0057713426649570465,-0.0028409091755747795,-0.003954226151108742,0.0003382034774404019,0.00021485866454895586,0.0003043831093236804,7.95772866695188e-05,0.00014323911454994231,0.00015609391266480088,-0.0057713426649570465,0.0036824389826506376,0.00021485866454895586,0.0003043831093236804,-0.000405844155466184,-7.161955727497116e-05,-0.000101461038866546,1.9100592960584473e-19,1.0079692072326174e-19,-9.815601737071549e-20,-0.0028409091755747795,0.00021485866454895586,0.0007312015513889492,0.00014323911454994231,7.035572292360589e-19,-2.8647822546190582e-05,-1.5048765052267107e-19,-3.410455246921629e-05,-1.9098548364127055e-05,-1.248918130875306e-19,-0.003954226151108742,0.0003043831093236804,0.00014323911454994231,0.001519283396191895,1.3782370921494028e-19,-6.387703240105861e-20,-6.0876624047523364e-05,-1.1265538198482195e-19,-2.8647822546190582e-05,-0.00010406260116724297,0.0003382034774404019,-0.000405844155466184,7.035572292360589e-19,1.3782370921494028e-19,6.764069257769734e-05,-2.756474378169262e-20,-1.4479820917431778e-34,-3.281516932229639e-20,-1.8376495854461745e-20,-1.201700642800302e-34,0.00021485866454895586,-7.161955727497116e-05,-2.8647822546190582e-05,-6.387703240105861e-20,-2.756474378169262e-20,9.549274182063527e-06,4.240729626154195e-21,-4.0234064994579266e-21,-1.376428539288238e-21,4.893149755053356e-21,0.0003043831093236804,-0.000101461038866546,-1.5048765052267107e-19,-6.0876624047523364e-05,-1.4479820917431778e-34,4.240729626154195e-21,2.029220740951132e-05,7.825156059732918e-21,4.0776247958777964e-21,1.2291479003121777e-20,7.95772866695188e-05,1.9100592960584473e-19,-3.410455246921629e-05,-1.1265538198482195e-19,-3.281516932229639e-20,-4.0234064994579266e-21,7.825156059732918e-21,2.2736367100151256e-06,2.117582368135751e-21,5.8251779336281805e-21,0.00014323911454994231,1.0079692072326174e-19,-1.9098548364127055e-05,-2.8647822546190582e-05,-1.8376495854461745e-20,-1.376428539288238e-21,4.0776247958777964e-21,2.117582368135751e-21,3.819709490926471e-06,3.262099836702237e-21,0.00015609391266480088,-9.815601737071549e-20,-1.248918130875306e-19,-0.00010406260116724297,-1.201700642800302e-34,4.893149755053356e-21,1.2291479003121777e-20,5.8251779336281805e-21,3.262099836702237e-21,1.0406260116724297e-05,7.0,16.0,12.0,0.02630884014070034,-0.005311860237270594,-0.002614266937598586,-0.003374186111614108,0.0003100198518950492,0.00019695378432516009,0.0002575549588073045,7.294584793271497e-05,0.00012120232713641599,0.0001226452150149271,-0.005311860237270594,0.0033827233128249645,0.00019695378432516009,0.0002575549588073045,-0.00037202381645329297,-6.565126386703923e-05,-8.585165051044896e-05,-4.235164736271502e-22,0.0,-0.0,-0.002614266937598586,0.00019695378432516009,0.000671614776365459,0.00012120232713641599,0.0,-2.626050445542205e-05,0.0,-3.126250521745533e-05,-1.6160311133717187e-05,-0.0,-0.003374186111614108,0.0002575549588073045,0.00012120232713641599,0.0011776563478633761,0.0,-1.830935811162892e-22,-4.682817234424874e-05,8.470329472543003e-22,-2.2036787413526326e-05,-7.358712900895625e-05,0.0003100198518950492,-0.00037202381645329297,0.0,0.0,6.200397183420137e-05,0.0,0.0,0.0,0.0,-0.0,0.00019695378432516009,-6.565126386703923e-05,-2.626050445542205e-05,-1.830935811162892e-22,0.0,8.753501788305584e-06,0.0,-2.117582368135751e-22,1.0587911840678754e-22,-0.0,0.0002575549588073045,-8.585165051044896e-05,0.0,-4.682817234424874e-05,0.0,0.0,1.5609390175086446e-05,0.0,0.0,-0.0,7.294584793271497e-05,-4.235164736271502e-22,-3.126250521745533e-05,8.470329472543003e-22,0.0,-2.117582368135751e-22,0.0,2.0841669083893066e-06,-1.0587911840678754e-22,-0.0,0.00012120232713641599,0.0,-1.6160311133717187e-05,-2.2036787413526326e-05,0.0,1.0587911840678754e-22,0.0,-1.0587911840678754e-22,2.93823813990457e-06,-0.0,0.0001226452150149271,-0.0,-0.0,-7.358712900895625e-05,-0.0,-0.0,-0.0,-0.0,-0.0,6.689738711429527e-06,7.0,16.0,13.0,0.024501627311110497,-0.004920237231999636,-0.0024211606942117214,-0.0029131844639778137,0.0002861721732188016,0.0001818034943426028,0.00022076138702686876,6.733462942065671e-05,0.00010388770897407085,9.811617201194167e-05,-0.004920237231999636,0.0031281744595617056,0.0001818034943426028,0.00022076138702686876,-0.00034340660204179585,-6.0601163568207994e-05,-7.358712900895625e-05,-2.0328790734103208e-20,-5.421010862427522e-20,5.082197683525802e-20,-0.0024211606942117214,0.0001818034943426028,0.0006210176507011056,0.00010388770897407085,-2.2306339179351974e-19,-2.424046579108108e-05,6.606856988583543e-20,-2.8857697543571703e-05,-1.3851694347977173e-05,1.3383120566617945e-19,-0.0029131844639778137,0.00022076138702686876,0.00010388770897407085,0.000931513321120292,-1.0076304509223828e-19,7.908271232305732e-20,-3.679356450447813e-05,1.0521756132485265e-19,-1.731461816234514e-05,-5.3517909691436216e-05,0.0002861721732188016,-0.00034340660204179585,-2.2306339179351974e-19,-1.0076304509223828e-19,5.723443246097304e-05,3.58502379692148e-21,-6.813164395966077e-21,9.255560557370942e-21,8.458158446869823e-21,3.3009343104847895e-21,0.0001818034943426028,-6.0601163568207994e-05,-2.424046579108108e-05,7.908271232305732e-20,3.58502379692148e-21,8.080155566858593e-06,-5.214776802700866e-21,-2.964615315390051e-21,-7.288057954089755e-22,-5.568631582495267e-21,0.00022076138702686876,-7.358712900895625e-05,6.606856988583543e-20,-3.679356450447813e-05,-6.813164395966077e-21,-5.214776802700866e-21,1.2264521501492709e-05,-3.891057601449442e-21,-5.293955920339377e-22,-7.199780051661553e-21,6.733462942065671e-05,-2.0328790734103208e-20,-2.8857697543571703e-05,1.0521756132485265e-19,9.255560557370942e-21,-2.964615315390051e-21,-3.891057601449442e-21,1.92384641195531e-06,-2.0117032497289633e-21,-6.6174449004242214e-21,0.00010388770897407085,-5.421010862427522e-20,-1.3851694347977173e-05,-1.731461816234514e-05,8.458158446869823e-21,-7.288057954089755e-22,-5.293955920339377e-22,-2.0117032497289633e-21,2.308615648871637e-06,-3.8116482626443515e-21,9.811617201194167e-05,5.082197683525802e-20,1.3383120566617945e-19,-5.3517909691436216e-05,3.3009343104847895e-21,-5.568631582495267e-21,-7.199780051661553e-21,-6.6174449004242214e-21,-3.8116482626443515e-21,4.459825959202135e-06,7.0,16.0,14.0,0.02292729541659355,-0.004582458175718784,-0.0022546518594026566,-0.0025407038629055023,0.0002657313016243279,0.00016881752526387572,0.00019132652960252017,6.252501043491066e-05,9.003601735457778e-05,7.97193861217238e-05,-0.004582458175718784,0.002909288741648197,0.00016881752526387572,0.00019132652960252017,-0.0003188775444868952,-5.6272507208632305e-05,-6.377550744218752e-05,5.590417451878382e-20,7.665648172651418e-20,6.098637220230962e-20,-0.0022546518594026566,0.00016881752526387572,0.0005775167373940349,9.003601735457778e-05,2.175513962335902e-19,-2.2509004338644445e-05,-2.752857078576476e-20,-2.6796433303388767e-05,-1.2004801646980923e-05,-5.759824041329242e-20,-0.0025407038629055023,0.00019132652960252017,9.003601735457778e-05,0.0007496147300116718,1.5584922845808666e-19,1.0493609373438588e-19,-2.943485014839098e-05,-8.533760654593896e-20,-1.3851694347977173e-05,-3.98596930608619e-05,0.0002657313016243279,-0.0003188775444868952,2.175513962335902e-19,1.5584922845808666e-19,5.3146257414482534e-05,-4.2216689291485296e-21,1.0152056724213283e-21,-8.594449377485006e-21,-8.441071189548208e-21,-5.900419865421395e-21,0.00016881752526387572,-5.6272507208632305e-05,-2.2509004338644445e-05,1.0493609373438588e-19,-4.2216689291485296e-21,7.503001143049914e-06,-5.9469023267474035e-21,-2.117582368135751e-21,-3.950756373324259e-21,-3.7641443463529395e-21,0.00019132652960252017,-6.377550744218752e-05,-2.752857078576476e-20,-2.943485014839098e-05,1.0152056724213283e-21,-5.9469023267474035e-21,9.811617019295227e-06,2.8587361969832636e-21,1.7999450129153882e-21,1.2705494208814505e-21,6.252501043491066e-05,5.590417451878382e-20,-2.6796433303388767e-05,-8.533760654593896e-20,-8.594449377485006e-21,-2.117582368135751e-21,2.8587361969832636e-21,1.7864288111013593e-06,2.4352197233561135e-21,4.658681209898652e-21,9.003601735457778e-05,7.665648172651418e-20,-1.2004801646980923e-05,-1.3851694347977173e-05,-8.441071189548208e-21,-3.950756373324259e-21,1.7999450129153882e-21,2.4352197233561135e-21,1.8468925873094122e-06,3.1763735522036263e-22,7.97193861217238e-05,6.098637220230962e-20,-5.759824041329242e-20,-3.98596930608619e-05,-5.900419865421395e-21,-3.7641443463529395e-21,1.2705494208814505e-21,4.658681209898652e-21,3.1763735522036263e-22,3.0661303753731772e-06,7.0,16.0,15.0,0.021543461829423904,-0.004288121592253447,-0.0021095939446240664,-0.002235425403341651,0.00024801588733680546,0.00015756303037051111,0.00016741071885917336,5.835667616338469e-05,7.878151518525556e-05,6.565126386703923e-05,-0.004288121592253447,0.0027190563268959522,0.00015756303037051111,0.00016741071885917336,-0.00029761905898340046,-5.25210089108441e-05,-5.5803571740398183e-05,-1.3383120566617945e-19,-1.418780186650953e-19,-1.3213713977167085e-19,-0.0021095939446240664,0.00015756303037051111,0.0005397158674895763,7.878151518525556e-05,-2.581857132470686e-19,-2.100840356433764e-05,-1.418780186650953e-19,-2.501000381016638e-05,-1.050420178216882e-05,2.1175823681357508e-20,-0.002235425403341651,0.00016741071885917336,7.878151518525556e-05,0.0006122521008364856,-2.374701380284144e-19,-1.155963451045718e-19,-2.391581620031502e-05,3.9760494400369854e-20,-1.1254502169322222e-05,-3.0300581784103997e-05,0.00024801588733680546,-0.00029761905898340046,-2.581857132470686e-19,-2.374701380284144e-19,4.960317528457381e-05,2.021167682276733e-20,1.9173555460490478e-20,8.021486247211385e-21,8.218937652160774e-21,7.101863354444155e-21,0.00015756303037051111,-5.25210089108441e-05,-2.100840356433764e-05,-1.155963451045718e-19,2.021167682276733e-20,7.002801339694997e-06,7.903560503340727e-21,6.776263578034403e-21,4.401308889843536e-21,3.611832849821294e-21,0.00016741071885917336,-5.5803571740398183e-05,-1.418780186650953e-19,-2.391581620031502e-05,1.9173555460490478e-20,7.903560503340727e-21,7.97193843027344e-06,3.917527381051139e-21,7.093900933254765e-21,8.046812998915853e-21,5.835667616338469e-05,-1.3383120566617945e-19,-2.501000381016638e-05,3.9760494400369854e-20,8.021486247211385e-21,6.776263578034403e-21,3.917527381051139e-21,1.6673335494488128e-06,-6.88214269644119e-22,-3.441071348220595e-21,7.878151518525556e-05,-1.418780186650953e-19,-1.050420178216882e-05,-1.1254502169322222e-05,8.218937652160774e-21,4.401308889843536e-21,7.093900933254765e-21,-6.88214269644119e-22,1.5006002058726153e-06,2.4352197233561135e-21,6.565126386703923e-05,-1.3213713977167085e-19,2.1175823681357508e-20,-3.0300581784103997e-05,7.101863354444155e-21,3.611832849821294e-21,8.046812998915853e-21,-3.441071348220595e-21,2.4352197233561135e-21,2.1643272702931426e-06,7.0,16.0,16.0,0.020317455753684044,-0.004029346164315939,-0.0019820888992398977,-0.0019820888992398977,0.0002325148816453293,0.00014771534188184887,0.00014771534188184887,5.470938413054682e-05,6.951310206204653e-05,5.470938413054682e-05,-0.004029346164315939,0.002552192658185959,0.00014771534188184887,0.00014771534188184887,-0.00027901786961592734,-4.923844608129002e-05,-4.923844608129002e-05,4.235164736271502e-22,-3.8116482626443515e-21,0.0,-0.0019820888992398977,0.00014771534188184887,0.0005065629375167191,6.951310206204653e-05,0.0,-1.969537879631389e-05,-2.541098841762901e-21,-2.3446878913091496e-05,-9.26841312320903e-06,-1.6940658945086007e-21,-0.0019820888992398977,0.00014771534188184887,6.951310206204653e-05,0.0005065629375167191,-0.0,-1.3181198791679397e-21,-1.969537879631389e-05,-6.198134405951769e-22,-9.26841312320903e-06,-2.3446878913091496e-05,0.0002325148816453293,-0.00027901786961592734,0.0,-0.0,4.650297705666162e-05,0.0,0.0,0.0,0.0,0.0,0.00014771534188184887,-4.923844608129002e-05,-1.969537879631389e-05,-1.3181198791679397e-21,0.0,6.565126113855513e-06,1.154438296906516e-23,0.0,1.2999632546249812e-22,7.120008461617897e-24,0.00014771534188184887,-4.923844608129002e-05,-2.541098841762901e-21,-1.969537879631389e-05,0.0,1.154438296906516e-23,6.565126113855513e-06,0.0,3.705769144237564e-22,1.0587911840678754e-22,5.470938413054682e-05,4.235164736271502e-22,-2.3446878913091496e-05,-6.198134405951769e-22,0.0,0.0,0.0,1.5631252381353988e-06,1.0587911840678754e-22,-2.6469779601696886e-23,6.951310206204653e-05,-3.8116482626443515e-21,-9.26841312320903e-06,-9.26841312320903e-06,0.0,1.2999632546249812e-22,3.705769144237564e-22,1.0587911840678754e-22,1.2357884315861156e-06,2.117582368135751e-22,5.470938413054682e-05,0.0,-1.6940658945086007e-21,-2.3446878913091496e-05,0.0,7.120008461617897e-24,1.0587911840678754e-22,-2.6469779601696886e-23,2.117582368135751e-22,1.5631252381353988e-06,8.0,3.0,3.0,0.26273149251937866,-0.0694444477558136,-0.1423611044883728,-0.1423611044883728,0.004629629664123058,0.013888888992369175,0.013888888992369175,0.02083333395421505,0.03125,0.02083333395421505,-0.0694444477558136,0.04298941791057587,0.013888888992369175,0.013888888992369175,-0.004629629664123058,-0.003968254197388887,-0.003968254197388887,1.2245106986563416e-17,-6.122553493281708e-18,3.392084388856225e-17,-0.1423611044883728,0.013888888992369175,0.3506944477558136,0.03125,-5.482487752733076e-18,-0.013888888992369175,1.203080516936624e-17,-0.125,-0.03125,-1.7355302748590668e-16,-0.1423611044883728,0.013888888992369175,0.03125,0.3506944477558136,-4.641814997208696e-19,1.3321904238205346e-17,-0.013888888992369175,-1.8036675903696729e-16,-0.03125,-0.125,0.004629629664123058,-0.004629629664123058,-5.482487752733076e-18,-4.641814997208696e-19,0.0006613756413571537,3.7065472110012467e-19,2.2292047049330706e-19,1.4890880571761228e-18,9.901794473887457e-19,-8.157400842959599e-19,0.013888888992369175,-0.003968254197388887,-0.013888888992369175,1.3321904238205346e-17,3.7065472110012467e-19,0.003968254197388887,1.6245487311008493e-19,-9.768674643548073e-18,1.152246153071693e-18,-7.565851313288733e-18,0.013888888992369175,-0.003968254197388887,1.203080516936624e-17,-0.013888888992369175,2.2292047049330706e-19,1.6245487311008493e-19,0.003968254197388887,-5.939151007866451e-18,-1.0336325891346517e-18,-1.6953268486343765e-17,0.02083333395421505,1.2245106986563416e-17,-0.125,-1.8036675903696729e-16,1.4890880571761228e-18,-9.768674643548073e-18,-5.939151007866451e-18,0.0625,1.0575140999201548e-17,9.508730985383692e-17,0.03125,-6.122553493281708e-18,-0.03125,-0.03125,9.901794473887457e-19,1.152246153071693e-18,-1.0336325891346517e-18,1.0575140999201548e-17,0.03125,5.5377711282021385e-18,0.02083333395421505,3.392084388856225e-17,-1.7355302748590668e-16,-0.125,-8.157400842959599e-19,-7.565851313288733e-18,-1.6953268486343765e-17,9.508730985383692e-17,5.5377711282021385e-18,0.0625,8.0,3.0,4.0,0.21736110746860504,-0.05416666716337204,-0.11145833134651184,-0.09166666865348816,0.0034722222480922937,0.010416666977107525,0.008333333767950535,0.015625,0.01875000074505806,0.010416666977107525,-0.05416666716337204,0.03283730149269104,0.010416666977107525,0.008333333767950535,-0.0034722222480922937,-0.0029761905316263437,-0.0023809524718672037,-6.18377925155329e-17,-4.8572256500169986e-18,-1.340238064000063e-17,-0.11145833134651184,0.010416666977107525,0.26770833134651184,0.01875000074505806,-9.093922738373255e-18,-0.010416666977107525,-2.9756796832635605e-17,-0.09375,-0.01875000074505806,-3.610645359027436e-17,-0.09166666865348816,0.008333333767950535,0.01875000074505806,0.13402777910232544,1.355852524948558e-18,-1.4579665446816727e-17,-0.0055555556900799274,-9.73223386340654e-17,-0.012500000186264515,-0.03125,0.0034722222480922937,-0.0034722222480922937,-9.093922738373255e-18,1.355852524948558e-18,0.0004960317746736109,-1.9340657576453554e-19,-3.1749676036562275e-19,4.811314230888162e-18,9.881171956487715e-20,-4.2195045270652536e-20,0.010416666977107525,-0.0029761905316263437,-0.010416666977107525,-1.4579665446816727e-17,-1.9340657576453554e-19,0.0029761905316263437,4.880293235759265e-19,3.699069808456497e-18,2.7124209747172808e-18,3.0580552917452663e-18,0.008333333767950535,-0.0023809524718672037,-2.9756796832635605e-17,-0.0055555556900799274,-3.1749676036562275e-19,4.880293235759265e-19,0.0015873016091063619,1.2691150069812223e-17,1.741491674543869e-18,6.261614548370754e-18,0.015625,-6.18377925155329e-17,-0.09375,-9.73223386340654e-17,4.811314230888162e-18,3.699069808456497e-18,1.2691150069812223e-17,0.046875,-5.489851728136329e-18,1.5188771471398724e-17,0.01875000074505806,-4.8572256500169986e-18,-0.01875000074505806,-0.012500000186264515,9.881171956487715e-20,2.7124209747172808e-18,1.741491674543869e-18,-5.489851728136329e-18,0.012500000186264515,-1.5034270262995764e-18,0.010416666977107525,-1.340238064000063e-17,-3.610645359027436e-17,-0.03125,-4.2195045270652536e-20,3.0580552917452663e-18,6.261614548370754e-18,1.5188771471398724e-17,-1.5034270262995764e-18,0.010416666977107525,8.0,3.0,5.0,0.1855158656835556,-0.04444444552063942,-0.09166666865348816,-0.06408730149269104,0.0027777778450399637,0.008333333767950535,0.0055555556900799274,0.012500000186264515,0.012500000186264515,0.0059523810632526875,-0.04444444552063942,0.02658730186522007,0.008333333767950535,0.0055555556900799274,-0.0027777778450399637,-0.0023809524718672037,-0.0015873016091063619,4.898042980741004e-19,-3.7551663024676994e-18,8.474391756531251e-18,-0.09166666865348816,0.008333333767950535,0.21666666865348816,0.012500000186264515,1.0842021724855044e-18,-0.008333333767950535,2.9408706823164103e-18,-0.07500000298023224,-0.012500000186264515,3.965082408057119e-18,-0.06408730149269104,0.0055555556900799274,0.012500000186264515,0.06775793433189392,2.8189256484623115e-18,4.946662485797763e-18,-0.0027777778450399637,4.906938274253246e-19,-0.0062500000931322575,-0.011904762126505375,0.0027777778450399637,-0.0027777778450399637,1.0842021724855044e-18,2.8189256484623115e-18,0.00039682540227659047,5.421010862427522e-20,9.486769009248164e-20,-8.845623384409843e-19,2.644857534368197e-19,-8.78724097677585e-19,0.008333333767950535,-0.0023809524718672037,-0.008333333767950535,4.946662485797763e-18,5.421010862427522e-20,0.0023809524718672037,-5.421010862427522e-20,6.862165871057728e-18,8.873777510533851e-19,-1.404299976437906e-18,0.0055555556900799274,-0.0015873016091063619,2.9408706823164103e-18,-0.0027777778450399637,9.486769009248164e-20,-5.421010862427522e-20,0.0007936508045531809,-2.2531711258084523e-18,8.91155898501221e-19,-1.3933521376331902e-19,0.012500000186264515,4.898042980741004e-19,-0.07500000298023224,4.906938274253246e-19,-8.845623384409843e-19,6.862165871057728e-18,-2.2531711258084523e-18,0.03750000149011612,5.544443167022991e-18,4.92458151973112e-19,0.012500000186264515,-3.7551663024676994e-18,-0.012500000186264515,-0.0062500000931322575,2.644857534368197e-19,8.873777510533851e-19,8.91155898501221e-19,5.544443167022991e-18,0.0062500000931322575,4.575095125988051e-19,0.0059523810632526875,8.474391756531251e-18,3.965082408057119e-18,-0.011904762126505375,-8.78724097677585e-19,-1.404299976437906e-18,-1.3933521376331902e-19,4.92458151973112e-19,4.575095125988051e-19,0.0029761905316263437,8.0,3.0,6.0,0.16187168657779694,-0.0376984141767025,-0.0778769850730896,-0.0473710335791111,0.002314814832061529,0.0069444444961845875,0.003968254197388887,0.010416666977107525,0.008928571827709675,0.0037202381063252687,-0.0376984141767025,0.022345049306750298,0.0069444444961845875,0.003968254197388887,-0.002314814832061529,-0.0019841270986944437,-0.0011337868636474013,8.547460235210411e-33,-7.552537427739386e-19,-1.180083986008976e-18,-0.0778769850730896,0.0069444444961845875,0.18204365670681,0.008928571827709675,-2.8329672590802494e-20,-0.0069444444961845875,-7.552537427739386e-19,-0.0625,-0.008928571827709675,1.3629970286557858e-17,-0.0473710335791111,0.003968254197388887,0.008928571827709675,0.03940972313284874,-6.351466913162356e-20,5.905398354521232e-36,-0.0015873016091063619,4.0419055666770625e-17,-0.0035714285913854837,-0.005580357275903225,0.002314814832061529,-0.002314814832061529,-2.8329672590802494e-20,-6.351466913162356e-20,0.0003306878206785768,-3.6717362963911363e-22,1.757339718372652e-20,-0.0,1.8253198822558666e-35,1.1371168888863343e-36,0.0069444444961845875,-0.0019841270986944437,-0.0069444444961845875,5.905398354521232e-36,-3.6717362963911363e-22,0.0019841270986944437,-0.0,0.0,-5.905398354521232e-36,-0.0,0.003968254197388887,-0.0011337868636474013,-7.552537427739386e-19,-0.0015873016091063619,1.757339718372652e-20,-0.0,0.00045351474545896053,-3.418984094084164e-33,3.021015074493331e-19,4.720336150831057e-19,0.010416666977107525,8.547460235210411e-33,-0.0625,4.0419055666770625e-17,-0.0,0.0,-3.418984094084164e-33,0.03125,-6.3441316047372065e-18,-6.814985143278929e-18,0.008928571827709675,-7.552537427739386e-19,-0.008928571827709675,-0.0035714285913854837,1.8253198822558666e-35,-5.905398354521232e-36,3.021015074493331e-19,-6.3441316047372065e-18,0.0035714285913854837,1.6979626515124233e-33,0.0037202381063252687,-1.180083986008976e-18,1.3629970286557858e-17,-0.005580357275903225,1.1371168888863343e-36,-0.0,4.720336150831057e-19,-6.814985143278929e-18,1.6979626515124233e-33,0.0011160714784637094,8.0,3.0,7.0,0.143601194024086,-0.032738097012043,-0.0677083358168602,-0.0364583320915699,0.0019841270986944437,0.0059523810632526875,0.0029761905316263437,0.008928571827709675,0.0066964286379516125,0.0024801588151603937,-0.032738097012043,0.019274376332759857,0.0059523810632526875,0.0029761905316263437,-0.0019841270986944437,-0.001700680237263441,-0.0008503401186317205,5.3926038442842604e-33,0.0,-6.505213034913027e-19,-0.0677083358168602,0.0059523810632526875,0.1569940447807312,0.0066964286379516125,-5.1109893849563294e-20,-0.0059523810632526875,1.0842021724855044e-19,-0.0535714291036129,-0.0066964286379516125,8.673617379884035e-18,-0.0364583320915699,0.0029761905316263437,0.0066964286379516125,0.02504960261285305,-1.5259683183771058e-19,-4.345413371640615e-20,-0.0009920635493472219,3.257031933733672e-17,-0.0022321429569274187,-0.0029761905316263437,0.0019841270986944437,-0.0019841270986944437,-5.1109893849563294e-20,-1.5259683183771058e-19,0.00028344671591185033,8.151940061511814e-21,1.0068671829368466e-20,-1.6249053561845816e-34,7.382620894365584e-21,1.012624327688473e-20,0.0059523810632526875,-0.001700680237263441,-0.0059523810632526875,-4.345413371640615e-20,8.151940061511814e-21,0.001700680237263441,1.782494854333822e-21,-8.039749416616509e-35,2.4567544901089436e-21,5.347484361053075e-21,0.0029761905316263437,-0.0008503401186317205,1.0842021724855044e-19,-0.0009920635493472219,1.0068671829368466e-20,1.782494854333822e-21,0.00028344671591185033,-1.3884155915130632e-33,-2.7332952264418773e-20,1.8973538018496328e-19,0.008928571827709675,5.3926038442842604e-33,-0.0535714291036129,3.257031933733672e-17,-1.6249053561845816e-34,-8.039749416616509e-35,-1.3884155915130632e-33,0.02678571455180645,-6.7972838917606e-18,-4.29550590759602e-18,0.0066964286379516125,0.0,-0.0066964286379516125,-0.0022321429569274187,7.382620894365584e-21,2.4567544901089436e-21,-2.7332952264418773e-20,-6.7972838917606e-18,0.0022321429569274187,0.0,0.0024801588151603937,-6.505213034913027e-19,8.673617379884035e-18,-0.0029761905316263437,1.012624327688473e-20,5.347484361053075e-21,1.8973538018496328e-19,-4.29550590759602e-18,0.0,0.0004960317746736109,8.0,3.0,8.0,0.12905092537403107,-0.028935184702277184,-0.0598958320915699,-0.028935184702277184,0.0017361111240461469,0.0052083334885537624,0.002314814832061529,0.0078125,0.0052083334885537624,0.0017361111240461469,-0.028935184702277184,0.016947751864790916,0.0052083334885537624,0.002314814832061529,-0.0017361111240461469,-0.0014880952658131719,-0.0006613756413571537,-1.5407439555097887e-33,2.710505431213761e-20,8.131516293641283e-20,-0.0598958320915699,0.0052083334885537624,0.1380208283662796,0.0052083334885537624,1.4431858921303887e-20,-0.0052083334885537624,-8.131516293641283e-20,-0.046875,-0.0052083334885537624,5.637851296924623e-18,-0.028935184702277184,0.002314814832061529,0.0052083334885537624,0.016947751864790916,-2.995978385302882e-20,-0.0,-0.0006613756413571537,2.4203523098983304e-17,-0.0014880952658131719,-0.0017361111240461469,0.0017361111240461469,-0.0017361111240461469,1.4431858921303887e-20,-2.995978385302882e-20,0.00024801588733680546,1.2442970185286189e-20,2.2998377624521374e-22,-4.6567733892068573e-35,1.0734393087140964e-21,5.505923779583575e-21,0.0052083334885537624,-0.0014880952658131719,-0.0052083334885537624,-0.0,1.2442970185286189e-20,0.0014880952658131719,6.85943804265503e-21,5.888998830794818e-35,-1.9441951335456927e-21,3.6064638498785856e-21,0.002314814832061529,-0.0006613756413571537,-8.131516293641283e-20,-0.0006613756413571537,2.2998377624521374e-22,6.85943804265503e-21,0.0001889644772745669,4.548372434060332e-34,3.802018151636001e-21,-2.710505431213761e-20,0.0078125,-1.5407439555097887e-33,-0.046875,2.4203523098983304e-17,-4.6567733892068573e-35,5.888998830794818e-35,4.548372434060332e-34,0.0234375,-3.965082408057119e-18,-2.8912057243629608e-18,0.0052083334885537624,2.710505431213761e-20,-0.0052083334885537624,-0.0014880952658131719,1.0734393087140964e-21,-1.9441951335456927e-21,3.802018151636001e-21,-3.965082408057119e-18,0.0014880952658131719,0.0,0.0017361111240461469,8.131516293641283e-20,5.637851296924623e-18,-0.0017361111240461469,5.505923779583575e-21,3.6064638498785856e-21,-2.710505431213761e-20,-2.8912057243629608e-18,0.0,0.00024801588733680546,8.0,3.0,9.0,0.11718574911355972,-0.025925925001502037,-0.05370370298624039,-0.023526936769485474,0.0015432098880410194,0.004629629664123058,0.0018518518190830946,0.0069444444961845875,0.004166666883975267,0.0012626262614503503,-0.025925925001502037,0.015123456716537476,0.004629629664123058,0.0018518518190830946,-0.0015432098880410194,-0.0013227512827143073,-0.0005291005363687873,-2.311115933264683e-33,2.710505431213761e-20,1.8973538018496328e-19,-0.05370370298624039,0.004629629664123058,0.12314815074205399,0.004166666883975267,-1.4271041560460689e-21,-0.004629629664123058,5.421010862427522e-20,-0.0416666679084301,-0.004166666883975267,4.228388472693467e-18,-0.023526936769485474,0.0018518518190830946,0.004166666883975267,0.01201449055224657,3.7987762337137754e-20,4.168363762576736e-20,-0.00046296295477077365,2.127526898895986e-17,-0.0010416667209938169,-0.0010822510812431574,0.0015432098880410194,-0.0015432098880410194,-1.4271041560460689e-21,3.7987762337137754e-20,0.00022045854711905122,-7.565262212058579e-21,-1.0344247373557934e-20,5.342889295369857e-35,-1.0547469655749587e-21,-1.7138083692847686e-21,0.004629629664123058,-0.0013227512827143073,-0.004629629664123058,4.168363762576736e-20,-7.565262212058579e-21,0.0013227512827143073,-8.480170013775543e-21,3.3444722737298613e-35,-1.2988428954347246e-21,-5.950258910966457e-22,0.0018518518190830946,-0.0005291005363687873,5.421010862427522e-20,-0.00046296295477077365,-1.0344247373557934e-20,-8.480170013775543e-21,0.00013227513409219682,5.812850329707425e-34,-1.0483162017678558e-20,-4.743384504624082e-20,0.0069444444961845875,-2.311115933264683e-33,-0.0416666679084301,2.127526898895986e-17,5.342889295369857e-35,3.3444722737298613e-35,5.812850329707425e-34,0.02083333395421505,-4.934324673371229e-18,-2.042618091147367e-18,0.004166666883975267,2.710505431213761e-20,-0.004166666883975267,-0.0010416667209938169,-1.0547469655749587e-21,-1.2988428954347246e-21,-1.0483162017678558e-20,-4.934324673371229e-18,0.0010416667209938169,-2.710505431213761e-20,0.0012626262614503503,1.8973538018496328e-19,4.228388472693467e-18,-0.0010822510812431574,-1.7138083692847686e-21,-5.950258910966457e-22,-4.743384504624082e-20,-2.042618091147367e-18,-2.710505431213761e-20,0.00013528138515539467,8.0,3.0,10.0,0.10732322931289673,-0.02348484843969345,-0.048674240708351135,-0.019507575780153275,0.0013888889225199819,0.004166666883975267,0.0015151514671742916,0.0062500000931322575,0.003409090917557478,0.0009469697251915932,-0.02348484843969345,0.013654401525855064,0.004166666883975267,0.0015151514671742916,-0.0013888889225199819,-0.0011904762359336019,-0.00043290044413879514,-1.925929944387236e-34,2.710505431213761e-20,-4.0657581468206416e-20,-0.048674240708351135,0.004166666883975267,0.11117424070835114,0.003409090917557478,0.0,-0.004166666883975267,2.710505431213761e-20,-0.03750000149011612,-0.003409090917557478,-1.5178830414797062e-18,-0.019507575780153275,0.0015151514671742916,0.003409090917557478,0.008833122439682484,-0.0,-0.0,-0.00033670032280497253,-6.741766424178185e-18,-0.0007575757335871458,-0.0007102272938936949,0.0013888889225199819,-0.0013888889225199819,0.0,-0.0,0.00019841270113829523,0.0,0.0,0.0,0.0,0.0,0.004166666883975267,-0.0011904762359336019,-0.004166666883975267,-0.0,0.0,0.0011904762359336019,0.0,0.0,0.0,0.0,0.0015151514671742916,-0.00043290044413879514,2.710505431213761e-20,-0.00033670032280497253,0.0,0.0,9.620009950594977e-05,0.0,-3.3881317890172014e-21,0.0,0.0062500000931322575,-1.925929944387236e-34,-0.03750000149011612,-6.741766424178185e-18,0.0,0.0,0.0,0.01875000074505806,0.0,7.490851467534009e-19,0.003409090917557478,2.710505431213761e-20,-0.003409090917557478,-0.0007575757335871458,0.0,0.0,-3.3881317890172014e-21,0.0,0.0007575757335871458,0.0,0.0009469697251915932,-4.0657581468206416e-20,-1.5178830414797062e-18,-0.0007102272938936949,0.0,0.0,0.0,7.490851467534009e-19,0.0,7.891414134064689e-05,8.0,3.0,11.0,0.09899475425481796,-0.021464645862579346,-0.044507574290037155,-0.016438422724604607,0.0012626262614503503,0.0037878789007663727,0.0012626262614503503,0.005681818351149559,0.0028409091755747795,0.0007284382008947432,-0.021464645862579346,0.012445887550711632,0.0037878789007663727,0.0012626262614503503,-0.0012626262614503503,-0.0010822510812431574,-0.0003607503604143858,-1.3481509610710651e-33,1.3552527156068805e-20,-1.3552527156068805e-19,-0.044507574290037155,0.0037878789007663727,0.10132575780153275,0.0028409091755747795,0.0,-0.0037878789007663727,-1.3552527156068805e-20,-0.034090910106897354,-0.0028409091755747795,-1.111307226797642e-18,-0.016438422724604607,0.0012626262614503503,0.0028409091755747795,0.006687062792479992,-0.0,-0.0,-0.00025252526393160224,-5.66110210317257e-18,-0.0005681818001903594,-0.0004856254963669926,0.0012626262614503503,-0.0012626262614503503,0.0,-0.0,0.0001803751802071929,0.0,0.0,0.0,0.0,0.0,0.0037878789007663727,-0.0010822510812431574,-0.0037878789007663727,-0.0,0.0,0.0010822510812431574,0.0,0.0,0.0,0.0,0.0012626262614503503,-0.0003607503604143858,-1.3552527156068805e-20,-0.00025252526393160224,0.0,0.0,7.215006917249411e-05,2.8888949165808538e-34,0.0,2.371692252312041e-20,0.005681818351149559,-1.3481509610710651e-33,-0.034090910106897354,-5.66110210317257e-18,0.0,0.0,2.8888949165808538e-34,0.017045455053448677,0.0,5.66110210317257e-19,0.0028409091755747795,1.3552527156068805e-20,-0.0028409091755747795,-0.0005681818001903594,0.0,0.0,0.0,0.0,0.0005681818001903594,-6.776263578034403e-21,0.0007284382008947432,-1.3552527156068805e-19,-1.111307226797642e-18,-0.0004856254963669926,0.0,0.0,2.371692252312041e-20,5.66110210317257e-19,-6.776263578034403e-21,4.856254963669926e-05,8.0,3.0,12.0,0.09186762571334839,-0.019764957949519157,-0.04099893197417259,-0.01404151413589716,0.0011574074160307646,0.0034722222480922937,0.0010683761211112142,0.0052083334885537624,0.0024038462433964014,0.0005723443464376032,-0.019764957949519157,0.011434167623519897,0.0034722222480922937,0.0010683761211112142,-0.0011574074160307646,-0.0009920635493472219,-0.0003052503161597997,0.0,-1.3552527156068805e-20,-1.3552527156068805e-20,-0.04099893197417259,0.0034722222480922937,0.09308226406574249,0.0024038462433964014,0.0,-0.0034722222480922937,-1.3552527156068805e-20,-0.03125,-0.0024038462433964014,1.7076184216646695e-18,-0.01404151413589716,0.0010683761211112142,0.0024038462433964014,0.005185786634683609,-0.0,-0.0,-0.00019425019854679704,1.2751344002987707e-17,-0.0004370629321783781,-0.00034340660204179585,0.0011574074160307646,-0.0011574074160307646,0.0,-0.0,0.0001653439103392884,0.0,0.0,0.0,0.0,0.0,0.0034722222480922937,-0.0009920635493472219,-0.0034722222480922937,-0.0,0.0,0.0009920635493472219,0.0,0.0,0.0,0.0,0.0010683761211112142,-0.0003052503161597997,-1.3552527156068805e-20,-0.00019425019854679704,0.0,0.0,5.550005516852252e-05,0.0,3.3881317890172014e-21,1.6940658945086007e-21,0.0052083334885537624,0.0,-0.03125,1.2751344002987707e-17,0.0,0.0,0.0,0.015625,-3.105518915293559e-18,-8.768932367892755e-19,0.0024038462433964014,-1.3552527156068805e-20,-0.0024038462433964014,-0.0004370629321783781,0.0,0.0,3.3881317890172014e-21,-3.105518915293559e-18,0.0004370629321783781,6.776263578034403e-21,0.0005723443464376032,-1.3552527156068805e-20,1.7076184216646695e-18,-0.00034340660204179585,0.0,0.0,1.6940658945086007e-21,-8.768932367892755e-19,6.776263578034403e-21,3.121878035017289e-05,8.0,3.0,13.0,0.08569902181625366,-0.018315019086003304,-0.03800366446375847,-0.012133699841797352,0.0010683761211112142,0.0032051282469183207,0.0009157509193755686,0.004807692486792803,0.002060439670458436,0.0004578754596877843,-0.018315019086003304,0.010574743151664734,0.0032051282469183207,0.0009157509193755686,-0.0010683761211112142,-0.0009157509193755686,-0.00026164311566390097,-1.925929944387236e-33,0.0,5.421010862427522e-20,-0.03800366446375847,0.0032051282469183207,0.08608058840036392,0.002060439670458436,0.0,-0.0032051282469183207,-1.3552527156068805e-20,-0.028846153989434242,-0.002060439670458436,1.3823577699190182e-18,-0.012133699841797352,0.0009157509193755686,0.002060439670458436,0.004103535320609808,-0.0,-0.0,-0.00015262515807989985,1.0570708965479489e-17,-0.00034340660204179585,-0.00024975024280138314,0.0010683761211112142,-0.0010683761211112142,0.0,-0.0,0.00015262515807989985,0.0,0.0,0.0,0.0,0.0,0.0032051282469183207,-0.0009157509193755686,-0.0032051282469183207,-0.0,0.0,0.0009157509193755686,0.0,0.0,0.0,0.0,0.0009157509193755686,-0.00026164311566390097,-1.3552527156068805e-20,-0.00015262515807989985,0.0,0.0,4.3607185943983495e-05,2.8888949165808538e-34,0.0,-8.470329472543003e-21,0.004807692486792803,-1.925929944387236e-33,-0.028846153989434242,1.0570708965479489e-17,0.0,0.0,2.8888949165808538e-34,0.014423076994717121,-2.2523544917487094e-18,-6.931961716783728e-19,0.002060439670458436,0.0,-0.002060439670458436,-0.00034340660204179585,0.0,0.0,0.0,-2.2523544917487094e-18,0.00034340660204179585,0.0,0.0004578754596877843,5.421010862427522e-20,1.3823577699190182e-18,-0.00024975024280138314,0.0,0.0,-8.470329472543003e-21,-6.931961716783728e-19,0.0,2.0812520233448595e-05,8.0,3.0,14.0,0.08030754327774048,-0.01706349290907383,-0.03541666641831398,-0.01059027761220932,0.0009920635493472219,0.0029761905316263437,0.0007936508045531809,0.004464285913854837,0.0017857142956927419,0.00037202381645329297,-0.01706349290907383,0.009835600852966309,0.0029761905316263437,0.0007936508045531809,-0.0009920635493472219,-0.0008503401186317205,-0.00022675737272948027,2.1250362580715887e-17,7.047314121155779e-19,-2.286988957586611e-19,-0.03541666641831398,0.0029761905316263437,0.08005952090024948,0.0017857142956927419,3.1445626673866745e-18,-0.0029761905316263437,1.2468324983583301e-18,-0.02678571455180645,-0.0017857142956927419,-6.791594336712307e-19,-0.01059027761220932,0.0007936508045531809,0.0017857142956927419,0.0033033806830644608,-4.87890977618477e-19,-3.2526065174565133e-19,-0.00012210012937430292,1.8431436932253575e-18,-0.00027472528745420277,-0.00018601190822664648,0.0009920635493472219,-0.0009920635493472219,3.1445626673866745e-18,-4.87890977618477e-19,0.00014172335795592517,1.3455544106656084e-19,9.578684931174144e-20,-1.6151735435863557e-18,-4.0657581468206416e-20,2.0328790734103208e-20,0.0029761905316263437,-0.0008503401186317205,-0.0029761905316263437,-3.2526065174565133e-19,1.3455544106656084e-19,0.0008503401186317205,-3.7269449679189215e-20,-6.640738306473715e-18,-8.131516293641283e-20,3.40711590719272e-20,0.0007936508045531809,-0.00022675737272948027,1.2468324983583301e-18,-0.00012210012937430292,9.578684931174144e-20,-3.7269449679189215e-20,3.488575021037832e-05,-3.7947076036992655e-19,-4.573977915173222e-20,6.746218100208618e-21,0.004464285913854837,2.1250362580715887e-17,-0.02678571455180645,1.8431436932253575e-18,-1.6151735435863557e-18,-6.640738306473715e-18,-3.7947076036992655e-19,0.013392857275903225,-2.7647155398380363e-18,1.51540638517754e-19,0.0017857142956927419,7.047314121155779e-19,-0.0017857142956927419,-0.00027472528745420277,-4.0657581468206416e-20,-8.131516293641283e-20,-4.573977915173222e-20,-2.7647155398380363e-18,0.00027472528745420277,2.964615315390051e-20,0.00037202381645329297,-2.286988957586611e-19,-6.791594336712307e-19,-0.00018601190822664648,2.0328790734103208e-20,3.40711590719272e-20,6.746218100208618e-21,1.51540638517754e-19,2.964615315390051e-20,1.430860811524326e-05,8.0,3.0,15.0,0.07555487751960754,-0.01597222313284874,-0.03315972164273262,-0.009323937818408012,0.0009259259095415473,0.0027777778450399637,0.0006944444612599909,0.004166666883975267,0.0015625000232830644,0.00030637255986221135,-0.01597222313284874,0.009193121455609798,0.0027777778450399637,0.0006944444612599909,-0.0009259259095415473,-0.0007936508045531809,-0.00019841270113829523,1.3986208025063007e-17,-1.6263032587282567e-19,-2.727446090158847e-19,-0.03315972164273262,0.0027777778450399637,0.07482638955116272,0.0015625000232830644,5.200628440547469e-18,-0.0027777778450399637,-2.168404344971009e-19,-0.02500000037252903,-0.0015625000232830644,-1.7142798105351356e-18,-0.009323937818408012,0.0006944444612599909,0.0015625000232830644,0.0026988841127604246,3.3881317890172014e-19,-1.2468324983583301e-18,-9.920635056914762e-05,-6.938893903907228e-18,-0.00022321428696159273,-0.00014140272105578333,0.0009259259095415473,-0.0009259259095415473,5.200628440547469e-18,3.3881317890172014e-19,0.00013227513409219682,-5.559944635099812e-19,-1.3748022246557764e-19,-1.4400405895499441e-18,-3.5575383784680614e-20,1.5246593050577406e-20,0.0027777778450399637,-0.0007936508045531809,-0.0027777778450399637,-1.2468324983583301e-18,-5.559944635099812e-19,0.0007936508045531809,-4.404571325722362e-20,-4.038653092508504e-18,1.3891340334970526e-19,8.996195329806812e-20,0.0006944444612599909,-0.00019841270113829523,-2.168404344971009e-19,-9.920635056914762e-05,-1.3748022246557764e-19,-4.404571325722362e-20,2.8344671591185033e-05,5.421010862427522e-20,3.8963515573697816e-20,6.612773430226571e-21,0.004166666883975267,1.3986208025063007e-17,-0.02500000037252903,-6.938893903907228e-18,-1.4400405895499441e-18,-4.038653092508504e-18,5.421010862427522e-20,0.012500000186264515,-1.6263032587282567e-19,4.903147719096222e-19,0.0015625000232830644,-1.6263032587282567e-19,-0.0015625000232830644,-0.00022321428696159273,-3.5575383784680614e-20,1.3891340334970526e-19,3.8963515573697816e-20,-1.6263032587282567e-19,0.00022321428696159273,4.319868030996932e-20,0.00030637255986221135,-2.727446090158847e-19,-1.7142798105351356e-18,-0.00014140272105578333,1.5246593050577406e-20,8.996195329806812e-20,6.612773430226571e-21,4.903147719096222e-19,4.319868030996932e-20,1.0100194231199566e-05,8.0,3.0,16.0,0.07133374363183975,-0.015012254938483238,-0.031173406168818474,-0.008272059261798859,0.0008680555620230734,0.0026041667442768812,0.0006127451197244227,0.00390625,0.0013786765048280358,0.0002553104714024812,-0.015012254938483238,0.008629493415355682,0.0026041667442768812,0.0006127451197244227,-0.0008680555620230734,-0.0007440476329065859,-0.00017507003212813288,4.336808689942018e-19,-1.4907779871675686e-18,-6.708500942254059e-19,-0.031173406168818474,0.0026041667442768812,0.07023590803146362,0.0013786765048280358,2.4202464617991966e-19,-0.0026041667442768812,-2.7647155398380363e-18,-0.0234375,-0.0013786765048280358,-3.3067788342665525e-19,-0.008272059261798859,0.0006127451197244227,0.0013786765048280358,0.002233601873740554,-9.622294280808852e-19,-1.2468324983583301e-18,-8.169934881152585e-05,-6.559423143537302e-18,-0.00018382353300694376,-0.00010941876826109365,0.0008680555620230734,-0.0008680555620230734,2.4202464617991966e-19,-9.622294280808852e-19,0.00012400794366840273,1.5553661234767843e-20,-3.9251115932924846e-20,-5.823921750008094e-19,8.978549240895584e-20,6.183340514956392e-20,0.0026041667442768812,-0.0007440476329065859,-0.0026041667442768812,-1.2468324983583301e-18,1.5553661234767843e-20,0.0007440476329065859,1.2197274440461925e-19,-1.4907779871675686e-18,-2.710505431213761e-20,4.4159424742055517e-20,0.0006127451197244227,-0.00017507003212813288,-2.7647155398380363e-18,-8.169934881152585e-05,-3.9251115932924846e-20,1.2197274440461925e-19,2.3342670829151757e-05,6.911788849595091e-19,1.0757318430129614e-19,2.0094369040975387e-20,0.00390625,4.336808689942018e-19,-0.0234375,-6.559423143537302e-18,-5.823921750008094e-19,-1.4907779871675686e-18,6.911788849595091e-19,0.01171875,1.951563910473908e-18,1.0238474560784556e-19,0.0013786765048280358,-1.4907779871675686e-18,-0.0013786765048280358,-0.00018382353300694376,8.978549240895584e-20,-2.710505431213761e-20,1.0757318430129614e-19,1.951563910473908e-18,0.00018382353300694376,-1.4823076576950256e-21,0.0002553104714024812,-6.708500942254059e-19,-3.3067788342665525e-19,-0.00010941876826109365,6.183340514956392e-20,4.4159424742055517e-20,2.0094369040975387e-20,1.0238474560784556e-19,-1.4823076576950256e-21,7.294584520423086e-06,8.0,4.0,3.0,0.21736110746860504,-0.05416666716337204,-0.09166666865348816,-0.11145833134651184,0.0034722222480922937,0.008333333767950535,0.010416666977107525,0.010416666977107525,0.01875000074505806,0.015625,-0.05416666716337204,0.03283730149269104,0.008333333767950535,0.010416666977107525,-0.0034722222480922937,-0.0023809524718672037,-0.0029761905316263437,-1.5918639247968564e-17,-1.0367523628534413e-17,-4.413158453097397e-17,-0.09166666865348816,0.008333333767950535,0.13402777910232544,0.01875000074505806,2.575040130247483e-18,-0.0055555556900799274,-1.8530986464613107e-17,-0.03125,-0.012500000186264515,-6.932698651991451e-17,-0.11145833134651184,0.010416666977107525,0.01875000074505806,0.26770833134651184,-4.367691891701991e-18,-3.588854443842584e-17,-0.010416666977107525,-3.519811994218498e-17,-0.01875000074505806,-0.09375,0.0034722222480922937,-0.0034722222480922937,2.575040130247483e-18,-4.367691891701991e-18,0.0004960317746736109,-4.947778766034404e-19,-2.1962281158378785e-19,-2.8583626732379077e-19,2.3103167433303134e-19,2.39491224608217e-18,0.008333333767950535,-0.0023809524718672037,-0.0055555556900799274,-3.588854443842584e-17,-4.947778766034404e-19,0.0015873016091063619,1.1960523975415826e-18,7.938789828361328e-18,3.1523468505411048e-18,1.339784438152139e-17,0.010416666977107525,-0.0029761905316263437,-1.8530986464613107e-17,-0.010416666977107525,-2.1962281158378785e-19,1.1960523975415826e-18,0.0029761905316263437,3.268613289490027e-18,3.768793275878898e-18,2.083994285772729e-18,0.010416666977107525,-1.5918639247968564e-17,-0.03125,-3.519811994218498e-17,-2.8583626732379077e-19,7.938789828361328e-18,3.268613289490027e-18,0.010416666977107525,2.3198433307462983e-18,1.0221326072710566e-17,0.01875000074505806,-1.0367523628534413e-17,-0.012500000186264515,-0.01875000074505806,2.3103167433303134e-19,3.1523468505411048e-18,3.768793275878898e-18,2.3198433307462983e-18,0.012500000186264515,-1.6523240446934598e-17,0.015625,-4.413158453097397e-17,-6.932698651991451e-17,-0.09375,2.39491224608217e-18,1.339784438152139e-17,2.083994285772729e-18,1.0221326072710566e-17,-1.6523240446934598e-17,0.046875,8.0,4.0,4.0,0.17895832657814026,-0.04218750074505806,-0.0715624988079071,-0.0715624988079071,0.0026041667442768812,0.0062500000931322575,0.0062500000931322575,0.0078125,0.011250000447034836,0.0078125,-0.04218750074505806,0.02507440559566021,0.0062500000931322575,0.0062500000931322575,-0.0026041667442768812,-0.0017857142956927419,-0.0017857142956927419,6.887872576544345e-18,-9.943026945881388e-18,1.5962371046183323e-18,-0.0715624988079071,0.0062500000931322575,0.10239583253860474,0.011250000447034836,-3.052344230001047e-18,-0.004166666883975267,-7.618196129631701e-18,-0.0234375,-0.007499999832361937,-1.6851599717254873e-17,-0.0715624988079071,0.0062500000931322575,0.011250000447034836,0.10239583253860474,-4.24412765179882e-18,-9.96033900892151e-18,-0.004166666883975267,-1.5887758941340734e-17,-0.007499999832361937,-0.0234375,0.0026041667442768812,-0.0026041667442768812,-3.052344230001047e-18,-4.24412765179882e-18,0.00037202381645329297,3.335892489901122e-19,2.2318426356052905e-19,2.4460425415660602e-20,9.907599213836048e-19,5.505273683476768e-19,0.0062500000931322575,-0.0017857142956927419,-0.004166666883975267,-9.96033900892151e-18,3.335892489901122e-19,0.0011904762359336019,7.900280538341499e-19,-5.483455554049763e-18,1.1395855334111096e-18,1.4347868552868901e-18,0.0062500000931322575,-0.0017857142956927419,-7.618196129631701e-18,-0.004166666883975267,2.2318426356052905e-19,7.900280538341499e-19,0.0011904762359336019,1.0289780438278158e-18,6.417918079930891e-19,-4.873212156125505e-18,0.0078125,6.887872576544345e-18,-0.0234375,-1.5887758941340734e-17,2.4460425415660602e-20,-5.483455554049763e-18,1.0289780438278158e-18,0.0078125,-7.648757971723698e-18,6.879613591718309e-18,0.011250000447034836,-9.943026945881388e-18,-0.007499999832361937,-0.007499999832361937,9.907599213836048e-19,1.1395855334111096e-18,6.417918079930891e-19,-7.648757971723698e-18,0.004999999888241291,-7.649006953088076e-18,0.0078125,1.5962371046183323e-18,-1.6851599717254873e-17,-0.0234375,5.505273683476768e-19,1.4347868552868901e-18,-4.873212156125505e-18,6.879613591718309e-18,-7.649006953088076e-18,0.0078125,8.0,4.0,5.0,0.1522618979215622,-0.034583333879709244,-0.05874999985098839,-0.04994047433137894,0.0020833334419876337,0.004999999888241291,0.004166666883975267,0.0062500000931322575,0.007499999832361937,0.004464285913854837,-0.034583333879709244,0.020297618582844734,0.004999999888241291,0.004166666883975267,-0.0020833334419876337,-0.0014285714132711291,-0.0011904762359336019,-1.6163540957565913e-17,-2.0571779174943723e-18,3.6339644903939796e-18,-0.05874999985098839,0.004999999888241291,0.08291666954755783,0.007499999832361937,-4.578710215457638e-18,-0.0033333334140479565,-9.699484294030463e-18,-0.01875000074505806,-0.004999999888241291,1.054995086800747e-17,-0.04994047433137894,0.004166666883975267,0.007499999832361937,0.05175595358014107,1.8641141693196488e-18,-2.7379649324183777e-18,-0.0020833334419876337,-1.7161406567206502e-18,-0.0037499999161809683,-0.008928571827709675,0.0020833334419876337,-0.0020833334419876337,-4.578710215457638e-18,1.8641141693196488e-18,0.00029761905898340046,3.954793677104243e-19,1.206936242939925e-20,9.10149309533934e-19,-3.9008364272534675e-20,-4.687373520408702e-19,0.004999999888241291,-0.0014285714132711291,-0.0033333334140479565,-2.7379649324183777e-18,3.954793677104243e-19,0.0009523809421807528,6.779554722896598e-19,2.348445581967157e-18,6.801623901639513e-19,-1.8801563291737432e-19,0.004166666883975267,-0.0011904762359336019,-9.699484294030463e-18,-0.0020833334419876337,1.206936242939925e-20,6.779554722896598e-19,0.0005952381179668009,1.9019363824431765e-18,5.429742787768785e-19,7.732043375481635e-19,0.0062500000931322575,-1.6163540957565913e-17,-0.01875000074505806,-1.7161406567206502e-18,9.10149309533934e-19,2.348445581967157e-18,1.9019363824431765e-18,0.0062500000931322575,2.24077416996812e-18,-2.102610605843694e-18,0.007499999832361937,-2.0571779174943723e-18,-0.004999999888241291,-0.0037499999161809683,-3.9008364272534675e-20,6.801623901639513e-19,5.429742787768785e-19,2.24077416996812e-18,0.0024999999441206455,-1.37884338968901e-18,0.004464285913854837,3.6339644903939796e-18,1.054995086800747e-17,-0.008928571827709675,-4.687373520408702e-19,-1.8801563291737432e-19,7.732043375481635e-19,-2.102610605843694e-18,-1.37884338968901e-18,0.0022321429569274187,8.0,4.0,6.0,0.1325644850730896,-0.02931547537446022,-0.0498511902987957,-0.03686755895614624,0.0017361111240461469,0.004166666883975267,0.0029761905316263437,0.0052083334885537624,0.0053571430034935474,0.0027901786379516125,-0.02931547537446022,0.017056405544281006,0.004166666883975267,0.0029761905316263437,-0.0017361111240461469,-0.0011904762359336019,-0.0008503401186317205,0.0,0.0,-0.0,-0.0498511902987957,0.004166666883975267,0.069692462682724,0.0053571430034935474,5.844421999773543e-20,-0.0027777778450399637,-2.710505431213761e-19,-0.015625,-0.0035714285913854837,-0.0,-0.03686755895614624,0.0029761905316263437,0.0053571430034935474,0.030093006789684296,4.429298230118854e-22,-2.710505431213761e-19,-0.0011904762359336019,0.0,-0.002142857061699033,-0.004185267724096775,0.0017361111240461469,-0.0017361111240461469,5.844421999773543e-20,4.429298230118854e-22,0.00024801588733680546,-1.2826197146968324e-20,-9.59180866858018e-21,0.0,0.0,-0.0,0.004166666883975267,-0.0011904762359336019,-0.0027777778450399637,-2.710505431213761e-19,-1.2826197146968324e-20,0.0007936508045531809,8.809142651444724e-20,0.0,0.0,-0.0,0.0029761905316263437,-0.0008503401186317205,-2.710505431213761e-19,-0.0011904762359336019,-9.59180866858018e-21,8.809142651444724e-20,0.0003401360590942204,0.0,0.0,-0.0,0.0052083334885537624,0.0,-0.015625,0.0,0.0,0.0,0.0,0.0052083334885537624,0.0,-0.0,0.0053571430034935474,0.0,-0.0035714285913854837,-0.002142857061699033,0.0,0.0,0.0,0.0,0.0014285714132711291,-0.0,0.0027901786379516125,-0.0,-0.0,-0.004185267724096775,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008370535797439516,8.0,4.0,7.0,0.11741071194410324,-0.02544642798602581,-0.04330357164144516,-0.02834821492433548,0.0014880952658131719,0.0035714285913854837,0.0022321429569274187,0.004464285913854837,0.004017857369035482,0.0018601190531626344,-0.02544642798602581,0.014710884541273117,0.0035714285913854837,0.0022321429569274187,-0.0014880952658131719,-0.0010204081190750003,-0.0006377550889737904,0.0,-5.421010862427522e-20,-4.87890977618477e-19,-0.04330357164144516,0.0035714285913854837,0.06011904776096344,0.004017857369035482,-4.681056445468211e-20,-0.0023809524718672037,2.168404344971009e-19,-0.013392857275903225,-0.0026785715017467737,0.0,-0.02834821492433548,0.0022321429569274187,0.004017857369035482,0.01912202313542366,-4.418635334840324e-20,1.990285475718434e-19,-0.0007440476329065859,-0.0,-0.0013392857508733869,-0.0022321429569274187,0.0014880952658131719,-0.0014880952658131719,-4.681056445468211e-20,-4.418635334840324e-20,0.00021258502965793014,1.5595204442328758e-20,1.1662900295505862e-21,0.0,7.627292680064386e-21,3.379662275416161e-21,0.0035714285913854837,-0.0010204081190750003,-0.0023809524718672037,1.990285475718434e-19,1.5595204442328758e-20,0.0006802721181884408,-6.296466511010969e-20,-0.0,1.5508458116503486e-21,8.413833905083716e-22,0.0022321429569274187,-0.0006377550889737904,2.168404344971009e-19,-0.0007440476329065859,1.1662900295505862e-21,-6.296466511010969e-20,0.00021258502965793014,0.0,-1.6460406484439207e-21,1.3552527156068805e-19,0.004464285913854837,0.0,-0.013392857275903225,-0.0,0.0,-0.0,0.0,0.004464285913854837,0.0,0.0,0.004017857369035482,-5.421010862427522e-20,-0.0026785715017467737,-0.0013392857508733869,7.627292680064386e-21,1.5508458116503486e-21,-1.6460406484439207e-21,0.0,0.0008928571478463709,0.0,0.0018601190531626344,-4.87890977618477e-19,0.0,-0.0022321429569274187,3.379662275416161e-21,8.413833905083716e-22,1.3552527156068805e-19,0.0,0.0,0.00037202381645329297,8.0,4.0,8.0,0.10538194328546524,-0.02248263917863369,-0.03828125074505806,-0.02248263917863369,0.0013020833721384406,0.0031250000465661287,0.0017361111240461469,0.00390625,0.0031250000465661287,0.0013020833721384406,-0.02248263917863369,0.012934028171002865,0.0031250000465661287,0.0017361111240461469,-0.0013020833721384406,-0.0008928571478463709,-0.0004960317746736109,0.0,1.6263032587282567e-19,1.0842021724855044e-19,-0.03828125074505806,0.0031250000465661287,0.05286458507180214,0.0031250000465661287,1.6312866341779765e-19,-0.0020833334419876337,2.710505431213761e-20,-0.01171875,-0.0020833334419876337,3.7947076036992655e-19,-0.02248263917863369,0.0017361111240461469,0.0031250000465661287,0.012934028171002865,8.374398493471873e-20,-8.974784922873614e-20,-0.0004960317746736109,-0.0,-0.0008928571478463709,-0.0013020833721384406,0.0013020833721384406,-0.0013020833721384406,1.6312866341779765e-19,8.374398493471873e-20,0.00018601190822664648,-4.467871645215409e-20,-1.811992607731539e-20,-0.0,-6.387576133788102e-22,-3.772400400503914e-21,0.0031250000465661287,-0.0008928571478463709,-0.0020833334419876337,-8.974784922873614e-20,-4.467871645215409e-20,0.0005952381179668009,2.764463133428934e-20,0.0,-1.3749131185566468e-21,-1.5482231078868656e-21,0.0017361111240461469,-0.0004960317746736109,2.710505431213761e-20,-0.0004960317746736109,-1.811992607731539e-20,2.764463133428934e-20,0.00014172335795592517,0.0,-4.294386990721177e-20,-2.0328790734103208e-20,0.00390625,0.0,-0.01171875,-0.0,-0.0,0.0,0.0,0.00390625,0.0,0.0,0.0031250000465661287,1.6263032587282567e-19,-0.0020833334419876337,-0.0008928571478463709,-6.387576133788102e-22,-1.3749131185566468e-21,-4.294386990721177e-20,0.0,0.0005952381179668009,-9.486769009248164e-20,0.0013020833721384406,1.0842021724855044e-19,3.7947076036992655e-19,-0.0013020833721384406,-3.772400400503914e-21,-1.5482231078868656e-21,-2.0328790734103208e-20,0.0,-9.486769009248164e-20,0.00018601190822664648,8.0,4.0,9.0,0.09559763967990875,-0.02013888955116272,-0.03430555388331413,-0.018270201981067657,0.0011574074160307646,0.0027777778450399637,0.0013888889225199819,0.0034722222480922937,0.0024999999441206455,0.0009469697251915932,-0.02013888955116272,0.011541005223989487,0.0027777778450399637,0.0013888889225199819,-0.0011574074160307646,-0.0007936508045531809,-0.00039682540227659047,0.0,1.2197274440461925e-19,1.0842021724855044e-19,-0.03430555388331413,0.0027777778450399637,0.047175925225019455,0.0024999999441206455,3.537666495162469e-21,-0.0018518518190830946,0.0,-0.010416666977107525,-0.0016666667070239782,2.710505431213761e-19,-0.018270201981067657,0.0013888889225199819,0.0024999999441206455,0.00916711799800396,1.5220599869180208e-20,-7.951207075976062e-20,-0.00034722223062999547,-0.0,-0.0006249999860301614,-0.000811688310932368,0.0011574074160307646,-0.0011574074160307646,3.537666495162469e-21,1.5220599869180208e-20,0.0001653439103392884,6.030987982511546e-21,4.9936530072721155e-21,-0.0,-4.519017842115664e-22,-4.985217219052495e-21,0.0027777778450399637,-0.0007936508045531809,-0.0018518518190830946,-7.951207075976062e-20,6.030987982511546e-21,0.0005291005363687873,2.381197074538158e-20,0.0,-2.0292061168407726e-21,-2.021897604543826e-21,0.0013888889225199819,-0.00039682540227659047,0.0,-0.00034722223062999547,4.9936530072721155e-21,2.381197074538158e-20,9.920635056914762e-05,0.0,-2.6584718932750543e-20,-2.0328790734103208e-20,0.0034722222480922937,0.0,-0.010416666977107525,-0.0,-0.0,0.0,0.0,0.0034722222480922937,0.0,0.0,0.0024999999441206455,1.2197274440461925e-19,-0.0016666667070239782,-0.0006249999860301614,-4.519017842115664e-22,-2.0292061168407726e-21,-2.6584718932750543e-20,0.0,0.00041666667675599456,-7.453889935837843e-20,0.0009469697251915932,1.0842021724855044e-19,2.710505431213761e-19,-0.000811688310932368,-4.985217219052495e-21,-2.021897604543826e-21,-2.0328790734103208e-20,0.0,-7.453889935837843e-20,0.000101461038866546,8.0,4.0,10.0,0.0874810591340065,-0.01823863573372364,-0.031079545617103577,-0.0151420459151268,0.0010416667209938169,0.0024999999441206455,0.0011363636003807187,0.0031250000465661287,0.0020454544574022293,0.0007102272938936949,-0.01823863573372364,0.010419372469186783,0.0024999999441206455,0.0011363636003807187,-0.0010416667209938169,-0.0007142857066355646,-0.0003246753185521811,-0.0,2.710505431213761e-20,2.710505431213761e-20,-0.031079545617103577,0.0024999999441206455,0.04259469732642174,0.0020454544574022293,-5.551114999048691e-19,-0.0016666667070239782,-1.7618285302889447e-19,-0.00937500037252903,-0.0013636363437399268,5.421010862427522e-20,-0.0151420459151268,0.0011363636003807187,0.0020454544574022293,0.006738478317856789,-2.5232340669772284e-19,-2.0185873311299652e-19,-0.00025252526393160224,-0.0,-0.00045454545761458576,-0.0005326704704202712,0.0010416667209938169,-0.0010416667209938169,-5.551114999048691e-19,-2.5232340669772284e-19,0.00014880952949170023,1.5860328753349075e-19,7.209240283682775e-20,0.0,-1.634016786237304e-36,-6.018531076210112e-36,0.0024999999441206455,-0.0007142857066355646,-0.0016666667070239782,-2.0185873311299652e-19,1.5860328753349075e-19,0.0004761904710903764,5.767392097699249e-20,0.0,-6.018531076210112e-36,-3.009265538105056e-36,0.0011363636003807187,-0.0003246753185521811,-1.7618285302889447e-19,-0.00025252526393160224,7.209240283682775e-20,5.767392097699249e-20,7.215006917249411e-05,0.0,-6.776263578034403e-21,-6.776263578034403e-21,0.0031250000465661287,-0.0,-0.00937500037252903,-0.0,0.0,0.0,0.0,0.0031250000465661287,0.0,0.0,0.0020454544574022293,2.710505431213761e-20,-0.0013636363437399268,-0.00045454545761458576,-1.634016786237304e-36,-6.018531076210112e-36,-6.776263578034403e-21,0.0,0.0003030303050763905,-1.3552527156068805e-20,0.0007102272938936949,2.710505431213761e-20,5.421010862427522e-20,-0.0005326704704202712,-6.018531076210112e-36,-3.009265538105056e-36,-6.776263578034403e-21,0.0,-1.3552527156068805e-20,5.918560782447457e-05,8.0,4.0,11.0,0.0806381106376648,-0.01666666753590107,-0.028409091755747795,-0.0127549534663558,0.0009469697251915932,0.0022727272007614374,0.0009469697251915932,0.0028409091755747795,0.001704545458778739,0.0005463286652229726,-0.01666666753590107,0.009496753104031086,0.0022727272007614374,0.0009469697251915932,-0.0009469697251915932,-0.0006493506371043622,-0.00027056277031078935,-0.0,-5.421010862427522e-20,6.776263578034403e-20,-0.028409091755747795,0.0022727272007614374,0.038825757801532745,0.001704545458778739,0.0,-0.0015151514671742916,-6.776263578034403e-20,-0.008522727526724339,-0.0011363636003807187,-1.2197274440461925e-19,-0.0127549534663558,0.0009469697251915932,0.001704545458778739,0.005100524518638849,-0.0,-0.0,-0.00018939393339678645,-0.0,-0.0003409090859349817,-0.0003642191004473716,0.0009469697251915932,-0.0009469697251915932,0.0,-0.0,0.00013528138515539467,0.0,0.0,0.0,0.0,0.0,0.0022727272007614374,-0.0006493506371043622,-0.0015151514671742916,-0.0,0.0,0.00043290044413879514,0.0,0.0,0.0,0.0,0.0009469697251915932,-0.00027056277031078935,-6.776263578034403e-20,-0.00018939393339678645,0.0,0.0,5.411255551734939e-05,0.0,1.0164395367051604e-20,-1.5246593050577406e-20,0.0028409091755747795,-0.0,-0.008522727526724339,-0.0,0.0,0.0,0.0,0.0028409091755747795,0.0,0.0,0.001704545458778739,-5.421010862427522e-20,-0.0011363636003807187,-0.0003409090859349817,0.0,0.0,1.0164395367051604e-20,0.0,0.00022727272880729288,2.0328790734103208e-20,0.0005463286652229726,6.776263578034403e-20,-1.2197274440461925e-19,-0.0003642191004473716,0.0,0.0,-1.5246593050577406e-20,0.0,2.0328790734103208e-20,3.6421912227524444e-05,8.0,4.0,12.0,0.07479014247655869,-0.015344550833106041,-0.026161858811974525,-0.01089171227067709,0.0008680555620230734,0.0020833334419876337,0.0008012820617295802,0.0026041667442768812,0.0014423077227547765,0.0004292582452762872,-0.015344550833106041,0.008724435232579708,0.0020833334419876337,0.0008012820617295802,-0.0008680555620230734,-0.0005952381179668009,-0.00022893772984389216,-0.0,-6.098637220230962e-20,-3.3881317890172014e-20,-0.026161858811974525,0.0020833334419876337,0.035670407116413116,0.0014423077227547765,0.0,-0.0013888889225199819,-6.098637220230962e-20,-0.0078125,-0.000961538462433964,-1.2197274440461925e-19,-0.01089171227067709,0.0008012820617295802,0.0014423077227547765,0.003954899497330189,-0.0,-0.0,-0.00014568764891009778,-0.0,-0.00026223776512779295,-0.0002575549588073045,0.0008680555620230734,-0.0008680555620230734,0.0,-0.0,0.00012400794366840273,0.0,0.0,0.0,0.0,0.0,0.0020833334419876337,-0.0005952381179668009,-0.0013888889225199819,-0.0,0.0,0.00039682540227659047,0.0,0.0,0.0,0.0,0.0008012820617295802,-0.00022893772984389216,-6.098637220230962e-20,-0.00014568764891009778,0.0,0.0,4.162504046689719e-05,0.0,1.1858461261560205e-20,6.776263578034403e-21,0.0026041667442768812,-0.0,-0.0078125,-0.0,0.0,0.0,0.0,0.0026041667442768812,0.0,0.0,0.0014423077227547765,-6.098637220230962e-20,-0.000961538462433964,-0.00026223776512779295,0.0,0.0,1.1858461261560205e-20,0.0,0.00017482518160250038,2.371692252312041e-20,0.0004292582452762872,-3.3881317890172014e-20,-1.2197274440461925e-19,-0.0002575549588073045,0.0,0.0,6.776263578034403e-21,0.0,2.371692252312041e-20,2.341408617212437e-05,8.0,4.0,13.0,0.06973443180322647,-0.014217033050954342,-0.024244505912065506,-0.009409341029822826,0.0008012820617295802,0.001923076924867928,0.0006868132040835917,0.0024038462433964014,0.0012362637789919972,0.00034340660204179585,-0.014217033050954342,0.008068419992923737,0.001923076924867928,0.0006868132040835917,-0.0008012820617295802,-0.0005494505749084055,-0.00019623234402388334,-0.0,-6.776263578034403e-21,4.743384504624082e-20,-0.024244505912065506,0.001923076924867928,0.032989926636219025,0.0012362637789919972,0.0,-0.0012820513220503926,-6.776263578034403e-21,-0.0072115384973585606,-0.0008241758332587779,1.3552527156068805e-20,-0.009409341029822826,0.0006868132040835917,0.0012362637789919972,0.0031291625928133726,-0.0,-0.0,-0.00011446886492194608,-0.0,-0.00020604395831469446,-0.00018731268937699497,0.0008012820617295802,-0.0008012820617295802,0.0,-0.0,0.00011446886492194608,0.0,0.0,0.0,0.0,0.0,0.001923076924867928,-0.0005494505749084055,-0.0012820513220503926,-0.0,0.0,0.00036630037357099354,0.0,0.0,0.0,0.0,0.0006868132040835917,-0.00019623234402388334,-6.776263578034403e-21,-0.00011446886492194608,0.0,0.0,3.270538945798762e-05,0.0,0.0,-5.929230630780102e-21,0.0024038462433964014,-0.0,-0.0072115384973585606,-0.0,0.0,0.0,0.0,0.0024038462433964014,0.0,0.0,0.0012362637789919972,-6.776263578034403e-21,-0.0008241758332587779,-0.00020604395831469446,0.0,0.0,0.0,0.0,0.00013736264372710139,-1.6940658945086007e-21,0.00034340660204179585,4.743384504624082e-20,1.3552527156068805e-20,-0.00018731268937699497,0.0,0.0,-5.929230630780102e-21,0.0,-1.6940658945086007e-21,1.5609390175086446e-05,8.0,4.0,14.0,0.06531994044780731,-0.01324404776096344,-0.02258928492665291,-0.008210565894842148,0.0007440476329065859,0.0017857142956927419,0.0005952381179668009,0.0022321429569274187,0.0010714285308495164,0.00027901786961592734,-0.01324404776096344,0.0075042517855763435,0.0017857142956927419,0.0005952381179668009,-0.0007440476329065859,-0.0005102040595375001,-0.0001700680295471102,-9.215718466126788e-18,-1.5449880957918438e-18,-1.412850956020173e-18,-0.02258928492665291,0.0017857142956927419,0.030684523284435272,0.0010714285308495164,-4.351568487202108e-18,-0.0011904762359336019,-1.4365678785432934e-18,-0.0066964286379516125,-0.0007142857066355646,-1.2018283929638872e-18,-0.008210565894842148,0.0005952381179668009,0.0010714285308495164,0.002518744207918644,-2.3174821436877657e-18,-6.776263578034403e-19,-9.157509339274839e-05,-3.5236570605778894e-18,-0.00016483516083098948,-0.00013950893480796367,0.0007440476329065859,-0.0007440476329065859,-4.351568487202108e-18,-2.3174821436877657e-18,0.00010629251482896507,-8.206531235442186e-20,3.201787060937184e-20,1.0199387174914129e-18,2.0837010502455788e-19,1.3298417271892515e-19,0.0017857142956927419,-0.0005102040595375001,-0.0011904762359336019,-6.776263578034403e-19,-8.206531235442186e-20,0.0003401360590942204,-6.437450399132683e-20,-6.098637220230962e-19,-2.320870275476783e-19,1.0035719021715884e-19,0.0005952381179668009,-0.0001700680295471102,-1.4365678785432934e-18,-9.157509339274839e-05,3.201787060937184e-20,-6.437450399132683e-20,2.616431265778374e-05,3.7269449679189215e-19,6.903318520122548e-20,3.84942585971359e-20,0.0022321429569274187,-9.215718466126788e-18,-0.0066964286379516125,-3.5236570605778894e-18,1.0199387174914129e-18,-6.098637220230962e-19,3.7269449679189215e-19,0.0022321429569274187,-3.7947076036992655e-19,2.090607362125543e-19,0.0010714285308495164,-1.5449880957918438e-18,-0.0007142857066355646,-0.00016483516083098948,2.0837010502455788e-19,-2.320870275476783e-19,6.903318520122548e-20,-3.7947076036992655e-19,0.00010989011207129806,2.6469779601696886e-20,0.00027901786961592734,-1.412850956020173e-18,-1.2018283929638872e-18,-0.00013950893480796367,1.3298417271892515e-19,1.0035719021715884e-19,3.84942585971359e-20,2.090607362125543e-19,2.6469779601696886e-20,1.073145631380612e-05,8.0,4.0,15.0,0.06143178045749664,-0.012395833618938923,-0.021145833656191826,-0.007227328605949879,0.0006944444612599909,0.0016666667070239782,0.0005208333604969084,0.0020833334419876337,0.0009374999790452421,0.0002297794126207009,-0.012395833618938923,0.007013889029622078,0.0016666667070239782,0.0005208333604969084,-0.0006944444612599909,-0.0004761904710903764,-0.00014880952949170023,-5.4752209710517974e-18,-5.692061405548898e-19,-3.4813054132151744e-19,-0.021145833656191826,0.0016666667070239782,0.028680555522441864,0.0009374999790452421,-2.805922369232978e-18,-0.0011111111380159855,-1.1655173354219173e-18,-0.0062500000931322575,-0.0006249999860301614,2.9392483355659494e-20,-0.007227328605949879,0.0005208333604969084,0.0009374999790452421,0.0020576452370733023,-9.215718466126788e-19,-8.402566836762659e-19,-7.440476474585012e-05,-3.2526065174565133e-19,-0.00013392856635618955,-0.00010605203715385869,0.0006944444612599909,-0.0006944444612599909,-2.805922369232978e-18,-9.215718466126788e-19,9.920635056914762e-05,3.022750344322102e-19,1.1088397470303964e-19,4.470746291714487e-19,5.293955920339377e-20,3.5151867311053464e-20,0.0016666667070239782,-0.0004761904710903764,-0.0011111111380159855,-8.402566836762659e-19,3.022750344322102e-19,0.0003174603043589741,1.0672615135404184e-19,3.4558944247975454e-19,2.710505431213761e-20,2.822857237913776e-20,0.0005208333604969084,-0.00014880952949170023,-1.1655173354219173e-18,-7.440476474585012e-05,1.1088397470303964e-19,1.0672615135404184e-19,2.1258503693388775e-05,2.0328790734103208e-19,2.202285662861181e-20,5.258907776953494e-21,0.0020833334419876337,-5.4752209710517974e-18,-0.0062500000931322575,-3.2526065174565133e-19,4.470746291714487e-19,3.4558944247975454e-19,2.0328790734103208e-19,0.0020833334419876337,-1.3552527156068805e-19,-2.2312526554957356e-20,0.0009374999790452421,-5.692061405548898e-19,-0.0006249999860301614,-0.00013392856635618955,5.293955920339377e-20,2.710505431213761e-20,2.202285662861181e-20,-1.3552527156068805e-19,8.928571332944557e-05,-6.988021814847978e-21,0.0002297794126207009,-3.4813054132151744e-19,2.9392483355659494e-20,-0.00010605203715385869,3.5151867311053464e-20,2.822857237913776e-20,5.258907776953494e-21,-2.2312526554957356e-20,-6.988021814847978e-21,7.575145446025999e-06,8.0,4.0,16.0,0.05798100307583809,-0.011649816296994686,-0.019875919446349144,-0.006410845555365086,0.0006510416860692203,0.0015625000232830644,0.0004595588252414018,0.001953125,0.0008272058912552893,0.00019148284627590328,-0.011649816296994686,0.006583727430552244,0.0015625000232830644,0.0004595588252414018,-0.0006510416860692203,-0.00044642857392318547,-0.00013130252773407847,-1.8973538018496328e-18,7.318364664277155e-19,1.2112571145736495e-19,-0.019875919446349144,0.0015625000232830644,0.02692248858511448,0.0008272058912552893,-2.580231722567019e-18,-0.0010416667209938169,4.336808689942018e-19,-0.005859375,-0.0005514706135727465,4.934665368386024e-19,-0.006410845555365086,0.0004595588252414018,0.0008272058912552893,0.0017027748981490731,-1.4907779871675686e-19,1.0299920638612292e-18,-6.127451342763379e-05,8.944667923005412e-19,-0.00011029411689378321,-8.206407801480964e-05,0.0006510416860692203,-0.0006510416860692203,-2.580231722567019e-18,-1.4907779871675686e-19,9.300595411332324e-05,3.153576454521665e-19,7.116121072459471e-20,4.825708104124773e-19,-8.470329472543003e-21,-3.8116482626443515e-21,0.0015625000232830644,-0.00044642857392318547,-0.0010416667209938169,1.0299920638612292e-18,3.153576454521665e-19,0.00029761905898340046,-5.759824041329242e-20,-1.3145951341386741e-18,-1.6601845766184287e-19,-3.2188095332147305e-20,0.0004595588252414018,-0.00013130252773407847,4.336808689942018e-19,-6.127451342763379e-05,7.116121072459471e-20,-5.759824041329242e-20,1.750700357661117e-05,3.3881317890172014e-20,-4.1504614415460717e-20,-4.063710147790363e-21,0.001953125,-1.8973538018496328e-18,-0.005859375,8.944667923005412e-19,4.825708104124773e-19,-1.3145951341386741e-18,3.3881317890172014e-20,0.001953125,1.3552527156068805e-20,-5.2483879621105087e-20,0.0008272058912552893,7.318364664277155e-19,-0.0005514706135727465,-0.00011029411689378321,-8.470329472543003e-21,-1.6601845766184287e-19,-4.1504614415460717e-20,1.3552527156068805e-20,7.352940883720294e-05,-2.286988957586611e-20,0.00019148284627590328,1.2112571145736495e-19,4.934665368386024e-19,-8.206407801480964e-05,-3.8116482626443515e-21,-3.2188095332147305e-20,-4.063710147790363e-21,-5.2483879621105087e-20,-2.286988957586611e-20,5.4709385040041525e-06,8.0,5.0,3.0,0.1855158656835556,-0.04444444552063942,-0.06408730149269104,-0.09166666865348816,0.0027777778450399637,0.0055555556900799274,0.008333333767950535,0.0059523810632526875,0.012500000186264515,0.012500000186264515,-0.04444444552063942,0.02658730186522007,0.0055555556900799274,0.008333333767950535,-0.0027777778450399637,-0.0015873016091063619,-0.0023809524718672037,2.4878947915586434e-18,4.898042980741004e-19,1.4055252790792808e-17,-0.06408730149269104,0.0055555556900799274,0.06775793433189392,0.012500000186264515,-4.336808689942018e-19,-0.0027777778450399637,2.6105046718300816e-18,-0.011904762126505375,-0.0062500000931322575,1.9911608396016683e-18,-0.09166666865348816,0.008333333767950535,0.012500000186264515,0.21666666865348816,2.927345865710862e-18,2.7559836144967734e-18,-0.008333333767950535,-6.203180855538783e-18,-0.012500000186264515,-0.07500000298023224,0.0027777778450399637,-0.0027777778450399637,-4.336808689942018e-19,2.927345865710862e-18,0.00039682540227659047,1.2197274440461925e-19,1.8973538018496328e-19,8.542827329589301e-20,-4.508814694467826e-19,-1.4131525667510251e-18,0.0055555556900799274,-0.0015873016091063619,-0.0027777778450399637,2.7559836144967734e-18,1.2197274440461925e-19,0.0007936508045531809,3.5473361385794576e-34,-6.565598253605163e-19,4.2596384256575316e-19,-1.912375815363902e-18,0.008333333767950535,-0.0023809524718672037,2.6105046718300816e-18,-0.008333333767950535,1.8973538018496328e-19,3.5473361385794576e-34,0.0023809524718672037,-9.75384805145352e-19,1.0741941142542254e-18,-1.3010426069826053e-18,0.0059523810632526875,2.4878947915586434e-18,-0.011904762126505375,-6.203180855538783e-18,8.542827329589301e-20,-6.565598253605163e-19,-9.75384805145352e-19,0.0029761905316263437,1.6800765125915273e-18,3.1339400139602685e-18,0.012500000186264515,4.898042980741004e-19,-0.0062500000931322575,-0.012500000186264515,-4.508814694467826e-19,4.2596384256575316e-19,1.0741941142542254e-18,1.6800765125915273e-18,0.0062500000931322575,-6.565260970710395e-18,0.012500000186264515,1.4055252790792808e-17,1.9911608396016683e-18,-0.07500000298023224,-1.4131525667510251e-18,-1.912375815363902e-18,-1.3010426069826053e-18,3.1339400139602685e-18,-6.565260970710395e-18,0.03750000149011612,8.0,5.0,4.0,0.1522618979215622,-0.034583333879709244,-0.04994047433137894,-0.05874999985098839,0.0020833334419876337,0.004166666883975267,0.004999999888241291,0.004464285913854837,0.007499999832361937,0.0062500000931322575,-0.034583333879709244,0.020297618582844734,0.004166666883975267,0.004999999888241291,-0.0020833334419876337,-0.0011904762359336019,-0.0014285714132711291,2.3324013800109253e-18,-3.1347473422381203e-18,-1.8300222926045514e-17,-0.04994047433137894,0.004166666883975267,0.05175595358014107,0.007499999832361937,2.777751699496719e-18,-0.0020833334419876337,-6.258249577638888e-18,-0.008928571827709675,-0.0037499999161809683,-2.4195621869772197e-17,-0.05874999985098839,0.004999999888241291,0.007499999832361937,0.08291666954755783,-4.5508846868319664e-18,-1.47130086159215e-17,-0.0033333334140479565,-1.2414406869715257e-17,-0.004999999888241291,-0.01875000074505806,0.0020833334419876337,-0.0020833334419876337,2.777751699496719e-18,-4.5508846868319664e-18,0.00029761905898340046,3.720346177735199e-34,2.9037697189882404e-19,-7.1641471788243e-19,2.246463893037475e-20,9.825115865079557e-19,0.004166666883975267,-0.0011904762359336019,-0.0020833334419876337,-1.47130086159215e-17,3.720346177735199e-34,0.0005952381179668009,6.869759802671271e-19,1.0795607586708928e-18,8.461820368979247e-19,3.189936625912505e-18,0.004999999888241291,-0.0014285714132711291,-6.258249577638888e-18,-0.0033333334140479565,2.9037697189882404e-19,6.869759802671271e-19,0.0009523809421807528,6.729736736529826e-19,5.448209077956149e-19,1.920216660390292e-18,0.004464285913854837,2.3324013800109253e-18,-0.008928571827709675,-1.2414406869715257e-17,-7.1641471788243e-19,1.0795607586708928e-18,6.729736736529826e-19,0.0022321429569274187,9.884782470614538e-20,2.9570577797234604e-18,0.007499999832361937,-3.1347473422381203e-18,-0.0037499999161809683,-0.004999999888241291,2.246463893037475e-20,8.461820368979247e-19,5.448209077956149e-19,9.884782470614538e-20,0.0024999999441206455,-9.851274547222752e-20,0.0062500000931322575,-1.8300222926045514e-17,-2.4195621869772197e-17,-0.01875000074505806,9.825115865079557e-19,3.189936625912505e-18,1.920216660390292e-18,2.9570577797234604e-18,-9.851274547222752e-20,0.0062500000931322575,8.0,5.0,5.0,0.12928570806980133,-0.028333334252238274,-0.04095238074660301,-0.04095238074660301,0.0016666667070239782,0.0033333334140479565,0.0033333334140479565,0.0035714285913854837,0.004999999888241291,0.0035714285913854837,-0.028333334252238274,0.016428571194410324,0.0033333334140479565,0.0033333334140479565,-0.0016666667070239782,-0.0009523809421807528,-0.0009523809421807528,-2.9854737085113415e-18,1.306144760398409e-18,-1.0445101175873005e-18,-0.04095238074660301,0.0033333334140479565,0.041904762387275696,0.004999999888241291,-1.4977251669396718e-18,-0.0016666667070239782,2.4319484308286194e-18,-0.0071428571827709675,-0.0024999999441206455,5.5683544769900616e-18,-0.04095238074660301,0.0033333334140479565,0.004999999888241291,0.041904762387275696,-3.408197381220148e-19,4.7416174400405155e-19,-0.0016666667070239782,8.177308185171606e-18,-0.0024999999441206455,-0.0071428571827709675,0.0016666667070239782,-0.0016666667070239782,-1.4977251669396718e-18,-3.408197381220148e-19,0.0002380952355451882,8.895713564896933e-20,5.3500911108936105e-20,3.43557835196536e-19,-9.3928032303667e-20,8.535565588539881e-20,0.0033333334140479565,-0.0009523809421807528,-0.0016666667070239782,4.7416174400405155e-19,8.895713564896933e-20,0.0004761904710903764,6.778185318930168e-21,6.60664760849099e-19,-3.0918524957068993e-20,-1.1271510700998769e-19,0.0033333334140479565,-0.0009523809421807528,2.4319484308286194e-18,-0.0016666667070239782,5.3500911108936105e-20,6.778185318930168e-21,0.0004761904710903764,-4.027325526103838e-19,-4.369429591373812e-19,1.2896609119466054e-19,0.0035714285913854837,-2.9854737085113415e-18,-0.0071428571827709675,8.177308185171606e-18,3.43557835196536e-19,6.60664760849099e-19,-4.027325526103838e-19,0.0017857142956927419,-3.325199888014167e-19,-1.5063405632121413e-18,0.004999999888241291,1.306144760398409e-18,-0.0024999999441206455,-0.0024999999441206455,-9.3928032303667e-20,-3.0918524957068993e-20,-4.369429591373812e-19,-3.325199888014167e-19,0.0012499999720603228,2.537652600535852e-19,0.0035714285913854837,-1.0445101175873005e-18,5.5683544769900616e-18,-0.0071428571827709675,8.535565588539881e-20,-1.1271510700998769e-19,1.2896609119466054e-19,-1.5063405632121413e-18,2.537652600535852e-19,0.0017857142956927419,8.0,5.0,6.0,0.11240079253911972,-0.02400793693959713,-0.0347222238779068,-0.03020833246409893,0.0013888889225199819,0.0027777778450399637,0.0023809524718672037,0.0029761905316263437,0.0035714285913854837,0.0022321429569274187,-0.02400793693959713,0.013803854584693909,0.0027777778450399637,0.0023809524718672037,-0.0013888889225199819,-0.0007936508045531809,-0.0006802721181884408,0.0,0.0,-0.0,-0.0347222238779068,0.0027777778450399637,0.0352182537317276,0.0035714285913854837,7.709882302142545e-20,-0.0013888889225199819,1.995009872550591e-20,-0.0059523810632526875,-0.0017857142956927419,-0.0,-0.03020833246409893,0.0023809524718672037,0.0035714285913854837,0.024360118433833122,9.551110089972865e-20,1.995009872550591e-20,-0.0009523809421807528,0.0,-0.0014285714132711291,-0.0033482143189758062,0.0013888889225199819,-0.0013888889225199819,7.709882302142545e-20,9.551110089972865e-20,0.00019841270113829523,-2.2028234918180537e-20,-2.728888550975472e-20,0.0,0.0,-0.0,0.0027777778450399637,-0.0007936508045531809,-0.0013888889225199819,1.995009872550591e-20,-2.2028234918180537e-20,0.00039682540227659047,-5.700028495785105e-21,0.0,0.0,-0.0,0.0023809524718672037,-0.0006802721181884408,1.995009872550591e-20,-0.0009523809421807528,-2.728888550975472e-20,-5.700028495785105e-21,0.0002721088530961424,0.0,0.0,-0.0,0.0029761905316263437,0.0,-0.0059523810632526875,0.0,0.0,0.0,0.0,0.0014880952658131719,0.0,-0.0,0.0035714285913854837,0.0,-0.0017857142956927419,-0.0014285714132711291,0.0,0.0,0.0,0.0,0.0007142857066355646,-0.0,0.0022321429569274187,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,8.0,5.0,7.0,0.09944728016853333,-0.02083333395421505,-0.03014455735683441,-0.02321428619325161,0.0011904762359336019,0.0023809524718672037,0.0017857142956927419,0.0025510203558951616,0.0026785715017467737,0.0014880952658131719,-0.02083333395421505,0.011904762126505375,0.0023809524718672037,0.0017857142956927419,-0.0011904762359336019,-0.0006802721181884408,-0.0005102040595375001,0.0,8.637874946005297e-22,-3.5236570605778894e-19,-0.03014455735683441,0.0023809524718672037,0.030378401279449463,0.0026785715017467737,-3.0347769324665445e-22,-0.0011904762359336019,0.0,-0.005102040711790323,-0.0013392857508733869,0.0,-0.02321428619325161,0.0017857142956927419,0.0026785715017467737,0.015476190485060215,-3.569197424578511e-20,-0.0,-0.0005952381179668009,-0.0,-0.0008928571478463709,-0.0017857142956927419,0.0011904762359336019,-0.0011904762359336019,-3.0347769324665445e-22,-3.569197424578511e-20,0.0001700680295471102,0.0,1.400215959571533e-20,0.0,1.0115923108221815e-22,-2.079677462800362e-21,0.0023809524718672037,-0.0006802721181884408,-0.0011904762359336019,-0.0,0.0,0.0003401360590942204,0.0,0.0,0.0,0.0,0.0017857142956927419,-0.0005102040595375001,0.0,-0.0005952381179668009,1.400215959571533e-20,0.0,0.0001700680295471102,0.0,6.776263578034403e-21,1.2197274440461925e-19,0.0025510203558951616,0.0,-0.005102040711790323,-0.0,0.0,0.0,0.0,0.0012755101779475808,0.0,0.0,0.0026785715017467737,8.637874946005297e-22,-0.0013392857508733869,-0.0008928571478463709,1.0115923108221815e-22,0.0,6.776263578034403e-21,0.0,0.00044642857392318547,1.3552527156068805e-20,0.0014880952658131719,-3.5236570605778894e-19,0.0,-0.0017857142956927419,-2.079677462800362e-21,0.0,1.2197274440461925e-19,0.0,1.3552527156068805e-20,0.00029761905898340046,8.0,5.0,8.0,0.08918650448322296,-0.01840277761220932,-0.02663690410554409,-0.01840277761220932,0.0010416667209938169,0.0020833334419876337,0.0013888889225199819,0.0022321429569274187,0.0020833334419876337,0.0010416667209938169,-0.01840277761220932,0.01046627014875412,0.0020833334419876337,0.0013888889225199819,-0.0010416667209938169,-0.0005952381179668009,-0.00039682540227659047,0.0,0.0,2.710505431213761e-20,-0.02663690410554409,0.0020833334419876337,0.02671130932867527,0.0020833334419876337,6.404274640455624e-20,-0.0010416667209938169,1.3552527156068805e-20,-0.004464285913854837,-0.0010416667209938169,0.0,-0.01840277761220932,0.0013888889225199819,0.0020833334419876337,0.01046627014875412,7.435827833239637e-21,9.07804226647952e-21,-0.00039682540227659047,-0.0,-0.0005952381179668009,-0.0010416667209938169,0.0010416667209938169,-0.0010416667209938169,6.404274640455624e-20,7.435827833239637e-21,0.00014880952949170023,-1.2065719280412322e-20,-4.38035028185233e-21,-0.0,8.021996469823108e-22,-4.34868194675055e-22,0.0020833334419876337,-0.0005952381179668009,-0.0010416667209938169,9.07804226647952e-21,-1.2065719280412322e-20,0.00029761905898340046,-3.474318111952188e-22,-0.0,-4.784118020303168e-22,-9.120085296309984e-22,0.0013888889225199819,-0.00039682540227659047,1.3552527156068805e-20,-0.00039682540227659047,-4.38035028185233e-21,-3.474318111952188e-22,0.00011337868636474013,0.0,-8.144973952713056e-22,-6.776263578034403e-21,0.0022321429569274187,0.0,-0.004464285913854837,-0.0,-0.0,-0.0,0.0,0.0011160714784637094,0.0,0.0,0.0020833334419876337,0.0,-0.0010416667209938169,-0.0005952381179668009,8.021996469823108e-22,-4.784118020303168e-22,-8.144973952713056e-22,0.0,0.00029761905898340046,6.776263578034403e-21,0.0010416667209938169,2.710505431213761e-20,0.0,-0.0010416667209938169,-4.34868194675055e-22,-9.120085296309984e-22,-6.776263578034403e-21,0.0,6.776263578034403e-21,0.00014880952949170023,8.0,5.0,9.0,0.08085377514362335,-0.01648148149251938,-0.023862434551119804,-0.01494949497282505,0.0009259259095415473,0.0018518518190830946,0.0011111111380159855,0.0019841270986944437,0.0016666667070239782,0.0007575757335871458,-0.01648148149251938,0.009338624775409698,0.0018518518190830946,0.0011111111380159855,-0.0009259259095415473,-0.0005291005363687873,-0.0003174603043589741,0.0,0.0,9.486769009248164e-20,-0.023862434551119804,0.0018518518190830946,0.023835979402065277,0.0016666667070239782,-4.224382630857329e-20,-0.0009259259095415473,1.3552527156068805e-20,-0.003968254197388887,-0.0008333333535119891,2.710505431213761e-20,-0.01494949497282505,0.0011111111380159855,0.0016666667070239782,0.007417027372866869,-2.7964146001759286e-20,-0.0,-0.00027777778450399637,-0.0,-0.00041666667675599456,-0.0006493506371043622,0.0009259259095415473,-0.0009259259095415473,-4.224382630857329e-20,-2.7964146001759286e-20,0.00013227513409219682,8.975622120126397e-21,6.2405490208230274e-21,0.0,1.8602544767268167e-21,8.570233341935089e-22,0.0018518518190830946,-0.0005291005363687873,-0.0009259259095415473,-0.0,8.975622120126397e-21,0.00026455026818439364,3.741680869433611e-24,0.0,-4.4341347678832007e-23,-8.382861585114056e-22,0.0011111111380159855,-0.0003174603043589741,1.3552527156068805e-20,-0.00027777778450399637,6.2405490208230274e-21,3.741680869433611e-24,7.936507608974352e-05,0.0,-2.034168190774132e-21,-2.710505431213761e-20,0.0019841270986944437,0.0,-0.003968254197388887,-0.0,0.0,0.0,0.0,0.0009920635493472219,0.0,0.0,0.0016666667070239782,0.0,-0.0008333333535119891,-0.00041666667675599456,1.8602544767268167e-21,-4.4341347678832007e-23,-2.034168190774132e-21,0.0,0.00020833333837799728,-6.776263578034403e-21,0.0007575757335871458,9.486769009248164e-20,2.710505431213761e-20,-0.0006493506371043622,8.570233341935089e-22,-8.382861585114056e-22,-2.710505431213761e-20,0.0,-6.776263578034403e-21,8.116882963804528e-05,8.0,5.0,10.0,0.07395021617412567,-0.014924242161214352,-0.021612554788589478,-0.012386363931000233,0.0008333333535119891,0.0016666667070239782,0.0009090909152291715,0.0017857142956927419,0.0013636363437399268,0.0005681818001903594,-0.014924242161214352,0.008430736139416695,0.0016666667070239782,0.0009090909152291715,-0.0008333333535119891,-0.0004761904710903764,-0.0002597402490209788,-0.0,0.0,0.0,-0.021612554788589478,0.0016666667070239782,0.02152056246995926,0.0013636363437399268,0.0,-0.0008333333535119891,-1.3552527156068805e-20,-0.0035714285913854837,-0.0006818181718699634,-2.710505431213761e-20,-0.012386363931000233,0.0009090909152291715,0.0013636363437399268,0.005451388657093048,-0.0,-0.0,-0.00020202020823489875,-0.0,-0.0003030303050763905,-0.00042613636469468474,0.0008333333535119891,-0.0008333333535119891,0.0,-0.0,0.0001190476177725941,0.0,0.0,0.0,0.0,0.0,0.0016666667070239782,-0.0004761904710903764,-0.0008333333535119891,-0.0,0.0,0.0002380952355451882,0.0,0.0,0.0,0.0,0.0009090909152291715,-0.0002597402490209788,-1.3552527156068805e-20,-0.00020202020823489875,0.0,0.0,5.77200589759741e-05,0.0,0.0,3.3881317890172014e-21,0.0017857142956927419,-0.0,-0.0035714285913854837,-0.0,0.0,0.0,0.0,0.0008928571478463709,0.0,0.0,0.0013636363437399268,0.0,-0.0006818181718699634,-0.0003030303050763905,0.0,0.0,0.0,0.0,0.00015151515253819525,3.3881317890172014e-21,0.0005681818001903594,0.0,-2.710505431213761e-20,-0.00042613636469468474,0.0,0.0,3.3881317890172014e-21,0.0,3.3881317890172014e-21,4.734848334919661e-05,8.0,5.0,11.0,0.06813602894544601,-0.013636363670229912,-0.019751083105802536,-0.010431235656142235,0.0007575757335871458,0.0015151514671742916,0.0007575757335871458,0.001623376621864736,0.0011363636003807187,0.0004370629321783781,-0.013636363670229912,0.007683982606977224,0.0015151514671742916,0.0007575757335871458,-0.0007575757335871458,-0.00043290044413879514,-0.00021645022206939757,-0.0,6.776263578034403e-21,-7.453889935837843e-20,-0.019751083105802536,0.0015151514671742916,0.01961580105125904,0.0011363636003807187,0.0,-0.0007575757335871458,0.0,-0.003246753243729472,-0.0005681818001903594,1.3552527156068805e-20,-0.010431235656142235,0.0007575757335871458,0.0011363636003807187,0.004125874023884535,-0.0,-0.0,-0.00015151515253819525,-0.0,-0.00022727272880729288,-0.00029137529782019556,0.0007575757335871458,-0.0007575757335871458,0.0,-0.0,0.00010822511103469878,0.0,0.0,0.0,0.0,0.0,0.0015151514671742916,-0.00043290044413879514,-0.0007575757335871458,-0.0,0.0,0.00021645022206939757,0.0,0.0,0.0,0.0,0.0007575757335871458,-0.00021645022206939757,0.0,-0.00015151515253819525,0.0,0.0,4.329004150349647e-05,0.0,0.0,1.5246593050577406e-20,0.001623376621864736,-0.0,-0.003246753243729472,-0.0,0.0,0.0,0.0,0.000811688310932368,0.0,0.0,0.0011363636003807187,6.776263578034403e-21,-0.0005681818001903594,-0.00022727272880729288,0.0,0.0,0.0,0.0,0.00011363636440364644,-3.3881317890172014e-21,0.0004370629321783781,-7.453889935837843e-20,1.3552527156068805e-20,-0.00029137529782019556,0.0,0.0,1.5246593050577406e-20,0.0,-3.3881317890172014e-21,2.9137529054423794e-05,8.0,5.0,12.0,0.06317155063152313,-0.01255341898649931,-0.018185287714004517,-0.008905678056180477,0.0006944444612599909,0.0013888889225199819,0.0006410256610251963,0.0014880952658131719,0.000961538462433964,0.00034340660204179585,-0.01255341898649931,0.007058913353830576,0.0013888889225199819,0.0006410256610251963,-0.0006944444612599909,-0.00039682540227659047,-0.00018315018678549677,-0.0,0.0,-2.0328790734103208e-20,-0.018185287714004517,0.0013888889225199819,0.01802121475338936,0.000961538462433964,0.0,-0.0006944444612599909,0.0,-0.0029761905316263437,-0.000480769231216982,-1.3552527156068805e-20,-0.008905678056180477,0.0006410256610251963,0.000961538462433964,0.003198884427547455,-0.0,-0.0,-0.00011655011621769518,-0.0,-0.00017482518160250038,-0.00020604395831469446,0.0006944444612599909,-0.0006944444612599909,0.0,-0.0,9.920635056914762e-05,0.0,0.0,0.0,0.0,0.0,0.0013888889225199819,-0.00039682540227659047,-0.0006944444612599909,-0.0,0.0,0.00019841270113829523,0.0,0.0,0.0,0.0,0.0006410256610251963,-0.00018315018678549677,0.0,-0.00011655011621769518,0.0,0.0,3.330003164592199e-05,0.0,0.0,2.541098841762901e-21,0.0014880952658131719,-0.0,-0.0029761905316263437,-0.0,0.0,0.0,0.0,0.0007440476329065859,0.0,0.0,0.000961538462433964,0.0,-0.000480769231216982,-0.00017482518160250038,0.0,0.0,0.0,0.0,8.741259080125019e-05,1.6940658945086007e-21,0.00034340660204179585,-2.0328790734103208e-20,-1.3552527156068805e-20,-0.00020604395831469446,0.0,0.0,2.541098841762901e-21,0.0,1.6940658945086007e-21,1.8731268937699497e-05,8.0,5.0,13.0,0.058882784098386765,-0.011630036868155003,-0.01684981770813465,-0.007692307699471712,0.0006410256610251963,0.0012820513220503926,0.0005494505749084055,0.0013736264081671834,0.0008241758332587779,0.00027472528745420277,-0.011630036868155003,0.006527995690703392,0.0012820513220503926,0.0005494505749084055,-0.0006410256610251963,-0.00036630037357099354,-0.00015698587230872363,-0.0,3.3881317890172014e-21,3.3881317890172014e-20,-0.01684981770813465,0.0012820513220503926,0.01666666753590107,0.0008241758332587779,0.0,-0.0006410256610251963,0.0,-0.002747252816334367,-0.00041208791662938893,0.0,-0.007692307699471712,0.0005494505749084055,0.0008241758332587779,0.002530802506953478,-0.0,-0.0,-9.157509339274839e-05,-0.0,-0.00013736264372710139,-0.00014985015150159597,0.0006410256610251963,-0.0006410256610251963,0.0,-0.0,9.157509339274839e-05,0.0,0.0,0.0,0.0,0.0,0.0012820513220503926,-0.00036630037357099354,-0.0006410256610251963,-0.0,0.0,0.00018315018678549677,0.0,0.0,0.0,0.0,0.0005494505749084055,-0.00015698587230872363,0.0,-9.157509339274839e-05,0.0,0.0,2.616431265778374e-05,0.0,0.0,-5.082197683525802e-21,0.0013736264081671834,-0.0,-0.002747252816334367,-0.0,0.0,0.0,0.0,0.0006868132040835917,0.0,0.0,0.0008241758332587779,3.3881317890172014e-21,-0.00041208791662938893,-0.00013736264372710139,0.0,0.0,0.0,0.0,6.868132186355069e-05,1.6940658945086007e-21,0.00027472528745420277,3.3881317890172014e-20,0.0,-0.00014985015150159597,0.0,0.0,-5.082197683525802e-21,0.0,1.6940658945086007e-21,1.2487512321968097e-05,8.0,5.0,14.0,0.05514030531048775,-0.010833333246409893,-0.015697278082370758,-0.006711309310048819,0.0005952381179668009,0.0011904762359336019,0.0004761904710903764,0.0012755101779475808,0.0007142857066355646,0.00022321428696159273,-0.010833333246409893,0.006071428768336773,0.0011904762359336019,0.0004761904710903764,-0.0005952381179668009,-0.0003401360590942204,-0.0001360544265480712,-6.776263578034403e-18,-4.607859233063394e-19,2.303929616531697e-19,-0.015697278082370758,0.0011904762359336019,0.015501700341701508,0.0007142857066355646,-2.456395547037471e-18,-0.0005952381179668009,-1.3145951341386741e-18,-0.0025510203558951616,-0.0003571428533177823,3.049318610115481e-20,-0.006711309310048819,0.0004761904710903764,0.0007142857066355646,0.0020369733683764935,4.2012834183813297e-19,0.0,-7.326007471419871e-05,-2.0599841277224584e-18,-0.00010989011207129806,-0.00011160714348079637,0.0005952381179668009,-0.0005952381179668009,-2.456395547037471e-18,4.2012834183813297e-19,8.50340147735551e-05,1.1576264718178618e-19,-9.036041039966147e-21,5.038951647125764e-19,-5.397020913150864e-23,-2.7740329022578336e-20,0.0011904762359336019,-0.0003401360590942204,-0.0005952381179668009,0.0,1.1576264718178618e-19,0.0001700680295471102,2.710505431213761e-20,8.538092108323347e-19,6.437450399132683e-20,-1.3637107989289486e-20,0.0004761904710903764,-0.0001360544265480712,-1.3145951341386741e-18,-7.326007471419871e-05,-9.036041039966147e-21,2.710505431213761e-20,2.093144939863123e-05,2.168404344971009e-19,4.743384504624082e-20,-4.791297285629404e-22,0.0012755101779475808,-6.776263578034403e-18,-0.0025510203558951616,-2.0599841277224584e-18,5.038951647125764e-19,8.538092108323347e-19,2.168404344971009e-19,0.0006377550889737904,6.166399856011306e-19,4.065024831820568e-21,0.0007142857066355646,-4.607859233063394e-19,-0.0003571428533177823,-0.00010989011207129806,-5.397020913150864e-23,6.437450399132683e-20,4.743384504624082e-20,6.166399856011306e-19,5.494505603564903e-05,5.57355031325505e-23,0.00022321428696159273,2.303929616531697e-19,3.049318610115481e-20,-0.00011160714348079637,-2.7740329022578336e-20,-1.3637107989289486e-20,-4.791297285629404e-22,4.065024831820568e-21,5.57355031325505e-23,8.585165232943837e-06,8.0,5.0,15.0,0.05184582248330116,-0.010138888843357563,-0.014692460186779499,-0.005906862672418356,0.0005555555690079927,0.0011111111380159855,0.00041666667675599456,0.0011904762359336019,0.0006249999860301614,0.00018382353300694376,-0.010138888843357563,0.005674603395164013,0.0011111111380159855,0.00041666667675599456,-0.0005555555690079927,-0.0003174603043589741,-0.0001190476177725941,-8.944667923005412e-19,-4.607859233063394e-19,-5.454892180317694e-19,-0.014692460186779499,0.0011111111380159855,0.014489087276160717,0.0006249999860301614,-3.4220131069073734e-19,-0.0005555555690079927,-3.6591823321385775e-19,-0.0023809524718672037,-0.0003124999930150807,-3.2356658585114273e-19,-0.005906862672418356,0.00041666667675599456,0.0006249999860301614,0.0016639733221381903,-8.673617379884035e-19,-7.047314121155779e-19,-5.952380888629705e-05,-4.336808689942018e-19,-8.928571332944557e-05,-8.484163117827848e-05,0.0005555555690079927,-0.0005555555690079927,-3.4220131069073734e-19,-8.673617379884035e-19,7.936507608974352e-05,-8.165488213657924e-20,5.639958542766276e-21,6.9479933817838e-20,3.913194053240612e-20,5.124549330888517e-20,0.0011111111380159855,-0.0003174603043589741,-0.0005555555690079927,-7.047314121155779e-19,-8.165488213657924e-20,0.00015873015217948705,3.8963515573697816e-20,1.9651164376299768e-19,1.0164395367051604e-20,3.475359600198052e-20,0.00041666667675599456,-0.0001190476177725941,-3.6591823321385775e-19,-5.952380888629705e-05,5.639958542766276e-21,3.8963515573697816e-20,1.70068033185089e-05,1.5246593050577406e-20,2.202285662861181e-20,1.2250338884550769e-20,0.0011904762359336019,-8.944667923005412e-19,-0.0023809524718672037,-4.336808689942018e-19,6.9479933817838e-20,1.9651164376299768e-19,1.5246593050577406e-20,0.0005952381179668009,-7.115076756936123e-20,4.118644391648617e-20,0.0006249999860301614,-4.607859233063394e-19,-0.0003124999930150807,-8.928571332944557e-05,3.913194053240612e-20,1.0164395367051604e-20,2.202285662861181e-20,-7.115076756936123e-20,4.4642856664722785e-05,3.994633296500082e-21,0.00018382353300694376,-5.454892180317694e-19,-3.2356658585114273e-19,-8.484163117827848e-05,5.124549330888517e-20,3.475359600198052e-20,1.2250338884550769e-20,4.118644391648617e-20,3.994633296500082e-21,6.06011644777027e-06,8.0,5.0,16.0,0.048923321068286896,-0.009528186172246933,-0.013808648101985455,-0.0052389707416296005,0.0005208333604969084,0.0010416667209938169,0.0003676470660138875,0.0011160714784637094,0.0005514706135727465,0.00015318627993110567,-0.009528186172246933,0.005326505750417709,0.0010416667209938169,0.0003676470660138875,-0.0005208333604969084,-0.00029761905898340046,-0.0001050420178216882,-1.328147661294743e-18,-2.710505431213761e-19,-2.31239994600424e-19,-0.013808648101985455,0.0010416667209938169,0.01360075268894434,0.0005514706135727465,4.946672411965114e-19,-0.0005208333604969084,-9.825582188149884e-20,-0.0022321429569274187,-0.00027573530678637326,6.268043809681823e-20,-0.0052389707416296005,0.0003676470660138875,0.0005514706135727465,0.0013769257348030806,-4.336808689942018e-19,-3.2526065174565133e-19,-4.901960710412823e-05,-6.911788849595091e-19,-7.352940883720294e-05,-6.565126386703923e-05,0.0005208333604969084,-0.0005208333604969084,4.946672411965114e-19,-4.336808689942018e-19,7.440476474585012e-05,-6.418522180271996e-20,6.0525043719607284e-21,-8.160444996860765e-20,1.7942730903850747e-21,2.5199230180815435e-20,0.0010416667209938169,-0.00029761905898340046,-0.0005208333604969084,-3.2526065174565133e-19,-6.418522180271996e-20,0.00014880952949170023,1.3552527156068805e-20,8.843023969334896e-19,1.2536087619363645e-19,1.8141335030220168e-21,0.0003676470660138875,-0.0001050420178216882,-9.825582188149884e-20,-4.901960710412823e-05,6.0525043719607284e-21,1.3552527156068805e-20,1.4005602679389995e-05,1.1858461261560205e-20,-8.470329472543003e-22,5.2217827963069916e-21,0.0011160714784637094,-1.328147661294743e-18,-0.0022321429569274187,-6.911788849595091e-19,-8.160444996860765e-20,8.843023969334896e-19,1.1858461261560205e-20,0.0005580357392318547,4.726443845678996e-19,-1.6823284924221573e-20,0.0005514706135727465,-2.710505431213761e-19,-0.00027573530678637326,-7.352940883720294e-05,1.7942730903850747e-21,1.2536087619363645e-19,-8.470329472543003e-22,4.726443845678996e-19,3.676470441860147e-05,-1.2604733068499498e-21,0.00015318627993110567,-2.31239994600424e-19,6.268043809681823e-20,-6.565126386703923e-05,2.5199230180815435e-20,1.8141335030220168e-21,5.2217827963069916e-21,-1.6823284924221573e-20,-1.2604733068499498e-21,4.376750894152792e-06,8.0,6.0,3.0,0.16187168657779694,-0.0376984141767025,-0.0473710335791111,-0.0778769850730896,0.002314814832061529,0.003968254197388887,0.0069444444961845875,0.0037202381063252687,0.008928571827709675,0.010416666977107525,-0.0376984141767025,0.022345049306750298,0.003968254197388887,0.0069444444961845875,-0.002314814832061529,-0.0011337868636474013,-0.0019841270986944437,-1.180083986008976e-18,-7.552537427739386e-19,5.2406256490343854e-33,-0.0473710335791111,0.003968254197388887,0.03940972313284874,0.008928571827709675,-5.421010862427522e-20,-0.0015873016091063619,2.8386587140590117e-19,-0.005580357275903225,-0.0035714285913854837,2.4781763706188498e-17,-0.0778769850730896,0.0069444444961845875,0.008928571827709675,0.18204365670681,8.099333313258002e-21,-4.713878972174315e-19,-0.0069444444961845875,6.1954409265471244e-18,-0.008928571827709675,-0.0625,0.002314814832061529,-0.002314814832061529,-5.421010862427522e-20,8.099333313258002e-21,0.0003306878206785768,9.459254528135643e-38,-2.31409531890874e-21,2.865040187276335e-35,3.4864993123693006e-35,0.0,0.003968254197388887,-0.0011337868636474013,-0.0015873016091063619,-4.713878972174315e-19,9.459254528135643e-38,0.00045351474545896053,-8.110453561059298e-20,4.720336150831057e-19,3.021015074493331e-19,-2.096250259613754e-33,0.0069444444961845875,-0.0019841270986944437,2.8386587140590117e-19,-0.0069444444961845875,-2.31409531890874e-21,-8.110453561059298e-20,0.0019841270986944437,-8.264219476044381e-35,-5.28910067129827e-35,0.0,0.0037202381063252687,-1.180083986008976e-18,-0.005580357275903225,6.1954409265471244e-18,2.865040187276335e-35,4.720336150831057e-19,-8.264219476044381e-35,0.0011160714784637094,1.4869058513226313e-18,-4.956352906673822e-18,0.008928571827709675,-7.552537427739386e-19,-0.0035714285913854837,-0.008928571827709675,3.4864993123693006e-35,3.021015074493331e-19,-5.28910067129827e-35,1.4869058513226313e-18,0.0035714285913854837,-6.603188170846532e-33,0.010416666977107525,5.2406256490343854e-33,2.4781763706188498e-17,-0.0625,0.0,-2.096250259613754e-33,0.0,-4.956352906673822e-18,-6.603188170846532e-33,0.03125,8.0,6.0,4.0,0.1325644850730896,-0.02931547537446022,-0.03686755895614624,-0.0498511902987957,0.0017361111240461469,0.0029761905316263437,0.004166666883975267,0.0027901786379516125,0.0053571430034935474,0.0052083334885537624,-0.02931547537446022,0.017056405544281006,0.0029761905316263437,0.004166666883975267,-0.0017361111240461469,-0.0008503401186317205,-0.0011904762359336019,0.0,0.0,-0.0,-0.03686755895614624,0.0029761905316263437,0.030093006789684296,0.0053571430034935474,5.421010862427522e-20,-0.0011904762359336019,-4.005650550621593e-19,-0.004185267724096775,-0.002142857061699033,8.673617379884035e-18,-0.0498511902987957,0.004166666883975267,0.0053571430034935474,0.069692462682724,8.934854717507177e-20,-4.005650550621593e-19,-0.0027777778450399637,5.204170427930421e-18,-0.0035714285913854837,-0.015625,0.0017361111240461469,-0.0017361111240461469,5.421010862427522e-20,8.934854717507177e-20,0.00024801588733680546,-1.3552527156068805e-20,-2.552815725892744e-20,0.0,0.0,-0.0,0.0029761905316263437,-0.0008503401186317205,-0.0011904762359336019,-4.005650550621593e-19,-1.3552527156068805e-20,0.0003401360590942204,1.1444715858918837e-19,0.0,0.0,-0.0,0.004166666883975267,-0.0011904762359336019,-4.005650550621593e-19,-0.0027777778450399637,-2.552815725892744e-20,1.1444715858918837e-19,0.0007936508045531809,0.0,0.0,-0.0,0.0027901786379516125,0.0,-0.004185267724096775,5.204170427930421e-18,0.0,0.0,0.0,0.0008370535797439516,0.0,-1.734723475976807e-18,0.0053571430034935474,0.0,-0.002142857061699033,-0.0035714285913854837,0.0,0.0,0.0,0.0,0.0014285714132711291,-0.0,0.0052083334885537624,-0.0,8.673617379884035e-18,-0.015625,-0.0,-0.0,-0.0,-1.734723475976807e-18,-0.0,0.0052083334885537624,8.0,6.0,5.0,0.11240079253911972,-0.02400793693959713,-0.03020833246409893,-0.0347222238779068,0.0013888889225199819,0.0023809524718672037,0.0027777778450399637,0.0022321429569274187,0.0035714285913854837,0.0029761905316263437,-0.02400793693959713,0.013803854584693909,0.0023809524718672037,0.0027777778450399637,-0.0013888889225199819,-0.0006802721181884408,-0.0007936508045531809,0.0,0.0,-0.0,-0.03020833246409893,0.0023809524718672037,0.024360118433833122,0.0035714285913854837,1.0573552502232717e-19,-0.0009523809421807528,-2.6346798524125564e-19,-0.0033482143189758062,-0.0014285714132711291,4.248302432350375e-18,-0.0347222238779068,0.0027777778450399637,0.0035714285913854837,0.0352182537317276,-4.3640841466915155e-21,-2.6346798524125564e-19,-0.0013888889225199819,4.486207434736445e-18,-0.0017857142956927419,-0.0059523810632526875,0.0013888889225199819,-0.0013888889225199819,1.0573552502232717e-19,-4.3640841466915155e-21,0.00019841270113829523,-3.021015139116816e-20,1.2468811703441193e-21,0.0,-0.0,-0.0,0.0023809524718672037,-0.0006802721181884408,-0.0009523809421807528,-2.6346798524125564e-19,-3.021015139116816e-20,0.0002721088530961424,7.527656351901673e-20,0.0,-0.0,-0.0,0.0027777778450399637,-0.0007936508045531809,-2.6346798524125564e-19,-0.0013888889225199819,1.2468811703441193e-21,7.527656351901673e-20,0.00039682540227659047,0.0,0.0,-0.0,0.0022321429569274187,0.0,-0.0033482143189758062,4.486207434736445e-18,0.0,0.0,0.0,0.0006696428754366934,-4.350261748629427e-19,-8.49660486470075e-19,0.0035714285913854837,0.0,-0.0014285714132711291,-0.0017857142956927419,-0.0,-0.0,0.0,-4.350261748629427e-19,0.0007142857066355646,5.519726578827983e-34,0.0029761905316263437,-0.0,4.248302432350375e-18,-0.0059523810632526875,-0.0,-0.0,-0.0,-8.49660486470075e-19,5.519726578827983e-34,0.0014880952658131719,8.0,6.0,6.0,0.09762377291917801,-0.0203373022377491,-0.025598781183362007,-0.025598781183362007,0.0011574074160307646,0.0019841270986944437,0.0019841270986944437,0.0018601190531626344,0.0025510203558951616,0.0018601190531626344,-0.0203373022377491,0.011597694829106331,0.0019841270986944437,0.0019841270986944437,-0.0011574074160307646,-0.0005668934318237007,-0.0005668934318237007,-5.90041993004488e-19,-4.3157357468493465e-19,-5.90041993004488e-19,-0.025598781183362007,0.0019841270986944437,0.020470166578888893,0.0025510203558951616,-1.376672632537089e-35,-0.0007936508045531809,-1.3906259312799744e-19,-0.0027901786379516125,-0.0010204081190750003,1.3718476130559194e-18,-0.025598781183362007,0.0019841270986944437,0.0025510203558951616,0.020470166578888893,-8.520354512556855e-21,-1.3906259312799744e-19,-0.0007936508045531809,2.407624150940732e-18,-0.0010204081190750003,-0.0027901786379516125,0.0011574074160307646,-0.0011574074160307646,-1.376672632537089e-35,-8.520354512556855e-21,0.0001653439103392884,-2.353382343629396e-37,2.4343870901369836e-21,1.928154759726737e-36,1.979854736105821e-36,1.928154759726737e-36,0.0019841270986944437,-0.0005668934318237007,-0.0007936508045531809,-1.3906259312799744e-19,-2.353382343629396e-37,0.00022675737272948027,-2.192119742379875e-20,2.3601680754155287e-19,8.631471364451722e-20,-1.3885875993973672e-34,0.0019841270986944437,-0.0005668934318237007,-1.3906259312799744e-19,-0.0007936508045531809,2.4343870901369836e-21,-2.192119742379875e-20,0.00022675737272948027,-2.2647345077655857e-34,8.631471364451722e-20,2.3601680754155287e-19,0.0018601190531626344,-5.90041993004488e-19,-0.0027901786379516125,2.407624150940732e-18,1.928154759726737e-36,2.3601680754155287e-19,-2.2647345077655857e-34,0.0005580357392318547,1.051960562445134e-20,-4.867846235491873e-19,0.0025510203558951616,-4.3157357468493465e-19,-0.0010204081190750003,-0.0010204081190750003,1.979854736105821e-36,8.631471364451722e-20,8.631471364451722e-20,1.051960562445134e-20,0.0004081632650922984,4.248302432350375e-19,0.0018601190531626344,-5.90041993004488e-19,1.3718476130559194e-18,-0.0027901786379516125,1.928154759726737e-36,-1.3885875993973672e-34,2.3601680754155287e-19,-4.867846235491873e-19,4.248302432350375e-19,0.0005580357392318547,8.0,6.0,7.0,0.0863095223903656,-0.01764455810189247,-0.022215135395526886,-0.019664116203784943,0.0009920635493472219,0.001700680237263441,0.0014880952658131719,0.0015943878097459674,0.0019132653251290321,0.0012400794075801969,-0.01764455810189247,0.010001619346439838,0.001700680237263441,0.0014880952658131719,-0.0009920635493472219,-0.00048590864753350616,-0.00042517005931586027,-5.057502723325914e-19,-1.6998424586175765e-19,-3.2526065174565133e-19,-0.022215135395526886,0.001700680237263441,0.017655186355113983,0.0019132653251290321,1.82799342309529e-21,-0.0006802721181884408,5.421010862427522e-20,-0.00239158165641129,-0.0007653061184100807,1.5720931501039814e-18,-0.019664116203784943,0.0014880952658131719,0.0019132653251290321,0.013003118336200714,-1.5111709296355844e-20,-1.2073784129826e-19,-0.0004960317746736109,1.5992546594929258e-18,-0.0006377550889737904,-0.0014880952658131719,0.0009920635493472219,-0.0009920635493472219,1.82799342309529e-21,-1.5111709296355844e-20,0.00014172335795592517,-5.2218954552098525e-37,4.435831967410904e-21,-7.497874107409523e-37,-6.09331157860796e-22,1.7071150675196984e-22,0.001700680237263441,-0.00048590864753350616,-0.0006802721181884408,-1.2073784129826e-19,-5.2218954552098525e-37,0.00019436345610301942,-1.1743498504493106e-20,2.0230011151797598e-19,6.473603361780078e-20,-1.4143548029093763e-34,0.0014880952658131719,-0.00042517005931586027,5.421010862427522e-20,-0.0004960317746736109,4.435831967410904e-21,-1.1743498504493106e-20,0.00014172335795592517,-1.2037062152420224e-34,-3.3881317890172014e-21,1.0842021724855044e-19,0.0015943878097459674,-5.057502723325914e-19,-0.00239158165641129,1.5992546594929258e-18,-7.497874107409523e-37,2.0230011151797598e-19,-1.2037062152420224e-34,0.00047831633128225803,9.66705560869351e-20,-3.068218394642611e-19,0.0019132653251290321,-1.6998424586175765e-19,-0.0007653061184100807,-0.0006377550889737904,-6.09331157860796e-22,6.473603361780078e-20,-3.3881317890172014e-21,9.66705560869351e-20,0.00025510202976875007,-1.3552527156068805e-20,0.0012400794075801969,-3.2526065174565133e-19,1.5720931501039814e-18,-0.0014880952658131719,1.7071150675196984e-22,-1.4143548029093763e-34,1.0842021724855044e-19,-3.068218394642611e-19,-1.3552527156068805e-20,0.00024801588733680546,8.0,6.0,8.0,0.07736028730869293,-0.015583664178848267,-0.0196242555975914,-0.015583664178848267,0.0008680555620230734,0.0014880952658131719,0.0011574074160307646,0.0013950893189758062,0.0014880952658131719,0.0008680555620230734,-0.015583664178848267,0.008792753331363201,0.0014880952658131719,0.0011574074160307646,-0.0008680555620230734,-0.00042517005931586027,-0.0003306878206785768,-3.681812003547306e-34,1.442931404845058e-19,5.421010862427522e-20,-0.0196242555975914,0.0014880952658131719,0.015522693283855915,0.0014880952658131719,3.3506921727763735e-20,-0.0005952381179668009,1.3552527156068805e-20,-0.0020926338620483875,-0.0005952381179668009,1.3552527156068805e-18,-0.015583664178848267,0.0011574074160307646,0.0014880952658131719,0.008792753331363201,-3.937479074361146e-21,-1.1188945151168905e-19,-0.0003306878206785768,2.0929631983594882e-18,-0.00042517005931586027,-0.0008680555620230734,0.0008680555620230734,-0.0008680555620230734,3.3506921727763735e-20,-3.937479074361146e-21,0.00012400794366840273,-9.440672107791659e-21,-4.2738110951271515e-22,9.129651865329366e-37,-1.3273459419315233e-22,7.6143479901024635e-22,0.0014880952658131719,-0.00042517005931586027,-0.0005952381179668009,-1.1188945151168905e-19,-9.440672107791659e-21,0.0001700680295471102,3.196841425602912e-20,0.0,-1.2789378536946488e-35,-7.52316384526264e-36,0.0011574074160307646,-0.0003306878206785768,1.3552527156068805e-20,-0.0003306878206785768,-4.2738110951271515e-22,3.196841425602912e-20,9.448223863728344e-05,9.62964972193618e-35,-4.0657581468206416e-20,-2.0328790734103208e-20,0.0013950893189758062,-3.681812003547306e-34,-0.0020926338620483875,2.0929631983594882e-18,9.129651865329366e-37,0.0,9.62964972193618e-35,0.0004185267898719758,-2.5894413447120313e-19,-2.0651470013651023e-19,0.0014880952658131719,1.442931404845058e-19,-0.0005952381179668009,-0.00042517005931586027,-1.3273459419315233e-22,-1.2789378536946488e-35,-4.0657581468206416e-20,-2.5894413447120313e-19,0.0001700680295471102,-1.0164395367051604e-19,0.0008680555620230734,5.421010862427522e-20,1.3552527156068805e-18,-0.0008680555620230734,7.6143479901024635e-22,-7.52316384526264e-36,-2.0328790734103208e-20,-2.0651470013651023e-19,-1.0164395367051604e-19,0.00012400794366840273,8.0,6.0,9.0,0.0701008066534996,-0.013955026865005493,-0.017576057463884354,-0.012656325474381447,0.0007716049440205097,0.0013227512827143073,0.0009259259095415473,0.0012400794075801969,0.0011904762359336019,0.0006313131307251751,-0.013955026865005493,0.007845175452530384,0.0013227512827143073,0.0009259259095415473,-0.0007716049440205097,-0.0003779289545491338,-0.00026455026818439364,-1.652951801916862e-34,1.2648455905052426e-20,5.421010862427522e-20,-0.017576057463884354,0.0013227512827143073,0.013850859366357327,0.0011904762359336019,1.4006732767533303e-22,-0.0005291005363687873,4.0657581468206416e-20,-0.0018601190531626344,-0.0004761904710903764,7.724940478959219e-19,-0.012656325474381447,0.0009259259095415473,0.0011904762359336019,0.006230459548532963,8.796061727097735e-21,2.5858893794629404e-20,-0.00023148147738538682,1.5700123772731043e-18,-0.00029761905898340046,-0.0005411255406215787,0.0007716049440205097,-0.0007716049440205097,1.4006732767533303e-22,8.796061727097735e-21,0.00011022927355952561,4.103983933506863e-37,-3.673769613773336e-21,2.3692901528457166e-36,-3.5016831918833257e-23,4.801937441519025e-22,0.0013227512827143073,-0.0003779289545491338,-0.0005291005363687873,2.5858893794629404e-20,4.103983933506863e-37,0.0001511715818196535,-7.388255254495034e-21,-0.0,5.64237288394698e-37,2.256949153578792e-36,0.0009259259095415473,-0.00026455026818439364,4.0657581468206416e-20,-0.00023148147738538682,-3.673769613773336e-21,-7.388255254495034e-21,6.613756704609841e-05,3.611118645726067e-35,-5.082197683525802e-21,-1.6940658945086007e-20,0.0012400794075801969,-1.652951801916862e-34,-0.0018601190531626344,1.5700123772731043e-18,2.3692901528457166e-36,-0.0,3.611118645726067e-35,0.00037202381645329297,-1.6112079880309882e-19,-1.4590129591758252e-19,0.0011904762359336019,1.2648455905052426e-20,-0.0004761904710903764,-0.00029761905898340046,-3.5016831918833257e-23,5.64237288394698e-37,-5.082197683525802e-21,-1.6112079880309882e-19,0.0001190476177725941,-1.3552527156068805e-20,0.0006313131307251751,5.421010862427522e-20,7.724940478959219e-19,-0.0005411255406215787,4.801937441519025e-22,2.256949153578792e-36,-1.6940658945086007e-20,-1.4590129591758252e-19,-1.3552527156068805e-20,6.764069257769734e-05,8.0,6.0,10.0,0.06409180909395218,-0.012635281309485435,-0.015915855765342712,-0.010484307073056698,0.0006944444612599909,0.0011904762359336019,0.0007575757335871458,0.0011160714784637094,0.0009740259847603738,0.0004734848625957966,-0.012635281309485435,0.007082302588969469,0.0011904762359336019,0.0007575757335871458,-0.0006944444612599909,-0.0003401360590942204,-0.00021645022206939757,-1.2037062152420224e-34,8.809142651444724e-20,-6.776263578034403e-21,-0.015915855765342712,0.0011904762359336019,0.01250473503023386,0.0009740259847603738,0.0,-0.0004761904710903764,8.131516293641283e-20,-0.0016741071594879031,-0.00038961038808338344,7.318364664277155e-19,-0.010484307073056698,0.0007575757335871458,0.0009740259847603738,0.004578899126499891,-0.0,-0.0,-0.00016835016140248626,1.2267616845777669e-18,-0.00021645022206939757,-0.00035511364694684744,0.0006944444612599909,-0.0006944444612599909,0.0,-0.0,9.920635056914762e-05,0.0,0.0,0.0,0.0,0.0,0.0011904762359336019,-0.0003401360590942204,-0.0004761904710903764,-0.0,0.0,0.0001360544265480712,0.0,0.0,0.0,0.0,0.0007575757335871458,-0.00021645022206939757,8.131516293641283e-20,-0.00016835016140248626,0.0,0.0,4.810004975297488e-05,1.2037062152420224e-35,-1.8634724839594607e-20,-1.6940658945086007e-21,0.0011160714784637094,-1.2037062152420224e-34,-0.0016741071594879031,1.2267616845777669e-18,0.0,0.0,1.2037062152420224e-35,0.0003348214377183467,-1.0546088813426249e-19,-1.0701216197552912e-19,0.0009740259847603738,8.809142651444724e-20,-0.00038961038808338344,-0.00021645022206939757,0.0,0.0,-1.8634724839594607e-20,-1.0546088813426249e-19,8.658008300699294e-05,-4.743384504624082e-20,0.0004734848625957966,-6.776263578034403e-21,7.318364664277155e-19,-0.00035511364694684744,0.0,0.0,-1.6940658945086007e-21,-1.0701216197552912e-19,-4.743384504624082e-20,3.9457070670323446e-05,8.0,6.0,11.0,0.059034716337919235,-0.011544011533260345,-0.014542749151587486,-0.008827977813780308,0.0006313131307251751,0.0010822510812431574,0.0006313131307251751,0.0010146104032173753,0.000811688310932368,0.0003642191004473716,-0.011544011533260345,0.006454854737967253,0.0010822510812431574,0.0006313131307251751,-0.0006313131307251751,-0.0003092146071139723,-0.0001803751802071929,1.6851887013388314e-34,-3.3881317890172014e-21,-6.098637220230962e-20,-0.014542749151587486,0.0010822510812431574,0.011397456750273705,0.000811688310932368,0.0,-0.00043290044413879514,3.3881317890172014e-21,-0.001521915546618402,-0.0003246753185521811,4.2012834183813297e-19,-0.008827977813780308,0.0006313131307251751,0.000811688310932368,0.003465284826233983,-0.0,-0.0,-0.00012626263196580112,1.1682546828640084e-18,-0.00016233765927609056,-0.0002428127481834963,0.0006313131307251751,-0.0006313131307251751,0.0,-0.0,9.018759010359645e-05,0.0,0.0,0.0,0.0,0.0,0.0010822510812431574,-0.0003092146071139723,-0.00043290044413879514,-0.0,0.0,0.00012368583702482283,0.0,0.0,0.0,0.0,0.0006313131307251751,-0.0001803751802071929,3.3881317890172014e-21,-0.00012626263196580112,0.0,0.0,3.607503458624706e-05,-3.009265538105056e-35,-8.470329472543003e-22,1.0164395367051604e-20,0.0010146104032173753,1.6851887013388314e-34,-0.001521915546618402,1.1682546828640084e-18,0.0,0.0,-3.009265538105056e-35,0.0003043831093236804,-1.438102996513221e-19,-8.087288626498692e-20,0.000811688310932368,-3.3881317890172014e-21,-0.0003246753185521811,-0.00016233765927609056,0.0,0.0,-8.470329472543003e-22,-1.438102996513221e-19,6.49350622552447e-05,-1.6940658945086007e-21,0.0003642191004473716,-6.098637220230962e-20,4.2012834183813297e-19,-0.0002428127481834963,0.0,0.0,1.0164395367051604e-20,-8.087288626498692e-20,-1.6940658945086007e-21,2.428127481834963e-05,8.0,6.0,12.0,0.05471929535269737,-0.010626526549458504,-0.013388087972998619,-0.007535866927355528,0.0005787037080153823,0.0009920635493472219,0.0005341880605556071,0.0009300595265813172,0.0006868132040835917,0.0002861721732188016,-0.010626526549458504,0.00592966889962554,0.0009920635493472219,0.0005341880605556071,-0.0005787037080153823,-0.00028344671591185033,-0.00015262515807989985,-2.95020996502244e-19,-1.1519648082658485e-19,6.776263578034403e-21,-0.013388087972998619,0.0009920635493472219,0.010470562614500523,0.0006868132040835917,0.0,-0.00039682540227659047,-5.082197683525802e-20,-0.0013950893189758062,-0.00027472528745420277,2.0328790734103208e-19,-0.007535866927355528,0.0005341880605556071,0.0006868132040835917,0.002686549676582217,-0.0,-5.809644224894516e-20,-9.712509927339852e-05,6.565558445538184e-19,-0.00012487512140069157,-0.00017170330102089792,0.0005787037080153823,-0.0005787037080153823,0.0,-0.0,8.26719551696442e-05,0.0,0.0,0.0,0.0,0.0,0.0009920635493472219,-0.00028344671591185033,-0.00039682540227659047,-5.809644224894516e-20,0.0,0.00011337868636474013,4.513898307157584e-36,1.1800840377077644e-19,2.3238577868930345e-20,-1.7303276844104072e-35,0.0005341880605556071,-0.00015262515807989985,-5.082197683525802e-20,-9.712509927339852e-05,0.0,4.513898307157584e-36,2.775002758426126e-05,6.018531076210112e-36,1.0164395367051604e-20,0.0,0.0009300595265813172,-2.95020996502244e-19,-0.0013950893189758062,6.565558445538184e-19,0.0,1.1800840377077644e-19,6.018531076210112e-36,0.00027901786961592734,1.2972671931081999e-20,-6.263522750646337e-20,0.0006868132040835917,-1.1519648082658485e-19,-0.00027472528745420277,-0.00012487512140069157,0.0,2.3238577868930345e-20,1.0164395367051604e-20,1.2972671931081999e-20,4.995004928787239e-05,2.0328790734103208e-20,0.0002861721732188016,6.776263578034403e-21,2.0328790734103208e-19,-0.00017170330102089792,0.0,-1.7303276844104072e-35,0.0,-6.263522750646337e-20,2.0328790734103208e-20,1.5609390175086446e-05,8.0,6.0,13.0,0.05099315196275711,-0.009844322688877583,-0.01240351889282465,-0.006508372724056244,0.0005341880605556071,0.0009157509193755686,0.0004578754596877843,0.0008585164905525744,0.00058869703207165,0.00022893772984389216,-0.009844322688877583,0.005483603570610285,0.0009157509193755686,0.0004578754596877843,-0.0005341880605556071,-0.00026164311566390097,-0.00013082155783195049,-7.222237291452134e-35,-2.710505431213761e-20,2.371692252312041e-20,-0.01240351889282465,0.0009157509193755686,0.009683248586952686,0.00058869703207165,0.0,-0.00036630037357099354,-2.710505431213761e-20,-0.001287774764932692,-0.00023547880118712783,1.9651164376299768e-19,-0.006508372724056244,0.0004578754596877843,0.00058869703207165,0.002125354716554284,-0.0,-0.0,-7.631257903994992e-05,7.780338315545544e-19,-9.811617201194167e-05,-0.00012487512140069157,0.0005341880605556071,-0.0005341880605556071,0.0,-0.0,7.631257903994992e-05,0.0,0.0,0.0,0.0,0.0,0.0009157509193755686,-0.00026164311566390097,-0.00036630037357099354,-0.0,0.0,0.00010465725063113496,0.0,0.0,0.0,0.0,0.0004578754596877843,-0.00013082155783195049,-2.710505431213761e-20,-7.631257903994992e-05,0.0,0.0,2.1803592971991748e-05,1.504632769052528e-35,3.8116482626443515e-21,-5.082197683525802e-21,0.0008585164905525744,-7.222237291452134e-35,-0.001287774764932692,7.780338315545544e-19,0.0,0.0,1.504632769052528e-35,0.0002575549588073045,-7.354626323626919e-20,-4.9514013647529884e-20,0.00058869703207165,-2.710505431213761e-20,-0.00023547880118712783,-9.811617201194167e-05,0.0,0.0,3.8116482626443515e-21,-7.354626323626919e-20,3.924646807718091e-05,7.623296525288703e-21,0.00022893772984389216,2.371692252312041e-20,1.9651164376299768e-19,-0.00012487512140069157,0.0,0.0,-5.082197683525802e-21,-4.9514013647529884e-20,7.623296525288703e-21,1.0406260116724297e-05,8.0,6.0,14.0,0.0477430559694767,-0.0091695012524724,-0.011553996242582798,-0.005677791777998209,0.0004960317746736109,0.0008503401186317205,0.00039682540227659047,0.0007971939048729837,0.0005102040595375001,0.00018601190822664648,-0.0091695012524724,0.005100016016513109,0.0008503401186317205,0.00039682540227659047,-0.0004960317746736109,-0.00024295432376675308,-0.00011337868636474013,3.550762114890027e-18,3.9302328752599536e-19,-3.8963515573697816e-20,-0.011553996242582798,0.0008503401186317205,0.009006164968013763,0.0005102040595375001,1.0875903042745216e-18,-0.0003401360590942204,6.081696561285876e-19,-0.001195790828205645,-0.0002040816325461492,8.555032767268433e-20,-0.005677791777998209,0.00039682540227659047,0.0005102040595375001,0.0017105600563809276,-1.8973538018496328e-19,5.421010862427522e-20,-6.105006468715146e-05,6.776263578034403e-19,-7.849293615436181e-05,-9.300595411332324e-05,0.0004960317746736109,-0.0004960317746736109,1.0875903042745216e-18,-1.8973538018496328e-19,7.086167897796258e-05,4.715546645837405e-20,4.7346958770180073e-20,-2.0621771644720955e-19,-2.2036610121882637e-20,6.1409888675936775e-21,0.0008503401186317205,-0.00024295432376675308,-0.0003401360590942204,5.421010862427522e-20,4.715546645837405e-20,9.718172805150971e-05,1.1858461261560205e-20,-5.099138342470888e-19,-2.879912020664621e-20,-3.771148724371931e-21,0.00039682540227659047,-0.00011337868636474013,6.081696561285876e-19,-6.105006468715146e-05,4.7346958770180073e-20,1.1858461261560205e-20,1.744287510518916e-05,-9.486769009248164e-20,-2.202285662861181e-20,5.57370745434737e-22,0.0007971939048729837,3.550762114890027e-18,-0.001195790828205645,6.776263578034403e-19,-2.0621771644720955e-19,-5.099138342470888e-19,-9.486769009248164e-20,0.00023915816564112902,-7.453889935837843e-20,-1.118017639044099e-20,0.0005102040595375001,3.9302328752599536e-19,-0.0002040816325461492,-7.849293615436181e-05,-2.2036610121882637e-20,-2.879912020664621e-20,-2.202285662861181e-20,-7.453889935837843e-20,3.139717591693625e-05,-1.379354872458697e-21,0.00018601190822664648,-3.8963515573697816e-20,8.555032767268433e-20,-9.300595411332324e-05,6.1409888675936775e-21,-3.771148724371931e-21,5.57370745434737e-22,-1.118017639044099e-20,-1.379354872458697e-21,7.15430405762163e-06,8.0,6.0,15.0,0.04488309100270271,-0.00858134962618351,-0.010813492350280285,-0.004996790550649166,0.00046296295477077365,0.0007936508045531809,0.00034722223062999547,0.0007440476329065859,0.00044642857392318547,0.00015318627993110567,-0.00858134962618351,0.0047666290774941444,0.0007936508045531809,0.00034722223062999547,-0.00046296295477077365,-0.00022675737272948027,-9.920635056914762e-05,2.656295322589486e-18,5.421010862427522e-20,-2.541098841762901e-20,-0.010813492350280285,0.0007936508045531809,0.008417658507823944,0.00044642857392318547,1.5720931501039814e-18,-0.0003174603043589741,2.1006417091906648e-19,-0.0011160714784637094,-0.00017857142665889114,4.1504614415460717e-19,-0.004996790550649166,0.00034722223062999547,0.00044642857392318547,0.001397273619659245,1.7618285302889447e-19,3.3881317890172014e-19,-4.960317528457381e-05,1.3823577699190182e-18,-6.377550744218752e-05,-7.070136052789167e-05,0.00046296295477077365,-0.00046296295477077365,1.5720931501039814e-18,1.7618285302889447e-19,6.613756704609841e-05,-1.5078995918716506e-19,-6.696351468513245e-20,-1.8911785108360123e-19,-1.5320297751212722e-20,3.1763735522036263e-21,0.0007936508045531809,-0.00022675737272948027,-0.0003174603043589741,3.3881317890172014e-19,-1.5078995918716506e-19,9.070294618140906e-05,-3.7269449679189215e-20,-3.4728350837426314e-19,-1.5246593050577406e-20,-1.276922912124657e-20,0.00034722223062999547,-9.920635056914762e-05,2.1006417091906648e-19,-4.960317528457381e-05,-6.696351468513245e-20,-3.7269449679189215e-20,1.4172335795592517e-05,-4.2351647362715017e-20,1.3129010682441655e-20,3.406959033682019e-21,0.0007440476329065859,2.656295322589486e-18,-0.0011160714784637094,1.3823577699190182e-18,-1.8911785108360123e-19,-3.4728350837426314e-19,-4.2351647362715017e-20,0.00022321428696159273,-1.1434944787933055e-19,-6.398063677278087e-20,0.00044642857392318547,5.421010862427522e-20,-0.00017857142665889114,-6.377550744218752e-05,-1.5320297751212722e-20,-1.5246593050577406e-20,1.3129010682441655e-20,-1.1434944787933055e-19,2.551020406826865e-05,-5.849860066066225e-21,0.00015318627993110567,-2.541098841762901e-20,4.1504614415460717e-19,-7.070136052789167e-05,3.1763735522036263e-21,-1.276922912124657e-20,3.406959033682019e-21,-6.398063677278087e-20,-5.849860066066225e-21,5.050097115599783e-06,8.0,6.0,16.0,0.04234688729047775,-0.00806416291743517,-0.010162267833948135,-0.004431460052728653,0.0004340277810115367,0.0007440476329065859,0.00030637255986221135,0.0006975446594879031,0.00039390756865032017,0.0001276552357012406,-0.00806416291743517,0.004474185407161713,0.0007440476329065859,0.00030637255986221135,-0.0004340277810115367,-0.00021258502965793014,-8.753501606406644e-05,-1.7889335846010823e-18,-6.2341624917916505e-19,-3.8963515573697816e-19,-0.010162267833948135,0.0007440476329065859,0.007901403121650219,0.00039390756865032017,-9.774760211314626e-19,-0.00029761905898340046,-8.555032767268433e-19,-0.0010463169310241938,-0.00015756303037051111,-1.2620790914089075e-19,-0.004431460052728653,0.00030637255986221135,0.00039390756865032017,0.001156191690824926,-5.55653613398821e-19,-5.149960319306146e-19,-4.0849674405762926e-05,-6.505213034913027e-19,-5.25210089108441e-05,-5.470938413054682e-05,0.0004340277810115367,-0.0004340277810115367,-9.774760211314626e-19,-5.55653613398821e-19,6.200397183420137e-05,4.8632084018183503e-20,-1.7629238337422386e-20,1.0324964048645218e-19,3.332540405092236e-20,3.31401640613245e-20,0.0007440476329065859,-0.00021258502965793014,-0.00029761905898340046,-5.149960319306146e-19,4.8632084018183503e-20,8.50340147735551e-05,3.3881317890172014e-20,9.825582188149884e-20,3.7269449679189215e-20,1.9257877799769736e-20,0.00030637255986221135,-8.753501606406644e-05,-8.555032767268433e-19,-4.0849674405762926e-05,-1.7629238337422386e-20,3.3881317890172014e-20,1.1671335414575879e-05,8.978549240895584e-20,3.5998900258307764e-20,1.1890146964223674e-20,0.0006975446594879031,-1.7889335846010823e-18,-0.0010463169310241938,-6.505213034913027e-19,1.0324964048645218e-19,9.825582188149884e-20,8.978549240895584e-20,0.0002092633949359879,6.098637220230962e-20,9.373903122722144e-21,0.00039390756865032017,-6.2341624917916505e-19,-0.00015756303037051111,-5.25210089108441e-05,3.332540405092236e-20,3.7269449679189215e-20,3.5998900258307764e-20,6.098637220230962e-20,2.100840356433764e-05,2.4322625930559147e-21,0.0001276552357012406,-3.8963515573697816e-19,-1.2620790914089075e-19,-5.470938413054682e-05,3.31401640613245e-20,1.9257877799769736e-20,1.1890146964223674e-20,9.373903122722144e-21,2.4322625930559147e-21,3.647292260211543e-06,8.0,7.0,3.0,0.143601194024086,-0.032738097012043,-0.0364583320915699,-0.0677083358168602,0.0019841270986944437,0.0029761905316263437,0.0059523810632526875,0.0024801588151603937,0.0066964286379516125,0.008928571827709675,-0.032738097012043,0.019274376332759857,0.0029761905316263437,0.0059523810632526875,-0.0019841270986944437,-0.0008503401186317205,-0.001700680237263441,-5.837407378932122e-19,0.0,-0.0,-0.0364583320915699,0.0029761905316263437,0.02504960261285305,0.0066964286379516125,-6.97474168860738e-20,-0.0009920635493472219,-3.7559105065250557e-19,-0.0029761905316263437,-0.0022321429569274187,-0.0,-0.0677083358168602,0.0059523810632526875,0.0066964286379516125,0.1569940447807312,-5.440240226729966e-20,-3.604185678149341e-19,-0.0059523810632526875,-8.169812494180501e-21,-0.0066964286379516125,-0.0535714291036129,0.0019841270986944437,-0.0019841270986944437,-6.97474168860738e-20,-5.440240226729966e-20,0.00028344671591185033,1.658502298047649e-20,1.5543542812548274e-20,2.321225712724175e-21,0.0,-0.0,0.0029761905316263437,-0.0008503401186317205,-0.0009920635493472219,-3.604185678149341e-19,1.658502298047649e-20,0.00028344671591185033,1.029767290454465e-19,1.7564973512410404e-19,0.0,-0.0,0.0059523810632526875,-0.001700680237263441,-3.7559105065250557e-19,-0.0059523810632526875,1.5543542812548274e-20,1.029767290454465e-19,0.001700680237263441,2.3342319969455776e-21,0.0,-0.0,0.0024801588151603937,-5.837407378932122e-19,-0.0029761905316263437,-8.169812494180501e-21,2.321225712724175e-21,1.7564973512410404e-19,2.3342319969455776e-21,0.0004960317746736109,0.0,-0.0,0.0066964286379516125,0.0,-0.0022321429569274187,-0.0066964286379516125,0.0,0.0,0.0,0.0,0.0022321429569274187,-0.0,0.008928571827709675,-0.0,-0.0,-0.0535714291036129,-0.0,-0.0,-0.0,-0.0,-0.0,0.02678571455180645,8.0,7.0,4.0,0.11741071194410324,-0.02544642798602581,-0.02834821492433548,-0.04330357164144516,0.0014880952658131719,0.0022321429569274187,0.0035714285913854837,0.0018601190531626344,0.004017857369035482,0.004464285913854837,-0.02544642798602581,0.014710884541273117,0.0022321429569274187,0.0035714285913854837,-0.0014880952658131719,-0.0006377550889737904,-0.0010204081190750003,-4.781264206800182e-19,-3.5013311327276564e-20,-0.0,-0.02834821492433548,0.0022321429569274187,0.01912202313542366,0.004017857369035482,-2.4859805017507396e-20,-0.0007440476329065859,2.623505159324848e-19,-0.0022321429569274187,-0.0013392857508733869,-0.0,-0.04330357164144516,0.0035714285913854837,0.004017857369035482,0.06011904776096344,2.0960940899026985e-20,2.173379577861574e-19,-0.0023809524718672037,-6.900725825890077e-20,-0.0026785715017467737,-0.013392857275903225,0.0014880952658131719,-0.0014880952658131719,-2.4859805017507396e-20,2.0960940899026985e-20,0.00021258502965793014,9.529493251393633e-22,-7.669966798619026e-21,9.635111250529905e-21,1.961314702609986e-21,-0.0,0.0022321429569274187,-0.0006377550889737904,-0.0007440476329065859,2.173379577861574e-19,9.529493251393633e-22,0.00021258502965793014,-6.878232329342317e-20,1.5808476161169364e-19,7.800053066846494e-21,-0.0,0.0035714285913854837,-0.0010204081190750003,2.623505159324848e-19,-0.0023809524718672037,-7.669966798619026e-21,-6.878232329342317e-20,0.0006802721181884408,-2.8270143455576735e-21,-2.1578678411129306e-21,-0.0,0.0018601190531626344,-4.781264206800182e-19,-0.0022321429569274187,-6.900725825890077e-20,9.635111250529905e-21,1.5808476161169364e-19,-2.8270143455576735e-21,0.00037202381645329297,2.630060339497132e-20,-0.0,0.004017857369035482,-3.5013311327276564e-20,-0.0013392857508733869,-0.0026785715017467737,1.961314702609986e-21,7.800053066846494e-21,-2.1578678411129306e-21,2.630060339497132e-20,0.0008928571478463709,-0.0,0.004464285913854837,-0.0,-0.0,-0.013392857275903225,-0.0,-0.0,-0.0,-0.0,-0.0,0.004464285913854837,8.0,7.0,5.0,0.09944728016853333,-0.02083333395421505,-0.02321428619325161,-0.03014455735683441,0.0011904762359336019,0.0017857142956927419,0.0023809524718672037,0.0014880952658131719,0.0026785715017467737,0.0025510203558951616,-0.02083333395421505,0.011904762126505375,0.0017857142956927419,0.0023809524718672037,-0.0011904762359336019,-0.0005102040595375001,-0.0006802721181884408,-3.2526065174565133e-19,0.0,-0.0,-0.02321428619325161,0.0017857142956927419,0.015476190485060215,0.0026785715017467737,-3.417233683177436e-20,-0.0005952381179668009,1.0664481623537315e-19,-0.0017857142956927419,-0.0008928571478463709,-0.0,-0.03014455735683441,0.0023809524718672037,0.0026785715017467737,0.030378401279449463,-2.299162083523065e-20,1.2807882366542377e-19,-0.0011904762359336019,0.0,-0.0013392857508733869,-0.005102040711790323,0.0011904762359336019,-0.0011904762359336019,-3.417233683177436e-20,-2.299162083523065e-20,0.0001700680295471102,1.7730963781307935e-20,8.906294045036796e-21,-3.451142514516498e-21,-2.7268033126617566e-21,-0.0,0.0017857142956927419,-0.0005102040595375001,-0.0005952381179668009,1.2807882366542377e-19,1.7730963781307935e-20,0.0001700680295471102,-3.04699474958209e-20,1.2197274440461925e-19,0.0,-0.0,0.0023809524718672037,-0.0006802721181884408,1.0664481623537315e-19,-0.0011904762359336019,8.906294045036796e-21,-3.04699474958209e-20,0.0003401360590942204,-2.1064858766735392e-35,0.0,-0.0,0.0014880952658131719,-3.2526065174565133e-19,-0.0017857142956927419,0.0,-3.451142514516498e-21,1.2197274440461925e-19,-2.1064858766735392e-35,0.00029761905898340046,1.3552527156068805e-20,-0.0,0.0026785715017467737,0.0,-0.0008928571478463709,-0.0013392857508733869,-2.7268033126617566e-21,0.0,0.0,1.3552527156068805e-20,0.00044642857392318547,-0.0,0.0025510203558951616,-0.0,-0.0,-0.005102040711790323,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012755101779475808,8.0,7.0,6.0,0.0863095223903656,-0.01764455810189247,-0.019664116203784943,-0.022215135395526886,0.0009920635493472219,0.0014880952658131719,0.001700680237263441,0.0012400794075801969,0.0019132653251290321,0.0015943878097459674,-0.01764455810189247,0.010001619346439838,0.0014880952658131719,0.001700680237263441,-0.0009920635493472219,-0.00042517005931586027,-0.00048590864753350616,-3.5236570605778894e-19,-1.7618285302889447e-19,-5.057502723325914e-19,-0.019664116203784943,0.0014880952658131719,0.013003118336200714,0.0019132653251290321,-1.894211129445042e-20,-0.0004960317746736109,-2.6377494679669524e-19,-0.0014880952658131719,-0.0006377550889737904,-6.63797242130049e-19,-0.022215135395526886,0.001700680237263441,0.0019132653251290321,0.017655186355113983,-9.786329398468688e-21,-1.0680368014942308e-19,-0.0006802721181884408,5.421010862427522e-20,-0.0007653061184100807,-0.00239158165641129,0.0009920635493472219,-0.0009920635493472219,-1.894211129445042e-20,-9.786329398468688e-21,0.00014172335795592517,7.558532483852349e-21,3.308052183499937e-21,-9.260832218188834e-22,-5.972844314227297e-22,-7.468950769007248e-36,0.0014880952658131719,-0.00042517005931586027,-0.0004960317746736109,-1.0680368014942308e-19,7.558532483852349e-21,0.00014172335795592517,2.91242474238193e-20,1.0842021724855044e-19,0.0,3.1596286569223115e-35,0.001700680237263441,-0.00048590864753350616,-2.6377494679669524e-19,-0.0006802721181884408,3.308052183499937e-21,2.91242474238193e-20,0.00019436345610301942,2.407412430484045e-35,6.473603361780078e-20,2.0230011151797598e-19,0.0012400794075801969,-3.5236570605778894e-19,-0.0014880952658131719,5.421010862427522e-20,-9.260832218188834e-22,1.0842021724855044e-19,2.407412430484045e-35,0.00024801588733680546,-1.3552527156068805e-20,2.714547135581312e-36,0.0019132653251290321,-1.7618285302889447e-19,-0.0006377550889737904,-0.0007653061184100807,-5.972844314227297e-22,0.0,6.473603361780078e-20,-1.3552527156068805e-20,0.00025510202976875007,2.6551890202189845e-19,0.0015943878097459674,-5.057502723325914e-19,-6.63797242130049e-19,-0.00239158165641129,-7.468950769007248e-36,3.1596286569223115e-35,2.0230011151797598e-19,2.714547135581312e-36,2.6551890202189845e-19,0.00047831633128225803,8.0,7.0,7.0,0.0762648805975914,-0.015306122601032257,-0.017059948295354843,-0.017059948295354843,0.0008503401186317205,0.0012755101779475808,0.0012755101779475808,0.0010629252064973116,0.001434948993846774,0.0010629252064973116,-0.015306122601032257,0.008624878711998463,0.0012755101779475808,0.0012755101779475808,-0.0008503401186317205,-0.00036443150020204484,-0.00036443150020204484,-2.8189256484623115e-18,-1.305896606214643e-18,-2.7647155398380363e-18,-0.017059948295354843,0.0012755101779475808,0.011213860474526882,0.001434948993846774,-2.8932308692976437e-18,-0.00042517005931586027,-1.0503208545953324e-18,-0.0012755101779475808,-0.00047831633128225803,-8.402566836762659e-19,-0.017059948295354843,0.0012755101779475808,0.001434948993846774,0.011213860474526882,-2.881236750415625e-18,-9.821872283102584e-19,-0.00042517005931586027,-2.654951367351589e-20,-0.00047831633128225803,-0.0012755101779475808,0.0008503401186317205,-0.0008503401186317205,-2.8932308692976437e-18,-2.881236750415625e-18,0.00012147716188337654,1.8174721946135626e-19,1.8381464108015891e-19,3.1372042237537676e-19,1.408269435251789e-19,3.1076193336639843e-19,0.0012755101779475808,-0.00036443150020204484,-0.00042517005931586027,-9.821872283102584e-19,1.8174721946135626e-19,0.00012147716188337654,2.6227898742771882e-20,1.0164395367051604e-19,6.561116485648774e-20,1.3701539866011112e-19,0.0012755101779475808,-0.00036443150020204484,-1.0503208545953324e-18,-0.00042517005931586027,1.8381464108015891e-19,2.6227898742771882e-20,0.00012147716188337654,1.3721933745519665e-19,8.131516293641283e-20,9.486769009248164e-20,0.0010629252064973116,-2.8189256484623115e-18,-0.0012755101779475808,-2.654951367351589e-20,3.1372042237537676e-19,1.0164395367051604e-19,1.3721933745519665e-19,0.00021258502965793014,-5.421010862427522e-20,-2.710505431213761e-20,0.001434948993846774,-1.305896606214643e-18,-0.00047831633128225803,-0.00047831633128225803,1.408269435251789e-19,6.561116485648774e-20,8.131516293641283e-20,-5.421010862427522e-20,0.0001594387722434476,2.168404344971009e-19,0.0010629252064973116,-2.7647155398380363e-18,-8.402566836762659e-19,-0.0012755101779475808,3.1076193336639843e-19,1.3701539866011112e-19,9.486769009248164e-20,-2.710505431213761e-20,2.168404344971009e-19,0.00021258502965793014,8.0,7.0,8.0,0.0683283731341362,-0.013516864739358425,-0.01506696455180645,-0.013516864739358425,0.0007440476329065859,0.0011160714784637094,0.0009920635493472219,0.0009300595265813172,0.0011160714784637094,0.0007440476329065859,-0.013516864739358425,0.007582199759781361,0.0011160714784637094,0.0009920635493472219,-0.0007440476329065859,-0.0003188775444868952,-0.00028344671591185033,-2.846030702774449e-19,-5.363009022498789e-20,-1.4907779871675686e-19,-0.01506696455180645,0.0011160714784637094,0.0098586305975914,0.0011160714784637094,-2.572440747484278e-20,-0.00037202381645329297,0.0,-0.0011160714784637094,-0.00037202381645329297,-1.2197274440461925e-19,-0.013516864739358425,0.0009920635493472219,0.0011160714784637094,0.007582199759781361,-1.4820630578029542e-20,3.77515182617229e-20,-0.00028344671591185033,-5.480359132673641e-20,-0.0003188775444868952,-0.0007440476329065859,0.0007440476329065859,-0.0007440476329065859,-2.572440747484278e-20,-1.4820630578029542e-20,0.00010629251482896507,5.996040813321531e-21,3.179119040589285e-21,2.8686296991815366e-22,8.210441077475241e-22,1.625296055260858e-22,0.0011160714784637094,-0.0003188775444868952,-0.00037202381645329297,3.77515182617229e-20,5.996040813321531e-21,0.00010629251482896507,-1.263445845812438e-20,8.131516293641283e-20,1.80045109558508e-21,7.383515424766781e-22,0.0009920635493472219,-0.00028344671591185033,0.0,-0.00028344671591185033,3.179119040589285e-21,-1.263445845812438e-20,8.09847770142369e-05,0.0,1.0164395367051604e-20,4.404571325722362e-20,0.0009300595265813172,-2.846030702774449e-19,-0.0011160714784637094,-5.480359132673641e-20,2.8686296991815366e-22,8.131516293641283e-20,0.0,0.00018601190822664648,1.3552527156068805e-20,0.0,0.0011160714784637094,-5.363009022498789e-20,-0.00037202381645329297,-0.0003188775444868952,8.210441077475241e-22,1.80045109558508e-21,1.0164395367051604e-20,1.3552527156068805e-20,0.00010629251482896507,3.3881317890172014e-20,0.0007440476329065859,-1.4907779871675686e-19,-1.2197274440461925e-19,-0.0007440476329065859,1.625296055260858e-22,7.383515424766781e-22,4.404571325722362e-20,0.0,3.3881317890172014e-20,0.00010629251482896507,8.0,7.0,9.0,0.061895743012428284,-0.012103174813091755,-0.013492063619196415,-0.01097582932561636,0.0006613756413571537,0.0009920635493472219,0.0007936508045531809,0.0008267195662483573,0.0008928571478463709,0.0005411255406215787,-0.012103174813091755,0.0067649283446371555,0.0009920635493472219,0.0007936508045531809,-0.0006613756413571537,-0.00028344671591185033,-0.00022675737272948027,0.0,5.330579988195016e-20,6.776263578034403e-20,-0.013492063619196415,0.0009920635493472219,0.008796296082437038,0.0008928571478463709,3.8847471181044576e-20,-0.0003306878206785768,2.0328790734103208e-20,-0.0009920635493472219,-0.00029761905898340046,1.3552527156068805e-19,-0.01097582932561636,0.0007936508045531809,0.0008928571478463709,0.005372281651943922,7.928731350886775e-21,-3.384329020021445e-20,-0.00019841270113829523,-0.0,-0.00022321428696159273,-0.00046382189611904323,0.0006613756413571537,-0.0006613756413571537,3.8847471181044576e-20,7.928731350886775e-21,9.448223863728344e-05,-1.0489635675324065e-20,3.663628762660509e-23,0.0,-5.334368822751743e-22,-7.471530592337334e-22,0.0009920635493472219,-0.00028344671591185033,-0.0003306878206785768,-3.384329020021445e-20,-1.0489635675324065e-20,9.448223863728344e-05,9.669511139578314e-21,0.0,-2.256949153578792e-36,-2.256949153578792e-36,0.0007936508045531809,-0.00022675737272948027,2.0328790734103208e-20,-0.00019841270113829523,3.663628762660509e-23,9.669511139578314e-21,5.668934318237007e-05,0.0,-1.3552527156068805e-20,-1.6940658945086007e-20,0.0008267195662483573,0.0,-0.0009920635493472219,-0.0,0.0,0.0,0.0,0.0001653439103392884,0.0,0.0,0.0008928571478463709,5.330579988195016e-20,-0.00029761905898340046,-0.00022321428696159273,-5.334368822751743e-22,-2.256949153578792e-36,-1.3552527156068805e-20,0.0,7.440476474585012e-05,-3.049318610115481e-20,0.0005411255406215787,6.776263578034403e-20,1.3552527156068805e-19,-0.00046382189611904323,-7.471530592337334e-22,-2.256949153578792e-36,-1.6940658945086007e-20,0.0,-3.049318610115481e-20,5.7977737014880404e-05,8.0,7.0,10.0,0.05657467618584633,-0.010957792401313782,-0.01221590954810381,-0.00909090880304575,0.0005952381179668009,0.0008928571478463709,0.0006493506371043622,0.0007440476329065859,0.0007305194740183651,0.000405844155466184,-0.010957792401313782,0.006106988061219454,0.0008928571478463709,0.0006493506371043622,-0.0005952381179668009,-0.00025510202976875007,-0.00018552875553723425,-0.0,3.3881317890172014e-21,-6.776263578034403e-21,-0.01221590954810381,0.0008928571478463709,0.007941016927361488,0.0007305194740183651,1.982541126480377e-19,-0.00029761905898340046,6.776263578034403e-21,-0.0008928571478463709,-0.00024350649619009346,6.776263578034403e-21,-0.00909090880304575,0.0006493506371043622,0.0007305194740183651,0.003947961609810591,1.441848056736555e-19,-9.604637750585699e-35,-0.00014430013834498823,-0.0,-0.00016233765927609056,-0.0003043831093236804,0.0005952381179668009,-0.0005952381179668009,1.982541126480377e-19,1.441848056736555e-19,8.50340147735551e-05,-5.664402941557569e-20,-4.119565922549789e-20,0.0,7.221003090542928e-37,-3.009265538105056e-36,0.0008928571478463709,-0.00025510202976875007,-0.00029761905898340046,-9.604637750585699e-35,-5.664402941557569e-20,8.50340147735551e-05,2.744182091459089e-35,0.0,-0.0,0.0,0.0006493506371043622,-0.00018552875553723425,6.776263578034403e-21,-0.00014430013834498823,-4.119565922549789e-20,2.744182091459089e-35,4.122861355426721e-05,0.0,-1.6940658945086007e-21,0.0,0.0007440476329065859,-0.0,-0.0008928571478463709,-0.0,0.0,0.0,0.0,0.00014880952949170023,0.0,0.0,0.0007305194740183651,3.3881317890172014e-21,-0.00024350649619009346,-0.00016233765927609056,7.221003090542928e-37,-0.0,-1.6940658945086007e-21,0.0,5.411255551734939e-05,1.6940658945086007e-21,0.000405844155466184,-6.776263578034403e-21,6.776263578034403e-21,-0.0003043831093236804,-3.009265538105056e-36,0.0,0.0,0.0,1.6940658945086007e-21,3.382034628884867e-05,8.0,7.0,11.0,0.052098941057920456,-0.010010822676122189,-0.01116071455180645,-0.007653804495930672,0.0005411255406215787,0.000811688310932368,0.0005411255406215787,0.0006764069548808038,0.0006087662186473608,0.00031218782532960176,-0.010010822676122189,0.005565862637013197,0.000811688310932368,0.0005411255406215787,-0.0005411255406215787,-0.00023191094805952162,-0.00015460730355698615,-1.0848413763038548e-18,-8.605854744103691e-19,-3.5914196963582334e-19,-0.01116071455180645,0.000811688310932368,0.007237554062157869,0.0006087662186473608,-1.2997178772316016e-18,-0.00027056277031078935,-3.6591823321385775e-19,-0.000811688310932368,-0.000202922077733092,-1.0842021724855044e-19,-0.007653804495930672,0.0005411255406215787,0.0006087662186473608,0.0029876374173909426,-9.335662756874274e-19,-3.747091985713416e-19,-0.00010822511103469878,-1.0012833906846868e-19,-0.00012175324809504673,-0.00020812520233448595,0.0005411255406215787,-0.0005411255406215787,-1.2997178772316016e-18,-9.335662756874274e-19,7.730365177849308e-05,1.9468367800683206e-20,2.3124258923336102e-20,1.0012833906846868e-19,9.011550516162182e-20,4.6213078327303136e-20,0.000811688310932368,-0.00023191094805952162,-0.00027056277031078935,-3.747091985713416e-19,1.9468367800683206e-20,7.730365177849308e-05,1.2362519600573304e-20,6.122875550883327e-20,2.729658216686058e-20,1.9805605459011954e-20,0.0005411255406215787,-0.00015460730355698615,-3.6591823321385775e-19,-0.00010822511103469878,2.3124258923336102e-20,1.2362519600573304e-20,3.092145925620571e-05,2.8608096415109014e-20,1.9481757786848908e-20,-1.0164395367051604e-20,0.0006764069548808038,-1.0848413763038548e-18,-0.000811688310932368,-1.0012833906846868e-19,1.0012833906846868e-19,6.122875550883327e-20,2.8608096415109014e-20,0.00013528138515539467,1.6626192098030435e-34,7.222237291452134e-35,0.0006087662186473608,-8.605854744103691e-19,-0.000202922077733092,-0.00012175324809504673,9.011550516162182e-20,2.729658216686058e-20,1.9481757786848908e-20,1.6626192098030435e-34,4.058441481902264e-05,8.470329472543003e-21,0.00031218782532960176,-3.5914196963582334e-19,-1.0842021724855044e-19,-0.00020812520233448595,4.6213078327303136e-20,1.9805605459011954e-20,-1.0164395367051604e-20,7.222237291452134e-35,8.470329472543003e-21,2.0812520233448595e-05,8.0,7.0,12.0,0.04828133061528206,-0.009214743971824646,-0.010273580439388752,-0.006532901432365179,0.0004960317746736109,0.0007440476329065859,0.0004578754596877843,0.0006200397037900984,0.000515109917614609,0.0002452904300298542,-0.009214743971824646,0.005112942773848772,0.0007440476329065859,0.0004578754596877843,-0.0004960317746736109,-0.00021258502965793014,-0.00013082155783195049,-0.0,5.421010862427522e-20,-1.0164395367051604e-20,-0.010273580439388752,0.0007440476329065859,0.006648733280599117,0.000515109917614609,0.0,-0.00024801588733680546,5.082197683525802e-20,-0.0007440476329065859,-0.00017170330102089792,9.486769009248164e-20,-0.006532901432365179,0.0004578754596877843,0.000515109917614609,0.002316136145964265,-0.0,-0.0,-8.325008093379438e-05,-0.0,-9.365634468849748e-05,-0.0001471742580179125,0.0004960317746736109,-0.0004960317746736109,0.0,-0.0,7.086167897796258e-05,0.0,0.0,0.0,0.0,0.0,0.0007440476329065859,-0.00021258502965793014,-0.00024801588733680546,-0.0,0.0,7.086167897796258e-05,0.0,0.0,0.0,0.0,0.0004578754596877843,-0.00013082155783195049,5.082197683525802e-20,-8.325008093379438e-05,0.0,0.0,2.3785738449078053e-05,0.0,-9.740878893424454e-21,8.470329472543003e-22,0.0006200397037900984,-0.0,-0.0007440476329065859,-0.0,0.0,0.0,0.0,0.00012400794366840273,0.0,0.0,0.000515109917614609,5.421010862427522e-20,-0.00017170330102089792,-9.365634468849748e-05,0.0,0.0,-9.740878893424454e-21,0.0,3.121878035017289e-05,-1.9481757786848908e-20,0.0002452904300298542,-1.0164395367051604e-20,9.486769009248164e-20,-0.0001471742580179125,0.0,0.0,8.470329472543003e-22,0.0,-1.9481757786848908e-20,1.3379477422859054e-05,8.0,7.0,13.0,0.044986262917518616,-0.008536106906831264,-0.009517268277704716,-0.005641679745167494,0.0004578754596877843,0.0006868132040835917,0.0003924646880477667,0.0005723443464376032,0.0004415227740537375,0.00019623234402388334,-0.008536106906831264,0.004728265106678009,0.0006868132040835917,0.0003924646880477667,-0.0004578754596877843,-0.00019623234402388334,-0.00011213276593480259,1.6551633835050786e-18,2.608861477543245e-19,5.183841637196318e-19,-0.009517268277704716,0.0006868132040835917,0.006148613523691893,0.0004415227740537375,1.574748813460583e-18,-0.00022893772984389216,1.9651164376299768e-19,-0.0006868132040835917,-0.0001471742580179125,8.809142651444724e-20,-0.005641679745167494,0.0003924646880477667,0.0004415227740537375,0.0018322451505810022,9.023085679051204e-19,2.6403845552058167e-19,-6.541077891597524e-05,7.300807885022688e-20,-7.358712900895625e-05,-0.00010703581938287243,0.0004578754596877843,-0.0004578754596877843,1.574748813460583e-18,9.023085679051204e-19,6.541077891597524e-05,-9.201263743416365e-20,-5.257864996237923e-20,-1.694479614061848e-19,-4.3572333302296005e-20,-5.0174200711575234e-20,0.0006868132040835917,-0.00019623234402388334,-0.00022893772984389216,2.6403845552058167e-19,-9.201263743416365e-20,6.541077891597524e-05,-5.9347228192417704e-21,-8.810229618468406e-20,-1.1297797596136909e-20,-2.056010403758542e-20,0.0003924646880477667,-0.00011213276593480259,1.9651164376299768e-19,-6.541077891597524e-05,-5.257864996237923e-20,-5.9347228192417704e-21,1.8688793716137297e-05,-4.218908375412847e-20,5.929230630780102e-21,-1.9481757786848908e-20,0.0005723443464376032,1.6551633835050786e-18,-0.0006868132040835917,7.300807885022688e-20,-1.694479614061848e-19,-8.810229618468406e-20,-4.218908375412847e-20,0.00011446886492194608,-1.3626328791932155e-20,6.601868620969579e-21,0.0004415227740537375,2.608861477543245e-19,-0.0001471742580179125,-7.358712900895625e-05,-4.3572333302296005e-20,-1.1297797596136909e-20,5.929230630780102e-21,-1.3626328791932155e-20,2.4529043002985418e-05,-1.3552527156068805e-20,0.00019623234402388334,5.183841637196318e-19,8.809142651444724e-20,-0.00010703581938287243,-5.0174200711575234e-20,-2.056010403758542e-20,-1.9481757786848908e-20,6.601868620969579e-21,-1.3552527156068805e-20,8.91965191840427e-06,8.0,7.0,14.0,0.04211309552192688,-0.007950680330395699,-0.008864795789122581,-0.004921343643218279,0.00042517005931586027,0.0006377550889737904,0.0003401360590942204,0.0005314626032486558,0.00038265305920504034,0.0001594387722434476,-0.007950680330395699,0.00439747329801321,0.0006377550889737904,0.0003401360590942204,-0.00042517005931586027,-0.00018221575010102242,-9.718172805150971e-05,-3.3881317890172014e-19,-8.131516293641283e-20,1.5670109524204556e-19,-0.008864795789122581,0.0006377550889737904,0.0057185376062989235,0.00038265305920504034,8.639736061993863e-20,-0.00021258502965793014,2.795208725939191e-19,-0.0006377550889737904,-0.00012755101488437504,-9.147955830346444e-20,-0.004921343643218279,0.0003401360590942204,0.00038265305920504034,0.0014746042434126139,3.9302328752599536e-19,-4.0657581468206416e-20,-5.232862531556748e-05,-1.3552527156068805e-19,-5.886970029678196e-05,-7.97193861217238e-05,0.00042517005931586027,-0.00042517005931586027,8.639736061993863e-20,3.9302328752599536e-19,6.073858094168827e-05,-9.504439008848974e-20,-5.200564321125299e-20,3.269880827456491e-20,3.5748294421066174e-21,-1.6940658945086007e-20,0.0006377550889737904,-0.00018221575010102242,-0.00021258502965793014,-4.0657581468206416e-20,-9.504439008848974e-20,6.073858094168827e-05,-1.9481757786848908e-20,8.131516293641283e-20,3.5575383784680614e-20,-1.8085259767851182e-22,0.0003401360590942204,-9.718172805150971e-05,2.795208725939191e-19,-5.232862531556748e-05,-5.200564321125299e-20,-1.9481757786848908e-20,1.4951035154808778e-05,-2.795208725939191e-20,-8.893845946170154e-21,-3.949590323310372e-21,0.0005314626032486558,-3.3881317890172014e-19,-0.0006377550889737904,-1.3552527156068805e-19,3.269880827456491e-20,8.131516293641283e-20,-2.795208725939191e-20,0.00010629251482896507,2.625802136488331e-20,7.684343908523537e-21,0.00038265305920504034,-8.131516293641283e-20,-0.00012755101488437504,-5.886970029678196e-05,3.5748294421066174e-21,3.5575383784680614e-20,-8.893845946170154e-21,2.625802136488331e-20,1.9623234038590454e-05,5.549322892864549e-21,0.0001594387722434476,1.5670109524204556e-19,-9.147955830346444e-20,-7.97193861217238e-05,-1.6940658945086007e-20,-1.8085259767851182e-22,-3.949590323310372e-21,7.684343908523537e-21,5.549322892864549e-21,6.1322607507463545e-06,8.0,7.0,15.0,0.039585523307323456,-0.0074404762126505375,-0.008296131156384945,-0.004330794792622328,0.00039682540227659047,0.0005952381179668009,0.00029761905898340046,0.0004960317746736109,0.0003348214377183467,0.00013130252773407847,-0.0074404762126505375,0.004109977278858423,0.0005952381179668009,0.00029761905898340046,-0.00039682540227659047,-0.0001700680295471102,-8.50340147735551e-05,8.673617379884035e-19,-2.303929616531697e-19,7.242131699024268e-20,-0.008296131156384945,0.0005952381179668009,0.005344741977751255,0.0003348214377183467,2.490276864927643e-19,-0.00019841270113829523,-1.3721933745519665e-19,-0.0005952381179668009,-0.00011160714348079637,-7.369186641112413e-20,-0.004330794792622328,0.00029761905898340046,0.0003348214377183467,0.0012044962495565414,1.5585406229479126e-19,-2.0328790734103208e-19,-4.251700738677755e-05,-2.0328790734103208e-20,-4.783163240063004e-05,-6.0601163568207994e-05,0.00039682540227659047,-0.00039682540227659047,2.490276864927643e-19,1.5585406229479126e-19,5.668934318237007e-05,4.322880777884215e-20,-8.374595433543495e-21,-7.262881007702278e-20,5.422496475576493e-21,-1.164670302474663e-20,0.0005952381179668009,-0.0001700680295471102,-0.00019841270113829523,-2.0328790734103208e-19,4.322880777884215e-20,5.668934318237007e-05,2.202285662861181e-20,-9.486769009248164e-20,1.3552527156068805e-20,4.346280376476019e-21,0.00029761905898340046,-8.50340147735551e-05,-1.3721933745519665e-19,-4.251700738677755e-05,-8.374595433543495e-21,2.202285662861181e-20,1.2147716006438714e-05,-8.470329472543003e-21,1.5670109524204556e-20,-1.2007557537747012e-21,0.0004960317746736109,8.673617379884035e-19,-0.0005952381179668009,-2.0328790734103208e-20,-7.262881007702278e-20,-9.486769009248164e-20,-8.470329472543003e-21,9.920635056914762e-05,-2.541098841762901e-21,4.064990904490756e-21,0.0003348214377183467,-2.303929616531697e-19,-0.00011160714348079637,-4.783163240063004e-05,5.422496475576493e-21,1.3552527156068805e-20,1.5670109524204556e-20,-2.541098841762901e-21,1.594387686054688e-05,4.4607120092728504e-21,0.00013130252773407847,7.242131699024268e-20,-7.369186641112413e-20,-6.0601163568207994e-05,-1.164670302474663e-20,4.346280376476019e-21,-1.2007557537747012e-21,4.064990904490756e-21,4.4607120092728504e-21,4.328654540586285e-06,8.0,7.0,16.0,0.03734462708234787,-0.006991859059780836,-0.007796087302267551,-0.0038405987434089184,0.00037202381645329297,0.0005580357392318547,0.00026260505546815693,0.0004650297632906586,0.00029543068376369774,0.00010941876826109365,-0.006991859059780836,0.003857793053612113,0.0005580357392318547,0.00026260505546815693,-0.00037202381645329297,-0.0001594387722434476,-7.503000961150974e-05,-3.3881317890172014e-19,-4.811147140404426e-19,-3.6083603553033194e-19,-0.007796087302267551,0.0005580357392318547,0.005016850307583809,0.00029543068376369774,-9.317362419797304e-20,-0.00018601190822664648,-7.19130972218901e-19,-0.0005580357392318547,-9.847689216258004e-05,-5.899584477626202e-19,-0.0038405987434089184,0.00026260505546815693,0.00029543068376369774,0.0009966486832126975,-3.6591823321385775e-19,-7.860465750519907e-19,-3.501400715322234e-05,-9.75781955236954e-19,-3.939075759262778e-05,-4.689375782618299e-05,0.00037202381645329297,-0.00037202381645329297,-9.317362419797304e-20,-3.6591823321385775e-19,5.3146257414482534e-05,-2.157845222893056e-20,-1.757856060020644e-20,2.655981829215264e-21,2.1431264163097273e-20,2.3611043404713622e-20,0.0005580357392318547,-0.0001594387722434476,-0.00018601190822664648,-7.860465750519907e-19,-2.157845222893056e-20,5.3146257414482534e-05,5.336307567702092e-20,-5.082197683525802e-21,2.625802136488331e-20,3.5070280160791886e-20,0.00026260505546815693,-7.503000961150974e-05,-7.19130972218901e-19,-3.501400715322234e-05,-1.757856060020644e-20,5.336307567702092e-20,1.0004001524066553e-05,4.828087799349512e-20,3.049318610115481e-20,9.449693546347315e-21,0.0004650297632906586,-3.3881317890172014e-19,-0.0005580357392318547,-9.75781955236954e-19,2.655981829215264e-21,-5.082197683525802e-21,4.828087799349512e-20,9.300595411332324e-05,-8.046812998915853e-21,5.45984569971718e-20,0.00029543068376369774,-4.811147140404426e-19,-9.847689216258004e-05,-3.939075759262778e-05,2.1431264163097273e-20,2.625802136488331e-20,3.049318610115481e-20,-8.046812998915853e-21,1.3130252227711026e-05,1.442201514889708e-20,0.00010941876826109365,-3.6083603553033194e-19,-5.899584477626202e-19,-4.689375782618299e-05,2.3611043404713622e-20,3.5070280160791886e-20,9.449693546347315e-21,5.45984569971718e-20,1.442201514889708e-20,3.1262504762707977e-06,8.0,8.0,3.0,0.12905092537403107,-0.028935184702277184,-0.028935184702277184,-0.0598958320915699,0.0017361111240461469,0.002314814832061529,0.0052083334885537624,0.0017361111240461469,0.0052083334885537624,0.0078125,-0.028935184702277184,0.016947751864790916,0.002314814832061529,0.0052083334885537624,-0.0017361111240461469,-0.0006613756413571537,-0.0014880952658131719,1.2520183779617606e-19,0.0,-0.0,-0.028935184702277184,0.002314814832061529,0.016947751864790916,0.0052083334885537624,-1.7734503532718294e-20,-0.0006613756413571537,-1.7320745851614709e-19,-0.0017361111240461469,-0.0014880952658131719,-0.0,-0.0598958320915699,0.0052083334885537624,0.0052083334885537624,0.1380208283662796,-9.943832180358314e-20,-1.412468540083232e-19,-0.0052083334885537624,-1.4774243840241217e-20,-0.0052083334885537624,-0.046875,0.0017361111240461469,-0.0017361111240461469,-1.7734503532718294e-20,-9.943832180358314e-20,0.00024801588733680546,-1.2793832089915053e-20,2.8410949548334364e-20,5.379707246438563e-21,0.0,-0.0,0.002314814832061529,-0.0006613756413571537,-0.0006613756413571537,-1.412468540083232e-19,-1.2793832089915053e-20,0.0001889644772745669,4.035624215599276e-20,-3.448123709177463e-20,0.0,-0.0,0.0052083334885537624,-0.0014880952658131719,-1.7320745851614709e-19,-0.0052083334885537624,2.8410949548334364e-20,4.035624215599276e-20,0.0014880952658131719,4.221212525783205e-21,0.0,-0.0,0.0017361111240461469,1.2520183779617606e-19,-0.0017361111240461469,-1.4774243840241217e-20,5.379707246438563e-21,-3.448123709177463e-20,4.221212525783205e-21,0.00024801588733680546,0.0,-0.0,0.0052083334885537624,0.0,-0.0014880952658131719,-0.0052083334885537624,0.0,0.0,0.0,0.0,0.0014880952658131719,-0.0,0.0078125,-0.0,-0.0,-0.046875,-0.0,-0.0,-0.0,-0.0,-0.0,0.0234375,8.0,8.0,4.0,0.10538194328546524,-0.02248263917863369,-0.02248263917863369,-0.03828125074505806,0.0013020833721384406,0.0017361111240461469,0.0031250000465661287,0.0013020833721384406,0.0031250000465661287,0.00390625,-0.02248263917863369,0.012934028171002865,0.0017361111240461469,0.0031250000465661287,-0.0013020833721384406,-0.0004960317746736109,-0.0008928571478463709,1.517109989498487e-19,2.8794050494220056e-20,-0.0,-0.02248263917863369,0.0017361111240461469,0.012934028171002865,0.0031250000465661287,6.838798432343412e-20,-0.0004960317746736109,-4.6881055752508116e-20,-0.0013020833721384406,-0.0008928571478463709,-0.0,-0.03828125074505806,0.0031250000465661287,0.0031250000465661287,0.05286458507180214,5.7830458445569614e-21,-6.497384804390978e-20,-0.0020833334419876337,3.542097242877169e-20,-0.0020833334419876337,-0.01171875,0.0013020833721384406,-0.0013020833721384406,6.838798432343412e-20,5.7830458445569614e-21,0.00018601190822664648,-9.519270421855535e-21,1.1945049461794747e-21,-7.200392359185298e-21,-2.846803874309116e-21,-0.0,0.0017361111240461469,-0.0004960317746736109,-0.0004960317746736109,-6.497384804390978e-20,-9.519270421855535e-21,0.00014172335795592517,1.9486068173322133e-20,-3.2697586890691685e-20,-9.221121086437753e-22,-0.0,0.0031250000465661287,-0.0008928571478463709,-4.6881055752508116e-20,-0.0020833334419876337,1.1945049461794747e-21,1.9486068173322133e-20,0.0005952381179668009,-2.285948963758846e-21,-2.674857137597315e-21,-0.0,0.0013020833721384406,1.517109989498487e-19,-0.0013020833721384406,3.542097242877169e-20,-7.200392359185298e-21,-3.2697586890691685e-20,-2.285948963758846e-21,0.00018601190822664648,-7.834328555685593e-21,-0.0,0.0031250000465661287,2.8794050494220056e-20,-0.0008928571478463709,-0.0020833334419876337,-2.846803874309116e-21,-9.221121086437753e-22,-2.674857137597315e-21,-7.834328555685593e-21,0.0005952381179668009,-0.0,0.00390625,-0.0,-0.0,-0.01171875,-0.0,-0.0,-0.0,-0.0,-0.0,0.00390625,8.0,8.0,5.0,0.08918650448322296,-0.01840277761220932,-0.01840277761220932,-0.02663690410554409,0.0010416667209938169,0.0013888889225199819,0.0020833334419876337,0.0010416667209938169,0.0020833334419876337,0.0022321429569274187,-0.01840277761220932,0.01046627014875412,0.0013888889225199819,0.0020833334419876337,-0.0010416667209938169,-0.00039682540227659047,-0.0005952381179668009,0.0,1.3552527156068805e-20,-0.0,-0.01840277761220932,0.0013888889225199819,0.01046627014875412,0.0020833334419876337,-2.8876338809297744e-20,-0.00039682540227659047,-2.9565541818267805e-20,-0.0010416667209938169,-0.0005952381179668009,-0.0,-0.02663690410554409,0.0020833334419876337,0.0020833334419876337,0.02671130932867527,6.322059996151242e-20,3.8066972958725376e-21,-0.0010416667209938169,0.0,-0.0010416667209938169,-0.004464285913854837,0.0010416667209938169,-0.0010416667209938169,-2.8876338809297744e-20,6.322059996151242e-20,0.00014880952949170023,-2.8469870415004212e-21,-1.2065719280412322e-20,6.978342832328827e-21,1.0370978878275321e-21,-0.0,0.0013888889225199819,-0.00039682540227659047,-0.00039682540227659047,3.8066972958725376e-21,-2.8469870415004212e-21,0.00011337868636474013,8.044984154280287e-21,-6.776263578034403e-21,0.0,-0.0,0.0020833334419876337,-0.0005952381179668009,-2.9565541818267805e-20,-0.0010416667209938169,-1.2065719280412322e-20,8.044984154280287e-21,0.00029761905898340046,1.6363251132658656e-21,-4.53979132654052e-23,-0.0,0.0010416667209938169,0.0,-0.0010416667209938169,0.0,6.978342832328827e-21,-6.776263578034403e-21,1.6363251132658656e-21,0.00014880952949170023,6.776263578034403e-21,-0.0,0.0020833334419876337,1.3552527156068805e-20,-0.0005952381179668009,-0.0010416667209938169,1.0370978878275321e-21,0.0,-4.53979132654052e-23,6.776263578034403e-21,0.00029761905898340046,-0.0,0.0022321429569274187,-0.0,-0.0,-0.004464285913854837,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,8.0,8.0,6.0,0.07736028730869293,-0.015583664178848267,-0.015583664178848267,-0.0196242555975914,0.0008680555620230734,0.0011574074160307646,0.0014880952658131719,0.0008680555620230734,0.0014880952658131719,0.0013950893189758062,-0.015583664178848267,0.008792753331363201,0.0011574074160307646,0.0014880952658131719,-0.0008680555620230734,-0.0003306878206785768,-0.00042517005931586027,6.776263578034403e-20,2.710505431213761e-20,-0.0,-0.015583664178848267,0.0011574074160307646,0.008792753331363201,0.0014880952658131719,3.1748775185176417e-20,-0.0003306878206785768,-2.7173151309831185e-20,-0.0008680555620230734,-0.00042517005931586027,-0.0,-0.0196242555975914,0.0014880952658131719,0.0014880952658131719,0.015522693283855915,2.72438623275074e-20,-3.054292114327813e-21,-0.0005952381179668009,2.710505431213761e-20,-0.0005952381179668009,-0.0020926338620483875,0.0008680555620230734,-0.0008680555620230734,3.1748775185176417e-20,2.72438623275074e-20,0.00012400794366840273,-1.2830003470255776e-21,-7.08050367694696e-21,-3.367875961429239e-21,-7.034566779201229e-22,-0.0,0.0011574074160307646,-0.0003306878206785768,-0.0003306878206785768,-3.054292114327813e-21,-1.2830003470255776e-21,9.448223863728344e-05,7.763757286296462e-21,-2.710505431213761e-20,-6.776263578034403e-21,-0.0,0.0014880952658131719,-0.00042517005931586027,-2.7173151309831185e-20,-0.0005952381179668009,-7.08050367694696e-21,7.763757286296462e-21,0.0001700680295471102,-1.504632769052528e-36,0.0,-0.0,0.0008680555620230734,6.776263578034403e-20,-0.0008680555620230734,2.710505431213761e-20,-3.367875961429239e-21,-2.710505431213761e-20,-1.504632769052528e-36,0.00012400794366840273,-6.776263578034403e-21,-0.0,0.0014880952658131719,2.710505431213761e-20,-0.00042517005931586027,-0.0005952381179668009,-7.034566779201229e-22,-6.776263578034403e-21,0.0,-6.776263578034403e-21,0.0001700680295471102,-0.0,0.0013950893189758062,-0.0,-0.0,-0.0020926338620483875,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004185267898719758,8.0,8.0,7.0,0.0683283731341362,-0.013516864739358425,-0.013516864739358425,-0.01506696455180645,0.0007440476329065859,0.0009920635493472219,0.0011160714784637094,0.0007440476329065859,0.0011160714784637094,0.0009300595265813172,-0.013516864739358425,0.007582199759781361,0.0009920635493472219,0.0011160714784637094,-0.0007440476329065859,-0.00028344671591185033,-0.0003188775444868952,-1.4907779871675686e-19,-7.8520636634479e-20,-2.439454888092385e-19,-0.013516864739358425,0.0009920635493472219,0.007582199759781361,0.0011160714784637094,-3.0441435513107768e-22,-0.00028344671591185033,-1.3552527156068805e-20,-0.0007440476329065859,-0.0003188775444868952,-2.168404344971009e-19,-0.01506696455180645,0.0011160714784637094,0.0011160714784637094,0.0098586305975914,-1.4703212936312494e-20,6.80676844806171e-20,-0.00037202381645329297,-9.985772822354167e-21,-0.00037202381645329297,-0.0011160714784637094,0.0007440476329065859,-0.0007440476329065859,-3.0441435513107768e-22,-1.4703212936312494e-20,0.00010629251482896507,3.8466636903907735e-21,2.8706697313477616e-21,-1.703347442592814e-21,-8.737870828133368e-23,7.633376072442863e-22,0.0009920635493472219,-0.00028344671591185033,-0.00028344671591185033,6.80676844806171e-20,3.8466636903907735e-21,8.09847770142369e-05,-1.7603426101784183e-20,4.404571325722362e-20,-8.745258983827306e-22,-6.474788556501502e-22,0.0011160714784637094,-0.0003188775444868952,-1.3552527156068805e-20,-0.00037202381645329297,2.8706697313477616e-21,-1.7603426101784183e-20,0.00010629251482896507,-8.470329472543003e-22,2.371692252312041e-20,7.453889935837843e-20,0.0007440476329065859,-1.4907779871675686e-19,-0.0007440476329065859,-9.985772822354167e-21,-1.703347442592814e-21,4.404571325722362e-20,-8.470329472543003e-22,0.00010629251482896507,3.3881317890172014e-21,0.0,0.0011160714784637094,-7.8520636634479e-20,-0.0003188775444868952,-0.00037202381645329297,-8.737870828133368e-23,-8.745258983827306e-22,2.371692252312041e-20,3.3881317890172014e-21,0.00010629251482896507,7.453889935837843e-20,0.0009300595265813172,-2.439454888092385e-19,-2.168404344971009e-19,-0.0011160714784637094,7.633376072442863e-22,-6.474788556501502e-22,7.453889935837843e-20,0.0,7.453889935837843e-20,0.00018601190822664648,8.0,8.0,8.0,0.0611979179084301,-0.011935763992369175,-0.011935763992369175,-0.011935763992369175,0.0006510416860692203,0.0008680555620230734,0.0008680555620230734,0.0006510416860692203,0.0008680555620230734,0.0006510416860692203,-0.011935763992369175,0.006665426772087812,0.0008680555620230734,0.0008680555620230734,-0.0006510416860692203,-0.00024801588733680546,-0.00024801588733680546,5.421010862427522e-20,2.5189489805985196e-20,5.421010862427522e-20,-0.011935763992369175,0.0008680555620230734,0.006665426772087812,0.0008680555620230734,1.1128279692732524e-20,-0.00024801588733680546,1.3552527156068805e-20,-0.0006510416860692203,-0.00024801588733680546,9.486769009248164e-20,-0.011935763992369175,0.0008680555620230734,0.0008680555620230734,0.006665426772087812,2.2364308142082532e-21,-2.8776054469135626e-21,-0.00024801588733680546,2.5661039300690108e-20,-0.00024801588733680546,-0.0006510416860692203,0.0006510416860692203,-0.0006510416860692203,1.1128279692732524e-20,2.2364308142082532e-21,9.300595411332324e-05,-3.210166333899377e-22,-7.76772425952954e-22,-8.426686405604811e-22,-1.0355760047474052e-21,5.424060666844689e-22,0.0008680555620230734,-0.00024801588733680546,-0.00024801588733680546,-2.8776054469135626e-21,-3.210166333899377e-22,7.086167897796258e-05,4.553996818177378e-21,-1.3552527156068805e-20,-1.5869922513646913e-21,-1.7161376420350583e-21,0.0008680555620230734,-0.00024801588733680546,1.3552527156068805e-20,-0.00024801588733680546,-7.76772425952954e-22,4.553996818177378e-21,7.086167897796258e-05,-8.470329472543003e-22,-6.776263578034403e-21,-1.6940658945086007e-20,0.0006510416860692203,5.421010862427522e-20,-0.0006510416860692203,2.5661039300690108e-20,-8.426686405604811e-22,-1.3552527156068805e-20,-8.470329472543003e-22,9.300595411332324e-05,-3.3881317890172014e-21,0.0,0.0008680555620230734,2.5189489805985196e-20,-0.00024801588733680546,-0.00024801588733680546,-1.0355760047474052e-21,-1.5869922513646913e-21,-6.776263578034403e-21,-3.3881317890172014e-21,7.086167897796258e-05,-2.0328790734103208e-20,0.0006510416860692203,5.421010862427522e-20,9.486769009248164e-20,-0.0006510416860692203,5.424060666844689e-22,-1.7161376420350583e-21,-1.6940658945086007e-20,0.0,-2.0328790734103208e-20,9.300595411332324e-05,8.0,8.0,9.0,0.055422279983758926,-0.010686728172004223,-0.010686728172004223,-0.009690656326711178,0.0005787037080153823,0.0007716049440205097,0.0006944444612599909,0.0005787037080153823,0.0006944444612599909,0.0004734848625957966,-0.010686728172004223,0.005946869496256113,0.0007716049440205097,0.0006944444612599909,-0.0005787037080153823,-0.00022045854711905122,-0.00019841270113829523,2.710505431213761e-20,1.0465418831980582e-20,2.0328790734103208e-20,-0.010686728172004223,0.0007716049440205097,0.005946869496256113,0.0006944444612599909,-1.731145638715354e-21,-0.00022045854711905122,0.0,-0.0005787037080153823,-0.00019841270113829523,3.3881317890172014e-20,-0.009690656326711178,0.0006944444612599909,0.0006944444612599909,0.0047224476002156734,4.491532161129337e-21,-1.3283132040460044e-20,-0.00017361111531499773,1.648783410526291e-21,-0.00017361111531499773,-0.000405844155466184,0.0005787037080153823,-0.0005787037080153823,-1.731145638715354e-21,4.491532161129337e-21,8.26719551696442e-05,3.1159055589046846e-21,-1.3009356361311928e-22,-9.991791490273092e-22,-4.023274172774241e-22,-3.041148151790344e-22,0.0007716049440205097,-0.00022045854711905122,-0.00022045854711905122,-1.3283132040460044e-20,3.1159055589046846e-21,6.29881615168415e-05,4.299975225837955e-21,-1.0164395367051604e-20,1.3353601123962956e-21,-6.225898270847714e-22,0.0006944444612599909,-0.00019841270113829523,0.0,-0.00017361111531499773,-1.3009356361311928e-22,4.299975225837955e-21,4.960317528457381e-05,0.0,-3.3881317890172014e-21,-5.082197683525802e-21,0.0005787037080153823,2.710505431213761e-20,-0.0005787037080153823,1.648783410526291e-21,-9.991791490273092e-22,-1.0164395367051604e-20,0.0,8.26719551696442e-05,3.3881317890172014e-21,-1.6940658945086007e-21,0.0006944444612599909,1.0465418831980582e-20,-0.00019841270113829523,-0.00017361111531499773,-4.023274172774241e-22,1.3353601123962956e-21,-3.3881317890172014e-21,3.3881317890172014e-21,4.960317528457381e-05,-5.082197683525802e-21,0.0004734848625957966,2.0328790734103208e-20,3.3881317890172014e-20,-0.000405844155466184,-3.041148151790344e-22,-6.225898270847714e-22,-5.082197683525802e-21,-1.6940658945086007e-21,-5.082197683525802e-21,5.0730519433273e-05,8.0,8.0,10.0,0.05064709484577179,-0.009674874134361744,-0.009674874134361744,-0.00802556797862053,0.0005208333604969084,0.0006944444612599909,0.0005681818001903594,0.0005208333604969084,0.0005681818001903594,0.00035511364694684744,-0.009674874134361744,0.0053684161975979805,0.0006944444612599909,0.0005681818001903594,-0.0005208333604969084,-0.00019841270113829523,-0.00016233765927609056,-1.541976460428509e-19,-4.743384504624082e-20,2.0328790734103208e-20,-0.009674874134361744,0.0006944444612599909,0.0053684161975979805,0.0005681818001903594,-1.541976460428509e-19,-0.00019841270113829523,-4.743384504624082e-20,-0.0005208333604969084,-0.00016233765927609056,0.0,-0.00802556797862053,0.0005681818001903594,0.0005681818001903594,0.0034702494740486145,-1.2616170334886142e-19,-9.612320809066935e-20,-0.00012626263196580112,-1.2616170334886142e-19,-0.00012626263196580112,-0.0002663352352101356,0.0005208333604969084,-0.0005208333604969084,-1.541976460428509e-19,-1.2616170334886142e-19,7.440476474585012e-05,4.4056469836361075e-20,3.604620141841387e-20,3.4238755395954644e-35,1.0506441372884612e-35,-3.009265538105056e-36,0.0006944444612599909,-0.00019841270113829523,-0.00019841270113829523,-9.612320809066935e-20,4.4056469836361075e-20,5.668934318237007e-05,1.3731886408499298e-20,4.4056469836361075e-20,1.3731886408499298e-20,0.0,0.0005681818001903594,-0.00016233765927609056,-4.743384504624082e-20,-0.00012626263196580112,3.604620141841387e-20,1.3731886408499298e-20,3.607503458624706e-05,9.866815034257154e-36,-8.470329472543003e-22,-1.6940658945086007e-21,0.0005208333604969084,-1.541976460428509e-19,-0.0005208333604969084,-1.2616170334886142e-19,3.4238755395954644e-35,4.4056469836361075e-20,9.866815034257154e-36,7.440476474585012e-05,3.604620141841387e-20,-1.504632769052528e-36,0.0005681818001903594,-4.743384504624082e-20,-0.00016233765927609056,-0.00012626263196580112,1.0506441372884612e-35,1.3731886408499298e-20,-8.470329472543003e-22,3.604620141841387e-20,3.607503458624706e-05,-1.6940658945086007e-21,0.00035511364694684744,2.0328790734103208e-20,0.0,-0.0002663352352101356,-3.009265538105056e-36,0.0,-1.6940658945086007e-21,-1.504632769052528e-36,-1.6940658945086007e-21,2.9592803912237287e-05,8.0,8.0,11.0,0.04663218557834625,-0.008838383480906487,-0.008838383480906487,-0.006756264716386795,0.0004734848625957966,0.0006313131307251751,0.0004734848625957966,0.0004734848625957966,0.0004734848625957966,0.0002731643326114863,-0.008838383480906487,0.00489267660304904,0.0006313131307251751,0.0004734848625957966,-0.0004734848625957966,-0.0001803751802071929,-0.00013528138515539467,-0.0,2.0328790734103208e-20,3.3881317890172014e-20,-0.008838383480906487,0.0006313131307251751,0.00489267660304904,0.0004734848625957966,0.0,-0.0001803751802071929,2.0328790734103208e-20,-0.0004734848625957966,-0.00013528138515539467,4.0657581468206416e-20,-0.006756264716386795,0.0004734848625957966,0.0004734848625957966,0.002626019762828946,-0.0,-0.0,-9.469696669839323e-05,-0.0,-9.469696669839323e-05,-0.0001821095502236858,0.0004734848625957966,-0.0004734848625957966,0.0,-0.0,6.764069257769734e-05,0.0,0.0,0.0,0.0,0.0,0.0006313131307251751,-0.0001803751802071929,-0.0001803751802071929,-0.0,0.0,5.153576421434991e-05,0.0,0.0,0.0,0.0,0.0004734848625957966,-0.00013528138515539467,2.0328790734103208e-20,-9.469696669839323e-05,0.0,0.0,2.7056277758674696e-05,0.0,-3.8116482626443515e-21,-7.623296525288703e-21,0.0004734848625957966,-0.0,-0.0004734848625957966,-0.0,0.0,0.0,0.0,6.764069257769734e-05,0.0,0.0,0.0004734848625957966,2.0328790734103208e-20,-0.00013528138515539467,-9.469696669839323e-05,0.0,0.0,-3.8116482626443515e-21,0.0,2.7056277758674696e-05,-9.317362419797304e-21,0.0002731643326114863,3.3881317890172014e-20,4.0657581468206416e-20,-0.0001821095502236858,0.0,0.0,-7.623296525288703e-21,0.0,-9.317362419797304e-21,1.8210956113762222e-05,8.0,8.0,12.0,0.04320881515741348,-0.008135238662362099,-0.008135238662362099,-0.0057663689367473125,0.0004340277810115367,0.0005787037080153823,0.0004006410308647901,0.0004340277810115367,0.0004006410308647901,0.0002146291226381436,-0.008135238662362099,0.004494492895901203,0.0005787037080153823,0.0004006410308647901,-0.0004340277810115367,-0.0001653439103392884,-0.00011446886492194608,-0.0,-1.1858461261560205e-20,-2.0328790734103208e-20,-0.008135238662362099,0.0005787037080153823,0.004494492895901203,0.0004006410308647901,0.0,-0.0001653439103392884,-1.1858461261560205e-20,-0.0004340277810115367,-0.00011446886492194608,-1.6940658945086007e-20,-0.0057663689367473125,0.0004006410308647901,0.0004006410308647901,0.0020357246976345778,-0.0,-0.0,-7.284382445504889e-05,-0.0,-7.284382445504889e-05,-0.00012877747940365225,0.0004340277810115367,-0.0004340277810115367,0.0,-0.0,6.200397183420137e-05,0.0,0.0,0.0,0.0,0.0,0.0005787037080153823,-0.0001653439103392884,-0.0001653439103392884,-0.0,0.0,4.724111931864172e-05,0.0,0.0,0.0,0.0,0.0004006410308647901,-0.00011446886492194608,-1.1858461261560205e-20,-7.284382445504889e-05,0.0,0.0,2.0812520233448595e-05,0.0,2.117582368135751e-21,3.3881317890172014e-21,0.0004340277810115367,-0.0,-0.0004340277810115367,-0.0,0.0,0.0,0.0,6.200397183420137e-05,0.0,0.0,0.0004006410308647901,-1.1858461261560205e-20,-0.00011446886492194608,-7.284382445504889e-05,0.0,0.0,2.117582368135751e-21,0.0,2.0812520233448595e-05,3.3881317890172014e-21,0.0002146291226381436,-2.0328790734103208e-20,-1.6940658945086007e-20,-0.00012877747940365225,0.0,0.0,3.3881317890172014e-21,0.0,3.3881317890172014e-21,1.1707043086062185e-05,8.0,8.0,13.0,0.04025488346815109,-0.007535866927355528,-0.007535866927355528,-0.0049793957732617855,0.0004006410308647901,0.0005341880605556071,0.00034340660204179585,0.0004006410308647901,0.00034340660204179585,0.00017170330102089792,-0.007535866927355528,0.004156310111284256,0.0005341880605556071,0.00034340660204179585,-0.0004006410308647901,-0.00015262515807989985,-9.811617201194167e-05,-0.0,1.0164395367051604e-20,2.0328790734103208e-20,-0.007535866927355528,0.0005341880605556071,0.004156310111284256,0.00034340660204179585,0.0,-0.00015262515807989985,1.0164395367051604e-20,-0.0004006410308647901,-9.811617201194167e-05,1.6940658945086007e-20,-0.0049793957732617855,0.00034340660204179585,0.00034340660204179585,0.0016103688394650817,-0.0,-0.0,-5.723443246097304e-05,-0.0,-5.723443246097304e-05,-9.365634468849748e-05,0.0004006410308647901,-0.0004006410308647901,0.0,-0.0,5.723443246097304e-05,0.0,0.0,0.0,0.0,0.0,0.0005341880605556071,-0.00015262515807989985,-0.00015262515807989985,-0.0,0.0,4.3607185943983495e-05,0.0,0.0,0.0,0.0,0.00034340660204179585,-9.811617201194167e-05,1.0164395367051604e-20,-5.723443246097304e-05,0.0,0.0,1.635269472899381e-05,0.0,-2.117582368135751e-21,-3.3881317890172014e-21,0.0004006410308647901,-0.0,-0.0004006410308647901,-0.0,0.0,0.0,0.0,5.723443246097304e-05,0.0,0.0,0.00034340660204179585,1.0164395367051604e-20,-9.811617201194167e-05,-5.723443246097304e-05,0.0,0.0,-2.117582368135751e-21,0.0,1.635269472899381e-05,-3.3881317890172014e-21,0.00017170330102089792,2.0328790734103208e-20,1.6940658945086007e-20,-9.365634468849748e-05,0.0,0.0,-3.3881317890172014e-21,0.0,-3.3881317890172014e-21,7.804695087543223e-06,8.0,8.0,14.0,0.03767981007695198,-0.00701884925365448,-0.00701884925365448,-0.0043433778919279575,0.00037202381645329297,0.0004960317746736109,0.00029761905898340046,0.00037202381645329297,0.00029761905898340046,0.00013950893480796367,-0.00701884925365448,0.003865504637360573,0.0004960317746736109,0.00029761905898340046,-0.00037202381645329297,-0.00014172335795592517,-8.50340147735551e-05,6.776263578034403e-20,-3.7947076036992655e-19,-8.046812998915853e-19,-0.00701884925365448,0.0004960317746736109,0.003865504637360573,0.00029761905898340046,-2.710505431213761e-19,-0.00014172335795592517,-3.006966962752766e-19,-0.00037202381645329297,-8.50340147735551e-05,-8.385626177817573e-19,-0.0043433778919279575,0.00029761905898340046,0.00029761905898340046,0.001296002184972167,-1.1316360175317453e-18,-5.827586677109586e-19,-4.578754669637419e-05,-1.111307226797642e-18,-4.578754669637419e-05,-6.975446740398183e-05,0.00037202381645329297,-0.00037202381645329297,-2.710505431213761e-19,-1.1316360175317453e-18,5.3146257414482534e-05,-4.8427230800780185e-20,1.5602464890908472e-20,2.5502899169676162e-20,4.024708985805271e-20,6.776263578034403e-20,0.0004960317746736109,-0.00014172335795592517,-0.00014172335795592517,-5.827586677109586e-19,-4.8427230800780185e-20,4.049238850711845e-05,-9.317362419797304e-21,-1.0757318430129614e-19,-1.1011428314305904e-20,4.792339379720443e-20,0.00029761905898340046,-8.50340147735551e-05,-3.006966962752766e-19,-4.578754669637419e-05,1.5602464890908472e-20,-9.317362419797304e-21,1.308215632889187e-05,2.752857078576476e-20,2.1175823681357508e-20,1.937012233148406e-20,0.00037202381645329297,6.776263578034403e-20,-0.00037202381645329297,-1.111307226797642e-18,2.5502899169676162e-20,-1.0757318430129614e-19,2.752857078576476e-20,5.3146257414482534e-05,9.740878893424454e-21,7.02700657862366e-20,0.00029761905898340046,-3.7947076036992655e-19,-8.50340147735551e-05,-4.578754669637419e-05,4.024708985805271e-20,-1.1011428314305904e-20,2.1175823681357508e-20,9.740878893424454e-21,1.308215632889187e-05,2.1094438479487667e-20,0.00013950893480796367,-8.046812998915853e-19,-8.385626177817573e-19,-6.975446740398183e-05,6.776263578034403e-20,4.792339379720443e-20,1.937012233148406e-20,7.02700657862366e-20,2.1094438479487667e-20,5.36572815690306e-06,8.0,8.0,15.0,0.03541496396064758,-0.006568287033587694,-0.006568287033587694,-0.0038219974376261234,0.00034722223062999547,0.00046296295477077365,0.0002604166802484542,0.00034722223062999547,0.0002604166802484542,0.00011488970631035045,-0.006568287033587694,0.003612764645367861,0.00046296295477077365,0.0002604166802484542,-0.00034722223062999547,-0.00013227513409219682,-7.440476474585012e-05,1.0164395367051604e-18,-1.0164395367051604e-19,-2.193815333388638e-19,-0.006568287033587694,0.00046296295477077365,0.003612764645367861,0.0002604166802484542,6.556035011748285e-19,-0.00013227513409219682,-3.8963515573697816e-20,-0.00034722223062999547,-7.440476474585012e-05,-2.2996944517954254e-19,-0.0038219974376261234,0.0002604166802484542,0.0002604166802484542,0.0010585845448076725,-4.472333961502706e-19,-3.3203691532368573e-19,-3.720238237292506e-05,-2.236166980751353e-19,-3.720238237292506e-05,-5.3026018576929346e-05,0.00034722223062999547,-0.00034722223062999547,6.556035011748285e-19,-4.472333961502706e-19,4.960317528457381e-05,-2.130202527032153e-20,5.861898128918286e-20,-7.265714101300272e-20,-5.0778941632978955e-21,1.6728900708272432e-20,0.00046296295477077365,-0.00013227513409219682,-0.00013227513409219682,-3.3203691532368573e-19,-2.130202527032153e-20,3.779289545491338e-05,1.3552527156068805e-20,-9.740878893424454e-20,1.2281977735187355e-20,1.5517063339423773e-20,0.0002604166802484542,-7.440476474585012e-05,-3.8963515573697816e-20,-3.720238237292506e-05,5.861898128918286e-20,1.3552527156068805e-20,1.0629251846694387e-05,-1.2705494208814505e-20,1.1434944787933055e-20,4.896458073606784e-21,0.00034722223062999547,1.0164395367051604e-18,-0.00034722223062999547,-2.236166980751353e-19,-7.265714101300272e-20,-9.740878893424454e-20,-1.2705494208814505e-20,4.960317528457381e-05,1.1858461261560205e-20,1.6340075737171358e-20,0.0002604166802484542,-1.0164395367051604e-19,-7.440476474585012e-05,-3.720238237292506e-05,-5.0778941632978955e-21,1.2281977735187355e-20,1.1434944787933055e-20,1.1858461261560205e-20,1.0629251846694387e-05,7.175972759656511e-21,0.00011488970631035045,-2.193815333388638e-19,-2.2996944517954254e-19,-5.3026018576929346e-05,1.6728900708272432e-20,1.5517063339423773e-20,4.896458073606784e-21,1.6340075737171358e-20,7.175972759656511e-21,3.7875727230129996e-06,8.0,8.0,16.0,0.03340737521648407,-0.006172130350023508,-0.006172130350023508,-0.0033892462961375713,0.00032552084303461015,0.0004340277810115367,0.0002297794126207009,0.00032552084303461015,0.0002297794126207009,9.574142313795164e-05,-0.006172130350023508,0.003391070058569312,0.0004340277810115367,0.0002297794126207009,-0.00032552084303461015,-0.00012400794366840273,-6.565126386703923e-05,6.301925127571995e-19,2.574980159653073e-19,7.623296525288703e-21,-0.006172130350023508,0.0004340277810115367,0.003391070058569312,0.0002297794126207009,1.0926725019580474e-19,-0.00012400794366840273,2.490276864927643e-19,-0.00032552084303461015,-6.565126386703923e-05,5.971582278142817e-20,-0.0033892462961375713,0.0002297794126207009,0.0002297794126207009,0.0008758972398936749,-3.3881317890172014e-20,3.3881317890172014e-20,-3.0637256713816896e-05,3.1170812458958252e-19,-3.0637256713816896e-05,-4.103203900740482e-05,0.00032552084303461015,-0.00032552084303461015,1.0926725019580474e-19,-3.3881317890172014e-20,4.650297705666162e-05,8.494561340846832e-20,3.995544406864241e-20,-3.129965165547707e-20,-2.0607413275627198e-20,-1.0587911840678754e-22,0.0004340277810115367,-0.00012400794366840273,-0.00012400794366840273,3.3881317890172014e-20,8.494561340846832e-20,3.543083948898129e-05,8.893845946170154e-21,-4.1504614415460717e-20,-1.2281977735187355e-20,-4.198974574730348e-22,0.0002297794126207009,-6.565126386703923e-05,2.490276864927643e-19,-3.0637256713816896e-05,3.995544406864241e-20,8.893845946170154e-21,8.753501788305584e-06,-3.049318610115481e-20,-8.470329472543003e-21,-8.219139499578315e-22,0.00032552084303461015,6.301925127571995e-19,-0.00032552084303461015,3.1170812458958252e-19,-3.129965165547707e-20,-4.1504614415460717e-20,-3.049318610115481e-20,4.650297705666162e-05,-2.244637310223896e-20,-5.7718498257190855e-21,0.0002297794126207009,2.574980159653073e-19,-6.565126386703923e-05,-3.0637256713816896e-05,-2.0607413275627198e-20,-1.2281977735187355e-20,-8.470329472543003e-21,-2.244637310223896e-20,8.753501788305584e-06,-1.9429868763179328e-21,9.574142313795164e-05,7.623296525288703e-21,5.971582278142817e-20,-4.103203900740482e-05,-1.0587911840678754e-22,-4.198974574730348e-22,-8.219139499578315e-22,-5.7718498257190855e-21,-1.9429868763179328e-21,2.7354692520020762e-06,8.0,9.0,3.0,0.11718574911355972,-0.025925925001502037,-0.023526936769485474,-0.05370370298624039,0.0015432098880410194,0.0018518518190830946,0.004629629664123058,0.0012626262614503503,0.004166666883975267,0.0069444444961845875,-0.025925925001502037,0.015123456716537476,0.0018518518190830946,0.004629629664123058,-0.0015432098880410194,-0.0005291005363687873,-0.0013227512827143073,1.4695437438554495e-19,2.3890073074195352e-20,-2.5679065312926504e-33,-0.023526936769485474,0.0018518518190830946,0.01201449055224657,0.004166666883975267,-1.3332484188432629e-20,-0.00046296295477077365,0.0,-0.0010822510812431574,-0.0010416667209938169,2.1365861809646666e-17,-0.05370370298624039,0.004629629664123058,0.004166666883975267,0.12314815074205399,-4.341043854678289e-21,3.210704778798845e-20,-0.004629629664123058,5.925884685202325e-18,-0.004166666883975267,-0.0416666679084301,0.0015432098880410194,-0.0015432098880410194,-1.3332484188432629e-20,-4.341043854678289e-21,0.00022045854711905122,-6.259531361852699e-21,0.0,4.596077208460312e-21,1.0852609636695723e-21,-1.0818928867717707e-35,0.0018518518190830946,-0.0005291005363687873,-0.00046296295477077365,3.210704778798845e-20,-6.259531361852699e-21,0.00013227513409219682,0.0,-3.673859359638624e-20,-8.026761946997112e-21,6.624553515356696e-34,0.004629629664123058,-0.0013227512827143073,0.0,-0.004629629664123058,0.0,0.0,0.0013227512827143073,0.0,0.0,-0.0,0.0012626262614503503,1.4695437438554495e-19,-0.0010822510812431574,5.925884685202325e-18,4.596077208460312e-21,-3.673859359638624e-20,0.0,0.00013528138515539467,-2.79931076629563e-19,-2.403080241040825e-18,0.004166666883975267,2.3890073074195352e-20,-0.0010416667209938169,-0.004166666883975267,1.0852609636695723e-21,-8.026761946997112e-21,0.0,-2.79931076629563e-19,0.0010416667209938169,-2.141220915295832e-18,0.0069444444961845875,-2.5679065312926504e-33,2.1365861809646666e-17,-0.0416666679084301,-1.0818928867717707e-35,6.624553515356696e-34,-0.0,-2.403080241040825e-18,-2.141220915295832e-18,0.02083333395421505,8.0,9.0,4.0,0.09559763967990875,-0.02013888955116272,-0.018270201981067657,-0.03430555388331413,0.0011574074160307646,0.0013888889225199819,0.0027777778450399637,0.0009469697251915932,0.0024999999441206455,0.0034722222480922937,-0.02013888955116272,0.011541005223989487,0.0013888889225199819,0.0027777778450399637,-0.0011574074160307646,-0.00039682540227659047,-0.0007936508045531809,7.739865014408178e-20,1.797519047275135e-20,-1.2198642116135402e-33,-0.018270201981067657,0.0013888889225199819,0.00916711799800396,0.0024999999441206455,-1.946855197761647e-20,-0.00034722223062999547,-1.502796533727052e-20,-0.000811688310932368,-0.0006249999860301614,7.627937008525126e-18,-0.03430555388331413,0.0027777778450399637,0.0024999999441206455,0.047175925225019455,-7.047562663080457e-20,-9.817381790975672e-21,-0.0018518518190830946,3.189340849076314e-18,-0.0016666667070239782,-0.010416666977107525,0.0011574074160307646,-0.0011574074160307646,-1.946855197761647e-20,-7.047562663080457e-20,0.0001653439103392884,7.618404527447276e-21,2.051020824454228e-20,-1.4194899948582288e-21,-3.2752558151690145e-22,1.8419317755671453e-35,0.0013888889225199819,-0.00039682540227659047,-0.00034722223062999547,-9.817381790975672e-21,7.618404527447276e-21,9.920635056914762e-05,6.728707559057923e-21,-1.820561843448419e-20,-3.433273716918862e-21,2.647239680756937e-34,0.0027777778450399637,-0.0007936508045531809,-1.502796533727052e-20,-0.0018518518190830946,2.051020824454228e-20,6.728707559057923e-21,0.0005291005363687873,-7.822857180215585e-22,-1.1748392117921667e-21,1.433855869628378e-35,0.0009469697251915932,7.739865014408178e-20,-0.000811688310932368,3.189340849076314e-18,-1.4194899948582288e-21,-1.820561843448419e-20,-7.822857180215585e-22,0.000101461038866546,-1.658421647937925e-19,-8.410780740245311e-19,0.0024999999441206455,1.797519047275135e-20,-0.0006249999860301614,-0.0016666667070239782,-3.2752558151690145e-22,-3.433273716918862e-21,-1.1748392117921667e-21,-1.658421647937925e-19,0.00041666667675599456,-5.995418521469299e-19,0.0034722222480922937,-1.2198642116135402e-33,7.627937008525126e-18,-0.010416666977107525,1.8419317755671453e-35,2.647239680756937e-34,1.433855869628378e-35,-8.410780740245311e-19,-5.995418521469299e-19,0.0034722222480922937,8.0,9.0,5.0,0.08085377514362335,-0.01648148149251938,-0.01494949497282505,-0.023862434551119804,0.0009259259095415473,0.0011111111380159855,0.0018518518190830946,0.0007575757335871458,0.0016666667070239782,0.0019841270986944437,-0.01648148149251938,0.009338624775409698,0.0011111111380159855,0.0018518518190830946,-0.0009259259095415473,-0.0003174603043589741,-0.0005291005363687873,9.486769009248164e-20,0.0,2.8315682152254105e-34,-0.01494949497282505,0.0011111111380159855,0.007417027372866869,0.0016666667070239782,-2.7964146001759286e-20,-0.00027777778450399637,-4.6247760944099976e-21,-0.0006493506371043622,-0.00041666667675599456,-1.8925373359378896e-18,-0.023862434551119804,0.0018518518190830946,0.0016666667070239782,0.023835979402065277,-4.224382630857329e-20,2.6521468696458646e-20,-0.0009259259095415473,-7.860465750519907e-19,-0.0008333333535119891,-0.003968254197388887,0.0009259259095415473,-0.0009259259095415473,-2.7964146001759286e-20,-4.224382630857329e-20,0.00013227513409219682,6.2405490208230274e-21,8.975622120126397e-21,8.570233341935089e-22,1.8602544767268167e-21,4.0777101926617095e-36,0.0011111111380159855,-0.0003174603043589741,-0.00027777778450399637,2.6521468696458646e-20,6.2405490208230274e-21,7.936507608974352e-05,1.7694585555326977e-22,-2.710505431213761e-20,-3.3881317890172014e-21,-8.006620335349365e-35,0.0018518518190830946,-0.0005291005363687873,-4.6247760944099976e-21,-0.0009259259095415473,8.975622120126397e-21,1.7694585555326977e-22,0.00026455026818439364,-4.333933150831048e-22,2.1546489856970412e-22,3.1169566479141685e-36,0.0007575757335871458,9.486769009248164e-20,-0.0006493506371043622,-7.860465750519907e-19,8.570233341935089e-22,-2.710505431213761e-20,-4.333933150831048e-22,8.116882963804528e-05,-6.776263578034403e-21,2.0597829935866373e-19,0.0016666667070239782,0.0,-0.00041666667675599456,-0.0008333333535119891,1.8602544767268167e-21,-3.3881317890172014e-21,2.1546489856970412e-22,-6.776263578034403e-21,0.00020833333837799728,1.2235548345898695e-19,0.0019841270986944437,2.8315682152254105e-34,-1.8925373359378896e-18,-0.003968254197388887,4.0777101926617095e-36,-8.006620335349365e-35,3.1169566479141685e-36,2.0597829935866373e-19,1.2235548345898695e-19,0.0009920635493472219,8.0,9.0,6.0,0.0701008066534996,-0.013955026865005493,-0.012656325474381447,-0.017576057463884354,0.0007716049440205097,0.0009259259095415473,0.0013227512827143073,0.0006313131307251751,0.0011904762359336019,0.0012400794075801969,-0.013955026865005493,0.007845175452530384,0.0009259259095415473,0.0013227512827143073,-0.0007716049440205097,-0.00026455026818439364,-0.0003779289545491338,5.421010862427522e-20,-2.0328790734103208e-20,-2.3844847805132407e-34,-0.012656325474381447,0.0009259259095415473,0.006230459548532963,0.0011904762359336019,6.348939569429451e-21,-0.00023148147738538682,0.0,-0.0005411255406215787,-0.00029761905898340046,1.7857588654101038e-18,-0.017576057463884354,0.0013227512827143073,0.0011904762359336019,0.013850859366357327,-6.5722807581994694e-21,-1.4454721094835602e-20,-0.0005291005363687873,1.3823577699190182e-18,-0.0004761904710903764,-0.0018601190531626344,0.0007716049440205097,-0.0007716049440205097,6.348939569429451e-21,-6.5722807581994694e-21,0.00011022927355952561,-2.475560378731335e-22,2.097927135064813e-21,-5.78702402592578e-22,-1.9261607887539307e-22,-0.0,0.0009259259095415473,-0.00026455026818439364,-0.00023148147738538682,-1.4454721094835602e-20,-2.475560378731335e-22,6.613756704609841e-05,0.0,-1.3552527156068805e-20,5.082197683525802e-21,5.961211951283102e-35,0.0013227512827143073,-0.0003779289545491338,0.0,-0.0005291005363687873,2.097927135064813e-21,0.0,0.0001511715818196535,0.0,0.0,-0.0,0.0006313131307251751,5.421010862427522e-20,-0.0005411255406215787,1.3823577699190182e-18,-5.78702402592578e-22,-1.3552527156068805e-20,0.0,6.764069257769734e-05,-5.082197683525802e-20,-2.3601680754155287e-19,0.0011904762359336019,-2.0328790734103208e-20,-0.00029761905898340046,-0.0004761904710903764,-1.9261607887539307e-22,5.082197683525802e-21,0.0,-5.082197683525802e-20,0.0001190476177725941,4.09502418463368e-20,0.0012400794075801969,-2.3844847805132407e-34,1.7857588654101038e-18,-0.0018601190531626344,-0.0,5.961211951283102e-35,-0.0,-2.3601680754155287e-19,4.09502418463368e-20,0.00037202381645329297,8.0,9.0,7.0,0.061895743012428284,-0.012103174813091755,-0.01097582932561636,-0.013492063619196415,0.0006613756413571537,0.0007936508045531809,0.0009920635493472219,0.0005411255406215787,0.0008928571478463709,0.0008267195662483573,-0.012103174813091755,0.0067649283446371555,0.0007936508045531809,0.0009920635493472219,-0.0006613756413571537,-0.00022675737272948027,-0.00028344671591185033,6.776263578034403e-20,-6.776263578034403e-21,-1.4469949749538496e-34,-0.01097582932561636,0.0007936508045531809,0.005372281651943922,0.0008928571478463709,6.873702869253735e-21,-0.00019841270113829523,0.0,-0.00046382189611904323,-0.00022321428696159273,1.1203897733210509e-18,-0.013492063619196415,0.0009920635493472219,0.0008928571478463709,0.008796296082437038,2.8281628260614795e-20,-4.143275390753874e-21,-0.0003306878206785768,1.1519648082658485e-18,-0.00029761905898340046,-0.0009920635493472219,0.0006613756413571537,-0.0006613756413571537,6.873702869253735e-21,2.8281628260614795e-20,9.448223863728344e-05,-2.9927691426304394e-22,-8.164103009249324e-21,-6.996083493671906e-22,7.318297327615156e-23,0.0,0.0007936508045531809,-0.00022675737272948027,-0.00019841270113829523,-4.143275390753874e-21,-2.9927691426304394e-22,5.668934318237007e-05,0.0,-1.6940658945086007e-20,1.6940658945086007e-21,3.617487437384624e-35,0.0009920635493472219,-0.00028344671591185033,0.0,-0.0003306878206785768,-8.164103009249324e-21,0.0,9.448223863728344e-05,0.0,0.0,-0.0,0.0005411255406215787,6.776263578034403e-20,-0.00046382189611904323,1.1519648082658485e-18,-6.996083493671906e-22,-1.6940658945086007e-20,0.0,5.7977737014880404e-05,-6.437450399132683e-20,-1.4876210006609717e-19,0.0008928571478463709,-6.776263578034403e-21,-0.00022321428696159273,-0.00029761905898340046,7.318297327615156e-23,1.6940658945086007e-21,0.0,-6.437450399132683e-20,7.440476474585012e-05,2.3235673043263606e-20,0.0008267195662483573,-1.4469949749538496e-34,1.1203897733210509e-18,-0.0009920635493472219,0.0,3.617487437384624e-35,-0.0,-1.4876210006609717e-19,2.3235673043263606e-20,0.0001653439103392884,8.0,9.0,8.0,0.055422279983758926,-0.010686728172004223,-0.009690656326711178,-0.010686728172004223,0.0005787037080153823,0.0006944444612599909,0.0007716049440205097,0.0004734848625957966,0.0006944444612599909,0.0005787037080153823,-0.010686728172004223,0.005946869496256113,0.0006944444612599909,0.0007716049440205097,-0.0005787037080153823,-0.00019841270113829523,-0.00022045854711905122,2.710505431213761e-20,-2.080375558000917e-20,5.421010862427522e-20,-0.009690656326711178,0.0006944444612599909,0.0047224476002156734,0.0006944444612599909,1.3229221109492397e-21,-0.00017361111531499773,-1.3552527156068805e-20,-0.000405844155466184,-0.00017361111531499773,6.911788849595091e-19,-0.010686728172004223,0.0007716049440205097,0.0006944444612599909,0.005946869496256113,-1.2412890376233809e-20,6.278543187347564e-21,-0.00022045854711905122,8.677204241815219e-19,-0.00019841270113829523,-0.0005787037080153823,0.0005787037080153823,-0.0005787037080153823,1.3229221109492397e-21,-1.2412890376233809e-20,8.26719551696442e-05,-1.7905414627590172e-22,2.4496893256240394e-21,-4.1856813218442877e-22,8.345410760737487e-22,6.614509706768075e-23,0.0006944444612599909,-0.00019841270113829523,-0.00017361111531499773,6.278543187347564e-21,-1.7905414627590172e-22,4.960317528457381e-05,-6.562706283973042e-22,-6.776263578034403e-21,-2.0947873172007397e-22,-6.19423932634615e-22,0.0007716049440205097,-0.00022045854711905122,-1.3552527156068805e-20,-0.00022045854711905122,2.4496893256240394e-21,-6.562706283973042e-22,6.29881615168415e-05,-4.235164736271502e-22,5.082197683525802e-21,-1.3552527156068805e-20,0.0004734848625957966,2.710505431213761e-20,-0.000405844155466184,8.677204241815219e-19,-4.1856813218442877e-22,-6.776263578034403e-21,-4.235164736271502e-22,5.0730519433273e-05,-3.8963515573697816e-20,-1.0164395367051604e-19,0.0006944444612599909,-2.080375558000917e-20,-0.00017361111531499773,-0.00019841270113829523,8.345410760737487e-22,-2.0947873172007397e-22,5.082197683525802e-21,-3.8963515573697816e-20,4.960317528457381e-05,3.7269449679189215e-20,0.0005787037080153823,5.421010862427522e-20,6.911788849595091e-19,-0.0005787037080153823,6.614509706768075e-23,-6.19423932634615e-22,-1.3552527156068805e-20,-1.0164395367051604e-19,3.7269449679189215e-20,8.26719551696442e-05,8.0,9.0,9.0,0.050181444734334946,-0.009567901492118835,-0.008675645105540752,-0.008675645105540752,0.0005144032766111195,0.0006172839784994721,0.0006172839784994721,0.0004208754107821733,0.0005555555690079927,0.0004208754107821733,-0.009567901492118835,0.005305702332407236,0.0006172839784994721,0.0006172839784994721,-0.0005144032766111195,-0.00017636684060562402,-0.00017636684060562402,-8.131516293641283e-20,-1.815761812904589e-21,-8.809142651444724e-20,-0.008675645105540752,0.0006172839784994721,0.004213163163512945,0.0005555555690079927,1.795735600638031e-21,-0.00015432099462486804,-1.0164395367051604e-20,-0.0003607503604143858,-0.00013888889225199819,4.54009659728305e-19,-0.008675645105540752,0.0006172839784994721,0.0005555555690079927,0.004213163163512945,-5.09778163701933e-21,2.4128868565591404e-21,-0.00015432099462486804,7.513144502030196e-19,-0.00013888889225199819,-0.0003607503604143858,0.0005144032766111195,-0.0005144032766111195,1.795735600638031e-21,-5.09778163701933e-21,7.348618237301707e-05,-4.033154560948826e-23,1.4350943388284353e-23,-9.428153150283066e-23,-2.099563901536289e-22,6.812781501815345e-22,0.0006172839784994721,-0.00017636684060562402,-0.00015432099462486804,2.4128868565591404e-21,-4.033154560948826e-23,4.4091710151406005e-05,5.468947735875978e-22,1.8634724839594607e-20,-9.26574865178566e-22,7.792894349769118e-23,0.0006172839784994721,-0.00017636684060562402,-1.0164395367051604e-20,-0.00015432099462486804,1.4350943388284353e-23,5.468947735875978e-22,4.4091710151406005e-05,2.117582368135751e-22,2.541098841762901e-21,2.0328790734103208e-20,0.0004208754107821733,-8.131516293641283e-20,-0.0003607503604143858,7.513144502030196e-19,-9.428153150283066e-23,1.8634724839594607e-20,2.117582368135751e-22,4.5093795051798224e-05,-4.743384504624082e-20,-7.030373462210693e-20,0.0005555555690079927,-1.815761812904589e-21,-0.00013888889225199819,-0.00013888889225199819,-2.099563901536289e-22,-9.26574865178566e-22,2.541098841762901e-21,-4.743384504624082e-20,3.4722223062999547e-05,2.879912020664621e-20,0.0004208754107821733,-8.809142651444724e-20,4.54009659728305e-19,-0.0003607503604143858,6.812781501815345e-22,7.792894349769118e-23,2.0328790734103208e-20,-7.030373462210693e-20,2.879912020664621e-20,4.5093795051798224e-05,8.0,9.0,10.0,0.04585016891360283,-0.00866161659359932,-0.007853535003960133,-0.007184343412518501,0.00046296295477077365,0.0005555555690079927,0.0005050505278632045,0.0003787878667935729,0.00045454545761458576,0.00031565656536258757,-0.00866161659359932,0.004789562430232763,0.0005555555690079927,0.0005050505278632045,-0.00046296295477077365,-0.00015873015217948705,-0.00014430013834498823,6.437450399132683e-20,6.776263578034403e-21,-6.776263578034403e-21,-0.007853535003960133,0.0005555555690079927,0.0038032105658203363,0.00045454545761458576,-1.2335811683428072e-19,-0.00013888889225199819,0.0,-0.0003246753185521811,-0.00011363636440364644,-2.574980159653073e-19,-0.007184343412518501,0.0005050505278632045,0.00045454545761458576,0.003095889464020729,-1.1214374492656376e-19,2.6462725544373527e-21,-0.00011223344336031005,-3.5354844508676906e-19,-0.00010101010411744937,-0.0002367424312978983,0.00046296295477077365,-0.00046296295477077365,-1.2335811683428072e-19,-1.1214374492656376e-19,6.613756704609841e-05,3.52451739303843e-20,3.204106720944027e-20,-1.3541694921472752e-35,-1.511583926900393e-36,3.009265538105056e-36,0.0005555555690079927,-0.00015873015217948705,-0.00013888889225199819,2.6462725544373527e-21,3.52451739303843e-20,3.968253804487176e-05,9.945369802791222e-24,-1.5246593050577406e-20,-9.333733568121821e-22,5.974431754804091e-23,0.0005050505278632045,-0.00014430013834498823,0.0,-0.00011223344336031005,3.204106720944027e-20,9.945369802791222e-24,3.2066698622656986e-05,2.117582368135751e-22,-4.235164736271502e-22,3.3881317890172014e-21,0.0003787878667935729,6.437450399132683e-20,-0.0003246753185521811,-3.5354844508676906e-19,-1.3541694921472752e-35,-1.5246593050577406e-20,2.117582368135751e-22,4.058441481902264e-05,3.049318610115481e-20,2.668153783851046e-20,0.00045454545761458576,6.776263578034403e-21,-0.00011363636440364644,-0.00010101010411744937,-1.511583926900393e-36,-9.333733568121821e-22,-4.235164736271502e-22,3.049318610115481e-20,2.5252526029362343e-05,1.0164395367051604e-20,0.00031565656536258757,-6.776263578034403e-21,-2.574980159653073e-19,-0.0002367424312978983,3.009265538105056e-36,5.974431754804091e-23,3.3881317890172014e-21,2.668153783851046e-20,1.0164395367051604e-20,2.630471317388583e-05,8.0,9.0,11.0,0.0422096848487854,-0.007912457920610905,-0.007174012716859579,-0.006047655828297138,0.0004208754107821733,0.0005050505278632045,0.0004208754107821733,0.000344352622050792,0.0003787878667935729,0.0002428127481834963,-0.007912457920610905,0.004365079570561647,0.0005050505278632045,0.0004208754107821733,-0.0004208754107821733,-0.00014430013834498823,-0.0001202501225634478,-8.368685518872487e-19,-6.945670167485263e-19,-4.54009659728305e-19,-0.007174012716859579,0.0005050505278632045,0.0034660729579627514,0.0003787878667935729,-8.686420067814825e-19,-0.00012626263196580112,-3.9132922163148676e-19,-0.00029515937785618007,-9.469696669839323e-05,-3.2864878353466853e-19,-0.006047655828297138,0.0004208754107821733,0.0003787878667935729,0.00234265741892159,-6.374659635821665e-19,-7.722612482522765e-19,-8.417508070124313e-05,-3.309185412861199e-19,-7.575757626909763e-05,-0.00016187515575438738,0.0004208754107821733,-0.0004208754107821733,-8.686420067814825e-19,-6.374659635821665e-19,6.01250612817239e-05,1.952671149884947e-20,-1.1345631092203635e-20,5.0974426868386397e-20,5.607187246328188e-20,3.5943505006660854e-20,0.0005050505278632045,-0.00014430013834498823,-0.00012626263196580112,-7.722612482522765e-19,1.952671149884947e-20,3.607503458624706e-05,4.278330316432272e-20,9.317362419797304e-20,4.445538091793904e-20,4.1260024216912175e-20,0.0004208754107821733,-0.0001202501225634478,-3.9132922163148676e-19,-8.417508070124313e-05,-1.1345631092203635e-20,4.278330316432272e-20,2.405002487648744e-05,1.461131834013668e-20,1.8211208365967457e-20,3.3881317890172014e-21,0.000344352622050792,-8.368685518872487e-19,-0.00029515937785618007,-3.309185412861199e-19,5.0974426868386397e-20,9.317362419797304e-20,1.461131834013668e-20,3.689492223202251e-05,2.1175823681357508e-20,1.9481757786848908e-20,0.0003787878667935729,-6.945670167485263e-19,-9.469696669839323e-05,-7.575757626909763e-05,5.607187246328188e-20,4.445538091793904e-20,1.8211208365967457e-20,2.1175823681357508e-20,1.8939394067274407e-05,4.235164736271502e-21,0.0002428127481834963,-4.54009659728305e-19,-3.2864878353466853e-19,-0.00016187515575438738,3.5943505006660854e-20,4.1260024216912175e-20,3.3881317890172014e-21,1.9481757786848908e-20,4.235164736271502e-21,1.618751593923662e-05,8.0,9.0,12.0,0.03910641744732857,-0.007282763719558716,-0.006602887995541096,-0.005161273758858442,0.00038580247201025486,0.00046296295477077365,0.0003561253543011844,0.00031565656536258757,0.00032051283051259816,0.000190781443961896,-0.007282763719558716,0.004009801894426346,0.00046296295477077365,0.0003561253543011844,-0.00038580247201025486,-0.00013227513409219682,-0.0001017501053865999,0.0,0.0,3.3881317890172014e-21,-0.006602887995541096,0.00046296295477077365,0.0031839110888540745,0.00032051283051259816,0.0,-0.00011574073869269341,0.0,-0.00027056277031078935,-8.012820762814954e-05,2.473336205982557e-19,-0.005161273758858442,0.0003561253543011844,0.00032051283051259816,0.0018160081235691905,-0.0,-0.0,-6.475006375694647e-05,4.48775002318128e-19,-5.827505810884759e-05,-0.00011446886492194608,0.00038580247201025486,-0.00038580247201025486,0.0,-0.0,5.5114636779762805e-05,0.0,0.0,0.0,0.0,0.0,0.00046296295477077365,-0.00013227513409219682,-0.00011574073869269341,-0.0,0.0,3.3068783523049206e-05,0.0,0.0,0.0,0.0,0.0003561253543011844,-0.0001017501053865999,0.0,-6.475006375694647e-05,0.0,0.0,1.850001899583731e-05,0.0,0.0,0.0,0.00031565656536258757,0.0,-0.00027056277031078935,4.48775002318128e-19,0.0,0.0,0.0,3.382034628884867e-05,-2.868011605836368e-20,-3.036859525256328e-20,0.00032051283051259816,0.0,-8.012820762814954e-05,-5.827505810884759e-05,0.0,0.0,0.0,-2.868011605836368e-20,1.4568764527211897e-05,-4.235164736271502e-22,0.000190781443961896,3.3881317890172014e-21,2.473336205982557e-19,-0.00011446886492194608,0.0,0.0,0.0,-3.036859525256328e-20,-4.235164736271502e-22,1.0406260116724297e-05,8.0,9.0,13.0,0.03642931208014488,-0.0067460318095982075,-0.006116106174886227,-0.004456654656678438,0.0003561253543011844,0.0004273504309821874,0.0003052503161597997,0.00029137529782019556,0.00027472528745420277,0.00015262515807989985,-0.0067460318095982075,0.0037080643232911825,0.0004273504309821874,0.0003052503161597997,-0.0003561253543011844,-0.00012210012937430292,-8.721437188796699e-05,-6.691150828905759e-19,-2.1514636860259229e-19,2.236166980751353e-19,-0.006116106174886227,0.0004273504309821874,0.0029442778322845697,0.00027472528745420277,-5.200862946251128e-19,-0.00010683760774554685,-2.727446090158847e-19,-0.00024975024280138314,-6.868132186355069e-05,3.1170812458958252e-19,-0.004456654656678438,0.0003052503161597997,0.00027472528745420277,0.001436526421457529,4.675715960638416e-19,-5.1030975649246907e-20,-5.087505269329995e-05,5.443460544252211e-19,-4.578754669637419e-05,-8.325008093379438e-05,0.0003561253543011844,-0.0003561253543011844,-5.200862946251128e-19,4.675715960638416e-19,5.087505269329995e-05,1.1277219862812519e-20,-1.0767796158927762e-20,4.313220859293244e-20,6.777918747053076e-21,-3.902437797220582e-20,0.0004273504309821874,-0.00012210012937430292,-0.00010683760774554685,-5.1030975649246907e-20,1.1277219862812519e-20,3.052503234357573e-05,1.2910320769030114e-20,6.337793876130796e-20,1.510507569558408e-20,-4.225195755861817e-21,0.0003052503161597997,-8.721437188796699e-05,-2.727446090158847e-19,-5.087505269329995e-05,-1.0767796158927762e-20,1.2910320769030114e-20,1.4535728951159399e-05,1.4838486047033324e-20,1.3976043629695956e-20,8.470329472543003e-21,0.00029137529782019556,-6.691150828905759e-19,-0.00024975024280138314,5.443460544252211e-19,4.313220859293244e-20,6.337793876130796e-20,1.4838486047033324e-20,3.121878035017289e-05,-2.693562284264489e-20,-3.697046266184251e-20,0.00027472528745420277,-2.1514636860259229e-19,-6.868132186355069e-05,-4.578754669637419e-05,6.777918747053076e-21,1.510507569558408e-20,1.3976043629695956e-20,-2.693562284264489e-20,1.1446886674093548e-05,-4.235164736271502e-22,0.00015262515807989985,2.236166980751353e-19,3.1170812458958252e-19,-8.325008093379438e-05,-3.902437797220582e-20,-4.225195755861817e-21,8.470329472543003e-21,-3.697046266184251e-20,-4.235164736271502e-22,6.937506896065315e-06,8.0,9.0,14.0,0.034096021205186844,-0.006283068563789129,-0.005696248263120651,-0.0038872354198247194,0.0003306878206785768,0.00039682540227659047,0.00026455026818439364,0.00027056277031078935,0.0002380952355451882,0.00012400794366840273,-0.006283068563789129,0.0034486015792936087,0.00039682540227659047,0.00026455026818439364,-0.0003306878206785768,-0.00011337868636474013,-7.558579090982676e-05,-7.846792325747435e-20,-2.0328790734103208e-20,-1.0164395367051604e-20,-0.005696248263120651,0.00039682540227659047,0.002738224109634757,0.0002380952355451882,0.0,-9.920635056914762e-05,0.0,-0.00023191094805952162,-5.952380888629705e-05,1.5585406229479126e-19,-0.0038872354198247194,0.00026455026818439364,0.0002380952355451882,0.001156071899458766,-0.0,-2.0140099850387352e-20,-4.0700040699448436e-05,3.128446190524421e-19,-3.6630037357099354e-05,-6.200397183420137e-05,0.0003306878206785768,-0.0003306878206785768,0.0,-0.0,4.724111931864172e-05,0.0,0.0,0.0,0.0,0.0,0.00039682540227659047,-0.00011337868636474013,-9.920635056914762e-05,-2.0140099850387352e-20,0.0,2.8344671591185033e-05,9.4039548065783e-38,1.9616980814368587e-20,5.035024962596838e-21,-1.2977457633078054e-35,0.00026455026818439364,-7.558579090982676e-05,0.0,-4.0700040699448436e-05,0.0,9.4039548065783e-38,1.1628582797129638e-05,-6.018531076210112e-36,0.0,8.470329472543003e-22,0.00027056277031078935,-7.846792325747435e-20,-0.00023191094805952162,3.128446190524421e-19,0.0,1.9616980814368587e-20,-6.018531076210112e-36,2.8988868507440202e-05,-1.5452144201622566e-20,-1.931046516097794e-20,0.0002380952355451882,-2.0328790734103208e-20,-5.952380888629705e-05,-3.6630037357099354e-05,0.0,5.035024962596838e-21,0.0,-1.5452144201622566e-20,9.157509339274839e-06,0.0,0.00012400794366840273,-1.0164395367051604e-20,1.5585406229479126e-19,-6.200397183420137e-05,0.0,-1.2977457633078054e-35,8.470329472543003e-22,-1.931046516097794e-20,0.0,4.76953618999687e-06,8.0,9.0,15.0,0.0320441760122776,-0.005879629403352737,-0.005330387037247419,-0.0034204793628305197,0.00030864198924973607,0.000370370369637385,0.00023148147738538682,0.00025252526393160224,0.00020833333837799728,0.00010212418419541791,-0.005879629403352737,0.0032231041695922613,0.000370370369637385,0.00023148147738538682,-0.00030864198924973607,-0.00010582010872894898,-6.613756704609841e-05,-4.2129717533470784e-35,1.6940658945086007e-21,-1.8634724839594607e-20,-0.005330387037247419,0.000370370369637385,0.002559148008003831,0.00020833333837799728,-8.223874240207097e-20,-9.259259240934625e-05,8.470329472543003e-22,-0.00021645022206939757,-5.208333459449932e-05,-6.098637220230962e-20,-0.0034204793628305197,0.00023148147738538682,0.00020833333837799728,0.0009442708687856793,-5.1399213193500787e-20,-2.7391004316763715e-35,-3.3068783523049206e-05,-1.5723921500460252e-19,-2.9761904443148524e-05,-4.7134239139268175e-05,0.00030864198924973607,-0.00030864198924973607,-8.223874240207097e-20,-5.1399213193500787e-20,4.4091710151406005e-05,2.3496784235843333e-20,1.4685489945453692e-20,0.0,-4.211804097299346e-37,3.76158192263132e-36,0.000370370369637385,-0.00010582010872894898,-9.259259240934625e-05,-2.7391004316763715e-35,2.3496784235843333e-20,2.6455027182237245e-05,7.826000720886195e-36,0.0,0.0,0.0,0.00023148147738538682,-6.613756704609841e-05,8.470329472543003e-22,-3.3068783523049206e-05,1.4685489945453692e-20,7.826000720886195e-36,9.448223863728344e-06,6.018531076210112e-36,0.0,2.329340604949326e-21,0.00025252526393160224,-4.2129717533470784e-35,-0.00021645022206939757,-1.5723921500460252e-19,0.0,0.0,6.018531076210112e-36,2.7056277758674696e-05,1.1717876100343136e-20,7.88340766943255e-21,0.00020833333837799728,1.6940658945086007e-21,-5.208333459449932e-05,-2.9761904443148524e-05,-4.211804097299346e-37,0.0,0.0,1.1717876100343136e-20,7.440476110787131e-06,-4.235164736271502e-22,0.00010212418419541791,-1.8634724839594607e-20,-6.098637220230962e-20,-4.7134239139268175e-05,3.76158192263132e-36,0.0,2.329340604949326e-21,7.88340766943255e-21,-4.235164736271502e-22,3.3667313346086303e-06,8.0,9.0,16.0,0.030225664377212524,-0.005524918437004089,-0.005008726846426725,-0.0030330882873386145,0.00028935185400769114,0.00034722223062999547,0.00020424836839083582,0.0002367424312978983,0.00018382353300694376,8.510348561685532e-05,-0.005524918437004089,0.003025307320058346,0.00034722223062999547,0.00020424836839083582,-0.00028935185400769114,-9.920635056914762e-05,-5.835667616338469e-05,4.54009659728305e-19,1.6263032587282567e-19,1.9524109434211623e-19,-0.005008726846426725,0.00034722223062999547,0.002402073470875621,0.00018382353300694376,3.7269449679189215e-19,-8.680555765749887e-05,7.538593230563273e-20,-0.000202922077733092,-4.595588325173594e-05,9.994988777600744e-20,-0.0030330882873386145,0.00020424836839083582,0.00018382353300694376,0.0007812986150383949,1.9651164376299768e-19,3.1848438816761693e-19,-2.7233116270508617e-05,1.4230153513872246e-19,-2.4509803552064113e-05,-3.6472923966357484e-05,0.00028935185400769114,-0.00028935185400769114,3.7269449679189215e-19,1.9651164376299768e-19,4.13359775848221e-05,5.972202017367379e-20,3.655247149621327e-20,-5.828918179401855e-20,-1.261040478908142e-20,-1.852884572118782e-20,0.00034722223062999547,-9.920635056914762e-05,-8.680555765749887e-05,3.1848438816761693e-19,5.972202017367379e-20,2.4801587642286904e-05,-9.317362419797304e-21,1.6940658945086007e-21,-2.0328790734103208e-20,-1.2565867090767834e-20,0.00020424836839083582,-5.835667616338469e-05,7.538593230563273e-20,-2.7233116270508617e-05,3.655247149621327e-20,-9.317362419797304e-21,7.780889973219018e-06,-5.929230630780102e-21,-2.117582368135751e-22,-1.855387722434357e-21,0.0002367424312978983,4.54009659728305e-19,-0.000202922077733092,1.4230153513872246e-19,-5.828918179401855e-20,1.6940658945086007e-21,-5.929230630780102e-21,2.53652597166365e-05,-5.929230630780102e-21,-5.6766901279456756e-21,0.00018382353300694376,1.6263032587282567e-19,-4.595588325173594e-05,-2.4509803552064113e-05,-1.261040478908142e-20,-2.0328790734103208e-20,-2.117582368135751e-22,-5.929230630780102e-21,6.127450888016028e-06,-7.794494538338141e-22,8.510348561685532e-05,1.9524109434211623e-19,9.994988777600744e-20,-3.6472923966357484e-05,-1.852884572118782e-20,-1.2565867090767834e-20,-1.855387722434357e-21,-5.6766901279456756e-21,-7.794494538338141e-22,2.431528173474362e-06,8.0,10.0,3.0,0.10732322931289673,-0.02348484843969345,-0.019507575780153275,-0.048674240708351135,0.0013888889225199819,0.0015151514671742916,0.004166666883975267,0.0009469697251915932,0.003409090917557478,0.0062500000931322575,-0.02348484843969345,0.013654401525855064,0.0015151514671742916,0.004166666883975267,-0.0013888889225199819,-0.00043290044413879514,-0.0011904762359336019,-5.421010862427522e-20,0.0,-0.0,-0.019507575780153275,0.0015151514671742916,0.008833122439682484,0.003409090917557478,0.0,-0.00033670032280497253,0.0,-0.0007102272938936949,-0.0007575757335871458,-0.0,-0.048674240708351135,0.004166666883975267,0.003409090917557478,0.11117424070835114,0.0,0.0,-0.004166666883975267,0.0,-0.003409090917557478,-0.03750000149011612,0.0013888889225199819,-0.0013888889225199819,0.0,0.0,0.00019841270113829523,0.0,0.0,0.0,0.0,-0.0,0.0015151514671742916,-0.00043290044413879514,-0.00033670032280497253,0.0,0.0,9.620009950594977e-05,0.0,9.519476409215107e-21,0.0,-0.0,0.004166666883975267,-0.0011904762359336019,0.0,-0.004166666883975267,0.0,0.0,0.0011904762359336019,0.0,0.0,-0.0,0.0009469697251915932,-5.421010862427522e-20,-0.0007102272938936949,0.0,0.0,9.519476409215107e-21,0.0,7.891414134064689e-05,0.0,-0.0,0.003409090917557478,0.0,-0.0007575757335871458,-0.003409090917557478,0.0,0.0,0.0,0.0,0.0007575757335871458,-0.0,0.0062500000931322575,-0.0,-0.0,-0.03750000149011612,-0.0,-0.0,-0.0,-0.0,-0.0,0.01875000074505806,8.0,10.0,4.0,0.0874810591340065,-0.01823863573372364,-0.0151420459151268,-0.031079545617103577,0.0010416667209938169,0.0011363636003807187,0.0024999999441206455,0.0007102272938936949,0.0020454544574022293,0.0031250000465661287,-0.01823863573372364,0.010419372469186783,0.0011363636003807187,0.0024999999441206455,-0.0010416667209938169,-0.0003246753185521811,-0.0007142857066355646,2.710505431213761e-20,9.46212791272332e-21,-0.0,-0.0151420459151268,0.0011363636003807187,0.006738478317856789,0.0020454544574022293,-2.5232340669772284e-19,-0.00025252526393160224,-2.6892985012873737e-34,-0.0005326704704202712,-0.00045454545761458576,-0.0,-0.031079545617103577,0.0024999999441206455,0.0020454544574022293,0.04259469732642174,-5.551114999048691e-19,9.46212791272332e-21,-0.0016666667070239782,-3.4102637171643965e-21,-0.0013636363437399268,-0.00937500037252903,0.0010416667209938169,-0.0010416667209938169,-2.5232340669772284e-19,-5.551114999048691e-19,0.00014880952949170023,7.209240283682775e-20,1.5860328753349075e-19,-2.59703985155689e-36,-2.1010144541307607e-36,-0.0,0.0011363636003807187,-0.0003246753185521811,-0.00025252526393160224,9.46212791272332e-21,7.209240283682775e-20,7.215006917249411e-05,7.683710085674189e-35,-3.2835883572733595e-21,-2.1026951365937137e-21,-0.0,0.0024999999441206455,-0.0007142857066355646,-2.6892985012873737e-34,-0.0016666667070239782,1.5860328753349075e-19,7.683710085674189e-35,0.0004761904710903764,-0.0,-0.0,-0.0,0.0007102272938936949,2.710505431213761e-20,-0.0005326704704202712,-3.4102637171643965e-21,-2.59703985155689e-36,-3.2835883572733595e-21,-0.0,5.918560782447457e-05,7.578363311049902e-22,-0.0,0.0020454544574022293,9.46212791272332e-21,-0.00045454545761458576,-0.0013636363437399268,-2.1010144541307607e-36,-2.1026951365937137e-21,-0.0,7.578363311049902e-22,0.0003030303050763905,-0.0,0.0031250000465661287,-0.0,-0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,8.0,10.0,5.0,0.07395021617412567,-0.014924242161214352,-0.012386363931000233,-0.021612554788589478,0.0008333333535119891,0.0009090909152291715,0.0016666667070239782,0.0005681818001903594,0.0013636363437399268,0.0017857142956927419,-0.014924242161214352,0.008430736139416695,0.0009090909152291715,0.0016666667070239782,-0.0008333333535119891,-0.0002597402490209788,-0.0004761904710903764,-1.6940658945086007e-21,-6.776263578034403e-21,-0.0,-0.012386363931000233,0.0009090909152291715,0.005451388657093048,0.0013636363437399268,0.0,-0.00020202020823489875,0.0,-0.00042613636469468474,-0.0003030303050763905,-0.0,-0.021612554788589478,0.0016666667070239782,0.0013636363437399268,0.02152056246995926,0.0,-1.8492846400876857e-21,-0.0008333333535119891,-1.3552527156068805e-20,-0.0006818181718699634,-0.0035714285913854837,0.0008333333535119891,-0.0008333333535119891,0.0,0.0,0.0001190476177725941,0.0,0.0,0.0,0.0,-0.0,0.0009090909152291715,-0.0002597402490209788,-0.00020202020823489875,-1.8492846400876857e-21,0.0,5.77200589759741e-05,0.0,3.3881317890172014e-21,0.0,-0.0,0.0016666667070239782,-0.0004761904710903764,0.0,-0.0008333333535119891,0.0,0.0,0.0002380952355451882,0.0,0.0,-0.0,0.0005681818001903594,-1.6940658945086007e-21,-0.00042613636469468474,-1.3552527156068805e-20,0.0,3.3881317890172014e-21,0.0,4.734848334919661e-05,3.3881317890172014e-21,-0.0,0.0013636363437399268,-6.776263578034403e-21,-0.0003030303050763905,-0.0006818181718699634,0.0,0.0,0.0,3.3881317890172014e-21,0.00015151515253819525,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0035714285913854837,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,8.0,10.0,6.0,0.06409180909395218,-0.012635281309485435,-0.010484307073056698,-0.015915855765342712,0.0006944444612599909,0.0007575757335871458,0.0011904762359336019,0.0004734848625957966,0.0009740259847603738,0.0011160714784637094,-0.012635281309485435,0.007082302588969469,0.0007575757335871458,0.0011904762359336019,-0.0006944444612599909,-0.00021645022206939757,-0.0003401360590942204,-2.0328790734103208e-20,0.0,-0.0,-0.010484307073056698,0.0007575757335871458,0.004578899126499891,0.0009740259847603738,0.0,-0.00016835016140248626,0.0,-0.00035511364694684744,-0.00021645022206939757,-0.0,-0.015915855765342712,0.0011904762359336019,0.0009740259847603738,0.01250473503023386,0.0,-3.44410945982588e-21,-0.0004761904710903764,1.3552527156068805e-20,-0.00038961038808338344,-0.0016741071594879031,0.0006944444612599909,-0.0006944444612599909,0.0,0.0,9.920635056914762e-05,0.0,0.0,0.0,0.0,-0.0,0.0007575757335871458,-0.00021645022206939757,-0.00016835016140248626,-3.44410945982588e-21,0.0,4.810004975297488e-05,0.0,1.6940658945086007e-21,0.0,-0.0,0.0011904762359336019,-0.0003401360590942204,0.0,-0.0004761904710903764,0.0,0.0,0.0001360544265480712,0.0,0.0,-0.0,0.0004734848625957966,-2.0328790734103208e-20,-0.00035511364694684744,1.3552527156068805e-20,0.0,1.6940658945086007e-21,0.0,3.9457070670323446e-05,-3.3881317890172014e-21,-0.0,0.0009740259847603738,0.0,-0.00021645022206939757,-0.00038961038808338344,0.0,0.0,0.0,-3.3881317890172014e-21,8.658008300699294e-05,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003348214377183467,8.0,10.0,7.0,0.05657467618584633,-0.010957792401313782,-0.00909090880304575,-0.01221590954810381,0.0005952381179668009,0.0006493506371043622,0.0008928571478463709,0.000405844155466184,0.0007305194740183651,0.0007440476329065859,-0.010957792401313782,0.006106988061219454,0.0006493506371043622,0.0008928571478463709,-0.0005952381179668009,-0.00018552875553723425,-0.00025510202976875007,0.0,0.0,-0.0,-0.00909090880304575,0.0006493506371043622,0.003947961609810591,0.0007305194740183651,1.441848056736555e-19,-0.00014430013834498823,-9.604637750585699e-35,-0.0003043831093236804,-0.00016233765927609056,-0.0,-0.01221590954810381,0.0008928571478463709,0.0007305194740183651,0.007941016927361488,1.982541126480377e-19,5.070298884284683e-21,-0.00029761905898340046,-6.776263578034403e-21,-0.00024350649619009346,-0.0008928571478463709,0.0005952381179668009,-0.0005952381179668009,1.441848056736555e-19,1.982541126480377e-19,8.50340147735551e-05,-4.119565922549789e-20,-5.664402941557569e-20,-1.504632769052528e-36,0.0,-0.0,0.0006493506371043622,-0.00018552875553723425,-0.00014430013834498823,5.070298884284683e-21,-4.119565922549789e-20,4.122861355426721e-05,2.744182091459089e-35,0.0,-8.470329472543003e-22,-0.0,0.0008928571478463709,-0.00025510202976875007,-9.604637750585699e-35,-0.00029761905898340046,-5.664402941557569e-20,2.744182091459089e-35,8.50340147735551e-05,-0.0,0.0,-0.0,0.000405844155466184,0.0,-0.0003043831093236804,-6.776263578034403e-21,-1.504632769052528e-36,0.0,-0.0,3.382034628884867e-05,0.0,-0.0,0.0007305194740183651,0.0,-0.00016233765927609056,-0.00024350649619009346,0.0,-8.470329472543003e-22,0.0,0.0,5.411255551734939e-05,-0.0,0.0007440476329065859,-0.0,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.00014880952949170023,8.0,10.0,8.0,0.05064709484577179,-0.009674874134361744,-0.00802556797862053,-0.009674874134361744,0.0005208333604969084,0.0005681818001903594,0.0006944444612599909,0.00035511364694684744,0.0005681818001903594,0.0005208333604969084,-0.009674874134361744,0.0053684161975979805,0.0005681818001903594,0.0006944444612599909,-0.0005208333604969084,-0.00016233765927609056,-0.00019841270113829523,1.2705494208814505e-20,-4.404571325722362e-20,-1.541976460428509e-19,-0.00802556797862053,0.0005681818001903594,0.0034702494740486145,0.0005681818001903594,-1.2616170334886142e-19,-0.00012626263196580112,-4.8061604045334676e-20,-0.0002663352352101356,-0.00012626263196580112,-3.7351367435689245e-35,-0.009674874134361744,0.0006944444612599909,0.0005681818001903594,0.0053684161975979805,-1.541976460428509e-19,1.1799713262713683e-21,-0.00019841270113829523,6.776263578034403e-21,-0.00016233765927609056,-0.0005208333604969084,0.0005208333604969084,-0.0005208333604969084,-1.2616170334886142e-19,-1.541976460428509e-19,7.440476474585012e-05,3.604620141841387e-20,4.4056469836361075e-20,0.0,1.0532429383367696e-35,3.4238755395954644e-35,0.0005681818001903594,-0.00016233765927609056,-0.00012626263196580112,1.1799713262713683e-21,3.604620141841387e-20,3.607503458624706e-05,2.068870057447226e-35,0.0,-8.470329472543003e-22,0.0,0.0006944444612599909,-0.00019841270113829523,-4.8061604045334676e-20,-0.00019841270113829523,4.4056469836361075e-20,2.068870057447226e-35,5.668934318237007e-05,-7.52316384526264e-37,1.3731886408499298e-20,4.4056469836361075e-20,0.00035511364694684744,1.2705494208814505e-20,-0.0002663352352101356,6.776263578034403e-21,0.0,0.0,-7.52316384526264e-37,2.9592803912237287e-05,-1.6940658945086007e-21,-0.0,0.0005681818001903594,-4.404571325722362e-20,-0.00012626263196580112,-0.00016233765927609056,1.0532429383367696e-35,-8.470329472543003e-22,1.3731886408499298e-20,-1.6940658945086007e-21,3.607503458624706e-05,1.0671819882309625e-35,0.0005208333604969084,-1.541976460428509e-19,-3.7351367435689245e-35,-0.0005208333604969084,3.4238755395954644e-35,0.0,4.4056469836361075e-20,-0.0,1.0671819882309625e-35,7.440476474585012e-05,8.0,10.0,9.0,0.04585016891360283,-0.00866161659359932,-0.007184343412518501,-0.007853535003960133,0.00046296295477077365,0.0005050505278632045,0.0005555555690079927,0.00031565656536258757,0.00045454545761458576,0.0003787878667935729,-0.00866161659359932,0.004789562430232763,0.0005050505278632045,0.0005555555690079927,-0.00046296295477077365,-0.00014430013834498823,-0.00015873015217948705,-1.1858461261560205e-20,-1.3552527156068805e-20,6.098637220230962e-20,-0.007184343412518501,0.0005050505278632045,0.003095889464020729,0.00045454545761458576,-1.1214374492656376e-19,-0.00011223344336031005,-1.6940658945086007e-20,-0.0002367424312978983,-0.00010101010411744937,-4.743384504624082e-20,-0.007853535003960133,0.0005555555690079927,0.00045454545761458576,0.0038032105658203363,-1.2335811683428072e-19,3.2987593263057866e-21,-0.00013888889225199819,6.285238180430415e-21,-0.00011363636440364644,-0.0003246753185521811,0.00046296295477077365,-0.00046296295477077365,-1.1214374492656376e-19,-1.2335811683428072e-19,6.613756704609841e-05,3.204106720944027e-20,3.52451739303843e-20,4.513898307157584e-36,3.789773985022196e-36,-1.3541694921472752e-35,0.0005050505278632045,-0.00014430013834498823,-0.00011223344336031005,3.2987593263057866e-21,3.204106720944027e-20,3.2066698622656986e-05,-1.2046691097097726e-22,3.3881317890172014e-21,-5.220803144658677e-22,1.9990659252192634e-22,0.0005555555690079927,-0.00015873015217948705,-1.6940658945086007e-20,-0.00013888889225199819,3.52451739303843e-20,-1.2046691097097726e-22,3.968253804487176e-05,-2.117582368135751e-22,3.8116482626443515e-21,-1.5246593050577406e-20,0.00031565656536258757,-1.1858461261560205e-20,-0.0002367424312978983,6.285238180430415e-21,4.513898307157584e-36,3.3881317890172014e-21,-2.117582368135751e-22,2.630471317388583e-05,0.0,0.0,0.00045454545761458576,-1.3552527156068805e-20,-0.00010101010411744937,-0.00011363636440364644,3.789773985022196e-36,-5.220803144658677e-22,3.8116482626443515e-21,0.0,2.5252526029362343e-05,1.1858461261560205e-20,0.0003787878667935729,6.098637220230962e-20,-4.743384504624082e-20,-0.0003246753185521811,-1.3541694921472752e-35,1.9990659252192634e-22,-1.5246593050577406e-20,0.0,1.1858461261560205e-20,4.058441481902264e-05,8.0,10.0,10.0,0.04188705235719681,-0.00784090906381607,-0.006503099109977484,-0.006503099109977484,0.00041666667675599456,0.00045454545761458576,0.00045454545761458576,0.0002840909000951797,0.0003719008236657828,0.0002840909000951797,-0.00784090906381607,0.004323592875152826,0.00045454545761458576,0.00045454545761458576,-0.00041666667675599456,-0.0001298701245104894,-0.0001298701245104894,1.6940658945086007e-21,0.0,6.776263578034403e-21,-0.006503099109977484,0.00045454545761458576,0.0027945649344474077,0.0003719008236657828,0.0,-0.00010101010411744937,0.0,-0.00021306818234734237,-8.264462667284533e-05,3.3881317890172014e-21,-0.006503099109977484,0.00045454545761458576,0.0003719008236657828,0.0027945649344474077,-0.0,-0.0,-0.00010101010411744937,-1.685050716353088e-21,-8.264462667284533e-05,-0.00021306818234734237,0.00041666667675599456,-0.00041666667675599456,0.0,-0.0,5.952380888629705e-05,0.0,0.0,0.0,0.0,0.0,0.00045454545761458576,-0.0001298701245104894,-0.00010101010411744937,-0.0,0.0,2.886002948798705e-05,-1.0587911840678754e-22,0.0,4.235164736271502e-22,-1.8194450738908254e-22,0.00045454545761458576,-0.0001298701245104894,0.0,-0.00010101010411744937,0.0,-1.0587911840678754e-22,2.886002948798705e-05,2.117582368135751e-22,-4.235164736271502e-22,-1.6940658945086007e-21,0.0002840909000951797,1.6940658945086007e-21,-0.00021306818234734237,-1.685050716353088e-21,0.0,0.0,2.117582368135751e-22,2.3674241674598306e-05,0.0,0.0,0.0003719008236657828,0.0,-8.264462667284533e-05,-8.264462667284533e-05,0.0,4.235164736271502e-22,-4.235164736271502e-22,0.0,1.8365473806625232e-05,0.0,0.0002840909000951797,6.776263578034403e-21,3.3881317890172014e-21,-0.00021306818234734237,0.0,-1.8194450738908254e-22,-1.6940658945086007e-21,0.0,0.0,2.3674241674598306e-05,8.0,10.0,11.0,0.03855689615011215,-0.007162534631788731,-0.005940082482993603,-0.005473881959915161,0.0003787878667935729,0.0004132231406401843,0.0003787878667935729,0.00025826445198617876,0.0003099173482041806,0.00021853146608918905,-0.007162534631788731,0.003940377850085497,0.0004132231406401843,0.0003787878667935729,-0.0003787878667935729,-0.0001180637555080466,-0.00010822511103469878,6.437450399132683e-20,-1.8634724839594607e-20,-3.3881317890172014e-20,-0.005940082482993603,0.0004132231406401843,0.0025467744562774897,0.0003099173482041806,0.0,-9.182736539514735e-05,-1.5246593050577406e-20,-0.00019369834626559168,-6.887052586534992e-05,-2.710505431213761e-20,-0.005473881959915161,0.0003787878667935729,0.0003099173482041806,0.002114590024575591,-0.0,-5.502343234598085e-21,-7.575757626909763e-05,-2.7236424164342956e-21,-6.19834681856446e-05,-0.00014568764891009778,0.0003787878667935729,-0.0003787878667935729,0.0,-0.0,5.411255551734939e-05,0.0,0.0,0.0,0.0,0.0,0.0004132231406401843,-0.0001180637555080466,-9.182736539514735e-05,-5.502343234598085e-21,0.0,2.6236390112899244e-05,3.830899144547935e-23,-1.6093625997831706e-20,1.008319232263111e-21,3.2161809802054075e-25,0.0003787878667935729,-0.00010822511103469878,-1.5246593050577406e-20,-7.575757626909763e-05,0.0,3.830899144547935e-23,2.1645020751748234e-05,1.0587911840678754e-22,2.541098841762901e-21,8.470329472543003e-21,0.00025826445198617876,6.437450399132683e-20,-0.00019369834626559168,-2.7236424164342956e-21,0.0,-1.6093625997831706e-20,1.0587911840678754e-22,2.15220388781745e-05,0.0,2.117582368135751e-22,0.0003099173482041806,-1.8634724839594607e-20,-6.887052586534992e-05,-6.19834681856446e-05,0.0,1.008319232263111e-21,2.541098841762901e-21,0.0,1.3774104445474222e-05,5.082197683525802e-21,0.00021853146608918905,-3.3881317890172014e-20,-2.710505431213761e-20,-0.00014568764891009778,0.0,3.2161809802054075e-25,8.470329472543003e-21,2.117582368135751e-22,5.082197683525802e-21,1.4568764527211897e-05,8.0,10.0,12.0,0.03571879491209984,-0.00659236591309309,-0.005466928705573082,-0.004671370144933462,0.00034722223062999547,0.0003787878667935729,0.00032051283051259816,0.0002367424312978983,0.00026223776512779295,0.00017170330102089792,-0.00659236591309309,0.0036196443252265453,0.0003787878667935729,0.00032051283051259816,-0.00034722223062999547,-0.00010822511103469878,-9.157509339274839e-05,-1.0164395367051604e-20,3.3881317890172014e-21,-1.6940658945086007e-20,-0.005466928705573082,0.0003787878667935729,0.002339399652555585,0.00026223776512779295,0.0,-8.417508070124313e-05,1.6940658945086007e-21,-0.00017755682347342372,-5.827505810884759e-05,3.3881317890172014e-21,-0.004671370144933462,0.00032051283051259816,0.00026223776512779295,0.0016391752287745476,-0.0,-0.0,-5.827505810884759e-05,1.5970076799044752e-21,-4.7679593990324065e-05,-0.00010302197915734723,0.00034722223062999547,-0.00034722223062999547,0.0,-0.0,4.960317528457381e-05,0.0,0.0,0.0,0.0,0.0,0.0003787878667935729,-0.00010822511103469878,-8.417508070124313e-05,-0.0,0.0,2.405002487648744e-05,5.293955920339377e-23,1.6940658945086007e-21,-4.235164736271502e-22,1.3845412605681778e-22,0.00032051283051259816,-9.157509339274839e-05,1.6940658945086007e-21,-5.827505810884759e-05,0.0,5.293955920339377e-23,1.6650015822960995e-05,2.117582368135751e-22,-4.235164736271502e-22,2.117582368135751e-21,0.0002367424312978983,-1.0164395367051604e-20,-0.00017755682347342372,1.5970076799044752e-21,0.0,1.6940658945086007e-21,2.117582368135751e-22,1.9728535335161723e-05,-1.6940658945086007e-21,4.235164736271502e-22,0.00026223776512779295,3.3881317890172014e-21,-5.827505810884759e-05,-4.7679593990324065e-05,0.0,-4.235164736271502e-22,-4.235164736271502e-22,-1.6940658945086007e-21,1.0595465028018225e-05,-1.2705494208814505e-21,0.00017170330102089792,-1.6940658945086007e-20,3.3881317890172014e-21,-0.00010302197915734723,0.0,1.3845412605681778e-22,2.117582368135751e-21,4.235164736271502e-22,-1.2705494208814505e-21,9.365634468849748e-06,8.0,10.0,13.0,0.03327089548110962,-0.006106393411755562,-0.005063686519861221,-0.004033466335386038,0.00032051283051259816,0.00034965036320500076,0.00027472528745420277,0.00021853146608918905,0.00022477522725239396,0.00013736264372710139,-0.006106393411755562,0.0033472480718046427,0.00034965036320500076,0.00027472528745420277,-0.00032051283051259816,-9.990009857574478e-05,-7.849293615436181e-05,-0.0,-6.776263578034403e-21,1.6940658945086007e-20,-0.005063686519861221,0.00034965036320500076,0.0021632881835103035,0.00022477522725239396,0.0,-7.770007505314425e-05,-6.776263578034403e-21,-0.0001638985995668918,-4.995004928787239e-05,-1.0164395367051604e-20,-0.004033466335386038,0.00027472528745420277,0.00022477522725239396,0.0012966200010851026,-0.0,-0.0,-4.578754669637419e-05,-0.0,-3.7462537875398993e-05,-7.492507575079799e-05,0.00032051283051259816,-0.00032051283051259816,0.0,-0.0,4.578754669637419e-05,0.0,0.0,0.0,0.0,0.0,0.00034965036320500076,-9.990009857574478e-05,-7.770007505314425e-05,-0.0,0.0,2.2200021703611128e-05,0.0,0.0,0.0,0.0,0.00027472528745420277,-7.849293615436181e-05,-6.776263578034403e-21,-4.578754669637419e-05,0.0,0.0,1.308215632889187e-05,0.0,1.0587911840678754e-21,-2.541098841762901e-21,0.00021853146608918905,-0.0,-0.0001638985995668918,-0.0,0.0,0.0,0.0,1.8210956113762222e-05,0.0,0.0,0.00022477522725239396,-6.776263578034403e-21,-4.995004928787239e-05,-3.7462537875398993e-05,0.0,0.0,1.0587911840678754e-21,0.0,8.325007911480498e-06,1.6940658945086007e-21,0.00013736264372710139,1.6940658945086007e-20,-1.0164395367051604e-20,-7.492507575079799e-05,0.0,0.0,-2.541098841762901e-21,0.0,1.6940658945086007e-21,6.243756160984049e-06,8.0,10.0,14.0,0.03113771602511406,-0.005687229335308075,-0.0047159092500805855,-0.003517992328852415,0.00029761905898340046,0.0003246753185521811,0.0002380952355451882,0.000202922077733092,0.00019480519404169172,0.00011160714348079637,-0.005687229335308075,0.0031130178831517696,0.0003246753185521811,0.0002380952355451882,-0.00029761905898340046,-9.276437776861712e-05,-6.80272132740356e-05,-0.0,3.3881317890172014e-21,-5.082197683525802e-21,-0.0047159092500805855,0.0003246753185521811,0.002011859556660056,0.00019480519404169172,7.209240283682775e-20,-7.215006917249411e-05,3.3881317890172014e-21,-0.0001521915546618402,-4.329004150349647e-05,6.776263578034403e-21,-0.003517992328852415,0.0002380952355451882,0.00019480519404169172,0.0010434617288410664,5.286776251116358e-20,-2.5612365995627546e-35,-3.6630037357099354e-05,-0.0,-2.9970029572723433e-05,-5.5803571740398183e-05,0.00029761905898340046,-0.00029761905898340046,7.209240283682775e-20,5.286776251116358e-20,4.251700738677755e-05,-2.0597829612748946e-20,-1.510507569558408e-20,0.0,6.853524339180845e-37,-1.128474576789396e-36,0.0003246753185521811,-9.276437776861712e-05,-7.215006917249411e-05,-2.5612365995627546e-35,-2.0597829612748946e-20,2.0614306777133606e-05,7.317818958388558e-36,0.0,-0.0,0.0,0.0002380952355451882,-6.80272132740356e-05,3.3881317890172014e-21,-3.6630037357099354e-05,-1.510507569558408e-20,7.317818958388558e-36,1.0465724699315615e-05,0.0,-4.235164736271502e-22,8.470329472543003e-22,0.000202922077733092,-0.0,-0.0001521915546618402,-0.0,0.0,0.0,0.0,1.6910173144424334e-05,0.0,0.0,0.00019480519404169172,3.3881317890172014e-21,-4.329004150349647e-05,-2.9970029572723433e-05,6.853524339180845e-37,-0.0,-4.235164736271502e-22,0.0,6.660006874881219e-06,-1.0587911840678754e-21,0.00011160714348079637,-5.082197683525802e-21,6.776263578034403e-21,-5.5803571740398183e-05,-1.128474576789396e-36,0.0,8.470329472543003e-22,0.0,-1.0587911840678754e-21,4.292582616471918e-06,8.0,10.0,15.0,0.029262106865644455,-0.005321969743818045,-0.004412878770381212,-0.0030954768881201744,0.00027777778450399637,0.0003030303050763905,0.00020833333837799728,0.00018939393339678645,0.00017045454296749085,9.191176650347188e-05,-0.005321969743818045,0.002909451723098755,0.0003030303050763905,0.00020833333837799728,-0.00027777778450399637,-8.658008300699294e-05,-5.952380888629705e-05,-2.625865725997921e-19,-8.893845946170154e-20,1.1011428314305904e-19,-0.004412878770381212,0.0003030303050763905,0.001880260999314487,0.00017045454296749085,-4.582608510889447e-19,-6.73400645609945e-05,2.286988957586611e-20,-0.00014204545004758984,-3.787878813454881e-05,5.251604272976662e-20,-0.0030954768881201744,0.00020833333837799728,0.00017045454296749085,0.0008522788411937654,2.4663467883004253e-19,-2.996268544752129e-20,-2.9761904443148524e-05,1.4968341124741932e-19,-2.4350649255211465e-05,-4.242081558913924e-05,0.00027777778450399637,-0.00027777778450399637,-4.582608510889447e-19,2.4663467883004253e-19,3.968253804487176e-05,2.5196147640563968e-20,-1.2344202881442797e-20,2.803593623164094e-20,7.209240122124061e-21,-1.7792036206143344e-20,0.0003030303050763905,-8.658008300699294e-05,-6.73400645609945e-05,-2.996268544752129e-20,2.5196147640563968e-20,1.924001844599843e-05,8.421932944360116e-21,2.4030802022667338e-20,3.378136555316591e-21,-1.0511209822013284e-21,0.00020833333837799728,-5.952380888629705e-05,2.286988957586611e-20,-2.9761904443148524e-05,-1.2344202881442797e-20,8.421932944360116e-21,8.50340165925445e-06,-8.260588296266093e-21,1.0587911840678754e-21,1.2705494208814505e-21,0.00018939393339678645,-2.625865725997921e-19,-0.00014204545004758984,1.4968341124741932e-19,2.803593623164094e-20,2.4030802022667338e-20,-8.260588296266093e-21,1.578282899572514e-05,-1.731613351190616e-21,-6.541189591601273e-21,0.00017045454296749085,-8.893845946170154e-20,-3.787878813454881e-05,-2.4350649255211465e-05,7.209240122124061e-21,3.378136555316591e-21,1.0587911840678754e-21,-1.731613351190616e-21,5.4112551879370585e-06,1.4823076576950256e-21,9.191176650347188e-05,1.1011428314305904e-19,5.251604272976662e-20,-4.242081558913924e-05,-1.7792036206143344e-20,-1.0511209822013284e-21,1.2705494208814505e-21,-6.541189591601273e-21,1.4823076576950256e-21,3.030058223885135e-06,8.0,10.0,16.0,0.027599988505244255,-0.0050008357502520084,-0.004146473947912455,-0.00274481950327754,0.0002604166802484542,0.0002840909000951797,0.00018382353300694376,0.00017755682347342372,0.00015040107246022671,7.659313996555284e-05,-0.0050008357502520084,0.002730893436819315,0.0002840909000951797,0.00018382353300694376,-0.0002604166802484542,-8.116882963804528e-05,-5.25210089108441e-05,-0.0,-3.3881317890172014e-21,8.470329472543003e-21,-0.004146473947912455,0.0002840909000951797,0.0017648335779085755,0.00015040107246022671,-6.308085167443071e-20,-6.313131598290056e-05,-3.3881317890172014e-21,-0.0001331676176050678,-3.342246054671705e-05,-5.082197683525802e-21,-0.00274481950327754,0.00018382353300694376,0.00015040107246022671,0.000705174112226814,-4.081702376245028e-20,-1.9774254361197573e-35,-2.4509803552064113e-05,-0.0,-2.0053475964232348e-05,-3.282563193351962e-05,0.0002604166802484542,-0.0002604166802484542,-6.308085167443071e-20,-4.081702376245028e-20,3.720238237292506e-05,1.8023100709206936e-20,1.1662006673872428e-20,0.0,8.095654131409724e-37,-1.88079096131566e-36,0.0002840909000951797,-8.116882963804528e-05,-6.313131598290056e-05,-1.9774254361197573e-35,1.8023100709206936e-20,1.803751729312353e-05,5.6497868065997035e-36,0.0,0.0,-0.0,0.00018382353300694376,-5.25210089108441e-05,-3.3881317890172014e-21,-2.4509803552064113e-05,1.1662006673872428e-20,5.6497868065997035e-36,7.002801339694997e-06,0.0,5.293955920339377e-22,-1.0587911840678754e-21,0.00017755682347342372,-0.0,-0.0001331676176050678,-0.0,0.0,0.0,0.0,1.4796401956118643e-05,0.0,0.0,0.00015040107246022671,-3.3881317890172014e-21,-3.342246054671705e-05,-2.0053475964232348e-05,8.095654131409724e-37,0.0,5.293955920339377e-22,0.0,4.456328042579116e-06,6.352747104407253e-22,7.659313996555284e-05,8.470329472543003e-21,-5.082197683525802e-21,-3.282563193351962e-05,-1.88079096131566e-36,-0.0,-1.0587911840678754e-21,0.0,6.352747104407253e-22,2.188375447076396e-06,8.0,11.0,3.0,0.09899475425481796,-0.021464645862579346,-0.016438422724604607,-0.044507574290037155,0.0012626262614503503,0.0012626262614503503,0.0037878789007663727,0.0007284382008947432,0.0028409091755747795,0.005681818351149559,-0.021464645862579346,0.012445887550711632,0.0012626262614503503,0.0037878789007663727,-0.0012626262614503503,-0.0003607503604143858,-0.0010822510812431574,-1.4907779871675686e-19,0.0,-0.0,-0.016438422724604607,0.0012626262614503503,0.006687062792479992,0.0028409091755747795,0.0,-0.00025252526393160224,0.0,-0.0004856254963669926,-0.0005681818001903594,-0.0,-0.044507574290037155,0.0037878789007663727,0.0028409091755747795,0.10132575780153275,0.0,0.0,-0.0037878789007663727,0.0,-0.0028409091755747795,-0.034090910106897354,0.0012626262614503503,-0.0012626262614503503,0.0,0.0,0.0001803751802071929,0.0,0.0,0.0,0.0,-0.0,0.0012626262614503503,-0.0003607503604143858,-0.00025252526393160224,0.0,0.0,7.215006917249411e-05,0.0,2.67878580122048e-20,0.0,-0.0,0.0037878789007663727,-0.0010822510812431574,0.0,-0.0037878789007663727,0.0,0.0,0.0010822510812431574,0.0,0.0,-0.0,0.0007284382008947432,-1.4907779871675686e-19,-0.0004856254963669926,0.0,0.0,2.67878580122048e-20,0.0,4.856254963669926e-05,0.0,-0.0,0.0028409091755747795,0.0,-0.0005681818001903594,-0.0028409091755747795,0.0,0.0,0.0,0.0,0.0005681818001903594,-0.0,0.005681818351149559,-0.0,-0.0,-0.034090910106897354,-0.0,-0.0,-0.0,-0.0,-0.0,0.017045455053448677,8.0,11.0,4.0,0.0806381106376648,-0.01666666753590107,-0.0127549534663558,-0.028409091755747795,0.0009469697251915932,0.0009469697251915932,0.0022727272007614374,0.0005463286652229726,0.001704545458778739,0.0028409091755747795,-0.01666666753590107,0.009496753104031086,0.0009469697251915932,0.0022727272007614374,-0.0009469697251915932,-0.00027056277031078935,-0.0006493506371043622,5.421010862427522e-20,0.0,-0.0,-0.0127549534663558,0.0009469697251915932,0.005100524518638849,0.001704545458778739,0.0,-0.00018939393339678645,0.0,-0.0003642191004473716,-0.0003409090859349817,-0.0,-0.028409091755747795,0.0022727272007614374,0.001704545458778739,0.038825757801532745,0.0,0.0,-0.0015151514671742916,-7.885106459303839e-21,-0.0011363636003807187,-0.008522727526724339,0.0009469697251915932,-0.0009469697251915932,0.0,0.0,0.00013528138515539467,0.0,0.0,0.0,0.0,-0.0,0.0009469697251915932,-0.00027056277031078935,-0.00018939393339678645,0.0,0.0,5.411255551734939e-05,0.0,-1.1214368676542694e-20,0.0,-0.0,0.0022727272007614374,-0.0006493506371043622,0.0,-0.0015151514671742916,0.0,0.0,0.00043290044413879514,0.0,0.0,-0.0,0.0005463286652229726,5.421010862427522e-20,-0.0003642191004473716,-7.885106459303839e-21,0.0,-1.1214368676542694e-20,0.0,3.6421912227524444e-05,1.5770213524452853e-21,-0.0,0.001704545458778739,0.0,-0.0003409090859349817,-0.0011363636003807187,0.0,0.0,0.0,1.5770213524452853e-21,0.00022727272880729288,-0.0,0.0028409091755747795,-0.0,-0.0,-0.008522727526724339,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028409091755747795,8.0,11.0,5.0,0.06813602894544601,-0.013636363670229912,-0.010431235656142235,-0.019751083105802536,0.0007575757335871458,0.0007575757335871458,0.0015151514671742916,0.0004370629321783781,0.0011363636003807187,0.001623376621864736,-0.013636363670229912,0.007683982606977224,0.0007575757335871458,0.0015151514671742916,-0.0007575757335871458,-0.00021645022206939757,-0.00043290044413879514,-7.623296525288703e-20,6.776263578034403e-21,-0.0,-0.010431235656142235,0.0007575757335871458,0.004125874023884535,0.0011363636003807187,0.0,-0.00015151515253819525,0.0,-0.00029137529782019556,-0.00022727272880729288,-0.0,-0.019751083105802536,0.0015151514671742916,0.0011363636003807187,0.01961580105125904,0.0,-1.825101522125622e-21,-0.0007575757335871458,1.3552527156068805e-20,-0.0005681818001903594,-0.003246753243729472,0.0007575757335871458,-0.0007575757335871458,0.0,0.0,0.00010822511103469878,0.0,0.0,0.0,0.0,-0.0,0.0007575757335871458,-0.00021645022206939757,-0.00015151515253819525,-1.825101522125622e-21,0.0,4.329004150349647e-05,0.0,1.5246593050577406e-20,0.0,-0.0,0.0015151514671742916,-0.00043290044413879514,0.0,-0.0007575757335871458,0.0,0.0,0.00021645022206939757,0.0,0.0,-0.0,0.0004370629321783781,-7.623296525288703e-20,-0.00029137529782019556,1.3552527156068805e-20,0.0,1.5246593050577406e-20,0.0,2.9137529054423794e-05,-3.3881317890172014e-21,-0.0,0.0011363636003807187,6.776263578034403e-21,-0.00022727272880729288,-0.0005681818001903594,0.0,0.0,0.0,-3.3881317890172014e-21,0.00011363636440364644,-0.0,0.001623376621864736,-0.0,-0.0,-0.003246753243729472,-0.0,-0.0,-0.0,-0.0,-0.0,0.000811688310932368,8.0,11.0,6.0,0.059034716337919235,-0.011544011533260345,-0.008827977813780308,-0.014542749151587486,0.0006313131307251751,0.0006313131307251751,0.0010822510812431574,0.0003642191004473716,0.000811688310932368,0.0010146104032173753,-0.011544011533260345,0.006454854737967253,0.0006313131307251751,0.0010822510812431574,-0.0006313131307251751,-0.0001803751802071929,-0.0003092146071139723,-6.352747104407253e-20,-3.3881317890172014e-21,-0.0,-0.008827977813780308,0.0006313131307251751,0.003465284826233983,0.000811688310932368,0.0,-0.00012626263196580112,0.0,-0.0002428127481834963,-0.00016233765927609056,-0.0,-0.014542749151587486,0.0010822510812431574,0.000811688310932368,0.011397456750273705,0.0,-2.320330538612479e-23,-0.00043290044413879514,6.776263578034403e-21,-0.0003246753185521811,-0.001521915546618402,0.0006313131307251751,-0.0006313131307251751,0.0,0.0,9.018759010359645e-05,0.0,0.0,0.0,0.0,-0.0,0.0006313131307251751,-0.0001803751802071929,-0.00012626263196580112,-2.320330538612479e-23,0.0,3.607503458624706e-05,0.0,1.0164395367051604e-20,-8.470329472543003e-22,-0.0,0.0010822510812431574,-0.0003092146071139723,0.0,-0.00043290044413879514,0.0,0.0,0.00012368583702482283,0.0,0.0,-0.0,0.0003642191004473716,-6.352747104407253e-20,-0.0002428127481834963,6.776263578034403e-21,0.0,1.0164395367051604e-20,0.0,2.428127481834963e-05,-1.6940658945086007e-21,-0.0,0.000811688310932368,-3.3881317890172014e-21,-0.00016233765927609056,-0.0003246753185521811,0.0,-8.470329472543003e-22,0.0,-1.6940658945086007e-21,6.49350622552447e-05,-0.0,0.0010146104032173753,-0.0,-0.0,-0.001521915546618402,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003043831093236804,8.0,11.0,7.0,0.052098941057920456,-0.010010822676122189,-0.007653804495930672,-0.01116071455180645,0.0005411255406215787,0.0005411255406215787,0.000811688310932368,0.00031218782532960176,0.0006087662186473608,0.0006764069548808038,-0.010010822676122189,0.005565862637013197,0.0005411255406215787,0.000811688310932368,-0.0005411255406215787,-0.00015460730355698615,-0.00023191094805952162,-3.7100043089738355e-19,-8.944667923005412e-19,-1.0848413763038548e-18,-0.007653804495930672,0.0005411255406215787,0.0029876374173909426,0.0006087662186473608,-9.335662756874274e-19,-0.00010822511103469878,-4.128136870789031e-19,-0.00020812520233448595,-0.00012175324809504673,-3.398121804371369e-19,-0.01116071455180645,0.000811688310932368,0.0006087662186473608,0.007237554062157869,-1.2997178772316016e-18,-4.488528606932846e-19,-0.00027056277031078935,-7.453889935837843e-20,-0.000202922077733092,-0.000811688310932368,0.0005411255406215787,-0.0005411255406215787,-9.335662756874274e-19,-1.2997178772316016e-18,7.730365177849308e-05,2.3124258923336102e-20,1.9468367800683206e-20,4.6213078327303136e-20,9.011550516162182e-20,1.0012833906846868e-19,0.0005411255406215787,-0.00015460730355698615,-0.00010822511103469878,-4.488528606932846e-19,2.3124258923336102e-20,3.092145925620571e-05,2.5179371383765627e-20,-1.0164395367051604e-20,2.710505431213761e-20,2.8608096415109014e-20,0.000811688310932368,-0.00023191094805952162,-4.128136870789031e-19,-0.00027056277031078935,1.9468367800683206e-20,2.5179371383765627e-20,7.730365177849308e-05,1.9805605459011954e-20,2.5045088627957873e-20,6.122875550883327e-20,0.00031218782532960176,-3.7100043089738355e-19,-0.00020812520233448595,-7.453889935837843e-20,4.6213078327303136e-20,-1.0164395367051604e-20,1.9805605459011954e-20,2.0812520233448595e-05,0.0,7.292121234169111e-35,0.0006087662186473608,-8.944667923005412e-19,-0.00012175324809504673,-0.000202922077733092,9.011550516162182e-20,2.710505431213761e-20,2.5045088627957873e-20,0.0,4.058441481902264e-05,7.989460948132372e-20,0.0006764069548808038,-1.0848413763038548e-18,-3.398121804371369e-19,-0.000811688310932368,1.0012833906846868e-19,2.8608096415109014e-20,6.122875550883327e-20,7.292121234169111e-35,7.989460948132372e-20,0.00013528138515539467,8.0,11.0,8.0,0.04663218557834625,-0.008838383480906487,-0.006756264716386795,-0.008838383480906487,0.0004734848625957966,0.0004734848625957966,0.0006313131307251751,0.0002731643326114863,0.0004734848625957966,0.0004734848625957966,-0.008838383480906487,0.00489267660304904,0.0004734848625957966,0.0006313131307251751,-0.0004734848625957966,-0.00013528138515539467,-0.0001803751802071929,4.0657581468206416e-20,3.3881317890172014e-21,-0.0,-0.006756264716386795,0.0004734848625957966,0.002626019762828946,0.0004734848625957966,0.0,-9.469696669839323e-05,0.0,-0.0001821095502236858,-9.469696669839323e-05,-0.0,-0.008838383480906487,0.0006313131307251751,0.0004734848625957966,0.00489267660304904,0.0,9.552216484431833e-22,-0.0001803751802071929,6.776263578034403e-21,-0.00013528138515539467,-0.0004734848625957966,0.0004734848625957966,-0.0004734848625957966,0.0,0.0,6.764069257769734e-05,0.0,0.0,0.0,0.0,-0.0,0.0004734848625957966,-0.00013528138515539467,-9.469696669839323e-05,9.552216484431833e-22,0.0,2.7056277758674696e-05,0.0,-7.623296525288703e-21,0.0,-0.0,0.0006313131307251751,-0.0001803751802071929,0.0,-0.0001803751802071929,0.0,0.0,5.153576421434991e-05,0.0,0.0,-0.0,0.0002731643326114863,4.0657581468206416e-20,-0.0001821095502236858,6.776263578034403e-21,0.0,-7.623296525288703e-21,0.0,1.8210956113762222e-05,-1.6940658945086007e-21,-0.0,0.0004734848625957966,3.3881317890172014e-21,-9.469696669839323e-05,-0.00013528138515539467,0.0,0.0,0.0,-1.6940658945086007e-21,2.7056277758674696e-05,-0.0,0.0004734848625957966,-0.0,-0.0,-0.0004734848625957966,-0.0,-0.0,-0.0,-0.0,-0.0,6.764069257769734e-05,8.0,11.0,9.0,0.0422096848487854,-0.007912457920610905,-0.006047655828297138,-0.007174012716859579,0.0004208754107821733,0.0004208754107821733,0.0005050505278632045,0.0002428127481834963,0.0003787878667935729,0.000344352622050792,-0.007912457920610905,0.004365079570561647,0.0004208754107821733,0.0005050505278632045,-0.0004208754107821733,-0.0001202501225634478,-0.00014430013834498823,-4.472333961502706e-19,-6.979551485375435e-19,-8.199278929421627e-19,-0.006047655828297138,0.0004208754107821733,0.00234265741892159,0.0003787878667935729,-6.374659635821665e-19,-8.417508070124313e-05,-7.301424005332069e-19,-0.00016187515575438738,-7.575757626909763e-05,-1.0842021724855044e-19,-0.007174012716859579,0.0005050505278632045,0.0003787878667935729,0.0034660729579627514,-8.686420067814825e-19,-3.223769450339266e-19,-0.00012626263196580112,-1.3833733667654743e-19,-9.469696669839323e-05,-0.00029515937785618007,0.0004208754107821733,-0.0004208754107821733,-6.374659635821665e-19,-8.686420067814825e-19,6.01250612817239e-05,-1.1345631092203635e-20,1.952671149884947e-20,3.5943505006660854e-20,5.607187246328188e-20,5.0974426868386397e-20,0.0004208754107821733,-0.0001202501225634478,-8.417508070124313e-05,-3.223769450339266e-19,-1.1345631092203635e-20,2.405002487648744e-05,2.699018768250498e-20,2.541098841762901e-21,1.5583959955876866e-20,1.4744281161256044e-20,0.0005050505278632045,-0.00014430013834498823,-7.301424005332069e-19,-0.00012626263196580112,1.952671149884947e-20,2.699018768250498e-20,3.607503458624706e-05,4.086933970501999e-20,4.870439446712227e-20,9.147955830346444e-20,0.0002428127481834963,-4.472333961502706e-19,-0.00016187515575438738,-1.3833733667654743e-19,3.5943505006660854e-20,2.541098841762901e-21,4.086933970501999e-20,1.618751593923662e-05,-8.470329472543003e-22,4.235164736271502e-22,0.0003787878667935729,-6.979551485375435e-19,-7.575757626909763e-05,-9.469696669839323e-05,5.607187246328188e-20,1.5583959955876866e-20,4.870439446712227e-20,-8.470329472543003e-22,1.8939394067274407e-05,1.5246593050577406e-20,0.000344352622050792,-8.199278929421627e-19,-1.0842021724855044e-19,-0.00029515937785618007,5.0974426868386397e-20,1.4744281161256044e-20,9.147955830346444e-20,4.235164736271502e-22,1.5246593050577406e-20,3.689492223202251e-05,8.0,11.0,10.0,0.03855689615011215,-0.007162534631788731,-0.005473881959915161,-0.005940082482993603,0.0003787878667935729,0.0003787878667935729,0.0004132231406401843,0.00021853146608918905,0.0003099173482041806,0.00025826445198617876,-0.007162534631788731,0.003940377850085497,0.0003787878667935729,0.0004132231406401843,-0.0003787878667935729,-0.00010822511103469878,-0.0001180637555080466,-4.404571325722362e-20,2.541098841762901e-20,7.453889935837843e-20,-0.005473881959915161,0.0003787878667935729,0.002114590024575591,0.0003099173482041806,0.0,-7.575757626909763e-05,2.879912020664621e-20,-0.00014568764891009778,-6.19834681856446e-05,6.776263578034403e-20,-0.005940082482993603,0.0004132231406401843,0.0003099173482041806,0.0025467744562774897,-0.0,-0.0,-9.182736539514735e-05,4.465443458142847e-22,-6.887052586534992e-05,-0.00019369834626559168,0.0003787878667935729,-0.0003787878667935729,0.0,-0.0,5.411255551734939e-05,0.0,0.0,0.0,0.0,0.0,0.0003787878667935729,-0.00010822511103469878,-7.575757626909763e-05,-0.0,0.0,2.1645020751748234e-05,-5.293955920339377e-23,8.470329472543003e-21,4.235164736271502e-22,-1.3762305793772383e-22,0.0004132231406401843,-0.0001180637555080466,2.879912020664621e-20,-9.182736539514735e-05,0.0,-5.293955920339377e-23,2.6236390112899244e-05,-1.0587911840678754e-22,-5.929230630780102e-21,-1.9481757786848908e-20,0.00021853146608918905,-4.404571325722362e-20,-0.00014568764891009778,4.465443458142847e-22,0.0,8.470329472543003e-21,-1.0587911840678754e-22,1.4568764527211897e-05,4.235164736271502e-22,-4.235164736271502e-22,0.0003099173482041806,2.541098841762901e-20,-6.19834681856446e-05,-6.887052586534992e-05,0.0,4.235164736271502e-22,-5.929230630780102e-21,4.235164736271502e-22,1.3774104445474222e-05,-1.5246593050577406e-20,0.00025826445198617876,7.453889935837843e-20,6.776263578034403e-20,-0.00019369834626559168,0.0,-1.3762305793772383e-22,-1.9481757786848908e-20,-4.235164736271502e-22,-1.5246593050577406e-20,2.15220388781745e-05,8.0,11.0,11.0,0.03548818454146385,-0.0065426998771727085,-0.004999734926968813,-0.004999734926968813,0.000344352622050792,0.000344352622050792,0.000344352622050792,0.0001986649731406942,0.00025826445198617876,0.0001986649731406942,-0.0065426998771727085,0.0035911058075726032,0.000344352622050792,0.000344352622050792,-0.000344352622050792,-9.838645928539336e-05,-9.838645928539336e-05,-3.8116482626443515e-20,-6.776263578034403e-21,-5.082197683525802e-20,-0.004999734926968813,0.000344352622050792,0.0019270501798018813,0.00025826445198617876,0.0,-6.887052586534992e-05,-1.1858461261560205e-20,-0.00013244331057649106,-5.1652892580023035e-05,-3.3881317890172014e-20,-0.004999734926968813,0.000344352622050792,0.00025826445198617876,0.0019270501798018813,-0.0,5.0143490823540636e-21,-6.887052586534992e-05,3.9245418564897174e-21,-5.1652892580023035e-05,-0.00013244331057649106,0.000344352622050792,-0.000344352622050792,0.0,-0.0,4.919322964269668e-05,0.0,0.0,0.0,0.0,0.0,0.000344352622050792,-9.838645928539336e-05,-6.887052586534992e-05,5.0143490823540636e-21,0.0,1.9677292584674433e-05,-2.038829311116706e-23,7.623296525288703e-21,-9.814381847616425e-22,7.571011758501966e-23,0.000344352622050792,-9.838645928539336e-05,-1.1858461261560205e-20,-6.887052586534992e-05,0.0,-2.038829311116706e-23,1.9677292584674433e-05,0.0,2.329340604949326e-21,1.0164395367051604e-20,0.0001986649731406942,-3.8116482626443515e-20,-0.00013244331057649106,3.9245418564897174e-21,0.0,7.623296525288703e-21,0.0,1.3244331057649106e-05,-8.470329472543003e-22,4.235164736271502e-22,0.00025826445198617876,-6.776263578034403e-21,-5.1652892580023035e-05,-5.1652892580023035e-05,0.0,-9.814381847616425e-22,2.329340604949326e-21,-8.470329472543003e-22,1.0330578334105667e-05,6.3527471044072525e-21,0.0001986649731406942,-5.082197683525802e-20,-3.3881317890172014e-20,-0.00013244331057649106,0.0,7.571011758501966e-23,1.0164395367051604e-20,4.235164736271502e-22,6.3527471044072525e-21,1.3244331057649106e-05,8.0,11.0,12.0,0.032873377203941345,-0.006021756213158369,-0.004601301625370979,-0.004266566596925259,0.00031565656536258757,0.00031565656536258757,0.00029137529782019556,0.0001821095502236858,0.00021853146608918905,0.00015609391266480088,-0.006021756213158369,0.0032987846061587334,0.00031565656536258757,0.00029137529782019556,-0.00031565656536258757,-9.018759010359645e-05,-8.325008093379438e-05,-3.049318610115481e-20,3.3881317890172014e-21,-1.3552527156068805e-20,-0.004601301625370979,0.00031565656536258757,0.0017701048636808991,0.00021853146608918905,0.0,-6.313131598290056e-05,3.3881317890172014e-21,-0.00012140637409174815,-4.3706295400625095e-05,5.082197683525802e-21,-0.004266566596925259,0.00029137529782019556,0.00021853146608918905,0.0014937713276594877,-0.0,1.2956400949159783e-21,-5.297732423059642e-05,1.4044300974412569e-21,-3.973299317294732e-05,-9.365634468849748e-05,0.00031565656536258757,-0.00031565656536258757,0.0,-0.0,4.5093795051798224e-05,0.0,0.0,0.0,0.0,0.0,0.00031565656536258757,-9.018759010359645e-05,-6.313131598290056e-05,1.2956400949159783e-21,0.0,1.803751729312353e-05,6.989053607046683e-24,6.776263578034403e-21,-4.5797937057378085e-22,-8.242804443210731e-24,0.00029137529782019556,-8.325008093379438e-05,3.3881317890172014e-21,-5.297732423059642e-05,0.0,6.989053607046683e-24,1.5136378351598978e-05,0.0,-4.235164736271502e-22,1.2705494208814505e-21,0.0001821095502236858,-3.049318610115481e-20,-0.00012140637409174815,1.4044300974412569e-21,0.0,6.776263578034403e-21,0.0,1.2140637409174815e-05,-4.235164736271502e-22,2.117582368135751e-22,0.00021853146608918905,3.3881317890172014e-21,-4.3706295400625095e-05,-3.973299317294732e-05,0.0,-4.5797937057378085e-22,-4.235164736271502e-22,-4.235164736271502e-22,7.946598998387344e-06,-8.470329472543003e-22,0.00015609391266480088,-1.3552527156068805e-20,5.082197683525802e-21,-9.365634468849748e-05,0.0,-8.242804443210731e-24,1.2705494208814505e-21,2.117582368135751e-22,-8.470329472543003e-22,8.514212822774425e-06,8.0,11.0,13.0,0.030618419870734215,-0.005577755626291037,-0.004261763766407967,-0.0036838161759078503,0.00029137529782019556,0.00029137529782019556,0.00024975024280138314,0.00016810113447718322,0.00018731268937699497,0.00012487512140069157,-0.005577755626291037,0.0030505210161209106,0.00029137529782019556,0.00024975024280138314,-0.00029137529782019556,-8.325008093379438e-05,-7.135721534723416e-05,2.202285662861181e-20,-6.776263578034403e-21,1.3552527156068805e-20,-0.004261763766407967,0.00029137529782019556,0.00163682468701154,0.00018731268937699497,0.0,-5.827505810884759e-05,-7.623296525288703e-21,-0.00011206742055946961,-3.7462537875398993e-05,-1.3552527156068805e-20,-0.0036838161759078503,0.00024975024280138314,0.00018731268937699497,0.0011815836187452078,-0.0,-0.0,-4.162504046689719e-05,1.3539444383894033e-22,-3.121878035017289e-05,-6.81137025821954e-05,0.00029137529782019556,-0.00029137529782019556,0.0,-0.0,4.162504046689719e-05,0.0,0.0,0.0,0.0,0.0,0.00029137529782019556,-8.325008093379438e-05,-5.827505810884759e-05,-0.0,0.0,1.6650015822960995e-05,0.0,-5.082197683525802e-21,0.0,2.0435560078886094e-23,0.00024975024280138314,-7.135721534723416e-05,-7.623296525288703e-21,-4.162504046689719e-05,0.0,0.0,1.1892869224539027e-05,-1.0587911840678754e-22,1.2705494208814505e-21,-2.117582368135751e-21,0.00016810113447718322,2.202285662861181e-20,-0.00011206742055946961,1.3539444383894033e-22,0.0,-5.082197683525802e-21,-1.0587911840678754e-22,1.120674187404802e-05,4.235164736271502e-22,0.0,0.00018731268937699497,-6.776263578034403e-21,-3.7462537875398993e-05,-3.121878035017289e-05,0.0,0.0,1.2705494208814505e-21,4.235164736271502e-22,6.243756160984049e-06,2.117582368135751e-21,0.00012487512140069157,1.3552527156068805e-20,-1.3552527156068805e-20,-6.81137025821954e-05,0.0,2.0435560078886094e-23,-2.117582368135751e-21,0.0,2.117582368135751e-21,5.676141881849617e-06,8.0,11.0,14.0,0.028653638437390327,-0.005194805096834898,-0.003968947567045689,-0.003212932962924242,0.00027056277031078935,0.00027056277031078935,0.00021645022206939757,0.00015609391266480088,0.00016233765927609056,0.000101461038866546,-0.005194805096834898,0.0028370439540594816,0.00027056277031078935,0.00021645022206939757,-0.00027056277031078935,-7.730365177849308e-05,-6.184291851241142e-05,-2.47667232879056e-19,-2.541098841762901e-19,-1.3721933745519665e-19,-0.003968947567045689,0.00027056277031078935,0.0015222277725115418,0.00016233765927609056,-4.878100690148117e-19,-5.411255551734939e-05,-1.3383120566617945e-19,-0.00010406260116724297,-3.246753112762235e-05,-6.776263578034403e-21,-0.003212932962924242,0.00021645022206939757,0.00016233765927609056,0.0009508720249868929,-3.925621084851029e-19,-1.26713743010164e-19,-3.330003164592199e-05,-1.8485231330921254e-20,-2.4975024643936194e-05,-5.0730519433273e-05,0.00027056277031078935,-0.00027056277031078935,-4.878100690148117e-19,-3.925621084851029e-19,3.865182588924654e-05,1.1562129461668051e-20,8.313210392597677e-21,2.3106539163651568e-20,2.4030802022667338e-20,1.5019250860270303e-20,0.00027056277031078935,-7.730365177849308e-05,-5.411255551734939e-05,-1.26713743010164e-19,1.1562129461668051e-20,1.5460729628102854e-05,7.606397483868186e-21,7.677601255620236e-21,6.114736384461489e-21,4.291214704604422e-21,0.00021645022206939757,-6.184291851241142e-05,-1.3383120566617945e-19,-3.330003164592199e-05,8.313210392597677e-21,7.606397483868186e-21,9.51429501583334e-06,5.281494896775663e-21,6.3527471044072525e-21,2.117582368135751e-22,0.00015609391266480088,-2.47667232879056e-19,-0.00010406260116724297,-1.8485231330921254e-20,2.3106539163651568e-20,7.677601255620236e-21,5.281494896775663e-21,1.0406260116724297e-05,2.2005254247393222e-35,1.1660903960157092e-35,0.00016233765927609056,-2.541098841762901e-19,-3.246753112762235e-05,-2.4975024643936194e-05,2.4030802022667338e-20,6.114736384461489e-21,6.3527471044072525e-21,2.2005254247393222e-35,4.995004928787239e-06,-1.0587911840678754e-21,0.000101461038866546,-1.3721933745519665e-19,-6.776263578034403e-21,-5.0730519433273e-05,1.5019250860270303e-20,4.291214704604422e-21,2.117582368135751e-22,1.1660903960157092e-35,-1.0587911840678754e-21,3.9023475437716115e-06,8.0,11.0,15.0,0.02692629024386406,-0.004861111287027597,-0.003713820828124881,-0.0028269831091165543,0.00025252526393160224,0.00025252526393160224,0.00018939393339678645,0.00014568764891009778,0.00014204545004758984,8.355615136679262e-05,-0.004861111287027597,0.002651515183970332,0.00025252526393160224,0.00018939393339678645,-0.00025252526393160224,-7.215006917249411e-05,-5.411255551734939e-05,-0.0,-2.541098841762901e-21,-1.5246593050577406e-20,-0.003713820828124881,0.00025252526393160224,0.0014226398197934031,0.00014204545004758984,0.0,-5.0505052058724687e-05,-4.235164736271502e-21,-9.712509927339852e-05,-2.840909110091161e-05,-5.929230630780102e-21,-0.0028269831091165543,0.00018939393339678645,0.00014204545004758984,0.000776643690187484,-0.0,-0.0,-2.7056277758674696e-05,-0.0,-2.029220740951132e-05,-3.856437615468167e-05,0.00025252526393160224,-0.00025252526393160224,0.0,-0.0,3.607503458624706e-05,0.0,0.0,0.0,0.0,0.0,0.00025252526393160224,-7.215006917249411e-05,-5.0505052058724687e-05,-0.0,0.0,1.4430014743993524e-05,0.0,0.0,0.0,0.0,0.00018939393339678645,-5.411255551734939e-05,-4.235164736271502e-21,-2.7056277758674696e-05,0.0,0.0,7.730364814051427e-06,0.0,5.293955920339377e-22,2.329340604949326e-21,0.00014568764891009778,-0.0,-9.712509927339852e-05,-0.0,0.0,0.0,0.0,9.71250938164303e-06,0.0,0.0,0.00014204545004758984,-2.541098841762901e-21,-2.840909110091161e-05,-2.029220740951132e-05,0.0,0.0,5.293955920339377e-22,0.0,4.058441390952794e-06,6.352747104407253e-22,8.355615136679262e-05,-1.5246593050577406e-20,-5.929230630780102e-21,-3.856437615468167e-05,0.0,0.0,2.329340604949326e-21,0.0,6.352747104407253e-22,2.754598426690791e-06,8.0,11.0,16.0,0.0253957137465477,-0.00456773629412055,-0.003489540424197912,-0.002506684511899948,0.0002367424312978983,0.0002367424312978983,0.00016711230273358524,0.00013658216630574316,0.00012533421977423131,6.963012128835544e-05,-0.00456773629412055,0.002488779602572322,0.0002367424312978983,0.00016711230273358524,-0.0002367424312978983,-6.764069257769734e-05,-4.774637272930704e-05,-0.0,7.623296525288703e-21,8.470329472543003e-21,-0.003489540424197912,0.0002367424312978983,0.0013352915411815047,0.00012533421977423131,0.0,-4.734848334919661e-05,6.776263578034403e-21,-9.10547751118429e-05,-2.5066845410037786e-05,1.0164395367051604e-20,-0.002506684511899948,0.00016711230273358524,0.00012533421977423131,0.0006425865576602519,-0.0,-0.0,-2.228163975814823e-05,-0.0,-1.6711230273358524e-05,-2.9841481591574848e-05,0.0002367424312978983,-0.0002367424312978983,0.0,-0.0,3.382034628884867e-05,0.0,0.0,0.0,0.0,0.0,0.0002367424312978983,-6.764069257769734e-05,-4.734848334919661e-05,-0.0,0.0,1.3528138879337348e-05,0.0,0.0,0.0,0.0,0.00016711230273358524,-4.774637272930704e-05,6.776263578034403e-21,-2.228163975814823e-05,0.0,0.0,6.366182788042352e-06,0.0,-1.0587911840678754e-21,-1.4823076576950256e-21,0.00013658216630574316,-0.0,-9.10547751118429e-05,-0.0,0.0,0.0,0.0,9.105478056881111e-06,0.0,0.0,0.00012533421977423131,7.623296525288703e-21,-2.5066845410037786e-05,-1.6711230273358524e-05,0.0,0.0,-1.0587911840678754e-21,0.0,3.3422459182474995e-06,-1.376428539288238e-21,6.963012128835544e-05,8.470329472543003e-21,1.0164395367051604e-20,-2.9841481591574848e-05,0.0,0.0,-1.4823076576950256e-21,0.0,-1.376428539288238e-21,1.989432121263235e-06,8.0,12.0,3.0,0.09186762571334839,-0.019764957949519157,-0.01404151413589716,-0.04099893197417259,0.0011574074160307646,0.0010683761211112142,0.0034722222480922937,0.0005723443464376032,0.0024038462433964014,0.0052083334885537624,-0.019764957949519157,0.011434167623519897,0.0010683761211112142,0.0034722222480922937,-0.0011574074160307646,-0.0003052503161597997,-0.0009920635493472219,0.0,8.131516293641283e-20,-2.168404344971009e-19,-0.01404151413589716,0.0010683761211112142,0.005185786634683609,0.0024038462433964014,0.0,-0.00019425019854679704,0.0,-0.00034340660204179585,-0.0004370629321783781,6.179952383167375e-18,-0.04099893197417259,0.0034722222480922937,0.0024038462433964014,0.09308226406574249,-0.0,-3.027599949157136e-20,-0.0034722222480922937,1.5424168048577227e-18,-0.0024038462433964014,-0.03125,0.0011574074160307646,-0.0011574074160307646,0.0,-0.0,0.0001653439103392884,0.0,0.0,0.0,0.0,0.0,0.0010683761211112142,-0.0003052503161597997,-0.00019425019854679704,-3.027599949157136e-20,0.0,5.550005516852252e-05,1.783488440421166e-21,-3.611020259980044e-22,1.2347227664454227e-21,7.28379058262397e-21,0.0034722222480922937,-0.0009920635493472219,0.0,-0.0034722222480922937,0.0,1.783488440421166e-21,0.0009920635493472219,3.637316969810023e-22,-6.776263578034403e-20,2.168404344971009e-19,0.0005723443464376032,0.0,-0.00034340660204179585,1.5424168048577227e-18,0.0,-3.611020259980044e-22,3.637316969810023e-22,3.121878035017289e-05,-9.812876564694099e-20,-5.053073688133576e-19,0.0024038462433964014,8.131516293641283e-20,-0.0004370629321783781,-0.0024038462433964014,0.0,1.2347227664454227e-21,-6.776263578034403e-20,-9.812876564694099e-20,0.0004370629321783781,-6.505213034913027e-19,0.0052083334885537624,-2.168404344971009e-19,6.179952383167375e-18,-0.03125,0.0,7.28379058262397e-21,2.168404344971009e-19,-5.053073688133576e-19,-6.505213034913027e-19,0.015625,8.0,12.0,4.0,0.07479014247655869,-0.015344550833106041,-0.01089171227067709,-0.026161858811974525,0.0008680555620230734,0.0008012820617295802,0.0020833334419876337,0.0004292582452762872,0.0014423077227547765,0.0026041667442768812,-0.015344550833106041,0.008724435232579708,0.0008012820617295802,0.0020833334419876337,-0.0008680555620230734,-0.00022893772984389216,-0.0005952381179668009,-2.0328790734103208e-20,9.486769009248164e-20,3.2526065174565133e-19,-0.01089171227067709,0.0008012820617295802,0.003954899497330189,0.0014423077227547765,0.0,-0.00014568764891009778,0.0,-0.0002575549588073045,-0.00026223776512779295,2.3852447794681098e-18,-0.026161858811974525,0.0020833334419876337,0.0014423077227547765,0.035670407116413116,-0.0,-1.5469573155623e-20,-0.0013888889225199819,8.4565300319740875e-19,-0.000961538462433964,-0.0078125,0.0008680555620230734,-0.0008680555620230734,0.0,-0.0,0.00012400794366840273,0.0,0.0,0.0,0.0,0.0,0.0008012820617295802,-0.00022893772984389216,-0.00014568764891009778,-1.5469573155623e-20,0.0,4.162504046689719e-05,4.94894375379975e-22,4.452791997245725e-21,-1.0908212087392555e-21,6.190366864960405e-21,0.0020833334419876337,-0.0005952381179668009,0.0,-0.0013888889225199819,0.0,4.94894375379975e-22,0.00039682540227659047,2.2392712183380282e-21,-4.743384504624082e-20,-2.168404344971009e-19,0.0004292582452762872,-2.0328790734103208e-20,-0.0002575549588073045,8.4565300319740875e-19,0.0,4.452791997245725e-21,2.2392712183380282e-21,2.341408617212437e-05,-5.466114177796683e-20,-1.8320765853160692e-19,0.0014423077227547765,9.486769009248164e-20,-0.00026223776512779295,-0.000961538462433964,0.0,-1.0908212087392555e-21,-4.743384504624082e-20,-5.466114177796683e-20,0.00017482518160250038,-2.168404344971009e-19,0.0026041667442768812,3.2526065174565133e-19,2.3852447794681098e-18,-0.0078125,0.0,6.190366864960405e-21,-2.168404344971009e-19,-1.8320765853160692e-19,-2.168404344971009e-19,0.0026041667442768812,8.0,12.0,5.0,0.06317155063152313,-0.01255341898649931,-0.008905678056180477,-0.018185287714004517,0.0006944444612599909,0.0006410256610251963,0.0013888889225199819,0.00034340660204179585,0.000961538462433964,0.0014880952658131719,-0.01255341898649931,0.007058913353830576,0.0006410256610251963,0.0013888889225199819,-0.0006944444612599909,-0.00018315018678549677,-0.00039682540227659047,-2.371692252312041e-20,-1.3552527156068805e-20,1.3871281037746763e-34,-0.008905678056180477,0.0006410256610251963,0.003198884427547455,0.000961538462433964,0.0,-0.00011655011621769518,0.0,-0.00020604395831469446,-0.00017482518160250038,1.1955089398791352e-18,-0.018185287714004517,0.0013888889225199819,0.000961538462433964,0.01802121475338936,0.0,-6.179385315314553e-21,-0.0006944444612599909,5.285485590866834e-19,-0.000480769231216982,-0.0029761905316263437,0.0006944444612599909,-0.0006944444612599909,0.0,0.0,9.920635056914762e-05,0.0,0.0,0.0,0.0,-0.0,0.0006410256610251963,-0.00018315018678549677,-0.00011655011621769518,-6.179385315314553e-21,0.0,3.330003164592199e-05,0.0,3.3881317890172014e-21,1.6940658945086007e-21,-2.522051254309916e-35,0.0013888889225199819,-0.00039682540227659047,0.0,-0.0006944444612599909,0.0,0.0,0.00019841270113829523,0.0,0.0,-0.0,0.00034340660204179585,-2.371692252312041e-20,-0.00020604395831469446,5.285485590866834e-19,0.0,3.3881317890172014e-21,0.0,1.8731268937699497e-05,-2.541098841762901e-20,-9.506690491078767e-20,0.000961538462433964,-1.3552527156068805e-20,-0.00017482518160250038,-0.000480769231216982,0.0,1.6940658945086007e-21,0.0,-2.541098841762901e-20,8.741259080125019e-05,-7.488646384966702e-20,0.0014880952658131719,1.3871281037746763e-34,1.1955089398791352e-18,-0.0029761905316263437,-0.0,-2.522051254309916e-35,-0.0,-9.506690491078767e-20,-7.488646384966702e-20,0.0007440476329065859,8.0,12.0,6.0,0.05471929535269737,-0.010626526549458504,-0.007535866927355528,-0.013388087972998619,0.0005787037080153823,0.0005341880605556071,0.0009920635493472219,0.0002861721732188016,0.0006868132040835917,0.0009300595265813172,-0.010626526549458504,0.00592966889962554,0.0005341880605556071,0.0009920635493472219,-0.0005787037080153823,-0.00015262515807989985,-0.00028344671591185033,-4.235164736271502e-21,-6.098637220230962e-20,-2.95020996502244e-19,-0.007535866927355528,0.0005341880605556071,0.002686549676582217,0.0006868132040835917,0.0,-9.712509927339852e-05,-5.809644224894516e-20,-0.00017170330102089792,-0.00012487512140069157,4.311075101085493e-19,-0.013388087972998619,0.0009920635493472219,0.0006868132040835917,0.010470562614500523,0.0,3.217666343758788e-21,-0.00039682540227659047,3.9302328752599536e-19,-0.00027472528745420277,-0.0013950893189758062,0.0005787037080153823,-0.0005787037080153823,0.0,0.0,8.26719551696442e-05,0.0,0.0,0.0,0.0,-0.0,0.0005341880605556071,-0.00015262515807989985,-9.712509927339852e-05,3.217666343758788e-21,0.0,2.775002758426126e-05,3.76158192263132e-37,0.0,8.470329472543003e-22,9.457691486197372e-36,0.0009920635493472219,-0.00028344671591185033,-5.809644224894516e-20,-0.00039682540227659047,0.0,3.76158192263132e-37,0.00011337868636474013,-3.3101920919155616e-35,2.3238577868930345e-20,1.1800840377077644e-19,0.0002861721732188016,-4.235164736271502e-21,-0.00017170330102089792,3.9302328752599536e-19,0.0,0.0,-3.3101920919155616e-35,1.5609390175086446e-05,-2.0328790734103208e-20,-5.446541662787001e-20,0.0006868132040835917,-6.098637220230962e-20,-0.00012487512140069157,-0.00027472528745420277,0.0,8.470329472543003e-22,2.3238577868930345e-20,-2.0328790734103208e-20,4.995004928787239e-05,6.720482524179919e-20,0.0009300595265813172,-2.95020996502244e-19,4.311075101085493e-19,-0.0013950893189758062,-0.0,9.457691486197372e-36,1.1800840377077644e-19,-5.446541662787001e-20,6.720482524179919e-20,0.00027901786961592734,8.0,12.0,7.0,0.04828133061528206,-0.009214743971824646,-0.006532901432365179,-0.010273580439388752,0.0004960317746736109,0.0004578754596877843,0.0007440476329065859,0.0002452904300298542,0.000515109917614609,0.0006200397037900984,-0.009214743971824646,0.005112942773848772,0.0004578754596877843,0.0007440476329065859,-0.0004960317746736109,-0.00013082155783195049,-0.00021258502965793014,-5.082197683525802e-21,-0.0,3.1525639243944325e-35,-0.006532901432365179,0.0004578754596877843,0.002316136145964265,0.000515109917614609,0.0,-8.325008093379438e-05,0.0,-0.0001471742580179125,-9.365634468849748e-05,4.3847210589726205e-19,-0.010273580439388752,0.0007440476329065859,0.000515109917614609,0.006648733280599117,0.0,4.5552828255359565e-21,-0.00024801588733680546,2.168404344971009e-19,-0.00017170330102089792,-0.0007440476329065859,0.0004960317746736109,-0.0004960317746736109,0.0,0.0,7.086167897796258e-05,0.0,0.0,0.0,0.0,-0.0,0.0004578754596877843,-0.00013082155783195049,-8.325008093379438e-05,4.5552828255359565e-21,0.0,2.3785738449078053e-05,0.0,8.470329472543003e-22,-4.235164736271502e-22,-5.7319343753778404e-36,0.0007440476329065859,-0.00021258502965793014,0.0,-0.00024801588733680546,0.0,0.0,7.086167897796258e-05,0.0,0.0,-0.0,0.0002452904300298542,-5.082197683525802e-21,-0.0001471742580179125,2.168404344971009e-19,0.0,8.470329472543003e-22,0.0,1.3379477422859054e-05,-2.541098841762901e-21,-3.432971763683538e-20,0.000515109917614609,-0.0,-9.365634468849748e-05,-0.00017170330102089792,0.0,-4.235164736271502e-22,0.0,-2.541098841762901e-21,3.121878035017289e-05,-2.028175129911279e-20,0.0006200397037900984,3.1525639243944325e-35,4.3847210589726205e-19,-0.0007440476329065859,-0.0,-5.7319343753778404e-36,-0.0,-3.432971763683538e-20,-2.028175129911279e-20,0.00012400794366840273,8.0,12.0,8.0,0.04320881515741348,-0.008135238662362099,-0.0057663689367473125,-0.008135238662362099,0.0004340277810115367,0.0004006410308647901,0.0005787037080153823,0.0002146291226381436,0.0004006410308647901,0.0004340277810115367,-0.008135238662362099,0.004494492895901203,0.0004006410308647901,0.0005787037080153823,-0.0004340277810115367,-0.00011446886492194608,-0.0001653439103392884,-9.317362419797304e-21,-3.3881317890172014e-21,2.3118801251268062e-35,-0.0057663689367473125,0.0004006410308647901,0.0020357246976345778,0.0004006410308647901,0.0,-7.284382445504889e-05,0.0,-0.00012877747940365225,-7.284382445504889e-05,2.9664227050284796e-19,-0.008135238662362099,0.0005787037080153823,0.0004006410308647901,0.004494492895901203,0.0,-1.580378744457906e-21,-0.0001653439103392884,2.473336205982557e-19,-0.00011446886492194608,-0.0004340277810115367,0.0004340277810115367,-0.0004340277810115367,0.0,0.0,6.200397183420137e-05,0.0,0.0,0.0,0.0,-0.0,0.0004006410308647901,-0.00011446886492194608,-7.284382445504889e-05,-1.580378744457906e-21,0.0,2.0812520233448595e-05,0.0,2.541098841762901e-21,4.235164736271502e-22,-4.203418637605725e-36,0.0005787037080153823,-0.0001653439103392884,0.0,-0.0001653439103392884,0.0,0.0,4.724111931864172e-05,0.0,0.0,-0.0,0.0002146291226381436,-9.317362419797304e-21,-0.00012877747940365225,2.473336205982557e-19,0.0,2.541098841762901e-21,0.0,1.1707043086062185e-05,-1.5246593050577406e-20,-2.3106539163651568e-20,0.0004006410308647901,-3.3881317890172014e-21,-7.284382445504889e-05,-0.00011446886492194608,0.0,4.235164736271502e-22,0.0,-1.5246593050577406e-20,2.0812520233448595e-05,-1.2134380925809192e-20,0.0004340277810115367,2.3118801251268062e-35,2.9664227050284796e-19,-0.0004340277810115367,-0.0,-4.203418637605725e-36,-0.0,-2.3106539163651568e-20,-1.2134380925809192e-20,6.200397183420137e-05,8.0,12.0,9.0,0.03910641744732857,-0.007282763719558716,-0.005161273758858442,-0.006602887995541096,0.00038580247201025486,0.0003561253543011844,0.00046296295477077365,0.000190781443961896,0.00032051283051259816,0.00031565656536258757,-0.007282763719558716,0.004009801894426346,0.0003561253543011844,0.00046296295477077365,-0.00038580247201025486,-0.0001017501053865999,-0.00013227513409219682,-4.658681209898652e-21,0.0,1.1463868930121884e-36,-0.005161273758858442,0.0003561253543011844,0.0018160081235691905,0.00032051283051259816,0.0,-6.475006375694647e-05,0.0,-0.00011446886492194608,-5.827505810884759e-05,1.5307288720493192e-19,-0.006602887995541096,0.00046296295477077365,0.00032051283051259816,0.0031839110888540745,0.0,1.363936920543176e-21,-0.00011574073869269341,1.8295911660692887e-19,-8.012820762814954e-05,-0.00027056277031078935,0.00038580247201025486,-0.00038580247201025486,0.0,0.0,5.5114636779762805e-05,0.0,0.0,0.0,0.0,-0.0,0.0003561253543011844,-0.0001017501053865999,-6.475006375694647e-05,1.363936920543176e-21,0.0,1.850001899583731e-05,0.0,0.0,-4.235164736271502e-22,-2.08433976471166e-37,0.00046296295477077365,-0.00013227513409219682,0.0,-0.00011574073869269341,0.0,0.0,3.3068783523049206e-05,0.0,0.0,-0.0,0.000190781443961896,-4.658681209898652e-21,-0.00011446886492194608,1.8295911660692887e-19,0.0,0.0,0.0,1.0406260116724297e-05,-9.317362419797304e-21,-1.632462103064854e-20,0.00032051283051259816,0.0,-5.827505810884759e-05,-8.012820762814954e-05,0.0,-4.235164736271502e-22,0.0,-9.317362419797304e-21,1.4568764527211897e-05,6.624483609669808e-21,0.00031565656536258757,1.1463868930121884e-36,1.5307288720493192e-19,-0.00027056277031078935,-0.0,-2.08433976471166e-37,-0.0,-1.632462103064854e-20,6.624483609669808e-21,3.382034628884867e-05,8.0,12.0,10.0,0.03571879491209984,-0.00659236591309309,-0.004671370144933462,-0.005466928705573082,0.00034722223062999547,0.00032051283051259816,0.0003787878667935729,0.00017170330102089792,0.00026223776512779295,0.0002367424312978983,-0.00659236591309309,0.0036196443252265453,0.00032051283051259816,0.0003787878667935729,-0.00034722223062999547,-9.157509339274839e-05,-0.00010822511103469878,-8.470329472543003e-21,1.8634724839594607e-20,-1.3552527156068805e-20,-0.004671370144933462,0.00032051283051259816,0.0016391752287745476,0.00026223776512779295,0.0,-5.827505810884759e-05,2.371692252312041e-20,-0.00010302197915734723,-4.7679593990324065e-05,2.0667603913004928e-19,-0.005466928705573082,0.0003787878667935729,0.00026223776512779295,0.002339399652555585,-0.0,-1.860725622324738e-21,-8.417508070124313e-05,1.0615032378777983e-19,-5.827505810884759e-05,-0.00017755682347342372,0.00034722223062999547,-0.00034722223062999547,0.0,-0.0,4.960317528457381e-05,0.0,0.0,0.0,0.0,0.0,0.00032051283051259816,-9.157509339274839e-05,-5.827505810884759e-05,-1.860725622324738e-21,0.0,1.6650015822960995e-05,-3.8927439462510895e-23,2.117582368135751e-21,4.6986761801143185e-22,-1.6730823143365794e-23,0.0003787878667935729,-0.00010822511103469878,2.371692252312041e-20,-8.417508070124313e-05,0.0,-3.8927439462510895e-23,2.405002487648744e-05,0.0,-5.082197683525802e-21,8.470329472543003e-22,0.00017170330102089792,-8.470329472543003e-21,-0.00010302197915734723,1.0615032378777983e-19,0.0,2.117582368135751e-21,0.0,9.365634468849748e-06,0.0,-1.164670302474663e-20,0.00026223776512779295,1.8634724839594607e-20,-4.7679593990324065e-05,-5.827505810884759e-05,0.0,4.6986761801143185e-22,-5.082197683525802e-21,0.0,1.0595465028018225e-05,-1.6940658945086007e-20,0.0002367424312978983,-1.3552527156068805e-20,2.0667603913004928e-19,-0.00017755682347342372,0.0,-1.6730823143365794e-23,8.470329472543003e-22,-1.164670302474663e-20,-1.6940658945086007e-20,1.9728535335161723e-05,8.0,12.0,11.0,0.032873377203941345,-0.006021756213158369,-0.004266566596925259,-0.004601301625370979,0.00031565656536258757,0.00029137529782019556,0.00031565656536258757,0.00015609391266480088,0.00021853146608918905,0.0001821095502236858,-0.006021756213158369,0.0032987846061587334,0.00029137529782019556,0.00031565656536258757,-0.00031565656536258757,-8.325008093379438e-05,-9.018759010359645e-05,-9.317362419797304e-21,-6.776263578034403e-21,-3.049318610115481e-20,-0.004266566596925259,0.00029137529782019556,0.0014937713276594877,0.00021853146608918905,0.0,-5.297732423059642e-05,-6.776263578034403e-21,-9.365634468849748e-05,-3.973299317294732e-05,1.1011428314305904e-19,-0.004601301625370979,0.00031565656536258757,0.00021853146608918905,0.0017701048636808991,-0.0,7.3283002101111035e-22,-6.313131598290056e-05,1.3470297648362792e-19,-4.3706295400625095e-05,-0.00012140637409174815,0.00031565656536258757,-0.00031565656536258757,0.0,-0.0,4.5093795051798224e-05,0.0,0.0,0.0,0.0,0.0,0.00029137529782019556,-8.325008093379438e-05,-5.297732423059642e-05,7.3283002101111035e-22,0.0,1.5136378351598978e-05,-7.907615551316151e-23,8.470329472543003e-22,1.9366367353575209e-22,-1.0742187790191017e-22,0.00031565656536258757,-9.018759010359645e-05,-6.776263578034403e-21,-6.313131598290056e-05,0.0,-7.907615551316151e-23,1.803751729312353e-05,1.0587911840678754e-22,1.2705494208814505e-21,6.776263578034403e-21,0.00015609391266480088,-9.317362419797304e-21,-9.365634468849748e-05,1.3470297648362792e-19,0.0,8.470329472543003e-22,1.0587911840678754e-22,8.514212822774425e-06,-8.470329472543003e-21,-9.105604182983729e-21,0.00021853146608918905,-6.776263578034403e-21,-3.973299317294732e-05,-4.3706295400625095e-05,0.0,1.9366367353575209e-22,1.2705494208814505e-21,-8.470329472543003e-21,7.946598998387344e-06,-2.117582368135751e-21,0.0001821095502236858,-3.049318610115481e-20,1.1011428314305904e-19,-0.00012140637409174815,0.0,-1.0742187790191017e-22,6.776263578034403e-21,-9.105604182983729e-21,-2.117582368135751e-21,1.2140637409174815e-05,8.0,12.0,12.0,0.03044920787215233,-0.005542200990021229,-0.003926428966224194,-0.003926428966224194,0.00028935185400769114,0.00026709403027780354,0.00026709403027780354,0.0001430860866094008,0.0001849112450145185,0.0001430860866094008,-0.005542200990021229,0.003030245192348957,0.00026709403027780354,0.00026709403027780354,-0.00028935185400769114,-7.631257903994992e-05,-7.631257903994992e-05,3.3881317890172014e-21,-1.2705494208814505e-20,3.3881317890172014e-21,-0.003926428966224194,0.00026709403027780354,0.0013720921706408262,0.0001849112450145185,0.0,-4.856254963669926e-05,-1.1858461261560205e-20,-8.585165051044896e-05,-3.362022471264936e-05,7.115076756936123e-20,-0.003926428966224194,0.00026709403027780354,0.0001849112450145185,0.0013720921706408262,-0.0,2.2257291650333484e-21,-4.856254963669926e-05,1.1099547606467237e-19,-3.362022471264936e-05,-8.585165051044896e-05,0.00028935185400769114,-0.00028935185400769114,0.0,-0.0,4.13359775848221e-05,0.0,0.0,0.0,0.0,0.0,0.00026709403027780354,-7.631257903994992e-05,-4.856254963669926e-05,2.2257291650333484e-21,0.0,1.387501379213063e-05,-5.23056053364092e-23,-4.235164736271502e-22,-2.6629503109076243e-22,-1.1014582091852557e-22,0.00026709403027780354,-7.631257903994992e-05,-1.1858461261560205e-20,-4.856254963669926e-05,0.0,-5.23056053364092e-23,1.387501379213063e-05,-1.5881867761018131e-22,2.329340604949326e-21,-8.470329472543003e-22,0.0001430860866094008,3.3881317890172014e-21,-8.585165051044896e-05,1.1099547606467237e-19,0.0,-4.235164736271502e-22,-1.5881867761018131e-22,7.804695087543223e-06,-5.717472393966527e-21,-7.30565917006834e-21,0.0001849112450145185,-1.2705494208814505e-20,-3.362022471264936e-05,-3.362022471264936e-05,0.0,-2.6629503109076243e-22,2.329340604949326e-21,-5.717472393966527e-21,6.112768460297957e-06,1.2705494208814505e-21,0.0001430860866094008,3.3881317890172014e-21,7.115076756936123e-20,-8.585165051044896e-05,0.0,-1.1014582091852557e-22,-8.470329472543003e-22,-7.30565917006834e-21,1.2705494208814505e-21,7.804695087543223e-06,8.0,12.0,13.0,0.028358926996588707,-0.005133488215506077,-0.0036365878768265247,-0.0033900395501405,0.00026709403027780354,0.00024654832668602467,0.00022893772984389216,0.00013207945448812097,0.00015849535702727735,0.00011446886492194608,-0.005133488215506077,0.0028021810576319695,0.00024654832668602467,0.00022893772984389216,-0.00026709403027780354,-7.044238009257242e-05,-6.541077891597524e-05,-4.235164736271502e-21,-9.317362419797304e-21,1.0164395367051604e-20,-0.0036365878768265247,0.00024654832668602467,0.0012687633279711008,0.00015849535702727735,0.0,-4.482696749619208e-05,-1.0164395367051604e-20,-7.924767851363868e-05,-2.8817335987696424e-05,5.759824041329242e-20,-0.0033900395501405,0.00022893772984389216,0.00015849535702727735,0.0010853195562958717,-0.0,-1.6360962047638322e-21,-3.815628951997496e-05,8.702999869217685e-20,-2.6415891625219956e-05,-6.243756070034578e-05,0.00026709403027780354,-0.00026709403027780354,0.0,-0.0,3.815628951997496e-05,0.0,0.0,0.0,0.0,0.0,0.00024654832668602467,-7.044238009257242e-05,-4.482696749619208e-05,-1.6360962047638322e-21,0.0,1.2807705388695467e-05,5.751979290419008e-23,4.235164736271502e-22,3.982139557296907e-23,4.677752685899726e-23,0.00022893772984389216,-6.541077891597524e-05,-1.0164395367051604e-20,-3.815628951997496e-05,0.0,5.751979290419008e-23,1.0901796485995874e-05,1.0587911840678754e-22,1.4823076576950256e-21,-2.117582368135751e-21,0.00013207945448812097,-4.235164736271502e-21,-7.924767851363868e-05,8.702999869217685e-20,0.0,4.235164736271502e-22,1.0587911840678754e-22,7.204333996924106e-06,-4.0234064994579266e-21,-5.399835038746165e-21,0.00015849535702727735,-9.317362419797304e-21,-2.8817335987696424e-05,-2.6415891625219956e-05,0.0,3.982139557296907e-23,1.4823076576950256e-21,-4.0234064994579266e-21,4.802889634447638e-06,6.352747104407253e-22,0.00011446886492194608,1.0164395367051604e-20,5.759824041329242e-20,-6.243756070034578e-05,0.0,4.677752685899726e-23,-2.117582368135751e-21,-5.399835038746165e-21,6.352747104407253e-22,5.203130058362149e-06,8.0,12.0,14.0,0.026537835597991943,-0.0047809830866754055,-0.0033866430167108774,-0.002956635318696499,0.00024801588733680546,0.00022893772984389216,0.00019841270113829523,0.0001226452150149271,0.00013736264372710139,9.300595411332324e-05,-0.0047809830866754055,0.002606074558570981,0.00022893772984389216,0.00019841270113829523,-0.00024801588733680546,-6.541077891597524e-05,-5.668934318237007e-05,-5.929230630780102e-21,5.082197683525802e-21,-8.470329472543003e-21,-0.0033866430167108774,0.00022893772984389216,0.001179921324364841,0.00013736264372710139,0.0,-4.162504046689719e-05,4.235164736271502e-21,-7.358712900895625e-05,-2.4975024643936194e-05,6.691560283308973e-20,-0.002956635318696499,0.00019841270113829523,0.00013736264372710139,0.0008733937866054475,-0.0,1.2521761562012565e-21,-3.052503234357573e-05,5.993648613452377e-20,-2.1132713300175965e-05,-4.650297705666162e-05,0.00024801588733680546,-0.00024801588733680546,0.0,-0.0,3.543083948898129e-05,0.0,0.0,0.0,0.0,0.0,0.00022893772984389216,-6.541077891597524e-05,-4.162504046689719e-05,1.2521761562012565e-21,0.0,1.1892869224539027e-05,-4.3763437645997956e-23,8.470329472543003e-22,7.558135024173863e-23,-2.8767987009538985e-23,0.00019841270113829523,-5.668934318237007e-05,4.235164736271502e-21,-3.052503234357573e-05,0.0,-4.3763437645997956e-23,8.72143755259458e-06,-5.293955920339377e-23,-6.352747104407253e-22,1.2705494208814505e-21,0.0001226452150149271,-5.929230630780102e-21,-7.358712900895625e-05,5.993648613452377e-20,0.0,8.470329472543003e-22,-5.293955920339377e-23,6.689738711429527e-06,-2.117582368135751e-22,-4.4998625322884706e-21,0.00013736264372710139,5.082197683525802e-21,-2.4975024643936194e-05,-2.1132713300175965e-05,0.0,7.558135024173863e-23,-6.352747104407253e-22,-2.117582368135751e-22,3.84231134376023e-06,-2.752857078576476e-21,9.300595411332324e-05,-8.470329472543003e-21,6.691560283308973e-20,-4.650297705666162e-05,0.0,-2.8767987009538985e-23,1.2705494208814505e-21,-4.4998625322884706e-21,-2.752857078576476e-21,3.577152028810815e-06,8.0,12.0,15.0,0.024936966598033905,-0.0044738249853253365,-0.0031688797753304243,-0.0026014172472059727,0.00023148147738538682,0.0002136752154910937,0.00017361111531499773,0.00011446886492194608,0.0001201923078042455,7.659313996555284e-05,-0.0044738249853253365,0.0024356429930776358,0.0002136752154910937,0.00017361111531499773,-0.00023148147738538682,-6.105006468715146e-05,-4.960317528457381e-05,2.117582368135751e-21,2.541098841762901e-21,1.8634724839594607e-20,-0.0031688797753304243,0.0002136752154910937,0.0011027167784050107,0.0001201923078042455,-4.744542880599083e-20,-3.885003752657212e-05,3.3881317890172014e-21,-6.868132186355069e-05,-2.1853147700312547e-05,-7.792703114739563e-20,-0.0026014172472059727,0.00017361111531499773,0.0001201923078042455,0.0007133542676456273,-3.8549411510712724e-20,5.652900001553931e-22,-2.4801587642286904e-05,-1.258176737622218e-19,-1.7170330465887673e-05,-3.535068026394583e-05,0.00023148147738538682,-0.00023148147738538682,-4.744542880599083e-20,-3.8549411510712724e-20,3.3068783523049206e-05,1.355583749410615e-20,1.1014117459090269e-20,-7.52316384526264e-37,-8.21393269010891e-37,-4.137740114894452e-36,0.0002136752154910937,-6.105006468715146e-05,-3.885003752657212e-05,5.652900001553931e-22,1.355583749410615e-20,1.1100010851805564e-05,-1.965375474560138e-23,-4.235164736271502e-22,-1.1948556800488232e-22,8.338897167797513e-24,0.00017361111531499773,-4.960317528457381e-05,3.3881317890172014e-21,-2.4801587642286904e-05,1.1014117459090269e-20,-1.965375474560138e-23,7.086167897796258e-06,5.293955920339377e-23,-4.235164736271502e-22,-2.541098841762901e-21,0.00011446886492194608,2.117582368135751e-21,-6.868132186355069e-05,-1.258176737622218e-19,-7.52316384526264e-37,-4.235164736271502e-22,5.293955920339377e-23,6.243756160984049e-06,4.0234064994579266e-21,7.358598729271734e-21,0.0001201923078042455,2.541098841762901e-21,-2.1853147700312547e-05,-1.7170330465887673e-05,-8.21393269010891e-37,-1.1948556800488232e-22,-4.235164736271502e-22,4.0234064994579266e-21,3.1218780804920243e-06,-2.117582368135751e-22,7.659313996555284e-05,1.8634724839594607e-20,-7.792703114739563e-20,-3.535068026394583e-05,-4.137740114894452e-36,8.338897167797513e-24,-2.541098841762901e-21,7.358598729271734e-21,-2.117582368135751e-22,2.5250485577998916e-06,8.0,12.0,16.0,0.023518582805991173,-0.004203784745186567,-0.002977452939376235,-0.0023066317662596703,0.00021701389050576836,0.00020032051543239504,0.00015318627993110567,0.0001073145613190718,0.00010605203715385869,6.38276178506203e-05,-0.004203784745186567,0.0022861508186906576,0.00020032051543239504,0.00015318627993110567,-0.00021701389050576836,-5.723443246097304e-05,-4.376750803203322e-05,-9.027796614315168e-36,-3.8116482626443515e-21,6.776263578034403e-21,-0.002977452939376235,0.00020032051543239504,0.0010350020602345467,0.00010605203715385869,0.0,-3.6421912227524444e-05,-3.3881317890172014e-21,-6.438873970182613e-05,-1.9282188077340834e-05,2.879912020664621e-20,-0.0023066317662596703,0.00015318627993110567,0.00010605203715385869,0.0005902160773985088,-0.0,-0.0,-2.0424837202881463e-05,6.44166126543846e-20,-1.4140271559881512e-05,-2.735469206527341e-05,0.00021701389050576836,-0.00021701389050576836,0.0,-0.0,3.100198591710068e-05,0.0,0.0,0.0,0.0,0.0,0.00020032051543239504,-5.723443246097304e-05,-3.6421912227524444e-05,-0.0,0.0,1.0406260116724297e-05,0.0,0.0,0.0,0.0,0.00015318627993110567,-4.376750803203322e-05,-3.3881317890172014e-21,-2.0424837202881463e-05,0.0,0.0,5.835667707287939e-06,7.52316384526264e-37,5.293955920339377e-22,-1.0587911840678754e-21,0.0001073145613190718,-9.027796614315168e-36,-6.438873970182613e-05,6.44166126543846e-20,0.0,0.0,7.52316384526264e-37,5.853521543031093e-06,-3.503905570825514e-21,-3.009675252244667e-21,0.00010605203715385869,-3.8116482626443515e-21,-1.9282188077340834e-05,-1.4140271559881512e-05,0.0,0.0,5.293955920339377e-22,-3.503905570825514e-21,2.5709584861033363e-06,6.352747104407253e-22,6.38276178506203e-05,6.776263578034403e-21,2.879912020664621e-20,-2.735469206527341e-05,0.0,0.0,-1.0587911840678754e-21,-3.009675252244667e-21,6.352747104407253e-22,1.8236461301057716e-06,8.0,13.0,3.0,0.08569902181625366,-0.018315019086003304,-0.012133699841797352,-0.03800366446375847,0.0010683761211112142,0.0009157509193755686,0.0032051282469183207,0.0004578754596877843,0.002060439670458436,0.004807692486792803,-0.018315019086003304,0.010574743151664734,0.0009157509193755686,0.0032051282469183207,-0.0010683761211112142,-0.00026164311566390097,-0.0009157509193755686,5.421010862427522e-20,5.421010862427522e-20,0.0,-0.012133699841797352,0.0009157509193755686,0.004103535320609808,0.002060439670458436,0.0,-0.00015262515807989985,1.0842021724855044e-19,-0.00024975024280138314,-0.00034340660204179585,1.0842021724855044e-19,-0.03800366446375847,0.0032051282469183207,0.002060439670458436,0.08608058840036392,-0.0,-1.8665752190501015e-20,-0.0032051282469183207,-1.64724941054266e-20,-0.002060439670458436,-0.028846153989434242,0.0010683761211112142,-0.0010683761211112142,0.0,-0.0,0.00015262515807989985,0.0,0.0,0.0,0.0,0.0,0.0009157509193755686,-0.00026164311566390097,-0.00015262515807989985,-1.8665752190501015e-20,0.0,4.3607185943983495e-05,-4.0475112614439964e-22,-8.416259002345885e-21,1.6758781194262168e-21,3.623053506362962e-21,0.0032051282469183207,-0.0009157509193755686,1.0842021724855044e-19,-0.0032051282469183207,0.0,-4.0475112614439964e-22,0.0009157509193755686,-6.162224826457384e-24,-9.486769009248164e-20,0.0,0.0004578754596877843,5.421010862427522e-20,-0.00024975024280138314,-1.64724941054266e-20,0.0,-8.416259002345885e-21,-6.162224826457384e-24,2.0812520233448595e-05,9.144431184675787e-22,3.716945776029833e-21,0.002060439670458436,5.421010862427522e-20,-0.00034340660204179585,-0.002060439670458436,0.0,1.6758781194262168e-21,-9.486769009248164e-20,9.144431184675787e-22,0.00034340660204179585,-1.0842021724855044e-19,0.004807692486792803,0.0,1.0842021724855044e-19,-0.028846153989434242,0.0,3.623053506362962e-21,0.0,3.716945776029833e-21,-1.0842021724855044e-19,0.014423076994717121,8.0,13.0,4.0,0.06973443180322647,-0.014217033050954342,-0.009409341029822826,-0.024244505912065506,0.0008012820617295802,0.0006868132040835917,0.001923076924867928,0.00034340660204179585,0.0012362637789919972,0.0024038462433964014,-0.014217033050954342,0.008068419992923737,0.0006868132040835917,0.001923076924867928,-0.0008012820617295802,-0.00019623234402388334,-0.0005494505749084055,5.082197683525802e-20,0.0,-3.7947076036992655e-19,-0.009409341029822826,0.0006868132040835917,0.0031291625928133726,0.0012362637789919972,0.0,-0.00011446886492194608,-2.710505431213761e-20,-0.00018731268937699497,-0.00020604395831469446,1.0842021724855044e-19,-0.024244505912065506,0.001923076924867928,0.0012362637789919972,0.032989926636219025,-0.0,-7.153550025825215e-21,-0.0012820513220503926,3.134347284089677e-20,-0.0008241758332587779,-0.0072115384973585606,0.0008012820617295802,-0.0008012820617295802,0.0,-0.0,0.00011446886492194608,0.0,0.0,0.0,0.0,0.0,0.0006868132040835917,-0.00019623234402388334,-0.00011446886492194608,-7.153550025825215e-21,0.0,3.270538945798762e-05,5.203693067168796e-22,-8.11833504133328e-21,1.1815560153013253e-21,8.481882940034253e-22,0.001923076924867928,-0.0005494505749084055,-2.710505431213761e-20,-0.0012820513220503926,0.0,5.203693067168796e-22,0.00036630037357099354,1.734523377028442e-22,6.776263578034403e-21,2.710505431213761e-19,0.00034340660204179585,5.082197683525802e-20,-0.00018731268937699497,3.134347284089677e-20,0.0,-8.11833504133328e-21,1.734523377028442e-22,1.5609390175086446e-05,5.013865214007463e-21,-1.872984414768967e-20,0.0012362637789919972,0.0,-0.00020604395831469446,-0.0008241758332587779,0.0,1.1815560153013253e-21,6.776263578034403e-21,5.013865214007463e-21,0.00013736264372710139,5.421010862427522e-20,0.0024038462433964014,-3.7947076036992655e-19,1.0842021724855044e-19,-0.0072115384973585606,0.0,8.481882940034253e-22,2.710505431213761e-19,-1.872984414768967e-20,5.421010862427522e-20,0.0024038462433964014,8.0,13.0,5.0,0.058882784098386765,-0.011630036868155003,-0.007692307699471712,-0.01684981770813465,0.0006410256610251963,0.0005494505749084055,0.0012820513220503926,0.00027472528745420277,0.0008241758332587779,0.0013736264081671834,-0.011630036868155003,0.006527995690703392,0.0005494505749084055,0.0012820513220503926,-0.0006410256610251963,-0.00015698587230872363,-0.00036630037357099354,3.5575383784680614e-20,3.3881317890172014e-21,-0.0,-0.007692307699471712,0.0005494505749084055,0.002530802506953478,0.0008241758332587779,0.0,-9.157509339274839e-05,0.0,-0.00014985015150159597,-0.00013736264372710139,-0.0,-0.01684981770813465,0.0012820513220503926,0.0008241758332587779,0.01666666753590107,0.0,1.5461167861610531e-21,-0.0006410256610251963,-1.3552527156068805e-20,-0.00041208791662938893,-0.002747252816334367,0.0006410256610251963,-0.0006410256610251963,0.0,0.0,9.157509339274839e-05,0.0,0.0,0.0,0.0,-0.0,0.0005494505749084055,-0.00015698587230872363,-9.157509339274839e-05,1.5461167861610531e-21,0.0,2.616431265778374e-05,0.0,-5.082197683525802e-21,0.0,-0.0,0.0012820513220503926,-0.00036630037357099354,0.0,-0.0006410256610251963,0.0,0.0,0.00018315018678549677,0.0,0.0,-0.0,0.00027472528745420277,3.5575383784680614e-20,-0.00014985015150159597,-1.3552527156068805e-20,0.0,-5.082197683525802e-21,0.0,1.2487512321968097e-05,1.6940658945086007e-21,-0.0,0.0008241758332587779,3.3881317890172014e-21,-0.00013736264372710139,-0.00041208791662938893,0.0,0.0,0.0,1.6940658945086007e-21,6.868132186355069e-05,-0.0,0.0013736264081671834,-0.0,-0.0,-0.002747252816334367,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006868132040835917,8.0,13.0,6.0,0.05099315196275711,-0.009844322688877583,-0.006508372724056244,-0.01240351889282465,0.0005341880605556071,0.0004578754596877843,0.0009157509193755686,0.00022893772984389216,0.00058869703207165,0.0008585164905525744,-0.009844322688877583,0.005483603570610285,0.0004578754596877843,0.0009157509193755686,-0.0005341880605556071,-0.00013082155783195049,-0.00026164311566390097,3.006966962752766e-20,0.0,-0.0,-0.006508372724056244,0.0004578754596877843,0.002125354716554284,0.00058869703207165,0.0,-7.631257903994992e-05,0.0,-0.00012487512140069157,-9.811617201194167e-05,-0.0,-0.01240351889282465,0.0009157509193755686,0.00058869703207165,0.009683248586952686,0.0,4.251278703319143e-22,-0.00036630037357099354,0.0,-0.00023547880118712783,-0.001287774764932692,0.0005341880605556071,-0.0005341880605556071,0.0,0.0,7.631257903994992e-05,0.0,0.0,0.0,0.0,-0.0,0.0004578754596877843,-0.00013082155783195049,-7.631257903994992e-05,4.251278703319143e-22,0.0,2.1803592971991748e-05,0.0,-5.082197683525802e-21,0.0,-0.0,0.0009157509193755686,-0.00026164311566390097,0.0,-0.00036630037357099354,0.0,0.0,0.00010465725063113496,0.0,0.0,-0.0,0.00022893772984389216,3.006966962752766e-20,-0.00012487512140069157,0.0,0.0,-5.082197683525802e-21,0.0,1.0406260116724297e-05,0.0,-0.0,0.00058869703207165,0.0,-9.811617201194167e-05,-0.00023547880118712783,0.0,0.0,0.0,0.0,3.924646807718091e-05,-0.0,0.0008585164905525744,-0.0,-0.0,-0.001287774764932692,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002575549588073045,8.0,13.0,7.0,0.044986262917518616,-0.008536106906831264,-0.005641679745167494,-0.009517268277704716,0.0004578754596877843,0.0003924646880477667,0.0006868132040835917,0.00019623234402388334,0.0004415227740537375,0.0005723443464376032,-0.008536106906831264,0.004728265106678009,0.0003924646880477667,0.0006868132040835917,-0.0004578754596877843,-0.00011213276593480259,-0.00019623234402388334,5.175371307723775e-19,2.710505431213761e-19,1.6551633835050786e-18,-0.005641679745167494,0.0003924646880477667,0.0018322451505810022,0.0004415227740537375,9.023085679051204e-19,-6.541077891597524e-05,2.501704365090063e-19,-0.00010703581938287243,-7.358712900895625e-05,2.833749138629568e-19,-0.009517268277704716,0.0006868132040835917,0.0004415227740537375,0.006148613523691893,1.574748813460583e-18,2.2285321036974884e-19,-0.00022893772984389216,-1.0164395367051604e-19,-0.0001471742580179125,-0.0006868132040835917,0.0004578754596877843,-0.0004578754596877843,9.023085679051204e-19,1.574748813460583e-18,6.541077891597524e-05,-5.257864996237923e-20,-9.201263743416365e-20,-5.0174200711575234e-20,-4.3572333302296005e-20,-1.694479614061848e-19,0.0003924646880477667,-0.00011213276593480259,-6.541077891597524e-05,2.2285321036974884e-19,-5.257864996237923e-20,1.8688793716137297e-05,-5.9347228192417704e-21,-2.0328790734103208e-20,2.117582368135751e-21,-4.218908375412847e-20,0.0006868132040835917,-0.00019623234402388334,2.501704365090063e-19,-0.00022893772984389216,-9.201263743416365e-20,-5.9347228192417704e-21,6.541077891597524e-05,-2.056010403758542e-20,-6.675118533826704e-21,-8.810229618468406e-20,0.00019623234402388334,5.175371307723775e-19,-0.00010703581938287243,-1.0164395367051604e-19,-5.0174200711575234e-20,-2.0328790734103208e-20,-2.056010403758542e-20,8.91965191840427e-06,1.6093625997831706e-20,9.242615665460627e-21,0.0004415227740537375,2.710505431213761e-19,-7.358712900895625e-05,-0.0001471742580179125,-4.3572333302296005e-20,2.117582368135751e-21,-6.675118533826704e-21,1.6093625997831706e-20,2.4529043002985418e-05,-9.431159853864726e-20,0.0005723443464376032,1.6551633835050786e-18,2.833749138629568e-19,-0.0006868132040835917,-1.694479614061848e-19,-4.218908375412847e-20,-8.810229618468406e-20,9.242615665460627e-21,-9.431159853864726e-20,0.00011446886492194608,8.0,13.0,8.0,0.04025488346815109,-0.007535866927355528,-0.0049793957732617855,-0.007535866927355528,0.0004006410308647901,0.00034340660204179585,0.0005341880605556071,0.00017170330102089792,0.00034340660204179585,0.0004006410308647901,-0.007535866927355528,0.004156310111284256,0.00034340660204179585,0.0005341880605556071,-0.0004006410308647901,-9.811617201194167e-05,-0.00015262515807989985,2.202285662861181e-20,-1.6940658945086007e-21,-0.0,-0.0049793957732617855,0.00034340660204179585,0.0016103688394650817,0.00034340660204179585,0.0,-5.723443246097304e-05,0.0,-9.365634468849748e-05,-5.723443246097304e-05,-0.0,-0.007535866927355528,0.0005341880605556071,0.00034340660204179585,0.004156310111284256,0.0,-1.0736893208230663e-21,-0.00015262515807989985,0.0,-9.811617201194167e-05,-0.0004006410308647901,0.0004006410308647901,-0.0004006410308647901,0.0,0.0,5.723443246097304e-05,0.0,0.0,0.0,0.0,-0.0,0.00034340660204179585,-9.811617201194167e-05,-5.723443246097304e-05,-1.0736893208230663e-21,0.0,1.635269472899381e-05,0.0,-3.3881317890172014e-21,0.0,-0.0,0.0005341880605556071,-0.00015262515807989985,0.0,-0.00015262515807989985,0.0,0.0,4.3607185943983495e-05,0.0,0.0,-0.0,0.00017170330102089792,2.202285662861181e-20,-9.365634468849748e-05,0.0,0.0,-3.3881317890172014e-21,0.0,7.804695087543223e-06,0.0,-0.0,0.00034340660204179585,-1.6940658945086007e-21,-5.723443246097304e-05,-9.811617201194167e-05,0.0,0.0,0.0,0.0,1.635269472899381e-05,-0.0,0.0004006410308647901,-0.0,-0.0,-0.0004006410308647901,-0.0,-0.0,-0.0,-0.0,-0.0,5.723443246097304e-05,8.0,13.0,9.0,0.03642931208014488,-0.0067460318095982075,-0.004456654656678438,-0.006116106174886227,0.0003561253543011844,0.0003052503161597997,0.0004273504309821874,0.00015262515807989985,0.00027472528745420277,0.00029137529782019556,-0.0067460318095982075,0.0037080643232911825,0.0003052503161597997,0.0004273504309821874,-0.0003561253543011844,-8.721437188796699e-05,-0.00012210012937430292,1.088437337221776e-19,-3.5405977195229754e-19,-9.226268120864136e-19,-0.004456654656678438,0.0003052503161597997,0.001436526421457529,0.00027472528745420277,4.675715960638416e-19,-5.087505269329995e-05,-5.884993528608649e-19,-8.325008093379438e-05,-4.578754669637419e-05,-9.631765498822584e-19,-0.006116106174886227,0.0004273504309821874,0.00027472528745420277,0.0029442778322845697,-5.200862946251128e-19,-8.030047598863052e-19,-0.00010683760774554685,-6.708500942254059e-19,-6.868132186355069e-05,-0.00024975024280138314,0.0003561253543011844,-0.0003561253543011844,4.675715960638416e-19,-5.200862946251128e-19,5.087505269329995e-05,-1.0767796158927762e-20,1.1277219862812519e-20,-3.902437797220582e-20,6.777918747053076e-21,4.313220859293244e-20,0.0003052503161597997,-8.721437188796699e-05,-5.087505269329995e-05,-8.030047598863052e-19,-1.0767796158927762e-20,1.4535728951159399e-05,3.8730961499296775e-20,8.046812998915853e-21,2.6469779601696886e-20,5.709044199006436e-20,0.0004273504309821874,-0.00012210012937430292,-5.884993528608649e-19,-0.00010683760774554685,1.1277219862812519e-20,3.8730961499296775e-20,3.052503234357573e-05,2.5351174535170903e-20,3.1372078426689475e-20,6.337793876130796e-20,0.00015262515807989985,1.088437337221776e-19,-8.325008093379438e-05,-6.708500942254059e-19,-3.902437797220582e-20,8.046812998915853e-21,2.5351174535170903e-20,6.937506896065315e-06,1.8634724839594607e-20,5.281494896775663e-20,0.00027472528745420277,-3.5405977195229754e-19,-4.578754669637419e-05,-6.868132186355069e-05,6.777918747053076e-21,2.6469779601696886e-20,3.1372078426689475e-20,1.8634724839594607e-20,1.1446886674093548e-05,2.777384922443234e-20,0.00029137529782019556,-9.226268120864136e-19,-9.631765498822584e-19,-0.00024975024280138314,4.313220859293244e-20,5.709044199006436e-20,6.337793876130796e-20,5.281494896775663e-20,2.777384922443234e-20,3.121878035017289e-05,8.0,13.0,10.0,0.03327089548110962,-0.006106393411755562,-0.004033466335386038,-0.005063686519861221,0.00032051283051259816,0.00027472528745420277,0.00034965036320500076,0.00013736264372710139,0.00022477522725239396,0.00021853146608918905,-0.006106393411755562,0.0033472480718046427,0.00027472528745420277,0.00034965036320500076,-0.00032051283051259816,-7.849293615436181e-05,-9.990009857574478e-05,1.6093625997831706e-20,0.0,-0.0,-0.004033466335386038,0.00027472528745420277,0.0012966200010851026,0.00022477522725239396,0.0,-4.578754669637419e-05,0.0,-7.492507575079799e-05,-3.7462537875398993e-05,-0.0,-0.005063686519861221,0.00034965036320500076,0.00022477522725239396,0.0021632881835103035,0.0,6.853895670018016e-22,-7.770007505314425e-05,5.082197683525802e-21,-4.995004928787239e-05,-0.0001638985995668918,0.00032051283051259816,-0.00032051283051259816,0.0,0.0,4.578754669637419e-05,0.0,0.0,0.0,0.0,-0.0,0.00027472528745420277,-7.849293615436181e-05,-4.578754669637419e-05,6.853895670018016e-22,0.0,1.308215632889187e-05,0.0,-2.964615315390051e-21,-2.117582368135751e-22,-0.0,0.00034965036320500076,-9.990009857574478e-05,0.0,-7.770007505314425e-05,0.0,0.0,2.2200021703611128e-05,0.0,0.0,-0.0,0.00013736264372710139,1.6093625997831706e-20,-7.492507575079799e-05,5.082197683525802e-21,0.0,-2.964615315390051e-21,0.0,6.243756160984049e-06,-8.470329472543003e-22,-0.0,0.00022477522725239396,0.0,-3.7462537875398993e-05,-4.995004928787239e-05,0.0,-2.117582368135751e-22,0.0,-8.470329472543003e-22,8.325007911480498e-06,-0.0,0.00021853146608918905,-0.0,-0.0,-0.0001638985995668918,-0.0,-0.0,-0.0,-0.0,-0.0,1.8210956113762222e-05,8.0,13.0,11.0,0.030618419870734215,-0.005577755626291037,-0.0036838161759078503,-0.004261763766407967,0.00029137529782019556,0.00024975024280138314,0.00029137529782019556,0.00012487512140069157,0.00018731268937699497,0.00016810113447718322,-0.005577755626291037,0.0030505210161209106,0.00024975024280138314,0.00029137529782019556,-0.00029137529782019556,-7.135721534723416e-05,-8.325008093379438e-05,1.4399560103323106e-20,-5.082197683525802e-21,2.0328790734103208e-20,-0.0036838161759078503,0.00024975024280138314,0.0011815836187452078,0.00018731268937699497,0.0,-4.162504046689719e-05,-5.929230630780102e-21,-6.81137025821954e-05,-3.121878035017289e-05,-1.5246593050577406e-20,-0.004261763766407967,0.00029137529782019556,0.00018731268937699497,0.00163682468701154,-0.0,1.419719105308654e-21,-5.827505810884759e-05,-1.6115521040515395e-21,-3.7462537875398993e-05,-0.00011206742055946961,0.00029137529782019556,-0.00029137529782019556,0.0,-0.0,4.162504046689719e-05,0.0,0.0,0.0,0.0,0.0,0.00024975024280138314,-7.135721534723416e-05,-4.162504046689719e-05,1.419719105308654e-21,0.0,1.1892869224539027e-05,-5.0545555682665253e-23,-2.964615315390051e-21,-3.2493571961062466e-23,-4.022183714567736e-23,0.00029137529782019556,-8.325008093379438e-05,-5.929230630780102e-21,-5.827505810884759e-05,0.0,-5.0545555682665253e-23,1.6650015822960995e-05,1.5881867761018131e-22,1.0587911840678754e-21,-4.235164736271502e-21,0.00012487512140069157,1.4399560103323106e-20,-6.81137025821954e-05,-1.6115521040515395e-21,0.0,-2.964615315390051e-21,1.5881867761018131e-22,5.676141881849617e-06,-2.117582368135751e-22,3.1763735522036263e-22,0.00018731268937699497,-5.082197683525802e-21,-3.121878035017289e-05,-3.7462537875398993e-05,0.0,-3.2493571961062466e-23,1.0587911840678754e-21,-2.117582368135751e-22,6.243756160984049e-06,2.964615315390051e-21,0.00016810113447718322,2.0328790734103208e-20,-1.5246593050577406e-20,-0.00011206742055946961,0.0,-4.022183714567736e-23,-4.235164736271502e-21,3.1763735522036263e-22,2.964615315390051e-21,1.120674187404802e-05,8.0,13.0,12.0,0.028358926996588707,-0.005133488215506077,-0.0033900395501405,-0.0036365878768265247,0.00026709403027780354,0.00022893772984389216,0.00024654832668602467,0.00011446886492194608,0.00015849535702727735,0.00013207945448812097,-0.005133488215506077,0.0028021810576319695,0.00022893772984389216,0.00024654832668602467,-0.00026709403027780354,-6.541077891597524e-05,-7.044238009257242e-05,1.2705494208814505e-20,-5.082197683525802e-21,-6.776263578034403e-21,-0.0033900395501405,0.00022893772984389216,0.0010853195562958717,0.00015849535702727735,0.0,-3.815628951997496e-05,-5.929230630780102e-21,-6.243756070034578e-05,-2.6415891625219956e-05,-1.1858461261560205e-20,-0.0036365878768265247,0.00024654832668602467,0.00015849535702727735,0.0012687633279711008,-0.0,-0.0,-4.482696749619208e-05,-1.0155069794217992e-21,-2.8817335987696424e-05,-7.924767851363868e-05,0.00026709403027780354,-0.00026709403027780354,0.0,-0.0,3.815628951997496e-05,0.0,0.0,0.0,0.0,0.0,0.00022893772984389216,-6.541077891597524e-05,-3.815628951997496e-05,-0.0,0.0,1.0901796485995874e-05,0.0,-2.541098841762901e-21,-1.0587911840678754e-22,7.869823118613185e-24,0.00024654832668602467,-7.044238009257242e-05,-5.929230630780102e-21,-4.482696749619208e-05,0.0,0.0,1.2807705388695467e-05,5.293955920339377e-23,1.164670302474663e-21,1.2705494208814505e-21,0.00011446886492194608,1.2705494208814505e-20,-6.243756070034578e-05,-1.0155069794217992e-21,0.0,-2.541098841762901e-21,5.293955920339377e-23,5.203130058362149e-06,0.0,1.0587911840678754e-22,0.00015849535702727735,-5.082197683525802e-21,-2.6415891625219956e-05,-2.8817335987696424e-05,0.0,-1.0587911840678754e-22,1.164670302474663e-21,0.0,4.802889634447638e-06,2.117582368135751e-21,0.00013207945448812097,-6.776263578034403e-21,-1.1858461261560205e-20,-7.924767851363868e-05,0.0,7.869823118613185e-24,1.2705494208814505e-21,1.0587911840678754e-22,2.117582368135751e-21,7.204333996924106e-06,8.0,13.0,13.0,0.026410860940814018,-0.004754860419780016,-0.0031397175043821335,-0.0031397175043821335,0.00024654832668602467,0.00021132713300175965,0.00021132713300175965,0.00010566356650087982,0.00013585315900854766,0.00010566356650087982,-0.004754860419780016,0.002591273281723261,0.00021132713300175965,0.00021132713300175965,-0.00024654832668602467,-6.037918137735687e-05,-6.037918137735687e-05,1.3129010682441655e-20,-1.6940658945086007e-21,1.0164395367051604e-20,-0.0031397175043821335,0.00021132713300175965,0.0010035751620307565,0.00013585315900854766,0.0,-3.522119004628621e-05,-1.6940658945086007e-21,-5.763467197539285e-05,-2.2642192561761476e-05,-1.6940658945086007e-21,-0.0031397175043821335,0.00021132713300175965,0.00013585315900854766,0.0010035751620307565,-0.0,-0.0,-3.522119004628621e-05,-9.979182842435019e-22,-2.2642192561761476e-05,-5.763467197539285e-05,0.00024654832668602467,-0.00024654832668602467,0.0,-0.0,3.522119004628621e-05,0.0,0.0,0.0,0.0,0.0,0.00021132713300175965,-6.037918137735687e-05,-3.522119004628621e-05,-0.0,0.0,1.0063196896226145e-05,5.293955920339377e-23,-2.117582368135751e-21,-1.0587911840678754e-22,1.8055184919156174e-23,0.00021132713300175965,-6.037918137735687e-05,-1.6940658945086007e-21,-3.522119004628621e-05,0.0,5.293955920339377e-23,1.0063196896226145e-05,1.0587911840678754e-22,2.117582368135751e-22,-1.6940658945086007e-21,0.00010566356650087982,1.3129010682441655e-20,-5.763467197539285e-05,-9.979182842435019e-22,0.0,-2.117582368135751e-21,1.0587911840678754e-22,4.802889634447638e-06,0.0,5.293955920339377e-23,0.00013585315900854766,-1.6940658945086007e-21,-2.2642192561761476e-05,-2.2642192561761476e-05,0.0,-1.0587911840678754e-22,2.117582368135751e-22,0.0,3.7736988360848045e-06,2.117582368135751e-22,0.00010566356650087982,1.0164395367051604e-20,-1.6940658945086007e-21,-5.763467197539285e-05,0.0,1.8055184919156174e-23,-1.6940658945086007e-21,5.293955920339377e-23,2.117582368135751e-22,4.802889634447638e-06,8.0,13.0,14.0,0.024713827297091484,-0.004428309854120016,-0.0029238618444651365,-0.0027382588014006615,0.00022893772984389216,0.00019623234402388334,0.00018315018678549677,9.811617201194167e-05,0.00011773940059356391,8.585165051044896e-05,-0.004428309854120016,0.0024099200963974,0.00019623234402388334,0.00018315018678549677,-0.00022893772984389216,-5.6066382967401296e-05,-5.232862531556748e-05,2.56650983018053e-19,8.046812998915853e-20,1.7279472123987727e-19,-0.0029238618444651365,0.00019623234402388334,0.0009332929039373994,0.00011773940059356391,4.54059083769905e-19,-3.270538945798762e-05,5.929230630780102e-20,-5.3517909691436216e-05,-1.9623234038590454e-05,-1.6940658945086007e-21,-0.0027382588014006615,0.00018315018678549677,0.00011773940059356391,0.0008076030062511563,3.734182539784819e-19,5.200449614438793e-20,-2.8176951673231088e-05,-3.529693411097995e-20,-1.8113754777004942e-05,-4.292582525522448e-05,0.00022893772984389216,-0.00022893772984389216,4.54059083769905e-19,3.734182539784819e-19,3.270538945798762e-05,-2.6289324981189614e-20,-2.0563750417746615e-20,-2.5087100355787617e-20,-1.050204903906733e-20,-1.9062895819754502e-20,0.00019623234402388334,-5.6066382967401296e-05,-3.270538945798762e-05,5.200449614438793e-20,-2.6289324981189614e-20,9.344396858068649e-06,-4.644577235193965e-22,-9.740878893424454e-21,-1.0605314743336654e-21,-4.220161586352608e-21,0.00018315018678549677,-5.232862531556748e-05,5.929230630780102e-20,-2.8176951673231088e-05,-2.0563750417746615e-20,-4.644577235193965e-22,8.050557880778797e-06,-4.7645603283054394e-21,-1.4823076576950256e-21,-3.5998900258307764e-21,9.811617201194167e-05,2.56650983018053e-19,-5.3517909691436216e-05,-3.529693411097995e-20,-2.5087100355787617e-20,-9.740878893424454e-21,-4.7645603283054394e-21,4.459825959202135e-06,2.117582368135751e-21,2.4881592825595072e-21,0.00011773940059356391,8.046812998915853e-20,-1.9623234038590454e-05,-1.8113754777004942e-05,-1.050204903906733e-20,-1.0605314743336654e-21,-1.4823076576950256e-21,2.117582368135751e-21,3.0189589779183734e-06,-2.752857078576476e-21,8.585165051044896e-05,1.7279472123987727e-19,-1.6940658945086007e-21,-4.292582525522448e-05,-1.9062895819754502e-20,-4.220161586352608e-21,-3.5998900258307764e-21,2.4881592825595072e-21,-2.752857078576476e-21,3.3019864531524945e-06,8.0,13.0,15.0,0.023222140967845917,-0.00414377311244607,-0.002735805930569768,-0.0024092330131679773,0.0002136752154910937,0.00018315018678549677,0.00016025641525629908,9.157509339274839e-05,0.00010302197915734723,7.070136052789167e-05,-0.00414377311244607,0.002252311212942004,0.00018315018678549677,0.00016025641525629908,-0.0002136752154910937,-5.232862531556748e-05,-4.578754669637419e-05,1.1434944787933055e-20,5.505714157152952e-21,5.082197683525802e-21,-0.002735805930569768,0.00018315018678549677,0.0008722180500626564,0.00010302197915734723,0.0,-3.052503234357573e-05,5.082197683525802e-21,-4.995004928787239e-05,-1.7170330465887673e-05,6.776263578034403e-21,-0.0024092330131679773,0.00016025641525629908,0.00010302197915734723,0.0006596129387617111,-0.0,1.1442460499279923e-21,-2.2893773348187096e-05,1.822043417629555e-21,-1.471742507419549e-05,-3.263139660703018e-05,0.0002136752154910937,-0.0002136752154910937,0.0,-0.0,3.052503234357573e-05,0.0,0.0,0.0,0.0,0.0,0.00018315018678549677,-5.232862531556748e-05,-3.052503234357573e-05,1.1442460499279923e-21,0.0,8.72143755259458e-06,-3.9714366080792305e-23,-1.9058241313221758e-21,-1.314097874998114e-22,-1.453471800248645e-23,0.00016025641525629908,-4.578754669637419e-05,5.082197683525802e-21,-2.2893773348187096e-05,0.0,-3.9714366080792305e-23,6.541078164445935e-06,-5.293955920339377e-23,-6.352747104407253e-22,-8.470329472543003e-22,9.157509339274839e-05,1.1434944787933055e-20,-4.995004928787239e-05,1.822043417629555e-21,0.0,-1.9058241313221758e-21,-5.293955920339377e-23,4.162503955740249e-06,0.0,-1.0587911840678754e-22,0.00010302197915734723,5.505714157152952e-21,-1.7170330465887673e-05,-1.471742507419549e-05,0.0,-1.314097874998114e-22,-6.352747104407253e-22,0.0,2.4529042548238067e-06,-8.470329472543003e-22,7.070136052789167e-05,5.082197683525802e-21,6.776263578034403e-21,-3.263139660703018e-05,0.0,-1.453471800248645e-23,-8.470329472543003e-22,-1.0587911840678754e-22,-8.470329472543003e-22,2.3308139134314843e-06,8.0,13.0,16.0,0.021900586783885956,-0.003893624758347869,-0.0025704994332045317,-0.0021361911203712225,0.00020032051543239504,0.00017170330102089792,0.00014140272105578333,8.585165051044896e-05,9.09017471713014e-05,5.891779801459052e-05,-0.003893624758347869,0.002114066854119301,0.00017170330102089792,0.00014140272105578333,-0.00020032051543239504,-4.9058086005970836e-05,-4.0400776924798265e-05,1.3552527156068805e-20,-1.2705494208814505e-21,8.470329472543003e-21,-0.0025704994332045317,0.00017170330102089792,0.0008186513441614807,9.09017471713014e-05,0.0,-2.861721623048652e-05,-4.235164736271502e-22,-4.682817234424874e-05,-1.5150290892051999e-05,-8.470329472543003e-22,-0.0021361911203712225,0.00014140272105578333,9.09017471713014e-05,0.0005457471706904471,-0.0,-4.733602144723201e-22,-1.885369601950515e-05,-4.325964267293123e-22,-1.212023289554054e-05,-2.5250485123251565e-05,0.00020032051543239504,-0.00020032051543239504,0.0,-0.0,2.861721623048652e-05,0.0,0.0,0.0,0.0,0.0,0.00017170330102089792,-4.9058086005970836e-05,-2.861721623048652e-05,-4.733602144723201e-22,0.0,8.176347364496905e-06,-1.0116805843574757e-23,-1.9058241313221758e-21,6.345218468363313e-23,9.804912921401395e-25,0.00014140272105578333,-4.0400776924798265e-05,-4.235164736271502e-22,-1.885369601950515e-05,0.0,-1.0116805843574757e-23,5.386770226323279e-06,5.293955920339377e-23,5.293955920339377e-23,-1.0587911840678754e-21,8.585165051044896e-05,1.3552527156068805e-20,-4.682817234424874e-05,-4.325964267293123e-22,0.0,-1.9058241313221758e-21,5.293955920339377e-23,3.9023475437716115e-06,-1.0587911840678754e-22,5.293955920339377e-23,9.09017471713014e-05,-1.2705494208814505e-21,-1.5150290892051999e-05,-1.212023289554054e-05,0.0,6.345218468363313e-23,5.293955920339377e-23,-1.0587911840678754e-22,2.0200388917146483e-06,0.0,5.891779801459052e-05,8.470329472543003e-21,-8.470329472543003e-22,-2.5250485123251565e-05,0.0,9.804912921401395e-25,-1.0587911840678754e-21,5.293955920339377e-23,0.0,1.6833656673043151e-06,8.0,14.0,3.0,0.08030754327774048,-0.01706349290907383,-0.01059027761220932,-0.03541666641831398,0.0009920635493472219,0.0007936508045531809,0.0029761905316263437,0.00037202381645329297,0.0017857142956927419,0.004464285913854837,-0.01706349290907383,0.009835600852966309,0.0007936508045531809,0.0029761905316263437,-0.0009920635493472219,-0.00022675737272948027,-0.0008503401186317205,-1.84751927187061e-19,8.402566836762659e-19,1.8214596497756474e-17,-0.01059027761220932,0.0007936508045531809,0.0033033806830644608,0.0017857142956927419,-4.198192089335854e-19,-0.00012210012937430292,3.5236570605778894e-19,-0.00018601190822664648,-0.00027472528745420277,3.686287386450715e-18,-0.03541666641831398,0.0029761905316263437,0.0017857142956927419,0.08005952090024948,2.789080558371092e-18,1.937270643079298e-18,-0.0029761905316263437,2.893751786288399e-20,-0.0017857142956927419,-0.02678571455180645,0.0009920635493472219,-0.0009920635493472219,-4.198192089335854e-19,2.789080558371092e-18,0.00014172335795592517,9.147955830346444e-20,1.1589864084436873e-19,1.7787691892340307e-20,-5.809240974345897e-20,-1.338009101762447e-18,0.0007936508045531809,-0.00022675737272948027,-0.00012210012937430292,1.937270643079298e-18,9.147955830346444e-20,3.488575021037832e-05,-8.610861642502081e-20,5.929230630780102e-21,-6.215937893439517e-20,-5.728790292697784e-19,0.0029761905316263437,-0.0008503401186317205,3.5236570605778894e-19,-0.0029761905316263437,1.1589864084436873e-19,-8.610861642502081e-20,0.0008503401186317205,3.3380549492408695e-22,-1.3552527156068805e-19,-4.7704895589362195e-18,0.00037202381645329297,-1.84751927187061e-19,-0.00018601190822664648,2.893751786288399e-20,1.7787691892340307e-20,5.929230630780102e-21,3.3380549492408695e-22,1.430860811524326e-05,4.581534500874578e-21,-3.3106353053786396e-20,0.0017857142956927419,8.402566836762659e-19,-0.00027472528745420277,-0.0017857142956927419,-5.809240974345897e-20,-6.215937893439517e-20,-1.3552527156068805e-19,4.581534500874578e-21,0.00027472528745420277,-1.3010426069826053e-18,0.004464285913854837,1.8214596497756474e-17,3.686287386450715e-18,-0.02678571455180645,-1.338009101762447e-18,-5.728790292697784e-19,-4.7704895589362195e-18,-3.3106353053786396e-20,-1.3010426069826053e-18,0.013392857275903225,8.0,14.0,4.0,0.06531994044780731,-0.01324404776096344,-0.008210565894842148,-0.02258928492665291,0.0007440476329065859,0.0005952381179668009,0.0017857142956927419,0.00027901786961592734,0.0010714285308495164,0.0022321429569274187,-0.01324404776096344,0.0075042517855763435,0.0005952381179668009,0.0017857142956927419,-0.0007440476329065859,-0.0001700680295471102,-0.0005102040595375001,-1.3417001884508117e-18,-2.4123498337802474e-18,-1.1263423097655896e-17,-0.008210565894842148,0.0005952381179668009,0.002518744207918644,0.0010714285308495164,-2.425902360936316e-18,-9.157509339274839e-05,-4.607859233063394e-19,-0.00013950893480796367,-0.00016483516083098948,-1.9386894646249795e-18,-0.02258928492665291,0.0017857142956927419,0.0010714285308495164,0.030684523284435272,-5.364124824521638e-18,-1.1910389592464752e-18,-0.0011904762359336019,-5.963111948670274e-19,-0.0007142857066355646,-0.0066964286379516125,0.0007440476329065859,-0.0007440476329065859,-2.425902360936316e-18,-5.364124824521638e-18,0.00010629251482896507,3.218725199566341e-20,-5.759824041329242e-20,1.3552527156068805e-19,2.676624113323589e-19,1.1882753488199356e-18,0.0005952381179668009,-0.0001700680295471102,-9.157509339274839e-05,-1.1910389592464752e-18,3.218725199566341e-20,2.616431265778374e-05,-8.470329472543003e-20,3.5575383784680614e-20,8.978549240895584e-20,2.8919493080348577e-19,0.0017857142956927419,-0.0005102040595375001,-4.607859233063394e-19,-0.0011904762359336019,-5.759824041329242e-20,-8.470329472543003e-20,0.0003401360590942204,6.606856988583543e-20,-1.0842021724855044e-19,1.289595642226396e-19,0.00027901786961592734,-1.3417001884508117e-18,-0.00013950893480796367,-5.963111948670274e-19,1.3552527156068805e-19,3.5575383784680614e-20,6.606856988583543e-20,1.073145631380612e-05,2.371692252312041e-20,6.707995974339489e-20,0.0010714285308495164,-2.4123498337802474e-18,-0.00016483516083098948,-0.0007142857066355646,2.676624113323589e-19,8.978549240895584e-20,-1.0842021724855044e-19,2.371692252312041e-20,0.00010989011207129806,-8.923893928155996e-20,0.0022321429569274187,-1.1263423097655896e-17,-1.9386894646249795e-18,-0.0066964286379516125,1.1882753488199356e-18,2.8919493080348577e-19,1.289595642226396e-19,6.707995974339489e-20,-8.923893928155996e-20,0.0022321429569274187,8.0,14.0,5.0,0.05514030531048775,-0.010833333246409893,-0.006711309310048819,-0.015697278082370758,0.0005952381179668009,0.0004761904710903764,0.0011904762359336019,0.00022321428696159273,0.0007142857066355646,0.0012755101779475808,-0.010833333246409893,0.006071428768336773,0.0004761904710903764,0.0011904762359336019,-0.0005952381179668009,-0.0001360544265480712,-0.0003401360590942204,3.2081372877256625e-19,-2.981555974335137e-19,-6.396792817664476e-18,-0.006711309310048819,0.0004761904710903764,0.0020369733683764935,0.0007142857066355646,4.79420648145934e-19,-7.326007471419871e-05,-1.2027867851011065e-19,-0.00011160714348079637,-0.00010989011207129806,-1.7618285302889447e-18,-0.015697278082370758,0.0011904762359336019,0.0007142857066355646,0.015501700341701508,-2.3852447794681098e-18,-1.81603863891322e-18,-0.0005952381179668009,1.1519648082658485e-19,-0.0003571428533177823,-0.0025510203558951616,0.0005952381179668009,-0.0005952381179668009,4.79420648145934e-19,-2.3852447794681098e-18,8.50340147735551e-05,-7.359198919891975e-21,1.135173041831022e-19,-3.22931311140702e-20,-5.089400778762262e-21,4.878435181308318e-19,0.0004761904710903764,-0.0001360544265480712,-7.326007471419871e-05,-1.81603863891322e-18,-7.359198919891975e-21,2.093144939863123e-05,9.486769009248164e-20,-5.568357740476072e-21,5.336307567702092e-20,2.591920818598159e-19,0.0011904762359336019,-0.0003401360590942204,-1.2027867851011065e-19,-0.0005952381179668009,1.135173041831022e-19,9.486769009248164e-20,0.0001700680295471102,-2.072740939440994e-20,1.3552527156068805e-20,5.082197683525802e-19,0.00022321428696159273,3.2081372877256625e-19,-0.00011160714348079637,1.1519648082658485e-19,-3.22931311140702e-20,-5.568357740476072e-21,-2.072740939440994e-20,8.585165232943837e-06,-9.350825268308055e-21,4.767467981249663e-21,0.0007142857066355646,-2.981555974335137e-19,-0.00010989011207129806,-0.0003571428533177823,-5.089400778762262e-21,5.336307567702092e-20,1.3552527156068805e-20,-9.350825268308055e-21,5.494505603564903e-05,3.015437292225309e-19,0.0012755101779475808,-6.396792817664476e-18,-1.7618285302889447e-18,-0.0025510203558951616,4.878435181308318e-19,2.591920818598159e-19,5.082197683525802e-19,4.767467981249663e-21,3.015437292225309e-19,0.0006377550889737904,8.0,14.0,6.0,0.0477430559694767,-0.0091695012524724,-0.005677791777998209,-0.011553996242582798,0.0004960317746736109,0.00039682540227659047,0.0008503401186317205,0.00018601190822664648,0.0005102040595375001,0.0007971939048729837,-0.0091695012524724,0.005100016016513109,0.00039682540227659047,0.0008503401186317205,-0.0004960317746736109,-0.00011337868636474013,-0.00024295432376675308,-1.0736142606448257e-19,2.846030702774449e-19,2.520770051028798e-18,-0.005677791777998209,0.00039682540227659047,0.0017105600563809276,0.0005102040595375001,-1.8846483076408183e-19,-6.105006468715146e-05,-1.1265538198482195e-19,-9.300595411332324e-05,-7.849293615436181e-05,-6.776263578034403e-20,-0.011553996242582798,0.0008503401186317205,0.0005102040595375001,0.009006164968013763,1.0570971181733668e-18,4.472333961502706e-19,-0.0003401360590942204,-1.2197274440461925e-19,-0.0002040816325461492,-0.001195790828205645,0.0004960317746736109,-0.0004960317746736109,-1.8846483076408183e-19,1.0570971181733668e-18,7.086167897796258e-05,4.8906232998933744e-20,4.183628799170034e-20,7.623296525288703e-21,-2.5615332725085152e-20,-1.8858664603397733e-19,0.00039682540227659047,-0.00011337868636474013,-6.105006468715146e-05,4.472333961502706e-19,4.8906232998933744e-20,1.744287510518916e-05,5.082197683525802e-21,2.8611902738396466e-21,-1.8634724839594607e-20,-5.844527336054672e-20,0.0008503401186317205,-0.00024295432376675308,-1.1265538198482195e-19,-0.0003401360590942204,4.183628799170034e-20,5.082197683525802e-21,9.718172805150971e-05,7.764685441104884e-21,8.470329472543003e-21,-3.4050724479622874e-19,0.00018601190822664648,-1.0736142606448257e-19,-9.300595411332324e-05,-1.2197274440461925e-19,7.623296525288703e-21,2.8611902738396466e-21,7.764685441104884e-21,7.15430405762163e-06,2.7711380528416464e-21,1.4151451155996946e-20,0.0005102040595375001,2.846030702774449e-19,-7.849293615436181e-05,-0.0002040816325461492,-2.5615332725085152e-20,-1.8634724839594607e-20,8.470329472543003e-21,2.7711380528416464e-21,3.139717591693625e-05,5.251604272976662e-20,0.0007971939048729837,2.520770051028798e-18,-6.776263578034403e-20,-0.001195790828205645,-1.8858664603397733e-19,-5.844527336054672e-20,-3.4050724479622874e-19,1.4151451155996946e-20,5.251604272976662e-20,0.00023915816564112902,8.0,14.0,7.0,0.04211309552192688,-0.007950680330395699,-0.004921343643218279,-0.008864795789122581,0.00042517005931586027,0.0003401360590942204,0.0006377550889737904,0.0001594387722434476,0.00038265305920504034,0.0005314626032486558,-0.007950680330395699,0.00439747329801321,0.0003401360590942204,0.0006377550889737904,-0.00042517005931586027,-9.718172805150971e-05,-0.00018221575010102242,1.8253560013330172e-19,1.8973538018496328e-19,4.607859233063394e-19,-0.004921343643218279,0.0003401360590942204,0.0014746042434126139,0.00038265305920504034,4.73914933988781e-19,-5.232862531556748e-05,2.244637310223896e-19,-7.97193861217238e-05,-5.886970029678196e-05,6.776263578034403e-20,-0.008864795789122581,0.0006377550889737904,0.00038265305920504034,0.0057185376062989235,3.5236570605778894e-19,4.87890977618477e-19,-0.00021258502965793014,0.0,-0.00012755101488437504,-0.0006377550889737904,0.00042517005931586027,-0.00042517005931586027,4.73914933988781e-19,3.5236570605778894e-19,6.073858094168827e-05,-5.2001701178646295e-20,-1.0533068473596781e-19,-1.8422966602781032e-20,-8.838486237440189e-21,9.497808962368906e-21,0.0003401360590942204,-9.718172805150971e-05,-5.232862531556748e-05,4.87890977618477e-19,-5.2001701178646295e-20,1.4951035154808778e-05,-4.743384504624082e-20,-5.530928221654831e-21,-1.6940658945086007e-20,-3.3881317890172014e-20,0.0006377550889737904,-0.00018221575010102242,2.244637310223896e-19,-0.00021258502965793014,-1.0533068473596781e-19,-4.743384504624082e-20,6.073858094168827e-05,-2.7774451030639715e-21,-7.623296525288703e-21,-1.0672615135404184e-19,0.0001594387722434476,1.8253560013330172e-19,-7.97193861217238e-05,0.0,-1.8422966602781032e-20,-5.530928221654831e-21,-2.7774451030639715e-21,6.1322607507463545e-06,1.6084389686187242e-21,-1.832915473381762e-23,0.00038265305920504034,1.8973538018496328e-19,-5.886970029678196e-05,-0.00012755101488437504,-8.838486237440189e-21,-1.6940658945086007e-20,-7.623296525288703e-21,1.6084389686187242e-21,1.9623234038590454e-05,-8.470329472543003e-22,0.0005314626032486558,4.607859233063394e-19,6.776263578034403e-20,-0.0006377550889737904,9.497808962368906e-21,-3.3881317890172014e-20,-1.0672615135404184e-19,-1.832915473381762e-23,-8.470329472543003e-22,0.00010629251482896507,8.0,14.0,8.0,0.03767981007695198,-0.00701884925365448,-0.0043433778919279575,-0.00701884925365448,0.00037202381645329297,0.00029761905898340046,0.0004960317746736109,0.00013950893480796367,0.00029761905898340046,0.00037202381645329297,-0.00701884925365448,0.003865504637360573,0.00029761905898340046,0.0004960317746736109,-0.00037202381645329297,-8.50340147735551e-05,-0.00014172335795592517,-7.043078956419507e-19,-2.913793338554793e-19,4.336808689942018e-19,-0.0043433778919279575,0.00029761905898340046,0.001296002184972167,0.00029761905898340046,-1.161705687159273e-18,-4.578754669637419e-05,-7.115076756936123e-20,-6.975446740398183e-05,-4.578754669637419e-05,2.236166980751353e-19,-0.00701884925365448,0.0004960317746736109,0.00029761905898340046,0.003865504637360573,-2.303929616531697e-19,2.710505431213761e-19,-0.00014172335795592517,-1.2536087619363645e-19,-8.50340147735551e-05,-0.00037202381645329297,0.00037202381645329297,-0.00037202381645329297,-1.161705687159273e-18,-2.303929616531697e-19,5.3146257414482534e-05,1.3273869879421437e-20,-4.763609716835857e-20,6.755087754353045e-20,4.3363706073347914e-20,1.7918347655032472e-20,0.00029761905898340046,-8.50340147735551e-05,-4.578754669637419e-05,2.710505431213761e-19,1.3273869879421437e-20,1.308215632889187e-05,-4.2351647362715017e-20,1.8231852338364337e-20,1.1858461261560205e-20,-2.498747194400186e-20,0.0004960317746736109,-0.00014172335795592517,-7.115076756936123e-20,-0.00014172335795592517,-4.763609716835857e-20,-4.2351647362715017e-20,4.049238850711845e-05,2.2984966231826147e-20,-2.286988957586611e-20,-9.232659125071874e-20,0.00013950893480796367,-7.043078956419507e-19,-6.975446740398183e-05,-1.2536087619363645e-19,6.755087754353045e-20,1.8231852338364337e-20,2.2984966231826147e-20,5.36572815690306e-06,7.069167909822003e-21,-1.0254237561722198e-21,0.00029761905898340046,-2.913793338554793e-19,-4.578754669637419e-05,-8.50340147735551e-05,4.3363706073347914e-20,1.1858461261560205e-20,-2.286988957586611e-20,7.069167909822003e-21,1.308215632889187e-05,-3.5151867311053464e-20,0.00037202381645329297,4.336808689942018e-19,2.236166980751353e-19,-0.00037202381645329297,1.7918347655032472e-20,-2.498747194400186e-20,-9.232659125071874e-20,-1.0254237561722198e-21,-3.5151867311053464e-20,5.3146257414482534e-05,8.0,14.0,9.0,0.034096021205186844,-0.006283068563789129,-0.0038872354198247194,-0.005696248263120651,0.0003306878206785768,0.00026455026818439364,0.00039682540227659047,0.00012400794366840273,0.0002380952355451882,0.00027056277031078935,-0.006283068563789129,0.0034486015792936087,0.00026455026818439364,0.00039682540227659047,-0.0003306878206785768,-7.558579090982676e-05,-0.00011337868636474013,-9.740878893424454e-21,-2.0328790734103208e-20,-7.846792325747435e-20,-0.0038872354198247194,0.00026455026818439364,0.001156071899458766,0.0002380952355451882,0.0,-4.0700040699448436e-05,-2.0140099850387352e-20,-6.200397183420137e-05,-3.6630037357099354e-05,-5.0702349070341807e-20,-0.005696248263120651,0.00039682540227659047,0.0002380952355451882,0.002738224109634757,0.0,-3.7286728686508784e-22,-9.920635056914762e-05,0.0,-5.952380888629705e-05,-0.00023191094805952162,0.0003306878206785768,-0.0003306878206785768,0.0,0.0,4.724111931864172e-05,0.0,0.0,0.0,0.0,-0.0,0.00026455026818439364,-7.558579090982676e-05,-4.0700040699448436e-05,-3.7286728686508784e-22,0.0,1.1628582797129638e-05,0.0,8.470329472543003e-22,0.0,-0.0,0.00039682540227659047,-0.00011337868636474013,-2.0140099850387352e-20,-9.920635056914762e-05,0.0,0.0,2.8344671591185033e-05,-1.88079096131566e-37,5.035024962596838e-21,1.9616980814368587e-20,0.00012400794366840273,-9.740878893424454e-21,-6.200397183420137e-05,0.0,0.0,8.470329472543003e-22,-1.88079096131566e-37,4.76953618999687e-06,0.0,-4.4872309359686076e-39,0.0002380952355451882,-2.0328790734103208e-20,-3.6630037357099354e-05,-5.952380888629705e-05,0.0,0.0,5.035024962596838e-21,0.0,9.157509339274839e-06,1.2675587267585452e-20,0.00027056277031078935,-7.846792325747435e-20,-5.0702349070341807e-20,-0.00023191094805952162,-0.0,-0.0,1.9616980814368587e-20,-4.4872309359686076e-39,1.2675587267585452e-20,2.8988868507440202e-05,8.0,14.0,10.0,0.03113771602511406,-0.005687229335308075,-0.003517992328852415,-0.0047159092500805855,0.00029761905898340046,0.0002380952355451882,0.0003246753185521811,0.00011160714348079637,0.00019480519404169172,0.000202922077733092,-0.005687229335308075,0.0031130178831517696,0.0002380952355451882,0.0003246753185521811,-0.00029761905898340046,-6.80272132740356e-05,-9.276437776861712e-05,-3.3881317890172014e-21,1.6940658945086007e-21,-0.0,-0.003517992328852415,0.0002380952355451882,0.0010434617288410664,0.00019480519404169172,5.286776251116358e-20,-3.6630037357099354e-05,1.7745822336178346e-20,-5.5803571740398183e-05,-2.9970029572723433e-05,-0.0,-0.0047159092500805855,0.0003246753185521811,0.00019480519404169172,0.002011859556660056,7.209240283682775e-20,1.822012479135941e-20,-7.215006917249411e-05,1.6940658945086007e-21,-4.329004150349647e-05,-0.0001521915546618402,0.00029761905898340046,-0.00029761905898340046,5.286776251116358e-20,7.209240283682775e-20,4.251700738677755e-05,-1.510507569558408e-20,-2.0597829612748946e-20,-3.76158192263132e-37,1.88079096131566e-37,-0.0,0.0002380952355451882,-6.80272132740356e-05,-3.6630037357099354e-05,1.822012479135941e-20,-1.510507569558408e-20,1.0465724699315615e-05,-5.070235068592894e-21,4.235164736271502e-22,0.0,-0.0,0.0003246753185521811,-9.276437776861712e-05,1.7745822336178346e-20,-7.215006917249411e-05,-2.0597829612748946e-20,-5.070235068592894e-21,2.0614306777133606e-05,-5.64237288394698e-37,0.0,-0.0,0.00011160714348079637,-3.3881317890172014e-21,-5.5803571740398183e-05,1.6940658945086007e-21,-3.76158192263132e-37,4.235164736271502e-22,-5.64237288394698e-37,4.292582616471918e-06,-2.117582368135751e-22,-0.0,0.00019480519404169172,1.6940658945086007e-21,-2.9970029572723433e-05,-4.329004150349647e-05,1.88079096131566e-37,0.0,0.0,-2.117582368135751e-22,6.660006874881219e-06,-0.0,0.000202922077733092,-0.0,-0.0,-0.0001521915546618402,-0.0,-0.0,-0.0,-0.0,-0.0,1.6910173144424334e-05,8.0,14.0,11.0,0.028653638437390327,-0.005194805096834898,-0.003212932962924242,-0.003968947567045689,0.00027056277031078935,0.00021645022206939757,0.00027056277031078935,0.000101461038866546,0.00016233765927609056,0.00015609391266480088,-0.005194805096834898,0.0028370439540594816,0.00021645022206939757,0.00027056277031078935,-0.00027056277031078935,-6.184291851241142e-05,-7.730365177849308e-05,-1.359487880343152e-19,-2.558039500707987e-19,-2.47667232879056e-19,-0.003212932962924242,0.00021645022206939757,0.0009508720249868929,0.00016233765927609056,-3.925621084851029e-19,-3.330003164592199e-05,-1.1324452845141577e-19,-5.0730519433273e-05,-2.4975024643936194e-05,-1.7844516615483286e-19,-0.003968947567045689,0.00027056277031078935,0.00016233765927609056,0.0015222277725115418,-4.878100690148117e-19,-1.2309781343526794e-19,-5.411255551734939e-05,-1.6601845766184287e-19,-3.246753112762235e-05,-0.00010406260116724297,0.00027056277031078935,-0.00027056277031078935,-3.925621084851029e-19,-4.878100690148117e-19,3.865182588924654e-05,8.313210392597677e-21,1.1562129461668051e-20,1.5019250860270303e-20,2.4030802022667338e-20,2.3106539163651568e-20,0.00021645022206939757,-6.184291851241142e-05,-3.330003164592199e-05,-1.2309781343526794e-19,8.313210392597677e-21,9.51429501583334e-06,3.6487716340506154e-21,0.0,6.776263578034403e-21,5.281494896775663e-21,0.00027056277031078935,-7.730365177849308e-05,-1.1324452845141577e-19,-5.411255551734939e-05,1.1562129461668051e-20,3.6487716340506154e-21,1.5460729628102854e-05,4.291214704604422e-21,6.1912295884899036e-21,7.677601255620236e-21,0.000101461038866546,-1.359487880343152e-19,-5.0730519433273e-05,-1.6601845766184287e-19,1.5019250860270303e-20,0.0,4.291214704604422e-21,3.9023475437716115e-06,4.0234064994579266e-21,1.244198306154738e-20,0.00016233765927609056,-2.558039500707987e-19,-2.4975024643936194e-05,-3.246753112762235e-05,2.4030802022667338e-20,6.776263578034403e-21,6.1912295884899036e-21,4.0234064994579266e-21,4.995004928787239e-06,-3.5716877814634694e-22,0.00015609391266480088,-2.47667232879056e-19,-1.7844516615483286e-19,-0.00010406260116724297,2.3106539163651568e-20,5.281494896775663e-21,7.677601255620236e-21,1.244198306154738e-20,-3.5716877814634694e-22,1.0406260116724297e-05,8.0,14.0,12.0,0.026537835597991943,-0.0047809830866754055,-0.002956635318696499,-0.0033866430167108774,0.00024801588733680546,0.00019841270113829523,0.00022893772984389216,9.300595411332324e-05,0.00013736264372710139,0.0001226452150149271,-0.0047809830866754055,0.002606074558570981,0.00019841270113829523,0.00022893772984389216,-0.00024801588733680546,-5.668934318237007e-05,-6.541077891597524e-05,-1.0587911840678754e-20,-4.235164736271502e-21,0.0,-0.002956635318696499,0.00019841270113829523,0.0008733937866054475,0.00013736264372710139,0.0,-3.052503234357573e-05,-2.541098841762901e-21,-4.650297705666162e-05,-2.1132713300175965e-05,-5.082197683525802e-21,-0.0033866430167108774,0.00022893772984389216,0.00013736264372710139,0.001179921324364841,-0.0,-2.0468372211813346e-21,-4.162504046689719e-05,-1.8102201470869454e-21,-2.4975024643936194e-05,-7.358712900895625e-05,0.00024801588733680546,-0.00024801588733680546,0.0,-0.0,3.543083948898129e-05,0.0,0.0,0.0,0.0,0.0,0.00019841270113829523,-5.668934318237007e-05,-3.052503234357573e-05,-2.0468372211813346e-21,0.0,8.72143755259458e-06,4.5738158440157885e-23,1.2705494208814505e-21,1.4920387681427934e-22,8.216194587155816e-23,0.00022893772984389216,-6.541077891597524e-05,-2.541098841762901e-21,-4.162504046689719e-05,0.0,4.5738158440157885e-23,1.1892869224539027e-05,0.0,3.1763735522036263e-22,4.235164736271502e-22,9.300595411332324e-05,-1.0587911840678754e-20,-4.650297705666162e-05,-1.8102201470869454e-21,0.0,1.2705494208814505e-21,0.0,3.577152028810815e-06,2.117582368135751e-22,-5.293955920339377e-23,0.00013736264372710139,-4.235164736271502e-21,-2.1132713300175965e-05,-2.4975024643936194e-05,0.0,1.4920387681427934e-22,3.1763735522036263e-22,2.117582368135751e-22,3.84231134376023e-06,8.470329472543003e-22,0.0001226452150149271,0.0,-5.082197683525802e-21,-7.358712900895625e-05,0.0,8.216194587155816e-23,4.235164736271502e-22,-5.293955920339377e-23,8.470329472543003e-22,6.689738711429527e-06,8.0,14.0,13.0,0.024713827297091484,-0.004428309854120016,-0.0027382588014006615,-0.0029238618444651365,0.00022893772984389216,0.00018315018678549677,0.00019623234402388334,8.585165051044896e-05,0.00011773940059356391,9.811617201194167e-05,-0.004428309854120016,0.0024099200963974,0.00018315018678549677,0.00019623234402388334,-0.00022893772984389216,-5.232862531556748e-05,-5.6066382967401296e-05,1.7660636950252162e-19,9.486769009248164e-20,2.710505431213761e-19,-0.0027382588014006615,0.00018315018678549677,0.0008076030062511563,0.00011773940059356391,3.734182539784819e-19,-2.8176951673231088e-05,7.707999820014133e-20,-4.292582525522448e-05,-1.8113754777004942e-05,6.437450399132683e-20,-0.0029238618444651365,0.00019623234402388334,0.00011773940059356391,0.0009332929039373994,4.54059083769905e-19,7.920874750654655e-20,-3.270538945798762e-05,1.2940394923527525e-20,-1.9623234038590454e-05,-5.3517909691436216e-05,0.00022893772984389216,-0.00022893772984389216,3.734182539784819e-19,4.54059083769905e-19,3.270538945798762e-05,-2.0563750417746615e-20,-2.6289324981189614e-20,-1.9062895819754502e-20,-1.050204903906733e-20,-2.5087100355787617e-20,0.00018315018678549677,-5.232862531556748e-05,-2.8176951673231088e-05,7.920874750654655e-20,-2.0563750417746615e-20,8.050557880778797e-06,-1.5845727076832953e-21,-3.1763735522036263e-21,-1.983064948296799e-21,-5.768480922648136e-21,0.00019623234402388334,-5.6066382967401296e-05,7.707999820014133e-20,-3.270538945798762e-05,-2.6289324981189614e-20,-1.5845727076832953e-21,9.344396858068649e-06,-5.082197683525802e-21,-2.6469779601696886e-21,-1.0376153603865179e-20,8.585165051044896e-05,1.7660636950252162e-19,-4.292582525522448e-05,1.2940394923527525e-20,-1.9062895819754502e-20,-3.1763735522036263e-21,-5.082197683525802e-21,3.3019864531524945e-06,8.470329472543003e-22,-3.705769144237564e-22,0.00011773940059356391,9.486769009248164e-20,-1.8113754777004942e-05,-1.9623234038590454e-05,-1.050204903906733e-20,-1.983064948296799e-21,-2.6469779601696886e-21,8.470329472543003e-22,3.0189589779183734e-06,-7.623296525288703e-21,9.811617201194167e-05,2.710505431213761e-19,6.437450399132683e-20,-5.3517909691436216e-05,-2.5087100355787617e-20,-5.768480922648136e-21,-1.0376153603865179e-20,-3.705769144237564e-22,-7.623296525288703e-21,4.459825959202135e-06,8.0,14.0,14.0,0.023125000298023224,-0.004124149680137634,-0.0025499574840068817,-0.0025499574840068817,0.00021258502965793014,0.0001700680295471102,0.0001700680295471102,7.97193861217238e-05,0.0001020408162730746,7.97193861217238e-05,-0.004124149680137634,0.0022412536200135946,0.0001700680295471102,0.0001700680295471102,-0.00021258502965793014,-4.8590864025754854e-05,-4.8590864025754854e-05,-8.978549240895584e-20,-1.2281977735187355e-20,-8.470329472543003e-20,-0.0025499574840068817,0.0001700680295471102,0.0007510383729822934,0.0001020408162730746,-3.348757216377853e-19,-2.616431265778374e-05,9.656175598699024e-20,-3.98596930608619e-05,-1.5698587958468124e-05,-4.235164736271502e-21,-0.0025499574840068817,0.0001700680295471102,0.0001020408162730746,0.0007510383729822934,-3.348757216377853e-19,9.593483063085747e-20,-2.616431265778374e-05,3.321386068402415e-20,-1.5698587958468124e-05,-3.98596930608619e-05,0.00021258502965793014,-0.00021258502965793014,-3.348757216377853e-19,-3.348757216377853e-19,3.0369290470844135e-05,1.7316014766251818e-20,1.7316014766251818e-20,1.7701259596264185e-20,8.133502173346264e-21,1.7701259596264185e-20,0.0001700680295471102,-4.8590864025754854e-05,-2.616431265778374e-05,9.593483063085747e-20,1.7316014766251818e-20,7.475517577404389e-06,-6.492034949155806e-21,-6.352747104407253e-22,-2.852311612796948e-21,-3.541517247096102e-21,0.0001700680295471102,-4.8590864025754854e-05,9.656175598699024e-20,-2.616431265778374e-05,1.7316014766251818e-20,-6.492034949155806e-21,7.475517577404389e-06,-3.626359805432473e-21,-2.752857078576476e-21,-1.0587911840678754e-21,7.97193861217238e-05,-8.978549240895584e-20,-3.98596930608619e-05,3.321386068402415e-20,1.7701259596264185e-20,-6.352747104407253e-22,-3.626359805432473e-21,3.0661303753731772e-06,-1.4823076576950256e-21,-5.293955920339377e-22,0.0001020408162730746,-1.2281977735187355e-20,-1.5698587958468124e-05,-1.5698587958468124e-05,8.133502173346264e-21,-2.852311612796948e-21,-2.752857078576476e-21,-1.4823076576950256e-21,2.415167273284169e-06,4.235164736271502e-21,7.97193861217238e-05,-8.470329472543003e-20,-4.235164736271502e-21,-3.98596930608619e-05,1.7701259596264185e-20,-3.541517247096102e-21,-1.0587911840678754e-21,-5.293955920339377e-22,4.235164736271502e-21,3.0661303753731772e-06,8.0,14.0,15.0,0.021728524938225746,-0.003859126940369606,-0.0023859126958996058,-0.002243522321805358,0.00019841270113829523,0.00015873015217948705,0.00014880952949170023,7.440476474585012e-05,8.928571332944557e-05,6.565126386703923e-05,-0.003859126940369606,0.002094671130180359,0.00015873015217948705,0.00014880952949170023,-0.00019841270113829523,-4.535147309070453e-05,-4.251700738677755e-05,5.632769099241097e-20,-2.456395547037471e-20,4.573977915173222e-20,-0.0023859126958996058,0.00015873015217948705,0.0007018849137239158,8.928571332944557e-05,3.3815060723106516e-19,-2.44200236920733e-05,-9.656175598699024e-20,-3.720238237292506e-05,-1.3736264008912258e-05,-6.268043809681823e-20,-0.002243522321805358,0.00014880952949170023,8.928571332944557e-05,0.000613408803474158,3.1310179467476366e-19,-9.849971091523127e-20,-2.1258503693388775e-05,-5.1352209301427314e-20,-1.2755102034134325e-05,-3.0300581784103997e-05,0.00019841270113829523,-0.00019841270113829523,3.3815060723106516e-19,3.1310179467476366e-19,2.8344671591185033e-05,-2.4792733917643844e-20,-2.9452327934273145e-20,-1.6521176592532187e-20,-6.39060879278681e-21,-1.2708596943905146e-20,0.00015873015217948705,-4.535147309070453e-05,-2.44200236920733e-05,-9.849971091523127e-20,-2.4792733917643844e-20,6.977149951126194e-06,4.101853756124784e-21,5.082197683525802e-21,4.059886860838006e-21,3.570443123038099e-21,0.00014880952949170023,-4.251700738677755e-05,-9.656175598699024e-20,-2.1258503693388775e-05,-2.9452327934273145e-20,4.101853756124784e-21,6.073858003219357e-06,3.1234339930002325e-21,4.870439446712227e-21,1.9058241313221758e-21,7.440476474585012e-05,5.632769099241097e-20,-3.720238237292506e-05,-5.1352209301427314e-20,-1.6521176592532187e-20,5.082197683525802e-21,3.1234339930002325e-21,2.861721668523387e-06,3.1763735522036263e-21,1.1117307432712692e-21,8.928571332944557e-05,-2.456395547037471e-20,-1.3736264008912258e-05,-1.2755102034134325e-05,-6.39060879278681e-21,4.059886860838006e-21,4.870439446712227e-21,3.1763735522036263e-21,1.9623234948085155e-06,4.7645603283054394e-21,6.565126386703923e-05,4.573977915173222e-20,-6.268043809681823e-20,-3.0300581784103997e-05,-1.2708596943905146e-20,3.570443123038099e-21,1.9058241313221758e-21,1.1117307432712692e-21,4.7645603283054394e-21,2.1643272702931426e-06,8.0,14.0,16.0,0.020491398870944977,-0.0036261379718780518,-0.002241716952994466,-0.0019892333075404167,0.00018601190822664648,0.00014880952949170023,0.00013130252773407847,6.975446740398183e-05,7.878151518525556e-05,5.470938413054682e-05,-0.0036261379718780518,0.0019660990219563246,0.00014880952949170023,0.00013130252773407847,-0.00018601190822664648,-4.251700738677755e-05,-3.751500480575487e-05,-5.082197683525802e-21,4.235164736271502e-22,-1.0164395367051604e-20,-0.002241716952994466,0.00014880952949170023,0.0006587746320292354,7.878151518525556e-05,0.0,-2.2893773348187096e-05,8.470329472543003e-22,-3.487723370199092e-05,-1.212023289554054e-05,1.6940658945086007e-21,-0.0019892333075404167,0.00013130252773407847,7.878151518525556e-05,0.000507515505887568,-0.0,-0.0,-1.750700357661117e-05,6.356883512340997e-22,-1.050420178216882e-05,-2.3446878913091496e-05,0.00018601190822664648,-0.00018601190822664648,0.0,-0.0,2.6573128707241267e-05,0.0,0.0,0.0,0.0,0.0,0.00014880952949170023,-4.251700738677755e-05,-2.2893773348187096e-05,-0.0,0.0,6.541078164445935e-06,0.0,8.470329472543003e-22,0.0,3.49858036528482e-24,0.00013130252773407847,-3.751500480575487e-05,8.470329472543003e-22,-1.750700357661117e-05,0.0,0.0,5.002000762033276e-06,-2.6469779601696886e-23,-5.293955920339377e-23,1.376428539288238e-21,6.975446740398183e-05,-5.082197683525802e-21,-3.487723370199092e-05,6.356883512340997e-22,0.0,8.470329472543003e-22,-2.6469779601696886e-23,2.68286407845153e-06,0.0,0.0,7.878151518525556e-05,4.235164736271502e-22,-1.212023289554054e-05,-1.050420178216882e-05,0.0,0.0,-5.293955920339377e-23,0.0,1.616030999684881e-06,-2.117582368135751e-22,5.470938413054682e-05,-1.0164395367051604e-20,1.6940658945086007e-21,-2.3446878913091496e-05,0.0,3.49858036528482e-24,1.376428539288238e-21,0.0,-2.117582368135751e-22,1.5631252381353988e-06,8.0,15.0,3.0,0.07555487751960754,-0.01597222313284874,-0.009323937818408012,-0.03315972164273262,0.0009259259095415473,0.0006944444612599909,0.0027777778450399637,0.00030637255986221135,0.0015625000232830644,0.004166666883975267,-0.01597222313284874,0.009193121455609798,0.0006944444612599909,0.0027777778450399637,-0.0009259259095415473,-0.00019841270113829523,-0.0007936508045531809,-9.143388242401502e-20,-1.1519648082658485e-19,1.0625181290357943e-17,-0.009323937818408012,0.0006944444612599909,0.0026988841127604246,0.0015625000232830644,3.898284833557683e-19,-9.920635056914762e-05,1.8973538018496328e-19,-0.00014140272105578333,-0.00022321428696159273,1.0842021724855044e-18,-0.03315972164273262,0.0027777778450399637,0.0015625000232830644,0.07482638955116272,3.7036623152173914e-18,1.497722685397834e-19,-0.0027777778450399637,-1.434263586001268e-19,-0.0015625000232830644,-0.02500000037252903,0.0009259259095415473,-0.0009259259095415473,3.898284833557683e-19,3.7036623152173914e-18,0.00013227513409219682,-1.4060746924421386e-19,-5.580039437118139e-19,6.776263578034403e-21,-4.830089754146475e-21,-7.552768521323018e-19,0.0006944444612599909,-0.00019841270113829523,-9.920635056914762e-05,1.497722685397834e-19,-1.4060746924421386e-19,2.8344671591185033e-05,-9.515950390295386e-20,3.3881317890172014e-21,3.803866948772671e-20,-1.5898285357472748e-20,0.0027777778450399637,-0.0007936508045531809,1.8973538018496328e-19,-0.0027777778450399637,-5.580039437118139e-19,-9.515950390295386e-20,0.0007936508045531809,2.6450709211168417e-20,-2.168404344971009e-19,-5.7462715141731735e-18,0.00030637255986221135,-9.143388242401502e-20,-0.00014140272105578333,-1.434263586001268e-19,6.776263578034403e-21,3.3881317890172014e-21,2.6450709211168417e-20,1.0100194231199566e-05,9.930253978291514e-21,-1.1292181007465931e-20,0.0015625000232830644,-1.1519648082658485e-19,-0.00022321428696159273,-0.0015625000232830644,-4.830089754146475e-21,3.803866948772671e-20,-2.168404344971009e-19,9.930253978291514e-21,0.00022321428696159273,-6.505213034913027e-19,0.004166666883975267,1.0625181290357943e-17,1.0842021724855044e-18,-0.02500000037252903,-7.552768521323018e-19,-1.5898285357472748e-20,-5.7462715141731735e-18,-1.1292181007465931e-20,-6.505213034913027e-19,0.012500000186264515,8.0,15.0,4.0,0.06143178045749664,-0.012395833618938923,-0.007227328605949879,-0.021145833656191826,0.0006944444612599909,0.0005208333604969084,0.0016666667070239782,0.0002297794126207009,0.0009374999790452421,0.0020833334419876337,-0.012395833618938923,0.007013889029622078,0.0005208333604969084,0.0016666667070239782,-0.0006944444612599909,-0.00014880952949170023,-0.0004761904710903764,-3.541337787677269e-19,-1.4026865606531214e-18,-4.607859233063394e-18,-0.007227328605949879,0.0005208333604969084,0.0020576452370733023,0.0009374999790452421,-9.957483374651824e-19,-7.440476474585012e-05,-1.111307226797642e-18,-0.00010605203715385869,-0.00013392856635618955,2.439454888092385e-19,-0.021145833656191826,0.0016666667070239782,0.0009374999790452421,0.028680555522441864,-2.6636781163516748e-18,-1.116927402072057e-18,-0.0011111111380159855,-8.172391940598474e-20,-0.0006249999860301614,-0.0062500000931322575,0.0006944444612599909,-0.0006944444612599909,-9.957483374651824e-19,-2.6636781163516748e-18,9.920635056914762e-05,1.1180834903756764e-19,2.992901531918126e-19,3.134021904840911e-20,9.004637741933682e-20,3.1208723180407323e-19,0.0005208333604969084,-0.00014880952949170023,-7.440476474585012e-05,-1.116927402072057e-18,1.1180834903756764e-19,2.1258503693388775e-05,9.261506402699807e-20,9.740878893424454e-21,5.704532833493754e-20,1.1456755214240605e-19,0.0016666667070239782,-0.0004761904710903764,-1.111307226797642e-18,-0.0011111111380159855,2.992901531918126e-19,9.261506402699807e-20,0.0003174603043589741,3.102192899598666e-20,1.8295911660692887e-19,9.486769009248164e-19,0.0002297794126207009,-3.541337787677269e-19,-0.00010605203715385869,-8.172391940598474e-20,3.134021904840911e-20,9.740878893424454e-21,3.102192899598666e-20,7.575145446025999e-06,1.2314327444162854e-20,-4.036132479311599e-20,0.0009374999790452421,-1.4026865606531214e-18,-0.00013392856635618955,-0.0006249999860301614,9.004637741933682e-20,5.704532833493754e-20,1.8295911660692887e-19,1.2314327444162854e-20,8.928571332944557e-05,-2.710505431213761e-20,0.0020833334419876337,-4.607859233063394e-18,2.439454888092385e-19,-0.0062500000931322575,3.1208723180407323e-19,1.1456755214240605e-19,9.486769009248164e-19,-4.036132479311599e-20,-2.710505431213761e-20,0.0020833334419876337,8.0,15.0,5.0,0.05184582248330116,-0.010138888843357563,-0.005906862672418356,-0.014692460186779499,0.0005555555690079927,0.00041666667675599456,0.0011111111380159855,0.00018382353300694376,0.0006249999860301614,0.0011904762359336019,-0.010138888843357563,0.005674603395164013,0.00041666667675599456,0.0011111111380159855,-0.0005555555690079927,-0.0001190476177725941,-0.0003174603043589741,-5.800058106323822e-19,-4.336808689942018e-19,-1.2468324983583301e-18,-0.005906862672418356,0.00041666667675599456,0.0016639733221381903,0.0006249999860301614,-8.915021769851511e-19,-5.952380888629705e-05,-3.3203691532368573e-19,-8.484163117827848e-05,-8.928571332944557e-05,3.2526065174565133e-19,-0.014692460186779499,0.0011111111380159855,0.0006249999860301614,0.014489087276160717,-3.2526065174565133e-19,4.0657581468206416e-20,-0.0005555555690079927,-6.776263578034403e-20,-0.0003124999930150807,-0.0023809524718672037,0.0005555555690079927,-0.0005555555690079927,-8.915021769851511e-19,-3.2526065174565133e-19,7.936507608974352e-05,6.136884468480023e-21,-1.002293714254738e-19,5.516302068993631e-20,4.287017974686066e-20,9.073481140883115e-20,0.00041666667675599456,-0.0001190476177725941,-5.952380888629705e-05,4.0657581468206416e-20,6.136884468480023e-21,1.70068033185089e-05,-6.776263578034403e-21,1.5541006340748062e-20,1.5246593050577406e-20,-2.879912020664621e-20,0.0011111111380159855,-0.0003174603043589741,-3.3203691532368573e-19,-0.0005555555690079927,-1.002293714254738e-19,-6.776263578034403e-21,0.00015873015217948705,2.5521785383271367e-20,3.3881317890172014e-21,4.404571325722362e-19,0.00018382353300694376,-5.800058106323822e-19,-8.484163117827848e-05,-6.776263578034403e-20,5.516302068993631e-20,1.5541006340748062e-20,2.5521785383271367e-20,6.06011644777027e-06,3.4872012076546315e-21,-1.1908445104102142e-20,0.0006249999860301614,-4.336808689942018e-19,-8.928571332944557e-05,-0.0003124999930150807,4.287017974686066e-20,1.5246593050577406e-20,3.3881317890172014e-21,3.4872012076546315e-21,4.4642856664722785e-05,2.202285662861181e-20,0.0011904762359336019,-1.2468324983583301e-18,3.2526065174565133e-19,-0.0023809524718672037,9.073481140883115e-20,-2.879912020664621e-20,4.404571325722362e-19,-1.1908445104102142e-20,2.202285662861181e-20,0.0005952381179668009,8.0,15.0,6.0,0.04488309100270271,-0.00858134962618351,-0.004996790550649166,-0.010813492350280285,0.00046296295477077365,0.00034722223062999547,0.0007936508045531809,0.00015318627993110567,0.00044642857392318547,0.0007440476329065859,-0.00858134962618351,0.0047666290774941444,0.00034722223062999547,0.0007936508045531809,-0.00046296295477077365,-9.920635056914762e-05,-0.00022675737272948027,-5.992758101824175e-20,-2.303929616531697e-19,9.215718466126788e-19,-0.004996790550649166,0.00034722223062999547,0.001397273619659245,0.00044642857392318547,1.7787691892340307e-19,-4.960317528457381e-05,-2.31239994600424e-19,-7.070136052789167e-05,-6.377550744218752e-05,-5.963111948670274e-19,-0.010813492350280285,0.0007936508045531809,0.00044642857392318547,0.008417658507823944,1.2468324983583301e-18,-3.7947076036992655e-19,-0.0003174603043589741,4.743384504624082e-20,-0.00017857142665889114,-0.0011160714784637094,0.00046296295477077365,-0.00046296295477077365,1.7787691892340307e-19,1.2468324983583301e-18,6.613756704609841e-05,-6.607757193734548e-20,-1.4144191353652087e-19,4.9763185651190145e-21,-8.025224715839213e-21,-1.3002539936661126e-19,0.00034722223062999547,-9.920635056914762e-05,-4.960317528457381e-05,-3.7947076036992655e-19,-6.607757193734548e-20,1.4172335795592517e-05,5.082197683525802e-21,2.5724737458514877e-21,2.244637310223896e-20,3.8963515573697816e-20,0.0007936508045531809,-0.00022675737272948027,-2.31239994600424e-19,-0.0003174603043589741,-1.4144191353652087e-19,5.082197683525802e-21,9.070294618140906e-05,9.412873103875552e-22,4.912791094074942e-20,-6.945670167485263e-20,0.00015318627993110567,-5.992758101824175e-20,-7.070136052789167e-05,4.743384504624082e-20,4.9763185651190145e-21,2.5724737458514877e-21,9.412873103875552e-22,5.050097115599783e-06,6.358722252447759e-22,-9.218099938497373e-21,0.00044642857392318547,-2.303929616531697e-19,-6.377550744218752e-05,-0.00017857142665889114,-8.025224715839213e-21,2.244637310223896e-20,4.912791094074942e-20,6.358722252447759e-22,2.551020406826865e-05,1.9142944607947188e-19,0.0007440476329065859,9.215718466126788e-19,-5.963111948670274e-19,-0.0011160714784637094,-1.3002539936661126e-19,3.8963515573697816e-20,-6.945670167485263e-20,-9.218099938497373e-21,1.9142944607947188e-19,0.00022321428696159273,8.0,15.0,7.0,0.039585523307323456,-0.0074404762126505375,-0.004330794792622328,-0.008296131156384945,0.00039682540227659047,0.00029761905898340046,0.0005952381179668009,0.00013130252773407847,0.0003348214377183467,0.0004960317746736109,-0.0074404762126505375,0.004109977278858423,0.00029761905898340046,0.0005952381179668009,-0.00039682540227659047,-8.50340147735551e-05,-0.0001700680295471102,8.343274530454858e-20,-1.3552527156068805e-20,8.809142651444724e-19,-0.004330794792622328,0.00029761905898340046,0.0012044962495565414,0.0003348214377183467,1.9693516023662483e-19,-4.251700738677755e-05,-5.844527336054672e-20,-6.0601163568207994e-05,-4.783163240063004e-05,1.3552527156068805e-19,-0.008296131156384945,0.0005952381179668009,0.0003348214377183467,0.005344741977751255,3.9302328752599536e-19,-5.421010862427522e-20,-0.00019841270113829523,-2.0328790734103208e-20,-0.00011160714348079637,-0.0005952381179668009,0.00039682540227659047,-0.00039682540227659047,1.9693516023662483e-19,3.9302328752599536e-19,5.668934318237007e-05,-8.707049338368787e-21,3.059787937860532e-20,-1.1752582143153417e-20,-5.535560917761268e-21,-7.323264546183795e-20,0.00029761905898340046,-8.50340147735551e-05,-4.251700738677755e-05,-5.421010862427522e-20,-8.707049338368787e-21,1.2147716006438714e-05,9.317362419797304e-21,-2.8176054185253725e-22,8.046812998915853e-21,-7.199780051661553e-21,0.0005952381179668009,-0.0001700680295471102,-5.844527336054672e-20,-0.00019841270113829523,3.059787937860532e-20,9.317362419797304e-21,5.668934318237007e-05,1.3654362863776243e-21,-2.541098841762901e-21,-7.877406409464993e-20,0.00013130252773407847,8.343274530454858e-20,-6.0601163568207994e-05,-2.0328790734103208e-20,-1.1752582143153417e-20,-2.8176054185253725e-22,1.3654362863776243e-21,4.328654540586285e-06,1.8706687533402804e-21,4.658129486892428e-22,0.0003348214377183467,-1.3552527156068805e-20,-4.783163240063004e-05,-0.00011160714348079637,-5.535560917761268e-21,8.046812998915853e-21,-2.541098841762901e-21,1.8706687533402804e-21,1.594387686054688e-05,-4.912791094074942e-20,0.0004960317746736109,8.809142651444724e-19,1.3552527156068805e-19,-0.0005952381179668009,-7.323264546183795e-20,-7.199780051661553e-21,-7.877406409464993e-20,4.658129486892428e-22,-4.912791094074942e-20,9.920635056914762e-05,8.0,15.0,8.0,0.03541496396064758,-0.006568287033587694,-0.0038219974376261234,-0.006568287033587694,0.00034722223062999547,0.0002604166802484542,0.00046296295477077365,0.00011488970631035045,0.0002604166802484542,0.00034722223062999547,-0.006568287033587694,0.003612764645367861,0.0002604166802484542,0.00046296295477077365,-0.00034722223062999547,-7.440476474585012e-05,-0.00013227513409219682,-1.7470054537119944e-19,-6.098637220230962e-20,5.421010862427522e-19,-0.0038219974376261234,0.0002604166802484542,0.0010585845448076725,0.0002604166802484542,-4.137755947337257e-19,-3.720238237292506e-05,-1.9185296255309903e-19,-5.3026018576929346e-05,-3.720238237292506e-05,-1.9651164376299768e-19,-0.006568287033587694,0.00046296295477077365,0.0002604166802484542,0.003612764645367861,5.149960319306146e-19,6.776263578034403e-21,-0.00013227513409219682,-9.147955830346444e-20,-7.440476474585012e-05,-0.00034722223062999547,0.00034722223062999547,-0.00034722223062999547,-4.137755947337257e-19,5.149960319306146e-19,4.960317528457381e-05,5.839979135155338e-20,-2.0129398201212447e-20,1.503483481376383e-20,-6.51116875147928e-21,-4.9571289442600646e-20,0.0002604166802484542,-7.440476474585012e-05,-3.720238237292506e-05,6.776263578034403e-21,5.839979135155338e-20,1.0629251846694387e-05,4.658681209898652e-21,4.8838912290858005e-21,7.199780051661553e-21,-8.893845946170154e-21,0.00046296295477077365,-0.00013227513409219682,-1.9185296255309903e-19,-0.00013227513409219682,-2.0129398201212447e-20,4.658681209898652e-21,3.779289545491338e-05,7.406387796692278e-21,1.4399560103323106e-20,-3.218725199566341e-20,0.00011488970631035045,-1.7470054537119944e-19,-5.3026018576929346e-05,-9.147955830346444e-20,1.503483481376383e-20,4.8838912290858005e-21,7.406387796692278e-21,3.7875727230129996e-06,2.803678199150553e-21,6.15892471205737e-21,0.0002604166802484542,-6.098637220230962e-20,-3.720238237292506e-05,-7.440476474585012e-05,-6.51116875147928e-21,7.199780051661553e-21,1.4399560103323106e-20,2.803678199150553e-21,1.0629251846694387e-05,3.8116482626443515e-20,0.00034722223062999547,5.421010862427522e-19,-1.9651164376299768e-19,-0.00034722223062999547,-4.9571289442600646e-20,-8.893845946170154e-21,-3.218725199566341e-20,6.15892471205737e-21,3.8116482626443515e-20,4.960317528457381e-05,8.0,15.0,9.0,0.0320441760122776,-0.005879629403352737,-0.0034204793628305197,-0.005330387037247419,0.00030864198924973607,0.00023148147738538682,0.000370370369637385,0.00010212418419541791,0.00020833333837799728,0.00025252526393160224,-0.005879629403352737,0.0032231041695922613,0.00023148147738538682,0.000370370369637385,-0.00030864198924973607,-6.613756704609841e-05,-0.00010582010872894898,-1.8211208365967457e-20,0.0,-5.48598219973658e-35,-0.0034204793628305197,0.00023148147738538682,0.0009442708687856793,0.00020833333837799728,-5.1399213193500787e-20,-3.3068783523049206e-05,-1.762258696519215e-20,-4.7134239139268175e-05,-2.9761904443148524e-05,-1.2582418780954564e-19,-0.005330387037247419,0.000370370369637385,0.00020833333837799728,0.002559148008003831,-8.223874240207097e-20,-1.7182303928289462e-20,-9.259259240934625e-05,-1.2197274440461925e-19,-5.208333459449932e-05,-0.00021645022206939757,0.00030864198924973607,-0.00030864198924973607,-5.1399213193500787e-20,-8.223874240207097e-20,4.4091710151406005e-05,1.4685489945453692e-20,2.3496784235843333e-20,4.137740114894452e-36,-0.0,0.0,0.00023148147738538682,-6.613756704609841e-05,-3.3068783523049206e-05,-1.7182303928289462e-20,1.4685489945453692e-20,9.448223863728344e-06,5.035024962596838e-21,2.329340604949326e-21,-2.117582368135751e-22,7.837117838175008e-36,0.000370370369637385,-0.00010582010872894898,-1.762258696519215e-20,-9.259259240934625e-05,2.3496784235843333e-20,5.035024962596838e-21,2.6455027182237245e-05,1.128474576789396e-36,-1.88079096131566e-37,0.0,0.00010212418419541791,-1.8211208365967457e-20,-4.7134239139268175e-05,-1.2197274440461925e-19,4.137740114894452e-36,2.329340604949326e-21,1.128474576789396e-36,3.3667313346086303e-06,5.293955920339377e-21,1.0562989793551326e-20,0.00020833333837799728,0.0,-2.9761904443148524e-05,-5.208333459449932e-05,-0.0,-2.117582368135751e-22,-1.88079096131566e-37,5.293955920339377e-21,7.440476110787131e-06,-5.514417325043232e-21,0.00025252526393160224,-5.48598219973658e-35,-1.2582418780954564e-19,-0.00021645022206939757,0.0,7.837117838175008e-36,0.0,1.0562989793551326e-20,-5.514417325043232e-21,2.7056277758674696e-05,8.0,15.0,10.0,0.029262106865644455,-0.005321969743818045,-0.0030954768881201744,-0.004412878770381212,0.00027777778450399637,0.00020833333837799728,0.0003030303050763905,9.191176650347188e-05,0.00017045454296749085,0.00018939393339678645,-0.005321969743818045,0.002909451723098755,0.00020833333837799728,0.0003030303050763905,-0.00027777778450399637,-5.952380888629705e-05,-8.658008300699294e-05,4.955142741437657e-20,-1.5500702934753696e-19,-4.0451848725167407e-19,-0.0030954768881201744,0.00020833333837799728,0.0008522788411937654,0.00017045454296749085,2.4663467883004253e-19,-2.9761904443148524e-05,-2.7770309149904555e-19,-4.242081558913924e-05,-2.4350649255211465e-05,-3.64886170303333e-19,-0.004412878770381212,0.0003030303050763905,0.00017045454296749085,0.001880260999314487,-4.582608510889447e-19,-2.1454599057424364e-19,-6.73400645609945e-05,-2.659683454378503e-19,-3.787878813454881e-05,-0.00014204545004758984,0.00027777778450399637,-0.00027777778450399637,2.4663467883004253e-19,-4.582608510889447e-19,3.968253804487176e-05,-1.2344202881442797e-20,2.5196147640563968e-20,-1.7792036206143344e-20,7.209240122124061e-21,2.803593623164094e-20,0.00020833333837799728,-5.952380888629705e-05,-2.9761904443148524e-05,-2.1454599057424364e-19,-1.2344202881442797e-20,8.50340165925445e-06,1.0891928988566835e-20,1.0587911840678754e-21,5.823351512373315e-21,1.2015401011333669e-20,0.0003030303050763905,-8.658008300699294e-05,-2.7770309149904555e-19,-6.73400645609945e-05,2.5196147640563968e-20,1.0891928988566835e-20,1.924001844599843e-05,1.2649697483764822e-20,1.0681576312559747e-20,2.4030802022667338e-20,9.191176650347188e-05,4.955142741437657e-20,-4.242081558913924e-05,-2.659683454378503e-19,-1.7792036206143344e-20,1.0587911840678754e-21,1.2649697483764822e-20,3.030058223885135e-06,7.835054762102278e-21,1.6310499183511186e-20,0.00017045454296749085,-1.5500702934753696e-19,-2.4350649255211465e-05,-3.787878813454881e-05,7.209240122124061e-21,5.823351512373315e-21,1.0681576312559747e-20,7.835054762102278e-21,5.4112551879370585e-06,1.8994162280730174e-20,0.00018939393339678645,-4.0451848725167407e-19,-3.64886170303333e-19,-0.00014204545004758984,2.803593623164094e-20,1.2015401011333669e-20,2.4030802022667338e-20,1.6310499183511186e-20,1.8994162280730174e-20,1.578282899572514e-05,8.0,15.0,11.0,0.02692629024386406,-0.004861111287027597,-0.0028269831091165543,-0.003713820828124881,0.00025252526393160224,0.00018939393339678645,0.00025252526393160224,8.355615136679262e-05,0.00014204545004758984,0.00014568764891009778,-0.004861111287027597,0.002651515183970332,0.00018939393339678645,0.00025252526393160224,-0.00025252526393160224,-5.411255551734939e-05,-7.215006917249411e-05,-1.545835128739098e-20,8.470329472543003e-22,-2.8911395482985104e-35,-0.0028269831091165543,0.00018939393339678645,0.000776643690187484,0.00014204545004758984,0.0,-2.7056277758674696e-05,0.0,-3.856437615468167e-05,-2.029220740951132e-05,-7.335398898029036e-20,-0.003713820828124881,0.00025252526393160224,0.00014204545004758984,0.0014226398197934031,0.0,9.360814847453696e-22,-5.0505052058724687e-05,-7.623296525288703e-20,-2.840909110091161e-05,-9.712509927339852e-05,0.00025252526393160224,-0.00025252526393160224,0.0,0.0,3.607503458624706e-05,0.0,0.0,0.0,0.0,-0.0,0.00018939393339678645,-5.411255551734939e-05,-2.7056277758674696e-05,9.360814847453696e-22,0.0,7.730364814051427e-06,0.0,2.117582368135751e-21,-1.0587911840678754e-22,4.1301995597021045e-36,0.00025252526393160224,-7.215006917249411e-05,0.0,-5.0505052058724687e-05,0.0,0.0,1.4430014743993524e-05,0.0,0.0,-0.0,8.355615136679262e-05,-1.545835128739098e-20,-3.856437615468167e-05,-7.623296525288703e-20,0.0,2.117582368135751e-21,0.0,2.754598426690791e-06,2.541098841762901e-21,5.855050947527422e-21,0.00014204545004758984,8.470329472543003e-22,-2.029220740951132e-05,-2.840909110091161e-05,0.0,-1.0587911840678754e-22,0.0,2.541098841762901e-21,4.058441390952794e-06,-1.7233445742909616e-21,0.00014568764891009778,-2.8911395482985104e-35,-7.335398898029036e-20,-9.712509927339852e-05,-0.0,4.1301995597021045e-36,-0.0,5.855050947527422e-21,-1.7233445742909616e-21,9.71250938164303e-06,8.0,15.0,12.0,0.024936966598033905,-0.0044738249853253365,-0.0026014172472059727,-0.0031688797753304243,0.00023148147738538682,0.00017361111531499773,0.0002136752154910937,7.659313996555284e-05,0.0001201923078042455,0.00011446886492194608,-0.0044738249853253365,0.0024356429930776358,0.00017361111531499773,0.0002136752154910937,-0.00023148147738538682,-4.960317528457381e-05,-6.105006468715146e-05,1.7364175418713157e-20,-8.470329472543003e-22,3.3881317890172014e-21,-0.0026014172472059727,0.00017361111531499773,0.0007133542676456273,0.0001201923078042455,-3.8549411510712724e-20,-2.4801587642286904e-05,-1.1011428314305904e-20,-3.535068026394583e-05,-1.7170330465887673e-05,-7.453889935837843e-20,-0.0031688797753304243,0.0002136752154910937,0.0001201923078042455,0.0011027167784050107,-4.744542880599083e-20,-9.591088924512032e-21,-3.885003752657212e-05,-6.301631219960597e-20,-2.1853147700312547e-05,-6.868132186355069e-05,0.00023148147738538682,-0.00023148147738538682,-3.8549411510712724e-20,-4.744542880599083e-20,3.3068783523049206e-05,1.1014117459090269e-20,1.355583749410615e-20,-3.949661018762886e-36,2.138838616170672e-37,-7.52316384526264e-37,0.00017361111531499773,-4.960317528457381e-05,-2.4801587642286904e-05,-9.591088924512032e-21,1.1014117459090269e-20,7.086167897796258e-06,2.8525347657698168e-21,-2.541098841762901e-21,8.419278307507189e-23,-1.0415567189904585e-22,0.0002136752154910937,-6.105006468715146e-05,-1.1011428314305904e-20,-3.885003752657212e-05,1.355583749410615e-20,2.8525347657698168e-21,1.1100010851805564e-05,0.0,1.0587911840678754e-22,-8.470329472543003e-22,7.659313996555284e-05,1.7364175418713157e-20,-3.535068026394583e-05,-6.301631219960597e-20,-3.949661018762886e-36,-2.541098841762901e-21,0.0,2.5250485577998916e-06,1.9058241313221758e-21,4.4998625322884706e-21,0.0001201923078042455,-8.470329472543003e-22,-1.7170330465887673e-05,-2.1853147700312547e-05,2.138838616170672e-37,8.419278307507189e-23,1.0587911840678754e-22,1.9058241313221758e-21,3.1218780804920243e-06,2.117582368135751e-21,0.00011446886492194608,3.3881317890172014e-21,-7.453889935837843e-20,-6.868132186355069e-05,-7.52316384526264e-37,-1.0415567189904585e-22,-8.470329472543003e-22,4.4998625322884706e-21,2.117582368135751e-21,6.243756160984049e-06,8.0,15.0,13.0,0.023222140967845917,-0.00414377311244607,-0.0024092330131679773,-0.002735805930569768,0.0002136752154910937,0.00016025641525629908,0.00018315018678549677,7.070136052789167e-05,0.00010302197915734723,9.157509339274839e-05,-0.00414377311244607,0.002252311212942004,0.00016025641525629908,0.00018315018678549677,-0.0002136752154910937,-4.578754669637419e-05,-5.232862531556748e-05,3.3881317890172014e-21,-2.117582368135751e-21,1.1858461261560205e-20,-0.0024092330131679773,0.00016025641525629908,0.0006596129387617111,0.00010302197915734723,0.0,-2.2893773348187096e-05,-3.8116482626443515e-21,-3.263139660703018e-05,-1.471742507419549e-05,-5.166900978251232e-20,-0.002735805930569768,0.00018315018678549677,0.00010302197915734723,0.0008722180500626564,-0.0,-9.701081731658493e-22,-3.052503234357573e-05,-6.387199176920086e-20,-1.7170330465887673e-05,-4.995004928787239e-05,0.0002136752154910937,-0.0002136752154910937,0.0,-0.0,3.052503234357573e-05,0.0,0.0,0.0,0.0,0.0,0.00016025641525629908,-4.578754669637419e-05,-2.2893773348187096e-05,-9.701081731658493e-22,0.0,6.541078164445935e-06,7.481111907565531e-24,-4.235164736271502e-22,1.2497649428910197e-22,4.154525859926872e-23,0.00018315018678549677,-5.232862531556748e-05,-3.8116482626443515e-21,-3.052503234357573e-05,0.0,7.481111907565531e-24,8.72143755259458e-06,2.6469779601696886e-23,5.293955920339377e-22,-2.329340604949326e-21,7.070136052789167e-05,3.3881317890172014e-21,-3.263139660703018e-05,-6.387199176920086e-20,0.0,-4.235164736271502e-22,2.6469779601696886e-23,2.3308139134314843e-06,2.8587361969832636e-21,3.65282958503417e-21,0.00010302197915734723,-2.117582368135751e-21,-1.471742507419549e-05,-1.7170330465887673e-05,0.0,1.2497649428910197e-22,5.293955920339377e-22,2.8587361969832636e-21,2.4529042548238067e-06,0.0,9.157509339274839e-05,1.1858461261560205e-20,-5.166900978251232e-20,-4.995004928787239e-05,0.0,4.154525859926872e-23,-2.329340604949326e-21,3.65282958503417e-21,0.0,4.162503955740249e-06,8.0,15.0,14.0,0.021728524938225746,-0.003859126940369606,-0.002243522321805358,-0.0023859126958996058,0.00019841270113829523,0.00014880952949170023,0.00015873015217948705,6.565126386703923e-05,8.928571332944557e-05,7.440476474585012e-05,-0.003859126940369606,0.002094671130180359,0.00014880952949170023,0.00015873015217948705,-0.00019841270113829523,-4.251700738677755e-05,-4.535147309070453e-05,5.039846036163087e-20,-9.740878893424454e-21,5.759824041329242e-20,-0.002243522321805358,0.00014880952949170023,0.000613408803474158,8.928571332944557e-05,3.1310179467476366e-19,-2.1258503693388775e-05,-8.555032767268433e-20,-3.0300581784103997e-05,-1.2755102034134325e-05,-6.776263578034403e-21,-0.0023859126958996058,0.00015873015217948705,8.928571332944557e-05,0.0007018849137239158,3.3815060723106516e-19,-7.18862086821033e-20,-2.44200236920733e-05,7.770005569536792e-21,-1.3736264008912258e-05,-3.720238237292506e-05,0.00019841270113829523,-0.00019841270113829523,3.1310179467476366e-19,3.3815060723106516e-19,2.8344671591185033e-05,-2.9452327934273145e-20,-2.4792733917643844e-20,-1.2708596943905146e-20,-6.39060879278681e-21,-1.6521176592532187e-20,0.00014880952949170023,-4.251700738677755e-05,-2.1258503693388775e-05,-7.18862086821033e-20,-2.9452327934273145e-20,6.073858003219357e-06,3.1363441497871685e-21,2.117582368135751e-21,2.9420988775049896e-21,2.5545538553107423e-21,0.00015873015217948705,-4.535147309070453e-05,-8.555032767268433e-20,-2.44200236920733e-05,-2.4792733917643844e-20,3.1363441497871685e-21,6.977149951126194e-06,2.991085094991748e-21,3.864587821847745e-21,5.082197683525802e-21,6.565126386703923e-05,5.039846036163087e-20,-3.0300581784103997e-05,7.770005569536792e-21,-1.2708596943905146e-20,2.117582368135751e-21,2.991085094991748e-21,2.1643272702931426e-06,5.293955920339377e-22,-1.879354351720479e-21,8.928571332944557e-05,-9.740878893424454e-21,-1.2755102034134325e-05,-1.3736264008912258e-05,-6.39060879278681e-21,2.9420988775049896e-21,3.864587821847745e-21,5.293955920339377e-22,1.9623234948085155e-06,3.1763735522036263e-21,7.440476474585012e-05,5.759824041329242e-20,-6.776263578034403e-21,-3.720238237292506e-05,-1.6521176592532187e-20,2.5545538553107423e-21,5.082197683525802e-21,-1.879354351720479e-21,3.1763735522036263e-21,2.861721668523387e-06,8.0,15.0,15.0,0.020415816456079483,-0.003611111082136631,-0.0020991626661270857,-0.0020991626661270857,0.0001851851848186925,0.00013888889225199819,0.00013888889225199819,6.127451342763379e-05,7.812499825377017e-05,6.127451342763379e-05,-0.003611111082136631,0.0019576719496399164,0.00013888889225199819,0.00013888889225199819,-0.0001851851848186925,-3.968253804487176e-05,-3.968253804487176e-05,-1.418780186650953e-20,-1.6940658945086007e-21,-1.5246593050577406e-20,-0.0020991626661270857,0.00013888889225199819,0.0005732589634135365,7.812499825377017e-05,0.0,-1.984126902243588e-05,-4.235164736271502e-22,-2.8280543119763024e-05,-1.1160714166180696e-05,-2.795208725939191e-20,-0.0020991626661270857,0.00013888889225199819,7.812499825377017e-05,0.0005732589634135365,-0.0,-1.0276758846368661e-21,-1.984126902243588e-05,-4.3828817453324264e-20,-1.1160714166180696e-05,-2.8280543119763024e-05,0.0001851851848186925,-0.0001851851848186925,0.0,-0.0,2.6455027182237245e-05,0.0,0.0,0.0,0.0,0.0,0.00013888889225199819,-3.968253804487176e-05,-1.984126902243588e-05,-1.0276758846368661e-21,0.0,5.668934136338066e-06,9.099478198427257e-24,2.117582368135751e-21,1.2588682715195254e-22,-2.851879847135415e-23,0.00013888889225199819,-3.968253804487176e-05,-4.235164736271502e-22,-1.984126902243588e-05,0.0,9.099478198427257e-24,5.668934136338066e-06,0.0,1.0587911840678754e-22,1.9058241313221758e-21,6.127451342763379e-05,-1.418780186650953e-20,-2.8280543119763024e-05,-4.3828817453324264e-20,0.0,2.117582368135751e-21,0.0,2.0200388917146483e-06,1.5881867761018131e-21,2.355810384551023e-21,7.812499825377017e-05,-1.6940658945086007e-21,-1.1160714166180696e-05,-1.1160714166180696e-05,0.0,1.2588682715195254e-22,1.0587911840678754e-22,1.5881867761018131e-21,1.5943877542667906e-06,-5.293955920339377e-22,6.127451342763379e-05,-1.5246593050577406e-20,-2.795208725939191e-20,-2.8280543119763024e-05,0.0,-2.851879847135415e-23,1.9058241313221758e-21,2.355810384551023e-21,-5.293955920339377e-22,2.0200388917146483e-06,8.0,15.0,16.0,0.01925296150147915,-0.00339307589456439,-0.001972273224964738,-0.0018612132407724857,0.00017361111531499773,0.0001302083401242271,0.00012254902685526758,5.7444853155175224e-05,6.893382669659331e-05,5.1062092097708955e-05,-0.00339307589456439,0.0018375058425590396,0.0001302083401242271,0.00012254902685526758,-0.00017361111531499773,-3.720238237292506e-05,-3.501400715322234e-05,4.658681209898652e-21,2.541098841762901e-21,6.776263578034403e-21,-0.001972273224964738,0.0001302083401242271,0.0005380457732826471,6.893382669659331e-05,0.0,-1.860119118646253e-05,2.117582368135751e-21,-2.6513009288464673e-05,-9.847689398156945e-06,-2.922263668027336e-20,-0.0018612132407724857,0.00012254902685526758,6.893382669659331e-05,0.00047429389087483287,-0.0,1.0456569655403077e-21,-1.633986903470941e-05,-3.657255001311329e-20,-9.191176104650367e-06,-2.188375401601661e-05,0.00017361111531499773,-0.00017361111531499773,0.0,-0.0,2.4801587642286904e-05,0.0,0.0,0.0,0.0,0.0,0.0001302083401242271,-3.720238237292506e-05,-1.860119118646253e-05,1.0456569655403077e-21,0.0,5.314625923347194e-06,-3.6023866506889433e-23,-6.352747104407253e-22,-2.0263424318479627e-23,-2.8236121210020874e-23,0.00012254902685526758,-3.501400715322234e-05,2.117582368135751e-21,-1.633986903470941e-05,0.0,-3.6023866506889433e-23,4.668534074880881e-06,2.6469779601696886e-23,-3.1763735522036263e-22,-6.352747104407253e-22,5.7444853155175224e-05,4.658681209898652e-21,-2.6513009288464673e-05,-3.657255001311329e-20,0.0,-6.352747104407253e-22,2.6469779601696886e-23,1.8937863615064998e-06,1.0058516248644817e-21,1.9587636905255695e-21,6.893382669659331e-05,2.541098841762901e-21,-9.847689398156945e-06,-9.191176104650367e-06,0.0,-2.0263424318479627e-23,-3.1763735522036263e-22,1.0058516248644817e-21,1.3130252227711026e-06,3.1763735522036263e-22,5.1062092097708955e-05,6.776263578034403e-21,-2.922263668027336e-20,-2.188375401601661e-05,0.0,-2.8236121210020874e-23,-6.352747104407253e-22,1.9587636905255695e-21,3.1763735522036263e-22,1.4589169268219848e-06,8.0,16.0,3.0,0.07133374363183975,-0.015012254938483238,-0.008272059261798859,-0.031173406168818474,0.0008680555620230734,0.0006127451197244227,0.0026041667442768812,0.0002553104714024812,0.0013786765048280358,0.00390625,-0.015012254938483238,0.008629493415355682,0.0006127451197244227,0.0026041667442768812,-0.0008680555620230734,-0.00017507003212813288,-0.0007440476329065859,-7.454375904447718e-19,-1.768604793866979e-18,7.047314121155779e-18,-0.008272059261798859,0.0006127451197244227,0.002233601873740554,0.0013786765048280358,-1.0697039710941344e-18,-8.169934881152585e-05,-1.748276003132876e-18,-0.00010941876826109365,-0.00018382353300694376,-2.7647155398380363e-18,-0.031173406168818474,0.0026041667442768812,0.0013786765048280358,0.07023590803146362,1.5761969999180101e-18,-1.9799479928082057e-18,-0.0026041667442768812,-9.67145388310682e-20,-0.0013786765048280358,-0.0234375,0.0008680555620230734,-0.0008680555620230734,-1.0697039710941344e-18,1.5761969999180101e-18,0.00012400794366840273,-3.3881317890172014e-20,1.5596652008400726e-20,7.030373462210693e-20,9.764460003230751e-20,-1.2598655560897156e-18,0.0006127451197244227,-0.00017507003212813288,-8.169934881152585e-05,-1.9799479928082057e-18,-3.3881317890172014e-20,2.3342670829151757e-05,1.2996635935039029e-19,2.1175823681357508e-20,1.0376383017238192e-19,3.1565261288872406e-19,0.0026041667442768812,-0.0007440476329065859,-1.748276003132876e-18,-0.0026041667442768812,1.5596652008400726e-20,1.2996635935039029e-19,0.0007440476329065859,6.04086899420179e-20,2.642742795433417e-19,5.421010862427522e-19,0.0002553104714024812,-7.454375904447718e-19,-0.00010941876826109365,-9.67145388310682e-20,7.030373462210693e-20,2.1175823681357508e-20,6.04086899420179e-20,7.294584520423086e-06,5.5050116796722965e-22,-6.138838844235893e-20,0.0013786765048280358,-1.768604793866979e-18,-0.00018382353300694376,-0.0013786765048280358,9.764460003230751e-20,1.0376383017238192e-19,2.642742795433417e-19,5.5050116796722965e-22,0.00018382353300694376,2.4936649967166602e-18,0.00390625,7.047314121155779e-18,-2.7647155398380363e-18,-0.0234375,-1.2598655560897156e-18,3.1565261288872406e-19,5.421010862427522e-19,-6.138838844235893e-20,2.4936649967166602e-18,0.01171875,8.0,16.0,4.0,0.05798100307583809,-0.011649816296994686,-0.006410845555365086,-0.019875919446349144,0.0006510416860692203,0.0004595588252414018,0.0015625000232830644,0.00019148284627590328,0.0008272058912552893,0.001953125,-0.011649816296994686,0.006583727430552244,0.0004595588252414018,0.0015625000232830644,-0.0006510416860692203,-0.00013130252773407847,-0.00044642857392318547,7.248793734129588e-20,4.2690460541616737e-19,1.0842021724855044e-18,-0.006410845555365086,0.0004595588252414018,0.0017027748981490731,0.0008272058912552893,-1.778535769204926e-19,-6.127451342763379e-05,4.743384504624082e-19,-8.206407801480964e-05,-0.00011029411689378321,4.87890977618477e-19,-0.019875919446349144,0.0015625000232830644,0.0008272058912552893,0.02692248858511448,-2.0698422594677123e-18,2.282336389758427e-20,-0.0010416667209938169,1.909809461664062e-19,-0.0005514706135727465,-0.005859375,0.0006510416860692203,-0.0006510416860692203,-1.778535769204926e-19,-2.0698422594677123e-18,9.300595411332324e-05,7.453889935837843e-20,3.14820701837043e-19,-1.2705494208814505e-21,-3.080981209882936e-22,2.9020310887382305e-19,0.0004595588252414018,-0.00013130252773407847,-6.127451342763379e-05,2.282336389758427e-20,7.453889935837843e-20,1.750700357661117e-05,-8.914761337205528e-21,-3.8116482626443515e-21,-2.1042217856558856e-20,5.3543905113743256e-20,0.0015625000232830644,-0.00044642857392318547,4.743384504624082e-19,-0.0010416667209938169,3.14820701837043e-19,-8.914761337205528e-21,0.00029761905898340046,-1.4237791363606437e-20,-1.3891340334970526e-19,-2.087089182034596e-18,0.00019148284627590328,7.248793734129588e-20,-8.206407801480964e-05,1.909809461664062e-19,-1.2705494208814505e-21,-3.8116482626443515e-21,-1.4237791363606437e-20,5.4709385040041525e-06,-1.3159844162891996e-20,-8.058719068299075e-21,0.0008272058912552893,4.2690460541616737e-19,-0.00011029411689378321,-0.0005514706135727465,-3.080981209882936e-22,-2.1042217856558856e-20,-1.3891340334970526e-19,-1.3159844162891996e-20,7.352940883720294e-05,-3.9302328752599536e-19,0.001953125,1.0842021724855044e-18,4.87890977618477e-19,-0.005859375,2.9020310887382305e-19,5.3543905113743256e-20,-2.087089182034596e-18,-8.058719068299075e-21,-3.9302328752599536e-19,0.001953125,8.0,16.0,5.0,0.048923321068286896,-0.009528186172246933,-0.0052389707416296005,-0.013808648101985455,0.0005208333604969084,0.0003676470660138875,0.0010416667209938169,0.00015318627993110567,0.0005514706135727465,0.0011160714784637094,-0.009528186172246933,0.005326505750417709,0.0003676470660138875,0.0010416667209938169,-0.0005208333604969084,-0.0001050420178216882,-0.00029761905898340046,-1.8232384189648815e-19,-1.6263032587282567e-19,-1.1926223897340549e-18,-0.0052389707416296005,0.0003676470660138875,0.0013769257348030806,0.0005514706135727465,-3.8031779331718085e-19,-4.901960710412823e-05,-3.6422416731934915e-19,-6.565126386703923e-05,-7.352940883720294e-05,-1.3010426069826053e-18,-0.013808648101985455,0.0010416667209938169,0.0005514706135727465,0.01360075268894434,6.505213034913027e-19,-2.303929616531697e-19,-0.0005208333604969084,-6.098637220230962e-20,-0.00027573530678637326,-0.0022321429569274187,0.0005208333604969084,-0.0005208333604969084,-3.8031779331718085e-19,6.505213034913027e-19,7.440476474585012e-05,5.608846373535339e-21,-7.41102259306199e-20,2.0434669852509996e-20,-3.3604884873111232e-21,-9.603792447704543e-20,0.0003676470660138875,-0.0001050420178216882,-4.901960710412823e-05,-2.303929616531697e-19,5.608846373535339e-21,1.4005602679389995e-05,1.1858461261560205e-20,2.3062910233100797e-21,-1.6940658945086007e-21,4.573977915173222e-20,0.0010416667209938169,-0.00029761905898340046,-3.6422416731934915e-19,-0.0005208333604969084,-7.41102259306199e-20,1.1858461261560205e-20,0.00014880952949170023,4.5255564261691155e-21,1.0842021724855044e-19,7.860465750519907e-19,0.00015318627993110567,-1.8232384189648815e-19,-6.565126386703923e-05,-6.098637220230962e-20,2.0434669852509996e-20,2.3062910233100797e-21,4.5255564261691155e-21,4.376750894152792e-06,-1.280210934864716e-21,1.330964947988219e-20,0.0005514706135727465,-1.6263032587282567e-19,-7.352940883720294e-05,-0.00027573530678637326,-3.3604884873111232e-21,-1.6940658945086007e-21,1.0842021724855044e-19,-1.280210934864716e-21,3.676470441860147e-05,4.1335207826009857e-19,0.0011160714784637094,-1.1926223897340549e-18,-1.3010426069826053e-18,-0.0022321429569274187,-9.603792447704543e-20,4.573977915173222e-20,7.860465750519907e-19,1.330964947988219e-20,4.1335207826009857e-19,0.0005580357392318547,8.0,16.0,6.0,0.04234688729047775,-0.00806416291743517,-0.004431460052728653,-0.010162267833948135,0.0004340277810115367,0.00030637255986221135,0.0007440476329065859,0.0001276552357012406,0.00039390756865032017,0.0006975446594879031,-0.00806416291743517,0.004474185407161713,0.00030637255986221135,0.0007440476329065859,-0.0004340277810115367,-8.753501606406644e-05,-0.00021258502965793014,-4.0742284762931846e-19,-5.963111948670274e-19,-1.0842021724855044e-18,-0.004431460052728653,0.00030637255986221135,0.001156191690824926,0.00039390756865032017,-6.081696561285876e-19,-4.0849674405762926e-05,-5.683591076076355e-19,-5.470938413054682e-05,-5.25210089108441e-05,-3.6591823321385775e-19,-0.010162267833948135,0.0007440476329065859,0.00039390756865032017,0.007901403121650219,-7.047314121155779e-19,-7.724940478959219e-19,-0.00029761905898340046,-1.1858461261560205e-19,-0.00015756303037051111,-0.0010463169310241938,0.0004340277810115367,-0.0004340277810115367,-6.081696561285876e-19,-7.047314121155779e-19,6.200397183420137e-05,-1.5935172442913785e-20,4.6373328415113946e-20,3.631653761352813e-20,3.2948946399331237e-20,4.8851303036381394e-20,0.00030637255986221135,-8.753501606406644e-05,-4.0849674405762926e-05,-7.724940478959219e-19,-1.5935172442913785e-20,1.1671335414575879e-05,4.573977915173222e-20,1.0529376695437123e-20,3.176373552203626e-20,6.945670167485263e-20,0.0007440476329065859,-0.00021258502965793014,-5.683591076076355e-19,-0.00029761905898340046,4.6373328415113946e-20,4.573977915173222e-20,8.50340147735551e-05,2.0110313270399774e-20,4.319868030996932e-20,9.656175598699024e-20,0.0001276552357012406,-4.0742284762931846e-19,-5.470938413054682e-05,-1.1858461261560205e-19,3.631653761352813e-20,1.0529376695437123e-20,2.0110313270399774e-20,3.647292260211543e-06,2.642403021303288e-21,6.056923810565492e-21,0.00039390756865032017,-5.963111948670274e-19,-5.25210089108441e-05,-0.00015756303037051111,3.2948946399331237e-20,3.176373552203626e-20,4.319868030996932e-20,2.642403021303288e-21,2.100840356433764e-05,2.625802136488331e-20,0.0006975446594879031,-1.0842021724855044e-18,-3.6591823321385775e-19,-0.0010463169310241938,4.8851303036381394e-20,6.945670167485263e-20,9.656175598699024e-20,6.056923810565492e-21,2.625802136488331e-20,0.0002092633949359879,8.0,16.0,7.0,0.03734462708234787,-0.006991859059780836,-0.0038405987434089184,-0.007796087302267551,0.00037202381645329297,0.00026260505546815693,0.0005580357392318547,0.00010941876826109365,0.00029543068376369774,0.0004650297632906586,-0.006991859059780836,0.003857793053612113,0.00026260505546815693,0.0005580357392318547,-0.00037202381645329297,-7.503000961150974e-05,-0.0001594387722434476,-2.5368636770266295e-19,-2.574980159653073e-19,-1.8973538018496328e-19,-0.0038405987434089184,0.00026260505546815693,0.0009966486832126975,0.00029543068376369774,-3.0027317980164947e-19,-3.501400715322234e-05,-4.442687808348805e-19,-4.689375782618299e-05,-3.939075759262778e-05,1.6263032587282567e-19,-0.007796087302267551,0.0005580357392318547,0.00029543068376369774,0.005016850307583809,0.0,-3.4558944247975454e-19,-0.00018601190822664648,-1.6940658945086007e-20,-9.847689216258004e-05,-0.0005580357392318547,0.00037202381645329297,-0.00037202381645329297,-3.0027317980164947e-19,0.0,5.3146257414482534e-05,-1.952292617819476e-20,-1.558868877941777e-20,2.0858186326137146e-20,1.1940714841514513e-20,-2.2009880636649167e-21,0.00026260505546815693,-7.503000961150974e-05,-3.501400715322234e-05,-3.4558944247975454e-19,-1.952292617819476e-20,1.0004001524066553e-05,4.573977915173222e-20,7.710594776068591e-21,1.8211208365967457e-20,7.199780051661553e-21,0.0005580357392318547,-0.0001594387722434476,-4.442687808348805e-19,-0.00018601190822664648,-1.558868877941777e-20,4.573977915173222e-20,5.3146257414482534e-05,1.4072652509128467e-20,1.7787691892340307e-20,6.013933925505532e-20,0.00010941876826109365,-2.5368636770266295e-19,-4.689375782618299e-05,-1.6940658945086007e-20,2.0858186326137146e-20,7.710594776068591e-21,1.4072652509128467e-20,3.1262504762707977e-06,-5.1949194192898e-22,-4.6496496739234086e-21,0.00029543068376369774,-2.574980159653073e-19,-3.939075759262778e-05,-9.847689216258004e-05,1.1940714841514513e-20,1.8211208365967457e-20,1.7787691892340307e-20,-5.1949194192898e-22,1.3130252227711026e-05,-2.795208725939191e-20,0.0004650297632906586,-1.8973538018496328e-19,1.6263032587282567e-19,-0.0005580357392318547,-2.2009880636649167e-21,7.199780051661553e-21,6.013933925505532e-20,-4.6496496739234086e-21,-2.795208725939191e-20,9.300595411332324e-05,8.0,16.0,8.0,0.03340737521648407,-0.006172130350023508,-0.0033892462961375713,-0.006172130350023508,0.00032552084303461015,0.0002297794126207009,0.0004340277810115367,9.574142313795164e-05,0.0002297794126207009,0.00032552084303461015,-0.006172130350023508,0.003391070058569312,0.0002297794126207009,0.0004340277810115367,-0.00032552084303461015,-6.565126386703923e-05,-0.00012400794366840273,4.1081097941833566e-20,3.4558944247975454e-19,8.131516293641283e-19,-0.0033892462961375713,0.0002297794126207009,0.0008758972398936749,0.0002297794126207009,-9.740878893424454e-21,-3.0637256713816896e-05,1.8677076486957322e-19,-4.103203900740482e-05,-3.0637256713816896e-05,6.776263578034403e-19,-0.006172130350023508,0.0004340277810115367,0.0002297794126207009,0.003391070058569312,2.439454888092385e-19,4.607859233063394e-19,-0.00012400794366840273,2.354751593366955e-19,-6.565126386703923e-05,-0.00032552084303461015,0.00032552084303461015,-0.00032552084303461015,-9.740878893424454e-21,2.439454888092385e-19,4.650297705666162e-05,3.688202219095896e-20,7.606584891975718e-20,-9.529120656610879e-22,-2.5798415905859267e-20,-4.14181966596688e-20,0.0002297794126207009,-6.565126386703923e-05,-3.0637256713816896e-05,4.607859233063394e-19,3.688202219095896e-20,8.753501788305584e-06,-5.929230630780102e-21,-1.6922143306789639e-21,-1.3129010682441655e-20,-4.573977915173222e-20,0.0004340277810115367,-0.00012400794366840273,1.8677076486957322e-19,-0.00012400794366840273,7.606584891975718e-20,-5.929230630780102e-21,3.543083948898129e-05,-6.408763549307145e-21,-1.5670109524204556e-20,-4.0657581468206416e-20,9.574142313795164e-05,4.1081097941833566e-20,-4.103203900740482e-05,2.354751593366955e-19,-9.529120656610879e-22,-1.6922143306789639e-21,-6.408763549307145e-21,2.7354692520020762e-06,-5.883781741323002e-21,-2.2370049534859603e-20,0.0002297794126207009,3.4558944247975454e-19,-3.0637256713816896e-05,-6.565126386703923e-05,-2.5798415905859267e-20,-1.3129010682441655e-20,-1.5670109524204556e-20,-5.883781741323002e-21,8.753501788305584e-06,-3.5575383784680614e-20,0.00032552084303461015,8.131516293641283e-19,6.776263578034403e-19,-0.00032552084303461015,-4.14181966596688e-20,-4.573977915173222e-20,-4.0657581468206416e-20,-2.2370049534859603e-20,-3.5575383784680614e-20,4.650297705666162e-05,8.0,16.0,9.0,0.030225664377212524,-0.005524918437004089,-0.0030330882873386145,-0.005008726846426725,0.00028935185400769114,0.00020424836839083582,0.00034722223062999547,8.510348561685532e-05,0.00018382353300694376,0.0002367424312978983,-0.005524918437004089,0.003025307320058346,0.00020424836839083582,0.00034722223062999547,-0.00028935185400769114,-5.835667616338469e-05,-9.920635056914762e-05,2.168404344971009e-19,1.6940658945086007e-19,4.87890977618477e-19,-0.0030330882873386145,0.00020424836839083582,0.0007812986150383949,0.00018382353300694376,1.7957098481791167e-19,-2.7233116270508617e-05,2.2658131339052534e-19,-3.6472923966357484e-05,-2.4509803552064113e-05,8.470329472543003e-20,-0.005008726846426725,0.00034722223062999547,0.00018382353300694376,0.002402073470875621,3.3203691532368573e-19,2.710505431213761e-20,-8.680555765749887e-05,7.623296525288703e-20,-4.595588325173594e-05,-0.000202922077733092,0.00028935185400769114,-0.00028935185400769114,1.7957098481791167e-19,3.3203691532368573e-19,4.13359775848221e-05,3.632369466453127e-20,6.453451174106755e-20,-2.022291161569642e-20,-1.1236744558347106e-20,-5.579079907607577e-20,0.00020424836839083582,-5.835667616338469e-05,-2.7233116270508617e-05,2.710505431213761e-20,3.632369466453127e-20,7.780889973219018e-06,5.505714157152952e-21,-2.5822429993017447e-21,-8.470329472543003e-22,-5.293955920339377e-21,0.00034722223062999547,-9.920635056914762e-05,2.2658131339052534e-19,-8.680555765749887e-05,6.453451174106755e-20,5.505714157152952e-21,2.4801587642286904e-05,-1.1540505635674465e-20,-1.9058241313221758e-20,-8.046812998915853e-21,8.510348561685532e-05,2.168404344971009e-19,-3.6472923966357484e-05,7.623296525288703e-20,-2.022291161569642e-20,-2.5822429993017447e-21,-1.1540505635674465e-20,2.431528173474362e-06,-1.1571339923918373e-21,-3.1746153895051676e-21,0.00018382353300694376,1.6940658945086007e-19,-2.4509803552064113e-05,-4.595588325173594e-05,-1.1236744558347106e-20,-8.470329472543003e-22,-1.9058241313221758e-20,-1.1571339923918373e-21,6.127450888016028e-06,-4.0234064994579266e-21,0.0002367424312978983,4.87890977618477e-19,8.470329472543003e-20,-0.000202922077733092,-5.579079907607577e-20,-5.293955920339377e-21,-8.046812998915853e-21,-3.1746153895051676e-21,-4.0234064994579266e-21,2.53652597166365e-05,8.0,16.0,10.0,0.027599988505244255,-0.0050008357502520084,-0.00274481950327754,-0.004146473947912455,0.0002604166802484542,0.00018382353300694376,0.0002840909000951797,7.659313996555284e-05,0.00015040107246022671,0.00017755682347342372,-0.0050008357502520084,0.002730893436819315,0.00018382353300694376,0.0002840909000951797,-0.0002604166802484542,-5.25210089108441e-05,-8.116882963804528e-05,8.682087709356578e-21,-2.541098841762901e-21,-0.0,-0.00274481950327754,0.00018382353300694376,0.000705174112226814,0.00015040107246022671,-4.081702376245028e-20,-2.4509803552064113e-05,-1.1874042791673032e-20,-3.282563193351962e-05,-2.0053475964232348e-05,-0.0,-0.004146473947912455,0.0002840909000951797,0.00015040107246022671,0.0017648335779085755,-6.308085167443071e-20,-1.2497507560165002e-20,-6.313131598290056e-05,-1.6940658945086007e-21,-3.342246054671705e-05,-0.0001331676176050678,0.0002604166802484542,-0.0002604166802484542,-4.081702376245028e-20,-6.308085167443071e-20,3.720238237292506e-05,1.1662006673872428e-20,1.8023100709206936e-20,-1.88079096131566e-36,1.88079096131566e-37,-0.0,0.00018382353300694376,-5.25210089108441e-05,-2.4509803552064113e-05,-1.2497507560165002e-20,1.1662006673872428e-20,7.002801339694997e-06,3.3925835393646425e-21,-1.0587911840678754e-21,1.0587911840678754e-22,-0.0,0.0002840909000951797,-8.116882963804528e-05,-1.1874042791673032e-20,-6.313131598290056e-05,1.8023100709206936e-20,3.3925835393646425e-21,1.803751729312353e-05,-5.64237288394698e-37,4.70197740328915e-38,-0.0,7.659313996555284e-05,8.682087709356578e-21,-3.282563193351962e-05,-1.6940658945086007e-21,-1.88079096131566e-36,-1.0587911840678754e-21,-5.64237288394698e-37,2.188375447076396e-06,2.117582368135751e-22,-0.0,0.00015040107246022671,-2.541098841762901e-21,-2.0053475964232348e-05,-3.342246054671705e-05,1.88079096131566e-37,1.0587911840678754e-22,4.70197740328915e-38,2.117582368135751e-22,4.456328042579116e-06,-0.0,0.00017755682347342372,-0.0,-0.0,-0.0001331676176050678,-0.0,-0.0,-0.0,-0.0,-0.0,1.4796401956118643e-05,8.0,16.0,11.0,0.0253957137465477,-0.00456773629412055,-0.002506684511899948,-0.003489540424197912,0.0002367424312978983,0.00016711230273358524,0.0002367424312978983,6.963012128835544e-05,0.00012533421977423131,0.00013658216630574316,-0.00456773629412055,0.002488779602572322,0.00016711230273358524,0.0002367424312978983,-0.0002367424312978983,-4.774637272930704e-05,-6.764069257769734e-05,9.317362419797304e-21,0.0,-0.0,-0.002506684511899948,0.00016711230273358524,0.0006425865576602519,0.00012533421977423131,0.0,-2.228163975814823e-05,0.0,-2.9841481591574848e-05,-1.6711230273358524e-05,-0.0,-0.003489540424197912,0.0002367424312978983,0.00012533421977423131,0.0013352915411815047,0.0,3.358542108711566e-22,-4.734848334919661e-05,1.6940658945086007e-21,-2.5066845410037786e-05,-9.10547751118429e-05,0.0002367424312978983,-0.0002367424312978983,0.0,0.0,3.382034628884867e-05,0.0,0.0,0.0,0.0,-0.0,0.00016711230273358524,-4.774637272930704e-05,-2.228163975814823e-05,3.358542108711566e-22,0.0,6.366182788042352e-06,0.0,-1.4823076576950256e-21,-1.0587911840678754e-22,-0.0,0.0002367424312978983,-6.764069257769734e-05,0.0,-4.734848334919661e-05,0.0,0.0,1.3528138879337348e-05,0.0,0.0,-0.0,6.963012128835544e-05,9.317362419797304e-21,-2.9841481591574848e-05,1.6940658945086007e-21,0.0,-1.4823076576950256e-21,0.0,1.989432121263235e-06,-2.117582368135751e-22,-0.0,0.00012533421977423131,0.0,-1.6711230273358524e-05,-2.5066845410037786e-05,0.0,-1.0587911840678754e-22,0.0,-2.117582368135751e-22,3.3422459182474995e-06,-0.0,0.00013658216630574316,-0.0,-0.0,-9.10547751118429e-05,-0.0,-0.0,-0.0,-0.0,-0.0,9.105478056881111e-06,8.0,16.0,12.0,0.023518582805991173,-0.004203784745186567,-0.0023066317662596703,-0.002977452939376235,0.00021701389050576836,0.00015318627993110567,0.00020032051543239504,6.38276178506203e-05,0.00010605203715385869,0.0001073145613190718,-0.004203784745186567,0.0022861508186906576,0.00015318627993110567,0.00020032051543239504,-0.00021701389050576836,-4.376750803203322e-05,-5.723443246097304e-05,8.046812998915853e-21,1.2705494208814505e-21,-0.0,-0.0023066317662596703,0.00015318627993110567,0.0005902160773985088,0.00010605203715385869,0.0,-2.0424837202881463e-05,0.0,-2.735469206527341e-05,-1.4140271559881512e-05,-0.0,-0.002977452939376235,0.00020032051543239504,0.00010605203715385869,0.0010350020602345467,0.0,1.2528002777059184e-21,-3.6421912227524444e-05,8.470329472543003e-22,-1.9282188077340834e-05,-6.438873970182613e-05,0.00021701389050576836,-0.00021701389050576836,0.0,0.0,3.100198591710068e-05,0.0,0.0,0.0,0.0,-0.0,0.00015318627993110567,-4.376750803203322e-05,-2.0424837202881463e-05,1.2528002777059184e-21,0.0,5.835667707287939e-06,0.0,-1.2705494208814505e-21,-2.117582368135751e-22,-0.0,0.00020032051543239504,-5.723443246097304e-05,0.0,-3.6421912227524444e-05,0.0,0.0,1.0406260116724297e-05,0.0,0.0,-0.0,6.38276178506203e-05,8.046812998915853e-21,-2.735469206527341e-05,8.470329472543003e-22,0.0,-1.2705494208814505e-21,0.0,1.8236461301057716e-06,-1.0587911840678754e-22,-0.0,0.00010605203715385869,1.2705494208814505e-21,-1.4140271559881512e-05,-1.9282188077340834e-05,0.0,-2.117582368135751e-22,0.0,-1.0587911840678754e-22,2.5709584861033363e-06,-0.0,0.0001073145613190718,-0.0,-0.0,-6.438873970182613e-05,-0.0,-0.0,-0.0,-0.0,-0.0,5.853521543031093e-06,8.0,16.0,13.0,0.021900586783885956,-0.003893624758347869,-0.0021361911203712225,-0.0025704994332045317,0.00020032051543239504,0.00014140272105578333,0.00017170330102089792,5.891779801459052e-05,9.09017471713014e-05,8.585165051044896e-05,-0.003893624758347869,0.002114066854119301,0.00014140272105578333,0.00017170330102089792,-0.00020032051543239504,-4.0400776924798265e-05,-4.9058086005970836e-05,8.470329472543003e-21,8.470329472543003e-22,1.3552527156068805e-20,-0.0021361911203712225,0.00014140272105578333,0.0005457471706904471,9.09017471713014e-05,0.0,-1.885369601950515e-05,1.2705494208814505e-21,-2.5250485123251565e-05,-1.212023289554054e-05,8.470329472543003e-22,-0.0025704994332045317,0.00017170330102089792,9.09017471713014e-05,0.0008186513441614807,-0.0,-0.0,-2.861721623048652e-05,9.205663956534235e-22,-1.5150290892051999e-05,-4.682817234424874e-05,0.00020032051543239504,-0.00020032051543239504,0.0,-0.0,2.861721623048652e-05,0.0,0.0,0.0,0.0,0.0,0.00014140272105578333,-4.0400776924798265e-05,-1.885369601950515e-05,-0.0,0.0,5.386770226323279e-06,0.0,-1.0587911840678754e-21,0.0,3.269035489159166e-23,0.00017170330102089792,-4.9058086005970836e-05,1.2705494208814505e-21,-2.861721623048652e-05,0.0,0.0,8.176347364496905e-06,-2.6469779601696886e-23,-1.0587911840678754e-22,-1.9058241313221758e-21,5.891779801459052e-05,8.470329472543003e-21,-2.5250485123251565e-05,9.205663956534235e-22,0.0,-1.0587911840678754e-21,-2.6469779601696886e-23,1.6833656673043151e-06,0.0,0.0,9.09017471713014e-05,8.470329472543003e-22,-1.212023289554054e-05,-1.5150290892051999e-05,0.0,0.0,-1.0587911840678754e-22,0.0,2.0200388917146483e-06,-3.1763735522036263e-22,8.585165051044896e-05,1.3552527156068805e-20,8.470329472543003e-22,-4.682817234424874e-05,0.0,3.269035489159166e-23,-1.9058241313221758e-21,0.0,-3.1763735522036263e-22,3.9023475437716115e-06,8.0,16.0,14.0,0.020491398870944977,-0.0036261379718780518,-0.0019892333075404167,-0.002241716952994466,0.00018601190822664648,0.00013130252773407847,0.00014880952949170023,5.470938413054682e-05,7.878151518525556e-05,6.975446740398183e-05,-0.0036261379718780518,0.0019660990219563246,0.00013130252773407847,0.00014880952949170023,-0.00018601190822664648,-3.751500480575487e-05,-4.251700738677755e-05,-9.952637130238029e-21,-8.470329472543003e-22,-5.082197683525802e-21,-0.0019892333075404167,0.00013130252773407847,0.000507515505887568,7.878151518525556e-05,0.0,-1.750700357661117e-05,-8.470329472543003e-22,-2.3446878913091496e-05,-1.050420178216882e-05,-1.6940658945086007e-21,-0.002241716952994466,0.00014880952949170023,7.878151518525556e-05,0.0006587746320292354,-0.0,-1.1427918195590972e-21,-2.2893773348187096e-05,-1.2076964170760998e-21,-1.212023289554054e-05,-3.487723370199092e-05,0.00018601190822664648,-0.00018601190822664648,0.0,-0.0,2.6573128707241267e-05,0.0,0.0,0.0,0.0,0.0,0.00013130252773407847,-3.751500480575487e-05,-1.750700357661117e-05,-1.1427918195590972e-21,0.0,5.002000762033276e-06,9.695890156443434e-27,1.164670302474663e-21,1.2690436936726626e-22,4.1235857885910175e-24,0.00014880952949170023,-4.251700738677755e-05,-8.470329472543003e-22,-2.2893773348187096e-05,0.0,9.695890156443434e-27,6.541078164445935e-06,2.6469779601696886e-23,1.0587911840678754e-22,8.470329472543003e-22,5.470938413054682e-05,-9.952637130238029e-21,-2.3446878913091496e-05,-1.2076964170760998e-21,0.0,1.164670302474663e-21,2.6469779601696886e-23,1.5631252381353988e-06,1.0587911840678754e-22,0.0,7.878151518525556e-05,-8.470329472543003e-22,-1.050420178216882e-05,-1.212023289554054e-05,0.0,1.2690436936726626e-22,1.0587911840678754e-22,1.0587911840678754e-22,1.616030999684881e-06,2.117582368135751e-22,6.975446740398183e-05,-5.082197683525802e-21,-1.6940658945086007e-21,-3.487723370199092e-05,0.0,4.1235857885910175e-24,8.470329472543003e-22,0.0,2.117582368135751e-22,2.68286407845153e-06,8.0,16.0,15.0,0.01925296150147915,-0.00339307589456439,-0.0018612132407724857,-0.001972273224964738,0.00017361111531499773,0.00012254902685526758,0.0001302083401242271,5.1062092097708955e-05,6.893382669659331e-05,5.7444853155175224e-05,-0.00339307589456439,0.0018375058425590396,0.00012254902685526758,0.0001302083401242271,-0.00017361111531499773,-3.501400715322234e-05,-3.720238237292506e-05,4.658681209898652e-21,2.541098841762901e-21,6.776263578034403e-21,-0.0018612132407724857,0.00012254902685526758,0.00047429389087483287,6.893382669659331e-05,0.0,-1.633986903470941e-05,1.2705494208814505e-21,-2.188375401601661e-05,-9.191176104650367e-06,1.2705494208814505e-21,-0.001972273224964738,0.0001302083401242271,6.893382669659331e-05,0.0005380457732826471,-0.0,-4.666803170317514e-22,-1.860119118646253e-05,-1.3350053900462103e-21,-9.847689398156945e-06,-2.6513009288464673e-05,0.00017361111531499773,-0.00017361111531499773,0.0,-0.0,2.4801587642286904e-05,0.0,0.0,0.0,0.0,0.0,0.00012254902685526758,-3.501400715322234e-05,-1.633986903470941e-05,-4.666803170317514e-22,0.0,4.668534074880881e-06,4.260373954011979e-23,-7.411538288475128e-22,-4.4398051000699293e-23,7.605776543050694e-23,0.0001302083401242271,-3.720238237292506e-05,1.2705494208814505e-21,-1.860119118646253e-05,0.0,4.260373954011979e-23,5.314625923347194e-06,3.970466940254533e-23,-2.6469779601696886e-22,-1.0587911840678754e-21,5.1062092097708955e-05,4.658681209898652e-21,-2.188375401601661e-05,-1.3350053900462103e-21,0.0,-7.411538288475128e-22,3.970466940254533e-23,1.4589169268219848e-06,0.0,5.293955920339377e-23,6.893382669659331e-05,2.541098841762901e-21,-9.191176104650367e-06,-9.847689398156945e-06,0.0,-4.4398051000699293e-23,-2.6469779601696886e-22,0.0,1.3130252227711026e-06,-4.235164736271502e-22,5.7444853155175224e-05,6.776263578034403e-21,1.2705494208814505e-21,-2.6513009288464673e-05,0.0,7.605776543050694e-23,-1.0587911840678754e-21,5.293955920339377e-23,-4.235164736271502e-22,1.8937863615064998e-06,8.0,16.0,16.0,0.018155952915549278,-0.0031881893519312143,-0.0017486888682469726,-0.0017486888682469726,0.00016276042151730508,0.00011488970631035045,0.00011488970631035045,4.787071156897582e-05,6.0823960666311905e-05,4.787071156897582e-05,-0.0031881893519312143,0.001724713365547359,0.00011488970631035045,0.00011488970631035045,-0.00016276042151730508,-3.282563193351962e-05,-3.282563193351962e-05,4.235164736271502e-21,-2.541098841762901e-21,3.3881317890172014e-21,-0.0017486888682469726,0.00011488970631035045,0.00044515737681649625,6.0823960666311905e-05,0.0,-1.5318628356908448e-05,-1.2705494208814505e-21,-2.051601950370241e-05,-8.1098614828079e-06,-1.6940658945086007e-21,-0.0017486888682469726,0.00011488970631035045,6.0823960666311905e-05,0.00044515737681649625,-0.0,3.8611247603391485e-22,-1.5318628356908448e-05,4.473619338782302e-22,-8.1098614828079e-06,-2.051601950370241e-05,0.00016276042151730508,-0.00016276042151730508,0.0,-0.0,2.325148852833081e-05,0.0,0.0,0.0,0.0,0.0,0.00011488970631035045,-3.282563193351962e-05,-1.5318628356908448e-05,3.8611247603391485e-22,0.0,4.376750894152792e-06,-1.3286792115246554e-23,-6.352747104407253e-22,-7.034183550573472e-24,-2.497579064317864e-23,0.00011488970631035045,-3.282563193351962e-05,-1.2705494208814505e-21,-1.5318628356908448e-05,0.0,-1.3286792115246554e-23,4.376750894152792e-06,-2.6469779601696886e-23,2.117582368135751e-22,-6.352747104407253e-22,4.787071156897582e-05,4.235164736271502e-21,-2.051601950370241e-05,4.473619338782302e-22,0.0,-6.352747104407253e-22,-2.6469779601696886e-23,1.3677346260010381e-06,5.293955920339377e-23,-5.293955920339377e-23,6.0823960666311905e-05,-2.541098841762901e-21,-8.1098614828079e-06,-8.1098614828079e-06,0.0,-7.034183550573472e-24,2.117582368135751e-22,5.293955920339377e-23,1.0813148492161417e-06,3.1763735522036263e-22,4.787071156897582e-05,3.3881317890172014e-21,-1.6940658945086007e-21,-2.051601950370241e-05,0.0,-2.497579064317864e-23,-6.352747104407253e-22,-5.293955920339377e-23,3.1763735522036263e-22,1.3677346260010381e-06,9.0,3.0,3.0,0.23945005238056183,-0.05656565725803375,-0.12777778506278992,-0.12777778506278992,0.003367003286257386,0.011111111380159855,0.011111111380159855,0.018518518656492233,0.02777777798473835,0.018518518656492233,-0.05656565725803375,0.030495431274175644,0.011111111380159855,0.011111111380159855,-0.0028860028833150864,-0.0027777778450399637,-0.0027777778450399637,-1.9081958235744878e-17,1.734723475976807e-18,-1.5612511283791264e-17,-0.12777778506278992,0.011111111380159855,0.31296294927597046,0.02777777798473835,-1.5475989879977909e-18,-0.011111111380159855,4.336808689942018e-19,-0.1111111119389534,-0.02777777798473835,2.40782631388244e-17,-0.12777778506278992,0.011111111380159855,0.02777777798473835,0.31296294927597046,-8.327938084910242e-19,1.1551391138665207e-18,-0.011111111380159855,1.8026005935539285e-17,-0.02777777798473835,-0.1111111119389534,0.003367003286257386,-0.0028860028833150864,-1.5475989879977909e-18,-8.327938084910242e-19,0.0003607503604143858,-1.0586430024159548e-19,-9.821007491621554e-20,1.091583828874351e-18,-1.594384685335308e-19,7.124942436704466e-19,0.011111111380159855,-0.0027777778450399637,-0.011111111380159855,1.1551391138665207e-18,-1.0586430024159548e-19,0.0027777778450399637,-6.209977669385161e-20,9.106922708880138e-18,-2.694918246545965e-19,-3.47348157709013e-19,0.011111111380159855,-0.0027777778450399637,4.336808689942018e-19,-0.011111111380159855,-9.821007491621554e-20,-6.209977669385161e-20,0.0027777778450399637,-2.117952272965927e-19,2.168404344971009e-19,1.0408340855860843e-17,0.018518518656492233,-1.9081958235744878e-17,-0.1111111119389534,1.8026005935539285e-17,1.091583828874351e-18,9.106922708880138e-18,-2.117952272965927e-19,0.0555555559694767,4.628210357674036e-18,-1.1324470681223535e-17,0.02777777798473835,1.734723475976807e-18,-0.02777777798473835,-0.02777777798473835,-1.594384685335308e-19,-2.694918246545965e-19,2.168404344971009e-19,4.628210357674036e-18,0.02777777798473835,0.0,0.018518518656492233,-1.5612511283791264e-17,2.40782631388244e-17,-0.1111111119389534,7.124942436704466e-19,-3.47348157709013e-19,1.0408340855860843e-17,-1.1324470681223535e-17,0.0,0.0555555559694767,9.0,3.0,4.0,0.1978282779455185,-0.04409090802073479,-0.10000000149011612,-0.08222222328186035,0.0025252525229007006,0.008333333767950535,0.006666666828095913,0.013888888992369175,0.01666666753590107,0.009259259328246117,-0.04409090802073479,0.023288238793611526,0.008333333767950535,0.006666666828095913,-0.0021645021624863148,-0.0020833334419876337,-0.0016666667070239782,3.209238430557093e-17,-7.56790075665391e-19,-2.408832000071182e-17,-0.10000000149011612,0.008333333767950535,0.23888888955116272,0.01666666753590107,3.372621945736679e-18,-0.008333333767950535,8.503244643477713e-18,-0.0833333358168602,-0.01666666753590107,9.848831753626912e-18,-0.08222222328186035,0.006666666828095913,0.01666666753590107,0.1196296289563179,-6.7220534694101275e-18,-3.1115531978621334e-18,-0.004444444552063942,4.876945718538324e-17,-0.011111111380159855,-0.02777777798473835,0.0025252525229007006,-0.0021645021624863148,3.372621945736679e-18,-6.7220534694101275e-18,0.00027056277031078935,-1.3552527156068805e-20,4.87890977618477e-19,-1.7457806060199566e-18,1.8225275606259687e-19,1.3786223256703052e-18,0.008333333767950535,-0.0020833334419876337,-0.008333333767950535,-3.1115531978621334e-18,-1.3552527156068805e-20,0.0020833334419876337,9.93151365157981e-20,-9.066371006530339e-18,-4.767910409786279e-19,1.114286007581022e-18,0.006666666828095913,-0.0016666667070239782,8.503244643477713e-18,-0.004444444552063942,4.87890977618477e-19,9.93151365157981e-20,0.0011111111380159855,-4.536279572346424e-18,5.253969492540681e-20,5.791357820640989e-18,0.013888888992369175,3.209238430557093e-17,-0.0833333358168602,4.876945718538324e-17,-1.7457806060199566e-18,-9.066371006530339e-18,-4.536279572346424e-18,0.0416666679084301,5.282627681850463e-19,-1.0022846566270305e-17,0.01666666753590107,-7.56790075665391e-19,-0.01666666753590107,-0.011111111380159855,1.8225275606259687e-19,-4.767910409786279e-19,5.253969492540681e-20,5.282627681850463e-19,0.011111111380159855,2.8207981785739784e-18,0.009259259328246117,-2.408832000071182e-17,9.848831753626912e-18,-0.02777777798473835,1.3786223256703052e-18,1.114286007581022e-18,5.791357820640989e-18,-1.0022846566270305e-17,2.8207981785739784e-18,0.009259259328246117,9.0,3.0,5.0,0.16869649291038513,-0.03616161644458771,-0.08222222328186035,-0.05746031925082207,0.002020202111452818,0.006666666828095913,0.004444444552063942,0.011111111380159855,0.011111111380159855,0.005291005130857229,-0.03616161644458771,0.01885281316936016,0.006666666828095913,0.004444444552063942,-0.0017316017765551805,-0.0016666667070239782,-0.0011111111380159855,1.1443109060578953e-17,2.6309077020241615e-18,1.7760370375201622e-19,-0.08222222328186035,0.006666666828095913,0.19333332777023315,0.011111111380159855,2.1150902797452817e-18,-0.006666666828095913,4.1169986770458515e-18,-0.06666667014360428,-0.011111111380159855,9.398713151500056e-18,-0.05746031925082207,0.004444444552063942,0.011111111380159855,0.060476191341876984,3.7947076036992655e-19,1.8000682628266586e-18,-0.002222222276031971,3.761647510721236e-17,-0.0055555556900799274,-0.010582010261714458,0.002020202111452818,-0.0017316017765551805,2.1150902797452817e-18,3.7947076036992655e-19,0.00021645022206939757,-8.131516293641283e-20,-5.421010862427522e-20,-7.411932750229739e-19,-1.5372157775093249e-19,7.636808488283014e-21,0.006666666828095913,-0.0016666667070239782,-0.006666666828095913,1.8000682628266586e-18,-8.131516293641283e-20,0.0016666667070239782,-1.3552527156068805e-19,-1.306144760398409e-18,-7.409256303960247e-19,-1.0215531931013574e-19,0.004444444552063942,-0.0011111111380159855,4.1169986770458515e-18,-0.002222222276031971,-5.421010862427522e-20,-1.3552527156068805e-19,0.0005555555690079927,-1.5019422371000437e-18,-2.312964755266249e-19,-1.9168649245482273e-19,0.011111111380159855,1.1443109060578953e-17,-0.06666667014360428,3.761647510721236e-17,-7.411932750229739e-19,-1.306144760398409e-18,-1.5019422371000437e-18,0.03333333507180214,-1.5716459762648353e-17,-4.351124291213167e-18,0.011111111380159855,2.6309077020241615e-18,-0.011111111380159855,-0.0055555556900799274,-1.5372157775093249e-19,-7.409256303960247e-19,-2.312964755266249e-19,-1.5716459762648353e-17,0.0055555556900799274,-1.8898371857739693e-19,0.005291005130857229,1.7760370375201622e-19,9.398713151500056e-18,-0.010582010261714458,7.636808488283014e-21,-1.0215531931013574e-19,-1.9168649245482273e-19,-4.351124291213167e-18,-1.8898371857739693e-19,0.0026455025654286146,9.0,3.0,6.0,0.14710597693920135,-0.030663780868053436,-0.06984127312898636,-0.04246031865477562,0.001683501643128693,0.0055555556900799274,0.0031746032182127237,0.009259259328246117,0.007936508394777775,0.003306878264993429,-0.030663780868053436,0.015842953696846962,0.0055555556900799274,0.0031746032182127237,-0.0014430014416575432,-0.0013888889225199819,-0.0007936508045531809,2.4050407004516063e-17,5.071799609635704e-18,4.378565594444307e-18,-0.06984127312898636,0.0055555556900799274,0.16243386268615723,0.007936508394777775,9.570339066534396e-18,-0.0055555556900799274,2.6846911922475125e-19,-0.0555555559694767,-0.007936508394777775,1.0746601478113377e-17,-0.04246031865477562,0.0031746032182127237,0.007936508394777775,0.035171955823898315,4.537550948947918e-18,1.2210132963084062e-18,-0.0012698412174358964,4.1626262905065215e-17,-0.0031746032182127237,-0.004960317630320787,0.001683501643128693,-0.0014430014416575432,9.570339066534396e-18,4.537550948947918e-18,0.0001803751802071929,-4.460057567236653e-19,-2.1431739145714637e-19,-3.2264196336243096e-18,-5.333905641998391e-19,-6.29378153444141e-19,0.0055555556900799274,-0.0013888889225199819,-0.0055555556900799274,1.2210132963084062e-18,-4.460057567236653e-19,0.0013888889225199819,-1.0842021724855044e-19,1.5343341128997374e-18,-7.873324273142044e-19,7.610557258471469e-34,0.0031746032182127237,-0.0007936508045531809,2.6846911922475125e-19,-0.0012698412174358964,-2.1431739145714637e-19,-1.0842021724855044e-19,0.0003174603043589741,9.637352716119468e-20,-1.1014117459090269e-20,2.6258378086522474e-19,0.009259259328246117,2.4050407004516063e-17,-0.0555555559694767,4.1626262905065215e-17,-3.2264196336243096e-18,1.5343341128997374e-18,9.637352716119468e-20,0.02777777798473835,-1.1722934335638292e-17,-6.057764571803492e-18,0.007936508394777775,5.071799609635704e-18,-0.007936508394777775,-0.0031746032182127237,-5.333905641998391e-19,-7.873324273142044e-19,-1.1014117459090269e-20,-1.1722934335638292e-17,0.0031746032182127237,5.475709214408357e-19,0.003306878264993429,4.378565594444307e-18,1.0746601478113377e-17,-0.004960317630320787,-6.29378153444141e-19,7.610557258471469e-34,2.6258378086522474e-19,-6.057764571803492e-18,5.475709214408357e-19,0.0009920635493472219,9.0,3.0,7.0,0.13044331967830658,-0.026623375713825226,-0.06071428582072258,-0.032671958208084106,0.0014430014416575432,0.004761904943734407,0.0023809524718672037,0.007936508394777775,0.0059523810632526875,0.002204585587605834,-0.026623375713825226,0.013664708472788334,0.004761904943734407,0.0023809524718672037,-0.0012368584284558892,-0.0011904762359336019,-0.0005952381179668009,2.1195712412005733e-17,3.139180203140792e-18,2.749008620776573e-18,-0.06071428582072258,0.004761904943734407,0.14007936418056488,0.0059523810632526875,7.923692955001623e-18,-0.004761904943734407,2.032656897867668e-19,-0.0476190485060215,-0.0059523810632526875,7.636454487292584e-18,-0.032671958208084106,0.0023809524718672037,0.0059523810632526875,0.022354496642947197,3.203586553585702e-18,1.9732477522983438e-20,-0.0007936508045531809,2.8280057754824286e-17,-0.0019841270986944437,-0.0026455025654286146,0.0014430014416575432,-0.0012368584284558892,7.923692955001623e-18,3.203586553585702e-18,0.00015460730355698615,-2.987670648519494e-19,-1.028590561409623e-19,-2.746377359248042e-18,-4.1195659871732747e-19,-3.9669894212605716e-19,0.004761904943734407,-0.0011904762359336019,-0.004761904943734407,1.9732477522983438e-20,-2.987670648519494e-19,0.0011904762359336019,-4.743384504624082e-20,7.753064619786022e-19,1.7000290912432837e-19,6.956445161761753e-34,0.0023809524718672037,-0.0005952381179668009,2.032656897867668e-19,-0.0007936508045531809,-1.028590561409623e-19,-4.743384504624082e-20,0.00019841270113829523,5.2430804118466885e-34,-4.510104950820566e-21,1.415276172027996e-19,0.007936508394777775,2.1195712412005733e-17,-0.0476190485060215,2.8280057754824286e-17,-2.746377359248042e-18,7.753064619786022e-19,5.2430804118466885e-34,0.02380952425301075,-5.3706934657659215e-18,-3.818227243646292e-18,0.0059523810632526875,3.139180203140792e-18,-0.0059523810632526875,-0.0019841270986944437,-4.1195659871732747e-19,1.7000290912432837e-19,-4.510104950820566e-21,-5.3706934657659215e-18,0.0019841270986944437,1.8365890676468803e-33,0.002204585587605834,2.749008620776573e-18,7.636454487292584e-18,-0.0026455025654286146,-3.9669894212605716e-19,6.956445161761753e-34,1.415276172027996e-19,-3.818227243646292e-18,1.8365890676468803e-33,0.00044091709423810244,9.0,3.0,8.0,0.11718574911355972,-0.023526936769485474,-0.05370370298624039,-0.025925925001502037,0.0012626262614503503,0.004166666883975267,0.0018518518190830946,0.0069444444961845875,0.004629629664123058,0.0015432098880410194,-0.023526936769485474,0.01201449055224657,0.004166666883975267,0.0018518518190830946,-0.0010822510812431574,-0.0010416667209938169,-0.00046296295477077365,2.1365861809646666e-17,2.4123498337802474e-18,1.8431436932253575e-18,-0.05370370298624039,0.004166666883975267,0.12314815074205399,0.004629629664123058,6.995449896748704e-18,-0.004166666883975267,-2.981555974335137e-19,-0.0416666679084301,-0.004629629664123058,5.095750210681871e-18,-0.025925925001502037,0.0018518518190830946,0.004629629664123058,0.015123456716537476,2.6922255668569517e-18,-2.361151386368701e-19,-0.0005291005363687873,2.1122629350525448e-17,-0.0013227512827143073,-0.0015432098880410194,0.0012626262614503503,-0.0010822510812431574,6.995449896748704e-18,2.6922255668569517e-18,0.00013528138515539467,-2.6895857750283536e-19,-1.2103877994486445e-19,-2.403080241040825e-18,-3.181301480702911e-19,-2.702870037172014e-19,0.004166666883975267,-0.0010416667209938169,-0.004166666883975267,-2.361151386368701e-19,-2.6895857750283536e-19,0.0010416667209938169,4.857916061485145e-20,-2.141220915295832e-18,2.9493922840622345e-20,-6.123135317099618e-22,0.0018518518190830946,-0.00046296295477077365,-2.981555974335137e-19,-0.0005291005363687873,-1.2103877994486445e-19,4.857916061485145e-20,0.00013227513409219682,1.2586526782902948e-33,3.241392856407135e-20,8.809142651444724e-20,0.0069444444961845875,2.1365861809646666e-17,-0.0416666679084301,2.1122629350525448e-17,-2.403080241040825e-18,-2.141220915295832e-18,1.2586526782902948e-33,0.02083333395421505,-3.132904383833352e-18,-2.569960620900948e-18,0.004629629664123058,2.4123498337802474e-18,-0.004629629664123058,-0.0013227512827143073,-3.181301480702911e-19,2.9493922840622345e-20,3.241392856407135e-20,-3.132904383833352e-18,0.0013227512827143073,0.0,0.0015432098880410194,1.8431436932253575e-18,5.095750210681871e-18,-0.0015432098880410194,-2.702870037172014e-19,-6.123135317099618e-22,8.809142651444724e-20,-2.569960620900948e-18,0.0,0.00022045854711905122,9.0,3.0,9.0,0.1063823401927948,-0.021077441051602364,-0.04814814776182175,-0.021077441051602364,0.0011223345063626766,0.003703703638166189,0.00148148147854954,0.006172839552164078,0.003703703638166189,0.0011223345063626766,-0.021077441051602364,0.010720699094235897,0.003703703638166189,0.00148148147854954,-0.0009620009805075824,-0.0009259259095415473,-0.000370370369637385,-9.495938306338314e-18,-1.0299920638612292e-18,-8.944667923005412e-19,-0.04814814776182175,0.003703703638166189,0.10987654328346252,0.003703703638166189,-3.4599449214620644e-18,-0.003703703638166189,8.131516293641283e-20,-0.03703703731298447,-0.003703703638166189,-1.7889335846010823e-18,-0.021077441051602364,0.00148148147854954,0.003703703638166189,0.010720699094235897,-1.1844924450835774e-18,-1.859744872077173e-19,-0.000370370369637385,-7.262642469493133e-18,-0.0009259259095415473,-0.0009620009805075824,0.0011223345063626766,-0.0009620009805075824,-3.4599449214620644e-18,-1.1844924450835774e-18,0.0001202501225634478,2.026510945916399e-19,7.757866532488863e-20,1.0680356511961915e-18,1.283173360251746e-19,9.173495031759018e-20,0.003703703638166189,-0.0009259259095415473,-0.003703703638166189,-1.859744872077173e-19,2.026510945916399e-19,0.0009259259095415473,1.6176453919012114e-20,9.516537171542416e-19,1.1658240901822037e-19,3.9130668964357553e-23,0.00148148147854954,-0.000370370369637385,8.131516293641283e-20,-0.000370370369637385,7.757866532488863e-20,1.6176453919012114e-20,9.259259240934625e-05,9.558600271978588e-34,-2.608009513824058e-20,4.743384504624082e-20,0.006172839552164078,-9.495938306338314e-18,-0.03703703731298447,-7.262642469493133e-18,1.0680356511961915e-18,9.516537171542416e-19,9.558600271978588e-34,0.018518518656492233,1.2518544638517033e-33,9.078303086866416e-19,0.003703703638166189,-1.0299920638612292e-18,-0.003703703638166189,-0.0009259259095415473,1.283173360251746e-19,1.1658240901822037e-19,-2.608009513824058e-20,1.2518544638517033e-33,0.0009259259095415473,0.0,0.0011223345063626766,-8.944667923005412e-19,-1.7889335846010823e-18,-0.0009620009805075824,9.173495031759018e-20,3.9130668964357553e-23,4.743384504624082e-20,9.078303086866416e-19,0.0,0.0001202501225634478,9.0,3.0,10.0,0.09740740805864334,-0.019090909510850906,-0.04363636299967766,-0.017474748194217682,0.001010101055726409,0.0033333334140479565,0.001212121220305562,0.0055555556900799274,0.0030303029343485832,0.0008417508215643466,-0.019090909510850906,0.009678931906819344,0.0033333334140479565,0.001212121220305562,-0.0008658008882775903,-0.0008333333535119891,-0.0003030303050763905,-8.546344889294789e-18,-1.0842021724855044e-18,-6.640738306473715e-19,-0.04363636299967766,0.0033333334140479565,0.09919191896915436,0.0030303029343485832,-3.0642194416700115e-18,-0.0033333334140479565,-1.3552527156068805e-19,-0.03333333507180214,-0.0030303029343485832,-1.2739375526704677e-18,-0.017474748194217682,0.001212121220305562,0.0030303029343485832,0.007881593890488148,-9.72919083136908e-19,-1.0937908759956133e-19,-0.000269360258243978,-5.9926811740272075e-18,-0.0006734006456099451,-0.0006313131307251751,0.001010101055726409,-0.0008658008882775903,-3.0642194416700115e-18,-9.72919083136908e-19,0.00010822511103469878,1.657320334500493e-19,5.890497252362453e-20,9.612320550572994e-19,1.0640603245698382e-19,6.979160642536003e-20,0.0033333334140479565,-0.0008333333535119891,-0.0033333334140479565,-1.0937908759956133e-19,1.657320334500493e-19,0.0008333333535119891,-2.821593848775072e-21,8.564883454388174e-19,9.421828868814216e-20,1.3278234993908823e-21,0.001212121220305562,-0.0003030303050763905,-1.3552527156068805e-19,-0.000269360258243978,5.890497252362453e-20,-2.821593848775072e-21,6.73400645609945e-05,7.065276194016223e-34,3.17949454342888e-20,2.0328790734103208e-20,0.0055555556900799274,-8.546344889294789e-18,-0.03333333507180214,-5.9926811740272075e-18,9.612320550572994e-19,8.564883454388174e-19,7.065276194016223e-34,0.01666666753590107,8.666684749742561e-34,6.65853458036491e-19,0.0030303029343485832,-1.0842021724855044e-18,-0.0030303029343485832,-0.0006734006456099451,1.0640603245698382e-19,9.421828868814216e-20,3.17949454342888e-20,8.666684749742561e-34,0.0006734006456099451,0.0,0.0008417508215643466,-6.640738306473715e-19,-1.2739375526704677e-18,-0.0006313131307251751,6.979160642536003e-20,1.3278234993908823e-21,2.0328790734103208e-20,6.65853458036491e-19,0.0,7.014590664766729e-05,9.0,3.0,11.0,0.0898318886756897,-0.017447199672460556,-0.03989899158477783,-0.01472416426986456,0.0009182736393995583,0.0030303029343485832,0.001010101055726409,0.005050505045801401,0.0025252525229007006,0.0006475006230175495,-0.017447199672460556,0.008821985684335232,0.0030303029343485832,0.001010101055726409,-0.0007870916742831469,-0.0007575757335871458,-0.00025252526393160224,1.2928918173806916e-17,1.395910297075087e-18,7.589415207398531e-19,-0.03989899158477783,0.0030303029343485832,0.09040404111146927,0.0025252525229007006,5.4575656280574656e-18,-0.0030303029343485832,1.7618285302889447e-19,-0.03030303120613098,-0.0025252525229007006,1.9786689647860456e-18,-0.01472416426986456,0.001010101055726409,0.0025252525229007006,0.005966502707451582,1.486982468926869e-18,1.44903250809749e-19,-0.00020202020823489875,1.180410887787057e-17,-0.0005050505278632045,-0.00043166711111553013,0.0009182736393995583,-0.0007870916742831469,5.4575656280574656e-18,1.486982468926869e-18,9.838645928539336e-05,-2.7334615026696976e-19,-7.277880118653337e-20,-1.7476947019574043e-18,-1.7375833495471326e-19,-1.0199904679784857e-19,0.0030303029343485832,-0.0007575757335871458,-0.0030303029343485832,1.44903250809749e-19,-2.7334615026696976e-19,0.0007575757335871458,-3.9964513974812084e-20,1.0526391316595888e-18,1.9551009929343215e-20,1.40127838986562e-21,0.001010101055726409,-0.00025252526393160224,1.7618285302889447e-19,-0.00020202020823489875,-7.277880118653337e-20,-3.9964513974812084e-20,5.0505052058724687e-05,9.940387980156205e-34,-1.4247452978563898e-21,1.1858461261560205e-20,0.005050505045801401,1.2928918173806916e-17,-0.03030303120613098,1.180410887787057e-17,-1.7476947019574043e-18,1.0526391316595888e-18,9.940387980156205e-34,0.01515151560306549,-1.739927062415225e-18,-1.006418140186504e-18,0.0025252525229007006,1.395910297075087e-18,-0.0025252525229007006,-0.0005050505278632045,-1.7375833495471326e-19,1.9551009929343215e-20,-1.4247452978563898e-21,-1.739927062415225e-18,0.0005050505278632045,6.776263578034403e-21,0.0006475006230175495,7.589415207398531e-19,1.9786689647860456e-18,-0.00043166711111553013,-1.0199904679784857e-19,1.40127838986562e-21,1.1858461261560205e-20,-1.006418140186504e-18,6.776263578034403e-21,4.316671038395725e-05,9.0,3.0,12.0,0.08335152268409729,-0.016064491122961044,-0.036752138286828995,-0.012576312758028507,0.0008417508215643466,0.0027777778450399637,0.0008547008619643748,0.004629629664123058,0.0021367522422224283,0.000508750497829169,-0.016064491122961044,0.008104627020657063,0.0027777778450399637,0.0008547008619643748,-0.0007215007208287716,-0.0006944444612599909,-0.0002136752154910937,1.2816427400763992e-17,1.1655173354219173e-18,6.505213034913027e-19,-0.036752138286828995,0.0027777778450399637,0.08304843306541443,0.0021367522422224283,4.928847496945209e-18,-0.0027777778450399637,0.0,-0.02777777798473835,-0.0021367522422224283,1.5449880957918438e-18,-0.012576312758028507,0.0008547008619643748,0.0021367522422224283,0.0046268547885119915,1.2426414843872536e-18,-3.139377334377729e-33,-0.0001554001501062885,1.1027809799156905e-17,-0.0003885003970935941,-0.0003052503161597997,0.0008417508215643466,-0.0007215007208287716,4.928847496945209e-18,1.2426414843872536e-18,9.018759010359645e-05,-2.278475976613733e-19,-5.0986876582840174e-20,-1.602053425095499e-18,-1.4788185064737004e-19,-8.098292067350208e-20,0.0027777778450399637,-0.0006944444612599909,-0.0027777778450399637,-3.139377334377729e-33,-2.278475976613733e-19,0.0006944444612599909,1.2881192222174142e-34,4.047386476302466e-33,3.7360488996345137e-34,2.0459316168056234e-34,0.0008547008619643748,-0.0002136752154910937,0.0,-0.0001554001501062885,-5.0986876582840174e-20,1.2881192222174142e-34,3.885003752657212e-05,9.14816723583937e-34,1.6940658945086007e-21,0.0,0.004629629664123058,1.2816427400763992e-17,-0.02777777798473835,1.1027809799156905e-17,-1.602053425095499e-18,4.047386476302466e-33,9.14816723583937e-34,0.013888888992369175,-2.453743399198473e-18,-7.794606147136318e-19,0.0021367522422224283,1.1655173354219173e-18,-0.0021367522422224283,-0.0003885003970935941,-1.4788185064737004e-19,3.7360488996345137e-34,1.6940658945086007e-21,-2.453743399198473e-18,0.0003885003970935941,0.0,0.000508750497829169,6.505213034913027e-19,1.5449880957918438e-18,-0.0003052503161597997,-8.098292067350208e-20,2.0459316168056234e-34,0.0,-7.794606147136318e-19,0.0,2.775002758426126e-05,9.0,3.0,13.0,0.07774447649717331,-0.014885114505887032,-0.034065935760736465,-0.01086691115051508,0.0007770007941871881,0.0025641026441007853,0.0007326007471419871,0.004273504484444857,0.0018315018387511373,0.0004070004215463996,-0.014885114505887032,0.007495282683521509,0.0025641026441007853,0.0007326007471419871,-0.000666000647470355,-0.0006410256610251963,-0.00018315018678549677,-5.9152740258948014e-18,-5.014435047745458e-19,-2.439454888092385e-19,-0.034065935760736465,0.0025641026441007853,0.07680097967386246,0.0018315018387511373,-1.859086151966245e-18,-0.0025641026441007853,0.0,-0.025641025975346565,-0.0018315018387511373,-5.963111948670274e-19,-0.01086691115051508,0.0007326007471419871,0.0018315018387511373,0.003661153605207801,-5.954046049156693e-19,-0.0,-0.00012210012937430292,-3.697046524678192e-18,-0.0003052503161597997,-0.0002220002206740901,0.0007770007941871881,-0.000666000647470355,-1.859086151966245e-18,-5.954046049156693e-19,8.325008093379438e-05,0.0,3.69794905627467e-20,7.394092532368502e-19,6.337793876130796e-20,3.200905919714359e-20,0.0025641026441007853,-0.0006410256610251963,-0.0025641026441007853,-0.0,0.0,0.0006410256610251963,0.0,0.0,0.0,0.0,0.0007326007471419871,-0.00018315018678549677,0.0,-0.00012210012937430292,3.69794905627467e-20,0.0,3.052503234357573e-05,3.1296361596292583e-34,0.0,0.0,0.004273504484444857,-5.9152740258948014e-18,-0.025641025975346565,-3.697046524678192e-18,7.394092532368502e-19,0.0,3.1296361596292583e-34,0.012820512987673283,5.7777898331617076e-34,3.0808719315691993e-19,0.0018315018387511373,-5.014435047745458e-19,-0.0018315018387511373,-0.0003052503161597997,6.337793876130796e-20,0.0,0.0,5.7777898331617076e-34,0.0003052503161597997,0.0,0.0004070004215463996,-2.439454888092385e-19,-5.963111948670274e-19,-0.0002220002206740901,3.200905919714359e-20,0.0,0.0,3.0808719315691993e-19,0.0,1.850001899583731e-05,9.0,3.0,14.0,0.07284511625766754,-0.013867244124412537,-0.0317460335791111,-0.009484127163887024,0.0007215007208287716,0.0023809524718672037,0.0006349206087179482,0.003968254197388887,0.0015873016091063619,0.0003306878206785768,-0.013867244124412537,0.0069712428376078606,0.0023809524718672037,0.0006349206087179482,-0.0006184292142279446,-0.0005952381179668009,-0.00015873015217948705,1.0985509436992168e-17,8.809142651444724e-19,4.1335207826009857e-19,-0.0317460335791111,0.0023809524718672037,0.0714285746216774,0.0015873016091063619,4.130028426054787e-18,-0.0023809524718672037,-6.776263578034403e-21,-0.02380952425301075,-0.0015873016091063619,9.893344823930228e-19,-0.009484127163887024,0.0006349206087179482,0.0015873016091063619,0.002947191707789898,9.990483745189627e-19,-2.1634029457983697e-33,-9.76800947682932e-05,7.76527545998853e-18,-0.00024420025874860585,-0.0001653439103392884,0.0007215007208287716,-0.0006184292142279446,4.130028426054787e-18,9.990483745189627e-19,7.730365177849308e-05,-1.6739823369767253e-19,-5.494096146955704e-20,-1.373188679624021e-18,-1.0985509126799438e-19,-5.1494574839665933e-20,0.0023809524718672037,-0.0005952381179668009,-0.0023809524718672037,-2.1634029457983697e-33,-1.6739823369767253e-19,0.0005952381179668009,1.189726442045002e-34,2.973590019241569e-33,2.3788720245768047e-34,1.1150962112978402e-34,0.0006349206087179482,-0.00015873015217948705,-6.776263578034403e-21,-9.76800947682932e-05,-5.494096146955704e-20,1.189726442045002e-34,2.44200236920733e-05,9.62964972193618e-34,0.0,0.0,0.003968254197388887,1.0985509436992168e-17,-0.02380952425301075,7.76527545998853e-18,-1.373188679624021e-18,2.973590019241569e-33,9.62964972193618e-34,0.011904762126505375,-1.322016805389653e-18,-4.956353010071399e-19,0.0015873016091063619,8.809142651444724e-19,-0.0015873016091063619,-0.00024420025874860585,-1.0985509126799438e-19,2.3788720245768047e-34,0.0,-1.322016805389653e-18,0.00024420025874860585,0.0,0.0003306878206785768,4.1335207826009857e-19,9.893344823930228e-19,-0.0001653439103392884,-5.1494574839665933e-20,1.1150962112978402e-34,0.0,-4.956353010071399e-19,0.0,1.2718763173324987e-05,9.0,3.0,15.0,0.06852726638317108,-0.012979798018932343,-0.029722223058342934,-0.008349672891199589,0.0006734006456099451,0.002222222276031971,0.0005555555690079927,0.003703703638166189,0.0013888889225199819,0.00027233114815317094,-0.012979798018932343,0.006515752989798784,0.002222222276031971,0.0005555555690079927,-0.0005772005533799529,-0.0005555555690079927,-0.00013888889225199819,-5.126570960305597e-18,-3.8624702394796095e-19,-1.6940658945086007e-19,-0.029722223058342934,0.002222222276031971,0.06675925850868225,0.0013888889225199819,-2.2013637700684905e-18,-0.002222222276031971,0.0,-0.02222222276031971,-0.0013888889225199819,-4.2012834183813297e-19,-0.008349672891199589,0.0005555555690079927,0.0013888889225199819,0.0024078264832496643,-3.4237548390846803e-19,-6.919748615851981e-34,-7.936507608974352e-05,-2.8327712043503772e-18,-0.00019841270113829523,-0.0001256913092220202,0.0006734006456099451,-0.0005772005533799529,-2.2013637700684905e-18,-3.4237548390846803e-19,7.215006917249411e-05,1.4582246819014563e-19,-7.896037988075944e-39,6.408213700381996e-19,4.8061604045334676e-20,2.1022420451820135e-20,0.002222222276031971,-0.0005555555690079927,-0.002222222276031971,-6.919748615851981e-34,1.4582246819014563e-19,0.0005555555690079927,0.0,1.2951636246623312e-33,9.713727414556224e-35,4.2488401152730604e-35,0.0005555555690079927,-0.00013888889225199819,0.0,-7.936507608974352e-05,-7.896037988075944e-39,0.0,1.984126902243588e-05,0.0,-8.470329472543003e-22,0.0,0.003703703638166189,-5.126570960305597e-18,-0.02222222276031971,-2.8327712043503772e-18,6.408213700381996e-19,1.2951636246623312e-33,0.0,0.011111111380159855,4.333342374871281e-34,2.0234079846435594e-19,0.0013888889225199819,-3.8624702394796095e-19,-0.0013888889225199819,-0.00019841270113829523,4.8061604045334676e-20,9.713727414556224e-35,-8.470329472543003e-22,4.333342374871281e-34,0.00019841270113829523,0.0,0.00027233114815317094,-1.6940658945086007e-19,-4.2012834183813297e-19,-0.0001256913092220202,2.1022420451820135e-20,4.2488401152730604e-35,0.0,2.0234079846435594e-19,0.0,8.977950528787915e-06,9.0,3.0,16.0,0.06469309329986572,-0.01219919789582491,-0.027941176667809486,-0.007407407276332378,0.0006313131307251751,0.0020833334419876337,0.0004901961074210703,0.0034722222480922937,0.0012254902394488454,0.0002269426331622526,-0.01219919789582491,0.006116177421063185,0.0020833334419876337,0.0004901961074210703,-0.0005411255406215787,-0.0005208333604969084,-0.00012254902685526758,-6.071532165918825e-18,4.87890977618477e-19,4.2775163836342167e-19,-0.027941176667809486,0.0020833334419876337,0.06266339868307114,0.0012254902394488454,1.110156101577698e-18,-0.0020833334419876337,-4.607859233063394e-19,-0.02083333395421505,-0.0012254902394488454,6.542110977099603e-19,-0.007407407276332378,0.0004901961074210703,0.0012254902394488454,0.00199268595315516,1.0706496453294356e-18,8.402566836762659e-19,-6.535947613883764e-05,1.6263032587282567e-18,-0.0001633986976230517,-9.726112330099568e-05,0.0006313131307251751,-0.0005411255406215787,1.110156101577698e-18,1.0706496453294356e-18,6.764069257769734e-05,-2.354430543891708e-19,-9.19450994296184e-20,2.43422891607864e-19,-9.740878893424454e-20,-3.3457801416544863e-20,0.0020833334419876337,-0.0005208333604969084,-0.0020833334419876337,8.402566836762659e-19,-2.354430543891708e-19,0.0005208333604969084,-1.0164395367051604e-20,1.6534083130403943e-18,2.0328790734103208e-19,-6.408734953414875e-20,0.0004901961074210703,-0.00012254902685526758,-4.607859233063394e-19,-6.535947613883764e-05,-9.19450994296184e-20,-1.0164395367051604e-20,1.633986903470941e-05,2.168404344971009e-19,4.235164736271502e-21,-8.677038999563164e-21,0.0034722222480922937,-6.071532165918825e-18,-0.02083333395421505,1.6263032587282567e-18,2.43422891607864e-19,1.6534083130403943e-18,2.168404344971009e-19,0.010416666977107525,-6.505213034913027e-19,-1.1307221639006332e-19,0.0012254902394488454,4.87890977618477e-19,-0.0012254902394488454,-0.0001633986976230517,-9.740878893424454e-20,2.0328790734103208e-19,4.235164736271502e-21,-6.505213034913027e-19,0.0001633986976230517,-1.7364175418713157e-20,0.0002269426331622526,4.2775163836342167e-19,6.542110977099603e-19,-9.726112330099568e-05,-3.3457801416544863e-20,-6.408734953414875e-20,-8.677038999563164e-21,-1.1307221639006332e-19,-1.7364175418713157e-20,6.484075129264966e-06,9.0,4.0,3.0,0.1978282779455185,-0.04409090802073479,-0.08222222328186035,-0.10000000149011612,0.0025252525229007006,0.006666666828095913,0.008333333767950535,0.009259259328246117,0.01666666753590107,0.013888888992369175,-0.04409090802073479,0.023288238793611526,0.006666666828095913,0.008333333767950535,-0.0021645021624863148,-0.0016666667070239782,-0.0020833334419876337,-2.297403326934776e-17,-2.704824768357053e-18,2.7356384869455723e-17,-0.08222222328186035,0.006666666828095913,0.1196296289563179,0.01666666753590107,-7.499590837500785e-18,-0.004444444552063942,-4.3010840517555596e-19,-0.02777777798473835,-0.011111111380159855,8.498565448188624e-17,-0.10000000149011612,0.008333333767950535,0.01666666753590107,0.23888888955116272,3.206091670070819e-18,1.0448981893716798e-17,-0.008333333767950535,4.4839684222543866e-17,-0.01666666753590107,-0.0833333358168602,0.0025252525229007006,-0.0021645021624863148,-7.499590837500785e-18,3.206091670070819e-18,0.00027056277031078935,4.82162700177759e-19,-8.774808678351377e-21,1.5071203877346256e-18,4.175483913569742e-19,-1.8780796663965347e-18,0.006666666828095913,-0.0016666667070239782,-0.004444444552063942,1.0448981893716798e-17,4.82162700177759e-19,0.0011111111380159855,2.1476243724491977e-20,5.777648129168535e-18,-1.541976460428509e-19,-5.108842411827054e-18,0.008333333767950535,-0.0020833334419876337,-4.3010840517555596e-19,-0.008333333767950535,-8.774808678351377e-21,2.1476243724491977e-20,0.0020833334419876337,1.9858616104049239e-19,-3.04705652963409e-19,-3.647781301755759e-18,0.009259259328246117,-2.297403326934776e-17,-0.02777777798473835,4.4839684222543866e-17,1.5071203877346256e-18,5.777648129168535e-18,1.9858616104049239e-19,0.009259259328246117,1.9401167647719398e-18,-2.4263278626434134e-17,0.01666666753590107,-2.704824768357053e-18,-0.011111111380159855,-0.01666666753590107,4.175483913569742e-19,-1.541976460428509e-19,-3.04705652963409e-19,1.9401167647719398e-18,0.011111111380159855,1.4222465697259178e-17,0.013888888992369175,2.7356384869455723e-17,8.498565448188624e-17,-0.0833333358168602,-1.8780796663965347e-18,-5.108842411827054e-18,-3.647781301755759e-18,-2.4263278626434134e-17,1.4222465697259178e-17,0.0416666679084301,9.0,4.0,4.0,0.16267676651477814,-0.03431818261742592,-0.06416666507720947,-0.06416666507720947,0.0018939394503831863,0.004999999888241291,0.004999999888241291,0.0069444444961845875,0.009999999776482582,0.0069444444961845875,-0.03431818261742592,0.017778679728507996,0.004999999888241291,0.004999999888241291,-0.001623376621864736,-0.0012499999720603228,-0.0012499999720603228,-1.485390068699522e-19,2.514694823019902e-18,4.387554566160921e-18,-0.06416666507720947,0.004999999888241291,0.09138888865709305,0.009999999776482582,5.608498069105143e-19,-0.0033333334140479565,3.993948116303076e-18,-0.02083333395421505,-0.006666666828095913,-5.9995914408644755e-18,-0.06416666507720947,0.004999999888241291,0.009999999776482582,0.09138888865709305,2.0398832252471136e-18,4.996373559070363e-18,-0.0033333334140479565,1.0640371635126867e-18,-0.006666666828095913,-0.02083333395421505,0.0018939394503831863,-0.001623376621864736,5.608498069105143e-19,2.0398832252471136e-18,0.000202922077733092,-5.467582423383965e-20,-9.043027323409239e-20,-1.503496729190881e-20,-1.4381761502986437e-19,-4.423034513982428e-19,0.004999999888241291,-0.0012499999720603228,-0.0033333334140479565,4.996373559070363e-18,-5.467582423383965e-20,0.0008333333535119891,-2.5320132967097717e-19,1.094362742142223e-18,-2.695551039714568e-19,-1.0849640058296658e-18,0.004999999888241291,-0.0012499999720603228,3.993948116303076e-18,-0.0033333334140479565,-9.043027323409239e-20,-2.5320132967097717e-19,0.0008333333535119891,-7.924290489596616e-19,-2.7594623742616535e-19,4.822714744283097e-19,0.0069444444961845875,-1.485390068699522e-19,-0.02083333395421505,1.0640371635126867e-18,-1.503496729190881e-20,1.094362742142223e-18,-7.924290489596616e-19,0.0069444444961845875,-3.99445323931401e-20,8.86024586968825e-19,0.009999999776482582,2.514694823019902e-18,-0.006666666828095913,-0.006666666828095913,-1.4381761502986437e-19,-2.695551039714568e-19,-2.7594623742616535e-19,-3.99445323931401e-20,0.004444444552063942,5.314580841732774e-18,0.0069444444961845875,4.387554566160921e-18,-5.9995914408644755e-18,-0.02083333395421505,-4.423034513982428e-19,-1.0849640058296658e-18,4.822714744283097e-19,8.86024586968825e-19,5.314580841732774e-18,0.0069444444961845875,9.0,4.0,5.0,0.13830015063285828,-0.028121212497353554,-0.052666667848825455,-0.04476190358400345,0.0015151514671742916,0.004000000189989805,0.0033333334140479565,0.0055555556900799274,0.006666666828095913,0.003968254197388887,-0.028121212497353554,0.014389610849320889,0.004000000189989805,0.0033333334140479565,-0.0012987012742087245,-0.0010000000474974513,-0.0008333333535119891,-9.732841799797736e-19,-1.6704273473485197e-18,-2.0901917297171293e-18,-0.052666667848825455,0.004000000189989805,0.07400000095367432,0.006666666828095913,1.9166918628544447e-20,-0.0026666666381061077,-5.162076964316399e-19,-0.01666666753590107,-0.004444444552063942,-1.1107194115748465e-18,-0.04476190358400345,0.0033333334140479565,0.006666666828095913,0.04619047790765762,-7.921488415271593e-19,3.474862193231269e-19,-0.0016666667070239782,-1.533428195032627e-19,-0.0033333334140479565,-0.007936508394777775,0.0015151514671742916,-0.0012987012742087245,1.9166918628544447e-20,-7.921488415271593e-19,0.00016233765927609056,8.748132265155256e-20,-2.3129646906427634e-20,-1.762540034862711e-19,1.0693996461768973e-19,1.8106436894099667e-19,0.004000000189989805,-0.0010000000474974513,-0.0026666666381061077,3.474862193231269e-19,8.748132265155256e-20,0.0006666666595265269,2.0665246448259152e-20,1.2449963641936155e-18,2.8344134680590247e-19,-2.1976506079975283e-19,0.0033333334140479565,-0.0008333333535119891,-5.162076964316399e-19,-0.0016666667070239782,-2.3129646906427634e-20,2.0665246448259152e-20,0.00041666667675599456,-5.563389325363212e-20,2.4903608754586054e-19,3.8320361967922523e-19,0.0055555556900799274,-9.732841799797736e-19,-0.01666666753590107,-1.533428195032627e-19,-1.762540034862711e-19,1.2449963641936155e-18,-5.563389325363212e-20,0.0055555556900799274,5.905028360032566e-19,-1.4455344388351858e-19,0.006666666828095913,-1.6704273473485197e-18,-0.004444444552063942,-0.0033333334140479565,1.0693996461768973e-19,2.8344134680590247e-19,2.4903608754586054e-19,5.905028360032566e-19,0.002222222276031971,1.2821820618357837e-18,0.003968254197388887,-2.0901917297171293e-18,-1.1107194115748465e-18,-0.007936508394777775,1.8106436894099667e-19,-2.1976506079975283e-19,3.8320361967922523e-19,-1.4455344388351858e-19,1.2821820618357837e-18,0.0019841270986944437,9.0,4.0,6.0,0.12034270912408829,-0.023831168189644814,-0.044682539999485016,-0.03303571417927742,0.0012626262614503503,0.0033333334140479565,0.0023809524718672037,0.004629629664123058,0.004761904943734407,0.0024801588151603937,-0.023831168189644814,0.012090547941625118,0.0033333334140479565,0.0023809524718672037,-0.0010822510812431574,-0.0008333333535119891,-0.0005952381179668009,8.416156587046293e-18,2.5834719958215424e-18,3.5715177308202076e-18,-0.044682539999485016,0.0033333334140479565,0.06219576671719551,0.004761904943734407,5.317319223150631e-18,-0.002222222276031971,-8.68502032312202e-20,-0.013888888992369175,-0.0031746032182127237,-1.862971495514751e-32,-0.03303571417927742,0.0023809524718672037,0.004761904943734407,0.026855159550905228,3.356335173065816e-18,-3.185657362109827e-19,-0.0009523809421807528,-2.7264745111390367e-32,-0.0019047618843615055,-0.0037202381063252687,0.0012626262614503503,-0.0010822510812431574,5.317319223150631e-18,3.356335173065816e-18,0.00013528138515539467,-2.822734194797659e-19,-1.254548128919495e-19,-1.1214373975668493e-18,-3.2956527380398314e-19,-4.720336150831057e-19,0.0033333334140479565,-0.0008333333535119891,-0.002222222276031971,-3.185657362109827e-19,-2.822734194797659e-19,0.0005555555690079927,4.743384504624082e-20,3.7022854213890086e-19,8.588689970911392e-20,1.0638469994071405e-33,0.0023809524718672037,-0.0005952381179668009,-8.68502032312202e-20,-0.0009523809421807528,-1.254548128919495e-19,4.743384504624082e-20,0.0002380952355451882,9.55048752424799e-34,-3.031204970287704e-20,8.19004836926736e-20,0.004629629664123058,8.416156587046293e-18,-0.013888888992369175,-2.7264745111390367e-32,-1.1214373975668493e-18,3.7022854213890086e-19,9.55048752424799e-34,0.004629629664123058,2.586364547665445e-33,3.9130006560386006e-33,0.004761904943734407,2.5834719958215424e-18,-0.0031746032182127237,-0.0019047618843615055,-3.2956527380398314e-19,8.588689970911392e-20,-3.031204970287704e-20,2.586364547665445e-33,0.0012698412174358964,1.0541298855586635e-33,0.0024801588151603937,3.5715177308202076e-18,-1.862971495514751e-32,-0.0037202381063252687,-4.720336150831057e-19,1.0638469994071405e-33,8.19004836926736e-20,3.9130006560386006e-33,1.0541298855586635e-33,0.0007440476329065859,9.0,4.0,7.0,0.10654281079769135,-0.020681818947196007,-0.03880952298641205,-0.02539682574570179,0.0010822510812431574,0.0028571428265422583,0.0017857142956927419,0.003968254197388887,0.0035714285913854837,0.0016534391324967146,-0.020681818947196007,0.010427102446556091,0.0028571428265422583,0.0017857142956927419,-0.0009276437922380865,-0.0007142857066355646,-0.00044642857392318547,7.428675816406002e-18,1.9920043570313192e-18,2.2407795466421017e-18,-0.03880952298641205,0.0028571428265422583,0.05365079268813133,0.0035714285913854837,4.528026377784676e-18,-0.0019047618843615055,-1.0030202761005921e-19,-0.011904762126505375,-0.0023809524718672037,-1.1244884019773607e-32,-0.02539682574570179,0.0017857142956927419,0.0035714285913854837,0.01706349290907383,2.706608790143177e-18,-1.0192566683022717e-19,-0.0005952381179668009,-2.2141422043624537e-32,-0.0011904762359336019,-0.0019841270986944437,0.0010822510812431574,-0.0009276437922380865,4.528026377784676e-18,2.706608790143177e-18,0.00011595547402976081,-2.257020462487756e-19,-1.376756438852933e-19,-9.612320550572994e-19,-2.471739488906388e-19,-2.9752420013219434e-19,0.0028571428265422583,-0.0007142857066355646,-0.0019047618843615055,-1.0192566683022717e-19,-2.257020462487756e-19,0.0004761904710903764,2.710505431213761e-20,1.7412026524679642e-19,-4.329700817411229e-21,5.217333871321315e-34,0.0017857142956927419,-0.00044642857392318547,-1.0030202761005921e-19,-0.0005952381179668009,-1.376756438852933e-19,2.710505431213761e-20,0.00014880952949170023,1.1250676635529268e-33,-2.706063010882018e-21,4.647134608652721e-20,0.003968254197388887,7.428675816406002e-18,-0.011904762126505375,-2.2141422043624537e-32,-9.612320550572994e-19,1.7412026524679642e-19,1.1250676635529268e-33,0.003968254197388887,1.895263317155198e-33,2.4663761454762523e-33,0.0035714285913854837,1.9920043570313192e-18,-0.0023809524718672037,-0.0011904762359336019,-2.471739488906388e-19,-4.329700817411229e-21,-2.706063010882018e-21,1.895263317155198e-33,0.0007936508045531809,5.862740881350215e-34,0.0016534391324967146,2.2407795466421017e-18,-1.1244884019773607e-32,-0.0019841270986944437,-2.9752420013219434e-19,5.217333871321315e-34,4.647134608652721e-20,2.4663761454762523e-33,5.862740881350215e-34,0.0003306878206785768,9.0,4.0,8.0,0.09559763967990875,-0.018270201981067657,-0.03430555388331413,-0.02013888955116272,0.0009469697251915932,0.0024999999441206455,0.0013888889225199819,0.0034722222480922937,0.0027777778450399637,0.0011574074160307646,-0.018270201981067657,0.00916711799800396,0.0024999999441206455,0.0013888889225199819,-0.000811688310932368,-0.0006249999860301614,-0.00034722223062999547,7.627937008525126e-18,1.463672932855431e-18,1.3552527156068805e-18,-0.03430555388331413,0.0024999999441206455,0.047175925225019455,0.0027777778450399637,3.769833041908877e-18,-0.0016666667070239782,-1.4907779871675686e-19,-0.010416666977107525,-0.0018518518190830946,2.710505431213761e-19,-0.02013888955116272,0.0013888889225199819,0.0027777778450399637,0.011541005223989487,2.0302085208026934e-18,-2.202249732203323e-19,-0.00039682540227659047,-1.6091389188180327e-32,-0.0007936508045531809,-0.0011574074160307646,0.0009469697251915932,-0.000811688310932368,3.769833041908877e-18,2.0302085208026934e-18,0.000101461038866546,-1.3985160711009938e-19,-7.32148869280622e-20,-8.410780740245311e-19,-1.963407275689289e-19,-2.0428539668689153e-19,0.0024999999441206455,-0.0006249999860301614,-0.0016666667070239782,-2.202249732203323e-19,-1.3985160711009938e-19,0.00041666667675599456,3.1967050700488115e-20,-5.995418521469299e-19,6.227195304588481e-20,-1.065772539970209e-21,0.0013888889225199819,-0.00034722223062999547,-1.4907779871675686e-19,-0.00039682540227659047,-7.32148869280622e-20,3.1967050700488115e-20,9.920635056914762e-05,5.623536046152534e-34,5.0574652028293425e-23,8.809142651444724e-20,0.0034722222480922937,7.627937008525126e-18,-0.010416666977107525,-1.6091389188180327e-32,-8.410780740245311e-19,-5.995418521469299e-19,5.623536046152534e-34,0.0034722222480922937,1.3902522096007269e-33,1.6780455527766705e-33,0.0027777778450399637,1.463672932855431e-18,-0.0018518518190830946,-0.0007936508045531809,-1.963407275689289e-19,6.227195304588481e-20,5.0574652028293425e-23,1.3902522096007269e-33,0.0005291005363687873,-8.131516293641283e-20,0.0011574074160307646,1.3552527156068805e-18,2.710505431213761e-19,-0.0011574074160307646,-2.0428539668689153e-19,-1.065772539970209e-21,8.809142651444724e-20,1.6780455527766705e-33,-8.131516293641283e-20,0.0001653439103392884,9.0,4.0,9.0,0.08670033514499664,-0.016363635659217834,-0.03074074164032936,-0.016363635659217834,0.0008417508215643466,0.002222222276031971,0.0011111111380159855,0.003086419776082039,0.002222222276031971,0.0008417508215643466,-0.016363635659217834,0.00817941315472126,0.002222222276031971,0.0011111111380159855,-0.0007215007208287716,-0.0005555555690079927,-0.00027777778450399637,5.220898501458081e-18,1.179069862577986e-18,9.0801931945661e-19,-0.03074074164032936,0.002222222276031971,0.0420987643301487,0.002222222276031971,3.408325128925999e-18,-0.00148148147854954,6.776263578034403e-20,-0.009259259328246117,-0.00148148147854954,-8.131516293641283e-20,-0.016363635659217834,0.0011111111380159855,0.002222222276031971,0.00817941315472126,1.7135667808471149e-18,-0.0,-0.00027777778450399637,-1.4028821249821447e-32,-0.0005555555690079927,-0.0007215007208287716,0.0008417508215643466,-0.0007215007208287716,3.408325128925999e-18,1.7135667808471149e-18,9.018759010359645e-05,-1.392318549608411e-19,-9.680888265733899e-20,-7.476249144783034e-19,-1.5213072848723402e-19,-1.3719704235274894e-19,0.002222222276031971,-0.0005555555690079927,-0.00148148147854954,-0.0,-1.392318549608411e-19,0.000370370369637385,-1.1142975881095978e-20,5.067340485748584e-19,1.7252953553654586e-20,8.463640941808688e-22,0.0011111111380159855,-0.00027777778450399637,6.776263578034403e-20,-0.00027777778450399637,-9.680888265733899e-20,-1.1142975881095978e-20,6.944444612599909e-05,7.4017531867444486e-34,-3.3505633297024456e-21,4.404571325722362e-20,0.003086419776082039,5.220898501458081e-18,-0.009259259328246117,-1.4028821249821447e-32,-7.476249144783034e-19,5.067340485748584e-19,7.4017531867444486e-34,0.003086419776082039,1.190576861698299e-33,1.1612129209792621e-33,0.002222222276031971,1.179069862577986e-18,-0.00148148147854954,-0.0005555555690079927,-1.5213072848723402e-19,1.7252953553654586e-20,-3.3505633297024456e-21,1.190576861698299e-33,0.000370370369637385,6.776263578034403e-21,0.0008417508215643466,9.0801931945661e-19,-8.131516293641283e-20,-0.0007215007208287716,-1.3719704235274894e-19,8.463640941808688e-22,4.404571325722362e-20,1.1612129209792621e-33,6.776263578034403e-21,9.018759010359645e-05,9.0,4.0,10.0,0.07932323217391968,-0.014818182215094566,-0.027848483994603157,-0.01356060616672039,0.0007575757335871458,0.0020000000949949026,0.0009090909152291715,0.0027777778450399637,0.001818181830458343,0.0006313131307251751,-0.014818182215094566,0.007384199183434248,0.0020000000949949026,0.0009090909152291715,-0.0006493506371043622,-0.0005000000237487257,-0.00022727272880729288,-3.0511748034100502e-18,-3.9302328752599536e-19,-5.014435047745458e-19,-0.027848483994603157,0.0020000000949949026,0.03801010176539421,0.001818181830458343,-1.7151003737027882e-18,-0.0013333333190530539,6.776263578034403e-20,-0.008333333767950535,-0.001212121220305562,3.7947076036992655e-19,-0.01356060616672039,0.0009090909152291715,0.001818181830458343,0.006012205500155687,-7.9203396681959095e-19,8.343611218813562e-20,-0.00020202020823489875,-3.219117361007743e-33,-0.0004040404164697975,-0.0004734848625957966,0.0007575757335871458,-0.0006493506371043622,-1.7151003737027882e-18,-7.9203396681959095e-19,8.116882963804528e-05,1.0746072651208014e-19,5.727422472006745e-20,3.364312089302971e-19,6.132528360890909e-20,5.183270430209259e-20,0.0020000000949949026,-0.0005000000237487257,-0.0013333333190530539,8.343611218813562e-20,1.0746072651208014e-19,0.00033333332976326346,-7.840647116966247e-21,2.3981674602865077e-19,-3.663517017042297e-20,4.6449130375040995e-23,0.0009090909152291715,-0.00022727272880729288,6.776263578034403e-20,-0.00020202020823489875,5.727422472006745e-20,-7.840647116966247e-21,5.0505052058724687e-05,2.3553460663485313e-34,-1.1132880077096283e-20,1.6940658945086007e-20,0.0027777778450399637,-3.0511748034100502e-18,-0.008333333767950535,-3.219117361007743e-33,3.364312089302971e-19,2.3981674602865077e-19,2.3553460663485313e-34,0.0027777778450399637,2.1420422848985095e-34,2.1713265583246293e-34,0.001818181830458343,-3.9302328752599536e-19,-0.001212121220305562,-0.0004040404164697975,6.132528360890909e-20,-3.663517017042297e-20,-1.1132880077096283e-20,2.1420422848985095e-34,0.000269360258243978,-8.809142651444724e-20,0.0006313131307251751,-5.014435047745458e-19,3.7947076036992655e-19,-0.0004734848625957966,5.183270430209259e-20,4.6449130375040995e-23,1.6940658945086007e-20,2.1713265583246293e-34,-8.809142651444724e-20,5.260942634777166e-05,9.0,4.0,11.0,0.07310623675584793,-0.013539944775402546,-0.02545454539358616,-0.011421911418437958,0.000688705244101584,0.001818181830458343,0.0007575757335871458,0.0025252525229007006,0.0015151514671742916,0.0004856254963669926,-0.013539944775402546,0.00673012575134635,0.001818181830458343,0.0007575757335871458,-0.0005903187557123601,-0.00045454545761458576,-0.00018939393339678645,5.816804377824958e-18,7.115076756936123e-19,-6.166399856011306e-19,-0.02545454539358616,0.001818181830458343,0.03464646637439728,0.0015151514671742916,3.6011370006042e-18,-0.001212121220305562,-4.0657581468206416e-20,-0.007575757801532745,-0.001010101055726409,-3.550762114890027e-18,-0.011421911418437958,0.0007575757335871458,0.0015151514671742916,0.004550634417682886,-4.146201202897482e-19,-2.5103215191213342e-18,-0.00015151515253819525,-1.0274039811606733e-17,-0.0003030303050763905,-0.00032375031150877476,0.000688705244101584,-0.0005903187557123601,3.6011370006042e-18,-4.146201202897482e-19,7.378984446404502e-05,-1.0334479856863845e-19,4.496417131166731e-20,-8.083087970703601e-19,-9.584726580820049e-20,3.7720582999283126e-20,0.001818181830458343,-0.00045454545761458576,-0.001212121220305562,-2.5103215191213342e-18,-1.0334479856863845e-19,0.0003030303050763905,7.857051304047653e-20,4.3311057966063475e-19,2.26955871111647e-19,1.723525415036794e-19,0.0007575757335871458,-0.00018939393339678645,-4.0657581468206416e-20,-0.00015151515253819525,4.496417131166731e-20,7.857051304047653e-20,3.787878813454881e-05,-3.964220159146293e-34,-5.470962877902922e-20,1.0164395367051604e-20,0.0025252525229007006,5.816804377824958e-18,-0.007575757801532745,-1.0274039811606733e-17,-8.083087970703601e-19,4.3311057966063475e-19,-3.964220159146293e-34,0.0025252525229007006,7.773033793748818e-19,8.267006410025938e-19,0.0015151514671742916,7.115076756936123e-19,-0.001010101055726409,-0.0003030303050763905,-9.584726580820049e-20,2.26955871111647e-19,-5.470962877902922e-20,7.773033793748818e-19,0.00020202020823489875,6.098637220230962e-20,0.0004856254963669926,-6.166399856011306e-19,-3.550762114890027e-18,-0.00032375031150877476,3.7720582999283126e-20,1.723525415036794e-19,1.0164395367051604e-20,8.267006410025938e-19,6.098637220230962e-20,3.237503187847324e-05,9.0,4.0,12.0,0.06779498606920242,-0.012465034611523151,-0.023440171033143997,-0.009752747602760792,0.0006313131307251751,0.0016666667070239782,0.0006410256610251963,0.002314814832061529,0.0012820513220503926,0.000381562887923792,-0.012465034611523151,0.006182636599987745,0.0016666667070239782,0.0006410256610251963,-0.0005411255406215787,-0.00041666667675599456,-0.00016025641525629908,4.485749590267397e-18,7.047314121155779e-19,4.811147140404426e-19,-0.023440171033143997,0.0016666667070239782,0.03183048591017723,0.0012820513220503926,2.7170004533835275e-18,-0.0011111111380159855,0.0,-0.0069444444961845875,-0.0008547008619643748,0.0,-0.009752747602760792,0.0006410256610251963,0.0012820513220503926,0.003528415923938155,1.0306436753887679e-18,-2.083033295006696e-33,-0.00011655011621769518,-8.543691306448087e-33,-0.00023310023243539035,-0.00022893772984389216,0.0006313131307251751,-0.0005411255406215787,2.7170004533835275e-18,1.0306436753887679e-18,6.764069257769734e-05,-1.3670855342694516e-19,-5.736023211672736e-20,-5.607186987834246e-19,-8.872911168089173e-20,-6.073719050512656e-20,0.0016666667070239782,-0.00041666667675599456,-0.0011111111380159855,-2.083033295006696e-33,-1.3670855342694516e-19,0.00027777778450399637,1.1593073114751098e-34,1.1332682060178508e-33,1.793303531517639e-34,1.227558993042248e-34,0.0006410256610251963,-0.00016025641525629908,0.0,-0.00011655011621769518,-5.736023211672736e-20,1.1593073114751098e-34,2.9137529054423794e-05,4.7549715355246e-34,-1.6940658945086007e-21,-8.470329472543003e-22,0.002314814832061529,4.485749590267397e-18,-0.0069444444961845875,-8.543691306448087e-33,-5.607186987834246e-19,1.1332682060178508e-33,4.7549715355246e-34,0.002314814832061529,7.355346414648412e-34,5.034909545865677e-34,0.0012820513220503926,7.047314121155779e-19,-0.0008547008619643748,-0.00023310023243539035,-8.872911168089173e-20,1.793303531517639e-34,-1.6940658945086007e-21,7.355346414648412e-34,0.0001554001501062885,-1.6940658945086007e-21,0.000381562887923792,4.811147140404426e-19,0.0,-0.00022893772984389216,-6.073719050512656e-20,1.227558993042248e-34,-8.470329472543003e-22,5.034909545865677e-34,-1.6940658945086007e-21,2.0812520233448595e-05,9.0,4.0,13.0,0.0632045716047287,-0.011548451147973537,-0.0217216107994318,-0.008424908854067326,0.0005827505956403911,0.0015384615398943424,0.0005494505749084055,0.0021367522422224283,0.001098901149816811,0.0003052503161597997,-0.011548451147973537,0.005717615596950054,0.0015384615398943424,0.0005494505749084055,-0.0004995004856027663,-0.0003846153849735856,-0.00013736264372710139,5.4716285256514796e-18,1.395910297075087e-18,6.030874584450618e-19,-0.0217216107994318,0.0015384615398943424,0.029438339173793793,0.001098901149816811,3.971367326351297e-18,-0.001025640987791121,-4.743384504624082e-20,-0.006410256493836641,-0.0007326007471419871,-5.149960319306146e-19,-0.008424908854067326,0.0005494505749084055,0.001098901149816811,0.002791652688756585,1.4587488300664794e-18,-2.2023021418499466e-20,-9.157509339274839e-05,5.0305108505860286e-20,-0.00018315018678549677,-0.00016650016186758876,0.0005827505956403911,-0.0004995004856027663,3.971367326351297e-18,1.4587488300664794e-18,6.243756070034578e-05,-1.5083948662634167e-19,-5.387124568528978e-20,-6.8395356570643495e-19,-1.7745822336178346e-19,-7.394092532368502e-20,0.0015384615398943424,-0.0003846153849735856,-0.001025640987791121,-2.2023021418499466e-20,-1.5083948662634167e-19,0.00025641024694778025,5.5057553546248665e-21,1.6523261037226635e-33,4.4612361602407456e-34,1.929691526309867e-34,0.0005494505749084055,-0.00013736264372710139,-4.743384504624082e-20,-9.157509339274839e-05,-5.387124568528978e-20,5.5057553546248665e-21,2.2893773348187096e-05,5.9056836185311724e-34,5.082197683525802e-21,-8.470329472543003e-22,0.0021367522422224283,5.4716285256514796e-18,-0.006410256493836641,5.0305108505860286e-20,-6.8395356570643495e-19,1.6523261037226635e-33,5.9056836185311724e-34,0.0021367522422224283,-7.461503228647599e-20,-6.161743911606013e-21,0.001098901149816811,1.395910297075087e-18,-0.0007326007471419871,-0.00018315018678549677,-1.7745822336178346e-19,4.4612361602407456e-34,5.082197683525802e-21,-7.461503228647599e-20,0.00012210012937430292,8.131516293641283e-20,0.0003052503161597997,6.030874584450618e-19,-5.149960319306146e-19,-0.00016650016186758876,-7.394092532368502e-20,1.929691526309867e-34,-8.470329472543003e-22,-6.161743911606013e-21,8.131516293641283e-20,1.387501379213063e-05,9.0,4.0,14.0,0.059197328984737396,-0.010757575742900372,-0.02023809589445591,-0.0073511903174221516,0.0005411255406215787,0.0014285714132711291,0.0004761904710903764,0.0019841270986944437,0.0009523809421807528,0.00024801588733680546,-0.010757575742900372,0.005317717790603638,0.0014285714132711291,0.0004761904710903764,-0.00046382189611904323,-0.0003571428533177823,-0.0001190476177725941,3.8449282202291975e-18,4.946672411965114e-19,3.015437292225309e-19,-0.02023809589445591,0.0014285714132711291,0.02738095261156559,0.0009523809421807528,2.2720387019904806e-18,-0.0009523809421807528,-1.2874900798265365e-19,-0.0059523810632526875,-0.0006349206087179482,-8.809142651444724e-20,-0.0073511903174221516,0.0004761904710903764,0.0009523809421807528,0.0022470238618552685,7.245588280008974e-19,-8.458842001786173e-20,-7.326007471419871e-05,-6.006350383341701e-33,-0.00014652014942839742,-0.00012400794366840273,0.0005411255406215787,-0.00046382189611904323,2.2720387019904806e-18,7.245588280008974e-19,5.7977737014880404e-05,-1.0043893892613381e-19,-3.090428840324513e-20,-4.806160275286497e-19,-6.591305346832692e-20,-3.862093032195588e-20,0.0014285714132711291,-0.0003571428533177823,-0.0009523809421807528,-8.458842001786173e-20,-1.0043893892613381e-19,0.0002380952355451882,2.1147105004465433e-20,8.326052200813187e-34,1.211229379087285e-34,6.69561582228375e-35,0.0004761904710903764,-0.0001190476177725941,-1.2874900798265365e-19,-7.326007471419871e-05,-3.090428840324513e-20,2.1147105004465433e-20,1.8315018678549677e-05,2.5618620566887756e-34,5.082197683525802e-21,0.0,0.0019841270986944437,3.8449282202291975e-18,-0.0059523810632526875,-6.006350383341701e-33,-4.806160275286497e-19,8.326052200813187e-34,2.5618620566887756e-34,0.0019841270986944437,5.463971412400543e-34,3.2015458785971097e-34,0.0009523809421807528,4.946672411965114e-19,-0.0006349206087179482,-0.00014652014942839742,-6.591305346832692e-20,1.211229379087285e-34,5.082197683525802e-21,5.463971412400543e-34,9.76800947682932e-05,1.1858461261560205e-20,0.00024801588733680546,3.015437292225309e-19,-8.809142651444724e-20,-0.00012400794366840273,-3.862093032195588e-20,6.69561582228375e-35,0.0,3.2015458785971097e-34,1.1858461261560205e-20,9.53907237999374e-06,9.0,4.0,15.0,0.05566859617829323,-0.010068181902170181,-0.01894444413483143,-0.006470588035881519,0.0005050505278632045,0.0013333333190530539,0.00041666667675599456,0.0018518518190830946,0.0008333333535119891,0.00020424836839083582,-0.010068181902170181,0.004970147740095854,0.0013333333190530539,0.00041666667675599456,-0.00043290044413879514,-0.00033333332976326346,-0.00010416666918899864,-1.79429991882502e-18,-2.608861477543245e-19,-1.2536087619363645e-19,-0.01894444413483143,0.0013333333190530539,0.025592593476176262,0.0008333333535119891,-1.2246950772148797e-18,-0.0008888888987712562,-3.049318610115481e-20,-0.0055555556900799274,-0.0005555555690079927,-4.743384504624082e-20,-0.006470588035881519,0.00041666667675599456,0.0008333333535119891,0.0018356316722929478,-3.577338755887108e-19,-5.784125564041647e-34,-5.952380888629705e-05,-1.4827469927856363e-33,-0.0001190476177725941,-9.426847827853635e-05,0.0005050505278632045,-0.00043290044413879514,-1.2246950772148797e-18,-3.577338755887108e-19,5.411255551734939e-05,8.749347832914797e-20,2.343575220068627e-20,2.242874898531275e-19,2.8836960488496245e-20,1.57668153388651e-20,0.0013333333190530539,-0.00033333332976326346,-0.0008888888987712562,-5.784125564041647e-34,8.749347832914797e-20,0.00022222222469281405,3.7892786473147937e-35,3.626458158238077e-34,4.6625891589869876e-35,2.549304011766651e-35,0.00041666667675599456,-0.00010416666918899864,-3.049318610115481e-20,-5.952380888629705e-05,2.343575220068627e-20,3.7892786473147937e-35,1.4880952221574262e-05,9.713727414556224e-35,4.235164736271502e-21,0.0,0.0018518518190830946,-1.79429991882502e-18,-0.0055555556900799274,-1.4827469927856363e-33,2.242874898531275e-19,3.626458158238077e-34,9.713727414556224e-35,0.0018518518190830946,1.195243803859804e-34,6.53508106130922e-35,0.0008333333535119891,-2.608861477543245e-19,-0.0005555555690079927,-0.0001190476177725941,2.8836960488496245e-20,4.6625891589869876e-35,4.235164736271502e-21,1.195243803859804e-34,7.936507608974352e-05,6.776263578034403e-21,0.00020424836839083582,-1.2536087619363645e-19,-4.743384504624082e-20,-9.426847827853635e-05,1.57668153388651e-20,2.549304011766651e-35,0.0,6.53508106130922e-35,6.776263578034403e-21,6.7334626692172606e-06,9.0,4.0,16.0,0.05253738537430763,-0.009461898356676102,-0.017806371673941612,-0.005739379208534956,0.0004734848625957966,0.0012499999720603228,0.0003676470660138875,0.0017361111240461469,0.000735294132027775,0.00017020697123371065,-0.009461898356676102,0.004665258340537548,0.0012499999720603228,0.0003676470660138875,-0.000405844155466184,-0.0003124999930150807,-9.191176650347188e-05,1.3552527156068805e-18,5.692061405548898e-19,1.5246593050577406e-19,-0.017806371673941612,0.0012499999720603228,0.024023693054914474,0.000735294132027775,2.0603921991830856e-20,-0.0008333333535119891,5.421010862427522e-20,-0.0052083334885537624,-0.0004901961074210703,2.230199648113607e-19,-0.005739379208534956,0.0003676470660138875,0.000735294132027775,0.0015190242556855083,3.6591823321385775e-19,1.8973538018496328e-19,-4.901960710412823e-05,2.032879073410321e-18,-9.803921420825645e-05,-7.294584793271497e-05,0.0004734848625957966,-0.000405844155466184,2.0603921991830856e-20,3.6591823321385775e-19,5.0730519433273e-05,1.1273059079707891e-19,-3.1953958790148616e-21,-2.4894417356263912e-20,-5.717472393966527e-20,-1.1858461261560205e-20,0.0012499999720603228,-0.0003124999930150807,-0.0008333333535119891,1.8973538018496328e-19,1.1273059079707891e-19,0.00020833333837799728,2.202285662861181e-20,-4.0657581468206416e-19,-2.456395547037471e-20,-1.5579269906427175e-20,0.0003676470660138875,-9.191176650347188e-05,5.421010862427522e-20,-4.901960710412823e-05,-3.1953958790148616e-21,2.202285662861181e-20,1.2254901776032057e-05,-3.7269449679189215e-20,-5.082197683525802e-21,-3.480658887555933e-21,0.0017361111240461469,1.3552527156068805e-18,-0.0052083334885537624,2.032879073410321e-18,-2.4894417356263912e-20,-4.0657581468206416e-19,-3.7269449679189215e-20,0.0017361111240461469,-5.692061405548898e-19,-5.610920545077187e-20,0.000735294132027775,5.692061405548898e-19,-0.0004901961074210703,-9.803921420825645e-05,-5.717472393966527e-20,-2.456395547037471e-20,-5.082197683525802e-21,-5.692061405548898e-19,6.535947613883764e-05,5.293955920339377e-22,0.00017020697123371065,1.5246593050577406e-19,2.230199648113607e-19,-7.294584793271497e-05,-1.1858461261560205e-20,-1.5579269906427175e-20,-3.480658887555933e-21,-5.610920545077187e-20,5.293955920339377e-22,4.863056346948724e-06,9.0,5.0,3.0,0.16869649291038513,-0.03616161644458771,-0.05746031925082207,-0.08222222328186035,0.002020202111452818,0.004444444552063942,0.006666666828095913,0.005291005130857229,0.011111111380159855,0.011111111380159855,-0.03616161644458771,0.01885281316936016,0.004444444552063942,0.006666666828095913,-0.0017316017765551805,-0.0011111111380159855,-0.0016666667070239782,1.2502875283793875e-18,9.732841799797736e-19,-3.7631457519454805e-19,-0.05746031925082207,0.004444444552063942,0.060476191341876984,0.011111111380159855,4.953245912895496e-19,-0.002222222276031971,1.1564651877860198e-18,-0.010582010261714458,-0.0055555556900799274,4.1470911768582856e-17,-0.08222222328186035,0.006666666828095913,0.011111111380159855,0.19333332777023315,8.919419268782996e-19,3.0641556453652683e-19,-0.006666666828095913,2.7528772617834224e-17,-0.011111111380159855,-0.06666667014360428,0.002020202111452818,-0.0017316017765551805,4.953245912895496e-19,8.919419268782996e-19,0.00021645022206939757,-2.4806480948566136e-20,-3.6375105878306e-20,-9.250979236935363e-20,-1.6493045989356848e-20,-3.5728877487097485e-19,0.004444444552063942,-0.0011111111380159855,-0.002222222276031971,3.0641556453652683e-19,-2.4806480948566136e-20,0.0005555555690079927,-1.1361017136273262e-20,-1.8403998317359426e-19,-2.837137119712431e-35,-1.5320778226826342e-19,0.006666666828095913,-0.0016666667070239782,1.1564651877860198e-18,-0.006666666828095913,-3.6375105878306e-20,-1.1361017136273262e-20,0.0016666667070239782,-1.7126609146787927e-19,-4.510896604672045e-19,3.358499077548255e-18,0.005291005130857229,1.2502875283793875e-18,-0.010582010261714458,2.7528772617834224e-17,-9.250979236935363e-20,-1.8403998317359426e-19,-1.7126609146787927e-19,0.0026455025654286146,-1.2881175997187346e-18,-1.2121206084150936e-17,0.011111111380159855,9.732841799797736e-19,-0.0055555556900799274,-0.011111111380159855,-1.6493045989356848e-20,-2.837137119712431e-35,-4.510896604672045e-19,-1.2881175997187346e-18,0.0055555556900799274,6.172743090538669e-18,0.011111111380159855,-3.7631457519454805e-19,4.1470911768582856e-17,-0.06666667014360428,-3.5728877487097485e-19,-1.5320778226826342e-19,3.358499077548255e-18,-1.2121206084150936e-17,6.172743090538669e-18,0.03333333507180214,9.0,5.0,4.0,0.13830015063285828,-0.028121212497353554,-0.04476190358400345,-0.052666667848825455,0.0015151514671742916,0.0033333334140479565,0.004000000189989805,0.003968254197388887,0.006666666828095913,0.0055555556900799274,-0.028121212497353554,0.014389610849320889,0.0033333334140479565,0.004000000189989805,-0.0012987012742087245,-0.0008333333535119891,-0.0010000000474974513,1.1317257666282073e-19,-2.829314416570518e-20,4.320363098593545e-18,-0.04476190358400345,0.0033333334140479565,0.04619047790765762,0.006666666828095913,-5.664654843903485e-19,-0.0016666667070239782,1.8343594487103507e-18,-0.007936508394777775,-0.0033333334140479565,7.247289170143536e-18,-0.052666667848825455,0.004000000189989805,0.006666666828095913,0.07400000095367432,1.6343461426192629e-18,4.652595745529676e-19,-0.0026666666381061077,7.051073657039832e-18,-0.004444444552063942,-0.01666666753590107,0.0015151514671742916,-0.0012987012742087245,-5.664654843903485e-19,1.6343461426192629e-18,0.00016233765927609056,-7.567176724261171e-36,-8.41147104831588e-20,1.215963901506047e-19,8.952671412419745e-20,-4.742435314871177e-19,0.0033333334140479565,-0.0008333333535119891,-0.0016666667070239782,4.652595745529676e-19,-7.567176724261171e-36,0.00041666667675599456,-2.73413145434238e-20,-1.6810502075700788e-19,-9.820164801372515e-20,-3.7974046002371005e-20,0.004000000189989805,-0.0010000000474974513,1.8343594487103507e-18,-0.0026666666381061077,-8.41147104831588e-20,-2.73413145434238e-20,0.0006666666595265269,-3.441577479357901e-19,-1.571226471617179e-19,-2.712896500171922e-19,0.003968254197388887,1.1317257666282073e-19,-0.007936508394777775,7.051073657039832e-18,1.215963901506047e-19,-1.6810502075700788e-19,-3.441577479357901e-19,0.0019841270986944437,-1.3751756191541616e-19,-1.5244049470193806e-18,0.006666666828095913,-2.829314416570518e-20,-0.0033333334140479565,-0.004444444552063942,8.952671412419745e-20,-9.820164801372515e-20,-1.571226471617179e-19,-1.3751756191541616e-19,0.002222222276031971,-4.521494339282498e-19,0.0055555556900799274,4.320363098593545e-18,7.247289170143536e-18,-0.01666666753590107,-4.742435314871177e-19,-3.7974046002371005e-20,-2.712896500171922e-19,-1.5244049470193806e-18,-4.521494339282498e-19,0.0055555556900799274,9.0,5.0,5.0,0.11734487861394882,-0.023030303418636322,-0.03669841215014458,-0.03669841215014458,0.001212121220305562,0.0026666666381061077,0.0026666666381061077,0.0031746032182127237,0.004444444552063942,0.0031746032182127237,-0.023030303418636322,0.011645021848380566,0.0026666666381061077,0.0026666666381061077,-0.0010389609960839152,-0.0006666666595265269,-0.0006666666595265269,2.7161418916064857e-19,-1.4802974020113686e-18,-4.918179141789959e-19,-0.03669841215014458,0.0026666666381061077,0.03739682585000992,0.004444444552063942,-6.839517045500567e-19,-0.0013333333190530539,-5.418153987386917e-19,-0.0063492064364254475,-0.002222222276031971,-8.804034811162209e-18,-0.03669841215014458,0.0026666666381061077,0.004444444552063942,0.03739682585000992,-6.596253567106379e-19,-1.6842494578360983e-19,-0.0013333333190530539,-6.790779770604096e-18,-0.002222222276031971,-0.0063492064364254475,0.001212121220305562,-0.0010389609960839152,-6.839517045500567e-19,-6.596253567106379e-19,0.0001298701245104894,-3.541438176030266e-35,3.4523606146162694e-35,1.156054440913099e-19,1.107649511677115e-19,1.0613573180478651e-19,0.0026666666381061077,-0.0006666666595265269,-0.0013333333190530539,-1.6842494578360983e-19,-3.541438176030266e-35,0.00033333332976326346,-2.0293485081826717e-36,-6.015176764375893e-19,8.421247289180492e-20,-5.572295512716221e-34,0.0026666666381061077,-0.0006666666595265269,-5.418153987386917e-19,-0.0013333333190530539,3.4523606146162694e-35,-2.0293485081826717e-36,0.00033333332976326346,4.25261727784409e-20,1.8585534735011552e-19,1.9290558865666397e-19,0.0031746032182127237,2.7161418916064857e-19,-0.0063492064364254475,-6.790779770604096e-18,1.156054440913099e-19,-6.015176764375893e-19,4.25261727784409e-20,0.0015873016091063619,-8.30019199147277e-20,1.695139471546118e-18,0.004444444552063942,-1.4802974020113686e-18,-0.002222222276031971,-0.002222222276031971,1.107649511677115e-19,8.421247289180492e-20,1.8585534735011552e-19,-8.30019199147277e-20,0.0011111111380159855,1.1235328528535992e-18,0.0031746032182127237,-4.918179141789959e-19,-8.804034811162209e-18,-0.0063492064364254475,1.0613573180478651e-19,-5.572295512716221e-34,1.9290558865666397e-19,1.695139471546118e-18,1.1235328528535992e-18,0.0015873016091063619,9.0,5.0,6.0,0.10196729004383087,-0.01950937882065773,-0.031111111864447594,-0.027063492685556412,0.001010101055726409,0.002222222276031971,0.0019047618843615055,0.0026455025654286146,0.0031746032182127237,0.0019841270986944437,-0.01950937882065773,0.009783550165593624,0.002222222276031971,0.0019047618843615055,-0.0008658008882775903,-0.0005555555690079927,-0.0004761904710903764,-2.523383114583853e-18,-8.742086221112347e-19,-1.750848534837916e-18,-0.031111111864447594,0.002222222276031971,0.03142857179045677,0.0031746032182127237,-1.804942010995821e-18,-0.0011111111380159855,1.0779831313722981e-19,-0.005291005130857229,-0.0015873016091063619,-3.0698328845311744e-33,-0.027063492685556412,0.0019047618843615055,0.0031746032182127237,0.021738095209002495,-1.1849244401584833e-18,-1.5785886375628424e-19,-0.0007619047537446022,-3.0172950828761338e-33,-0.0012698412174358964,-0.0029761905316263437,0.001010101055726409,-0.0008658008882775903,-1.804942010995821e-18,-1.1849244401584833e-18,0.00010822511103469878,1.0793835222999563e-19,5.286776251116358e-21,2.7463774109468302e-19,1.0985509126799438e-19,1.8881343569348464e-19,0.002222222276031971,-0.0005555555690079927,-0.0011111111380159855,-1.5785886375628424e-19,1.0793835222999563e-19,0.00027777778450399637,6.836589601613954e-21,1.631406446119826e-19,6.525625267491421e-20,1.9447640271167975e-34,0.0019047618843615055,-0.0004761904710903764,1.0779831313722981e-19,-0.0007619047537446022,5.286776251116358e-21,6.836589601613954e-21,0.00019047618843615055,7.195261618906464e-36,-5.405786861747425e-20,9.613644944281874e-20,0.0026455025654286146,-2.523383114583853e-18,-0.005291005130857229,-3.0172950828761338e-33,2.7463774109468302e-19,1.631406446119826e-19,7.195261618906464e-36,0.0013227512827143073,2.963997526161378e-34,4.791429309144361e-34,0.0031746032182127237,-8.742086221112347e-19,-0.0015873016091063619,-0.0012698412174358964,1.0985509126799438e-19,6.525625267491421e-20,-5.405786861747425e-20,2.963997526161378e-34,0.0006349206087179482,1.5014223149012148e-34,0.0019841270986944437,-1.750848534837916e-18,-3.0698328845311744e-33,-0.0029761905316263437,1.8881343569348464e-19,1.9447640271167975e-34,9.613644944281874e-20,4.791429309144361e-34,1.5014223149012148e-34,0.0005952381179668009,9.0,5.0,7.0,0.0901820957660675,-0.01692640781402588,-0.027006803080439568,-0.020793650299310684,0.0008658008882775903,0.0019047618843615055,0.0014285714132711291,0.0022675737272948027,0.0023809524718672037,0.0013227512827143073,-0.01692640781402588,0.008436920121312141,0.0019047618843615055,0.0014285714132711291,-0.000742115022148937,-0.0004761904710903764,-0.0003571428533177823,-2.1628998715847747e-18,-6.952726535098223e-19,-1.1111396193260235e-18,-0.027006803080439568,0.0019047618843615055,0.027108844369649887,0.0023809524718672037,-1.188789027980331e-18,-0.0009523809421807528,-1.1011993123567913e-19,-0.004535147454589605,-0.0011904762359336019,-1.550625087554404e-33,-0.020793650299310684,0.0014285714132711291,0.0023809524718672037,0.013809523545205593,-1.1989277807483935e-18,7.397780594677752e-20,-0.0004761904710903764,-2.9826587744871705e-33,-0.0007936508045531809,-0.0015873016091063619,0.0008658008882775903,-0.000742115022148937,-1.188789027980331e-18,-1.1989277807483935e-18,9.276437776861712e-05,2.135350203594884e-35,8.002175618876107e-20,2.354037633100745e-19,8.239131845099579e-20,1.1900968005287773e-19,0.0019047618843615055,-0.0004761904710903764,-0.0009523809421807528,7.397780594677752e-20,2.135350203594884e-35,0.0002380952355451882,-3.421501089794411e-36,1.3983483085330104e-19,-3.698890297338876e-20,0.0,0.0014285714132711291,-0.0003571428533177823,-1.1011993123567913e-19,-0.0004761904710903764,8.002175618876107e-20,-3.421501089794411e-36,0.0001190476177725941,2.0674084955258716e-34,3.670664374522638e-20,5.302070691395493e-20,0.0022675737272948027,-2.1628998715847747e-18,-0.004535147454589605,-2.9826587744871705e-33,2.354037633100745e-19,1.3983483085330104e-19,2.0674084955258716e-34,0.0011337868636474013,1.7183195045215287e-34,3.0200523058950333e-34,0.0023809524718672037,-6.952726535098223e-19,-0.0011904762359336019,-0.0007936508045531809,8.239131845099579e-20,-3.698890297338876e-20,3.670664374522638e-20,1.7183195045215287e-34,0.00039682540227659047,1.1420137691935985e-34,0.0013227512827143073,-1.1111396193260235e-18,-1.550625087554404e-33,-0.0015873016091063619,1.1900968005287773e-19,0.0,5.302070691395493e-20,3.0200523058950333e-34,1.1420137691935985e-34,0.00026455026818439364,9.0,5.0,8.0,0.08085377514362335,-0.01494949497282505,-0.023862434551119804,-0.01648148149251938,0.0007575757335871458,0.0016666667070239782,0.0011111111380159855,0.0019841270986944437,0.0018518518190830946,0.0009259259095415473,-0.01494949497282505,0.007417027372866869,0.0016666667070239782,0.0011111111380159855,-0.0006493506371043622,-0.00041666667675599456,-0.00027777778450399637,-1.8925373359378896e-18,-5.421010862427522e-19,-7.453889935837843e-19,-0.023862434551119804,0.0016666667070239782,0.023835979402065277,0.0018518518190830946,-1.0420755182494038e-18,-0.0008333333535119891,4.0657581468206416e-20,-0.003968254197388887,-0.0009259259095415473,-2.710505431213761e-20,-0.01648148149251938,0.0011111111380159855,0.0018518518190830946,0.009338624775409698,-6.890386068233164e-19,-7.289968587823975e-20,-0.0003174603043589741,-1.715871307947201e-33,-0.0005291005363687873,-0.0009259259095415473,0.0007575757335871458,-0.0006493506371043622,-1.0420755182494038e-18,-6.890386068233164e-19,8.116882963804528e-05,-2.355579557539268e-21,4.502960925488689e-22,2.0597829935866373e-19,6.502418327665334e-20,8.032401961681531e-20,0.0016666667070239782,-0.00041666667675599456,-0.0008333333535119891,-7.289968587823975e-20,-2.355579557539268e-21,0.00020833333837799728,-1.4208187647887576e-22,1.2235548345898695e-19,3.830282767764096e-20,-4.144054962033075e-22,0.0011111111380159855,-0.00027777778450399637,4.0657581468206416e-20,-0.0003174603043589741,4.502960925488689e-22,-1.4208187647887576e-22,7.936507608974352e-05,-9.230676292089259e-36,-1.3296358044531656e-20,4.0657581468206416e-20,0.0019841270986944437,-1.8925373359378896e-18,-0.003968254197388887,-1.715871307947201e-33,2.0597829935866373e-19,1.2235548345898695e-19,-9.230676292089259e-36,0.0009920635493472219,1.721126686050338e-34,2.013787126851663e-34,0.0018518518190830946,-5.421010862427522e-19,-0.0009259259095415473,-0.0005291005363687873,6.502418327665334e-20,3.830282767764096e-20,-1.3296358044531656e-20,1.721126686050338e-34,0.00026455026818439364,6.776263578034403e-21,0.0009259259095415473,-7.453889935837843e-19,-2.710505431213761e-20,-0.0009259259095415473,8.032401961681531e-20,-4.144054962033075e-22,4.0657581468206416e-20,2.013787126851663e-34,6.776263578034403e-21,0.00013227513409219682,9.0,5.0,9.0,0.07328266650438309,-0.013387205079197884,-0.021375661715865135,-0.013387205079197884,0.0006734006456099451,0.00148148147854954,0.0008888888987712562,0.0017636683769524097,0.00148148147854954,0.0006734006456099451,-0.013387205079197884,0.0066176047548651695,0.00148148147854954,0.0008888888987712562,-0.0005772005533799529,-0.000370370369637385,-0.00022222222469281405,-1.6822554097225685e-18,-5.353248226647178e-19,-5.285485590866834e-19,-0.021375661715865135,0.00148148147854954,0.021269841119647026,0.00148148147854954,-1.3126283054371762e-18,-0.00074074073927477,-2.710505431213761e-20,-0.0035273367539048195,-0.00074074073927477,2.710505431213761e-20,-0.013387205079197884,0.0008888888987712562,0.00148148147854954,0.0066176047548651695,-8.108876360275707e-19,-1.7219570676706963e-20,-0.00022222222469281405,-2.1239735591939285e-33,-0.000370370369637385,-0.0005772005533799529,0.0006734006456099451,-0.0005772005533799529,-1.3126283054371762e-18,-8.108876360275707e-19,7.215006917249411e-05,9.389006600602053e-20,6.531708922402807e-20,1.8309181447175828e-19,5.11751894191667e-20,5.778474379202899e-20,0.00148148147854954,-0.000370370369637385,-0.00074074073927477,-1.7219570676706963e-20,9.389006600602053e-20,0.0001851851848186925,-1.1841769823086393e-20,1.0876042112485702e-19,3.0789610797307165e-20,7.25381608965788e-22,0.0008888888987712562,-0.00022222222469281405,-2.710505431213761e-20,-0.00022222222469281405,6.531708922402807e-20,-1.1841769823086393e-20,5.555555617320351e-05,1.6943575572752452e-34,1.795991671198753e-20,1.6940658945086007e-20,0.0017636683769524097,-1.6822554097225685e-18,-0.0035273367539048195,-2.1239735591939285e-33,1.8309181447175828e-19,1.0876042112485702e-19,1.6943575572752452e-34,0.0008818341884762049,1.394533373801746e-34,1.457443558529225e-34,0.00148148147854954,-5.353248226647178e-19,-0.00074074073927477,-0.000370370369637385,5.11751894191667e-20,3.0789610797307165e-20,1.795991671198753e-20,1.394533373801746e-34,0.0001851851848186925,-6.776263578034403e-21,0.0006734006456099451,-5.285485590866834e-19,2.710505431213761e-20,-0.0005772005533799529,5.778474379202899e-20,7.25381608965788e-22,1.6940658945086007e-20,1.457443558529225e-34,-6.776263578034403e-21,7.215006917249411e-05,9.0,5.0,10.0,0.06701298803091049,-0.012121211737394333,-0.01935930736362934,-0.011090909130871296,0.000606060610152781,0.0013333333190530539,0.0007272727089002728,0.0015873016091063619,0.001212121220305562,0.0005050505278632045,-0.012121211737394333,0.005974025931209326,0.0013333333190530539,0.0007272727089002728,-0.0005194804980419576,-0.00033333332976326346,-0.0001818181772250682,-1.514029827391281e-18,-2.778268066994105e-19,-3.9979955110402976e-19,-0.01935930736362934,0.0013333333190530539,0.019203463569283485,0.001212121220305562,-1.1569572568529123e-18,-0.0006666666595265269,0.0,-0.0031746032182127237,-0.000606060610152781,0.0,-0.011090909130871296,0.0007272727089002728,0.001212121220305562,0.004863636568188667,-5.817390642084105e-19,2.5311191984781328e-20,-0.0001616161607671529,-1.4787951277149657e-33,-0.000269360258243978,-0.0003787878667935729,0.000606060610152781,-0.0005194804980419576,-1.1569572568529123e-18,-5.817390642084105e-19,6.49350622552447e-05,7.790898180793578e-20,3.942383835340931e-20,1.6478263690199157e-19,4.1375732567441566e-20,3.840689087610925e-20,0.0013333333190530539,-0.00033333332976326346,-0.0006666666595265269,2.5311191984781328e-20,7.790898180793578e-20,0.00016666666488163173,1.952252268530807e-21,9.788438547471985e-20,-1.6110184150366972e-20,-2.41908626828867e-22,0.0007272727089002728,-0.0001818181772250682,0.0,-0.0001616161607671529,3.942383835340931e-20,1.952252268530807e-21,4.0404040191788226e-05,9.035366729057841e-35,-5.163810279284739e-21,1.6940658945086007e-20,0.0015873016091063619,-1.514029827391281e-18,-0.0031746032182127237,-1.4787951277149657e-33,1.6478263690199157e-19,9.788438547471985e-20,9.035366729057841e-35,0.0007936508045531809,8.718397662012237e-35,1.0481966926172582e-34,0.001212121220305562,-2.778268066994105e-19,-0.000606060610152781,-0.000269360258243978,4.1375732567441566e-20,-1.6110184150366972e-20,-5.163810279284739e-21,8.718397662012237e-35,0.000134680129121989,0.0,0.0005050505278632045,-3.9979955110402976e-19,0.0,-0.0003787878667935729,3.840689087610925e-20,-2.41908626828867e-22,1.6940658945086007e-20,1.0481966926172582e-34,0.0,4.2087540350621566e-05,9.0,5.0,11.0,0.061734627932310104,-0.01107438001781702,-0.017691196873784065,-0.009339549578726292,0.0005509642069227993,0.001212121220305562,0.000606060610152781,0.0014430014416575432,0.001010101055726409,0.0003885003970935941,-0.01107438001781702,0.005444706883281469,0.001212121220305562,0.000606060610152781,-0.0004722550220321864,-0.0003030303050763905,-0.00015151515253819525,-1.3763907991727903e-18,-3.8624702394796095e-19,-3.1170812458958252e-19,-0.017691196873784065,0.001212121220305562,0.017503608018159866,0.001010101055726409,-1.0152104497124832e-18,-0.000606060610152781,-6.098637220230962e-20,-0.0028860028833150864,-0.0005050505278632045,-1.3552527156068805e-20,-0.009339549578726292,0.000606060610152781,0.001010101055726409,0.0036809116136282682,-3.886348358824601e-19,-5.746827612189356e-20,-0.00012121212057536468,-9.891856593856553e-34,-0.00020202020823489875,-0.0002590002550277859,0.0005509642069227993,-0.0004722550220321864,-1.0152104497124832e-18,-3.886348358824601e-19,5.90318777540233e-05,5.943598370279236e-20,-2.1102718363548867e-21,1.4980239600865624e-19,3.565138746580746e-20,3.2715678235417015e-20,0.001212121220305562,-0.0003030303050763905,-0.000606060610152781,-5.746827612189356e-20,5.943598370279236e-20,0.00015151515253819525,3.961944718123249e-21,8.898580262707313e-20,2.097785609631884e-20,8.025792594716776e-22,0.000606060610152781,-0.00015151515253819525,-6.098637220230962e-20,-0.00012121212057536468,-2.1102718363548867e-21,3.961944718123249e-21,3.030303014384117e-05,4.557901051965621e-37,1.0429537449530393e-20,1.0164395367051604e-20,0.0014430014416575432,-1.3763907991727903e-18,-0.0028860028833150864,-9.891856593856553e-34,1.4980239600865624e-19,8.898580262707313e-20,4.557901051965621e-37,0.0007215007208287716,9.483486068166673e-35,7.975727448413668e-35,0.001010101055726409,-3.8624702394796095e-19,-0.0005050505278632045,-0.00020202020823489875,3.565138746580746e-20,2.097785609631884e-20,1.0429537449530393e-20,9.483486068166673e-35,0.00010101010411744937,3.3881317890172014e-21,0.0003885003970935941,-3.1170812458958252e-19,-1.3552527156068805e-20,-0.0002590002550277859,3.2715678235417015e-20,8.025792594716776e-22,1.0164395367051604e-20,7.975727448413668e-35,3.3881317890172014e-21,2.590002623037435e-05,9.0,5.0,12.0,0.057229068130254745,-0.010194250382483006,-0.01628815568983555,-0.007973138242959976,0.0005050505278632045,0.0011111111380159855,0.0005128204938955605,0.0013227512827143073,0.0008547008619643748,0.0003052503161597997,-0.010194250382483006,0.0050016650930047035,0.0011111111380159855,0.0005128204938955605,-0.00043290044413879514,-0.00027777778450399637,-0.00012820512347389013,-1.0985509643787321e-18,-2.371692252312041e-19,-1.9651164376299768e-19,-0.01628815568983555,0.0011111111380159855,0.01608058623969555,0.0008547008619643748,-9.306792085544642e-19,-0.0005555555690079927,3.3881317890172014e-21,-0.0026455025654286146,-0.0004273504309821874,0.0,-0.007973138242959976,0.0005128204938955605,0.0008547008619643748,0.0028538128826767206,-3.2639637072668664e-19,-3.2983974295552504e-34,-9.324009442934766e-05,-8.282805947317427e-34,-0.0001554001501062885,-0.00018315018678549677,0.0005050505278632045,-0.00043290044413879514,-9.306792085544642e-19,-3.2639637072668664e-19,5.411255551734939e-05,5.468342395571748e-20,-6.472291787339476e-37,1.3731887054734151e-19,2.9576369483239154e-20,2.4294876202050624e-20,0.0011111111380159855,-0.00027777778450399637,-0.0005555555690079927,-3.2983974295552504e-34,5.468342395571748e-20,0.00013888889225199819,0.0,1.3876753285374077e-34,2.9888393148580403e-35,2.455117813892941e-35,0.0005128204938955605,-0.00012820512347389013,3.3881317890172014e-21,-9.324009442934766e-05,-6.472291787339476e-37,0.0,2.3310023607336916e-05,0.0,-8.470329472543003e-22,-8.470329472543003e-22,0.0013227512827143073,-1.0985509643787321e-18,-0.0026455025654286146,-8.282805947317427e-34,1.3731887054734151e-19,1.3876753285374077e-34,0.0,0.0006613756413571537,7.505455665715975e-35,6.16519580740553e-35,0.0008547008619643748,-2.371692252312041e-19,-0.0004273504309821874,-0.0001554001501062885,2.9576369483239154e-20,2.9888393148580403e-35,-8.470329472543003e-22,7.505455665715975e-35,7.770007505314425e-05,0.0,0.0003052503161597997,-1.9651164376299768e-19,0.0,-0.00018315018678549677,2.4294876202050624e-20,2.455117813892941e-35,-8.470329472543003e-22,6.16519580740553e-35,0.0,1.6650015822960995e-05,9.0,5.0,13.0,0.05333777517080307,-0.009443889372050762,-0.015091574750840664,-0.006886446848511696,0.0004662004648707807,0.001025640987791121,0.00043956044828519225,0.0012210012646391988,0.0007326007471419871,0.00024420025874860585,-0.009443889372050762,0.00462537445127964,0.001025640987791121,0.00043956044828519225,-0.0003996003943029791,-0.00025641024694778025,-0.00010989011207129806,-1.0140470201809273e-18,-1.9989977555201488e-19,-1.5246593050577406e-19,-0.015091574750840664,0.001025640987791121,0.014871794730424881,0.0007326007471419871,-8.455072126144463e-19,-0.0005128204938955605,0.0,-0.0024420025292783976,-0.00036630037357099354,0.0,-0.006886446848511696,0.00043956044828519225,0.0007326007471419871,0.0022577422205358744,-3.876685079812392e-19,-3.6162304390309614e-34,-7.326007471419871e-05,-9.837680079608069e-34,-0.00012210012937430292,-0.00013320012658368796,0.0004662004648707807,-0.0003996003943029791,-8.455072126144463e-19,-3.876685079812392e-19,4.995004928787239e-05,4.659415978927146e-20,2.6625234626894302e-20,1.2675587752261592e-19,2.5351174535170903e-20,1.920543584140358e-20,0.001025640987791121,-0.00025641024694778025,-0.0005128204938955605,-3.6162304390309614e-34,4.659415978927146e-20,0.00012820512347389013,2.483641918999613e-35,1.1823979694515943e-34,2.3647958815060035e-35,1.791511935781967e-35,0.00043956044828519225,-0.00010989011207129806,0.0,-7.326007471419871e-05,2.6625234626894302e-20,2.483641918999613e-35,1.8315018678549677e-05,6.756559579449746e-35,8.470329472543003e-22,0.0,0.0012210012646391988,-1.0140470201809273e-18,-0.0024420025292783976,-9.837680079608069e-34,1.2675587752261592e-19,1.1823979694515943e-34,6.756559579449746e-35,0.0006105006323195994,6.433247549478879e-35,4.873672472934279e-35,0.0007326007471419871,-1.9989977555201488e-19,-0.00036630037357099354,-0.00012210012937430292,2.5351174535170903e-20,2.3647958815060035e-35,8.470329472543003e-22,6.433247549478879e-35,6.105006468715146e-05,0.0,0.00024420025874860585,-1.5246593050577406e-19,0.0,-0.00013320012658368796,1.920543584140358e-20,1.791511935781967e-35,0.0,4.873672472934279e-35,0.0,1.1100010851805564e-05,9.0,5.0,14.0,0.049942899495363235,-0.00879653636366129,-0.014058956876397133,-0.00600793631747365,0.00043290044413879514,0.0009523809421807528,0.0003809523768723011,0.0011337868636474013,0.0006349206087179482,0.00019841270113829523,-0.00879653636366129,0.004301793407648802,0.0009523809421807528,0.0003809523768723011,-0.0003710575110744685,-0.0002380952355451882,-9.523809421807528e-05,-9.41615053240298e-19,-1.7618285302889447e-19,-1.1519648082658485e-19,-0.014058956876397133,0.0009523809421807528,0.01383219938725233,0.0006349206087179482,-6.136191737028753e-19,-0.0004761904710903764,0.0,-0.0022675737272948027,-0.0003174603043589741,0.0,-0.00600793631747365,0.0003809523768723011,0.0006349206087179482,0.0018171550473198295,-3.2388585171819406e-19,-0.0,-5.860805686097592e-05,-8.219097826922705e-34,-9.76800947682932e-05,-9.920635056914762e-05,0.00043290044413879514,-0.0003710575110744685,-6.136191737028753e-19,-3.2388585171819406e-19,4.638218888430856e-05,0.0,1.9778744707323855e-20,1.1770188165503726e-19,2.197101889983373e-20,1.5448371805664926e-20,0.0009523809421807528,-0.0002380952355451882,-0.0004761904710903764,-0.0,0.0,0.0001190476177725941,0.0,0.0,0.0,0.0,0.0003809523768723011,-9.523809421807528e-05,0.0,-5.860805686097592e-05,1.9778744707323855e-20,0.0,1.465201421524398e-05,5.019158265947769e-35,0.0,-4.235164736271502e-22,0.0011337868636474013,-9.41615053240298e-19,-0.0022675737272948027,-8.219097826922705e-34,1.1770188165503726e-19,0.0,5.019158265947769e-35,0.0005668934318237007,5.575481056489201e-35,3.9202601716538306e-35,0.0006349206087179482,-1.7618285302889447e-19,-0.0003174603043589741,-9.76800947682932e-05,2.197101889983373e-20,0.0,0.0,5.575481056489201e-35,4.88400473841466e-05,0.0,0.00019841270113829523,-1.1519648082658485e-19,0.0,-9.920635056914762e-05,1.5448371805664926e-20,0.0,-4.235164736271502e-22,3.9202601716538306e-35,0.0,7.631258085893933e-06,9.0,5.0,15.0,0.046954985707998276,-0.008232323452830315,-0.01315873023122549,-0.005287581589072943,0.0004040404164697975,0.0008888888987712562,0.00033333332976326346,0.0010582010727375746,0.0005555555690079927,0.0001633986976230517,-0.008232323452830315,0.00402056286111474,0.0008888888987712562,0.00033333332976326346,-0.00034632033202797174,-0.00022222222469281405,-8.333333244081587e-05,1.75768146028791e-18,3.083199928005653e-19,2.0667603913004928e-19,-0.01315873023122549,0.0008888888987712562,0.012928571552038193,0.0005555555690079927,1.4279648899800122e-18,-0.0004444444493856281,3.3881317890172014e-21,-0.002116402145475149,-0.00027777778450399637,6.776263578034403e-21,-0.005287581589072943,0.00033333332976326346,0.0005555555690079927,0.0014843783574178815,5.500662668549667e-19,-8.893908726111471e-34,-4.761904710903764e-05,-2.7917542674808077e-33,-7.936507608974352e-05,-7.54147840780206e-05,0.0004040404164697975,-0.00034632033202797174,1.4279648899800122e-18,5.500662668549667e-19,4.329004150349647e-05,-6.999478266331837e-20,-2.999776307537237e-20,-2.1971018253598876e-19,-3.8449280651328326e-20,-2.5226905188419016e-20,0.0008888888987712562,-0.00022222222469281405,-0.0004444444493856281,-8.893908726111471e-34,-6.999478266331837e-20,0.00011111111234640703,4.85027680631618e-35,3.5524488502393134e-34,6.216785545315983e-35,4.078886476223827e-35,0.00033333332976326346,-8.333333244081587e-05,3.3881317890172014e-21,-4.761904710903764e-05,-2.999776307537237e-20,4.85027680631618e-35,1.190476177725941e-05,1.5224781278715787e-34,-4.235164736271502e-22,-4.235164736271502e-22,0.0010582010727375746,1.75768146028791e-18,-0.002116402145475149,-2.7917542674808077e-33,-2.1971018253598876e-19,3.5524488502393134e-34,1.5224781278715787e-34,0.0005291005363687873,1.9514184271684055e-34,1.280342362814015e-34,0.0005555555690079927,3.083199928005653e-19,-0.00027777778450399637,-7.936507608974352e-05,-3.8449280651328326e-20,6.216785545315983e-35,-4.235164736271502e-22,1.9514184271684055e-34,3.968253804487176e-05,0.0,0.0001633986976230517,2.0667603913004928e-19,6.776263578034403e-21,-7.54147840780206e-05,-2.5226905188419016e-20,4.078886476223827e-35,-4.235164736271502e-22,1.280342362814015e-34,0.0,5.386770226323279e-06,9.0,5.0,16.0,0.04430488497018814,-0.0077361855655908585,-0.012366946786642075,-0.004689542576670647,0.0003787878667935729,0.0008333333535119891,0.00029411763534881175,0.0009920635493472219,0.0004901961074210703,0.00013616557407658547,-0.0077361855655908585,0.003773873206228018,0.0008333333535119891,0.00029411763534881175,-0.0003246753185521811,-0.00020833333837799728,-7.352940883720294e-05,7.589415207398531e-19,-1.8973538018496328e-19,-9.486769009248164e-20,-0.012366946786642075,0.0008333333535119891,0.012135853990912437,0.0004901961074210703,-2.412568674751056e-19,-0.00041666667675599456,2.574980159653073e-19,-0.0019841270986944437,-0.00024509805371053517,-1.4284036575961833e-19,-0.004689542576670647,0.00029411763534881175,0.0004901961074210703,0.0012282913085073233,-3.5236570605778894e-19,-6.776263578034403e-20,-3.9215687138494104e-05,-2.303929616531697e-19,-6.535947613883764e-05,-5.835667616338469e-05,0.0003787878667935729,-0.0003246753185521811,-2.412568674751056e-19,-3.5236570605778894e-19,4.058441481902264e-05,4.3747873306741975e-20,3.5168291369856617e-20,-4.5804428486482066e-20,2.9434394917086937e-20,8.893845946170154e-21,0.0008333333535119891,-0.00020833333837799728,-0.00041666667675599456,-6.776263578034403e-20,4.3747873306741975e-20,0.00010416666918899864,-5.082197683525802e-21,2.710505431213761e-20,2.541098841762901e-21,6.467999051571318e-21,0.00029411763534881175,-7.352940883720294e-05,2.574980159653073e-19,-3.9215687138494104e-05,3.5168291369856617e-20,-5.082197683525802e-21,9.803921784623526e-06,-5.421010862427522e-20,-3.1763735522036263e-21,1.084379559913838e-21,0.0009920635493472219,7.589415207398531e-19,-0.0019841270986944437,-2.303929616531697e-19,-4.5804428486482066e-20,2.710505431213761e-20,-5.421010862427522e-20,0.0004960317746736109,9.486769009248164e-20,1.9304411555987246e-20,0.0004901961074210703,-1.8973538018496328e-19,-0.00024509805371053517,-6.535947613883764e-05,2.9434394917086937e-20,2.541098841762901e-21,-3.1763735522036263e-21,9.486769009248164e-20,3.267973806941882e-05,3.864587821847745e-21,0.00013616557407658547,-9.486769009248164e-20,-1.4284036575961833e-19,-5.835667616338469e-05,8.893845946170154e-21,6.467999051571318e-21,1.084379559913838e-21,1.9304411555987246e-20,3.864587821847745e-21,3.890444986609509e-06,9.0,6.0,3.0,0.14710597693920135,-0.030663780868053436,-0.04246031865477562,-0.06984127312898636,0.001683501643128693,0.0031746032182127237,0.0055555556900799274,0.003306878264993429,0.007936508394777775,0.009259259328246117,-0.030663780868053436,0.015842953696846962,0.0031746032182127237,0.0055555556900799274,-0.0014430014416575432,-0.0007936508045531809,-0.0013888889225199819,4.403977410042549e-18,5.2556777239031795e-18,2.158767029090276e-17,-0.04246031865477562,0.0031746032182127237,0.035171955823898315,0.007936508394777775,4.452645822153025e-18,-0.0012698412174358964,1.3727898751711939e-18,-0.004960317630320787,-0.0031746032182127237,1.924367369986022e-17,-0.06984127312898636,0.0055555556900799274,0.007936508394777775,0.16243386268615723,9.384566708664174e-18,6.694643082054381e-19,-0.0055555556900799274,1.2391756183001717e-17,-0.007936508394777775,-0.0555555559694767,0.001683501643128693,-0.0014430014416575432,4.452645822153025e-18,9.384566708664174e-18,0.0001803751802071929,-1.8973538018496328e-19,-4.345581974313908e-19,-6.29378153444141e-19,-5.4681374098762e-19,-3.1615060146687513e-18,0.0031746032182127237,-0.0007936508045531809,-0.0012698412174358964,6.694643082054381e-19,-1.8973538018496328e-19,0.0003174603043589741,-1.6024020041755076e-19,2.524191270042317e-19,-6.036731152434465e-20,6.034497118545718e-20,0.0055555556900799274,-0.0013888889225199819,1.3727898751711939e-18,-0.0055555556900799274,-4.345581974313908e-19,-1.6024020041755076e-19,0.0013888889225199819,1.088472779537402e-33,-7.318290735009908e-19,3.526181202217095e-18,0.003306878264993429,4.403977410042549e-18,-0.004960317630320787,1.2391756183001717e-17,-6.29378153444141e-19,2.524191270042317e-19,1.088472779537402e-33,0.0009920635493472219,-1.432184855272528e-18,-4.405647074108987e-18,0.007936508394777775,5.2556777239031795e-18,-0.0031746032182127237,-0.007936508394777775,-5.4681374098762e-19,-6.036731152434465e-20,-7.318290735009908e-19,-1.432184855272528e-18,0.0031746032182127237,2.5431812689550033e-18,0.009259259328246117,2.158767029090276e-17,1.924367369986022e-17,-0.0555555559694767,-3.1615060146687513e-18,6.034497118545718e-20,3.526181202217095e-18,-4.405647074108987e-18,2.5431812689550033e-18,0.02777777798473835,9.0,6.0,4.0,0.12034270912408829,-0.023831168189644814,-0.03303571417927742,-0.044682539999485016,0.0012626262614503503,0.0023809524718672037,0.0033333334140479565,0.0024801588151603937,0.004761904943734407,0.004629629664123058,-0.023831168189644814,0.012090547941625118,0.0023809524718672037,0.0033333334140479565,-0.0010822510812431574,-0.0005952381179668009,-0.0008333333535119891,3.5715177308202076e-18,2.5834719958215424e-18,8.416156587046293e-18,-0.03303571417927742,0.0023809524718672037,0.026855159550905228,0.004761904943734407,3.342406899116495e-18,-0.0009523809421807528,-4.240251897038703e-19,-0.0037202381063252687,-0.0019047618843615055,7.709882483088304e-18,-0.044682539999485016,0.0033333334140479565,0.004761904943734407,0.06219576671719551,5.238050918639981e-18,-2.194147239609425e-19,-0.002222222276031971,6.7742067934412896e-18,-0.0031746032182127237,-0.013888888992369175,0.0012626262614503503,-0.0010822510812431574,3.342406899116495e-18,5.238050918639981e-18,0.00013528138515539467,-1.2197274440461925e-19,-2.624563433521033e-19,-4.720336150831057e-19,-3.2956527380398314e-19,-1.1214373975668493e-18,0.0023809524718672037,-0.0005952381179668009,-0.0009523809421807528,-2.194147239609425e-19,-1.2197274440461925e-19,0.0002380952355451882,7.379870841946272e-20,8.19004836926736e-20,-3.031204970287704e-20,7.823160105497065e-34,0.0033333334140479565,-0.0008333333535119891,-4.240251897038703e-19,-0.002222222276031971,-2.624563433521033e-19,7.379870841946272e-20,0.0005555555690079927,7.621000331917075e-34,8.588689970911392e-20,3.7022854213890086e-19,0.0024801588151603937,3.5715177308202076e-18,-0.0037202381063252687,6.7742067934412896e-18,-4.720336150831057e-19,8.19004836926736e-20,7.621000331917075e-34,0.0007440476329065859,-8.593109441827898e-19,-1.5419764345791148e-18,0.004761904943734407,2.5834719958215424e-18,-0.0019047618843615055,-0.0031746032182127237,-3.2956527380398314e-19,-3.031204970287704e-20,8.588689970911392e-20,-8.593109441827898e-19,0.0012698412174358964,4.3672146119322095e-33,0.004629629664123058,8.416156587046293e-18,7.709882483088304e-18,-0.013888888992369175,-1.1214373975668493e-18,7.823160105497065e-34,3.7022854213890086e-19,-1.5419764345791148e-18,4.3672146119322095e-33,0.004629629664123058,9.0,6.0,5.0,0.10196729004383087,-0.01950937882065773,-0.027063492685556412,-0.031111111864447594,0.001010101055726409,0.0019047618843615055,0.002222222276031971,0.0019841270986944437,0.0031746032182127237,0.0026455025654286146,-0.01950937882065773,0.009783550165593624,0.0019047618843615055,0.002222222276031971,-0.0008658008882775903,-0.0004761904710903764,-0.0005555555690079927,-1.750848534837916e-18,-8.742086221112347e-19,-2.523383114583853e-18,-0.027063492685556412,0.0019047618843615055,0.021738095209002495,0.0031746032182127237,-1.163777361003412e-18,-0.0007619047537446022,4.994278724169072e-20,-0.0029761905316263437,-0.0012698412174358964,-7.552537841329692e-18,-0.031111111864447594,0.002222222276031971,0.0031746032182127237,0.03142857179045677,-1.808302639029471e-18,3.1559995767285624e-19,-0.0011111111380159855,-7.760652347544971e-18,-0.0015873016091063619,-0.005291005130857229,0.001010101055726409,-0.0008658008882775903,-1.163777361003412e-18,-1.808302639029471e-18,0.00010822511103469878,3.475237769413483e-36,1.087784769266654e-19,1.8881343569348464e-19,1.0985509126799438e-19,2.7463774109468302e-19,0.0019047618843615055,-0.0004761904710903764,-0.0007619047537446022,3.1559995767285624e-19,3.475237769413483e-36,0.00019047618843615055,-4.5113823147879786e-20,9.613644944281874e-20,-5.405786861747425e-20,2.206453635605061e-34,0.002222222276031971,-0.0005555555690079927,4.994278724169072e-20,-0.0011111111380159855,1.087784769266654e-19,-4.5113823147879786e-20,0.00027777778450399637,4.25208632787069e-34,6.525625267491421e-20,1.631406446119826e-19,0.0019841270986944437,-1.750848534837916e-18,-0.0029761905316263437,-7.760652347544971e-18,1.8881343569348464e-19,9.613644944281874e-20,4.25208632787069e-34,0.0005952381179668009,6.874487656859895e-19,1.5105074855478771e-18,0.0031746032182127237,-8.742086221112347e-19,-0.0012698412174358964,-0.0015873016091063619,1.0985509126799438e-19,-5.405786861747425e-20,6.525625267491421e-20,6.874487656859895e-19,0.0006349206087179482,2.0409059651961254e-33,0.0026455025654286146,-2.523383114583853e-18,-7.552537841329692e-18,-0.005291005130857229,2.7463774109468302e-19,2.206453635605061e-34,1.631406446119826e-19,1.5105074855478771e-18,2.0409059651961254e-33,0.0013227512827143073,9.0,6.0,6.0,0.08851897716522217,-0.016522366553544998,-0.02293083816766739,-0.02293083816766739,0.0008417508215643466,0.0015873016091063619,0.0015873016091063619,0.0016534391324967146,0.0022675737272948027,0.0016534391324967146,-0.016522366553544998,0.008219095878303051,0.0015873016091063619,0.0015873016091063619,-0.0007215007208287716,-0.00039682540227659047,-0.00039682540227659047,2.2019887050212743e-18,1.1312443475117014e-18,2.2019887050212743e-18,-0.02293083816766739,0.0015873016091063619,0.01826625131070614,0.0022675737272948027,2.353481871126686e-18,-0.0006349206087179482,1.2458075440311945e-19,-0.0024801588151603937,-0.0009070294909179211,2.1634873766148405e-18,-0.02293083816766739,0.0015873016091063619,0.0022675737272948027,0.01826625131070614,2.356494049327298e-18,1.2458075440311945e-19,-0.0006349206087179482,2.981878781569186e-18,-0.0009070294909179211,-0.0024801588151603937,0.0008417508215643466,-0.0007215007208287716,2.353481871126686e-18,2.356494049327298e-18,9.018759010359645e-05,-9.692422911635039e-20,-9.767727366650335e-20,-3.146890767220705e-19,-1.569358465149487e-19,-3.146890767220705e-19,0.0015873016091063619,-0.00039682540227659047,-0.0006349206087179482,1.2458075440311945e-19,-9.692422911635039e-20,0.00015873015217948705,-4.667548521441735e-20,1.2620956350211586e-19,2.484847652052454e-20,1.8638753221008388e-34,0.0015873016091063619,-0.00039682540227659047,1.2458075440311945e-19,-0.0006349206087179482,-9.767727366650335e-20,-4.667548521441735e-20,0.00015873015217948705,1.6396734223217482e-34,2.484847652052454e-20,1.2620956350211586e-19,0.0016534391324967146,2.2019887050212743e-18,-0.0024801588151603937,2.981878781569186e-18,-3.146890767220705e-19,1.2620956350211586e-19,1.6396734223217482e-34,0.0004960317746736109,-3.273565464721017e-19,-4.326974546434528e-19,0.0022675737272948027,1.1312443475117014e-18,-0.0009070294909179211,-0.0009070294909179211,-1.569358465149487e-19,2.484847652052454e-20,2.484847652052454e-20,-3.273565464721017e-19,0.00036281178472563624,8.122483211544652e-34,0.0016534391324967146,2.2019887050212743e-18,2.1634873766148405e-18,-0.0024801588151603937,-3.146890767220705e-19,1.8638753221008388e-34,1.2620956350211586e-19,-4.326974546434528e-19,8.122483211544652e-34,0.0004960317746736109,9.0,6.0,7.0,0.07823186367750168,-0.014332096092402935,-0.019897958263754845,-0.017611488699913025,0.0007215007208287716,0.0013605442363768816,0.0011904762359336019,0.0014172336086630821,0.001700680237263441,0.001102292793802917,-0.014332096092402935,0.007087456062436104,0.0013605442363768816,0.0011904762359336019,-0.0006184292142279446,-0.0003401360590942204,-0.00029761905898340046,1.975103609550789e-18,9.8569788622751e-19,1.3745043103882866e-18,-0.019897958263754845,0.0013605442363768816,0.015753967687487602,0.001700680237263441,2.0038746056166083e-18,-0.0005442177061922848,-3.0336390138636264e-20,-0.002125850412994623,-0.0006802721181884408,1.36365263132978e-18,-0.017611488699913025,0.0011904762359336019,0.001700680237263441,0.01160241849720478,1.7064342092202233e-18,-5.536449733022979e-20,-0.00039682540227659047,1.6363831782752513e-18,-0.0005668934318237007,-0.0013227512827143073,0.0007215007208287716,-0.0006184292142279446,2.0038746056166083e-18,1.7064342092202233e-18,7.730365177849308e-05,-7.552537686233327e-20,-5.552065998259185e-20,-2.697334906404327e-19,-1.1770188165503726e-19,-1.9834947106302858e-19,0.0013605442363768816,-0.0003401360590942204,-0.0005442177061922848,-5.536449733022979e-20,-7.552537686233327e-20,0.0001360544265480712,1.6222968288184017e-20,7.310571201190228e-20,-3.8109483095185925e-21,1.6830404394949556e-34,0.0011904762359336019,-0.00029761905898340046,-3.0336390138636264e-20,-0.00039682540227659047,-5.552065998259185e-20,1.6222968288184017e-20,9.920635056914762e-05,1.0758099043964132e-34,-1.1518493260975178e-20,7.07638086013998e-20,0.0014172336086630821,1.975103609550789e-18,-0.002125850412994623,1.6363831782752513e-18,-2.697334906404327e-19,7.310571201190228e-20,1.0758099043964132e-34,0.00042517005931586027,3.7815109140638253e-34,-2.7273052109607717e-19,0.001700680237263441,9.8569788622751e-19,-0.0006802721181884408,-0.0005668934318237007,-1.1770188165503726e-19,-3.8109483095185925e-21,-1.1518493260975178e-20,3.7815109140638253e-34,0.00022675737272948027,2.713644091318857e-34,0.001102292793802917,1.3745043103882866e-18,1.36365263132978e-18,-0.0013227512827143073,-1.9834947106302858e-19,1.6830404394949556e-34,7.07638086013998e-20,-2.7273052109607717e-19,2.713644091318857e-34,0.00022045854711905122,9.0,6.0,8.0,0.0701008066534996,-0.012656325474381447,-0.017576057463884354,-0.013955026865005493,0.0006313131307251751,0.0011904762359336019,0.0009259259095415473,0.0012400794075801969,0.0013227512827143073,0.0007716049440205097,-0.012656325474381447,0.006230459548532963,0.0011904762359336019,0.0009259259095415473,-0.0005411255406215787,-0.00029761905898340046,-0.00023148147738538682,1.7857588654101038e-18,6.506106906962467e-19,9.351243737687476e-19,-0.017576057463884354,0.0011904762359336019,0.013850859366357327,0.0013227512827143073,1.7369450763069714e-18,-0.0004761904710903764,-1.0842021724855044e-19,-0.0018601190531626344,-0.0005291005363687873,8.402566836762659e-19,-0.013955026865005493,0.0009259259095415473,0.0013227512827143073,0.007845175452530384,1.398196520890607e-18,-1.2631475761157787e-19,-0.00026455026818439364,1.7964749902457283e-18,-0.0003779289545491338,-0.0007716049440205097,0.0006313131307251751,-0.0005411255406215787,1.7369450763069714e-18,1.398196520890607e-18,6.764069257769734e-05,-5.94762312094719e-20,-6.133339385632123e-20,-2.3601680754155287e-19,-9.113032652625367e-20,-1.322505152143789e-19,0.0011904762359336019,-0.00029761905898340046,-0.0004761904710903764,-1.2631475761157787e-19,-5.94762312094719e-20,0.0001190476177725941,1.979137698312376e-20,4.09502418463368e-20,1.8859698579163424e-20,1.0682892660272949e-34,0.0009259259095415473,-0.00023148147738538682,-1.0842021724855044e-19,-0.00026455026818439364,-6.133339385632123e-20,1.979137698312376e-20,6.613756704609841e-05,1.2638915260041235e-34,1.0164395367051604e-20,4.0657581468206416e-20,0.0012400794075801969,1.7857588654101038e-18,-0.0018601190531626344,1.7964749902457283e-18,-2.3601680754155287e-19,4.09502418463368e-20,1.2638915260041235e-34,0.00037202381645329297,-2.045978383138893e-19,-1.8356861947140974e-19,0.0013227512827143073,6.506106906962467e-19,-0.0005291005363687873,-0.0003779289545491338,-9.113032652625367e-20,1.8859698579163424e-20,1.0164395367051604e-20,-2.045978383138893e-19,0.0001511715818196535,2.710505431213761e-20,0.0007716049440205097,9.351243737687476e-19,8.402566836762659e-19,-0.0007716049440205097,-1.322505152143789e-19,1.0682892660272949e-34,4.0657581468206416e-20,-1.8356861947140974e-19,2.710505431213761e-20,0.00011022927355952561,9.0,6.0,9.0,0.06350862979888916,-0.011332371272146702,-0.015740741044282913,-0.011332371272146702,0.0005611672531813383,0.0010582010727375746,0.00074074073927477,0.001102292793802917,0.0010582010727375746,0.0005611672531813383,-0.011332371272146702,0.0055587622337043285,0.0010582010727375746,0.00074074073927477,-0.0004810004902537912,-0.00026455026818439364,-0.0001851851848186925,-9.726936764199873e-19,-2.642742795433417e-19,-4.472333961502706e-19,-0.015740741044282913,0.0010582010727375746,0.01235890667885542,0.0010582010727375746,-8.790349107927519e-19,-0.0004232804349157959,6.776263578034403e-20,-0.0016534391324967146,-0.0004232804349157959,-1.1384122811097797e-18,-0.011332371272146702,0.00074074073927477,0.0010582010727375746,0.0055587622337043285,-6.581041715641528e-19,-6.267895175665504e-20,-0.0001851851848186925,-2.711567324325126e-18,-0.00026455026818439364,-0.0004810004902537912,0.0005611672531813383,-0.0004810004902537912,-8.790349107927519e-19,-6.581041715641528e-19,6.01250612817239e-05,5.1372271662455993e-20,4.4524657294240356e-20,1.0489635675324065e-19,3.726600201624549e-20,4.740002434517991e-20,0.0010582010727375746,-0.00026455026818439364,-0.0004232804349157959,-6.267895175665504e-20,5.1372271662455993e-20,0.00010582010872894898,3.967850900787977e-21,5.34091360662082e-20,1.893910630238138e-20,6.587308141925372e-22,0.00074074073927477,-0.0001851851848186925,6.776263578034403e-20,-0.0001851851848186925,4.4524657294240356e-20,3.967850900787977e-21,4.6296296204673126e-05,1.060013739879758e-34,-2.0462858616822154e-20,1.6940658945086007e-20,0.001102292793802917,-9.726936764199873e-19,-0.0016534391324967146,-2.711567324325126e-18,1.0489635675324065e-19,5.34091360662082e-20,1.060013739879758e-34,0.0003306878206785768,2.546106386396144e-19,2.593800845034127e-19,0.0010582010727375746,-2.642742795433417e-19,-0.0004232804349157959,-0.00026455026818439364,3.726600201624549e-20,1.893910630238138e-20,-2.0462858616822154e-20,2.546106386396144e-19,0.00010582010872894898,-4.0657581468206416e-20,0.0005611672531813383,-4.472333961502706e-19,-1.1384122811097797e-18,-0.0004810004902537912,4.740002434517991e-20,6.587308141925372e-22,1.6940658945086007e-20,2.593800845034127e-19,-4.0657581468206416e-20,6.01250612817239e-05,9.0,6.0,10.0,0.058054354041814804,-0.010259740054607391,-0.01425324659794569,-0.009386724792420864,0.0005050505278632045,0.0009523809421807528,0.000606060610152781,0.0009920635493472219,0.0008658008882775903,0.0004208754107821733,-0.010259740054607391,0.005018037743866444,0.0009523809421807528,0.000606060610152781,-0.00043290044413879514,-0.0002380952355451882,-0.00015151515253819525,-8.75424267418958e-19,-1.0842021724855044e-19,-3.3203691532368573e-19,-0.01425324659794569,0.0009523809421807528,0.011157647706568241,0.0008658008882775903,-6.208165239114875e-19,-0.0003809523768723011,1.4568966692773966e-19,-0.0014880952658131719,-0.00034632033202797174,-7.860465750519907e-19,-0.009386724792420864,0.000606060610152781,0.0008658008882775903,0.004085096996277571,-4.90493132729204e-19,7.086513822643755e-20,-0.000134680129121989,-2.1288301633100938e-18,-0.00019240019901189953,-0.00031565656536258757,0.0005050505278632045,-0.00043290044413879514,-6.208165239114875e-19,-4.90493132729204e-19,5.411255551734939e-05,3.813022319501727e-21,2.9719316632845974e-20,9.440671784674232e-20,2.9673521199948653e-20,3.29172647356356e-20,0.0009523809421807528,-0.0002380952355451882,-0.0003809523768723011,7.086513822643755e-20,3.813022319501727e-21,9.523809421807528e-05,-1.1775453202414368e-20,4.806822472140937e-20,-1.1101027161164456e-20,3.5732395024184753e-23,0.000606060610152781,-0.00015151515253819525,1.4568966692773966e-19,-0.000134680129121989,2.9719316632845974e-20,-1.1775453202414368e-20,3.367003228049725e-05,8.475887667307829e-35,-2.2622098899205327e-20,1.0164395367051604e-20,0.0009920635493472219,-8.75424267418958e-19,-0.0014880952658131719,-2.1288301633100938e-18,9.440671784674232e-20,4.806822472140937e-20,8.475887667307829e-35,0.00029761905898340046,1.6665424936016644e-19,1.9024385069243904e-19,0.0008658008882775903,-1.0842021724855044e-19,-0.00034632033202797174,-0.00019240019901189953,2.9673521199948653e-20,-1.1101027161164456e-20,-2.2622098899205327e-20,1.6665424936016644e-19,7.696007378399372e-05,-3.7269449679189215e-20,0.0004208754107821733,-3.3203691532368573e-19,-7.860465750519907e-19,-0.00031565656536258757,3.29172647356356e-20,3.5732395024184753e-23,1.0164395367051604e-20,1.9024385069243904e-19,-3.7269449679189215e-20,3.5072953323833644e-05,9.0,6.0,11.0,0.05346572771668434,-0.009372950531542301,-0.01302308775484562,-0.007903208024799824,0.00045913681969977915,0.0008658008882775903,0.0005050505278632045,0.0009018759010359645,0.0007215007208287716,0.00032375031150877476,-0.009372950531542301,0.004573330748826265,0.0008658008882775903,0.0005050505278632045,-0.00039354583714157343,-0.00021645022206939757,-0.00012626263196580112,1.165575961847832e-18,3.9641141931501256e-19,3.7947076036992655e-19,-0.01302308775484562,0.0008658008882775903,0.010169552639126778,0.0007215007208287716,1.3587013349781907e-18,-0.00034632033202797174,3.049318610115481e-20,-0.0013528139097616076,-0.00028860027668997645,3.8624702394796095e-19,-0.007903208024799824,0.0005050505278632045,0.0007215007208287716,0.0030914763920009136,7.806116882347876e-19,-3.7539995900630875e-20,-0.00010101010411744937,1.0029398457107184e-18,-0.00014430013834498823,-0.00021583355555776507,0.00045913681969977915,-0.00039354583714157343,1.3587013349781907e-18,7.806116882347876e-19,4.919322964269668e-05,-6.31626585445425e-20,-3.6326273141596964e-20,-1.7164858495300262e-19,-4.9561560376880344e-20,-5.155625149408942e-20,0.0008658008882775903,-0.00021645022206939757,-0.00034632033202797174,-3.7539995900630875e-20,-6.31626585445425e-20,8.658008300699294e-05,1.1752624956212465e-21,8.304506901589971e-20,1.1466631298390091e-20,7.013451055361252e-22,0.0005050505278632045,-0.00012626263196580112,3.049318610115481e-20,-0.00010101010411744937,-3.6326273141596964e-20,1.1752624956212465e-21,2.5252526029362343e-05,1.2046422485366127e-34,-6.2929408959880316e-21,6.776263578034403e-21,0.0009018759010359645,1.165575961847832e-18,-0.0013528139097616076,1.0029398457107184e-18,-1.7164858495300262e-19,8.304506901589971e-20,1.2046422485366127e-34,0.00027056277031078935,-1.1362788789124288e-19,-7.188701001332171e-20,0.0007215007208287716,3.9641141931501256e-19,-0.00028860027668997645,-0.00014430013834498823,-4.9561560376880344e-20,1.1466631298390091e-20,-6.2929408959880316e-21,-1.1362788789124288e-19,5.77200589759741e-05,-5.082197683525802e-21,0.00032375031150877476,3.7947076036992655e-19,3.8624702394796095e-19,-0.00021583355555776507,-5.155625149408942e-20,7.013451055361252e-22,6.776263578034403e-21,-7.188701001332171e-20,-5.082197683525802e-21,2.1583355191978626e-05,9.0,6.0,12.0,0.04955121874809265,-0.008627483621239662,-0.011988705955445766,-0.0067460318095982075,0.0004208754107821733,0.0007936508045531809,0.0004273504309821874,0.0008267195662483573,0.0006105006323195994,0.0002543752489145845,-0.008627483621239662,0.004201123025268316,0.0007936508045531809,0.0004273504309821874,-0.0003607503604143858,-0.00019841270113829523,-0.00010683760774554685,1.258756306888282e-18,3.5236570605778894e-19,3.3203691532368573e-19,-0.011988705955445766,0.0007936508045531809,0.009342440403997898,0.0006105006323195994,1.2274262208023767e-18,-0.0003174603043589741,1.6940658945086007e-20,-0.0012400794075801969,-0.00024420025874860585,3.049318610115481e-19,-0.0067460318095982075,0.0004273504309821874,0.0006105006323195994,0.0023966773878782988,6.530097212678036e-19,-7.541699921807169e-34,-7.770007505314425e-05,8.1273891793725265e-19,-0.00011100011033704504,-0.00015262515807989985,0.0004208754107821733,-0.0003607503604143858,1.2274262208023767e-18,6.530097212678036e-19,4.5093795051798224e-05,-5.2079449693877744e-20,-2.5493438291420087e-20,-1.5734453836103525e-19,-4.2251959174205306e-20,-4.049146033675104e-20,0.0007936508045531809,-0.00019841270113829523,-0.0003174603043589741,-7.541699921807169e-34,-5.2079449693877744e-20,7.936507608974352e-05,2.944272696516269e-35,1.8171938470769193e-34,4.879737633483664e-35,4.676414992933573e-35,0.0004273504309821874,-0.00010683760774554685,1.6940658945086007e-20,-7.770007505314425e-05,-2.5493438291420087e-20,2.944272696516269e-35,1.942501876328606e-05,9.930576275746685e-35,-2.117582368135751e-21,8.470329472543003e-22,0.0008267195662483573,1.258756306888282e-18,-0.0012400794075801969,8.1273891793725265e-19,-1.5734453836103525e-19,1.8171938470769193e-34,9.930576275746685e-35,0.00024801588733680546,-8.012223278379212e-20,-5.567575634744555e-20,0.0006105006323195994,3.5236570605778894e-19,-0.00024420025874860585,-0.00011100011033704504,-4.2251959174205306e-20,4.879737633483664e-35,-2.117582368135751e-21,-8.012223278379212e-20,4.4400043407222256e-05,-3.3881317890172014e-21,0.0002543752489145845,3.3203691532368573e-19,3.049318610115481e-19,-0.00015262515807989985,-4.049146033675104e-20,4.676414992933573e-35,8.470329472543003e-22,-5.567575634744555e-20,-3.3881317890172014e-21,1.387501379213063e-05,9.0,6.0,13.0,0.04617208242416382,-0.00799200776964426,-0.01110674999654293,-0.005825920030474663,0.0003885003970935941,0.0007326007471419871,0.00036630037357099354,0.000763125775847584,0.0005232862313278019,0.0002035002107731998,-0.00799200776964426,0.0038850039709359407,0.0007326007471419871,0.00036630037357099354,-0.0003330003237351775,-0.00018315018678549677,-9.157509339274839e-05,-5.809644095647545e-19,-1.1519648082658485e-19,-1.2874900798265365e-19,-0.01110674999654293,0.0007326007471419871,0.008639891631901264,0.0005232862313278019,-6.492522016364932e-19,-0.00029304029885679483,3.3881317890172014e-20,-0.0011446886928752065,-0.00020931450126226991,-3.6591823321385775e-19,-0.005825920030474663,0.00036630037357099354,0.0005232862313278019,0.0018959876615554094,-3.112832897968541e-19,-3.318511469512514e-34,-6.105006468715146e-05,-1.3468520761009451e-18,-8.721437188796699e-05,-0.00011100011033704504,0.0003885003970935941,-0.0003330003237351775,-6.492522016364932e-19,-3.112832897968541e-19,4.162504046689719e-05,4.437538996776575e-20,1.848974528137335e-20,7.262055119559432e-20,1.810798204163452e-20,1.6004529598571796e-20,0.0007326007471419871,-0.00018315018678549677,-0.00029304029885679483,-3.318511469512514e-34,4.437538996776575e-20,7.326007471419871e-05,1.9711444621544016e-35,7.741891316321383e-35,1.9304455531305094e-35,1.706201925597852e-35,0.00036630037357099354,-9.157509339274839e-05,3.3881317890172014e-20,-6.105006468715146e-05,1.848974528137335e-20,1.9711444621544016e-35,1.5262516171787865e-05,2.407412430484045e-35,-5.082197683525802e-21,4.235164736271502e-22,0.000763125775847584,-5.809644095647545e-19,-0.0011446886928752065,-1.3468520761009451e-18,7.262055119559432e-20,7.741891316321383e-35,2.407412430484045e-35,0.00022893772984389216,1.1622125420796148e-19,8.802491602331914e-20,0.0005232862313278019,-1.1519648082658485e-19,-0.00020931450126226991,-8.721437188796699e-05,1.810798204163452e-20,1.9304455531305094e-35,-5.082197683525802e-21,1.1622125420796148e-19,3.488575021037832e-05,-1.1858461261560205e-20,0.0002035002107731998,-1.2874900798265365e-19,-3.6591823321385775e-19,-0.00011100011033704504,1.6004529598571796e-20,1.706201925597852e-35,4.235164736271502e-22,8.802491602331914e-20,-1.1858461261560205e-20,9.250009497918654e-06,9.0,6.0,14.0,0.043225280940532684,-0.007443826179951429,-0.010345805436372757,-0.005082199349999428,0.0003607503604143858,0.0006802721181884408,0.0003174603043589741,0.0007086168043315411,0.00045351474545896053,0.0001653439103392884,-0.007443826179951429,0.0036131725646555424,0.0006802721181884408,0.0003174603043589741,-0.0003092146071139723,-0.0001700680295471102,-7.936507608974352e-05,1.0789339625617308e-18,2.659683454378503e-19,2.0667603913004928e-19,-0.010345805436372757,0.0006802721181884408,0.008035714738070965,0.00045351474545896053,1.0314001320589476e-18,-0.0002721088530961424,8.470329472543003e-21,-0.0010629252064973116,-0.00018140589236281812,1.9312351197398048e-19,-0.005082199349999428,0.0003174603043589741,0.00045351474545896053,0.0015259244246408343,5.2306455842061e-19,-5.177953433036326e-34,-4.88400473841466e-05,4.602327462716945e-19,-6.977150042075664e-05,-8.26719551696442e-05,0.0003607503604143858,-0.0003092146071139723,1.0314001320589476e-18,5.2306455842061e-19,3.865182588924654e-05,-3.826245415516498e-20,-2.747048073477852e-20,-1.3486674532021635e-19,-3.138716801052003e-20,-2.5747287419832967e-20,0.0006802721181884408,-0.0001700680295471102,-0.0002721088530961424,-5.177953433036326e-34,-3.826245415516498e-20,6.80272132740356e-05,2.719374741073486e-35,1.3350812546820963e-34,3.1070981791480896e-35,2.5487914549037193e-35,0.0003174603043589741,-7.936507608974352e-05,8.470329472543003e-21,-4.88400473841466e-05,-2.747048073477852e-20,2.719374741073486e-35,1.221001184603665e-05,9.62964972193618e-35,-1.6940658945086007e-21,-4.235164736271502e-22,0.0007086168043315411,1.0789339625617308e-18,-0.0010629252064973116,4.602327462716945e-19,-1.3486674532021635e-19,1.3350812546820963e-34,9.62964972193618e-35,0.00021258502965793014,1.293984181385174e-34,-3.540251919252837e-20,0.00045351474545896053,2.659683454378503e-19,-0.00018140589236281812,-6.977150042075664e-05,-3.138716801052003e-20,3.1070981791480896e-35,-1.6940658945086007e-21,1.293984181385174e-34,2.7908599804504775e-05,-3.3881317890172014e-21,0.0001653439103392884,2.0667603913004928e-19,1.9312351197398048e-19,-8.26719551696442e-05,-2.5747287419832967e-20,2.5487914549037193e-35,-4.235164736271502e-22,-3.540251919252837e-20,-3.3881317890172014e-21,6.359381586662494e-06,9.0,6.0,15.0,0.04063268005847931,-0.006966089364141226,-0.009682539850473404,-0.004472455475479364,0.00033670032280497253,0.0006349206087179482,0.00027777778450399637,0.0006613756413571537,0.00039682540227659047,0.00013616557407658547,-0.006966089364141226,0.003376923967152834,0.0006349206087179482,0.00027777778450399637,-0.00028860027668997645,-0.00015873015217948705,-6.944444612599909e-05,-5.035025124155551e-19,-1.1689054672109345e-19,-8.470329472543003e-20,-0.009682539850473404,0.0006349206087179482,0.007510581985116005,0.00039682540227659047,-5.441356920556912e-19,-0.00025396826094947755,-6.776263578034403e-21,-0.0009920635493472219,-0.00015873015217948705,1.2536087619363645e-19,-0.004472455475479364,0.00027777778450399637,0.00039682540227659047,0.0012464302126318216,-1.8148665756840206e-19,-1.6768116969680398e-34,-3.968253804487176e-05,5.683598830894598e-19,-5.668934318237007e-05,-6.28456546110101e-05,0.00033670032280497253,-0.00028860027668997645,-5.441356920556912e-19,-1.8148665756840206e-19,3.607503458624706e-05,3.333084857956358e-20,1.6160277237002176e-37,6.293781405194439e-20,1.3731886408499298e-20,1.0511210225910068e-20,0.0006349206087179482,-0.00015873015217948705,-0.00025396826094947755,-1.6768116969680398e-34,3.333084857956358e-20,6.349206523736939e-05,0.0,5.815020172892898e-35,1.2687317732263156e-35,9.711634569694561e-36,0.00027777778450399637,-6.944444612599909e-05,-6.776263578034403e-21,-3.968253804487176e-05,1.6160277237002176e-37,0.0,9.92063451121794e-06,-6.018531076210112e-36,8.470329472543003e-22,-4.235164736271502e-22,0.0006613756413571537,-5.035025124155551e-19,-0.0009920635493472219,5.683598830894598e-19,6.293781405194439e-20,5.815020172892898e-35,-6.018531076210112e-36,0.00019841270113829523,-6.547130670948093e-20,-2.890582973683982e-20,0.00039682540227659047,-1.1689054672109345e-19,-0.00015873015217948705,-5.668934318237007e-05,1.3731886408499298e-20,1.2687317732263156e-35,8.470329472543003e-22,-6.547130670948093e-20,2.2675736545352265e-05,2.117582368135751e-21,0.00013616557407658547,-8.470329472543003e-20,1.2536087619363645e-19,-6.28456546110101e-05,1.0511210225910068e-20,9.711634569694561e-36,-4.235164736271502e-22,-2.890582973683982e-20,2.117582368135751e-21,4.488975264393957e-06,9.0,6.0,16.0,0.038333941251039505,-0.00654602749273181,-0.0090992646291852,-0.003966308664530516,0.00031565656536258757,0.0005952381179668009,0.00024509805371053517,0.0006200397037900984,0.00035014006425626576,0.0001134713165811263,-0.00654602749273181,0.003169695846736431,0.0005952381179668009,0.00024509805371053517,-0.00027056277031078935,-0.00014880952949170023,-6.127451342763379e-05,-3.9302328752599536e-19,4.607859233063394e-19,2.676624113323589e-19,-0.0090992646291852,0.0005952381179668009,0.007049924228340387,0.00035014006425626576,1.2874900798265365e-19,-0.0002380952355451882,7.962109704190423e-20,-0.0009300595265813172,-0.00014005602861288935,7.13625258061748e-19,-0.003966308664530516,0.00024509805371053517,0.00035014006425626576,0.0010313569800928235,5.759824041329242e-19,7.182839392716467e-19,-3.267973806941882e-05,1.4094628242311558e-18,-4.6685341658303514e-05,-4.863056165049784e-05,0.00031565656536258757,-0.00027056277031078935,1.2874900798265365e-19,5.759824041329242e-19,3.382034628884867e-05,-6.503296560831318e-20,-4.717803297946026e-20,7.3636613331145e-20,-3.3696158679930847e-20,-1.7787691892340307e-20,0.0005952381179668009,-0.00014880952949170023,-0.0002380952355451882,7.182839392716467e-19,-6.503296560831318e-20,5.952380888629705e-05,-2.498747194400186e-20,-1.1858461261560205e-19,-4.573977915173222e-20,-3.182895677463151e-20,0.00024509805371053517,-6.127451342763379e-05,7.962109704190423e-20,-3.267973806941882e-05,-4.717803297946026e-20,-2.498747194400186e-20,8.169934517354704e-06,1.6093625997831706e-20,-8.046812998915853e-21,-5.083719566605929e-21,0.0006200397037900984,-3.9302328752599536e-19,-0.0009300595265813172,1.4094628242311558e-18,7.3636613331145e-20,-1.1858461261560205e-19,1.6093625997831706e-20,0.00018601190822664648,-7.962109704190423e-20,-8.152345735441134e-20,0.00035014006425626576,4.607859233063394e-19,-0.00014005602861288935,-4.6685341658303514e-05,-3.3696158679930847e-20,-4.573977915173222e-20,-8.046812998915853e-21,-7.962109704190423e-20,1.8674136299523525e-05,-1.79661884212413e-20,0.0001134713165811263,2.676624113323589e-19,7.13625258061748e-19,-4.863056165049784e-05,-1.7787691892340307e-20,-3.182895677463151e-20,-5.083719566605929e-21,-8.152345735441134e-20,-1.79661884212413e-20,3.242037564632483e-06,9.0,7.0,3.0,0.13044331967830658,-0.026623375713825226,-0.032671958208084106,-0.06071428582072258,0.0014430014416575432,0.0023809524718672037,0.004761904943734407,0.002204585587605834,0.0059523810632526875,0.007936508394777775,-0.026623375713825226,0.013664708472788334,0.0023809524718672037,0.004761904943734407,-0.0012368584284558892,-0.0005952381179668009,-0.0011904762359336019,2.749008620776573e-18,3.139180203140792e-18,2.1195712412005733e-17,-0.032671958208084106,0.0023809524718672037,0.022354496642947197,0.0059523810632526875,3.1987260403063405e-18,-0.0007936508045531809,-2.1936506727479515e-19,-0.0026455025654286146,-0.0019841270986944437,-5.601200606562254e-32,-0.06071428582072258,0.004761904943734407,0.0059523810632526875,0.14007936418056488,7.974222109900037e-18,-3.583186147336034e-20,-0.004761904943734407,-2.0293190806458716e-32,-0.0059523810632526875,-0.0476190485060215,0.0014430014416575432,-0.0012368584284558892,3.1987260403063405e-18,7.974222109900037e-18,0.00015460730355698615,-1.0164395367051604e-19,-3.1139953452231196e-19,-3.9669894212605716e-19,-4.1195659871732747e-19,-2.746377359248042e-18,0.0023809524718672037,-0.0005952381179668009,-0.0007936508045531809,-3.583186147336034e-20,-1.0164395367051604e-19,0.00019841270113829523,1.234054357658453e-20,1.415276172027996e-19,-4.510104950820566e-21,1.7115265706239663e-33,0.004761904943734407,-0.0011904762359336019,-2.1936506727479515e-19,-0.004761904943734407,-3.1139953452231196e-19,1.234054357658453e-20,0.0011904762359336019,8.18417186937886e-34,1.7000290912432837e-19,7.753064619786022e-19,0.002204585587605834,2.749008620776573e-18,-0.0026455025654286146,-2.0293190806458716e-32,-3.9669894212605716e-19,1.415276172027996e-19,8.18417186937886e-34,0.00044091709423810244,9.753148260459523e-34,7.046788882120154e-33,0.0059523810632526875,3.139180203140792e-18,-0.0019841270986944437,-0.0059523810632526875,-4.1195659871732747e-19,-4.510104950820566e-21,1.7000290912432837e-19,9.753148260459523e-34,0.0019841270986944437,6.88516722508972e-33,0.007936508394777775,2.1195712412005733e-17,-5.601200606562254e-32,-0.0476190485060215,-2.746377359248042e-18,1.7115265706239663e-33,7.753064619786022e-19,7.046788882120154e-33,6.88516722508972e-33,0.02380952425301075,9.0,7.0,4.0,0.10654281079769135,-0.020681818947196007,-0.02539682574570179,-0.03880952298641205,0.0010822510812431574,0.0017857142956927419,0.0028571428265422583,0.0016534391324967146,0.0035714285913854837,0.003968254197388887,-0.020681818947196007,0.010427102446556091,0.0017857142956927419,0.0028571428265422583,-0.0009276437922380865,-0.00044642857392318547,-0.0007142857066355646,2.2407795466421017e-18,1.9920043570313192e-18,7.428675816406002e-18,-0.02539682574570179,0.0017857142956927419,0.01706349290907383,0.0035714285913854837,2.6980073525435443e-18,-0.0005952381179668009,-9.389659297804145e-20,-0.0019841270986944437,-0.0011904762359336019,-2.217375842384772e-32,-0.03880952298641205,0.0028571428265422583,0.0035714285913854837,0.05365079268813133,4.473504008479162e-18,-9.22729537578735e-20,-0.0019047618843615055,-1.1345253604918568e-32,-0.0023809524718672037,-0.011904762126505375,0.0010822510812431574,-0.0009276437922380865,2.6980073525435443e-18,4.473504008479162e-18,0.00011595547402976081,-1.3552527156068805e-19,-2.1207145392239712e-19,-2.9752420013219434e-19,-2.471739488906388e-19,-9.612320550572994e-19,0.0017857142956927419,-0.00044642857392318547,-0.0005952381179668009,-9.22729537578735e-20,-1.3552527156068805e-19,0.00014880952949170023,2.5097785849091183e-20,4.647134608652721e-20,-2.706063010882018e-21,1.1331515749377302e-33,0.0028571428265422583,-0.0007142857066355646,-9.389659297804145e-20,-0.0019047618843615055,-2.1207145392239712e-19,2.5097785849091183e-20,0.0004761904710903764,5.468257834183717e-34,-4.329700817411229e-21,1.7412026524679642e-19,0.0016534391324967146,2.2407795466421017e-18,-0.0019841270986944437,-1.1345253604918568e-32,-2.9752420013219434e-19,4.647134608652721e-20,5.468257834183717e-34,0.0003306878206785768,5.862740881350215e-34,2.4663761454762523e-33,0.0035714285913854837,1.9920043570313192e-18,-0.0011904762359336019,-0.0023809524718672037,-2.471739488906388e-19,-2.706063010882018e-21,-4.329700817411229e-21,5.862740881350215e-34,0.0007936508045531809,1.895263317155198e-33,0.003968254197388887,7.428675816406002e-18,-2.217375842384772e-32,-0.011904762126505375,-9.612320550572994e-19,1.1331515749377302e-33,1.7412026524679642e-19,2.4663761454762523e-33,1.895263317155198e-33,0.003968254197388887,9.0,7.0,5.0,0.0901820957660675,-0.01692640781402588,-0.020793650299310684,-0.027006803080439568,0.0008658008882775903,0.0014285714132711291,0.0019047618843615055,0.0013227512827143073,0.0023809524718672037,0.0022675737272948027,-0.01692640781402588,0.008436920121312141,0.0014285714132711291,0.0019047618843615055,-0.000742115022148937,-0.0003571428533177823,-0.0004761904710903764,-1.1111396193260235e-18,-6.952726535098223e-19,-2.1628998715847747e-18,-0.020793650299310684,0.0014285714132711291,0.013809523545205593,0.0023809524718672037,-1.1960473310603307e-18,-0.0004761904710903764,8.534016563595905e-20,-0.0015873016091063619,-0.0007936508045531809,-2.975985456323354e-33,-0.027006803080439568,0.0019047618843615055,0.0023809524718672037,0.027108844369649887,-1.188789027980331e-18,-9.875757154649761e-20,-0.0009523809421807528,-1.545564584374114e-33,-0.0011904762359336019,-0.004535147454589605,0.0008658008882775903,-0.000742115022148937,-1.1960473310603307e-18,-1.188789027980331e-18,9.276437776861712e-05,7.930164376674537e-20,2.135350203594884e-35,1.1900968005287773e-19,8.239131845099579e-20,2.354037633100745e-19,0.0014285714132711291,-0.0003571428533177823,-0.0004761904710903764,-9.875757154649761e-20,7.930164376674537e-20,0.0001190476177725941,-2.8405893164502064e-21,5.302070691395493e-20,3.670664374522638e-20,2.050725659293811e-34,0.0019047618843615055,-0.0004761904710903764,8.534016563595905e-20,-0.0009523809421807528,2.135350203594884e-35,-2.8405893164502064e-21,0.0002380952355451882,-1.2651244498259612e-36,-3.698890297338876e-20,1.3983483085330104e-19,0.0013227512827143073,-1.1111396193260235e-18,-0.0015873016091063619,-1.545564584374114e-33,1.1900968005287773e-19,5.302070691395493e-20,-1.2651244498259612e-36,0.00026455026818439364,1.1420137691935985e-34,3.0200523058950333e-34,0.0023809524718672037,-6.952726535098223e-19,-0.0007936508045531809,-0.0011904762359336019,8.239131845099579e-20,3.670664374522638e-20,-3.698890297338876e-20,1.1420137691935985e-34,0.00039682540227659047,1.7183195045215287e-34,0.0022675737272948027,-2.1628998715847747e-18,-2.975985456323354e-33,-0.004535147454589605,2.354037633100745e-19,2.050725659293811e-34,1.3983483085330104e-19,3.0200523058950333e-34,1.7183195045215287e-34,0.0011337868636474013,9.0,7.0,6.0,0.07823186367750168,-0.014332096092402935,-0.017611488699913025,-0.019897958263754845,0.0007215007208287716,0.0011904762359336019,0.0013605442363768816,0.001102292793802917,0.001700680237263441,0.0014172336086630821,-0.014332096092402935,0.007087456062436104,0.0011904762359336019,0.0013605442363768816,-0.0006184292142279446,-0.00029761905898340046,-0.0003401360590942204,1.3745043103882866e-18,9.8569788622751e-19,1.975103609550789e-18,-0.017611488699913025,0.0011904762359336019,0.01160241849720478,0.001700680237263441,1.7046338506170016e-18,-0.00039682540227659047,-1.072146334136003e-21,-0.0013227512827143073,-0.0005668934318237007,-5.849270175267272e-33,-0.019897958263754845,0.0013605442363768816,0.001700680237263441,0.015753967687487602,2.0154290780030553e-18,2.395596317986403e-20,-0.0005442177061922848,-5.09663750929224e-33,-0.0006802721181884408,-0.002125850412994623,0.0007215007208287716,-0.0006184292142279446,1.7046338506170016e-18,2.0154290780030553e-18,7.730365177849308e-05,-5.507058971883204e-20,-7.841402080833916e-20,-1.9834947106302858e-19,-1.1770188165503726e-19,-2.697334906404327e-19,0.0011904762359336019,-0.00029761905898340046,-0.00039682540227659047,2.395596317986403e-20,-5.507058971883204e-20,9.920635056914762e-05,2.649879352713768e-21,7.07638086013998e-20,-1.1518493260975178e-20,1.8783010714260765e-34,0.0013605442363768816,-0.0003401360590942204,-1.072146334136003e-21,-0.0005442177061922848,-7.841402080833916e-20,2.649879352713768e-21,0.0001360544265480712,2.0551693493641557e-34,-3.8109483095185925e-21,7.310571201190228e-20,0.001102292793802917,1.3745043103882866e-18,-0.0013227512827143073,-5.09663750929224e-33,-1.9834947106302858e-19,7.07638086013998e-20,2.0551693493641557e-34,0.00022045854711905122,2.713644091318857e-34,6.920953497561574e-34,0.001700680237263441,9.8569788622751e-19,-0.0005668934318237007,-0.0006802721181884408,-1.1770188165503726e-19,-1.1518493260975178e-20,-3.8109483095185925e-21,2.713644091318857e-34,0.00022675737272948027,3.7815109140638253e-34,0.0014172336086630821,1.975103609550789e-18,-5.849270175267272e-33,-0.002125850412994623,-2.697334906404327e-19,1.8783010714260765e-34,7.310571201190228e-20,6.920953497561574e-34,3.7815109140638253e-34,0.00042517005931586027,9.0,7.0,7.0,0.06910344958305359,-0.01243042666465044,-0.015277777798473835,-0.015277777798473835,0.0006184292142279446,0.0010204081190750003,0.0010204081190750003,0.0009448223863728344,0.0012755101779475808,0.0009448223863728344,-0.01243042666465044,0.006111405789852142,0.0010204081190750003,0.0010204081190750003,-0.000530082150362432,-0.00025510202976875007,-0.00025510202976875007,-7.936711123481982e-19,-4.71091301269043e-19,-7.936711123481982e-19,-0.015277777798473835,0.0010204081190750003,0.010005668736994267,0.0012755101779475808,-6.424561374225458e-19,-0.0003401360590942204,-5.570464304539955e-20,-0.0011337868636474013,-0.00042517005931586027,-8.364181380463023e-34,-0.015277777798473835,0.0010204081190750003,0.0012755101779475808,0.010005668736994267,-6.424561374225458e-19,-5.570464304539955e-20,-0.0003401360590942204,-8.364181380463023e-34,-0.00042517005931586027,-0.0011337868636474013,0.0006184292142279446,-0.000530082150362432,-6.424561374225458e-19,-6.424561374225458e-19,6.6260268795304e-05,2.3161164678659818e-35,2.3161164678659818e-35,8.500691524667674e-20,4.413820562063897e-20,8.500691524667674e-20,0.0010204081190750003,-0.00025510202976875007,-0.0003401360590942204,-5.570464304539955e-20,2.3161164678659818e-35,8.50340147735551e-05,-8.220449134898727e-22,3.7871934433160455e-20,1.9664273896539026e-20,-3.6611738429879753e-37,0.0010204081190750003,-0.00025510202976875007,-5.570464304539955e-20,-0.0003401360590942204,2.3161164678659818e-35,-8.220449134898727e-22,8.50340147735551e-05,-3.6611738429879753e-37,1.9664273896539026e-20,3.7871934433160455e-20,0.0009448223863728344,-7.936711123481982e-19,-0.0011337868636474013,-8.364181380463023e-34,8.500691524667674e-20,3.7871934433160455e-20,-3.6611738429879753e-37,0.0001889644772745669,6.117930947392267e-35,1.0905744119081036e-34,0.0012755101779475808,-4.71091301269043e-19,-0.00042517005931586027,-0.00042517005931586027,4.413820562063897e-20,1.9664273896539026e-20,1.9664273896539026e-20,6.117930947392267e-35,0.00014172335795592517,6.117930947392267e-35,0.0009448223863728344,-7.936711123481982e-19,-8.364181380463023e-34,-0.0011337868636474013,8.500691524667674e-20,-3.6611738429879753e-37,3.7871934433160455e-20,1.0905744119081036e-34,6.117930947392267e-35,0.0001889644772745669,9.0,7.0,8.0,0.061895743012428284,-0.01097582932561636,-0.013492063619196415,-0.012103174813091755,0.0005411255406215787,0.0008928571478463709,0.0007936508045531809,0.0008267195662483573,0.0009920635493472219,0.0006613756413571537,-0.01097582932561636,0.005372281651943922,0.0008928571478463709,0.0007936508045531809,-0.00046382189611904323,-0.00022321428696159273,-0.00019841270113829523,1.1203897733210509e-18,6.27048502646462e-19,7.724940478959219e-19,-0.013492063619196415,0.0008928571478463709,0.008796296082437038,0.0009920635493472219,1.380062964104643e-18,-0.00029761905898340046,1.3552527156068805e-20,-0.0009920635493472219,-0.0003306878206785768,8.131516293641283e-20,-0.012103174813091755,0.0007936508045531809,0.0009920635493472219,0.0067649283446371555,1.1943004290041953e-18,-2.4921837101100338e-20,-0.00022675737272948027,-3.0328861787298683e-33,-0.00028344671591185033,-0.0006613756413571537,0.0005411255406215787,-0.00046382189611904323,1.380062964104643e-18,1.1943004290041953e-18,5.7977737014880404e-05,-6.195441262589248e-20,-4.902558288286293e-20,-1.4876210006609717e-19,-6.847791436565512e-20,-1.1334112763732548e-19,0.0008928571478463709,-0.00022321428696159273,-0.00029761905898340046,-2.4921837101100338e-20,-6.195441262589248e-20,7.440476474585012e-05,9.991063870217665e-21,2.3235673043263606e-20,-5.0141390560266575e-21,1.3353615825341186e-34,0.0007936508045531809,-0.00019841270113829523,1.3552527156068805e-20,-0.00022675737272948027,-4.902558288286293e-20,9.991063870217665e-21,5.668934318237007e-05,1.2325109925838273e-34,-1.8634724839594607e-20,4.0657581468206416e-20,0.0008267195662483573,1.1203897733210509e-18,-0.0009920635493472219,-3.0328861787298683e-33,-1.4876210006609717e-19,2.3235673043263606e-20,1.2325109925838273e-34,0.0001653439103392884,1.6152279611881929e-34,2.9361619576871507e-34,0.0009920635493472219,6.27048502646462e-19,-0.0003306878206785768,-0.00028344671591185033,-6.847791436565512e-20,-5.0141390560266575e-21,-1.8634724839594607e-20,1.6152279611881929e-34,9.448223863728344e-05,-3.049318610115481e-20,0.0006613756413571537,7.724940478959219e-19,8.131516293641283e-20,-0.0006613756413571537,-1.1334112763732548e-19,1.3353615825341186e-34,4.0657581468206416e-20,2.9361619576871507e-34,-3.049318610115481e-20,9.448223863728344e-05,9.0,7.0,9.0,0.05605686455965042,-0.0098268399015069,-0.012081128545105457,-0.0098268399015069,0.0004810004902537912,0.0007936508045531809,0.0006349206087179482,0.0007348618237301707,0.0007936508045531809,0.0004810004902537912,-0.0098268399015069,0.00479299807921052,0.0007936508045531809,0.0006349206087179482,-0.0004122861137147993,-0.00019841270113829523,-0.00015873015217948705,1.0224239816418284e-18,4.589140652789202e-19,6.640738306473715e-19,-0.012081128545105457,0.0007936508045531809,0.007848324254155159,0.0007936508045531809,1.216837791973815e-18,-0.00026455026818439364,-3.3881317890172014e-21,-0.0008818341884762049,-0.00026455026818439364,9.486769009248164e-20,-0.0098268399015069,0.0006349206087179482,0.0007936508045531809,0.00479299807921052,9.245362551329157e-19,-5.904936077695479e-20,-0.00015873015217948705,-2.319507677232608e-33,-0.00019841270113829523,-0.0004122861137147993,0.0004810004902537912,-0.0004122861137147993,1.216837791973815e-18,9.245362551329157e-19,5.153576421434991e-05,-5.1399213193500787e-20,-2.724327748496493e-20,-1.3223297640045336e-19,-5.446075081222732e-20,-8.147235310219205e-20,0.0007936508045531809,-0.00019841270113829523,-0.00026455026818439364,-5.904936077695479e-20,-5.1399213193500787e-20,6.613756704609841e-05,9.245913078800902e-21,1.1813282982948031e-20,7.35523507685897e-21,7.297468929904761e-35,0.0006349206087179482,-0.00015873015217948705,-3.3881317890172014e-21,-0.00015873015217948705,-2.724327748496493e-20,9.245913078800902e-21,3.968253804487176e-05,6.616251012532163e-35,-8.470329472543003e-21,0.0,0.0007348618237301707,1.0224239816418284e-18,-0.0008818341884762049,-2.319507677232608e-33,-1.3223297640045336e-19,1.1813282982948031e-20,6.616251012532163e-35,0.00014697236474603415,1.317846946295607e-34,2.0743794984504843e-34,0.0007936508045531809,4.589140652789202e-19,-0.00026455026818439364,-0.00019841270113829523,-5.446075081222732e-20,7.35523507685897e-21,-8.470329472543003e-21,1.317846946295607e-34,6.613756704609841e-05,-2.371692252312041e-20,0.0004810004902537912,6.640738306473715e-19,9.486769009248164e-20,-0.0004122861137147993,-8.147235310219205e-20,7.297468929904761e-35,0.0,2.0743794984504843e-34,-2.371692252312041e-20,5.153576421434991e-05,9.0,7.0,10.0,0.05122895538806915,-0.00889610406011343,-0.010937950573861599,-0.00813852809369564,0.00043290044413879514,0.0007142857066355646,0.0005194804980419576,0.0006613756413571537,0.0006493506371043622,0.0003607503604143858,-0.00889610406011343,0.004326685331761837,0.0007142857066355646,0.0005194804980419576,-0.0003710575110744685,-0.00017857142665889114,-0.0001298701245104894,-5.555698096630117e-19,-1.935567995185934e-19,-2.710505431213761e-19,-0.010937950573861599,0.0007142857066355646,0.007085137069225311,0.0006493506371043622,-6.144059775617781e-19,-0.0002380952355451882,1.6940658945086007e-20,-0.0007936508045531809,-0.00021645022206939757,6.776263578034403e-21,-0.00813852809369564,0.0005194804980419576,0.0006493506371043622,0.003522126004099846,-3.3667514966281784e-19,-2.6738585835795343e-20,-0.0001154401179519482,-4.5188138020894405e-34,-0.00014430013834498823,-0.00027056277031078935,0.00043290044413879514,-0.0003710575110744685,-6.144059775617781e-19,-3.3667514966281784e-19,4.638218888430856e-05,3.9650821883372687e-20,2.4928281274280652e-21,5.950484002643887e-20,2.194969799642775e-20,2.903252084870541e-20,0.0007142857066355646,-0.00017857142665889114,-0.0002380952355451882,-2.6738585835795343e-20,3.9650821883372687e-20,5.952380888629705e-05,-8.235306478078787e-22,2.6510353456977465e-20,1.00109024724283e-20,2.633107345841924e-35,0.0005194804980419576,-0.0001298701245104894,1.6940658945086007e-20,-0.0001154401179519482,2.4928281274280652e-21,-8.235306478078787e-22,2.886002948798705e-05,4.0285229574265266e-36,-3.3881317890172014e-21,6.776263578034403e-21,0.0006613756413571537,-5.555698096630117e-19,-0.0007936508045531809,-4.5188138020894405e-34,5.950484002643887e-20,2.6510353456977465e-20,4.0285229574265266e-36,0.00013227513409219682,3.114582772084966e-35,3.8036643908020175e-35,0.0006493506371043622,-1.935567995185934e-19,-0.00021645022206939757,-0.00014430013834498823,2.194969799642775e-20,1.00109024724283e-20,-3.3881317890172014e-21,3.114582772084966e-35,4.810004975297488e-05,-1.6940658945086007e-21,0.0003607503604143858,-2.710505431213761e-19,6.776263578034403e-21,-0.00027056277031078935,2.903252084870541e-20,2.633107345841924e-35,6.776263578034403e-21,3.8036643908020175e-35,-1.6940658945086007e-21,3.006253064086195e-05,9.0,7.0,11.0,0.047169413417577744,-0.00812672171741724,-0.009992784820497036,-0.00685148173943162,0.00039354583714157343,0.0006493506371043622,0.00043290044413879514,0.0006012506200931966,0.0005411255406215787,0.0002775002794805914,-0.00812672171741724,0.003943189047276974,0.0006493506371043622,0.00043290044413879514,-0.00033732500742189586,-0.00016233765927609056,-0.00010822511103469878,-5.05063453930231e-19,-1.1911058316291213e-19,-2.1006417091906648e-19,-0.009992784820497036,0.0006493506371043622,0.0064574312418699265,0.0005411255406215787,-5.622017819229439e-19,-0.00021645022206939757,1.6940658945086007e-20,-0.0007215007208287716,-0.0001803751802071929,1.0164395367051604e-19,-0.00685148173943162,0.00043290044413879514,0.0005411255406215787,0.002665297593921423,-4.0119552178528956e-19,2.1630291573295774e-20,-8.658008300699294e-05,-5.0681420568603694e-34,-0.00010822511103469878,-0.00018500018632039428,0.00039354583714157343,-0.00033732500742189586,-5.622017819229439e-19,-4.0119552178528956e-19,4.216562592773698e-05,3.604620141841387e-20,3.0386108217094676e-20,5.4095311464889347e-20,1.8689026338751873e-20,2.2361869817200705e-20,0.0006493506371043622,-0.00016233765927609056,-0.00021645022206939757,2.1630291573295774e-20,3.604620141841387e-20,5.411255551734939e-05,-1.011772145865023e-21,2.4100322352625872e-20,-5.861067797910822e-21,2.2945649728051052e-35,0.00043290044413879514,-0.00010822511103469878,1.6940658945086007e-20,-8.658008300699294e-05,3.0386108217094676e-20,-1.011772145865023e-21,2.1645020751748234e-05,4.011769651800461e-35,-2.541098841762901e-21,6.776263578034403e-21,0.0006012506200931966,-5.05063453930231e-19,-0.0007215007208287716,-5.0681420568603694e-34,5.4095311464889347e-20,2.4100322352625872e-20,4.011769651800461e-35,0.0001202501225634478,1.9628995000079297e-35,2.8745641021997694e-35,0.0005411255406215787,-1.1911058316291213e-19,-0.0001803751802071929,-0.00010822511103469878,1.8689026338751873e-20,-5.861067797910822e-21,-2.541098841762901e-21,1.9628995000079297e-35,3.607503458624706e-05,-1.9481757786848908e-20,0.0002775002794805914,-2.1006417091906648e-19,1.0164395367051604e-19,-0.00018500018632039428,2.2361869817200705e-20,2.2945649728051052e-35,6.776263578034403e-21,2.8745641021997694e-35,-1.9481757786848908e-20,1.850001899583731e-05,9.0,7.0,12.0,0.043707769364118576,-0.007480020169168711,-0.009198209270834923,-0.005847723688930273,0.0003607503604143858,0.0005952381179668009,0.00036630037357099354,0.0005511463969014585,0.0004578754596877843,0.00021803592971991748,-0.007480020169168711,0.0036222210619598627,0.0005952381179668009,0.00036630037357099354,-0.0003092146071139723,-0.00014880952949170023,-9.157509339274839e-05,7.933978842521143e-19,2.964615315390051e-19,2.778268066994105e-19,-0.009198209270834923,0.0005952381179668009,0.005932030733674765,0.0004578754596877843,8.809365990210113e-19,-0.00019841270113829523,4.0657581468206416e-20,-0.0006613756413571537,-0.00015262515807989985,8.809142651444724e-20,-0.005847723688930273,0.00036630037357099354,0.0004578754596877843,0.0020661877933889627,5.517630210864661e-19,-3.982742460366398e-34,-6.660006329184398e-05,-1.4157405087109043e-33,-8.325008093379438e-05,-0.00013082155783195049,0.0003607503604143858,-0.0003092146071139723,8.809365990210113e-19,5.517630210864661e-19,3.865182588924654e-05,-2.7899706693336844e-20,-1.872987322825808e-20,-9.917473553151429e-20,-3.168896938065398e-20,-3.470696692612211e-20,0.0005952381179668009,-0.00014880952949170023,-0.00019841270113829523,-3.982742460366398e-34,-2.7899706693336844e-20,4.960317528457381e-05,1.3519618529154147e-35,7.158642358306428e-35,2.2873769798222267e-35,2.5052223996389643e-35,0.00036630037357099354,-9.157509339274839e-05,4.0657581468206416e-20,-6.660006329184398e-05,-1.872987322825808e-20,1.3519618529154147e-35,1.6650015822960995e-05,4.805802023470567e-35,-8.046812998915853e-21,0.0,0.0005511463969014585,7.933978842521143e-19,-0.0006613756413571537,-1.4157405087109043e-33,-9.917473553151429e-20,7.158642358306428e-35,4.805802023470567e-35,0.00011022927355952561,8.130909921877739e-35,8.905282322721898e-35,0.0004578754596877843,2.964615315390051e-19,-0.00015262515807989985,-8.325008093379438e-05,-3.168896938065398e-20,2.2873769798222267e-35,-8.046812998915853e-21,8.130909921877739e-35,2.775002758426126e-05,-1.7787691892340307e-20,0.00021803592971991748,2.778268066994105e-19,8.809142651444724e-20,-0.00013082155783195049,-3.470696692612211e-20,2.5052223996389643e-35,0.0,8.905282322721898e-35,-1.7787691892340307e-20,1.1892869224539027e-05,9.0,7.0,13.0,0.040720656514167786,-0.00692878570407629,-0.008520844392478466,-0.005049712024629116,0.0003330003237351775,0.0005494505749084055,0.00031397174461744726,0.000508750497829169,0.0003924646880477667,0.00017442874377593398,-0.00692878570407629,0.0033496266696602106,0.0005494505749084055,0.00031397174461744726,-0.00028542886138893664,-0.00013736264372710139,-7.849293615436181e-05,-3.6618362894351656e-19,-1.0842021724855044e-19,-1.0164395367051604e-19,-0.008520844392478466,0.0005494505749084055,0.005485784262418747,0.0003924646880477667,-4.5121378925787575e-19,-0.00018315018678549677,1.6940658945086007e-21,-0.0006105006323195994,-0.00013082155783195049,3.3881317890172014e-21,-0.005049712024629116,0.00031397174461744726,0.0003924646880477667,0.0016344765899702907,-2.5969818714772765e-19,-1.7303599416284327e-34,-5.232862531556748e-05,-3.3317314187731973e-34,-6.541077891597524e-05,-9.514295379631221e-05,0.0003330003237351775,-0.00028542886138893664,-4.5121378925787575e-19,-2.5969818714772765e-19,3.567860767361708e-05,2.3772531032268994e-20,1.3584302523818206e-20,4.577295361793957e-20,1.3580987339019458e-20,1.3718168458145415e-20,0.0005494505749084055,-0.00013736264372710139,-0.00018315018678549677,-1.7303599416284327e-34,2.3772531032268994e-20,4.578754669637419e-05,9.051173770341073e-36,3.049835877434327e-35,9.048963978714771e-36,9.140367561054894e-36,0.00031397174461744726,-7.849293615436181e-05,1.6940658945086007e-21,-5.232862531556748e-05,1.3584302523818206e-20,9.051173770341073e-36,1.308215632889187e-05,1.7427633585339012e-35,-4.235164736271502e-22,-4.235164736271502e-22,0.000508750497829169,-3.6618362894351656e-19,-0.0006105006323195994,-3.3317314187731973e-34,4.577295361793957e-20,3.049835877434327e-35,1.7427633585339012e-35,0.0001017501053865999,1.7423379018993568e-35,1.7599373137802593e-35,0.0003924646880477667,-1.0842021724855044e-19,-0.00013082155783195049,-6.541077891597524e-05,1.3580987339019458e-20,9.048963978714771e-36,-4.235164736271502e-22,1.7423379018993568e-35,2.1803592971991748e-05,-8.470329472543003e-22,0.00017442874377593398,-1.0164395367051604e-19,3.3881317890172014e-21,-9.514295379631221e-05,1.3718168458145415e-20,9.140367561054894e-36,-4.235164736271502e-22,1.7599373137802593e-35,-8.470329472543003e-22,7.928579179861117e-06,9.0,7.0,14.0,0.038116540759801865,-0.006453308742493391,-0.007936508394777775,-0.004404761828482151,0.0003092146071139723,0.0005102040595375001,0.0002721088530961424,0.0004724111931864172,0.0003401360590942204,0.00014172335795592517,-0.006453308742493391,0.0031152265146374702,0.0005102040595375001,0.0002721088530961424,-0.000265041075181216,-0.00012755101488437504,-6.80272132740356e-05,-3.40027660986707e-19,-8.300922883092143e-20,-8.978549240895584e-20,-0.007936508394777775,0.0005102040595375001,0.005102040711790323,0.0003401360590942204,-2.432505536971174e-19,-0.0001700680295471102,1.3552527156068805e-20,-0.0005668934318237007,-0.00011337868636474013,2.710505431213761e-20,-0.004404761828482151,0.0002721088530961424,0.0003401360590942204,0.0013154108310118318,-1.3167898510989304e-19,8.771582467696584e-35,-4.186289879726246e-05,-1.6893417320638361e-34,-5.232862531556748e-05,-7.086167897796258e-05,0.0003092146071139723,-0.000265041075181216,-2.432505536971174e-19,-1.3167898510989304e-19,3.3130134397652e-05,-2.2069102810319485e-20,-1.1770188811738579e-20,4.250345762333837e-20,1.1770188811738579e-20,1.1034551405159743e-20,0.0005102040595375001,-0.00012755101488437504,-0.0001700680295471102,8.771582467696584e-35,-2.2069102810319485e-20,4.251700738677755e-05,7.84052077378655e-36,-2.8312989650301123e-35,-7.84052077378655e-36,-7.350488001217136e-36,0.0002721088530961424,-6.80272132740356e-05,1.3552527156068805e-20,-4.186289879726246e-05,-1.1770188811738579e-20,7.84052077378655e-36,1.0465724699315615e-05,-1.5100262390432943e-35,-2.117582368135751e-21,-4.235164736271502e-22,0.0004724111931864172,-3.40027660986707e-19,-0.0005668934318237007,-1.6893417320638361e-34,4.250345762333837e-20,-2.8312989650301123e-35,-1.5100262390432943e-35,9.448223863728344e-05,1.5100262390432943e-35,1.4156494825150562e-35,0.0003401360590942204,-8.300922883092143e-20,-0.00011337868636474013,-5.232862531556748e-05,1.1770188811738579e-20,-7.84052077378655e-36,-2.117582368135751e-21,1.5100262390432943e-35,1.744287510518916e-05,-3.3881317890172014e-21,0.00014172335795592517,-8.978549240895584e-20,2.710505431213761e-20,-7.086167897796258e-05,1.1034551405159743e-20,-7.350488001217136e-36,-4.235164736271502e-22,1.4156494825150562e-35,-3.3881317890172014e-21,5.450898242997937e-06,9.0,7.0,15.0,0.03582606092095375,-0.006038961000740528,-0.007427248638123274,-0.003876050468534231,0.00028860027668997645,0.0004761904710903764,0.0002380952355451882,0.00044091709423810244,0.00029761905898340046,0.00011671335232676938,-0.006038961000740528,0.0029115132056176662,0.0004761904710903764,0.0002380952355451882,-0.00024737167404964566,-0.0001190476177725941,-5.952380888629705e-05,-3.173591640406034e-19,1.7448878713438587e-19,2.473336205982557e-19,-0.007427248638123274,0.0004761904710903764,0.004768518730998039,0.00029761905898340046,-1.3503021688877214e-19,-0.00015873015217948705,6.268043809681823e-20,-0.0005291005363687873,-9.920635056914762e-05,4.353749348887104e-19,-0.003876050468534231,0.0002380952355451882,0.00029761905898340046,0.0010744426399469376,4.1381548034888726e-19,4.2943352919328926e-19,-3.40136066370178e-05,9.02910755391059e-19,-4.251700738677755e-05,-5.3867701353738084e-05,0.00028860027668997645,-0.00024737167404964566,-1.3503021688877214e-19,4.1381548034888726e-19,3.092145925620571e-05,1.6539389187061901e-34,-4.704338913992808e-21,3.9669895505075423e-20,-1.4712735206879657e-20,-2.2679360153991883e-20,0.0004761904710903764,-0.0001190476177725941,-0.00015873015217948705,4.2943352919328926e-19,1.6539389187061901e-34,3.968253804487176e-05,-1.359456796446696e-20,3.6087564071761433e-34,-1.6993209147790132e-20,-2.1529858599117338e-20,0.0002380952355451882,-5.952380888629705e-05,6.268043809681823e-20,-3.40136066370178e-05,-4.704338913992808e-21,-1.359456796446696e-20,8.50340165925445e-06,-6.018531076210112e-36,-1.0587911840678754e-21,0.0,0.00044091709423810244,-3.173591640406034e-19,-0.0005291005363687873,9.02910755391059e-19,3.9669895505075423e-20,3.6087564071761433e-34,-6.018531076210112e-36,8.818342030281201e-05,-4.090957751817672e-20,-5.183114041374698e-20,0.00029761905898340046,1.7448878713438587e-19,-9.920635056914762e-05,-4.251700738677755e-05,-1.4712735206879657e-20,-1.6993209147790132e-20,-1.0587911840678754e-21,-4.090957751817672e-20,1.4172335795592517e-05,-5.505714157152952e-21,0.00011671335232676938,2.473336205982557e-19,4.353749348887104e-19,-5.3867701353738084e-05,-2.2679360153991883e-20,-2.1529858599117338e-20,0.0,-5.183114041374698e-20,-5.505714157152952e-21,3.84769282391062e-06,9.0,7.0,16.0,0.03379567712545395,-0.005674656014889479,-0.006979458499699831,-0.00343720824457705,0.00027056277031078935,0.00044642857392318547,0.0002100840356433764,0.00041335978312417865,0.00026260505546815693,9.726112330099568e-05,-0.005674656014889479,0.0027328261639922857,0.00044642857392318547,0.0002100840356433764,-0.00023191094805952162,-0.00011160714348079637,-5.25210089108441e-05,6.776263578034403e-20,-8.131516293641283e-20,6.098637220230962e-20,-0.006979458499699831,0.00044642857392318547,0.004475957248359919,0.00026260505546815693,-5.30242624981192e-19,-0.00014880952949170023,1.1265538198482195e-19,-0.0004960317746736109,-8.753501606406644e-05,1.384898868760781e-19,-0.00343720824457705,0.0002100840356433764,0.00026260505546815693,0.000889022252522409,-4.0657581468206416e-20,1.7618285302889447e-19,-2.801120535877999e-05,4.0657581468206416e-19,-3.501400715322234e-05,-4.1683339077280834e-05,0.00027056277031078935,-0.00023191094805952162,-5.30242624981192e-19,-4.0657581468206416e-20,2.8988868507440202e-05,5.499273780602403e-20,7.880509306114347e-21,2.6917489492654078e-20,1.703574917261266e-20,-3.3881317890172014e-21,0.00044642857392318547,-0.00011160714348079637,-0.00014880952949170023,1.7618285302889447e-19,5.499273780602403e-20,3.720238237292506e-05,-4.235164736271502e-21,-5.505714157152952e-20,-1.0587911840678754e-20,-6.423197608658125e-21,0.0002100840356433764,-5.25210089108441e-05,1.1265538198482195e-19,-2.801120535877999e-05,7.880509306114347e-21,-4.235164736271502e-21,7.002801339694997e-06,-1.2281977735187355e-20,-2.329340604949326e-21,-1.5841723449966775e-21,0.00041335978312417865,6.776263578034403e-20,-0.0004960317746736109,4.0657581468206416e-19,2.6917489492654078e-20,-5.505714157152952e-20,-1.2281977735187355e-20,8.26719551696442e-05,-3.5151867311053464e-20,-1.477251839318222e-20,0.00026260505546815693,-8.131516293641283e-20,-8.753501606406644e-05,-3.501400715322234e-05,1.703574917261266e-20,-1.0587911840678754e-20,-2.329340604949326e-21,-3.5151867311053464e-20,1.1671335414575879e-05,-2.7534576730935007e-21,9.726112330099568e-05,6.098637220230962e-20,1.384898868760781e-19,-4.1683339077280834e-05,-3.3881317890172014e-21,-6.423197608658125e-21,-1.5841723449966775e-21,-1.477251839318222e-20,-2.7534576730935007e-21,2.7788894385594176e-06,9.0,8.0,3.0,0.11718574911355972,-0.023526936769485474,-0.025925925001502037,-0.05370370298624039,0.0012626262614503503,0.0018518518190830946,0.004166666883975267,0.0015432098880410194,0.004629629664123058,0.0069444444961845875,-0.023526936769485474,0.01201449055224657,0.0018518518190830946,0.004166666883975267,-0.0010822510812431574,-0.00046296295477077365,-0.0010416667209938169,1.8221955510076053e-18,2.5158636292254395e-18,2.1365861809646666e-17,-0.025925925001502037,0.0018518518190830946,0.015123456716537476,0.004629629664123058,2.671740645782229e-18,-0.0005291005363687873,7.186660837899491e-20,-0.0015432098880410194,-0.0013227512827143073,-4.699690479029625e-32,-0.05370370298624039,0.004166666883975267,0.004629629664123058,0.12314815074205399,6.998215988717081e-18,-1.2531209838688996e-19,-0.004166666883975267,-8.203104898248626e-20,-0.004629629664123058,-0.0416666679084301,0.0012626262614503503,-0.0010822510812431574,2.671740645782229e-18,6.998215988717081e-18,0.00013528138515539467,-1.1740664279984118e-19,-2.7118653678395865e-19,-2.667677638010945e-19,-3.1637412117802344e-19,-2.403080241040825e-18,0.0018518518190830946,-0.00046296295477077365,-0.0005291005363687873,-1.2531209838688996e-19,-1.1740664279984118e-19,0.00013227513409219682,4.3292872271049526e-21,8.927225268826082e-20,3.0855698004606177e-20,2.1192554187433156e-33,0.004166666883975267,-0.0010416667209938169,7.186660837899491e-20,-0.004166666883975267,-2.7118653678395865e-19,4.3292872271049526e-21,0.0010416667209938169,8.283678166609491e-22,-9.545568626103613e-20,-2.141220915295832e-18,0.0015432098880410194,1.8221955510076053e-18,-0.0015432098880410194,-8.203104898248626e-20,-2.667677638010945e-19,8.927225268826082e-20,8.283678166609491e-22,0.00022045854711905122,2.2490735509348517e-20,4.69363286276625e-33,0.004629629664123058,2.5158636292254395e-18,-0.0013227512827143073,-0.004629629664123058,-3.1637412117802344e-19,3.0855698004606177e-20,-9.545568626103613e-20,2.2490735509348517e-20,0.0013227512827143073,5.6926796340583584e-33,0.0069444444961845875,2.1365861809646666e-17,-4.699690479029625e-32,-0.0416666679084301,-2.403080241040825e-18,2.1192554187433156e-33,-2.141220915295832e-18,4.69363286276625e-33,5.6926796340583584e-33,0.02083333395421505,9.0,8.0,4.0,0.09559763967990875,-0.018270201981067657,-0.02013888955116272,-0.03430555388331413,0.0009469697251915932,0.0013888889225199819,0.0024999999441206455,0.0011574074160307646,0.0027777778450399637,0.0034722222480922937,-0.018270201981067657,0.00916711799800396,0.0013888889225199819,0.0024999999441206455,-0.000811688310932368,-0.00034722223062999547,-0.0006249999860301614,1.3388087786196326e-18,1.2137045352110408e-18,7.627937008525126e-18,-0.02013888955116272,0.0013888889225199819,0.011541005223989487,0.0027777778450399637,2.004691032881198e-18,-0.00039682540227659047,-2.7686120258122556e-19,-0.0011574074160307646,-0.0007936508045531809,-1.5878094268855684e-32,-0.03430555388331413,0.0024999999441206455,0.0027777778450399637,0.047175925225019455,3.842112083833761e-18,-1.4860656426154306e-19,-0.0016666667070239782,2.606094073718115e-20,-0.0018518518190830946,-0.010416666977107525,0.0009469697251915932,-0.000811688310932368,2.004691032881198e-18,3.842112083833761e-18,0.000101461038866546,-7.593083753415204e-20,-1.6097110496162086e-19,-2.0198318502109453e-19,-1.928553245097543e-19,-8.410780740245311e-19,0.0013888889225199819,-0.00034722223062999547,-0.00039682540227659047,-1.4860656426154306e-19,-7.593083753415204e-20,9.920635056914762e-05,1.2703702522683018e-20,8.117323683787463e-20,2.7940500268467633e-20,5.800498455474175e-34,0.0024999999441206455,-0.0006249999860301614,-2.7686120258122556e-19,-0.0016666667070239782,-1.6097110496162086e-19,1.2703702522683018e-20,0.00041666667675599456,-7.515922887808869e-22,1.544913468590955e-19,-5.995418521469299e-19,0.0011574074160307646,1.3388087786196326e-18,-0.0011574074160307646,2.606094073718115e-20,-2.0198318502109453e-19,8.117323683787463e-20,-7.515922887808869e-22,0.0001653439103392884,-6.587020567415539e-21,1.6523608175402112e-33,0.0027777778450399637,1.2137045352110408e-18,-0.0007936508045531809,-0.0018518518190830946,-1.928553245097543e-19,2.7940500268467633e-20,1.544913468590955e-19,-6.587020567415539e-21,0.0005291005363687873,1.3305135866919383e-33,0.0034722222480922937,7.627937008525126e-18,-1.5878094268855684e-32,-0.010416666977107525,-8.410780740245311e-19,5.800498455474175e-34,-5.995418521469299e-19,1.6523608175402112e-33,1.3305135866919383e-33,0.0034722222480922937,9.0,8.0,5.0,0.08085377514362335,-0.01494949497282505,-0.01648148149251938,-0.023862434551119804,0.0007575757335871458,0.0011111111380159855,0.0016666667070239782,0.0009259259095415473,0.0018518518190830946,0.0019841270986944437,-0.01494949497282505,0.007417027372866869,0.0011111111380159855,0.0016666667070239782,-0.0006493506371043622,-0.00027777778450399637,-0.00041666667675599456,-7.453889935837843e-19,-5.014435047745458e-19,-1.8925373359378896e-18,-0.01648148149251938,0.0011111111380159855,0.009338624775409698,0.0018518518190830946,-6.890386068233164e-19,-0.0003174603043589741,-9.507531888858098e-20,-0.0009259259095415473,-0.0005291005363687873,-1.8264608981176e-33,-0.023862434551119804,0.0016666667070239782,0.0018518518190830946,0.023835979402065277,-1.0149704639372662e-18,-2.8102120374167984e-20,-0.0008333333535119891,0.0,-0.0009259259095415473,-0.003968254197388887,0.0007575757335871458,-0.0006493506371043622,-6.890386068233164e-19,-1.0149704639372662e-18,8.116882963804528e-05,1.5679395313204996e-21,-9.131842933625279e-21,7.807112859504178e-20,6.502418327665334e-20,2.0597829935866373e-19,0.0011111111380159855,-0.00027777778450399637,-0.0003174603043589741,-2.8102120374167984e-20,1.5679395313204996e-21,7.936507608974352e-05,1.7865802299089748e-20,3.3881317890172014e-20,-1.0164395367051604e-20,1.1129232399657794e-35,0.0016666667070239782,-0.00041666667675599456,-9.507531888858098e-20,-0.0008333333535119891,-9.131842933625279e-21,1.7865802299089748e-20,0.00020833333837799728,-8.309697197400832e-22,1.3378807110529165e-20,1.2235548345898695e-19,0.0009259259095415473,-7.453889935837843e-19,-0.0009259259095415473,0.0,7.807112859504178e-20,3.3881317890172014e-20,-8.309697197400832e-22,0.00013227513409219682,6.776263578034403e-21,2.0584795598231705e-34,0.0018518518190830946,-5.014435047745458e-19,-0.0005291005363687873,-0.0009259259095415473,6.502418327665334e-20,-1.0164395367051604e-20,1.3378807110529165e-20,6.776263578034403e-21,0.00026455026818439364,1.697683494562977e-34,0.0019841270986944437,-1.8925373359378896e-18,-1.8264608981176e-33,-0.003968254197388887,2.0597829935866373e-19,1.1129232399657794e-35,1.2235548345898695e-19,2.0584795598231705e-34,1.697683494562977e-34,0.0009920635493472219,9.0,8.0,6.0,0.0701008066534996,-0.012656325474381447,-0.013955026865005493,-0.017576057463884354,0.0006313131307251751,0.0009259259095415473,0.0011904762359336019,0.0007716049440205097,0.0013227512827143073,0.0012400794075801969,-0.012656325474381447,0.006230459548532963,0.0009259259095415473,0.0011904762359336019,-0.0005411255406215787,-0.00023148147738538682,-0.00029761905898340046,9.351243737687476e-19,6.030874584450618e-19,1.7857588654101038e-18,-0.013955026865005493,0.0009259259095415473,0.007845175452530384,0.0013227512827143073,1.4128162144344457e-18,-0.00026455026818439364,-1.4579360734158577e-19,-0.0007716049440205097,-0.0003779289545491338,-4.927180815071592e-33,-0.017576057463884354,0.0011904762359336019,0.0013227512827143073,0.013850859366357327,1.7264203403855764e-18,-3.677752924631305e-20,-0.0004761904710903764,-2.710505431213761e-20,-0.0005291005363687873,-0.0018601190531626344,0.0006313131307251751,-0.0005411255406215787,1.4128162144344457e-18,1.7264203403855764e-18,6.764069257769734e-05,-6.136936975061875e-20,-5.637672083075035e-20,-1.339856945702708e-19,-9.166556408136376e-20,-2.3601680754155287e-19,0.0009259259095415473,-0.00023148147738538682,-0.00026455026818439364,-3.677752924631305e-20,-6.136936975061875e-20,6.613756704609841e-05,5.422807879996551e-21,4.0657581468206416e-20,3.3881317890172014e-21,2.1130624461421534e-34,0.0011904762359336019,-0.00029761905898340046,-1.4579360734158577e-19,-0.0004761904710903764,-5.637672083075035e-20,5.422807879996551e-21,0.0001190476177725941,1.1134282490988707e-34,4.964095032863983e-20,4.09502418463368e-20,0.0007716049440205097,9.351243737687476e-19,-0.0007716049440205097,-2.710505431213761e-20,-1.339856945702708e-19,4.0657581468206416e-20,1.1134282490988707e-34,0.00011022927355952561,6.776263578034403e-21,4.658333961272507e-34,0.0013227512827143073,6.030874584450618e-19,-0.0003779289545491338,-0.0005291005363687873,-9.166556408136376e-20,3.3881317890172014e-21,4.964095032863983e-20,6.776263578034403e-21,0.0001511715818196535,3.2844889436621226e-34,0.0012400794075801969,1.7857588654101038e-18,-4.927180815071592e-33,-0.0018601190531626344,-2.3601680754155287e-19,2.1130624461421534e-34,4.09502418463368e-20,4.658333961272507e-34,3.2844889436621226e-34,0.00037202381645329297,9.0,8.0,7.0,0.061895743012428284,-0.01097582932561636,-0.012103174813091755,-0.013492063619196415,0.0005411255406215787,0.0007936508045531809,0.0008928571478463709,0.0006613756413571537,0.0009920635493472219,0.0008267195662483573,-0.01097582932561636,0.005372281651943922,0.0007936508045531809,0.0008928571478463709,-0.00046382189611904323,-0.00019841270113829523,-0.00022321428696159273,7.995991022080595e-19,6.166399856011306e-19,1.1203897733210509e-18,-0.012103174813091755,0.0007936508045531809,0.0067649283446371555,0.0009920635493472219,1.2142854227962061e-18,-0.00022675737272948027,1.4276707626487642e-20,-0.0006613756413571537,-0.00028344671591185033,-3.046560300436801e-33,-0.013492063619196415,0.0008928571478463709,0.0009920635493472219,0.008796296082437038,1.3890764410469036e-18,9.958589761032856e-21,-0.00029761905898340046,1.3552527156068805e-20,-0.0003306878206785768,-0.0009920635493472219,0.0005411255406215787,-0.00046382189611904323,1.2142854227962061e-18,1.3890764410469036e-18,5.7977737014880404e-05,-4.9632681753688566e-20,-6.354957227606418e-20,-1.1536187817500424e-19,-6.923015112224113e-20,-1.4876210006609717e-19,0.0007936508045531809,-0.00019841270113829523,-0.00022675737272948027,9.958589761032856e-21,-4.9632681753688566e-20,5.668934318237007e-05,4.222327684802374e-21,3.3881317890172014e-20,-8.470329472543003e-21,1.2144959676856248e-34,0.0008928571478463709,-0.00022321428696159273,1.4276707626487642e-20,-0.00029761905898340046,-6.354957227606418e-20,4.222327684802374e-21,7.440476474585012e-05,1.2808186446559645e-34,-1.0388672788565713e-20,2.3235673043263606e-20,0.0006613756413571537,7.995991022080595e-19,-0.0006613756413571537,1.3552527156068805e-20,-1.1536187817500424e-19,3.3881317890172014e-20,1.2808186446559645e-34,9.448223863728344e-05,-6.776263578034403e-21,2.9361619576871507e-34,0.0009920635493472219,6.166399856011306e-19,-0.00028344671591185033,-0.0003306878206785768,-6.923015112224113e-20,-8.470329472543003e-21,-1.0388672788565713e-20,-6.776263578034403e-21,9.448223863728344e-05,1.6848283618107815e-34,0.0008267195662483573,1.1203897733210509e-18,-3.046560300436801e-33,-0.0009920635493472219,-1.4876210006609717e-19,1.2144959676856248e-34,2.3235673043263606e-20,2.9361619576871507e-34,1.6848283618107815e-34,0.0001653439103392884,9.0,8.0,8.0,0.055422279983758926,-0.009690656326711178,-0.010686728172004223,-0.010686728172004223,0.0004734848625957966,0.0006944444612599909,0.0006944444612599909,0.0005787037080153823,0.0007716049440205097,0.0005787037080153823,-0.009690656326711178,0.0047224476002156734,0.0006944444612599909,0.0006944444612599909,-0.000405844155466184,-0.00017361111531499773,-0.00017361111531499773,6.708500942254059e-19,4.479382574297423e-19,6.911788849595091e-19,-0.010686728172004223,0.0006944444612599909,0.005946869496256113,0.0007716049440205097,1.045022349181624e-18,-0.00019841270113829523,1.6940658945086007e-20,-0.0005787037080153823,-0.00022045854711905122,4.0657581468206416e-20,-0.010686728172004223,0.0006944444612599909,0.0007716049440205097,0.005946869496256113,1.0382185818482222e-18,-3.082391940568251e-20,-0.00019841270113829523,-2.1575972302680036e-20,-0.00022045854711905122,-0.0005787037080153823,0.0004734848625957966,-0.000405844155466184,1.045022349181624e-18,1.0382185818482222e-18,5.0730519433273e-05,-3.78825617653272e-20,-3.8031428426192604e-20,-1.0082795938327809e-19,-5.35133188181244e-20,-9.98507036506835e-20,0.0006944444612599909,-0.00017361111531499773,-0.00019841270113829523,-3.082391940568251e-20,-3.78825617653272e-20,4.960317528457381e-05,4.5224270338907655e-21,3.7269449679189215e-20,3.683783426725986e-21,5.30687152973289e-22,0.0006944444612599909,-0.00017361111531499773,1.6940658945086007e-20,-0.00019841270113829523,-3.8031428426192604e-20,4.5224270338907655e-21,4.960317528457381e-05,0.0,-1.0164395367051604e-20,3.3881317890172014e-20,0.0005787037080153823,6.708500942254059e-19,-0.0005787037080153823,-2.1575972302680036e-20,-1.0082795938327809e-19,3.7269449679189215e-20,0.0,8.26719551696442e-05,6.776263578034403e-21,0.0,0.0007716049440205097,4.479382574297423e-19,-0.00022045854711905122,-0.00022045854711905122,-5.35133188181244e-20,3.683783426725986e-21,-1.0164395367051604e-20,6.776263578034403e-21,6.29881615168415e-05,-1.3552527156068805e-20,0.0005787037080153823,6.911788849595091e-19,4.0657581468206416e-20,-0.0005787037080153823,-9.98507036506835e-20,5.30687152973289e-22,3.3881317890172014e-20,0.0,-1.3552527156068805e-20,8.26719551696442e-05,9.0,8.0,9.0,0.050181444734334946,-0.008675645105540752,-0.009567901492118835,-0.008675645105540752,0.0004208754107821733,0.0006172839784994721,0.0005555555690079927,0.0005144032766111195,0.0006172839784994721,0.0004208754107821733,-0.008675645105540752,0.004213163163512945,0.0006172839784994721,0.0005555555690079927,-0.0003607503604143858,-0.00015432099462486804,-0.00013888889225199819,5.89534931288993e-19,3.3152972436122e-19,4.472333961502706e-19,-0.009567901492118835,0.0006172839784994721,0.005305702332407236,0.0006172839784994721,9.182878361832667e-19,-0.00017636684060562402,3.3881317890172014e-21,-0.0005144032766111195,-0.00017636684060562402,-9.486769009248164e-20,-0.008675645105540752,0.0005555555690079927,0.0006172839784994721,0.004213163163512945,9.093098246097693e-19,2.5588274871766718e-20,-0.00013888889225199819,-8.420552425154204e-21,-0.00015432099462486804,-0.0003607503604143858,0.0004208754107821733,-0.0003607503604143858,9.182878361832667e-19,9.093098246097693e-19,4.5093795051798224e-05,-2.890039813289567e-20,-4.526897444269603e-20,-8.998119170965852e-20,-4.306473198069828e-20,-7.208086754469175e-20,0.0006172839784994721,-0.00015432099462486804,-0.00017636684060562402,2.5588274871766718e-20,-2.890039813289567e-20,4.4091710151406005e-05,-5.290452519639531e-21,3.3881317890172014e-20,-1.7842877521556595e-21,4.417588757494988e-22,0.0005555555690079927,-0.00013888889225199819,3.3881317890172014e-21,-0.00013888889225199819,-4.526897444269603e-20,-5.290452519639531e-21,3.4722223062999547e-05,0.0,4.235164736271502e-21,3.049318610115481e-20,0.0005144032766111195,5.89534931288993e-19,-0.0005144032766111195,-8.420552425154204e-21,-8.998119170965852e-20,3.3881317890172014e-20,0.0,7.348618237301707e-05,1.6940658945086007e-21,8.470329472543003e-22,0.0006172839784994721,3.3152972436122e-19,-0.00017636684060562402,-0.00015432099462486804,-4.306473198069828e-20,-1.7842877521556595e-21,4.235164736271502e-21,1.6940658945086007e-21,4.4091710151406005e-05,2.0328790734103208e-20,0.0004208754107821733,4.472333961502706e-19,-9.486769009248164e-20,-0.0003607503604143858,-7.208086754469175e-20,4.417588757494988e-22,3.049318610115481e-20,8.470329472543003e-22,2.0328790734103208e-20,4.5093795051798224e-05,9.0,8.0,10.0,0.04585016891360283,-0.007853535003960133,-0.00866161659359932,-0.007184343412518501,0.0003787878667935729,0.0005555555690079927,0.00045454545761458576,0.00046296295477077365,0.0005050505278632045,0.00031565656536258757,-0.007853535003960133,0.0038032105658203363,0.0005555555690079927,0.00045454545761458576,-0.0003246753185521811,-0.00013888889225199819,-0.00011363636440364644,-3.7592380990329917e-19,-1.9403635747872103e-19,-2.507217523872729e-19,-0.00866161659359932,0.0005555555690079927,0.004789562430232763,0.0005050505278632045,-3.57635260150058e-19,-0.00015873015217948705,-4.404571325722362e-20,-0.00046296295477077365,-0.00014430013834498823,-1.3552527156068805e-20,-0.007184343412518501,0.00045454545761458576,0.0005050505278632045,0.003095889464020729,-4.0417226046653234e-19,-4.5306682246401085e-20,-0.00010101010411744937,-1.1214374492656376e-19,-0.00011223344336031005,-0.0002367424312978983,0.0003787878667935729,-0.0003246753185521811,-3.57635260150058e-19,-4.0417226046653234e-19,4.058441481902264e-05,1.917242048163357e-35,2.808089802157717e-20,4.0051335627387474e-20,1.7172424612965708e-20,2.5763588694013943e-20,0.0005555555690079927,-0.00013888889225199819,-0.00015873015217948705,-4.5306682246401085e-20,1.917242048163357e-35,3.968253804487176e-05,5.27069227340489e-21,1.586089582443307e-20,6.921117928252783e-21,4.513898307157584e-36,0.00045454545761458576,-0.00011363636440364644,-4.404571325722362e-20,-0.00010101010411744937,2.808089802157717e-20,5.27069227340489e-21,2.5252526029362343e-05,3.527527394249734e-35,5.929230630780102e-21,8.470329472543003e-21,0.00046296295477077365,-3.7592380990329917e-19,-0.00046296295477077365,-1.1214374492656376e-19,4.0051335627387474e-20,1.586089582443307e-20,3.527527394249734e-35,6.613756704609841e-05,3.204106720944027e-20,2.858802261199803e-35,0.0005050505278632045,-1.9403635747872103e-19,-0.00014430013834498823,-0.00011223344336031005,1.7172424612965708e-20,6.921117928252783e-21,5.929230630780102e-21,3.204106720944027e-20,3.2066698622656986e-05,3.3881317890172014e-21,0.00031565656536258757,-2.507217523872729e-19,-1.3552527156068805e-20,-0.0002367424312978983,2.5763588694013943e-20,4.513898307157584e-36,8.470329472543003e-21,2.858802261199803e-35,3.3881317890172014e-21,2.630471317388583e-05,9.0,8.0,11.0,0.0422096848487854,-0.007174012716859579,-0.007912457920610905,-0.006047655828297138,0.000344352622050792,0.0005050505278632045,0.0003787878667935729,0.0004208754107821733,0.0004208754107821733,0.0002428127481834963,-0.007174012716859579,0.0034660729579627514,0.0005050505278632045,0.0003787878667935729,-0.00029515937785618007,-0.00012626263196580112,-9.469696669839323e-05,6.239459032651404e-19,1.0033278838908853e-19,-3.2526065174565133e-19,-0.007912457920610905,0.0005050505278632045,0.004365079570561647,0.0004208754107821733,9.515867155246248e-19,-0.00014430013834498823,-2.371692252312041e-20,-0.0004208754107821733,-0.0001202501225634478,-4.506215279392878e-19,-0.006047655828297138,0.0003787878667935729,0.0004208754107821733,0.00234265741892159,-2.0583371077252888e-19,-6.068663813747221e-19,-7.575757626909763e-05,-4.13178473729039e-19,-8.417508070124313e-05,-0.00016187515575438738,0.000344352622050792,-0.00029515937785618007,9.515867155246248e-19,-2.0583371077252888e-19,3.689492223202251e-05,-4.120035089053472e-20,2.0757457699513208e-20,-8.738472992799138e-20,-2.0870426014263516e-20,1.9586520534546176e-20,0.0005050505278632045,-0.00012626263196580112,-0.00014430013834498823,-6.068663813747221e-19,-4.120035089053472e-20,3.607503458624706e-05,1.5511497641747513e-20,2.146628039863726e-20,2.9141821780661784e-20,4.107829328256913e-20,0.0003787878667935729,-9.469696669839323e-05,-2.371692252312041e-20,-7.575757626909763e-05,2.0757457699513208e-20,1.5511497641747513e-20,1.8939394067274407e-05,-3.3101920919155616e-35,-7.199780051661553e-21,5.082197683525802e-21,0.0004208754107821733,6.239459032651404e-19,-0.0004208754107821733,-4.13178473729039e-19,-8.738472992799138e-20,2.146628039863726e-20,-3.3101920919155616e-35,6.01250612817239e-05,-1.1345631092203635e-20,3.5943505006660854e-20,0.0004208754107821733,1.0033278838908853e-19,-0.0001202501225634478,-8.417508070124313e-05,-2.0870426014263516e-20,2.9141821780661784e-20,-7.199780051661553e-21,-1.1345631092203635e-20,2.405002487648744e-05,3.3881317890172014e-21,0.0002428127481834963,-3.2526065174565133e-19,-4.506215279392878e-19,-0.00016187515575438738,1.9586520534546176e-20,4.107829328256913e-20,5.082197683525802e-21,3.5943505006660854e-20,3.3881317890172014e-21,1.618751593923662e-05,9.0,8.0,12.0,0.03910641744732857,-0.006602887995541096,-0.007282763719558716,-0.005161273758858442,0.00031565656536258757,0.00046296295477077365,0.00032051283051259816,0.00038580247201025486,0.0003561253543011844,0.000190781443961896,-0.006602887995541096,0.0031839110888540745,0.00046296295477077365,0.00032051283051259816,-0.00027056277031078935,-0.00011574073869269341,-8.012820762814954e-05,5.340178255980957e-19,1.9989977555201488e-19,2.405573570202213e-19,-0.007282763719558716,0.00046296295477077365,0.004009801894426346,0.0003561253543011844,7.3302259172732825e-19,-0.00013227513409219682,3.3881317890172014e-21,-0.00038580247201025486,-0.0001017501053865999,3.3881317890172014e-21,-0.005161273758858442,0.00032051283051259816,0.0003561253543011844,0.0018160081235691905,5.35039445353387e-19,-5.149370553212113e-34,-5.827505810884759e-05,-1.0560232579829528e-33,-6.475006375694647e-05,-0.00011446886492194608,0.00031565656536258757,-0.00027056277031078935,7.3302259172732825e-19,5.35039445353387e-19,3.382034628884867e-05,-3.254965727036394e-20,-2.868011605836368e-20,-6.675222819976197e-20,-2.464697564642405e-20,-3.036859525256328e-20,0.00046296295477077365,-0.00011574073869269341,-0.00013227513409219682,-5.149370553212113e-34,-3.254965727036394e-20,3.3068783523049206e-05,2.7602555991741413e-35,6.424422732269947e-35,2.3720946510561226e-35,2.922759370583483e-35,0.00032051283051259816,-8.012820762814954e-05,3.3881317890172014e-21,-5.827505810884759e-05,-2.868011605836368e-20,2.7602555991741413e-35,1.4568764527211897e-05,5.660680290106076e-35,-4.235164736271502e-22,0.0,0.00038580247201025486,5.340178255980957e-19,-0.00038580247201025486,-1.0560232579829528e-33,-6.675222819976197e-20,6.424422732269947e-35,5.660680290106076e-35,5.5114636779762805e-05,4.864647339549353e-35,5.993940400198257e-35,0.0003561253543011844,1.9989977555201488e-19,-0.0001017501053865999,-6.475006375694647e-05,-2.464697564642405e-20,2.3720946510561226e-35,-4.235164736271502e-22,4.864647339549353e-35,1.850001899583731e-05,0.0,0.000190781443961896,2.405573570202213e-19,3.3881317890172014e-21,-0.00011446886492194608,-3.036859525256328e-20,2.922759370583483e-35,0.0,5.993940400198257e-35,0.0,1.0406260116724297e-05,9.0,8.0,13.0,0.03642931208014488,-0.006116106174886227,-0.0067460318095982075,-0.004456654656678438,0.00029137529782019556,0.0004273504309821874,0.00027472528745420277,0.0003561253543011844,0.0003052503161597997,0.00015262515807989985,-0.006116106174886227,0.0029442778322845697,0.0004273504309821874,0.00027472528745420277,-0.00024975024280138314,-0.00010683760774554685,-6.868132186355069e-05,5.915274025894801e-19,3.8285889215894375e-19,3.083199928005653e-19,-0.0067460318095982075,0.0004273504309821874,0.0037080643232911825,0.0003052503161597997,8.802723729891312e-19,-0.00012210012937430292,1.6940658945086007e-20,-0.0003561253543011844,-8.721437188796699e-05,2.270048298641525e-19,-0.004456654656678438,0.00027472528745420277,0.0003052503161597997,0.001436526421457529,7.538453643834905e-19,6.7664524404877e-20,-4.578754669637419e-05,4.946833195196679e-19,-5.087505269329995e-05,-8.325008093379438e-05,0.00029137529782019556,-0.00024975024280138314,8.802723729891312e-19,7.538453643834905e-19,3.121878035017289e-05,-8.179545598868637e-21,-2.693562284264489e-20,-7.394092532368502e-20,-4.5018455039366104e-20,-3.697046266184251e-20,0.0004273504309821874,-0.00010683760774554685,-0.00012210012937430292,6.7664524404877e-20,-8.179545598868637e-21,3.052503234357573e-05,-1.0129636413762688e-21,4.4479744832264955e-35,-2.582064073026666e-21,-4.225195755861817e-21,0.00027472528745420277,-6.868132186355069e-05,1.6940658945086007e-20,-4.578754669637419e-05,-2.693562284264489e-20,-1.0129636413762688e-21,1.1446886674093548e-05,6.921310737641629e-35,-2.329340604949326e-21,0.0,0.0003561253543011844,5.915274025894801e-19,-0.0003561253543011844,4.946833195196679e-19,-7.394092532368502e-20,4.4479744832264955e-35,6.921310737641629e-35,5.087505269329995e-05,-1.0767796158927762e-20,-3.902437797220582e-20,0.0003052503161597997,3.8285889215894375e-19,-8.721437188796699e-05,-5.087505269329995e-05,-4.5018455039366104e-20,-2.582064073026666e-21,-2.329340604949326e-21,-1.0767796158927762e-20,1.4535728951159399e-05,8.470329472543003e-21,0.00015262515807989985,3.083199928005653e-19,2.270048298641525e-19,-8.325008093379438e-05,-3.697046266184251e-20,-4.225195755861817e-21,0.0,-3.902437797220582e-20,8.470329472543003e-21,6.937506896065315e-06,9.0,8.0,14.0,0.034096021205186844,-0.005696248263120651,-0.006283068563789129,-0.0038872354198247194,0.00027056277031078935,0.00039682540227659047,0.0002380952355451882,0.0003306878206785768,0.00026455026818439364,0.00012400794366840273,-0.005696248263120651,0.002738224109634757,0.00039682540227659047,0.0002380952355451882,-0.00023191094805952162,-9.920635056914762e-05,-5.952380888629705e-05,4.577295426417442e-19,1.4568966692773966e-19,1.5585406229479126e-19,-0.006283068563789129,0.00039682540227659047,0.0034486015792936087,0.00026455026818439364,6.15179184639362e-19,-0.00011337868636474013,-2.371692252312041e-20,-0.0003306878206785768,-7.558579090982676e-05,-6.776263578034403e-21,-0.0038872354198247194,0.0002380952355451882,0.00026455026818439364,0.001156071899458766,3.769267663960197e-19,-2.0140099850387352e-20,-3.6630037357099354e-05,-7.4395159427646145e-34,-4.0700040699448436e-05,-6.200397183420137e-05,0.00027056277031078935,-0.00023191094805952162,6.15179184639362e-19,3.769267663960197e-19,2.8988868507440202e-05,-2.3914033846978114e-20,-1.5452144201622566e-20,-5.721619283021803e-20,-1.8309182416528108e-20,-1.931046516097794e-20,0.00039682540227659047,-9.920635056914762e-05,-0.00011337868636474013,-2.0140099850387352e-20,-2.3914033846978114e-20,2.8344671591185033e-05,5.035024962596838e-21,4.719984048198328e-35,1.5234406786656846e-35,1.5610564978919978e-35,0.0002380952355451882,-5.952380888629705e-05,-2.371692252312041e-20,-3.6630037357099354e-05,-1.5452144201622566e-20,5.035024962596838e-21,9.157509339274839e-06,3.049835877434327e-35,4.235164736271502e-22,-4.235164736271502e-22,0.0003306878206785768,4.577295426417442e-19,-0.0003306878206785768,-7.4395159427646145e-34,-5.721619283021803e-20,4.719984048198328e-35,3.049835877434327e-35,4.724111931864172e-05,3.6137379662680484e-35,3.811364223183014e-35,0.00026455026818439364,1.4568966692773966e-19,-7.558579090982676e-05,-4.0700040699448436e-05,-1.8309182416528108e-20,1.5234406786656846e-35,4.235164736271502e-22,3.6137379662680484e-35,1.1628582797129638e-05,8.470329472543003e-22,0.00012400794366840273,1.5585406229479126e-19,-6.776263578034403e-21,-6.200397183420137e-05,-1.931046516097794e-20,1.5610564978919978e-35,-4.235164736271502e-22,3.811364223183014e-35,8.470329472543003e-22,4.76953618999687e-06,9.0,8.0,15.0,0.0320441760122776,-0.005330387037247419,-0.005879629403352737,-0.0034204793628305197,0.00025252526393160224,0.000370370369637385,0.00020833333837799728,0.00030864198924973607,0.00023148147738538682,0.00010212418419541791,-0.005330387037247419,0.002559148008003831,0.000370370369637385,0.00020833333837799728,-0.00021645022206939757,-9.259259240934625e-05,-5.208333459449932e-05,-2.1360712765429888e-19,-7.792703114739563e-20,-6.437450399132683e-20,-0.005879629403352737,0.000370370369637385,0.0032231041695922613,0.00023148147738538682,-3.2630522576294095e-19,-0.00010582010872894898,-1.4399560103323106e-20,-0.00030864198924973607,-6.613756704609841e-05,-2.0328790734103208e-20,-0.0034204793628305197,0.00020833333837799728,0.00023148147738538682,0.0009442708687856793,-1.8527514477389492e-19,-1.4265123302738818e-34,-2.9761904443148524e-05,-5.1399213193500787e-20,-3.3068783523049206e-05,-4.7134239139268175e-05,0.00025252526393160224,-0.00021645022206939757,-3.2630522576294095e-19,-1.8527514477389492e-19,2.7056277758674696e-05,2.0831781170020805e-20,1.1717876100343136e-20,2.670089095678736e-20,8.010266802360068e-21,7.88340766943255e-21,0.000370370369637385,-9.259259240934625e-05,-0.00010582010872894898,-1.4265123302738818e-34,2.0831781170020805e-20,2.6455027182237245e-05,9.022092051581167e-36,2.055815354682442e-35,6.167445920554363e-36,6.069771695742202e-36,0.00020833333837799728,-5.208333459449932e-05,-1.4399560103323106e-20,-2.9761904443148524e-05,1.1717876100343136e-20,9.022092051581167e-36,7.440476110787131e-06,1.464154839191266e-35,1.9058241313221758e-21,2.117582368135751e-22,0.00030864198924973607,-2.1360712765429888e-19,-0.00030864198924973607,-5.1399213193500787e-20,2.670089095678736e-20,2.055815354682442e-35,1.464154839191266e-35,4.4091710151406005e-05,1.4685489945453692e-20,1.2037062152420224e-35,0.00023148147738538682,-7.792703114739563e-20,-6.613756704609841e-05,-3.3068783523049206e-05,8.010266802360068e-21,6.167445920554363e-36,1.9058241313221758e-21,1.4685489945453692e-20,9.448223863728344e-06,2.964615315390051e-21,0.00010212418419541791,-6.437450399132683e-20,-2.0328790734103208e-20,-4.7134239139268175e-05,7.88340766943255e-21,6.069771695742202e-36,2.117582368135751e-22,1.2037062152420224e-35,2.964615315390051e-21,3.3667313346086303e-06,9.0,8.0,16.0,0.030225664377212524,-0.005008726846426725,-0.005524918437004089,-0.0030330882873386145,0.0002367424312978983,0.00034722223062999547,0.00018382353300694376,0.00028935185400769114,0.00020424836839083582,8.510348561685532e-05,-0.005008726846426725,0.002402073470875621,0.00034722223062999547,0.00018382353300694376,-0.000202922077733092,-8.680555765749887e-05,-4.595588325173594e-05,-5.692061405548898e-19,0.0,1.1604351377383915e-19,-0.005524918437004089,0.00034722223062999547,0.003025307320058346,0.00020424836839083582,-6.657678965418801e-19,-9.920635056914762e-05,-6.776263578034403e-20,-0.00028935185400769114,-5.835667616338469e-05,2.3568691757350907e-19,-0.0030330882873386145,0.00018382353300694376,0.00020424836839083582,0.0007812986150383949,9.486769009248164e-20,3.5914196963582334e-19,-2.4509803552064113e-05,1.3552527156068805e-19,-2.7233116270508617e-05,-3.6472923966357484e-05,0.0002367424312978983,-0.000202922077733092,-6.657678965418801e-19,9.486769009248164e-20,2.53652597166365e-05,5.572577492511086e-20,-7.697341710912487e-22,5.474376936634264e-20,1.8541045423532627e-21,-6.45862622281404e-21,0.00034722223062999547,-8.680555765749887e-05,-9.920635056914762e-05,3.5914196963582334e-19,5.572577492511086e-20,2.4801587642286904e-05,-1.8634724839594607e-20,-1.0164395367051604e-20,-1.0587911840678754e-20,-1.5129926656877617e-20,0.00018382353300694376,-4.595588325173594e-05,-6.776263578034403e-20,-2.4509803552064113e-05,-7.697341710912487e-22,-1.8634724839594607e-20,6.127450888016028e-06,1.6093625997831706e-20,2.329340604949326e-21,-9.787221808411772e-22,0.00028935185400769114,-5.692061405548898e-19,-0.00028935185400769114,1.3552527156068805e-19,5.474376936634264e-20,-1.0164395367051604e-20,1.6093625997831706e-20,4.13359775848221e-05,2.837560373301906e-20,-2.0205195087186154e-20,0.00020424836839083582,0.0,-5.835667616338469e-05,-2.7233116270508617e-05,1.8541045423532627e-21,-1.0587911840678754e-20,2.329340604949326e-21,2.837560373301906e-20,7.780889973219018e-06,-3.034147964200481e-21,8.510348561685532e-05,1.1604351377383915e-19,2.3568691757350907e-19,-3.6472923966357484e-05,-6.45862622281404e-21,-1.5129926656877617e-20,-9.787221808411772e-22,-2.0205195087186154e-20,-3.034147964200481e-21,2.431528173474362e-06,9.0,9.0,3.0,0.1063823401927948,-0.021077441051602364,-0.021077441051602364,-0.04814814776182175,0.0011223345063626766,0.00148148147854954,0.003703703638166189,0.0011223345063626766,0.003703703638166189,0.006172839552164078,-0.021077441051602364,0.010720699094235897,0.00148148147854954,0.003703703638166189,-0.0009620009805075824,-0.000370370369637385,-0.0009259259095415473,-8.988762853509082e-19,-9.254650755632362e-19,-9.495938306338314e-18,-0.021077441051602364,0.00148148147854954,0.010720699094235897,0.003703703638166189,-1.2132488620911006e-18,-0.000370370369637385,-8.47643316073485e-20,-0.0009620009805075824,-0.0009259259095415473,-9.495938306338314e-18,-0.04814814776182175,0.003703703638166189,0.003703703638166189,0.10987654328346252,-3.4571318869939247e-18,1.2328363180505973e-19,-0.003703703638166189,-2.931599848806069e-18,-0.003703703638166189,-0.03703703731298447,0.0011223345063626766,-0.0009620009805075824,-1.2132488620911006e-18,-3.4571318869939247e-18,0.0001202501225634478,8.157040631652226e-20,1.9899220332367935e-19,9.440861777721178e-20,1.3127295575140315e-19,1.0680356511961915e-18,0.00148148147854954,-0.000370370369637385,-0.000370370369637385,1.2328363180505973e-19,8.157040631652226e-20,9.259259240934625e-05,1.0756515321765356e-20,3.821701415143712e-20,-4.157742246523672e-20,9.57487168518786e-34,0.003703703638166189,-0.0009259259095415473,-8.47643316073485e-20,-0.003703703638166189,1.9899220332367935e-19,1.0756515321765356e-20,0.0009259259095415473,2.4785032716699165e-22,3.959643152692306e-20,9.516537171542416e-19,0.0011223345063626766,-8.988762853509082e-19,-0.0009620009805075824,-2.931599848806069e-18,9.440861777721178e-20,3.821701415143712e-20,2.4785032716699165e-22,0.0001202501225634478,1.9863429261238532e-19,1.0680356511961915e-18,0.003703703638166189,-9.254650755632362e-19,-0.0009259259095415473,-0.003703703638166189,1.3127295575140315e-19,-4.157742246523672e-20,3.959643152692306e-20,1.9863429261238532e-19,0.0009259259095415473,9.516537171542416e-19,0.006172839552164078,-9.495938306338314e-18,-9.495938306338314e-18,-0.03703703731298447,1.0680356511961915e-18,9.57487168518786e-34,9.516537171542416e-19,1.0680356511961915e-18,9.516537171542416e-19,0.018518518656492233,9.0,9.0,4.0,0.08670033514499664,-0.016363635659217834,-0.016363635659217834,-0.03074074164032936,0.0008417508215643466,0.0011111111380159855,0.002222222276031971,0.0008417508215643466,0.002222222276031971,0.003086419776082039,-0.016363635659217834,0.00817941315472126,0.0011111111380159855,0.002222222276031971,-0.0007215007208287716,-0.00027777778450399637,-0.0005555555690079927,9.103891919115744e-19,1.321796051563678e-18,5.220898501458081e-18,-0.016363635659217834,0.0011111111380159855,0.00817941315472126,0.002222222276031971,1.7107813535319191e-18,-0.00027777778450399637,1.8006525108330625e-19,-0.0007215007208287716,-0.0005555555690079927,5.220898501458081e-18,-0.03074074164032936,0.002222222276031971,0.002222222276031971,0.0420987643301487,3.3677618460476236e-18,1.7213305429801727e-19,-0.00148148147854954,2.7467839185191118e-18,-0.00148148147854954,-0.009259259328246117,0.0008417508215643466,-0.0007215007208287716,1.7107813535319191e-18,3.3677618460476236e-18,9.018759010359645e-05,-9.327975534797271e-20,-1.2819562415285568e-19,-1.387050443082214e-19,-1.5302611272623146e-19,-7.476249144783034e-19,0.0011111111380159855,-0.00027777778450399637,-0.00027777778450399637,1.7213305429801727e-19,-9.327975534797271e-20,6.944444612599909e-05,-3.226495527445511e-20,5.245893818693205e-20,-1.0768305876668505e-20,2.4038960493361553e-34,0.002222222276031971,-0.0005555555690079927,1.8006525108330625e-19,-0.00148148147854954,-1.2819562415285568e-19,-3.226495527445511e-20,0.000370370369637385,4.632388640010704e-22,-3.667238683563932e-20,5.067340485748584e-19,0.0008417508215643466,9.103891919115744e-19,-0.0007215007208287716,2.7467839185191118e-18,-1.387050443082214e-19,5.245893818693205e-20,4.632388640010704e-22,9.018759010359645e-05,-1.26440501989383e-19,-7.476249144783034e-19,0.002222222276031971,1.321796051563678e-18,-0.0005555555690079927,-0.00148148147854954,-1.5302611272623146e-19,-1.0768305876668505e-20,-3.667238683563932e-20,-1.26440501989383e-19,0.000370370369637385,5.067340485748584e-19,0.003086419776082039,5.220898501458081e-18,5.220898501458081e-18,-0.009259259328246117,-7.476249144783034e-19,2.4038960493361553e-34,5.067340485748584e-19,-7.476249144783034e-19,5.067340485748584e-19,0.003086419776082039,9.0,9.0,5.0,0.07328266650438309,-0.013387205079197884,-0.013387205079197884,-0.021375661715865135,0.0006734006456099451,0.0008888888987712562,0.00148148147854954,0.0006734006456099451,0.00148148147854954,0.0017636683769524097,-0.013387205079197884,0.0066176047548651695,0.0008888888987712562,0.00148148147854954,-0.0005772005533799529,-0.00022222222469281405,-0.000370370369637385,-5.149960319306146e-19,-5.082197683525802e-19,-1.6822554097225685e-18,-0.013387205079197884,0.0008888888987712562,0.0066176047548651695,0.00148148147854954,-8.172529459375311e-19,-0.00022222222469281405,2.5711957760389003e-20,-0.0005772005533799529,-0.000370370369637385,-1.6822554097225685e-18,-0.021375661715865135,0.00148148147854954,0.00148148147854954,0.021269841119647026,-1.3103250210215223e-18,-3.529008079035798e-20,-0.00074074073927477,-1.1384122811097797e-18,-0.00074074073927477,-0.0035273367539048195,0.0006734006456099451,-0.0005772005533799529,-8.172529459375311e-19,-1.3103250210215223e-18,7.215006917249411e-05,6.560132916201661e-20,9.389006600602053e-20,5.752174559367687e-20,5.059937477760176e-20,1.8309181447175828e-19,0.0008888888987712562,-0.00022222222469281405,-0.00022222222469281405,-3.529008079035798e-20,6.560132916201661e-20,5.555555617320351e-05,-1.1918813134533898e-20,1.6940658945086007e-20,2.0328790734103208e-20,2.15086629854685e-34,0.00148148147854954,-0.000370370369637385,2.5711957760389003e-20,-0.00074074073927477,9.389006600602053e-20,-1.1918813134533898e-20,0.0001851851848186925,-3.2176452401518516e-22,1.0342588165571426e-20,1.0876042112485702e-19,0.0006734006456099451,-5.149960319306146e-19,-0.0005772005533799529,-1.1384122811097797e-18,5.752174559367687e-20,1.6940658945086007e-20,-3.2176452401518516e-22,7.215006917249411e-05,1.0164395367051604e-19,1.8309181447175828e-19,0.00148148147854954,-5.082197683525802e-19,-0.000370370369637385,-0.00074074073927477,5.059937477760176e-20,2.0328790734103208e-20,1.0342588165571426e-20,1.0164395367051604e-19,0.0001851851848186925,1.0876042112485702e-19,0.0017636683769524097,-1.6822554097225685e-18,-1.6822554097225685e-18,-0.0035273367539048195,1.8309181447175828e-19,2.15086629854685e-34,1.0876042112485702e-19,1.8309181447175828e-19,1.0876042112485702e-19,0.0008818341884762049,9.0,9.0,6.0,0.06350862979888916,-0.011332371272146702,-0.011332371272146702,-0.015740741044282913,0.0005611672531813383,0.00074074073927477,0.0010582010727375746,0.0005611672531813383,0.0010582010727375746,0.001102292793802917,-0.011332371272146702,0.0055587622337043285,0.00074074073927477,0.0010582010727375746,-0.0004810004902537912,-0.0001851851848186925,-0.00026455026818439364,-4.336808689942018e-19,-2.846030702774449e-19,-9.726936764199873e-19,-0.011332371272146702,0.00074074073927477,0.0055587622337043285,0.0010582010727375746,-6.455972007023511e-19,-0.0001851851848186925,-4.2963822408315345e-20,-0.0004810004902537912,-0.00026455026818439364,-9.726936764199873e-19,-0.015740741044282913,0.0010582010727375746,0.0010582010727375746,0.01235890667885542,-9.042132546631003e-19,-4.288429028488808e-21,-0.0004232804349157959,-7.047314121155779e-19,-0.0004232804349157959,-0.0016534391324967146,0.0005611672531813383,-0.0004810004902537912,-6.455972007023511e-19,-9.042132546631003e-19,6.01250612817239e-05,4.2418907486273235e-20,5.804749642113675e-20,4.6265103464188747e-20,3.688537291867465e-20,1.0489635675324065e-19,0.00074074073927477,-0.0001851851848186925,-0.0001851851848186925,-4.288429028488808e-21,4.2418907486273235e-20,4.6296296204673126e-05,6.080505324268572e-21,1.3552527156068805e-20,-5.082197683525802e-21,1.203475822941036e-34,0.0010582010727375746,-0.00026455026818439364,-4.2963822408315345e-20,-0.0004232804349157959,5.804749642113675e-20,6.080505324268572e-21,0.00010582010872894898,5.190838862708145e-23,6.625074914560813e-21,5.34091360662082e-20,0.0005611672531813383,-4.336808689942018e-19,-0.0004810004902537912,-7.047314121155779e-19,4.6265103464188747e-20,1.3552527156068805e-20,5.190838862708145e-23,6.01250612817239e-05,4.404571325722362e-20,1.0489635675324065e-19,0.0010582010727375746,-2.846030702774449e-19,-0.00026455026818439364,-0.0004232804349157959,3.688537291867465e-20,-5.082197683525802e-21,6.625074914560813e-21,4.404571325722362e-20,0.00010582010872894898,5.34091360662082e-20,0.001102292793802917,-9.726936764199873e-19,-9.726936764199873e-19,-0.0016534391324967146,1.0489635675324065e-19,1.203475822941036e-34,5.34091360662082e-20,1.0489635675324065e-19,5.34091360662082e-20,0.0003306878206785768,9.0,9.0,7.0,0.05605686455965042,-0.0098268399015069,-0.0098268399015069,-0.012081128545105457,0.0004810004902537912,0.0006349206087179482,0.0007936508045531809,0.0004810004902537912,0.0007936508045531809,0.0007348618237301707,-0.0098268399015069,0.00479299807921052,0.0006349206087179482,0.0007936508045531809,-0.0004122861137147993,-0.00015873015217948705,-0.00019841270113829523,6.505213034913027e-19,4.70950318673391e-19,1.0224239816418284e-18,-0.0098268399015069,0.0006349206087179482,0.00479299807921052,0.0007936508045531809,9.245362551329157e-19,-0.00015873015217948705,2.5273426019939454e-20,-0.0004122861137147993,-0.00019841270113829523,1.0224239816418284e-18,-0.012081128545105457,0.0007936508045531809,0.0007936508045531809,0.007848324254155159,1.2120900854504904e-18,1.1050944767807351e-20,-0.00026455026818439364,1.0028870095490916e-18,-0.00026455026818439364,-0.0008818341884762049,0.0004810004902537912,-0.0004122861137147993,9.245362551329157e-19,1.2120900854504904e-18,5.153576421434991e-05,-2.877613040173092e-20,-4.9690981831002215e-20,-8.058186086103604e-20,-5.498205554389473e-20,-1.3223297640045336e-19,0.0006349206087179482,-0.00015873015217948705,-0.00015873015217948705,1.1050944767807351e-20,-2.877613040173092e-20,3.968253804487176e-05,2.7083389842945504e-35,0.0,-2.541098841762901e-21,6.476378090249479e-35,0.0007936508045531809,-0.00019841270113829523,2.5273426019939454e-20,-0.00026455026818439364,-4.9690981831002215e-20,2.7083389842945504e-35,6.613756704609841e-05,7.184621472225821e-35,-8.424475878508863e-21,1.1813282982948031e-20,0.0004810004902537912,6.505213034913027e-19,-0.0004122861137147993,1.0028870095490916e-18,-8.058186086103604e-20,0.0,7.184621472225821e-35,5.153576421434991e-05,-5.421010862427522e-20,-1.3223297640045336e-19,0.0007936508045531809,4.70950318673391e-19,-0.00019841270113829523,-0.00026455026818439364,-5.498205554389473e-20,-2.541098841762901e-21,-8.424475878508863e-21,-5.421010862427522e-20,6.613756704609841e-05,1.1813282982948031e-20,0.0007348618237301707,1.0224239816418284e-18,1.0224239816418284e-18,-0.0008818341884762049,-1.3223297640045336e-19,6.476378090249479e-35,1.1813282982948031e-20,-1.3223297640045336e-19,1.1813282982948031e-20,0.00014697236474603415,9.0,9.0,8.0,0.050181444734334946,-0.008675645105540752,-0.008675645105540752,-0.009567901492118835,0.0004208754107821733,0.0005555555690079927,0.0006172839784994721,0.0004208754107821733,0.0006172839784994721,0.0005144032766111195,-0.008675645105540752,0.004213163163512945,0.0005555555690079927,0.0006172839784994721,-0.0003607503604143858,-0.00013888889225199819,-0.00015432099462486804,4.675621868843738e-19,3.611297104971824e-19,5.759824041329242e-19,-0.008675645105540752,0.0005555555690079927,0.004213163163512945,0.0006172839784994721,9.013082997493907e-19,-0.00013888889225199819,2.371692252312041e-20,-0.0003607503604143858,-0.00015432099462486804,5.89534931288993e-19,-0.009567901492118835,0.0006172839784994721,0.0006172839784994721,0.005305702332407236,9.130542644476437e-19,4.779002707930159e-20,-0.00017636684060562402,7.429930649395245e-19,-0.00017636684060562402,-0.0005144032766111195,0.0004208754107821733,-0.0003607503604143858,9.013082997493907e-19,9.130542644476437e-19,4.5093795051798224e-05,-4.475522419646671e-20,-2.8823215073161086e-20,-7.129199573425759e-20,-4.3313490394052263e-20,-8.919932508503691e-20,0.0005555555690079927,-0.00013888889225199819,-0.00013888889225199819,4.779002707930159e-20,-4.475522419646671e-20,3.4722223062999547e-05,-7.83545623550505e-21,2.541098841762901e-20,-5.823752985776087e-21,1.2046456836963312e-21,0.0006172839784994721,-0.00015432099462486804,2.371692252312041e-20,-0.00017636684060562402,-2.8823215073161086e-20,-7.83545623550505e-21,4.4091710151406005e-05,0.0,2.541098841762901e-21,3.7269449679189215e-20,0.0004208754107821733,4.675621868843738e-19,-0.0003607503604143858,7.429930649395245e-19,-7.129199573425759e-20,2.541098841762901e-20,0.0,4.5093795051798224e-05,-3.218725199566341e-20,-8.724439356719293e-20,0.0006172839784994721,3.611297104971824e-19,-0.00015432099462486804,-0.00017636684060562402,-4.3313490394052263e-20,-5.823752985776087e-21,2.541098841762901e-21,-3.218725199566341e-20,4.4091710151406005e-05,3.049318610115481e-20,0.0005144032766111195,5.759824041329242e-19,5.89534931288993e-19,-0.0005144032766111195,-8.919932508503691e-20,1.2046456836963312e-21,3.7269449679189215e-20,-8.724439356719293e-20,3.049318610115481e-20,7.348618237301707e-05,9.0,9.0,9.0,0.0454271100461483,-0.007766554597765207,-0.007766554597765207,-0.007766554597765207,0.0003741114924196154,0.0004938271595165133,0.0004938271595165133,0.0003741114924196154,0.0004938271595165133,0.0003741114924196154,-0.007766554597765207,0.00375875155441463,0.0004938271595165133,0.0004938271595165133,-0.0003206669935025275,-0.00012345678987912834,-0.00012345678987912834,1.2197274440461925e-19,3.0627073038114762e-19,1.1519648082658485e-19,-0.007766554597765207,0.0004938271595165133,0.00375875155441463,0.0004938271595165133,1.9253033300190046e-19,-0.00012345678987912834,3.1848438816761693e-19,-0.0003206669935025275,-0.00012345678987912834,1.2197274440461925e-19,-0.007766554597765207,0.0004938271595165133,0.0004938271595165133,0.00375875155441463,1.9864398613518867e-19,3.119876857872313e-19,-0.00012345678987912834,2.0828570675268333e-19,-0.00012345678987912834,-0.0003206669935025275,0.0003741114924196154,-0.0003206669935025275,1.9253033300190046e-19,1.9864398613518867e-19,4.0083374187815934e-05,-1.4065878352276055e-20,-1.4671463417957236e-20,-7.371529888691411e-21,-1.3097627902365791e-20,-7.79868143336982e-21,0.0004938271595165133,-0.00012345678987912834,-0.00012345678987912834,3.119876857872313e-19,-1.4065878352276055e-20,3.0864197469782084e-05,-2.009404269237434e-20,6.776263578034403e-21,-2.0835196521221854e-20,-1.4813963049927968e-20,0.0004938271595165133,-0.00012345678987912834,3.1848438816761693e-19,-0.00012345678987912834,-1.4671463417957236e-20,-2.009404269237434e-20,3.0864197469782084e-05,-1.5246593050577406e-20,-2.159934015498466e-20,6.776263578034403e-21,0.0003741114924196154,1.2197274440461925e-19,-0.0003206669935025275,2.0828570675268333e-19,-7.371529888691411e-21,6.776263578034403e-21,-1.5246593050577406e-20,4.0083374187815934e-05,-1.3552527156068805e-20,-8.470329472543003e-21,0.0004938271595165133,3.0627073038114762e-19,-0.00012345678987912834,-0.00012345678987912834,-1.3097627902365791e-20,-2.0835196521221854e-20,-2.159934015498466e-20,-1.3552527156068805e-20,3.0864197469782084e-05,6.776263578034403e-21,0.0003741114924196154,1.1519648082658485e-19,1.2197274440461925e-19,-0.0003206669935025275,-7.79868143336982e-21,-1.4813963049927968e-20,6.776263578034403e-21,-8.470329472543003e-21,6.776263578034403e-21,4.0083374187815934e-05,9.0,9.0,10.0,0.041499439626932144,-0.0070303031243383884,-0.0070303031243383884,-0.0064309765584766865,0.00033670032280497253,0.0004444444493856281,0.0004040404164697975,0.00033670032280497253,0.0004040404164697975,0.00028058362659066916,-0.0070303031243383884,0.0033929774072021246,0.0004444444493856281,0.0004040404164697975,-0.00028860027668997645,-0.00011111111234640703,-0.00010101010411744937,-2.574980159653073e-19,-6.039035625922249e-20,-2.1006417091906648e-19,-0.0070303031243383884,0.0004444444493856281,0.0033929774072021246,0.0004040404164697975,-4.1612633863702485e-19,-0.00011111111234640703,4.404571325722362e-20,-0.00028860027668997645,-0.00010101010411744937,-2.1006417091906648e-19,-0.0064309765584766865,0.0004040404164697975,0.0004040404164697975,0.0027618780732154846,-3.643161394637074e-19,3.48192049954879e-20,-8.978675759863108e-05,-3.0593016461332306e-19,-8.978675759863108e-05,-0.00021043770539108664,0.00033670032280497253,-0.00028860027668997645,-4.1612633863702485e-19,-3.643161394637074e-19,3.607503458624706e-05,3.2334325354810195e-20,2.5355735337649882e-20,2.7954355543727896e-20,1.4082982573262577e-20,2.295920569497623e-20,0.0004444444493856281,-0.00011111111234640703,-0.00011111111234640703,3.48192049954879e-20,3.2334325354810195e-20,2.7777778086601757e-05,-3.461289209510911e-21,8.470329472543003e-21,-5.790629814460237e-21,8.042902672206658e-23,0.0004040404164697975,-0.00010101010411744937,4.404571325722362e-20,-8.978675759863108e-05,2.5355735337649882e-20,-3.461289209510911e-21,2.244668939965777e-05,0.0,-6.776263578034403e-21,5.929230630780102e-21,0.00033670032280497253,-2.574980159653073e-19,-0.00028860027668997645,-3.0593016461332306e-19,2.7954355543727896e-20,8.470329472543003e-21,0.0,3.607503458624706e-05,2.541098841762901e-20,2.244637310223896e-20,0.0004040404164697975,-6.039035625922249e-20,-0.00010101010411744937,-8.978675759863108e-05,1.4082982573262577e-20,-5.790629814460237e-21,-6.776263578034403e-21,2.541098841762901e-20,2.244668939965777e-05,6.776263578034403e-21,0.00028058362659066916,-2.1006417091906648e-19,-2.1006417091906648e-19,-0.00021043770539108664,2.295920569497623e-20,8.042902672206658e-23,5.929230630780102e-21,2.244637310223896e-20,6.776263578034403e-21,2.3381968276225962e-05,9.0,9.0,11.0,0.03819924220442772,-0.006421793717890978,-0.006421793717890978,-0.005413105245679617,0.0003060912131331861,0.0004040404164697975,0.00033670032280497253,0.0003060912131331861,0.00033670032280497253,0.00021583355555776507,-0.006421793717890978,0.0030921772122383118,0.0004040404164697975,0.00033670032280497253,-0.00026236390112899244,-0.00010101010411744937,-8.417508070124313e-05,-2.337810934421869e-19,-9.268702874029018e-20,-1.6601845766184287e-19,-0.006421793717890978,0.0004040404164697975,0.0030921772122383118,0.00033670032280497253,-3.4953036356250444e-19,-0.00010101010411744937,-1.6940658945086007e-20,-0.00026236390112899244,-8.417508070124313e-05,-1.7279472123987727e-19,-0.005413105245679617,0.00033670032280497253,0.00033670032280497253,0.0020898443181067705,-2.848631927306987e-19,-4.071786871769475e-21,-6.73400645609945e-05,-2.4895143078004457e-19,-6.73400645609945e-05,-0.00014388903218787163,0.0003060912131331861,-0.00026236390112899244,-3.4953036356250444e-19,-2.848631927306987e-19,3.2795487641124055e-05,2.2330803692203083e-20,1.6381486466587294e-20,2.5270055905178154e-20,1.166755056112238e-20,1.72783134248953e-20,0.0004040404164697975,-0.00010101010411744937,-0.00010101010411744937,-4.071786871769475e-21,2.2330803692203083e-20,2.5252526029362343e-05,2.3017251721213074e-21,1.0164395367051604e-20,-1.5628626497264379e-21,1.4194263306277338e-22,0.00033670032280497253,-8.417508070124313e-05,-1.6940658945086007e-20,-6.73400645609945e-05,1.6381486466587294e-20,2.3017251721213074e-21,1.6835016140248626e-05,2.117582368135751e-22,1.2705494208814505e-21,5.082197683525802e-21,0.0003060912131331861,-2.337810934421869e-19,-0.00026236390112899244,-2.4895143078004457e-19,2.5270055905178154e-20,1.0164395367051604e-20,2.117582368135751e-22,3.2795487641124055e-05,1.7787691892340307e-20,1.7364175418713157e-20,0.00033670032280497253,-9.268702874029018e-20,-8.417508070124313e-05,-6.73400645609945e-05,1.166755056112238e-20,-1.5628626497264379e-21,1.2705494208814505e-21,1.7787691892340307e-20,1.6835016140248626e-05,5.082197683525802e-21,0.00021583355555776507,-1.6601845766184287e-19,-1.7279472123987727e-19,-0.00014388903218787163,1.72783134248953e-20,1.4194263306277338e-22,5.082197683525802e-21,1.7364175418713157e-20,5.082197683525802e-21,1.4388902854989283e-05,9.0,9.0,12.0,0.035386793315410614,-0.005910385865718126,-0.005910385865718126,-0.004619454499334097,0.00028058362659066916,0.000370370369637385,0.00028490027762018144,0.00028058362659066916,0.00028490027762018144,0.0001695835089776665,-0.005910385865718126,0.002840431174263358,0.000370370369637385,0.00028490027762018144,-0.0002405002451268956,-9.259259240934625e-05,-7.122506940504536e-05,-1.8864005088227528e-19,2.320870275476783e-19,5.014435047745458e-19,-0.005910385865718126,0.000370370369637385,0.002840431174263358,0.00028490027762018144,-1.5627645431977322e-19,-9.259259240934625e-05,6.606856988583543e-20,-0.0002405002451268956,-7.122506940504536e-05,4.946672411965114e-19,-0.004619454499334097,0.00028490027762018144,0.00028490027762018144,0.0016199849778786302,7.650911950038786e-19,5.179808614722239e-19,-5.18000524607487e-05,6.82635866990638e-19,-5.18000524607487e-05,-0.0001017501053865999,0.00028058362659066916,-0.0002405002451268956,-1.5627645431977322e-19,7.650911950038786e-19,3.006253064086195e-05,2.0253119863925945e-20,-3.0472626139288895e-20,2.358000636028441e-20,-2.0613833618897287e-20,-4.635978656375766e-20,0.000370370369637385,-9.259259240934625e-05,-9.259259240934625e-05,5.179808614722239e-19,2.0253119863925945e-20,2.3148148102336563e-05,-1.6562768267707118e-20,2.3415473238733123e-34,-1.6562768267707118e-20,-3.2534008693385056e-20,0.00028490027762018144,-7.122506940504536e-05,6.606856988583543e-20,-5.18000524607487e-05,-3.0472626139288895e-20,-1.6562768267707118e-20,1.2950013115187176e-05,-2.7083389842945504e-35,0.0,8.470329472543003e-22,0.00028058362659066916,-1.8864005088227528e-19,-0.0002405002451268956,6.82635866990638e-19,2.358000636028441e-20,2.3415473238733123e-34,-2.7083389842945504e-35,3.006253064086195e-05,-3.0472626139288895e-20,-4.635978656375766e-20,0.00028490027762018144,2.320870275476783e-19,-7.122506940504536e-05,-5.18000524607487e-05,-2.0613833618897287e-20,-1.6562768267707118e-20,0.0,-3.0472626139288895e-20,1.2950013115187176e-05,8.470329472543003e-22,0.0001695835089776665,5.014435047745458e-19,4.946672411965114e-19,-0.0001017501053865999,-4.635978656375766e-20,-3.2534008693385056e-20,8.470329472543003e-22,-4.635978656375766e-20,8.470329472543003e-22,9.250009497918654e-06,9.0,9.0,13.0,0.03296111151576042,-0.00547452550381422,-0.00547452550381422,-0.003988604061305523,0.0002590002550277859,0.0003418803389649838,0.00024420025874860585,0.0002590002550277859,0.00024420025874860585,0.0001356668071821332,-0.00547452550381422,0.002626632573083043,0.0003418803389649838,0.00024420025874860585,-0.0002220002206740901,-8.547008474124596e-05,-6.105006468715146e-05,-1.1497654125652524e-19,-5.082197683525802e-20,-8.809142651444724e-20,-0.00547452550381422,0.0003418803389649838,0.002626632573083043,0.00024420025874860585,-2.3470727723430486e-19,-8.547008474124596e-05,1.6940658945086007e-20,-0.0002220002206740901,-6.105006468715146e-05,-8.300922883092143e-20,-0.003988604061305523,0.00024420025874860585,0.00024420025874860585,0.0012814346700906754,-1.8532716667960627e-19,3.2534008693385056e-20,-4.0700040699448436e-05,-1.515255941703632e-19,-4.0700040699448436e-05,-7.400007598334923e-05,0.0002590002550277859,-0.0002220002206740901,-2.3470727723430486e-19,-1.8532716667960627e-19,2.775002758426126e-05,2.468910773549527e-21,5.872340153240774e-21,2.176616083566901e-20,8.450391511723634e-21,1.0669686399047864e-20,0.0003418803389649838,-8.547008474124596e-05,-8.547008474124596e-05,3.2534008693385056e-20,2.468910773549527e-21,2.136752118531149e-05,-4.066751086673132e-21,-1.4788184741619577e-20,-4.066751086673132e-21,-4.513898307157584e-36,0.00024420025874860585,-6.105006468715146e-05,1.6940658945086007e-20,-4.0700040699448436e-05,5.872340153240774e-21,-4.066751086673132e-21,1.0175010174862109e-05,7.52316384526264e-36,-2.117582368135751e-22,0.0,0.0002590002550277859,-1.1497654125652524e-19,-0.0002220002206740901,-1.515255941703632e-19,2.176616083566901e-20,-1.4788184741619577e-20,7.52316384526264e-36,2.775002758426126e-05,5.872340153240774e-21,1.0669686399047864e-20,0.00024420025874860585,-5.082197683525802e-20,-6.105006468715146e-05,-4.0700040699448436e-05,8.450391511723634e-21,-4.066751086673132e-21,-2.117582368135751e-22,5.872340153240774e-21,1.0175010174862109e-05,-4.235164736271502e-22,0.0001356668071821332,-8.809142651444724e-20,-8.300922883092143e-20,-7.400007598334923e-05,1.0669686399047864e-20,-4.513898307157584e-36,0.0,1.0669686399047864e-20,-4.235164736271502e-22,6.166672847029986e-06,9.0,9.0,14.0,0.03084736317396164,-0.005098605062812567,-0.005098605062812567,-0.0034788360353559256,0.0002405002451268956,0.0003174603043589741,0.00021164021745789796,0.0002405002451268956,0.00021164021745789796,0.00011022927355952561,-0.005098605062812567,0.002442795317620039,0.0003174603043589741,0.00021164021745789796,-0.00020614305685739964,-7.936507608974352e-05,-5.291005436447449e-05,3.2338295175515596e-19,1.1604351377383915e-19,1.3552527156068805e-19,-0.005098605062812567,0.0003174603043589741,0.002442795317620039,0.00021164021745789796,4.781100838629203e-19,-7.936507608974352e-05,0.0,-0.00020614305685739964,-5.291005436447449e-05,1.3721933745519665e-19,-0.0034788360353559256,0.00021164021745789796,0.00021164021745789796,0.0010312373051419854,3.3056895407973967e-19,-1.9088933119062265e-34,-3.256003401475027e-05,2.7197957034684973e-19,-3.256003401475027e-05,-5.5114636779762805e-05,0.0002405002451268956,-0.00020614305685739964,4.781100838629203e-19,3.3056895407973967e-19,2.5767882107174955e-05,-1.487984346207384e-20,-1.2209101830751726e-20,-4.0422868969394495e-20,-1.4647345933222487e-20,-1.716485881841769e-20,0.0003174603043589741,-7.936507608974352e-05,-7.936507608974352e-05,-1.9088933119062265e-34,-1.487984346207384e-20,1.984126902243588e-05,7.05023112906377e-36,2.334246660216085e-35,8.458211343198895e-36,9.911966529915082e-36,0.00021164021745789796,-5.291005436447449e-05,0.0,-3.256003401475027e-05,-1.2209101830751726e-20,7.05023112906377e-36,8.140008503687568e-06,1.9560225997682864e-35,2.117582368135751e-22,0.0,0.0002405002451268956,3.2338295175515596e-19,-0.00020614305685739964,2.7197957034684973e-19,-4.0422868969394495e-20,2.334246660216085e-35,1.9560225997682864e-35,2.5767882107174955e-05,-1.2209101830751726e-20,-1.716485881841769e-20,0.00021164021745789796,1.1604351377383915e-19,-5.291005436447449e-05,-3.256003401475027e-05,-1.4647345933222487e-20,8.458211343198895e-36,2.117582368135751e-22,-1.2209101830751726e-20,8.140008503687568e-06,2.117582368135751e-22,0.00011022927355952561,1.3552527156068805e-19,1.3721933745519665e-19,-5.5114636779762805e-05,-1.716485881841769e-20,9.911966529915082e-36,0.0,-1.716485881841769e-20,2.117582368135751e-22,4.2395877244416624e-06,9.0,9.0,15.0,0.02898888662457466,-0.004771043546497822,-0.004771043546497822,-0.0030610021203756332,0.0002244668867206201,0.0002962962898891419,0.0001851851848186925,0.0002244668867206201,0.0001851851848186925,9.077705180970952e-05,-0.004771043546497822,0.002283028792589903,0.0002962962898891419,0.0001851851848186925,-0.00019240019901189953,-7.407407247228548e-05,-4.6296296204673126e-05,-1.5091204587569906e-19,-5.082197683525802e-20,-5.421010862427522e-20,-0.004771043546497822,0.0002962962898891419,0.002283028792589903,0.0001851851848186925,-2.476175244941204e-19,-7.407407247228548e-05,-8.470329472543003e-22,-0.00019240019901189953,-4.6296296204673126e-05,-5.759824041329242e-20,-0.0030610021203756332,0.0001851851848186925,0.0001851851848186925,0.000842291337903589,-1.6077175443399558e-19,-8.66495169913569e-35,-2.6455027182237245e-05,-1.3513890066644336e-19,-2.6455027182237245e-05,-4.189709943602793e-05,0.0002244668867206201,-0.00019240019901189953,-2.476175244941204e-19,-1.6077175443399558e-19,2.405002487648744e-05,1.2961996939094804e-20,9.25856878061425e-21,1.8864005734462382e-20,6.408213845784838e-21,7.007473483940045e-21,0.0002962962898891419,-7.407407247228548e-05,-7.407407247228548e-05,-8.66495169913569e-35,1.2961996939094804e-20,1.851851811807137e-05,4.989996836847057e-36,1.0166941327814421e-35,3.453769787256925e-36,3.776746617666815e-36,0.0001851851848186925,-4.6296296204673126e-05,-8.470329472543003e-22,-2.6455027182237245e-05,9.25856878061425e-21,4.989996836847057e-36,6.613756795559311e-06,6.770847460736376e-36,0.0,-2.117582368135751e-22,0.0002244668867206201,-1.5091204587569906e-19,-0.00019240019901189953,-1.3513890066644336e-19,1.8864005734462382e-20,1.0166941327814421e-35,6.770847460736376e-36,2.405002487648744e-05,9.25856878061425e-21,7.007473483940045e-21,0.0001851851848186925,-5.082197683525802e-20,-4.6296296204673126e-05,-2.6455027182237245e-05,6.408213845784838e-21,3.453769787256925e-36,0.0,9.25856878061425e-21,6.613756795559311e-06,0.0,9.077705180970952e-05,-5.421010862427522e-20,-5.759824041329242e-20,-4.189709943602793e-05,7.007473483940045e-21,3.776746617666815e-36,-2.117582368135751e-22,7.007473483940045e-21,0.0,2.992650024680188e-06,9.0,9.0,16.0,0.027341993525624275,-0.0044830660335719585,-0.0044830660335719585,-0.0027142339386045933,0.00021043770539108664,0.00027777778450399637,0.0001633986976230517,0.00021043770539108664,0.0001633986976230517,7.564754196209833e-05,-0.0044830660335719585,0.002142892451956868,0.00027777778450399637,0.0001633986976230517,-0.0001803751802071929,-6.944444612599909e-05,-4.0849674405762926e-05,-2.303929616531697e-19,-2.0328790734103208e-20,-1.3129010682441655e-20,-0.0044830660335719585,0.00027777778450399637,0.002142892451956868,0.0001633986976230517,-1.0587911840678754e-19,-6.944444612599909e-05,-7.623296525288703e-21,-0.0001803751802071929,-4.0849674405762926e-05,-6.1409888675936775e-21,-0.0027142339386045933,0.0001633986976230517,0.0001633986976230517,0.000696908391546458,-4.0657581468206416e-20,-6.776263578034403e-21,-2.1786492652609013e-05,-7.792703114739563e-20,-2.1786492652609013e-05,-3.242037564632483e-05,0.00021043770539108664,-0.0001803751802071929,-1.0587911840678754e-19,-4.0657581468206416e-20,2.2546897525899112e-05,-8.59260316528775e-22,8.117126582157128e-21,1.1601358340659665e-20,2.458119459288691e-21,6.88214269644119e-22,0.00027777778450399637,-6.944444612599909e-05,-6.944444612599909e-05,-6.776263578034403e-21,-8.59260316528775e-22,1.7361111531499773e-05,-2.117582368135751e-22,2.244637310223896e-20,-8.470329472543003e-22,3.853883395882454e-22,0.0001633986976230517,-4.0849674405762926e-05,-7.623296525288703e-21,-2.1786492652609013e-05,8.117126582157128e-21,-2.117582368135751e-22,5.446623163152253e-06,2.117582368135751e-21,-8.470329472543003e-22,3.3693152981042435e-22,0.00021043770539108664,-2.303929616531697e-19,-0.0001803751802071929,-7.792703114739563e-20,1.1601358340659665e-20,2.244637310223896e-20,2.117582368135751e-21,2.2546897525899112e-05,1.1434944787933055e-20,1.0335652046108841e-21,0.0001633986976230517,-2.0328790734103208e-20,-4.0849674405762926e-05,-2.1786492652609013e-05,2.458119459288691e-21,-8.470329472543003e-22,-8.470329472543003e-22,1.1434944787933055e-20,5.446623163152253e-06,-1.1193337972975638e-22,7.564754196209833e-05,-1.3129010682441655e-20,-6.1409888675936775e-21,-3.242037564632483e-05,6.88214269644119e-22,3.853883395882454e-22,3.3693152981042435e-22,1.0335652046108841e-21,-1.1193337972975638e-22,2.1613584522128804e-06,9.0,10.0,3.0,0.09740740805864334,-0.019090909510850906,-0.017474748194217682,-0.04363636299967766,0.001010101055726409,0.001212121220305562,0.0033333334140479565,0.0008417508215643466,0.0030303029343485832,0.0055555556900799274,-0.019090909510850906,0.009678931906819344,0.001212121220305562,0.0033333334140479565,-0.0008658008882775903,-0.0003030303050763905,-0.0008333333535119891,-6.663027722054722e-19,-1.0309486982396468e-18,-8.546344889294789e-18,-0.017474748194217682,0.001212121220305562,0.007881593890488148,0.0030303029343485832,-9.769376299502671e-19,-0.000269360258243978,2.418084935461019e-19,-0.0006313131307251751,-0.0006734006456099451,-8.212753647177119e-33,-0.04363636299967766,0.0033333334140479565,0.0030303029343485832,0.09919191896915436,-2.9997880690115716e-18,1.345061979707198e-19,-0.0033333334140479565,-1.1129926783815527e-20,-0.0030303029343485832,-0.03333333507180214,0.001010101055726409,-0.0008658008882775903,-9.769376299502671e-19,-2.9997880690115716e-18,0.00010822511103469878,5.967897447007835e-20,1.509291840240154e-19,6.956885573368745e-20,1.0524604089484891e-19,9.612320550572994e-19,0.001212121220305562,-0.0003030303050763905,-0.000269360258243978,1.345061979707198e-19,5.967897447007835e-20,6.73400645609945e-05,-7.233689286897399e-20,2.248965791273021e-20,3.440919483030009e-20,4.83340823279314e-34,0.0033333334140479565,-0.0008333333535119891,2.418084935461019e-19,-0.0033333334140479565,1.509291840240154e-19,-7.233689286897399e-20,0.0008333333535119891,1.405271818338015e-21,3.3892329732076626e-20,8.564883454388174e-19,0.0008417508215643466,-6.663027722054722e-19,-0.0006313131307251751,-1.1129926783815527e-20,6.956885573368745e-20,2.248965791273021e-20,1.405271818338015e-21,7.014590664766729e-05,1.224186613977546e-21,5.934969039900994e-34,0.0030303029343485832,-1.0309486982396468e-18,-0.0006734006456099451,-0.0030303029343485832,1.0524604089484891e-19,3.440919483030009e-20,3.3892329732076626e-20,1.224186613977546e-21,0.0006734006456099451,9.528097111929711e-34,0.0055555556900799274,-8.546344889294789e-18,-8.212753647177119e-33,-0.03333333507180214,9.612320550572994e-19,4.83340823279314e-34,8.564883454388174e-19,5.934969039900994e-34,9.528097111929711e-34,0.01666666753590107,9.0,10.0,4.0,0.07932323217391968,-0.014818182215094566,-0.01356060616672039,-0.027848483994603157,0.0007575757335871458,0.0009090909152291715,0.0020000000949949026,0.0006313131307251751,0.001818181830458343,0.0027777778450399637,-0.014818182215094566,0.007384199183434248,0.0009090909152291715,0.0020000000949949026,-0.0006493506371043622,-0.00022727272880729288,-0.0005000000237487257,-4.832997633272897e-19,-4.836236045371042e-19,-3.0511748034100502e-18,-0.01356060616672039,0.0009090909152291715,0.006012205500155687,0.001818181830458343,-7.785554723283456e-19,-0.00020202020823489875,-1.2250480248424984e-20,-0.0004734848625957966,-0.0004040404164697975,-3.223153714734879e-33,-0.027848483994603157,0.0020000000949949026,0.001818181830458343,0.03801010176539421,-1.684639447645523e-18,-2.038724009166803e-19,-0.0013333333190530539,6.316748591889857e-20,-0.001212121220305562,-0.008333333767950535,0.0007575757335871458,-0.0006493506371043622,-7.785554723283456e-19,-1.684639447645523e-18,8.116882963804528e-05,5.615912709320915e-20,1.0004324932530083e-19,5.168421245744225e-20,6.11495141910901e-20,3.364312089302971e-19,0.0009090909152291715,-0.00022727272880729288,-0.00020202020823489875,-2.038724009166803e-19,5.615912709320915e-20,5.0505052058724687e-05,2.719673241963748e-20,1.676457287218878e-20,2.1130105796642615e-20,2.5253519368362046e-34,0.0020000000949949026,-0.0005000000237487257,-1.2250480248424984e-20,-0.0013333333190530539,1.0004324932530083e-19,2.719673241963748e-20,0.00033333332976326346,3.076254102903362e-22,-6.634922322038672e-20,2.3981674602865077e-19,0.0006313131307251751,-4.832997633272897e-19,-0.0004734848625957966,6.316748591889857e-20,5.168421245744225e-20,1.676457287218878e-20,3.076254102903362e-22,5.260942634777166e-05,-1.4310664036867798e-20,2.1287171839947253e-34,0.001818181830458343,-4.836236045371042e-19,-0.0004040404164697975,-0.001212121220305562,6.11495141910901e-20,2.1130105796642615e-20,-6.634922322038672e-20,-1.4310664036867798e-20,0.000269360258243978,1.9914603106144725e-34,0.0027777778450399637,-3.0511748034100502e-18,-3.223153714734879e-33,-0.008333333767950535,3.364312089302971e-19,2.5253519368362046e-34,2.3981674602865077e-19,2.1287171839947253e-34,1.9914603106144725e-34,0.0027777778450399637,9.0,10.0,5.0,0.06701298803091049,-0.012121211737394333,-0.011090909130871296,-0.01935930736362934,0.000606060610152781,0.0007272727089002728,0.0013333333190530539,0.0005050505278632045,0.001212121220305562,0.0015873016091063619,-0.012121211737394333,0.005974025931209326,0.0007272727089002728,0.0013333333190530539,-0.0005194804980419576,-0.0001818181772250682,-0.00033333332976326346,-3.9302328752599536e-19,-2.371692252312041e-19,-1.514029827391281e-18,-0.011090909130871296,0.0007272727089002728,0.004863636568188667,0.001212121220305562,-5.993128782136175e-19,-0.0001616161607671529,8.601959111159479e-20,-0.0003787878667935729,-0.000269360258243978,-1.447488131568218e-33,-0.01935930736362934,0.0013333333190530539,0.001212121220305562,0.019203463569283485,-1.1748896019548728e-18,4.6292387499705925e-20,-0.0006666666595265269,1.3552527156068805e-20,-0.000606060610152781,-0.0031746032182127237,0.000606060610152781,-0.0005194804980419576,-5.993128782136175e-19,-1.1748896019548728e-18,6.49350622552447e-05,4.000780847882614e-20,8.129711359695298e-20,3.977556782832907e-20,4.234901395568677e-20,1.6478263690199157e-19,0.0007272727089002728,-0.0001818181772250682,-0.0001616161607671529,4.6292387499705925e-20,4.000780847882614e-20,4.0404040191788226e-05,-4.164530862880932e-21,1.3552527156068805e-20,-8.470329472543003e-21,8.962688691370258e-35,0.0013333333190530539,-0.00033333332976326346,8.601959111159479e-20,-0.0006666666595265269,8.129711359695298e-20,-4.164530862880932e-21,0.00016666666488163173,-5.491358958648945e-22,-3.2621415188502916e-20,9.788438547471985e-20,0.0005050505278632045,-3.9302328752599536e-19,-0.0003787878667935729,1.3552527156068805e-20,3.977556782832907e-20,1.3552527156068805e-20,-5.491358958648945e-22,4.2087540350621566e-05,0.0,1.0265697776551618e-34,0.001212121220305562,-2.371692252312041e-19,-0.000269360258243978,-0.000606060610152781,4.234901395568677e-20,-8.470329472543003e-21,-3.2621415188502916e-20,0.0,0.000134680129121989,8.348511834136696e-35,0.0015873016091063619,-1.514029827391281e-18,-1.447488131568218e-33,-0.0031746032182127237,1.6478263690199157e-19,8.962688691370258e-35,9.788438547471985e-20,1.0265697776551618e-34,8.348511834136696e-35,0.0007936508045531809,9.0,10.0,6.0,0.058054354041814804,-0.010259740054607391,-0.009386724792420864,-0.01425324659794569,0.0005050505278632045,0.000606060610152781,0.0009523809421807528,0.0004208754107821733,0.0008658008882775903,0.0009920635493472219,-0.010259740054607391,0.005018037743866444,0.000606060610152781,0.0009523809421807528,-0.00043290044413879514,-0.00015151515253819525,-0.0002380952355451882,-3.3203691532368573e-19,-1.5246593050577406e-19,-8.75424267418958e-19,-0.009386724792420864,0.000606060610152781,0.004085096996277571,0.0008658008882775903,-4.910807928556346e-19,-0.000134680129121989,1.1873761517953022e-19,-0.00031565656536258757,-0.00019240019901189953,-8.085124531707581e-34,-0.01425324659794569,0.0009523809421807528,0.0008658008882775903,0.011157647706568241,-6.481340602434746e-19,1.024505387782862e-19,-0.0003809523768723011,0.0,-0.00034632033202797174,-0.0014880952658131719,0.0005050505278632045,-0.00043290044413879514,-4.910807928556346e-19,-6.481340602434746e-19,5.411255551734939e-05,3.1430934265977184e-20,1.058928589753613e-20,3.211136463681021e-20,2.972073511834953e-20,9.440671784674232e-20,0.000606060610152781,-0.00015151515253819525,-0.000134680129121989,1.024505387782862e-19,3.1430934265977184e-20,3.367003228049725e-05,-1.7734469605388482e-20,1.3552527156068805e-20,-7.623296525288703e-21,4.170863169457161e-35,0.0009523809421807528,-0.0002380952355451882,1.1873761517953022e-19,-0.0003809523768723011,1.058928589753613e-20,-1.7734469605388482e-20,9.523809421807528e-05,-3.2524545795645064e-22,-2.0864406336602632e-20,4.806822472140937e-20,0.0004208754107821733,-3.3203691532368573e-19,-0.00031565656536258757,0.0,3.211136463681021e-20,1.3552527156068805e-20,-3.2524545795645064e-22,3.5072953323833644e-05,1.6940658945086007e-21,5.986108554291533e-35,0.0008658008882775903,-1.5246593050577406e-19,-0.00019240019901189953,-0.00034632033202797174,2.972073511834953e-20,-7.623296525288703e-21,-2.0864406336602632e-20,1.6940658945086007e-21,7.696007378399372e-05,4.130936826544698e-35,0.0009920635493472219,-8.75424267418958e-19,-8.085124531707581e-34,-0.0014880952658131719,9.440671784674232e-20,4.170863169457161e-35,4.806822472140937e-20,5.986108554291533e-35,4.130936826544698e-35,0.00029761905898340046,9.0,10.0,7.0,0.05122895538806915,-0.00889610406011343,-0.00813852809369564,-0.010937950573861599,0.00043290044413879514,0.0005194804980419576,0.0007142857066355646,0.0003607503604143858,0.0006493506371043622,0.0006613756413571537,-0.00889610406011343,0.004326685331761837,0.0005194804980419576,0.0007142857066355646,-0.0003710575110744685,-0.0001298701245104894,-0.00017857142665889114,-2.778268066994105e-19,-1.7618285302889447e-19,-5.555698096630117e-19,-0.00813852809369564,0.0005194804980419576,0.003522126004099846,0.0006493506371043622,-3.498023250382754e-19,-0.0001154401179519482,4.7306281517322925e-21,-0.00027056277031078935,-0.00014430013834498823,-4.42053834176337e-34,-0.010937950573861599,0.0007142857066355646,0.0006493506371043622,0.007085137069225311,-6.21151997348666e-19,2.398179157137357e-20,-0.0002380952355451882,0.0,-0.00021645022206939757,-0.0007936508045531809,0.00043290044413879514,-0.0003710575110744685,-3.498023250382754e-19,-6.21151997348666e-19,4.638218888430856e-05,1.5872941642103375e-21,4.0256227618882005e-20,3.0460412300556666e-20,2.291067184188696e-20,5.950484002643887e-20,0.0005194804980419576,-0.0001298701245104894,-0.0001154401179519482,2.398179157137357e-20,1.5872941642103375e-21,2.886002948798705e-05,-3.794197094320827e-21,6.776263578034403e-21,-3.3881317890172014e-21,2.7054656453352666e-36,0.0007142857066355646,-0.00017857142665889114,4.7306281517322925e-21,-0.0002380952355451882,4.0256227618882005e-20,-3.794197094320827e-21,5.952380888629705e-05,2.5578757073892976e-35,3.4820531392524826e-21,2.6510353456977465e-20,0.0003607503604143858,-2.778268066994105e-19,-0.00027056277031078935,0.0,3.0460412300556666e-20,6.776263578034403e-21,2.5578757073892976e-35,3.006253064086195e-05,-1.6940658945086007e-21,3.8036643908020175e-35,0.0006493506371043622,-1.7618285302889447e-19,-0.00014430013834498823,-0.00021645022206939757,2.291067184188696e-20,-3.3881317890172014e-21,3.4820531392524826e-21,-1.6940658945086007e-21,4.810004975297488e-05,2.963405187211159e-35,0.0006613756413571537,-5.555698096630117e-19,-4.42053834176337e-34,-0.0007936508045531809,5.950484002643887e-20,2.7054656453352666e-36,2.6510353456977465e-20,3.8036643908020175e-35,2.963405187211159e-35,0.00013227513409219682,9.0,10.0,8.0,0.04585016891360283,-0.007853535003960133,-0.007184343412518501,-0.00866161659359932,0.0003787878667935729,0.00045454545761458576,0.0005555555690079927,0.00031565656536258757,0.0005050505278632045,0.00046296295477077365,-0.007853535003960133,0.0038032105658203363,0.00045454545761458576,0.0005555555690079927,-0.0003246753185521811,-0.00011363636440364644,-0.00013888889225199819,-2.371692252312041e-19,-1.7618285302889447e-19,-3.7592380990329917e-19,-0.007184343412518501,0.00045454545761458576,0.003095889464020729,0.0005050505278632045,-4.0417226046653234e-19,-0.00010101010411744937,-3.9057368261479906e-20,-0.0002367424312978983,-0.00011223344336031005,-4.143448609335633e-34,-0.00866161659359932,0.0005555555690079927,0.0005050505278632045,0.004789562430232763,-3.607272612797812e-19,-6.017555425624866e-20,-0.00015873015217948705,0.0,-0.00014430013834498823,-0.00046296295477077365,0.0003787878667935729,-0.0003246753185521811,-4.0417226046653234e-19,-3.607272612797812e-19,4.058441481902264e-05,2.8882361718132896e-20,6.107152616506605e-22,2.5381476487454193e-20,1.7316678772563847e-20,4.0051335627387474e-20,0.00045454545761458576,-0.00011363636440364644,-0.00010101010411744937,-6.017555425624866e-20,2.8882361718132896e-20,2.5252526029362343e-05,7.657915326393754e-21,8.470329472543003e-21,5.929230630780102e-21,3.0439024434247444e-35,0.0005555555690079927,-0.00013888889225199819,-3.9057368261479906e-20,-0.00015873015217948705,6.107152616506605e-22,7.657915326393754e-21,3.968253804487176e-05,4.137740114894452e-36,2.4073453926898887e-21,1.586089582443307e-20,0.00031565656536258757,-2.371692252312041e-19,-0.0002367424312978983,0.0,2.5381476487454193e-20,8.470329472543003e-21,4.137740114894452e-36,2.630471317388583e-05,0.0,2.5601586804266e-35,0.0005050505278632045,-1.7618285302889447e-19,-0.00011223344336031005,-0.00014430013834498823,1.7316678772563847e-20,5.929230630780102e-21,2.4073453926898887e-21,0.0,3.2066698622656986e-05,1.7764140367206304e-35,0.00046296295477077365,-3.7592380990329917e-19,-4.143448609335633e-34,-0.00046296295477077365,4.0051335627387474e-20,3.0439024434247444e-35,1.586089582443307e-20,2.5601586804266e-35,1.7764140367206304e-35,6.613756704609841e-05,9.0,10.0,9.0,0.041499439626932144,-0.0070303031243383884,-0.0064309765584766865,-0.0070303031243383884,0.00033670032280497253,0.0004040404164697975,0.0004444444493856281,0.00028058362659066916,0.0004040404164697975,0.00033670032280497253,-0.0070303031243383884,0.0033929774072021246,0.0004040404164697975,0.0004444444493856281,-0.00028860027668997645,-0.00010101010411744937,-0.00011111111234640703,-2.236166980751353e-19,-7.079250142889773e-20,-2.507217523872729e-19,-0.0064309765584766865,0.0004040404164697975,0.0027618780732154846,0.0004040404164697975,-3.647968089477831e-19,-8.978675759863108e-05,4.743384504624082e-20,-0.00021043770539108664,-8.978675759863108e-05,-2.710505431213761e-20,-0.0070303031243383884,0.0004444444493856281,0.0004040404164697975,0.0033929774072021246,-4.1667930887651655e-19,4.105566213799756e-20,-0.00011111111234640703,3.12157132200905e-22,-0.00010101010411744937,-0.00028860027668997645,0.00033670032280497253,-0.00028860027668997645,-3.647968089477831e-19,-4.1667930887651655e-19,3.607503458624706e-05,2.5810380944172876e-20,3.252320364663358e-20,2.288280942617585e-20,1.3933972125142258e-20,2.8008513255630245e-20,0.0004040404164697975,-0.00010101010411744937,-8.978675759863108e-05,4.105566213799756e-20,2.5810380944172876e-20,2.244668939965777e-05,-6.0560861286365684e-21,7.623296525288703e-21,-3.7633401878570445e-21,1.341695574232983e-23,0.0004444444493856281,-0.00011111111234640703,4.743384504624082e-20,-0.00011111111234640703,3.252320364663358e-20,-6.0560861286365684e-21,2.7777778086601757e-05,-2.117582368135751e-22,-5.929230630780102e-21,6.776263578034403e-21,0.00028058362659066916,-2.236166980751353e-19,-0.00021043770539108664,3.12157132200905e-22,2.288280942617585e-20,7.623296525288703e-21,-2.117582368135751e-22,2.3381968276225962e-05,0.0,0.0,0.0004040404164697975,-7.079250142889773e-20,-8.978675759863108e-05,-0.00010101010411744937,1.3933972125142258e-20,-3.7633401878570445e-21,-5.929230630780102e-21,0.0,2.244668939965777e-05,5.082197683525802e-21,0.00033670032280497253,-2.507217523872729e-19,-2.710505431213761e-20,-0.00028860027668997645,2.8008513255630245e-20,1.341695574232983e-23,6.776263578034403e-21,0.0,5.082197683525802e-21,3.607503458624706e-05,9.0,10.0,10.0,0.03790633752942085,-0.00636363634839654,-0.005820936523377895,-0.005820936523377895,0.0003030303050763905,0.0003636363544501364,0.0003636363544501364,0.00025252526393160224,0.00033057850669138134,0.00025252526393160224,-0.00636363634839654,0.0030627704691141844,0.0003636363544501364,0.0003636363544501364,-0.0002597402490209788,-9.09090886125341e-05,-9.09090886125341e-05,-2.1345230270808369e-19,-1.194897550008882e-19,-2.0328790734103208e-19,-0.005820936523377895,0.0003636363544501364,0.0024930364452302456,0.00033057850669138134,-3.1499260030808917e-19,-8.080808038357645e-05,-6.776263578034403e-21,-0.00018939393339678645,-7.346189522650093e-05,0.0,-0.005820936523377895,0.0003636363544501364,0.00033057850669138134,0.0024930364452302456,-3.2240532766869485e-19,-2.325161565710086e-20,-8.080808038357645e-05,-5.832182311647172e-21,-7.346189522650093e-05,-0.00018939393339678645,0.0003030303050763905,-0.0002597402490209788,-3.1499260030808917e-19,-3.2240532766869485e-19,3.246753112762235e-05,1.88890941870646e-20,1.9769359761663073e-20,2.093554710045646e-20,1.1308243174751092e-20,2.1336293489018528e-20,0.0003636363544501364,-9.09090886125341e-05,-8.080808038357645e-05,-2.325161565710086e-20,1.88890941870646e-20,2.0202020095894113e-05,4.360292969533445e-22,9.317362419797304e-21,4.920316256606544e-21,6.72923721920235e-23,0.0003636363544501364,-9.09090886125341e-05,-6.776263578034403e-21,-8.080808038357645e-05,1.9769359761663073e-20,4.360292969533445e-22,2.0202020095894113e-05,-1.0587911840678754e-22,1.2705494208814505e-21,6.776263578034403e-21,0.00025252526393160224,-2.1345230270808369e-19,-0.00018939393339678645,-5.832182311647172e-21,2.093554710045646e-20,9.317362419797304e-21,-1.0587911840678754e-22,2.1043770175310783e-05,1.6940658945086007e-21,0.0,0.00033057850669138134,-1.194897550008882e-19,-7.346189522650093e-05,-7.346189522650093e-05,1.1308243174751092e-20,4.920316256606544e-21,1.2705494208814505e-21,1.6940658945086007e-21,1.632486419111956e-05,-8.470329472543003e-22,0.00025252526393160224,-2.0328790734103208e-19,0.0,-0.00018939393339678645,2.1336293489018528e-20,6.72923721920235e-23,6.776263578034403e-21,0.0,-8.470329472543003e-22,2.1043770175310783e-05,9.0,10.0,11.0,0.03488804027438164,-0.005812671966850758,-0.005316804628819227,-0.0048993430100381374,0.0002754821034613997,0.00033057850669138134,0.0003030303050763905,0.00022956840984988958,0.0002754821034613997,0.00019425019854679704,-0.005812671966850758,0.0027912238147109747,0.00033057850669138134,0.0003030303050763905,-0.0002361275110160932,-8.264462667284533e-05,-7.575757626909763e-05,-1.6940658945086007e-19,-7.041590806798736e-20,-1.4230153513872246e-19,-0.005316804628819227,0.00033057850669138134,0.002271962119266391,0.0002754821034613997,-2.697738415446888e-19,-7.346189522650093e-05,6.776263578034403e-21,-0.000172176311025396,-6.12182411714457e-05,-2.0328790734103208e-20,-0.0048993430100381374,0.0003030303050763905,0.0002754821034613997,0.00188636954408139,-1.9117914639599216e-19,-1.9054982673972696e-20,-6.060606028768234e-05,2.8921564343833584e-21,-5.509641778189689e-05,-0.00012950012751389295,0.0002754821034613997,-0.0002361275110160932,-2.697738415446888e-19,-1.9117914639599216e-19,2.951593887701165e-05,1.308918969076547e-20,-9.183209314857045e-22,1.9021157126150386e-20,9.223432183832786e-21,1.53600040362024e-20,0.00033057850669138134,-8.264462667284533e-05,-7.346189522650093e-05,-1.9054982673972696e-20,1.308918969076547e-20,1.8365473806625232e-05,1.7239370908723168e-21,5.082197683525802e-21,2.674133556509723e-21,4.551661947670105e-24,0.0003030303050763905,-7.575757626909763e-05,6.776263578034403e-21,-6.060606028768234e-05,-9.183209314857045e-22,1.7239370908723168e-21,1.5151515071920585e-05,0.0,-2.964615315390051e-21,2.541098841762901e-21,0.00022956840984988958,-1.6940658945086007e-19,-0.000172176311025396,2.8921564343833584e-21,1.9021157126150386e-20,5.082197683525802e-21,0.0,1.913070082082413e-05,0.0,-2.117582368135751e-22,0.0002754821034613997,-7.041590806798736e-20,-6.12182411714457e-05,-5.509641778189689e-05,9.223432183832786e-21,2.674133556509723e-21,-2.964615315390051e-21,0.0,1.224364859808702e-05,4.235164736271502e-21,0.00019425019854679704,-1.4230153513872246e-19,-2.0328790734103208e-20,-0.00012950012751389295,1.53600040362024e-20,4.551661947670105e-24,2.541098841762901e-21,-2.117582368135751e-22,4.235164736271502e-21,1.2950013115187176e-05,9.0,10.0,12.0,0.032316386699676514,-0.005349650513380766,-0.004893162287771702,-0.004180819261819124,0.00025252526393160224,0.0003030303050763905,0.00025641024694778025,0.00021043770539108664,0.00023310023243539035,0.00015262515807989985,-0.005349650513380766,0.0025639638770371675,0.0003030303050763905,0.00025641024694778025,-0.00021645022206939757,-7.575757626909763e-05,-6.410256173694506e-05,-1.4060746924421386e-19,-6.098637220230962e-20,-9.486769009248164e-20,-0.004893162287771702,0.0003030303050763905,0.0020869486033916473,0.00023310023243539035,-2.530449666858105e-19,-6.73400645609945e-05,8.470329472543003e-22,-0.00015782828268129379,-5.18000524607487e-05,-5.082197683525802e-21,-0.004180819261819124,0.00025641024694778025,0.00023310023243539035,0.0014622246380895376,-1.699200876654965e-19,1.2682777034228057e-21,-4.662004721467383e-05,5.4168245530461796e-21,-4.23818601120729e-05,-9.157509339274839e-05,0.00025252526393160224,-0.00021645022206939757,-2.530449666858105e-19,-1.699200876654965e-19,2.7056277758674696e-05,1.3256587943850188e-20,-9.522368786761079e-37,1.729489419565044e-20,8.06628324725996e-21,1.2147438101025312e-20,0.0003030303050763905,-7.575757626909763e-05,-6.73400645609945e-05,1.2682777034228057e-21,1.3256587943850188e-20,1.6835016140248626e-05,1.250311481503375e-23,0.0,-4.6027688693947e-22,8.517987525944408e-24,0.00025641024694778025,-6.410256173694506e-05,8.470329472543003e-22,-4.662004721467383e-05,-9.522368786761079e-37,1.250311481503375e-23,1.1655011803668458e-05,-1.0587911840678754e-22,0.0,4.235164736271502e-22,0.00021043770539108664,-1.4060746924421386e-19,-0.00015782828268129379,5.4168245530461796e-21,1.729489419565044e-20,0.0,-1.0587911840678754e-22,1.7536476661916822e-05,-4.235164736271502e-22,-2.117582368135751e-22,0.00023310023243539035,-6.098637220230962e-20,-5.18000524607487e-05,-4.23818601120729e-05,8.06628324725996e-21,-4.6027688693947e-22,0.0,-4.235164736271502e-22,9.4181914391811e-06,8.470329472543003e-22,0.00015262515807989985,-9.486769009248164e-20,-5.082197683525802e-21,-9.157509339274839e-05,1.2147438101025312e-20,8.517987525944408e-24,4.235164736271502e-22,-2.117582368135751e-22,8.470329472543003e-22,8.325007911480498e-06,9.0,10.0,13.0,0.030098790302872658,-0.004955044947564602,-0.004532134626060724,-0.0036097236443310976,0.00023310023243539035,0.0002797202905640006,0.00021978022414259613,0.00019425019854679704,0.00019980019715148956,0.00012210012937430292,-0.004955044947564602,0.002370962407439947,0.0002797202905640006,0.00021978022414259613,-0.00019980019715148956,-6.993007264100015e-05,-5.494505603564903e-05,-1.2771614374091049e-19,-6.013933925505532e-20,-7.623296525288703e-20,-0.004532134626060724,0.0002797202905640006,0.0019298294791951776,0.00019980019715148956,-1.8516440596938939e-19,-6.216006295289844e-05,-5.082197683525802e-21,-0.00014568764891009778,-4.4400043407222256e-05,-1.0164395367051604e-20,-0.0036097236443310976,0.00021978022414259613,0.00019980019715148956,0.0011566211469471455,-1.995958900744782e-19,-0.0,-3.6630037357099354e-05,-1.275855510060476e-34,-3.330003164592199e-05,-6.660006329184398e-05,0.00023310023243539035,-0.00019980019715148956,-1.8516440596938939e-19,-1.995958900744782e-19,2.4975024643936194e-05,0.0,1.3312617313447151e-20,1.596451796761381e-20,6.913956838281804e-21,9.60271792070179e-21,0.0002797202905640006,-6.993007264100015e-05,-6.216006295289844e-05,-0.0,0.0,1.554001573822461e-05,0.0,0.0,0.0,0.0,0.00021978022414259613,-5.494505603564903e-05,-5.082197683525802e-21,-3.6630037357099354e-05,1.3312617313447151e-20,0.0,9.157509339274839e-06,8.509682268936194e-36,8.470329472543003e-22,0.0,0.00019425019854679704,-1.2771614374091049e-19,-0.00014568764891009778,-1.275855510060476e-34,1.596451796761381e-20,0.0,8.509682268936194e-36,1.618751593923662e-05,4.4195348237284e-36,6.138242950240936e-36,0.00019980019715148956,-6.013933925505532e-20,-4.4400043407222256e-05,-3.330003164592199e-05,6.913956838281804e-21,0.0,8.470329472543003e-22,4.4195348237284e-36,7.400007234537043e-06,2.117582368135751e-21,0.00012210012937430292,-7.623296525288703e-20,-1.0164395367051604e-20,-6.660006329184398e-05,9.60271792070179e-21,0.0,0.0,6.138242950240936e-36,2.117582368135751e-21,5.550005425902782e-06,9.0,10.0,14.0,0.028166666626930237,-0.004614718724042177,-0.004220779053866863,-0.0031482684426009655,0.00021645022206939757,0.0002597402490209788,0.00019047618843615055,0.0001803751802071929,0.00017316016601398587,9.920635056914762e-05,-0.004614718724042177,0.002205009339377284,0.0002597402490209788,0.00019047618843615055,-0.00018552875553723425,-6.49350622552447e-05,-4.761904710903764e-05,-1.1859356943067235e-19,-6.183340514956392e-20,-6.268043809681823e-20,-0.004220779053866863,0.0002597402490209788,0.0017947329906746745,0.00017316016601398587,-1.7236638385424258e-19,-5.77200589759741e-05,-1.3552527156068805e-20,-0.00013528138515539467,-3.848003689199686e-05,-2.371692252312041e-20,-0.0031482684426009655,0.00019047618843615055,0.00017316016601398587,0.0009307775762863457,-1.6693634379844116e-19,-0.0,-2.930402843048796e-05,-1.0670893204756205e-34,-2.6640027499524876e-05,-4.960317528457381e-05,0.00021645022206939757,-0.00018552875553723425,-1.7236638385424258e-19,-1.6693634379844116e-19,2.319109444215428e-05,0.0,9.889372353661927e-21,1.4824196178834044e-20,5.992095953437349e-21,7.724185902832463e-21,0.0002597402490209788,-6.49350622552447e-05,-5.77200589759741e-05,-0.0,0.0,1.4430014743993524e-05,0.0,0.0,0.0,0.0,0.00019047618843615055,-4.761904710903764e-05,-1.3552527156068805e-20,-2.930402843048796e-05,9.889372353661927e-21,0.0,7.32600710762199e-06,6.321477723950168e-36,2.2234614865425384e-21,2.117582368135751e-22,0.0001803751802071929,-1.1859356943067235e-19,-0.00013528138515539467,-1.0670893204756205e-34,1.4824196178834044e-20,0.0,6.321477723950168e-36,1.5031265320430975e-05,3.830263394320478e-36,4.9374489964243425e-36,0.00017316016601398587,-6.183340514956392e-20,-3.848003689199686e-05,-2.6640027499524876e-05,5.992095953437349e-21,0.0,2.2234614865425384e-21,3.830263394320478e-36,5.920006060478045e-06,3.8116482626443515e-21,9.920635056914762e-05,-6.268043809681823e-20,-2.371692252312041e-20,-4.960317528457381e-05,7.724185902832463e-21,0.0,2.117582368135751e-22,4.9374489964243425e-36,3.8116482626443515e-21,3.815629042946966e-06,9.0,10.0,15.0,0.02646811306476593,-0.00431818189099431,-0.003949495032429695,-0.002770053455606103,0.00020202020823489875,0.00024242424115072936,0.00016666666488163173,0.00016835016140248626,0.00015151515253819525,8.169934881152585e-05,-0.00431818189099431,0.0020607863552868366,0.00024242424115072936,0.00016666666488163173,-0.00017316016601398587,-6.060606028768234e-05,-4.166666622040793e-05,2.2137465087420445e-19,8.470329472543003e-20,9.994988777600744e-20,-0.003949495032429695,0.00024242424115072936,0.0016773288371041417,0.00015151515253819525,3.903233958560164e-19,-5.3872052376391366e-05,0.0,-0.00012626263196580112,-3.367003228049725e-05,8.470329472543003e-22,-0.002770053455606103,0.00016666666488163173,0.00015151515253819525,0.0007602266850881279,2.837716245148584e-19,-2.2246035438882455e-34,-2.380952355451882e-05,-3.6278460221737645e-34,-2.1645020751748234e-05,-3.77073920390103e-05,0.00020202020823489875,-0.00017316016601398587,3.903233958560164e-19,2.837716245148584e-19,2.1645020751748234e-05,-1.6968432503504755e-20,-1.4998881537686184e-20,-2.7671831359275556e-20,-1.0486167817541165e-20,-1.2613452594209508e-20,0.00024242424115072936,-6.060606028768234e-05,-5.3872052376391366e-05,-2.2246035438882455e-34,-1.6968432503504755e-20,1.3468013094097842e-05,1.1758246716225308e-35,2.16930996562337e-35,8.220542514071641e-36,9.888209835002711e-36,0.00016666666488163173,-4.166666622040793e-05,0.0,-2.380952355451882e-05,-1.4998881537686184e-20,1.1758246716225308e-35,5.952380888629705e-06,1.9175149717785015e-35,2.117582368135751e-22,0.0,0.00016835016140248626,2.2137465087420445e-19,-0.00012626263196580112,-3.6278460221737645e-34,-2.7671831359275556e-20,2.16930996562337e-35,1.9175149717785015e-35,1.4029180420038756e-05,1.3405921880121672e-35,1.6125525348977776e-35,0.00015151515253819525,8.470329472543003e-20,-3.367003228049725e-05,-2.1645020751748234e-05,-1.0486167817541165e-20,8.220542514071641e-36,2.117582368135751e-22,1.3405921880121672e-35,4.8100046114996076e-06,0.0,8.169934881152585e-05,9.994988777600744e-20,8.470329472543003e-22,-3.77073920390103e-05,-1.2613452594209508e-20,9.888209835002711e-36,0.0,1.6125525348977776e-35,0.0,2.6933851131616393e-06,9.0,10.0,16.0,0.02496311068534851,-0.004057486541569233,-0.0037110070697963238,-0.002456179354339838,0.00018939393339678645,0.00022727272880729288,0.00014705881767440587,0.00015782828268129379,0.0001336898421868682,6.808278703829274e-05,-0.004057486541569233,0.0019342850428074598,0.00022727272880729288,0.00014705881767440587,-0.00016233765927609056,-5.681818220182322e-05,-3.676470441860147e-05,-1.037693684050769e-19,-3.8963515573697816e-20,-4.2351647362715017e-20,-0.0037110070697963238,0.00022727272880729288,0.00157435261644423,0.0001336898421868682,-2.1109205915243726e-19,-5.0505052058724687e-05,-1.6940658945086007e-21,-0.00011837121564894915,-2.970885361719411e-05,-4.235164736271502e-21,-0.002456179354339838,0.00014705881767440587,0.0001336898421868682,0.0006290000746957958,-9.906968359372006e-20,-7.281079163699814e-35,-1.9607843569247052e-05,-6.332725563328043e-35,-1.7825312170316465e-05,-2.9178338081692345e-05,0.00018939393339678645,-0.00016233765927609056,-2.1109205915243726e-19,-9.906968359372006e-20,2.029220740951132e-05,1.4913660931960482e-20,4.472350995991451e-37,1.2971171050634613e-20,4.626250721566458e-21,5.21677043722409e-21,0.00022727272880729288,-5.681818220182322e-05,-5.0505052058724687e-05,-7.281079163699814e-35,1.4913660931960482e-20,1.2626263014681172e-05,0.0,9.533099907980103e-36,3.400040641018397e-36,3.834040487832382e-36,0.00014705881767440587,-3.676470441860147e-05,-1.6940658945086007e-21,-1.9607843569247052e-05,4.472350995991451e-37,0.0,4.901960892311763e-06,0.0,3.1763735522036263e-22,1.0587911840678754e-22,0.00015782828268129379,-1.037693684050769e-19,-0.00011837121564894915,-6.332725563328043e-35,1.2971171050634613e-20,9.533099907980103e-36,0.0,1.3152356586942915e-05,2.9571887133325583e-36,3.334660583669638e-36,0.0001336898421868682,-3.8963515573697816e-20,-2.970885361719411e-05,-1.7825312170316465e-05,4.626250721566458e-21,3.400040641018397e-36,3.1763735522036263e-22,2.9571887133325583e-36,3.961180482292548e-06,6.352747104407253e-22,6.808278703829274e-05,-4.2351647362715017e-20,-4.235164736271502e-21,-2.9178338081692345e-05,5.21677043722409e-21,3.834040487832382e-36,1.0587911840678754e-22,3.334660583669638e-36,6.352747104407253e-22,1.9452224933047546e-06,9.0,11.0,3.0,0.0898318886756897,-0.017447199672460556,-0.01472416426986456,-0.03989899158477783,0.0009182736393995583,0.001010101055726409,0.0030303029343485832,0.0006475006230175495,0.0025252525229007006,0.005050505045801401,-0.017447199672460556,0.008821985684335232,0.001010101055726409,0.0030303029343485832,-0.0007870916742831469,-0.00025252526393160224,-0.0007575757335871458,7.9052679204473105e-19,1.4805579639043228e-18,1.2928918173806916e-17,-0.01472416426986456,0.001010101055726409,0.005966502707451582,0.0025252525229007006,1.502803642310441e-18,-0.00020202020823489875,6.070449506050441e-22,-0.00043166711111553013,-0.0005050505278632045,-2.686463622172923e-32,-0.03989899158477783,0.0030303029343485832,0.0025252525229007006,0.09040404111146927,5.404586364184669e-18,-1.4515559259536597e-20,-0.0030303029343485832,1.1443309490318784e-20,-0.0025252525229007006,-0.03030303120613098,0.0009182736393995583,-0.0007870916742831469,1.502803642310441e-18,5.404586364184669e-18,9.838645928539336e-05,-7.287985293058409e-20,-2.6014442523880586e-19,-1.0335492506879369e-19,-1.7372382601353332e-19,-1.7476947019574043e-18,0.001010101055726409,-0.00025252526393160224,-0.00020202020823489875,-1.4515559259536597e-20,-7.287985293058409e-20,5.0505052058724687e-05,1.289527803722644e-20,9.631005235829117e-21,-7.413110254756405e-21,1.3719782315622329e-33,0.0030303029343485832,-0.0007575757335871458,6.070449506050441e-22,-0.0030303029343485832,-2.6014442523880586e-19,1.289527803722644e-20,0.0007575757335871458,2.0264994782769741e-22,-5.437272070047578e-20,1.0526391316595888e-18,0.0006475006230175495,7.9052679204473105e-19,-0.00043166711111553013,1.1443309490318784e-20,-1.0335492506879369e-19,9.631005235829117e-21,2.0264994782769741e-22,4.316671038395725e-05,-2.4507818664233343e-21,1.8420198515476793e-33,0.0025252525229007006,1.4805579639043228e-18,-0.0005050505278632045,-0.0025252525229007006,-1.7372382601353332e-19,-7.413110254756405e-21,-5.437272070047578e-20,-2.4507818664233343e-21,0.0005050505278632045,2.968530801758225e-33,0.005050505045801401,1.2928918173806916e-17,-2.686463622172923e-32,-0.03030303120613098,-1.7476947019574043e-18,1.3719782315622329e-33,1.0526391316595888e-18,1.8420198515476793e-33,2.968530801758225e-33,0.01515151560306549,9.0,11.0,4.0,0.07310623675584793,-0.013539944775402546,-0.011421911418437958,-0.02545454539358616,0.000688705244101584,0.0007575757335871458,0.001818181830458343,0.0004856254963669926,0.0015151514671742916,0.0025252525229007006,-0.013539944775402546,0.00673012575134635,0.0007575757335871458,0.001818181830458343,-0.0005903187557123601,-0.00018939393339678645,-0.00045454545761458576,-3.702186676703385e-19,1.0889641478743956e-18,8.340038599898551e-18,-0.011421911418437958,0.0007575757335871458,0.004550634417682886,0.0015151514671742916,-4.114859329487848e-19,-0.00015151515253819525,2.0331856472248483e-19,-0.00032375031150877476,-0.0003030303050763905,9.71450093087075e-18,-0.02545454539358616,0.001818181830458343,0.0015151514671742916,0.03464646637439728,3.553838813178418e-18,2.3044945808900706e-18,-0.001212121220305562,2.98187113014852e-18,-0.001010101055726409,-0.007575757801532745,0.000688705244101584,-0.0005903187557123601,-4.114859329487848e-19,3.553838813178418e-18,7.378984446404502e-05,4.423399701298173e-20,-8.863727524585274e-20,3.8757705928711233e-20,-9.545102044539345e-20,-8.083087970703601e-19,0.0007575757335871458,-0.00018939393339678645,-0.00015151515253819525,2.3044945808900706e-18,4.423399701298173e-20,3.787878813454881e-05,-6.684846549415368e-20,1.0472344046230013e-20,-7.771755411961511e-20,-5.046468133954457e-19,0.001818181830458343,-0.00045454545761458576,2.0331856472248483e-19,-0.001212121220305562,-8.863727524585274e-20,-6.684846549415368e-20,0.0003030303050763905,1.1825568967743207e-22,4.186699707194137e-20,4.3311057966063475e-19,0.0004856254963669926,-3.702186676703385e-19,-0.00032375031150877476,2.98187113014852e-18,3.8757705928711233e-20,1.0472344046230013e-20,1.1825568967743207e-22,3.237503187847324e-05,-1.0332392518286856e-19,-7.548136309892721e-19,0.0015151514671742916,1.0889641478743956e-18,-0.0003030303050763905,-0.001010101055726409,-9.545102044539345e-20,-7.771755411961511e-20,4.186699707194137e-20,-1.0332392518286856e-19,0.00020202020823489875,-9.8518193232043e-20,0.0025252525229007006,8.340038599898551e-18,9.71450093087075e-18,-0.007575757801532745,-8.083087970703601e-19,-5.046468133954457e-19,4.3311057966063475e-19,-7.548136309892721e-19,-9.8518193232043e-20,0.0025252525229007006,9.0,11.0,5.0,0.061734627932310104,-0.01107438001781702,-0.009339549578726292,-0.017691196873784065,0.0005509642069227993,0.000606060610152781,0.001212121220305562,0.0003885003970935941,0.001010101055726409,0.0014430014416575432,-0.01107438001781702,0.005444706883281469,0.000606060610152781,0.001212121220305562,-0.0004722550220321864,-0.00015151515253819525,-0.0003030303050763905,-2.913793338554793e-19,-3.4558944247975454e-19,-1.3763907991727903e-18,-0.009339549578726292,0.000606060610152781,0.0036809116136282682,0.001010101055726409,-3.738567631007116e-19,-0.00012121212057536468,-6.050770604627992e-20,-0.0002590002550277859,-0.00020202020823489875,-1.0283697533798585e-33,-0.017691196873784065,0.001212121220305562,0.001010101055726409,0.017503608018159866,-1.010710276987465e-18,-1.0006285609075775e-19,-0.000606060610152781,1.3552527156068805e-20,-0.0005050505278632045,-0.0028860028833150864,0.0005509642069227993,-0.0004722550220321864,-3.738567631007116e-19,-1.010710276987465e-18,5.90318777540233e-05,-2.5969129343742733e-21,5.932477960919227e-20,3.170364860535253e-20,3.484031748815361e-20,1.4980239600865624e-19,0.000606060610152781,-0.00015151515253819525,-0.00012121212057536468,-1.0006285609075775e-19,-2.5969129343742733e-21,3.030303014384117e-05,1.2728455740954954e-20,8.470329472543003e-21,9.317362419797304e-21,9.664860168627967e-36,0.001212121220305562,-0.0003030303050763905,-6.050770604627992e-20,-0.000606060610152781,5.932477960919227e-20,1.2728455740954954e-20,0.00015151515253819525,-1.4278636082167433e-22,7.044632795813143e-21,8.898580262707313e-20,0.0003885003970935941,-2.913793338554793e-19,-0.0002590002550277859,1.3552527156068805e-20,3.170364860535253e-20,8.470329472543003e-21,-1.4278636082167433e-22,2.590002623037435e-05,-3.3881317890172014e-21,8.050800670635422e-35,0.001010101055726409,-3.4558944247975454e-19,-0.00020202020823489875,-0.0005050505278632045,3.484031748815361e-20,9.317362419797304e-21,7.044632795813143e-21,-3.3881317890172014e-21,0.00010101010411744937,9.196229801931136e-35,0.0014430014416575432,-1.3763907991727903e-18,-1.0283697533798585e-33,-0.0028860028833150864,1.4980239600865624e-19,9.664860168627967e-36,8.898580262707313e-20,8.050800670635422e-35,9.196229801931136e-35,0.0007215007208287716,9.0,11.0,6.0,0.05346572771668434,-0.009372950531542301,-0.007903208024799824,-0.01302308775484562,0.00045913681969977915,0.0005050505278632045,0.0008658008882775903,0.00032375031150877476,0.0007215007208287716,0.0009018759010359645,-0.009372950531542301,0.004573330748826265,0.0005050505278632045,0.0008658008882775903,-0.00039354583714157343,-0.00012626263196580112,-0.00021645022206939757,3.9302328752599536e-19,3.4897757426877174e-19,1.165575961847832e-18,-0.007903208024799824,0.0005050505278632045,0.0030914763920009136,0.0007215007208287716,7.91337429045033e-19,-0.00010101010411744937,-7.604540204899063e-20,-0.00021583355555776507,-0.00014430013834498823,-2.8334850516189682e-33,-0.01302308775484562,0.0008658008882775903,0.0007215007208287716,0.010169552639126778,1.3612045903069293e-18,8.411482518984531e-21,-0.00034632033202797174,6.776263578034403e-21,-0.00028860027668997645,-0.0013528139097616076,0.00045913681969977915,-0.00039354583714157343,7.91337429045033e-19,1.3612045903069293e-18,4.919322964269668e-05,-3.6676723071506686e-20,-6.31626585445425e-20,-5.2305072899474386e-20,-5.006220174910526e-20,-1.7164858495300262e-19,0.0005050505278632045,-0.00012626263196580112,-0.00010101010411744937,8.411482518984531e-21,-3.6676723071506686e-20,2.5252526029362343e-05,1.1038686904325724e-21,5.929230630780102e-21,-3.3881317890172014e-21,1.344751073250052e-34,0.0008658008882775903,-0.00021645022206939757,-7.604540204899063e-20,-0.00034632033202797174,-6.31626585445425e-20,1.1038686904325724e-21,8.658008300699294e-05,5.48794401134468e-22,2.764082177982762e-20,8.304506901589971e-20,0.00032375031150877476,3.9302328752599536e-19,-0.00021583355555776507,6.776263578034403e-21,-5.2305072899474386e-20,5.929230630780102e-21,5.48794401134468e-22,2.1583355191978626e-05,-1.6940658945086007e-21,1.8063453199157758e-34,0.0007215007208287716,3.4897757426877174e-19,-0.00014430013834498823,-0.00028860027668997645,-5.006220174910526e-20,-3.3881317890172014e-21,2.764082177982762e-20,-1.6940658945086007e-21,5.77200589759741e-05,1.9625415424630614e-34,0.0009018759010359645,1.165575961847832e-18,-2.8334850516189682e-33,-0.0013528139097616076,-1.7164858495300262e-19,1.344751073250052e-34,8.304506901589971e-20,1.8063453199157758e-34,1.9625415424630614e-34,0.00027056277031078935,9.0,11.0,7.0,0.047169413417577744,-0.00812672171741724,-0.00685148173943162,-0.009992784820497036,0.00039354583714157343,0.00043290044413879514,0.0006493506371043622,0.0002775002794805914,0.0005411255406215787,0.0006012506200931966,-0.00812672171741724,0.003943189047276974,0.00043290044413879514,0.0006493506371043622,-0.00033732500742189586,-0.00010822511103469878,-0.00016233765927609056,-2.168404344971009e-19,-1.4907779871675686e-19,-5.05063453930231e-19,-0.00685148173943162,0.00043290044413879514,0.002665297593921423,0.0005411255406215787,-4.032553824563056e-19,-8.658008300699294e-05,6.56213495177798e-20,-0.00018500018632039428,-0.00010822511103469878,-4.906966169328287e-34,-0.009992784820497036,0.0006493506371043622,0.0005411255406215787,0.0064574312418699265,-5.653111538455308e-19,1.4837783468578472e-21,-0.00021645022206939757,6.776263578034403e-21,-0.0001803751802071929,-0.0007215007208287716,0.00039354583714157343,-0.00033732500742189586,-4.032553824563056e-19,-5.653111538455308e-19,4.216562592773698e-05,3.063466306646979e-20,3.6596570562620005e-20,2.2410192028375433e-20,1.8870605407904333e-20,5.4095311464889347e-20,0.00043290044413879514,-0.00010822511103469878,-8.658008300699294e-05,1.4837783468578472e-21,3.063466306646979e-20,2.1645020751748234e-05,-7.946670022627951e-21,7.623296525288703e-21,5.929230630780102e-21,3.702907363178203e-35,0.0006493506371043622,-0.00016233765927609056,6.56213495177798e-20,-0.00021645022206939757,3.6596570562620005e-20,-7.946670022627951e-21,5.411255551734939e-05,1.7303276844104072e-35,-1.1278223142422666e-20,2.4100322352625872e-20,0.0002775002794805914,-2.168404344971009e-19,-0.00018500018632039428,6.776263578034403e-21,2.2410192028375433e-20,7.623296525288703e-21,1.7303276844104072e-35,1.850001899583731e-05,-8.470329472543003e-22,2.8745641021997694e-35,0.0005411255406215787,-1.4907779871675686e-19,-0.00010822511103469878,-0.0001803751802071929,1.8870605407904333e-20,5.929230630780102e-21,-1.1278223142422666e-20,-8.470329472543003e-22,3.607503458624706e-05,1.8374635482001707e-35,0.0006012506200931966,-5.05063453930231e-19,-4.906966169328287e-34,-0.0007215007208287716,5.4095311464889347e-20,3.702907363178203e-35,2.4100322352625872e-20,2.8745641021997694e-35,1.8374635482001707e-35,0.0001202501225634478,9.0,11.0,8.0,0.0422096848487854,-0.007174012716859579,-0.006047655828297138,-0.007912457920610905,0.000344352622050792,0.0003787878667935729,0.0005050505278632045,0.0002428127481834963,0.0004208754107821733,0.0004208754107821733,-0.007174012716859579,0.0034660729579627514,0.0003787878667935729,0.0005050505278632045,-0.00029515937785618007,-9.469696669839323e-05,-0.00012626263196580112,-1.8973538018496328e-19,2.422514229147299e-19,9.043052785062469e-19,-0.006047655828297138,0.0003787878667935729,0.00234265741892159,0.0004208754107821733,-2.0768341586916816e-19,-7.575757626909763e-05,5.288592817289707e-20,-0.00016187515575438738,-8.417508070124313e-05,1.3886841506414003e-18,-0.007912457920610905,0.0005050505278632045,0.0004208754107821733,0.004365079570561647,9.470495264671949e-19,5.814173943477039e-19,-0.00014430013834498823,7.487771253728015e-19,-0.0001202501225634478,-0.0004208754107821733,0.000344352622050792,-0.00029515937785618007,-2.0768341586916816e-19,9.470495264671949e-19,3.689492223202251e-05,2.0551660979223697e-20,-4.0486800983456894e-20,1.9725189609422448e-20,-2.0533842668723995e-20,-8.738472992799138e-20,0.0003787878667935729,-9.469696669839323e-05,-7.575757626909763e-05,5.814173943477039e-19,2.0551660979223697e-20,1.8939394067274407e-05,-1.6752906717494942e-20,5.929230630780102e-21,-1.8634724839594607e-20,-5.607187246328188e-20,0.0005050505278632045,-0.00012626263196580112,5.288592817289707e-20,-0.00014430013834498823,-4.0486800983456894e-20,-1.6752906717494942e-20,3.607503458624706e-05,-5.868067799304859e-35,4.035914375048523e-21,2.146628039863726e-20,0.0002428127481834963,-1.8973538018496328e-19,-0.00016187515575438738,7.487771253728015e-19,1.9725189609422448e-20,5.929230630780102e-21,-5.868067799304859e-35,1.618751593923662e-05,-2.456395547037471e-20,-8.386817834887533e-20,0.0004208754107821733,2.422514229147299e-19,-8.417508070124313e-05,-0.0001202501225634478,-2.0533842668723995e-20,-1.8634724839594607e-20,4.035914375048523e-21,-2.456395547037471e-20,2.405002487648744e-05,-9.306139905330432e-20,0.0004208754107821733,9.043052785062469e-19,1.3886841506414003e-18,-0.0004208754107821733,-8.738472992799138e-20,-5.607187246328188e-20,2.146628039863726e-20,-8.386817834887533e-20,-9.306139905330432e-20,6.01250612817239e-05,9.0,11.0,9.0,0.03819924220442772,-0.006421793717890978,-0.005413105245679617,-0.006421793717890978,0.0003060912131331861,0.00033670032280497253,0.0004040404164697975,0.00021583355555776507,0.00033670032280497253,0.0003060912131331861,-0.006421793717890978,0.0030921772122383118,0.00033670032280497253,0.0004040404164697975,-0.00026236390112899244,-8.417508070124313e-05,-0.00010101010411744937,-1.6601845766184287e-19,-1.0837355262977509e-19,-2.303929616531697e-19,-0.005413105245679617,0.00033670032280497253,0.0020898443181067705,0.00033670032280497253,-2.9190958247751995e-19,-6.73400645609945e-05,-1.6940658945086007e-21,-0.00014388903218787163,-6.73400645609945e-05,-5.421010862427522e-20,-0.006421793717890978,0.0004040404164697975,0.00033670032280497253,0.0030921772122383118,-3.5502638419685404e-19,-1.7514318393414335e-20,-0.00010101010411744937,-1.6527780506890364e-21,-8.417508070124313e-05,-0.00026236390112899244,0.0003060912131331861,-0.00026236390112899244,-2.9190958247751995e-19,-3.5502638419685404e-19,3.2795487641124055e-05,1.6517995501465552e-20,2.2797207541886547e-20,1.7787594957112274e-20,1.192012983804802e-20,2.554402070899513e-20,0.00033670032280497253,-8.417508070124313e-05,-6.73400645609945e-05,-1.7514318393414335e-20,1.6517995501465552e-20,1.6835016140248626e-05,1.1015242715529025e-21,5.082197683525802e-21,3.0178727413620383e-21,-3.655146488445466e-22,0.0004040404164697975,-0.00010101010411744937,-1.6940658945086007e-21,-0.00010101010411744937,2.2797207541886547e-20,1.1015242715529025e-21,2.5252526029362343e-05,0.0,-8.470329472543003e-22,1.0164395367051604e-20,0.00021583355555776507,-1.6601845766184287e-19,-0.00014388903218787163,-1.6527780506890364e-21,1.7787594957112274e-20,5.082197683525802e-21,0.0,1.4388902854989283e-05,0.0,-4.235164736271502e-22,0.00033670032280497253,-1.0837355262977509e-19,-6.73400645609945e-05,-8.417508070124313e-05,1.192012983804802e-20,3.0178727413620383e-21,-8.470329472543003e-22,0.0,1.6835016140248626e-05,1.4399560103323106e-20,0.0003060912131331861,-2.303929616531697e-19,-5.421010862427522e-20,-0.00026236390112899244,2.554402070899513e-20,-3.655146488445466e-22,1.0164395367051604e-20,-4.235164736271502e-22,1.4399560103323106e-20,3.2795487641124055e-05,9.0,11.0,10.0,0.03488804027438164,-0.005812671966850758,-0.0048993430100381374,-0.005316804628819227,0.0002754821034613997,0.0003030303050763905,0.00033057850669138134,0.00019425019854679704,0.0002754821034613997,0.00022956840984988958,-0.005812671966850758,0.0027912238147109747,0.0003030303050763905,0.00033057850669138134,-0.0002361275110160932,-7.575757626909763e-05,-8.264462667284533e-05,-1.4230153513872246e-19,-6.490128233220386e-20,-1.6940658945086007e-19,-0.0048993430100381374,0.0003030303050763905,0.00188636954408139,0.0002754821034613997,-1.9770032815263052e-19,-6.060606028768234e-05,-1.6940658945086007e-20,-0.00012950012751389295,-5.509641778189689e-05,6.776263578034403e-21,-0.005316804628819227,0.00033057850669138134,0.0002754821034613997,0.002271962119266391,-2.6666273771269443e-19,2.003230706902047e-21,-7.346189522650093e-05,-4.33631614185354e-22,-6.12182411714457e-05,-0.000172176311025396,0.0002754821034613997,-0.0002361275110160932,-1.9770032815263052e-19,-2.6666273771269443e-19,2.951593887701165e-05,-4.450322067440591e-22,1.2825327153296723e-20,1.564168973093225e-20,9.577088246409718e-21,1.8627386842832467e-20,0.0003030303050763905,-7.575757626909763e-05,-6.060606028768234e-05,2.003230706902047e-21,-4.450322067440591e-22,1.5151515071920585e-05,3.00572170857964e-21,3.3881317890172014e-21,-3.2303507222437626e-21,1.622198040713874e-22,0.00033057850669138134,-8.264462667284533e-05,-1.6940658945086007e-20,-7.346189522650093e-05,1.2825327153296723e-20,3.00572170857964e-21,1.8365473806625232e-05,1.0587911840678754e-22,8.470329472543003e-22,4.235164736271502e-21,0.00019425019854679704,-1.4230153513872246e-19,-0.00012950012751389295,-4.33631614185354e-22,1.564168973093225e-20,3.3881317890172014e-21,1.0587911840678754e-22,1.2950013115187176e-05,0.0,-2.117582368135751e-22,0.0002754821034613997,-6.490128233220386e-20,-5.509641778189689e-05,-6.12182411714457e-05,9.577088246409718e-21,-3.2303507222437626e-21,8.470329472543003e-22,0.0,1.224364859808702e-05,-1.6940658945086007e-21,0.00022956840984988958,-1.6940658945086007e-19,6.776263578034403e-21,-0.000172176311025396,1.8627386842832467e-20,1.622198040713874e-22,4.235164736271502e-21,-2.117582368135751e-22,-1.6940658945086007e-21,1.913070082082413e-05,9.0,11.0,11.0,0.0321071483194828,-0.005309291183948517,-0.004474818240851164,-0.004474818240851164,0.0002504382573533803,0.0002754821034613997,0.0002754821034613997,0.00017659108561929315,0.00022956840984988958,0.00017659108561929315,-0.005309291183948517,0.002543737180531025,0.0002754821034613997,0.0002754821034613997,-0.00021466136968228966,-6.887052586534992e-05,-6.887052586534992e-05,-1.3891340334970526e-19,-4.0096607610053413e-20,-1.3552527156068805e-19,-0.004474818240851164,0.0002754821034613997,0.0017190553480759263,0.00022956840984988958,-1.882961376179093e-19,-5.509641778189689e-05,9.317362419797304e-21,-0.0001177273879875429,-4.591368269757368e-05,6.776263578034403e-21,-0.004474818240851164,0.0002754821034613997,0.00022956840984988958,0.0017190553480759263,-1.818246383968124e-19,-2.3507600591704744e-21,-5.509641778189689e-05,-3.2982677839202997e-21,-4.591368269757368e-05,-0.0001177273879875429,0.0002504382573533803,-0.00021466136968228966,-1.882961376179093e-19,-1.818246383968124e-19,2.6832671210286207e-05,1.2242197335137908e-21,8.52593596220767e-22,1.4432456688543428e-20,7.78781176313299e-21,1.397002718320934e-20,0.0002754821034613997,-6.887052586534992e-05,-5.509641778189689e-05,-2.3507600591704744e-21,1.2242197335137908e-21,1.3774104445474222e-05,2.0341065965146524e-21,4.235164736271502e-21,-1.207763766864744e-21,-6.131138658081883e-23,0.0002754821034613997,-6.887052586534992e-05,9.317362419797304e-21,-5.509641778189689e-05,8.52593596220767e-22,2.0341065965146524e-21,1.3774104445474222e-05,0.0,-3.8116482626443515e-21,4.658681209898652e-21,0.00017659108561929315,-1.3891340334970526e-19,-0.0001177273879875429,-3.2982677839202997e-21,1.4432456688543428e-20,4.235164736271502e-21,0.0,1.177273861685535e-05,8.470329472543003e-22,-2.117582368135751e-22,0.00022956840984988958,-4.0096607610053413e-20,-4.591368269757368e-05,-4.591368269757368e-05,7.78781176313299e-21,-1.207763766864744e-21,-3.8116482626443515e-21,8.470329472543003e-22,9.182736903312616e-06,-1.2705494208814505e-21,0.00017659108561929315,-1.3552527156068805e-19,6.776263578034403e-21,-0.0001177273879875429,1.397002718320934e-20,-6.131138658081883e-23,4.658681209898652e-21,-2.117582368135751e-22,-1.2705494208814505e-21,1.177273861685535e-05,9.0,11.0,12.0,0.02973819151520729,-0.00488627515733242,-0.004118103999644518,-0.0038184039294719696,0.00022956840984988958,0.00025252526393160224,0.00023310023243539035,0.00016187515575438738,0.00019425019854679704,0.0001387501397402957,-0.00488627515733242,0.002336615463718772,0.00025252526393160224,0.00023310023243539035,-0.00019677291857078671,-6.313131598290056e-05,-5.827505810884759e-05,2.0837010502455788e-19,1.0926725019580474e-19,1.7618285302889447e-19,-0.004118103999644518,0.00025252526393160224,0.0015790382167324424,0.00019425019854679704,4.0765691389327683e-19,-5.0505052058724687e-05,4.235164736271502e-21,-0.00010791677777888253,-3.885003752657212e-05,1.1858461261560205e-20,-0.0038184039294719696,0.00023310023243539035,0.00019425019854679704,0.001332505838945508,3.708463943576897e-19,-1.1557645803474716e-21,-4.23818601120729e-05,2.1570552007845826e-22,-3.5318218579050153e-05,-8.325008093379438e-05,0.00022956840984988958,-0.00019677291857078671,4.0765691389327683e-19,3.708463943576897e-19,2.459661482134834e-05,-1.807716471705552e-20,-1.5169649097738636e-20,-2.614073135454984e-20,-1.3443804604306367e-20,-2.2086250652158622e-20,0.00025252526393160224,-6.313131598290056e-05,-5.0505052058724687e-05,-1.1557645803474716e-21,-1.807716471705552e-20,1.2626263014681172e-05,3.6760403845988946e-23,-4.235164736271502e-22,3.0633671449379265e-23,7.476550398267181e-23,0.00023310023243539035,-5.827505810884759e-05,4.235164736271502e-21,-4.23818601120729e-05,-1.5169649097738636e-20,3.6760403845988946e-23,1.0595465028018225e-05,5.293955920339377e-23,-4.235164736271502e-22,-4.235164736271502e-22,0.00016187515575438738,2.0837010502455788e-19,-0.00010791677777888253,2.1570552007845826e-22,-2.614073135454984e-20,-4.235164736271502e-22,5.293955920339377e-23,1.0791677595989313e-05,0.0,1.0587911840678754e-22,0.00019425019854679704,1.0926725019580474e-19,-3.885003752657212e-05,-3.5318218579050153e-05,-1.3443804604306367e-20,3.0633671449379265e-23,-4.235164736271502e-22,0.0,7.06364335201215e-06,-2.541098841762901e-21,0.0001387501397402957,1.7618285302889447e-19,1.1858461261560205e-20,-8.325008093379438e-05,-2.2086250652158622e-20,7.476550398267181e-23,-4.235164736271502e-22,1.0587911840678754e-22,-2.541098841762901e-21,7.568189175799489e-06,9.0,11.0,13.0,0.02769569121301174,-0.004525777418166399,-0.0038141345139592886,-0.0032967033330351114,0.0002119092969223857,0.00023310023243539035,0.00019980019715148956,0.00014942322741262615,0.00016650016186758876,0.00011100011033704504,-0.004525777418166399,0.0021607179660350084,0.00023310023243539035,0.00019980019715148956,-0.00018163654021918774,-5.827505810884759e-05,-4.995004928787239e-05,-9.656175598699024e-20,-5.082197683525802e-20,-7.115076756936123e-20,-0.0038141345139592886,0.00023310023243539035,0.0014601353323087096,0.00016650016186758876,-2.168314259832423e-19,-4.662004721467383e-05,-7.623296525288703e-21,-9.961548494175076e-05,-3.330003164592199e-05,-1.3552527156068805e-20,-0.0032967033330351114,0.00019980019715148956,0.00016650016186758876,0.0010539965005591512,-1.7757373137950824e-19,-9.981638820512006e-36,-3.330003164592199e-05,-1.7374868182158825e-21,-2.775002758426126e-05,-6.054551340639591e-05,0.0002119092969223857,-0.00018163654021918774,-2.168314259832423e-19,-1.7757373137950824e-19,2.2704567527398467e-05,1.5403028737165096e-20,1.100216292209303e-20,1.2064953492110857e-20,5.761630833200431e-21,8.729743490838576e-21,0.00023310023243539035,-5.827505810884759e-05,-4.662004721467383e-05,-9.981638820512006e-36,1.5403028737165096e-20,1.1655011803668458e-05,2.6469779601696886e-23,0.0,-1.0587911840678754e-22,-4.804856321531651e-24,0.00019980019715148956,-4.995004928787239e-05,-7.623296525288703e-21,-3.330003164592199e-05,1.100216292209303e-20,2.6469779601696886e-23,8.325007911480498e-06,5.293955920339377e-23,1.164670302474663e-21,-4.235164736271502e-22,0.00014942322741262615,-9.656175598699024e-20,-9.961548494175076e-05,-1.7374868182158825e-21,1.2064953492110857e-20,0.0,5.293955920339377e-23,9.961548130377196e-06,4.235164736271502e-22,1.0587911840678754e-22,0.00016650016186758876,-5.082197683525802e-20,-3.330003164592199e-05,-2.775002758426126e-05,5.761630833200431e-21,-1.0587911840678754e-22,1.164670302474663e-21,4.235164736271502e-22,5.550005425902782e-06,2.117582368135751e-21,0.00011100011033704504,-7.115076756936123e-20,-1.3552527156068805e-20,-6.054551340639591e-05,8.729743490838576e-21,-4.804856321531651e-24,-4.235164736271502e-22,1.0587911840678754e-22,2.117582368135751e-21,5.045459602115443e-06,9.0,11.0,14.0,0.025916356593370438,-0.004214875865727663,-0.0035520035307854414,-0.002875180449336767,0.00019677291857078671,0.00021645022206939757,0.00017316016601398587,0.0001387501397402957,0.00014430013834498823,9.018759010359645e-05,-0.004214875865727663,0.0020094732753932476,0.00021645022206939757,0.00017316016601398587,-0.00016866250371094793,-5.411255551734939e-05,-4.329004150349647e-05,-8.962536833694147e-20,-3.6422416731934915e-20,-5.929230630780102e-20,-0.0035520035307854414,0.00021645022206939757,0.0013579013757407665,0.00014430013834498823,-1.976136292846773e-19,-4.329004150349647e-05,2.541098841762901e-21,-9.250009316019714e-05,-2.886002948798705e-05,6.776263578034403e-21,-0.002875180449336767,0.00017316016601398587,0.00014430013834498823,0.0008481796248815954,-1.4894504915313917e-19,-9.382838382180472e-35,-2.6640027499524876e-05,-7.914772785782503e-35,-2.2200021703611128e-05,-4.5093795051798224e-05,0.00019677291857078671,-0.00016866250371094793,-1.976136292846773e-19,-1.4894504915313917e-19,2.108281296386849e-05,1.3281182026789435e-20,8.173035590512617e-21,1.1203171042117684e-20,4.9934130925827324e-21,7.02198711095737e-21,0.00021645022206939757,-5.411255551734939e-05,-4.329004150349647e-05,-9.382838382180472e-35,1.3281182026789435e-20,1.0822510375874117e-05,5.148628307163712e-36,7.057471783963976e-36,3.1456157798987854e-36,4.423522493163135e-36,0.00017316016601398587,-4.329004150349647e-05,2.541098841762901e-21,-2.6640027499524876e-05,8.173035590512617e-21,5.148628307163712e-36,6.660006874881219e-06,4.3430595317676465e-36,-4.235164736271502e-22,2.117582368135751e-22,0.0001387501397402957,-8.962536833694147e-20,-9.250009316019714e-05,-7.914772785782503e-35,1.1203171042117684e-20,7.057471783963976e-36,4.3430595317676465e-36,9.250009497918654e-06,2.653443885987223e-36,3.731405352565655e-36,0.00014430013834498823,-3.6422416731934915e-20,-2.886002948798705e-05,-2.2200021703611128e-05,4.9934130925827324e-21,3.1456157798987854e-36,-4.235164736271502e-22,2.653443885987223e-36,4.440004431671696e-06,-8.470329472543003e-22,9.018759010359645e-05,-5.929230630780102e-20,6.776263578034403e-21,-4.5093795051798224e-05,7.02198711095737e-21,4.423522493163135e-36,2.117582368135751e-22,3.731405352565655e-36,-8.470329472543003e-22,3.4687534480326576e-06,9.0,11.0,15.0,0.024352295324206352,-0.00394398532807827,-0.0033236208837479353,-0.0025297089014202356,0.0001836547307902947,0.00020202020823489875,0.00015151515253819525,0.00012950012751389295,0.00012626263196580112,7.427213131450117e-05,-0.00394398532807827,0.0018780336249619722,0.00020202020823489875,0.00015151515253819525,-0.00015741834067739546,-5.0505052058724687e-05,-3.787878813454881e-05,-5.489553762170051e-20,-1.8634724839594607e-20,-4.573977915173222e-20,-0.0033236208837479353,0.00020202020823489875,0.0012690580915659666,0.00012626263196580112,-1.8142512308564635e-19,-4.0404040191788226e-05,8.470329472543003e-21,-8.63334207679145e-05,-2.5252526029362343e-05,1.5246593050577406e-20,-0.0025297089014202356,0.00015151515253819525,0.00012626263196580112,0.0006927549839019775,-1.0211360485033863e-19,8.410780546374855e-21,-2.1645020751748234e-05,-5.905066598791361e-35,-1.803751729312353e-05,-3.4279444662388414e-05,0.0001836547307902947,-0.00015741834067739546,-1.8142512308564635e-19,-1.0211360485033863e-19,1.9677292584674433e-05,1.156938587127993e-20,-1.5871487560125174e-36,1.0456292380261222e-20,4.3692366579582826e-21,5.7333875428225036e-21,0.00020202020823489875,-5.0505052058724687e-05,-4.0404040191788226e-05,8.410780546374855e-21,1.156938587127993e-20,1.0101010047947057e-05,5.172175143618065e-37,-5.750961091871421e-21,-1.6821560890801318e-21,4.2787994369931265e-36,0.00015151515253819525,-3.787878813454881e-05,8.470329472543003e-21,-2.1645020751748234e-05,-1.5871487560125174e-36,5.172175143618065e-37,5.4112551879370585e-06,-0.0,-1.164670302474663e-21,2.117582368135751e-22,0.00012950012751389295,-5.489553762170051e-20,-8.63334207679145e-05,-5.905066598791361e-35,1.0456292380261222e-20,-5.750961091871421e-21,-0.0,8.63334207679145e-06,3.2794907680851314e-36,3.046658010534854e-36,0.00012626263196580112,-1.8634724839594607e-20,-2.5252526029362343e-05,-1.803751729312353e-05,4.3692366579582826e-21,-1.6821560890801318e-21,-1.164670302474663e-21,3.2794907680851314e-36,3.607503685998381e-06,-2.117582368135751e-21,7.427213131450117e-05,-4.573977915173222e-20,1.5246593050577406e-20,-3.4279444662388414e-05,5.7333875428225036e-21,4.2787994369931265e-36,2.117582368135751e-22,3.046658010534854e-36,-2.117582368135751e-21,2.4485318590450333e-06,9.0,11.0,16.0,0.022966597229242325,-0.0037058419547975063,-0.003122857538983226,-0.002243018476292491,0.000172176311025396,0.00018939393339678645,0.0001336898421868682,0.00012140637409174815,0.00011140819697175175,6.18934427620843e-05,-0.0037058419547975063,0.0017627454362809658,0.00018939393339678645,0.0001336898421868682,-0.00014757968892809004,-4.734848334919661e-05,-3.342246054671705e-05,-7.842219567923665e-20,5.336307567702092e-20,1.2197274440461925e-19,-0.003122857538983226,0.00018939393339678645,0.0011911345645785332,0.00011140819697175175,-1.0207687932361098e-19,-3.787878813454881e-05,1.2705494208814505e-20,-8.093757787719369e-05,-2.228163975814823e-05,1.6178329292557136e-19,-0.002243018476292491,0.0001336898421868682,0.00011140819697175175,0.0005731686833314598,2.467664073425916e-19,1.52722808860063e-19,-1.7825312170316465e-05,2.0001503800049532e-19,-1.4854426808597054e-05,-2.6525762223172933e-05,0.000172176311025396,-0.00014757968892809004,-1.0207687932361098e-19,2.467664073425916e-19,1.8447461116011254e-05,1.0168405254317926e-20,-1.0486167817541165e-20,9.802774459904581e-21,-4.88326438127785e-21,-1.0861897647128472e-20,0.00018939393339678645,-4.734848334919661e-05,-3.787878813454881e-05,1.52722808860063e-19,1.0168405254317926e-20,9.469697033637203e-06,-4.749617359007283e-21,5.869809229900755e-35,-3.958014398523272e-21,-7.067882710256991e-21,0.0001336898421868682,-3.342246054671705e-05,1.2705494208814505e-20,-1.7825312170316465e-05,-1.0486167817541165e-20,-4.749617359007283e-21,4.456328042579116e-06,-6.018531076210112e-36,7.940933880509066e-22,0.0,0.00012140637409174815,-7.842219567923665e-20,-8.093757787719369e-05,2.0001503800049532e-19,9.802774459904581e-21,5.869809229900755e-35,-6.018531076210112e-36,8.09375796961831e-06,-5.920107006338227e-21,-1.0571619452227014e-20,0.00011140819697175175,5.336307567702092e-20,-2.228163975814823e-05,-1.4854426808597054e-05,-4.88326438127785e-21,-3.958014398523272e-21,7.940933880509066e-22,-5.920107006338227e-21,2.970885361719411e-06,-3.705769144237564e-21,6.18934427620843e-05,1.2197274440461925e-19,1.6178329292557136e-19,-2.6525762223172933e-05,-1.0861897647128472e-20,-7.067882710256991e-21,0.0,-1.0571619452227014e-20,-3.705769144237564e-21,1.7683840951576713e-06,9.0,12.0,3.0,0.08335152268409729,-0.016064491122961044,-0.012576312758028507,-0.036752138286828995,0.0008417508215643466,0.0008547008619643748,0.0027777778450399637,0.000508750497829169,0.0021367522422224283,0.004629629664123058,-0.016064491122961044,0.008104627020657063,0.0008547008619643748,0.0027777778450399637,-0.0007215007208287716,-0.0002136752154910937,-0.0006944444612599909,6.505213034913027e-19,1.200049541056592e-18,1.2816427400763992e-17,-0.012576312758028507,0.0008547008619643748,0.0046268547885119915,0.0021367522422224283,1.2426414843872536e-18,-0.0001554001501062885,-3.139377334377729e-33,-0.0003052503161597997,-0.0003885003970935941,6.00478489434039e-18,-0.036752138286828995,0.0027777778450399637,0.0021367522422224283,0.08304843306541443,4.928847496945209e-18,1.6994719721760322e-20,-0.0027777778450399637,1.3902079207272995e-18,-0.0021367522422224283,-0.02777777798473835,0.0008417508215643466,-0.0007215007208287716,1.2426414843872536e-18,4.928847496945209e-18,9.018759010359645e-05,-5.0986876582840174e-20,-2.278475976613733e-19,-8.098292067350208e-20,-1.4788185064737004e-19,-1.602053425095499e-18,0.0008547008619643748,-0.0002136752154910937,-0.0001554001501062885,1.6994719721760322e-20,-5.0986876582840174e-20,3.885003752657212e-05,1.2881192222174142e-34,-1.8953319026295018e-21,-3.089949132114782e-21,9.415657403853713e-34,0.0027777778450399637,-0.0006944444612599909,-3.139377334377729e-33,-0.0027777778450399637,-2.278475976613733e-19,1.2881192222174142e-34,0.0006944444612599909,2.0459316168056234e-34,3.7360488996345137e-34,4.047386476302466e-33,0.000508750497829169,6.505213034913027e-19,-0.0003052503161597997,1.3902079207272995e-18,-8.098292067350208e-20,-1.8953319026295018e-21,2.0459316168056234e-34,2.775002758426126e-05,-7.351433923450347e-20,-4.929395193908295e-19,0.0021367522422224283,1.200049541056592e-18,-0.0003885003970935941,-0.0021367522422224283,-1.4788185064737004e-19,-3.089949132114782e-21,3.7360488996345137e-34,-7.351433923450347e-20,0.0003885003970935941,-5.824502844388412e-19,0.004629629664123058,1.2816427400763992e-17,6.00478489434039e-18,-0.02777777798473835,-1.602053425095499e-18,9.415657403853713e-34,4.047386476302466e-33,-4.929395193908295e-19,-5.824502844388412e-19,0.013888888992369175,9.0,12.0,4.0,0.06779498606920242,-0.012465034611523151,-0.009752747602760792,-0.023440171033143997,0.0006313131307251751,0.0006410256610251963,0.0016666667070239782,0.000381562887923792,0.0012820513220503926,0.002314814832061529,-0.012465034611523151,0.006182636599987745,0.0006410256610251963,0.0016666667070239782,-0.0005411255406215787,-0.00016025641525629908,-0.00041666667675599456,4.811147140404426e-19,7.104218460432716e-19,4.485749590267397e-18,-0.009752747602760792,0.0006410256610251963,0.003528415923938155,0.0012820513220503926,1.0306436753887679e-18,-0.00011655011621769518,-2.083033295006696e-33,-0.00022893772984389216,-0.00023310023243539035,2.142446176578176e-18,-0.023440171033143997,0.0016666667070239782,0.0012820513220503926,0.03183048591017723,2.7170004533835275e-18,5.889259389500465e-22,-0.0011111111380159855,7.576484306472796e-19,-0.0008547008619643748,-0.0069444444961845875,0.0006313131307251751,-0.0005411255406215787,1.0306436753887679e-18,2.7170004533835275e-18,6.764069257769734e-05,-5.736023211672736e-20,-1.3670855342694516e-19,-6.073719050512656e-20,-8.872911168089173e-20,-5.607186987834246e-19,0.0006410256610251963,-0.00016025641525629908,-0.00011655011621769518,5.889259389500465e-22,-5.736023211672736e-20,2.9137529054423794e-05,1.1593073114751098e-34,-1.7395485093471213e-21,-1.0707744229802895e-22,4.7078287019268564e-34,0.0016666667070239782,-0.00041666667675599456,-2.083033295006696e-33,-0.0011111111380159855,-1.3670855342694516e-19,1.1593073114751098e-34,0.00027777778450399637,1.227558993042248e-34,1.793303531517639e-34,1.1332682060178508e-33,0.000381562887923792,4.811147140404426e-19,-0.00022893772984389216,7.576484306472796e-19,-6.073719050512656e-20,-1.7395485093471213e-21,1.227558993042248e-34,2.0812520233448595e-05,-4.364762289390967e-20,-1.7252883437172976e-19,0.0012820513220503926,7.104218460432716e-19,-0.00023310023243539035,-0.0008547008619643748,-8.872911168089173e-20,-1.0707744229802895e-22,1.793303531517639e-34,-4.364762289390967e-20,0.0001554001501062885,-1.6308607654094824e-19,0.002314814832061529,4.485749590267397e-18,2.142446176578176e-18,-0.0069444444961845875,-5.607186987834246e-19,4.7078287019268564e-34,1.1332682060178508e-33,-1.7252883437172976e-19,-1.6308607654094824e-19,0.002314814832061529,9.0,12.0,5.0,0.057229068130254745,-0.010194250382483006,-0.007973138242959976,-0.01628815568983555,0.0005050505278632045,0.0005128204938955605,0.0011111111380159855,0.0003052503161597997,0.0008547008619643748,0.0013227512827143073,-0.010194250382483006,0.0050016650930047035,0.0005128204938955605,0.0011111111380159855,-0.00043290044413879514,-0.00012820512347389013,-0.00027777778450399637,-1.9989977555201488e-19,-2.473336205982557e-19,-1.0985509643787321e-18,-0.007973138242959976,0.0005128204938955605,0.0028538128826767206,0.0008547008619643748,-3.2639637072668664e-19,-9.324009442934766e-05,-3.2983974295552504e-34,-0.00018315018678549677,-0.0001554001501062885,-1.751445345649873e-18,-0.01628815568983555,0.0011111111380159855,0.0008547008619643748,0.01608058623969555,-9.306792085544642e-19,-4.64782527215246e-21,-0.0005555555690079927,-8.673617379884035e-19,-0.0004273504309821874,-0.0026455025654286146,0.0005050505278632045,-0.00043290044413879514,-3.2639637072668664e-19,-9.306792085544642e-19,5.411255551734939e-05,3.009265538105056e-36,5.468342395571748e-20,2.4294876202050624e-20,2.9576369483239154e-20,1.3731887054734151e-19,0.0005128204938955605,-0.00012820512347389013,-9.324009442934766e-05,-4.64782527215246e-21,3.009265538105056e-36,2.3310023607336916e-05,0.0,1.6940658945086007e-21,1.6940658945086007e-21,1.2228127337106552e-35,0.0011111111380159855,-0.00027777778450399637,-3.2983974295552504e-34,-0.0005555555690079927,5.468342395571748e-20,0.0,0.00013888889225199819,2.455117813892941e-35,2.9888393148580403e-35,1.3876753285374077e-34,0.0003052503161597997,-1.9989977555201488e-19,-0.00018315018678549677,-8.673617379884035e-19,2.4294876202050624e-20,1.6940658945086007e-21,2.455117813892941e-35,1.6650015822960995e-05,3.5575383784680614e-20,1.6900783669682122e-19,0.0008547008619643748,-2.473336205982557e-19,-0.0001554001501062885,-0.0004273504309821874,2.9576369483239154e-20,1.6940658945086007e-21,2.9888393148580403e-35,3.5575383784680614e-20,7.770007505314425e-05,-5.382038377114057e-20,0.0013227512827143073,-1.0985509643787321e-18,-1.751445345649873e-18,-0.0026455025654286146,1.3731887054734151e-19,1.2228127337106552e-35,1.3876753285374077e-34,1.6900783669682122e-19,-5.382038377114057e-20,0.0006613756413571537,9.0,12.0,6.0,0.04955121874809265,-0.008627483621239662,-0.0067460318095982075,-0.011988705955445766,0.0004208754107821733,0.0004273504309821874,0.0007936508045531809,0.0002543752489145845,0.0006105006323195994,0.0008267195662483573,-0.008627483621239662,0.004201123025268316,0.0004273504309821874,0.0007936508045531809,-0.0003607503604143858,-0.00010683760774554685,-0.00019841270113829523,3.282252670610414e-19,3.4220131069073734e-19,1.258756306888282e-18,-0.0067460318095982075,0.0004273504309821874,0.0023966773878782988,0.0006105006323195994,6.530097212678036e-19,-7.770007505314425e-05,-7.541699921807169e-34,-0.00015262515807989985,-0.00011100011033704504,6.14272077700121e-19,-0.011988705955445766,0.0007936508045531809,0.0006105006323195994,0.009342440403997898,1.2274262208023767e-18,1.0243450362159844e-22,-0.0003174603043589741,3.3203691532368573e-19,-0.00024420025874860585,-0.0012400794075801969,0.0004208754107821733,-0.0003607503604143858,6.530097212678036e-19,1.2274262208023767e-18,4.5093795051798224e-05,-2.5493438291420087e-20,-5.2079449693877744e-20,-4.049146033675104e-20,-4.2251959174205306e-20,-1.5734453836103525e-19,0.0004273504309821874,-0.00010683760774554685,-7.770007505314425e-05,1.0243450362159844e-22,-2.5493438291420087e-20,1.942501876328606e-05,2.944272696516269e-35,0.0,-0.0,9.323946574381756e-35,0.0007936508045531809,-0.00019841270113829523,-7.541699921807169e-34,-0.0003174603043589741,-5.2079449693877744e-20,2.944272696516269e-35,7.936507608974352e-05,4.676414992933573e-35,4.879737633483664e-35,1.8171938470769193e-34,0.0002543752489145845,3.282252670610414e-19,-0.00015262515807989985,3.3203691532368573e-19,-4.049146033675104e-20,0.0,4.676414992933573e-35,1.387501379213063e-05,-1.6940658945086007e-20,-4.841370187412097e-20,0.0006105006323195994,3.4220131069073734e-19,-0.00011100011033704504,-0.00024420025874860585,-4.2251959174205306e-20,-0.0,4.879737633483664e-35,-1.6940658945086007e-20,4.4400043407222256e-05,-3.268853637156762e-20,0.0008267195662483573,1.258756306888282e-18,6.14272077700121e-19,-0.0012400794075801969,-1.5734453836103525e-19,9.323946574381756e-35,1.8171938470769193e-34,-4.841370187412097e-20,-3.268853637156762e-20,0.00024801588733680546,9.0,12.0,7.0,0.043707769364118576,-0.007480020169168711,-0.005847723688930273,-0.009198209270834923,0.0003607503604143858,0.00036630037357099354,0.0005952381179668009,0.00021803592971991748,0.0004578754596877843,0.0005511463969014585,-0.007480020169168711,0.0036222210619598627,0.00036630037357099354,0.0005952381179668009,-0.0003092146071139723,-9.157509339274839e-05,-0.00014880952949170023,2.7740329022578336e-19,2.490276864927643e-19,7.933978842521143e-19,-0.005847723688930273,0.00036630037357099354,0.0020661877933889627,0.0004578754596877843,5.517630210864661e-19,-6.660006329184398e-05,-3.982742460366398e-34,-0.00013082155783195049,-8.325008093379438e-05,3.897530031248728e-19,-0.009198209270834923,0.0005952381179668009,0.0004578754596877843,0.005932030733674765,8.809365990210113e-19,-4.243062937872319e-21,-0.00019841270113829523,2.846030702774449e-19,-0.00015262515807989985,-0.0006613756413571537,0.0003607503604143858,-0.0003092146071139723,5.517630210864661e-19,8.809365990210113e-19,3.865182588924654e-05,-1.872987322825808e-20,-2.7899706693336844e-20,-3.470696692612211e-20,-3.168896938065398e-20,-9.917473553151429e-20,0.00036630037357099354,-9.157509339274839e-05,-6.660006329184398e-05,-4.243062937872319e-21,-1.872987322825808e-20,1.6650015822960995e-05,1.3519618529154147e-35,8.470329472543003e-22,8.470329472543003e-22,4.789349694333863e-35,0.0005952381179668009,-0.00014880952949170023,-3.982742460366398e-34,-0.00019841270113829523,-2.7899706693336844e-20,1.3519618529154147e-35,4.960317528457381e-05,2.5052223996389643e-35,2.2873769798222267e-35,7.158642358306428e-35,0.00021803592971991748,2.7740329022578336e-19,-0.00013082155783195049,2.846030702774449e-19,-3.470696692612211e-20,8.470329472543003e-22,2.5052223996389643e-35,1.1892869224539027e-05,-1.8634724839594607e-20,-3.05153034890178e-20,0.0004578754596877843,2.490276864927643e-19,-8.325008093379438e-05,-0.00015262515807989985,-3.168896938065398e-20,8.470329472543003e-22,2.2873769798222267e-35,-1.8634724839594607e-20,2.775002758426126e-05,-1.8028222120421376e-20,0.0005511463969014585,7.933978842521143e-19,3.897530031248728e-19,-0.0006613756413571537,-9.917473553151429e-20,4.789349694333863e-35,7.158642358306428e-35,-3.05153034890178e-20,-1.8028222120421376e-20,0.00011022927355952561,9.0,12.0,8.0,0.03910641744732857,-0.006602887995541096,-0.005161273758858442,-0.007282763719558716,0.00031565656536258757,0.00032051283051259816,0.00046296295477077365,0.000190781443961896,0.0003561253543011844,0.00038580247201025486,-0.006602887995541096,0.0031839110888540745,0.00032051283051259816,0.00046296295477077365,-0.00027056277031078935,-8.012820762814954e-05,-0.00011574073869269341,2.3674570875757694e-19,1.9820570965750628e-19,5.340178255980957e-19,-0.005161273758858442,0.00032051283051259816,0.0018160081235691905,0.0003561253543011844,5.35039445353387e-19,-5.827505810884759e-05,-5.149370553212113e-34,-0.00011446886492194608,-6.475006375694647e-05,2.6368201822475374e-19,-0.007282763719558716,0.00046296295477077365,0.0003561253543011844,0.004009801894426346,7.3302259172732825e-19,-4.656894067605979e-22,-0.00013227513409219682,1.9312351197398048e-19,-0.0001017501053865999,-0.00038580247201025486,0.00031565656536258757,-0.00027056277031078935,5.35039445353387e-19,7.3302259172732825e-19,3.382034628884867e-05,-2.868011605836368e-20,-3.254965727036394e-20,-3.036859525256328e-20,-2.464697564642405e-20,-6.675222819976197e-20,0.00032051283051259816,-8.012820762814954e-05,-5.827505810884759e-05,-4.656894067605979e-22,-2.868011605836368e-20,1.4568764527211897e-05,2.7602555991741413e-35,4.235164736271502e-22,-4.235164736271502e-22,5.689475309926414e-35,0.00046296295477077365,-0.00011574073869269341,-5.149370553212113e-34,-0.00013227513409219682,-3.254965727036394e-20,2.7602555991741413e-35,3.3068783523049206e-05,2.922759370583483e-35,2.3720946510561226e-35,6.424422732269947e-35,0.000190781443961896,2.3674570875757694e-19,-0.00011446886492194608,1.9312351197398048e-19,-3.036859525256328e-20,4.235164736271502e-22,2.922759370583483e-35,1.0406260116724297e-05,-9.317362419797304e-21,-2.0539146641284564e-20,0.0003561253543011844,1.9820570965750628e-19,-6.475006375694647e-05,-0.0001017501053865999,-2.464697564642405e-20,-4.235164736271502e-22,2.3720946510561226e-35,-9.317362419797304e-21,1.850001899583731e-05,-1.0786116109232537e-20,0.00038580247201025486,5.340178255980957e-19,2.6368201822475374e-19,-0.00038580247201025486,-6.675222819976197e-20,5.689475309926414e-35,6.424422732269947e-35,-2.0539146641284564e-20,-1.0786116109232537e-20,5.5114636779762805e-05,9.0,12.0,9.0,0.035386793315410614,-0.005910385865718126,-0.004619454499334097,-0.005910385865718126,0.00028058362659066916,0.00028490027762018144,0.000370370369637385,0.0001695835089776665,0.00028490027762018144,0.00028058362659066916,-0.005910385865718126,0.002840431174263358,0.00028490027762018144,0.000370370369637385,-0.0002405002451268956,-7.122506940504536e-05,-9.259259240934625e-05,3.731180132655193e-19,9.317362419797304e-20,-4.252510196728856e-19,-0.004619454499334097,0.00028490027762018144,0.0016199849778786302,0.00028490027762018144,7.650911950038786e-19,-5.18000524607487e-05,-6.979536751220774e-20,-0.0001017501053865999,-5.18000524607487e-05,-8.884035584105275e-19,-0.005910385865718126,0.000370370369637385,0.00028490027762018144,0.002840431174263358,-1.5627645431977322e-19,-5.121032779309401e-19,-9.259259240934625e-05,-5.861467994999758e-19,-7.122506940504536e-05,-0.0002405002451268956,0.00028058362659066916,-0.0002405002451268956,7.650911950038786e-19,-1.5627645431977322e-19,3.006253064086195e-05,-3.0472626139288895e-20,2.0253119863925945e-20,-4.635978656375766e-20,-2.0613833618897287e-20,2.358000636028441e-20,0.00028490027762018144,-7.122506940504536e-05,-5.18000524607487e-05,-5.121032779309401e-19,-3.0472626139288895e-20,1.2950013115187176e-05,1.7448841878051934e-20,4.235164736271502e-22,1.3129010682441655e-20,4.302017731871979e-20,0.000370370369637385,-9.259259240934625e-05,-6.979536751220774e-20,-9.259259240934625e-05,2.0253119863925945e-20,1.7448841878051934e-20,2.3148148102336563e-05,-3.009265538105056e-35,3.76158192263132e-36,7.385121319212756e-35,0.0001695835089776665,3.731180132655193e-19,-0.0001017501053865999,-5.861467994999758e-19,-4.635978656375766e-20,4.235164736271502e-22,-3.009265538105056e-35,9.250009497918654e-06,1.8634724839594607e-20,5.366852181172893e-20,0.00028490027762018144,9.317362419797304e-20,-5.18000524607487e-05,-7.122506940504536e-05,-2.0613833618897287e-20,1.3129010682441655e-20,3.76158192263132e-36,1.8634724839594607e-20,1.2950013115187176e-05,2.626412989983656e-20,0.00028058362659066916,-4.252510196728856e-19,-8.884035584105275e-19,-0.0002405002451268956,2.358000636028441e-20,4.302017731871979e-20,7.385121319212756e-35,5.366852181172893e-20,2.626412989983656e-20,3.006253064086195e-05,9.0,12.0,10.0,0.032316386699676514,-0.005349650513380766,-0.004180819261819124,-0.004893162287771702,0.00025252526393160224,0.00025641024694778025,0.0003030303050763905,0.00015262515807989985,0.00023310023243539035,0.00021043770539108664,-0.005349650513380766,0.0025639638770371675,0.00025641024694778025,0.0003030303050763905,-0.00021645022206939757,-6.410256173694506e-05,-7.575757626909763e-05,-9.825582188149884e-20,-6.691560283308973e-20,-1.4230153513872246e-19,-0.004180819261819124,0.00025641024694778025,0.0014622246380895376,0.00023310023243539035,-1.699200876654965e-19,-4.662004721467383e-05,1.6940658945086007e-21,-9.157509339274839e-05,-4.23818601120729e-05,-2.337810934421869e-19,-0.004893162287771702,0.0003030303050763905,0.00023310023243539035,0.0020869486033916473,-2.530449666858105e-19,-9.078979710913962e-22,-6.73400645609945e-05,-2.3484016896959033e-19,-5.18000524607487e-05,-0.00015782828268129379,0.00025252526393160224,-0.00021645022206939757,-1.699200876654965e-19,-2.530449666858105e-19,2.7056277758674696e-05,8.62400060122977e-37,1.3256587943850188e-20,1.2147438101025312e-20,8.06628324725996e-21,1.729489419565044e-20,0.00025641024694778025,-6.410256173694506e-05,-4.662004721467383e-05,-9.078979710913962e-22,8.62400060122977e-37,1.1655011803668458e-05,2.929536261278458e-23,4.235164736271502e-22,2.3429312773293163e-22,-4.4522375479362125e-23,0.0003030303050763905,-7.575757626909763e-05,1.6940658945086007e-21,-6.73400645609945e-05,1.3256587943850188e-20,2.929536261278458e-23,1.6835016140248626e-05,1.0587911840678754e-22,0.0,-8.470329472543003e-22,0.00015262515807989985,-9.825582188149884e-20,-9.157509339274839e-05,-2.3484016896959033e-19,1.2147438101025312e-20,4.235164736271502e-22,1.0587911840678754e-22,8.325007911480498e-06,8.046812998915853e-21,2.1387581918171084e-20,0.00023310023243539035,-6.691560283308973e-20,-4.23818601120729e-05,-5.18000524607487e-05,8.06628324725996e-21,2.3429312773293163e-22,0.0,8.046812998915853e-21,9.4181914391811e-06,8.470329472543003e-22,0.00021043770539108664,-1.4230153513872246e-19,-2.337810934421869e-19,-0.00015782828268129379,1.729489419565044e-20,-4.4522375479362125e-23,-8.470329472543003e-22,2.1387581918171084e-20,8.470329472543003e-22,1.7536476661916822e-05,9.0,12.0,11.0,0.02973819151520729,-0.00488627515733242,-0.0038184039294719696,-0.004118103999644518,0.00022956840984988958,0.00023310023243539035,0.00025252526393160224,0.0001387501397402957,0.00019425019854679704,0.00016187515575438738,-0.00488627515733242,0.002336615463718772,0.00023310023243539035,0.00025252526393160224,-0.00019677291857078671,-5.827505810884759e-05,-6.313131598290056e-05,1.7872395187065737e-19,1.1943164556285635e-19,2.1006417091906648e-19,-0.0038184039294719696,0.00023310023243539035,0.001332505838945508,0.00019425019854679704,3.708463943576897e-19,-4.23818601120729e-05,1.1858461261560205e-20,-8.325008093379438e-05,-3.5318218579050153e-05,1.3213713977167085e-19,-0.004118103999644518,0.00025252526393160224,0.00019425019854679704,0.0015790382167324424,4.0765691389327683e-19,1.5245788892081511e-21,-5.0505052058724687e-05,1.1666207685096689e-19,-3.885003752657212e-05,-0.00010791677777888253,0.00022956840984988958,-0.00019677291857078671,3.708463943576897e-19,4.0765691389327683e-19,2.459661482134834e-05,-1.5169649097738636e-20,-1.807716471705552e-20,-2.2086250652158622e-20,-1.3443804604306367e-20,-2.614073135454984e-20,0.00023310023243539035,-5.827505810884759e-05,-4.23818601120729e-05,1.5245788892081511e-21,-1.5169649097738636e-20,1.0595465028018225e-05,4.1763755715075024e-24,4.235164736271502e-22,-2.4926838353021694e-22,-1.197427114164354e-22,0.00025252526393160224,-6.313131598290056e-05,1.1858461261560205e-20,-5.0505052058724687e-05,-1.807716471705552e-20,4.1763755715075024e-24,1.2626263014681172e-05,-5.293955920339377e-23,-2.117582368135751e-21,4.235164736271502e-22,0.0001387501397402957,1.7872395187065737e-19,-8.325008093379438e-05,1.1666207685096689e-19,-2.2086250652158622e-20,4.235164736271502e-22,-5.293955920339377e-23,7.568189175799489e-06,-6.3527471044072525e-21,-8.364450354136216e-21,0.00019425019854679704,1.1943164556285635e-19,-3.5318218579050153e-05,-3.885003752657212e-05,-1.3443804604306367e-20,-2.4926838353021694e-22,-2.117582368135751e-21,-6.3527471044072525e-21,7.06364335201215e-06,-8.046812998915853e-21,0.00016187515575438738,2.1006417091906648e-19,1.3213713977167085e-19,-0.00010791677777888253,-2.614073135454984e-20,-1.197427114164354e-22,4.235164736271502e-22,-8.364450354136216e-21,-8.046812998915853e-21,1.0791677595989313e-05,9.0,12.0,12.0,0.0275422353297472,-0.004496891982853413,-0.003513900563120842,-0.003513900563120842,0.00021043770539108664,0.0002136752154910937,0.0002136752154910937,0.00012718762445729226,0.00016436555597465485,0.00012718762445729226,-0.004496891982853413,0.0021463490556925535,0.0002136752154910937,0.0002136752154910937,-0.0001803751802071929,-5.3418803872773424e-05,-5.3418803872773424e-05,1.5924219408380846e-19,9.740878893424454e-20,1.6263032587282567e-19,-0.003513900563120842,0.0002136752154910937,0.001223954139277339,0.00016436555597465485,3.362553038031589e-19,-3.885003752657212e-05,5.082197683525802e-21,-7.631257903994992e-05,-2.9884644391131587e-05,6.945670167485263e-20,-0.003513900563120842,0.0002136752154910937,0.00016436555597465485,0.001223954139277339,3.362553038031589e-19,1.5650419757958632e-21,-3.885003752657212e-05,9.203374346448082e-20,-2.9884644391131587e-05,-7.631257903994992e-05,0.00021043770539108664,-0.0001803751802071929,3.362553038031589e-19,3.362553038031589e-19,2.2546897525899112e-05,-1.2746719145710043e-20,-1.2746719145710043e-20,-2.024573016837552e-20,-1.1375527532116318e-20,-2.024573016837552e-20,0.0002136752154910937,-5.3418803872773424e-05,-3.885003752657212e-05,1.5650419757958632e-21,-1.2746719145710043e-20,9.71250938164303e-06,2.973268816597738e-23,0.0,-3.5585015612250295e-22,-4.4422830699454096e-23,0.0002136752154910937,-5.3418803872773424e-05,5.082197683525802e-21,-3.885003752657212e-05,-1.2746719145710043e-20,2.973268816597738e-23,9.71250938164303e-06,5.293955920339377e-23,-8.470329472543003e-22,-4.235164736271502e-22,0.00012718762445729226,1.5924219408380846e-19,-7.631257903994992e-05,9.203374346448082e-20,-2.024573016837552e-20,0.0,5.293955920339377e-23,6.937506896065315e-06,-4.446922973085077e-21,-6.246867986000465e-21,0.00016436555597465485,9.740878893424454e-20,-2.9884644391131587e-05,-2.9884644391131587e-05,-1.1375527532116318e-20,-3.5585015612250295e-22,-8.470329472543003e-22,-4.446922973085077e-21,5.433571914181812e-06,2.117582368135751e-22,0.00012718762445729226,1.6263032587282567e-19,6.945670167485263e-20,-7.631257903994992e-05,-2.024573016837552e-20,-4.4422830699454096e-23,-4.235164736271502e-22,-6.246867986000465e-21,2.117582368135751e-22,6.937506896065315e-06,9.0,12.0,13.0,0.025649137794971466,-0.004165065474808216,-0.003254437819123268,-0.003033718327060342,0.00019425019854679704,0.0001972386526176706,0.00018315018678549677,0.00011740396439563483,0.00014088476018514484,0.0001017501053865999,-0.004165065474808216,0.001984767382964492,0.0001972386526176706,0.00018315018678549677,-0.00016650016186758876,-4.930966315441765e-05,-4.578754669637419e-05,-7.284483346386983e-20,-3.6422416731934915e-20,-6.268043809681823e-20,-0.003254437819123268,0.0001972386526176706,0.0011317741591483355,0.00014088476018514484,-1.754818045350587e-19,-3.586157254176214e-05,3.3881317890172014e-21,-7.044238009257242e-05,-2.5615410777390935e-05,-9.147955830346444e-20,-0.003033718327060342,0.00018315018678549677,0.00014088476018514484,0.0009681201772764325,-1.5982041918137717e-19,2.7834034389008655e-22,-3.052503234357573e-05,-1.5112344222099464e-19,-2.3480792151531205e-05,-5.550005516852252e-05,0.00019425019854679704,-0.00016650016186758876,-1.754818045350587e-19,-1.5982041918137717e-19,2.0812520233448595e-05,1.0861109240607132e-20,9.244872640686675e-21,9.344182781807055e-21,4.875226027493167e-21,8.002264799285898e-21,0.0001972386526176706,-4.930966315441765e-05,-3.586157254176214e-05,2.7834034389008655e-22,1.0861109240607132e-20,8.965393135440536e-06,-8.77612805768169e-24,-4.235164736271502e-22,-6.750868100767872e-24,-8.454320928866736e-24,0.00018315018678549677,-4.578754669637419e-05,3.3881317890172014e-21,-3.052503234357573e-05,9.244872640686675e-21,-8.77612805768169e-24,7.631258085893933e-06,0.0,-4.235164736271502e-22,-4.235164736271502e-22,0.00011740396439563483,-7.284483346386983e-20,-7.044238009257242e-05,-1.5112344222099464e-19,9.344182781807055e-21,-4.235164736271502e-22,0.0,6.403852694347734e-06,5.929230630780102e-21,9.846758011831241e-21,0.00014088476018514484,-3.6422416731934915e-20,-2.5615410777390935e-05,-2.3480792151531205e-05,4.875226027493167e-21,-6.750868100767872e-24,-4.235164736271502e-22,5.929230630780102e-21,4.2692349779827055e-06,-2.541098841762901e-21,0.0001017501053865999,-6.268043809681823e-20,-9.147955830346444e-20,-5.550005516852252e-05,8.002264799285898e-21,-8.454320928866736e-24,-4.235164736271502e-22,9.846758011831241e-21,-2.541098841762901e-21,4.625004748959327e-06,9.0,12.0,14.0,0.024000134319067,-0.0038788989186286926,-0.0030306994449347258,-0.0026457570493221283,0.0001803751802071929,0.00018315018678549677,0.00015873015217948705,0.00010901796485995874,0.00012210012937430292,8.26719551696442e-05,-0.0038788989186286926,0.0018458326812833548,0.00018315018678549677,0.00015873015217948705,-0.00015460730355698615,-4.578754669637419e-05,-3.968253804487176e-05,1.41030985717841e-19,7.199780051661553e-20,1.0164395367051604e-19,-0.0030306994449347258,0.00018315018678549677,0.0010525189572945237,0.00012210012937430292,2.8327560049066216e-19,-3.330003164592199e-05,4.235164736271502e-21,-6.541077891597524e-05,-2.2200021703611128e-05,6.013933925505532e-20,-0.0026457570493221283,0.00015873015217948705,0.00012210012937430292,0.000779063324443996,2.6877548624412558e-19,1.3077404134085017e-22,-2.44200236920733e-05,7.655650273232037e-20,-1.8784634448820725e-05,-4.13359775848221e-05,0.0001803751802071929,-0.00015460730355698615,2.8327560049066216e-19,2.6877548624412558e-19,1.932591294462327e-05,-9.36493661412904e-21,-1.373524036738926e-20,-1.7353483463061056e-20,-8.450391511723634e-21,-1.2873643709916483e-20,0.00018315018678549677,-4.578754669637419e-05,-3.330003164592199e-05,1.3077404134085017e-22,-9.36493661412904e-21,8.325007911480498e-06,2.2370620102175132e-23,0.0,-3.1532001004695987e-24,6.581849524228386e-24,0.00015873015217948705,-3.968253804487176e-05,4.235164736271502e-21,-2.44200236920733e-05,-1.373524036738926e-20,2.2370620102175132e-23,6.105005923018325e-06,0.0,-6.352747104407253e-22,0.0,0.00010901796485995874,1.41030985717841e-19,-6.541077891597524e-05,7.655650273232037e-20,-1.7353483463061056e-20,0.0,0.0,5.946434612269513e-06,-4.446922973085077e-21,-4.0234064994579266e-21,0.00012210012937430292,7.199780051661553e-20,-2.2200021703611128e-05,-1.8784634448820725e-05,-8.450391511723634e-21,-3.1532001004695987e-24,-6.352747104407253e-22,-4.446922973085077e-21,3.4153879369114293e-06,-2.541098841762901e-21,8.26719551696442e-05,1.0164395367051604e-19,6.013933925505532e-20,-4.13359775848221e-05,-1.2873643709916483e-20,6.581849524228386e-24,0.0,-4.0234064994579266e-21,-2.541098841762901e-21,3.179690793331247e-06,9.0,12.0,15.0,0.02255077287554741,-0.0036295647732913494,-0.0028357752598822117,-0.002327802823856473,0.00016835016140248626,0.0001709401694824919,0.00013888889225199819,0.0001017501053865999,0.00010683760774554685,6.808278703829274e-05,-0.0036295647732913494,0.001725092064589262,0.0001709401694824919,0.00013888889225199819,-0.00014430013834498823,-4.273504237062298e-05,-3.4722223062999547e-05,-6.352747104407253e-20,-2.371692252312041e-20,-4.2351647362715017e-20,-0.0028357752598822117,0.0001709401694824919,0.0009836460230872035,0.00010683760774554685,-1.475921435625204e-19,-3.108003147644922e-05,5.505714157152952e-21,-6.105006468715146e-05,-1.942501876328606e-05,5.166900978251232e-20,-0.002327802823856473,0.00013888889225199819,0.00010683760774554685,0.0006362972781062126,-9.3912225399149e-20,3.047442378289794e-22,-1.984126902243588e-05,6.757527937160077e-20,-1.5262516171787865e-05,-3.142282730550505e-05,0.00016835016140248626,-0.00014430013834498823,-1.475921435625204e-19,-9.3912225399149e-20,1.803751729312353e-05,8.157899962448744e-21,-9.572190440257806e-37,8.098292067350208e-21,3.697046185404894e-21,5.255605112955034e-21,0.0001709401694824919,-4.273504237062298e-05,-3.108003147644922e-05,3.047442378289794e-22,8.157899962448744e-21,7.770007869112305e-06,1.6967126427524748e-23,0.0,-1.1318885501585924e-22,5.211226815031401e-23,0.00013888889225199819,-3.4722223062999547e-05,5.505714157152952e-21,-1.984126902243588e-05,-9.572190440257806e-37,1.6967126427524748e-23,4.96031725560897e-06,2.6469779601696886e-23,-8.470329472543003e-22,-2.117582368135751e-22,0.0001017501053865999,-6.352747104407253e-20,-6.105006468715146e-05,6.757527937160077e-20,8.098292067350208e-21,0.0,2.6469779601696886e-23,5.550005425902782e-06,-4.235164736271502e-21,-3.1234339930002325e-21,0.00010683760774554685,-2.371692252312041e-20,-1.942501876328606e-05,-1.5262516171787865e-05,3.697046185404894e-21,-1.1318885501585924e-22,-8.470329472543003e-22,-4.235164736271502e-21,2.775002712951391e-06,-2.541098841762901e-21,6.808278703829274e-05,-4.2351647362715017e-20,5.166900978251232e-20,-3.142282730550505e-05,5.255605112955034e-21,5.211226815031401e-23,-2.117582368135751e-22,-3.1234339930002325e-21,-2.541098841762901e-21,2.2444876321969787e-06,9.0,12.0,16.0,0.02126680128276348,-0.003410376375541091,-0.002664431231096387,-0.0020639558788388968,0.00015782828268129379,0.00016025641525629908,0.00012254902685526758,9.5390721980948e-05,9.426847827853635e-05,5.673565829056315e-05,-0.003410376375541091,0.001619188580662012,0.00016025641525629908,0.00012254902685526758,-0.00013528138515539467,-4.006410381407477e-05,-3.0637256713816896e-05,1.2147438101025312e-19,4.997494388800372e-20,6.945670167485263e-20,-0.002664431231096387,0.00016025641525629908,0.0009232393349520862,9.426847827853635e-05,2.7331900840312036e-19,-2.9137529054423794e-05,-2.541098841762901e-21,-5.723443246097304e-05,-1.7139722331194207e-05,2.625802136488331e-20,-0.0020639558788388968,0.00012254902685526758,9.426847827853635e-05,0.0005264520295895636,1.9846907620972492e-19,-1.6830450312697635e-34,-1.633986903470941e-05,5.535585717023773e-20,-1.25691303765052e-05,-2.431528082524892e-05,0.00015782828268129379,-0.00013528138515539467,2.7331900840312036e-19,1.9846907620972492e-19,1.6910173144424334e-05,-1.434005802918184e-20,-8.041680278591476e-21,-1.518429762628164e-20,-6.524199673404474e-21,-8.694617395373483e-21,0.00016025641525629908,-4.006410381407477e-05,-2.9137529054423794e-05,-1.6830450312697635e-34,-1.434005802918184e-20,7.2843822636059485e-06,6.819454984402062e-36,1.2876493114630108e-35,5.5326104532206166e-36,7.373154867077444e-36,0.00012254902685526758,-3.0637256713816896e-05,-2.541098841762901e-21,-1.633986903470941e-05,-8.041680278591476e-21,6.819454984402062e-36,4.084967258677352e-06,7.147005652999508e-36,3.1763735522036263e-22,0.0,9.5390721980948e-05,1.2147438101025312e-19,-5.723443246097304e-05,5.535585717023773e-20,-1.518429762628164e-20,1.2876493114630108e-35,7.147005652999508e-36,5.203130058362149e-06,-2.7685181763556478e-21,-2.6752668908841485e-21,9.426847827853635e-05,4.997494388800372e-20,-1.7139722331194207e-05,-1.25691303765052e-05,-6.524199673404474e-21,5.5326104532206166e-36,3.1763735522036263e-22,-2.7685181763556478e-21,2.2852964320918545e-06,4.235164736271502e-22,5.673565829056315e-05,6.945670167485263e-20,2.625802136488331e-20,-2.431528082524892e-05,-8.694617395373483e-21,7.373154867077444e-36,0.0,-2.6752668908841485e-21,4.235164736271502e-22,1.6210187823162414e-06,9.0,13.0,3.0,0.07774447649717331,-0.014885114505887032,-0.01086691115051508,-0.034065935760736465,0.0007770007941871881,0.0007326007471419871,0.0025641026441007853,0.0004070004215463996,0.0018315018387511373,0.004273504484444857,-0.014885114505887032,0.007495282683521509,0.0007326007471419871,0.0025641026441007853,-0.000666000647470355,-0.00018315018678549677,-0.0006410256610251963,-2.642742795433417e-19,-5.070235100904637e-19,-5.9152740258948014e-18,-0.01086691115051508,0.0007326007471419871,0.003661153605207801,0.0018315018387511373,-5.954046049156693e-19,-0.00012210012937430292,0.0,-0.0002220002206740901,-0.0003052503161597997,-1.6267004088198587e-18,-0.034065935760736465,0.0025641026441007853,0.0018315018387511373,0.07680097967386246,-1.859086151966245e-18,-6.716063454680807e-34,-0.0025641026441007853,-5.666761636661658e-34,-0.0018315018387511373,-0.025641025975346565,0.0007770007941871881,-0.000666000647470355,-5.954046049156693e-19,-1.859086151966245e-18,8.325008093379438e-05,3.69794905627467e-20,0.0,3.200905919714359e-20,6.337793876130796e-20,7.394092532368502e-19,0.0007326007471419871,-0.00018315018678549677,-0.00012210012937430292,-6.716063454680807e-34,3.69794905627467e-20,3.052503234357573e-05,0.0,4.195038095704423e-22,0.0,3.3580317273404036e-34,0.0025641026441007853,-0.0006410256610251963,0.0,-0.0025641026441007853,0.0,0.0,0.0006410256610251963,0.0,0.0,-0.0,0.0004070004215463996,-2.642742795433417e-19,-0.0002220002206740901,-5.666761636661658e-34,3.200905919714359e-20,4.195038095704423e-22,0.0,1.850001899583731e-05,1.72936768061639e-36,2.781499732308814e-34,0.0018315018387511373,-5.070235100904637e-19,-0.0003052503161597997,-0.0018315018387511373,6.337793876130796e-20,0.0,0.0,1.72936768061639e-36,0.0003052503161597997,1.6267004088198587e-18,0.004273504484444857,-5.9152740258948014e-18,-1.6267004088198587e-18,-0.025641025975346565,7.394092532368502e-19,3.3580317273404036e-34,-0.0,2.781499732308814e-34,1.6267004088198587e-18,0.012820512987673283,9.0,13.0,4.0,0.0632045716047287,-0.011548451147973537,-0.008424908854067326,-0.0217216107994318,0.0005827505956403911,0.0005494505749084055,0.0015384615398943424,0.0003052503161597997,0.001098901149816811,0.0021367522422224283,-0.011548451147973537,0.005717615596950054,0.0005494505749084055,0.0015384615398943424,-0.0004995004856027663,-0.00013736264372710139,-0.0003846153849735856,5.963111948670274e-19,1.4148738262081714e-18,5.4716285256514796e-18,-0.008424908854067326,0.0005494505749084055,0.002791652688756585,0.001098901149816811,1.4587488300664794e-18,-9.157509339274839e-05,-2.2023021418499466e-20,-0.00016650016186758876,-0.00018315018678549677,-8.238913288472106e-19,-0.0217216107994318,0.0015384615398943424,0.001098901149816811,0.029438339173793793,3.971367326351297e-18,-2.6815016031925536e-20,-0.001025640987791121,-4.350948825525729e-19,-0.0007326007471419871,-0.006410256493836641,0.0005827505956403911,-0.0004995004856027663,1.4587488300664794e-18,3.971367326351297e-18,6.243756070034578e-05,-5.387124568528978e-20,-1.5083948662634167e-19,-7.394092532368502e-20,-1.7745822336178346e-19,-6.8395356570643495e-19,0.0005494505749084055,-0.00013736264372710139,-9.157509339274839e-05,-2.6815016031925536e-20,-5.387124568528978e-20,2.2893773348187096e-05,5.5057553546248665e-21,2.1902989352902995e-22,7.986659540237041e-22,5.925938396386298e-34,0.0015384615398943424,-0.0003846153849735856,-2.2023021418499466e-20,-0.001025640987791121,-1.5083948662634167e-19,5.5057553546248665e-21,0.00025641024694778025,1.7833058602283994e-34,4.287865896351324e-34,1.6523261037226635e-33,0.0003052503161597997,5.963111948670274e-19,-0.00016650016186758876,-4.350948825525729e-19,-7.394092532368502e-20,2.1902989352902995e-22,1.7833058602283994e-34,1.387501379213063e-05,4.807423147437318e-20,3.0808719961926847e-20,0.001098901149816811,1.4148738262081714e-18,-0.00018315018678549677,-0.0007326007471419871,-1.7745822336178346e-19,7.986659540237041e-22,4.287865896351324e-34,4.807423147437318e-20,0.00012210012937430292,2.1241888270436646e-19,0.0021367522422224283,5.4716285256514796e-18,-8.238913288472106e-19,-0.006410256493836641,-6.8395356570643495e-19,5.925938396386298e-34,1.6523261037226635e-33,3.0808719961926847e-20,2.1241888270436646e-19,0.0021367522422224283,9.0,13.0,5.0,0.05333777517080307,-0.009443889372050762,-0.006886446848511696,-0.015091574750840664,0.0004662004648707807,0.00043956044828519225,0.001025640987791121,0.00024420025874860585,0.0007326007471419871,0.0012210012646391988,-0.009443889372050762,0.00462537445127964,0.00043956044828519225,0.001025640987791121,-0.0003996003943029791,-0.00010989011207129806,-0.00025641024694778025,-1.4907779871675686e-19,-2.0328790734103208e-19,-1.0140470201809273e-18,-0.006886446848511696,0.00043956044828519225,0.0022577422205358744,0.0007326007471419871,-3.876685079812392e-19,-7.326007471419871e-05,-3.6162304390309614e-34,-0.00013320012658368796,-0.00012210012937430292,-9.837680079608069e-34,-0.015091574750840664,0.001025640987791121,0.0007326007471419871,0.014871794730424881,-8.455072126144463e-19,3.740501440338771e-21,-0.0005128204938955605,1.3552527156068805e-20,-0.00036630037357099354,-0.0024420025292783976,0.0004662004648707807,-0.0003996003943029791,-3.876685079812392e-19,-8.455072126144463e-19,4.995004928787239e-05,2.6625234626894302e-20,4.659415978927146e-20,1.920543584140358e-20,2.5351174535170903e-20,1.2675587752261592e-19,0.00043956044828519225,-0.00010989011207129806,-7.326007471419871e-05,3.740501440338771e-21,2.6625234626894302e-20,1.8315018678549677e-05,2.483641918999613e-35,-8.470329472543003e-22,0.0,6.756559579449746e-35,0.001025640987791121,-0.00025641024694778025,-3.6162304390309614e-34,-0.0005128204938955605,4.659415978927146e-20,2.483641918999613e-35,0.00012820512347389013,1.791511935781967e-35,2.3647958815060035e-35,1.1823979694515943e-34,0.00024420025874860585,-1.4907779871675686e-19,-0.00013320012658368796,1.3552527156068805e-20,1.920543584140358e-20,-8.470329472543003e-22,1.791511935781967e-35,1.1100010851805564e-05,-8.470329472543003e-22,4.873672472934279e-35,0.0007326007471419871,-2.0328790734103208e-19,-0.00012210012937430292,-0.00036630037357099354,2.5351174535170903e-20,0.0,2.3647958815060035e-35,-8.470329472543003e-22,6.105006468715146e-05,6.433247549478879e-35,0.0012210012646391988,-1.0140470201809273e-18,-9.837680079608069e-34,-0.0024420025292783976,1.2675587752261592e-19,6.756559579449746e-35,1.1823979694515943e-34,4.873672472934279e-35,6.433247549478879e-35,0.0006105006323195994,9.0,13.0,6.0,0.04617208242416382,-0.00799200776964426,-0.005825920030474663,-0.01110674999654293,0.0003885003970935941,0.00036630037357099354,0.0007326007471419871,0.0002035002107731998,0.0005232862313278019,0.000763125775847584,-0.00799200776964426,0.0038850039709359407,0.00036630037357099354,0.0007326007471419871,-0.0003330003237351775,-9.157509339274839e-05,-0.00018315018678549677,-1.2959604092990795e-19,-1.4568966692773966e-19,-5.809644095647545e-19,-0.005825920030474663,0.00036630037357099354,0.0018959876615554094,0.0005232862313278019,-3.112832897968541e-19,-6.105006468715146e-05,-3.318511469512514e-34,-0.00011100011033704504,-8.721437188796699e-05,-5.430760941924929e-34,-0.01110674999654293,0.0007326007471419871,0.0005232862313278019,0.008639891631901264,-6.492522016364932e-19,-1.7807974781012762e-21,-0.00029304029885679483,6.776263578034403e-21,-0.00020931450126226991,-0.0011446886928752065,0.0003885003970935941,-0.0003330003237351775,-3.112832897968541e-19,-6.492522016364932e-19,4.162504046689719e-05,1.848974528137335e-20,4.437538996776575e-20,1.6004529598571796e-20,1.810798204163452e-20,7.262055119559432e-20,0.00036630037357099354,-9.157509339274839e-05,-6.105006468715146e-05,-1.7807974781012762e-21,1.848974528137335e-20,1.5262516171787865e-05,1.9711444621544016e-35,4.235164736271502e-22,-4.235164736271502e-22,3.2257880962982304e-35,0.0007326007471419871,-0.00018315018678549677,-3.318511469512514e-34,-0.00029304029885679483,4.437538996776575e-20,1.9711444621544016e-35,7.326007471419871e-05,1.706201925597852e-35,1.9304455531305094e-35,7.741891316321383e-35,0.0002035002107731998,-1.2959604092990795e-19,-0.00011100011033704504,6.776263578034403e-21,1.6004529598571796e-20,4.235164736271502e-22,1.706201925597852e-35,9.250009497918654e-06,-1.6940658945086007e-21,2.7922080381467614e-35,0.0005232862313278019,-1.4568966692773966e-19,-8.721437188796699e-05,-0.00020931450126226991,1.810798204163452e-20,-4.235164736271502e-22,1.9304455531305094e-35,-1.6940658945086007e-21,3.488575021037832e-05,3.159184115723722e-35,0.000763125775847584,-5.809644095647545e-19,-5.430760941924929e-34,-0.0011446886928752065,7.262055119559432e-20,3.2257880962982304e-35,7.741891316321383e-35,2.7922080381467614e-35,3.159184115723722e-35,0.00022893772984389216,9.0,13.0,7.0,0.040720656514167786,-0.00692878570407629,-0.005049712024629116,-0.008520844392478466,0.0003330003237351775,0.00031397174461744726,0.0005494505749084055,0.00017442874377593398,0.0003924646880477667,0.000508750497829169,-0.00692878570407629,0.0033496266696602106,0.00031397174461744726,0.0005494505749084055,-0.00028542886138893664,-7.849293615436181e-05,-0.00013736264372710139,-1.0503208545953324e-19,-1.1011428314305904e-19,-3.6618362894351656e-19,-0.005049712024629116,0.00031397174461744726,0.0016344765899702907,0.0003924646880477667,-2.5969818714772765e-19,-5.232862531556748e-05,-1.7303599416284327e-34,-9.514295379631221e-05,-6.541077891597524e-05,-3.3317314187731973e-34,-0.008520844392478466,0.0005494505749084055,0.0003924646880477667,0.005485784262418747,-4.5121378925787575e-19,1.0015977839409424e-21,-0.00018315018678549677,3.3881317890172014e-21,-0.00013082155783195049,-0.0006105006323195994,0.0003330003237351775,-0.00028542886138893664,-2.5969818714772765e-19,-4.5121378925787575e-19,3.567860767361708e-05,1.3584302523818206e-20,2.3772531032268994e-20,1.3718168458145415e-20,1.3580987339019458e-20,4.577295361793957e-20,0.00031397174461744726,-7.849293615436181e-05,-5.232862531556748e-05,1.0015977839409424e-21,1.3584302523818206e-20,1.308215632889187e-05,9.051173770341073e-36,-4.235164736271502e-22,-4.235164736271502e-22,1.7427633585339012e-35,0.0005494505749084055,-0.00013736264372710139,-1.7303599416284327e-34,-0.00018315018678549677,2.3772531032268994e-20,9.051173770341073e-36,4.578754669637419e-05,9.140367561054894e-36,9.048963978714771e-36,3.049835877434327e-35,0.00017442874377593398,-1.0503208545953324e-19,-9.514295379631221e-05,3.3881317890172014e-21,1.3718168458145415e-20,-4.235164736271502e-22,9.140367561054894e-36,7.928579179861117e-06,-8.470329472543003e-22,1.7599373137802593e-35,0.0003924646880477667,-1.1011428314305904e-19,-6.541077891597524e-05,-0.00013082155783195049,1.3580987339019458e-20,-4.235164736271502e-22,9.048963978714771e-36,-8.470329472543003e-22,2.1803592971991748e-05,1.7423379018993568e-35,0.000508750497829169,-3.6618362894351656e-19,-3.3317314187731973e-34,-0.0006105006323195994,4.577295361793957e-20,1.7427633585339012e-35,3.049835877434327e-35,1.7599373137802593e-35,1.7423379018993568e-35,0.0001017501053865999,9.0,13.0,8.0,0.03642931208014488,-0.006116106174886227,-0.004456654656678438,-0.0067460318095982075,0.00029137529782019556,0.00027472528745420277,0.0004273504309821874,0.00015262515807989985,0.0003052503161597997,0.0003561253543011844,-0.006116106174886227,0.0029442778322845697,0.00027472528745420277,0.0004273504309821874,-0.00024975024280138314,-6.868132186355069e-05,-0.00010683760774554685,2.922263668027336e-19,3.5067164016328034e-19,5.508598949539231e-19,-0.004456654656678438,0.00027472528745420277,0.001436526421457529,0.0003052503161597997,7.538453643834905e-19,-4.578754669637419e-05,-5.243576258949636e-21,-8.325008093379438e-05,-5.087505269329995e-05,-3.7503120447417203e-19,-0.0067460318095982075,0.0004273504309821874,0.0003052503161597997,0.0037080643232911825,8.802723729891312e-19,-6.452932247519349e-20,-0.00012210012937430292,-2.1345230270808369e-19,-8.721437188796699e-05,-0.0003561253543011844,0.00029137529782019556,-0.00024975024280138314,7.538453643834905e-19,8.802723729891312e-19,3.121878035017289e-05,-2.693562284264489e-20,-8.179545598868637e-21,-3.697046266184251e-20,-4.5018455039366104e-20,-7.394092532368502e-20,0.00027472528745420277,-6.868132186355069e-05,-4.578754669637419e-05,-6.452932247519349e-20,-2.693562284264489e-20,1.1446886674093548e-05,1.310894064737409e-21,4.235164736271502e-22,1.4823076576950256e-21,6.777918747053076e-21,0.0004273504309821874,-0.00010683760774554685,-5.243576258949636e-21,-0.00012210012937430292,-8.179545598868637e-21,1.310894064737409e-21,3.052503234357573e-05,9.874152546907215e-36,1.1990042378387333e-35,2.0149261739899475e-35,0.00015262515807989985,2.922263668027336e-19,-8.325008093379438e-05,-2.1345230270808369e-19,-3.697046266184251e-20,4.235164736271502e-22,9.874152546907215e-36,6.937506896065315e-06,1.5246593050577406e-20,1.4377402325781768e-20,0.0003052503161597997,3.5067164016328034e-19,-5.087505269329995e-05,-8.721437188796699e-05,-4.5018455039366104e-20,1.4823076576950256e-21,1.1990042378387333e-35,1.5246593050577406e-20,1.4535728951159399e-05,4.36564666178806e-20,0.0003561253543011844,5.508598949539231e-19,-3.7503120447417203e-19,-0.0003561253543011844,-7.394092532368502e-20,6.777918747053076e-21,2.0149261739899475e-35,1.4377402325781768e-20,4.36564666178806e-20,5.087505269329995e-05,9.0,13.0,9.0,0.03296111151576042,-0.00547452550381422,-0.003988604061305523,-0.00547452550381422,0.0002590002550277859,0.00024420025874860585,0.0003418803389649838,0.0001356668071821332,0.00024420025874860585,0.0002590002550277859,-0.00547452550381422,0.002626632573083043,0.00024420025874860585,0.0003418803389649838,-0.0002220002206740901,-6.105006468715146e-05,-8.547008474124596e-05,-8.427977825180288e-20,-5.082197683525802e-20,-1.1497654125652524e-19,-0.003988604061305523,0.00024420025874860585,0.0012814346700906754,0.00024420025874860585,-1.8532716667960627e-19,-4.0700040699448436e-05,1.6267004346692528e-20,-7.400007598334923e-05,-4.0700040699448436e-05,-1.5662239664664378e-34,-0.00547452550381422,0.0003418803389649838,0.00024420025874860585,0.002626632573083043,-2.3470727723430486e-19,1.23704769730529e-21,-8.547008474124596e-05,3.3881317890172014e-21,-6.105006468715146e-05,-0.0002220002206740901,0.0002590002550277859,-0.0002220002206740901,-1.8532716667960627e-19,-2.3470727723430486e-19,2.775002758426126e-05,5.872340153240774e-21,2.468910773549527e-21,1.0669686399047864e-20,8.450391511723634e-21,2.176616083566901e-20,0.00024420025874860585,-6.105006468715146e-05,-4.0700040699448436e-05,1.23704769730529e-21,5.872340153240774e-21,1.0175010174862109e-05,5.64237288394698e-37,0.0,-2.117582368135751e-22,4.6060602498058244e-36,0.0003418803389649838,-8.547008474124596e-05,1.6267004346692528e-20,-8.547008474124596e-05,2.468910773549527e-21,5.64237288394698e-37,2.136752118531149e-05,1.128474576789396e-36,-4.066751086673132e-21,-1.4788184741619577e-20,0.0001356668071821332,-8.427977825180288e-20,-7.400007598334923e-05,3.3881317890172014e-21,1.0669686399047864e-20,0.0,1.128474576789396e-36,6.166672847029986e-06,-4.235164736271502e-22,8.368932174172239e-36,0.00024420025874860585,-5.082197683525802e-20,-4.0700040699448436e-05,-6.105006468715146e-05,8.450391511723634e-21,-2.117582368135751e-22,-4.066751086673132e-21,-4.235164736271502e-22,1.0175010174862109e-05,9.442740236943963e-36,0.0002590002550277859,-1.1497654125652524e-19,-1.5662239664664378e-34,-0.0002220002206740901,2.176616083566901e-20,4.6060602498058244e-36,-1.4788184741619577e-20,8.368932174172239e-36,9.442740236943963e-36,2.775002758426126e-05,9.0,13.0,10.0,0.030098790302872658,-0.004955044947564602,-0.0036097236443310976,-0.004532134626060724,0.00023310023243539035,0.00021978022414259613,0.0002797202905640006,0.00012210012937430292,0.00019980019715148956,0.00019425019854679704,-0.004955044947564602,0.002370962407439947,0.00021978022414259613,0.0002797202905640006,-0.00019980019715148956,-5.494505603564903e-05,-6.993007264100015e-05,-7.538593230563273e-20,-5.590417451878382e-20,-1.2771614374091049e-19,-0.0036097236443310976,0.00021978022414259613,0.0011566211469471455,0.00019980019715148956,-1.995958900744782e-19,-3.6630037357099354e-05,0.0,-6.660006329184398e-05,-3.330003164592199e-05,-1.275855510060476e-34,-0.004532134626060724,0.0002797202905640006,0.00019980019715148956,0.0019298294791951776,-1.8516440596938939e-19,-2.4635890989502443e-23,-6.216006295289844e-05,-1.6940658945086007e-21,-4.4400043407222256e-05,-0.00014568764891009778,0.00023310023243539035,-0.00019980019715148956,-1.995958900744782e-19,-1.8516440596938939e-19,2.4975024643936194e-05,1.3312617313447151e-20,0.0,9.60271792070179e-21,6.913956838281804e-21,1.596451796761381e-20,0.00021978022414259613,-5.494505603564903e-05,-3.6630037357099354e-05,-2.4635890989502443e-23,1.3312617313447151e-20,9.157509339274839e-06,0.0,-4.235164736271502e-22,0.0,8.509682268936194e-36,0.0002797202905640006,-6.993007264100015e-05,0.0,-6.216006295289844e-05,0.0,0.0,1.554001573822461e-05,0.0,0.0,-0.0,0.00012210012937430292,-7.538593230563273e-20,-6.660006329184398e-05,-1.6940658945086007e-21,9.60271792070179e-21,-4.235164736271502e-22,0.0,5.550005425902782e-06,4.235164736271502e-22,6.138242950240936e-36,0.00019980019715148956,-5.590417451878382e-20,-3.330003164592199e-05,-4.4400043407222256e-05,6.913956838281804e-21,0.0,0.0,4.235164736271502e-22,7.400007234537043e-06,4.4195348237284e-36,0.00019425019854679704,-1.2771614374091049e-19,-1.275855510060476e-34,-0.00014568764891009778,1.596451796761381e-20,8.509682268936194e-36,-0.0,6.138242950240936e-36,4.4195348237284e-36,1.618751593923662e-05,9.0,13.0,11.0,0.02769569121301174,-0.004525777418166399,-0.0032967033330351114,-0.0038141345139592886,0.0002119092969223857,0.00019980019715148956,0.00023310023243539035,0.00011100011033704504,0.00016650016186758876,0.00014942322741262615,-0.004525777418166399,0.0021607179660350084,0.00019980019715148956,0.00023310023243539035,-0.00018163654021918774,-4.995004928787239e-05,-5.827505810884759e-05,-7.157428404298838e-20,-4.573977915173222e-20,-9.825582188149884e-20,-0.0032967033330351114,0.00019980019715148956,0.0010539965005591512,0.00016650016186758876,-1.7757373137950824e-19,-3.330003164592199e-05,0.0,-6.054551340639591e-05,-2.775002758426126e-05,0.0,-0.0038141345139592886,0.00023310023243539035,0.00016650016186758876,0.0014601353323087096,-2.168314259832423e-19,1.2664655195295575e-21,-4.662004721467383e-05,-5.865595581827752e-22,-3.330003164592199e-05,-9.961548494175076e-05,0.0002119092969223857,-0.00018163654021918774,-1.7757373137950824e-19,-2.168314259832423e-19,2.2704567527398467e-05,1.100216292209303e-20,1.5403028737165096e-20,8.729743490838576e-21,5.761630833200431e-21,1.2064953492110857e-20,0.00019980019715148956,-4.995004928787239e-05,-3.330003164592199e-05,1.2664655195295575e-21,1.100216292209303e-20,8.325007911480498e-06,-6.690622162347419e-23,0.0,7.699594192786819e-23,-1.609983192239687e-22,0.00023310023243539035,-5.827505810884759e-05,0.0,-4.662004721467383e-05,1.5403028737165096e-20,-6.690622162347419e-23,1.1655011803668458e-05,-1.0587911840678754e-22,1.0587911840678754e-22,-4.235164736271502e-22,0.00011100011033704504,-7.157428404298838e-20,-6.054551340639591e-05,-5.865595581827752e-22,8.729743490838576e-21,0.0,-1.0587911840678754e-22,5.045459602115443e-06,2.117582368135751e-22,-2.117582368135751e-22,0.00016650016186758876,-4.573977915173222e-20,-2.775002758426126e-05,-3.330003164592199e-05,5.761630833200431e-21,7.699594192786819e-23,1.0587911840678754e-22,2.117582368135751e-22,5.550005425902782e-06,4.235164736271502e-22,0.00014942322741262615,-9.825582188149884e-20,0.0,-9.961548494175076e-05,1.2064953492110857e-20,-1.609983192239687e-22,-4.235164736271502e-22,-2.117582368135751e-22,4.235164736271502e-22,9.961548130377196e-06,9.0,13.0,12.0,0.025649137794971466,-0.004165065474808216,-0.003033718327060342,-0.003254437819123268,0.00019425019854679704,0.00018315018678549677,0.0001972386526176706,0.0001017501053865999,0.00014088476018514484,0.00011740396439563483,-0.004165065474808216,0.001984767382964492,0.00018315018678549677,0.0001972386526176706,-0.00016650016186758876,-4.578754669637419e-05,-4.930966315441765e-05,-6.225692162319107e-20,-3.6422416731934915e-20,-8.131516293641283e-20,-0.003033718327060342,0.00018315018678549677,0.0009681201772764325,0.00014088476018514484,-1.5982041918137717e-19,-3.052503234357573e-05,5.082197683525802e-21,-5.550005516852252e-05,-2.3480792151531205e-05,1.1858461261560205e-20,-0.003254437819123268,0.0001972386526176706,0.00014088476018514484,0.0011317741591483355,-1.754818045350587e-19,9.816576016892643e-22,-3.586157254176214e-05,4.086833238644201e-21,-2.5615410777390935e-05,-7.044238009257242e-05,0.00019425019854679704,-0.00016650016186758876,-1.5982041918137717e-19,-1.754818045350587e-19,2.0812520233448595e-05,9.244872640686675e-21,1.0861109240607132e-20,8.002264799285898e-21,4.875226027493167e-21,9.344182781807055e-21,0.00018315018678549677,-4.578754669637419e-05,-3.052503234357573e-05,9.816576016892643e-22,9.244872640686675e-21,7.631258085893933e-06,-5.757473548851691e-23,-2.117582368135751e-22,-2.2217827211164684e-23,-9.96396009888366e-23,0.0001972386526176706,-4.930966315441765e-05,5.082197683525802e-21,-3.586157254176214e-05,1.0861109240607132e-20,-5.757473548851691e-23,8.965393135440536e-06,0.0,-7.411538288475128e-22,4.235164736271502e-22,0.0001017501053865999,-6.225692162319107e-20,-5.550005516852252e-05,4.086833238644201e-21,8.002264799285898e-21,-2.117582368135751e-22,0.0,4.625004748959327e-06,-6.352747104407253e-22,0.0,0.00014088476018514484,-3.6422416731934915e-20,-2.3480792151531205e-05,-2.5615410777390935e-05,4.875226027493167e-21,-2.2217827211164684e-23,-7.411538288475128e-22,-6.352747104407253e-22,4.2692349779827055e-06,-1.6940658945086007e-21,0.00011740396439563483,-8.131516293641283e-20,1.1858461261560205e-20,-7.044238009257242e-05,9.344182781807055e-21,-9.96396009888366e-23,4.235164736271502e-22,0.0,-1.6940658945086007e-21,6.403852694347734e-06,9.0,13.0,13.0,0.023885028436779976,-0.003857680829241872,-0.002809644676744938,-0.002809644676744938,0.00017930786998476833,0.00016906170640140772,0.00016906170640140772,9.392316860612482e-05,0.00012075836275471374,9.392316860612482e-05,-0.003857680829241872,0.0018353441264480352,0.00016906170640140772,0.00016906170640140772,-0.00015369246830232441,-4.226542660035193e-05,-4.226542660035193e-05,-5.759824041329242e-20,-3.9810548520952116e-20,-6.098637220230962e-20,-0.002809644676744938,0.00016906170640140772,0.0008951976196840405,0.00012075836275471374,-1.452222194087677e-19,-2.8176951673231088e-05,-6.3527471044072525e-21,-5.123082155478187e-05,-2.012639379245229e-05,-1.5246593050577406e-20,-0.002809644676744938,0.00016906170640140772,0.00012075836275471374,0.0008951976196840405,-1.452222194087677e-19,7.764601632522313e-22,-2.8176951673231088e-05,-5.8615747893482765e-22,-2.012639379245229e-05,-5.123082155478187e-05,0.00017930786998476833,-0.00015369246830232441,-1.452222194087677e-19,-1.452222194087677e-19,1.9211558537790552e-05,7.877287825369365e-21,7.877287825369365e-21,7.386705906433631e-21,4.1787649933240934e-21,7.386705906433631e-21,0.00016906170640140772,-4.226542660035193e-05,-2.8176951673231088e-05,7.764601632522313e-22,7.877287825369365e-21,7.044237918307772e-06,-2.4439609774508972e-23,0.0,-1.7456863899260435e-23,-3.416640988629061e-24,0.00016906170640140772,-4.226542660035193e-05,-6.3527471044072525e-21,-2.8176951673231088e-05,7.877287825369365e-21,-2.4439609774508972e-23,7.044237918307772e-06,-5.293955920339377e-23,1.164670302474663e-21,-2.117582368135751e-22,9.392316860612482e-05,-5.759824041329242e-20,-5.123082155478187e-05,-5.8615747893482765e-22,7.386705906433631e-21,0.0,-5.293955920339377e-23,4.2692349779827055e-06,2.117582368135751e-22,5.293955920339377e-23,0.00012075836275471374,-3.9810548520952116e-20,-2.012639379245229e-05,-2.012639379245229e-05,4.1787649933240934e-21,-1.7456863899260435e-23,1.164670302474663e-21,2.117582368135751e-22,3.3543990411999403e-06,2.329340604949326e-21,9.392316860612482e-05,-6.098637220230962e-20,-1.5246593050577406e-20,-5.123082155478187e-05,7.386705906433631e-21,-3.416640988629061e-24,-2.117582368135751e-22,5.293955920339377e-23,2.329340604949326e-21,4.2692349779827055e-06,9.0,13.0,14.0,0.022348525002598763,-0.0035925977863371372,-0.002616431098431349,-0.0024502878077328205,0.00016650016186758876,0.00015698587230872363,0.00014652014942839742,8.721437188796699e-05,0.00010465725063113496,7.631257903994992e-05,-0.0035925977863371372,0.0017068645684048533,0.00015698587230872363,0.00014652014942839742,-0.00014271443069446832,-3.924646807718091e-05,-3.6630037357099354e-05,-5.463362509790237e-20,-3.218725199566341e-20,-4.573977915173222e-20,-0.002616431098431349,0.00015698587230872363,0.0008325008093379438,0.00010465725063113496,-1.3301799665116033e-19,-2.616431265778374e-05,-3.8116482626443515e-21,-4.7571476898156106e-05,-1.744287510518916e-05,-5.082197683525802e-21,-0.0024502878077328205,0.00014652014942839742,0.00010465725063113496,0.0007203739369288087,-9.897144297128231e-20,1.2496495798722402e-21,-2.254156061098911e-05,7.361773660912421e-22,-1.6101115761557594e-05,-3.815628951997496e-05,0.00016650016186758876,-0.00014271443069446832,-1.3301799665116033e-19,-9.897144297128231e-20,1.783930383680854e-05,6.792151261909103e-21,3.5123373368330735e-37,6.859084229072708e-21,3.621596246768191e-21,5.9416815569242294e-21,0.00015698587230872363,-3.924646807718091e-05,-2.616431265778374e-05,1.2496495798722402e-21,6.792151261909103e-21,6.541078164445935e-06,-1.2633595564200926e-23,-2.117582368135751e-22,-1.3381009559689445e-22,-8.069162274019655e-23,0.00014652014942839742,-3.6630037357099354e-05,-3.8116482626443515e-21,-2.254156061098911e-05,3.5123373368330735e-37,-1.2633595564200926e-23,5.635390152747277e-06,2.6469779601696886e-23,5.293955920339377e-22,-4.235164736271502e-22,8.721437188796699e-05,-5.463362509790237e-20,-4.7571476898156106e-05,7.361773660912421e-22,6.859084229072708e-21,-2.117582368135751e-22,2.6469779601696886e-23,3.964289589930559e-06,-2.117582368135751e-22,0.0,0.00010465725063113496,-3.218725199566341e-20,-1.744287510518916e-05,-1.6101115761557594e-05,3.621596246768191e-21,-1.3381009559689445e-22,5.293955920339377e-22,-2.117582368135751e-22,2.683519142010482e-06,9.529120656610879e-22,7.631257903994992e-05,-4.573977915173222e-20,-5.082197683525802e-21,-3.815628951997496e-05,5.9416815569242294e-21,-8.069162274019655e-23,-4.235164736271502e-22,0.0,9.529120656610879e-22,2.9350990189414006e-06,9.0,13.0,15.0,0.0209981519728899,-0.0033616384025663137,-0.002448107348755002,-0.002155785448849201,0.0001554001501062885,0.00014652014942839742,0.00012820512347389013,8.140008139889687e-05,9.157509339274839e-05,6.28456546110101e-05,-0.0033616384025663137,0.0015952104004099965,0.00014652014942839742,0.00012820512347389013,-0.00013320012658368796,-3.6630037357099354e-05,-3.205128086847253e-05,2.1091120386632078e-19,7.580944877925988e-20,-4.0657581468206416e-20,-0.002448107348755002,0.00014652014942839742,0.0007780182640999556,9.157509339274839e-05,4.236334938344323e-19,-2.44200236920733e-05,4.912791094074942e-20,-4.4400043407222256e-05,-1.5262516171787865e-05,-1.5754812818929986e-19,-0.002155785448849201,0.00012820512347389013,9.157509339274839e-05,0.0005883576232008636,7.372939326907019e-20,-6.085270498519988e-20,-1.8315018678549677e-05,-1.3919005649051303e-19,-1.308215632889187e-05,-2.9005685064475983e-05,0.0001554001501062885,-0.00013320012658368796,4.236334938344323e-19,7.372939326907019e-20,1.6650015822960995e-05,-2.154849924346819e-20,-8.08068701435218e-21,-2.1254014867463644e-20,-8.148591757176821e-21,8.364358063721192e-22,0.00014652014942839742,-3.6630037357099354e-05,-2.44200236920733e-05,-6.085270498519988e-20,-2.154849924346819e-20,6.105005923018325e-06,-2.711454225147818e-21,-3.5998900258307764e-21,4.530898970872507e-22,4.8300687515137344e-21,0.00012820512347389013,-3.205128086847253e-05,4.912791094074942e-20,-1.8315018678549677e-05,-8.08068701435218e-21,-2.711454225147818e-21,4.578754669637419e-06,-2.0381730293306602e-21,-1.0058516248644817e-21,1.5881867761018131e-21,8.140008139889687e-05,2.1091120386632078e-19,-4.4400043407222256e-05,-1.3919005649051303e-19,-2.1254014867463644e-20,-3.5998900258307764e-21,-2.0381730293306602e-21,3.7000036172685213e-06,3.5998900258307764e-21,8.364450354136216e-21,9.157509339274839e-05,7.580944877925988e-20,-1.5262516171787865e-05,-1.308215632889187e-05,-8.148591757176821e-21,4.530898970872507e-22,-1.0058516248644817e-21,3.5998900258307764e-21,2.180359388148645e-06,5.61159327555974e-21,6.28456546110101e-05,-4.0657581468206416e-20,-1.5754812818929986e-19,-2.9005685064475983e-05,8.364358063721192e-22,4.8300687515137344e-21,1.5881867761018131e-21,8.364450354136216e-21,5.61159327555974e-21,2.0718346149806166e-06,9.0,13.0,16.0,0.01980195753276348,-0.0031586061231791973,-0.002300150925293565,-0.0019114055903628469,0.00014568764891009778,0.00013736264372710139,0.0001131221724790521,7.631257903994992e-05,8.080155384959653e-05,5.237137520452961e-05,-0.0031586061231791973,0.0014972771750763059,0.00013736264372710139,0.0001131221724790521,-0.00012487512140069157,-3.4340660931775346e-05,-2.8280543119763024e-05,1.4568966692773966e-19,9.190307477709159e-20,6.606856988583543e-20,-0.002300150925293565,0.00013736264372710139,0.0007302337908186018,8.080155384959653e-05,3.8412000655096327e-19,-2.2893773348187096e-05,-3.8116482626443515e-21,-4.162504046689719e-05,-1.3466925338434521e-05,-5.463362509790237e-20,-0.0019114055903628469,0.0001131221724790521,8.080155384959653e-05,0.00048678446910344064,2.295177528663003e-19,-3.047590254999643e-20,-1.508295645180624e-05,-5.65057222322174e-20,-1.0773540452646557e-05,-2.2444875867222436e-05,0.00014568764891009778,-0.00012487512140069157,3.8412000655096327e-19,2.295177528663003e-19,1.5609390175086446e-05,-1.3467811421322444e-20,-2.020828893654756e-21,-1.8485231330921254e-20,-1.1463950231541396e-20,-9.190836905612935e-21,0.00013736264372710139,-3.4340660931775346e-05,-2.2893773348187096e-05,-3.047590254999643e-20,-1.3467811421322444e-20,5.723443337046774e-06,1.5928015997755816e-21,2.117582368135751e-22,5.686151813995318e-22,1.3072038617752065e-21,0.0001131221724790521,-2.8280543119763024e-05,-3.8116482626443515e-21,-1.508295645180624e-05,-2.020828893654756e-21,1.5928015997755816e-21,3.77073911295156e-06,-2.6469779601696886e-23,-3.1763735522036263e-22,-1.0587911840678754e-22,7.631257903994992e-05,1.4568966692773966e-19,-4.162504046689719e-05,-5.65057222322174e-20,-1.8485231330921254e-20,2.117582368135751e-22,-2.6469779601696886e-23,3.4687534480326576e-06,2.329340604949326e-21,2.4881592825595072e-21,8.080155384959653e-05,9.190307477709159e-20,-1.3466925338434521e-05,-1.0773540452646557e-05,-1.1463950231541396e-20,5.686151813995318e-22,-3.1763735522036263e-22,2.329340604949326e-21,1.7955900375454803e-06,2.0117032497289633e-21,5.237137520452961e-05,6.606856988583543e-20,-5.463362509790237e-20,-2.2444875867222436e-05,-9.190836905612935e-21,1.3072038617752065e-21,-1.0587911840678754e-22,2.4881592825595072e-21,2.0117032497289633e-21,1.496325012340094e-06,9.0,14.0,3.0,0.07284511625766754,-0.013867244124412537,-0.009484127163887024,-0.0317460335791111,0.0007215007208287716,0.0006349206087179482,0.0023809524718672037,0.0003306878206785768,0.0015873016091063619,0.003968254197388887,-0.013867244124412537,0.0069712428376078606,0.0006349206087179482,0.0023809524718672037,-0.0006184292142279446,-0.00015873015217948705,-0.0005952381179668009,4.0318768289304696e-19,8.809142651444724e-19,1.0950441942103595e-17,-0.009484127163887024,0.0006349206087179482,0.002947191707789898,0.0015873016091063619,9.990483745189627e-19,-9.76800947682932e-05,-8.131516293641283e-20,-0.0001653439103392884,-0.00024420025874860585,-1.0842021724855044e-19,-0.0317460335791111,0.0023809524718672037,0.0015873016091063619,0.0714285746216774,4.130028426054787e-18,-7.74430157823656e-21,-0.0023809524718672037,-2.545613600008564e-20,-0.0015873016091063619,-0.02380952425301075,0.0007215007208287716,-0.0006184292142279446,9.990483745189627e-19,4.130028426054787e-18,7.730365177849308e-05,-5.494096146955704e-20,-1.6739823369767253e-19,-5.1494574839665933e-20,-1.0985509126799438e-19,-1.373188679624021e-18,0.0006349206087179482,-0.00015873015217948705,-9.76800947682932e-05,-7.74430157823656e-21,-5.494096146955704e-20,2.44200236920733e-05,1.4487987649509585e-21,5.1589193416723685e-23,-1.2928887500269591e-21,8.633218016091852e-22,0.0023809524718672037,-0.0005952381179668009,-8.131516293641283e-20,-0.0023809524718672037,-1.6739823369767253e-19,1.4487987649509585e-21,0.0005952381179668009,4.949682380042527e-21,1.3552527156068805e-20,0.0,0.0003306878206785768,4.0318768289304696e-19,-0.0001653439103392884,-2.545613600008564e-20,-5.1494574839665933e-20,5.1589193416723685e-23,4.949682380042527e-21,1.2718763173324987e-05,-1.3979821882156955e-21,-7.591895367909191e-22,0.0015873016091063619,8.809142651444724e-19,-0.00024420025874860585,-0.0015873016091063619,-1.0985509126799438e-19,-1.2928887500269591e-21,1.3552527156068805e-20,-1.3979821882156955e-21,0.00024420025874860585,1.0842021724855044e-19,0.003968254197388887,1.0950441942103595e-17,-1.0842021724855044e-19,-0.02380952425301075,-1.373188679624021e-18,8.633218016091852e-22,0.0,-7.591895367909191e-22,1.0842021724855044e-19,0.011904762126505375,9.0,14.0,4.0,0.059197328984737396,-0.010757575742900372,-0.0073511903174221516,-0.02023809589445591,0.0005411255406215787,0.0004761904710903764,0.0014285714132711291,0.00024801588733680546,0.0009523809421807528,0.0019841270986944437,-0.010757575742900372,0.005317717790603638,0.0004761904710903764,0.0014285714132711291,-0.00046382189611904323,-0.0001190476177725941,-0.0003571428533177823,3.049318610115481e-19,5.149960319306146e-19,3.577867169202165e-18,-0.0073511903174221516,0.0004761904710903764,0.0022470238618552685,0.0009523809421807528,7.245588280008974e-19,-7.326007471419871e-05,-9.486769009248164e-20,-0.00012400794366840273,-0.00014652014942839742,-4.336808689942018e-19,-0.02023809589445591,0.0014285714132711291,0.0009523809421807528,0.02738095261156559,2.2720387019904806e-18,-1.1577730378826485e-19,-0.0009523809421807528,-2.3920376642065776e-20,-0.0006349206087179482,-0.0059523810632526875,0.0005411255406215787,-0.00046382189611904323,7.245588280008974e-19,2.2720387019904806e-18,5.7977737014880404e-05,-3.090428840324513e-20,-1.0043893892613381e-19,-3.862093032195588e-20,-6.591305346832692e-20,-4.806160275286497e-19,0.0004761904710903764,-0.0001190476177725941,-7.326007471419871e-05,-1.1577730378826485e-19,-3.090428840324513e-20,1.8315018678549677e-05,2.0248210094626045e-20,-1.9891227437166233e-22,9.344844768635168e-22,1.062660596032905e-20,0.0014285714132711291,-0.0003571428533177823,-9.486769009248164e-20,-0.0009523809421807528,-1.0043893892613381e-19,2.0248210094626045e-20,0.0002380952355451882,3.1374712237614504e-22,0.0,1.0842021724855044e-19,0.00024801588733680546,3.049318610115481e-19,-0.00012400794366840273,-2.3920376642065776e-20,-3.862093032195588e-20,-1.9891227437166233e-22,3.1374712237614504e-22,9.53907237999374e-06,1.1289470456152043e-21,6.902220405547641e-21,0.0009523809421807528,5.149960319306146e-19,-0.00014652014942839742,-0.0006349206087179482,-6.591305346832692e-20,9.344844768635168e-22,0.0,1.1289470456152043e-21,9.76800947682932e-05,2.168404344971009e-19,0.0019841270986944437,3.577867169202165e-18,-4.336808689942018e-19,-0.0059523810632526875,-4.806160275286497e-19,1.062660596032905e-20,1.0842021724855044e-19,6.902220405547641e-21,2.168404344971009e-19,0.0019841270986944437,9.0,14.0,5.0,0.049942899495363235,-0.00879653636366129,-0.00600793631747365,-0.014058956876397133,0.00043290044413879514,0.0003809523768723011,0.0009523809421807528,0.00019841270113829523,0.0006349206087179482,0.0011337868636474013,-0.00879653636366129,0.004301793407648802,0.0003809523768723011,0.0009523809421807528,-0.0003710575110744685,-9.523809421807528e-05,-0.0002380952355451882,-1.2705494208814505e-19,-1.7618285302889447e-19,-9.75781955236954e-19,-0.00600793631747365,0.0003809523768723011,0.0018171550473198295,0.0006349206087179482,-3.2388585171819406e-19,-5.860805686097592e-05,1.3552527156068805e-20,-9.920635056914762e-05,-9.76800947682932e-05,1.3552527156068805e-20,-0.014058956876397133,0.0009523809421807528,0.0006349206087179482,0.01383219938725233,-6.136191737028753e-19,-2.999380125182328e-21,-0.0004761904710903764,1.2334626084809865e-21,-0.0003174603043589741,-0.0022675737272948027,0.00043290044413879514,-0.0003710575110744685,-3.2388585171819406e-19,-6.136191737028753e-19,4.638218888430856e-05,1.9778744707323855e-20,1.0665256155461176e-36,1.5448371805664926e-20,2.197101889983373e-20,1.1770188165503726e-19,0.0003809523768723011,-9.523809421807528e-05,-5.860805686097592e-05,-2.999380125182328e-21,1.9778744707323855e-20,1.465201421524398e-05,-2.67107999585247e-22,1.3288329131834287e-22,3.1603055284151054e-22,3.5882384619082407e-22,0.0009523809421807528,-0.0002380952355451882,1.3552527156068805e-20,-0.0004761904710903764,1.0665256155461176e-36,-2.67107999585247e-22,0.0001190476177725941,9.394664427134623e-23,-1.6940658945086007e-21,1.3552527156068805e-20,0.00019841270113829523,-1.2705494208814505e-19,-9.920635056914762e-05,1.2334626084809865e-21,1.5448371805664926e-20,1.3288329131834287e-22,9.394664427134623e-23,7.631258085893933e-06,8.313134359028188e-22,-2.2159696051058948e-21,0.0006349206087179482,-1.7618285302889447e-19,-9.76800947682932e-05,-0.0003174603043589741,2.197101889983373e-20,3.1603055284151054e-22,-1.6940658945086007e-21,8.313134359028188e-22,4.88400473841466e-05,6.776263578034403e-21,0.0011337868636474013,-9.75781955236954e-19,1.3552527156068805e-20,-0.0022675737272948027,1.1770188165503726e-19,3.5882384619082407e-22,1.3552527156068805e-20,-2.2159696051058948e-21,6.776263578034403e-21,0.0005668934318237007,9.0,14.0,6.0,0.043225280940532684,-0.007443826179951429,-0.005082199349999428,-0.010345805436372757,0.0003607503604143858,0.0003174603043589741,0.0006802721181884408,0.0001653439103392884,0.00045351474545896053,0.0007086168043315411,-0.007443826179951429,0.0036131725646555424,0.0003174603043589741,0.0006802721181884408,-0.0003092146071139723,-7.936507608974352e-05,-0.0001700680295471102,2.0244087439377778e-19,2.524158182817815e-19,1.0789339625617308e-18,-0.005082199349999428,0.0003174603043589741,0.0015259244246408343,0.00045351474545896053,5.2306455842061e-19,-4.88400473841466e-05,-5.177953433036326e-34,-8.26719551696442e-05,-6.977150042075664e-05,-1.8251147734149163e-33,-0.010345805436372757,0.0006802721181884408,0.00045351474545896053,0.008035714738070965,1.0314001320589476e-18,3.373656431220111e-22,-0.0002721088530961424,0.0,-0.00018140589236281812,-0.0010629252064973116,0.0003607503604143858,-0.0003092146071139723,5.2306455842061e-19,1.0314001320589476e-18,3.865182588924654e-05,-2.747048073477852e-20,-3.826245415516498e-20,-2.5747287419832967e-20,-3.138716801052003e-20,-1.3486674532021635e-19,0.0003174603043589741,-7.936507608974352e-05,-4.88400473841466e-05,3.373656431220111e-22,-2.747048073477852e-20,1.221001184603665e-05,2.719374741073486e-35,0.0,0.0,9.585198471936457e-35,0.0006802721181884408,-0.0001700680295471102,-5.177953433036326e-34,-0.0002721088530961424,-3.826245415516498e-20,2.719374741073486e-35,6.80272132740356e-05,2.5487914549037193e-35,3.1070981791480896e-35,1.3350812546820963e-34,0.0001653439103392884,2.0244087439377778e-19,-8.26719551696442e-05,0.0,-2.5747287419832967e-20,0.0,2.5487914549037193e-35,6.359381586662494e-06,0.0,8.983929667659751e-35,0.00045351474545896053,2.524158182817815e-19,-6.977150042075664e-05,-0.00018140589236281812,-3.138716801052003e-20,0.0,3.1070981791480896e-35,0.0,2.7908599804504775e-05,1.0951838650490136e-34,0.0007086168043315411,1.0789339625617308e-18,-1.8251147734149163e-33,-0.0010629252064973116,-1.3486674532021635e-19,9.585198471936457e-35,1.3350812546820963e-34,8.983929667659751e-35,1.0951838650490136e-34,0.00021258502965793014,9.0,14.0,7.0,0.038116540759801865,-0.006453308742493391,-0.004404761828482151,-0.007936508394777775,0.0003092146071139723,0.0002721088530961424,0.0005102040595375001,0.00014172335795592517,0.0003401360590942204,0.0004724111931864172,-0.006453308742493391,0.0031152265146374702,0.0002721088530961424,0.0005102040595375001,-0.000265041075181216,-6.80272132740356e-05,-0.00012755101488437504,-8.851494298807439e-20,-9.486769009248164e-20,-3.40027660986707e-19,-0.004404761828482151,0.0002721088530961424,0.0013154108310118318,0.0003401360590942204,-1.3167898510989304e-19,-4.186289879726246e-05,2.788629408895127e-20,-7.086167897796258e-05,-5.232862531556748e-05,-1.6893417320638361e-34,-0.007936508394777775,0.0005102040595375001,0.0003401360590942204,0.005102040711790323,-2.432505536971174e-19,2.9309396940537664e-20,-0.0001700680295471102,3.3881317890172014e-21,-0.00011337868636474013,-0.0005668934318237007,0.0003092146071139723,-0.000265041075181216,-1.3167898510989304e-19,-2.432505536971174e-19,3.3130134397652e-05,-1.1770188811738579e-20,-2.2069102810319485e-20,1.1034551405159743e-20,1.1770188811738579e-20,4.250345762333837e-20,0.0002721088530961424,-6.80272132740356e-05,-4.186289879726246e-05,2.9309396940537664e-20,-1.1770188811738579e-20,1.0465724699315615e-05,-6.971573522237817e-21,-1.2705494208814505e-21,-2.117582368135751e-22,-1.5100262390432943e-35,0.0005102040595375001,-0.00012755101488437504,2.788629408895127e-20,-0.0001700680295471102,-2.2069102810319485e-20,-6.971573522237817e-21,4.251700738677755e-05,-6.958926556867942e-36,-7.899322037525772e-36,-2.8312989650301123e-35,0.00014172335795592517,-8.851494298807439e-20,-7.086167897796258e-05,3.3881317890172014e-21,1.1034551405159743e-20,-1.2705494208814505e-21,-6.958926556867942e-36,5.450898242997937e-06,-4.235164736271502e-22,1.4156494825150562e-35,0.0003401360590942204,-9.486769009248164e-20,-5.232862531556748e-05,-0.00011337868636474013,1.1770188811738579e-20,-2.117582368135751e-22,-7.899322037525772e-36,-4.235164736271502e-22,1.744287510518916e-05,1.5100262390432943e-35,0.0004724111931864172,-3.40027660986707e-19,-1.6893417320638361e-34,-0.0005668934318237007,4.250345762333837e-20,-1.5100262390432943e-35,-2.8312989650301123e-35,1.4156494825150562e-35,1.5100262390432943e-35,9.448223863728344e-05,9.0,14.0,8.0,0.034096021205186844,-0.005696248263120651,-0.0038872354198247194,-0.006283068563789129,0.00027056277031078935,0.0002380952355451882,0.00039682540227659047,0.00012400794366840273,0.00026455026818439364,0.0003306878206785768,-0.005696248263120651,0.002738224109634757,0.0002380952355451882,0.00039682540227659047,-0.00023191094805952162,-5.952380888629705e-05,-9.920635056914762e-05,1.4928955695357043e-19,1.4399560103323106e-19,4.577295426417442e-19,-0.0038872354198247194,0.0002380952355451882,0.001156071899458766,0.00026455026818439364,3.769267663960197e-19,-3.6630037357099354e-05,-2.1689338051865282e-20,-6.200397183420137e-05,-4.0700040699448436e-05,-7.4395159427646145e-34,-0.006283068563789129,0.00039682540227659047,0.00026455026818439364,0.0034486015792936087,6.15179184639362e-19,-2.4929622615498567e-20,-0.00011337868636474013,-5.082197683525802e-21,-7.558579090982676e-05,-0.0003306878206785768,0.00027056277031078935,-0.00023191094805952162,3.769267663960197e-19,6.15179184639362e-19,2.8988868507440202e-05,-1.5452144201622566e-20,-2.3914033846978114e-20,-1.931046516097794e-20,-1.8309182416528108e-20,-5.721619283021803e-20,0.0002380952355451882,-5.952380888629705e-05,-3.6630037357099354e-05,-2.4929622615498567e-20,-1.5452144201622566e-20,9.157509339274839e-06,5.4223345129663204e-21,4.235164736271502e-22,4.235164736271502e-22,3.049835877434327e-35,0.00039682540227659047,-9.920635056914762e-05,-2.1689338051865282e-20,-0.00011337868636474013,-2.3914033846978114e-20,5.4223345129663204e-21,2.8344671591185033e-05,1.598672317118311e-35,1.5140367238591063e-35,4.719984048198328e-35,0.00012400794366840273,1.4928955695357043e-19,-6.200397183420137e-05,-5.082197683525802e-21,-1.931046516097794e-20,4.235164736271502e-22,1.598672317118311e-35,4.76953618999687e-06,8.470329472543003e-22,3.811364223183014e-35,0.00026455026818439364,1.4399560103323106e-19,-4.0700040699448436e-05,-7.558579090982676e-05,-1.8309182416528108e-20,4.235164736271502e-22,1.5140367238591063e-35,8.470329472543003e-22,1.1628582797129638e-05,3.6137379662680484e-35,0.0003306878206785768,4.577295426417442e-19,-7.4395159427646145e-34,-0.0003306878206785768,-5.721619283021803e-20,3.049835877434327e-35,4.719984048198328e-35,3.811364223183014e-35,3.6137379662680484e-35,4.724111931864172e-05,9.0,14.0,9.0,0.03084736317396164,-0.005098605062812567,-0.0034788360353559256,-0.005098605062812567,0.0002405002451268956,0.00021164021745789796,0.0003174603043589741,0.00011022927355952561,0.00021164021745789796,0.0002405002451268956,-0.005098605062812567,0.002442795317620039,0.00021164021745789796,0.0003174603043589741,-0.00020614305685739964,-5.291005436447449e-05,-7.936507608974352e-05,1.3700757921838308e-19,1.1604351377383915e-19,3.2338295175515596e-19,-0.0034788360353559256,0.00021164021745789796,0.0010312373051419854,0.00021164021745789796,3.3056895407973967e-19,-3.256003401475027e-05,-1.9088933119062265e-34,-5.5114636779762805e-05,-3.256003401475027e-05,-5.185736491335716e-34,-0.005098605062812567,0.0003174603043589741,0.00021164021745789796,0.002442795317620039,4.781100838629203e-19,-9.285734095720637e-23,-7.936507608974352e-05,-1.6940658945086007e-21,-5.291005436447449e-05,-0.00020614305685739964,0.0002405002451268956,-0.00020614305685739964,3.3056895407973967e-19,4.781100838629203e-19,2.5767882107174955e-05,-1.2209101830751726e-20,-1.487984346207384e-20,-1.716485881841769e-20,-1.4647345933222487e-20,-4.0422868969394495e-20,0.00021164021745789796,-5.291005436447449e-05,-3.256003401475027e-05,-9.285734095720637e-23,-1.2209101830751726e-20,8.140008503687568e-06,7.05023112906377e-36,0.0,2.117582368135751e-22,1.9152793514189054e-35,0.0003174603043589741,-7.936507608974352e-05,-1.9088933119062265e-34,-7.936507608974352e-05,-1.487984346207384e-20,7.05023112906377e-36,1.984126902243588e-05,9.911966529915082e-36,8.458211343198895e-36,2.334246660216085e-35,0.00011022927355952561,1.3700757921838308e-19,-5.5114636779762805e-05,-1.6940658945086007e-21,-1.716485881841769e-20,0.0,9.911966529915082e-36,4.2395877244416624e-06,2.117582368135751e-22,2.6927039910736524e-35,0.00021164021745789796,1.1604351377383915e-19,-3.256003401475027e-05,-5.291005436447449e-05,-1.4647345933222487e-20,2.117582368135751e-22,8.458211343198895e-36,2.117582368135751e-22,8.140008503687568e-06,2.297774049423976e-35,0.0002405002451268956,3.2338295175515596e-19,-5.185736491335716e-34,-0.00020614305685739964,-4.0422868969394495e-20,1.9152793514189054e-35,2.334246660216085e-35,2.6927039910736524e-35,2.297774049423976e-35,2.5767882107174955e-05,9.0,14.0,10.0,0.028166666626930237,-0.004614718724042177,-0.0031482684426009655,-0.004220779053866863,0.00021645022206939757,0.00019047618843615055,0.0002597402490209788,9.920635056914762e-05,0.00017316016601398587,0.0001803751802071929,-0.004614718724042177,0.002205009339377284,0.00019047618843615055,0.0002597402490209788,-0.00018552875553723425,-4.761904710903764e-05,-6.49350622552447e-05,-6.162164691275035e-20,-4.743384504624082e-20,-1.1859356943067235e-19,-0.0031482684426009655,0.00019047618843615055,0.0009307775762863457,0.00017316016601398587,-1.6693634379844116e-19,-2.930402843048796e-05,0.0,-4.960317528457381e-05,-2.6640027499524876e-05,-1.0670893204756205e-34,-0.004220779053866863,0.0002597402490209788,0.00017316016601398587,0.0017947329906746745,-1.7236638385424258e-19,1.4791887919765948e-22,-5.77200589759741e-05,0.0,-3.848003689199686e-05,-0.00013528138515539467,0.00021645022206939757,-0.00018552875553723425,-1.6693634379844116e-19,-1.7236638385424258e-19,2.319109444215428e-05,9.889372353661927e-21,0.0,7.724185902832463e-21,5.992095953437349e-21,1.4824196178834044e-20,0.00019047618843615055,-4.761904710903764e-05,-2.930402843048796e-05,1.4791887919765948e-22,9.889372353661927e-21,7.32600710762199e-06,0.0,-2.117582368135751e-22,0.0,6.321477723950168e-36,0.0002597402490209788,-6.49350622552447e-05,0.0,-5.77200589759741e-05,0.0,0.0,1.4430014743993524e-05,0.0,0.0,-0.0,9.920635056914762e-05,-6.162164691275035e-20,-4.960317528457381e-05,0.0,7.724185902832463e-21,-2.117582368135751e-22,0.0,3.815629042946966e-06,0.0,4.9374489964243425e-36,0.00017316016601398587,-4.743384504624082e-20,-2.6640027499524876e-05,-3.848003689199686e-05,5.992095953437349e-21,0.0,0.0,0.0,5.920006060478045e-06,3.830263394320478e-36,0.0001803751802071929,-1.1859356943067235e-19,-1.0670893204756205e-34,-0.00013528138515539467,1.4824196178834044e-20,6.321477723950168e-36,-0.0,4.9374489964243425e-36,3.830263394320478e-36,1.5031265320430975e-05,9.0,14.0,11.0,0.025916356593370438,-0.004214875865727663,-0.002875180449336767,-0.0035520035307854414,0.00019677291857078671,0.00017316016601398587,0.00021645022206939757,9.018759010359645e-05,0.00014430013834498823,0.0001387501397402957,-0.004214875865727663,0.0020094732753932476,0.00017316016601398587,0.00021645022206939757,-0.00016866250371094793,-4.329004150349647e-05,-5.411255551734939e-05,-5.717472393966527e-20,-3.9810548520952116e-20,-8.962536833694147e-20,-0.002875180449336767,0.00017316016601398587,0.0008481796248815954,0.00014430013834498823,-1.4894504915313917e-19,-2.6640027499524876e-05,-9.382838382180472e-35,-4.5093795051798224e-05,-2.2200021703611128e-05,-7.914772785782503e-35,-0.0035520035307854414,0.00021645022206939757,0.00014430013834498823,0.0013579013757407665,-1.976136292846773e-19,-5.79685234928062e-22,-4.329004150349647e-05,1.6940658945086007e-21,-2.886002948798705e-05,-9.250009316019714e-05,0.00019677291857078671,-0.00016866250371094793,-1.4894504915313917e-19,-1.976136292846773e-19,2.108281296386849e-05,8.173035590512617e-21,1.3281182026789435e-20,7.02198711095737e-21,4.9934130925827324e-21,1.1203171042117684e-20,0.00017316016601398587,-4.329004150349647e-05,-2.6640027499524876e-05,-5.79685234928062e-22,8.173035590512617e-21,6.660006874881219e-06,5.148628307163712e-36,0.0,1.0587911840678754e-22,4.3430595317676465e-36,0.00021645022206939757,-5.411255551734939e-05,-9.382838382180472e-35,-4.329004150349647e-05,1.3281182026789435e-20,5.148628307163712e-36,1.0822510375874117e-05,4.423522493163135e-36,3.1456157798987854e-36,7.057471783963976e-36,9.018759010359645e-05,-5.717472393966527e-20,-4.5093795051798224e-05,1.6940658945086007e-21,7.02198711095737e-21,0.0,4.423522493163135e-36,3.4687534480326576e-06,-4.235164736271502e-22,3.731405352565655e-36,0.00014430013834498823,-3.9810548520952116e-20,-2.2200021703611128e-05,-2.886002948798705e-05,4.9934130925827324e-21,1.0587911840678754e-22,3.1456157798987854e-36,-4.235164736271502e-22,4.440004431671696e-06,2.653443885987223e-36,0.0001387501397402957,-8.962536833694147e-20,-7.914772785782503e-35,-9.250009316019714e-05,1.1203171042117684e-20,4.3430595317676465e-36,7.057471783963976e-36,3.731405352565655e-36,2.653443885987223e-36,9.250009497918654e-06,9.0,14.0,12.0,0.024000134319067,-0.0038788989186286926,-0.0026457570493221283,-0.0030306994449347258,0.0001803751802071929,0.00015873015217948705,0.00018315018678549677,8.26719551696442e-05,0.00012210012937430292,0.00010901796485995874,-0.0038788989186286926,0.0018458326812833548,0.00015873015217948705,0.00018315018678549677,-0.00015460730355698615,-3.968253804487176e-05,-4.578754669637419e-05,1.0460856898590609e-19,7.962109704190423e-20,1.3891340334970526e-19,-0.0026457570493221283,0.00015873015217948705,0.000779063324443996,0.00012210012937430292,2.6877548624412558e-19,-2.44200236920733e-05,1.1011428314305904e-20,-4.13359775848221e-05,-1.8784634448820725e-05,2.1175823681357508e-20,-0.0030306994449347258,0.00018315018678549677,0.00012210012937430292,0.0010525189572945237,2.8327560049066216e-19,-1.372616283783059e-36,-3.330003164592199e-05,2.5048956545504804e-22,-2.2200021703611128e-05,-6.541077891597524e-05,0.0001803751802071929,-0.00015460730355698615,2.6877548624412558e-19,2.8327560049066216e-19,1.932591294462327e-05,-1.373524036738926e-20,-9.36493661412904e-21,-1.2873643709916483e-20,-8.450391511723634e-21,-1.7353483463061056e-20,0.00015873015217948705,-3.968253804487176e-05,-2.44200236920733e-05,-1.372616283783059e-36,-1.373524036738926e-20,6.105005923018325e-06,2.6469779601696886e-23,-2.117582368135751e-22,2.8951605394896885e-38,4.9144074864780466e-23,0.00018315018678549677,-4.578754669637419e-05,1.1011428314305904e-20,-3.330003164592199e-05,-9.36493661412904e-21,2.6469779601696886e-23,8.325007911480498e-06,5.293955920339377e-23,-2.0117032497289633e-21,0.0,8.26719551696442e-05,1.0460856898590609e-19,-4.13359775848221e-05,2.5048956545504804e-22,-1.2873643709916483e-20,-2.117582368135751e-22,5.293955920339377e-23,3.179690793331247e-06,-2.117582368135751e-22,1.0587911840678754e-22,0.00012210012937430292,7.962109704190423e-20,-1.8784634448820725e-05,-2.2200021703611128e-05,-8.450391511723634e-21,2.8951605394896885e-38,-2.0117032497289633e-21,-2.117582368135751e-22,3.4153879369114293e-06,-4.0234064994579266e-21,0.00010901796485995874,1.3891340334970526e-19,2.1175823681357508e-20,-6.541077891597524e-05,-1.7353483463061056e-20,4.9144074864780466e-23,0.0,1.0587911840678754e-22,-4.0234064994579266e-21,5.946434612269513e-06,9.0,14.0,13.0,0.022348525002598763,-0.0035925977863371372,-0.0024502878077328205,-0.002616431098431349,0.00016650016186758876,0.00014652014942839742,0.00015698587230872363,7.631257903994992e-05,0.00010465725063113496,8.721437188796699e-05,-0.0035925977863371372,0.0017068645684048533,0.00014652014942839742,0.00015698587230872363,-0.00014271443069446832,-3.6630037357099354e-05,-3.924646807718091e-05,-4.658681209898652e-20,-2.244637310223896e-20,-5.251604272976662e-20,-0.0024502878077328205,0.00014652014942839742,0.0007203739369288087,0.00010465725063113496,-9.897144297128231e-20,-2.254156061098911e-05,5.082197683525802e-21,-3.815628951997496e-05,-1.6101115761557594e-05,8.470329472543003e-21,-0.002616431098431349,0.00015698587230872363,0.00010465725063113496,0.0008325008093379438,-1.3301799665116033e-19,2.057530346699952e-36,-2.616431265778374e-05,-3.918179977279036e-22,-1.744287510518916e-05,-4.7571476898156106e-05,0.00016650016186758876,-0.00014271443069446832,-9.897144297128231e-20,-1.3301799665116033e-19,1.783930383680854e-05,-3.76158192263132e-37,6.792151261909103e-21,5.9416815569242294e-21,3.621596246768191e-21,6.859084229072708e-21,0.00014652014942839742,-3.6630037357099354e-05,-2.254156061098911e-05,2.057530346699952e-36,-3.76158192263132e-37,5.635390152747277e-06,1.3234889800848443e-23,-2.117582368135751e-22,-1.0587911840678754e-22,4.943919088486727e-23,0.00015698587230872363,-3.924646807718091e-05,5.082197683525802e-21,-2.616431265778374e-05,6.792151261909103e-21,1.3234889800848443e-23,6.541078164445935e-06,-7.940933880509066e-23,-8.470329472543003e-22,-4.235164736271502e-22,7.631257903994992e-05,-4.658681209898652e-20,-3.815628951997496e-05,-3.918179977279036e-22,5.9416815569242294e-21,-2.117582368135751e-22,-7.940933880509066e-23,2.9350990189414006e-06,2.117582368135751e-22,-5.293955920339377e-23,0.00010465725063113496,-2.244637310223896e-20,-1.6101115761557594e-05,-1.744287510518916e-05,3.621596246768191e-21,-1.0587911840678754e-22,-8.470329472543003e-22,2.117582368135751e-22,2.683519142010482e-06,-1.4823076576950256e-21,8.721437188796699e-05,-5.251604272976662e-20,8.470329472543003e-21,-4.7571476898156106e-05,6.859084229072708e-21,4.943919088486727e-23,-4.235164736271502e-22,-5.293955920339377e-23,-1.4823076576950256e-21,3.964289589930559e-06,9.0,14.0,14.0,0.020910121500492096,-0.0033457018435001373,-0.0022817461285740137,-0.0022817461285740137,0.00015460730355698615,0.0001360544265480712,0.0001360544265480712,7.086167897796258e-05,9.070294618140906e-05,7.086167897796258e-05,-0.0033457018435001373,0.0015873751835897565,0.0001360544265480712,0.0001360544265480712,-0.000132520537590608,-3.40136066370178e-05,-3.40136066370178e-05,-4.2351647362715017e-20,-2.244637310223896e-20,-4.404571325722362e-20,-0.0022817461285740137,0.0001360544265480712,0.0006699154037050903,9.070294618140906e-05,-6.858586789794182e-20,-2.093144939863123e-05,1.1011428314305904e-20,-3.543083948898129e-05,-1.3954299902252387e-05,6.776263578034403e-21,-0.0022817461285740137,0.0001360544265480712,9.070294618140906e-05,0.0006699154037050903,-6.858586789794182e-20,7.523530788596565e-21,-2.093144939863123e-05,6.140818928022031e-23,-1.3954299902252387e-05,-3.543083948898129e-05,0.00015460730355698615,-0.000132520537590608,-6.858586789794182e-20,-6.858586789794182e-20,1.6565067198826e-05,-5.8850944058692896e-21,-5.8850944058692896e-21,5.517275702579871e-21,3.1387168414416816e-21,5.517275702579871e-21,0.0001360544265480712,-3.40136066370178e-05,-2.093144939863123e-05,7.523530788596565e-21,-5.8850944058692896e-21,5.2328623496578075e-06,-1.8894333940036598e-21,-2.117582368135751e-22,1.0798307986077164e-22,-5.955790656069357e-23,0.0001360544265480712,-3.40136066370178e-05,1.1011428314305904e-20,-2.093144939863123e-05,-5.8850944058692896e-21,-1.8894333940036598e-21,5.2328623496578075e-06,0.0,-5.293955920339377e-22,2.117582368135751e-22,7.086167897796258e-05,-4.2351647362715017e-20,-3.543083948898129e-05,6.140818928022031e-23,5.517275702579871e-21,-2.117582368135751e-22,0.0,2.7254491214989685e-06,0.0,-5.293955920339377e-23,9.070294618140906e-05,-2.244637310223896e-20,-1.3954299902252387e-05,-1.3954299902252387e-05,3.1387168414416816e-21,1.0798307986077164e-22,-5.293955920339377e-22,0.0,2.146815404557856e-06,-8.470329472543003e-22,7.086167897796258e-05,-4.404571325722362e-20,6.776263578034403e-21,-3.543083948898129e-05,5.517275702579871e-21,-5.955790656069357e-23,2.117582368135751e-22,-5.293955920339377e-23,-8.470329472543003e-22,2.7254491214989685e-06,9.0,14.0,15.0,0.01964605413377285,-0.00313059170730412,-0.0021349205635488033,-0.002007469767704606,0.00014430013834498823,0.00012698413047473878,0.0001190476177725941,6.613756704609841e-05,7.936507608974352e-05,5.835667616338469e-05,-0.00313059170730412,0.0014835343463346362,0.00012698413047473878,0.0001190476177725941,-0.00012368583702482283,-3.1746032618684694e-05,-2.9761904443148524e-05,-4.298692207315574e-20,4.658681209898652e-20,1.2959604092990795e-19,-0.0021349205635488033,0.00012698413047473878,0.0006260683876462281,7.936507608974352e-05,-3.947917221274513e-20,-1.953601895365864e-05,1.4399560103323106e-20,-3.3068783523049206e-05,-1.221001184603665e-05,6.606856988583543e-20,-0.002007469767704606,0.0001190476177725941,7.936507608974352e-05,0.0005471419426612556,2.1034070773760062e-19,1.1602314445125503e-19,-1.70068033185089e-05,4.3549721544770044e-20,-1.1337868272676133e-05,-2.6933850676869042e-05,0.00014430013834498823,-0.00012368583702482283,-3.947917221274513e-20,2.1034070773760062e-19,1.5460729628102854e-05,4.422724313557856e-35,-2.352169456996404e-21,5.149457403187237e-21,-3.923396001315004e-21,-1.1339680076995942e-20,0.00012698413047473878,-3.1746032618684694e-05,-1.953601895365864e-05,1.1602314445125503e-19,4.422724313557856e-35,4.88400473841466e-06,-3.606345508121028e-21,2.117582368135751e-22,-2.3512905775955664e-21,-5.713652742085222e-21,0.0001190476177725941,-2.9761904443148524e-05,1.4399560103323106e-20,-1.70068033185089e-05,-2.352169456996404e-21,-3.606345508121028e-21,4.251700829627225e-06,-2.6469779601696886e-23,5.293955920339377e-23,0.0,6.613756704609841e-05,-4.298692207315574e-20,-3.3068783523049206e-05,4.3549721544770044e-20,5.149457403187237e-21,2.117582368135751e-22,-2.6469779601696886e-23,2.5437525437155273e-06,-5.293955920339377e-22,-2.329340604949326e-21,7.936507608974352e-05,4.658681209898652e-20,-1.221001184603665e-05,-1.1337868272676133e-05,-3.923396001315004e-21,-2.3512905775955664e-21,5.293955920339377e-23,-5.293955920339377e-22,1.7442874877815484e-06,-1.9058241313221758e-21,5.835667616338469e-05,1.2959604092990795e-19,6.606856988583543e-20,-2.6933850676869042e-05,-1.1339680076995942e-20,-5.713652742085222e-21,0.0,-2.329340604949326e-21,-1.9058241313221758e-21,1.92384641195531e-06,9.0,14.0,16.0,0.018526379019021988,-0.002941494807600975,-0.0020058648660779,-0.0017798786284402013,0.00013528138515539467,0.0001190476177725941,0.0001050420178216882,6.200397183420137e-05,7.002801430644467e-05,4.863056165049784e-05,-0.002941494807600975,0.0013924547238275409,0.0001190476177725941,0.0001050420178216882,-0.00011595547402976081,-2.9761904443148524e-05,-2.626050445542205e-05,7.602120701607346e-20,4.0234064994579266e-20,6.013933925505532e-20,-0.0020058648660779,0.0001190476177725941,0.0005876124487258494,7.002801430644467e-05,1.9277143030106552e-19,-1.8315018678549677e-05,-3.3881317890172014e-21,-3.100198591710068e-05,-1.0773540452646557e-05,2.964615315390051e-21,-0.0017798786284402013,0.0001050420178216882,7.002801430644467e-05,0.0004526810662355274,1.669231993815198e-19,-5.696661612198073e-21,-1.4005602679389995e-05,-6.179882815177596e-22,-9.337068149761762e-06,-2.0841669538640417e-05,0.00013528138515539467,-0.00011595547402976081,1.9277143030106552e-19,1.669231993815198e-19,1.4494434253720101e-05,-7.726072100811283e-21,-5.908173068076946e-21,-9.65523258048897e-21,-4.846548144176223e-21,-7.452529773029819e-21,0.0001190476177725941,-2.9761904443148524e-05,-1.8315018678549677e-05,-5.696661612198073e-21,-7.726072100811283e-21,4.578754669637419e-06,1.4335647880203097e-21,2.117582368135751e-22,6.456064154055176e-23,-2.02415870709013e-23,0.0001050420178216882,-2.626050445542205e-05,-3.3881317890172014e-21,-1.4005602679389995e-05,-5.908173068076946e-21,1.4335647880203097e-21,3.5014006698474986e-06,1.3234889800848443e-23,-3.1763735522036263e-22,-2.117582368135751e-22,6.200397183420137e-05,7.602120701607346e-20,-3.100198591710068e-05,-6.179882815177596e-22,-9.65523258048897e-21,2.117582368135751e-22,1.3234889800848443e-23,2.384768094998435e-06,1.0587911840678754e-22,-2.6469779601696886e-23,7.002801430644467e-05,4.0234064994579266e-20,-1.0773540452646557e-05,-9.337068149761762e-06,-4.846548144176223e-21,6.456064154055176e-23,-3.1763735522036263e-22,1.0587911840678754e-22,1.4364720755111193e-06,-3.705769144237564e-22,4.863056165049784e-05,6.013933925505532e-20,2.964615315390051e-21,-2.0841669538640417e-05,-7.452529773029819e-21,-2.02415870709013e-23,-2.117582368135751e-22,-2.6469779601696886e-23,-3.705769144237564e-22,1.3894447192797088e-06,9.0,15.0,3.0,0.06852726638317108,-0.012979798018932343,-0.008349672891199589,-0.029722223058342934,0.0006734006456099451,0.0005555555690079927,0.002222222276031971,0.00027233114815317094,0.0013888889225199819,0.003703703638166189,-0.012979798018932343,0.006515752989798784,0.0005555555690079927,0.002222222276031971,-0.0005772005533799529,-0.00013888889225199819,-0.0005555555690079927,-1.6263032587282567e-19,-3.7947076036992655e-19,-4.87890977618477e-18,-0.008349672891199589,0.0005555555690079927,0.0024078264832496643,0.0013888889225199819,-3.4237548390846803e-19,-7.936507608974352e-05,0.0,-0.0001256913092220202,-0.00019841270113829523,-4.716279450311944e-18,-0.029722223058342934,0.002222222276031971,0.0013888889225199819,0.06675925850868225,-2.2013637700684905e-18,3.619026655431735e-21,-0.002222222276031971,-8.1564407964611545e-19,-0.0013888889225199819,-0.02222222276031971,0.0006734006456099451,-0.0005772005533799529,-3.4237548390846803e-19,-2.2013637700684905e-18,7.215006917249411e-05,-1.7677140225160475e-36,1.4582246819014563e-19,2.1022420451820135e-20,4.8061604045334676e-20,6.408213700381996e-19,0.0005555555690079927,-0.00013888889225199819,-7.936507608974352e-05,3.619026655431735e-21,-1.7677140225160475e-36,1.984126902243588e-05,-4.298397806950101e-22,-7.271371968222521e-22,-7.980454675900935e-22,4.60145186295799e-21,0.002222222276031971,-0.0005555555690079927,0.0,-0.002222222276031971,1.4582246819014563e-19,-4.298397806950101e-22,0.0005555555690079927,6.123847690051468e-22,6.776263578034403e-21,-3.2526065174565133e-19,0.00027233114815317094,-1.6263032587282567e-19,-0.0001256913092220202,-8.1564407964611545e-19,2.1022420451820135e-20,-7.271371968222521e-22,6.123847690051468e-22,8.977950528787915e-06,2.6018143834004334e-20,3.1761481454867056e-19,0.0013888889225199819,-3.7947076036992655e-19,-0.00019841270113829523,-0.0013888889225199819,4.8061604045334676e-20,-7.980454675900935e-22,6.776263578034403e-21,2.6018143834004334e-20,0.00019841270113829523,3.2526065174565133e-19,0.003703703638166189,-4.87890977618477e-18,-4.716279450311944e-18,-0.02222222276031971,6.408213700381996e-19,4.60145186295799e-21,-3.2526065174565133e-19,3.1761481454867056e-19,3.2526065174565133e-19,0.011111111380159855,9.0,15.0,4.0,0.05566859617829323,-0.010068181902170181,-0.006470588035881519,-0.01894444413483143,0.0005050505278632045,0.00041666667675599456,0.0013333333190530539,0.00020424836839083582,0.0008333333535119891,0.0018518518190830946,-0.010068181902170181,0.004970147740095854,0.00041666667675599456,0.0013333333190530539,-0.00043290044413879514,-0.00010416666918899864,-0.00033333332976326346,-1.3213713977167085e-19,-2.168404344971009e-19,-1.6805133673525319e-18,-0.006470588035881519,0.00041666667675599456,0.0018356316722929478,0.0008333333535119891,-3.577338755887108e-19,-5.952380888629705e-05,1.3552527156068805e-20,-9.426847827853635e-05,-0.0001190476177725941,-1.6534083130403943e-18,-0.01894444413483143,0.0013333333190530539,0.0008333333535119891,0.025592593476176262,-1.2246950772148797e-18,-0.0,-0.0008888888987712562,-4.667961659383614e-19,-0.0005555555690079927,-0.0055555556900799274,0.0005050505278632045,-0.00043290044413879514,-3.577338755887108e-19,-1.2246950772148797e-18,5.411255551734939e-05,2.343575220068627e-20,8.749347832914797e-20,1.57668153388651e-20,2.8836960488496245e-20,2.242874898531275e-19,0.00041666667675599456,-0.00010416666918899864,-5.952380888629705e-05,-0.0,2.343575220068627e-20,1.4880952221574262e-05,1.2139991254080026e-22,9.234439204219546e-23,4.993914126542631e-22,-4.0635247591667485e-22,0.0013333333190530539,-0.00033333332976326346,1.3552527156068805e-20,-0.0008888888987712562,8.749347832914797e-20,1.2139991254080026e-22,0.00022222222469281405,4.926202345406294e-22,-1.3552527156068805e-20,-8.131516293641283e-20,0.00020424836839083582,-1.3213713977167085e-19,-9.426847827853635e-05,-4.667961659383614e-19,1.57668153388651e-20,9.234439204219546e-23,4.926202345406294e-22,6.7334626692172606e-06,1.8198983218125292e-20,1.1393986422914609e-19,0.0008333333535119891,-2.168404344971009e-19,-0.0001190476177725941,-0.0005555555690079927,2.8836960488496245e-20,4.993914126542631e-22,-1.3552527156068805e-20,1.8198983218125292e-20,7.936507608974352e-05,5.421010862427522e-20,0.0018518518190830946,-1.6805133673525319e-18,-1.6534083130403943e-18,-0.0055555556900799274,2.242874898531275e-19,-4.0635247591667485e-22,-8.131516293641283e-20,1.1393986422914609e-19,5.421010862427522e-20,0.0018518518190830946,9.0,15.0,5.0,0.046954985707998276,-0.008232323452830315,-0.005287581589072943,-0.01315873023122549,0.0004040404164697975,0.00033333332976326346,0.0008888888987712562,0.0001633986976230517,0.0005555555690079927,0.0010582010727375746,-0.008232323452830315,0.00402056286111474,0.00033333332976326346,0.0008888888987712562,-0.00034632033202797174,-8.333333244081587e-05,-0.00022222222469281405,2.0837010502455788e-19,3.083199928005653e-19,1.734723475976807e-18,-0.005287581589072943,0.00033333332976326346,0.0014843783574178815,0.0005555555690079927,5.500662668549667e-19,-4.761904710903764e-05,0.0,-7.54147840780206e-05,-7.936507608974352e-05,1.4230153513872246e-18,-0.01315873023122549,0.0008888888987712562,0.0005555555690079927,0.012928571552038193,1.4279648899800122e-18,8.410311218312459e-21,-0.0004444444493856281,5.942798460777503e-19,-0.00027777778450399637,-0.002116402145475149,0.0004040404164697975,-0.00034632033202797174,5.500662668549667e-19,1.4279648899800122e-18,4.329004150349647e-05,-2.999776307537237e-20,-6.999478266331837e-20,-2.5226905188419016e-20,-3.8449280651328326e-20,-2.1971018253598876e-19,0.00033333332976326346,-8.333333244081587e-05,-4.761904710903764e-05,8.410311218312459e-21,-2.999776307537237e-20,1.190476177725941e-05,-1.2232565659029522e-22,-3.5856802806559176e-22,-2.0880243179969713e-22,-1.2638880522058236e-21,0.0008888888987712562,-0.00022222222469281405,0.0,-0.0004444444493856281,-6.999478266331837e-20,-1.2232565659029522e-22,0.00011111111234640703,-1.223569585910144e-22,-5.082197683525802e-21,0.0,0.0001633986976230517,2.0837010502455788e-19,-7.54147840780206e-05,5.942798460777503e-19,-2.5226905188419016e-20,-3.5856802806559176e-22,-1.223569585910144e-22,5.386770226323279e-06,-2.4466572724705064e-20,-1.0476838286519075e-19,0.0005555555690079927,3.083199928005653e-19,-7.936507608974352e-05,-0.00027777778450399637,-3.8449280651328326e-20,-2.0880243179969713e-22,-5.082197683525802e-21,-2.4466572724705064e-20,3.968253804487176e-05,2.0328790734103208e-20,0.0010582010727375746,1.734723475976807e-18,1.4230153513872246e-18,-0.002116402145475149,-2.1971018253598876e-19,-1.2638880522058236e-21,0.0,-1.0476838286519075e-19,2.0328790734103208e-20,0.0005291005363687873,9.0,15.0,6.0,0.04063268005847931,-0.006966089364141226,-0.004472455475479364,-0.009682539850473404,0.00033670032280497253,0.00027777778450399637,0.0006349206087179482,0.00013616557407658547,0.00039682540227659047,0.0006613756413571537,-0.006966089364141226,0.003376923967152834,0.00027777778450399637,0.0006349206087179482,-0.00028860027668997645,-6.944444612599909e-05,-0.00015873015217948705,-8.533856943587076e-20,-1.1011428314305904e-19,-5.035025124155551e-19,-0.004472455475479364,0.00027777778450399637,0.0012464302126318216,0.00039682540227659047,-1.8148665756840206e-19,-3.968253804487176e-05,-1.6768116969680398e-34,-6.28456546110101e-05,-5.668934318237007e-05,-5.042765983725399e-19,-0.009682539850473404,0.0006349206087179482,0.00039682540227659047,0.007510581985116005,-5.441356920556912e-19,-8.656306775719095e-22,-0.00025396826094947755,-2.405573570202213e-19,-0.00015873015217948705,-0.0009920635493472219,0.00033670032280497253,-0.00028860027668997645,-1.8148665756840206e-19,-5.441356920556912e-19,3.607503458624706e-05,7.52316384526264e-37,3.333084857956358e-20,1.0511210225910068e-20,1.3731886408499298e-20,6.293781405194439e-20,0.00027777778450399637,-6.944444612599909e-05,-3.968253804487176e-05,-8.656306775719095e-22,7.52316384526264e-37,9.92063451121794e-06,-0.0,0.0,2.117582368135751e-22,-1.528515917138319e-36,0.0006349206087179482,-0.00015873015217948705,-1.6768116969680398e-34,-0.00025396826094947755,3.333084857956358e-20,-0.0,6.349206523736939e-05,9.711634569694561e-36,1.2687317732263156e-35,5.815020172892898e-35,0.00013616557407658547,-8.533856943587076e-20,-6.28456546110101e-05,-2.405573570202213e-19,1.0511210225910068e-20,0.0,9.711634569694561e-36,4.488975264393957e-06,1.1858461261560205e-20,3.132651240716517e-20,0.00039682540227659047,-1.1011428314305904e-19,-5.668934318237007e-05,-0.00015873015217948705,1.3731886408499298e-20,2.117582368135751e-22,1.2687317732263156e-35,1.1858461261560205e-20,2.2675736545352265e-05,2.6282161467837934e-20,0.0006613756413571537,-5.035025124155551e-19,-5.042765983725399e-19,-0.0009920635493472219,6.293781405194439e-20,-1.528515917138319e-36,5.815020172892898e-35,3.132651240716517e-20,2.6282161467837934e-20,0.00019841270113829523,9.0,15.0,7.0,0.03582606092095375,-0.006038961000740528,-0.003876050468534231,-0.007427248638123274,0.00028860027668997645,0.0002380952355451882,0.0004761904710903764,0.00011671335232676938,0.00029761905898340046,0.00044091709423810244,-0.006038961000740528,0.0029115132056176662,0.0002380952355451882,0.0004761904710903764,-0.00024737167404964566,-5.952380888629705e-05,-0.0001190476177725941,1.8486494073825105e-19,5.929230630780102e-20,-6.345657132581907e-19,-0.003876050468534231,0.0002380952355451882,0.0010744426399469376,0.00029761905898340046,4.1381548034888726e-19,-3.40136066370178e-05,-3.928278467192341e-20,-5.3867701353738084e-05,-4.251700738677755e-05,-9.239774946291361e-19,-0.007427248638123274,0.0004761904710903764,0.00029761905898340046,0.004768518730998039,-1.3503021688877214e-19,-3.9235489974165837e-19,-0.00015873015217948705,-3.8794108984246956e-19,-9.920635056914762e-05,-0.0005291005363687873,0.00028860027668997645,-0.00024737167404964566,4.1381548034888726e-19,-1.3503021688877214e-19,3.092145925620571e-05,-4.704338913992808e-21,-5.433106334401026e-36,-2.2679360153991883e-20,-1.4712735206879657e-20,3.9669895505075423e-20,0.0002380952355451882,-5.952380888629705e-05,-3.40136066370178e-05,-3.9235489974165837e-19,-4.704338913992808e-21,8.50340165925445e-06,9.820696167980852e-21,0.0,8.258571235729428e-21,4.531522547116511e-20,0.0004761904710903764,-0.0001190476177725941,-3.928278467192341e-20,-0.00015873015217948705,-5.433106334401026e-36,9.820696167980852e-21,3.968253804487176e-05,0.0,9.592033902709866e-36,5.233518385192348e-35,0.00011671335232676938,1.8486494073825105e-19,-5.3867701353738084e-05,-3.8794108984246956e-19,-2.2679360153991883e-20,0.0,0.0,3.84769282391062e-06,1.6093625997831706e-20,3.9680251418603675e-20,0.00029761905898340046,5.929230630780102e-20,-4.251700738677755e-05,-9.920635056914762e-05,-1.4712735206879657e-20,8.258571235729428e-21,9.592033902709866e-36,1.6093625997831706e-20,1.4172335795592517e-05,5.540458974054447e-20,0.00044091709423810244,-6.345657132581907e-19,-9.239774946291361e-19,-0.0005291005363687873,3.9669895505075423e-20,4.531522547116511e-20,5.233518385192348e-35,3.9680251418603675e-20,5.540458974054447e-20,8.818342030281201e-05,9.0,15.0,8.0,0.0320441760122776,-0.005330387037247419,-0.0034204793628305197,-0.005879629403352737,0.00025252526393160224,0.00020833333837799728,0.000370370369637385,0.00010212418419541791,0.00023148147738538682,0.00030864198924973607,-0.005330387037247419,0.002559148008003831,0.00020833333837799728,0.000370370369637385,-0.00021645022206939757,-5.208333459449932e-05,-9.259259240934625e-05,-6.28921963336318e-20,-6.522153693858113e-20,-2.1360712765429888e-19,-0.0034204793628305197,0.00020833333837799728,0.0009442708687856793,0.00023148147738538682,-1.8527514477389492e-19,-2.9761904443148524e-05,-1.4265123302738818e-34,-4.7134239139268175e-05,-3.3068783523049206e-05,-2.6781251876414314e-19,-0.005879629403352737,0.000370370369637385,0.00023148147738538682,0.0032231041695922613,-3.2630522576294095e-19,-1.418554468933509e-21,-0.00010582010872894898,-1.2027867851011065e-19,-6.613756704609841e-05,-0.00030864198924973607,0.00025252526393160224,-0.00021645022206939757,-1.8527514477389492e-19,-3.2630522576294095e-19,2.7056277758674696e-05,1.1717876100343136e-20,2.0831781170020805e-20,7.88340766943255e-21,8.010266802360068e-21,2.670089095678736e-20,0.00020833333837799728,-5.208333459449932e-05,-2.9761904443148524e-05,-1.418554468933509e-21,1.1717876100343136e-20,7.440476110787131e-06,9.022092051581167e-36,2.117582368135751e-22,2.117582368135751e-22,1.1956390408763939e-35,0.000370370369637385,-9.259259240934625e-05,-1.4265123302738818e-34,-0.00010582010872894898,2.0831781170020805e-20,9.022092051581167e-36,2.6455027182237245e-05,6.069771695742202e-36,6.167445920554363e-36,2.055815354682442e-35,0.00010212418419541791,-6.28921963336318e-20,-4.7134239139268175e-05,-1.2027867851011065e-19,7.88340766943255e-21,2.117582368135751e-22,6.069771695742202e-36,3.3667313346086303e-06,4.0234064994579266e-21,1.3290036252076734e-20,0.00023148147738538682,-6.522153693858113e-20,-3.3068783523049206e-05,-6.613756704609841e-05,8.010266802360068e-21,2.117582368135751e-22,6.167445920554363e-36,4.0234064994579266e-21,9.448223863728344e-06,2.3357717726532123e-20,0.00030864198924973607,-2.1360712765429888e-19,-2.6781251876414314e-19,-0.00030864198924973607,2.670089095678736e-20,1.1956390408763939e-35,2.055815354682442e-35,1.3290036252076734e-20,2.3357717726532123e-20,4.4091710151406005e-05,9.0,15.0,9.0,0.02898888662457466,-0.004771043546497822,-0.0030610021203756332,-0.004771043546497822,0.0002244668867206201,0.0001851851848186925,0.0002962962898891419,9.077705180970952e-05,0.0001851851848186925,0.0002244668867206201,-0.004771043546497822,0.002283028792589903,0.0001851851848186925,0.0002962962898891419,-0.00019240019901189953,-4.6296296204673126e-05,-7.407407247228548e-05,-5.209252625613947e-20,-4.912791094074942e-20,-1.5091204587569906e-19,-0.0030610021203756332,0.0001851851848186925,0.000842291337903589,0.0001851851848186925,-1.6077175443399558e-19,-2.6455027182237245e-05,-8.66495169913569e-35,-4.189709943602793e-05,-2.6455027182237245e-05,-1.1647300145751316e-19,-0.004771043546497822,0.0002962962898891419,0.0001851851848186925,0.002283028792589903,-2.476175244941204e-19,1.7056851971755565e-21,-7.407407247228548e-05,-1.0503208545953324e-19,-4.6296296204673126e-05,-0.00019240019901189953,0.0002244668867206201,-0.00019240019901189953,-1.6077175443399558e-19,-2.476175244941204e-19,2.405002487648744e-05,9.25856878061425e-21,1.2961996939094804e-20,7.007473483940045e-21,6.408213845784838e-21,1.8864005734462382e-20,0.0001851851848186925,-4.6296296204673126e-05,-2.6455027182237245e-05,1.7056851971755565e-21,9.25856878061425e-21,6.613756795559311e-06,4.989996836847057e-36,-4.235164736271502e-22,-2.117582368135751e-22,6.002898594116062e-36,0.0002962962898891419,-7.407407247228548e-05,-8.66495169913569e-35,-7.407407247228548e-05,1.2961996939094804e-20,4.989996836847057e-36,1.851851811807137e-05,3.776746617666815e-36,3.453769787256925e-36,1.0166941327814421e-35,9.077705180970952e-05,-5.209252625613947e-20,-4.189709943602793e-05,-1.0503208545953324e-19,7.007473483940045e-21,-4.235164736271502e-22,3.776746617666815e-36,2.992650024680188e-06,4.446922973085077e-21,9.38932390191515e-21,0.0001851851848186925,-4.912791094074942e-20,-2.6455027182237245e-05,-4.6296296204673126e-05,6.408213845784838e-21,-2.117582368135751e-22,3.453769787256925e-36,4.446922973085077e-21,6.613756795559311e-06,-3.744383292324732e-21,0.0002244668867206201,-1.5091204587569906e-19,-1.1647300145751316e-19,-0.00019240019901189953,1.8864005734462382e-20,6.002898594116062e-36,1.0166941327814421e-35,9.38932390191515e-21,-3.744383292324732e-21,2.405002487648744e-05,9.0,15.0,10.0,0.02646811306476593,-0.00431818189099431,-0.002770053455606103,-0.003949495032429695,0.00020202020823489875,0.00016666666488163173,0.00024242424115072936,8.169934881152585e-05,0.00015151515253819525,0.00016835016140248626,-0.00431818189099431,0.0020607863552868366,0.00016666666488163173,0.00024242424115072936,-0.00017316016601398587,-4.166666622040793e-05,-6.060606028768234e-05,1.0037340424963459e-19,8.470329472543003e-20,2.2137465087420445e-19,-0.002770053455606103,0.00016666666488163173,0.0007602266850881279,0.00015151515253819525,2.837716245148584e-19,-2.380952355451882e-05,-2.2246035438882455e-34,-3.77073920390103e-05,-2.1645020751748234e-05,1.9056608923981673e-19,-0.003949495032429695,0.00024242424115072936,0.00015151515253819525,0.0016773288371041417,3.903233958560164e-19,4.02834257253585e-22,-5.3872052376391366e-05,1.6771252355635147e-19,-3.367003228049725e-05,-0.00012626263196580112,0.00020202020823489875,-0.00017316016601398587,2.837716245148584e-19,3.903233958560164e-19,2.1645020751748234e-05,-1.4998881537686184e-20,-1.6968432503504755e-20,-1.2613452594209508e-20,-1.0486167817541165e-20,-2.7671831359275556e-20,0.00016666666488163173,-4.166666622040793e-05,-2.380952355451882e-05,4.02834257253585e-22,-1.4998881537686184e-20,5.952380888629705e-06,1.1758246716225308e-35,0.0,0.0,1.9940183883599533e-35,0.00024242424115072936,-6.060606028768234e-05,-2.2246035438882455e-34,-5.3872052376391366e-05,-1.6968432503504755e-20,1.1758246716225308e-35,1.3468013094097842e-05,9.888209835002711e-36,8.220542514071641e-36,2.16930996562337e-35,8.169934881152585e-05,1.0037340424963459e-19,-3.77073920390103e-05,1.6771252355635147e-19,-1.2613452594209508e-20,0.0,9.888209835002711e-36,2.6933851131616393e-06,-6.1409888675936775e-21,-1.3773310062612305e-20,0.00015151515253819525,8.470329472543003e-20,-2.1645020751748234e-05,-3.367003228049725e-05,-1.0486167817541165e-20,0.0,8.220542514071641e-36,-6.1409888675936775e-21,4.8100046114996076e-06,5.022792241689982e-22,0.00016835016140248626,2.2137465087420445e-19,1.9056608923981673e-19,-0.00012626263196580112,-2.7671831359275556e-20,1.9940183883599533e-35,2.16930996562337e-35,-1.3773310062612305e-20,5.022792241689982e-22,1.4029180420038756e-05,9.0,15.0,11.0,0.024352295324206352,-0.00394398532807827,-0.0025297089014202356,-0.0033236208837479353,0.0001836547307902947,0.00015151515253819525,0.00020202020823489875,7.427213131450117e-05,0.00012626263196580112,0.00012950012751389295,-0.00394398532807827,0.0018780336249619722,0.00015151515253819525,0.00020202020823489875,-0.00015741834067739546,-3.787878813454881e-05,-5.0505052058724687e-05,-4.468098796766434e-20,-2.625802136488331e-20,-5.489553762170051e-20,-0.0025297089014202356,0.00015151515253819525,0.0006927549839019775,0.00012626263196580112,-1.0211360485033863e-19,-2.1645020751748234e-05,8.410780546374855e-21,-3.4279444662388414e-05,-1.803751729312353e-05,-4.693048302528243e-20,-0.0033236208837479353,0.00020202020823489875,0.00012626263196580112,0.0012690580915659666,-1.8142512308564635e-19,-4.564351406419309e-23,-4.0404040191788226e-05,-6.437450399132683e-20,-2.5252526029362343e-05,-8.63334207679145e-05,0.0001836547307902947,-0.00015741834067739546,-1.0211360485033863e-19,-1.8142512308564635e-19,1.9677292584674433e-05,-3.76158192263132e-37,1.156938587127993e-20,5.7333875428225036e-21,4.3692366579582826e-21,1.0456292380261222e-20,0.00015151515253819525,-3.787878813454881e-05,-2.1645020751748234e-05,-4.564351406419309e-23,-3.76158192263132e-37,5.4112551879370585e-06,-0.0,0.0,-0.0,2.1282831393063605e-37,0.00020202020823489875,-5.0505052058724687e-05,8.410780546374855e-21,-4.0404040191788226e-05,1.156938587127993e-20,-0.0,1.0101010047947057e-05,-9.874152546907215e-37,-1.6821560890801318e-21,-5.750961091871421e-21,7.427213131450117e-05,-4.468098796766434e-20,-3.4279444662388414e-05,-6.437450399132683e-20,5.7333875428225036e-21,0.0,-9.874152546907215e-37,2.4485318590450333e-06,1.9058241313221758e-21,5.204489551625805e-21,0.00012626263196580112,-2.625802136488331e-20,-1.803751729312353e-05,-2.5252526029362343e-05,4.3692366579582826e-21,-0.0,-1.6821560890801318e-21,1.9058241313221758e-21,3.607503685998381e-06,-5.1864745433925516e-21,0.00012950012751389295,-5.489553762170051e-20,-4.693048302528243e-20,-8.63334207679145e-05,1.0456292380261222e-20,2.1282831393063605e-37,-5.750961091871421e-21,5.204489551625805e-21,-5.1864745433925516e-21,8.63334207679145e-06,9.0,15.0,12.0,0.02255077287554741,-0.0036295647732913494,-0.002327802823856473,-0.0028357752598822117,0.00016835016140248626,0.00013888889225199819,0.0001709401694824919,6.808278703829274e-05,0.00010683760774554685,0.0001017501053865999,-0.0036295647732913494,0.001725092064589262,0.00013888889225199819,0.0001709401694824919,-0.00014430013834498823,-3.4722223062999547e-05,-4.273504237062298e-05,-4.213988912590144e-20,-2.583450489125616e-20,-6.098637220230962e-20,-0.002327802823856473,0.00013888889225199819,0.0006362972781062126,0.00010683760774554685,-9.3912225399149e-20,-1.984126902243588e-05,2.964615315390051e-21,-3.142282730550505e-05,-1.5262516171787865e-05,-4.2351647362715017e-20,-0.0028357752598822117,0.0001709401694824919,0.00010683760774554685,0.0009836460230872035,-1.475921435625204e-19,4.335844592358835e-22,-3.108003147644922e-05,-6.356869436538093e-20,-1.942501876328606e-05,-6.105006468715146e-05,0.00016835016140248626,-0.00014430013834498823,-9.3912225399149e-20,-1.475921435625204e-19,1.803751729312353e-05,-4.4121579401966856e-37,8.157899962448744e-21,5.255605112955034e-21,3.697046185404894e-21,8.098292067350208e-21,0.00013888889225199819,-3.4722223062999547e-05,-1.984126902243588e-05,4.335844592358835e-22,-4.4121579401966856e-37,4.96031725560897e-06,1.2769913095205832e-23,0.0,-6.150197537552023e-23,3.445553529666316e-24,0.0001709401694824919,-4.273504237062298e-05,2.964615315390051e-21,-3.108003147644922e-05,8.157899962448744e-21,1.2769913095205832e-23,7.770007869112305e-06,-5.293955920339377e-23,-5.293955920339377e-22,0.0,6.808278703829274e-05,-4.213988912590144e-20,-3.142282730550505e-05,-6.356869436538093e-20,5.255605112955034e-21,0.0,-5.293955920339377e-23,2.2444876321969787e-06,2.964615315390051e-21,3.917527381051139e-21,0.00010683760774554685,-2.583450489125616e-20,-1.5262516171787865e-05,-1.942501876328606e-05,3.697046185404894e-21,-6.150197537552023e-23,-5.293955920339377e-22,2.964615315390051e-21,2.775002712951391e-06,-2.541098841762901e-21,0.0001017501053865999,-6.098637220230962e-20,-4.2351647362715017e-20,-6.105006468715146e-05,8.098292067350208e-21,3.445553529666316e-24,0.0,3.917527381051139e-21,-2.541098841762901e-21,5.550005425902782e-06,9.0,15.0,13.0,0.0209981519728899,-0.0033616384025663137,-0.002155785448849201,-0.002448107348755002,0.0001554001501062885,0.00012820512347389013,0.00014652014942839742,6.28456546110101e-05,9.157509339274839e-05,8.140008139889687e-05,-0.0033616384025663137,0.0015952104004099965,0.00012820512347389013,0.00014652014942839742,-0.00013320012658368796,-3.205128086847253e-05,-3.6630037357099354e-05,-2.752857078576476e-21,1.1773757966834775e-19,2.625802136488331e-19,-0.002155785448849201,0.00012820512347389013,0.0005883576232008636,9.157509339274839e-05,7.372939326907019e-20,-1.8315018678549677e-05,8.597384414631148e-20,-2.9005685064475983e-05,-1.308215632889187e-05,1.9397054492123478e-19,-0.002448107348755002,0.00014652014942839742,9.157509339274839e-05,0.0007780182640999556,4.236334938344323e-19,2.092595439029026e-19,-2.44200236920733e-05,1.6361173689552862e-19,-1.5262516171787865e-05,-4.4400043407222256e-05,0.0001554001501062885,-0.00013320012658368796,7.372939326907019e-20,4.236334938344323e-19,1.6650015822960995e-05,-8.08068701435218e-21,-2.154849924346819e-20,8.364358063721192e-22,-8.148591757176821e-21,-2.1254014867463644e-20,0.00012820512347389013,-3.205128086847253e-05,-1.8315018678549677e-05,2.092595439029026e-19,-8.08068701435218e-21,4.578754669637419e-06,-1.1067990019863485e-20,1.5881867761018131e-21,-5.269749982209047e-21,-9.626471898331414e-21,0.00014652014942839742,-3.6630037357099354e-05,8.597384414631148e-20,-2.44200236920733e-05,-2.154849924346819e-20,-1.1067990019863485e-20,6.105005923018325e-06,-1.7734752333136913e-21,-1.7470054537119944e-21,-2.964615315390051e-21,6.28456546110101e-05,-2.752857078576476e-21,-2.9005685064475983e-05,1.6361173689552862e-19,8.364358063721192e-22,1.5881867761018131e-21,-1.7734752333136913e-21,2.0718346149806166e-06,-3.494010907423989e-21,-1.0058516248644817e-20,9.157509339274839e-05,1.1773757966834775e-19,-1.308215632889187e-05,-1.5262516171787865e-05,-8.148591757176821e-21,-5.269749982209047e-21,-1.7470054537119944e-21,-3.494010907423989e-21,2.180359388148645e-06,-1.7999450129153882e-21,8.140008139889687e-05,2.625802136488331e-19,1.9397054492123478e-19,-4.4400043407222256e-05,-2.1254014867463644e-20,-9.626471898331414e-21,-2.964615315390051e-21,-1.0058516248644817e-20,-1.7999450129153882e-21,3.7000036172685213e-06,9.0,15.0,14.0,0.01964605413377285,-0.00313059170730412,-0.002007469767704606,-0.0021349205635488033,0.00014430013834498823,0.0001190476177725941,0.00012698413047473878,5.835667616338469e-05,7.936507608974352e-05,6.613756704609841e-05,-0.00313059170730412,0.0014835343463346362,0.0001190476177725941,0.00012698413047473878,-0.00012368583702482283,-2.9761904443148524e-05,-3.1746032618684694e-05,9.063252535621014e-20,1.5670109524204556e-20,-8.470329472543003e-20,-0.002007469767704606,0.0001190476177725941,0.0005471419426612556,7.936507608974352e-05,2.1034070773760062e-19,-1.70068033185089e-05,-9.740878893424454e-21,-2.6933850676869042e-05,-1.1337868272676133e-05,-1.2027867851011065e-19,-0.0021349205635488033,0.00012698413047473878,7.936507608974352e-05,0.0006260683876462281,-3.947917221274513e-20,-1.122689464670919e-19,-1.953601895365864e-05,-1.0285272303939744e-19,-1.221001184603665e-05,-3.3068783523049206e-05,0.00014430013834498823,-0.00012368583702482283,2.1034070773760062e-19,-3.947917221274513e-20,1.5460729628102854e-05,-2.352169456996404e-21,-1.2134620506664967e-36,-1.1339680076995942e-20,-3.923396001315004e-21,5.149457403187237e-21,0.0001190476177725941,-2.9761904443148524e-05,-1.70068033185089e-05,-1.122689464670919e-19,-2.352169456996404e-21,4.251700829627225e-06,2.4312467926454798e-21,2.117582368135751e-22,2.295424584247518e-21,6.182345474840628e-21,0.00012698413047473878,-3.1746032618684694e-05,-9.740878893424454e-21,-1.953601895365864e-05,-1.2134620506664967e-36,2.4312467926454798e-21,4.88400473841466e-06,0.0,0.0,-4.235164736271502e-22,5.835667616338469e-05,9.063252535621014e-20,-2.6933850676869042e-05,-1.0285272303939744e-19,-1.1339680076995942e-20,2.117582368135751e-22,0.0,1.92384641195531e-06,2.964615315390051e-21,5.558653716356346e-21,7.936507608974352e-05,1.5670109524204556e-20,-1.1337868272676133e-05,-1.221001184603665e-05,-3.923396001315004e-21,2.295424584247518e-21,0.0,2.964615315390051e-21,1.7442874877815484e-06,2.2234614865425384e-21,6.613756704609841e-05,-8.470329472543003e-20,-1.2027867851011065e-19,-3.3068783523049206e-05,5.149457403187237e-21,6.182345474840628e-21,-4.235164736271502e-22,5.558653716356346e-21,2.2234614865425384e-21,2.5437525437155273e-06,9.0,15.0,15.0,0.01845790445804596,-0.0029292928520590067,-0.0018782679690048099,-0.0018782679690048099,0.000134680129121989,0.00011111111234640703,0.00011111111234640703,5.4466232541017234e-05,6.944444612599909e-05,5.4466232541017234e-05,-0.0029292928520590067,0.0013864838983863592,0.00011111111234640703,0.00011111111234640703,-0.0001154401179519482,-2.7777778086601757e-05,-2.7777778086601757e-05,-3.366955965335844e-20,-1.7787691892340307e-20,-3.3034284942917713e-20,-0.0018782679690048099,0.00011111111234640703,0.0005113271763548255,6.944444612599909e-05,-1.0234901528279239e-19,-1.5873016309342347e-05,1.6940658945086007e-21,-2.51382607530104e-05,-9.92063451121794e-06,-2.414043899674756e-20,-0.0018782679690048099,0.00011111111234640703,6.944444612599909e-05,0.0005113271763548255,-1.0234901528279239e-19,1.8873683959675064e-22,-1.5873016309342347e-05,-3.5757838502059645e-20,-9.92063451121794e-06,-2.51382607530104e-05,0.000134680129121989,-0.0001154401179519482,-1.0234901528279239e-19,-1.0234901528279239e-19,1.4430014743993524e-05,6.666169796692073e-21,6.666169796692073e-21,4.204483928805314e-21,2.4030800407080204e-21,4.204483928805314e-21,0.00011111111234640703,-2.7777778086601757e-05,-1.5873016309342347e-05,1.8873683959675064e-22,6.666169796692073e-21,3.968254077335587e-06,7.375974103839485e-24,0.0,-5.660138210567005e-23,-2.4505822025727792e-23,0.00011111111234640703,-2.7777778086601757e-05,1.6940658945086007e-21,-1.5873016309342347e-05,6.666169796692073e-21,7.375974103839485e-24,3.968254077335587e-06,-1.3234889800848443e-23,-2.117582368135751e-22,-1.0587911840678754e-22,5.4466232541017234e-05,-3.366955965335844e-20,-2.51382607530104e-05,-3.5757838502059645e-20,4.204483928805314e-21,0.0,-1.3234889800848443e-23,1.7955900375454803e-06,1.0058516248644817e-21,2.0381730293306602e-21,6.944444612599909e-05,-1.7787691892340307e-20,-9.92063451121794e-06,-9.92063451121794e-06,2.4030800407080204e-21,-5.660138210567005e-23,-2.117582368135751e-22,1.0058516248644817e-21,1.4172335340845166e-06,-5.293955920339377e-22,5.4466232541017234e-05,-3.3034284942917713e-20,-2.414043899674756e-20,-2.51382607530104e-05,4.204483928805314e-21,-2.4505822025727792e-23,-1.0587911840678754e-22,2.0381730293306602e-21,-5.293955920339377e-22,1.7955900375454803e-06,9.0,15.0,16.0,0.01740553043782711,-0.002752339467406273,-0.0017647058703005314,-0.0016653049970045686,0.00012626263196580112,0.00010416666918899864,9.803921420825645e-05,5.1062092097708955e-05,6.127451342763379e-05,4.538852590485476e-05,-0.002752339467406273,0.0013013605494052172,0.00010416666918899864,9.803921420825645e-05,-0.00010822511103469878,-2.604166729724966e-05,-2.4509803552064113e-05,-3.070494433796839e-20,-1.9269999550035333e-20,-2.879912020664621e-20,-0.0017647058703005314,0.00010416666918899864,0.00047991631436161697,6.127451342763379e-05,-9.452234218674075e-20,-1.4880952221574262e-05,-2.541098841762901e-21,-2.3567119569634087e-05,-8.753501788305584e-06,-3.218725199566341e-20,-0.0016653049970045686,9.803921420825645e-05,6.127451342763379e-05,0.00042304699309170246,-8.759695991624806e-20,2.4165490076275533e-23,-1.3071895409666467e-05,-3.9303567584813805e-20,-8.169934517354704e-06,-1.9452225387794897e-05,0.00012626263196580112,-0.00010822511103469878,-9.452234218674075e-20,-8.759695991624806e-20,1.3528138879337348e-05,5.858938050171568e-21,5.1466753621426735e-21,3.941703834716275e-21,2.1203648130770974e-21,3.477846958149393e-21,0.00010416666918899864,-2.604166729724966e-05,-1.4880952221574262e-05,2.4165490076275533e-23,5.858938050171568e-21,3.7202380553935654e-06,-7.466989522425038e-25,-1.0587911840678754e-22,-4.6668685747751655e-25,1.199893093354075e-23,9.803921420825645e-05,-2.4509803552064113e-05,-2.541098841762901e-21,-1.3071895409666467e-05,5.1466753621426735e-21,-7.466989522425038e-25,3.267973852416617e-06,2.6469779601696886e-23,3.1763735522036263e-22,0.0,5.1062092097708955e-05,-3.070494433796839e-20,-2.3567119569634087e-05,-3.9303567584813805e-20,3.941703834716275e-21,-1.0587911840678754e-22,2.6469779601696886e-23,1.6833656673043151e-06,1.7999450129153882e-21,1.7734752333136913e-21,6.127451342763379e-05,-1.9269999550035333e-20,-8.753501788305584e-06,-8.169934517354704e-06,2.1203648130770974e-21,-4.6668685747751655e-25,3.1763735522036263e-22,1.7999450129153882e-21,1.1671335187202203e-06,9.529120656610879e-22,4.538852590485476e-05,-2.879912020664621e-20,-3.218725199566341e-20,-1.9452225387794897e-05,3.477846958149393e-21,1.199893093354075e-23,0.0,1.7734752333136913e-21,9.529120656610879e-22,1.2968150713277282e-06,9.0,16.0,3.0,0.06469309329986572,-0.01219919789582491,-0.007407407276332378,-0.027941176667809486,0.0006313131307251751,0.0004901961074210703,0.0020833334419876337,0.0002269426331622526,0.0012254902394488454,0.0034722222480922937,-0.01219919789582491,0.006116177421063185,0.0004901961074210703,0.0020833334419876337,-0.0005411255406215787,-0.00012254902685526758,-0.0005208333604969084,3.9656235392740934e-19,8.605854744103691e-19,-5.854691731421724e-18,-0.007407407276332378,0.0004901961074210703,0.00199268595315516,0.0012254902394488454,1.0892581071845817e-18,-6.535947613883764e-05,4.2012834183813297e-19,-9.726112330099568e-05,-0.0001633986976230517,-9.215718466126788e-19,-0.027941176667809486,0.0020833334419876337,0.0012254902394488454,0.06266339868307114,1.8188665626323856e-18,-2.1642040769168294e-19,-0.0020833334419876337,3.770118626015361e-20,-0.0012254902394488454,-0.02083333395421505,0.0006313131307251751,-0.0005411255406215787,1.0892581071845817e-18,1.8188665626323856e-18,6.764069257769734e-05,-9.232659125071874e-20,-2.539594924011703e-19,-3.6422416731934915e-20,-1.2166178911778467e-19,4.413134583766846e-20,0.0004901961074210703,-0.00012254902685526758,-6.535947613883764e-05,-2.1642040769168294e-19,-9.232659125071874e-20,1.633986903470941e-05,-1.9721497992821503e-20,-7.623296525288703e-21,-9.271886065358927e-21,1.7651660748136255e-19,0.0020833334419876337,-0.0005208333604969084,4.2012834183813297e-19,-0.0020833334419876337,-2.539594924011703e-19,-1.9721497992821503e-20,0.0005208333604969084,-3.170129631048558e-20,2.303929616531697e-19,3.686287386450715e-18,0.0002269426331622526,3.9656235392740934e-19,-9.726112330099568e-05,3.770118626015361e-20,-3.6422416731934915e-20,-7.623296525288703e-21,-3.170129631048558e-20,6.484075129264966e-06,-7.941653624577215e-21,7.841031142027974e-20,0.0012254902394488454,8.605854744103691e-19,-0.0001633986976230517,-0.0012254902394488454,-1.2166178911778467e-19,-9.271886065358927e-21,2.303929616531697e-19,-7.941653624577215e-21,0.0001633986976230517,-8.131516293641283e-19,0.0034722222480922937,-5.854691731421724e-18,-9.215718466126788e-19,-0.02083333395421505,4.413134583766846e-20,1.7651660748136255e-19,3.686287386450715e-18,7.841031142027974e-20,-8.131516293641283e-19,0.010416666977107525,9.0,16.0,4.0,0.05253738537430763,-0.009461898356676102,-0.005739379208534956,-0.017806371673941612,0.0004734848625957966,0.0003676470660138875,0.0012499999720603228,0.00017020697123371065,0.000735294132027775,0.0017361111240461469,-0.009461898356676102,0.004665258340537548,0.0003676470660138875,0.0012499999720603228,-0.000405844155466184,-9.191176650347188e-05,-0.0003124999930150807,1.6554573686646588e-19,5.04831636563563e-19,1.0299920638612292e-18,-0.005739379208534956,0.0003676470660138875,0.0015190242556855083,0.000735294132027775,3.3247930185503675e-19,-4.901960710412823e-05,2.574980159653073e-19,-7.294584793271497e-05,-9.803921420825645e-05,-1.0842021724855044e-19,-0.017806371673941612,0.0012499999720603228,0.000735294132027775,0.024023693054914474,-4.193833493742553e-20,9.752905324049151e-20,-0.0008333333535119891,1.1323448273061722e-20,-0.0004901961074210703,-0.0052083334885537624,0.0004734848625957966,-0.000405844155466184,3.3247930185503675e-19,-4.193833493742553e-20,5.0730519433273e-05,-2.541098841762901e-21,1.0568320584858319e-19,-1.3552527156068805e-20,-5.1537830569588775e-20,-6.206824043299802e-21,0.0003676470660138875,-9.191176650347188e-05,-4.901960710412823e-05,9.752905324049151e-20,-2.541098841762901e-21,1.2254901776032057e-05,-5.698255388905658e-21,-3.8116482626443515e-21,-4.509347240454771e-21,-1.3193908817610122e-20,0.0012499999720603228,-0.0003124999930150807,2.574980159653073e-19,-0.0008333333535119891,1.0568320584858319e-19,-5.698255388905658e-21,0.00020833333837799728,-1.196622173118441e-20,-3.049318610115481e-20,-5.149960319306146e-19,0.00017020697123371065,1.6554573686646588e-19,-7.294584793271497e-05,1.1323448273061722e-20,-1.3552527156068805e-20,-3.8116482626443515e-21,-1.196622173118441e-20,4.863056346948724e-06,3.1826642446062207e-21,5.524209398661755e-22,0.000735294132027775,5.04831636563563e-19,-9.803921420825645e-05,-0.0004901961074210703,-5.1537830569588775e-20,-4.509347240454771e-21,-3.049318610115481e-20,3.1826642446062207e-21,6.535947613883764e-05,1.0842021724855044e-19,0.0017361111240461469,1.0299920638612292e-18,-1.0842021724855044e-19,-0.0052083334885537624,-6.206824043299802e-21,-1.3193908817610122e-20,-5.149960319306146e-19,5.524209398661755e-22,1.0842021724855044e-19,0.0017361111240461469,9.0,16.0,5.0,0.04430488497018814,-0.0077361855655908585,-0.004689542576670647,-0.012366946786642075,0.0003787878667935729,0.00029411763534881175,0.0008333333535119891,0.00013616557407658547,0.0004901961074210703,0.0009920635493472219,-0.0077361855655908585,0.003773873206228018,0.00029411763534881175,0.0008333333535119891,-0.0003246753185521811,-7.352940883720294e-05,-0.00020833333837799728,-8.216219588366713e-20,-2.439454888092385e-19,1.8973538018496328e-19,-0.004689542576670647,0.00029411763534881175,0.0012282913085073233,0.0004901961074210703,-3.7290625502870572e-19,-3.9215687138494104e-05,-4.489274620447792e-20,-5.835667616338469e-05,-6.535947613883764e-05,-1.0842021724855044e-19,-0.012366946786642075,0.0008333333535119891,0.0004901961074210703,0.012135853990912437,-4.607859233063394e-19,1.7618285302889447e-19,-0.00041666667675599456,-4.404571325722362e-20,-0.00024509805371053517,-0.0019841270986944437,0.0003787878667935729,-0.0003246753185521811,-3.7290625502870572e-19,-4.607859233063394e-19,4.058441481902264e-05,3.745481891575779e-20,4.376581278627672e-20,9.105604182983729e-21,3.1004050908763e-20,-6.712941751037636e-22,0.00029411763534881175,-7.352940883720294e-05,-3.9215687138494104e-05,1.7618285302889447e-19,3.745481891575779e-20,9.803921784623526e-06,-5.929230630780102e-21,6.400339777016833e-22,-3.3881317890172014e-21,-3.134021904840911e-20,0.0008333333535119891,-0.00020833333837799728,-4.489274620447792e-20,-0.00041666667675599456,4.376581278627672e-20,-5.929230630780102e-21,0.00010416666918899864,2.3341364753562862e-21,1.6940658945086007e-21,1.3552527156068805e-20,0.00013616557407658547,-8.216219588366713e-20,-5.835667616338469e-05,-4.404571325722362e-20,9.105604182983729e-21,6.400339777016833e-22,2.3341364753562862e-21,3.890444986609509e-06,9.187847059673275e-22,6.817892411713414e-21,0.0004901961074210703,-2.439454888092385e-19,-6.535947613883764e-05,-0.00024509805371053517,3.1004050908763e-20,-3.3881317890172014e-21,1.6940658945086007e-21,9.187847059673275e-22,3.267973806941882e-05,6.945670167485263e-20,0.0009920635493472219,1.8973538018496328e-19,-1.0842021724855044e-19,-0.0019841270986944437,-6.712941751037636e-22,-3.134021904840911e-20,1.3552527156068805e-20,6.817892411713414e-21,6.945670167485263e-20,0.0004960317746736109,9.0,16.0,6.0,0.038333941251039505,-0.00654602749273181,-0.003966308664530516,-0.0090992646291852,0.00031565656536258757,0.00024509805371053517,0.0005952381179668009,0.0001134713165811263,0.00035014006425626576,0.0006200397037900984,-0.00654602749273181,0.003169695846736431,0.00024509805371053517,0.0005952381179668009,-0.00027056277031078935,-6.127451342763379e-05,-0.00014880952949170023,1.8158268806764064e-19,2.642742795433417e-19,-7.047314121155779e-19,-0.003966308664530516,0.00024509805371053517,0.0010313569800928235,0.00035014006425626576,5.283368008498698e-19,-3.267973806941882e-05,1.9100592960584473e-19,-4.863056165049784e-05,-4.6685341658303514e-05,8.131516293641283e-20,-0.0090992646291852,0.0005952381179668009,0.00035014006425626576,0.007049924228340387,6.776263578034403e-20,-4.2012834183813297e-19,-0.0002380952355451882,6.098637220230962e-20,-0.00014005602861288935,-0.0009300595265813172,0.00031565656536258757,-0.00027056277031078935,5.283368008498698e-19,6.776263578034403e-20,3.382034628884867e-05,-4.522254893081649e-20,-5.992580387239447e-20,-1.6358323793848675e-20,-2.835845266000566e-20,7.330647779385685e-20,0.00024509805371053517,-6.127451342763379e-05,-3.267973806941882e-05,-4.2012834183813297e-19,-4.522254893081649e-20,8.169934517354704e-06,8.046812998915853e-21,-3.42084540899461e-21,5.082197683525802e-21,6.776263578034403e-20,0.0005952381179668009,-0.00014880952949170023,1.9100592960584473e-19,-0.0002380952355451882,-5.992580387239447e-20,8.046812998915853e-21,5.952380888629705e-05,-8.802770452671224e-21,-2.710505431213761e-20,-1.7448878713438587e-19,0.0001134713165811263,1.8158268806764064e-19,-4.863056165049784e-05,6.098637220230962e-20,-1.6358323793848675e-20,-3.42084540899461e-21,-8.802770452671224e-21,3.242037564632483e-06,-1.8715365255795724e-21,-1.6163747326204048e-21,0.00035014006425626576,2.642742795433417e-19,-4.6685341658303514e-05,-0.00014005602861288935,-2.835845266000566e-20,5.082197683525802e-21,-2.710505431213761e-20,-1.8715365255795724e-21,1.8674136299523525e-05,-1.6263032587282567e-19,0.0006200397037900984,-7.047314121155779e-19,8.131516293641283e-20,-0.0009300595265813172,7.330647779385685e-20,6.776263578034403e-20,-1.7448878713438587e-19,-1.6163747326204048e-21,-1.6263032587282567e-19,0.00018601190822664648,9.0,16.0,7.0,0.03379567712545395,-0.005674656014889479,-0.00343720824457705,-0.006979458499699831,0.00027056277031078935,0.0002100840356433764,0.00044642857392318547,9.726112330099568e-05,0.00026260505546815693,0.00041335978312417865,-0.005674656014889479,0.0027328261639922857,0.0002100840356433764,0.00044642857392318547,-0.00023191094805952162,-5.25210089108441e-05,-0.00011160714348079637,7.739763555536169e-20,-1.5585406229479126e-19,-5.421010862427522e-19,-0.00343720824457705,0.0002100840356433764,0.000889022252522409,0.00026260505546815693,-2.964615315390051e-20,-2.801120535877999e-05,6.945670167485263e-20,-4.1683339077280834e-05,-3.501400715322234e-05,2.0328790734103208e-20,-0.006979458499699831,0.00044642857392318547,0.00026260505546815693,0.004475957248359919,-6.708500942254059e-19,-7.453889935837843e-20,-0.00014880952949170023,6.098637220230962e-20,-8.753501606406644e-05,-0.0004960317746736109,0.00027056277031078935,-0.00023191094805952162,-2.964615315390051e-20,-6.708500942254059e-19,2.8988868507440202e-05,7.970542745911916e-21,5.594457712182821e-20,-3.705769144237564e-21,1.7735209544295805e-20,4.633196292213776e-20,0.0002100840356433764,-5.25210089108441e-05,-2.801120535877999e-05,-7.453889935837843e-20,7.970542745911916e-21,7.002801339694997e-06,2.964615315390051e-21,-3.1036923260176315e-21,-6.352747104407253e-22,9.740878893424454e-21,0.00044642857392318547,-0.00011160714348079637,6.945670167485263e-20,-0.00014880952949170023,5.594457712182821e-20,2.964615315390051e-21,3.720238237292506e-05,-6.3593302180810815e-21,4.658681209898652e-21,2.879912020664621e-20,9.726112330099568e-05,7.739763555536169e-20,-4.1683339077280834e-05,6.098637220230962e-20,-3.705769144237564e-21,-3.1036923260176315e-21,-6.3593302180810815e-21,2.7788894385594176e-06,-3.238104126847705e-21,-1.2829767190637444e-21,0.00026260505546815693,-1.5585406229479126e-19,-3.501400715322234e-05,-8.753501606406644e-05,1.7735209544295805e-20,-6.352747104407253e-22,4.658681209898652e-21,-3.238104126847705e-21,1.1671335414575879e-05,-1.1434944787933055e-20,0.00041335978312417865,-5.421010862427522e-19,2.0328790734103208e-20,-0.0004960317746736109,4.633196292213776e-20,9.740878893424454e-21,2.879912020664621e-20,-1.2829767190637444e-21,-1.1434944787933055e-20,8.26719551696442e-05,9.0,16.0,8.0,0.030225664377212524,-0.005008726846426725,-0.0030330882873386145,-0.005524918437004089,0.0002367424312978983,0.00018382353300694376,0.00034722223062999547,8.510348561685532e-05,0.00020424836839083582,0.00028935185400769114,-0.005008726846426725,0.002402073470875621,0.00018382353300694376,0.00034722223062999547,-0.000202922077733092,-4.595588325173594e-05,-8.680555765749887e-05,8.480917384383682e-20,-1.3552527156068805e-20,-5.624298769768554e-19,-0.0030330882873386145,0.00018382353300694376,0.0007812986150383949,0.00020424836839083582,1.2874900798265365e-19,-2.4509803552064113e-05,1.0037340424963459e-19,-3.6472923966357484e-05,-2.7233116270508617e-05,-4.1674021004911577e-19,-0.005524918437004089,0.00034722223062999547,0.00020424836839083582,0.003025307320058346,-6.098637220230962e-19,-2.913793338554793e-19,-9.920635056914762e-05,-8.470329472543003e-20,-5.835667616338469e-05,-0.00028935185400769114,0.0002367424312978983,-0.000202922077733092,1.2874900798265365e-19,-6.098637220230962e-19,2.53652597166365e-05,-2.0820766096941925e-21,5.748278409435592e-20,-6.935082255644584e-21,-6.828086160683101e-22,4.916431011887602e-20,0.00018382353300694376,-4.595588325173594e-05,-2.4509803552064113e-05,-2.913793338554793e-19,-2.0820766096941925e-21,6.127450888016028e-06,-2.117582368135751e-21,-1.8614683885095453e-21,4.870439446712227e-21,3.3457801416544863e-20,0.00034722223062999547,-8.680555765749887e-05,1.0037340424963459e-19,-9.920635056914762e-05,5.748278409435592e-20,-2.117582368135751e-21,2.4801587642286904e-05,-3.4882981913185446e-21,-8.893845946170154e-21,-3.6845933205562065e-20,8.510348561685532e-05,8.480917384383682e-20,-3.6472923966357484e-05,-8.470329472543003e-20,-6.935082255644584e-21,-1.8614683885095453e-21,-3.4882981913185446e-21,2.431528173474362e-06,3.2262214834779248e-21,9.476712625574536e-21,0.00020424836839083582,-1.3552527156068805e-20,-2.7233116270508617e-05,-5.835667616338469e-05,-6.828086160683101e-22,4.870439446712227e-21,-8.893845946170154e-21,3.2262214834779248e-21,7.780889973219018e-06,2.964615315390051e-20,0.00028935185400769114,-5.624298769768554e-19,-4.1674021004911577e-19,-0.00028935185400769114,4.916431011887602e-20,3.3457801416544863e-20,-3.6845933205562065e-20,9.476712625574536e-21,2.964615315390051e-20,4.13359775848221e-05,9.0,16.0,9.0,0.027341993525624275,-0.0044830660335719585,-0.0027142339386045933,-0.0044830660335719585,0.00021043770539108664,0.0001633986976230517,0.00027777778450399637,7.564754196209833e-05,0.0001633986976230517,0.00021043770539108664,-0.0044830660335719585,0.002142892451956868,0.0001633986976230517,0.00027777778450399637,-0.0001803751802071929,-4.0849674405762926e-05,-6.944444612599909e-05,6.03510974918689e-21,-5.082197683525802e-20,-1.8295911660692887e-19,-0.0027142339386045933,0.0001633986976230517,0.000696908391546458,0.0001633986976230517,-4.213988912590144e-20,-2.1786492652609013e-05,-5.929230630780102e-21,-3.242037564632483e-05,-2.1786492652609013e-05,1.3552527156068805e-20,-0.0044830660335719585,0.00027777778450399637,0.0001633986976230517,0.002142892451956868,-8.809142651444724e-20,-3.3881317890172014e-20,-6.944444612599909e-05,-3.3881317890172014e-21,-4.0849674405762926e-05,-0.0001803751802071929,0.00021043770539108664,-0.0001803751802071929,-4.213988912590144e-20,-8.809142651444724e-20,2.2546897525899112e-05,8.373937081786433e-21,-1.9713697130345503e-21,1.0587911840678754e-22,3.1384464325451463e-21,7.860716748137029e-21,0.0001633986976230517,-4.0849674405762926e-05,-2.1786492652609013e-05,-3.3881317890172014e-20,8.373937081786433e-21,5.446623163152253e-06,-4.235164736271502e-22,-5.747757685507499e-22,1.0587911840678754e-21,2.117582368135751e-21,0.00027777778450399637,-6.944444612599909e-05,-5.929230630780102e-21,-6.944444612599909e-05,-1.9713697130345503e-21,-4.235164736271502e-22,1.7361111531499773e-05,-2.841475213557657e-22,3.3881317890172014e-21,2.625802136488331e-20,7.564754196209833e-05,6.03510974918689e-21,-3.242037564632483e-05,-3.3881317890172014e-21,1.0587911840678754e-22,-5.747757685507499e-22,-2.841475213557657e-22,2.1613584522128804e-06,-2.8248684924341786e-22,3.5410405984045055e-22,0.0001633986976230517,-5.082197683525802e-20,-2.1786492652609013e-05,-4.0849674405762926e-05,3.1384464325451463e-21,1.0587911840678754e-21,3.3881317890172014e-21,-2.8248684924341786e-22,5.446623163152253e-06,-8.258571235729428e-21,0.00021043770539108664,-1.8295911660692887e-19,1.3552527156068805e-20,-0.0001803751802071929,7.860716748137029e-21,2.117582368135751e-21,2.625802136488331e-20,3.5410405984045055e-22,-8.258571235729428e-21,2.2546897525899112e-05,9.0,16.0,10.0,0.02496311068534851,-0.004057486541569233,-0.002456179354339838,-0.0037110070697963238,0.00018939393339678645,0.00014705881767440587,0.00022727272880729288,6.808278703829274e-05,0.0001336898421868682,0.00015782828268129379,-0.004057486541569233,0.0019342850428074598,0.00014705881767440587,0.00022727272880729288,-0.00016233765927609056,-3.676470441860147e-05,-5.681818220182322e-05,-4.362219678359647e-20,-3.7269449679189215e-20,-1.037693684050769e-19,-0.002456179354339838,0.00014705881767440587,0.0006290000746957958,0.0001336898421868682,-9.906968359372006e-20,-1.9607843569247052e-05,-9.499234718014566e-21,-2.9178338081692345e-05,-1.7825312170316465e-05,-6.332725563328043e-35,-0.0037110070697963238,0.00022727272880729288,0.0001336898421868682,0.00157435261644423,-2.1109205915243726e-19,-8.687239008932995e-21,-5.0505052058724687e-05,-8.470329472543003e-22,-2.970885361719411e-05,-0.00011837121564894915,0.00018939393339678645,-0.00016233765927609056,-9.906968359372006e-20,-2.1109205915243726e-19,2.029220740951132e-05,2.633107345841924e-36,1.4913660931960482e-20,5.21677043722409e-21,4.626250721566458e-21,1.2971171050634613e-20,0.00014705881767440587,-3.676470441860147e-05,-1.9607843569247052e-05,-8.687239008932995e-21,2.633107345841924e-36,4.901960892311763e-06,2.3748086795036415e-21,1.0587911840678754e-22,0.0,0.0,0.00022727272880729288,-5.681818220182322e-05,-9.499234718014566e-21,-5.0505052058724687e-05,1.4913660931960482e-20,2.3748086795036415e-21,1.2626263014681172e-05,4.043700566828669e-36,3.479463278433971e-36,9.533099907980103e-36,6.808278703829274e-05,-4.362219678359647e-20,-2.9178338081692345e-05,-8.470329472543003e-22,5.21677043722409e-21,1.0587911840678754e-22,4.043700566828669e-36,1.9452224933047546e-06,2.117582368135751e-22,3.334660583669638e-36,0.0001336898421868682,-3.7269449679189215e-20,-1.7825312170316465e-05,-2.970885361719411e-05,4.626250721566458e-21,0.0,3.479463278433971e-36,2.117582368135751e-22,3.961180482292548e-06,2.9571887133325583e-36,0.00015782828268129379,-1.037693684050769e-19,-6.332725563328043e-35,-0.00011837121564894915,1.2971171050634613e-20,0.0,9.533099907980103e-36,3.334660583669638e-36,2.9571887133325583e-36,1.3152356586942915e-05,9.0,16.0,11.0,0.022966597229242325,-0.0037058419547975063,-0.002243018476292491,-0.003122857538983226,0.000172176311025396,0.0001336898421868682,0.00018939393339678645,6.18934427620843e-05,0.00011140819697175175,0.00012140637409174815,-0.0037058419547975063,0.0017627454362809658,0.0001336898421868682,0.00018939393339678645,-0.00014757968892809004,-3.342246054671705e-05,-4.734848334919661e-05,8.597384414631148e-20,1.7787691892340307e-20,-1.5453784991915747e-19,-0.002243018476292491,0.0001336898421868682,0.0005731686833314598,0.00011140819697175175,2.467664073425916e-19,-1.7825312170316465e-05,-1.9650942071510144e-20,-2.6525762223172933e-05,-1.4854426808597054e-05,-1.2631575281325235e-19,-0.003122857538983226,0.00018939393339678645,0.00011140819697175175,0.0011911345645785332,-1.0207687932361098e-19,-1.5025337746355957e-19,-3.787878813454881e-05,-5.251604272976662e-20,-2.228163975814823e-05,-8.093757787719369e-05,0.000172176311025396,-0.00014757968892809004,2.467664073425916e-19,-1.0207687932361098e-19,1.8447461116011254e-05,-1.0486167817541165e-20,1.0168405254317926e-20,-1.0861897647128472e-20,-4.88326438127785e-21,9.802774459904581e-21,0.0001336898421868682,-3.342246054671705e-05,-1.7825312170316465e-05,-1.5025337746355957e-19,-1.0486167817541165e-20,4.456328042579116e-06,4.912735517877536e-21,1.0587911840678754e-22,2.9116757561866574e-21,1.014875486800839e-20,0.00018939393339678645,-4.734848334919661e-05,-1.9650942071510144e-20,-3.787878813454881e-05,1.0168405254317926e-20,4.912735517877536e-21,9.469697033637203e-06,-5.830451980078546e-36,4.70197740328915e-37,1.6591544574231503e-35,6.18934427620843e-05,8.597384414631148e-20,-2.6525762223172933e-05,-5.251604272976662e-20,-1.0861897647128472e-20,1.0587911840678754e-22,-5.830451980078546e-36,1.7683840951576713e-06,-5.293955920339377e-22,4.530693993254894e-21,0.00011140819697175175,1.7787691892340307e-20,-1.4854426808597054e-05,-2.228163975814823e-05,-4.88326438127785e-21,2.9116757561866574e-21,4.70197740328915e-37,-5.293955920339377e-22,2.970885361719411e-06,2.5371887170020974e-21,0.00012140637409174815,-1.5453784991915747e-19,-1.2631575281325235e-19,-8.093757787719369e-05,9.802774459904581e-21,1.014875486800839e-20,1.6591544574231503e-35,4.530693993254894e-21,2.5371887170020974e-21,8.09375796961831e-06,9.0,16.0,12.0,0.02126680128276348,-0.003410376375541091,-0.0020639558788388968,-0.002664431231096387,0.00015782828268129379,0.00012254902685526758,0.00016025641525629908,5.673565829056315e-05,9.426847827853635e-05,9.5390721980948e-05,-0.003410376375541091,0.001619188580662012,0.00012254902685526758,0.00016025641525629908,-0.00013528138515539467,-3.0637256713816896e-05,-4.006410381407477e-05,6.850378960919154e-20,5.166900978251232e-20,1.2147438101025312e-19,-0.0020639558788388968,0.00012254902685526758,0.0005264520295895636,9.426847827853635e-05,1.9846907620972492e-19,-1.633986903470941e-05,-1.6830450312697635e-34,-2.431528082524892e-05,-1.25691303765052e-05,-1.7821305954663175e-34,-0.002664431231096387,0.00016025641525629908,9.426847827853635e-05,0.0009232393349520862,2.7331900840312036e-19,-1.5567426542019588e-22,-2.9137529054423794e-05,0.0,-1.7139722331194207e-05,-5.723443246097304e-05,0.00015782828268129379,-0.00013528138515539467,1.9846907620972492e-19,2.7331900840312036e-19,1.6910173144424334e-05,-8.041680278591476e-21,-1.434005802918184e-20,-8.694617395373483e-21,-6.524199673404474e-21,-1.518429762628164e-20,0.00012254902685526758,-3.0637256713816896e-05,-1.633986903470941e-05,-1.5567426542019588e-22,-8.041680278591476e-21,4.084967258677352e-06,6.819454984402062e-36,1.0587911840678754e-22,5.293955920339377e-23,7.220934662336318e-36,0.00016025641525629908,-4.006410381407477e-05,-1.6830450312697635e-34,-2.9137529054423794e-05,-1.434005802918184e-20,6.819454984402062e-36,7.2843822636059485e-06,7.373154867077444e-36,5.5326104532206166e-36,1.2876493114630108e-35,5.673565829056315e-05,6.850378960919154e-20,-2.431528082524892e-05,0.0,-8.694617395373483e-21,1.0587911840678754e-22,7.373154867077444e-36,1.6210187823162414e-06,0.0,7.807233276288533e-36,9.426847827853635e-05,5.166900978251232e-20,-1.25691303765052e-05,-1.7139722331194207e-05,-6.524199673404474e-21,5.293955920339377e-23,5.5326104532206166e-36,0.0,2.2852964320918545e-06,5.85833051034582e-36,9.5390721980948e-05,1.2147438101025312e-19,-1.7821305954663175e-34,-5.723443246097304e-05,-1.518429762628164e-20,7.220934662336318e-36,1.2876493114630108e-35,7.807233276288533e-36,5.85833051034582e-36,5.203130058362149e-06,9.0,16.0,13.0,0.01980195753276348,-0.0031586061231791973,-0.0019114055903628469,-0.002300150925293565,0.00014568764891009778,0.0001131221724790521,0.00013736264372710139,5.237137520452961e-05,8.080155384959653e-05,7.631257903994992e-05,-0.0031586061231791973,0.0014972771750763059,0.0001131221724790521,0.00013736264372710139,-0.00012487512140069157,-2.8280543119763024e-05,-3.4340660931775346e-05,7.326834993749698e-20,9.740878893424454e-20,1.6263032587282567e-19,-0.0019114055903628469,0.0001131221724790521,0.00048678446910344064,8.080155384959653e-05,2.295177528663003e-19,-1.508295645180624e-05,9.317362419797304e-21,-2.2444875867222436e-05,-1.0773540452646557e-05,-3.218725199566341e-20,-0.002300150925293565,0.00013736264372710139,8.080155384959653e-05,0.0007302337908186018,3.8412000655096327e-19,3.130837582600009e-20,-2.2893773348187096e-05,-3.869005806424088e-20,-1.3466925338434521e-05,-4.162504046689719e-05,0.00014568764891009778,-0.00012487512140069157,2.295177528663003e-19,3.8412000655096327e-19,1.5609390175086446e-05,-2.020828893654756e-21,-1.3467811421322444e-20,-9.190836905612935e-21,-1.1463950231541396e-20,-1.8485231330921254e-20,0.0001131221724790521,-2.8280543119763024e-05,-1.508295645180624e-05,3.130837582600009e-20,-2.020828893654756e-21,3.77073911295156e-06,-1.7756514291830447e-21,-1.0587911840678754e-22,-5.773870622300998e-22,-1.5567351316243666e-21,0.00013736264372710139,-3.4340660931775346e-05,9.317362419797304e-21,-2.2893773348187096e-05,-1.3467811421322444e-20,-1.7756514291830447e-21,5.723443337046774e-06,-1.3234889800848443e-23,-3.1763735522036263e-22,-2.117582368135751e-22,5.237137520452961e-05,7.326834993749698e-20,-2.2444875867222436e-05,-3.869005806424088e-20,-9.190836905612935e-21,-1.0587911840678754e-22,-1.3234889800848443e-23,1.496325012340094e-06,2.276401045745932e-21,1.6675961149069038e-21,8.080155384959653e-05,9.740878893424454e-20,-1.0773540452646557e-05,-1.3466925338434521e-05,-1.1463950231541396e-20,-5.773870622300998e-22,-3.1763735522036263e-22,2.276401045745932e-21,1.7955900375454803e-06,1.6940658945086007e-21,7.631257903994992e-05,1.6263032587282567e-19,-3.218725199566341e-20,-4.162504046689719e-05,-1.8485231330921254e-20,-1.5567351316243666e-21,-2.117582368135751e-22,1.6675961149069038e-21,1.6940658945086007e-21,3.4687534480326576e-06,9.0,16.0,14.0,0.018526379019021988,-0.002941494807600975,-0.0017798786284402013,-0.0020058648660779,0.00013528138515539467,0.0001050420178216882,0.0001190476177725941,4.863056165049784e-05,7.002801430644467e-05,6.200397183420137e-05,-0.002941494807600975,0.0013924547238275409,0.0001050420178216882,0.0001190476177725941,-0.00011595547402976081,-2.626050445542205e-05,-2.9761904443148524e-05,6.056285572868247e-20,3.9387032047324966e-20,7.792703114739563e-20,-0.0017798786284402013,0.0001050420178216882,0.0004526810662355274,7.002801430644467e-05,1.669231993815198e-19,-1.4005602679389995e-05,-5.082197683525802e-21,-2.0841669538640417e-05,-9.337068149761762e-06,-1.6940658945086007e-21,-0.0020058648660779,0.0001190476177725941,7.002801430644467e-05,0.0005876124487258494,1.9277143030106552e-19,-4.7743326109815725e-21,-1.8315018678549677e-05,-3.4517695642728404e-22,-1.0773540452646557e-05,-3.100198591710068e-05,0.00013528138515539467,-0.00011595547402976081,1.669231993815198e-19,1.9277143030106552e-19,1.4494434253720101e-05,-5.908173068076946e-21,-7.726072100811283e-21,-7.452529773029819e-21,-4.846548144176223e-21,-9.65523258048897e-21,0.0001050420178216882,-2.626050445542205e-05,-1.4005602679389995e-05,-4.7743326109815725e-21,-5.908173068076946e-21,3.5014006698474986e-06,1.2340698672949383e-21,-2.117582368135751e-22,-1.8344444435882615e-23,-1.6472985534216116e-23,0.0001190476177725941,-2.9761904443148524e-05,-5.082197683525802e-21,-1.8315018678549677e-05,-7.726072100811283e-21,1.2340698672949383e-21,4.578754669637419e-06,1.3234889800848443e-23,5.293955920339377e-23,0.0,4.863056165049784e-05,6.056285572868247e-20,-2.0841669538640417e-05,-3.4517695642728404e-22,-7.452529773029819e-21,-2.117582368135751e-22,1.3234889800848443e-23,1.3894447192797088e-06,-5.293955920339377e-23,5.293955920339377e-23,7.002801430644467e-05,3.9387032047324966e-20,-9.337068149761762e-06,-1.0773540452646557e-05,-4.846548144176223e-21,-1.8344444435882615e-23,5.293955920339377e-23,-5.293955920339377e-23,1.4364720755111193e-06,3.1763735522036263e-22,6.200397183420137e-05,7.792703114739563e-20,-1.6940658945086007e-21,-3.100198591710068e-05,-9.65523258048897e-21,-1.6472985534216116e-23,0.0,5.293955920339377e-23,3.1763735522036263e-22,2.384768094998435e-06,9.0,16.0,15.0,0.01740553043782711,-0.002752339467406273,-0.0016653049970045686,-0.0017647058703005314,0.00012626263196580112,9.803921420825645e-05,0.00010416666918899864,4.538852590485476e-05,6.127451342763379e-05,5.1062092097708955e-05,-0.002752339467406273,0.0013013605494052172,9.803921420825645e-05,0.00010416666918899864,-0.00010822511103469878,-2.4509803552064113e-05,-2.604166729724966e-05,-2.752857078576476e-20,-1.9905274260476058e-20,-3.049318610115481e-20,-0.0016653049970045686,9.803921420825645e-05,0.00042304699309170246,6.127451342763379e-05,-8.759695991624806e-20,-1.3071895409666467e-05,-3.3881317890172014e-21,-1.9452225387794897e-05,-8.169934517354704e-06,-5.082197683525802e-21,-0.0017647058703005314,0.00010416666918899864,6.127451342763379e-05,0.00047991631436161697,-9.452234218674075e-20,-4.1626104851368113e-22,-1.4880952221574262e-05,-2.438156254920355e-22,-8.753501788305584e-06,-2.3567119569634087e-05,0.00012626263196580112,-0.00010822511103469878,-8.759695991624806e-20,-9.452234218674075e-20,1.3528138879337348e-05,5.1466753621426735e-21,5.858938050171568e-21,3.477846958149393e-21,2.1203648130770974e-21,3.941703834716275e-21,9.803921420825645e-05,-2.4509803552064113e-05,-1.3071895409666467e-05,-4.1626104851368113e-22,5.1466753621426735e-21,3.267973852416617e-06,1.2907168581827047e-23,0.0,6.05320109391222e-23,1.09478416193716e-23,0.00010416666918899864,-2.604166729724966e-05,-3.3881317890172014e-21,-1.4880952221574262e-05,5.858938050171568e-21,1.2907168581827047e-23,3.7202380553935654e-06,2.6469779601696886e-23,4.764560328305439e-22,0.0,4.538852590485476e-05,-2.752857078576476e-20,-1.9452225387794897e-05,-2.438156254920355e-22,3.477846958149393e-21,0.0,2.6469779601696886e-23,1.2968150713277282e-06,-5.293955920339377e-23,2.6469779601696886e-23,6.127451342763379e-05,-1.9905274260476058e-20,-8.169934517354704e-06,-8.753501788305584e-06,2.1203648130770974e-21,6.05320109391222e-23,4.764560328305439e-22,-5.293955920339377e-23,1.1671335187202203e-06,6.352747104407253e-22,5.1062092097708955e-05,-3.049318610115481e-20,-5.082197683525802e-21,-2.3567119569634087e-05,3.941703834716275e-21,1.09478416193716e-23,0.0,2.6469779601696886e-23,6.352747104407253e-22,1.6833656673043151e-06,9.0,16.0,16.0,0.01641281321644783,-0.002586062764748931,-0.0015646026004105806,-0.0015646026004105806,0.00011837121564894915,9.191176650347188e-05,9.191176650347188e-05,4.255174280842766e-05,5.406574564403854e-05,4.255174280842766e-05,-0.002586062764748931,0.0012214615708217025,9.191176650347188e-05,9.191176650347188e-05,-0.000101461038866546,-2.297794162586797e-05,-2.297794162586797e-05,5.1880768019325896e-20,3.3034284942917713e-20,5.336307567702092e-20,-0.0015646026004105806,9.191176650347188e-05,0.0003970570978708565,5.406574564403854e-05,1.4397188421410551e-19,-1.2254901776032057e-05,2.752857078576476e-21,-1.8236461983178742e-05,-7.2087659646058455e-06,4.235164736271502e-21,-0.0015646026004105806,9.191176650347188e-05,5.406574564403854e-05,0.0003970570978708565,1.4397188421410551e-19,3.4439213448989776e-22,-1.2254901776032057e-05,1.43699672423303e-22,-7.2087659646058455e-06,-1.8236461983178742e-05,0.00011837121564894915,-0.000101461038866546,1.4397188421410551e-19,1.4397188421410551e-19,1.268262985831825e-05,-4.523444853785118e-21,-4.523444853785118e-21,-6.520963248478504e-21,-3.741820163336811e-21,-6.520963248478504e-21,9.191176650347188e-05,-2.297794162586797e-05,-1.2254901776032057e-05,3.4439213448989776e-22,-4.523444853785118e-21,3.063725444008014e-06,-4.0119880029121166e-24,-1.0587911840678754e-22,-3.272238579978725e-23,-1.104367875302509e-23,9.191176650347188e-05,-2.297794162586797e-05,2.752857078576476e-21,-1.2254901776032057e-05,-4.523444853785118e-21,-4.0119880029121166e-24,3.063725444008014e-06,2.6469779601696886e-23,-3.970466940254533e-22,-1.0587911840678754e-22,4.255174280842766e-05,5.1880768019325896e-20,-1.8236461983178742e-05,1.43699672423303e-22,-6.520963248478504e-21,-1.0587911840678754e-22,2.6469779601696886e-23,1.215764086737181e-06,-5.293955920339377e-23,2.6469779601696886e-23,5.406574564403854e-05,3.3034284942917713e-20,-7.2087659646058455e-06,-7.2087659646058455e-06,-3.741820163336811e-21,-3.272238579978725e-23,-3.970466940254533e-22,-5.293955920339377e-23,9.611687801225344e-07,-5.823351512373315e-22,4.255174280842766e-05,5.336307567702092e-20,4.235164736271502e-21,-1.8236461983178742e-05,-6.520963248478504e-21,-1.104367875302509e-23,-1.0587911840678754e-22,2.6469779601696886e-23,-5.823351512373315e-22,1.215764086737181e-06,10.0,3.0,3.0,0.21994949877262115,-0.0469696968793869,-0.11590909212827682,-0.11590909212827682,0.0025252525229007006,0.00909090880304575,0.00909090880304575,0.01666666753590107,0.02500000037252903,0.01666666753590107,-0.0469696968793869,0.022432660683989525,0.00909090880304575,0.00909090880304575,-0.0018939394503831863,-0.002020202111452818,-0.002020202111452818,-4.336808689942018e-19,7.914675859144182e-18,6.071532165918825e-18,-0.11590909212827682,0.00909090880304575,0.2825757563114166,0.02500000037252903,-1.167280264102421e-18,-0.00909090880304575,1.0083080204115191e-17,-0.10000000149011612,-0.02500000037252903,1.7501265054248305e-16,-0.11590909212827682,0.00909090880304575,0.02500000037252903,0.2825757563114166,7.884827770523242e-19,9.477496314581444e-18,-0.00909090880304575,1.6936382752191353e-16,-0.02500000037252903,-0.10000000149011612,0.0025252525229007006,-0.0018939394503831863,-1.167280264102421e-18,7.884827770523242e-19,0.00021043770539108664,1.254604997586608e-19,5.643357011081776e-20,3.928680360647768e-19,-2.421610534328085e-19,-3.6642821591089083e-19,0.00909090880304575,-0.002020202111452818,-0.00909090880304575,9.477496314581444e-18,1.254604997586608e-19,0.002020202111452818,-4.9801923391693056e-21,-1.5425124476160492e-18,-2.657620672725949e-18,-3.3941673123566945e-18,0.00909090880304575,-0.002020202111452818,1.0083080204115191e-17,-0.00909090880304575,5.643357011081776e-20,-4.9801923391693056e-21,0.002020202111452818,-3.6792414619929884e-18,-2.710505431213761e-18,-3.0357660829594124e-18,0.01666666753590107,-4.336808689942018e-19,-0.10000000149011612,1.6936382752191353e-16,3.928680360647768e-19,-1.5425124476160492e-18,-3.6792414619929884e-18,0.05000000074505806,1.9226130026248583e-18,-7.681177330599244e-17,0.02500000037252903,7.914675859144182e-18,-0.02500000037252903,-0.02500000037252903,-2.421610534328085e-19,-2.657620672725949e-18,-2.710505431213761e-18,1.9226130026248583e-18,0.02500000037252903,-3.469446951953614e-18,0.01666666753590107,6.071532165918825e-18,1.7501265054248305e-16,-0.10000000149011612,-3.6642821591089083e-19,-3.3941673123566945e-18,-3.0357660829594124e-18,-7.681177330599244e-17,-3.469446951953614e-18,0.05000000074505806,10.0,3.0,4.0,0.1815151572227478,-0.03659090772271156,-0.09068182110786438,-0.07454545795917511,0.0018939394503831863,0.006818181835114956,0.005454545374959707,0.012500000186264515,0.014999999664723873,0.008333333767950535,-0.03659090772271156,0.017127525061368942,0.006818181835114956,0.005454545374959707,-0.0014204545877873898,-0.0015151514671742916,-0.001212121220305562,2.7755575615628914e-17,1.3631133302499107e-17,1.878780288375367e-17,-0.09068182110786438,0.006818181835114956,0.21568182110786438,0.014999999664723873,2.2452330870600872e-18,-0.006818181835114956,2.164623633263274e-17,-0.07500000298023224,-0.014999999664723873,1.0328552999207448e-16,-0.07454545795917511,0.005454545374959707,0.014999999664723873,0.108030304312706,3.686287386450715e-18,2.7484344747134e-17,-0.003636363660916686,1.7414254918230587e-16,-0.009999999776482582,-0.02500000037252903,0.0018939394503831863,-0.0014204545877873898,2.2452330870600872e-18,3.686287386450715e-18,0.00015782828268129379,2.710505431213761e-20,-1.0842021724855044e-19,-8.581150995109795e-19,-3.4909935076457603e-19,-9.124656220442356e-19,0.006818181835114956,-0.0015151514671742916,-0.006818181835114956,2.7484344747134e-17,2.710505431213761e-20,0.0015151514671742916,-7.453028634025022e-19,-1.0916791407604325e-17,-3.704433661138597e-18,-6.3114004814887895e-18,0.005454545374959707,-0.001212121220305562,2.164623633263274e-17,-0.003636363660916686,-1.0842021724855044e-19,-7.453028634025022e-19,0.000808080832939595,-5.975716940434664e-18,-3.4247876774770294e-18,-1.192092477154138e-18,0.012500000186264515,2.7755575615628914e-17,-0.07500000298023224,1.7414254918230587e-16,-8.581150995109795e-19,-1.0916791407604325e-17,-5.975716940434664e-18,0.03750000149011612,-4.2083303354557914e-17,-3.2034561072031024e-17,0.014999999664723873,1.3631133302499107e-17,-0.014999999664723873,-0.009999999776482582,-3.4909935076457603e-19,-3.704433661138597e-18,-3.4247876774770294e-18,-4.2083303354557914e-17,0.009999999776482582,-3.410013611351373e-18,0.008333333767950535,1.878780288375367e-17,1.0328552999207448e-16,-0.02500000037252903,-9.124656220442356e-19,-6.3114004814887895e-18,-1.192092477154138e-18,-3.2034561072031024e-17,-3.410013611351373e-18,0.008333333767950535,10.0,3.0,5.0,0.15467531979084015,-0.029999999329447746,-0.07454545795917511,-0.052077922970056534,0.0015151514671742916,0.005454545374959707,0.003636363660916686,0.009999999776482582,0.009999999776482582,0.004761904943734407,-0.029999999329447746,0.013863636180758476,0.005454545374959707,0.003636363660916686,-0.0011363636003807187,-0.001212121220305562,-0.000808080832939595,3.3975444840025954e-18,1.1298376234824784e-18,2.729083907771702e-18,-0.07454545795917511,0.005454545374959707,0.17454545199871063,0.009999999776482582,-3.483161916702473e-19,-0.005454545374959707,2.0036055651223754e-18,-0.05999999865889549,-0.009999999776482582,-1.850371804212999e-18,-0.052077922970056534,0.003636363660916686,0.009999999776482582,0.05461039021611214,7.047314121155779e-19,8.546802320173531e-19,-0.001818181830458343,-6.323880155390377e-18,-0.004999999888241291,-0.009523809887468815,0.0015151514671742916,-0.0011363636003807187,-3.483161916702473e-19,7.047314121155779e-19,0.00012626263196580112,5.421010862427522e-20,3.3881317890172014e-20,8.557239659293331e-20,-4.6939575549671975e-20,-2.0482402051263427e-19,0.005454545374959707,-0.001212121220305562,-0.005454545374959707,8.546802320173531e-19,5.421010862427522e-20,0.001212121220305562,8.131516293641283e-20,-1.0517902375559563e-18,-1.9920946748144524e-19,-2.7228790192017887e-19,0.003636363660916686,-0.000808080832939595,2.0036055651223754e-18,-0.001818181830458343,3.3881317890172014e-20,8.131516293641283e-20,0.0004040404164697975,-9.71445150682915e-19,-1.3877787497621727e-19,-2.092682292993344e-19,0.009999999776482582,3.3975444840025954e-18,-0.05999999865889549,-6.323880155390377e-18,8.557239659293331e-20,-1.0517902375559563e-18,-9.71445150682915e-19,0.029999999329447746,2.8436622778855567e-18,1.9039495332589775e-18,0.009999999776482582,1.1298376234824784e-18,-0.009999999776482582,-0.004999999888241291,-4.6939575549671975e-20,-1.9920946748144524e-19,-1.3877787497621727e-19,2.8436622778855567e-18,0.004999999888241291,-4.2294210008930866e-19,0.004761904943734407,2.729083907771702e-18,-1.850371804212999e-18,-0.009523809887468815,-2.0482402051263427e-19,-2.7228790192017887e-19,-2.092682292993344e-19,1.9039495332589775e-18,-4.2294210008930866e-19,0.0023809524718672037,10.0,3.0,6.0,0.13481241464614868,-0.025432899594306946,-0.06331168860197067,-0.03847402706742287,0.0012626262614503503,0.004545454401522875,0.002597402548417449,0.008333333767950535,0.0071428571827709675,0.0029761905316263437,-0.025432899594306946,0.011649230495095253,0.004545454401522875,0.002597402548417449,-0.0009469697251915932,-0.001010101055726409,-0.0005772005533799529,-2.775557602921922e-18,-1.4927368542556707e-19,5.133417741030851e-19,-0.06331168860197067,0.004545454401522875,0.14664502441883087,0.0071428571827709675,-1.0299920638612292e-18,-0.004545454401522875,3.6761969203509104e-19,-0.05000000074505806,-0.0071428571827709675,1.1727786577111528e-17,-0.03847402706742287,0.002597402548417449,0.0071428571827709675,0.03175865858793259,-2.710505431213761e-19,3.296594121275705e-18,-0.0010389609960839152,2.7207685919459515e-17,-0.0028571428265422583,-0.004464285913854837,0.0012626262614503503,-0.0009469697251915932,-1.0299920638612292e-18,-2.710505431213761e-19,0.00010521885269554332,1.0842021724855044e-19,2.0328790734103208e-20,1.930902308790223e-19,6.568491964032421e-20,2.953794759002092e-20,0.004545454401522875,-0.001010101055726409,-0.004545454401522875,3.296594121275705e-18,1.0842021724855044e-19,0.001010101055726409,2.710505431213761e-20,-1.6739881530904073e-18,-8.029291762578332e-19,-5.204170634725574e-19,0.002597402548417449,-0.0005772005533799529,3.6761969203509104e-19,-0.0010389609960839152,2.0328790734103208e-20,2.710505431213761e-20,0.0002308802359038964,-2.339614446651176e-19,-4.661489423454784e-20,-8.666771943327276e-20,0.008333333767950535,-2.775557602921922e-18,-0.05000000074505806,2.7207685919459515e-17,1.930902308790223e-19,-1.6739881530904073e-18,-2.339614446651176e-19,0.02500000037252903,3.2026613520705615e-18,-6.014176703015317e-18,0.0071428571827709675,-1.4927368542556707e-19,-0.0071428571827709675,-0.0028571428265422583,6.568491964032421e-20,-8.029291762578332e-19,-4.661489423454784e-20,3.2026613520705615e-18,0.0028571428265422583,1.0604075983823806e-18,0.0029761905316263437,5.133417741030851e-19,1.1727786577111528e-17,-0.004464285913854837,2.953794759002092e-20,-5.204170634725574e-19,-8.666771943327276e-20,-6.014176703015317e-18,1.0604075983823806e-18,0.0008928571478463709,10.0,3.0,7.0,0.11949855834245682,-0.02207792177796364,-0.05503246933221817,-0.029599567875266075,0.0010822510812431574,0.0038961039390414953,0.0019480519695207477,0.0071428571827709675,0.0053571430034935474,0.0019841270986944437,-0.02207792177796364,0.010046897456049919,0.0038961039390414953,0.0019480519695207477,-0.000811688310932368,-0.0008658008882775903,-0.00043290044413879514,-1.9063947205087148e-17,1.5667472886002043e-18,3.1433673914015354e-18,-0.05503246933221817,0.0038961039390414953,0.12646104395389557,0.0053571430034935474,-5.9600546891262784e-18,-0.0038961039390414953,1.9605708733688448e-18,-0.04285714402794838,-0.0053571430034935474,1.6316913478023046e-17,-0.029599567875266075,0.0019480519695207477,0.0053571430034935474,0.020183982327580452,1.993652307606678e-18,7.433881264000798e-18,-0.0006493506371043622,4.8265863011016057e-17,-0.0017857142956927419,-0.0023809524718672037,0.0010822510812431574,-0.000811688310932368,-5.9600546891262784e-18,1.993652307606678e-18,9.018759010359645e-05,3.024761427186372e-19,-6.525035255070124e-20,2.403080241040825e-18,-6.758662725562923e-20,-2.236199550987972e-19,0.0038961039390414953,-0.0008658008882775903,-0.0038961039390414953,7.433881264000798e-18,3.024761427186372e-19,0.0008658008882775903,-2.642742795433417e-19,-1.8428506644933606e-18,-6.440302104294459e-19,-8.651088598913271e-19,0.0019480519695207477,-0.00043290044413879514,1.9605708733688448e-18,-0.0006493506371043622,-6.525035255070124e-20,-2.642742795433417e-19,0.00014430013834498823,-2.4030801376432484e-19,-1.0481247546924895e-19,-8.855966890228907e-20,0.0071428571827709675,-1.9063947205087148e-17,-0.04285714402794838,4.8265863011016057e-17,2.403080241040825e-18,-1.8428506644933606e-18,-2.4030801376432484e-19,0.02142857201397419,-5.947623405290525e-18,-6.211962204921646e-18,0.0053571430034935474,1.5667472886002043e-18,-0.0053571430034935474,-0.0017857142956927419,-6.758662725562923e-20,-6.440302104294459e-19,-1.0481247546924895e-19,-5.947623405290525e-18,0.0017857142956927419,2.587316147076634e-33,0.0019841270986944437,3.1433673914015354e-18,1.6316913478023046e-17,-0.0023809524718672037,-2.236199550987972e-19,-8.651088598913271e-19,-8.855966890228907e-20,-6.211962204921646e-18,2.587316147076634e-33,0.00039682540227659047,10.0,3.0,8.0,0.10732322931289673,-0.019507575780153275,-0.048674240708351135,-0.02348484843969345,0.0009469697251915932,0.003409090917557478,0.0015151514671742916,0.0062500000931322575,0.004166666883975267,0.0013888889225199819,-0.019507575780153275,0.008833122439682484,0.003409090917557478,0.0015151514671742916,-0.0007102272938936949,-0.0007575757335871458,-0.00033670032280497253,0.0,0.0,-0.0,-0.048674240708351135,0.003409090917557478,0.11117424070835114,0.004166666883975267,6.084071086631786e-20,-0.003409090917557478,2.710505431213761e-20,-0.03750000149011612,-0.004166666883975267,-2.3129647035674605e-18,-0.02348484843969345,0.0015151514671742916,0.004166666883975267,0.013654401525855064,7.875126977577784e-21,0.0,-0.00043290044413879514,-8.095375945498229e-18,-0.0011904762359336019,-0.0013888889225199819,0.0009469697251915932,-0.0007102272938936949,6.084071086631786e-20,7.875126977577784e-21,7.891414134064689e-05,-1.379394757266065e-20,-2.6398407001089344e-21,0.0,0.0,-0.0,0.003409090917557478,-0.0007575757335871458,-0.003409090917557478,0.0,-1.379394757266065e-20,0.0007575757335871458,-6.776263578034403e-21,0.0,0.0,-0.0,0.0015151514671742916,-0.00033670032280497253,2.710505431213761e-20,-0.00043290044413879514,-2.6398407001089344e-21,-6.776263578034403e-21,9.620009950594977e-05,0.0,0.0,-0.0,0.0062500000931322575,0.0,-0.03750000149011612,-8.095375945498229e-18,0.0,0.0,0.0,0.01875000074505806,0.0,1.1564823517837303e-18,0.004166666883975267,0.0,-0.004166666883975267,-0.0011904762359336019,0.0,0.0,0.0,0.0,0.0011904762359336019,-0.0,0.0013888889225199819,-0.0,-2.3129647035674605e-18,-0.0013888889225199819,-0.0,-0.0,-0.0,1.1564823517837303e-18,-0.0,0.00019841270113829523,10.0,3.0,9.0,0.09740740805864334,-0.017474748194217682,-0.04363636299967766,-0.019090909510850906,0.0008417508215643466,0.0030303029343485832,0.001212121220305562,0.0055555556900799274,0.0033333334140479565,0.001010101055726409,-0.017474748194217682,0.007881593890488148,0.0030303029343485832,0.001212121220305562,-0.0006313131307251751,-0.0006734006456099451,-0.000269360258243978,-9.62964972193618e-34,-2.710505431213761e-20,-1.2197274440461925e-19,-0.04363636299967766,0.0030303029343485832,0.09919191896915436,0.0033333334140479565,3.7393927436681374e-20,-0.0030303029343485832,1.3552527156068805e-20,-0.03333333507180214,-0.0033333334140479565,-1.6805133673525319e-18,-0.019090909510850906,0.001212121220305562,0.0033333334140479565,0.009678931906819344,1.0568465788276332e-23,3.3580540802280954e-20,-0.0003030303050763905,-6.5363778916715745e-18,-0.0008333333535119891,-0.0008658008882775903,0.0008417508215643466,-0.0006313131307251751,3.7393927436681374e-20,1.0568465788276332e-23,7.014590664766729e-05,-5.549178297816066e-21,-2.794067879084593e-21,4.828374973186757e-36,-5.645573313901728e-22,1.1334194956727984e-21,0.0030303029343485832,-0.0006734006456099451,-0.0030303029343485832,3.3580540802280954e-20,-5.549178297816066e-21,0.0006734006456099451,-4.5053026180650705e-21,-1.2575245423568974e-35,-9.697916190618022e-22,-1.497850918587619e-21,0.001212121220305562,-0.000269360258243978,1.3552527156068805e-20,-0.0003030303050763905,-2.794067879084593e-21,-4.5053026180650705e-21,6.73400645609945e-05,2.400753438657629e-34,5.0942956038811735e-21,2.710505431213761e-20,0.0055555556900799274,-9.62964972193618e-34,-0.03333333507180214,-6.5363778916715745e-18,4.828374973186757e-36,-1.2575245423568974e-35,2.400753438657629e-34,0.01666666753590107,9.62964972193618e-35,8.170472364589468e-19,0.0033333334140479565,-2.710505431213761e-20,-0.0033333334140479565,-0.0008333333535119891,-5.645573313901728e-22,-9.697916190618022e-22,5.0942956038811735e-21,9.62964972193618e-35,0.0008333333535119891,2.710505431213761e-20,0.001010101055726409,-1.2197274440461925e-19,-1.6805133673525319e-18,-0.0008658008882775903,1.1334194956727984e-21,-1.497850918587619e-21,2.710505431213761e-20,8.170472364589468e-19,2.710505431213761e-20,0.00010822511103469878,10.0,3.0,10.0,0.08917355537414551,-0.015826446935534477,-0.0395454540848732,-0.015826446935534477,0.0007575757335871458,0.0027272726874798536,0.0009917354909703135,0.004999999888241291,0.0027272726874798536,0.0007575757335871458,-0.015826446935534477,0.007115473039448261,0.0027272726874798536,0.0009917354909703135,-0.0005681818001903594,-0.000606060610152781,-0.00022038567112758756,-1.4735281281095103e-17,-1.7076184216646695e-18,-1.111307226797642e-18,-0.0395454540848732,0.0027272726874798536,0.08954545110464096,0.0027272726874798536,-4.847717622466008e-18,-0.0027272726874798536,-9.486769009248164e-20,-0.029999999329447746,-0.0027272726874798536,-1.1655173354219173e-18,-0.015826446935534477,0.0009917354909703135,0.0027272726874798536,0.007115473039448261,-1.4683341990047439e-18,-6.171688900546759e-20,-0.00022038567112758756,-5.393412808470303e-18,-0.000606060610152781,-0.0005681818001903594,0.0007575757335871458,-0.0005681818001903594,-4.847717622466008e-18,-1.4683341990047439e-18,6.313131598290056e-05,1.4782450376646538e-19,4.711449193748426e-20,1.6821561480490622e-18,1.8194435986578238e-19,1.1932607663717927e-19,0.0027272726874798536,-0.000606060610152781,-0.0027272726874798536,-6.171688900546759e-20,1.4782450376646538e-19,0.000606060610152781,8.41884474955368e-21,-4.041239479488804e-19,1.320086392022153e-20,-3.85598242656135e-25,0.0009917354909703135,-0.00022038567112758756,-9.486769009248164e-20,-0.00022038567112758756,4.711449193748426e-20,8.41884474955368e-21,4.897459439234808e-05,1.2274568030938983e-33,7.789630106452186e-21,6.776263578034403e-21,0.004999999888241291,-1.4735281281095103e-17,-0.029999999329447746,-5.393412808470303e-18,1.6821561480490622e-18,-4.041239479488804e-19,1.2274568030938983e-33,0.014999999664723873,4.237045877651919e-33,5.992681070629631e-19,0.0027272726874798536,-1.7076184216646695e-18,-0.0027272726874798536,-0.000606060610152781,1.8194435986578238e-19,1.320086392022153e-20,7.789630106452186e-21,4.237045877651919e-33,0.000606060610152781,0.0,0.0007575757335871458,-1.111307226797642e-18,-1.1655173354219173e-18,-0.0005681818001903594,1.1932607663717927e-19,-3.85598242656135e-25,6.776263578034403e-21,5.992681070629631e-19,0.0,6.313131598290056e-05,10.0,3.0,11.0,0.08222610503435135,-0.014462810009717941,-0.036157023161649704,-0.013334392569959164,0.000688705244101584,0.002479338785633445,0.0008264462812803686,0.004545454401522875,0.0022727272007614374,0.0005827505956403911,-0.014462810009717941,0.006485307589173317,0.002479338785633445,0.0008264462812803686,-0.0005165289039723575,-0.0005509642069227993,-0.0001836547307902947,1.2518544638517033e-33,0.0,8.809142651444724e-20,-0.036157023161649704,0.002479338785633445,0.08161157369613647,0.0022727272007614374,-1.6514370123937097e-21,-0.002479338785633445,0.0,-0.027272727340459824,-0.0022727272007614374,-9.486769009248164e-19,-0.013334392569959164,0.0008264462812803686,0.0022727272007614374,0.005386381410062313,-4.080068371417809e-22,-0.0,-0.00016528925334569067,-4.528881682538056e-18,-0.00045454545761458576,-0.0003885003970935941,0.000688705244101584,-0.0005165289039723575,-1.6514370123937097e-21,-4.080068371417809e-22,5.7392102462472394e-05,-1.5520170113482249e-21,1.2955261960230389e-22,-5.41148589097155e-36,-3.4497783531303177e-22,2.2819360472666483e-22,0.002479338785633445,-0.0005509642069227993,-0.002479338785633445,-0.0,-1.5520170113482249e-21,0.0005509642069227993,-9.050683207134811e-24,4.096826683891253e-36,2.700507410625345e-22,8.257599561042588e-22,0.0008264462812803686,-0.0001836547307902947,0.0,-0.00016528925334569067,1.2955261960230389e-22,-9.050683207134811e-24,3.6730947613250464e-05,-2.2799135377480593e-34,1.2315902439670008e-21,-1.8634724839594607e-20,0.004545454401522875,1.2518544638517033e-33,-0.027272727340459824,-4.528881682538056e-18,-5.41148589097155e-36,4.096826683891253e-36,-2.2799135377480593e-34,0.013636363670229912,4.81482486096809e-35,4.528881579140479e-19,0.0022727272007614374,0.0,-0.0022727272007614374,-0.00045454545761458576,-3.4497783531303177e-22,2.700507410625345e-22,1.2315902439670008e-21,4.81482486096809e-35,0.00045454545761458576,6.776263578034403e-21,0.0005827505956403911,8.809142651444724e-20,-9.486769009248164e-19,-0.0003885003970935941,2.2819360472666483e-22,8.257599561042588e-22,-1.8634724839594607e-20,4.528881579140479e-19,6.776263578034403e-21,3.885003752657212e-05,10.0,3.0,12.0,0.07628482580184937,-0.013315850868821144,-0.03330419585108757,-0.011388611048460007,0.0006313131307251751,0.0022727272007614374,0.0006993007264100015,0.004166666883975267,0.001923076924867928,0.0004578754596877843,-0.013315850868821144,0.005957815330475569,0.0022727272007614374,0.0006993007264100015,-0.0004734848625957966,-0.0005050505278632045,-0.0001554001501062885,0.0,6.776263578034403e-21,6.776263578034403e-21,-0.03330419585108757,0.0022727272007614374,0.07497086375951767,0.001923076924867928,1.8787898655758968e-20,-0.0022727272007614374,1.3552527156068805e-20,-0.02500000037252903,-0.001923076924867928,-6.505213034913027e-19,-0.011388611048460007,0.0006993007264100015,0.001923076924867928,0.004176883492618799,2.369853714153671e-20,-0.0,-0.0001271455839741975,-3.858330200513782e-18,-0.00034965036320500076,-0.00027472528745420277,0.0006313131307251751,-0.0004734848625957966,1.8787898655758968e-20,2.369853714153671e-20,5.260942634777166e-05,-5.4161944740639615e-21,-4.140501023748197e-21,-4.27185760618784e-36,-1.4113106810961139e-21,-6.361816101809163e-22,0.0022727272007614374,-0.0005050505278632045,-0.0022727272007614374,-0.0,-5.4161944740639615e-21,0.0005050505278632045,-1.7064933946392863e-21,2.1788427053640136e-36,3.7408124913491435e-22,8.201807783728502e-22,0.0006993007264100015,-0.0001554001501062885,1.3552527156068805e-20,-0.0001271455839741975,-4.140501023748197e-21,-1.7064933946392863e-21,2.82545734080486e-05,-8.762059844209814e-36,-5.252865481072735e-22,0.0,0.004166666883975267,0.0,-0.02500000037252903,-3.858330200513782e-18,-4.27185760618784e-36,2.1788427053640136e-36,-8.762059844209814e-36,0.012500000186264515,0.0,3.507572792060737e-19,0.001923076924867928,6.776263578034403e-21,-0.001923076924867928,-0.00034965036320500076,-1.4113106810961139e-21,3.7408124913491435e-22,-5.252865481072735e-22,0.0,0.00034965036320500076,-3.3881317890172014e-21,0.0004578754596877843,6.776263578034403e-21,-6.505213034913027e-19,-0.00027472528745420277,-6.361816101809163e-22,8.201807783728502e-22,0.0,3.507572792060737e-19,-3.3881317890172014e-21,2.4975024643936194e-05,10.0,3.0,13.0,0.07114551961421967,-0.012337662279605865,-0.030869130045175552,-0.009840159676969051,0.0005827505956403911,0.0020979021210223436,0.0005994006060063839,0.003846153849735856,0.0016483516665175557,0.00036630037357099354,-0.012337662279605865,0.005509768147021532,0.0020979021210223436,0.0005994006060063839,-0.0004370629321783781,-0.0004662004648707807,-0.00013320012658368796,-4.81482486096809e-34,6.776263578034403e-21,-2.710505431213761e-20,-0.030869130045175552,0.0020979021210223436,0.06933066993951797,0.0016483516665175557,0.0,-0.0020979021210223436,6.776263578034403e-21,-0.023076923564076424,-0.0016483516665175557,-5.285485590866834e-19,-0.009840159676969051,0.0005994006060063839,0.0016483516665175557,0.0033050281926989555,-0.0,-0.0,-9.990009857574478e-05,-3.32734166541522e-18,-0.00027472528745420277,-0.00019980019715148956,0.0005827505956403911,-0.0004370629321783781,0.0,-0.0,4.856254963669926e-05,0.0,0.0,0.0,0.0,0.0,0.0020979021210223436,-0.0004662004648707807,-0.0020979021210223436,-0.0,0.0,0.0004662004648707807,0.0,0.0,0.0,0.0,0.0005994006060063839,-0.00013320012658368796,6.776263578034403e-21,-9.990009857574478e-05,0.0,0.0,2.2200021703611128e-05,7.222237291452134e-35,0.0,3.3881317890172014e-21,0.003846153849735856,-4.81482486096809e-34,-0.023076923564076424,-3.32734166541522e-18,0.0,0.0,7.222237291452134e-35,0.011538461782038212,0.0,2.772784893508644e-19,0.0016483516665175557,6.776263578034403e-21,-0.0016483516665175557,-0.00027472528745420277,0.0,0.0,0.0,0.0,0.00027472528745420277,-3.3881317890172014e-21,0.00036630037357099354,-2.710505431213761e-20,-5.285485590866834e-19,-0.00019980019715148956,0.0,0.0,3.3881317890172014e-21,2.772784893508644e-19,-3.3881317890172014e-21,1.6650015822960995e-05,10.0,3.0,14.0,0.06665584444999695,-0.011493506841361523,-0.02876623347401619,-0.008587662130594254,0.0005411255406215787,0.0019480519695207477,0.0005194804980419576,0.0035714285913854837,0.0014285714132711291,0.00029761905898340046,-0.011493506841361523,0.00512445904314518,0.0019480519695207477,0.0005194804980419576,-0.000405844155466184,-0.00043290044413879514,-0.0001154401179519482,-1.042936778703194e-17,2.439454888092385e-19,3.2526065174565133e-19,-0.02876623347401619,0.0019480519695207477,0.06448052078485489,0.0014285714132711291,-2.982160022977454e-18,-0.0019480519695207477,3.6591823321385775e-19,-0.02142857201397419,-0.0014285714132711291,1.9922214919421144e-18,-0.008587662130594254,0.0005194804980419576,0.0014285714132711291,0.002660464495420456,4.887039927630401e-19,1.933336778881149e-18,-7.992007886059582e-05,1.2693289158876285e-17,-0.00021978022414259613,-0.00014880952949170023,0.0005411255406215787,-0.000405844155466184,-2.982160022977454e-18,4.887039927630401e-19,4.5093795051798224e-05,1.4203487278875067e-19,-1.5006558807746442e-20,1.2015401205204125e-18,-9.242615665460627e-21,-2.6283689813266597e-20,0.0019480519695207477,-0.00043290044413879514,-0.0019480519695207477,1.933336778881149e-18,1.4203487278875067e-19,0.00043290044413879514,-5.807723614909745e-20,1.300867288556414e-32,-1.5971240748795365e-19,-1.0813860748641589e-19,0.0005194804980419576,-0.0001154401179519482,3.6591823321385775e-19,-7.992007886059582e-05,-1.5006558807746442e-20,-5.807723614909745e-20,1.7760017726686783e-05,-5.915273896647831e-20,0.0,8.470329472543003e-22,0.0035714285913854837,-1.042936778703194e-17,-0.02142857201397419,1.2693289158876285e-17,1.2015401205204125e-18,1.300867288556414e-32,-5.915273896647831e-20,0.010714286006987095,-1.4640303782776305e-18,-7.682346881267332e-19,0.0014285714132711291,2.439454888092385e-19,-0.0014285714132711291,-0.00021978022414259613,-9.242615665460627e-21,-1.5971240748795365e-19,0.0,-1.4640303782776305e-18,0.00021978022414259613,0.0,0.00029761905898340046,3.2526065174565133e-19,1.9922214919421144e-18,-0.00014880952949170023,-2.6283689813266597e-20,-1.0813860748641589e-19,8.470329472543003e-22,-7.682346881267332e-19,0.0,1.1446886674093548e-05,10.0,3.0,15.0,0.06269979476928711,-0.010757575742900372,-0.026931818574666977,-0.007560160476714373,0.0005050505278632045,0.001818181830458343,0.00045454545761458576,0.0033333334140479565,0.0012499999720603228,0.00024509805371053517,-0.010757575742900372,0.004789562430232763,0.001818181830458343,0.00045454545761458576,-0.0003787878667935729,-0.0004040404164697975,-0.00010101010411744937,-1.925929944387236e-34,6.776263578034403e-21,-6.776263578034403e-21,-0.026931818574666977,0.001818181830458343,0.06026514992117882,0.0012499999720603228,0.0,-0.001818181830458343,8.131516293641283e-20,-0.019999999552965164,-0.0012499999720603228,-3.6591823321385775e-19,-0.007560160476714373,0.00045454545761458576,0.0012499999720603228,0.002173537155613303,-0.0,7.569702330178656e-20,-6.49350622552447e-05,-2.549494104594855e-18,-0.00017857142665889114,-0.0001131221724790521,0.0005050505278632045,-0.0003787878667935729,0.0,-0.0,4.2087540350621566e-05,0.0,0.0,0.0,0.0,0.0,0.001818181830458343,-0.0004040404164697975,-0.001818181830458343,7.569702330178656e-20,0.0,0.0004040404164697975,-1.682156109274971e-20,-0.0,7.52316384526264e-37,-2.256949153578792e-36,0.00045454545761458576,-0.00010101010411744937,8.131516293641283e-20,-6.49350622552447e-05,0.0,-1.682156109274971e-20,1.4430014743993524e-05,2.407412430484045e-35,0.0,1.2705494208814505e-21,0.0033333334140479565,-1.925929944387236e-34,-0.019999999552965164,-2.549494104594855e-18,0.0,-0.0,2.407412430484045e-35,0.009999999776482582,-2.407412430484045e-35,1.8210671991039005e-19,0.0012499999720603228,6.776263578034403e-21,-0.0012499999720603228,-0.00017857142665889114,0.0,7.52316384526264e-37,0.0,-2.407412430484045e-35,0.00017857142665889114,0.0,0.00024509805371053517,-6.776263578034403e-21,-3.6591823321385775e-19,-0.0001131221724790521,0.0,-2.256949153578792e-36,1.2705494208814505e-21,1.8210671991039005e-19,0.0,8.080155566858593e-06,10.0,3.0,16.0,0.05918746441602707,-0.010110294446349144,-0.025317512452602386,-0.006706773769110441,0.0004734848625957966,0.001704545458778739,0.00040106952656060457,0.0031250000465661287,0.001102941227145493,0.00020424836839083582,-0.010110294446349144,0.004495785105973482,0.001704545458778739,0.00040106952656060457,-0.00035511364694684744,-0.0003787878667935729,-8.912655903259292e-05,-5.7777898331617076e-34,-6.776263578034403e-21,-2.0328790734103208e-20,-0.025317512452602386,0.001704545458778739,0.056567512452602386,0.001102941227145493,0.0,-0.001704545458778739,0.0,-0.01875000074505806,-0.001102941227145493,-3.1170812458958252e-19,-0.006706773769110441,0.00040106952656060457,0.001102941227145493,0.0017987649189308286,-0.0,-0.0,-5.347593469195999e-05,-2.259513739950356e-18,-0.00014705881767440587,-8.753501606406644e-05,0.0004734848625957966,-0.00035511364694684744,0.0,-0.0,3.9457070670323446e-05,0.0,0.0,0.0,0.0,0.0,0.001704545458778739,-0.0003787878667935729,-0.001704545458778739,-0.0,0.0,0.0003787878667935729,0.0,0.0,0.0,0.0,0.00040106952656060457,-8.912655903259292e-05,0.0,-5.347593469195999e-05,0.0,0.0,1.1883541446877643e-05,6.018531076210112e-35,0.0,2.964615315390051e-21,0.0031250000465661287,-5.7777898331617076e-34,-0.01875000074505806,-2.259513739950356e-18,0.0,0.0,6.018531076210112e-35,0.00937500037252903,2.407412430484045e-35,1.5063425536154902e-19,0.001102941227145493,-6.776263578034403e-21,-0.001102941227145493,-0.00014705881767440587,0.0,0.0,0.0,2.407412430484045e-35,0.00014705881767440587,1.6940658945086007e-21,0.00020424836839083582,-2.0328790734103208e-20,-3.1170812458958252e-19,-8.753501606406644e-05,0.0,0.0,2.964615315390051e-21,1.5063425536154902e-19,1.6940658945086007e-21,5.835667707287939e-06,10.0,4.0,3.0,0.1815151572227478,-0.03659090772271156,-0.07454545795917511,-0.09068182110786438,0.0018939394503831863,0.005454545374959707,0.006818181835114956,0.008333333767950535,0.014999999664723873,0.012500000186264515,-0.03659090772271156,0.017127525061368942,0.005454545374959707,0.006818181835114956,-0.0014204545877873898,-0.001212121220305562,-0.0015151514671742916,1.6653346031121838e-17,1.0530791710659517e-17,2.6017447464250838e-17,-0.07454545795917511,0.005454545374959707,0.108030304312706,0.014999999664723873,4.0263425770421836e-18,-0.003636363660916686,1.4978948837218523e-17,-0.02500000037252903,-0.009999999776482582,2.6110446139749256e-18,-0.09068182110786438,0.006818181835114956,0.014999999664723873,0.21568182110786438,2.8174840794497847e-18,1.0170265867858893e-17,-0.006818181835114956,-1.1943613715358251e-17,-0.014999999664723873,-0.07500000298023224,0.0018939394503831863,-0.0014204545877873898,4.0263425770421836e-18,2.8174840794497847e-18,0.00015782828268129379,-9.50073931431236e-20,6.713301562487193e-20,-1.0139811559246528e-18,-3.6968076762763176e-19,-1.272075775906764e-18,0.005454545374959707,-0.001212121220305562,-0.003636363660916686,1.0170265867858893e-17,-9.50073931431236e-20,0.000808080832939595,-3.6588333653176567e-19,-1.1439340218913008e-18,-2.4980019046682757e-18,-2.359300259555384e-18,0.006818181835114956,-0.0015151514671742916,1.4978948837218523e-17,-0.006818181835114956,6.713301562487193e-20,-3.6588333653176567e-19,0.0015151514671742916,-3.269508092117656e-18,-2.9310948550421054e-18,-9.466687545517214e-18,0.008333333767950535,1.6653346031121838e-17,-0.02500000037252903,-1.1943613715358251e-17,-1.0139811559246528e-18,-1.1439340218913008e-18,-3.269508092117656e-18,0.008333333767950535,3.2172817693974363e-18,1.0976882770383852e-17,0.014999999664723873,1.0530791710659517e-17,-0.009999999776482582,-0.014999999664723873,-3.6968076762763176e-19,-2.4980019046682757e-18,-2.9310948550421054e-18,3.2172817693974363e-18,0.009999999776482582,-2.566368216859661e-17,0.012500000186264515,2.6017447464250838e-17,2.6110446139749256e-18,-0.07500000298023224,-1.272075775906764e-18,-2.359300259555384e-18,-9.466687545517214e-18,1.0976882770383852e-17,-2.566368216859661e-17,0.03750000149011612,10.0,4.0,4.0,0.14911364018917084,-0.028465909883379936,-0.05815909057855606,-0.05815909057855606,0.0014204545877873898,0.004090908914804459,0.004090908914804459,0.0062500000931322575,0.008999999612569809,0.0062500000931322575,-0.028465909883379936,0.013072916306555271,0.004090908914804459,0.004090908914804459,-0.0010653409408405423,-0.0009090909152291715,-0.0009090909152291715,1.1377745248575013e-17,1.0488342455984521e-17,6.995679852958994e-18,-0.05815909057855606,0.004090908914804459,0.08252272754907608,0.008999999612569809,2.0870184580922228e-18,-0.0027272726874798536,1.1375073455196466e-17,-0.01875000074505806,-0.006000000052154064,4.764601687336067e-17,-0.05815909057855606,0.004090908914804459,0.008999999612569809,0.08252272754907608,1.2532806814259107e-18,9.858169795562023e-18,-0.0027272726874798536,3.988080593345992e-17,-0.006000000052154064,-0.01875000074505806,0.0014204545877873898,-0.0010653409408405423,2.0870184580922228e-18,1.2532806814259107e-18,0.00011837121564894915,-1.3947809628944048e-19,-1.6486018508441842e-19,-2.879275608580838e-19,-3.067061117266861e-19,9.988169545867297e-21,0.004090908914804459,-0.0009090909152291715,-0.0027272726874798536,9.858169795562023e-18,-1.3947809628944048e-19,0.000606060610152781,-7.313320930492113e-19,-3.498872247883963e-18,-2.254878633387915e-18,-8.915301977284013e-19,0.004090908914804459,-0.0009090909152291715,1.1375073455196466e-17,-0.0027272726874798536,-1.6486018508441842e-19,-7.313320930492113e-19,0.000606060610152781,-1.3445117753528795e-18,-2.3823393075665172e-18,-3.04348946833882e-18,0.0062500000931322575,1.1377745248575013e-17,-0.01875000074505806,3.988080593345992e-17,-2.879275608580838e-19,-3.498872247883963e-18,-1.3445117753528795e-18,0.0062500000931322575,-1.055182360491429e-17,-5.184308167061798e-18,0.008999999612569809,1.0488342455984521e-17,-0.006000000052154064,-0.006000000052154064,-3.067061117266861e-19,-2.254878633387915e-18,-2.3823393075665172e-18,-1.055182360491429e-17,0.004000000189989805,-1.842887598107711e-17,0.0062500000931322575,6.995679852958994e-18,4.764601687336067e-17,-0.01875000074505806,9.988169545867297e-21,-8.915301977284013e-19,-3.04348946833882e-18,-5.184308167061798e-18,-1.842887598107711e-17,0.0062500000931322575,10.0,4.0,5.0,0.12668831646442413,-0.023318182677030563,-0.04772727191448212,-0.04055844247341156,0.0011363636003807187,0.0032727273646742105,0.0027272726874798536,0.004999999888241291,0.006000000052154064,0.0035714285913854837,-0.023318182677030563,0.010579545050859451,0.0032727273646742105,0.0027272726874798536,-0.0008522727293893695,-0.0007272727089002728,-0.000606060610152781,-4.9470231365448365e-18,-2.181261626822227e-18,-3.4378678845033304e-18,-0.04772727191448212,0.0032727273646742105,0.06681818515062332,0.006000000052154064,-5.715125785966291e-19,-0.0021818182431161404,-1.367168252330707e-19,-0.014999999664723873,-0.004000000189989805,-7.92474512874079e-18,-0.04055844247341156,0.0027272726874798536,0.006000000052154064,0.04170779138803482,-1.0704195857215693e-18,-2.3976214693834344e-18,-0.0013636363437399268,-4.3069325805778275e-18,-0.003000000026077032,-0.0071428571827709675,0.0011363636003807187,-0.0008522727293893695,-5.715125785966291e-19,-1.0704195857215693e-18,9.469696669839323e-05,2.995824258290309e-20,1.9023405215647198e-21,8.804330140490284e-20,1.1339034488377238e-19,2.2633153069492847e-19,0.0032727273646742105,-0.0007272727089002728,-0.0021818182431161404,-2.3976214693834344e-18,2.995824258290309e-20,0.0004848484823014587,5.558639499189568e-20,2.0847292357469822e-18,5.569412751186247e-19,3.26386082667818e-19,0.0027272726874798536,-0.000606060610152781,-1.367168252330707e-19,-0.0013636363437399268,1.9023405215647198e-21,5.558639499189568e-20,0.0003030303050763905,-3.2199349512122e-20,-5.155817727395302e-20,3.614932822257936e-19,0.004999999888241291,-4.9470231365448365e-18,-0.014999999664723873,-4.3069325805778275e-18,8.804330140490284e-20,2.0847292357469822e-18,-3.2199349512122e-20,0.004999999888241291,2.6136713260100878e-18,9.660644958946224e-20,0.006000000052154064,-2.181261626822227e-18,-0.004000000189989805,-0.003000000026077032,1.1339034488377238e-19,5.569412751186247e-19,-5.155817727395302e-20,2.6136713260100878e-18,0.0020000000949949026,2.7159815736640153e-18,0.0035714285913854837,-3.4378678845033304e-18,-7.92474512874079e-18,-0.0071428571827709675,2.2633153069492847e-19,3.26386082667818e-19,3.614932822257936e-19,9.660644958946224e-20,2.7159815736640153e-18,0.0017857142956927419,10.0,4.0,6.0,0.11018939316272736,-0.019756494089961052,-0.04048701375722885,-0.029926948249340057,0.0009469697251915932,0.0027272726874798536,0.0019480519695207477,0.004166666883975267,0.004285714123398066,0.0022321429569274187,-0.019756494089961052,0.00888843834400177,0.0027272726874798536,0.0019480519695207477,-0.0007102272938936949,-0.000606060610152781,-0.00043290044413879514,9.251858814269842e-18,4.817808012287009e-18,3.4515988758765575e-18,-0.04048701375722885,0.0027272726874798536,0.05615800991654396,0.004285714123398066,1.870248747537495e-18,-0.001818181830458343,7.888358280775195e-18,-0.012500000186264515,-0.0028571428265422583,1.8056760510714006e-17,-0.029926948249340057,0.0019480519695207477,0.004285714123398066,0.024247564375400543,-8.131516293641283e-20,6.579547207069798e-18,-0.0007792207761667669,1.6948707412446148e-17,-0.001714285695925355,-0.0033482143189758062,0.0009469697251915932,-0.0007102272938936949,1.870248747537495e-18,-8.131516293641283e-20,7.891414134064689e-05,-6.098637220230962e-20,-3.3881317890172014e-21,-3.400575170369413e-19,-1.9868251465715774e-19,8.125308561638014e-20,0.0027272726874798536,-0.000606060610152781,-0.001818181830458343,6.579547207069798e-18,-6.098637220230962e-20,0.0004040404164697975,-2.303929616531697e-19,-5.465683268396331e-19,-5.761684680719604e-19,-8.828503847657293e-19,0.0019480519695207477,-0.00043290044413879514,7.888358280775195e-18,-0.0007792207761667669,-3.3881317890172014e-21,-2.303929616531697e-19,0.00017316016601398587,-1.5096117523420588e-18,-8.017081542761283e-19,-1.0057128653167259e-18,0.004166666883975267,9.251858814269842e-18,-0.012500000186264515,1.6948707412446148e-17,-3.400575170369413e-19,-5.465683268396331e-19,-1.5096117523420588e-18,0.004166666883975267,6.811448222377229e-19,-1.9956497419908404e-18,0.004285714123398066,4.817808012287009e-18,-0.0028571428265422583,-0.001714285695925355,-1.9868251465715774e-19,-5.761684680719604e-19,-8.017081542761283e-19,6.811448222377229e-19,0.0011428571306169033,-2.8680301915507563e-18,0.0022321429569274187,3.4515988758765575e-18,1.8056760510714006e-17,-0.0033482143189758062,8.125308561638014e-20,-8.828503847657293e-19,-1.0057128653167259e-18,-1.9956497419908404e-18,-2.8680301915507563e-18,0.0006696428754366934,10.0,4.0,7.0,0.09752164781093597,-0.017142856493592262,-0.03516233712434769,-0.023003246635198593,0.000811688310932368,0.0023376622702926397,0.0014610389480367303,0.0035714285913854837,0.003214285708963871,0.0014880952658131719,-0.017142856493592262,0.007665043231099844,0.0023376622702926397,0.0014610389480367303,-0.0006087662186473608,-0.0005194804980419576,-0.0003246753185521811,0.0,0.0,-0.0,-0.03516233712434769,0.0023376622702926397,0.048441559076309204,0.003214285708963871,2.557784019836569e-21,-0.0015584415523335338,0.0,-0.010714286006987095,-0.002142857061699033,-0.0,-0.023003246635198593,0.0014610389480367303,0.003214285708963871,0.01540584396570921,-9.357811067075007e-21,0.0,-0.0004870129923801869,0.0,-0.0010714285308495164,-0.0017857142956927419,0.000811688310932368,-0.0006087662186473608,2.557784019836569e-21,-9.357811067075007e-21,6.764069257769734e-05,9.374398906023857e-22,-2.7213343482651383e-22,0.0,0.0,-0.0,0.0023376622702926397,-0.0005194804980419576,-0.0015584415523335338,0.0,9.374398906023857e-22,0.00034632033202797174,0.0,0.0,0.0,-0.0,0.0014610389480367303,-0.0003246753185521811,0.0,-0.0004870129923801869,-2.7213343482651383e-22,0.0,0.00010822511103469878,0.0,0.0,-0.0,0.0035714285913854837,0.0,-0.010714286006987095,0.0,0.0,0.0,0.0,0.0035714285913854837,0.0,-0.0,0.003214285708963871,0.0,-0.002142857061699033,-0.0010714285308495164,0.0,0.0,0.0,0.0,0.0007142857066355646,-0.0,0.0014880952658131719,-0.0,-0.0,-0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,10.0,4.0,8.0,0.0874810591340065,-0.0151420459151268,-0.031079545617103577,-0.01823863573372364,0.0007102272938936949,0.0020454544574022293,0.0011363636003807187,0.0031250000465661287,0.0024999999441206455,0.0010416667209938169,-0.0151420459151268,0.006738478317856789,0.0020454544574022293,0.0011363636003807187,-0.0005326704704202712,-0.00045454545761458576,-0.00025252526393160224,0.0,0.0,-0.0,-0.031079545617103577,0.0020454544574022293,0.04259469732642174,0.0024999999441206455,4.892899662165029e-20,-0.0013636363437399268,1.3552527156068805e-20,-0.00937500037252903,-0.0016666667070239782,-6.476301004552767e-19,-0.01823863573372364,0.0011363636003807187,0.0024999999441206455,0.010419372469186783,3.498574617959809e-20,1.3552527156068805e-20,-0.0003246753185521811,0.0,-0.0007142857066355646,-0.0010416667209938169,0.0007102272938936949,-0.0005326704704202712,4.892899662165029e-20,3.498574617959809e-20,5.918560782447457e-05,-1.3131864617113677e-20,-7.329703953382064e-21,0.0,-0.0,-0.0,0.0020454544574022293,-0.00045454545761458576,-0.0013636363437399268,1.3552527156068805e-20,-1.3131864617113677e-20,0.0003030303050763905,-3.3881317890172014e-21,0.0,-0.0,-0.0,0.0011363636003807187,-0.00025252526393160224,1.3552527156068805e-20,-0.0003246753185521811,-7.329703953382064e-21,-3.3881317890172014e-21,7.215006917249411e-05,0.0,0.0,-0.0,0.0031250000465661287,0.0,-0.00937500037252903,0.0,0.0,0.0,0.0,0.0031250000465661287,0.0,-0.0,0.0024999999441206455,0.0,-0.0016666667070239782,-0.0007142857066355646,-0.0,-0.0,0.0,0.0,0.0004761904710903764,1.8503717525142107e-19,0.0010416667209938169,-0.0,-6.476301004552767e-19,-0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,1.8503717525142107e-19,0.00014880952949170023,10.0,4.0,9.0,0.07932323217391968,-0.01356060616672039,-0.027848483994603157,-0.014818182215094566,0.0006313131307251751,0.001818181830458343,0.0009090909152291715,0.0027777778450399637,0.0020000000949949026,0.0007575757335871458,-0.01356060616672039,0.006012205500155687,0.001818181830458343,0.0009090909152291715,-0.0004734848625957966,-0.0004040404164697975,-0.00020202020823489875,0.0,-2.710505431213761e-20,-9.486769009248164e-20,-0.027848483994603157,0.001818181830458343,0.03801010176539421,0.0020000000949949026,4.0004690395657726e-20,-0.001212121220305562,-1.2197274440461925e-19,-0.008333333767950535,-0.0013333333190530539,-2.710505431213761e-20,-0.014818182215094566,0.0009090909152291715,0.0020000000949949026,0.007384199183434248,-1.2055526339236202e-21,-1.5371452086633164e-19,-0.00022727272880729288,-0.0,-0.0005000000237487257,-0.0006493506371043622,0.0006313131307251751,-0.0004734848625957966,4.0004690395657726e-20,-1.2055526339236202e-21,5.260942634777166e-05,-1.0957856252739592e-20,-2.7212222669077245e-22,0.0,-1.8901487204507397e-22,8.400426551356325e-22,0.001818181830458343,-0.0004040404164697975,-0.001212121220305562,-1.5371452086633164e-19,-1.0957856252739592e-20,0.000269360258243978,3.061503691396726e-20,0.0,1.2038973639307513e-21,2.1632180598552078e-21,0.0009090909152291715,-0.00020202020823489875,-1.2197274440461925e-19,-0.00022727272880729288,-2.7212222669077245e-22,3.061503691396726e-20,5.0505052058724687e-05,0.0,-2.894762010398867e-23,2.0328790734103208e-20,0.0027777778450399637,0.0,-0.008333333767950535,-0.0,0.0,0.0,0.0,0.0027777778450399637,0.0,0.0,0.0020000000949949026,-2.710505431213761e-20,-0.0013333333190530539,-0.0005000000237487257,-1.8901487204507397e-22,1.2038973639307513e-21,-2.894762010398867e-23,0.0,0.00033333332976326346,6.776263578034403e-21,0.0007575757335871458,-9.486769009248164e-20,-2.710505431213761e-20,-0.0006493506371043622,8.400426551356325e-22,2.1632180598552078e-21,2.0328790734103208e-20,0.0,6.776263578034403e-21,8.116882963804528e-05,10.0,4.0,10.0,0.07256198674440384,-0.012278925627470016,-0.025227272883057594,-0.012278925627470016,0.0005681818001903594,0.0016363636823371053,0.0007438016473315656,0.0024999999441206455,0.0016363636823371053,0.0005681818001903594,-0.012278925627470016,0.005427513737231493,0.0016363636823371053,0.0007438016473315656,-0.00042613636469468474,-0.0003636363544501364,-0.00016528925334569067,0.0,-1.3552527156068805e-20,0.0,-0.025227272883057594,0.0016363636823371053,0.03431818261742592,0.0016363636823371053,-2.0097849015661792e-20,-0.0010909091215580702,-2.710505431213761e-20,-0.007499999832361937,-0.0010909091215580702,-2.710505431213761e-20,-0.012278925627470016,0.0007438016473315656,0.0016363636823371053,0.005427513737231493,-3.2183206565480146e-21,-1.8830470992324173e-20,-0.00016528925334569067,-0.0,-0.0003636363544501364,-0.00042613636469468474,0.0005681818001903594,-0.00042613636469468474,-2.0097849015661792e-20,-3.2183206565480146e-21,4.734848334919661e-05,1.2591907326140308e-21,9.378566111087342e-22,0.0,1.0634400360456515e-22,2.1173152913876792e-22,0.0016363636823371053,-0.0003636363544501364,-0.0010909091215580702,-1.8830470992324173e-20,1.2591907326140308e-21,0.00024242424115072936,2.2754100849876808e-21,0.0,1.1064139469878244e-21,6.517451668868792e-22,0.0007438016473315656,-0.00016528925334569067,-2.710505431213761e-20,-0.00016528925334569067,9.378566111087342e-22,2.2754100849876808e-21,3.6730947613250464e-05,0.0,3.786913623624455e-21,1.6940658945086007e-21,0.0024999999441206455,0.0,-0.007499999832361937,-0.0,0.0,0.0,0.0,0.0024999999441206455,0.0,0.0,0.0016363636823371053,-1.3552527156068805e-20,-0.0010909091215580702,-0.0003636363544501364,1.0634400360456515e-22,1.1064139469878244e-21,3.786913623624455e-21,0.0,0.00024242424115072936,6.776263578034403e-21,0.0005681818001903594,0.0,-2.710505431213761e-20,-0.00042613636469468474,2.1173152913876792e-22,6.517451668868792e-22,1.6940658945086007e-21,0.0,6.776263578034403e-21,4.734848334919661e-05,10.0,4.0,11.0,0.06686586141586304,-0.011219007894396782,-0.023057851940393448,-0.01034170389175415,0.0005165289039723575,0.0014876032946631312,0.0006198346964083612,0.0022727272007614374,0.0013636363437399268,0.0004370629321783781,-0.011219007894396782,0.004946625325828791,0.0014876032946631312,0.0006198346964083612,-0.00038739669253118336,-0.00033057850669138134,-0.00013774105173069984,0.0,6.776263578034403e-21,-4.743384504624082e-20,-0.023057851940393448,0.0014876032946631312,0.031280990689992905,0.0013636363437399268,-8.87666579258834e-21,-0.0009917354909703135,-8.809142651444724e-20,-0.006818181835114956,-0.0009090909152291715,5.421010862427522e-20,-0.01034170389175415,0.0006198346964083612,0.0013636363437399268,0.00410796795040369,-3.0503965298512144e-21,-1.0689282178512274e-19,-0.0001239669363712892,-0.0,-0.00027272728038951755,-0.00029137529782019556,0.0005165289039723575,-0.00038739669253118336,-8.87666579258834e-21,-3.0503965298512144e-21,4.3044077756349e-05,1.5819355646098032e-21,-2.818700483679564e-22,0.0,7.158034870465352e-23,7.594912476881735e-22,0.0014876032946631312,-0.00033057850669138134,-0.0009917354909703135,-1.0689282178512274e-19,1.5819355646098032e-21,0.00022038567112758756,2.2217237610213235e-20,0.0,-5.10645835598118e-25,7.971379620047272e-22,0.0006198346964083612,-0.00013774105173069984,-8.809142651444724e-20,-0.0001239669363712892,-2.818700483679564e-22,2.2217237610213235e-20,2.7548208890948445e-05,0.0,-1.9896218086797023e-21,1.0164395367051604e-20,0.0022727272007614374,0.0,-0.006818181835114956,-0.0,0.0,0.0,0.0,0.0022727272007614374,0.0,0.0,0.0013636363437399268,6.776263578034403e-21,-0.0009090909152291715,-0.00027272728038951755,7.158034870465352e-23,-5.10645835598118e-25,-1.9896218086797023e-21,0.0,0.0001818181772250682,-6.776263578034403e-21,0.0004370629321783781,-4.743384504624082e-20,5.421010862427522e-20,-0.00029137529782019556,7.594912476881735e-22,7.971379620047272e-22,1.0164395367051604e-20,0.0,-6.776263578034403e-21,2.9137529054423794e-05,10.0,4.0,12.0,0.06200091540813446,-0.010327797383069992,-0.021232517436146736,-0.008829919621348381,0.0004734848625957966,0.0013636363437399268,0.0005244755302555859,0.0020833334419876337,0.0011538461549207568,0.00034340660204179585,-0.010327797383069992,0.004544118884950876,0.0013636363437399268,0.0005244755302555859,-0.00035511364694684744,-0.0003030303050763905,-0.00011655011621769518,0.0,-3.3881317890172014e-20,1.3552527156068805e-20,-0.021232517436146736,0.0013636363437399268,0.028738344088196754,0.0011538461549207568,2.6498007140100258e-20,-0.0009090909152291715,-1.2197274440461925e-19,-0.0062500000931322575,-0.0007692307699471712,-9.486769009248164e-20,-0.008829919621348381,0.0005244755302555859,0.0011538461549207568,0.0031851103994995356,1.7147746519495498e-20,-7.735400177804952e-20,-9.535918798064813e-05,-0.0,-0.00020979020337108523,-0.00020604395831469446,0.0004734848625957966,-0.00035511364694684744,2.6498007140100258e-20,1.7147746519495498e-20,3.9457070670323446e-05,-2.9895638177567964e-21,-8.046101029860786e-22,-0.0,-1.0277606019871996e-21,-9.695057611132991e-22,0.0013636363437399268,-0.0003030303050763905,-0.0009090909152291715,-7.735400177804952e-20,-2.9895638177567964e-21,0.00020202020823489875,1.613773314217411e-20,0.0,-3.091884908423773e-22,8.017767670500144e-23,0.0005244755302555859,-0.00011655011621769518,-1.2197274440461925e-19,-9.535918798064813e-05,-8.046101029860786e-22,1.613773314217411e-20,2.119093005603645e-05,0.0,9.351815623221131e-21,-8.470329472543003e-22,0.0020833334419876337,0.0,-0.0062500000931322575,-0.0,-0.0,0.0,0.0,0.0020833334419876337,0.0,0.0,0.0011538461549207568,-3.3881317890172014e-20,-0.0007692307699471712,-0.00020979020337108523,-1.0277606019871996e-21,-3.091884908423773e-22,9.351815623221131e-21,0.0,0.0001398601452820003,1.6940658945086007e-20,0.00034340660204179585,1.3552527156068805e-20,-9.486769009248164e-20,-0.00020604395831469446,-9.695057611132991e-22,8.017767670500144e-23,-8.470329472543003e-22,0.0,1.6940658945086007e-20,1.8731268937699497e-05,10.0,4.0,13.0,0.05779720097780228,-0.009567932225763798,-0.019675325602293015,-0.00762737262994051,0.0004370629321783781,0.0012587412493303418,0.0004495504545047879,0.001923076924867928,0.0009890110231935978,0.00027472528745420277,-0.009567932225763798,0.004202255979180336,0.0012587412493303418,0.0004495504545047879,-0.0003277971991337836,-0.0002797202905640006,-9.990009857574478e-05,-0.0,3.3881317890172014e-21,-1.3552527156068805e-20,-0.019675325602293015,0.0012587412493303418,0.026578420773148537,0.0009890110231935978,0.0,-0.0008391608134843409,0.0,-0.005769230891019106,-0.0006593406433239579,6.776263578034403e-21,-0.00762737262994051,0.0004495504545047879,0.0009890110231935978,0.0025199800729751587,-0.0,-0.0,-7.492507575079799e-05,-0.0,-0.00016483516083098948,-0.00014985015150159597,0.0004370629321783781,-0.0003277971991337836,0.0,-0.0,3.6421912227524444e-05,0.0,0.0,0.0,0.0,0.0,0.0012587412493303418,-0.0002797202905640006,-0.0008391608134843409,-0.0,0.0,0.00018648018885869533,0.0,0.0,0.0,0.0,0.0004495504545047879,-9.990009857574478e-05,0.0,-7.492507575079799e-05,0.0,0.0,1.6650015822960995e-05,0.0,0.0,2.541098841762901e-21,0.001923076924867928,-0.0,-0.005769230891019106,-0.0,0.0,0.0,0.0,0.001923076924867928,0.0,0.0,0.0009890110231935978,3.3881317890172014e-21,-0.0006593406433239579,-0.00016483516083098948,0.0,0.0,0.0,0.0,0.00010989011207129806,-1.6940658945086007e-21,0.00027472528745420277,-1.3552527156068805e-20,6.776263578034403e-21,-0.00014985015150159597,0.0,0.0,2.541098841762901e-21,0.0,-1.6940658945086007e-21,1.2487512321968097e-05,10.0,4.0,14.0,0.054128248244524,-0.008912337943911552,-0.018331168219447136,-0.006655032280832529,0.000405844155466184,0.0011688311351463199,0.00038961038808338344,0.0017857142956927419,0.0008571428479626775,0.00022321428696159273,-0.008912337943911552,0.003908279351890087,0.0011688311351463199,0.00038961038808338344,-0.0003043831093236804,-0.0002597402490209788,-8.658008300699294e-05,-0.0,2.0328790734103208e-20,3.3881317890172014e-21,-0.018331168219447136,0.0011688311351463199,0.024720778688788414,0.0008571428479626775,0.0,-0.0007792207761667669,2.710505431213761e-20,-0.0053571430034935474,-0.0005714285653084517,6.776263578034403e-20,-0.006655032280832529,0.00038961038808338344,0.0008571428479626775,0.0020283153280615807,-0.0,-0.0,-5.994005914544687e-05,-0.0,-0.00013186813157517463,-0.00011160714348079637,0.000405844155466184,-0.0003043831093236804,0.0,-0.0,3.382034628884867e-05,0.0,0.0,0.0,0.0,0.0,0.0011688311351463199,-0.0002597402490209788,-0.0007792207761667669,-0.0,0.0,0.00017316016601398587,0.0,0.0,0.0,0.0,0.00038961038808338344,-8.658008300699294e-05,2.710505431213761e-20,-5.994005914544687e-05,0.0,0.0,1.3320013749762438e-05,0.0,-3.3881317890172014e-21,-8.470329472543003e-22,0.0017857142956927419,-0.0,-0.0053571430034935474,-0.0,0.0,0.0,0.0,0.0017857142956927419,0.0,0.0,0.0008571428479626775,2.0328790734103208e-20,-0.0005714285653084517,-0.00013186813157517463,0.0,0.0,-3.3881317890172014e-21,0.0,8.791208529146388e-05,-9.317362419797304e-21,0.00022321428696159273,3.3881317890172014e-21,6.776263578034403e-20,-0.00011160714348079637,0.0,0.0,-8.470329472543003e-22,0.0,-9.317362419797304e-21,8.585165232943837e-06,10.0,4.0,15.0,0.05089794844388962,-0.008340909145772457,-0.01715909130871296,-0.0058576203882694244,0.0003787878667935729,0.0010909091215580702,0.0003409090859349817,0.0016666667070239782,0.000750000006519258,0.00018382353300694376,-0.008340909145772457,0.0036527777556329966,0.0010909091215580702,0.0003409090859349817,-0.0002840909000951797,-0.00024242424115072936,-7.575757626909763e-05,-3.4147769309087595e-18,6.776263578034403e-20,1.7618285302889447e-19,-0.01715909130871296,0.0010909091215580702,0.023106060922145844,0.000750000006519258,-1.5052671929697771e-18,-0.0007272727089002728,1.4230153513872246e-19,-0.004999999888241291,-0.0005000000237487257,6.098637220230962e-19,-0.0058576203882694244,0.0003409090859349817,0.000750000006519258,0.001656938693486154,2.4289442659401916e-19,9.632665057738735e-19,-4.870129851042293e-05,1.3460907597446666e-18,-0.00010714285599533468,-8.484163117827848e-05,0.0003787878667935729,-0.0002840909000951797,-1.5052671929697771e-18,2.4289442659401916e-19,3.156565799145028e-05,7.423688796191708e-20,-3.463226702381232e-21,3.9250309431827607e-19,-9.011550152655076e-22,-1.3082379183202545e-20,0.0010909091215580702,-0.00024242424115072936,-0.0007272727089002728,9.632665057738735e-19,7.423688796191708e-20,0.0001616161607671529,-2.831265399593407e-20,1.705652588618709e-33,-6.228783749858524e-20,-4.9322947850727206e-20,0.0003409090859349817,-7.575757626909763e-05,1.4230153513872246e-19,-4.870129851042293e-05,-3.463226702381232e-21,-2.831265399593407e-20,1.0822510375874117e-05,-1.682156109274971e-20,5.082197683525802e-21,2.117582368135751e-21,0.0016666667070239782,-3.4147769309087595e-18,-0.004999999888241291,1.3460907597446666e-18,3.9250309431827607e-19,1.705652588618709e-33,-1.682156109274971e-20,0.0016666667070239782,1.0002580744660332e-19,-8.163404752490056e-20,0.000750000006519258,6.776263578034403e-20,-0.0005000000237487257,-0.00010714285599533468,-9.011550152655076e-22,-6.228783749858524e-20,5.082197683525802e-21,1.0002580744660332e-19,7.142857066355646e-05,-1.9481757786848908e-20,0.00018382353300694376,1.7618285302889447e-19,6.098637220230962e-19,-8.484163117827848e-05,-1.3082379183202545e-20,-4.9322947850727206e-20,2.117582368135751e-21,-8.163404752490056e-20,-1.9481757786848908e-20,6.06011644777027e-06,10.0,4.0,16.0,0.04803197458386421,-0.007838401943445206,-0.01612800732254982,-0.005195521283894777,0.00035511364694684744,0.0010227272287011147,0.00030080214492045343,0.0015625000232830644,0.0006617647013626993,0.00015318627993110567,-0.007838401943445206,0.0034286570735275745,0.0010227272287011147,0.00030080214492045343,-0.0002663352352101356,-0.00022727272880729288,-6.68449210934341e-05,-0.0,4.0657581468206416e-20,-6.776263578034403e-21,-0.01612800732254982,0.0010227272287011147,0.021689506247639656,0.0006617647013626993,0.0,-0.0006818181718699634,3.7269449679189215e-20,-0.004687500186264515,-0.00044117646757513285,6.098637220230962e-20,-0.005195521283894777,0.00030080214492045343,0.0006617647013626993,0.0013711325591430068,-0.0,-0.0,-4.0106951928464696e-05,-0.0,-8.823529060464352e-05,-6.565126386703923e-05,0.00035511364694684744,-0.0002663352352101356,0.0,-0.0,2.9592803912237287e-05,0.0,0.0,0.0,0.0,0.0,0.0010227272287011147,-0.00022727272880729288,-0.0006818181718699634,-0.0,0.0,0.00015151515253819525,0.0,0.0,0.0,0.0,0.00030080214492045343,-6.68449210934341e-05,3.7269449679189215e-20,-4.0106951928464696e-05,0.0,0.0,8.912656085158233e-06,0.0,-5.505714157152952e-21,8.470329472543003e-22,0.0015625000232830644,-0.0,-0.004687500186264515,-0.0,0.0,0.0,0.0,0.0015625000232830644,0.0,0.0,0.0006617647013626993,4.0657581468206416e-20,-0.00044117646757513285,-8.823529060464352e-05,0.0,0.0,-5.505714157152952e-21,0.0,5.8823530707741156e-05,-9.317362419797304e-21,0.00015318627993110567,-6.776263578034403e-21,6.098637220230962e-20,-6.565126386703923e-05,0.0,0.0,8.470329472543003e-22,0.0,-9.317362419797304e-21,4.376750894152792e-06,10.0,5.0,3.0,0.15467531979084015,-0.029999999329447746,-0.052077922970056534,-0.07454545795917511,0.0015151514671742916,0.003636363660916686,0.005454545374959707,0.004761904943734407,0.009999999776482582,0.009999999776482582,-0.029999999329447746,0.013863636180758476,0.003636363660916686,0.005454545374959707,-0.0011363636003807187,-0.000808080832939595,-0.001212121220305562,1.3994408073270399e-18,3.5918979101498657e-19,1.3024498893587418e-17,-0.052077922970056534,0.003636363660916686,0.05461039021611214,0.009999999776482582,6.925333802878676e-20,-0.001818181830458343,1.2343806384048397e-18,-0.009523809887468815,-0.004999999888241291,-1.6181886169191114e-17,-0.07454545795917511,0.005454545374959707,0.009999999776482582,0.17454545199871063,6.853774537333684e-19,2.7072198698207005e-18,-0.005454545374959707,-1.3998777861651363e-17,-0.009999999776482582,-0.05999999865889549,0.0015151514671742916,-0.0011363636003807187,6.925333802878676e-20,6.853774537333684e-19,0.00012626263196580112,4.618810781256169e-20,4.648302355033099e-20,-6.518113433553674e-20,-2.5898564536702137e-20,-4.394312735163056e-19,0.003636363660916686,-0.000808080832939595,-0.001818181830458343,2.7072198698207005e-18,4.618810781256169e-20,0.0004040404164697975,1.2616170819562282e-20,-1.87239995996741e-19,4.762007052885263e-34,-1.393561207533013e-18,0.005454545374959707,-0.001212121220305562,1.2343806384048397e-18,-0.005454545374959707,4.648302355033099e-20,1.2616170819562282e-20,0.001212121220305562,-2.6137625226726217e-19,-2.9941867637948805e-19,-5.032474616134321e-18,0.004761904943734407,1.3994408073270399e-18,-0.009523809887468815,-1.3998777861651363e-17,-6.518113433553674e-20,-1.87239995996741e-19,-2.6137625226726217e-19,0.0023809524718672037,-5.982895006995246e-19,8.118946457052927e-18,0.009999999776482582,3.5918979101498657e-19,-0.004999999888241291,-0.009999999776482582,-2.5898564536702137e-20,4.762007052885263e-34,-2.9941867637948805e-19,-5.982895006995246e-19,0.004999999888241291,-1.0251448681897297e-17,0.009999999776482582,1.3024498893587418e-17,-1.6181886169191114e-17,-0.05999999865889549,-4.394312735163056e-19,-1.393561207533013e-18,-5.032474616134321e-18,8.118946457052927e-18,-1.0251448681897297e-17,0.029999999329447746,10.0,5.0,4.0,0.12668831646442413,-0.023318182677030563,-0.04055844247341156,-0.04772727191448212,0.0011363636003807187,0.0027272726874798536,0.0032727273646742105,0.0035714285913854837,0.006000000052154064,0.004999999888241291,-0.023318182677030563,0.010579545050859451,0.0027272726874798536,0.0032727273646742105,-0.0008522727293893695,-0.000606060610152781,-0.0007272727089002728,-4.7580988069504814e-18,-3.983741534724784e-18,-9.307097935576133e-18,-0.04055844247341156,0.0027272726874798536,0.04170779138803482,0.006000000052154064,-1.4253766418433338e-18,-0.0013636363437399268,-7.122195473287754e-18,-0.0071428571827709675,-0.003000000026077032,-3.684090063871529e-17,-0.04772727191448212,0.0032727273646742105,0.006000000052154064,0.06681818515062332,-1.2829922852457794e-18,-6.135019105112882e-18,-0.0021818182431161404,-3.103928743283987e-17,-0.004000000189989805,-0.014999999664723873,0.0011363636003807187,-0.0008522727293893695,-1.4253766418433338e-18,-1.2829922852457794e-18,9.469696669839323e-05,1.8723902018211213e-20,-2.3109817189946236e-20,2.8144830681874424e-19,1.525856261253499e-19,3.6060507119367065e-19,0.0027272726874798536,-0.000606060610152781,-0.0013636363437399268,-6.135019105112882e-18,1.8723902018211213e-20,0.0003030303050763905,2.1446455205799838e-19,4.055033637087792e-21,4.39597588518217e-19,1.2814242609971086e-18,0.0032727273646742105,-0.0007272727089002728,-7.122195473287754e-18,-0.0021818182431161404,-2.3109817189946236e-20,2.1446455205799838e-19,0.0004848484823014587,1.1523326968432814e-18,8.498651102741053e-19,1.4905356232480906e-18,0.0035714285913854837,-4.7580988069504814e-18,-0.0071428571827709675,-3.103928743283987e-17,2.8144830681874424e-19,4.055033637087792e-21,1.1523326968432814e-18,0.0017857142956927419,3.8277646361090284e-18,5.283367181318086e-18,0.006000000052154064,-3.983741534724784e-18,-0.003000000026077032,-0.004000000189989805,1.525856261253499e-19,4.39597588518217e-19,8.498651102741053e-19,3.8277646361090284e-18,0.0020000000949949026,4.442509964517106e-18,0.004999999888241291,-9.307097935576133e-18,-3.684090063871529e-17,-0.014999999664723873,3.6060507119367065e-19,1.2814242609971086e-18,1.4905356232480906e-18,5.283367181318086e-18,4.442509964517106e-18,0.004999999888241291,10.0,5.0,5.0,0.10742857307195663,-0.019090909510850906,-0.03324675187468529,-0.03324675187468529,0.0009090909152291715,0.0021818182431161404,0.0021818182431161404,0.0028571428265422583,0.004000000189989805,0.0028571428265422583,-0.019090909510850906,0.0085606062784791,0.0021818182431161404,0.0021818182431161404,-0.0006818181718699634,-0.0004848484823014587,-0.0004848484823014587,4.403573745903623e-18,1.551046883586065e-18,4.895710228016028e-18,-0.03324675187468529,0.0021818182431161404,0.033766232430934906,0.004000000189989805,3.211272043753297e-19,-0.0010909091215580702,2.162203178713852e-18,-0.0057142856530845165,-0.0020000000949949026,7.348618795181282e-18,-0.03324675187468529,0.0021818182431161404,0.004000000189989805,0.033766232430934906,4.484622763477947e-19,2.371663921376061e-18,-0.0010909091215580702,8.695603013385082e-18,-0.0020000000949949026,-0.0057142856530845165,0.0009090909152291715,-0.0006818181718699634,3.211272043753297e-19,4.484622763477947e-19,7.575757626909763e-05,1.066656545699976e-34,1.4979121291451544e-20,-7.156470038011013e-20,-1.0657946735139433e-20,-1.2363810454693285e-19,0.0021818182431161404,-0.0004848484823014587,-0.0010909091215580702,2.371663921376061e-18,1.066656545699976e-34,0.00024242424115072936,-1.503297042621132e-20,-1.4124728310826597e-18,-3.7895612478194786e-19,-3.7895612478194786e-19,0.0021818182431161404,-0.0004848484823014587,2.162203178713852e-18,-0.0010909091215580702,1.4979121291451544e-20,-1.503297042621132e-20,0.00024242424115072936,-3.100550041353953e-19,-4.340770368088264e-19,-1.3632577559848625e-18,0.0028571428265422583,4.403573745903623e-18,-0.0057142856530845165,8.695603013385082e-18,-7.156470038011013e-20,-1.4124728310826597e-18,-3.100550041353953e-19,0.0014285714132711291,-1.5919238747117511e-18,-1.0210814675076549e-18,0.004000000189989805,1.551046883586065e-18,-0.0020000000949949026,-0.0020000000949949026,-1.0657946735139433e-20,-3.7895612478194786e-19,-4.340770368088264e-19,-1.5919238747117511e-18,0.0010000000474974513,-8.0260063045828475e-19,0.0028571428265422583,4.895710228016028e-18,7.348618795181282e-18,-0.0057142856530845165,-1.2363810454693285e-19,-3.7895612478194786e-19,-1.3632577559848625e-18,-1.0210814675076549e-18,-8.0260063045828475e-19,0.0014285714132711291,10.0,5.0,6.0,0.09331168979406357,-0.016168830916285515,-0.02818181738257408,-0.024512987583875656,0.0007575757335871458,0.001818181830458343,0.0015584415523335338,0.0023809524718672037,0.0028571428265422583,0.0017857142956927419,-0.016168830916285515,0.007191558368504047,0.001818181830458343,0.0015584415523335338,-0.0005681818001903594,-0.0004040404164697975,-0.00034632033202797174,1.7104276562718703e-19,1.2986810063337664e-18,1.4379253853260695e-18,-0.02818181738257408,0.001818181830458343,0.02837662398815155,0.0028571428265422583,2.80065519328497e-19,-0.0009090909152291715,-2.0799230320447136e-19,-0.004761904943734407,-0.0014285714132711291,1.4670803999912666e-18,-0.024512987583875656,0.0015584415523335338,0.0028571428265422583,0.019626623019576073,-8.923723322154657e-20,2.7522073282053157e-18,-0.0006233766325749457,-3.961871706509494e-18,-0.0011428571306169033,-0.0026785715017467737,0.0007575757335871458,-0.0005681818001903594,2.80065519328497e-19,-8.923723322154657e-20,6.313131598290056e-05,3.6179574598665245e-20,1.5814533320451754e-20,-9.493853035712856e-20,-3.608981580868044e-20,1.2629281309153821e-20,0.001818181830458343,-0.0004040404164697975,-0.0009090909152291715,2.7522073282053157e-18,3.6179574598665245e-20,0.00020202020823489875,-5.374451903050724e-20,-8.454005580142152e-20,-2.4581230620479997e-19,-3.8279041711386085e-19,0.0015584415523335338,-0.00034632033202797174,-2.0799230320447136e-19,-0.0006233766325749457,1.5814533320451754e-20,-5.374451903050724e-20,0.00013852813572157174,2.4841898495950184e-19,-1.9123574364446669e-19,-1.900932521221661e-19,0.0023809524718672037,1.7104276562718703e-19,-0.004761904943734407,-3.961871706509494e-18,-9.493853035712856e-20,-8.454005580142152e-20,2.4841898495950184e-19,0.0011904762359336019,7.85942712186327e-19,2.797431515341486e-19,0.0028571428265422583,1.2986810063337664e-18,-0.0014285714132711291,-0.0011428571306169033,-3.608981580868044e-20,-2.4581230620479997e-19,-1.9123574364446669e-19,7.85942712186327e-19,0.0005714285653084517,-1.9669202083532252e-19,0.0017857142956927419,1.4379253853260695e-18,1.4670803999912666e-18,-0.0026785715017467737,1.2629281309153821e-20,-3.8279041711386085e-19,-1.900932521221661e-19,2.797431515341486e-19,-1.9669202083532252e-19,0.0005357142654247582,10.0,5.0,7.0,0.08250154554843903,-0.014025974087417126,-0.024461966007947922,-0.018831169232726097,0.0006493506371043622,0.0015584415523335338,0.0011688311351463199,0.0020408162381500006,0.002142857061699033,0.0011904762359336019,-0.014025974087417126,0.0062012989073991776,0.0015584415523335338,0.0011688311351463199,-0.0004870129923801869,-0.00034632033202797174,-0.0002597402490209788,0.0,0.0,-0.0,-0.024461966007947922,0.0015584415523335338,0.024475881829857826,0.002142857061699033,0.0,-0.0007792207761667669,0.0,-0.004081632476300001,-0.0010714285308495164,-0.0,-0.018831169232726097,0.0011688311351463199,0.002142857061699033,0.01246753241866827,-5.406930293541438e-21,0.0,-0.00038961038808338344,0.0,-0.0007142857066355646,-0.0014285714132711291,0.0006493506371043622,-0.0004870129923801869,0.0,-5.406930293541438e-21,5.411255551734939e-05,0.0,1.2015400203540102e-21,0.0,0.0,-0.0,0.0015584415523335338,-0.00034632033202797174,-0.0007792207761667669,0.0,0.0,0.00017316016601398587,0.0,0.0,0.0,-0.0,0.0011688311351463199,-0.0002597402490209788,0.0,-0.00038961038808338344,1.2015400203540102e-21,0.0,8.658008300699294e-05,0.0,0.0,-0.0,0.0020408162381500006,0.0,-0.004081632476300001,0.0,0.0,0.0,0.0,0.0010204081190750003,0.0,-0.0,0.002142857061699033,0.0,-0.0010714285308495164,-0.0007142857066355646,0.0,0.0,0.0,0.0,0.0003571428533177823,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,10.0,5.0,8.0,0.07395021617412567,-0.012386363931000233,-0.021612554788589478,-0.014924242161214352,0.0005681818001903594,0.0013636363437399268,0.0009090909152291715,0.0017857142956927419,0.0016666667070239782,0.0008333333535119891,-0.012386363931000233,0.005451388657093048,0.0013636363437399268,0.0009090909152291715,-0.00042613636469468474,-0.0003030303050763905,-0.00020202020823489875,0.0,0.0,-0.0,-0.021612554788589478,0.0013636363437399268,0.02152056246995926,0.0016666667070239782,-1.2833844528666605e-20,-0.0006818181718699634,0.0,-0.0035714285913854837,-0.0008333333535119891,-0.0,-0.014924242161214352,0.0009090909152291715,0.0016666667070239782,0.008430736139416695,3.928855878033994e-21,-6.776263578034403e-21,-0.0002597402490209788,0.0,-0.0004761904710903764,-0.0008333333535119891,0.0005681818001903594,-0.00042613636469468474,-1.2833844528666605e-20,3.928855878033994e-21,4.734848334919661e-05,4.0703239576197356e-21,-1.3932770936108208e-21,0.0,0.0,-0.0,0.0013636363437399268,-0.0003030303050763905,-0.0006818181718699634,-6.776263578034403e-21,4.0703239576197356e-21,0.00015151515253819525,0.0,0.0,0.0,-0.0,0.0009090909152291715,-0.00020202020823489875,0.0,-0.0002597402490209788,-1.3932770936108208e-21,0.0,5.77200589759741e-05,0.0,0.0,-0.0,0.0017857142956927419,0.0,-0.0035714285913854837,0.0,0.0,0.0,0.0,0.0008928571478463709,0.0,-0.0,0.0016666667070239782,0.0,-0.0008333333535119891,-0.0004761904710903764,0.0,0.0,0.0,0.0,0.0002380952355451882,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001190476177725941,10.0,5.0,9.0,0.06701298803091049,-0.011090909130871296,-0.01935930736362934,-0.012121211737394333,0.0005050505278632045,0.001212121220305562,0.0007272727089002728,0.0015873016091063619,0.0013333333190530539,0.000606060610152781,-0.011090909130871296,0.004863636568188667,0.001212121220305562,0.0007272727089002728,-0.0003787878667935729,-0.000269360258243978,-0.0001616161607671529,0.0,0.0,6.776263578034403e-20,-0.01935930736362934,0.001212121220305562,0.019203463569283485,0.0013333333190530539,-1.041774043227871e-20,-0.000606060610152781,0.0,-0.0031746032182127237,-0.0006666666595265269,0.0,-0.012121211737394333,0.0007272727089002728,0.0013333333190530539,0.005974025931209326,-1.2930440483402046e-20,-0.0,-0.0001818181772250682,-0.0,-0.00033333332976326346,-0.0005194804980419576,0.0005050505278632045,-0.0003787878667935729,-1.041774043227871e-20,-1.2930440483402046e-20,4.2087540350621566e-05,1.989766201779794e-21,2.051873006277678e-21,0.0,8.844349001200693e-22,1.6631112702667668e-22,0.001212121220305562,-0.000269360258243978,-0.000606060610152781,-0.0,1.989766201779794e-21,0.000134680129121989,1.698424748595843e-21,0.0,-6.361830616849819e-23,-8.3457914334559105e-22,0.0007272727089002728,-0.0001616161607671529,0.0,-0.0001818181772250682,2.051873006277678e-21,1.698424748595843e-21,4.0404040191788226e-05,0.0,-1.7617177979467877e-21,-2.0328790734103208e-20,0.0015873016091063619,0.0,-0.0031746032182127237,-0.0,0.0,0.0,0.0,0.0007936508045531809,0.0,0.0,0.0013333333190530539,0.0,-0.0006666666595265269,-0.00033333332976326346,8.844349001200693e-22,-6.361830616849819e-23,-1.7617177979467877e-21,0.0,0.00016666666488163173,0.0,0.000606060610152781,6.776263578034403e-20,0.0,-0.0005194804980419576,1.6631112702667668e-22,-8.3457914334559105e-22,-2.0328790734103208e-20,0.0,0.0,6.49350622552447e-05,10.0,5.0,10.0,0.06127036735415459,-0.010041322559118271,-0.01753246784210205,-0.010041322559118271,0.00045454545761458576,0.0010909091215580702,0.0005950413178652525,0.0014285714132711291,0.0010909091215580702,0.00045454545761458576,-0.010041322559118271,0.004390495829284191,0.0010909091215580702,0.0005950413178652525,-0.0003409090859349817,-0.00024242424115072936,-0.00013223140558693558,0.0,0.0,0.0,-0.01753246784210205,0.0010909091215580702,0.01733766309916973,0.0010909091215580702,1.4573644059864655e-21,-0.0005454545607790351,6.776263578034403e-21,-0.0028571428265422583,-0.0005454545607790351,1.3552527156068805e-20,-0.010041322559118271,0.0005950413178652525,0.0010909091215580702,0.004390495829284191,1.999135435855699e-20,3.808148093118773e-21,-0.00013223140558693558,-0.0,-0.00024242424115072936,-0.0003409090859349817,0.00045454545761458576,-0.0003409090859349817,1.4573644059864655e-21,1.999135435855699e-20,3.787878813454881e-05,-1.618772667823885e-21,-4.490807166403002e-21,-0.0,1.6321902893648188e-23,-1.9403008364900914e-22,0.0010909091215580702,-0.00024242424115072936,-0.0005454545607790351,3.808148093118773e-21,-1.618772667823885e-21,0.00012121212057536468,-9.884012643345239e-22,-0.0,1.8368608507586983e-22,-3.644652745139854e-22,0.0005950413178652525,-0.00013223140558693558,6.776263578034403e-21,-0.00013223140558693558,-4.490807166403002e-21,-9.884012643345239e-22,2.938475699920673e-05,0.0,5.463792498305923e-22,1.6940658945086007e-21,0.0014285714132711291,0.0,-0.0028571428265422583,-0.0,-0.0,-0.0,0.0,0.0007142857066355646,0.0,0.0,0.0010909091215580702,0.0,-0.0005454545607790351,-0.00024242424115072936,1.6321902893648188e-23,1.8368608507586983e-22,5.463792498305923e-22,0.0,0.00012121212057536468,0.0,0.00045454545761458576,0.0,1.3552527156068805e-20,-0.0003409090859349817,-1.9403008364900914e-22,-3.644652745139854e-22,1.6940658945086007e-21,0.0,0.0,3.787878813454881e-05,10.0,5.0,11.0,0.05643719807267189,-0.009173553436994553,-0.016021251678466797,-0.008455181494355202,0.0004132231406401843,0.0009917354909703135,0.0004958677454851568,0.0012987012742087245,0.0009090909152291715,0.00034965036320500076,-0.009173553436994553,0.0040013776160776615,0.0009917354909703135,0.0004958677454851568,-0.0003099173482041806,-0.00022038567112758756,-0.00011019283556379378,0.0,0.0,-5.421010862427522e-20,-0.016021251678466797,0.0009917354909703135,0.015802834182977676,0.0009090909152291715,-1.73747930573571e-20,-0.0004958677454851568,-3.3881317890172014e-21,-0.002597402548417449,-0.00045454545761458576,-2.710505431213761e-20,-0.008455181494355202,0.0004958677454851568,0.0009090909152291715,0.003322737757116556,2.351858254524738e-21,-0.0,-9.917355055222288e-05,-0.0,-0.0001818181772250682,-0.00023310023243539035,0.0004132231406401843,-0.0003099173482041806,-1.73747930573571e-20,2.351858254524738e-21,3.443526293267496e-05,2.5323995108920644e-21,8.087703913171459e-22,-0.0,3.35605511426733e-22,-6.496875147234752e-22,0.0009917354909703135,-0.00022038567112758756,-0.0004958677454851568,-0.0,2.5323995108920644e-21,0.00011019283556379378,8.461046409845852e-22,0.0,1.3849535508316825e-23,-2.1819663868750672e-24,0.0004958677454851568,-0.00011019283556379378,-3.3881317890172014e-21,-9.917355055222288e-05,8.087703913171459e-22,8.461046409845852e-22,2.2038568204152398e-05,0.0,-1.1741759122995079e-22,1.1858461261560205e-20,0.0012987012742087245,0.0,-0.002597402548417449,-0.0,-0.0,0.0,0.0,0.0006493506371043622,0.0,0.0,0.0009090909152291715,0.0,-0.00045454545761458576,-0.0001818181772250682,3.35605511426733e-22,1.3849535508316825e-23,-1.1741759122995079e-22,0.0,9.09090886125341e-05,1.6940658945086007e-21,0.00034965036320500076,-5.421010862427522e-20,-2.710505431213761e-20,-0.00023310023243539035,-6.496875147234752e-22,-2.1819663868750672e-24,1.1858461261560205e-20,0.0,1.6940658945086007e-21,2.3310023607336916e-05,10.0,5.0,12.0,0.052312687039375305,-0.008444055914878845,-0.014750249683856964,-0.007217782083898783,0.0003787878667935729,0.0009090909152291715,0.00041958040674217045,0.0011904762359336019,0.0007692307699471712,0.00027472528745420277,-0.008444055914878845,0.003675699234008789,0.0009090909152291715,0.00041958040674217045,-0.0002840909000951797,-0.00020202020823489875,-9.324009442934766e-05,-2.042049404476237e-18,-4.845028458294598e-19,-3.8624702394796095e-19,-0.014750249683856964,0.0009090909152291715,0.014517981559038162,0.0007692307699471712,-1.4501273333369923e-18,-0.00045454545761458576,-6.776263578034403e-21,-0.0023809524718672037,-0.0003846153849735856,0.0,-0.007217782083898783,0.00041958040674217045,0.0007692307699471712,0.0025760603602975607,-7.134629238665345e-19,-3.128126627389337e-20,-7.628734601894394e-05,-5.346853604150257e-33,-0.0001398601452820003,-0.00016483516083098948,0.0003787878667935729,-0.0002840909000951797,-1.4501273333369923e-18,-7.134629238665345e-19,3.156565799145028e-05,4.4785577847538284e-20,3.075174466606299e-20,2.4030801376432484e-19,5.232570717834846e-20,4.308042579411691e-20,0.0009090909152291715,-0.00020202020823489875,-0.00045454545761458576,-3.128126627389337e-20,4.4785577847538284e-20,0.00010101010411744937,2.1457456869505507e-21,-6.036136616369192e-20,8.842582558618173e-21,3.4067638505614057e-22,0.00041958040674217045,-9.324009442934766e-05,-6.776263578034403e-21,-7.628734601894394e-05,3.075174466606299e-20,2.1457456869505507e-21,1.695274477242492e-05,2.319220507636122e-34,4.4752956366514605e-23,-8.470329472543003e-22,0.0011904762359336019,-2.042049404476237e-18,-0.0023809524718672037,-5.346853604150257e-33,2.4030801376432484e-19,-6.036136616369192e-20,2.319220507636122e-34,0.0005952381179668009,3.6229447617438125e-34,3.252100860054603e-34,0.0007692307699471712,-4.845028458294598e-19,-0.0003846153849735856,-0.0001398601452820003,5.232570717834846e-20,8.842582558618173e-21,4.4752956366514605e-23,3.6229447617438125e-34,6.993007264100015e-05,0.0,0.00027472528745420277,-3.8624702394796095e-19,0.0,-0.00016483516083098948,4.308042579411691e-20,3.4067638505614057e-22,-8.470329472543003e-22,3.252100860054603e-34,0.0,1.4985014786361717e-05,10.0,5.0,13.0,0.04875124990940094,-0.00782217737287283,-0.013666333630681038,-0.006233766209334135,0.00034965036320500076,0.0008391608134843409,0.00035964036942459643,0.001098901149816811,0.0006593406433239579,0.00021978022414259613,-0.00782217737287283,0.0033991008531302214,0.0008391608134843409,0.00035964036942459643,-0.00026223776512779295,-0.00018648018885869533,-7.992007886059582e-05,-0.0,-3.3881317890172014e-21,5.759824041329242e-20,-0.013666333630681038,0.0008391608134843409,0.013426573015749454,0.0006593406433239579,0.0,-0.00041958040674217045,0.0,-0.002197802299633622,-0.00032967032166197896,0.0,-0.006233766209334135,0.00035964036942459643,0.0006593406433239579,0.002037961967289448,-0.0,-0.0,-5.994005914544687e-05,-0.0,-0.00010989011207129806,-0.00011988011829089373,0.00034965036320500076,-0.00026223776512779295,0.0,-0.0,2.9137529054423794e-05,0.0,0.0,0.0,0.0,0.0,0.0008391608134843409,-0.00018648018885869533,-0.00041958040674217045,-0.0,0.0,9.324009442934766e-05,0.0,0.0,0.0,0.0,0.00035964036942459643,-7.992007886059582e-05,0.0,-5.994005914544687e-05,0.0,0.0,1.3320013749762438e-05,0.0,0.0,-9.317362419797304e-21,0.001098901149816811,-0.0,-0.002197802299633622,-0.0,0.0,0.0,0.0,0.0005494505749084055,0.0,0.0,0.0006593406433239579,-3.3881317890172014e-21,-0.00032967032166197896,-0.00010989011207129806,0.0,0.0,0.0,0.0,5.494505603564903e-05,1.6940658945086007e-21,0.00021978022414259613,5.759824041329242e-20,0.0,-0.00011988011829089373,0.0,0.0,-9.317362419797304e-21,0.0,1.6940658945086007e-21,9.990009857574478e-06,10.0,5.0,14.0,0.04564471170306206,-0.007285714149475098,-0.012730983085930347,-0.005438311491161585,0.0003246753185521811,0.0007792207761667669,0.00031168831628747284,0.0010204081190750003,0.0005714285653084517,0.00017857142665889114,-0.007285714149475098,0.0031612555030733347,0.0007792207761667669,0.00031168831628747284,-0.00024350649619009346,-0.00017316016601398587,-6.926406786078587e-05,-0.0,-3.3881317890172014e-21,6.776263578034403e-21,-0.012730983085930347,0.0007792207761667669,0.012487940490245819,0.0005714285653084517,0.0,-0.00038961038808338344,-3.3881317890172014e-21,-0.0020408162381500006,-0.0002857142826542258,0.0,-0.005438311491161585,0.00031168831628747284,0.0005714285653084517,0.0016402347246184945,-0.0,-0.0,-4.795204949914478e-05,-0.0,-8.791208529146388e-05,-8.928571332944557e-05,0.0003246753185521811,-0.00024350649619009346,0.0,-0.0,2.7056277758674696e-05,0.0,0.0,0.0,0.0,0.0,0.0007792207761667669,-0.00017316016601398587,-0.00038961038808338344,-0.0,0.0,8.658008300699294e-05,0.0,0.0,0.0,0.0,0.00031168831628747284,-6.926406786078587e-05,-3.3881317890172014e-21,-4.795204949914478e-05,0.0,0.0,1.065601099980995e-05,0.0,4.235164736271502e-22,-8.470329472543003e-22,0.0010204081190750003,-0.0,-0.0020408162381500006,-0.0,0.0,0.0,0.0,0.0005102040595375001,0.0,0.0,0.0005714285653084517,-3.3881317890172014e-21,-0.0002857142826542258,-8.791208529146388e-05,0.0,0.0,4.235164736271502e-22,0.0,4.395604264573194e-05,0.0,0.00017857142665889114,6.776263578034403e-21,0.0,-8.928571332944557e-05,0.0,0.0,-8.470329472543003e-22,0.0,0.0,6.868132004456129e-06,10.0,5.0,15.0,0.04291100054979324,-0.006818181835114956,-0.011915584094822407,-0.0047860960476100445,0.0003030303050763905,0.0007272727089002728,0.00027272728038951755,0.0009523809421807528,0.0005000000237487257,0.00014705881767440587,-0.006818181835114956,0.0029545454308390617,0.0007272727089002728,0.00027272728038951755,-0.00022727272880729288,-0.0001616161607671529,-6.060606028768234e-05,-0.0,0.0,-3.3881317890172014e-21,-0.011915584094822407,0.0007272727089002728,0.01167207770049572,0.0005000000237487257,0.0,-0.0003636363544501364,0.0,-0.0019047618843615055,-0.0002500000118743628,0.0,-0.0047860960476100445,0.00027272728038951755,0.0005000000237487257,0.001339836628176272,-0.0,-0.0,-3.8961039535934106e-05,-0.0,-7.142857066355646e-05,-6.787330494262278e-05,0.0003030303050763905,-0.00022727272880729288,0.0,-0.0,2.5252526029362343e-05,0.0,0.0,0.0,0.0,0.0,0.0007272727089002728,-0.0001616161607671529,-0.0003636363544501364,-0.0,0.0,8.080808038357645e-05,0.0,0.0,0.0,0.0,0.00027272728038951755,-6.060606028768234e-05,0.0,-3.8961039535934106e-05,0.0,0.0,8.658008482598234e-06,0.0,0.0,8.470329472543003e-22,0.0009523809421807528,-0.0,-0.0019047618843615055,-0.0,0.0,0.0,0.0,0.0004761904710903764,0.0,0.0,0.0005000000237487257,0.0,-0.0002500000118743628,-7.142857066355646e-05,0.0,0.0,0.0,0.0,3.571428533177823e-05,-4.235164736271502e-22,0.00014705881767440587,-3.3881317890172014e-21,0.0,-6.787330494262278e-05,0.0,0.0,8.470329472543003e-22,0.0,-4.235164736271502e-22,4.848092885367805e-06,10.0,5.0,16.0,0.040486693382263184,-0.006407085340470076,-0.011198434047400951,-0.004244652576744556,0.0002840909000951797,0.0006818181718699634,0.00024064170429483056,0.0008928571478463709,0.00044117646757513285,0.00012254902685526758,-0.006407085340470076,0.0027732285670936108,0.0006818181718699634,0.00024064170429483056,-0.00021306818234734237,-0.00015151515253819525,-5.347593469195999e-05,-0.0,1.6940658945086007e-21,1.0164395367051604e-20,-0.011198434047400951,0.0006818181718699634,0.010956360027194023,0.00044117646757513285,0.0,-0.0003409090859349817,1.6940658945086007e-21,-0.0017857142956927419,-0.00022058823378756642,3.3881317890172014e-21,-0.004244652576744556,0.00024064170429483056,0.00044117646757513285,0.0011086707236245275,-0.0,-0.0,-3.208556154277176e-05,-0.0,-5.8823530707741156e-05,-5.25210089108441e-05,0.0002840909000951797,-0.00021306818234734237,0.0,-0.0,2.3674241674598306e-05,0.0,0.0,0.0,0.0,0.0,0.0006818181718699634,-0.00015151515253819525,-0.0003409090859349817,-0.0,0.0,7.575757626909763e-05,0.0,0.0,0.0,0.0,0.00024064170429483056,-5.347593469195999e-05,1.6940658945086007e-21,-3.208556154277176e-05,0.0,0.0,7.130124686227646e-06,0.0,-4.235164736271502e-22,-1.4823076576950256e-21,0.0008928571478463709,-0.0,-0.0017857142956927419,-0.0,0.0,0.0,0.0,0.00044642857392318547,0.0,0.0,0.00044117646757513285,1.6940658945086007e-21,-0.00022058823378756642,-5.8823530707741156e-05,0.0,0.0,-4.235164736271502e-22,0.0,2.9411765353870578e-05,-4.235164736271502e-22,0.00012254902685526758,1.0164395367051604e-20,3.3881317890172014e-21,-5.25210089108441e-05,0.0,0.0,-1.4823076576950256e-21,0.0,-4.235164736271502e-22,3.5014006698474986e-06,10.0,6.0,3.0,0.13481241464614868,-0.025432899594306946,-0.03847402706742287,-0.06331168860197067,0.0012626262614503503,0.002597402548417449,0.004545454401522875,0.0029761905316263437,0.0071428571827709675,0.008333333767950535,-0.025432899594306946,0.011649230495095253,0.002597402548417449,0.004545454401522875,-0.0009469697251915932,-0.0005772005533799529,-0.001010101055726409,1.2740742442666921e-18,2.626283969195143e-18,2.4683632995374648e-19,-0.03847402706742287,0.002597402548417449,0.03175865858793259,0.0071428571827709675,-4.749407930447116e-19,-0.0010389609960839152,4.5443396202351406e-18,-0.004464285913854837,-0.0028571428265422583,4.5225133844381326e-17,-0.06331168860197067,0.004545454401522875,0.0071428571827709675,0.14664502441883087,-5.540951534259828e-19,3.1565675396166566e-18,-0.004545454401522875,2.197600015563313e-17,-0.0071428571827709675,-0.05000000074505806,0.0012626262614503503,-0.0009469697251915932,-4.749407930447116e-19,-5.540951534259828e-19,0.00010521885269554332,4.384716406081675e-20,5.924243636415203e-20,6.193408853974811e-20,-2.499858718348304e-20,1.9129340071810105e-19,0.002597402548417449,-0.0005772005533799529,-0.0010389609960839152,3.1565675396166566e-18,4.384716406081675e-20,0.0002308802359038964,-8.037400588273795e-20,-5.351477543148432e-19,-4.758098496757752e-19,-8.02679884700725e-19,0.004545454401522875,-0.001010101055726409,4.5443396202351406e-18,-0.004545454401522875,5.924243636415203e-20,-8.037400588273795e-20,0.001010101055726409,-5.701517113926145e-19,-1.1889340947802575e-18,-7.003963136215523e-19,0.0029761905316263437,1.2740742442666921e-18,-0.004464285913854837,2.197600015563313e-17,6.193408853974811e-20,-5.351477543148432e-19,-5.701517113926145e-19,0.0008928571478463709,-1.814166315596706e-18,-7.44515739011112e-18,0.0071428571827709675,2.626283969195143e-18,-0.0028571428265422583,-0.0071428571827709675,-2.499858718348304e-20,-4.758098496757752e-19,-1.1889340947802575e-18,-1.814166315596706e-18,0.0028571428265422583,-4.4539122356708436e-18,0.008333333767950535,2.4683632995374648e-19,4.5225133844381326e-17,-0.05000000074505806,1.9129340071810105e-19,-8.02679884700725e-19,-7.003963136215523e-19,-7.44515739011112e-18,-4.4539122356708436e-18,0.02500000037252903,10.0,6.0,4.0,0.11018939316272736,-0.019756494089961052,-0.029926948249340057,-0.04048701375722885,0.0009469697251915932,0.0019480519695207477,0.0027272726874798536,0.0022321429569274187,0.004285714123398066,0.004166666883975267,-0.019756494089961052,0.00888843834400177,0.0019480519695207477,0.0027272726874798536,-0.0007102272938936949,-0.00043290044413879514,-0.000606060610152781,3.701958323155532e-18,4.860724210417792e-18,1.13440062057502e-17,-0.029926948249340057,0.0019480519695207477,0.024247564375400543,0.004285714123398066,-2.439454888092385e-19,-0.0007792207761667669,7.768689234376536e-18,-0.0033482143189758062,-0.001714285695925355,2.7544305415376745e-17,-0.04048701375722885,0.0027272726874798536,0.004285714123398066,0.05615800991654396,1.870248747537495e-18,8.567755632270112e-18,-0.001818181830458343,2.1632786375872628e-17,-0.0028571428265422583,-0.012500000186264515,0.0009469697251915932,-0.0007102272938936949,-2.439454888092385e-19,1.870248747537495e-18,7.891414134064689e-05,2.710505431213761e-20,-4.743384504624082e-20,5.739952965817216e-20,-1.1529815941844351e-19,-4.132974584902759e-19,0.0019480519695207477,-0.00043290044413879514,-0.0007792207761667669,8.567755632270112e-18,2.710505431213761e-20,0.00017316016601398587,-2.168404344971009e-19,-1.003118723518183e-18,-8.527578125749916e-19,-1.7296762266741617e-18,0.0027272726874798536,-0.000606060610152781,7.768689234376536e-18,-0.001818181830458343,-4.743384504624082e-20,-2.168404344971009e-19,0.0004040404164697975,-1.0082640971209926e-18,-1.0231638946997571e-18,-1.532339056659836e-18,0.0022321429569274187,3.701958323155532e-18,-0.0033482143189758062,2.1632786375872628e-17,5.739952965817216e-20,-1.003118723518183e-18,-1.0082640971209926e-18,0.0006696428754366934,-2.5829219207141946e-18,-3.133251386100318e-18,0.004285714123398066,4.860724210417792e-18,-0.001714285695925355,-0.0028571428265422583,-1.1529815941844351e-19,-8.527578125749916e-19,-1.0231638946997571e-18,-2.5829219207141946e-18,0.0011428571306169033,-1.7626168334127077e-18,0.004166666883975267,1.13440062057502e-17,2.7544305415376745e-17,-0.012500000186264515,-4.132974584902759e-19,-1.7296762266741617e-18,-1.532339056659836e-18,-3.133251386100318e-18,-1.7626168334127077e-18,0.004166666883975267,10.0,6.0,5.0,0.09331168979406357,-0.016168830916285515,-0.024512987583875656,-0.02818181738257408,0.0007575757335871458,0.0015584415523335338,0.001818181830458343,0.0017857142956927419,0.0028571428265422583,0.0023809524718672037,-0.016168830916285515,0.007191558368504047,0.0015584415523335338,0.001818181830458343,-0.0005681818001903594,-0.00034632033202797174,-0.0004040404164697975,2.5767203408667315e-18,1.4372256939254262e-18,8.04443433766688e-19,-0.024512987583875656,0.0015584415523335338,0.019626623019576073,0.0028571428265422583,2.735509291673649e-19,-0.0006233766325749457,5.365212877219875e-19,-0.0026785715017467737,-0.0011428571306169033,-1.4227696787452963e-17,-0.02818181738257408,0.001818181830458343,0.0028571428265422583,0.02837662398815155,5.889366729109641e-19,-2.5738798026432244e-18,-0.0009090909152291715,-5.269032141302542e-18,-0.0014285714132711291,-0.004761904943734407,0.0007575757335871458,-0.0005681818001903594,2.735509291673649e-19,5.889366729109641e-19,6.313131598290056e-05,2.480885263047869e-20,2.750165510411411e-20,-5.271891200616952e-20,-4.724557098400551e-20,-1.4525692222040371e-19,0.0015584415523335338,-0.00034632033202797174,-0.0006233766325749457,-2.5738798026432244e-18,2.480885263047869e-20,0.00013852813572157174,1.8226932552424208e-19,-5.777747494239618e-19,-1.7566732563681787e-19,5.445551243250439e-19,0.001818181830458343,-0.0004040404164697975,5.365212877219875e-19,-0.0009090909152291715,2.750165510411411e-20,1.8226932552424208e-19,0.00020202020823489875,-1.6456292997647925e-19,-2.493564132380717e-19,-4.49429405580234e-19,0.0017857142956927419,2.5767203408667315e-18,-0.0026785715017467737,-5.269032141302542e-18,-5.271891200616952e-20,-5.777747494239618e-19,-1.6456292997647925e-19,0.0005357142654247582,-6.320430708838454e-19,1.8907136094823633e-18,0.0028571428265422583,1.4372256939254262e-18,-0.0011428571306169033,-0.0014285714132711291,-4.724557098400551e-20,-1.7566732563681787e-19,-2.493564132380717e-19,-6.320430708838454e-19,0.0005714285653084517,8.540010650356588e-19,0.0023809524718672037,8.04443433766688e-19,-1.4227696787452963e-17,-0.004761904943734407,-1.4525692222040371e-19,5.445551243250439e-19,-4.49429405580234e-19,1.8907136094823633e-18,8.540010650356588e-19,0.0011904762359336019,10.0,6.0,6.0,0.08097299188375473,-0.013690476305782795,-0.02076762542128563,-0.02076762542128563,0.0006313131307251751,0.0012987012742087245,0.0012987012742087245,0.0014880952658131719,0.0020408162381500006,0.0014880952658131719,-0.013690476305782795,0.006041065324097872,0.0012987012742087245,0.0012987012742087245,-0.0004734848625957966,-0.00028860027668997645,-0.00028860027668997645,6.3703712213334605e-19,5.507132771903481e-19,8.02803238009572e-19,-0.02076762542128563,0.0012987012742087245,0.016491573303937912,0.0020408162381500006,-5.169375799246414e-19,-0.0005194804980419576,1.7365579557802966e-18,-0.0022321429569274187,-0.0008163265301845968,4.094867459756995e-18,-0.02076762542128563,0.0012987012742087245,0.0020408162381500006,0.016491573303937912,-2.4095242946676913e-20,2.038468953194801e-18,-0.0005194804980419576,4.513750894773236e-18,-0.0008163265301845968,-0.0022321429569274187,0.0006313131307251751,-0.0004734848625957966,-5.169375799246414e-19,-2.4095242946676913e-20,5.260942634777166e-05,3.349047181956644e-20,-7.247011438598316e-22,8.053056920070921e-20,-1.7279457260586095e-20,1.0045250662688424e-20,0.0012987012742087245,-0.00028860027668997645,-0.0005194804980419576,2.038468953194801e-18,3.349047181956644e-20,0.0001154401179519482,-6.685107628296206e-20,-2.7134207258851277e-19,-1.0392082646770507e-19,-2.761024711643613e-19,0.0012987012742087245,-0.00028860027668997645,1.7365579557802966e-18,-0.0005194804980419576,-7.247011438598316e-22,-6.685107628296206e-20,0.0001154401179519482,-2.5962420618169243e-19,-1.0713487389628394e-21,-7.689856130265665e-20,0.0014880952658131719,6.3703712213334605e-19,-0.0022321429569274187,4.513750894773236e-18,8.053056920070921e-20,-2.7134207258851277e-19,-2.5962420618169243e-19,0.00044642857392318547,8.484308178660296e-20,-6.775286987923707e-19,0.0020408162381500006,5.507132771903481e-19,-0.0008163265301845968,-0.0008163265301845968,-1.7279457260586095e-20,-1.0392082646770507e-19,-1.0713487389628394e-21,8.484308178660296e-20,0.00032653060043230653,3.3766316520572415e-19,0.0014880952658131719,8.02803238009572e-19,4.094867459756995e-18,-0.0022321429569274187,1.0045250662688424e-20,-2.761024711643613e-19,-7.689856130265665e-20,-6.775286987923707e-19,3.3766316520572415e-19,0.00044642857392318547,10.0,6.0,7.0,0.07154195010662079,-0.011873840354382992,-0.018019480630755424,-0.015947742387652397,0.0005411255406215787,0.001113172504119575,0.0009740259847603738,0.0012755101779475808,0.0015306122368201613,0.0009920635493472219,-0.011873840354382992,0.005208977498114109,0.001113172504119575,0.0009740259847603738,-0.000405844155466184,-0.00024737167404964566,-0.00021645022206939757,1.789198075601946e-18,1.381650840688015e-18,1.0750471442609207e-18,-0.018019480630755424,0.001113172504119575,0.014223098754882812,0.0015306122368201613,2.015115990141204e-18,-0.0004452690191101283,1.255596580345906e-19,-0.0019132653251290321,-0.0006122448830865324,-6.900420286051315e-19,-0.015947742387652397,0.0009740259847603738,0.0015306122368201613,0.010474644601345062,1.392495695506468e-18,-4.468868074736109e-19,-0.0003246753185521811,-1.0849354680985327e-18,-0.0005102040595375001,-0.0011904762359336019,0.0005411255406215787,-0.000405844155466184,2.015115990141204e-18,1.392495695506468e-18,4.5093795051798224e-05,-4.6265058227749e-20,-3.639510038467506e-20,-2.2260676224599633e-19,-1.6607000135376258e-19,-1.118099775493986e-19,0.001113172504119575,-0.00024737167404964566,-0.0004452690191101283,-4.468868074736109e-19,-4.6265058227749e-20,9.894867253024131e-05,1.642687315593974e-20,1.1402711885907336e-19,7.778053616844278e-20,2.563285538313935e-20,0.0009740259847603738,-0.00021645022206939757,1.255596580345906e-19,-0.0003246753185521811,-3.639510038467506e-20,1.642687315593974e-20,7.215006917249411e-05,-2.360167946168558e-20,-2.715739933527573e-20,-4.4279834451144535e-20,0.0012755101779475808,1.789198075601946e-18,-0.0019132653251290321,-1.0849354680985327e-18,-2.2260676224599633e-19,1.1402711885907336e-19,-2.360167946168558e-20,0.00038265305920504034,2.1872687158281635e-19,6.608470637012875e-20,0.0015306122368201613,1.381650840688015e-18,-0.0006122448830865324,-0.0005102040595375001,-1.6607000135376258e-19,7.778053616844278e-20,-2.715739933527573e-20,2.1872687158281635e-19,0.0002040816325461492,3.107329820449591e-20,0.0009920635493472219,1.0750471442609207e-18,-6.900420286051315e-19,-0.0011904762359336019,-1.118099775493986e-19,2.563285538313935e-20,-4.4279834451144535e-20,6.608470637012875e-20,3.107329820449591e-20,0.00019841270113829523,10.0,6.0,8.0,0.06409180909395218,-0.010484307073056698,-0.015915855765342712,-0.012635281309485435,0.0004734848625957966,0.0009740259847603738,0.0007575757335871458,0.0011160714784637094,0.0011904762359336019,0.0006944444612599909,-0.010484307073056698,0.004578899126499891,0.0009740259847603738,0.0007575757335871458,-0.00035511364694684744,-0.00021645022206939757,-0.00016835016140248626,0.0,0.0,-0.0,-0.015915855765342712,0.0009740259847603738,0.01250473503023386,0.0011904762359336019,2.162772117416575e-20,-0.00038961038808338344,-7.669882949646777e-20,-0.0016741071594879031,-0.0004761904710903764,8.260588005460409e-19,-0.012635281309485435,0.0007575757335871458,0.0011904762359336019,0.007082302588969469,1.2630606090603613e-20,-7.669882949646777e-20,-0.00021645022206939757,1.5707929255786246e-18,-0.0003401360590942204,-0.0006944444612599909,0.0004734848625957966,-0.00035511364694684744,2.162772117416575e-20,1.2630606090603613e-20,3.9457070670323446e-05,-4.806160081416041e-21,-2.8068013310287594e-21,0.0,-0.0,-0.0,0.0009740259847603738,-0.00021645022206939757,-0.00038961038808338344,-7.669882949646777e-20,-4.806160081416041e-21,8.658008300699294e-05,1.7044184153038713e-20,0.0,-0.0,-0.0,0.0007575757335871458,-0.00016835016140248626,-7.669882949646777e-20,-0.00021645022206939757,-2.8068013310287594e-21,1.7044184153038713e-20,4.810004975297488e-05,0.0,0.0,-0.0,0.0011160714784637094,0.0,-0.0016741071594879031,1.5707929255786246e-18,0.0,0.0,0.0,0.0003348214377183467,-1.6572425278241248e-19,-1.652117626941476e-19,0.0011904762359336019,0.0,-0.0004761904710903764,-0.0003401360590942204,-0.0,-0.0,0.0,-1.6572425278241248e-19,0.0001360544265480712,8.177372369243322e-35,0.0006944444612599909,-0.0,8.260588005460409e-19,-0.0006944444612599909,-0.0,-0.0,-0.0,-1.652117626941476e-19,8.177372369243322e-35,9.920635056914762e-05,10.0,6.0,9.0,0.058054354041814804,-0.009386724792420864,-0.01425324659794569,-0.010259740054607391,0.0004208754107821733,0.0008658008882775903,0.000606060610152781,0.0009920635493472219,0.0009523809421807528,0.0005050505278632045,-0.009386724792420864,0.004085096996277571,0.0008658008882775903,0.000606060610152781,-0.00031565656536258757,-0.00019240019901189953,-0.000134680129121989,-2.8888949165808538e-34,-4.743384504624082e-20,-5.421010862427522e-20,-0.01425324659794569,0.0008658008882775903,0.011157647706568241,0.0009523809421807528,-2.166039319277446e-20,-0.00034632033202797174,-1.1858461261560205e-19,-0.0014880952658131719,-0.0003809523768723011,-1.3417001884508117e-18,-0.010259740054607391,0.000606060610152781,0.0009523809421807528,0.005018037743866444,-1.4339318090274517e-20,-6.96392630209825e-20,-0.00015151515253819525,-2.3831230611969112e-18,-0.0002380952355451882,-0.00043290044413879514,0.0004208754107821733,-0.00031565656536258757,-2.166039319277446e-20,-1.4339318090274517e-20,3.5072953323833644e-05,2.988665753258744e-21,3.0516843042582206e-22,8.487283196817612e-37,7.82299904896078e-22,1.4581668479210308e-21,0.0008658008882775903,-0.00019240019901189953,-0.00034632033202797174,-6.96392630209825e-20,2.988665753258744e-21,7.696007378399372e-05,1.511229252331118e-20,-1.5036143277494322e-36,-2.4653523924000305e-22,1.0030392284522856e-22,0.000606060610152781,-0.000134680129121989,-1.1858461261560205e-19,-0.00015151515253819525,3.0516843042582206e-22,1.511229252331118e-20,3.367003228049725e-05,7.587025101347205e-35,1.1988901343369995e-20,1.1858461261560205e-20,0.0009920635493472219,-2.8888949165808538e-34,-0.0014880952658131719,-2.3831230611969112e-18,8.487283196817612e-37,-1.5036143277494322e-36,7.587025101347205e-35,0.00029761905898340046,2.062346219509786e-19,2.3344207863801086e-19,0.0009523809421807528,-4.743384504624082e-20,-0.0003809523768723011,-0.0002380952355451882,7.82299904896078e-22,-2.4653523924000305e-22,1.1988901343369995e-20,2.062346219509786e-19,9.523809421807528e-05,4.0657581468206416e-20,0.0005050505278632045,-5.421010862427522e-20,-1.3417001884508117e-18,-0.00043290044413879514,1.4581668479210308e-21,1.0030392284522856e-22,1.1858461261560205e-20,2.3344207863801086e-19,4.0657581468206416e-20,5.411255551734939e-05,10.0,6.0,10.0,0.053060803562402725,-0.008497638627886772,-0.012905844487249851,-0.008497638627886772,0.0003787878667935729,0.0007792207761667669,0.0004958677454851568,0.0008928571478463709,0.0007792207761667669,0.0003787878667935729,-0.008497638627886772,0.0036876066587865353,0.0007792207761667669,0.0004958677454851568,-0.0002840909000951797,-0.00017316016601398587,-0.00011019283556379378,-1.3827473719875306e-18,-4.37069000783219e-19,-5.55653613398821e-19,-0.012905844487249851,0.0007792207761667669,0.010073051787912846,0.0007792207761667669,-1.3551677227989407e-18,-0.00031168831628747284,0.0,-0.0013392857508733869,-0.00031168831628747284,-8.74138001566438e-19,-0.008497638627886772,0.0004958677454851568,0.0007792207761667669,0.0036876066587865353,-7.85488331536094e-19,-1.599244500681028e-20,-0.00011019283556379378,-1.8784500365158053e-18,-0.00017316016601398587,-0.0002840909000951797,0.0003787878667935729,-0.0002840909000951797,-1.3551677227989407e-18,-7.85488331536094e-19,3.156565799145028e-05,6.426332574712087e-20,2.3093672627717247e-20,1.652117626941476e-19,5.262511747952425e-20,6.086475726521872e-20,0.0007792207761667669,-0.00017316016601398587,-0.00031168831628747284,-1.599244500681028e-20,6.426332574712087e-20,6.926406786078587e-05,5.19998973756113e-21,-4.166338462545688e-20,-5.002029422664565e-21,3.698574985217438e-22,0.0004958677454851568,-0.00011019283556379378,0.0,-0.00011019283556379378,2.3093672627717247e-20,5.19998973756113e-21,2.448729719617404e-05,1.3202905740540009e-34,-5.413951635225335e-21,3.3881317890172014e-21,0.0008928571478463709,-1.3827473719875306e-18,-0.0013392857508733869,-1.8784500365158053e-18,1.652117626941476e-19,-4.166338462545688e-20,1.3202905740540009e-34,0.0002678571327123791,1.3498994353269846e-19,1.712194591608466e-19,0.0007792207761667669,-4.37069000783219e-19,-0.00031168831628747284,-0.00017316016601398587,5.262511747952425e-20,-5.002029422664565e-21,-5.413951635225335e-21,1.3498994353269846e-19,6.926406786078587e-05,0.0,0.0003787878667935729,-5.55653613398821e-19,-8.74138001566438e-19,-0.0002840909000951797,6.086475726521872e-20,3.698574985217438e-22,3.3881317890172014e-21,1.712194591608466e-19,0.0,3.156565799145028e-05,10.0,6.0,11.0,0.04886098578572273,-0.00776269193738699,-0.01179161760956049,-0.007154209539294243,0.000344352622050792,0.0007083825184963644,0.0004132231406401843,0.000811688310932368,0.0006493506371043622,0.00029137529782019556,-0.00776269193738699,0.0033607175573706627,0.0007083825184963644,0.0004132231406401843,-0.00025826445198617876,-0.00015741834067739546,-9.182736539514735e-05,-1.925929944387236e-34,1.0164395367051604e-20,4.404571325722362e-20,-0.01179161760956049,0.0007083825184963644,0.009180932305753231,0.0006493506371043622,5.3494602241178254e-21,-0.00028335300157777965,1.0164395367051604e-20,-0.0012175324372947216,-0.0002597402490209788,3.5236570605778894e-19,-0.007154209539294243,0.0004132231406401843,0.0006493506371043622,0.00279059330932796,-6.88071694079553e-21,-4.84090772559502e-21,-8.264462667284533e-05,8.77079559222253e-19,-0.0001298701245104894,-0.00019425019854679704,0.000344352622050792,-0.00025826445198617876,5.3494602241178254e-21,-6.88071694079553e-21,2.8696051231236197e-05,7.937892663947258e-23,6.715037975343861e-22,2.1854921692577032e-36,-1.0529275494049314e-22,1.875414565789639e-23,0.0007083825184963644,-0.00015741834067739546,-0.00028335300157777965,-4.84090772559502e-21,7.937892663947258e-23,6.296733772614971e-05,5.884636285942635e-22,9.717125507280273e-37,-3.228827879908775e-23,1.7593806996963182e-22,0.0004132231406401843,-9.182736539514735e-05,1.0164395367051604e-20,-8.264462667284533e-05,6.715037975343861e-22,5.884636285942635e-22,1.8365473806625232e-05,3.232746357047751e-35,-1.308972121893252e-21,-8.470329472543003e-21,0.000811688310932368,-1.925929944387236e-34,-0.0012175324372947216,8.77079559222253e-19,2.1854921692577032e-36,9.717125507280273e-37,3.232746357047751e-35,0.00024350649619009346,-9.203859668823104e-20,-6.469831288939866e-20,0.0006493506371043622,1.0164395367051604e-20,-0.0002597402490209788,-0.0001298701245104894,-1.0529275494049314e-22,-3.228827879908775e-23,-1.308972121893252e-21,-9.203859668823104e-20,5.194805271457881e-05,-5.082197683525802e-21,0.00029137529782019556,4.404571325722362e-20,3.5236570605778894e-19,-0.00019425019854679704,1.875414565789639e-23,1.7593806996963182e-22,-8.470329472543003e-21,-6.469831288939866e-20,-5.082197683525802e-21,1.942501876328606e-05,10.0,6.0,12.0,0.04527902603149414,-0.007144938223063946,-0.010854770429432392,-0.006106393411755562,0.00031565656536258757,0.0006493506371043622,0.00034965036320500076,0.0007440476329065859,0.0005494505749084055,0.00022893772984389216,-0.007144938223063946,0.003087132703512907,0.0006493506371043622,0.00034965036320500076,-0.0002367424312978983,-0.00014430013834498823,-7.770007505314425e-05,1.2037062152420224e-34,4.0657581468206416e-20,3.3881317890172014e-21,-0.010854770429432392,0.0006493506371043622,0.008434169925749302,0.0005494505749084055,2.5478360016699467e-20,-0.0002597402490209788,0.0,-0.0011160714784637094,-0.00021978022414259613,-4.1335207826009857e-19,-0.006106393411755562,0.00034965036320500076,0.0005494505749084055,0.0021633668802678585,2.6112175448061504e-21,-3.565201108244114e-20,-6.357279198709875e-05,-1.4268750795229736e-18,-9.990009857574478e-05,-0.00013736264372710139,0.00031565656536258757,-0.0002367424312978983,2.5478360016699467e-20,2.6112175448061504e-21,2.630471317388583e-05,-6.48451843001537e-21,-2.2310236460195063e-21,6.852995029514513e-36,2.250685038516392e-22,6.297117390677536e-22,0.0006493506371043622,-0.00014430013834498823,-0.0002597402490209788,-3.565201108244114e-20,-6.48451843001537e-21,5.77200589759741e-05,8.400948890871551e-21,2.815732812558092e-37,-2.0183788810097566e-22,-1.5747476155027231e-22,0.00034965036320500076,-7.770007505314425e-05,0.0,-6.357279198709875e-05,-2.2310236460195063e-21,8.400948890871551e-21,1.41272867040243e-05,-2.843346060210488e-35,-6.806290880504931e-21,-8.470329472543003e-22,0.0007440476329065859,1.2037062152420224e-34,-0.0011160714784637094,-1.4268750795229736e-18,6.852995029514513e-36,2.815732812558092e-37,-2.843346060210488e-35,0.00022321428696159273,1.2979801517103867e-19,1.0021636271787169e-19,0.0005494505749084055,4.0657581468206416e-20,-0.00021978022414259613,-9.990009857574478e-05,2.250685038516392e-22,-2.0183788810097566e-22,-6.806290880504931e-21,1.2979801517103867e-19,3.996003943029791e-05,-1.5246593050577406e-20,0.00022893772984389216,3.3881317890172014e-21,-4.1335207826009857e-19,-0.00013736264372710139,6.297117390677536e-22,-1.5747476155027231e-22,-8.470329472543003e-22,1.0021636271787169e-19,-1.5246593050577406e-20,1.2487512321968097e-05,10.0,6.0,13.0,0.04218757525086403,-0.006618381477892399,-0.010056015104055405,-0.0052732983604073524,0.00029137529782019556,0.0005994006060063839,0.00029970030300319195,0.0006868132040835917,0.00047095760237425566,0.00018315018678549677,-0.006618381477892399,0.002854784019291401,0.0005994006060063839,0.00029970030300319195,-0.00021853146608918905,-0.00013320012658368796,-6.660006329184398e-05,6.018531076210112e-35,-1.1858461261560205e-20,-1.3552527156068805e-20,-0.010056015104055405,0.0005994006060063839,0.007799878716468811,0.00047095760237425566,0.0,-0.00023976023658178747,-1.3552527156068805e-20,-0.001030219835229218,-0.00018838304094970226,1.5924219408380846e-19,-0.0052732983604073524,0.00029970030300319195,0.00047095760237425566,0.001711383811198175,-0.0,-0.0,-4.995004928787239e-05,4.753345310162869e-19,-7.849293615436181e-05,-9.990009857574478e-05,0.00029137529782019556,-0.00021853146608918905,0.0,-0.0,2.428127481834963e-05,0.0,0.0,0.0,0.0,0.0,0.0005994006060063839,-0.00013320012658368796,-0.00023976023658178747,-0.0,0.0,5.328005499904975e-05,0.0,-0.0,0.0,0.0,0.00029970030300319195,-6.660006329184398e-05,-1.3552527156068805e-20,-4.995004928787239e-05,0.0,0.0,1.1100010851805564e-05,-9.027796614315168e-36,2.117582368135751e-21,2.117582368135751e-21,0.0006868132040835917,6.018531076210112e-35,-0.001030219835229218,4.753345310162869e-19,0.0,-0.0,-9.027796614315168e-36,0.00020604395831469446,-3.3101920919155616e-35,-3.961121091802391e-20,0.00047095760237425566,-1.1858461261560205e-20,-0.00018838304094970226,-7.849293615436181e-05,0.0,0.0,2.117582368135751e-21,-3.3101920919155616e-35,3.139717591693625e-05,5.929230630780102e-21,0.00018315018678549677,-1.3552527156068805e-20,1.5924219408380846e-19,-9.990009857574478e-05,0.0,0.0,2.117582368135751e-21,-3.961121091802391e-20,5.929230630780102e-21,8.325007911480498e-06,10.0,6.0,14.0,0.03949211537837982,-0.006164193153381348,-0.009366882964968681,-0.004599953535944223,0.00027056277031078935,0.0005565862520597875,0.0002597402490209788,0.0006377550889737904,0.0004081632650922984,0.00014880952949170023,-0.006164193153381348,0.0026549939066171646,0.0005565862520597875,0.0002597402490209788,-0.000202922077733092,-0.00012368583702482283,-5.77200589759741e-05,8.250654600279413e-19,3.032377951170395e-19,9.317362419797304e-20,-0.009366882964968681,0.0005565862520597875,0.007254406344145536,0.0004081632650922984,1.019963636307366e-18,-0.00022263450955506414,2.202285662861181e-20,-0.0009566326625645161,-0.00016326530021615326,-1.0842021724855044e-19,-0.004599953535944223,0.0002597402490209788,0.0004081632650922984,0.0013773280661553144,3.441722235965098e-19,-1.7872081116926908e-19,-3.996003943029791e-05,-4.767412033467216e-19,-6.27943518338725e-05,-7.440476474585012e-05,0.00027056277031078935,-0.000202922077733092,1.019963636307366e-18,3.441722235965098e-19,2.2546897525899112e-05,-2.090199135568551e-20,-7.503279403873221e-21,-1.1130338112299816e-19,-4.1776624358845684e-20,-1.3141844906633298e-20,0.0005565862520597875,-0.00012368583702482283,-0.00022263450955506414,-1.7872081116926908e-19,-2.090199135568551e-20,4.9474336265120655e-05,2.5858930145339916e-21,8.577104272456821e-20,3.105053458177936e-20,6.179348964604041e-21,0.0002597402490209788,-5.77200589759741e-05,2.202285662861181e-20,-3.996003943029791e-05,-7.503279403873221e-21,2.5858930145339916e-21,8.880008863343392e-06,-5.809644467232586e-21,-6.352747104407253e-22,8.470329472543003e-22,0.0006377550889737904,8.250654600279413e-19,-0.0009566326625645161,-4.767412033467216e-19,-1.1130338112299816e-19,8.577104272456821e-20,-5.809644467232586e-21,0.00019132652960252017,7.027345851921778e-20,1.9471385717449317e-20,0.0004081632650922984,3.032377951170395e-19,-0.00016326530021615326,-6.27943518338725e-05,-4.1776624358845684e-20,3.105053458177936e-20,-6.352747104407253e-22,7.027345851921778e-20,2.5117738914559595e-05,-6.776263578034403e-21,0.00014880952949170023,9.317362419797304e-20,-1.0842021724855044e-19,-7.440476474585012e-05,-1.3141844906633298e-20,6.179348964604041e-21,8.470329472543003e-22,1.9471385717449317e-20,-6.776263578034403e-21,5.723443337046774e-06,10.0,6.0,15.0,0.0371210016310215,-0.0057683982886374,-0.008766233921051025,-0.004047937225550413,0.00025252526393160224,0.0005194804980419576,0.00022727272880729288,0.0005952381179668009,0.0003571428533177823,0.00012254902685526758,-0.0057683982886374,0.0024813611526042223,0.0005194804980419576,0.00022727272880729288,-0.00018939393339678645,-0.0001154401179519482,-5.0505052058724687e-05,3.611118645726067e-35,-6.776263578034403e-21,-5.082197683525802e-21,-0.008766233921051025,0.0005194804980419576,0.006780303083360195,0.0003571428533177823,0.0,-0.00020779221085831523,-3.3881317890172014e-21,-0.0008928571478463709,-0.0001428571413271129,1.1858461261560205e-19,-0.004047937225550413,0.00022727272880729288,0.0003571428533177823,0.0011250339448451996,-0.0,-0.0,-3.246753112762235e-05,4.967928368768313e-19,-5.10204081365373e-05,-5.656108623952605e-05,0.00025252526393160224,-0.00018939393339678645,0.0,-0.0,2.1043770175310783e-05,0.0,0.0,0.0,0.0,0.0,0.0005194804980419576,-0.0001154401179519482,-0.00020779221085831523,-0.0,0.0,4.617604645318352e-05,0.0,0.0,0.0,0.0,0.00022727272880729288,-5.0505052058724687e-05,-3.3881317890172014e-21,-3.246753112762235e-05,0.0,0.0,7.215007371996762e-06,-7.52316384526264e-36,1.0587911840678754e-21,4.235164736271502e-22,0.0005952381179668009,3.611118645726067e-35,-0.0008928571478463709,4.967928368768313e-19,0.0,0.0,-7.52316384526264e-36,0.00017857142665889114,-5.3031760761125024e-20,-2.601524547068613e-20,0.0003571428533177823,-6.776263578034403e-21,-0.0001428571413271129,-5.10204081365373e-05,0.0,0.0,1.0587911840678754e-21,-5.3031760761125024e-20,2.0408162527019158e-05,2.117582368135751e-21,0.00012254902685526758,-5.082197683525802e-21,1.1858461261560205e-19,-5.656108623952605e-05,0.0,0.0,4.235164736271502e-22,-2.601524547068613e-20,2.117582368135751e-21,4.040077783429297e-06,10.0,6.0,16.0,0.0350189134478569,-0.005420406814664602,-0.008238039910793304,-0.0035897314082831144,0.0002367424312978983,0.0004870129923801869,0.00020053476328030229,0.0005580357392318547,0.00031512606074102223,0.00010212418419541791,-0.005420406814664602,0.002329061273485422,0.0004870129923801869,0.00020053476328030229,-0.00017755682347342372,-0.00010822511103469878,-4.456327951629646e-05,7.222237291452134e-35,3.3881317890172014e-21,-6.776263578034403e-21,-0.008238039910793304,0.0004870129923801869,0.006364412140101194,0.00031512606074102223,0.0,-0.00019480519404169172,3.3881317890172014e-21,-0.0008370535797439516,-0.00012605042138602585,1.1519648082658485e-19,-0.0035897314082831144,0.00020053476328030229,0.00031512606074102223,0.00093089509755373,-0.0,-0.0,-2.6737967345979996e-05,4.2514676906630976e-19,-4.201680712867528e-05,-4.376750803203322e-05,0.0002367424312978983,-0.00017755682347342372,0.0,-0.0,1.9728535335161723e-05,0.0,0.0,0.0,0.0,0.0,0.0004870129923801869,-0.00010822511103469878,-0.00019480519404169172,-0.0,0.0,4.329004150349647e-05,0.0,0.0,0.0,0.0,0.00020053476328030229,-4.456327951629646e-05,3.3881317890172014e-21,-2.6737967345979996e-05,0.0,0.0,5.941770723438822e-06,-9.027796614315168e-36,-4.235164736271502e-22,8.470329472543003e-22,0.0005580357392318547,7.222237291452134e-35,-0.0008370535797439516,4.2514676906630976e-19,0.0,0.0,-9.027796614315168e-36,0.00016741071885917336,-4.0943640557307714e-20,-2.1519179568162308e-20,0.00031512606074102223,3.3881317890172014e-21,-0.00012605042138602585,-4.201680712867528e-05,0.0,0.0,-4.235164736271502e-22,-4.0943640557307714e-20,1.6806723579065874e-05,-1.2705494208814505e-21,0.00010212418419541791,-6.776263578034403e-21,1.1519648082658485e-19,-4.376750803203322e-05,0.0,0.0,8.470329472543003e-22,-2.1519179568162308e-20,-1.2705494208814505e-21,2.9178338536439696e-06,10.0,7.0,3.0,0.11949855834245682,-0.02207792177796364,-0.029599567875266075,-0.05503246933221817,0.0010822510812431574,0.0019480519695207477,0.0038961039390414953,0.0019841270986944437,0.0053571430034935474,0.0071428571827709675,-0.02207792177796364,0.010046897456049919,0.0019480519695207477,0.0038961039390414953,-0.000811688310932368,-0.00043290044413879514,-0.0008658008882775903,2.278258686606573e-18,-7.16011221764566e-20,-2.684992699580788e-17,-0.029599567875266075,0.0019480519695207477,0.020183982327580452,0.0053571430034935474,1.97851242085512e-18,-0.0006493506371043622,-1.0659680098575386e-18,-0.0023809524718672037,-0.0017857142956927419,-6.214365081883051e-17,-0.05503246933221817,0.0038961039390414953,0.0053571430034935474,0.12646104395389557,-5.90318023174897e-18,-6.846298892547736e-18,-0.0038961039390414953,-1.951953347106298e-17,-0.0053571430034935474,-0.04285714402794838,0.0010822510812431574,-0.000811688310932368,1.97851242085512e-18,-5.90318023174897e-18,9.018759010359645e-05,-6.776263578034403e-20,2.8883991522433566e-19,-2.236199550987972e-19,-6.758662725562923e-20,2.403080241040825e-18,0.0019480519695207477,-0.00043290044413879514,-0.0006493506371043622,-6.846298892547736e-18,-6.776263578034403e-20,0.00014430013834498823,2.321993948640148e-19,-8.855966890228907e-20,2.196033469899987e-19,2.3550185659096564e-18,0.0038961039390414953,-0.0008658008882775903,-1.0659680098575386e-18,-0.0038961039390414953,2.8883991522433566e-19,2.321993948640148e-19,0.0008658008882775903,-1.593729179702111e-33,2.1070747509756266e-20,-1.8428506644933606e-18,0.0019841270986944437,2.278258686606573e-18,-0.0023809524718672037,-1.951953347106298e-17,-2.236199550987972e-19,-8.855966890228907e-20,-1.593729179702111e-33,0.00039682540227659047,1.3959606516948761e-18,6.872809203999448e-18,0.0053571430034935474,-7.16011221764566e-20,-0.0017857142956927419,-0.0053571430034935474,-6.758662725562923e-20,2.196033469899987e-19,2.1070747509756266e-20,1.3959606516948761e-18,0.0017857142956927419,9.516197613900963e-18,0.0071428571827709675,-2.684992699580788e-17,-6.214365081883051e-17,-0.04285714402794838,2.403080241040825e-18,2.3550185659096564e-18,-1.8428506644933606e-18,6.872809203999448e-18,9.516197613900963e-18,0.02142857201397419,10.0,7.0,4.0,0.09752164781093597,-0.017142856493592262,-0.023003246635198593,-0.03516233712434769,0.000811688310932368,0.0014610389480367303,0.0023376622702926397,0.0014880952658131719,0.003214285708963871,0.0035714285913854837,-0.017142856493592262,0.007665043231099844,0.0014610389480367303,0.0023376622702926397,-0.0006087662186473608,-0.0003246753185521811,-0.0005194804980419576,0.0,0.0,-0.0,-0.023003246635198593,0.0014610389480367303,0.01540584396570921,0.003214285708963871,-3.2030165074800477e-37,-0.0004870129923801869,1.631639446096276e-20,-0.0017857142956927419,-0.0010714285308495164,-0.0,-0.03516233712434769,0.0023376622702926397,0.003214285708963871,0.048441559076309204,3.059323941235678e-20,1.631639446096276e-20,-0.0015584415523335338,0.0,-0.002142857061699033,-0.010714286006987095,0.000811688310932368,-0.0006087662186473608,-3.2030165074800477e-37,3.059323941235678e-20,6.764069257769734e-05,7.117814274226977e-38,-6.7984980959646e-21,0.0,0.0,-0.0,0.0014610389480367303,-0.0003246753185521811,-0.0004870129923801869,1.631639446096276e-20,7.117814274226977e-38,0.00010822511103469878,-3.625865435769502e-21,0.0,0.0,-0.0,0.0023376622702926397,-0.0005194804980419576,1.631639446096276e-20,-0.0015584415523335338,-6.7984980959646e-21,-3.625865435769502e-21,0.00034632033202797174,0.0,0.0,-0.0,0.0014880952658131719,0.0,-0.0017857142956927419,0.0,0.0,0.0,0.0,0.00029761905898340046,0.0,-0.0,0.003214285708963871,0.0,-0.0010714285308495164,-0.002142857061699033,0.0,0.0,0.0,0.0,0.0007142857066355646,-0.0,0.0035714285913854837,-0.0,-0.0,-0.010714286006987095,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,10.0,7.0,5.0,0.08250154554843903,-0.014025974087417126,-0.018831169232726097,-0.024461966007947922,0.0006493506371043622,0.0011688311351463199,0.0015584415523335338,0.0011904762359336019,0.002142857061699033,0.0020408162381500006,-0.014025974087417126,0.0062012989073991776,0.0011688311351463199,0.0015584415523335338,-0.0004870129923801869,-0.0002597402490209788,-0.00034632033202797174,0.0,0.0,-0.0,-0.018831169232726097,0.0011688311351463199,0.01246753241866827,0.002142857061699033,2.063055722596723e-37,-0.00038961038808338344,4.21843565461747e-20,-0.0014285714132711291,-0.0007142857066355646,-0.0,-0.024461966007947922,0.0015584415523335338,0.002142857061699033,0.024475881829857826,-3.81083400672887e-21,4.21843565461747e-20,-0.0007792207761667669,0.0,-0.0010714285308495164,-0.004081632476300001,0.0006493506371043622,-0.0004870129923801869,2.063055722596723e-37,-3.81083400672887e-21,5.411255551734939e-05,-4.584568210157231e-38,8.468520519824023e-22,0.0,0.0,-0.0,0.0011688311351463199,-0.0002597402490209788,-0.00038961038808338344,4.21843565461747e-20,-4.584568210157231e-38,8.658008300699294e-05,-9.374301364950649e-21,0.0,0.0,-0.0,0.0015584415523335338,-0.00034632033202797174,4.21843565461747e-20,-0.0007792207761667669,8.468520519824023e-22,-9.374301364950649e-21,0.00017316016601398587,0.0,0.0,-0.0,0.0011904762359336019,0.0,-0.0014285714132711291,0.0,0.0,0.0,0.0,0.0002380952355451882,0.0,-0.0,0.002142857061699033,0.0,-0.0007142857066355646,-0.0010714285308495164,0.0,0.0,0.0,0.0,0.0003571428533177823,-0.0,0.0020408162381500006,-0.0,-0.0,-0.004081632476300001,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,10.0,7.0,6.0,0.07154195010662079,-0.011873840354382992,-0.015947742387652397,-0.018019480630755424,0.0005411255406215787,0.0009740259847603738,0.001113172504119575,0.0009920635493472219,0.0015306122368201613,0.0012755101779475808,-0.011873840354382992,0.005208977498114109,0.0009740259847603738,0.001113172504119575,-0.000405844155466184,-0.00021645022206939757,-0.00024737167404964566,1.1986341316309371e-18,1.5199368275430988e-18,1.9629922378169406e-18,-0.015947742387652397,0.0009740259847603738,0.010474644601345062,0.0015306122368201613,1.3805249444767538e-18,-0.0003246753185521811,1.7844881091940692e-19,-0.0011904762359336019,-0.0005102040595375001,4.055959675477068e-19,-0.018019480630755424,0.001113172504119575,0.0015306122368201613,0.014223098754882812,2.0011947472270896e-18,6.834004920693667e-19,-0.0004452690191101283,4.895638470097889e-19,-0.0006122448830865324,-0.0019132653251290321,0.0005411255406215787,-0.000405844155466184,1.3805249444767538e-18,2.0011947472270896e-18,4.5093795051798224e-05,-3.3734939233492806e-20,-4.3171457666763226e-20,-1.118099775493986e-19,-1.6607000135376258e-19,-2.2260676224599633e-19,0.0009740259847603738,-0.00021645022206939757,-0.0003246753185521811,6.834004920693667e-19,-3.3734939233492806e-20,7.215006917249411e-05,-2.903867946685981e-20,-4.4279834451144535e-20,-4.011455678311096e-20,-8.153307332903227e-20,0.001113172504119575,-0.00024737167404964566,1.7844881091940692e-19,-0.0004452690191101283,-4.3171457666763226e-20,-2.903867946685981e-20,9.894867253024131e-05,-2.3801936333692974e-20,3.801474587344803e-20,1.1402711885907336e-19,0.0009920635493472219,1.1986341316309371e-18,-0.0011904762359336019,4.895638470097889e-19,-1.118099775493986e-19,-4.4279834451144535e-20,-2.3801936333692974e-20,0.00019841270113829523,4.905552940597676e-20,-1.1800840377077644e-19,0.0015306122368201613,1.5199368275430988e-18,-0.0005102040595375001,-0.0006122448830865324,-1.6607000135376258e-19,-4.011455678311096e-20,3.801474587344803e-20,4.905552940597676e-20,0.0002040816325461492,2.11097280730054e-19,0.0012755101779475808,1.9629922378169406e-18,4.055959675477068e-19,-0.0019132653251290321,-2.2260676224599633e-19,-8.153307332903227e-20,1.1402711885907336e-19,-1.1800840377077644e-19,2.11097280730054e-19,0.00038265305920504034,10.0,7.0,7.0,0.06317640841007233,-0.010296845808625221,-0.013833488337695599,-0.013833488337695599,0.00046382189611904323,0.0008348794071935117,0.0008348794071935117,0.0008503401186317205,0.0011479591485112906,0.0008503401186317205,-0.010296845808625221,0.004491341765969992,0.0008348794071935117,0.0008348794071935117,-0.0003478664148133248,-0.00018552875553723425,-0.00018552875553723425,1.3362420371788806e-18,1.2424454425820785e-18,1.3362420371788806e-18,-0.013833488337695599,0.0008348794071935117,0.009032931178808212,0.0011479591485112906,9.915818287197528e-19,-0.00027829312602989376,2.4778484762240338e-19,-0.0010204081190750003,-0.00038265305920504034,3.255017490448164e-19,-0.013833488337695599,0.0008348794071935117,0.0011479591485112906,0.009032931178808212,9.981658762029452e-19,2.193851522540437e-19,-0.00027829312602989376,-1.541807146896877e-19,-0.00038265305920504034,-0.0010204081190750003,0.00046382189611904323,-0.0003478664148133248,9.915818287197528e-19,9.981658762029452e-19,3.865182588924654e-05,5.414054225008337e-21,3.950916720347298e-21,-9.583712638334818e-20,-1.0620756080875938e-19,-9.583712638334818e-20,0.0008348794071935117,-0.00018552875553723425,-0.00027829312602989376,2.193851522540437e-19,5.414054225008337e-21,6.184291851241142e-05,-2.3089453824839674e-22,-1.4302642969865447e-19,-4.3029622041104524e-20,-1.4876210006609717e-20,0.0008348794071935117,-0.00018552875553723425,2.4778484762240338e-19,-0.00027829312602989376,3.950916720347298e-21,-2.3089453824839674e-22,6.184291851241142e-05,-1.4876210006609717e-20,-5.249618393271681e-20,-1.4302642969865447e-19,0.0008503401186317205,1.3362420371788806e-18,-0.0010204081190750003,-1.541807146896877e-19,-9.583712638334818e-20,-1.4302642969865447e-19,-1.4876210006609717e-20,0.0001700680295471102,-8.111270886590335e-21,2.5175125620777757e-20,0.0011479591485112906,1.2424454425820785e-18,-0.00038265305920504034,-0.00038265305920504034,-1.0620756080875938e-19,-4.3029622041104524e-20,-5.249618393271681e-20,-8.111270886590335e-21,0.00012755101488437504,-1.6800542304137767e-19,0.0008503401186317205,1.3362420371788806e-18,3.255017490448164e-19,-0.0010204081190750003,-9.583712638334818e-20,-1.4876210006609717e-20,-1.4302642969865447e-19,2.5175125620777757e-20,-1.6800542304137767e-19,0.0001700680295471102,10.0,7.0,8.0,0.05657467618584633,-0.00909090880304575,-0.01221590954810381,-0.010957792401313782,0.000405844155466184,0.0007305194740183651,0.0006493506371043622,0.0007440476329065859,0.0008928571478463709,0.0005952381179668009,-0.00909090880304575,0.003947961609810591,0.0007305194740183651,0.0006493506371043622,-0.0003043831093236804,-0.00016233765927609056,-0.00014430013834498823,0.0,0.0,-0.0,-0.01221590954810381,0.0007305194740183651,0.007941016927361488,0.0008928571478463709,0.0,-0.00024350649619009346,0.0,-0.0008928571478463709,-0.00029761905898340046,-0.0,-0.010957792401313782,0.0006493506371043622,0.0008928571478463709,0.006106988061219454,-8.48423159983015e-21,0.0,-0.00018552875553723425,0.0,-0.00025510202976875007,-0.0005952381179668009,0.000405844155466184,-0.0003043831093236804,0.0,-8.48423159983015e-21,3.382034628884867e-05,0.0,1.8853849345945166e-21,0.0,0.0,-0.0,0.0007305194740183651,-0.00016233765927609056,-0.00024350649619009346,0.0,0.0,5.411255551734939e-05,0.0,0.0,0.0,-0.0,0.0006493506371043622,-0.00014430013834498823,0.0,-0.00018552875553723425,1.8853849345945166e-21,0.0,4.122861355426721e-05,0.0,0.0,-0.0,0.0007440476329065859,0.0,-0.0008928571478463709,0.0,0.0,0.0,0.0,0.00014880952949170023,0.0,-0.0,0.0008928571478463709,0.0,-0.00029761905898340046,-0.00025510202976875007,0.0,0.0,0.0,0.0,8.50340147735551e-05,-0.0,0.0005952381179668009,-0.0,-0.0,-0.0005952381179668009,-0.0,-0.0,-0.0,-0.0,-0.0,8.50340147735551e-05,10.0,7.0,9.0,0.05122895538806915,-0.00813852809369564,-0.010937950573861599,-0.00889610406011343,0.0003607503604143858,0.0006493506371043622,0.0005194804980419576,0.0006613756413571537,0.0007142857066355646,0.00043290044413879514,-0.00813852809369564,0.003522126004099846,0.0006493506371043622,0.0005194804980419576,-0.00027056277031078935,-0.00014430013834498823,-0.0001154401179519482,0.0,2.877355131882005e-22,-4.743384504624082e-20,-0.010937950573861599,0.0006493506371043622,0.007085137069225311,0.0007142857066355646,1.1499606239586406e-20,-0.00021645022206939757,0.0,-0.0007936508045531809,-0.0002380952355451882,-1.3552527156068805e-20,-0.00889610406011343,0.0005194804980419576,0.0007142857066355646,0.004326685331761837,-8.262122195275528e-22,2.8029134205910467e-21,-0.0001298701245104894,-0.0,-0.00017857142665889114,-0.0003710575110744685,0.0003607503604143858,-0.00027056277031078935,1.1499606239586406e-20,-8.262122195275528e-22,3.006253064086195e-05,-2.6700891360684144e-21,1.5051702729888472e-23,0.0,1.2894861720616875e-22,4.300486584409381e-23,0.0006493506371043622,-0.00014430013834498823,-0.00021645022206939757,2.8029134205910467e-21,-2.6700891360684144e-21,4.810004975297488e-05,-6.2286967706862035e-22,-0.0,0.0,-2.82118644197349e-37,0.0005194804980419576,-0.0001154401179519482,0.0,-0.0001298701245104894,1.5051702729888472e-23,-6.2286967706862035e-22,2.886002948798705e-05,0.0,0.0,1.1858461261560205e-20,0.0006613756413571537,0.0,-0.0007936508045531809,-0.0,0.0,-0.0,0.0,0.00013227513409219682,0.0,0.0,0.0007142857066355646,2.877355131882005e-22,-0.0002380952355451882,-0.00017857142665889114,1.2894861720616875e-22,0.0,0.0,0.0,5.952380888629705e-05,3.3881317890172014e-21,0.00043290044413879514,-4.743384504624082e-20,-1.3552527156068805e-20,-0.0003710575110744685,4.300486584409381e-23,-2.82118644197349e-37,1.1858461261560205e-20,0.0,3.3881317890172014e-21,4.638218888430856e-05,10.0,7.0,10.0,0.04681031033396721,-0.0073671783320605755,-0.009902597405016422,-0.0073671783320605755,0.0003246753185521811,0.0005844155675731599,0.0004250295169185847,0.0005952381179668009,0.0005844155675731599,0.0003246753185521811,-0.0073671783320605755,0.0031793585512787104,0.0005844155675731599,0.0004250295169185847,-0.00024350649619009346,-0.0001298701245104894,-9.445100295124575e-05,0.0,-1.2138595184847951e-20,6.776263578034403e-21,-0.009902597405016422,0.0005844155675731599,0.0063961041159927845,0.0005844155675731599,-2.403662649196406e-23,-0.00019480519404169172,-3.3881317890172014e-21,-0.0007142857066355646,-0.00019480519404169172,-3.3881317890172014e-20,-0.0073671783320605755,0.0004250295169185847,0.0005844155675731599,0.0031793585512787104,-5.275199357611667e-21,1.2085876153288333e-20,-9.445100295124575e-05,-0.0,-0.0001298701245104894,-0.00024350649619009346,0.0003246753185521811,-0.00024350649619009346,-2.403662649196406e-23,-5.275199357611667e-21,2.7056277758674696e-05,-1.3336195600297514e-37,1.0422223282678478e-21,0.0,5.341472641421003e-24,5.861062976392969e-23,0.0005844155675731599,-0.0001298701245104894,-0.00019480519404169172,1.2085876153288333e-20,-1.3336195600297514e-37,4.329004150349647e-05,-2.685750233847586e-21,-0.0,-3.76158192263132e-37,0.0,0.0004250295169185847,-9.445100295124575e-05,-3.3881317890172014e-21,-9.445100295124575e-05,1.0422223282678478e-21,-2.685750233847586e-21,2.0989111362723634e-05,0.0,2.541098841762901e-21,-8.470329472543003e-22,0.0005952381179668009,0.0,-0.0007142857066355646,-0.0,0.0,-0.0,0.0,0.0001190476177725941,0.0,0.0,0.0005844155675731599,-1.2138595184847951e-20,-0.00019480519404169172,-0.0001298701245104894,5.341472641421003e-24,-3.76158192263132e-37,2.541098841762901e-21,0.0,4.329004150349647e-05,8.470329472543003e-21,0.0003246753185521811,6.776263578034403e-21,-3.3881317890172014e-20,-0.00024350649619009346,5.861062976392969e-23,0.0,-8.470329472543003e-22,0.0,8.470329472543003e-21,2.7056277758674696e-05,10.0,7.0,11.0,0.043095920234918594,-0.006729634013026953,-0.009046635590493679,-0.006201752927154303,0.00029515937785618007,0.000531286874320358,0.0003541912592481822,0.0005411255406215787,0.0004870129923801869,0.00024975024280138314,-0.006729634013026953,0.0028974812012165785,0.000531286874320358,0.0003541912592481822,-0.00022136954066809267,-0.0001180637555080466,-7.870917033869773e-05,0.0,-2.641851096348672e-21,-4.0657581468206416e-20,-0.009046635590493679,0.000531286874320358,0.005829398054629564,0.0004870129923801869,9.351182313064645e-21,-0.0001770956296240911,1.6940658945086007e-21,-0.0006493506371043622,-0.00016233765927609056,-1.3552527156068805e-20,-0.006201752927154303,0.0003541912592481822,0.0004870129923801869,0.002405851613730192,7.53966081054135e-21,4.1472461000321985e-21,-7.083825039444491e-05,-0.0,-9.740259702084586e-05,-0.00016650016186758876,0.00029515937785618007,-0.00022136954066809267,9.351182313064645e-21,7.53966081054135e-21,2.459661482134834e-05,-2.1846183289791413e-21,-1.4849448007685177e-21,-0.0,9.591994511587676e-23,-1.0623083677454576e-22,0.000531286874320358,-0.0001180637555080466,-0.0001770956296240911,4.1472461000321985e-21,-2.1846183289791413e-21,3.9354585169348866e-05,-9.216102668903099e-22,-0.0,-7.052966104933725e-38,-5.172175143618065e-37,0.0003541912592481822,-7.870917033869773e-05,1.6940658945086007e-21,-7.083825039444491e-05,-1.4849448007685177e-21,-9.216102668903099e-22,1.5741834431537427e-05,0.0,8.470329472543003e-22,8.470329472543003e-21,0.0005411255406215787,0.0,-0.0006493506371043622,-0.0,-0.0,-0.0,0.0,0.00010822511103469878,0.0,0.0,0.0004870129923801869,-2.641851096348672e-21,-0.00016233765927609056,-9.740259702084586e-05,9.591994511587676e-23,-7.052966104933725e-38,8.470329472543003e-22,0.0,3.246753112762235e-05,3.3881317890172014e-21,0.00024975024280138314,-4.0657581468206416e-20,-1.3552527156068805e-20,-0.00016650016186758876,-1.0623083677454576e-22,-5.172175143618065e-37,8.470329472543003e-21,0.0,3.3881317890172014e-21,1.6650015822960995e-05,10.0,7.0,12.0,0.03992931544780731,-0.006193806417286396,-0.008327089250087738,-0.005292921327054501,0.00027056277031078935,0.0004870129923801869,0.00029970030300319195,0.0004960317746736109,0.00041208791662938893,0.00019623234402388334,-0.006193806417286396,0.0026615746319293976,0.0004870129923801869,0.00029970030300319195,-0.000202922077733092,-0.00010822511103469878,-6.660006329184398e-05,6.016057194740379e-19,4.353749348887104e-19,2.947674656444965e-19,-0.008327089250087738,0.0004870129923801869,0.005355061497539282,0.00041208791662938893,7.03247139903928e-19,-0.00016233765927609056,8.300922883092143e-20,-0.0005952381179668009,-0.00013736264372710139,1.2197274440461925e-19,-0.005292921327054501,0.00029970030300319195,0.00041208791662938893,0.0018650180427357554,5.000902889911973e-19,9.54410748909972e-20,-5.4490963520947844e-05,-3.977685706686192e-20,-7.492507575079799e-05,-0.00011773940059356391,0.00027056277031078935,-0.000202922077733092,7.03247139903928e-19,5.000902889911973e-19,2.2546897525899112e-05,-1.5613701299424695e-20,-1.0759581706145484e-20,-5.59049887746993e-20,-4.0858492653003036e-20,-2.538221804194865e-20,0.0004870129923801869,-0.00010822511103469878,-0.00016233765927609056,9.54410748909972e-20,-1.5613701299424695e-20,3.607503458624706e-05,4.3293539710484215e-22,-2.2139917225572267e-20,-6.411498738324825e-21,-6.6349073778576834e-21,0.00029970030300319195,-6.660006329184398e-05,8.300922883092143e-20,-5.4490963520947844e-05,-1.0759581706145484e-20,4.3293539710484215e-22,1.2109103408874944e-05,-5.82564887727771e-21,-8.618117728996533e-21,-7.623296525288703e-21,0.0004960317746736109,6.016057194740379e-19,-0.0005952381179668009,-3.977685706686192e-20,-5.59049887746993e-20,-2.2139917225572267e-20,-5.82564887727771e-21,9.920635056914762e-05,2.4021998688374757e-20,-2.904822233616293e-21,0.00041208791662938893,4.353749348887104e-19,-0.00013736264372710139,-7.492507575079799e-05,-4.0858492653003036e-20,-6.411498738324825e-21,-8.618117728996533e-21,2.4021998688374757e-20,2.4975024643936194e-05,-1.6940658945086007e-20,0.00019623234402388334,2.947674656444965e-19,1.2197274440461925e-19,-0.00011773940059356391,-2.538221804194865e-20,-6.6349073778576834e-21,-7.623296525288703e-21,-2.904822233616293e-21,-1.6940658945086007e-20,1.0703582120186184e-05,10.0,7.0,13.0,0.03719732537865639,-0.005737119819968939,-0.0077137150801718235,-0.004570429679006338,0.00024975024280138314,0.0004495504545047879,0.000256885978160426,0.0004578754596877843,0.00035321820178069174,0.00015698587230872363,-0.005737119819968939,0.002461229218170047,0.0004495504545047879,0.000256885978160426,-0.00018731268937699497,-9.990009857574478e-05,-5.7085770095000044e-05,-0.0,0.0,-1.3552527156068805e-20,-0.0077137150801718235,0.0004495504545047879,0.0049521904438734055,0.00035321820178069174,0.0,-0.00014985015150159597,1.6940658945086007e-21,-0.0005494505749084055,-0.00011773940059356391,6.776263578034403e-21,-0.004570429679006338,0.000256885978160426,0.00035321820178069174,0.001475310418754816,-0.0,-0.0,-4.2814328480744734e-05,-0.0,-5.886970029678196e-05,-8.562865696148947e-05,0.00024975024280138314,-0.00018731268937699497,0.0,-0.0,2.0812520233448595e-05,0.0,0.0,0.0,0.0,0.0,0.0004495504545047879,-9.990009857574478e-05,-0.00014985015150159597,-0.0,0.0,3.330003164592199e-05,0.0,0.0,0.0,0.0,0.000256885978160426,-5.7085770095000044e-05,1.6940658945086007e-21,-4.2814328480744734e-05,0.0,0.0,9.51429501583334e-06,0.0,-2.117582368135751e-22,2.117582368135751e-21,0.0004578754596877843,-0.0,-0.0005494505749084055,-0.0,0.0,0.0,0.0,9.157509339274839e-05,0.0,0.0,0.00035321820178069174,0.0,-0.00011773940059356391,-5.886970029678196e-05,0.0,0.0,-2.117582368135751e-22,0.0,1.9623234038590454e-05,-8.470329472543003e-22,0.00015698587230872363,-1.3552527156068805e-20,6.776263578034403e-21,-8.562865696148947e-05,0.0,0.0,2.117582368135751e-21,0.0,-8.470329472543003e-22,7.1357212618750054e-06,10.0,7.0,14.0,0.034816015511751175,-0.005343228112906218,-0.0071846009232103825,-0.003986549098044634,0.00023191094805952162,0.00041743970359675586,0.00022263450955506414,0.00042517005931586027,0.0003061224415432662,0.00012755101488437504,-0.005343228112906218,0.00228896108455956,0.00041743970359675586,0.00022263450955506414,-0.0001739332074066624,-9.276437776861712e-05,-4.9474336265120655e-05,6.485484777303637e-19,2.795208725939191e-19,1.2366681029912785e-19,-0.0071846009232103825,0.00041743970359675586,0.004605751484632492,0.0003061224415432662,5.140910963404816e-19,-0.00013914656301494688,2.710505431213761e-20,-0.0005102040595375001,-0.0001020408162730746,-7.453889935837843e-20,-0.003986549098044634,0.00022263450955506414,0.0003061224415432662,0.0011872948380187154,2.526965427021667e-19,2.643007008553294e-20,-3.4251461329404265e-05,-1.461568042539819e-19,-4.7095760237425566e-05,-6.377550744218752e-05,0.00023191094805952162,-0.0001739332074066624,5.140910963404816e-19,2.526965427021667e-19,1.932591294462327e-05,1.429608720000386e-21,7.038073613023734e-22,-4.791856319167409e-20,-2.644048416019801e-20,-1.1264438145202727e-20,0.00041743970359675586,-9.276437776861712e-05,-0.00013914656301494688,2.643007008553294e-20,1.429608720000386e-21,3.092145925620571e-05,1.2544416132597575e-21,-6.449315917278844e-20,-1.1325465333598387e-20,-9.215875710446734e-36,0.00022263450955506414,-4.9474336265120655e-05,2.710505431213761e-20,-3.4251461329404265e-05,7.038073613023734e-22,1.2544416132597575e-21,7.611436103616143e-06,-3.661836483305622e-21,-1.2705494208814505e-21,-3.1763735522036263e-21,0.00042517005931586027,6.485484777303637e-19,-0.0005102040595375001,-1.461568042539819e-19,-4.791856319167409e-20,-6.449315917278844e-20,-3.661836483305622e-21,8.50340147735551e-05,3.232059205637854e-21,9.440672107791659e-21,0.0003061224415432662,2.795208725939191e-19,-0.0001020408162730746,-4.7095760237425566e-05,-2.644048416019801e-20,-1.1325465333598387e-20,-1.2705494208814505e-21,3.232059205637854e-21,1.5698587958468124e-05,1.2705494208814505e-21,0.00012755101488437504,1.2366681029912785e-19,-7.453889935837843e-20,-6.377550744218752e-05,-1.1264438145202727e-20,-9.215875710446734e-36,-3.1763735522036263e-21,9.440672107791659e-21,1.2705494208814505e-21,4.905808509647613e-06,10.0,7.0,15.0,0.032721810042858124,-0.004999999888241291,-0.006723484955728054,-0.00350792589597404,0.00021645022206939757,0.00038961038808338344,0.00019480519404169172,0.00039682540227659047,0.0002678571327123791,0.0001050420178216882,-0.004999999888241291,0.0021392495837062597,0.00038961038808338344,0.00019480519404169172,-0.00016233765927609056,-8.658008300699294e-05,-4.329004150349647e-05,-0.0,-1.3552527156068805e-20,-8.470329472543003e-21,-0.006723484955728054,0.00038961038808338344,0.004304653499275446,0.0002678571327123791,0.0,-0.0001298701245104894,-1.0164395367051604e-20,-0.0004761904710903764,-8.928571332944557e-05,-1.6940658945086007e-20,-0.00350792589597404,0.00019480519404169172,0.0002678571327123791,0.0009697812492959201,-0.0,-0.0,-2.7829313694383018e-05,-0.0,-3.826530519290827e-05,-4.848093158216216e-05,0.00021645022206939757,-0.00016233765927609056,0.0,-0.0,1.803751729312353e-05,0.0,0.0,0.0,0.0,0.0,0.00038961038808338344,-8.658008300699294e-05,-0.0001298701245104894,-0.0,0.0,2.886002948798705e-05,0.0,0.0,0.0,0.0,0.00019480519404169172,-4.329004150349647e-05,-1.0164395367051604e-20,-2.7829313694383018e-05,0.0,0.0,6.184292033140082e-06,0.0,1.6940658945086007e-21,1.4823076576950256e-21,0.00039682540227659047,-0.0,-0.0004761904710903764,-0.0,0.0,0.0,0.0,7.936507608974352e-05,0.0,0.0,0.0002678571327123791,-1.3552527156068805e-20,-8.928571332944557e-05,-3.826530519290827e-05,0.0,0.0,1.6940658945086007e-21,0.0,1.2755102034134325e-05,2.541098841762901e-21,0.0001050420178216882,-8.470329472543003e-21,-1.6940658945086007e-20,-4.848093158216216e-05,0.0,0.0,1.4823076576950256e-21,0.0,2.541098841762901e-21,3.462923586994293e-06,10.0,7.0,16.0,0.030865641310811043,-0.0046982429921627045,-0.006318038795143366,-0.003110676072537899,0.000202922077733092,0.00036525973700918257,0.00017188693163916469,0.00037202381645329297,0.00023634453827980906,8.753501606406644e-05,-0.0046982429921627045,0.0020079337991774082,0.00036525973700918257,0.00017188693163916469,-0.0001521915546618402,-8.116882963804528e-05,-3.819709672825411e-05,-0.0,-8.470329472543003e-22,-2.202285662861181e-20,-0.006318038795143366,0.00036525973700918257,0.004040536470711231,0.00023634453827980906,0.0,-0.00012175324809504673,-8.470329472543003e-22,-0.00044642857392318547,-7.878151518525556e-05,-1.6940658945086007e-21,-0.003110676072537899,0.00017188693163916469,0.00023634453827980906,0.0008024118724279106,-0.0,-0.0,-2.2918258764548227e-05,-0.0,-3.151260534650646e-05,-3.751500480575487e-05,0.000202922077733092,-0.0001521915546618402,0.0,-0.0,1.6910173144424334e-05,0.0,0.0,0.0,0.0,0.0,0.00036525973700918257,-8.116882963804528e-05,-0.00012175324809504673,-0.0,0.0,2.7056277758674696e-05,0.0,0.0,0.0,0.0,0.00017188693163916469,-3.819709672825411e-05,-8.470329472543003e-22,-2.2918258764548227e-05,0.0,0.0,5.092946139484411e-06,0.0,1.0587911840678754e-22,2.964615315390051e-21,0.00037202381645329297,-0.0,-0.00044642857392318547,-0.0,0.0,0.0,0.0,7.440476474585012e-05,0.0,0.0,0.00023634453827980906,-8.470329472543003e-22,-7.878151518525556e-05,-3.151260534650646e-05,0.0,0.0,1.0587911840678754e-22,0.0,1.050420178216882e-05,2.117582368135751e-22,8.753501606406644e-05,-2.202285662861181e-20,-1.6940658945086007e-21,-3.751500480575487e-05,0.0,0.0,2.964615315390051e-21,0.0,2.117582368135751e-22,2.501000381016638e-06,10.0,8.0,3.0,0.10732322931289673,-0.019507575780153275,-0.02348484843969345,-0.048674240708351135,0.0009469697251915932,0.0015151514671742916,0.003409090917557478,0.0013888889225199819,0.004166666883975267,0.0062500000931322575,-0.019507575780153275,0.008833122439682484,0.0015151514671742916,0.003409090917557478,-0.0007102272938936949,-0.00033670032280497253,-0.0007575757335871458,0.0,0.0,-0.0,-0.02348484843969345,0.0015151514671742916,0.013654401525855064,0.004166666883975267,-9.40195038925493e-37,-0.00043290044413879514,5.521629629126355e-20,-0.0013888889225199819,-0.0011904762359336019,-0.0,-0.048674240708351135,0.003409090917557478,0.004166666883975267,0.11117424070835114,5.804827190296102e-20,5.521629629126355e-20,-0.003409090917557478,0.0,-0.004166666883975267,-0.03750000149011612,0.0009469697251915932,-0.0007102272938936949,-9.40195038925493e-37,5.804827190296102e-20,7.891414134064689e-05,-3.3881317890172014e-21,-1.2899615888680941e-20,0.0,0.0,-0.0,0.0015151514671742916,-0.00033670032280497253,-0.00043290044413879514,5.521629629126355e-20,-3.3881317890172014e-21,9.620009950594977e-05,-1.2270287346686508e-20,0.0,0.0,-0.0,0.003409090917557478,-0.0007575757335871458,5.521629629126355e-20,-0.003409090917557478,-1.2899615888680941e-20,-1.2270287346686508e-20,0.0007575757335871458,0.0,0.0,-0.0,0.0013888889225199819,0.0,-0.0013888889225199819,0.0,0.0,0.0,0.0,0.00019841270113829523,0.0,-0.0,0.004166666883975267,0.0,-0.0011904762359336019,-0.004166666883975267,0.0,0.0,0.0,0.0,0.0011904762359336019,-0.0,0.0062500000931322575,-0.0,-0.0,-0.03750000149011612,-0.0,-0.0,-0.0,-0.0,-0.0,0.01875000074505806,10.0,8.0,4.0,0.0874810591340065,-0.0151420459151268,-0.01823863573372364,-0.031079545617103577,0.0007102272938936949,0.0011363636003807187,0.0020454544574022293,0.0010416667209938169,0.0024999999441206455,0.0031250000465661287,-0.0151420459151268,0.006738478317856789,0.0011363636003807187,0.0020454544574022293,-0.0005326704704202712,-0.00025252526393160224,-0.00045454545761458576,0.0,0.0,-0.0,-0.01823863573372364,0.0011363636003807187,0.010419372469186783,0.0024999999441206455,2.710505431213761e-20,-0.0003246753185521811,1.2624390119105961e-20,-0.0010416667209938169,-0.0007142857066355646,-0.0,-0.031079545617103577,0.0020454544574022293,0.0024999999441206455,0.04259469732642174,2.6629572478348804e-20,1.2624390119105961e-20,-0.0013636363437399268,-5.551114999048691e-19,-0.0016666667070239782,-0.00937500037252903,0.0007102272938936949,-0.0005326704704202712,2.710505431213761e-20,2.6629572478348804e-20,5.918560782447457e-05,-3.3881317890172014e-21,-5.917682817843821e-21,0.0,0.0,-0.0,0.0011363636003807187,-0.00025252526393160224,-0.0003246753185521811,1.2624390119105961e-20,-3.3881317890172014e-21,7.215006917249411e-05,-2.805420004029281e-21,0.0,0.0,-0.0,0.0020454544574022293,-0.00045454545761458576,1.2624390119105961e-20,-0.0013636363437399268,-5.917682817843821e-21,-2.805420004029281e-21,0.0003030303050763905,0.0,0.0,-0.0,0.0010416667209938169,0.0,-0.0010416667209938169,-5.551114999048691e-19,0.0,0.0,0.0,0.00014880952949170023,1.5860328753349075e-19,-0.0,0.0024999999441206455,0.0,-0.0007142857066355646,-0.0016666667070239782,0.0,0.0,0.0,1.5860328753349075e-19,0.0004761904710903764,-0.0,0.0031250000465661287,-0.0,-0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,10.0,8.0,5.0,0.07395021617412567,-0.012386363931000233,-0.014924242161214352,-0.021612554788589478,0.0005681818001903594,0.0009090909152291715,0.0013636363437399268,0.0008333333535119891,0.0016666667070239782,0.0017857142956927419,-0.012386363931000233,0.005451388657093048,0.0009090909152291715,0.0013636363437399268,-0.00042613636469468474,-0.00020202020823489875,-0.0003030303050763905,0.0,0.0,-0.0,-0.014924242161214352,0.0009090909152291715,0.008430736139416695,0.0016666667070239782,3.928855878033994e-21,-0.0002597402490209788,-6.776263578034403e-21,-0.0008333333535119891,-0.0004761904710903764,-0.0,-0.021612554788589478,0.0013636363437399268,0.0016666667070239782,0.02152056246995926,-1.2833844528666605e-20,0.0,-0.0006818181718699634,0.0,-0.0008333333535119891,-0.0035714285913854837,0.0005681818001903594,-0.00042613636469468474,3.928855878033994e-21,-1.2833844528666605e-20,4.734848334919661e-05,-1.3932770936108208e-21,4.0703239576197356e-21,0.0,0.0,-0.0,0.0009090909152291715,-0.00020202020823489875,-0.0002597402490209788,0.0,-1.3932770936108208e-21,5.77200589759741e-05,0.0,0.0,0.0,-0.0,0.0013636363437399268,-0.0003030303050763905,-6.776263578034403e-21,-0.0006818181718699634,4.0703239576197356e-21,0.0,0.00015151515253819525,0.0,0.0,-0.0,0.0008333333535119891,0.0,-0.0008333333535119891,0.0,0.0,0.0,0.0,0.0001190476177725941,0.0,-0.0,0.0016666667070239782,0.0,-0.0004761904710903764,-0.0008333333535119891,0.0,0.0,0.0,0.0,0.0002380952355451882,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0035714285913854837,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,10.0,8.0,6.0,0.06409180909395218,-0.010484307073056698,-0.012635281309485435,-0.015915855765342712,0.0004734848625957966,0.0007575757335871458,0.0009740259847603738,0.0006944444612599909,0.0011904762359336019,0.0011160714784637094,-0.010484307073056698,0.004578899126499891,0.0007575757335871458,0.0009740259847603738,-0.00035511364694684744,-0.00016835016140248626,-0.00021645022206939757,0.0,0.0,-0.0,-0.012635281309485435,0.0007575757335871458,0.007082302588969469,0.0011904762359336019,1.2015401011333669e-20,-0.00021645022206939757,1.2424800484584865e-20,-0.0006944444612599909,-0.0003401360590942204,-0.0,-0.015915855765342712,0.0009740259847603738,0.0011904762359336019,0.01250473503023386,1.3517325935801986e-20,1.2424800484584865e-20,-0.00038961038808338344,0.0,-0.0004761904710903764,-0.0016741071594879031,0.0004734848625957966,-0.00035511364694684744,1.2015401011333669e-20,1.3517325935801986e-20,3.9457070670323446e-05,-2.6700891360684144e-21,-3.0038502528334172e-21,0.0,0.0,-0.0,0.0007575757335871458,-0.00016835016140248626,-0.00021645022206939757,1.2424800484584865e-20,-2.6700891360684144e-21,4.810004975297488e-05,-2.7610668865457432e-21,0.0,0.0,-0.0,0.0009740259847603738,-0.00021645022206939757,1.2424800484584865e-20,-0.00038961038808338344,-3.0038502528334172e-21,-2.7610668865457432e-21,8.658008300699294e-05,0.0,0.0,-0.0,0.0006944444612599909,0.0,-0.0006944444612599909,0.0,0.0,0.0,0.0,9.920635056914762e-05,0.0,-0.0,0.0011904762359336019,0.0,-0.0003401360590942204,-0.0004761904710903764,0.0,0.0,0.0,0.0,0.0001360544265480712,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003348214377183467,10.0,8.0,7.0,0.05657467618584633,-0.00909090880304575,-0.010957792401313782,-0.01221590954810381,0.000405844155466184,0.0006493506371043622,0.0007305194740183651,0.0005952381179668009,0.0008928571478463709,0.0007440476329065859,-0.00909090880304575,0.003947961609810591,0.0006493506371043622,0.0007305194740183651,-0.0003043831093236804,-0.00014430013834498823,-0.00016233765927609056,0.0,0.0,-0.0,-0.010957792401313782,0.0006493506371043622,0.006106988061219454,0.0008928571478463709,-1.0298914806374473e-20,-0.00018552875553723425,-3.954248061017385e-21,-0.0005952381179668009,-0.00025510202976875007,-0.0,-0.01221590954810381,0.0007305194740183651,0.0008928571478463709,0.007941016927361488,0.0,-3.954248061017385e-21,-0.00024350649619009346,1.982541126480377e-19,-0.00029761905898340046,-0.0008928571478463709,0.000405844155466184,-0.0003043831093236804,-1.0298914806374473e-20,0.0,3.382034628884867e-05,2.2886478020660135e-21,0.0,0.0,0.0,-0.0,0.0006493506371043622,-0.00014430013834498823,-0.00018552875553723425,-3.954248061017385e-21,2.2886478020660135e-21,4.122861355426721e-05,8.787217801178415e-22,0.0,0.0,-0.0,0.0007305194740183651,-0.00016233765927609056,-3.954248061017385e-21,-0.00024350649619009346,0.0,8.787217801178415e-22,5.411255551734939e-05,0.0,0.0,-0.0,0.0005952381179668009,0.0,-0.0005952381179668009,1.982541126480377e-19,0.0,0.0,0.0,8.50340147735551e-05,-5.664402941557569e-20,-0.0,0.0008928571478463709,0.0,-0.00025510202976875007,-0.00029761905898340046,0.0,0.0,0.0,-5.664402941557569e-20,8.50340147735551e-05,-0.0,0.0007440476329065859,-0.0,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.00014880952949170023,10.0,8.0,8.0,0.05064709484577179,-0.00802556797862053,-0.009674874134361744,-0.009674874134361744,0.00035511364694684744,0.0005681818001903594,0.0005681818001903594,0.0005208333604969084,0.0006944444612599909,0.0005208333604969084,-0.00802556797862053,0.0034702494740486145,0.0005681818001903594,0.0005681818001903594,-0.0002663352352101356,-0.00012626263196580112,-0.00012626263196580112,0.0,0.0,-0.0,-0.009674874134361744,0.0005681818001903594,0.0053684161975979805,0.0006944444612599909,9.011550354603468e-21,-0.00016233765927609056,5.516750232864573e-21,-0.0005208333604969084,-0.00019841270113829523,-1.541976460428509e-19,-0.009674874134361744,0.0005681818001903594,0.0006944444612599909,0.0053684161975979805,7.423702851799773e-21,5.516750232864573e-21,-0.00016233765927609056,-1.541976460428509e-19,-0.00019841270113829523,-0.0005208333604969084,0.00035511364694684744,-0.0002663352352101356,9.011550354603468e-21,7.423702851799773e-21,2.9592803912237287e-05,-2.002566700590017e-21,-1.649711767283104e-21,-0.0,-0.0,-0.0,0.0005681818001903594,-0.00012626263196580112,-0.00016233765927609056,5.516750232864573e-21,-2.002566700590017e-21,3.607503458624706e-05,-1.225944574727613e-21,-0.0,-0.0,-0.0,0.0005681818001903594,-0.00012626263196580112,5.516750232864573e-21,-0.00016233765927609056,-1.649711767283104e-21,-1.225944574727613e-21,3.607503458624706e-05,0.0,0.0,-0.0,0.0005208333604969084,0.0,-0.0005208333604969084,-1.541976460428509e-19,-0.0,-0.0,0.0,7.440476474585012e-05,4.4056469836361075e-20,3.4238755395954644e-35,0.0006944444612599909,0.0,-0.00019841270113829523,-0.00019841270113829523,-0.0,-0.0,0.0,4.4056469836361075e-20,5.668934318237007e-05,4.4056469836361075e-20,0.0005208333604969084,-0.0,-1.541976460428509e-19,-0.0005208333604969084,-0.0,-0.0,-0.0,3.4238755395954644e-35,4.4056469836361075e-20,7.440476474585012e-05,10.0,8.0,9.0,0.04585016891360283,-0.007184343412518501,-0.00866161659359932,-0.007853535003960133,0.00031565656536258757,0.0005050505278632045,0.00045454545761458576,0.00046296295477077365,0.0005555555690079927,0.0003787878667935729,-0.007184343412518501,0.003095889464020729,0.0005050505278632045,0.00045454545761458576,-0.0002367424312978983,-0.00011223344336031005,-0.00010101010411744937,1.53022574340917e-35,1.535609754651265e-20,-4.743384504624082e-20,-0.00866161659359932,0.0005050505278632045,0.004789562430232763,0.0005555555690079927,7.839769045358977e-21,-0.00014430013834498823,2.371692252312041e-20,-0.00046296295477077365,-0.00015873015217948705,4.743384504624082e-20,-0.007853535003960133,0.00045454545761458576,0.0005555555690079927,0.0038032105658203363,7.668438453190364e-21,9.029533454990827e-21,-0.00011363636440364644,-1.2335811683428072e-19,-0.00013888889225199819,-0.0003246753185521811,0.00031565656536258757,-0.0002367424312978983,7.839769045358977e-21,7.668438453190364e-21,2.630471317388583e-05,-1.780059356729479e-21,-1.0356676893172537e-21,3.785815754065599e-38,4.2624496048257964e-23,-3.653369342598184e-22,0.0005050505278632045,-0.00011223344336031005,-0.00014430013834498823,9.029533454990827e-21,-1.780059356729479e-21,3.2066698622656986e-05,-2.006563057314092e-21,0.0,2.82118644197349e-37,-1.034435028723613e-36,0.00045454545761458576,-0.00010101010411744937,2.371692252312041e-20,-0.00011363636440364644,-1.0356676893172537e-21,-2.006563057314092e-21,2.5252526029362343e-05,-3.76158192263132e-36,-3.3881317890172014e-21,1.1858461261560205e-20,0.00046296295477077365,1.53022574340917e-35,-0.00046296295477077365,-1.2335811683428072e-19,3.785815754065599e-38,0.0,-3.76158192263132e-36,6.613756704609841e-05,3.52451739303843e-20,-1.3541694921472752e-35,0.0005555555690079927,1.535609754651265e-20,-0.00015873015217948705,-0.00013888889225199819,4.2624496048257964e-23,2.82118644197349e-37,-3.3881317890172014e-21,3.52451739303843e-20,3.968253804487176e-05,-1.3552527156068805e-20,0.0003787878667935729,-4.743384504624082e-20,4.743384504624082e-20,-0.0003246753185521811,-3.653369342598184e-22,-1.034435028723613e-36,1.1858461261560205e-20,-1.3541694921472752e-35,-1.3552527156068805e-20,4.058441481902264e-05,10.0,8.0,10.0,0.04188705235719681,-0.006503099109977484,-0.00784090906381607,-0.006503099109977484,0.0002840909000951797,0.00045454545761458576,0.0003719008236657828,0.00041666667675599456,0.00045454545761458576,0.0002840909000951797,-0.006503099109977484,0.0027945649344474077,0.00045454545761458576,0.0003719008236657828,-0.00021306818234734237,-0.00010101010411744937,-8.264462667284533e-05,0.0,2.4567264192824922e-21,6.776263578034403e-21,-0.00784090906381607,0.00045454545761458576,0.004323592875152826,0.00045454545761458576,2.967785349782238e-22,-0.0001298701245104894,0.0,-0.00041666667675599456,-0.0001298701245104894,6.776263578034403e-21,-0.006503099109977484,0.0003719008236657828,0.00045454545761458576,0.0027945649344474077,4.3252700696965285e-21,-0.0,-8.264462667284533e-05,-0.0,-0.00010101010411744937,-0.00021306818234734237,0.0002840909000951797,-0.00021306818234734237,2.967785349782238e-22,4.3252700696965285e-21,2.3674241674598306e-05,0.0,-1.3862333356554407e-22,-0.0,-6.595078484950671e-23,-3.5738827080461563e-22,0.00045454545761458576,-0.00010101010411744937,-0.0001298701245104894,-0.0,0.0,2.886002948798705e-05,0.0,0.0,0.0,0.0,0.0003719008236657828,-8.264462667284533e-05,0.0,-8.264462667284533e-05,-1.3862333356554407e-22,0.0,1.8365473806625232e-05,0.0,-4.235164736271502e-22,-8.470329472543003e-22,0.00041666667675599456,0.0,-0.00041666667675599456,-0.0,-0.0,0.0,0.0,5.952380888629705e-05,0.0,0.0,0.00045454545761458576,2.4567264192824922e-21,-0.0001298701245104894,-0.00010101010411744937,-6.595078484950671e-23,0.0,-4.235164736271502e-22,0.0,2.886002948798705e-05,0.0,0.0002840909000951797,6.776263578034403e-21,6.776263578034403e-21,-0.00021306818234734237,-3.5738827080461563e-22,0.0,-8.470329472543003e-22,0.0,0.0,2.3674241674598306e-05,10.0,8.0,11.0,0.03855689615011215,-0.005940082482993603,-0.007162534631788731,-0.005473881959915161,0.00025826445198617876,0.0004132231406401843,0.0003099173482041806,0.0003787878667935729,0.0003787878667935729,0.00021853146608918905,-0.005940082482993603,0.0025467744562774897,0.0004132231406401843,0.0003099173482041806,-0.00019369834626559168,-9.182736539514735e-05,-6.887052586534992e-05,0.0,-1.6690040990940912e-20,-2.710505431213761e-20,-0.007162534631788731,0.0004132231406401843,0.003940377850085497,0.0003787878667935729,7.526492967606557e-21,-0.0001180637555080466,-4.404571325722362e-20,-0.0003787878667935729,-0.00010822511103469878,-4.0657581468206416e-20,-0.005473881959915161,0.0003099173482041806,0.0003787878667935729,0.002114590024575591,6.5230610883718634e-21,-2.625297427067703e-20,-6.19834681856446e-05,-0.0,-7.575757626909763e-05,-0.00014568764891009778,0.00025826445198617876,-0.00019369834626559168,7.526492967606557e-21,6.5230610883718634e-21,2.15220388781745e-05,-1.4564122193194275e-21,-1.6645559585741524e-22,-0.0,-1.9452760875560117e-22,-4.7246421994528285e-22,0.0004132231406401843,-9.182736539514735e-05,-0.0001180637555080466,-2.625297427067703e-20,-1.4564122193194275e-21,2.6236390112899244e-05,5.8339941926178325e-21,0.0,1.692711865184094e-36,2.633107345841924e-36,0.0003099173482041806,-6.887052586534992e-05,-4.404571325722362e-20,-6.19834681856446e-05,-1.6645559585741524e-22,5.8339941926178325e-21,1.3774104445474222e-05,0.0,4.235164736271502e-21,5.082197683525802e-21,0.0003787878667935729,0.0,-0.0003787878667935729,-0.0,-0.0,0.0,0.0,5.411255551734939e-05,0.0,0.0,0.0003787878667935729,-1.6690040990940912e-20,-0.00010822511103469878,-7.575757626909763e-05,-1.9452760875560117e-22,1.692711865184094e-36,4.235164736271502e-21,0.0,2.1645020751748234e-05,9.317362419797304e-21,0.00021853146608918905,-2.710505431213761e-20,-4.0657581468206416e-20,-0.00014568764891009778,-4.7246421994528285e-22,2.633107345841924e-36,5.082197683525802e-21,0.0,9.317362419797304e-21,1.4568764527211897e-05,10.0,8.0,12.0,0.03571879491209984,-0.005466928705573082,-0.00659236591309309,-0.004671370144933462,0.0002367424312978983,0.0003787878667935729,0.00026223776512779295,0.00034722223062999547,0.00032051283051259816,0.00017170330102089792,-0.005466928705573082,0.002339399652555585,0.0003787878667935729,0.00026223776512779295,-0.00017755682347342372,-8.417508070124313e-05,-5.827505810884759e-05,0.0,-3.5202278476392316e-21,1.0164395367051604e-20,-0.00659236591309309,0.0003787878667935729,0.0036196443252265453,0.00032051283051259816,5.314485993843318e-21,-0.00010822511103469878,1.6940658945086007e-21,-0.00034722223062999547,-9.157509339274839e-05,-3.3881317890172014e-21,-0.004671370144933462,0.00026223776512779295,0.00032051283051259816,0.0016391752287745476,8.14574590044047e-21,5.274528485054318e-21,-4.7679593990324065e-05,-0.0,-5.827505810884759e-05,-0.00010302197915734723,0.0002367424312978983,-0.00017755682347342372,5.314485993843318e-21,8.14574590044047e-21,1.9728535335161723e-05,-1.3350445680342072e-21,-1.7972853525962175e-21,-0.0,1.2603897002157708e-22,-4.212331378250933e-23,0.0003787878667935729,-8.417508070124313e-05,-0.00010822511103469878,5.274528485054318e-21,-1.3350445680342072e-21,2.405002487648744e-05,-1.172117452342537e-21,-0.0,-4.70197740328915e-38,2.82118644197349e-37,0.00026223776512779295,-5.827505810884759e-05,1.6940658945086007e-21,-4.7679593990324065e-05,-1.7972853525962175e-21,-1.172117452342537e-21,1.0595465028018225e-05,0.0,6.352747104407253e-22,-2.117582368135751e-21,0.00034722223062999547,0.0,-0.00034722223062999547,-0.0,-0.0,-0.0,0.0,4.960317528457381e-05,0.0,0.0,0.00032051283051259816,-3.5202278476392316e-21,-9.157509339274839e-05,-5.827505810884759e-05,1.2603897002157708e-22,-4.70197740328915e-38,6.352747104407253e-22,0.0,1.6650015822960995e-05,4.235164736271502e-22,0.00017170330102089792,1.0164395367051604e-20,-3.3881317890172014e-21,-0.00010302197915734723,-4.212331378250933e-23,2.82118644197349e-37,-2.117582368135751e-21,0.0,4.235164736271502e-22,9.365634468849748e-06,10.0,8.0,13.0,0.03327089548110962,-0.005063686519861221,-0.006106393411755562,-0.004033466335386038,0.00021853146608918905,0.00034965036320500076,0.00022477522725239396,0.00032051283051259816,0.00027472528745420277,0.00013736264372710139,-0.005063686519861221,0.0021632881835103035,0.00034965036320500076,0.00022477522725239396,-0.0001638985995668918,-7.770007505314425e-05,-4.995004928787239e-05,-0.0,6.776263578034403e-21,-8.470329472543003e-21,-0.006106393411755562,0.00034965036320500076,0.0033472480718046427,0.00027472528745420277,0.0,-9.990009857574478e-05,1.0164395367051604e-20,-0.00032051283051259816,-7.849293615436181e-05,2.0328790734103208e-20,-0.004033466335386038,0.00022477522725239396,0.00027472528745420277,0.0012966200010851026,-0.0,-0.0,-3.7462537875398993e-05,-0.0,-4.578754669637419e-05,-7.492507575079799e-05,0.00021853146608918905,-0.0001638985995668918,0.0,-0.0,1.8210956113762222e-05,0.0,0.0,0.0,0.0,0.0,0.00034965036320500076,-7.770007505314425e-05,-9.990009857574478e-05,-0.0,0.0,2.2200021703611128e-05,0.0,0.0,0.0,0.0,0.00022477522725239396,-4.995004928787239e-05,1.0164395367051604e-20,-3.7462537875398993e-05,0.0,0.0,8.325007911480498e-06,0.0,-1.6940658945086007e-21,1.2705494208814505e-21,0.00032051283051259816,-0.0,-0.00032051283051259816,-0.0,0.0,0.0,0.0,4.578754669637419e-05,0.0,0.0,0.00027472528745420277,6.776263578034403e-21,-7.849293615436181e-05,-4.578754669637419e-05,0.0,0.0,-1.6940658945086007e-21,0.0,1.308215632889187e-05,-3.3881317890172014e-21,0.00013736264372710139,-8.470329472543003e-21,2.0328790734103208e-20,-7.492507575079799e-05,0.0,0.0,1.2705494208814505e-21,0.0,-3.3881317890172014e-21,6.243756160984049e-06,10.0,8.0,14.0,0.03113771602511406,-0.0047159092500805855,-0.005687229335308075,-0.003517992328852415,0.000202922077733092,0.0003246753185521811,0.00019480519404169172,0.00029761905898340046,0.0002380952355451882,0.00011160714348079637,-0.0047159092500805855,0.002011859556660056,0.0003246753185521811,0.00019480519404169172,-0.0001521915546618402,-7.215006917249411e-05,-4.329004150349647e-05,6.018531076210112e-36,-3.3881317890172014e-21,3.3881317890172014e-21,-0.005687229335308075,0.0003246753185521811,0.0031130178831517696,0.0002380952355451882,0.0,-9.276437776861712e-05,-2.541098841762901e-21,-0.00029761905898340046,-6.80272132740356e-05,-6.776263578034403e-21,-0.003517992328852415,0.00019480519404169172,0.0002380952355451882,0.0010434617288410664,-0.0,-0.0,-2.9970029572723433e-05,5.286776251116358e-20,-3.6630037357099354e-05,-5.5803571740398183e-05,0.000202922077733092,-0.0001521915546618402,0.0,-0.0,1.6910173144424334e-05,0.0,0.0,0.0,0.0,0.0,0.0003246753185521811,-7.215006917249411e-05,-9.276437776861712e-05,-0.0,0.0,2.0614306777133606e-05,0.0,0.0,0.0,0.0,0.00019480519404169172,-4.329004150349647e-05,-2.541098841762901e-21,-2.9970029572723433e-05,0.0,0.0,6.660006874881219e-06,-9.4039548065783e-37,6.352747104407253e-22,-1.0587911840678754e-21,0.00029761905898340046,6.018531076210112e-36,-0.00029761905898340046,5.286776251116358e-20,0.0,0.0,-9.4039548065783e-37,4.251700738677755e-05,-1.510507569558408e-20,-1.128474576789396e-36,0.0002380952355451882,-3.3881317890172014e-21,-6.80272132740356e-05,-3.6630037357099354e-05,0.0,0.0,6.352747104407253e-22,-1.510507569558408e-20,1.0465724699315615e-05,8.470329472543003e-22,0.00011160714348079637,3.3881317890172014e-21,-6.776263578034403e-21,-5.5803571740398183e-05,0.0,0.0,-1.0587911840678754e-21,-1.128474576789396e-36,8.470329472543003e-22,4.292582616471918e-06,10.0,8.0,15.0,0.029262106865644455,-0.004412878770381212,-0.005321969743818045,-0.0030954768881201744,0.00018939393339678645,0.0003030303050763905,0.00017045454296749085,0.00027777778450399637,0.00020833333837799728,9.191176650347188e-05,-0.004412878770381212,0.001880260999314487,0.0003030303050763905,0.00017045454296749085,-0.00014204545004758984,-6.73400645609945e-05,-3.787878813454881e-05,2.024685461702071e-19,1.1773757966834775e-19,5.251604272976662e-20,-0.005321969743818045,0.0003030303050763905,0.002909451723098755,0.00020833333837799728,2.92543461320677e-19,-8.658008300699294e-05,4.235164736271502e-21,-0.00027777778450399637,-5.952380888629705e-05,1.1180834903756764e-19,-0.0030954768881201744,0.00017045454296749085,0.00020833333837799728,0.0008522788411937654,1.715864817835758e-19,2.7002172107864194e-20,-2.4350649255211465e-05,2.8808782710176597e-19,-2.9761904443148524e-05,-4.242081558913924e-05,0.00018939393339678645,-0.00014204545004758984,2.92543461320677e-19,1.715864817835758e-19,1.578282899572514e-05,-3.0784239373983755e-21,-1.731613351190616e-21,-1.985878735628543e-20,-1.4518609488045386e-20,-6.541189591601273e-21,0.0003030303050763905,-6.73400645609945e-05,-8.658008300699294e-05,2.7002172107864194e-20,-3.0784239373983755e-21,1.924001844599843e-05,-1.8044716861161636e-21,-2.7775707149636317e-21,-1.1903874204203576e-21,-1.0511209822013284e-21,0.00017045454296749085,-3.787878813454881e-05,4.235164736271502e-21,-2.4350649255211465e-05,-1.731613351190616e-21,-1.8044716861161636e-21,5.4112551879370585e-06,-2.002566700590017e-21,2.4352197233561135e-21,1.4823076576950256e-21,0.00027777778450399637,2.024685461702071e-19,-0.00027777778450399637,2.8808782710176597e-19,-1.985878735628543e-20,-2.7775707149636317e-21,-2.002566700590017e-21,3.968253804487176e-05,-1.2344202881442797e-20,-1.7792036206143344e-20,0.00020833333837799728,1.1773757966834775e-19,-5.952380888629705e-05,-2.9761904443148524e-05,-1.4518609488045386e-20,-1.1903874204203576e-21,2.4352197233561135e-21,-1.2344202881442797e-20,8.50340165925445e-06,1.0587911840678754e-21,9.191176650347188e-05,5.251604272976662e-20,1.1180834903756764e-19,-4.242081558913924e-05,-6.541189591601273e-21,-1.0511209822013284e-21,1.4823076576950256e-21,-1.7792036206143344e-20,1.0587911840678754e-21,3.030058223885135e-06,10.0,8.0,16.0,0.027599988505244255,-0.004146473947912455,-0.0050008357502520084,-0.00274481950327754,0.00017755682347342372,0.0002840909000951797,0.00015040107246022671,0.0002604166802484542,0.00018382353300694376,7.659313996555284e-05,-0.004146473947912455,0.0017648335779085755,0.0002840909000951797,0.00015040107246022671,-0.0001331676176050678,-6.313131598290056e-05,-3.342246054671705e-05,9.027796614315168e-36,5.082197683525802e-21,-5.082197683525802e-21,-0.0050008357502520084,0.0002840909000951797,0.002730893436819315,0.00018382353300694376,0.0,-8.116882963804528e-05,6.776263578034403e-21,-0.0002604166802484542,-5.25210089108441e-05,1.1858461261560205e-20,-0.00274481950327754,0.00015040107246022671,0.00018382353300694376,0.000705174112226814,-0.0,-0.0,-2.0053475964232348e-05,-4.081702376245028e-20,-2.4509803552064113e-05,-3.282563193351962e-05,0.00017755682347342372,-0.0001331676176050678,0.0,-0.0,1.4796401956118643e-05,0.0,0.0,0.0,0.0,0.0,0.0002840909000951797,-6.313131598290056e-05,-8.116882963804528e-05,-0.0,0.0,1.803751729312353e-05,0.0,0.0,0.0,0.0,0.00015040107246022671,-3.342246054671705e-05,6.776263578034403e-21,-2.0053475964232348e-05,0.0,0.0,4.456328042579116e-06,-1.316553672920962e-36,-8.470329472543003e-22,5.293955920339377e-22,0.0002604166802484542,9.027796614315168e-36,-0.0002604166802484542,-4.081702376245028e-20,0.0,0.0,-1.316553672920962e-36,3.720238237292506e-05,1.1662006673872428e-20,-1.88079096131566e-36,0.00018382353300694376,5.082197683525802e-21,-5.25210089108441e-05,-2.4509803552064113e-05,0.0,0.0,-8.470329472543003e-22,1.1662006673872428e-20,7.002801339694997e-06,-1.0587911840678754e-21,7.659313996555284e-05,-5.082197683525802e-21,1.1858461261560205e-20,-3.282563193351962e-05,0.0,0.0,5.293955920339377e-22,-1.88079096131566e-36,-1.0587911840678754e-21,2.188375447076396e-06,10.0,9.0,3.0,0.09740740805864334,-0.017474748194217682,-0.019090909510850906,-0.04363636299967766,0.0008417508215643466,0.001212121220305562,0.0030303029343485832,0.001010101055726409,0.0033333334140479565,0.0055555556900799274,-0.017474748194217682,0.007881593890488148,0.001212121220305562,0.0030303029343485832,-0.0006313131307251751,-0.000269360258243978,-0.0006734006456099451,-9.948762306056101e-20,7.546377614050508e-21,-8.217301524617855e-34,-0.019090909510850906,0.001212121220305562,0.009678931906819344,0.0033333334140479565,-8.251856047807404e-21,-0.0003030303050763905,0.0,-0.0008658008882775903,-0.0008333333535119891,-8.546344889294789e-18,-0.04363636299967766,0.0030303029343485832,0.0033333334140479565,0.09919191896915436,-6.820999993565457e-21,2.4106249941820124e-20,-0.0030303029343485832,-2.580818193621319e-18,-0.0033333334140479565,-0.03333333507180214,0.0008417508215643466,-0.0006313131307251751,-8.251856047807404e-21,-6.820999993565457e-21,7.014590664766729e-05,-3.163859820109669e-21,0.0,6.40777097296176e-22,1.705249998391364e-21,6.209247572996965e-36,0.001212121220305562,-0.000269360258243978,-0.0003030303050763905,2.4106249941820124e-20,-3.163859820109669e-21,6.73400645609945e-05,0.0,2.4871905765140252e-20,-6.026562485455031e-21,1.9035785621548232e-34,0.0030303029343485832,-0.0006734006456099451,0.0,-0.0030303029343485832,0.0,0.0,0.0006734006456099451,0.0,0.0,-0.0,0.001010101055726409,-9.948762306056101e-20,-0.0008658008882775903,-2.580818193621319e-18,6.40777097296176e-22,2.4871905765140252e-20,0.0,0.00010822511103469878,1.6458850795198303e-19,9.612320550572994e-19,0.0033333334140479565,7.546377614050508e-21,-0.0008333333535119891,-0.0033333334140479565,1.705249998391364e-21,-6.026562485455031e-21,0.0,1.6458850795198303e-19,0.0008333333535119891,8.564883454388174e-19,0.0055555556900799274,-8.217301524617855e-34,-8.546344889294789e-18,-0.03333333507180214,6.209247572996965e-36,1.9035785621548232e-34,-0.0,9.612320550572994e-19,8.564883454388174e-19,0.01666666753590107,10.0,9.0,4.0,0.07932323217391968,-0.01356060616672039,-0.014818182215094566,-0.027848483994603157,0.0006313131307251751,0.0009090909152291715,0.001818181830458343,0.0007575757335871458,0.0020000000949949026,0.0027777778450399637,-0.01356060616672039,0.006012205500155687,0.0009090909152291715,0.001818181830458343,-0.0004734848625957966,-0.00020202020823489875,-0.0004040404164697975,-7.198392585430966e-20,-7.825791490347517e-22,-4.1312987731939305e-34,-0.014818182215094566,0.0009090909152291715,0.007384199183434248,0.0020000000949949026,2.1431228620180327e-20,-0.00022727272880729288,3.7068980357473715e-21,-0.0006493506371043622,-0.0005000000237487257,-3.0511748034100502e-18,-0.027848483994603157,0.001818181830458343,0.0020000000949949026,0.03801010176539421,5.0898138843923987e-20,5.040385884603877e-21,-0.001212121220305562,-1.423725796135831e-18,-0.0013333333190530539,-0.008333333767950535,0.0006313131307251751,-0.0004734848625957966,2.1431228620180327e-20,5.0898138843923987e-20,5.260942634777166e-05,-7.366886994191191e-22,-1.1353994986795797e-20,-2.1048248843329677e-21,4.870953241286128e-23,6.3781294631074425e-37,0.0009090909152291715,-0.00020202020823489875,-0.00022727272880729288,5.040385884603877e-21,-7.366886994191191e-22,5.0505052058724687e-05,-1.1357114079706169e-21,2.2501757044775932e-20,1.7578870704583727e-23,1.0116779631869224e-34,0.001818181830458343,-0.0004040404164697975,3.7068980357473715e-21,-0.001212121220305562,-1.1353994986795797e-20,-1.1357114079706169e-21,0.000269360258243978,1.3476143660504202e-22,1.594933240781008e-22,1.5098693653617713e-36,0.0007575757335871458,-7.198392585430966e-20,-0.0006493506371043622,-1.423725796135831e-18,-2.1048248843329677e-21,2.2501757044775932e-20,1.3476143660504202e-22,8.116882963804528e-05,1.0345642271489336e-19,3.364312089302971e-19,0.0020000000949949026,-7.825791490347517e-22,-0.0005000000237487257,-0.0013333333190530539,4.870953241286128e-23,1.7578870704583727e-23,1.594933240781008e-22,1.0345642271489336e-19,0.00033333332976326346,2.3981674602865077e-19,0.0027777778450399637,-4.1312987731939305e-34,-3.0511748034100502e-18,-0.008333333767950535,6.3781294631074425e-37,1.0116779631869224e-34,1.5098693653617713e-36,3.364312089302971e-19,2.3981674602865077e-19,0.0027777778450399637,10.0,9.0,5.0,0.06701298803091049,-0.011090909130871296,-0.012121211737394333,-0.01935930736362934,0.0005050505278632045,0.0007272727089002728,0.001212121220305562,0.000606060610152781,0.0013333333190530539,0.0015873016091063619,-0.011090909130871296,0.004863636568188667,0.0007272727089002728,0.001212121220305562,-0.0003787878667935729,-0.0001616161607671529,-0.000269360258243978,5.421010862427522e-20,-6.776263578034403e-21,1.635469537690746e-34,-0.012121211737394333,0.0007272727089002728,0.005974025931209326,0.0013333333190530539,-5.6263419705050456e-21,-0.0001818181772250682,-1.3075703981062084e-21,-0.0005194804980419576,-0.00033333332976326346,-1.514029827391281e-18,-0.01935930736362934,0.001212121220305562,0.0013333333190530539,0.019203463569283485,-5.04931967755752e-21,-1.911904070383154e-20,-0.000606060610152781,-9.75781955236954e-19,-0.0006666666595265269,-0.0031746032182127237,0.0005050505278632045,-0.0003787878667935729,-5.6263419705050456e-21,-5.04931967755752e-21,4.2087540350621566e-05,1.893606051673721e-21,1.989766201779794e-21,-2.8588023855686553e-22,-4.576702380731301e-22,-6.832443429291297e-37,0.0007272727089002728,-0.0001616161607671529,-0.0001818181772250682,-1.911904070383154e-20,1.893606051673721e-21,4.0404040191788226e-05,1.7432152862958823e-21,-1.6940658945086007e-20,3.3881317890172014e-21,-3.9189962856379563e-35,0.001212121220305562,-0.000269360258243978,-1.3075703981062084e-21,-0.000606060610152781,1.989766201779794e-21,1.7432152862958823e-21,0.000134680129121989,-7.0660626503764655e-22,-6.356098437968121e-23,-7.602114794404735e-38,0.000606060610152781,5.421010862427522e-20,-0.0005194804980419576,-9.75781955236954e-19,-2.8588023855686553e-22,-1.6940658945086007e-20,-7.0660626503764655e-22,6.49350622552447e-05,7.792703114739563e-20,1.6478263690199157e-19,0.0013333333190530539,-6.776263578034403e-21,-0.00033333332976326346,-0.0006666666595265269,-4.576702380731301e-22,3.3881317890172014e-21,-6.356098437968121e-23,7.792703114739563e-20,0.00016666666488163173,9.788438547471985e-20,0.0015873016091063619,1.635469537690746e-34,-1.514029827391281e-18,-0.0031746032182127237,-6.832443429291297e-37,-3.9189962856379563e-35,-7.602114794404735e-38,1.6478263690199157e-19,9.788438547471985e-20,0.0007936508045531809,10.0,9.0,6.0,0.058054354041814804,-0.009386724792420864,-0.010259740054607391,-0.01425324659794569,0.0004208754107821733,0.000606060610152781,0.0008658008882775903,0.0005050505278632045,0.0009523809421807528,0.0009920635493472219,-0.009386724792420864,0.004085096996277571,0.000606060610152781,0.0008658008882775903,-0.00031565656536258757,-0.000134680129121989,-0.00019240019901189953,-5.421010862427522e-20,-3.3881317890172014e-21,-1.148892247855832e-34,-0.010259740054607391,0.000606060610152781,0.005018037743866444,0.0009523809421807528,1.5366807475571615e-21,-0.00015151515253819525,6.368060850952637e-21,-0.00043290044413879514,-0.0002380952355451882,-8.75424267418958e-19,-0.01425324659794569,0.0008658008882775903,0.0009523809421807528,0.011157647706568241,4.397787717685217e-21,1.4351917852383354e-21,-0.00034632033202797174,-4.87890977618477e-19,-0.0003809523768723011,-0.0014880952658131719,0.0004208754107821733,-0.00031565656536258757,1.5366807475571615e-21,4.397787717685217e-21,3.5072953323833644e-05,-2.0713283104407965e-21,-2.223683225876665e-21,1.0716070309558705e-21,1.3164727880849362e-22,1.1588814530602696e-36,0.000606060610152781,-0.000134680129121989,-0.00015151515253819525,1.4351917852383354e-21,-2.0713283104407965e-21,3.367003228049725e-05,-1.0613709737981144e-21,1.1858461261560205e-20,0.0,2.654070806741464e-35,0.0008658008882775903,-0.00019240019901189953,6.368060850952637e-21,-0.00034632033202797174,-2.223683225876665e-21,-1.0613709737981144e-21,7.696007378399372e-05,-1.8887787530482967e-22,-4.4572780535762126e-23,-1.0110558099863686e-36,0.0005050505278632045,-5.421010862427522e-20,-0.00043290044413879514,-4.87890977618477e-19,1.0716070309558705e-21,1.1858461261560205e-20,-1.8887787530482967e-22,5.411255551734939e-05,3.3881317890172014e-21,9.440671784674232e-20,0.0009523809421807528,-3.3881317890172014e-21,-0.0002380952355451882,-0.0003809523768723011,1.3164727880849362e-22,0.0,-4.4572780535762126e-23,3.3881317890172014e-21,9.523809421807528e-05,4.806822472140937e-20,0.0009920635493472219,-1.148892247855832e-34,-8.75424267418958e-19,-0.0014880952658131719,1.1588814530602696e-36,2.654070806741464e-35,-1.0110558099863686e-36,9.440671784674232e-20,4.806822472140937e-20,0.00029761905898340046,10.0,9.0,7.0,0.05122895538806915,-0.00813852809369564,-0.00889610406011343,-0.010937950573861599,0.0003607503604143858,0.0005194804980419576,0.0006493506371043622,0.00043290044413879514,0.0007142857066355646,0.0006613756413571537,-0.00813852809369564,0.003522126004099846,0.0005194804980419576,0.0006493506371043622,-0.00027056277031078935,-0.0001154401179519482,-0.00014430013834498823,-4.743384504624082e-20,-6.776263578034403e-21,-6.195584173084209e-35,-0.00889610406011343,0.0005194804980419576,0.004326685331761837,0.0007142857066355646,2.711897905764463e-21,-0.0001298701245104894,0.0,-0.0003710575110744685,-0.00017857142665889114,-5.555698096630117e-19,-0.010937950573861599,0.0006493506371043622,0.0007142857066355646,0.007085137069225311,1.099344925288638e-20,-3.775928035010769e-21,-0.00021645022206939757,-5.149960319306146e-19,-0.0002380952355451882,-0.0007936508045531809,0.0003607503604143858,-0.00027056277031078935,2.711897905764463e-21,1.099344925288638e-20,3.006253064086195e-05,-6.476474825572502e-23,-2.199615622394675e-21,-1.850421306610575e-22,-2.737946875404879e-22,-0.0,0.0005194804980419576,-0.0001154401179519482,-0.0001298701245104894,-3.775928035010769e-21,-6.476474825572502e-23,2.886002948798705e-05,0.0,1.1858461261560205e-20,1.6940658945086007e-21,1.5488960432710523e-35,0.0006493506371043622,-0.00014430013834498823,0.0,-0.00021645022206939757,-2.199615622394675e-21,0.0,4.810004975297488e-05,0.0,0.0,-0.0,0.00043290044413879514,-4.743384504624082e-20,-0.0003710575110744685,-5.149960319306146e-19,-1.850421306610575e-22,1.1858461261560205e-20,0.0,4.638218888430856e-05,4.0657581468206416e-20,5.950484002643887e-20,0.0007142857066355646,-6.776263578034403e-21,-0.00017857142665889114,-0.0002380952355451882,-2.737946875404879e-22,1.6940658945086007e-21,0.0,4.0657581468206416e-20,5.952380888629705e-05,2.6510353456977465e-20,0.0006613756413571537,-6.195584173084209e-35,-5.555698096630117e-19,-0.0007936508045531809,-0.0,1.5488960432710523e-35,-0.0,5.950484002643887e-20,2.6510353456977465e-20,0.00013227513409219682,10.0,9.0,8.0,0.04585016891360283,-0.007184343412518501,-0.007853535003960133,-0.00866161659359932,0.00031565656536258757,0.00045454545761458576,0.0005050505278632045,0.0003787878667935729,0.0005555555690079927,0.00046296295477077365,-0.007184343412518501,0.003095889464020729,0.00045454545761458576,0.0005050505278632045,-0.0002367424312978983,-0.00010101010411744937,-0.00011223344336031005,-4.743384504624082e-20,-6.776263578034403e-21,-4.4021256117696184e-35,-0.007853535003960133,0.00045454545761458576,0.0038032105658203363,0.0005555555690079927,6.505946769965755e-21,-0.00011363636440364644,2.463569642484878e-21,-0.0003246753185521811,-0.00013888889225199819,-3.7592380990329917e-19,-0.00866161659359932,0.0005050505278632045,0.0005555555690079927,0.004789562430232763,6.048622923871551e-21,-2.581479230484197e-21,-0.00014430013834498823,-2.846030702774449e-19,-0.00015873015217948705,-0.00046296295477077365,0.00031565656536258757,-0.0002367424312978983,6.505946769965755e-21,6.048622923871551e-21,2.630471317388583e-05,-1.3950543404322986e-21,-1.24390303741118e-21,1.9264137922234532e-23,-1.1276481388031036e-22,-0.0,0.00045454545761458576,-0.00010101010411744937,-0.00011363636440364644,-2.581479230484197e-21,-1.3950543404322986e-21,2.5252526029362343e-05,-5.474599261618726e-22,1.1858461261560205e-20,1.6940658945086007e-21,1.1005314029424046e-35,0.0005050505278632045,-0.00011223344336031005,2.463569642484878e-21,-0.00014430013834498823,-1.24390303741118e-21,-5.474599261618726e-22,3.2066698622656986e-05,-2.350988701644575e-37,-1.1754943508222875e-38,-0.0,0.0003787878667935729,-4.743384504624082e-20,-0.0003246753185521811,-2.846030702774449e-19,1.9264137922234532e-23,1.1858461261560205e-20,-2.350988701644575e-37,4.058441481902264e-05,1.6940658945086007e-21,4.0051335627387474e-20,0.0005555555690079927,-6.776263578034403e-21,-0.00013888889225199819,-0.00015873015217948705,-1.1276481388031036e-22,1.6940658945086007e-21,-1.1754943508222875e-38,1.6940658945086007e-21,3.968253804487176e-05,1.586089582443307e-20,0.00046296295477077365,-4.4021256117696184e-35,-3.7592380990329917e-19,-0.00046296295477077365,-0.0,1.1005314029424046e-35,-0.0,4.0051335627387474e-20,1.586089582443307e-20,6.613756704609841e-05,10.0,9.0,9.0,0.041499439626932144,-0.0064309765584766865,-0.0070303031243383884,-0.0070303031243383884,0.00028058362659066916,0.0004040404164697975,0.0004040404164697975,0.00033670032280497253,0.0004444444493856281,0.00033670032280497253,-0.0064309765584766865,0.0027618780732154846,0.0004040404164697975,0.0004040404164697975,-0.00021043770539108664,-8.978675759863108e-05,-8.978675759863108e-05,-3.7269449679189215e-20,-4.405920987214016e-21,-4.743384504624082e-20,-0.0070303031243383884,0.0004040404164697975,0.0033929774072021246,0.0004444444493856281,-3.3004645785256102e-21,-0.00010101010411744937,-3.3881317890172014e-21,-0.00028860027668997645,-0.00011111111234640703,-2.642742795433417e-19,-0.0070303031243383884,0.0004040404164697975,0.0004444444493856281,0.0033929774072021246,-1.3028025985256995e-21,4.249270427537518e-21,-0.00010101010411744937,-3.4601006382123775e-19,-0.00011111111234640703,-0.00028860027668997645,0.00028058362659066916,-0.00021043770539108664,-3.3004645785256102e-21,-1.3028025985256995e-21,2.3381968276225962e-05,7.67481954274181e-23,-1.0456391940818348e-21,2.19280561970273e-22,2.650370693150863e-22,5.725782671260683e-22,0.0004040404164697975,-8.978675759863108e-05,-0.00010101010411744937,4.249270427537518e-21,7.67481954274181e-23,2.244668939965777e-05,-2.853209172424021e-22,8.470329472543003e-21,-5.626689119790441e-22,-4.1754685392386793e-22,0.0004040404164697975,-8.978675759863108e-05,-3.3881317890172014e-21,-0.00010101010411744937,-1.0456391940818348e-21,-2.853209172424021e-22,2.244668939965777e-05,-2.117582368135751e-22,8.470329472543003e-22,1.1858461261560205e-20,0.00033670032280497253,-3.7269449679189215e-20,-0.00028860027668997645,-3.4601006382123775e-19,2.19280561970273e-22,8.470329472543003e-21,-2.117582368135751e-22,3.607503458624706e-05,3.218725199566341e-20,2.710505431213761e-20,0.0004444444493856281,-4.405920987214016e-21,-0.00011111111234640703,-0.00011111111234640703,2.650370693150863e-22,-5.626689119790441e-22,8.470329472543003e-22,3.218725199566341e-20,2.7777778086601757e-05,1.1858461261560205e-20,0.00033670032280497253,-4.743384504624082e-20,-2.642742795433417e-19,-0.00028860027668997645,5.725782671260683e-22,-4.1754685392386793e-22,1.1858461261560205e-20,2.710505431213761e-20,1.1858461261560205e-20,3.607503458624706e-05,10.0,9.0,10.0,0.03790633752942085,-0.005820936523377895,-0.00636363634839654,-0.005820936523377895,0.00025252526393160224,0.0003636363544501364,0.00033057850669138134,0.0003030303050763905,0.0003636363544501364,0.00025252526393160224,-0.005820936523377895,0.0024930364452302456,0.0003636363544501364,0.00033057850669138134,-0.00018939393339678645,-8.080808038357645e-05,-7.346189522650093e-05,4.404571325722362e-20,2.5196983706905757e-21,6.776263578034403e-21,-0.00636363634839654,0.0003636363544501364,0.0030627704691141844,0.0003636363544501364,1.9803685333703322e-21,-9.09090886125341e-05,-1.6940658945086007e-21,-0.0002597402490209788,-9.09090886125341e-05,-1.9651164376299768e-19,-0.005820936523377895,0.00033057850669138134,0.0003636363544501364,0.0024930364452302456,1.8019503604453325e-21,-4.840028947168378e-22,-7.346189522650093e-05,-2.6335471319612416e-19,-8.080808038357645e-05,-0.00018939393339678645,0.00025252526393160224,-0.00018939393339678645,1.9803685333703322e-21,1.8019503604453325e-21,2.1043770175310783e-05,-5.894788357812978e-23,4.442563210230072e-22,-1.6842252270583158e-22,-5.7700397875275e-23,-3.6765123758557064e-22,0.0003636363544501364,-8.080808038357645e-05,-9.09090886125341e-05,-4.840028947168378e-22,-5.894788357812978e-23,2.0202020095894113e-05,-3.867752517229326e-23,-1.0164395367051604e-20,1.5688236172033116e-23,3.28322444627145e-22,0.00033057850669138134,-7.346189522650093e-05,-1.6940658945086007e-21,-7.346189522650093e-05,4.442563210230072e-22,-3.867752517229326e-23,1.632486419111956e-05,-1.0587911840678754e-22,0.0,-1.6940658945086007e-21,0.0003030303050763905,4.404571325722362e-20,-0.0002597402490209788,-2.6335471319612416e-19,-1.6842252270583158e-22,-1.0164395367051604e-20,-1.0587911840678754e-22,3.246753112762235e-05,2.0328790734103208e-20,2.0752307207730358e-20,0.0003636363544501364,2.5196983706905757e-21,-9.09090886125341e-05,-8.080808038357645e-05,-5.7700397875275e-23,1.5688236172033116e-23,0.0,2.0328790734103208e-20,2.0202020095894113e-05,5.929230630780102e-21,0.00025252526393160224,6.776263578034403e-21,-1.9651164376299768e-19,-0.00018939393339678645,-3.6765123758557064e-22,3.28322444627145e-22,-1.6940658945086007e-21,2.0752307207730358e-20,5.929230630780102e-21,2.1043770175310783e-05,10.0,9.0,11.0,0.03488804027438164,-0.005316804628819227,-0.005812671966850758,-0.0048993430100381374,0.00022956840984988958,0.00033057850669138134,0.0002754821034613997,0.0002754821034613997,0.0003030303050763905,0.00019425019854679704,-0.005316804628819227,0.002271962119266391,0.00033057850669138134,0.0002754821034613997,-0.000172176311025396,-7.346189522650093e-05,-6.12182411714457e-05,8.131516293641283e-20,4.089377384483298e-21,-2.710505431213761e-20,-0.005812671966850758,0.00033057850669138134,0.0027912238147109747,0.0003030303050763905,-3.042610813504594e-21,-8.264462667284533e-05,0.0,-0.0002361275110160932,-7.575757626909763e-05,-1.4907779871675686e-19,-0.0048993430100381374,0.0002754821034613997,0.0003030303050763905,0.00188636954408139,1.8714529189453935e-21,2.0327892871553547e-21,-5.509641778189689e-05,-1.495489297743941e-19,-6.060606028768234e-05,-0.00012950012751389295,0.00022956840984988958,-0.000172176311025396,-3.042610813504594e-21,1.8714529189453935e-21,1.913070082082413e-05,1.2444306023410428e-22,-2.5029498817960984e-22,3.5555162591241835e-22,-1.1798832262854733e-22,-2.5340635656399738e-23,0.00033057850669138134,-7.346189522650093e-05,-8.264462667284533e-05,2.0327892871553547e-21,1.2444306023410428e-22,1.8365473806625232e-05,9.94456863565588e-23,-2.0328790734103208e-20,-9.123432590903017e-22,2.2207350822798987e-22,0.0002754821034613997,-6.12182411714457e-05,0.0,-5.509641778189689e-05,-2.5029498817960984e-22,9.94456863565588e-23,1.224364859808702e-05,0.0,-2.117582368135751e-22,5.505714157152952e-21,0.0002754821034613997,8.131516293641283e-20,-0.0002361275110160932,-1.495489297743941e-19,3.5555162591241835e-22,-2.0328790734103208e-20,0.0,2.951593887701165e-05,-1.6940658945086007e-21,1.6093625997831706e-20,0.0003030303050763905,4.089377384483298e-21,-7.575757626909763e-05,-6.060606028768234e-05,-1.1798832262854733e-22,-9.123432590903017e-22,-2.117582368135751e-22,-1.6940658945086007e-21,1.5151515071920585e-05,3.3881317890172014e-21,0.00019425019854679704,-2.710505431213761e-20,-1.4907779871675686e-19,-0.00012950012751389295,-2.5340635656399738e-23,2.2207350822798987e-22,5.505714157152952e-21,1.6093625997831706e-20,3.3881317890172014e-21,1.2950013115187176e-05,10.0,9.0,12.0,0.032316386699676514,-0.004893162287771702,-0.005349650513380766,-0.004180819261819124,0.00021043770539108664,0.0003030303050763905,0.00023310023243539035,0.00025252526393160224,0.00025641024694778025,0.00015262515807989985,-0.004893162287771702,0.0020869486033916473,0.0003030303050763905,0.00023310023243539035,-0.00015782828268129379,-6.73400645609945e-05,-5.18000524607487e-05,1.0092078179290128e-35,-8.613363333740525e-23,5.082197683525802e-21,-0.005349650513380766,0.0003030303050763905,0.0025639638770371675,0.00025641024694778025,-3.9020271351659856e-22,-7.575757626909763e-05,0.0,-0.00021645022206939757,-6.410256173694506e-05,-9.825582188149884e-20,-0.004180819261819124,0.00023310023243539035,0.00025641024694778025,0.0014622246380895376,3.93600727448217e-21,-0.0,-4.23818601120729e-05,-1.336218126489299e-19,-4.662004721467383e-05,-9.157509339274839e-05,0.00021043770539108664,-0.00015782828268129379,-3.9020271351659856e-22,3.93600727448217e-21,1.7536476661916822e-05,0.0,-7.515889566324232e-22,-2.208524572230221e-38,7.094595307556203e-23,-7.069603562990077e-23,0.0003030303050763905,-6.73400645609945e-05,-7.575757626909763e-05,-0.0,0.0,1.6835016140248626e-05,0.0,0.0,0.0,0.0,0.00023310023243539035,-5.18000524607487e-05,0.0,-4.23818601120729e-05,-7.515889566324232e-22,0.0,9.4181914391811e-06,-7.52316384526264e-37,2.117582368135751e-22,-4.235164736271502e-22,0.00025252526393160224,1.0092078179290128e-35,-0.00021645022206939757,-1.336218126489299e-19,-2.208524572230221e-38,0.0,-7.52316384526264e-37,2.7056277758674696e-05,0.0,1.2147438101025312e-20,0.00025641024694778025,-8.613363333740525e-23,-6.410256173694506e-05,-4.662004721467383e-05,7.094595307556203e-23,0.0,2.117582368135751e-22,0.0,1.1655011803668458e-05,0.0,0.00015262515807989985,5.082197683525802e-21,-9.825582188149884e-20,-9.157509339274839e-05,-7.069603562990077e-23,0.0,-4.235164736271502e-22,1.2147438101025312e-20,0.0,8.325007911480498e-06,10.0,9.0,13.0,0.030098790302872658,-0.004532134626060724,-0.004955044947564602,-0.0036097236443310976,0.00019425019854679704,0.0002797202905640006,0.00019980019715148956,0.00023310023243539035,0.00021978022414259613,0.00012210012937430292,-0.004532134626060724,0.0019298294791951776,0.0002797202905640006,0.00019980019715148956,-0.00014568764891009778,-6.216006295289844e-05,-4.4400043407222256e-05,-1.8055593228630336e-35,1.6940658945086007e-21,-1.0164395367051604e-20,-0.004955044947564602,0.0002797202905640006,0.002370962407439947,0.00021978022414259613,0.0,-6.993007264100015e-05,8.470329472543003e-22,-0.00019980019715148956,-5.494505603564903e-05,-7.453889935837843e-20,-0.0036097236443310976,0.00019980019715148956,0.00021978022414259613,0.0011566211469471455,-0.0,-0.0,-3.330003164592199e-05,-1.6848308107103583e-19,-3.6630037357099354e-05,-6.660006329184398e-05,0.00019425019854679704,-0.00014568764891009778,0.0,-0.0,1.618751593923662e-05,0.0,0.0,0.0,0.0,0.0,0.0002797202905640006,-6.216006295289844e-05,-6.993007264100015e-05,-0.0,0.0,1.554001573822461e-05,0.0,0.0,0.0,0.0,0.00019980019715148956,-4.4400043407222256e-05,8.470329472543003e-22,-3.330003164592199e-05,0.0,0.0,7.400007234537043e-06,3.76158192263132e-36,0.0,2.117582368135751e-21,0.00023310023243539035,-1.8055593228630336e-35,-0.00019980019715148956,-1.6848308107103583e-19,0.0,0.0,3.76158192263132e-36,2.4975024643936194e-05,1.3312617313447151e-20,9.60271792070179e-21,0.00021978022414259613,1.6940658945086007e-21,-5.494505603564903e-05,-3.6630037357099354e-05,0.0,0.0,0.0,1.3312617313447151e-20,9.157509339274839e-06,0.0,0.00012210012937430292,-1.0164395367051604e-20,-7.453889935837843e-20,-6.660006329184398e-05,0.0,0.0,2.117582368135751e-21,9.60271792070179e-21,0.0,5.550005425902782e-06,10.0,9.0,14.0,0.028166666626930237,-0.004220779053866863,-0.004614718724042177,-0.0031482684426009655,0.0001803751802071929,0.0002597402490209788,0.00017316016601398587,0.00021645022206939757,0.00019047618843615055,9.920635056914762e-05,-0.004220779053866863,0.0017947329906746745,0.0002597402490209788,0.00017316016601398587,-0.00013528138515539467,-5.77200589759741e-05,-3.848003689199686e-05,-5.115751414778595e-35,0.0,-2.541098841762901e-20,-0.004614718724042177,0.0002597402490209788,0.002205009339377284,0.00019047618843615055,0.0,-6.49350622552447e-05,0.0,-0.00018552875553723425,-4.761904710903764e-05,-6.268043809681823e-20,-0.0031482684426009655,0.00017316016601398587,0.00019047618843615055,0.0009307775762863457,-0.0,-0.0,-2.6640027499524876e-05,-1.3997191019043757e-19,-2.930402843048796e-05,-4.960317528457381e-05,0.0001803751802071929,-0.00013528138515539467,0.0,-0.0,1.5031265320430975e-05,0.0,0.0,0.0,0.0,0.0,0.0002597402490209788,-5.77200589759741e-05,-6.49350622552447e-05,-0.0,0.0,1.4430014743993524e-05,0.0,0.0,0.0,0.0,0.00017316016601398587,-3.848003689199686e-05,0.0,-2.6640027499524876e-05,0.0,0.0,5.920006060478045e-06,7.899322037525772e-36,0.0,4.0234064994579266e-21,0.00021645022206939757,-5.115751414778595e-35,-0.00018552875553723425,-1.3997191019043757e-19,0.0,0.0,7.899322037525772e-36,2.319109444215428e-05,9.889372353661927e-21,7.724185902832463e-21,0.00019047618843615055,0.0,-4.761904710903764e-05,-2.930402843048796e-05,0.0,0.0,0.0,9.889372353661927e-21,7.32600710762199e-06,2.117582368135751e-22,9.920635056914762e-05,-2.541098841762901e-20,-6.268043809681823e-20,-4.960317528457381e-05,0.0,0.0,4.0234064994579266e-21,7.724185902832463e-21,2.117582368135751e-22,3.815629042946966e-06,10.0,9.0,15.0,0.02646811306476593,-0.003949495032429695,-0.00431818189099431,-0.002770053455606103,0.00016835016140248626,0.00024242424115072936,0.00015151515253819525,0.00020202020823489875,0.00016666666488163173,8.169934881152585e-05,-0.003949495032429695,0.0016773288371041417,0.00024242424115072936,0.00015151515253819525,-0.00012626263196580112,-5.3872052376391366e-05,-3.367003228049725e-05,6.018531076210112e-36,0.0,-1.6940658945086007e-21,-0.00431818189099431,0.00024242424115072936,0.0020607863552868366,0.00016666666488163173,0.0,-6.060606028768234e-05,8.470329472543003e-22,-0.00017316016601398587,-4.166666622040793e-05,1.0164395367051604e-19,-0.002770053455606103,0.00015151515253819525,0.00016666666488163173,0.0007602266850881279,-0.0,-0.0,-2.1645020751748234e-05,2.365838657008521e-19,-2.380952355451882e-05,-3.77073920390103e-05,0.00016835016140248626,-0.00012626263196580112,0.0,-0.0,1.4029180420038756e-05,0.0,0.0,0.0,0.0,0.0,0.00024242424115072936,-5.3872052376391366e-05,-6.060606028768234e-05,-0.0,0.0,1.3468013094097842e-05,0.0,0.0,0.0,0.0,0.00015151515253819525,-3.367003228049725e-05,8.470329472543003e-22,-2.1645020751748234e-05,0.0,0.0,4.8100046114996076e-06,0.0,1.0587911840678754e-22,0.0,0.00020202020823489875,6.018531076210112e-36,-0.00017316016601398587,2.365838657008521e-19,0.0,0.0,0.0,2.1645020751748234e-05,-1.4998881537686184e-20,-1.2613452594209508e-20,0.00016666666488163173,0.0,-4.166666622040793e-05,-2.380952355451882e-05,0.0,0.0,1.0587911840678754e-22,-1.4998881537686184e-20,5.952380888629705e-06,0.0,8.169934881152585e-05,-1.6940658945086007e-21,1.0164395367051604e-19,-3.77073920390103e-05,0.0,0.0,0.0,-1.2613452594209508e-20,0.0,2.6933851131616393e-06,10.0,9.0,16.0,0.02496311068534851,-0.0037110070697963238,-0.004057486541569233,-0.002456179354339838,0.00015782828268129379,0.00022727272880729288,0.0001336898421868682,0.00018939393339678645,0.00014705881767440587,6.808278703829274e-05,-0.0037110070697963238,0.00157435261644423,0.00022727272880729288,0.0001336898421868682,-0.00011837121564894915,-5.0505052058724687e-05,-2.970885361719411e-05,-1.2037062152420224e-35,-1.6940658945086007e-21,-5.082197683525802e-21,-0.004057486541569233,0.00022727272880729288,0.0019342850428074598,0.00014705881767440587,0.0,-5.681818220182322e-05,8.470329472543003e-22,-0.00016233765927609056,-3.676470441860147e-05,-4.1504614415460717e-20,-0.002456179354339838,0.0001336898421868682,0.00014705881767440587,0.0006290000746957958,-0.0,-0.0,-1.7825312170316465e-05,-7.825155736615491e-20,-1.9607843569247052e-05,-2.9178338081692345e-05,0.00015782828268129379,-0.00011837121564894915,0.0,-0.0,1.3152356586942915e-05,0.0,0.0,0.0,0.0,0.0,0.00022727272880729288,-5.0505052058724687e-05,-5.681818220182322e-05,-0.0,0.0,1.2626263014681172e-05,0.0,0.0,0.0,0.0,0.0001336898421868682,-2.970885361719411e-05,8.470329472543003e-22,-1.7825312170316465e-05,0.0,0.0,3.961180482292548e-06,1.88079096131566e-36,0.0,5.293955920339377e-22,0.00018939393339678645,-1.2037062152420224e-35,-0.00016233765927609056,-7.825155736615491e-20,0.0,0.0,1.88079096131566e-36,2.029220740951132e-05,0.0,5.21677043722409e-21,0.00014705881767440587,-1.6940658945086007e-21,-3.676470441860147e-05,-1.9607843569247052e-05,0.0,0.0,0.0,0.0,4.901960892311763e-06,0.0,6.808278703829274e-05,-5.082197683525802e-21,-4.1504614415460717e-20,-2.9178338081692345e-05,0.0,0.0,5.293955920339377e-22,5.21677043722409e-21,0.0,1.9452224933047546e-06,10.0,10.0,3.0,0.08917355537414551,-0.015826446935534477,-0.015826446935534477,-0.0395454540848732,0.0007575757335871458,0.0009917354909703135,0.0027272726874798536,0.0007575757335871458,0.0027272726874798536,0.004999999888241291,-0.015826446935534477,0.007115473039448261,0.0009917354909703135,0.0027272726874798536,-0.0005681818001903594,-0.00022038567112758756,-0.000606060610152781,-1.1145036594797e-18,-1.7816045575787094e-18,-1.4735281281095103e-17,-0.015826446935534477,0.0009917354909703135,0.007115473039448261,0.0027272726874798536,-1.4839410292120881e-18,-0.00022038567112758756,-9.737244468608049e-20,-0.0005681818001903594,-0.000606060610152781,-1.4735281281095103e-17,-0.0395454540848732,0.0027272726874798536,0.0027272726874798536,0.08954545110464096,-4.776818731393169e-18,-9.936059913774583e-20,-0.0027272726874798536,-3.995805136778257e-18,-0.0027272726874798536,-0.029999999329447746,0.0007575757335871458,-0.0005681818001903594,-1.4839410292120881e-18,-4.776818731393169e-18,6.313131598290056e-05,4.741276163414352e-20,1.3028090770301065e-19,1.219713356126385e-19,1.836093968906692e-19,1.6821561480490622e-18,0.0009917354909703135,-0.00022038567112758756,-0.00022038567112758756,-9.936059913774583e-20,4.741276163414352e-20,4.897459439234808e-05,7.322247210965583e-21,1.997129845987685e-21,1.4757886020510554e-20,1.2310993662135088e-33,0.0027272726874798536,-0.000606060610152781,-9.737244468608049e-20,-0.0027272726874798536,1.3028090770301065e-19,7.322247210965583e-21,0.000606060610152781,1.8380538608828821e-22,6.263737300617718e-20,-4.041239479488804e-19,0.0007575757335871458,-1.1145036594797e-18,-0.0005681818001903594,-3.995805136778257e-18,1.219713356126385e-19,1.997129845987685e-21,1.8380538608828821e-22,6.313131598290056e-05,1.4014795748924358e-19,1.6821561480490622e-18,0.0027272726874798536,-1.7816045575787094e-18,-0.000606060610152781,-0.0027272726874798536,1.836093968906692e-19,1.4757886020510554e-20,6.263737300617718e-20,1.4014795748924358e-19,0.000606060610152781,-4.041239479488804e-19,0.004999999888241291,-1.4735281281095103e-17,-1.4735281281095103e-17,-0.029999999329447746,1.6821561480490622e-18,1.2310993662135088e-33,-4.041239479488804e-19,1.6821561480490622e-18,-4.041239479488804e-19,0.014999999664723873,10.0,10.0,4.0,0.07256198674440384,-0.012278925627470016,-0.012278925627470016,-0.025227272883057594,0.0005681818001903594,0.0007438016473315656,0.0016363636823371053,0.0005681818001903594,0.0016363636823371053,0.0024999999441206455,-0.012278925627470016,0.005427513737231493,0.0007438016473315656,0.0016363636823371053,-0.00042613636469468474,-0.00016528925334569067,-0.0003636363544501364,1.1769001355195168e-20,-7.824778820137154e-21,-0.0,-0.012278925627470016,0.0007438016473315656,0.005427513737231493,0.0016363636823371053,-8.178989836894578e-21,-0.00016528925334569067,-1.3696847554739434e-20,-0.00042613636469468474,-0.0003636363544501364,-0.0,-0.025227272883057594,0.0016363636823371053,0.0016363636823371053,0.03431818261742592,-2.347461514919206e-20,-1.1818586147715034e-20,-0.0010909091215580702,-3.6241802269275584e-22,-0.0010909091215580702,-0.007499999832361937,0.0005681818001903594,-0.00042613636469468474,-8.178989836894578e-21,-2.347461514919206e-20,4.734848334919661e-05,3.634508019142261e-21,4.615308753805387e-21,-1.0588772140827552e-21,6.012726092369395e-22,-0.0,0.0007438016473315656,-0.00016528925334569067,-0.00016528925334569067,-1.1818586147715034e-20,3.634508019142261e-21,3.6730947613250464e-05,2.428663872715169e-21,-5.41386328280395e-22,1.976887321750028e-22,-0.0,0.0016363636823371053,-0.0003636363544501364,-1.3696847554739434e-20,-0.0010909091215580702,4.615308753805387e-21,2.428663872715169e-21,0.00024242424115072936,1.7214367425906772e-22,7.307693901089282e-22,-0.0,0.0005681818001903594,1.1769001355195168e-20,-0.00042613636469468474,-3.6241802269275584e-22,-1.0588772140827552e-21,-5.41386328280395e-22,1.7214367425906772e-22,4.734848334919661e-05,-9.160633377927068e-23,-0.0,0.0016363636823371053,-7.824778820137154e-21,-0.0003636363544501364,-0.0010909091215580702,6.012726092369395e-22,1.976887321750028e-22,7.307693901089282e-22,-9.160633377927068e-23,0.00024242424115072936,-0.0,0.0024999999441206455,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,10.0,10.0,5.0,0.06127036735415459,-0.010041322559118271,-0.010041322559118271,-0.01753246784210205,0.00045454545761458576,0.0005950413178652525,0.0010909091215580702,0.00045454545761458576,0.0010909091215580702,0.0014285714132711291,-0.010041322559118271,0.004390495829284191,0.0005950413178652525,0.0010909091215580702,-0.0003409090859349817,-0.00013223140558693558,-0.00024242424115072936,0.0,0.0,-0.0,-0.010041322559118271,0.0005950413178652525,0.004390495829284191,0.0010909091215580702,1.999135435855699e-20,-0.00013223140558693558,4.069443058734981e-21,-0.0003409090859349817,-0.00024242424115072936,-0.0,-0.01753246784210205,0.0010909091215580702,0.0010909091215580702,0.01733766309916973,1.4573644059864655e-21,7.38118544519712e-21,-0.0005454545607790351,0.0,-0.0005454545607790351,-0.0028571428265422583,0.00045454545761458576,-0.0003409090859349817,1.999135435855699e-20,1.4573644059864655e-21,3.787878813454881e-05,-4.490807166403002e-21,-1.618772667823885e-21,-1.9403008364900914e-22,1.6321902893648188e-23,-0.0,0.0005950413178652525,-0.00013223140558693558,-0.00013223140558693558,7.38118544519712e-21,-4.490807166403002e-21,2.938475699920673e-05,-9.962708902379107e-22,1.6940658945086007e-21,8.470329472543003e-22,-0.0,0.0010909091215580702,-0.00024242424115072936,4.069443058734981e-21,-0.0005454545607790351,-1.618772667823885e-21,-9.962708902379107e-22,0.00012121212057536468,-3.847540449333498e-22,1.6925850069519963e-22,-0.0,0.00045454545761458576,0.0,-0.0003409090859349817,0.0,-1.9403008364900914e-22,1.6940658945086007e-21,-3.847540449333498e-22,3.787878813454881e-05,0.0,-0.0,0.0010909091215580702,0.0,-0.00024242424115072936,-0.0005454545607790351,1.6321902893648188e-23,8.470329472543003e-22,1.6925850069519963e-22,0.0,0.00012121212057536468,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0028571428265422583,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,10.0,10.0,6.0,0.053060803562402725,-0.008497638627886772,-0.008497638627886772,-0.012905844487249851,0.0003787878667935729,0.0004958677454851568,0.0007792207761667669,0.0003787878667935729,0.0007792207761667669,0.0008928571478463709,-0.008497638627886772,0.0036876066587865353,0.0004958677454851568,0.0007792207761667669,-0.0002840909000951797,-0.00011019283556379378,-0.00017316016601398587,-5.624298769768554e-19,-4.777265822514254e-19,-1.3827473719875306e-18,-0.008497638627886772,0.0004958677454851568,0.0036876066587865353,0.0007792207761667669,-7.822093358891455e-19,-0.00011019283556379378,-3.8179419438831437e-20,-0.0002840909000951797,-0.00017316016601398587,-1.3827473719875306e-18,-0.012905844487249851,0.0007792207761667669,0.0007792207761667669,0.010073051787912846,-1.3493809740286729e-18,2.1231732689712997e-20,-0.00031168831628747284,-1.1180834903756764e-18,-0.00031168831628747284,-0.0013392857508733869,0.0003787878667935729,-0.0002840909000951797,-7.822093358891455e-19,-1.3493809740286729e-18,3.156565799145028e-05,2.2943188764130818e-20,6.22920444874819e-20,6.047679017088575e-20,5.309142116280541e-20,1.652117626941476e-19,0.0004958677454851568,-0.00011019283556379378,-0.00011019283556379378,2.1231732689712997e-20,2.2943188764130818e-20,2.448729719617404e-05,2.956111874459199e-21,3.3881317890172014e-21,-5.929230630780102e-21,1.6454374772381045e-34,0.0007792207761667669,-0.00017316016601398587,-3.8179419438831437e-20,-0.00031168831628747284,6.22920444874819e-20,2.956111874459199e-21,6.926406786078587e-05,-2.0059410057804456e-22,1.0368562767716585e-20,-4.166338462545688e-20,0.0003787878667935729,-5.624298769768554e-19,-0.0002840909000951797,-1.1180834903756764e-18,6.047679017088575e-20,3.3881317890172014e-21,-2.0059410057804456e-22,3.156565799145028e-05,6.437450399132683e-20,1.652117626941476e-19,0.0007792207761667669,-4.777265822514254e-19,-0.00017316016601398587,-0.00031168831628747284,5.309142116280541e-20,-5.929230630780102e-21,1.0368562767716585e-20,6.437450399132683e-20,6.926406786078587e-05,-4.166338462545688e-20,0.0008928571478463709,-1.3827473719875306e-18,-1.3827473719875306e-18,-0.0013392857508733869,1.652117626941476e-19,1.6454374772381045e-34,-4.166338462545688e-20,1.652117626941476e-19,-4.166338462545688e-20,0.0002678571327123791,10.0,10.0,7.0,0.04681031033396721,-0.0073671783320605755,-0.0073671783320605755,-0.009902597405016422,0.0003246753185521811,0.0004250295169185847,0.0005844155675731599,0.0003246753185521811,0.0005844155675731599,0.0005952381179668009,-0.0073671783320605755,0.0031793585512787104,0.0004250295169185847,0.0005844155675731599,-0.00024350649619009346,-9.445100295124575e-05,-0.0001298701245104894,6.776263578034403e-21,0.0,-0.0,-0.0073671783320605755,0.0004250295169185847,0.0031793585512787104,0.0005844155675731599,2.1837180430487796e-21,-9.445100295124575e-05,-5.1132553266909705e-21,-0.00024350649619009346,-0.0001298701245104894,-0.0,-0.009902597405016422,0.0005844155675731599,0.0005844155675731599,0.0063961041159927845,-2.7515129100810774e-21,-1.5637961561672402e-21,-0.00019480519404169172,6.776263578034403e-21,-0.00019480519404169172,-0.0007142857066355646,0.0003246753185521811,-0.00024350649619009346,2.1837180430487796e-21,-2.7515129100810774e-21,2.7056277758674696e-05,-7.501745353402492e-23,6.007700101770051e-22,-1.9340437180076232e-22,1.0677282050403424e-23,-0.0,0.0004250295169185847,-9.445100295124575e-05,-9.445100295124575e-05,-1.5637961561672402e-21,-7.501745353402492e-23,2.0989111362723634e-05,1.1362788829513967e-21,-1.6940658945086007e-21,0.0,-0.0,0.0005844155675731599,-0.0001298701245104894,-5.1132553266909705e-21,-0.00019480519404169172,6.007700101770051e-22,1.1362788829513967e-21,4.329004150349647e-05,-9.4039548065783e-38,0.0,-0.0,0.0003246753185521811,6.776263578034403e-21,-0.00024350649619009346,6.776263578034403e-21,-1.9340437180076232e-22,-1.6940658945086007e-21,-9.4039548065783e-38,2.7056277758674696e-05,-1.6940658945086007e-21,-0.0,0.0005844155675731599,0.0,-0.0001298701245104894,-0.00019480519404169172,1.0677282050403424e-23,0.0,0.0,-1.6940658945086007e-21,4.329004150349647e-05,-0.0,0.0005952381179668009,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001190476177725941,10.0,10.0,8.0,0.04188705235719681,-0.006503099109977484,-0.006503099109977484,-0.00784090906381607,0.0002840909000951797,0.0003719008236657828,0.00045454545761458576,0.0002840909000951797,0.00045454545761458576,0.00041666667675599456,-0.006503099109977484,0.0027945649344474077,0.0003719008236657828,0.00045454545761458576,-0.00021306818234734237,-8.264462667284533e-05,-0.00010101010411744937,6.776263578034403e-21,1.6940658945086007e-21,-0.0,-0.006503099109977484,0.0003719008236657828,0.0027945649344474077,0.00045454545761458576,4.3252700696965285e-21,-8.264462667284533e-05,-5.4231493747269775e-22,-0.00021306818234734237,-0.00010101010411744937,-0.0,-0.00784090906381607,0.00045454545761458576,0.00045454545761458576,0.004323592875152826,2.967785349782238e-22,4.059147780211348e-22,-0.0001298701245104894,6.776263578034403e-21,-0.0001298701245104894,-0.00041666667675599456,0.0002840909000951797,-0.00021306818234734237,4.3252700696965285e-21,2.967785349782238e-22,2.3674241674598306e-05,-1.3862333356554407e-22,-9.096472929225977e-40,-3.5738827080461563e-22,-6.595078484950671e-23,-0.0,0.0003719008236657828,-8.264462667284533e-05,-8.264462667284533e-05,4.059147780211348e-22,-1.3862333356554407e-22,1.8365473806625232e-05,1.2051443195190778e-22,-8.470329472543003e-22,-4.235164736271502e-22,-0.0,0.00045454545761458576,-0.00010101010411744937,-5.4231493747269775e-22,-0.0001298701245104894,-9.096472929225977e-40,1.2051443195190778e-22,2.886002948798705e-05,-1.1754943508222875e-38,-2.938735877055719e-39,-0.0,0.0002840909000951797,6.776263578034403e-21,-0.00021306818234734237,6.776263578034403e-21,-3.5738827080461563e-22,-8.470329472543003e-22,-1.1754943508222875e-38,2.3674241674598306e-05,0.0,-0.0,0.00045454545761458576,1.6940658945086007e-21,-0.00010101010411744937,-0.0001298701245104894,-6.595078484950671e-23,-4.235164736271502e-22,-2.938735877055719e-39,0.0,2.886002948798705e-05,-0.0,0.00041666667675599456,-0.0,-0.0,-0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,5.952380888629705e-05,10.0,10.0,9.0,0.03790633752942085,-0.005820936523377895,-0.005820936523377895,-0.00636363634839654,0.00025252526393160224,0.00033057850669138134,0.0003636363544501364,0.00025252526393160224,0.0003636363544501364,0.0003030303050763905,-0.005820936523377895,0.0024930364452302456,0.00033057850669138134,0.0003636363544501364,-0.00018939393339678645,-7.346189522650093e-05,-8.080808038357645e-05,3.3881317890172014e-21,1.3438035342651236e-20,4.743384504624082e-20,-0.005820936523377895,0.00033057850669138134,0.0024930364452302456,0.0003636363544501364,1.6939128176276644e-22,-7.346189522650093e-05,1.5246593050577406e-20,-0.00018939393339678645,-8.080808038357645e-05,4.743384504624082e-20,-0.00636363634839654,0.0003636363544501364,0.0003636363544501364,0.0030627704691141844,-4.3665808220367804e-23,-0.0,-9.09090886125341e-05,5.356725923355724e-21,-9.09090886125341e-05,-0.0002597402490209788,0.00025252526393160224,-0.00018939393339678645,1.6939128176276644e-22,-4.3665808220367804e-23,2.1043770175310783e-05,1.9357420724276916e-23,3.0059440663807166e-23,4.990585259740343e-23,-1.852852386593849e-22,8.588411347764023e-23,0.00033057850669138134,-7.346189522650093e-05,-7.346189522650093e-05,-0.0,1.9357420724276916e-23,1.632486419111956e-05,5.293955920339377e-23,-1.6940658945086007e-21,-4.235164736271502e-22,3.223709750355701e-23,0.0003636363544501364,-8.080808038357645e-05,1.5246593050577406e-20,-9.09090886125341e-05,3.0059440663807166e-23,5.293955920339377e-23,2.0202020095894113e-05,-2.117582368135751e-22,-3.3881317890172014e-21,-1.3552527156068805e-20,0.00025252526393160224,3.3881317890172014e-21,-0.00018939393339678645,5.356725923355724e-21,4.990585259740343e-23,-1.6940658945086007e-21,-2.117582368135751e-22,2.1043770175310783e-05,-8.470329472543003e-22,-4.235164736271502e-22,0.0003636363544501364,1.3438035342651236e-20,-8.080808038357645e-05,-9.09090886125341e-05,-1.852852386593849e-22,-4.235164736271502e-22,-3.3881317890172014e-21,-8.470329472543003e-22,2.0202020095894113e-05,-1.1858461261560205e-20,0.0003030303050763905,4.743384504624082e-20,4.743384504624082e-20,-0.0002597402490209788,8.588411347764023e-23,3.223709750355701e-23,-1.3552527156068805e-20,-4.235164736271502e-22,-1.1858461261560205e-20,3.246753112762235e-05,10.0,10.0,10.0,0.034619834274053574,-0.005268595181405544,-0.005268595181405544,-0.005268595181405544,0.00022727272880729288,0.00029752065893262625,0.00029752065893262625,0.00022727272880729288,0.00029752065893262625,0.00022727272880729288,-0.005268595181405544,0.0022503442596644163,0.00029752065893262625,0.00029752065893262625,-0.00017045454296749085,-6.611570279346779e-05,-6.611570279346779e-05,6.776263578034403e-21,3.890756294448971e-21,1.3552527156068805e-20,-0.005268595181405544,0.00029752065893262625,0.0022503442596644163,0.00029752065893262625,1.4435962714572366e-21,-6.611570279346779e-05,3.3881317890172014e-21,-0.00017045454296749085,-6.611570279346779e-05,3.3881317890172014e-21,-0.005268595181405544,0.00029752065893262625,0.00029752065893262625,0.0022503442596644163,3.539534517786032e-21,2.3263018874988656e-21,-6.611570279346779e-05,4.458425953478392e-21,-6.611570279346779e-05,-0.00017045454296749085,0.00022727272880729288,-0.00017045454296749085,1.4435962714572366e-21,3.539534517786032e-21,1.8939394067274407e-05,-3.397882349619448e-23,-1.0493988168036968e-22,-8.760165930581086e-23,-9.777380610846959e-23,-2.705481147078327e-22,0.00029752065893262625,-6.611570279346779e-05,-6.611570279346779e-05,2.3263018874988656e-21,-3.397882349619448e-23,1.4692378499603365e-05,-6.834735059045539e-23,-2.541098841762901e-21,-4.9186383683938e-22,2.714400955105842e-23,0.00029752065893262625,-6.611570279346779e-05,3.3881317890172014e-21,-6.611570279346779e-05,-1.0493988168036968e-22,-6.834735059045539e-23,1.4692378499603365e-05,1.0587911840678754e-22,-6.352747104407253e-22,-2.541098841762901e-21,0.00022727272880729288,6.776263578034403e-21,-0.00017045454296749085,4.458425953478392e-21,-8.760165930581086e-23,-2.541098841762901e-21,1.0587911840678754e-22,1.8939394067274407e-05,-8.470329472543003e-22,2.117582368135751e-22,0.00029752065893262625,3.890756294448971e-21,-6.611570279346779e-05,-6.611570279346779e-05,-9.777380610846959e-23,-4.9186383683938e-22,-6.352747104407253e-22,-8.470329472543003e-22,1.4692378499603365e-05,-8.470329472543003e-22,0.00022727272880729288,1.3552527156068805e-20,3.3881317890172014e-21,-0.00017045454296749085,-2.705481147078327e-22,2.714400955105842e-23,-2.541098841762901e-21,2.117582368135751e-22,-8.470329472543003e-22,1.8939394067274407e-05,10.0,10.0,11.0,0.03185979276895523,-0.004812171217054129,-0.004812171217054129,-0.004434202332049608,0.00020661157032009214,0.0002704733342397958,0.0002479338727425784,0.00020661157032009214,0.0002479338727425784,0.00017482518160250038,-0.004812171217054129,0.002050776267424226,0.0002704733342397958,0.0002479338727425784,-0.0001549586741020903,-6.010518336552195e-05,-5.509641778189689e-05,3.3881317890172014e-21,-2.6086160456237997e-21,-2.0328790734103208e-20,-0.004812171217054129,0.0002704733342397958,0.002050776267424226,0.0002479338727425784,4.623504930258212e-22,-6.010518336552195e-05,-5.929230630780102e-21,-0.0001549586741020903,-5.509641778189689e-05,-1.6940658945086007e-20,-0.004434202332049608,0.0002479338727425784,0.0002479338727425784,0.0017026911955326796,-6.014969436079001e-21,3.591947395583777e-21,-4.958677527611144e-05,3.0460150575440976e-21,-4.958677527611144e-05,-0.00011655011621769518,0.00020661157032009214,-0.0001549586741020903,4.623504930258212e-22,-6.014969436079001e-21,1.721763146633748e-05,-7.775024125910965e-24,1.0644368533072632e-21,-2.0044984000658498e-23,-4.654076761323509e-23,1.330646535958968e-22,0.0002704733342397958,-6.010518336552195e-05,-6.010518336552195e-05,3.591947395583777e-21,-7.775024125910965e-24,1.3356707313505467e-05,-2.1048592408031119e-22,0.0,-5.281232666788993e-22,-1.5641807921228515e-22,0.0002479338727425784,-5.509641778189689e-05,-5.929230630780102e-21,-4.958677527611144e-05,1.0644368533072632e-21,-2.1048592408031119e-22,1.1019284102076199e-05,-1.0587911840678754e-22,1.4823076576950256e-21,4.235164736271502e-21,0.00020661157032009214,3.3881317890172014e-21,-0.0001549586741020903,3.0460150575440976e-21,-2.0044984000658498e-23,0.0,-1.0587911840678754e-22,1.721763146633748e-05,0.0,0.0,0.0002479338727425784,-2.6086160456237997e-21,-5.509641778189689e-05,-4.958677527611144e-05,-4.654076761323509e-23,-5.281232666788993e-22,1.4823076576950256e-21,0.0,1.1019284102076199e-05,4.235164736271502e-21,0.00017482518160250038,-2.0328790734103208e-20,-1.6940658945086007e-20,-0.00011655011621769518,1.330646535958968e-22,-1.5641807921228515e-22,4.235164736271502e-21,0.0,4.235164736271502e-21,1.1655011803668458e-05,10.0,10.0,12.0,0.029508672654628754,-0.00442863954231143,-0.00442863954231143,-0.003783716354519129,0.00018939393339678645,0.0002479338727425784,0.00020979020337108523,0.00018939393339678645,0.00020979020337108523,0.00013736264372710139,-0.00442863954231143,0.0018837633542716503,0.0002479338727425784,0.00020979020337108523,-0.00014204545004758984,-5.509641778189689e-05,-4.662004721467383e-05,-2.812149384884277e-19,-1.3119371443365998e-19,-1.9312351197398048e-19,-0.00442863954231143,0.0002479338727425784,0.0018837633542716503,0.00020979020337108523,-4.02505853423756e-19,-5.509641778189689e-05,-9.317362419797304e-21,-0.00014204545004758984,-4.662004721467383e-05,-1.8804131429045468e-19,-0.003783716354519129,0.00020979020337108523,0.00020979020337108523,0.0013198165688663721,-3.647055347370667e-19,3.73460535509363e-21,-3.814367300947197e-05,-2.9621143865067854e-19,-3.814367300947197e-05,-8.241758041549474e-05,0.00018939393339678645,-0.00014204545004758984,-4.02505853423756e-19,-3.647055347370667e-19,1.578282899572514e-05,1.088299721509711e-20,1.4557257563462366e-20,3.057574906604526e-20,1.4205526472955467e-20,2.1379114626002352e-20,0.0002479338727425784,-5.509641778189689e-05,-5.509641778189689e-05,3.73460535509363e-21,1.088299721509711e-20,1.224364859808702e-05,5.273418778641726e-22,8.470329472543003e-22,-1.3784822534580032e-21,-5.77491116138942e-23,0.00020979020337108523,-4.662004721467383e-05,-9.317362419797304e-21,-3.814367300947197e-05,1.4557257563462366e-20,5.273418778641726e-22,8.47637238621246e-06,-1.0587911840678754e-22,1.4823076576950256e-21,-4.235164736271502e-22,0.00018939393339678645,-2.812149384884277e-19,-0.00014204545004758984,-2.9621143865067854e-19,3.057574906604526e-20,8.470329472543003e-22,-1.0587911840678754e-22,1.578282899572514e-05,1.4399560103323106e-20,2.0964065444543933e-20,0.00020979020337108523,-1.3119371443365998e-19,-4.662004721467383e-05,-3.814367300947197e-05,1.4205526472955467e-20,-1.3784822534580032e-21,1.4823076576950256e-21,1.4399560103323106e-20,8.47637238621246e-06,0.0,0.00013736264372710139,-1.9312351197398048e-19,-1.8804131429045468e-19,-8.241758041549474e-05,2.1379114626002352e-20,-5.77491116138942e-23,-4.235164736271502e-22,2.0964065444543933e-20,0.0,7.492507393180858e-06,10.0,10.0,13.0,0.02748160995543003,-0.004101807251572609,-0.004101807251572609,-0.0032667333725839853,0.00017482518160250038,0.00022886204533278942,0.00017982018471229821,0.00017482518160250038,0.00017982018471229821,0.00010989011207129806,-0.004101807251572609,0.001741932355798781,0.00022886204533278942,0.00017982018471229821,-0.00013111888256389648,-5.0858234317274764e-05,-3.996003943029791e-05,-0.0,1.3552527156068805e-20,3.049318610115481e-20,-0.004101807251572609,0.00022886204533278942,0.001741932355798781,0.00017982018471229821,0.0,-5.0858234317274764e-05,1.3552527156068805e-20,-0.00013111888256389648,-3.996003943029791e-05,2.879912020664621e-20,-0.0032667333725839853,0.00017982018471229821,0.00017982018471229821,0.0010439560282975435,-0.0,-0.0,-2.9970029572723433e-05,-0.0,-2.9970029572723433e-05,-5.994005914544687e-05,0.00017482518160250038,-0.00013111888256389648,0.0,-0.0,1.4568764527211897e-05,0.0,0.0,0.0,0.0,0.0,0.00022886204533278942,-5.0858234317274764e-05,-5.0858234317274764e-05,-0.0,0.0,1.130182954511838e-05,0.0,0.0,0.0,0.0,0.00017982018471229821,-3.996003943029791e-05,1.3552527156068805e-20,-2.9970029572723433e-05,0.0,0.0,6.660006874881219e-06,0.0,-2.2234614865425384e-21,-5.082197683525802e-21,0.00017482518160250038,-0.0,-0.00013111888256389648,-0.0,0.0,0.0,0.0,1.4568764527211897e-05,0.0,0.0,0.00017982018471229821,1.3552527156068805e-20,-3.996003943029791e-05,-2.9970029572723433e-05,0.0,0.0,-2.2234614865425384e-21,0.0,6.660006874881219e-06,-4.870439446712227e-21,0.00010989011207129806,3.049318610115481e-20,2.879912020664621e-20,-5.994005914544687e-05,0.0,0.0,-5.082197683525802e-21,0.0,-4.870439446712227e-21,4.995004928787239e-06,10.0,10.0,14.0,0.02571576088666916,-0.003819952718913555,-0.003819952718913555,-0.002849025884643197,0.00016233765927609056,0.00021251475845929235,0.00015584415814373642,0.00016233765927609056,0.00015584415814373642,8.928571332944557e-05,-0.003819952718913555,0.0016199823003262281,0.00021251475845929235,0.00015584415814373642,-0.00012175324809504673,-4.722550147562288e-05,-3.4632033930392936e-05,-0.0,1.6940658945086007e-21,3.3881317890172014e-21,-0.003819952718913555,0.00021251475845929235,0.0016199823003262281,0.00015584415814373642,0.0,-4.722550147562288e-05,1.6940658945086007e-21,-0.00012175324809504673,-3.4632033930392936e-05,5.082197683525802e-21,-0.002849025884643197,0.00015584415814373642,0.00015584415814373642,0.0008400973747484386,-0.0,-0.0,-2.397602474957239e-05,-0.0,-2.397602474957239e-05,-4.4642856664722785e-05,0.00016233765927609056,-0.00012175324809504673,0.0,-0.0,1.3528138879337348e-05,0.0,0.0,0.0,0.0,0.0,0.00021251475845929235,-4.722550147562288e-05,-4.722550147562288e-05,-0.0,0.0,1.0494555681361817e-05,0.0,0.0,0.0,0.0,0.00015584415814373642,-3.4632033930392936e-05,1.6940658945086007e-21,-2.397602474957239e-05,0.0,0.0,5.328005499904975e-06,0.0,-3.1763735522036263e-22,-8.470329472543003e-22,0.00016233765927609056,-0.0,-0.00012175324809504673,-0.0,0.0,0.0,0.0,1.3528138879337348e-05,0.0,0.0,0.00015584415814373642,1.6940658945086007e-21,-3.4632033930392936e-05,-2.397602474957239e-05,0.0,0.0,-3.1763735522036263e-22,0.0,5.328005499904975e-06,-8.470329472543003e-22,8.928571332944557e-05,3.3881317890172014e-21,5.082197683525802e-21,-4.4642856664722785e-05,0.0,0.0,-8.470329472543003e-22,0.0,-8.470329472543003e-22,3.4340660022280645e-06,10.0,10.0,15.0,0.024163587018847466,-0.003574380185455084,-0.003574380185455084,-0.002506684511899948,0.00015151515253819525,0.00019834710110444576,0.00013636364019475877,0.00015151515253819525,0.00013636364019475877,7.352940883720294e-05,-0.003574380185455084,0.0015140037285163999,0.00019834710110444576,0.00013636364019475877,-0.00011363636440364644,-4.4077136408304796e-05,-3.030303014384117e-05,-0.0,-8.470329472543003e-22,-8.470329472543003e-22,-0.003574380185455084,0.00019834710110444576,0.0015140037285163999,0.00013636364019475877,0.0,-4.4077136408304796e-05,-8.470329472543003e-22,-0.00011363636440364644,-3.030303014384117e-05,-8.470329472543003e-22,-0.002506684511899948,0.00013636364019475877,0.00013636364019475877,0.0006861520814709365,-0.0,-0.0,-1.9480519767967053e-05,-0.0,-1.9480519767967053e-05,-3.393665247131139e-05,0.00015151515253819525,-0.00011363636440364644,0.0,-0.0,1.2626263014681172e-05,0.0,0.0,0.0,0.0,0.0,0.00019834710110444576,-4.4077136408304796e-05,-4.4077136408304796e-05,-0.0,0.0,9.794918696570676e-06,0.0,0.0,0.0,0.0,0.00013636364019475877,-3.030303014384117e-05,-8.470329472543003e-22,-1.9480519767967053e-05,0.0,0.0,4.329004241299117e-06,0.0,2.117582368135751e-22,4.235164736271502e-22,0.00015151515253819525,-0.0,-0.00011363636440364644,-0.0,0.0,0.0,0.0,1.2626263014681172e-05,0.0,0.0,0.00013636364019475877,-8.470329472543003e-22,-3.030303014384117e-05,-1.9480519767967053e-05,0.0,0.0,2.117582368135751e-22,0.0,4.329004241299117e-06,4.235164736271502e-22,7.352940883720294e-05,-8.470329472543003e-22,-8.470329472543003e-22,-3.393665247131139e-05,0.0,0.0,4.235164736271502e-22,0.0,4.235164736271502e-22,2.4240464426839026e-06,10.0,10.0,16.0,0.02278844639658928,-0.003358501475304365,-0.003358501475304365,-0.002222593640908599,0.00014204545004758984,0.0001859504118328914,0.00012032085214741528,0.00014204545004758984,0.00012032085214741528,6.127451342763379e-05,-0.003358501475304365,0.0014210495864972472,0.0001859504118328914,0.00012032085214741528,-0.00010653409117367119,-4.132231333642267e-05,-2.6737967345979996e-05,-0.0,1.6940658945086007e-21,3.3881317890172014e-21,-0.003358501475304365,0.0001859504118328914,0.0014210495864972472,0.00012032085214741528,0.0,-4.132231333642267e-05,2.117582368135751e-21,-0.00010653409117367119,-2.6737967345979996e-05,3.3881317890172014e-21,-0.002222593640908599,0.00012032085214741528,0.00012032085214741528,0.0005677043809555471,-0.0,-0.0,-1.604278077138588e-05,-0.0,-1.604278077138588e-05,-2.626050445542205e-05,0.00014204545004758984,-0.00010653409117367119,0.0,-0.0,1.1837120837299153e-05,0.0,0.0,0.0,0.0,0.0,0.0001859504118328914,-4.132231333642267e-05,-4.132231333642267e-05,-0.0,0.0,9.182736903312616e-06,0.0,0.0,0.0,0.0,0.00012032085214741528,-2.6737967345979996e-05,2.117582368135751e-21,-1.604278077138588e-05,0.0,0.0,3.565062343113823e-06,0.0,-2.6469779601696886e-22,-5.293955920339377e-22,0.00014204545004758984,-0.0,-0.00010653409117367119,-0.0,0.0,0.0,0.0,1.1837120837299153e-05,0.0,0.0,0.00012032085214741528,1.6940658945086007e-21,-2.6737967345979996e-05,-1.604278077138588e-05,0.0,0.0,-2.6469779601696886e-22,0.0,3.565062343113823e-06,-5.293955920339377e-22,6.127451342763379e-05,3.3881317890172014e-21,3.3881317890172014e-21,-2.626050445542205e-05,0.0,0.0,-5.293955920339377e-22,0.0,-5.293955920339377e-22,1.7507003349237493e-06,10.0,11.0,3.0,0.08222610503435135,-0.014462810009717941,-0.013334392569959164,-0.036157023161649704,0.000688705244101584,0.0008264462812803686,0.002479338785633445,0.0005827505956403911,0.0022727272007614374,0.004545454401522875,-0.014462810009717941,0.006485307589173317,0.0008264462812803686,0.002479338785633445,-0.0005165289039723575,-0.0001836547307902947,-0.0005509642069227993,8.705829731641411e-20,8.456556592226569e-21,-0.0,-0.013334392569959164,0.0008264462812803686,0.005386381410062313,0.0022727272007614374,-4.554323166778424e-21,-0.00016528925334569067,8.722297249738465e-21,-0.0003885003970935941,-0.00045454545761458576,-0.0,-0.036157023161649704,0.002479338785633445,0.0022727272007614374,0.08161157369613647,2.4239883231600053e-20,1.7745161561040584e-20,-0.002479338785633445,1.9640122484474465e-20,-0.0022727272007614374,-0.027272727340459824,0.000688705244101584,-0.0005165289039723575,-4.554323166778424e-21,2.4239883231600053e-20,5.7392102462472394e-05,1.8447484753124987e-21,-5.451435680112345e-21,3.541684813774145e-22,5.831548218940668e-23,-0.0,0.0008264462812803686,-0.0001836547307902947,-0.00016528925334569067,1.7745161561040584e-20,1.8447484753124987e-21,3.6730947613250464e-05,-1.9382883450357895e-21,-1.7550132728998467e-20,-1.8045730642088154e-21,-0.0,0.002479338785633445,-0.0005509642069227993,8.722297249738465e-21,-0.002479338785633445,-5.451435680112345e-21,-1.9382883450357895e-21,0.0005509642069227993,8.163359492219796e-37,8.925033030426007e-38,-0.0,0.0005827505956403911,8.705829731641411e-20,-0.0003885003970935941,1.9640122484474465e-20,3.541684813774145e-22,-1.7550132728998467e-20,8.163359492219796e-37,3.885003752657212e-05,-3.9280246584536064e-21,-0.0,0.0022727272007614374,8.456556592226569e-21,-0.00045454545761458576,-0.0022727272007614374,5.831548218940668e-23,-1.8045730642088154e-21,8.925033030426007e-38,-3.9280246584536064e-21,0.00045454545761458576,-0.0,0.004545454401522875,-0.0,-0.0,-0.027272727340459824,-0.0,-0.0,-0.0,-0.0,-0.0,0.013636363670229912,10.0,11.0,4.0,0.06686586141586304,-0.011219007894396782,-0.01034170389175415,-0.023057851940393448,0.0005165289039723575,0.0006198346964083612,0.0014876032946631312,0.0004370629321783781,0.0013636363437399268,0.0022727272007614374,-0.011219007894396782,0.004946625325828791,0.0006198346964083612,0.0014876032946631312,-0.00038739669253118336,-0.00013774105173069984,-0.00033057850669138134,-4.4843348012272017e-20,4.5623158802265746e-21,-0.0,-0.01034170389175415,0.0006198346964083612,0.00410796795040369,0.0013636363437399268,1.0580810527431729e-20,-0.0001239669363712892,-9.183005023863964e-20,-0.00029137529782019556,-0.00027272728038951755,-0.0,-0.023057851940393448,0.0014876032946631312,0.0013636363437399268,0.031280990689992905,1.4582210306745337e-20,-8.596499072881775e-20,-0.0009917354909703135,1.614328268397903e-20,-0.0009090909152291715,-0.006818181835114956,0.0005165289039723575,-0.00038739669253118336,1.0580810527431729e-20,1.4582210306745337e-20,4.3044077756349e-05,-2.062329288156623e-21,-3.542184888479183e-21,-1.8543300492870728e-23,2.7152410604154663e-22,-0.0,0.0006198346964083612,-0.00013774105173069984,-0.0001239669363712892,-8.596499072881775e-20,-2.062329288156623e-21,2.7548208890948445e-05,2.0631957275365294e-20,1.0466082030499045e-20,-1.375762412518095e-21,-0.0,0.0014876032946631312,-0.00033057850669138134,-9.183005023863964e-20,-0.0009917354909703135,-3.542184888479183e-21,2.0631957275365294e-20,0.00022038567112758756,-6.432729648478739e-23,-2.135365186205605e-22,-0.0,0.0004370629321783781,-4.4843348012272017e-20,-0.00029137529782019556,1.614328268397903e-20,-1.8543300492870728e-23,1.0466082030499045e-20,-6.432729648478739e-23,2.9137529054423794e-05,-3.170762012242442e-21,-0.0,0.0013636363437399268,4.5623158802265746e-21,-0.00027272728038951755,-0.0009090909152291715,2.7152410604154663e-22,-1.375762412518095e-21,-2.135365186205605e-22,-3.170762012242442e-21,0.0001818181772250682,-0.0,0.0022727272007614374,-0.0,-0.0,-0.006818181835114956,-0.0,-0.0,-0.0,-0.0,-0.0,0.0022727272007614374,10.0,11.0,5.0,0.05643719807267189,-0.009173553436994553,-0.008455181494355202,-0.016021251678466797,0.0004132231406401843,0.0004958677454851568,0.0009917354909703135,0.00034965036320500076,0.0009090909152291715,0.0012987012742087245,-0.009173553436994553,0.0040013776160776615,0.0004958677454851568,0.0009917354909703135,-0.0003099173482041806,-0.00011019283556379378,-0.00022038567112758756,-5.421010862427522e-20,0.0,-0.0,-0.008455181494355202,0.0004958677454851568,0.003322737757116556,0.0009090909152291715,2.351858254524738e-21,-9.917355055222288e-05,-1.0345593965434033e-21,-0.00023310023243539035,-0.0001818181772250682,-0.0,-0.016021251678466797,0.0009917354909703135,0.0009090909152291715,0.015802834182977676,-1.448236540628364e-20,-1.085117418752726e-20,-0.0004958677454851568,0.0,-0.00045454545761458576,-0.002597402548417449,0.0004132231406401843,-0.0003099173482041806,2.351858254524738e-21,-1.448236540628364e-20,3.443526293267496e-05,8.475459971435071e-22,2.5323995108920644e-21,-5.58548306506953e-22,-2.4287992286247304e-22,-0.0,0.0004958677454851568,-0.00011019283556379378,-9.917355055222288e-05,-1.085117418752726e-20,8.475459971435071e-22,2.2038568204152398e-05,8.769830044649896e-22,1.1858461261560205e-20,8.470329472543003e-22,-0.0,0.0009917354909703135,-0.00022038567112758756,-1.0345593965434033e-21,-0.0004958677454851568,2.5323995108920644e-21,8.769830044649896e-22,0.00011019283556379378,7.039553642299674e-23,7.045998951439692e-23,-0.0,0.00034965036320500076,-5.421010862427522e-20,-0.00023310023243539035,0.0,-5.58548306506953e-22,1.1858461261560205e-20,7.039553642299674e-23,2.3310023607336916e-05,0.0,-0.0,0.0009090909152291715,0.0,-0.0001818181772250682,-0.00045454545761458576,-2.4287992286247304e-22,8.470329472543003e-22,7.045998951439692e-23,0.0,9.09090886125341e-05,-0.0,0.0012987012742087245,-0.0,-0.0,-0.002597402548417449,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006493506371043622,10.0,11.0,6.0,0.04886098578572273,-0.00776269193738699,-0.007154209539294243,-0.01179161760956049,0.000344352622050792,0.0004132231406401843,0.0007083825184963644,0.00029137529782019556,0.0006493506371043622,0.000811688310932368,-0.00776269193738699,0.0033607175573706627,0.0004132231406401843,0.0007083825184963644,-0.00025826445198617876,-9.182736539514735e-05,-0.00015741834067739546,4.404571325722362e-20,0.0,-0.0,-0.007154209539294243,0.0004132231406401843,0.00279059330932796,0.0006493506371043622,-2.1838184113994727e-21,-8.264462667284533e-05,-4.2982913801476555e-21,-0.00019425019854679704,-0.0001298701245104894,-0.0,-0.01179161760956049,0.0007083825184963644,0.0006493506371043622,0.009180932305753231,6.442394014983037e-21,-8.771081872243173e-23,-0.00028335300157777965,0.0,-0.0002597402490209788,-0.0012175324372947216,0.000344352622050792,-0.00025826445198617876,-2.1838184113994727e-21,6.442394014983037e-21,2.8696051231236197e-05,5.324031084578747e-22,7.937892663947258e-23,-3.081919260162552e-22,-3.238795547653913e-22,-0.0,0.0004132231406401843,-9.182736539514735e-05,-8.264462667284533e-05,-8.771081872243173e-23,5.324031084578747e-22,1.8365473806625232e-05,5.723938377573149e-22,-8.470329472543003e-21,0.0,-0.0,0.0007083825184963644,-0.00015741834067739546,-4.2982913801476555e-21,-0.00028335300157777965,7.937892663947258e-23,5.723938377573149e-22,6.296733772614971e-05,1.3816714477038562e-22,-5.754083971314137e-23,-0.0,0.00029137529782019556,4.404571325722362e-20,-0.00019425019854679704,0.0,-3.081919260162552e-22,-8.470329472543003e-21,1.3816714477038562e-22,1.942501876328606e-05,0.0,-0.0,0.0006493506371043622,0.0,-0.0001298701245104894,-0.0002597402490209788,-3.238795547653913e-22,0.0,-5.754083971314137e-23,0.0,5.194805271457881e-05,-0.0,0.000811688310932368,-0.0,-0.0,-0.0012175324372947216,-0.0,-0.0,-0.0,-0.0,-0.0,0.00024350649619009346,10.0,11.0,7.0,0.043095920234918594,-0.006729634013026953,-0.006201752927154303,-0.009046635590493679,0.00029515937785618007,0.0003541912592481822,0.000531286874320358,0.00024975024280138314,0.0004870129923801869,0.0005411255406215787,-0.006729634013026953,0.0028974812012165785,0.0003541912592481822,0.000531286874320358,-0.00022136954066809267,-7.870917033869773e-05,-0.0001180637555080466,-4.0657581468206416e-20,-3.3881317890172014e-21,-0.0,-0.006201752927154303,0.0003541912592481822,0.002405851613730192,0.0004870129923801869,7.53966081054135e-21,-7.083825039444491e-05,3.4553963554400376e-21,-0.00016650016186758876,-9.740259702084586e-05,-0.0,-0.009046635590493679,0.000531286874320358,0.0004870129923801869,0.005829398054629564,8.608614845474976e-21,1.82199979677694e-21,-0.0001770956296240911,-1.3552527156068805e-20,-0.00016233765927609056,-0.0006493506371043622,0.00029515937785618007,-0.00022136954066809267,7.53966081054135e-21,8.608614845474976e-21,2.459661482134834e-05,-1.7265474757839038e-21,-1.7996855092320067e-21,4.9705059098032095e-23,-1.0200589971457376e-22,-0.0,0.0003541912592481822,-7.870917033869773e-05,-7.083825039444491e-05,1.82199979677694e-21,-1.7265474757839038e-21,1.5741834431537427e-05,-7.678658455450977e-22,8.470329472543003e-21,8.470329472543003e-22,-0.0,0.000531286874320358,-0.0001180637555080466,3.4553963554400376e-21,-0.0001770956296240911,-1.7996855092320067e-21,-7.678658455450977e-22,3.9354585169348866e-05,-3.76158192263132e-37,0.0,-0.0,0.00024975024280138314,-4.0657581468206416e-20,-0.00016650016186758876,-1.3552527156068805e-20,4.9705059098032095e-23,8.470329472543003e-21,-3.76158192263132e-37,1.6650015822960995e-05,3.3881317890172014e-21,-0.0,0.0004870129923801869,-3.3881317890172014e-21,-9.740259702084586e-05,-0.00016233765927609056,-1.0200589971457376e-22,8.470329472543003e-22,0.0,3.3881317890172014e-21,3.246753112762235e-05,-0.0,0.0005411255406215787,-0.0,-0.0,-0.0006493506371043622,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010822511103469878,10.0,11.0,8.0,0.03855689615011215,-0.005940082482993603,-0.005473881959915161,-0.007162534631788731,0.00025826445198617876,0.0003099173482041806,0.0004132231406401843,0.00021853146608918905,0.0003787878667935729,0.0003787878667935729,-0.005940082482993603,0.0025467744562774897,0.0003099173482041806,0.0004132231406401843,-0.00019369834626559168,-6.887052586534992e-05,-9.182736539514735e-05,-3.3881317890172014e-20,-1.6940658945086007e-21,-0.0,-0.005473881959915161,0.0003099173482041806,0.002114590024575591,0.0003787878667935729,-1.8962374392180486e-21,-6.19834681856446e-05,-2.625297427067703e-20,-0.00014568764891009778,-7.575757626909763e-05,-0.0,-0.007162534631788731,0.0004132231406401843,0.0003787878667935729,0.003940377850085497,7.083362458380384e-21,-2.560669902744163e-20,-0.0001180637555080466,-3.3881317890172014e-21,-0.00010822511103469878,-0.0003787878667935729,0.00025826445198617876,-0.00019369834626559168,-1.8962374392180486e-21,7.083362458380384e-21,2.15220388781745e-05,-1.2575895847901473e-21,-1.7876043505931493e-21,6.384777633949612e-22,1.9217142638211257e-22,-0.0,0.0003099173482041806,-6.887052586534992e-05,-6.19834681856446e-05,-2.560669902744163e-20,-1.2575895847901473e-21,1.3774104445474222e-05,5.8339941926178325e-21,5.929230630780102e-21,4.235164736271502e-22,-0.0,0.0004132231406401843,-9.182736539514735e-05,-2.625297427067703e-20,-0.0001180637555080466,-1.7876043505931493e-21,5.8339941926178325e-21,2.6236390112899244e-05,3.009265538105056e-36,0.0,-0.0,0.00021853146608918905,-3.3881317890172014e-20,-0.00014568764891009778,-3.3881317890172014e-21,6.384777633949612e-22,5.929230630780102e-21,3.009265538105056e-36,1.4568764527211897e-05,8.470329472543003e-22,-0.0,0.0003787878667935729,-1.6940658945086007e-21,-7.575757626909763e-05,-0.00010822511103469878,1.9217142638211257e-22,4.235164736271502e-22,0.0,8.470329472543003e-22,2.1645020751748234e-05,-0.0,0.0003787878667935729,-0.0,-0.0,-0.0003787878667935729,-0.0,-0.0,-0.0,-0.0,-0.0,5.411255551734939e-05,10.0,11.0,9.0,0.03488804027438164,-0.005316804628819227,-0.0048993430100381374,-0.005812671966850758,0.00022956840984988958,0.0002754821034613997,0.00033057850669138134,0.00019425019854679704,0.0003030303050763905,0.0002754821034613997,-0.005316804628819227,0.002271962119266391,0.0002754821034613997,0.00033057850669138134,-0.000172176311025396,-6.12182411714457e-05,-7.346189522650093e-05,-3.049318610115481e-20,1.1683283148632227e-20,8.470329472543003e-20,-0.0048993430100381374,0.0002754821034613997,0.00188636954408139,0.0003030303050763905,-1.5694378874129891e-21,-5.509641778189689e-05,1.3552527156068805e-20,-0.00012950012751389295,-6.060606028768234e-05,5.082197683525802e-20,-0.005812671966850758,0.00033057850669138134,0.0003030303050763905,0.0027912238147109747,-2.010804983282519e-21,-7.814969076034354e-22,-8.264462667284533e-05,-1.2484344563991612e-21,-7.575757626909763e-05,-0.0002361275110160932,0.00022956840984988958,-0.000172176311025396,-1.5694378874129891e-21,-2.010804983282519e-21,1.913070082082413e-05,5.1095091966460315e-23,6.696367594092325e-23,1.20095300686633e-22,1.1220659697111425e-23,1.9132479561508041e-22,0.0002754821034613997,-6.12182411714457e-05,-5.509641778189689e-05,-7.814969076034354e-22,5.1095091966460315e-23,1.224364859808702e-05,1.8195782336116267e-22,5.929230630780102e-21,4.447273656467327e-22,-7.118126712814583e-23,0.00033057850669138134,-7.346189522650093e-05,1.3552527156068805e-20,-8.264462667284533e-05,6.696367594092325e-23,1.8195782336116267e-22,1.8365473806625232e-05,0.0,-3.3881317890172014e-21,-2.202285662861181e-20,0.00019425019854679704,-3.049318610115481e-20,-0.00012950012751389295,-1.2484344563991612e-21,1.20095300686633e-22,5.929230630780102e-21,0.0,1.2950013115187176e-05,-4.235164736271502e-22,2.117582368135751e-22,0.0003030303050763905,1.1683283148632227e-20,-6.060606028768234e-05,-7.575757626909763e-05,1.1220659697111425e-23,4.447273656467327e-22,-3.3881317890172014e-21,-4.235164736271502e-22,1.5151515071920585e-05,-1.2705494208814505e-20,0.0002754821034613997,8.470329472543003e-20,5.082197683525802e-20,-0.0002361275110160932,1.9132479561508041e-22,-7.118126712814583e-23,-2.202285662861181e-20,2.117582368135751e-22,-1.2705494208814505e-20,2.951593887701165e-05,10.0,11.0,10.0,0.03185979276895523,-0.004812171217054129,-0.004434202332049608,-0.004812171217054129,0.00020661157032009214,0.0002479338727425784,0.0002704733342397958,0.00017482518160250038,0.0002479338727425784,0.00020661157032009214,-0.004812171217054129,0.002050776267424226,0.0002479338727425784,0.0002704733342397958,-0.0001549586741020903,-5.509641778189689e-05,-6.010518336552195e-05,-2.202285662861181e-20,6.669505302547739e-23,3.3881317890172014e-21,-0.004434202332049608,0.0002479338727425784,0.0017026911955326796,0.0002479338727425784,-5.152404234119457e-21,-4.958677527611144e-05,8.470329472543003e-22,-0.00011655011621769518,-4.958677527611144e-05,0.0,-0.004812171217054129,0.0002704733342397958,0.0002479338727425784,0.002050776267424226,-9.088804500171946e-22,-7.265202444854968e-22,-6.010518336552195e-05,3.8412050758492317e-22,-5.509641778189689e-05,-0.0001549586741020903,0.00020661157032009214,-0.0001549586741020903,-5.152404234119457e-21,-9.088804500171946e-22,1.721763146633748e-05,1.1879082009892035e-21,4.222538922820131e-24,-8.338852360498097e-23,1.568323258508348e-22,1.0886232371534744e-23,0.0002479338727425784,-5.509641778189689e-05,-4.958677527611144e-05,-7.265202444854968e-22,1.1879082009892035e-21,1.1019284102076199e-05,2.3305144804633927e-22,3.8116482626443515e-21,-1.9223945774657883e-22,-1.8181172316607212e-23,0.0002704733342397958,-6.010518336552195e-05,8.470329472543003e-22,-6.010518336552195e-05,4.222538922820131e-24,2.3305144804633927e-22,1.3356707313505467e-05,0.0,-4.235164736271502e-22,0.0,0.00017482518160250038,-2.202285662861181e-20,-0.00011655011621769518,3.8412050758492317e-22,-8.338852360498097e-23,3.8116482626443515e-21,0.0,1.1655011803668458e-05,4.235164736271502e-22,0.0,0.0002479338727425784,6.669505302547739e-23,-4.958677527611144e-05,-5.509641778189689e-05,1.568323258508348e-22,-1.9223945774657883e-22,-4.235164736271502e-22,4.235164736271502e-22,1.1019284102076199e-05,0.0,0.00020661157032009214,3.3881317890172014e-21,0.0,-0.0001549586741020903,1.0886232371534744e-23,-1.8181172316607212e-23,0.0,0.0,0.0,1.721763146633748e-05,10.0,11.0,11.0,0.02931717038154602,-0.004395191557705402,-0.004049875773489475,-0.004049875773489475,0.00018782870029099286,0.00022539444034919143,0.00022539444034919143,0.00015893197269178927,0.00020661157032009214,0.00015893197269178927,-0.004395191557705402,0.001868895604275167,0.00022539444034919143,0.00022539444034919143,-0.00014087151794228703,-5.0087652198271826e-05,-5.0087652198271826e-05,2.710505431213761e-20,1.8275927574860846e-21,2.371692252312041e-20,-0.004049875773489475,0.00022539444034919143,0.0015516576822847128,0.00020661157032009214,-6.405511170458227e-22,-4.507888661464676e-05,2.541098841762901e-21,-0.00010595464846119285,-4.132231333642267e-05,0.0,-0.004049875773489475,0.00022539444034919143,0.00020661157032009214,0.0015516576822847128,-3.928522511726335e-22,5.2315084289046335e-22,-4.507888661464676e-05,-2.277485912506341e-21,-4.132231333642267e-05,-0.00010595464846119285,0.00018782870029099286,-0.00014087151794228703,-6.405511170458227e-22,-3.928522511726335e-22,1.565239108458627e-05,9.270825886789408e-24,9.692594905716027e-25,2.1790401862332404e-23,7.278637187832989e-23,2.278174087938785e-24,0.00022539444034919143,-5.0087652198271826e-05,-4.507888661464676e-05,5.2315084289046335e-22,9.270825886789408e-24,1.0017530257755425e-05,-9.460796214541111e-23,-5.082197683525802e-21,-1.393206929166467e-23,1.253052788926236e-22,0.00022539444034919143,-5.0087652198271826e-05,2.541098841762901e-21,-4.507888661464676e-05,9.692594905716027e-25,-9.460796214541111e-23,1.0017530257755425e-05,0.0,-6.352747104407253e-22,-4.235164736271502e-21,0.00015893197269178927,2.710505431213761e-20,-0.00010595464846119285,-2.277485912506341e-21,2.1790401862332404e-23,-5.082197683525802e-21,0.0,1.0595465028018225e-05,0.0,2.117582368135751e-22,0.00020661157032009214,1.8275927574860846e-21,-4.132231333642267e-05,-4.132231333642267e-05,7.278637187832989e-23,-1.393206929166467e-23,-6.352747104407253e-22,0.0,8.264462849183474e-06,-8.470329472543003e-22,0.00015893197269178927,2.371692252312041e-20,0.0,-0.00010595464846119285,2.278174087938785e-24,1.253052788926236e-22,-4.235164736271502e-21,2.117582368135751e-22,-8.470329472543003e-22,1.0595465028018225e-05,10.0,11.0,12.0,0.02715163677930832,-0.004044818691909313,-0.0037269548047333956,-0.0034556351602077484,0.000172176311025396,0.00020661157032009214,0.00019071837596129626,0.00014568764891009778,0.00017482518160250038,0.00012487512140069157,-0.004044818691909313,0.0017166860634461045,0.00020661157032009214,0.00019071837596129626,-0.00012913222599308938,-4.591368269757368e-05,-4.23818601120729e-05,2.202285662861181e-20,6.5814411372486406e-21,8.470329472543003e-21,-0.0037269548047333956,0.00020661157032009214,0.001425266615115106,0.00017482518160250038,-2.216400966870644e-21,-4.132231333642267e-05,4.235164736271502e-21,-9.712509927339852e-05,-3.4965036320500076e-05,1.0164395367051604e-20,-0.0034556351602077484,0.00019071837596129626,0.00017482518160250038,0.0012027228949591517,-3.2794625516301812e-21,-2.342447661418205e-21,-3.4676068025873974e-05,-1.9832622518755257e-21,-3.178639599354938e-05,-7.492507575079799e-05,0.000172176311025396,-0.00012913222599308938,-2.216400966870644e-21,-3.2794625516301812e-21,1.4348025615618099e-05,9.445120223068049e-22,7.124117764290939e-22,-1.7622698238755996e-22,-2.4395646556261005e-23,1.6507413001841772e-23,0.00020661157032009214,-4.591368269757368e-05,-4.132231333642267e-05,-2.342447661418205e-21,9.445120223068049e-22,9.182736903312616e-06,3.322336043734563e-22,-4.658681209898652e-21,2.7366607165850066e-22,3.1084508612156695e-23,0.00019071837596129626,-4.23818601120729e-05,4.235164736271502e-21,-3.4676068025873974e-05,7.124117764290939e-22,3.322336043734563e-22,7.705792995693628e-06,1.5881867761018131e-22,-1.164670302474663e-21,-2.117582368135751e-21,0.00014568764891009778,2.202285662861181e-20,-9.712509927339852e-05,-1.9832622518755257e-21,-1.7622698238755996e-22,-4.658681209898652e-21,1.5881867761018131e-22,9.71250938164303e-06,-4.235164736271502e-22,3.1763735522036263e-22,0.00017482518160250038,6.5814411372486406e-21,-3.4965036320500076e-05,-3.178639599354938e-05,-2.4395646556261005e-23,2.7366607165850066e-22,-1.164670302474663e-21,-4.235164736271502e-22,6.3572792896593455e-06,-2.117582368135751e-21,0.00012487512140069157,8.470329472543003e-21,1.0164395367051604e-20,-7.492507575079799e-05,1.6507413001841772e-23,3.1084508612156695e-23,-2.117582368135751e-21,3.1763735522036263e-22,-2.117582368135751e-21,6.8113704401184805e-06,10.0,11.0,13.0,0.02528485469520092,-0.0037462536711245775,-0.0034517929889261723,-0.0029833803419023752,0.00015893197269178927,0.00019071837596129626,0.00016347289783880115,0.00013448089885059744,0.00014985015150159597,9.990009857574478e-05,-0.0037462536711245775,0.0015874276868999004,0.00019071837596129626,0.00016347289783880115,-0.00011919897951884195,-4.23818601120729e-05,-3.632731022662483e-05,-1.7787691892340307e-20,-5.929230630780102e-21,-5.082197683525802e-21,-0.0034517929889261723,0.00019071837596129626,0.0013179361121729016,0.00014985015150159597,0.0,-3.814367300947197e-05,-5.082197683525802e-21,-8.965393499238417e-05,-2.9970029572723433e-05,-1.0164395367051604e-20,-0.0029833803419023752,0.00016347289783880115,0.00014985015150159597,0.0009513213881291449,-0.0,-1.6502795451864715e-21,-2.7245481760473922e-05,-5.364188522275566e-22,-2.4975024643936194e-05,-5.4490963520947844e-05,0.00015893197269178927,-0.00011919897951884195,0.0,-0.0,1.3244331057649106e-05,0.0,0.0,0.0,0.0,0.0,0.00019071837596129626,-4.23818601120729e-05,-3.814367300947197e-05,-1.6502795451864715e-21,0.0,8.47637238621246e-06,2.0793597222495134e-23,3.3881317890172014e-21,2.5508300784284136e-22,2.676069257088067e-23,0.00016347289783880115,-3.632731022662483e-05,-5.082197683525802e-21,-2.7245481760473922e-05,0.0,2.0793597222495134e-23,6.054551704437472e-06,5.293955920339377e-23,8.470329472543003e-22,1.0587911840678754e-21,0.00013448089885059744,-1.7787691892340307e-20,-8.965393499238417e-05,-5.364188522275566e-22,0.0,3.3881317890172014e-21,5.293955920339377e-23,8.965393135440536e-06,-2.117582368135751e-22,1.0587911840678754e-22,0.00014985015150159597,-5.929230630780102e-21,-2.9970029572723433e-05,-2.4975024643936194e-05,0.0,2.5508300784284136e-22,8.470329472543003e-22,-2.117582368135751e-22,4.995004928787239e-06,1.6940658945086007e-21,9.990009857574478e-05,-5.082197683525802e-21,-1.0164395367051604e-20,-5.4490963520947844e-05,0.0,2.676069257088067e-23,1.0587911840678754e-21,1.0587911840678754e-22,1.6940658945086007e-21,4.540913778328104e-06,10.0,11.0,14.0,0.023658841848373413,-0.003488783957436681,-0.0032145127188414335,-0.002601830055937171,0.00014757968892809004,0.0001770956296240911,0.00014167650078888983,0.00012487512140069157,0.0001298701245104894,8.116882963804528e-05,-0.003488783957436681,0.0014762888895347714,0.0001770956296240911,0.00014167650078888983,-0.00011068477033404633,-3.9354585169348866e-05,-3.1483668863074854e-05,-0.0,2.541098841762901e-21,2.541098841762901e-21,-0.0032145127188414335,0.0001770956296240911,0.0012256531044840813,0.0001298701245104894,0.0,-3.5419125197222456e-05,2.117582368135751e-21,-8.325008093379438e-05,-2.5974026357289404e-05,4.235164736271502e-21,-0.002601830055937171,0.00014167650078888983,0.0001298701245104894,0.0007655412773601711,-0.0,-0.0,-2.17963861359749e-05,-0.0,-1.9980019715148956e-05,-4.058441481902264e-05,0.00014757968892809004,-0.00011068477033404633,0.0,-0.0,1.229830741067417e-05,0.0,0.0,0.0,0.0,0.0,0.0001770956296240911,-3.9354585169348866e-05,-3.5419125197222456e-05,-0.0,0.0,7.870917215768714e-06,0.0,0.0,0.0,0.0,0.00014167650078888983,-3.1483668863074854e-05,2.117582368135751e-21,-2.17963861359749e-05,0.0,0.0,4.8436413635499775e-06,0.0,-2.117582368135751e-22,-2.117582368135751e-22,0.00012487512140069157,-0.0,-8.325008093379438e-05,-0.0,0.0,0.0,0.0,8.325007911480498e-06,0.0,0.0,0.0001298701245104894,2.541098841762901e-21,-2.5974026357289404e-05,-1.9980019715148956e-05,0.0,0.0,-2.117582368135751e-22,0.0,3.9960041249287315e-06,-8.470329472543003e-22,8.116882963804528e-05,2.541098841762901e-21,4.235164736271502e-21,-4.058441481902264e-05,0.0,0.0,-2.117582368135751e-22,0.0,-8.470329472543003e-22,3.1218780804920243e-06,10.0,11.0,15.0,0.022229738533496857,-0.003264462808147073,-0.0030077877454459667,-0.0022891347762197256,0.00013774105173069984,0.00016528925334569067,0.0001239669363712892,0.00011655011621769518,0.00011363636440364644,6.68449210934341e-05,-0.003264462808147073,0.001379706198349595,0.00016528925334569067,0.0001239669363712892,-0.00010330578516004607,-3.6730947613250464e-05,-2.7548208890948445e-05,-0.0,-1.6940658945086007e-21,-1.6940658945086007e-21,-0.0030077877454459667,0.00016528925334569067,0.0011454580817371607,0.00011363636440364644,0.0,-3.3057851396733895e-05,-1.6940658945086007e-21,-7.770007505314425e-05,-2.2727272153133526e-05,-4.235164736271502e-21,-0.0022891347762197256,0.0001239669363712892,0.00011363636440364644,0.0006252503953874111,-0.0,-0.0,-1.7709562598611228e-05,-0.0,-1.6233765563811176e-05,-3.0851500923745334e-05,0.00013774105173069984,-0.00010330578516004607,0.0,-0.0,1.147842067439342e-05,0.0,0.0,0.0,0.0,0.0,0.00016528925334569067,-3.6730947613250464e-05,-3.3057851396733895e-05,-0.0,0.0,7.346189249801682e-06,0.0,0.0,0.0,0.0,0.0001239669363712892,-2.7548208890948445e-05,-1.6940658945086007e-21,-1.7709562598611228e-05,0.0,0.0,3.935458607884357e-06,0.0,2.117582368135751e-22,5.293955920339377e-22,0.00011655011621769518,-0.0,-7.770007505314425e-05,-0.0,0.0,0.0,0.0,7.770007869112305e-06,0.0,0.0,0.00011363636440364644,-1.6940658945086007e-21,-2.2727272153133526e-05,-1.6233765563811176e-05,0.0,0.0,2.117582368135751e-22,0.0,3.2467532946611755e-06,6.352747104407253e-22,6.68449210934341e-05,-1.6940658945086007e-21,-4.235164736271502e-21,-3.0851500923745334e-05,0.0,0.0,5.293955920339377e-22,0.0,6.352747104407253e-22,2.2036786049284274e-06,10.0,11.0,16.0,0.020963750779628754,-0.0030672703869640827,-0.0028260676190257072,-0.0020296548027545214,0.00012913222599308938,0.0001549586741020903,0.00010938259947579354,0.00010926573304459453,0.00010026738164015114,5.5704098485875875e-05,-0.0030672703869640827,0.0012949936790391803,0.0001549586741020903,0.00010938259947579354,-9.684917313279584e-05,-3.443526293267496e-05,-2.430724271107465e-05,-0.0,3.8116482626443515e-21,3.3881317890172014e-21,-0.0028260676190257072,0.0001549586741020903,0.0010751202935352921,0.00010026738164015114,0.0,-3.09917340928223e-05,1.4399560103323106e-20,-7.284382445504889e-05,-2.0053475964232348e-05,7.623296525288703e-21,-0.0020296548027545214,0.00010938259947579354,0.00010026738164015114,0.000517310225404799,-0.0,9.715126434510205e-21,-1.4584345990442671e-05,-0.0,-1.3368983672989998e-05,-2.387318636465352e-05,0.00012913222599308938,-9.684917313279584e-05,0.0,-0.0,1.076101943908725e-05,0.0,0.0,0.0,0.0,0.0,0.0001549586741020903,-3.443526293267496e-05,-3.09917340928223e-05,9.715126434510205e-21,0.0,6.887052222737111e-06,-2.158916963008002e-21,-0.0,3.76158192263132e-37,3.76158192263132e-37,0.00010938259947579354,-2.430724271107465e-05,1.4399560103323106e-20,-1.4584345990442671e-05,0.0,-2.158916963008002e-21,3.2409657251264434e-06,0.0,-5.823351512373315e-22,-5.293955920339377e-22,0.00010926573304459453,-0.0,-7.284382445504889e-05,-0.0,0.0,-0.0,0.0,7.2843822636059485e-06,0.0,0.0,0.00010026738164015114,3.8116482626443515e-21,-2.0053475964232348e-05,-1.3368983672989998e-05,0.0,3.76158192263132e-37,-5.823351512373315e-22,0.0,2.673796871022205e-06,-1.0587911840678754e-21,5.5704098485875875e-05,3.3881317890172014e-21,7.623296525288703e-21,-2.387318636465352e-05,0.0,3.76158192263132e-37,-5.293955920339377e-22,0.0,-1.0587911840678754e-21,1.591545697010588e-06,10.0,12.0,3.0,0.07628482580184937,-0.013315850868821144,-0.011388611048460007,-0.03330419585108757,0.0006313131307251751,0.0006993007264100015,0.0022727272007614374,0.0004578754596877843,0.001923076924867928,0.004166666883975267,-0.013315850868821144,0.005957815330475569,0.0006993007264100015,0.0022727272007614374,-0.0004734848625957966,-0.0001554001501062885,-0.0005050505278632045,-7.205123606106903e-21,-1.5696089780904684e-20,-1.3134547630242401e-36,-0.011388611048460007,0.0006993007264100015,0.004176883492618799,0.001923076924867928,7.205869199569194e-21,-0.0001271455839741975,-1.0987526672012243e-19,-0.00027472528745420277,-0.00034965036320500076,-8.821080522045089e-18,-0.03330419585108757,0.0022727272007614374,0.001923076924867928,0.07497086375951767,4.591374234313551e-20,-1.1318986990750191e-19,-0.0022727272007614374,-2.160402613315477e-18,-0.001923076924867928,-0.02500000037252903,0.0006313131307251751,-0.0004734848625957966,7.205869199569194e-21,4.591374234313551e-20,5.260942634777166e-05,-3.673885532150193e-21,-1.1908857078821285e-20,1.0766338293487815e-21,1.3956569544332406e-21,3.1705866405154383e-35,0.0006993007264100015,-0.0001554001501062885,-0.0001271455839741975,-1.1318986990750191e-19,-3.673885532150193e-21,2.82545734080486e-05,2.467714835173663e-20,5.975332823284471e-22,3.8958348926043627e-22,-5.59816729389948e-35,0.0022727272007614374,-0.0005050505278632045,-1.0987526672012243e-19,-0.0022727272007614374,-1.1908857078821285e-20,2.467714835173663e-20,0.0005050505278632045,-9.890702057603768e-23,2.2288928355306747e-35,1.3134547630242401e-36,0.0004578754596877843,-7.205123606106903e-21,-0.00027472528745420277,-2.160402613315477e-18,1.0766338293487815e-21,5.975332823284471e-22,-9.890702057603768e-23,2.4975024643936194e-05,7.023006384880142e-20,8.872911038842202e-19,0.001923076924867928,-1.5696089780904684e-20,-0.00034965036320500076,-0.001923076924867928,1.3956569544332406e-21,3.8958348926043627e-22,2.2288928355306747e-35,7.023006384880142e-20,0.00034965036320500076,-9.391216206813335e-19,0.004166666883975267,-1.3134547630242401e-36,-8.821080522045089e-18,-0.02500000037252903,3.1705866405154383e-35,-5.59816729389948e-35,1.3134547630242401e-36,8.872911038842202e-19,-9.391216206813335e-19,0.012500000186264515,10.0,12.0,4.0,0.06200091540813446,-0.010327797383069992,-0.008829919621348381,-0.021232517436146736,0.0004734848625957966,0.0005244755302555859,0.0013636363437399268,0.00034340660204179585,0.0011538461549207568,0.0020833334419876337,-0.010327797383069992,0.004544118884950876,0.0005244755302555859,0.0013636363437399268,-0.00035511364694684744,-0.00011655011621769518,-0.0003030303050763905,2.545455676366226e-21,-6.1140101780448044e-21,-5.196151669749364e-35,-0.008829919621348381,0.0005244755302555859,0.0031851103994995356,0.0011538461549207568,2.571142138546055e-20,-9.535918798064813e-05,-7.211717948111312e-20,-0.00020604395831469446,-0.00020979020337108523,1.9282016416384197e-18,-0.021232517436146736,0.0013636363437399268,0.0011538461549207568,0.028738344088196754,3.241648765409144e-20,-7.707329674470994e-20,-0.0009090909152291715,6.71240730269684e-19,-0.0007692307699471712,-0.0062500000931322575,0.0004734848625957966,-0.00035511364694684744,2.571142138546055e-20,3.241648765409144e-20,3.9457070670323446e-05,-2.5465989062118467e-21,-7.163607055733697e-21,-9.950474868807705e-22,-3.2773791131815074e-23,1.1879675662921601e-36,0.0005244755302555859,-0.00011655011621769518,-9.535918798064813e-05,-7.707329674470994e-20,-2.5465989062118467e-21,2.119093005603645e-05,1.5764923486331313e-20,-1.9304577456591057e-22,1.1147524970568236e-21,7.240299755123821e-36,0.0013636363437399268,-0.0003030303050763905,-7.211717948111312e-20,-0.0009090909152291715,-7.163607055733697e-21,1.5764923486331313e-20,0.00020202020823489875,7.37547775255792e-23,2.0076082159719759e-22,4.022553022394545e-37,0.00034340660204179585,2.545455676366226e-21,-0.00020604395831469446,6.71240730269684e-19,-9.950474868807705e-22,-1.9304577456591057e-22,7.37547775255792e-23,1.8731268937699497e-05,-3.740814137228536e-20,-1.552759535194962e-19,0.0011538461549207568,-6.1140101780448044e-21,-0.00020979020337108523,-0.0007692307699471712,-3.2773791131815074e-23,1.1147524970568236e-21,2.0076082159719759e-22,-3.740814137228536e-20,0.0001398601452820003,-1.4677747405673225e-19,0.0020833334419876337,-5.196151669749364e-35,1.9282016416384197e-18,-0.0062500000931322575,1.1879675662921601e-36,7.240299755123821e-36,4.022553022394545e-37,-1.552759535194962e-19,-1.4677747405673225e-19,0.0020833334419876337,10.0,12.0,5.0,0.052312687039375305,-0.008444055914878845,-0.007217782083898783,-0.014750249683856964,0.0003787878667935729,0.00041958040674217045,0.0009090909152291715,0.00027472528745420277,0.0007692307699471712,0.0011904762359336019,-0.008444055914878845,0.003675699234008789,0.00041958040674217045,0.0009090909152291715,-0.0002840909000951797,-9.324009442934766e-05,-0.00020202020823489875,-3.8624702394796095e-19,-4.912791094074942e-19,-2.042049404476237e-18,-0.007217782083898783,0.00041958040674217045,0.0025760603602975607,0.0007692307699471712,-7.119596781995842e-19,-7.628734601894394e-05,-4.0419324371222734e-20,-0.00016483516083098948,-0.0001398601452820003,-1.6099521727647678e-18,-0.014750249683856964,0.0009090909152291715,0.0007692307699471712,0.014517981559038162,-1.4487094423694999e-18,-8.630076304961606e-21,-0.00045454545761458576,-7.860465750519907e-19,-0.0003846153849735856,-0.0023809524718672037,0.0003787878667935729,-0.0002840909000951797,-7.119596781995842e-19,-1.4487094423694999e-18,3.156565799145028e-05,3.07189353225479e-20,4.4785577847538284e-20,4.3009530599507436e-20,5.2067907939393215e-20,2.4030801376432484e-19,0.00041958040674217045,-9.324009442934766e-05,-7.628734601894394e-05,-8.630076304961606e-21,3.07189353225479e-20,1.695274477242492e-05,3.0560870316335677e-21,-8.470329472543003e-22,-8.470329472543003e-22,2.395456367239236e-34,0.0009090909152291715,-0.00020202020823489875,-4.0419324371222734e-20,-0.00045454545761458576,4.4785577847538284e-20,3.0560870316335677e-21,0.00010101010411744937,4.774677437860463e-22,1.2458781936565596e-20,-6.036136616369192e-20,0.00027472528745420277,-3.8624702394796095e-19,-0.00016483516083098948,-7.860465750519907e-19,4.3009530599507436e-20,-8.470329472543003e-22,4.774677437860463e-22,1.4985014786361717e-05,3.218725199566341e-20,1.5210705044219969e-19,0.0007692307699471712,-4.912791094074942e-19,-0.0001398601452820003,-0.0003846153849735856,5.2067907939393215e-20,-8.470329472543003e-22,1.2458781936565596e-20,3.218725199566341e-20,6.993007264100015e-05,-3.16126781250173e-20,0.0011904762359336019,-2.042049404476237e-18,-1.6099521727647678e-18,-0.0023809524718672037,2.4030801376432484e-19,2.395456367239236e-34,-6.036136616369192e-20,1.5210705044219969e-19,-3.16126781250173e-20,0.0005952381179668009,10.0,12.0,6.0,0.04527902603149414,-0.007144938223063946,-0.006106393411755562,-0.010854770429432392,0.00031565656536258757,0.00034965036320500076,0.0006493506371043622,0.00022893772984389216,0.0005494505749084055,0.0007440476329065859,-0.007144938223063946,0.003087132703512907,0.00034965036320500076,0.0006493506371043622,-0.0002367424312978983,-7.770007505314425e-05,-0.00014430013834498823,6.776263578034403e-21,3.3881317890172014e-21,1.0593445460986916e-35,-0.006106393411755562,0.00034965036320500076,0.0021633668802678585,0.0005494505749084055,6.132191995649632e-21,-6.357279198709875e-05,-3.501518863952615e-20,-0.00013736264372710139,-9.990009857574478e-05,-9.434421918158511e-19,-0.010854770429432392,0.0006493506371043622,0.0005494505749084055,0.008434169925749302,2.5668802196868463e-20,-3.6998496329789814e-20,-0.0002597402490209788,-5.827586677109586e-19,-0.00021978022414259613,-0.0011160714784637094,0.00031565656536258757,-0.0002367424312978983,6.132191995649632e-21,2.5668802196868463e-20,2.630471317388583e-05,-2.3451192366924883e-21,-6.48451843001537e-21,3.831840224053427e-22,1.9044264717465159e-22,-2.3101553128096584e-37,0.00034965036320500076,-7.770007505314425e-05,-6.357279198709875e-05,-3.6998496329789814e-20,-2.3451192366924883e-21,1.41272867040243e-05,8.370580699515771e-21,-8.470329472543003e-22,0.0,-1.6010073063546093e-36,0.0006493506371043622,-0.00014430013834498823,-3.501518863952615e-20,-0.0002597402490209788,-6.48451843001537e-21,8.370580699515771e-21,5.77200589759741e-05,-2.230912019045974e-22,-9.09232433442217e-23,1.8220477449640237e-37,0.00022893772984389216,6.776263578034403e-21,-0.00013736264372710139,-5.827586677109586e-19,3.831840224053427e-22,-8.470329472543003e-22,-2.230912019045974e-22,1.2487512321968097e-05,2.795208725939191e-20,8.714466660459201e-20,0.0005494505749084055,3.3881317890172014e-21,-9.990009857574478e-05,-0.00021978022414259613,1.9044264717465159e-22,0.0,-9.09232433442217e-23,2.795208725939191e-20,3.996003943029791e-05,-6.0596440554021834e-21,0.0007440476329065859,1.0593445460986916e-35,-9.434421918158511e-19,-0.0011160714784637094,-2.3101553128096584e-37,-1.6010073063546093e-36,1.8220477449640237e-37,8.714466660459201e-20,-6.0596440554021834e-21,0.00022321428696159273,10.0,12.0,7.0,0.03992931544780731,-0.006193806417286396,-0.005292921327054501,-0.008327089250087738,0.00027056277031078935,0.00029970030300319195,0.0004870129923801869,0.00019623234402388334,0.00041208791662938893,0.0004960317746736109,-0.006193806417286396,0.0026615746319293976,0.00029970030300319195,0.0004870129923801869,-0.000202922077733092,-6.660006329184398e-05,-0.00010822511103469878,2.778268066994105e-19,3.6253010142484055e-19,5.683323276353041e-19,-0.005292921327054501,0.00029970030300319195,0.0018650180427357554,0.00041208791662938893,5.085079373984784e-19,-5.4490963520947844e-05,2.355215686927037e-20,-0.00011773940059356391,-7.492507575079799e-05,2.34879899488387e-19,-0.008327089250087738,0.0004870129923801869,0.00041208791662938893,0.005355061497539282,6.994748861179565e-19,-2.3668327277720053e-20,-0.00016233765927609056,-3.7269449679189215e-20,-0.00013736264372710139,-0.0005952381179668009,0.00027056277031078935,-0.000202922077733092,5.085079373984784e-19,6.994748861179565e-19,2.2546897525899112e-05,-1.1005524151125094e-20,-1.5613701299424695e-20,-2.5913629886725686e-20,-4.1196664120695174e-20,-5.59049887746993e-20,0.00029970030300319195,-6.660006329184398e-05,-5.4490963520947844e-05,-2.3668327277720053e-20,-1.1005524151125094e-20,1.2109103408874944e-05,2.6202922977372253e-21,-6.776263578034403e-21,1.2705494208814505e-21,2.2406340670596625e-22,0.0004870129923801869,-0.00010822511103469878,2.355215686927037e-20,-0.00016233765927609056,-1.5613701299424695e-20,2.6202922977372253e-21,3.607503458624706e-05,-3.0355105099995277e-21,-1.464243853681619e-22,-2.2139917225572267e-20,0.00019623234402388334,2.778268066994105e-19,-0.00011773940059356391,-3.7269449679189215e-20,-2.5913629886725686e-20,-6.776263578034403e-21,-3.0355105099995277e-21,1.0703582120186184e-05,5.929230630780102e-21,-1.7164858010624122e-21,0.00041208791662938893,3.6253010142484055e-19,-7.492507575079799e-05,-0.00013736264372710139,-4.1196664120695174e-20,1.2705494208814505e-21,-1.464243853681619e-22,5.929230630780102e-21,2.4975024643936194e-05,-8.465909872379527e-20,0.0004960317746736109,5.683323276353041e-19,2.34879899488387e-19,-0.0005952381179668009,-5.59049887746993e-20,2.2406340670596625e-22,-2.2139917225572267e-20,-1.7164858010624122e-21,-8.465909872379527e-20,9.920635056914762e-05,10.0,12.0,8.0,0.03571879491209984,-0.005466928705573082,-0.004671370144933462,-0.00659236591309309,0.0002367424312978983,0.00026223776512779295,0.0003787878667935729,0.00017170330102089792,0.00032051283051259816,0.00034722223062999547,-0.005466928705573082,0.002339399652555585,0.00026223776512779295,0.0003787878667935729,-0.00017755682347342372,-5.827505810884759e-05,-8.417508070124313e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,0.0,-0.004671370144933462,0.00026223776512779295,0.0016391752287745476,0.00032051283051259816,7.46902814884113e-21,-4.7679593990324065e-05,-1.9833849153286665e-20,-0.00010302197915734723,-5.827505810884759e-05,2.37313826742036e-19,-0.00659236591309309,0.0003787878667935729,0.00032051283051259816,0.0036196443252265453,5.94555290759382e-21,-2.172335423896939e-20,-0.00010822511103469878,1.7279472123987727e-19,-9.157509339274839e-05,-0.00034722223062999547,0.0002367424312978983,-0.00017755682347342372,7.46902814884113e-21,5.94555290759382e-21,1.9728535335161723e-05,-2.2568996973494977e-21,-1.4034006655143797e-21,2.0692315055329446e-22,6.722726907923742e-23,0.0,0.00026223776512779295,-5.827505810884759e-05,-4.7679593990324065e-05,-2.172335423896939e-20,-2.2568996973494977e-21,1.0595465028018225e-05,4.407522034063703e-21,-4.235164736271502e-22,4.235164736271502e-22,-0.0,0.0003787878667935729,-8.417508070124313e-05,-1.9833849153286665e-20,-0.00010822511103469878,-1.4034006655143797e-21,4.407522034063703e-21,2.405002487648744e-05,0.0,2.82118644197349e-37,-0.0,0.00017170330102089792,-3.3881317890172014e-21,-0.00010302197915734723,1.7279472123987727e-19,2.0692315055329446e-22,-4.235164736271502e-22,0.0,9.365634468849748e-06,-7.623296525288703e-21,-1.8485231330921254e-20,0.00032051283051259816,-3.3881317890172014e-21,-5.827505810884759e-05,-9.157509339274839e-05,6.722726907923742e-23,4.235164736271502e-22,2.82118644197349e-37,-7.623296525288703e-21,1.6650015822960995e-05,-9.707504902206067e-21,0.00034722223062999547,0.0,2.37313826742036e-19,-0.00034722223062999547,0.0,-0.0,-0.0,-1.8485231330921254e-20,-9.707504902206067e-21,4.960317528457381e-05,10.0,12.0,9.0,0.032316386699676514,-0.004893162287771702,-0.004180819261819124,-0.005349650513380766,0.00021043770539108664,0.00023310023243539035,0.0003030303050763905,0.00015262515807989985,0.00025641024694778025,0.00025252526393160224,-0.004893162287771702,0.0020869486033916473,0.00023310023243539035,0.0003030303050763905,-0.00015782828268129379,-5.18000524607487e-05,-6.73400645609945e-05,0.0,8.470329472543003e-22,-1.0088204586760777e-35,-0.004180819261819124,0.00023310023243539035,0.0014622246380895376,0.00025641024694778025,2.148229248272127e-21,-4.23818601120729e-05,-1.6709789928065616e-20,-9.157509339274839e-05,-4.662004721467383e-05,-2.632718917372923e-19,-0.005349650513380766,0.0003030303050763905,0.00025641024694778025,0.0025639638770371675,1.1477159271948102e-21,-1.5797999401723497e-20,-7.575757626909763e-05,-2.710505431213761e-19,-6.410256173694506e-05,-0.00021645022206939757,0.00021043770539108664,-0.00015782828268129379,2.148229248272127e-21,1.1477159271948102e-21,1.7536476661916822e-05,-9.687554218638018e-22,-3.29331353548712e-22,1.661023502549445e-22,6.0777296193548e-23,-0.0,0.00023310023243539035,-5.18000524607487e-05,-4.23818601120729e-05,-1.5797999401723497e-20,-9.687554218638018e-22,9.4181914391811e-06,3.7132864711715664e-21,0.0,-0.0,1.834219064692742e-36,0.0003030303050763905,-6.73400645609945e-05,-1.6709789928065616e-20,-7.575757626909763e-05,-3.29331353548712e-22,3.7132864711715664e-21,1.6835016140248626e-05,0.0,-1.88079096131566e-37,0.0,0.00015262515807989985,0.0,-9.157509339274839e-05,-2.710505431213761e-19,1.661023502549445e-22,0.0,0.0,8.325007911480498e-06,1.1011428314305904e-20,2.6119392679685385e-20,0.00025641024694778025,8.470329472543003e-22,-4.662004721467383e-05,-6.410256173694506e-05,6.0777296193548e-23,-0.0,-1.88079096131566e-37,1.1011428314305904e-20,1.1655011803668458e-05,-6.01035491532782e-21,0.00025252526393160224,-1.0088204586760777e-35,-2.632718917372923e-19,-0.00021645022206939757,-0.0,1.834219064692742e-36,0.0,2.6119392679685385e-20,-6.01035491532782e-21,2.7056277758674696e-05,10.0,12.0,10.0,0.029508672654628754,-0.00442863954231143,-0.003783716354519129,-0.00442863954231143,0.00018939393339678645,0.00020979020337108523,0.0002479338727425784,0.00013736264372710139,0.00020979020337108523,0.00018939393339678645,-0.00442863954231143,0.0018837633542716503,0.00020979020337108523,0.0002479338727425784,-0.00014204545004758984,-4.662004721467383e-05,-5.509641778189689e-05,-1.9312351197398048e-19,-1.071561366385531e-19,-2.744386749103933e-19,-0.003783716354519129,0.00020979020337108523,0.0013198165688663721,0.00020979020337108523,-3.6271081453928924e-19,-3.814367300947197e-05,1.1011428314305904e-20,-8.241758041549474e-05,-3.814367300947197e-05,-1.8295911660692887e-19,-0.00442863954231143,0.0002479338727425784,0.00020979020337108523,0.0018837633542716503,-3.9375195609747215e-19,-3.659036670802586e-21,-5.509641778189689e-05,-2.1280565426422036e-19,-4.662004721467383e-05,-0.00014204545004758984,0.00018939393339678645,-0.00014204545004758984,-3.6271081453928924e-19,-3.9375195609747215e-19,1.578282899572514e-05,1.5004070803560248e-20,1.081174820690531e-20,2.115337025137067e-20,1.3909827175426232e-20,2.9874807200960336e-20,0.00020979020337108523,-4.662004721467383e-05,-3.814367300947197e-05,-3.659036670802586e-21,1.5004070803560248e-20,8.47637238621246e-06,1.192280686592888e-21,4.235164736271502e-22,-3.329613254030791e-22,-8.392885545973391e-23,0.0002479338727425784,-5.509641778189689e-05,1.1011428314305904e-20,-5.509641778189689e-05,1.081174820690531e-20,1.192280686592888e-21,1.224364859808702e-05,-5.293955920339377e-23,-3.5998900258307764e-21,1.6940658945086007e-21,0.00013736264372710139,-1.9312351197398048e-19,-8.241758041549474e-05,-2.1280565426422036e-19,2.115337025137067e-20,4.235164736271502e-22,-5.293955920339377e-23,7.492507393180858e-06,7.623296525288703e-21,1.8846483076408183e-20,0.00020979020337108523,-1.071561366385531e-19,-3.814367300947197e-05,-4.662004721467383e-05,1.3909827175426232e-20,-3.329613254030791e-22,-3.5998900258307764e-21,7.623296525288703e-21,8.47637238621246e-06,-5.505714157152952e-21,0.00018939393339678645,-2.744386749103933e-19,-1.8295911660692887e-19,-0.00014204545004758984,2.9874807200960336e-20,-8.392885545973391e-23,1.6940658945086007e-21,1.8846483076408183e-20,-5.505714157152952e-21,1.578282899572514e-05,10.0,12.0,11.0,0.02715163677930832,-0.004044818691909313,-0.0034556351602077484,-0.0037269548047333956,0.000172176311025396,0.00019071837596129626,0.00020661157032009214,0.00012487512140069157,0.00017482518160250038,0.00014568764891009778,-0.004044818691909313,0.0017166860634461045,0.00019071837596129626,0.00020661157032009214,-0.00012913222599308938,-4.23818601120729e-05,-4.591368269757368e-05,1.1858461261560205e-20,8.059878252067643e-21,1.8634724839594607e-20,-0.0034556351602077484,0.00019071837596129626,0.0012027228949591517,0.00017482518160250038,1.9652058694655154e-22,-3.4676068025873974e-05,8.470329472543003e-21,-7.492507575079799e-05,-3.178639599354938e-05,1.1350241493207625e-19,-0.0037269548047333956,0.00020661157032009214,0.00017482518160250038,0.001425266615115106,-3.7209197164824256e-21,4.4316847552382015e-22,-4.132231333642267e-05,1.009366948597376e-19,-3.4965036320500076e-05,-9.712509927339852e-05,0.000172176311025396,-0.00012913222599308938,1.9652058694655154e-22,-3.7209197164824256e-21,1.4348025615618099e-05,7.304996375446661e-22,1.0008802613051023e-21,-2.7012220554966027e-22,-5.664601270024383e-23,-4.373733266092238e-23,0.00019071837596129626,-4.23818601120729e-05,-3.4676068025873974e-05,4.4316847552382015e-22,7.304996375446661e-22,7.705792995693628e-06,6.656069423610015e-23,-1.6940658945086007e-21,-1.0871931901044898e-23,-1.3271331388137308e-22,0.00020661157032009214,-4.591368269757368e-05,8.470329472543003e-21,-4.132231333642267e-05,1.0008802613051023e-21,6.656069423610015e-23,9.182736903312616e-06,0.0,-1.6940658945086007e-21,-4.235164736271502e-21,0.00012487512140069157,1.1858461261560205e-20,-7.492507575079799e-05,1.009366948597376e-19,-2.7012220554966027e-22,-1.6940658945086007e-21,0.0,6.8113704401184805e-06,-5.293955920339377e-21,-7.30565917006834e-21,0.00017482518160250038,8.059878252067643e-21,-3.178639599354938e-05,-3.4965036320500076e-05,-5.664601270024383e-23,-1.0871931901044898e-23,-1.6940658945086007e-21,-5.293955920339377e-21,6.3572792896593455e-06,-6.3527471044072525e-21,0.00014568764891009778,1.8634724839594607e-20,1.1350241493207625e-19,-9.712509927339852e-05,-4.373733266092238e-23,-1.3271331388137308e-22,-4.235164736271502e-21,-7.30565917006834e-21,-6.3527471044072525e-21,9.71250938164303e-06,10.0,12.0,12.0,0.025144459679722786,-0.0037223193794488907,-0.003179993014782667,-0.003179993014782667,0.00015782828268129379,0.00017482518160250038,0.00017482518160250038,0.00011446886492194608,0.00014792899310123175,0.00011446886492194608,-0.0037223193794488907,0.001576866372488439,0.00017482518160250038,0.00017482518160250038,-0.00011837121564894915,-3.885003752657212e-05,-3.885003752657212e-05,0.0,9.174057417640326e-21,-1.6940658945086007e-21,-0.003179993014782667,0.00017482518160250038,0.001104737282730639,0.00014792899310123175,2.9720991188910253e-21,-3.178639599354938e-05,-8.470329472543003e-22,-6.868132186355069e-05,-2.689618122531101e-05,-1.0672615135404184e-19,-0.003179993014782667,0.00017482518160250038,0.00014792899310123175,0.001104737282730639,2.5982334749078387e-21,-9.7051946126046e-21,-3.178639599354938e-05,-1.6210343767202353e-19,-2.689618122531101e-05,-6.868132186355069e-05,0.00015782828268129379,-0.00011837121564894915,2.9720991188910253e-21,2.5982334749078387e-21,1.3152356586942915e-05,-7.59209529681701e-22,-8.909272379918127e-22,5.404467760096151e-23,-3.563702174074353e-23,1.3562433683938345e-22,0.00017482518160250038,-3.885003752657212e-05,-3.178639599354938e-05,-9.7051946126046e-21,-7.59209529681701e-22,7.06364335201215e-06,2.1850698855830643e-21,0.0,1.3040571271787161e-22,-4.7006548957001025e-23,0.00017482518160250038,-3.885003752657212e-05,-8.470329472543003e-22,-3.178639599354938e-05,-8.909272379918127e-22,2.1850698855830643e-21,7.06364335201215e-06,5.293955920339377e-23,-1.5881867761018131e-21,4.235164736271502e-22,0.00011446886492194608,0.0,-6.868132186355069e-05,-1.6210343767202353e-19,5.404467760096151e-23,0.0,5.293955920339377e-23,6.243756160984049e-06,6.776263578034403e-21,1.1329065669526267e-20,0.00014792899310123175,9.174057417640326e-21,-2.689618122531101e-05,-2.689618122531101e-05,-3.563702174074353e-23,1.3040571271787161e-22,-1.5881867761018131e-21,6.776263578034403e-21,4.890214768238366e-06,-3.1763735522036263e-21,0.00011446886492194608,-1.6940658945086007e-21,-1.0672615135404184e-19,-6.868132186355069e-05,1.3562433683938345e-22,-4.7006548957001025e-23,4.235164736271502e-22,1.1329065669526267e-20,-3.1763735522036263e-21,6.243756160984049e-06,10.0,12.0,13.0,0.023414406925439835,-0.0034475140273571014,-0.002945131855085492,-0.002745331497862935,0.00014568764891009778,0.00016137708735186607,0.00014985015150159597,0.00010566356650087982,0.0001267962798010558,9.157509339274839e-05,-0.0034475140273571014,0.001458130544051528,0.00016137708735186607,0.00014985015150159597,-0.00010926573304459453,-3.586157254176214e-05,-3.330003164592199e-05,5.505714157152952e-21,-7.199780051661553e-21,-5.082197683525802e-21,-0.002945131855085492,0.00016137708735186607,0.001021530944854021,0.0001267962798010558,0.0,-2.9341288609430194e-05,-7.199780051661553e-21,-6.33981399005279e-05,-2.305386988155078e-05,4.404571325722362e-20,-0.002745331497862935,0.00014985015150159597,0.0001267962798010558,0.0008738056640140712,-0.0,-4.040158068065378e-22,-2.4975024643936194e-05,8.494427570232146e-20,-2.1132713300175965e-05,-4.995004928787239e-05,0.00014568764891009778,-0.00010926573304459453,0.0,-0.0,1.2140637409174815e-05,0.0,0.0,0.0,0.0,0.0,0.00016137708735186607,-3.586157254176214e-05,-2.9341288609430194e-05,-4.040158068065378e-22,0.0,6.520286206068704e-06,1.1547538412686045e-23,-1.0587911840678754e-21,1.1565011366192328e-22,-3.0470440350870934e-23,0.00014985015150159597,-3.330003164592199e-05,-7.199780051661553e-21,-2.4975024643936194e-05,0.0,1.1547538412686045e-23,5.550005425902782e-06,-5.293955920339377e-23,1.2705494208814505e-21,8.470329472543003e-22,0.00010566356650087982,5.505714157152952e-21,-6.33981399005279e-05,8.494427570232146e-20,0.0,-1.0587911840678754e-21,-5.293955920339377e-23,5.763467470387695e-06,-5.505714157152952e-21,-4.605741650695258e-21,0.0001267962798010558,-7.199780051661553e-21,-2.305386988155078e-05,-2.1132713300175965e-05,0.0,1.1565011366192328e-22,1.2705494208814505e-21,-5.505714157152952e-21,3.84231134376023e-06,8.470329472543003e-22,9.157509339274839e-05,-5.082197683525802e-21,4.404571325722362e-20,-4.995004928787239e-05,0.0,-3.0470440350870934e-23,8.470329472543003e-22,-4.605741650695258e-21,8.470329472543003e-22,4.162503955740249e-06,10.0,12.0,14.0,0.02190764620900154,-0.0032105394639074802,-0.002742614597082138,-0.0023941684048622847,0.00013528138515539467,0.00014985015150159597,0.0001298701245104894,9.811617201194167e-05,0.00010989011207129806,7.440476474585012e-05,-0.0032105394639074802,0.001356039778329432,0.00014985015150159597,0.0001298701245104894,-0.000101461038866546,-3.330003164592199e-05,-2.886002948798705e-05,1.4992483166401116e-19,1.0079692072326174e-19,5.082197683525802e-20,-0.002742614597082138,0.00014985015150159597,0.0009499915759079158,0.00010989011207129806,2.5727671930205523e-19,-2.7245481760473922e-05,1.0587911840678754e-20,-5.886970029678196e-05,-1.9980019715148956e-05,-1.0164395367051604e-20,-0.0023941684048622847,0.0001298701245104894,0.00010989011207129806,0.0007031550048850477,1.764585885162102e-19,-6.0853585480187855e-21,-1.9980019715148956e-05,-1.8234897720111725e-20,-1.6906171367736533e-05,-3.720238237292506e-05,0.00013528138515539467,-0.000101461038866546,2.5727671930205523e-19,1.764585885162102e-19,1.1273448762949556e-05,-5.115872173951093e-21,-3.7516397019366105e-21,-1.303869047592782e-20,-1.0289681725904277e-20,-6.570922453316649e-21,0.00014985015150159597,-3.330003164592199e-05,-2.7245481760473922e-05,-6.0853585480187855e-21,-5.115872173951093e-21,6.054551704437472e-06,2.126190165898033e-22,-4.870439446712227e-21,-1.0183581877905321e-21,7.168835701544149e-22,0.0001298701245104894,-2.886002948798705e-05,1.0587911840678754e-20,-1.9980019715148956e-05,-3.7516397019366105e-21,2.126190165898033e-22,4.440004431671696e-06,-7.146840492458159e-22,-5.293955920339377e-22,4.235164736271502e-22,9.811617201194167e-05,1.4992483166401116e-19,-5.886970029678196e-05,-1.8234897720111725e-20,-1.303869047592782e-20,-4.870439446712227e-21,-7.146840492458159e-22,5.351791060093092e-06,-4.235164736271502e-22,1.0587911840678754e-21,0.00010989011207129806,1.0079692072326174e-19,-1.9980019715148956e-05,-1.6906171367736533e-05,-1.0289681725904277e-20,-1.0183581877905321e-21,-5.293955920339377e-22,-4.235164736271502e-22,3.073849256907124e-06,-1.6940658945086007e-21,7.440476474585012e-05,5.082197683525802e-20,-1.0164395367051604e-20,-3.720238237292506e-05,-6.570922453316649e-21,7.168835701544149e-22,4.235164736271502e-22,1.0587911840678754e-21,-1.6940658945086007e-21,2.861721668523387e-06,10.0,12.0,15.0,0.02058347687125206,-0.003004079218953848,-0.002566183917224407,-0.002106386236846447,0.00012626263196580112,0.0001398601452820003,0.00011363636440364644,9.157509339274839e-05,9.61538462433964e-05,6.127451342763379e-05,-0.003004079218953848,0.0012673205928876996,0.0001398601452820003,0.00011363636440364644,-9.469696669839323e-05,-3.108003147644922e-05,-2.5252526029362343e-05,1.2705494208814505e-21,-1.6940658945086007e-21,0.0,-0.002566183917224407,0.0001398601452820003,0.0008878242806531489,9.61538462433964e-05,0.0,-2.5429117158637382e-05,-1.2705494208814505e-21,-5.494505603564903e-05,-1.7482518160250038e-05,3.3881317890172014e-20,-0.002106386236846447,0.00011363636440364644,9.61538462433964e-05,0.0005742909270338714,-0.0,6.498019563527175e-23,-1.6233765563811176e-05,5.705694117525596e-20,-1.3736264008912258e-05,-2.8280543119763024e-05,0.00012626263196580112,-9.469696669839323e-05,0.0,-0.0,1.0521885087655392e-05,0.0,0.0,0.0,0.0,0.0,0.0001398601452820003,-3.108003147644922e-05,-2.5429117158637382e-05,6.498019563527175e-23,0.0,5.65091477255919e-06,-1.8368273162816173e-24,-2.117582368135751e-22,-5.449379820240918e-23,-4.487453797580998e-24,0.00011363636440364644,-2.5252526029362343e-05,-1.2705494208814505e-21,-1.6233765563811176e-05,0.0,-1.8368273162816173e-24,3.607503685998381e-06,-2.6469779601696886e-23,2.117582368135751e-22,1.0587911840678754e-22,9.157509339274839e-05,1.2705494208814505e-21,-5.494505603564903e-05,5.705694117525596e-20,0.0,-2.117582368135751e-22,-2.6469779601696886e-23,4.995004928787239e-06,-2.752857078576476e-21,-2.9116757561866574e-21,9.61538462433964e-05,-1.6940658945086007e-21,-1.7482518160250038e-05,-1.3736264008912258e-05,0.0,-5.449379820240918e-23,2.117582368135751e-22,-2.752857078576476e-21,2.4975024643936194e-06,-2.117582368135751e-22,6.127451342763379e-05,0.0,3.3881317890172014e-20,-2.8280543119763024e-05,0.0,-4.487453797580998e-24,1.0587911840678754e-22,-2.9116757561866574e-21,-2.117582368135751e-22,2.0200388917146483e-06,10.0,12.0,16.0,0.019410543143749237,-0.0028225909918546677,-0.002411099849268794,-0.0018675870960578322,0.00011837121564894915,0.00013111888256389648,0.00010026738164015114,8.585165051044896e-05,8.484163117827848e-05,5.1062092097708955e-05,-0.0028225909918546677,0.0011895056813955307,0.00013111888256389648,0.00010026738164015114,-8.877841173671186e-05,-2.9137529054423794e-05,-2.228163975814823e-05,7.52316384526264e-36,2.541098841762901e-21,-4.235164736271502e-21,-0.002411099849268794,0.00013111888256389648,0.0008332993602380157,8.484163117827848e-05,0.0,-2.3839796995162033e-05,2.117582368135751e-21,-5.1510989578673616e-05,-1.5425750461872667e-05,3.049318610115481e-20,-0.0018675870960578322,0.00010026738164015114,8.484163117827848e-05,0.0004751437227241695,-0.0,-0.0,-1.3368983672989998e-05,4.844985225182895e-20,-1.1312216884107329e-05,-2.188375401601661e-05,0.00011837121564894915,-8.877841173671186e-05,0.0,-0.0,9.864267667580862e-06,0.0,0.0,0.0,0.0,0.0,0.00013111888256389648,-2.9137529054423794e-05,-2.3839796995162033e-05,-0.0,0.0,5.2977325140091125e-06,0.0,0.0,0.0,0.0,0.00010026738164015114,-2.228163975814823e-05,2.117582368135751e-21,-1.3368983672989998e-05,0.0,0.0,2.970885361719411e-06,-7.52316384526264e-37,-3.705769144237564e-22,5.293955920339377e-22,8.585165051044896e-05,7.52316384526264e-36,-5.1510989578673616e-05,4.844985225182895e-20,0.0,0.0,-7.52316384526264e-37,4.682817234424874e-06,-2.242499767276721e-21,-2.4077402017957337e-21,8.484163117827848e-05,2.541098841762901e-21,-1.5425750461872667e-05,-1.1312216884107329e-05,0.0,0.0,-3.705769144237564e-22,-2.242499767276721e-21,2.056766788882669e-06,-7.411538288475128e-22,5.1062092097708955e-05,-4.235164736271502e-21,3.049318610115481e-20,-2.188375401601661e-05,0.0,0.0,5.293955920339377e-22,-2.4077402017957337e-21,-7.411538288475128e-22,1.4589169268219848e-06,10.0,13.0,3.0,0.07114551961421967,-0.012337662279605865,-0.009840159676969051,-0.030869130045175552,0.0005827505956403911,0.0005994006060063839,0.0020979021210223436,0.00036630037357099354,0.0016483516665175557,0.003846153849735856,-0.012337662279605865,0.005509768147021532,0.0005994006060063839,0.0020979021210223436,-0.0004370629321783781,-0.00013320012658368796,-0.0004662004648707807,-2.710505431213761e-20,0.0,-0.0,-0.009840159676969051,0.0005994006060063839,0.0033050281926989555,0.0016483516665175557,0.0,-9.990009857574478e-05,0.0,-0.00019980019715148956,-0.00027472528745420277,-0.0,-0.030869130045175552,0.0020979021210223436,0.0016483516665175557,0.06933066993951797,0.0,0.0,-0.0020979021210223436,0.0,-0.0016483516665175557,-0.023076923564076424,0.0005827505956403911,-0.0004370629321783781,0.0,0.0,4.856254963669926e-05,0.0,0.0,0.0,0.0,-0.0,0.0005994006060063839,-0.00013320012658368796,-9.990009857574478e-05,0.0,0.0,2.2200021703611128e-05,0.0,3.797727152208382e-21,0.0,-0.0,0.0020979021210223436,-0.0004662004648707807,0.0,-0.0020979021210223436,0.0,0.0,0.0004662004648707807,0.0,0.0,-0.0,0.00036630037357099354,-2.710505431213761e-20,-0.00019980019715148956,0.0,0.0,3.797727152208382e-21,0.0,1.6650015822960995e-05,0.0,-0.0,0.0016483516665175557,0.0,-0.00027472528745420277,-0.0016483516665175557,0.0,0.0,0.0,0.0,0.00027472528745420277,-0.0,0.003846153849735856,-0.0,-0.0,-0.023076923564076424,-0.0,-0.0,-0.0,-0.0,-0.0,0.011538461782038212,10.0,13.0,4.0,0.05779720097780228,-0.009567932225763798,-0.00762737262994051,-0.019675325602293015,0.0004370629321783781,0.0004495504545047879,0.0012587412493303418,0.00027472528745420277,0.0009890110231935978,0.001923076924867928,-0.009567932225763798,0.004202255979180336,0.0004495504545047879,0.0012587412493303418,-0.0003277971991337836,-9.990009857574478e-05,-0.0002797202905640006,-1.6940658945086007e-20,2.538926280964599e-21,-0.0,-0.00762737262994051,0.0004495504545047879,0.0025199800729751587,0.0009890110231935978,0.0,-7.492507575079799e-05,0.0,-0.00014985015150159597,-0.00016483516083098948,-0.0,-0.019675325602293015,0.0012587412493303418,0.0009890110231935978,0.026578420773148537,0.0,2.538926280964599e-21,-0.0008391608134843409,1.0449899501972409e-20,-0.0006593406433239579,-0.005769230891019106,0.0004370629321783781,-0.0003277971991337836,0.0,0.0,3.6421912227524444e-05,0.0,0.0,0.0,0.0,-0.0,0.0004495504545047879,-9.990009857574478e-05,-7.492507575079799e-05,2.538926280964599e-21,0.0,1.6650015822960995e-05,0.0,2.601631862443982e-21,-4.231543801607665e-22,-0.0,0.0012587412493303418,-0.0002797202905640006,0.0,-0.0008391608134843409,0.0,0.0,0.00018648018885869533,0.0,0.0,-0.0,0.00027472528745420277,-1.6940658945086007e-20,-0.00014985015150159597,1.0449899501972409e-20,0.0,2.601631862443982e-21,0.0,1.2487512321968097e-05,-1.741649984311532e-21,-0.0,0.0009890110231935978,2.538926280964599e-21,-0.00016483516083098948,-0.0006593406433239579,0.0,-4.231543801607665e-22,0.0,-1.741649984311532e-21,0.00010989011207129806,-0.0,0.001923076924867928,-0.0,-0.0,-0.005769230891019106,-0.0,-0.0,-0.0,-0.0,-0.0,0.001923076924867928,10.0,13.0,5.0,0.04875124990940094,-0.00782217737287283,-0.006233766209334135,-0.013666333630681038,0.00034965036320500076,0.00035964036942459643,0.0008391608134843409,0.00021978022414259613,0.0006593406433239579,0.001098901149816811,-0.00782217737287283,0.0033991008531302214,0.00035964036942459643,0.0008391608134843409,-0.00026223776512779295,-7.992007886059582e-05,-0.00018648018885869533,6.140988867593677e-20,3.3881317890172014e-21,-0.0,-0.006233766209334135,0.00035964036942459643,0.002037961967289448,0.0006593406433239579,0.0,-5.994005914544687e-05,0.0,-0.00011988011829089373,-0.00010989011207129806,-0.0,-0.013666333630681038,0.0008391608134843409,0.0006593406433239579,0.013426573015749454,0.0,2.8511994830036545e-21,-0.00041958040674217045,6.776263578034403e-21,-0.00032967032166197896,-0.002197802299633622,0.00034965036320500076,-0.00026223776512779295,0.0,0.0,2.9137529054423794e-05,0.0,0.0,0.0,0.0,-0.0,0.00035964036942459643,-7.992007886059582e-05,-5.994005914544687e-05,2.8511994830036545e-21,0.0,1.3320013749762438e-05,0.0,-1.0164395367051604e-20,0.0,-0.0,0.0008391608134843409,-0.00018648018885869533,0.0,-0.00041958040674217045,0.0,0.0,9.324009442934766e-05,0.0,0.0,-0.0,0.00021978022414259613,6.140988867593677e-20,-0.00011988011829089373,6.776263578034403e-21,0.0,-1.0164395367051604e-20,0.0,9.990009857574478e-06,0.0,-0.0,0.0006593406433239579,3.3881317890172014e-21,-0.00010989011207129806,-0.00032967032166197896,0.0,0.0,0.0,0.0,5.494505603564903e-05,-0.0,0.001098901149816811,-0.0,-0.0,-0.002197802299633622,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005494505749084055,10.0,13.0,6.0,0.04218757525086403,-0.006618381477892399,-0.0052732983604073524,-0.010056015104055405,0.00029137529782019556,0.00029970030300319195,0.0005994006060063839,0.00018315018678549677,0.00047095760237425566,0.0006868132040835917,-0.006618381477892399,0.002854784019291401,0.00029970030300319195,0.0005994006060063839,-0.00021853146608918905,-6.660006329184398e-05,-0.00013320012658368796,-1.4399560103323106e-20,1.6940658945086007e-21,-0.0,-0.0052732983604073524,0.00029970030300319195,0.001711383811198175,0.00047095760237425566,0.0,-4.995004928787239e-05,0.0,-9.990009857574478e-05,-7.849293615436181e-05,-0.0,-0.010056015104055405,0.0005994006060063839,0.00047095760237425566,0.007799878716468811,0.0,4.1430625371489836e-21,-0.00023976023658178747,0.0,-0.00018838304094970226,-0.001030219835229218,0.00029137529782019556,-0.00021853146608918905,0.0,0.0,2.428127481834963e-05,0.0,0.0,0.0,0.0,-0.0,0.00029970030300319195,-6.660006329184398e-05,-4.995004928787239e-05,4.1430625371489836e-21,0.0,1.1100010851805564e-05,0.0,1.6940658945086007e-21,-4.235164736271502e-22,-0.0,0.0005994006060063839,-0.00013320012658368796,0.0,-0.00023976023658178747,0.0,0.0,5.328005499904975e-05,0.0,0.0,-0.0,0.00018315018678549677,-1.4399560103323106e-20,-9.990009857574478e-05,0.0,0.0,1.6940658945086007e-21,0.0,8.325007911480498e-06,0.0,-0.0,0.00047095760237425566,1.6940658945086007e-21,-7.849293615436181e-05,-0.00018838304094970226,0.0,-4.235164736271502e-22,0.0,0.0,3.139717591693625e-05,-0.0,0.0006868132040835917,-0.0,-0.0,-0.001030219835229218,-0.0,-0.0,-0.0,-0.0,-0.0,0.00020604395831469446,10.0,13.0,7.0,0.03719732537865639,-0.005737119819968939,-0.004570429679006338,-0.0077137150801718235,0.00024975024280138314,0.000256885978160426,0.0004495504545047879,0.00015698587230872363,0.00035321820178069174,0.0004578754596877843,-0.005737119819968939,0.002461229218170047,0.000256885978160426,0.0004495504545047879,-0.00018731268937699497,-5.7085770095000044e-05,-9.990009857574478e-05,-1.3552527156068805e-20,0.0,-0.0,-0.004570429679006338,0.000256885978160426,0.001475310418754816,0.00035321820178069174,0.0,-4.2814328480744734e-05,0.0,-8.562865696148947e-05,-5.886970029678196e-05,-0.0,-0.0077137150801718235,0.0004495504545047879,0.00035321820178069174,0.0049521904438734055,0.0,1.7225949418608355e-21,-0.00014985015150159597,6.776263578034403e-21,-0.00011773940059356391,-0.0005494505749084055,0.00024975024280138314,-0.00018731268937699497,0.0,0.0,2.0812520233448595e-05,0.0,0.0,0.0,0.0,-0.0,0.000256885978160426,-5.7085770095000044e-05,-4.2814328480744734e-05,1.7225949418608355e-21,0.0,9.51429501583334e-06,0.0,2.117582368135751e-21,-2.117582368135751e-22,-0.0,0.0004495504545047879,-9.990009857574478e-05,0.0,-0.00014985015150159597,0.0,0.0,3.330003164592199e-05,0.0,0.0,-0.0,0.00015698587230872363,-1.3552527156068805e-20,-8.562865696148947e-05,6.776263578034403e-21,0.0,2.117582368135751e-21,0.0,7.1357212618750054e-06,-8.470329472543003e-22,-0.0,0.00035321820178069174,0.0,-5.886970029678196e-05,-0.00011773940059356391,0.0,-2.117582368135751e-22,0.0,-8.470329472543003e-22,1.9623234038590454e-05,-0.0,0.0004578754596877843,-0.0,-0.0,-0.0005494505749084055,-0.0,-0.0,-0.0,-0.0,-0.0,9.157509339274839e-05,10.0,13.0,8.0,0.03327089548110962,-0.005063686519861221,-0.004033466335386038,-0.006106393411755562,0.00021853146608918905,0.00022477522725239396,0.00034965036320500076,0.00013736264372710139,0.00027472528745420277,0.00032051283051259816,-0.005063686519861221,0.0021632881835103035,0.00022477522725239396,0.00034965036320500076,-0.0001638985995668918,-4.995004928787239e-05,-7.770007505314425e-05,-7.835054762102278e-21,3.3881317890172014e-21,-0.0,-0.004033466335386038,0.00022477522725239396,0.0012966200010851026,0.00027472528745420277,0.0,-3.7462537875398993e-05,0.0,-7.492507575079799e-05,-4.578754669637419e-05,-0.0,-0.006106393411755562,0.00034965036320500076,0.00027472528745420277,0.0033472480718046427,0.0,2.5325259305852915e-21,-9.990009857574478e-05,6.776263578034403e-21,-7.849293615436181e-05,-0.00032051283051259816,0.00021853146608918905,-0.0001638985995668918,0.0,0.0,1.8210956113762222e-05,0.0,0.0,0.0,0.0,-0.0,0.00022477522725239396,-4.995004928787239e-05,-3.7462537875398993e-05,2.5325259305852915e-21,0.0,8.325007911480498e-06,0.0,1.6940658945086007e-21,-4.235164736271502e-22,-0.0,0.00034965036320500076,-7.770007505314425e-05,0.0,-9.990009857574478e-05,0.0,0.0,2.2200021703611128e-05,0.0,0.0,-0.0,0.00013736264372710139,-7.835054762102278e-21,-7.492507575079799e-05,6.776263578034403e-21,0.0,1.6940658945086007e-21,0.0,6.243756160984049e-06,-8.470329472543003e-22,-0.0,0.00027472528745420277,3.3881317890172014e-21,-4.578754669637419e-05,-7.849293615436181e-05,0.0,-4.235164736271502e-22,0.0,-8.470329472543003e-22,1.308215632889187e-05,-0.0,0.00032051283051259816,-0.0,-0.0,-0.00032051283051259816,-0.0,-0.0,-0.0,-0.0,-0.0,4.578754669637419e-05,10.0,13.0,9.0,0.030098790302872658,-0.004532134626060724,-0.0036097236443310976,-0.004955044947564602,0.00019425019854679704,0.00019980019715148956,0.0002797202905640006,0.00012210012937430292,0.00021978022414259613,0.00023310023243539035,-0.004532134626060724,0.0019298294791951776,0.00019980019715148956,0.0002797202905640006,-0.00014568764891009778,-4.4400043407222256e-05,-6.216006295289844e-05,-1.1858461261560205e-20,0.0,-0.0,-0.0036097236443310976,0.00019980019715148956,0.0011566211469471455,0.00021978022414259613,0.0,-3.330003164592199e-05,0.0,-6.660006329184398e-05,-3.6630037357099354e-05,-0.0,-0.004955044947564602,0.0002797202905640006,0.00021978022414259613,0.002370962407439947,0.0,-3.582797025601771e-23,-6.993007264100015e-05,0.0,-5.494505603564903e-05,-0.00019980019715148956,0.00019425019854679704,-0.00014568764891009778,0.0,0.0,1.618751593923662e-05,0.0,0.0,0.0,0.0,-0.0,0.00019980019715148956,-4.4400043407222256e-05,-3.330003164592199e-05,-3.582797025601771e-23,0.0,7.400007234537043e-06,0.0,1.6940658945086007e-21,0.0,-0.0,0.0002797202905640006,-6.216006295289844e-05,0.0,-6.993007264100015e-05,0.0,0.0,1.554001573822461e-05,0.0,0.0,-0.0,0.00012210012937430292,-1.1858461261560205e-20,-6.660006329184398e-05,0.0,0.0,1.6940658945086007e-21,0.0,5.550005425902782e-06,0.0,-0.0,0.00021978022414259613,0.0,-3.6630037357099354e-05,-5.494505603564903e-05,0.0,0.0,0.0,0.0,9.157509339274839e-06,-0.0,0.00023310023243539035,-0.0,-0.0,-0.00019980019715148956,-0.0,-0.0,-0.0,-0.0,-0.0,2.4975024643936194e-05,10.0,13.0,10.0,0.02748160995543003,-0.004101807251572609,-0.0032667333725839853,-0.004101807251572609,0.00017482518160250038,0.00017982018471229821,0.00022886204533278942,0.00010989011207129806,0.00017982018471229821,0.00017482518160250038,-0.004101807251572609,0.001741932355798781,0.00017982018471229821,0.00022886204533278942,-0.00013111888256389648,-3.996003943029791e-05,-5.0858234317274764e-05,2.922263668027336e-20,0.0,-0.0,-0.0032667333725839853,0.00017982018471229821,0.0010439560282975435,0.00017982018471229821,0.0,-2.9970029572723433e-05,0.0,-5.994005914544687e-05,-2.9970029572723433e-05,-0.0,-0.004101807251572609,0.00022886204533278942,0.00017982018471229821,0.001741932355798781,0.0,-2.246840446008707e-22,-5.0858234317274764e-05,1.6940658945086007e-21,-3.996003943029791e-05,-0.00013111888256389648,0.00017482518160250038,-0.00013111888256389648,0.0,0.0,1.4568764527211897e-05,0.0,0.0,0.0,0.0,-0.0,0.00017982018471229821,-3.996003943029791e-05,-2.9970029572723433e-05,-2.246840446008707e-22,0.0,6.660006874881219e-06,0.0,-5.082197683525802e-21,-1.0587911840678754e-22,-0.0,0.00022886204533278942,-5.0858234317274764e-05,0.0,-5.0858234317274764e-05,0.0,0.0,1.130182954511838e-05,0.0,0.0,-0.0,0.00010989011207129806,2.922263668027336e-20,-5.994005914544687e-05,1.6940658945086007e-21,0.0,-5.082197683525802e-21,0.0,4.995004928787239e-06,-6.352747104407253e-22,-0.0,0.00017982018471229821,0.0,-2.9970029572723433e-05,-3.996003943029791e-05,0.0,-1.0587911840678754e-22,0.0,-6.352747104407253e-22,6.660006874881219e-06,-0.0,0.00017482518160250038,-0.0,-0.0,-0.00013111888256389648,-0.0,-0.0,-0.0,-0.0,-0.0,1.4568764527211897e-05,10.0,13.0,11.0,0.02528485469520092,-0.0037462536711245775,-0.0029833803419023752,-0.0034517929889261723,0.00015893197269178927,0.00016347289783880115,0.00019071837596129626,9.990009857574478e-05,0.00014985015150159597,0.00013448089885059744,-0.0037462536711245775,0.0015874276868999004,0.00016347289783880115,0.00019071837596129626,-0.00011919897951884195,-3.632731022662483e-05,-4.23818601120729e-05,-6.776263578034403e-21,8.470329472543003e-22,-2.0328790734103208e-20,-0.0029833803419023752,0.00016347289783880115,0.0009513213881291449,0.00014985015150159597,0.0,-2.7245481760473922e-05,0.0,-5.4490963520947844e-05,-2.4975024643936194e-05,0.0,-0.0034517929889261723,0.00019071837596129626,0.00014985015150159597,0.0013179361121729016,-0.0,-0.0,-3.814367300947197e-05,-1.5757534194677672e-21,-2.9970029572723433e-05,-8.965393499238417e-05,0.00015893197269178927,-0.00011919897951884195,0.0,-0.0,1.3244331057649106e-05,0.0,0.0,0.0,0.0,0.0,0.00016347289783880115,-3.632731022662483e-05,-2.7245481760473922e-05,-0.0,0.0,6.054551704437472e-06,0.0,1.4823076576950256e-21,-1.0587911840678754e-22,5.625304006258618e-23,0.00019071837596129626,-4.23818601120729e-05,0.0,-3.814367300947197e-05,0.0,0.0,8.47637238621246e-06,0.0,2.117582368135751e-22,4.235164736271502e-21,9.990009857574478e-05,-6.776263578034403e-21,-5.4490963520947844e-05,-1.5757534194677672e-21,0.0,1.4823076576950256e-21,0.0,4.540913778328104e-06,2.117582368135751e-22,1.0587911840678754e-22,0.00014985015150159597,8.470329472543003e-22,-2.4975024643936194e-05,-2.9970029572723433e-05,0.0,-1.0587911840678754e-22,2.117582368135751e-22,2.117582368135751e-22,4.995004928787239e-06,0.0,0.00013448089885059744,-2.0328790734103208e-20,0.0,-8.965393499238417e-05,0.0,5.625304006258618e-23,4.235164736271502e-21,1.0587911840678754e-22,0.0,8.965393135440536e-06,10.0,13.0,12.0,0.023414406925439835,-0.0034475140273571014,-0.002745331497862935,-0.002945131855085492,0.00014568764891009778,0.00014985015150159597,0.00016137708735186607,9.157509339274839e-05,0.0001267962798010558,0.00010566356650087982,-0.0034475140273571014,0.001458130544051528,0.00014985015150159597,0.00016137708735186607,-0.00010926573304459453,-3.330003164592199e-05,-3.586157254176214e-05,-6.776263578034403e-21,5.505714157152952e-21,6.776263578034403e-21,-0.002745331497862935,0.00014985015150159597,0.0008738056640140712,0.0001267962798010558,0.0,-2.4975024643936194e-05,7.623296525288703e-21,-4.995004928787239e-05,-2.1132713300175965e-05,1.5246593050577406e-20,-0.002945131855085492,0.00016137708735186607,0.0001267962798010558,0.001021530944854021,-0.0,-0.0,-2.9341288609430194e-05,-3.454878559763625e-22,-2.305386988155078e-05,-6.33981399005279e-05,0.00014568764891009778,-0.00010926573304459453,0.0,-0.0,1.2140637409174815e-05,0.0,0.0,0.0,0.0,0.0,0.00014985015150159597,-3.330003164592199e-05,-2.4975024643936194e-05,-0.0,0.0,5.550005425902782e-06,-1.3234889800848443e-23,8.470329472543003e-22,0.0,-1.7267796422814758e-24,0.00016137708735186607,-3.586157254176214e-05,7.623296525288703e-21,-2.9341288609430194e-05,0.0,-1.3234889800848443e-23,6.520286206068704e-06,-2.6469779601696886e-23,-1.2705494208814505e-21,-1.0587911840678754e-21,9.157509339274839e-05,-6.776263578034403e-21,-4.995004928787239e-05,-3.454878559763625e-22,0.0,8.470329472543003e-22,-2.6469779601696886e-23,4.162503955740249e-06,0.0,-5.293955920339377e-23,0.0001267962798010558,5.505714157152952e-21,-2.1132713300175965e-05,-2.305386988155078e-05,0.0,0.0,-1.2705494208814505e-21,0.0,3.84231134376023e-06,-2.752857078576476e-21,0.00010566356650087982,6.776263578034403e-21,1.5246593050577406e-20,-6.33981399005279e-05,0.0,-1.7267796422814758e-24,-1.0587911840678754e-21,-5.293955920339377e-23,-2.752857078576476e-21,5.763467470387695e-06,10.0,13.0,13.0,0.021802373230457306,-0.0031929609831422567,-0.0025425124913454056,-0.0025425124913454056,0.00013448089885059744,0.00013832321565132588,0.00013832321565132588,8.453085320070386e-05,0.00010868252866202965,8.453085320070386e-05,-0.0031929609831422567,0.0013483311049640179,0.00013832321565132588,0.00013832321565132588,-0.00010086067777592689,-3.073849075008184e-05,-3.073849075008184e-05,1.5246593050577406e-20,-8.470329472543003e-22,1.5246593050577406e-20,-0.0025425124913454056,0.00013832321565132588,0.0008079832186922431,0.00010868252866202965,0.0,-2.305386988155078e-05,-8.470329472543003e-22,-4.610773976310156e-05,-1.8113754777004942e-05,-3.3881317890172014e-21,-0.0025425124913454056,0.00013832321565132588,0.00010868252866202965,0.0008079832186922431,-0.0,-7.008137288303683e-22,-2.305386988155078e-05,-5.706766705823788e-22,-1.8113754777004942e-05,-4.610773976310156e-05,0.00013448089885059744,-0.00010086067777592689,0.0,-0.0,1.120674187404802e-05,0.0,0.0,0.0,0.0,0.0,0.00013832321565132588,-3.073849075008184e-05,-2.305386988155078e-05,-7.008137288303683e-22,0.0,5.123082246427657e-06,-6.4737353483069414e-24,-2.329340604949326e-21,6.86507338728289e-23,8.724288536611635e-23,0.00013832321565132588,-3.073849075008184e-05,-8.470329472543003e-22,-2.305386988155078e-05,0.0,-6.4737353483069414e-24,5.123082246427657e-06,0.0,1.5881867761018131e-22,-2.541098841762901e-21,8.453085320070386e-05,1.5246593050577406e-20,-4.610773976310156e-05,-5.706766705823788e-22,0.0,-2.329340604949326e-21,0.0,3.84231134376023e-06,0.0,1.0587911840678754e-22,0.00010868252866202965,-8.470329472543003e-22,-1.8113754777004942e-05,-1.8113754777004942e-05,0.0,6.86507338728289e-23,1.5881867761018131e-22,0.0,3.0189589779183734e-06,2.117582368135751e-22,8.453085320070386e-05,1.5246593050577406e-20,-3.3881317890172014e-21,-4.610773976310156e-05,0.0,8.724288536611635e-23,-2.541098841762901e-21,1.0587911840678754e-22,2.117582368135751e-22,3.84231134376023e-06,10.0,13.0,14.0,0.02039852924644947,-0.0029734550043940544,-0.0023676324635744095,-0.002217247150838375,0.00012487512140069157,0.000128442989080213,0.00011988011829089373,7.849293615436181e-05,9.419152047485113e-05,6.868132186355069e-05,-0.0029734550043940544,0.0012539246818050742,0.000128442989080213,0.00011988011829089373,-9.365634468849748e-05,-2.8542885047500022e-05,-2.6640027499524876e-05,-4.658681209898652e-21,-4.235164736271502e-21,0.0,-0.0023676324635744095,0.000128442989080213,0.0007513914606533945,9.419152047485113e-05,0.0,-2.1407164240372367e-05,-3.8116482626443515e-21,-4.2814328480744734e-05,-1.5698587958468124e-05,-5.082197683525802e-21,-0.002217247150838375,0.00011988011829089373,9.419152047485113e-05,0.000650180852971971,-0.0,-5.639419946405515e-22,-1.8443095541442744e-05,5.817731288631286e-22,-1.4491003639705013e-05,-3.4340660931775346e-05,0.00012487512140069157,-9.365634468849748e-05,0.0,-0.0,1.0406260116724297e-05,0.0,0.0,0.0,0.0,0.0,0.000128442989080213,-2.8542885047500022e-05,-2.1407164240372367e-05,-5.639419946405515e-22,0.0,4.75714750791667e-06,1.5996835402711955e-23,1.0587911840678754e-21,1.2568942102130822e-23,4.727676852691905e-23,0.00011988011829089373,-2.6640027499524876e-05,-3.8116482626443515e-21,-1.8443095541442744e-05,0.0,1.5996835402711955e-23,4.098465524293715e-06,2.6469779601696886e-23,5.293955920339377e-22,-2.117582368135751e-22,7.849293615436181e-05,-4.658681209898652e-21,-4.2814328480744734e-05,5.817731288631286e-22,0.0,1.0587911840678754e-21,2.6469779601696886e-23,3.5678606309375027e-06,-2.117582368135751e-22,0.0,9.419152047485113e-05,-4.235164736271502e-21,-1.5698587958468124e-05,-1.4491003639705013e-05,0.0,1.2568942102130822e-23,5.293955920339377e-22,-2.117582368135751e-22,2.415167273284169e-06,7.411538288475128e-22,6.868132186355069e-05,0.0,-5.082197683525802e-21,-3.4340660931775346e-05,0.0,4.727676852691905e-23,-2.117582368135751e-22,0.0,7.411538288475128e-22,2.6415891625219956e-06,10.0,13.0,15.0,0.019164903089404106,-0.0027822176925837994,-0.0022152846213430166,-0.0019506963435560465,0.00011655011621769518,0.00011988011829089373,0.00010489510168554261,7.326007471419871e-05,8.241758041549474e-05,5.656108623952605e-05,-0.0027822176925837994,0.001171883661299944,0.00011988011829089373,0.00010489510168554261,-8.741259080125019e-05,-2.6640027499524876e-05,-2.3310023607336916e-05,-4.235164736271502e-21,-3.8116482626443515e-21,-4.235164736271502e-21,-0.0022152846213430166,0.00011988011829089373,0.000702214427292347,8.241758041549474e-05,0.0,-1.9980019715148956e-05,-3.3881317890172014e-21,-3.996003943029791e-05,-1.3736264008912258e-05,-6.776263578034403e-21,-0.0019506963435560465,0.00010489510168554261,8.241758041549474e-05,0.0005310203414410353,-0.0,-4.605867262594918e-22,-1.4985014786361717e-05,-1.2705016600868048e-21,-1.1773940059356391e-05,-2.6105117285624146e-05,0.00011655011621769518,-8.741259080125019e-05,0.0,-0.0,9.71250938164303e-06,0.0,0.0,0.0,0.0,0.0,0.00011988011829089373,-2.6640027499524876e-05,-1.9980019715148956e-05,-4.605867262594918e-22,0.0,4.440004431671696e-06,-2.374611594044955e-25,1.0587911840678754e-21,1.160913835196422e-22,1.64319158577685e-23,0.00010489510168554261,-2.3310023607336916e-05,-3.3881317890172014e-21,-1.4985014786361717e-05,0.0,-2.374611594044955e-25,3.3300034374406096e-06,0.0,4.764560328305439e-22,6.352747104407253e-22,7.326007471419871e-05,-4.235164736271502e-21,-3.996003943029791e-05,-1.2705016600868048e-21,0.0,1.0587911840678754e-21,0.0,3.3300034374406096e-06,2.117582368135751e-22,0.0,8.241758041549474e-05,-3.8116482626443515e-21,-1.3736264008912258e-05,-1.1773940059356391e-05,0.0,1.160913835196422e-22,4.764560328305439e-22,2.117582368135751e-22,1.9623234948085155e-06,9.529120656610879e-22,5.656108623952605e-05,-4.235164736271502e-21,-6.776263578034403e-21,-2.6105117285624146e-05,0.0,1.64319158577685e-23,6.352747104407253e-22,0.0,9.529120656610879e-22,1.864651153482555e-06,10.0,13.0,16.0,0.01807224564254284,-0.002614113735035062,-0.00208137440495193,-0.0017295205034315586,0.00010926573304459453,0.00011238761362619698,9.2554502771236e-05,6.868132186355069e-05,7.272139919223264e-05,4.7134239139268175e-05,-0.002614113735035062,0.001099926419556141,0.00011238761362619698,9.2554502771236e-05,-8.19492997834459e-05,-2.4975024643936194e-05,-2.056766788882669e-05,-5.082197683525802e-21,0.0,3.3881317890172014e-21,-0.00208137440495193,0.00011238761362619698,0.0006590835400857031,7.272139919223264e-05,0.0,-1.8731268937699497e-05,-8.470329472543003e-22,-3.7462537875398993e-05,-1.212023289554054e-05,0.0,-0.0017295205034315586,9.2554502771236e-05,7.272139919223264e-05,0.00043934007408097386,-0.0,3.8106677022282746e-22,-1.2340600733296014e-05,1.6505648982639953e-21,-9.69618577073561e-06,-2.0200388462399133e-05,0.00010926573304459453,-8.19492997834459e-05,0.0,-0.0,9.105478056881111e-06,0.0,0.0,0.0,0.0,0.0,0.00011238761362619698,-2.4975024643936194e-05,-1.8731268937699497e-05,3.8106677022282746e-22,0.0,4.162503955740249e-06,1.5766014701844287e-23,8.470329472543003e-22,-1.672287805187277e-22,1.0838455010810034e-23,9.2554502771236e-05,-2.056766788882669e-05,-8.470329472543003e-22,-1.2340600733296014e-05,0.0,1.5766014701844287e-23,2.7423557185102254e-06,-1.3234889800848443e-23,5.293955920339377e-23,-5.293955920339377e-22,6.868132186355069e-05,-5.082197683525802e-21,-3.7462537875398993e-05,1.6505648982639953e-21,0.0,8.470329472543003e-22,-1.3234889800848443e-23,3.1218780804920243e-06,-2.117582368135751e-22,-2.6469779601696886e-23,7.272139919223264e-05,0.0,-1.212023289554054e-05,-9.69618577073561e-06,0.0,-1.672287805187277e-22,5.293955920339377e-23,-2.117582368135751e-22,1.616030999684881e-06,0.0,4.7134239139268175e-05,3.3881317890172014e-21,0.0,-2.0200388462399133e-05,0.0,1.0838455010810034e-23,-5.293955920339377e-22,-2.6469779601696886e-23,0.0,1.3466925565808197e-06,10.0,14.0,3.0,0.06665584444999695,-0.011493506841361523,-0.008587662130594254,-0.02876623347401619,0.0005411255406215787,0.0005194804980419576,0.0019480519695207477,0.00029761905898340046,0.0014285714132711291,0.0035714285913854837,-0.011493506841361523,0.00512445904314518,0.0005194804980419576,0.0019480519695207477,-0.000405844155466184,-0.0001154401179519482,-0.00043290044413879514,2.1006417091906648e-19,-1.972630985754109e-19,-1.4581890562664494e-17,-0.008587662130594254,0.0005194804980419576,0.002660464495420456,0.0014285714132711291,4.887039927630401e-19,-7.992007886059582e-05,-2.5172949101790977e-19,-0.00014880952949170023,-0.00021978022414259613,-1.4441623891832652e-17,-0.02876623347401619,0.0019480519695207477,0.0014285714132711291,0.06448052078485489,-2.982160022977454e-18,-1.7980447722532008e-18,-0.0019480519695207477,-2.336973414051659e-18,-0.0014285714132711291,-0.02142857201397419,0.0005411255406215787,-0.000405844155466184,4.887039927630401e-19,-2.982160022977454e-18,4.5093795051798224e-05,-1.5006558807746442e-20,1.4203487278875067e-19,-2.6283689813266597e-20,-9.242615665460627e-21,1.2015401205204125e-18,0.0005194804980419576,-0.0001154401179519482,-7.992007886059582e-05,-1.7980447722532008e-18,-1.5006558807746442e-20,1.7760017726686783e-05,5.593988545679139e-20,2.443876241167902e-21,4.3145637353189354e-20,5.796968586735936e-19,0.0019480519695207477,-0.00043290044413879514,-2.5172949101790977e-19,-0.0019480519695207477,1.4203487278875067e-19,5.593988545679139e-20,0.00043290044413879514,-7.628654131755623e-35,1.088086243934073e-34,5.610478048789325e-33,0.00029761905898340046,2.1006417091906648e-19,-0.00014880952949170023,-2.336973414051659e-18,-2.6283689813266597e-20,2.443876241167902e-21,-7.628654131755623e-35,1.1446886674093548e-05,8.033627869198729e-20,8.082667659554847e-19,0.0014285714132711291,-1.972630985754109e-19,-0.00021978022414259613,-0.0014285714132711291,-9.242615665460627e-21,4.3145637353189354e-20,1.088086243934073e-34,8.033627869198729e-20,0.00021978022414259613,1.1303152168886512e-18,0.0035714285913854837,-1.4581890562664494e-17,-1.4441623891832652e-17,-0.02142857201397419,1.2015401205204125e-18,5.796968586735936e-19,5.610478048789325e-33,8.082667659554847e-19,1.1303152168886512e-18,0.010714286006987095,10.0,14.0,4.0,0.054128248244524,-0.008912337943911552,-0.006655032280832529,-0.018331168219447136,0.000405844155466184,0.00038961038808338344,0.0011688311351463199,0.00022321428696159273,0.0008571428479626775,0.0017857142956927419,-0.008912337943911552,0.003908279351890087,0.00038961038808338344,0.0011688311351463199,-0.0003043831093236804,-8.658008300699294e-05,-0.0002597402490209788,1.0164395367051604e-20,-1.9825410941686343e-21,-0.0,-0.006655032280832529,0.00038961038808338344,0.0020283153280615807,0.0008571428479626775,0.0,-5.994005914544687e-05,0.0,-0.00011160714348079637,-0.00013186813157517463,-0.0,-0.018331168219447136,0.0011688311351463199,0.0008571428479626775,0.024720778688788414,0.0,-1.9825410941686343e-21,-0.0007792207761667669,4.603028676000669e-21,-0.0005714285653084517,-0.0053571430034935474,0.000405844155466184,-0.0003043831093236804,0.0,0.0,3.382034628884867e-05,0.0,0.0,0.0,0.0,-0.0,0.00038961038808338344,-8.658008300699294e-05,-5.994005914544687e-05,-1.9825410941686343e-21,0.0,1.3320013749762438e-05,0.0,-1.215256859991738e-21,3.050063163543555e-22,-0.0,0.0011688311351463199,-0.0002597402490209788,0.0,-0.0007792207761667669,0.0,0.0,0.00017316016601398587,0.0,0.0,-0.0,0.00022321428696159273,1.0164395367051604e-20,-0.00011160714348079637,4.603028676000669e-21,0.0,-1.215256859991738e-21,0.0,8.585165232943837e-06,-7.081582384281422e-22,-0.0,0.0008571428479626775,-1.9825410941686343e-21,-0.00013186813157517463,-0.0005714285653084517,0.0,3.050063163543555e-22,0.0,-7.081582384281422e-22,8.791208529146388e-05,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,10.0,14.0,5.0,0.04564471170306206,-0.007285714149475098,-0.005438311491161585,-0.012730983085930347,0.0003246753185521811,0.00031168831628747284,0.0007792207761667669,0.00017857142665889114,0.0005714285653084517,0.0010204081190750003,-0.007285714149475098,0.0031612555030733347,0.00031168831628747284,0.0007792207761667669,-0.00024350649619009346,-6.926406786078587e-05,-0.00017316016601398587,8.046812998915853e-21,-6.776263578034403e-21,-0.0,-0.005438311491161585,0.00031168831628747284,0.0016402347246184945,0.0005714285653084517,0.0,-4.795204949914478e-05,0.0,-8.928571332944557e-05,-8.791208529146388e-05,-0.0,-0.012730983085930347,0.0007792207761667669,0.0005714285653084517,0.012487940490245819,0.0,-4.348859257438495e-21,-0.00038961038808338344,0.0,-0.0002857142826542258,-0.0020408162381500006,0.0003246753185521811,-0.00024350649619009346,0.0,0.0,2.7056277758674696e-05,0.0,0.0,0.0,0.0,-0.0,0.00031168831628747284,-6.926406786078587e-05,-4.795204949914478e-05,-4.348859257438495e-21,0.0,1.065601099980995e-05,0.0,-1.2705494208814505e-21,4.235164736271502e-22,-0.0,0.0007792207761667669,-0.00017316016601398587,0.0,-0.00038961038808338344,0.0,0.0,8.658008300699294e-05,0.0,0.0,-0.0,0.00017857142665889114,8.046812998915853e-21,-8.928571332944557e-05,0.0,0.0,-1.2705494208814505e-21,0.0,6.868132004456129e-06,0.0,-0.0,0.0005714285653084517,-6.776263578034403e-21,-8.791208529146388e-05,-0.0002857142826542258,0.0,4.235164736271502e-22,0.0,0.0,4.395604264573194e-05,-0.0,0.0010204081190750003,-0.0,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,10.0,14.0,6.0,0.03949211537837982,-0.006164193153381348,-0.004599953535944223,-0.009366882964968681,0.00027056277031078935,0.0002597402490209788,0.0005565862520597875,0.00014880952949170023,0.0004081632650922984,0.0006377550889737904,-0.006164193153381348,0.0026549939066171646,0.0002597402490209788,0.0005565862520597875,-0.000202922077733092,-5.77200589759741e-05,-0.00012368583702482283,1.2049043674692422e-19,3.4389537658524594e-19,9.641008208192098e-19,-0.004599953535944223,0.0002597402490209788,0.0013773280661553144,0.0004081632650922984,3.441722235965098e-19,-3.996003943029791e-05,2.203866999547835e-20,-7.440476474585012e-05,-6.27943518338725e-05,6.413774422049884e-19,-0.009366882964968681,0.0005565862520597875,0.0004081632650922984,0.007254406344145536,1.019963636307366e-18,2.0859964764454135e-19,-0.00022263450955506414,9.147955830346444e-20,-0.00016326530021615326,-0.0009566326625645161,0.00027056277031078935,-0.000202922077733092,3.441722235965098e-19,1.019963636307366e-18,2.2546897525899112e-05,-7.503279403873221e-21,-2.090199135568551e-20,-1.3141844906633298e-20,-4.1776624358845684e-20,-1.1130338112299816e-19,0.0002597402490209788,-5.77200589759741e-05,-3.996003943029791e-05,2.0859964764454135e-19,-7.503279403873221e-21,8.880008863343392e-06,-8.785285760914671e-21,8.470329472543003e-22,-3.8116482626443515e-21,-2.719969863761531e-20,0.0005565862520597875,-0.00012368583702482283,2.203866999547835e-20,-0.00022263450955506414,-2.090199135568551e-20,-8.785285760914671e-21,4.9474336265120655e-05,-3.0896744823020203e-21,2.3064352952411364e-20,8.577104272456821e-20,0.00014880952949170023,1.2049043674692422e-19,-7.440476474585012e-05,9.147955830346444e-20,-1.3141844906633298e-20,8.470329472543003e-22,-3.0896744823020203e-21,5.723443337046774e-06,5.929230630780102e-21,-2.4169028426668924e-20,0.0004081632650922984,3.4389537658524594e-19,-6.27943518338725e-05,-0.00016326530021615326,-4.1776624358845684e-20,-3.8116482626443515e-21,2.3064352952411364e-20,5.929230630780102e-21,2.5117738914559595e-05,-9.585571209773648e-20,0.0006377550889737904,9.641008208192098e-19,6.413774422049884e-19,-0.0009566326625645161,-1.1130338112299816e-19,-2.719969863761531e-20,8.577104272456821e-20,-2.4169028426668924e-20,-9.585571209773648e-20,0.00019132652960252017,10.0,14.0,7.0,0.034816015511751175,-0.005343228112906218,-0.003986549098044634,-0.0071846009232103825,0.00023191094805952162,0.00022263450955506414,0.00041743970359675586,0.00012755101488437504,0.0003061224415432662,0.00042517005931586027,-0.005343228112906218,0.00228896108455956,0.00022263450955506414,0.00041743970359675586,-0.0001739332074066624,-4.9474336265120655e-05,-9.276437776861712e-05,1.2790197503539935e-19,2.964615315390051e-19,6.73265875204367e-19,-0.003986549098044634,0.00022263450955506414,0.0011872948380187154,0.0003061224415432662,2.526965427021667e-19,-3.4251461329404265e-05,6.105887329053019e-20,-6.377550744218752e-05,-4.7095760237425566e-05,1.808478156415697e-19,-0.0071846009232103825,0.00041743970359675586,0.0003061224415432662,0.004605751484632492,5.140910963404816e-19,6.813824040192846e-20,-0.00013914656301494688,-3.3881317890172014e-21,-0.0001020408162730746,-0.0005102040595375001,0.00023191094805952162,-0.0001739332074066624,2.526965427021667e-19,5.140910963404816e-19,1.932591294462327e-05,7.038073613023734e-22,1.429608720000386e-21,-1.1264438145202727e-20,-2.644048416019801e-20,-4.791856319167409e-20,0.00022263450955506414,-4.9474336265120655e-05,-3.4251461329404265e-05,6.813824040192846e-20,7.038073613023734e-22,7.611436103616143e-06,2.1734804207909876e-22,-2.964615315390051e-21,-3.5998900258307764e-21,-7.4645125828019e-21,0.00041743970359675586,-9.276437776861712e-05,6.105887329053019e-20,-0.00013914656301494688,1.429608720000386e-21,2.1734804207909876e-22,3.092145925620571e-05,-1.9310464757081158e-21,-1.2311112425766408e-20,-6.449315917278844e-20,0.00012755101488437504,1.2790197503539935e-19,-6.377550744218752e-05,-3.3881317890172014e-21,-1.1264438145202727e-20,-2.964615315390051e-21,-1.9310464757081158e-21,4.905808509647613e-06,2.117582368135751e-21,-2.3601680269479147e-21,0.0003061224415432662,2.964615315390051e-19,-4.7095760237425566e-05,-0.0001020408162730746,-2.644048416019801e-20,-3.5998900258307764e-21,-1.2311112425766408e-20,2.117582368135751e-21,1.5698587958468124e-05,-4.6604632025073354e-20,0.00042517005931586027,6.73265875204367e-19,1.808478156415697e-19,-0.0005102040595375001,-4.791856319167409e-20,-7.4645125828019e-21,-6.449315917278844e-20,-2.3601680269479147e-21,-4.6604632025073354e-20,8.50340147735551e-05,10.0,14.0,8.0,0.03113771602511406,-0.0047159092500805855,-0.003517992328852415,-0.005687229335308075,0.000202922077733092,0.00019480519404169172,0.0003246753185521811,0.00011160714348079637,0.0002380952355451882,0.00029761905898340046,-0.0047159092500805855,0.002011859556660056,0.00019480519404169172,0.0003246753185521811,-0.0001521915546618402,-4.329004150349647e-05,-7.215006917249411e-05,4.235164736271502e-21,1.6940658945086007e-21,-1.7032033531553308e-36,-0.003517992328852415,0.00019480519404169172,0.0010434617288410664,0.0002380952355451882,0.0,-2.9970029572723433e-05,0.0,-5.5803571740398183e-05,-3.6630037357099354e-05,5.693451198224958e-20,-0.005687229335308075,0.0003246753185521811,0.0002380952355451882,0.0031130178831517696,0.0,1.8246342135471437e-21,-9.276437776861712e-05,1.6940658945086007e-21,-6.80272132740356e-05,-0.00029761905898340046,0.000202922077733092,-0.0001521915546618402,0.0,0.0,1.6910173144424334e-05,0.0,0.0,0.0,0.0,-0.0,0.00019480519404169172,-4.329004150349647e-05,-2.9970029572723433e-05,1.8246342135471437e-21,0.0,6.660006874881219e-06,0.0,-6.352747104407253e-22,-2.117582368135751e-22,2.620312885501702e-37,0.0003246753185521811,-7.215006917249411e-05,0.0,-9.276437776861712e-05,0.0,0.0,2.0614306777133606e-05,0.0,0.0,-0.0,0.00011160714348079637,4.235164736271502e-21,-5.5803571740398183e-05,1.6940658945086007e-21,0.0,-6.352747104407253e-22,0.0,4.292582616471918e-06,-4.235164736271502e-22,7.34847282192156e-37,0.0002380952355451882,1.6940658945086007e-21,-3.6630037357099354e-05,-6.80272132740356e-05,0.0,-2.117582368135751e-22,0.0,-4.235164736271502e-22,1.0465724699315615e-05,-1.6267004346692528e-20,0.00029761905898340046,-1.7032033531553308e-36,5.693451198224958e-20,-0.00029761905898340046,-0.0,2.620312885501702e-37,-0.0,7.34847282192156e-37,-1.6267004346692528e-20,4.251700738677755e-05,10.0,14.0,9.0,0.028166666626930237,-0.004220779053866863,-0.0031482684426009655,-0.004614718724042177,0.0001803751802071929,0.00017316016601398587,0.0002597402490209788,9.920635056914762e-05,0.00019047618843615055,0.00021645022206939757,-0.004220779053866863,0.0017947329906746745,0.00017316016601398587,0.0002597402490209788,-0.00013528138515539467,-3.848003689199686e-05,-5.77200589759741e-05,-2.625802136488331e-20,0.0,-0.0,-0.0031482684426009655,0.00017316016601398587,0.0009307775762863457,0.00019047618843615055,0.0,-2.6640027499524876e-05,0.0,-4.960317528457381e-05,-2.930402843048796e-05,-0.0,-0.004614718724042177,0.0002597402490209788,0.00019047618843615055,0.002205009339377284,0.0,3.400448167045334e-22,-6.49350622552447e-05,-1.6940658945086007e-21,-4.761904710903764e-05,-0.00018552875553723425,0.0001803751802071929,-0.00013528138515539467,0.0,0.0,1.5031265320430975e-05,0.0,0.0,0.0,0.0,-0.0,0.00017316016601398587,-3.848003689199686e-05,-2.6640027499524876e-05,3.400448167045334e-22,0.0,5.920006060478045e-06,0.0,4.0234064994579266e-21,0.0,-0.0,0.0002597402490209788,-5.77200589759741e-05,0.0,-6.49350622552447e-05,0.0,0.0,1.4430014743993524e-05,0.0,0.0,-0.0,9.920635056914762e-05,-2.625802136488331e-20,-4.960317528457381e-05,-1.6940658945086007e-21,0.0,4.0234064994579266e-21,0.0,3.815629042946966e-06,2.117582368135751e-22,-0.0,0.00019047618843615055,0.0,-2.930402843048796e-05,-4.761904710903764e-05,0.0,0.0,0.0,2.117582368135751e-22,7.32600710762199e-06,-0.0,0.00021645022206939757,-0.0,-0.0,-0.00018552875553723425,-0.0,-0.0,-0.0,-0.0,-0.0,2.319109444215428e-05,10.0,14.0,10.0,0.02571576088666916,-0.003819952718913555,-0.002849025884643197,-0.003819952718913555,0.00016233765927609056,0.00015584415814373642,0.00021251475845929235,8.928571332944557e-05,0.00015584415814373642,0.00016233765927609056,-0.003819952718913555,0.0016199823003262281,0.00015584415814373642,0.00021251475845929235,-0.00012175324809504673,-3.4632033930392936e-05,-4.722550147562288e-05,1.9058241313221758e-21,0.0,-0.0,-0.002849025884643197,0.00015584415814373642,0.0008400973747484386,0.00015584415814373642,0.0,-2.397602474957239e-05,0.0,-4.4642856664722785e-05,-2.397602474957239e-05,-0.0,-0.003819952718913555,0.00021251475845929235,0.00015584415814373642,0.0016199823003262281,0.0,5.275766996675515e-23,-4.722550147562288e-05,-1.6940658945086007e-21,-3.4632033930392936e-05,-0.00012175324809504673,0.00016233765927609056,-0.00012175324809504673,0.0,0.0,1.3528138879337348e-05,0.0,0.0,0.0,0.0,-0.0,0.00015584415814373642,-3.4632033930392936e-05,-2.397602474957239e-05,5.275766996675515e-23,0.0,5.328005499904975e-06,0.0,-4.235164736271502e-22,0.0,-0.0,0.00021251475845929235,-4.722550147562288e-05,0.0,-4.722550147562288e-05,0.0,0.0,1.0494555681361817e-05,0.0,0.0,-0.0,8.928571332944557e-05,1.9058241313221758e-21,-4.4642856664722785e-05,-1.6940658945086007e-21,0.0,-4.235164736271502e-22,0.0,3.4340660022280645e-06,2.117582368135751e-22,-0.0,0.00015584415814373642,0.0,-2.397602474957239e-05,-3.4632033930392936e-05,0.0,0.0,0.0,2.117582368135751e-22,5.328005499904975e-06,-0.0,0.00016233765927609056,-0.0,-0.0,-0.00012175324809504673,-0.0,-0.0,-0.0,-0.0,-0.0,1.3528138879337348e-05,10.0,14.0,11.0,0.023658841848373413,-0.003488783957436681,-0.002601830055937171,-0.0032145127188414335,0.00014757968892809004,0.00014167650078888983,0.0001770956296240911,8.116882963804528e-05,0.0001298701245104894,0.00012487512140069157,-0.003488783957436681,0.0014762888895347714,0.00014167650078888983,0.0001770956296240911,-0.00011068477033404633,-3.1483668863074854e-05,-3.9354585169348866e-05,3.3881317890172014e-21,4.235164736271502e-22,-0.0,-0.002601830055937171,0.00014167650078888983,0.0007655412773601711,0.0001298701245104894,0.0,-2.17963861359749e-05,0.0,-4.058441481902264e-05,-1.9980019715148956e-05,-0.0,-0.0032145127188414335,0.0001770956296240911,0.0001298701245104894,0.0012256531044840813,0.0,1.7943404906608167e-22,-3.5419125197222456e-05,8.470329472543003e-22,-2.5974026357289404e-05,-8.325008093379438e-05,0.00014757968892809004,-0.00011068477033404633,0.0,0.0,1.229830741067417e-05,0.0,0.0,0.0,0.0,-0.0,0.00014167650078888983,-3.1483668863074854e-05,-2.17963861359749e-05,1.7943404906608167e-22,0.0,4.8436413635499775e-06,0.0,-4.235164736271502e-22,0.0,-0.0,0.0001770956296240911,-3.9354585169348866e-05,0.0,-3.5419125197222456e-05,0.0,0.0,7.870917215768714e-06,0.0,0.0,-0.0,8.116882963804528e-05,3.3881317890172014e-21,-4.058441481902264e-05,8.470329472543003e-22,0.0,-4.235164736271502e-22,0.0,3.1218780804920243e-06,-2.117582368135751e-22,-0.0,0.0001298701245104894,4.235164736271502e-22,-1.9980019715148956e-05,-2.5974026357289404e-05,0.0,0.0,0.0,-2.117582368135751e-22,3.9960041249287315e-06,-0.0,0.00012487512140069157,-0.0,-0.0,-8.325008093379438e-05,-0.0,-0.0,-0.0,-0.0,-0.0,8.325007911480498e-06,10.0,14.0,12.0,0.02190764620900154,-0.0032105394639074802,-0.0023941684048622847,-0.002742614597082138,0.00013528138515539467,0.0001298701245104894,0.00014985015150159597,7.440476474585012e-05,0.00010989011207129806,9.811617201194167e-05,-0.0032105394639074802,0.001356039778329432,0.0001298701245104894,0.00014985015150159597,-0.000101461038866546,-2.886002948798705e-05,-3.330003164592199e-05,5.908054807098745e-20,1.130788984584491e-19,1.6093625997831706e-19,-0.0023941684048622847,0.0001298701245104894,0.0007031550048850477,0.00010989011207129806,1.764585885162102e-19,-1.9980019715148956e-05,2.837560373301906e-20,-3.720238237292506e-05,-1.6906171367736533e-05,7.877406409464993e-20,-0.002742614597082138,0.00014985015150159597,0.00010989011207129806,0.0009499915759079158,2.5727671930205523e-19,3.540673264377356e-20,-2.7245481760473922e-05,7.132288596220601e-22,-1.9980019715148956e-05,-5.886970029678196e-05,0.00013528138515539467,-0.000101461038866546,1.764585885162102e-19,2.5727671930205523e-19,1.1273448762949556e-05,-3.7516397019366105e-21,-5.115872173951093e-21,-6.570922453316649e-21,-1.0289681725904277e-20,-1.303869047592782e-20,0.0001298701245104894,-2.886002948798705e-05,-1.9980019715148956e-05,3.540673264377356e-20,-3.7516397019366105e-21,4.440004431671696e-06,-5.522336327328398e-22,4.235164736271502e-22,-6.917272628925727e-22,-2.4762570501957285e-21,0.00014985015150159597,-3.330003164592199e-05,2.837560373301906e-20,-2.7245481760473922e-05,-5.115872173951093e-21,-5.522336327328398e-22,6.054551704437472e-06,-7.411538288475128e-22,-2.964615315390051e-21,-5.082197683525802e-21,7.440476474585012e-05,5.908054807098745e-20,-3.720238237292506e-05,7.132288596220601e-22,-6.570922453316649e-21,4.235164736271502e-22,-7.411538288475128e-22,2.861721668523387e-06,2.541098841762901e-21,-1.4823076576950256e-21,0.00010989011207129806,1.130788984584491e-19,-1.6906171367736533e-05,-1.9980019715148956e-05,-1.0289681725904277e-20,-6.917272628925727e-22,-2.964615315390051e-21,2.541098841762901e-21,3.073849256907124e-06,-9.529120656610879e-21,9.811617201194167e-05,1.6093625997831706e-19,7.877406409464993e-20,-5.886970029678196e-05,-1.303869047592782e-20,-2.4762570501957285e-21,-5.082197683525802e-21,-1.4823076576950256e-21,-9.529120656610879e-21,5.351791060093092e-06,10.0,14.0,13.0,0.02039852924644947,-0.0029734550043940544,-0.002217247150838375,-0.0023676324635744095,0.00012487512140069157,0.00011988011829089373,0.000128442989080213,6.868132186355069e-05,9.419152047485113e-05,7.849293615436181e-05,-0.0029734550043940544,0.0012539246818050742,0.00011988011829089373,0.000128442989080213,-9.365634468849748e-05,-2.6640027499524876e-05,-2.8542885047500022e-05,2.329340604949326e-21,2.964615315390051e-21,-5.082197683525802e-21,-0.002217247150838375,0.00011988011829089373,0.000650180852971971,9.419152047485113e-05,0.0,-1.8443095541442744e-05,3.3881317890172014e-21,-3.4340660931775346e-05,-1.4491003639705013e-05,8.470329472543003e-21,-0.0023676324635744095,0.000128442989080213,9.419152047485113e-05,0.0007513914606533945,-0.0,-0.0,-2.1407164240372367e-05,-6.92321950419139e-22,-1.5698587958468124e-05,-4.2814328480744734e-05,0.00012487512140069157,-9.365634468849748e-05,0.0,-0.0,1.0406260116724297e-05,0.0,0.0,0.0,0.0,0.0,0.00011988011829089373,-2.6640027499524876e-05,-1.8443095541442744e-05,-0.0,0.0,4.098465524293715e-06,-1.3234889800848443e-23,-2.117582368135751e-22,5.293955920339377e-23,-1.776166082037611e-23,0.000128442989080213,-2.8542885047500022e-05,3.3881317890172014e-21,-2.1407164240372367e-05,0.0,-1.3234889800848443e-23,4.75714750791667e-06,0.0,-6.352747104407253e-22,1.0587911840678754e-21,6.868132186355069e-05,2.329340604949326e-21,-3.4340660931775346e-05,-6.92321950419139e-22,0.0,-2.117582368135751e-22,0.0,2.6415891625219956e-06,1.0587911840678754e-22,0.0,9.419152047485113e-05,2.964615315390051e-21,-1.4491003639705013e-05,-1.5698587958468124e-05,0.0,5.293955920339377e-23,-6.352747104407253e-22,1.0587911840678754e-22,2.415167273284169e-06,-1.5881867761018131e-21,7.849293615436181e-05,-5.082197683525802e-21,8.470329472543003e-21,-4.2814328480744734e-05,0.0,-1.776166082037611e-23,1.0587911840678754e-21,0.0,-1.5881867761018131e-21,3.5678606309375027e-06,10.0,14.0,14.0,0.019084416329860687,-0.0027690166607499123,-0.0020647032652050257,-0.0020647032652050257,0.00011595547402976081,0.00011131725477753207,0.00011131725477753207,6.377550744218752e-05,8.163265010807663e-05,6.377550744218752e-05,-0.0027690166607499123,0.00116612552665174,0.00011131725477753207,0.00011131725477753207,-8.69666037033312e-05,-2.4737168132560328e-05,-2.4737168132560328e-05,6.331571280725895e-20,6.733911930671688e-20,6.268043809681823e-20,-0.0020647032652050257,0.00011131725477753207,0.0006046364433132112,8.163265010807663e-05,1.2925639281557544e-19,-1.7125730664702132e-05,9.740878893424454e-21,-3.188775372109376e-05,-1.2558869457279798e-05,-2.1175823681357508e-20,-0.0020647032652050257,0.00011131725477753207,8.163265010807663e-05,0.0006046364433132112,1.2925639281557544e-19,1.1101717016870628e-20,-1.7125730664702132e-05,-1.6976484589780076e-21,-1.2558869457279798e-05,-3.188775372109376e-05,0.00011595547402976081,-8.69666037033312e-05,1.2925639281557544e-19,1.2925639281557544e-19,9.662956472311635e-06,3.519036806511867e-22,3.519036806511867e-22,-5.6322190726013635e-21,-6.549053461975495e-21,-5.6322190726013635e-21,0.00011131725477753207,-2.4737168132560328e-05,-1.7125730664702132e-05,1.1101717016870628e-20,3.519036806511867e-22,3.8057180518080713e-06,4.289682660995836e-23,-1.376428539288238e-21,-7.599887475512166e-22,-4.4948602706251555e-22,0.00011131725477753207,-2.4737168132560328e-05,9.740878893424454e-21,-1.7125730664702132e-05,3.519036806511867e-22,4.289682660995836e-23,3.8057180518080713e-06,-5.029258124322408e-22,-5.823351512373315e-22,-1.2705494208814505e-21,6.377550744218752e-05,6.331571280725895e-20,-3.188775372109376e-05,-1.6976484589780076e-21,-5.6322190726013635e-21,-1.376428539288238e-21,-5.029258124322408e-22,2.4529042548238067e-06,-8.470329472543003e-22,4.235164736271502e-22,8.163265010807663e-05,6.733911930671688e-20,-1.2558869457279798e-05,-1.2558869457279798e-05,-6.549053461975495e-21,-7.599887475512166e-22,-5.823351512373315e-22,-8.470329472543003e-22,1.932133727677865e-06,2.0117032497289633e-21,6.377550744218752e-05,6.268043809681823e-20,-2.1175823681357508e-20,-3.188775372109376e-05,-5.6322190726013635e-21,-4.4948602706251555e-22,-1.2705494208814505e-21,4.235164736271502e-22,2.0117032497289633e-21,2.4529042548238067e-06,10.0,14.0,15.0,0.017929717898368835,-0.0025909091345965862,-0.001931818202137947,-0.0018164629582315683,0.00010822511103469878,0.00010389610542915761,9.740259702084586e-05,5.952380888629705e-05,7.142857066355646e-05,5.25210089108441e-05,-0.0025909091345965862,0.0010898268083110452,0.00010389610542915761,9.740259702084586e-05,-8.116882963804528e-05,-2.308802322659176e-05,-2.1645020751748234e-05,6.352747104407253e-22,-5.082197683525802e-21,-4.235164736271502e-21,-0.001931818202137947,0.00010389610542915761,0.0005650599487125874,7.142857066355646e-05,0.0,-1.5984016499714926e-05,-3.8116482626443515e-21,-2.9761904443148524e-05,-1.0989010661432985e-05,-6.3527471044072525e-21,-0.0018164629582315683,9.740259702084586e-05,7.142857066355646e-05,0.0004938191850669682,-0.0,-1.7132794664468105e-21,-1.3914656847191509e-05,-1.0632884737776532e-21,-1.0204081263509579e-05,-2.424046579108108e-05,0.00010822511103469878,-8.116882963804528e-05,0.0,-0.0,9.018758646561764e-06,0.0,0.0,0.0,0.0,0.0,0.00010389610542915761,-2.308802322659176e-05,-1.5984016499714926e-05,-1.7132794664468105e-21,0.0,3.5520035908120917e-06,1.518893928384796e-23,0.0,1.9422120255823885e-22,2.015938934229908e-23,9.740259702084586e-05,-2.1645020751748234e-05,-3.8116482626443515e-21,-1.3914656847191509e-05,0.0,1.518893928384796e-23,3.092146016570041e-06,0.0,5.293955920339377e-22,6.352747104407253e-22,5.952380888629705e-05,6.352747104407253e-22,-2.9761904443148524e-05,-1.0632884737776532e-21,0.0,0.0,0.0,2.2893773348187096e-06,1.0587911840678754e-22,0.0,7.142857066355646e-05,-5.082197683525802e-21,-1.0989010661432985e-05,-1.0204081263509579e-05,0.0,1.9422120255823885e-22,5.293955920339377e-22,1.0587911840678754e-22,1.5698586821599747e-06,8.470329472543003e-22,5.25210089108441e-05,-4.235164736271502e-21,-6.3527471044072525e-21,-2.424046579108108e-05,0.0,2.015938934229908e-23,6.352747104407253e-22,0.0,8.470329472543003e-22,1.7314617934971466e-06,10.0,14.0,16.0,0.01690703071653843,-0.002434348687529564,-0.0018150185933336616,-0.0016104851383715868,0.000101461038866546,9.740259702084586e-05,8.594346581958234e-05,5.5803571740398183e-05,6.302521069301292e-05,4.376750803203322e-05,-0.002434348687529564,0.0010229062754660845,9.740259702084586e-05,8.594346581958234e-05,-7.60957773309201e-05,-2.1645020751748234e-05,-1.9098548364127055e-05,2.964615315390051e-21,-2.329340604949326e-21,-1.2705494208814505e-20,-0.0018150185933336616,9.740259702084586e-05,0.0005303497309796512,6.302521069301292e-05,0.0,-1.4985014786361717e-05,-3.1763735522036263e-21,-2.7901785870199092e-05,-9.69618577073561e-06,-5.082197683525802e-21,-0.0016104851383715868,8.594346581958234e-05,6.302521069301292e-05,0.00040855887345969677,-0.0,1.0631050036637605e-21,-1.1459129382274114e-05,1.9008111663940987e-21,-8.403361789532937e-06,-1.8757502402877435e-05,0.000101461038866546,-7.60957773309201e-05,0.0,-0.0,8.455086572212167e-06,0.0,0.0,0.0,0.0,0.0,9.740259702084586e-05,-2.1645020751748234e-05,-1.4985014786361717e-05,1.0631050036637605e-21,0.0,3.3300034374406096e-06,-9.9652956403962e-24,-4.235164736271502e-22,-1.2774538344465324e-22,-6.35014372142506e-24,8.594346581958234e-05,-1.9098548364127055e-05,-3.1763735522036263e-21,-1.1459129382274114e-05,0.0,-9.9652956403962e-24,2.5464730697422056e-06,-2.6469779601696886e-23,4.499862532288471e-22,1.5881867761018131e-21,5.5803571740398183e-05,2.964615315390051e-21,-2.7901785870199092e-05,1.9008111663940987e-21,0.0,-4.235164736271502e-22,-2.6469779601696886e-23,2.146291308235959e-06,-2.117582368135751e-22,0.0,6.302521069301292e-05,-2.329340604949326e-21,-9.69618577073561e-06,-8.403361789532937e-06,0.0,-1.2774538344465324e-22,4.499862532288471e-22,-2.117582368135751e-22,1.2928247770105372e-06,6.88214269644119e-22,4.376750803203322e-05,-1.2705494208814505e-20,-5.082197683525802e-21,-1.8757502402877435e-05,0.0,-6.35014372142506e-24,1.5881867761018131e-21,0.0,6.88214269644119e-22,1.250500190508319e-06,10.0,15.0,3.0,0.06269979476928711,-0.010757575742900372,-0.007560160476714373,-0.026931818574666977,0.0005050505278632045,0.00045454545761458576,0.001818181830458343,0.00024509805371053517,0.0012499999720603228,0.0033333334140479565,-0.010757575742900372,0.004789562430232763,0.00045454545761458576,0.001818181830458343,-0.0003787878667935729,-0.00010101010411744937,-0.0004040404164697975,-3.3881317890172014e-21,-2.8853861145503896e-21,-4.3140830937945075e-34,-0.007560160476714373,0.00045454545761458576,0.002173537155613303,0.0012499999720603228,0.0,-6.49350622552447e-05,8.6510884696663e-20,-0.0001131221724790521,-0.00017857142665889114,-5.3919970888519184e-18,-0.026931818574666977,0.001818181830458343,0.0012499999720603228,0.06026514992117882,0.0,8.362549777431905e-20,-0.001818181830458343,-7.381287776486181e-19,-0.0012499999720603228,-0.019999999552965164,0.0005050505278632045,-0.0003787878667935729,0.0,0.0,4.2087540350621566e-05,0.0,0.0,0.0,0.0,-0.0,0.00045454545761458576,-0.00010101010411744937,-6.49350622552447e-05,8.362549777431905e-20,0.0,1.4430014743993524e-05,-1.9224640325664163e-20,1.1526058045781239e-21,4.1219802357678393e-22,6.16297568428591e-35,0.001818181830458343,-0.0004040404164697975,8.6510884696663e-20,-0.001818181830458343,0.0,-1.9224640325664163e-20,0.0004040404164697975,-1.9117377298588687e-36,5.513733236506453e-37,-0.0,0.00024509805371053517,-3.3881317890172014e-21,-0.0001131221724790521,-7.381287776486181e-19,0.0,1.1526058045781239e-21,-1.9117377298588687e-36,8.080155566858593e-06,2.3428462671538148e-20,2.8706478562979687e-19,0.0012499999720603228,-2.8853861145503896e-21,-0.00017857142665889114,-0.0012499999720603228,0.0,4.1219802357678393e-22,5.513733236506453e-37,2.3428462671538148e-20,0.00017857142665889114,1.373090038335974e-18,0.0033333334140479565,-4.3140830937945075e-34,-5.3919970888519184e-18,-0.019999999552965164,-0.0,6.16297568428591e-35,-0.0,2.8706478562979687e-19,1.373090038335974e-18,0.009999999776482582,10.0,15.0,4.0,0.05089794844388962,-0.008340909145772457,-0.0058576203882694244,-0.01715909130871296,0.0003787878667935729,0.0003409090859349817,0.0010909091215580702,0.00018382353300694376,0.000750000006519258,0.0016666667070239782,-0.008340909145772457,0.0036527777556329966,0.0003409090859349817,0.0010909091215580702,-0.0002840909000951797,-7.575757626909763e-05,-0.00024242424115072936,9.825582188149884e-20,-1.2328880168388819e-19,-4.777323311566826e-18,-0.0058576203882694244,0.0003409090859349817,0.001656938693486154,0.000750000006519258,2.4289442659401916e-19,-4.870129851042293e-05,-1.1453692061034745e-19,-8.484163117827848e-05,-0.00010714285599533468,-3.3360487753381062e-18,-0.01715909130871296,0.0010909091215580702,0.000750000006519258,0.023106060922145844,-1.5052671929697771e-18,-8.3132644178314345e-19,-0.0007272727089002728,-7.369841147772096e-19,-0.0005000000237487257,-0.004999999888241291,0.0003787878667935729,-0.0002840909000951797,2.4289442659401916e-19,-1.5052671929697771e-18,3.156565799145028e-05,-3.463226702381232e-21,7.423688796191708e-20,-1.3082379183202545e-20,-9.011550152655076e-22,3.9250309431827607e-19,0.0003409090859349817,-7.575757626909763e-05,-4.870129851042293e-05,-8.3132644178314345e-19,-3.463226702381232e-21,1.0822510375874117e-05,2.5452647947463566e-20,2.4482764946754503e-21,1.8771313038242426e-20,1.7782793432150345e-19,0.0010909091215580702,-0.00024242424115072936,-1.1453692061034745e-19,-0.0007272727089002728,7.423688796191708e-20,2.5452647947463566e-20,0.0001616161607671529,-2.547526994915994e-35,4.178434719129462e-35,1.3413185838279029e-33,0.00018382353300694376,9.825582188149884e-20,-8.484163117827848e-05,-7.369841147772096e-19,-1.3082379183202545e-20,2.4482764946754503e-21,-2.547526994915994e-35,6.06011644777027e-06,1.7011029073876968e-20,1.7582717829019374e-19,0.000750000006519258,-1.2328880168388819e-19,-0.00010714285599533468,-0.0005000000237487257,-9.011550152655076e-22,1.8771313038242426e-20,4.178434719129462e-35,1.7011029073876968e-20,7.142857066355646e-05,-3.3726990948690837e-21,0.0016666667070239782,-4.777323311566826e-18,-3.3360487753381062e-18,-0.004999999888241291,3.9250309431827607e-19,1.7782793432150345e-19,1.3413185838279029e-33,1.7582717829019374e-19,-3.3726990948690837e-21,0.0016666667070239782,10.0,15.0,5.0,0.04291100054979324,-0.006818181835114956,-0.0047860960476100445,-0.011915584094822407,0.0003030303050763905,0.00027272728038951755,0.0007272727089002728,0.00014705881767440587,0.0005000000237487257,0.0009523809421807528,-0.006818181835114956,0.0029545454308390617,0.00027272728038951755,0.0007272727089002728,-0.00022727272880729288,-6.060606028768234e-05,-0.0001616161607671529,-6.564505341220828e-21,-5.082197683525802e-21,-4.622231763214433e-35,-0.0047860960476100445,0.00027272728038951755,0.001339836628176272,0.0005000000237487257,0.0,-3.8961039535934106e-05,0.0,-6.787330494262278e-05,-7.142857066355646e-05,-7.852915142490947e-19,-0.011915584094822407,0.0007272727089002728,0.0005000000237487257,0.01167207770049572,0.0,-2.4482425673456385e-21,-0.0003636363544501364,-2.744386749103933e-19,-0.0002500000118743628,-0.0019047618843615055,0.0003030303050763905,-0.00022727272880729288,0.0,0.0,2.5252526029362343e-05,0.0,0.0,0.0,0.0,-0.0,0.00027272728038951755,-6.060606028768234e-05,-3.8961039535934106e-05,-2.4482425673456385e-21,0.0,8.658008482598234e-06,0.0,1.2705494208814505e-21,4.235164736271502e-22,6.603188130668502e-36,0.0007272727089002728,-0.0001616161607671529,0.0,-0.0003636363544501364,0.0,0.0,8.080808038357645e-05,0.0,0.0,-0.0,0.00014705881767440587,-6.564505341220828e-21,-6.787330494262278e-05,-2.744386749103933e-19,0.0,1.2705494208814505e-21,0.0,4.848092885367805e-06,1.0587911840678754e-20,4.9211103984622087e-20,0.0005000000237487257,-5.082197683525802e-21,-7.142857066355646e-05,-0.0002500000118743628,0.0,4.235164736271502e-22,0.0,1.0587911840678754e-20,3.571428533177823e-05,4.8168035694541255e-20,0.0009523809421807528,-4.622231763214433e-35,-7.852915142490947e-19,-0.0019047618843615055,-0.0,6.603188130668502e-36,-0.0,4.9211103984622087e-20,4.8168035694541255e-20,0.0004761904710903764,10.0,15.0,6.0,0.0371210016310215,-0.0057683982886374,-0.004047937225550413,-0.008766233921051025,0.00025252526393160224,0.00022727272880729288,0.0005194804980419576,0.00012254902685526758,0.0003571428533177823,0.0005952381179668009,-0.0057683982886374,0.0024813611526042223,0.00022727272880729288,0.0005194804980419576,-0.00018939393339678645,-5.0505052058724687e-05,-0.0001154401179519482,-2.329340604949326e-21,1.6940658945086007e-21,-3.081487842142955e-35,-0.004047937225550413,0.00022727272880729288,0.0011250339448451996,0.0003571428533177823,0.0,-3.246753112762235e-05,2.4717395858416163e-20,-5.656108623952605e-05,-5.10204081365373e-05,-4.538489281955283e-19,-0.008766233921051025,0.0005194804980419576,0.0003571428533177823,0.006780303083360195,0.0,2.5133795670718516e-20,-0.00020779221085831523,-2.1006417091906648e-19,-0.0001428571413271129,-0.0008928571478463709,0.00025252526393160224,-0.00018939393339678645,0.0,0.0,2.1043770175310783e-05,0.0,0.0,0.0,0.0,-0.0,0.00022727272880729288,-5.0505052058724687e-05,-3.246753112762235e-05,2.5133795670718516e-20,0.0,7.215007371996762e-06,-5.4927547249584325e-21,6.352747104407253e-22,0.0,4.402125540023137e-36,0.0005194804980419576,-0.0001154401179519482,2.4717395858416163e-20,-0.00020779221085831523,0.0,-5.4927547249584325e-21,4.617604645318352e-05,-3.76158192263132e-37,0.0,-0.0,0.00012254902685526758,-2.329340604949326e-21,-5.656108623952605e-05,-2.1006417091906648e-19,0.0,6.352747104407253e-22,-3.76158192263132e-37,4.040077783429297e-06,9.317362419797304e-21,2.819386310515321e-20,0.0003571428533177823,1.6940658945086007e-21,-5.10204081365373e-05,-0.0001428571413271129,0.0,0.0,0.0,9.317362419797304e-21,2.0408162527019158e-05,2.365394532105414e-20,0.0005952381179668009,-3.081487842142955e-35,-4.538489281955283e-19,-0.0008928571478463709,-0.0,4.402125540023137e-36,-0.0,2.819386310515321e-20,2.365394532105414e-20,0.00017857142665889114,10.0,15.0,7.0,0.032721810042858124,-0.004999999888241291,-0.00350792589597404,-0.006723484955728054,0.00021645022206939757,0.00019480519404169172,0.00038961038808338344,0.0001050420178216882,0.0002678571327123791,0.00039682540227659047,-0.004999999888241291,0.0021392495837062597,0.00019480519404169172,0.00038961038808338344,-0.00016233765927609056,-4.329004150349647e-05,-8.658008300699294e-05,-6.3527471044072525e-21,-1.6940658945086007e-21,-3.081487842142955e-35,-0.00350792589597404,0.00019480519404169172,0.0009697812492959201,0.0002678571327123791,0.0,-2.7829313694383018e-05,0.0,-4.848093158216216e-05,-3.826530519290827e-05,-2.879260098944353e-19,-0.006723484955728054,0.00038961038808338344,0.0002678571327123791,0.004304653499275446,0.0,-1.9950180716552954e-21,-0.0001298701245104894,-1.4230153513872246e-19,-8.928571332944557e-05,-0.0004761904710903764,0.00021645022206939757,-0.00016233765927609056,0.0,0.0,1.803751729312353e-05,0.0,0.0,0.0,0.0,-0.0,0.00019480519404169172,-4.329004150349647e-05,-2.7829313694383018e-05,-1.9950180716552954e-21,0.0,6.184292033140082e-06,0.0,1.0587911840678754e-21,4.235164736271502e-22,4.402125540023137e-36,0.00038961038808338344,-8.658008300699294e-05,0.0,-0.0001298701245104894,0.0,0.0,2.886002948798705e-05,0.0,0.0,-0.0,0.0001050420178216882,-6.3527471044072525e-21,-4.848093158216216e-05,-1.4230153513872246e-19,0.0,1.0587911840678754e-21,0.0,3.462923586994293e-06,5.082197683525802e-21,1.777067652864615e-20,0.0002678571327123791,-1.6940658945086007e-21,-3.826530519290827e-05,-8.928571332944557e-05,0.0,4.235164736271502e-22,0.0,5.082197683525802e-21,1.2755102034134325e-05,1.3045509061426415e-20,0.00039682540227659047,-3.081487842142955e-35,-2.879260098944353e-19,-0.0004761904710903764,-0.0,4.402125540023137e-36,-0.0,1.777067652864615e-20,1.3045509061426415e-20,7.936507608974352e-05,10.0,15.0,8.0,0.029262106865644455,-0.004412878770381212,-0.0030954768881201744,-0.005321969743818045,0.00018939393339678645,0.00017045454296749085,0.0003030303050763905,9.191176650347188e-05,0.00020833333837799728,0.00027777778450399637,-0.004412878770381212,0.001880260999314487,0.00017045454296749085,0.0003030303050763905,-0.00014204545004758984,-3.787878813454881e-05,-6.73400645609945e-05,4.997494388800372e-20,1.3721933745519665e-19,2.024685461702071e-19,-0.0030954768881201744,0.00017045454296749085,0.0008522788411937654,0.00020833333837799728,1.715864817835758e-19,-2.4350649255211465e-05,2.731962367056416e-20,-4.242081558913924e-05,-2.9761904443148524e-05,1.0248228829664146e-19,-0.005321969743818045,0.0003030303050763905,0.00020833333837799728,0.002909451723098755,2.92543461320677e-19,2.4298881242555544e-20,-8.658008300699294e-05,1.8634724839594607e-20,-5.952380888629705e-05,-0.00027777778450399637,0.00018939393339678645,-0.00014204545004758984,1.715864817835758e-19,2.92543461320677e-19,1.578282899572514e-05,-1.731613351190616e-21,-3.0784239373983755e-21,-6.541189591601273e-21,-1.4518609488045386e-20,-1.985878735628543e-20,0.00017045454296749085,-3.787878813454881e-05,-2.4350649255211465e-05,2.4298881242555544e-20,-1.731613351190616e-21,5.4112551879370585e-06,-1.8044716861161636e-21,1.4823076576950256e-21,-3.1763735522036263e-22,-2.002566700590017e-21,0.0003030303050763905,-6.73400645609945e-05,2.731962367056416e-20,-8.658008300699294e-05,-3.0784239373983755e-21,-1.8044716861161636e-21,1.924001844599843e-05,-1.0511209822013284e-21,-1.2810881986784198e-21,-2.7775707149636317e-21,9.191176650347188e-05,4.997494388800372e-20,-4.242081558913924e-05,1.8634724839594607e-20,-6.541189591601273e-21,1.4823076576950256e-21,-1.0511209822013284e-21,3.030058223885135e-06,2.752857078576476e-21,-5.831003336936214e-21,0.00020833333837799728,1.3721933745519665e-19,-2.9761904443148524e-05,-5.952380888629705e-05,-1.4518609488045386e-20,-3.1763735522036263e-22,-1.2810881986784198e-21,2.752857078576476e-21,8.50340165925445e-06,-7.158180298550951e-21,0.00027777778450399637,2.024685461702071e-19,1.0248228829664146e-19,-0.00027777778450399637,-1.985878735628543e-20,-2.002566700590017e-21,-2.7775707149636317e-21,-5.831003336936214e-21,-7.158180298550951e-21,3.968253804487176e-05,10.0,15.0,9.0,0.02646811306476593,-0.003949495032429695,-0.002770053455606103,-0.00431818189099431,0.00016835016140248626,0.00015151515253819525,0.00024242424115072936,8.169934881152585e-05,0.00016666666488163173,0.00020202020823489875,-0.003949495032429695,0.0016773288371041417,0.00015151515253819525,0.00024242424115072936,-0.00012626263196580112,-3.367003228049725e-05,-5.3872052376391366e-05,-2.541098841762901e-21,-8.470329472543003e-22,7.003381394191733e-36,-0.002770053455606103,0.00015151515253819525,0.0007602266850881279,0.00016666666488163173,0.0,-2.1645020751748234e-05,0.0,-3.77073920390103e-05,-2.380952355451882e-05,2.463153354148088e-19,-0.00431818189099431,0.00024242424115072936,0.00016666666488163173,0.0020607863552868366,0.0,-7.528905645042634e-22,-6.060606028768234e-05,1.8634724839594607e-19,-4.166666622040793e-05,-0.00017316016601398587,0.00016835016140248626,-0.00012626263196580112,0.0,0.0,1.4029180420038756e-05,0.0,0.0,0.0,0.0,-0.0,0.00015151515253819525,-3.367003228049725e-05,-2.1645020751748234e-05,-7.528905645042634e-22,0.0,4.8100046114996076e-06,0.0,0.0,0.0,-1.0004830691249764e-36,0.00024242424115072936,-5.3872052376391366e-05,0.0,-6.060606028768234e-05,0.0,0.0,1.3468013094097842e-05,0.0,0.0,-0.0,8.169934881152585e-05,-2.541098841762901e-21,-3.77073920390103e-05,1.8634724839594607e-19,0.0,0.0,0.0,2.6933851131616393e-06,-7.411538288475128e-21,-1.690078302344727e-20,0.00016666666488163173,-8.470329472543003e-22,-2.380952355451882e-05,-4.166666622040793e-05,0.0,0.0,0.0,-7.411538288475128e-21,5.952380888629705e-06,-2.4260934735851457e-21,0.00020202020823489875,7.003381394191733e-36,2.463153354148088e-19,-0.00017316016601398587,-0.0,-1.0004830691249764e-36,-0.0,-1.690078302344727e-20,-2.4260934735851457e-21,2.1645020751748234e-05,10.0,15.0,10.0,0.024163587018847466,-0.003574380185455084,-0.002506684511899948,-0.003574380185455084,0.00015151515253819525,0.00013636364019475877,0.00019834710110444576,7.352940883720294e-05,0.00013636364019475877,0.00015151515253819525,-0.003574380185455084,0.0015140037285163999,0.00013636364019475877,0.00019834710110444576,-0.00011363636440364644,-3.030303014384117e-05,-4.4077136408304796e-05,-2.964615315390051e-21,8.470329472543003e-22,-7.625904089124579e-36,-0.002506684511899948,0.00013636364019475877,0.0006861520814709365,0.00013636364019475877,0.0,-1.9480519767967053e-05,0.0,-3.393665247131139e-05,-1.9480519767967053e-05,-7.302841586106832e-20,-0.003574380185455084,0.00019834710110444576,0.00013636364019475877,0.0015140037285163999,0.0,9.543403456616448e-22,-4.4077136408304796e-05,-7.199780051661553e-20,-3.030303014384117e-05,-0.00011363636440364644,0.00015151515253819525,-0.00011363636440364644,0.0,0.0,1.2626263014681172e-05,0.0,0.0,0.0,0.0,-0.0,0.00013636364019475877,-3.030303014384117e-05,-1.9480519767967053e-05,9.543403456616448e-22,0.0,4.329004241299117e-06,0.0,4.235164736271502e-22,-1.0587911840678754e-22,1.0894148954986832e-36,0.00019834710110444576,-4.4077136408304796e-05,0.0,-4.4077136408304796e-05,0.0,0.0,9.794918696570676e-06,0.0,0.0,-0.0,7.352940883720294e-05,-2.964615315390051e-21,-3.393665247131139e-05,-7.199780051661553e-20,0.0,4.235164736271502e-22,0.0,2.4240464426839026e-06,2.329340604949326e-21,6.197989608954894e-21,0.00013636364019475877,8.470329472543003e-22,-1.9480519767967053e-05,-3.030303014384117e-05,0.0,-1.0587911840678754e-22,0.0,2.329340604949326e-21,4.329004241299117e-06,-3.0540976380265707e-21,0.00015151515253819525,-7.625904089124579e-36,-7.302841586106832e-20,-0.00011363636440364644,-0.0,1.0894148954986832e-36,-0.0,6.197989608954894e-21,-3.0540976380265707e-21,1.2626263014681172e-05,10.0,15.0,11.0,0.022229738533496857,-0.003264462808147073,-0.0022891347762197256,-0.0030077877454459667,0.00013774105173069984,0.0001239669363712892,0.00016528925334569067,6.68449210934341e-05,0.00011363636440364644,0.00011655011621769518,-0.003264462808147073,0.001379706198349595,0.0001239669363712892,0.00016528925334569067,-0.00010330578516004607,-2.7548208890948445e-05,-3.6730947613250464e-05,-1.376428539288238e-21,-0.0,-3.3520458323036406e-36,-0.0022891347762197256,0.0001239669363712892,0.0006252503953874111,0.00011363636440364644,0.0,-1.7709562598611228e-05,0.0,-3.0851500923745334e-05,-1.6233765563811176e-05,-7.703846468610322e-20,-0.0030077877454459667,0.00016528925334569067,0.00011363636440364644,0.0011454580817371607,0.0,4.447599803119982e-22,-3.3057851396733895e-05,-6.860966872759833e-20,-2.2727272153133526e-05,-7.770007505314425e-05,0.00013774105173069984,-0.00010330578516004607,0.0,0.0,1.147842067439342e-05,0.0,0.0,0.0,0.0,-0.0,0.0001239669363712892,-2.7548208890948445e-05,-1.7709562598611228e-05,4.447599803119982e-22,0.0,3.935458607884357e-06,0.0,2.117582368135751e-22,5.293955920339377e-23,4.788636839231557e-37,0.00016528925334569067,-3.6730947613250464e-05,0.0,-3.3057851396733895e-05,0.0,0.0,7.346189249801682e-06,0.0,0.0,-0.0,6.68449210934341e-05,-1.376428539288238e-21,-3.0851500923745334e-05,-6.860966872759833e-20,0.0,2.117582368135751e-22,0.0,2.2036786049284274e-06,3.282252670610414e-21,4.684040677242581e-21,0.00011363636440364644,-0.0,-1.6233765563811176e-05,-2.2727272153133526e-05,0.0,5.293955920339377e-23,0.0,3.282252670610414e-21,3.2467532946611755e-06,2.2923792025001303e-21,0.00011655011621769518,-3.3520458323036406e-36,-7.703846468610322e-20,-7.770007505314425e-05,-0.0,4.788636839231557e-37,-0.0,4.684040677242581e-21,2.2923792025001303e-21,7.770007869112305e-06,10.0,15.0,12.0,0.02058347687125206,-0.003004079218953848,-0.002106386236846447,-0.002566183917224407,0.00012626263196580112,0.00011363636440364644,0.0001398601452820003,6.127451342763379e-05,9.61538462433964e-05,9.157509339274839e-05,-0.003004079218953848,0.0012673205928876996,0.00011363636440364644,0.0001398601452820003,-9.469696669839323e-05,-2.5252526029362343e-05,-3.108003147644922e-05,-1.0587911840678754e-21,1.2705494208814505e-21,3.3881317890172014e-21,-0.002106386236846447,0.00011363636440364644,0.0005742909270338714,9.61538462433964e-05,0.0,-1.6233765563811176e-05,7.199780051661553e-21,-2.8280543119763024e-05,-1.3736264008912258e-05,-4.2351647362715017e-20,-0.002566183917224407,0.0001398601452820003,9.61538462433964e-05,0.0008878242806531489,-0.0,7.489033964320123e-21,-2.5429117158637382e-05,-5.548514937738889e-20,-1.7482518160250038e-05,-5.494505603564903e-05,0.00012626263196580112,-9.469696669839323e-05,0.0,-0.0,1.0521885087655392e-05,0.0,0.0,0.0,0.0,0.0,0.00011363636440364644,-2.5252526029362343e-05,-1.6233765563811176e-05,7.489033964320123e-21,0.0,3.607503685998381e-06,-1.4850508236741794e-21,2.117582368135751e-22,-9.453012366217114e-23,-5.438479024708212e-23,0.0001398601452820003,-3.108003147644922e-05,7.199780051661553e-21,-2.5429117158637382e-05,0.0,-1.4850508236741794e-21,5.65091477255919e-06,-2.6469779601696886e-23,0.0,-6.352747104407253e-22,6.127451342763379e-05,-1.0587911840678754e-21,-2.8280543119763024e-05,-5.548514937738889e-20,0.0,2.117582368135751e-22,-2.6469779601696886e-23,2.0200388917146483e-06,2.329340604949326e-21,3.546950466627383e-21,9.61538462433964e-05,1.2705494208814505e-21,-1.3736264008912258e-05,-1.7482518160250038e-05,0.0,-9.453012366217114e-23,0.0,2.329340604949326e-21,2.4975024643936194e-06,-1.2705494208814505e-21,9.157509339274839e-05,3.3881317890172014e-21,-4.2351647362715017e-20,-5.494505603564903e-05,0.0,-5.438479024708212e-23,-6.352747104407253e-22,3.546950466627383e-21,-1.2705494208814505e-21,4.995004928787239e-06,10.0,15.0,13.0,0.019164903089404106,-0.0027822176925837994,-0.0019506963435560465,-0.0022152846213430166,0.00011655011621769518,0.00010489510168554261,0.00011988011829089373,5.656108623952605e-05,8.241758041549474e-05,7.326007471419871e-05,-0.0027822176925837994,0.001171883661299944,0.00010489510168554261,0.00011988011829089373,-8.741259080125019e-05,-2.3310023607336916e-05,-2.6640027499524876e-05,-2.752857078576476e-21,-7.199780051661553e-21,-6.776263578034403e-21,-0.0019506963435560465,0.00010489510168554261,0.0005310203414410353,8.241758041549474e-05,0.0,-1.4985014786361717e-05,-6.3527471044072525e-21,-2.6105117285624146e-05,-1.1773940059356391e-05,-6.268043809681823e-20,-0.0022152846213430166,0.00011988011829089373,8.241758041549474e-05,0.000702214427292347,-0.0,-2.9539160391087493e-22,-1.9980019715148956e-05,-4.668839375561715e-20,-1.3736264008912258e-05,-3.996003943029791e-05,0.00011655011621769518,-8.741259080125019e-05,0.0,-0.0,9.71250938164303e-06,0.0,0.0,0.0,0.0,0.0,0.00010489510168554261,-2.3310023607336916e-05,-1.4985014786361717e-05,-2.9539160391087493e-22,0.0,3.3300034374406096e-06,-4.8301495687357525e-24,4.235164736271502e-22,5.871782018373112e-23,2.0297533086299574e-23,0.00011988011829089373,-2.6640027499524876e-05,-6.3527471044072525e-21,-1.9980019715148956e-05,0.0,-4.8301495687357525e-24,4.440004431671696e-06,-1.3234889800848443e-23,1.164670302474663e-21,1.2705494208814505e-21,5.656108623952605e-05,-2.752857078576476e-21,-2.6105117285624146e-05,-4.668839375561715e-20,0.0,4.235164736271502e-22,-1.3234889800848443e-23,1.864651153482555e-06,1.7999450129153882e-21,2.8852059765849605e-21,8.241758041549474e-05,-7.199780051661553e-21,-1.1773940059356391e-05,-1.3736264008912258e-05,0.0,5.871782018373112e-23,1.164670302474663e-21,1.7999450129153882e-21,1.9623234948085155e-06,3.5998900258307764e-21,7.326007471419871e-05,-6.776263578034403e-21,-6.268043809681823e-20,-3.996003943029791e-05,0.0,2.0297533086299574e-23,1.2705494208814505e-21,2.8852059765849605e-21,3.5998900258307764e-21,3.3300034374406096e-06,10.0,15.0,14.0,0.017929717898368835,-0.0025909091345965862,-0.0018164629582315683,-0.001931818202137947,0.00010822511103469878,9.740259702084586e-05,0.00010389610542915761,5.25210089108441e-05,7.142857066355646e-05,5.952380888629705e-05,-0.0025909091345965862,0.0010898268083110452,9.740259702084586e-05,0.00010389610542915761,-8.116882963804528e-05,-2.1645020751748234e-05,-2.308802322659176e-05,-3.5998900258307764e-21,-8.470329472543003e-22,-8.470329472543003e-22,-0.0018164629582315683,9.740259702084586e-05,0.0004938191850669682,7.142857066355646e-05,0.0,-1.3914656847191509e-05,4.235164736271502e-22,-2.424046579108108e-05,-1.0204081263509579e-05,-2.668153783851046e-20,-0.001931818202137947,0.00010389610542915761,7.142857066355646e-05,0.0005650599487125874,-0.0,-8.9126822785126e-22,-1.5984016499714926e-05,-4.0393439434163506e-20,-1.0989010661432985e-05,-2.9761904443148524e-05,0.00010822511103469878,-8.116882963804528e-05,0.0,-0.0,9.018758646561764e-06,0.0,0.0,0.0,0.0,0.0,9.740259702084586e-05,-2.1645020751748234e-05,-1.3914656847191509e-05,-8.9126822785126e-22,0.0,3.092146016570041e-06,-7.87565911159001e-24,6.352747104407253e-22,1.7615163039389325e-22,4.175612743012154e-24,0.00010389610542915761,-2.308802322659176e-05,4.235164736271502e-22,-1.5984016499714926e-05,0.0,-7.87565911159001e-24,3.5520035908120917e-06,2.6469779601696886e-23,-1.0587911840678754e-22,0.0,5.25210089108441e-05,-3.5998900258307764e-21,-2.424046579108108e-05,-4.0393439434163506e-20,0.0,6.352747104407253e-22,2.6469779601696886e-23,1.7314617934971466e-06,1.376428539288238e-21,2.355810384551023e-21,7.142857066355646e-05,-8.470329472543003e-22,-1.0204081263509579e-05,-1.0989010661432985e-05,0.0,1.7615163039389325e-22,-1.0587911840678754e-22,1.376428539288238e-21,1.5698586821599747e-06,-9.529120656610879e-22,5.952380888629705e-05,-8.470329472543003e-22,-2.668153783851046e-20,-2.9761904443148524e-05,0.0,4.175612743012154e-24,0.0,2.355810384551023e-21,-9.529120656610879e-22,2.2893773348187096e-06,10.0,15.0,15.0,0.016844436526298523,-0.002424242440611124,-0.001699532032944262,-0.001699532032944262,0.00010101010411744937,9.09090886125341e-05,9.09090886125341e-05,4.901960710412823e-05,6.25000029685907e-05,4.901960710412823e-05,-0.002424242440611124,0.0010185184655711055,9.09090886125341e-05,9.09090886125341e-05,-7.575757626909763e-05,-2.0202020095894113e-05,-2.0202020095894113e-05,-1.6940658945086007e-21,-2.752857078576476e-21,-1.6940658945086007e-21,-0.001699532032944262,9.09090886125341e-05,0.0004614931531250477,6.25000029685907e-05,0.0,-1.2987013178644702e-05,-2.964615315390051e-21,-2.2624433768214658e-05,-8.928571332944557e-06,-3.006966962752766e-20,-0.001699532032944262,9.09090886125341e-05,6.25000029685907e-05,0.0004614931531250477,-0.0,-6.061961236492518e-23,-1.2987013178644702e-05,-3.3922693076671004e-20,-8.928571332944557e-06,-2.2624433768214658e-05,0.00010101010411744937,-7.575757626909763e-05,0.0,-0.0,8.417508070124313e-06,0.0,0.0,0.0,0.0,0.0,9.09090886125341e-05,-2.0202020095894113e-05,-1.2987013178644702e-05,-6.061961236492518e-23,0.0,2.88600290332397e-06,-4.911530826301068e-24,2.117582368135751e-22,2.764259488670707e-23,5.3989348474791116e-24,9.09090886125341e-05,-2.0202020095894113e-05,-2.964615315390051e-21,-1.2987013178644702e-05,0.0,-4.911530826301068e-24,2.88600290332397e-06,2.6469779601696886e-23,3.970466940254533e-22,2.117582368135751e-22,4.901960710412823e-05,-1.6940658945086007e-21,-2.2624433768214658e-05,-3.3922693076671004e-20,0.0,2.117582368135751e-22,2.6469779601696886e-23,1.616030999684881e-06,9.529120656610879e-22,1.9322939109238726e-21,6.25000029685907e-05,-2.752857078576476e-21,-8.928571332944557e-06,-8.928571332944557e-06,0.0,2.764259488670707e-23,3.970466940254533e-22,9.529120656610879e-22,1.2755101579386974e-06,4.764560328305439e-22,4.901960710412823e-05,-1.6940658945086007e-21,-3.006966962752766e-20,-2.2624433768214658e-05,0.0,5.3989348474791116e-24,2.117582368135751e-22,1.9322939109238726e-21,4.764560328305439e-22,1.616030999684881e-06,10.0,15.0,16.0,0.01588328182697296,-0.002277740743011236,-0.0015967580256983638,-0.0015067958738654852,9.469696669839323e-05,8.522727148374543e-05,8.021390385692939e-05,4.595588325173594e-05,5.5147058446891606e-05,4.0849674405762926e-05,-0.002277740743011236,0.0009559752070344985,8.522727148374543e-05,8.021390385692939e-05,-7.102272502379492e-05,-1.8939394067274407e-05,-1.7825312170316465e-05,4.171637265227429e-20,4.319868030996932e-20,3.218725199566341e-20,-0.0015967580256983638,8.522727148374543e-05,0.0004331422387622297,5.5147058446891606e-05,8.732093362324823e-20,-1.2175324627605733e-05,4.616329562535937e-20,-2.121040779456962e-05,-7.878151336626615e-06,7.623296525288703e-21,-0.0015067958738654852,8.021390385692939e-05,5.5147058446891606e-05,0.00038181181298568845,7.25655178354654e-20,1.2945948100403498e-21,-1.069518748408882e-05,8.412642510546666e-21,-7.3529413384676445e-06,-1.750700357661117e-05,9.469696669839323e-05,-7.102272502379492e-05,8.732093362324823e-20,7.25655178354654e-20,7.89141449786257e-06,-8.65806675595308e-22,-7.605517796673782e-22,-3.2705947958006363e-21,-3.591367803699493e-21,-2.3068784911816415e-21,8.522727148374543e-05,-1.8939394067274407e-05,-1.2175324627605733e-05,1.2945948100403498e-21,-8.65806675595308e-22,2.7056275939685293e-06,-4.399279106558191e-22,7.411538288475128e-22,8.094778165333992e-23,-1.5997786768963652e-23,8.021390385692939e-05,-1.7825312170316465e-05,4.616329562535937e-20,-1.069518748408882e-05,-7.605517796673782e-22,-4.399279106558191e-22,2.3767081529513234e-06,-2.329340604949326e-21,-1.5352472168984194e-21,-1.376428539288238e-21,4.595588325173594e-05,4.171637265227429e-20,-2.121040779456962e-05,8.412642510546666e-21,-3.2705947958006363e-21,7.411538288475128e-22,-2.329340604949326e-21,1.5150291119425674e-06,8.470329472543003e-22,-4.235164736271502e-22,5.5147058446891606e-05,4.319868030996932e-20,-7.878151336626615e-06,-7.3529413384676445e-06,-3.591367803699493e-21,8.094778165333992e-23,-1.5352472168984194e-21,8.470329472543003e-22,1.0504202236916171e-06,-4.764560328305439e-22,4.0849674405762926e-05,3.218725199566341e-20,7.623296525288703e-21,-1.750700357661117e-05,-2.3068784911816415e-21,-1.5997786768963652e-23,-1.376428539288238e-21,-4.235164736271502e-22,-4.764560328305439e-22,1.1671335187202203e-06,10.0,16.0,3.0,0.05918746441602707,-0.010110294446349144,-0.006706773769110441,-0.025317512452602386,0.0004734848625957966,0.00040106952656060457,0.001704545458778739,0.00020424836839083582,0.001102941227145493,0.0031250000465661287,-0.010110294446349144,0.004495785105973482,0.00040106952656060457,0.001704545458778739,-0.00035511364694684744,-8.912655903259292e-05,-0.0003787878667935729,-1.3552527156068805e-20,-6.776263578034403e-21,-1.0842021724855044e-19,-0.006706773769110441,0.00040106952656060457,0.0017987649189308286,0.001102941227145493,0.0,-5.347593469195999e-05,1.3552527156068805e-20,-8.753501606406644e-05,-0.00014705881767440587,-5.421010862427522e-20,-0.025317512452602386,0.001704545458778739,0.001102941227145493,0.056567512452602386,-0.0,1.2266123978642467e-20,-0.001704545458778739,-1.6467019284526621e-21,-0.001102941227145493,-0.01875000074505806,0.0004734848625957966,-0.00035511364694684744,0.0,-0.0,3.9457070670323446e-05,0.0,0.0,0.0,0.0,0.0,0.00040106952656060457,-8.912655903259292e-05,-5.347593469195999e-05,1.2266123978642467e-20,0.0,1.1883541446877643e-05,-1.478708735405888e-21,1.0189657495270716e-21,-2.592550091806294e-22,-2.312268443269993e-22,0.001704545458778739,-0.0003787878667935729,1.3552527156068805e-20,-0.001704545458778739,0.0,-1.478708735405888e-21,0.0003787878667935729,-1.4291637267191944e-21,2.0328790734103208e-20,1.0842021724855044e-19,0.00020424836839083582,-1.3552527156068805e-20,-8.753501606406644e-05,-1.6467019284526621e-21,0.0,1.0189657495270716e-21,-1.4291637267191944e-21,5.835667707287939e-06,2.2627130847282227e-22,4.769417994920271e-21,0.001102941227145493,-6.776263578034403e-21,-0.00014705881767440587,-0.001102941227145493,0.0,-2.592550091806294e-22,2.0328790734103208e-20,2.2627130847282227e-22,0.00014705881767440587,-5.421010862427522e-20,0.0031250000465661287,-1.0842021724855044e-19,-5.421010862427522e-20,-0.01875000074505806,0.0,-2.312268443269993e-22,1.0842021724855044e-19,4.769417994920271e-21,-5.421010862427522e-20,0.00937500037252903,10.0,16.0,4.0,0.04803197458386421,-0.007838401943445206,-0.005195521283894777,-0.01612800732254982,0.00035511364694684744,0.00030080214492045343,0.0010227272287011147,0.00015318627993110567,0.0006617647013626993,0.0015625000232830644,-0.007838401943445206,0.0034286570735275745,0.00030080214492045343,0.0010227272287011147,-0.0002663352352101356,-6.68449210934341e-05,-0.00022727272880729288,-6.776263578034403e-21,0.0,-1.8973538018496328e-19,-0.005195521283894777,0.00030080214492045343,0.0013711325591430068,0.0006617647013626993,0.0,-4.0106951928464696e-05,-6.776263578034403e-21,-6.565126386703923e-05,-8.823529060464352e-05,-1.8973538018496328e-19,-0.01612800732254982,0.0010227272287011147,0.0006617647013626993,0.021689506247639656,-0.0,-1.6461065442041443e-20,-0.0006818181718699634,-5.3059374376417517e-20,-0.00044117646757513285,-0.004687500186264515,0.00035511364694684744,-0.0002663352352101356,0.0,-0.0,2.9592803912237287e-05,0.0,0.0,0.0,0.0,0.0,0.00030080214492045343,-6.68449210934341e-05,-4.0106951928464696e-05,-1.6461065442041443e-20,0.0,8.912656085158233e-06,2.648929538940333e-22,6.381071376090266e-22,-5.261552291143284e-22,6.078490687112608e-21,0.0010227272287011147,-0.00022727272880729288,-6.776263578034403e-21,-0.0006818181718699634,0.0,2.648929538940333e-22,0.00015151515253819525,3.569114454081766e-22,6.776263578034403e-21,1.0842021724855044e-19,0.00015318627993110567,-6.776263578034403e-21,-6.565126386703923e-05,-5.3059374376417517e-20,0.0,6.381071376090266e-22,3.569114454081766e-22,4.376750894152792e-06,-3.6452075983461503e-22,1.7767960726674076e-20,0.0006617647013626993,0.0,-8.823529060464352e-05,-0.00044117646757513285,0.0,-5.261552291143284e-22,6.776263578034403e-21,-3.6452075983461503e-22,5.8823530707741156e-05,-6.776263578034403e-20,0.0015625000232830644,-1.8973538018496328e-19,-1.8973538018496328e-19,-0.004687500186264515,0.0,6.078490687112608e-21,1.0842021724855044e-19,1.7767960726674076e-20,-6.776263578034403e-20,0.0015625000232830644,10.0,16.0,5.0,0.040486693382263184,-0.006407085340470076,-0.004244652576744556,-0.011198434047400951,0.0002840909000951797,0.00024064170429483056,0.0006818181718699634,0.00012254902685526758,0.00044117646757513285,0.0008928571478463709,-0.006407085340470076,0.0027732285670936108,0.00024064170429483056,0.0006818181718699634,-0.00021306818234734237,-5.347593469195999e-05,-0.00015151515253819525,1.0164395367051604e-20,2.0328790734103208e-20,1.3552527156068805e-20,-0.004244652576744556,0.00024064170429483056,0.0011086707236245275,0.00044117646757513285,0.0,-3.208556154277176e-05,6.776263578034403e-21,-5.25210089108441e-05,-5.8823530707741156e-05,0.0,-0.011198434047400951,0.0006818181718699634,0.00044117646757513285,0.010956360027194023,-0.0,-0.0,-0.0003409090859349817,-5.101133172528591e-21,-0.00022058823378756642,-0.0017857142956927419,0.0002840909000951797,-0.00021306818234734237,0.0,-0.0,2.3674241674598306e-05,0.0,0.0,0.0,0.0,0.0,0.00024064170429483056,-5.347593469195999e-05,-3.208556154277176e-05,-0.0,0.0,7.130124686227646e-06,4.0217345687227395e-22,-1.4318425721355801e-21,-2.255684270953831e-22,5.968717877495394e-23,0.0006818181718699634,-0.00015151515253819525,6.776263578034403e-21,-0.0003409090859349817,0.0,4.0217345687227395e-22,7.575757626909763e-05,5.117726161161431e-22,-1.1011428314305904e-20,-6.776263578034403e-21,0.00012254902685526758,1.0164395367051604e-20,-5.25210089108441e-05,-5.101133172528591e-21,0.0,-1.4318425721355801e-21,5.117726161161431e-22,3.5014006698474986e-06,-4.81213734991466e-22,1.08286161482735e-21,0.00044117646757513285,2.0328790734103208e-20,-5.8823530707741156e-05,-0.00022058823378756642,0.0,-2.255684270953831e-22,-1.1011428314305904e-20,-4.81213734991466e-22,2.9411765353870578e-05,-6.776263578034403e-21,0.0008928571478463709,1.3552527156068805e-20,0.0,-0.0017857142956927419,0.0,5.968717877495394e-23,-6.776263578034403e-21,1.08286161482735e-21,-6.776263578034403e-21,0.00044642857392318547,10.0,16.0,6.0,0.0350189134478569,-0.005420406814664602,-0.0035897314082831144,-0.008238039910793304,0.0002367424312978983,0.00020053476328030229,0.0004870129923801869,0.00010212418419541791,0.00031512606074102223,0.0005580357392318547,-0.005420406814664602,0.002329061273485422,0.00020053476328030229,0.0004870129923801869,-0.00017755682347342372,-4.456327951629646e-05,-0.00010822511103469878,-1.1011428314305904e-20,-1.6940658945086007e-21,-0.0,-0.0035897314082831144,0.00020053476328030229,0.00093089509755373,0.00031512606074102223,0.0,-2.6737967345979996e-05,0.0,-4.376750803203322e-05,-4.201680712867528e-05,-0.0,-0.008238039910793304,0.0004870129923801869,0.00031512606074102223,0.006364412140101194,0.0,-1.3214950426390332e-21,-0.00019480519404169172,1.6940658945086007e-21,-0.00012605042138602585,-0.0008370535797439516,0.0002367424312978983,-0.00017755682347342372,0.0,0.0,1.9728535335161723e-05,0.0,0.0,0.0,0.0,-0.0,0.00020053476328030229,-4.456327951629646e-05,-2.6737967345979996e-05,-1.3214950426390332e-21,0.0,5.941770723438822e-06,0.0,1.2705494208814505e-21,2.117582368135751e-22,-0.0,0.0004870129923801869,-0.00010822511103469878,0.0,-0.00019480519404169172,0.0,0.0,4.329004150349647e-05,0.0,0.0,-0.0,0.00010212418419541791,-1.1011428314305904e-20,-4.376750803203322e-05,1.6940658945086007e-21,0.0,1.2705494208814505e-21,0.0,2.9178338536439696e-06,0.0,-0.0,0.00031512606074102223,-1.6940658945086007e-21,-4.201680712867528e-05,-0.00012605042138602585,0.0,2.117582368135751e-22,0.0,0.0,1.6806723579065874e-05,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0008370535797439516,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,10.0,16.0,7.0,0.030865641310811043,-0.0046982429921627045,-0.003110676072537899,-0.006318038795143366,0.000202922077733092,0.00017188693163916469,0.00036525973700918257,8.753501606406644e-05,0.00023634453827980906,0.00037202381645329297,-0.0046982429921627045,0.0020079337991774082,0.00017188693163916469,0.00036525973700918257,-0.0001521915546618402,-3.819709672825411e-05,-8.116882963804528e-05,-2.286988957586611e-20,0.0,-0.0,-0.003110676072537899,0.00017188693163916469,0.0008024118724279106,0.00023634453827980906,0.0,-2.2918258764548227e-05,0.0,-3.751500480575487e-05,-3.151260534650646e-05,-0.0,-0.006318038795143366,0.00036525973700918257,0.00023634453827980906,0.004040536470711231,0.0,-1.2059781391850091e-21,-0.00012175324809504673,-1.6940658945086007e-21,-7.878151518525556e-05,-0.00044642857392318547,0.000202922077733092,-0.0001521915546618402,0.0,0.0,1.6910173144424334e-05,0.0,0.0,0.0,0.0,-0.0,0.00017188693163916469,-3.819709672825411e-05,-2.2918258764548227e-05,-1.2059781391850091e-21,0.0,5.092946139484411e-06,0.0,2.964615315390051e-21,1.0587911840678754e-22,-0.0,0.00036525973700918257,-8.116882963804528e-05,0.0,-0.00012175324809504673,0.0,0.0,2.7056277758674696e-05,0.0,0.0,-0.0,8.753501606406644e-05,-2.286988957586611e-20,-3.751500480575487e-05,-1.6940658945086007e-21,0.0,2.964615315390051e-21,0.0,2.501000381016638e-06,2.117582368135751e-22,-0.0,0.00023634453827980906,0.0,-3.151260534650646e-05,-7.878151518525556e-05,0.0,1.0587911840678754e-22,0.0,2.117582368135751e-22,1.050420178216882e-05,-0.0,0.00037202381645329297,-0.0,-0.0,-0.00044642857392318547,-0.0,-0.0,-0.0,-0.0,-0.0,7.440476474585012e-05,10.0,16.0,8.0,0.027599988505244255,-0.004146473947912455,-0.00274481950327754,-0.0050008357502520084,0.00017755682347342372,0.00015040107246022671,0.0002840909000951797,7.659313996555284e-05,0.00018382353300694376,0.0002604166802484542,-0.004146473947912455,0.0017648335779085755,0.00015040107246022671,0.0002840909000951797,-0.0001331676176050678,-3.342246054671705e-05,-6.313131598290056e-05,-5.717472393966527e-21,0.0,1.7195803843598335e-36,-0.00274481950327754,0.00015040107246022671,0.000705174112226814,0.00018382353300694376,0.0,-2.0053475964232348e-05,0.0,-3.282563193351962e-05,-2.4509803552064113e-05,-3.809588712166065e-20,-0.0050008357502520084,0.0002840909000951797,0.00018382353300694376,0.002730893436819315,0.0,4.272901317622378e-22,-8.116882963804528e-05,1.6940658945086007e-21,-5.25210089108441e-05,-0.0002604166802484542,0.00017755682347342372,-0.0001331676176050678,0.0,0.0,1.4796401956118643e-05,0.0,0.0,0.0,0.0,-0.0,0.00015040107246022671,-3.342246054671705e-05,-2.0053475964232348e-05,4.272901317622378e-22,0.0,4.456328042579116e-06,0.0,5.293955920339377e-22,-1.0587911840678754e-22,-2.2927738308659277e-37,0.0002840909000951797,-6.313131598290056e-05,0.0,-8.116882963804528e-05,0.0,0.0,1.803751729312353e-05,0.0,0.0,-0.0,7.659313996555284e-05,-5.717472393966527e-21,-3.282563193351962e-05,1.6940658945086007e-21,0.0,5.293955920339377e-22,0.0,2.188375447076396e-06,-2.117582368135751e-22,-3.417139845399474e-37,0.00018382353300694376,0.0,-2.4509803552064113e-05,-5.25210089108441e-05,0.0,-1.0587911840678754e-22,0.0,-2.117582368135751e-22,7.002801339694997e-06,1.088453929301641e-20,0.0002604166802484542,1.7195803843598335e-36,-3.809588712166065e-20,-0.0002604166802484542,-0.0,-2.2927738308659277e-37,-0.0,-3.417139845399474e-37,1.088453929301641e-20,3.720238237292506e-05,10.0,16.0,9.0,0.02496311068534851,-0.0037110070697963238,-0.002456179354339838,-0.004057486541569233,0.00015782828268129379,0.0001336898421868682,0.00022727272880729288,6.808278703829274e-05,0.00014705881767440587,0.00018939393339678645,-0.0037110070697963238,0.00157435261644423,0.0001336898421868682,0.00022727272880729288,-0.00011837121564894915,-2.970885361719411e-05,-5.0505052058724687e-05,-4.870439446712227e-21,-1.6940658945086007e-21,-9.379528716994716e-37,-0.002456179354339838,0.0001336898421868682,0.0006290000746957958,0.00014705881767440587,0.0,-1.7825312170316465e-05,0.0,-2.9178338081692345e-05,-1.9607843569247052e-05,-2.714066831491714e-20,-0.004057486541569233,0.00022727272880729288,0.00014705881767440587,0.0019342850428074598,0.0,4.387104647762352e-22,-5.681818220182322e-05,0.0,-3.676470441860147e-05,-0.00016233765927609056,0.00015782828268129379,-0.00011837121564894915,0.0,0.0,1.3152356586942915e-05,0.0,0.0,0.0,0.0,-0.0,0.0001336898421868682,-2.970885361719411e-05,-1.7825312170316465e-05,4.387104647762352e-22,0.0,3.961180482292548e-06,0.0,5.293955920339377e-22,0.0,1.2506038364062206e-37,0.00022727272880729288,-5.0505052058724687e-05,0.0,-5.681818220182322e-05,0.0,0.0,1.2626263014681172e-05,0.0,0.0,-0.0,6.808278703829274e-05,-4.870439446712227e-21,-2.9178338081692345e-05,0.0,0.0,5.293955920339377e-22,0.0,1.9452224933047546e-06,0.0,1.3018072822926494e-37,0.00014705881767440587,-1.6940658945086007e-21,-1.9607843569247052e-05,-3.676470441860147e-05,0.0,0.0,0.0,0.0,4.901960892311763e-06,6.785167078729285e-21,0.00018939393339678645,-9.379528716994716e-37,-2.714066831491714e-20,-0.00016233765927609056,-0.0,1.2506038364062206e-37,-0.0,1.3018072822926494e-37,6.785167078729285e-21,2.029220740951132e-05,10.0,16.0,10.0,0.02278844639658928,-0.003358501475304365,-0.002222593640908599,-0.003358501475304365,0.00014204545004758984,0.00012032085214741528,0.0001859504118328914,6.127451342763379e-05,0.00012032085214741528,0.00014204545004758984,-0.003358501475304365,0.0014210495864972472,0.00012032085214741528,0.0001859504118328914,-0.00010653409117367119,-2.6737967345979996e-05,-4.132231333642267e-05,3.705769144237564e-21,-1.6940658945086007e-21,-0.0,-0.002222593640908599,0.00012032085214741528,0.0005677043809555471,0.00012032085214741528,0.0,-1.604278077138588e-05,0.0,-2.626050445542205e-05,-1.604278077138588e-05,-0.0,-0.003358501475304365,0.0001859504118328914,0.00012032085214741528,0.0014210495864972472,0.0,-1.151399061963302e-21,-4.132231333642267e-05,-1.6940658945086007e-21,-2.6737967345979996e-05,-0.00010653409117367119,0.00014204545004758984,-0.00010653409117367119,0.0,0.0,1.1837120837299153e-05,0.0,0.0,0.0,0.0,-0.0,0.00012032085214741528,-2.6737967345979996e-05,-1.604278077138588e-05,-1.151399061963302e-21,0.0,3.565062343113823e-06,0.0,-5.293955920339377e-22,1.5881867761018131e-22,-0.0,0.0001859504118328914,-4.132231333642267e-05,0.0,-4.132231333642267e-05,0.0,0.0,9.182736903312616e-06,0.0,0.0,-0.0,6.127451342763379e-05,3.705769144237564e-21,-2.626050445542205e-05,-1.6940658945086007e-21,0.0,-5.293955920339377e-22,0.0,1.7507003349237493e-06,2.117582368135751e-22,-0.0,0.00012032085214741528,-1.6940658945086007e-21,-1.604278077138588e-05,-2.6737967345979996e-05,0.0,1.5881867761018131e-22,0.0,2.117582368135751e-22,3.565062343113823e-06,-0.0,0.00014204545004758984,-0.0,-0.0,-0.00010653409117367119,-0.0,-0.0,-0.0,-0.0,-0.0,1.1837120837299153e-05,10.0,16.0,11.0,0.020963750779628754,-0.0030672703869640827,-0.0020296548027545214,-0.0028260676190257072,0.00012913222599308938,0.00010938259947579354,0.0001549586741020903,5.5704098485875875e-05,0.00010026738164015114,0.00010926573304459453,-0.0030672703869640827,0.0012949936790391803,0.00010938259947579354,0.0001549586741020903,-9.684917313279584e-05,-2.430724271107465e-05,-3.443526293267496e-05,4.446922973085077e-21,0.0,-0.0,-0.0020296548027545214,0.00010938259947579354,0.000517310225404799,0.00010026738164015114,0.0,-1.4584345990442671e-05,6.4767506870756146e-21,-2.387318636465352e-05,-1.3368983672989998e-05,-0.0,-0.0028260676190257072,0.0001549586741020903,0.00010026738164015114,0.0010751202935352921,0.0,6.3770273595457414e-21,-3.09917340928223e-05,0.0,-2.0053475964232348e-05,-7.284382445504889e-05,0.00012913222599308938,-9.684917313279584e-05,0.0,0.0,1.076101943908725e-05,0.0,0.0,0.0,0.0,-0.0,0.00010938259947579354,-2.430724271107465e-05,-1.4584345990442671e-05,6.3770273595457414e-21,0.0,3.2409657251264434e-06,-1.4392779080225375e-21,-6.352747104407253e-22,0.0,-0.0,0.0001549586741020903,-3.443526293267496e-05,6.4767506870756146e-21,-3.09917340928223e-05,0.0,-1.4392779080225375e-21,6.887052222737111e-06,2.350988701644575e-37,2.350988701644575e-38,-0.0,5.5704098485875875e-05,4.446922973085077e-21,-2.387318636465352e-05,0.0,0.0,-6.352747104407253e-22,2.350988701644575e-37,1.591545697010588e-06,-1.0587911840678754e-22,-0.0,0.00010026738164015114,0.0,-1.3368983672989998e-05,-2.0053475964232348e-05,0.0,0.0,2.350988701644575e-38,-1.0587911840678754e-22,2.673796871022205e-06,-0.0,0.00010926573304459453,-0.0,-0.0,-7.284382445504889e-05,-0.0,-0.0,-0.0,-0.0,-0.0,7.2843822636059485e-06,10.0,16.0,12.0,0.019410543143749237,-0.0028225909918546677,-0.0018675870960578322,-0.002411099849268794,0.00011837121564894915,0.00010026738164015114,0.00013111888256389648,5.1062092097708955e-05,8.484163117827848e-05,8.585165051044896e-05,-0.0028225909918546677,0.0011895056813955307,0.00010026738164015114,0.00013111888256389648,-8.877841173671186e-05,-2.228163975814823e-05,-2.9137529054423794e-05,-4.7645603283054394e-21,-8.470329472543003e-22,-0.0,-0.0018675870960578322,0.00010026738164015114,0.0004751437227241695,8.484163117827848e-05,0.0,-1.3368983672989998e-05,0.0,-2.188375401601661e-05,-1.1312216884107329e-05,-0.0,-0.002411099849268794,0.00013111888256389648,8.484163117827848e-05,0.0008332993602380157,0.0,-3.036452346811489e-22,-2.3839796995162033e-05,8.470329472543003e-22,-1.5425750461872667e-05,-5.1510989578673616e-05,0.00011837121564894915,-8.877841173671186e-05,0.0,0.0,9.864267667580862e-06,0.0,0.0,0.0,0.0,-0.0,0.00010026738164015114,-2.228163975814823e-05,-1.3368983672989998e-05,-3.036452346811489e-22,0.0,2.970885361719411e-06,0.0,6.352747104407253e-22,5.293955920339377e-23,-0.0,0.00013111888256389648,-2.9137529054423794e-05,0.0,-2.3839796995162033e-05,0.0,0.0,5.2977325140091125e-06,0.0,0.0,-0.0,5.1062092097708955e-05,-4.7645603283054394e-21,-2.188375401601661e-05,8.470329472543003e-22,0.0,6.352747104407253e-22,0.0,1.4589169268219848e-06,-1.0587911840678754e-22,-0.0,8.484163117827848e-05,-8.470329472543003e-22,-1.1312216884107329e-05,-1.5425750461872667e-05,0.0,5.293955920339377e-23,0.0,-1.0587911840678754e-22,2.056766788882669e-06,-0.0,8.585165051044896e-05,-0.0,-0.0,-5.1510989578673616e-05,-0.0,-0.0,-0.0,-0.0,-0.0,4.682817234424874e-06,10.0,16.0,13.0,0.01807224564254284,-0.002614113735035062,-0.0017295205034315586,-0.00208137440495193,0.00010926573304459453,9.2554502771236e-05,0.00011238761362619698,4.7134239139268175e-05,7.272139919223264e-05,6.868132186355069e-05,-0.002614113735035062,0.001099926419556141,9.2554502771236e-05,0.00011238761362619698,-8.19492997834459e-05,-2.056766788882669e-05,-2.4975024643936194e-05,4.446922973085077e-21,1.2705494208814505e-21,0.0,-0.0017295205034315586,9.2554502771236e-05,0.00043934007408097386,7.272139919223264e-05,0.0,-1.2340600733296014e-05,1.2705494208814505e-21,-2.0200388462399133e-05,-9.69618577073561e-06,4.235164736271502e-21,-0.00208137440495193,0.00011238761362619698,7.272139919223264e-05,0.0006590835400857031,-0.0,-0.0,-1.8731268937699497e-05,2.0801071837344284e-22,-1.212023289554054e-05,-3.7462537875398993e-05,0.00010926573304459453,-8.19492997834459e-05,0.0,-0.0,9.105478056881111e-06,0.0,0.0,0.0,0.0,0.0,9.2554502771236e-05,-2.056766788882669e-05,-1.2340600733296014e-05,-0.0,0.0,2.7423557185102254e-06,0.0,-6.352747104407253e-22,5.293955920339377e-23,-2.4524683689971626e-23,0.00011238761362619698,-2.4975024643936194e-05,1.2705494208814505e-21,-1.8731268937699497e-05,0.0,0.0,4.162503955740249e-06,1.3234889800848443e-23,-2.6469779601696886e-22,2.117582368135751e-22,4.7134239139268175e-05,4.446922973085077e-21,-2.0200388462399133e-05,2.0801071837344284e-22,0.0,-6.352747104407253e-22,1.3234889800848443e-23,1.3466925565808197e-06,0.0,-2.6469779601696886e-23,7.272139919223264e-05,1.2705494208814505e-21,-9.69618577073561e-06,-1.212023289554054e-05,0.0,5.293955920339377e-23,-2.6469779601696886e-22,0.0,1.616030999684881e-06,-6.352747104407253e-22,6.868132186355069e-05,0.0,4.235164736271502e-21,-3.7462537875398993e-05,0.0,-2.4524683689971626e-23,2.117582368135751e-22,-2.6469779601696886e-23,-6.352747104407253e-22,3.1218780804920243e-06,10.0,16.0,14.0,0.01690703071653843,-0.002434348687529564,-0.0016104851383715868,-0.0018150185933336616,0.000101461038866546,8.594346581958234e-05,9.740259702084586e-05,4.376750803203322e-05,6.302521069301292e-05,5.5803571740398183e-05,-0.002434348687529564,0.0010229062754660845,8.594346581958234e-05,9.740259702084586e-05,-7.60957773309201e-05,-1.9098548364127055e-05,-2.1645020751748234e-05,-1.164670302474663e-20,4.235164736271502e-22,1.6940658945086007e-21,-0.0016104851383715868,8.594346581958234e-05,0.00040855887345969677,6.302521069301292e-05,0.0,-1.1459129382274114e-05,0.0,-1.8757502402877435e-05,-8.403361789532937e-06,8.470329472543003e-22,-0.0018150185933336616,9.740259702084586e-05,6.302521069301292e-05,0.0005303497309796512,-0.0,2.3000253220209627e-22,-1.4985014786361717e-05,-2.1825246795149103e-22,-9.69618577073561e-06,-2.7901785870199092e-05,0.000101461038866546,-7.60957773309201e-05,0.0,-0.0,8.455086572212167e-06,0.0,0.0,0.0,0.0,0.0,8.594346581958234e-05,-1.9098548364127055e-05,-1.1459129382274114e-05,2.3000253220209627e-22,0.0,2.5464730697422056e-06,-6.498714234440312e-24,1.4823076576950256e-21,-3.0674831055970077e-23,-1.9047057600614003e-23,9.740259702084586e-05,-2.1645020751748234e-05,0.0,-1.4985014786361717e-05,0.0,-6.498714234440312e-24,3.3300034374406096e-06,-1.3234889800848443e-23,0.0,-2.117582368135751e-22,4.376750803203322e-05,-1.164670302474663e-20,-1.8757502402877435e-05,-2.1825246795149103e-22,0.0,1.4823076576950256e-21,-1.3234889800848443e-23,1.250500190508319e-06,5.293955920339377e-23,-2.6469779601696886e-23,6.302521069301292e-05,4.235164736271502e-22,-8.403361789532937e-06,-9.69618577073561e-06,0.0,-3.0674831055970077e-23,0.0,5.293955920339377e-23,1.2928247770105372e-06,1.0587911840678754e-22,5.5803571740398183e-05,1.6940658945086007e-21,8.470329472543003e-22,-2.7901785870199092e-05,0.0,-1.9047057600614003e-23,-2.117582368135751e-22,-2.6469779601696886e-23,1.0587911840678754e-22,2.146291308235959e-06,10.0,16.0,15.0,0.01588328182697296,-0.002277740743011236,-0.0015067958738654852,-0.0015967580256983638,9.469696669839323e-05,8.021390385692939e-05,8.522727148374543e-05,4.0849674405762926e-05,5.5147058446891606e-05,4.595588325173594e-05,-0.002277740743011236,0.0009559752070344985,8.021390385692939e-05,8.522727148374543e-05,-7.102272502379492e-05,-1.7825312170316465e-05,-1.8939394067274407e-05,3.366955965335844e-20,4.1504614415460717e-20,4.404571325722362e-20,-0.0015067958738654852,8.021390385692939e-05,0.00038181181298568845,5.5147058446891606e-05,7.25655178354654e-20,-1.069518748408882e-05,1.207021949837378e-20,-1.750700357661117e-05,-7.3529413384676445e-06,5.039846036163087e-20,-0.0015967580256983638,8.522727148374543e-05,5.5147058446891606e-05,0.0004331422387622297,8.732093362324823e-20,5.565424965151917e-20,-1.2175324627605733e-05,3.891887690118836e-20,-7.878151336626615e-06,-2.121040779456962e-05,9.469696669839323e-05,-7.102272502379492e-05,7.25655178354654e-20,8.732093362324823e-20,7.89141449786257e-06,-7.605517796673782e-22,-8.65806675595308e-22,-2.3068784911816415e-21,-3.591367803699493e-21,-3.2705947958006363e-21,8.021390385692939e-05,-1.7825312170316465e-05,-1.069518748408882e-05,5.565424965151917e-20,-7.605517796673782e-22,2.3767081529513234e-06,-2.080562804549735e-21,-1.2705494208814505e-21,-1.3563672889757139e-21,-2.5638592333051804e-21,8.522727148374543e-05,-1.8939394067274407e-05,1.207021949837378e-20,-1.2175324627605733e-05,-8.65806675595308e-22,-2.080562804549735e-21,2.7056275939685293e-06,-2.9116757561866574e-22,1.852884572118782e-22,6.352747104407253e-22,4.0849674405762926e-05,3.366955965335844e-20,-1.750700357661117e-05,3.891887690118836e-20,-2.3068784911816415e-21,-1.2705494208814505e-21,-2.9116757561866574e-22,1.1671335187202203e-06,-6.88214269644119e-22,-2.4352197233561135e-21,5.5147058446891606e-05,4.1504614415460717e-20,-7.3529413384676445e-06,-7.878151336626615e-06,-3.591367803699493e-21,-1.3563672889757139e-21,1.852884572118782e-22,-6.88214269644119e-22,1.0504202236916171e-06,-6.88214269644119e-22,4.595588325173594e-05,4.404571325722362e-20,5.039846036163087e-20,-2.121040779456962e-05,-3.2705947958006363e-21,-2.5638592333051804e-21,6.352747104407253e-22,-2.4352197233561135e-21,-6.88214269644119e-22,1.5150291119425674e-06,10.0,16.0,16.0,0.014976661652326584,-0.0021400819532573223,-0.001415662351064384,-0.001415662351064384,8.877841173671186e-05,7.520053623011336e-05,7.520053623011336e-05,3.829656998277642e-05,4.865917071583681e-05,3.829656998277642e-05,-0.0021400819532573223,0.0008972712093964219,7.520053623011336e-05,7.520053623011336e-05,-6.65838088025339e-05,-1.6711230273358524e-05,-1.6711230273358524e-05,-2.752857078576476e-21,1.4823076576950256e-21,-3.3881317890172014e-21,-0.001415662351064384,7.520053623011336e-05,0.00035835406742990017,4.865917071583681e-05,0.0,-1.0026737982116174e-05,1.9058241313221758e-21,-1.641281596675981e-05,-6.4878890952968504e-06,3.8116482626443515e-21,-0.001415662351064384,7.520053623011336e-05,4.865917071583681e-05,0.00035835406742990017,-0.0,-3.1082260674121177e-22,-1.0026737982116174e-05,-3.5129079252581517e-22,-6.4878890952968504e-06,-1.641281596675981e-05,8.877841173671186e-05,-6.65838088025339e-05,0.0,-0.0,7.398200978059322e-06,0.0,0.0,0.0,0.0,0.0,7.520053623011336e-05,-1.6711230273358524e-05,-1.0026737982116174e-05,-3.1082260674121177e-22,0.0,2.228164021289558e-06,2.0793639820984016e-24,2.117582368135751e-22,3.2097125179978215e-23,-1.064467842919064e-23,7.520053623011336e-05,-1.6711230273358524e-05,1.9058241313221758e-21,-1.0026737982116174e-05,0.0,2.0793639820984016e-24,2.228164021289558e-06,1.3234889800848443e-23,-2.9116757561866574e-22,2.117582368135751e-22,3.829656998277642e-05,-2.752857078576476e-21,-1.641281596675981e-05,-3.5129079252581517e-22,0.0,2.117582368135751e-22,1.3234889800848443e-23,1.094187723538198e-06,-5.293955920339377e-23,2.6469779601696886e-23,4.865917071583681e-05,1.4823076576950256e-21,-6.4878890952968504e-06,-6.4878890952968504e-06,0.0,3.2097125179978215e-23,-2.9116757561866574e-22,-5.293955920339377e-23,8.650519021102809e-07,-5.293955920339377e-22,3.829656998277642e-05,-3.3881317890172014e-21,3.8116482626443515e-21,-1.641281596675981e-05,0.0,-1.064467842919064e-23,2.117582368135751e-22,2.6469779601696886e-23,-5.293955920339377e-22,1.094187723538198e-06,11.0,3.0,3.0,0.20337995886802673,-0.039627037942409515,-0.10606060922145844,-0.10606060922145844,0.0019425019854679704,0.007575757801532745,0.007575757801532745,0.01515151560306549,0.022727273404598236,0.01515151560306549,-0.039627037942409515,0.0169904176145792,0.007575757801532745,0.007575757801532745,-0.001295001246035099,-0.0015151514671742916,-0.0015151514671742916,-1.1275702593849246e-17,3.686287386450715e-18,-8.239936510889834e-18,-0.10606060922145844,0.007575757801532745,0.25757575035095215,0.022727273404598236,-3.1164798855904992e-18,-0.007575757801532745,4.553649124439119e-18,-0.09090909361839294,-0.022727273404598236,1.118981609997562e-16,-0.10606060922145844,0.007575757801532745,0.022727273404598236,0.25757575035095215,-2.832332798625724e-18,4.955398340246936e-18,-0.007575757801532745,1.1300208315804497e-16,-0.022727273404598236,-0.09090909361839294,0.0019425019854679704,-0.001295001246035099,-3.1164798855904992e-18,-2.832332798625724e-18,0.00012950012751389295,1.797395293300679e-20,2.915657855354276e-20,1.5693569400352326e-18,-9.576949790592343e-20,1.3881442084965563e-18,0.007575757801532745,-0.0015151514671742916,-0.007575757801532745,4.955398340246936e-18,1.797395293300679e-20,0.0015151514671742916,-1.0357592446401313e-19,-4.349102661796087e-18,-1.1619729698947041e-18,-1.5341969043156302e-18,0.007575757801532745,-0.0015151514671742916,4.553649124439119e-18,-0.007575757801532745,2.915657855354276e-20,-1.0357592446401313e-19,0.0015151514671742916,-1.4954480421108899e-18,-7.589415207398531e-19,-3.903127820947816e-18,0.01515151560306549,-1.1275702593849246e-17,-0.09090909361839294,1.1300208315804497e-16,1.5693569400352326e-18,-4.349102661796087e-18,-1.4954480421108899e-18,0.04545454680919647,-2.653106541328094e-18,-5.0959920782929813e-17,0.022727273404598236,3.686287386450715e-18,-0.022727273404598236,-0.022727273404598236,-9.576949790592343e-20,-1.1619729698947041e-18,-7.589415207398531e-19,-2.653106541328094e-18,0.022727273404598236,-1.734723475976807e-18,0.01515151560306549,-8.239936510889834e-18,1.118981609997562e-16,-0.09090909361839294,1.3881442084965563e-18,-1.5341969043156302e-18,-3.903127820947816e-18,-5.0959920782929813e-17,-1.734723475976807e-18,0.04545454680919647,11.0,3.0,4.0,0.16768647730350494,-0.030856642872095108,-0.08295454829931259,-0.06818182021379471,0.0014568764017894864,0.005681818351149559,0.004545454401522875,0.011363636702299118,0.013636363670229912,0.007575757801532745,-0.030856642872095108,0.012970085255801678,0.005681818351149559,0.004545454401522875,-0.0009712509927339852,-0.0011363636003807187,-0.0009090909152291715,8.239936510889834e-18,-1.6795538378419704e-18,-2.4980387142055343e-18,-0.08295454829931259,0.005681818351149559,0.19659091532230377,0.013636363670229912,1.1180227959982304e-18,-0.005681818351149559,-8.124716869006097e-19,-0.06818182021379471,-0.013636363670229912,-2.103999069860895e-17,-0.06818182021379471,0.004545454401522875,0.013636363670229912,0.09848485141992569,-8.131516293641283e-19,-7.87881209951845e-19,-0.0030303029343485832,-2.1598144051818907e-17,-0.00909090880304575,-0.022727273404598236,0.0014568764017894864,-0.0009712509927339852,1.1180227959982304e-18,-8.131516293641283e-19,9.712509927339852e-05,-2.710505431213761e-20,4.743384504624082e-20,-5.978241599061752e-19,1.4419470599161199e-19,1.09904075869894e-19,0.005681818351149559,-0.0011363636003807187,-0.005681818351149559,-7.87881209951845e-19,-2.710505431213761e-20,0.0011363636003807187,-1.7161713270268e-20,-1.3048579775580062e-18,-1.9919160555009292e-19,4.409441868566651e-19,0.004545454401522875,-0.0009090909152291715,-8.124716869006097e-19,-0.0030303029343485832,4.743384504624082e-20,-1.7161713270268e-20,0.000606060610152781,1.193201054271324e-19,3.361520354735605e-19,1.2946748672295955e-18,0.011363636702299118,8.239936510889834e-18,-0.06818182021379471,-2.1598144051818907e-17,-5.978241599061752e-19,-1.3048579775580062e-18,1.193201054271324e-19,0.034090910106897354,-6.938229677875348e-18,9.987802232438883e-18,0.013636363670229912,-1.6795538378419704e-18,-0.013636363670229912,-0.00909090880304575,1.4419470599161199e-19,-1.9919160555009292e-19,3.361520354735605e-19,-6.938229677875348e-18,0.00909090880304575,-2.1801838104840703e-18,0.007575757801532745,-2.4980387142055343e-18,-2.103999069860895e-17,-0.022727273404598236,1.09904075869894e-19,4.409441868566651e-19,1.2946748672295955e-18,9.987802232438883e-18,-2.1801838104840703e-18,0.007575757801532745,11.0,3.0,5.0,0.14280718564987183,-0.025291375815868378,-0.06818182021379471,-0.0476190485060215,0.0011655011912807822,0.004545454401522875,0.0030303029343485832,0.00909090880304575,0.00909090880304575,0.0043290043249726295,-0.025291375815868378,0.010497280396521091,0.004545454401522875,0.0030303029343485832,-0.0007770007941871881,-0.0009090909152291715,-0.000606060610152781,-5.414838854286958e-18,-1.884324156238274e-19,5.040820558322251e-19,-0.06818182021379471,0.004545454401522875,0.15909090638160706,0.00909090880304575,-1.526736665768591e-18,-0.004545454401522875,2.3104041659813026e-18,-0.05454545468091965,-0.00909090880304575,1.9224641101145987e-18,-0.0476190485060215,0.0030303029343485832,0.00909090880304575,0.04978355020284653,-3.7947076036992655e-19,9.319600977330025e-19,-0.0015151514671742916,5.606922600230959e-18,-0.004545454401522875,-0.008658008649945259,0.0011655011912807822,-0.0007770007941871881,-1.526736665768591e-18,-3.7947076036992655e-19,7.770007505314425e-05,6.098637220230962e-20,2.710505431213761e-20,6.3227845546690505e-19,-3.1540425837215355e-20,7.071491447237967e-20,0.004545454401522875,-0.0009090909152291715,-0.004545454401522875,9.319600977330025e-19,6.098637220230962e-20,0.0009090909152291715,1.3552527156068805e-20,1.7302177197826542e-18,1.884324156238274e-19,-3.0720319557604217e-19,0.0030303029343485832,-0.000606060610152781,2.3104041659813026e-18,-0.0015151514671742916,2.710505431213761e-20,1.3552527156068805e-20,0.0003030303050763905,-1.2094121916149265e-18,9.600838056932162e-35,-4.3124239224718373e-19,0.00909090880304575,-5.414838854286958e-18,-0.05454545468091965,5.606922600230959e-18,6.3227845546690505e-19,1.7302177197826542e-18,-1.2094121916149265e-18,0.027272727340459824,-5.93986196960294e-19,2.764117074664854e-19,0.00909090880304575,-1.884324156238274e-19,-0.00909090880304575,-0.004545454401522875,-3.1540425837215355e-20,1.884324156238274e-19,9.600838056932162e-35,-5.93986196960294e-19,0.004545454401522875,-4.818875592265085e-19,0.0043290043249726295,5.040820558322251e-19,1.9224641101145987e-18,-0.008658008649945259,7.071491447237967e-20,-3.0720319557604217e-19,-4.3124239224718373e-19,2.764117074664854e-19,-4.818875592265085e-19,0.0021645021624863148,11.0,3.0,6.0,0.1244172528386116,-0.021436896175146103,-0.057900432497262955,-0.03517315909266472,0.0009712509927339852,0.0037878789007663727,0.0021645021624863148,0.007575757801532745,0.006493506487458944,0.0027056278195232153,-0.021436896175146103,0.008819883689284325,0.0037878789007663727,0.0021645021624863148,-0.0006475006230175495,-0.0007575757335871458,-0.00043290044413879514,-7.272581044552957e-18,-4.157075655272228e-20,-2.944133871058841e-20,-0.057900432497262955,0.0037878789007663727,0.1336580067873001,0.006493506487458944,-1.6589493891687339e-18,-0.0037878789007663727,3.2701194819879094e-19,-0.04545454680919647,-0.006493506487458944,1.892425666555195e-18,-0.03517315909266472,0.0021645021624863148,0.006493506487458944,0.028950216248631477,2.439454888092385e-19,5.123863287967981e-19,-0.0008658008882775903,-6.3742467692984246e-18,-0.002597402548417449,-0.004058441612869501,0.0009712509927339852,-0.0006475006230175495,-1.6589493891687339e-18,2.439454888092385e-19,6.475006375694647e-05,0.0,-2.0328790734103208e-20,8.419306387421318e-19,1.1719272775420386e-20,-2.404025805416201e-20,0.0037878789007663727,-0.0007575757335871458,-0.0037878789007663727,5.123863287967981e-19,0.0,0.0007575757335871458,-9.953166659857849e-35,-2.1627720721801353e-18,6.9213955184341285e-19,-2.4090518646779984e-19,0.0021645021624863148,-0.00043290044413879514,3.2701194819879094e-19,-0.0008658008882775903,-2.0328790734103208e-20,-9.953166659857849e-35,0.00017316016601398587,1.5189829073510662e-19,-2.5232340669772284e-19,6.010598061191471e-20,0.007575757801532745,-7.272581044552957e-18,-0.04545454680919647,-6.3742467692984246e-18,8.419306387421318e-19,-2.1627720721801353e-18,1.5189829073510662e-19,0.022727273404598236,4.7447493526347944e-18,-4.015196731878338e-20,0.006493506487458944,-4.157075655272228e-20,-0.006493506487458944,-0.002597402548417449,1.1719272775420386e-20,6.9213955184341285e-19,-2.5232340669772284e-19,4.7447493526347944e-18,0.002597402548417449,-2.8229094536899435e-19,0.0027056278195232153,-2.944133871058841e-20,1.892425666555195e-18,-0.004058441612869501,-2.404025805416201e-20,-2.4090518646779984e-19,6.010598061191471e-20,-4.015196731878338e-20,-2.8229094536899435e-19,0.000811688310932368,11.0,3.0,7.0,0.11025086045265198,-0.01860639452934265,-0.05032467469573021,-0.02705627679824829,0.0008325008093379438,0.003246753243729472,0.001623376621864736,0.006493506487458944,0.004870129749178886,0.001803751802071929,-0.01860639452934265,0.007606282830238342,0.003246753243729472,0.001623376621864736,-0.0005550005589611828,-0.0006493506371043622,-0.0003246753185521811,4.452913828671492e-19,1.498160703381575e-19,3.5704699592391364e-35,-0.05032467469573021,0.003246753243729472,0.11525973677635193,0.004870129749178886,1.8514695762834335e-19,-0.003246753243729472,1.0137994088344384e-19,-0.03896103799343109,-0.004870129749178886,-3.1240041272374347e-18,-0.02705627679824829,0.001623376621864736,0.004870129749178886,0.018398268148303032,6.003876572479624e-20,-6.402685548950727e-20,-0.0005411255406215787,-9.203046059142475e-18,-0.001623376621864736,-0.0021645021624863148,0.0008325008093379438,-0.0005550005589611828,1.8514695762834335e-19,6.003876572479624e-20,5.550005516852252e-05,-9.729522123666756e-21,-6.716593886727996e-21,-3.218559117208977e-20,-1.9216573699104637e-20,-6.647778568842089e-36,0.003246753243729472,-0.0006493506371043622,-0.003246753243729472,-6.402685548950727e-20,-9.729522123666756e-21,0.0006493506371043622,-3.3881317890172014e-21,3.0492167473466893e-21,9.113190980164488e-20,3.5037506103225793e-35,0.001623376621864736,-0.0003246753185521811,1.0137994088344384e-19,-0.0005411255406215787,-6.716593886727996e-21,-3.3881317890172014e-21,0.00010822511103469878,-3.3793313627814614e-20,-1.1264438145202727e-20,3.0694949603975676e-37,0.006493506487458944,4.452913828671492e-19,-0.03896103799343109,-9.203046059142475e-18,-3.218559117208977e-20,3.0492167473466893e-21,-3.3793313627814614e-20,0.019480518996715546,8.770619199437665e-36,1.5620020636187173e-18,0.004870129749178886,1.498160703381575e-19,-0.004870129749178886,-0.001623376621864736,-1.9216573699104637e-20,9.113190980164488e-20,-1.1264438145202727e-20,8.770619199437665e-36,0.001623376621864736,0.0,0.001803751802071929,3.5704699592391364e-35,-3.1240041272374347e-18,-0.0021645021624863148,-6.647778568842089e-36,3.5037506103225793e-35,3.0694949603975676e-37,1.5620020636187173e-18,0.0,0.0003607503604143858,11.0,3.0,8.0,0.09899475425481796,-0.016438422724604607,-0.044507574290037155,-0.021464645862579346,0.0007284382008947432,0.0028409091755747795,0.0012626262614503503,0.005681818351149559,0.0037878789007663727,0.0012626262614503503,-0.016438422724604607,0.006687062792479992,0.0028409091755747795,0.0012626262614503503,-0.0004856254963669926,-0.0005681818001903594,-0.00025252526393160224,0.0,0.0,-0.0,-0.044507574290037155,0.0028409091755747795,0.10132575780153275,0.0037878789007663727,1.7746004897524476e-21,-0.0028409091755747795,0.0,-0.034090910106897354,-0.0037878789007663727,-2.1026951850613277e-18,-0.021464645862579346,0.0012626262614503503,0.0037878789007663727,0.012445887550711632,1.4324858585426178e-20,0.0,-0.0003607503604143858,-7.359432527329188e-18,-0.0010822510812431574,-0.0012626262614503503,0.0007284382008947432,-0.0004856254963669926,1.7746004897524476e-21,1.4324858585426178e-20,4.856254963669926e-05,-3.0654255291642506e-21,-2.872342873773299e-21,0.0,0.0,-0.0,0.0028409091755747795,-0.0005681818001903594,-0.0028409091755747795,0.0,-3.0654255291642506e-21,0.0005681818001903594,0.0,0.0,0.0,-0.0,0.0012626262614503503,-0.00025252526393160224,0.0,-0.0003607503604143858,-2.872342873773299e-21,0.0,7.215006917249411e-05,0.0,0.0,-0.0,0.005681818351149559,0.0,-0.034090910106897354,-7.359432527329188e-18,0.0,0.0,0.0,0.017045455053448677,0.0,1.0513475925306639e-18,0.0037878789007663727,0.0,-0.0037878789007663727,-0.0010822510812431574,0.0,0.0,0.0,0.0,0.0010822510812431574,-0.0,0.0012626262614503503,-0.0,-2.1026951850613277e-18,-0.0012626262614503503,-0.0,-0.0,-0.0,1.0513475925306639e-18,-0.0,0.0001803751802071929,11.0,3.0,9.0,0.0898318886756897,-0.01472416426986456,-0.03989899158477783,-0.017447199672460556,0.0006475006230175495,0.0025252525229007006,0.001010101055726409,0.005050505045801401,0.0030303029343485832,0.0009182736393995583,-0.01472416426986456,0.005966502707451582,0.0025252525229007006,0.001010101055726409,-0.00043166711111553013,-0.0005050505278632045,-0.00020202020823489875,-7.703719777548943e-34,0.0,2.710505431213761e-20,-0.03989899158477783,0.0025252525229007006,0.09040404111146927,0.0030303029343485832,-3.273260635740594e-20,-0.0025252525229007006,0.0,-0.03030303120613098,-0.0030303029343485832,2.927345865710862e-18,-0.017447199672460556,0.001010101055726409,0.0030303029343485832,0.008821985684335232,2.7284296030604112e-21,-0.0,-0.00025252526393160224,1.449421438081755e-17,-0.0007575757335871458,-0.0007870916742831469,0.0006475006230175495,-0.00043166711111553013,-3.273260635740594e-20,2.7284296030604112e-21,4.316671038395725e-05,6.413965739878279e-21,-3.076793052673809e-22,1.6372676193083343e-35,1.65694502856058e-22,-5.277399181442854e-22,0.0025252525229007006,-0.0005050505278632045,-0.0025252525229007006,-0.0,6.413965739878279e-21,0.0005050505278632045,1.704069610041664e-21,1.166454437662198e-35,-3.194677144688671e-22,-1.662885668669648e-21,0.001010101055726409,-0.00020202020823489875,0.0,-0.00025252526393160224,-3.076793052673809e-22,1.704069610041664e-21,5.0505052058724687e-05,1.4120565048236524e-34,-1.8808958869034766e-23,-3.3881317890172014e-21,0.005050505045801401,-7.703719777548943e-34,-0.03030303120613098,1.449421438081755e-17,1.6372676193083343e-35,1.166454437662198e-35,1.4120565048236524e-34,0.01515151560306549,-2.609890697020414e-18,-1.485540486324036e-18,0.0030303029343485832,0.0,-0.0030303029343485832,-0.0007575757335871458,1.65694502856058e-22,-3.194677144688671e-22,-1.8808958869034766e-23,-2.609890697020414e-18,0.0007575757335871458,1.3552527156068805e-20,0.0009182736393995583,2.710505431213761e-20,2.927345865710862e-18,-0.0007870916742831469,-5.277399181442854e-22,-1.662885668669648e-21,-3.3881317890172014e-21,-1.485540486324036e-18,1.3552527156068805e-20,9.838645928539336e-05,11.0,3.0,10.0,0.08222610503435135,-0.013334392569959164,-0.036157023161649704,-0.014462810009717941,0.0005827505956403911,0.0022727272007614374,0.0008264462812803686,0.004545454401522875,0.002479338785633445,0.000688705244101584,-0.013334392569959164,0.005386381410062313,0.0022727272007614374,0.0008264462812803686,-0.0003885003970935941,-0.00045454545761458576,-0.00016528925334569067,9.62964972193618e-35,0.0,-1.3552527156068805e-20,-0.036157023161649704,0.0022727272007614374,0.08161157369613647,0.002479338785633445,2.99971879263527e-20,-0.0022727272007614374,0.0,-0.027272727340459824,-0.002479338785633445,-1.111307226797642e-18,-0.014462810009717941,0.0008264462812803686,0.002479338785633445,0.006485307589173317,-1.4995977721761404e-21,-0.0,-0.0001836547307902947,-4.903102741150415e-18,-0.0005509642069227993,-0.0005165289039723575,0.0005827505956403911,-0.0003885003970935941,2.99971879263527e-20,-1.4995977721761404e-21,3.885003752657212e-05,-3.29151361995867e-21,-2.248707206454822e-22,-6.112628738925808e-36,-3.0485104328465906e-22,3.1188228043975153e-22,0.0022727272007614374,-0.00045454545761458576,-0.0022727272007614374,-0.0,-3.29151361995867e-21,0.00045454545761458576,1.707390651343772e-21,-3.281050177857783e-36,-4.305564955372832e-22,-8.095570307900578e-22,0.0008264462812803686,-0.00016528925334569067,0.0,-0.0001836547307902947,-2.248707206454822e-22,1.707390651343772e-21,3.6730947613250464e-05,-1.2586605761429643e-35,8.566263036553548e-22,3.3881317890172014e-21,0.004545454401522875,9.62964972193618e-35,-0.027272727340459824,-4.903102741150415e-18,-6.112628738925808e-36,-3.281050177857783e-36,-1.2586605761429643e-35,0.013636363670229912,4.81482486096809e-35,5.447892164383964e-19,0.002479338785633445,0.0,-0.002479338785633445,-0.0005509642069227993,-3.0485104328465906e-22,-4.305564955372832e-22,8.566263036553548e-22,4.81482486096809e-35,0.0005509642069227993,-6.776263578034403e-21,0.000688705244101584,-1.3552527156068805e-20,-1.111307226797642e-18,-0.0005165289039723575,3.1188228043975153e-22,-8.095570307900578e-22,3.3881317890172014e-21,5.447892164383964e-19,-6.776263578034403e-21,5.7392102462472394e-05,11.0,3.0,11.0,0.07581055164337158,-0.01218478474766016,-0.03305784985423088,-0.01218478474766016,0.0005297732423059642,0.00206611561588943,0.000688705244101584,0.00413223123177886,0.00206611561588943,0.0005297732423059642,-0.01218478474766016,0.004909232258796692,0.00206611561588943,0.000688705244101584,-0.0003531821712385863,-0.0004132231406401843,-0.00013774105173069984,3.851859888774472e-34,0.0,3.3881317890172014e-20,-0.03305784985423088,0.00206611561588943,0.07438016682863235,0.00206611561588943,-5.442666192370219e-20,-0.00206611561588943,-2.0328790734103208e-20,-0.024793388321995735,-0.00206611561588943,-8.131516293641283e-19,-0.01218478474766016,0.000688705244101584,0.00206611561588943,0.004909232258796692,-6.5440338327504906e-21,-1.703232089671454e-20,-0.00013774105173069984,-4.117165353939281e-18,-0.0004132231406401843,-0.0003531821712385863,0.0005297732423059642,-0.0003531821712385863,-5.442666192370219e-20,-6.5440338327504906e-21,3.5318218579050153e-05,7.613893808169448e-21,1.9705693915580982e-21,-7.288619575399199e-36,2.582822995082812e-22,-5.195476796850993e-22,0.00206611561588943,-0.0004132231406401843,-0.00206611561588943,-1.703232089671454e-20,7.613893808169448e-21,0.0004132231406401843,2.2064406702418043e-21,1.0620439357138856e-35,3.0788463629467905e-22,4.667483736397666e-22,0.000688705244101584,-0.00013774105173069984,-2.0328790734103208e-20,-0.00013774105173069984,1.9705693915580982e-21,2.2064406702418043e-21,2.7548208890948445e-05,-4.6373045510072887e-35,-9.16196939275615e-22,-5.082197683525802e-21,0.00413223123177886,3.851859888774472e-34,-0.024793388321995735,-4.117165353939281e-18,-7.288619575399199e-36,1.0620439357138856e-35,-4.6373045510072887e-35,0.012396694160997868,0.0,4.117165353939281e-19,0.00206611561588943,0.0,-0.00206611561588943,-0.0004132231406401843,2.582822995082812e-22,3.0788463629467905e-22,-9.16196939275615e-22,0.0,0.0004132231406401843,0.0,0.0005297732423059642,3.3881317890172014e-20,-8.131516293641283e-19,-0.0003531821712385863,-5.195476796850993e-22,4.667483736397666e-22,-5.082197683525802e-21,4.117165353939281e-19,0.0,3.5318218579050153e-05,11.0,3.0,12.0,0.07032550871372223,-0.011217948980629444,-0.03044871799647808,-0.010406260378658772,0.0004856254963669926,0.0018939394503831863,0.0005827505956403911,0.0037878789007663727,0.0017482517287135124,0.0004162504046689719,-0.011217948980629444,0.004509842023253441,0.0018939394503831863,0.0005827505956403911,-0.00032375031150877476,-0.0003787878667935729,-0.00011655011621769518,7.763797288233898e-19,1.5585406229479126e-18,1.212951180468158e-18,-0.03044871799647808,0.0018939394503831863,0.06832750886678696,0.0017482517287135124,6.919762870700102e-19,-0.0018939394503831863,7.182839392716467e-19,-0.022727273404598236,-0.0017482517287135124,3.496552006265752e-18,-0.010406260378658772,0.0005827505956403911,0.0017482517287135124,0.0038067991845309734,1.5245088615838325e-18,2.5292339698515935e-18,-0.00010595464846119285,1.9027605852055244e-17,-0.00031786394538357854,-0.00024975024280138314,0.0004856254963669926,-0.00032375031150877476,6.919762870700102e-19,1.5245088615838325e-18,3.237503187847324e-05,-1.7953619961133183e-21,-4.50838313883262e-20,7.574895147590421e-33,-1.264315451743127e-19,-9.902265062107817e-20,0.0018939394503831863,-0.0003787878667935729,-0.0018939394503831863,2.5292339698515935e-18,-1.7953619961133183e-21,0.0003787878667935729,-7.038249772605846e-20,1.2647029109797786e-32,-2.116387867632436e-19,-1.6590160547562268e-19,0.0005827505956403911,-0.00011655011621769518,7.182839392716467e-19,-0.00010595464846119285,-4.50838313883262e-20,-7.038249772605846e-20,2.119093005603645e-05,-1.4115994834521685e-19,-1.582709935717917e-20,-8.470329472543003e-21,0.0037878789007663727,7.763797288233898e-19,-0.022727273404598236,1.9027605852055244e-17,7.574895147590421e-33,1.2647029109797786e-32,-1.4115994834521685e-19,0.011363636702299118,-2.1173993544252235e-18,-1.3448006681818136e-18,0.0017482517287135124,1.5585406229479126e-18,-0.0017482517287135124,-0.00031786394538357854,-1.264315451743127e-19,-2.116387867632436e-19,-1.582709935717917e-20,-2.1173993544252235e-18,0.00031786394538357854,3.3881317890172014e-21,0.0004162504046689719,1.212951180468158e-18,3.496552006265752e-18,-0.00024975024280138314,-9.902265062107817e-20,-1.6590160547562268e-19,-8.470329472543003e-21,-1.3448006681818136e-18,3.3881317890172014e-21,2.2704567527398467e-05,11.0,3.0,13.0,0.06558185070753098,-0.01039345283061266,-0.028221778571605682,-0.008991008624434471,0.00044826968223787844,0.0017482517287135124,0.0004995004856027663,0.003496503457427025,0.0014985015150159597,0.0003330003237351775,-0.01039345283061266,0.004170615691691637,0.0017482517287135124,0.0004995004856027663,-0.0002988464548252523,-0.00034965036320500076,-9.990009857574478e-05,-5.7777898331617076e-34,0.0,-4.743384504624082e-20,-0.028221778571605682,0.0017482517287135124,0.06318681687116623,0.0014985015150159597,-3.530841447315339e-20,-0.0017482517287135124,0.0,-0.02097902074456215,-0.0014985015150159597,-5.014435047745458e-19,-0.008991008624434471,0.0004995004856027663,0.0014985015150159597,0.0030121393501758575,-3.3783913636998647e-22,-0.0,-8.325008093379438e-05,-3.0248561910652974e-18,-0.00024975024280138314,-0.00018163654021918774,0.00044826968223787844,-0.0002988464548252523,-3.530841447315339e-20,-3.3783913636998647e-22,2.9884644391131587e-05,5.075188458745409e-21,-5.863865010328314e-23,3.512220569434638e-36,6.5256760171222645e-22,-8.482707772996752e-23,0.0017482517287135124,-0.00034965036320500076,-0.0017482517287135124,-0.0,5.075188458745409e-21,0.00034965036320500076,8.496156652362194e-22,-5.3960571688846004e-36,-8.569982294840611e-23,-4.1788140667832854e-22,0.0004995004856027663,-9.990009857574478e-05,0.0,-8.325008093379438e-05,-5.863865010328314e-23,8.496156652362194e-22,1.6650015822960995e-05,9.224154106453526e-35,5.27257968307406e-23,6.776263578034403e-21,0.003496503457427025,-5.7777898331617076e-34,-0.02097902074456215,-3.0248561910652974e-18,3.512220569434638e-36,-5.3960571688846004e-36,9.224154106453526e-35,0.010489510372281075,4.81482486096809e-35,2.5207134925544145e-19,0.0014985015150159597,0.0,-0.0014985015150159597,-0.00024975024280138314,6.5256760171222645e-22,-8.569982294840611e-23,5.27257968307406e-23,4.81482486096809e-35,0.00024975024280138314,0.0,0.0003330003237351775,-4.743384504624082e-20,-5.014435047745458e-19,-0.00018163654021918774,-8.482707772996752e-23,-4.1788140667832854e-22,6.776263578034403e-21,2.5207134925544145e-19,0.0,1.5136378351598978e-05,11.0,3.0,14.0,0.061438560485839844,-0.009681984782218933,-0.026298701763153076,-0.007846320047974586,0.0004162504046689719,0.001623376621864736,0.00043290044413879514,0.003246753243729472,0.0012987012742087245,0.00027056277031078935,-0.009681984782218933,0.0038788989186286926,0.001623376621864736,0.00043290044413879514,-0.0002775002794805914,-0.0003246753185521811,-8.658008300699294e-05,2.8888949165808538e-34,6.776263578034403e-21,2.371692252312041e-20,-0.026298701763153076,0.001623376621864736,0.058766234666109085,0.0012987012742087245,0.0,-0.001623376621864736,-6.776263578034403e-21,-0.019480518996715546,-0.0012987012742087245,-4.0657581468206416e-19,-0.007846320047974586,0.00043290044413879514,0.0012987012742087245,0.002424658741801977,-0.0,-0.0,-6.660006329184398e-05,-2.6358784371201458e-18,-0.00019980019715148956,-0.00013528138515539467,0.0004162504046689719,-0.0002775002794805914,0.0,-0.0,2.775002758426126e-05,0.0,0.0,0.0,0.0,0.0,0.001623376621864736,-0.0003246753185521811,-0.001623376621864736,-0.0,0.0,0.0003246753185521811,0.0,0.0,0.0,0.0,0.00043290044413879514,-8.658008300699294e-05,-6.776263578034403e-21,-6.660006329184398e-05,0.0,0.0,1.3320013749762438e-05,-3.611118645726067e-35,0.0,-2.541098841762901e-21,0.003246753243729472,2.8888949165808538e-34,-0.019480518996715546,-2.6358784371201458e-18,0.0,0.0,-3.611118645726067e-35,0.009740259498357773,0.0,2.0275988176688768e-19,0.0012987012742087245,6.776263578034403e-21,-0.0012987012742087245,-0.00019980019715148956,0.0,0.0,0.0,0.0,0.00019980019715148956,0.0,0.00027056277031078935,2.371692252312041e-20,-4.0657581468206416e-19,-0.00013528138515539467,0.0,0.0,-2.541098841762901e-21,2.0275988176688768e-19,0.0,1.0406260116724297e-05,11.0,3.0,15.0,0.057788290083408356,-0.00906177144497633,-0.024621212854981422,-0.006907308474183083,0.0003885003970935941,0.0015151514671742916,0.0003787878667935729,0.0030303029343485832,0.0011363636003807187,0.0002228163939435035,-0.00906177144497633,0.003625356126576662,0.0015151514671742916,0.0003787878667935729,-0.0002590002550277859,-0.0003030303050763905,-7.575757626909763e-05,-2.8888949165808538e-34,-6.776263578034403e-21,-1.3552527156068805e-20,-0.024621212854981422,0.0015151514671742916,0.054924242198467255,0.0011363636003807187,0.0,-0.0015151514671742916,-1.3552527156068805e-20,-0.0181818176060915,-0.0011363636003807187,-3.3881317890172014e-19,-0.006907308474183083,0.0003787878667935729,0.0011363636003807187,0.001980862347409129,-0.0,-0.0,-5.411255551734939e-05,-2.317721819270253e-18,-0.00016233765927609056,-0.00010283834126312286,0.0003885003970935941,-0.0002590002550277859,0.0,-0.0,2.590002623037435e-05,0.0,0.0,0.0,0.0,0.0,0.0015151514671742916,-0.0003030303050763905,-0.0015151514671742916,-0.0,0.0,0.0003030303050763905,0.0,0.0,0.0,0.0,0.0003787878667935729,-7.575757626909763e-05,-1.3552527156068805e-20,-5.411255551734939e-05,0.0,0.0,1.0822510375874117e-05,3.611118645726067e-35,8.470329472543003e-22,1.6940658945086007e-21,0.0030303029343485832,-2.8888949165808538e-34,-0.0181818176060915,-2.317721819270253e-18,0.0,0.0,3.611118645726067e-35,0.00909090880304575,2.407412430484045e-35,1.6555156590484497e-19,0.0011363636003807187,-6.776263578034403e-21,-0.0011363636003807187,-0.00016233765927609056,0.0,0.0,8.470329472543003e-22,2.407412430484045e-35,0.00016233765927609056,0.0,0.0002228163939435035,-1.3552527156068805e-20,-3.3881317890172014e-19,-0.00010283834126312286,0.0,0.0,1.6940658945086007e-21,1.6555156590484497e-19,0.0,7.3455958045087755e-06,11.0,3.0,16.0,0.054547883570194244,-0.008516299538314342,-0.023145053535699844,-0.006127451080828905,0.0003642191004473716,0.0014204545877873898,0.0003342246054671705,0.0028409091755747795,0.0010026737581938505,0.00018568032828625292,-0.008516299538314342,0.0034029490780085325,0.0014204545877873898,0.0003342246054671705,-0.0002428127481834963,-0.0002840909000951797,-6.68449210934341e-05,-7.703719777548943e-34,6.776263578034403e-21,-2.710505431213761e-20,-0.023145053535699844,0.0014204545877873898,0.05155414342880249,0.0010026737581938505,0.0,-0.0014204545877873898,0.0,-0.017045455053448677,-0.0010026737581938505,-2.710505431213761e-19,-0.006127451080828905,0.0003342246054671705,0.0010026737581938505,0.0016392921097576618,-0.0,-0.0,-4.456327951629646e-05,-2.054103493952666e-18,-0.0001336898421868682,-7.95772866695188e-05,0.0003642191004473716,-0.0002428127481834963,0.0,-0.0,2.428127481834963e-05,0.0,0.0,0.0,0.0,0.0,0.0014204545877873898,-0.0002840909000951797,-0.0014204545877873898,-0.0,0.0,0.0002840909000951797,0.0,0.0,0.0,0.0,0.0003342246054671705,-6.68449210934341e-05,0.0,-4.456327951629646e-05,0.0,0.0,8.912656085158233e-06,1.0833355937178202e-34,-8.470329472543003e-22,3.3881317890172014e-21,0.0028409091755747795,-7.703719777548943e-34,-0.017045455053448677,-2.054103493952666e-18,0.0,0.0,1.0833355937178202e-34,0.008522727526724339,-2.407412430484045e-35,1.3694022862194536e-19,0.0010026737581938505,6.776263578034403e-21,-0.0010026737581938505,-0.0001336898421868682,0.0,0.0,-8.470329472543003e-22,-2.407412430484045e-35,0.0001336898421868682,-8.470329472543003e-22,0.00018568032828625292,-2.710505431213761e-20,-2.710505431213761e-19,-7.95772866695188e-05,0.0,0.0,3.3881317890172014e-21,1.3694022862194536e-19,-8.470329472543003e-22,5.305152171786176e-06,11.0,4.0,3.0,0.16768647730350494,-0.030856642872095108,-0.06818182021379471,-0.08295454829931259,0.0014568764017894864,0.004545454401522875,0.005681818351149559,0.007575757801532745,0.013636363670229912,0.011363636702299118,-0.030856642872095108,0.012970085255801678,0.004545454401522875,0.005681818351149559,-0.0009712509927339852,-0.0009090909152291715,-0.0011363636003807187,-1.824024654137113e-18,-1.568661177742499e-18,1.5719352620045604e-18,-0.06818182021379471,0.004545454401522875,0.09848485141992569,0.013636363670229912,-8.808282383607668e-19,-0.0030303029343485832,3.1591564081387944e-18,-0.022727273404598236,-0.00909090880304575,5.0005139289084356e-17,-0.08295454829931259,0.005681818351149559,0.013636363670229912,0.19659091532230377,3.881319100700279e-19,1.4653101300828266e-18,-0.005681818351149559,2.522799290507513e-17,-0.013636363670229912,-0.06818182021379471,0.0014568764017894864,-0.0009712509927339852,-8.808282383607668e-19,3.881319100700279e-19,9.712509927339852e-05,4.193532025183369e-20,-2.0081336099566275e-20,1.5876737948750595e-19,9.786856564550478e-20,-2.44951340434103e-19,0.004545454401522875,-0.0009090909152291715,-0.0030303029343485832,1.4653101300828266e-18,4.193532025183369e-20,0.000606060610152781,-1.494255376914559e-19,1.3454889858490343e-18,2.5232340669772284e-19,-6.085973085052776e-19,0.005681818351149559,-0.0011363636003807187,3.1591564081387944e-18,-0.005681818351149559,-2.0081336099566275e-20,-1.494255376914559e-19,0.0011363636003807187,-6.333304741097076e-19,-1.277469949928193e-19,2.597009426931432e-18,0.007575757801532745,-1.824024654137113e-18,-0.022727273404598236,2.522799290507513e-17,1.5876737948750595e-19,1.3454889858490343e-18,-6.333304741097076e-19,0.007575757801532745,-2.819627924802369e-18,-8.906644911788187e-18,0.013636363670229912,-1.568661177742499e-18,-0.00909090880304575,-0.013636363670229912,9.786856564550478e-20,2.5232340669772284e-19,-1.277469949928193e-19,-2.819627924802369e-18,0.00909090880304575,-1.541466622488083e-17,0.011363636702299118,1.5719352620045604e-18,5.0005139289084356e-17,-0.06818182021379471,-2.44951340434103e-19,-6.085973085052776e-19,2.597009426931432e-18,-8.906644911788187e-18,-1.541466622488083e-17,0.034090910106897354,11.0,4.0,4.0,0.1376398652791977,-0.023994754999876022,-0.05318181961774826,-0.05318181961774826,0.0010926573304459453,0.003409090917557478,0.003409090917557478,0.005681818351149559,0.008181817829608917,0.005681818351149559,-0.023994754999876022,0.009898019023239613,0.003409090917557478,0.003409090917557478,-0.0007284382008947432,-0.0006818181718699634,-0.0006818181718699634,6.840092840755086e-20,-1.3011376293554723e-18,-9.808632223422907e-19,-0.05318181961774826,0.003409090917557478,0.0752272754907608,0.008181817829608917,1.816372949127662e-19,-0.0022727272007614374,3.623171437761388e-18,-0.017045455053448677,-0.005454545374959707,2.2469590407672097e-17,-0.05318181961774826,0.003409090917557478,0.008181817829608917,0.0752272754907608,-7.109893436422712e-19,4.817725294225754e-18,-0.0022727272007614374,1.0780804569261832e-17,-0.005454545374959707,-0.017045455053448677,0.0010926573304459453,-0.0007284382008947432,1.816372949127662e-19,-7.109893436422712e-19,7.284382445504889e-05,-8.444661302726708e-35,2.6360838945671372e-20,-1.5262814837871395e-19,1.4802469439940029e-19,1.190493717975832e-19,0.003409090917557478,-0.0006818181718699634,-0.0022727272007614374,4.817725294225754e-18,-8.444661302726708e-35,0.00045454545761458576,-1.8281123222304088e-19,1.606549772110184e-18,-1.5218095386005247e-19,-1.1690077274141613e-18,0.003409090917557478,-0.0006818181718699634,3.623171437761388e-18,-0.0022727272007614374,2.6360838945671372e-20,-1.8281123222304088e-19,0.00045454545761458576,-8.89158153924329e-19,3.573117162082761e-20,1.4001033789976948e-18,0.005681818351149559,6.840092840755086e-20,-0.017045455053448677,1.0780804569261832e-17,-1.5262814837871395e-19,1.606549772110184e-18,-8.89158153924329e-19,0.005681818351149559,1.0276444218852272e-18,-2.2938491799968195e-18,0.008181817829608917,-1.3011376293554723e-18,-0.005454545374959707,-0.005454545374959707,1.4802469439940029e-19,-1.5218095386005247e-19,3.573117162082761e-20,1.0276444218852272e-18,0.003636363660916686,-6.040832598254838e-18,0.005681818351149559,-9.808632223422907e-19,2.2469590407672097e-17,-0.017045455053448677,1.190493717975832e-19,-1.1690077274141613e-18,1.4001033789976948e-18,-2.2938491799968195e-18,-6.040832598254838e-18,0.005681818351149559,11.0,4.0,5.0,0.11687812209129333,-0.019650349393486977,-0.04363636299967766,-0.037077922374010086,0.0008741258643567562,0.0027272726874798536,0.0022727272007614374,0.004545454401522875,0.005454545374959707,0.003246753243729472,-0.019650349393486977,0.008009323850274086,0.0027272726874798536,0.0022727272007614374,-0.0005827505956403911,-0.0005454545607790351,-0.00045454545761458576,1.6537824054724214e-18,-1.279249292973977e-18,-3.2635869264978485e-18,-0.04363636299967766,0.0027272726874798536,0.06090909242630005,0.005454545374959707,1.1658391086802004e-18,-0.001818181830458343,-2.2955008528849347e-18,-0.013636363670229912,-0.003636363660916686,-1.613135370557025e-17,-0.037077922374010086,0.0022727272007614374,0.005454545374959707,0.03801948204636574,1.7537628730816991e-19,1.1812699554044304e-21,-0.0011363636003807187,-1.1623951421998359e-17,-0.0027272726874798536,-0.006493506487458944,0.0008741258643567562,-0.0005827505956403911,1.1658391086802004e-18,1.7537628730816991e-19,5.827505810884759e-05,-3.9283786335946423e-20,-2.2128971622740145e-20,-2.6185234640857473e-19,-6.482653234669291e-20,-2.0373020259171003e-21,0.0027272726874798536,-0.0005454545607790351,-0.001818181830458343,1.1812699554044304e-21,-3.9283786335946423e-20,0.0003636363544501364,-1.8380598153312125e-19,1.820310070349473e-19,1.0099212242312718e-19,1.8455022436456876e-19,0.0022727272007614374,-0.00045454545761458576,-2.2955008528849347e-18,-0.0011363636003807187,-2.2128971622740145e-20,-1.8380598153312125e-19,0.00022727272880729288,4.404190305652705e-19,9.16071612527084e-19,1.6043836962786374e-18,0.004545454401522875,1.6537824054724214e-18,-0.013636363670229912,-1.1623951421998359e-17,-2.6185234640857473e-19,1.820310070349473e-19,4.404190305652705e-19,0.004545454401522875,1.3454569326002979e-18,1.8494840326205765e-18,0.005454545374959707,-1.279249292973977e-18,-0.003636363660916686,-0.0027272726874798536,-6.482653234669291e-20,1.0099212242312718e-19,9.16071612527084e-19,1.3454569326002979e-18,0.001818181830458343,4.517447564930735e-18,0.003246753243729472,-3.2635869264978485e-18,-1.613135370557025e-17,-0.006493506487458944,-2.0373020259171003e-21,1.8455022436456876e-19,1.6043836962786374e-18,1.8494840326205765e-18,4.517447564930735e-18,0.001623376621864736,11.0,4.0,6.0,0.10161921381950378,-0.016645854339003563,-0.037012986838817596,-0.02735389582812786,0.0007284382008947432,0.0022727272007614374,0.001623376621864736,0.0037878789007663727,0.0038961039390414953,0.0020292208064347506,-0.016645854339003563,0.006728549022227526,0.0022727272007614374,0.001623376621864736,-0.0004856254963669926,-0.00045454545761458576,-0.0003246753185521811,8.866786800382013e-19,-7.817248665441309e-19,-1.3591897851299032e-18,-0.037012986838817596,0.0022727272007614374,0.05119047686457634,0.0038961039390414953,-2.710505431213761e-20,-0.0015151514671742916,7.418281878418967e-19,-0.011363636702299118,-0.002597402548417449,-4.406851449080864e-18,-0.02735389582812786,0.001623376621864736,0.0038961039390414953,0.022102272137999535,-4.87890977618477e-19,-1.1268614276385126e-18,-0.0006493506371043622,5.25741573376773e-19,-0.0015584415523335338,-0.003043831093236804,0.0007284382008947432,-0.0004856254963669926,-2.710505431213761e-20,-4.87890977618477e-19,4.856254963669926e-05,3.3881317890172014e-21,2.710505431213761e-20,-4.4482642335236344e-20,3.056031374656805e-20,5.82670611749813e-20,0.0022727272007614374,-0.00045454545761458576,-0.0015151514671742916,-1.1268614276385126e-18,3.3881317890172014e-21,0.0003030303050763905,2.710505431213761e-20,6.676697915652926e-19,1.279420415963199e-19,1.4362158614938638e-19,0.001623376621864736,-0.0003246753185521811,7.418281878418967e-19,-0.0006493506371043622,2.710505431213761e-20,2.710505431213761e-20,0.0001298701245104894,-4.719769015123576e-19,1.6122078425964116e-19,1.4711355495467313e-19,0.0037878789007663727,8.866786800382013e-19,-0.011363636702299118,5.25741573376773e-19,-4.4482642335236344e-20,6.676697915652926e-19,-4.719769015123576e-19,0.0037878789007663727,-3.0576397885838233e-19,4.542615879236157e-19,0.0038961039390414953,-7.817248665441309e-19,-0.002597402548417449,-0.0015584415523335338,3.056031374656805e-20,1.279420415963199e-19,1.6122078425964116e-19,-3.0576397885838233e-19,0.0010389609960839152,6.718569281272478e-19,0.0020292208064347506,-1.3591897851299032e-18,-4.406851449080864e-18,-0.003043831093236804,5.82670611749813e-20,1.4362158614938638e-19,1.4711355495467313e-19,4.542615879236157e-19,6.718569281272478e-19,0.0006087662186473608,11.0,4.0,7.0,0.08991216868162155,-0.014441807754337788,-0.03214285895228386,-0.021022727712988853,0.0006243756506592035,0.0019480519695207477,0.0012175324372947216,0.003246753243729472,0.0029220778960734606,0.0013528139097616076,-0.014441807754337788,0.0058021144941449165,0.0019480519695207477,0.0012175324372947216,-0.0004162504046689719,-0.00038961038808338344,-0.00024350649619009346,-2.2979581996896766e-18,-3.5250981643013216e-19,-8.710600625071281e-19,-0.03214285895228386,0.0019480519695207477,0.04415584355592728,0.0029220778960734606,-3.9150771816038775e-20,-0.0012987012742087245,-2.292126989961484e-18,-0.009740259498357773,-0.0019480519695207477,-5.751367773927113e-18,-0.021022727712988853,0.0012175324372947216,0.0029220778960734606,0.014042207971215248,-3.155503397608001e-20,-2.218302154266892e-18,-0.000405844155466184,-1.3915070492383447e-17,-0.0009740259847603738,-0.001623376621864736,0.0006243756506592035,-0.0004162504046689719,-3.9150771816038775e-20,-3.155503397608001e-20,4.162504046689719e-05,2.8935555328413094e-21,4.245630913621642e-21,-2.045053007140342e-21,8.810131067653239e-21,4.030641272289077e-36,0.0019480519695207477,-0.00038961038808338344,-0.0012987012742087245,-2.218302154266892e-18,2.8935555328413094e-21,0.0002597402490209788,1.2536087619363645e-19,5.603805887080436e-19,5.4540903321114e-20,2.4992034362067973e-19,0.0012175324372947216,-0.00024350649619009346,-2.292126989961484e-18,-0.000405844155466184,4.245630913621642e-21,1.2536087619363645e-19,8.116882963804528e-05,4.931442982912247e-19,5.857507609323219e-20,1.6539317374223813e-19,0.003246753243729472,-2.2979581996896766e-18,-0.009740259498357773,-1.3915070492383447e-17,-2.045053007140342e-21,5.603805887080436e-19,4.931442982912247e-19,0.003246753243729472,1.3848910105449618e-18,1.5620020636187173e-18,0.0029220778960734606,-3.5250981643013216e-19,-0.0019480519695207477,-0.0009740259847603738,8.810131067653239e-21,5.4540903321114e-20,5.857507609323219e-20,1.3848910105449618e-18,0.0006493506371043622,-6.14134365052828e-20,0.0013528139097616076,-8.710600625071281e-19,-5.751367773927113e-18,-0.001623376621864736,4.030641272289077e-36,2.4992034362067973e-19,1.6539317374223813e-19,1.5620020636187173e-18,-6.14134365052828e-20,0.00027056277031078935,11.0,4.0,8.0,0.0806381106376648,-0.0127549534663558,-0.028409091755747795,-0.01666666753590107,0.0005463286652229726,0.001704545458778739,0.0009469697251915932,0.0028409091755747795,0.0022727272007614374,0.0009469697251915932,-0.0127549534663558,0.005100524518638849,0.001704545458778739,0.0009469697251915932,-0.0003642191004473716,-0.0003409090859349817,-0.00018939393339678645,0.0,0.0,-0.0,-0.028409091755747795,0.001704545458778739,0.038825757801532745,0.0022727272007614374,2.4757901455140335e-21,-0.0011363636003807187,5.421010862427522e-20,-0.008522727526724339,-0.0015151514671742916,-0.0,-0.01666666753590107,0.0009469697251915932,0.0022727272007614374,0.009496753104031086,1.0435028022404928e-20,6.776263578034403e-20,-0.00027056277031078935,0.0,-0.0006493506371043622,-0.0009469697251915932,0.0005463286652229726,-0.0003642191004473716,2.4757901455140335e-21,1.0435028022404928e-20,3.6421912227524444e-05,-2.183695424828905e-21,-3.9532423580265365e-21,0.0,0.0,-0.0,0.001704545458778739,-0.0003409090859349817,-0.0011363636003807187,6.776263578034403e-20,-2.183695424828905e-21,0.00022727272880729288,-1.0164395367051604e-20,0.0,0.0,-0.0,0.0009469697251915932,-0.00018939393339678645,5.421010862427522e-20,-0.00027056277031078935,-3.9532423580265365e-21,-1.0164395367051604e-20,5.411255551734939e-05,0.0,0.0,-0.0,0.0028409091755747795,0.0,-0.008522727526724339,0.0,0.0,0.0,0.0,0.0028409091755747795,0.0,-0.0,0.0022727272007614374,0.0,-0.0015151514671742916,-0.0006493506371043622,0.0,0.0,0.0,0.0,0.00043290044413879514,-0.0,0.0009469697251915932,-0.0,-0.0,-0.0009469697251915932,-0.0,-0.0,-0.0,-0.0,-0.0,0.00013528138515539467,11.0,4.0,9.0,0.07310623675584793,-0.011421911418437958,-0.02545454539358616,-0.013539944775402546,0.0004856254963669926,0.0015151514671742916,0.0007575757335871458,0.0025252525229007006,0.001818181830458343,0.000688705244101584,-0.011421911418437958,0.004550634417682886,0.0015151514671742916,0.0007575757335871458,-0.00032375031150877476,-0.0003030303050763905,-0.00015151515253819525,7.695913884084121e-18,1.0706496453294356e-18,-3.6591823321385775e-19,-0.02545454539358616,0.0015151514671742916,0.03464646637439728,0.001818181830458343,3.487561380187913e-18,-0.001010101055726409,-3.4558944247975454e-19,-0.007575757801532745,-0.001212121220305562,-5.6107462426124854e-18,-0.013539944775402546,0.0007575757335871458,0.001818181830458343,0.00673012575134635,2.0192418377896477e-19,-2.183207776008411e-18,-0.00018939393339678645,-1.191636473161953e-17,-0.00045454545761458576,-0.0005903187557123601,0.0004856254963669926,-0.00032375031150877476,3.487561380187913e-18,2.0192418377896477e-19,3.237503187847324e-05,-1.0434064647796987e-19,-2.7406737340514e-21,-7.548136309892721e-19,-1.2108913456465362e-19,-4.454152018689875e-22,0.0015151514671742916,-0.0003030303050763905,-0.001010101055726409,-2.183207776008411e-18,-1.0434064647796987e-19,0.00020202020823489875,8.05740608063536e-20,-9.8518193232043e-20,1.3678069908599627e-19,1.803521664335885e-19,0.0007575757335871458,-0.00015151515253819525,-3.4558944247975454e-19,-0.00018939393339678645,-2.7406737340514e-21,8.05740608063536e-20,3.787878813454881e-05,3.2629661471937954e-34,-1.3083895411727704e-20,2.371692252312041e-20,0.0025252525229007006,7.695913884084121e-18,-0.007575757801532745,-1.191636473161953e-17,-7.548136309892721e-19,-9.8518193232043e-20,3.2629661471937954e-34,0.0025252525229007006,8.631669500057823e-19,1.2015401205204125e-18,0.001818181830458343,1.0706496453294356e-18,-0.001212121220305562,-0.00045454545761458576,-1.2108913456465362e-19,1.3678069908599627e-19,-1.3083895411727704e-20,8.631669500057823e-19,0.0003030303050763905,2.439454888092385e-19,0.000688705244101584,-3.6591823321385775e-19,-5.6107462426124854e-18,-0.0005903187557123601,-4.454152018689875e-22,1.803521664335885e-19,2.371692252312041e-20,1.2015401205204125e-18,2.439454888092385e-19,7.378984446404502e-05,11.0,4.0,10.0,0.06686586141586304,-0.01034170389175415,-0.023057851940393448,-0.011219007894396782,0.0004370629321783781,0.0013636363437399268,0.0006198346964083612,0.0022727272007614374,0.0014876032946631312,0.0005165289039723575,-0.01034170389175415,0.00410796795040369,0.0013636363437399268,0.0006198346964083612,-0.00029137529782019556,-0.00027272728038951755,-0.0001239669363712892,0.0,1.0164395367051604e-19,1.1519648082658485e-19,-0.023057851940393448,0.0013636363437399268,0.031280990689992905,0.0014876032946631312,1.0007521048557063e-20,-0.0009090909152291715,8.809142651444724e-20,-0.006818181835114956,-0.0009917354909703135,2.574980159653073e-19,-0.011219007894396782,0.0006198346964083612,0.0014876032946631312,0.004946625325828791,1.069099276216964e-20,8.581027079576626e-21,-0.00013774105173069984,-0.0,-0.00033057850669138134,-0.00038739669253118336,0.0004370629321783781,-0.00029137529782019556,1.0007521048557063e-20,1.069099276216964e-20,2.9137529054423794e-05,-1.016953838674396e-21,1.290885674416422e-22,-0.0,-4.866961794432327e-22,-8.766976513874658e-22,0.0013636363437399268,-0.00027272728038951755,-0.0009090909152291715,8.581027079576626e-21,-1.016953838674396e-21,0.0001818181772250682,-1.1190827754466352e-21,-0.0,1.3972145318916069e-22,-3.4162359874403203e-22,0.0006198346964083612,-0.0001239669363712892,8.809142651444724e-20,-0.00013774105173069984,1.290885674416422e-22,-1.1190827754466352e-21,2.7548208890948445e-05,0.0,-2.1893401247160126e-20,-2.202285662861181e-20,0.0022727272007614374,0.0,-0.006818181835114956,-0.0,-0.0,-0.0,0.0,0.0022727272007614374,0.0,0.0,0.0014876032946631312,1.0164395367051604e-19,-0.0009917354909703135,-0.00033057850669138134,-4.866961794432327e-22,1.3972145318916069e-22,-2.1893401247160126e-20,0.0,0.00022038567112758756,-5.759824041329242e-20,0.0005165289039723575,1.1519648082658485e-19,2.574980159653073e-19,-0.00038739669253118336,-8.766976513874658e-22,-3.4162359874403203e-22,-2.202285662861181e-20,0.0,-5.759824041329242e-20,4.3044077756349e-05,11.0,4.0,11.0,0.06160997971892357,-0.009448505938053131,-0.021074380725622177,-0.009448505938053131,0.0003973299462813884,0.0012396693928167224,0.0005165289039723575,0.00206611561588943,0.0012396693928167224,0.0003973299462813884,-0.009448505938053131,0.003743907669559121,0.0012396693928167224,0.0005165289039723575,-0.0002648866211529821,-0.0002479338727425784,-0.00010330578516004607,0.0,-4.0657581468206416e-20,-6.098637220230962e-20,-0.021074380725622177,0.0012396693928167224,0.028512395918369293,0.0012396693928167224,-4.0675734205242834e-21,-0.0008264462812803686,0.0,-0.006198347080498934,-0.0008264462812803686,-8.131516293641283e-20,-0.009448505938053131,0.0005165289039723575,0.0012396693928167224,0.003743907669559121,-6.485273717000465e-21,3.247322061188521e-20,-0.00010330578516004607,-0.0,-0.0002479338727425784,-0.0002648866211529821,0.0003973299462813884,-0.0002648866211529821,-4.0675734205242834e-21,-6.485273717000465e-21,2.648866211529821e-05,-2.7455386203212363e-22,-5.376127206324053e-22,0.0,3.528604616441367e-22,7.7964115334467e-22,0.0012396693928167224,-0.0002479338727425784,-0.0008264462812803686,3.247322061188521e-20,-2.7455386203212363e-22,0.00016528925334569067,-6.93998233142168e-21,-0.0,3.458363684134019e-22,3.7294392627975187e-22,0.0005165289039723575,-0.00010330578516004607,0.0,-0.00010330578516004607,-5.376127206324053e-22,-6.93998233142168e-21,2.0661156668211333e-05,0.0,6.5993874830287034e-21,1.1011428314305904e-20,0.00206611561588943,0.0,-0.006198347080498934,-0.0,0.0,-0.0,0.0,0.00206611561588943,0.0,0.0,0.0012396693928167224,-4.0657581468206416e-20,-0.0008264462812803686,-0.0002479338727425784,3.528604616441367e-22,3.458363684134019e-22,6.5993874830287034e-21,0.0,0.00016528925334569067,1.3552527156068805e-20,0.0003973299462813884,-6.098637220230962e-20,-8.131516293641283e-20,-0.0002648866211529821,7.7964115334467e-22,3.7294392627975187e-22,1.1011428314305904e-20,0.0,1.3552527156068805e-20,2.648866211529821e-05,11.0,4.0,12.0,0.05712204426527023,-0.008697552606463432,-0.01940559409558773,-0.008066932670772076,0.0003642191004473716,0.0011363636003807187,0.0004370629321783781,0.0018939394503831863,0.0010489510605111718,0.00031218782532960176,-0.008697552606463432,0.0034391996450722218,0.0011363636003807187,0.0004370629321783781,-0.0002428127481834963,-0.00022727272880729288,-8.741259080125019e-05,0.0,-3.3881317890172014e-20,6.776263578034403e-21,-0.01940559409558773,0.0011363636003807187,0.02619463950395584,0.0010489510605111718,1.3884090872383323e-20,-0.0007575757335871458,-3.3881317890172014e-20,-0.005681818351149559,-0.0006993007264100015,-8.131516293641283e-20,-0.008066932670772076,0.0004370629321783781,0.0010489510605111718,0.0029027790296822786,-4.751858178361992e-21,-0.0,-7.946598634589463e-05,-0.0,-0.00019071837596129626,-0.00018731268937699497,0.0003642191004473716,-0.0002428127481834963,1.3884090872383323e-20,-4.751858178361992e-21,2.428127481834963e-05,-2.140125867105305e-21,-3.259392264127127e-22,0.0,3.0511666221777784e-23,3.919677677039252e-22,0.0011363636003807187,-0.00022727272880729288,-0.0007575757335871458,-0.0,-2.140125867105305e-21,0.00015151515253819525,-8.32314544567755e-22,0.0,-3.231041991588677e-22,4.582098946629482e-22,0.0004370629321783781,-8.741259080125019e-05,-3.3881317890172014e-20,-7.946598634589463e-05,-3.259392264127127e-22,-8.32314544567755e-22,1.589319799677469e-05,0.0,5.808787398258056e-21,-2.541098841762901e-21,0.0018939394503831863,0.0,-0.005681818351149559,-0.0,0.0,0.0,0.0,0.0018939394503831863,0.0,0.0,0.0010489510605111718,-3.3881317890172014e-20,-0.0006993007264100015,-0.00019071837596129626,3.0511666221777784e-23,-3.231041991588677e-22,5.808787398258056e-21,0.0,0.0001271455839741975,1.3552527156068805e-20,0.00031218782532960176,6.776263578034403e-21,-8.131516293641283e-20,-0.00018731268937699497,3.919677677039252e-22,4.582098946629482e-22,-2.541098841762901e-21,0.0,1.3552527156068805e-20,1.702842564554885e-05,11.0,4.0,13.0,0.053244832903146744,-0.008057327009737492,-0.017982017248868942,-0.006968032103031874,0.00033620226895436645,0.0010489510605111718,0.00037462537875398993,0.0017482517287135124,0.0008991009090095758,0.00024975024280138314,-0.008057327009737492,0.0031804093159735203,0.0010489510605111718,0.00037462537875398993,-0.00022413484111893922,-0.00020979020337108523,-7.492507575079799e-05,0.0,1.3552527156068805e-20,-2.371692252312041e-20,-0.017982017248868942,0.0010489510605111718,0.02422577515244484,0.0008991009090095758,-2.3529742213374743e-20,-0.0006993007264100015,2.371692252312041e-20,-0.005244755186140537,-0.0005994006060063839,1.3552527156068805e-20,-0.006968032103031874,0.00037462537875398993,0.0008991009090095758,0.0022965669631958008,-3.4197807370733745e-21,1.5935634500834078e-20,-6.243756070034578e-05,-0.0,-0.00014985015150159597,-0.0001362274051643908,0.00033620226895436645,-0.00022413484111893922,-2.3529742213374743e-20,-3.4197807370733745e-21,2.241348374809604e-05,4.204203624437583e-21,1.0216512592403846e-21,0.0,-3.8263967051541677e-22,-8.416001694851263e-23,0.0010489510605111718,-0.00020979020337108523,-0.0006993007264100015,1.5935634500834078e-20,4.204203624437583e-21,0.0001398601452820003,-2.1397607444130454e-21,-0.0,-7.644442844310028e-22,-3.3715064381545854e-22,0.00037462537875398993,-7.492507575079799e-05,2.371692252312041e-20,-6.243756070034578e-05,1.0216512592403846e-21,-2.1397607444130454e-21,1.2487512321968097e-05,0.0,-1.3920294564466723e-21,5.082197683525802e-21,0.0017482517287135124,0.0,-0.005244755186140537,-0.0,0.0,-0.0,0.0,0.0017482517287135124,0.0,0.0,0.0008991009090095758,1.3552527156068805e-20,-0.0005994006060063839,-0.00014985015150159597,-3.8263967051541677e-22,-7.644442844310028e-22,-1.3920294564466723e-21,0.0,9.990009857574478e-05,-1.6940658945086007e-21,0.00024975024280138314,-2.371692252312041e-20,1.3552527156068805e-20,-0.0001362274051643908,-8.416001694851263e-23,-3.3715064381545854e-22,5.082197683525802e-21,0.0,-1.6940658945086007e-21,1.1352283763699234e-05,11.0,4.0,14.0,0.04986139014363289,-0.007504994980990887,-0.016753247007727623,-0.006079545244574547,0.00031218782532960176,0.0009740259847603738,0.0003246753185521811,0.001623376621864736,0.0007792207761667669,0.000202922077733092,-0.007504994980990887,0.0029578753747045994,0.0009740259847603738,0.0003246753185521811,-0.00020812520233448595,-0.00019480519404169172,-6.49350622552447e-05,-5.752411986052884e-19,-3.3881317890172014e-20,-3.7269449679189215e-20,-0.016753247007727623,0.0009740259847603738,0.022532466799020767,0.0007792207761667669,0.0,-0.0006493506371043622,-7.453889935837843e-20,-0.004870129749178886,-0.0005194804980419576,-7.318364664277155e-19,-0.006079545244574547,0.0003246753185521811,0.0007792207761667669,0.001848464016802609,-0.0,-5.727782683314118e-19,-4.995004928787239e-05,-2.9898730685992047e-18,-0.00011988011829089373,-0.000101461038866546,0.00031218782532960176,-0.00020812520233448595,0.0,-0.0,2.0812520233448595e-05,0.0,0.0,0.0,0.0,0.0,0.0009740259847603738,-0.00019480519404169172,-0.0006493506371043622,-5.727782683314118e-19,0.0,0.0001298701245104894,1.8879710856990952e-20,3.8349414101999034e-19,3.7759421713981905e-20,3.244158095345506e-20,0.0003246753185521811,-6.49350622552447e-05,-7.453889935837843e-20,-4.995004928787239e-05,0.0,1.8879710856990952e-20,9.990009857574478e-06,0.0,-2.964615315390051e-21,-2.117582368135751e-21,0.001623376621864736,-5.752411986052884e-19,-0.004870129749178886,-2.9898730685992047e-18,0.0,3.8349414101999034e-19,0.0,0.001623376621864736,2.3599638652018047e-19,2.0275988176688768e-19,0.0007792207761667669,-3.3881317890172014e-20,-0.0005194804980419576,-0.00011988011829089373,0.0,3.7759421713981905e-20,-2.964615315390051e-21,2.3599638652018047e-19,7.992007886059582e-05,-5.929230630780102e-21,0.000202922077733092,-3.7269449679189215e-20,-7.318364664277155e-19,-0.000101461038866546,0.0,3.244158095345506e-20,-2.117582368135751e-21,2.0275988176688768e-19,-5.929230630780102e-21,7.804695087543223e-06,11.0,4.0,15.0,0.046882882714271545,-0.0070236013270914555,-0.01568181812763214,-0.005350935738533735,0.00029137529782019556,0.0009090909152291715,0.0002840909000951797,0.0015151514671742916,0.0006818181718699634,0.00016711230273358524,-0.0070236013270914555,0.002764471573755145,0.0009090909152291715,0.0002840909000951797,-0.00019425019854679704,-0.0001818181772250682,-5.681818220182322e-05,-0.0,-1.3552527156068805e-20,-8.470329472543003e-21,-0.01568181812763214,0.0009090909152291715,0.021060606464743614,0.0006818181718699634,0.0,-0.000606060610152781,-1.3552527156068805e-20,-0.004545454401522875,-0.00045454545761458576,-4.0657581468206416e-20,-0.005350935738533735,0.0002840909000951797,0.0006818181718699634,0.0015099974116310477,-0.0,-0.0,-4.058441481902264e-05,-0.0,-9.740259702084586e-05,-7.712875230936334e-05,0.00029137529782019556,-0.00019425019854679704,0.0,-0.0,1.942501876328606e-05,0.0,0.0,0.0,0.0,0.0,0.0009090909152291715,-0.0001818181772250682,-0.000606060610152781,-0.0,0.0,0.00012121212057536468,0.0,0.0,0.0,0.0,0.0002840909000951797,-5.681818220182322e-05,-1.3552527156068805e-20,-4.058441481902264e-05,0.0,0.0,8.116882781905588e-06,0.0,2.117582368135751e-21,1.2705494208814505e-21,0.0015151514671742916,-0.0,-0.004545454401522875,-0.0,0.0,0.0,0.0,0.0015151514671742916,0.0,0.0,0.0006818181718699634,-1.3552527156068805e-20,-0.00045454545761458576,-9.740259702084586e-05,0.0,0.0,2.117582368135751e-21,0.0,6.49350622552447e-05,5.082197683525802e-21,0.00016711230273358524,-8.470329472543003e-21,-4.0657581468206416e-20,-7.712875230936334e-05,0.0,0.0,1.2705494208814505e-21,0.0,5.082197683525802e-21,5.509196853381582e-06,11.0,4.0,16.0,0.04424062371253967,-0.00660029286518693,-0.014739304780960083,-0.004745989106595516,0.0002731643326114863,0.0008522727293893695,0.00025066843954846263,0.0014204545877873898,0.0006016042898409069,0.00013926024257671088,-0.00660029286518693,0.002594825578853488,0.0008522727293893695,0.00025066843954846263,-0.0001821095502236858,-0.00017045454296749085,-5.013369082007557e-05,-0.0,6.776263578034403e-21,2.541098841762901e-20,-0.014739304780960083,0.0008522727293893695,0.01976938545703888,0.0006016042898409069,0.0,-0.0005681818001903594,6.776263578034403e-21,-0.004261363763362169,-0.00040106952656060457,6.776263578034403e-21,-0.004745989106595516,0.00025066843954846263,0.0006016042898409069,0.0012495225528255105,-0.0,-0.0,-3.342246054671705e-05,-0.0,-8.021390385692939e-05,-5.9682963183149695e-05,0.0002731643326114863,-0.0001821095502236858,0.0,-0.0,1.8210956113762222e-05,0.0,0.0,0.0,0.0,0.0,0.0008522727293893695,-0.00017045454296749085,-0.0005681818001903594,-0.0,0.0,0.00011363636440364644,0.0,0.0,0.0,0.0,0.00025066843954846263,-5.013369082007557e-05,6.776263578034403e-21,-3.342246054671705e-05,0.0,0.0,6.684491836494999e-06,0.0,-8.470329472543003e-22,-3.1763735522036263e-21,0.0014204545877873898,-0.0,-0.004261363763362169,-0.0,0.0,0.0,0.0,0.0014204545877873898,0.0,0.0,0.0006016042898409069,6.776263578034403e-21,-0.00040106952656060457,-8.021390385692939e-05,0.0,0.0,-8.470329472543003e-22,0.0,5.347593469195999e-05,-8.470329472543003e-22,0.00013926024257671088,2.541098841762901e-20,6.776263578034403e-21,-5.9682963183149695e-05,0.0,0.0,-3.1763735522036263e-21,0.0,-8.470329472543003e-22,3.97886424252647e-06,11.0,5.0,3.0,0.14280718564987183,-0.025291375815868378,-0.0476190485060215,-0.06818182021379471,0.0011655011912807822,0.0030303029343485832,0.004545454401522875,0.0043290043249726295,0.00909090880304575,0.00909090880304575,-0.025291375815868378,0.010497280396521091,0.0030303029343485832,0.004545454401522875,-0.0007770007941871881,-0.000606060610152781,-0.0009090909152291715,9.264887115712705e-19,-1.422739279857785e-18,-3.169538972392407e-18,-0.0476190485060215,0.0030303029343485832,0.04978355020284653,0.00909090880304575,-4.1404504881826486e-19,-0.0015151514671742916,4.344199548715179e-19,-0.008658008649945259,-0.004545454401522875,-8.653727822055198e-19,-0.06818182021379471,0.004545454401522875,0.00909090880304575,0.15909090638160706,-4.350720316881511e-19,2.029463231070783e-18,-0.004545454401522875,-4.144419714351984e-18,-0.00909090880304575,-0.05454545468091965,0.0011655011912807822,-0.0007770007941871881,-4.1404504881826486e-19,-4.350720316881511e-19,7.770007505314425e-05,2.0328063719892956e-20,2.9104647120710915e-20,7.288637344025648e-20,1.9328533887483397e-20,1.181717590170586e-19,0.0030303029343485832,-0.000606060610152781,-0.0015151514671742916,2.029463231070783e-18,2.0328063719892956e-20,0.0003030303050763905,6.163071924230072e-21,-4.550660210693235e-19,1.2616170334886142e-19,-1.1624641083834075e-18,0.004545454401522875,-0.0009090909152291715,4.344199548715179e-19,-0.004545454401522875,2.9104647120710915e-20,6.163071924230072e-21,0.0009090909152291715,-2.82087950076795e-19,6.25390160614658e-19,3.72536339858772e-18,0.0043290043249726295,9.264887115712705e-19,-0.008658008649945259,-4.144419714351984e-18,7.288637344025648e-20,-4.550660210693235e-19,-2.82087950076795e-19,0.0021645021624863148,2.4296209513800483e-18,3.1044178861994627e-19,0.00909090880304575,-1.422739279857785e-18,-0.004545454401522875,-0.00909090880304575,1.9328533887483397e-20,1.2616170334886142e-19,6.25390160614658e-19,2.4296209513800483e-18,0.004545454401522875,5.159194550074382e-18,0.00909090880304575,-3.169538972392407e-18,-8.653727822055198e-19,-0.05454545468091965,1.181717590170586e-19,-1.1624641083834075e-18,3.72536339858772e-18,3.1044178861994627e-19,5.159194550074382e-18,0.027272727340459824,11.0,5.0,4.0,0.11687812209129333,-0.019650349393486977,-0.037077922374010086,-0.04363636299967766,0.0008741258643567562,0.0022727272007614374,0.0027272726874798536,0.003246753243729472,0.005454545374959707,0.004545454401522875,-0.019650349393486977,0.008009323850274086,0.0022727272007614374,0.0027272726874798536,-0.0005827505956403911,-0.00045454545761458576,-0.0005454545607790351,-5.315728968422998e-18,-1.3169457746443967e-18,4.289484032736634e-18,-0.037077922374010086,0.0022727272007614374,0.03801948204636574,0.005454545374959707,-4.962296302772592e-19,-0.0011363636003807187,4.686052616368032e-19,-0.006493506487458944,-0.0027272726874798536,5.098553525777813e-18,-0.04363636299967766,0.0027272726874798536,0.005454545374959707,0.06090909242630005,1.1649538186296155e-18,-1.6404295390367076e-18,-0.001818181830458343,-6.051235635228611e-18,-0.003636363660916686,-0.013636363670229912,0.0008741258643567562,-0.0005827505956403911,-4.962296302772592e-19,1.1649538186296155e-18,5.827505810884759e-05,-3.5591517037799666e-20,-3.9283786335946423e-20,1.7554277033114328e-19,-9.620862579802539e-21,-2.848084695632995e-19,0.0022727272007614374,-0.00045454545761458576,-0.0011363636003807187,-1.6404295390367076e-18,-3.5591517037799666e-20,0.00022727272880729288,-4.7272974572970594e-20,1.7176326837505427e-18,9.03737212220576e-19,5.578419455587242e-20,0.0027272726874798536,-0.0005454545607790351,4.686052616368032e-19,-0.001818181830458343,-3.9283786335946423e-20,-4.7272974572970594e-20,0.0003636363544501364,-3.985377517030655e-20,-4.463977433987874e-20,-6.547652053227943e-19,0.003246753243729472,-5.315728968422998e-18,-0.006493506487458944,-6.051235635228611e-18,1.7554277033114328e-19,1.7176326837505427e-18,-3.985377517030655e-20,0.001623376621864736,4.036168655538701e-18,-6.737006620138402e-19,0.005454545374959707,-1.3169457746443967e-18,-0.0027272726874798536,-0.003636363660916686,-9.620862579802539e-21,9.03737212220576e-19,-4.463977433987874e-20,4.036168655538701e-18,0.001818181830458343,-1.4768674976014175e-18,0.004545454401522875,4.289484032736634e-18,5.098553525777813e-18,-0.013636363670229912,-2.848084695632995e-19,5.578419455587242e-20,-6.547652053227943e-19,-6.737006620138402e-19,-1.4768674976014175e-18,0.004545454401522875,11.0,5.0,5.0,0.09906093776226044,-0.016083916649222374,-0.030389610677957535,-0.030389610677957535,0.0006993007264100015,0.001818181830458343,0.001818181830458343,0.002597402548417449,0.003636363660916686,0.002597402548417449,-0.016083916649222374,0.006480186711996794,0.001818181830458343,0.001818181830458343,-0.0004662004648707807,-0.0003636363544501364,-0.0003636363544501364,1.6885257489584502e-18,4.329018458029358e-19,1.877462382864417e-18,-0.030389610677957535,0.001818181830458343,0.030779220163822174,0.003636363660916686,2.6697962543548467e-19,-0.0009090909152291715,-6.163388918581613e-19,-0.005194805096834898,-0.001818181830458343,-6.3824925192346594e-18,-0.030389610677957535,0.001818181830458343,0.003636363660916686,0.030779220163822174,-3.859330297417275e-21,-7.726558134044643e-19,-0.0009090909152291715,-9.684025942743072e-18,-0.001818181830458343,-0.005194805096834898,0.0006993007264100015,-0.0004662004648707807,2.6697962543548467e-19,-3.859330297417275e-21,4.662004721467383e-05,-9.190138164177527e-21,-1.4236607138237293e-20,-5.349687860344991e-20,-1.0296968023878133e-20,1.374467862742546e-20,0.001818181830458343,-0.0003636363544501364,-0.0009090909152291715,-7.726558134044643e-19,-9.190138164177527e-21,0.0001818181772250682,-9.586998257889015e-21,-6.895082386160934e-19,-2.105311822295123e-20,2.164966504797056e-19,0.001818181830458343,-0.0003636363544501364,-6.163388918581613e-19,-0.0009090909152291715,-1.4236607138237293e-20,-9.586998257889015e-21,0.0001818181772250682,2.2783723205432226e-19,-1.2731916167037039e-19,-1.121103423394531e-18,0.002597402548417449,1.6885257489584502e-18,-0.005194805096834898,-9.684025942743072e-18,-5.349687860344991e-20,-6.895082386160934e-19,2.2783723205432226e-19,0.0012987012742087245,8.088330744823538e-19,1.7282202853984918e-18,0.003636363660916686,4.329018458029358e-19,-0.001818181830458343,-0.001818181830458343,-1.0296968023878133e-20,-2.105311822295123e-20,-1.2731916167037039e-19,8.088330744823538e-19,0.0009090909152291715,-8.608755563114338e-19,0.002597402548417449,1.877462382864417e-18,-6.3824925192346594e-18,-0.005194805096834898,1.374467862742546e-20,2.164966504797056e-19,-1.121103423394531e-18,1.7282202853984918e-18,-8.608755563114338e-19,0.0012987012742087245,11.0,5.0,6.0,0.08601398766040802,-0.013619713485240936,-0.025757575407624245,-0.022402597591280937,0.0005827505956403911,0.0015151514671742916,0.0012987012742087245,0.0021645021624863148,0.002597402548417449,0.001623376621864736,-0.013619713485240936,0.005443445406854153,0.0015151514671742916,0.0012987012742087245,-0.0003885003970935941,-0.0003030303050763905,-0.0002597402490209788,-1.737166366507875e-20,9.832361837998551e-20,-1.3437868549435533e-18,-0.025757575407624245,0.0015151514671742916,0.02586580067873001,0.002597402548417449,-1.6947014018635887e-19,-0.0007575757335871458,-1.1049949081456733e-18,-0.0043290043249726295,-0.0012987012742087245,-6.9141740248913874e-18,-0.022402597591280937,0.0012987012742087245,0.002597402548417449,0.017889609560370445,-6.579033346963644e-20,-4.479734126057758e-19,-0.0005194804980419576,-4.804876697770968e-18,-0.0010389609960839152,-0.002435064874589443,0.0005827505956403911,-0.0003885003970935941,-1.6947014018635887e-19,-6.579033346963644e-20,3.885003752657212e-05,1.1487672705221908e-20,2.3889725722961565e-20,3.375628760188006e-20,-1.1907853799211137e-20,-1.0034276787081458e-20,0.0015151514671742916,-0.0003030303050763905,-0.0007575757335871458,-4.479734126057758e-19,1.1487672705221908e-20,0.00015151515253819525,2.907223844280503e-20,-2.477688468474293e-19,-8.592148619847629e-20,8.192017446866148e-20,0.0012987012742087245,-0.0002597402490209788,-1.1049949081456733e-18,-0.0005194804980419576,2.3889725722961565e-20,2.907223844280503e-20,0.00010389610542915761,1.5716304976476229e-19,1.0748664052970778e-19,5.295292851004416e-19,0.0021645021624863148,-1.737166366507875e-20,-0.0043290043249726295,-4.804876697770968e-18,3.375628760188006e-20,-2.477688468474293e-19,1.5716304976476229e-19,0.0010822510812431574,-1.1080879432511622e-18,1.199948728419437e-18,0.002597402548417449,9.832361837998551e-20,-0.0012987012742087245,-0.0010389609960839152,-1.1907853799211137e-20,-8.592148619847629e-20,1.0748664052970778e-19,-1.1080879432511622e-18,0.0005194804980419576,6.9747998497442005e-19,0.001623376621864736,-1.3437868549435533e-18,-6.9141740248913874e-18,-0.002435064874589443,-1.0034276787081458e-20,8.192017446866148e-20,5.295292851004416e-19,1.199948728419437e-18,6.9747998497442005e-19,0.0004870129923801869,11.0,5.0,7.0,0.07602991908788681,-0.011813187040388584,-0.022356215864419937,-0.017207792028784752,0.0004995004856027663,0.0012987012742087245,0.0009740259847603738,0.001855287584476173,0.0019480519695207477,0.0010822510812431574,-0.011813187040388584,0.00469363946467638,0.0012987012742087245,0.0009740259847603738,-0.0003330003237351775,-0.0002597402490209788,-0.00019480519404169172,0.0,0.0,-0.0,-0.022356215864419937,0.0012987012742087245,0.022309832274913788,0.0019480519695207477,0.0,-0.0006493506371043622,0.0,-0.003710575168952346,-0.0009740259847603738,-0.0,-0.017207792028784752,0.0009740259847603738,0.0019480519695207477,0.011363636702299118,-1.3375214044743388e-20,0.0,-0.0003246753185521811,0.0,-0.0006493506371043622,-0.0012987012742087245,0.0004995004856027663,-0.0003330003237351775,0.0,-1.3375214044743388e-20,3.330003164592199e-05,0.0,2.675042728169321e-21,0.0,0.0,-0.0,0.0012987012742087245,-0.0002597402490209788,-0.0006493506371043622,0.0,0.0,0.0001298701245104894,0.0,0.0,0.0,-0.0,0.0009740259847603738,-0.00019480519404169172,0.0,-0.0003246753185521811,2.675042728169321e-21,0.0,6.49350622552447e-05,0.0,0.0,-0.0,0.001855287584476173,0.0,-0.003710575168952346,0.0,0.0,0.0,0.0,0.0009276437922380865,0.0,-0.0,0.0019480519695207477,0.0,-0.0009740259847603738,-0.0006493506371043622,0.0,0.0,0.0,0.0,0.0003246753185521811,-0.0,0.0010822510812431574,-0.0,-0.0,-0.0012987012742087245,-0.0,-0.0,-0.0,-0.0,-0.0,0.00021645022206939757,11.0,5.0,8.0,0.06813602894544601,-0.010431235656142235,-0.019751083105802536,-0.013636363670229912,0.0004370629321783781,0.0011363636003807187,0.0007575757335871458,0.001623376621864736,0.0015151514671742916,0.0007575757335871458,-0.010431235656142235,0.004125874023884535,0.0011363636003807187,0.0007575757335871458,-0.00029137529782019556,-0.00022727272880729288,-0.00015151515253819525,0.0,0.0,-0.0,-0.019751083105802536,0.0011363636003807187,0.01961580105125904,0.0015151514671742916,1.1564437327888817e-20,-0.0005681818001903594,6.776263578034403e-21,-0.003246753243729472,-0.0007575757335871458,-0.0,-0.013636363670229912,0.0007575757335871458,0.0015151514671742916,0.007683982606977224,-1.909825940652828e-21,0.0,-0.00021645022206939757,0.0,-0.00043290044413879514,-0.0007575757335871458,0.0004370629321783781,-0.00029137529782019556,1.1564437327888817e-20,-1.909825940652828e-21,2.9137529054423794e-05,-4.2036070688883934e-21,1.0595915055443275e-21,0.0,0.0,-0.0,0.0011363636003807187,-0.00022727272880729288,-0.0005681818001903594,0.0,-4.2036070688883934e-21,0.00011363636440364644,0.0,0.0,0.0,-0.0,0.0007575757335871458,-0.00015151515253819525,6.776263578034403e-21,-0.00021645022206939757,1.0595915055443275e-21,0.0,4.329004150349647e-05,0.0,0.0,-0.0,0.001623376621864736,0.0,-0.003246753243729472,0.0,0.0,0.0,0.0,0.000811688310932368,0.0,-0.0,0.0015151514671742916,0.0,-0.0007575757335871458,-0.00043290044413879514,0.0,0.0,0.0,0.0,0.00021645022206939757,-0.0,0.0007575757335871458,-0.0,-0.0,-0.0007575757335871458,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010822511103469878,11.0,5.0,9.0,0.061734627932310104,-0.009339549578726292,-0.017691196873784065,-0.01107438001781702,0.0003885003970935941,0.001010101055726409,0.000606060610152781,0.0014430014416575432,0.001212121220305562,0.0005509642069227993,-0.009339549578726292,0.0036809116136282682,0.001010101055726409,0.000606060610152781,-0.0002590002550277859,-0.00020202020823489875,-0.00012121212057536468,0.0,0.0,1.0164395367051604e-19,-0.017691196873784065,0.001010101055726409,0.017503608018159866,0.001212121220305562,-2.993159508871666e-20,-0.0005050505278632045,-6.776263578034403e-21,-0.0028860028833150864,-0.000606060610152781,1.3552527156068805e-20,-0.01107438001781702,0.000606060610152781,0.001212121220305562,0.005444706883281469,-6.452489415085949e-21,-9.445060850240878e-21,-0.00015151515253819525,-0.0,-0.0003030303050763905,-0.0004722550220321864,0.0003885003970935941,-0.0002590002550277859,-2.993159508871666e-20,-6.452489415085949e-21,2.590002623037435e-05,4.167602094022462e-21,2.284877021695508e-21,0.0,-3.450344818369139e-22,-1.8275378275235322e-21,0.001010101055726409,-0.00020202020823489875,-0.0005050505278632045,-9.445060850240878e-21,4.167602094022462e-21,0.00010101010411744937,1.1355647934382161e-21,0.0,1.1538889341721202e-22,8.993200112039932e-22,0.000606060610152781,-0.00012121212057536468,-6.776263578034403e-21,-0.00015151515253819525,2.284877021695508e-21,1.1355647934382161e-21,3.030303014384117e-05,0.0,2.9123290592339252e-22,-2.371692252312041e-20,0.0014430014416575432,0.0,-0.0028860028833150864,-0.0,0.0,0.0,0.0,0.0007215007208287716,0.0,0.0,0.001212121220305562,0.0,-0.000606060610152781,-0.0003030303050763905,-3.450344818369139e-22,1.1538889341721202e-22,2.9123290592339252e-22,0.0,0.00015151515253819525,-3.3881317890172014e-21,0.0005509642069227993,1.0164395367051604e-19,1.3552527156068805e-20,-0.0004722550220321864,-1.8275378275235322e-21,8.993200112039932e-22,-2.371692252312041e-20,0.0,-3.3881317890172014e-21,5.90318777540233e-05,11.0,5.0,10.0,0.05643719807267189,-0.008455181494355202,-0.016021251678466797,-0.009173553436994553,0.00034965036320500076,0.0009090909152291715,0.0004958677454851568,0.0012987012742087245,0.0009917354909703135,0.0004132231406401843,-0.008455181494355202,0.003322737757116556,0.0009090909152291715,0.0004958677454851568,-0.00023310023243539035,-0.0001818181772250682,-9.917355055222288e-05,0.0,0.0,0.0,-0.016021251678466797,0.0009090909152291715,0.015802834182977676,0.0009917354909703135,-1.4567876817693442e-20,-0.00045454545761458576,-3.3881317890172014e-21,-0.002597402548417449,-0.0004958677454851568,0.0,-0.009173553436994553,0.0004958677454851568,0.0009917354909703135,0.0040013776160776615,-5.26316585879326e-22,-0.0,-0.00011019283556379378,-0.0,-0.00022038567112758756,-0.0003099173482041806,0.00034965036320500076,-0.00023310023243539035,-1.4567876817693442e-20,-5.26316585879326e-22,2.3310023607336916e-05,3.1248444005681208e-21,2.2023108256307913e-21,0.0,1.4171549160916767e-22,-1.0406970120650614e-21,0.0009090909152291715,-0.0001818181772250682,-0.00045454545761458576,-0.0,3.1248444005681208e-21,9.09090886125341e-05,8.427647175078498e-22,0.0,6.89581939883606e-23,4.1151215635134857e-22,0.0004958677454851568,-9.917355055222288e-05,-3.3881317890172014e-21,-0.00011019283556379378,2.2023108256307913e-21,8.427647175078498e-22,2.2038568204152398e-05,0.0,4.0215798257675713e-22,0.0,0.0012987012742087245,0.0,-0.002597402548417449,-0.0,0.0,0.0,0.0,0.0006493506371043622,0.0,0.0,0.0009917354909703135,0.0,-0.0004958677454851568,-0.00022038567112758756,1.4171549160916767e-22,6.89581939883606e-23,4.0215798257675713e-22,0.0,0.00011019283556379378,-6.776263578034403e-21,0.0004132231406401843,0.0,0.0,-0.0003099173482041806,-1.0406970120650614e-21,4.1151215635134857e-22,0.0,0.0,-6.776263578034403e-21,3.443526293267496e-05,11.0,5.0,11.0,0.05197983980178833,-0.007724094204604626,-0.014639905653893948,-0.007724094204604626,0.00031786394538357854,0.0008264462812803686,0.0004132231406401843,0.0011806375114247203,0.0008264462812803686,0.00031786394538357854,-0.007724094204604626,0.0030281839426606894,0.0008264462812803686,0.0004132231406401843,-0.0002119092969223857,-0.00016528925334569067,-8.264462667284533e-05,0.0,-3.3881317890172014e-21,1.0164395367051604e-20,-0.014639905653893948,0.0008264462812803686,0.01440377812832594,0.0008264462812803686,7.754096075235784e-21,-0.0004132231406401843,0.0,-0.0023612750228494406,-0.0004132231406401843,-6.776263578034403e-21,-0.007724094204604626,0.0004132231406401843,0.0008264462812803686,0.0030281839426606894,3.592084720490158e-21,2.6265308874547517e-21,-8.264462667284533e-05,-0.0,-0.00016528925334569067,-0.0002119092969223857,0.00031786394538357854,-0.0002119092969223857,7.754096075235784e-21,3.592084720490158e-21,2.119093005603645e-05,-1.2470015315855943e-21,-8.159513227176131e-22,-0.0,-5.446443995496047e-23,6.460272884756711e-23,0.0008264462812803686,-0.00016528925334569067,-0.0004132231406401843,2.6265308874547517e-21,-1.2470015315855943e-21,8.264462667284533e-05,-9.345197168578748e-22,-0.0,1.145628487643625e-22,-1.2566709625769047e-23,0.0004132231406401843,-8.264462667284533e-05,0.0,-8.264462667284533e-05,-8.159513227176131e-22,-9.345197168578748e-22,1.6528925698366947e-05,0.0,-1.2287677375134434e-22,-2.541098841762901e-21,0.0011806375114247203,0.0,-0.0023612750228494406,-0.0,-0.0,-0.0,0.0,0.0005903187557123601,0.0,0.0,0.0008264462812803686,-3.3881317890172014e-21,-0.0004132231406401843,-0.00016528925334569067,-5.446443995496047e-23,1.145628487643625e-22,-1.2287677375134434e-22,0.0,8.264462667284533e-05,1.6940658945086007e-21,0.00031786394538357854,1.0164395367051604e-20,-6.776263578034403e-21,-0.0002119092969223857,6.460272884756711e-23,-1.2566709625769047e-23,-2.541098841762901e-21,0.0,1.6940658945086007e-21,2.119093005603645e-05,11.0,5.0,12.0,0.04817682132124901,-0.007109557278454304,-0.013478188775479794,-0.006593406666070223,0.00029137529782019556,0.0007575757335871458,0.00034965036320500076,0.0010822510812431574,0.0006993007264100015,0.00024975024280138314,-0.007109557278454304,0.002781662857159972,0.0007575757335871458,0.00034965036320500076,-0.00019425019854679704,-0.00015151515253819525,-6.993007264100015e-05,0.0,0.0,1.6940658945086007e-20,-0.013478188775479794,0.0007575757335871458,0.013232600875198841,0.0006993007264100015,9.818037719352032e-21,-0.0003787878667935729,-3.3881317890172014e-21,-0.0021645021624863148,-0.00034965036320500076,-6.776263578034403e-21,-0.006593406666070223,0.00034965036320500076,0.0006993007264100015,0.0023476523347198963,6.53810058900127e-21,-0.0,-6.357279198709875e-05,-0.0,-0.0001271455839741975,-0.00014985015150159597,0.00029137529782019556,-0.00019425019854679704,9.818037719352032e-21,6.53810058900127e-21,1.942501876328606e-05,-6.948928039330436e-22,-2.924048124406399e-22,0.0,-3.5522626180978175e-22,-6.24385236639731e-23,0.0007575757335871458,-0.00015151515253819525,-0.0003787878667935729,-0.0,-6.948928039330436e-22,7.575757626909763e-05,-1.440283899736477e-24,0.0,2.371324558564319e-23,-3.3949548079140826e-24,0.00034965036320500076,-6.993007264100015e-05,-3.3881317890172014e-21,-6.357279198709875e-05,-2.924048124406399e-22,-1.440283899736477e-24,1.2714558579318691e-05,0.0,1.0298321885896335e-21,-3.3881317890172014e-21,0.0010822510812431574,0.0,-0.0021645021624863148,-0.0,0.0,0.0,0.0,0.0005411255406215787,0.0,0.0,0.0006993007264100015,0.0,-0.00034965036320500076,-0.0001271455839741975,-3.5522626180978175e-22,2.371324558564319e-23,1.0298321885896335e-21,0.0,6.357279198709875e-05,1.6940658945086007e-21,0.00024975024280138314,1.6940658945086007e-20,-6.776263578034403e-21,-0.00014985015150159597,-6.24385236639731e-23,-3.3949548079140826e-24,-3.3881317890172014e-21,0.0,1.6940658945086007e-21,1.3622740880236961e-05,11.0,5.0,13.0,0.04489356651902199,-0.006585721857845783,-0.012487512081861496,-0.005694305524230003,0.0002689617977011949,0.0006993007264100015,0.00029970030300319195,0.0009990009712055326,0.0005994006060063839,0.00019980019715148956,-0.006585721857845783,0.0025722994469106197,0.0006993007264100015,0.00029970030300319195,-0.00017930786998476833,-0.0001398601452820003,-5.994005914544687e-05,0.0,-3.3881317890172014e-21,-2.0328790734103208e-20,-0.012487512081861496,0.0006993007264100015,0.012237762100994587,0.0005994006060063839,-5.4604700433650725e-21,-0.00034965036320500076,0.0,-0.001998001942411065,-0.00029970030300319195,0.0,-0.005694305524230003,0.00029970030300319195,0.0005994006060063839,0.0018572336994111538,-2.5385577251496796e-21,-0.0,-4.995004928787239e-05,-0.0,-9.990009857574478e-05,-0.00010898192704189569,0.0002689617977011949,-0.00017930786998476833,-5.4604700433650725e-21,-2.5385577251496796e-21,1.793078627088107e-05,1.5476143344599757e-21,8.493989746118861e-22,0.0,2.424988714908151e-22,-1.7707023051903053e-22,0.0006993007264100015,-0.0001398601452820003,-0.00034965036320500076,-0.0,1.5476143344599757e-21,6.993007264100015e-05,4.2275139214505614e-22,0.0,1.2693587647182078e-23,-1.6692937703962102e-24,0.00029970030300319195,-5.994005914544687e-05,0.0,-4.995004928787239e-05,8.493989746118861e-22,4.2275139214505614e-22,9.990009857574478e-06,0.0,-2.7730967502930995e-22,2.964615315390051e-21,0.0009990009712055326,0.0,-0.001998001942411065,-0.0,0.0,0.0,0.0,0.0004995004856027663,0.0,0.0,0.0005994006060063839,-3.3881317890172014e-21,-0.00029970030300319195,-9.990009857574478e-05,2.424988714908151e-22,1.2693587647182078e-23,-2.7730967502930995e-22,0.0,4.995004928787239e-05,0.0,0.00019980019715148956,-2.0328790734103208e-20,0.0,-0.00010898192704189569,-1.7707023051903053e-22,-1.6692937703962102e-24,2.964615315390051e-21,0.0,0.0,9.081827556656208e-06,11.0,5.0,14.0,0.04203011095523834,-0.0061338660307228565,-0.011632652953267097,-0.0049675325863063335,0.00024975024280138314,0.0006493506371043622,0.0002597402490209788,0.0009276437922380865,0.0005194804980419576,0.00016233765927609056,-0.0061338660307228565,0.0023922743275761604,0.0006493506371043622,0.0002597402490209788,-0.00016650016186758876,-0.0001298701245104894,-5.194805271457881e-05,-0.0,0.0,8.470329472543003e-21,-0.011632652953267097,0.0006493506371043622,0.011382189579308033,0.0005194804980419576,0.0,-0.0003246753185521811,-1.6940658945086007e-21,-0.001855287584476173,-0.0002597402490209788,0.0,-0.0049675325863063335,0.0002597402490209788,0.0005194804980419576,0.001494755269959569,-0.0,-0.0,-3.996003943029791e-05,-0.0,-7.992007886059582e-05,-8.116882963804528e-05,0.00024975024280138314,-0.00016650016186758876,0.0,-0.0,1.6650015822960995e-05,0.0,0.0,0.0,0.0,0.0,0.0006493506371043622,-0.0001298701245104894,-0.0003246753185521811,-0.0,0.0,6.49350622552447e-05,0.0,0.0,0.0,0.0,0.0002597402490209788,-5.194805271457881e-05,-1.6940658945086007e-21,-3.996003943029791e-05,0.0,0.0,7.992008249857463e-06,0.0,0.0,-1.2705494208814505e-21,0.0009276437922380865,-0.0,-0.001855287584476173,-0.0,0.0,0.0,0.0,0.00046382189611904323,0.0,0.0,0.0005194804980419576,0.0,-0.0002597402490209788,-7.992007886059582e-05,0.0,0.0,0.0,0.0,3.996003943029791e-05,-8.470329472543003e-22,0.00016233765927609056,8.470329472543003e-21,0.0,-8.116882963804528e-05,0.0,0.0,-1.2705494208814505e-21,0.0,-8.470329472543003e-22,6.243756160984049e-06,11.0,5.0,15.0,0.039510637521743774,-0.005740093067288399,-0.010887445881962776,-0.004371657967567444,0.00023310023243539035,0.000606060610152781,0.00022727272880729288,0.0008658008882775903,0.00045454545761458576,0.0001336898421868682,-0.005740093067288399,0.0022358198184520006,0.000606060610152781,0.00022727272880729288,-0.0001554001501062885,-0.00012121212057536468,-4.545454430626705e-05,-0.0,0.0,-8.470329472543003e-21,-0.010887445881962776,0.000606060610152781,0.010638528503477573,0.00045454545761458576,0.0,-0.0003030303050763905,0.0,-0.0017316017765551805,-0.00022727272880729288,0.0,-0.004371657967567444,0.00022727272880729288,0.00045454545761458576,0.0012209848500788212,-0.0,-0.0,-3.246753112762235e-05,-0.0,-6.49350622552447e-05,-6.170300184749067e-05,0.00023310023243539035,-0.0001554001501062885,0.0,-0.0,1.554001573822461e-05,0.0,0.0,0.0,0.0,0.0,0.000606060610152781,-0.00012121212057536468,-0.0003030303050763905,-0.0,0.0,6.060606028768234e-05,0.0,0.0,0.0,0.0,0.00022727272880729288,-4.545454430626705e-05,0.0,-3.246753112762235e-05,0.0,0.0,6.493506589322351e-06,0.0,0.0,1.0587911840678754e-21,0.0008658008882775903,-0.0,-0.0017316017765551805,-0.0,0.0,0.0,0.0,0.00043290044413879514,0.0,0.0,0.00045454545761458576,0.0,-0.00022727272880729288,-6.49350622552447e-05,0.0,0.0,0.0,0.0,3.246753112762235e-05,0.0,0.0001336898421868682,-8.470329472543003e-21,0.0,-6.170300184749067e-05,0.0,0.0,1.0587911840678754e-21,0.0,0.0,4.407357209856855e-06,11.0,5.0,16.0,0.03727656975388527,-0.0053938706405460835,-0.0102320471778512,-0.0038770053070038557,0.00021853146608918905,0.0005681818001903594,0.00020053476328030229,0.000811688310932368,0.00040106952656060457,0.00011140819697175175,-0.0053938706405460835,0.0020985875744372606,0.0005681818001903594,0.00020053476328030229,-0.00014568764891009778,-0.00011363636440364644,-4.0106951928464696e-05,-0.0,0.0,1.5246593050577406e-20,-0.0102320471778512,0.0005681818001903594,0.009986153803765774,0.00040106952656060457,0.0,-0.0002840909000951797,-1.6940658945086007e-21,-0.001623376621864736,-0.00020053476328030229,-3.3881317890172014e-21,-0.0038770053070038557,0.00020053476328030229,0.00040106952656060457,0.0010103131644427776,-0.0,-0.0,-2.6737967345979996e-05,-0.0,-5.347593469195999e-05,-4.774637272930704e-05,0.00021853146608918905,-0.00014568764891009778,0.0,-0.0,1.4568764527211897e-05,0.0,0.0,0.0,0.0,0.0,0.0005681818001903594,-0.00011363636440364644,-0.0002840909000951797,-0.0,0.0,5.681818220182322e-05,0.0,0.0,0.0,0.0,0.00020053476328030229,-4.0106951928464696e-05,-1.6940658945086007e-21,-2.6737967345979996e-05,0.0,0.0,5.34759374204441e-06,0.0,2.117582368135751e-22,-2.329340604949326e-21,0.000811688310932368,-0.0,-0.001623376621864736,-0.0,0.0,0.0,0.0,0.000405844155466184,0.0,0.0,0.00040106952656060457,0.0,-0.00020053476328030229,-5.347593469195999e-05,0.0,0.0,2.117582368135751e-22,0.0,2.6737967345979996e-05,0.0,0.00011140819697175175,1.5246593050577406e-20,-3.3881317890172014e-21,-4.774637272930704e-05,0.0,0.0,-2.329340604949326e-21,0.0,0.0,3.183091394021176e-06,11.0,6.0,3.0,0.1244172528386116,-0.021436896175146103,-0.03517315909266472,-0.057900432497262955,0.0009712509927339852,0.0021645021624863148,0.0037878789007663727,0.0027056278195232153,0.006493506487458944,0.007575757801532745,-0.021436896175146103,0.008819883689284325,0.0021645021624863148,0.0037878789007663727,-0.0006475006230175495,-0.00043290044413879514,-0.0007575757335871458,-1.0842021724855044e-19,2.168404344971009e-19,-3.4594428228302447e-18,-0.03517315909266472,0.0021645021624863148,0.028950216248631477,0.006493506487458944,5.421010862427522e-20,-0.0008658008882775903,1.5178830414797062e-18,-0.004058441612869501,-0.002597402548417449,2.0973596633152076e-18,-0.057900432497262955,0.0037878789007663727,0.006493506487458944,0.1336580067873001,-1.1006190193076912e-18,9.386303787950536e-19,-0.0037878789007663727,3.390595960061997e-18,-0.006493506487458944,-0.04545454680919647,0.0009712509927339852,-0.0006475006230175495,5.421010862427522e-20,-1.1006190193076912e-18,6.475006375694647e-05,-1.3552527156068805e-20,1.7787691892340307e-20,2.371692252312041e-20,8.282897668019215e-35,5.503095096538456e-19,0.0021645021624863148,-0.00043290044413879514,-0.0008658008882775903,9.386303787950536e-19,-1.3552527156068805e-20,0.00017316016601398587,-8.232622967654552e-20,5.421010862427522e-20,-2.168404344971009e-19,-3.563431717215075e-20,0.0037878789007663727,-0.0007575757335871458,1.5178830414797062e-18,-0.0037878789007663727,1.7787691892340307e-20,-8.232622967654552e-20,0.0007575757335871458,-2.698502782031675e-19,3.657598022771597e-19,-4.145313069413542e-18,0.0027056278195232153,-1.0842021724855044e-19,-0.004058441612869501,3.390595960061997e-18,2.371692252312041e-20,5.421010862427522e-20,-2.698502782031675e-19,0.000811688310932368,1.8973538018496328e-19,-1.2616171110367966e-18,0.006493506487458944,2.168404344971009e-19,-0.002597402548417449,-0.006493506487458944,8.282897668019215e-35,-2.168404344971009e-19,3.657598022771597e-19,1.8973538018496328e-19,0.002597402548417449,3.4207601350745087e-18,0.007575757801532745,-3.4594428228302447e-18,2.0973596633152076e-18,-0.04545454680919647,5.503095096538456e-19,-3.563431717215075e-20,-4.145313069413542e-18,-1.2616171110367966e-18,3.4207601350745087e-18,0.022727273404598236,11.0,6.0,4.0,0.10161921381950378,-0.016645854339003563,-0.02735389582812786,-0.037012986838817596,0.0007284382008947432,0.001623376621864736,0.0022727272007614374,0.0020292208064347506,0.0038961039390414953,0.0037878789007663727,-0.016645854339003563,0.006728549022227526,0.001623376621864736,0.0022727272007614374,-0.0004856254963669926,-0.0003246753185521811,-0.00045454545761458576,-5.13006921051366e-19,-8.894291848219108e-20,-1.3103191273596578e-18,-0.02735389582812786,0.001623376621864736,0.022102272137999535,0.0038961039390414953,-4.743384504624082e-19,-0.0006493506371043622,-5.428950762332266e-19,-0.003043831093236804,-0.0015584415523335338,2.969785969700332e-19,-0.037012986838817596,0.0022727272007614374,0.0038961039390414953,0.05119047686457634,-5.963111948670274e-19,1.479622009041219e-18,-0.0015151514671742916,1.401509043201758e-19,-0.002597402548417449,-0.011363636702299118,0.0007284382008947432,-0.0004856254963669926,-4.743384504624082e-19,-5.963111948670274e-19,4.856254963669926e-05,2.710505431213761e-20,1.0164395367051604e-20,6.183566050920284e-20,-2.607199781552551e-20,1.8244963797308156e-19,0.001623376621864736,-0.0003246753185521811,-0.0006493506371043622,1.479622009041219e-18,2.710505431213761e-20,0.0001298701245104894,-1.0842021724855044e-19,-1.0056350715650547e-19,7.346196189962267e-20,-4.2793540170637915e-19,0.0022727272007614374,-0.00045454545761458576,-5.428950762332266e-19,-0.0015151514671742916,1.0164395367051604e-20,-1.0842021724855044e-19,0.0003030303050763905,1.7621290294958487e-19,6.367429560280069e-20,4.2053903701226555e-19,0.0020292208064347506,-5.13006921051366e-19,-0.003043831093236804,1.401509043201758e-19,6.183566050920284e-20,-1.0056350715650547e-19,1.7621290294958487e-19,0.0006087662186473608,-6.31801172253462e-19,8.365073162976331e-21,0.0038961039390414953,-8.894291848219108e-20,-0.0015584415523335338,-0.002597402548417449,-2.607199781552551e-20,7.346196189962267e-20,6.367429560280069e-20,-6.31801172253462e-19,0.0010389609960839152,9.273864093310437e-19,0.0037878789007663727,-1.3103191273596578e-18,2.969785969700332e-19,-0.011363636702299118,1.8244963797308156e-19,-4.2793540170637915e-19,4.2053903701226555e-19,8.365073162976331e-21,9.273864093310437e-19,0.0037878789007663727,11.0,6.0,5.0,0.08601398766040802,-0.013619713485240936,-0.022402597591280937,-0.025757575407624245,0.0005827505956403911,0.0012987012742087245,0.0015151514671742916,0.001623376621864736,0.002597402548417449,0.0021645021624863148,-0.013619713485240936,0.005443445406854153,0.0012987012742087245,0.0015151514671742916,-0.0003885003970935941,-0.0002597402490209788,-0.0003030303050763905,-8.357941476691189e-19,-1.507860430039525e-19,1.1392692660737787e-19,-0.022402597591280937,0.0012987012742087245,0.017889609560370445,0.002597402548417449,-2.874371203030223e-20,-0.0005194804980419576,-4.337086829422989e-19,-0.002435064874589443,-0.0010389609960839152,3.1450620776815034e-18,-0.025757575407624245,0.0015151514671742916,0.002597402548417449,0.02586580067873001,-8.311106251914495e-20,-7.385450562918854e-19,-0.0007575757335871458,1.3169827909768084e-18,-0.0012987012742087245,-0.0043290043249726295,0.0005827505956403911,-0.0003885003970935941,-2.874371203030223e-20,-8.311106251914495e-20,3.885003752657212e-05,1.8638219354565217e-20,2.7007261207335956e-21,-1.4489514379351114e-20,-6.164300578245398e-21,1.9560480501122094e-20,0.0012987012742087245,-0.0002597402490209788,-0.0005194804980419576,-7.385450562918854e-19,1.8638219354565217e-20,0.00010389610542915761,8.90157556125355e-20,4.0576460899509107e-19,1.0197721698449541e-19,1.5472700932314216e-20,0.0015151514671742916,-0.0003030303050763905,-4.337086829422989e-19,-0.0007575757335871458,2.7007261207335956e-21,8.90157556125355e-20,0.00015151515253819525,-7.276283757006338e-21,-4.568087262339818e-22,-1.4362230347007383e-20,0.001623376621864736,-8.357941476691189e-19,-0.002435064874589443,1.3169827909768084e-18,-1.4489514379351114e-20,4.0576460899509107e-19,-7.276283757006338e-21,0.0004870129923801869,1.2704275450270375e-21,-3.1652239330282357e-19,0.002597402548417449,-1.507860430039525e-19,-0.0010389609960839152,-0.0012987012742087245,-6.164300578245398e-21,1.0197721698449541e-19,-4.568087262339818e-22,1.2704275450270375e-21,0.0005194804980419576,-8.542197509101025e-19,0.0021645021624863148,1.1392692660737787e-19,3.1450620776815034e-18,-0.0043290043249726295,1.9560480501122094e-20,1.5472700932314216e-20,-1.4362230347007383e-20,-3.1652239330282357e-19,-8.542197509101025e-19,0.0010822510812431574,11.0,6.0,6.0,0.07461585849523544,-0.011530136689543724,-0.018978046253323555,-0.018978046253323555,0.0004856254963669926,0.0010822510812431574,0.0010822510812431574,0.0013528139097616076,0.001855287584476173,0.0013528139097616076,-0.011530136689543724,0.004572279751300812,0.0010822510812431574,0.0010822510812431574,-0.00032375031150877476,-0.00021645022206939757,-0.00021645022206939757,-1.3517325451125846e-19,3.019691585513246e-19,-3.095341905422166e-19,-0.018978046253323555,0.0010822510812431574,0.015031694434583187,0.001855287584476173,-6.551481770217092e-20,-0.00043290044413879514,7.73907699562775e-19,-0.0020292208064347506,-0.000742115022148937,9.241484108232049e-19,-0.018978046253323555,0.0010822510812431574,0.001855287584476173,0.015031694434583187,-1.3141508864509449e-19,8.195112007085891e-19,-0.00043290044413879514,1.3249017011735083e-18,-0.000742115022148937,-0.0020292208064347506,0.0004856254963669926,-0.00032375031150877476,-6.551481770217092e-20,-1.3141508864509449e-19,3.237503187847324e-05,6.007700101770051e-22,-8.151742152087912e-21,1.0508747263324448e-20,1.2118408423609962e-20,3.244131276599083e-20,0.0010822510812431574,-0.00021645022206939757,-0.00043290044413879514,8.195112007085891e-19,6.007700101770051e-22,8.658008300699294e-05,-3.281263285049618e-20,3.242067525594249e-20,-6.538104062513608e-20,-9.541070831522856e-20,0.0010822510812431574,-0.00021645022206939757,7.73907699562775e-19,-0.00043290044413879514,-8.151742152087912e-21,-3.281263285049618e-20,8.658008300699294e-05,-7.889593106333372e-20,-7.487266673554358e-20,8.089329436166225e-20,0.0013528139097616076,-1.3517325451125846e-19,-0.0020292208064347506,1.3249017011735083e-18,1.0508747263324448e-20,3.242067525594249e-20,-7.889593106333372e-20,0.000405844155466184,-2.693727881945713e-19,-6.721309058557618e-20,0.001855287584476173,3.019691585513246e-19,-0.000742115022148937,-0.000742115022148937,1.2118408423609962e-20,-6.538104062513608e-20,-7.487266673554358e-20,-2.693727881945713e-19,0.0002968460030388087,-5.261354664447131e-20,0.0013528139097616076,-3.095341905422166e-19,9.241484108232049e-19,-0.0020292208064347506,3.244131276599083e-20,-9.541070831522856e-20,8.089329436166225e-20,-6.721309058557618e-20,-5.261354664447131e-20,0.000405844155466184,11.0,6.0,7.0,0.06590928882360458,-0.009998929686844349,-0.016465676948428154,-0.014571737498044968,0.0004162504046689719,0.0009276437922380865,0.000811688310932368,0.0011595546966418624,0.0013914656592532992,0.0009018759010359645,-0.009998929686844349,0.003942287992686033,0.0009276437922380865,0.000811688310932368,-0.0002775002794805914,-0.00018552875553723425,-0.00016233765927609056,0.0,0.0,-0.0,-0.016465676948428154,0.0009276437922380865,0.012963822111487389,0.0013914656592532992,6.652562893269375e-37,-0.0003710575110744685,-1.5978922542499597e-20,-0.0017393321031704545,-0.0005565862520597875,1.11571578926982e-18,-0.014571737498044968,0.000811688310932368,0.0013914656592532992,0.009547000750899315,1.1264438145202727e-20,-1.5978922542499597e-20,-0.00027056277031078935,1.9258398341944277e-18,-0.00046382189611904323,-0.0010822510812431574,0.0004162504046689719,-0.0002775002794805914,6.652562893269375e-37,1.1264438145202727e-20,2.775002758426126e-05,-1.3305126010746504e-37,-2.252887588650867e-21,0.0,-0.0,-0.0,0.0009276437922380865,-0.00018552875553723425,-0.0003710575110744685,-1.5978922542499597e-20,-1.3305126010746504e-37,7.421150075970218e-05,3.1957844277205628e-21,0.0,-0.0,-0.0,0.000811688310932368,-0.00016233765927609056,-1.5978922542499597e-20,-0.00027056277031078935,-2.252887588650867e-21,3.1957844277205628e-21,5.411255551734939e-05,0.0,0.0,-0.0,0.0011595546966418624,0.0,-0.0017393321031704545,1.9258398341944277e-18,0.0,0.0,0.0,0.0003478664148133248,-2.3479232174103297e-19,-2.231431630238428e-19,0.0013914656592532992,0.0,-0.0005565862520597875,-0.00046382189611904323,-0.0,-0.0,0.0,-2.3479232174103297e-19,0.00018552875553723425,1.506103973700979e-34,0.0009018759010359645,-0.0,1.11571578926982e-18,-0.0010822510812431574,-0.0,-0.0,-0.0,-2.231431630238428e-19,1.506103973700979e-34,0.0001803751802071929,11.0,6.0,8.0,0.059034716337919235,-0.008827977813780308,-0.014542749151587486,-0.011544011533260345,0.0003642191004473716,0.000811688310932368,0.0006313131307251751,0.0010146104032173753,0.0010822510812431574,0.0006313131307251751,-0.008827977813780308,0.003465284826233983,0.000811688310932368,0.0006313131307251751,-0.0002428127481834963,-0.00016233765927609056,-0.00012626263196580112,0.0,0.0,-0.0,-0.014542749151587486,0.000811688310932368,0.011397456750273705,0.0010822510812431574,-1.7896505372219432e-38,-0.0003246753185521811,1.3315769121996984e-21,-0.001521915546618402,-0.00043290044413879514,7.509625365511666e-19,-0.011544011533260345,0.0006313131307251751,0.0010822510812431574,0.006454854737967253,2.4242575607558685e-21,1.3315769121996984e-21,-0.0001803751802071929,1.3937530100375487e-18,-0.0003092146071139723,-0.0006313131307251751,0.0003642191004473716,-0.0002428127481834963,-1.7896505372219432e-38,2.4242575607558685e-21,2.428127481834963e-05,3.579301634963272e-39,-4.848515323460129e-22,0.0,-0.0,-0.0,0.000811688310932368,-0.00016233765927609056,-0.0003246753185521811,1.3315769121996984e-21,3.579301634963272e-39,6.49350622552447e-05,-2.663153773912299e-22,0.0,-0.0,-0.0,0.0006313131307251751,-0.00012626263196580112,1.3315769121996984e-21,-0.0001803751802071929,-4.848515323460129e-22,-2.663153773912299e-22,3.607503458624706e-05,0.0,0.0,-0.0,0.0010146104032173753,0.0,-0.001521915546618402,1.3937530100375487e-18,0.0,0.0,0.0,0.0003043831093236804,-1.3696218768226923e-19,-1.5019251506505156e-19,0.0010822510812431574,0.0,-0.00043290044413879514,-0.0003092146071139723,-0.0,-0.0,0.0,-1.3696218768226923e-19,0.00012368583702482283,6.758159238998448e-35,0.0006313131307251751,-0.0,7.509625365511666e-19,-0.0006313131307251751,-0.0,-0.0,-0.0,-1.5019251506505156e-19,6.758159238998448e-35,9.018759010359645e-05,11.0,6.0,9.0,0.05346572771668434,-0.007903208024799824,-0.01302308775484562,-0.009372950531542301,0.00032375031150877476,0.0007215007208287716,0.0005050505278632045,0.0009018759010359645,0.0008658008882775903,0.00045913681969977915,-0.007903208024799824,0.0030914763920009136,0.0007215007208287716,0.0005050505278632045,-0.00021583355555776507,-0.00014430013834498823,-0.00010101010411744937,0.0,3.3881317890172014e-21,6.776263578034403e-21,-0.01302308775484562,0.0007215007208287716,0.010169552639126778,0.0008658008882775903,7.631848635781964e-21,-0.00028860027668997645,-6.776263578034403e-21,-0.0013528139097616076,-0.00034632033202797174,5.421010862427522e-19,-0.009372950531542301,0.0005050505278632045,0.0008658008882775903,0.004573330748826265,-4.3325369806247776e-21,-1.5866928426791026e-20,-0.00012626263196580112,8.488802483572844e-19,-0.00021645022206939757,-0.00039354583714157343,0.00032375031150877476,-0.00021583355555776507,7.631848635781964e-21,-4.3325369806247776e-21,2.1583355191978626e-05,-1.7649598774277267e-21,-6.370740706110982e-22,-1.4911613806605475e-36,3.473424490318754e-22,1.3134925346938836e-21,0.0007215007208287716,-0.00014430013834498823,-0.00028860027668997645,-1.5866928426791026e-20,-1.7649598774277267e-21,5.77200589759741e-05,2.179244482275031e-21,-1.3736754412143343e-36,1.490882108729122e-22,6.652117924672454e-22,0.0005050505278632045,-0.00010101010411744937,-6.776263578034403e-21,-0.00012626263196580112,-6.370740706110982e-22,2.179244482275031e-21,2.5252526029362343e-05,8.020718518939244e-36,-2.4059654793291526e-21,-3.3881317890172014e-21,0.0009018759010359645,0.0,-0.0013528139097616076,8.488802483572844e-19,-1.4911613806605475e-36,-1.3736754412143343e-36,8.020718518939244e-36,0.00027056277031078935,1.2037062152420224e-35,-1.0611003104466055e-19,0.0008658008882775903,3.3881317890172014e-21,-0.00034632033202797174,-0.00021645022206939757,3.473424490318754e-22,1.490882108729122e-22,-2.4059654793291526e-21,1.2037062152420224e-35,8.658008300699294e-05,-3.3881317890172014e-21,0.00045913681969977915,6.776263578034403e-21,5.421010862427522e-19,-0.00039354583714157343,1.3134925346938836e-21,6.652117924672454e-22,-3.3881317890172014e-21,-1.0611003104466055e-19,-3.3881317890172014e-21,4.919322964269668e-05,11.0,6.0,10.0,0.04886098578572273,-0.007154209539294243,-0.01179161760956049,-0.00776269193738699,0.00029137529782019556,0.0006493506371043622,0.0004132231406401843,0.000811688310932368,0.0007083825184963644,0.000344352622050792,-0.007154209539294243,0.00279059330932796,0.0006493506371043622,0.0004132231406401843,-0.00019425019854679704,-0.0001298701245104894,-8.264462667284533e-05,1.2037062152420224e-35,0.0,-1.3552527156068805e-20,-0.01179161760956049,0.0006493506371043622,0.009180932305753231,0.0007083825184963644,-1.503198330247251e-20,-0.0002597402490209788,-2.710505431213761e-20,-0.0012175324372947216,-0.00028335300157777965,3.7269449679189215e-19,-0.00776269193738699,0.0004132231406401843,0.0007083825184963644,0.0033607175573706627,-1.256311756341434e-21,-1.1659831285796641e-20,-9.182736539514735e-05,9.793480342552467e-19,-0.00015741834067739546,-0.00025826445198617876,0.00029137529782019556,-0.00019425019854679704,-1.503198330247251e-20,-1.256311756341434e-21,1.942501876328606e-05,2.7206626679142224e-21,7.840246451357042e-22,-1.0862104285912406e-36,3.1748203166356823e-22,-1.5896408045223165e-22,0.0006493506371043622,-0.0001298701245104894,-0.0002597402490209788,-1.1659831285796641e-20,2.7206626679142224e-21,5.194805271457881e-05,2.9277231812392212e-21,1.0184646207022942e-36,-3.331868512695509e-22,-3.9492674078319855e-22,0.0004132231406401843,-8.264462667284533e-05,-2.710505431213761e-20,-9.182736539514735e-05,7.840246451357042e-22,2.9277231812392212e-21,1.8365473806625232e-05,-1.1859140205656695e-35,1.2201707692336683e-21,3.3881317890172014e-21,0.000811688310932368,1.2037062152420224e-35,-0.0012175324372947216,9.793480342552467e-19,-1.0862104285912406e-36,1.0184646207022942e-36,-1.1859140205656695e-35,0.00024350649619009346,-1.1156192676320927e-19,-7.782702630380768e-20,0.0007083825184963644,0.0,-0.00028335300157777965,-0.00015741834067739546,3.1748203166356823e-22,-3.331868512695509e-22,1.2201707692336683e-21,-1.1156192676320927e-19,6.296733772614971e-05,1.6940658945086007e-21,0.000344352622050792,-1.3552527156068805e-20,3.7269449679189215e-19,-0.00025826445198617876,-1.5896408045223165e-22,-3.9492674078319855e-22,3.3881317890172014e-21,-7.782702630380768e-20,1.6940658945086007e-21,2.8696051231236197e-05,11.0,6.0,11.0,0.044989101588726044,-0.006535131484270096,-0.010773317888379097,-0.006535131484270096,0.0002648866211529821,0.0005903187557123601,0.000344352622050792,0.0007378984591923654,0.0005903187557123601,0.0002648866211529821,-0.006535131484270096,0.002543163951486349,0.0005903187557123601,0.000344352622050792,-0.00017659108561929315,-0.0001180637555080466,-6.887052586534992e-05,-1.0833355937178202e-34,1.6940658945086007e-20,2.710505431213761e-20,-0.010773317888379097,0.0005903187557123601,0.008367768488824368,0.0005903187557123601,-8.406189855533899e-21,-0.0002361275110160932,3.3881317890172014e-21,-0.0011068476596847177,-0.0002361275110160932,3.3881317890172014e-19,-0.006535131484270096,0.000344352622050792,0.0005903187557123601,0.002543163951486349,-5.5830882600661216e-21,-8.823372419802623e-21,-6.887052586534992e-05,7.783288765392944e-19,-0.0001180637555080466,-0.00017659108561929315,0.0002648866211529821,-0.00017659108561929315,-8.406189855533899e-21,-5.5830882600661216e-21,1.7659109289525077e-05,1.1957181511428322e-21,5.036585316845591e-22,1.72766390347075e-37,2.40450458466333e-22,2.0166093082271649e-22,0.0005903187557123601,-0.0001180637555080466,-0.0002361275110160932,-8.823372419802623e-21,1.1957181511428322e-21,4.722550147562288e-05,2.831554145403912e-21,7.171893520873832e-37,-2.629545774994987e-22,-3.140340153101558e-22,0.000344352622050792,-6.887052586534992e-05,3.3881317890172014e-21,-6.887052586534992e-05,5.036585316845591e-22,2.831554145403912e-21,1.3774104445474222e-05,1.6389410342398882e-35,-2.7434975784130526e-21,-4.235164736271502e-21,0.0007378984591923654,-1.0833355937178202e-34,-0.0011068476596847177,7.783288765392944e-19,1.72766390347075e-37,7.171893520873832e-37,1.6389410342398882e-35,0.00022136954066809267,-7.606495065331073e-20,-5.881664514384035e-20,0.0005903187557123601,1.6940658945086007e-20,-0.0002361275110160932,-0.0001180637555080466,2.40450458466333e-22,-2.629545774994987e-22,-2.7434975784130526e-21,-7.606495065331073e-20,4.722550147562288e-05,-6.776263578034403e-21,0.0002648866211529821,2.710505431213761e-20,3.3881317890172014e-19,-0.00017659108561929315,2.0166093082271649e-22,-3.140340153101558e-22,-4.235164736271502e-21,-5.881664514384035e-20,-6.776263578034403e-21,1.7659109289525077e-05,11.0,6.0,12.0,0.04168747738003731,-0.006014818325638771,-0.009917166084051132,-0.005577755626291037,0.0002428127481834963,0.0005411255406215787,0.00029137529782019556,0.0006764069548808038,0.0004995004856027663,0.00020812520233448595,-0.006014818325638771,0.0023360897321254015,0.0005411255406215787,0.00029137529782019556,-0.00016187515575438738,-0.00010822511103469878,-5.827505810884759e-05,-2.433268611086254e-19,3.8455295805345235e-19,5.624298769768554e-19,-0.009917166084051132,0.0005411255406215787,0.0076871044002473354,0.0004995004856027663,2.0282188153873795e-19,-0.00021645022206939757,8.639736061993863e-20,-0.0010146104032173753,-0.00019980019715148956,5.082197683525802e-19,-0.005577755626291037,0.00029137529782019556,0.0004995004856027663,0.0019715132657438517,7.867186076009018e-19,2.376921067759142e-19,-5.297732423059642e-05,1.0320603255853415e-18,-9.081827010959387e-05,-0.00012487512140069157,0.0002428127481834963,-0.00016187515575438738,2.0282188153873795e-19,7.867186076009018e-19,1.618751593923662e-05,-9.009177259052172e-22,-2.1443500620049375e-20,4.1268479658726335e-34,-3.6158126063875687e-20,-4.9563150114620095e-20,0.0005411255406215787,-0.00010822511103469878,-0.00021645022206939757,2.376921067759142e-19,-9.009177259052172e-22,4.329004150349647e-05,8.477567302902842e-22,1.2783138033999678e-19,-2.549913485165419e-22,-1.8239754175036206e-20,0.00029137529782019556,-5.827505810884759e-05,8.639736061993863e-20,-5.297732423059642e-05,-2.1443500620049375e-20,8.477567302902842e-22,1.0595465028018225e-05,-1.386392349819094e-20,-4.0697972762140866e-21,-4.235164736271502e-21,0.0006764069548808038,-2.433268611086254e-19,-0.0010146104032173753,1.0320603255853415e-18,4.1268479658726335e-34,1.2783138033999678e-19,-1.386392349819094e-20,0.000202922077733092,-1.1562545475355029e-20,-7.229046089474591e-20,0.0004995004856027663,3.8455295805345235e-19,-0.00019980019715148956,-9.081827010959387e-05,-3.6158126063875687e-20,-2.549913485165419e-22,-4.0697972762140866e-21,-1.1562545475355029e-20,3.632731022662483e-05,-1.0164395367051604e-20,0.00020812520233448595,5.624298769768554e-19,5.082197683525802e-19,-0.00012487512140069157,-4.9563150114620095e-20,-1.8239754175036206e-20,-4.235164736271502e-21,-7.229046089474591e-20,-1.0164395367051604e-20,1.1352283763699234e-05,11.0,6.0,13.0,0.038838449865579605,-0.005571351852267981,-0.009187241084873676,-0.004816611763089895,0.00022413484111893922,0.0004995004856027663,0.00024975024280138314,0.0006243756506592035,0.00042814327753148973,0.00016650016186758876,-0.005571351852267981,0.0021602329798042774,0.0004995004856027663,0.00024975024280138314,-0.00014942322741262615,-9.990009857574478e-05,-4.995004928787239e-05,8.425943506694157e-35,-1.1858461261560205e-20,-1.3552527156068805e-20,-0.009187241084873676,0.0004995004856027663,0.007108962628990412,0.00042814327753148973,-2.5183929762863905e-21,-0.00019980019715148956,-1.0164395367051604e-20,-0.0009365634177811444,-0.00017125731392297894,1.4568966692773966e-19,-0.004816611763089895,0.00024975024280138314,0.00042814327753148973,0.0015595875447615981,5.624662971576148e-21,6.76363291782163e-21,-4.162504046689719e-05,6.2662483107647e-19,-7.135721534723416e-05,-9.081827010959387e-05,0.00022413484111893922,-0.00014942322741262615,-2.5183929762863905e-21,5.624662971576148e-21,1.4942322195565794e-05,6.785847644809437e-22,-3.569797544516815e-22,1.2474661609887816e-37,-3.62161276867099e-23,-4.123966145765079e-22,0.0004995004856027663,-9.990009857574478e-05,-0.00019980019715148956,6.76363291782163e-21,6.785847644809437e-22,3.996003943029791e-05,-6.224806739790378e-22,6.889271575109649e-37,-6.46559422487897e-23,-1.1646631333067563e-22,0.00024975024280138314,-4.995004928787239e-05,-1.0164395367051604e-20,-4.162504046689719e-05,-3.569797544516815e-22,-6.224806739790378e-22,8.325007911480498e-06,-1.2575454923294585e-35,2.018238299685559e-21,2.541098841762901e-21,0.0006243756506592035,8.425943506694157e-35,-0.0009365634177811444,6.2662483107647e-19,1.2474661609887816e-37,6.889271575109649e-37,-1.2575454923294585e-35,0.00018731268937699497,-7.780100888860347e-20,-3.6010193212373674e-20,0.00042814327753148973,-1.1858461261560205e-20,-0.00017125731392297894,-7.135721534723416e-05,-3.62161276867099e-23,-6.46559422487897e-23,2.018238299685559e-21,-7.780100888860347e-20,2.8542885047500022e-05,5.082197683525802e-21,0.00016650016186758876,-1.3552527156068805e-20,1.4568966692773966e-19,-9.081827010959387e-05,-4.123966145765079e-22,-1.1646631333067563e-22,2.541098841762901e-21,-3.6010193212373674e-20,5.082197683525802e-21,7.568189175799489e-06,11.0,6.0,14.0,0.03635471686720848,-0.005188858602195978,-0.008557514287531376,-0.0042014531791210175,0.00020812520233448595,0.00046382189611904323,0.00021645022206939757,0.0005797773483209312,0.0003710575110744685,0.00013528138515539467,-0.005188858602195978,0.0020090227480977774,0.00046382189611904323,0.00021645022206939757,-0.0001387501397402957,-9.276437776861712e-05,-4.329004150349647e-05,-7.222237291452134e-35,6.776263578034403e-21,1.1858461261560205e-20,-0.008557514287531376,0.00046382189611904323,0.006611781194806099,0.0003710575110744685,0.0,-0.00018552875553723425,8.470329472543003e-21,-0.0008696660515852273,-0.00014842300151940435,1.5924219408380846e-19,-0.0042014531791210175,0.00021645022206939757,0.0003710575110744685,0.001255143666639924,-0.0,-0.0,-3.330003164592199e-05,5.210416882326115e-19,-5.7085770095000044e-05,-6.764069257769734e-05,0.00020812520233448595,-0.0001387501397402957,0.0,-0.0,1.387501379213063e-05,0.0,0.0,0.0,0.0,0.0,0.00046382189611904323,-9.276437776861712e-05,-0.00018552875553723425,-0.0,0.0,3.710575037985109e-05,0.0,0.0,0.0,0.0,0.00021645022206939757,-4.329004150349647e-05,8.470329472543003e-21,-3.330003164592199e-05,0.0,0.0,6.660006874881219e-06,1.0532429383367696e-35,-1.0587911840678754e-21,-1.4823076576950256e-21,0.0005797773483209312,-7.222237291452134e-35,-0.0008696660515852273,5.210416882326115e-19,0.0,0.0,1.0532429383367696e-35,0.0001739332074066624,-5.779503831324615e-20,-2.8965696933673345e-20,0.0003710575110744685,6.776263578034403e-21,-0.00014842300151940435,-5.7085770095000044e-05,0.0,0.0,-1.0587911840678754e-21,-5.779503831324615e-20,2.283430876559578e-05,-2.117582368135751e-21,0.00013528138515539467,1.1858461261560205e-20,1.5924219408380846e-19,-6.764069257769734e-05,0.0,0.0,-1.4823076576950256e-21,-2.8965696933673345e-20,-2.117582368135751e-21,5.203130058362149e-06,11.0,6.0,15.0,0.03417012095451355,-0.0048555610701441765,-0.008008657954633236,-0.003697160631418228,0.00019425019854679704,0.00043290044413879514,0.00018939393339678645,0.0005411255406215787,0.0003246753185521811,0.00011140819697175175,-0.0048555610701441765,0.0018776131328195333,0.00043290044413879514,0.00018939393339678645,-0.00012950012751389295,-8.658008300699294e-05,-3.787878813454881e-05,4.81482486096809e-35,-6.776263578034403e-21,-5.082197683525802e-21,-0.008008657954633236,0.00043290044413879514,0.006179653573781252,0.0003246753185521811,0.0,-0.00017316016601398587,-5.082197683525802e-21,-0.000811688310932368,-0.0001298701245104894,1.0842021724855044e-19,-0.003697160631418228,0.00018939393339678645,0.0003246753185521811,0.00102521781809628,-0.0,-0.0,-2.7056277758674696e-05,4.406728716157477e-19,-4.638218888430856e-05,-5.141917063156143e-05,0.00019425019854679704,-0.00012950012751389295,0.0,-0.0,1.2950013115187176e-05,0.0,0.0,0.0,0.0,0.0,0.00043290044413879514,-8.658008300699294e-05,-0.00017316016601398587,-0.0,0.0,3.4632033930392936e-05,0.0,0.0,0.0,0.0,0.00018939393339678645,-3.787878813454881e-05,-5.082197683525802e-21,-2.7056277758674696e-05,0.0,0.0,5.4112551879370585e-06,-1.0532429383367696e-35,1.0587911840678754e-21,1.0587911840678754e-21,0.0005411255406215787,4.81482486096809e-35,-0.000811688310932368,4.406728716157477e-19,0.0,0.0,-1.0532429383367696e-35,0.00016233765927609056,-4.382790303100648e-20,-2.3650223008297652e-20,0.0003246753185521811,-6.776263578034403e-21,-0.0001298701245104894,-4.638218888430856e-05,0.0,0.0,1.0587911840678754e-21,-4.382790303100648e-20,1.8552875189925544e-05,1.2705494208814505e-21,0.00011140819697175175,-5.082197683525802e-21,1.0842021724855044e-19,-5.141917063156143e-05,0.0,0.0,1.0587911840678754e-21,-2.3650223008297652e-20,1.2705494208814505e-21,3.6727979022543877e-06,11.0,6.0,16.0,0.032233595848083496,-0.0045625329948961735,-0.007526021916419268,-0.0032785842195153236,0.0001821095502236858,0.000405844155466184,0.00016711230273358524,0.0005073052016086876,0.00028647822909988463,9.284016414312646e-05,-0.0045625329948961735,0.0017623512540012598,0.000405844155466184,0.00016711230273358524,-0.00012140637409174815,-8.116882963804528e-05,-3.342246054671705e-05,1.3240768367662246e-34,-1.3552527156068805e-20,-1.5246593050577406e-20,-0.007526021916419268,0.000405844155466184,0.005800587125122547,0.00028647822909988463,0.0,-0.00016233765927609056,-1.3552527156068805e-20,-0.000760957773309201,-0.00011459129018476233,7.115076756936123e-20,-0.0032785842195153236,0.00016711230273358524,0.00028647822909988463,0.0008482938865199685,-0.0,-0.0,-2.228163975814823e-05,3.780376441092843e-19,-3.819709672825411e-05,-3.97886433347594e-05,0.0001821095502236858,-0.00012140637409174815,0.0,-0.0,1.2140637409174815e-05,0.0,0.0,0.0,0.0,0.0,0.000405844155466184,-8.116882963804528e-05,-0.00016233765927609056,-0.0,0.0,3.246753112762235e-05,0.0,0.0,0.0,0.0,0.00016711230273358524,-3.342246054671705e-05,-1.3552527156068805e-20,-2.228163975814823e-05,0.0,0.0,4.456328042579116e-06,-1.9560225997682864e-35,1.6940658945086007e-21,2.117582368135751e-21,0.0005073052016086876,1.3240768367662246e-34,-0.000760957773309201,3.780376441092843e-19,0.0,0.0,-1.9560225997682864e-35,0.0001521915546618402,-3.383771965577679e-20,-1.9562889341538728e-20,0.00028647822909988463,-1.3552527156068805e-20,-0.00011459129018476233,-3.819709672825411e-05,0.0,0.0,1.6940658945086007e-21,-3.383771965577679e-20,1.5278837963705882e-05,3.5998900258307764e-21,9.284016414312646e-05,-1.5246593050577406e-20,7.115076756936123e-20,-3.97886433347594e-05,0.0,0.0,2.117582368135751e-21,-1.9562889341538728e-20,3.5998900258307764e-21,2.652576085893088e-06,11.0,7.0,3.0,0.11025086045265198,-0.01860639452934265,-0.02705627679824829,-0.05032467469573021,0.0008325008093379438,0.001623376621864736,0.003246753243729472,0.001803751802071929,0.004870129749178886,0.006493506487458944,-0.01860639452934265,0.007606282830238342,0.001623376621864736,0.003246753243729472,-0.0005550005589611828,-0.0003246753185521811,-0.0006493506371043622,0.0,4.505775258081091e-20,-0.0,-0.02705627679824829,0.001623376621864736,0.018398268148303032,0.004870129749178886,1.1860694002979244e-20,-0.0005411255406215787,-4.573911223736335e-19,-0.0021645021624863148,-0.001623376621864736,1.8261478199743836e-18,-0.05032467469573021,0.003246753243729472,0.004870129749178886,0.11525973677635193,1.4120327192979932e-19,-3.559706625648716e-19,-0.003246753243729472,0.0,-0.004870129749178886,-0.03896103799343109,0.0008325008093379438,-0.0005550005589611828,1.1860694002979244e-20,1.4120327192979932e-19,5.550005516852252e-05,-2.890743758834014e-37,6.354649458257411e-22,0.0,-1.1860694002979244e-20,-4.3176262422899423e-20,0.001623376621864736,-0.0003246753185521811,-0.0005411255406215787,-3.559706625648716e-19,-2.890743758834014e-37,0.00010822511103469878,7.368919746117894e-20,0.0,-2.0481933046318458e-21,-5.703805738504146e-21,0.003246753243729472,-0.0006493506371043622,-4.573911223736335e-19,-0.003246753243729472,6.354649458257411e-22,7.368919746117894e-20,0.0006493506371043622,0.0,8.894510921834464e-20,4.825515267644472e-19,0.001803751802071929,0.0,-0.0021645021624863148,0.0,0.0,0.0,0.0,0.0003607503604143858,0.0,-0.0,0.004870129749178886,4.505775258081091e-20,-0.001623376621864736,-0.004870129749178886,-1.1860694002979244e-20,-2.0481933046318458e-21,8.894510921834464e-20,0.0,0.001623376621864736,-1.7976287004050866e-18,0.006493506487458944,-0.0,1.8261478199743836e-18,-0.03896103799343109,-4.3176262422899423e-20,-5.703805738504146e-21,4.825515267644472e-19,-0.0,-1.7976287004050866e-18,0.019480518996715546,11.0,7.0,4.0,0.08991216868162155,-0.014441807754337788,-0.021022727712988853,-0.03214285895228386,0.0006243756506592035,0.0012175324372947216,0.0019480519695207477,0.0013528139097616076,0.0029220778960734606,0.003246753243729472,-0.014441807754337788,0.0058021144941449165,0.0012175324372947216,0.0019480519695207477,-0.0004162504046689719,-0.00024350649619009346,-0.00038961038808338344,-8.54248185243659e-19,-4.917731947271298e-19,-2.5232342220735933e-18,-0.021022727712988853,0.0012175324372947216,0.014042207971215248,0.0029220778960734606,-2.9337349829128274e-20,-0.000405844155466184,-2.314847159846478e-18,-0.001623376621864736,-0.0009740259847603738,-3.602963415396717e-18,-0.03214285895228386,0.0019480519695207477,0.0029220778960734606,0.04415584355592728,-7.56460159847953e-20,-2.467465291584962e-18,-0.0012987012742087245,-1.2496016922540045e-18,-0.0019480519695207477,-0.009740259498357773,0.0006243756506592035,-0.0004162504046689719,-2.9337349829128274e-20,-7.56460159847953e-20,4.162504046689719e-05,6.776263578034403e-21,-1.517847949311571e-21,1.1349945382842065e-36,1.4881968766948477e-21,2.7268787605809094e-20,0.0012175324372947216,-0.00024350649619009346,-0.000405844155466184,-2.467465291584962e-18,6.776263578034403e-21,8.116882963804528e-05,1.25361341482731e-19,1.5978921896264744e-19,9.658432250807645e-20,5.14427086765543e-19,0.0019480519695207477,-0.00038961038808338344,-2.314847159846478e-18,-0.0012987012742087245,-1.517847949311571e-21,1.25361341482731e-19,0.0002597402490209788,2.4992034362067973e-19,1.2398496464223106e-19,4.57330169502246e-19,0.0013528139097616076,-8.54248185243659e-19,-0.001623376621864736,-1.2496016922540045e-18,1.1349945382842065e-36,1.5978921896264744e-19,2.4992034362067973e-19,0.00027056277031078935,3.5929384317291505e-34,1.796469078111331e-33,0.0029220778960734606,-4.917731947271298e-19,-0.0009740259847603738,-0.0019480519695207477,1.4881968766948477e-21,9.658432250807645e-20,1.2398496464223106e-19,3.5929384317291505e-34,0.0006493506371043622,6.8721849928297e-19,0.003246753243729472,-2.5232342220735933e-18,-3.602963415396717e-18,-0.009740259498357773,2.7268787605809094e-20,5.14427086765543e-19,4.57330169502246e-19,1.796469078111331e-33,6.8721849928297e-19,0.003246753243729472,11.0,7.0,5.0,0.07602991908788681,-0.011813187040388584,-0.017207792028784752,-0.022356215864419937,0.0004995004856027663,0.0009740259847603738,0.0012987012742087245,0.0010822510812431574,0.0019480519695207477,0.001855287584476173,-0.011813187040388584,0.00469363946467638,0.0009740259847603738,0.0012987012742087245,-0.0003330003237351775,-0.00019480519404169172,-0.0002597402490209788,0.0,0.0,-0.0,-0.017207792028784752,0.0009740259847603738,0.011363636702299118,0.0019480519695207477,-1.8023100709206936e-20,-0.0003246753185521811,-5.638990402176291e-21,-0.0012987012742087245,-0.0006493506371043622,-0.0,-0.022356215864419937,0.0012987012742087245,0.0019480519695207477,0.022309832274913788,0.0,-5.638990402176291e-21,-0.0006493506371043622,0.0,-0.0009740259847603738,-0.003710575168952346,0.0004995004856027663,-0.0003330003237351775,-1.8023100709206936e-20,0.0,3.330003164592199e-05,3.6046200610620306e-21,0.0,0.0,0.0,-0.0,0.0009740259847603738,-0.00019480519404169172,-0.0003246753185521811,-5.638990402176291e-21,3.6046200610620306e-21,6.49350622552447e-05,1.127798060240419e-21,0.0,0.0,-0.0,0.0012987012742087245,-0.0002597402490209788,-5.638990402176291e-21,-0.0006493506371043622,0.0,1.127798060240419e-21,0.0001298701245104894,0.0,0.0,-0.0,0.0010822510812431574,0.0,-0.0012987012742087245,0.0,0.0,0.0,0.0,0.00021645022206939757,0.0,-0.0,0.0019480519695207477,0.0,-0.0006493506371043622,-0.0009740259847603738,0.0,0.0,0.0,0.0,0.0003246753185521811,-0.0,0.001855287584476173,-0.0,-0.0,-0.003710575168952346,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009276437922380865,11.0,7.0,6.0,0.06590928882360458,-0.009998929686844349,-0.014571737498044968,-0.016465676948428154,0.0004162504046689719,0.000811688310932368,0.0009276437922380865,0.0009018759010359645,0.0013914656592532992,0.0011595546966418624,-0.009998929686844349,0.003942287992686033,0.000811688310932368,0.0009276437922380865,-0.0002775002794805914,-0.00016233765927609056,-0.00018552875553723425,0.0,0.0,-0.0,-0.014571737498044968,0.000811688310932368,0.009547000750899315,0.0013914656592532992,1.5019250860270303e-20,-0.00027056277031078935,-9.587353525499758e-20,-0.0010822510812431574,-0.00046382189611904323,-0.0,-0.016465676948428154,0.0009276437922380865,0.0013914656592532992,0.012963822111487389,2.899555419559803e-21,-9.587353525499758e-20,-0.0003710575110744685,0.0,-0.0005565862520597875,-0.0017393321031704545,0.0004162504046689719,-0.0002775002794805914,1.5019250860270303e-20,2.899555419559803e-21,2.775002758426126e-05,-3.0038502528334172e-21,-5.799110637171215e-22,0.0,0.0,-0.0,0.000811688310932368,-0.00016233765927609056,-0.00027056277031078935,-9.587353525499758e-20,-3.0038502528334172e-21,5.411255551734939e-05,1.9174707374116944e-20,0.0,0.0,-0.0,0.0009276437922380865,-0.00018552875553723425,-9.587353525499758e-20,-0.0003710575110744685,-5.799110637171215e-22,1.9174707374116944e-20,7.421150075970218e-05,0.0,0.0,-0.0,0.0009018759010359645,0.0,-0.0010822510812431574,0.0,0.0,0.0,0.0,0.0001803751802071929,0.0,-0.0,0.0013914656592532992,0.0,-0.00046382189611904323,-0.0005565862520597875,0.0,0.0,0.0,0.0,0.00018552875553723425,-0.0,0.0011595546966418624,-0.0,-0.0,-0.0017393321031704545,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003478664148133248,11.0,7.0,7.0,0.05818883329629898,-0.008669901639223099,-0.01263914629817009,-0.01263914629817009,0.0003567860694602132,0.0006957328296266496,0.0006957328296266496,0.0007730365032330155,0.001043599215336144,0.0007730365032330155,-0.008669901639223099,0.0033989818766713142,0.0006957328296266496,0.0006957328296266496,-0.00023785738449078053,-0.00013914656301494688,-0.00013914656301494688,0.0,0.0,-0.0,-0.01263914629817009,0.0006957328296266496,0.008232838474214077,0.001043599215336144,0.0,-0.00023191094805952162,-2.4457533514690934e-21,-0.0009276437922380865,-0.0003478664148133248,-0.0,-0.01263914629817009,0.0006957328296266496,0.001043599215336144,0.008232838474214077,0.0,-2.4457533514690934e-21,-0.00023191094805952162,0.0,-0.0003478664148133248,-0.0009276437922380865,0.0003567860694602132,-0.00023785738449078053,0.0,0.0,2.3785738449078053e-05,0.0,0.0,0.0,0.0,-0.0,0.0006957328296266496,-0.00013914656301494688,-0.00023191094805952162,-2.4457533514690934e-21,0.0,4.638218888430856e-05,4.89150710683497e-22,0.0,0.0,-0.0,0.0006957328296266496,-0.00013914656301494688,-2.4457533514690934e-21,-0.00023191094805952162,0.0,4.89150710683497e-22,4.638218888430856e-05,0.0,0.0,-0.0,0.0007730365032330155,0.0,-0.0009276437922380865,0.0,0.0,0.0,0.0,0.00015460730355698615,0.0,-0.0,0.001043599215336144,0.0,-0.0003478664148133248,-0.0003478664148133248,0.0,0.0,0.0,0.0,0.00011595547402976081,-0.0,0.0007730365032330155,-0.0,-0.0,-0.0009276437922380865,-0.0,-0.0,-0.0,-0.0,-0.0,0.00015460730355698615,11.0,7.0,8.0,0.052098941057920456,-0.007653804495930672,-0.01116071455180645,-0.010010822676122189,0.00031218782532960176,0.0006087662186473608,0.0005411255406215787,0.0006764069548808038,0.000811688310932368,0.0005411255406215787,-0.007653804495930672,0.0029876374173909426,0.0006087662186473608,0.0005411255406215787,-0.00020812520233448595,-0.00012175324809504673,-0.00010822511103469878,2.0649845056111754e-20,5.991412899353011e-19,1.3344368188895602e-18,-0.01116071455180645,0.0006087662186473608,0.007237554062157869,0.000811688310932368,1.6174577252997384e-19,-0.000202922077733092,5.401283121806015e-19,-0.000811688310932368,-0.00027056277031078935,2.1507345263159574e-18,-0.010010822676122189,0.0005411255406215787,0.000811688310932368,0.005565862637013197,1.1139825356937917e-18,1.76396782614816e-19,-0.00015460730355698615,2.6777178528885373e-18,-0.00023191094805952162,-0.0005411255406215787,0.00031218782532960176,-0.00020812520233448595,1.6174577252997384e-19,1.1139825356937917e-18,2.0812520233448595e-05,2.5227070171496694e-35,-3.178245371456954e-20,5.386841534242331e-34,-4.6213078327303136e-20,-1.078305214823311e-19,0.0006087662186473608,-0.00012175324809504673,-0.000202922077733092,1.76396782614816e-19,2.5227070171496694e-35,4.058441481902264e-05,1.2853580541094238e-20,7.989460948132372e-20,7.033133046594095e-21,-3.0038501720540605e-20,0.0005411255406215787,-0.00010822511103469878,5.401283121806015e-19,-0.00015460730355698615,-3.178245371456954e-20,1.2853580541094238e-20,3.092145925620571e-05,-7.438105003304858e-20,-4.5174255800210174e-20,-4.7433179424341655e-20,0.0006764069548808038,2.0649845056111754e-20,-0.000811688310932368,2.6777178528885373e-18,5.386841534242331e-34,7.989460948132372e-20,-7.438105003304858e-20,0.00013528138515539467,-1.115715815119214e-19,-2.6033369450271565e-19,0.000811688310932368,5.991412899353011e-19,-0.00027056277031078935,-0.00023191094805952162,-4.6213078327303136e-20,7.033133046594095e-21,-4.5174255800210174e-20,-1.115715815119214e-19,7.730365177849308e-05,-1.2529709281359037e-19,0.0005411255406215787,1.3344368188895602e-18,2.1507345263159574e-18,-0.0005411255406215787,-1.078305214823311e-19,-3.0038501720540605e-20,-4.7433179424341655e-20,-2.6033369450271565e-19,-1.2529709281359037e-19,7.730365177849308e-05,11.0,7.0,9.0,0.047169413417577744,-0.00685148173943162,-0.009992784820497036,-0.00812672171741724,0.0002775002794805914,0.0005411255406215787,0.00043290044413879514,0.0006012506200931966,0.0006493506371043622,0.00039354583714157343,-0.00685148173943162,0.002665297593921423,0.0005411255406215787,0.00043290044413879514,-0.00018500018632039428,-0.00010822511103469878,-8.658008300699294e-05,0.0,4.20662094668667e-21,-4.743384504624082e-20,-0.009992784820497036,0.0005411255406215787,0.0064574312418699265,0.0006493506371043622,1.0641912032835549e-20,-0.0001803751802071929,-3.7269449679189215e-20,-0.0007215007208287716,-0.00021645022206939757,1.3552527156068805e-20,-0.00812672171741724,0.00043290044413879514,0.0006493506371043622,0.003943189047276974,6.662496759343168e-21,-4.090833997843216e-20,-0.00010822511103469878,-0.0,-0.00016233765927609056,-0.00033732500742189586,0.0002775002794805914,-0.00018500018632039428,1.0641912032835549e-20,6.662496759343168e-21,1.850001899583731e-05,-2.002566700590017e-21,-7.165427822433594e-22,-0.0,-1.5726949363184657e-22,-3.0179069211273397e-22,0.0005411255406215787,-0.00010822511103469878,-0.0001803751802071929,-4.090833997843216e-20,-2.002566700590017e-21,3.607503458624706e-05,8.181667672569005e-21,0.0,0.0,5.266214691683848e-36,0.00043290044413879514,-8.658008300699294e-05,-3.7269449679189215e-20,-0.00010822511103469878,-7.165427822433594e-22,8.181667672569005e-21,2.1645020751748234e-05,0.0,-8.470329472543003e-22,1.3552527156068805e-20,0.0006012506200931966,0.0,-0.0007215007208287716,-0.0,-0.0,0.0,0.0,0.0001202501225634478,0.0,0.0,0.0006493506371043622,4.20662094668667e-21,-0.00021645022206939757,-0.00016233765927609056,-1.5726949363184657e-22,0.0,-8.470329472543003e-22,0.0,5.411255551734939e-05,-5.082197683525802e-21,0.00039354583714157343,-4.743384504624082e-20,1.3552527156068805e-20,-0.00033732500742189586,-3.0179069211273397e-22,5.266214691683848e-36,1.3552527156068805e-20,0.0,-5.082197683525802e-21,4.216562592773698e-05,11.0,7.0,10.0,0.043095920234918594,-0.006201752927154303,-0.009046635590493679,-0.006729634013026953,0.00024975024280138314,0.0004870129923801869,0.0003541912592481822,0.0005411255406215787,0.000531286874320358,0.00029515937785618007,-0.006201752927154303,0.002405851613730192,0.0004870129923801869,0.0003541912592481822,-0.00016650016186758876,-9.740259702084586e-05,-7.083825039444491e-05,0.0,1.935848404566828e-21,0.0,-0.009046635590493679,0.0004870129923801869,0.005829398054629564,0.000531286874320358,-8.579135227042837e-21,-0.00016233765927609056,-1.6940658945086007e-21,-0.0006493506371043622,-0.0001770956296240911,0.0,-0.006729634013026953,0.0003541912592481822,0.000531286874320358,0.0028974812012165785,-3.290970782681682e-21,-1.68316936513567e-21,-7.870917033869773e-05,-0.0,-0.0001180637555080466,-0.00022136954066809267,0.00024975024280138314,-0.00016650016186758876,-8.579135227042837e-21,-3.290970782681682e-21,1.6650015822960995e-05,1.8023100305310153e-21,4.800843386106792e-22,0.0,-9.609220078314082e-23,1.2138938598088099e-22,0.0004870129923801869,-9.740259702084586e-05,-0.00016233765927609056,-1.68316936513567e-21,1.8023100305310153e-21,3.246753112762235e-05,3.366338831245536e-22,0.0,0.0,0.0,0.0003541912592481822,-7.083825039444491e-05,-1.6940658945086007e-21,-7.870917033869773e-05,4.800843386106792e-22,3.366338831245536e-22,1.5741834431537427e-05,0.0,-4.235164736271502e-22,-8.470329472543003e-22,0.0005411255406215787,0.0,-0.0006493506371043622,-0.0,0.0,0.0,0.0,0.00010822511103469878,0.0,0.0,0.000531286874320358,1.935848404566828e-21,-0.0001770956296240911,-0.0001180637555080466,-9.609220078314082e-23,0.0,-4.235164736271502e-22,0.0,3.9354585169348866e-05,0.0,0.00029515937785618007,0.0,0.0,-0.00022136954066809267,1.2138938598088099e-22,0.0,-8.470329472543003e-22,0.0,0.0,2.459661482134834e-05,11.0,7.0,11.0,0.039672449231147766,-0.005664789583534002,-0.00826446246355772,-0.005664789583534002,0.00022704567527398467,0.00044273908133618534,0.00029515937785618007,0.0004919323255307972,0.00044273908133618534,0.00022704567527398467,-0.005664789583534002,0.002192504471167922,0.00044273908133618534,0.00029515937785618007,-0.00015136378351598978,-8.854781481204554e-05,-5.90318777540233e-05,0.0,-5.082197683525802e-21,1.6940658945086007e-20,-0.00826446246355772,0.00044273908133618534,0.005312868859618902,0.00044273908133618534,-2.4997408208772083e-21,-0.00014757968892809004,3.3881317890172014e-21,-0.0005903187557123601,-0.00014757968892809004,-2.710505431213761e-20,-0.005664789583534002,0.00029515937785618007,0.00044273908133618534,0.002192504471167922,7.605742363285393e-21,1.5213555909276436e-20,-5.90318777540233e-05,-0.0,-8.854781481204554e-05,-0.00015136378351598978,0.00022704567527398467,-0.00015136378351598978,-2.4997408208772083e-21,7.605742363285393e-21,1.5136378351598978e-05,2.3084246080687767e-22,-1.0285801085608667e-21,-0.0,-1.1036032797587326e-22,-3.617999091527481e-22,0.00044273908133618534,-8.854781481204554e-05,-0.00014757968892809004,1.5213555909276436e-20,2.3084246080687767e-22,2.951593887701165e-05,-2.57240306391438e-21,-0.0,-1.2257994748081502e-22,-1.074158825590305e-22,0.00029515937785618007,-5.90318777540233e-05,3.3881317890172014e-21,-5.90318777540233e-05,-1.0285801085608667e-21,-2.57240306391438e-21,1.180637536890572e-05,0.0,1.7326331905688856e-21,-2.541098841762901e-21,0.0004919323255307972,0.0,-0.0005903187557123601,-0.0,-0.0,-0.0,0.0,9.838645928539336e-05,0.0,0.0,0.00044273908133618534,-5.082197683525802e-21,-0.00014757968892809004,-8.854781481204554e-05,-1.1036032797587326e-22,-1.2257994748081502e-22,1.7326331905688856e-21,0.0,2.951593887701165e-05,4.235164736271502e-21,0.00022704567527398467,1.6940658945086007e-20,-2.710505431213761e-20,-0.00015136378351598978,-3.617999091527481e-22,-1.074158825590305e-22,-2.541098841762901e-21,0.0,4.235164736271502e-21,1.5136378351598978e-05,11.0,7.0,12.0,0.036754414439201355,-0.005213536322116852,-0.0076069761998951435,-0.004834451247006655,0.00020812520233448595,0.000405844155466184,0.00024975024280138314,0.00045093795051798224,0.00037462537875398993,0.0001783930347301066,-0.005213536322116852,0.002013958292081952,0.000405844155466184,0.00024975024280138314,-0.0001387501397402957,-8.116882963804528e-05,-4.995004928787239e-05,0.0,-8.470329472543003e-21,-3.049318610115481e-20,-0.0076069761998951435,0.000405844155466184,0.00488053634762764,0.00037462537875398993,7.213035944095142e-21,-0.00013528138515539467,-3.218725199566341e-20,-0.0005411255406215787,-0.00012487512140069157,-1.6940658945086007e-20,-0.004834451247006655,0.00024975024280138314,0.00037462537875398993,0.0016995990881696343,7.433991718461968e-21,-2.6535010547814935e-20,-4.5409135054796934e-05,-0.0,-6.81137025821954e-05,-0.00010703581938287243,0.00020812520233448595,-0.0001387501397402957,7.213035944095142e-21,7.433991718461968e-21,1.387501379213063e-05,-1.179740802182201e-21,-9.58529159203045e-22,-0.0,-8.496338658350247e-23,-2.953068360734435e-22,0.000405844155466184,-8.116882963804528e-05,-0.00013528138515539467,-2.6535010547814935e-20,-1.179740802182201e-21,2.7056277758674696e-05,5.249458207807356e-21,0.0,3.622287086972773e-23,9.174538155786855e-23,0.00024975024280138314,-4.995004928787239e-05,-3.218725199566341e-20,-4.5409135054796934e-05,-9.58529159203045e-22,5.249458207807356e-21,9.081827556656208e-06,0.0,1.6361045856220893e-21,5.505714157152952e-21,0.00045093795051798224,0.0,-0.0005411255406215787,-0.0,-0.0,0.0,0.0,9.018759010359645e-05,0.0,0.0,0.00037462537875398993,-8.470329472543003e-21,-0.00012487512140069157,-6.81137025821954e-05,-8.496338658350247e-23,3.622287086972773e-23,1.6361045856220893e-21,0.0,2.2704567527398467e-05,3.3881317890172014e-21,0.0001783930347301066,-3.049318610115481e-20,-1.6940658945086007e-20,-0.00010703581938287243,-2.953068360734435e-22,9.174538155786855e-23,5.505714157152952e-21,0.0,3.3881317890172014e-21,9.730529200169258e-06,11.0,7.0,13.0,0.03423728421330452,-0.004828962031751871,-0.007046524900943041,-0.004174396861344576,0.0001921155781019479,0.00037462537875398993,0.00021407163876574486,0.0004162504046689719,0.0003211074508726597,0.00014271443069446832,-0.004828962031751871,0.001862331759184599,0.00037462537875398993,0.00021407163876574486,-0.00012807705206796527,-7.492507575079799e-05,-4.2814328480744734e-05,0.0,1.6940658945086007e-21,1.8634724839594607e-20,-0.007046524900943041,0.00037462537875398993,0.004513343796133995,0.0003211074508726597,-4.2753593324724e-21,-0.00012487512140069157,0.0,-0.0004995004856027663,-0.00010703581938287243,3.3881317890172014e-21,-0.004174396861344576,0.00021407163876574486,0.0003211074508726597,0.0013444348005577922,-3.441757568855716e-21,-1.1661113052238993e-21,-3.567860767361708e-05,-0.0,-5.3517909691436216e-05,-7.784423360135406e-05,0.0001921155781019479,-0.00012807705206796527,-4.2753593324724e-21,-3.441757568855716e-21,1.2807705388695467e-05,1.212106768003235e-21,8.708700266471233e-22,0.0,-1.5184707833952355e-23,9.054371289638901e-23,0.00037462537875398993,-7.492507575079799e-05,-0.00012487512140069157,-1.1661113052238993e-21,1.212106768003235e-21,2.4975024643936194e-05,4.604082038811967e-22,0.0,-1.9341036083275476e-23,-2.5388088795292403e-23,0.00021407163876574486,-4.2814328480744734e-05,0.0,-3.567860767361708e-05,8.708700266471233e-22,4.604082038811967e-22,7.1357212618750054e-06,0.0,-3.010298515468664e-22,-3.3881317890172014e-21,0.0004162504046689719,0.0,-0.0004995004856027663,-0.0,0.0,0.0,0.0,8.325008093379438e-05,0.0,0.0,0.0003211074508726597,1.6940658945086007e-21,-0.00010703581938287243,-5.3517909691436216e-05,-1.5184707833952355e-23,-1.9341036083275476e-23,-3.010298515468664e-22,0.0,1.783930383680854e-05,4.235164736271502e-22,0.00014271443069446832,1.8634724839594607e-20,3.3881317890172014e-21,-7.784423360135406e-05,9.054371289638901e-23,-2.5388088795292403e-23,-3.3881317890172014e-21,0.0,4.235164736271502e-22,6.4870196183619555e-06,11.0,7.0,14.0,0.03204355016350746,-0.0044972882606089115,-0.006563080009073019,-0.003641001880168915,0.0001783930347301066,0.0003478664148133248,0.00018552875553723425,0.00038651825161650777,0.00027829312602989376,0.00011595547402976081,-0.0044972882606089115,0.0017319584731012583,0.0003478664148133248,0.00018552875553723425,-0.00011892869224539027,-6.957328150747344e-05,-3.710575037985109e-05,-0.0,-8.470329472543003e-21,-2.0328790734103208e-20,-0.006563080009073019,0.0003478664148133248,0.004197588190436363,0.00027829312602989376,0.0,-0.00011595547402976081,-1.0164395367051604e-20,-0.00046382189611904323,-9.276437776861712e-05,-2.202285662861181e-20,-0.003641001880168915,0.00018552875553723425,0.00027829312602989376,0.0010819537565112114,-0.0,-0.0,-2.8542885047500022e-05,-0.0,-4.2814328480744734e-05,-5.7977737014880404e-05,0.0001783930347301066,-0.00011892869224539027,0.0,-0.0,1.1892869224539027e-05,0.0,0.0,0.0,0.0,0.0,0.0003478664148133248,-6.957328150747344e-05,-0.00011595547402976081,-0.0,0.0,2.319109444215428e-05,0.0,0.0,0.0,0.0,0.00018552875553723425,-3.710575037985109e-05,-1.0164395367051604e-20,-2.8542885047500022e-05,0.0,0.0,5.708577191398945e-06,0.0,1.4823076576950256e-21,3.1763735522036263e-21,0.00038651825161650777,-0.0,-0.00046382189611904323,-0.0,0.0,0.0,0.0,7.730365177849308e-05,0.0,0.0,0.00027829312602989376,-8.470329472543003e-21,-9.276437776861712e-05,-4.2814328480744734e-05,0.0,0.0,1.4823076576950256e-21,0.0,1.4271442523750011e-05,2.964615315390051e-21,0.00011595547402976081,-2.0328790734103208e-20,-2.202285662861181e-20,-5.7977737014880404e-05,0.0,0.0,3.1763735522036263e-21,0.0,2.964615315390051e-21,4.459825959202135e-06,11.0,7.0,15.0,0.030114533379673958,-0.004208291880786419,-0.006141774822026491,-0.0032037815544754267,0.00016650016186758876,0.0003246753185521811,0.00016233765927609056,0.0003607503604143858,0.00024350649619009346,9.549274545861408e-05,-0.004208291880786419,0.0016186591237783432,0.0003246753185521811,0.00016233765927609056,-0.00011100011033704504,-6.49350622552447e-05,-3.246753112762235e-05,-0.0,9.317362419797304e-21,2.202285662861181e-20,-0.006141774822026491,0.0003246753185521811,0.003923160023987293,0.00024350649619009346,0.0,-0.00010822511103469878,8.470329472543003e-21,-0.00043290044413879514,-8.116882963804528e-05,1.5246593050577406e-20,-0.0032037815544754267,0.00016233765927609056,0.00024350649619009346,0.000883727625478059,-0.0,-0.0,-2.319109444215428e-05,-0.0,-3.478664075373672e-05,-4.407357482705265e-05,0.00016650016186758876,-0.00011100011033704504,0.0,-0.0,1.1100010851805564e-05,0.0,0.0,0.0,0.0,0.0,0.0003246753185521811,-6.49350622552447e-05,-0.00010822511103469878,-0.0,0.0,2.1645020751748234e-05,0.0,0.0,0.0,0.0,0.00016233765927609056,-3.246753112762235e-05,8.470329472543003e-21,-2.319109444215428e-05,0.0,0.0,4.638218797481386e-06,0.0,-1.2705494208814505e-21,-2.752857078576476e-21,0.0003607503604143858,-0.0,-0.00043290044413879514,-0.0,0.0,0.0,0.0,7.215006917249411e-05,0.0,0.0,0.00024350649619009346,9.317362419797304e-21,-8.116882963804528e-05,-3.478664075373672e-05,0.0,0.0,-1.2705494208814505e-21,0.0,1.159554722107714e-05,-2.117582368135751e-21,9.549274545861408e-05,2.202285662861181e-20,1.5246593050577406e-20,-4.407357482705265e-05,0.0,0.0,-2.752857078576476e-21,0.0,-2.117582368135751e-21,3.1481124551646644e-06,11.0,7.0,16.0,0.02840495854616165,-0.003954226151108742,-0.0057713426649570465,-0.0028409091755747795,0.00015609391266480088,0.0003043831093236804,0.00014323911454994231,0.0003382034774404019,0.00021485866454895586,7.95772866695188e-05,-0.003954226151108742,0.001519283396191895,0.0003043831093236804,0.00014323911454994231,-0.00010406260116724297,-6.0876624047523364e-05,-2.8647822546190582e-05,1.7981794992954704e-20,1.4568966692773966e-19,1.7025362239811437e-19,-0.0057713426649570465,0.0003043831093236804,0.0036824389826506376,0.00021485866454895586,8.563011829005302e-20,-0.000101461038866546,1.5839516113655416e-19,-0.000405844155466184,-7.161955727497116e-05,2.473336205982557e-19,-0.0028409091755747795,0.00014323911454994231,0.00021485866454895586,0.0007312015513889492,2.914142305375714e-19,6.97655114619734e-20,-1.9098548364127055e-05,7.035572292360589e-19,-2.8647822546190582e-05,-3.410455246921629e-05,0.00015609391266480088,-0.00010406260116724297,8.563011829005302e-20,2.914142305375714e-19,1.0406260116724297e-05,2.780445919990401e-35,-7.611565747109509e-21,2.8039682047988282e-34,-1.141734942845783e-20,-1.35920815758679e-20,0.0003043831093236804,-6.0876624047523364e-05,-0.000101461038866546,6.97655114619734e-20,2.780445919990401e-35,2.029220740951132e-05,-1.849398740929017e-21,3.994730474066186e-20,1.737597687882946e-21,-3.533941355128496e-21,0.00014323911454994231,-2.8647822546190582e-05,1.5839516113655416e-19,-1.9098548364127055e-05,-7.611565747109509e-21,-1.849398740929017e-21,3.819709490926471e-06,-1.8376495854461745e-20,-4.870439446712227e-21,-3.3881317890172014e-21,0.0003382034774404019,1.7981794992954704e-20,-0.000405844155466184,7.035572292360589e-19,2.8039682047988282e-34,3.994730474066186e-20,-1.8376495854461745e-20,6.764069257769734e-05,-2.756474378169262e-20,-3.281516932229639e-20,0.00021485866454895586,1.4568966692773966e-19,-7.161955727497116e-05,-2.8647822546190582e-05,-1.141734942845783e-20,1.737597687882946e-21,-4.870439446712227e-21,-2.756474378169262e-20,9.549274182063527e-06,-4.0234064994579266e-21,7.95772866695188e-05,1.7025362239811437e-19,2.473336205982557e-19,-3.410455246921629e-05,-1.35920815758679e-20,-3.533941355128496e-21,-3.3881317890172014e-21,-3.281516932229639e-20,-4.0234064994579266e-21,2.2736367100151256e-06,11.0,8.0,3.0,0.09899475425481796,-0.016438422724604607,-0.021464645862579346,-0.044507574290037155,0.0007284382008947432,0.0012626262614503503,0.0028409091755747795,0.0012626262614503503,0.0037878789007663727,0.005681818351149559,-0.016438422724604607,0.006687062792479992,0.0012626262614503503,0.0028409091755747795,-0.0004856254963669926,-0.00025252526393160224,-0.0005681818001903594,0.0,0.0,-0.0,-0.021464645862579346,0.0012626262614503503,0.012445887550711632,0.0037878789007663727,-3.038315060631446e-37,-0.0003607503604143858,1.6402272933769383e-19,-0.0012626262614503503,-0.0010822510812431574,-0.0,-0.044507574290037155,0.0028409091755747795,0.0037878789007663727,0.10132575780153275,5.2624269296278955e-21,1.6402272933769383e-19,-0.0028409091755747795,0.0,-0.0037878789007663727,-0.034090910106897354,0.0007284382008947432,-0.0004856254963669926,-3.038315060631446e-37,5.2624269296278955e-21,4.856254963669926e-05,6.076629897055138e-38,-1.0524853455359007e-21,0.0,0.0,-0.0,0.0012626262614503503,-0.00025252526393160224,-0.0003607503604143858,1.6402272933769383e-19,6.076629897055138e-38,7.215006917249411e-05,-3.280454845247818e-20,0.0,0.0,-0.0,0.0028409091755747795,-0.0005681818001903594,1.6402272933769383e-19,-0.0028409091755747795,-1.0524853455359007e-21,-3.280454845247818e-20,0.0005681818001903594,0.0,0.0,-0.0,0.0012626262614503503,0.0,-0.0012626262614503503,0.0,0.0,0.0,0.0,0.0001803751802071929,0.0,-0.0,0.0037878789007663727,0.0,-0.0010822510812431574,-0.0037878789007663727,0.0,0.0,0.0,0.0,0.0010822510812431574,-0.0,0.005681818351149559,-0.0,-0.0,-0.034090910106897354,-0.0,-0.0,-0.0,-0.0,-0.0,0.017045455053448677,11.0,8.0,4.0,0.0806381106376648,-0.0127549534663558,-0.01666666753590107,-0.028409091755747795,0.0005463286652229726,0.0009469697251915932,0.001704545458778739,0.0009469697251915932,0.0022727272007614374,0.0028409091755747795,-0.0127549534663558,0.005100524518638849,0.0009469697251915932,0.001704545458778739,-0.0003642191004473716,-0.00018939393339678645,-0.0003409090859349817,0.0,0.0,-0.0,-0.01666666753590107,0.0009469697251915932,0.009496753104031086,0.0022727272007614374,1.3552527156068805e-20,-0.00027056277031078935,-4.7310640371410167e-20,-0.0009469697251915932,-0.0006493506371043622,-0.0,-0.028409091755747795,0.001704545458778739,0.0022727272007614374,0.038825757801532745,7.475490497376701e-21,-4.7310640371410167e-20,-0.0011363636003807187,0.0,-0.0015151514671742916,-0.008522727526724339,0.0005463286652229726,-0.0003642191004473716,1.3552527156068805e-20,7.475490497376701e-21,3.6421912227524444e-05,-1.6940658945086007e-21,-1.4950981600598577e-21,0.0,0.0,-0.0,0.0009469697251915932,-0.00018939393339678645,-0.00027056277031078935,-4.7310640371410167e-20,-1.6940658945086007e-21,5.411255551734939e-05,9.46212791272332e-21,0.0,0.0,-0.0,0.001704545458778739,-0.0003409090859349817,-4.7310640371410167e-20,-0.0011363636003807187,-1.4950981600598577e-21,9.46212791272332e-21,0.00022727272880729288,0.0,0.0,-0.0,0.0009469697251915932,0.0,-0.0009469697251915932,0.0,0.0,0.0,0.0,0.00013528138515539467,0.0,-0.0,0.0022727272007614374,0.0,-0.0006493506371043622,-0.0015151514671742916,0.0,0.0,0.0,0.0,0.00043290044413879514,-0.0,0.0028409091755747795,-0.0,-0.0,-0.008522727526724339,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028409091755747795,11.0,8.0,5.0,0.06813602894544601,-0.010431235656142235,-0.013636363670229912,-0.019751083105802536,0.0004370629321783781,0.0007575757335871458,0.0011363636003807187,0.0007575757335871458,0.0015151514671742916,0.001623376621864736,-0.010431235656142235,0.004125874023884535,0.0007575757335871458,0.0011363636003807187,-0.00029137529782019556,-0.00015151515253819525,-0.00022727272880729288,0.0,0.0,-0.0,-0.013636363670229912,0.0007575757335871458,0.007683982606977224,0.0015151514671742916,-1.0552633880023075e-20,-0.00021645022206939757,6.776263578034403e-20,-0.0007575757335871458,-0.00043290044413879514,-0.0,-0.019751083105802536,0.0011363636003807187,0.0015151514671742916,0.01961580105125904,-7.442619155705346e-22,6.776263578034403e-20,-0.0005681818001903594,0.0,-0.0007575757335871458,-0.003246753243729472,0.0004370629321783781,-0.00029137529782019556,-1.0552633880023075e-20,-7.442619155705346e-22,2.9137529054423794e-05,1.0285359828372722e-21,1.4885237301668734e-22,0.0,0.0,-0.0,0.0007575757335871458,-0.00015151515253819525,-0.00021645022206939757,6.776263578034403e-20,1.0285359828372722e-21,4.329004150349647e-05,-1.1858461261560205e-20,0.0,0.0,-0.0,0.0011363636003807187,-0.00022727272880729288,6.776263578034403e-20,-0.0005681818001903594,1.4885237301668734e-22,-1.1858461261560205e-20,0.00011363636440364644,0.0,0.0,-0.0,0.0007575757335871458,0.0,-0.0007575757335871458,0.0,0.0,0.0,0.0,0.00010822511103469878,0.0,-0.0,0.0015151514671742916,0.0,-0.00043290044413879514,-0.0007575757335871458,0.0,0.0,0.0,0.0,0.00021645022206939757,-0.0,0.001623376621864736,-0.0,-0.0,-0.003246753243729472,-0.0,-0.0,-0.0,-0.0,-0.0,0.000811688310932368,11.0,8.0,6.0,0.059034716337919235,-0.008827977813780308,-0.011544011533260345,-0.014542749151587486,0.0003642191004473716,0.0006313131307251751,0.000811688310932368,0.0006313131307251751,0.0010822510812431574,0.0010146104032173753,-0.008827977813780308,0.003465284826233983,0.0006313131307251751,0.000811688310932368,-0.0002428127481834963,-0.00012626263196580112,-0.00016233765927609056,0.0,0.0,-0.0,-0.011544011533260345,0.0006313131307251751,0.006454854737967253,0.0010822510812431574,6.620459481763325e-37,-0.0001803751802071929,4.624681824900735e-20,-0.0006313131307251751,-0.0003092146071139723,-0.0,-0.014542749151587486,0.000811688310932368,0.0010822510812431574,0.011397456750273705,-4.647887068360332e-21,4.624681824900735e-20,-0.0003246753185521811,0.0,-0.00043290044413879514,-0.001521915546618402,0.0003642191004473716,-0.0002428127481834963,6.620459481763325e-37,-4.647887068360332e-21,2.428127481834963e-05,-1.3240919636149912e-37,9.295773328927096e-22,0.0,0.0,-0.0,0.0006313131307251751,-0.00012626263196580112,-0.0001803751802071929,4.624681824900735e-20,-1.3240919636149912e-37,3.607503458624706e-05,-9.249363972918897e-21,0.0,0.0,-0.0,0.000811688310932368,-0.00016233765927609056,4.624681824900735e-20,-0.0003246753185521811,9.295773328927096e-22,-9.249363972918897e-21,6.49350622552447e-05,0.0,0.0,-0.0,0.0006313131307251751,0.0,-0.0006313131307251751,0.0,0.0,0.0,0.0,9.018759010359645e-05,0.0,-0.0,0.0010822510812431574,0.0,-0.0003092146071139723,-0.00043290044413879514,0.0,0.0,0.0,0.0,0.00012368583702482283,-0.0,0.0010146104032173753,-0.0,-0.0,-0.001521915546618402,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003043831093236804,11.0,8.0,7.0,0.052098941057920456,-0.007653804495930672,-0.010010822676122189,-0.01116071455180645,0.00031218782532960176,0.0005411255406215787,0.0006087662186473608,0.0005411255406215787,0.000811688310932368,0.0006764069548808038,-0.007653804495930672,0.0029876374173909426,0.0005411255406215787,0.0006087662186473608,-0.00020812520233448595,-0.00010822511103469878,-0.00012175324809504673,1.0640903098670433e-18,4.2123978823806867e-19,-3.398121804371369e-19,-0.010010822676122189,0.0005411255406215787,0.005565862637013197,0.000811688310932368,1.1121176570027909e-18,-0.00015460730355698615,-5.228307764999872e-19,-0.0005411255406215787,-0.00023191094805952162,-1.0848413763038548e-18,-0.01116071455180645,0.0006087662186473608,0.000811688310932368,0.007237554062157869,1.6473953303725932e-19,-2.0863211448358405e-19,-0.000202922077733092,-1.149525349241853e-18,-0.00027056277031078935,-0.000811688310932368,0.00031218782532960176,-0.00020812520233448595,1.1121176570027909e-18,1.6473953303725932e-19,2.0812520233448595e-05,-3.140945988179348e-20,-5.987498194402682e-22,-1.078305214823311e-19,-4.6213078327303136e-20,-2.219745446141488e-34,0.0005411255406215787,-0.00010822511103469878,-0.00015460730355698615,-2.0863211448358405e-19,-3.140945988179348e-20,3.092145925620571e-05,4.68896781410417e-21,-4.7433179424341655e-20,-1.0844538971168362e-20,2.8608096415109014e-20,0.0006087662186473608,-0.00012175324809504673,-5.228307764999872e-19,-0.000202922077733092,-5.987498194402682e-22,4.68896781410417e-21,4.058441481902264e-05,6.007700344108121e-20,2.6282295561570047e-20,7.989460948132372e-20,0.0005411255406215787,1.0640903098670433e-18,-0.0005411255406215787,-1.149525349241853e-18,-1.078305214823311e-19,-4.7433179424341655e-20,6.007700344108121e-20,7.730365177849308e-05,1.9468367800683206e-20,1.0012833906846868e-19,0.000811688310932368,4.2123978823806867e-19,-0.00023191094805952162,-0.00027056277031078935,-4.6213078327303136e-20,-1.0844538971168362e-20,2.6282295561570047e-20,1.9468367800683206e-20,7.730365177849308e-05,6.122875550883327e-20,0.0006764069548808038,-3.398121804371369e-19,-1.0848413763038548e-18,-0.000811688310932368,-2.219745446141488e-34,2.8608096415109014e-20,7.989460948132372e-20,1.0012833906846868e-19,6.122875550883327e-20,0.00013528138515539467,11.0,8.0,8.0,0.04663218557834625,-0.006756264716386795,-0.008838383480906487,-0.008838383480906487,0.0002731643326114863,0.0004734848625957966,0.0004734848625957966,0.0004734848625957966,0.0006313131307251751,0.0004734848625957966,-0.006756264716386795,0.002626019762828946,0.0004734848625957966,0.0004734848625957966,-0.0001821095502236858,-9.469696669839323e-05,-9.469696669839323e-05,0.0,0.0,-0.0,-0.008838383480906487,0.0004734848625957966,0.00489267660304904,0.0006313131307251751,6.140031141606067e-37,-0.00013528138515539467,-1.747694663183313e-20,-0.0004734848625957966,-0.0001803751802071929,-0.0,-0.008838383480906487,0.0004734848625957966,0.0006313131307251751,0.00489267660304904,4.75272897982716e-21,-1.747694663183313e-20,-0.00013528138515539467,0.0,-0.0001803751802071929,-0.0004734848625957966,0.0002731643326114863,-0.0001821095502236858,6.140031141606067e-37,4.75272897982716e-21,1.8210956113762222e-05,-1.2280062731627643e-37,-9.505458363551104e-22,0.0,0.0,-0.0,0.0004734848625957966,-9.469696669839323e-05,-0.00013528138515539467,-1.747694663183313e-20,-1.2280062731627643e-37,2.7056277758674696e-05,3.495389407145983e-21,0.0,0.0,-0.0,0.0004734848625957966,-9.469696669839323e-05,-1.747694663183313e-20,-0.00013528138515539467,-9.505458363551104e-22,3.495389407145983e-21,2.7056277758674696e-05,0.0,0.0,-0.0,0.0004734848625957966,0.0,-0.0004734848625957966,0.0,0.0,0.0,0.0,6.764069257769734e-05,0.0,-0.0,0.0006313131307251751,0.0,-0.0001803751802071929,-0.0001803751802071929,0.0,0.0,0.0,0.0,5.153576421434991e-05,-0.0,0.0004734848625957966,-0.0,-0.0,-0.0004734848625957966,-0.0,-0.0,-0.0,-0.0,-0.0,6.764069257769734e-05,11.0,8.0,9.0,0.0422096848487854,-0.006047655828297138,-0.007912457920610905,-0.007174012716859579,0.0002428127481834963,0.0004208754107821733,0.0003787878667935729,0.0004208754107821733,0.0005050505278632045,0.000344352622050792,-0.006047655828297138,0.00234265741892159,0.0004208754107821733,0.0003787878667935729,-0.00016187515575438738,-8.417508070124313e-05,-7.575757626909763e-05,1.164396712487061e-18,2.9264716908997583e-19,-1.1519648082658485e-19,-0.007912457920610905,0.0004208754107821733,0.004365079570561647,0.0005050505278632045,8.721851315377768e-19,-0.0001202501225634478,-3.8963515573697816e-20,-0.0004208754107821733,-0.00014430013834498823,-8.199278929421627e-19,-0.007174012716859579,0.0003787878667935729,0.0005050505278632045,0.0034660729579627514,9.902208193440704e-20,-1.315894815826754e-19,-9.469696669839323e-05,-5.88282631540376e-19,-0.00012626263196580112,-0.00029515937785618007,0.0002428127481834963,-0.00016187515575438738,8.721851315377768e-19,9.902208193440704e-20,1.618751593923662e-05,-2.4429580626100324e-20,2.7983604940993456e-22,-8.386817834887533e-20,-2.875881453882986e-20,2.7145915439005436e-23,0.0004208754107821733,-8.417508070124313e-05,-0.0001202501225634478,-1.315894815826754e-19,-2.4429580626100324e-20,2.405002487648744e-05,2.4111593900162257e-21,-9.306139905330432e-20,-8.291531636641539e-21,1.4564122193194275e-20,0.0003787878667935729,-7.575757626909763e-05,-3.8963515573697816e-20,-9.469696669839323e-05,2.7983604940993456e-22,2.4111593900162257e-21,1.8939394067274407e-05,1.504632769052528e-35,6.3527471044072525e-21,1.3552527156068805e-20,0.0004208754107821733,1.164396712487061e-18,-0.0004208754107821733,-5.88282631540376e-19,-8.386817834887533e-20,-9.306139905330432e-20,1.504632769052528e-35,6.01250612817239e-05,1.952671149884947e-20,5.0974426868386397e-20,0.0005050505278632045,2.9264716908997583e-19,-0.00014430013834498823,-0.00012626263196580112,-2.875881453882986e-20,-8.291531636641539e-21,6.3527471044072525e-21,1.952671149884947e-20,3.607503458624706e-05,8.978549240895584e-20,0.000344352622050792,-1.1519648082658485e-19,-8.199278929421627e-19,-0.00029515937785618007,2.7145915439005436e-23,1.4564122193194275e-20,1.3552527156068805e-20,5.0974426868386397e-20,8.978549240895584e-20,3.689492223202251e-05,11.0,8.0,10.0,0.03855689615011215,-0.005473881959915161,-0.007162534631788731,-0.005940082482993603,0.00021853146608918905,0.0003787878667935729,0.0003099173482041806,0.0003787878667935729,0.0004132231406401843,0.00025826445198617876,-0.005473881959915161,0.002114590024575591,0.0003787878667935729,0.0003099173482041806,-0.00014568764891009778,-7.575757626909763e-05,-6.19834681856446e-05,0.0,2.4062840731119563e-20,5.759824041329242e-20,-0.007162534631788731,0.0003787878667935729,0.003940377850085497,0.0004132231406401843,-9.974756764776877e-23,-0.00010822511103469878,4.2351647362715017e-20,-0.0003787878667935729,-0.0001180637555080466,7.453889935837843e-20,-0.005940082482993603,0.0003099173482041806,0.0004132231406401843,0.0025467744562774897,3.150007574075282e-21,1.884419055826519e-20,-6.887052586534992e-05,-0.0,-9.182736539514735e-05,-0.00019369834626559168,0.00021853146608918905,-0.00014568764891009778,-9.974756764776877e-23,3.150007574075282e-21,1.4568764527211897e-05,1.1017288786214577e-37,-4.026527308929628e-22,-0.0,2.21661252674365e-23,-1.2504496741567516e-22,0.0003787878667935729,-7.575757626909763e-05,-0.00010822511103469878,1.884419055826519e-20,1.1017288786214577e-37,2.1645020751748234e-05,-3.768838030873681e-21,-0.0,1.410593220986745e-36,3.385423730368188e-36,0.0003099173482041806,-6.19834681856446e-05,4.2351647362715017e-20,-6.887052586534992e-05,-4.026527308929628e-22,-3.768838030873681e-21,1.3774104445474222e-05,0.0,-5.505714157152952e-21,-1.2705494208814505e-20,0.0003787878667935729,0.0,-0.0003787878667935729,-0.0,-0.0,-0.0,0.0,5.411255551734939e-05,0.0,0.0,0.0004132231406401843,2.4062840731119563e-20,-0.0001180637555080466,-9.182736539514735e-05,2.21661252674365e-23,1.410593220986745e-36,-5.505714157152952e-21,0.0,2.6236390112899244e-05,-1.6093625997831706e-20,0.00025826445198617876,5.759824041329242e-20,7.453889935837843e-20,-0.00019369834626559168,-1.2504496741567516e-22,3.385423730368188e-36,-1.2705494208814505e-20,0.0,-1.6093625997831706e-20,2.15220388781745e-05,11.0,8.0,11.0,0.03548818454146385,-0.004999734926968813,-0.0065426998771727085,-0.004999734926968813,0.0001986649731406942,0.000344352622050792,0.00025826445198617876,0.000344352622050792,0.000344352622050792,0.0001986649731406942,-0.004999734926968813,0.0019270501798018813,0.000344352622050792,0.00025826445198617876,-0.00013244331057649106,-6.887052586534992e-05,-5.1652892580023035e-05,0.0,-1.899289889159147e-20,-3.049318610115481e-20,-0.0065426998771727085,0.000344352622050792,0.0035911058075726032,0.000344352622050792,-5.591246571195496e-21,-9.838645928539336e-05,0.0,-0.000344352622050792,-9.838645928539336e-05,-5.082197683525802e-20,-0.004999734926968813,0.00025826445198617876,0.000344352622050792,0.0019270501798018813,-8.808174995530879e-22,1.8025810048830474e-20,-5.1652892580023035e-05,-0.0,-6.887052586534992e-05,-0.00013244331057649106,0.0001986649731406942,-0.00013244331057649106,-5.591246571195496e-21,-8.808174995530879e-22,1.3244331057649106e-05,1.0923091644895707e-21,-8.188477801478695e-23,0.0,2.5940157322593224e-23,1.11266306326527e-22,0.000344352622050792,-6.887052586534992e-05,-9.838645928539336e-05,1.8025810048830474e-20,1.0923091644895707e-21,1.9677292584674433e-05,-3.605161686648668e-21,-0.0,-1.316553672920962e-36,-2.068870057447226e-36,0.00025826445198617876,-5.1652892580023035e-05,0.0,-5.1652892580023035e-05,-8.188477801478695e-23,-3.605161686648668e-21,1.0330578334105667e-05,0.0,3.5998900258307764e-21,6.3527471044072525e-21,0.000344352622050792,0.0,-0.000344352622050792,-0.0,0.0,-0.0,0.0,4.919322964269668e-05,0.0,0.0,0.000344352622050792,-1.899289889159147e-20,-9.838645928539336e-05,-6.887052586534992e-05,2.5940157322593224e-23,-1.316553672920962e-36,3.5998900258307764e-21,0.0,1.9677292584674433e-05,1.0164395367051604e-20,0.0001986649731406942,-3.049318610115481e-20,-5.082197683525802e-20,-0.00013244331057649106,1.11266306326527e-22,-2.068870057447226e-36,6.3527471044072525e-21,0.0,1.0164395367051604e-20,1.3244331057649106e-05,11.0,8.0,12.0,0.032873377203941345,-0.004601301625370979,-0.006021756213158369,-0.004266566596925259,0.0001821095502236858,0.00031565656536258757,0.00021853146608918905,0.00031565656536258757,0.00029137529782019556,0.00015609391266480088,-0.004601301625370979,0.0017701048636808991,0.00031565656536258757,0.00021853146608918905,-0.00012140637409174815,-6.313131598290056e-05,-4.3706295400625095e-05,0.0,-7.94600972711762e-23,1.0164395367051604e-20,-0.006021756213158369,0.00031565656536258757,0.0032987846061587334,0.00029137529782019556,8.0135560367904775e-22,-9.018759010359645e-05,1.0164395367051604e-20,-0.00031565656536258757,-8.325008093379438e-05,-6.776263578034403e-21,-0.004266566596925259,0.00021853146608918905,0.00029137529782019556,0.0014937713276594877,-4.336251644585929e-23,1.2418475460955676e-20,-3.973299317294732e-05,-0.0,-5.297732423059642e-05,-9.365634468849748e-05,0.0001821095502236858,-0.00012140637409174815,8.0135560367904775e-22,-4.336251644585929e-23,1.2140637409174815e-05,-1.2403365786100512e-37,3.968465126821444e-22,0.0,-1.4570101885073595e-22,-1.2076787718353718e-22,0.00031565656536258757,-6.313131598290056e-05,-9.018759010359645e-05,1.2418475460955676e-20,-1.2403365786100512e-37,1.803751729312353e-05,-2.48369521336017e-21,-0.0,-9.4039548065783e-38,3.76158192263132e-37,0.00021853146608918905,-4.3706295400625095e-05,1.0164395367051604e-20,-3.973299317294732e-05,3.968465126821444e-22,-2.48369521336017e-21,7.946598998387344e-06,0.0,4.235164736271502e-22,-1.6940658945086007e-21,0.00031565656536258757,0.0,-0.00031565656536258757,-0.0,0.0,-0.0,0.0,4.5093795051798224e-05,0.0,0.0,0.00029137529782019556,-7.94600972711762e-23,-8.325008093379438e-05,-5.297732423059642e-05,-1.4570101885073595e-22,-9.4039548065783e-38,4.235164736271502e-22,0.0,1.5136378351598978e-05,1.2705494208814505e-21,0.00015609391266480088,1.0164395367051604e-20,-6.776263578034403e-21,-9.365634468849748e-05,-1.2076787718353718e-22,3.76158192263132e-37,-1.6940658945086007e-21,0.0,1.2705494208814505e-21,8.514212822774425e-06,11.0,8.0,13.0,0.030618419870734215,-0.004261763766407967,-0.005577755626291037,-0.0036838161759078503,0.00016810113447718322,0.00029137529782019556,0.00018731268937699497,0.00029137529782019556,0.00024975024280138314,0.00012487512140069157,-0.004261763766407967,0.00163682468701154,0.00029137529782019556,0.00018731268937699497,-0.00011206742055946961,-5.827505810884759e-05,-3.7462537875398993e-05,0.0,8.246129599211321e-21,-1.0164395367051604e-20,-0.005577755626291037,0.00029137529782019556,0.0030505210161209106,0.00024975024280138314,3.1103442536059447e-22,-8.325008093379438e-05,-8.470329472543003e-22,-0.00029137529782019556,-7.135721534723416e-05,1.5246593050577406e-20,-0.0036838161759078503,0.00018731268937699497,0.00024975024280138314,0.0011815836187452078,-3.051610441633943e-21,-8.946808123593422e-21,-3.121878035017289e-05,-0.0,-4.162504046689719e-05,-6.81137025821954e-05,0.00016810113447718322,-0.00011206742055946961,3.1103442536059447e-22,-3.051610441633943e-21,1.120674187404802e-05,1.5180545402684837e-37,5.297063401217224e-22,0.0,-5.183906984161787e-23,4.5252807035055227e-23,0.00029137529782019556,-5.827505810884759e-05,-8.325008093379438e-05,-8.946808123593422e-21,1.5180545402684837e-37,1.6650015822960995e-05,1.789361705498041e-21,0.0,-3.76158192263132e-37,3.76158192263132e-37,0.00018731268937699497,-3.7462537875398993e-05,-8.470329472543003e-22,-3.121878035017289e-05,5.297063401217224e-22,1.789361705498041e-21,6.243756160984049e-06,0.0,-1.2705494208814505e-21,1.6940658945086007e-21,0.00029137529782019556,0.0,-0.00029137529782019556,-0.0,0.0,0.0,0.0,4.162504046689719e-05,0.0,0.0,0.00024975024280138314,8.246129599211321e-21,-7.135721534723416e-05,-4.162504046689719e-05,-5.183906984161787e-23,-3.76158192263132e-37,-1.2705494208814505e-21,0.0,1.1892869224539027e-05,-2.964615315390051e-21,0.00012487512140069157,-1.0164395367051604e-20,1.5246593050577406e-20,-6.81137025821954e-05,4.5252807035055227e-23,3.76158192263132e-37,1.6940658945086007e-21,0.0,-2.964615315390051e-21,5.676141881849617e-06,11.0,8.0,14.0,0.028653638437390327,-0.003968947567045689,-0.005194805096834898,-0.003212932962924242,0.00015609391266480088,0.00027056277031078935,0.00016233765927609056,0.00027056277031078935,0.00021645022206939757,0.000101461038866546,-0.003968947567045689,0.0015222277725115418,0.00027056277031078935,0.00016233765927609056,-0.00010406260116724297,-5.411255551734939e-05,-3.246753112762235e-05,6.152427224501637e-19,1.3467823861343375e-19,-1.0164395367051604e-20,-0.005194805096834898,0.00027056277031078935,0.0028370439540594816,0.00021645022206939757,5.653400017693935e-19,-7.730365177849308e-05,7.623296525288703e-21,-0.00027056277031078935,-6.184291851241142e-05,-1.3721933745519665e-19,-0.003212932962924242,0.00016233765927609056,0.00021645022206939757,0.0009508720249868929,4.313220859293244e-20,-6.409900114855838e-20,-2.4975024643936194e-05,-2.724081016029405e-19,-3.330003164592199e-05,-5.0730519433273e-05,0.00015609391266480088,-0.00010406260116724297,5.653400017693935e-19,4.313220859293244e-20,1.0406260116724297e-05,-1.5404359980963423e-20,1.5022810987593104e-36,-5.391526074116555e-20,-1.2323487823212025e-20,-2.7083389842945504e-35,0.00027056277031078935,-5.411255551734939e-05,-7.730365177849308e-05,-6.409900114855838e-20,-1.5404359980963423e-20,1.5460729628102854e-05,-2.445028249710358e-36,-2.174003032936543e-20,-1.5481933204990845e-21,4.291214704604422e-21,0.00016233765927609056,-3.246753112762235e-05,7.623296525288703e-21,-2.4975024643936194e-05,1.5022810987593104e-36,-2.445028249710358e-36,4.995004928787239e-06,-1.2037062152420224e-35,-1.0587911840678754e-21,-1.2705494208814505e-21,0.00027056277031078935,6.152427224501637e-19,-0.00027056277031078935,-2.724081016029405e-19,-5.391526074116555e-20,-2.174003032936543e-20,-1.2037062152420224e-35,3.865182588924654e-05,8.313210392597677e-21,1.5019250860270303e-20,0.00021645022206939757,1.3467823861343375e-19,-6.184291851241142e-05,-3.330003164592199e-05,-1.2323487823212025e-20,-1.5481933204990845e-21,-1.0587911840678754e-21,8.313210392597677e-21,9.51429501583334e-06,2.117582368135751e-22,0.000101461038866546,-1.0164395367051604e-20,-1.3721933745519665e-19,-5.0730519433273e-05,-2.7083389842945504e-35,4.291214704604422e-21,-1.2705494208814505e-21,1.5019250860270303e-20,2.117582368135751e-22,3.9023475437716115e-06,11.0,8.0,15.0,0.02692629024386406,-0.003713820828124881,-0.004861111287027597,-0.0028269831091165543,0.00014568764891009778,0.00025252526393160224,0.00014204545004758984,0.00025252526393160224,0.00018939393339678645,8.355615136679262e-05,-0.003713820828124881,0.0014226398197934031,0.00025252526393160224,0.00014204545004758984,-9.712509927339852e-05,-5.0505052058724687e-05,-2.840909110091161e-05,-0.0,-5.929230630780102e-21,-3.3881317890172014e-21,-0.004861111287027597,0.00025252526393160224,0.002651515183970332,0.00018939393339678645,0.0,-7.215006917249411e-05,-5.929230630780102e-21,-0.00025252526393160224,-5.411255551734939e-05,-1.5246593050577406e-20,-0.0028269831091165543,0.00014204545004758984,0.00018939393339678645,0.000776643690187484,-0.0,-0.0,-2.029220740951132e-05,-0.0,-2.7056277758674696e-05,-3.856437615468167e-05,0.00014568764891009778,-9.712509927339852e-05,0.0,-0.0,9.71250938164303e-06,0.0,0.0,0.0,0.0,0.0,0.00025252526393160224,-5.0505052058724687e-05,-7.215006917249411e-05,-0.0,0.0,1.4430014743993524e-05,0.0,0.0,0.0,0.0,0.00014204545004758984,-2.840909110091161e-05,-5.929230630780102e-21,-2.029220740951132e-05,0.0,0.0,4.058441390952794e-06,0.0,8.470329472543003e-22,6.352747104407253e-22,0.00025252526393160224,-0.0,-0.00025252526393160224,-0.0,0.0,0.0,0.0,3.607503458624706e-05,0.0,0.0,0.00018939393339678645,-5.929230630780102e-21,-5.411255551734939e-05,-2.7056277758674696e-05,0.0,0.0,8.470329472543003e-22,0.0,7.730364814051427e-06,2.329340604949326e-21,8.355615136679262e-05,-3.3881317890172014e-21,-1.5246593050577406e-20,-3.856437615468167e-05,0.0,0.0,6.352747104407253e-22,0.0,2.329340604949326e-21,2.754598426690791e-06,11.0,8.0,16.0,0.0253957137465477,-0.003489540424197912,-0.00456773629412055,-0.002506684511899948,0.00013658216630574316,0.0002367424312978983,0.00012533421977423131,0.0002367424312978983,0.00016711230273358524,6.963012128835544e-05,-0.003489540424197912,0.0013352915411815047,0.0002367424312978983,0.00012533421977423131,-9.10547751118429e-05,-4.734848334919661e-05,-2.5066845410037786e-05,-0.0,5.929230630780102e-21,1.1858461261560205e-20,-0.00456773629412055,0.0002367424312978983,0.002488779602572322,0.00016711230273358524,0.0,-6.764069257769734e-05,5.929230630780102e-21,-0.0002367424312978983,-4.774637272930704e-05,1.1858461261560205e-20,-0.002506684511899948,0.00012533421977423131,0.00016711230273358524,0.0006425865576602519,-0.0,-0.0,-1.6711230273358524e-05,-0.0,-2.228163975814823e-05,-2.9841481591574848e-05,0.00013658216630574316,-9.10547751118429e-05,0.0,-0.0,9.105478056881111e-06,0.0,0.0,0.0,0.0,0.0,0.0002367424312978983,-4.734848334919661e-05,-6.764069257769734e-05,-0.0,0.0,1.3528138879337348e-05,0.0,0.0,0.0,0.0,0.00012533421977423131,-2.5066845410037786e-05,5.929230630780102e-21,-1.6711230273358524e-05,0.0,0.0,3.3422459182474995e-06,0.0,-7.411538288475128e-22,-1.4823076576950256e-21,0.0002367424312978983,-0.0,-0.0002367424312978983,-0.0,0.0,0.0,0.0,3.382034628884867e-05,0.0,0.0,0.00016711230273358524,5.929230630780102e-21,-4.774637272930704e-05,-2.228163975814823e-05,0.0,0.0,-7.411538288475128e-22,0.0,6.366182788042352e-06,-1.2705494208814505e-21,6.963012128835544e-05,1.1858461261560205e-20,1.1858461261560205e-20,-2.9841481591574848e-05,0.0,0.0,-1.4823076576950256e-21,0.0,-1.2705494208814505e-21,1.989432121263235e-06,11.0,9.0,3.0,0.0898318886756897,-0.01472416426986456,-0.017447199672460556,-0.03989899158477783,0.0006475006230175495,0.001010101055726409,0.0025252525229007006,0.0009182736393995583,0.0030303029343485832,0.005050505045801401,-0.01472416426986456,0.005966502707451582,0.001010101055726409,0.0025252525229007006,-0.00043166711111553013,-0.00020202020823489875,-0.0005050505278632045,3.884815295881508e-20,1.109066963204907e-20,-5.602705459736497e-34,-0.017447199672460556,0.001010101055726409,0.008821985684335232,0.0030303029343485832,3.604776369117235e-21,-0.00025252526393160224,0.0,-0.0007870916742831469,-0.0007575757335871458,1.2928918173806916e-17,-0.03989899158477783,0.0025252525229007006,0.0030303029343485832,0.09040404111146927,-4.212676975058067e-21,2.244383339926448e-20,-0.0025252525229007006,4.57560208430597e-18,-0.0030303029343485832,-0.03030303120613098,0.0006475006230175495,-0.00043166711111553013,3.604776369117235e-21,-4.212676975058067e-21,4.316671038395725e-05,-1.4585678416963728e-22,0.0,-4.546185454385007e-22,1.0531692437645167e-21,-8.122082665288441e-36,0.001010101055726409,-0.00020202020823489875,-0.00025252526393160224,2.244383339926448e-20,-1.4585678416963728e-22,5.0505052058724687e-05,0.0,-9.71203823970377e-21,-5.61095834981612e-21,1.6195664996154368e-34,0.0025252525229007006,-0.0005050505278632045,0.0,-0.0025252525229007006,0.0,0.0,0.0005050505278632045,0.0,0.0,-0.0,0.0009182736393995583,3.884815295881508e-20,-0.0007870916742831469,4.57560208430597e-18,-4.546185454385007e-22,-9.71203823970377e-21,0.0,9.838645928539336e-05,-2.700532217965786e-19,-1.7476947019574043e-18,0.0030303029343485832,1.109066963204907e-20,-0.0007575757335871458,-0.0030303029343485832,1.0531692437645167e-21,-5.61095834981612e-21,0.0,-2.700532217965786e-19,0.0007575757335871458,1.0526391316595888e-18,0.005050505045801401,-5.602705459736497e-34,1.2928918173806916e-17,-0.03030303120613098,-8.122082665288441e-36,1.6195664996154368e-34,-0.0,-1.7476947019574043e-18,1.0526391316595888e-18,0.01515151560306549,11.0,9.0,4.0,0.07310623675584793,-0.011421911418437958,-0.013539944775402546,-0.02545454539358616,0.0004856254963669926,0.0007575757335871458,0.0015151514671742916,0.000688705244101584,0.001818181830458343,0.0025252525229007006,-0.011421911418437958,0.004550634417682886,0.0007575757335871458,0.0015151514671742916,-0.00032375031150877476,-0.00015151515253819525,-0.0003030303050763905,-4.560568541961913e-20,1.558963105445774e-18,9.71450093087075e-18,-0.013539944775402546,0.0007575757335871458,0.00673012575134635,0.001818181830458343,1.7979150599933948e-19,-0.00018939393339678645,6.088296428598284e-19,-0.0005903187557123601,-0.00045454545761458576,8.340038599898551e-18,-0.02545454539358616,0.0015151514671742916,0.001818181830458343,0.03464646637439728,3.4760242785943296e-18,2.310716013072235e-18,-0.001010101055726409,3.265958660109191e-18,-0.001212121220305562,-0.007575757801532745,0.0004856254963669926,-0.00032375031150877476,1.7979150599933948e-19,3.4760242785943296e-18,3.237503187847324e-05,-1.6443665972506203e-21,-1.0532462951538998e-19,1.0019398845165441e-21,-1.2091909724998569e-19,-7.548136309892721e-19,0.0007575757335871458,-0.00015151515253819525,-0.00018939393339678645,2.310716013072235e-18,-1.6443665972506203e-21,3.787878813454881e-05,-6.808807965259536e-20,2.1717822468622943e-20,-8.044067793257943e-20,-5.046468133954457e-19,0.0015151514671742916,-0.0003030303050763905,6.088296428598284e-19,-0.001010101055726409,-1.0532462951538998e-19,-6.808807965259536e-20,0.00020202020823489875,-3.003592647464918e-20,-1.8595470919002418e-20,-9.8518193232043e-20,0.000688705244101584,-4.560568541961913e-20,-0.0005903187557123601,3.265958660109191e-18,1.0019398845165441e-21,2.1717822468622943e-20,-3.003592647464918e-20,7.378984446404502e-05,-9.843615371738393e-20,-8.083087970703601e-19,0.001818181830458343,1.558963105445774e-18,-0.00045454545761458576,-0.001212121220305562,-1.2091909724998569e-19,-8.044067793257943e-20,-1.8595470919002418e-20,-9.843615371738393e-20,0.0003030303050763905,4.3311057966063475e-19,0.0025252525229007006,9.71450093087075e-18,8.340038599898551e-18,-0.007575757801532745,-7.548136309892721e-19,-5.046468133954457e-19,-9.8518193232043e-20,-8.083087970703601e-19,4.3311057966063475e-19,0.0025252525229007006,11.0,9.0,5.0,0.061734627932310104,-0.009339549578726292,-0.01107438001781702,-0.017691196873784065,0.0003885003970935941,0.000606060610152781,0.001010101055726409,0.0005509642069227993,0.001212121220305562,0.0014430014416575432,-0.009339549578726292,0.0036809116136282682,0.000606060610152781,0.001010101055726409,-0.0002590002550277859,-0.00012121212057536468,-0.00020202020823489875,9.486769009248164e-20,1.3552527156068805e-20,2.232624226533944e-34,-0.01107438001781702,0.000606060610152781,0.005444706883281469,0.001212121220305562,-1.55996537692955e-20,-0.00015151515253819525,-5.529020213249704e-21,-0.0004722550220321864,-0.0003030303050763905,-1.3763907991727903e-18,-0.017691196873784065,0.001010101055726409,0.001212121220305562,0.017503608018159866,-3.173222511057682e-20,-4.9558248423255865e-21,-0.0005050505278632045,-8.402566836762659e-19,-0.000606060610152781,-0.0028860028833150864,0.0003885003970935941,-0.0002590002550277859,-1.55996537692955e-20,-3.173222511057682e-20,2.590002623037435e-05,2.543115094505999e-21,4.167602094022462e-21,-1.022639998566327e-21,1.0512291634304268e-22,9.25924843146521e-37,0.000606060610152781,-0.00012121212057536468,-0.00015151515253819525,-4.9558248423255865e-21,2.543115094505999e-21,3.030303014384117e-05,1.0170216933340194e-21,-2.371692252312041e-20,-1.6940658945086007e-21,-5.900308372146675e-35,0.001010101055726409,-0.00020202020823489875,-5.529020213249704e-21,-0.0005050505278632045,4.167602094022462e-21,1.0170216933340194e-21,0.00010101010411744937,5.298349812472586e-22,5.0209614533011454e-23,1.3842206493634994e-36,0.0005509642069227993,9.486769009248164e-20,-0.0004722550220321864,-8.402566836762659e-19,-1.022639998566327e-21,-2.371692252312041e-20,5.298349812472586e-22,5.90318777540233e-05,6.098637220230962e-20,1.4980239600865624e-19,0.001212121220305562,1.3552527156068805e-20,-0.0003030303050763905,-0.000606060610152781,1.0512291634304268e-22,-1.6940658945086007e-21,5.0209614533011454e-23,6.098637220230962e-20,0.00015151515253819525,8.898580262707313e-20,0.0014430014416575432,2.232624226533944e-34,-1.3763907991727903e-18,-0.0028860028833150864,9.25924843146521e-37,-5.900308372146675e-35,1.3842206493634994e-36,1.4980239600865624e-19,8.898580262707313e-20,0.0007215007208287716,11.0,9.0,6.0,0.05346572771668434,-0.007903208024799824,-0.009372950531542301,-0.01302308775484562,0.00032375031150877476,0.0005050505278632045,0.0007215007208287716,0.00045913681969977915,0.0008658008882775903,0.0009018759010359645,-0.007903208024799824,0.0030914763920009136,0.0005050505278632045,0.0007215007208287716,-0.00021583355555776507,-0.00010101010411744937,-0.00014430013834498823,2.0328790734103208e-20,6.776263578034403e-21,-1.375848982930922e-34,-0.009372950531542301,0.0005050505278632045,0.004573330748826265,0.0008658008882775903,3.3507065111121868e-21,-0.00012626263196580112,-1.161414414772439e-22,-0.00039354583714157343,-0.00021645022206939757,1.165575961847832e-18,-0.01302308775484562,0.0007215007208287716,0.0008658008882775903,0.010169552639126778,9.911887983753422e-21,3.532582646348892e-21,-0.00028860027668997645,1.111307226797642e-18,-0.00034632033202797174,-0.0013528139097616076,0.00032375031150877476,-0.00021583355555776507,3.3507065111121868e-21,9.911887983753422e-21,2.1583355191978626e-05,-1.5818640748791285e-21,-1.7649598774277267e-21,7.026862448056478e-22,-2.226672617432444e-22,-5.954310442000347e-37,0.0005050505278632045,-0.00010101010411744937,-0.00012626263196580112,3.532582646348892e-21,-1.5818640748791285e-21,2.5252526029362343e-05,-5.116621251023142e-24,-6.776263578034403e-21,-8.470329472543003e-22,3.6462793003597816e-35,0.0007215007208287716,-0.00014430013834498823,-1.161414414772439e-22,-0.00028860027668997645,-1.7649598774277267e-21,-5.116621251023142e-24,5.77200589759741e-05,-1.5947910249370148e-23,1.1181642636739193e-22,-7.3901373489016366e-37,0.00045913681969977915,2.0328790734103208e-20,-0.00039354583714157343,1.111307226797642e-18,7.026862448056478e-22,-6.776263578034403e-21,-1.5947910249370148e-23,4.919322964269668e-05,-6.437450399132683e-20,-1.7164858495300262e-19,0.0008658008882775903,6.776263578034403e-21,-0.00021645022206939757,-0.00034632033202797174,-2.226672617432444e-22,-8.470329472543003e-22,1.1181642636739193e-22,-6.437450399132683e-20,8.658008300699294e-05,8.304506901589971e-20,0.0009018759010359645,-1.375848982930922e-34,1.165575961847832e-18,-0.0013528139097616076,-5.954310442000347e-37,3.6462793003597816e-35,-7.3901373489016366e-37,-1.7164858495300262e-19,8.304506901589971e-20,0.00027056277031078935,11.0,9.0,7.0,0.047169413417577744,-0.00685148173943162,-0.00812672171741724,-0.009992784820497036,0.0002775002794805914,0.00043290044413879514,0.0005411255406215787,0.00039354583714157343,0.0006493506371043622,0.0006012506200931966,-0.00685148173943162,0.002665297593921423,0.00043290044413879514,0.0005411255406215787,-0.00018500018632039428,-8.658008300699294e-05,-0.00010822511103469878,-6.098637220230962e-20,-0.0,-9.189622237982568e-35,-0.00812672171741724,0.00043290044413879514,0.003943189047276974,0.0006493506371043622,4.6827316477673445e-21,-0.00010822511103469878,2.608166710452186e-21,-0.00033732500742189586,-0.00016233765927609056,-5.05063453930231e-19,-0.009992784820497036,0.0005411255406215787,0.0006493506371043622,0.0064574312418699265,1.448134435521502e-20,6.208943289722686e-21,-0.0001803751802071929,-4.54009659728305e-19,-0.00021645022206939757,-0.0007215007208287716,0.0002775002794805914,-0.00018500018632039428,4.6827316477673445e-21,1.448134435521502e-20,1.850001899583731e-05,-1.1708292235516493e-21,-2.988059908083534e-21,9.572200413753871e-23,1.147389477619568e-22,-0.0,0.00043290044413879514,-8.658008300699294e-05,-0.00010822511103469878,6.208943289722686e-21,-1.1708292235516493e-21,2.1645020751748234e-05,-5.216333521878568e-22,1.3552527156068805e-20,0.0,2.297405559495642e-35,0.0005411255406215787,-0.00010822511103469878,2.608166710452186e-21,-0.0001803751802071929,-2.988059908083534e-21,-5.216333521878568e-22,3.607503458624706e-05,-2.82118644197349e-37,0.0,-0.0,0.00039354583714157343,-6.098637220230962e-20,-0.00033732500742189586,-4.54009659728305e-19,9.572200413753871e-23,1.3552527156068805e-20,-2.82118644197349e-37,4.216562592773698e-05,3.218725199566341e-20,5.4095311464889347e-20,0.0006493506371043622,-0.0,-0.00016233765927609056,-0.00021645022206939757,1.147389477619568e-22,0.0,0.0,3.218725199566341e-20,5.411255551734939e-05,2.4100322352625872e-20,0.0006012506200931966,-9.189622237982568e-35,-5.05063453930231e-19,-0.0007215007208287716,-0.0,2.297405559495642e-35,-0.0,5.4095311464889347e-20,2.4100322352625872e-20,0.0001202501225634478,11.0,9.0,8.0,0.0422096848487854,-0.006047655828297138,-0.007174012716859579,-0.007912457920610905,0.0002428127481834963,0.0003787878667935729,0.0004208754107821733,0.000344352622050792,0.0005050505278632045,0.0004208754107821733,-0.006047655828297138,0.00234265741892159,0.0003787878667935729,0.0004208754107821733,-0.00016187515575438738,-7.575757626909763e-05,-8.417508070124313e-05,6.776263578034403e-20,4.641740550953566e-19,1.3886841506414003e-18,-0.007174012716859579,0.0003787878667935729,0.0034660729579627514,0.0005050505278632045,9.614402977765096e-20,-9.469696669839323e-05,4.599855226661178e-19,-0.00029515937785618007,-0.00012626263196580112,9.043052785062469e-19,-0.007912457920610905,0.0004208754107821733,0.0005050505278632045,0.004365079570561647,8.777293095934135e-19,5.830491632023296e-19,-0.0001202501225634478,1.0232158002831948e-18,-0.00014430013834498823,-0.0004208754107821733,0.0002428127481834963,-0.00016187515575438738,9.614402977765096e-20,8.777293095934135e-19,1.618751593923662e-05,1.2348449957095213e-22,-2.56683369077739e-20,3.8488677551381865e-22,-2.859643187600231e-20,-8.386817834887533e-20,0.0003787878667935729,-7.575757626909763e-05,-9.469696669839323e-05,5.830491632023296e-19,1.2348449957095213e-22,1.8939394067274407e-05,-1.589075672142881e-20,1.5246593050577406e-20,-1.9905274260476058e-20,-5.607187246328188e-20,0.0004208754107821733,-8.417508070124313e-05,4.599855226661178e-19,-0.0001202501225634478,-2.56683369077739e-20,-1.589075672142881e-20,2.405002487648744e-05,-3.537001034822018e-20,-2.7877618386042264e-20,-9.306139905330432e-20,0.000344352622050792,6.776263578034403e-20,-0.00029515937785618007,1.0232158002831948e-18,3.8488677551381865e-22,1.5246593050577406e-20,-3.537001034822018e-20,3.689492223202251e-05,-4.0657581468206416e-20,-8.738472992799138e-20,0.0005050505278632045,4.641740550953566e-19,-0.00012626263196580112,-0.00014430013834498823,-2.859643187600231e-20,-1.9905274260476058e-20,-2.7877618386042264e-20,-4.0657581468206416e-20,3.607503458624706e-05,2.146628039863726e-20,0.0004208754107821733,1.3886841506414003e-18,9.043052785062469e-19,-0.0004208754107821733,-8.386817834887533e-20,-5.607187246328188e-20,-9.306139905330432e-20,-8.738472992799138e-20,2.146628039863726e-20,6.01250612817239e-05,11.0,9.0,9.0,0.03819924220442772,-0.005413105245679617,-0.006421793717890978,-0.006421793717890978,0.00021583355555776507,0.00033670032280497253,0.00033670032280497253,0.0003060912131331861,0.0004040404164697975,0.0003060912131331861,-0.005413105245679617,0.0020898443181067705,0.00033670032280497253,0.00033670032280497253,-0.00014388903218787163,-6.73400645609945e-05,-6.73400645609945e-05,-5.759824041329242e-20,-1.5900389457766252e-21,-6.098637220230962e-20,-0.006421793717890978,0.00033670032280497253,0.0030921772122383118,0.0004040404164697975,9.917081692492103e-22,-8.417508070124313e-05,0.0,-0.00026236390112899244,-0.00010101010411744937,-2.439454888092385e-19,-0.006421793717890978,0.00033670032280497253,0.0004040404164697975,0.0030921772122383118,1.4042116902555938e-21,-3.3322874041470686e-21,-8.417508070124313e-05,-3.081393830836932e-19,-0.00010101010411744937,-0.00026236390112899244,0.00021583355555776507,-0.00014388903218787163,9.917081692492103e-22,1.4042116902555938e-21,1.4388902854989283e-05,-1.2210831594457597e-23,-8.133415436512013e-22,-3.8059733487534854e-23,-1.5043862714668023e-22,3.7773391493980282e-22,0.00033670032280497253,-6.73400645609945e-05,-8.417508070124313e-05,-3.3322874041470686e-21,-1.2210831594457597e-23,1.6835016140248626e-05,-1.7398644071188952e-22,1.4399560103323106e-20,9.55886563522976e-22,-1.205994269812799e-22,0.00033670032280497253,-6.73400645609945e-05,0.0,-8.417508070124313e-05,-8.133415436512013e-22,-1.7398644071188952e-22,1.6835016140248626e-05,0.0,0.0,1.3552527156068805e-20,0.0003060912131331861,-5.759824041329242e-20,-0.00026236390112899244,-3.081393830836932e-19,-3.8059733487534854e-23,1.4399560103323106e-20,0.0,3.2795487641124055e-05,2.541098841762901e-20,2.541098841762901e-20,0.0004040404164697975,-1.5900389457766252e-21,-0.00010101010411744937,-0.00010101010411744937,-1.5043862714668023e-22,9.55886563522976e-22,0.0,2.541098841762901e-20,2.5252526029362343e-05,1.0164395367051604e-20,0.0003060912131331861,-6.098637220230962e-20,-2.439454888092385e-19,-0.00026236390112899244,3.7773391493980282e-22,-1.205994269812799e-22,1.3552527156068805e-20,2.541098841762901e-20,1.0164395367051604e-20,3.2795487641124055e-05,11.0,9.0,10.0,0.03488804027438164,-0.0048993430100381374,-0.005812671966850758,-0.005316804628819227,0.00019425019854679704,0.0003030303050763905,0.0002754821034613997,0.0002754821034613997,0.00033057850669138134,0.00022956840984988958,-0.0048993430100381374,0.00188636954408139,0.0003030303050763905,0.0002754821034613997,-0.00012950012751389295,-6.060606028768234e-05,-5.509641778189689e-05,4.404571325722362e-20,-2.078677010467699e-21,0.0,-0.005812671966850758,0.0003030303050763905,0.0027912238147109747,0.00033057850669138134,1.079427886322653e-21,-7.575757626909763e-05,1.6940658945086007e-21,-0.0002361275110160932,-8.264462667284533e-05,-1.7957098481791167e-19,-0.005316804628819227,0.0002754821034613997,0.00033057850669138134,0.002271962119266391,-1.6432243771469582e-21,2.7378611987996847e-21,-6.12182411714457e-05,-2.2369210075784833e-19,-7.346189522650093e-05,-0.000172176311025396,0.00019425019854679704,-0.00012950012751389295,1.079427886322653e-21,-1.6432243771469582e-21,1.2950013115187176e-05,-6.499943121958465e-23,5.888755528263082e-22,-2.0259562371032027e-22,2.214073562142978e-22,-2.251835891913801e-22,0.0003030303050763905,-6.060606028768234e-05,-7.575757626909763e-05,2.7378611987996847e-21,-6.499943121958465e-23,1.5151515071920585e-05,-1.2671150865315782e-22,-1.1011428314305904e-20,-9.355592462043389e-22,2.9580703699622604e-22,0.0002754821034613997,-5.509641778189689e-05,1.6940658945086007e-21,-6.12182411714457e-05,5.888755528263082e-22,-1.2671150865315782e-22,1.224364859808702e-05,-3.1763735522036263e-22,0.0,0.0,0.0002754821034613997,4.404571325722362e-20,-0.0002361275110160932,-2.2369210075784833e-19,-2.0259562371032027e-22,-1.1011428314305904e-20,-3.1763735522036263e-22,2.951593887701165e-05,1.5246593050577406e-20,1.8634724839594607e-20,0.00033057850669138134,-2.078677010467699e-21,-8.264462667284533e-05,-7.346189522650093e-05,2.214073562142978e-22,-9.355592462043389e-22,0.0,1.5246593050577406e-20,1.8365473806625232e-05,5.929230630780102e-21,0.00022956840984988958,0.0,-1.7957098481791167e-19,-0.000172176311025396,-2.251835891913801e-22,2.9580703699622604e-22,0.0,1.8634724839594607e-20,5.929230630780102e-21,1.913070082082413e-05,11.0,9.0,11.0,0.0321071483194828,-0.004474818240851164,-0.005309291183948517,-0.004474818240851164,0.00017659108561929315,0.0002754821034613997,0.00022956840984988958,0.0002504382573533803,0.0002754821034613997,0.00017659108561929315,-0.004474818240851164,0.0017190553480759263,0.0002754821034613997,0.00022956840984988958,-0.0001177273879875429,-5.509641778189689e-05,-4.591368269757368e-05,2.371692252312041e-20,1.5064960263152743e-21,6.776263578034403e-21,-0.005309291183948517,0.0002754821034613997,0.002543737180531025,0.0002754821034613997,-4.269678221290262e-22,-6.887052586534992e-05,-8.470329472543003e-22,-0.00021466136968228966,-6.887052586534992e-05,-1.4230153513872246e-19,-0.004474818240851164,0.00022956840984988958,0.0002754821034613997,0.0017190553480759263,-4.1662050150484286e-21,-8.276137413662047e-22,-4.591368269757368e-05,-1.4888227389946464e-19,-5.509641778189689e-05,-0.0001177273879875429,0.00017659108561929315,-0.0001177273879875429,-4.269678221290262e-22,-4.1662050150484286e-21,1.177273861685535e-05,1.5949541613722145e-23,8.714482048926651e-22,4.97128561992193e-23,-1.6476366592055894e-23,-1.1607667757464706e-23,0.0002754821034613997,-5.509641778189689e-05,-6.887052586534992e-05,-8.276137413662047e-22,1.5949541613722145e-23,1.3774104445474222e-05,1.2798358157270654e-22,-6.776263578034403e-21,-3.969911077306278e-22,2.1459821180301763e-22,0.00022956840984988958,-4.591368269757368e-05,-8.470329472543003e-22,-4.591368269757368e-05,8.714482048926651e-22,1.2798358157270654e-22,9.182736903312616e-06,2.117582368135751e-22,0.0,-4.235164736271502e-22,0.0002504382573533803,2.371692252312041e-20,-0.00021466136968228966,-1.4888227389946464e-19,4.97128561992193e-23,-6.776263578034403e-21,2.117582368135751e-22,2.6832671210286207e-05,8.470329472543003e-22,1.4823076576950256e-20,0.0002754821034613997,1.5064960263152743e-21,-6.887052586534992e-05,-5.509641778189689e-05,-1.6476366592055894e-23,-3.969911077306278e-22,0.0,8.470329472543003e-22,1.3774104445474222e-05,5.082197683525802e-21,0.00017659108561929315,6.776263578034403e-21,-1.4230153513872246e-19,-0.0001177273879875429,-1.1607667757464706e-23,2.1459821180301763e-22,-4.235164736271502e-22,1.4823076576950256e-20,5.082197683525802e-21,1.177273861685535e-05,11.0,9.0,12.0,0.02973819151520729,-0.004118103999644518,-0.00488627515733242,-0.0038184039294719696,0.00016187515575438738,0.00025252526393160224,0.00019425019854679704,0.00022956840984988958,0.00023310023243539035,0.0001387501397402957,-0.004118103999644518,0.0015790382167324424,0.00025252526393160224,0.00019425019854679704,-0.00010791677777888253,-5.0505052058724687e-05,-3.885003752657212e-05,-2.748492333074079e-35,1.2319517315882092e-21,8.470329472543003e-21,-0.00488627515733242,0.00025252526393160224,0.002336615463718772,0.00023310023243539035,3.461725418037062e-21,-6.313131598290056e-05,2.541098841762901e-21,-0.00019677291857078671,-5.827505810884759e-05,1.8126505071242027e-19,-0.0038184039294719696,0.00019425019854679704,0.00023310023243539035,0.001332505838945508,2.9535990306208208e-21,9.362649548592623e-22,-3.5318218579050153e-05,3.036273454867637e-19,-4.23818601120729e-05,-8.325008093379438e-05,0.00016187515575438738,-0.00010791677777888253,3.461725418037062e-21,2.9535990306208208e-21,1.0791677595989313e-05,-7.008983956936039e-22,-3.816416415634546e-22,5.805853519573462e-37,7.775753822248295e-24,-9.085497216604025e-23,0.00025252526393160224,-5.0505052058724687e-05,-6.313131598290056e-05,9.362649548592623e-22,-7.008983956936039e-22,1.2626263014681172e-05,-1.8725299854491716e-22,-0.0,5.877471754111438e-39,4.70197740328915e-38,0.00019425019854679704,-3.885003752657212e-05,2.541098841762901e-21,-3.5318218579050153e-05,-3.816416415634546e-22,-1.8725299854491716e-22,7.06364335201215e-06,4.513898307157584e-36,-2.117582368135751e-22,-1.2705494208814505e-21,0.00022956840984988958,-2.748492333074079e-35,-0.00019677291857078671,3.036273454867637e-19,5.805853519573462e-37,-0.0,4.513898307157584e-36,2.459661482134834e-05,-1.5169649097738636e-20,-2.2086250652158622e-20,0.00023310023243539035,1.2319517315882092e-21,-5.827505810884759e-05,-4.23818601120729e-05,7.775753822248295e-24,5.877471754111438e-39,-2.117582368135751e-22,-1.5169649097738636e-20,1.0595465028018225e-05,-4.235164736271502e-22,0.0001387501397402957,8.470329472543003e-21,1.8126505071242027e-19,-8.325008093379438e-05,-9.085497216604025e-23,4.70197740328915e-38,-1.2705494208814505e-21,-2.2086250652158622e-20,-4.235164736271502e-22,7.568189175799489e-06,11.0,9.0,13.0,0.02769569121301174,-0.0038141345139592886,-0.004525777418166399,-0.0032967033330351114,0.00014942322741262615,0.00023310023243539035,0.00016650016186758876,0.0002119092969223857,0.00019980019715148956,0.00011100011033704504,-0.0038141345139592886,0.0014601353323087096,0.00023310023243539035,0.00016650016186758876,-9.961548494175076e-05,-4.662004721467383e-05,-3.330003164592199e-05,-2.7933364668058027e-35,-3.458655751995568e-22,-1.1858461261560205e-20,-0.004525777418166399,0.00023310023243539035,0.0021607179660350084,0.00019980019715148956,-2.9311811940380246e-22,-5.827505810884759e-05,0.0,-0.00018163654021918774,-4.995004928787239e-05,-6.945670167485263e-20,-0.0032967033330351114,0.00016650016186758876,0.00019980019715148956,0.0010539965005591512,3.229420598438522e-22,-0.0,-2.775002758426126e-05,-1.487655768096093e-19,-3.330003164592199e-05,-6.054551340639591e-05,0.00014942322741262615,-9.961548494175076e-05,-2.9311811940380246e-22,3.229420598438522e-22,9.961548130377196e-06,0.0,-1.5621631068083496e-23,7.534928979013295e-39,4.885301990063374e-23,-3.4083558980858866e-23,0.00023310023243539035,-4.662004721467383e-05,-5.827505810884759e-05,-0.0,0.0,1.1655011803668458e-05,0.0,0.0,0.0,0.0,0.00016650016186758876,-3.330003164592199e-05,0.0,-2.775002758426126e-05,-1.5621631068083496e-23,0.0,5.550005425902782e-06,4.137740114894452e-36,0.0,2.117582368135751e-21,0.0002119092969223857,-2.7933364668058027e-35,-0.00018163654021918774,-1.487655768096093e-19,7.534928979013295e-39,0.0,4.137740114894452e-36,2.2704567527398467e-05,1.100216292209303e-20,8.729743490838576e-21,0.00019980019715148956,-3.458655751995568e-22,-4.995004928787239e-05,-3.330003164592199e-05,4.885301990063374e-23,0.0,0.0,1.100216292209303e-20,8.325007911480498e-06,0.0,0.00011100011033704504,-1.1858461261560205e-20,-6.945670167485263e-20,-6.054551340639591e-05,-3.4083558980858866e-23,0.0,2.117582368135751e-21,8.729743490838576e-21,0.0,5.045459602115443e-06,11.0,9.0,14.0,0.025916356593370438,-0.0035520035307854414,-0.004214875865727663,-0.002875180449336767,0.0001387501397402957,0.00021645022206939757,0.00014430013834498823,0.00019677291857078671,0.00017316016601398587,9.018759010359645e-05,-0.0035520035307854414,0.0013579013757407665,0.00021645022206939757,0.00014430013834498823,-9.250009316019714e-05,-4.329004150349647e-05,-2.886002948798705e-05,1.2037062152420224e-35,0.0,6.776263578034403e-21,-0.004214875865727663,0.00021645022206939757,0.0020094732753932476,0.00017316016601398587,0.0,-5.411255551734939e-05,1.6940658945086007e-21,-0.00016866250371094793,-4.329004150349647e-05,-5.759824041329242e-20,-0.002875180449336767,0.00014430013834498823,0.00017316016601398587,0.0008481796248815954,-0.0,-0.0,-2.2200021703611128e-05,-1.2397797238111557e-19,-2.6640027499524876e-05,-4.5093795051798224e-05,0.0001387501397402957,-9.250009316019714e-05,0.0,-0.0,9.250009497918654e-06,0.0,0.0,0.0,0.0,0.0,0.00021645022206939757,-4.329004150349647e-05,-5.411255551734939e-05,-0.0,0.0,1.0822510375874117e-05,0.0,0.0,0.0,0.0,0.00014430013834498823,-2.886002948798705e-05,1.6940658945086007e-21,-2.2200021703611128e-05,0.0,0.0,4.440004431671696e-06,-2.256949153578792e-36,-1.0587911840678754e-22,-1.0587911840678754e-21,0.00019677291857078671,1.2037062152420224e-35,-0.00016866250371094793,-1.2397797238111557e-19,0.0,0.0,-2.256949153578792e-36,2.108281296386849e-05,8.173035590512617e-21,7.02198711095737e-21,0.00017316016601398587,0.0,-4.329004150349647e-05,-2.6640027499524876e-05,0.0,0.0,-1.0587911840678754e-22,8.173035590512617e-21,6.660006874881219e-06,4.235164736271502e-22,9.018759010359645e-05,6.776263578034403e-21,-5.759824041329242e-20,-4.5093795051798224e-05,0.0,0.0,-1.0587911840678754e-21,7.02198711095737e-21,4.235164736271502e-22,3.4687534480326576e-06,11.0,9.0,15.0,0.024352295324206352,-0.0033236208837479353,-0.00394398532807827,-0.0025297089014202356,0.00012950012751389295,0.00020202020823489875,0.00012626263196580112,0.0001836547307902947,0.00015151515253819525,7.427213131450117e-05,-0.0033236208837479353,0.0012690580915659666,0.00020202020823489875,0.00012626263196580112,-8.63334207679145e-05,-4.0404040191788226e-05,-2.5252526029362343e-05,3.009265538105056e-35,0.0,1.3552527156068805e-20,-0.00394398532807827,0.00020202020823489875,0.0018780336249619722,0.00015151515253819525,0.0,-5.0505052058724687e-05,7.623296525288703e-21,-0.00015741834067739546,-3.787878813454881e-05,-4.743384504624082e-20,-0.0025297089014202356,0.00012626263196580112,0.00015151515253819525,0.0006927549839019775,-0.0,8.410780546374855e-21,-1.803751729312353e-05,-8.026742236834078e-20,-2.1645020751748234e-05,-3.4279444662388414e-05,0.00012950012751389295,-8.63334207679145e-05,0.0,-0.0,8.63334207679145e-06,0.0,0.0,0.0,0.0,0.0,0.00020202020823489875,-4.0404040191788226e-05,-5.0505052058724687e-05,8.410780546374855e-21,0.0,1.0101010047947057e-05,-1.6821560890801318e-21,0.0,-4.70197740328915e-38,8.46355932592047e-37,0.00012626263196580112,-2.5252526029362343e-05,7.623296525288703e-21,-1.803751729312353e-05,0.0,-1.6821560890801318e-21,3.607503685998381e-06,-4.513898307157584e-36,0.0,-2.0117032497289633e-21,0.0001836547307902947,3.009265538105056e-35,-0.00015741834067739546,-8.026742236834078e-20,0.0,0.0,-4.513898307157584e-36,1.9677292584674433e-05,-3.76158192263132e-37,5.7333875428225036e-21,0.00015151515253819525,0.0,-3.787878813454881e-05,-2.1645020751748234e-05,0.0,-4.70197740328915e-38,0.0,-3.76158192263132e-37,5.4112551879370585e-06,2.117582368135751e-22,7.427213131450117e-05,1.3552527156068805e-20,-4.743384504624082e-20,-3.4279444662388414e-05,0.0,8.46355932592047e-37,-2.0117032497289633e-21,5.7333875428225036e-21,2.117582368135751e-22,2.4485318590450333e-06,11.0,9.0,16.0,0.022966597229242325,-0.003122857538983226,-0.0037058419547975063,-0.002243018476292491,0.00012140637409174815,0.00018939393339678645,0.00011140819697175175,0.000172176311025396,0.0001336898421868682,6.18934427620843e-05,-0.003122857538983226,0.0011911345645785332,0.00018939393339678645,0.00011140819697175175,-8.093757787719369e-05,-3.787878813454881e-05,-2.228163975814823e-05,6.553854744599354e-20,1.1434944787933055e-19,1.6178329292557136e-19,-0.0037058419547975063,0.00018939393339678645,0.0017627454362809658,0.0001336898421868682,5.3280961845353694e-20,-4.734848334919661e-05,1.139259314057034e-19,-0.00014757968892809004,-3.342246054671705e-05,1.2366681029912785e-19,-0.002243018476292491,0.00011140819697175175,0.0001336898421868682,0.0005731686833314598,2.284315613244416e-19,1.52722808860063e-19,-1.4854426808597054e-05,2.6604245565085623e-19,-1.7825312170316465e-05,-2.6525762223172933e-05,0.00012140637409174815,-8.093757787719369e-05,5.3280961845353694e-20,2.284315613244416e-19,8.09375796961831e-06,6.086639150020133e-35,-5.920107006338227e-21,1.0602898203400829e-34,-7.104128407605873e-21,-1.0571619452227014e-20,0.00018939393339678645,-3.787878813454881e-05,-4.734848334919661e-05,1.52722808860063e-19,6.086639150020133e-35,9.469697033637203e-06,-3.958014398523272e-21,7.088795149787914e-35,-4.749617359007283e-21,-7.067882710256991e-21,0.00011140819697175175,-2.228163975814823e-05,1.139259314057034e-19,-1.4854426808597054e-05,-5.920107006338227e-21,-3.958014398523272e-21,2.970885361719411e-06,-8.738473315916565e-21,-3.1763735522036263e-21,-3.705769144237564e-21,0.000172176311025396,6.553854744599354e-20,-0.00014757968892809004,2.6604245565085623e-19,1.0602898203400829e-34,7.088795149787914e-35,-8.738473315916565e-21,1.8447461116011254e-05,-1.0486167817541165e-20,-1.0861897647128472e-20,0.0001336898421868682,1.1434944787933055e-19,-3.342246054671705e-05,-1.7825312170316465e-05,-7.104128407605873e-21,-4.749617359007283e-21,-3.1763735522036263e-21,-1.0486167817541165e-20,4.456328042579116e-06,-1.0587911840678754e-22,6.18934427620843e-05,1.6178329292557136e-19,1.2366681029912785e-19,-2.6525762223172933e-05,-1.0571619452227014e-20,-7.067882710256991e-21,-3.705769144237564e-21,-1.0861897647128472e-20,-1.0587911840678754e-22,1.7683840951576713e-06,11.0,10.0,3.0,0.08222610503435135,-0.013334392569959164,-0.014462810009717941,-0.036157023161649704,0.0005827505956403911,0.0008264462812803686,0.0022727272007614374,0.000688705244101584,0.002479338785633445,0.004545454401522875,-0.013334392569959164,0.005386381410062313,0.0008264462812803686,0.0022727272007614374,-0.0003885003970935941,-0.00016528925334569067,-0.00045454545761458576,-2.22264739218577e-20,0.0,-0.0,-0.014462810009717941,0.0008264462812803686,0.006485307589173317,0.002479338785633445,5.206496514742883e-21,-0.0001836547307902947,-8.624873306596905e-20,-0.0005165289039723575,-0.0005509642069227993,-0.0,-0.036157023161649704,0.0022727272007614374,0.002479338785633445,0.08161157369613647,2.962400991664338e-20,-8.43119930592527e-20,-0.0022727272007614374,-9.971766287748493e-22,-0.002479338785633445,-0.027272727340459824,0.0005827505956403911,-0.0003885003970935941,5.206496514742883e-21,2.962400991664338e-20,3.885003752657212e-05,-1.611294847044016e-22,-5.924801902549319e-21,-4.531766844085995e-22,0.0,-0.0,0.0008264462812803686,-0.00016528925334569067,-0.0001836547307902947,-8.43119930592527e-20,-1.611294847044016e-22,3.6730947613250464e-05,1.6862398288733114e-20,5.362344127613836e-21,0.0,-0.0,0.0022727272007614374,-0.00045454545761458576,-8.624873306596905e-20,-0.0022727272007614374,-5.924801902549319e-21,1.6862398288733114e-20,0.00045454545761458576,1.9943532070626007e-22,0.0,-0.0,0.000688705244101584,-2.22264739218577e-20,-0.0005165289039723575,-9.971766287748493e-22,-4.531766844085995e-22,5.362344127613836e-21,1.9943532070626007e-22,5.7392102462472394e-05,0.0,-0.0,0.002479338785633445,0.0,-0.0005509642069227993,-0.002479338785633445,0.0,0.0,0.0,0.0,0.0005509642069227993,-0.0,0.004545454401522875,-0.0,-0.0,-0.027272727340459824,-0.0,-0.0,-0.0,-0.0,-0.0,0.013636363670229912,11.0,10.0,4.0,0.06686586141586304,-0.01034170389175415,-0.011219007894396782,-0.023057851940393448,0.0004370629321783781,0.0006198346964083612,0.0013636363437399268,0.0005165289039723575,0.0014876032946631312,0.0022727272007614374,-0.01034170389175415,0.00410796795040369,0.0006198346964083612,0.0013636363437399268,-0.00029137529782019556,-0.0001239669363712892,-0.00027272728038951755,1.2138922018125137e-19,6.921763355312773e-21,-0.0,-0.011219007894396782,0.0006198346964083612,0.004946625325828791,0.0014876032946631312,-4.020618803858395e-21,-0.00013774105173069984,4.4408118531924145e-20,-0.00038739669253118336,-0.00033057850669138134,-0.0,-0.023057851940393448,0.0013636363437399268,0.0014876032946631312,0.031280990689992905,2.0575297826786113e-21,5.3598705829324894e-20,-0.0009090909152291715,3.8533714466119823e-20,-0.0009917354909703135,-0.006818181835114956,0.0004370629321783781,-0.00029137529782019556,-4.020618803858395e-21,2.0575297826786113e-21,2.9137529054423794e-05,1.814377860576018e-21,-4.9132725996253595e-22,-5.086552902541993e-22,8.869035677477552e-23,-0.0,0.0006198346964083612,-0.0001239669363712892,-0.00013774105173069984,5.3598705829324894e-20,1.814377860576018e-21,2.7548208890948445e-05,-9.16552550198624e-21,-2.5786890307246077e-20,-1.7269059341792362e-21,-0.0,0.0013636363437399268,-0.00027272728038951755,4.4408118531924145e-20,-0.0009090909152291715,-4.9132725996253595e-22,-9.16552550198624e-21,0.0001818181772250682,1.571682796222631e-22,-7.117883743655775e-23,-0.0,0.0005165289039723575,1.2138922018125137e-19,-0.00038739669253118336,3.8533714466119823e-20,-5.086552902541993e-22,-2.5786890307246077e-20,1.571682796222631e-22,4.3044077756349e-05,-8.73767844704669e-21,-0.0,0.0014876032946631312,6.921763355312773e-21,-0.00033057850669138134,-0.0009917354909703135,8.869035677477552e-23,-1.7269059341792362e-21,-7.117883743655775e-23,-8.73767844704669e-21,0.00022038567112758756,-0.0,0.0022727272007614374,-0.0,-0.0,-0.006818181835114956,-0.0,-0.0,-0.0,-0.0,-0.0,0.0022727272007614374,11.0,10.0,5.0,0.05643719807267189,-0.008455181494355202,-0.009173553436994553,-0.016021251678466797,0.00034965036320500076,0.0004958677454851568,0.0009090909152291715,0.0004132231406401843,0.0009917354909703135,0.0012987012742087245,-0.008455181494355202,0.003322737757116556,0.0004958677454851568,0.0009090909152291715,-0.00023310023243539035,-9.917355055222288e-05,-0.0001818181772250682,-6.776263578034403e-21,0.0,-0.0,-0.009173553436994553,0.0004958677454851568,0.0040013776160776615,0.0009917354909703135,-7.46759996981477e-21,-0.00011019283556379378,2.655499212948692e-20,-0.0003099173482041806,-0.00022038567112758756,-0.0,-0.016021251678466797,0.0009090909152291715,0.0009917354909703135,0.015802834182977676,-2.8309913960154987e-20,3.073003440615774e-20,-0.00045454545761458576,1.3552527156068805e-20,-0.0004958677454851568,-0.002597402548417449,0.00034965036320500076,-0.00023310023243539035,-7.46759996981477e-21,-2.8309913960154987e-20,2.3310023607336916e-05,2.4528255841477084e-21,4.8189102950767214e-21,-4.6300652237637745e-22,1.838286227751124e-22,-0.0,0.0004958677454851568,-9.917355055222288e-05,-0.00011019283556379378,3.073003440615774e-20,2.4528255841477084e-21,2.2038568204152398e-05,-5.9125109195314475e-21,1.6940658945086007e-21,0.0,-0.0,0.0009090909152291715,-0.0001818181772250682,2.655499212948692e-20,-0.00045454545761458576,4.8189102950767214e-21,-5.9125109195314475e-21,9.09090886125341e-05,2.0584243635669064e-22,1.3725474193651976e-22,-0.0,0.0004132231406401843,-6.776263578034403e-21,-0.0003099173482041806,1.3552527156068805e-20,-4.6300652237637745e-22,1.6940658945086007e-21,2.0584243635669064e-22,3.443526293267496e-05,-6.776263578034403e-21,-0.0,0.0009917354909703135,0.0,-0.00022038567112758756,-0.0004958677454851568,1.838286227751124e-22,0.0,1.3725474193651976e-22,-6.776263578034403e-21,0.00011019283556379378,-0.0,0.0012987012742087245,-0.0,-0.0,-0.002597402548417449,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006493506371043622,11.0,10.0,6.0,0.04886098578572273,-0.007154209539294243,-0.00776269193738699,-0.01179161760956049,0.00029137529782019556,0.0004132231406401843,0.0006493506371043622,0.000344352622050792,0.0007083825184963644,0.000811688310932368,-0.007154209539294243,0.00279059330932796,0.0004132231406401843,0.0006493506371043622,-0.00019425019854679704,-8.264462667284533e-05,-0.0001298701245104894,0.0,-3.3881317890172014e-21,-0.0,-0.00776269193738699,0.0004132231406401843,0.0033607175573706627,0.0007083825184963644,3.6109648756336104e-21,-9.182736539514735e-05,-2.9979662037124236e-20,-0.00025826445198617876,-0.00015741834067739546,-0.0,-0.01179161760956049,0.0006493506371043622,0.0007083825184963644,0.009180932305753231,-1.2621305155473793e-20,-3.6910886270693084e-20,-0.0002597402490209788,6.776263578034403e-21,-0.00028335300157777965,-0.0012175324372947216,0.00029137529782019556,-0.00019425019854679704,3.6109648756336104e-21,-1.2621305155473793e-20,1.942501876328606e-05,4.779402525356119e-22,2.3744782919347604e-21,-8.699749913749468e-22,8.949543666020788e-23,-0.0,0.0004132231406401843,-8.264462667284533e-05,-9.182736539514735e-05,-3.6910886270693084e-20,4.779402525356119e-22,1.8365473806625232e-05,6.4480647258230005e-21,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,0.0006493506371043622,-0.0001298701245104894,-2.9979662037124236e-20,-0.0002597402490209788,2.3744782919347604e-21,6.4480647258230005e-21,5.194805271457881e-05,-1.0249559301009875e-22,-1.8801888782057813e-22,-0.0,0.000344352622050792,0.0,-0.00025826445198617876,6.776263578034403e-21,-8.699749913749468e-22,1.6940658945086007e-21,-1.0249559301009875e-22,2.8696051231236197e-05,0.0,-0.0,0.0007083825184963644,-3.3881317890172014e-21,-0.00015741834067739546,-0.00028335300157777965,8.949543666020788e-23,1.6940658945086007e-21,-1.8801888782057813e-22,0.0,6.296733772614971e-05,-0.0,0.000811688310932368,-0.0,-0.0,-0.0012175324372947216,-0.0,-0.0,-0.0,-0.0,-0.0,0.00024350649619009346,11.0,10.0,7.0,0.043095920234918594,-0.006201752927154303,-0.006729634013026953,-0.009046635590493679,0.00024975024280138314,0.0003541912592481822,0.0004870129923801869,0.00029515937785618007,0.000531286874320358,0.0005411255406215787,-0.006201752927154303,0.002405851613730192,0.0003541912592481822,0.0004870129923801869,-0.00016650016186758876,-7.083825039444491e-05,-9.740259702084586e-05,-3.3881317890172014e-21,1.6940658945086007e-21,-0.0,-0.006729634013026953,0.0003541912592481822,0.0028974812012165785,0.000531286874320358,-4.587185420772151e-21,-7.870917033869773e-05,1.7431551864545015e-20,-0.00022136954066809267,-0.0001180637555080466,-0.0,-0.009046635590493679,0.0004870129923801869,0.000531286874320358,0.005829398054629564,-9.617280823126699e-21,1.795111337769495e-20,-0.00016233765927609056,0.0,-0.0001770956296240911,-0.0006493506371043622,0.00024975024280138314,-0.00016650016186758876,-4.587185420772151e-21,-9.617280823126699e-21,1.6650015822960995e-05,8.68095053796271e-22,1.8023100305310153e-21,-1.617835229700331e-23,1.3460671889342283e-22,-0.0,0.0003541912592481822,-7.083825039444491e-05,-7.870917033869773e-05,1.795111337769495e-20,8.68095053796271e-22,1.5741834431537427e-05,-3.48631021135029e-21,-8.470329472543003e-22,-4.235164736271502e-22,-0.0,0.0004870129923801869,-9.740259702084586e-05,1.7431551864545015e-20,-0.00016233765927609056,1.8023100305310153e-21,-3.48631021135029e-21,3.246753112762235e-05,1.88079096131566e-37,9.4039548065783e-38,-0.0,0.00029515937785618007,-3.3881317890172014e-21,-0.00022136954066809267,0.0,-1.617835229700331e-23,-8.470329472543003e-22,1.88079096131566e-37,2.459661482134834e-05,0.0,-0.0,0.000531286874320358,1.6940658945086007e-21,-0.0001180637555080466,-0.0001770956296240911,1.3460671889342283e-22,-4.235164736271502e-22,9.4039548065783e-38,0.0,3.9354585169348866e-05,-0.0,0.0005411255406215787,-0.0,-0.0,-0.0006493506371043622,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010822511103469878,11.0,10.0,8.0,0.03855689615011215,-0.005473881959915161,-0.005940082482993603,-0.007162534631788731,0.00021853146608918905,0.0003099173482041806,0.0003787878667935729,0.00025826445198617876,0.0004132231406401843,0.0003787878667935729,-0.005473881959915161,0.002114590024575591,0.0003099173482041806,0.0003787878667935729,-0.00014568764891009778,-6.19834681856446e-05,-7.575757626909763e-05,5.759824041329242e-20,0.0,-0.0,-0.005940082482993603,0.0003099173482041806,0.0025467744562774897,0.0004132231406401843,4.149988963088765e-21,-6.887052586534992e-05,1.7525367393823027e-20,-0.00019369834626559168,-9.182736539514735e-05,-0.0,-0.007162534631788731,0.0003787878667935729,0.0004132231406401843,0.003940377850085497,-3.22381987533807e-23,1.6312029144526982e-20,-0.00010822511103469878,6.776263578034403e-21,-0.0001180637555080466,-0.0003787878667935729,0.00021853146608918905,-0.00014568764891009778,4.149988963088765e-21,-3.22381987533807e-23,1.4568764527211897e-05,-7.73228988984446e-22,1.8948219640077052e-23,-2.4222832375476048e-23,-1.3889533911655152e-23,-0.0,0.0003099173482041806,-6.19834681856446e-05,-6.887052586534992e-05,1.6312029144526982e-20,-7.73228988984446e-22,1.3774104445474222e-05,-3.505073640323319e-21,-1.2705494208814505e-20,0.0,-0.0,0.0003787878667935729,-7.575757626909763e-05,1.7525367393823027e-20,-0.00010822511103469878,1.8948219640077052e-23,-3.505073640323319e-21,2.1645020751748234e-05,3.197344634236622e-36,-9.4039548065783e-38,-0.0,0.00025826445198617876,5.759824041329242e-20,-0.00019369834626559168,6.776263578034403e-21,-2.4222832375476048e-23,-1.2705494208814505e-20,3.197344634236622e-36,2.15220388781745e-05,-1.6940658945086007e-21,-0.0,0.0004132231406401843,0.0,-9.182736539514735e-05,-0.0001180637555080466,-1.3889533911655152e-23,0.0,-9.4039548065783e-38,-1.6940658945086007e-21,2.6236390112899244e-05,-0.0,0.0003787878667935729,-0.0,-0.0,-0.0003787878667935729,-0.0,-0.0,-0.0,-0.0,-0.0,5.411255551734939e-05,11.0,10.0,9.0,0.03488804027438164,-0.0048993430100381374,-0.005316804628819227,-0.005812671966850758,0.00019425019854679704,0.0002754821034613997,0.0003030303050763905,0.00022956840984988958,0.00033057850669138134,0.0002754821034613997,-0.0048993430100381374,0.00188636954408139,0.0002754821034613997,0.0003030303050763905,-0.00012950012751389295,-5.509641778189689e-05,-6.060606028768234e-05,-3.3881317890172014e-21,2.476177926815846e-20,4.404571325722362e-20,-0.005316804628819227,0.0002754821034613997,0.002271962119266391,0.00033057850669138134,-3.2676431181070145e-21,-6.12182411714457e-05,3.5575383784680614e-20,-0.000172176311025396,-7.346189522650093e-05,8.131516293641283e-20,-0.005812671966850758,0.0003030303050763905,0.00033057850669138134,0.0027912238147109747,-2.1713761690361903e-21,9.626352344883506e-21,-7.575757626909763e-05,-2.9455550222811694e-21,-8.264462667284533e-05,-0.0002361275110160932,0.00019425019854679704,-0.00012950012751389295,-3.2676431181070145e-21,-2.1713761690361903e-21,1.2950013115187176e-05,6.6940449351518645e-22,2.4386497663026613e-22,-2.8840940866053824e-23,5.0174570176157916e-23,8.404231890145366e-23,0.0002754821034613997,-5.509641778189689e-05,-6.12182411714457e-05,9.626352344883506e-21,6.6940449351518645e-22,1.224364859808702e-05,-2.2200358359735108e-21,8.470329472543003e-22,-7.326594882160633e-23,1.1802033144863757e-22,0.0003030303050763905,-6.060606028768234e-05,3.5575383784680614e-20,-7.575757626909763e-05,2.4386497663026613e-22,-2.2200358359735108e-21,1.5151515071920585e-05,0.0,-6.776263578034403e-21,-1.0164395367051604e-20,0.00022956840984988958,-3.3881317890172014e-21,-0.000172176311025396,-2.9455550222811694e-21,-2.8840940866053824e-23,8.470329472543003e-22,0.0,1.913070082082413e-05,8.470329472543003e-22,-4.235164736271502e-22,0.00033057850669138134,2.476177926815846e-20,-7.346189522650093e-05,-8.264462667284533e-05,5.0174570176157916e-23,-7.326594882160633e-23,-6.776263578034403e-21,8.470329472543003e-22,1.8365473806625232e-05,-2.0328790734103208e-20,0.0002754821034613997,4.404571325722362e-20,8.131516293641283e-20,-0.0002361275110160932,8.404231890145366e-23,1.1802033144863757e-22,-1.0164395367051604e-20,-4.235164736271502e-22,-2.0328790734103208e-20,2.951593887701165e-05,11.0,10.0,10.0,0.03185979276895523,-0.004434202332049608,-0.004812171217054129,-0.004812171217054129,0.00017482518160250038,0.0002479338727425784,0.0002479338727425784,0.00020661157032009214,0.0002704733342397958,0.00020661157032009214,-0.004434202332049608,0.0017026911955326796,0.0002479338727425784,0.0002479338727425784,-0.00011655011621769518,-4.958677527611144e-05,-4.958677527611144e-05,0.0,6.49010735175668e-22,-3.3881317890172014e-21,-0.004812171217054129,0.0002479338727425784,0.002050776267424226,0.0002704733342397958,-1.1798509650298933e-21,-5.509641778189689e-05,7.623296525288703e-21,-0.0001549586741020903,-6.010518336552195e-05,-3.3881317890172014e-21,-0.004812171217054129,0.0002479338727425784,0.0002704733342397958,0.002050776267424226,-6.926414327748662e-22,9.129797600313771e-21,-5.509641778189689e-05,4.316421095067415e-21,-6.010518336552195e-05,-0.0001549586741020903,0.00017482518160250038,-0.00011655011621769518,-1.1798509650298933e-21,-6.926414327748662e-22,1.1655011803668458e-05,5.750096752754788e-22,5.104488885845205e-23,-1.0317225265104837e-22,-1.5406225024848209e-22,1.1643334525572464e-22,0.0002479338727425784,-4.958677527611144e-05,-5.509641778189689e-05,9.129797600313771e-21,5.750096752754788e-22,1.1019284102076199e-05,-1.727589933382048e-21,0.0,-5.582246715874206e-23,1.201665127382691e-22,0.0002479338727425784,-4.958677527611144e-05,7.623296525288703e-21,-5.509641778189689e-05,5.104488885845205e-23,-1.727589933382048e-21,1.1019284102076199e-05,1.0587911840678754e-22,4.235164736271502e-22,8.470329472543003e-22,0.00020661157032009214,0.0,-0.0001549586741020903,4.316421095067415e-21,-1.0317225265104837e-22,0.0,1.0587911840678754e-22,1.721763146633748e-05,-1.6940658945086007e-21,2.117582368135751e-22,0.0002704733342397958,6.49010735175668e-22,-6.010518336552195e-05,-6.010518336552195e-05,-1.5406225024848209e-22,-5.582246715874206e-23,4.235164736271502e-22,-1.6940658945086007e-21,1.3356707313505467e-05,0.0,0.00020661157032009214,-3.3881317890172014e-21,-3.3881317890172014e-21,-0.0001549586741020903,1.1643334525572464e-22,1.201665127382691e-22,8.470329472543003e-22,2.117582368135751e-22,0.0,1.721763146633748e-05,11.0,10.0,11.0,0.02931717038154602,-0.004049875773489475,-0.004395191557705402,-0.004049875773489475,0.00015893197269178927,0.00022539444034919143,0.00020661157032009214,0.00018782870029099286,0.00022539444034919143,0.00015893197269178927,-0.004049875773489475,0.0015516576822847128,0.00022539444034919143,0.00020661157032009214,-0.00010595464846119285,-4.507888661464676e-05,-4.132231333642267e-05,5.082197683525802e-21,7.068077388506626e-21,5.082197683525802e-21,-0.004395191557705402,0.00022539444034919143,0.001868895604275167,0.00022539444034919143,7.744554215674623e-22,-5.0087652198271826e-05,-2.541098841762901e-21,-0.00014087151794228703,-5.0087652198271826e-05,2.0328790734103208e-20,-0.004049875773489475,0.00020661157032009214,0.00022539444034919143,0.0015516576822847128,-2.55606887214555e-21,-7.955663188408765e-21,-4.132231333642267e-05,4.328870809521192e-21,-4.507888661464676e-05,-0.00010595464846119285,0.00015893197269178927,-0.00010595464846119285,7.744554215674623e-22,-2.55606887214555e-21,1.0595465028018225e-05,-5.247895026281119e-22,1.418779212249963e-22,8.801762881657752e-23,1.989486250821749e-22,8.825700076965779e-23,0.00022539444034919143,-4.507888661464676e-05,-5.0087652198271826e-05,-7.955663188408765e-21,-5.247895026281119e-22,1.0017530257755425e-05,1.9059337892988887e-21,-1.6940658945086007e-21,-4.041461140063058e-22,2.5162801164813955e-23,0.00020661157032009214,-4.132231333642267e-05,-2.541098841762901e-21,-4.132231333642267e-05,1.418779212249963e-22,1.9059337892988887e-21,8.264462849183474e-06,1.0587911840678754e-22,-1.4823076576950256e-21,-8.470329472543003e-22,0.00018782870029099286,5.082197683525802e-21,-0.00014087151794228703,4.328870809521192e-21,8.801762881657752e-23,-1.6940658945086007e-21,1.0587911840678754e-22,1.565239108458627e-05,-1.2705494208814505e-21,4.235164736271502e-22,0.00022539444034919143,7.068077388506626e-21,-5.0087652198271826e-05,-4.507888661464676e-05,1.989486250821749e-22,-4.041461140063058e-22,-1.4823076576950256e-21,-1.2705494208814505e-21,1.0017530257755425e-05,-3.8116482626443515e-21,0.00015893197269178927,5.082197683525802e-21,2.0328790734103208e-20,-0.00010595464846119285,8.825700076965779e-23,2.5162801164813955e-23,-8.470329472543003e-22,4.235164736271502e-22,-3.8116482626443515e-21,1.0595465028018225e-05,11.0,10.0,12.0,0.02715163677930832,-0.0037269548047333956,-0.004044818691909313,-0.0034556351602077484,0.00014568764891009778,0.00020661157032009214,0.00017482518160250038,0.000172176311025396,0.00019071837596129626,0.00012487512140069157,-0.0037269548047333956,0.001425266615115106,0.00020661157032009214,0.00017482518160250038,-9.712509927339852e-05,-4.132231333642267e-05,-3.4965036320500076e-05,-1.6940658945086007e-21,2.0305226184065034e-21,1.0164395367051604e-20,-0.004044818691909313,0.00020661157032009214,0.0017166860634461045,0.00019071837596129626,9.686041625183911e-22,-4.591368269757368e-05,-4.235164736271502e-21,-0.00012913222599308938,-4.23818601120729e-05,6.776263578034403e-21,-0.0034556351602077484,0.00017482518160250038,0.00019071837596129626,0.0012027228949591517,2.0973572367033325e-21,-9.524716566083887e-21,-3.178639599354938e-05,-8.507640649606687e-21,-3.4676068025873974e-05,-7.492507575079799e-05,0.00014568764891009778,-9.712509927339852e-05,9.686041625183911e-22,2.0973572367033325e-21,9.71250938164303e-06,-4.565369036987044e-22,-4.765139920189723e-22,1.4964567678652655e-22,-2.5299154194559596e-23,3.368016706836505e-23,0.00020661157032009214,-4.132231333642267e-05,-4.591368269757368e-05,-9.524716566083887e-21,-4.565369036987044e-22,9.182736903312616e-06,1.522275263903612e-21,0.0,4.863682152550525e-22,-4.054857702173266e-23,0.00017482518160250038,-3.4965036320500076e-05,-4.235164736271502e-21,-3.178639599354938e-05,-4.765139920189723e-22,1.522275263903612e-21,6.3572792896593455e-06,5.293955920339377e-23,-5.293955920339377e-22,-2.541098841762901e-21,0.000172176311025396,-1.6940658945086007e-21,-0.00012913222599308938,-8.507640649606687e-21,1.4964567678652655e-22,0.0,5.293955920339377e-23,1.4348025615618099e-05,1.6940658945086007e-21,1.0587911840678754e-22,0.00019071837596129626,2.0305226184065034e-21,-4.23818601120729e-05,-3.4676068025873974e-05,-2.5299154194559596e-23,4.863682152550525e-22,-5.293955920339377e-22,1.6940658945086007e-21,7.705792995693628e-06,-1.6940658945086007e-21,0.00012487512140069157,1.0164395367051604e-20,6.776263578034403e-21,-7.492507575079799e-05,3.368016706836505e-23,-4.054857702173266e-23,-2.541098841762901e-21,1.0587911840678754e-22,-1.6940658945086007e-21,6.8113704401184805e-06,11.0,10.0,13.0,0.02528485469520092,-0.0034517929889261723,-0.0037462536711245775,-0.0029833803419023752,0.00013448089885059744,0.00019071837596129626,0.00014985015150159597,0.00015893197269178927,0.00016347289783880115,9.990009857574478e-05,-0.0034517929889261723,0.0013179361121729016,0.00019071837596129626,0.00014985015150159597,-8.965393499238417e-05,-3.814367300947197e-05,-2.9970029572723433e-05,0.0,-3.1355638212014984e-21,-1.1858461261560205e-20,-0.0037462536711245775,0.00019071837596129626,0.0015874276868999004,0.00016347289783880115,-4.5588876043284544e-21,-4.23818601120729e-05,8.470329472543003e-22,-0.00011919897951884195,-3.632731022662483e-05,-8.470329472543003e-21,-0.0029833803419023752,0.00014985015150159597,0.00016347289783880115,0.0009513213881291449,-5.1435823079530616e-23,4.32003718296985e-21,-2.4975024643936194e-05,-0.0,-2.7245481760473922e-05,-5.4490963520947844e-05,0.00013448089885059744,-8.965393499238417e-05,-4.5588876043284544e-21,-5.1435823079530616e-23,8.965393135440536e-06,9.410663788469954e-22,1.2632231623695799e-22,0.0,-2.4407328008545517e-23,-3.6413636369271894e-23,0.00019071837596129626,-3.814367300947197e-05,-4.23818601120729e-05,4.32003718296985e-21,9.410663788469954e-22,8.47637238621246e-06,-8.640074163991309e-22,-0.0,-9.4039548065783e-38,-3.291384182302405e-37,0.00014985015150159597,-2.9970029572723433e-05,8.470329472543003e-22,-2.4975024643936194e-05,1.2632231623695799e-22,-8.640074163991309e-22,4.995004928787239e-06,0.0,5.293955920339377e-22,2.117582368135751e-21,0.00015893197269178927,0.0,-0.00011919897951884195,-0.0,0.0,-0.0,0.0,1.3244331057649106e-05,0.0,0.0,0.00016347289783880115,-3.1355638212014984e-21,-3.632731022662483e-05,-2.7245481760473922e-05,-2.4407328008545517e-23,-9.4039548065783e-38,5.293955920339377e-22,0.0,6.054551704437472e-06,1.0587911840678754e-21,9.990009857574478e-05,-1.1858461261560205e-20,-8.470329472543003e-21,-5.4490963520947844e-05,-3.6413636369271894e-23,-3.291384182302405e-37,2.117582368135751e-21,0.0,1.0587911840678754e-21,4.540913778328104e-06,11.0,10.0,14.0,0.023658841848373413,-0.0032145127188414335,-0.003488783957436681,-0.002601830055937171,0.00012487512140069157,0.0001770956296240911,0.0001298701245104894,0.00014757968892809004,0.00014167650078888983,8.116882963804528e-05,-0.0032145127188414335,0.0012256531044840813,0.0001770956296240911,0.0001298701245104894,-8.325008093379438e-05,-3.5419125197222456e-05,-2.5974026357289404e-05,-0.0,0.0,3.3881317890172014e-21,-0.003488783957436681,0.0001770956296240911,0.0014762888895347714,0.00014167650078888983,0.0,-3.9354585169348866e-05,-4.235164736271502e-22,-0.00011068477033404633,-3.1483668863074854e-05,1.6940658945086007e-21,-0.002601830055937171,0.0001298701245104894,0.00014167650078888983,0.0007655412773601711,-0.0,-0.0,-1.9980019715148956e-05,-0.0,-2.17963861359749e-05,-4.058441481902264e-05,0.00012487512140069157,-8.325008093379438e-05,0.0,-0.0,8.325007911480498e-06,0.0,0.0,0.0,0.0,0.0,0.0001770956296240911,-3.5419125197222456e-05,-3.9354585169348866e-05,-0.0,0.0,7.870917215768714e-06,0.0,0.0,0.0,0.0,0.0001298701245104894,-2.5974026357289404e-05,-4.235164736271502e-22,-1.9980019715148956e-05,0.0,0.0,3.9960041249287315e-06,0.0,-1.0587911840678754e-22,-6.352747104407253e-22,0.00014757968892809004,-0.0,-0.00011068477033404633,-0.0,0.0,0.0,0.0,1.229830741067417e-05,0.0,0.0,0.00014167650078888983,0.0,-3.1483668863074854e-05,-2.17963861359749e-05,0.0,0.0,-1.0587911840678754e-22,0.0,4.8436413635499775e-06,-2.117582368135751e-22,8.116882963804528e-05,3.3881317890172014e-21,1.6940658945086007e-21,-4.058441481902264e-05,0.0,0.0,-6.352747104407253e-22,0.0,-2.117582368135751e-22,3.1218780804920243e-06,11.0,10.0,15.0,0.022229738533496857,-0.0030077877454459667,-0.003264462808147073,-0.0022891347762197256,0.00011655011621769518,0.00016528925334569067,0.00011363636440364644,0.00013774105173069984,0.0001239669363712892,6.68449210934341e-05,-0.0030077877454459667,0.0011454580817371607,0.00016528925334569067,0.00011363636440364644,-7.770007505314425e-05,-3.3057851396733895e-05,-2.2727272153133526e-05,-0.0,-8.470329472543003e-22,-3.3881317890172014e-21,-0.003264462808147073,0.00016528925334569067,0.001379706198349595,0.0001239669363712892,0.0,-3.6730947613250464e-05,-8.470329472543003e-22,-0.00010330578516004607,-2.7548208890948445e-05,-1.6940658945086007e-21,-0.0022891347762197256,0.00011363636440364644,0.0001239669363712892,0.0006252503953874111,-0.0,-0.0,-1.6233765563811176e-05,-0.0,-1.7709562598611228e-05,-3.0851500923745334e-05,0.00011655011621769518,-7.770007505314425e-05,0.0,-0.0,7.770007869112305e-06,0.0,0.0,0.0,0.0,0.0,0.00016528925334569067,-3.3057851396733895e-05,-3.6730947613250464e-05,-0.0,0.0,7.346189249801682e-06,0.0,0.0,0.0,0.0,0.00011363636440364644,-2.2727272153133526e-05,-8.470329472543003e-22,-1.6233765563811176e-05,0.0,0.0,3.2467532946611755e-06,0.0,1.0587911840678754e-22,6.352747104407253e-22,0.00013774105173069984,-0.0,-0.00010330578516004607,-0.0,0.0,0.0,0.0,1.147842067439342e-05,0.0,0.0,0.0001239669363712892,-8.470329472543003e-22,-2.7548208890948445e-05,-1.7709562598611228e-05,0.0,0.0,1.0587911840678754e-22,0.0,3.935458607884357e-06,4.235164736271502e-22,6.68449210934341e-05,-3.3881317890172014e-21,-1.6940658945086007e-21,-3.0851500923745334e-05,0.0,0.0,6.352747104407253e-22,0.0,4.235164736271502e-22,2.2036786049284274e-06,11.0,10.0,16.0,0.020963750779628754,-0.0028260676190257072,-0.0030672703869640827,-0.0020296548027545214,0.00010926573304459453,0.0001549586741020903,0.00010026738164015114,0.00012913222599308938,0.00010938259947579354,5.5704098485875875e-05,-0.0028260676190257072,0.0010751202935352921,0.0001549586741020903,0.00010026738164015114,-7.284382445504889e-05,-3.09917340928223e-05,-2.0053475964232348e-05,3.870870517094027e-20,1.2705494208814505e-20,8.470329472543003e-21,-0.0030672703869640827,0.0001549586741020903,0.0012949936790391803,0.00010938259947579354,0.0,-3.443526293267496e-05,2.541098841762901e-21,-9.684917313279584e-05,-2.430724271107465e-05,5.929230630780102e-21,-0.0020296548027545214,0.00010026738164015114,0.00010938259947579354,0.000517310225404799,-0.0,9.715126434510205e-21,-1.3368983672989998e-05,-1.213420114848134e-35,-1.4584345990442671e-05,-2.387318636465352e-05,0.00010926573304459453,-7.284382445504889e-05,0.0,-0.0,7.2843822636059485e-06,0.0,0.0,0.0,0.0,0.0,0.0001549586741020903,-3.09917340928223e-05,-3.443526293267496e-05,9.715126434510205e-21,0.0,6.887052222737111e-06,2.82118644197349e-37,-8.60193439267633e-21,-2.158916963008002e-21,5.64237288394698e-37,0.00010026738164015114,-2.0053475964232348e-05,2.541098841762901e-21,-1.3368983672989998e-05,0.0,2.82118644197349e-37,2.673796871022205e-06,-0.0,-4.235164736271502e-22,-1.0587911840678754e-21,0.00012913222599308938,3.870870517094027e-20,-9.684917313279584e-05,-1.213420114848134e-35,0.0,-8.60193439267633e-21,-0.0,1.076101943908725e-05,2.6964892636844332e-36,-0.0,0.00010938259947579354,1.2705494208814505e-20,-2.430724271107465e-05,-1.4584345990442671e-05,0.0,-2.158916963008002e-21,-4.235164736271502e-22,2.6964892636844332e-36,3.2409657251264434e-06,-7.411538288475128e-22,5.5704098485875875e-05,8.470329472543003e-21,5.929230630780102e-21,-2.387318636465352e-05,0.0,5.64237288394698e-37,-1.0587911840678754e-21,-0.0,-7.411538288475128e-22,1.591545697010588e-06,11.0,11.0,3.0,0.07581055164337158,-0.01218478474766016,-0.01218478474766016,-0.03305784985423088,0.0005297732423059642,0.000688705244101584,0.00206611561588943,0.0005297732423059642,0.00206611561588943,0.00413223123177886,-0.01218478474766016,0.004909232258796692,0.000688705244101584,0.00206611561588943,-0.0003531821712385863,-0.00013774105173069984,-0.0004132231406401843,5.316931831205318e-20,0.0,-0.0,-0.01218478474766016,0.000688705244101584,0.004909232258796692,0.00206611561588943,4.8881107387827446e-21,-0.00013774105173069984,-4.0794434623144193e-20,-0.0003531821712385863,-0.0004132231406401843,-0.0,-0.03305784985423088,0.00206611561588943,0.00206611561588943,0.07438016682863235,-2.3605206288398868e-20,-4.7110094309305807e-20,-0.00206611561588943,2.9293413937022064e-21,-0.00206611561588943,-0.024793388321995735,0.0005297732423059642,-0.0003531821712385863,4.8881107387827446e-21,-2.3605206288398868e-20,3.5318218579050153e-05,1.544312276306691e-21,4.7210412576797736e-21,-3.839835613317768e-22,0.0,-0.0,0.000688705244101584,-0.00013774105173069984,-0.00013774105173069984,-4.7110094309305807e-20,1.544312276306691e-21,2.7548208890948445e-05,9.422018538743735e-21,-8.846053647575342e-21,0.0,-0.0,0.00206611561588943,-0.0004132231406401843,-4.0794434623144193e-20,-0.00206611561588943,4.7210412576797736e-21,9.422018538743735e-21,0.0004132231406401843,-5.858682888378609e-22,0.0,-0.0,0.0005297732423059642,5.316931831205318e-20,-0.0003531821712385863,2.9293413937022064e-21,-3.839835613317768e-22,-8.846053647575342e-21,-5.858682888378609e-22,3.5318218579050153e-05,0.0,-0.0,0.00206611561588943,0.0,-0.0004132231406401843,-0.00206611561588943,0.0,0.0,0.0,0.0,0.0004132231406401843,-0.0,0.00413223123177886,-0.0,-0.0,-0.024793388321995735,-0.0,-0.0,-0.0,-0.0,-0.0,0.012396694160997868,11.0,11.0,4.0,0.06160997971892357,-0.009448505938053131,-0.009448505938053131,-0.021074380725622177,0.0003973299462813884,0.0005165289039723575,0.0012396693928167224,0.0003973299462813884,0.0012396693928167224,0.00206611561588943,-0.009448505938053131,0.003743907669559121,0.0005165289039723575,0.0012396693928167224,-0.0002648866211529821,-0.00010330578516004607,-0.0002479338727425784,-6.357704371968889e-20,3.6921364161049945e-21,-0.0,-0.009448505938053131,0.0005165289039723575,0.003743907669559121,0.0012396693928167224,-1.6943797223093593e-21,-0.00010330578516004607,5.742110743993243e-20,-0.0002648866211529821,-0.0002479338727425784,-0.0,-0.021074380725622177,0.0012396693928167224,0.0012396693928167224,0.028512395918369293,4.513747695910711e-21,6.337593543326193e-20,-0.0008264462812803686,8.357574415294369e-21,-0.0008264462812803686,-0.006198347080498934,0.0003973299462813884,-0.0002648866211529821,-1.6943797223093593e-21,4.513747695910711e-21,2.648866211529821e-05,-8.072666835922754e-22,-1.1669944255409634e-21,5.254812768440055e-22,2.642449772355975e-22,-0.0,0.0005165289039723575,-0.00010330578516004607,-0.00010330578516004607,6.337593543326193e-20,-8.072666835922754e-22,2.0661156668211333e-05,-1.1439844055916584e-20,1.0671472430624382e-20,-1.2353428489822499e-21,-0.0,0.0012396693928167224,-0.0002479338727425784,5.742110743993243e-20,-0.0008264462812803686,-1.1669944255409634e-21,-1.1439844055916584e-20,0.00016528925334569067,1.3181416864388037e-23,-2.4265512905892126e-22,-0.0,0.0003973299462813884,-6.357704371968889e-20,-0.0002648866211529821,8.357574415294369e-21,5.254812768440055e-22,1.0671472430624382e-20,1.3181416864388037e-23,2.648866211529821e-05,-1.6846962969255904e-21,-0.0,0.0012396693928167224,3.6921364161049945e-21,-0.0002479338727425784,-0.0008264462812803686,2.642449772355975e-22,-1.2353428489822499e-21,-2.4265512905892126e-22,-1.6846962969255904e-21,0.00016528925334569067,-0.0,0.00206611561588943,-0.0,-0.0,-0.006198347080498934,-0.0,-0.0,-0.0,-0.0,-0.0,0.00206611561588943,11.0,11.0,5.0,0.05197983980178833,-0.007724094204604626,-0.007724094204604626,-0.014639905653893948,0.00031786394538357854,0.0004132231406401843,0.0008264462812803686,0.00031786394538357854,0.0008264462812803686,0.0011806375114247203,-0.007724094204604626,0.0030281839426606894,0.0004132231406401843,0.0008264462812803686,-0.0002119092969223857,-8.264462667284533e-05,-0.00016528925334569067,1.0164395367051604e-20,-3.3881317890172014e-21,-0.0,-0.007724094204604626,0.0004132231406401843,0.0030281839426606894,0.0008264462812803686,3.592084720490158e-21,-8.264462667284533e-05,-6.655275892648235e-21,-0.0002119092969223857,-0.00016528925334569067,-0.0,-0.014639905653893948,0.0008264462812803686,0.0008264462812803686,0.01440377812832594,2.130662323130459e-20,-6.778724925032888e-21,-0.0004132231406401843,0.0,-0.0004132231406401843,-0.0023612750228494406,0.00031786394538357854,-0.0002119092969223857,3.592084720490158e-21,2.130662323130459e-20,2.119093005603645e-05,-8.159513227176131e-22,-2.941067325119999e-21,6.460272884756711e-23,-5.446443995496047e-23,-0.0,0.0004132231406401843,-8.264462667284533e-05,-8.264462667284533e-05,-6.778724925032888e-21,-8.159513227176131e-22,1.6528925698366947e-05,1.0441651727705496e-21,-2.541098841762901e-21,0.0,-0.0,0.0008264462812803686,-0.00016528925334569067,-6.655275892648235e-21,-0.0004132231406401843,-2.941067325119999e-21,1.0441651727705496e-21,8.264462667284533e-05,8.19508277606593e-23,1.1033849230601675e-22,-0.0,0.00031786394538357854,1.0164395367051604e-20,-0.0002119092969223857,0.0,6.460272884756711e-23,-2.541098841762901e-21,8.19508277606593e-23,2.119093005603645e-05,1.6940658945086007e-21,-0.0,0.0008264462812803686,-3.3881317890172014e-21,-0.00016528925334569067,-0.0004132231406401843,-5.446443995496047e-23,0.0,1.1033849230601675e-22,1.6940658945086007e-21,8.264462667284533e-05,-0.0,0.0011806375114247203,-0.0,-0.0,-0.0023612750228494406,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005903187557123601,11.0,11.0,6.0,0.044989101588726044,-0.006535131484270096,-0.006535131484270096,-0.010773317888379097,0.0002648866211529821,0.000344352622050792,0.0005903187557123601,0.0002648866211529821,0.0005903187557123601,0.0007378984591923654,-0.006535131484270096,0.002543163951486349,0.000344352622050792,0.0005903187557123601,-0.00017659108561929315,-6.887052586534992e-05,-0.0001180637555080466,2.0328790734103208e-20,3.3881317890172014e-21,-0.0,-0.006535131484270096,0.000344352622050792,0.002543163951486349,0.0005903187557123601,-1.171402151139006e-21,-6.887052586534992e-05,-1.0546778992249848e-20,-0.00017659108561929315,-0.0001180637555080466,-0.0,-0.010773317888379097,0.0005903187557123601,0.0005903187557123601,0.008367768488824368,-7.382149950716054e-21,-1.1361856433789319e-20,-0.0002361275110160932,0.0,-0.0002361275110160932,-0.0011068476596847177,0.0002648866211529821,-0.00017659108561929315,-1.171402151139006e-21,-7.382149950716054e-21,1.7659109289525077e-05,3.8418722628484314e-22,1.1957181511428322e-21,-1.0467577104930169e-22,3.5642493279982146e-23,-0.0,0.000344352622050792,-6.887052586534992e-05,-6.887052586534992e-05,-1.1361856433789319e-20,3.8418722628484314e-22,1.3774104445474222e-05,2.8782250245794105e-21,-3.3881317890172014e-21,0.0,-0.0,0.0005903187557123601,-0.0001180637555080466,-1.0546778992249848e-20,-0.0002361275110160932,1.1957181511428322e-21,2.8782250245794105e-21,4.722550147562288e-05,-1.9436488883895942e-22,-1.8294720639760362e-22,-0.0,0.0002648866211529821,2.0328790734103208e-20,-0.00017659108561929315,0.0,-1.0467577104930169e-22,-3.3881317890172014e-21,-1.9436488883895942e-22,1.7659109289525077e-05,0.0,-0.0,0.0005903187557123601,3.3881317890172014e-21,-0.0001180637555080466,-0.0002361275110160932,3.5642493279982146e-23,0.0,-1.8294720639760362e-22,0.0,4.722550147562288e-05,-0.0,0.0007378984591923654,-0.0,-0.0,-0.0011068476596847177,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022136954066809267,11.0,11.0,7.0,0.039672449231147766,-0.005664789583534002,-0.005664789583534002,-0.00826446246355772,0.00022704567527398467,0.00029515937785618007,0.00044273908133618534,0.00022704567527398467,0.00044273908133618534,0.0004919323255307972,-0.005664789583534002,0.002192504471167922,0.00029515937785618007,0.00044273908133618534,-0.00015136378351598978,-5.90318777540233e-05,-8.854781481204554e-05,1.6940658945086007e-20,3.3881317890172014e-21,-0.0,-0.005664789583534002,0.00029515937785618007,0.002192504471167922,0.00044273908133618534,7.055344946304418e-21,-5.90318777540233e-05,-2.481422284211175e-21,-0.00015136378351598978,-8.854781481204554e-05,-0.0,-0.00826446246355772,0.00044273908133618534,0.00044273908133618534,0.005312868859618902,5.552842853332518e-21,-5.33328991346889e-22,-0.00014757968892809004,6.776263578034403e-21,-0.00014757968892809004,-0.0005903187557123601,0.00022704567527398467,-0.00015136378351598978,7.055344946304418e-21,5.552842853332518e-21,1.5136378351598978e-05,-1.5431388551765055e-21,-6.8362378075155485e-22,-8.194199251852082e-23,-8.813163499460007e-23,-0.0,0.00029515937785618007,-5.90318777540233e-05,-5.90318777540233e-05,-5.33328991346889e-22,-1.5431388551765055e-21,1.180637536890572e-05,5.078111459767404e-22,-2.541098841762901e-21,-4.235164736271502e-22,-0.0,0.00044273908133618534,-8.854781481204554e-05,-2.481422284211175e-21,-0.00014757968892809004,-6.8362378075155485e-22,5.078111459767404e-22,2.951593887701165e-05,-2.0737624701370444e-22,-9.001431780922605e-23,-0.0,0.00022704567527398467,1.6940658945086007e-20,-0.00015136378351598978,6.776263578034403e-21,-8.194199251852082e-23,-2.541098841762901e-21,-2.0737624701370444e-22,1.5136378351598978e-05,-8.470329472543003e-22,-0.0,0.00044273908133618534,3.3881317890172014e-21,-8.854781481204554e-05,-0.00014757968892809004,-8.813163499460007e-23,-4.235164736271502e-22,-9.001431780922605e-23,-8.470329472543003e-22,2.951593887701165e-05,-0.0,0.0004919323255307972,-0.0,-0.0,-0.0005903187557123601,-0.0,-0.0,-0.0,-0.0,-0.0,9.838645928539336e-05,11.0,11.0,8.0,0.03548818454146385,-0.004999734926968813,-0.004999734926968813,-0.0065426998771727085,0.0001986649731406942,0.00025826445198617876,0.000344352622050792,0.0001986649731406942,0.000344352622050792,0.000344352622050792,-0.004999734926968813,0.0019270501798018813,0.00025826445198617876,0.000344352622050792,-0.00013244331057649106,-5.1652892580023035e-05,-6.887052586534992e-05,-2.710505431213761e-20,0.0,-0.0,-0.004999734926968813,0.00025826445198617876,0.0019270501798018813,0.000344352622050792,8.43349509563221e-22,-5.1652892580023035e-05,1.5616796764373233e-20,-0.00013244331057649106,-6.887052586534992e-05,-0.0,-0.0065426998771727085,0.000344352622050792,0.000344352622050792,0.0035911058075726032,-5.9042373968445875e-22,1.4885061808516315e-20,-9.838645928539336e-05,-1.0164395367051604e-20,-9.838645928539336e-05,-0.000344352622050792,0.0001986649731406942,-0.00013244331057649106,8.43349509563221e-22,-5.9042373968445875e-22,1.3244331057649106e-05,-5.07629796320961e-22,1.5376430064002373e-22,1.6880128953630802e-22,-3.567955396530943e-23,-0.0,0.00025826445198617876,-5.1652892580023035e-05,-5.1652892580023035e-05,1.4885061808516315e-20,-5.07629796320961e-22,1.0330578334105667e-05,-3.12335927209529e-21,5.082197683525802e-21,0.0,-0.0,0.000344352622050792,-6.887052586534992e-05,1.5616796764373233e-20,-9.838645928539336e-05,1.5376430064002373e-22,-3.12335927209529e-21,1.9677292584674433e-05,-1.692711865184094e-36,-9.4039548065783e-38,-0.0,0.0001986649731406942,-2.710505431213761e-20,-0.00013244331057649106,-1.0164395367051604e-20,1.6880128953630802e-22,5.082197683525802e-21,-1.692711865184094e-36,1.3244331057649106e-05,1.6940658945086007e-21,-0.0,0.000344352622050792,0.0,-6.887052586534992e-05,-9.838645928539336e-05,-3.567955396530943e-23,0.0,-9.4039548065783e-38,1.6940658945086007e-21,1.9677292584674433e-05,-0.0,0.000344352622050792,-0.0,-0.0,-0.000344352622050792,-0.0,-0.0,-0.0,-0.0,-0.0,4.919322964269668e-05,11.0,11.0,9.0,0.0321071483194828,-0.004474818240851164,-0.004474818240851164,-0.005309291183948517,0.00017659108561929315,0.00022956840984988958,0.0002754821034613997,0.00017659108561929315,0.0002754821034613997,0.0002504382573533803,-0.004474818240851164,0.0017190553480759263,0.00022956840984988958,0.0002754821034613997,-0.0001177273879875429,-4.591368269757368e-05,-5.509641778189689e-05,6.776263578034403e-21,6.2663333875831704e-21,1.6940658945086007e-20,-0.004474818240851164,0.00022956840984988958,0.0017190553480759263,0.0002754821034613997,-2.6845813565562148e-21,-4.591368269757368e-05,3.3881317890172014e-21,-0.0001177273879875429,-5.509641778189689e-05,1.6940658945086007e-20,-0.005309291183948517,0.0002754821034613997,0.0002754821034613997,0.002543737180531025,2.7823576996413556e-21,-5.037747226917447e-21,-6.887052586534992e-05,-2.7216683709050706e-21,-6.887052586534992e-05,-0.00021466136968228966,0.00017659108561929315,-0.0001177273879875429,-2.6845813565562148e-21,2.7823576996413556e-21,1.177273861685535e-05,5.299261609461276e-22,-6.665827317463236e-23,5.174840132461539e-23,-1.3072431154938503e-22,-2.07766032653305e-22,0.00022956840984988958,-4.591368269757368e-05,-4.591368269757368e-05,-5.037747226917447e-21,5.299261609461276e-22,9.182736903312616e-06,9.040183405377447e-22,-8.470329472543003e-22,1.363946942232116e-22,-4.1307808311353573e-23,0.0002754821034613997,-5.509641778189689e-05,3.3881317890172014e-21,-6.887052586534992e-05,-6.665827317463236e-23,9.040183405377447e-22,1.3774104445474222e-05,0.0,-1.6940658945086007e-21,-5.929230630780102e-21,0.00017659108561929315,6.776263578034403e-21,-0.0001177273879875429,-2.7216683709050706e-21,5.174840132461539e-23,-8.470329472543003e-22,0.0,1.177273861685535e-05,4.235164736271502e-22,2.117582368135751e-22,0.0002754821034613997,6.2663333875831704e-21,-5.509641778189689e-05,-6.887052586534992e-05,-1.3072431154938503e-22,1.363946942232116e-22,-1.6940658945086007e-21,4.235164736271502e-22,1.3774104445474222e-05,-4.235164736271502e-21,0.0002504382573533803,1.6940658945086007e-20,1.6940658945086007e-20,-0.00021466136968228966,-2.07766032653305e-22,-4.1307808311353573e-23,-5.929230630780102e-21,2.117582368135751e-22,-4.235164736271502e-21,2.6832671210286207e-05,11.0,11.0,10.0,0.02931717038154602,-0.004049875773489475,-0.004049875773489475,-0.004395191557705402,0.00015893197269178927,0.00020661157032009214,0.00022539444034919143,0.00015893197269178927,0.00022539444034919143,0.00018782870029099286,-0.004049875773489475,0.0015516576822847128,0.00020661157032009214,0.00022539444034919143,-0.00010595464846119285,-4.132231333642267e-05,-4.507888661464676e-05,8.470329472543003e-21,1.4406385353118627e-21,0.0,-0.004049875773489475,0.00020661157032009214,0.0015516576822847128,0.00022539444034919143,-4.332865853580721e-22,-4.132231333642267e-05,-1.6940658945086007e-21,-0.00010595464846119285,-4.507888661464676e-05,0.0,-0.004395191557705402,0.00022539444034919143,0.00022539444034919143,0.001868895604275167,4.496042678458773e-22,-2.709909319951033e-21,-5.0087652198271826e-05,3.447306706763854e-21,-5.0087652198271826e-05,-0.00014087151794228703,0.00015893197269178927,-0.00010595464846119285,-4.332865853580721e-22,4.496042678458773e-22,1.0595465028018225e-05,-1.4712624428326028e-25,-3.227515215362487e-22,-3.7724679411968976e-25,9.73531034322716e-23,6.975389589535169e-23,0.00020661157032009214,-4.132231333642267e-05,-4.132231333642267e-05,-2.709909319951033e-21,-1.4712624428326028e-25,8.264462849183474e-06,6.020229989735347e-22,-1.6940658945086007e-21,-1.3913085511752706e-22,-6.319820933747541e-23,0.00022539444034919143,-4.507888661464676e-05,-1.6940658945086007e-21,-5.0087652198271826e-05,-3.227515215362487e-22,6.020229989735347e-22,1.0017530257755425e-05,5.293955920339377e-23,-4.235164736271502e-22,-4.235164736271502e-22,0.00015893197269178927,8.470329472543003e-21,-0.00010595464846119285,3.447306706763854e-21,-3.7724679411968976e-25,-1.6940658945086007e-21,5.293955920339377e-23,1.0595465028018225e-05,-8.470329472543003e-22,0.0,0.00022539444034919143,1.4406385353118627e-21,-4.507888661464676e-05,-5.0087652198271826e-05,9.73531034322716e-23,-1.3913085511752706e-22,-4.235164736271502e-22,-8.470329472543003e-22,1.0017530257755425e-05,0.0,0.00018782870029099286,0.0,0.0,-0.00014087151794228703,6.975389589535169e-23,-6.319820933747541e-23,-4.235164736271502e-22,0.0,0.0,1.565239108458627e-05,11.0,11.0,11.0,0.02697509154677391,-0.0036987806670367718,-0.0036987806670367718,-0.0036987806670367718,0.00014448360889218748,0.00018782870029099286,0.00018782870029099286,0.00014448360889218748,0.00018782870029099286,0.00014448360889218748,-0.0036987806670367718,0.00141401297878474,0.00018782870029099286,0.00018782870029099286,-9.632240835344419e-05,-3.756574005819857e-05,-3.756574005819857e-05,8.470329472543003e-21,3.5751154010293164e-21,1.1858461261560205e-20,-0.0036987806670367718,0.00018782870029099286,0.00141401297878474,0.00018782870029099286,5.165871364570802e-21,-3.756574005819857e-05,2.541098841762901e-21,-9.632240835344419e-05,-3.756574005819857e-05,1.0164395367051604e-20,-0.0036987806670367718,0.00018782870029099286,0.00018782870029099286,0.00141401297878474,4.0661258544523156e-21,-9.341693363982119e-22,-3.756574005819857e-05,3.537319547825465e-21,-3.756574005819857e-05,-9.632240835344419e-05,0.00014448360889218748,-9.632240835344419e-05,5.165871364570802e-21,4.0661258544523156e-21,9.63224101724336e-06,-8.62230270551849e-22,-7.346743146986447e-22,-7.205969845598926e-23,-1.558331136075148e-23,-2.920575432483871e-23,0.00018782870029099286,-3.756574005819857e-05,-3.756574005819857e-05,-9.341693363982119e-22,-8.62230270551849e-22,7.513147920690244e-06,2.1010631159094435e-22,-1.2705494208814505e-21,2.4817851223622532e-23,-3.476492338824722e-23,0.00018782870029099286,-3.756574005819857e-05,2.541098841762901e-21,-3.756574005819857e-05,-7.346743146986447e-22,2.1010631159094435e-22,7.513147920690244e-06,-5.293955920339377e-23,-6.352747104407253e-22,-2.117582368135751e-21,0.00014448360889218748,8.470329472543003e-21,-9.632240835344419e-05,3.537319547825465e-21,-7.205969845598926e-23,-1.2705494208814505e-21,-5.293955920339377e-23,9.63224101724336e-06,-4.235164736271502e-22,0.0,0.00018782870029099286,3.5751154010293164e-21,-3.756574005819857e-05,-3.756574005819857e-05,-1.558331136075148e-23,2.4817851223622532e-23,-6.352747104407253e-22,-4.235164736271502e-22,7.513147920690244e-06,-1.6940658945086007e-21,0.00014448360889218748,1.1858461261560205e-20,1.0164395367051604e-20,-9.632240835344419e-05,-2.920575432483871e-23,-3.476492338824722e-23,-2.117582368135751e-21,0.0,-1.6940658945086007e-21,9.63224101724336e-06,11.0,11.0,12.0,0.024980701506137848,-0.003403793089091778,-0.003403793089091778,-0.0031559350900352,0.00013244331057649106,0.000172176311025396,0.00015893197269178927,0.00013244331057649106,0.00015893197269178927,0.00011352283763699234,-0.003403793089091778,0.001298827468417585,0.000172176311025396,0.00015893197269178927,-8.829554280964658e-05,-3.443526293267496e-05,-3.178639599354938e-05,3.3881317890172014e-21,-8.39139430856171e-21,-1.8634724839594607e-20,-0.003403793089091778,0.000172176311025396,0.001298827468417585,0.00015893197269178927,-4.424550928300107e-22,-3.443526293267496e-05,-1.0164395367051604e-20,-8.829554280964658e-05,-3.178639599354938e-05,-2.0328790734103208e-20,-0.0031559350900352,0.00015893197269178927,0.00015893197269178927,0.001096011372283101,-3.0300561363742123e-22,-3.0964942794909646e-21,-2.889672396122478e-05,-2.7761960522610808e-21,-2.889672396122478e-05,-6.81137025821954e-05,0.00013244331057649106,-8.829554280964658e-05,-4.424550928300107e-22,-3.0300561363742123e-22,8.829554644762538e-06,3.4454912096548036e-24,1.6586536381724163e-22,8.83459369481124e-24,5.999831813774759e-23,-6.973995514543463e-23,0.000172176311025396,-3.443526293267496e-05,-3.443526293267496e-05,-3.0964942794909646e-21,3.4454912096548036e-24,6.887052222737111e-06,5.183915251424074e-22,-8.470329472543003e-22,8.164014909263429e-23,-1.4976196119484337e-23,0.00015893197269178927,-3.178639599354938e-05,-1.0164395367051604e-20,-2.889672396122478e-05,1.6586536381724163e-22,5.183915251424074e-22,5.779344519396545e-06,-5.293955920339377e-23,1.376428539288238e-21,3.3881317890172014e-21,0.00013244331057649106,3.3881317890172014e-21,-8.829554280964658e-05,-2.7761960522610808e-21,8.83459369481124e-24,-8.470329472543003e-22,-5.293955920339377e-23,8.829554644762538e-06,4.235164736271502e-22,0.0,0.00015893197269178927,-8.39139430856171e-21,-3.178639599354938e-05,-2.889672396122478e-05,5.999831813774759e-23,8.164014909263429e-23,1.376428539288238e-21,4.235164736271502e-22,5.779344519396545e-06,3.5998900258307764e-21,0.00011352283763699234,-1.8634724839594607e-20,-2.0328790734103208e-20,-6.81137025821954e-05,-6.973995514543463e-23,-1.4976196119484337e-23,3.3881317890172014e-21,0.0,3.5998900258307764e-21,6.19215506958426e-06,11.0,11.0,13.0,0.023261703550815582,-0.003152441931888461,-0.003152441931888461,-0.002724548103287816,0.00012225536920595914,0.00015893197269178927,0.0001362274051643908,0.00012225536920595914,0.0001362274051643908,9.081827010959387e-05,-0.003152441931888461,0.001201013452373445,0.00015893197269178927,0.0001362274051643908,-8.150357462000102e-05,-3.178639599354938e-05,-2.7245481760473922e-05,3.3881317890172014e-21,6.6515761981116206e-21,1.6940658945086007e-20,-0.003152441931888461,0.00015893197269178927,0.001201013452373445,0.0001362274051643908,-1.319069591967179e-22,-3.178639599354938e-05,5.082197683525802e-21,-8.150357462000102e-05,-2.7245481760473922e-05,1.6940658945086007e-20,-0.002724548103287816,0.0001362274051643908,0.0001362274051643908,0.0008669017115607858,2.1975198019852327e-21,-2.4194190792382518e-21,-2.2704567527398467e-05,6.45002009112599e-22,-2.2704567527398467e-05,-4.953724055667408e-05,0.00012225536920595914,-8.150357462000102e-05,-1.319069591967179e-22,2.1975198019852327e-21,8.150357643899042e-06,-2.083904517557434e-25,-3.9084218309903243e-22,-5.343344904171932e-25,2.311817309495515e-23,-2.778579522911003e-23,0.00015893197269178927,-3.178639599354938e-05,-3.178639599354938e-05,-2.4194190792382518e-21,-2.083904517557434e-25,6.3572792896593455e-06,3.9423799579318094e-22,-8.470329472543003e-22,6.336573815019539e-23,8.424078368343278e-24,0.0001362274051643908,-2.7245481760473922e-05,5.082197683525802e-21,-2.2704567527398467e-05,-3.9084218309903243e-22,3.9423799579318094e-22,4.540913778328104e-06,5.293955920339377e-23,-1.2705494208814505e-21,-2.964615315390051e-21,0.00012225536920595914,3.3881317890172014e-21,-8.150357462000102e-05,6.45002009112599e-22,-5.343344904171932e-25,-8.470329472543003e-22,5.293955920339377e-23,8.150357643899042e-06,-2.117582368135751e-22,2.117582368135751e-22,0.0001362274051643908,6.6515761981116206e-21,-2.7245481760473922e-05,-2.2704567527398467e-05,2.311817309495515e-23,6.336573815019539e-23,-1.2705494208814505e-21,-2.117582368135751e-22,4.540913778328104e-06,-3.1763735522036263e-21,9.081827010959387e-05,1.6940658945086007e-20,1.6940658945086007e-20,-4.953724055667408e-05,-2.778579522911003e-23,8.424078368343278e-24,-2.964615315390051e-21,2.117582368135751e-22,-3.1763735522036263e-21,4.1281032281403895e-06,11.0,11.0,14.0,0.021764598786830902,-0.002935700584203005,-0.002935700584203005,-0.002376032993197441,0.00011352283763699234,0.00014757968892809004,0.0001180637555080466,0.00011352283763699234,0.0001180637555080466,7.378984446404502e-05,-0.002935700584203005,0.0011169133940711617,0.00014757968892809004,0.0001180637555080466,-7.568189175799489e-05,-2.951593887701165e-05,-2.361275073781144e-05,-0.0,-6.776263578034403e-21,-1.5246593050577406e-20,-0.002935700584203005,0.00014757968892809004,0.0011169133940711617,0.0001180637555080466,0.0,-2.951593887701165e-05,-7.623296525288703e-21,-7.568189175799489e-05,-2.361275073781144e-05,-1.5246593050577406e-20,-0.002376032993197441,0.0001180637555080466,0.0001180637555080466,0.000697597861289978,-0.0,-0.0,-1.8163655113312416e-05,-0.0,-1.8163655113312416e-05,-3.689492223202251e-05,0.00011352283763699234,-7.568189175799489e-05,0.0,-0.0,7.568189175799489e-06,0.0,0.0,0.0,0.0,0.0,0.00014757968892809004,-2.951593887701165e-05,-2.951593887701165e-05,-0.0,0.0,5.90318768445286e-06,0.0,0.0,0.0,0.0,0.0001180637555080466,-2.361275073781144e-05,-7.623296525288703e-21,-1.8163655113312416e-05,0.0,0.0,3.6327307952888077e-06,0.0,1.164670302474663e-21,2.329340604949326e-21,0.00011352283763699234,-0.0,-7.568189175799489e-05,-0.0,0.0,0.0,0.0,7.568189175799489e-06,0.0,0.0,0.0001180637555080466,-6.776263578034403e-21,-2.361275073781144e-05,-1.8163655113312416e-05,0.0,0.0,1.164670302474663e-21,0.0,3.6327307952888077e-06,2.329340604949326e-21,7.378984446404502e-05,-1.5246593050577406e-20,-1.5246593050577406e-20,-3.689492223202251e-05,0.0,0.0,2.329340604949326e-21,0.0,2.329340604949326e-21,2.8380709409248084e-06,11.0,11.0,15.0,0.02044893614947796,-0.0027468742337077856,-0.0027468742337077856,-0.0020904229022562504,0.00010595464846119285,0.00013774105173069984,0.00010330578516004607,0.00010595464846119285,0.00010330578516004607,6.076811041566543e-05,-0.0027468742337077856,0.001043829950504005,0.00013774105173069984,0.00010330578516004607,-7.063643715810031e-05,-2.7548208890948445e-05,-2.0661156668211333e-05,-1.3045076407191958e-19,3.3457801416544863e-20,-2.795208725939191e-20,-0.0027468742337077856,0.00013774105173069984,0.001043829950504005,0.00010330578516004607,-1.9797853225708683e-19,-2.7548208890948445e-05,2.498747194400186e-20,-7.063643715810031e-05,-2.0661156668211333e-05,-2.964615315390051e-20,-0.0020904229022562504,0.00010330578516004607,0.00010330578516004607,0.0005697510787285864,-6.735867437338551e-20,1.2570994641213383e-19,-1.4757969438505825e-05,-6.735867437338551e-20,-1.4757969438505825e-05,-2.8046819352312014e-05,0.00010595464846119285,-7.063643715810031e-05,-1.9797853225708683e-19,-6.735867437338551e-20,7.06364335201215e-06,6.010899368191942e-21,1.548722627233826e-21,1.608660465614781e-20,2.3526658461432925e-21,4.258218760775366e-21,0.00013774105173069984,-2.7548208890948445e-05,-2.7548208890948445e-05,1.2570994641213383e-19,6.010899368191942e-21,5.5096420510380995e-06,-4.951883213615672e-21,-7.494656207546069e-21,-6.670777047301151e-21,-3.9856926373011205e-21,0.00010330578516004607,-2.0661156668211333e-05,2.498747194400186e-20,-1.4757969438505825e-05,1.548722627233826e-21,-4.951883213615672e-21,2.95159384222643e-06,2.3526658461432925e-21,-2.1705219273391446e-21,1.5881867761018131e-21,0.00010595464846119285,-1.3045076407191958e-19,-7.063643715810031e-05,-6.735867437338551e-20,1.608660465614781e-20,-7.494656207546069e-21,2.3526658461432925e-21,7.06364335201215e-06,1.548722627233826e-21,4.258218760775366e-21,0.00010330578516004607,3.3457801416544863e-20,-2.0661156668211333e-05,-1.4757969438505825e-05,2.3526658461432925e-21,-6.670777047301151e-21,-2.1705219273391446e-21,1.548722627233826e-21,2.95159384222643e-06,1.5881867761018131e-21,6.076811041566543e-05,-2.795208725939191e-20,-2.964615315390051e-20,-2.8046819352312014e-05,4.258218760775366e-21,-3.9856926373011205e-21,1.5881867761018131e-21,4.258218760775366e-21,1.5881867761018131e-21,2.0033442069689045e-06,11.0,11.0,16.0,0.01928355172276497,-0.0025808915961533785,-0.0025808915961533785,-0.0018534272676333785,9.93324865703471e-05,0.00012913222599308938,9.115216380450875e-05,9.93324865703471e-05,9.115216380450875e-05,5.0640090194065124e-05,-0.0025808915961533785,0.0009797299280762672,0.00012913222599308938,9.115216380450875e-05,-6.622165528824553e-05,-2.5826446290011518e-05,-1.8230432033305988e-05,-0.0,-3.3881317890172014e-21,-6.776263578034403e-21,-0.0025808915961533785,0.00012913222599308938,0.0009797299280762672,9.115216380450875e-05,0.0,-2.5826446290011518e-05,-3.8116482626443515e-21,-6.622165528824553e-05,-1.8230432033305988e-05,-7.623296525288703e-21,-0.0018534272676333785,9.115216380450875e-05,9.115216380450875e-05,0.00047138691297732294,-0.0,-0.0,-1.2153621355537325e-05,-0.0,-1.2153621355537325e-05,-2.1702895537600853e-05,9.93324865703471e-05,-6.622165528824553e-05,0.0,-0.0,6.622165528824553e-06,0.0,0.0,0.0,0.0,0.0,0.00012913222599308938,-2.5826446290011518e-05,-2.5826446290011518e-05,-0.0,0.0,5.165289167052833e-06,0.0,0.0,0.0,0.0,9.115216380450875e-05,-1.8230432033305988e-05,-3.8116482626443515e-21,-1.2153621355537325e-05,0.0,0.0,2.4307244075316703e-06,0.0,4.764560328305439e-22,7.411538288475128e-22,9.93324865703471e-05,-0.0,-6.622165528824553e-05,-0.0,0.0,0.0,0.0,6.622165528824553e-06,0.0,0.0,9.115216380450875e-05,-3.3881317890172014e-21,-1.8230432033305988e-05,-1.2153621355537325e-05,0.0,0.0,4.764560328305439e-22,0.0,2.4307244075316703e-06,1.0587911840678754e-21,5.0640090194065124e-05,-6.776263578034403e-21,-7.623296525288703e-21,-2.1702895537600853e-05,0.0,0.0,7.411538288475128e-22,0.0,1.0587911840678754e-21,1.4468597555605811e-06,11.0,12.0,3.0,0.07032550871372223,-0.011217948980629444,-0.010406260378658772,-0.03044871799647808,0.0004856254963669926,0.0005827505956403911,0.0018939394503831863,0.0004162504046689719,0.0017482517287135124,0.0037878789007663727,-0.011217948980629444,0.004509842023253441,0.0005827505956403911,0.0018939394503831863,-0.00032375031150877476,-0.00011655011621769518,-0.0003787878667935729,1.0429359928816121e-18,1.0140512594815667e-18,-3.881898644116949e-18,-0.010406260378658772,0.0005827505956403911,0.0038067991845309734,0.0017482517287135124,1.5217246750395556e-18,-0.00010595464846119285,-3.6787415347102766e-19,-0.00024975024280138314,-0.00031786394538357854,-1.7720885477348074e-17,-0.03044871799647808,0.0018939394503831863,0.0017482517287135124,0.06832750886678696,7.016446842622597e-19,-2.176825663992258e-18,-0.0018939394503831863,-3.1671047866448165e-18,-0.0017482517287135124,-0.022727273404598236,0.0004856254963669926,-0.00032375031150877476,1.5217246750395556e-18,7.016446842622597e-19,3.237503187847324e-05,-4.40462464009778e-20,-4.882823830861277e-22,-9.940661752166763e-20,-1.2712786322902043e-19,-7.084269519496123e-33,0.0005827505956403911,-0.00011655011621769518,-0.00010595464846119285,-2.176825663992258e-18,-4.40462464009778e-20,2.119093005603645e-05,7.329823183712546e-20,-7.861579471666527e-21,4.6831844968409746e-20,7.057997675754784e-19,0.0018939394503831863,-0.0003787878667935729,-3.6787415347102766e-19,-0.0018939394503831863,-4.882823830861277e-22,7.329823183712546e-20,0.0003787878667935729,1.167246936761281e-22,5.049601158952292e-35,2.4442110974655442e-33,0.0004162504046689719,1.0429359928816121e-18,-0.00024975024280138314,-3.1671047866448165e-18,-9.940661752166763e-20,-7.861579471666527e-21,1.167246936761281e-22,2.2704567527398467e-05,1.0092038389203382e-19,1.13936250483845e-18,0.0017482517287135124,1.0140512594815667e-18,-0.00031786394538357854,-0.0017482517287135124,-1.2712786322902043e-19,4.6831844968409746e-20,5.049601158952292e-35,1.0092038389203382e-19,0.00031786394538357854,1.3765803269306415e-18,0.0037878789007663727,-3.881898644116949e-18,-1.7720885477348074e-17,-0.022727273404598236,-7.084269519496123e-33,7.057997675754784e-19,2.4442110974655442e-33,1.13936250483845e-18,1.3765803269306415e-18,0.011363636702299118,11.0,12.0,4.0,0.05712204426527023,-0.008697552606463432,-0.008066932670772076,-0.01940559409558773,0.0003642191004473716,0.0004370629321783781,0.0011363636003807187,0.00031218782532960176,0.0010489510605111718,0.0018939394503831863,-0.008697552606463432,0.0034391996450722218,0.0004370629321783781,0.0011363636003807187,-0.0002428127481834963,-8.741259080125019e-05,-0.00022727272880729288,1.1615864697534887e-20,-2.7258957565892924e-21,-5.034924698722543e-35,-0.008066932670772076,0.0004370629321783781,0.0029027790296822786,0.0010489510605111718,-9.883963165989263e-22,-7.946598634589463e-05,3.0316870614884574e-20,-0.00018731268937699497,-0.00019071837596129626,1.7529104893098574e-18,-0.01940559409558773,0.0011363636003807187,0.0010489510605111718,0.02619463950395584,4.000193743518157e-21,2.4503559976548402e-20,-0.0007575757335871458,5.846032804769519e-19,-0.0006993007264100015,-0.005681818351149559,0.0003642191004473716,-0.0002428127481834963,-9.883963165989263e-22,4.000193743518157e-21,2.428127481834963e-05,-8.068534466956844e-22,-5.546237929232381e-22,5.1822527112891025e-22,-2.2310450525490304e-22,-2.556498605425816e-36,0.0004370629321783781,-8.741259080125019e-05,-7.946598634589463e-05,2.4503559976548402e-20,-8.068534466956844e-22,1.589319799677469e-05,-5.9474366821919384e-21,-1.8291952179745143e-21,9.51567998139885e-22,1.3499684486769354e-35,0.0011363636003807187,-0.00022727272880729288,3.0316870614884574e-20,-0.0007575757335871458,-5.546237929232381e-22,-5.9474366821919384e-21,0.00015151515253819525,-4.0260500796364053e-23,-6.844118717285324e-23,2.4400248294655784e-36,0.00031218782532960176,1.1615864697534887e-20,-0.00018731268937699497,5.846032804769519e-19,5.1822527112891025e-22,-1.8291952179745143e-21,-4.0260500796364053e-23,1.702842564554885e-05,-2.9258567338131134e-20,-1.4115994834521685e-19,0.0010489510605111718,-2.7258957565892924e-21,-0.00019071837596129626,-0.0006993007264100015,-2.2310450525490304e-22,9.51567998139885e-22,-6.844118717285324e-23,-2.9258567338131134e-20,0.0001271455839741975,-1.334340684992745e-19,0.0018939394503831863,-5.034924698722543e-35,1.7529104893098574e-18,-0.005681818351149559,-2.556498605425816e-36,1.3499684486769354e-35,2.4400248294655784e-36,-1.4115994834521685e-19,-1.334340684992745e-19,0.0018939394503831863,11.0,12.0,5.0,0.04817682132124901,-0.007109557278454304,-0.006593406666070223,-0.013478188775479794,0.00029137529782019556,0.00034965036320500076,0.0007575757335871458,0.00024975024280138314,0.0006993007264100015,0.0010822510812431574,-0.007109557278454304,0.002781662857159972,0.00034965036320500076,0.0007575757335871458,-0.00019425019854679704,-6.993007264100015e-05,-0.00015151515253819525,2.710505431213761e-20,0.0,-1.4991713120960123e-34,-0.006593406666070223,0.00034965036320500076,0.0023476523347198963,0.0006993007264100015,2.7149111777175646e-21,-6.357279198709875e-05,-2.750164217941704e-20,-0.00014985015150159597,-0.0001271455839741975,8.694610189854866e-19,-0.013478188775479794,0.0007575757335871458,0.0006993007264100015,0.013232600875198841,5.0697839158857545e-21,-3.0603899056266207e-20,-0.0003787878667935729,4.2012834183813297e-19,-0.00034965036320500076,-0.0021645021624863148,0.00029137529782019556,-0.00019425019854679704,2.7149111777175646e-21,5.0697839158857545e-21,1.942501876328606e-05,-3.57579642149335e-22,3.068042628859863e-22,6.672604579272171e-23,-2.2041442645922697e-22,2.4666237612375572e-36,0.00034965036320500076,-6.993007264100015e-05,-6.357279198709875e-05,-3.0603899056266207e-20,-3.57579642149335e-22,1.2714558579318691e-05,5.927544361709102e-21,-5.082197683525802e-21,4.235164736271502e-22,2.1588018324684546e-35,0.0007575757335871458,-0.00015151515253819525,-2.750164217941704e-20,-0.0003787878667935729,3.068042628859863e-22,5.927544361709102e-21,7.575757626909763e-05,-1.2497943516255664e-22,-1.672080808085747e-22,2.2964125881934338e-36,0.00024975024280138314,2.710505431213761e-20,-0.00014985015150159597,4.2012834183813297e-19,6.672604579272171e-23,-5.082197683525802e-21,-1.2497943516255664e-22,1.3622740880236961e-05,-2.541098841762901e-20,-6.913956838281804e-20,0.0006993007264100015,0.0,-0.0001271455839741975,-0.00034965036320500076,-2.2041442645922697e-22,4.235164736271502e-22,-1.672080808085747e-22,-2.541098841762901e-20,6.357279198709875e-05,-5.446288338724406e-20,0.0010822510812431574,-1.4991713120960123e-34,8.694610189854866e-19,-0.0021645021624863148,2.4666237612375572e-36,2.1588018324684546e-35,2.2964125881934338e-36,-6.913956838281804e-20,-5.446288338724406e-20,0.0005411255406215787,11.0,12.0,6.0,0.04168747738003731,-0.006014818325638771,-0.005577755626291037,-0.009917166084051132,0.0002428127481834963,0.00029137529782019556,0.0005411255406215787,0.00020812520233448595,0.0004995004856027663,0.0006764069548808038,-0.006014818325638771,0.0023360897321254015,0.00029137529782019556,0.0005411255406215787,-0.00016187515575438738,-5.827505810884759e-05,-0.00010822511103469878,4.54009659728305e-19,2.1175823681357508e-19,-7.63223989867405e-19,-0.005577755626291037,0.00029137529782019556,0.0019715132657438517,0.0004995004856027663,8.000497605455361e-19,-5.297732423059642e-05,-4.821109496906861e-19,-0.00012487512140069157,-9.081827010959387e-05,-2.3546053891936862e-18,-0.009917166084051132,0.0005411255406215787,0.0004995004856027663,0.0076871044002473354,1.9879016445906328e-19,-6.016110961480195e-19,-0.00021645022206939757,-1.0909784360635388e-18,-0.00019980019715148956,-0.0010146104032173753,0.0002428127481834963,-0.00016187515575438738,8.000497605455361e-19,1.9879016445906328e-19,1.618751593923662e-05,-2.255972431114e-20,8.15543588914697e-23,-5.0241031088955837e-20,-3.632159440125721e-20,-9.634193742286077e-34,0.00029137529782019556,-5.827505810884759e-05,-5.297732423059642e-05,-6.016110961480195e-19,-2.255972431114e-20,1.0595465028018225e-05,1.694501779917325e-20,-4.235164736271502e-21,1.3129010682441655e-20,8.06628276258382e-20,0.0005411255406215787,-0.00010822511103469878,-4.821109496906861e-19,-0.00021645022206939757,8.15543588914697e-23,1.694501779917325e-20,4.329004150349647e-05,2.874889160265349e-20,3.101578007135506e-20,1.2783138033999678e-19,0.00020812520233448595,4.54009659728305e-19,-0.00012487512140069157,-1.0909784360635388e-18,-5.0241031088955837e-20,-4.235164736271502e-21,2.874889160265349e-20,1.1352283763699234e-05,2.879912020664621e-20,1.386392446754322e-19,0.0004995004856027663,2.1175823681357508e-19,-9.081827010959387e-05,-0.00019980019715148956,-3.632159440125721e-20,1.3129010682441655e-20,3.101578007135506e-20,2.879912020664621e-20,3.632731022662483e-05,1.5033811177755797e-19,0.0006764069548808038,-7.63223989867405e-19,-2.3546053891936862e-18,-0.0010146104032173753,-9.634193742286077e-34,8.06628276258382e-20,1.2783138033999678e-19,1.386392446754322e-19,1.5033811177755797e-19,0.000202922077733092,11.0,12.0,7.0,0.036754414439201355,-0.005213536322116852,-0.004834451247006655,-0.0076069761998951435,0.00020812520233448595,0.00024975024280138314,0.000405844155466184,0.0001783930347301066,0.00037462537875398993,0.00045093795051798224,-0.005213536322116852,0.002013958292081952,0.00024975024280138314,0.000405844155466184,-0.0001387501397402957,-4.995004928787239e-05,-8.116882963804528e-05,-2.710505431213761e-20,1.6940658945086007e-21,6.655353992824384e-35,-0.004834451247006655,0.00024975024280138314,0.0016995990881696343,0.00037462537875398993,7.734842315567619e-21,-4.5409135054796934e-05,-1.381589532387458e-20,-0.00010703581938287243,-6.81137025821954e-05,3.1888882778836707e-19,-0.0076069761998951435,0.000405844155466184,0.00037462537875398993,0.00488053634762764,4.57198032246152e-21,-1.4483759657980188e-20,-0.00013528138515539467,2.236166980751353e-19,-0.00012487512140069157,-0.0005411255406215787,0.00020812520233448595,-0.0001387501397402957,7.734842315567619e-21,4.57198032246152e-21,1.387501379213063e-05,-9.629593010725703e-22,-1.2954803537381147e-21,-3.057492087569075e-22,-1.3662128031874004e-22,5.196213353786724e-37,0.00024975024280138314,-4.995004928787239e-05,-4.5409135054796934e-05,-1.4483759657980188e-20,-9.629593010725703e-22,9.081827556656208e-06,3.182914054766799e-21,5.505714157152952e-21,2.117582368135751e-22,-1.3235700483203953e-35,0.000405844155466184,-8.116882963804528e-05,-1.381589532387458e-20,-0.00013528138515539467,-1.2954803537381147e-21,3.182914054766799e-21,2.7056277758674696e-05,-1.5096477843780092e-22,-1.1508764952561346e-22,2.137640449931736e-37,0.0001783930347301066,-2.710505431213761e-20,-0.00010703581938287243,2.236166980751353e-19,-3.057492087569075e-22,5.505714157152952e-21,-1.5096477843780092e-22,9.730529200169258e-06,-1.2705494208814505e-20,-2.4967067078500796e-20,0.00037462537875398993,1.6940658945086007e-21,-6.81137025821954e-05,-0.00012487512140069157,-1.3662128031874004e-22,2.117582368135751e-22,-1.1508764952561346e-22,-1.2705494208814505e-20,2.2704567527398467e-05,-1.475036384681515e-20,0.00045093795051798224,6.655353992824384e-35,3.1888882778836707e-19,-0.0005411255406215787,5.196213353786724e-37,-1.3235700483203953e-35,2.137640449931736e-37,-2.4967067078500796e-20,-1.475036384681515e-20,9.018759010359645e-05,11.0,12.0,8.0,0.032873377203941345,-0.004601301625370979,-0.004266566596925259,-0.006021756213158369,0.0001821095502236858,0.00021853146608918905,0.00031565656536258757,0.00015609391266480088,0.00029137529782019556,0.00031565656536258757,-0.004601301625370979,0.0017701048636808991,0.00021853146608918905,0.00031565656536258757,-0.00012140637409174815,-4.3706295400625095e-05,-6.313131598290056e-05,8.470329472543003e-21,1.6940658945086007e-21,-1.987070602596713e-35,-0.004266566596925259,0.00021853146608918905,0.0014937713276594877,0.00029137529782019556,-1.2164095814117704e-21,-3.973299317294732e-05,7.65889517999046e-21,-9.365634468849748e-05,-5.297732423059642e-05,2.1573983191800787e-19,-0.006021756213158369,0.00031565656536258757,0.00029137529782019556,0.0032987846061587334,5.1462871542248834e-23,9.355779466254137e-21,-9.018759010359645e-05,1.6601845766184287e-19,-8.325008093379438e-05,-0.00031565656536258757,0.0001821095502236858,-0.00012140637409174815,-1.2164095814117704e-21,5.1462871542248834e-23,1.2140637409174815e-05,3.946117644009619e-23,1.579018382225845e-23,9.301563063100439e-23,-2.3711598444073088e-23,0.0,0.00021853146608918905,-4.3706295400625095e-05,-3.973299317294732e-05,9.355779466254137e-21,3.946117644009619e-23,7.946598998387344e-06,-1.5317789552187354e-21,-1.6940658945086007e-21,-2.117582368135751e-22,3.612855771533081e-36,0.00031565656536258757,-6.313131598290056e-05,7.65889517999046e-21,-9.018759010359645e-05,1.579018382225845e-23,-1.5317789552187354e-21,1.803751729312353e-05,2.82118644197349e-37,4.70197740328915e-38,-0.0,0.00015609391266480088,8.470329472543003e-21,-9.365634468849748e-05,1.6601845766184287e-19,9.301563063100439e-23,-1.6940658945086007e-21,2.82118644197349e-37,8.514212822774425e-06,-8.893845946170154e-21,-1.680475575538296e-20,0.00029137529782019556,1.6940658945086007e-21,-5.297732423059642e-05,-8.325008093379438e-05,-2.3711598444073088e-23,-2.117582368135751e-22,4.70197740328915e-38,-8.893845946170154e-21,1.5136378351598978e-05,-8.825004162807855e-21,0.00031565656536258757,-1.987070602596713e-35,2.1573983191800787e-19,-0.00031565656536258757,0.0,3.612855771533081e-36,-0.0,-1.680475575538296e-20,-8.825004162807855e-21,4.5093795051798224e-05,11.0,12.0,9.0,0.02973819151520729,-0.004118103999644518,-0.0038184039294719696,-0.00488627515733242,0.00016187515575438738,0.00019425019854679704,0.00025252526393160224,0.0001387501397402957,0.00023310023243539035,0.00022956840984988958,-0.004118103999644518,0.0015790382167324424,0.00019425019854679704,0.00025252526393160224,-0.00010791677777888253,-3.885003752657212e-05,-5.0505052058724687e-05,6.776263578034403e-21,-8.470329472543003e-22,-1.0004830870615968e-35,-0.0038184039294719696,0.00019425019854679704,0.001332505838945508,0.00023310023243539035,1.9800977205770135e-21,-3.5318218579050153e-05,-1.0747801652558706e-20,-8.325008093379438e-05,-4.23818601120729e-05,1.5304226859757038e-19,-0.00488627515733242,0.00025252526393160224,0.00023310023243539035,0.002336615463718772,3.8931578647235026e-21,-1.0767200007275355e-20,-6.313131598290056e-05,1.4568966692773966e-19,-5.827505810884759e-05,-0.00019677291857078671,0.00016187515575438738,-0.00010791677777888253,1.9800977205770135e-21,3.8931578647235026e-21,1.0791677595989313e-05,-5.1548898401684996e-23,-7.008983956936039e-22,-1.2150811901344761e-22,-7.066653854293274e-23,-0.0,0.00019425019854679704,-3.885003752657212e-05,-3.5318218579050153e-05,-1.0767200007275355e-20,-5.1548898401684996e-23,7.06364335201215e-06,2.149560290122063e-21,-8.470329472543003e-22,2.117582368135751e-22,1.819060109375757e-36,0.00025252526393160224,-5.0505052058724687e-05,-1.0747801652558706e-20,-6.313131598290056e-05,-7.008983956936039e-22,2.149560290122063e-21,1.2626263014681172e-05,-3.76158192263132e-37,9.4039548065783e-38,0.0,0.0001387501397402957,6.776263578034403e-21,-8.325008093379438e-05,1.4568966692773966e-19,-1.2150811901344761e-22,-8.470329472543003e-22,-3.76158192263132e-37,7.568189175799489e-06,-8.893845946170154e-21,-1.1872451438346148e-20,0.00023310023243539035,-8.470329472543003e-22,-4.23818601120729e-05,-5.827505810884759e-05,-7.066653854293274e-23,2.117582368135751e-22,9.4039548065783e-38,-8.893845946170154e-21,1.0595465028018225e-05,-5.611327107579431e-21,0.00022956840984988958,-1.0004830870615968e-35,1.5304226859757038e-19,-0.00019677291857078671,-0.0,1.819060109375757e-36,0.0,-1.1872451438346148e-20,-5.611327107579431e-21,2.459661482134834e-05,11.0,12.0,10.0,0.02715163677930832,-0.0037269548047333956,-0.0034556351602077484,-0.004044818691909313,0.00014568764891009778,0.00017482518160250038,0.00020661157032009214,0.00012487512140069157,0.00019071837596129626,0.000172176311025396,-0.0037269548047333956,0.001425266615115106,0.00017482518160250038,0.00020661157032009214,-9.712509927339852e-05,-3.4965036320500076e-05,-4.132231333642267e-05,1.3552527156068805e-20,-2.1794884359322487e-21,0.0,-0.0034556351602077484,0.00017482518160250038,0.0012027228949591517,0.00019071837596129626,4.0792593156734143e-22,-3.178639599354938e-05,-1.0164395367051604e-20,-7.492507575079799e-05,-3.4676068025873974e-05,1.0672615135404184e-19,-0.004044818691909313,0.00020661157032009214,0.00019071837596129626,0.0017166860634461045,2.321752999974999e-21,-9.289774653898953e-21,-4.591368269757368e-05,1.0965362109004943e-19,-4.23818601120729e-05,-0.00012913222599308938,0.00014568764891009778,-9.712509927339852e-05,4.0792593156734143e-22,2.321752999974999e-21,9.71250938164303e-06,-2.0872065216737468e-23,-7.825788461121641e-22,-4.919844000292468e-23,6.208030508235586e-23,1.2868759890984922e-22,0.00017482518160250038,-3.4965036320500076e-05,-3.178639599354938e-05,-9.289774653898953e-21,-2.0872065216737468e-23,6.3572792896593455e-06,1.75723737092772e-21,-2.541098841762901e-21,1.2346853302623045e-22,2.0806065957963057e-23,0.00020661157032009214,-4.132231333642267e-05,-1.0164395367051604e-20,-4.591368269757368e-05,-7.825788461121641e-22,1.75723737092772e-21,9.182736903312616e-06,1.0587911840678754e-22,4.235164736271502e-22,4.235164736271502e-22,0.00012487512140069157,1.3552527156068805e-20,-7.492507575079799e-05,1.0965362109004943e-19,-4.919844000292468e-23,-2.541098841762901e-21,1.0587911840678754e-22,6.8113704401184805e-06,-6.1409888675936775e-21,-8.470329472543003e-21,0.00019071837596129626,-2.1794884359322487e-21,-3.4676068025873974e-05,-4.23818601120729e-05,6.208030508235586e-23,1.2346853302623045e-22,4.235164736271502e-22,-6.1409888675936775e-21,7.705792995693628e-06,-2.541098841762901e-21,0.000172176311025396,0.0,1.0672615135404184e-19,-0.00012913222599308938,1.2868759890984922e-22,2.0806065957963057e-23,4.235164736271502e-22,-8.470329472543003e-21,-2.541098841762901e-21,1.4348025615618099e-05,11.0,12.0,11.0,0.024980701506137848,-0.003403793089091778,-0.0031559350900352,-0.003403793089091778,0.00013244331057649106,0.00015893197269178927,0.000172176311025396,0.00011352283763699234,0.00015893197269178927,0.00013244331057649106,-0.003403793089091778,0.001298827468417585,0.00015893197269178927,0.000172176311025396,-8.829554280964658e-05,-3.178639599354938e-05,-3.443526293267496e-05,-1.6940658945086007e-20,8.033977966930643e-21,8.470329472543003e-21,-0.0031559350900352,0.00015893197269178927,0.001096011372283101,0.00015893197269178927,-6.859857186542079e-22,-2.889672396122478e-05,-1.6940658945086007e-21,-6.81137025821954e-05,-2.889672396122478e-05,1.0333801956502464e-19,-0.003403793089091778,0.000172176311025396,0.00015893197269178927,0.001298827468417585,2.3948653859773516e-21,-9.106859494186763e-21,-3.443526293267496e-05,8.568222420629533e-20,-3.178639599354938e-05,-8.829554280964658e-05,0.00013244331057649106,-8.829554280964658e-05,-6.859857186542079e-22,2.3948653859773516e-21,8.829554644762538e-06,3.410405358717651e-23,1.7188446087649934e-23,8.038812586185268e-23,-8.740241197381376e-23,-1.8553749744421285e-22,0.00015893197269178927,-3.178639599354938e-05,-2.889672396122478e-05,-9.106859494186763e-21,3.410405358717651e-23,5.779344519396545e-06,1.7766934828844055e-21,3.1763735522036263e-21,1.1115269457895708e-23,5.833954560245954e-23,0.000172176311025396,-3.443526293267496e-05,-1.6940658945086007e-21,-3.443526293267496e-05,1.7188446087649934e-23,1.7766934828844055e-21,6.887052222737111e-06,1.0587911840678754e-22,-1.5881867761018131e-21,-1.6940658945086007e-21,0.00011352283763699234,-1.6940658945086007e-20,-6.81137025821954e-05,8.568222420629533e-20,8.038812586185268e-23,3.1763735522036263e-21,1.0587911840678754e-22,6.19215506958426e-06,-4.0234064994579266e-21,-6.246867986000465e-21,0.00015893197269178927,8.033977966930643e-21,-2.889672396122478e-05,-3.178639599354938e-05,-8.740241197381376e-23,1.1115269457895708e-23,-1.5881867761018131e-21,-4.0234064994579266e-21,5.779344519396545e-06,-6.3527471044072525e-21,0.00013244331057649106,8.470329472543003e-21,1.0333801956502464e-19,-8.829554280964658e-05,-1.8553749744421285e-22,5.833954560245954e-23,-1.6940658945086007e-21,-6.246867986000465e-21,-6.3527471044072525e-21,8.829554644762538e-06,11.0,12.0,12.0,0.023132316768169403,-0.0031322843860834837,-0.0029041471425443888,-0.0029041471425443888,0.00012140637409174815,0.00014568764891009778,0.00014568764891009778,0.00010406260116724297,0.00013448089885059744,0.00010406260116724297,-0.0031322843860834837,0.0011930199107155204,0.00014568764891009778,0.00014568764891009778,-8.093757787719369e-05,-2.9137529054423794e-05,-2.9137529054423794e-05,2.710505431213761e-19,2.1127013562868344e-19,2.676624113323589e-19,-0.0029041471425443888,0.00014568764891009778,0.001006714766845107,0.00013448089885059744,4.608240770120934e-19,-2.648866211529821e-05,2.541098841762901e-20,-6.243756070034578e-05,-2.4451073841191828e-05,2.371692252312041e-20,-0.0029041471425443888,0.00014568764891009778,0.00013448089885059744,0.001006714766845107,4.607423412278155e-19,2.4422538281783686e-20,-2.648866211529821e-05,1.4584510902824e-20,-2.4451073841191828e-05,-6.243756070034578e-05,0.00012140637409174815,-8.093757787719369e-05,4.608240770120934e-19,4.607423412278155e-19,8.09375796961831e-06,-1.1211929139970516e-20,-1.1057488703493183e-20,-2.5041726591132242e-20,-1.964689341015261e-20,-2.5100004050226017e-20,0.00014568764891009778,-2.9137529054423794e-05,-2.648866211529821e-05,2.4422538281783686e-20,-1.1211929139970516e-20,5.2977325140091125e-06,4.823601455242566e-22,-2.541098841762901e-21,-1.4402072745213092e-21,-1.6996895513732892e-21,0.00014568764891009778,-2.9137529054423794e-05,2.541098841762901e-20,-2.648866211529821e-05,-1.1057488703493183e-20,4.823601455242566e-22,5.2977325140091125e-06,-1.7999450129153882e-21,-1.4823076576950256e-21,-1.9058241313221758e-21,0.00010406260116724297,2.710505431213761e-19,-6.243756070034578e-05,1.4584510902824e-20,-2.5041726591132242e-20,-2.541098841762901e-21,-1.7999450129153882e-21,5.676141881849617e-06,8.470329472543003e-22,-1.6940658945086007e-21,0.00013448089885059744,2.1127013562868344e-19,-2.4451073841191828e-05,-2.4451073841191828e-05,-1.964689341015261e-20,-1.4402072745213092e-21,-1.4823076576950256e-21,8.470329472543003e-22,4.4456496652856e-06,-1.0587911840678754e-21,0.00010406260116724297,2.676624113323589e-19,2.371692252312041e-20,-6.243756070034578e-05,-2.5100004050226017e-20,-1.6996895513732892e-21,-1.9058241313221758e-21,-1.6940658945086007e-21,-1.0587911840678754e-21,5.676141881849617e-06,11.0,12.0,13.0,0.02153935842216015,-0.0029009452555328608,-0.0026896181516349316,-0.002507108263671398,0.00011206742055946961,0.00013448089885059744,0.00012487512140069157,9.605778905097395e-05,0.0001152693439507857,8.325008093379438e-05,-0.0029009452555328608,0.0011031703324988484,0.00013448089885059744,0.00012487512140069157,-7.471161370631307e-05,-2.689618122531101e-05,-2.4975024643936194e-05,6.776263578034403e-21,-3.486819929091033e-21,-9.317362419797304e-21,-0.0026896181516349316,0.00013448089885059744,0.0009308872977271676,0.0001152693439507857,-6.06226251824944e-22,-2.4451073841191828e-05,-2.117582368135751e-21,-5.763467197539285e-05,-2.095806303259451e-05,4.0657581468206416e-20,-0.002507108263671398,0.00012487512140069157,0.0001152693439507857,0.0007962608360685408,1.7906218634624773e-21,3.402201937366272e-21,-2.0812520233448595e-05,7.23046651368271e-20,-1.9211558537790552e-05,-4.5409135054796934e-05,0.00011206742055946961,-7.471161370631307e-05,-6.06226251824944e-22,1.7906218634624773e-21,7.471161097782897e-06,4.871238051627349e-22,-2.3653500731669733e-22,-1.3152643793958824e-22,-4.516729766837289e-23,-2.7834319641111983e-23,0.00013448089885059744,-2.689618122531101e-05,-2.4451073841191828e-05,3.402201937366272e-21,4.871238051627349e-22,4.890214768238366e-06,-5.786170793970693e-22,-1.0587911840678754e-21,-1.8796477827336721e-22,3.237458018211893e-23,0.00012487512140069157,-2.4975024643936194e-05,-2.117582368135751e-21,-2.0812520233448595e-05,-2.3653500731669733e-22,-5.786170793970693e-22,4.162503955740249e-06,2.6469779601696886e-23,8.470329472543003e-22,1.9058241313221758e-21,9.605778905097395e-05,6.776263578034403e-21,-5.763467197539285e-05,7.23046651368271e-20,-1.3152643793958824e-22,-1.0587911840678754e-21,2.6469779601696886e-23,5.239515758148627e-06,-4.446922973085077e-21,-4.0234064994579266e-21,0.0001152693439507857,-3.486819929091033e-21,-2.095806303259451e-05,-1.9211558537790552e-05,-4.516729766837289e-23,-1.8796477827336721e-22,8.470329472543003e-22,-4.446922973085077e-21,3.4930105812236434e-06,4.235164736271502e-22,8.325008093379438e-05,-9.317362419797304e-21,4.0657581468206416e-20,-4.5409135054796934e-05,-2.7834319641111983e-23,3.237458018211893e-23,1.9058241313221758e-21,-4.0234064994579266e-21,4.235164736271502e-22,3.7840945878997445e-06,11.0,12.0,14.0,0.020152168348431587,-0.0027014652732759714,-0.0025046381633728743,-0.0021863554138690233,0.00010406260116724297,0.00012487512140069157,0.00010822511103469878,8.91965173650533e-05,9.990009857574478e-05,6.764069257769734e-05,-0.0027014652732759714,0.0010259185219183564,0.00012487512140069157,0.00010822511103469878,-6.937506987014785e-05,-2.4975024643936194e-05,-2.1645020751748234e-05,-1.7364175418713157e-20,2.964615315390051e-21,5.929230630780102e-21,-0.0025046381633728743,0.00012487512140069157,0.000865692738443613,9.990009857574478e-05,0.0,-2.2704567527398467e-05,2.964615315390051e-21,-5.3517909691436216e-05,-1.8163655113312416e-05,4.743384504624082e-20,-0.0021863554138690233,0.00010822511103469878,9.990009857574478e-05,0.0006407454493455589,-0.0,2.543165632091031e-22,-1.6650015822960995e-05,6.118141880581021e-20,-1.536924537504092e-05,-3.382034628884867e-05,0.00010406260116724297,-6.937506987014785e-05,0.0,-0.0,6.937506896065315e-06,0.0,0.0,0.0,0.0,0.0,0.00012487512140069157,-2.4975024643936194e-05,-2.2704567527398467e-05,2.543165632091031e-22,0.0,4.540913778328104e-06,-6.608513417255309e-24,2.752857078576476e-21,-5.903972592015923e-23,-4.8022909458678724e-24,0.00010822511103469878,-2.1645020751748234e-05,2.964615315390051e-21,-1.6650015822960995e-05,0.0,-6.608513417255309e-24,3.3300034374406096e-06,-7.940933880509066e-23,-4.235164736271502e-22,-6.352747104407253e-22,8.91965173650533e-05,-1.7364175418713157e-20,-5.3517909691436216e-05,6.118141880581021e-20,0.0,2.752857078576476e-21,-7.940933880509066e-23,4.865264600084629e-06,-2.964615315390051e-21,-3.3881317890172014e-21,9.990009857574478e-05,2.964615315390051e-21,-1.8163655113312416e-05,-1.536924537504092e-05,0.0,-5.903972592015923e-23,-4.235164736271502e-22,-2.964615315390051e-21,2.7944083740294445e-06,-1.6940658945086007e-21,6.764069257769734e-05,5.929230630780102e-21,4.743384504624082e-20,-3.382034628884867e-05,0.0,-4.8022909458678724e-24,-6.352747104407253e-22,-3.3881317890172014e-21,-1.6940658945086007e-21,2.6015650291810744e-06,11.0,12.0,15.0,0.018933210521936417,-0.0025276807136833668,-0.0023434897884726524,-0.001923505449667573,9.712509927339852e-05,0.00011655011621769518,9.469696669839323e-05,8.325008093379438e-05,8.741259080125019e-05,5.5704098485875875e-05,-0.0025276807136833668,0.000958786578848958,0.00011655011621769518,9.469696669839323e-05,-6.475006375694647e-05,-2.3310023607336916e-05,-1.8939394067274407e-05,2.117582368135751e-21,-1.2705494208814505e-21,-4.235164736271502e-21,-0.0023434897884726524,0.00011655011621769518,0.0008090394549071789,8.741259080125019e-05,0.0,-2.119093005603645e-05,-2.541098841762901e-21,-4.995004928787239e-05,-1.589319799677469e-05,2.964615315390051e-20,-0.001923505449667573,9.469696669839323e-05,8.741259080125019e-05,0.0005233124829828739,-0.0,-1.0641500108603504e-22,-1.3528138879337348e-05,5.0212583830702255e-20,-1.2487512321968097e-05,-2.5709585315780714e-05,9.712509927339852e-05,-6.475006375694647e-05,0.0,-0.0,6.475006557593588e-06,0.0,0.0,0.0,0.0,0.0,0.00011655011621769518,-2.3310023607336916e-05,-2.119093005603645e-05,-1.0641500108603504e-22,0.0,4.23818619310623e-06,2.750931723120043e-24,0.0,-1.0333979408554283e-22,6.358853140249153e-23,9.469696669839323e-05,-1.8939394067274407e-05,-2.541098841762901e-21,-1.3528138879337348e-05,0.0,2.750931723120043e-24,2.7056275939685293e-06,-2.6469779601696886e-23,3.705769144237564e-22,4.235164736271502e-22,8.325008093379438e-05,2.117582368135751e-21,-4.995004928787239e-05,5.0212583830702255e-20,0.0,0.0,-2.6469779601696886e-23,4.540913778328104e-06,-2.329340604949326e-21,-2.6469779601696886e-21,8.741259080125019e-05,-1.2705494208814505e-21,-1.589319799677469e-05,-1.2487512321968097e-05,0.0,-1.0333979408554283e-22,3.705769144237564e-22,-2.329340604949326e-21,2.270456889164052e-06,-2.117582368135751e-22,5.5704098485875875e-05,-4.235164736271502e-21,2.964615315390051e-20,-2.5709585315780714e-05,0.0,6.358853140249153e-23,4.235164736271502e-22,-2.6469779601696886e-21,-2.117582368135751e-22,1.8363989511271939e-06,11.0,12.0,16.0,0.017853572964668274,-0.0023749228566884995,-0.002201842376962304,-0.001705402391962707,9.10547751118429e-05,0.00010926573304459453,8.355615136679262e-05,7.804695633240044e-05,7.712875230936334e-05,4.642008207156323e-05,-0.0023749228566884995,0.0008999068522825837,0.00010926573304459453,8.355615136679262e-05,-6.0703187045874074e-05,-2.1853147700312547e-05,-1.6711230273358524e-05,1.0532429383367696e-35,-1.6940658945086007e-21,-7.623296525288703e-21,-0.002201842376962304,0.00010926573304459453,0.0007593509508296847,7.712875230936334e-05,0.0,-1.986649658647366e-05,-2.117582368135751e-21,-4.682817234424874e-05,-1.4023409676156007e-05,1.9905274260476058e-20,-0.001705402391962707,8.355615136679262e-05,7.712875230936334e-05,0.00043296164949424565,-0.0,-0.0,-1.1140819879074115e-05,4.3026003125924605e-20,-1.0283833944413345e-05,-1.98943216673797e-05,9.10547751118429e-05,-6.0703187045874074e-05,0.0,-0.0,6.070318704587407e-06,0.0,0.0,0.0,0.0,0.0,0.00010926573304459453,-2.1853147700312547e-05,-1.986649658647366e-05,-0.0,0.0,3.973299499193672e-06,0.0,0.0,0.0,0.0,8.355615136679262e-05,-1.6711230273358524e-05,-2.117582368135751e-21,-1.1140819879074115e-05,0.0,0.0,2.228164021289558e-06,-1.692711865184094e-36,2.117582368135751e-22,9.529120656610879e-22,7.804695633240044e-05,1.0532429383367696e-35,-4.682817234424874e-05,4.3026003125924605e-20,0.0,0.0,-1.692711865184094e-36,4.2571064113872126e-06,-1.853305432567161e-21,-2.1888548023409913e-21,7.712875230936334e-05,-1.6940658945086007e-21,-1.4023409676156007e-05,-1.0283833944413345e-05,0.0,0.0,2.117582368135751e-22,-1.853305432567161e-21,1.8697879795581684e-06,4.764560328305439e-22,4.642008207156323e-05,-7.623296525288703e-21,1.9905274260476058e-20,-1.98943216673797e-05,0.0,0.0,9.529120656610879e-22,-2.1888548023409913e-21,4.764560328305439e-22,1.326288042946544e-06,11.0,13.0,3.0,0.06558185070753098,-0.01039345283061266,-0.008991008624434471,-0.028221778571605682,0.00044826968223787844,0.0004995004856027663,0.0017482517287135124,0.0003330003237351775,0.0014985015150159597,0.003496503457427025,-0.01039345283061266,0.004170615691691637,0.0004995004856027663,0.0017482517287135124,-0.0002988464548252523,-9.990009857574478e-05,-0.00034965036320500076,-4.529378016754982e-20,0.0,-0.0,-0.008991008624434471,0.0004995004856027663,0.0030121393501758575,0.0014985015150159597,2.1982195531626e-21,-8.325008093379438e-05,0.0,-0.00018163654021918774,-0.00024975024280138314,-0.0,-0.028221778571605682,0.0017482517287135124,0.0014985015150159597,0.06318681687116623,0.0,0.0,-0.0017482517287135124,0.0,-0.0014985015150159597,-0.02097902074456215,0.00044826968223787844,-0.0002988464548252523,2.1982195531626e-21,0.0,2.9884644391131587e-05,-9.13280703524743e-22,0.0,2.789760016966264e-22,0.0,-0.0,0.0004995004856027663,-9.990009857574478e-05,-8.325008093379438e-05,0.0,-9.13280703524743e-22,1.6650015822960995e-05,0.0,7.049764708343953e-21,0.0,-0.0,0.0017482517287135124,-0.00034965036320500076,0.0,-0.0017482517287135124,0.0,0.0,0.00034965036320500076,0.0,0.0,-0.0,0.0003330003237351775,-4.529378016754982e-20,-0.00018163654021918774,0.0,2.789760016966264e-22,7.049764708343953e-21,0.0,1.5136378351598978e-05,0.0,-0.0,0.0014985015150159597,0.0,-0.00024975024280138314,-0.0014985015150159597,0.0,0.0,0.0,0.0,0.00024975024280138314,-0.0,0.003496503457427025,-0.0,-0.0,-0.02097902074456215,-0.0,-0.0,-0.0,-0.0,-0.0,0.010489510372281075,11.0,13.0,4.0,0.053244832903146744,-0.008057327009737492,-0.006968032103031874,-0.017982017248868942,0.00033620226895436645,0.00037462537875398993,0.0010489510605111718,0.00024975024280138314,0.0008991009090095758,0.0017482517287135124,-0.008057327009737492,0.0031804093159735203,0.00037462537875398993,0.0010489510605111718,-0.00022413484111893922,-7.492507575079799e-05,-0.00020979020337108523,-1.8405064281750368e-20,1.5401574708744592e-20,-0.0,-0.006968032103031874,0.00037462537875398993,0.0022965669631958008,0.0008991009090095758,-6.0539240691546366e-21,-6.243756070034578e-05,1.7066674741529632e-20,-0.0001362274051643908,-0.00014985015150159597,-0.0,-0.017982017248868942,0.0010489510605111718,0.0008991009090095758,0.02422577515244484,-1.1432867142878869e-20,2.911079604534251e-20,-0.0006993007264100015,2.6019256973539586e-20,-0.0005994006060063839,-0.005244755186140537,0.00033620226895436645,-0.00022413484111893922,-6.0539240691546366e-21,-1.1432867142878869e-20,2.241348374809604e-05,1.8373852854884892e-22,2.320856954960864e-21,4.0088404163458486e-22,-2.856957902554504e-23,-0.0,0.00037462537875398993,-7.492507575079799e-05,-6.243756070034578e-05,2.911079604534251e-20,1.8373852854884892e-22,1.2487512321968097e-05,-2.9225732953015467e-21,3.789744132283035e-21,-2.416321796754188e-21,-0.0,0.0010489510605111718,-0.00020979020337108523,1.7066674741529632e-20,-0.0006993007264100015,2.320856954960864e-21,-2.9225732953015467e-21,0.0001398601452820003,-1.438563717535161e-22,-3.971093232704406e-22,-0.0,0.00024975024280138314,-1.8405064281750368e-20,-0.0001362274051643908,2.6019256973539586e-20,4.0088404163458486e-22,3.789744132283035e-21,-1.438563717535161e-22,1.1352283763699234e-05,-4.21666262851738e-21,-0.0,0.0008991009090095758,1.5401574708744592e-20,-0.00014985015150159597,-0.0005994006060063839,-2.856957902554504e-23,-2.416321796754188e-21,-3.971093232704406e-22,-4.21666262851738e-21,9.990009857574478e-05,-0.0,0.0017482517287135124,-0.0,-0.0,-0.005244755186140537,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017482517287135124,11.0,13.0,5.0,0.04489356651902199,-0.006585721857845783,-0.005694305524230003,-0.012487512081861496,0.0002689617977011949,0.00029970030300319195,0.0006993007264100015,0.00019980019715148956,0.0005994006060063839,0.0009990009712055326,-0.006585721857845783,0.0025722994469106197,0.00029970030300319195,0.0006993007264100015,-0.00017930786998476833,-5.994005914544687e-05,-0.0001398601452820003,-2.0328790734103208e-20,-3.3881317890172014e-21,-0.0,-0.005694305524230003,0.00029970030300319195,0.0018572336994111538,0.0005994006060063839,-2.5385577251496796e-21,-4.995004928787239e-05,-2.5271715719009837e-22,-0.00010898192704189569,-9.990009857574478e-05,-0.0,-0.012487512081861496,0.0006993007264100015,0.0005994006060063839,0.012237762100994587,-5.4604700433650725e-21,7.213946933290266e-22,-0.00034965036320500076,0.0,-0.00029970030300319195,-0.001998001942411065,0.0002689617977011949,-0.00017930786998476833,-2.5385577251496796e-21,-5.4604700433650725e-21,1.793078627088107e-05,8.493989746118861e-22,1.5476143344599757e-21,-1.7707023051903053e-22,2.424988714908151e-22,-0.0,0.00029970030300319195,-5.994005914544687e-05,-4.995004928787239e-05,7.213946933290266e-22,8.493989746118861e-22,9.990009857574478e-06,4.295481672173424e-22,2.964615315390051e-21,-4.235164736271502e-22,-0.0,0.0006993007264100015,-0.0001398601452820003,-2.5271715719009837e-22,-0.00034965036320500076,1.5476143344599757e-21,4.295481672173424e-22,6.993007264100015e-05,1.3160075021458187e-23,2.6287175657078136e-23,-0.0,0.00019980019715148956,-2.0328790734103208e-20,-0.00010898192704189569,0.0,-1.7707023051903053e-22,2.964615315390051e-21,1.3160075021458187e-23,9.081827556656208e-06,0.0,-0.0,0.0005994006060063839,-3.3881317890172014e-21,-9.990009857574478e-05,-0.00029970030300319195,2.424988714908151e-22,-4.235164736271502e-22,2.6287175657078136e-23,0.0,4.995004928787239e-05,-0.0,0.0009990009712055326,-0.0,-0.0,-0.001998001942411065,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004995004856027663,11.0,13.0,6.0,0.038838449865579605,-0.005571351852267981,-0.004816611763089895,-0.009187241084873676,0.00022413484111893922,0.00024975024280138314,0.0004995004856027663,0.00016650016186758876,0.00042814327753148973,0.0006243756506592035,-0.005571351852267981,0.0021602329798042774,0.00024975024280138314,0.0004995004856027663,-0.00014942322741262615,-4.995004928787239e-05,-9.990009857574478e-05,-1.5246593050577406e-20,0.0,-0.0,-0.004816611763089895,0.00024975024280138314,0.0015595875447615981,0.00042814327753148973,2.1375659188045544e-22,-4.162504046689719e-05,6.785159808587182e-21,-9.081827010959387e-05,-7.135721534723416e-05,-0.0,-0.009187241084873676,0.0004995004856027663,0.00042814327753148973,0.007108962628990412,-4.003813466491644e-21,4.464267916554548e-21,-0.00019980019715148956,-3.3881317890172014e-21,-0.00017125731392297894,-0.0009365634177811444,0.00022413484111893922,-0.00014942322741262615,2.1375659188045544e-22,-4.003813466491644e-21,1.4942322195565794e-05,-2.125638846788592e-22,6.785847644809437e-22,-9.730743785219017e-23,2.1135394875509294e-22,-0.0,0.00024975024280138314,-4.995004928787239e-05,-4.162504046689719e-05,4.464267916554548e-21,-2.125638846788592e-22,8.325007911480498e-06,-6.230551666664304e-22,2.541098841762901e-21,-2.117582368135751e-22,-0.0,0.0004995004856027663,-9.990009857574478e-05,6.785159808587182e-21,-0.00019980019715148956,6.785847644809437e-22,-6.230551666664304e-22,3.996003943029791e-05,-1.1771984486350803e-22,-6.564086348795072e-23,-0.0,0.00016650016186758876,-1.5246593050577406e-20,-9.081827010959387e-05,-3.3881317890172014e-21,-9.730743785219017e-23,2.541098841762901e-21,-1.1771984486350803e-22,7.568189175799489e-06,8.470329472543003e-22,-0.0,0.00042814327753148973,0.0,-7.135721534723416e-05,-0.00017125731392297894,2.1135394875509294e-22,-2.117582368135751e-22,-6.564086348795072e-23,8.470329472543003e-22,2.8542885047500022e-05,-0.0,0.0006243756506592035,-0.0,-0.0,-0.0009365634177811444,-0.0,-0.0,-0.0,-0.0,-0.0,0.00018731268937699497,11.0,13.0,7.0,0.03423728421330452,-0.004828962031751871,-0.004174396861344576,-0.007046524900943041,0.0001921155781019479,0.00021407163876574486,0.00037462537875398993,0.00014271443069446832,0.0003211074508726597,0.0004162504046689719,-0.004828962031751871,0.001862331759184599,0.00021407163876574486,0.00037462537875398993,-0.00012807705206796527,-4.2814328480744734e-05,-7.492507575079799e-05,1.8634724839594607e-20,1.6940658945086007e-21,-0.0,-0.004174396861344576,0.00021407163876574486,0.0013444348005577922,0.0003211074508726597,-8.455912376856929e-22,-3.567860767361708e-05,-1.2832799445739368e-21,-7.784423360135406e-05,-5.3517909691436216e-05,-0.0,-0.007046524900943041,0.00037462537875398993,0.0003211074508726597,0.004513343796133995,-3.655286085271254e-21,-1.776822527906725e-21,-0.00012487512140069157,-3.3881317890172014e-21,-0.00010703581938287243,-0.0004995004856027663,0.0001921155781019479,-0.00012807705206796527,-8.455912376856929e-22,-3.655286085271254e-21,1.2807705388695467e-05,8.019730103996844e-22,1.212106768003235e-21,-5.977712785081086e-23,-1.1853028900309589e-22,-0.0,0.00021407163876574486,-4.2814328480744734e-05,-3.567860767361708e-05,-1.776822527906725e-21,8.019730103996844e-22,7.1357212618750054e-06,4.635176032687648e-22,-2.964615315390051e-21,-2.117582368135751e-22,-0.0,0.00037462537875398993,-7.492507575079799e-05,-1.2832799445739368e-21,-0.00012487512140069157,1.212106768003235e-21,4.635176032687648e-22,2.4975024643936194e-05,-1.8603897632166185e-23,-1.4676903869765296e-23,-0.0,0.00014271443069446832,1.8634724839594607e-20,-7.784423360135406e-05,-3.3881317890172014e-21,-5.977712785081086e-23,-2.964615315390051e-21,-1.8603897632166185e-23,6.4870196183619555e-06,4.235164736271502e-22,-0.0,0.0003211074508726597,1.6940658945086007e-21,-5.3517909691436216e-05,-0.00010703581938287243,-1.1853028900309589e-22,-2.117582368135751e-22,-1.4676903869765296e-23,4.235164736271502e-22,1.783930383680854e-05,-0.0,0.0004162504046689719,-0.0,-0.0,-0.0004995004856027663,-0.0,-0.0,-0.0,-0.0,-0.0,8.325008093379438e-05,11.0,13.0,8.0,0.030618419870734215,-0.004261763766407967,-0.0036838161759078503,-0.005577755626291037,0.00016810113447718322,0.00018731268937699497,0.00029137529782019556,0.00012487512140069157,0.00024975024280138314,0.00029137529782019556,-0.004261763766407967,0.00163682468701154,0.00018731268937699497,0.00029137529782019556,-0.00011206742055946961,-3.7462537875398993e-05,-5.827505810884759e-05,-1.1858461261560205e-20,2.541098841762901e-21,-0.0,-0.0036838161759078503,0.00018731268937699497,0.0011815836187452078,0.00024975024280138314,-6.158515564615712e-21,-3.121878035017289e-05,3.862719799224182e-21,-6.81137025821954e-05,-4.162504046689719e-05,-0.0,-0.005577755626291037,0.00029137529782019556,0.00024975024280138314,0.0030505210161209106,1.1771217334897694e-21,7.959275641240149e-21,-8.325008093379438e-05,3.3881317890172014e-21,-7.135721534723416e-05,-0.00029137529782019556,0.00016810113447718322,-0.00011206742055946961,-6.158515564615712e-21,1.1771217334897694e-21,1.120674187404802e-05,7.645689370758022e-22,-3.465980925034833e-22,1.5572237962452712e-22,9.264479027490362e-23,-0.0,0.00018731268937699497,-3.7462537875398993e-05,-3.121878035017289e-05,7.959275641240149e-21,7.645689370758022e-22,6.243756160984049e-06,-7.725439295525776e-22,1.9058241313221758e-21,-4.235164736271502e-22,-0.0,0.00029137529782019556,-5.827505810884759e-05,3.862719799224182e-21,-8.325008093379438e-05,-3.465980925034833e-22,-7.725439295525776e-22,1.6650015822960995e-05,-2.350988701644575e-37,4.70197740328915e-38,-0.0,0.00012487512140069157,-1.1858461261560205e-20,-6.81137025821954e-05,3.3881317890172014e-21,1.5572237962452712e-22,1.9058241313221758e-21,-2.350988701644575e-37,5.676141881849617e-06,-4.235164736271502e-22,-0.0,0.00024975024280138314,2.541098841762901e-21,-4.162504046689719e-05,-7.135721534723416e-05,9.264479027490362e-23,-4.235164736271502e-22,4.70197740328915e-38,-4.235164736271502e-22,1.1892869224539027e-05,-0.0,0.00029137529782019556,-0.0,-0.0,-0.00029137529782019556,-0.0,-0.0,-0.0,-0.0,-0.0,4.162504046689719e-05,11.0,13.0,9.0,0.02769569121301174,-0.0038141345139592886,-0.0032967033330351114,-0.004525777418166399,0.00014942322741262615,0.00016650016186758876,0.00023310023243539035,0.00011100011033704504,0.00019980019715148956,0.0002119092969223857,-0.0038141345139592886,0.0014601353323087096,0.00016650016186758876,0.00023310023243539035,-9.961548494175076e-05,-3.330003164592199e-05,-4.662004721467383e-05,-1.1858461261560205e-20,0.0,-0.0,-0.0032967033330351114,0.00016650016186758876,0.0010539965005591512,0.00019980019715148956,3.229420598438522e-22,-2.775002758426126e-05,5.883100973294458e-22,-6.054551340639591e-05,-3.330003164592199e-05,-0.0,-0.004525777418166399,0.00023310023243539035,0.00019980019715148956,0.0021607179660350084,-2.9311811940380246e-22,9.4078375207276e-22,-5.827505810884759e-05,0.0,-4.995004928787239e-05,-0.00018163654021918774,0.00014942322741262615,-9.961548494175076e-05,3.229420598438522e-22,-2.9311811940380246e-22,9.961548130377196e-06,-1.5621631068083496e-23,3.311842803569916e-40,-3.4083558980858866e-23,4.885301990063374e-23,-0.0,0.00016650016186758876,-3.330003164592199e-05,-2.775002758426126e-05,9.4078375207276e-22,-1.5621631068083496e-23,5.550005425902782e-06,-1.1766202451459895e-22,2.117582368135751e-21,0.0,-0.0,0.00023310023243539035,-4.662004721467383e-05,5.883100973294458e-22,-5.827505810884759e-05,3.311842803569916e-40,-1.1766202451459895e-22,1.1655011803668458e-05,-4.1142302278780063e-38,0.0,-0.0,0.00011100011033704504,-1.1858461261560205e-20,-6.054551340639591e-05,0.0,-3.4083558980858866e-23,2.117582368135751e-21,-4.1142302278780063e-38,5.045459602115443e-06,0.0,-0.0,0.00019980019715148956,0.0,-3.330003164592199e-05,-4.995004928787239e-05,4.885301990063374e-23,0.0,0.0,0.0,8.325007911480498e-06,-0.0,0.0002119092969223857,-0.0,-0.0,-0.00018163654021918774,-0.0,-0.0,-0.0,-0.0,-0.0,2.2704567527398467e-05,11.0,13.0,10.0,0.02528485469520092,-0.0034517929889261723,-0.0029833803419023752,-0.0037462536711245775,0.00013448089885059744,0.00014985015150159597,0.00019071837596129626,9.990009857574478e-05,0.00016347289783880115,0.00015893197269178927,-0.0034517929889261723,0.0013179361121729016,0.00014985015150159597,0.00019071837596129626,-8.965393499238417e-05,-2.9970029572723433e-05,-3.814367300947197e-05,-1.0164395367051604e-20,8.470329472543003e-22,-0.0,-0.0029833803419023752,0.00014985015150159597,0.0009513213881291449,0.00016347289783880115,7.997287579223158e-22,-2.4975024643936194e-05,-7.701513964685764e-22,-5.4490963520947844e-05,-2.7245481760473922e-05,-0.0,-0.0037462536711245775,0.00019071837596129626,0.00016347289783880115,0.0015874276868999004,-4.6020346860165414e-21,-5.561736963427184e-22,-4.23818601120729e-05,1.6940658945086007e-21,-3.632731022662483e-05,-0.00011919897951884195,0.00013448089885059744,-8.965393499238417e-05,7.997287579223158e-22,-4.6020346860165414e-21,8.965393135440536e-06,-2.2605213135891566e-23,9.336460881152224e-22,-4.9320464163187885e-23,-1.1032607090220314e-23,-0.0,0.00014985015150159597,-2.9970029572723433e-05,-2.4975024643936194e-05,-5.561736963427184e-22,-2.2605213135891566e-23,4.995004928787239e-06,1.540302792937153e-22,2.117582368135751e-21,-1.0587911840678754e-22,-0.0,0.00019071837596129626,-3.814367300947197e-05,-7.701513964685764e-22,-4.23818601120729e-05,9.336460881152224e-22,1.540302792937153e-22,8.47637238621246e-06,5.877471754111438e-38,-5.877471754111438e-39,-0.0,9.990009857574478e-05,-1.0164395367051604e-20,-5.4490963520947844e-05,1.6940658945086007e-21,-4.9320464163187885e-23,2.117582368135751e-21,5.877471754111438e-38,4.540913778328104e-06,-2.117582368135751e-22,-0.0,0.00016347289783880115,8.470329472543003e-22,-2.7245481760473922e-05,-3.632731022662483e-05,-1.1032607090220314e-23,-1.0587911840678754e-22,-5.877471754111438e-39,-2.117582368135751e-22,6.054551704437472e-06,-0.0,0.00015893197269178927,-0.0,-0.0,-0.00011919897951884195,-0.0,-0.0,-0.0,-0.0,-0.0,1.3244331057649106e-05,11.0,13.0,11.0,0.023261703550815582,-0.003152441931888461,-0.002724548103287816,-0.003152441931888461,0.00012225536920595914,0.0001362274051643908,0.00015893197269178927,9.081827010959387e-05,0.0001362274051643908,0.00012225536920595914,-0.003152441931888461,0.001201013452373445,0.0001362274051643908,0.00015893197269178927,-8.150357462000102e-05,-2.7245481760473922e-05,-3.178639599354938e-05,1.7787691892340307e-20,9.531119945689071e-21,6.776263578034403e-21,-0.002724548103287816,0.0001362274051643908,0.0008669017115607858,0.0001362274051643908,3.772187546899024e-21,-2.2704567527398467e-05,-4.235164736271502e-22,-4.953724055667408e-05,-2.2704567527398467e-05,2.541098841762901e-20,-0.003152441931888461,0.00015893197269178927,0.0001362274051643908,0.001201013452373445,-1.4865164641272076e-21,-8.548461689718752e-21,-3.178639599354938e-05,1.470586270116047e-21,-2.7245481760473922e-05,-8.150357462000102e-05,0.00012225536920595914,-8.150357462000102e-05,3.772187546899024e-21,-1.4865164641272076e-21,8.150357643899042e-06,-5.369435141492882e-22,-3.259915941550449e-23,-7.15654928760864e-23,-3.261641338122348e-23,1.71169828627016e-22,0.0001362274051643908,-2.7245481760473922e-05,-2.2704567527398467e-05,-8.548461689718752e-21,-5.369435141492882e-22,4.540913778328104e-06,1.867372551690356e-21,-2.541098841762901e-21,-1.2371199443424338e-22,-3.633157274702356e-23,0.00015893197269178927,-3.178639599354938e-05,-4.235164736271502e-22,-3.178639599354938e-05,-3.259915941550449e-23,1.867372551690356e-21,6.3572792896593455e-06,-2.6469779601696886e-23,-1.7999450129153882e-21,-1.2705494208814505e-21,9.081827010959387e-05,1.7787691892340307e-20,-4.953724055667408e-05,1.470586270116047e-21,-7.15654928760864e-23,-2.541098841762901e-21,-2.6469779601696886e-23,4.1281032281403895e-06,-2.117582368135751e-22,-1.0587911840678754e-22,0.0001362274051643908,9.531119945689071e-21,-2.2704567527398467e-05,-2.7245481760473922e-05,-3.261641338122348e-23,-1.2371199443424338e-22,-1.7999450129153882e-21,-2.117582368135751e-22,4.540913778328104e-06,-4.870439446712227e-21,0.00012225536920595914,6.776263578034403e-21,2.541098841762901e-20,-8.150357462000102e-05,1.71169828627016e-22,-3.633157274702356e-23,-1.2705494208814505e-21,-1.0587911840678754e-22,-4.870439446712227e-21,8.150357643899042e-06,11.0,13.0,12.0,0.02153935842216015,-0.0029009452555328608,-0.002507108263671398,-0.0026896181516349316,0.00011206742055946961,0.00012487512140069157,0.00013448089885059744,8.325008093379438e-05,0.0001152693439507857,9.605778905097395e-05,-0.0029009452555328608,0.0011031703324988484,0.00012487512140069157,0.00013448089885059744,-7.471161370631307e-05,-2.4975024643936194e-05,-2.689618122531101e-05,-1.0164395367051604e-20,-3.6347681286708175e-21,8.470329472543003e-21,-0.002507108263671398,0.00012487512140069157,0.0007962608360685408,0.0001152693439507857,-4.019834486791988e-22,-2.0812520233448595e-05,-2.964615315390051e-21,-4.5409135054796934e-05,-1.9211558537790552e-05,-7.623296525288703e-21,-0.0026896181516349316,0.00013448089885059744,0.0001152693439507857,0.0009308872977271676,-2.8281412175835637e-21,-2.4647215561113434e-22,-2.4451073841191828e-05,-2.5415477730377314e-21,-2.095806303259451e-05,-5.763467197539285e-05,0.00011206742055946961,-7.471161370631307e-05,-4.019834486791988e-22,-2.8281412175835637e-21,7.471161097782897e-06,9.72551190192341e-24,5.401133970801814e-22,2.12192981213886e-23,1.441332808639104e-23,3.468325577417331e-24,0.00012487512140069157,-2.4975024643936194e-05,-2.0812520233448595e-05,-2.4647215561113434e-22,9.72551190192341e-24,4.162503955740249e-06,-4.6465617567960114e-23,1.6940658945086007e-21,5.84886529353208e-23,-2.2903061770154053e-23,0.00013448089885059744,-2.689618122531101e-05,-2.964615315390051e-21,-2.4451073841191828e-05,5.401133970801814e-22,-4.6465617567960114e-23,4.890214768238366e-06,2.6469779601696886e-23,5.293955920339377e-22,-1.4823076576950256e-21,8.325008093379438e-05,-1.0164395367051604e-20,-4.5409135054796934e-05,-2.5415477730377314e-21,2.12192981213886e-23,1.6940658945086007e-21,2.6469779601696886e-23,3.7840945878997445e-06,2.117582368135751e-22,5.293955920339377e-23,0.0001152693439507857,-3.6347681286708175e-21,-1.9211558537790552e-05,-2.095806303259451e-05,1.441332808639104e-23,5.84886529353208e-23,5.293955920339377e-22,2.117582368135751e-22,3.4930105812236434e-06,1.4823076576950256e-21,9.605778905097395e-05,8.470329472543003e-21,-7.623296525288703e-21,-5.763467197539285e-05,3.468325577417331e-24,-2.2903061770154053e-23,-1.4823076576950256e-21,5.293955920339377e-23,1.4823076576950256e-21,5.239515758148627e-06,11.0,13.0,13.0,0.020055176690220833,-0.0026866623666137457,-0.0023218540009111166,-0.0023218540009111166,0.00010344685142626986,0.0001152693439507857,0.0001152693439507857,7.684623415116221e-05,9.880229481495917e-05,7.684623415116221e-05,-0.0026866623666137457,0.0010200844844803214,0.0001152693439507857,0.0001152693439507857,-6.896456761751324e-05,-2.305386988155078e-05,-2.305386988155078e-05,-1.5585406229479126e-19,-1.2985885172015253e-19,-1.5415999640028266e-19,-0.0023218540009111166,0.0001152693439507857,0.0007362767355516553,9.880229481495917e-05,-3.311453438703243e-19,-1.9211558537790552e-05,-9.740878893424454e-21,-4.191612606518902e-05,-1.6467049135826528e-05,1.8634724839594607e-20,-0.0023218540009111166,0.0001152693439507857,9.880229481495917e-05,0.0007362767355516553,-3.3111848634981045e-19,-1.2847534206245644e-20,-1.9211558537790552e-05,3.871188787759404e-20,-1.6467049135826528e-05,-4.191612606518902e-05,0.00010344685142626986,-6.896456761751324e-05,-3.311453438703243e-19,-3.3111848634981045e-19,6.896456397953443e-06,7.608694040979014e-21,7.616455321570235e-21,1.6600787879729014e-20,1.3112504228694674e-20,1.6595703627018654e-20,0.0001152693439507857,-2.305386988155078e-05,-1.9211558537790552e-05,-1.2847534206245644e-20,7.608694040979014e-21,3.84231134376023e-06,-2.7357615413707995e-22,-2.964615315390051e-21,1.2852027204552098e-22,1.157728326508718e-21,0.0001152693439507857,-2.305386988155078e-05,-9.740878893424454e-21,-1.9211558537790552e-05,7.616455321570235e-21,-2.7357615413707995e-22,3.84231134376023e-06,1.138200522872966e-21,-4.235164736271502e-22,-2.964615315390051e-21,7.684623415116221e-05,-1.5585406229479126e-19,-4.191612606518902e-05,3.871188787759404e-20,1.6600787879729014e-20,-2.964615315390051e-21,1.138200522872966e-21,3.4930105812236434e-06,-4.129285617864714e-21,-1.2176098616780567e-21,9.880229481495917e-05,-1.2985885172015253e-19,-1.6467049135826528e-05,-1.6467049135826528e-05,1.3112504228694674e-20,1.2852027204552098e-22,-4.235164736271502e-22,-4.129285617864714e-21,2.7445082650956465e-06,-8.470329472543003e-22,7.684623415116221e-05,-1.5415999640028266e-19,1.8634724839594607e-20,-4.191612606518902e-05,1.6595703627018654e-20,1.157728326508718e-21,-2.964615315390051e-21,-1.2176098616780567e-21,-8.470329472543003e-22,3.4930105812236434e-06,11.0,13.0,14.0,0.018762830644845963,-0.002501893788576126,-0.002162123564630747,-0.0020247609354555607,9.605778905097395e-05,0.00010703581938287243,9.990009857574478e-05,7.135721534723416e-05,8.562865696148947e-05,6.243756070034578e-05,-0.002501893788576126,0.0009486484341323376,0.00010703581938287243,9.990009857574478e-05,-6.403852603398263e-05,-2.1407164240372367e-05,-1.9980019715148956e-05,7.623296525288703e-21,2.541098841762901e-21,5.082197683525802e-21,-0.002162123564630747,0.00010703581938287243,0.0006847049226053059,8.562865696148947e-05,0.0,-1.783930383680854e-05,3.3881317890172014e-21,-3.892211680067703e-05,-1.4271442523750011e-05,6.776263578034403e-21,-0.0020247609354555607,9.990009857574478e-05,8.562865696148947e-05,0.000592470692936331,-0.0,-0.0,-1.536924537504092e-05,1.7008693086342653e-22,-1.3173639672459103e-05,-3.121878035017289e-05,9.605778905097395e-05,-6.403852603398263e-05,0.0,-0.0,6.403852694347734e-06,0.0,0.0,0.0,0.0,0.0,0.00010703581938287243,-2.1407164240372367e-05,-1.783930383680854e-05,-0.0,0.0,3.5678606309375027e-06,0.0,-1.4823076576950256e-21,0.0,-1.447660577504244e-23,9.990009857574478e-05,-1.9980019715148956e-05,3.3881317890172014e-21,-1.536924537504092e-05,0.0,0.0,3.073849256907124e-06,2.6469779601696886e-23,-5.293955920339377e-22,-7.411538288475128e-22,7.135721534723416e-05,7.623296525288703e-21,-3.892211680067703e-05,1.7008693086342653e-22,0.0,-1.4823076576950256e-21,2.6469779601696886e-23,3.2435098091809778e-06,0.0,5.293955920339377e-23,8.562865696148947e-05,2.541098841762901e-21,-1.4271442523750011e-05,-1.3173639672459103e-05,0.0,0.0,-5.293955920339377e-22,0.0,2.195606612076517e-06,-1.164670302474663e-21,6.243756070034578e-05,5.082197683525802e-21,6.776263578034403e-21,-3.121878035017289e-05,0.0,-1.447660577504244e-23,-7.411538288475128e-22,5.293955920339377e-23,-1.164670302474663e-21,2.401444817223819e-06,11.0,13.0,15.0,0.017627300694584846,-0.002340928418561816,-0.0020229769870638847,-0.001781306928023696,8.965393499238417e-05,9.990009857574478e-05,8.741259080125019e-05,6.660006329184398e-05,7.492507575079799e-05,5.141917063156143e-05,-0.002340928418561816,0.0008865707204677165,9.990009857574478e-05,8.741259080125019e-05,-5.9769288782263175e-05,-1.9980019715148956e-05,-1.7482518160250038e-05,-8.258571235729428e-21,-2.117582368135751e-21,-3.3881317890172014e-21,-0.0020229769870638847,9.990009857574478e-05,0.000639890437014401,7.492507575079799e-05,0.0,-1.6650015822960995e-05,-1.6940658945086007e-21,-3.632731022662483e-05,-1.2487512321968097e-05,-4.235164736271502e-21,-0.001781306928023696,8.741259080125019e-05,7.492507575079799e-05,0.000483881012769416,-0.0,-4.1969987621526953e-22,-1.2487512321968097e-05,-1.4659582693097177e-22,-1.0703582120186184e-05,-2.373192364757415e-05,8.965393499238417e-05,-5.9769288782263175e-05,0.0,-0.0,5.976929060125258e-06,0.0,0.0,0.0,0.0,0.0,9.990009857574478e-05,-1.9980019715148956e-05,-1.6650015822960995e-05,-4.1969987621526953e-22,0.0,3.3300034374406096e-06,4.213745490309632e-24,1.2705494208814505e-21,9.28387759046629e-24,2.0853684757645818e-23,8.741259080125019e-05,-1.7482518160250038e-05,-1.6940658945086007e-21,-1.2487512321968097e-05,0.0,4.213745490309632e-24,2.4975024643936194e-06,3.970466940254533e-23,2.6469779601696886e-22,5.293955920339377e-22,6.660006329184398e-05,-8.258571235729428e-21,-3.632731022662483e-05,-1.4659582693097177e-22,0.0,1.2705494208814505e-21,3.970466940254533e-23,3.027275852218736e-06,-2.117582368135751e-22,7.940933880509066e-23,7.492507575079799e-05,-2.117582368135751e-21,-1.2487512321968097e-05,-1.0703582120186184e-05,0.0,9.28387759046629e-24,2.6469779601696886e-22,-2.117582368135751e-22,1.7839303154687514e-06,5.293955920339377e-22,5.141917063156143e-05,-3.3881317890172014e-21,-4.235164736271502e-21,-2.373192364757415e-05,0.0,2.0853684757645818e-23,5.293955920339377e-22,7.940933880509066e-23,5.293955920339377e-22,1.6951374846030376e-06,11.0,13.0,16.0,0.016621623188257217,-0.0021994407288730145,-0.0019006729125976562,-0.0015793030615895987,8.405056723859161e-05,9.365634468849748e-05,7.712875230936334e-05,6.243756070034578e-05,6.611036224057898e-05,4.284930764697492e-05,-0.0021994407288730145,0.0008321241475641727,9.365634468849748e-05,7.712875230936334e-05,-5.6033710279734805e-05,-1.8731268937699497e-05,-1.5425750461872667e-05,-5.717472393966527e-21,2.117582368135751e-22,6.776263578034403e-21,-0.0019006729125976562,9.365634468849748e-05,0.0006005858886055648,6.611036224057898e-05,0.0,-1.5609390175086446e-05,2.117582368135751e-22,-3.40568512910977e-05,-1.1018393706763163e-05,-4.235164736271502e-22,-0.0015793030615895987,7.712875230936334e-05,6.611036224057898e-05,0.0004003349458798766,-0.0,-0.0,-1.0283833944413345e-05,-5.598513027739864e-23,-8.81471441971371e-06,-1.836398951127194e-05,8.405056723859161e-05,-5.6033710279734805e-05,0.0,-0.0,5.60337093702401e-06,0.0,0.0,0.0,0.0,0.0,9.365634468849748e-05,-1.8731268937699497e-05,-1.5609390175086446e-05,-0.0,0.0,3.1218780804920243e-06,0.0,1.164670302474663e-21,0.0,1.8300580614108706e-23,7.712875230936334e-05,-1.5425750461872667e-05,2.117582368135751e-22,-1.0283833944413345e-05,0.0,0.0,2.056766788882669e-06,0.0,-5.293955920339377e-23,-8.999725064576941e-22,6.243756070034578e-05,-5.717472393966527e-21,-3.40568512910977e-05,-5.598513027739864e-23,0.0,1.164670302474663e-21,0.0,2.8380709409248084e-06,0.0,2.6469779601696886e-23,6.611036224057898e-05,2.117582368135751e-22,-1.1018393706763163e-05,-8.81471441971371e-06,0.0,0.0,-5.293955920339377e-23,0.0,1.469119069952285e-06,0.0,4.284930764697492e-05,6.776263578034403e-21,-4.235164736271502e-22,-1.836398951127194e-05,0.0,1.8300580614108706e-23,-8.999725064576941e-22,2.6469779601696886e-23,0.0,1.2242659295225167e-06,11.0,14.0,3.0,0.061438560485839844,-0.009681984782218933,-0.007846320047974586,-0.026298701763153076,0.0004162504046689719,0.00043290044413879514,0.001623376621864736,0.00027056277031078935,0.0012987012742087245,0.003246753243729472,-0.009681984782218933,0.0038788989186286926,0.00043290044413879514,0.001623376621864736,-0.0002775002794805914,-8.658008300699294e-05,-0.0003246753185521811,2.710505431213761e-20,0.0,-0.0,-0.007846320047974586,0.00043290044413879514,0.002424658741801977,0.0012987012742087245,0.0,-6.660006329184398e-05,0.0,-0.00013528138515539467,-0.00019980019715148956,-0.0,-0.026298701763153076,0.001623376621864736,0.0012987012742087245,0.058766234666109085,0.0,0.0,-0.001623376621864736,0.0,-0.0012987012742087245,-0.019480518996715546,0.0004162504046689719,-0.0002775002794805914,0.0,0.0,2.775002758426126e-05,0.0,0.0,0.0,0.0,-0.0,0.00043290044413879514,-8.658008300699294e-05,-6.660006329184398e-05,0.0,0.0,1.3320013749762438e-05,0.0,-3.0626432861712957e-21,0.0,-0.0,0.001623376621864736,-0.0003246753185521811,0.0,-0.001623376621864736,0.0,0.0,0.0003246753185521811,0.0,0.0,-0.0,0.00027056277031078935,2.710505431213761e-20,-0.00013528138515539467,0.0,0.0,-3.0626432861712957e-21,0.0,1.0406260116724297e-05,0.0,-0.0,0.0012987012742087245,0.0,-0.00019980019715148956,-0.0012987012742087245,0.0,0.0,0.0,0.0,0.00019980019715148956,-0.0,0.003246753243729472,-0.0,-0.0,-0.019480518996715546,-0.0,-0.0,-0.0,-0.0,-0.0,0.009740259498357773,11.0,14.0,4.0,0.04986139014363289,-0.007504994980990887,-0.006079545244574547,-0.016753247007727623,0.00031218782532960176,0.0003246753185521811,0.0009740259847603738,0.000202922077733092,0.0007792207761667669,0.001623376621864736,-0.007504994980990887,0.0029578753747045994,0.0003246753185521811,0.0009740259847603738,-0.00020812520233448595,-6.49350622552447e-05,-0.00019480519404169172,-3.7269449679189215e-20,-4.7871094010506057e-20,-5.752411986052884e-19,-0.006079545244574547,0.0003246753185521811,0.001848464016802609,0.0007792207761667669,0.0,-4.995004928787239e-05,-4.751888955296893e-19,-0.000101461038866546,-0.00011988011829089373,-2.489015828083806e-18,-0.016753247007727623,0.0009740259847603738,0.0007792207761667669,0.022532466799020767,0.0,5.577213985247288e-21,-0.0006493506371043622,-8.573179558944198e-19,-0.0005194804980419576,-0.004870129749178886,0.00031218782532960176,-0.00020812520233448595,0.0,0.0,2.0812520233448595e-05,0.0,0.0,0.0,0.0,-0.0,0.0003246753185521811,-6.49350622552447e-05,-4.995004928787239e-05,5.577213985247288e-21,0.0,9.990009857574478e-06,-6.401083314893244e-36,-1.977874874629169e-21,-8.58032975177996e-22,-4.72840765908342e-35,0.0009740259847603738,-0.00019480519404169172,-4.751888955296893e-19,-0.0006493506371043622,0.0,-6.401083314893244e-36,0.0001298701245104894,3.244158095345506e-20,3.5632207215353886e-20,3.8349414101999034e-19,0.000202922077733092,-3.7269449679189215e-20,-0.000101461038866546,-8.573179558944198e-19,0.0,-1.977874874629169e-21,3.244158095345506e-20,7.804695087543223e-06,1.7357725994874658e-20,1.9409493220584744e-19,0.0007792207761667669,-4.7871094010506057e-20,-0.00011988011829089373,-0.0005194804980419576,0.0,-8.58032975177996e-22,3.5632207215353886e-20,1.7357725994874658e-20,7.992007886059582e-05,-2.2812255120451623e-20,0.001623376621864736,-5.752411986052884e-19,-2.489015828083806e-18,-0.004870129749178886,-0.0,-4.72840765908342e-35,3.8349414101999034e-19,1.9409493220584744e-19,-2.2812255120451623e-20,0.001623376621864736,11.0,14.0,5.0,0.04203011095523834,-0.0061338660307228565,-0.0049675325863063335,-0.011632652953267097,0.00024975024280138314,0.0002597402490209788,0.0006493506371043622,0.00016233765927609056,0.0005194804980419576,0.0009276437922380865,-0.0061338660307228565,0.0023922743275761604,0.0002597402490209788,0.0006493506371043622,-0.00016650016186758876,-5.194805271457881e-05,-0.0001298701245104894,7.835054762102278e-21,0.0,-0.0,-0.0049675325863063335,0.0002597402490209788,0.001494755269959569,0.0005194804980419576,0.0,-3.996003943029791e-05,0.0,-8.116882963804528e-05,-7.992007886059582e-05,-0.0,-0.011632652953267097,0.0006493506371043622,0.0005194804980419576,0.011382189579308033,0.0,-1.274183684139142e-21,-0.0003246753185521811,0.0,-0.0002597402490209788,-0.001855287584476173,0.00024975024280138314,-0.00016650016186758876,0.0,0.0,1.6650015822960995e-05,0.0,0.0,0.0,0.0,-0.0,0.0002597402490209788,-5.194805271457881e-05,-3.996003943029791e-05,-1.274183684139142e-21,0.0,7.992008249857463e-06,0.0,-1.2705494208814505e-21,0.0,-0.0,0.0006493506371043622,-0.0001298701245104894,0.0,-0.0003246753185521811,0.0,0.0,6.49350622552447e-05,0.0,0.0,-0.0,0.00016233765927609056,7.835054762102278e-21,-8.116882963804528e-05,0.0,0.0,-1.2705494208814505e-21,0.0,6.243756160984049e-06,-8.470329472543003e-22,-0.0,0.0005194804980419576,0.0,-7.992007886059582e-05,-0.0002597402490209788,0.0,0.0,0.0,-8.470329472543003e-22,3.996003943029791e-05,-0.0,0.0009276437922380865,-0.0,-0.0,-0.001855287584476173,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046382189611904323,11.0,14.0,6.0,0.03635471686720848,-0.005188858602195978,-0.0042014531791210175,-0.008557514287531376,0.00020812520233448595,0.00021645022206939757,0.00046382189611904323,0.00013528138515539467,0.0003710575110744685,0.0005797773483209312,-0.005188858602195978,0.0020090227480977774,0.00021645022206939757,0.00046382189611904323,-0.0001387501397402957,-4.329004150349647e-05,-9.276437776861712e-05,1.207021949837378e-20,1.6940658945086007e-21,-0.0,-0.0042014531791210175,0.00021645022206939757,0.001255143666639924,0.0003710575110744685,0.0,-3.330003164592199e-05,0.0,-6.764069257769734e-05,-5.7085770095000044e-05,-0.0,-0.008557514287531376,0.00046382189611904323,0.0003710575110744685,0.006611781194806099,0.0,3.3223073165758386e-21,-0.00018552875553723425,3.3881317890172014e-21,-0.00014842300151940435,-0.0008696660515852273,0.00020812520233448595,-0.0001387501397402957,0.0,0.0,1.387501379213063e-05,0.0,0.0,0.0,0.0,-0.0,0.00021645022206939757,-4.329004150349647e-05,-3.330003164592199e-05,3.3223073165758386e-21,0.0,6.660006874881219e-06,0.0,-1.4823076576950256e-21,0.0,-0.0,0.00046382189611904323,-9.276437776861712e-05,0.0,-0.00018552875553723425,0.0,0.0,3.710575037985109e-05,0.0,0.0,-0.0,0.00013528138515539467,1.207021949837378e-20,-6.764069257769734e-05,3.3881317890172014e-21,0.0,-1.4823076576950256e-21,0.0,5.203130058362149e-06,-4.235164736271502e-22,-0.0,0.0003710575110744685,1.6940658945086007e-21,-5.7085770095000044e-05,-0.00014842300151940435,0.0,0.0,0.0,-4.235164736271502e-22,2.283430876559578e-05,-0.0,0.0005797773483209312,-0.0,-0.0,-0.0008696660515852273,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001739332074066624,11.0,14.0,7.0,0.03204355016350746,-0.0044972882606089115,-0.003641001880168915,-0.006563080009073019,0.0001783930347301066,0.00018552875553723425,0.0003478664148133248,0.00011595547402976081,0.00027829312602989376,0.00038651825161650777,-0.0044972882606089115,0.0017319584731012583,0.00018552875553723425,0.0003478664148133248,-0.00011892869224539027,-3.710575037985109e-05,-6.957328150747344e-05,-2.0540548970916783e-20,-8.470329472543003e-22,-0.0,-0.003641001880168915,0.00018552875553723425,0.0010819537565112114,0.00027829312602989376,0.0,-2.8542885047500022e-05,0.0,-5.7977737014880404e-05,-4.2814328480744734e-05,-0.0,-0.006563080009073019,0.0003478664148133248,0.00027829312602989376,0.004197588190436363,0.0,-7.751978848296818e-22,-0.00011595547402976081,-1.6940658945086007e-21,-9.276437776861712e-05,-0.00046382189611904323,0.0001783930347301066,-0.00011892869224539027,0.0,0.0,1.1892869224539027e-05,0.0,0.0,0.0,0.0,-0.0,0.00018552875553723425,-3.710575037985109e-05,-2.8542885047500022e-05,-7.751978848296818e-22,0.0,5.708577191398945e-06,0.0,3.1763735522036263e-21,0.0,-0.0,0.0003478664148133248,-6.957328150747344e-05,0.0,-0.00011595547402976081,0.0,0.0,2.319109444215428e-05,0.0,0.0,-0.0,0.00011595547402976081,-2.0540548970916783e-20,-5.7977737014880404e-05,-1.6940658945086007e-21,0.0,3.1763735522036263e-21,0.0,4.459825959202135e-06,4.235164736271502e-22,-0.0,0.00027829312602989376,-8.470329472543003e-22,-4.2814328480744734e-05,-9.276437776861712e-05,0.0,0.0,0.0,4.235164736271502e-22,1.4271442523750011e-05,-0.0,0.00038651825161650777,-0.0,-0.0,-0.00046382189611904323,-0.0,-0.0,-0.0,-0.0,-0.0,7.730365177849308e-05,11.0,14.0,8.0,0.028653638437390327,-0.003968947567045689,-0.003212932962924242,-0.005194805096834898,0.00015609391266480088,0.00016233765927609056,0.00027056277031078935,0.000101461038866546,0.00021645022206939757,0.00027056277031078935,-0.003968947567045689,0.0015222277725115418,0.00016233765927609056,0.00027056277031078935,-0.00010406260116724297,-3.246753112762235e-05,-5.411255551734939e-05,3.9387032047324966e-20,1.9820570965750628e-19,7.7144290813252015e-19,-0.003212932962924242,0.00016233765927609056,0.0009508720249868929,0.00021645022206939757,4.313220859293244e-20,-2.4975024643936194e-05,1.991981066727197e-19,-5.0730519433273e-05,-3.330003164592199e-05,3.6593852498825944e-19,-0.005194805096834898,0.00027056277031078935,0.00021645022206939757,0.0028370439540594816,5.653400017693935e-19,2.5168820953546454e-19,-7.730365177849308e-05,1.3552527156068805e-19,-6.184291851241142e-05,-0.00027056277031078935,0.00015609391266480088,-0.00010406260116724297,4.313220859293244e-20,5.653400017693935e-19,1.0406260116724297e-05,4.969526346021034e-35,-1.5404359980963423e-20,2.7083389842945504e-35,-1.2323487823212025e-20,-5.391526074116555e-20,0.00016233765927609056,-3.246753112762235e-05,-2.4975024643936194e-05,2.5168820953546454e-19,4.969526346021034e-35,4.995004928787239e-06,-6.865943204249649e-21,-8.470329472543003e-22,-5.399835038746165e-21,-2.4030802022667338e-20,0.00027056277031078935,-5.411255551734939e-05,1.991981066727197e-19,-7.730365177849308e-05,-1.5404359980963423e-20,-6.865943204249649e-21,1.5460729628102854e-05,-9.65523258048897e-21,-1.1242960529844758e-20,-2.174003032936543e-20,0.000101461038866546,3.9387032047324966e-20,-5.0730519433273e-05,1.3552527156068805e-19,2.7083389842945504e-35,-8.470329472543003e-22,-9.65523258048897e-21,3.9023475437716115e-06,1.0587911840678754e-21,-1.0686774464163046e-20,0.00021645022206939757,1.9820570965750628e-19,-3.330003164592199e-05,-6.184291851241142e-05,-1.2323487823212025e-20,-5.399835038746165e-21,-1.1242960529844758e-20,1.0587911840678754e-21,9.51429501583334e-06,-3.0530415691068234e-20,0.00027056277031078935,7.7144290813252015e-19,3.6593852498825944e-19,-0.00027056277031078935,-5.391526074116555e-20,-2.4030802022667338e-20,-2.174003032936543e-20,-1.0686774464163046e-20,-3.0530415691068234e-20,3.865182588924654e-05,11.0,14.0,9.0,0.025916356593370438,-0.0035520035307854414,-0.002875180449336767,-0.004214875865727663,0.0001387501397402957,0.00014430013834498823,0.00021645022206939757,9.018759010359645e-05,0.00017316016601398587,0.00019677291857078671,-0.0035520035307854414,0.0013579013757407665,0.00014430013834498823,0.00021645022206939757,-9.250009316019714e-05,-2.886002948798705e-05,-4.329004150349647e-05,6.3527471044072525e-21,-8.470329472543003e-22,-0.0,-0.002875180449336767,0.00014430013834498823,0.0008481796248815954,0.00017316016601398587,0.0,-2.2200021703611128e-05,0.0,-4.5093795051798224e-05,-2.6640027499524876e-05,-0.0,-0.004214875865727663,0.00021645022206939757,0.00017316016601398587,0.0020094732753932476,0.0,-5.85652734173231e-23,-5.411255551734939e-05,-3.3881317890172014e-21,-4.329004150349647e-05,-0.00016866250371094793,0.0001387501397402957,-9.250009316019714e-05,0.0,0.0,9.250009497918654e-06,0.0,0.0,0.0,0.0,-0.0,0.00014430013834498823,-2.886002948798705e-05,-2.2200021703611128e-05,-5.85652734173231e-23,0.0,4.440004431671696e-06,0.0,-1.0587911840678754e-21,0.0,-0.0,0.00021645022206939757,-4.329004150349647e-05,0.0,-5.411255551734939e-05,0.0,0.0,1.0822510375874117e-05,0.0,0.0,-0.0,9.018759010359645e-05,6.3527471044072525e-21,-4.5093795051798224e-05,-3.3881317890172014e-21,0.0,-1.0587911840678754e-21,0.0,3.4687534480326576e-06,6.352747104407253e-22,-0.0,0.00017316016601398587,-8.470329472543003e-22,-2.6640027499524876e-05,-4.329004150349647e-05,0.0,0.0,0.0,6.352747104407253e-22,6.660006874881219e-06,-0.0,0.00019677291857078671,-0.0,-0.0,-0.00016866250371094793,-0.0,-0.0,-0.0,-0.0,-0.0,2.108281296386849e-05,11.0,14.0,10.0,0.023658841848373413,-0.0032145127188414335,-0.002601830055937171,-0.003488783957436681,0.00012487512140069157,0.0001298701245104894,0.0001770956296240911,8.116882963804528e-05,0.00014167650078888983,0.00014757968892809004,-0.0032145127188414335,0.0012256531044840813,0.0001298701245104894,0.0001770956296240911,-8.325008093379438e-05,-2.5974026357289404e-05,-3.5419125197222456e-05,3.5998900258307764e-21,-4.235164736271502e-22,-0.0,-0.002601830055937171,0.0001298701245104894,0.0007655412773601711,0.00014167650078888983,0.0,-1.9980019715148956e-05,0.0,-4.058441481902264e-05,-2.17963861359749e-05,-0.0,-0.003488783957436681,0.0001770956296240911,0.00014167650078888983,0.0014762888895347714,0.0,-3.202684903292006e-22,-3.9354585169348866e-05,0.0,-3.1483668863074854e-05,-0.00011068477033404633,0.00012487512140069157,-8.325008093379438e-05,0.0,0.0,8.325007911480498e-06,0.0,0.0,0.0,0.0,-0.0,0.0001298701245104894,-2.5974026357289404e-05,-1.9980019715148956e-05,-3.202684903292006e-22,0.0,3.9960041249287315e-06,0.0,-6.352747104407253e-22,0.0,-0.0,0.0001770956296240911,-3.5419125197222456e-05,0.0,-3.9354585169348866e-05,0.0,0.0,7.870917215768714e-06,0.0,0.0,-0.0,8.116882963804528e-05,3.5998900258307764e-21,-4.058441481902264e-05,0.0,0.0,-6.352747104407253e-22,0.0,3.1218780804920243e-06,0.0,-0.0,0.00014167650078888983,-4.235164736271502e-22,-2.17963861359749e-05,-3.1483668863074854e-05,0.0,0.0,0.0,0.0,4.8436413635499775e-06,-0.0,0.00014757968892809004,-0.0,-0.0,-0.00011068477033404633,-0.0,-0.0,-0.0,-0.0,-0.0,1.229830741067417e-05,11.0,14.0,11.0,0.021764598786830902,-0.002935700584203005,-0.002376032993197441,-0.002935700584203005,0.00011352283763699234,0.0001180637555080466,0.00014757968892809004,7.378984446404502e-05,0.0001180637555080466,0.00011352283763699234,-0.002935700584203005,0.0011169133940711617,0.0001180637555080466,0.00014757968892809004,-7.568189175799489e-05,-2.361275073781144e-05,-2.951593887701165e-05,-1.4399560103323106e-20,-8.470329472543003e-22,-0.0,-0.002376032993197441,0.0001180637555080466,0.000697597861289978,0.0001180637555080466,0.0,-1.8163655113312416e-05,0.0,-3.689492223202251e-05,-1.8163655113312416e-05,-0.0,-0.002935700584203005,0.00014757968892809004,0.0001180637555080466,0.0011169133940711617,0.0,-8.61061191312086e-22,-2.951593887701165e-05,-8.470329472543003e-22,-2.361275073781144e-05,-7.568189175799489e-05,0.00011352283763699234,-7.568189175799489e-05,0.0,0.0,7.568189175799489e-06,0.0,0.0,0.0,0.0,-0.0,0.0001180637555080466,-2.361275073781144e-05,-1.8163655113312416e-05,-8.61061191312086e-22,0.0,3.6327307952888077e-06,0.0,2.117582368135751e-21,1.5881867761018131e-22,-0.0,0.00014757968892809004,-2.951593887701165e-05,0.0,-2.951593887701165e-05,0.0,0.0,5.90318768445286e-06,0.0,0.0,-0.0,7.378984446404502e-05,-1.4399560103323106e-20,-3.689492223202251e-05,-8.470329472543003e-22,0.0,2.117582368135751e-21,0.0,2.8380709409248084e-06,2.117582368135751e-22,-0.0,0.0001180637555080466,-8.470329472543003e-22,-1.8163655113312416e-05,-2.361275073781144e-05,0.0,1.5881867761018131e-22,0.0,2.117582368135751e-22,3.6327307952888077e-06,-0.0,0.00011352283763699234,-0.0,-0.0,-7.568189175799489e-05,-0.0,-0.0,-0.0,-0.0,-0.0,7.568189175799489e-06,11.0,14.0,12.0,0.020152168348431587,-0.0027014652732759714,-0.0021863554138690233,-0.0025046381633728743,0.00010406260116724297,0.00010822511103469878,0.00012487512140069157,6.764069257769734e-05,9.990009857574478e-05,8.91965173650533e-05,-0.0027014652732759714,0.0010259185219183564,0.00010822511103469878,0.00012487512140069157,-6.937506987014785e-05,-2.1645020751748234e-05,-2.4975024643936194e-05,5.929230630780102e-21,-1.6940658945086007e-21,-1.6940658945086007e-20,-0.0021863554138690233,0.00010822511103469878,0.0006407454493455589,9.990009857574478e-05,0.0,-1.6650015822960995e-05,-2.117582368135751e-21,-3.382034628884867e-05,-1.536924537504092e-05,-2.541098841762901e-21,-0.0025046381633728743,0.00012487512140069157,9.990009857574478e-05,0.000865692738443613,-0.0,7.508687581803927e-22,-2.2704567527398467e-05,2.9157635955321892e-21,-1.8163655113312416e-05,-5.3517909691436216e-05,0.00010406260116724297,-6.937506987014785e-05,0.0,-0.0,6.937506896065315e-06,0.0,0.0,0.0,0.0,0.0,0.00010822511103469878,-2.1645020751748234e-05,-1.6650015822960995e-05,7.508687581803927e-22,0.0,3.3300034374406096e-06,6.776705661996576e-24,-8.470329472543003e-22,-1.2163357945181396e-22,-4.7084106605758734e-23,0.00012487512140069157,-2.4975024643936194e-05,-2.117582368135751e-21,-2.2704567527398467e-05,0.0,6.776705661996576e-24,4.540913778328104e-06,0.0,3.705769144237564e-22,2.752857078576476e-21,6.764069257769734e-05,5.929230630780102e-21,-3.382034628884867e-05,2.9157635955321892e-21,0.0,-8.470329472543003e-22,0.0,2.6015650291810744e-06,-4.235164736271502e-22,-5.293955920339377e-23,9.990009857574478e-05,-1.6940658945086007e-21,-1.536924537504092e-05,-1.8163655113312416e-05,0.0,-1.2163357945181396e-22,3.705769144237564e-22,-4.235164736271502e-22,2.7944083740294445e-06,6.352747104407253e-22,8.91965173650533e-05,-1.6940658945086007e-20,-2.541098841762901e-21,-5.3517909691436216e-05,0.0,-4.7084106605758734e-23,2.752857078576476e-21,-5.293955920339377e-23,6.352747104407253e-22,4.865264600084629e-06,11.0,14.0,13.0,0.018762830644845963,-0.002501893788576126,-0.0020247609354555607,-0.002162123564630747,9.605778905097395e-05,9.990009857574478e-05,0.00010703581938287243,6.243756070034578e-05,8.562865696148947e-05,7.135721534723416e-05,-0.002501893788576126,0.0009486484341323376,9.990009857574478e-05,0.00010703581938287243,-6.403852603398263e-05,-1.9980019715148956e-05,-2.1407164240372367e-05,5.505714157152952e-21,3.8116482626443515e-21,8.470329472543003e-21,-0.0020247609354555607,9.990009857574478e-05,0.000592470692936331,8.562865696148947e-05,0.0,-1.536924537504092e-05,2.964615315390051e-21,-3.121878035017289e-05,-1.3173639672459103e-05,6.776263578034403e-21,-0.002162123564630747,0.00010703581938287243,8.562865696148947e-05,0.0006847049226053059,-0.0,5.938868516801535e-22,-1.783930383680854e-05,3.850170827135867e-22,-1.4271442523750011e-05,-3.892211680067703e-05,9.605778905097395e-05,-6.403852603398263e-05,0.0,-0.0,6.403852694347734e-06,0.0,0.0,0.0,0.0,0.0,9.990009857574478e-05,-1.9980019715148956e-05,-1.536924537504092e-05,5.938868516801535e-22,0.0,3.073849256907124e-06,-8.85568467997323e-24,-7.411538288475128e-22,-6.531806160553428e-23,-5.8100197315206435e-24,0.00010703581938287243,-2.1407164240372367e-05,2.964615315390051e-21,-1.783930383680854e-05,0.0,-8.85568467997323e-24,3.5678606309375027e-06,0.0,-4.235164736271502e-22,-1.2705494208814505e-21,6.243756070034578e-05,5.505714157152952e-21,-3.121878035017289e-05,3.850170827135867e-22,0.0,-7.411538288475128e-22,0.0,2.401444817223819e-06,-1.0587911840678754e-22,0.0,8.562865696148947e-05,3.8116482626443515e-21,-1.3173639672459103e-05,-1.4271442523750011e-05,0.0,-6.531806160553428e-23,-4.235164736271502e-22,-1.0587911840678754e-22,2.195606612076517e-06,-1.164670302474663e-21,7.135721534723416e-05,8.470329472543003e-21,6.776263578034403e-21,-3.892211680067703e-05,0.0,-5.8100197315206435e-24,-1.2705494208814505e-21,0.0,-1.164670302474663e-21,3.2435098091809778e-06,11.0,14.0,14.0,0.017553161829710007,-0.0023298130836337805,-0.0018854360096156597,-0.0018854360096156597,8.91965173650533e-05,9.276437776861712e-05,9.276437776861712e-05,5.7977737014880404e-05,7.421150075970218e-05,5.7977737014880404e-05,-0.0023298130836337805,0.0008822130039334297,9.276437776861712e-05,9.276437776861712e-05,-5.946434612269513e-05,-1.8552875189925544e-05,-1.8552875189925544e-05,-9.740878893424454e-21,-1.2705494208814505e-21,-1.0164395367051604e-20,-0.0018854360096156597,9.276437776861712e-05,0.0005509668844752014,7.421150075970218e-05,0.0,-1.4271442523750011e-05,-8.470329472543003e-22,-2.8988868507440202e-05,-1.141715438279789e-05,-2.541098841762901e-21,-0.0018854360096156597,9.276437776861712e-05,7.421150075970218e-05,0.0005509668844752014,-0.0,9.557751889849332e-22,-1.4271442523750011e-05,9.919847375716936e-22,-1.141715438279789e-05,-2.8988868507440202e-05,8.91965173650533e-05,-5.946434612269513e-05,0.0,-0.0,5.946434612269513e-06,0.0,0.0,0.0,0.0,0.0,9.276437776861712e-05,-1.8552875189925544e-05,-1.4271442523750011e-05,9.557751889849332e-22,0.0,2.8542885956994724e-06,-1.8139561481578614e-23,1.5881867761018131e-21,-7.274516178464114e-23,-3.5107844379190415e-23,9.276437776861712e-05,-1.8552875189925544e-05,-8.470329472543003e-22,-1.4271442523750011e-05,0.0,-1.8139561481578614e-23,2.8542885956994724e-06,-1.3234889800848443e-23,2.6469779601696886e-22,1.5881867761018131e-21,5.7977737014880404e-05,-9.740878893424454e-21,-2.8988868507440202e-05,9.919847375716936e-22,0.0,1.5881867761018131e-21,-1.3234889800848443e-23,2.2299129796010675e-06,-1.0587911840678754e-22,0.0,7.421150075970218e-05,-1.2705494208814505e-21,-1.141715438279789e-05,-1.141715438279789e-05,0.0,-7.274516178464114e-23,2.6469779601696886e-22,-1.0587911840678754e-22,1.7564852896612138e-06,5.293955920339377e-22,5.7977737014880404e-05,-1.0164395367051604e-20,-2.541098841762901e-21,-2.8988868507440202e-05,0.0,-3.5107844379190415e-23,1.5881867761018131e-21,0.0,5.293955920339377e-22,2.2299129796010675e-06,11.0,14.0,15.0,0.016490347683429718,-0.002179903443902731,-0.0017640693113207817,-0.0016587089048698545,8.325008093379438e-05,8.658008300699294e-05,8.116882963804528e-05,5.411255551734939e-05,6.49350622552447e-05,4.774637272930704e-05,-0.002179903443902731,0.0008244810742326081,8.658008300699294e-05,8.116882963804528e-05,-5.550005516852252e-05,-1.7316016965196468e-05,-1.6233765563811176e-05,4.0234064994579266e-21,1.2705494208814505e-21,1.1011428314305904e-20,-0.0017640693113207817,8.658008300699294e-05,0.0005149017670191824,6.49350622552447e-05,0.0,-1.3320013749762438e-05,1.6940658945086007e-21,-2.7056277758674696e-05,-9.990009857574478e-06,2.964615315390051e-21,-0.0016587089048698545,8.116882963804528e-05,6.49350622552447e-05,0.0004499806964304298,-0.0,-0.0,-1.159554722107714e-05,3.718511330449673e-22,-9.276437594962772e-06,-2.2036787413526326e-05,8.325008093379438e-05,-5.550005516852252e-05,0.0,-0.0,5.550005425902782e-06,0.0,0.0,0.0,0.0,0.0,8.658008300699294e-05,-1.7316016965196468e-05,-1.3320013749762438e-05,-0.0,0.0,2.6640027499524876e-06,-6.617444900424222e-24,-4.235164736271502e-22,2.6469779601696886e-23,-1.1188392130644264e-23,8.116882963804528e-05,-1.6233765563811176e-05,1.6940658945086007e-21,-1.159554722107714e-05,0.0,-6.617444900424222e-24,2.319109398740693e-06,-2.6469779601696886e-23,-2.117582368135751e-22,-1.4823076576950256e-21,5.411255551734939e-05,4.0234064994579266e-21,-2.7056277758674696e-05,3.718511330449673e-22,0.0,-4.235164736271502e-22,-2.6469779601696886e-23,2.0812519778701244e-06,5.293955920339377e-23,-5.293955920339377e-23,6.49350622552447e-05,1.2705494208814505e-21,-9.990009857574478e-06,-9.276437594962772e-06,0.0,2.6469779601696886e-23,-2.117582368135751e-22,5.293955920339377e-23,1.4271442978497362e-06,-3.705769144237564e-22,4.774637272930704e-05,1.1011428314305904e-20,2.964615315390051e-21,-2.2036787413526326e-05,0.0,-1.1188392130644264e-23,-1.4823076576950256e-21,-5.293955920339377e-23,-3.705769144237564e-22,1.5740562275823322e-06,11.0,14.0,16.0,0.015549126081168652,-0.0020481357350945473,-0.0016573958564549685,-0.00147058826405555,7.804695633240044e-05,8.116882963804528e-05,7.161955727497116e-05,5.0730519433273e-05,5.7295645092381164e-05,3.97886433347594e-05,-0.0020481357350945473,0.0007738462300039828,8.116882963804528e-05,7.161955727497116e-05,-5.203130058362149e-05,-1.6233765563811176e-05,-1.4323911273095291e-05,2.0540548970916783e-20,5.082197683525802e-20,1.0079692072326174e-19,-0.0016573958564549685,8.116882963804528e-05,0.00048327131662517786,5.7295645092381164e-05,2.283469885691566e-20,-1.2487512321968097e-05,5.039846036163087e-20,-2.53652597166365e-05,-8.81471441971371e-06,4.277516383634217e-20,-0.00147058826405555,7.161955727497116e-05,5.7295645092381164e-05,0.00037228528526611626,1.4837116675378636e-19,6.701905857079568e-20,-9.549274182063527e-06,3.415007727224359e-20,-7.639418981852941e-06,-1.7052276234608144e-05,7.804695633240044e-05,-5.203130058362149e-05,2.283469885691566e-20,1.4837116675378636e-19,5.203130058362149e-06,2.6709883400633934e-35,-3.805782873554754e-21,1.3610227160480653e-35,-3.044626460402517e-21,-6.79604078793395e-21,8.116882963804528e-05,-1.6233765563811176e-05,-1.2487512321968097e-05,6.701905857079568e-20,2.6709883400633934e-35,2.4975024643936194e-06,-1.6992147707043165e-21,-5.293955920339377e-22,-1.481132822926098e-21,-3.03952746545956e-21,7.161955727497116e-05,-1.4323911273095291e-05,5.039846036163087e-20,-9.549274182063527e-06,-3.805782873554754e-21,-1.6992147707043165e-21,1.9098547454632353e-06,-2.3690452743518713e-21,-1.4558378780933287e-21,-1.7470054537119944e-21,5.0730519433273e-05,2.0540548970916783e-20,-2.53652597166365e-05,3.415007727224359e-20,1.3610227160480653e-35,-5.293955920339377e-22,-2.3690452743518713e-21,1.9511737718858058e-06,1.5881867761018131e-22,-1.2176098616780567e-21,5.7295645092381164e-05,5.082197683525802e-20,-8.81471441971371e-06,-7.639418981852941e-06,-3.044626460402517e-21,-1.481132822926098e-21,-1.4558378780933287e-21,1.5881867761018131e-22,1.1752953241739306e-06,-1.4823076576950256e-21,3.97886433347594e-05,1.0079692072326174e-19,4.277516383634217e-20,-1.7052276234608144e-05,-6.79604078793395e-21,-3.03952746545956e-21,-1.7470054537119944e-21,-1.2176098616780567e-21,-1.4823076576950256e-21,1.1368183550075628e-06,11.0,15.0,3.0,0.057788290083408356,-0.00906177144497633,-0.006907308474183083,-0.024621212854981422,0.0003885003970935941,0.0003787878667935729,0.0015151514671742916,0.0002228163939435035,0.0011363636003807187,0.0030303029343485832,-0.00906177144497633,0.003625356126576662,0.0003787878667935729,0.0015151514671742916,-0.0002590002550277859,-7.575757626909763e-05,-0.0003030303050763905,-1.3552527156068805e-20,6.203934565710835e-21,-5.882840457216834e-34,-0.006907308474183083,0.0003787878667935729,0.001980862347409129,0.0011363636003807187,0.0,-5.411255551734939e-05,0.0,-0.00010283834126312286,-0.00016233765927609056,-4.0367063229368605e-18,-0.024621212854981422,0.0015151514671742916,0.0011363636003807187,0.054924242198467255,0.0,6.203934565710835e-21,-0.0015151514671742916,-6.403450691017339e-19,-0.0011363636003807187,-0.0181818176060915,0.0003885003970935941,-0.0002590002550277859,0.0,0.0,2.590002623037435e-05,0.0,0.0,0.0,0.0,-0.0,0.0003787878667935729,-7.575757626909763e-05,-5.411255551734939e-05,6.203934565710835e-21,0.0,1.0822510375874117e-05,0.0,2.2121697441669793e-21,-8.862763665301193e-22,8.404057960016006e-35,0.0015151514671742916,-0.0003030303050763905,0.0,-0.0015151514671742916,0.0,0.0,0.0003030303050763905,0.0,0.0,-0.0,0.0002228163939435035,-1.3552527156068805e-20,-0.00010283834126312286,-6.403450691017339e-19,0.0,2.2121697441669793e-21,0.0,7.3455958045087755e-06,1.691559149511653e-20,2.6096798693617897e-19,0.0011363636003807187,6.203934565710835e-21,-0.00016233765927609056,-0.0011363636003807187,0.0,-8.862763665301193e-22,0.0,1.691559149511653e-20,0.00016233765927609056,3.831548160230846e-19,0.0030303029343485832,-5.882840457216834e-34,-4.0367063229368605e-18,-0.0181818176060915,-0.0,8.404057960016006e-35,-0.0,2.6096798693617897e-19,3.831548160230846e-19,0.00909090880304575,11.0,15.0,4.0,0.046882882714271545,-0.0070236013270914555,-0.005350935738533735,-0.01568181812763214,0.00029137529782019556,0.0002840909000951797,0.0009090909152291715,0.00016711230273358524,0.0006818181718699634,0.0015151514671742916,-0.0070236013270914555,0.002764471573755145,0.0002840909000951797,0.0009090909152291715,-0.00019425019854679704,-5.681818220182322e-05,-0.0001818181772250682,-1.0164395367051604e-20,5.45014078702453e-21,-1.3072979176463087e-34,-0.005350935738533735,0.0002840909000951797,0.0015099974116310477,0.0006818181718699634,0.0,-4.058441481902264e-05,0.0,-7.712875230936334e-05,-9.740259702084586e-05,-1.4396681514791421e-18,-0.01568181812763214,0.0009090909152291715,0.0006818181718699634,0.021060606464743614,0.0,5.45014078702453e-21,-0.000606060610152781,-3.523409940369889e-19,-0.00045454545761458576,-0.004545454401522875,0.00029137529782019556,-0.00019425019854679704,0.0,0.0,1.942501876328606e-05,0.0,0.0,0.0,0.0,-0.0,0.0002840909000951797,-5.681818220182322e-05,-4.058441481902264e-05,5.45014078702453e-21,0.0,8.116882781905588e-06,0.0,1.739701990124841e-21,-7.785915265786192e-22,1.8675683717844622e-35,0.0009090909152291715,-0.0001818181772250682,0.0,-0.000606060610152781,0.0,0.0,0.00012121212057536468,0.0,0.0,-0.0,0.00016711230273358524,-1.0164395367051604e-20,-7.712875230936334e-05,-3.523409940369889e-19,0.0,1.739701990124841e-21,0.0,5.509196853381582e-06,1.1189230140739324e-20,9.133879542766264e-20,0.0006818181718699634,5.45014078702453e-21,-9.740259702084586e-05,-0.00045454545761458576,0.0,-7.785915265786192e-22,0.0,1.1189230140739324e-20,6.49350622552447e-05,1.072833479694758e-19,0.0015151514671742916,-1.3072979176463087e-34,-1.4396681514791421e-18,-0.004545454401522875,-0.0,1.8675683717844622e-35,-0.0,9.133879542766264e-20,1.072833479694758e-19,0.0015151514671742916,11.0,15.0,5.0,0.039510637521743774,-0.005740093067288399,-0.004371657967567444,-0.010887445881962776,0.00023310023243539035,0.00022727272880729288,0.000606060610152781,0.0001336898421868682,0.00045454545761458576,0.0008658008882775903,-0.005740093067288399,0.0022358198184520006,0.00022727272880729288,0.000606060610152781,-0.0001554001501062885,-4.545454430626705e-05,-0.00012121212057536468,-9.529120656610879e-21,3.3881317890172014e-21,-8.637503791249619e-35,-0.004371657967567444,0.00022727272880729288,0.0012209848500788212,0.00045454545761458576,0.0,-3.246753112762235e-05,0.0,-6.170300184749067e-05,-6.49350622552447e-05,-7.139013812899759e-19,-0.010887445881962776,0.000606060610152781,0.00045454545761458576,0.010638528503477573,0.0,1.4886907414868395e-21,-0.0003030303050763905,-2.371692252312041e-19,-0.00022727272880729288,-0.0017316017765551805,0.00023310023243539035,-0.0001554001501062885,0.0,0.0,1.554001573822461e-05,0.0,0.0,0.0,0.0,-0.0,0.00022727272880729288,-4.545454430626705e-05,-3.246753112762235e-05,1.4886907414868395e-21,0.0,6.493506589322351e-06,0.0,1.2705494208814505e-21,-4.235164736271502e-22,1.2339291335346546e-35,0.000606060610152781,-0.00012121212057536468,0.0,-0.0003030303050763905,0.0,0.0,6.060606028768234e-05,0.0,0.0,-0.0,0.0001336898421868682,-9.529120656610879e-21,-6.170300184749067e-05,-2.371692252312041e-19,0.0,1.2705494208814505e-21,0.0,4.407357209856855e-06,8.470329472543003e-21,4.473736872746293e-20,0.00045454545761458576,3.3881317890172014e-21,-6.49350622552447e-05,-0.00022727272880729288,0.0,-4.235164736271502e-22,0.0,8.470329472543003e-21,3.246753112762235e-05,4.378912247744452e-20,0.0008658008882775903,-8.637503791249619e-35,-7.139013812899759e-19,-0.0017316017765551805,-0.0,1.2339291335346546e-35,-0.0,4.473736872746293e-20,4.378912247744452e-20,0.00043290044413879514,11.0,15.0,6.0,0.03417012095451355,-0.0048555610701441765,-0.003697160631418228,-0.008008657954633236,0.00019425019854679704,0.00018939393339678645,0.00043290044413879514,0.00011140819697175175,0.0003246753185521811,0.0005411255406215787,-0.0048555610701441765,0.0018776131328195333,0.00018939393339678645,0.00043290044413879514,-0.00012950012751389295,-3.787878813454881e-05,-8.658008300699294e-05,-6.776263578034403e-21,-0.0,-3.851859946171657e-35,-0.003697160631418228,0.00018939393339678645,0.00102521781809628,0.0003246753185521811,0.0,-2.7056277758674696e-05,0.0,-5.141917063156143e-05,-4.638218888430856e-05,-4.125899347232075e-19,-0.008008657954633236,0.00043290044413879514,0.0003246753185521811,0.006179653573781252,0.0,4.1571892910011695e-24,-0.00017316016601398587,-1.8634724839594607e-19,-0.0001298701245104894,-0.000811688310932368,0.00019425019854679704,-0.00012950012751389295,0.0,0.0,1.2950013115187176e-05,0.0,0.0,0.0,0.0,-0.0,0.00018939393339678645,-3.787878813454881e-05,-2.7056277758674696e-05,4.1571892910011695e-24,0.0,5.4112551879370585e-06,0.0,1.0587911840678754e-21,-2.117582368135751e-22,5.502657014712023e-36,0.00043290044413879514,-8.658008300699294e-05,0.0,-0.00017316016601398587,0.0,0.0,3.4632033930392936e-05,0.0,0.0,-0.0,0.00011140819697175175,-6.776263578034403e-21,-5.141917063156143e-05,-1.8634724839594607e-19,0.0,1.0587911840678754e-21,0.0,3.6727979022543877e-06,8.046812998915853e-21,2.56307842004337e-20,0.0003246753185521811,-0.0,-4.638218888430856e-05,-0.0001298701245104894,0.0,-2.117582368135751e-22,0.0,8.046812998915853e-21,1.8552875189925544e-05,2.150358753673311e-20,0.0005411255406215787,-3.851859946171657e-35,-4.125899347232075e-19,-0.000811688310932368,-0.0,5.502657014712023e-36,-0.0,2.56307842004337e-20,2.150358753673311e-20,0.00016233765927609056,11.0,15.0,7.0,0.030114533379673958,-0.004208291880786419,-0.0032037815544754267,-0.006141774822026491,0.00016650016186758876,0.00016233765927609056,0.0003246753185521811,9.549274545861408e-05,0.00024350649619009346,0.0003607503604143858,-0.004208291880786419,0.0016186591237783432,0.00016233765927609056,0.0003246753185521811,-0.00011100011033704504,-3.246753112762235e-05,-6.49350622552447e-05,2.371692252312041e-20,1.6940658945086007e-21,1.213919470358493e-34,-0.0032037815544754267,0.00016233765927609056,0.000883727625478059,0.00024350649619009346,0.0,-2.319109444215428e-05,0.0,-4.407357482705265e-05,-3.478664075373672e-05,-2.617509133859604e-19,-0.006141774822026491,0.0003246753185521811,0.00024350649619009346,0.003923160023987293,0.0,9.225404411826486e-22,-0.00010822511103469878,-1.2366681029912785e-19,-8.116882963804528e-05,-0.00043290044413879514,0.00016650016186758876,-0.00011100011033704504,0.0,0.0,1.1100010851805564e-05,0.0,0.0,0.0,0.0,-0.0,0.00016233765927609056,-3.246753112762235e-05,-2.319109444215428e-05,9.225404411826486e-22,0.0,4.638218797481386e-06,0.0,-2.964615315390051e-21,-2.117582368135751e-22,-1.7341707129386937e-35,0.0003246753185521811,-6.49350622552447e-05,0.0,-0.00010822511103469878,0.0,0.0,2.1645020751748234e-05,0.0,0.0,-0.0,9.549274545861408e-05,2.371692252312041e-20,-4.407357482705265e-05,-1.2366681029912785e-19,0.0,-2.964615315390051e-21,0.0,3.1481124551646644e-06,3.8116482626443515e-21,1.615516048058741e-20,0.00024350649619009346,1.6940658945086007e-21,-3.478664075373672e-05,-8.116882963804528e-05,0.0,-2.117582368135751e-22,0.0,3.8116482626443515e-21,1.159554722107714e-05,1.1859554206256283e-20,0.0003607503604143858,1.213919470358493e-34,-2.617509133859604e-19,-0.00043290044413879514,-0.0,-1.7341707129386937e-35,-0.0,1.615516048058741e-20,1.1859554206256283e-20,7.215006917249411e-05,11.0,15.0,8.0,0.02692629024386406,-0.003713820828124881,-0.0028269831091165543,-0.004861111287027597,0.00014568764891009778,0.00014204545004758984,0.00025252526393160224,8.355615136679262e-05,0.00018939393339678645,0.00025252526393160224,-0.003713820828124881,0.0014226398197934031,0.00014204545004758984,0.00025252526393160224,-9.712509927339852e-05,-2.840909110091161e-05,-5.0505052058724687e-05,-3.3881317890172014e-21,1.6940658945086007e-21,-1.478491651578193e-35,-0.0028269831091165543,0.00014204545004758984,0.000776643690187484,0.00018939393339678645,0.0,-2.029220740951132e-05,0.0,-3.856437615468167e-05,-2.7056277758674696e-05,-1.770654288930944e-19,-0.004861111287027597,0.00025252526393160224,0.00018939393339678645,0.002651515183970332,0.0,3.933491956775993e-22,-7.215006917249411e-05,-1.1180834903756764e-19,-5.411255551734939e-05,-0.00025252526393160224,0.00014568764891009778,-9.712509927339852e-05,0.0,0.0,9.71250938164303e-06,0.0,0.0,0.0,0.0,-0.0,0.00014204545004758984,-2.840909110091161e-05,-2.029220740951132e-05,3.933491956775993e-22,0.0,4.058441390952794e-06,0.0,8.470329472543003e-22,-1.0587911840678754e-22,2.1121310333209635e-36,0.00025252526393160224,-5.0505052058724687e-05,0.0,-7.215006917249411e-05,0.0,0.0,1.4430014743993524e-05,0.0,0.0,-0.0,8.355615136679262e-05,-3.3881317890172014e-21,-3.856437615468167e-05,-1.1180834903756764e-19,0.0,8.470329472543003e-22,0.0,2.754598426690791e-06,5.082197683525802e-21,1.0873665583811746e-20,0.00018939393339678645,1.6940658945086007e-21,-2.7056277758674696e-05,-5.411255551734939e-05,0.0,-1.0587911840678754e-22,0.0,5.082197683525802e-21,7.730364814051427e-06,7.095459974838972e-21,0.00025252526393160224,-1.478491651578193e-35,-1.770654288930944e-19,-0.00025252526393160224,-0.0,2.1121310333209635e-36,-0.0,1.0873665583811746e-20,7.095459974838972e-21,3.607503458624706e-05,11.0,15.0,9.0,0.024352295324206352,-0.0033236208837479353,-0.0025297089014202356,-0.00394398532807827,0.00012950012751389295,0.00012626263196580112,0.00020202020823489875,7.427213131450117e-05,0.00015151515253819525,0.0001836547307902947,-0.0033236208837479353,0.0012690580915659666,0.00012626263196580112,0.00020202020823489875,-8.63334207679145e-05,-2.5252526029362343e-05,-4.0404040191788226e-05,1.6305384234645282e-20,8.470329472543003e-22,4.838699794081763e-35,-0.0025297089014202356,0.00012626263196580112,0.0006927549839019775,0.00015151515253819525,0.0,-1.803751729312353e-05,9.612320162832082e-21,-3.4279444662388414e-05,-2.1645020751748234e-05,-1.2559686823745841e-19,-0.00394398532807827,0.00020202020823489875,0.00015151515253819525,0.0018780336249619722,0.0,1.1257523432269667e-20,-5.0505052058724687e-05,-8.131516293641283e-20,-3.787878813454881e-05,-0.00015741834067739546,0.00012950012751389295,-8.63334207679145e-05,0.0,0.0,8.63334207679145e-06,0.0,0.0,0.0,0.0,-0.0,0.00012626263196580112,-2.5252526029362343e-05,-1.803751729312353e-05,1.1257523432269667e-20,0.0,3.607503685998381e-06,-1.9224640729560947e-21,-2.329340604949326e-21,-1.0587911840678754e-22,-6.912428379754635e-36,0.00020202020823489875,-4.0404040191788226e-05,9.612320162832082e-21,-5.0505052058724687e-05,0.0,-1.9224640729560947e-21,1.0101010047947057e-05,1.316553672920962e-36,9.4039548065783e-38,0.0,7.427213131450117e-05,1.6305384234645282e-20,-3.4279444662388414e-05,-8.131516293641283e-20,0.0,-2.329340604949326e-21,1.316553672920962e-36,2.4485318590450333e-06,2.752857078576476e-21,7.682174175002719e-21,0.00015151515253819525,8.470329472543003e-22,-2.1645020751748234e-05,-3.787878813454881e-05,0.0,-1.0587911840678754e-22,9.4039548065783e-38,2.752857078576476e-21,5.4112551879370585e-06,4.5116066390615196e-21,0.0001836547307902947,4.838699794081763e-35,-1.2559686823745841e-19,-0.00015741834067739546,-0.0,-6.912428379754635e-36,0.0,7.682174175002719e-21,4.5116066390615196e-21,1.9677292584674433e-05,11.0,15.0,10.0,0.022229738533496857,-0.0030077877454459667,-0.0022891347762197256,-0.003264462808147073,0.00011655011621769518,0.00011363636440364644,0.00016528925334569067,6.68449210934341e-05,0.0001239669363712892,0.00013774105173069984,-0.0030077877454459667,0.0011454580817371607,0.00011363636440364644,0.00016528925334569067,-7.770007505314425e-05,-2.2727272153133526e-05,-3.3057851396733895e-05,-4.446922973085077e-21,0.0,-8.665800460010338e-36,-0.0022891347762197256,0.00011363636440364644,0.0006252503953874111,0.0001239669363712892,0.0,-1.6233765563811176e-05,0.0,-3.0851500923745334e-05,-1.7709562598611228e-05,-6.87559310620039e-20,-0.003264462808147073,0.00016528925334569067,0.0001239669363712892,0.001379706198349595,0.0,1.9727862547848375e-22,-3.6730947613250464e-05,-6.606856988583543e-20,-2.7548208890948445e-05,-0.00010330578516004607,0.00011655011621769518,-7.770007505314425e-05,0.0,0.0,7.770007869112305e-06,0.0,0.0,0.0,0.0,-0.0,0.00011363636440364644,-2.2727272153133526e-05,-1.6233765563811176e-05,1.9727862547848375e-22,0.0,3.2467532946611755e-06,0.0,5.293955920339377e-22,5.293955920339377e-23,1.237971455851576e-36,0.00016528925334569067,-3.3057851396733895e-05,0.0,-3.6730947613250464e-05,0.0,0.0,7.346189249801682e-06,0.0,0.0,-0.0,6.68449210934341e-05,-4.446922973085077e-21,-3.0851500923745334e-05,-6.606856988583543e-20,0.0,5.293955920339377e-22,0.0,2.2036786049284274e-06,2.117582368135751e-21,5.6345358245513655e-21,0.0001239669363712892,0.0,-1.7709562598611228e-05,-2.7548208890948445e-05,0.0,5.293955920339377e-23,0.0,2.117582368135751e-21,3.935458607884357e-06,-2.2505712405976485e-21,0.00013774105173069984,-8.665800460010338e-36,-6.87559310620039e-20,-0.00010330578516004607,-0.0,1.237971455851576e-36,-0.0,5.6345358245513655e-21,-2.2505712405976485e-21,1.147842067439342e-05,11.0,15.0,11.0,0.02044893614947796,-0.0027468742337077856,-0.0020904229022562504,-0.0027468742337077856,0.00010595464846119285,0.00010330578516004607,0.00013774105173069984,6.076811041566543e-05,0.00010330578516004607,0.00010595464846119285,-0.0027468742337077856,0.001043829950504005,0.00010330578516004607,0.00013774105173069984,-7.063643715810031e-05,-2.0661156668211333e-05,-2.7548208890948445e-05,-3.970466940254533e-20,1.6517142471458857e-20,-1.5397742212945572e-19,-0.0020904229022562504,0.00010330578516004607,0.0005697510787285864,0.00010330578516004607,-6.735867437338551e-20,-1.4757969438505825e-05,4.9145879500852574e-20,-2.8046819352312014e-05,-1.4757969438505825e-05,-9.079991310797848e-20,-0.0027468742337077856,0.00013774105173069984,0.00010330578516004607,0.001043829950504005,-1.9797853225708683e-19,-4.2822742877435305e-20,-2.7548208890948445e-05,-5.929230630780102e-21,-2.0661156668211333e-05,-7.063643715810031e-05,0.00010595464846119285,-7.063643715810031e-05,-6.735867437338551e-20,-1.9797853225708683e-19,7.06364335201215e-06,1.548722627233826e-21,6.010899368191942e-21,4.258218760775366e-21,2.3526658461432925e-21,1.608660465614781e-20,0.00010330578516004607,-2.0661156668211333e-05,-1.4757969438505825e-05,-4.2822742877435305e-20,1.548722627233826e-21,2.95159384222643e-06,3.8187850178341264e-22,1.4823076576950256e-21,-1.376428539288238e-21,5.713617199168276e-21,0.00013774105173069984,-2.7548208890948445e-05,4.9145879500852574e-20,-2.7548208890948445e-05,6.010899368191942e-21,3.8187850178341264e-22,5.5096420510380995e-06,-1.4946347894750181e-21,-4.1909974113083614e-21,-7.494656207546069e-21,6.076811041566543e-05,-3.970466940254533e-20,-2.8046819352312014e-05,-5.929230630780102e-21,4.258218760775366e-21,1.4823076576950256e-21,-1.4946347894750181e-21,2.0033442069689045e-06,-9.529120656610879e-22,2.129109380387683e-21,0.00010330578516004607,1.6517142471458857e-20,-1.4757969438505825e-05,-2.0661156668211333e-05,2.3526658461432925e-21,-1.376428539288238e-21,-4.1909974113083614e-21,-9.529120656610879e-22,2.95159384222643e-06,7.493144017988746e-21,0.00010595464846119285,-1.5397742212945572e-19,-9.079991310797848e-20,-7.063643715810031e-05,1.608660465614781e-20,5.713617199168276e-21,-7.494656207546069e-21,2.129109380387683e-21,7.493144017988746e-21,7.06364335201215e-06,11.0,15.0,12.0,0.018933210521936417,-0.0025276807136833668,-0.001923505449667573,-0.0023434897884726524,9.712509927339852e-05,9.469696669839323e-05,0.00011655011621769518,5.5704098485875875e-05,8.741259080125019e-05,8.325008093379438e-05,-0.0025276807136833668,0.000958786578848958,9.469696669839323e-05,0.00011655011621769518,-6.475006375694647e-05,-1.8939394067274407e-05,-2.3310023607336916e-05,-3.8116482626443515e-21,-4.235164736271502e-21,1.6940658945086007e-21,-0.001923505449667573,9.469696669839323e-05,0.0005233124829828739,8.741259080125019e-05,0.0,-1.3528138879337348e-05,-4.658681209898652e-21,-2.5709585315780714e-05,-1.2487512321968097e-05,-5.251604272976662e-20,-0.0023434897884726524,0.00011655011621769518,8.741259080125019e-05,0.0008090394549071789,-0.0,4.521785544824414e-22,-2.119093005603645e-05,-4.929088813964224e-20,-1.589319799677469e-05,-4.995004928787239e-05,9.712509927339852e-05,-6.475006375694647e-05,0.0,-0.0,6.475006557593588e-06,0.0,0.0,0.0,0.0,0.0,9.469696669839323e-05,-1.8939394067274407e-05,-1.3528138879337348e-05,4.521785544824414e-22,0.0,2.7056275939685293e-06,1.4626000253273194e-23,5.293955920339377e-22,-6.182239174255928e-23,-2.7733102476084885e-23,0.00011655011621769518,-2.3310023607336916e-05,-4.658681209898652e-21,-2.119093005603645e-05,0.0,1.4626000253273194e-23,4.23818619310623e-06,1.3234889800848443e-23,8.470329472543003e-22,-2.117582368135751e-22,5.5704098485875875e-05,-3.8116482626443515e-21,-2.5709585315780714e-05,-4.929088813964224e-20,0.0,5.293955920339377e-22,1.3234889800848443e-23,1.8363989511271939e-06,1.9058241313221758e-21,3.22931311140702e-21,8.741259080125019e-05,-4.235164736271502e-21,-1.2487512321968097e-05,-1.589319799677469e-05,0.0,-6.182239174255928e-23,8.470329472543003e-22,1.9058241313221758e-21,2.270456889164052e-06,1.0587911840678754e-21,8.325008093379438e-05,1.6940658945086007e-21,-5.251604272976662e-20,-4.995004928787239e-05,0.0,-2.7733102476084885e-23,-2.117582368135751e-22,3.22931311140702e-21,1.0587911840678754e-21,4.540913778328104e-06,11.0,15.0,13.0,0.017627300694584846,-0.002340928418561816,-0.001781306928023696,-0.0020229769870638847,8.965393499238417e-05,8.741259080125019e-05,9.990009857574478e-05,5.141917063156143e-05,7.492507575079799e-05,6.660006329184398e-05,-0.002340928418561816,0.0008865707204677165,8.741259080125019e-05,9.990009857574478e-05,-5.9769288782263175e-05,-1.7482518160250038e-05,-1.9980019715148956e-05,-4.658681209898652e-21,1.2705494208814505e-21,-7.623296525288703e-21,-0.001781306928023696,8.741259080125019e-05,0.000483881012769416,7.492507575079799e-05,0.0,-1.2487512321968097e-05,1.6940658945086007e-21,-2.373192364757415e-05,-1.0703582120186184e-05,-3.9810548520952116e-20,-0.0020229769870638847,9.990009857574478e-05,7.492507575079799e-05,0.000639890437014401,-0.0,-6.472404555737052e-22,-1.6650015822960995e-05,-4.225393988403146e-20,-1.2487512321968097e-05,-3.632731022662483e-05,8.965393499238417e-05,-5.9769288782263175e-05,0.0,-0.0,5.976929060125258e-06,0.0,0.0,0.0,0.0,0.0,8.741259080125019e-05,-1.7482518160250038e-05,-1.2487512321968097e-05,-6.472404555737052e-22,0.0,2.4975024643936194e-06,3.6063758414005555e-24,4.235164736271502e-22,6.557050971697949e-23,2.2175176657463005e-23,9.990009857574478e-05,-1.9980019715148956e-05,1.6940658945086007e-21,-1.6650015822960995e-05,0.0,3.6063758414005555e-24,3.3300034374406096e-06,3.970466940254533e-23,-2.6469779601696886e-22,1.4823076576950256e-21,5.141917063156143e-05,-4.658681209898652e-21,-2.373192364757415e-05,-4.225393988403146e-20,0.0,4.235164736271502e-22,3.970466940254533e-23,1.6951374846030376e-06,1.4823076576950256e-21,2.6999175193730823e-21,7.492507575079799e-05,1.2705494208814505e-21,-1.0703582120186184e-05,-1.2487512321968097e-05,0.0,6.557050971697949e-23,-2.6469779601696886e-22,1.4823076576950256e-21,1.7839303154687514e-06,4.235164736271502e-22,6.660006329184398e-05,-7.623296525288703e-21,-3.9810548520952116e-20,-3.632731022662483e-05,0.0,2.2175176657463005e-23,1.4823076576950256e-21,2.6999175193730823e-21,4.235164736271502e-22,3.027275852218736e-06,11.0,15.0,14.0,0.016490347683429718,-0.002179903443902731,-0.0016587089048698545,-0.0017640693113207817,8.325008093379438e-05,8.116882963804528e-05,8.658008300699294e-05,4.774637272930704e-05,6.49350622552447e-05,5.411255551734939e-05,-0.002179903443902731,0.0008244810742326081,8.116882963804528e-05,8.658008300699294e-05,-5.550005516852252e-05,-1.6233765563811176e-05,-1.7316016965196468e-05,1.0376153603865179e-20,1.6940658945086007e-21,3.3881317890172014e-21,-0.0016587089048698545,8.116882963804528e-05,0.0004499806964304298,6.49350622552447e-05,0.0,-1.159554722107714e-05,1.9058241313221758e-21,-2.2036787413526326e-05,-9.276437594962772e-06,-2.0752307207730358e-20,-0.0017640693113207817,8.658008300699294e-05,6.49350622552447e-05,0.0005149017670191824,-0.0,1.0703228474437048e-23,-1.3320013749762438e-05,-3.4584072444021166e-20,-9.990009857574478e-06,-2.7056277758674696e-05,8.325008093379438e-05,-5.550005516852252e-05,0.0,-0.0,5.550005425902782e-06,0.0,0.0,0.0,0.0,0.0,8.116882963804528e-05,-1.6233765563811176e-05,-1.159554722107714e-05,1.0703228474437048e-23,0.0,2.319109398740693e-06,-6.894327189547744e-24,-1.376428539288238e-21,2.6262118279284696e-23,-9.748183764339462e-24,8.658008300699294e-05,-1.7316016965196468e-05,1.9058241313221758e-21,-1.3320013749762438e-05,0.0,-6.894327189547744e-24,2.6640027499524876e-06,-1.3234889800848443e-23,-2.6469779601696886e-22,-5.293955920339377e-22,4.774637272930704e-05,1.0376153603865179e-20,-2.2036787413526326e-05,-3.4584072444021166e-20,0.0,-1.376428539288238e-21,-1.3234889800848443e-23,1.5740562275823322e-06,1.1117307432712692e-21,2.091112588534054e-21,6.49350622552447e-05,1.6940658945086007e-21,-9.276437594962772e-06,-9.990009857574478e-06,0.0,2.6262118279284696e-23,-2.6469779601696886e-22,1.1117307432712692e-21,1.4271442978497362e-06,-1.2705494208814505e-21,5.411255551734939e-05,3.3881317890172014e-21,-2.0752307207730358e-20,-2.7056277758674696e-05,0.0,-9.748183764339462e-24,-5.293955920339377e-22,2.091112588534054e-21,-1.2705494208814505e-21,2.0812519778701244e-06,11.0,15.0,15.0,0.015491481870412827,-0.0020396269392222166,-0.0015519162407144904,-0.0015519162407144904,7.770007505314425e-05,7.575757626909763e-05,7.575757626909763e-05,4.456327951629646e-05,5.681818220182322e-05,4.456327951629646e-05,-0.0020396269392222166,0.000770525773987174,7.575757626909763e-05,7.575757626909763e-05,-5.18000524607487e-05,-1.5151515071920585e-05,-1.5151515071920585e-05,-2.752857078576476e-21,-2.329340604949326e-21,-2.541098841762901e-21,-0.0015519162407144904,7.575757626909763e-05,0.0004205231089144945,5.681818220182322e-05,0.0,-1.0822510375874117e-05,-2.541098841762901e-21,-2.056766788882669e-05,-8.116882781905588e-06,-3.3457801416544863e-20,-0.0015519162407144904,7.575757626909763e-05,5.681818220182322e-05,0.0004205231089144945,-0.0,7.82853003675721e-23,-1.0822510375874117e-05,-3.5231932578234915e-20,-8.116882781905588e-06,-2.056766788882669e-05,7.770007505314425e-05,-5.18000524607487e-05,0.0,-0.0,5.18000524607487e-06,0.0,0.0,0.0,0.0,0.0,7.575757626909763e-05,-1.5151515071920585e-05,-1.0822510375874117e-05,7.82853003675721e-23,0.0,2.1645021206495585e-06,-2.014737144083849e-24,4.235164736271502e-22,-1.5110529073666934e-24,-4.366479216752188e-24,7.575757626909763e-05,-1.5151515071920585e-05,-2.541098841762901e-21,-1.0822510375874117e-05,0.0,-2.014737144083849e-24,2.1645021206495585e-06,0.0,3.441071348220595e-22,5.293955920339377e-22,4.456327951629646e-05,-2.752857078576476e-21,-2.056766788882669e-05,-3.5231932578234915e-20,0.0,4.235164736271502e-22,0.0,1.469119069952285e-06,1.641126335305207e-21,1.6940658945086007e-21,5.681818220182322e-05,-2.329340604949326e-21,-8.116882781905588e-06,-8.116882781905588e-06,0.0,-1.5110529073666934e-24,3.441071348220595e-22,1.641126335305207e-21,1.1595546993703465e-06,1.376428539288238e-21,4.456327951629646e-05,-2.541098841762901e-21,-3.3457801416544863e-20,-2.056766788882669e-05,0.0,-4.366479216752188e-24,5.293955920339377e-22,1.6940658945086007e-21,1.376428539288238e-21,1.469119069952285e-06,11.0,15.0,16.0,0.014606935903429985,-0.0019163282122462988,-0.0014580547576770186,-0.0013758912682533264,7.284382445504889e-05,7.102272502379492e-05,6.68449210934341e-05,4.177807568339631e-05,5.013369082007557e-05,3.713606565725058e-05,-0.0019163282122462988,0.0007232034695334733,7.102272502379492e-05,6.68449210934341e-05,-4.856254963669926e-05,-1.4204545550455805e-05,-1.3368983672989998e-05,-2.541098841762901e-21,6.352747104407253e-22,8.470329472543003e-22,-0.0014580547576770186,7.102272502379492e-05,0.0003946880460716784,5.013369082007557e-05,0.0,-1.014610370475566e-05,4.235164736271502e-22,-1.9282188077340834e-05,-7.1619556365476456e-06,-1.6093625997831706e-20,-0.0013758912682533264,6.68449210934341e-05,5.013369082007557e-05,0.0003479119041003287,-0.0,5.750822252352102e-22,-8.912656085158233e-06,-2.970747437915454e-20,-6.684491836494999e-06,-1.591545697010588e-05,7.284382445504889e-05,-4.856254963669926e-05,0.0,-0.0,4.856254690821515e-06,0.0,0.0,0.0,0.0,0.0,7.102272502379492e-05,-1.4204545550455805e-05,-1.014610370475566e-05,5.750822252352102e-22,0.0,2.029220695476397e-06,-8.114762063101593e-24,4.235164736271502e-22,-3.751893462712602e-23,-3.4943240662707e-24,6.68449210934341e-05,-1.3368983672989998e-05,4.235164736271502e-22,-8.912656085158233e-06,0.0,-8.114762063101593e-24,1.7825311715569114e-06,-1.3234889800848443e-23,-2.6469779601696886e-23,-1.0587911840678754e-22,4.177807568339631e-05,-2.541098841762901e-21,-1.9282188077340834e-05,-2.970747437915454e-20,0.0,4.235164736271502e-22,-1.3234889800848443e-23,1.3772992133453954e-06,1.2705494208814505e-21,1.3896634290890865e-21,5.013369082007557e-05,6.352747104407253e-22,-7.1619556365476456e-06,-6.684491836494999e-06,0.0,-3.751893462712602e-23,-2.6469779601696886e-23,1.2705494208814505e-21,9.549273727316177e-07,-5.823351512373315e-22,3.713606565725058e-05,8.470329472543003e-22,-1.6093625997831706e-20,-1.591545697010588e-05,0.0,-3.4943240662707e-24,-1.0587911840678754e-22,1.3896634290890865e-21,-5.823351512373315e-22,1.0610305025693378e-06,11.0,16.0,3.0,0.054547883570194244,-0.008516299538314342,-0.006127451080828905,-0.023145053535699844,0.0003642191004473716,0.0003342246054671705,0.0014204545877873898,0.00018568032828625292,0.0010026737581938505,0.0028409091755747795,-0.008516299538314342,0.0034029490780085325,0.0003342246054671705,0.0014204545877873898,-0.0002428127481834963,-6.68449210934341e-05,-0.0002840909000951797,-3.049318610115481e-20,0.0,-0.0,-0.006127451080828905,0.0003342246054671705,0.0016392921097576618,0.0010026737581938505,0.0,-4.456327951629646e-05,0.0,-7.95772866695188e-05,-0.0001336898421868682,-0.0,-0.023145053535699844,0.0014204545877873898,0.0010026737581938505,0.05155414342880249,0.0,0.0,-0.0014204545877873898,0.0,-0.0010026737581938505,-0.017045455053448677,0.0003642191004473716,-0.0002428127481834963,0.0,0.0,2.428127481834963e-05,0.0,0.0,0.0,0.0,-0.0,0.0003342246054671705,-6.68449210934341e-05,-4.456327951629646e-05,0.0,0.0,8.912656085158233e-06,0.0,3.8896681965142945e-21,0.0,-0.0,0.0014204545877873898,-0.0002840909000951797,0.0,-0.0014204545877873898,0.0,0.0,0.0002840909000951797,0.0,0.0,-0.0,0.00018568032828625292,-3.049318610115481e-20,-7.95772866695188e-05,0.0,0.0,3.8896681965142945e-21,0.0,5.305152171786176e-06,0.0,-0.0,0.0010026737581938505,0.0,-0.0001336898421868682,-0.0010026737581938505,0.0,0.0,0.0,0.0,0.0001336898421868682,-0.0,0.0028409091755747795,-0.0,-0.0,-0.017045455053448677,-0.0,-0.0,-0.0,-0.0,-0.0,0.008522727526724339,11.0,16.0,4.0,0.04424062371253967,-0.00660029286518693,-0.004745989106595516,-0.014739304780960083,0.0002731643326114863,0.00025066843954846263,0.0008522727293893695,0.00013926024257671088,0.0006016042898409069,0.0014204545877873898,-0.00660029286518693,0.002594825578853488,0.00025066843954846263,0.0008522727293893695,-0.0001821095502236858,-5.013369082007557e-05,-0.00017045454296749085,2.202285662861181e-20,4.027376400942684e-21,-0.0,-0.004745989106595516,0.00025066843954846263,0.0012495225528255105,0.0006016042898409069,0.0,-3.342246054671705e-05,0.0,-5.9682963183149695e-05,-8.021390385692939e-05,-0.0,-0.014739304780960083,0.0008522727293893695,0.0006016042898409069,0.01976938545703888,0.0,4.027376400942684e-21,-0.0005681818001903594,4.2753375220460924e-21,-0.00040106952656060457,-0.004261363763362169,0.0002731643326114863,-0.0001821095502236858,0.0,0.0,1.8210956113762222e-05,0.0,0.0,0.0,0.0,-0.0,0.00025066843954846263,-5.013369082007557e-05,-3.342246054671705e-05,4.027376400942684e-21,0.0,6.684491836494999e-06,0.0,-3.0665433135125126e-21,-5.369834999308521e-22,-0.0,0.0008522727293893695,-0.00017045454296749085,0.0,-0.0005681818001903594,0.0,0.0,0.00011363636440364644,0.0,0.0,-0.0,0.00013926024257671088,2.202285662861181e-20,-5.9682963183149695e-05,4.2753375220460924e-21,0.0,-3.0665433135125126e-21,0.0,3.97886424252647e-06,-5.700450265001247e-22,-0.0,0.0006016042898409069,4.027376400942684e-21,-8.021390385692939e-05,-0.00040106952656060457,0.0,-5.369834999308521e-22,0.0,-5.700450265001247e-22,5.347593469195999e-05,-0.0,0.0014204545877873898,-0.0,-0.0,-0.004261363763362169,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014204545877873898,11.0,16.0,5.0,0.03727656975388527,-0.0053938706405460835,-0.0038770053070038557,-0.0102320471778512,0.00021853146608918905,0.00020053476328030229,0.0005681818001903594,0.00011140819697175175,0.00040106952656060457,0.000811688310932368,-0.0053938706405460835,0.0020985875744372606,0.00020053476328030229,0.0005681818001903594,-0.00014568764891009778,-4.0106951928464696e-05,-0.00011363636440364644,1.5246593050577406e-20,-1.6940658945086007e-21,-0.0,-0.0038770053070038557,0.00020053476328030229,0.0010103131644427776,0.00040106952656060457,0.0,-2.6737967345979996e-05,0.0,-4.774637272930704e-05,-5.347593469195999e-05,-0.0,-0.0102320471778512,0.0005681818001903594,0.00040106952656060457,0.009986153803765774,0.0,4.41108235896647e-23,-0.0002840909000951797,3.3881317890172014e-21,-0.00020053476328030229,-0.001623376621864736,0.00021853146608918905,-0.00014568764891009778,0.0,0.0,1.4568764527211897e-05,0.0,0.0,0.0,0.0,-0.0,0.00020053476328030229,-4.0106951928464696e-05,-2.6737967345979996e-05,4.41108235896647e-23,0.0,5.34759374204441e-06,0.0,-2.117582368135751e-21,0.0,-0.0,0.0005681818001903594,-0.00011363636440364644,0.0,-0.0002840909000951797,0.0,0.0,5.681818220182322e-05,0.0,0.0,-0.0,0.00011140819697175175,1.5246593050577406e-20,-4.774637272930704e-05,3.3881317890172014e-21,0.0,-2.117582368135751e-21,0.0,3.183091394021176e-06,0.0,-0.0,0.00040106952656060457,-1.6940658945086007e-21,-5.347593469195999e-05,-0.00020053476328030229,0.0,0.0,0.0,0.0,2.6737967345979996e-05,-0.0,0.000811688310932368,-0.0,-0.0,-0.001623376621864736,-0.0,-0.0,-0.0,-0.0,-0.0,0.000405844155466184,11.0,16.0,6.0,0.032233595848083496,-0.0045625329948961735,-0.0032785842195153236,-0.007526021916419268,0.0001821095502236858,0.00016711230273358524,0.000405844155466184,9.284016414312646e-05,0.00028647822909988463,0.0005073052016086876,-0.0045625329948961735,0.0017623512540012598,0.00016711230273358524,0.000405844155466184,-0.00012140637409174815,-3.342246054671705e-05,-8.116882963804528e-05,-1.503483481376383e-20,-1.6940658945086007e-21,-0.0,-0.0032785842195153236,0.00016711230273358524,0.0008482938865199685,0.00028647822909988463,0.0,-2.228163975814823e-05,0.0,-3.97886433347594e-05,-3.819709672825411e-05,-0.0,-0.007526021916419268,0.000405844155466184,0.00028647822909988463,0.005800587125122547,0.0,-1.383792183496129e-21,-0.00016233765927609056,-5.082197683525802e-21,-0.00011459129018476233,-0.000760957773309201,0.0001821095502236858,-0.00012140637409174815,0.0,0.0,1.2140637409174815e-05,0.0,0.0,0.0,0.0,-0.0,0.00016711230273358524,-3.342246054671705e-05,-2.228163975814823e-05,-1.383792183496129e-21,0.0,4.456328042579116e-06,0.0,2.117582368135751e-21,2.117582368135751e-22,-0.0,0.000405844155466184,-8.116882963804528e-05,0.0,-0.00016233765927609056,0.0,0.0,3.246753112762235e-05,0.0,0.0,-0.0,9.284016414312646e-05,-1.503483481376383e-20,-3.97886433347594e-05,-5.082197683525802e-21,0.0,2.117582368135751e-21,0.0,2.652576085893088e-06,6.352747104407253e-22,-0.0,0.00028647822909988463,-1.6940658945086007e-21,-3.819709672825411e-05,-0.00011459129018476233,0.0,2.117582368135751e-22,0.0,6.352747104407253e-22,1.5278837963705882e-05,-0.0,0.0005073052016086876,-0.0,-0.0,-0.000760957773309201,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001521915546618402,11.0,16.0,7.0,0.02840495854616165,-0.003954226151108742,-0.0028409091755747795,-0.0057713426649570465,0.00015609391266480088,0.00014323911454994231,0.0003043831093236804,7.95772866695188e-05,0.00021485866454895586,0.0003382034774404019,-0.003954226151108742,0.001519283396191895,0.00014323911454994231,0.0003043831093236804,-0.00010406260116724297,-2.8647822546190582e-05,-6.0876624047523364e-05,1.3838400775767132e-19,9.147955830346444e-20,-1.7285103414501623e-19,-0.0028409091755747795,0.00014323911454994231,0.0007312015513889492,0.00021485866454895586,2.914142305375714e-19,-1.9098548364127055e-05,-1.526455062468805e-19,-3.410455246921629e-05,-2.8647822546190582e-05,-3.2148770002603798e-19,-0.0057713426649570465,0.0003043831093236804,0.00021485866454895586,0.0036824389826506376,8.563011829005302e-20,-4.3039218628679847e-20,-0.000101461038866546,-1.5415999640028266e-19,-7.161955727497116e-05,-0.000405844155466184,0.00015609391266480088,-0.00010406260116724297,2.914142305375714e-19,8.563011829005302e-20,1.0406260116724297e-05,-7.611565747109509e-21,-6.083558643095884e-35,-1.35920815758679e-20,-1.141734942845783e-20,-1.2812622101024076e-34,0.00014323911454994231,-2.8647822546190582e-05,-1.9098548364127055e-05,-4.3039218628679847e-20,-7.611565747109509e-21,3.819709490926471e-06,-8.61522134303651e-36,-3.282252670610414e-21,-1.4823076576950256e-21,7.067882710256991e-21,0.0003043831093236804,-6.0876624047523364e-05,-1.526455062468805e-19,-0.000101461038866546,-6.083558643095884e-35,-8.61522134303651e-36,2.029220740951132e-05,7.825156059732918e-21,1.1756056463284853e-20,3.994730474066186e-20,7.95772866695188e-05,1.3838400775767132e-19,-3.410455246921629e-05,-1.5415999640028266e-19,-1.35920815758679e-20,-3.282252670610414e-21,7.825156059732918e-21,2.2736367100151256e-06,2.117582368135751e-21,1.2621219529355697e-20,0.00021485866454895586,9.147955830346444e-20,-2.8647822546190582e-05,-7.161955727497116e-05,-1.141734942845783e-20,-1.4823076576950256e-21,1.1756056463284853e-20,2.117582368135751e-21,9.549274182063527e-06,2.756474378169262e-20,0.0003382034774404019,-1.7285103414501623e-19,-3.2148770002603798e-19,-0.000405844155466184,-1.2812622101024076e-34,7.067882710256991e-21,3.994730474066186e-20,1.2621219529355697e-20,2.756474378169262e-20,6.764069257769734e-05,11.0,16.0,8.0,0.0253957137465477,-0.003489540424197912,-0.002506684511899948,-0.00456773629412055,0.00013658216630574316,0.00012533421977423131,0.0002367424312978983,6.963012128835544e-05,0.00016711230273358524,0.0002367424312978983,-0.003489540424197912,0.0013352915411815047,0.00012533421977423131,0.0002367424312978983,-9.10547751118429e-05,-2.5066845410037786e-05,-4.734848334919661e-05,1.079967007749233e-20,0.0,-0.0,-0.002506684511899948,0.00012533421977423131,0.0006425865576602519,0.00016711230273358524,0.0,-1.6711230273358524e-05,0.0,-2.9841481591574848e-05,-2.228163975814823e-05,-0.0,-0.00456773629412055,0.0002367424312978983,0.00016711230273358524,0.002488779602572322,0.0,9.761948976927898e-22,-6.764069257769734e-05,3.3881317890172014e-21,-4.774637272930704e-05,-0.0002367424312978983,0.00013658216630574316,-9.10547751118429e-05,0.0,0.0,9.105478056881111e-06,0.0,0.0,0.0,0.0,-0.0,0.00012533421977423131,-2.5066845410037786e-05,-1.6711230273358524e-05,9.761948976927898e-22,0.0,3.3422459182474995e-06,0.0,-1.5881867761018131e-21,-1.0587911840678754e-22,-0.0,0.0002367424312978983,-4.734848334919661e-05,0.0,-6.764069257769734e-05,0.0,0.0,1.3528138879337348e-05,0.0,0.0,-0.0,6.963012128835544e-05,1.079967007749233e-20,-2.9841481591574848e-05,3.3881317890172014e-21,0.0,-1.5881867761018131e-21,0.0,1.989432121263235e-06,-2.117582368135751e-22,-0.0,0.00016711230273358524,0.0,-2.228163975814823e-05,-4.774637272930704e-05,0.0,-1.0587911840678754e-22,0.0,-2.117582368135751e-22,6.366182788042352e-06,-0.0,0.0002367424312978983,-0.0,-0.0,-0.0002367424312978983,-0.0,-0.0,-0.0,-0.0,-0.0,3.382034628884867e-05,11.0,16.0,9.0,0.022966597229242325,-0.003122857538983226,-0.002243018476292491,-0.0037058419547975063,0.00012140637409174815,0.00011140819697175175,0.00018939393339678645,6.18934427620843e-05,0.0001336898421868682,0.000172176311025396,-0.003122857538983226,0.0011911345645785332,0.00011140819697175175,0.00018939393339678645,-8.093757787719369e-05,-2.228163975814823e-05,-3.787878813454881e-05,1.3404296390299303e-19,7.411538288475128e-20,-2.6986462138574222e-20,-0.002243018476292491,0.00011140819697175175,0.0005731686833314598,0.0001336898421868682,2.284315613244416e-19,-1.4854426808597054e-05,0.0,-2.6525762223172933e-05,-1.7825312170316465e-05,-1.7711997111473462e-19,-0.0037058419547975063,0.00018939393339678645,0.0001336898421868682,0.0017627454362809658,5.3280961845353694e-20,-3.4097092476600446e-20,-4.734848334919661e-05,-7.369186641112413e-20,-3.342246054671705e-05,-0.00014757968892809004,0.00012140637409174815,-8.093757787719369e-05,2.284315613244416e-19,5.3280961845353694e-20,8.09375796961831e-06,-5.920107006338227e-21,0.0,-1.0571619452227014e-20,-7.104128407605873e-21,-7.05896755460765e-35,0.00011140819697175175,-2.228163975814823e-05,-1.4854426808597054e-05,-3.4097092476600446e-20,-5.920107006338227e-21,2.970885361719411e-06,0.0,-3.705769144237564e-21,-3.705769144237564e-22,3.5981948710305396e-21,0.00018939393339678645,-3.787878813454881e-05,0.0,-4.734848334919661e-05,0.0,0.0,9.469697033637203e-06,0.0,0.0,-0.0,6.18934427620843e-05,1.3404296390299303e-19,-2.6525762223172933e-05,-7.369186641112413e-20,-1.0571619452227014e-20,-3.705769144237564e-21,0.0,1.7683840951576713e-06,1.0587911840678754e-21,6.425347955133336e-21,0.0001336898421868682,7.411538288475128e-20,-1.7825312170316465e-05,-3.342246054671705e-05,-7.104128407605873e-21,-3.705769144237564e-22,0.0,1.0587911840678754e-21,4.456328042579116e-06,1.3888097528475376e-20,0.000172176311025396,-2.6986462138574222e-20,-1.7711997111473462e-19,-0.00014757968892809004,-7.05896755460765e-35,3.5981948710305396e-21,-0.0,6.425347955133336e-21,1.3888097528475376e-20,1.8447461116011254e-05,11.0,16.0,10.0,0.020963750779628754,-0.0028260676190257072,-0.0020296548027545214,-0.0030672703869640827,0.00010926573304459453,0.00010026738164015114,0.0001549586741020903,5.5704098485875875e-05,0.00010938259947579354,0.00012913222599308938,-0.0028260676190257072,0.0010751202935352921,0.00010026738164015114,0.0001549586741020903,-7.284382445504889e-05,-2.0053475964232348e-05,-3.09917340928223e-05,8.046812998915853e-21,9.317362419797304e-21,3.870870517094027e-20,-0.0020296548027545214,0.00010026738164015114,0.000517310225404799,0.00010938259947579354,0.0,-1.3368983672989998e-05,9.715126434510205e-21,-2.387318636465352e-05,-1.4584345990442671e-05,1.8215861256913068e-20,-0.0030672703869640827,0.0001549586741020903,0.00010938259947579354,0.0012949936790391803,0.0,-1.0420651114448809e-21,-3.443526293267496e-05,8.470329472543003e-22,-2.430724271107465e-05,-9.684917313279584e-05,0.00010926573304459453,-7.284382445504889e-05,0.0,0.0,7.2843822636059485e-06,0.0,0.0,0.0,0.0,-0.0,0.00010026738164015114,-2.0053475964232348e-05,-1.3368983672989998e-05,-1.0420651114448809e-21,0.0,2.673796871022205e-06,0.0,-1.164670302474663e-21,5.293955920339377e-23,-0.0,0.0001549586741020903,-3.09917340928223e-05,9.715126434510205e-21,-3.443526293267496e-05,0.0,0.0,6.887052222737111e-06,9.4039548065783e-38,-2.158916963008002e-21,-8.60193439267633e-21,5.5704098485875875e-05,8.046812998915853e-21,-2.387318636465352e-05,8.470329472543003e-22,0.0,-1.164670302474663e-21,9.4039548065783e-38,1.591545697010588e-06,-1.0587911840678754e-22,2.072596210957355e-37,0.00010938259947579354,9.317362419797304e-21,-1.4584345990442671e-05,-2.430724271107465e-05,0.0,5.293955920339377e-23,-2.158916963008002e-21,-1.0587911840678754e-22,3.2409657251264434e-06,-4.047969078448063e-21,0.00012913222599308938,3.870870517094027e-20,1.8215861256913068e-20,-9.684917313279584e-05,-0.0,-0.0,-8.60193439267633e-21,2.072596210957355e-37,-4.047969078448063e-21,1.076101943908725e-05,11.0,16.0,11.0,0.01928355172276497,-0.0025808915961533785,-0.0018534272676333785,-0.0025808915961533785,9.93324865703471e-05,9.115216380450875e-05,0.00012913222599308938,5.0640090194065124e-05,9.115216380450875e-05,9.93324865703471e-05,-0.0025808915961533785,0.0009797299280762672,9.115216380450875e-05,0.00012913222599308938,-6.622165528824553e-05,-1.8230432033305988e-05,-2.5826446290011518e-05,-7.517417406881916e-21,0.0,-0.0,-0.0018534272676333785,9.115216380450875e-05,0.00047138691297732294,9.115216380450875e-05,0.0,-1.2153621355537325e-05,0.0,-2.1702895537600853e-05,-1.2153621355537325e-05,-0.0,-0.0025808915961533785,0.00012913222599308938,9.115216380450875e-05,0.0009797299280762672,0.0,3.276045415631334e-25,-2.5826446290011518e-05,-8.470329472543003e-22,-1.8230432033305988e-05,-6.622165528824553e-05,9.93324865703471e-05,-6.622165528824553e-05,0.0,0.0,6.622165528824553e-06,0.0,0.0,0.0,0.0,-0.0,9.115216380450875e-05,-1.8230432033305988e-05,-1.2153621355537325e-05,3.276045415631334e-25,0.0,2.4307244075316703e-06,0.0,8.470329472543003e-22,0.0,-0.0,0.00012913222599308938,-2.5826446290011518e-05,0.0,-2.5826446290011518e-05,0.0,0.0,5.165289167052833e-06,0.0,0.0,-0.0,5.0640090194065124e-05,-7.517417406881916e-21,-2.1702895537600853e-05,-8.470329472543003e-22,0.0,8.470329472543003e-22,0.0,1.4468597555605811e-06,2.117582368135751e-22,-0.0,9.115216380450875e-05,0.0,-1.2153621355537325e-05,-1.8230432033305988e-05,0.0,0.0,0.0,2.117582368135751e-22,2.4307244075316703e-06,-0.0,9.93324865703471e-05,-0.0,-0.0,-6.622165528824553e-05,-0.0,-0.0,-0.0,-0.0,-0.0,6.622165528824553e-06,11.0,16.0,12.0,0.017853572964668274,-0.0023749228566884995,-0.001705402391962707,-0.002201842376962304,9.10547751118429e-05,8.355615136679262e-05,0.00010926573304459453,4.642008207156323e-05,7.712875230936334e-05,7.804695633240044e-05,-0.0023749228566884995,0.0008999068522825837,8.355615136679262e-05,0.00010926573304459453,-6.0703187045874074e-05,-1.6711230273358524e-05,-2.1853147700312547e-05,-8.470329472543003e-21,-4.235164736271502e-22,-0.0,-0.001705402391962707,8.355615136679262e-05,0.00043296164949424565,7.712875230936334e-05,0.0,-1.1140819879074115e-05,0.0,-1.98943216673797e-05,-1.0283833944413345e-05,-0.0,-0.002201842376962304,0.00010926573304459453,7.712875230936334e-05,0.0007593509508296847,0.0,-4.153808059611993e-22,-1.986649658647366e-05,-1.2705494208814505e-21,-1.4023409676156007e-05,-4.682817234424874e-05,9.10547751118429e-05,-6.0703187045874074e-05,0.0,0.0,6.070318704587407e-06,0.0,0.0,0.0,0.0,-0.0,8.355615136679262e-05,-1.6711230273358524e-05,-1.1140819879074115e-05,-4.153808059611993e-22,0.0,2.228164021289558e-06,0.0,1.0587911840678754e-21,0.0,-0.0,0.00010926573304459453,-2.1853147700312547e-05,0.0,-1.986649658647366e-05,0.0,0.0,3.973299499193672e-06,0.0,0.0,-0.0,4.642008207156323e-05,-8.470329472543003e-21,-1.98943216673797e-05,-1.2705494208814505e-21,0.0,1.0587911840678754e-21,0.0,1.326288042946544e-06,1.5881867761018131e-22,-0.0,7.712875230936334e-05,-4.235164736271502e-22,-1.0283833944413345e-05,-1.4023409676156007e-05,0.0,0.0,0.0,1.5881867761018131e-22,1.8697879795581684e-06,-0.0,7.804695633240044e-05,-0.0,-0.0,-4.682817234424874e-05,-0.0,-0.0,-0.0,-0.0,-0.0,4.2571064113872126e-06,11.0,16.0,13.0,0.016621623188257217,-0.0021994407288730145,-0.0015793030615895987,-0.0019006729125976562,8.405056723859161e-05,7.712875230936334e-05,9.365634468849748e-05,4.284930764697492e-05,6.611036224057898e-05,6.243756070034578e-05,-0.0021994407288730145,0.0008321241475641727,7.712875230936334e-05,9.365634468849748e-05,-5.6033710279734805e-05,-1.5425750461872667e-05,-1.8731268937699497e-05,6.564505341220828e-21,1.6940658945086007e-21,-6.776263578034403e-21,-0.0015793030615895987,7.712875230936334e-05,0.0004003349458798766,6.611036224057898e-05,0.0,-1.0283833944413345e-05,8.470329472543003e-22,-1.836398951127194e-05,-8.81471441971371e-06,2.117582368135751e-21,-0.0019006729125976562,9.365634468849748e-05,6.611036224057898e-05,0.0006005858886055648,-0.0,-0.0,-1.5609390175086446e-05,-5.760806075968579e-22,-1.1018393706763163e-05,-3.40568512910977e-05,8.405056723859161e-05,-5.6033710279734805e-05,0.0,-0.0,5.60337093702401e-06,0.0,0.0,0.0,0.0,0.0,7.712875230936334e-05,-1.5425750461872667e-05,-1.0283833944413345e-05,-0.0,0.0,2.056766788882669e-06,6.617444900424222e-24,-8.470329472543003e-22,0.0,1.609190260812195e-23,9.365634468849748e-05,-1.8731268937699497e-05,8.470329472543003e-22,-1.5609390175086446e-05,0.0,6.617444900424222e-24,3.1218780804920243e-06,1.3234889800848443e-23,-1.5881867761018131e-22,1.0587911840678754e-21,4.284930764697492e-05,6.564505341220828e-21,-1.836398951127194e-05,-5.760806075968579e-22,0.0,-8.470329472543003e-22,1.3234889800848443e-23,1.2242659295225167e-06,5.293955920339377e-23,0.0,6.611036224057898e-05,1.6940658945086007e-21,-8.81471441971371e-06,-1.1018393706763163e-05,0.0,0.0,-1.5881867761018131e-22,5.293955920339377e-23,1.469119069952285e-06,-3.1763735522036263e-22,6.243756070034578e-05,-6.776263578034403e-21,2.117582368135751e-21,-3.40568512910977e-05,0.0,1.609190260812195e-23,1.0587911840678754e-21,0.0,-3.1763735522036263e-22,2.8380709409248084e-06,11.0,16.0,14.0,0.015549126081168652,-0.0020481357350945473,-0.00147058826405555,-0.0016573958564549685,7.804695633240044e-05,7.161955727497116e-05,8.116882963804528e-05,3.97886433347594e-05,5.7295645092381164e-05,5.0730519433273e-05,-0.0020481357350945473,0.0007738462300039828,7.161955727497116e-05,8.116882963804528e-05,-5.203130058362149e-05,-1.4323911273095291e-05,-1.6233765563811176e-05,8.036225087075174e-20,3.282252670610414e-20,-6.776263578034403e-21,-0.00147058826405555,7.161955727497116e-05,0.00037228528526611626,5.7295645092381164e-05,1.4837116675378636e-19,-9.549274182063527e-06,-2.117582368135751e-22,-1.7052276234608144e-05,-7.639418981852941e-06,-4.1928130889087867e-20,-0.0016573958564549685,8.116882963804528e-05,5.7295645092381164e-05,0.00048327131662517786,2.283469885691566e-20,-1.4670986819752737e-20,-1.2487512321968097e-05,-3.597845661871549e-20,-8.81471441971371e-06,-2.53652597166365e-05,7.804695633240044e-05,-5.203130058362149e-05,1.4837116675378636e-19,2.283469885691566e-20,5.203130058362149e-06,-3.805782873554754e-21,-1.1295241381287876e-37,-6.79604078793395e-21,-3.044626460402517e-21,-1.692711865184094e-35,7.161955727497116e-05,-1.4323911273095291e-05,-9.549274182063527e-06,-1.4670986819752737e-20,-3.805782873554754e-21,1.9098547454632353e-06,-4.720135421324083e-24,-1.641126335305207e-21,-3.147410366296256e-22,1.039948389376894e-21,8.116882963804528e-05,-1.6233765563811176e-05,-2.117582368135751e-22,-1.2487512321968097e-05,-1.1295241381287876e-37,-4.720135421324083e-24,2.4975024643936194e-06,0.0,5.293955920339377e-23,-5.293955920339377e-22,3.97886433347594e-05,8.036225087075174e-20,-1.7052276234608144e-05,-3.597845661871549e-20,-6.79604078793395e-21,-1.641126335305207e-21,0.0,1.1368183550075628e-06,6.88214269644119e-22,1.852884572118782e-21,5.7295645092381164e-05,3.282252670610414e-20,-7.639418981852941e-06,-8.81471441971371e-06,-3.044626460402517e-21,-3.147410366296256e-22,5.293955920339377e-23,6.88214269644119e-22,1.1752953241739306e-06,1.0587911840678754e-21,5.0730519433273e-05,-6.776263578034403e-21,-4.1928130889087867e-20,-2.53652597166365e-05,-1.692711865184094e-35,1.039948389376894e-21,-5.293955920339377e-22,1.852884572118782e-21,1.0587911840678754e-21,1.9511737718858058e-06,11.0,16.0,15.0,0.014606935903429985,-0.0019163282122462988,-0.0013758912682533264,-0.0014580547576770186,7.284382445504889e-05,6.68449210934341e-05,7.102272502379492e-05,3.713606565725058e-05,5.013369082007557e-05,4.177807568339631e-05,-0.0019163282122462988,0.0007232034695334733,6.68449210934341e-05,7.102272502379492e-05,-4.856254963669926e-05,-1.3368983672989998e-05,-1.4204545550455805e-05,1.2705494208814505e-21,-1.9058241313221758e-21,-1.6940658945086007e-21,-0.0013758912682533264,6.68449210934341e-05,0.0003479119041003287,5.013369082007557e-05,0.0,-8.912656085158233e-06,-2.117582368135751e-21,-1.591545697010588e-05,-6.684491836494999e-06,-4.658681209898652e-21,-0.0014580547576770186,7.102272502379492e-05,5.013369082007557e-05,0.0003946880460716784,-0.0,-5.135059391624181e-22,-1.014610370475566e-05,-5.590513599507688e-22,-7.1619556365476456e-06,-1.9282188077340834e-05,7.284382445504889e-05,-4.856254963669926e-05,0.0,-0.0,4.856254690821515e-06,0.0,0.0,0.0,0.0,0.0,6.68449210934341e-05,-1.3368983672989998e-05,-8.912656085158233e-06,-5.135059391624181e-22,0.0,1.7825311715569114e-06,1.3200513609181627e-23,-1.0587911840678754e-22,9.318009235252487e-24,2.2007163484147223e-23,7.102272502379492e-05,-1.4204545550455805e-05,-2.117582368135751e-21,-1.014610370475566e-05,0.0,1.3200513609181627e-23,2.029220695476397e-06,1.3234889800848443e-23,2.6469779601696886e-22,3.1763735522036263e-22,3.713606565725058e-05,1.2705494208814505e-21,-1.591545697010588e-05,-5.590513599507688e-22,0.0,-1.0587911840678754e-22,1.3234889800848443e-23,1.0610305025693378e-06,0.0,2.6469779601696886e-23,5.013369082007557e-05,-1.9058241313221758e-21,-6.684491836494999e-06,-7.1619556365476456e-06,0.0,9.318009235252487e-24,2.6469779601696886e-22,0.0,9.549273727316177e-07,5.823351512373315e-22,4.177807568339631e-05,-1.6940658945086007e-21,-4.658681209898652e-21,-1.9282188077340834e-05,0.0,2.2007163484147223e-23,3.1763735522036263e-22,2.6469779601696886e-23,5.823351512373315e-22,1.3772992133453954e-06,11.0,16.0,16.0,0.013772618025541306,-0.0018004743615165353,-0.0012926628114655614,-0.0012926628114655614,6.829108315287158e-05,6.266710988711566e-05,6.266710988711566e-05,3.481506064417772e-05,4.423561040312052e-05,3.481506064417772e-05,-0.0018004743615165353,0.0006787866004742682,6.266710988711566e-05,6.266710988711566e-05,-4.552738755592145e-05,-1.2533422705018893e-05,-1.2533422705018893e-05,5.717472393966527e-21,-6.352747104407253e-22,5.505714157152952e-21,-0.0012926628114655614,6.266710988711566e-05,0.00032653604284860194,4.423561040312052e-05,0.0,-8.355615136679262e-06,-6.352747104407253e-22,-1.4920740795787424e-05,-5.898081326449756e-06,-8.470329472543003e-22,-0.0012926628114655614,6.266710988711566e-05,4.423561040312052e-05,0.00032653604284860194,-0.0,5.664497392820384e-22,-8.355615136679262e-06,3.499395558367057e-22,-5.898081326449756e-06,-1.4920740795787424e-05,6.829108315287158e-05,-4.552738755592145e-05,0.0,-0.0,4.5527390284405556e-06,0.0,0.0,0.0,0.0,0.0,6.266710988711566e-05,-1.2533422705018893e-05,-8.355615136679262e-06,5.664497392820384e-22,0.0,1.6711229591237498e-06,-1.1185959283612563e-23,-7.411538288475128e-22,-3.670131816418789e-23,-2.251828224185802e-23,6.266710988711566e-05,-1.2533422705018893e-05,-6.352747104407253e-22,-8.355615136679262e-06,0.0,-1.1185959283612563e-23,1.6711229591237498e-06,6.617444900424222e-24,1.0587911840678754e-22,-7.411538288475128e-22,3.481506064417772e-05,5.717472393966527e-21,-1.4920740795787424e-05,3.499395558367057e-22,0.0,-7.411538288475128e-22,6.617444900424222e-24,9.947160606316174e-07,-5.293955920339377e-23,0.0,4.423561040312052e-05,-6.352747104407253e-22,-5.898081326449756e-06,-5.898081326449756e-06,0.0,-3.670131816418789e-23,1.0587911840678754e-22,-5.293955920339377e-23,7.864107942623377e-07,1.5881867761018131e-22,3.481506064417772e-05,5.505714157152952e-21,-8.470329472543003e-22,-1.4920740795787424e-05,0.0,-2.251828224185802e-23,-7.411538288475128e-22,0.0,1.5881867761018131e-22,9.947160606316174e-07,12.0,3.0,3.0,0.18912799656391144,-0.033882785588502884,-0.09775640815496445,-0.09775640815496445,0.001526251551695168,0.006410256493836641,0.006410256493836641,0.013888888992369175,0.02083333395421505,0.013888888992369175,-0.033882785588502884,0.013181263580918312,0.006410256493836641,0.006410256493836641,-0.0009157509193755686,-0.0011655011912807822,-0.0011655011912807822,-1.1709383462843448e-17,4.336808689942018e-19,-1.1275702593849246e-17,-0.09775640815496445,0.006410256493836641,0.23664529621601105,0.02083333395421505,-9.084158491627526e-19,-0.006410256493836641,-3.2526065174565133e-19,-0.0833333358168602,-0.02083333395421505,1.5601756612339094e-16,-0.09775640815496445,0.006410256493836641,0.02083333395421505,0.23664529621601105,-8.359344581805232e-19,-4.376613654993835e-19,-0.006410256493836641,1.5368236246225984e-16,-0.02083333395421505,-0.0833333358168602,0.001526251551695168,-0.0009157509193755686,-9.084158491627526e-19,-8.359344581805232e-19,8.325008093379438e-05,-1.413140656642674e-20,-3.544013006100539e-20,4.941170109927988e-19,-1.3023629972665674e-20,5.395597806058362e-19,0.006410256493836641,-0.0011655011912807822,-0.006410256493836641,-4.376613654993835e-19,-1.413140656642674e-20,0.0011655011912807822,-3.3713115074694617e-21,3.865143687219381e-18,5.802659072362418e-20,2.0274074029052532e-19,0.006410256493836641,-0.0011655011912807822,-3.2526065174565133e-19,-0.006410256493836641,-3.544013006100539e-20,-3.3713115074694617e-21,0.0011655011912807822,2.7667345843157017e-19,-2.168404344971009e-19,3.469446951953614e-18,0.013888888992369175,-1.1709383462843448e-17,-0.0833333358168602,1.5368236246225984e-16,4.941170109927988e-19,3.865143687219381e-18,2.7667345843157017e-19,0.0416666679084301,9.946269907472902e-19,-7.74538970719051e-17,0.02083333395421505,4.336808689942018e-19,-0.02083333395421505,-0.02083333395421505,-1.3023629972665674e-20,5.802659072362418e-20,-2.168404344971009e-19,9.946269907472902e-19,0.02083333395421505,0.0,0.013888888992369175,-1.1275702593849246e-17,1.5601756612339094e-16,-0.0833333358168602,5.395597806058362e-19,2.0274074029052532e-19,3.469446951953614e-18,-7.74538970719051e-17,0.0,0.0416666679084301,12.0,3.0,4.0,0.1558150202035904,-0.02637362666428089,-0.07644230872392654,-0.06282051652669907,0.0011446886928752065,0.004807692486792803,0.003846153849735856,0.010416666977107525,0.012500000186264515,0.0069444444961845875,-0.02637362666428089,0.01006077229976654,0.004807692486792803,0.003846153849735856,-0.0006868132040835917,-0.0008741258643567562,-0.0006993007264100015,1.1492543028346347e-17,-6.965702930957649e-19,-2.8735845025688968e-18,-0.07644230872392654,0.004807692486792803,0.18060897290706635,0.012500000186264515,2.735231669180561e-19,-0.004807692486792803,-9.578147651516897e-19,-0.0625,-0.012500000186264515,1.2610401525595409e-17,-0.06282051652669907,0.003846153849735856,0.012500000186264515,0.09049145132303238,-6.505213034913027e-19,-2.443669993698802e-18,-0.0025641026441007853,2.812010087669123e-17,-0.008333333767950535,-0.02083333395421505,0.0011446886928752065,-0.0006868132040835917,2.735231669180561e-19,-6.505213034913027e-19,6.243756070034578e-05,1.0164395367051604e-19,6.776263578034403e-20,-3.4055726337389405e-19,-1.0914247517027995e-19,1.2644909691293531e-19,0.004807692486792803,-0.0008741258643567562,-0.004807692486792803,-2.443669993698802e-18,1.0164395367051604e-19,0.0008741258643567562,2.4042986780831156e-19,-6.851695418864032e-18,8.081504953806327e-19,-8.639044590700557e-20,0.003846153849735856,-0.0006993007264100015,-9.578147651516897e-19,-0.0025641026441007853,6.776263578034403e-20,2.4042986780831156e-19,0.0004662004648707807,-6.962244282021411e-19,7.1744941743115725e-19,1.5447530731003022e-18,0.010416666977107525,1.1492543028346347e-17,-0.0625,2.812010087669123e-17,-3.4055726337389405e-19,-6.851695418864032e-18,-6.962244282021411e-19,0.03125,-1.1009300805770418e-17,-4.336808689942018e-18,0.012500000186264515,-6.965702930957649e-19,-0.012500000186264515,-0.008333333767950535,-1.0914247517027995e-19,8.081504953806327e-19,7.1744941743115725e-19,-1.1009300805770418e-17,0.008333333767950535,-1.6588199354028693e-18,0.0069444444961845875,-2.8735845025688968e-18,1.2610401525595409e-17,-0.02083333395421505,1.2644909691293531e-19,-8.639044590700557e-20,1.5447530731003022e-18,-4.336808689942018e-18,-1.6588199354028693e-18,0.0069444444961845875,12.0,3.0,5.0,0.13263125717639923,-0.02161172218620777,-0.06282051652669907,-0.04386446997523308,0.0009157509193755686,0.003846153849735856,0.0025641026441007853,0.008333333767950535,0.008333333767950535,0.003968254197388887,-0.02161172218620777,0.008141858503222466,0.003846153849735856,0.0025641026441007853,-0.0005494505749084055,-0.0006993007264100015,-0.0004662004648707807,9.128084470491082e-18,-5.134098614072559e-19,2.45500443604231e-18,-0.06282051652669907,0.003846153849735856,0.14615385234355927,0.008333333767950535,1.7990702694176134e-18,-0.003846153849735856,-1.5034270262995764e-18,-0.05000000074505806,-0.008333333767950535,-3.965082408057119e-18,-0.04386446997523308,0.0025641026441007853,0.008333333767950535,0.04574175924062729,6.2341624917916505e-19,-1.3923615888496579e-18,-0.0012820513220503926,-7.451124671050078e-18,-0.004166666883975267,-0.007936508394777775,0.0009157509193755686,-0.0005494505749084055,1.7990702694176134e-18,6.2341624917916505e-19,4.995004928787239e-05,-2.0328790734103208e-20,-1.0164395367051604e-20,-8.422472938203748e-19,-3.0778075909067955e-21,-1.5530597759079245e-19,0.003846153849735856,-0.0006993007264100015,-0.003846153849735856,-1.3923615888496579e-18,-2.0328790734103208e-20,0.0006993007264100015,-1.3552527156068805e-20,2.5341773280169876e-34,1.2520372480194845e-19,3.1678946924310163e-19,0.0025641026441007853,-0.0004662004648707807,-1.5034270262995764e-18,-0.0012820513220503926,-1.0164395367051604e-20,-1.3552527156068805e-20,0.00023310023243539035,3.4694470036524025e-19,4.0476881278454793e-19,-4.966115292263173e-19,0.008333333767950535,9.128084470491082e-18,-0.05000000074505806,-7.451124671050078e-18,-8.422472938203748e-19,2.5341773280169876e-34,3.4694470036524025e-19,0.02500000037252903,-2.4441578234650552e-18,1.9347537392704522e-18,0.008333333767950535,-5.134098614072559e-19,-0.008333333767950535,-0.004166666883975267,-3.0778075909067955e-21,1.2520372480194845e-19,4.0476881278454793e-19,-2.4441578234650552e-18,0.004166666883975267,-9.765679836140325e-19,0.003968254197388887,2.45500443604231e-18,-3.965082408057119e-18,-0.007936508394777775,-1.5530597759079245e-19,3.1678946924310163e-19,-4.966115292263173e-19,1.9347537392704522e-18,-9.765679836140325e-19,0.0019841270986944437,12.0,3.0,6.0,0.11551180481910706,-0.018315019086003304,-0.05334249138832092,-0.032394688576459885,0.000763125775847584,0.0032051282469183207,0.0018315018387511373,0.0069444444961845875,0.0059523810632526875,0.0024801588151603937,-0.018315019086003304,0.006840381771326065,0.0032051282469183207,0.0018315018387511373,-0.0004578754596877843,-0.0005827505956403911,-0.0003330003237351775,-2.8973525034948423e-18,3.5109358499374364e-18,3.542082095132202e-18,-0.05334249138832092,0.0032051282469183207,0.12278693169355392,0.0059523810632526875,-5.289433310340243e-19,-0.0032051282469183207,5.035095537905195e-18,-0.0416666679084301,-0.0059523810632526875,2.1312316754234884e-17,-0.032394688576459885,0.0018315018387511373,0.0059523810632526875,0.026598747819662094,6.776263578034403e-19,4.912320014716093e-18,-0.0007326007471419871,5.662883105749458e-17,-0.0023809524718672037,-0.0037202381063252687,0.000763125775847584,-0.0004578754596877843,-5.289433310340243e-19,6.776263578034403e-19,4.162504046689719e-05,6.776263578034403e-21,-1.0164395367051604e-20,3.5270844317472146e-19,-1.0311548859320227e-19,-9.383712644681713e-20,0.0032051282469183207,-0.0005827505956403911,-0.0032051282469183207,4.912320014716093e-18,6.776263578034403e-21,0.0005827505956403911,-1.2197274440461925e-19,1.2067641796789911e-18,-7.626092912747015e-19,-6.131017205309351e-19,0.0018315018387511373,-0.0003330003237351775,5.035095537905195e-18,-0.0007326007471419871,-1.0164395367051604e-20,-1.2197274440461925e-19,0.00013320012658368796,-1.2707152705942674e-18,-6.938894007304805e-19,-6.124797324090835e-19,0.0069444444961845875,-2.8973525034948423e-18,-0.0416666679084301,5.662883105749458e-17,3.5270844317472146e-19,1.2067641796789911e-18,-1.2707152705942674e-18,0.02083333395421505,-1.1415386102349238e-17,-7.179516608195841e-18,0.0059523810632526875,3.5109358499374364e-18,-0.0059523810632526875,-0.0023809524718672037,-1.0311548859320227e-19,-7.626092912747015e-19,-6.938894007304805e-19,-1.1415386102349238e-17,0.0023809524718672037,-1.147281621830303e-18,0.0024801588151603937,3.542082095132202e-18,2.1312316754234884e-17,-0.0037202381063252687,-9.383712644681713e-20,-6.131017205309351e-19,-6.124797324090835e-19,-7.179516608195841e-18,-1.147281621830303e-18,0.0007440476329065859,12.0,3.0,7.0,0.10233334451913834,-0.015894819051027298,-0.04635988920927048,-0.02491605654358864,0.0006541077746078372,0.002747252816334367,0.0013736264081671834,0.0059523810632526875,0.004464285913854837,0.0016534391324967146,-0.015894819051027298,0.005898863077163696,0.002747252816334367,0.0013736264081671834,-0.0003924646880477667,-0.0004995004856027663,-0.00024975024280138314,6.396792817664476e-18,2.2768245622195593e-18,1.6805133673525319e-18,-0.04635988920927048,0.002747252816334367,0.10588370263576508,0.004464285913854837,-2.846030702774449e-19,-0.002747252816334367,3.645629804982509e-18,-0.0357142873108387,-0.004464285913854837,1.6696713456276768e-17,-0.02491605654358864,0.0013736264081671834,0.004464285913854837,0.016903236508369446,4.0657581468206416e-20,5.095750210681871e-18,-0.0004578754596877843,5.0306980803327406e-17,-0.0014880952658131719,-0.0019841270986944437,0.0006541077746078372,-0.0003924646880477667,-2.846030702774449e-19,4.0657581468206416e-20,3.567860767361708e-05,5.2276111884512226e-20,8.893845946170154e-21,6.107361390753983e-20,-6.159555841171225e-20,-2.0364423316134777e-21,0.002747252816334367,-0.0004995004856027663,-0.002747252816334367,5.095750210681871e-18,5.2276111884512226e-20,0.0004995004856027663,-7.234276068144428e-20,-3.713392440762853e-18,-7.995991022080595e-19,-6.301925127571995e-19,0.0013736264081671834,-0.00024975024280138314,3.645629804982509e-18,-0.0004578754596877843,8.893845946170154e-21,-7.234276068144428e-20,8.325008093379438e-05,-1.1696202546577569e-18,-3.0417416357044955e-19,-3.1696819195420137e-19,0.0059523810632526875,6.396792817664476e-18,-0.0357142873108387,5.0306980803327406e-17,6.107361390753983e-20,-3.713392440762853e-18,-1.1696202546577569e-18,0.01785714365541935,-7.209944447028604e-18,-5.854691731421724e-18,0.004464285913854837,2.2768245622195593e-18,-0.004464285913854837,-0.0014880952658131719,-6.159555841171225e-20,-7.995991022080595e-19,-3.0417416357044955e-19,-7.209944447028604e-18,0.0014880952658131719,-3.5236570605778894e-19,0.0016534391324967146,1.6805133673525319e-18,1.6696713456276768e-17,-0.0019841270986944437,-2.0364423316134777e-21,-6.301925127571995e-19,-3.1696819195420137e-19,-5.854691731421724e-18,-3.5236570605778894e-19,0.0003306878206785768,12.0,3.0,8.0,0.09186762571334839,-0.01404151413589716,-0.04099893197417259,-0.019764957949519157,0.0005723443464376032,0.0024038462433964014,0.0010683761211112142,0.0052083334885537624,0.0034722222480922937,0.0011574074160307646,-0.01404151413589716,0.005185786634683609,0.0024038462433964014,0.0010683761211112142,-0.00034340660204179585,-0.0004370629321783781,-0.00019425019854679704,6.288372600415926e-18,1.0570971181733668e-18,7.877093114807989e-19,-0.04099893197417259,0.0024038462433964014,0.09308226406574249,0.0034722222480922937,1.786689650394379e-18,-0.0024038462433964014,1.4128799331910065e-19,-0.03125,-0.0034722222480922937,3.598666212114504e-18,-0.019764957949519157,0.0010683761211112142,0.0034722222480922937,0.011434167623519897,4.986950937917618e-19,2.574980159653073e-19,-0.0003052503161597997,1.7532169183677776e-17,-0.0009920635493472219,-0.0011574074160307646,0.0005723443464376032,-0.00034340660204179585,1.786689650394379e-18,4.986950937917618e-19,3.121878035017289e-05,-9.930416991033323e-20,-4.462818697030123e-23,-5.138633631780881e-19,-6.593611112790184e-20,-6.161743992385369e-20,0.0024038462433964014,-0.0004370629321783781,-0.0024038462433964014,2.574980159653073e-19,-9.930416991033323e-20,0.0004370629321783781,-9.393949327879484e-21,-7.589415207398531e-19,-2.303929616531697e-19,3.0376399513529906e-34,0.0010683761211112142,-0.00019425019854679704,1.4128799331910065e-19,-0.0003052503161597997,-4.462818697030123e-23,-9.393949327879484e-21,5.550005516852252e-05,4.2992667101003864e-20,-5.629714347088333e-20,-3.140498793660687e-20,0.0052083334885537624,6.288372600415926e-18,-0.03125,1.7532169183677776e-17,-5.138633631780881e-19,-7.589415207398531e-19,4.2992667101003864e-20,0.015625,-4.336808689942018e-18,-1.927470620772076e-18,0.0034722222480922937,1.0570971181733668e-18,-0.0034722222480922937,-0.0009920635493472219,-6.593611112790184e-20,-2.303929616531697e-19,-5.629714347088333e-20,-4.336808689942018e-18,0.0009920635493472219,7.322141390008313e-20,0.0011574074160307646,7.877093114807989e-19,3.598666212114504e-18,-0.0011574074160307646,-6.161743992385369e-20,3.0376399513529906e-34,-3.140498793660687e-20,-1.927470620772076e-18,7.322141390008313e-20,0.0001653439103392884,12.0,3.0,9.0,0.08335152268409729,-0.012576312758028507,-0.036752138286828995,-0.016064491122961044,0.000508750497829169,0.0021367522422224283,0.0008547008619643748,0.004629629664123058,0.0027777778450399637,0.0008417508215643466,-0.012576312758028507,0.0046268547885119915,0.0021367522422224283,0.0008547008619643748,-0.0003052503161597997,-0.0003885003970935941,-0.0001554001501062885,6.00478489434039e-18,6.361051997757285e-19,5.611549848577581e-19,-0.036752138286828995,0.0021367522422224283,0.08304843306541443,0.0027777778450399637,1.6429765315403349e-18,-0.0021367522422224283,-8.446901520397e-20,-0.02777777798473835,-0.0027777778450399637,2.7234909260599248e-18,-0.016064491122961044,0.0008547008619643748,0.0027777778450399637,0.008104627020657063,5.647671791952006e-19,5.634150749358002e-20,-0.0002136752154910937,1.3086996524768862e-17,-0.0006944444612599909,-0.0007215007208287716,0.000508750497829169,-0.0003052503161597997,1.6429765315403349e-18,5.647671791952006e-19,2.775002758426126e-05,-7.360288633413786e-20,-2.876435600269911e-20,-4.929395193908295e-19,-5.915273896647831e-20,-4.353232167133802e-20,0.0021367522422224283,-0.0003885003970935941,-0.0021367522422224283,5.634150749358002e-20,-7.360288633413786e-20,0.0003885003970935941,1.6940658945086007e-21,-5.824502844388412e-19,-6.989403464964883e-20,1.7786365992206165e-34,0.0008547008619643748,-0.0001554001501062885,-8.446901520397e-20,-0.0002136752154910937,-2.876435600269911e-20,1.6940658945086007e-21,3.885003752657212e-05,7.309536114099921e-34,2.11172538009925e-20,-2.057486727281493e-20,0.004629629664123058,6.00478489434039e-18,-0.02777777798473835,1.3086996524768862e-17,-4.929395193908295e-19,-5.824502844388412e-19,7.309536114099921e-34,0.013888888992369175,-2.193033234119469e-18,-1.3617454630299624e-18,0.0027777778450399637,6.361051997757285e-19,-0.0027777778450399637,-0.0006944444612599909,-5.915273896647831e-20,-6.989403464964883e-20,2.11172538009925e-20,-2.193033234119469e-18,0.0006944444612599909,2.899833442528232e-34,0.0008417508215643466,5.611549848577581e-19,2.7234909260599248e-18,-0.0007215007208287716,-4.353232167133802e-20,1.7786365992206165e-34,-2.057486727281493e-20,-1.3617454630299624e-18,2.899833442528232e-34,9.018759010359645e-05,12.0,3.0,10.0,0.07628482580184937,-0.011388611048460007,-0.03330419585108757,-0.013315850868821144,0.0004578754596877843,0.001923076924867928,0.0006993007264100015,0.004166666883975267,0.0022727272007614374,0.0006313131307251751,-0.011388611048460007,0.004176883492618799,0.001923076924867928,0.0006993007264100015,-0.00027472528745420277,-0.00034965036320500076,-0.0001271455839741975,-8.821080522045089e-18,-9.554531645028508e-19,-4.87890977618477e-19,-0.03330419585108757,0.001923076924867928,0.07497086375951767,0.0022727272007614374,-2.5564872962885313e-18,-0.001923076924867928,4.0657581468206416e-20,-0.02500000037252903,-0.0022727272007614374,-1.0028870095490916e-18,-0.013315850868821144,0.0006993007264100015,0.0022727272007614374,0.005957815330475569,-7.664316411865208e-19,5.167581140434601e-20,-0.0001554001501062885,-4.4945106737252525e-18,-0.0005050505278632045,-0.0004734848625957966,0.0004578754596877843,-0.00027472528745420277,-2.5564872962885313e-18,-7.664316411865208e-19,2.4975024643936194e-05,6.470470415210034e-20,1.9741789767223195e-20,8.872911038842202e-19,9.537890063573648e-20,6.259132231051271e-20,0.001923076924867928,-0.00034965036320500076,-0.001923076924867928,5.167581140434601e-20,6.470470415210034e-20,0.00034965036320500076,-1.512687738762369e-22,-9.391216206813335e-19,-4.636800990226917e-20,3.861359020473563e-22,0.0006993007264100015,-0.0001271455839741975,4.0657581468206416e-20,-0.0001554001501062885,1.9741789767223195e-20,-1.512687738762369e-22,2.82545734080486e-05,2.820969710202557e-34,-1.1492779576152143e-20,-4.573977915173222e-20,0.004166666883975267,-8.821080522045089e-18,-0.02500000037252903,-4.4945106737252525e-18,8.872911038842202e-19,-9.391216206813335e-19,2.820969710202557e-34,0.012500000186264515,3.274080905458301e-33,4.993900806026712e-19,0.0022727272007614374,-9.554531645028508e-19,-0.0022727272007614374,-0.0005050505278632045,9.537890063573648e-20,-4.636800990226917e-20,-1.1492779576152143e-20,3.274080905458301e-33,0.0005050505278632045,-6.776263578034403e-21,0.0006313131307251751,-4.87890977618477e-19,-1.0028870095490916e-18,-0.0004734848625957966,6.259132231051271e-20,3.861359020473563e-22,-4.573977915173222e-20,4.993900806026712e-19,-6.776263578034403e-21,5.260942634777166e-05,12.0,3.0,11.0,0.07032550871372223,-0.010406260378658772,-0.03044871799647808,-0.011217948980629444,0.0004162504046689719,0.0017482517287135124,0.0005827505956403911,0.0037878789007663727,0.0018939394503831863,0.0004856254963669926,-0.010406260378658772,0.0038067991845309734,0.0017482517287135124,0.0005827505956403911,-0.00024975024280138314,-0.00031786394538357854,-0.00010595464846119285,-1.7720885477348074e-17,-3.9302328752599536e-18,-1.497554250745603e-18,-0.03044871799647808,0.0017482517287135124,0.06832750886678696,0.0018939394503831863,-4.411982864010837e-18,-0.0017482517287135124,-2.947674656444965e-18,-0.022727273404598236,-0.0018939394503831863,-1.7076184216646695e-18,-0.011217948980629444,0.0005827505956403911,0.0018939394503831863,0.004509842023253441,-1.4623613345966516e-18,-3.0980383074239357e-18,-0.00011655011621769518,-7.655966850762097e-18,-0.0003787878667935729,-0.00032375031150877476,0.0004162504046689719,-0.00024975024280138314,-4.411982864010837e-18,-1.4623613345966516e-18,2.2704567527398467e-05,1.0115787520071603e-19,3.5841671318437333e-20,1.13936250483845e-18,2.4678264076211296e-19,9.136967899131413e-20,0.0017482517287135124,-0.00031786394538357854,-0.0017482517287135124,-3.0980383074239357e-18,1.0115787520071603e-19,0.00031786394538357854,1.3494978649889843e-19,1.3765803269306415e-18,4.1640106599796903e-19,1.805134925024305e-19,0.0005827505956403911,-0.00010595464846119285,-2.947674656444965e-18,-0.00011655011621769518,3.5841671318437333e-20,1.3494978649889843e-19,2.119093005603645e-05,7.057997675754784e-19,1.320107750084063e-19,5.759824041329242e-20,0.0037878789007663727,-1.7720885477348074e-17,-0.022727273404598236,-7.655966850762097e-18,1.13936250483845e-18,1.3765803269306415e-18,7.057997675754784e-19,0.011363636702299118,1.8488927466117464e-32,3.7740681549463604e-19,0.0018939394503831863,-3.9302328752599536e-18,-0.0018939394503831863,-0.0003787878667935729,2.4678264076211296e-19,4.1640106599796903e-19,1.320107750084063e-19,1.8488927466117464e-32,0.0003787878667935729,0.0,0.0004856254963669926,-1.497554250745603e-18,-1.7076184216646695e-18,-0.00032375031150877476,9.136967899131413e-20,1.805134925024305e-19,5.759824041329242e-20,3.7740681549463604e-19,0.0,3.237503187847324e-05,12.0,3.0,12.0,0.06523159891366959,-0.009580163285136223,-0.028044871985912323,-0.009580163285136223,0.000381562887923792,0.0016025641234591603,0.0004930966533720493,0.0034722222480922937,0.0016025641234591603,0.000381562887923792,-0.009580163285136223,0.0034970371052622795,0.0016025641234591603,0.0004930966533720493,-0.00022893772984389216,-0.00029137529782019556,-8.965393499238417e-05,4.503588567357716e-18,3.7947076036992655e-19,1.6940658945086007e-19,-0.028044871985912323,0.0016025641234591603,0.06276709586381912,0.0016025641234591603,1.1331823282893366e-18,-0.0016025641234591603,4.0657581468206416e-20,-0.02083333395421505,-0.0016025641234591603,1.1248597539537109e-18,-0.009580163285136223,0.0004930966533720493,0.0016025641234591603,0.0034970371052622795,3.415547139456623e-19,1.2739424123565665e-19,-8.965393499238417e-05,7.810780319846297e-18,-0.00029137529782019556,-0.00022893772984389216,0.000381562887923792,-0.00022893772984389216,1.1331823282893366e-18,3.415547139456623e-19,2.0812520233448595e-05,-3.7422145281561943e-20,-1.9016604401607077e-20,-3.697046266184251e-19,-3.446179511620537e-20,-1.8683486490469755e-20,0.0016025641234591603,-0.00029137529782019556,-0.0016025641234591603,1.2739424123565665e-19,-3.7422145281561943e-20,0.00029137529782019556,-1.597944599273098e-20,-4.368377004044338e-19,-4.0617434127929184e-20,1.5543549931229082e-22,0.0004930966533720493,-8.965393499238417e-05,4.0657581468206416e-20,-8.965393499238417e-05,-1.9016604401607077e-20,-1.597944599273098e-20,1.6300715287798084e-05,1.2442215106707838e-34,8.44261003629324e-21,6.776263578034403e-21,0.0034722222480922937,4.503588567357716e-18,-0.02083333395421505,7.810780319846297e-18,-3.697046266184251e-19,-4.368377004044338e-19,1.2442215106707838e-34,0.010416666977107525,-1.380230674973838e-18,-5.845954739599209e-19,0.0016025641234591603,3.7947076036992655e-19,-0.0016025641234591603,-0.00029137529782019556,-3.446179511620537e-20,-4.0617434127929184e-20,8.44261003629324e-21,-1.380230674973838e-18,0.00029137529782019556,6.776263578034403e-21,0.000381562887923792,1.6940658945086007e-19,1.1248597539537109e-18,-0.00022893772984389216,-1.8683486490469755e-20,1.5543549931229082e-22,6.776263578034403e-21,-5.845954739599209e-19,6.776263578034403e-21,2.0812520233448595e-05,12.0,3.0,13.0,0.060826994478702545,-0.008875739760696888,-0.025993237271904945,-0.008276979438960552,0.00035221187863498926,0.001479289960116148,0.0004226542660035193,0.0032051282469183207,0.0013736264081671834,0.0003052503161597997,-0.008875739760696888,0.0032339454628527164,0.001479289960116148,0.0004226542660035193,-0.00021132713300175965,-0.0002689617977011949,-7.684623415116221e-05,-1.0983410052597508e-17,-1.2739375526704677e-18,0.0,-0.025993237271904945,0.001479289960116148,0.058044519275426865,0.0013736264081671834,-3.571153357760378e-18,-0.001479289960116148,3.6591823321385775e-19,-0.01923076994717121,-0.0013736264081671834,1.6940658945086007e-18,-0.008276979438960552,0.0004226542660035193,0.0013736264081671834,0.002766998019069433,-2.0062255046162723e-19,-4.895976063185387e-19,-7.044238009257242e-05,1.5096036252925404e-17,-0.00022893772984389216,-0.00016650016186758876,0.00035221187863498926,-0.00021132713300175965,-3.571153357760378e-18,-2.0062255046162723e-19,1.9211558537790552e-05,1.34404131637949e-19,1.2734795304868349e-20,9.640759020032567e-19,1.0188113478646855e-19,-6.493194259142119e-23,0.001479289960116148,-0.0002689617977011949,-0.001479289960116148,-4.895976063185387e-19,1.34404131637949e-19,0.0002689617977011949,5.280372063717608e-20,2.340853304714839e-18,8.248738126197704e-20,9.342801454807577e-21,0.0004226542660035193,-7.684623415116221e-05,3.6591823321385775e-19,-7.044238009257242e-05,1.2734795304868349e-20,5.280372063717608e-20,1.2807705388695467e-05,-3.6686075382307364e-19,-5.207742940216681e-21,-5.082197683525802e-21,0.0032051282469183207,-1.0983410052597508e-17,-0.01923076994717121,1.5096036252925404e-17,9.640759020032567e-19,2.340853304714839e-18,-3.6686075382307364e-19,0.009615384973585606,-1.525031639730966e-18,-8.780484979122824e-19,0.0013736264081671834,-1.2739375526704677e-18,-0.0013736264081671834,-0.00022893772984389216,1.0188113478646855e-19,8.248738126197704e-20,-5.207742940216681e-21,-1.525031639730966e-18,0.00022893772984389216,-1.6940658945086007e-21,0.0003052503161597997,0.0,1.6940658945086007e-18,-0.00016650016186758876,-6.493194259142119e-23,9.342801454807577e-21,-5.082197683525802e-21,-8.780484979122824e-19,-1.6940658945086007e-21,1.387501379213063e-05,12.0,3.0,14.0,0.05698041990399361,-0.008267922326922417,-0.02422161214053631,-0.007222985383123159,0.0003270538873039186,0.0013736264081671834,0.00036630037357099354,0.0029761905316263437,0.0011904762359336019,0.00024801588733680546,-0.008267922326922417,0.0030077064875513315,0.0013736264081671834,0.00036630037357099354,-0.00019623234402388334,-0.00024975024280138314,-6.660006329184398e-05,3.8602190674425465e-18,2.676624113323589e-19,1.6601845766184287e-19,-0.02422161214053631,0.0013736264081671834,0.05398351699113846,0.0011904762359336019,7.920848901260512e-19,-0.0013736264081671834,-4.0657581468206416e-20,-0.01785714365541935,-0.0011904762359336019,7.453889935837843e-19,-0.007222985383123159,0.00036630037357099354,0.0011904762359336019,0.0022272998467087746,2.2663047893818396e-19,3.090999465700204e-20,-5.6353903346462175e-05,6.319712819464335e-18,-0.00018315018678549677,-0.00012400794366840273,0.0003270538873039186,-0.00019623234402388334,7.920848901260512e-19,2.2663047893818396e-19,1.783930383680854e-05,-9.763359712661923e-23,-9.529156199527824e-21,-3.1688968734419126e-19,-2.49516705331148e-20,-1.1438802002215223e-20,0.0013736264081671834,-0.00024975024280138314,-0.0013736264081671834,3.090999465700204e-20,-9.763359712661923e-23,0.00024975024280138314,-2.2323346823568857e-23,-3.7443232571068363e-19,-3.010025269197225e-20,-2.608812238486372e-22,0.00036630037357099354,-6.660006329184398e-05,-4.0657581468206416e-20,-5.6353903346462175e-05,-9.529156199527824e-21,-2.2323346823568857e-23,1.0246164492855314e-05,3.198123399244042e-34,5.391066843473746e-21,-5.929230630780102e-21,0.0029761905316263437,3.8602190674425465e-18,-0.01785714365541935,6.319712819464335e-18,-3.1688968734419126e-19,-3.7443232571068363e-19,3.198123399244042e-34,0.008928571827709675,-1.487268983611542e-18,-3.7172646283065783e-19,0.0011904762359336019,2.676624113323589e-19,-0.0011904762359336019,-0.00018315018678549677,-2.49516705331148e-20,-3.010025269197225e-20,5.391066843473746e-21,-1.487268983611542e-18,0.00018315018678549677,0.0,0.00024801588733680546,1.6601845766184287e-19,7.453889935837843e-19,-0.00012400794366840273,-1.1438802002215223e-20,-2.608812238486372e-22,-5.929230630780102e-21,-3.7172646283065783e-19,0.0,9.53907237999374e-06,12.0,3.0,15.0,0.053592003881931305,-0.0077380952425301075,-0.02267628163099289,-0.006358408834785223,0.0003052503161597997,0.0012820513220503926,0.00032051283051259816,0.0027777778450399637,0.0010416667209938169,0.00020424836839083582,-0.0077380952425301075,0.0028110777493566275,0.0012820513220503926,0.00032051283051259816,-0.00018315018678549677,-0.00023310023243539035,-5.827505810884759e-05,-6.3223941254199255e-18,-4.980553729855286e-19,-2.202285662861181e-19,-0.02267628163099289,0.0012820513220503926,0.05045406147837639,0.0010416667209938169,-1.7833157874709284e-18,-0.0012820513220503926,-3.7269449679189215e-20,-0.01666666753590107,-0.0010416667209938169,-2.981555974335137e-19,-0.006358408834785223,0.00032051283051259816,0.0010416667209938169,0.0018196060555055737,-4.0036735889575913e-19,3.156513341515076e-21,-4.578754669637419e-05,-2.1245784549615712e-18,-0.00014880952949170023,-9.426847827853635e-05,0.0003052503161597997,-0.00018315018678549677,-1.7833157874709284e-18,-4.0036735889575913e-19,1.6650015822960995e-05,5.2803756180093024e-20,1.5276781911761324e-20,5.915274025894801e-19,4.450474033605373e-20,1.9186709570934632e-20,0.0012820513220503926,-0.00023310023243539035,-0.0012820513220503926,3.156513341515076e-21,5.2803756180093024e-20,0.00023310023243539035,1.8967158549580726e-21,-1.8440729013965902e-19,-1.0551248514055762e-20,-2.1805428084855054e-22,0.00032051283051259816,-5.827505810884759e-05,-3.7269449679189215e-20,-4.578754669637419e-05,1.5276781911761324e-20,1.8967158549580726e-21,8.325007911480498e-06,5.474982947567367e-34,3.024104262885854e-21,4.235164736271502e-22,0.0027777778450399637,-6.3223941254199255e-18,-0.01666666753590107,-2.1245784549615712e-18,5.915274025894801e-19,-1.8440729013965902e-19,5.474982947567367e-34,0.008333333767950535,1.4444474582904269e-33,1.5175560207944122e-19,0.0010416667209938169,-4.980553729855286e-19,-0.0010416667209938169,-0.00014880952949170023,4.450474033605373e-20,-1.0551248514055762e-20,3.024104262885854e-21,1.4444474582904269e-33,0.00014880952949170023,-1.6940658945086007e-21,0.00020424836839083582,-2.202285662861181e-19,-2.981555974335137e-19,-9.426847827853635e-05,1.9186709570934632e-20,-2.1805428084855054e-22,4.235164736271502e-22,1.5175560207944122e-19,-1.6940658945086007e-21,6.7334626692172606e-06,12.0,3.0,16.0,0.05058439075946808,-0.00727213965728879,-0.02131645940244198,-0.005640397313982248,0.0002861721732188016,0.0012019231216982007,0.00028280544211156666,0.0026041667442768812,0.0009191176504828036,0.00017020697123371065,-0.00727213965728879,0.0026385991368442774,0.0012019231216982007,0.00028280544211156666,-0.00017170330102089792,-0.00021853146608918905,-5.141917063156143e-05,3.050063279461932e-18,2.1345230270808369e-19,1.0503208545953324e-19,-0.02131645940244198,0.0012019231216982007,0.04735812544822693,0.0009191176504828036,9.743640642694615e-19,-0.0012019231216982007,-3.3881317890172014e-21,-0.015625,-0.0009191176504828036,5.014435047745458e-19,-0.005640397313982248,0.00028280544211156666,0.0009191176504828036,0.001505826716311276,1.399596188035229e-19,-4.45078757666537e-34,-3.77073920390103e-05,4.63661947578125e-18,-0.00012254902685526758,-7.294584793271497e-05,0.0002861721732188016,-0.00017170330102089792,9.743640642694615e-19,1.399596188035229e-19,1.5609390175086446e-05,-4.9638665888432504e-20,3.585328081559723e-36,-2.772784893508644e-19,-1.9572599020213423e-20,-8.025800672652446e-21,0.0012019231216982007,-0.00021853146608918905,-0.0012019231216982007,-4.45078757666537e-34,-4.9638665888432504e-20,0.00021853146608918905,-0.0,8.817598020578988e-34,6.224186912334467e-35,2.552245904488887e-35,0.00028280544211156666,-5.141917063156143e-05,-3.3881317890172014e-21,-3.77073920390103e-05,3.585328081559723e-36,-0.0,6.8558892962755635e-06,1.3240768367662246e-34,-4.235164736271502e-22,-2.329340604949326e-21,0.0026041667442768812,3.050063279461932e-18,-0.015625,4.63661947578125e-18,-2.772784893508644e-19,8.817598020578988e-34,1.3240768367662246e-34,0.0078125,-8.707632080647982e-19,-2.5105709657748073e-19,0.0009191176504828036,2.1345230270808369e-19,-0.0009191176504828036,-0.00012254902685526758,-1.9572599020213423e-20,6.224186912334467e-35,-4.235164736271502e-22,-8.707632080647982e-19,0.00012254902685526758,-8.470329472543003e-22,0.00017020697123371065,1.0503208545953324e-19,5.014435047745458e-19,-7.294584793271497e-05,-8.025800672652446e-21,2.552245904488887e-35,-2.329340604949326e-21,-2.5105709657748073e-19,-8.470329472543003e-22,4.863056346948724e-06,12.0,4.0,3.0,0.1558150202035904,-0.02637362666428089,-0.06282051652669907,-0.07644230872392654,0.0011446886928752065,0.003846153849735856,0.004807692486792803,0.0069444444961845875,0.012500000186264515,0.010416666977107525,-0.02637362666428089,0.01006077229976654,0.003846153849735856,0.004807692486792803,-0.0006868132040835917,-0.0006993007264100015,-0.0008741258643567562,-2.9599748321536287e-18,-1.012922600482802e-32,1.1886859199169763e-17,-0.06282051652669907,0.003846153849735856,0.09049145132303238,0.012500000186264515,-2.9756517142190985e-19,-0.0025641026441007853,-5.418350649577552e-18,-0.02083333395421505,-0.008333333767950535,4.1459222052166257e-17,-0.07644230872392654,0.004807692486792803,0.012500000186264515,0.18060897290706635,4.376665870770003e-19,-5.5475889348925304e-18,-0.004807692486792803,1.147760414648364e-17,-0.012500000186264515,-0.0625,0.0011446886928752065,-0.0006868132040835917,-2.9756517142190985e-19,4.376665870770003e-19,6.243756070034578e-05,6.524354123534474e-20,7.614467018484553e-20,-1.8111198675618102e-20,-8.673617509131006e-20,-3.5962090721049155e-19,0.003846153849735856,-0.0006993007264100015,-0.0025641026441007853,-5.5475889348925304e-18,6.524354123534474e-20,0.0004662004648707807,7.23196720025964e-19,1.4921432487685874e-18,6.938894007304805e-19,2.5907141688795973e-19,0.004807692486792803,-0.0008741258643567562,-5.418350649577552e-18,-0.004807692486792803,7.614467018484553e-20,7.23196720025964e-19,0.0008741258643567562,3.2465701669364076e-19,-1.2193240642506022e-19,-7.262582085308416e-18,0.0069444444961845875,-2.9599748321536287e-18,-0.02083333395421505,1.147760414648364e-17,-1.8111198675618102e-20,1.4921432487685874e-18,3.2465701669364076e-19,0.0069444444961845875,-1.2047063611101124e-18,-5.686676873351484e-18,0.012500000186264515,-1.012922600482802e-32,-0.008333333767950535,-0.012500000186264515,-8.673617509131006e-20,6.938894007304805e-19,-1.2193240642506022e-19,-1.2047063611101124e-18,0.008333333767950535,-2.6629261678158334e-17,0.010416666977107525,1.1886859199169763e-17,4.1459222052166257e-17,-0.0625,-3.5962090721049155e-19,2.5907141688795973e-19,-7.262582085308416e-18,-5.686676873351484e-18,-2.6629261678158334e-17,0.03125,12.0,4.0,4.0,0.12780678272247314,-0.02050137333571911,-0.04899038374423981,-0.04899038374423981,0.0008585164905525744,0.002884615445509553,0.002884615445509553,0.0052083334885537624,0.007499999832361937,0.0052083334885537624,-0.02050137333571911,0.007676698267459869,0.002884615445509553,0.002884615445509553,-0.000515109917614609,-0.0005244755302555859,-0.0005244755302555859,-3.2834799998442894e-18,4.611981694441205e-19,-3.0253644935517112e-18,-0.04899038374423981,0.002884615445509553,0.06911858916282654,0.007499999832361937,-5.141250301326419e-20,-0.001923076924867928,-3.973536193917411e-18,-0.015625,-0.004999999888241291,-2.931336184985818e-17,-0.04899038374423981,0.002884615445509553,0.007499999832361937,0.06911858916282654,-3.666100146998935e-19,-3.2111761425010292e-18,-0.001923076924867928,-3.532963835085846e-17,-0.004999999888241291,-0.015625,0.0008585164905525744,-0.000515109917614609,-5.141250301326419e-20,-3.666100146998935e-19,4.682817234424874e-05,9.579231322742827e-21,-1.3699875972821916e-21,4.5580760141317434e-20,-8.297535319989797e-20,1.8427269234436015e-19,0.002884615445509553,-0.0005244755302555859,-0.001923076924867928,-3.2111761425010292e-18,9.579231322742827e-21,0.00034965036320500076,2.223152586282538e-19,8.675734962252171e-19,3.2204964000529705e-19,4.437995626324098e-19,0.002884615445509553,-0.0005244755302555859,-3.973536193917411e-18,-0.001923076924867928,-1.3699875972821916e-21,2.223152586282538e-19,0.00034965036320500076,7.453142371359248e-19,2.7849847735680357e-19,5.285749254687085e-19,0.0052083334885537624,-3.2834799998442894e-18,-0.015625,-3.532963835085846e-17,4.5580760141317434e-20,8.675734962252171e-19,7.453142371359248e-19,0.0052083334885537624,6.6544537882104564e-18,6.280914740013148e-18,0.007499999832361937,4.611981694441205e-19,-0.004999999888241291,-0.004999999888241291,-8.297535319989797e-20,3.2204964000529705e-19,2.7849847735680357e-19,6.6544537882104564e-18,0.0033333334140479565,3.962879212495584e-18,0.0052083334885537624,-3.0253644935517112e-18,-2.931336184985818e-17,-0.015625,1.8427269234436015e-19,4.437995626324098e-19,5.285749254687085e-19,6.280914740013148e-18,3.962879212495584e-18,0.0052083334885537624,12.0,4.0,5.0,0.10847984999418259,-0.016785714775323868,-0.04019230604171753,-0.03414835035800934,0.0006868132040835917,0.0023076923098415136,0.001923076924867928,0.004166666883975267,0.004999999888241291,0.0029761905316263437,-0.016785714775323868,0.0062112887389957905,0.0023076923098415136,0.001923076924867928,-0.00041208791662938893,-0.00041958040674217045,-0.00034965036320500076,7.513067264040499e-18,4.2958379172143834e-19,-2.2026070225291577e-18,-0.04019230604171753,0.0023076923098415136,0.05596153810620308,0.004999999888241291,2.1995481086239366e-18,-0.0015384615398943424,2.3483851977824406e-18,-0.012500000186264515,-0.0033333334140479565,-1.2078699754013673e-17,-0.03414835035800934,0.001923076924867928,0.004999999888241291,0.03493131697177887,-4.455489979291712e-19,9.853922429911716e-19,-0.000961538462433964,-1.330161018905697e-17,-0.0024999999441206455,-0.0059523810632526875,0.0006868132040835917,-0.00041208791662938893,2.1995481086239366e-18,-4.455489979291712e-19,3.7462537875398993e-05,-8.305916986040432e-20,-1.7417270074281404e-20,-5.831999685677557e-19,4.409619066163496e-20,1.1541179335509298e-19,0.0023076923098415136,-0.00041958040674217045,-0.0015384615398943424,9.853922429911716e-19,-8.305916986040432e-20,0.0002797202905640006,-1.4900078044690993e-19,2.501802851281745e-19,-2.865197253049127e-19,7.074643780853619e-20,0.001923076924867928,-0.00034965036320500076,2.3483851977824406e-18,-0.000961538462433964,-1.7417270074281404e-20,-1.4900078044690993e-19,0.00017482518160250038,-3.3577791719213923e-19,-1.6587889678286869e-19,3.9974764552059206e-19,0.004166666883975267,7.513067264040499e-18,-0.012500000186264515,-1.330161018905697e-17,-5.831999685677557e-19,2.501802851281745e-19,-3.3577791719213923e-19,0.004166666883975267,1.8608364661424074e-18,3.0901819527610602e-18,0.004999999888241291,4.2958379172143834e-19,-0.0033333334140479565,-0.0024999999441206455,4.409619066163496e-20,-2.865197253049127e-19,-1.6587889678286869e-19,1.8608364661424074e-18,0.0016666667070239782,1.1880704148231756e-18,0.0029761905316263437,-2.2026070225291577e-18,-1.2078699754013673e-17,-0.0059523810632526875,1.1541179335509298e-19,7.074643780853619e-20,3.9974764552059206e-19,3.0901819527610602e-18,1.1880704148231756e-18,0.0014880952658131719,12.0,4.0,6.0,0.09428800642490387,-0.014217033050954342,-0.034088827669620514,-0.025188874453306198,0.0005723443464376032,0.001923076924867928,0.0013736264081671834,0.0034722222480922937,0.0035714285913854837,0.0018601190531626344,-0.014217033050954342,0.005217698868364096,0.001923076924867928,0.0013736264081671834,-0.00034340660204179585,-0.00034965036320500076,-0.00024975024280138314,-6.780046895361067e-19,-5.844677262540698e-19,-5.502241032555995e-19,-0.034088827669620514,0.001923076924867928,0.04703143984079361,0.0035714285913854837,1.3552527156068805e-19,-0.0012820513220503926,-2.077064786986219e-18,-0.010416666977107525,-0.0023809524718672037,3.502573881125138e-18,-0.025188874453306198,0.0013736264081671834,0.0035714285913854837,0.02030620351433754,-2.303929616531697e-19,-3.1571372602635525e-18,-0.0005494505749084055,6.5490643607263e-18,-0.0014285714132711291,-0.0027901786379516125,0.0005723443464376032,-0.00034340660204179585,1.3552527156068805e-19,-2.303929616531697e-19,3.121878035017289e-05,3.049318610115481e-20,1.6940658945086007e-20,-1.153570572629967e-19,3.5018374577354184e-20,7.373945999250147e-21,0.001923076924867928,-0.00034965036320500076,-0.0012820513220503926,-3.1571372602635525e-18,3.049318610115481e-20,0.00023310023243539035,1.9651164376299768e-19,7.678168068210291e-19,9.640273697657545e-20,3.639821652913891e-19,0.0013736264081671834,-0.00024975024280138314,-2.077064786986219e-18,-0.0005494505749084055,1.6940658945086007e-20,1.9651164376299768e-19,9.990009857574478e-05,3.253718299898573e-19,6.698830506190846e-21,-1.9446266568691554e-19,0.0034722222480922937,-6.780046895361067e-19,-0.010416666977107525,6.5490643607263e-18,-1.153570572629967e-19,7.678168068210291e-19,3.253718299898573e-19,0.0034722222480922937,-2.8256185735936312e-18,-7.496397196553295e-19,0.0035714285913854837,-5.844677262540698e-19,-0.0023809524718672037,-0.0014285714132711291,3.5018374577354184e-20,9.640273697657545e-20,6.698830506190846e-21,-2.8256185735936312e-18,0.0009523809421807528,-1.4566001250277963e-18,0.0018601190531626344,-5.502241032555995e-19,3.502573881125138e-18,-0.0027901786379516125,7.373945999250147e-21,3.639821652913891e-19,-1.9446266568691554e-19,-7.496397196553295e-19,-1.4566001250277963e-18,0.0005580357392318547,12.0,4.0,7.0,0.08340637385845184,-0.012333202175796032,-0.029601648449897766,-0.019356684759259224,0.0004905808600597084,0.0016483516665175557,0.001030219835229218,0.0029761905316263437,0.0026785715017467737,0.0012400794075801969,-0.012333202175796032,0.0044990722090005875,0.0016483516665175557,0.001030219835229218,-0.000294348516035825,-0.00029970030300319195,-0.00018731268937699497,1.2419939053652012e-18,6.183403070490217e-19,4.307065084572201e-19,-0.029601648449897766,0.0016483516665175557,0.04056776687502861,0.0026785715017467737,-1.8973538018496328e-19,-0.001098901149816811,7.3187880773532055e-19,-0.008928571827709675,-0.0017857142956927419,1.5939199649274182e-18,-0.019356684759259224,0.001030219835229218,0.0026785715017467737,0.012900641188025475,-1.6263032587282567e-19,8.045125033478362e-19,-0.00034340660204179585,1.5165173662883812e-18,-0.0008928571478463709,-0.0014880952658131719,0.0004905808600597084,-0.000294348516035825,-1.8973538018496328e-19,-1.6263032587282567e-19,2.6758954845718108e-05,2.371692252312041e-20,1.3552527156068805e-20,6.212951965298657e-21,1.9190034853152966e-21,1.224738639906358e-20,0.0016483516665175557,-0.00029970030300319195,-0.001098901149816811,8.045125033478362e-19,2.371692252312041e-20,0.00019980019715148956,-1.0164395367051604e-20,-4.890311943940931e-19,-1.327775068127576e-19,-9.637352716119468e-20,0.001030219835229218,-0.00018731268937699497,7.3187880773532055e-19,-0.00034340660204179585,1.3552527156068805e-20,-1.0164395367051604e-20,6.243756070034578e-05,-1.3424713534262584e-19,-1.0067745128588465e-19,-9.722757175661007e-20,0.0029761905316263437,1.2419939053652012e-18,-0.008928571827709675,1.5165173662883812e-18,6.212951965298657e-21,-4.890311943940931e-19,-1.3424713534262584e-19,0.0029761905316263437,-4.926847994609515e-19,-1.1309008963052557e-20,0.0026785715017467737,6.183403070490217e-19,-0.0017857142956927419,-0.0008928571478463709,1.9190034853152966e-21,-1.327775068127576e-19,-1.0067745128588465e-19,-4.926847994609515e-19,0.0005952381179668009,-3.0563077693036715e-19,0.0012400794075801969,4.307065084572201e-19,1.5939199649274182e-18,-0.0014880952658131719,1.224738639906358e-20,-9.637352716119468e-20,-9.722757175661007e-20,-1.1309008963052557e-20,-3.0563077693036715e-19,0.00024801588733680546,12.0,4.0,8.0,0.07479014247655869,-0.01089171227067709,-0.026161858811974525,-0.015344550833106041,0.0004292582452762872,0.0014423077227547765,0.0008012820617295802,0.0026041667442768812,0.0020833334419876337,0.0008680555620230734,-0.01089171227067709,0.003954899497330189,0.0014423077227547765,0.0008012820617295802,-0.0002575549588073045,-0.00026223776512779295,-0.00014568764891009778,2.1894459585979796e-18,6.074515082605268e-19,5.902990393798389e-19,-0.026161858811974525,0.0014423077227547765,0.035670407116413116,0.0020833334419876337,1.0036843082620162e-18,-0.000961538462433964,5.1226329214302936e-20,-0.0078125,-0.0013888889225199819,-1.5286421797071834e-19,-0.015344550833106041,0.0008012820617295802,0.0020833334419876337,0.008724435232579708,5.39324654516718e-19,9.39012523313356e-20,-0.00022893772984389216,-2.131681273935805e-19,-0.0005952381179668009,-0.0008680555620230734,0.0004292582452762872,-0.0002575549588073045,1.0036843082620162e-18,5.39324654516718e-19,2.341408617212437e-05,-5.782652933765999e-20,-2.836953558774416e-20,-1.8217515618138174e-19,-4.2783642437620836e-20,-4.6213078327303136e-20,0.0014423077227547765,-0.00026223776512779295,-0.000961538462433964,9.39012523313356e-20,-5.782652933765999e-20,0.00017482518160250038,-3.3881317890172014e-21,-1.460944684400078e-19,-5.356581570645311e-20,1.0940951552420606e-34,0.0008012820617295802,-0.00014568764891009778,5.1226329214302936e-20,-0.00022893772984389216,-2.836953558774416e-20,-3.3881317890172014e-21,4.162504046689719e-05,6.716771601312724e-21,-1.6521176592532187e-20,-2.3415764156665752e-20,0.0026041667442768812,2.1894459585979796e-18,-0.0078125,-2.131681273935805e-19,-1.8217515618138174e-19,-1.460944684400078e-19,6.716771601312724e-21,0.0026041667442768812,1.1748391956362953e-19,3.886346413469201e-34,0.0020833334419876337,6.074515082605268e-19,-0.0013888889225199819,-0.0005952381179668009,-4.2783642437620836e-20,-5.356581570645311e-20,-1.6521176592532187e-20,1.1748391956362953e-19,0.00039682540227659047,4.367549177196932e-20,0.0008680555620230734,5.902990393798389e-19,-1.5286421797071834e-19,-0.0008680555620230734,-4.6213078327303136e-20,1.0940951552420606e-34,-2.3415764156665752e-20,3.886346413469201e-34,4.367549177196932e-20,0.00012400794366840273,12.0,4.0,9.0,0.06779498606920242,-0.009752747602760792,-0.023440171033143997,-0.012465034611523151,0.000381562887923792,0.0012820513220503926,0.0006410256610251963,0.002314814832061529,0.0016666667070239782,0.0006313131307251751,-0.009752747602760792,0.003528415923938155,0.0012820513220503926,0.0006410256610251963,-0.00022893772984389216,-0.00023310023243539035,-0.00011655011621769518,2.142446176578176e-18,3.9005040040447978e-19,3.0614577440986383e-19,-0.023440171033143997,0.0012820513220503926,0.03183048591017723,0.0016666667070239782,9.112596961087099e-19,-0.0008547008619643748,8.484386373077576e-20,-0.0069444444961845875,-0.0011111111380159855,-1.371917252792784e-33,-0.012465034611523151,0.0006410256610251963,0.0016666667070239782,0.006182636599987745,4.1486749899168985e-19,1.8584897547445944e-19,-0.00016025641525629908,-3.4967353312093814e-33,-0.00041666667675599456,-0.0005411255406215787,0.000381562887923792,-0.00022893772984389216,9.112596961087099e-19,4.1486749899168985e-19,2.0812520233448595e-05,-4.474433837035854e-20,-1.845347858139173e-20,-1.7252883437172976e-19,-3.549164467235669e-20,-3.264924206129708e-20,0.0012820513220503926,-0.00023310023243539035,-0.0008547008619643748,1.8584897547445944e-19,-4.474433837035854e-20,0.0001554001501062885,-2.371692252312041e-20,-1.6308607654094824e-19,-3.354913701957235e-20,6.002898378876618e-35,0.0006410256610251963,-0.00011655011621769518,8.484386373077576e-20,-0.00016025641525629908,-1.845347858139173e-20,-2.371692252312041e-20,2.9137529054423794e-05,1.5799911404898524e-34,1.267035276527164e-20,1.3248967219339616e-20,0.002314814832061529,2.142446176578176e-18,-0.0069444444961845875,-3.4967353312093814e-33,-1.7252883437172976e-19,-1.6308607654094824e-19,1.5799911404898524e-34,0.002314814832061529,3.083532674259283e-34,2.7065128354534488e-34,0.0016666667070239782,3.9005040040447978e-19,-0.0011111111380159855,-0.00041666667675599456,-3.549164467235669e-20,-3.354913701957235e-20,1.267035276527164e-20,3.083532674259283e-34,0.00027777778450399637,5.745101217893011e-35,0.0006313131307251751,3.0614577440986383e-19,-1.371917252792784e-33,-0.0005411255406215787,-3.264924206129708e-20,6.002898378876618e-35,1.3248967219339616e-20,2.7065128354534488e-34,5.745101217893011e-35,6.764069257769734e-05,12.0,4.0,10.0,0.06200091540813446,-0.008829919621348381,-0.021232517436146736,-0.010327797383069992,0.00034340660204179585,0.0011538461549207568,0.0005244755302555859,0.0020833334419876337,0.0013636363437399268,0.0004734848625957966,-0.008829919621348381,0.0031851103994995356,0.0011538461549207568,0.0005244755302555859,-0.00020604395831469446,-0.00020979020337108523,-9.535918798064813e-05,1.9282016416384197e-18,3.4558944247975454e-19,4.2012834183813297e-19,-0.021232517436146736,0.0011538461549207568,0.028738344088196754,0.0013636363437399268,8.041009809930911e-19,-0.0007692307699471712,7.453889935837843e-20,-0.0062500000931322575,-0.0009090909152291715,2.846030702774449e-19,-0.010327797383069992,0.0005244755302555859,0.0013636363437399268,0.004544118884950876,2.502131138587352e-19,-5.912092482463769e-20,-0.00011655011621769518,-2.0890207856852048e-33,-0.0003030303050763905,-0.00035511364694684744,0.00034340660204179585,-0.00020604395831469446,8.041009809930911e-19,2.502131138587352e-19,1.8731268937699497e-05,-3.9775241479728026e-20,-2.2401915476462697e-22,-1.552759535194962e-19,-2.7816487800070035e-20,-2.3499141377471683e-20,0.0011538461549207568,-0.00020979020337108523,-0.0007692307699471712,-5.912092482463769e-20,-3.9775241479728026e-20,0.0001398601452820003,3.173902915579121e-21,-1.4677747405673225e-19,2.4611167773188454e-20,6.575256366777512e-22,0.0005244755302555859,-9.535918798064813e-05,7.453889935837843e-20,-0.00011655011621769518,-2.2401915476462697e-22,3.173902915579121e-21,2.119093005603645e-05,5.7070882101458145e-36,-1.8439086931203013e-20,-3.7269449679189215e-20,0.0020833334419876337,1.9282016416384197e-18,-0.0062500000931322575,-2.0890207856852048e-33,-1.552759535194962e-19,-1.4677747405673225e-19,5.7070882101458145e-36,0.0020833334419876337,1.9534197522184285e-34,1.962475650494568e-34,0.0013636363437399268,3.4558944247975454e-19,-0.0009090909152291715,-0.0003030303050763905,-2.7816487800070035e-20,2.4611167773188454e-20,-1.8439086931203013e-20,1.9534197522184285e-34,0.00020202020823489875,-6.437450399132683e-20,0.0004734848625957966,4.2012834183813297e-19,2.846030702774449e-19,-0.00035511364694684744,-2.3499141377471683e-20,6.575256366777512e-22,-3.7269449679189215e-20,1.962475650494568e-34,-6.437450399132683e-20,3.9457070670323446e-05,12.0,4.0,11.0,0.05712204426527023,-0.008066932670772076,-0.01940559409558773,-0.008697552606463432,0.00031218782532960176,0.0010489510605111718,0.0004370629321783781,0.0018939394503831863,0.0011363636003807187,0.0003642191004473716,-0.008066932670772076,0.0029027790296822786,0.0010489510605111718,0.0004370629321783781,-0.00018731268937699497,-0.00019071837596129626,-7.946598634589463e-05,1.7529104893098574e-18,2.710505431213761e-19,2.1006417091906648e-19,-0.01940559409558773,0.0010489510605111718,0.02619463950395584,0.0011363636003807187,7.226553820138363e-19,-0.0006993007264100015,-4.0657581468206416e-20,-0.005681818351149559,-0.0007575757335871458,2.710505431213761e-20,-0.008697552606463432,0.0004370629321783781,0.0011363636003807187,0.0034391996450722218,2.976715675281995e-19,2.983030100659586e-20,-8.741259080125019e-05,-2.5984622212453295e-33,-0.00022727272880729288,-0.0002428127481834963,0.00031218782532960176,-0.00018731268937699497,7.226553820138363e-19,2.976715675281995e-19,1.702842564554885e-05,-3.282952542956816e-20,-1.6468487449334546e-20,-1.4115994834521685e-19,-2.4084798175856297e-20,-1.717599829170588e-20,0.0010489510605111718,-0.00019071837596129626,-0.0006993007264100015,2.983030100659586e-20,-3.282952542956816e-20,0.0001271455839741975,1.841837995090791e-21,-1.334340684992745e-19,-2.3378668660484443e-20,-8.60071341269989e-22,0.0004370629321783781,-7.946598634589463e-05,-4.0657581468206416e-20,-8.741259080125019e-05,-1.6468487449334546e-20,1.841837995090791e-21,1.589319799677469e-05,1.3823542650956435e-34,6.2464604541459406e-21,-1.6940658945086007e-21,0.0018939394503831863,1.7529104893098574e-18,-0.005681818351149559,-2.5984622212453295e-33,-1.4115994834521685e-19,-1.334340684992745e-19,1.3823542650956435e-34,0.0018939394503831863,2.1405990900763866e-34,1.5158574773648087e-34,0.0011363636003807187,2.710505431213761e-19,-0.0007575757335871458,-0.00022727272880729288,-2.4084798175856297e-20,-2.3378668660484443e-20,6.2464604541459406e-21,2.1405990900763866e-34,0.00015151515253819525,-6.776263578034403e-21,0.0003642191004473716,2.1006417091906648e-19,2.710505431213761e-20,-0.0002428127481834963,-1.717599829170588e-20,-8.60071341269989e-22,-1.6940658945086007e-21,1.5158574773648087e-34,-6.776263578034403e-21,2.428127481834963e-05,12.0,4.0,12.0,0.05295681953430176,-0.007425507064908743,-0.017868589609861374,-0.007425507064908743,0.0002861721732188016,0.000961538462433964,0.000369822490029037,0.0017361111240461469,0.000961538462433964,0.0002861721732188016,-0.007425507064908743,0.002666484098881483,0.000961538462433964,0.000369822490029037,-0.00017170330102089792,-0.00017482518160250038,-6.724044942529872e-05,1.6068347358312086e-18,2.303929616531697e-19,1.2536087619363645e-19,-0.017868589609861374,0.000961538462433964,0.02406517043709755,0.000961538462433964,6.239489534936492e-19,-0.0006410256610251963,2.0328790734103208e-20,-0.0052083334885537624,-0.0006410256610251963,0.0,-0.007425507064908743,0.000369822490029037,0.000961538462433964,0.002666484098881483,2.4025789178908296e-19,6.938418766193499e-20,-6.724044942529872e-05,-2.0526844185913647e-33,-0.00017482518160250038,-0.00017170330102089792,0.0002861721732188016,-0.00017170330102089792,6.239489534936492e-19,2.4025789178908296e-19,1.5609390175086446e-05,-2.198508097024713e-20,-9.992887060298263e-21,-1.2939662577879732e-19,-2.029803318624816e-20,-1.3749546391459878e-20,0.000961538462433964,-0.00017482518160250038,-0.0006410256610251963,6.938418766193499e-20,-2.198508097024713e-20,0.00011655011621769518,-7.495405032182628e-21,-1.2231455094336265e-19,-1.901824099137371e-20,-1.650019334683719e-22,0.000369822490029037,-6.724044942529872e-05,2.0328790734103208e-20,-6.724044942529872e-05,-9.992887060298263e-21,-7.495405032182628e-21,1.2225536920595914e-05,9.637767979796546e-35,4.2335657089057315e-21,4.235164736271502e-21,0.0017361111240461469,1.6068347358312086e-18,-0.0052083334885537624,-2.0526844185913647e-33,-1.2939662577879732e-19,-1.2231455094336265e-19,9.637767979796546e-35,0.0017361111240461469,1.7638375386034966e-34,1.144970986964256e-34,0.000961538462433964,2.303929616531697e-19,-0.0006410256610251963,-0.00017482518160250038,-2.029803318624816e-20,-1.901824099137371e-20,4.2335657089057315e-21,1.7638375386034966e-34,0.00011655011621769518,3.3881317890172014e-21,0.0002861721732188016,1.2536087619363645e-19,0.0,-0.00017170330102089792,-1.3749546391459878e-20,-1.650019334683719e-22,4.235164736271502e-21,1.144970986964256e-34,3.3881317890172014e-21,1.5609390175086446e-05,12.0,4.0,13.0,0.049358975142240524,-0.006878698244690895,-0.0165574811398983,-0.006413778755813837,0.00026415890897624195,0.000887573987711221,0.0003169907140545547,0.0016025641234591603,0.0008241758332587779,0.00022893772984389216,-0.006878698244690895,0.0024658034089952707,0.000887573987711221,0.0003169907140545547,-0.00015849535702727735,-0.00016137708735186607,-5.763467197539285e-05,1.4832320320295536e-18,2.574980159653073e-19,1.1180834903756764e-19,-0.0165574811398983,0.000887573987711221,0.022256270051002502,0.0008241758332587779,5.988175004242748e-19,-0.000591715972404927,2.0328790734103208e-20,-0.004807692486792803,-0.0005494505749084055,1.3552527156068805e-20,-0.006413778755813837,0.0003169907140545547,0.0008241758332587779,0.0021095890551805496,2.1025161780068924e-19,7.319107317370863e-21,-5.283178325043991e-05,-1.689511398142988e-33,-0.00013736264372710139,-0.00012487512140069157,0.00026415890897624195,-0.00015849535702727735,5.988175004242748e-19,2.1025161780068924e-19,1.4408667993848212e-05,-2.3580461955856168e-20,-8.67055887956912e-21,-1.1944303222097602e-19,-1.8015134249049712e-20,-1.113248668162918e-20,0.000887573987711221,-0.00016137708735186607,-0.000591715972404927,7.319107317370863e-21,-2.3580461955856168e-20,0.00010758472490124404,3.463666545978434e-21,-1.1290574629178702e-19,-1.686671675314201e-20,-9.097373675304308e-23,0.0003169907140545547,-5.763467197539285e-05,2.0328790734103208e-20,-5.283178325043991e-05,-8.67055887956912e-21,3.463666545978434e-21,9.605779268895276e-06,6.472961235820551e-35,-6.506291697818841e-21,2.117582368135751e-21,0.0016025641234591603,1.4832320320295536e-18,-0.004807692486792803,-1.689511398142988e-33,-1.1944303222097602e-19,-1.1290574629178702e-19,6.472961235820551e-35,0.0016025641234591603,1.5341348073989125e-34,9.194122751266161e-35,0.0008241758332587779,2.574980159653073e-19,-0.0005494505749084055,-0.00013736264372710139,-1.8015134249049712e-20,-1.686671675314201e-20,-6.506291697818841e-21,1.5341348073989125e-34,9.157509339274839e-05,-1.6940658945086007e-21,0.00022893772984389216,1.1180834903756764e-19,1.3552527156068805e-20,-0.00012487512140069157,-1.113248668162918e-20,-9.097373675304308e-23,2.117582368135751e-21,9.194122751266161e-35,-1.6940658945086007e-21,1.0406260116724297e-05,12.0,4.0,14.0,0.04621974751353264,-0.006406985688954592,-0.01542582456022501,-0.005595810245722532,0.0002452904300298542,0.0008241758332587779,0.00027472528745420277,0.0014880952658131719,0.0007142857066355646,0.00018601190822664648,-0.006406985688954592,0.002293242374435067,0.0008241758332587779,0.00027472528745420277,-0.0001471742580179125,-0.00014985015150159597,-4.995004928787239e-05,8.78185603098813e-19,8.809142651444724e-20,1.3044307387716225e-19,-0.01542582456022501,0.0008241758332587779,0.020700549706816673,0.0007142857066355646,4.483788862022917e-19,-0.0005494505749084055,-5.082197683525802e-20,-0.004464285913854837,-0.0004761904710903764,3.3881317890172014e-20,-0.005595810245722532,0.00027472528745420277,0.0007142857066355646,0.0016979475039988756,1.4091449542313881e-19,-1.2076424645437635e-19,-4.226542660035193e-05,-3.965082252960754e-19,-0.00010989011207129806,-9.300595411332324e-05,0.0002452904300298542,-0.0001471742580179125,4.483788862022917e-19,1.4091449542313881e-19,1.3379477422859054e-05,-3.1628389709894407e-21,-9.429307663995075e-22,-1.1091138798552753e-19,-1.4965497045151427e-20,-8.741298977813743e-21,0.0008241758332587779,-0.00014985015150159597,-0.0005494505749084055,-1.2076424645437635e-19,-3.1628389709894407e-21,9.990009857574478e-05,8.9702381760027e-21,2.2789311844445787e-19,4.793735570121553e-20,-6.417610261483182e-25,0.00027472528745420277,-4.995004928787239e-05,-5.082197683525802e-20,-4.226542660035193e-05,-9.429307663995075e-22,8.9702381760027e-21,7.68462268752046e-06,3.16414725031921e-35,6.020786862425561e-22,-5.082197683525802e-21,0.0014880952658131719,8.78185603098813e-19,-0.004464285913854837,-3.965082252960754e-19,-1.1091138798552753e-19,2.2789311844445787e-19,3.16414725031921e-35,0.0014880952658131719,2.64338825480515e-19,5.416677968589101e-35,0.0007142857066355646,8.809142651444724e-20,-0.0004761904710903764,-0.00010989011207129806,-1.4965497045151427e-20,4.793735570121553e-20,6.020786862425561e-22,2.64338825480515e-19,7.326007471419871e-05,-5.929230630780102e-21,0.00018601190822664648,1.3044307387716225e-19,3.3881317890172014e-20,-9.300595411332324e-05,-8.741298977813743e-21,-6.417610261483182e-25,-5.082197683525802e-21,5.416677968589101e-35,-5.929230630780102e-21,7.15430405762163e-06,12.0,4.0,15.0,0.0434565544128418,-0.005995878949761391,-0.01443910226225853,-0.0049250563606619835,0.00022893772984389216,0.0007692307699471712,0.000240384615608491,0.0013888889225199819,0.0006249999860301614,0.00015318627993110567,-0.005995878949761391,0.002143273362889886,0.0007692307699471712,0.000240384615608491,-0.00013736264372710139,-0.0001398601452820003,-4.3706295400625095e-05,-2.217596362409231e-18,-2.405573570202213e-19,-1.5585406229479126e-19,-0.01443910226225853,0.0007692307699471712,0.01934828981757164,0.0006249999860301614,-1.0033324463089514e-18,-0.0005128204938955605,2.710505431213761e-20,-0.004166666883975267,-0.00041666667675599456,9.486769009248164e-20,-0.0049250563606619835,0.000240384615608491,0.0006249999860301614,0.0013870259281247854,-2.8933423318851852e-19,2.4061065200859415e-20,-3.4340660931775346e-05,-4.8294762960251356e-33,-8.928571332944557e-05,-7.070136052789167e-05,0.00022893772984389216,-0.00013736264372710139,-1.0033324463089514e-18,-2.8933423318851852e-19,1.2487512321968097e-05,3.5802192831233533e-20,8.434532908417344e-21,2.0703459607619688e-19,2.6352793321744586e-20,1.4518367149975302e-20,0.0007692307699471712,-0.0001398601452820003,-0.0005128204938955605,2.4061065200859415e-20,3.5802192831233533e-20,9.324009442934766e-05,-3.3507248757940603e-23,-3.985607253521094e-20,-1.52255855710754e-20,3.6893604587557324e-23,0.000240384615608491,-4.3706295400625095e-05,2.710505431213761e-20,-3.4340660931775346e-05,8.434532908417344e-21,-3.3507248757940603e-23,6.243756160984049e-06,1.4828116220160575e-34,-3.870238337848535e-21,-6.352747104407253e-22,0.0013888889225199819,-2.217596362409231e-18,-0.004166666883975267,-4.8294762960251356e-33,2.0703459607619688e-19,-3.985607253521094e-20,1.4828116220160575e-34,0.0013888889225199819,4.171065838917745e-34,2.419686703723041e-34,0.0006249999860301614,-2.405573570202213e-19,-0.00041666667675599456,-8.928571332944557e-05,2.6352793321744586e-20,-1.52255855710754e-20,-3.870238337848535e-21,4.171065838917745e-34,5.952380888629705e-05,-1.2705494208814505e-20,0.00015318627993110567,-1.5585406229479126e-19,9.486769009248164e-20,-7.070136052789167e-05,1.4518367149975302e-20,3.6893604587557324e-23,-6.352747104407253e-22,2.419686703723041e-34,-1.2705494208814505e-20,5.050097115599783e-06,12.0,4.0,16.0,0.04100555181503296,-0.005634393077343702,-0.013571125455200672,-0.004368165507912636,0.0002146291226381436,0.0007211538613773882,0.00021210407430771738,0.0013020833721384406,0.0005514706135727465,0.0001276552357012406,-0.005634393077343702,0.00201172917149961,0.0007211538613773882,0.00021210407430771738,-0.00012877747940365225,-0.00013111888256389648,-3.856437615468167e-05,1.0675221788309492e-18,1.3044307387716225e-19,5.759824041329242e-20,-0.013571125455200672,0.0007211538613773882,0.01816200092434883,0.0005514706135727465,5.430267013481991e-19,-0.000480769231216982,-1.6940658945086007e-21,-0.00390625,-0.0003676470660138875,-6.776263578034403e-21,-0.004368165507912636,0.00021210407430771738,0.0005514706135727465,0.001147752394899726,1.4644856636566585e-19,-3.72571166659823e-34,-2.8280543119763024e-05,-1.214009515062476e-33,-7.352940883720294e-05,-5.470938413054682e-05,0.0002146291226381436,-0.00012877747940365225,5.430267013481991e-19,1.4644856636566585e-19,1.1707043086062185e-05,-2.9783200179294356e-20,-7.007811141651029e-21,-9.704746610292372e-20,-1.1743559089010627e-20,-6.019350504489334e-21,0.0007211538613773882,-0.00013111888256389648,-0.000480769231216982,-3.72571166659823e-34,-2.9783200179294356e-20,8.741259080125019e-05,1.7828161187465443e-35,2.4689275192305136e-34,2.9876095801672997e-35,1.531347571391925e-35,0.00021210407430771738,-3.856437615468167e-05,-1.6940658945086007e-21,-2.8280543119763024e-05,-7.007811141651029e-21,1.7828161187465443e-35,5.141916972206673e-06,5.809240850325305e-35,2.117582368135751e-22,1.0587911840678754e-21,0.0013020833721384406,1.0675221788309492e-18,-0.00390625,-1.214009515062476e-33,-9.704746610292372e-20,2.4689275192305136e-34,5.809240850325305e-35,0.0013020833721384406,9.73501717845305e-35,4.989840357771181e-35,0.0005514706135727465,1.3044307387716225e-19,-0.0003676470660138875,-7.352940883720294e-05,-1.1743559089010627e-20,2.9876095801672997e-35,2.117582368135751e-22,9.73501717845305e-35,4.901960710412823e-05,8.470329472543003e-22,0.0001276552357012406,5.759824041329242e-20,-6.776263578034403e-21,-5.470938413054682e-05,-6.019350504489334e-21,1.531347571391925e-35,1.0587911840678754e-21,4.989840357771181e-35,8.470329472543003e-22,3.647292260211543e-06,12.0,5.0,3.0,0.13263125717639923,-0.02161172218620777,-0.04386446997523308,-0.06282051652669907,0.0009157509193755686,0.0025641026441007853,0.003846153849735856,0.003968254197388887,0.008333333767950535,0.008333333767950535,-0.02161172218620777,0.008141858503222466,0.0025641026441007853,0.003846153849735856,-0.0005494505749084055,-0.0004662004648707807,-0.0006993007264100015,3.1127333778010934e-18,-6.113665540997402e-19,6.2453281892901975e-18,-0.04386446997523308,0.0025641026441007853,0.04574175924062729,0.008333333767950535,9.526659794288534e-19,-0.0012820513220503926,-4.598506922262716e-19,-0.007936508394777775,-0.004166666883975267,3.9427774828396265e-18,-0.06282051652669907,0.003846153849735856,0.008333333767950535,0.14615385234355927,1.4249325492519693e-18,-4.0510930100419007e-19,-0.003846153849735856,2.71643590261546e-18,-0.008333333767950535,-0.05000000074505806,0.0009157509193755686,-0.0005494505749084055,9.526659794288534e-19,1.4249325492519693e-18,4.995004928787239e-05,-1.1830424362438632e-20,-1.675200521987423e-20,-2.3045016636240656e-19,1.2822732520359692e-20,-6.814392985357917e-19,0.0025641026441007853,-0.0004662004648707807,-0.0012820513220503926,-4.0510930100419007e-19,-1.1830424362438632e-20,0.00023310023243539035,-2.8903096163409274e-20,-5.000950452797195e-19,2.312964755266249e-19,8.205339578372227e-20,0.003846153849735856,-0.0006993007264100015,-4.598506922262716e-19,-0.003846153849735856,-1.675200521987423e-20,-2.8903096163409274e-20,0.0006993007264100015,1.6750535358699815e-19,-2.6590186079611636e-20,1.361188563682561e-18,0.003968254197388887,3.1127333778010934e-18,-0.007936508394777775,2.71643590261546e-18,-2.3045016636240656e-19,-5.000950452797195e-19,1.6750535358699815e-19,0.0019841270986944437,-1.448564685762303e-18,-3.6175296523934698e-19,0.008333333767950535,-6.113665540997402e-19,-0.004166666883975267,-0.008333333767950535,1.2822732520359692e-20,2.312964755266249e-19,-2.6590186079611636e-20,-1.448564685762303e-18,0.004166666883975267,-2.9605948040227372e-18,0.008333333767950535,6.2453281892901975e-18,3.9427774828396265e-18,-0.05000000074505806,-6.814392985357917e-19,8.205339578372227e-20,1.361188563682561e-18,-3.6175296523934698e-19,-2.9605948040227372e-18,0.02500000037252903,12.0,5.0,4.0,0.10847984999418259,-0.016785714775323868,-0.03414835035800934,-0.04019230604171753,0.0006868132040835917,0.001923076924867928,0.0023076923098415136,0.0029761905316263437,0.004999999888241291,0.004166666883975267,-0.016785714775323868,0.0062112887389957905,0.001923076924867928,0.0023076923098415136,-0.00041208791662938893,-0.00034965036320500076,-0.00041958040674217045,-6.608470507765904e-19,1.3701118779380534e-18,8.488752439145784e-18,-0.03414835035800934,0.001923076924867928,0.03493131697177887,0.004999999888241291,-9.996447329665222e-20,-0.000961538462433964,2.248898944739769e-18,-0.0059523810632526875,-0.0024999999441206455,6.383366849142128e-18,-0.04019230604171753,0.0023076923098415136,0.004999999888241291,0.05596153810620308,2.0946518875800152e-18,3.990100485683785e-18,-0.0015384615398943424,-4.794136171107273e-19,-0.0033333334140479565,-0.012500000186264515,0.0006868132040835917,-0.00041208791662938893,-9.996447329665222e-20,2.0946518875800152e-18,3.7462537875398993e-05,-1.3312648009602695e-20,-1.0037710071299694e-19,5.136157970680389e-20,-3.0543211141168664e-20,-4.712429338150816e-19,0.001923076924867928,-0.00034965036320500076,-0.000961538462433964,3.990100485683785e-18,-1.3312648009602695e-20,0.00017482518160250038,-1.1929837901135581e-19,1.2616621406813925e-19,-2.1142651153854718e-19,-8.818317118413702e-19,0.0023076923098415136,-0.00041958040674217045,2.248898944739769e-18,-0.0015384615398943424,-1.0037710071299694e-19,-1.1929837901135581e-19,0.0002797202905640006,-2.0307905716105951e-19,-3.98728429758956e-19,-1.7147681572892716e-19,0.0029761905316263437,-6.608470507765904e-19,-0.0059523810632526875,-4.794136171107273e-19,5.136157970680389e-20,1.2616621406813925e-19,-2.0307905716105951e-19,0.0014880952658131719,-3.5850413583536253e-19,9.495131805241075e-19,0.004999999888241291,1.3701118779380534e-18,-0.0024999999441206455,-0.0033333334140479565,-3.0543211141168664e-20,-2.1142651153854718e-19,-3.98728429758956e-19,-3.5850413583536253e-19,0.0016666667070239782,-2.2815860206205677e-18,0.004166666883975267,8.488752439145784e-18,6.383366849142128e-18,-0.012500000186264515,-4.712429338150816e-19,-8.818317118413702e-19,-1.7147681572892716e-19,9.495131805241075e-19,-2.2815860206205677e-18,0.004166666883975267,12.0,5.0,5.0,0.09190475940704346,-0.01373626384884119,-0.02798534743487835,-0.02798534743487835,0.0005494505749084055,0.0015384615398943424,0.0015384615398943424,0.0023809524718672037,0.0033333334140479565,0.0023809524718672037,-0.01373626384884119,0.005024975165724754,0.0015384615398943424,0.0015384615398943424,-0.00032967032166197896,-0.0002797202905640006,-0.0002797202905640006,1.620569604613557e-19,-1.9991453555607012e-19,1.560564372015312e-19,-0.02798534743487835,0.0015384615398943424,0.02827838808298111,0.0033333334140479565,2.3807700748586703e-20,-0.0007692307699471712,-3.4234792845431236e-19,-0.004761904943734407,-0.0016666667070239782,8.652939286286888e-21,-0.02798534743487835,0.0015384615398943424,0.0033333334140479565,0.02827838808298111,-6.708291949902418e-20,6.224748013198061e-20,-0.0007692307699471712,-4.409588176137496e-19,-0.0016666667070239782,-0.004761904943734407,0.0005494505749084055,-0.00032967032166197896,2.3807700748586703e-20,-6.708291949902418e-20,2.9970029572723433e-05,-2.886320933655738e-21,-2.3885320824641007e-21,-1.452254990506495e-20,2.5078631448031752e-20,2.4334474242702333e-21,0.0015384615398943424,-0.0002797202905640006,-0.0007692307699471712,6.224748013198061e-20,-2.886320933655738e-21,0.0001398601452820003,-2.8136084054690242e-21,-7.738114364189892e-20,-3.711369738595916e-20,1.1347970462373512e-20,0.0015384615398943424,-0.0002797202905640006,-3.4234792845431236e-19,-0.0007692307699471712,-2.3885320824641007e-21,-2.8136084054690242e-21,0.0001398601452820003,1.1190763656046815e-19,-3.711369738595916e-20,-1.022252936200789e-19,0.0023809524718672037,1.620569604613557e-19,-0.004761904943734407,-4.409588176137496e-19,-1.452254990506495e-20,-7.738114364189892e-20,1.1190763656046815e-19,0.0011904762359336019,-8.142332326385268e-20,2.260783972716159e-21,0.0033333334140479565,-1.9991453555607012e-19,-0.0016666667070239782,-0.0016666667070239782,2.5078631448031752e-20,-3.711369738595916e-20,-3.711369738595916e-20,-8.142332326385268e-20,0.0008333333535119891,2.8196141083012e-20,0.0023809524718672037,1.560564372015312e-19,8.652939286286888e-21,-0.004761904943734407,2.4334474242702333e-21,1.1347970462373512e-20,-1.022252936200789e-19,2.260783972716159e-21,2.8196141083012e-20,0.0011904762359336019,12.0,5.0,6.0,0.07977716624736786,-0.011630036868155003,-0.02371794916689396,-0.02062729001045227,0.0004578754596877843,0.0012820513220503926,0.001098901149816811,0.0019841270986944437,0.0023809524718672037,0.0014880952658131719,-0.011630036868155003,0.004220779053866863,0.0012820513220503926,0.001098901149816811,-0.00027472528745420277,-0.00023310023243539035,-0.00019980019715148956,2.4374961244018594e-18,8.89852158458261e-19,1.7626085616065822e-18,-0.02371794916689396,0.0012820513220503926,0.023763736709952354,0.0023809524718672037,3.8693919317490884e-19,-0.0006410256610251963,2.528842920217009e-18,-0.003968254197388887,-0.0011904762359336019,7.234493513247953e-18,-0.02062729001045227,0.001098901149816811,0.0023809524718672037,0.01643543876707554,-5.358574558933681e-20,1.9551592510063697e-18,-0.00043956044828519225,1.0917727776057735e-17,-0.0009523809421807528,-0.0022321429569274187,0.0004578754596877843,-0.00027472528745420277,3.8693919317490884e-19,-5.358574558933681e-20,2.4975024643936194e-05,-5.640183109377887e-21,1.1105483758273299e-20,-7.356601863574243e-20,-2.466163871525126e-20,7.010519673481e-21,0.0012820513220503926,-0.00023310023243539035,-0.0006410256610251963,1.9551592510063697e-18,-5.640183109377887e-21,0.00011655011621769518,-6.319701885170613e-20,-2.419115033817589e-19,-7.813263722840334e-20,-2.625221817589837e-19,0.001098901149816811,-0.00019980019715148956,2.528842920217009e-18,-0.00043956044828519225,1.1105483758273299e-20,-6.319701885170613e-20,7.992007886059582e-05,-4.165771262214721e-19,-1.8175220839442572e-19,-5.178196129515644e-19,0.0019841270986944437,2.4374961244018594e-18,-0.003968254197388887,1.0917727776057735e-17,-7.356601863574243e-20,-2.419115033817589e-19,-4.165771262214721e-19,0.0009920635493472219,-1.3003279229333595e-18,-1.0686521075476966e-18,0.0023809524718672037,8.89852158458261e-19,-0.0011904762359336019,-0.0009523809421807528,-2.466163871525126e-20,-7.813263722840334e-20,-1.8175220839442572e-19,-1.3003279229333595e-18,0.0004761904710903764,-5.13681124949385e-19,0.0014880952658131719,1.7626085616065822e-18,7.234493513247953e-18,-0.0022321429569274187,7.010519673481e-21,-2.625221817589837e-19,-5.178196129515644e-19,-1.0686521075476966e-18,-5.13681124949385e-19,0.00044642857392318547,12.0,5.0,7.0,0.0705019161105156,-0.010086342692375183,-0.020584773272275925,-0.015842491760849953,0.0003924646880477667,0.001098901149816811,0.0008241758332587779,0.001700680237263441,0.0017857142956927419,0.0009920635493472219,-0.010086342692375183,0.003639217931777239,0.001098901149816811,0.0008241758332587779,-0.00023547880118712783,-0.00019980019715148956,-0.00014985015150159597,-2.6187191439994043e-19,1.0766160990877806e-18,1.8105287888530042e-18,-0.020584773272275925,0.001098901149816811,0.020496467128396034,0.0017857142956927419,-1.6366054055166925e-19,-0.0005494505749084055,1.7567486073521034e-18,-0.003401360474526882,-0.0008928571478463709,5.810335825434793e-18,-0.015842491760849953,0.0008241758332587779,0.0017857142956927419,0.010439560748636723,6.933216446375394e-19,2.5712921748920054e-18,-0.00027472528745420277,6.150992789921894e-18,-0.0005952381179668009,-0.0011904762359336019,0.0003924646880477667,-0.00023547880118712783,-1.6366054055166925e-19,6.933216446375394e-19,2.1407164240372367e-05,-4.1233156195081974e-21,-2.7530609656727734e-20,6.617958657132799e-20,-2.6126522265707254e-20,-7.144397724711713e-20,0.001098901149816811,-0.00019980019715148956,-0.0005494505749084055,2.5712921748920054e-18,-4.1233156195081974e-21,9.990009857574478e-05,-8.003556622758158e-20,-5.1383412751331317e-20,-1.266259584676568e-19,-2.837671008708835e-19,0.0008241758332587779,-0.00014985015150159597,1.7567486073521034e-18,-0.00027472528745420277,-2.7530609656727734e-20,-8.003556622758158e-20,4.995004928787239e-05,-1.9012154428405483e-19,-1.6202338209836488e-19,-1.1562236251977602e-19,0.001700680237263441,-2.6187191439994043e-19,-0.003401360474526882,6.150992789921894e-18,6.617958657132799e-20,-5.1383412751331317e-20,-1.9012154428405483e-19,0.0008503401186317205,-7.707454397797731e-20,-7.477226768869495e-19,0.0017857142956927419,1.0766160990877806e-18,-0.0008928571478463709,-0.0005952381179668009,-2.6126522265707254e-20,-1.266259584676568e-19,-1.6202338209836488e-19,-7.707454397797731e-20,0.00029761905898340046,-2.929783256783326e-19,0.0009920635493472219,1.8105287888530042e-18,5.810335825434793e-18,-0.0011904762359336019,-7.144397724711713e-20,-2.837671008708835e-19,-1.1562236251977602e-19,-7.477226768869495e-19,-2.929783256783326e-19,0.00019841270113829523,12.0,5.0,8.0,0.06317155063152313,-0.008905678056180477,-0.018185287714004517,-0.01255341898649931,0.00034340660204179585,0.000961538462433964,0.0006410256610251963,0.0014880952658131719,0.0013888889225199819,0.0006944444612599909,-0.008905678056180477,0.003198884427547455,0.000961538462433964,0.0006410256610251963,-0.00020604395831469446,-0.00017482518160250038,-0.00011655011621769518,1.1955089398791352e-18,3.4216977442988375e-19,4.74627653484072e-19,-0.018185287714004517,0.000961538462433964,0.01802121475338936,0.0013888889225199819,6.2790830519442255e-19,-0.000480769231216982,-5.0095108027848386e-20,-0.0029761905316263437,-0.0006944444612599909,-1.164991676139675e-33,-0.01255341898649931,0.0006410256610251963,0.0013888889225199819,0.007058913353830576,4.3280320451488887e-19,3.30434937895809e-20,-0.00018315018678549677,-2.1863193918386426e-33,-0.00039682540227659047,-0.0006944444612599909,0.00034340660204179585,-0.00020604395831469446,6.2790830519442255e-19,4.3280320451488887e-19,1.8731268937699497e-05,-2.4890292762311084e-20,-1.959320421851909e-20,-9.506690491078767e-20,-2.9576369483239154e-20,-3.697046266184251e-20,0.000961538462433964,-0.00017482518160250038,-0.000480769231216982,3.30434937895809e-20,-2.4890292762311084e-20,8.741259080125019e-05,3.3881317890172014e-21,-7.488646384966702e-20,-2.3298010472824853e-20,4.4021256117696184e-35,0.0006410256610251963,-0.00011655011621769518,-5.0095108027848386e-20,-0.00018315018678549677,-1.959320421851909e-20,3.3881317890172014e-21,3.330003164592199e-05,1.0076846114308623e-34,8.504662314725356e-21,-1.9415009804412134e-20,0.0014880952658131719,1.1955089398791352e-18,-0.0029761905316263437,-2.1863193918386426e-33,-9.506690491078767e-20,-7.488646384966702e-20,1.0076846114308623e-34,0.0007440476329065859,1.5931904267639001e-34,1.8763639164289938e-34,0.0013888889225199819,3.4216977442988375e-19,-0.0006944444612599909,-0.00039682540227659047,-2.9576369483239154e-20,-2.3298010472824853e-20,8.504662314725356e-21,1.5931904267639001e-34,0.00019841270113829523,4.923690675916729e-35,0.0006944444612599909,4.74627653484072e-19,-1.164991676139675e-33,-0.0006944444612599909,-3.697046266184251e-20,4.4021256117696184e-35,-1.9415009804412134e-20,1.8763639164289938e-34,4.923690675916729e-35,9.920635056914762e-05,12.0,5.0,9.0,0.057229068130254745,-0.007973138242959976,-0.01628815568983555,-0.010194250382483006,0.0003052503161597997,0.0008547008619643748,0.0005128204938955605,0.0013227512827143073,0.0011111111380159855,0.0005050505278632045,-0.007973138242959976,0.0028538128826767206,0.0008547008619643748,0.0005128204938955605,-0.00018315018678549677,-0.0001554001501062885,-9.324009442934766e-05,-1.751445345649873e-18,-5.11818572703857e-19,-5.265437834745846e-19,-0.01628815568983555,0.0008547008619643748,0.01608058623969555,0.0011111111380159855,-1.073722414509917e-18,-0.0004273504309821874,-1.8957538535991962e-20,-0.0026455025654286146,-0.0005555555690079927,-3.291131451016978e-33,-0.010194250382483006,0.0005128204938955605,0.0011111111380159855,0.0050016650930047035,-6.379356470737318e-19,-1.2974505622478967e-20,-0.00012820512347389013,-6.37193684062911e-33,-0.00027777778450399637,-0.00043290044413879514,0.0003052503161597997,-0.00018315018678549677,-1.073722414509917e-18,-6.379356470737318e-19,1.6650015822960995e-05,3.67745953400779e-20,2.2488583547286172e-20,1.6900783669682122e-19,4.7322195050591767e-20,5.223878535937077e-20,0.0008547008619643748,-0.0001554001501062885,-0.0004273504309821874,-1.2974505622478967e-20,3.67745953400779e-20,7.770007505314425e-05,3.3881317890172014e-21,-5.382038377114057e-20,-1.983076459355128e-21,1.1205410230706773e-34,0.0005128204938955605,-9.324009442934766e-05,-1.8957538535991962e-20,-0.00012820512347389013,2.2488583547286172e-20,3.3881317890172014e-21,2.3310023607336916e-05,2.245897440382399e-34,-1.189845895807916e-21,-1.202070983065564e-20,0.0013227512827143073,-1.751445345649873e-18,-0.0026455025654286146,-6.37193684062911e-33,1.6900783669682122e-19,-5.382038377114057e-20,2.245897440382399e-34,0.0006613756413571537,4.473243651363403e-34,5.302555834223488e-34,0.0011111111380159855,-5.11818572703857e-19,-0.0005555555690079927,-0.00027777778450399637,4.7322195050591767e-20,-1.983076459355128e-21,-1.189845895807916e-21,4.473243651363403e-34,0.00013888889225199819,1.3845291592334051e-34,0.0005050505278632045,-5.265437834745846e-19,-3.291131451016978e-33,-0.00043290044413879514,5.223878535937077e-20,1.1205410230706773e-34,-1.202070983065564e-20,5.302555834223488e-34,1.3845291592334051e-34,5.411255551734939e-05,12.0,5.0,10.0,0.052312687039375305,-0.007217782083898783,-0.014750249683856964,-0.008444055914878845,0.00027472528745420277,0.0007692307699471712,0.00041958040674217045,0.0011904762359336019,0.0009090909152291715,0.0003787878667935729,-0.007217782083898783,0.0025760603602975607,0.0007692307699471712,0.00041958040674217045,-0.00016483516083098948,-0.0001398601452820003,-7.628734601894394e-05,-1.6099521727647678e-18,-4.54009659728305e-19,-3.7947076036992655e-19,-0.014750249683856964,0.0007692307699471712,0.014517981559038162,0.0009090909152291715,-9.33179051763176e-19,-0.0003846153849735856,-2.371692252312041e-20,-0.0023809524718672037,-0.00045454545761458576,2.710505431213761e-20,-0.008444055914878845,0.00041958040674217045,0.0009090909152291715,0.003675699234008789,-5.003024608183172e-19,-2.2317126131527548e-20,-9.324009442934766e-05,-5.038724208705088e-33,-0.00020202020823489875,-0.0002840909000951797,0.00027472528745420277,-0.00016483516083098948,-9.33179051763176e-19,-5.003024608183172e-19,1.4985014786361717e-05,2.790982673114355e-20,1.3984305742298683e-20,1.5210705044219969e-19,3.900558223149011e-20,3.8087014317121314e-20,0.0007692307699471712,-0.0001398601452820003,-0.0003846153849735856,-2.2317126131527548e-20,2.790982673114355e-20,6.993007264100015e-05,2.039827592504158e-21,-3.16126781250173e-20,5.09242636956726e-21,2.064597547249059e-22,0.00041958040674217045,-7.628734601894394e-05,-2.371692252312041e-20,-9.324009442934766e-05,1.3984305742298683e-20,2.039827592504158e-21,1.695274477242492e-05,1.4886874866489862e-34,3.600781426031902e-21,-1.0164395367051604e-20,0.0011904762359336019,-1.6099521727647678e-18,-0.0023809524718672037,-5.038724208705088e-33,1.5210705044219969e-19,-3.16126781250173e-20,1.4886874866489862e-34,0.0005952381179668009,3.617266573016364e-34,3.885299488813e-34,0.0009090909152291715,-4.54009659728305e-19,-0.00045454545761458576,-0.00020202020823489875,3.900558223149011e-20,5.09242636956726e-21,3.600781426031902e-21,3.617266573016364e-34,0.00010101010411744937,-6.776263578034403e-21,0.0003787878667935729,-3.7947076036992655e-19,2.710505431213761e-20,-0.0002840909000951797,3.8087014317121314e-20,2.064597547249059e-22,-1.0164395367051604e-20,3.885299488813e-34,-6.776263578034403e-21,3.156565799145028e-05,12.0,5.0,11.0,0.04817682132124901,-0.006593406666070223,-0.013478188775479794,-0.007109557278454304,0.00024975024280138314,0.0006993007264100015,0.00034965036320500076,0.0010822510812431574,0.0007575757335871458,0.00029137529782019556,-0.006593406666070223,0.0023476523347198963,0.0006993007264100015,0.00034965036320500076,-0.00014985015150159597,-0.0001271455839741975,-6.357279198709875e-05,8.694610189854866e-19,2.270048298641525e-19,2.270048298641525e-19,-0.013478188775479794,0.0006993007264100015,0.013232600875198841,0.0007575757335871458,4.851030687614436e-19,-0.00034965036320500076,3.049318610115481e-20,-0.0021645021624863148,-0.0003787878667935729,6.776263578034403e-21,-0.007109557278454304,0.00034965036320500076,0.0007575757335871458,0.002781662857159972,2.2367198992920563e-19,1.688895531004004e-20,-6.993007264100015e-05,-1.1757973161241127e-33,-0.00015151515253819525,-0.00019425019854679704,0.00024975024280138314,-0.00014985015150159597,4.851030687614436e-19,2.2367198992920563e-19,1.3622740880236961e-05,-2.399588595352965e-20,-1.0664616686621709e-20,-6.913956838281804e-20,-1.5586869628305006e-20,-1.3330080194777397e-20,0.0006993007264100015,-0.0001271455839741975,-0.00034965036320500076,1.688895531004004e-20,-2.399588595352965e-20,6.357279198709875e-05,1.501886554273887e-21,-5.446288338724406e-20,-1.2544286077833297e-20,2.190867420013038e-22,0.00034965036320500076,-6.357279198709875e-05,3.049318610115481e-20,-6.993007264100015e-05,-1.0664616686621709e-20,1.501886554273887e-21,1.2714558579318691e-05,4.872470575878312e-35,-6.112821913707826e-21,-1.4399560103323106e-20,0.0010822510812431574,8.694610189854866e-19,-0.0021645021624863148,-1.1757973161241127e-33,-6.913956838281804e-20,-5.446288338724406e-20,4.872470575878312e-35,0.0005411255406215787,8.611607329276768e-35,7.355228291241478e-35,0.0007575757335871458,2.270048298641525e-19,-0.0003787878667935729,-0.00015151515253819525,-1.5586869628305006e-20,-1.2544286077833297e-20,-6.112821913707826e-21,8.611607329276768e-35,7.575757626909763e-05,-1.6940658945086007e-21,0.00029137529782019556,2.270048298641525e-19,6.776263578034403e-21,-0.00019425019854679704,-1.3330080194777397e-20,2.190867420013038e-22,-1.4399560103323106e-20,7.355228291241478e-35,-1.6940658945086007e-21,1.942501876328606e-05,12.0,5.0,12.0,0.04464872553944588,-0.006068611051887274,-0.012408425100147724,-0.006068611051887274,0.00022893772984389216,0.0006410256610251963,0.0002958579862024635,0.0009920635493472219,0.0006410256610251963,0.00022893772984389216,-0.006068611051887274,0.0021564974449574947,0.0006410256610251963,0.0002958579862024635,-0.00013736264372710139,-0.00011655011621769518,-5.379236245062202e-05,-1.3836909782713005e-18,-3.049318610115481e-19,-2.1345230270808369e-19,-0.012408425100147724,0.0006410256610251963,0.01215659361332655,0.0006410256610251963,-7.782608409339119e-19,-0.00032051283051259816,-1.3552527156068805e-20,-0.0019841270986944437,-0.00032051283051259816,-6.776263578034403e-21,-0.006068611051887274,0.0002958579862024635,0.0006410256610251963,0.0021564974449574947,-3.8151255231443713e-19,3.7409267436517685e-21,-5.379236245062202e-05,-3.884064025883187e-33,-0.00011655011621769518,-0.00013736264372710139,0.00022893772984389216,-0.00013736264372710139,-7.782608409339119e-19,-3.8151255231443713e-19,1.2487512321968097e-05,2.2520066493764338e-20,1.4533482583200002e-20,1.2675587752261592e-19,2.729641414579866e-20,2.27305371076322e-20,0.0006410256610251963,-0.00011655011621769518,-0.00032051283051259816,3.7409267436517685e-21,2.2520066493764338e-20,5.827505810884759e-05,4.972753974056472e-22,-5.3118121971367254e-21,-3.1891231600191317e-21,1.8834863167896052e-22,0.0002958579862024635,-5.379236245062202e-05,-1.3552527156068805e-20,-5.379236245062202e-05,1.4533482583200002e-20,4.972753974056472e-22,9.780429536476731e-06,1.5178248232812533e-34,1.5527442275068683e-21,-6.776263578034403e-21,0.0009920635493472219,-1.3836909782713005e-18,-0.0019841270986944437,-3.884064025883187e-33,1.2675587752261592e-19,-5.3118121971367254e-21,1.5178248232812533e-34,0.0004960317746736109,2.569278232181014e-34,2.302870115900153e-34,0.0006410256610251963,-3.049318610115481e-19,-0.00032051283051259816,-0.00011655011621769518,2.729641414579866e-20,-3.1891231600191317e-21,1.5527442275068683e-21,2.569278232181014e-34,5.827505810884759e-05,1.6940658945086007e-21,0.00022893772984389216,-2.1345230270808369e-19,-6.776263578034403e-21,-0.00013736264372710139,2.27305371076322e-20,1.8834863167896052e-22,-6.776263578034403e-21,2.302870115900153e-34,1.6940658945086007e-21,1.2487512321968097e-05,12.0,5.0,13.0,0.041603267192840576,-0.00562130194157362,-0.011496196500957012,-0.005240913014858961,0.00021132713300175965,0.000591715972404927,0.0002535925596021116,0.0009157509193755686,0.0005494505749084055,0.00018315018678549677,-0.00562130194157362,0.001994159771129489,0.000591715972404927,0.0002535925596021116,-0.0001267962798010558,-0.00010758472490124404,-4.610773976310156e-05,7.356977972259013e-19,1.0503208545953324e-19,8.978549240895584e-20,-0.011496196500957012,0.000591715972404927,0.01124260388314724,0.0005494505749084055,3.9058227753835137e-19,-0.0002958579862024635,-5.082197683525802e-21,-0.0018315018387511373,-0.00027472528745420277,6.776263578034403e-21,-0.005240913014858961,0.0002535925596021116,0.0005494505749084055,0.001705986331216991,1.908392527124153e-19,-2.3675316307661273e-20,-4.226542660035193e-05,-9.619509246450414e-34,-9.157509339274839e-05,-9.990009857574478e-05,0.00021132713300175965,-0.0001267962798010558,3.9058227753835137e-19,1.908392527124153e-19,1.152693494077539e-05,-1.4964185188398706e-20,-1.0951982785714325e-20,-5.850271071433087e-20,-1.1509173746593319e-20,-9.01994090638334e-21,0.000591715972404927,-0.00010758472490124404,-0.0002958579862024635,-2.3675316307661273e-20,-1.4964185188398706e-20,5.379236245062202e-05,1.0161377652233884e-21,-4.6083976759433776e-20,8.791208503347522e-21,-1.2969325141359945e-22,0.0002535925596021116,-4.610773976310156e-05,-5.082197683525802e-21,-4.226542660035193e-05,-1.0951982785714325e-20,1.0161377652233884e-21,7.68462268752046e-06,5.9042463930163e-35,4.63831784479209e-22,1.2705494208814505e-21,0.0009157509193755686,7.356977972259013e-19,-0.0018315018387511373,-9.619509246450414e-34,-5.850271071433087e-20,-4.6083976759433776e-20,5.9042463930163e-35,0.0004578754596877843,4.666295582214739e-35,4.530040117522904e-35,0.0005494505749084055,1.0503208545953324e-19,-0.00027472528745420277,-9.157509339274839e-05,-1.1509173746593319e-20,8.791208503347522e-21,4.63831784479209e-22,4.666295582214739e-35,4.578754669637419e-05,-8.470329472543003e-22,0.00018315018678549677,8.978549240895584e-20,6.776263578034403e-21,-9.990009857574478e-05,-9.01994090638334e-21,-1.2969325141359945e-22,1.2705494208814505e-21,4.530040117522904e-35,-8.470329472543003e-22,8.325007911480498e-06,12.0,5.0,14.0,0.038947541266679764,-0.00523547874763608,-0.01070905290544033,-0.004571886267513037,0.00019623234402388334,0.0005494505749084055,0.00021978022414259613,0.0008503401186317205,0.0004761904710903764,0.00014880952949170023,-0.00523547874763608,0.0018545739585533738,0.0005494505749084055,0.00021978022414259613,-0.00011773940059356391,-9.990009857574478e-05,-3.996003943029791e-05,-2.378079327411869e-18,-5.759824041329242e-19,-2.710505431213761e-20,-0.01070905290544033,0.0005494505749084055,0.010456567630171776,0.0004761904710903764,-1.3463619715880075e-18,-0.00027472528745420277,1.8634724839594607e-20,-0.001700680237263441,-0.0002380952355451882,1.0842021724855044e-19,-0.004571886267513037,0.00021978022414259613,0.0004761904710903764,0.0013730099890381098,-1.1908799079243178e-19,-3.1439664252613886e-19,-3.3812342735473067e-05,8.664056205978688e-19,-7.326007471419871e-05,-7.440476474585012e-05,0.00019623234402388334,-0.00011773940059356391,-1.3463619715880075e-18,-1.1908799079243178e-19,1.0703582120186184e-05,4.720004373857241e-20,-1.5785979635395728e-21,1.8334331615206561e-19,3.7545876637798244e-20,2.5615499534456726e-21,0.0005494505749084055,-9.990009857574478e-05,-0.00027472528745420277,-3.1439664252613886e-19,4.720004373857241e-20,4.995004928787239e-05,1.8373573257336533e-20,2.75718349167407e-19,6.591976784845538e-20,5.8867128202806665e-21,0.00021978022414259613,-3.996003943029791e-05,1.8634724839594607e-20,-3.3812342735473067e-05,-1.5785979635395728e-21,1.8373573257336533e-20,6.147698513814248e-06,-3.900180821994534e-20,-1.9984936539641799e-22,-3.8116482626443515e-21,0.0008503401186317205,-2.378079327411869e-18,-0.001700680237263441,8.664056205978688e-19,1.8334331615206561e-19,2.75718349167407e-19,-3.900180821994534e-20,0.00042517005931586027,-2.6115734990414253e-20,-3.540251919252837e-20,0.0004761904710903764,-5.759824041329242e-19,-0.0002380952355451882,-7.326007471419871e-05,3.7545876637798244e-20,6.591976784845538e-20,-1.9984936539641799e-22,-2.6115734990414253e-20,3.6630037357099354e-05,0.0,0.00014880952949170023,-2.710505431213761e-20,1.0842021724855044e-19,-7.440476474585012e-05,2.5615499534456726e-21,5.8867128202806665e-21,-3.8116482626443515e-21,-3.540251919252837e-20,0.0,5.723443337046774e-06,12.0,5.0,15.0,0.03661109134554863,-0.004899267572909594,-0.01002289354801178,-0.00402337871491909,0.00018315018678549677,0.0005128204938955605,0.0001923076924867928,0.0007936508045531809,0.00041666667675599456,0.00012254902685526758,-0.004899267572909594,0.0017332667484879494,0.0005128204938955605,0.0001923076924867928,-0.00010989011207129806,-9.324009442934766e-05,-3.4965036320500076e-05,6.376047231299223e-19,1.0164395367051604e-19,6.776263578034403e-20,-0.01002289354801178,0.0005128204938955605,0.00977335125207901,0.00041666667675599456,3.3691748773290173e-19,-0.00025641024694778025,-1.3552527156068805e-20,-0.0015873016091063619,-0.00020833333837799728,0.0,-0.00402337871491909,0.0001923076924867928,0.00041666667675599456,0.0011215255362913013,1.3179466114867976e-19,9.727683585508386e-21,-2.7472528017824516e-05,-6.811117325801655e-34,-5.952380888629705e-05,-5.656108623952605e-05,0.00018315018678549677,-0.00010989011207129806,3.3691748773290173e-19,1.3179466114867976e-19,9.990009857574478e-06,-1.3389588731267198e-20,-6.178984649705348e-21,-5.0702349070341807e-20,-8.891991252140445e-21,-5.733356442770176e-21,0.0005128204938955605,-9.324009442934766e-05,-0.00025641024694778025,9.727683585508386e-21,-1.3389588731267198e-20,4.662004721467383e-05,7.586303416942005e-22,-3.9939446524842606e-20,-7.114477050992022e-21,-6.366987873903792e-23,0.0001923076924867928,-3.4965036320500076e-05,-1.3552527156068805e-20,-2.7472528017824516e-05,-6.178984649705348e-21,7.586303416942005e-22,4.995004928787239e-06,2.9923468568394246e-35,1.4654684939726586e-21,-4.235164736271502e-22,0.0007936508045531809,6.376047231299223e-19,-0.0015873016091063619,-6.811117325801655e-34,-5.0702349070341807e-20,-3.9939446524842606e-20,2.9923468568394246e-35,0.00039682540227659047,4.842966126850153e-35,2.994658241483351e-35,0.00041666667675599456,1.0164395367051604e-19,-0.00020833333837799728,-5.952380888629705e-05,-8.891991252140445e-21,-7.114477050992022e-21,1.4654684939726586e-21,4.842966126850153e-35,2.9761904443148524e-05,-8.470329472543003e-22,0.00012254902685526758,6.776263578034403e-20,0.0,-5.656108623952605e-05,-5.733356442770176e-21,-6.366987873903792e-23,-4.235164736271502e-22,2.994658241483351e-35,-8.470329472543003e-22,4.040077783429297e-06,12.0,5.0,16.0,0.03453952074050903,-0.0046036685816943645,-0.009419441223144531,-0.003568061860278249,0.00017170330102089792,0.000480769231216982,0.00016968326235655695,0.0007440476329065859,0.0003676470660138875,0.00010212418419541791,-0.0046036685816943645,0.001626865821890533,0.000480769231216982,0.00016968326235655695,-0.00010302197915734723,-8.741259080125019e-05,-3.0851500923745334e-05,5.228679996275521e-19,8.470329472543003e-20,6.437450399132683e-20,-0.009419441223144531,0.000480769231216982,0.009174006059765816,0.0003676470660138875,3.143746446917238e-19,-0.000240384615608491,0.0,-0.0014880952658131719,-0.00018382353300694376,-3.3881317890172014e-21,-0.003568061860278249,0.00016968326235655695,0.0003676470660138875,0.0009280058438889682,1.1255778759723776e-19,-1.4317582034031667e-34,-2.2624433768214658e-05,-5.712650915736844e-34,-4.901960710412823e-05,-4.376750803203322e-05,0.00017170330102089792,-0.00010302197915734723,3.143746446917238e-19,1.1255778759723776e-19,9.365634468849748e-06,-1.1913279748600316e-20,-4.484999534553442e-21,-4.7533452455393835e-20,-7.829039123409229e-21,-4.8154804035914674e-21,0.000480769231216982,-8.741259080125019e-05,-0.000240384615608491,-1.4317582034031667e-34,-1.1913279748600316e-20,4.3706295400625095e-05,5.7050115082424605e-36,6.046353213743026e-35,9.95869931802248e-36,6.1253902855677e-36,0.00016968326235655695,-3.0851500923745334e-05,0.0,-2.2624433768214658e-05,-4.484999534553442e-21,5.7050115082424605e-36,4.113533577765338e-06,2.2762740683367256e-35,0.0,-1.6940658945086007e-21,0.0007440476329065859,5.228679996275521e-19,-0.0014880952658131719,-5.712650915736844e-34,-4.7533452455393835e-20,6.046353213743026e-35,2.2762740683367256e-35,0.00037202381645329297,3.9734765457899826e-35,2.44400342297042e-35,0.0003676470660138875,8.470329472543003e-20,-0.00018382353300694376,-4.901960710412823e-05,-7.829039123409229e-21,9.95869931802248e-36,0.0,3.9734765457899826e-35,2.4509803552064113e-05,0.0,0.00010212418419541791,6.437450399132683e-20,-3.3881317890172014e-21,-4.376750803203322e-05,-4.8154804035914674e-21,6.1253902855677e-36,-1.6940658945086007e-21,2.44400342297042e-35,0.0,2.9178338536439696e-06,12.0,6.0,3.0,0.11551180481910706,-0.018315019086003304,-0.032394688576459885,-0.05334249138832092,0.000763125775847584,0.0018315018387511373,0.0032051282469183207,0.0024801588151603937,0.0059523810632526875,0.0069444444961845875,-0.018315019086003304,0.006840381771326065,0.0018315018387511373,0.0032051282469183207,-0.0004578754596877843,-0.0003330003237351775,-0.0005827505956403911,4.0318768289304696e-18,3.2526065174565133e-18,1.2480432839799546e-18,-0.032394688576459885,0.0018315018387511373,0.026598747819662094,0.0059523810632526875,9.215718466126788e-19,-0.0007326007471419871,3.7947076036992655e-18,-0.0037202381063252687,-0.0023809524718672037,2.998306050867091e-17,-0.05334249138832092,0.0032051282469183207,0.0059523810632526875,0.12278693169355392,-1.7930200894716416e-19,3.8415462922947744e-18,-0.0032051282469183207,5.059610276129123e-18,-0.0059523810632526875,-0.0416666679084301,0.000763125775847584,-0.0004578754596877843,9.215718466126788e-19,-1.7930200894716416e-19,4.162504046689719e-05,-1.3552527156068805e-20,-8.470329472543003e-21,-1.6263032587282567e-19,-3.3881317890172014e-20,1.7096616094764637e-19,0.0018315018387511373,-0.0003330003237351775,-0.0007326007471419871,3.8415462922947744e-18,-1.3552527156068805e-20,0.00013320012658368796,-1.923502273482141e-19,-6.166399856011306e-19,-5.55653613398821e-19,-6.739407511866337e-19,0.0032051282469183207,-0.0005827505956403911,3.7947076036992655e-18,-0.0032051282469183207,-8.470329472543003e-21,-1.923502273482141e-19,0.0005827505956403911,-2.8108902608956066e-19,-1.1541645917073567e-18,-2.011273529400742e-18,0.0024801588151603937,4.0318768289304696e-18,-0.0037202381063252687,5.059610276129123e-18,-1.6263032587282567e-19,-6.166399856011306e-19,-2.8108902608956066e-19,0.0007440476329065859,4.336808689942018e-19,-2.3129647035674605e-18,0.0059523810632526875,3.2526065174565133e-18,-0.0023809524718672037,-0.0059523810632526875,-3.3881317890172014e-20,-5.55653613398821e-19,-1.1541645917073567e-18,4.336808689942018e-19,0.0023809524718672037,-1.3784782101280832e-17,0.0069444444961845875,1.2480432839799546e-18,2.998306050867091e-17,-0.0416666679084301,1.7096616094764637e-19,-6.739407511866337e-19,-2.011273529400742e-18,-2.3129647035674605e-18,-1.3784782101280832e-17,0.02083333395421505,12.0,6.0,4.0,0.09428800642490387,-0.014217033050954342,-0.025188874453306198,-0.034088827669620514,0.0005723443464376032,0.0013736264081671834,0.001923076924867928,0.0018601190531626344,0.0035714285913854837,0.0034722222480922937,-0.014217033050954342,0.005217698868364096,0.0013736264081671834,0.001923076924867928,-0.00034340660204179585,-0.00024975024280138314,-0.00034965036320500076,-1.6027201326692167e-18,-8.049714851902266e-19,6.81196624423584e-19,-0.025188874453306198,0.0013736264081671834,0.02030620351433754,0.0035714285913854837,-4.87890977618477e-19,-0.0005494505749084055,-3.4962103806727674e-18,-0.0027901786379516125,-0.0014285714132711291,1.141588241071677e-17,-0.034088827669620514,0.001923076924867928,0.0035714285913854837,0.04703143984079361,2.574980159653073e-19,-2.3987985473950974e-18,-0.0012820513220503926,5.151763986631818e-18,-0.0023809524718672037,-0.010416666977107525,0.0005723443464376032,-0.00034340660204179585,-4.87890977618477e-19,2.574980159653073e-19,3.121878035017289e-05,1.8634724839594607e-20,4.0657581468206416e-20,6.583741167871807e-20,2.4979767208960326e-20,-1.947113368585643e-19,0.0013736264081671834,-0.00024975024280138314,-0.0005494505749084055,-2.3987985473950974e-18,1.8634724839594607e-20,9.990009857574478e-05,2.168404344971009e-19,-2.3135125362398664e-20,8.923420238008339e-20,2.9155681579566023e-19,0.001923076924867928,-0.00034965036320500076,-3.4962103806727674e-18,-0.0012820513220503926,4.0657581468206416e-20,2.168404344971009e-19,0.00023310023243539035,4.148515757648982e-19,8.060645009721388e-20,2.288871310468052e-19,0.0018601190531626344,-1.6027201326692167e-18,-0.0027901786379516125,5.151763986631818e-18,6.583741167871807e-20,-2.3135125362398664e-20,4.148515757648982e-19,0.0005580357392318547,-1.710982978806229e-18,-1.1402851214141763e-18,0.0035714285913854837,-8.049714851902266e-19,-0.0014285714132711291,-0.0023809524718672037,2.4979767208960326e-20,8.923420238008339e-20,8.060645009721388e-20,-1.710982978806229e-18,0.0009523809421807528,-4.455339535817804e-18,0.0034722222480922937,6.81196624423584e-19,1.141588241071677e-17,-0.010416666977107525,-1.947113368585643e-19,2.9155681579566023e-19,2.288871310468052e-19,-1.1402851214141763e-18,-4.455339535817804e-18,0.0034722222480922937,12.0,6.0,5.0,0.07977716624736786,-0.011630036868155003,-0.02062729001045227,-0.02371794916689396,0.0004578754596877843,0.001098901149816811,0.0012820513220503926,0.0014880952658131719,0.0023809524718672037,0.0019841270986944437,-0.011630036868155003,0.004220779053866863,0.001098901149816811,0.0012820513220503926,-0.00027472528745420277,-0.00019980019715148956,-0.00023310023243539035,1.0171731425109184e-18,4.718248553760127e-19,1.275026225754164e-18,-0.02062729001045227,0.001098901149816811,0.01643543876707554,0.0023809524718672037,-2.1862629159020873e-19,-0.00043956044828519225,9.057649420946733e-19,-0.0022321429569274187,-0.0009523809421807528,3.808214635921644e-18,-0.02371794916689396,0.0012820513220503926,0.0023809524718672037,0.023763736709952354,3.6271505383992857e-19,1.3537836428389864e-18,-0.0006410256610251963,4.479458054528319e-18,-0.0011904762359336019,-0.003968254197388887,0.0004578754596877843,-0.00027472528745420277,-2.1862629159020873e-19,3.6271505383992857e-19,2.4975024643936194e-05,1.7133886397473833e-20,-8.791421760849195e-21,3.6593610806990713e-20,-3.2677204643410496e-20,-5.816730190063769e-20,0.001098901149816811,-0.00019980019715148956,-0.00043956044828519225,1.3537836428389864e-18,1.7133886397473833e-20,7.992007886059582e-05,-7.412707327325213e-20,-4.338853377018672e-19,-8.085335058536389e-20,-1.9097885236548069e-19,0.0012820513220503926,-0.00023310023243539035,9.057649420946733e-19,-0.0006410256610251963,-8.791421760849195e-21,-7.412707327325213e-20,0.00011655011621769518,-1.07224973575154e-19,4.8093893169792654e-20,-1.053021356957248e-20,0.0014880952658131719,1.0171731425109184e-18,-0.0022321429569274187,4.479458054528319e-18,3.6593610806990713e-20,-4.338853377018672e-19,-1.07224973575154e-19,0.00044642857392318547,-4.553399729484434e-19,-6.865864815961912e-19,0.0023809524718672037,4.718248553760127e-19,-0.0009523809421807528,-0.0011904762359336019,-3.2677204643410496e-20,-8.085335058536389e-20,4.8093893169792654e-20,-4.553399729484434e-19,0.0004761904710903764,4.940458734601192e-19,0.0019841270986944437,1.275026225754164e-18,3.808214635921644e-18,-0.003968254197388887,-5.816730190063769e-20,-1.9097885236548069e-19,-1.053021356957248e-20,-6.865864815961912e-19,4.940458734601192e-19,0.0009920635493472219,12.0,6.0,6.0,0.06918643414974213,-0.009844322688877583,-0.017472853884100914,-0.017472853884100914,0.000381562887923792,0.0009157509193755686,0.0009157509193755686,0.0012400794075801969,0.001700680237263441,0.0012400794075801969,-0.009844322688877583,0.0035450661089271307,0.0009157509193755686,0.0009157509193755686,-0.00022893772984389216,-0.00016650016186758876,-0.00016650016186758876,2.654180842148647e-18,7.936616514699422e-19,1.2198023038916285e-18,-0.017472853884100914,0.0009157509193755686,0.013809578493237495,0.001700680237263441,6.824947292986211e-19,-0.00036630037357099354,1.6067109689320553e-18,-0.0018601190531626344,-0.0006802721181884408,1.350168036381517e-18,-0.017472853884100914,0.0009157509193755686,0.001700680237263441,0.013809578493237495,4.793938681736026e-19,1.7565711771107108e-18,-0.00036630037357099354,1.059864450912663e-18,-0.0006802721181884408,-0.0018601190531626344,0.000381562887923792,-0.00022893772984389216,6.824947292986211e-19,4.793938681736026e-19,2.0812520233448595e-05,-1.425433174468323e-20,-8.660946943916026e-21,-1.0388788787721927e-19,-2.5731062078247283e-20,-7.213095074584242e-20,0.0009157509193755686,-0.00016650016186758876,-0.00036630037357099354,1.7565711771107108e-18,-1.425433174468323e-20,6.660006329184398e-05,-6.976168575164034e-20,-3.1321886658083406e-19,-1.5186937818775847e-19,-1.931528768857261e-19,0.0009157509193755686,-0.00016650016186758876,1.6067109689320553e-18,-0.00036630037357099354,-8.660946943916026e-21,-6.976168575164034e-20,6.660006329184398e-05,-2.282954125654942e-19,-2.0465873302413998e-20,2.6976826776907687e-20,0.0012400794075801969,2.654180842148647e-18,-0.0018601190531626344,1.059864450912663e-18,-1.0388788787721927e-19,-3.1321886658083406e-19,-2.282954125654942e-19,0.00037202381645329297,3.1028405561689006e-19,-1.0277611189750825e-19,0.001700680237263441,7.936616514699422e-19,-0.0006802721181884408,-0.0006802721181884408,-2.5731062078247283e-20,-1.5186937818775847e-19,-2.0465873302413998e-20,3.1028405561689006e-19,0.0002721088530961424,7.006183599172345e-20,0.0012400794075801969,1.2198023038916285e-18,1.350168036381517e-18,-0.0018601190531626344,-7.213095074584242e-20,-1.931528768857261e-19,2.6976826776907687e-20,-1.0277611189750825e-19,7.006183599172345e-20,0.00037202381645329297,12.0,6.0,7.0,0.06110093742609024,-0.008536106906831264,-0.015158948488533497,-0.013414660468697548,0.0003270538873039186,0.0007849293760955334,0.0006868132040835917,0.0010629252064973116,0.0012755101779475808,0.0008267195662483573,-0.008536106906831264,0.003056467277929187,0.0007849293760955334,0.0006868132040835917,-0.00019623234402388334,-0.00014271443069446832,-0.00012487512140069157,-2.149591155914256e-18,1.596849295819804e-19,8.559966899622312e-19,-0.015158948488533497,0.0007849293760955334,0.011909667402505875,0.0012755101779475808,-4.764795557792134e-19,-0.00031397174461744726,2.5731513150175066e-19,-0.0015943878097459674,-0.0005102040595375001,4.382283771297733e-18,-0.013414660468697548,0.0006868132040835917,0.0012755101779475808,0.008770495653152466,-7.583802528448417e-20,9.34956766297129e-19,-0.00022893772984389216,2.559095396759911e-18,-0.00042517005931586027,-0.0009920635493472219,0.0003270538873039186,-0.00019623234402388334,-4.764795557792134e-19,-7.583802528448417e-20,1.783930383680854e-05,1.732647084618237e-20,6.6057743028657645e-21,6.510047776346428e-20,1.4043009716395805e-20,2.991877944377706e-21,0.0007849293760955334,-0.00014271443069446832,-0.00031397174461744726,9.34956766297129e-19,1.732647084618237e-20,5.7085770095000044e-05,2.4421055576691556e-21,4.953066518100149e-19,-1.1456125943051954e-20,-1.3630491513741343e-19,0.0006868132040835917,-0.00012487512140069157,2.5731513150175066e-19,-0.00022893772984389216,6.6057743028657645e-21,2.4421055576691556e-21,4.162504046689719e-05,1.0686610482068956e-20,-1.0666360228256606e-19,-1.7355744638813652e-19,0.0010629252064973116,-2.149591155914256e-18,-0.0015943878097459674,2.559095396759911e-18,6.510047776346428e-20,4.953066518100149e-19,1.0686610482068956e-20,0.0003188775444868952,-1.7046211068656894e-19,-3.186123943674095e-19,0.0012755101779475808,1.596849295819804e-19,-0.0005102040595375001,-0.00042517005931586027,1.4043009716395805e-20,-1.1456125943051954e-20,-1.0666360228256606e-19,-1.7046211068656894e-19,0.0001700680295471102,-6.334842263060659e-19,0.0008267195662483573,8.559966899622312e-19,4.382283771297733e-18,-0.0009920635493472219,2.991877944377706e-21,-1.3630491513741343e-19,-1.7355744638813652e-19,-3.186123943674095e-19,-6.334842263060659e-19,0.0001653439103392884,12.0,6.0,8.0,0.05471929535269737,-0.007535866927355528,-0.013388087972998619,-0.010626526549458504,0.0002861721732188016,0.0006868132040835917,0.0005341880605556071,0.0009300595265813172,0.0009920635493472219,0.0005787037080153823,-0.007535866927355528,0.002686549676582217,0.0006868132040835917,0.0005341880605556071,-0.00017170330102089792,-0.00012487512140069157,-9.712509927339852e-05,4.311075101085493e-19,1.814279277449108e-19,3.955230273371306e-19,-0.013388087972998619,0.0006868132040835917,0.010470562614500523,0.0009920635493472219,4.682705119826606e-19,-0.00027472528745420277,4.569689500685017e-20,-0.0013950893189758062,-0.00039682540227659047,6.883823424048321e-19,-0.010626526549458504,0.0005341880605556071,0.0009920635493472219,0.00592966889962554,2.7419649193667427e-19,-8.292097899931968e-20,-0.00015262515807989985,8.38421583487317e-19,-0.00028344671591185033,-0.0005787037080153823,0.0002861721732188016,-0.00017170330102089792,4.682705119826606e-19,2.7419649193667427e-19,1.5609390175086446e-05,-2.2182277920222932e-20,-1.0400897532511095e-21,-5.446541662787001e-20,-2.1125979587102653e-20,-3.0808719961926847e-20,0.0006868132040835917,-0.00012487512140069157,-0.00027472528745420277,-8.292097899931968e-20,-2.2182277920222932e-20,4.995004928787239e-05,-1.2485233136915253e-21,6.720482524179919e-20,3.5915141758938235e-20,9.881319302931607e-36,0.0005341880605556071,-9.712509927339852e-05,4.569689500685017e-20,-0.00015262515807989985,-1.0400897532511095e-21,-1.2485233136915253e-21,2.775002758426126e-05,2.711549208857123e-35,-1.109429097060969e-20,-1.617917456774559e-20,0.0009300595265813172,4.311075101085493e-19,-0.0013950893189758062,8.38421583487317e-19,-5.446541662787001e-20,6.720482524179919e-20,2.711549208857123e-35,0.00027901786961592734,5.0125471372442764e-20,-1.3767647106590584e-19,0.0009920635493472219,1.814279277449108e-19,-0.00039682540227659047,-0.00028344671591185033,-2.1125979587102653e-20,3.5915141758938235e-20,-1.109429097060969e-20,5.0125471372442764e-20,0.00011337868636474013,2.044580286178251e-35,0.0005787037080153823,3.955230273371306e-19,6.883823424048321e-19,-0.0005787037080153823,-3.0808719961926847e-20,9.881319302931607e-36,-1.617917456774559e-20,-1.3767647106590584e-19,2.044580286178251e-35,8.26719551696442e-05,12.0,6.0,9.0,0.04955121874809265,-0.0067460318095982075,-0.011988705955445766,-0.008627483621239662,0.0002543752489145845,0.0006105006323195994,0.0004273504309821874,0.0008267195662483573,0.0007936508045531809,0.0004208754107821733,-0.0067460318095982075,0.0023966773878782988,0.0006105006323195994,0.0004273504309821874,-0.00015262515807989985,-0.00011100011033704504,-7.770007505314425e-05,6.14272077700121e-19,2.0151989925457948e-19,2.8057749242887904e-19,-0.011988705955445766,0.0006105006323195994,0.009342440403997898,0.0007936508045531809,4.088829765068394e-19,-0.00024420025874860585,-2.3081287536748826e-20,-0.0012400794075801969,-0.0003174603043589741,4.86337635825679e-19,-0.008627483621239662,0.0004273504309821874,0.0007936508045531809,0.004201123025268316,2.9125101746295703e-19,1.4975649394700808e-20,-0.00010683760774554685,1.136186441478976e-18,-0.00019841270113829523,-0.0003607503604143858,0.0002543752489145845,-0.00015262515807989985,4.088829765068394e-19,2.9125101746295703e-19,1.387501379213063e-05,-1.8038327617943875e-20,-1.4151798507230733e-20,-4.841370187412097e-20,-1.690078302344727e-20,-2.176616083566901e-20,0.0006105006323195994,-0.00011100011033704504,-0.00024420025874860585,1.4975649394700808e-20,-1.8038327617943875e-20,4.4400043407222256e-05,2.541098841762901e-21,-3.268853637156762e-20,-1.1411270781866559e-20,4.224262066641927e-35,0.0004273504309821874,-7.770007505314425e-05,-2.3081287536748826e-20,-0.00010683760774554685,-1.4151798507230733e-20,2.541098841762901e-21,1.942501876328606e-05,6.343897351435663e-35,3.2292230424243055e-21,-1.0287433636407465e-20,0.0008267195662483573,6.14272077700121e-19,-0.0012400794075801969,1.136186441478976e-18,-4.841370187412097e-20,-3.268853637156762e-20,6.343897351435663e-35,0.00024801588733680546,-1.4321849069713163e-19,-9.72675284576055e-20,0.0007936508045531809,2.0151989925457948e-19,-0.0003174603043589741,-0.00019841270113829523,-1.690078302344727e-20,-1.1411270781866559e-20,3.2292230424243055e-21,-1.4321849069713163e-19,7.936507608974352e-05,7.907179138193939e-35,0.0004208754107821733,2.8057749242887904e-19,4.86337635825679e-19,-0.0003607503604143858,-2.176616083566901e-20,4.224262066641927e-35,-1.0287433636407465e-20,-9.72675284576055e-20,7.907179138193939e-35,4.5093795051798224e-05,12.0,6.0,10.0,0.04527902603149414,-0.006106393411755562,-0.010854770429432392,-0.007144938223063946,0.00022893772984389216,0.0005494505749084055,0.00034965036320500076,0.0007440476329065859,0.0006493506371043622,0.00031565656536258757,-0.006106393411755562,0.0021633668802678585,0.0005494505749084055,0.00034965036320500076,-0.00013736264372710139,-9.990009857574478e-05,-6.357279198709875e-05,-9.434421918158511e-19,-2.710505431213761e-19,-2.507217523872729e-19,-0.010854770429432392,0.0005494505749084055,0.008434169925749302,0.0006493506371043622,-7.215646409786086e-19,-0.00021978022414259613,3.3881317890172014e-21,-0.0011160714784637094,-0.0002597402490209788,-5.963111948670274e-19,-0.007144938223063946,0.00034965036320500076,0.0006493506371043622,0.003087132703512907,-4.1359922431749292e-19,-3.7487253443057816e-20,-7.770007505314425e-05,-1.5185035303366975e-18,-0.00014430013834498823,-0.0002367424312978983,0.00022893772984389216,-0.00013736264372710139,-7.215646409786086e-19,-4.1359922431749292e-19,1.2487512321968097e-05,2.912379505942181e-20,1.0429081046165069e-20,8.714466660459201e-20,2.757145493064681e-20,3.171362324031718e-20,0.0005494505749084055,-9.990009857574478e-05,-0.00021978022414259613,-3.7487253443057816e-20,2.912379505942181e-20,3.996003943029791e-05,6.022636204822888e-21,-6.0596440554021834e-21,1.7954516611992493e-21,-9.921613414402672e-23,0.00034965036320500076,-6.357279198709875e-05,3.3881317890172014e-21,-7.770007505314425e-05,1.0429081046165069e-20,6.022636204822888e-21,1.41272867040243e-05,-5.533156372197387e-35,-7.503932101075314e-21,-2.202285662861181e-20,0.0007440476329065859,-9.434421918158511e-19,-0.0011160714784637094,-1.5185035303366975e-18,8.714466660459201e-20,-6.0596440554021834e-21,-5.533156372197387e-35,0.00022321428696159273,9.374300880274509e-20,1.4268287832580647e-19,0.0006493506371043622,-2.710505431213761e-19,-0.0002597402490209788,-0.00014430013834498823,2.757145493064681e-20,1.7954516611992493e-21,-7.503932101075314e-21,9.374300880274509e-20,5.77200589759741e-05,-2.541098841762901e-20,0.00031565656536258757,-2.507217523872729e-19,-5.963111948670274e-19,-0.0002367424312978983,3.171362324031718e-20,-9.921613414402672e-23,-2.202285662861181e-20,1.4268287832580647e-19,-2.541098841762901e-20,2.630471317388583e-05,12.0,6.0,11.0,0.04168747738003731,-0.005577755626291037,-0.009917166084051132,-0.006014818325638771,0.00020812520233448595,0.0004995004856027663,0.00029137529782019556,0.0006764069548808038,0.0005411255406215787,0.0002428127481834963,-0.005577755626291037,0.0019715132657438517,0.0004995004856027663,0.00029137529782019556,-0.00012487512140069157,-9.081827010959387e-05,-5.297732423059642e-05,-2.3546053891936862e-18,-1.1316360175317453e-18,-7.657177843178875e-19,-0.009917166084051132,0.0004995004856027663,0.0076871044002473354,0.0005411255406215787,-1.318361287467628e-18,-0.00019980019715148956,-7.623296525288703e-19,-0.0010146104032173753,-0.00021645022206939757,-9.351243737687476e-19,-0.006014818325638771,0.00029137529782019556,0.0005411255406215787,0.0023360897321254015,-7.794827417950176e-19,-7.983365660993622e-19,-5.827505810884759e-05,-1.841529243464807e-18,-0.00010822511103469878,-0.00016187515575438738,0.00020812520233448595,-0.00012487512140069157,-1.318361287467628e-18,-7.794827417950176e-19,1.1352283763699234e-05,3.2285243817682537e-20,1.779636274848791e-20,1.386392446754322e-19,7.06316018750591e-20,4.493207282649113e-20,0.0004995004856027663,-9.081827010959387e-05,-0.00019980019715148956,-7.983365660993622e-19,3.2285243817682537e-20,3.632731022662483e-05,2.876000684213467e-20,1.5033811177755797e-19,6.16946908382479e-20,4.454881355306632e-20,0.00029137529782019556,-5.297732423059642e-05,-7.623296525288703e-19,-5.827505810884759e-05,1.779636274848791e-20,2.876000684213467e-20,1.0595465028018225e-05,8.06628276258382e-20,3.2331200809293246e-20,2.795208725939191e-20,0.0006764069548808038,-2.3546053891936862e-18,-0.0010146104032173753,-1.841529243464807e-18,1.386392446754322e-19,1.5033811177755797e-19,8.06628276258382e-20,0.000202922077733092,1.2783138033999678e-19,1.078305214823311e-19,0.0005411255406215787,-1.1316360175317453e-18,-0.00021645022206939757,-0.00010822511103469878,7.06316018750591e-20,6.16946908382479e-20,3.2331200809293246e-20,1.2783138033999678e-19,4.329004150349647e-05,2.964615315390051e-20,0.0002428127481834963,-7.657177843178875e-19,-9.351243737687476e-19,-0.00016187515575438738,4.493207282649113e-20,4.454881355306632e-20,2.795208725939191e-20,1.078305214823311e-19,2.964615315390051e-20,1.618751593923662e-05,12.0,6.0,12.0,0.03862541541457176,-0.005133488215506077,-0.009128891862928867,-0.005133488215506077,0.000190781443961896,0.0004578754596877843,0.00024654832668602467,0.0006200397037900984,0.0004578754596877843,0.000190781443961896,-0.005133488215506077,0.0018109561642631888,0.0004578754596877843,0.00024654832668602467,-0.00011446886492194608,-8.325008093379438e-05,-4.482696749619208e-05,4.607040324256966e-19,1.1689054672109345e-19,8.809142651444724e-20,-0.009128891862928867,0.0004578754596877843,0.007061774842441082,0.0004578754596877843,2.2686658730427957e-19,-0.00018315018678549677,1.8634724839594607e-20,-0.0009300595265813172,-0.00018315018678549677,1.3891340334970526e-19,-0.005133488215506077,0.00024654832668602467,0.0004578754596877843,0.0018109561642631888,1.8021214026551977e-19,4.3981112390087787e-20,-4.482696749619208e-05,4.593250189469942e-19,-8.325008093379438e-05,-0.00011446886492194608,0.000190781443961896,-0.00011446886492194608,2.2686658730427957e-19,1.8021214026551977e-19,1.0406260116724297e-05,1.4971075465576367e-21,-9.297867129852621e-21,-3.631027559779716e-20,-9.827624613404551e-21,-9.576853986275304e-21,0.0004578754596877843,-8.325008093379438e-05,-0.00018315018678549677,4.3981112390087787e-20,1.4971075465576367e-21,3.330003164592199e-05,-4.576602517251587e-21,-2.4516402278675714e-20,-6.651776934813007e-21,-1.534205592337391e-22,0.00024654832668602467,-4.482696749619208e-05,1.8634724839594607e-20,-4.482696749619208e-05,-9.297867129852621e-21,-4.576602517251587e-21,8.150357643899042e-06,3.086251808506151e-35,1.1652669589980487e-21,2.541098841762901e-21,0.0006200397037900984,4.607040324256966e-19,-0.0009300595265813172,4.593250189469942e-19,-3.631027559779716e-20,-2.4516402278675714e-20,3.086251808506151e-35,0.00018601190822664648,-1.504632769052528e-35,-4.175681726058416e-20,0.0004578754596877843,1.1689054672109345e-19,-0.00018315018678549677,-8.325008093379438e-05,-9.827624613404551e-21,-6.651776934813007e-21,1.1652669589980487e-21,-1.504632769052528e-35,3.330003164592199e-05,1.2705494208814505e-20,0.000190781443961896,8.809142651444724e-20,1.3891340334970526e-19,-0.00011446886492194608,-9.576853986275304e-21,-1.534205592337391e-22,2.541098841762901e-21,-4.175681726058416e-20,1.2705494208814505e-20,1.0406260116724297e-05,12.0,6.0,13.0,0.03598347678780556,-0.004754860419780016,-0.008456858806312084,-0.004432838410139084,0.00017610593931749463,0.0004226542660035193,0.00021132713300175965,0.0005723443464376032,0.0003924646880477667,0.00015262515807989985,-0.004754860419780016,0.0016746073961257935,0.0004226542660035193,0.00021132713300175965,-0.00010566356650087982,-7.684623415116221e-05,-3.8423117075581104e-05,5.6719180066695835e-19,-1.2027867851011065e-19,-2.202285662861181e-20,-0.008456858806312084,0.0004226542660035193,0.006530637387186289,0.0003924646880477667,2.8892430057151314e-20,-0.00016906170640140772,2.202285662861181e-20,-0.0008585164905525744,-0.00015698587230872363,-2.0328790734103208e-19,-0.004432838410139084,0.00021132713300175965,0.0003924646880477667,0.001432557008229196,-5.568791202504095e-20,-2.7957267477978025e-19,-3.522119004628621e-05,-4.241700432462951e-20,-6.541077891597524e-05,-8.325008093379438e-05,0.00017610593931749463,-0.00010566356650087982,2.8892430057151314e-20,-5.568791202504095e-20,9.605779268895276e-06,1.3691642132994032e-20,5.542118182040955e-21,-2.7232708313935003e-20,2.5005845612578837e-21,2.7818385913003967e-22,0.0004226542660035193,-7.684623415116221e-05,-0.00016906170640140772,-2.7957267477978025e-19,1.3691642132994032e-20,3.073849075008184e-05,1.4889921494615064e-20,-5.738644986473617e-20,2.2361003862496938e-20,8.955591263046829e-21,0.00021132713300175965,-3.8423117075581104e-05,2.202285662861181e-20,-3.522119004628621e-05,5.542118182040955e-21,1.4889921494615064e-20,6.403852694347734e-06,-2.780402192974492e-20,1.1573058504732051e-21,-1.6940658945086007e-21,0.0005723443464376032,5.6719180066695835e-19,-0.0008585164905525744,-4.241700432462951e-20,-2.7232708313935003e-20,-5.738644986473617e-20,-2.780402192974492e-20,0.00017170330102089792,-2.73723616852726e-21,1.1553269581825784e-20,0.0003924646880477667,-1.2027867851011065e-19,-0.00015698587230872363,-6.541077891597524e-05,2.5005845612578837e-21,2.2361003862496938e-20,1.1573058504732051e-21,-2.73723616852726e-21,2.616431265778374e-05,1.2281977735187355e-20,0.00015262515807989985,-2.202285662861181e-20,-2.0328790734103208e-19,-8.325008093379438e-05,2.7818385913003967e-22,8.955591263046829e-21,-1.6940658945086007e-21,1.1553269581825784e-20,1.2281977735187355e-20,6.937506896065315e-06,12.0,6.0,14.0,0.03368055447936058,-0.004428309854120016,-0.007877092808485031,-0.0038665947504341602,0.0001635269436519593,0.0003924646880477667,0.00018315018678549677,0.0005314626032486558,0.0003401360590942204,0.00012400794366840273,-0.004428309854120016,0.001557371229864657,0.0003924646880477667,0.00018315018678549677,-9.811617201194167e-05,-7.135721534723416e-05,-3.330003164592199e-05,3.948891743433677e-19,6.776263578034403e-20,8.639736061993863e-20,-0.007877092808485031,0.0003924646880477667,0.006073881406337023,0.0003401360590942204,2.811080770930435e-19,-0.00015698587230872363,5.082197683525802e-21,-0.0007971939048729837,-0.0001360544265480712,1.4568966692773966e-19,-0.0038665947504341602,0.00018315018678549677,0.0003401360590942204,0.0011528964387252927,1.237965742577221e-19,-2.9999348774144284e-21,-2.8176951673231088e-05,4.665843043039713e-19,-5.232862531556748e-05,-6.200397183420137e-05,0.0001635269436519593,-9.811617201194167e-05,2.811080770930435e-19,1.237965742577221e-19,8.91965191840427e-06,-1.4270985216859395e-20,-5.635863029381858e-21,-3.1123093831136746e-20,-7.337072646299749e-21,-5.720226566133031e-21,0.0003924646880477667,-7.135721534723416e-05,-0.00015698587230872363,-2.9999348774144284e-21,-1.4270985216859395e-20,2.8542885047500022e-05,-1.2374587632566699e-21,-2.1014058172815107e-20,3.79232866780048e-21,-7.552438186260718e-23,0.00018315018678549677,-3.330003164592199e-05,5.082197683525802e-21,-2.8176951673231088e-05,-5.635863029381858e-21,-1.2374587632566699e-21,5.123082246427657e-06,3.1713597805987184e-35,4.664439364392237e-22,-2.964615315390051e-21,0.0005314626032486558,3.948891743433677e-19,-0.0007971939048729837,4.665843043039713e-19,-3.1123093831136746e-20,-2.1014058172815107e-20,3.1713597805987184e-35,0.0001594387722434476,-4.856388362291336e-20,-2.6551890202189845e-20,0.0003401360590942204,6.776263578034403e-20,-0.0001360544265480712,-5.232862531556748e-05,-7.337072646299749e-21,3.79232866780048e-21,4.664439364392237e-22,-4.856388362291336e-20,2.093144939863123e-05,-1.6940658945086007e-21,0.00012400794366840273,8.639736061993863e-20,1.4568966692773966e-19,-6.200397183420137e-05,-5.720226566133031e-21,-7.552438186260718e-23,-2.964615315390051e-21,-2.6551890202189845e-20,-1.6940658945086007e-21,4.76953618999687e-06,12.0,6.0,15.0,0.031655203551054,-0.00414377311244607,-0.007371794898062944,-0.003402418689802289,0.00015262515807989985,0.00036630037357099354,0.00016025641525629908,0.0004960317746736109,0.00029761905898340046,0.00010212418419541791,-0.00414377311244607,0.001455488963983953,0.00036630037357099354,0.00016025641525629908,-9.157509339274839e-05,-6.660006329184398e-05,-2.9137529054423794e-05,-5.929064677669709e-19,-1.4399560103323106e-19,-1.1350241493207625e-19,-0.007371794898062944,0.00036630037357099354,0.005676892586052418,0.00029761905898340046,-4.480405693317575e-19,-0.00014652014942839742,-7.623296525288703e-21,-0.0007440476329065859,-0.0001190476177725941,-2.303929616531697e-19,-0.003402418689802289,0.00016025641525629908,0.00029761905898340046,0.000941690756008029,-2.0806179930062288e-19,-8.16786571168416e-21,-2.2893773348187096e-05,-7.91160464092735e-19,-4.251700738677755e-05,-4.7134239139268175e-05,0.00015262515807989985,-9.157509339274839e-05,-4.480405693317575e-19,-2.0806179930062288e-19,8.325007911480498e-06,1.277240617334537e-20,7.794640042154387e-21,5.809644224894516e-20,1.2472877934308809e-20,9.507927384588475e-21,0.00036630037357099354,-6.660006329184398e-05,-0.00014652014942839742,-8.16786571168416e-21,1.277240617334537e-20,2.6640027499524876e-05,7.299687152227906e-22,-1.8461764927801464e-20,1.8849848748304864e-21,-1.6799958913099363e-23,0.00016025641525629908,-2.9137529054423794e-05,-7.623296525288703e-21,-2.2893773348187096e-05,7.794640042154387e-21,7.299687152227906e-22,4.162503955740249e-06,6.932633480346058e-35,3.7908017864976576e-22,8.470329472543003e-22,0.0004960317746736109,-5.929064677669709e-19,-0.0007440476329065859,-7.91160464092735e-19,5.809644224894516e-20,-1.8461764927801464e-20,6.932633480346058e-35,0.00014880952949170023,7.365522489492744e-20,4.3358742989672596e-20,0.00029761905898340046,-1.4399560103323106e-19,-0.0001190476177725941,-4.251700738677755e-05,1.2472877934308809e-20,1.8849848748304864e-21,3.7908017864976576e-22,7.365522489492744e-20,1.70068033185089e-05,2.117582368135751e-21,0.00010212418419541791,-1.1350241493207625e-19,-2.303929616531697e-19,-4.7134239139268175e-05,9.507927384588475e-21,-1.6799958913099363e-23,8.470329472543003e-22,4.3358742989672596e-20,2.117582368135751e-21,3.3667313346086303e-06,12.0,6.0,16.0,0.029860006645321846,-0.003893624758347869,-0.006927470676600933,-0.003017152426764369,0.0001430860866094008,0.00034340660204179585,0.00014140272105578333,0.0004650297632906586,0.00026260505546815693,8.510348561685532e-05,-0.003893624758347869,0.001366127748042345,0.00034340660204179585,0.00014140272105578333,-8.585165051044896e-05,-6.243756070034578e-05,-2.5709585315780714e-05,1.695854931077188e-19,4.489274620447792e-20,5.251604272976662e-20,-0.006927470676600933,0.00034340660204179585,0.005328651983290911,0.00026260505546815693,2.4050770033407397e-19,-0.00013736264372710139,3.3881317890172014e-21,-0.0006975446594879031,-0.0001050420178216882,9.825582188149884e-20,-0.003017152426764369,0.00014140272105578333,0.00026260505546815693,0.0007791738607920706,7.417393176248355e-20,-1.9572599020213423e-20,-1.885369601950515e-05,2.307411271428721e-19,-3.501400715322234e-05,-3.6472923966357484e-05,0.0001430860866094008,-8.585165051044896e-05,2.4050770033407397e-19,7.417393176248355e-20,7.804695087543223e-06,-1.1345980866818123e-20,1.6304025572381176e-36,-2.7232708313935003e-20,-5.592171090932866e-21,-4.012900336326223e-21,0.00034340660204179585,-6.243756070034578e-05,-0.00013736264372710139,-1.9572599020213423e-20,-1.1345980866818123e-20,2.4975024643936194e-05,-1.88079096131566e-37,5.198971352211281e-20,7.829039123409229e-21,-1.504632769052528e-36,0.00014140272105578333,-2.5709585315780714e-05,3.3881317890172014e-21,-1.885369601950515e-05,1.6304025572381176e-36,-1.88079096131566e-37,3.4279446481377818e-06,9.027796614315168e-36,-5.293955920339377e-22,-1.164670302474663e-21,0.0004650297632906586,1.695854931077188e-19,-0.0006975446594879031,2.307411271428721e-19,-2.7232708313935003e-20,5.198971352211281e-20,9.027796614315168e-36,0.00013950893480796367,1.5299442136901302e-20,-1.793264883234169e-20,0.00026260505546815693,4.489274620447792e-20,-0.0001050420178216882,-3.501400715322234e-05,-5.592171090932866e-21,7.829039123409229e-21,-5.293955920339377e-22,1.5299442136901302e-20,1.4005602679389995e-05,-1.0587911840678754e-21,8.510348561685532e-05,5.251604272976662e-20,9.825582188149884e-20,-3.6472923966357484e-05,-4.012900336326223e-21,-1.504632769052528e-36,-1.164670302474663e-21,-1.793264883234169e-20,-1.0587911840678754e-21,2.431528173474362e-06,12.0,7.0,3.0,0.10233334451913834,-0.015894819051027298,-0.02491605654358864,-0.04635988920927048,0.0006541077746078372,0.0013736264081671834,0.002747252816334367,0.0016534391324967146,0.004464285913854837,0.0059523810632526875,-0.015894819051027298,0.005898863077163696,0.0013736264081671834,0.002747252816334367,-0.0003924646880477667,-0.00024975024280138314,-0.0004995004856027663,1.463672932855431e-18,2.3852447794681098e-18,5.0630530018385685e-18,-0.02491605654358864,0.0013736264081671834,0.016903236508369446,0.004464285913854837,-5.421010862427522e-20,-0.0004578754596877843,2.710505431213761e-18,-0.0019841270986944437,-0.0014880952658131719,1.8910500238374886e-17,-0.04635988920927048,0.002747252816334367,0.004464285913854837,0.10588370263576508,-3.0447735111434438e-19,1.2258762911296054e-18,-0.002747252816334367,7.37257477290143e-18,-0.004464285913854837,-0.0357142873108387,0.0006541077746078372,-0.0003924646880477667,-5.421010862427522e-20,-3.0447735111434438e-19,3.567860767361708e-05,-3.3881317890172014e-21,3.7692966152816365e-20,3.218725199566341e-20,-7.792703114739563e-20,1.793437298693098e-19,0.0013736264081671834,-0.00024975024280138314,-0.0004578754596877843,1.2258762911296054e-18,-3.3881317890172014e-21,8.325008093379438e-05,1.0174609108912073e-19,-4.0657581468206416e-19,-3.1170812458958252e-19,-4.2320276537983943e-19,0.002747252816334367,-0.0004995004856027663,2.710505431213761e-18,-0.002747252816334367,3.7692966152816365e-20,1.0174609108912073e-19,0.0004995004856027663,-4.3012704258873254e-19,-6.321689574333183e-19,-5.732129620830661e-18,0.0016534391324967146,1.463672932855431e-18,-0.0019841270986944437,7.37257477290143e-18,3.218725199566341e-20,-4.0657581468206416e-19,-4.3012704258873254e-19,0.0003306878206785768,-4.607859233063394e-19,-1.734723475976807e-18,0.004464285913854837,2.3852447794681098e-18,-0.0014880952658131719,-0.004464285913854837,-7.792703114739563e-20,-3.1170812458958252e-19,-6.321689574333183e-19,-4.607859233063394e-19,0.0014880952658131719,-5.4991475838602e-18,0.0059523810632526875,5.0630530018385685e-18,1.8910500238374886e-17,-0.0357142873108387,1.793437298693098e-19,-4.2320276537983943e-19,-5.732129620830661e-18,-1.734723475976807e-18,-5.4991475838602e-18,0.01785714365541935,12.0,7.0,4.0,0.08340637385845184,-0.012333202175796032,-0.019356684759259224,-0.029601648449897766,0.0004905808600597084,0.001030219835229218,0.0016483516665175557,0.0012400794075801969,0.0026785715017467737,0.0029761905316263437,-0.012333202175796032,0.0044990722090005875,0.001030219835229218,0.0016483516665175557,-0.000294348516035825,-0.00018731268937699497,-0.00029970030300319195,-2.6566714829730444e-20,4.542908494377847e-19,9.292277133745867e-19,-0.019356684759259224,0.001030219835229218,0.012900641188025475,0.0026785715017467737,-3.1170812458958252e-19,-0.00034340660204179585,-1.0512305593986847e-19,-0.0014880952658131719,-0.0008928571478463709,2.7908269434393446e-18,-0.029601648449897766,0.0016483516665175557,0.0026785715017467737,0.04056776687502861,-4.0657581468206416e-19,3.331924866394223e-19,-0.001098901149816811,1.7084225446176476e-18,-0.0017857142956927419,-0.008928571827709675,0.0004905808600597084,-0.000294348516035825,-3.1170812458958252e-19,-4.0657581468206416e-19,2.6758954845718108e-05,2.202285662861181e-20,2.710505431213761e-20,2.2544390773652225e-20,6.202237391426681e-21,6.998689213575644e-20,0.001030219835229218,-0.00018731268937699497,-0.00034340660204179585,3.331924866394223e-19,2.202285662861181e-20,6.243756070034578e-05,6.776263578034403e-21,-7.80939148359782e-20,-1.1247428112946112e-19,-2.5694937549933444e-20,0.0016483516665175557,-0.00029970030300319195,-1.0512305593986847e-19,-0.001098901149816811,2.710505431213761e-20,6.776263578034403e-21,0.00019980019715148956,2.759205043542967e-20,-1.1256631789730471e-19,-9.809448030302037e-19,0.0012400794075801969,-2.6566714829730444e-20,-0.0014880952658131719,1.7084225446176476e-18,2.2544390773652225e-20,-7.80939148359782e-20,2.759205043542967e-20,0.00024801588733680546,-1.9430406672915557e-19,-4.932860046699127e-19,0.0026785715017467737,4.542908494377847e-19,-0.0008928571478463709,-0.0017857142956927419,6.202237391426681e-21,-1.1247428112946112e-19,-1.1256631789730471e-19,-1.9430406672915557e-19,0.0005952381179668009,2.4519626990594964e-20,0.0029761905316263437,9.292277133745867e-19,2.7908269434393446e-18,-0.008928571827709675,6.998689213575644e-20,-2.5694937549933444e-20,-9.809448030302037e-19,-4.932860046699127e-19,2.4519626990594964e-20,0.0029761905316263437,12.0,7.0,5.0,0.0705019161105156,-0.010086342692375183,-0.015842491760849953,-0.020584773272275925,0.0003924646880477667,0.0008241758332587779,0.001098901149816811,0.0009920635493472219,0.0017857142956927419,0.001700680237263441,-0.010086342692375183,0.003639217931777239,0.0008241758332587779,0.001098901149816811,-0.00023547880118712783,-0.00014985015150159597,-0.00019980019715148956,1.3075251180456068e-18,7.189617103860573e-19,-1.4492213637710936e-18,-0.015842491760849953,0.0008241758332587779,0.010439560748636723,0.0017857142956927419,8.140702134343685e-19,-0.00027472528745420277,9.089708873537757e-19,-0.0011904762359336019,-0.0005952381179668009,-7.261192421879327e-18,-0.020584773272275925,0.001098901149816811,0.0017857142956927419,0.020496467128396034,-1.7022777300397209e-19,9.058138232989963e-20,-0.0005494505749084055,-3.6645081345125e-18,-0.0008928571478463709,-0.003401360474526882,0.0003924646880477667,-0.00023547880118712783,8.140702134343685e-19,-1.7022777300397209e-19,2.1407164240372367e-05,-3.656009060513671e-20,-9.241598653359842e-21,-8.152105336075611e-20,-2.805037958061794e-20,7.79959908686187e-20,0.0008241758332587779,-0.00014985015150159597,-0.00027472528745420277,9.058138232989963e-20,-3.656009060513671e-20,4.995004928787239e-05,-5.799839549696349e-20,-3.3512728147922945e-20,-5.977363495142739e-20,1.0171876827951234e-19,0.001098901149816811,-0.00019980019715148956,9.089708873537757e-19,-0.0005494505749084055,-9.241598653359842e-21,-5.799839549696349e-20,9.990009857574478e-05,-7.564907913800116e-20,-3.8988841517608716e-20,8.640444981628216e-20,0.0009920635493472219,1.3075251180456068e-18,-0.0011904762359336019,-3.6645081345125e-18,-8.152105336075611e-20,-3.3512728147922945e-20,-7.564907913800116e-20,0.00019841270113829523,3.791730011988016e-20,9.89569608482141e-19,0.0017857142956927419,7.189617103860573e-19,-0.0005952381179668009,-0.0008928571478463709,-2.805037958061794e-20,-5.977363495142739e-20,-3.8988841517608716e-20,3.791730011988016e-20,0.00029761905898340046,3.8020883812087113e-19,0.001700680237263441,-1.4492213637710936e-18,-7.261192421879327e-18,-0.003401360474526882,7.79959908686187e-20,1.0171876827951234e-19,8.640444981628216e-20,9.89569608482141e-19,3.8020883812087113e-19,0.0008503401186317205,12.0,7.0,6.0,0.06110093742609024,-0.008536106906831264,-0.013414660468697548,-0.015158948488533497,0.0003270538873039186,0.0006868132040835917,0.0007849293760955334,0.0008267195662483573,0.0012755101779475808,0.0010629252064973116,-0.008536106906831264,0.003056467277929187,0.0006868132040835917,0.0007849293760955334,-0.00019623234402388334,-0.00012487512140069157,-0.00014271443069446832,4.6085871520024405e-19,-2.3672841551289576e-19,-3.1230840956011226e-18,-0.013414660468697548,0.0006868132040835917,0.008770495653152466,0.0012755101779475808,-3.0049400471345845e-20,-0.00022893772984389216,-1.2187759795466034e-18,-0.0009920635493472219,-0.00042517005931586027,-7.467696407441966e-18,-0.015158948488533497,0.0007849293760955334,0.0012755101779475808,0.011909667402505875,-2.9000448212923376e-19,-1.5393114654406221e-18,-0.00031397174461744726,-3.608860385983608e-18,-0.0005102040595375001,-0.0015943878097459674,0.0003270538873039186,-0.00019623234402388334,-3.0049400471345845e-20,-2.9000448212923376e-19,1.783930383680854e-05,1.2648827490093221e-20,1.6838143479091984e-20,-1.7429367994636776e-21,-4.8483483121401626e-21,4.0355069239733556e-20,0.0006868132040835917,-0.00012487512140069157,-0.00022893772984389216,-1.5393114654406221e-18,1.2648827490093221e-20,4.162504046689719e-05,6.436722092452724e-20,-1.9546255902643023e-19,-4.323025211373985e-20,2.443341344501677e-19,0.0007849293760955334,-0.00014271443069446832,-1.2187759795466034e-18,-0.00031397174461744726,1.6838143479091984e-20,6.436722092452724e-20,5.7085770095000044e-05,7.730674908555743e-20,1.6507783698309643e-19,7.187305134048488e-19,0.0008267195662483573,4.6085871520024405e-19,-0.0009920635493472219,-3.608860385983608e-18,-1.7429367994636776e-21,-1.9546255902643023e-19,7.730674908555743e-20,0.0001653439103392884,-2.122453686461864e-19,7.004286770630185e-19,0.0012755101779475808,-2.3672841551289576e-19,-0.00042517005931586027,-0.0005102040595375001,-4.8483483121401626e-21,-4.323025211373985e-20,1.6507783698309643e-19,-2.122453686461864e-19,0.0001700680295471102,6.983572100140325e-19,0.0010629252064973116,-3.1230840956011226e-18,-7.467696407441966e-18,-0.0015943878097459674,4.0355069239733556e-20,2.443341344501677e-19,7.187305134048488e-19,7.004286770630185e-19,6.983572100140325e-19,0.0003188775444868952,12.0,7.0,7.0,0.05393313616514206,-0.007400762289762497,-0.011634942144155502,-0.011634942144155502,0.00028033190756104887,0.00058869703207165,0.00058869703207165,0.0007086168043315411,0.0009566326625645161,0.0007086168043315411,-0.007400762289762497,0.0026351199485361576,0.00058869703207165,0.00058869703207165,-0.00016819914162624627,-0.00010703581938287243,-0.00010703581938287243,7.299521489923197e-19,6.549169929651977e-19,5.995901388151876e-19,-0.011634942144155502,0.00058869703207165,0.0075631216168403625,0.0009566326625645161,4.0609374933070474e-19,-0.00019623234402388334,6.30885173122636e-19,-0.0008503401186317205,-0.0003188775444868952,-1.3129216185125086e-19,-0.011634942144155502,0.00058869703207165,0.0009566326625645161,0.0075631216168403625,3.3117620804693017e-19,4.532242000378976e-19,-0.00019623234402388334,8.885044227464707e-20,-0.0003188775444868952,-0.0008503401186317205,0.00028033190756104887,-0.00016819914162624627,4.0609374933070474e-19,3.3117620804693017e-19,1.5290832379832864e-05,-1.5754830913505886e-20,-2.4590507644920235e-20,-3.460569223104692e-20,-2.9363696824107795e-20,-1.4020066763507396e-20,0.00058869703207165,-0.00010703581938287243,-0.00019623234402388334,4.532242000378976e-19,-1.5754830913505886e-20,3.567860767361708e-05,-4.304979103088404e-20,-6.515412171865805e-20,-3.296585190310029e-20,-1.4710460460195136e-20,0.00058869703207165,-0.00010703581938287243,6.30885173122636e-19,-0.00019623234402388334,-2.4590507644920235e-20,-4.304979103088404e-20,3.567860767361708e-05,-3.313842568956843e-20,-4.631054346791661e-20,-8.386951605502219e-20,0.0007086168043315411,7.299521489923197e-19,-0.0008503401186317205,8.885044227464707e-20,-3.460569223104692e-20,-6.515412171865805e-20,-3.313842568956843e-20,0.00014172335795592517,-1.791678118174745e-19,9.968838884251558e-20,0.0009566326625645161,6.549169929651977e-19,-0.0003188775444868952,-0.0003188775444868952,-2.9363696824107795e-20,-3.296585190310029e-20,-4.631054346791661e-20,-1.791678118174745e-19,0.00010629251482896507,-1.245509888257646e-19,0.0007086168043315411,5.995901388151876e-19,-1.3129216185125086e-19,-0.0008503401186317205,-1.4020066763507396e-20,-1.4710460460195136e-20,-8.386951605502219e-20,9.968838884251558e-20,-1.245509888257646e-19,0.00014172335795592517,12.0,7.0,8.0,0.04828133061528206,-0.006532901432365179,-0.010273580439388752,-0.009214743971824646,0.0002452904300298542,0.000515109917614609,0.0004578754596877843,0.0006200397037900984,0.0007440476329065859,0.0004960317746736109,-0.006532901432365179,0.002316136145964265,0.000515109917614609,0.0004578754596877843,-0.0001471742580179125,-9.365634468849748e-05,-8.325008093379438e-05,4.3847210589726205e-19,1.402836926578847e-19,3.390197414103111e-19,-0.010273580439388752,0.000515109917614609,0.006648733280599117,0.0007440476329065859,2.709654469158597e-19,-0.00017170330102089792,-6.123359580788641e-20,-0.0007440476329065859,-0.00024801588733680546,-4.9499130391065715e-34,-0.009214743971824646,0.0004578754596877843,0.0007440476329065859,0.005112942773848772,3.41523229383597e-19,-6.763901105285856e-20,-0.00013082155783195049,-8.132306854568673e-34,-0.00021258502965793014,-0.0004960317746736109,0.0002452904300298542,-0.0001471742580179125,2.709654469158597e-19,3.41523229383597e-19,1.3379477422859054e-05,-1.7329904372738676e-21,-1.9843174322223493e-20,-3.432971763683538e-20,-1.584448469032699e-20,-2.6407474483878316e-20,0.000515109917614609,-9.365634468849748e-05,-0.00017170330102089792,-6.763901105285856e-20,-1.7329904372738676e-21,3.121878035017289e-05,8.624269077008829e-21,-2.028175129911279e-20,6.735176369942029e-21,-9.317547828567226e-37,0.0004578754596877843,-8.325008093379438e-05,-6.123359580788641e-20,-0.00013082155783195049,-1.9843174322223493e-20,8.624269077008829e-21,2.3785738449078053e-05,4.34226723537384e-35,3.9428888678789856e-21,-1.3867863915210505e-20,0.0006200397037900984,4.3847210589726205e-19,-0.0007440476329065859,-8.132306854568673e-34,-3.432971763683538e-20,-2.028175129911279e-20,4.34226723537384e-35,0.00012400794366840273,3.3367618228696214e-35,6.775758363893425e-35,0.0007440476329065859,1.402836926578847e-19,-0.00024801588733680546,-0.00021258502965793014,-1.584448469032699e-20,6.735176369942029e-21,3.9428888678789856e-21,3.3367618228696214e-35,7.086167897796258e-05,2.673441782740439e-35,0.0004960317746736109,3.390197414103111e-19,-4.9499130391065715e-34,-0.0004960317746736109,-2.6407474483878316e-20,-9.317547828567226e-37,-1.3867863915210505e-20,6.775758363893425e-35,2.673441782740439e-35,7.086167897796258e-05,12.0,7.0,9.0,0.043707769364118576,-0.005847723688930273,-0.009198209270834923,-0.007480020169168711,0.00021803592971991748,0.0004578754596877843,0.00036630037357099354,0.0005511463969014585,0.0005952381179668009,0.0003607503604143858,-0.005847723688930273,0.0020661877933889627,0.0004578754596877843,0.00036630037357099354,-0.00013082155783195049,-8.325008093379438e-05,-6.660006329184398e-05,3.897530031248728e-19,1.8586107299091803e-19,2.404950082815501e-19,-0.009198209270834923,0.0004578754596877843,0.005932030733674765,0.0005952381179668009,3.439353397485899e-19,-0.00015262515807989985,3.3626656121430786e-20,-0.0006613756413571537,-0.00019841270113829523,-5.451686578079489e-34,-0.007480020169168711,0.00036630037357099354,0.0005952381179668009,0.0036222210619598627,2.575775028522948e-19,3.212892606895562e-20,-9.157509339274839e-05,-6.692488364462089e-34,-0.00014880952949170023,-0.0003092146071139723,0.00021803592971991748,-0.00013082155783195049,3.439353397485899e-19,2.575775028522948e-19,1.1892869224539027e-05,-2.0025667813693737e-20,-1.2781284632439676e-20,-3.05153034890178e-20,-1.2675587267585452e-20,-1.8656709749312618e-20,0.0004578754596877843,-8.325008093379438e-05,-0.00015262515807989985,3.212892606895562e-20,-2.0025667813693737e-20,2.775002758426126e-05,-1.756906781410447e-21,-1.8028222120421376e-20,-7.488646223407989e-21,3.116605735873771e-35,0.00036630037357099354,-6.660006329184398e-05,3.3626656121430786e-20,-9.157509339274839e-05,-1.2781284632439676e-20,-1.756906781410447e-21,1.6650015822960995e-05,3.292861872832772e-35,-5.990916978726391e-21,-8.817800259777827e-21,0.0005511463969014585,3.897530031248728e-19,-0.0006613756413571537,-6.692488364462089e-34,-3.05153034890178e-20,-1.8028222120421376e-20,3.292861872832772e-35,0.00011022927355952561,3.505969298512571e-35,4.787029413126246e-35,0.0005952381179668009,1.8586107299091803e-19,-0.00019841270113829523,-0.00014880952949170023,-1.2675587267585452e-20,-7.488646223407989e-21,-5.990916978726391e-21,3.505969298512571e-35,4.960317528457381e-05,2.1633395104293986e-35,0.0003607503604143858,2.404950082815501e-19,-5.451686578079489e-34,-0.0003092146071139723,-1.8656709749312618e-20,3.116605735873771e-35,-8.817800259777827e-21,4.787029413126246e-35,2.1633395104293986e-35,3.865182588924654e-05,12.0,7.0,10.0,0.03992931544780731,-0.005292921327054501,-0.008327089250087738,-0.006193806417286396,0.00019623234402388334,0.00041208791662938893,0.00029970030300319195,0.0004960317746736109,0.0004870129923801869,0.00027056277031078935,-0.005292921327054501,0.0018650180427357554,0.00041208791662938893,0.00029970030300319195,-0.00011773940059356391,-7.492507575079799e-05,-5.4490963520947844e-05,-6.45808661671132e-20,-6.246271381983661e-19,-7.420008617947671e-19,-0.008327089250087738,0.00041208791662938893,0.005355061497539282,0.0004870129923801869,-2.025965394453026e-19,-0.00013736264372710139,-6.793204236979489e-19,-0.0005952381179668009,-0.00016233765927609056,-1.1926223897340549e-18,-0.006193806417286396,0.00029970030300319195,0.0004870129923801869,0.0026615746319293976,-7.192589784186936e-19,-4.337291039636713e-19,-6.660006329184398e-05,-2.181517846016965e-18,-0.00010822511103469878,-0.000202922077733092,0.00019623234402388334,-0.00011773940059356391,-2.025965394453026e-19,-7.192589784186936e-19,1.0703582120186184e-05,3.8894266662377776e-21,1.695223624248748e-20,-1.7164858010624122e-21,3.6262577003256113e-20,5.113278025690202e-20,0.00041208791662938893,-7.492507575079799e-05,-0.00013736264372710139,-4.337291039636713e-19,3.8894266662377776e-21,2.4975024643936194e-05,1.4338818873850144e-20,-8.465909872379527e-20,8.133358386091348e-21,2.898820529362274e-20,0.00029970030300319195,-5.4490963520947844e-05,-6.793204236979489e-19,-6.660006329184398e-05,1.695223624248748e-20,1.4338818873850144e-20,1.2109103408874944e-05,6.677089792468123e-20,3.6422416731934915e-20,1.6093625997831706e-20,0.0004960317746736109,-6.45808661671132e-20,-0.0005952381179668009,-2.181517846016965e-18,-1.7164858010624122e-21,-8.465909872379527e-20,6.677089792468123e-20,9.920635056914762e-05,9.110089699102268e-20,1.551989223249522e-19,0.0004870129923801869,-6.246271381983661e-19,-0.00016233765927609056,-0.00010822511103469878,3.6262577003256113e-20,8.133358386091348e-21,3.6422416731934915e-20,9.110089699102268e-20,3.607503458624706e-05,1.6940658945086007e-20,0.00027056277031078935,-7.420008617947671e-19,-1.1926223897340549e-18,-0.000202922077733092,5.113278025690202e-20,2.898820529362274e-20,1.6093625997831706e-20,1.551989223249522e-19,1.6940658945086007e-20,2.2546897525899112e-05,12.0,7.0,11.0,0.036754414439201355,-0.004834451247006655,-0.0076069761998951435,-0.005213536322116852,0.0001783930347301066,0.00037462537875398993,0.00024975024280138314,0.00045093795051798224,0.000405844155466184,0.00020812520233448595,-0.004834451247006655,0.0016995990881696343,0.00037462537875398993,0.00024975024280138314,-0.00010703581938287243,-6.81137025821954e-05,-4.5409135054796934e-05,3.1888882778836707e-19,1.2366681029912785e-19,9.147955830346444e-20,-0.0076069761998951435,0.00037462537875398993,0.00488053634762764,0.000405844155466184,2.548969465291343e-19,-0.00012487512140069157,3.7269449679189215e-20,-0.0005411255406215787,-0.00013528138515539467,7.792703114739563e-20,-0.005213536322116852,0.00024975024280138314,0.000405844155466184,0.002013958292081952,1.8242791155730498e-19,-1.572147227036527e-20,-4.995004928787239e-05,-4.577586682920632e-34,-8.116882963804528e-05,-0.0001387501397402957,0.0001783930347301066,-0.00010703581938287243,2.548969465291343e-19,1.8242791155730498e-19,9.730529200169258e-06,-1.1642078406575862e-20,-1.0146115806425176e-20,-2.4967067078500796e-20,-8.45629971387228e-21,-1.0171605732430167e-20,0.00037462537875398993,-6.81137025821954e-05,-0.00012487512140069157,-1.572147227036527e-20,-1.1642078406575862e-20,2.2704567527398467e-05,5.321440086712767e-22,-1.475036384681515e-20,3.957076550192047e-21,8.998495956177734e-23,0.00024975024280138314,-4.5409135054796934e-05,3.7269449679189215e-20,-4.995004928787239e-05,-1.0146115806425176e-20,5.321440086712767e-22,9.081827556656208e-06,2.4916109441787226e-35,-8.627439666759093e-21,4.235164736271502e-21,0.00045093795051798224,3.1888882778836707e-19,-0.0005411255406215787,-4.577586682920632e-34,-2.4967067078500796e-20,-1.475036384681515e-20,2.4916109441787226e-35,9.018759010359645e-05,1.8020811969390124e-35,2.6656262950314687e-35,0.000405844155466184,1.2366681029912785e-19,-0.00013528138515539467,-8.116882963804528e-05,-8.45629971387228e-21,3.957076550192047e-21,-8.627439666759093e-21,1.8020811969390124e-35,2.7056277758674696e-05,-1.5246593050577406e-20,0.00020812520233448595,9.147955830346444e-20,7.792703114739563e-20,-0.0001387501397402957,-1.0171605732430167e-20,8.998495956177734e-23,4.235164736271502e-21,2.6656262950314687e-35,-1.5246593050577406e-20,1.387501379213063e-05,12.0,7.0,12.0,0.03404868766665459,-0.00444919103756547,-0.007001678925007582,-0.00444919103756547,0.0001635269436519593,0.00034340660204179585,0.00021132713300175965,0.00041335978312417865,0.00034340660204179585,0.0001635269436519593,-0.00444919103756547,0.001561167766340077,0.00034340660204179585,0.00021132713300175965,-9.811617201194167e-05,-6.243756070034578e-05,-3.8423117075581104e-05,2.923147458813061e-19,6.606856988583543e-20,1.0842021724855044e-19,-0.007001678925007582,0.00034340660204179585,0.0044833640567958355,0.00034340660204179585,2.316619601104026e-19,-0.00011446886492194608,1.0164395367051604e-20,-0.0004960317746736109,-0.00011446886492194608,-3.3881317890172014e-21,-0.00444919103756547,0.00021132713300175965,0.00034340660204179585,0.001561167766340077,1.507034541896679e-19,1.4895068755223646e-20,-3.8423117075581104e-05,-3.918332257603549e-34,-6.243756070034578e-05,-9.811617201194167e-05,0.0001635269436519593,-9.811617201194167e-05,2.316619601104026e-19,1.507034541896679e-19,8.91965191840427e-06,-9.688604148326657e-21,-6.81100516376163e-21,-2.2886476808969785e-20,-7.402793115319367e-21,-8.504667969280324e-21,0.00034340660204179585,-6.243756070034578e-05,-0.00011446886492194608,1.4895068755223646e-20,-9.688604148326657e-21,2.0812520233448595e-05,-3.7615561757644435e-21,-1.3521166994212816e-20,2.0095642123636895e-21,-1.1997969312097285e-23,0.00021132713300175965,-3.8423117075581104e-05,1.0164395367051604e-20,-3.8423117075581104e-05,-6.81100516376163e-21,-3.7615561757644435e-21,6.986021162447287e-06,2.1085174500401093e-35,1.7580035631259685e-21,-3.3881317890172014e-21,0.00041335978312417865,2.923147458813061e-19,-0.0004960317746736109,-3.918332257603549e-34,-2.2886476808969785e-20,-1.3521166994212816e-20,2.1085174500401093e-35,8.26719551696442e-05,1.6182556627021516e-35,2.065699006463483e-35,0.00034340660204179585,6.606856988583543e-20,-0.00011446886492194608,-6.243756070034578e-05,-7.402793115319367e-21,2.0095642123636895e-21,1.7580035631259685e-21,1.6182556627021516e-35,2.0812520233448595e-05,8.470329472543003e-22,0.0001635269436519593,1.0842021724855044e-19,-3.3881317890172014e-21,-9.811617201194167e-05,-8.504667969280324e-21,-1.1997969312097285e-23,-3.3881317890172014e-21,2.065699006463483e-35,8.470329472543003e-22,8.91965191840427e-06,12.0,7.0,13.0,0.03171500191092491,-0.004120879340916872,-0.006485730409622192,-0.0038416252937167883,0.00015094794798642397,0.0003169907140545547,0.0001811375404940918,0.000381562887923792,0.000294348516035825,0.00013082155783195049,-0.004120879340916872,0.0014436113415285945,0.0003169907140545547,0.0001811375404940918,-9.05687702470459e-05,-5.763467197539285e-05,-3.2934098271653056e-05,2.6982900415178842e-19,7.707999820014133e-20,6.098637220230962e-20,-0.006485730409622192,0.0003169907140545547,0.00414603715762496,0.000294348516035825,2.135262836741189e-19,-0.00010566356650087982,-6.776263578034403e-21,-0.0004578754596877843,-9.811617201194167e-05,-3.3881317890172014e-21,-0.0038416252937167883,0.0001811375404940918,0.000294348516035825,0.0012349144089967012,1.2672312634023765e-19,8.568940064434408e-21,-3.0189590688678436e-05,-3.192015649983314e-34,-4.9058086005970836e-05,-7.135721534723416e-05,0.00015094794798642397,-9.05687702470459e-05,2.135262836741189e-19,1.2672312634023765e-19,8.233524567913264e-06,-9.036158170033354e-21,-5.206359189836502e-21,-2.1125979587102653e-20,-6.4586581306599345e-21,-6.5396854799796186e-21,0.0003169907140545547,-5.763467197539285e-05,-0.00010566356650087982,8.568940064434408e-21,-9.036158170033354e-21,1.9211558537790552e-05,7.043276813336827e-22,-1.2481077039013314e-20,-3.685646198691364e-21,-4.8542177149540455e-23,0.0001811375404940918,-3.2934098271653056e-05,-6.776263578034403e-21,-3.0189590688678436e-05,-5.206359189836502e-21,7.043276813336827e-22,5.489016530191293e-06,1.22214276506759e-35,7.741273059179883e-22,1.6940658945086007e-21,0.000381562887923792,2.6982900415178842e-19,-0.0004578754596877843,-3.192015649983314e-34,-2.1125979587102653e-20,-1.2481077039013314e-20,1.22214276506759e-35,7.631257903994992e-05,1.7318091057578058e-35,1.6639062268845126e-35,0.000294348516035825,7.707999820014133e-20,-9.811617201194167e-05,-4.9058086005970836e-05,-6.4586581306599345e-21,-3.685646198691364e-21,7.741273059179883e-22,1.7318091057578058e-35,1.635269472899381e-05,8.470329472543003e-22,0.00013082155783195049,6.098637220230962e-20,-3.3881317890172014e-21,-7.135721534723416e-05,-6.5396854799796186e-21,-4.8542177149540455e-23,1.6940658945086007e-21,1.6639062268845126e-35,8.470329472543003e-22,5.946434612269513e-06,12.0,7.0,14.0,0.029681386426091194,-0.0038377437740564346,-0.006040685344487429,-0.0033506671898066998,0.00014016595378052443,0.000294348516035825,0.00015698587230872363,0.00035430840216577053,0.00025510202976875007,0.00010629251482896507,-0.0038377437740564346,0.0013425350189208984,0.000294348516035825,0.00015698587230872363,-8.409957081312314e-05,-5.3517909691436216e-05,-2.8542885047500022e-05,2.505555149335439e-19,5.336307567702092e-20,5.421010862427522e-20,-0.006040685344487429,0.000294348516035825,0.0038559655658900738,0.00025510202976875007,1.9512768012531697e-19,-9.811617201194167e-05,-1.7787691892340307e-20,-0.00042517005931586027,-8.50340147735551e-05,-1.0164395367051604e-20,-0.0033506671898066998,0.00015698587230872363,0.00025510202976875007,0.000993803609162569,1.0510432805381238e-19,6.895897805299152e-21,-2.4151671823346987e-05,-2.7502265316246526e-34,-3.924646807718091e-05,-5.3146257414482534e-05,0.00014016595378052443,-8.409957081312314e-05,1.9512768012531697e-19,1.0510432805381238e-19,7.645416189916432e-06,-7.85790724211119e-21,-4.243230151140677e-21,-1.9616980814368587e-20,-5.380663270125044e-21,-5.130173351260311e-21,0.000294348516035825,-5.3517909691436216e-05,-9.811617201194167e-05,6.895897805299152e-21,-7.85790724211119e-21,1.783930383680854e-05,5.017639023603844e-22,-1.1589571824724351e-20,-3.2447334867032417e-21,-9.25127160267079e-23,0.00015698587230872363,-2.8542885047500022e-05,-1.7787691892340307e-20,-2.4151671823346987e-05,-4.243230151140677e-21,5.017639023603844e-22,4.391213224153034e-06,1.0250963632150845e-35,2.143173470285002e-21,2.117582368135751e-22,0.00035430840216577053,2.505555149335439e-19,-0.00042517005931586027,-2.7502265316246526e-34,-1.9616980814368587e-20,-1.1589571824724351e-20,1.0250963632150845e-35,7.086167897796258e-05,1.5202113695390665e-35,1.3293358825494897e-35,0.00025510202976875007,5.336307567702092e-20,-8.50340147735551e-05,-3.924646807718091e-05,-5.380663270125044e-21,-3.2447334867032417e-21,2.143173470285002e-21,1.5202113695390665e-35,1.308215632889187e-05,2.117582368135751e-21,0.00010629251482896507,5.421010862427522e-20,-1.0164395367051604e-20,-5.3146257414482534e-05,-5.130173351260311e-21,-9.25127160267079e-23,2.117582368135751e-22,1.3293358825494897e-35,2.117582368135751e-21,4.088173682248453e-06,12.0,7.0,15.0,0.027893342077732086,-0.0035910517908632755,-0.005652854219079018,-0.0029482466634362936,0.00013082155783195049,0.00027472528745420277,0.00013736264372710139,0.0003306878206785768,0.00022321428696159273,8.753501606406644e-05,-0.0035910517908632755,0.001254697679542005,0.00027472528745420277,0.00013736264372710139,-7.849293615436181e-05,-4.995004928787239e-05,-2.4975024643936194e-05,2.3385179153516604e-19,3.3034284942917713e-20,2.795208725939191e-20,-0.005652854219079018,0.00027472528745420277,0.0036038614343851805,0.00022321428696159273,1.8700760994340188e-19,-9.157509339274839e-05,-1.4399560103323106e-20,-0.00039682540227659047,-7.440476474585012e-05,-1.6940658945086007e-20,-0.0029482466634362936,0.00013736264372710139,0.00022321428696159273,0.0008117189281620085,7.635557539165241e-20,-5.6324315223094704e-21,-1.9623234038590454e-05,-1.8972096557018963e-34,-3.188775372109376e-05,-4.0400776924798265e-05,0.00013082155783195049,-7.849293615436181e-05,1.8700760994340188e-19,7.635557539165241e-20,7.1357212618750054e-06,-7.667659740191828e-21,-2.836897548387968e-22,-1.8309182416528108e-20,-4.923749783162849e-21,-4.2328128453013375e-21,0.00027472528745420277,-4.995004928787239e-05,-9.157509339274839e-05,-5.6324315223094704e-21,-7.667659740191828e-21,1.6650015822960995e-05,-3.6214041938476494e-23,-1.0816933433811539e-20,2.3179630345072788e-21,-7.455832386541181e-23,0.00013736264372710139,-2.4975024643936194e-05,-1.4399560103323106e-20,-1.9623234038590454e-05,-2.836897548387968e-22,-3.6214041938476494e-23,3.5678606309375027e-06,8.600872226128027e-37,1.9320063364140398e-21,2.752857078576476e-21,0.0003306878206785768,2.3385179153516604e-19,-0.00039682540227659047,-1.8972096557018963e-34,-1.8309182416528108e-20,-1.0816933433811539e-20,8.600872226128027e-37,6.613756704609841e-05,1.0113981662588623e-35,1.1019980445146403e-35,0.00022321428696159273,3.3034284942917713e-20,-7.440476474585012e-05,-3.188775372109376e-05,-4.923749783162849e-21,2.3179630345072788e-21,1.9320063364140398e-21,1.0113981662588623e-35,1.0629251846694387e-05,2.541098841762901e-21,8.753501606406644e-05,2.795208725939191e-20,-1.6940658945086007e-20,-4.0400776924798265e-05,-4.2328128453013375e-21,-7.455832386541181e-23,2.752857078576476e-21,1.1019980445146403e-35,2.541098841762901e-21,2.885769617932965e-06,12.0,7.0,16.0,0.02630884014070034,-0.003374186111614108,-0.005311860237270594,-0.002614266937598586,0.0001226452150149271,0.0002575549588073045,0.00012120232713641599,0.0003100198518950492,0.00019695378432516009,7.294584793271497e-05,-0.003374186111614108,0.0011776563478633761,0.0002575549588073045,0.00012120232713641599,-7.358712900895625e-05,-4.682817234424874e-05,-2.2036787413526326e-05,1.8881343569348464e-19,4.828087799349512e-20,3.5575383784680614e-20,-0.005311860237270594,0.0002575549588073045,0.0033827233128249645,0.00019695378432516009,1.3444511585236158e-19,-8.585165051044896e-05,8.470329472543003e-22,-0.00037202381645329297,-6.565126386703923e-05,0.0,-0.002614266937598586,0.00012120232713641599,0.00019695378432516009,0.000671614776365459,8.934773291915629e-20,-0.0,-1.6160311133717187e-05,-2.2925278319115806e-34,-2.626050445542205e-05,-3.126250521745533e-05,0.0001226452150149271,-7.358712900895625e-05,1.3444511585236158e-19,8.934773291915629e-20,6.689738711429527e-06,0.0,-4.576529815830562e-21,-1.716485881841769e-20,-4.194128419173845e-21,-3.4396290328068125e-21,0.0002575549588073045,-4.682817234424874e-05,-8.585165051044896e-05,-0.0,0.0,1.5609390175086446e-05,0.0,0.0,0.0,0.0,0.00012120232713641599,-2.2036787413526326e-05,8.470329472543003e-22,-1.6160311133717187e-05,-4.576529815830562e-21,0.0,2.93823813990457e-06,1.1742683469485783e-35,-1.0587911840678754e-22,5.293955920339377e-22,0.0003100198518950492,1.8881343569348464e-19,-0.00037202381645329297,-2.2925278319115806e-34,-1.716485881841769e-20,0.0,1.1742683469485783e-35,6.200397183420137e-05,1.076149867923753e-35,8.825567677127134e-36,0.00019695378432516009,4.828087799349512e-20,-6.565126386703923e-05,-2.626050445542205e-05,-4.194128419173845e-21,0.0,-1.0587911840678754e-22,1.076149867923753e-35,8.753501788305584e-06,-2.117582368135751e-22,7.294584793271497e-05,3.5575383784680614e-20,0.0,-3.126250521745533e-05,-3.4396290328068125e-21,0.0,5.293955920339377e-22,8.825567677127134e-36,-2.117582368135751e-22,2.0841669083893066e-06,12.0,8.0,3.0,0.09186762571334839,-0.01404151413589716,-0.019764957949519157,-0.04099893197417259,0.0005723443464376032,0.0010683761211112142,0.0024038462433964014,0.0011574074160307646,0.0034722222480922937,0.0052083334885537624,-0.01404151413589716,0.005185786634683609,0.0010683761211112142,0.0024038462433964014,-0.00034340660204179585,-0.00019425019854679704,-0.0004370629321783781,7.910460546742612e-19,9.75781955236954e-19,6.938893903907228e-18,-0.019764957949519157,0.0010683761211112142,0.011434167623519897,0.0034722222480922937,5.241791842960252e-19,-0.0003052503161597997,1.6263032587282567e-19,-0.0011574074160307646,-0.0009920635493472219,-2.168404344971009e-19,-0.04099893197417259,0.0024038462433964014,0.0034722222480922937,0.09308226406574249,1.8249928690441065e-18,1.1580028389965734e-19,-0.0024038462433964014,-3.469012766313176e-33,-0.0034722222480922937,-0.03125,0.0005723443464376032,-0.00034340660204179585,5.241791842960252e-19,1.8249928690441065e-18,3.121878035017289e-05,-5.082197683525802e-21,-1.0204540122389422e-19,-6.161743992385369e-20,-6.575204405456318e-20,-5.231468111927707e-19,0.0010683761211112142,-0.00019425019854679704,-0.0003052503161597997,1.1580028389965734e-19,-5.082197683525802e-21,5.550005516852252e-05,-2.9719688621783552e-21,-3.235834913549118e-20,-3.351512567922964e-20,5.649957007641154e-21,0.0024038462433964014,-0.0004370629321783781,1.6263032587282567e-19,-0.0024038462433964014,-1.0204540122389422e-19,-2.9719688621783552e-21,0.0004370629321783781,2.1557211820512423e-34,-1.4907779871675686e-19,-1.1926223897340549e-18,0.0011574074160307646,7.910460546742612e-19,-0.0011574074160307646,-3.469012766313176e-33,-6.161743992385369e-20,-3.235834913549118e-20,2.1557211820512423e-34,0.0001653439103392884,1.2954627328733177e-34,9.271655672458136e-34,0.0034722222480922937,9.75781955236954e-19,-0.0009920635493472219,-0.0034722222480922937,-6.575204405456318e-20,-3.351512567922964e-20,-1.4907779871675686e-19,1.2954627328733177e-34,0.0009920635493472219,0.0,0.0052083334885537624,6.938893903907228e-18,-2.168404344971009e-19,-0.03125,-5.231468111927707e-19,5.649957007641154e-21,-1.1926223897340549e-18,9.271655672458136e-34,0.0,0.015625,12.0,8.0,4.0,0.07479014247655869,-0.01089171227067709,-0.015344550833106041,-0.026161858811974525,0.0004292582452762872,0.0008012820617295802,0.0014423077227547765,0.0008680555620230734,0.0020833334419876337,0.0026041667442768812,-0.01089171227067709,0.003954899497330189,0.0008012820617295802,0.0014423077227547765,-0.0002575549588073045,-0.00014568764891009778,-0.00026223776512779295,5.932845410056959e-19,5.782411758918651e-19,2.3129647035674605e-18,-0.015344550833106041,0.0008012820617295802,0.008724435232579708,0.0020833334419876337,5.219273918735027e-19,-0.00022893772984389216,2.473028985933176e-20,-0.0008680555620230734,-0.0005952381179668009,-5.085564308618893e-19,-0.026161858811974525,0.0014423077227547765,0.0020833334419876337,0.035670407116413116,1.0071547445219824e-18,8.807980074943174e-20,-0.000961538462433964,-1.872689784857579e-33,-0.0013888889225199819,-0.0078125,0.0004292582452762872,-0.0002575549588073045,5.219273918735027e-19,1.0071547445219824e-18,2.341408617212437e-05,-2.541098841762901e-20,-5.58959414867495e-20,-4.6213078327303136e-20,-4.194038027073704e-20,-1.829061253489372e-19,0.0008012820617295802,-0.00014568764891009778,-0.00022893772984389216,8.807980074943174e-20,-2.541098841762901e-20,4.162504046689719e-05,1.4663646399609896e-21,-2.4268761851618384e-20,-2.4314221242391855e-20,-3.658398109987915e-21,0.0014423077227547765,-0.00026223776512779295,2.473028985933176e-20,-0.000961538462433964,-5.58959414867495e-20,1.4663646399609896e-21,0.00017482518160250038,1.0928887812056552e-34,-2.256939036896208e-20,-1.984575732293316e-19,0.0008680555620230734,5.932845410056959e-19,-0.0008680555620230734,-1.872689784857579e-33,-4.6213078327303136e-20,-2.4268761851618384e-20,1.0928887812056552e-34,0.00012400794366840273,9.093310335358726e-35,3.1846056733870663e-34,0.0020833334419876337,5.782411758918651e-19,-0.0005952381179668009,-0.0013888889225199819,-4.194038027073704e-20,-2.4314221242391855e-20,-2.256939036896208e-20,9.093310335358726e-35,0.00039682540227659047,3.524517586908886e-19,0.0026041667442768812,2.3129647035674605e-18,-5.085564308618893e-19,-0.0078125,-1.829061253489372e-19,-3.658398109987915e-21,-1.984575732293316e-19,3.1846056733870663e-34,3.524517586908886e-19,0.0026041667442768812,12.0,8.0,5.0,0.06317155063152313,-0.008905678056180477,-0.01255341898649931,-0.018185287714004517,0.00034340660204179585,0.0006410256610251963,0.000961538462433964,0.0006944444612599909,0.0013888889225199819,0.0014880952658131719,-0.008905678056180477,0.003198884427547455,0.0006410256610251963,0.000961538462433964,-0.00020604395831469446,-0.00011655011621769518,-0.00017482518160250038,4.74627653484072e-19,3.4216977442988375e-19,1.1955089398791352e-18,-0.01255341898649931,0.0006410256610251963,0.007058913353830576,0.0013888889225199819,4.3280320451488887e-19,-0.00018315018678549677,3.30434937895809e-20,-0.0006944444612599909,-0.00039682540227659047,-2.1879085132641604e-33,-0.018185287714004517,0.000961538462433964,0.0013888889225199819,0.01802121475338936,6.2790830519442255e-19,-4.3318844449813983e-20,-0.000480769231216982,-1.1663645249717408e-33,-0.0006944444612599909,-0.0029761905316263437,0.00034340660204179585,-0.00020604395831469446,4.3280320451488887e-19,6.2790830519442255e-19,1.8731268937699497e-05,-1.959320421851909e-20,-2.4890292762311084e-20,-3.697046266184251e-20,-2.9576369483239154e-20,-9.506690491078767e-20,0.0006410256610251963,-0.00011655011621769518,-0.00018315018678549677,-4.3318844449813983e-20,-1.959320421851909e-20,3.330003164592199e-05,2.541098841762901e-21,-1.9415009804412134e-20,8.504662314725356e-21,1.0105742153174735e-34,0.000961538462433964,-0.00017482518160250038,3.30434937895809e-20,-0.000480769231216982,-2.4890292762311084e-20,2.541098841762901e-21,8.741259080125019e-05,4.4270876475690624e-35,-2.3298010472824853e-20,-7.488646384966702e-20,0.0006944444612599909,4.74627653484072e-19,-0.0006944444612599909,-1.1663645249717408e-33,-3.697046266184251e-20,-1.9415009804412134e-20,4.4270876475690624e-35,9.920635056914762e-05,4.923690675916729e-35,1.8763639164289938e-34,0.0013888889225199819,3.4216977442988375e-19,-0.00039682540227659047,-0.0006944444612599909,-2.9576369483239154e-20,8.504662314725356e-21,-2.3298010472824853e-20,4.923690675916729e-35,0.00019841270113829523,1.5931904267639001e-34,0.0014880952658131719,1.1955089398791352e-18,-2.1879085132641604e-33,-0.0029761905316263437,-9.506690491078767e-20,1.0105742153174735e-34,-7.488646384966702e-20,1.8763639164289938e-34,1.5931904267639001e-34,0.0007440476329065859,12.0,8.0,6.0,0.05471929535269737,-0.007535866927355528,-0.010626526549458504,-0.013388087972998619,0.0002861721732188016,0.0005341880605556071,0.0006868132040835917,0.0005787037080153823,0.0009920635493472219,0.0009300595265813172,-0.007535866927355528,0.002686549676582217,0.0005341880605556071,0.0006868132040835917,-0.00017170330102089792,-9.712509927339852e-05,-0.00012487512140069157,3.955230273371306e-19,1.814279277449108e-19,4.311075101085493e-19,-0.010626526549458504,0.0005341880605556071,0.00592966889962554,0.0009920635493472219,2.769483925876675e-19,-0.00015262515807989985,-8.736090971128927e-20,-0.0005787037080153823,-0.00028344671591185033,-2.95020996502244e-19,-0.013388087972998619,0.0006868132040835917,0.0009920635493472219,0.010470562614500523,4.671589363357542e-19,4.125696429488058e-20,-0.00027472528745420277,-9.297721341332659e-34,-0.00039682540227659047,-0.0013950893189758062,0.0002861721732188016,-0.00017170330102089792,2.769483925876675e-19,4.671589363357542e-19,1.5609390175086446e-05,-1.5404359779015032e-21,-2.1980169585360098e-20,-3.0808719961926847e-20,-2.1125979587102653e-20,-5.446541662787001e-20,0.0005341880605556071,-9.712509927339852e-05,-0.00015262515807989985,4.125696429488058e-20,-1.5404359779015032e-21,2.775002758426126e-05,-4.412627895251979e-22,-1.617917456774559e-20,-1.109429097060969e-20,-5.384579525526886e-36,0.0006868132040835917,-0.00012487512140069157,-8.736090971128927e-20,-0.00027472528745420277,-2.1980169585360098e-20,-4.412627895251979e-22,4.995004928787239e-05,4.257170168746441e-35,3.5915141758938235e-20,6.720482524179919e-20,0.0005787037080153823,3.955230273371306e-19,-0.0005787037080153823,-9.297721341332659e-34,-3.0808719961926847e-20,-1.617917456774559e-20,4.257170168746441e-35,8.26719551696442e-05,4.517933616255951e-35,1.07500014490904e-34,0.0009920635493472219,1.814279277449108e-19,-0.00028344671591185033,-0.00039682540227659047,-2.1125979587102653e-20,-1.109429097060969e-20,3.5915141758938235e-20,4.517933616255951e-35,0.00011337868636474013,1.1800840377077644e-19,0.0009300595265813172,4.311075101085493e-19,-2.95020996502244e-19,-0.0013950893189758062,-5.446541662787001e-20,-5.384579525526886e-36,6.720482524179919e-20,1.07500014490904e-34,1.1800840377077644e-19,0.00027901786961592734,12.0,8.0,7.0,0.04828133061528206,-0.006532901432365179,-0.009214743971824646,-0.010273580439388752,0.0002452904300298542,0.0004578754596877843,0.000515109917614609,0.0004960317746736109,0.0007440476329065859,0.0006200397037900984,-0.006532901432365179,0.002316136145964265,0.0004578754596877843,0.000515109917614609,-0.0001471742580179125,-8.325008093379438e-05,-9.365634468849748e-05,3.390197414103111e-19,1.402836926578847e-19,4.3847210589726205e-19,-0.009214743971824646,0.0004578754596877843,0.005112942773848772,0.0007440476329065859,3.340545380846733e-19,-0.00013082155783195049,-8.873938681506329e-21,-0.0004960317746736109,-0.00021258502965793014,-8.514082624131789e-34,-0.010273580439388752,0.000515109917614609,0.0007440476329065859,0.006648733280599117,2.8145368349272583e-19,-2.468520609256692e-21,-0.00017170330102089792,-5.292532908172805e-34,-0.00024801588733680546,-0.0007440476329065859,0.0002452904300298542,-0.0001471742580179125,3.340545380846733e-19,2.8145368349272583e-19,1.3379477422859054e-05,-1.8485231330921254e-20,-3.639944873744593e-21,-2.6407474483878316e-20,-1.584448469032699e-20,-3.432971763683538e-20,0.0004578754596877843,-8.325008093379438e-05,-0.00013082155783195049,-2.468520609256692e-21,-1.8485231330921254e-20,2.3785738449078053e-05,-2.0602892055033e-21,-1.3867863915210505e-20,3.9428888678789856e-21,5.036405546098091e-35,0.000515109917614609,-9.365634468849748e-05,-8.873938681506329e-21,-0.00017170330102089792,-3.639944873744593e-21,-2.0602892055033e-21,3.121878035017289e-05,5.29769238418922e-36,6.735176369942029e-21,-2.028175129911279e-20,0.0004960317746736109,3.390197414103111e-19,-0.0004960317746736109,-5.292532908172805e-34,-2.6407474483878316e-20,-1.3867863915210505e-20,5.29769238418922e-36,7.086167897796258e-05,2.673441782740439e-35,6.775758363893425e-35,0.0007440476329065859,1.402836926578847e-19,-0.00021258502965793014,-0.00024801588733680546,-1.584448469032699e-20,3.9428888678789856e-21,6.735176369942029e-21,2.673441782740439e-35,7.086167897796258e-05,3.3367618228696214e-35,0.0006200397037900984,4.3847210589726205e-19,-8.514082624131789e-34,-0.0007440476329065859,-3.432971763683538e-20,5.036405546098091e-35,-2.028175129911279e-20,6.775758363893425e-35,3.3367618228696214e-35,0.00012400794366840273,12.0,8.0,8.0,0.04320881515741348,-0.0057663689367473125,-0.008135238662362099,-0.008135238662362099,0.0002146291226381436,0.0004006410308647901,0.0004006410308647901,0.0004340277810115367,0.0005787037080153823,0.0004340277810115367,-0.0057663689367473125,0.0020357246976345778,0.0004006410308647901,0.0004006410308647901,-0.00012877747940365225,-7.284382445504889e-05,-7.284382445504889e-05,2.9664227050284796e-19,1.8086005532969607e-19,2.9664227050284796e-19,-0.008135238662362099,0.0004006410308647901,0.004494492895901203,0.0005787037080153823,2.8112955793957575e-19,-0.00011446886492194608,2.2197470901630058e-20,-0.0004340277810115367,-0.0001653439103392884,-5.6520913753278995e-34,-0.008135238662362099,0.0004006410308647901,0.0005787037080153823,0.004494492895901203,2.833742934774974e-19,2.2197470901630058e-20,-0.00011446886492194608,-5.6520913753278995e-34,-0.0001653439103392884,-0.0004340277810115367,0.0002146291226381436,-0.00012877747940365225,2.8112955793957575e-19,2.833742934774974e-19,1.1707043086062185e-05,-1.386392349819094e-20,-1.4272056351129165e-20,-2.3106539163651568e-20,-1.2323487823212025e-20,-2.3106539163651568e-20,0.0004006410308647901,-7.284382445504889e-05,-0.00011446886492194608,2.2197470901630058e-20,-1.386392349819094e-20,2.0812520233448595e-05,8.243135764790924e-23,-1.2134380925809192e-20,-6.471669665539522e-21,2.7950098817373566e-35,0.0004006410308647901,-7.284382445504889e-05,2.2197470901630058e-20,-0.00011446886492194608,-1.4272056351129165e-20,8.243135764790924e-23,2.0812520233448595e-05,2.7950098817373566e-35,-6.471669665539522e-21,-1.2134380925809192e-20,0.0004340277810115367,2.9664227050284796e-19,-0.0004340277810115367,-5.6520913753278995e-34,-2.3106539163651568e-20,-1.2134380925809192e-20,2.7950098817373566e-35,6.200397183420137e-05,2.6354612044028235e-35,4.560606701461315e-35,0.0005787037080153823,1.8086005532969607e-19,-0.0001653439103392884,-0.0001653439103392884,-1.2323487823212025e-20,-6.471669665539522e-21,-6.471669665539522e-21,2.6354612044028235e-35,4.724111931864172e-05,2.6354612044028235e-35,0.0004340277810115367,2.9664227050284796e-19,-5.6520913753278995e-34,-0.0004340277810115367,-2.3106539163651568e-20,2.7950098817373566e-35,-1.2134380925809192e-20,4.560606701461315e-35,2.6354612044028235e-35,6.200397183420137e-05,12.0,8.0,9.0,0.03910641744732857,-0.005161273758858442,-0.007282763719558716,-0.006602887995541096,0.000190781443961896,0.0003561253543011844,0.00032051283051259816,0.00038580247201025486,0.00046296295477077365,0.00031565656536258757,-0.005161273758858442,0.0018160081235691905,0.0003561253543011844,0.00032051283051259816,-0.00011446886492194608,-6.475006375694647e-05,-5.827505810884759e-05,2.6368201822475374e-19,8.600435289374791e-20,1.5307288720493192e-19,-0.007282763719558716,0.0003561253543011844,0.004009801894426346,0.00046296295477077365,2.3969184175615526e-19,-0.0001017501053865999,2.039224614996111e-20,-0.00038580247201025486,-0.00013227513409219682,-3.6344246579410422e-34,-0.006602887995541096,0.00032051283051259816,0.00046296295477077365,0.0031839110888540745,2.1026538260307e-19,1.6758648514168797e-20,-8.012820762814954e-05,-4.196762788275193e-34,-0.00011574073869269341,-0.00027056277031078935,0.000190781443961896,-0.00011446886492194608,2.3969184175615526e-19,2.1026538260307e-19,1.0406260116724297e-05,-1.0269573320642282e-20,-8.211390436864795e-21,-2.0539146641284564e-20,-9.858790097010907e-21,-1.632462103064854e-20,0.0003561253543011844,-6.475006375694647e-05,-0.0001017501053865999,1.6758648514168797e-20,-1.0269573320642282e-20,1.850001899583731e-05,-5.417566915334203e-21,-1.0786116109232537e-20,3.725134379417968e-21,1.385281492837087e-35,0.00032051283051259816,-5.827505810884759e-05,2.039224614996111e-20,-8.012820762814954e-05,-8.211390436864795e-21,-5.417566915334203e-21,1.4568764527211897e-05,1.9324861665537325e-35,2.351093072068448e-21,6.624483609669808e-21,0.00038580247201025486,2.6368201822475374e-19,-0.00038580247201025486,-4.196762788275193e-34,-2.0539146641284564e-20,-1.0786116109232537e-20,1.9324861665537325e-35,5.5114636779762805e-05,1.5893259029897942e-35,3.2220389121675804e-35,0.00046296295477077365,8.600435289374791e-20,-0.00013227513409219682,-0.00011574073869269341,-9.858790097010907e-21,3.725134379417968e-21,2.351093072068448e-21,1.5893259029897942e-35,3.3068783523049206e-05,1.5427315855914471e-35,0.00031565656536258757,1.5307288720493192e-19,-3.6344246579410422e-34,-0.00027056277031078935,-1.632462103064854e-20,1.385281492837087e-35,6.624483609669808e-21,3.2220389121675804e-35,1.5427315855914471e-35,3.382034628884867e-05,12.0,8.0,10.0,0.03571879491209984,-0.004671370144933462,-0.00659236591309309,-0.005466928705573082,0.00017170330102089792,0.00032051283051259816,0.00026223776512779295,0.00034722223062999547,0.0003787878667935729,0.0002367424312978983,-0.004671370144933462,0.0016391752287745476,0.00032051283051259816,0.00026223776512779295,-0.00010302197915734723,-5.827505810884759e-05,-4.7679593990324065e-05,2.37313826742036e-19,1.0074414918512027e-19,2.0328790734103208e-19,-0.00659236591309309,0.00032051283051259816,0.0036196443252265453,0.0003787878667935729,2.1652999619814915e-19,-9.157509339274839e-05,1.0164395367051604e-20,-0.00034722223062999547,-0.00010822511103469878,-3.3881317890172014e-21,-0.005466928705573082,0.00026223776512779295,0.0003787878667935729,0.002339399652555585,1.319133227924899e-19,-1.2054036969847144e-20,-5.827505810884759e-05,-2.4856581099205765e-34,-8.417508070124313e-05,-0.00017755682347342372,0.00017170330102089792,-0.00010302197915734723,2.1652999619814915e-19,1.319133227924899e-19,9.365634468849748e-06,-9.242615665460627e-21,5.58949981858117e-23,-1.8485231330921254e-20,-8.066442382592649e-21,-1.158493751303078e-20,0.00032051283051259816,-5.827505810884759e-05,-9.157509339274839e-05,-1.2054036969847144e-20,-9.242615665460627e-21,1.6650015822960995e-05,1.179144347607207e-21,-9.707504902206067e-21,1.591069488419657e-21,9.968192094972998e-36,0.00026223776512779295,-4.7679593990324065e-05,1.0164395367051604e-20,-5.827505810884759e-05,5.58949981858117e-23,1.179144347607207e-21,1.0595465028018225e-05,-2.2926383645407845e-36,-3.8116482626443515e-21,-1.6940658945086007e-20,0.00034722223062999547,2.37313826742036e-19,-0.00034722223062999547,-2.4856581099205765e-34,-1.8485231330921254e-20,-9.707504902206067e-21,-2.2926383645407845e-36,4.960317528457381e-05,1.3852919678233674e-35,2.3632234856202234e-35,0.0003787878667935729,1.0074414918512027e-19,-0.00010822511103469878,-8.417508070124313e-05,-8.066442382592649e-21,1.591069488419657e-21,-3.8116482626443515e-21,1.3852919678233674e-35,2.405002487648744e-05,0.0,0.0002367424312978983,2.0328790734103208e-19,-3.3881317890172014e-21,-0.00017755682347342372,-1.158493751303078e-20,9.968192094972998e-36,-1.6940658945086007e-20,2.3632234856202234e-35,0.0,1.9728535335161723e-05,12.0,8.0,11.0,0.032873377203941345,-0.004266566596925259,-0.006021756213158369,-0.004601301625370979,0.00015609391266480088,0.00029137529782019556,0.00021853146608918905,0.00031565656536258757,0.00031565656536258757,0.0001821095502236858,-0.004266566596925259,0.0014937713276594877,0.00029137529782019556,0.00021853146608918905,-9.365634468849748e-05,-5.297732423059642e-05,-3.973299317294732e-05,2.1573983191800787e-19,6.866671834047034e-20,1.0503208545953324e-19,-0.006021756213158369,0.00029137529782019556,0.0032987846061587334,0.00031565656536258757,1.9308233388911182e-19,-8.325008093379438e-05,-2.371692252312041e-20,-0.00031565656536258757,-9.018759010359645e-05,-3.3881317890172014e-20,-0.004601301625370979,0.00021853146608918905,0.00031565656536258757,0.0017701048636808991,1.5931569683605204e-19,5.977824260593325e-21,-4.3706295400625095e-05,-3.1132003608818626e-34,-6.313131598290056e-05,-0.00012140637409174815,0.00015609391266480088,-9.365634468849748e-05,1.9308233388911182e-19,1.5931569683605204e-19,8.514212822774425e-06,-7.562140089922331e-21,-8.004619517533546e-21,-1.680475575538296e-20,-6.7714531673432374e-21,-9.151039339950191e-21,0.00029137529782019556,-5.297732423059642e-05,-8.325008093379438e-05,5.977824260593325e-21,-7.562140089922331e-21,1.5136378351598978e-05,1.1594875999233313e-21,-8.825004162807855e-21,-3.5300017459024985e-21,6.25362994637457e-36,0.00021853146608918905,-3.973299317294732e-05,-2.371692252312041e-20,-4.3706295400625095e-05,-8.004619517533546e-21,1.1594875999233313e-21,7.946598998387344e-06,1.4983545214534646e-35,3.8116482626443515e-21,-1.2705494208814505e-21,0.00031565656536258757,2.1573983191800787e-19,-0.00031565656536258757,-3.1132003608818626e-34,-1.680475575538296e-20,-8.825004162807855e-21,1.4983545214534646e-35,4.5093795051798224e-05,1.4375244107139642e-35,1.7859718159832733e-35,0.00031565656536258757,6.866671834047034e-20,-9.018759010359645e-05,-6.313131598290056e-05,-6.7714531673432374e-21,-3.5300017459024985e-21,3.8116482626443515e-21,1.4375244107139642e-35,1.803751729312353e-05,6.776263578034403e-21,0.0001821095502236858,1.0503208545953324e-19,-3.3881317890172014e-20,-0.00012140637409174815,-9.151039339950191e-21,6.25362994637457e-36,-1.2705494208814505e-21,1.7859718159832733e-35,6.776263578034403e-21,1.2140637409174815e-05,12.0,8.0,12.0,0.03044920787215233,-0.003926428966224194,-0.005542200990021229,-0.003926428966224194,0.0001430860866094008,0.00026709403027780354,0.0001849112450145185,0.00028935185400769114,0.00026709403027780354,0.0001430860866094008,-0.003926428966224194,0.0013720921706408262,0.00026709403027780354,0.0001849112450145185,-8.585165051044896e-05,-4.856254963669926e-05,-3.362022471264936e-05,1.977615136685653e-19,6.522153693858113e-20,6.268043809681823e-20,-0.005542200990021229,0.00026709403027780354,0.003030245192348957,0.00026709403027780354,1.3922373825108042e-19,-7.631257903994992e-05,1.1858461261560205e-20,-0.00028935185400769114,-7.631257903994992e-05,0.0,-0.003926428966224194,0.0001849112450145185,0.00026709403027780354,0.0013720921706408262,1.2389485365425106e-19,-1.0710901642420599e-20,-3.362022471264936e-05,-2.446711594354934e-34,-4.856254963669926e-05,-8.585165051044896e-05,0.0001430860866094008,-8.585165051044896e-05,1.3922373825108042e-19,1.2389485365425106e-19,7.804695087543223e-06,-3.7339586153690937e-22,-5.3005701340655336e-21,-1.5404359980963423e-20,-5.6352818219104405e-21,-6.720489471204594e-21,0.00026709403027780354,-4.856254963669926e-05,-7.631257903994992e-05,-1.0710901642420599e-20,-3.7339586153690937e-22,1.387501379213063e-05,2.5192100089922588e-22,-8.089587283872795e-21,2.6499554872574527e-21,-3.320633461020043e-24,0.0001849112450145185,-3.362022471264936e-05,1.1858461261560205e-20,-3.362022471264936e-05,-5.3005701340655336e-21,2.5192100089922588e-22,6.112768460297957e-06,1.1443920359074612e-35,-2.665085662714749e-21,2.541098841762901e-21,0.00028935185400769114,1.977615136685653e-19,-0.00028935185400769114,-2.446711594354934e-34,-1.5404359980963423e-20,-8.089587283872795e-21,1.1443920359074612e-35,4.13359775848221e-05,8.710855815383225e-36,1.3755175141869767e-35,0.00026709403027780354,6.522153693858113e-20,-7.631257903994992e-05,-4.856254963669926e-05,-5.6352818219104405e-21,2.6499554872574527e-21,-2.665085662714749e-21,8.710855815383225e-36,1.387501379213063e-05,0.0,0.0001430860866094008,6.268043809681823e-20,0.0,-8.585165051044896e-05,-6.720489471204594e-21,-3.320633461020043e-24,2.541098841762901e-21,1.3755175141869767e-35,0.0,7.804695087543223e-06,12.0,8.0,13.0,0.028358926996588707,-0.0036365878768265247,-0.005133488215506077,-0.0033900395501405,0.00013207945448812097,0.00024654832668602467,0.00015849535702727735,0.00026709403027780354,0.00022893772984389216,0.00011446886492194608,-0.0036365878768265247,0.0012687633279711008,0.00024654832668602467,0.00015849535702727735,-7.924767851363868e-05,-4.482696749619208e-05,-2.8817335987696424e-05,1.327690023620848e-19,4.658681209898652e-20,5.590417451878382e-20,-0.005133488215506077,0.00024654832668602467,0.0028021810576319695,0.00022893772984389216,1.3308426157304407e-19,-7.044238009257242e-05,-8.470329472543003e-22,-0.00026709403027780354,-6.541077891597524e-05,1.1858461261560205e-20,-0.0033900395501405,0.00015849535702727735,0.00022893772984389216,0.0010853195562958717,1.0728080180415279e-19,-3.765458626486361e-21,-2.6415891625219956e-05,-2.071536960255654e-34,-3.815628951997496e-05,-6.243756070034578e-05,0.00013207945448812097,-7.924767851363868e-05,1.3308426157304407e-19,1.0728080180415279e-19,7.204333996924106e-06,-8.911328214546006e-22,-4.603567474309822e-21,-1.4219409213197006e-20,-4.9757551291060694e-21,-5.292930830302922e-21,0.00024654832668602467,-4.482696749619208e-05,-7.044238009257242e-05,-3.765458626486361e-21,-8.911328214546006e-22,1.2807705388695467e-05,-3.6150938114768607e-22,6.755570330229939e-21,1.5274803827264264e-21,1.0806070377384539e-22,0.00015849535702727735,-2.8817335987696424e-05,-8.470329472543003e-22,-2.6415891625219956e-05,-4.603567474309822e-21,-3.6150938114768607e-22,4.802889634447638e-06,7.449436443538489e-36,4.839991586715907e-22,8.470329472543003e-22,0.00026709403027780354,1.327690023620848e-19,-0.00026709403027780354,-2.071536960255654e-34,-1.4219409213197006e-20,6.755570330229939e-21,7.449436443538489e-36,3.815628951997496e-05,9.881807179004946e-36,1.0964033973901029e-35,0.00022893772984389216,4.658681209898652e-20,-6.541077891597524e-05,-3.815628951997496e-05,-4.9757551291060694e-21,1.5274803827264264e-21,4.839991586715907e-22,9.881807179004946e-36,1.0901796485995874e-05,-2.117582368135751e-21,0.00011446886492194608,5.590417451878382e-20,1.1858461261560205e-20,-6.243756070034578e-05,-5.292930830302922e-21,1.0806070377384539e-22,8.470329472543003e-22,1.0964033973901029e-35,-2.117582368135751e-21,5.203130058362149e-06,12.0,8.0,14.0,0.026537835597991943,-0.0033866430167108774,-0.0047809830866754055,-0.002956635318696499,0.0001226452150149271,0.00022893772984389216,0.00013736264372710139,0.00024801588733680546,0.00019841270113829523,9.300595411332324e-05,-0.0033866430167108774,0.001179921324364841,0.00022893772984389216,0.00013736264372710139,-7.358712900895625e-05,-4.162504046689719e-05,-2.4975024643936194e-05,1.6950987070515556e-19,3.7269449679189215e-20,6.606856988583543e-20,-0.0047809830866754055,0.00022893772984389216,0.002606074558570981,0.00019841270113829523,1.7220821141148596e-19,-6.541077891597524e-05,-5.082197683525802e-21,-0.00024801588733680546,-5.668934318237007e-05,-3.3881317890172014e-21,-0.002956635318696499,0.00013736264372710139,0.00019841270113829523,0.0008733937866054475,7.438398393928373e-20,-7.575483526983738e-22,-2.1132713300175965e-05,-1.3660407223525081e-34,-3.052503234357573e-05,-4.650297705666162e-05,0.0001226452150149271,-7.358712900895625e-05,1.7220821141148596e-19,7.438398393928373e-20,6.689738711429527e-06,-9.69883000709063e-21,-2.5631110650008943e-22,-1.3203737241939158e-20,-4.2571504537830796e-21,-4.504072752359395e-21,0.00022893772984389216,-4.162504046689719e-05,-6.541077891597524e-05,-7.575483526983738e-22,-9.69883000709063e-21,1.1892869224539027e-05,-3.7659641537979758e-22,-6.933931957605252e-21,8.27484696343885e-22,-2.3861537236328445e-23,0.00013736264372710139,-2.4975024643936194e-05,-5.082197683525802e-21,-2.1132713300175965e-05,-2.5631110650008943e-22,-3.7659641537979758e-22,3.84231134376023e-06,-3.2305933886346972e-37,1.0288736405482558e-21,-2.329340604949326e-21,0.00024801588733680546,1.6950987070515556e-19,-0.00024801588733680546,-1.3660407223525081e-34,-1.3203737241939158e-20,-6.933931957605252e-21,-3.2305933886346972e-37,3.543083948898129e-05,7.06816057475899e-36,8.745502191238454e-36,0.00019841270113829523,3.7269449679189215e-20,-5.668934318237007e-05,-3.052503234357573e-05,-4.2571504537830796e-21,8.27484696343885e-22,1.0288736405482558e-21,7.06816057475899e-36,8.72143755259458e-06,8.470329472543003e-22,9.300595411332324e-05,6.606856988583543e-20,-3.3881317890172014e-21,-4.650297705666162e-05,-4.504072752359395e-21,-2.3861537236328445e-23,-2.329340604949326e-21,8.745502191238454e-36,8.470329472543003e-22,3.577152028810815e-06,12.0,8.0,15.0,0.024936966598033905,-0.0031688797753304243,-0.0044738249853253365,-0.0026014172472059727,0.00011446886492194608,0.0002136752154910937,0.0001201923078042455,0.00023148147738538682,0.00017361111531499773,7.659313996555284e-05,-0.0031688797753304243,0.0011027167784050107,0.0002136752154910937,0.0001201923078042455,-6.868132186355069e-05,-3.885003752657212e-05,-2.1853147700312547e-05,-2.416376807496097e-19,-6.776263578034403e-20,-7.962109704190423e-20,-0.0044738249853253365,0.0002136752154910937,0.0024356429930776358,0.00017361111531499773,-2.697154736127155e-19,-6.105006468715146e-05,1.3552527156068805e-20,-0.00023148147738538682,-4.960317528457381e-05,1.8634724839594607e-20,-0.0026014172472059727,0.0001201923078042455,0.00017361111531499773,0.0007133542676456273,-1.5456196740389222e-19,3.0936809364456823e-21,-1.7170330465887673e-05,-3.8549411510712724e-20,-2.4801587642286904e-05,-3.535068026394583e-05,0.00011446886492194608,-6.868132186355069e-05,-2.697154736127155e-19,-1.5456196740389222e-19,6.243756160984049e-06,8.017798669578275e-21,4.410644156199951e-21,2.464697564642405e-20,7.512234603356388e-21,7.406448381209799e-21,0.0002136752154910937,-3.885003752657212e-05,-6.105006468715146e-05,3.0936809364456823e-21,8.017798669578275e-21,1.1100010851805564e-05,-2.2992412573900454e-22,-8.422588872736476e-21,-6.945155643372796e-22,1.5539221924758678e-23,0.0001201923078042455,-2.1853147700312547e-05,1.3552527156068805e-20,-1.7170330465887673e-05,4.410644156199951e-21,-2.2992412573900454e-22,3.1218780804920243e-06,1.5079105788005546e-35,-1.902354052106966e-21,-3.1763735522036263e-22,0.00023148147738538682,-2.416376807496097e-19,-0.00023148147738538682,-3.8549411510712724e-20,2.464697564642405e-20,-8.422588872736476e-21,1.5079105788005546e-35,3.3068783523049206e-05,1.1014117459090269e-20,2.407412430484045e-35,0.00017361111531499773,-6.776263578034403e-20,-4.960317528457381e-05,-2.4801587642286904e-05,7.512234603356388e-21,-6.945155643372796e-22,-1.902354052106966e-21,1.1014117459090269e-20,7.086167897796258e-06,-3.1763735522036263e-21,7.659313996555284e-05,-7.962109704190423e-20,1.8634724839594607e-20,-3.535068026394583e-05,7.406448381209799e-21,1.5539221924758678e-23,-3.1763735522036263e-22,2.407412430484045e-35,-3.1763735522036263e-21,2.5250485577998916e-06,12.0,8.0,16.0,0.023518582805991173,-0.002977452939376235,-0.004203784745186567,-0.0023066317662596703,0.0001073145613190718,0.00020032051543239504,0.00010605203715385869,0.00021701389050576836,0.00015318627993110567,6.38276178506203e-05,-0.002977452939376235,0.0010350020602345467,0.00020032051543239504,0.00010605203715385869,-6.438873970182613e-05,-3.6421912227524444e-05,-1.9282188077340834e-05,1.2708597428581286e-19,4.0234064994579266e-20,2.879912020664621e-20,-0.004203784745186567,0.00020032051543239504,0.0022861508186906576,0.00015318627993110567,1.4434044487578617e-19,-5.723443246097304e-05,4.235164736271502e-21,-0.00021701389050576836,-4.376750803203322e-05,1.0164395367051604e-20,-0.0023066317662596703,0.00010605203715385869,0.00015318627993110567,0.0005902160773985088,7.58339604672553e-20,-9.18689127991557e-35,-1.4140271559881512e-05,-1.4967575308738697e-34,-2.0424837202881463e-05,-2.735469206527341e-05,0.0001073145613190718,-6.438873970182613e-05,1.4434044487578617e-19,7.58339604672553e-20,5.853521543031093e-06,-7.091237637864543e-21,-3.503905570825514e-21,-1.1553269581825784e-20,-3.262099836702237e-21,-3.009675252244667e-21,0.00020032051543239504,-3.6421912227524444e-05,-5.723443246097304e-05,-9.18689127991557e-35,-7.091237637864543e-21,1.0406260116724297e-05,4.244800214399885e-36,1.3996187357029023e-35,3.951864711938271e-36,3.646065782831214e-36,0.00010605203715385869,-1.9282188077340834e-05,4.235164736271502e-21,-1.4140271559881512e-05,-3.503905570825514e-21,4.244800214399885e-36,2.5709584861033363e-06,6.915763156208872e-36,-5.293955920339377e-22,4.235164736271502e-22,0.00021701389050576836,1.2708597428581286e-19,-0.00021701389050576836,-1.4967575308738697e-34,-1.1553269581825784e-20,1.3996187357029023e-35,6.915763156208872e-36,3.100198591710068e-05,6.43850340971837e-36,5.940286157286283e-36,0.00015318627993110567,4.0234064994579266e-20,-4.376750803203322e-05,-2.0424837202881463e-05,-3.262099836702237e-21,3.951864711938271e-36,-5.293955920339377e-22,6.43850340971837e-36,5.835667707287939e-06,-1.2705494208814505e-21,6.38276178506203e-05,2.879912020664621e-20,1.0164395367051604e-20,-2.735469206527341e-05,-3.009675252244667e-21,3.646065782831214e-36,4.235164736271502e-22,5.940286157286283e-36,-1.2705494208814505e-21,1.8236461301057716e-06,12.0,9.0,3.0,0.08335152268409729,-0.012576312758028507,-0.016064491122961044,-0.036752138286828995,0.000508750497829169,0.0008547008619643748,0.0021367522422224283,0.0008417508215643466,0.0027777778450399637,0.004629629664123058,-0.012576312758028507,0.0046268547885119915,0.0008547008619643748,0.0021367522422224283,-0.0003052503161597997,-0.0001554001501062885,-0.0003885003970935941,5.611549848577581e-19,6.361051997757285e-19,6.00478489434039e-18,-0.016064491122961044,0.0008547008619643748,0.008104627020657063,0.0027777778450399637,5.564891175162879e-19,-0.0002136752154910937,4.8537378300394717e-20,-0.0007215007208287716,-0.0006944444612599909,1.2816427400763992e-17,-0.036752138286828995,0.0021367522422224283,0.0027777778450399637,0.08304843306541443,1.6197444402537471e-18,-1.0582567478439837e-19,-0.0021367522422224283,4.115497344234068e-18,-0.0027777778450399637,-0.02777777798473835,0.000508750497829169,-0.0003052503161597997,5.564891175162879e-19,1.6197444402537471e-18,2.775002758426126e-05,-2.710505431213761e-20,-7.222807338198351e-20,-4.353232167133802e-20,-5.915273896647831e-20,-4.929395193908295e-19,0.0008547008619643748,-0.0001554001501062885,-0.0002136752154910937,-1.0582567478439837e-19,-2.710505431213761e-20,3.885003752657212e-05,3.883028133393996e-21,-2.057486727281493e-20,2.11172538009925e-20,8.165357531280972e-34,0.0021367522422224283,-0.0003885003970935941,4.8537378300394717e-20,-0.0021367522422224283,-7.222807338198351e-20,3.883028133393996e-21,0.0003885003970935941,1.999846039357399e-34,-6.989403464964883e-20,-5.824502844388412e-19,0.0008417508215643466,5.611549848577581e-19,-0.0007215007208287716,4.115497344234068e-18,-4.353232167133802e-20,-2.057486727281493e-20,1.999846039357399e-34,9.018759010359645e-05,-2.278475976613733e-19,-1.602053425095499e-18,0.0027777778450399637,6.361051997757285e-19,-0.0006944444612599909,-0.0027777778450399637,-5.915273896647831e-20,2.11172538009925e-20,-6.989403464964883e-20,-2.278475976613733e-19,0.0006944444612599909,5.1276907639631034e-33,0.004629629664123058,6.00478489434039e-18,1.2816427400763992e-17,-0.02777777798473835,-4.929395193908295e-19,8.165357531280972e-34,-5.824502844388412e-19,-1.602053425095499e-18,5.1276907639631034e-33,0.013888888992369175,12.0,9.0,4.0,0.06779498606920242,-0.009752747602760792,-0.012465034611523151,-0.023440171033143997,0.000381562887923792,0.0006410256610251963,0.0012820513220503926,0.0006313131307251751,0.0016666667070239782,0.002314814832061529,-0.009752747602760792,0.003528415923938155,0.0006410256610251963,0.0012820513220503926,-0.00022893772984389216,-0.00011655011621769518,-0.00023310023243539035,3.0614577440986383e-19,3.9005040040447978e-19,2.142446176578176e-18,-0.012465034611523151,0.0006410256610251963,0.006182636599987745,0.0016666667070239782,4.0929907420434773e-19,-0.00016025641525629908,1.4489355728694565e-19,-0.0005411255406215787,-0.00041666667675599456,4.485749590267397e-18,-0.023440171033143997,0.0012820513220503926,0.0016666667070239782,0.03183048591017723,8.99922151837905e-19,4.388844877443624e-20,-0.0008547008619643748,2.228990361756843e-18,-0.0011111111380159855,-0.0069444444961845875,0.000381562887923792,-0.00022893772984389216,4.0929907420434773e-19,8.99922151837905e-19,2.0812520233448595e-05,-1.6940658945086007e-20,-4.370347374112834e-20,-3.264924206129708e-20,-3.549164467235669e-20,-1.7252883437172976e-19,0.0006410256610251963,-0.00011655011621769518,-0.00016025641525629908,4.388844877443624e-20,-1.6940658945086007e-20,2.9137529054423794e-05,-1.7194519382608824e-20,1.3248967219339616e-20,1.267035276527164e-20,4.7722263921033544e-35,0.0012820513220503926,-0.00023310023243539035,1.4489355728694565e-19,-0.0008547008619643748,-4.370347374112834e-20,-1.7194519382608824e-20,0.0001554001501062885,1.167562059841641e-34,-3.354913701957235e-20,-1.6308607654094824e-19,0.0006313131307251751,3.0614577440986383e-19,-0.0005411255406215787,2.228990361756843e-18,-3.264924206129708e-20,1.3248967219339616e-20,1.167562059841641e-34,6.764069257769734e-05,-1.3670855342694516e-19,-5.607186987834246e-19,0.0016666667070239782,3.9005040040447978e-19,-0.00041666667675599456,-0.0011111111380159855,-3.549164467235669e-20,1.267035276527164e-20,-3.354913701957235e-20,-1.3670855342694516e-19,0.00027777778450399637,1.4416214964026532e-33,0.002314814832061529,2.142446176578176e-18,4.485749590267397e-18,-0.0069444444961845875,-1.7252883437172976e-19,4.7722263921033544e-35,-1.6308607654094824e-19,-5.607186987834246e-19,1.4416214964026532e-33,0.002314814832061529,12.0,9.0,5.0,0.057229068130254745,-0.007973138242959976,-0.010194250382483006,-0.01628815568983555,0.0003052503161597997,0.0005128204938955605,0.0008547008619643748,0.0005050505278632045,0.0011111111380159855,0.0013227512827143073,-0.007973138242959976,0.0028538128826767206,0.0005128204938955605,0.0008547008619643748,-0.00018315018678549677,-9.324009442934766e-05,-0.0001554001501062885,-5.265437834745846e-19,-5.11818572703857e-19,-1.751445345649873e-18,-0.010194250382483006,0.0005128204938955605,0.0050016650930047035,0.0011111111380159855,-6.379356470737318e-19,-0.00012820512347389013,-1.2974505622478967e-20,-0.00043290044413879514,-0.00027777778450399637,-1.0985509643787321e-18,-0.01628815568983555,0.0008547008619643748,0.0011111111380159855,0.01608058623969555,-1.073722414509917e-18,-1.8957538535991962e-20,-0.0004273504309821874,-7.68009178012236e-19,-0.0005555555690079927,-0.0026455025654286146,0.0003052503161597997,-0.00018315018678549677,-6.379356470737318e-19,-1.073722414509917e-18,1.6650015822960995e-05,2.2488583547286172e-20,3.67745953400779e-20,5.223878535937077e-20,4.7322195050591767e-20,1.6900783669682122e-19,0.0005128204938955605,-9.324009442934766e-05,-0.00012820512347389013,-1.8957538535991962e-20,2.2488583547286172e-20,2.3310023607336916e-05,3.3881317890172014e-21,-1.202070983065564e-20,-1.189845895807916e-21,1.9036460612444993e-34,0.0008547008619643748,-0.0001554001501062885,-1.2974505622478967e-20,-0.0004273504309821874,3.67745953400779e-20,3.3881317890172014e-21,7.770007505314425e-05,1.0034863517239998e-34,-1.983076459355128e-21,-5.382038377114057e-20,0.0005050505278632045,-5.265437834745846e-19,-0.00043290044413879514,-7.68009178012236e-19,5.223878535937077e-20,-1.202070983065564e-20,1.0034863517239998e-34,5.411255551734939e-05,5.468342395571748e-20,1.3731887054734151e-19,0.0011111111380159855,-5.11818572703857e-19,-0.00027777778450399637,-0.0005555555690079927,4.7322195050591767e-20,-1.189845895807916e-21,-1.983076459355128e-21,5.468342395571748e-20,0.00013888889225199819,5.86091886510644e-34,0.0013227512827143073,-1.751445345649873e-18,-1.0985509643787321e-18,-0.0026455025654286146,1.6900783669682122e-19,1.9036460612444993e-34,-5.382038377114057e-20,1.3731887054734151e-19,5.86091886510644e-34,0.0006613756413571537,12.0,9.0,6.0,0.04955121874809265,-0.0067460318095982075,-0.008627483621239662,-0.011988705955445766,0.0002543752489145845,0.0004273504309821874,0.0006105006323195994,0.0004208754107821733,0.0007936508045531809,0.0008267195662483573,-0.0067460318095982075,0.0023966773878782988,0.0004273504309821874,0.0006105006323195994,-0.00015262515807989985,-7.770007505314425e-05,-0.00011100011033704504,2.8057749242887904e-19,2.0151989925457948e-19,6.14272077700121e-19,-0.008627483621239662,0.0004273504309821874,0.004201123025268316,0.0007936508045531809,2.9125101746295703e-19,-0.00010683760774554685,2.175191297273521e-20,-0.0003607503604143858,-0.00019841270113829523,1.258756306888282e-18,-0.011988705955445766,0.0006105006323195994,0.0007936508045531809,0.009342440403997898,4.02106712928805e-19,-1.6305023958714423e-20,-0.00024420025874860585,9.950404776559902e-19,-0.0003174603043589741,-0.0012400794075801969,0.0002543752489145845,-0.00015262515807989985,2.9125101746295703e-19,4.02106712928805e-19,1.387501379213063e-05,-1.4151798507230733e-20,-1.6344261723435274e-20,-2.176616083566901e-20,-1.690078302344727e-20,-4.841370187412097e-20,0.0004273504309821874,-7.770007505314425e-05,-0.00010683760774554685,-1.6305023958714423e-20,-1.4151798507230733e-20,1.942501876328606e-05,8.470329472543003e-22,-1.0287433636407465e-20,3.2292230424243055e-21,8.453559588332567e-35,0.0006105006323195994,-0.00011100011033704504,2.175191297273521e-20,-0.00024420025874860585,-1.6344261723435274e-20,8.470329472543003e-22,4.4400043407222256e-05,5.576739202786566e-35,-1.1411270781866559e-20,-3.268853637156762e-20,0.0004208754107821733,2.8057749242887904e-19,-0.0003607503604143858,9.950404776559902e-19,-2.176616083566901e-20,-1.0287433636407465e-20,5.576739202786566e-35,4.5093795051798224e-05,-5.2079449693877744e-20,-1.5734453836103525e-19,0.0007936508045531809,2.0151989925457948e-19,-0.00019841270113829523,-0.0003174603043589741,-1.690078302344727e-20,3.2292230424243055e-21,-1.1411270781866559e-20,-5.2079449693877744e-20,7.936507608974352e-05,2.448690878885879e-34,0.0008267195662483573,6.14272077700121e-19,1.258756306888282e-18,-0.0012400794075801969,-4.841370187412097e-20,8.453559588332567e-35,-3.268853637156762e-20,-1.5734453836103525e-19,2.448690878885879e-34,0.00024801588733680546,12.0,9.0,7.0,0.043707769364118576,-0.005847723688930273,-0.007480020169168711,-0.009198209270834923,0.00021803592971991748,0.00036630037357099354,0.0004578754596877843,0.0003607503604143858,0.0005952381179668009,0.0005511463969014585,-0.005847723688930273,0.0020661877933889627,0.00036630037357099354,0.0004578754596877843,-0.00013082155783195049,-6.660006329184398e-05,-8.325008093379438e-05,2.404950082815501e-19,1.8586107299091803e-19,3.897530031248728e-19,-0.007480020169168711,0.00036630037357099354,0.0036222210619598627,0.0005952381179668009,2.533651372816568e-19,-9.157509339274839e-05,2.0179403854180692e-20,-0.0003092146071139723,-0.00014880952949170023,7.933978842521143e-19,-0.009198209270834923,0.0004578754596877843,0.0005952381179668009,0.005932030733674765,3.4311736152035153e-19,2.1677133906655857e-20,-0.00015262515807989985,7.06647214113039e-19,-0.00019841270113829523,-0.0006613756413571537,0.00021803592971991748,-0.00013082155783195049,2.533651372816568e-19,3.4311736152035153e-19,1.1892869224539027e-05,-1.2015401011333669e-20,-1.9876943324496117e-20,-1.8656709749312618e-20,-1.2675587267585452e-20,-3.05153034890178e-20,0.00036630037357099354,-6.660006329184398e-05,-9.157509339274839e-05,2.1677133906655857e-20,-1.2015401011333669e-20,1.6650015822960995e-05,4.157336350451121e-22,-8.817800259777827e-21,-5.990916978726391e-21,5.414227108785384e-35,0.0004578754596877843,-8.325008093379438e-05,2.0179403854180692e-20,-0.00015262515807989985,-1.9876943324496117e-20,4.157336350451121e-22,2.775002758426126e-05,5.044771185826233e-35,-7.488646223407989e-21,-1.8028222120421376e-20,0.0003607503604143858,2.404950082815501e-19,-0.0003092146071139723,7.06647214113039e-19,-1.8656709749312618e-20,-8.817800259777827e-21,5.044771185826233e-35,3.865182588924654e-05,-2.7899706693336844e-20,-9.917473553151429e-20,0.0005952381179668009,1.8586107299091803e-19,-0.00014880952949170023,-0.00019841270113829523,-1.2675587267585452e-20,-5.990916978726391e-21,-7.488646223407989e-21,-2.7899706693336844e-20,4.960317528457381e-05,1.0664611656818999e-34,0.0005511463969014585,3.897530031248728e-19,7.933978842521143e-19,-0.0006613756413571537,-3.05153034890178e-20,5.414227108785384e-35,-1.8028222120421376e-20,-9.917473553151429e-20,1.0664611656818999e-34,0.00011022927355952561,12.0,9.0,8.0,0.03910641744732857,-0.005161273758858442,-0.006602887995541096,-0.007282763719558716,0.000190781443961896,0.00032051283051259816,0.0003561253543011844,0.00031565656536258757,0.00046296295477077365,0.00038580247201025486,-0.005161273758858442,0.0018160081235691905,0.00032051283051259816,0.0003561253543011844,-0.00011446886492194608,-5.827505810884759e-05,-6.475006375694647e-05,1.5307288720493192e-19,8.600435289374791e-20,2.6368201822475374e-19,-0.006602887995541096,0.00032051283051259816,0.0031839110888540745,0.00046296295477077365,2.0958281642604598e-19,-8.012820762814954e-05,1.2444228727663491e-20,-0.00027056277031078935,-0.00011574073869269341,5.340178255980957e-19,-0.007282763719558716,0.0003561253543011844,0.00046296295477077365,0.004009801894426346,2.3674490742635853e-19,1.607782717124937e-20,-0.0001017501053865999,5.974642329421381e-19,-0.00013227513409219682,-0.00038580247201025486,0.000190781443961896,-0.00011446886492194608,2.0958281642604598e-19,2.3674490742635853e-19,1.0406260116724297e-05,-8.087289111174832e-21,-9.73376950224176e-21,-1.632462103064854e-20,-9.858790097010907e-21,-2.0539146641284564e-20,0.00032051283051259816,-5.827505810884759e-05,-8.012820762814954e-05,1.607782717124937e-20,-8.087289111174832e-21,1.4568764527211897e-05,-4.633127064305089e-21,6.624483609669808e-21,2.351093072068448e-21,5.792566609321713e-36,0.0003561253543011844,-6.475006375694647e-05,1.2444228727663491e-20,-0.0001017501053865999,-9.73376950224176e-21,-4.633127064305089e-21,1.850001899583731e-05,2.3606477869389172e-35,3.725134379417968e-21,-1.0786116109232537e-20,0.00031565656536258757,1.5307288720493192e-19,-0.00027056277031078935,5.974642329421381e-19,-1.632462103064854e-20,6.624483609669808e-21,2.3606477869389172e-35,3.382034628884867e-05,-3.254965727036394e-20,-6.675222819976197e-20,0.00046296295477077365,8.600435289374791e-20,-0.00011574073869269341,-0.00013227513409219682,-9.858790097010907e-21,2.351093072068448e-21,3.725134379417968e-21,-3.254965727036394e-20,3.3068783523049206e-05,8.013748491766778e-35,0.00038580247201025486,2.6368201822475374e-19,5.340178255980957e-19,-0.00038580247201025486,-2.0539146641284564e-20,5.792566609321713e-36,-1.0786116109232537e-20,-6.675222819976197e-20,8.013748491766778e-35,5.5114636779762805e-05,12.0,9.0,9.0,0.035386793315410614,-0.004619454499334097,-0.005910385865718126,-0.005910385865718126,0.0001695835089776665,0.00028490027762018144,0.00028490027762018144,0.00028058362659066916,0.000370370369637385,0.00028058362659066916,-0.004619454499334097,0.0016199849778786302,0.00028490027762018144,0.00028490027762018144,-0.0001017501053865999,-5.18000524607487e-05,-5.18000524607487e-05,-8.884035584105275e-19,-8.209338479646038e-19,-8.884035584105275e-19,-0.005910385865718126,0.00028490027762018144,0.002840431174263358,0.000370370369637385,-7.796022693935315e-19,-7.122506940504536e-05,-6.544091040690902e-19,-0.0002405002451268956,-9.259259240934625e-05,-4.252510196728856e-19,-0.005910385865718126,0.00028490027762018144,0.000370370369637385,0.002840431174263358,-7.816246225936471e-19,-6.544091040690902e-19,-7.122506940504536e-05,-5.062634862038923e-19,-9.259259240934625e-05,-0.0002405002451268956,0.0001695835089776665,-0.0001017501053865999,-7.796022693935315e-19,-7.816246225936471e-19,9.250009497918654e-06,1.869062253884016e-20,1.9058331786101256e-20,5.366852181172893e-20,4.83080715561328e-20,5.366852181172893e-20,0.00028490027762018144,-5.18000524607487e-05,-7.122506940504536e-05,-6.544091040690902e-19,1.869062253884016e-20,1.2950013115187176e-05,2.7576886534590954e-20,2.626412989983656e-20,3.2742551911802185e-20,4.302017731871979e-20,0.00028490027762018144,-5.18000524607487e-05,-6.544091040690902e-19,-7.122506940504536e-05,1.9058331786101256e-20,2.7576886534590954e-20,1.2950013115187176e-05,4.302017731871979e-20,3.2742551911802185e-20,2.626412989983656e-20,0.00028058362659066916,-8.884035584105275e-19,-0.0002405002451268956,-5.062634862038923e-19,5.366852181172893e-20,2.626412989983656e-20,4.302017731871979e-20,3.006253064086195e-05,2.0253119863925945e-20,2.358000636028441e-20,0.000370370369637385,-8.209338479646038e-19,-9.259259240934625e-05,-9.259259240934625e-05,4.83080715561328e-20,3.2742551911802185e-20,3.2742551911802185e-20,2.0253119863925945e-20,2.3148148102336563e-05,4.744887538868971e-34,0.00028058362659066916,-8.884035584105275e-19,-4.252510196728856e-19,-0.0002405002451268956,5.366852181172893e-20,4.302017731871979e-20,2.626412989983656e-20,2.358000636028441e-20,4.744887538868971e-34,3.006253064086195e-05,12.0,9.0,10.0,0.032316386699676514,-0.004180819261819124,-0.005349650513380766,-0.004893162287771702,0.00015262515807989985,0.00025641024694778025,0.00023310023243539035,0.00025252526393160224,0.0003030303050763905,0.00021043770539108664,-0.004180819261819124,0.0014622246380895376,0.00025641024694778025,0.00023310023243539035,-9.157509339274839e-05,-4.662004721467383e-05,-4.23818601120729e-05,-2.632718917372923e-19,-1.4795287185777596e-19,-2.371692252312041e-19,-0.005349650513380766,0.00025641024694778025,0.0025639638770371675,0.0003030303050763905,-3.2346272298547904e-19,-6.410256173694506e-05,-7.623296525288703e-21,-0.00021645022206939757,-7.575757626909763e-05,-1.4230153513872246e-19,-0.004893162287771702,0.00023310023243539035,0.0003030303050763905,0.0020869486033916473,-2.8702443472554076e-19,-4.0565858124266796e-21,-5.18000524607487e-05,-2.0868040115184184e-19,-6.73400645609945e-05,-0.00015782828268129379,0.00015262515807989985,-9.157509339274839e-05,-3.2346272298547904e-19,-2.8702443472554076e-19,8.325007911480498e-06,1.0351729965368557e-20,7.962082723885287e-21,2.6119392679685385e-20,1.2794014651261183e-20,2.1335731264695933e-20,0.00025641024694778025,-4.662004721467383e-05,-6.410256173694506e-05,-4.0565858124266796e-21,1.0351729965368557e-20,1.1655011803668458e-05,4.544244225469439e-22,-6.01035491532782e-21,3.893128279284113e-22,2.0735720348505152e-35,0.00023310023243539035,-4.23818601120729e-05,-7.623296525288703e-21,-5.18000524607487e-05,7.962082723885287e-21,4.544244225469439e-22,9.4181914391811e-06,2.482644068936671e-35,1.0587911840678754e-21,0.0,0.00025252526393160224,-2.632718917372923e-19,-0.00021645022206939757,-2.0868040115184184e-19,2.6119392679685385e-20,-6.01035491532782e-21,2.482644068936671e-35,2.7056277758674696e-05,1.3256587943850188e-20,1.729489419565044e-20,0.0003030303050763905,-1.4795287185777596e-19,-7.575757626909763e-05,-6.73400645609945e-05,1.2794014651261183e-20,3.893128279284113e-22,1.0587911840678754e-21,1.3256587943850188e-20,1.6835016140248626e-05,0.0,0.00021043770539108664,-2.371692252312041e-19,-1.4230153513872246e-19,-0.00015782828268129379,2.1335731264695933e-20,2.0735720348505152e-35,0.0,1.729489419565044e-20,0.0,1.7536476661916822e-05,12.0,9.0,11.0,0.02973819151520729,-0.0038184039294719696,-0.00488627515733242,-0.004118103999644518,0.0001387501397402957,0.00023310023243539035,0.00019425019854679704,0.00022956840984988958,0.00025252526393160224,0.00016187515575438738,-0.0038184039294719696,0.001332505838945508,0.00023310023243539035,0.00019425019854679704,-8.325008093379438e-05,-4.23818601120729e-05,-3.5318218579050153e-05,1.5304226859757038e-19,5.084054639377498e-20,1.2874900798265365e-19,-0.00488627515733242,0.00023310023243539035,0.002336615463718772,0.00025252526393160224,1.7004858500377779e-19,-5.827505810884759e-05,8.470329472543003e-22,-0.00019677291857078671,-6.313131598290056e-05,2.168404344971009e-19,-0.004118103999644518,0.00019425019854679704,0.00025252526393160224,0.0015790382167324424,1.3411576872159477e-19,-3.918833179352108e-21,-3.885003752657212e-05,3.337159885695918e-19,-5.0505052058724687e-05,-0.00010791677777888253,0.0001387501397402957,-8.325008093379438e-05,1.7004858500377779e-19,1.3411576872159477e-19,7.568189175799489e-06,-8.822496771576053e-21,-6.120286330163194e-21,-1.1872451438346148e-20,-5.309047523653852e-21,-7.930591699471452e-21,0.00023310023243539035,-4.23818601120729e-05,-5.827505810884759e-05,-3.918833179352108e-21,-8.822496771576053e-21,1.0595465028018225e-05,-2.707154037068375e-22,-5.611327107579431e-21,1.3519419938675902e-21,1.6080762719248893e-35,0.00019425019854679704,-3.5318218579050153e-05,8.470329472543003e-22,-3.885003752657212e-05,-6.120286330163194e-21,-2.707154037068375e-22,7.06364335201215e-06,3.159728815010309e-35,4.235164736271502e-22,-8.046812998915853e-21,0.00022956840984988958,1.5304226859757038e-19,-0.00019677291857078671,3.337159885695918e-19,-1.1872451438346148e-20,-5.611327107579431e-21,3.159728815010309e-35,2.459661482134834e-05,-1.807716471705552e-20,-2.614073135454984e-20,0.00025252526393160224,5.084054639377498e-20,-6.313131598290056e-05,-5.0505052058724687e-05,-5.309047523653852e-21,1.3519419938675902e-21,4.235164736271502e-22,-1.807716471705552e-20,1.2626263014681172e-05,-4.235164736271502e-22,0.00016187515575438738,1.2874900798265365e-19,2.168404344971009e-19,-0.00010791677777888253,-7.930591699471452e-21,1.6080762719248893e-35,-8.046812998915853e-21,-2.614073135454984e-20,-4.235164736271502e-22,1.0791677595989313e-05,12.0,9.0,12.0,0.0275422353297472,-0.003513900563120842,-0.004496891982853413,-0.003513900563120842,0.00012718762445729226,0.0002136752154910937,0.00016436555597465485,0.00021043770539108664,0.0002136752154910937,0.00012718762445729226,-0.003513900563120842,0.001223954139277339,0.0002136752154910937,0.00016436555597465485,-7.631257903994992e-05,-3.885003752657212e-05,-2.9884644391131587e-05,1.4028874621443952e-19,4.250600055748712e-20,6.945670167485263e-20,-0.004496891982853413,0.0002136752154910937,0.0021463490556925535,0.0002136752154910937,1.5418222687924502e-19,-5.3418803872773424e-05,-8.470329472543003e-21,-0.0001803751802071929,-5.3418803872773424e-05,1.6432439176733427e-19,-0.003513900563120842,0.00016436555597465485,0.0002136752154910937,0.001223954139277339,1.1315357735812615e-19,-3.321278187571549e-21,-2.9884644391131587e-05,2.736898955102738e-19,-3.885003752657212e-05,-7.631257903994992e-05,0.00012718762445729226,-7.631257903994992e-05,1.5418222687924502e-19,1.1315357735812615e-19,6.937506896065315e-06,-7.54813618064575e-21,-4.236171247055917e-21,-1.0883080417834505e-20,-4.6550598713380315e-21,-6.458209401333496e-21,0.0002136752154910937,-3.885003752657212e-05,-5.3418803872773424e-05,-3.321278187571549e-21,-7.54813618064575e-21,9.71250938164303e-06,1.7124222712545357e-22,-5.143716818203733e-21,5.948615051057721e-22,1.0838057914581491e-35,0.00016436555597465485,-2.9884644391131587e-05,-8.470329472543003e-21,-2.9884644391131587e-05,-4.236171247055917e-21,1.7124222712545357e-22,5.433571914181812e-06,5.266214691683848e-36,1.164670302474663e-21,4.235164736271502e-22,0.00021043770539108664,1.4028874621443952e-19,-0.0001803751802071929,2.736898955102738e-19,-1.0883080417834505e-20,-5.143716818203733e-21,5.266214691683848e-36,2.2546897525899112e-05,-1.2746719145710043e-20,-2.024573016837552e-20,0.0002136752154910937,4.250600055748712e-20,-5.3418803872773424e-05,-3.885003752657212e-05,-4.6550598713380315e-21,5.948615051057721e-22,1.164670302474663e-21,-1.2746719145710043e-20,9.71250938164303e-06,-4.235164736271502e-22,0.00012718762445729226,6.945670167485263e-20,1.6432439176733427e-19,-7.631257903994992e-05,-6.458209401333496e-21,1.0838057914581491e-35,4.235164736271502e-22,-2.024573016837552e-20,-4.235164736271502e-22,6.937506896065315e-06,12.0,9.0,13.0,0.025649137794971466,-0.003254437819123268,-0.004165065474808216,-0.003033718327060342,0.00011740396439563483,0.0001972386526176706,0.00014088476018514484,0.00019425019854679704,0.00018315018678549677,0.0001017501053865999,-0.003254437819123268,0.0011317741591483355,0.0001972386526176706,0.00014088476018514484,-7.044238009257242e-05,-3.586157254176214e-05,-2.5615410777390935e-05,-2.1555017491318595e-19,-9.009858027080716e-20,-9.486769009248164e-20,-0.004165065474808216,0.0001972386526176706,0.001984767382964492,0.00018315018678549677,-2.4351569093283477e-19,-4.930966315441765e-05,-4.235164736271502e-21,-0.00016650016186758876,-4.578754669637419e-05,-6.606856988583543e-20,-0.003033718327060342,0.00014088476018514484,0.00018315018678549677,0.0009681201772764325,-1.8405206776535577e-19,2.1051173056042022e-21,-2.3480792151531205e-05,-1.33006674616526e-19,-3.052503234357573e-05,-5.550005516852252e-05,0.00011740396439563483,-7.044238009257242e-05,-2.4351569093283477e-19,-1.8405206776535577e-19,6.403852694347734e-06,6.4698311273811524e-21,6.199525628422442e-21,2.0091840647110845e-20,7.866148352081176e-21,9.872382839361912e-21,0.0001972386526176706,-3.586157254176214e-05,-4.930966315441765e-05,2.1051173056042022e-21,6.4698311273811524e-21,8.965393135440536e-06,-1.67702324253801e-22,-1.365017142490575e-21,-2.956886195080215e-22,9.73309322480854e-36,0.00014088476018514484,-2.5615410777390935e-05,-4.235164736271502e-21,-2.3480792151531205e-05,6.199525628422442e-21,-1.67702324253801e-22,4.2692349779827055e-06,1.692711865184094e-35,7.411538288475128e-22,-2.541098841762901e-21,0.00019425019854679704,-2.1555017491318595e-19,-0.00016650016186758876,-1.33006674616526e-19,2.0091840647110845e-20,-1.365017142490575e-21,1.692711865184094e-35,2.0812520233448595e-05,9.244872640686675e-21,8.002264799285898e-21,0.00018315018678549677,-9.009858027080716e-20,-4.578754669637419e-05,-3.052503234357573e-05,7.866148352081176e-21,-2.956886195080215e-22,7.411538288475128e-22,9.244872640686675e-21,7.631258085893933e-06,0.0,0.0001017501053865999,-9.486769009248164e-20,-6.606856988583543e-20,-5.550005516852252e-05,9.872382839361912e-21,9.73309322480854e-36,-2.541098841762901e-21,8.002264799285898e-21,0.0,4.625004748959327e-06,12.0,9.0,14.0,0.024000134319067,-0.0030306994449347258,-0.0038788989186286926,-0.0026457570493221283,0.00010901796485995874,0.00018315018678549677,0.00012210012937430292,0.0001803751802071929,0.00015873015217948705,8.26719551696442e-05,-0.0030306994449347258,0.0010525189572945237,0.00018315018678549677,0.00012210012937430292,-6.541077891597524e-05,-3.330003164592199e-05,-2.2200021703611128e-05,1.2024750414077506e-19,4.0350080306664096e-20,5.929230630780102e-20,-0.0038788989186286926,0.00018315018678549677,0.0018458326812833548,0.00015873015217948705,1.3042045565728776e-19,-4.578754669637419e-05,7.623296525288703e-21,-0.00015460730355698615,-3.968253804487176e-05,9.994988777600744e-20,-0.0026457570493221283,0.00012210012937430292,0.00015873015217948705,0.000779063324443996,9.278459727848023e-20,-6.337326325214247e-21,-1.8784634448820725e-05,2.222983272750906e-19,-2.44200236920733e-05,-4.13359775848221e-05,0.00010901796485995874,-6.541077891597524e-05,1.3042045565728776e-19,9.278459727848023e-20,5.946434612269513e-06,-6.0077005056668345e-21,-4.720881718450302e-21,-9.328354874656309e-21,-3.5001949710757464e-21,-4.055824870886616e-21,0.00018315018678549677,-3.330003164592199e-05,-4.578754669637419e-05,-6.337326325214247e-21,-6.0077005056668345e-21,8.325007911480498e-06,1.6258187229422211e-22,-4.408900129888914e-21,1.360781476922292e-21,6.817867234769268e-36,0.00012210012937430292,-2.2200021703611128e-05,7.623296525288703e-21,-1.8784634448820725e-05,-4.720881718450302e-21,1.6258187229422211e-22,3.4153879369114293e-06,1.88079096131566e-35,-1.2705494208814505e-21,-2.329340604949326e-21,0.0001803751802071929,1.2024750414077506e-19,-0.00015460730355698615,2.222983272750906e-19,-9.328354874656309e-21,-4.408900129888914e-21,1.88079096131566e-35,1.932591294462327e-05,-1.373524036738926e-20,-1.2873643709916483e-20,0.00015873015217948705,4.0350080306664096e-20,-3.968253804487176e-05,-2.44200236920733e-05,-3.5001949710757464e-21,1.360781476922292e-21,-1.2705494208814505e-21,-1.373524036738926e-20,6.105005923018325e-06,0.0,8.26719551696442e-05,5.929230630780102e-20,9.994988777600744e-20,-4.13359775848221e-05,-4.055824870886616e-21,6.817867234769268e-36,-2.329340604949326e-21,-1.2873643709916483e-20,0.0,3.179690793331247e-06,12.0,9.0,15.0,0.02255077287554741,-0.0028357752598822117,-0.0036295647732913494,-0.002327802823856473,0.0001017501053865999,0.0001709401694824919,0.00010683760774554685,0.00016835016140248626,0.00013888889225199819,6.808278703829274e-05,-0.0028357752598822117,0.0009836460230872035,0.0001709401694824919,0.00010683760774554685,-6.105006468715146e-05,-3.108003147644922e-05,-1.942501876328606e-05,7.959939647552179e-20,2.4197974901346878e-20,5.166900978251232e-20,-0.0036295647732913494,0.0001709401694824919,0.001725092064589262,0.00013888889225199819,1.1431079011039076e-19,-4.273504237062298e-05,2.117582368135751e-21,-0.00014430013834498823,-3.4722223062999547e-05,-4.319868030996932e-20,-0.002327802823856473,0.00010683760774554685,0.00013888889225199819,0.0006362972781062126,7.880656324543532e-20,4.2624923926412956e-21,-1.5262516171787865e-05,-7.357847158137047e-20,-1.984126902243588e-05,-3.142282730550505e-05,0.0001017501053865999,-6.105006468715146e-05,1.1431079011039076e-19,7.880656324543532e-20,5.550005425902782e-06,-4.313220616955174e-21,-3.6012677177592034e-21,-8.706464495826317e-21,-2.9909085920973703e-21,-3.3509373381239417e-21,0.0001709401694824919,-3.108003147644922e-05,-4.273504237062298e-05,4.2624923926412956e-21,-4.313220616955174e-21,7.770007869112305e-06,-1.3899381798760441e-21,4.042926831003184e-21,8.455418613039133e-22,4.86654661240427e-36,0.00010683760774554685,-1.942501876328606e-05,2.117582368135751e-21,-1.5262516171787865e-05,-3.6012677177592034e-21,-1.3899381798760441e-21,2.775002712951391e-06,3.76158192263132e-37,7.940933880509066e-22,-2.2234614865425384e-21,0.00016835016140248626,7.959939647552179e-20,-0.00014430013834498823,-7.357847158137047e-20,-8.706464495826317e-21,4.042926831003184e-21,3.76158192263132e-37,1.803751729312353e-05,5.64237288394698e-36,5.255605112955034e-21,0.00013888889225199819,2.4197974901346878e-20,-3.4722223062999547e-05,-1.984126902243588e-05,-2.9909085920973703e-21,8.455418613039133e-22,7.940933880509066e-22,5.64237288394698e-36,4.96031725560897e-06,0.0,6.808278703829274e-05,5.166900978251232e-20,-4.319868030996932e-20,-3.142282730550505e-05,-3.3509373381239417e-21,4.86654661240427e-36,-2.2234614865425384e-21,5.255605112955034e-21,0.0,2.2444876321969787e-06,12.0,9.0,16.0,0.02126680128276348,-0.002664431231096387,-0.003410376375541091,-0.0020639558788388968,9.5390721980948e-05,0.00016025641525629908,9.426847827853635e-05,0.00015782828268129379,0.00012254902685526758,5.673565829056315e-05,-0.002664431231096387,0.0009232393349520862,0.00016025641525629908,9.426847827853635e-05,-5.723443246097304e-05,-2.9137529054423794e-05,-1.7139722331194207e-05,8.978541486077341e-20,2.837560373301906e-20,2.625802136488331e-20,-0.003410376375541091,0.00016025641525629908,0.001619188580662012,0.00012254902685526758,1.091388691797971e-19,-4.006410381407477e-05,0.0,-0.00013528138515539467,-3.0637256713816896e-05,6.945670167485263e-20,-0.0020639558788388968,9.426847827853635e-05,0.00012254902685526758,0.0005264520295895636,6.579457277027577e-20,-5.579470160853564e-35,-1.25691303765052e-05,1.6258598123717458e-19,-1.633986903470941e-05,-2.431528082524892e-05,9.5390721980948e-05,-5.723443246097304e-05,1.091388691797971e-19,6.579457277027577e-20,5.203130058362149e-06,-4.4123255785095495e-21,-2.7685181763556478e-21,-8.16231051532427e-21,-2.6096797078030763e-21,-2.6752668908841485e-21,0.00016025641525629908,-2.9137529054423794e-05,-4.006410381407477e-05,-5.579470160853564e-35,-4.4123255785095495e-21,7.2843822636059485e-06,2.34774127653141e-36,6.921751117544299e-36,2.213044253034728e-36,2.2686630222264286e-36,9.426847827853635e-05,-1.7139722331194207e-05,0.0,-1.25691303765052e-05,-2.7685181763556478e-21,2.34774127653141e-36,2.2852964320918545e-06,1.504632769052528e-36,5.293955920339377e-23,4.235164736271502e-22,0.00015782828268129379,8.978541486077341e-20,-0.00013528138515539467,1.6258598123717458e-19,-8.16231051532427e-21,6.921751117544299e-36,1.504632769052528e-36,1.6910173144424334e-05,-8.041680278591476e-21,-8.694617395373483e-21,0.00012254902685526758,2.837560373301906e-20,-3.0637256713816896e-05,-1.633986903470941e-05,-2.6096797078030763e-21,2.213044253034728e-36,5.293955920339377e-23,-8.041680278591476e-21,4.084967258677352e-06,1.0587911840678754e-22,5.673565829056315e-05,2.625802136488331e-20,6.945670167485263e-20,-2.431528082524892e-05,-2.6752668908841485e-21,2.2686630222264286e-36,4.235164736271502e-22,-8.694617395373483e-21,1.0587911840678754e-22,1.6210187823162414e-06,12.0,10.0,3.0,0.07628482580184937,-0.011388611048460007,-0.013315850868821144,-0.03330419585108757,0.0004578754596877843,0.0006993007264100015,0.001923076924867928,0.0006313131307251751,0.0022727272007614374,0.004166666883975267,-0.011388611048460007,0.004176883492618799,0.0006993007264100015,0.001923076924867928,-0.00027472528745420277,-0.0001271455839741975,-0.00034965036320500076,-5.065314927223595e-19,-9.016003979031985e-19,-8.821080522045089e-18,-0.013315850868821144,0.0006993007264100015,0.005957815330475569,0.0022727272007614374,-7.766701726159724e-19,-0.0001554001501062885,3.543409907423457e-21,-0.0004734848625957966,-0.0005050505278632045,-2.725554980683106e-32,-0.03330419585108757,0.001923076924867928,0.0022727272007614374,0.07497086375951767,-2.558296960673644e-18,-7.962343641207411e-20,-0.001923076924867928,-2.1830067000337267e-20,-0.0022727272007614374,-0.02500000037252903,0.0004578754596877843,-0.00027472528745420277,-7.766701726159724e-19,-2.558296960673644e-18,2.4975024643936194e-05,1.937612746886074e-20,6.330165073684555e-20,6.411883409621405e-20,9.67901353842373e-20,8.872911038842202e-19,0.0006993007264100015,-0.0001271455839741975,-0.0001554001501062885,-7.962343641207411e-20,1.937612746886074e-20,2.82545734080486e-05,2.199978119757842e-20,-4.150048174357222e-20,-9.194525291039612e-21,6.70092299560672e-34,0.001923076924867928,-0.00034965036320500076,3.543409907423457e-21,-0.001923076924867928,6.330165073684555e-20,2.199978119757842e-20,0.00034965036320500076,-2.915175774250942e-22,-1.2171125193347592e-19,-9.391216206813335e-19,0.0006313131307251751,-5.065314927223595e-19,-0.0004734848625957966,-2.1830067000337267e-20,6.411883409621405e-20,-4.150048174357222e-20,-2.915175774250942e-22,5.260942634777166e-05,5.207425477344871e-21,2.2146655197537604e-33,0.0022727272007614374,-9.016003979031985e-19,-0.0005050505278632045,-0.0022727272007614374,9.67901353842373e-20,-9.194525291039612e-21,-1.2171125193347592e-19,5.207425477344871e-21,0.0005050505278632045,3.676473560237894e-33,0.004166666883975267,-8.821080522045089e-18,-2.725554980683106e-32,-0.02500000037252903,8.872911038842202e-19,6.70092299560672e-34,-9.391216206813335e-19,2.2146655197537604e-33,3.676473560237894e-33,0.012500000186264515,12.0,10.0,4.0,0.06200091540813446,-0.008829919621348381,-0.010327797383069992,-0.021232517436146736,0.00034340660204179585,0.0005244755302555859,0.0011538461549207568,0.0004734848625957966,0.0013636363437399268,0.0020833334419876337,-0.008829919621348381,0.0031851103994995356,0.0005244755302555859,0.0011538461549207568,-0.00020604395831469446,-9.535918798064813e-05,-0.00020979020337108523,4.215045894316622e-19,2.569673537529604e-19,1.9282016416384197e-18,-0.010327797383069992,0.0005244755302555859,0.004544118884950876,0.0013636363437399268,2.6373632780184667e-19,-0.00011655011621769518,-7.491522130065031e-20,-0.00035511364694684744,-0.0003030303050763905,-2.1169292256256337e-33,-0.021232517436146736,0.0011538461549207568,0.0013636363437399268,0.028738344088196754,8.194017026750024e-19,-1.491499217575881e-20,-0.0007692307699471712,4.1289479601537306e-20,-0.0009090909152291715,-0.0062500000931322575,0.00034340660204179585,-0.00020604395831469446,2.6373632780184667e-19,8.194017026750024e-19,1.8731268937699497e-05,-3.3412310925719065e-22,-4.030558057464816e-20,-2.4165853797950825e-20,-2.930959081099373e-20,-1.552759535194962e-19,0.0005244755302555859,-9.535918798064813e-05,-0.00011655011621769518,-1.491499217575881e-20,-3.3412310925719065e-22,2.119093005603645e-05,2.1881607057185926e-21,-3.5521869076457555e-20,6.400237793079006e-22,8.361650623777649e-36,0.0011538461549207568,-0.00020979020337108523,-7.491522130065031e-20,-0.0007692307699471712,-4.030558057464816e-20,2.1881607057185926e-21,0.0001398601452820003,9.513963072970292e-24,4.1858631561762074e-20,-1.4677747405673225e-19,0.0004734848625957966,4.215045894316622e-19,-0.00035511364694684744,4.1289479601537306e-20,-2.4165853797950825e-20,-3.5521869076457555e-20,9.513963072970292e-24,3.9457070670323446e-05,-9.187067740829564e-21,1.980486198412333e-34,0.0013636363437399268,2.569673537529604e-19,-0.0003030303050763905,-0.0009090909152291715,-2.930959081099373e-20,6.400237793079006e-22,4.1858631561762074e-20,-9.187067740829564e-21,0.00020202020823489875,1.925541135855377e-34,0.0020833334419876337,1.9282016416384197e-18,-2.1169292256256337e-33,-0.0062500000931322575,-1.552759535194962e-19,8.361650623777649e-36,-1.4677747405673225e-19,1.980486198412333e-34,1.925541135855377e-34,0.0020833334419876337,12.0,10.0,5.0,0.052312687039375305,-0.007217782083898783,-0.008444055914878845,-0.014750249683856964,0.00027472528745420277,0.00041958040674217045,0.0007692307699471712,0.0003787878667935729,0.0009090909152291715,0.0011904762359336019,-0.007217782083898783,0.0025760603602975607,0.00041958040674217045,0.0007692307699471712,-0.00016483516083098948,-7.628734601894394e-05,-0.0001398601452820003,-3.7947076036992655e-19,-4.675621868843738e-19,-1.6099521727647678e-18,-0.008444055914878845,0.00041958040674217045,0.003675699234008789,0.0009090909152291715,-5.053905004649191e-19,-9.324009442934766e-05,-2.5887436372523885e-20,-0.0002840909000951797,-0.00020202020823489875,-2.042049404476237e-18,-0.014750249683856964,0.0007692307699471712,0.0009090909152291715,0.014517981559038162,-9.329116656301682e-19,-1.3825170409610258e-20,-0.0003846153849735856,-1.179069862577986e-18,-0.00045454545761458576,-0.0023809524718672037,0.00027472528745420277,-0.00016483516083098948,-5.053905004649191e-19,-9.329116656301682e-19,1.4985014786361717e-05,1.4407843218558573e-20,2.790982673114355e-20,3.882508883689163e-20,3.8946170630228344e-20,1.5210705044219969e-19,0.00041958040674217045,-7.628734601894394e-05,-9.324009442934766e-05,-1.3825170409610258e-20,1.4407843218558573e-20,1.695274477242492e-05,1.3581463533327173e-22,-1.0164395367051604e-20,3.3881317890172014e-21,4.6614386324116833e-35,0.0007692307699471712,-0.0001398601452820003,-2.5887436372523885e-20,-0.0003846153849735856,2.790982673114355e-20,1.3581463533327173e-22,6.993007264100015e-05,-9.706242396591577e-24,1.056094930700122e-20,-3.16126781250173e-20,0.0003787878667935729,-3.7947076036992655e-19,-0.0002840909000951797,-1.179069862577986e-18,3.882508883689163e-20,-1.0164395367051604e-20,-9.706242396591577e-24,3.156565799145028e-05,4.743384504624082e-20,2.4030801376432484e-19,0.0009090909152291715,-4.675621868843738e-19,-0.00020202020823489875,-0.00045454545761458576,3.8946170630228344e-20,3.3881317890172014e-21,1.056094930700122e-20,4.743384504624082e-20,0.00010101010411744937,-6.036136616369192e-20,0.0011904762359336019,-1.6099521727647678e-18,-2.042049404476237e-18,-0.0023809524718672037,1.5210705044219969e-19,4.6614386324116833e-35,-3.16126781250173e-20,2.4030801376432484e-19,-6.036136616369192e-20,0.0005952381179668009,12.0,10.0,6.0,0.04527902603149414,-0.006106393411755562,-0.007144938223063946,-0.010854770429432392,0.00022893772984389216,0.00034965036320500076,0.0005494505749084055,0.00031565656536258757,0.0006493506371043622,0.0007440476329065859,-0.006106393411755562,0.0021633668802678585,0.00034965036320500076,0.0005494505749084055,-0.00013736264372710139,-6.357279198709875e-05,-9.990009857574478e-05,-2.541098841762901e-19,-3.2187251995663413e-19,-9.434421918158511e-19,-0.007144938223063946,0.00034965036320500076,0.003087132703512907,0.0006493506371043622,-4.110242886187978e-19,-7.770007505314425e-05,-5.654221511439777e-20,-0.0002367424312978983,-0.00014430013834498823,-2.8195892390243102e-33,-0.010854770429432392,0.0005494505749084055,0.0006493506371043622,0.008434169925749302,-7.210230444725395e-19,-4.2213485582198787e-20,-0.00021978022414259613,-6.776263578034403e-21,-0.0002597402490209788,-0.0011160714784637094,0.00022893772984389216,-0.00013736264372710139,-4.110242886187978e-19,-7.210230444725395e-19,1.2487512321968097e-05,9.940755294661816e-21,2.912379505942181e-20,3.193967619209144e-20,2.7451096920346074e-20,8.714466660459201e-20,0.00034965036320500076,-6.357279198709875e-05,-7.770007505314425e-05,-4.2213485582198787e-20,9.940755294661816e-21,1.41272867040243e-05,6.6483066536494054e-21,-2.0328790734103208e-20,8.470329472543003e-22,6.68846068918934e-35,0.0005494505749084055,-9.990009857574478e-05,-5.654221511439777e-20,-0.00021978022414259613,2.912379505942181e-20,6.6483066536494054e-21,3.996003943029791e-05,9.320520337285987e-23,6.580122414250601e-21,-6.0596440554021834e-21,0.00031565656536258757,-2.541098841762901e-19,-0.0002367424312978983,-6.776263578034403e-21,3.193967619209144e-20,-2.0328790734103208e-20,9.320520337285987e-23,2.630471317388583e-05,0.0,2.2066988363798028e-34,0.0006493506371043622,-3.2187251995663413e-19,-0.00014430013834498823,-0.0002597402490209788,2.7451096920346074e-20,8.470329472543003e-22,6.580122414250601e-21,0.0,5.77200589759741e-05,1.868890573340397e-34,0.0007440476329065859,-9.434421918158511e-19,-2.8195892390243102e-33,-0.0011160714784637094,8.714466660459201e-20,6.68846068918934e-35,-6.0596440554021834e-21,2.2066988363798028e-34,1.868890573340397e-34,0.00022321428696159273,12.0,10.0,7.0,0.03992931544780731,-0.005292921327054501,-0.006193806417286396,-0.008327089250087738,0.00019623234402388334,0.00029970030300319195,0.00041208791662938893,0.00027056277031078935,0.0004870129923801869,0.0004960317746736109,-0.005292921327054501,0.0018650180427357554,0.00029970030300319195,0.00041208791662938893,-0.00011773940059356391,-5.4490963520947844e-05,-7.492507575079799e-05,-6.06475590234079e-19,-5.065257024580716e-19,2.34879899488387e-19,-0.006193806417286396,0.00029970030300319195,0.0026615746319293976,0.0004870129923801869,-7.193416447811606e-19,-6.660006329184398e-05,6.524171239070918e-20,-0.000202922077733092,-0.00010822511103469878,5.683323276353041e-19,-0.008327089250087738,0.00041208791662938893,0.0004870129923801869,0.005355061497539282,-2.025721376172323e-19,-1.9272903729467218e-19,-0.00013736264372710139,5.759824041329242e-19,-0.00016233765927609056,-0.0005952381179668009,0.00019623234402388334,-0.00011773940059356391,-7.193416447811606e-19,-2.025721376172323e-19,1.0703582120186184e-05,1.6891301142558453e-20,3.8238301935306854e-21,5.1152710139785717e-20,3.633732698876706e-20,-1.7164858010624122e-21,0.00029970030300319195,-5.4490963520947844e-05,-6.660006329184398e-05,-1.9272903729467218e-19,1.6891301142558453e-20,1.2109103408874944e-05,1.6096975109960266e-20,1.6940658945086007e-20,2.244637310223896e-20,2.2406340670596625e-22,0.00041208791662938893,-7.492507575079799e-05,6.524171239070918e-20,-0.00013736264372710139,3.8238301935306854e-21,1.6096975109960266e-20,2.4975024643936194e-05,-1.780253913810078e-20,-9.950168513097441e-21,-8.465909872379527e-20,0.00027056277031078935,-6.06475590234079e-19,-0.000202922077733092,5.759824041329242e-19,5.1152710139785717e-20,1.6940658945086007e-20,-1.780253913810078e-20,2.2546897525899112e-05,-1.5246593050577406e-20,-5.59049887746993e-20,0.0004870129923801869,-5.065257024580716e-19,-0.00010822511103469878,-0.00016233765927609056,3.633732698876706e-20,2.244637310223896e-20,-9.950168513097441e-21,-1.5246593050577406e-20,3.607503458624706e-05,-2.2139917225572267e-20,0.0004960317746736109,2.34879899488387e-19,5.683323276353041e-19,-0.0005952381179668009,-1.7164858010624122e-21,2.2406340670596625e-22,-8.465909872379527e-20,-5.59049887746993e-20,-2.2139917225572267e-20,9.920635056914762e-05,12.0,10.0,8.0,0.03571879491209984,-0.004671370144933462,-0.005466928705573082,-0.00659236591309309,0.00017170330102089792,0.00026223776512779295,0.00032051283051259816,0.0002367424312978983,0.0003787878667935729,0.00034722223062999547,-0.004671370144933462,0.0016391752287745476,0.00026223776512779295,0.00032051283051259816,-0.00010302197915734723,-4.7679593990324065e-05,-5.827505810884759e-05,2.0328790734103208e-19,8.978549240895584e-20,2.37313826742036e-19,-0.005466928705573082,0.00026223776512779295,0.002339399652555585,0.0003787878667935729,1.3323147387268437e-19,-5.827505810884759e-05,-2.0312546005471918e-20,-0.00017755682347342372,-8.417508070124313e-05,-2.463532413419972e-34,-0.00659236591309309,0.00032051283051259816,0.0003787878667935729,0.0036196443252265453,2.1471333955192078e-19,1.2666939029657724e-20,-9.157509339274839e-05,3.3881317890172014e-21,-0.00010822511103469878,-0.00034722223062999547,0.00017170330102089792,-0.00010302197915734723,1.3323147387268437e-19,2.1471333955192078e-19,9.365634468849748e-06,6.982298496451967e-22,-8.921428865307102e-21,-1.2088481287541735e-20,-8.055301293717325e-21,-1.8485231330921254e-20,0.00026223776512779295,-4.7679593990324065e-05,-5.827505810884759e-05,1.2666939029657724e-20,6.982298496451967e-22,1.0595465028018225e-05,9.226669618500715e-22,-1.6940658945086007e-20,-3.8116482626443515e-21,-2.1431036305974666e-36,0.00032051283051259816,-5.827505810884759e-05,-2.0312546005471918e-20,-9.157509339274839e-05,-8.921428865307102e-21,9.226669618500715e-22,1.6650015822960995e-05,1.0156271191104564e-35,4.3536793616524635e-21,-9.707504902206067e-21,0.0002367424312978983,2.0328790734103208e-19,-0.00017755682347342372,3.3881317890172014e-21,-1.2088481287541735e-20,-1.6940658945086007e-20,1.0156271191104564e-35,1.9728535335161723e-05,-8.470329472543003e-22,2.3632234856202234e-35,0.0003787878667935729,8.978549240895584e-20,-8.417508070124313e-05,-0.00010822511103469878,-8.055301293717325e-21,-3.8116482626443515e-21,4.3536793616524635e-21,-8.470329472543003e-22,2.405002487648744e-05,1.298577018040998e-35,0.00034722223062999547,2.37313826742036e-19,-2.463532413419972e-34,-0.00034722223062999547,-1.8485231330921254e-20,-2.1431036305974666e-36,-9.707504902206067e-21,2.3632234856202234e-35,1.298577018040998e-35,4.960317528457381e-05,12.0,10.0,9.0,0.032316386699676514,-0.004180819261819124,-0.004893162287771702,-0.005349650513380766,0.00015262515807989985,0.00023310023243539035,0.00025641024694778025,0.00021043770539108664,0.0003030303050763905,0.00025252526393160224,-0.004180819261819124,0.0014622246380895376,0.00023310023243539035,0.00025641024694778025,-9.157509339274839e-05,-4.23818601120729e-05,-4.662004721467383e-05,-2.337810934421869e-19,-1.5415999640028266e-19,-2.632718917372923e-19,-0.004893162287771702,0.00023310023243539035,0.0020869486033916473,0.0003030303050763905,-2.8340417537712587e-19,-5.18000524607487e-05,-1.1616705610638078e-20,-0.00015782828268129379,-6.73400645609945e-05,-8.902244634097732e-34,-0.005349650513380766,0.00025641024694778025,0.0003030303050763905,0.0025639638770371675,-3.2305996357534814e-19,-6.314442745153009e-21,-6.410256173694506e-05,0.0,-7.575757626909763e-05,-0.00021645022206939757,0.00015262515807989985,-9.157509339274839e-05,-2.8340417537712587e-19,-3.2305996357534814e-19,8.325007911480498e-06,7.987890112762088e-21,1.0257412796285472e-20,2.093770067810594e-20,1.2819789728395306e-20,2.6119392679685385e-20,0.00023310023243539035,-4.23818601120729e-05,-5.18000524607487e-05,-6.314442745153009e-21,7.987890112762088e-21,9.4181914391811e-06,5.690850143329069e-22,0.0,1.0587911840678754e-21,2.4656303953297014e-35,0.00025641024694778025,-4.662004721467383e-05,-1.1616705610638078e-20,-6.410256173694506e-05,1.0257412796285472e-20,5.690850143329069e-22,1.1655011803668458e-05,2.4638361593235146e-35,2.121684545817096e-21,-6.01035491532782e-21,0.00021043770539108664,-2.337810934421869e-19,-0.00015782828268129379,0.0,2.093770067810594e-20,0.0,2.4638361593235146e-35,1.7536476661916822e-05,0.0,6.678408146191146e-35,0.0003030303050763905,-1.5415999640028266e-19,-6.73400645609945e-05,-7.575757626909763e-05,1.2819789728395306e-20,1.0587911840678754e-21,2.121684545817096e-21,0.0,1.6835016140248626e-05,3.8389521802007256e-35,0.00025252526393160224,-2.632718917372923e-19,-8.902244634097732e-34,-0.00021645022206939757,2.6119392679685385e-20,2.4656303953297014e-35,-6.01035491532782e-21,6.678408146191146e-35,3.8389521802007256e-35,2.7056277758674696e-05,12.0,10.0,10.0,0.029508672654628754,-0.003783716354519129,-0.00442863954231143,-0.00442863954231143,0.00013736264372710139,0.00020979020337108523,0.00020979020337108523,0.00018939393339678645,0.0002479338727425784,0.00018939393339678645,-0.003783716354519129,0.0013198165688663721,0.00020979020337108523,0.00020979020337108523,-8.241758041549474e-05,-3.814367300947197e-05,-3.814367300947197e-05,-1.8973538018496328e-19,-1.0156444093413438e-19,-1.8634724839594607e-19,-0.00442863954231143,0.00020979020337108523,0.0018837633542716503,0.0002479338727425784,-2.615238523078146e-19,-4.662004721467383e-05,4.235164736271502e-21,-0.00014204545004758984,-5.509641778189689e-05,-2.744386749103933e-19,-0.00442863954231143,0.00020979020337108523,0.0002479338727425784,0.0018837633542716503,-2.6091840779821407e-19,2.2132089705908557e-21,-4.662004721467383e-05,-3.293645274090742e-19,-5.509641778189689e-05,-0.00014204545004758984,0.00013736264372710139,-8.241758041549474e-05,-2.615238523078146e-19,-2.6091840779821407e-19,7.492507393180858e-06,7.733788952756321e-21,8.014878495833765e-21,1.9069868693824383e-20,1.0538100865960144e-20,1.8848323230153686e-20,0.00020979020337108523,-3.814367300947197e-05,-4.662004721467383e-05,2.2132089705908557e-21,7.733788952756321e-21,8.47637238621246e-06,5.805014093532654e-22,-4.658681209898652e-21,-1.1235232166841391e-21,-6.137940137920608e-24,0.00020979020337108523,-3.814367300947197e-05,4.235164736271502e-21,-4.662004721467383e-05,8.014878495833765e-21,5.805014093532654e-22,8.47637238621246e-06,1.0587911840678754e-22,-1.6940658945086007e-21,-5.505714157152952e-21,0.00018939393339678645,-1.8973538018496328e-19,-0.00014204545004758984,-3.293645274090742e-19,1.9069868693824383e-20,-4.658681209898652e-21,1.0587911840678754e-22,1.578282899572514e-05,1.2281977735187355e-20,3.070494433796839e-20,0.0002479338727425784,-1.0156444093413438e-19,-5.509641778189689e-05,-5.509641778189689e-05,1.0538100865960144e-20,-1.1235232166841391e-21,-1.6940658945086007e-21,1.2281977735187355e-20,1.224364859808702e-05,0.0,0.00018939393339678645,-1.8634724839594607e-19,-2.744386749103933e-19,-0.00014204545004758984,1.8848323230153686e-20,-6.137940137920608e-24,-5.505714157152952e-21,3.070494433796839e-20,0.0,1.578282899572514e-05,12.0,10.0,11.0,0.02715163677930832,-0.0034556351602077484,-0.004044818691909313,-0.0037269548047333956,0.00012487512140069157,0.00019071837596129626,0.00017482518160250038,0.000172176311025396,0.00020661157032009214,0.00014568764891009778,-0.0034556351602077484,0.0012027228949591517,0.00019071837596129626,0.00017482518160250038,-7.492507575079799e-05,-3.4676068025873974e-05,-3.178639599354938e-05,1.0503208545953324e-19,5.178537729259234e-20,1.1519648082658485e-19,-0.004044818691909313,0.00019071837596129626,0.0017166860634461045,0.00020661157032009214,1.3237346785761667e-19,-4.23818601120729e-05,-8.470329472543003e-21,-0.00012913222599308938,-4.591368269757368e-05,2.541098841762901e-20,-0.0037269548047333956,0.00017482518160250038,0.00020661157032009214,0.001425266615115106,1.2125065450395167e-19,5.5542128712220586e-21,-3.4965036320500076e-05,-4.878858675163725e-21,-4.132231333642267e-05,-9.712509927339852e-05,0.00012487512140069157,-7.492507575079799e-05,1.3237346785761667e-19,1.2125065450395167e-19,6.8113704401184805e-06,-5.860609778958363e-21,-5.464837783181551e-21,-8.645531011484423e-21,-4.47494129295461e-21,-7.115325234237316e-21,0.00019071837596129626,-3.4676068025873974e-05,-4.23818601120729e-05,5.5542128712220586e-21,-5.860609778958363e-21,7.705792995693628e-06,6.578359303816545e-22,-2.541098841762901e-21,-1.8550975225954314e-21,-1.1916407878701217e-22,0.00017482518160250038,-3.178639599354938e-05,-8.470329472543003e-21,-3.4965036320500076e-05,-5.464837783181551e-21,6.578359303816545e-22,6.3572792896593455e-06,5.293955920339377e-23,8.470329472543003e-22,-7.199780051661553e-21,0.000172176311025396,1.0503208545953324e-19,-0.00012913222599308938,-4.878858675163725e-21,-8.645531011484423e-21,-2.541098841762901e-21,5.293955920339377e-23,1.4348025615618099e-05,8.470329472543003e-22,-2.117582368135751e-22,0.00020661157032009214,5.178537729259234e-20,-4.591368269757368e-05,-4.132231333642267e-05,-4.47494129295461e-21,-1.8550975225954314e-21,8.470329472543003e-22,8.470329472543003e-22,9.182736903312616e-06,-4.658681209898652e-21,0.00014568764891009778,1.1519648082658485e-19,2.541098841762901e-20,-9.712509927339852e-05,-7.115325234237316e-21,-1.1916407878701217e-22,-7.199780051661553e-21,-2.117582368135751e-22,-4.658681209898652e-21,9.71250938164303e-06,12.0,10.0,12.0,0.025144459679722786,-0.003179993014782667,-0.0037223193794488907,-0.003179993014782667,0.00011446886492194608,0.00017482518160250038,0.00014792899310123175,0.00015782828268129379,0.00017482518160250038,0.00011446886492194608,-0.003179993014782667,0.001104737282730639,0.00017482518160250038,0.00014792899310123175,-6.868132186355069e-05,-3.178639599354938e-05,-2.689618122531101e-05,-1.3044307387716225e-19,-8.669551399432425e-20,-1.0333801956502464e-19,-0.0037223193794488907,0.00017482518160250038,0.001576866372488439,0.00017482518160250038,-2.1235867946540908e-19,-3.885003752657212e-05,-1.5246593050577406e-20,-0.00011837121564894915,-3.885003752657212e-05,-3.3881317890172014e-21,-0.003179993014782667,0.00014792899310123175,0.00017482518160250038,0.001104737282730639,-1.9677970198025314e-19,-1.4130834648581343e-20,-2.689618122531101e-05,-2.285970976133545e-21,-3.178639599354938e-05,-6.868132186355069e-05,0.00011446886492194608,-6.868132186355069e-05,-2.1235867946540908e-19,-1.9677970198025314e-19,6.243756160984049e-06,4.9326577267223496e-21,7.509930776103457e-21,1.6063028393102914e-20,7.380318682699787e-21,1.1121906201489317e-20,0.00017482518160250038,-3.178639599354938e-05,-3.885003752657212e-05,-1.4130834648581343e-20,4.9326577267223496e-21,7.06364335201215e-06,2.0380983084257177e-21,-9.740878893424454e-21,5.124629262061966e-22,5.480637013660671e-23,0.00014792899310123175,-2.689618122531101e-05,-1.5246593050577406e-20,-2.689618122531101e-05,7.509930776103457e-21,2.0380983084257177e-21,4.890214768238366e-06,5.293955920339377e-23,6.352747104407253e-22,-3.5998900258307764e-21,0.00015782828268129379,-1.3044307387716225e-19,-0.00011837121564894915,-2.285970976133545e-21,1.6063028393102914e-20,-9.740878893424454e-21,5.293955920339377e-23,1.3152356586942915e-05,0.0,1.0587911840678754e-22,0.00017482518160250038,-8.669551399432425e-20,-3.885003752657212e-05,-3.178639599354938e-05,7.380318682699787e-21,5.124629262061966e-22,6.352747104407253e-22,0.0,7.06364335201215e-06,0.0,0.00011446886492194608,-1.0333801956502464e-19,-3.3881317890172014e-21,-6.868132186355069e-05,1.1121906201489317e-20,5.480637013660671e-23,-3.5998900258307764e-21,1.0587911840678754e-22,0.0,6.243756160984049e-06,12.0,10.0,13.0,0.023414406925439835,-0.002945131855085492,-0.0034475140273571014,-0.002745331497862935,0.00010566356650087982,0.00016137708735186607,0.0001267962798010558,0.00014568764891009778,0.00014985015150159597,9.157509339274839e-05,-0.002945131855085492,0.001021530944854021,0.00016137708735186607,0.0001267962798010558,-6.33981399005279e-05,-2.9341288609430194e-05,-2.305386988155078e-05,9.529715192676151e-20,3.496384851158531e-20,4.573977915173222e-20,-0.0034475140273571014,0.00016137708735186607,0.001458130544051528,0.00014985015150159597,1.090403442140238e-19,-3.586157254176214e-05,0.0,-0.00010926573304459453,-3.330003164592199e-05,-6.776263578034403e-21,-0.002745331497862935,0.0001267962798010558,0.00014985015150159597,0.0008738056640140712,9.775250832815446e-20,-6.892719137613218e-21,-2.1132713300175965e-05,-1.195318305406062e-34,-2.4975024643936194e-05,-4.995004928787239e-05,0.00010566356650087982,-6.33981399005279e-05,1.090403442140238e-19,9.775250832815446e-20,5.763467470387695e-06,-4.343383224848166e-21,-5.5594813008656825e-21,-7.368238937699672e-21,-3.1395971344812613e-21,-4.421408409376294e-21,0.00016137708735186607,-2.9341288609430194e-05,-3.586157254176214e-05,-6.892719137613218e-21,-4.343383224848166e-21,6.520286206068704e-06,6.516097604902199e-22,-3.165893036517673e-21,7.35303434426002e-22,4.137740114894452e-36,0.0001267962798010558,-2.305386988155078e-05,0.0,-2.1132713300175965e-05,-5.5594813008656825e-21,6.516097604902199e-22,3.84231134376023e-06,6.564031053529325e-36,-5.293955920339377e-22,6.352747104407253e-22,0.00014568764891009778,9.529715192676151e-20,-0.00010926573304459453,-1.195318305406062e-34,-7.368238937699672e-21,-3.165893036517673e-21,6.564031053529325e-36,1.2140637409174815e-05,3.4304044694004466e-36,5.666070388012217e-36,0.00014985015150159597,3.496384851158531e-20,-3.330003164592199e-05,-2.4975024643936194e-05,-3.1395971344812613e-21,7.35303434426002e-22,-5.293955920339377e-22,3.4304044694004466e-36,5.550005425902782e-06,8.470329472543003e-22,9.157509339274839e-05,4.573977915173222e-20,-6.776263578034403e-21,-4.995004928787239e-05,-4.421408409376294e-21,4.137740114894452e-36,6.352747104407253e-22,5.666070388012217e-36,8.470329472543003e-22,4.162503955740249e-06,12.0,10.0,14.0,0.02190764620900154,-0.002742614597082138,-0.0032105394639074802,-0.0023941684048622847,9.811617201194167e-05,0.00014985015150159597,0.00010989011207129806,0.00013528138515539467,0.0001298701245104894,7.440476474585012e-05,-0.002742614597082138,0.0009499915759079158,0.00014985015150159597,0.00010989011207129806,-5.886970029678196e-05,-2.7245481760473922e-05,-1.9980019715148956e-05,-3.1606160200284325e-19,-1.4518866689517102e-19,-1.1858461261560205e-20,-0.0032105394639074802,0.00014985015150159597,0.001356039778329432,0.0001298701245104894,-3.713107270246675e-19,-3.330003164592199e-05,5.505714157152952e-21,-0.000101461038866546,-2.886002948798705e-05,5.166900978251232e-20,-0.0023941684048622847,0.00010989011207129806,0.0001298701245104894,0.0007031550048850477,-6.778376766005534e-20,-5.157580009840952e-20,-1.6906171367736533e-05,1.4226091281582786e-19,-1.9980019715148956e-05,-3.720238237292506e-05,9.811617201194167e-05,-5.886970029678196e-05,-3.713107270246675e-19,-6.778376766005534e-20,5.351791060093092e-06,8.40237787769148e-21,-4.370121797759264e-22,2.5567236696109168e-20,1.0226529232633981e-20,1.1948027190830903e-21,0.00014985015150159597,-2.7245481760473922e-05,-3.330003164592199e-05,-5.157580009840952e-20,8.40237787769148e-21,6.054551704437472e-06,3.429951261978012e-21,1.1379253883840642e-20,4.753583221524206e-21,7.562140291870723e-22,0.00010989011207129806,-1.9980019715148956e-05,5.505714157152952e-21,-1.6906171367736533e-05,-4.370121797759264e-22,3.429951261978012e-21,3.073849256907124e-06,-4.0719217732951554e-21,2.117582368135751e-22,-1.6940658945086007e-21,0.00013528138515539467,-3.1606160200284325e-19,-0.000101461038866546,1.4226091281582786e-19,2.5567236696109168e-20,1.1379253883840642e-20,-4.0719217732951554e-21,1.1273448762949556e-05,-3.7516397019366105e-21,-6.570922453316649e-21,0.0001298701245104894,-1.4518866689517102e-19,-2.886002948798705e-05,-1.9980019715148956e-05,1.0226529232633981e-20,4.753583221524206e-21,2.117582368135751e-22,-3.7516397019366105e-21,4.440004431671696e-06,4.235164736271502e-22,7.440476474585012e-05,-1.1858461261560205e-20,5.166900978251232e-20,-3.720238237292506e-05,1.1948027190830903e-21,7.562140291870723e-22,-1.6940658945086007e-21,-6.570922453316649e-21,4.235164736271502e-22,2.861721668523387e-06,12.0,10.0,15.0,0.02058347687125206,-0.002566183917224407,-0.003004079218953848,-0.002106386236846447,9.157509339274839e-05,0.0001398601452820003,9.61538462433964e-05,0.00012626263196580112,0.00011363636440364644,6.127451342763379e-05,-0.002566183917224407,0.0008878242806531489,0.0001398601452820003,9.61538462433964e-05,-5.494505603564903e-05,-2.5429117158637382e-05,-1.7482518160250038e-05,8.259086284907713e-20,2.754923091403298e-20,3.218725199566341e-20,-0.003004079218953848,0.0001398601452820003,0.0012673205928876996,0.00011363636440364644,7.580589448756532e-20,-3.108003147644922e-05,-2.541098841762901e-21,-9.469696669839323e-05,-2.5252526029362343e-05,-1.6940658945086007e-21,-0.002106386236846447,9.61538462433964e-05,0.00011363636440364644,0.0005742909270338714,6.844769642390279e-20,5.208365345160013e-21,-1.3736264008912258e-05,-9.00459954195751e-35,-1.6233765563811176e-05,-2.8280543119763024e-05,9.157509339274839e-05,-5.494505603564903e-05,7.580589448756532e-20,6.844769642390279e-20,4.995004928787239e-06,-3.1368878453448213e-22,-3.140247610251045e-21,-6.385807267824881e-21,-2.372620164782392e-21,-2.894081002556608e-21,0.0001398601452820003,-2.5429117158637382e-05,-3.108003147644922e-05,5.208365345160013e-21,-3.1368878453448213e-22,5.65091477255919e-06,-9.627431405627653e-23,-2.74377404576134e-21,-1.039745936114178e-21,1.410593220986745e-37,9.61538462433964e-05,-1.7482518160250038e-05,-2.541098841762901e-21,-1.3736264008912258e-05,-3.140247610251045e-21,-9.627431405627653e-23,2.4975024643936194e-06,4.1366829304914145e-36,4.764560328305439e-22,0.0,0.00012626263196580112,8.259086284907713e-20,-9.469696669839323e-05,-9.00459954195751e-35,-6.385807267824881e-21,-2.74377404576134e-21,4.1366829304914145e-36,1.0521885087655392e-05,3.3769759409188734e-36,3.7212751081281336e-36,0.00011363636440364644,2.754923091403298e-20,-2.5252526029362343e-05,-1.6233765563811176e-05,-2.372620164782392e-21,-1.039745936114178e-21,4.764560328305439e-22,3.3769759409188734e-36,3.607503685998381e-06,2.117582368135751e-22,6.127451342763379e-05,3.218725199566341e-20,-1.6940658945086007e-21,-2.8280543119763024e-05,-2.894081002556608e-21,1.410593220986745e-37,0.0,3.7212751081281336e-36,2.117582368135751e-22,2.0200388917146483e-06,12.0,10.0,16.0,0.019410543143749237,-0.002411099849268794,-0.0028225909918546677,-0.0018675870960578322,8.585165051044896e-05,0.00013111888256389648,8.484163117827848e-05,0.00011837121564894915,0.00010026738164015114,5.1062092097708955e-05,-0.002411099849268794,0.0008332993602380157,0.00013111888256389648,8.484163117827848e-05,-5.1510989578673616e-05,-2.3839796995162033e-05,-1.5425750461872667e-05,6.585363863589089e-20,2.1175823681357508e-20,3.134021904840911e-20,-0.0028225909918546677,0.00013111888256389648,0.0011895056813955307,0.00010026738164015114,6.989419620836222e-20,-2.9137529054423794e-05,-1.6940658945086007e-21,-8.877841173671186e-05,-2.228163975814823e-05,-3.3881317890172014e-21,-0.0018675870960578322,8.484163117827848e-05,0.00010026738164015114,0.0004751437227241695,5.805821745735726e-20,-0.0,-1.1312216884107329e-05,-7.422387015609966e-35,-1.3368983672989998e-05,-2.188375401601661e-05,8.585165051044896e-05,-5.1510989578673616e-05,6.989419620836222e-20,5.805821745735726e-20,4.682817234424874e-06,0.0,-2.242499767276721e-21,-5.986694237855179e-21,-2.1351924698435723e-21,-2.4077402017957337e-21,0.00013111888256389648,-2.3839796995162033e-05,-2.9137529054423794e-05,-0.0,0.0,5.2977325140091125e-06,0.0,0.0,0.0,0.0,8.484163117827848e-05,-1.5425750461872667e-05,-1.6940658945086007e-21,-1.1312216884107329e-05,-2.242499767276721e-21,0.0,2.056766788882669e-06,2.866898277650944e-36,2.6469779601696886e-22,-6.352747104407253e-22,0.00011837121564894915,6.585363863589089e-20,-8.877841173671186e-05,-7.422387015609966e-35,-5.986694237855179e-21,0.0,2.866898277650944e-36,9.864267667580862e-06,2.7297127274478243e-36,3.078148258674466e-36,0.00010026738164015114,2.1175823681357508e-20,-2.228163975814823e-05,-1.3368983672989998e-05,-2.1351924698435723e-21,0.0,2.6469779601696886e-22,2.7297127274478243e-36,2.970885361719411e-06,5.293955920339377e-22,5.1062092097708955e-05,3.134021904840911e-20,-3.3881317890172014e-21,-2.188375401601661e-05,-2.4077402017957337e-21,0.0,-6.352747104407253e-22,3.078148258674466e-36,5.293955920339377e-22,1.4589169268219848e-06,12.0,11.0,3.0,0.07032550871372223,-0.010406260378658772,-0.011217948980629444,-0.03044871799647808,0.0004162504046689719,0.0005827505956403911,0.0017482517287135124,0.0004856254963669926,0.0018939394503831863,0.0037878789007663727,-0.010406260378658772,0.0038067991845309734,0.0005827505956403911,0.0017482517287135124,-0.00024975024280138314,-0.00010595464846119285,-0.00031786394538357854,-1.5003922040296959e-18,-3.90607754701218e-18,-1.7720885477348074e-17,-0.011217948980629444,0.0005827505956403911,0.004509842023253441,0.0018939394503831863,-1.4602868690179452e-18,-0.00011655011621769518,-2.9004577395143664e-18,-0.00032375031150877476,-0.0003787878667935729,-3.881898644116949e-18,-0.03044871799647808,0.0017482517287135124,0.0018939394503831863,0.06832750886678696,-4.403701545308262e-18,-2.7837882568119777e-18,-0.0017482517287135124,-1.0077390442271745e-18,-0.0018939394503831863,-0.022727273404598236,0.0004162504046689719,-0.00024975024280138314,-1.4602868690179452e-18,-4.403701545308262e-18,2.2704567527398467e-05,3.508031618806763e-20,1.0140123432186855e-19,9.128080877425297e-20,2.469071314443022e-19,1.13936250483845e-18,0.0005827505956403911,-0.00010595464846119285,-0.00011655011621769518,-2.7837882568119777e-18,3.508031618806763e-20,2.119093005603645e-05,1.0261833365801229e-19,5.54048676215315e-20,1.3332560444145349e-19,7.057997675754784e-19,0.0017482517287135124,-0.00031786394538357854,-2.9004577395143664e-18,-0.0017482517287135124,1.0140123432186855e-19,1.0261833365801229e-19,0.00031786394538357854,1.812283574974353e-19,3.824151356097032e-19,1.3765803269306415e-18,0.0004856254963669926,-1.5003922040296959e-18,-0.00032375031150877476,-1.0077390442271745e-18,9.128080877425297e-20,5.54048676215315e-20,1.812283574974353e-19,3.237503187847324e-05,2.1966076010997585e-21,7.243827449256894e-33,0.0018939394503831863,-3.90607754701218e-18,-0.0003787878667935729,-0.0018939394503831863,2.469071314443022e-19,1.3332560444145349e-19,3.824151356097032e-19,2.1966076010997585e-21,0.0003787878667935729,1.8585642733199306e-32,0.0037878789007663727,-1.7720885477348074e-17,-3.881898644116949e-18,-0.022727273404598236,1.13936250483845e-18,7.057997675754784e-19,1.3765803269306415e-18,7.243827449256894e-33,1.8585642733199306e-32,0.011363636702299118,12.0,11.0,4.0,0.05712204426527023,-0.008066932670772076,-0.008697552606463432,-0.01940559409558773,0.00031218782532960176,0.0004370629321783781,0.0010489510605111718,0.0003642191004473716,0.0011363636003807187,0.0018939394503831863,-0.008066932670772076,0.0029027790296822786,0.0004370629321783781,0.0010489510605111718,-0.00018731268937699497,-7.946598634589463e-05,-0.00019071837596129626,2.149817725853913e-19,2.4751327388754456e-19,1.7529104893098574e-18,-0.008697552606463432,0.0004370629321783781,0.0034391996450722218,0.0011363636003807187,3.081953211726171e-19,-8.741259080125019e-05,1.6012227871264794e-20,-0.0002428127481834963,-0.00022727272880729288,-2.5867366650958772e-33,-0.01940559409558773,0.0010489510605111718,0.0011363636003807187,0.02619463950395584,7.286186304473076e-19,-2.821792242875114e-20,-0.0006993007264100015,1.6438124104740168e-20,-0.0007575757335871458,-0.005681818351149559,0.00031218782532960176,-0.00018731268937699497,3.081953211726171e-19,7.286186304473076e-19,1.702842564554885e-05,-1.698323935958688e-20,-3.3369125069939765e-20,-1.748245416837257e-20,-2.4321712719931715e-20,-1.4115994834521685e-19,0.0004370629321783781,-7.946598634589463e-05,-8.741259080125019e-05,-2.821792242875114e-20,-1.698323935958688e-20,1.589319799677469e-05,-7.133307930727891e-22,-2.933735184861219e-21,6.4282487418322404e-21,1.4224020030545905e-34,0.0010489510605111718,-0.00019071837596129626,1.6012227871264794e-20,-0.0006993007264100015,-3.3369125069939765e-20,-7.133307930727891e-22,0.0001271455839741975,-7.187348783931184e-24,-8.007618855047618e-21,-1.334340684992745e-19,0.0003642191004473716,2.149817725853913e-19,-0.0002428127481834963,1.6438124104740168e-20,-1.748245416837257e-20,-2.933735184861219e-21,-7.187348783931184e-24,2.428127481834963e-05,-3.2797186221909032e-21,1.4934478943867059e-34,0.0011363636003807187,2.4751327388754456e-19,-0.00022727272880729288,-0.0007575757335871458,-2.4321712719931715e-20,6.4282487418322404e-21,-8.007618855047618e-21,-3.2797186221909032e-21,0.00015151515253819525,2.0766368149460477e-34,0.0018939394503831863,1.7529104893098574e-18,-2.5867366650958772e-33,-0.005681818351149559,-1.4115994834521685e-19,1.4224020030545905e-34,-1.334340684992745e-19,1.4934478943867059e-34,2.0766368149460477e-34,0.0018939394503831863,12.0,11.0,5.0,0.04817682132124901,-0.006593406666070223,-0.007109557278454304,-0.013478188775479794,0.00024975024280138314,0.00034965036320500076,0.0006993007264100015,0.00029137529782019556,0.0007575757335871458,0.0010822510812431574,-0.006593406666070223,0.0023476523347198963,0.00034965036320500076,0.0006993007264100015,-0.00014985015150159597,-6.357279198709875e-05,-0.0001271455839741975,2.337810934421869e-19,2.1345230270808369e-19,8.694610189854866e-19,-0.007109557278454304,0.00034965036320500076,0.002781662857159972,0.0007575757335871458,2.3332280953343837e-19,-6.993007264100015e-05,-1.5678570354024752e-20,-0.00019425019854679704,-0.00015151515253819525,-1.1791160672842702e-33,-0.013478188775479794,0.0006993007264100015,0.0007575757335871458,0.013232600875198841,4.875487316400332e-19,5.801752727980304e-21,-0.00034965036320500076,6.776263578034403e-21,-0.0003787878667935729,-0.0021645021624863148,0.00024975024280138314,-0.00014985015150159597,2.3332280953343837e-19,4.875487316400332e-19,1.3622740880236961e-05,-1.0812917084196682e-20,-2.399588595352965e-20,-1.4057937741512973e-20,-1.607600478896234e-20,-6.913956838281804e-20,0.00034965036320500076,-6.357279198709875e-05,-6.993007264100015e-05,5.801752727980304e-21,-1.0812917084196682e-20,1.2714558579318691e-05,4.927890936883799e-21,-1.4399560103323106e-20,-5.505714157152952e-21,5.245937414132164e-35,0.0006993007264100015,-0.0001271455839741975,-1.5678570354024752e-20,-0.00034965036320500076,-2.399588595352965e-20,4.927890936883799e-21,6.357279198709875e-05,1.8414867626613505e-23,-4.437359505045999e-21,-5.446288338724406e-20,0.00029137529782019556,2.337810934421869e-19,-0.00019425019854679704,6.776263578034403e-21,-1.4057937741512973e-20,-1.4399560103323106e-20,1.8414867626613505e-23,1.942501876328606e-05,-1.6940658945086007e-21,7.259780216253372e-35,0.0007575757335871458,2.1345230270808369e-19,-0.00015151515253819525,-0.0003787878667935729,-1.607600478896234e-20,-5.505714157152952e-21,-4.437359505045999e-21,-1.6940658945086007e-21,7.575757626909763e-05,8.264978840803238e-35,0.0010822510812431574,8.694610189854866e-19,-1.1791160672842702e-33,-0.0021645021624863148,-6.913956838281804e-20,5.245937414132164e-35,-5.446288338724406e-20,7.259780216253372e-35,8.264978840803238e-35,0.0005411255406215787,12.0,11.0,6.0,0.04168747738003731,-0.005577755626291037,-0.006014818325638771,-0.009917166084051132,0.00020812520233448595,0.00029137529782019556,0.0004995004856027663,0.0002428127481834963,0.0005411255406215787,0.0006764069548808038,-0.005577755626291037,0.0019715132657438517,0.00029137529782019556,0.0004995004856027663,-0.00012487512140069157,-5.297732423059642e-05,-9.081827010959387e-05,-7.691059161069047e-19,-1.1418004128987969e-18,-2.3546053891936862e-18,-0.006014818325638771,0.00029137529782019556,0.0023360897321254015,0.0005411255406215787,-7.826438642046773e-19,-5.827505810884759e-05,-7.902381577097383e-19,-0.00016187515575438738,-0.00010822511103469878,-7.63223989867405e-19,-0.009917166084051132,0.0004995004856027663,0.0005411255406215787,0.0076871044002473354,-1.3177180511437915e-18,-7.814585143868888e-19,-0.00019980019715148956,-2.439454888092385e-19,-0.00021645022206939757,-0.0010146104032173753,0.00020812520233448595,-0.00012487512140069157,-7.826438642046773e-19,-1.3177180511437915e-18,1.1352283763699234e-05,1.789462275797126e-20,3.2285243817682537e-20,4.5421644195674617e-20,7.050294297806443e-20,1.386392446754322e-19,0.00029137529782019556,-5.297732423059642e-05,-5.827505810884759e-05,-7.814585143868888e-19,1.789462275797126e-20,1.0595465028018225e-05,2.8789323286266287e-20,2.795208725939191e-20,3.6422416731934915e-20,8.06628276258382e-20,0.0004995004856027663,-9.081827010959387e-05,-7.902381577097383e-19,-0.00019980019715148956,3.2285243817682537e-20,2.8789323286266287e-20,3.632731022662483e-05,4.463024883813731e-20,5.803968990410578e-20,1.5033811177755797e-19,0.0002428127481834963,-7.691059161069047e-19,-0.00016187515575438738,-2.439454888092385e-19,4.5421644195674617e-20,2.795208725939191e-20,4.463024883813731e-20,1.618751593923662e-05,8.470329472543003e-22,9.559482811096666e-34,0.0005411255406215787,-1.1418004128987969e-18,-0.00010822511103469878,-0.00021645022206939757,7.050294297806443e-20,3.6422416731934915e-20,5.803968990410578e-20,8.470329472543003e-22,4.329004150349647e-05,1.2783138033999678e-19,0.0006764069548808038,-2.3546053891936862e-18,-7.63223989867405e-19,-0.0010146104032173753,1.386392446754322e-19,8.06628276258382e-20,1.5033811177755797e-19,9.559482811096666e-34,1.2783138033999678e-19,0.000202922077733092,12.0,11.0,7.0,0.036754414439201355,-0.004834451247006655,-0.005213536322116852,-0.0076069761998951435,0.0001783930347301066,0.00024975024280138314,0.00037462537875398993,0.00020812520233448595,0.000405844155466184,0.00045093795051798224,-0.004834451247006655,0.0016995990881696343,0.00024975024280138314,0.00037462537875398993,-0.00010703581938287243,-4.5409135054796934e-05,-6.81137025821954e-05,9.147955830346444e-20,8.809142651444724e-20,3.1888882778836707e-19,-0.005213536322116852,0.00024975024280138314,0.002013958292081952,0.000405844155466184,1.8351800635767915e-19,-4.995004928787239e-05,-2.2289116697387252e-20,-0.0001387501397402957,-8.116882963804528e-05,-4.573961476709795e-34,-0.0076069761998951435,0.00037462537875398993,0.000405844155466184,0.00488053634762764,2.5594183073915364e-19,1.9481867646774012e-20,-0.00012487512140069157,6.776263578034403e-21,-0.00013528138515539467,-0.0005411255406215787,0.0001783930347301066,-0.00010703581938287243,1.8351800635767915e-19,2.5594183073915364e-19,9.730529200169258e-06,-1.0159183482957666e-20,-1.1642078406575862e-20,-1.0419662173174475e-20,-8.665275101847725e-21,-2.4967067078500796e-20,0.00024975024280138314,-4.5409135054796934e-05,-4.995004928787239e-05,1.9481867646774012e-20,-1.0159183482957666e-20,9.081827556656208e-06,-4.1450089157485407e-22,4.235164736271502e-21,-3.3881317890172014e-21,2.609088058807727e-35,0.00037462537875398993,-6.81137025821954e-05,-2.2289116697387252e-20,-0.00012487512140069157,-1.1642078406575862e-20,-4.1450089157485407e-22,2.2704567527398467e-05,2.368015287066917e-22,7.323188290471075e-21,-1.475036384681515e-20,0.00020812520233448595,9.147955830346444e-20,-0.0001387501397402957,6.776263578034403e-21,-1.0419662173174475e-20,4.235164736271502e-21,2.368015287066917e-22,1.387501379213063e-05,-8.470329472543003e-22,2.633069463699759e-35,0.000405844155466184,8.809142651444724e-20,-8.116882963804528e-05,-0.00013528138515539467,-8.665275101847725e-21,-3.3881317890172014e-21,7.323188290471075e-21,-8.470329472543003e-22,2.7056277758674696e-05,1.6916084043005706e-35,0.00045093795051798224,3.1888882778836707e-19,-4.573961476709795e-34,-0.0005411255406215787,-2.4967067078500796e-20,2.609088058807727e-35,-1.475036384681515e-20,2.633069463699759e-35,1.6916084043005706e-35,9.018759010359645e-05,12.0,11.0,8.0,0.032873377203941345,-0.004266566596925259,-0.004601301625370979,-0.006021756213158369,0.00015609391266480088,0.00021853146608918905,0.00029137529782019556,0.0001821095502236858,0.00031565656536258757,0.00031565656536258757,-0.004266566596925259,0.0014937713276594877,0.00021853146608918905,0.00029137529782019556,-9.365634468849748e-05,-3.973299317294732e-05,-5.297732423059642e-05,1.0672615135404184e-19,7.284483346386983e-20,2.1573983191800787e-19,-0.004601301625370979,0.00021853146608918905,0.0017701048636808991,0.00031565656536258757,1.5823979335306198e-19,-4.3706295400625095e-05,6.222144656090506e-21,-0.00012140637409174815,-6.313131598290056e-05,-3.1362175504614207e-34,-0.006021756213158369,0.00029137529782019556,0.00031565656536258757,0.0032987846061587334,1.9274355172948307e-19,-2.4212107653697387e-21,-8.325008093379438e-05,3.3881317890172014e-21,-9.018759010359645e-05,-0.00031565656536258757,0.00015609391266480088,-9.365634468849748e-05,1.5823979335306198e-19,1.9274355172948307e-19,8.514212822774425e-06,-8.089685026894395e-21,-7.543068083806729e-21,-9.023020215460539e-21,-6.724676265262077e-21,-1.680475575538296e-20,0.00021853146608918905,-3.973299317294732e-05,-4.3706295400625095e-05,-2.4212107653697387e-21,-8.089685026894395e-21,7.946598998387344e-06,-3.436127399155394e-22,-1.6940658945086007e-21,1.0587911840678754e-21,1.5859902655777807e-35,0.00029137529782019556,-5.297732423059642e-05,6.222144656090506e-21,-8.325008093379438e-05,-7.543068083806729e-21,-3.436127399155394e-22,1.5136378351598978e-05,7.711242941394206e-36,-1.2377927858966022e-21,-8.825004162807855e-21,0.0001821095502236858,1.0672615135404184e-19,-0.00012140637409174815,3.3881317890172014e-21,-9.023020215460539e-21,-1.6940658945086007e-21,7.711242941394206e-36,1.2140637409174815e-05,0.0,1.7859718159832733e-35,0.00031565656536258757,7.284483346386983e-20,-6.313131598290056e-05,-9.018759010359645e-05,-6.724676265262077e-21,1.0587911840678754e-21,-1.2377927858966022e-21,0.0,1.803751729312353e-05,1.365574743305284e-35,0.00031565656536258757,2.1573983191800787e-19,-3.1362175504614207e-34,-0.00031565656536258757,-1.680475575538296e-20,1.5859902655777807e-35,-8.825004162807855e-21,1.7859718159832733e-35,1.365574743305284e-35,4.5093795051798224e-05,12.0,11.0,9.0,0.02973819151520729,-0.0038184039294719696,-0.004118103999644518,-0.00488627515733242,0.0001387501397402957,0.00019425019854679704,0.00023310023243539035,0.00016187515575438738,0.00025252526393160224,0.00022956840984988958,-0.0038184039294719696,0.001332505838945508,0.00019425019854679704,0.00023310023243539035,-8.325008093379438e-05,-3.5318218579050153e-05,-4.23818601120729e-05,1.2874900798265365e-19,4.319868030996932e-20,1.5304226859757038e-19,-0.004118103999644518,0.00019425019854679704,0.0015790382167324424,0.00025252526393160224,1.3589518931556118e-19,-3.885003752657212e-05,-1.3221962680396601e-20,-0.00010791677777888253,-5.0505052058724687e-05,-2.0420221797341777e-34,-0.00488627515733242,0.00023310023243539035,0.00025252526393160224,0.002336615463718772,1.7062505234254482e-19,-4.603371988266621e-21,-5.827505810884759e-05,3.3881317890172014e-21,-6.313131598290056e-05,-0.00019677291857078671,0.0001387501397402957,-8.325008093379438e-05,1.3589518931556118e-19,1.7062505234254482e-19,7.568189175799489e-06,-6.053844097591509e-21,-8.927795086408206e-21,-8.129756434576334e-21,-5.308513168209317e-21,-1.1872451438346148e-20,0.00019425019854679704,-3.5318218579050153e-05,-3.885003752657212e-05,-4.603371988266621e-21,-6.053844097591509e-21,7.06364335201215e-06,2.204787217784461e-22,-8.470329472543003e-21,6.352747104407253e-22,9.361518197775543e-36,0.00023310023243539035,-4.23818601120729e-05,-1.3221962680396601e-20,-5.827505810884759e-05,-8.927795086408206e-21,2.204787217784461e-22,1.0595465028018225e-05,9.4039548065783e-36,3.002332408721125e-21,-5.611327107579431e-21,0.00016187515575438738,1.2874900798265365e-19,-0.00010791677777888253,3.3881317890172014e-21,-8.129756434576334e-21,-8.470329472543003e-21,9.4039548065783e-36,1.0791677595989313e-05,-8.470329472543003e-22,1.2617775302797517e-35,0.00025252526393160224,4.319868030996932e-20,-5.0505052058724687e-05,-6.313131598290056e-05,-5.308513168209317e-21,6.352747104407253e-22,3.002332408721125e-21,-8.470329472543003e-22,1.2626263014681172e-05,6.634029073151685e-36,0.00022956840984988958,1.5304226859757038e-19,-2.0420221797341777e-34,-0.00019677291857078671,-1.1872451438346148e-20,9.361518197775543e-36,-5.611327107579431e-21,1.2617775302797517e-35,6.634029073151685e-36,2.459661482134834e-05,12.0,11.0,10.0,0.02715163677930832,-0.0034556351602077484,-0.0037269548047333956,-0.004044818691909313,0.00012487512140069157,0.00017482518160250038,0.00019071837596129626,0.00014568764891009778,0.00020661157032009214,0.000172176311025396,-0.0034556351602077484,0.0012027228949591517,0.00017482518160250038,0.00019071837596129626,-7.492507575079799e-05,-3.178639599354938e-05,-3.4676068025873974e-05,1.1519648082658485e-19,4.117162252011984e-20,1.0333801956502464e-19,-0.0037269548047333956,0.00017482518160250038,0.001425266615115106,0.00020661157032009214,1.212610330356998e-19,-3.4965036320500076e-05,-4.235164736271502e-21,-9.712509927339852e-05,-4.132231333642267e-05,-1.0164395367051604e-20,-0.004044818691909313,0.00019071837596129626,0.00020661157032009214,0.0017166860634461045,1.3401933755674698e-19,-1.469853419597274e-20,-4.23818601120729e-05,6.321739948340018e-22,-4.591368269757368e-05,-0.00012913222599308938,0.00012487512140069157,-7.492507575079799e-05,1.212610330356998e-19,1.3401933755674698e-19,6.8113704401184805e-06,-5.0912506260305694e-21,-5.781110371170558e-21,-7.304810986823047e-21,-4.479931841611204e-21,-8.857469386263427e-21,0.00017482518160250038,-3.178639599354938e-05,-3.4965036320500076e-05,-1.469853419597274e-20,-5.0912506260305694e-21,6.3572792896593455e-06,1.077564205589512e-21,-7.199780051661553e-21,1.769548750733157e-21,1.1026933760362145e-22,0.00019071837596129626,-3.4676068025873974e-05,-4.235164736271502e-21,-4.23818601120729e-05,-5.781110371170558e-21,1.077564205589512e-21,7.705792995693628e-06,5.293955920339377e-23,-4.235164736271502e-22,-2.117582368135751e-21,0.00014568764891009778,1.1519648082658485e-19,-9.712509927339852e-05,6.321739948340018e-22,-7.304810986823047e-21,-7.199780051661553e-21,5.293955920339377e-23,9.71250938164303e-06,-4.235164736271502e-22,2.117582368135751e-22,0.00020661157032009214,4.117162252011984e-20,-4.132231333642267e-05,-4.591368269757368e-05,-4.479931841611204e-21,1.769548750733157e-21,-4.235164736271502e-22,-4.235164736271502e-22,9.182736903312616e-06,1.6940658945086007e-21,0.000172176311025396,1.0333801956502464e-19,-1.0164395367051604e-20,-0.00012913222599308938,-8.857469386263427e-21,1.1026933760362145e-22,-2.117582368135751e-21,2.117582368135751e-22,1.6940658945086007e-21,1.4348025615618099e-05,12.0,11.0,11.0,0.024980701506137848,-0.0031559350900352,-0.003403793089091778,-0.003403793089091778,0.00011352283763699234,0.00015893197269178927,0.00015893197269178927,0.00013244331057649106,0.000172176311025396,0.00013244331057649106,-0.0031559350900352,0.001096011372283101,0.00015893197269178927,0.00015893197269178927,-6.81137025821954e-05,-2.889672396122478e-05,-2.889672396122478e-05,1.0672615135404184e-19,2.859690039627114e-20,1.0333801956502464e-19,-0.003403793089091778,0.00015893197269178927,0.001298827468417585,0.000172176311025396,1.0638741443085284e-19,-3.178639599354938e-05,8.470329472543003e-22,-8.829554280964658e-05,-3.443526293267496e-05,1.0164395367051604e-20,-0.003403793089091778,0.00015893197269178927,0.000172176311025396,0.001298827468417585,1.0679482673192935e-19,8.859436565547333e-22,-3.178639599354938e-05,7.201463998326048e-22,-3.443526293267496e-05,-8.829554280964658e-05,0.00011352283763699234,-6.81137025821954e-05,1.0638741443085284e-19,1.0679482673192935e-19,6.19215506958426e-06,-3.960352557002798e-21,-3.972366466827207e-21,-6.5673451395054274e-21,-3.788517497751627e-21,-6.599008627845806e-21,0.00015893197269178927,-2.889672396122478e-05,-3.178639599354938e-05,8.859436565547333e-22,-3.960352557002798e-21,5.779344519396545e-06,-1.1598823080549804e-21,-6.3527471044072525e-21,1.1411816850317815e-21,2.0730412619430552e-23,0.00015893197269178927,-2.889672396122478e-05,8.470329472543003e-22,-3.178639599354938e-05,-3.972366466827207e-21,-1.1598823080549804e-21,5.779344519396545e-06,0.0,1.2705494208814505e-21,-6.3527471044072525e-21,0.00013244331057649106,1.0672615135404184e-19,-8.829554280964658e-05,7.201463998326048e-22,-6.5673451395054274e-21,-6.3527471044072525e-21,0.0,8.829554644762538e-06,0.0,1.0587911840678754e-22,0.000172176311025396,2.859690039627114e-20,-3.443526293267496e-05,-3.443526293267496e-05,-3.788517497751627e-21,1.1411816850317815e-21,1.2705494208814505e-21,0.0,6.887052222737111e-06,-2.117582368135751e-21,0.00013244331057649106,1.0333801956502464e-19,1.0164395367051604e-20,-8.829554280964658e-05,-6.599008627845806e-21,2.0730412619430552e-23,-6.3527471044072525e-21,1.0587911840678754e-22,-2.117582368135751e-21,8.829554644762538e-06,12.0,11.0,12.0,0.023132316768169403,-0.0029041471425443888,-0.0031322843860834837,-0.0029041471425443888,0.00010406260116724297,0.00014568764891009778,0.00013448089885059744,0.00012140637409174815,0.00014568764891009778,0.00010406260116724297,-0.0029041471425443888,0.001006714766845107,0.00014568764891009778,0.00013448089885059744,-6.243756070034578e-05,-2.648866211529821e-05,-2.4451073841191828e-05,-3.3542504711270293e-19,-1.672986489067394e-19,2.541098841762901e-20,-0.0031322843860834837,0.00014568764891009778,0.0011930199107155204,0.00014568764891009778,-3.5612009791240814e-19,-2.9137529054423794e-05,-5.971582278142817e-20,-8.093757787719369e-05,-2.9137529054423794e-05,2.676624113323589e-19,-0.0029041471425443888,0.00013448089885059744,0.00014568764891009778,0.001006714766845107,-4.128110116666094e-20,-2.2638384017514964e-20,-2.4451073841191828e-05,3.424019278386756e-19,-2.648866211529821e-05,-6.243756070034578e-05,0.00010406260116724297,-6.243756070034578e-05,-3.5612009791240814e-19,-4.128110116666094e-20,5.676141881849617e-06,8.489424904672047e-21,2.1633024742829537e-22,2.2638773374014233e-20,1.0069717922037661e-20,-1.6413104112642748e-21,0.00014568764891009778,-2.648866211529821e-05,-2.9137529054423794e-05,-2.2638384017514964e-20,8.489424904672047e-21,5.2977325140091125e-06,2.707127884751645e-21,1.3976043629695956e-20,5.571979482933476e-21,-1.7130363205831597e-21,0.00013448089885059744,-2.4451073841191828e-05,-5.971582278142817e-20,-2.4451073841191828e-05,2.1633024742829537e-22,2.707127884751645e-21,4.4456496652856e-06,1.4823076576950256e-21,3.3881317890172014e-21,-1.0587911840678754e-21,0.00012140637409174815,-3.3542504711270293e-19,-8.093757787719369e-05,3.424019278386756e-19,2.2638773374014233e-20,1.3976043629695956e-20,1.4823076576950256e-21,8.09375796961831e-06,-1.1011428314305904e-20,-2.4881592825595072e-20,0.00014568764891009778,-1.672986489067394e-19,-2.9137529054423794e-05,-2.648866211529821e-05,1.0069717922037661e-20,5.571979482933476e-21,3.3881317890172014e-21,-1.1011428314305904e-20,5.2977325140091125e-06,-1.9058241313221758e-21,0.00010406260116724297,2.541098841762901e-20,2.676624113323589e-19,-6.243756070034578e-05,-1.6413104112642748e-21,-1.7130363205831597e-21,-1.0587911840678754e-21,-2.4881592825595072e-20,-1.9058241313221758e-21,5.676141881849617e-06,12.0,11.0,13.0,0.02153935842216015,-0.0026896181516349316,-0.0029009452555328608,-0.002507108263671398,9.605778905097395e-05,0.00013448089885059744,0.0001152693439507857,0.00011206742055946961,0.00012487512140069157,8.325008093379438e-05,-0.0026896181516349316,0.0009308872977271676,0.00013448089885059744,0.0001152693439507857,-5.763467197539285e-05,-2.4451073841191828e-05,-2.095806303259451e-05,6.098637220230962e-20,2.2611423099424564e-20,3.8963515573697816e-20,-0.0029009452555328608,0.00013448089885059744,0.0011031703324988484,0.00012487512140069157,7.160705461241226e-20,-2.689618122531101e-05,-1.3552527156068805e-20,-7.471161370631307e-05,-2.4975024643936194e-05,-9.317362419797304e-21,-0.002507108263671398,0.0001152693439507857,0.00012487512140069157,0.0007962608360685408,8.676504240221846e-20,4.3050861357360244e-21,-1.9211558537790552e-05,1.6508337925475925e-21,-2.0812520233448595e-05,-4.5409135054796934e-05,9.605778905097395e-05,-5.763467197539285e-05,7.160705461241226e-20,8.676504240221846e-20,5.239515758148627e-06,1.531279360141128e-22,-4.403753273177115e-21,-5.6258827398622366e-21,-2.690937480237732e-21,-4.086430957447862e-21,0.00013448089885059744,-2.4451073841191828e-05,-2.689618122531101e-05,4.3050861357360244e-21,1.531279360141128e-22,4.890214768238366e-06,2.5347229271389937e-22,2.117582368135751e-22,-1.0654376085625138e-21,-1.420841515537264e-23,0.0001152693439507857,-2.095806303259451e-05,-1.3552527156068805e-20,-1.9211558537790552e-05,-4.403753273177115e-21,2.5347229271389937e-22,3.4930105812236434e-06,-7.940933880509066e-23,2.064642808932357e-21,6.352747104407253e-22,0.00011206742055946961,6.098637220230962e-20,-7.471161370631307e-05,1.6508337925475925e-21,-5.6258827398622366e-21,2.117582368135751e-22,-7.940933880509066e-23,7.471161097782897e-06,2.117582368135751e-22,-2.117582368135751e-22,0.00012487512140069157,2.2611423099424564e-20,-2.4975024643936194e-05,-2.0812520233448595e-05,-2.690937480237732e-21,-1.0654376085625138e-21,2.064642808932357e-21,2.117582368135751e-22,4.162503955740249e-06,1.6940658945086007e-21,8.325008093379438e-05,3.8963515573697816e-20,-9.317362419797304e-21,-4.5409135054796934e-05,-4.086430957447862e-21,-1.420841515537264e-23,6.352747104407253e-22,-2.117582368135751e-22,1.6940658945086007e-21,3.7840945878997445e-06,12.0,11.0,14.0,0.020152168348431587,-0.0025046381633728743,-0.0027014652732759714,-0.0021863554138690233,8.91965173650533e-05,0.00012487512140069157,9.990009857574478e-05,0.00010406260116724297,0.00010822511103469878,6.764069257769734e-05,-0.0025046381633728743,0.000865692738443613,0.00012487512140069157,9.990009857574478e-05,-5.3517909691436216e-05,-2.2704567527398467e-05,-1.8163655113312416e-05,4.8723393771816847e-20,1.990929222567805e-20,4.658681209898652e-20,-0.0027014652732759714,0.00012487512140069157,0.0010259185219183564,0.00010822511103469878,9.450000184785328e-20,-2.4975024643936194e-05,4.235164736271502e-22,-6.937506987014785e-05,-2.1645020751748234e-05,4.235164736271502e-21,-0.0021863554138690233,9.990009857574478e-05,0.00010822511103469878,0.0006407454493455589,7.076100394213536e-20,-3.111382722723352e-21,-1.536924537504092e-05,-7.495741192138013e-35,-1.6650015822960995e-05,-3.382034628884867e-05,8.91965173650533e-05,-5.3517909691436216e-05,9.450000184785328e-20,7.076100394213536e-20,4.865264600084629e-06,-5.0414267266148876e-21,-3.0059381972555817e-21,-5.170694296062255e-21,-2.3177247354050296e-21,-3.2772283965723995e-21,0.00012487512140069157,-2.2704567527398467e-05,-2.4975024643936194e-05,-3.111382722723352e-21,-5.0414267266148876e-21,4.540913778328104e-06,-2.0941347714599408e-22,1.6308481719077737e-21,8.526313605700218e-22,3.502973165450417e-36,9.990009857574478e-05,-1.8163655113312416e-05,4.235164736271502e-22,-1.536924537504092e-05,-3.0059381972555817e-21,-2.0941347714599408e-22,2.7944083740294445e-06,3.141779854272155e-36,1.5881867761018131e-22,-1.6940658945086007e-21,0.00010406260116724297,4.8723393771816847e-20,-6.937506987014785e-05,-7.495741192138013e-35,-5.170694296062255e-21,1.6308481719077737e-21,3.141779854272155e-36,6.937506896065315e-06,2.5801516266726017e-36,3.444374226788667e-36,0.00010822511103469878,1.990929222567805e-20,-2.1645020751748234e-05,-1.6650015822960995e-05,-2.3177247354050296e-21,8.526313605700218e-22,1.5881867761018131e-22,2.5801516266726017e-36,3.3300034374406096e-06,-4.235164736271502e-22,6.764069257769734e-05,4.658681209898652e-20,4.235164736271502e-21,-3.382034628884867e-05,-3.2772283965723995e-21,3.502973165450417e-36,-1.6940658945086007e-21,3.444374226788667e-36,-4.235164736271502e-22,2.6015650291810744e-06,12.0,11.0,15.0,0.018933210521936417,-0.0023434897884726524,-0.0025276807136833668,-0.001923505449667573,8.325008093379438e-05,0.00011655011621769518,8.741259080125019e-05,9.712509927339852e-05,9.469696669839323e-05,5.5704098485875875e-05,-0.0023434897884726524,0.0008090394549071789,0.00011655011621769518,8.741259080125019e-05,-4.995004928787239e-05,-2.119093005603645e-05,-1.589319799677469e-05,6.258964209989346e-20,1.7502329121293718e-20,3.134021904840911e-20,-0.0025276807136833668,0.00011655011621769518,0.000958786578848958,9.469696669839323e-05,8.831800291645287e-20,-2.3310023607336916e-05,0.0,-6.475006375694647e-05,-1.8939394067274407e-05,-3.3881317890172014e-21,-0.001923505449667573,8.741259080125019e-05,9.469696669839323e-05,0.0005233124829828739,6.011360618318668e-20,-2.145308620143735e-22,-1.2487512321968097e-05,-6.26534298993767e-35,-1.3528138879337348e-05,-2.5709585315780714e-05,8.325008093379438e-05,-4.995004928787239e-05,8.831800291645287e-20,6.011360618318668e-20,4.540913778328104e-06,-4.705331692286585e-21,-2.23941096662511e-21,-4.825981316064986e-21,-2.025552062640691e-21,-2.6875401024435474e-21,0.00011655011621769518,-2.119093005603645e-05,-2.3310023607336916e-05,-2.145308620143735e-22,-4.705331692286585e-21,4.23818619310623e-06,-4.525205035967494e-22,-1.900770170870576e-21,5.4067870111575005e-22,2.8564512724981586e-36,8.741259080125019e-05,-1.589319799677469e-05,0.0,-1.2487512321968097e-05,-2.23941096662511e-21,-4.525205035967494e-22,2.270456889164052e-06,2.644584809833435e-36,2.6469779601696886e-22,-2.117582368135751e-22,9.712509927339852e-05,6.258964209989346e-20,-6.475006375694647e-05,-6.26534298993767e-35,-4.825981316064986e-21,-1.900770170870576e-21,2.644584809833435e-36,6.475006557593588e-06,1.7472042146182317e-36,2.81229956405817e-36,9.469696669839323e-05,1.7502329121293718e-20,-1.8939394067274407e-05,-1.3528138879337348e-05,-2.025552062640691e-21,5.4067870111575005e-22,2.6469779601696886e-22,1.7472042146182317e-36,2.7056275939685293e-06,3.1763735522036263e-22,5.5704098485875875e-05,3.134021904840911e-20,-3.3881317890172014e-21,-2.5709585315780714e-05,-2.6875401024435474e-21,2.8564512724981586e-36,-2.117582368135751e-22,2.81229956405817e-36,3.1763735522036263e-22,1.8363989511271939e-06,12.0,11.0,16.0,0.017853572964668274,-0.002201842376962304,-0.0023749228566884995,-0.001705402391962707,7.804695633240044e-05,0.00010926573304459453,7.712875230936334e-05,9.10547751118429e-05,8.355615136679262e-05,4.642008207156323e-05,-0.002201842376962304,0.0007593509508296847,0.00010926573304459453,7.712875230936334e-05,-4.682817234424874e-05,-1.986649658647366e-05,-1.4023409676156007e-05,4.976793224618952e-20,1.5670109524204556e-20,2.0328790734103208e-20,-0.0023749228566884995,0.00010926573304459453,0.0008999068522825837,8.355615136679262e-05,8.024903698675708e-20,-2.1853147700312547e-05,-4.235164736271502e-21,-6.0703187045874074e-05,-1.6711230273358524e-05,-7.623296525288703e-21,-0.001705402391962707,7.712875230936334e-05,8.355615136679262e-05,0.00043296164949424565,5.192263757548786e-20,-4.8033936375838237e-35,-1.0283833944413345e-05,-5.518221624634694e-35,-1.1140819879074115e-05,-1.98943216673797e-05,7.804695633240044e-05,-4.682817234424874e-05,8.024903698675708e-20,5.192263757548786e-20,4.2571064113872126e-06,-3.938274347127805e-21,-1.853305432567161e-21,-4.524357256618984e-21,-1.779327091861042e-21,-2.1888548023409913e-21,0.00010926573304459453,-1.986649658647366e-05,-2.1853147700312547e-05,-4.8033936375838237e-35,-3.938274347127805e-21,3.973299499193672e-06,1.714503782704053e-36,4.185509639657696e-36,1.646065890319158e-36,2.0249224677467448e-36,7.712875230936334e-05,-1.4023409676156007e-05,-4.235164736271502e-21,-1.0283833944413345e-05,-1.853305432567161e-21,1.714503782704053e-36,1.8697879795581684e-06,1.969651489623502e-36,5.293955920339377e-22,3.1763735522036263e-22,9.10547751118429e-05,4.976793224618952e-20,-6.0703187045874074e-05,-5.518221624634694e-35,-4.524357256618984e-21,4.185509639657696e-36,1.969651489623502e-36,6.070318704587407e-06,1.891029004841445e-36,2.326265760994308e-36,8.355615136679262e-05,1.5670109524204556e-20,-1.6711230273358524e-05,-1.1140819879074115e-05,-1.779327091861042e-21,1.646065890319158e-36,5.293955920339377e-22,1.891029004841445e-36,2.228164021289558e-06,9.529120656610879e-22,4.642008207156323e-05,2.0328790734103208e-20,-7.623296525288703e-21,-1.98943216673797e-05,-2.1888548023409913e-21,2.0249224677467448e-36,3.1763735522036263e-22,2.326265760994308e-36,9.529120656610879e-22,1.326288042946544e-06,12.0,12.0,3.0,0.06523159891366959,-0.009580163285136223,-0.009580163285136223,-0.028044871985912323,0.000381562887923792,0.0004930966533720493,0.0016025641234591603,0.000381562887923792,0.0016025641234591603,0.0034722222480922937,-0.009580163285136223,0.0034970371052622795,0.0004930966533720493,0.0016025641234591603,-0.00022893772984389216,-8.965393499238417e-05,-0.00029137529782019556,1.7257435515481431e-19,3.640852268258344e-19,4.503588567357716e-18,-0.009580163285136223,0.0004930966533720493,0.0034970371052622795,0.0016025641234591603,3.488723413852185e-19,-8.965393499238417e-05,7.96685823789436e-20,-0.00022893772984389216,-0.00029137529782019556,4.503588567357716e-18,-0.028044871985912323,0.0016025641234591603,0.0016025641234591603,0.06276709586381912,1.1716364040032783e-18,3.9741821444276323e-20,-0.0016025641234591603,9.764668607841479e-19,-0.0016025641234591603,-0.02083333395421505,0.000381562887923792,-0.00022893772984389216,3.488723413852185e-19,1.1716364040032783e-18,2.0812520233448595e-05,-1.8980395862762275e-20,-4.49389164535903e-20,-1.9124157268284577e-20,-3.364782354405905e-20,-3.697046266184251e-19,0.0004930966533720493,-8.965393499238417e-05,-8.965393499238417e-05,3.9741821444276323e-20,-1.8980395862762275e-20,1.6300715287798084e-05,-1.088261351315281e-20,5.763955259189319e-21,3.656827759293771e-21,2.779540881175764e-34,0.0016025641234591603,-0.00029137529782019556,7.96685823789436e-20,-0.0016025641234591603,-4.49389164535903e-20,-1.088261351315281e-20,0.00029137529782019556,-4.503750543700379e-22,-1.4477943544298175e-20,-4.368377004044338e-19,0.000381562887923792,1.7257435515481431e-19,-0.00022893772984389216,9.764668607841479e-19,-1.9124157268284577e-20,5.763955259189319e-21,-4.503750543700379e-22,2.0812520233448595e-05,-4.2651012427451054e-20,-3.697046266184251e-19,0.0016025641234591603,3.640852268258344e-19,-0.00029137529782019556,-0.0016025641234591603,-3.364782354405905e-20,3.656827759293771e-21,-1.4477943544298175e-20,-4.2651012427451054e-20,0.00029137529782019556,-4.368377004044338e-19,0.0034722222480922937,4.503588567357716e-18,4.503588567357716e-18,-0.02083333395421505,-3.697046266184251e-19,2.779540881175764e-34,-4.368377004044338e-19,-3.697046266184251e-19,-4.368377004044338e-19,0.010416666977107525,12.0,12.0,4.0,0.05295681953430176,-0.007425507064908743,-0.007425507064908743,-0.017868589609861374,0.0002861721732188016,0.000369822490029037,0.000961538462433964,0.0002861721732188016,0.000961538462433964,0.0017361111240461469,-0.007425507064908743,0.002666484098881483,0.000369822490029037,0.000961538462433964,-0.00017170330102089792,-6.724044942529872e-05,-0.00017482518160250038,1.31646091755847e-19,2.2288451398605515e-19,1.6068347358312086e-18,-0.007425507064908743,0.000369822490029037,0.002666484098881483,0.000961538462433964,2.40545673094069e-19,-6.724044942529872e-05,1.525839814576476e-20,-0.00017170330102089792,-0.00017482518160250038,1.6068347358312086e-18,-0.017868589609861374,0.000961538462433964,0.000961538462433964,0.02406517043709755,6.3982037809943385e-19,-6.164781114443535e-22,-0.0006410256610251963,5.350109076222539e-19,-0.0006410256610251963,-0.0052083334885537624,0.0002861721732188016,-0.00017170330102089792,2.40545673094069e-19,6.3982037809943385e-19,1.5609390175086446e-05,-1.0122244698728345e-20,-2.5719324837719553e-20,-1.3762530865254973e-20,-2.003167456665755e-20,-1.2939662577879732e-19,0.000369822490029037,-6.724044942529872e-05,-6.724044942529872e-05,-6.164781114443535e-22,-1.0122244698728345e-20,1.2225536920595914e-05,-1.2009136774170392e-21,3.357255697456204e-21,1.3130005884116133e-21,5.796828709047702e-35,0.000961538462433964,-0.00017482518160250038,1.525839814576476e-20,-0.0006410256610251963,-2.5719324837719553e-20,-1.2009136774170392e-21,0.00011655011621769518,1.2501078765037374e-22,-6.756373680932267e-21,-1.2231455094336265e-19,0.0002861721732188016,1.31646091755847e-19,-0.00017170330102089792,5.350109076222539e-19,-1.3762530865254973e-20,3.357255697456204e-21,1.2501078765037374e-22,1.5609390175086446e-05,-2.681974970222784e-20,-1.2939662577879732e-19,0.000961538462433964,2.2288451398605515e-19,-0.00017482518160250038,-0.0006410256610251963,-2.003167456665755e-20,1.3130005884116133e-21,-6.756373680932267e-21,-2.681974970222784e-20,0.00011655011621769518,-1.2231455094336265e-19,0.0017361111240461469,1.6068347358312086e-18,1.6068347358312086e-18,-0.0052083334885537624,-1.2939662577879732e-19,5.796828709047702e-35,-1.2231455094336265e-19,-1.2939662577879732e-19,-1.2231455094336265e-19,0.0017361111240461469,12.0,12.0,5.0,0.04464872553944588,-0.006068611051887274,-0.006068611051887274,-0.012408425100147724,0.00022893772984389216,0.0002958579862024635,0.0006410256610251963,0.00022893772984389216,0.0006410256610251963,0.0009920635493472219,-0.006068611051887274,0.0021564974449574947,0.0002958579862024635,0.0006410256610251963,-0.00013736264372710139,-5.379236245062202e-05,-0.00011655011621769518,-2.1345230270808369e-19,-3.2187251995663413e-19,-1.3836909782713005e-18,-0.006068611051887274,0.0002958579862024635,0.0021564974449574947,0.0006410256610251963,-3.8097677192205005e-19,-5.379236245062202e-05,-4.814238340202931e-20,-0.00013736264372710139,-0.00011655011621769518,-1.3836909782713005e-18,-0.012408425100147724,0.0006410256610251963,0.0006410256610251963,0.01215659361332655,-7.779569554563752e-19,-3.788947970943453e-20,-0.00032051283051259816,-6.166399856011306e-19,-0.00032051283051259816,-0.0019841270986944437,0.00022893772984389216,-0.00013736264372710139,-3.8097677192205005e-19,-7.779569554563752e-19,1.2487512321968097e-05,1.4574644512197318e-20,2.2520066493764338e-20,2.2673636128776502e-20,2.724117075934233e-20,1.2675587752261592e-19,0.0002958579862024635,-5.379236245062202e-05,-5.379236245062202e-05,-3.788947970943453e-20,1.4574644512197318e-20,9.780429536476731e-06,5.9903721219654856e-21,-6.776263578034403e-21,1.2705494208814505e-21,8.26584037255157e-35,0.0006410256610251963,-0.00011655011621769518,-4.814238340202931e-20,-0.00032051283051259816,2.2520066493764338e-20,5.9903721219654856e-21,5.827505810884759e-05,-1.0252335302535348e-23,7.834871392962581e-21,-5.3118121971367254e-21,0.00022893772984389216,-2.1345230270808369e-19,-0.00013736264372710139,-6.166399856011306e-19,2.2673636128776502e-20,-6.776263578034403e-21,-1.0252335302535348e-23,1.2487512321968097e-05,1.9481757786848908e-20,1.2675587752261592e-19,0.0006410256610251963,-3.2187251995663413e-19,-0.00011655011621769518,-0.00032051283051259816,2.724117075934233e-20,1.2705494208814505e-21,7.834871392962581e-21,1.9481757786848908e-20,5.827505810884759e-05,-5.3118121971367254e-21,0.0009920635493472219,-1.3836909782713005e-18,-1.3836909782713005e-18,-0.0019841270986944437,1.2675587752261592e-19,8.26584037255157e-35,-5.3118121971367254e-21,1.2675587752261592e-19,-5.3118121971367254e-21,0.0004960317746736109,12.0,12.0,6.0,0.03862541541457176,-0.005133488215506077,-0.005133488215506077,-0.009128891862928867,0.000190781443961896,0.00024654832668602467,0.0004578754596877843,0.000190781443961896,0.0004578754596877843,0.0006200397037900984,-0.005133488215506077,0.0018109561642631888,0.00024654832668602467,0.0004578754596877843,-0.00011446886492194608,-4.482696749619208e-05,-8.325008093379438e-05,8.131516293641283e-20,1.3383120566617945e-19,4.607040324256966e-19,-0.005133488215506077,0.00024654832668602467,0.0018109561642631888,0.0004578754596877843,1.797622057110792e-19,-4.482696749619208e-05,1.7797414495712073e-20,-0.00011446886492194608,-8.325008093379438e-05,4.607040324256966e-19,-0.009128891862928867,0.0004578754596877843,0.0004578754596877843,0.007061774842441082,2.2604997909393073e-19,3.056340598034232e-20,-0.00018315018678549677,1.7279472123987727e-19,-0.00018315018678549677,-0.0009300595265813172,0.000190781443961896,-0.00011446886492194608,1.797622057110792e-19,2.2604997909393073e-19,1.0406260116724297e-05,-9.301028833873649e-21,1.44436185781031e-21,-9.373169646163357e-21,-9.602430346191958e-21,-3.631027559779716e-20,0.00024654832668602467,-4.482696749619208e-05,-4.482696749619208e-05,3.056340598034232e-20,-9.301028833873649e-21,8.150357643899042e-06,-2.4487999449068315e-21,2.964615315390051e-21,-3.3881317890172014e-21,2.860997129557979e-35,0.0004578754596877843,-8.325008093379438e-05,1.7797414495712073e-20,-0.00018315018678549677,1.44436185781031e-21,-2.4487999449068315e-21,3.330003164592199e-05,1.2452258135765509e-24,-2.38176620549575e-21,-2.4516402278675714e-20,0.000190781443961896,8.131516293641283e-20,-0.00011446886492194608,1.7279472123987727e-19,-9.373169646163357e-21,2.964615315390051e-21,1.2452258135765509e-24,1.0406260116724297e-05,1.6940658945086007e-21,-3.631027559779716e-20,0.0004578754596877843,1.3383120566617945e-19,-8.325008093379438e-05,-0.00018315018678549677,-9.602430346191958e-21,-3.3881317890172014e-21,-2.38176620549575e-21,1.6940658945086007e-21,3.330003164592199e-05,-2.4516402278675714e-20,0.0006200397037900984,4.607040324256966e-19,4.607040324256966e-19,-0.0009300595265813172,-3.631027559779716e-20,2.860997129557979e-35,-2.4516402278675714e-20,-3.631027559779716e-20,-2.4516402278675714e-20,0.00018601190822664648,12.0,12.0,7.0,0.03404868766665459,-0.00444919103756547,-0.00444919103756547,-0.007001678925007582,0.0001635269436519593,0.00021132713300175965,0.00034340660204179585,0.0001635269436519593,0.00034340660204179585,0.00041335978312417865,-0.00444919103756547,0.001561167766340077,0.00021132713300175965,0.00034340660204179585,-9.811617201194167e-05,-3.8423117075581104e-05,-6.243756070034578e-05,1.0672615135404184e-19,5.759824041329242e-20,2.923147458813061e-19,-0.00444919103756547,0.00021132713300175965,0.001561167766340077,0.00034340660204179585,1.5263590319695664e-19,-3.8423117075581104e-05,-8.797700740245069e-21,-9.811617201194167e-05,-6.243756070034578e-05,2.923147458813061e-19,-0.007001678925007582,0.00034340660204179585,0.00034340660204179585,0.0044833640567958355,2.3218535864299553e-19,-3.507404528660742e-21,-0.00011446886492194608,1.8634724839594607e-19,-0.00011446886492194608,-0.0004960317746736109,0.0001635269436519593,-9.811617201194167e-05,1.5263590319695664e-19,2.3218535864299553e-19,8.91965191840427e-06,-6.940173778497047e-21,-9.688604148326657e-21,-8.580734658305391e-21,-7.497956852060612e-21,-2.2886476808969785e-20,0.00021132713300175965,-3.8423117075581104e-05,-3.8423117075581104e-05,-3.507404528660742e-21,-6.940173778497047e-21,6.986021162447287e-06,-1.206814609423582e-21,-2.541098841762901e-21,1.4823076576950256e-21,2.6180842066141786e-35,0.00034340660204179585,-6.243756070034578e-05,-8.797700740245069e-21,-0.00011446886492194608,-9.688604148326657e-21,-1.206814609423582e-21,2.0812520233448595e-05,-6.035103362569001e-23,4.696806238981034e-21,-1.3521166994212816e-20,0.0001635269436519593,1.0672615135404184e-19,-9.811617201194167e-05,1.8634724839594607e-19,-8.580734658305391e-21,-2.541098841762901e-21,-6.035103362569001e-23,8.91965191840427e-06,-9.317362419797304e-21,-2.2886476808969785e-20,0.00034340660204179585,5.759824041329242e-20,-6.243756070034578e-05,-0.00011446886492194608,-7.497956852060612e-21,1.4823076576950256e-21,4.696806238981034e-21,-9.317362419797304e-21,2.0812520233448595e-05,-1.3521166994212816e-20,0.00041335978312417865,2.923147458813061e-19,2.923147458813061e-19,-0.0004960317746736109,-2.2886476808969785e-20,2.6180842066141786e-35,-1.3521166994212816e-20,-2.2886476808969785e-20,-1.3521166994212816e-20,8.26719551696442e-05,12.0,12.0,8.0,0.03044920787215233,-0.003926428966224194,-0.003926428966224194,-0.005542200990021229,0.0001430860866094008,0.0001849112450145185,0.00026709403027780354,0.0001430860866094008,0.00026709403027780354,0.00028935185400769114,-0.003926428966224194,0.0013720921706408262,0.0001849112450145185,0.00026709403027780354,-8.585165051044896e-05,-3.362022471264936e-05,-4.856254963669926e-05,6.268043809681823e-20,5.844527336054672e-20,1.977615136685653e-19,-0.003926428966224194,0.0001849112450145185,0.0013720921706408262,0.00026709403027780354,1.2151464144162973e-19,-3.362022471264936e-05,-1.7191210660158612e-20,-8.585165051044896e-05,-4.856254963669926e-05,1.977615136685653e-19,-0.005542200990021229,0.00026709403027780354,0.00026709403027780354,0.003030245192348957,1.3876040078577709e-19,1.3201572355179742e-20,-7.631257903994992e-05,1.0503208545953324e-19,-7.631257903994992e-05,-0.00028935185400769114,0.0001430860866094008,-8.585165051044896e-05,1.2151464144162973e-19,1.3876040078577709e-19,7.804695087543223e-06,-5.5401059682656916e-21,-3.7339586153690937e-22,-6.571560610234537e-21,-5.5510390502975265e-21,-1.5404359980963423e-20,0.0001849112450145185,-3.362022471264936e-05,-3.362022471264936e-05,1.3201572355179742e-20,-5.5401059682656916e-21,6.112768460297957e-06,-1.7640102403591344e-22,2.117582368135751e-21,-2.541098841762901e-21,7.567734194421443e-36,0.00026709403027780354,-4.856254963669926e-05,-1.7191210660158612e-20,-7.631257903994992e-05,-3.7339586153690937e-22,-1.7640102403591344e-22,1.387501379213063e-05,9.028716901912389e-23,4.55056531110499e-21,-8.089587283872795e-21,0.0001430860866094008,6.268043809681823e-20,-8.585165051044896e-05,1.0503208545953324e-19,-6.571560610234537e-21,2.117582368135751e-21,9.028716901912389e-23,7.804695087543223e-06,4.235164736271502e-22,-1.5404359980963423e-20,0.00026709403027780354,5.844527336054672e-20,-4.856254963669926e-05,-7.631257903994992e-05,-5.5510390502975265e-21,-2.541098841762901e-21,4.55056531110499e-21,4.235164736271502e-22,1.387501379213063e-05,-8.089587283872795e-21,0.00028935185400769114,1.977615136685653e-19,1.977615136685653e-19,-0.00028935185400769114,-1.5404359980963423e-20,7.567734194421443e-36,-8.089587283872795e-21,-1.5404359980963423e-20,-8.089587283872795e-21,4.13359775848221e-05,12.0,12.0,9.0,0.0275422353297472,-0.003513900563120842,-0.003513900563120842,-0.004496891982853413,0.00012718762445729226,0.00016436555597465485,0.0002136752154910937,0.00012718762445729226,0.0002136752154910937,0.00021043770539108664,-0.003513900563120842,0.001223954139277339,0.00016436555597465485,0.0002136752154910937,-7.631257903994992e-05,-2.9884644391131587e-05,-3.885003752657212e-05,6.776263578034403e-20,4.658681209898652e-20,1.4028874621443952e-19,-0.003513900563120842,0.00016436555597465485,0.001223954139277339,0.0002136752154910937,1.1092175359257858e-19,-2.9884644391131587e-05,-2.1694869418314947e-21,-7.631257903994992e-05,-3.885003752657212e-05,1.4028874621443952e-19,-0.004496891982853413,0.0002136752154910937,0.0002136752154910937,0.0021463490556925535,1.5453813426249304e-19,-1.365638355938396e-20,-5.3418803872773424e-05,1.2705494208814505e-19,-5.3418803872773424e-05,-0.0001803751802071929,0.00012718762445729226,-7.631257903994992e-05,1.1092175359257858e-19,1.5453813426249304e-19,6.937506896065315e-06,-4.232803959572101e-21,-7.630870397772392e-21,-6.277493459607317e-21,-4.637036785169109e-21,-1.0883080417834505e-20,0.00016436555597465485,-2.9884644391131587e-05,-2.9884644391131587e-05,-1.365638355938396e-20,-4.232803959572101e-21,5.433571914181812e-06,9.464741528809175e-22,4.235164736271502e-22,1.4823076576950256e-21,4.230878168421778e-36,0.0002136752154910937,-3.885003752657212e-05,-2.1694869418314947e-21,-5.3418803872773424e-05,-7.630870397772392e-21,9.464741528809175e-22,9.71250938164303e-06,9.427464693594746e-36,-7.590301995098389e-22,-5.143716818203733e-21,0.00012718762445729226,6.776263578034403e-20,-7.631257903994992e-05,1.2705494208814505e-19,-6.277493459607317e-21,4.235164736271502e-22,9.427464693594746e-36,6.937506896065315e-06,-7.623296525288703e-21,-1.0883080417834505e-20,0.0002136752154910937,4.658681209898652e-20,-3.885003752657212e-05,-5.3418803872773424e-05,-4.637036785169109e-21,1.4823076576950256e-21,-7.590301995098389e-22,-7.623296525288703e-21,9.71250938164303e-06,-5.143716818203733e-21,0.00021043770539108664,1.4028874621443952e-19,1.4028874621443952e-19,-0.0001803751802071929,-1.0883080417834505e-20,4.230878168421778e-36,-5.143716818203733e-21,-1.0883080417834505e-20,-5.143716818203733e-21,2.2546897525899112e-05,12.0,12.0,10.0,0.025144459679722786,-0.003179993014782667,-0.003179993014782667,-0.0037223193794488907,0.00011446886492194608,0.00014792899310123175,0.00017482518160250038,0.00011446886492194608,0.00017482518160250038,0.00015782828268129379,-0.003179993014782667,0.001104737282730639,0.00014792899310123175,0.00017482518160250038,-6.868132186355069e-05,-2.689618122531101e-05,-3.178639599354938e-05,-1.0164395367051604e-19,-8.118752509048678e-20,-1.3213713977167085e-19,-0.003179993014782667,0.00014792899310123175,0.001104737282730639,0.00017482518160250038,-1.9782724867786913e-19,-2.689618122531101e-05,-5.082197683525802e-21,-6.868132186355069e-05,-3.178639599354938e-05,-1.2874900798265365e-19,-0.0037223193794488907,0.00017482518160250038,0.00017482518160250038,0.001576866372488439,-2.136416495201759e-19,-1.079945035764212e-20,-3.885003752657212e-05,-1.6878567407886538e-19,-3.885003752657212e-05,-0.00011837121564894915,0.00011446886492194608,-6.868132186355069e-05,-1.9782724867786913e-19,-2.136416495201759e-19,6.243756160984049e-06,7.325245740686088e-21,4.9640110223330204e-21,1.1242441926374779e-20,7.521460413684482e-21,1.6097446861403363e-20,0.00014792899310123175,-2.689618122531101e-05,-2.689618122531101e-05,-1.079945035764212e-20,7.325245740686088e-21,4.890214768238366e-06,1.5630906494607085e-21,-3.5998900258307764e-21,5.837087537108258e-22,-5.314003715840302e-23,0.00017482518160250038,-3.178639599354938e-05,-5.082197683525802e-21,-3.885003752657212e-05,4.9640110223330204e-21,1.5630906494607085e-21,7.06364335201215e-06,5.293955920339377e-23,-9.529120656610879e-22,-1.0164395367051604e-20,0.00011446886492194608,-1.0164395367051604e-19,-6.868132186355069e-05,-1.6878567407886538e-19,1.1242441926374779e-20,-3.5998900258307764e-21,5.293955920339377e-23,6.243756160984049e-06,4.446922973085077e-21,1.598774687942492e-20,0.00017482518160250038,-8.118752509048678e-20,-3.178639599354938e-05,-3.885003752657212e-05,7.521460413684482e-21,5.837087537108258e-22,-9.529120656610879e-22,4.446922973085077e-21,7.06364335201215e-06,-1.1011428314305904e-20,0.00015782828268129379,-1.3213713977167085e-19,-1.2874900798265365e-19,-0.00011837121564894915,1.6097446861403363e-20,-5.314003715840302e-23,-1.0164395367051604e-20,1.598774687942492e-20,-1.1011428314305904e-20,1.3152356586942915e-05,12.0,12.0,11.0,0.023132316768169403,-0.0029041471425443888,-0.0029041471425443888,-0.0031322843860834837,0.00010406260116724297,0.00013448089885059744,0.00014568764891009778,0.00010406260116724297,0.00014568764891009778,0.00012140637409174815,-0.0029041471425443888,0.001006714766845107,0.00013448089885059744,0.00014568764891009778,-6.243756070034578e-05,-2.4451073841191828e-05,-2.648866211529821e-05,-3.8116482626443515e-20,-2.1737600809433483e-19,-4.1165801236558996e-19,-0.0029041471425443888,0.00013448089885059744,0.001006714766845107,0.00014568764891009778,-4.111993342535808e-20,-2.4451073841191828e-05,-2.2573428044327104e-19,-6.243756070034578e-05,-2.648866211529821e-05,-4.1335207826009857e-19,-0.0031322843860834837,0.00014568764891009778,0.00014568764891009778,0.0011930199107155204,-3.550773592021026e-19,-2.6116733746380425e-19,-2.9137529054423794e-05,-3.629708077455723e-19,-2.9137529054423794e-05,-8.093757787719369e-05,0.00010406260116724297,-6.243756070034578e-05,-4.111993342535808e-20,-3.550773592021026e-19,5.676141881849617e-06,3.669139240073404e-22,8.587861820946558e-21,-1.6816711100173764e-21,9.967485183792069e-21,2.2543980414520216e-20,0.00013448089885059744,-2.4451073841191828e-05,-2.4451073841191828e-05,-2.6116733746380425e-19,3.669139240073404e-22,4.4456496652856e-06,7.556483919366573e-21,-8.470329472543003e-22,7.966765503192875e-21,1.5461614773401444e-20,0.00014568764891009778,-2.648866211529821e-05,-2.2573428044327104e-19,-2.9137529054423794e-05,8.587861820946558e-21,7.556483919366573e-21,5.2977325140091125e-06,1.0984958534704208e-20,1.0482032722271967e-20,1.3129010682441655e-20,0.00010406260116724297,-3.8116482626443515e-20,-6.243756070034578e-05,-3.629708077455723e-19,-1.6816711100173764e-21,-8.470329472543003e-22,1.0984958534704208e-20,5.676141881849617e-06,8.682087709356578e-21,2.286988957586611e-20,0.00014568764891009778,-2.1737600809433483e-19,-2.648866211529821e-05,-2.9137529054423794e-05,9.967485183792069e-21,7.966765503192875e-21,1.0482032722271967e-20,8.682087709356578e-21,5.2977325140091125e-06,1.3552527156068805e-20,0.00012140637409174815,-4.1165801236558996e-19,-4.1335207826009857e-19,-8.093757787719369e-05,2.2543980414520216e-20,1.5461614773401444e-20,1.3129010682441655e-20,2.286988957586611e-20,1.3552527156068805e-20,8.09375796961831e-06,12.0,12.0,12.0,0.021419374272227287,-0.002672407776117325,-0.002672407776117325,-0.002672407776117325,9.5390721980948e-05,0.00012327416334301233,0.00012327416334301233,9.5390721980948e-05,0.00012327416334301233,9.5390721980948e-05,-0.002672407776117325,0.0009246896370314062,0.00012327416334301233,0.00012327416334301233,-5.723443246097304e-05,-2.241348374809604e-05,-2.241348374809604e-05,4.0657581468206416e-20,2.820917240883398e-20,4.2351647362715017e-20,-0.002672407776117325,0.00012327416334301233,0.0009246896370314062,0.00012327416334301233,9.230914937202123e-20,-2.241348374809604e-05,-2.117582368135751e-21,-5.723443246097304e-05,-2.241348374809604e-05,4.0657581468206416e-20,-0.002672407776117325,0.00012327416334301233,0.00012327416334301233,0.0009246896370314062,9.337334954181338e-20,8.043928368088288e-21,-2.241348374809604e-05,7.78460514578964e-20,-2.241348374809604e-05,-5.723443246097304e-05,9.5390721980948e-05,-5.723443246097304e-05,9.230914937202123e-20,9.337334954181338e-20,5.203130058362149e-06,-4.9429591141848325e-21,-5.011887331458795e-21,-4.602436159419314e-21,-2.6463953390595285e-21,-4.6602576190445476e-21,0.00012327416334301233,-2.241348374809604e-05,-2.241348374809604e-05,8.043928368088288e-21,-4.9429591141848325e-21,4.075178821949521e-06,-5.9202286802442485e-22,1.6940658945086007e-21,-9.361300533335823e-22,6.033369130754963e-23,0.00012327416334301233,-2.241348374809604e-05,-2.117582368135751e-21,-2.241348374809604e-05,-5.011887331458795e-21,-5.9202286802442485e-22,4.075178821949521e-06,0.0,9.529120656610879e-22,1.4823076576950256e-21,9.5390721980948e-05,4.0657581468206416e-20,-5.723443246097304e-05,7.78460514578964e-20,-4.602436159419314e-21,1.6940658945086007e-21,0.0,5.203130058362149e-06,-4.870439446712227e-21,-4.552802091491864e-21,0.00012327416334301233,2.820917240883398e-20,-2.241348374809604e-05,-2.241348374809604e-05,-2.6463953390595285e-21,-9.361300533335823e-22,9.529120656610879e-22,-4.870439446712227e-21,4.075178821949521e-06,1.9058241313221758e-21,9.5390721980948e-05,4.2351647362715017e-20,4.0657581468206416e-20,-5.723443246097304e-05,-4.6602576190445476e-21,6.033369130754963e-23,1.4823076576950256e-21,-4.552802091491864e-21,1.9058241313221758e-21,5.203130058362149e-06,12.0,12.0,13.0,0.019943321123719215,-0.002474965760484338,-0.002474965760484338,-0.0023069879971444607,8.805296965874732e-05,0.00011379153147572652,0.00010566356650087982,8.805296965874732e-05,0.00010566356650087982,7.631257903994992e-05,-0.002474965760484338,0.0008550374768674374,0.00011379153147572652,0.00010566356650087982,-5.283178325043991e-05,-2.068936919386033e-05,-1.9211558537790552e-05,1.5246593050577406e-20,-4.753728139690116e-20,-6.776263578034403e-21,-0.002474965760484338,0.00011379153147572652,0.0008550374768674374,0.00010566356650087982,-2.6097650108037458e-20,-2.068936919386033e-05,3.3881317890172014e-21,-5.283178325043991e-05,-1.9211558537790552e-05,-8.470329472543003e-21,-0.0023069879971444607,0.00010566356650087982,0.00010566356650087982,0.0007313733221963048,-2.8905648791080824e-20,-7.483282635682178e-20,-1.7610595023143105e-05,-8.624183450890733e-21,-1.7610595023143105e-05,-4.162504046689719e-05,8.805296965874732e-05,-5.283178325043991e-05,-2.6097650108037458e-20,-2.8905648791080824e-20,4.802889634447638e-06,4.735640510815194e-21,2.5567080388053964e-21,-1.3207371303248458e-21,1.3207387459119797e-21,2.983334050659634e-23,0.00011379153147572652,-2.068936919386033e-05,-2.068936919386033e-05,-7.483282635682178e-20,4.735640510815194e-21,3.7617035104631213e-06,3.9724068565055544e-21,2.329340604949326e-21,4.290044211725917e-21,1.729338604506095e-21,0.00010566356650087982,-1.9211558537790552e-05,3.3881317890172014e-21,-1.7610595023143105e-05,2.5567080388053964e-21,3.9724068565055544e-21,3.201926347173867e-06,-3.0704944337968387e-21,1.0587911840678754e-22,-1.2705494208814505e-21,8.805296965874732e-05,1.5246593050577406e-20,-5.283178325043991e-05,-8.624183450890733e-21,-1.3207371303248458e-21,2.329340604949326e-21,-3.0704944337968387e-21,4.802889634447638e-06,2.964615315390051e-21,1.0587911840678754e-22,0.00010566356650087982,-4.753728139690116e-20,-1.9211558537790552e-05,-1.7610595023143105e-05,1.3207387459119797e-21,4.290044211725917e-21,1.0587911840678754e-22,2.964615315390051e-21,3.201926347173867e-06,-1.4823076576950256e-21,7.631257903994992e-05,-6.776263578034403e-21,-8.470329472543003e-21,-4.162504046689719e-05,2.983334050659634e-23,1.729338604506095e-21,-1.2705494208814505e-21,1.0587911840678754e-22,-1.4823076576950256e-21,3.4687534480326576e-06,12.0,12.0,14.0,0.018658068031072617,-0.002304723719134927,-0.002304723719134927,-0.002011790405958891,8.176347182597965e-05,0.00010566356650087982,9.157509339274839e-05,8.176347182597965e-05,9.157509339274839e-05,6.200397183420137e-05,-0.002304723719134927,0.0007951526786200702,0.00010566356650087982,9.157509339274839e-05,-4.9058086005970836e-05,-1.9211558537790552e-05,-1.6650015822960995e-05,5.082197683525802e-20,2.1675704112042362e-20,4.0657581468206416e-20,-0.002304723719134927,0.00010566356650087982,0.0007951526786200702,9.157509339274839e-05,7.629301339547955e-20,-1.9211558537790552e-05,4.235164736271502e-21,-4.9058086005970836e-05,-1.6650015822960995e-05,4.319868030996932e-20,-0.002011790405958891,9.157509339274839e-05,9.157509339274839e-05,0.0005885240389034152,6.375320087842e-20,6.246411683609336e-22,-1.4088475836615544e-05,5.3254876575489864e-20,-1.4088475836615544e-05,-3.100198591710068e-05,8.176347182597965e-05,-4.9058086005970836e-05,7.629301339547955e-20,6.375320087842e-20,4.459825959202135e-06,-3.665604436398643e-21,-2.6152591379699745e-21,-3.9717206358704335e-21,-1.9186470464038816e-21,-2.984840850719253e-21,0.00010566356650087982,-1.9211558537790552e-05,-1.9211558537790552e-05,6.246411683609336e-22,-3.665604436398643e-21,3.4930105812236434e-06,-3.4582531173895433e-22,-1.2705494208814505e-21,2.497447292992256e-22,-1.8753312620780476e-23,9.157509339274839e-05,-1.6650015822960995e-05,4.235164736271502e-21,-1.4088475836615544e-05,-2.6152591379699745e-21,-3.4582531173895433e-22,2.5615411232138285e-06,-2.6469779601696886e-23,-3.1763735522036263e-22,-1.2705494208814505e-21,8.176347182597965e-05,5.082197683525802e-20,-4.9058086005970836e-05,5.3254876575489864e-20,-3.9717206358704335e-21,-1.2705494208814505e-21,-2.6469779601696886e-23,4.459825959202135e-06,-2.4352197233561135e-21,-3.017554874593445e-21,9.157509339274839e-05,2.1675704112042362e-20,-1.6650015822960995e-05,-1.4088475836615544e-05,-1.9186470464038816e-21,2.497447292992256e-22,-3.1763735522036263e-22,-2.4352197233561135e-21,2.5615411232138285e-06,-1.4823076576950256e-21,6.200397183420137e-05,4.0657581468206416e-20,4.319868030996932e-20,-3.100198591710068e-05,-2.984840850719253e-21,-1.8753312620780476e-23,-1.2705494208814505e-21,-3.017554874593445e-21,-1.4823076576950256e-21,2.384768094998435e-06,12.0,12.0,15.0,0.01752878539264202,-0.002156417351216078,-0.002156417351216078,-0.0017698906594887376,7.631257903994992e-05,9.86193263088353e-05,8.012820762814954e-05,7.631257903994992e-05,8.012820762814954e-05,5.1062092097708955e-05,-0.002156417351216078,0.0007431137491948903,9.86193263088353e-05,8.012820762814954e-05,-4.578754669637419e-05,-1.793078627088107e-05,-1.4568764527211897e-05,-6.776263578034403e-20,-3.792753001761197e-20,-5.759824041329242e-20,-0.002156417351216078,9.86193263088353e-05,0.0007431137491948903,8.012820762814954e-05,-1.2271229557102994e-19,-1.793078627088107e-05,-4.235164736271502e-21,-4.578754669637419e-05,-1.4568764527211897e-05,-5.675120746603812e-20,-0.0017698906594887376,8.012820762814954e-05,8.012820762814954e-05,0.00048065700684674084,-1.0794320545374584e-19,1.7411412763127477e-21,-1.1446886674093548e-05,-8.995585284105055e-20,-1.1446886674093548e-05,-2.3567119569634087e-05,7.631257903994992e-05,-4.578754669637419e-05,-1.2271229557102994e-19,-1.0794320545374584e-19,4.162503955740249e-06,2.9130671806057224e-21,3.90634145963285e-21,7.546766162756209e-21,3.3736276535742885e-21,4.850316905062811e-21,9.86193263088353e-05,-1.793078627088107e-05,-1.793078627088107e-05,1.7411412763127477e-21,2.9130671806057224e-21,3.260143103034352e-06,1.0411836824455976e-22,-2.541098841762901e-21,-4.649818805701488e-22,2.143567320135986e-23,8.012820762814954e-05,-1.4568764527211897e-05,-4.235164736271502e-21,-1.1446886674093548e-05,3.90634145963285e-21,1.0411836824455976e-22,2.0812519778701244e-06,0.0,4.764560328305439e-22,5.293955920339377e-22,7.631257903994992e-05,-6.776263578034403e-20,-4.578754669637419e-05,-8.995585284105055e-20,7.546766162756209e-21,-2.541098841762901e-21,0.0,4.162503955740249e-06,4.0234064994579266e-21,4.817499887508833e-21,8.012820762814954e-05,-3.792753001761197e-20,-1.4568764527211897e-05,-1.1446886674093548e-05,3.3736276535742885e-21,-4.649818805701488e-22,4.764560328305439e-22,4.0234064994579266e-21,2.0812519778701244e-06,4.235164736271502e-22,5.1062092097708955e-05,-5.759824041329242e-20,-5.675120746603812e-20,-2.3567119569634087e-05,4.850316905062811e-21,2.143567320135986e-23,5.293955920339377e-22,4.817499887508833e-21,4.235164736271502e-22,1.6833656673043151e-06,12.0,12.0,16.0,0.016528651118278503,-0.0020260601304471493,-0.0020260601304471493,-0.0015691773733124137,7.15430433047004e-05,9.245562250725925e-05,7.070136052789167e-05,7.15430433047004e-05,7.070136052789167e-05,4.255174280842766e-05,-0.0020260601304471493,0.0006974725401960313,9.245562250725925e-05,7.070136052789167e-05,-4.292582525522448e-05,-1.681011235632468e-05,-1.2854792657890357e-05,3.8544755388592845e-20,1.8422966602781032e-20,2.498747194400186e-20,-0.0020260601304471493,9.245562250725925e-05,0.0006974725401960313,7.070136052789167e-05,6.51100743510396e-20,-1.681011235632468e-05,1.9058241313221758e-21,-4.292582525522448e-05,-1.2854792657890357e-05,2.583450489125616e-20,-0.0015691773733124137,7.070136052789167e-05,7.070136052789167e-05,0.0003976670850533992,3.83774678032268e-20,-2.73101689911299e-35,-9.426848009752575e-06,3.009675333024024e-20,-9.426848009752575e-06,-1.8236461983178742e-05,7.15430433047004e-05,-4.292582525522448e-05,6.51100743510396e-20,3.83774678032268e-20,3.9023475437716115e-06,-2.7769882958018634e-21,1.0695769037158279e-36,-3.5040687451260375e-21,-1.5055845322491713e-21,-2.0064501681631114e-21,9.245562250725925e-05,-1.681011235632468e-05,-1.681011235632468e-05,-2.73101689911299e-35,-2.7769882958018634e-21,3.0563842301489785e-06,-0.0,2.4935649237256873e-36,1.0714038381809006e-36,1.4278298647212031e-36,7.070136052789167e-05,-1.2854792657890357e-05,1.9058241313221758e-21,-9.426848009752575e-06,1.0695769037158279e-36,-0.0,1.7139723240688909e-06,1.034435028723613e-36,-2.9116757561866574e-22,-5.293955920339377e-22,7.15430433047004e-05,3.8544755388592845e-20,-4.292582525522448e-05,3.009675333024024e-20,-3.5040687451260375e-21,2.4935649237256873e-36,1.034435028723613e-36,3.9023475437716115e-06,2.068870057447226e-36,-2.0064501681631114e-21,7.070136052789167e-05,1.8422966602781032e-20,-1.2854792657890357e-05,-9.426848009752575e-06,-1.5055845322491713e-21,1.0714038381809006e-36,-2.9116757561866574e-22,2.068870057447226e-36,1.7139723240688909e-06,-5.823351512373315e-22,4.255174280842766e-05,2.498747194400186e-20,2.583450489125616e-20,-1.8236461983178742e-05,-2.0064501681631114e-21,1.4278298647212031e-36,-5.293955920339377e-22,-2.0064501681631114e-21,-5.823351512373315e-22,1.215764086737181e-06,12.0,13.0,3.0,0.060826994478702545,-0.008875739760696888,-0.008276979438960552,-0.025993237271904945,0.00035221187863498926,0.0004226542660035193,0.001479289960116148,0.0003052503161597997,0.0013736264081671834,0.0032051282469183207,-0.008875739760696888,0.0032339454628527164,0.0004226542660035193,0.001479289960116148,-0.00021132713300175965,-7.684623415116221e-05,-0.0002689617977011949,-1.09082349479505e-19,-1.70858611958378e-18,-1.436194158342542e-17,-0.008276979438960552,0.0004226542660035193,0.002766998019069433,0.0013736264081671834,-1.9865093962221295e-19,-7.044238009257242e-05,-2.0208886768410584e-18,-0.00016650016186758876,-0.00022893772984389216,-1.506796339729658e-17,-0.025993237271904945,0.001479289960116148,0.0013736264081671834,0.058044519275426865,-3.5522332556094526e-18,-1.0976955562277757e-18,-0.001479289960116148,-3.3313015858026644e-18,-0.0013736264081671834,-0.01923076994717121,0.00035221187863498926,-0.00021132713300175965,-1.9865093962221295e-19,-3.5522332556094526e-18,1.9211558537790552e-05,1.0306279460324323e-20,1.3284427579782712e-19,4.1236589317741496e-22,1.0198224469165609e-19,9.640759020032567e-19,0.0004226542660035193,-7.684623415116221e-05,-7.044238009257242e-05,-1.0976955562277757e-18,1.0306279460324323e-20,1.2807705388695467e-05,5.481491982371927e-20,-4.197958168474738e-21,3.458833113170611e-20,1.9622784326470956e-19,0.001479289960116148,-0.0002689617977011949,-2.0208886768410584e-18,-0.001479289960116148,1.3284427579782712e-19,5.481491982371927e-20,0.0002689617977011949,1.1167403558560435e-19,2.7695033129222815e-19,2.340853304714839e-18,0.0003052503161597997,-1.09082349479505e-19,-0.00016650016186758876,-3.3313015858026644e-18,4.1236589317741496e-22,-4.197958168474738e-21,1.1167403558560435e-19,1.387501379213063e-05,9.546790009976836e-20,9.612320550572994e-19,0.0013736264081671834,-1.70858611958378e-18,-0.00022893772984389216,-0.0013736264081671834,1.0198224469165609e-19,3.458833113170611e-20,2.7695033129222815e-19,9.546790009976836e-20,0.00022893772984389216,2.2505884611409087e-18,0.0032051282469183207,-1.436194158342542e-17,-1.506796339729658e-17,-0.01923076994717121,9.640759020032567e-19,1.9622784326470956e-19,2.340853304714839e-18,9.612320550572994e-19,2.2505884611409087e-18,0.009615384973585606,12.0,13.0,4.0,0.049358975142240524,-0.006878698244690895,-0.006413778755813837,-0.0165574811398983,0.00026415890897624195,0.0003169907140545547,0.000887573987711221,0.00022893772984389216,0.0008241758332587779,0.0016025641234591603,-0.006878698244690895,0.0024658034089952707,0.0003169907140545547,0.000887573987711221,-0.00015849535702727735,-5.763467197539285e-05,-0.00016137708735186607,1.1015217835487163e-19,2.4709699524427725e-19,1.4832320320295536e-18,-0.006413778755813837,0.0003169907140545547,0.0021095890551805496,0.0008241758332587779,2.0847058161958893e-19,-5.283178325043991e-05,-8.893665808204725e-21,-0.00012487512140069157,-0.00013736264372710139,-1.6913082514608153e-33,-0.0165574811398983,0.000887573987711221,0.0008241758332587779,0.022256270051002502,5.951369602887201e-19,2.6373519689085295e-20,-0.000591715972404927,1.9098070382833613e-20,-0.0005494505749084055,-0.004807692486792803,0.00026415890897624195,-0.00015849535702727735,2.0847058161958893e-19,5.951369602887201e-19,1.4408667993848212e-05,-8.437115424450872e-21,-2.3743847898293864e-20,-1.1298686976854117e-20,-1.7702778248170044e-20,-1.1944303222097602e-19,0.0003169907140545547,-5.763467197539285e-05,-5.283178325043991e-05,2.6373519689085295e-20,-8.437115424450872e-21,9.605779268895276e-06,3.1370142145509505e-21,2.1743070460454633e-21,-7.271183348424639e-21,6.39854635931188e-35,0.000887573987711221,-0.00016137708735186607,-8.893665808204725e-21,-0.000591715972404927,-2.3743847898293864e-20,3.1370142145509505e-21,0.00010758472490124404,1.9392509257341147e-23,-5.7402659050450515e-21,-1.1290574629178702e-19,0.00022893772984389216,1.1015217835487163e-19,-0.00012487512140069157,1.9098070382833613e-20,-1.1298686976854117e-20,2.1743070460454633e-21,1.9392509257341147e-23,1.0406260116724297e-05,-3.20078810302262e-21,9.305866461075652e-35,0.0008241758332587779,2.4709699524427725e-19,-0.00013736264372710139,-0.0005494505749084055,-1.7702778248170044e-20,-7.271183348424639e-21,-5.7402659050450515e-21,-3.20078810302262e-21,9.157509339274839e-05,1.4771756776168416e-34,0.0016025641234591603,1.4832320320295536e-18,-1.6913082514608153e-33,-0.004807692486792803,-1.1944303222097602e-19,6.39854635931188e-35,-1.1290574629178702e-19,9.305866461075652e-35,1.4771756776168416e-34,0.0016025641234591603,12.0,13.0,5.0,0.041603267192840576,-0.00562130194157362,-0.005240913014858961,-0.011496196500957012,0.00021132713300175965,0.0002535925596021116,0.000591715972404927,0.00018315018678549677,0.0005494505749084055,0.0009157509193755686,-0.00562130194157362,0.001994159771129489,0.0002535925596021116,0.000591715972404927,-0.0001267962798010558,-4.610773976310156e-05,-0.00010758472490124404,8.809142651444724e-20,8.978549240895584e-20,7.356977972259013e-19,-0.005240913014858961,0.0002535925596021116,0.001705986331216991,0.0005494505749084055,1.9383650288790997e-19,-4.226542660035193e-05,-6.322073567083167e-20,-9.990009857574478e-05,-9.157509339274839e-05,-9.329062959461458e-34,-0.011496196500957012,0.000591715972404927,0.0005494505749084055,0.01124260388314724,3.906967903544017e-19,-4.1654330875158547e-20,-0.0002958579862024635,0.0,-0.00027472528745420277,-0.0018315018387511373,0.00021132713300175965,-0.0001267962798010558,1.9383650288790997e-19,3.906967903544017e-19,1.152693494077539e-05,-1.1017713756050314e-20,-1.5811218135653007e-20,-9.002302733849067e-21,-1.1528260292993126e-20,-5.850271071433087e-20,0.0002535925596021116,-4.610773976310156e-05,-4.226542660035193e-05,-4.1654330875158547e-20,-1.1017713756050314e-20,7.68462268752046e-06,6.022225037897313e-21,1.2705494208814505e-21,1.2705494208814505e-21,5.521467435452028e-35,0.000591715972404927,-0.00010758472490124404,-6.322073567083167e-20,-0.0002958579862024635,-1.5811218135653007e-20,6.022225037897313e-21,5.379236245062202e-05,-1.0745774898499238e-22,1.467563163276268e-20,-4.6083976759433776e-20,0.00018315018678549677,8.809142651444724e-20,-9.990009857574478e-05,0.0,-9.002302733849067e-21,1.2705494208814505e-21,-1.0745774898499238e-22,8.325007911480498e-06,0.0,4.5091857112750516e-35,0.0005494505749084055,8.978549240895584e-20,-9.157509339274839e-05,-0.00027472528745420277,-1.1528260292993126e-20,1.2705494208814505e-21,1.467563163276268e-20,0.0,4.578754669637419e-05,4.4013943716314604e-35,0.0009157509193755686,7.356977972259013e-19,-9.329062959461458e-34,-0.0018315018387511373,-5.850271071433087e-20,5.521467435452028e-35,-4.6083976759433776e-20,4.5091857112750516e-35,4.4013943716314604e-35,0.0004578754596877843,12.0,13.0,6.0,0.03598347678780556,-0.004754860419780016,-0.004432838410139084,-0.008456858806312084,0.00017610593931749463,0.00021132713300175965,0.0004226542660035193,0.00015262515807989985,0.0003924646880477667,0.0005723443464376032,-0.004754860419780016,0.0016746073961257935,0.00021132713300175965,0.0004226542660035193,-0.00010566356650087982,-3.8423117075581104e-05,-7.684623415116221e-05,-5.082197683525802e-21,-1.1519648082658485e-19,6.426054435231116e-19,-0.004432838410139084,0.00021132713300175965,0.001432557008229196,0.0003924646880477667,-5.826834071999134e-20,-3.522119004628621e-05,-1.4167135275892776e-19,-8.325008093379438e-05,-6.541077891597524e-05,4.489324768272428e-19,-0.008456858806312084,0.0004226542660035193,0.0003924646880477667,0.006530637387186289,1.5069358295227983e-20,1.5712209139974384e-19,-0.00016906170640140772,-8.809142651444724e-20,-0.00015698587230872363,-0.0008585164905525744,0.00017610593931749463,-0.00010566356650087982,-5.826834071999134e-20,1.5069358295227983e-20,9.605779268895276e-06,5.329209243291265e-21,1.48802085847661e-20,3.154296049148004e-22,2.958571201973767e-21,-2.7232708313935003e-20,0.00021132713300175965,-3.8423117075581104e-05,-3.522119004628621e-05,1.5712209139974384e-19,5.329209243291265e-21,6.403852694347734e-06,3.6945606045994e-21,-2.964615315390051e-21,-4.235164736271502e-22,-4.037296671400282e-20,0.0004226542660035193,-7.684623415116221e-05,-1.4167135275892776e-19,-0.00016906170640140772,1.48802085847661e-20,3.6945606045994e-21,3.073849075008184e-05,3.082502891014671e-21,2.17333983441808e-20,-5.738644986473617e-20,0.00015262515807989985,-5.082197683525802e-21,-8.325008093379438e-05,-8.809142651444724e-20,3.154296049148004e-22,-2.964615315390051e-21,3.082502891014671e-21,6.937506896065315e-06,1.8634724839594607e-20,-1.1553269581825784e-20,0.0003924646880477667,-1.1519648082658485e-19,-6.541077891597524e-05,-0.00015698587230872363,2.958571201973767e-21,-4.235164736271502e-22,2.17333983441808e-20,1.8634724839594607e-20,2.616431265778374e-05,-4.982089119243852e-20,0.0005723443464376032,6.426054435231116e-19,4.489324768272428e-19,-0.0008585164905525744,-2.7232708313935003e-20,-4.037296671400282e-20,-5.738644986473617e-20,-1.1553269581825784e-20,-4.982089119243852e-20,0.00017170330102089792,12.0,13.0,7.0,0.03171500191092491,-0.004120879340916872,-0.0038416252937167883,-0.006485730409622192,0.00015094794798642397,0.0001811375404940918,0.0003169907140545547,0.00013082155783195049,0.000294348516035825,0.000381562887923792,-0.004120879340916872,0.0014436113415285945,0.0001811375404940918,0.0003169907140545547,-9.05687702470459e-05,-3.2934098271653056e-05,-5.763467197539285e-05,6.098637220230962e-20,6.945670167485263e-20,2.6982900415178842e-19,-0.0038416252937167883,0.0001811375404940918,0.0012349144089967012,0.000294348516035825,1.2458089657478723e-19,-3.0189590688678436e-05,1.5653929621007013e-21,-7.135721534723416e-05,-4.9058086005970836e-05,-3.2256834612297953e-34,-0.006485730409622192,0.0003169907140545547,0.000294348516035825,0.00414603715762496,2.1301566766692933e-19,-8.22142807972767e-21,-0.00010566356650087982,-3.3881317890172014e-21,-9.811617201194167e-05,-0.0004578754596877843,0.00015094794798642397,-9.05687702470459e-05,1.2458089657478723e-19,2.1301566766692933e-19,8.233524567913264e-06,-5.153988721201022e-21,-9.036158170033354e-21,-6.4159004054711155e-21,-6.37355586669179e-21,-2.1125979587102653e-20,0.0001811375404940918,-3.2934098271653056e-05,-3.0189590688678436e-05,-8.22142807972767e-21,-5.153988721201022e-21,5.489016530191293e-06,7.025840084323312e-22,1.6940658945086007e-21,8.470329472543003e-22,1.2799448873072063e-35,0.0003169907140545547,-5.763467197539285e-05,1.5653929621007013e-21,-0.00010566356650087982,-9.036158170033354e-21,7.025840084323312e-22,1.9211558537790552e-05,-5.2663555705318664e-23,-1.3301890218774888e-21,-1.2481077039013314e-20,0.00013082155783195049,6.098637220230962e-20,-7.135721534723416e-05,-3.3881317890172014e-21,-6.4159004054711155e-21,1.6940658945086007e-21,-5.2663555705318664e-23,5.946434612269513e-06,8.470329472543003e-22,1.6726163932162098e-35,0.000294348516035825,6.945670167485263e-20,-4.9058086005970836e-05,-9.811617201194167e-05,-6.37355586669179e-21,8.470329472543003e-22,-1.3301890218774888e-21,8.470329472543003e-22,1.635269472899381e-05,1.7005623651759748e-35,0.000381562887923792,2.6982900415178842e-19,-3.2256834612297953e-34,-0.0004578754596877843,-2.1125979587102653e-20,1.2799448873072063e-35,-1.2481077039013314e-20,1.6726163932162098e-35,1.7005623651759748e-35,7.631257903994992e-05,12.0,13.0,8.0,0.028358926996588707,-0.0036365878768265247,-0.0033900395501405,-0.005133488215506077,0.00013207945448812097,0.00015849535702727735,0.00024654832668602467,0.00011446886492194608,0.00022893772984389216,0.00026709403027780354,-0.0036365878768265247,0.0012687633279711008,0.00015849535702727735,0.00024654832668602467,-7.924767851363868e-05,-2.8817335987696424e-05,-4.482696749619208e-05,5.590417451878382e-20,3.3881317890172014e-20,1.327690023620848e-19,-0.0033900395501405,0.00015849535702727735,0.0010853195562958717,0.00022893772984389216,1.0916352950180884e-19,-2.6415891625219956e-05,-1.59674680297203e-20,-6.243756070034578e-05,-3.815628951997496e-05,-2.1394079836912175e-34,-0.005133488215506077,0.00024654832668602467,0.00022893772984389216,0.0028021810576319695,1.3207237411464737e-19,-1.2111944459487258e-20,-7.044238009257242e-05,3.3881317890172014e-21,-6.541077891597524e-05,-0.00026709403027780354,0.00013207945448812097,-7.924767851363868e-05,1.0916352950180884e-19,1.3207237411464737e-19,7.204333996924106e-06,-4.8675939938726586e-21,-7.647580617446635e-22,-5.416474374534908e-21,-4.975607706780102e-21,-1.4219409213197006e-20,0.00015849535702727735,-2.8817335987696424e-05,-2.6415891625219956e-05,-1.2111944459487258e-20,-4.8675939938726586e-21,4.802889634447638e-06,7.672173387721336e-22,8.470329472543003e-22,1.376428539288238e-21,8.215093368811329e-36,0.00024654832668602467,-4.482696749619208e-05,-1.59674680297203e-20,-7.044238009257242e-05,-7.647580617446635e-22,7.672173387721336e-22,1.2807705388695467e-05,4.716655203668519e-23,3.203867614048211e-21,6.755570330229939e-21,0.00011446886492194608,5.590417451878382e-20,-6.243756070034578e-05,3.3881317890172014e-21,-5.416474374534908e-21,8.470329472543003e-22,4.716655203668519e-23,5.203130058362149e-06,-4.235164736271502e-22,1.0853118935951401e-35,0.00022893772984389216,3.3881317890172014e-20,-3.815628951997496e-05,-6.541077891597524e-05,-4.975607706780102e-21,1.376428539288238e-21,3.203867614048211e-21,-4.235164736271502e-22,1.0901796485995874e-05,1.1027133569339334e-35,0.00026709403027780354,1.327690023620848e-19,-2.1394079836912175e-34,-0.00026709403027780354,-1.4219409213197006e-20,8.215093368811329e-36,6.755570330229939e-21,1.0853118935951401e-35,1.1027133569339334e-35,3.815628951997496e-05,12.0,13.0,9.0,0.025649137794971466,-0.003254437819123268,-0.003033718327060342,-0.004165065474808216,0.00011740396439563483,0.00014088476018514484,0.0001972386526176706,0.0001017501053865999,0.00018315018678549677,0.00019425019854679704,-0.003254437819123268,0.0011317741591483355,0.00014088476018514484,0.0001972386526176706,-7.044238009257242e-05,-2.5615410777390935e-05,-3.586157254176214e-05,-9.656175598699024e-20,-9.571472303973594e-20,-2.1555017491318595e-19,-0.003033718327060342,0.00014088476018514484,0.0009681201772764325,0.00018315018678549677,-1.8464050337361068e-19,-2.3480792151531205e-05,-8.058988871350435e-21,-5.550005516852252e-05,-3.052503234357573e-05,-5.736025345396457e-34,-0.004165065474808216,0.0001972386526176706,0.00018315018678549677,0.001984767382964492,-2.4389508249066105e-19,-7.127146485296008e-21,-4.930966315441765e-05,0.0,-4.578754669637419e-05,-0.00016650016186758876,0.00011740396439563483,-7.044238009257242e-05,-1.8464050337361068e-19,-2.4389508249066105e-19,6.403852694347734e-06,6.0252970768324095e-21,6.546201546787391e-21,9.994224766445126e-21,7.859375810815898e-21,2.0091840647110845e-20,0.00014088476018514484,-2.5615410777390935e-05,-2.3480792151531205e-05,-7.127146485296008e-21,6.0252970768324095e-21,4.2692349779827055e-06,5.138596012834468e-22,-2.541098841762901e-21,7.411538288475128e-22,1.9670061251087822e-35,0.0001972386526176706,-3.586157254176214e-05,-8.058988871350435e-21,-4.930966315441765e-05,6.546201546787391e-21,5.138596012834468e-22,8.965393135440536e-06,9.874152546907215e-36,1.3081903796688397e-21,-1.365017142490575e-21,0.0001017501053865999,-9.656175598699024e-20,-5.550005516852252e-05,0.0,9.994224766445126e-21,-2.541098841762901e-21,9.874152546907215e-36,4.625004748959327e-06,0.0,3.09006728638559e-35,0.00018315018678549677,-9.571472303973594e-20,-3.052503234357573e-05,-4.578754669637419e-05,7.859375810815898e-21,7.411538288475128e-22,1.3081903796688397e-21,0.0,7.631258085893933e-06,2.3652277953238716e-35,0.00019425019854679704,-2.1555017491318595e-19,-5.736025345396457e-34,-0.00016650016186758876,2.0091840647110845e-20,1.9670061251087822e-35,-1.365017142490575e-21,3.09006728638559e-35,2.3652277953238716e-35,2.0812520233448595e-05,12.0,13.0,10.0,0.023414406925439835,-0.002945131855085492,-0.002745331497862935,-0.0034475140273571014,0.00010566356650087982,0.0001267962798010558,0.00016137708735186607,9.157509339274839e-05,0.00014985015150159597,0.00014568764891009778,-0.002945131855085492,0.001021530944854021,0.0001267962798010558,0.00016137708735186607,-6.33981399005279e-05,-2.305386988155078e-05,-2.9341288609430194e-05,4.489274620447792e-20,3.3457801416544863e-20,9.529715192676151e-20,-0.002745331497862935,0.0001267962798010558,0.0008738056640140712,0.00014985015150159597,9.820608764716909e-20,-2.1132713300175965e-05,-1.6017709558410092e-20,-4.995004928787239e-05,-2.4975024643936194e-05,-1.159493967121051e-34,-0.0034475140273571014,0.00016137708735186607,0.00014985015150159597,0.001458130544051528,1.1076827281485878e-19,-3.450314122213595e-21,-3.586157254176214e-05,0.0,-3.330003164592199e-05,-0.00010926573304459453,0.00010566356650087982,-6.33981399005279e-05,9.820608764716909e-20,1.1076827281485878e-19,5.763467470387695e-06,-5.474160528737679e-21,-4.597719048885131e-21,-4.473746566269096e-21,-3.194444096244607e-21,-7.368238937699672e-21,0.0001267962798010558,-2.305386988155078e-05,-2.1132713300175965e-05,-3.450314122213595e-21,-5.474160528737679e-21,3.84231134376023e-06,1.5869545879896324e-21,8.470329472543003e-22,-9.529120656610879e-22,6.109878696294764e-36,0.00016137708735186607,-2.9341288609430194e-05,-1.6017709558410092e-20,-3.586157254176214e-05,-4.597719048885131e-21,1.5869545879896324e-21,6.520286206068704e-06,4.325819211026018e-36,1.6198799508557766e-21,-3.165893036517673e-21,9.157509339274839e-05,4.489274620447792e-20,-4.995004928787239e-05,0.0,-4.473746566269096e-21,8.470329472543003e-22,4.325819211026018e-36,4.162503955740249e-06,-2.117582368135751e-22,5.666070388012217e-36,0.00014985015150159597,3.3457801416544863e-20,-2.4975024643936194e-05,-3.330003164592199e-05,-3.194444096244607e-21,-9.529120656610879e-22,1.6198799508557766e-21,-2.117582368135751e-22,5.550005425902782e-06,3.189382209733799e-36,0.00014568764891009778,9.529715192676151e-20,-1.159493967121051e-34,-0.00010926573304459453,-7.368238937699672e-21,6.109878696294764e-36,-3.165893036517673e-21,5.666070388012217e-36,3.189382209733799e-36,1.2140637409174815e-05,12.0,13.0,11.0,0.02153935842216015,-0.0026896181516349316,-0.002507108263671398,-0.0029009452555328608,9.605778905097395e-05,0.0001152693439507857,0.00013448089885059744,8.325008093379438e-05,0.00012487512140069157,0.00011206742055946961,-0.0026896181516349316,0.0009308872977271676,0.0001152693439507857,0.00013448089885059744,-5.763467197539285e-05,-2.095806303259451e-05,-2.4451073841191828e-05,4.0657581468206416e-20,2.7343149850407904e-20,6.268043809681823e-20,-0.002507108263671398,0.0001152693439507857,0.0007962608360685408,0.00012487512140069157,8.578366369125818e-20,-1.9211558537790552e-05,2.964615315390051e-21,-4.5409135054796934e-05,-2.0812520233448595e-05,-1.6940658945086007e-21,-0.0029009452555328608,0.00013448089885059744,0.00012487512140069157,0.0011031703324988484,7.214972386833826e-20,-2.9945547703101742e-21,-2.689618122531101e-05,-3.513397650108113e-22,-2.4975024643936194e-05,-7.471161370631307e-05,9.605778905097395e-05,-5.763467197539285e-05,8.578366369125818e-20,7.214972386833826e-20,5.239515758148627e-06,-4.541810444426426e-21,2.1608761905739835e-23,-3.956194439616942e-21,-2.6792432547174418e-21,-5.6156306278073374e-21,0.0001152693439507857,-2.095806303259451e-05,-1.9211558537790552e-05,-2.9945547703101742e-21,-4.541810444426426e-21,3.4930105812236434e-06,-1.7845324883628953e-22,8.470329472543003e-22,6.501298321884763e-22,3.8430655885169773e-23,0.00013448089885059744,-2.4451073841191828e-05,2.964615315390051e-21,-2.689618122531101e-05,2.1608761905739835e-23,-1.7845324883628953e-22,4.890214768238366e-06,-5.293955920339377e-23,-4.235164736271502e-22,2.117582368135751e-22,8.325008093379438e-05,4.0657581468206416e-20,-4.5409135054796934e-05,-3.513397650108113e-22,-3.956194439616942e-21,8.470329472543003e-22,-5.293955920339377e-23,3.7840945878997445e-06,4.235164736271502e-22,-1.0587911840678754e-22,0.00012487512140069157,2.7343149850407904e-20,-2.0812520233448595e-05,-2.4975024643936194e-05,-2.6792432547174418e-21,6.501298321884763e-22,-4.235164736271502e-22,4.235164736271502e-22,4.162503955740249e-06,2.117582368135751e-22,0.00011206742055946961,6.268043809681823e-20,-1.6940658945086007e-21,-7.471161370631307e-05,-5.6156306278073374e-21,3.8430655885169773e-23,2.117582368135751e-22,-1.0587911840678754e-22,2.117582368135751e-22,7.471161097782897e-06,12.0,13.0,12.0,0.019943321123719215,-0.002474965760484338,-0.0023069879971444607,-0.002474965760484338,8.805296965874732e-05,0.00010566356650087982,0.00011379153147572652,7.631257903994992e-05,0.00010566356650087982,8.805296965874732e-05,-0.002474965760484338,0.0008550374768674374,0.00010566356650087982,0.00011379153147572652,-5.283178325043991e-05,-1.9211558537790552e-05,-2.068936919386033e-05,-3.3881317890172014e-21,-4.595162786142529e-20,1.9481757786848908e-20,-0.0023069879971444607,0.00010566356650087982,0.0007313733221963048,0.00010566356650087982,-3.034132414174317e-20,-1.7610595023143105e-05,-5.209252625613947e-20,-4.162504046689719e-05,-1.7610595023143105e-05,2.371692252312041e-20,-0.002474965760484338,0.00011379153147572652,0.00010566356650087982,0.0008550374768674374,-2.5402511431937476e-20,2.701498694501023e-20,-2.068936919386033e-05,-3.3531110298332375e-20,-1.9211558537790552e-05,-5.283178325043991e-05,8.805296965874732e-05,-5.283178325043991e-05,-3.034132414174317e-20,-2.5402511431937476e-20,4.802889634447638e-06,2.5630570942932027e-21,4.826246676251728e-21,1.1092007843066913e-22,1.3849909491494773e-21,-1.4540018642898556e-21,0.00010566356650087982,-1.9211558537790552e-05,-1.7610595023143105e-05,2.701498694501023e-20,2.5630570942932027e-21,3.201926347173867e-06,1.7021278762551166e-21,-1.2705494208814505e-21,-7.759531844365511e-23,-3.8753137048296585e-21,0.00011379153147572652,-2.068936919386033e-05,-5.209252625613947e-20,-2.068936919386033e-05,4.826246676251728e-21,1.7021278762551166e-21,3.7617035104631213e-06,1.0058516248644817e-21,4.182225177068108e-21,2.541098841762901e-21,7.631257903994992e-05,-3.3881317890172014e-21,-4.162504046689719e-05,-3.3531110298332375e-20,1.1092007843066913e-22,-1.2705494208814505e-21,1.0058516248644817e-21,3.4687534480326576e-06,3.5998900258307764e-21,2.117582368135751e-22,0.00010566356650087982,-4.595162786142529e-20,-1.7610595023143105e-05,-1.9211558537790552e-05,1.3849909491494773e-21,-7.759531844365511e-23,4.182225177068108e-21,3.5998900258307764e-21,3.201926347173867e-06,-1.9058241313221758e-21,8.805296965874732e-05,1.9481757786848908e-20,2.371692252312041e-20,-5.283178325043991e-05,-1.4540018642898556e-21,-3.8753137048296585e-21,2.541098841762901e-21,2.117582368135751e-22,-1.9058241313221758e-21,4.802889634447638e-06,12.0,13.0,13.0,0.018568146973848343,-0.0022920866031199694,-0.002136494033038616,-0.002136494033038616,8.127966430038214e-05,9.753560152603313e-05,9.753560152603313e-05,7.044238009257242e-05,9.05687702470459e-05,7.044238009257242e-05,-0.0022920866031199694,0.0007906294777058065,9.753560152603313e-05,9.753560152603313e-05,-4.876780076301657e-05,-1.773374606273137e-05,-1.773374606273137e-05,-8.385626177817573e-20,-4.2418720078165703e-20,-8.470329472543003e-20,-0.002136494033038616,9.753560152603313e-05,0.000676274998113513,9.05687702470459e-05,-1.2044193035881623e-19,-1.625593358767219e-05,-8.470329472543003e-22,-3.8423117075581104e-05,-1.5094795344339218e-05,-1.0164395367051604e-20,-0.002136494033038616,9.753560152603313e-05,9.05687702470459e-05,0.000676274998113513,-1.2250082167755193e-19,3.890391575653495e-21,-1.625593358767219e-05,-4.076945996846072e-22,-1.5094795344339218e-05,-3.8423117075581104e-05,8.127966430038214e-05,-4.876780076301657e-05,-1.2044193035881623e-19,-1.2250082167755193e-19,4.433436515682843e-06,2.8091148518044936e-21,2.9844825942723124e-21,6.801644451907856e-21,3.897919807800651e-21,6.886369072383453e-21,9.753560152603313e-05,-1.773374606273137e-05,-1.625593358767219e-05,3.890391575653495e-21,2.8091148518044936e-21,2.9556242679973366e-06,-2.192465841533633e-22,1.6940658945086007e-21,-3.5153328205719286e-22,-6.43798346210751e-23,9.753560152603313e-05,-1.773374606273137e-05,-8.470329472543003e-22,-1.625593358767219e-05,2.9844825942723124e-21,-2.192465841533633e-22,2.9556242679973366e-06,-2.6469779601696886e-23,3.705769144237564e-22,1.6940658945086007e-21,7.044238009257242e-05,-8.385626177817573e-20,-3.8423117075581104e-05,-4.076945996846072e-22,6.801644451907856e-21,1.6940658945086007e-21,-2.6469779601696886e-23,3.201926347173867e-06,2.117582368135751e-22,-1.0587911840678754e-22,9.05687702470459e-05,-4.2418720078165703e-20,-1.5094795344339218e-05,-1.5094795344339218e-05,3.897919807800651e-21,-3.5153328205719286e-22,3.705769144237564e-22,2.117582368135751e-22,2.5157992240565363e-06,1.9058241313221758e-21,7.044238009257242e-05,-8.470329472543003e-20,-1.0164395367051604e-20,-3.8423117075581104e-05,6.886369072383453e-21,-6.43798346210751e-23,1.6940658945086007e-21,-1.0587911840678754e-22,1.9058241313221758e-21,3.201926347173867e-06,12.0,13.0,14.0,0.017370838671922684,-0.002134404145181179,-0.001989494077861309,-0.001863075071014464,7.547397399321198e-05,9.05687702470459e-05,8.453085320070386e-05,6.541077891597524e-05,7.849293615436181e-05,5.723443246097304e-05,-0.002134404145181179,0.0007352537359111011,9.05687702470459e-05,8.453085320070386e-05,-4.528438512352295e-05,-1.6467049135826528e-05,-1.536924537504092e-05,3.218725199566341e-20,2.508737177442611e-20,4.0657581468206416e-20,-0.001989494077861309,9.05687702470459e-05,0.0006289040902629495,7.849293615436181e-05,6.354417621503698e-20,-1.5094795344339218e-05,1.9058241313221758e-21,-3.567860767361708e-05,-1.308215632889187e-05,4.235164736271502e-21,-0.001863075071014464,8.453085320070386e-05,7.849293615436181e-05,0.000544181908480823,5.842975079936428e-20,1.9238401492973877e-21,-1.300474650633987e-05,-9.507422311660742e-22,-1.2075835911673494e-05,-2.861721623048652e-05,7.547397399321198e-05,-4.528438512352295e-05,6.354417621503698e-20,5.842975079936428e-20,4.116762283956632e-06,-2.6761110351616074e-21,-2.1954552835765096e-21,-3.1596124415346654e-21,-1.6793578921642298e-21,-2.7872573715216684e-21,9.05687702470459e-05,-1.6467049135826528e-05,-1.5094795344339218e-05,1.9238401492973877e-21,-2.6761110351616074e-21,2.7445082650956465e-06,2.12104805497344e-22,5.293955920339377e-22,-5.720871791244629e-22,4.768891048457358e-23,8.453085320070386e-05,-1.536924537504092e-05,1.9058241313221758e-21,-1.300474650633987e-05,-2.1954552835765096e-21,2.12104805497344e-22,2.364499323448399e-06,2.6469779601696886e-23,-5.293955920339377e-22,-1.6940658945086007e-21,6.541077891597524e-05,3.218725199566341e-20,-3.567860767361708e-05,-9.507422311660742e-22,-3.1596124415346654e-21,5.293955920339377e-22,2.6469779601696886e-23,2.9732173061347567e-06,0.0,5.293955920339377e-23,7.849293615436181e-05,2.508737177442611e-20,-1.308215632889187e-05,-1.2075835911673494e-05,-1.6793578921642298e-21,-5.720871791244629e-22,-5.293955920339377e-22,0.0,2.0126394701946992e-06,-8.470329472543003e-22,5.723443246097304e-05,4.0657581468206416e-20,4.235164736271502e-21,-2.861721623048652e-05,-2.7872573715216684e-21,4.768891048457358e-23,-1.6940658945086007e-21,5.293955920339377e-23,-8.470329472543003e-22,2.201324377892888e-06,12.0,13.0,15.0,0.0163189098238945,-0.001997041516005993,-0.001861439784988761,-0.0016390284290537238,7.044238009257242e-05,8.453085320070386e-05,7.396449655061588e-05,6.105006468715146e-05,6.868132186355069e-05,4.7134239139268175e-05,-0.001997041516005993,0.0006871334044262767,8.453085320070386e-05,7.396449655061588e-05,-4.226542660035193e-05,-1.536924537504092e-05,-1.3448090612655506e-05,3.049318610115481e-20,7.531765436218016e-21,2.371692252312041e-20,-0.001861439784988761,8.453085320070386e-05,0.0005877402727492154,6.868132186355069e-05,5.816352142674438e-20,-1.4088475836615544e-05,-5.293955920339377e-21,-3.330003164592199e-05,-1.1446886674093548e-05,-4.658681209898652e-21,-0.0016390284290537238,7.396449655061588e-05,6.868132186355069e-05,0.000444438133854419,3.9692025817635485e-20,-1.7236129637035796e-21,-1.0566356650087982e-05,9.116396708934915e-22,-9.811617019295227e-06,-2.1754263798356988e-05,7.044238009257242e-05,-4.226542660035193e-05,5.816352142674438e-20,3.9692025817635485e-20,3.84231134376023e-06,-2.2232791271448003e-21,-6.3622551029029185e-24,-2.9725222007717135e-21,-1.464123416709497e-21,-2.2075346246798413e-21,8.453085320070386e-05,-1.536924537504092e-05,-1.4088475836615544e-05,-1.7236129637035796e-21,-2.2232791271448003e-21,2.5615411232138285e-06,-1.244578403320245e-22,5.293955920339377e-22,4.086281818560564e-22,1.4820747922666916e-23,7.396449655061588e-05,-1.3448090612655506e-05,-5.293955920339377e-21,-1.0566356650087982e-05,-6.3622551029029185e-24,-1.244578403320245e-22,1.921155671880115e-06,-3.970466940254533e-23,8.999725064576941e-22,1.0587911840678754e-22,6.105006468715146e-05,3.049318610115481e-20,-3.330003164592199e-05,9.116396708934915e-22,-2.9725222007717135e-21,5.293955920339377e-22,-3.970466940254533e-23,2.775002712951391e-06,0.0,-7.940933880509066e-23,6.868132186355069e-05,7.531765436218016e-21,-1.1446886674093548e-05,-9.811617019295227e-06,-1.464123416709497e-21,4.086281818560564e-22,8.999725064576941e-22,0.0,1.6352695411114837e-06,6.352747104407253e-22,4.7134239139268175e-05,2.371692252312041e-20,-4.658681209898652e-21,-2.1754263798356988e-05,-2.2075346246798413e-21,1.4820747922666916e-23,1.0587911840678754e-22,-7.940933880509066e-23,6.352747104407253e-22,1.5538760180788813e-06,12.0,13.0,16.0,0.015387343242764473,-0.0018763052066788077,-0.0017488874727860093,-0.0014531330671161413,6.603972724406049e-05,7.924767851363868e-05,6.526279321406037e-05,5.723443246097304e-05,6.0601163568207994e-05,3.9278533222386613e-05,-0.0018763052066788077,0.0006449291831813753,7.924767851363868e-05,6.526279321406037e-05,-3.962383925681934e-05,-1.4408667993848212e-05,-1.1865961823787075e-05,2.159934015498466e-20,1.3129010682441655e-20,2.414043899674756e-20,-0.0017488874727860093,7.924767851363868e-05,0.0005516377277672291,6.0601163568207994e-05,5.3996369677635494e-20,-1.3207945812609978e-05,2.964615315390051e-21,-3.121878035017289e-05,-1.0100194231199566e-05,-2.541098841762901e-21,-0.0014531330671161413,6.526279321406037e-05,6.0601163568207994e-05,0.00036769884172827005,5.012077647623167e-20,3.82726250839664e-21,-8.701705155544914e-06,2.5242024256714767e-22,-8.080155566858593e-06,-1.6833657355164178e-05,6.603972724406049e-05,-3.962383925681934e-05,5.3996369677635494e-20,5.012077647623167e-20,3.602166998462053e-06,-2.014079374506136e-21,-2.653845821075866e-21,-2.7700148158868076e-21,-1.2905010132172617e-21,-1.852107878604163e-21,7.924767851363868e-05,-1.4408667993848212e-05,-1.3207945812609978e-05,3.82726250839664e-21,-2.014079374506136e-21,2.401444817223819e-06,-7.457003939648743e-22,1.2705494208814505e-21,2.1775304642328285e-23,1.800187685462496e-23,6.526279321406037e-05,-1.1865961823787075e-05,2.964615315390051e-21,-8.701705155544914e-06,-2.653845821075866e-21,-7.457003939648743e-22,1.5821283341210801e-06,1.3234889800848443e-23,1.0587911840678754e-22,-6.352747104407253e-22,5.723443246097304e-05,2.159934015498466e-20,-3.121878035017289e-05,2.5242024256714767e-22,-2.7700148158868076e-21,1.2705494208814505e-21,1.3234889800848443e-23,2.6015650291810744e-06,0.0,0.0,6.0601163568207994e-05,1.3129010682441655e-20,-1.0100194231199566e-05,-8.080155566858593e-06,-1.2905010132172617e-21,2.1775304642328285e-23,1.0587911840678754e-22,0.0,1.3466925565808197e-06,3.1763735522036263e-22,3.9278533222386613e-05,2.414043899674756e-20,-2.541098841762901e-21,-1.6833657355164178e-05,-1.852107878604163e-21,1.800187685462496e-23,-6.352747104407253e-22,0.0,3.1763735522036263e-22,1.1222438160984893e-06,12.0,14.0,3.0,0.05698041990399361,-0.008267922326922417,-0.007222985383123159,-0.02422161214053631,0.0003270538873039186,0.00036630037357099354,0.0013736264081671834,0.00024801588733680546,0.0011904762359336019,0.0029761905316263437,-0.008267922326922417,0.0030077064875513315,0.00036630037357099354,0.0013736264081671834,-0.00019623234402388334,-6.660006329184398e-05,-0.00024975024280138314,1.677360206556268e-19,2.4711814004868564e-19,3.8602190674425465e-18,-0.007222985383123159,0.00036630037357099354,0.0022272998467087746,0.0011904762359336019,2.3497505110822476e-19,-5.6353903346462175e-05,7.975811821790393e-20,-0.00012400794366840273,-0.00018315018678549677,-4.233482660400989e-33,-0.02422161214053631,0.0013736264081671834,0.0011904762359336019,0.05398351699113846,8.030993686688659e-19,3.0486397404018195e-20,-0.0013736264081671834,-3.6144706997141574e-21,-0.0011904762359336019,-0.01785714365541935,0.0003270538873039186,-0.00019623234402388334,2.3497505110822476e-19,8.030993686688659e-19,1.783930383680854e-05,-1.00143679068305e-20,-8.340299951813614e-22,-1.187022354368851e-20,-2.5343508574220583e-20,-3.1688968734419126e-19,0.00036630037357099354,-6.660006329184398e-05,-5.6353903346462175e-05,3.0486397404018195e-20,-1.00143679068305e-20,1.0246164492855314e-05,-1.3189239770793173e-20,-5.5812077166422706e-21,6.46991109894428e-21,1.8585886969701339e-34,0.0013736264081671834,-0.00024975024280138314,7.975811821790393e-20,-0.0013736264081671834,-8.340299951813614e-22,-1.3189239770793173e-20,0.00024975024280138314,2.276201217812309e-22,-1.0400481922720901e-20,-3.7443232571068363e-19,0.00024801588733680546,1.677360206556268e-19,-0.00012400794366840273,-3.6144706997141574e-21,-1.187022354368851e-20,-5.5812077166422706e-21,2.276201217812309e-22,9.53907237999374e-06,3.634707796588786e-22,2.122984582735803e-34,0.0011904762359336019,2.4711814004868564e-19,-0.00018315018678549677,-0.0011904762359336019,-2.5343508574220583e-20,6.46991109894428e-21,-1.0400481922720901e-20,3.634707796588786e-22,0.00018315018678549677,4.5018999995845425e-34,0.0029761905316263437,3.8602190674425465e-18,-4.233482660400989e-33,-0.01785714365541935,-3.1688968734419126e-19,1.8585886969701339e-34,-3.7443232571068363e-19,2.122984582735803e-34,4.5018999995845425e-34,0.008928571827709675,12.0,14.0,4.0,0.04621974751353264,-0.006406985688954592,-0.005595810245722532,-0.01542582456022501,0.0002452904300298542,0.00027472528745420277,0.0008241758332587779,0.00018601190822664648,0.0007142857066355646,0.0014880952658131719,-0.006406985688954592,0.002293242374435067,0.00027472528745420277,0.0008241758332587779,-0.0001471742580179125,-4.995004928787239e-05,-0.00014985015150159597,1.3467569244811074e-19,6.10851815114185e-20,8.78185603098813e-19,-0.005595810245722532,0.00027472528745420277,0.0016979475039988756,0.0007142857066355646,1.4105023059177994e-19,-4.226542660035193e-05,-7.046418827389661e-20,-9.300595411332324e-05,-0.00010989011207129806,-3.660075945694076e-19,-0.01542582456022501,0.0008241758332587779,0.0007142857066355646,0.020700549706816673,4.484270177741846e-19,-9.554284234014824e-21,-0.0005494505749084055,5.395912393185073e-21,-0.0004761904710903764,-0.004464285913854837,0.0002452904300298542,-0.0001471742580179125,1.4105023059177994e-19,4.484270177741846e-19,1.3379477422859054e-05,-2.8728001859063866e-22,-2.8407304783760303e-21,-9.061687677923125e-21,-1.5395204448675654e-20,-1.1091138798552753e-19,0.00027472528745420277,-4.995004928787239e-05,-4.226542660035193e-05,-9.554284234014824e-21,-2.8728001859063866e-22,7.68462268752046e-06,-2.438431510578292e-21,-5.244697072523774e-21,3.5331779902077315e-21,1.1533463555152722e-35,0.0008241758332587779,-0.00014985015150159597,-7.046418827389661e-20,-0.0005494505749084055,-2.8407304783760303e-21,-2.438431510578292e-21,9.990009857574478e-05,-1.1279553527940329e-22,5.696863964486593e-20,2.2789311844445787e-19,0.00018601190822664648,1.3467569244811074e-19,-9.300595411332324e-05,5.395912393185073e-21,-9.061687677923125e-21,-5.244697072523774e-21,-1.1279553527940329e-22,7.15430405762163e-06,-7.346980436346737e-22,7.176048054687622e-35,0.0007142857066355646,6.10851815114185e-20,-0.00010989011207129806,-0.0004761904710903764,-1.5395204448675654e-20,3.5331779902077315e-21,5.696863964486593e-20,-7.346980436346737e-22,7.326007471419871e-05,2.4400507166273646e-19,0.0014880952658131719,8.78185603098813e-19,-3.660075945694076e-19,-0.004464285913854837,-1.1091138798552753e-19,1.1533463555152722e-35,2.2789311844445787e-19,7.176048054687622e-35,2.4400507166273646e-19,0.0014880952658131719,12.0,14.0,5.0,0.038947541266679764,-0.00523547874763608,-0.004571886267513037,-0.01070905290544033,0.00019623234402388334,0.00021978022414259613,0.0005494505749084055,0.00014880952949170023,0.0004761904710903764,0.0008503401186317205,-0.00523547874763608,0.0018545739585533738,0.00021978022414259613,0.0005494505749084055,-0.00011773940059356391,-3.996003943029791e-05,-9.990009857574478e-05,-8.639736061993863e-20,-7.148958074826295e-19,-2.9358052350402886e-18,-0.004571886267513037,0.00021978022414259613,0.0013730099890381098,0.0004761904710903764,-1.1786359546479137e-19,-3.3812342735473067e-05,-7.799801875358917e-19,-7.440476474585012e-05,-7.326007471419871e-05,-2.488801795100308e-18,-0.01070905290544033,0.0005494505749084055,0.0004761904710903764,0.010456567630171776,-1.3452032983449738e-18,-4.160800940709043e-19,-0.00027472528745420277,-9.825582188149884e-19,-0.0002380952355451882,-0.001700680237263441,0.00019623234402388334,-0.00011773940059356391,-1.1786359546479137e-19,-1.3452032983449738e-18,1.0703582120186184e-05,-8.933047764077275e-22,4.8126224299516113e-20,2.363096480576487e-21,3.759406960200226e-20,1.8334331615206561e-19,0.00021978022414259613,-3.996003943029791e-05,-3.3812342735473067e-05,-4.160800940709043e-19,-8.933047764077275e-22,6.147698513814248e-06,1.5838951304393407e-20,-3.3881317890172014e-21,1.164670302474663e-20,4.6802169863934407e-20,0.0005494505749084055,-9.990009857574478e-05,-7.799801875358917e-19,-0.00027472528745420277,4.8126224299516113e-20,1.5838951304393407e-20,4.995004928787239e-05,3.599765625621467e-20,9.504229628756422e-20,2.75718349167407e-19,0.00014880952949170023,-8.639736061993863e-20,-7.440476474585012e-05,-9.825582188149884e-19,2.363096480576487e-21,-3.3881317890172014e-21,3.599765625621467e-20,5.723443337046774e-06,2.710505431213761e-20,1.3434802552796317e-19,0.0004761904710903764,-7.148958074826295e-19,-7.326007471419871e-05,-0.0002380952355451882,3.759406960200226e-20,1.164670302474663e-20,9.504229628756422e-20,2.710505431213761e-20,3.6630037357099354e-05,2.191942286289088e-19,0.0008503401186317205,-2.9358052350402886e-18,-2.488801795100308e-18,-0.001700680237263441,1.8334331615206561e-19,4.6802169863934407e-20,2.75718349167407e-19,1.3434802552796317e-19,2.191942286289088e-19,0.00042517005931586027,12.0,14.0,6.0,0.03368055447936058,-0.004428309854120016,-0.0038665947504341602,-0.007877092808485031,0.0001635269436519593,0.00018315018678549677,0.0003924646880477667,0.00012400794366840273,0.0003401360590942204,0.0005314626032486558,-0.004428309854120016,0.001557371229864657,0.00018315018678549677,0.0003924646880477667,-9.811617201194167e-05,-3.330003164592199e-05,-7.135721534723416e-05,8.639736061993863e-20,5.590417451878382e-20,3.948891743433677e-19,-0.0038665947504341602,0.00018315018678549677,0.0011528964387252927,0.0003401360590942204,1.2360221266316629e-19,-2.8176951673231088e-05,1.4319363771635418e-21,-6.200397183420137e-05,-5.232862531556748e-05,1.0893083325574001e-19,-0.007877092808485031,0.0003924646880477667,0.0003401360590942204,0.006073881406337023,2.8021379145329713e-19,6.97060174657678e-21,-0.00015698587230872363,-3.3881317890172014e-21,-0.0001360544265480712,-0.0007971939048729837,0.0001635269436519593,-9.811617201194167e-05,1.2360221266316629e-19,2.8021379145329713e-19,8.91965191840427e-06,-5.216470341913969e-21,-1.4270985216859395e-20,-5.941059555877681e-21,-7.199490053771019e-21,-3.1123093831136746e-20,0.00018315018678549677,-3.330003164592199e-05,-2.8176951673231088e-05,6.97060174657678e-21,-5.216470341913969e-21,5.123082246427657e-06,-3.2705319898508062e-21,-2.964615315390051e-21,1.2705494208814505e-21,1.78891686555069e-35,0.0003924646880477667,-7.135721534723416e-05,1.4319363771635418e-21,-0.00015698587230872363,-1.4270985216859395e-20,-3.2705319898508062e-21,2.8542885047500022e-05,2.5515803798125874e-23,6.938365128700654e-21,-2.1014058172815107e-20,0.00012400794366840273,8.639736061993863e-20,-6.200397183420137e-05,-3.3881317890172014e-21,-5.941059555877681e-21,-2.964615315390051e-21,2.5515803798125874e-23,4.76953618999687e-06,4.235164736271502e-22,2.0227475449103906e-35,0.0003401360590942204,5.590417451878382e-20,-5.232862531556748e-05,-0.0001360544265480712,-7.199490053771019e-21,1.2705494208814505e-21,6.938365128700654e-21,4.235164736271502e-22,2.093144939863123e-05,-4.3572333302296005e-20,0.0005314626032486558,3.948891743433677e-19,1.0893083325574001e-19,-0.0007971939048729837,-3.1123093831136746e-20,1.78891686555069e-35,-2.1014058172815107e-20,2.0227475449103906e-35,-4.3572333302296005e-20,0.0001594387722434476,12.0,14.0,7.0,0.029681386426091194,-0.0038377437740564346,-0.0033506671898066998,-0.006040685344487429,0.00014016595378052443,0.00015698587230872363,0.000294348516035825,0.00010629251482896507,0.00025510202976875007,0.00035430840216577053,-0.0038377437740564346,0.0013425350189208984,0.00015698587230872363,0.000294348516035825,-8.409957081312314e-05,-2.8542885047500022e-05,-5.3517909691436216e-05,5.590417451878382e-20,5.336307567702092e-20,2.505555149335439e-19,-0.0033506671898066998,0.00015698587230872363,0.000993803609162569,0.00025510202976875007,1.0543942021242732e-19,-2.4151671823346987e-05,-1.5868533108711765e-21,-5.3146257414482534e-05,-3.924646807718091e-05,-2.681804265623401e-34,-0.006040685344487429,0.000294348516035825,0.00025510202976875007,0.0038559655658900738,1.986018257733426e-19,-1.343351896881844e-20,-9.811617201194167e-05,5.082197683525802e-21,-8.50340147735551e-05,-0.00042517005931586027,0.00014016595378052443,-8.409957081312314e-05,1.0543942021242732e-19,1.986018257733426e-19,7.645416189916432e-06,-4.2513739219858465e-21,-8.28142371573834e-21,-5.148093039852664e-21,-5.393896544338759e-21,-1.9616980814368587e-20,0.00015698587230872363,-2.8542885047500022e-05,-2.4151671823346987e-05,-1.343351896881844e-20,-4.2513739219858465e-21,4.391213224153034e-06,7.766810443056932e-22,2.117582368135751e-22,1.4823076576950256e-21,1.009711047749366e-35,0.000294348516035825,-5.3517909691436216e-05,-1.5868533108711765e-21,-9.811617201194167e-05,-8.28142371573834e-21,7.766810443056932e-22,1.783930383680854e-05,-6.4697168908557456e-24,-1.1808138549616934e-21,-1.1589571824724351e-20,0.00010629251482896507,5.590417451878382e-20,-5.3146257414482534e-05,5.082197683525802e-21,-5.148093039852664e-21,2.117582368135751e-22,-6.4697168908557456e-24,4.088173682248453e-06,-8.470329472543003e-22,1.3070012028979407e-35,0.00025510202976875007,5.336307567702092e-20,-3.924646807718091e-05,-8.50340147735551e-05,-5.393896544338759e-21,1.4823076576950256e-21,-1.1808138549616934e-21,-8.470329472543003e-22,1.308215632889187e-05,1.4244569370754958e-35,0.00035430840216577053,2.505555149335439e-19,-2.681804265623401e-34,-0.00042517005931586027,-1.9616980814368587e-20,1.009711047749366e-35,-1.1589571824724351e-20,1.3070012028979407e-35,1.4244569370754958e-35,7.086167897796258e-05,12.0,14.0,8.0,0.026537835597991943,-0.0033866430167108774,-0.002956635318696499,-0.0047809830866754055,0.0001226452150149271,0.00013736264372710139,0.00022893772984389216,9.300595411332324e-05,0.00019841270113829523,0.00024801588733680546,-0.0033866430167108774,0.001179921324364841,0.00013736264372710139,0.00022893772984389216,-7.358712900895625e-05,-2.4975024643936194e-05,-4.162504046689719e-05,6.691560283308973e-20,3.5575383784680614e-20,1.6950987070515556e-19,-0.002956635318696499,0.00013736264372710139,0.0008733937866054475,0.00019841270113829523,7.438398393928373e-20,-2.1132713300175965e-05,-2.665286399416135e-21,-4.650297705666162e-05,-3.052503234357573e-05,-1.4236674961916476e-34,-0.0047809830866754055,0.00022893772984389216,0.00019841270113829523,0.002606074558570981,1.71204634533306e-19,-1.1165900254732348e-21,-6.541077891597524e-05,0.0,-5.668934318237007e-05,-0.00024801588733680546,0.0001226452150149271,-7.358712900895625e-05,7.438398393928373e-20,1.71204634533306e-19,6.689738711429527e-06,-2.4606116539040143e-22,-9.27531353346348e-21,-4.48151754038312e-21,-4.363379346804355e-21,-1.3203737241939158e-20,0.00013736264372710139,-2.4975024643936194e-05,-2.1132713300175965e-05,-1.1165900254732348e-21,-2.4606116539040143e-22,3.84231134376023e-06,-6.671537282021843e-22,-2.329340604949326e-21,7.411538288475128e-22,4.975544943104007e-37,0.00022893772984389216,-4.162504046689719e-05,-2.665286399416135e-21,-6.541077891597524e-05,-9.27531353346348e-21,-6.671537282021843e-22,1.1892869224539027e-05,-9.1381464245072e-23,2.189213866581499e-21,-6.933931957605252e-21,9.300595411332324e-05,6.691560283308973e-20,-4.650297705666162e-05,0.0,-4.48151754038312e-21,-2.329340604949326e-21,-9.1381464245072e-23,3.577152028810815e-06,2.117582368135751e-22,8.843795588184868e-36,0.00019841270113829523,3.5575383784680614e-20,-3.052503234357573e-05,-5.668934318237007e-05,-4.363379346804355e-21,7.411538288475128e-22,2.189213866581499e-21,2.117582368135751e-22,8.72143755259458e-06,7.03236123294809e-36,0.00024801588733680546,1.6950987070515556e-19,-1.4236674961916476e-34,-0.00024801588733680546,-1.3203737241939158e-20,4.975544943104007e-37,-6.933931957605252e-21,8.843795588184868e-36,7.03236123294809e-36,3.543083948898129e-05,12.0,14.0,9.0,0.024000134319067,-0.0030306994449347258,-0.0026457570493221283,-0.0038788989186286926,0.00010901796485995874,0.00012210012937430292,0.00018315018678549677,8.26719551696442e-05,0.00015873015217948705,0.0001803751802071929,-0.0030306994449347258,0.0010525189572945237,0.00012210012937430292,0.00018315018678549677,-6.541077891597524e-05,-2.2200021703611128e-05,-3.330003164592199e-05,5.929230630780102e-20,3.5575383784680614e-20,1.2024750414077506e-19,-0.0026457570493221283,0.00012210012937430292,0.000779063324443996,0.00015873015217948705,9.048607561369704e-20,-1.8784634448820725e-05,-8.426090657849188e-21,-4.13359775848221e-05,-2.44200236920733e-05,-1.3660353270171089e-34,-0.0038788989186286926,0.00018315018678549677,0.00015873015217948705,0.0018458326812833548,1.299923250668062e-19,8.902654935017703e-21,-4.578754669637419e-05,0.0,-3.968253804487176e-05,-0.00015460730355698615,0.00010901796485995874,-6.541077891597524e-05,9.048607561369704e-20,1.299923250668062e-19,5.946434612269513e-06,-4.5943154106908025e-21,-6.078615491218701e-21,-3.977243924384429e-21,-3.374324173577388e-21,-9.328354874656309e-21,0.00012210012937430292,-2.2200021703611128e-05,-1.8784634448820725e-05,8.902654935017703e-21,-4.5943154106908025e-21,3.4153879369114293e-06,-2.0538397564212516e-22,-2.329340604949326e-21,-1.164670302474663e-21,7.311681764371875e-36,0.00018315018678549677,-3.330003164592199e-05,-8.426090657849188e-21,-4.578754669637419e-05,-6.078615491218701e-21,-2.0538397564212516e-22,8.325007911480498e-06,4.137740114894452e-36,2.3889256798795953e-21,-4.408900129888914e-21,8.26719551696442e-05,5.929230630780102e-20,-4.13359775848221e-05,0.0,-3.977243924384429e-21,-2.329340604949326e-21,4.137740114894452e-36,3.179690793331247e-06,0.0,6.21393261823065e-36,0.00015873015217948705,3.5575383784680614e-20,-2.44200236920733e-05,-3.968253804487176e-05,-3.374324173577388e-21,-1.164670302474663e-21,2.3889256798795953e-21,0.0,6.105005923018325e-06,3.902040726680899e-36,0.0001803751802071929,1.2024750414077506e-19,-1.3660353270171089e-34,-0.00015460730355698615,-9.328354874656309e-21,7.311681764371875e-36,-4.408900129888914e-21,6.21393261823065e-36,3.902040726680899e-36,1.932591294462327e-05,12.0,14.0,10.0,0.02190764620900154,-0.002742614597082138,-0.0023941684048622847,-0.0032105394639074802,9.811617201194167e-05,0.00010989011207129806,0.00014985015150159597,7.440476474585012e-05,0.0001298701245104894,0.00013528138515539467,-0.002742614597082138,0.0009499915759079158,0.00010989011207129806,0.00014985015150159597,-5.886970029678196e-05,-1.9980019715148956e-05,-2.7245481760473922e-05,-4.912791094074942e-20,-1.8677076486957322e-19,-3.909267982634797e-19,-0.0023941684048622847,0.00010989011207129806,0.0007031550048850477,0.0001298701245104894,-6.669813188017071e-20,-1.6906171367736533e-05,-1.8578810015125437e-19,-3.720238237292506e-05,-1.9980019715148956e-05,-3.3146119761734883e-19,-0.0032105394639074802,0.00014985015150159597,0.0001298701245104894,0.001356039778329432,-3.7146910626257727e-19,-1.2506057085718849e-19,-3.330003164592199e-05,-2.829090043829363e-19,-2.886002948798705e-05,-0.000101461038866546,9.811617201194167e-05,-5.886970029678196e-05,-6.669813188017071e-20,-3.7146910626257727e-19,5.351791060093092e-06,-4.824883322659114e-22,8.421504005976067e-21,1.1324236881531454e-21,1.0234713797054281e-20,2.5567236696109168e-20,0.00010989011207129806,-1.9980019715148956e-05,-1.6906171367736533e-05,-1.2506057085718849e-19,-4.824883322659114e-22,3.073849256907124e-06,3.0867203812276976e-21,-1.6940658945086007e-21,3.5998900258307764e-21,7.445800044823589e-21,0.00014985015150159597,-2.7245481760473922e-05,-1.8578810015125437e-19,-3.330003164592199e-05,8.421504005976067e-21,3.0867203812276976e-21,6.054551704437472e-06,9.074568754141651e-21,9.147158699654581e-21,1.1379253883840642e-20,7.440476474585012e-05,-4.912791094074942e-20,-3.720238237292506e-05,-2.829090043829363e-19,1.1324236881531454e-21,-1.6940658945086007e-21,9.074568754141651e-21,2.861721668523387e-06,7.623296525288703e-21,1.8485231330921254e-20,0.0001298701245104894,-1.8677076486957322e-19,-1.9980019715148956e-05,-2.886002948798705e-05,1.0234713797054281e-20,3.5998900258307764e-21,9.147158699654581e-21,7.623296525288703e-21,4.440004431671696e-06,9.512711945885498e-21,0.00013528138515539467,-3.909267982634797e-19,-3.3146119761734883e-19,-0.000101461038866546,2.5567236696109168e-20,7.445800044823589e-21,1.1379253883840642e-20,1.8485231330921254e-20,9.512711945885498e-21,1.1273448762949556e-05,12.0,14.0,11.0,0.020152168348431587,-0.0025046381633728743,-0.0021863554138690233,-0.0027014652732759714,8.91965173650533e-05,9.990009857574478e-05,0.00012487512140069157,6.764069257769734e-05,0.00010822511103469878,0.00010406260116724297,-0.0025046381633728743,0.000865692738443613,9.990009857574478e-05,0.00012487512140069157,-5.3517909691436216e-05,-1.8163655113312416e-05,-2.2704567527398467e-05,4.743384504624082e-20,1.5670109524204556e-20,4.8723393771816847e-20,-0.0021863554138690233,9.990009857574478e-05,0.0006407454493455589,0.00010822511103469878,6.926003302186961e-20,-1.536924537504092e-05,-8.586659824118942e-21,-3.382034628884867e-05,-1.6650015822960995e-05,-7.748823748337609e-35,-0.0027014652732759714,0.00012487512140069157,0.00010822511103469878,0.0010259185219183564,9.453340572743365e-20,-3.816454634367682e-21,-2.4975024643936194e-05,0.0,-2.1645020751748234e-05,-6.937506987014785e-05,8.91965173650533e-05,-5.3517909691436216e-05,6.926003302186961e-20,9.453340572743365e-20,4.865264600084629e-06,-3.0897954493886705e-21,-5.080591386017929e-21,-3.146928870843258e-21,-2.2897247928391447e-21,-5.170694296062255e-21,9.990009857574478e-05,-1.8163655113312416e-05,-1.536924537504092e-05,-3.816454634367682e-21,-3.0897954493886705e-21,2.7944083740294445e-06,2.5502527584635367e-22,-1.6940658945086007e-21,3.705769144237564e-22,3.3085810964228026e-36,0.00012487512140069157,-2.2704567527398467e-05,-8.586659824118942e-21,-2.4975024643936194e-05,-5.080591386017929e-21,2.5502527584635367e-22,4.540913778328104e-06,3.291384182302405e-36,1.4368041411979603e-21,1.6308481719077737e-21,6.764069257769734e-05,4.743384504624082e-20,-3.382034628884867e-05,0.0,-3.146928870843258e-21,-1.6940658945086007e-21,3.291384182302405e-36,2.6015650291810744e-06,0.0,3.444374226788667e-36,0.00010822511103469878,1.5670109524204556e-20,-1.6650015822960995e-05,-2.1645020751748234e-05,-2.2897247928391447e-21,3.705769144237564e-22,1.4368041411979603e-21,0.0,3.3300034374406096e-06,2.9028357314384884e-36,0.00010406260116724297,4.8723393771816847e-20,-7.748823748337609e-35,-6.937506987014785e-05,-5.170694296062255e-21,3.3085810964228026e-36,1.6308481719077737e-21,3.444374226788667e-36,2.9028357314384884e-36,6.937506896065315e-06,12.0,14.0,12.0,0.018658068031072617,-0.002304723719134927,-0.002011790405958891,-0.002304723719134927,8.176347182597965e-05,9.157509339274839e-05,0.00010566356650087982,6.200397183420137e-05,9.157509339274839e-05,8.176347182597965e-05,-0.002304723719134927,0.0007951526786200702,9.157509339274839e-05,0.00010566356650087982,-4.9058086005970836e-05,-1.6650015822960995e-05,-1.9211558537790552e-05,4.319868030996932e-20,1.5073510354162087e-20,5.166900978251232e-20,-0.002011790405958891,9.157509339274839e-05,0.0005885240389034152,9.157509339274839e-05,6.298552557118251e-20,-1.4088475836615544e-05,1.2705494208814505e-21,-3.100198591710068e-05,-1.4088475836615544e-05,8.470329472543003e-22,-0.002304723719134927,0.00010566356650087982,9.157509339274839e-05,0.0007951526786200702,7.711084298970161e-20,3.509932922525284e-21,-1.9211558537790552e-05,-1.0287075947940376e-23,-1.6650015822960995e-05,-4.9058086005970836e-05,8.176347182597965e-05,-4.9058086005970836e-05,6.298552557118251e-20,7.711084298970161e-20,4.459825959202135e-06,-2.5732750770698984e-21,-3.768375972953388e-21,-2.9404699617772423e-21,-1.9338733492956444e-21,-3.9846853187231384e-21,9.157509339274839e-05,-1.6650015822960995e-05,-1.4088475836615544e-05,3.509932922525284e-21,-2.5732750770698984e-21,2.5615411232138285e-06,-9.715405931084369e-22,-1.5881867761018131e-21,2.9708102842549625e-22,-1.0561952952642827e-23,0.00010566356650087982,-1.9211558537790552e-05,1.2705494208814505e-21,-1.9211558537790552e-05,-3.768375972953388e-21,-9.715405931084369e-22,3.4930105812236434e-06,1.3234889800848443e-23,7.411538288475128e-22,-1.4823076576950256e-21,6.200397183420137e-05,4.319868030996932e-20,-3.100198591710068e-05,-1.0287075947940376e-23,-2.9404699617772423e-21,-1.5881867761018131e-21,1.3234889800848443e-23,2.384768094998435e-06,-1.0587911840678754e-22,0.0,9.157509339274839e-05,1.5073510354162087e-20,-1.4088475836615544e-05,-1.6650015822960995e-05,-1.9338733492956444e-21,2.9708102842549625e-22,7.411538288475128e-22,-1.0587911840678754e-22,2.5615411232138285e-06,-2.117582368135751e-22,8.176347182597965e-05,5.166900978251232e-20,8.470329472543003e-22,-4.9058086005970836e-05,-3.9846853187231384e-21,-1.0561952952642827e-23,-1.4823076576950256e-21,0.0,-2.117582368135751e-22,4.459825959202135e-06,12.0,14.0,13.0,0.017370838671922684,-0.002134404145181179,-0.001863075071014464,-0.001989494077861309,7.547397399321198e-05,8.453085320070386e-05,9.05687702470459e-05,5.723443246097304e-05,7.849293615436181e-05,6.541077891597524e-05,-0.002134404145181179,0.0007352537359111011,8.453085320070386e-05,9.05687702470459e-05,-4.528438512352295e-05,-1.536924537504092e-05,-1.6467049135826528e-05,4.2351647362715017e-20,2.7245109560774763e-20,3.3034284942917713e-20,-0.001863075071014464,8.453085320070386e-05,0.000544181908480823,7.849293615436181e-05,5.81045331093117e-20,-1.300474650633987e-05,2.752857078576476e-21,-2.861721623048652e-05,-1.2075835911673494e-05,7.623296525288703e-21,-0.001989494077861309,9.05687702470459e-05,7.849293615436181e-05,0.0006289040902629495,6.474004673624137e-20,2.9208959119597827e-21,-1.5094795344339218e-05,1.4658711790657813e-21,-1.308215632889187e-05,-3.567860767361708e-05,7.547397399321198e-05,-4.528438512352295e-05,5.81045331093117e-20,6.474004673624137e-20,4.116762283956632e-06,-2.1465193512392935e-21,-2.4858164792669712e-21,-2.788438971561719e-21,-1.6672589620668996e-21,-3.3393129867471925e-21,8.453085320070386e-05,-1.536924537504092e-05,-1.300474650633987e-05,2.9208959119597827e-21,-2.1465193512392935e-21,2.364499323448399e-06,3.070877479408865e-22,-1.7999450129153882e-21,-6.430942026558635e-22,-2.4630757082731264e-23,9.05687702470459e-05,-1.6467049135826528e-05,2.752857078576476e-21,-1.5094795344339218e-05,-2.4858164792669712e-21,3.070877479408865e-22,2.7445082650956465e-06,-1.3234889800848443e-23,-7.411538288475128e-22,4.235164736271502e-22,5.723443246097304e-05,4.2351647362715017e-20,-2.861721623048652e-05,1.4658711790657813e-21,-2.788438971561719e-21,-1.7999450129153882e-21,-1.3234889800848443e-23,2.201324377892888e-06,-2.117582368135751e-22,-5.293955920339377e-23,7.849293615436181e-05,2.7245109560774763e-20,-1.2075835911673494e-05,-1.308215632889187e-05,-1.6672589620668996e-21,-6.430942026558635e-22,-7.411538288475128e-22,-2.117582368135751e-22,2.0126394701946992e-06,-1.0587911840678754e-21,6.541077891597524e-05,3.3034284942917713e-20,7.623296525288703e-21,-3.567860767361708e-05,-3.3393129867471925e-21,-2.4630757082731264e-23,4.235164736271502e-22,-5.293955920339377e-23,-1.0587911840678754e-21,2.9732173061347567e-06,12.0,14.0,14.0,0.016250187531113625,-0.0019875532016158104,-0.0017348574474453926,-0.0017348574474453926,7.008297689026222e-05,7.849293615436181e-05,7.849293615436181e-05,5.3146257414482534e-05,6.80272132740356e-05,5.3146257414482534e-05,-0.0019875532016158104,0.000683755031786859,7.849293615436181e-05,7.849293615436181e-05,-4.204978540656157e-05,-1.4271442523750011e-05,-1.4271442523750011e-05,2.710505431213761e-20,8.156758550138649e-21,2.541098841762901e-20,-0.0017348574474453926,7.849293615436181e-05,0.0005060593248344958,6.80272132740356e-05,5.38216342355822e-20,-1.2075835911673494e-05,-6.988021814847978e-21,-2.6573128707241267e-05,-1.0465724699315615e-05,-2.964615315390051e-21,-0.0017348574474453926,7.849293615436181e-05,6.80272132740356e-05,0.0005060593248344958,5.308182134405582e-20,-4.285910732043853e-21,-1.2075835911673494e-05,-1.247549114649788e-21,-1.0465724699315615e-05,-2.6573128707241267e-05,7.008297689026222e-05,-4.204978540656157e-05,5.38216342355822e-20,5.308182134405582e-20,3.822708094958216e-06,-1.9815557879653516e-21,-1.9276743414628984e-21,-2.5636490050293826e-21,-1.4736448794830933e-21,-2.531938260765338e-21,7.849293615436181e-05,-1.4271442523750011e-05,-1.2075835911673494e-05,-4.285910732043853e-21,-1.9815557879653516e-21,2.195606612076517e-06,3.0741331399191484e-22,3.1763735522036263e-22,3.7980375973735792e-22,7.17990982559495e-24,7.849293615436181e-05,-1.4271442523750011e-05,-6.988021814847978e-21,-1.2075835911673494e-05,-1.9276743414628984e-21,3.0741331399191484e-22,2.195606612076517e-06,1.3234889800848443e-23,8.470329472543003e-22,3.1763735522036263e-22,5.3146257414482534e-05,2.710505431213761e-20,-2.6573128707241267e-05,-1.247549114649788e-21,-2.5636490050293826e-21,3.1763735522036263e-22,1.3234889800848443e-23,2.0440868411242263e-06,0.0,2.6469779601696886e-23,6.80272132740356e-05,8.156758550138649e-21,-1.0465724699315615e-05,-1.0465724699315615e-05,-1.4736448794830933e-21,3.7980375973735792e-22,8.470329472543003e-22,0.0,1.6101115534183918e-06,4.235164736271502e-22,5.3146257414482534e-05,2.541098841762901e-20,-2.964615315390051e-21,-2.6573128707241267e-05,-2.531938260765338e-21,7.17990982559495e-24,3.1763735522036263e-22,2.6469779601696886e-23,4.235164736271502e-22,2.0440868411242263e-06,12.0,14.0,15.0,0.015265670605003834,-0.0018596284789964557,-0.0016231684712693095,-0.0015262066153809428,6.541077891597524e-05,7.326007471419871e-05,6.868132186355069e-05,4.960317528457381e-05,5.952380888629705e-05,4.376750803203322e-05,-0.0018596284789964557,0.0006390038761310279,7.326007471419871e-05,6.868132186355069e-05,-3.924646807718091e-05,-1.3320013749762438e-05,-1.2487512321968097e-05,2.371692252312041e-20,7.747165206431385e-21,1.3129010682441655e-20,-0.0016231684712693095,7.326007471419871e-05,0.0004729325301013887,5.952380888629705e-05,4.0443277066069826e-20,-1.1270780305494554e-05,-8.258571235729428e-21,-2.4801587642286904e-05,-9.157509339274839e-06,-3.8116482626443515e-21,-0.0015262066153809428,6.868132186355069e-05,5.952380888629705e-05,0.0004132999456487596,3.775515656394843e-20,-4.370857899647144e-21,-9.811617019295227e-06,1.6462913673722617e-22,-8.50340165925445e-06,-2.0200388462399133e-05,6.541077891597524e-05,-3.924646807718091e-05,4.0443277066069826e-20,3.775515656394843e-20,3.5678606309375027e-06,-2.261006368382559e-22,9.347201506366734e-23,-2.325012245069236e-21,-1.2893470801068789e-21,-2.130994568624544e-21,7.326007471419871e-05,-1.3320013749762438e-05,-1.1270780305494554e-05,-4.370857899647144e-21,-2.261006368382559e-22,2.0492327621468576e-06,5.5374910395152905e-22,3.1763735522036263e-22,1.6933714697200655e-22,3.4986529404881e-24,6.868132186355069e-05,-1.2487512321968097e-05,-8.258571235729428e-21,-9.811617019295227e-06,9.347201506366734e-23,5.5374910395152905e-22,1.7839303154687514e-06,0.0,7.411538288475128e-22,1.5881867761018131e-21,4.960317528457381e-05,2.371692252312041e-20,-2.4801587642286904e-05,1.6462913673722617e-22,-2.325012245069236e-21,3.1763735522036263e-22,0.0,1.907814521473483e-06,0.0,-2.6469779601696886e-23,5.952380888629705e-05,7.747165206431385e-21,-9.157509339274839e-06,-8.50340165925445e-06,-1.2893470801068789e-21,1.6933714697200655e-22,7.411538288475128e-22,0.0,1.3082155874144519e-06,5.293955920339377e-22,4.376750803203322e-05,1.3129010682441655e-20,-3.8116482626443515e-21,-2.0200388462399133e-05,-2.130994568624544e-21,3.4986529404881e-24,1.5881867761018131e-21,-2.6469779601696886e-23,5.293955920339377e-22,1.4428848089664825e-06,12.0,14.0,16.0,0.014393854886293411,-0.001747189206071198,-0.0015250029973685741,-0.0013530893484130502,6.132260750746354e-05,6.868132186355069e-05,6.0601163568207994e-05,4.650297705666162e-05,5.25210089108441e-05,3.6472923966357484e-05,-0.001747189206071198,0.0005997547414153814,6.868132186355069e-05,6.0601163568207994e-05,-3.679356450447813e-05,-1.2487512321968097e-05,-1.1018393706763163e-05,2.8163845496205486e-20,1.3129010682441655e-20,1.6940658945086007e-20,-0.0015250029973685741,6.868132186355069e-05,0.00044387925299815834,5.25210089108441e-05,3.73539545798146e-20,-1.0566356650087982e-05,8.470329472543003e-22,-2.325148852833081e-05,-8.080155566858593e-06,1.6940658945086007e-21,-0.0013530893484130502,6.0601163568207994e-05,5.25210089108441e-05,0.0003419348504394293,4.5652495441236535e-20,2.965812061559482e-22,-8.080155566858593e-06,-2.615839032776846e-22,-7.002801339694997e-06,-1.5631252608727664e-05,6.132260750746354e-05,-3.679356450447813e-05,3.73539545798146e-20,4.5652495441236535e-20,3.3448693557147635e-06,6.978740782628842e-37,-2.288264907915281e-21,-2.228130533359488e-21,-1.1184342181865732e-21,-1.7198145164034062e-21,6.868132186355069e-05,-1.2487512321968097e-05,-1.0566356650087982e-05,2.965812061559482e-22,6.978740782628842e-37,1.921155671880115e-06,-3.909725054843729e-25,-6.352747104407253e-22,-6.0739619407853736e-24,-1.659774980283361e-24,6.0601163568207994e-05,-1.1018393706763163e-05,8.470329472543003e-22,-8.080155566858593e-06,-2.288264907915281e-21,-3.909725054843729e-25,1.469119069952285e-06,-1.3234889800848443e-23,-1.3234889800848443e-22,2.6469779601696886e-22,4.650297705666162e-05,2.8163845496205486e-20,-2.325148852833081e-05,-2.615839032776846e-22,-2.228130533359488e-21,-6.352747104407253e-22,-1.3234889800848443e-23,1.7885760144054075e-06,1.0587911840678754e-22,0.0,5.25210089108441e-05,1.3129010682441655e-20,-8.080155566858593e-06,-7.002801339694997e-06,-1.1184342181865732e-21,-6.0739619407853736e-24,-1.3234889800848443e-22,1.0587911840678754e-22,1.0773539997899206e-06,-2.6469779601696886e-22,3.6472923966357484e-05,1.6940658945086007e-20,1.6940658945086007e-21,-1.5631252608727664e-05,-1.7198145164034062e-21,-1.659774980283361e-24,2.6469779601696886e-22,0.0,-2.6469779601696886e-22,1.0420834541946533e-06,12.0,15.0,3.0,0.053592003881931305,-0.0077380952425301075,-0.006358408834785223,-0.02267628163099289,0.0003052503161597997,0.00032051283051259816,0.0012820513220503926,0.00020424836839083582,0.0010416667209938169,0.0027777778450399637,-0.0077380952425301075,0.0028110777493566275,0.00032051283051259816,0.0012820513220503926,-0.00018315018678549677,-5.827505810884759e-05,-0.00023310023243539035,-2.2690238871516663e-19,-5.306839775367773e-19,-6.3223941254199255e-18,-0.006358408834785223,0.00032051283051259816,0.0018196060555055737,0.0010416667209938169,-4.03802122991809e-19,-4.578754669637419e-05,-4.3550115748030714e-20,-9.426847827853635e-05,-0.00014880952949170023,-3.700314301688083e-18,-0.02267628163099289,0.0012820513220503926,0.0010416667209938169,0.05045406147837639,-1.8077726230519775e-18,-5.470607448733465e-20,-0.0012820513220503926,-6.8173599788175685e-19,-0.0010416667209938169,-0.01666666753590107,0.0003052503161597997,-0.00018315018678549677,-4.03802122991809e-19,-1.8077726230519775e-18,1.6650015822960995e-05,1.578681146082129e-20,5.746150358062829e-20,1.923622731658844e-20,4.409707600338433e-20,5.915274025894801e-19,0.00032051283051259816,-5.827505810884759e-05,-4.578754669637419e-05,-5.470607448733465e-20,1.578681146082129e-20,8.325007911480498e-06,5.0172163456199395e-21,1.6938496077810508e-21,3.87305551791326e-21,6.307659983006681e-34,0.0012820513220503926,-0.00023310023243539035,-4.3550115748030714e-20,-0.0012820513220503926,5.746150358062829e-20,5.0172163456199395e-21,0.00023310023243539035,-1.8444096816418116e-22,1.8731702072893647e-20,-1.8440729013965902e-19,0.00020424836839083582,-2.2690238871516663e-19,-9.426847827853635e-05,-6.8173599788175685e-19,1.923622731658844e-20,1.6938496077810508e-21,-1.8444096816418116e-22,6.7334626692172606e-06,2.9187019446319565e-20,2.3922065899972975e-19,0.0010416667209938169,-5.306839775367773e-19,-0.00014880952949170023,-0.0010416667209938169,4.409707600338433e-20,3.87305551791326e-21,1.8731702072893647e-20,2.9187019446319565e-20,0.00014880952949170023,3.512252566376256e-19,0.0027777778450399637,-6.3223941254199255e-18,-3.700314301688083e-18,-0.01666666753590107,5.915274025894801e-19,6.307659983006681e-34,-1.8440729013965902e-19,2.3922065899972975e-19,3.512252566376256e-19,0.008333333767950535,12.0,15.0,4.0,0.0434565544128418,-0.005995878949761391,-0.0049250563606619835,-0.01443910226225853,0.00022893772984389216,0.000240384615608491,0.0007692307699471712,0.00015318627993110567,0.0006249999860301614,0.0013888889225199819,-0.005995878949761391,0.002143273362889886,0.000240384615608491,0.0007692307699471712,-0.00013736264372710139,-4.3706295400625095e-05,-0.0001398601452820003,-1.577599510495988e-19,-2.640110293133967e-19,-2.217596362409231e-18,-0.0049250563606619835,0.000240384615608491,0.0013870259281247854,0.0006249999860301614,-2.956475599668588e-19,-3.4340660931775346e-05,4.6559418203544235e-20,-7.070136052789167e-05,-8.928571332944557e-05,-1.3196957365908292e-18,-0.01443910226225853,0.0007692307699471712,0.0006249999860301614,0.01934828981757164,-1.0051119186017061e-18,-1.6666886396137963e-20,-0.0005128204938955605,-3.677623548413623e-19,-0.00041666667675599456,-0.004166666883975267,0.00022893772984389216,-0.00013736264372710139,-2.956475599668588e-19,-1.0051119186017061e-18,1.2487512321968097e-05,9.121038694667372e-21,3.580386011715571e-20,1.4630639146670903e-20,2.6726704808012697e-20,2.0703459607619688e-19,0.000240384615608491,-4.3706295400625095e-05,-3.4340660931775346e-05,-1.6666886396137963e-20,9.121038694667372e-21,6.243756160984049e-06,-1.9591357425720207e-23,-2.7197748018099525e-22,2.3963771716378916e-21,1.52208357962121e-34,0.0007692307699471712,-0.0001398601452820003,4.6559418203544235e-20,-0.0005128204938955605,3.580386011715571e-20,-1.9591357425720207e-23,9.324009442934766e-05,2.6394962455723914e-23,-3.1232646794686006e-20,-3.985607253521094e-20,0.00015318627993110567,-1.577599510495988e-19,-7.070136052789167e-05,-3.677623548413623e-19,1.4630639146670903e-20,-2.7197748018099525e-22,2.6394962455723914e-23,5.050097115599783e-06,1.6633644075270988e-20,8.3727228064966e-20,0.0006249999860301614,-2.640110293133967e-19,-8.928571332944557e-05,-0.00041666667675599456,2.6726704808012697e-20,2.3963771716378916e-21,-3.1232646794686006e-20,1.6633644075270988e-20,5.952380888629705e-05,9.834307004907758e-20,0.0013888889225199819,-2.217596362409231e-18,-1.3196957365908292e-18,-0.004166666883975267,2.0703459607619688e-19,1.52208357962121e-34,-3.985607253521094e-20,8.3727228064966e-20,9.834307004907758e-20,0.0013888889225199819,12.0,15.0,5.0,0.03661109134554863,-0.004899267572909594,-0.00402337871491909,-0.01002289354801178,0.00018315018678549677,0.0001923076924867928,0.0005128204938955605,0.00012254902685526758,0.00041666667675599456,0.0007936508045531809,-0.004899267572909594,0.0017332667484879494,0.0001923076924867928,0.0005128204938955605,-0.00010989011207129806,-3.4965036320500076e-05,-9.324009442934766e-05,6.606856988583543e-20,9.317362419797304e-20,6.376047231299223e-19,-0.00402337871491909,0.0001923076924867928,0.0011215255362913013,0.00041666667675599456,1.330336355346164e-19,-2.7472528017824516e-05,3.6668298592397e-21,-5.656108623952605e-05,-5.952380888629705e-05,-6.54409621056973e-19,-0.01002289354801178,0.0005128204938955605,0.00041666667675599456,0.00977335125207901,3.3984643088437544e-19,-1.8595603397147397e-20,-0.00025641024694778025,-2.1345230270808369e-19,-0.00020833333837799728,-0.0015873016091063619,0.00018315018678549677,-0.00010989011207129806,1.330336355346164e-19,3.3984643088437544e-19,9.990009857574478e-06,-6.1900045695456295e-21,-1.3389588731267198e-20,-5.756045344581781e-21,-9.310412163947298e-21,-5.0702349070341807e-20,0.0001923076924867928,-3.4965036320500076e-05,-2.7472528017824516e-05,-1.8595603397147397e-20,-6.1900045695456295e-21,4.995004928787239e-06,6.90359365461145e-22,-2.117582368135751e-22,1.9058241313221758e-21,2.713656833493949e-35,0.0005128204938955605,-9.324009442934766e-05,3.6668298592397e-21,-0.00025641024694778025,-1.3389588731267198e-20,6.90359365461145e-22,4.662004721467383e-05,-2.042277832341098e-22,-2.838439979716954e-21,-3.9939446524842606e-20,0.00012254902685526758,6.606856988583543e-20,-5.656108623952605e-05,-2.1345230270808369e-19,-5.756045344581781e-21,-2.117582368135751e-22,-2.042277832341098e-22,4.040077783429297e-06,7.199780051661553e-21,4.100925278198936e-20,0.00041666667675599456,9.317362419797304e-20,-5.952380888629705e-05,-0.00020833333837799728,-9.310412163947298e-21,1.9058241313221758e-21,-2.838439979716954e-21,7.199780051661553e-21,2.9761904443148524e-05,4.014002812986391e-20,0.0007936508045531809,6.376047231299223e-19,-6.54409621056973e-19,-0.0015873016091063619,-5.0702349070341807e-20,2.713656833493949e-35,-3.9939446524842606e-20,4.100925278198936e-20,4.014002812986391e-20,0.00039682540227659047,12.0,15.0,6.0,0.031655203551054,-0.00414377311244607,-0.003402418689802289,-0.007371794898062944,0.00015262515807989985,0.00016025641525629908,0.00036630037357099354,0.00010212418419541791,0.00029761905898340046,0.0004960317746736109,-0.00414377311244607,0.001455488963983953,0.00016025641525629908,0.00036630037357099354,-9.157509339274839e-05,-2.9137529054423794e-05,-6.660006329184398e-05,-1.1350241493207625e-19,-1.4653669987499396e-19,-5.929064677669709e-19,-0.003402418689802289,0.00016025641525629908,0.000941690756008029,0.00029761905898340046,-2.10288634133101e-19,-2.2893773348187096e-05,-1.5591126700402813e-20,-4.7134239139268175e-05,-4.251700738677755e-05,-2.861384208919199e-19,-0.007371794898062944,0.00036630037357099354,0.00029761905898340046,0.005676892586052418,-4.502081444281644e-19,-5.402840838608772e-21,-0.00014652014942839742,-1.6771252355635147e-19,-0.0001190476177725941,-0.0007440476329065859,0.00015262515807989985,-9.157509339274839e-05,-2.10288634133101e-19,-4.502081444281644e-19,8.325007911480498e-06,7.834450532514202e-21,1.277240617334537e-20,9.589891774445817e-21,1.2782527826739207e-20,5.809644224894516e-20,0.00016025641525629908,-2.9137529054423794e-05,-2.2893773348187096e-05,-5.402840838608772e-21,7.834450532514202e-21,4.162503955740249e-06,1.2719962801340472e-21,8.470329472543003e-22,-2.117582368135751e-22,5.998611383121593e-35,0.00036630037357099354,-6.660006329184398e-05,-1.5591126700402813e-20,-0.00014652014942839742,1.277240617334537e-20,1.2719962801340472e-21,2.6640027499524876e-05,1.5435202725796235e-23,3.124492202572932e-21,-1.8461764927801464e-20,0.00010212418419541791,-1.1350241493207625e-19,-4.7134239139268175e-05,-1.6771252355635147e-19,9.589891774445817e-21,8.470329472543003e-22,1.5435202725796235e-23,3.3667313346086303e-06,7.199780051661553e-21,2.3494884305373876e-20,0.00029761905898340046,-1.4653669987499396e-19,-4.251700738677755e-05,-0.0001190476177725941,1.2782527826739207e-20,-2.117582368135751e-22,3.124492202572932e-21,7.199780051661553e-21,1.70068033185089e-05,-1.7115990538791705e-20,0.0004960317746736109,-5.929064677669709e-19,-2.861384208919199e-19,-0.0007440476329065859,5.809644224894516e-20,5.998611383121593e-35,-1.8461764927801464e-20,2.3494884305373876e-20,-1.7115990538791705e-20,0.00014880952949170023,12.0,15.0,7.0,0.027893342077732086,-0.0035910517908632755,-0.0029482466634362936,-0.005652854219079018,0.00013082155783195049,0.00013736264372710139,0.00027472528745420277,8.753501606406644e-05,0.00022321428696159273,0.0003306878206785768,-0.0035910517908632755,0.001254697679542005,0.00013736264372710139,0.00027472528745420277,-7.849293615436181e-05,-2.4975024643936194e-05,-4.995004928787239e-05,2.625802136488331e-20,3.3034284942917713e-20,2.3385179153516604e-19,-0.0029482466634362936,0.00013736264372710139,0.0008117189281620085,0.00022321428696159273,7.44360833931775e-20,-1.9623234038590454e-05,-2.5700362691529055e-20,-4.0400776924798265e-05,-3.188775372109376e-05,-1.7855898103724133e-19,-0.005652854219079018,0.00027472528745420277,0.00022321428696159273,0.0036038614343851805,1.8492315357385947e-19,-2.0874658852554315e-20,-9.157509339274839e-05,-1.1689054672109345e-19,-7.440476474585012e-05,-0.00039682540227659047,0.00013082155783195049,-7.849293615436181e-05,7.44360833931775e-20,1.8492315357385947e-19,7.1357212618750054e-06,-1.6941196885114495e-22,-7.546522209098991e-21,-4.0844385346149886e-21,-4.9372023733299896e-21,-1.8309182416528108e-20,0.00013736264372710139,-2.4975024643936194e-05,-1.9623234038590454e-05,-2.0874658852554315e-20,-1.6941196885114495e-22,3.5678606309375027e-06,2.377608088109894e-21,2.752857078576476e-21,1.0587911840678754e-21,1.263005686547902e-35,0.00027472528745420277,-4.995004928787239e-05,-2.5700362691529055e-20,-9.157509339274839e-05,-7.546522209098991e-21,2.377608088109894e-21,1.6650015822960995e-05,6.511932545540376e-23,4.116140393149797e-21,-1.0816933433811539e-20,8.753501606406644e-05,2.625802136488331e-20,-4.0400776924798265e-05,-1.1689054672109345e-19,-4.0844385346149886e-21,2.752857078576476e-21,6.511932545540376e-23,2.885769617932965e-06,4.235164736271502e-21,1.480889656867608e-20,0.00022321428696159273,3.3034284942917713e-20,-3.188775372109376e-05,-7.440476474585012e-05,-4.9372023733299896e-21,1.0587911840678754e-21,4.116140393149797e-21,4.235164736271502e-21,1.0629251846694387e-05,-9.588526603317678e-21,0.0003306878206785768,2.3385179153516604e-19,-1.7855898103724133e-19,-0.00039682540227659047,-1.8309182416528108e-20,1.263005686547902e-35,-1.0816933433811539e-20,1.480889656867608e-20,-9.588526603317678e-21,6.613756704609841e-05,12.0,15.0,8.0,0.024936966598033905,-0.0031688797753304243,-0.0026014172472059727,-0.0044738249853253365,0.00011446886492194608,0.0001201923078042455,0.0002136752154910937,7.659313996555284e-05,0.00017361111531499773,0.00023148147738538682,-0.0031688797753304243,0.0011027167784050107,0.0001201923078042455,0.0002136752154910937,-6.868132186355069e-05,-2.1853147700312547e-05,-3.885003752657212e-05,-7.962109704190423e-20,-8.470329472543003e-20,-2.416376807496097e-19,-0.0026014172472059727,0.0001201923078042455,0.0007133542676456273,0.00017361111531499773,-1.5321054815343664e-19,-1.7170330465887673e-05,-4.0885469726964775e-21,-3.535068026394583e-05,-2.4801587642286904e-05,-2.0085938261075882e-19,-0.0044738249853253365,0.0002136752154910937,0.00017361111531499773,0.0024356429930776358,-2.6905564197783963e-19,3.1429876460301268e-21,-6.105006468715146e-05,-9.994988777600744e-20,-4.960317528457381e-05,-0.00023148147738538682,0.00011446886492194608,-6.868132186355069e-05,-1.5321054815343664e-19,-2.6905564197783963e-19,6.243756160984049e-06,4.38265047403421e-21,8.017798669578275e-21,7.348813925795313e-21,7.41797640320369e-21,2.464697564642405e-20,0.0001201923078042455,-2.1853147700312547e-05,-1.7170330465887673e-05,3.1429876460301268e-21,4.38265047403421e-21,3.1218780804920243e-06,-2.356710216097503e-22,-1.0587911840678754e-22,-2.117582368135751e-22,1.7737769230512686e-35,0.0002136752154910937,-3.885003752657212e-05,-4.0885469726964775e-21,-6.105006468715146e-05,8.017798669578275e-21,-2.356710216097503e-22,1.1100010851805564e-05,3.707361870182423e-24,1.4174654622310696e-21,-8.422588872736476e-21,7.659313996555284e-05,-7.962109704190423e-20,-3.535068026394583e-05,-9.994988777600744e-20,7.348813925795313e-21,-1.0587911840678754e-22,3.707361870182423e-24,2.5250485577998916e-06,4.235164736271502e-21,9.96752718905755e-21,0.00017361111531499773,-8.470329472543003e-20,-2.4801587642286904e-05,-4.960317528457381e-05,7.41797640320369e-21,-2.117582368135751e-22,1.4174654622310696e-21,4.235164736271502e-21,7.086167897796258e-06,1.751828789100231e-20,0.00023148147738538682,-2.416376807496097e-19,-2.0085938261075882e-19,-0.00023148147738538682,2.464697564642405e-20,1.7737769230512686e-35,-8.422588872736476e-21,9.96752718905755e-21,1.751828789100231e-20,3.3068783523049206e-05,12.0,15.0,9.0,0.02255077287554741,-0.0028357752598822117,-0.002327802823856473,-0.0036295647732913494,0.0001017501053865999,0.00010683760774554685,0.0001709401694824919,6.808278703829274e-05,0.00013888889225199819,0.00016835016140248626,-0.0028357752598822117,0.0009836460230872035,0.00010683760774554685,0.0001709401694824919,-6.105006468715146e-05,-1.942501876328606e-05,-3.108003147644922e-05,5.166900978251232e-20,2.1175823681357508e-20,7.959939647552179e-20,-0.002327802823856473,0.00010683760774554685,0.0006362972781062126,0.00013888889225199819,7.91933154182436e-20,-1.5262516171787865e-05,-8.806386944470443e-21,-3.142282730550505e-05,-1.984126902243588e-05,-1.1513046147394546e-19,-0.0036295647732913494,0.0001709401694824919,0.00013888889225199819,0.001725092064589262,1.131291884547529e-19,-7.426669877571166e-21,-4.273504237062298e-05,-7.707999820014133e-20,-3.4722223062999547e-05,-0.00014430013834498823,0.0001017501053865999,-6.105006468715146e-05,7.91933154182436e-20,1.131291884547529e-19,5.550005425902782e-06,-3.844920875770087e-21,-4.077151832744349e-21,-3.283169314360506e-21,-3.007591548738729e-21,-8.706464495826317e-21,0.00010683760774554685,-1.942501876328606e-05,-1.5262516171787865e-05,-7.426669877571166e-21,-3.844920875770087e-21,2.775002712951391e-06,3.3333341531485373e-22,-2.2234614865425384e-21,6.88214269644119e-22,3.6134748203530686e-38,0.0001709401694824919,-3.108003147644922e-05,-8.806386944470443e-21,-4.273504237062298e-05,-4.077151832744349e-21,3.3333341531485373e-22,7.770007869112305e-06,4.796016951354933e-36,1.7432633500131156e-21,4.042926831003184e-21,6.808278703829274e-05,5.166900978251232e-20,-3.142282730550505e-05,-7.707999820014133e-20,-3.283169314360506e-21,-2.2234614865425384e-21,4.796016951354933e-36,2.2444876321969787e-06,2.752857078576476e-21,7.041992926436362e-21,0.00013888889225199819,2.1175823681357508e-20,-1.984126902243588e-05,-3.4722223062999547e-05,-3.007591548738729e-21,6.88214269644119e-22,1.7432633500131156e-21,2.752857078576476e-21,4.96031725560897e-06,4.1356393181655304e-21,0.00016835016140248626,7.959939647552179e-20,-1.1513046147394546e-19,-0.00014430013834498823,-8.706464495826317e-21,3.6134748203530686e-38,4.042926831003184e-21,7.041992926436362e-21,4.1356393181655304e-21,1.803751729312353e-05,12.0,15.0,10.0,0.02058347687125206,-0.002566183917224407,-0.002106386236846447,-0.003004079218953848,9.157509339274839e-05,9.61538462433964e-05,0.0001398601452820003,6.127451342763379e-05,0.00011363636440364644,0.00012626263196580112,-0.002566183917224407,0.0008878242806531489,9.61538462433964e-05,0.0001398601452820003,-5.494505603564903e-05,-1.7482518160250038e-05,-2.5429117158637382e-05,3.134021904840911e-20,2.498747194400186e-20,8.259086284907713e-20,-0.002106386236846447,9.61538462433964e-05,0.0005742909270338714,0.00011363636440364644,6.919678601675198e-20,-1.3736264008912258e-05,1.4448168475368925e-21,-2.8280543119763024e-05,-1.6233765563811176e-05,-4.455799978150963e-20,-0.003004079218953848,0.0001398601452820003,0.00011363636440364644,0.0012673205928876996,7.692057852411734e-20,-3.268094270814154e-21,-3.108003147644922e-05,-7.453889935837843e-20,-2.5252526029362343e-05,-9.469696669839323e-05,9.157509339274839e-05,-5.494505603564903e-05,6.919678601675198e-20,7.692057852411734e-20,4.995004928787239e-06,-3.166955487006599e-21,-4.628112887686661e-22,-2.921509835070662e-21,-2.4146930829748324e-21,-6.385807267824881e-21,9.61538462433964e-05,-1.7482518160250038e-05,-1.3736264008912258e-05,-3.268094270814154e-21,-3.166955487006599e-21,2.4975024643936194e-06,4.1685372917810454e-23,1.0587911840678754e-22,4.764560328305439e-22,2.576655600001478e-36,0.0001398601452820003,-2.5429117158637382e-05,1.4448168475368925e-21,-3.108003147644922e-05,-4.628112887686661e-22,4.1685372917810454e-23,5.65091477255919e-06,-1.5751624301018653e-36,-3.720191793504411e-22,-2.74377404576134e-21,6.127451342763379e-05,3.134021904840911e-20,-2.8280543119763024e-05,-7.453889935837843e-20,-2.921509835070662e-21,1.0587911840678754e-22,-1.5751624301018653e-36,2.0200388917146483e-06,3.917527381051139e-21,5.164991273479614e-21,0.00011363636440364644,2.498747194400186e-20,-1.6233765563811176e-05,-2.5252526029362343e-05,-2.4146930829748324e-21,4.764560328305439e-22,-3.720191793504411e-22,3.917527381051139e-21,3.607503685998381e-06,-6.167084234877095e-21,0.00012626263196580112,8.259086284907713e-20,-4.455799978150963e-20,-9.469696669839323e-05,-6.385807267824881e-21,2.576655600001478e-36,-2.74377404576134e-21,5.164991273479614e-21,-6.167084234877095e-21,1.0521885087655392e-05,12.0,15.0,11.0,0.018933210521936417,-0.0023434897884726524,-0.001923505449667573,-0.0025276807136833668,8.325008093379438e-05,8.741259080125019e-05,0.00011655011621769518,5.5704098485875875e-05,9.469696669839323e-05,9.712509927339852e-05,-0.0023434897884726524,0.0008090394549071789,8.741259080125019e-05,0.00011655011621769518,-4.995004928787239e-05,-1.589319799677469e-05,-2.119093005603645e-05,3.049318610115481e-20,1.6093625997831706e-20,6.258964209989346e-20,-0.001923505449667573,8.741259080125019e-05,0.0005233124829828739,9.469696669839323e-05,6.016004461976329e-20,-1.2487512321968097e-05,5.104741384443748e-22,-2.5709585315780714e-05,-1.3528138879337348e-05,-6.419872164881077e-20,-0.0025276807136833668,0.00011655011621769518,9.469696669839323e-05,0.000958786578848958,8.912828448758538e-20,5.371862359213164e-21,-2.3310023607336916e-05,-5.421010862427522e-20,-1.8939394067274407e-05,-6.475006375694647e-05,8.325008093379438e-05,-4.995004928787239e-05,6.016004461976329e-20,8.912828448758538e-20,4.540913778328104e-06,-2.368293420489436e-21,-4.8479359335242365e-21,-2.642300431520286e-21,-2.0292608448549332e-21,-4.825981316064986e-21,8.741259080125019e-05,-1.589319799677469e-05,-1.2487512321968097e-05,5.371862359213164e-21,-2.368293420489436e-21,2.270456889164052e-06,-1.0480387448724489e-21,-2.117582368135751e-22,1.0587911840678754e-22,2.55407231879197e-36,0.00011655011621769518,-2.119093005603645e-05,5.104741384443748e-22,-2.3310023607336916e-05,-4.8479359335242365e-21,-1.0480387448724489e-21,4.23818619310623e-06,2.580210100054921e-36,1.0507477815733992e-21,-1.900770170870576e-21,5.5704098485875875e-05,3.049318610115481e-20,-2.5709585315780714e-05,-5.421010862427522e-20,-2.642300431520286e-21,-2.117582368135751e-22,2.580210100054921e-36,1.8363989511271939e-06,2.2234614865425384e-21,3.9033671637193536e-21,9.469696669839323e-05,1.6093625997831706e-20,-1.3528138879337348e-05,-1.8939394067274407e-05,-2.0292608448549332e-21,1.0587911840678754e-22,1.0507477815733992e-21,2.2234614865425384e-21,2.7056275939685293e-06,1.9103160693995725e-21,9.712509927339852e-05,6.258964209989346e-20,-6.419872164881077e-20,-6.475006375694647e-05,-4.825981316064986e-21,2.55407231879197e-36,-1.900770170870576e-21,3.9033671637193536e-21,1.9103160693995725e-21,6.475006557593588e-06,12.0,15.0,12.0,0.01752878539264202,-0.002156417351216078,-0.0017698906594887376,-0.002156417351216078,7.631257903994992e-05,8.012820762814954e-05,9.86193263088353e-05,5.1062092097708955e-05,8.012820762814954e-05,7.631257903994992e-05,-0.002156417351216078,0.0007431137491948903,8.012820762814954e-05,9.86193263088353e-05,-4.578754669637419e-05,-1.4568764527211897e-05,-1.793078627088107e-05,-5.590417451878382e-20,-3.261860406688994e-20,-6.691560283308973e-20,-0.0017698906594887376,8.012820762814954e-05,0.00048065700684674084,8.012820762814954e-05,-1.0839136286233912e-19,-1.1446886674093548e-05,3.8116482626443515e-21,-2.3567119569634087e-05,-1.1446886674093548e-05,-3.134021904840911e-20,-0.002156417351216078,9.86193263088353e-05,8.012820762814954e-05,0.0007431137491948903,-1.2027455553174495e-19,-1.3237164749481355e-21,-1.793078627088107e-05,-4.5039493215023654e-20,-1.4568764527211897e-05,-4.578754669637419e-05,7.631257903994992e-05,-4.578754669637419e-05,-1.0839136286233912e-19,-1.2027455553174495e-19,4.162503955740249e-06,3.890213861068767e-21,2.788242071879776e-21,4.8657800934180806e-21,3.428919305696238e-21,7.366301040932567e-21,8.012820762814954e-05,-1.4568764527211897e-05,-1.1446886674093548e-05,-1.3237164749481355e-21,3.890213861068767e-21,2.0812519778701244e-06,2.1722876631022934e-22,3.1763735522036263e-22,-2.698806121642709e-23,1.6742307380424e-23,9.86193263088353e-05,-1.793078627088107e-05,3.8116482626443515e-21,-1.793078627088107e-05,2.788242071879776e-21,2.1722876631022934e-22,3.260143103034352e-06,1.3234889800848443e-23,-1.0058516248644817e-21,-2.964615315390051e-21,5.1062092097708955e-05,-5.590417451878382e-20,-2.3567119569634087e-05,-4.5039493215023654e-20,4.8657800934180806e-21,3.1763735522036263e-22,1.3234889800848443e-23,1.6833656673043151e-06,1.5881867761018131e-21,3.017554874593445e-21,8.012820762814954e-05,-3.261860406688994e-20,-1.1446886674093548e-05,-1.4568764527211897e-05,3.428919305696238e-21,-2.698806121642709e-23,-1.0058516248644817e-21,1.5881867761018131e-21,2.0812519778701244e-06,-2.117582368135751e-21,7.631257903994992e-05,-6.691560283308973e-20,-3.134021904840911e-20,-4.578754669637419e-05,7.366301040932567e-21,1.6742307380424e-23,-2.964615315390051e-21,3.017554874593445e-21,-2.117582368135751e-21,4.162503955740249e-06,12.0,15.0,13.0,0.0163189098238945,-0.001997041516005993,-0.0016390284290537238,-0.001861439784988761,7.044238009257242e-05,7.396449655061588e-05,8.453085320070386e-05,4.7134239139268175e-05,6.868132186355069e-05,6.105006468715146e-05,-0.001997041516005993,0.0006871334044262767,7.396449655061588e-05,8.453085320070386e-05,-4.226542660035193e-05,-1.3448090612655506e-05,-1.536924537504092e-05,2.541098841762901e-20,1.1001523149588009e-20,2.795208725939191e-20,-0.0016390284290537238,7.396449655061588e-05,0.000444438133854419,6.868132186355069e-05,4.071066643025186e-20,-1.0566356650087982e-05,-1.0587911840678754e-21,-2.1754263798356988e-05,-9.811617019295227e-06,-3.6422416731934915e-20,-0.001861439784988761,8.453085320070386e-05,6.868132186355069e-05,0.0005877402727492154,5.815684582070714e-20,-5.47800815047124e-22,-1.4088475836615544e-05,-3.758508047518928e-20,-1.1446886674093548e-05,-3.330003164592199e-05,7.044238009257242e-05,-4.226542660035193e-05,4.071066643025186e-20,5.815684582070714e-20,3.84231134376023e-06,-8.729963286419433e-23,-2.1913959189542126e-21,-2.2419264357925808e-21,-1.4734245537877087e-21,-2.9805411675107895e-21,7.396449655061588e-05,-1.3448090612655506e-05,-1.0566356650087982e-05,-5.47800815047124e-22,-8.729963286419433e-23,1.921155671880115e-06,-3.1112368654974204e-22,-1.0587911840678754e-22,3.2830638973000197e-22,1.7634423867251202e-23,8.453085320070386e-05,-1.536924537504092e-05,-1.0587911840678754e-21,-1.4088475836615544e-05,-2.1913959189542126e-21,-3.1112368654974204e-22,2.5615411232138285e-06,0.0,4.235164736271502e-22,5.293955920339377e-22,4.7134239139268175e-05,2.541098841762901e-20,-2.1754263798356988e-05,-3.758508047518928e-20,-2.2419264357925808e-21,-1.0587911840678754e-22,0.0,1.5538760180788813e-06,1.2705494208814505e-21,2.4352197233561135e-21,6.868132186355069e-05,1.1001523149588009e-20,-9.811617019295227e-06,-1.1446886674093548e-05,-1.4734245537877087e-21,3.2830638973000197e-22,4.235164736271502e-22,1.2705494208814505e-21,1.6352695411114837e-06,2.117582368135751e-22,6.105006468715146e-05,2.795208725939191e-20,-3.6422416731934915e-20,-3.330003164592199e-05,-2.9805411675107895e-21,1.7634423867251202e-23,5.293955920339377e-22,2.4352197233561135e-21,2.117582368135751e-22,2.775002712951391e-06,12.0,15.0,14.0,0.015265670605003834,-0.0018596284789964557,-0.0015262066153809428,-0.0016231684712693095,6.541077891597524e-05,6.868132186355069e-05,7.326007471419871e-05,4.376750803203322e-05,5.952380888629705e-05,4.960317528457381e-05,-0.0018596284789964557,0.0006390038761310279,6.868132186355069e-05,7.326007471419871e-05,-3.924646807718091e-05,-1.2487512321968097e-05,-1.3320013749762438e-05,1.1434944787933055e-20,4.838309457586937e-21,2.541098841762901e-20,-0.0015262066153809428,6.868132186355069e-05,0.0004132999456487596,5.952380888629705e-05,3.624744864533434e-20,-9.811617019295227e-06,-9.952637130238029e-21,-2.0200388462399133e-05,-8.50340165925445e-06,-3.2610768469290563e-20,-0.0016231684712693095,7.326007471419871e-05,5.952380888629705e-05,0.0004729325301013887,4.079864161204085e-20,-5.025880335522222e-21,-1.1270780305494554e-05,-3.7297609362932963e-20,-9.157509339274839e-06,-2.4801587642286904e-05,6.541077891597524e-05,-3.924646807718091e-05,3.624744864533434e-20,4.079864161204085e-20,3.5678606309375027e-06,1.27479543630481e-22,-1.5627841927762482e-22,-2.0601969150882763e-21,-1.2501174942958939e-21,-2.397519997586729e-21,6.868132186355069e-05,-1.2487512321968097e-05,-9.811617019295227e-06,-5.025880335522222e-21,1.27479543630481e-22,1.7839303154687514e-06,6.094661098735739e-22,1.5881867761018131e-21,2.8260582208969967e-22,-1.2351947766348963e-23,7.326007471419871e-05,-1.3320013749762438e-05,-9.952637130238029e-21,-1.1270780305494554e-05,-1.5627841927762482e-22,6.094661098735739e-22,2.0492327621468576e-06,-2.6469779601696886e-23,1.0852609636695723e-21,1.0587911840678754e-22,4.376750803203322e-05,1.1434944787933055e-20,-2.0200388462399133e-05,-3.7297609362932963e-20,-2.0601969150882763e-21,1.5881867761018131e-21,-2.6469779601696886e-23,1.4428848089664825e-06,1.852884572118782e-21,1.879354351720479e-21,5.952380888629705e-05,4.838309457586937e-21,-8.50340165925445e-06,-9.157509339274839e-06,-1.2501174942958939e-21,2.8260582208969967e-22,1.0852609636695723e-21,1.852884572118782e-21,1.3082155874144519e-06,1.0587911840678754e-21,4.960317528457381e-05,2.541098841762901e-20,-3.2610768469290563e-20,-2.4801587642286904e-05,-2.397519997586729e-21,-1.2351947766348963e-23,1.0587911840678754e-22,1.879354351720479e-21,1.0587911840678754e-21,1.907814521473483e-06,12.0,15.0,15.0,0.014340431429445744,-0.0017399267526343465,-0.0014279317110776901,-0.0014279317110776901,6.105006468715146e-05,6.410256173694506e-05,6.410256173694506e-05,4.0849674405762926e-05,5.208333459449932e-05,4.0849674405762926e-05,-0.0017399267526343465,0.0005971806240268052,6.410256173694506e-05,6.410256173694506e-05,-3.6630037357099354e-05,-1.1655011803668458e-05,-1.1655011803668458e-05,1.6093625997831706e-20,1.0522523374815151e-20,1.5670109524204556e-20,-0.0014279317110776901,6.410256173694506e-05,0.0003862426383420825,5.208333459449932e-05,4.794820921558102e-20,-9.157509339274839e-06,4.235164736271502e-22,-1.885369601950515e-05,-7.440476110787131e-06,4.0234064994579266e-20,-0.0014279317110776901,6.410256173694506e-05,5.208333459449932e-05,0.0003862426383420825,4.803729269014386e-20,5.97940410286188e-22,-9.157509339274839e-06,5.329998053709388e-20,-7.440476110787131e-06,-1.885369601950515e-05,6.105006468715146e-05,-3.6630037357099354e-05,4.794820921558102e-20,4.803729269014386e-20,3.3300034374406096e-06,-2.4648392920237258e-21,-2.4481084736135254e-21,-1.9143839158543224e-21,-1.088247982331748e-21,-1.9264153951888126e-21,6.410256173694506e-05,-1.1655011803668458e-05,-9.157509339274839e-06,5.97940410286188e-22,-2.4648392920237258e-21,1.6650017187203048e-06,-1.7961282387986648e-22,7.411538288475128e-22,9.436055012198483e-23,-3.431521271884245e-23,6.410256173694506e-05,-1.1655011803668458e-05,4.235164736271502e-22,-9.157509339274839e-06,-2.4481084736135254e-21,-1.7961282387986648e-22,1.6650017187203048e-06,0.0,1.0587911840678754e-22,8.470329472543003e-22,4.0849674405762926e-05,1.6093625997831706e-20,-1.885369601950515e-05,5.329998053709388e-20,-1.9143839158543224e-21,7.411538288475128e-22,0.0,1.3466925565808197e-06,-1.3234889800848443e-21,-3.1499037726019294e-21,5.208333459449932e-05,1.0522523374815151e-20,-7.440476110787131e-06,-7.440476110787131e-06,-1.088247982331748e-21,9.436055012198483e-23,1.0587911840678754e-22,-1.3234889800848443e-21,1.0629252074068063e-06,6.352747104407253e-22,4.0849674405762926e-05,1.5670109524204556e-20,4.0234064994579266e-20,-1.885369601950515e-05,-1.9264153951888126e-21,-3.431521271884245e-23,8.470329472543003e-22,-3.1499037726019294e-21,6.352747104407253e-22,1.3466925565808197e-06,12.0,15.0,16.0,0.013521147891879082,-0.0016347164055332541,-0.0013415582943707705,-0.0012659471249207854,5.723443246097304e-05,6.009615390212275e-05,5.656108623952605e-05,3.829656998277642e-05,4.595588325173594e-05,3.404139351914637e-05,-0.0016347164055332541,0.0005604995531029999,6.009615390212275e-05,5.656108623952605e-05,-3.4340660931775346e-05,-1.0926573850156274e-05,-1.0283833944413345e-05,-3.134021904840911e-20,-2.0540548970916783e-20,-3.134021904840911e-20,-0.0013415582943707705,6.009615390212275e-05,0.0003625128010753542,4.595588325173594e-05,-7.809896839253302e-20,-8.585165232943837e-06,6.352747104407253e-22,-1.7675340131972916e-05,-6.565126113855513e-06,-1.3976043629695956e-20,-0.0012659471249207854,5.656108623952605e-05,4.595588325173594e-05,0.00031954768928699195,-7.28189582203334e-20,6.804959661950153e-23,-7.54147822590312e-06,-2.6885612342915242e-20,-6.127450888016028e-06,-1.4589169040846173e-05,5.723443246097304e-05,-3.4340660931775346e-05,-7.809896839253302e-20,-7.28189582203334e-20,3.1218780804920243e-06,2.2691961329739462e-21,1.9933330142746454e-21,3.638495692085491e-21,1.9572597808523072e-21,3.21032047100937e-21,6.009615390212275e-05,-1.0926573850156274e-05,-8.585165232943837e-06,6.804959661950153e-23,2.2691961329739462e-21,1.5609390402460122e-06,1.702719384672235e-24,-1.164670302474663e-21,-1.3048774044694876e-24,-1.0621044945331123e-23,5.656108623952605e-05,-1.0283833944413345e-05,6.352747104407253e-22,-7.54147822590312e-06,1.9933330142746454e-21,1.702719384672235e-24,1.3711778592551127e-06,1.3234889800848443e-23,-1.0587911840678754e-22,-4.764560328305439e-22,3.829656998277642e-05,-3.134021904840911e-20,-1.7675340131972916e-05,-2.6885612342915242e-20,3.638495692085491e-21,-1.164670302474663e-21,1.3234889800848443e-23,1.2625242788999458e-06,1.0058516248644817e-21,1.3234889800848443e-21,4.595588325173594e-05,-2.0540548970916783e-20,-6.565126113855513e-06,-6.127450888016028e-06,1.9572597808523072e-21,-1.3048774044694876e-24,-1.0587911840678754e-22,1.0058516248644817e-21,8.753501674618747e-07,-5.293955920339377e-22,3.404139351914637e-05,-3.134021904840911e-20,-1.3976043629695956e-20,-1.4589169040846173e-05,3.21032047100937e-21,-1.0621044945331123e-23,-4.764560328305439e-22,1.3234889800848443e-21,-5.293955920339377e-22,9.726112466523773e-07,12.0,16.0,3.0,0.05058439075946808,-0.00727213965728879,-0.005640397313982248,-0.02131645940244198,0.0002861721732188016,0.00028280544211156666,0.0012019231216982007,0.00017020697123371065,0.0009191176504828036,0.0026041667442768812,-0.00727213965728879,0.0026385991368442774,0.00028280544211156666,0.0012019231216982007,-0.00017170330102089792,-5.141917063156143e-05,-0.00021853146608918905,1.0503208545953324e-19,2.1529858275999911e-19,3.050063279461932e-18,-0.005640397313982248,0.00028280544211156666,0.001505826716311276,0.0009191176504828036,1.399596188035229e-19,-3.77073920390103e-05,-4.45078757666537e-34,-7.294584793271497e-05,-0.00012254902685526758,-2.486182123261654e-33,-0.02131645940244198,0.0012019231216982007,0.0009191176504828036,0.04735812544822693,9.743640642694615e-19,0.0,-0.0012019231216982007,-4.307512723221884e-34,-0.0009191176504828036,-0.015625,0.0002861721732188016,-0.00017170330102089792,1.399596188035229e-19,9.743640642694615e-19,1.5609390175086446e-05,3.009265538105056e-36,-4.9638665888432504e-20,-8.025800672652446e-21,-1.9572599020213423e-20,-2.772784893508644e-19,0.00028280544211156666,-5.141917063156143e-05,-3.77073920390103e-05,0.0,3.009265538105056e-36,6.8558892962755635e-06,-0.0,-2.110736115707489e-21,-0.0,-0.0,0.0012019231216982007,-0.00021853146608918905,-4.45078757666537e-34,-0.0012019231216982007,-4.9638665888432504e-20,-0.0,0.00021853146608918905,2.552245904488887e-35,6.224186912334467e-35,8.817598020578988e-34,0.00017020697123371065,1.0503208545953324e-19,-7.294584793271497e-05,-4.307512723221884e-34,-8.025800672652446e-21,-2.110736115707489e-21,2.552245904488887e-35,4.863056346948724e-06,6.992039889782425e-37,1.4256685916529303e-34,0.0009191176504828036,2.1529858275999911e-19,-0.00012254902685526758,-0.0009191176504828036,-1.9572599020213423e-20,-0.0,6.224186912334467e-35,6.992039889782425e-37,0.00012254902685526758,3.4767920134394755e-34,0.0026041667442768812,3.050063279461932e-18,-2.486182123261654e-33,-0.015625,-2.772784893508644e-19,-0.0,8.817598020578988e-34,1.4256685916529303e-34,3.4767920134394755e-34,0.0078125,12.0,16.0,4.0,0.04100555181503296,-0.005634393077343702,-0.004368165507912636,-0.013571125455200672,0.0002146291226381436,0.00021210407430771738,0.0007211538613773882,0.0001276552357012406,0.0005514706135727465,0.0013020833721384406,-0.005634393077343702,0.00201172917149961,0.00021210407430771738,0.0007211538613773882,-0.00012877747940365225,-3.856437615468167e-05,-0.00013111888256389648,6.098637220230962e-20,1.3045468025513214e-19,1.0675221788309492e-18,-0.004368165507912636,0.00021210407430771738,0.001147752394899726,0.0005514706135727465,1.4644856636566585e-19,-2.8280543119763024e-05,-3.72571166659823e-34,-5.470938413054682e-05,-7.352940883720294e-05,-1.214009515062476e-33,-0.013571125455200672,0.0007211538613773882,0.0005514706135727465,0.01816200092434883,5.430267013481991e-19,1.2755319925765713e-21,-0.000480769231216982,-4.352000968568741e-22,-0.0003676470660138875,-0.00390625,0.0002146291226381436,-0.00012877747940365225,1.4644856636566585e-19,5.430267013481991e-19,1.1707043086062185e-05,-7.007811141651029e-21,-2.9783200179294356e-20,-6.019350504489334e-21,-1.1743559089010627e-20,-9.704746610292372e-20,0.00021210407430771738,-3.856437615468167e-05,-2.8280543119763024e-05,1.2755319925765713e-21,-7.007811141651029e-21,5.141916972206673e-06,1.7828161187465443e-35,8.835894431780641e-22,-1.700709264533814e-22,5.809240850325305e-35,0.0007211538613773882,-0.00013111888256389648,-3.72571166659823e-34,-0.000480769231216982,-2.9783200179294356e-20,1.7828161187465443e-35,8.741259080125019e-05,1.531347571391925e-35,2.9876095801672997e-35,2.4689275192305136e-34,0.0001276552357012406,6.098637220230962e-20,-5.470938413054682e-05,-4.352000968568741e-22,-6.019350504489334e-21,8.835894431780641e-22,1.531347571391925e-35,3.647292260211543e-06,5.802668336744889e-23,4.989840357771181e-35,0.0005514706135727465,1.3045468025513214e-19,-7.352940883720294e-05,-0.0003676470660138875,-1.1743559089010627e-20,-1.700709264533814e-22,2.9876095801672997e-35,5.802668336744889e-23,4.901960710412823e-05,9.73501717845305e-35,0.0013020833721384406,1.0675221788309492e-18,-1.214009515062476e-33,-0.00390625,-9.704746610292372e-20,5.809240850325305e-35,2.4689275192305136e-34,4.989840357771181e-35,9.73501717845305e-35,0.0013020833721384406,12.0,16.0,5.0,0.03453952074050903,-0.0046036685816943645,-0.003568061860278249,-0.009419441223144531,0.00017170330102089792,0.00016968326235655695,0.000480769231216982,0.00010212418419541791,0.0003676470660138875,0.0007440476329065859,-0.0046036685816943645,0.001626865821890533,0.00016968326235655695,0.000480769231216982,-0.00010302197915734723,-3.0851500923745334e-05,-8.741259080125019e-05,6.183340514956392e-20,8.470329472543003e-20,5.228679996275521e-19,-0.003568061860278249,0.00016968326235655695,0.0009280058438889682,0.0003676470660138875,1.1255778759723776e-19,-2.2624433768214658e-05,-1.4317582034031667e-34,-4.376750803203322e-05,-4.901960710412823e-05,-5.712650915736844e-34,-0.009419441223144531,0.000480769231216982,0.0003676470660138875,0.009174006059765816,3.143746446917238e-19,1.6926429661404247e-21,-0.000240384615608491,0.0,-0.00018382353300694376,-0.0014880952658131719,0.00017170330102089792,-0.00010302197915734723,1.1255778759723776e-19,3.143746446917238e-19,9.365634468849748e-06,-4.484999534553442e-21,-1.1913279748600316e-20,-4.8154804035914674e-21,-7.829039123409229e-21,-4.7533452455393835e-20,0.00016968326235655695,-3.0851500923745334e-05,-2.2624433768214658e-05,1.6926429661404247e-21,-4.484999534553442e-21,4.113533577765338e-06,5.7050115082424605e-36,-1.4823076576950256e-21,0.0,2.2762740683367256e-35,0.000480769231216982,-8.741259080125019e-05,-1.4317582034031667e-34,-0.000240384615608491,-1.1913279748600316e-20,5.7050115082424605e-36,4.3706295400625095e-05,6.1253902855677e-36,9.95869931802248e-36,6.046353213743026e-35,0.00010212418419541791,6.183340514956392e-20,-4.376750803203322e-05,0.0,-4.8154804035914674e-21,-1.4823076576950256e-21,6.1253902855677e-36,2.9178338536439696e-06,0.0,2.44400342297042e-35,0.0003676470660138875,8.470329472543003e-20,-4.901960710412823e-05,-0.00018382353300694376,-7.829039123409229e-21,0.0,9.95869931802248e-36,0.0,2.4509803552064113e-05,3.9734765457899826e-35,0.0007440476329065859,5.228679996275521e-19,-5.712650915736844e-34,-0.0014880952658131719,-4.7533452455393835e-20,2.2762740683367256e-35,6.046353213743026e-35,2.44400342297042e-35,3.9734765457899826e-35,0.00037202381645329297,12.0,16.0,6.0,0.029860006645321846,-0.003893624758347869,-0.003017152426764369,-0.006927470676600933,0.0001430860866094008,0.00014140272105578333,0.00034340660204179585,8.510348561685532e-05,0.00026260505546815693,0.0004650297632906586,-0.003893624758347869,0.001366127748042345,0.00014140272105578333,0.00034340660204179585,-8.585165051044896e-05,-2.5709585315780714e-05,-6.243756070034578e-05,5.1986647137732683e-20,3.9810548520952116e-20,1.695854931077188e-19,-0.003017152426764369,0.00014140272105578333,0.0007791738607920706,0.00026260505546815693,7.417393176248355e-20,-1.885369601950515e-05,-1.9572599020213423e-20,-3.6472923966357484e-05,-3.501400715322234e-05,-7.288754312534141e-20,-0.006927470676600933,0.00034340660204179585,0.00026260505546815693,0.005328651983290911,2.4050770033407397e-19,-1.1357471528359543e-21,-0.00013736264372710139,0.0,-0.0001050420178216882,-0.0006975446594879031,0.0001430860866094008,-8.585165051044896e-05,7.417393176248355e-20,2.4050770033407397e-19,7.804695087543223e-06,1.128474576789396e-36,-1.1345980866818123e-20,-4.012900336326223e-21,-5.592171090932866e-21,-2.7232708313935003e-20,0.00014140272105578333,-2.5709585315780714e-05,-1.885369601950515e-05,-1.1357471528359543e-21,1.128474576789396e-36,3.4279446481377818e-06,9.4039548065783e-38,-1.164670302474663e-21,2.117582368135751e-22,8.597901921799167e-37,0.00034340660204179585,-6.243756070034578e-05,-1.9572599020213423e-20,-0.00013736264372710139,-1.1345980866818123e-20,9.4039548065783e-38,2.4975024643936194e-05,6.018531076210112e-36,7.829039123409229e-21,5.198971352211281e-20,8.510348561685532e-05,5.1986647137732683e-20,-3.6472923966357484e-05,0.0,-4.012900336326223e-21,-1.164670302474663e-21,6.018531076210112e-36,2.431528173474362e-06,2.117582368135751e-22,1.4153643619980781e-35,0.00026260505546815693,3.9810548520952116e-20,-3.501400715322234e-05,-0.0001050420178216882,-5.592171090932866e-21,2.117582368135751e-22,7.829039123409229e-21,2.117582368135751e-22,1.4005602679389995e-05,2.915501789637142e-20,0.0004650297632906586,1.695854931077188e-19,-7.288754312534141e-20,-0.0006975446594879031,-2.7232708313935003e-20,8.597901921799167e-37,5.198971352211281e-20,1.4153643619980781e-35,2.915501789637142e-20,0.00013950893480796367,12.0,16.0,7.0,0.02630884014070034,-0.003374186111614108,-0.002614266937598586,-0.005311860237270594,0.0001226452150149271,0.00012120232713641599,0.0002575549588073045,7.294584793271497e-05,0.00019695378432516009,0.0003100198518950492,-0.003374186111614108,0.0011776563478633761,0.00012120232713641599,0.0002575549588073045,-7.358712900895625e-05,-2.2036787413526326e-05,-4.682817234424874e-05,3.525774642946025e-20,4.828087799349512e-20,1.8881343569348464e-19,-0.002614266937598586,0.00012120232713641599,0.000671614776365459,0.00019695378432516009,8.934773291915629e-20,-1.6160311133717187e-05,0.0,-3.126250521745533e-05,-2.626050445542205e-05,-2.2925278319115806e-34,-0.005311860237270594,0.0002575549588073045,0.00019695378432516009,0.0033827233128249645,1.3444511585236158e-19,1.0085248157258987e-21,-8.585165051044896e-05,1.6940658945086007e-21,-6.565126386703923e-05,-0.00037202381645329297,0.0001226452150149271,-7.358712900895625e-05,8.934773291915629e-20,1.3444511585236158e-19,6.689738711429527e-06,-4.576529815830562e-21,0.0,-3.4396290328068125e-21,-4.194128419173845e-21,-1.716485881841769e-20,0.00012120232713641599,-2.2036787413526326e-05,-1.6160311133717187e-05,1.0085248157258987e-21,-4.576529815830562e-21,2.93823813990457e-06,0.0,5.293955920339377e-22,-1.0587911840678754e-22,1.1742683469485783e-35,0.0002575549588073045,-4.682817234424874e-05,0.0,-8.585165051044896e-05,0.0,0.0,1.5609390175086446e-05,0.0,0.0,-0.0,7.294584793271497e-05,3.525774642946025e-20,-3.126250521745533e-05,1.6940658945086007e-21,-3.4396290328068125e-21,5.293955920339377e-22,0.0,2.0841669083893066e-06,-2.117582368135751e-22,8.825567677127134e-36,0.00019695378432516009,4.828087799349512e-20,-2.626050445542205e-05,-6.565126386703923e-05,-4.194128419173845e-21,-1.0587911840678754e-22,0.0,-2.117582368135751e-22,8.753501788305584e-06,1.076149867923753e-35,0.0003100198518950492,1.8881343569348464e-19,-2.2925278319115806e-34,-0.00037202381645329297,-1.716485881841769e-20,1.1742683469485783e-35,-0.0,8.825567677127134e-36,1.076149867923753e-35,6.200397183420137e-05,12.0,16.0,8.0,0.023518582805991173,-0.002977452939376235,-0.0023066317662596703,-0.004203784745186567,0.0001073145613190718,0.00010605203715385869,0.00020032051543239504,6.38276178506203e-05,0.00015318627993110567,0.00021701389050576836,-0.002977452939376235,0.0010350020602345467,0.00010605203715385869,0.00020032051543239504,-6.438873970182613e-05,-1.9282188077340834e-05,-3.6421912227524444e-05,2.9116757561866574e-20,3.5575383784680614e-20,1.2708597428581286e-19,-0.0023066317662596703,0.00010605203715385869,0.0005902160773985088,0.00015318627993110567,7.58339604672553e-20,-1.4140271559881512e-05,-9.18689127991557e-35,-2.735469206527341e-05,-2.0424837202881463e-05,-1.4967575308738697e-34,-0.004203784745186567,0.00020032051543239504,0.00015318627993110567,0.0022861508186906576,1.4434044487578617e-19,-9.903911628125002e-22,-5.723443246097304e-05,8.470329472543003e-22,-4.376750803203322e-05,-0.00021701389050576836,0.0001073145613190718,-6.438873970182613e-05,7.58339604672553e-20,1.4434044487578617e-19,5.853521543031093e-06,-3.503905570825514e-21,-7.091237637864543e-21,-3.009675252244667e-21,-3.262099836702237e-21,-1.1553269581825784e-20,0.00010605203715385869,-1.9282188077340834e-05,-1.4140271559881512e-05,-9.903911628125002e-22,-3.503905570825514e-21,2.5709584861033363e-06,4.244800214399885e-36,5.293955920339377e-22,1.0587911840678754e-22,6.915763156208872e-36,0.00020032051543239504,-3.6421912227524444e-05,-9.18689127991557e-35,-5.723443246097304e-05,-7.091237637864543e-21,4.244800214399885e-36,1.0406260116724297e-05,3.646065782831214e-36,3.951864711938271e-36,1.3996187357029023e-35,6.38276178506203e-05,2.9116757561866574e-20,-2.735469206527341e-05,8.470329472543003e-22,-3.009675252244667e-21,5.293955920339377e-22,3.646065782831214e-36,1.8236461301057716e-06,-1.0587911840678754e-22,5.940286157286283e-36,0.00015318627993110567,3.5575383784680614e-20,-2.0424837202881463e-05,-4.376750803203322e-05,-3.262099836702237e-21,1.0587911840678754e-22,3.951864711938271e-36,-1.0587911840678754e-22,5.835667707287939e-06,6.43850340971837e-36,0.00021701389050576836,1.2708597428581286e-19,-1.4967575308738697e-34,-0.00021701389050576836,-1.1553269581825784e-20,6.915763156208872e-36,1.3996187357029023e-35,5.940286157286283e-36,6.43850340971837e-36,3.100198591710068e-05,12.0,16.0,9.0,0.02126680128276348,-0.002664431231096387,-0.0020639558788388968,-0.003410376375541091,9.5390721980948e-05,9.426847827853635e-05,0.00016025641525629908,5.673565829056315e-05,0.00012254902685526758,0.00015782828268129379,-0.002664431231096387,0.0009232393349520862,9.426847827853635e-05,0.00016025641525629908,-5.723443246097304e-05,-1.7139722331194207e-05,-2.9137529054423794e-05,2.5728625772849373e-20,2.837560373301906e-20,8.978541486077341e-20,-0.0020639558788388968,9.426847827853635e-05,0.0005264520295895636,0.00012254902685526758,6.579457277027577e-20,-1.25691303765052e-05,-5.579470160853564e-35,-2.431528082524892e-05,-1.633986903470941e-05,-1.0321397152915142e-34,-0.003410376375541091,0.00016025641525629908,0.00012254902685526758,0.001619188580662012,1.091388691797971e-19,-2.9322590935789186e-22,-4.006410381407477e-05,0.0,-3.0637256713816896e-05,-0.00013528138515539467,9.5390721980948e-05,-5.723443246097304e-05,6.579457277027577e-20,1.091388691797971e-19,5.203130058362149e-06,-2.7685181763556478e-21,-4.4123255785095495e-21,-2.6752668908841485e-21,-2.6096797078030763e-21,-8.16231051532427e-21,9.426847827853635e-05,-1.7139722331194207e-05,-1.25691303765052e-05,-2.9322590935789186e-22,-2.7685181763556478e-21,2.2852964320918545e-06,2.34774127653141e-36,4.235164736271502e-22,5.293955920339377e-23,4.3430595317676465e-36,0.00016025641525629908,-2.9137529054423794e-05,-5.579470160853564e-35,-4.006410381407477e-05,-4.4123255785095495e-21,2.34774127653141e-36,7.2843822636059485e-06,2.2686630222264286e-36,2.213044253034728e-36,6.921751117544299e-36,5.673565829056315e-05,2.5728625772849373e-20,-2.431528082524892e-05,0.0,-2.6752668908841485e-21,4.235164736271502e-22,2.2686630222264286e-36,1.6210187823162414e-06,1.0587911840678754e-22,4.1967734785009176e-36,0.00012254902685526758,2.837560373301906e-20,-1.633986903470941e-05,-3.0637256713816896e-05,-2.6096797078030763e-21,5.293955920339377e-23,2.213044253034728e-36,1.0587911840678754e-22,4.084967258677352e-06,4.093884719422536e-36,0.00015782828268129379,8.978541486077341e-20,-1.0321397152915142e-34,-0.00013528138515539467,-8.16231051532427e-21,4.3430595317676465e-36,6.921751117544299e-36,4.1967734785009176e-36,4.093884719422536e-36,1.6910173144424334e-05,12.0,16.0,10.0,0.019410543143749237,-0.002411099849268794,-0.0018675870960578322,-0.0028225909918546677,8.585165051044896e-05,8.484163117827848e-05,0.00013111888256389648,5.1062092097708955e-05,0.00010026738164015114,0.00011837121564894915,-0.002411099849268794,0.0008332993602380157,8.484163117827848e-05,0.00013111888256389648,-5.1510989578673616e-05,-1.5425750461872667e-05,-2.3839796995162033e-05,3.028142786434124e-20,2.329340604949326e-20,6.585363863589089e-20,-0.0018675870960578322,8.484163117827848e-05,0.0004751437227241695,0.00010026738164015114,5.805821745735726e-20,-1.1312216884107329e-05,0.0,-2.188375401601661e-05,-1.3368983672989998e-05,-7.422387015609966e-35,-0.0028225909918546677,0.00013111888256389648,0.00010026738164015114,0.0011895056813955307,6.989419620836222e-20,-2.753083412236515e-22,-2.9137529054423794e-05,-8.470329472543003e-22,-2.228163975814823e-05,-8.877841173671186e-05,8.585165051044896e-05,-5.1510989578673616e-05,5.805821745735726e-20,6.989419620836222e-20,4.682817234424874e-06,-2.242499767276721e-21,0.0,-2.4077402017957337e-21,-2.1351924698435723e-21,-5.986694237855179e-21,8.484163117827848e-05,-1.5425750461872667e-05,-1.1312216884107329e-05,-2.753083412236515e-22,-2.242499767276721e-21,2.056766788882669e-06,0.0,-7.411538288475128e-22,0.0,2.866898277650944e-36,0.00013111888256389648,-2.3839796995162033e-05,0.0,-2.9137529054423794e-05,0.0,0.0,5.2977325140091125e-06,0.0,0.0,-0.0,5.1062092097708955e-05,3.028142786434124e-20,-2.188375401601661e-05,-8.470329472543003e-22,-2.4077402017957337e-21,-7.411538288475128e-22,0.0,1.4589169268219848e-06,1.0587911840678754e-22,3.078148258674466e-36,0.00010026738164015114,2.329340604949326e-20,-1.3368983672989998e-05,-2.228163975814823e-05,-2.1351924698435723e-21,0.0,0.0,1.0587911840678754e-22,2.970885361719411e-06,2.7297127274478243e-36,0.00011837121564894915,6.585363863589089e-20,-7.422387015609966e-35,-8.877841173671186e-05,-5.986694237855179e-21,2.866898277650944e-36,-0.0,3.078148258674466e-36,2.7297127274478243e-36,9.864267667580862e-06,12.0,16.0,11.0,0.017853572964668274,-0.002201842376962304,-0.001705402391962707,-0.0023749228566884995,7.804695633240044e-05,7.712875230936334e-05,0.00010926573304459453,4.642008207156323e-05,8.355615136679262e-05,9.10547751118429e-05,-0.002201842376962304,0.0007593509508296847,7.712875230936334e-05,0.00010926573304459453,-4.682817234424874e-05,-1.4023409676156007e-05,-1.986649658647366e-05,2.2128735747018596e-20,1.9905274260476058e-20,4.976793224618952e-20,-0.001705402391962707,7.712875230936334e-05,0.00043296164949424565,8.355615136679262e-05,5.192263757548786e-20,-1.0283833944413345e-05,-4.8033936375838237e-35,-1.98943216673797e-05,-1.1140819879074115e-05,-5.518221624634694e-35,-0.0023749228566884995,0.00010926573304459453,8.355615136679262e-05,0.0008999068522825837,8.024903698675708e-20,-2.4220006360169184e-22,-2.1853147700312547e-05,0.0,-1.6711230273358524e-05,-6.0703187045874074e-05,7.804695633240044e-05,-4.682817234424874e-05,5.192263757548786e-20,8.024903698675708e-20,4.2571064113872126e-06,-1.853305432567161e-21,-3.938274347127805e-21,-2.1888548023409913e-21,-1.779327091861042e-21,-4.524357256618984e-21,7.712875230936334e-05,-1.4023409676156007e-05,-1.0283833944413345e-05,-2.4220006360169184e-22,-1.853305432567161e-21,1.8697879795581684e-06,1.714503782704053e-36,2.117582368135751e-22,0.0,1.969651489623502e-36,0.00010926573304459453,-1.986649658647366e-05,-4.8033936375838237e-35,-2.1853147700312547e-05,-3.938274347127805e-21,1.714503782704053e-36,3.973299499193672e-06,2.0249224677467448e-36,1.646065890319158e-36,4.185509639657696e-36,4.642008207156323e-05,2.2128735747018596e-20,-1.98943216673797e-05,0.0,-2.1888548023409913e-21,2.117582368135751e-22,2.0249224677467448e-36,1.326288042946544e-06,0.0,2.326265760994308e-36,8.355615136679262e-05,1.9905274260476058e-20,-1.1140819879074115e-05,-1.6711230273358524e-05,-1.779327091861042e-21,0.0,1.646065890319158e-36,0.0,2.228164021289558e-06,1.891029004841445e-36,9.10547751118429e-05,4.976793224618952e-20,-5.518221624634694e-35,-6.0703187045874074e-05,-4.524357256618984e-21,1.969651489623502e-36,4.185509639657696e-36,2.326265760994308e-36,1.891029004841445e-36,6.070318704587407e-06,12.0,16.0,12.0,0.016528651118278503,-0.0020260601304471493,-0.0015691773733124137,-0.0020260601304471493,7.15430433047004e-05,7.070136052789167e-05,9.245562250725925e-05,4.255174280842766e-05,7.070136052789167e-05,7.15430433047004e-05,-0.0020260601304471493,0.0006974725401960313,7.070136052789167e-05,9.245562250725925e-05,-4.292582525522448e-05,-1.2854792657890357e-05,-1.681011235632468e-05,2.5516867536035798e-20,1.6305384234645282e-20,3.8544755388592845e-20,-0.0015691773733124137,7.070136052789167e-05,0.0003976670850533992,7.070136052789167e-05,3.83774678032268e-20,-9.426848009752575e-06,-2.73101689911299e-35,-1.8236461983178742e-05,-9.426848009752575e-06,-3.4460609865657567e-35,-0.0020260601304471493,9.245562250725925e-05,7.070136052789167e-05,0.0006974725401960313,6.51100743510396e-20,2.198503846011067e-22,-1.681011235632468e-05,0.0,-1.2854792657890357e-05,-4.292582525522448e-05,7.15430433047004e-05,-4.292582525522448e-05,3.83774678032268e-20,6.51100743510396e-20,3.9023475437716115e-06,7.52316384526264e-37,-2.7769882958018634e-21,-2.0064501681631114e-21,-1.5055845322491713e-21,-3.5040687451260375e-21,7.070136052789167e-05,-1.2854792657890357e-05,-9.426848009752575e-06,2.198503846011067e-22,7.52316384526264e-37,1.7139723240688909e-06,-0.0,-4.764560328305439e-22,2.6469779601696886e-23,-0.0,9.245562250725925e-05,-1.681011235632468e-05,-2.73101689911299e-35,-1.681011235632468e-05,-2.7769882958018634e-21,-0.0,3.0563842301489785e-06,1.4278298647212031e-36,1.0714038381809006e-36,2.4935649237256873e-36,4.255174280842766e-05,2.5516867536035798e-20,-1.8236461983178742e-05,0.0,-2.0064501681631114e-21,-4.764560328305439e-22,1.4278298647212031e-36,1.215764086737181e-06,0.0,1.801669121023244e-36,7.070136052789167e-05,1.6305384234645282e-20,-9.426848009752575e-06,-1.2854792657890357e-05,-1.5055845322491713e-21,2.6469779601696886e-23,1.0714038381809006e-36,0.0,1.7139723240688909e-06,1.3519224461605204e-36,7.15430433047004e-05,3.8544755388592845e-20,-3.4460609865657567e-35,-4.292582525522448e-05,-3.5040687451260375e-21,-0.0,2.4935649237256873e-36,1.801669121023244e-36,1.3519224461605204e-36,3.9023475437716115e-06,12.0,16.0,13.0,0.015387343242764473,-0.0018763052066788077,-0.0014531330671161413,-0.0017488874727860093,6.603972724406049e-05,6.526279321406037e-05,7.924767851363868e-05,3.9278533222386613e-05,6.0601163568207994e-05,5.723443246097304e-05,-0.0018763052066788077,0.0006449291831813753,6.526279321406037e-05,7.924767851363868e-05,-3.962383925681934e-05,-1.1865961823787075e-05,-1.4408667993848212e-05,2.5093351062408648e-20,1.6093625997831706e-20,2.286988957586611e-20,-0.0014531330671161413,6.526279321406037e-05,0.00036769884172827005,6.0601163568207994e-05,5.012077647623167e-20,-8.701705155544914e-06,4.235164736271502e-21,-1.6833657355164178e-05,-8.080155566858593e-06,2.541098841762901e-21,-0.0017488874727860093,7.924767851363868e-05,6.0601163568207994e-05,0.0005516377277672291,5.3996369677635494e-20,3.772623755425175e-21,-1.3207945812609978e-05,7.927113542320573e-22,-1.0100194231199566e-05,-3.121878035017289e-05,6.603972724406049e-05,-3.962383925681934e-05,5.012077647623167e-20,5.3996369677635494e-20,3.602166998462053e-06,-2.653845821075866e-21,-2.014079374506136e-21,-1.852107878604163e-21,-1.2905010132172617e-21,-2.7700148158868076e-21,6.526279321406037e-05,-1.1865961823787075e-05,-8.701705155544914e-06,3.772623755425175e-21,-2.653845821075866e-21,1.5821283341210801e-06,-6.131066335314092e-22,-6.88214269644119e-22,-4.260495754135745e-23,-2.1623472583900396e-23,7.924767851363868e-05,-1.4408667993848212e-05,4.235164736271502e-21,-1.3207945812609978e-05,-2.014079374506136e-21,-6.131066335314092e-22,2.401444817223819e-06,0.0,-7.940933880509066e-23,1.2705494208814505e-21,3.9278533222386613e-05,2.5093351062408648e-20,-1.6833657355164178e-05,7.927113542320573e-22,-1.852107878604163e-21,-6.88214269644119e-22,0.0,1.1222438160984893e-06,0.0,-5.293955920339377e-23,6.0601163568207994e-05,1.6093625997831706e-20,-8.080155566858593e-06,-1.0100194231199566e-05,-1.2905010132172617e-21,-4.260495754135745e-23,-7.940933880509066e-23,0.0,1.3466925565808197e-06,-3.1763735522036263e-22,5.723443246097304e-05,2.286988957586611e-20,2.541098841762901e-21,-3.121878035017289e-05,-2.7700148158868076e-21,-2.1623472583900396e-23,1.2705494208814505e-21,-5.293955920339377e-23,-3.1763735522036263e-22,2.6015650291810744e-06,12.0,16.0,14.0,0.014393854886293411,-0.001747189206071198,-0.0013530893484130502,-0.0015250029973685741,6.132260750746354e-05,6.0601163568207994e-05,6.868132186355069e-05,3.6472923966357484e-05,5.25210089108441e-05,4.650297705666162e-05,-0.001747189206071198,0.0005997547414153814,6.0601163568207994e-05,6.868132186355069e-05,-3.679356450447813e-05,-1.1018393706763163e-05,-1.2487512321968097e-05,1.7470054537119944e-20,1.2281977735187355e-20,2.795208725939191e-20,-0.0013530893484130502,6.0601163568207994e-05,0.0003419348504394293,5.25210089108441e-05,4.5652495441236535e-20,-8.080155566858593e-06,0.0,-1.5631252608727664e-05,-7.002801339694997e-06,-4.235164736271502e-22,-0.0015250029973685741,6.868132186355069e-05,5.25210089108441e-05,0.00044387925299815834,3.73539545798146e-20,1.9222245543088162e-36,-1.0566356650087982e-05,-1.3903102950313677e-22,-8.080155566858593e-06,-2.325148852833081e-05,6.132260750746354e-05,-3.679356450447813e-05,4.5652495441236535e-20,3.73539545798146e-20,3.3448693557147635e-06,-2.288264907915281e-21,8.48739171337069e-37,-1.7198145164034062e-21,-1.1184342181865732e-21,-2.228130533359488e-21,6.0601163568207994e-05,-1.1018393706763163e-05,-8.080155566858593e-06,1.9222245543088162e-36,-2.288264907915281e-21,1.469119069952285e-06,6.617444900424222e-24,3.1763735522036263e-22,-2.6469779601696886e-23,3.008829088483291e-24,6.868132186355069e-05,-1.2487512321968097e-05,0.0,-1.0566356650087982e-05,8.48739171337069e-37,6.617444900424222e-24,1.921155671880115e-06,6.617444900424222e-24,0.0,-7.411538288475128e-22,3.6472923966357484e-05,1.7470054537119944e-20,-1.5631252608727664e-05,-1.3903102950313677e-22,-1.7198145164034062e-21,3.1763735522036263e-22,6.617444900424222e-24,1.0420834541946533e-06,0.0,-2.6469779601696886e-23,5.25210089108441e-05,1.2281977735187355e-20,-7.002801339694997e-06,-8.080155566858593e-06,-1.1184342181865732e-21,-2.6469779601696886e-23,0.0,0.0,1.0773539997899206e-06,1.0587911840678754e-22,4.650297705666162e-05,2.795208725939191e-20,-4.235164736271502e-22,-2.325148852833081e-05,-2.228130533359488e-21,3.008829088483291e-24,-7.411538288475128e-22,-2.6469779601696886e-23,1.0587911840678754e-22,1.7885760144054075e-06,12.0,16.0,15.0,0.013521147891879082,-0.0016347164055332541,-0.0012659471249207854,-0.0013415582943707705,5.723443246097304e-05,5.656108623952605e-05,6.009615390212275e-05,3.404139351914637e-05,4.595588325173594e-05,3.829656998277642e-05,-0.0016347164055332541,0.0005604995531029999,5.656108623952605e-05,6.009615390212275e-05,-3.4340660931775346e-05,-1.0283833944413345e-05,-1.0926573850156274e-05,-3.1657856403629475e-20,-1.9693516023662483e-20,-3.176373552203626e-20,-0.0012659471249207854,5.656108623952605e-05,0.00031954768928699195,4.595588325173594e-05,-7.28189582203334e-20,-7.54147822590312e-06,1.9058241313221758e-21,-1.4589169040846173e-05,-6.127450888016028e-06,4.658681209898652e-21,-0.0013415582943707705,6.009615390212275e-05,4.595588325173594e-05,0.0003625128010753542,-7.809896839253302e-20,1.5721486659188182e-22,-8.585165232943837e-06,4.4613045258542055e-22,-6.565126113855513e-06,-1.7675340131972916e-05,5.723443246097304e-05,-3.4340660931775346e-05,-7.28189582203334e-20,-7.809896839253302e-20,3.1218780804920243e-06,1.9933330142746454e-21,2.2691961329739462e-21,3.21032047100937e-21,1.9572597808523072e-21,3.638495692085491e-21,5.656108623952605e-05,-1.0283833944413345e-05,-7.54147822590312e-06,1.5721486659188182e-22,1.9933330142746454e-21,1.3711778592551127e-06,-4.144993205583613e-25,-4.764560328305439e-22,-2.9316949002595045e-23,-1.2209225473654567e-23,6.009615390212275e-05,-1.0926573850156274e-05,1.9058241313221758e-21,-8.585165232943837e-06,2.2691961329739462e-21,-4.144993205583613e-25,1.5609390402460122e-06,-6.617444900424222e-24,-2.6469779601696886e-22,-1.164670302474663e-21,3.404139351914637e-05,-3.1657856403629475e-20,-1.4589169040846173e-05,4.4613045258542055e-22,3.21032047100937e-21,-4.764560328305439e-22,-6.617444900424222e-24,9.726112466523773e-07,-5.293955920339377e-23,-2.6469779601696886e-23,4.595588325173594e-05,-1.9693516023662483e-20,-6.127450888016028e-06,-6.565126113855513e-06,1.9572597808523072e-21,-2.9316949002595045e-23,-2.6469779601696886e-22,-5.293955920339377e-23,8.753501674618747e-07,-6.352747104407253e-22,3.829656998277642e-05,-3.176373552203626e-20,4.658681209898652e-21,-1.7675340131972916e-05,3.638495692085491e-21,-1.2209225473654567e-23,-1.164670302474663e-21,-2.6469779601696886e-23,-6.352747104407253e-22,1.2625242788999458e-06,12.0,16.0,16.0,0.012748416513204575,-0.0015358607051894069,-0.0011893596965819597,-0.0011893596965819597,5.36572806595359e-05,5.3026018576929346e-05,5.3026018576929346e-05,3.191380892531015e-05,4.0549308323534206e-05,3.191380892531015e-05,-0.0015358607051894069,0.0005260708858259022,5.3026018576929346e-05,5.3026018576929346e-05,-3.219436985091306e-05,-9.641094038670417e-06,-9.641094038670417e-06,1.514071393217062e-20,1.1434944787933055e-20,1.4399560103323106e-20,-0.0011893596965819597,5.3026018576929346e-05,0.00029991386691108346,4.0549308323534206e-05,3.868453275624297e-20,-7.070135779940756e-06,1.4823076576950256e-21,-1.3677346032636706e-05,-5.406574473454384e-06,2.964615315390051e-21,-0.0011893596965819597,5.3026018576929346e-05,4.0549308323534206e-05,0.00029991386691108346,3.868453275624297e-20,-1.3006690642541005e-22,-7.070135779940756e-06,-2.5461703717245817e-22,-5.406574473454384e-06,-1.3677346032636706e-05,5.36572806595359e-05,-3.219436985091306e-05,3.868453275624297e-20,3.868453275624297e-20,2.9267607715155464e-06,-1.751952785412757e-21,-1.751952785412757e-21,-1.5048376261223336e-21,-8.634969918390167e-22,-1.5048376261223336e-21,5.3026018576929346e-05,-9.641094038670417e-06,-7.070135779940756e-06,-1.3006690642541005e-22,-1.751952785412757e-21,1.2854792430516682e-06,6.37490488194859e-24,1.5881867761018131e-22,-2.4125051488552093e-23,1.5886076176175304e-23,5.3026018576929346e-05,-9.641094038670417e-06,1.4823076576950256e-21,-7.070135779940756e-06,-1.751952785412757e-21,6.37490488194859e-24,1.2854792430516682e-06,1.3234889800848443e-23,-2.2499312661442353e-22,2.6469779601696886e-22,3.191380892531015e-05,1.514071393217062e-20,-1.3677346032636706e-05,-2.5461703717245817e-22,-1.5048376261223336e-21,1.5881867761018131e-22,1.3234889800848443e-23,9.118230650528858e-07,-5.293955920339377e-23,2.6469779601696886e-23,4.0549308323534206e-05,1.1434944787933055e-20,-5.406574473454384e-06,-5.406574473454384e-06,-8.634969918390167e-22,-2.4125051488552093e-23,-2.2499312661442353e-22,-5.293955920339377e-23,7.208765850919008e-07,-4.235164736271502e-22,3.191380892531015e-05,1.4399560103323106e-20,2.964615315390051e-21,-1.3677346032636706e-05,-1.5048376261223336e-21,1.5886076176175304e-23,2.6469779601696886e-22,2.6469779601696886e-23,-4.235164736271502e-22,9.118230650528858e-07,13.0,3.0,3.0,0.17673993110656738,-0.029304029420018196,-0.09065934270620346,-0.09065934270620346,0.0012210012646391988,0.005494505632668734,0.005494505632668734,0.012820512987673283,0.01923076994717121,0.012820512987673283,-0.029304029420018196,0.010434010066092014,0.005494505632668734,0.005494505632668734,-0.000666000647470355,-0.0009157509193755686,-0.0009157509193755686,9.974659986866641e-18,4.553649124439119e-18,9.540979117872439e-18,-0.09065934270620346,0.005494505632668734,0.21886447072029114,0.01923076994717121,-2.6283663963872454e-19,-0.005494505632668734,5.095750210681871e-18,-0.07692307978868484,-0.01923076994717121,1.3735530940428812e-17,-0.09065934270620346,0.005494505632668734,0.01923076994717121,0.21886447072029114,-6.612439940730393e-19,5.672689249193213e-18,-0.005494505632668734,1.757521731711626e-17,-0.01923076994717121,-0.07692307978868484,0.0012210012646391988,-0.000666000647470355,-2.6283663963872454e-19,-6.612439940730393e-19,5.550005516852252e-05,2.2720730493729472e-20,4.25508072510585e-20,5.013532645395951e-20,1.911628935894252e-20,1.6671370296669369e-19,0.005494505632668734,-0.0009157509193755686,-0.005494505632668734,5.672689249193213e-18,2.2720730493729472e-20,0.0009157509193755686,4.673902464080621e-21,-8.781611599117121e-18,-2.538708496587776e-18,-1.5864648962592074e-18,0.005494505632668734,-0.0009157509193755686,5.095750210681871e-18,-0.005494505632668734,4.25508072510585e-20,4.673902464080621e-21,0.0009157509193755686,-1.4963519437252572e-18,-2.1141942363467336e-18,-8.673617379884035e-18,0.012820512987673283,9.974659986866641e-18,-0.07692307978868484,1.757521731711626e-17,5.013532645395951e-20,-8.781611599117121e-18,-1.4963519437252572e-18,0.03846153989434242,-4.597268426090571e-18,-1.4587804697249095e-18,0.01923076994717121,4.553649124439119e-18,-0.01923076994717121,-0.01923076994717121,1.911628935894252e-20,-2.538708496587776e-18,-2.1141942363467336e-18,-4.597268426090571e-18,0.01923076994717121,0.0,0.012820512987673283,9.540979117872439e-18,1.3735530940428812e-17,-0.07692307978868484,1.6671370296669369e-19,-1.5864648962592074e-18,-8.673617379884035e-18,-1.4587804697249095e-18,0.0,0.03846153989434242,13.0,3.0,4.0,0.14551281929016113,-0.02280219830572605,-0.07087912410497665,-0.05824175849556923,0.0009157509193755686,0.004120879340916872,0.0032967033330351114,0.009615384973585606,0.011538461782038212,0.006410256493836641,-0.02280219830572605,0.00796287041157484,0.004120879340916872,0.0032967033330351114,-0.0004995004856027663,-0.0006868132040835917,-0.0005494505749084055,-1.043540372396174e-17,3.7947076036992655e-19,3.2526065174565133e-18,-0.07087912410497665,0.004120879340916872,0.16703297197818756,0.011538461782038212,-1.0578084935001624e-18,-0.004120879340916872,-5.7462715141731735e-18,-0.057692307978868484,-0.011538461782038212,-7.892991815694472e-17,-0.05824175849556923,0.0032967033330351114,0.011538461782038212,0.08369963616132736,1.3497600295443753e-18,-7.104796556283314e-18,-0.002197802299633622,-1.1709645513661505e-16,-0.007692307699471712,-0.01923076994717121,0.0009157509193755686,-0.0004995004856027663,-1.0578084935001624e-18,1.3497600295443753e-18,4.162504046689719e-05,-2.4054174721733363e-20,-5.874231521098422e-20,6.287733293199999e-19,-1.4674878769158285e-20,-2.7922859349435233e-19,0.004120879340916872,-0.0006868132040835917,-0.004120879340916872,-7.104796556283314e-18,-2.4054174721733363e-20,0.0006868132040835917,1.913300163849036e-19,-1.5658662378502588e-18,-4.2794051988641933e-19,1.979440103912098e-18,0.0032967033330351114,-0.0005494505749084055,-5.7462715141731735e-18,-0.002197802299633622,-5.874231521098422e-20,1.913300163849036e-19,0.00036630037357099354,1.932626644325272e-18,3.2526065174565133e-19,-9.75781955236954e-19,0.009615384973585606,-1.043540372396174e-17,-0.057692307978868484,-1.1709645513661505e-16,6.287733293199999e-19,-1.5658662378502588e-18,1.932626644325272e-18,0.028846153989434242,4.432310000383715e-18,3.062093918367995e-17,0.011538461782038212,3.7947076036992655e-19,-0.011538461782038212,-0.007692307699471712,-1.4674878769158285e-20,-4.2794051988641933e-19,3.2526065174565133e-19,4.432310000383715e-18,0.007692307699471712,2.3852447794681098e-18,0.006410256493836641,3.2526065174565133e-18,-7.892991815694472e-17,-0.01923076994717121,-2.7922859349435233e-19,1.979440103912098e-18,-9.75781955236954e-19,3.062093918367995e-17,2.3852447794681098e-18,0.006410256493836641,13.0,3.0,5.0,0.12380952388048172,-0.018681319430470467,-0.05824175849556923,-0.0406593419611454,0.0007326007471419871,0.0032967033330351114,0.002197802299633622,0.007692307699471712,0.007692307699471712,0.0036630036775022745,-0.018681319430470467,0.006443556398153305,0.0032967033330351114,0.002197802299633622,-0.0003996003943029791,-0.0005494505749084055,-0.00036630037357099354,-4.672170044147554e-18,3.972506457452359e-19,3.1973452690688363e-18,-0.05824175849556923,0.0032967033330351114,0.13516484200954437,0.007692307699471712,-7.766905936373448e-19,-0.0032967033330351114,3.119854110405468e-19,-0.04615384712815285,-0.007692307699471712,-1.606366717040626e-17,-0.0406593419611454,0.002197802299633622,0.007692307699471712,0.042307693511247635,3.7947076036992655e-19,-3.6586136454674473e-19,-0.001098901149816811,-4.0517510011999137e-17,-0.003846153849735856,-0.007326007355004549,0.0007326007471419871,-0.0003996003943029791,-7.766905936373448e-19,3.7947076036992655e-19,3.330003164592199e-05,1.6940658945086007e-20,0.0,3.054244729157176e-19,1.515816711997806e-20,-1.0920881764034612e-19,0.0032967033330351114,-0.0005494505749084055,-0.0032967033330351114,-3.6586136454674473e-19,1.6940658945086007e-20,0.0005494505749084055,-2.130037089663256e-35,1.229785546704531e-18,1.0244057383684436e-19,3.8750144980924616e-20,0.002197802299633622,-0.00036630037357099354,3.119854110405468e-19,-0.001098901149816811,0.0,-2.130037089663256e-35,0.00018315018678549677,1.6342993810652595e-19,-3.7363275225107456e-19,-9.480351121670518e-19,0.007692307699471712,-4.672170044147554e-18,-0.04615384712815285,-4.0517510011999137e-17,3.054244729157176e-19,1.229785546704531e-18,1.6342993810652595e-19,0.023076923564076424,5.309709058117567e-19,9.487496101006598e-18,0.007692307699471712,3.972506457452359e-19,-0.007692307699471712,-0.003846153849735856,1.515816711997806e-20,1.0244057383684436e-19,-3.7363275225107456e-19,5.309709058117567e-19,0.003846153849735856,-1.591952205647731e-18,0.0036630036775022745,3.1973452690688363e-18,-1.606366717040626e-17,-0.007326007355004549,-1.0920881764034612e-19,3.8750144980924616e-20,-9.480351121670518e-19,9.487496101006598e-18,-1.591952205647731e-18,0.0018315018387511373,13.0,3.0,6.0,0.10779696702957153,-0.015829408541321754,-0.049450550228357315,-0.030023548752069473,0.0006105006323195994,0.002747252816334367,0.0015698587521910667,0.006410256493836641,0.005494505632668734,0.002289377385750413,-0.015829408541321754,0.005413237493485212,0.002747252816334367,0.0015698587521910667,-0.0003330003237351775,-0.0004578754596877843,-0.00026164311566390097,2.37332572722668e-18,-7.530933021103149e-19,-2.8238441677821284e-19,-0.049450550228357315,0.002747252816334367,0.11355311423540115,0.005494505632668734,-5.428037244743277e-19,-0.002747252816334367,-6.483008922332689e-19,-0.03846153989434242,-0.005494505632668734,-1.0751472744740702e-17,-0.030023548752069473,0.0015698587521910667,0.005494505632668734,0.02460099384188652,1.3552527156068805e-20,-1.891756891029946e-18,-0.0006279434892348945,-1.608009332301034e-17,-0.002197802299633622,-0.0034340659622102976,0.0006105006323195994,-0.0003330003237351775,-5.428037244743277e-19,1.3552527156068805e-20,2.775002758426126e-05,1.0164395367051604e-20,1.3552527156068805e-20,1.8083306856221152e-19,5.077099859883517e-20,-3.8832972902105023e-20,0.002747252816334367,-0.0004578754596877843,-0.002747252816334367,-1.891756891029946e-18,1.0164395367051604e-20,0.0004578754596877843,8.131516293641283e-20,-3.608224697682861e-18,-3.734832393553556e-19,3.229437705486786e-19,0.0015698587521910667,-0.00026164311566390097,-6.483008922332689e-19,-0.0006279434892348945,1.3552527156068805e-20,8.131516293641283e-20,0.00010465725063113496,-2.7901145858355716e-19,2.4400507166273646e-19,1.5676343105601968e-19,0.006410256493836641,2.37332572722668e-18,-0.03846153989434242,-1.608009332301034e-17,1.8083306856221152e-19,-3.608224697682861e-18,-2.7901145858355716e-19,0.01923076994717121,-1.9990422164780735e-18,3.656133344400707e-18,0.005494505632668734,-7.530933021103149e-19,-0.005494505632668734,-0.002197802299633622,5.077099859883517e-20,-3.734832393553556e-19,2.4400507166273646e-19,-1.9990422164780735e-18,0.002197802299633622,5.139083411238957e-19,0.002289377385750413,-2.8238441677821284e-19,-1.0751472744740702e-17,-0.0034340659622102976,-3.8832972902105023e-20,3.229437705486786e-19,1.5676343105601968e-19,3.656133344400707e-18,5.139083411238957e-19,0.0006868132040835917,13.0,3.0,7.0,0.09547793120145798,-0.01373626384884119,-0.04297488182783127,-0.023090004920959473,0.0005232862313278019,0.0023547881282866,0.0011773940641433,0.005494505632668734,0.004120879340916872,0.001526251551695168,-0.01373626384884119,0.004667951259762049,0.0023547881282866,0.0011773940641433,-0.00028542886138893664,-0.0003924646880477667,-0.00019623234402388334,-5.637851296924623e-18,6.505213034913027e-19,8.944667923005412e-19,-0.04297488182783127,0.0023547881282866,0.09791993349790573,0.004120879340916872,-1.4057580696756383e-20,-0.0023547881282866,1.2826797660705992e-19,-0.032967034727334976,-0.004120879340916872,2.168404344971009e-18,-0.023090004920959473,0.0011773940641433,0.004120879340916872,0.015633177012205124,-6.098637220230962e-20,2.3784685158900754e-18,-0.0003924646880477667,-1.713039432527097e-17,-0.0013736264081671834,-0.0018315018387511373,0.0005232862313278019,-0.00028542886138893664,-1.4057580696756383e-20,-6.098637220230962e-20,2.3785738449078053e-05,3.3881317890172014e-21,1.122318655111948e-20,-1.2111269144065291e-20,9.271393109334698e-22,-2.3651767509597654e-21,0.0023547881282866,-0.0003924646880477667,-0.0023547881282866,2.3784685158900754e-18,3.3881317890172014e-21,0.0003924646880477667,-5.844527336054672e-20,4.119968255444917e-18,9.486769009248164e-20,-3.1594328932585403e-19,0.0011773940641433,-0.00019623234402388334,1.2826797660705992e-19,-0.0003924646880477667,1.122318655111948e-20,-5.844527336054672e-20,6.541077891597524e-05,4.97683193408668e-19,-2.2572419917955555e-19,-1.407687694636617e-19,0.005494505632668734,-5.637851296924623e-18,-0.032967034727334976,-1.713039432527097e-17,-1.2111269144065291e-20,4.119968255444917e-18,4.97683193408668e-19,0.016483517363667488,5.5294310796760726e-18,1.3688052427629493e-18,0.004120879340916872,6.505213034913027e-19,-0.004120879340916872,-0.0013736264081671834,9.271393109334698e-22,9.486769009248164e-20,-2.2572419917955555e-19,5.5294310796760726e-18,0.0013736264081671834,-9.0801931945661e-19,0.001526251551695168,8.944667923005412e-19,2.168404344971009e-18,-0.0018315018387511373,-2.3651767509597654e-21,-3.1594328932585403e-19,-1.407687694636617e-19,1.3688052427629493e-18,-9.0801931945661e-19,0.0003052503161597997,13.0,3.0,8.0,0.08569902181625366,-0.012133699841797352,-0.03800366446375847,-0.018315019086003304,0.0004578754596877843,0.002060439670458436,0.0009157509193755686,0.004807692486792803,0.0032051282469183207,0.0010683761211112142,-0.012133699841797352,0.004103535320609808,0.002060439670458436,0.0009157509193755686,-0.00024975024280138314,-0.00034340660204179585,-0.00015262515807989985,4.336808689942018e-19,2.168404344971009e-19,-4.234330106880098e-35,-0.03800366446375847,0.002060439670458436,0.08608058840036392,0.0032051282469183207,1.0359043889882403e-19,-0.002060439670458436,1.8665751867383589e-19,-0.028846153989434242,-0.0032051282469183207,3.558407331701548e-18,-0.018315019086003304,0.0009157509193755686,0.0032051282469183207,0.010574743151664734,1.793879614138615e-20,5.421010862427522e-20,-0.00026164311566390097,1.595983449683493e-17,-0.0009157509193755686,-0.0010683761211112142,0.0004578754596877843,-0.00024975024280138314,1.0359043889882403e-19,1.793879614138615e-20,2.0812520233448595e-05,-4.318324660607924e-21,-3.2172872866274985e-21,-3.220494267477954e-20,-2.0232040086899697e-21,4.952091377075439e-36,0.002060439670458436,-0.00034340660204179585,-0.002060439670458436,5.421010862427522e-20,-4.318324660607924e-21,0.00034340660204179585,-4.899828592264868e-21,1.0842021724855044e-19,-4.0657581468206416e-20,-2.4846782251765707e-35,0.0009157509193755686,-0.00015262515807989985,1.8665751867383589e-19,-0.00026164311566390097,-3.2172872866274985e-21,-4.899828592264868e-21,4.3607185943983495e-05,-1.872857429620243e-20,-3.54799284344617e-20,9.215925215518882e-37,0.004807692486792803,4.336808689942018e-19,-0.028846153989434242,1.595983449683493e-17,-3.220494267477954e-20,1.0842021724855044e-19,-1.872857429620243e-20,0.014423076994717121,-3.2526065174565133e-18,-1.779203665850774e-18,0.0032051282469183207,2.168404344971009e-19,-0.0032051282469183207,-0.0009157509193755686,-2.0232040086899697e-21,-4.0657581468206416e-20,-3.54799284344617e-20,-3.2526065174565133e-18,0.0009157509193755686,4.18908809586127e-34,0.0010683761211112142,-4.234330106880098e-35,3.558407331701548e-18,-0.0010683761211112142,4.952091377075439e-36,-2.4846782251765707e-35,9.215925215518882e-37,-1.779203665850774e-18,4.18908809586127e-34,0.00015262515807989985,13.0,3.0,9.0,0.07774447649717331,-0.01086691115051508,-0.034065935760736465,-0.014885114505887032,0.0004070004215463996,0.0018315018387511373,0.0007326007471419871,0.004273504484444857,0.0025641026441007853,0.0007770007941871881,-0.01086691115051508,0.003661153605207801,0.0018315018387511373,0.0007326007471419871,-0.0002220002206740901,-0.0003052503161597997,-0.00012210012937430292,-1.6267004088198587e-18,-1.6267004346692528e-19,-7.974546788316187e-35,-0.034065935760736465,0.0018315018387511373,0.07680097967386246,0.0025641026441007853,5.753873187680262e-21,-0.0018315018387511373,1.3552527156068805e-20,-0.025641025975346565,-0.0025641026441007853,-1.2569957563520394e-18,-0.014885114505887032,0.0007326007471419871,0.0025641026441007853,0.007495282683521509,5.8756916887500344e-21,-1.4911751631085648e-19,-0.00018315018678549677,-5.027983025408158e-18,-0.0006410256610251963,-0.000666000647470355,0.0004070004215463996,-0.0002220002206740901,5.753873187680262e-21,5.8756916887500344e-21,1.850001899583731e-05,3.752382872018201e-22,1.5009531488072805e-22,-1.498081956570727e-36,-5.461694168319778e-38,-0.0,0.0018315018387511373,-0.0003052503161597997,-0.0018315018387511373,-1.4911751631085648e-19,3.752382872018201e-22,0.0003052503161597997,0.0,1.6267004088198587e-18,1.6267004346692528e-19,7.974546788316187e-35,0.0007326007471419871,-0.00012210012937430292,1.3552527156068805e-20,-0.00018315018678549677,1.5009531488072805e-22,0.0,3.052503234357573e-05,3.073884006554036e-36,-0.0,-0.0,0.004273504484444857,-1.6267004088198587e-18,-0.025641025975346565,-5.027983025408158e-18,-1.498081956570727e-36,1.6267004088198587e-18,3.073884006554036e-36,0.012820512987673283,8.668801557929003e-34,6.284978781760197e-19,0.0025641026441007853,-1.6267004346692528e-19,-0.0025641026441007853,-0.0006410256610251963,-5.461694168319778e-38,1.6267004346692528e-19,-0.0,8.668801557929003e-34,0.0006410256610251963,0.0,0.0007770007941871881,-7.974546788316187e-35,-1.2569957563520394e-18,-0.000666000647470355,-0.0,7.974546788316187e-35,-0.0,6.284978781760197e-19,0.0,8.325008093379438e-05,13.0,3.0,10.0,0.07114551961421967,-0.009840159676969051,-0.030869130045175552,-0.012337662279605865,0.00036630037357099354,0.0016483516665175557,0.0005994006060063839,0.003846153849735856,0.0020979021210223436,0.0005827505956403911,-0.009840159676969051,0.0033050281926989555,0.0016483516665175557,0.0005994006060063839,-0.00019980019715148956,-0.00027472528745420277,-9.990009857574478e-05,0.0,0.0,-0.0,-0.030869130045175552,0.0016483516665175557,0.06933066993951797,0.0020979021210223436,4.590658125316453e-21,-0.0016483516665175557,0.0,-0.023076923564076424,-0.0020979021210223436,-9.219509021283812e-19,-0.012337662279605865,0.0005994006060063839,0.0020979021210223436,0.005509768147021532,2.6250596934209507e-21,6.776263578034403e-21,-0.00013320012658368796,-4.148779369770445e-18,-0.0004662004648707807,-0.0004370629321783781,0.00036630037357099354,-0.00019980019715148956,4.590658125316453e-21,2.6250596934209507e-21,1.6650015822960995e-05,-7.651097043817748e-22,-7.198542814839579e-22,0.0,0.0,-0.0,0.0016483516665175557,-0.00027472528745420277,-0.0016483516665175557,6.776263578034403e-21,-7.651097043817748e-22,0.00027472528745420277,0.0,0.0,0.0,-0.0,0.0005994006060063839,-9.990009857574478e-05,0.0,-0.00013320012658368796,-7.198542814839579e-22,0.0,2.2200021703611128e-05,0.0,0.0,-0.0,0.003846153849735856,0.0,-0.023076923564076424,-4.148779369770445e-18,0.0,0.0,0.0,0.011538461782038212,0.0,4.609754510641906e-19,0.0020979021210223436,0.0,-0.0020979021210223436,-0.0004662004648707807,0.0,0.0,0.0,0.0,0.0004662004648707807,-0.0,0.0005827505956403911,-0.0,-9.219509021283812e-19,-0.0004370629321783781,-0.0,-0.0,-0.0,4.609754510641906e-19,-0.0,4.856254963669926e-05,13.0,3.0,11.0,0.06558185070753098,-0.008991008624434471,-0.028221778571605682,-0.01039345283061266,0.0003330003237351775,0.0014985015150159597,0.0004995004856027663,0.003496503457427025,0.0017482517287135124,0.00044826968223787844,-0.008991008624434471,0.0030121393501758575,0.0014985015150159597,0.0004995004856027663,-0.00018163654021918774,-0.00024975024280138314,-8.325008093379438e-05,0.0,-6.776263578034403e-21,-1.3552527156068805e-20,-0.028221778571605682,0.0014985015150159597,0.06318681687116623,0.0017482517287135124,8.662441967860052e-22,-0.0014985015150159597,0.0,-0.02097902074456215,-0.0017482517287135124,-7.589415207398531e-19,-0.01039345283061266,0.0004995004856027663,0.0017482517287135124,0.004170615691691637,-1.3676004865125085e-20,-7.234864949654732e-21,-9.990009857574478e-05,-3.48375510859925e-18,-0.00034965036320500076,-0.0002988464548252523,0.0003330003237351775,-0.00018163654021918774,8.662441967860052e-22,-1.3676004865125085e-20,1.5136378351598978e-05,7.767449609716778e-22,1.9662812194079637e-21,9.660600938761233e-37,2.4990989784011715e-22,4.488571092835499e-22,0.0014985015150159597,-0.00024975024280138314,-0.0014985015150159597,-7.234864949654732e-21,7.767449609716778e-22,0.00024975024280138314,-6.68137620766725e-22,7.343542224355374e-36,3.925017444952257e-22,5.351568767275947e-22,0.0004995004856027663,-8.325008093379438e-05,0.0,-9.990009857574478e-05,1.9662812194079637e-21,-6.68137620766725e-22,1.6650015822960995e-05,-1.707784186624821e-36,1.366942922354175e-21,1.6940658945086007e-21,0.003496503457427025,0.0,-0.02097902074456215,-3.48375510859925e-18,9.660600938761233e-37,7.343542224355374e-36,-1.707784186624821e-36,0.010489510372281075,4.81482486096809e-35,3.4837551602980385e-19,0.0017482517287135124,-6.776263578034403e-21,-0.0017482517287135124,-0.00034965036320500076,2.4990989784011715e-22,3.925017444952257e-22,1.366942922354175e-21,4.81482486096809e-35,0.00034965036320500076,6.776263578034403e-21,0.00044826968223787844,-1.3552527156068805e-20,-7.589415207398531e-19,-0.0002988464548252523,4.488571092835499e-22,5.351568767275947e-22,1.6940658945086007e-21,3.4837551602980385e-19,6.776263578034403e-21,2.9884644391131587e-05,13.0,3.0,12.0,0.060826994478702545,-0.008276979438960552,-0.025993237271904945,-0.008875739760696888,0.0003052503161597997,0.0013736264081671834,0.0004226542660035193,0.0032051282469183207,0.001479289960116148,0.00035221187863498926,-0.008276979438960552,0.002766998019069433,0.0013736264081671834,0.0004226542660035193,-0.00016650016186758876,-0.00022893772984389216,-7.044238009257242e-05,-1.1689431866468669e-17,-1.2197274440461925e-18,2.371692252312041e-20,-0.025993237271904945,0.0013736264081671834,0.058044519275426865,0.001479289960116148,-3.2282474959828986e-18,-0.0013736264081671834,5.827586677109586e-19,-0.01923076994717121,-0.001479289960116148,2.371692252312041e-18,-0.008875739760696888,0.0004226542660035193,0.001479289960116148,0.0032339454628527164,-1.993841447623617e-19,-1.6830004151111433e-19,-7.684623415116221e-05,1.801136980178077e-17,-0.0002689617977011949,-0.00021132713300175965,0.0003052503161597997,-0.00016650016186758876,-3.2282474959828986e-18,-1.993841447623617e-19,1.387501379213063e-05,9.631395077004525e-20,1.4087305884432873e-20,9.612320550572994e-19,9.285420969690539e-20,5.775639185341631e-22,0.0013736264081671834,-0.00022893772984389216,-0.0013736264081671834,-1.6830004151111433e-19,9.631395077004525e-20,0.00022893772984389216,3.6341724616945513e-20,2.2505884611409087e-18,7.336929182162259e-20,-1.0598052881118198e-20,0.0004226542660035193,-7.044238009257242e-05,5.827586677109586e-19,-7.684623415116221e-05,1.4087305884432873e-20,3.6341724616945513e-20,1.2807705388695467e-05,-4.180506192357646e-19,-1.0951463374450779e-20,-9.317362419797304e-21,0.0032051282469183207,-1.1689431866468669e-17,-0.01923076994717121,1.801136980178077e-17,9.612320550572994e-19,2.2505884611409087e-18,-4.180506192357646e-19,0.009615384973585606,-1.7916454962393374e-18,-1.1379082179240052e-18,0.001479289960116148,-1.2197274440461925e-18,-0.001479289960116148,-0.0002689617977011949,9.285420969690539e-20,7.336929182162259e-20,-1.0951463374450779e-20,-1.7916454962393374e-18,0.0002689617977011949,0.0,0.00035221187863498926,2.371692252312041e-20,2.371692252312041e-18,-0.00021132713300175965,5.775639185341631e-22,-1.0598052881118198e-20,-9.317362419797304e-21,-1.1379082179240052e-18,0.0,1.9211558537790552e-05,13.0,3.0,13.0,0.056716177612543106,-0.007668156176805496,-0.024091294035315514,-0.007668156176805496,0.0002817695203702897,0.0012679628562182188,0.0003622750809881836,0.002958579920232296,0.0012679628562182188,0.0002817695203702897,-0.007668156176805496,0.0025587964337319136,0.0012679628562182188,0.0003622750809881836,-0.00015369246830232441,-0.00021132713300175965,-6.037918137735687e-05,-7.2222372914521344e-34,0.0,-4.404571325722362e-20,-0.024091294035315514,0.0012679628562182188,0.053677093237638474,0.0012679628562182188,1.1432775054412237e-20,-0.0012679628562182188,0.0,-0.017751479521393776,-0.0012679628562182188,-4.2012834183813297e-19,-0.007668156176805496,0.0003622750809881836,0.0012679628562182188,0.0025587964337319136,-4.03785954195773e-21,-4.438804243840483e-21,-6.037918137735687e-05,-2.5594936842248552e-18,-0.00021132713300175965,-0.00015369246830232441,0.0002817695203702897,-0.00015369246830232441,1.1432775054412237e-20,-4.03785954195773e-21,1.2807705388695467e-05,-1.0457506695940734e-21,3.197063922243508e-22,-5.860533306690188e-37,-2.9502314907015154e-22,1.9647240963334788e-22,0.0012679628562182188,-0.00021132713300175965,-0.0012679628562182188,-4.438804243840483e-21,-1.0457506695940734e-21,0.00021132713300175965,1.1460937262510882e-22,1.6461073239121512e-36,-1.7069050411922923e-23,2.9173295538488126e-22,0.0003622750809881836,-6.037918137735687e-05,0.0,-6.037918137735687e-05,3.197063922243508e-22,1.1460937262510882e-22,1.0063196896226145e-05,1.0602011990862904e-34,2.081002067545311e-22,7.199780051661553e-21,0.002958579920232296,-7.2222372914521344e-34,-0.017751479521393776,-2.5594936842248552e-18,-5.860533306690188e-37,1.6461073239121512e-36,1.0602011990862904e-34,0.008875739760696888,0.0,2.1329113173560656e-19,0.0012679628562182188,0.0,-0.0012679628562182188,-0.00021132713300175965,-2.9502314907015154e-22,-1.7069050411922923e-23,2.081002067545311e-22,0.0,0.00021132713300175965,0.0,0.0002817695203702897,-4.404571325722362e-20,-4.2012834183813297e-19,-0.00015369246830232441,1.9647240963334788e-22,2.9173295538488126e-22,7.199780051661553e-21,2.1329113173560656e-19,0.0,1.2807705388695467e-05,13.0,3.0,14.0,0.053126636892557144,-0.0071428571827709675,-0.022448979318141937,-0.0066915228962898254,0.00026164311566390097,0.0011773940641433,0.00031397174461744726,0.002747252816334367,0.001098901149816811,0.00022893772984389216,-0.0071428571827709675,0.0023797631729394197,0.0011773940641433,0.00031397174461744726,-0.00014271443069446832,-0.00019623234402388334,-5.232862531556748e-05,-1.0457359992551041e-18,-6.776263578034403e-20,3.049318610115481e-20,-0.022448979318141937,0.0011773940641433,0.04992150887846947,0.001098901149816811,-1.395410476421126e-21,-0.0011773940641433,-6.776263578034403e-21,-0.016483517363667488,-0.001098901149816811,-3.3881317890172014e-19,-0.0066915228962898254,0.00031397174461744726,0.001098901149816811,0.00205968483351171,-1.8998698849402145e-21,-6.788668702283284e-20,-4.8303343646693975e-05,-2.2303587252851587e-18,-0.00016906170640140772,-0.00011446886492194608,0.00026164311566390097,-0.00014271443069446832,-1.395410476421126e-21,-1.8998698849402145e-21,1.1892869224539027e-05,3.0149771548342213e-23,2.9280939079993516e-23,2.079390387503975e-35,-7.760863441573524e-23,7.866112632459387e-23,0.0011773940641433,-0.00019623234402388334,-0.0011773940641433,-6.788668702283284e-20,3.0149771548342213e-23,0.00019623234402388334,-3.6727596698662615e-23,1.0457359992551041e-18,6.932422999222197e-20,-2.9879498966971356e-22,0.00031397174461744726,-5.232862531556748e-05,-6.776263578034403e-21,-4.8303343646693975e-05,2.9280939079993516e-23,-3.6727596698662615e-23,8.050557880778797e-06,-7.760147065013889e-35,2.8175496302821553e-22,-4.235164736271502e-21,0.002747252816334367,-1.0457359992551041e-18,-0.016483517363667488,-2.2303587252851587e-18,2.079390387503975e-35,1.0457359992551041e-18,-7.760147065013889e-35,0.008241758681833744,3.851859888774472e-34,1.7156606076220339e-19,0.001098901149816811,-6.776263578034403e-20,-0.001098901149816811,-0.00016906170640140772,-7.760863441573524e-23,6.932422999222197e-20,2.8175496302821553e-22,3.851859888774472e-34,0.00016906170640140772,0.0,0.00022893772984389216,3.049318610115481e-20,-3.3881317890172014e-19,-0.00011446886492194608,7.866112632459387e-23,-2.9879498966971356e-22,-4.235164736271502e-21,1.7156606076220339e-19,0.0,8.805297511571553e-06,13.0,3.0,15.0,0.049964986741542816,-0.006684981752187014,-0.02101648412644863,-0.005890433210879564,0.00024420025874860585,0.001098901149816811,0.00027472528745420277,0.0025641026441007853,0.000961538462433964,0.0001885369565570727,-0.006684981752187014,0.002224164782091975,0.001098901149816811,0.00027472528745420277,-0.00013320012658368796,-0.00018315018678549677,-4.578754669637419e-05,-4.333342374871281e-34,0.0,-1.6940658945086007e-20,-0.02101648412644863,0.001098901149816811,0.0466575101017952,0.000961538462433964,9.033851919399722e-21,-0.001098901149816811,3.3881317890172014e-21,-0.015384615398943424,-0.000961538462433964,-2.778268066994105e-19,-0.005890433210879564,0.00027472528745420277,0.000961538462433964,0.0016826553037390113,4.7169643235473955e-21,2.9189416573729478e-21,-3.924646807718091e-05,-1.9611492794121725e-18,-0.00013736264372710139,-8.701705519342795e-05,0.00024420025874860585,-0.00013320012658368796,9.033851919399722e-21,4.7169643235473955e-21,1.1100010851805564e-05,-2.1717057488115044e-21,-8.389829814370927e-22,3.103943271122656e-36,4.276236684638525e-23,-5.737804643243544e-24,0.001098901149816811,-0.00018315018678549677,-0.001098901149816811,2.9189416573729478e-21,-2.1717057488115044e-21,0.00018315018678549677,-9.227690467620944e-22,1.8888936501895684e-36,6.309464136695076e-23,4.3836637627115224e-23,0.00027472528745420277,-4.578754669637419e-05,3.3881317890172014e-21,-3.924646807718091e-05,-8.389829814370927e-22,-9.227690467620944e-22,6.541078164445935e-06,6.193532223716929e-35,7.700847534993034e-23,2.964615315390051e-21,0.0025641026441007853,-4.333342374871281e-34,-0.015384615398943424,-1.9611492794121725e-18,3.103943271122656e-36,1.8888936501895684e-36,6.193532223716929e-35,0.007692307699471712,0.0,1.4008209323296904e-19,0.000961538462433964,0.0,-0.000961538462433964,-0.00013736264372710139,4.276236684638525e-23,6.309464136695076e-23,7.700847534993034e-23,0.0,0.00013736264372710139,-8.470329472543003e-22,0.0001885369565570727,-1.6940658945086007e-20,-2.778268066994105e-19,-8.701705519342795e-05,-5.737804643243544e-24,4.3836637627115224e-23,2.964615315390051e-21,1.4008209323296904e-19,-8.470329472543003e-22,6.215504072315525e-06,13.0,3.0,16.0,0.04715892672538757,-0.006282320711761713,-0.019755979999899864,-0.005225167144089937,0.00022893772984389216,0.001030219835229218,0.00024240465427283198,0.0024038462433964014,0.0008484162972308695,0.00015711413288954645,-0.006282320711761713,0.002087679458782077,0.001030219835229218,0.00024240465427283198,-0.00012487512140069157,-0.00017170330102089792,-4.0400776924798265e-05,2.8888949165808538e-34,3.3881317890172014e-21,-1.0164395367051604e-20,-0.019755979999899864,0.001030219835229218,0.04379444196820259,0.0008484162972308695,1.13311837042588e-20,-0.001030219835229218,0.0,-0.014423076994717121,-0.0008484162972308695,4.607859233063394e-19,-0.005225167144089937,0.00024240465427283198,0.0008484162972308695,0.0013924801023676991,-1.2202182271057264e-21,-0.0,-3.2320622267434373e-05,4.218126883604441e-18,-0.0001131221724790521,-6.733462942065671e-05,0.00022893772984389216,-0.00012487512140069157,1.13311837042588e-20,-1.2202182271057264e-21,1.0406260116724297e-05,-1.3532468834007961e-21,-1.6985143379511271e-22,2.772068262726629e-36,3.390382491221331e-23,1.3932437216390864e-22,0.001030219835229218,-0.00017170330102089792,-0.001030219835229218,-0.0,-1.3532468834007961e-21,0.00017170330102089792,-4.2214918204089766e-22,8.482987555611581e-36,-5.41214621660321e-23,2.848498039877778e-24,0.00024240465427283198,-4.0400776924798265e-05,0.0,-3.2320622267434373e-05,-1.6985143379511271e-22,-4.2214918204089766e-22,5.386770226323279e-06,-4.839923502068069e-35,-2.4092344684332906e-22,1.0587911840678754e-21,0.0024038462433964014,2.8888949165808538e-34,-0.014423076994717121,4.218126883604441e-18,2.772068262726629e-36,8.482987555611581e-36,-4.839923502068069e-35,0.0072115384973585606,-7.419520581386265e-19,-2.3174501421378176e-19,0.0008484162972308695,3.3881317890172014e-21,-0.0008484162972308695,-0.0001131221724790521,3.390382491221331e-23,-5.41214621660321e-23,-2.4092344684332906e-22,-7.419520581386265e-19,0.0001131221724790521,0.0,0.00015711413288954645,-1.0164395367051604e-20,4.607859233063394e-19,-6.733462942065671e-05,1.3932437216390864e-22,2.848498039877778e-24,1.0587911840678754e-21,-2.3174501421378176e-19,0.0,4.488975264393957e-06,13.0,4.0,3.0,0.14551281929016113,-0.02280219830572605,-0.05824175849556923,-0.07087912410497665,0.0009157509193755686,0.0032967033330351114,0.004120879340916872,0.006410256493836641,0.011538461782038212,0.009615384973585606,-0.02280219830572605,0.00796287041157484,0.0032967033330351114,0.004120879340916872,-0.0004995004856027663,-0.0005494505749084055,-0.0006868132040835917,3.903127820947816e-18,1.8292795257735094e-18,-7.258288190748654e-18,-0.05824175849556923,0.0032967033330351114,0.08369963616132736,0.011538461782038212,1.1466491388544296e-18,-0.002197802299633622,-1.1708773882430785e-19,-0.01923076994717121,-0.007692307699471712,-1.7254767547813218e-17,-0.07087912410497665,0.004120879340916872,0.011538461782038212,0.16703297197818756,-1.1507284834428114e-18,1.6107213473368656e-18,-0.004120879340916872,-2.133527432495568e-17,-0.011538461782038212,-0.057692307978868484,0.0009157509193755686,-0.0004995004856027663,1.1466491388544296e-18,-1.1507284834428114e-18,4.162504046689719e-05,-5.233052485918173e-20,-4.9754009116269635e-21,-2.2312540449006708e-19,-3.3305167206483223e-20,6.119161122192052e-19,0.0032967033330351114,-0.0005494505749084055,-0.002197802299633622,1.6107213473368656e-18,-5.233052485918173e-20,0.00036630037357099354,-2.0782136116100845e-19,-1.1816324681156754e-18,-1.832989844411116e-19,1.0338072599532196e-20,0.004120879340916872,-0.0006868132040835917,-1.1708773882430785e-19,-0.004120879340916872,-4.9754009116269635e-21,-2.0782136116100845e-19,0.0006868132040835917,7.580396353782289e-19,-1.059182440497613e-18,-1.501814954683287e-18,0.006410256493836641,3.903127820947816e-18,-0.01923076994717121,-2.133527432495568e-17,-2.2312540449006708e-19,-1.1816324681156754e-18,7.580396353782289e-19,0.006410256493836641,2.2171993157152057e-18,7.25600599943862e-18,0.011538461782038212,1.8292795257735094e-18,-0.007692307699471712,-0.011538461782038212,-3.3305167206483223e-20,-1.832989844411116e-19,-1.059182440497613e-18,2.2171993157152057e-18,0.007692307699471712,-9.295509135194265e-18,0.009615384973585606,-7.258288190748654e-18,-1.7254767547813218e-17,-0.057692307978868484,6.119161122192052e-19,1.0338072599532196e-20,-1.501814954683287e-18,7.25600599943862e-18,-9.295509135194265e-18,0.028846153989434242,13.0,4.0,4.0,0.1192857176065445,-0.017719781026244164,-0.0454120896756649,-0.0454120896756649,0.0006868132040835917,0.0024725275579839945,0.0024725275579839945,0.004807692486792803,0.006923076696693897,0.004807692486792803,-0.017719781026244164,0.006075175013393164,0.0024725275579839945,0.0024725275579839945,-0.00037462537875398993,-0.00041208791662938893,-0.00041208791662938893,9.107298248878237e-18,6.152847328855238e-18,9.215718466126788e-18,-0.0454120896756649,0.0024725275579839945,0.06392857432365417,0.006923076696693897,1.2273932369754511e-18,-0.0016483516665175557,6.0986372202309624e-18,-0.014423076994717121,-0.004615384619683027,2.960014536823031e-17,-0.0454120896756649,0.0024725275579839945,0.006923076696693897,0.06392857432365417,1.0482783388677859e-18,6.804431559433671e-18,-0.0016483516665175557,2.5892400916689972e-17,-0.004615384619683027,-0.014423076994717121,0.0006868132040835917,-0.00037462537875398993,1.2273932369754511e-18,1.0482783388677859e-18,3.121878035017289e-05,-2.850172938938779e-20,-2.796263704337623e-20,-2.6925930935428667e-19,-1.1880585758006584e-19,-2.1105185041984894e-19,0.0024725275579839945,-0.00041208791662938893,-0.0016483516665175557,6.804431559433671e-18,-2.850172938938779e-20,0.00027472528745420277,-1.5650345077443367e-19,-2.6924027903031912e-18,-1.3481118721738634e-18,-1.146008797662737e-18,0.0024725275579839945,-0.00041208791662938893,6.0986372202309624e-18,-0.0016483516665175557,-2.796263704337623e-20,-1.5650345077443367e-19,0.00027472528745420277,-9.207082700531734e-19,-1.3417001884508117e-18,-2.710505431213761e-18,0.004807692486792803,9.107298248878237e-18,-0.014423076994717121,2.5892400916689972e-17,-2.6925930935428667e-19,-2.6924027903031912e-18,-9.207082700531734e-19,0.004807692486792803,-6.3829726975802465e-18,-3.1834788268703036e-18,0.006923076696693897,6.152847328855238e-18,-0.004615384619683027,-0.004615384619683027,-1.1880585758006584e-19,-1.3481118721738634e-18,-1.3417001884508117e-18,-6.3829726975802465e-18,0.003076923079788685,-7.589415207398531e-18,0.004807692486792803,9.215718466126788e-18,2.960014536823031e-17,-0.014423076994717121,-2.1105185041984894e-19,-1.146008797662737e-18,-2.710505431213761e-18,-3.1834788268703036e-18,-7.589415207398531e-18,0.004807692486792803,13.0,4.0,5.0,0.10120879113674164,-0.014505494385957718,-0.037252746522426605,-0.03164835274219513,0.0005494505749084055,0.0019780220463871956,0.0016483516665175557,0.003846153849735856,0.004615384619683027,0.002747252816334367,-0.014505494385957718,0.0049150846898555756,0.0019780220463871956,0.0016483516665175557,-0.00029970030300319195,-0.00032967032166197896,-0.00027472528745420277,-1.3552527156068805e-20,2.846030702774449e-19,-9.16119589002612e-19,-0.037252746522426605,0.0019780220463871956,0.05175824090838432,0.004615384619683027,4.249645889987435e-20,-0.0013186812866479158,7.182898846322994e-19,-0.011538461782038212,-0.003076923079788685,9.33930917580956e-18,-0.03164835274219513,0.0016483516665175557,0.004615384619683027,0.032307691872119904,-8.131516293641283e-20,4.743384504624082e-19,-0.0008241758332587779,1.2543737385668535e-17,-0.0023076923098415136,-0.005494505632668734,0.0005494505749084055,-0.00029970030300319195,4.249645889987435e-20,-8.131516293641283e-20,2.4975024643936194e-05,-1.5246593050577406e-20,-5.082197683525802e-21,4.741348864835377e-20,-4.129478195851074e-20,3.6165218491393475e-20,0.0019780220463871956,-0.00032967032166197896,-0.0013186812866479158,4.743384504624082e-19,-1.5246593050577406e-20,0.00021978022414259613,4.8915713264235426e-21,5.421010862427522e-20,-6.776263578034403e-20,-9.011923393672684e-20,0.0016483516665175557,-0.00027472528745420277,7.182898846322994e-19,-0.0008241758332587779,-5.082197683525802e-21,4.8915713264235426e-21,0.00013736264372710139,-3.375165474421491e-19,2.007225229934725e-19,2.432975737450622e-19,0.003846153849735856,-1.3552527156068805e-20,-0.011538461782038212,1.2543737385668535e-17,4.741348864835377e-20,5.421010862427522e-20,-3.375165474421491e-19,0.003846153849735856,2.168404344971009e-19,-2.6878681861851755e-18,0.004615384619683027,2.846030702774449e-19,-0.003076923079788685,-0.0023076923098415136,-4.129478195851074e-20,-6.776263578034403e-20,2.007225229934725e-19,2.168404344971009e-19,0.0015384615398943424,-4.704436253117625e-20,0.002747252816334367,-9.16119589002612e-19,9.33930917580956e-18,-0.005494505632668734,3.6165218491393475e-20,-9.011923393672684e-20,2.432975737450622e-19,-2.6878681861851755e-18,-4.704436253117625e-20,0.0013736264081671834,13.0,4.0,6.0,0.08794479072093964,-0.012284144759178162,-0.031593408435583115,-0.023341836407780647,0.0004578754596877843,0.0016483516665175557,0.0011773940641433,0.0032051282469183207,0.0032967033330351114,0.0017170329811051488,-0.012284144759178162,0.0041286093182861805,0.0016483516665175557,0.0011773940641433,-0.00024975024280138314,-0.00027472528745420277,-0.00019623234402388334,2.7627834527222656e-18,1.794393803824545e-18,2.7176212524332485e-18,-0.031593408435583115,0.0016483516665175557,0.043498169630765915,0.0032967033330351114,8.795310123651306e-19,-0.001098901149816811,1.0829998654651586e-18,-0.009615384973585606,-0.002197802299633622,1.0579907213891079e-17,-0.023341836407780647,0.0011773940641433,0.0032967033330351114,0.018780415877699852,9.622294280808852e-19,2.0305209882790853e-18,-0.00047095760237425566,1.2019245320305812e-17,-0.0013186812866479158,-0.002575549529865384,0.0004578754596877843,-0.00024975024280138314,8.795310123651306e-19,9.622294280808852e-19,2.0812520233448595e-05,-2.541098841762901e-20,-4.0657581468206416e-20,-1.209107608203748e-19,-1.19983336257338e-19,-9.890501002833665e-20,0.0016483516665175557,-0.00027472528745420277,-0.001098901149816811,2.0305209882790853e-18,-2.541098841762901e-20,0.00018315018678549677,-7.792703114739563e-20,-5.195274307237567e-19,-7.626202643425149e-20,-2.802263801082444e-19,0.0011773940641433,-0.00019623234402388334,1.0829998654651586e-18,-0.00047095760237425566,-4.0657581468206416e-20,-7.792703114739563e-20,7.849293615436181e-05,-1.5770213887959958e-19,-4.8801013040077584e-20,-4.231475252245574e-19,0.0032051282469183207,2.7627834527222656e-18,-0.009615384973585606,1.2019245320305812e-17,-1.209107608203748e-19,-5.195274307237567e-19,-1.5770213887959958e-19,0.0032051282469183207,-8.034502483449533e-19,-1.877019634441548e-18,0.0032967033330351114,1.794393803824545e-18,-0.002197802299633622,-0.0013186812866479158,-1.19983336257338e-19,-7.626202643425149e-20,-4.8801013040077584e-20,-8.034502483449533e-19,0.0008791208965703845,-1.1913621800708303e-18,0.0017170329811051488,2.7176212524332485e-18,1.0579907213891079e-17,-0.002575549529865384,-9.890501002833665e-20,-2.802263801082444e-19,-4.231475252245574e-19,-1.877019634441548e-18,-1.1913621800708303e-18,0.000515109917614609,13.0,4.0,7.0,0.07777995616197586,-0.010655416175723076,-0.027433281764388084,-0.017935635522007942,0.0003924646880477667,0.001412872807122767,0.000883045548107475,0.002747252816334367,0.0024725275579839945,0.0011446886928752065,-0.010655416175723076,0.00355983292683959,0.001412872807122767,0.000883045548107475,-0.00021407163876574486,-0.00023547880118712783,-0.0001471742580179125,2.4104729609703645e-18,1.5618247367749013e-18,8.98831204007524e-19,-0.027433281764388084,0.001412872807122767,0.03751962259411812,0.0024725275579839945,8.09699701270368e-19,-0.0009419152047485113,1.0470890599420877e-18,-0.008241758681833744,-0.0016483516665175557,1.6267004088198587e-18,-0.017935635522007942,0.000883045548107475,0.0024725275579839945,0.011930925771594048,4.472333961502706e-19,1.4146432496124222e-18,-0.000294348516035825,4.0687737371412803e-19,-0.0008241758332587779,-0.0013736264081671834,0.0003924646880477667,-0.00021407163876574486,8.09699701270368e-19,4.472333961502706e-19,1.783930383680854e-05,-1.8634724839594607e-20,-5.082197683525802e-21,-1.5416565741759982e-19,-6.604165420418478e-20,-4.699248279713269e-20,0.001412872807122767,-0.00023547880118712783,-0.0009419152047485113,1.4146432496124222e-18,-1.8634724839594607e-20,0.00015698587230872363,-4.743384504624082e-20,-1.5250316655803602e-19,-1.629713569297448e-19,-1.3630342879725024e-19,0.000883045548107475,-0.0001471742580179125,1.0470890599420877e-18,-0.000294348516035825,-5.082197683525802e-21,-4.743384504624082e-20,4.9058086005970836e-05,-7.625158327901801e-20,-1.3725285119470212e-19,-1.8937886534095292e-20,0.002747252816334367,2.4104729609703645e-18,-0.008241758681833744,4.0687737371412803e-19,-1.5416565741759982e-19,-1.5250316655803602e-19,-7.625158327901801e-20,0.002747252816334367,1.2043643219268217e-18,-3.3720844851336726e-19,0.0024725275579839945,1.5618247367749013e-18,-0.0016483516665175557,-0.0008241758332587779,-6.604165420418478e-20,-1.629713569297448e-19,-1.3725285119470212e-19,1.2043643219268217e-18,0.0005494505749084055,1.093590801684952e-19,0.0011446886928752065,8.98831204007524e-19,1.6267004088198587e-18,-0.0013736264081671834,-4.699248279713269e-20,-1.3630342879725024e-19,-1.8937886534095292e-20,-3.3720844851336726e-19,1.093590801684952e-19,0.00022893772984389216,13.0,4.0,8.0,0.06973443180322647,-0.009409341029822826,-0.024244505912065506,-0.014217033050954342,0.00034340660204179585,0.0012362637789919972,0.0006868132040835917,0.0024038462433964014,0.001923076924867928,0.0008012820617295802,-0.009409341029822826,0.0031291625928133726,0.0012362637789919972,0.0006868132040835917,-0.00018731268937699497,-0.00020604395831469446,-0.00011446886492194608,-2.6846495747229434e-19,-2.828758977713886e-20,-0.0,-0.024244505912065506,0.0012362637789919972,0.032989926636219025,0.001923076924867928,-4.186402116044074e-20,-0.0008241758332587779,-3.9917448690427524e-20,-0.0072115384973585606,-0.0012820513220503926,-0.0,-0.014217033050954342,0.0006868132040835917,0.001923076924867928,0.008068419992923737,4.4294184903861336e-21,5.275878712001469e-21,-0.00019623234402388334,-3.8621844744273666e-20,-0.0005494505749084055,-0.0008012820617295802,0.00034340660204179585,-0.00018731268937699497,-4.186402116044074e-20,4.4294184903861336e-21,1.5609390175086446e-05,5.3219310232530785e-21,-1.174643422826378e-21,1.800009636400744e-21,1.745628165680351e-21,-0.0,0.0012362637789919972,-0.00020604395831469446,-0.0008241758332587779,5.275878712001469e-21,5.3219310232530785e-21,0.00013736264372710139,2.541098841762901e-21,1.568087450439511e-19,-8.034761526690581e-21,-0.0,0.0006868132040835917,-0.00011446886492194608,-3.9917448690427524e-20,-0.00019623234402388334,-1.174643422826378e-21,2.541098841762901e-21,3.270538945798762e-05,2.8576283081061968e-21,5.083438858341415e-21,-0.0,0.0024038462433964014,-2.6846495747229434e-19,-0.0072115384973585606,-3.8621844744273666e-20,1.800009636400744e-21,1.568087450439511e-19,2.8576283081061968e-21,0.0024038462433964014,1.4317383263757657e-20,-0.0,0.001923076924867928,-2.828758977713886e-20,-0.0012820513220503926,-0.0005494505749084055,1.745628165680351e-21,-8.034761526690581e-21,5.083438858341415e-21,1.4317383263757657e-20,0.00036630037357099354,-0.0,0.0008012820617295802,-0.0,-0.0,-0.0008012820617295802,-0.0,-0.0,-0.0,-0.0,-0.0,0.00011446886492194608,13.0,4.0,9.0,0.0632045716047287,-0.008424908854067326,-0.0217216107994318,-0.011548451147973537,0.0003052503161597997,0.001098901149816811,0.0005494505749084055,0.0021367522422224283,0.0015384615398943424,0.0005827505956403911,-0.008424908854067326,0.002791652688756585,0.001098901149816811,0.0005494505749084055,-0.00016650016186758876,-0.00018315018678549677,-9.157509339274839e-05,-2.2879216037272645e-18,-2.3114240796765805e-18,-1.8752986851771314e-18,-0.0217216107994318,0.001098901149816811,0.029438339173793793,0.0015384615398943424,-8.284051500523359e-19,-0.0007326007471419871,-2.2668930181949414e-18,-0.006410256493836641,-0.001025640987791121,-5.612644622118295e-18,-0.011548451147973537,0.0005494505749084055,0.0015384615398943424,0.005717615596950054,-1.3153053720921275e-18,-3.1187271285196526e-18,-0.00013736264372710139,-1.2347073540672828e-17,-0.0003846153849735856,-0.0004995004856027663,0.0003052503161597997,-0.00016650016186758876,-8.284051500523359e-19,-1.3153053720921275e-18,1.387501379213063e-05,4.4458847967928374e-20,3.7170824547013605e-20,3.0808719961926847e-20,1.0351729803809844e-19,1.0562989793551326e-19,0.001098901149816811,-0.00018315018678549677,-0.0007326007471419871,-3.1187271285196526e-18,4.4458847967928374e-20,0.00012210012937430292,9.656175598699024e-20,2.1241888270436646e-19,3.247645760226668e-19,2.3238576899578065e-19,0.0005494505749084055,-9.157509339274839e-05,-2.2668930181949414e-18,-0.00013736264372710139,3.7170824547013605e-20,9.656175598699024e-20,2.2893773348187096e-05,3.660075945694076e-19,1.2111692266335657e-19,5.554769844886468e-20,0.0021367522422224283,-2.2879216037272645e-18,-0.006410256493836641,-1.2347073540672828e-17,3.0808719961926847e-20,2.1241888270436646e-19,3.660075945694076e-19,0.0021367522422224283,7.756719207129858e-19,1.0166877942865029e-18,0.0015384615398943424,-2.3114240796765805e-18,-0.001025640987791121,-0.0003846153849735856,1.0351729803809844e-19,3.247645760226668e-19,1.2111692266335657e-19,7.756719207129858e-19,0.00025641024694778025,2.661873415050237e-19,0.0005827505956403911,-1.8752986851771314e-18,-5.612644622118295e-18,-0.0004995004856027663,1.0562989793551326e-19,2.3238576899578065e-19,5.554769844886468e-20,1.0166877942865029e-18,2.661873415050237e-19,6.243756070034578e-05,13.0,4.0,10.0,0.05779720097780228,-0.00762737262994051,-0.019675325602293015,-0.009567932225763798,0.00027472528745420277,0.0009890110231935978,0.0004495504545047879,0.001923076924867928,0.0012587412493303418,0.0004370629321783781,-0.00762737262994051,0.0025199800729751587,0.0009890110231935978,0.0004495504545047879,-0.00014985015150159597,-0.00016483516083098948,-7.492507575079799e-05,0.0,0.0,-0.0,-0.019675325602293015,0.0009890110231935978,0.026578420773148537,0.0012587412493303418,9.68479944062634e-21,-0.0006593406433239579,0.0,-0.005769230891019106,-0.0008391608134843409,-0.0,-0.009567932225763798,0.0004495504545047879,0.0012587412493303418,0.004202255979180336,-2.601229379299251e-21,0.0,-9.990009857574478e-05,0.0,-0.0002797202905640006,-0.0003277971991337836,0.00027472528745420277,-0.00014985015150159597,9.68479944062634e-21,-2.601229379299251e-21,1.2487512321968097e-05,-1.6141332064463247e-21,-4.77748502537658e-22,0.0,0.0,-0.0,0.0009890110231935978,-0.00016483516083098948,-0.0006593406433239579,0.0,-1.6141332064463247e-21,0.00010989011207129806,8.470329472543003e-22,0.0,0.0,-0.0,0.0004495504545047879,-7.492507575079799e-05,0.0,-9.990009857574478e-05,-4.77748502537658e-22,8.470329472543003e-22,1.6650015822960995e-05,0.0,0.0,-0.0,0.001923076924867928,0.0,-0.005769230891019106,0.0,0.0,0.0,0.0,0.001923076924867928,0.0,-0.0,0.0012587412493303418,0.0,-0.0008391608134843409,-0.0002797202905640006,0.0,0.0,0.0,0.0,0.00018648018885869533,-0.0,0.0004370629321783781,-0.0,-0.0,-0.0003277971991337836,-0.0,-0.0,-0.0,-0.0,-0.0,3.6421912227524444e-05,13.0,4.0,11.0,0.053244832903146744,-0.006968032103031874,-0.017982017248868942,-0.008057327009737492,0.00024975024280138314,0.0008991009090095758,0.00037462537875398993,0.0017482517287135124,0.0010489510605111718,0.00033620226895436645,-0.006968032103031874,0.0022965669631958008,0.0008991009090095758,0.00037462537875398993,-0.0001362274051643908,-0.00014985015150159597,-6.243756070034578e-05,0.0,-1.6940658945086007e-20,-1.6940658945086007e-20,-0.017982017248868942,0.0008991009090095758,0.02422577515244484,0.0010489510605111718,1.394797280324457e-20,-0.0005994006060063839,-1.3552527156068805e-20,-0.005244755186140537,-0.0006993007264100015,-5.421010862427522e-20,-0.008057327009737492,0.00037462537875398993,0.0010489510605111718,0.0031804093159735203,9.747175442330409e-22,5.5171307036346045e-21,-7.492507575079799e-05,-0.0,-0.00020979020337108523,-0.00022413484111893922,0.00024975024280138314,-0.0001362274051643908,1.394797280324457e-20,9.747175442330409e-22,1.1352283763699234e-05,-2.163034690715511e-21,5.629591623050675e-22,0.0,-2.725406890019996e-22,-4.380122092791442e-23,0.0008991009090095758,-0.00014985015150159597,-0.0005994006060063839,5.5171307036346045e-21,-2.163034690715511e-21,9.990009857574478e-05,-5.59423803272229e-22,-0.0,-2.1264365429359515e-22,1.6956061864468118e-23,0.00037462537875398993,-6.243756070034578e-05,-1.3552527156068805e-20,-7.492507575079799e-05,5.629591623050675e-22,-5.59423803272229e-22,1.2487512321968097e-05,0.0,4.116195323112349e-21,4.235164736271502e-21,0.0017482517287135124,0.0,-0.005244755186140537,-0.0,0.0,-0.0,0.0,0.0017482517287135124,0.0,0.0,0.0010489510605111718,-1.6940658945086007e-20,-0.0006993007264100015,-0.00020979020337108523,-2.725406890019996e-22,-2.1264365429359515e-22,4.116195323112349e-21,0.0,0.0001398601452820003,1.3552527156068805e-20,0.00033620226895436645,-1.6940658945086007e-20,-5.421010862427522e-20,-0.00022413484111893922,-4.380122092791442e-23,1.6956061864468118e-23,4.235164736271502e-21,0.0,1.3552527156068805e-20,2.241348374809604e-05,13.0,4.0,12.0,0.049358975142240524,-0.006413778755813837,-0.0165574811398983,-0.006878698244690895,0.00022893772984389216,0.0008241758332587779,0.0003169907140545547,0.0016025641234591603,0.000887573987711221,0.00026415890897624195,-0.006413778755813837,0.0021095890551805496,0.0008241758332587779,0.0003169907140545547,-0.00012487512140069157,-0.00013736264372710139,-5.283178325043991e-05,0.0,-2.0328790734103208e-20,-1.6940658945086007e-20,-0.0165574811398983,0.0008241758332587779,0.022256270051002502,0.000887573987711221,-3.0654235096803332e-21,-0.0005494505749084055,-1.3552527156068805e-20,-0.004807692486792803,-0.000591715972404927,-4.743384504624082e-20,-0.006878698244690895,0.0003169907140545547,0.000887573987711221,0.0024658034089952707,4.225905806407163e-21,4.2774870607277366e-21,-5.763467197539285e-05,-0.0,-0.00016137708735186607,-0.00015849535702727735,0.00022893772984389216,-0.00012487512140069157,-3.0654235096803332e-21,4.225905806407163e-21,1.0406260116724297e-05,2.6704370426602786e-22,1.5291686207942463e-22,0.0,-3.499946120170029e-22,-4.093627186439003e-22,0.0008241758332587779,-0.00013736264372710139,-0.0005494505749084055,4.2774870607277366e-21,2.6704370426602786e-22,9.157509339274839e-05,-5.298670910415447e-22,-0.0,-1.1608396191624587e-22,-2.9246418526781045e-22,0.0003169907140545547,-5.283178325043991e-05,-1.3552527156068805e-20,-5.763467197539285e-05,1.5291686207942463e-22,-5.298670910415447e-22,9.605779268895276e-06,0.0,3.829406796420099e-21,4.235164736271502e-21,0.0016025641234591603,0.0,-0.004807692486792803,-0.0,0.0,-0.0,0.0,0.0016025641234591603,0.0,0.0,0.000887573987711221,-2.0328790734103208e-20,-0.000591715972404927,-0.00016137708735186607,-3.499946120170029e-22,-1.1608396191624587e-22,3.829406796420099e-21,0.0,0.00010758472490124404,1.0164395367051604e-20,0.00026415890897624195,-1.6940658945086007e-20,-4.743384504624082e-20,-0.00015849535702727735,-4.093627186439003e-22,-2.9246418526781045e-22,4.235164736271502e-21,0.0,1.0164395367051604e-20,1.4408667993848212e-05,13.0,4.0,13.0,0.04600289836525917,-0.005941311363130808,-0.015342350117862225,-0.005941311363130808,0.00021132713300175965,0.0007607776788063347,0.00027170631801709533,0.001479289960116148,0.0007607776788063347,0.00021132713300175965,-0.005941311363130808,0.0019507964607328176,0.0007607776788063347,0.00027170631801709533,-0.0001152693439507857,-0.0001267962798010558,-4.528438512352295e-05,0.0,0.0,3.3881317890172014e-21,-0.015342350117862225,0.0007607776788063347,0.0205832626670599,0.0007607776788063347,-7.144682068047279e-21,-0.0005071851192042232,0.0,-0.004437869880348444,-0.0005071851192042232,0.0,-0.005941311363130808,0.00027170631801709533,0.0007607776788063347,0.0019507964607328176,2.2343965880582907e-21,6.7681848345713726e-21,-4.528438512352295e-05,-0.0,-0.0001267962798010558,-0.0001152693439507857,0.00021132713300175965,-0.0001152693439507857,-7.144682068047279e-21,2.2343965880582907e-21,9.605779268895276e-06,6.156090770276131e-22,-8.561882271065802e-23,-0.0,1.0482674798250831e-23,-3.4311924746589486e-23,0.0007607776788063347,-0.0001267962798010558,-0.0005071851192042232,6.7681848345713726e-21,6.156090770276131e-22,8.453085320070386e-05,-1.550952793810871e-22,0.0,-4.921788258433912e-22,-6.065462390516506e-22,0.00027170631801709533,-4.528438512352295e-05,0.0,-4.528438512352295e-05,-8.561882271065802e-23,-1.550952793810871e-22,7.547397672169609e-06,0.0,-5.213197768225878e-22,-1.2705494208814505e-21,0.001479289960116148,0.0,-0.004437869880348444,-0.0,-0.0,0.0,0.0,0.001479289960116148,0.0,0.0,0.0007607776788063347,0.0,-0.0005071851192042232,-0.0001267962798010558,1.0482674798250831e-23,-4.921788258433912e-22,-5.213197768225878e-22,0.0,8.453085320070386e-05,8.470329472543003e-22,0.00021132713300175965,3.3881317890172014e-21,0.0,-0.0001152693439507857,-3.4311924746589486e-23,-6.065462390516506e-22,-1.2705494208814505e-21,0.0,8.470329472543003e-22,9.605779268895276e-06,13.0,4.0,14.0,0.04307496175169945,-0.005533752031624317,-0.014293563552200794,-0.00518347742035985,0.00019623234402388334,0.0007064364035613835,0.00023547880118712783,0.0013736264081671834,0.0006593406433239579,0.00017170330102089792,-0.005533752031624317,0.0018142571207135916,0.0007064364035613835,0.00023547880118712783,-0.00010703581938287243,-0.00011773940059356391,-3.924646807718091e-05,8.745977071918643e-19,-1.0842021724855044e-19,-1.1858461261560205e-20,-0.014293563552200794,0.0007064364035613835,0.01914442703127861,0.0006593406433239579,-3.566089875038211e-19,-0.00047095760237425566,2.422514229147299e-19,-0.004120879340916872,-0.00043956044828519225,9.486769009248164e-20,-0.00518347742035985,0.00023547880118712783,0.0006593406433239579,0.001570122898556292,-1.2513926933765467e-19,1.9610848368725758e-19,-3.6227509554009885e-05,1.8314108341699347e-19,-0.00010143702093046159,-8.585165051044896e-05,0.00019623234402388334,-0.00010703581938287243,-3.566089875038211e-19,-1.2513926933765467e-19,8.91965191840427e-06,2.6715269682279005e-20,4.501044334276913e-21,1.9805605459011954e-20,1.4855483639269008e-20,4.76218460742505e-21,0.0007064364035613835,-0.00011773940059356391,-0.00047095760237425566,1.9610848368725758e-19,2.6715269682279005e-20,7.849293615436181e-05,-1.213095709277569e-21,-4.626470279857954e-19,-4.382911149018263e-20,-1.3081089944669699e-20,0.00023547880118712783,-3.924646807718091e-05,2.422514229147299e-19,-3.6227509554009885e-05,4.501044334276913e-21,-1.213095709277569e-21,6.037917955836747e-06,-7.775985665312896e-20,-7.161795174763036e-21,-5.929230630780102e-21,0.0013736264081671834,8.745977071918643e-19,-0.004120879340916872,1.8314108341699347e-19,1.9805605459011954e-20,-4.626470279857954e-19,-7.775985665312896e-20,0.0013736264081671834,-4.5088338876429763e-20,1.9062895819754502e-20,0.0006593406433239579,-1.0842021724855044e-19,-0.00043956044828519225,-0.00010143702093046159,1.4855483639269008e-20,-4.382911149018263e-20,-7.161795174763036e-21,-4.5088338876429763e-20,6.762468547094613e-05,-1.5246593050577406e-20,0.00017170330102089792,-1.1858461261560205e-20,9.486769009248164e-20,-8.585165051044896e-05,4.76218460742505e-21,-1.3081089944669699e-20,-5.929230630780102e-21,1.9062895819754502e-20,-1.5246593050577406e-20,6.603972906304989e-06,13.0,4.0,15.0,0.04049800708889961,-0.005178571213036776,-0.013379121199250221,-0.004562055692076683,0.00018315018678549677,0.0006593406433239579,0.00020604395831469446,0.0012820513220503926,0.0005769230774603784,0.00014140272105578333,-0.005178571213036776,0.0016955960309132934,0.0006593406433239579,0.00020604395831469446,-9.990009857574478e-05,-0.00010989011207129806,-3.4340660931775346e-05,0.0,1.5246593050577406e-20,1.5246593050577406e-20,-0.013379121199250221,0.0006593406433239579,0.017893772572278976,0.0005769230774603784,3.995257720927332e-21,-0.00043956044828519225,1.5246593050577406e-20,-0.003846153849735856,-0.0003846153849735856,3.3881317890172014e-20,-0.004562055692076683,0.00020604395831469446,0.0005769230774603784,0.001282595912925899,1.0586595137164632e-21,-0.0,-2.943485014839098e-05,-0.0,-8.241758041549474e-05,-6.526279321406037e-05,0.00018315018678549677,-9.990009857574478e-05,3.995257720927332e-21,1.0586595137164632e-21,8.325007911480498e-06,3.9781664751249796e-22,2.807729889733964e-22,-0.0,-3.160588887252261e-23,-1.2370978562370876e-22,0.0006593406433239579,-0.00010989011207129806,-0.00043956044828519225,-0.0,3.9781664751249796e-22,7.326007471419871e-05,-8.08264516906733e-24,0.0,2.1216435502935735e-22,-1.237999177152957e-22,0.00020604395831469446,-3.4340660931775346e-05,1.5246593050577406e-20,-2.943485014839098e-05,2.807729889733964e-22,-8.08264516906733e-24,4.905808509647613e-06,0.0,-2.1286030957695994e-21,-1.9058241313221758e-21,0.0012820513220503926,0.0,-0.003846153849735856,-0.0,-0.0,0.0,0.0,0.0012820513220503926,0.0,0.0,0.0005769230774603784,1.5246593050577406e-20,-0.0003846153849735856,-8.241758041549474e-05,-3.160588887252261e-23,2.1216435502935735e-22,-2.1286030957695994e-21,0.0,5.494505603564903e-05,-5.082197683525802e-21,0.00014140272105578333,1.5246593050577406e-20,3.3881317890172014e-20,-6.526279321406037e-05,-1.2370978562370876e-22,-1.237999177152957e-22,-1.9058241313221758e-21,0.0,-5.082197683525802e-21,4.6616278268629685e-06,13.0,4.0,16.0,0.03821239992976189,-0.004866273608058691,-0.012574741616845131,-0.004046137910336256,0.00017170330102089792,0.0006181318894959986,0.0001818034943426028,0.0012019231216982007,0.0005090498016215861,0.00011783559602918103,-0.004866273608058691,0.001591515145264566,0.0006181318894959986,0.0001818034943426028,-9.365634468849748e-05,-0.00010302197915734723,-3.0300581784103997e-05,0.0,3.3881317890172014e-21,1.6940658945086007e-21,-0.012574741616845131,0.0006181318894959986,0.016796622425317764,0.0005090498016215861,-4.496171420558505e-22,-0.00041208791662938893,5.082197683525802e-21,-0.0036057692486792803,-0.0003393665247131139,1.3552527156068805e-20,-0.004046137910336256,0.0001818034943426028,0.0005090498016215861,0.0010613283375278115,-2.2521436107757095e-21,-3.682222365657862e-21,-2.424046579108108e-05,-0.0,-6.787330494262278e-05,-5.050097024650313e-05,0.00017170330102089792,-9.365634468849748e-05,-4.496171420558505e-22,-2.2521436107757095e-21,7.804695087543223e-06,2.6687358798953876e-22,-5.247102394620771e-25,0.0,7.23255382701615e-23,1.1781590918910222e-22,0.0006181318894959986,-0.00010302197915734723,-0.00041208791662938893,-3.682222365657862e-21,2.6687358798953876e-22,6.868132186355069e-05,9.05206402926331e-23,0.0,6.607592974351097e-23,1.8858465886180264e-22,0.0001818034943426028,-3.0300581784103997e-05,5.082197683525802e-21,-2.424046579108108e-05,-5.247102394620771e-25,9.05206402926331e-23,4.040077783429297e-06,0.0,-4.900222694551342e-22,-4.235164736271502e-22,0.0012019231216982007,0.0,-0.0036057692486792803,-0.0,0.0,0.0,0.0,0.0012019231216982007,0.0,0.0,0.0005090498016215861,3.3881317890172014e-21,-0.0003393665247131139,-6.787330494262278e-05,7.23255382701615e-23,6.607592974351097e-23,-4.900222694551342e-22,0.0,4.5248867536429316e-05,-1.2705494208814505e-21,0.00011783559602918103,1.6940658945086007e-21,1.3552527156068805e-20,-5.050097024650313e-05,1.1781590918910222e-22,1.8858465886180264e-22,-4.235164736271502e-22,0.0,-1.2705494208814505e-21,3.3667313346086303e-06,13.0,5.0,3.0,0.12380952388048172,-0.018681319430470467,-0.0406593419611454,-0.05824175849556923,0.0007326007471419871,0.002197802299633622,0.0032967033330351114,0.0036630036775022745,0.007692307699471712,0.007692307699471712,-0.018681319430470467,0.006443556398153305,0.002197802299633622,0.0032967033330351114,-0.0003996003943029791,-0.00036630037357099354,-0.0005494505749084055,3.461064717216308e-18,4.815206012272647e-19,-4.760979463433697e-18,-0.0406593419611454,0.002197802299633622,0.042307693511247635,0.007692307699471712,4.968802595278205e-19,-0.001098901149816811,-4.678355700768226e-19,-0.007326007355004549,-0.003846153849735856,-4.609641641847323e-17,-0.05824175849556923,0.0032967033330351114,0.007692307699471712,0.13516484200954437,-2.3311805648243736e-19,1.5239310759259642e-18,-0.0032967033330351114,-1.5199509930110888e-17,-0.007692307699471712,-0.04615384712815285,0.0007326007471419871,-0.0003996003943029791,4.968802595278205e-19,-2.3311805648243736e-19,3.330003164592199e-05,-1.1123502401577603e-20,-3.388536089697458e-21,-9.692092685624871e-20,-3.7397077831592465e-20,1.667821263129883e-19,0.002197802299633622,-0.00036630037357099354,-0.001098901149816811,1.5239310759259642e-18,-1.1123502401577603e-20,0.00018315018678549677,-1.13198220877397e-20,-9.593025528809429e-19,-4.270088560227432e-19,-2.8779076586428286e-19,0.0032967033330351114,-0.0005494505749084055,-4.678355700768226e-19,-0.0032967033330351114,-3.388536089697458e-21,-1.13198220877397e-20,0.0005494505749084055,-1.2825604226490186e-20,6.116347157145723e-19,4.224129733309738e-18,0.0036630036775022745,3.461064717216308e-18,-0.007326007355004549,-1.5199509930110888e-17,-9.692092685624871e-20,-9.593025528809429e-19,-1.2825604226490186e-20,0.0018315018387511373,-2.1619467527239605e-18,9.840311793317616e-18,0.007692307699471712,4.815206012272647e-19,-0.003846153849735856,-0.007692307699471712,-3.7397077831592465e-20,-4.270088560227432e-19,6.116347157145723e-19,-2.1619467527239605e-18,0.003846153849735856,8.608498413341411e-18,0.007692307699471712,-4.760979463433697e-18,-4.609641641847323e-17,-0.04615384712815285,1.667821263129883e-19,-2.8779076586428286e-19,4.224129733309738e-18,9.840311793317616e-18,8.608498413341411e-18,0.023076923564076424,13.0,5.0,4.0,0.10120879113674164,-0.014505494385957718,-0.03164835274219513,-0.037252746522426605,0.0005494505749084055,0.0016483516665175557,0.0019780220463871956,0.002747252816334367,0.004615384619683027,0.003846153849735856,-0.014505494385957718,0.0049150846898555756,0.0016483516665175557,0.0019780220463871956,-0.00029970030300319195,-0.00027472528745420277,-0.00032967032166197896,-1.051298375284217e-18,4.669841427325641e-19,5.390353997962658e-19,-0.03164835274219513,0.0016483516665175557,0.032307691872119904,0.004615384619683027,-2.075443849027739e-19,-0.0008241758332587779,1.5785472268334264e-18,-0.005494505632668734,-0.0023076923098415136,1.814800680408473e-17,-0.037252746522426605,0.0019780220463871956,0.004615384619683027,0.05175824090838432,8.799986796039527e-20,2.4470587458732787e-18,-0.0013186812866479158,1.4424843705926402e-17,-0.003076923079788685,-0.011538461782038212,0.0005494505749084055,-0.00029970030300319195,-2.075443849027739e-19,8.799986796039527e-20,2.4975024643936194e-05,-6.036225312102843e-21,-1.0515530305906097e-20,7.429101013090248e-20,-2.6539493802111487e-20,1.5866227261974917e-20,0.0016483516665175557,-0.00027472528745420277,-0.0008241758332587779,2.4470587458732787e-18,-6.036225312102843e-21,0.00013736264372710139,-7.728649608524695e-20,2.4781765050356993e-19,6.405132840341148e-20,-6.50005401283011e-19,0.0019780220463871956,-0.00032967032166197896,1.5785472268334264e-18,-0.0013186812866479158,-1.0515530305906097e-20,-7.728649608524695e-20,0.00021978022414259613,-1.9754384884519022e-19,-1.6553526786183826e-19,3.104132508888132e-19,0.002747252816334367,-1.051298375284217e-18,-0.005494505632668734,1.4424843705926402e-17,7.429101013090248e-20,2.4781765050356993e-19,-1.9754384884519022e-19,0.0013736264081671834,-1.0717463834241044e-18,-3.4015097810640215e-18,0.004615384619683027,4.669841427325641e-19,-0.0023076923098415136,-0.003076923079788685,-2.6539493802111487e-20,6.405132840341148e-20,-1.6553526786183826e-19,-1.0717463834241044e-18,0.0015384615398943424,-8.934339022094038e-20,0.003846153849735856,5.390353997962658e-19,1.814800680408473e-17,-0.011538461782038212,1.5866227261974917e-20,-6.50005401283011e-19,3.104132508888132e-19,-3.4015097810640215e-18,-8.934339022094038e-20,0.003846153849735856,13.0,5.0,5.0,0.08571428805589676,-0.011868132278323174,-0.025934066623449326,-0.025934066623449326,0.00043956044828519225,0.0013186812866479158,0.0013186812866479158,0.002197802299633622,0.003076923079788685,0.002197802299633622,-0.011868132278323174,0.003976023755967617,0.0013186812866479158,0.0013186812866479158,-0.00023976023658178747,-0.00021978022414259613,-0.00021978022414259613,-7.060571758423472e-19,6.17800067636145e-20,4.229023954199061e-19,-0.025934066623449326,0.0013186812866479158,0.026153845712542534,0.003076923079788685,6.937336322813791e-20,-0.0006593406433239579,1.6792910270517258e-19,-0.004395604599267244,-0.0015384615398943424,1.0780223061291208e-18,-0.025934066623449326,0.0013186812866479158,0.003076923079788685,0.026153845712542534,1.6220550400479433e-19,-4.469582875107628e-20,-0.0006593406433239579,2.2758075436564254e-18,-0.0015384615398943424,-0.004395604599267244,0.00043956044828519225,-0.00023976023658178747,6.937336322813791e-20,1.6220550400479433e-19,1.9980019715148956e-05,-4.8905510831484894e-21,3.050063315004849e-21,-9.446038280456883e-21,-4.5110823810365714e-21,-4.456499527379939e-20,0.0013186812866479158,-0.00021978022414259613,-0.0006593406433239579,-4.469582875107628e-20,-4.8905510831484894e-21,0.00010989011207129806,-1.0982909162424865e-20,3.0889431463961855e-19,2.4025113540368902e-20,1.716079561677595e-20,0.0013186812866479158,-0.00021978022414259613,1.6792910270517258e-19,-0.0006593406433239579,3.050063315004849e-21,-1.0982909162424865e-20,0.00010989011207129806,-6.864317923592953e-21,-3.3635160572103597e-20,-1.029647688538943e-20,0.002197802299633622,-7.060571758423472e-19,-0.004395604599267244,2.2758075436564254e-18,-9.446038280456883e-21,3.0889431463961855e-19,-6.864317923592953e-21,0.001098901149816811,-1.0110568527394276e-19,-5.183990529706578e-19,0.003076923079788685,6.17800067636145e-20,-0.0015384615398943424,-0.0015384615398943424,-4.5110823810365714e-21,2.4025113540368902e-20,-3.3635160572103597e-20,-1.0110568527394276e-19,0.0007692307699471712,3.363515927963389e-19,0.002197802299633622,4.229023954199061e-19,1.0780223061291208e-18,-0.004395604599267244,-4.456499527379939e-20,1.716079561677595e-20,-1.029647688538943e-20,-5.183990529706578e-19,3.363515927963389e-19,0.001098901149816811,13.0,5.0,6.0,0.0743851363658905,-0.010047095827758312,-0.021978022530674934,-0.019113030284643173,0.00036630037357099354,0.001098901149816811,0.0009419152047485113,0.0018315018387511373,0.002197802299633622,0.0013736264081671834,-0.010047095827758312,0.003339517628774047,0.001098901149816811,0.0009419152047485113,-0.00019980019715148956,-0.00018315018678549677,-0.00015698587230872363,1.730532358608154e-18,1.780717716564476e-19,-1.2866915403426931e-18,-0.021978022530674934,0.001098901149816811,0.021978022530674934,0.002197802299633622,2.519723977746648e-19,-0.0005494505749084055,-1.8716503275372838e-19,-0.0036630036775022745,-0.001098901149816811,-2.065167861826175e-18,-0.019113030284643173,0.0009419152047485113,0.002197802299633622,0.015200156718492508,-3.726523622794402e-20,-6.006986642335853e-19,-0.0003767660818994045,6.110002164859558e-19,-0.0008791208965703845,-0.002060439670458436,0.00036630037357099354,-0.00019980019715148956,2.519723977746648e-19,-3.726523622794402e-20,1.6650015822960995e-05,-4.075459101324813e-21,-1.0382157933448291e-20,-4.8460463428124357e-20,-1.0760605988388372e-20,2.4215878837964676e-20,0.001098901149816811,-0.00018315018678549677,-0.0005494505749084055,-6.006986642335853e-19,-4.075459101324813e-21,9.157509339274839e-05,1.7757015123841954e-20,-4.837920391893353e-19,-8.975171371316041e-20,1.2766869717796233e-19,0.0009419152047485113,-0.00015698587230872363,-1.8716503275372838e-19,-0.0003767660818994045,-1.0382157933448291e-20,1.7757015123841954e-20,6.27943518338725e-05,-4.085903872145429e-21,4.2362649511096826e-20,2.8940456938997967e-19,0.0018315018387511373,1.730532358608154e-18,-0.0036630036775022745,6.110002164859558e-19,-4.8460463428124357e-20,-4.837920391893353e-19,-4.085903872145429e-21,0.0009157509193755686,-5.843726004836262e-19,1.6746682506502908e-19,0.002197802299633622,1.780717716564476e-19,-0.001098901149816811,-0.0008791208965703845,-1.0760605988388372e-20,-8.975171371316041e-20,4.2362649511096826e-20,-5.843726004836262e-19,0.00043956044828519225,2.3175540567022696e-19,0.0013736264081671834,-1.2866915403426931e-18,-2.065167861826175e-18,-0.002060439670458436,2.4215878837964676e-20,1.2766869717796233e-19,2.8940456938997967e-19,1.6746682506502908e-19,2.3175540567022696e-19,0.00041208791662938893,13.0,5.0,7.0,0.06572475284337997,-0.008712715469300747,-0.019073782488703728,-0.014678179286420345,0.00031397174461744726,0.0009419152047485113,0.0007064364035613835,0.0015698587521910667,0.0016483516665175557,0.0009157509193755686,-0.008712715469300747,0.002879263600334525,0.0009419152047485113,0.0007064364035613835,-0.00017125731392297894,-0.00015698587230872363,-0.00011773940059356391,1.2904827158851768e-18,-2.94623122627606e-19,-1.2083938288832972e-18,-0.019073782488703728,0.0009419152047485113,0.01895604468882084,0.0016483516665175557,-1.8583532699435232e-19,-0.00047095760237425566,8.346075312310175e-20,-0.0031397175043821335,-0.0008241758332587779,-1.3466946015918303e-18,-0.014678179286420345,0.0007064364035613835,0.0016483516665175557,0.009654630906879902,-2.5740493229700095e-19,-1.3576346855783036e-18,-0.00023547880118712783,3.8399399075451965e-18,-0.0005494505749084055,-0.001098901149816811,0.00031397174461744726,-0.00017125731392297894,-1.8583532699435232e-19,-2.5740493229700095e-19,1.4271442523750011e-05,9.165118374028498e-21,6.798496480377466e-21,2.4181562151653663e-20,1.1372789919717937e-20,3.1182020756258346e-20,0.0009419152047485113,-0.00015698587230872363,-0.00047095760237425566,-1.3576346855783036e-18,9.165118374028498e-21,7.849293615436181e-05,4.1796286054265157e-20,-5.807097930324531e-19,9.269145221786278e-21,1.658617327851582e-19,0.0007064364035613835,-0.00011773940059356391,8.346075312310175e-20,-0.00023547880118712783,6.798496480377466e-21,4.1796286054265157e-20,3.924646807718091e-05,-1.2498701640615662e-19,4.006514566620799e-20,1.0738140764615455e-19,0.0015698587521910667,1.2904827158851768e-18,-0.0031397175043821335,3.8399399075451965e-18,2.4181562151653663e-20,-5.807097930324531e-19,-1.2498701640615662e-19,0.0007849293760955334,-1.4917486836163996e-18,-1.565445125370287e-20,0.0016483516665175557,-2.94623122627606e-19,-0.0008241758332587779,-0.0005494505749084055,1.1372789919717937e-20,9.269145221786278e-21,4.006514566620799e-20,-1.4917486836163996e-18,0.00027472528745420277,4.783909569173218e-20,0.0009157509193755686,-1.2083938288832972e-18,-1.3466946015918303e-18,-0.001098901149816811,3.1182020756258346e-20,1.658617327851582e-19,1.0738140764615455e-19,-1.565445125370287e-20,4.783909569173218e-20,0.00018315018678549677,13.0,5.0,8.0,0.058882784098386765,-0.007692307699471712,-0.01684981770813465,-0.011630036868155003,0.00027472528745420277,0.0008241758332587779,0.0005494505749084055,0.0013736264081671834,0.0012820513220503926,0.0006410256610251963,-0.007692307699471712,0.002530802506953478,0.0008241758332587779,0.0005494505749084055,-0.00014985015150159597,-0.00013736264372710139,-9.157509339274839e-05,0.0,0.0,-0.0,-0.01684981770813465,0.0008241758332587779,0.01666666753590107,0.0012820513220503926,-1.3645875288415917e-23,-0.00041208791662938893,6.776263578034403e-21,-0.002747252816334367,-0.0006410256610251963,-0.0,-0.011630036868155003,0.0005494505749084055,0.0012820513220503926,0.006527995690703392,6.0505026595018354e-21,3.3881317890172014e-21,-0.00015698587230872363,0.0,-0.00036630037357099354,-0.0006410256610251963,0.00027472528745420277,-0.00014985015150159597,-1.3645875288415917e-23,6.0505026595018354e-21,1.2487512321968097e-05,5.66962940632539e-22,-1.919703842337839e-21,0.0,0.0,-0.0,0.0008241758332587779,-0.00013736264372710139,-0.00041208791662938893,3.3881317890172014e-21,5.66962940632539e-22,6.868132186355069e-05,0.0,0.0,0.0,-0.0,0.0005494505749084055,-9.157509339274839e-05,6.776263578034403e-21,-0.00015698587230872363,-1.919703842337839e-21,0.0,2.616431265778374e-05,0.0,0.0,-0.0,0.0013736264081671834,0.0,-0.002747252816334367,0.0,0.0,0.0,0.0,0.0006868132040835917,0.0,-0.0,0.0012820513220503926,0.0,-0.0006410256610251963,-0.00036630037357099354,0.0,0.0,0.0,0.0,0.00018315018678549677,-0.0,0.0006410256610251963,-0.0,-0.0,-0.0006410256610251963,-0.0,-0.0,-0.0,-0.0,-0.0,9.157509339274839e-05,13.0,5.0,9.0,0.05333777517080307,-0.006886446848511696,-0.015091574750840664,-0.009443889372050762,0.00024420025874860585,0.0007326007471419871,0.00043956044828519225,0.0012210012646391988,0.001025640987791121,0.0004662004648707807,-0.006886446848511696,0.0022577422205358744,0.0007326007471419871,0.00043956044828519225,-0.00013320012658368796,-0.00012210012937430292,-7.326007471419871e-05,0.0,0.0,-0.0,-0.015091574750840664,0.0007326007471419871,0.014871794730424881,0.001025640987791121,-1.0896590765241682e-20,-0.00036630037357099354,0.0,-0.0024420025292783976,-0.0005128204938955605,-0.0,-0.009443889372050762,0.00043956044828519225,0.001025640987791121,0.00462537445127964,-9.495591569027638e-21,0.0,-0.00010989011207129806,0.0,-0.00025641024694778025,-0.0003996003943029791,0.00024420025874860585,-0.00013320012658368796,-1.0896590765241682e-20,-9.495591569027638e-21,1.1100010851805564e-05,9.433225462794764e-22,1.2745113454047346e-21,0.0,0.0,-0.0,0.0007326007471419871,-0.00012210012937430292,-0.00036630037357099354,0.0,9.433225462794764e-22,6.105006468715146e-05,0.0,0.0,0.0,-0.0,0.00043956044828519225,-7.326007471419871e-05,0.0,-0.00010989011207129806,1.2745113454047346e-21,0.0,1.8315018678549677e-05,0.0,0.0,-0.0,0.0012210012646391988,0.0,-0.0024420025292783976,0.0,0.0,0.0,0.0,0.0006105006323195994,0.0,-0.0,0.001025640987791121,0.0,-0.0005128204938955605,-0.00025641024694778025,0.0,0.0,0.0,0.0,0.00012820512347389013,-0.0,0.0004662004648707807,-0.0,-0.0,-0.0003996003943029791,-0.0,-0.0,-0.0,-0.0,-0.0,4.995004928787239e-05,13.0,5.0,10.0,0.04875124990940094,-0.006233766209334135,-0.013666333630681038,-0.00782217737287283,0.00021978022414259613,0.0006593406433239579,0.00035964036942459643,0.001098901149816811,0.0008391608134843409,0.00034965036320500076,-0.006233766209334135,0.002037961967289448,0.0006593406433239579,0.00035964036942459643,-0.00011988011829089373,-0.00010989011207129806,-5.994005914544687e-05,0.0,0.0,-0.0,-0.013666333630681038,0.0006593406433239579,0.013426573015749454,0.0008391608134843409,-4.305716921537614e-22,-0.00032967032166197896,0.0,-0.002197802299633622,-0.00041958040674217045,-0.0,-0.00782217737287283,0.00035964036942459643,0.0008391608134843409,0.0033991008531302214,1.9503230555445475e-21,3.3881317890172014e-21,-7.992007886059582e-05,0.0,-0.00018648018885869533,-0.00026223776512779295,0.00021978022414259613,-0.00011988011829089373,-4.305716921537614e-22,1.9503230555445475e-21,9.990009857574478e-06,-4.929266912250897e-22,9.592970174755254e-23,0.0,0.0,-0.0,0.0006593406433239579,-0.00010989011207129806,-0.00032967032166197896,3.3881317890172014e-21,-4.929266912250897e-22,5.494505603564903e-05,-4.235164736271502e-22,0.0,0.0,-0.0,0.00035964036942459643,-5.994005914544687e-05,0.0,-7.992007886059582e-05,9.592970174755254e-23,-4.235164736271502e-22,1.3320013749762438e-05,0.0,0.0,-0.0,0.001098901149816811,0.0,-0.002197802299633622,0.0,0.0,0.0,0.0,0.0005494505749084055,0.0,-0.0,0.0008391608134843409,0.0,-0.00041958040674217045,-0.00018648018885869533,0.0,0.0,0.0,0.0,9.324009442934766e-05,-0.0,0.00034965036320500076,-0.0,-0.0,-0.00026223776512779295,-0.0,-0.0,-0.0,-0.0,-0.0,2.9137529054423794e-05,13.0,5.0,11.0,0.04489356651902199,-0.005694305524230003,-0.012487512081861496,-0.006585721857845783,0.00019980019715148956,0.0005994006060063839,0.00029970030300319195,0.0009990009712055326,0.0006993007264100015,0.0002689617977011949,-0.005694305524230003,0.0018572336994111538,0.0005994006060063839,0.00029970030300319195,-0.00010898192704189569,-9.990009857574478e-05,-4.995004928787239e-05,0.0,0.0,0.0,-0.012487512081861496,0.0005994006060063839,0.012237762100994587,0.0006993007264100015,8.408228726496871e-21,-0.00029970030300319195,3.3881317890172014e-21,-0.001998001942411065,-0.00034965036320500076,-6.776263578034403e-21,-0.006585721857845783,0.00029970030300319195,0.0006993007264100015,0.0025722994469106197,7.992569660895408e-21,6.693342356697013e-21,-5.994005914544687e-05,-0.0,-0.0001398601452820003,-0.00017930786998476833,0.00019980019715148956,-0.00010898192704189569,8.408228726496871e-21,7.992569660895408e-21,9.081827556656208e-06,-1.7213321585673066e-21,-1.0669306130226224e-21,-0.0,8.146728758019502e-23,-9.346896690512956e-23,0.0005994006060063839,-9.990009857574478e-05,-0.00029970030300319195,6.693342356697013e-21,-1.7213321585673066e-21,4.995004928787239e-05,-5.913685047481004e-22,-0.0,-1.366801104096078e-22,-7.860504146967628e-23,0.00029970030300319195,-4.995004928787239e-05,3.3881317890172014e-21,-5.994005914544687e-05,-1.0669306130226224e-21,-5.913685047481004e-22,9.990009857574478e-06,0.0,6.711219005038378e-23,0.0,0.0009990009712055326,0.0,-0.001998001942411065,-0.0,-0.0,-0.0,0.0,0.0004995004856027663,0.0,0.0,0.0006993007264100015,0.0,-0.00034965036320500076,-0.0001398601452820003,8.146728758019502e-23,-1.366801104096078e-22,6.711219005038378e-23,0.0,6.993007264100015e-05,0.0,0.0002689617977011949,0.0,-6.776263578034403e-21,-0.00017930786998476833,-9.346896690512956e-23,-7.860504146967628e-23,0.0,0.0,0.0,1.793078627088107e-05,13.0,5.0,12.0,0.041603267192840576,-0.005240913014858961,-0.011496196500957012,-0.00562130194157362,0.00018315018678549677,0.0005494505749084055,0.0002535925596021116,0.0009157509193755686,0.000591715972404927,0.00021132713300175965,-0.005240913014858961,0.001705986331216991,0.0005494505749084055,0.0002535925596021116,-9.990009857574478e-05,-9.157509339274839e-05,-4.226542660035193e-05,0.0,-1.6940658945086007e-21,3.3881317890172014e-20,-0.011496196500957012,0.0005494505749084055,0.01124260388314724,0.000591715972404927,-6.1229161021203875e-21,-0.00027472528745420277,3.3881317890172014e-21,-0.0018315018387511373,-0.0002958579862024635,6.776263578034403e-21,-0.00562130194157362,0.0002535925596021116,0.000591715972404927,0.001994159771129489,-4.717002289845042e-21,-3.459315769826861e-21,-4.610773976310156e-05,-0.0,-0.00010758472490124404,-0.0001267962798010558,0.00018315018678549677,-9.990009857574478e-05,-6.1229161021203875e-21,-4.717002289845042e-21,8.325007911480498e-06,7.803192455570235e-22,1.0054574216038119e-21,0.0,2.0605946776893504e-22,-1.1829910858165544e-22,0.0005494505749084055,-9.157509339274839e-05,-0.00027472528745420277,-3.459315769826861e-21,7.803192455570235e-22,4.578754669637419e-05,8.221725448734502e-23,0.0,1.435499529343793e-22,2.2609745615108604e-22,0.0002535925596021116,-4.226542660035193e-05,3.3881317890172014e-21,-4.610773976310156e-05,1.0054574216038119e-21,8.221725448734502e-23,7.68462268752046e-06,0.0,-5.573514088762282e-22,-5.929230630780102e-21,0.0009157509193755686,0.0,-0.0018315018387511373,-0.0,0.0,0.0,0.0,0.0004578754596877843,0.0,0.0,0.000591715972404927,-1.6940658945086007e-21,-0.0002958579862024635,-0.00010758472490124404,2.0605946776893504e-22,1.435499529343793e-22,-5.573514088762282e-22,0.0,5.379236245062202e-05,-1.6940658945086007e-21,0.00021132713300175965,3.3881317890172014e-20,6.776263578034403e-21,-0.0001267962798010558,-1.1829910858165544e-22,2.2609745615108604e-22,-5.929230630780102e-21,0.0,-1.6940658945086007e-21,1.152693494077539e-05,13.0,5.0,13.0,0.03876343369483948,-0.00485448632389307,-0.01065088715404272,-0.00485448632389307,0.00016906170640140772,0.0005071851192042232,0.0002173650573240593,0.0008453085320070386,0.0005071851192042232,0.00016906170640140772,-0.00485448632389307,0.0015775433275848627,0.0005071851192042232,0.0002173650573240593,-9.221547952620313e-05,-8.453085320070386e-05,-3.6227509554009885e-05,0.0,0.0,1.6940658945086007e-21,-0.01065088715404272,0.0005071851192042232,0.010397295467555523,0.0005071851192042232,-3.237638029959577e-21,-0.0002535925596021116,0.0,-0.0016906170640140772,-0.0002535925596021116,3.3881317890172014e-21,-0.00485448632389307,0.0002173650573240593,0.0005071851192042232,0.0015775433275848627,5.0976090721185915e-23,-0.0,-3.6227509554009885e-05,-0.0,-8.453085320070386e-05,-9.221547952620313e-05,0.00016906170640140772,-9.221547952620313e-05,-3.237638029959577e-21,5.0976090721185915e-23,7.68462268752046e-06,3.8233225457609576e-22,3.7103798784563998e-22,0.0,-5.60170507450675e-23,-8.018263075148623e-23,0.0005071851192042232,-8.453085320070386e-05,-0.0002535925596021116,-0.0,3.8233225457609576e-22,4.226542660035193e-05,2.1521826909629583e-22,0.0,-6.726087455379983e-23,8.807347228005812e-24,0.0002173650573240593,-3.6227509554009885e-05,0.0,-3.6227509554009885e-05,3.7103798784563998e-22,2.1521826909629583e-22,6.037917955836747e-06,0.0,-2.3284351377805388e-23,0.0,0.0008453085320070386,0.0,-0.0016906170640140772,-0.0,0.0,0.0,0.0,0.0004226542660035193,0.0,0.0,0.0005071851192042232,0.0,-0.0002535925596021116,-8.453085320070386e-05,-5.60170507450675e-23,-6.726087455379983e-23,-2.3284351377805388e-23,0.0,4.226542660035193e-05,0.0,0.00016906170640140772,1.6940658945086007e-21,3.3881317890172014e-21,-9.221547952620313e-05,-8.018263075148623e-23,8.807347228005812e-24,0.0,0.0,0.0,7.68462268752046e-06,13.0,5.0,14.0,0.03628728538751602,-0.004521192982792854,-0.009921506978571415,-0.004234693944454193,0.00015698587230872363,0.00047095760237425566,0.00018838304094970226,0.0007849293760955334,0.00043956044828519225,0.00013736264372710139,-0.004521192982792854,0.0014671043027192354,0.00047095760237425566,0.00018838304094970226,-8.562865696148947e-05,-7.849293615436181e-05,-3.139717591693625e-05,0.0,0.0,-1.0164395367051604e-20,-0.009921506978571415,0.00047095760237425566,0.00967032928019762,0.00043956044828519225,4.319509693770634e-21,-0.00023547880118712783,0.0,-0.0015698587521910667,-0.00021978022414259613,0.0,-0.004234693944454193,0.00018838304094970226,0.00043956044828519225,0.0012696232879534364,-3.509361812473453e-21,-0.0,-2.8982007279410027e-05,-0.0,-6.762468547094613e-05,-6.868132186355069e-05,0.00015698587230872363,-8.562865696148947e-05,4.319509693770634e-21,-3.509361812473453e-21,7.1357212618750054e-06,-7.169507179946673e-22,4.429253801472672e-22,0.0,-2.7393254098367527e-24,7.884489936107416e-23,0.00047095760237425566,-7.849293615436181e-05,-0.00023547880118712783,-0.0,-7.169507179946673e-22,3.924646807718091e-05,2.1285110577900655e-22,0.0,-2.138759370690845e-23,2.5898482984261755e-24,0.00018838304094970226,-3.139717591693625e-05,0.0,-2.8982007279410027e-05,4.429253801472672e-22,2.1285110577900655e-22,4.830334546568338e-06,0.0,-5.422065669169821e-23,1.6940658945086007e-21,0.0007849293760955334,0.0,-0.0015698587521910667,-0.0,0.0,0.0,0.0,0.0003924646880477667,0.0,0.0,0.00043956044828519225,0.0,-0.00021978022414259613,-6.762468547094613e-05,-2.7393254098367527e-24,-2.138759370690845e-23,-5.422065669169821e-23,0.0,3.3812342735473067e-05,-4.235164736271502e-22,0.00013736264372710139,-1.0164395367051604e-20,0.0,-6.868132186355069e-05,7.884489936107416e-23,2.5898482984261755e-24,1.6940658945086007e-21,0.0,-4.235164736271502e-22,5.283178325043991e-06,13.0,5.0,15.0,0.03410902991890907,-0.0042307693511247635,-0.009285714477300644,-0.003726567607372999,0.00014652014942839742,0.00043956044828519225,0.00016483516083098948,0.0007326007471419871,0.0003846153849735856,0.0001131221724790521,-0.0042307693511247635,0.0013711288338527083,0.00043956044828519225,0.00016483516083098948,-7.992007886059582e-05,-7.326007471419871e-05,-2.7472528017824516e-05,0.0,0.0,-1.1858461261560205e-20,-0.009285714477300644,0.00043956044828519225,0.009038461372256279,0.0003846153849735856,-1.6462794524171492e-21,-0.00021978022414259613,3.3881317890172014e-21,-0.0014652014942839742,-0.0001923076924867928,3.3881317890172014e-21,-0.003726567607372999,0.00016483516083098948,0.0003846153849735856,0.0010370657546445727,-5.009587947070482e-21,-0.0,-2.3547880118712783e-05,-0.0,-5.494505603564903e-05,-5.221023457124829e-05,0.00014652014942839742,-7.992007886059582e-05,-1.6462794524171492e-21,-5.009587947070482e-21,6.660006874881219e-06,3.5733917210187468e-22,6.246938264040789e-22,0.0,8.733691127513145e-23,9.17972886054321e-23,0.00043956044828519225,-7.326007471419871e-05,-0.00021978022414259613,-0.0,3.5733917210187468e-22,3.6630037357099354e-05,-2.1296366676385072e-22,0.0,2.373137992013241e-23,1.0320643872723703e-22,0.00016483516083098948,-2.7472528017824516e-05,3.3881317890172014e-21,-2.3547880118712783e-05,6.246938264040789e-22,-2.1296366676385072e-22,3.924646989617031e-06,0.0,-1.6375597500022962e-22,1.4823076576950256e-21,0.0007326007471419871,0.0,-0.0014652014942839742,-0.0,0.0,0.0,0.0,0.00036630037357099354,0.0,0.0,0.0003846153849735856,0.0,-0.0001923076924867928,-5.494505603564903e-05,8.733691127513145e-23,2.373137992013241e-23,-1.6375597500022962e-22,0.0,2.7472528017824516e-05,0.0,0.0001131221724790521,-1.1858461261560205e-20,3.3881317890172014e-21,-5.221023457124829e-05,9.17972886054321e-23,1.0320643872723703e-22,1.4823076576950256e-21,0.0,0.0,3.72930230696511e-06,13.0,5.0,16.0,0.0321778729557991,-0.003975436557084322,-0.008726567961275578,-0.0033047834876924753,0.00013736264372710139,0.00041208791662938893,0.00014544279838446528,0.0006868132040835917,0.0003393665247131139,9.426847827853635e-05,-0.003975436557084322,0.0012869483325630426,0.00041208791662938893,0.00014544279838446528,-7.492507575079799e-05,-6.868132186355069e-05,-2.424046579108108e-05,0.0,1.6940658945086007e-21,1.6940658945086007e-21,-0.008726567961275578,0.00041208791662938893,0.00848416332155466,0.0003393665247131139,5.004573972400446e-21,-0.00020604395831469446,-1.6940658945086007e-21,-0.0013736264081671834,-0.00016968326235655695,0.0,-0.0033047834876924753,0.00014544279838446528,0.0003393665247131139,0.000858112471178174,1.1000954866813662e-21,-0.0,-1.939237154147122e-05,-0.0,-4.5248867536429316e-05,-4.0400776924798265e-05,0.00013736264372710139,-7.492507575079799e-05,5.004573972400446e-21,1.1000954866813662e-21,6.243756160984049e-06,-9.965642202769081e-22,-2.924768827729409e-22,-0.0,-8.664363822351788e-24,5.645761536113714e-24,0.00041208791662938893,-6.868132186355069e-05,-0.00020604395831469446,-0.0,-9.965642202769081e-22,3.4340660931775346e-05,2.0675651127985273e-25,0.0,-4.092055807070239e-24,4.307427061539606e-25,0.00014544279838446528,-2.424046579108108e-05,-1.6940658945086007e-21,-1.939237154147122e-05,-2.924768827729409e-22,2.0675651127985273e-25,3.232061999369762e-06,0.0,-1.8620542597266348e-23,-2.117582368135751e-22,0.0006868132040835917,0.0,-0.0013736264081671834,-0.0,-0.0,0.0,0.0,0.00034340660204179585,0.0,0.0,0.0003393665247131139,1.6940658945086007e-21,-0.00016968326235655695,-4.5248867536429316e-05,-8.664363822351788e-24,-4.092055807070239e-24,-1.8620542597266348e-23,0.0,2.2624433768214658e-05,-4.235164736271502e-22,9.426847827853635e-05,1.6940658945086007e-21,0.0,-4.0400776924798265e-05,5.645761536113714e-24,4.307427061539606e-25,-2.117582368135751e-22,0.0,-4.235164736271502e-22,2.6933851131616393e-06,13.0,6.0,3.0,0.10779696702957153,-0.015829408541321754,-0.030023548752069473,-0.049450550228357315,0.0006105006323195994,0.0015698587521910667,0.002747252816334367,0.002289377385750413,0.005494505632668734,0.006410256493836641,-0.015829408541321754,0.005413237493485212,0.0015698587521910667,0.002747252816334367,-0.0003330003237351775,-0.00026164311566390097,-0.0004578754596877843,-4.87890977618477e-19,-1.0842021724855044e-19,8.122455357211377e-18,-0.030023548752069473,0.0015698587521910667,0.02460099384188652,0.005494505632668734,2.710505431213761e-20,-0.0006279434892348945,-4.336808689942018e-19,-0.0034340659622102976,-0.002197802299633622,2.5507781784187515e-17,-0.049450550228357315,0.002747252816334367,0.005494505632668734,0.11355311423540115,3.836630086495733e-21,2.6763870743793043e-19,-0.002747252816334367,1.6429832523828119e-18,-0.005494505632668734,-0.03846153989434242,0.0006105006323195994,-0.0003330003237351775,2.710505431213761e-20,3.836630086495733e-21,2.775002758426126e-05,1.3552527156068805e-20,2.286988957586611e-20,-2.541098841762901e-20,6.776263578034403e-21,-9.678600594352307e-20,0.0015698587521910667,-0.00026164311566390097,-0.0006279434892348945,2.6763870743793043e-19,1.3552527156068805e-20,0.00010465725063113496,-6.100521237167151e-21,1.4907779871675686e-19,2.0328790734103208e-19,-4.048699097650384e-19,0.002747252816334367,-0.0004578754596877843,-4.336808689942018e-19,-0.002747252816334367,2.286988957586611e-20,-6.100521237167151e-21,0.0004578754596877843,2.307702852594646e-19,-7.069831011405238e-19,-6.063525884769924e-18,0.002289377385750413,-4.87890977618477e-19,-0.0034340659622102976,1.6429832523828119e-18,-2.541098841762901e-20,1.4907779871675686e-19,2.307702852594646e-19,0.0006868132040835917,1.0977546996415732e-18,-2.935685914236928e-18,0.005494505632668734,-1.0842021724855044e-19,-0.002197802299633622,-0.005494505632668734,6.776263578034403e-21,2.0328790734103208e-19,-7.069831011405238e-19,1.0977546996415732e-18,0.002197802299633622,-8.607218764933791e-18,0.006410256493836641,8.122455357211377e-18,2.5507781784187515e-17,-0.03846153989434242,-9.678600594352307e-20,-4.048699097650384e-19,-6.063525884769924e-18,-2.935685914236928e-18,-8.607218764933791e-18,0.01923076994717121,13.0,6.0,4.0,0.08794479072093964,-0.012284144759178162,-0.023341836407780647,-0.031593408435583115,0.0004578754596877843,0.0011773940641433,0.0016483516665175557,0.0017170329811051488,0.0032967033330351114,0.0032051282469183207,-0.012284144759178162,0.0041286093182861805,0.0011773940641433,0.0016483516665175557,-0.00024975024280138314,-0.00019623234402388334,-0.00027472528745420277,2.613644649435333e-18,1.8461318831882054e-18,2.88257409467097e-18,-0.023341836407780647,0.0011773940641433,0.018780415877699852,0.0032967033330351114,8.81016111757393e-19,-0.00047095760237425566,1.8143303041531448e-18,-0.002575549529865384,-0.0013186812866479158,4.6240380586643185e-18,-0.031593408435583115,0.0016483516665175557,0.0032967033330351114,0.043498169630765915,8.915473617261118e-19,4.3197677353476597e-19,-0.001098901149816811,3.767463996634525e-18,-0.002197802299633622,-0.009615384973585606,0.0004578754596877843,-0.00024975024280138314,8.81016111757393e-19,8.915473617261118e-19,2.0812520233448595e-05,-4.550284683619833e-20,-2.2425349466865614e-20,-6.732799114253862e-20,-1.2172786016921234e-19,-1.3160235458095825e-19,0.0011773940641433,-0.00019623234402388334,-0.00047095760237425566,4.3197677353476597e-19,-4.550284683619833e-20,7.849293615436181e-05,-5.2400369922154176e-20,-4.363886447293941e-19,-7.320151632894211e-20,2.6283689813266597e-20,0.0016483516665175557,-0.00027472528745420277,1.8143303041531448e-18,-0.001098901149816811,-2.2425349466865614e-20,-5.2400369922154176e-20,0.00018315018678549677,-2.552228556904802e-19,-9.403310362850685e-20,-8.187595003269316e-19,0.0017170329811051488,2.613644649435333e-18,-0.002575549529865384,3.767463996634525e-18,-6.732799114253862e-20,-4.363886447293941e-19,-2.552228556904802e-19,0.000515109917614609,-9.013721994517104e-19,8.268225338206717e-20,0.0032967033330351114,1.8461318831882054e-18,-0.0013186812866479158,-0.002197802299633622,-1.2172786016921234e-19,-7.320151632894211e-20,-9.403310362850685e-20,-9.013721994517104e-19,0.0008791208965703845,-3.3024520075786525e-18,0.0032051282469183207,2.88257409467097e-18,4.6240380586643185e-18,-0.009615384973585606,-1.3160235458095825e-19,2.6283689813266597e-20,-8.187595003269316e-19,8.268225338206717e-20,-3.3024520075786525e-18,0.0032051282469183207,13.0,6.0,5.0,0.0743851363658905,-0.010047095827758312,-0.019113030284643173,-0.021978022530674934,0.00036630037357099354,0.0009419152047485113,0.001098901149816811,0.0013736264081671834,0.002197802299633622,0.0018315018387511373,-0.010047095827758312,0.003339517628774047,0.0009419152047485113,0.001098901149816811,-0.00019980019715148956,-0.00015698587230872363,-0.00018315018678549677,-1.763844989827196e-18,-4.340175315035109e-19,1.740894656936759e-18,-0.019113030284643173,0.0009419152047485113,0.015200156718492508,0.002197802299633622,-2.0929667655758799e-19,-0.0003767660818994045,-5.501392138452363e-19,-0.002060439670458436,-0.0008791208965703845,6.103406330052637e-18,-0.021978022530674934,0.001098901149816811,0.002197802299633622,0.021978022530674934,2.7151226499954555e-19,-5.65376966403017e-19,-0.0005494505749084055,2.552249650010422e-18,-0.001098901149816811,-0.0036630036775022745,0.00036630037357099354,-0.00019980019715148956,-2.0929667655758799e-19,2.7151226499954555e-19,1.6650015822960995e-05,-1.3071699344453948e-21,-4.822191350597266e-22,3.7608173677681144e-20,9.467216204401515e-21,-7.307174590799932e-20,0.0009419152047485113,-0.00015698587230872363,-0.0003767660818994045,-5.65376966403017e-19,-1.3071699344453948e-21,6.27943518338725e-05,5.356834894707905e-20,4.346100513160402e-19,1.7721812126429287e-19,-5.154690047575845e-20,0.001098901149816811,-0.00018315018678549677,-5.501392138452363e-19,-0.0005494505749084055,-4.822191350597266e-22,5.356834894707905e-20,9.157509339274839e-05,7.348729430588211e-20,-8.148555568025022e-20,-3.1101590366384635e-19,0.0013736264081671834,-1.763844989827196e-18,-0.002060439670458436,2.552249650010422e-18,3.7608173677681144e-20,4.346100513160402e-19,7.348729430588211e-20,0.00041208791662938893,2.141105575299169e-19,-8.862588858773306e-19,0.002197802299633622,-4.340175315035109e-19,-0.0008791208965703845,-0.001098901149816811,9.467216204401515e-21,1.7721812126429287e-19,-8.148555568025022e-20,2.141105575299169e-19,0.00043956044828519225,-4.376567126084379e-19,0.0018315018387511373,1.740894656936759e-18,6.103406330052637e-18,-0.0036630036775022745,-7.307174590799932e-20,-5.154690047575845e-20,-3.1101590366384635e-19,-8.862588858773306e-19,-4.376567126084379e-19,0.0009157509193755686,13.0,6.0,6.0,0.0644950270652771,-0.008503401651978493,-0.01618916727602482,-0.01618916727602482,0.0003052503161597997,0.0007849293760955334,0.0007849293760955334,0.0011446886928752065,0.0015698587521910667,0.0011446886928752065,-0.008503401651978493,0.0028047349769622087,0.0007849293760955334,0.0007849293760955334,-0.00016650016186758876,-0.00013082155783195049,-0.00013082155783195049,-2.230764457375616e-19,-9.715702617505637e-19,-6.217912011670163e-19,-0.01618916727602482,0.0007849293760955334,0.012771454639732838,0.0015698587521910667,-2.1788997159806583e-20,-0.00031397174461744726,-8.806067607517558e-19,-0.0017170329811051488,-0.0006279434892348945,-3.327090202509004e-18,-0.01618916727602482,0.0007849293760955334,0.0015698587521910667,0.012771454639732838,-2.772160630640108e-19,-1.1774381454221487e-18,-0.00031397174461744726,-3.08878629227253e-18,-0.0006279434892348945,-0.0017170329811051488,0.0003052503161597997,-0.00016650016186758876,-2.1788997159806583e-20,-2.772160630640108e-19,1.387501379213063e-05,4.23189680739642e-21,1.647693535445767e-20,-1.2724193822095745e-20,1.7231170592328312e-20,2.3667175364093588e-20,0.0007849293760955334,-0.00013082155783195049,-0.00031397174461744726,-1.1774381454221487e-18,4.23189680739642e-21,5.232862531556748e-05,3.758854429400435e-20,8.364494944341111e-20,1.4702673976444627e-19,9.845634855655759e-20,0.0007849293760955334,-0.00013082155783195049,-8.806067607517558e-19,-0.00031397174461744726,1.647693535445767e-20,3.758854429400435e-20,5.232862531556748e-05,6.365652414432787e-20,9.944134618269779e-20,3.7608884536020057e-20,0.0011446886928752065,-2.230764457375616e-19,-0.0017170329811051488,-3.08878629227253e-18,-1.2724193822095745e-20,8.364494944341111e-20,6.365652414432787e-20,0.00034340660204179585,6.747695861604118e-19,1.698076815750688e-19,0.0015698587521910667,-9.715702617505637e-19,-0.0006279434892348945,-0.0006279434892348945,1.7231170592328312e-20,1.4702673976444627e-19,9.944134618269779e-20,6.747695861604118e-19,0.00025117740733549,6.501601357563467e-19,0.0011446886928752065,-6.217912011670163e-19,-3.327090202509004e-18,-0.0017170329811051488,2.3667175364093588e-20,9.845634855655759e-20,3.7608884536020057e-20,1.698076815750688e-19,6.501601357563467e-19,0.00034340660204179585,13.0,6.0,7.0,0.056947872042655945,-0.007372729480266571,-0.014044628478586674,-0.012428048066794872,0.00026164311566390097,0.0006727965665049851,0.00058869703207165,0.0009811617201194167,0.0011773940641433,0.000763125775847584,-0.007372729480266571,0.0024180752225220203,0.0006727965665049851,0.00058869703207165,-0.00014271443069446832,-0.00011213276593480259,-9.811617201194167e-05,-9.317062566825253e-20,-1.2163170042300305e-19,-6.215611544838471e-20,-0.014044628478586674,0.0006727965665049851,0.0110142407938838,0.0011773940641433,1.0785823849520016e-19,-0.0002691186382435262,5.0148655047814124e-20,-0.0014717425219714642,-0.00047095760237425566,1.0620560659456222e-18,-0.012428048066794872,0.00058869703207165,0.0011773940641433,0.008110936731100082,-6.752970688972792e-20,2.373234685660511e-19,-0.00019623234402388334,5.2137148772777585e-20,-0.0003924646880477667,-0.0009157509193755686,0.00026164311566390097,-0.00014271443069446832,1.0785823849520016e-19,-6.752970688972792e-20,1.1892869224539027e-05,-1.9211013252086562e-21,3.1926996660367865e-21,-1.7667540677192712e-20,7.234875349996907e-22,9.454864232969339e-21,0.0006727965665049851,-0.00011213276593480259,-0.0002691186382435262,2.373234685660511e-19,-1.9211013252086562e-21,4.485310637392104e-05,7.446538368143778e-21,1.3226407322160653e-19,4.284399431059453e-20,-5.803472035808193e-20,0.00058869703207165,-9.811617201194167e-05,5.0148655047814124e-20,-0.00019623234402388334,3.1926996660367865e-21,7.446538368143778e-21,3.270538945798762e-05,-1.847348762804499e-20,4.390187995807386e-21,2.734199955236857e-20,0.0009811617201194167,-9.317062566825253e-20,-0.0014717425219714642,5.2137148772777585e-20,-1.7667540677192712e-20,1.3226407322160653e-19,-1.847348762804499e-20,0.000294348516035825,2.2861641034195307e-19,-6.037403236682164e-20,0.0011773940641433,-1.2163170042300305e-19,-0.00047095760237425566,-0.0003924646880477667,7.234875349996907e-22,4.284399431059453e-20,4.390187995807386e-21,2.2861641034195307e-19,0.00015698587230872363,-1.2836546759706754e-19,0.000763125775847584,-6.215611544838471e-20,1.0620560659456222e-18,-0.0009157509193755686,9.454864232969339e-21,-5.803472035808193e-20,2.734199955236857e-20,-6.037403236682164e-20,-1.2836546759706754e-19,0.00015262515807989985,13.0,6.0,8.0,0.05099315196275711,-0.006508372724056244,-0.01240351889282465,-0.009844322688877583,0.00022893772984389216,0.00058869703207165,0.0004578754596877843,0.0008585164905525744,0.0009157509193755686,0.0005341880605556071,-0.006508372724056244,0.002125354716554284,0.00058869703207165,0.0004578754596877843,-0.00012487512140069157,-9.811617201194167e-05,-7.631257903994992e-05,0.0,0.0,-0.0,-0.01240351889282465,0.00058869703207165,0.009683248586952686,0.0009157509193755686,1.947249054388606e-37,-0.00023547880118712783,2.6850224522334458e-20,-0.001287774764932692,-0.00036630037357099354,6.354298585043672e-19,-0.009844322688877583,0.0004578754596877843,0.0009157509193755686,0.005483603570610285,-9.487524336622937e-22,2.6850224522334458e-20,-0.00013082155783195049,1.1347560394047187e-18,-0.00026164311566390097,-0.0005341880605556071,0.00022893772984389216,-0.00012487512140069157,1.947249054388606e-37,-9.487524336622937e-22,1.0406260116724297e-05,-3.2454148103879837e-38,1.5812540140312412e-22,0.0,-0.0,-0.0,0.00058869703207165,-9.811617201194167e-05,-0.00023547880118712783,2.6850224522334458e-20,-3.2454148103879837e-38,3.924646807718091e-05,-4.475037420389076e-21,0.0,-0.0,-0.0,0.0004578754596877843,-7.631257903994992e-05,2.6850224522334458e-20,-0.00013082155783195049,1.5812540140312412e-22,-4.475037420389076e-21,2.1803592971991748e-05,0.0,0.0,-0.0,0.0008585164905525744,0.0,-0.001287774764932692,1.1347560394047187e-18,0.0,0.0,0.0,0.0002575549588073045,-9.806168646914177e-20,-1.2708597428581286e-19,0.0009157509193755686,0.0,-0.00036630037357099354,-0.00026164311566390097,-0.0,-0.0,0.0,-9.806168646914177e-20,0.00010465725063113496,4.838682000954383e-35,0.0005341880605556071,-0.0,6.354298585043672e-19,-0.0005341880605556071,-0.0,-0.0,-0.0,-1.2708597428581286e-19,4.838682000954383e-35,7.631257903994992e-05,13.0,6.0,9.0,0.04617208242416382,-0.005825920030474663,-0.01110674999654293,-0.00799200776964426,0.0002035002107731998,0.0005232862313278019,0.00036630037357099354,0.000763125775847584,0.0007326007471419871,0.0003885003970935941,-0.005825920030474663,0.0018959876615554094,0.0005232862313278019,0.00036630037357099354,-0.00011100011033704504,-8.721437188796699e-05,-6.105006468715146e-05,0.0,0.0,-0.0,-0.01110674999654293,0.0005232862313278019,0.008639891631901264,0.0007326007471419871,1.4297742570970924e-20,-0.00020931450126226991,-3.3881317890172014e-20,-0.0011446886928752065,-0.00029304029885679483,-8.978540969089458e-19,-0.00799200776964426,0.00036630037357099354,0.0007326007471419871,0.0038850039709359407,2.986348193515175e-21,-3.3881317890172014e-20,-9.157509339274839e-05,-1.7416473912941822e-18,-0.00018315018678549677,-0.0003330003237351775,0.0002035002107731998,-0.00011100011033704504,1.4297742570970924e-20,2.986348193515175e-21,9.250009497918654e-06,-1.843873432931104e-21,-6.132918706937296e-22,-0.0,-0.0,-0.0,0.0005232862313278019,-8.721437188796699e-05,-0.00020931450126226991,-3.3881317890172014e-20,-1.843873432931104e-21,3.488575021037832e-05,5.505714157152952e-21,-0.0,-0.0,-0.0,0.00036630037357099354,-6.105006468715146e-05,-3.3881317890172014e-20,-9.157509339274839e-05,-6.132918706937296e-22,5.505714157152952e-21,1.5262516171787865e-05,0.0,0.0,-0.0,0.000763125775847584,0.0,-0.0011446886928752065,-1.7416473912941822e-18,-0.0,-0.0,0.0,0.00022893772984389216,1.220323272581172e-19,1.7957082972154682e-19,0.0007326007471419871,0.0,-0.00029304029885679483,-0.00018315018678549677,-0.0,-0.0,0.0,1.220323272581172e-19,7.326007471419871e-05,9.571792785384794e-35,0.0003885003970935941,-0.0,-8.978540969089458e-19,-0.0003330003237351775,-0.0,-0.0,-0.0,1.7957082972154682e-19,9.571792785384794e-35,4.162504046689719e-05,13.0,6.0,10.0,0.04218757525086403,-0.0052732983604073524,-0.010056015104055405,-0.006618381477892399,0.00018315018678549677,0.00047095760237425566,0.00029970030300319195,0.0006868132040835917,0.0005994006060063839,0.00029137529782019556,-0.0052732983604073524,0.001711383811198175,0.00047095760237425566,0.00029970030300319195,-9.990009857574478e-05,-7.849293615436181e-05,-4.995004928787239e-05,0.0,0.0,-0.0,-0.010056015104055405,0.00047095760237425566,0.007799878716468811,0.0005994006060063839,-3.3414758540226912e-21,-0.00018838304094970226,2.0328790734103208e-20,-0.001030219835229218,-0.00023976023658178747,3.292681867171059e-19,-0.006618381477892399,0.00029970030300319195,0.0005994006060063839,0.002854784019291401,5.935279641444886e-23,1.6940658945086007e-20,-6.660006329184398e-05,7.923720251961837e-19,-0.00013320012658368796,-0.00021853146608918905,0.00018315018678549677,-9.990009857574478e-05,-3.3414758540226912e-21,5.935279641444886e-23,8.325007911480498e-06,4.350293684243225e-23,-2.6659699442350655e-22,0.0,-0.0,-0.0,0.00047095760237425566,-7.849293615436181e-05,-0.00018838304094970226,1.6940658945086007e-20,4.350293684243225e-23,3.139717591693625e-05,-3.3881317890172014e-21,0.0,-0.0,-0.0,0.00029970030300319195,-4.995004928787239e-05,2.0328790734103208e-20,-6.660006329184398e-05,-2.6659699442350655e-22,-3.3881317890172014e-21,1.1100010851805564e-05,0.0,0.0,-0.0,0.0006868132040835917,0.0,-0.001030219835229218,7.923720251961837e-19,0.0,0.0,0.0,0.00020604395831469446,-7.987570064950864e-20,-6.585363863589089e-20,0.0005994006060063839,0.0,-0.00023976023658178747,-0.00013320012658368796,-0.0,-0.0,0.0,-7.987570064950864e-20,5.328005499904975e-05,2.5529045371878954e-35,0.00029137529782019556,-0.0,3.292681867171059e-19,-0.00021853146608918905,-0.0,-0.0,-0.0,-6.585363863589089e-20,2.5529045371878954e-35,2.428127481834963e-05,13.0,6.0,11.0,0.038838449865579605,-0.004816611763089895,-0.009187241084873676,-0.005571351852267981,0.00016650016186758876,0.00042814327753148973,0.00024975024280138314,0.0006243756506592035,0.0004995004856027663,0.00022413484111893922,-0.004816611763089895,0.0015595875447615981,0.00042814327753148973,0.00024975024280138314,-9.081827010959387e-05,-7.135721534723416e-05,-4.162504046689719e-05,1.2037062152420224e-35,-1.6940658945086007e-21,-6.776263578034403e-21,-0.009187241084873676,0.00042814327753148973,0.007108962628990412,0.0004995004856027663,-1.6929870054205872e-20,-0.00017125731392297894,1.5246593050577406e-20,-0.0009365634177811444,-0.00019980019715148956,2.439454888092385e-19,-0.005571351852267981,0.00024975024280138314,0.0004995004856027663,0.0021602329798042774,-4.888495248520611e-21,9.368516755217746e-21,-4.995004928787239e-05,6.338310734766671e-19,-9.990009857574478e-05,-0.00014942322741262615,0.00016650016186758876,-9.081827010959387e-05,-1.6929870054205872e-20,-4.888495248520611e-21,7.568189175799489e-06,2.516388638498405e-21,8.565406775372585e-22,-3.2121014056839584e-37,1.1423639918912033e-22,-2.469151546519575e-22,0.00042814327753148973,-7.135721534723416e-05,-0.00017125731392297894,9.368516755217746e-21,2.516388638498405e-21,2.8542885047500022e-05,-1.5208941388525255e-21,-6.55030397861435e-37,8.26527183288015e-23,-7.740485428897674e-24,0.00024975024280138314,-4.162504046689719e-05,1.5246593050577406e-20,-4.995004928787239e-05,8.565406775372585e-22,-1.5208941388525255e-21,8.325007911480498e-06,-4.833209340784801e-37,-5.470324519036642e-22,8.470329472543003e-22,0.0006243756506592035,1.2037062152420224e-35,-0.0009365634177811444,6.338310734766671e-19,-3.2121014056839584e-37,-6.55030397861435e-37,-4.833209340784801e-37,0.00018731268937699497,-5.446070557578758e-20,-4.976793224618952e-20,0.0004995004856027663,-1.6940658945086007e-21,-0.00019980019715148956,-9.990009857574478e-05,1.1423639918912033e-22,8.26527183288015e-23,-5.470324519036642e-22,-5.446070557578758e-20,3.996003943029791e-05,8.470329472543003e-22,0.00022413484111893922,-6.776263578034403e-21,2.439454888092385e-19,-0.00014942322741262615,-2.469151546519575e-22,-7.740485428897674e-24,8.470329472543003e-22,-4.976793224618952e-20,8.470329472543003e-22,1.4942322195565794e-05,13.0,6.0,12.0,0.03598347678780556,-0.004432838410139084,-0.008456858806312084,-0.004754860419780016,0.00015262515807989985,0.0003924646880477667,0.00021132713300175965,0.0005723443464376032,0.0004226542660035193,0.00017610593931749463,-0.004432838410139084,0.001432557008229196,0.0003924646880477667,0.00021132713300175965,-8.325008093379438e-05,-6.541077891597524e-05,-3.522119004628621e-05,4.112256812485603e-19,-9.486769009248164e-20,-3.3881317890172014e-21,-0.008456858806312084,0.0003924646880477667,0.006530637387186289,0.0004226542660035193,-7.54066570573863e-20,-0.00015698587230872363,7.623296525288703e-20,-0.0008585164905525744,-0.00016906170640140772,-9.825582188149884e-20,-0.004754860419780016,0.00021132713300175965,0.0004226542660035193,0.0016746073961257935,-5.876781563830558e-20,-1.8882374960174741e-19,-3.8423117075581104e-05,1.6633193326460632e-19,-7.684623415116221e-05,-0.00010566356650087982,0.00015262515807989985,-8.325008093379438e-05,-7.54066570573863e-20,-5.876781563830558e-20,6.937506896065315e-06,1.9132054258195044e-20,7.503172775122384e-21,-1.1553269581825784e-20,2.0391217828750386e-21,-3.80783853147779e-23,0.0003924646880477667,-6.541077891597524e-05,-0.00015698587230872363,-1.8882374960174741e-19,1.9132054258195044e-20,2.616431265778374e-05,1.1140927316610202e-20,-4.982089119243852e-20,1.7972597455401453e-20,4.220710078184564e-21,0.00021132713300175965,-3.522119004628621e-05,7.623296525288703e-20,-3.8423117075581104e-05,7.503172775122384e-21,1.1140927316610202e-20,6.403852694347734e-06,-3.3517177474889685e-20,-7.520900915665176e-22,-4.658681209898652e-21,0.0005723443464376032,4.112256812485603e-19,-0.0008585164905525744,1.6633193326460632e-19,-1.1553269581825784e-20,-4.982089119243852e-20,-3.3517177474889685e-20,0.00017170330102089792,-1.692734650710273e-20,1.6758589343290018e-21,0.0004226542660035193,-9.486769009248164e-20,-0.00016906170640140772,-7.684623415116221e-05,2.0391217828750386e-21,1.7972597455401453e-20,-7.520900915665176e-22,-1.692734650710273e-20,3.073849075008184e-05,6.776263578034403e-21,0.00017610593931749463,-3.3881317890172014e-21,-9.825582188149884e-20,-0.00010566356650087982,-3.80783853147779e-23,4.220710078184564e-21,-4.658681209898652e-21,1.6758589343290018e-21,6.776263578034403e-21,9.605779268895276e-06,13.0,6.0,13.0,0.03352050855755806,-0.004105784464627504,-0.007834198884665966,-0.004105784464627504,0.00014088476018514484,0.0003622750809881836,0.0001811375404940918,0.0005283178179524839,0.0003622750809881836,0.00014088476018514484,-0.004105784464627504,0.0013246826129034162,0.0003622750809881836,0.0001811375404940918,-7.684623415116221e-05,-6.037918137735687e-05,-3.0189590688678436e-05,-2.1666711874356403e-34,-6.776263578034403e-21,-2.0328790734103208e-20,-0.007834198884665966,0.0003622750809881836,0.0060394275933504105,0.0003622750809881836,1.919079821807373e-21,-0.00014491003821603954,0.0,-0.0007924767560325563,-0.00014491003821603954,-3.2864878353466853e-19,-0.004105784464627504,0.0001811375404940918,0.0003622750809881836,0.0013246826129034162,-1.044749813364627e-21,1.0340811019724144e-20,-3.0189590688678436e-05,-8.705430746242825e-19,-6.037918137735687e-05,-7.684623415116221e-05,0.00014088476018514484,-7.684623415116221e-05,1.919079821807373e-21,-1.044749813364627e-21,6.403852694347734e-06,-6.548505777937105e-22,2.288603878290811e-22,-1.6924150141174114e-36,1.608918734888618e-23,-7.988156198700863e-24,0.0003622750809881836,-6.037918137735687e-05,-0.00014491003821603954,1.0340811019724144e-20,-6.548505777937105e-22,2.4151671823346987e-05,-1.5317451288631195e-21,-3.6382324571533123e-37,-7.433630054135917e-23,-2.9586966624121335e-23,0.0001811375404940918,-3.0189590688678436e-05,0.0,-3.0189590688678436e-05,2.288603878290811e-22,-1.5317451288631195e-21,5.031598448113073e-06,3.6648624999932766e-35,1.2840730968824823e-21,3.3881317890172014e-21,0.0005283178179524839,-2.1666711874356403e-34,-0.0007924767560325563,-8.705430746242825e-19,-1.6924150141174114e-36,-3.6382324571533123e-37,3.6648624999932766e-35,0.00015849535702727735,5.570368015546775e-20,6.094032796899368e-20,0.0003622750809881836,-6.776263578034403e-21,-0.00014491003821603954,-6.037918137735687e-05,1.608918734888618e-23,-7.433630054135917e-23,1.2840730968824823e-21,5.570368015546775e-20,2.4151671823346987e-05,4.235164736271502e-21,0.00014088476018514484,-2.0328790734103208e-20,-3.2864878353466853e-19,-7.684623415116221e-05,-7.988156198700863e-24,-2.9586966624121335e-23,3.3881317890172014e-21,6.094032796899368e-20,4.235164736271502e-21,6.403852694347734e-06,13.0,6.0,14.0,0.03137381374835968,-0.0038237273693084717,-0.007297039497643709,-0.003581240074709058,0.00013082155783195049,0.00033639828325249255,0.00015698587230872363,0.0004905808600597084,0.00031397174461744726,0.00011446886492194608,-0.0038237273693084717,0.0012319313827902079,0.00033639828325249255,0.00015698587230872363,-7.135721534723416e-05,-5.6066382967401296e-05,-2.616431265778374e-05,-9.62964972193618e-35,7.623296525288703e-21,1.1858461261560205e-20,-0.007297039497643709,0.00033639828325249255,0.005617010407149792,0.00031397174461744726,2.740739569227106e-22,-0.0001345593191217631,1.5246593050577406e-20,-0.0007358712609857321,-0.000125588703667745,1.3891340334970526e-19,-0.003581240074709058,0.00015698587230872363,0.00031397174461744726,0.0010660699335858226,7.283059731394275e-22,8.322014534683825e-21,-2.4151671823346987e-05,4.2207237137399744e-19,-4.8303343646693975e-05,-5.723443246097304e-05,0.00013082155783195049,-7.135721534723416e-05,2.740739569227106e-22,7.283059731394275e-22,5.946434612269513e-06,2.5652459119370396e-22,1.7703351377705793e-22,1.400772831665655e-36,-1.2660633140638652e-22,-1.710614202059769e-22,0.00033639828325249255,-5.6066382967401296e-05,-0.0001345593191217631,8.322014534683825e-21,2.5652459119370396e-22,2.242655318696052e-05,-1.483000441652878e-21,-3.253631183803706e-37,-2.6193743760324665e-24,-2.7008634708835254e-23,0.00015698587230872363,-2.616431265778374e-05,1.5246593050577406e-20,-2.4151671823346987e-05,1.7703351377705793e-22,-1.483000441652878e-21,4.0252789403893985e-06,1.252220755467848e-35,-7.950557731117272e-22,-1.9058241313221758e-21,0.0004905808600597084,-9.62964972193618e-35,-0.0007358712609857321,4.2207237137399744e-19,1.400772831665655e-36,-3.253631183803706e-37,1.252220755467848e-35,0.0001471742580179125,-4.1379878164027134e-20,-2.4509437482541503e-20,0.00031397174461744726,7.623296525288703e-21,-0.000125588703667745,-4.8303343646693975e-05,-1.2660633140638652e-22,-2.6193743760324665e-24,-7.950557731117272e-22,-4.1379878164027134e-20,1.932133818627335e-05,-1.6940658945086007e-21,0.00011446886492194608,1.1858461261560205e-20,1.3891340334970526e-19,-5.723443246097304e-05,-1.710614202059769e-22,-2.7008634708835254e-23,-1.9058241313221758e-21,-2.4509437482541503e-20,-1.6940658945086007e-21,4.402648755785776e-06,13.0,6.0,15.0,0.029486024752259254,-0.0035779697354882956,-0.006828885525465012,-0.0031512605492025614,0.00012210012937430292,0.00031397174461744726,0.00013736264372710139,0.0004578754596877843,0.00027472528745420277,9.426847827853635e-05,-0.0035779697354882956,0.0011513287900015712,0.00031397174461744726,0.00013736264372710139,-6.660006329184398e-05,-5.232862531556748e-05,-2.2893773348187096e-05,6.018531076210112e-35,-3.3881317890172014e-21,-7.623296525288703e-21,-0.006828885525465012,0.00031397174461744726,0.005249869078397751,0.00027472528745420277,5.802686133446911e-21,-0.000125588703667745,4.235164736271502e-21,-0.0006868132040835917,-0.00010989011207129806,8.978549240895584e-20,-0.0031512605492025614,0.00013736264372710139,0.00027472528745420277,0.0008707625092938542,3.0390393561967327e-21,9.818459387593978e-21,-1.9623234038590454e-05,3.5861353047137267e-19,-3.924646807718091e-05,-4.3508527596713975e-05,0.00012210012937430292,-6.660006329184398e-05,5.802686133446911e-21,3.0390393561967327e-21,5.550005425902782e-06,-8.605261290481799e-22,-3.438478583306187e-22,3.5418267101318335e-37,-9.1361338825658e-23,-1.202420288150041e-22,0.00031397174461744726,-5.232862531556748e-05,-0.000125588703667745,9.818459387593978e-21,-8.605261290481799e-22,2.093144939863123e-05,-1.4137350715389115e-21,-2.3500961305747387e-37,-4.707765687899765e-24,-7.576897291943639e-23,0.00013736264372710139,-2.2893773348187096e-05,4.235164736271502e-21,-1.9623234038590454e-05,-3.438478583306187e-22,-1.4137350715389115e-21,3.2705390822229674e-06,-8.108958798915613e-36,5.721756830071415e-22,1.0587911840678754e-21,0.0004578754596877843,6.018531076210112e-35,-0.0006868132040835917,3.5861353047137267e-19,3.5418267101318335e-37,-2.3500961305747387e-37,-8.108958798915613e-36,0.00013736264372710139,-3.1379739540878394e-20,-2.0011726912315377e-20,0.00027472528745420277,-3.3881317890172014e-21,-0.00010989011207129806,-3.924646807718091e-05,-9.1361338825658e-23,-4.707765687899765e-24,5.721756830071415e-22,-3.1379739540878394e-20,1.5698587958468124e-05,1.6940658945086007e-21,9.426847827853635e-05,-7.623296525288703e-21,8.978549240895584e-20,-4.3508527596713975e-05,-1.202420288150041e-22,-7.576897291943639e-23,1.0587911840678754e-21,-2.0011726912315377e-20,1.6940658945086007e-21,3.1077520361577626e-06,13.0,6.0,16.0,0.027812888845801353,-0.0033619217574596405,-0.006417230237275362,-0.002794387051835656,0.00011446886492194608,0.000294348516035825,0.00012120232713641599,0.0004292582452762872,0.00024240465427283198,7.855706644477323e-05,-0.0033619217574596405,0.0010806332575157285,0.000294348516035825,0.00012120232713641599,-6.243756070034578e-05,-4.9058086005970836e-05,-2.0200388462399133e-05,4.2129717533470784e-35,1.6940658945086007e-21,-5.929230630780102e-21,-0.006417230237275362,0.000294348516035825,0.004927812609821558,0.00024240465427283198,-2.9857383093721304e-21,-0.00011773940059356391,9.317362419797304e-21,-0.000643887382466346,-9.696186316432431e-05,8.639736061993863e-20,-0.002794387051835656,0.00012120232713641599,0.00024240465427283198,0.0007204805151559412,-6.938333321828955e-22,7.499006983697642e-21,-1.6160311133717187e-05,2.482982165900691e-19,-3.2320622267434373e-05,-3.3667314710328355e-05,0.00011446886492194608,-6.243756070034578e-05,-2.9857383093721304e-21,-6.938333321828955e-22,5.203130058362149e-06,1.3424985084167533e-22,7.537629058259185e-24,-9.510758412412823e-38,6.482310503004965e-23,-4.047150531129257e-23,0.000294348516035825,-4.9058086005970836e-05,-0.00011773940059356391,7.499006983697642e-21,1.3424985084167533e-22,1.9623234038590454e-05,-1.3565247077470726e-21,-6.275420339281799e-38,3.809262267639533e-23,7.675928365630188e-23,0.00012120232713641599,-2.0200388462399133e-05,9.317362419797304e-21,-1.6160311133717187e-05,7.537629058259185e-24,-1.3565247077470726e-21,2.6933851131616393e-06,-4.232550220170186e-36,-3.0287689678123813e-22,6.352747104407253e-22,0.0004292582452762872,4.2129717533470784e-35,-0.000643887382466346,2.482982165900691e-19,-9.510758412412823e-38,-6.275420339281799e-38,-4.232550220170186e-36,0.00012877747940365225,3.009265538105056e-36,-1.6553213685397277e-20,0.00024240465427283198,1.6940658945086007e-21,-9.696186316432431e-05,-3.2320622267434373e-05,6.482310503004965e-23,3.809262267639533e-23,-3.0287689678123813e-22,3.009265538105056e-36,1.2928247997479048e-05,-6.352747104407253e-22,7.855706644477323e-05,-5.929230630780102e-21,8.639736061993863e-20,-3.3667314710328355e-05,-4.047150531129257e-23,7.675928365630188e-23,6.352747104407253e-22,-1.6553213685397277e-20,-6.352747104407253e-22,2.2444876321969787e-06,13.0,7.0,3.0,0.09547793120145798,-0.01373626384884119,-0.023090004920959473,-0.04297488182783127,0.0005232862313278019,0.0011773940641433,0.0023547881282866,0.001526251551695168,0.004120879340916872,0.005494505632668734,-0.01373626384884119,0.004667951259762049,0.0011773940641433,0.0023547881282866,-0.00028542886138893664,-0.00019623234402388334,-0.0003924646880477667,9.75781955236954e-19,1.4094628242311558e-18,-4.882752030130079e-18,-0.023090004920959473,0.0011773940641433,0.015633177012205124,0.004120879340916872,1.3552527156068805e-19,-0.0003924646880477667,1.8431436932253575e-18,-0.0018315018387511373,-0.0013736264081671834,-2.989696424179394e-17,-0.04297488182783127,0.0023547881282866,0.004120879340916872,0.09791993349790573,4.871861163390052e-19,-5.153371405357162e-19,-0.0023547881282866,-5.139833147066659e-18,-0.004120879340916872,-0.032967034727334976,0.0005232862313278019,-0.00028542886138893664,1.3552527156068805e-19,4.871861163390052e-19,2.3785738449078053e-05,3.3881317890172014e-21,-2.0752307207730358e-20,-1.5246593050577406e-20,-5.082197683525802e-20,-6.741019867825962e-20,0.0011773940641433,-0.00019623234402388334,-0.0003924646880477667,-5.153371405357162e-19,3.3881317890172014e-21,6.541077891597524e-05,-1.238289215433169e-20,-1.4568966692773966e-19,-1.6940658945086007e-19,5.558241677013718e-19,0.0023547881282866,-0.0003924646880477667,1.8431436932253575e-18,-0.0023547881282866,-2.0752307207730358e-20,-1.238289215433169e-20,0.0003924646880477667,-2.4014728223154813e-19,-2.879557883964872e-19,4.3188894763322815e-18,0.001526251551695168,9.75781955236954e-19,-0.0018315018387511373,-5.139833147066659e-18,-1.5246593050577406e-20,-1.4568966692773966e-19,-2.4014728223154813e-19,0.0003052503161597997,-1.4907779871675686e-19,3.545698528770284e-18,0.004120879340916872,1.4094628242311558e-18,-0.0013736264081671834,-0.004120879340916872,-5.082197683525802e-20,-1.6940658945086007e-19,-2.879557883964872e-19,-1.4907779871675686e-19,0.0013736264081671834,5.078089077423251e-18,0.005494505632668734,-4.882752030130079e-18,-2.989696424179394e-17,-0.032967034727334976,-6.741019867825962e-20,5.558241677013718e-19,4.3188894763322815e-18,3.545698528770284e-18,5.078089077423251e-18,0.016483517363667488,13.0,7.0,4.0,0.07777995616197586,-0.010655416175723076,-0.017935635522007942,-0.027433281764388084,0.0003924646880477667,0.000883045548107475,0.001412872807122767,0.0011446886928752065,0.0024725275579839945,0.002747252816334367,-0.010655416175723076,0.00355983292683959,0.000883045548107475,0.001412872807122767,-0.00021407163876574486,-0.0001471742580179125,-0.00023547880118712783,9.063663023999993e-19,1.802782035621292e-18,3.2473448215800635e-18,-0.017935635522007942,0.000883045548107475,0.011930925771594048,0.0024725275579839945,4.992631083786443e-19,-0.000294348516035825,1.905140880136207e-18,-0.0013736264081671834,-0.0008241758332587779,1.010644971078104e-17,-0.027433281764388084,0.001412872807122767,0.0024725275579839945,0.03751962259411812,6.825922849121141e-19,1.7275651583533498e-18,-0.0009419152047485113,4.980773759898225e-18,-0.0016483516665175557,-0.008241758681833744,0.0003924646880477667,-0.00021407163876574486,4.992631083786443e-19,6.825922849121141e-19,1.783930383680854e-05,-9.219461878451245e-21,-1.064060744622493e-20,-5.570518588267653e-20,-5.231421712265222e-20,-1.4093606674255055e-19,0.000883045548107475,-0.0001471742580179125,-0.000294348516035825,1.7275651583533498e-18,-9.219461878451245e-21,4.9058086005970836e-05,-5.604492446988855e-20,-1.935330083824597e-20,-1.6775348192136991e-19,-2.5331033656607517e-19,0.001412872807122767,-0.00023547880118712783,1.905140880136207e-18,-0.0009419152047485113,-1.064060744622493e-20,-5.604492446988855e-20,0.00015698587230872363,-1.4524778445957442e-19,-3.877203618658886e-19,-4.2131131351166037e-19,0.0011446886928752065,9.063663023999993e-19,-0.0013736264081671834,4.980773759898225e-18,-5.570518588267653e-20,-1.935330083824597e-20,-1.4524778445957442e-19,0.00022893772984389216,-4.0614188090259767e-19,-9.148864695044486e-19,0.0024725275579839945,1.802782035621292e-18,-0.0008241758332587779,-0.0016483516665175557,-5.231421712265222e-20,-1.6775348192136991e-19,-3.877203618658886e-19,-4.0614188090259767e-19,0.0005494505749084055,-2.0448161168300736e-18,0.002747252816334367,3.2473448215800635e-18,1.010644971078104e-17,-0.008241758681833744,-1.4093606674255055e-19,-2.5331033656607517e-19,-4.2131131351166037e-19,-9.148864695044486e-19,-2.0448161168300736e-18,0.002747252816334367,13.0,7.0,5.0,0.06572475284337997,-0.008712715469300747,-0.014678179286420345,-0.019073782488703728,0.00031397174461744726,0.0007064364035613835,0.0009419152047485113,0.0009157509193755686,0.0016483516665175557,0.0015698587521910667,-0.008712715469300747,0.002879263600334525,0.0007064364035613835,0.0009419152047485113,-0.00017125731392297894,-0.00011773940059356391,-0.00015698587230872363,-1.1334987248736381e-18,-4.2311516178309124e-19,1.788478635264178e-18,-0.014678179286420345,0.0007064364035613835,0.009654630906879902,0.0016483516665175557,-1.918052316468153e-19,-0.00023547880118712783,-3.2053714025524383e-19,-0.001098901149816811,-0.0005494505749084055,8.271799508085376e-18,-0.019073782488703728,0.0009419152047485113,0.0016483516665175557,0.01895604468882084,-2.2190544233352207e-19,6.726904676907598e-19,-0.00047095760237425566,9.824262835072862e-19,-0.0008241758332587779,-0.0031397175043821335,0.00031397174461744726,-0.00017125731392297894,-1.918052316468153e-19,-2.2190544233352207e-19,1.4271442523750011e-05,7.21182748491899e-21,6.986501547354985e-21,1.6022131420395556e-20,2.4506673212955413e-20,2.831066682375938e-20,0.0007064364035613835,-0.00011773940059356391,-0.00023547880118712783,6.726904676907598e-19,7.21182748491899e-21,3.924646807718091e-05,-8.975678665676083e-21,2.1606645193769268e-19,6.396768622631559e-20,-2.0378658092812792e-19,0.0009419152047485113,-0.00015698587230872363,-3.2053714025524383e-19,-0.00047095760237425566,6.986501547354985e-21,-8.975678665676083e-21,7.849293615436181e-05,7.884496252043368e-20,-7.626631743367911e-20,-6.738461424040729e-19,0.0009157509193755686,-1.1334987248736381e-18,-0.001098901149816811,9.824262835072862e-19,1.6022131420395556e-20,2.1606645193769268e-19,7.884496252043368e-20,0.00018315018678549677,1.4197134790264602e-19,-4.715458887144292e-19,0.0016483516665175557,-4.2311516178309124e-19,-0.0005494505749084055,-0.0008241758332587779,2.4506673212955413e-20,6.396768622631559e-20,-7.626631743367911e-20,1.4197134790264602e-19,0.00027472528745420277,-1.956447378015268e-18,0.0015698587521910667,1.788478635264178e-18,8.271799508085376e-18,-0.0031397175043821335,2.831066682375938e-20,-2.0378658092812792e-19,-6.738461424040729e-19,-4.715458887144292e-19,-1.956447378015268e-18,0.0007849293760955334,13.0,7.0,6.0,0.056947872042655945,-0.007372729480266571,-0.012428048066794872,-0.014044628478586674,0.00026164311566390097,0.00058869703207165,0.0006727965665049851,0.000763125775847584,0.0011773940641433,0.0009811617201194167,-0.007372729480266571,0.0024180752225220203,0.00058869703207165,0.0006727965665049851,-0.00014271443069446832,-9.811617201194167e-05,-0.00011213276593480259,3.843223814577032e-19,-6.545120234318677e-20,6.000507750188031e-19,-0.012428048066794872,0.00058869703207165,0.008110936731100082,0.0011773940641433,2.8298417442110207e-20,-0.00019623234402388334,-2.9799995823138304e-19,-0.0009157509193755686,-0.0003924646880477667,-2.063154297420068e-18,-0.014044628478586674,0.0006727965665049851,0.0011773940641433,0.0110142407938838,4.268857353584435e-19,-1.1002139334520875e-19,-0.0002691186382435262,-2.652014869714677e-18,-0.00047095760237425566,-0.0014717425219714642,0.00026164311566390097,-0.00014271443069446832,2.8298417442110207e-20,4.268857353584435e-19,1.1892869224539027e-05,5.368206285529165e-21,-5.419683738376386e-21,-6.978891324160784e-21,-8.808975115058939e-21,-7.223288783164251e-20,0.00058869703207165,-9.811617201194167e-05,-0.00019623234402388334,-1.1002139334520875e-19,5.368206285529165e-21,3.270538945798762e-05,1.0513714385967601e-20,-6.998195490147526e-20,-1.370452805597396e-20,1.545410552440311e-20,0.0006727965665049851,-0.00011213276593480259,-2.9799995823138304e-19,-0.0002691186382435262,-5.419683738376386e-21,1.0513714385967601e-20,4.485310637392104e-05,1.0506609841546308e-20,7.804909844888402e-20,1.0731750794383483e-19,0.000763125775847584,3.843223814577032e-19,-0.0009157509193755686,-2.652014869714677e-18,-6.978891324160784e-21,-6.998195490147526e-20,1.0506609841546308e-20,0.00015262515807989985,3.0774673078667193e-19,3.2881013545290466e-19,0.0011773940641433,-6.545120234318677e-20,-0.0003924646880477667,-0.00047095760237425566,-8.808975115058939e-21,-1.370452805597396e-20,7.804909844888402e-20,3.0774673078667193e-19,0.00015698587230872363,5.416309180750468e-20,0.0009811617201194167,6.000507750188031e-19,-2.063154297420068e-18,-0.0014717425219714642,-7.223288783164251e-20,1.545410552440311e-20,1.0731750794383483e-19,3.2881013545290466e-19,5.416309180750468e-20,0.000294348516035825,13.0,7.0,7.0,0.05025884136557579,-0.0063915676437318325,-0.010778762400150299,-0.010778762400150299,0.00022426553186960518,0.000504597439430654,0.000504597439430654,0.0006541077746078372,0.000883045548107475,0.0006541077746078372,-0.0063915676437318325,0.0020846500992774963,0.000504597439430654,0.000504597439430654,-0.0001223266590386629,-8.409957081312314e-05,-8.409957081312314e-05,2.1260825536585282e-19,-1.5203962229757954e-19,2.6880376548131723e-19,-0.010778762400150299,0.000504597439430654,0.006994281429797411,0.000883045548107475,2.1402782654396453e-19,-0.00016819914162624627,-5.870880793382729e-20,-0.0007849293760955334,-0.000294348516035825,-1.1612345044028474e-18,-0.010778762400150299,0.000504597439430654,0.000883045548107475,0.006994281429797411,1.6849996072541074e-19,-5.515816423501183e-21,-0.00016819914162624627,-1.2804738304732852e-18,-0.000294348516035825,-0.0007849293760955334,0.00022426553186960518,-0.0001223266590386629,2.1402782654396453e-19,1.6849996072541074e-19,1.0193887646892108e-05,-1.3280631111576778e-21,-3.8232421198139485e-21,-2.997961033833595e-20,-5.903817445163971e-21,-1.9896453154725004e-20,0.000504597439430654,-8.409957081312314e-05,-0.00016819914162624627,-5.515816423501183e-21,-1.3280631111576778e-21,2.8033191483700648e-05,-7.326037378381695e-21,4.7946829504168675e-20,4.033787616145467e-20,-9.589365900833735e-21,0.000504597439430654,-8.409957081312314e-05,-5.870880793382729e-20,-0.00016819914162624627,-3.8232421198139485e-21,-7.326037378381695e-21,2.8033191483700648e-05,-2.0846447873919065e-21,4.033787616145467e-20,1.3758655071720765e-20,0.0006541077746078372,2.1260825536585282e-19,-0.0007849293760955334,-1.2804738304732852e-18,-2.997961033833595e-20,4.7946829504168675e-20,-2.0846447873919065e-21,0.00013082155783195049,1.90405719598558e-19,1.073163576457955e-19,0.000883045548107475,-1.5203962229757954e-19,-0.000294348516035825,-0.000294348516035825,-5.903817445163971e-21,4.033787616145467e-20,4.033787616145467e-20,1.90405719598558e-19,9.811617201194167e-05,1.6152233036700796e-19,0.0006541077746078372,2.6880376548131723e-19,-1.1612345044028474e-18,-0.0007849293760955334,-1.9896453154725004e-20,-9.589365900833735e-21,1.3758655071720765e-20,1.073163576457955e-19,1.6152233036700796e-19,0.00013082155783195049,13.0,7.0,8.0,0.044986262917518616,-0.005641679745167494,-0.009517268277704716,-0.008536106906831264,0.00019623234402388334,0.0004415227740537375,0.0003924646880477667,0.0005723443464376032,0.0006868132040835917,0.0004578754596877843,-0.005641679745167494,0.0018322451505810022,0.0004415227740537375,0.0003924646880477667,-0.00010703581938287243,-7.358712900895625e-05,-6.541077891597524e-05,2.398025805606608e-19,-1.5487985032835693e-19,-1.741641381310044e-20,-0.009517268277704716,0.0004415227740537375,0.006148613523691893,0.0006868132040835917,-2.2896162900072325e-19,-0.0001471742580179125,1.6427359770784468e-19,-0.0006868132040835917,-0.00022893772984389216,-3.6177270771412314e-20,-0.008536106906831264,0.0003924646880477667,0.0006868132040835917,0.004728265106678009,-2.666844253543798e-19,1.5958233333662968e-19,-0.00011213276593480259,-2.6571675328466347e-19,-0.00019623234402388334,-0.0004578754596877843,0.00019623234402388334,-0.00010703581938287243,-2.2896162900072325e-19,-2.666844253543798e-19,8.91965191840427e-06,1.4833668366200056e-20,9.646127131402352e-21,9.242615665460627e-21,1.7919357396991155e-20,1.8485231330921254e-20,0.0004415227740537375,-7.358712900895625e-05,-0.0001471742580179125,1.5958233333662968e-19,1.4833668366200056e-20,2.4529043002985418e-05,1.4534828569230926e-21,-9.431159853864726e-20,-2.186567454076826e-20,-2.1786166651148003e-20,0.0003924646880477667,-6.541077891597524e-05,1.6427359770784468e-19,-0.00011213276593480259,9.646127131402352e-21,1.4534828569230926e-21,1.8688793716137297e-05,-2.9739844282969213e-20,-1.0893641510928761e-20,-4.8027453764498453e-20,0.0005723443464376032,2.398025805606608e-19,-0.0006868132040835917,-2.6571675328466347e-19,9.242615665460627e-21,-9.431159853864726e-20,-2.9739844282969213e-20,0.00011446886492194608,3.6177273194793015e-21,5.0834387775620584e-20,0.0006868132040835917,-1.5487985032835693e-19,-0.00022893772984389216,-0.00019623234402388334,1.7919357396991155e-20,-2.186567454076826e-20,-1.0893641510928761e-20,3.6177273194793015e-21,6.541077891597524e-05,-5.3984698676180254e-20,0.0004578754596877843,-1.741641381310044e-20,-3.6177270771412314e-20,-0.0004578754596877843,1.8485231330921254e-20,-2.1786166651148003e-20,-4.8027453764498453e-20,5.0834387775620584e-20,-5.3984698676180254e-20,6.541077891597524e-05,13.0,7.0,9.0,0.040720656514167786,-0.005049712024629116,-0.008520844392478466,-0.00692878570407629,0.00017442874377593398,0.0003924646880477667,0.00031397174461744726,0.000508750497829169,0.0005494505749084055,0.0003330003237351775,-0.005049712024629116,0.0016344765899702907,0.0003924646880477667,0.00031397174461744726,-9.514295379631221e-05,-6.541077891597524e-05,-5.232862531556748e-05,0.0,0.0,-0.0,-0.008520844392478466,0.0003924646880477667,0.005485784262418747,0.0005494505749084055,3.6310276405590726e-21,-0.00013082155783195049,9.172492923449543e-22,-0.0006105006323195994,-0.00018315018678549677,-0.0,-0.00692878570407629,0.00031397174461744726,0.0005494505749084055,0.0033496266696602106,0.0,9.172492923449543e-22,-7.849293615436181e-05,0.0,-0.00013736264372710139,-0.00028542886138893664,0.00017442874377593398,-9.514295379631221e-05,3.6310276405590726e-21,0.0,7.928579179861117e-06,-6.051712734265121e-22,0.0,0.0,0.0,-0.0,0.0003924646880477667,-6.541077891597524e-05,-0.00013082155783195049,9.172492923449543e-22,-6.051712734265121e-22,2.1803592971991748e-05,-1.5287488205749239e-22,0.0,0.0,-0.0,0.00031397174461744726,-5.232862531556748e-05,9.172492923449543e-22,-7.849293615436181e-05,0.0,-1.5287488205749239e-22,1.308215632889187e-05,0.0,0.0,-0.0,0.000508750497829169,0.0,-0.0006105006323195994,0.0,0.0,0.0,0.0,0.0001017501053865999,0.0,-0.0,0.0005494505749084055,0.0,-0.00018315018678549677,-0.00013736264372710139,0.0,0.0,0.0,0.0,4.578754669637419e-05,-0.0,0.0003330003237351775,-0.0,-0.0,-0.00028542886138893664,-0.0,-0.0,-0.0,-0.0,-0.0,3.567860767361708e-05,13.0,7.0,10.0,0.03719732537865639,-0.004570429679006338,-0.0077137150801718235,-0.005737119819968939,0.00015698587230872363,0.00035321820178069174,0.000256885978160426,0.0004578754596877843,0.0004495504545047879,0.00024975024280138314,-0.004570429679006338,0.001475310418754816,0.00035321820178069174,0.000256885978160426,-8.562865696148947e-05,-5.886970029678196e-05,-4.2814328480744734e-05,0.0,0.0,-0.0,-0.0077137150801718235,0.00035321820178069174,0.0049521904438734055,0.0004495504545047879,0.0,-0.00011773940059356391,0.0,-0.0005494505749084055,-0.00014985015150159597,-0.0,-0.005737119819968939,0.000256885978160426,0.0004495504545047879,0.002461229218170047,-7.922242042240907e-22,0.0,-5.7085770095000044e-05,0.0,-9.990009857574478e-05,-0.00018731268937699497,0.00015698587230872363,-8.562865696148947e-05,0.0,-7.922242042240907e-22,7.1357212618750054e-06,0.0,1.3203736737068179e-22,0.0,0.0,-0.0,0.00035321820178069174,-5.886970029678196e-05,-0.00011773940059356391,0.0,0.0,1.9623234038590454e-05,0.0,0.0,0.0,-0.0,0.000256885978160426,-4.2814328480744734e-05,0.0,-5.7085770095000044e-05,1.3203736737068179e-22,0.0,9.51429501583334e-06,0.0,0.0,-0.0,0.0004578754596877843,0.0,-0.0005494505749084055,0.0,0.0,0.0,0.0,9.157509339274839e-05,0.0,-0.0,0.0004495504545047879,0.0,-0.00014985015150159597,-9.990009857574478e-05,0.0,0.0,0.0,0.0,3.330003164592199e-05,-0.0,0.00024975024280138314,-0.0,-0.0,-0.00018731268937699497,-0.0,-0.0,-0.0,-0.0,-0.0,2.0812520233448595e-05,13.0,7.0,11.0,0.03423728421330452,-0.004174396861344576,-0.007046524900943041,-0.004828962031751871,0.00014271443069446832,0.0003211074508726597,0.00021407163876574486,0.0004162504046689719,0.00037462537875398993,0.0001921155781019479,-0.004174396861344576,0.0013444348005577922,0.0003211074508726597,0.00021407163876574486,-7.784423360135406e-05,-5.3517909691436216e-05,-3.567860767361708e-05,0.0,-1.6940658945086007e-21,0.0,-0.007046524900943041,0.0003211074508726597,0.004513343796133995,0.00037462537875398993,-9.06939019153235e-22,-0.00010703581938287243,0.0,-0.0004995004856027663,-0.00012487512140069157,0.0,-0.004828962031751871,0.00021407163876574486,0.00037462537875398993,0.001862331759184599,1.450353085991508e-22,-1.6153153113573547e-21,-4.2814328480744734e-05,-0.0,-7.492507575079799e-05,-0.00012807705206796527,0.00014271443069446832,-7.784423360135406e-05,-9.06939019153235e-22,1.450353085991508e-22,6.4870196183619555e-06,-1.1480297802391178e-22,2.1215072351291513e-22,0.0,-1.966179323822558e-23,-1.576954911424404e-22,0.0003211074508726597,-5.3517909691436216e-05,-0.00010703581938287243,-1.6153153113573547e-21,-1.1480297802391178e-22,1.783930383680854e-05,4.130715197908043e-23,0.0,1.1801689674825624e-23,1.235683965059442e-22,0.00021407163876574486,-3.567860767361708e-05,0.0,-4.2814328480744734e-05,2.1215072351291513e-22,4.130715197908043e-23,7.1357212618750054e-06,0.0,4.248940140942833e-22,0.0,0.0004162504046689719,0.0,-0.0004995004856027663,-0.0,0.0,0.0,0.0,8.325008093379438e-05,0.0,0.0,0.00037462537875398993,-1.6940658945086007e-21,-0.00012487512140069157,-7.492507575079799e-05,-1.966179323822558e-23,1.1801689674825624e-23,4.248940140942833e-22,0.0,2.4975024643936194e-05,-8.470329472543003e-22,0.0001921155781019479,0.0,0.0,-0.00012807705206796527,-1.576954911424404e-22,1.235683965059442e-22,0.0,0.0,-8.470329472543003e-22,1.2807705388695467e-05,13.0,7.0,12.0,0.03171500191092491,-0.0038416252937167883,-0.006485730409622192,-0.004120879340916872,0.00013082155783195049,0.000294348516035825,0.0001811375404940918,0.000381562887923792,0.0003169907140545547,0.00015094794798642397,-0.0038416252937167883,0.0012349144089967012,0.000294348516035825,0.0001811375404940918,-7.135721534723416e-05,-4.9058086005970836e-05,-3.0189590688678436e-05,0.0,-6.776263578034403e-21,-1.5246593050577406e-20,-0.006485730409622192,0.000294348516035825,0.00414603715762496,0.0003169907140545547,-8.279169163892992e-21,-9.811617201194167e-05,-5.929230630780102e-21,-0.0004578754596877843,-0.00010566356650087982,-2.371692252312041e-20,-0.004120879340916872,0.0001811375404940918,0.0003169907140545547,0.0014436113415285945,7.663614310008561e-22,-1.2521332421680125e-21,-3.2934098271653056e-05,-0.0,-5.763467197539285e-05,-9.05687702470459e-05,0.00013082155783195049,-7.135721534723416e-05,-8.279169163892992e-21,7.663614310008561e-22,5.946434612269513e-06,1.3286584550165172e-21,2.3036694807498493e-22,-0.0,8.190292812649428e-23,-1.6786695005838977e-22,0.000294348516035825,-4.9058086005970836e-05,-9.811617201194167e-05,-1.2521332421680125e-21,1.3286584550165172e-21,1.635269472899381e-05,2.4046828041190378e-22,0.0,4.81347147147757e-23,7.895261358451666e-23,0.0001811375404940918,-3.0189590688678436e-05,-5.929230630780102e-21,-3.2934098271653056e-05,2.3036694807498493e-22,2.4046828041190378e-22,5.489016530191293e-06,0.0,1.028865865535174e-21,2.964615315390051e-21,0.000381562887923792,0.0,-0.0004578754596877843,-0.0,-0.0,0.0,0.0,7.631257903994992e-05,0.0,0.0,0.0003169907140545547,-6.776263578034403e-21,-0.00010566356650087982,-5.763467197539285e-05,8.190292812649428e-23,4.81347147147757e-23,1.028865865535174e-21,0.0,1.9211558537790552e-05,4.235164736271502e-21,0.00015094794798642397,-1.5246593050577406e-20,-2.371692252312041e-20,-9.05687702470459e-05,-1.6786695005838977e-22,7.895261358451666e-23,2.964615315390051e-21,0.0,4.235164736271502e-21,8.233524567913264e-06,13.0,7.0,13.0,0.029539795592427254,-0.0035580589901655912,-0.006007728632539511,-0.0035580589901655912,0.00012075836275471374,0.00027170631801709533,0.00015526075731031597,0.00035221187863498926,0.00027170631801709533,0.00012075836275471374,-0.0035580589901655912,0.0011419114889577031,0.00027170631801709533,0.00015526075731031597,-6.586819654330611e-05,-4.528438512352295e-05,-2.587679227872286e-05,0.0,9.317362419797304e-21,1.0164395367051604e-20,-0.006007728632539511,0.00027170631801709533,0.003834078088402748,0.00027170631801709533,2.5443665686895906e-21,-9.05687702470459e-05,2.541098841762901e-21,-0.0004226542660035193,-9.05687702470459e-05,2.0328790734103208e-20,-0.0035580589901655912,0.00015526075731031597,0.00027170631801709533,0.0011419114889577031,3.922634251981374e-21,-3.961801334765116e-21,-2.587679227872286e-05,-0.0,-4.528438512352295e-05,-6.586819654330611e-05,0.00012075836275471374,-6.586819654330611e-05,2.5443665686895906e-21,3.922634251981374e-21,5.489016530191293e-06,-5.3453740003594275e-22,-7.551912110700245e-22,-0.0,-1.9517213966960295e-23,1.2725502750596786e-22,0.00027170631801709533,-4.528438512352295e-05,-9.05687702470459e-05,-3.961801334765116e-21,-5.3453740003594275e-22,1.5094795344339218e-05,8.480754048524446e-22,0.0,-6.505977592339044e-23,6.040573008541442e-23,0.00015526075731031597,-2.587679227872286e-05,2.541098841762901e-21,-2.587679227872286e-05,-7.551912110700245e-22,8.480754048524446e-22,4.312798864702927e-06,0.0,-1.1467346599593622e-21,-1.6940658945086007e-21,0.00035221187863498926,0.0,-0.0004226542660035193,-0.0,-0.0,0.0,0.0,7.044238009257242e-05,0.0,0.0,0.00027170631801709533,9.317362419797304e-21,-9.05687702470459e-05,-4.528438512352295e-05,-1.9517213966960295e-23,-6.505977592339044e-23,-1.1467346599593622e-21,0.0,1.5094795344339218e-05,-3.3881317890172014e-21,0.00012075836275471374,1.0164395367051604e-20,2.0328790734103208e-20,-6.586819654330611e-05,1.2725502750596786e-22,6.040573008541442e-23,-1.6940658945086007e-21,0.0,-3.3881317890172014e-21,5.489016530191293e-06,13.0,7.0,14.0,0.027644464746117592,-0.0033135232515633106,-0.005595425143837929,-0.0031032743863761425,0.00011213276593480259,0.000252298719715327,0.0001345593191217631,0.0003270538873039186,0.00023547880118712783,9.811617201194167e-05,-0.0033135232515633106,0.00106194824911654,0.000252298719715327,0.0001345593191217631,-6.116332951933146e-05,-4.204978540656157e-05,-2.242655318696052e-05,0.0,-9.317362419797304e-21,-1.0164395367051604e-20,-0.005595425143837929,0.000252298719715327,0.0035658220294862986,0.00023547880118712783,-3.571475079319873e-21,-8.409957081312314e-05,2.541098841762901e-21,-0.0003924646880477667,-7.849293615436181e-05,-1.6940658945086007e-20,-0.0031032743863761425,0.0001345593191217631,0.00023547880118712783,0.0009189495467580855,-2.8956713461415335e-22,9.564740313945377e-21,-2.0701432731584646e-05,-0.0,-3.6227509554009885e-05,-4.9058086005970836e-05,0.00011213276593480259,-6.116332951933146e-05,-3.571475079319873e-21,-2.8956713461415335e-22,5.096943823446054e-06,6.112487083274327e-22,7.603445932392309e-23,0.0,-1.4771871678701232e-23,1.1301429587475193e-23,0.000252298719715327,-4.204978540656157e-05,-8.409957081312314e-05,9.564740313945377e-21,6.112487083274327e-22,1.4016595741850324e-05,-1.730983070260006e-21,-0.0,5.618982390508538e-23,9.890542392156551e-23,0.0001345593191217631,-2.242655318696052e-05,2.541098841762901e-21,-2.0701432731584646e-05,7.603445932392309e-23,-1.730983070260006e-21,3.450238864388666e-06,0.0,1.3470994733821388e-21,1.4823076576950256e-21,0.0003270538873039186,0.0,-0.0003924646880477667,-0.0,0.0,-0.0,0.0,6.541077891597524e-05,0.0,0.0,0.00023547880118712783,-9.317362419797304e-21,-7.849293615436181e-05,-3.6227509554009885e-05,-1.4771871678701232e-23,5.618982390508538e-23,1.3470994733821388e-21,0.0,1.2075835911673494e-05,2.964615315390051e-21,9.811617201194167e-05,-1.0164395367051604e-20,-1.6940658945086007e-20,-4.9058086005970836e-05,1.1301429587475193e-23,9.890542392156551e-23,1.4823076576950256e-21,0.0,2.964615315390051e-21,3.7736988360848045e-06,13.0,7.0,15.0,0.025978147983551025,-0.0031004708725959063,-0.005236133001744747,-0.002730515319854021,0.00010465725063113496,0.00023547880118712783,0.00011773940059356391,0.0003052503161597997,0.00020604395831469446,8.080155384959653e-05,-0.0031004708725959063,0.0009924599435180426,0.00023547880118712783,0.00011773940059356391,-5.7085770095000044e-05,-3.924646807718091e-05,-1.9623234038590454e-05,0.0,-4.235164736271502e-21,-7.623296525288703e-21,-0.005236133001744747,0.00023547880118712783,0.003332679159939289,0.00020604395831469446,-6.29536185330817e-21,-7.849293615436181e-05,2.541098841762901e-21,-0.00036630037357099354,-6.868132186355069e-05,-1.1858461261560205e-20,-0.002730515319854021,0.00011773940059356391,0.00020604395831469446,0.0007505728281103075,-3.528425336756603e-21,7.812217630171139e-21,-1.681991489022039e-05,-0.0,-2.943485014839098e-05,-3.729302261490375e-05,0.00010465725063113496,-5.7085770095000044e-05,-6.29536185330817e-21,-3.528425336756603e-21,4.75714750791667e-06,1.1835925638577928e-21,6.169211862158235e-22,0.0,-1.9956607124585683e-24,-3.434912427143609e-23,0.00023547880118712783,-3.924646807718091e-05,-7.849293615436181e-05,7.812217630171139e-21,1.1835925638577928e-21,1.308215632889187e-05,-1.255612711983438e-21,-0.0,-2.0852217476362107e-23,-1.2875103752612528e-23,0.00011773940059356391,-1.9623234038590454e-05,2.541098841762901e-21,-1.681991489022039e-05,6.169211862158235e-22,-1.255612711983438e-21,2.803319148370065e-06,0.0,4.82146736561289e-22,1.164670302474663e-21,0.0003052503161597997,0.0,-0.00036630037357099354,-0.0,0.0,-0.0,0.0,6.105006468715146e-05,0.0,0.0,0.00020604395831469446,-4.235164736271502e-21,-6.868132186355069e-05,-2.943485014839098e-05,-1.9956607124585683e-24,-2.0852217476362107e-23,4.82146736561289e-22,0.0,9.811617019295227e-06,1.6940658945086007e-21,8.080155384959653e-05,-7.623296525288703e-21,-1.1858461261560205e-20,-3.729302261490375e-05,-3.434912427143609e-23,-1.2875103752612528e-23,1.164670302474663e-21,0.0,1.6940658945086007e-21,2.663787427081843e-06,13.0,7.0,16.0,0.024501627311110497,-0.0029131844639778137,-0.004920237231999636,-0.0024211606942117214,9.811617201194167e-05,0.00022076138702686876,0.00010388770897407085,0.0002861721732188016,0.0001818034943426028,6.733462942065671e-05,-0.0029131844639778137,0.000931513321120292,0.00022076138702686876,0.00010388770897407085,-5.3517909691436216e-05,-3.679356450447813e-05,-1.731461816234514e-05,1.1975889889269764e-19,-6.522153693858113e-20,-3.218725199566341e-20,-0.004920237231999636,0.00022076138702686876,0.0031281744595617056,0.0001818034943426028,-1.2373913690393795e-19,-7.358712900895625e-05,2.0328790734103208e-20,-0.00034340660204179585,-6.0601163568207994e-05,-2.879912020664621e-20,-0.0024211606942117214,0.00010388770897407085,0.0001818034943426028,0.0006210176507011056,-8.76690021777226e-20,2.046858425762467e-20,-1.3851694347977173e-05,-1.3079257061066298e-19,-2.424046579108108e-05,-2.8857697543571703e-05,9.811617201194167e-05,-5.3517909691436216e-05,-1.2373913690393795e-19,-8.76690021777226e-20,4.459825959202135e-06,7.520667968195307e-21,2.820467784542749e-21,4.6213078327303136e-21,5.1432232563343284e-21,3.227141156453893e-21,0.00022076138702686876,-3.679356450447813e-05,-7.358712900895625e-05,2.046858425762467e-20,7.520667968195307e-21,1.2264521501492709e-05,9.734600115976972e-22,-4.715579926932363e-20,-4.299947760856679e-21,-1.827722812250363e-21,0.00010388770897407085,-1.731461816234514e-05,2.0328790734103208e-20,-1.3851694347977173e-05,2.820467784542749e-21,9.734600115976972e-22,2.308615648871637e-06,-6.92031175027297e-21,5.87576267360973e-22,-6.352747104407253e-22,0.0002861721732188016,1.1975889889269764e-19,-0.00034340660204179585,-1.3079257061066298e-19,4.6213078327303136e-21,-4.715579926932363e-20,-6.92031175027297e-21,5.723443246097304e-05,3.58502379692148e-21,9.255560557370942e-21,0.0001818034943426028,-6.522153693858113e-20,-6.0601163568207994e-05,-2.424046579108108e-05,5.1432232563343284e-21,-4.299947760856679e-21,5.87576267360973e-22,3.58502379692148e-21,8.080155566858593e-06,-3.1763735522036263e-21,6.733462942065671e-05,-3.218725199566341e-20,-2.879912020664621e-20,-2.8857697543571703e-05,3.227141156453893e-21,-1.827722812250363e-21,-6.352747104407253e-22,9.255560557370942e-21,-3.1763735522036263e-21,1.92384641195531e-06,13.0,8.0,3.0,0.08569902181625366,-0.012133699841797352,-0.018315019086003304,-0.03800366446375847,0.0004578754596877843,0.0009157509193755686,0.002060439670458436,0.0010683761211112142,0.0032051282469183207,0.004807692486792803,-0.012133699841797352,0.004103535320609808,0.0009157509193755686,0.002060439670458436,-0.00024975024280138314,-0.00015262515807989985,-0.00034340660204179585,-0.0,2.710505431213761e-20,1.0842021724855044e-19,-0.018315019086003304,0.0009157509193755686,0.010574743151664734,0.0032051282469183207,1.031989562868877e-20,-0.00026164311566390097,2.710505431213761e-20,-0.0010683761211112142,-0.0009157509193755686,-4.336808689942018e-19,-0.03800366446375847,0.002060439670458436,0.0032051282469183207,0.08608058840036392,-3.5981216041540176e-20,-8.233218149954678e-20,-0.002060439670458436,-0.0,-0.0032051282469183207,-0.028846153989434242,0.0004578754596877843,-0.00024975024280138314,1.031989562868877e-20,-3.5981216041540176e-20,2.0812520233448595e-05,-1.6940658945086007e-21,1.3460073364796274e-21,0.0,3.2326313254316438e-21,1.0254442539339811e-20,0.0009157509193755686,-0.00015262515807989985,-0.00026164311566390097,-8.233218149954678e-20,-1.6940658945086007e-21,4.3607185943983495e-05,9.134920627115344e-21,0.0,2.837356728543679e-21,6.961806490219869e-21,0.002060439670458436,-0.00034340660204179585,2.710505431213761e-20,-0.002060439670458436,1.3460073364796274e-21,9.134920627115344e-21,0.00034340660204179585,0.0,-5.421010862427522e-20,-2.168404344971009e-19,0.0010683761211112142,-0.0,-0.0010683761211112142,-0.0,0.0,0.0,0.0,0.00015262515807989985,0.0,0.0,0.0032051282469183207,2.710505431213761e-20,-0.0009157509193755686,-0.0032051282469183207,3.2326313254316438e-21,2.837356728543679e-21,-5.421010862427522e-20,0.0,0.0009157509193755686,2.168404344971009e-19,0.004807692486792803,1.0842021724855044e-19,-4.336808689942018e-19,-0.028846153989434242,1.0254442539339811e-20,6.961806490219869e-21,-2.168404344971009e-19,0.0,2.168404344971009e-19,0.014423076994717121,13.0,8.0,4.0,0.06973443180322647,-0.009409341029822826,-0.014217033050954342,-0.024244505912065506,0.00034340660204179585,0.0006868132040835917,0.0012362637789919972,0.0008012820617295802,0.001923076924867928,0.0024038462433964014,-0.009409341029822826,0.0031291625928133726,0.0006868132040835917,0.0012362637789919972,-0.00018731268937699497,-0.00011446886492194608,-0.00020604395831469446,0.0,-3.944748408670096e-20,-2.668805447077373e-19,-0.014217033050954342,0.0006868132040835917,0.008068419992923737,0.001923076924867928,1.169400095367847e-20,-0.00019623234402388334,-6.88892105382015e-20,-0.0008012820617295802,-0.0005494505749084055,-5.412638243664837e-19,-0.024244505912065506,0.0012362637789919972,0.001923076924867928,0.032989926636219025,-4.565343571294846e-20,-8.954961668740751e-20,-0.0008241758332587779,0.0,-0.0012820513220503926,-0.0072115384973585606,0.00034340660204179585,-0.00018731268937699497,1.169400095367847e-20,-4.565343571294846e-20,1.5609390175086446e-05,-2.541098841762901e-21,5.7198780032088934e-21,-0.0,1.2390177038666804e-21,2.3661096515553925e-22,0.0006868132040835917,-0.00011446886492194608,-0.00019623234402388334,-8.954961668740751e-20,-2.541098841762901e-21,3.270538945798762e-05,8.621674444071797e-21,0.0,1.5535175888730235e-21,9.97051117849385e-21,0.0012362637789919972,-0.00020604395831469446,-6.88892105382015e-20,-0.0008241758332587779,5.7198780032088934e-21,8.621674444071797e-21,0.00013736264372710139,0.0,1.20041290599005e-20,1.5261835145833403e-19,0.0008012820617295802,0.0,-0.0008012820617295802,0.0,-0.0,0.0,0.0,0.00011446886492194608,0.0,-0.0,0.001923076924867928,-3.944748408670096e-20,-0.0005494505749084055,-0.0012820513220503926,1.2390177038666804e-21,1.5535175888730235e-21,1.20041290599005e-20,0.0,0.00036630037357099354,3.2096050163250613e-19,0.0024038462433964014,-2.668805447077373e-19,-5.412638243664837e-19,-0.0072115384973585606,2.3661096515553925e-22,9.97051117849385e-21,1.5261835145833403e-19,-0.0,3.2096050163250613e-19,0.0024038462433964014,13.0,8.0,5.0,0.058882784098386765,-0.007692307699471712,-0.011630036868155003,-0.01684981770813465,0.00027472528745420277,0.0005494505749084055,0.0008241758332587779,0.0006410256610251963,0.0012820513220503926,0.0013736264081671834,-0.007692307699471712,0.002530802506953478,0.0005494505749084055,0.0008241758332587779,-0.00014985015150159597,-9.157509339274839e-05,-0.00013736264372710139,0.0,0.0,-0.0,-0.011630036868155003,0.0005494505749084055,0.006527995690703392,0.0012820513220503926,1.2826765833639455e-20,-0.00015698587230872363,-1.6940658945086007e-20,-0.0006410256610251963,-0.00036630037357099354,-0.0,-0.01684981770813465,0.0008241758332587779,0.0012820513220503926,0.01666666753590107,6.7626175213079786e-21,-1.3552527156068805e-20,-0.00041208791662938893,0.0,-0.0006410256610251963,-0.002747252816334367,0.00027472528745420277,-0.00014985015150159597,1.2826765833639455e-20,6.7626175213079786e-21,1.2487512321968097e-05,-1.919703842337839e-21,-1.1271029538760617e-21,0.0,0.0,-0.0,0.0005494505749084055,-9.157509339274839e-05,-0.00015698587230872363,-1.3552527156068805e-20,-1.919703842337839e-21,2.616431265778374e-05,3.3881317890172014e-21,0.0,0.0,-0.0,0.0008241758332587779,-0.00013736264372710139,-1.6940658945086007e-20,-0.00041208791662938893,-1.1271029538760617e-21,3.3881317890172014e-21,6.868132186355069e-05,0.0,0.0,-0.0,0.0006410256610251963,0.0,-0.0006410256610251963,0.0,0.0,0.0,0.0,9.157509339274839e-05,0.0,-0.0,0.0012820513220503926,0.0,-0.00036630037357099354,-0.0006410256610251963,0.0,0.0,0.0,0.0,0.00018315018678549677,-0.0,0.0013736264081671834,-0.0,-0.0,-0.002747252816334367,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006868132040835917,13.0,8.0,6.0,0.05099315196275711,-0.006508372724056244,-0.009844322688877583,-0.01240351889282465,0.00022893772984389216,0.0004578754596877843,0.00058869703207165,0.0005341880605556071,0.0009157509193755686,0.0008585164905525744,-0.006508372724056244,0.002125354716554284,0.0004578754596877843,0.00058869703207165,-0.00012487512140069157,-7.631257903994992e-05,-9.811617201194167e-05,0.0,0.0,-0.0,-0.009844322688877583,0.0004578754596877843,0.005483603570610285,0.0009157509193755686,-4.308405801898076e-37,-0.00013082155783195049,-2.1013219683092617e-20,-0.0005341880605556071,-0.00026164311566390097,-0.0,-0.01240351889282465,0.00058869703207165,0.0009157509193755686,0.009683248586952686,-4.828095715726468e-21,-2.1013219683092617e-20,-0.00023547880118712783,0.0,-0.00036630037357099354,-0.001287774764932692,0.00022893772984389216,-0.00012487512140069157,-4.308405801898076e-37,-4.828095715726468e-21,1.0406260116724297e-05,7.180676523336589e-38,8.04682602458712e-22,0.0,0.0,-0.0,0.0004578754596877843,-7.631257903994992e-05,-0.00013082155783195049,-2.1013219683092617e-20,7.180676523336589e-38,2.1803592971991748e-05,3.502203145883175e-21,0.0,0.0,-0.0,0.00058869703207165,-9.811617201194167e-05,-2.1013219683092617e-20,-0.00023547880118712783,8.04682602458712e-22,3.502203145883175e-21,3.924646807718091e-05,0.0,0.0,-0.0,0.0005341880605556071,0.0,-0.0005341880605556071,0.0,0.0,0.0,0.0,7.631257903994992e-05,0.0,-0.0,0.0009157509193755686,0.0,-0.00026164311566390097,-0.00036630037357099354,0.0,0.0,0.0,0.0,0.00010465725063113496,-0.0,0.0008585164905525744,-0.0,-0.0,-0.001287774764932692,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002575549588073045,13.0,8.0,7.0,0.044986262917518616,-0.005641679745167494,-0.008536106906831264,-0.009517268277704716,0.00019623234402388334,0.0003924646880477667,0.0004415227740537375,0.0004578754596877843,0.0006868132040835917,0.0005723443464376032,-0.005641679745167494,0.0018322451505810022,0.0003924646880477667,0.0004415227740537375,-0.00010703581938287243,-6.541077891597524e-05,-7.358712900895625e-05,1.5262836163621563e-20,-1.7664205459113504e-19,2.833749138629568e-19,-0.008536106906831264,0.0003924646880477667,0.004728265106678009,0.0006868132040835917,-2.641694860994889e-19,-0.00011213276593480259,2.446964654078601e-19,-0.0004578754596877843,-0.00019623234402388334,1.6551633835050786e-18,-0.009517268277704716,0.0004415227740537375,0.0006868132040835917,0.006148613523691893,-2.29106566553679e-19,2.297178530263557e-19,-0.0001471742580179125,1.5093902747330477e-18,-0.00022893772984389216,-0.0006868132040835917,0.00019623234402388334,-0.00010703581938287243,-2.641694860994889e-19,-2.29106566553679e-19,8.91965191840427e-06,9.226969511862444e-21,1.4857826240613153e-20,1.8485231330921254e-20,1.7919357396991155e-20,9.242615665460627e-21,0.0003924646880477667,-6.541077891597524e-05,-0.00011213276593480259,2.297178530263557e-19,9.226969511862444e-21,1.8688793716137297e-05,7.097879114623584e-22,-4.8027453764498453e-20,-5.197083700204041e-21,-4.218908375412847e-20,0.0004415227740537375,-7.358712900895625e-05,2.446964654078601e-19,-0.0001471742580179125,1.4857826240613153e-20,7.097879114623584e-22,2.4529043002985418e-05,-3.2679249976722004e-20,-2.1257591777378082e-20,-9.431159853864726e-20,0.0004578754596877843,1.5262836163621563e-20,-0.0004578754596877843,1.5093902747330477e-18,1.8485231330921254e-20,-4.8027453764498453e-20,-3.2679249976722004e-20,6.541077891597524e-05,-9.201263743416365e-20,-1.694479614061848e-19,0.0006868132040835917,-1.7664205459113504e-19,-0.00019623234402388334,-0.00022893772984389216,1.7919357396991155e-20,-5.197083700204041e-21,-2.1257591777378082e-20,-9.201263743416365e-20,6.541077891597524e-05,-8.810229618468406e-20,0.0005723443464376032,2.833749138629568e-19,1.6551633835050786e-18,-0.0006868132040835917,9.242615665460627e-21,-4.218908375412847e-20,-9.431159853864726e-20,-1.694479614061848e-19,-8.810229618468406e-20,0.00011446886492194608,13.0,8.0,8.0,0.04025488346815109,-0.0049793957732617855,-0.007535866927355528,-0.007535866927355528,0.00017170330102089792,0.00034340660204179585,0.00034340660204179585,0.0004006410308647901,0.0005341880605556071,0.0004006410308647901,-0.0049793957732617855,0.0016103688394650817,0.00034340660204179585,0.00034340660204179585,-9.365634468849748e-05,-5.723443246097304e-05,-5.723443246097304e-05,0.0,0.0,-0.0,-0.007535866927355528,0.00034340660204179585,0.004156310111284256,0.0005341880605556071,4.214531808838062e-37,-9.811617201194167e-05,-1.2038822985807277e-20,-0.0004006410308647901,-0.00015262515807989985,-0.0,-0.007535866927355528,0.00034340660204179585,0.0005341880605556071,0.004156310111284256,3.4348351818837696e-21,-1.2038822985807277e-20,-9.811617201194167e-05,0.0,-0.00015262515807989985,-0.0004006410308647901,0.00017170330102089792,-9.365634468849748e-05,4.214531808838062e-37,3.4348351818837696e-21,7.804695087543223e-06,-7.024219868236566e-38,-5.724724966558963e-22,0.0,0.0,-0.0,0.00034340660204179585,-5.723443246097304e-05,-9.811617201194167e-05,-1.2038822985807277e-20,-7.024219868236566e-38,1.635269472899381e-05,2.0064705649506768e-21,0.0,0.0,-0.0,0.00034340660204179585,-5.723443246097304e-05,-1.2038822985807277e-20,-9.811617201194167e-05,-5.724724966558963e-22,2.0064705649506768e-21,1.635269472899381e-05,0.0,0.0,-0.0,0.0004006410308647901,0.0,-0.0004006410308647901,0.0,0.0,0.0,0.0,5.723443246097304e-05,0.0,-0.0,0.0005341880605556071,0.0,-0.00015262515807989985,-0.00015262515807989985,0.0,0.0,0.0,0.0,4.3607185943983495e-05,-0.0,0.0004006410308647901,-0.0,-0.0,-0.0004006410308647901,-0.0,-0.0,-0.0,-0.0,-0.0,5.723443246097304e-05,13.0,8.0,9.0,0.03642931208014488,-0.004456654656678438,-0.0067460318095982075,-0.006116106174886227,0.00015262515807989985,0.0003052503161597997,0.00027472528745420277,0.0003561253543011844,0.0004273504309821874,0.00029137529782019556,-0.004456654656678438,0.001436526421457529,0.0003052503161597997,0.00027472528745420277,-8.325008093379438e-05,-5.087505269329995e-05,-4.578754669637419e-05,-5.377012608657944e-19,-6.684894241547561e-19,-9.631765498822584e-19,-0.0067460318095982075,0.0003052503161597997,0.0037080643232911825,0.0004273504309821874,-3.3882289827391763e-19,-8.721437188796699e-05,-6.706577747329873e-19,-0.0003561253543011844,-0.00012210012937430292,-9.226268120864136e-19,-0.006116106174886227,0.00027472528745420277,0.0004273504309821874,0.0029442778322845697,-6.888030671438919e-19,-8.188078903927659e-19,-6.868132186355069e-05,-7.640913404384551e-19,-0.00010683760774554685,-0.00024975024280138314,0.00015262515807989985,-8.325008093379438e-05,-3.3882289827391763e-19,-6.888030671438919e-19,6.937506896065315e-06,1.5245483142216422e-20,1.850125795528947e-20,1.4377402325781768e-20,3.168896938065398e-20,5.281494896775663e-20,0.0003052503161597997,-5.087505269329995e-05,-8.721437188796699e-05,-8.188078903927659e-19,1.5245483142216422e-20,1.4535728951159399e-05,3.0171005714913943e-20,4.36564666178806e-20,3.7345156092283424e-20,5.709044199006436e-20,0.00027472528745420277,-4.578754669637419e-05,-6.706577747329873e-19,-6.868132186355069e-05,1.850125795528947e-20,3.0171005714913943e-20,1.1446886674093548e-05,4.744542880599083e-20,3.260051272216461e-20,2.777384922443234e-20,0.0003561253543011844,-5.377012608657944e-19,-0.0003561253543011844,-7.640913404384551e-19,1.4377402325781768e-20,4.36564666178806e-20,4.744542880599083e-20,5.087505269329995e-05,1.1277219862812519e-20,4.313220859293244e-20,0.0004273504309821874,-6.684894241547561e-19,-0.00012210012937430292,-0.00010683760774554685,3.168896938065398e-20,3.7345156092283424e-20,3.260051272216461e-20,1.1277219862812519e-20,3.052503234357573e-05,6.337793876130796e-20,0.00029137529782019556,-9.631765498822584e-19,-9.226268120864136e-19,-0.00024975024280138314,5.281494896775663e-20,5.709044199006436e-20,2.777384922443234e-20,4.313220859293244e-20,6.337793876130796e-20,3.121878035017289e-05,13.0,8.0,10.0,0.03327089548110962,-0.004033466335386038,-0.006106393411755562,-0.005063686519861221,0.00013736264372710139,0.00027472528745420277,0.00022477522725239396,0.00032051283051259816,0.00034965036320500076,0.00021853146608918905,-0.004033466335386038,0.0012966200010851026,0.00027472528745420277,0.00022477522725239396,-7.492507575079799e-05,-4.578754669637419e-05,-3.7462537875398993e-05,0.0,0.0,-0.0,-0.006106393411755562,0.00027472528745420277,0.0033472480718046427,0.00034965036320500076,4.357233249450244e-21,-7.849293615436181e-05,-6.079579188944068e-21,-0.00032051283051259816,-9.990009857574478e-05,-0.0,-0.005063686519861221,0.00022477522725239396,0.00034965036320500076,0.0021632881835103035,2.079588605507998e-21,-6.079579188944068e-21,-4.995004928787239e-05,0.0,-7.770007505314425e-05,-0.0001638985995668918,0.00013736264372710139,-7.492507575079799e-05,4.357233249450244e-21,2.079588605507998e-21,6.243756160984049e-06,-7.262055584040733e-22,-3.465980925034833e-22,0.0,0.0,-0.0,0.00027472528745420277,-4.578754669637419e-05,-7.849293615436181e-05,-6.079579188944068e-21,-7.262055584040733e-22,1.308215632889187e-05,1.0132631308412141e-21,0.0,0.0,-0.0,0.00022477522725239396,-3.7462537875398993e-05,-6.079579188944068e-21,-4.995004928787239e-05,-3.465980925034833e-22,1.0132631308412141e-21,8.325007911480498e-06,0.0,0.0,-0.0,0.00032051283051259816,0.0,-0.00032051283051259816,0.0,0.0,0.0,0.0,4.578754669637419e-05,0.0,-0.0,0.00034965036320500076,0.0,-9.990009857574478e-05,-7.770007505314425e-05,0.0,0.0,0.0,0.0,2.2200021703611128e-05,-0.0,0.00021853146608918905,-0.0,-0.0,-0.0001638985995668918,-0.0,-0.0,-0.0,-0.0,-0.0,1.8210956113762222e-05,13.0,8.0,11.0,0.030618419870734215,-0.0036838161759078503,-0.005577755626291037,-0.004261763766407967,0.00012487512140069157,0.00024975024280138314,0.00018731268937699497,0.00029137529782019556,0.00029137529782019556,0.00016810113447718322,-0.0036838161759078503,0.0011815836187452078,0.00024975024280138314,0.00018731268937699497,-6.81137025821954e-05,-4.162504046689719e-05,-3.121878035017289e-05,0.0,9.715558604068522e-21,-1.1858461261560205e-20,-0.005577755626291037,0.00024975024280138314,0.0030505210161209106,0.00029137529782019556,3.716386782881506e-21,-7.135721534723416e-05,4.235164736271502e-21,-0.00029137529782019556,-8.325008093379438e-05,2.710505431213761e-20,-0.004261763766407967,0.00018731268937699497,0.00029137529782019556,0.00163682468701154,-1.4448754251922706e-23,-5.358969973884701e-21,-3.7462537875398993e-05,-0.0,-5.827505810884759e-05,-0.00011206742055946961,0.00012487512140069157,-6.81137025821954e-05,3.716386782881506e-21,-1.4448754251922706e-23,5.676141881849617e-06,-6.601868620969579e-22,2.1176944494931646e-22,0.0,4.894684070581349e-23,-1.3241946634962188e-22,0.00024975024280138314,-4.162504046689719e-05,-7.135721534723416e-05,-5.358969973884701e-21,-6.601868620969579e-22,1.1892869224539027e-05,8.931616959721821e-22,0.0,-2.350988701644575e-37,3.76158192263132e-37,0.00018731268937699497,-3.121878035017289e-05,4.235164736271502e-21,-3.7462537875398993e-05,2.1176944494931646e-22,8.931616959721821e-22,6.243756160984049e-06,0.0,-1.9058241313221758e-21,2.541098841762901e-21,0.00029137529782019556,0.0,-0.00029137529782019556,-0.0,0.0,0.0,0.0,4.162504046689719e-05,0.0,0.0,0.00029137529782019556,9.715558604068522e-21,-8.325008093379438e-05,-5.827505810884759e-05,4.894684070581349e-23,-2.350988701644575e-37,-1.9058241313221758e-21,0.0,1.6650015822960995e-05,-4.235164736271502e-21,0.00016810113447718322,-1.1858461261560205e-20,2.710505431213761e-20,-0.00011206742055946961,-1.3241946634962188e-22,3.76158192263132e-37,2.541098841762901e-21,0.0,-4.235164736271502e-21,1.120674187404802e-05,13.0,8.0,12.0,0.028358926996588707,-0.0033900395501405,-0.005133488215506077,-0.0036365878768265247,0.00011446886492194608,0.00022893772984389216,0.00015849535702727735,0.00026709403027780354,0.00024654832668602467,0.00013207945448812097,-0.0033900395501405,0.0010853195562958717,0.00022893772984389216,0.00015849535702727735,-6.243756070034578e-05,-3.815628951997496e-05,-2.6415891625219956e-05,0.0,-8.470329472543003e-22,-8.470329472543003e-21,-0.005133488215506077,0.00022893772984389216,0.0028021810576319695,0.00024654832668602467,1.725955565047724e-21,-6.541077891597524e-05,-4.235164736271502e-21,-0.00026709403027780354,-7.044238009257242e-05,0.0,-0.0036365878768265247,0.00015849535702727735,0.00024654832668602467,0.0012687633279711008,1.1854464500939346e-21,-3.301430093786503e-21,-2.8817335987696424e-05,-0.0,-4.482696749619208e-05,-7.924767851363868e-05,0.00011446886492194608,-6.243756070034578e-05,1.725955565047724e-21,1.1854464500939346e-21,5.203130058362149e-06,-2.688471034042355e-22,-2.0874424541932803e-22,-0.0,-1.6983761926294048e-23,2.4510646699024124e-23,0.00022893772984389216,-3.815628951997496e-05,-6.541077891597524e-05,-3.301430093786503e-21,-2.688471034042355e-22,1.0901796485995874e-05,6.167051519237633e-22,0.0,-1.9218238839325152e-23,-7.753605290156767e-23,0.00015849535702727735,-2.6415891625219956e-05,-4.235164736271502e-21,-2.8817335987696424e-05,-2.0874424541932803e-22,6.167051519237633e-22,4.802889634447638e-06,0.0,2.707368102363616e-22,1.9058241313221758e-21,0.00026709403027780354,0.0,-0.00026709403027780354,-0.0,-0.0,0.0,0.0,3.815628951997496e-05,0.0,0.0,0.00024654832668602467,-8.470329472543003e-22,-7.044238009257242e-05,-4.482696749619208e-05,-1.6983761926294048e-23,-1.9218238839325152e-23,2.707368102363616e-22,0.0,1.2807705388695467e-05,8.470329472543003e-22,0.00013207945448812097,-8.470329472543003e-21,0.0,-7.924767851363868e-05,2.4510646699024124e-23,-7.753605290156767e-23,1.9058241313221758e-21,0.0,8.470329472543003e-22,7.204333996924106e-06,13.0,8.0,13.0,0.026410860940814018,-0.0031397175043821335,-0.004754860419780016,-0.0031397175043821335,0.00010566356650087982,0.00021132713300175965,0.00013585315900854766,0.00024654832668602467,0.00021132713300175965,0.00010566356650087982,-0.0031397175043821335,0.0010035751620307565,0.00021132713300175965,0.00013585315900854766,-5.763467197539285e-05,-3.522119004628621e-05,-2.2642192561761476e-05,0.0,5.082197683525802e-21,1.6940658945086007e-21,-0.004754860419780016,0.00021132713300175965,0.002591273281723261,0.00021132713300175965,8.64035224692673e-21,-6.037918137735687e-05,3.3881317890172014e-21,-0.00024654832668602467,-6.037918137735687e-05,1.6940658945086007e-20,-0.0031397175043821335,0.00013585315900854766,0.00021132713300175965,0.0010035751620307565,8.665567119222176e-22,-0.0,-2.2642192561761476e-05,-0.0,-3.522119004628621e-05,-5.763467197539285e-05,0.00010566356650087982,-5.763467197539285e-05,8.64035224692673e-21,8.665567119222176e-22,4.802889634447638e-06,-1.1407194251630964e-21,-3.4872915290728356e-22,-0.0,-2.4860131012698757e-23,1.5780210727150283e-22,0.00021132713300175965,-3.522119004628621e-05,-6.037918137735687e-05,-0.0,-1.1407194251630964e-21,1.0063196896226145e-05,2.1444172704297075e-22,0.0,-2.980889528486535e-23,-1.5198796258630878e-22,0.00013585315900854766,-2.2642192561761476e-05,3.3881317890172014e-21,-2.2642192561761476e-05,-3.4872915290728356e-22,2.1444172704297075e-22,3.7736988360848045e-06,0.0,-8.094712027235698e-22,-4.235164736271502e-22,0.00024654832668602467,0.0,-0.00024654832668602467,-0.0,-0.0,0.0,0.0,3.522119004628621e-05,0.0,0.0,0.00021132713300175965,5.082197683525802e-21,-6.037918137735687e-05,-3.522119004628621e-05,-2.4860131012698757e-23,-2.980889528486535e-23,-8.094712027235698e-22,0.0,1.0063196896226145e-05,-2.117582368135751e-21,0.00010566356650087982,1.6940658945086007e-21,1.6940658945086007e-20,-5.763467197539285e-05,1.5780210727150283e-22,-1.5198796258630878e-22,-4.235164736271502e-22,0.0,-2.117582368135751e-21,4.802889634447638e-06,13.0,8.0,14.0,0.024713827297091484,-0.0029238618444651365,-0.004428309854120016,-0.0027382588014006615,9.811617201194167e-05,0.00019623234402388334,0.00011773940059356391,0.00022893772984389216,0.00018315018678549677,8.585165051044896e-05,-0.0029238618444651365,0.0009332929039373994,0.00019623234402388334,0.00011773940059356391,-5.3517909691436216e-05,-3.270538945798762e-05,-1.9623234038590454e-05,7.994520482359583e-21,-7.199780051661553e-20,0.0,-0.004428309854120016,0.00019623234402388334,0.0024099200963974,0.00018315018678549677,-1.4334634180055936e-19,-5.6066382967401296e-05,4.997494388800372e-20,-0.00022893772984389216,-5.232862531556748e-05,1.7279472123987727e-19,-0.0027382588014006615,0.00011773940059356391,0.00018315018678549677,0.0008076030062511563,-7.163119794654115e-20,4.48309726148264e-20,-1.8113754777004942e-05,3.5598932582744233e-19,-2.8176951673231088e-05,-4.292582525522448e-05,9.811617201194167e-05,-5.3517909691436216e-05,-1.4334634180055936e-19,-7.163119794654115e-20,4.459825959202135e-06,4.850310038817492e-21,1.9147526736176334e-21,9.242615665460627e-21,5.5156871765304714e-21,2.544479659788963e-21,0.00019623234402388334,-3.270538945798762e-05,-5.6066382967401296e-05,4.48309726148264e-20,4.850310038817492e-21,9.344396858068649e-06,-5.207524028160039e-22,-2.4013726882249227e-20,1.1904341462294957e-22,-4.1159719681910884e-21,0.00011773940059356391,-1.9623234038590454e-05,4.997494388800372e-20,-1.8113754777004942e-05,1.9147526736176334e-21,-5.207524028160039e-22,3.0189589779183734e-06,-7.597227411296212e-21,-9.51949882548659e-22,-3.3881317890172014e-21,0.00022893772984389216,7.994520482359583e-21,-0.00022893772984389216,3.5598932582744233e-19,9.242615665460627e-21,-2.4013726882249227e-20,-7.597227411296212e-21,3.270538945798762e-05,-2.0563750417746615e-20,-1.9062895819754502e-20,0.00018315018678549677,-7.199780051661553e-20,-5.232862531556748e-05,-2.8176951673231088e-05,5.5156871765304714e-21,1.1904341462294957e-22,-9.51949882548659e-22,-2.0563750417746615e-20,8.050557880778797e-06,-3.3881317890172014e-21,8.585165051044896e-05,0.0,1.7279472123987727e-19,-4.292582525522448e-05,2.544479659788963e-21,-4.1159719681910884e-21,-3.3881317890172014e-21,-1.9062895819754502e-20,-3.3881317890172014e-21,3.3019864531524945e-06,13.0,8.0,15.0,0.023222140967845917,-0.002735805930569768,-0.00414377311244607,-0.0024092330131679773,9.157509339274839e-05,0.00018315018678549677,0.00010302197915734723,0.0002136752154910937,0.00016025641525629908,7.070136052789167e-05,-0.002735805930569768,0.0008722180500626564,0.00018315018678549677,0.00010302197915734723,-4.995004928787239e-05,-3.052503234357573e-05,-1.7170330465887673e-05,0.0,1.6940658945086007e-21,5.082197683525802e-21,-0.00414377311244607,0.00018315018678549677,0.002252311212942004,0.00016025641525629908,5.854426926996956e-21,-5.232862531556748e-05,-8.470329472543003e-22,-0.0002136752154910937,-4.578754669637419e-05,5.082197683525802e-21,-0.0024092330131679773,0.00010302197915734723,0.00016025641525629908,0.0006596129387617111,1.0838201628687277e-21,-2.8606151248199808e-21,-1.471742507419549e-05,-0.0,-2.2893773348187096e-05,-3.263139660703018e-05,9.157509339274839e-05,-4.995004928787239e-05,5.854426926996956e-21,1.0838201628687277e-21,4.162503955740249e-06,-9.351448481044954e-22,-9.508445306482633e-23,-0.0,-1.2817273937372586e-23,1.7002599924710726e-23,0.00018315018678549677,-3.052503234357573e-05,-5.232862531556748e-05,-2.8606151248199808e-21,-9.351448481044954e-22,8.72143755259458e-06,4.937690684541209e-22,0.0,2.6995605882124624e-23,4.98846038400604e-23,0.00010302197915734723,-1.7170330465887673e-05,-8.470329472543003e-22,-1.471742507419549e-05,-9.508445306482633e-23,4.937690684541209e-22,2.4529042548238067e-06,0.0,-2.6952378197784685e-22,-8.470329472543003e-22,0.0002136752154910937,0.0,-0.0002136752154910937,-0.0,-0.0,0.0,0.0,3.052503234357573e-05,0.0,0.0,0.00016025641525629908,1.6940658945086007e-21,-4.578754669637419e-05,-2.2893773348187096e-05,-1.2817273937372586e-23,2.6995605882124624e-23,-2.6952378197784685e-22,0.0,6.541078164445935e-06,-4.235164736271502e-22,7.070136052789167e-05,5.082197683525802e-21,5.082197683525802e-21,-3.263139660703018e-05,1.7002599924710726e-23,4.98846038400604e-23,-8.470329472543003e-22,0.0,-4.235164736271502e-22,2.3308139134314843e-06,13.0,8.0,16.0,0.021900586783885956,-0.0025704994332045317,-0.003893624758347869,-0.0021361911203712225,8.585165051044896e-05,0.00017170330102089792,9.09017471713014e-05,0.00020032051543239504,0.00014140272105578333,5.891779801459052e-05,-0.0025704994332045317,0.0008186513441614807,0.00017170330102089792,9.09017471713014e-05,-4.682817234424874e-05,-2.861721623048652e-05,-1.5150290892051999e-05,0.0,4.658681209898652e-21,2.541098841762901e-21,-0.003893624758347869,0.00017170330102089792,0.002114066854119301,0.00014140272105578333,2.304712190783483e-21,-4.9058086005970836e-05,8.470329472543003e-22,-0.00020032051543239504,-4.0400776924798265e-05,1.1011428314305904e-20,-0.0021361911203712225,9.09017471713014e-05,0.00014140272105578333,0.0005457471706904471,2.331617623553254e-22,-4.260241879763783e-21,-1.212023289554054e-05,-0.0,-1.885369601950515e-05,-2.5250485123251565e-05,8.585165051044896e-05,-4.682817234424874e-05,2.304712190783483e-21,2.331617623553254e-22,3.9023475437716115e-06,-2.664828935821754e-22,4.933159341283874e-23,-0.0,-7.459131876163358e-24,-4.6911860404825536e-23,0.00017170330102089792,-2.861721623048652e-05,-4.9058086005970836e-05,-4.260241879763783e-21,-2.664828935821754e-22,8.176347364496905e-06,6.883807760931058e-22,0.0,1.7886431794311296e-23,-1.7299636032240835e-23,9.09017471713014e-05,-1.5150290892051999e-05,8.470329472543003e-22,-1.212023289554054e-05,4.933159341283874e-23,6.883807760931058e-22,2.0200388917146483e-06,0.0,-6.392166420732274e-22,-2.117582368135751e-22,0.00020032051543239504,0.0,-0.00020032051543239504,-0.0,-0.0,0.0,0.0,2.861721623048652e-05,0.0,0.0,0.00014140272105578333,4.658681209898652e-21,-4.0400776924798265e-05,-1.885369601950515e-05,-7.459131876163358e-24,1.7886431794311296e-23,-6.392166420732274e-22,0.0,5.386770226323279e-06,-1.376428539288238e-21,5.891779801459052e-05,2.541098841762901e-21,1.1011428314305904e-20,-2.5250485123251565e-05,-4.6911860404825536e-23,-1.7299636032240835e-23,-2.117582368135751e-22,0.0,-1.376428539288238e-21,1.6833656673043151e-06,13.0,9.0,3.0,0.07774447649717331,-0.01086691115051508,-0.014885114505887032,-0.034065935760736465,0.0004070004215463996,0.0007326007471419871,0.0018315018387511373,0.0007770007941871881,0.0025641026441007853,0.004273504484444857,-0.01086691115051508,0.003661153605207801,0.0007326007471419871,0.0018315018387511373,-0.0002220002206740901,-0.00012210012937430292,-0.0003052503161597997,-9.381819582144969e-35,-1.6267004346692528e-19,-1.6267004088198587e-18,-0.014885114505887032,0.0007326007471419871,0.007495282683521509,0.0025641026441007853,-5.261432250601699e-37,-0.00018315018678549677,-1.6267004346692528e-19,-0.000666000647470355,-0.0006410256610251963,-5.9152740258948014e-18,-0.034065935760736465,0.0018315018387511373,0.0025641026441007853,0.07680097967386246,-1.3526358393614368e-35,2.9027670341825734e-36,-0.0018315018387511373,-1.4788185064737004e-18,-0.0025641026441007853,-0.025641025975346565,0.0004070004215463996,-0.0002220002206740901,-5.261432250601699e-37,-1.3526358393614368e-35,1.850001899583731e-05,-0.0,0.0,0.0,5.261432250601699e-37,5.7108929260530475e-36,0.0007326007471419871,-0.00012210012937430292,-0.00018315018678549677,2.9027670341825734e-36,-0.0,3.052503234357573e-05,-0.0,-0.0,-0.0,-1.4513835170912867e-36,0.0018315018387511373,-0.0003052503161597997,-1.6267004346692528e-19,-0.0018315018387511373,0.0,-0.0,0.0003052503161597997,9.381819582144969e-35,1.6267004346692528e-19,1.6267004088198587e-18,0.0007770007941871881,-9.381819582144969e-35,-0.000666000647470355,-1.4788185064737004e-18,0.0,-0.0,9.381819582144969e-35,8.325008093379438e-05,0.0,7.394092532368502e-19,0.0025641026441007853,-1.6267004346692528e-19,-0.0006410256610251963,-0.0025641026441007853,5.261432250601699e-37,-0.0,1.6267004346692528e-19,0.0,0.0006410256610251963,8.668801557929003e-34,0.004273504484444857,-1.6267004088198587e-18,-5.9152740258948014e-18,-0.025641025975346565,5.7108929260530475e-36,-1.4513835170912867e-36,1.6267004088198587e-18,7.394092532368502e-19,8.668801557929003e-34,0.012820512987673283,13.0,9.0,4.0,0.0632045716047287,-0.008424908854067326,-0.011548451147973537,-0.0217216107994318,0.0003052503161597997,0.0005494505749084055,0.001098901149816811,0.0005827505956403911,0.0015384615398943424,0.0021367522422224283,-0.008424908854067326,0.002791652688756585,0.0005494505749084055,0.001098901149816811,-0.00016650016186758876,-9.157509339274839e-05,-0.00018315018678549677,-1.6471380772020892e-18,-1.881776129758881e-18,-8.238913288472106e-19,-0.011548451147973537,0.0005494505749084055,0.005717615596950054,0.0015384615398943424,-1.3255757499751624e-18,-0.00013736264372710139,-1.3051026162241687e-18,-0.0004995004856027663,-0.0003846153849735856,5.4716285256514796e-18,-0.0217216107994318,0.001098901149816811,0.0015384615398943424,0.029438339173793793,-8.47612438972182e-19,-4.843109399273475e-19,-0.0007326007471419871,2.4249455197627455e-18,-0.001025640987791121,-0.006410256493836641,0.0003052503161597997,-0.00016650016186758876,-1.3255757499751624e-18,-8.47612438972182e-19,1.387501379213063e-05,3.9810548520952116e-20,4.781562121067672e-20,1.0562989793551326e-19,1.0351729803809844e-19,3.0808719961926847e-20,0.0005494505749084055,-9.157509339274839e-05,-0.00013736264372710139,-4.843109399273475e-19,3.9810548520952116e-20,2.2893773348187096e-05,4.2301273355880245e-20,5.554769844886468e-20,5.762582817919077e-20,-4.173089434075586e-34,0.001098901149816811,-0.00018315018678549677,-1.3051026162241687e-18,-0.0007326007471419871,4.781562121067672e-20,4.2301273355880245e-20,0.00012210012937430292,8.027871855358096e-20,2.0764213438672293e-19,2.1241888270436646e-19,0.0005827505956403911,-1.6471380772020892e-18,-0.0004995004856027663,2.4249455197627455e-18,1.0562989793551326e-19,5.554769844886468e-20,8.027871855358096e-20,6.243756070034578e-05,-1.5083948662634167e-19,-6.8395356570643495e-19,0.0015384615398943424,-1.881776129758881e-18,-0.0003846153849735856,-0.001025640987791121,1.0351729803809844e-19,5.762582817919077e-20,2.0764213438672293e-19,-1.5083948662634167e-19,0.00025641024694778025,2.3283347214523217e-33,0.0021367522422224283,-8.238913288472106e-19,5.4716285256514796e-18,-0.006410256493836641,3.0808719961926847e-20,-4.173089434075586e-34,2.1241888270436646e-19,-6.8395356570643495e-19,2.3283347214523217e-33,0.0021367522422224283,13.0,9.0,5.0,0.05333777517080307,-0.006886446848511696,-0.009443889372050762,-0.015091574750840664,0.00024420025874860585,0.00043956044828519225,0.0007326007471419871,0.0004662004648707807,0.001025640987791121,0.0012210012646391988,-0.006886446848511696,0.0022577422205358744,0.00043956044828519225,0.0007326007471419871,-0.00013320012658368796,-7.326007471419871e-05,-0.00012210012937430292,0.0,0.0,-0.0,-0.009443889372050762,0.00043956044828519225,0.00462537445127964,0.001025640987791121,-9.495591569027638e-21,-0.00010989011207129806,0.0,-0.0003996003943029791,-0.00025641024694778025,-1.0140470201809273e-18,-0.015091574750840664,0.0007326007471419871,0.001025640987791121,0.014871794730424881,-1.0896590765241682e-20,0.0,-0.00036630037357099354,-6.934001233981554e-19,-0.0005128204938955605,-0.0024420025292783976,0.00024420025874860585,-0.00013320012658368796,-9.495591569027638e-21,-1.0896590765241682e-20,1.1100010851805564e-05,1.2745113454047346e-21,9.433225462794764e-22,-0.0,-0.0,-0.0,0.00043956044828519225,-7.326007471419871e-05,-0.00010989011207129806,0.0,1.2745113454047346e-21,1.8315018678549677e-05,0.0,0.0,0.0,-0.0,0.0007326007471419871,-0.00012210012937430292,0.0,-0.00036630037357099354,9.433225462794764e-22,0.0,6.105006468715146e-05,-0.0,-0.0,-0.0,0.0004662004648707807,0.0,-0.0003996003943029791,-6.934001233981554e-19,-0.0,0.0,-0.0,4.995004928787239e-05,4.659415978927146e-20,1.2675587752261592e-19,0.001025640987791121,0.0,-0.00025641024694778025,-0.0005128204938955605,-0.0,0.0,-0.0,4.659415978927146e-20,0.00012820512347389013,1.1823979694515943e-34,0.0012210012646391988,-0.0,-1.0140470201809273e-18,-0.0024420025292783976,-0.0,-0.0,-0.0,1.2675587752261592e-19,1.1823979694515943e-34,0.0006105006323195994,13.0,9.0,6.0,0.04617208242416382,-0.005825920030474663,-0.00799200776964426,-0.01110674999654293,0.0002035002107731998,0.00036630037357099354,0.0005232862313278019,0.0003885003970935941,0.0007326007471419871,0.000763125775847584,-0.005825920030474663,0.0018959876615554094,0.00036630037357099354,0.0005232862313278019,-0.00011100011033704504,-6.105006468715146e-05,-8.721437188796699e-05,0.0,0.0,-0.0,-0.00799200776964426,0.00036630037357099354,0.0038850039709359407,0.0007326007471419871,-5.638416464846976e-21,-9.157509339274839e-05,-1.0164395367051604e-20,-0.0003330003237351775,-0.00018315018678549677,-5.809644095647545e-19,-0.01110674999654293,0.0005232862313278019,0.0007326007471419871,0.008639891631901264,6.202318170783376e-21,-6.776263578034403e-21,-0.00020931450126226991,-5.406043546231258e-19,-0.00029304029885679483,-0.0011446886928752065,0.0002035002107731998,-0.00011100011033704504,-5.638416464846976e-21,6.202318170783376e-21,9.250009497918654e-06,1.106513204622363e-21,-1.2904590079517805e-21,-0.0,-0.0,-0.0,0.00036630037357099354,-6.105006468715146e-05,-9.157509339274839e-05,-6.776263578034403e-21,1.106513204622363e-21,1.5262516171787865e-05,4.235164736271502e-22,0.0,0.0,-0.0,0.0005232862313278019,-8.721437188796699e-05,-1.0164395367051604e-20,-0.00020931450126226991,-1.2904590079517805e-21,4.235164736271502e-22,3.488575021037832e-05,-0.0,-0.0,-0.0,0.0003885003970935941,0.0,-0.0003330003237351775,-5.406043546231258e-19,-0.0,0.0,-0.0,4.162504046689719e-05,4.437538996776575e-20,7.262055119559432e-20,0.0007326007471419871,0.0,-0.00018315018678549677,-0.00029304029885679483,-0.0,0.0,-0.0,4.437538996776575e-20,7.326007471419871e-05,7.741891316321383e-35,0.000763125775847584,-0.0,-5.809644095647545e-19,-0.0011446886928752065,-0.0,-0.0,-0.0,7.262055119559432e-20,7.741891316321383e-35,0.00022893772984389216,13.0,9.0,7.0,0.040720656514167786,-0.005049712024629116,-0.00692878570407629,-0.008520844392478466,0.00017442874377593398,0.00031397174461744726,0.0003924646880477667,0.0003330003237351775,0.0005494505749084055,0.000508750497829169,-0.005049712024629116,0.0016344765899702907,0.00031397174461744726,0.0003924646880477667,-9.514295379631221e-05,-5.232862531556748e-05,-6.541077891597524e-05,0.0,0.0,-0.0,-0.00692878570407629,0.00031397174461744726,0.0033496266696602106,0.0005494505749084055,0.0,-7.849293615436181e-05,0.0,-0.00028542886138893664,-0.00013736264372710139,-3.6618362894351656e-19,-0.008520844392478466,0.0003924646880477667,0.0005494505749084055,0.005485784262418747,4.497789330098903e-21,0.0,-0.00013082155783195049,-3.6972783937436486e-19,-0.00018315018678549677,-0.0006105006323195994,0.00017442874377593398,-9.514295379631221e-05,0.0,4.497789330098903e-21,7.928579179861117e-06,0.0,-7.496315213584185e-22,-0.0,-0.0,-0.0,0.00031397174461744726,-5.232862531556748e-05,-7.849293615436181e-05,0.0,0.0,1.308215632889187e-05,0.0,-0.0,-0.0,-0.0,0.0003924646880477667,-6.541077891597524e-05,0.0,-0.00013082155783195049,-7.496315213584185e-22,0.0,2.1803592971991748e-05,0.0,0.0,-0.0,0.0003330003237351775,0.0,-0.00028542886138893664,-3.6972783937436486e-19,-0.0,-0.0,0.0,3.567860767361708e-05,2.3772531032268994e-20,4.577295361793957e-20,0.0005494505749084055,0.0,-0.00013736264372710139,-0.00018315018678549677,-0.0,-0.0,0.0,2.3772531032268994e-20,4.578754669637419e-05,3.049835877434327e-35,0.000508750497829169,-0.0,-3.6618362894351656e-19,-0.0006105006323195994,-0.0,-0.0,-0.0,4.577295361793957e-20,3.049835877434327e-35,0.0001017501053865999,13.0,9.0,8.0,0.03642931208014488,-0.004456654656678438,-0.006116106174886227,-0.0067460318095982075,0.00015262515807989985,0.00027472528745420277,0.0003052503161597997,0.00029137529782019556,0.0004273504309821874,0.0003561253543011844,-0.004456654656678438,0.001436526421457529,0.00027472528745420277,0.0003052503161597997,-8.325008093379438e-05,-4.578754669637419e-05,-5.087505269329995e-05,-8.364206852843396e-19,-5.5379835068244115e-19,-3.7503120447417203e-19,-0.006116106174886227,0.00027472528745420277,0.0029442778322845697,0.0004273504309821874,-6.921728975618564e-19,-6.868132186355069e-05,-3.489379471475516e-19,-0.00024975024280138314,-0.00010683760774554685,5.508598949539231e-19,-0.0067460318095982075,0.0003052503161597997,0.0004273504309821874,0.0037080643232911825,-3.365193553643223e-19,-1.9959860426086315e-19,-8.721437188796699e-05,4.849147300757229e-19,-0.00012210012937430292,-0.0003561253543011844,0.00015262515807989985,-8.325008093379438e-05,-6.921728975618564e-19,-3.365193553643223e-19,6.937506896065315e-06,1.9062895819754502e-20,1.486155663130531e-20,5.281494896775663e-20,3.168896938065398e-20,1.4377402325781768e-20,0.00027472528745420277,-4.578754669637419e-05,-6.868132186355069e-05,-1.9959860426086315e-19,1.9062895819754502e-20,1.1446886674093548e-05,1.3057622733756342e-20,2.777384922443234e-20,1.7483585079366295e-20,6.777918747053076e-21,0.0003052503161597997,-5.087505269329995e-05,-3.489379471475516e-19,-8.721437188796699e-05,1.486155663130531e-20,1.3057622733756342e-20,1.4535728951159399e-05,2.0874479522382453e-20,2.185277084632986e-20,4.36564666178806e-20,0.00029137529782019556,-8.364206852843396e-19,-0.00024975024280138314,4.849147300757229e-19,5.281494896775663e-20,2.777384922443234e-20,2.0874479522382453e-20,3.121878035017289e-05,-8.179545598868637e-21,-7.394092532368502e-20,0.0004273504309821874,-5.5379835068244115e-19,-0.00010683760774554685,-0.00012210012937430292,3.168896938065398e-20,1.7483585079366295e-20,2.185277084632986e-20,-8.179545598868637e-21,3.052503234357573e-05,1.692791532477011e-34,0.0003561253543011844,-3.7503120447417203e-19,5.508598949539231e-19,-0.0003561253543011844,1.4377402325781768e-20,6.777918747053076e-21,4.36564666178806e-20,-7.394092532368502e-20,1.692791532477011e-34,5.087505269329995e-05,13.0,9.0,9.0,0.03296111151576042,-0.003988604061305523,-0.00547452550381422,-0.00547452550381422,0.0001356668071821332,0.00024420025874860585,0.00024420025874860585,0.0002590002550277859,0.0003418803389649838,0.0002590002550277859,-0.003988604061305523,0.0012814346700906754,0.00024420025874860585,0.00024420025874860585,-7.400007598334923e-05,-4.0700040699448436e-05,-4.0700040699448436e-05,0.0,0.0,-0.0,-0.00547452550381422,0.00024420025874860585,0.002626632573083043,0.0003418803389649838,0.0,-6.105006468715146e-05,0.0,-0.0002220002206740901,-8.547008474124596e-05,-1.1497654125652524e-19,-0.00547452550381422,0.00024420025874860585,0.0003418803389649838,0.002626632573083043,0.0,0.0,-6.105006468715146e-05,-1.8400493139513732e-19,-8.547008474124596e-05,-0.0002220002206740901,0.0001356668071821332,-7.400007598334923e-05,0.0,0.0,6.166672847029986e-06,0.0,0.0,-0.0,0.0,-0.0,0.00024420025874860585,-4.0700040699448436e-05,-6.105006468715146e-05,0.0,0.0,1.0175010174862109e-05,0.0,-0.0,0.0,-0.0,0.00024420025874860585,-4.0700040699448436e-05,0.0,-6.105006468715146e-05,0.0,0.0,1.0175010174862109e-05,0.0,0.0,-0.0,0.0002590002550277859,0.0,-0.0002220002206740901,-1.8400493139513732e-19,-0.0,-0.0,0.0,2.775002758426126e-05,2.468910773549527e-21,2.176616083566901e-20,0.0003418803389649838,0.0,-8.547008474124596e-05,-8.547008474124596e-05,0.0,0.0,0.0,2.468910773549527e-21,2.136752118531149e-05,-1.4788184741619577e-20,0.0002590002550277859,-0.0,-1.1497654125652524e-19,-0.0002220002206740901,-0.0,-0.0,-0.0,2.176616083566901e-20,-1.4788184741619577e-20,2.775002758426126e-05,13.0,9.0,10.0,0.030098790302872658,-0.0036097236443310976,-0.004955044947564602,-0.004532134626060724,0.00012210012937430292,0.00021978022414259613,0.00019980019715148956,0.00023310023243539035,0.0002797202905640006,0.00019425019854679704,-0.0036097236443310976,0.0011566211469471455,0.00021978022414259613,0.00019980019715148956,-6.660006329184398e-05,-3.6630037357099354e-05,-3.330003164592199e-05,0.0,0.0,-0.0,-0.004955044947564602,0.00021978022414259613,0.002370962407439947,0.0002797202905640006,0.0,-5.494505603564903e-05,0.0,-0.00019980019715148956,-6.993007264100015e-05,-1.2771614374091049e-19,-0.004532134626060724,0.00019980019715148956,0.0002797202905640006,0.0019298294791951776,-6.161743810631817e-22,0.0,-4.4400043407222256e-05,-1.4368066493969856e-19,-6.216006295289844e-05,-0.00014568764891009778,0.00012210012937430292,-6.660006329184398e-05,0.0,-6.161743810631817e-22,5.550005425902782e-06,0.0,1.0269573017719695e-22,0.0,0.0,-0.0,0.00021978022414259613,-3.6630037357099354e-05,-5.494505603564903e-05,0.0,0.0,9.157509339274839e-06,0.0,0.0,0.0,-0.0,0.00019980019715148956,-3.330003164592199e-05,0.0,-4.4400043407222256e-05,1.0269573017719695e-22,0.0,7.400007234537043e-06,0.0,0.0,-0.0,0.00023310023243539035,0.0,-0.00019980019715148956,-1.4368066493969856e-19,0.0,0.0,0.0,2.4975024643936194e-05,0.0,1.596451796761381e-20,0.0002797202905640006,0.0,-6.993007264100015e-05,-6.216006295289844e-05,0.0,0.0,0.0,0.0,1.554001573822461e-05,-0.0,0.00019425019854679704,-0.0,-1.2771614374091049e-19,-0.00014568764891009778,-0.0,-0.0,-0.0,1.596451796761381e-20,-0.0,1.618751593923662e-05,13.0,9.0,11.0,0.02769569121301174,-0.0032967033330351114,-0.004525777418166399,-0.0038141345139592886,0.00011100011033704504,0.00019980019715148956,0.00016650016186758876,0.0002119092969223857,0.00023310023243539035,0.00014942322741262615,-0.0032967033330351114,0.0010539965005591512,0.00019980019715148956,0.00016650016186758876,-6.054551340639591e-05,-3.330003164592199e-05,-2.775002758426126e-05,-4.54305311764539e-37,-1.404278939070042e-22,0.0,-0.004525777418166399,0.00019980019715148956,0.0021607179660350084,0.00023310023243539035,-1.615489820011364e-22,-4.995004928787239e-05,-1.6940658945086007e-21,-0.00018163654021918774,-5.827505810884759e-05,-9.825582188149884e-20,-0.0038141345139592886,0.00016650016186758876,0.00023310023243539035,0.0014601353323087096,1.4435204398361395e-21,-0.0,-3.330003164592199e-05,-1.8226164825418182e-19,-4.662004721467383e-05,-9.961548494175076e-05,0.00011100011033704504,-6.054551340639591e-05,-1.615489820011364e-22,1.4435204398361395e-21,5.045459602115443e-06,0.0,-2.330052775952785e-22,-6.33488023572003e-38,3.230979576913856e-23,-1.6208527804349824e-23,0.00019980019715148956,-3.330003164592199e-05,-4.995004928787239e-05,-0.0,0.0,8.325007911480498e-06,0.0,0.0,0.0,0.0,0.00016650016186758876,-2.775002758426126e-05,-1.6940658945086007e-21,-3.330003164592199e-05,-2.330052775952785e-22,0.0,5.550005425902782e-06,3.76158192263132e-37,2.117582368135751e-22,4.235164736271502e-22,0.0002119092969223857,-4.54305311764539e-37,-0.00018163654021918774,-1.8226164825418182e-19,-6.33488023572003e-38,0.0,3.76158192263132e-37,2.2704567527398467e-05,1.5403028737165096e-20,1.2064953492110857e-20,0.00023310023243539035,-1.404278939070042e-22,-5.827505810884759e-05,-4.662004721467383e-05,3.230979576913856e-23,0.0,2.117582368135751e-22,1.5403028737165096e-20,1.1655011803668458e-05,0.0,0.00014942322741262615,0.0,-9.825582188149884e-20,-9.961548494175076e-05,-1.6208527804349824e-23,0.0,4.235164736271502e-22,1.2064953492110857e-20,0.0,9.961548130377196e-06,13.0,9.0,12.0,0.025649137794971466,-0.003033718327060342,-0.004165065474808216,-0.003254437819123268,0.0001017501053865999,0.00018315018678549677,0.00014088476018514484,0.00019425019854679704,0.0001972386526176706,0.00011740396439563483,-0.003033718327060342,0.0009681201772764325,0.00018315018678549677,0.00014088476018514484,-5.550005516852252e-05,-3.052503234357573e-05,-2.3480792151531205e-05,7.553572156463141e-36,5.865501170954615e-22,1.0164395367051604e-20,-0.004165065474808216,0.00018315018678549677,0.001984767382964492,0.0001972386526176706,-1.6621563068093425e-22,-4.578754669637419e-05,-8.470329472543003e-22,-0.00016650016186758876,-4.930966315441765e-05,-7.623296525288703e-20,-0.003254437819123268,0.00014088476018514484,0.0001972386526176706,0.0011317741591483355,1.805167398325696e-21,-0.0,-2.5615410777390935e-05,-1.4623044917789327e-19,-3.586157254176214e-05,-7.044238009257242e-05,0.0001017501053865999,-5.550005516852252e-05,-1.6621563068093425e-22,1.805167398325696e-21,4.625004748959327e-06,0.0,-4.229153994826952e-22,1.701903665645251e-37,3.0221024620745396e-23,5.160498325660259e-23,0.00018315018678549677,-3.052503234357573e-05,-4.578754669637419e-05,-0.0,0.0,7.631258085893933e-06,0.0,0.0,0.0,0.0,0.00014088476018514484,-2.3480792151531205e-05,-8.470329472543003e-22,-2.5615410777390935e-05,-4.229153994826952e-22,0.0,4.2692349779827055e-06,-1.504632769052528e-36,0.0,-1.9058241313221758e-21,0.00019425019854679704,7.553572156463141e-36,-0.00016650016186758876,-1.4623044917789327e-19,1.701903665645251e-37,0.0,-1.504632769052528e-36,2.0812520233448595e-05,1.0861109240607132e-20,9.344182781807055e-21,0.0001972386526176706,5.865501170954615e-22,-4.930966315441765e-05,-3.586157254176214e-05,3.0221024620745396e-23,0.0,0.0,1.0861109240607132e-20,8.965393135440536e-06,0.0,0.00011740396439563483,1.0164395367051604e-20,-7.623296525288703e-20,-7.044238009257242e-05,5.160498325660259e-23,0.0,-1.9058241313221758e-21,9.344182781807055e-21,0.0,6.403852694347734e-06,13.0,9.0,13.0,0.023885028436779976,-0.002809644676744938,-0.003857680829241872,-0.002809644676744938,9.392316860612482e-05,0.00016906170640140772,0.00012075836275471374,0.00017930786998476833,0.00016906170640140772,9.392316860612482e-05,-0.002809644676744938,0.0008951976196840405,0.00016906170640140772,0.00012075836275471374,-5.123082155478187e-05,-2.8176951673231088e-05,-2.012639379245229e-05,-2.408739453403528e-35,3.894085262225455e-22,-1.4399560103323106e-20,-0.003857680829241872,0.00016906170640140772,0.0018353441264480352,0.00016906170640140772,2.3551075031735837e-22,-4.226542660035193e-05,0.0,-0.00015369246830232441,-4.226542660035193e-05,-5.759824041329242e-20,-0.002809644676744938,0.00012075836275471374,0.00016906170640140772,0.0008951976196840405,-6.61326759794115e-22,-0.0,-2.012639379245229e-05,-1.201496254098553e-19,-2.8176951673231088e-05,-5.123082155478187e-05,9.392316860612482e-05,-5.123082155478187e-05,2.3551075031735837e-22,-6.61326759794115e-22,4.2692349779827055e-06,0.0,1.7851841505794803e-22,-1.1919041163589168e-37,-3.925179066774519e-23,-1.9569797857180517e-23,0.00016906170640140772,-2.8176951673231088e-05,-4.226542660035193e-05,-0.0,0.0,7.044237918307772e-06,0.0,0.0,0.0,0.0,0.00012075836275471374,-2.012639379245229e-05,0.0,-2.012639379245229e-05,1.7851841505794803e-22,0.0,3.3543990411999403e-06,4.137740114894452e-36,0.0,2.329340604949326e-21,0.00017930786998476833,-2.408739453403528e-35,-0.00015369246830232441,-1.201496254098553e-19,-1.1919041163589168e-37,0.0,4.137740114894452e-36,1.9211558537790552e-05,7.877287825369365e-21,7.386705906433631e-21,0.00016906170640140772,3.894085262225455e-22,-4.226542660035193e-05,-2.8176951673231088e-05,-3.925179066774519e-23,0.0,0.0,7.877287825369365e-21,7.044237918307772e-06,0.0,9.392316860612482e-05,-1.4399560103323106e-20,-5.759824041329242e-20,-5.123082155478187e-05,-1.9569797857180517e-23,0.0,2.329340604949326e-21,7.386705906433631e-21,0.0,4.2692349779827055e-06,13.0,9.0,14.0,0.022348525002598763,-0.002616431098431349,-0.0035925977863371372,-0.0024502878077328205,8.721437188796699e-05,0.00015698587230872363,0.00010465725063113496,0.00016650016186758876,0.00014652014942839742,7.631257903994992e-05,-0.002616431098431349,0.0008325008093379438,0.00015698587230872363,0.00010465725063113496,-4.7571476898156106e-05,-2.616431265778374e-05,-1.744287510518916e-05,-1.6481146828412578e-35,5.410821940024397e-22,-6.776263578034403e-21,-0.0035925977863371372,0.00015698587230872363,0.0017068645684048533,0.00014652014942839742,-3.655317560821372e-24,-3.924646807718091e-05,8.470329472543003e-22,-0.00014271443069446832,-3.6630037357099354e-05,-4.404571325722362e-20,-0.0024502878077328205,0.00010465725063113496,0.00014652014942839742,0.0007203739369288087,5.146486136499616e-22,-0.0,-1.6101115761557594e-05,-7.724186064391177e-20,-2.254156061098911e-05,-3.815628951997496e-05,8.721437188796699e-05,-4.7571476898156106e-05,-3.655317560821372e-24,5.146486136499616e-22,3.964289589930559e-06,0.0,-1.078035603622923e-22,-6.018204719402965e-38,5.623565554038737e-25,9.290448012945875e-24,0.00015698587230872363,-2.616431265778374e-05,-3.924646807718091e-05,-0.0,0.0,6.541078164445935e-06,0.0,0.0,0.0,0.0,0.00010465725063113496,-1.744287510518916e-05,8.470329472543003e-22,-1.6101115761557594e-05,-1.078035603622923e-22,0.0,2.683519142010482e-06,2.633107345841924e-36,-1.0587911840678754e-22,1.0587911840678754e-21,0.00016650016186758876,-1.6481146828412578e-35,-0.00014271443069446832,-7.724186064391177e-20,-6.018204719402965e-38,0.0,2.633107345841924e-36,1.783930383680854e-05,0.0,5.9416815569242294e-21,0.00014652014942839742,5.410821940024397e-22,-3.6630037357099354e-05,-2.254156061098911e-05,5.623565554038737e-25,0.0,-1.0587911840678754e-22,0.0,5.635390152747277e-06,-2.117582368135751e-22,7.631257903994992e-05,-6.776263578034403e-21,-4.404571325722362e-20,-3.815628951997496e-05,9.290448012945875e-24,0.0,1.0587911840678754e-21,5.9416815569242294e-21,-2.117582368135751e-22,2.9350990189414006e-06,13.0,9.0,15.0,0.0209981519728899,-0.002448107348755002,-0.0033616384025663137,-0.002155785448849201,8.140008139889687e-05,0.00014652014942839742,9.157509339274839e-05,0.0001554001501062885,0.00012820512347389013,6.28456546110101e-05,-0.002448107348755002,0.0007780182640999556,0.00014652014942839742,9.157509339274839e-05,-4.4400043407222256e-05,-2.44200236920733e-05,-1.5262516171787865e-05,-2.9148707413026435e-19,-1.528048031382823e-19,-1.5839516113655416e-19,-0.0033616384025663137,0.00014652014942839742,0.0015952104004099965,0.00012820512347389013,-2.6823076196136526e-19,-3.6630037357099354e-05,-1.0799670077492329e-19,-0.00013320012658368796,-3.205128086847253e-05,-4.1504614415460717e-20,-0.002155785448849201,9.157509339274839e-05,0.00012820512347389013,0.0005883576232008636,-1.88354040260788e-19,-9.216631208233952e-20,-1.308215632889187e-05,-2.1337511641717483e-20,-1.8315018678549677e-05,-2.9005685064475983e-05,8.140008139889687e-05,-4.4400043407222256e-05,-2.6823076196136526e-19,-1.88354040260788e-19,3.7000036172685213e-06,5.458254669507722e-21,3.772544995552398e-21,1.920543584140358e-20,9.930608599667403e-21,8.370525769553219e-21,0.00014652014942839742,-2.44200236920733e-05,-3.6630037357099354e-05,-9.216631208233952e-20,5.458254669507722e-21,6.105005923018325e-06,3.1061025800730076e-21,1.787652818207166e-21,1.25810273565355e-21,4.830416910541088e-21,9.157509339274839e-05,-1.5262516171787865e-05,-1.0799670077492329e-19,-1.308215632889187e-05,3.772544995552398e-21,3.1061025800730076e-21,2.180359388148645e-06,7.695892125356602e-21,4.0763460586613204e-21,5.399835038746165e-21,0.0001554001501062885,-2.9148707413026435e-19,-0.00013320012658368796,-2.1337511641717483e-20,1.920543584140358e-20,1.787652818207166e-21,7.695892125356602e-21,1.6650015822960995e-05,-8.08068701435218e-21,8.364358063721192e-22,0.00012820512347389013,-1.528048031382823e-19,-3.205128086847253e-05,-1.8315018678549677e-05,9.930608599667403e-21,1.25810273565355e-21,4.0763460586613204e-21,-8.08068701435218e-21,4.578754669637419e-06,1.4823076576950256e-21,6.28456546110101e-05,-1.5839516113655416e-19,-4.1504614415460717e-20,-2.9005685064475983e-05,8.370525769553219e-21,4.830416910541088e-21,5.399835038746165e-21,8.364358063721192e-22,1.4823076576950256e-21,2.0718346149806166e-06,13.0,9.0,16.0,0.01980195753276348,-0.002300150925293565,-0.0031586061231791973,-0.0019114055903628469,7.631257903994992e-05,0.00013736264372710139,8.080155384959653e-05,0.00014568764891009778,0.0001131221724790521,5.237137520452961e-05,-0.002300150925293565,0.0007302337908186018,0.00013736264372710139,8.080155384959653e-05,-4.162504046689719e-05,-2.2893773348187096e-05,-1.3466925338434521e-05,-4.2199022199941326e-19,-1.5627757876841841e-19,-5.336307567702092e-20,-0.0031586061231791973,0.00013736264372710139,0.0014972771750763059,0.0001131221724790521,-3.5487203746443047e-19,-3.4340660931775346e-05,-9.359714067160019e-20,-0.00012487512140069157,-2.8280543119763024e-05,6.606856988583543e-20,-0.0019114055903628469,8.080155384959653e-05,0.0001131221724790521,0.00048678446910344064,-9.175793689133121e-20,-6.713269896979368e-20,-1.0773540452646557e-05,1.2848586115028522e-19,-1.508295645180624e-05,-2.2444875867222436e-05,7.631257903994992e-05,-4.162504046689719e-05,-3.5487203746443047e-19,-9.175793689133121e-20,3.4687534480326576e-06,9.629912291133038e-21,2.269141203011394e-21,2.6407474483878316e-20,8.70750089497271e-21,2.4676865623988198e-21,0.00013736264372710139,-2.2893773348187096e-05,-3.4340660931775346e-05,-6.713269896979368e-20,9.629912291133038e-21,5.723443337046774e-06,3.786765797401704e-21,1.388692461221617e-20,6.027906250053646e-21,1.2584152507897623e-21,8.080155384959653e-05,-1.3466925338434521e-05,-9.359714067160019e-20,-1.0773540452646557e-05,2.269141203011394e-21,3.786765797401704e-21,1.7955900375454803e-06,5.374697714633146e-21,2.79349192227136e-21,2.0117032497289633e-21,0.00014568764891009778,-4.2199022199941326e-19,-0.00012487512140069157,1.2848586115028522e-19,2.6407474483878316e-20,1.388692461221617e-20,5.374697714633146e-21,1.5609390175086446e-05,-2.020828893654756e-21,-9.190836905612935e-21,0.0001131221724790521,-1.5627757876841841e-19,-2.8280543119763024e-05,-1.508295645180624e-05,8.70750089497271e-21,6.027906250053646e-21,2.79349192227136e-21,-2.020828893654756e-21,3.77073911295156e-06,0.0,5.237137520452961e-05,-5.336307567702092e-20,6.606856988583543e-20,-2.2444875867222436e-05,2.4676865623988198e-21,1.2584152507897623e-21,2.0117032497289633e-21,-9.190836905612935e-21,0.0,1.496325012340094e-06,13.0,10.0,3.0,0.07114551961421967,-0.009840159676969051,-0.012337662279605865,-0.030869130045175552,0.00036630037357099354,0.0005994006060063839,0.0016483516665175557,0.0005827505956403911,0.0020979021210223436,0.003846153849735856,-0.009840159676969051,0.0033050281926989555,0.0005994006060063839,0.0016483516665175557,-0.00019980019715148956,-9.990009857574478e-05,-0.00027472528745420277,0.0,0.0,-0.0,-0.012337662279605865,0.0005994006060063839,0.005509768147021532,0.0020979021210223436,-6.776263578034403e-21,-0.00013320012658368796,3.4941660037888426e-20,-0.0004370629321783781,-0.0004662004648707807,-0.0,-0.030869130045175552,0.0016483516665175557,0.0020979021210223436,0.06933066993951797,1.6162849059757604e-20,3.4941660037888426e-20,-0.0016483516665175557,0.0,-0.0020979021210223436,-0.023076923564076424,0.00036630037357099354,-0.00019980019715148956,-6.776263578034403e-21,1.6162849059757604e-20,1.6650015822960995e-05,5.710318147054145e-38,-2.6938081766262673e-21,0.0,0.0,-0.0,0.0005994006060063839,-9.990009857574478e-05,-0.00013320012658368796,3.4941660037888426e-20,5.710318147054145e-38,2.2200021703611128e-05,-5.823609602417954e-21,0.0,0.0,-0.0,0.0016483516665175557,-0.00027472528745420277,3.4941660037888426e-20,-0.0016483516665175557,-2.6938081766262673e-21,-5.823609602417954e-21,0.00027472528745420277,0.0,0.0,-0.0,0.0005827505956403911,0.0,-0.0004370629321783781,0.0,0.0,0.0,0.0,4.856254963669926e-05,0.0,-0.0,0.0020979021210223436,0.0,-0.0004662004648707807,-0.0020979021210223436,0.0,0.0,0.0,0.0,0.0004662004648707807,-0.0,0.003846153849735856,-0.0,-0.0,-0.023076923564076424,-0.0,-0.0,-0.0,-0.0,-0.0,0.011538461782038212,13.0,10.0,4.0,0.05779720097780228,-0.00762737262994051,-0.009567932225763798,-0.019675325602293015,0.00027472528745420277,0.0004495504545047879,0.0009890110231935978,0.0004370629321783781,0.0012587412493303418,0.001923076924867928,-0.00762737262994051,0.0025199800729751587,0.0004495504545047879,0.0009890110231935978,-0.00014985015150159597,-7.492507575079799e-05,-0.00016483516083098948,0.0,0.0,-0.0,-0.009567932225763798,0.0004495504545047879,0.004202255979180336,0.0012587412493303418,-1.398193747447259e-37,-9.990009857574478e-05,1.6264210996538028e-20,-0.0003277971991337836,-0.0002797202905640006,-0.0,-0.019675325602293015,0.0009890110231935978,0.0012587412493303418,0.026578420773148537,5.668187292859999e-21,1.6264210996538028e-20,-0.0006593406433239579,0.0,-0.0008391608134843409,-0.005769230891019106,0.00027472528745420277,-0.00014985015150159597,-1.398193747447259e-37,5.668187292859999e-21,1.2487512321968097e-05,8.470329472543003e-22,-9.446979158013984e-22,0.0,0.0,-0.0,0.0004495504545047879,-7.492507575079799e-05,-9.990009857574478e-05,1.6264210996538028e-20,8.470329472543003e-22,1.6650015822960995e-05,-2.7107017654402074e-21,0.0,0.0,-0.0,0.0009890110231935978,-0.00016483516083098948,1.6264210996538028e-20,-0.0006593406433239579,-9.446979158013984e-22,-2.7107017654402074e-21,0.00010989011207129806,0.0,0.0,-0.0,0.0004370629321783781,0.0,-0.0003277971991337836,0.0,0.0,0.0,0.0,3.6421912227524444e-05,0.0,-0.0,0.0012587412493303418,0.0,-0.0002797202905640006,-0.0008391608134843409,0.0,0.0,0.0,0.0,0.00018648018885869533,-0.0,0.001923076924867928,-0.0,-0.0,-0.005769230891019106,-0.0,-0.0,-0.0,-0.0,-0.0,0.001923076924867928,13.0,10.0,5.0,0.04875124990940094,-0.006233766209334135,-0.00782217737287283,-0.013666333630681038,0.00021978022414259613,0.00035964036942459643,0.0006593406433239579,0.00034965036320500076,0.0008391608134843409,0.001098901149816811,-0.006233766209334135,0.002037961967289448,0.00035964036942459643,0.0006593406433239579,-0.00011988011829089373,-5.994005914544687e-05,-0.00010989011207129806,0.0,0.0,-0.0,-0.00782217737287283,0.00035964036942459643,0.0033991008531302214,0.0008391608134843409,-2.7721316389289904e-21,-7.992007886059582e-05,-5.421010862427522e-20,-0.00026223776512779295,-0.00018648018885869533,-0.0,-0.013666333630681038,0.0006593406433239579,0.0008391608134843409,0.013426573015749454,-8.835113699298188e-21,-5.082197683525802e-20,-0.00032967032166197896,0.0,-0.00041958040674217045,-0.002197802299633622,0.00021978022414259613,-0.00011988011829089373,-2.7721316389289904e-21,-8.835113699298188e-21,9.990009857574478e-06,4.620219734795637e-22,1.7548632656344647e-21,0.0,0.0,-0.0,0.00035964036942459643,-5.994005914544687e-05,-7.992007886059582e-05,-5.082197683525802e-20,4.620219734795637e-22,1.3320013749762438e-05,8.893845946170154e-21,0.0,0.0,-0.0,0.0006593406433239579,-0.00010989011207129806,-5.421010862427522e-20,-0.00032967032166197896,1.7548632656344647e-21,8.893845946170154e-21,5.494505603564903e-05,0.0,0.0,-0.0,0.00034965036320500076,0.0,-0.00026223776512779295,0.0,0.0,0.0,0.0,2.9137529054423794e-05,0.0,-0.0,0.0008391608134843409,0.0,-0.00018648018885869533,-0.00041958040674217045,0.0,0.0,0.0,0.0,9.324009442934766e-05,-0.0,0.001098901149816811,-0.0,-0.0,-0.002197802299633622,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005494505749084055,13.0,10.0,6.0,0.04218757525086403,-0.0052732983604073524,-0.006618381477892399,-0.010056015104055405,0.00018315018678549677,0.00029970030300319195,0.00047095760237425566,0.00029137529782019556,0.0005994006060063839,0.0006868132040835917,-0.0052732983604073524,0.001711383811198175,0.00029970030300319195,0.00047095760237425566,-9.990009857574478e-05,-4.995004928787239e-05,-7.849293615436181e-05,0.0,0.0,-0.0,-0.006618381477892399,0.00029970030300319195,0.002854784019291401,0.0005994006060063839,-3.400915677572204e-22,-6.660006329184398e-05,8.470329472543003e-21,-0.00021853146608918905,-0.00013320012658368796,-0.0,-0.010056015104055405,0.00047095760237425566,0.0005994006060063839,0.007799878716468811,3.880590060947658e-22,1.0164395367051604e-20,-0.00018838304094970226,0.0,-0.00023976023658178747,-0.001030219835229218,0.00018315018678549677,-9.990009857574478e-05,-3.400915677572204e-22,3.880590060947658e-22,8.325007911480498e-06,-3.1555562071124404e-22,-5.780862075622918e-22,0.0,0.0,-0.0,0.00029970030300319195,-4.995004928787239e-05,-6.660006329184398e-05,1.0164395367051604e-20,-3.1555562071124404e-22,1.1100010851805564e-05,-1.6940658945086007e-21,0.0,0.0,-0.0,0.00047095760237425566,-7.849293615436181e-05,8.470329472543003e-21,-0.00018838304094970226,-5.780862075622918e-22,-1.6940658945086007e-21,3.139717591693625e-05,0.0,0.0,-0.0,0.00029137529782019556,0.0,-0.00021853146608918905,0.0,0.0,0.0,0.0,2.428127481834963e-05,0.0,-0.0,0.0005994006060063839,0.0,-0.00013320012658368796,-0.00023976023658178747,0.0,0.0,0.0,0.0,5.328005499904975e-05,-0.0,0.0006868132040835917,-0.0,-0.0,-0.001030219835229218,-0.0,-0.0,-0.0,-0.0,-0.0,0.00020604395831469446,13.0,10.0,7.0,0.03719732537865639,-0.004570429679006338,-0.005737119819968939,-0.0077137150801718235,0.00015698587230872363,0.000256885978160426,0.00035321820178069174,0.00024975024280138314,0.0004495504545047879,0.0004578754596877843,-0.004570429679006338,0.001475310418754816,0.000256885978160426,0.00035321820178069174,-8.562865696148947e-05,-4.2814328480744734e-05,-5.886970029678196e-05,0.0,0.0,-0.0,-0.005737119819968939,0.000256885978160426,0.002461229218170047,0.0004495504545047879,-5.906455651028146e-38,-5.7085770095000044e-05,8.914699137100873e-21,-0.00018731268937699497,-9.990009857574478e-05,-0.0,-0.0077137150801718235,0.00035321820178069174,0.0004495504545047879,0.0049521904438734055,7.800852883451967e-22,8.914699137100873e-21,-0.00011773940059356391,0.0,-0.00014985015150159597,-0.0005494505749084055,0.00015698587230872363,-8.562865696148947e-05,-5.906455651028146e-38,7.800852883451967e-22,7.1357212618750054e-06,9.844092284614089e-39,-1.3001422313871577e-22,0.0,0.0,-0.0,0.000256885978160426,-4.2814328480744734e-05,-5.7085770095000044e-05,8.914699137100873e-21,9.844092284614089e-39,9.51429501583334e-06,-1.4857831895168121e-21,0.0,0.0,-0.0,0.00035321820178069174,-5.886970029678196e-05,8.914699137100873e-21,-0.00011773940059356391,-1.3001422313871577e-22,-1.4857831895168121e-21,1.9623234038590454e-05,0.0,0.0,-0.0,0.00024975024280138314,0.0,-0.00018731268937699497,0.0,0.0,0.0,0.0,2.0812520233448595e-05,0.0,-0.0,0.0004495504545047879,0.0,-9.990009857574478e-05,-0.00014985015150159597,0.0,0.0,0.0,0.0,3.330003164592199e-05,-0.0,0.0004578754596877843,-0.0,-0.0,-0.0005494505749084055,-0.0,-0.0,-0.0,-0.0,-0.0,9.157509339274839e-05,13.0,10.0,8.0,0.03327089548110962,-0.004033466335386038,-0.005063686519861221,-0.006106393411755562,0.00013736264372710139,0.00022477522725239396,0.00027472528745420277,0.00021853146608918905,0.00034965036320500076,0.00032051283051259816,-0.004033466335386038,0.0012966200010851026,0.00022477522725239396,0.00027472528745420277,-7.492507575079799e-05,-3.7462537875398993e-05,-4.578754669637419e-05,0.0,0.0,-0.0,-0.005063686519861221,0.00022477522725239396,0.0021632881835103035,0.00034965036320500076,-1.7735329984670642e-37,-4.995004928787239e-05,6.53744587231526e-21,-0.0001638985995668918,-7.770007505314425e-05,-0.0,-0.006106393411755562,0.00027472528745420277,0.00034965036320500076,0.0033472480718046427,2.1294219964980913e-21,6.53744587231526e-21,-7.849293615436181e-05,0.0,-9.990009857574478e-05,-0.00032051283051259816,0.00013736264372710139,-7.492507575079799e-05,-1.7735329984670642e-37,2.1294219964980913e-21,6.243756160984049e-06,2.95588833077844e-38,-3.5490367449753153e-22,0.0,0.0,-0.0,0.00022477522725239396,-3.7462537875398993e-05,-4.995004928787239e-05,6.53744587231526e-21,2.95588833077844e-38,8.325007911480498e-06,-1.089574278394478e-21,0.0,0.0,-0.0,0.00027472528745420277,-4.578754669637419e-05,6.53744587231526e-21,-7.849293615436181e-05,-3.5490367449753153e-22,-1.089574278394478e-21,1.308215632889187e-05,0.0,0.0,-0.0,0.00021853146608918905,0.0,-0.0001638985995668918,0.0,0.0,0.0,0.0,1.8210956113762222e-05,0.0,-0.0,0.00034965036320500076,0.0,-7.770007505314425e-05,-9.990009857574478e-05,0.0,0.0,0.0,0.0,2.2200021703611128e-05,-0.0,0.00032051283051259816,-0.0,-0.0,-0.00032051283051259816,-0.0,-0.0,-0.0,-0.0,-0.0,4.578754669637419e-05,13.0,10.0,9.0,0.030098790302872658,-0.0036097236443310976,-0.004532134626060724,-0.004955044947564602,0.00012210012937430292,0.00019980019715148956,0.00021978022414259613,0.00019425019854679704,0.0002797202905640006,0.00023310023243539035,-0.0036097236443310976,0.0011566211469471455,0.00019980019715148956,0.00021978022414259613,-6.660006329184398e-05,-3.330003164592199e-05,-3.6630037357099354e-05,0.0,0.0,-0.0,-0.004532134626060724,0.00019980019715148956,0.0019298294791951776,0.0002797202905640006,9.767231904624951e-38,-4.4400043407222256e-05,4.6224363203433376e-21,-0.00014568764891009778,-6.216006295289844e-05,-0.0,-0.004955044947564602,0.00021978022414259613,0.0002797202905640006,0.002370962407439947,-1.1609918125191812e-21,4.6224363203433376e-21,-5.494505603564903e-05,0.0,-6.993007264100015e-05,-0.00019980019715148956,0.00012210012937430292,-6.660006329184398e-05,9.767231904624951e-38,-1.1609918125191812e-21,5.550005425902782e-06,-1.6278720308141074e-38,1.9349863121260537e-22,0.0,0.0,-0.0,0.00019980019715148956,-3.330003164592199e-05,-4.4400043407222256e-05,4.6224363203433376e-21,-1.6278720308141074e-38,7.400007234537043e-06,-7.704061038776542e-22,0.0,0.0,-0.0,0.00021978022414259613,-3.6630037357099354e-05,4.6224363203433376e-21,-5.494505603564903e-05,1.9349863121260537e-22,-7.704061038776542e-22,9.157509339274839e-06,0.0,0.0,-0.0,0.00019425019854679704,0.0,-0.00014568764891009778,0.0,0.0,0.0,0.0,1.618751593923662e-05,0.0,-0.0,0.0002797202905640006,0.0,-6.216006295289844e-05,-6.993007264100015e-05,0.0,0.0,0.0,0.0,1.554001573822461e-05,-0.0,0.00023310023243539035,-0.0,-0.0,-0.00019980019715148956,-0.0,-0.0,-0.0,-0.0,-0.0,2.4975024643936194e-05,13.0,10.0,10.0,0.02748160995543003,-0.0032667333725839853,-0.004101807251572609,-0.004101807251572609,0.00010989011207129806,0.00017982018471229821,0.00017982018471229821,0.00017482518160250038,0.00022886204533278942,0.00017482518160250038,-0.0032667333725839853,0.0010439560282975435,0.00017982018471229821,0.00017982018471229821,-5.994005914544687e-05,-2.9970029572723433e-05,-2.9970029572723433e-05,0.0,0.0,-0.0,-0.004101807251572609,0.00017982018471229821,0.001741932355798781,0.00022886204533278942,2.2182277920222932e-21,-3.996003943029791e-05,-1.307056924125379e-20,-0.00013111888256389648,-5.0858234317274764e-05,-0.0,-0.004101807251572609,0.00017982018471229821,0.00022886204533278942,0.001741932355798781,8.81924479662392e-22,-1.307056924125379e-20,-3.996003943029791e-05,0.0,-5.0858234317274764e-05,-0.00013111888256389648,0.00010989011207129806,-5.994005914544687e-05,2.2182277920222932e-21,8.81924479662392e-22,4.995004928787239e-06,-3.697046488327482e-22,-1.46987404862549e-22,0.0,0.0,-0.0,0.00017982018471229821,-2.9970029572723433e-05,-3.996003943029791e-05,-1.307056924125379e-20,-3.697046488327482e-22,6.660006874881219e-06,2.1784282068756317e-21,0.0,0.0,-0.0,0.00017982018471229821,-2.9970029572723433e-05,-1.307056924125379e-20,-3.996003943029791e-05,-1.46987404862549e-22,2.1784282068756317e-21,6.660006874881219e-06,0.0,0.0,-0.0,0.00017482518160250038,0.0,-0.00013111888256389648,0.0,0.0,0.0,0.0,1.4568764527211897e-05,0.0,-0.0,0.00022886204533278942,0.0,-5.0858234317274764e-05,-5.0858234317274764e-05,0.0,0.0,0.0,0.0,1.130182954511838e-05,-0.0,0.00017482518160250038,-0.0,-0.0,-0.00013111888256389648,-0.0,-0.0,-0.0,-0.0,-0.0,1.4568764527211897e-05,13.0,10.0,11.0,0.02528485469520092,-0.0029833803419023752,-0.0037462536711245775,-0.0034517929889261723,9.990009857574478e-05,0.00016347289783880115,0.00014985015150159597,0.00015893197269178927,0.00019071837596129626,0.00013448089885059744,-0.0029833803419023752,0.0009513213881291449,0.00016347289783880115,0.00014985015150159597,-5.4490963520947844e-05,-2.7245481760473922e-05,-2.4975024643936194e-05,0.0,-5.7077711971242855e-21,0.0,-0.0037462536711245775,0.00016347289783880115,0.0015874276868999004,0.00019071837596129626,-1.9059747848224113e-22,-3.632731022662483e-05,-1.6940658945086007e-21,-0.00011919897951884195,-4.23818601120729e-05,-1.8634724839594607e-20,-0.0034517929889261723,0.00014985015150159597,0.00019071837596129626,0.0013179361121729016,-1.1883360286570975e-21,3.383165070270832e-21,-2.9970029572723433e-05,-0.0,-3.814367300947197e-05,-8.965393499238417e-05,9.990009857574478e-05,-5.4490963520947844e-05,-1.9059747848224113e-22,-1.1883360286570975e-21,4.540913778328104e-06,-9.896540083536838e-39,8.766926152994468e-23,0.0,3.8119494434270777e-23,4.552715708067299e-23,0.00016347289783880115,-2.7245481760473922e-05,-3.632731022662483e-05,3.383165070270832e-21,-9.896540083536838e-39,6.054551704437472e-06,-5.638608618741713e-22,-0.0,-1.1754943508222875e-37,0.0,0.00014985015150159597,-2.4975024643936194e-05,-1.6940658945086007e-21,-2.9970029572723433e-05,8.766926152994468e-23,-5.638608618741713e-22,4.995004928787239e-06,0.0,1.0587911840678754e-21,0.0,0.00015893197269178927,0.0,-0.00011919897951884195,-0.0,0.0,-0.0,0.0,1.3244331057649106e-05,0.0,0.0,0.00019071837596129626,-5.7077711971242855e-21,-4.23818601120729e-05,-3.814367300947197e-05,3.8119494434270777e-23,-1.1754943508222875e-37,1.0587911840678754e-21,0.0,8.47637238621246e-06,3.8116482626443515e-21,0.00013448089885059744,0.0,-1.8634724839594607e-20,-8.965393499238417e-05,4.552715708067299e-23,0.0,0.0,0.0,3.8116482626443515e-21,8.965393135440536e-06,13.0,10.0,12.0,0.023414406925439835,-0.002745331497862935,-0.0034475140273571014,-0.002945131855085492,9.157509339274839e-05,0.00014985015150159597,0.0001267962798010558,0.00014568764891009778,0.00016137708735186607,0.00010566356650087982,-0.002745331497862935,0.0008738056640140712,0.00014985015150159597,0.0001267962798010558,-4.995004928787239e-05,-2.4975024643936194e-05,-2.1132713300175965e-05,0.0,2.4008430583727543e-21,1.6940658945086007e-20,-0.0034475140273571014,0.00014985015150159597,0.001458130544051528,0.00016137708735186607,2.6006217165885155e-22,-3.330003164592199e-05,4.235164736271502e-21,-0.00010926573304459453,-3.586157254176214e-05,6.776263578034403e-21,-0.002945131855085492,0.0001267962798010558,0.00016137708735186607,0.001021530944854021,-6.257550147155567e-22,1.8619043950873046e-21,-2.305386988155078e-05,-0.0,-2.9341288609430194e-05,-6.33981399005279e-05,9.157509339274839e-05,-4.995004928787239e-05,2.6006217165885155e-22,-6.257550147155567e-22,4.162503955740249e-06,-4.5232860651959923e-38,5.600676652321831e-22,0.0,-4.7284032358134326e-23,-2.128434822272185e-22,0.00014985015150159597,-2.4975024643936194e-05,-3.330003164592199e-05,1.8619043950873046e-21,-4.5232860651959923e-38,5.550005425902782e-06,-3.1031740759573375e-22,-0.0,3.5264830524668625e-38,2.5860875718090325e-37,0.0001267962798010558,-2.1132713300175965e-05,4.235164736271502e-21,-2.305386988155078e-05,5.600676652321831e-22,-3.1031740759573375e-22,3.84231134376023e-06,0.0,-5.293955920339377e-22,-2.964615315390051e-21,0.00014568764891009778,0.0,-0.00010926573304459453,-0.0,0.0,-0.0,0.0,1.2140637409174815e-05,0.0,0.0,0.00016137708735186607,2.4008430583727543e-21,-3.586157254176214e-05,-2.9341288609430194e-05,-4.7284032358134326e-23,3.5264830524668625e-38,-5.293955920339377e-22,0.0,6.520286206068704e-06,-1.2705494208814505e-21,0.00010566356650087982,1.6940658945086007e-20,6.776263578034403e-21,-6.33981399005279e-05,-2.128434822272185e-22,2.5860875718090325e-37,-2.964615315390051e-21,0.0,-1.2705494208814505e-21,5.763467470387695e-06,13.0,10.0,13.0,0.021802373230457306,-0.0025425124913454056,-0.0031929609831422567,-0.0025425124913454056,8.453085320070386e-05,0.00013832321565132588,0.00010868252866202965,0.00013448089885059744,0.00013832321565132588,8.453085320070386e-05,-0.0025425124913454056,0.0008079832186922431,0.00013832321565132588,0.00010868252866202965,-4.610773976310156e-05,-2.305386988155078e-05,-1.8113754777004942e-05,0.0,7.070083139933353e-21,1.6940658945086007e-21,-0.0031929609831422567,0.00013832321565132588,0.0013483311049640179,0.00013832321565132588,2.1009214238690913e-21,-3.073849075008184e-05,4.235164736271502e-22,-0.00010086067777592689,-3.073849075008184e-05,2.0328790734103208e-20,-0.0025425124913454056,0.00010868252866202965,0.00013832321565132588,0.0008079832186922431,1.6829359127948226e-21,-6.58316214144302e-21,-1.8113754777004942e-05,-0.0,-2.305386988155078e-05,-4.610773976310156e-05,8.453085320070386e-05,-4.610773976310156e-05,2.1009214238690913e-21,1.6829359127948226e-21,3.84231134376023e-06,-2.8438819335161775e-22,3.198657105727692e-23,0.0,-6.576538991500529e-23,-1.222382760455457e-22,0.00013832321565132588,-2.305386988155078e-05,-3.073849075008184e-05,-6.58316214144302e-21,-2.8438819335161775e-22,5.123082246427657e-06,1.0971936902405033e-21,0.0,-3.9966807927957775e-37,-1.410593220986745e-37,0.00010868252866202965,-1.8113754777004942e-05,4.235164736271502e-22,-1.8113754777004942e-05,3.198657105727692e-23,1.0971936902405033e-21,3.0189589779183734e-06,0.0,-1.0587911840678754e-21,-2.117582368135751e-22,0.00013448089885059744,0.0,-0.00010086067777592689,-0.0,0.0,0.0,0.0,1.120674187404802e-05,0.0,0.0,0.00013832321565132588,7.070083139933353e-21,-3.073849075008184e-05,-2.305386988155078e-05,-6.576538991500529e-23,-3.9966807927957775e-37,-1.0587911840678754e-21,0.0,5.123082246427657e-06,-2.964615315390051e-21,8.453085320070386e-05,1.6940658945086007e-21,2.0328790734103208e-20,-4.610773976310156e-05,-1.222382760455457e-22,-1.410593220986745e-37,-2.117582368135751e-22,0.0,-2.964615315390051e-21,3.84231134376023e-06,13.0,10.0,14.0,0.02039852924644947,-0.0023676324635744095,-0.0029734550043940544,-0.002217247150838375,7.849293615436181e-05,0.000128442989080213,9.419152047485113e-05,0.00012487512140069157,0.00011988011829089373,6.868132186355069e-05,-0.0023676324635744095,0.0007513914606533945,0.000128442989080213,9.419152047485113e-05,-4.2814328480744734e-05,-2.1407164240372367e-05,-1.5698587958468124e-05,0.0,-4.567912955634201e-23,-6.776263578034403e-21,-0.0029734550043940544,0.000128442989080213,0.0012539246818050742,0.00011988011829089373,-8.981252087878327e-23,-2.8542885047500022e-05,2.117582368135751e-21,-9.365634468849748e-05,-2.6640027499524876e-05,0.0,-0.002217247150838375,9.419152047485113e-05,0.00011988011829089373,0.000650180852971971,3.999229439947615e-22,2.0689937870323217e-21,-1.4491003639705013e-05,-0.0,-1.8443095541442744e-05,-3.4340660931775346e-05,7.849293615436181e-05,-4.2814328480744734e-05,-8.981252087878327e-23,3.999229439947615e-22,3.5678606309375027e-06,3.39180481757999e-38,-2.375582545740776e-22,-0.0,1.3817310540338547e-23,6.887916905831918e-23,0.000128442989080213,-2.1407164240372367e-05,-2.8542885047500022e-05,2.0689937870323217e-21,3.39180481757999e-38,4.75714750791667e-06,-3.448323062532366e-22,-0.0,0.0,-1.410593220986745e-37,9.419152047485113e-05,-1.5698587958468124e-05,2.117582368135751e-21,-1.4491003639705013e-05,-2.375582545740776e-22,-3.448323062532366e-22,2.415167273284169e-06,0.0,-5.293955920339377e-23,1.0587911840678754e-21,0.00012487512140069157,0.0,-9.365634468849748e-05,-0.0,-0.0,-0.0,0.0,1.0406260116724297e-05,0.0,0.0,0.00011988011829089373,-4.567912955634201e-23,-2.6640027499524876e-05,-1.8443095541442744e-05,1.3817310540338547e-23,0.0,-5.293955920339377e-23,0.0,4.098465524293715e-06,0.0,6.868132186355069e-05,-6.776263578034403e-21,0.0,-3.4340660931775346e-05,6.887916905831918e-23,-1.410593220986745e-37,1.0587911840678754e-21,0.0,0.0,2.6415891625219956e-06,13.0,10.0,15.0,0.019164903089404106,-0.0022152846213430166,-0.0027822176925837994,-0.0019506963435560465,7.326007471419871e-05,0.00011988011829089373,8.241758041549474e-05,0.00011655011621769518,0.00010489510168554261,5.656108623952605e-05,-0.0022152846213430166,0.000702214427292347,0.00011988011829089373,8.241758041549474e-05,-3.996003943029791e-05,-1.9980019715148956e-05,-1.3736264008912258e-05,0.0,-9.193787371616207e-22,-5.082197683525802e-21,-0.0027822176925837994,0.00011988011829089373,0.001171883661299944,0.00010489510168554261,-1.754596289860589e-22,-2.6640027499524876e-05,1.6940658945086007e-21,-8.741259080125019e-05,-2.3310023607336916e-05,-1.6940658945086007e-21,-0.0019506963435560465,8.241758041549474e-05,0.00010489510168554261,0.0005310203414410353,-2.9488407226147235e-21,1.3788067845235239e-21,-1.1773940059356391e-05,-0.0,-1.4985014786361717e-05,-2.6105117285624146e-05,7.326007471419871e-05,-3.996003943029791e-05,-1.754596289860589e-22,-2.9488407226147235e-21,3.3300034374406096e-06,-2.465392950349596e-38,2.1052544285621914e-22,0.0,2.506566083294504e-23,1.0449459809836501e-22,0.00011988011829089373,-1.9980019715148956e-05,-2.6640027499524876e-05,1.3788067845235239e-21,-2.465392950349596e-38,4.440004431671696e-06,-2.2980113916843697e-22,-0.0,-5.877471754111438e-39,-1.0579449157400588e-37,8.241758041549474e-05,-1.3736264008912258e-05,1.6940658945086007e-21,-1.1773940059356391e-05,2.1052544285621914e-22,-2.2980113916843697e-22,1.9623234948085155e-06,0.0,1.0587911840678754e-22,7.411538288475128e-22,0.00011655011621769518,0.0,-8.741259080125019e-05,-0.0,0.0,-0.0,0.0,9.71250938164303e-06,0.0,0.0,0.00010489510168554261,-9.193787371616207e-22,-2.3310023607336916e-05,-1.4985014786361717e-05,2.506566083294504e-23,-5.877471754111438e-39,1.0587911840678754e-22,0.0,3.3300034374406096e-06,3.1763735522036263e-22,5.656108623952605e-05,-5.082197683525802e-21,-1.6940658945086007e-21,-2.6105117285624146e-05,1.0449459809836501e-22,-1.0579449157400588e-37,7.411538288475128e-22,0.0,3.1763735522036263e-22,1.864651153482555e-06,13.0,10.0,16.0,0.01807224564254284,-0.00208137440495193,-0.002614113735035062,-0.0017295205034315586,6.868132186355069e-05,0.00011238761362619698,7.272139919223264e-05,0.00010926573304459453,9.2554502771236e-05,4.7134239139268175e-05,-0.00208137440495193,0.0006590835400857031,0.00011238761362619698,7.272139919223264e-05,-3.7462537875398993e-05,-1.8731268937699497e-05,-1.212023289554054e-05,0.0,1.6604656201172728e-21,0.0,-0.002614113735035062,0.00011238761362619698,0.001099926419556141,9.2554502771236e-05,-1.3978088912520366e-22,-2.4975024643936194e-05,3.3881317890172014e-21,-8.19492997834459e-05,-2.056766788882669e-05,4.235164736271502e-21,-0.0017295205034315586,7.272139919223264e-05,9.2554502771236e-05,0.00043934007408097386,-5.565710929123326e-23,1.431595791200878e-21,-9.69618577073561e-06,-0.0,-1.2340600733296014e-05,-2.0200388462399133e-05,6.868132186355069e-05,-3.7462537875398993e-05,-1.3978088912520366e-22,-5.565710929123326e-23,3.1218780804920243e-06,1.6834260880427255e-38,-1.140183075478193e-22,0.0,1.8637452619630666e-23,4.068848939188266e-23,0.00011238761362619698,-1.8731268937699497e-05,-2.4975024643936194e-05,1.431595791200878e-21,1.6834260880427255e-38,4.162503955740249e-06,-2.3859929853347967e-22,-0.0,3.5264830524668625e-38,0.0,7.272139919223264e-05,-1.212023289554054e-05,3.3881317890172014e-21,-9.69618577073561e-06,-1.140183075478193e-22,-2.3859929853347967e-22,1.616030999684881e-06,0.0,-2.6469779601696886e-22,-5.293955920339377e-23,0.00010926573304459453,0.0,-8.19492997834459e-05,-0.0,0.0,-0.0,0.0,9.105478056881111e-06,0.0,0.0,9.2554502771236e-05,1.6604656201172728e-21,-2.056766788882669e-05,-1.2340600733296014e-05,1.8637452619630666e-23,3.5264830524668625e-38,-2.6469779601696886e-22,0.0,2.7423557185102254e-06,-6.352747104407253e-22,4.7134239139268175e-05,0.0,4.235164736271502e-21,-2.0200388462399133e-05,4.068848939188266e-23,0.0,-5.293955920339377e-23,0.0,-6.352747104407253e-22,1.3466925565808197e-06,13.0,11.0,3.0,0.06558185070753098,-0.008991008624434471,-0.01039345283061266,-0.028221778571605682,0.0003330003237351775,0.0004995004856027663,0.0014985015150159597,0.00044826968223787844,0.0017482517287135124,0.003496503457427025,-0.008991008624434471,0.0030121393501758575,0.0004995004856027663,0.0014985015150159597,-0.00018163654021918774,-8.325008093379438e-05,-0.00024975024280138314,1.575341727476373e-20,0.0,-0.0,-0.01039345283061266,0.0004995004856027663,0.004170615691691637,0.0017482517287135124,-1.0695088275554058e-20,-9.990009857574478e-05,3.390308631121408e-20,-0.0002988464548252523,-0.00034965036320500076,-0.0,-0.028221778571605682,0.0014985015150159597,0.0017482517287135124,0.06318681687116623,-1.2075030716858512e-20,3.6512256301276416e-20,-0.0014985015150159597,-1.4522284544878208e-21,-0.0017482517287135124,-0.02097902074456215,0.0003330003237351775,-0.00018163654021918774,-1.0695088275554058e-20,-1.2075030716858512e-20,1.5136378351598978e-05,1.1266587683884371e-21,2.0125049848441575e-21,-1.0545584088859491e-23,0.0,-0.0,0.0004995004856027663,-8.325008093379438e-05,-9.990009857574478e-05,3.6512256301276416e-20,1.1266587683884371e-21,1.6650015822960995e-05,-6.085376319477258e-21,-2.2305557315958527e-21,0.0,-0.0,0.0014985015150159597,-0.00024975024280138314,3.390308631121408e-20,-0.0014985015150159597,2.0125049848441575e-21,-6.085376319477258e-21,0.00024975024280138314,2.4203807574797014e-22,0.0,-0.0,0.00044826968223787844,1.575341727476373e-20,-0.0002988464548252523,-1.4522284544878208e-21,-1.0545584088859491e-23,-2.2305557315958527e-21,2.4203807574797014e-22,2.9884644391131587e-05,0.0,-0.0,0.0017482517287135124,0.0,-0.00034965036320500076,-0.0017482517287135124,0.0,0.0,0.0,0.0,0.00034965036320500076,-0.0,0.003496503457427025,-0.0,-0.0,-0.02097902074456215,-0.0,-0.0,-0.0,-0.0,-0.0,0.010489510372281075,13.0,11.0,4.0,0.053244832903146744,-0.006968032103031874,-0.008057327009737492,-0.017982017248868942,0.00024975024280138314,0.00037462537875398993,0.0008991009090095758,0.00033620226895436645,0.0010489510605111718,0.0017482517287135124,-0.006968032103031874,0.0022965669631958008,0.00037462537875398993,0.0008991009090095758,-0.0001362274051643908,-6.243756070034578e-05,-0.00014985015150159597,-1.4740649321379054e-20,1.969863379980587e-21,-0.0,-0.008057327009737492,0.00037462537875398993,0.0031804093159735203,0.0010489510605111718,-5.882931134697007e-21,-7.492507575079799e-05,2.8369458039561734e-20,-0.00022413484111893922,-0.00020979020337108523,-0.0,-0.017982017248868942,0.0008991009090095758,0.0010489510605111718,0.02422577515244484,2.0291695641818683e-21,2.7969212483011173e-20,-0.0005994006060063839,9.857358686810278e-21,-0.0006993007264100015,-0.005244755186140537,0.00024975024280138314,-0.0001362274051643908,-5.882931134697007e-21,2.0291695641818683e-21,1.1352283763699234e-05,1.0064396985812186e-21,-2.1928664566557405e-22,5.334119037834713e-23,-1.426899304646201e-22,-0.0,0.00037462537875398993,-6.243756070034578e-05,-7.492507575079799e-05,2.7969212483011173e-20,1.0064396985812186e-21,1.2487512321968097e-05,-4.6155850192052824e-21,3.1036545616683767e-21,-5.514022238258348e-23,-0.0,0.0008991009090095758,-0.00014985015150159597,2.8369458039561734e-20,-0.0005994006060063839,-2.1928664566557405e-22,-4.6155850192052824e-21,9.990009857574478e-05,-7.65178543539808e-23,9.927733081761015e-23,-0.0,0.00033620226895436645,-1.4740649321379054e-20,-0.00022413484111893922,9.857358686810278e-21,5.334119037834713e-23,3.1036545616683767e-21,-7.65178543539808e-23,2.241348374809604e-05,-1.8796504080627647e-21,-0.0,0.0010489510605111718,1.969863379980587e-21,-0.00020979020337108523,-0.0006993007264100015,-1.426899304646201e-22,-5.514022238258348e-23,9.927733081761015e-23,-1.8796504080627647e-21,0.0001398601452820003,-0.0,0.0017482517287135124,-0.0,-0.0,-0.005244755186140537,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017482517287135124,13.0,11.0,5.0,0.04489356651902199,-0.005694305524230003,-0.006585721857845783,-0.012487512081861496,0.00019980019715148956,0.00029970030300319195,0.0005994006060063839,0.0002689617977011949,0.0006993007264100015,0.0009990009712055326,-0.005694305524230003,0.0018572336994111538,0.00029970030300319195,0.0005994006060063839,-0.00010898192704189569,-4.995004928787239e-05,-9.990009857574478e-05,-3.3881317890172014e-21,3.3881317890172014e-21,-0.0,-0.006585721857845783,0.00029970030300319195,0.0025722994469106197,0.0006993007264100015,3.530341019200616e-21,-5.994005914544687e-05,2.1442977169817994e-20,-0.00017930786998476833,-0.0001398601452820003,-0.0,-0.012487512081861496,0.0005994006060063839,0.0006993007264100015,0.012237762100994587,7.549761461302446e-21,2.4652525188228972e-20,-0.00029970030300319195,-1.3552527156068805e-20,-0.00034965036320500076,-0.001998001942411065,0.00019980019715148956,-0.00010898192704189569,3.530341019200616e-21,7.549761461302446e-21,9.081827556656208e-06,-9.062347241370537e-22,-1.6305132405000786e-21,2.2870041945927674e-22,1.0785043763272416e-22,-0.0,0.00029970030300319195,-4.995004928787239e-05,-5.994005914544687e-05,2.4652525188228972e-20,-9.062347241370537e-22,9.990009857574478e-06,-4.374339086023899e-21,8.470329472543003e-22,-4.235164736271502e-22,-0.0,0.0005994006060063839,-9.990009857574478e-05,2.1442977169817994e-20,-0.00029970030300319195,-1.6305132405000786e-21,-4.374339086023899e-21,4.995004928787239e-05,1.0802938126274268e-23,3.9370763514027e-23,-0.0,0.0002689617977011949,-3.3881317890172014e-21,-0.00017930786998476833,-1.3552527156068805e-20,2.2870041945927674e-22,8.470329472543003e-22,1.0802938126274268e-23,1.793078627088107e-05,0.0,-0.0,0.0006993007264100015,3.3881317890172014e-21,-0.0001398601452820003,-0.00034965036320500076,1.0785043763272416e-22,-4.235164736271502e-22,3.9370763514027e-23,0.0,6.993007264100015e-05,-0.0,0.0009990009712055326,-0.0,-0.0,-0.001998001942411065,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004995004856027663,13.0,11.0,6.0,0.038838449865579605,-0.004816611763089895,-0.005571351852267981,-0.009187241084873676,0.00016650016186758876,0.00024975024280138314,0.00042814327753148973,0.00022413484111893922,0.0004995004856027663,0.0006243756506592035,-0.004816611763089895,0.0015595875447615981,0.00024975024280138314,0.00042814327753148973,-9.081827010959387e-05,-4.162504046689719e-05,-7.135721534723416e-05,-6.776263578034403e-21,-1.6940658945086007e-21,-0.0,-0.005571351852267981,0.00024975024280138314,0.0021602329798042774,0.0004995004856027663,-4.888495248520611e-21,-4.995004928787239e-05,7.924187512072702e-21,-0.00014942322741262615,-9.990009857574478e-05,-0.0,-0.009187241084873676,0.00042814327753148973,0.0004995004856027663,0.007108962628990412,-1.6929870054205872e-20,1.4209032297036014e-20,-0.00017125731392297894,0.0,-0.00019980019715148956,-0.0009365634177811444,0.00016650016186758876,-9.081827010959387e-05,-4.888495248520611e-21,-1.6929870054205872e-20,7.568189175799489e-06,8.565406775372585e-22,2.516388638498405e-21,-2.469151546519575e-22,1.1423639918912033e-22,-0.0,0.00024975024280138314,-4.162504046689719e-05,-4.995004928787239e-05,1.4209032297036014e-20,8.565406775372585e-22,8.325007911480498e-06,-1.487497529414264e-21,8.470329472543003e-22,-4.235164736271502e-22,-0.0,0.00042814327753148973,-7.135721534723416e-05,7.924187512072702e-21,-0.00017125731392297894,2.516388638498405e-21,-1.487497529414264e-21,2.8542885047500022e-05,9.216369871868915e-23,1.4944579836580527e-22,-0.0,0.00022413484111893922,-6.776263578034403e-21,-0.00014942322741262615,0.0,-2.469151546519575e-22,8.470329472543003e-22,9.216369871868915e-23,1.4942322195565794e-05,0.0,-0.0,0.0004995004856027663,-1.6940658945086007e-21,-9.990009857574478e-05,-0.00019980019715148956,1.1423639918912033e-22,-4.235164736271502e-22,1.4944579836580527e-22,0.0,3.996003943029791e-05,-0.0,0.0006243756506592035,-0.0,-0.0,-0.0009365634177811444,-0.0,-0.0,-0.0,-0.0,-0.0,0.00018731268937699497,13.0,11.0,7.0,0.03423728421330452,-0.004174396861344576,-0.004828962031751871,-0.007046524900943041,0.00014271443069446832,0.00021407163876574486,0.0003211074508726597,0.0001921155781019479,0.00037462537875398993,0.0004162504046689719,-0.004174396861344576,0.0013444348005577922,0.00021407163876574486,0.0003211074508726597,-7.784423360135406e-05,-3.567860767361708e-05,-5.3517909691436216e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-0.0,-0.004828962031751871,0.00021407163876574486,0.001862331759184599,0.00037462537875398993,-3.085595326737333e-21,-4.2814328480744734e-05,-1.294220034214965e-20,-0.00012807705206796527,-7.492507575079799e-05,-0.0,-0.007046524900943041,0.0003211074508726597,0.00037462537875398993,0.004513343796133995,-7.102467382083839e-22,-1.0179284618077559e-20,-0.00010703581938287243,0.0,-0.00012487512140069157,-0.0004995004856027663,0.00014271443069446832,-7.784423360135406e-05,-3.085595326737333e-21,-7.102467382083839e-22,6.4870196183619555e-06,6.868738119504185e-23,1.8334245647669465e-24,2.58363735197249e-22,1.865038078768979e-22,-0.0,0.00021407163876574486,-3.567860767361708e-05,-4.2814328480744734e-05,-1.0179284618077559e-20,6.868738119504185e-23,7.1357212618750054e-06,1.600849445134676e-21,0.0,4.235164736271502e-22,-0.0,0.0003211074508726597,-5.3517909691436216e-05,-1.294220034214965e-20,-0.00010703581938287243,1.8334245647669465e-24,1.600849445134676e-21,1.783930383680854e-05,2.469231063698821e-22,1.0297688020381771e-22,-0.0,0.0001921155781019479,-3.3881317890172014e-21,-0.00012807705206796527,0.0,2.58363735197249e-22,0.0,2.469231063698821e-22,1.2807705388695467e-05,-8.470329472543003e-22,-0.0,0.00037462537875398993,-3.3881317890172014e-21,-7.492507575079799e-05,-0.00012487512140069157,1.865038078768979e-22,4.235164736271502e-22,1.0297688020381771e-22,-8.470329472543003e-22,2.4975024643936194e-05,-0.0,0.0004162504046689719,-0.0,-0.0,-0.0004995004856027663,-0.0,-0.0,-0.0,-0.0,-0.0,8.325008093379438e-05,13.0,11.0,8.0,0.030618419870734215,-0.0036838161759078503,-0.004261763766407967,-0.005577755626291037,0.00012487512140069157,0.00018731268937699497,0.00024975024280138314,0.00016810113447718322,0.00029137529782019556,0.00029137529782019556,-0.0036838161759078503,0.0011815836187452078,0.00018731268937699497,0.00024975024280138314,-6.81137025821954e-05,-3.121878035017289e-05,-4.162504046689719e-05,-1.0164395367051604e-20,0.0,-0.0,-0.004261763766407967,0.00018731268937699497,0.00163682468701154,0.00029137529782019556,-3.2569041084796384e-21,-3.7462537875398993e-05,9.117305880594513e-21,-0.00011206742055946961,-5.827505810884759e-05,-0.0,-0.005577755626291037,0.00024975024280138314,0.00029137529782019556,0.0030505210161209106,1.4988768164176408e-21,9.277734490783618e-21,-7.135721534723416e-05,-3.3881317890172014e-21,-8.325008093379438e-05,-0.00029137529782019556,0.00012487512140069157,-6.81137025821954e-05,-3.2569041084796384e-21,1.4988768164176408e-21,5.676141881849617e-06,7.715544960290387e-23,-3.226396926143246e-22,2.3080689264638307e-22,8.739227037801624e-23,-0.0,0.00018731268937699497,-3.121878035017289e-05,-3.7462537875398993e-05,9.277734490783618e-21,7.715544960290387e-23,6.243756160984049e-06,-1.5195509800990855e-21,2.117582368135751e-21,2.117582368135751e-22,-0.0,0.00024975024280138314,-4.162504046689719e-05,9.117305880594513e-21,-7.135721534723416e-05,-3.226396926143246e-22,-1.5195509800990855e-21,1.1892869224539027e-05,-4.70197740328915e-37,-4.70197740328915e-38,-0.0,0.00016810113447718322,-1.0164395367051604e-20,-0.00011206742055946961,-3.3881317890172014e-21,2.3080689264638307e-22,2.117582368135751e-21,-4.70197740328915e-37,1.120674187404802e-05,8.470329472543003e-22,-0.0,0.00029137529782019556,0.0,-5.827505810884759e-05,-8.325008093379438e-05,8.739227037801624e-23,2.117582368135751e-22,-4.70197740328915e-38,8.470329472543003e-22,1.6650015822960995e-05,-0.0,0.00029137529782019556,-0.0,-0.0,-0.00029137529782019556,-0.0,-0.0,-0.0,-0.0,-0.0,4.162504046689719e-05,13.0,11.0,9.0,0.02769569121301174,-0.0032967033330351114,-0.0038141345139592886,-0.004525777418166399,0.00011100011033704504,0.00016650016186758876,0.00019980019715148956,0.00014942322741262615,0.00023310023243539035,0.0002119092969223857,-0.0032967033330351114,0.0010539965005591512,0.00016650016186758876,0.00019980019715148956,-6.054551340639591e-05,-2.775002758426126e-05,-3.330003164592199e-05,0.0,-1.6940658945086007e-21,-0.0,-0.0038141345139592886,0.00016650016186758876,0.0014601353323087096,0.00023310023243539035,4.793724705298077e-22,-3.330003164592199e-05,7.310570554955374e-21,-9.961548494175076e-05,-4.662004721467383e-05,-0.0,-0.004525777418166399,0.00019980019715148956,0.00023310023243539035,0.0021607179660350084,-1.4551134892121696e-21,6.4592736693579476e-21,-4.995004928787239e-05,0.0,-5.827505810884759e-05,-0.00018163654021918774,0.00011100011033704504,-6.054551340639591e-05,4.793724705298077e-22,-1.4551134892121696e-21,5.045459602115443e-06,-2.8064990142863297e-22,1.7590785344151824e-22,8.20773547389695e-23,7.993326866390224e-23,-0.0,0.00016650016186758876,-2.775002758426126e-05,-3.330003164592199e-05,6.4592736693579476e-21,-2.8064990142863297e-22,5.550005425902782e-06,-1.218428459483961e-21,4.235164736271502e-22,2.117582368135751e-22,-0.0,0.00019980019715148956,-3.330003164592199e-05,7.310570554955374e-21,-4.995004928787239e-05,1.7590785344151824e-22,-1.218428459483961e-21,8.325007911480498e-06,0.0,0.0,-0.0,0.00014942322741262615,0.0,-9.961548494175076e-05,0.0,8.20773547389695e-23,4.235164736271502e-22,0.0,9.961548130377196e-06,0.0,-0.0,0.00023310023243539035,-1.6940658945086007e-21,-4.662004721467383e-05,-5.827505810884759e-05,7.993326866390224e-23,2.117582368135751e-22,0.0,0.0,1.1655011803668458e-05,-0.0,0.0002119092969223857,-0.0,-0.0,-0.00018163654021918774,-0.0,-0.0,-0.0,-0.0,-0.0,2.2704567527398467e-05,13.0,11.0,10.0,0.02528485469520092,-0.0029833803419023752,-0.0034517929889261723,-0.0037462536711245775,9.990009857574478e-05,0.00014985015150159597,0.00016347289783880115,0.00013448089885059744,0.00019071837596129626,0.00015893197269178927,-0.0029833803419023752,0.0009513213881291449,0.00014985015150159597,0.00016347289783880115,-5.4490963520947844e-05,-2.4975024643936194e-05,-2.7245481760473922e-05,1.6940658945086007e-21,-8.470329472543003e-22,-0.0,-0.0034517929889261723,0.00014985015150159597,0.0013179361121729016,0.00019071837596129626,-3.1808421652417774e-22,-2.9970029572723433e-05,6.1062004298395674e-21,-8.965393499238417e-05,-3.814367300947197e-05,-0.0,-0.0037462536711245775,0.00016347289783880115,0.00019071837596129626,0.0015874276868999004,-8.743117699786174e-23,5.452101705908292e-21,-3.632731022662483e-05,-3.3881317890172014e-21,-4.23818601120729e-05,-0.00011919897951884195,9.990009857574478e-05,-5.4490963520947844e-05,-3.1808421652417774e-22,-8.743117699786174e-23,4.540913778328104e-06,6.794813964075924e-24,3.794622508074351e-24,2.0326367530107212e-23,1.2932689020971851e-23,-0.0,0.00014985015150159597,-2.4975024643936194e-05,-2.9970029572723433e-05,5.452101705908292e-21,6.794813964075924e-24,4.995004928787239e-06,-1.0177000379818626e-21,0.0,0.0,-0.0,0.00016347289783880115,-2.7245481760473922e-05,6.1062004298395674e-21,-3.632731022662483e-05,3.794622508074351e-24,-1.0177000379818626e-21,6.054551704437472e-06,-4.70197740328915e-38,-4.70197740328915e-38,-0.0,0.00013448089885059744,1.6940658945086007e-21,-8.965393499238417e-05,-3.3881317890172014e-21,2.0326367530107212e-23,0.0,-4.70197740328915e-38,8.965393135440536e-06,8.470329472543003e-22,-0.0,0.00019071837596129626,-8.470329472543003e-22,-3.814367300947197e-05,-4.23818601120729e-05,1.2932689020971851e-23,0.0,-4.70197740328915e-38,8.470329472543003e-22,8.47637238621246e-06,-0.0,0.00015893197269178927,-0.0,-0.0,-0.00011919897951884195,-0.0,-0.0,-0.0,-0.0,-0.0,1.3244331057649106e-05,13.0,11.0,11.0,0.023261703550815582,-0.002724548103287816,-0.003152441931888461,-0.003152441931888461,9.081827010959387e-05,0.0001362274051643908,0.0001362274051643908,0.00012225536920595914,0.00015893197269178927,0.00012225536920595914,-0.002724548103287816,0.0008669017115607858,0.0001362274051643908,0.0001362274051643908,-4.953724055667408e-05,-2.2704567527398467e-05,-2.2704567527398467e-05,2.541098841762901e-20,2.610533141706555e-21,2.371692252312041e-20,-0.003152441931888461,0.0001362274051643908,0.001201013452373445,0.00015893197269178927,2.9222667376428906e-21,-2.7245481760473922e-05,-3.3881317890172014e-21,-8.150357462000102e-05,-3.178639599354938e-05,5.082197683525802e-21,-0.003152441931888461,0.0001362274051643908,0.00015893197269178927,0.001201013452373445,3.295411829764361e-21,-4.873397586754384e-21,-2.7245481760473922e-05,2.170145899433731e-21,-3.178639599354938e-05,-8.150357462000102e-05,9.081827010959387e-05,-4.953724055667408e-05,2.9222667376428906e-21,3.295411829764361e-21,4.1281032281403895e-06,-5.08174047236691e-22,-4.647979055852768e-22,-1.2059602225761297e-23,5.1356002977696733e-23,-7.081675659194855e-23,0.0001362274051643908,-2.2704567527398467e-05,-2.7245481760473922e-05,-4.873397586754384e-21,-5.08174047236691e-22,4.540913778328104e-06,9.840577583250535e-22,-5.505714157152952e-21,-1.8865650200216293e-22,1.3957416575840778e-24,0.0001362274051643908,-2.2704567527398467e-05,-3.3881317890172014e-21,-2.7245481760473922e-05,-4.647979055852768e-22,9.840577583250535e-22,4.540913778328104e-06,1.0587911840678754e-22,-5.293955920339377e-22,-4.870439446712227e-21,0.00012225536920595914,2.541098841762901e-20,-8.150357462000102e-05,2.170145899433731e-21,-1.2059602225761297e-23,-5.505714157152952e-21,1.0587911840678754e-22,8.150357643899042e-06,-8.470329472543003e-22,2.117582368135751e-22,0.00015893197269178927,2.610533141706555e-21,-3.178639599354938e-05,-3.178639599354938e-05,5.1356002977696733e-23,-1.8865650200216293e-22,-5.293955920339377e-22,-8.470329472543003e-22,6.3572792896593455e-06,-8.470329472543003e-22,0.00012225536920595914,2.371692252312041e-20,5.082197683525802e-21,-8.150357462000102e-05,-7.081675659194855e-23,1.3957416575840778e-24,-4.870439446712227e-21,2.117582368135751e-22,-8.470329472543003e-22,8.150357643899042e-06,13.0,11.0,12.0,0.02153935842216015,-0.002507108263671398,-0.0029009452555328608,-0.0026896181516349316,8.325008093379438e-05,0.00012487512140069157,0.0001152693439507857,0.00011206742055946961,0.00013448089885059744,9.605778905097395e-05,-0.002507108263671398,0.0007962608360685408,0.00012487512140069157,0.0001152693439507857,-4.5409135054796934e-05,-2.0812520233448595e-05,-1.9211558537790552e-05,-1.6940658945086007e-21,9.476442797279627e-23,-7.623296525288703e-21,-0.0029009452555328608,0.00012487512140069157,0.0011031703324988484,0.00013448089885059744,-2.214866159093446e-21,-2.4975024643936194e-05,3.8116482626443515e-21,-7.471161370631307e-05,-2.689618122531101e-05,5.082197683525802e-21,-0.0026896181516349316,0.0001152693439507857,0.00013448089885059744,0.0009308872977271676,-2.3299789638156053e-21,2.1947086803722595e-21,-2.095806303259451e-05,-3.416224829791677e-21,-2.4451073841191828e-05,-5.763467197539285e-05,8.325008093379438e-05,-4.5409135054796934e-05,-2.214866159093446e-21,-2.3299789638156053e-21,3.7840945878997445e-06,4.452329939325432e-22,3.4486461799591445e-22,-5.0548954095444946e-23,1.6070156868408628e-23,1.522898659656241e-23,0.00012487512140069157,-2.0812520233448595e-05,-2.4975024643936194e-05,2.1947086803722595e-21,4.452329939325432e-22,4.162503955740249e-06,-5.126329667520388e-22,2.117582368135751e-22,1.5411110913750785e-22,-2.4396691008099517e-23,0.0001152693439507857,-1.9211558537790552e-05,3.8116482626443515e-21,-2.095806303259451e-05,3.4486461799591445e-22,-5.126329667520388e-22,3.4930105812236434e-06,5.293955920339377e-23,-2.117582368135751e-22,1.4823076576950256e-21,0.00011206742055946961,-1.6940658945086007e-21,-7.471161370631307e-05,-3.416224829791677e-21,-5.0548954095444946e-23,2.117582368135751e-22,5.293955920339377e-23,7.471161097782897e-06,4.235164736271502e-22,0.0,0.00013448089885059744,9.476442797279627e-23,-2.689618122531101e-05,-2.4451073841191828e-05,1.6070156868408628e-23,1.5411110913750785e-22,-2.117582368135751e-22,4.235164736271502e-22,4.890214768238366e-06,-8.470329472543003e-22,9.605778905097395e-05,-7.623296525288703e-21,5.082197683525802e-21,-5.763467197539285e-05,1.522898659656241e-23,-2.4396691008099517e-23,1.4823076576950256e-21,0.0,-8.470329472543003e-22,5.239515758148627e-06,13.0,11.0,13.0,0.020055176690220833,-0.0023218540009111166,-0.0026866623666137457,-0.0023218540009111166,7.684623415116221e-05,0.0001152693439507857,9.880229481495917e-05,0.00010344685142626986,0.0001152693439507857,7.684623415116221e-05,-0.0023218540009111166,0.0007362767355516553,0.0001152693439507857,9.880229481495917e-05,-4.191612606518902e-05,-1.9211558537790552e-05,-1.6467049135826528e-05,2.380162581784584e-19,1.2366471649820232e-19,1.6940658945086007e-20,-0.0026866623666137457,0.0001152693439507857,0.0010200844844803214,0.0001152693439507857,3.2166967976079964e-19,-2.305386988155078e-05,-1.3976043629695956e-20,-6.896456761751324e-05,-2.305386988155078e-05,-1.5585406229479126e-19,-0.0023218540009111166,9.880229481495917e-05,0.0001152693439507857,0.0007362767355516553,8.527826279933681e-20,2.0830740731906578e-20,-1.6467049135826528e-05,-2.741000478471294e-19,-1.9211558537790552e-05,-4.191612606518902e-05,7.684623415116221e-05,-4.191612606518902e-05,3.2166967976079964e-19,8.527826279933681e-20,3.4930105812236434e-06,-1.2198182885107313e-20,-4.269802520525376e-21,-1.8317090715548513e-20,-7.779826723723725e-21,-1.3213131881122744e-21,0.0001152693439507857,-1.9211558537790552e-05,-2.305386988155078e-05,2.0830740731906578e-20,-1.2198182885107313e-20,3.84231134376023e-06,-2.2790657547748963e-21,-7.199780051661553e-21,-4.1434236208734086e-21,1.1221718790208338e-21,9.880229481495917e-05,-1.6467049135826528e-05,-1.3976043629695956e-20,-1.6467049135826528e-05,-4.269802520525376e-21,-2.2790657547748963e-21,2.7445082650956465e-06,3.732238923839261e-21,-4.235164736271502e-22,-3.1763735522036263e-22,0.00010344685142626986,2.380162581784584e-19,-6.896456761751324e-05,-2.741000478471294e-19,-1.8317090715548513e-20,-7.199780051661553e-21,3.732238923839261e-21,6.896456397953443e-06,7.411538288475128e-21,1.6675961149069038e-20,0.0001152693439507857,1.2366471649820232e-19,-2.305386988155078e-05,-1.9211558537790552e-05,-7.779826723723725e-21,-4.1434236208734086e-21,-4.235164736271502e-22,7.411538288475128e-21,3.84231134376023e-06,-2.752857078576476e-21,7.684623415116221e-05,1.6940658945086007e-20,-1.5585406229479126e-19,-4.191612606518902e-05,-1.3213131881122744e-21,1.1221718790208338e-21,-3.1763735522036263e-22,1.6675961149069038e-20,-2.752857078576476e-21,3.4930105812236434e-06,13.0,11.0,14.0,0.018762830644845963,-0.002162123564630747,-0.002501893788576126,-0.0020247609354555607,7.135721534723416e-05,0.00010703581938287243,8.562865696148947e-05,9.605778905097395e-05,9.990009857574478e-05,6.243756070034578e-05,-0.002162123564630747,0.0006847049226053059,0.00010703581938287243,8.562865696148947e-05,-3.892211680067703e-05,-1.783930383680854e-05,-1.4271442523750011e-05,0.0,1.9611903024006763e-21,6.776263578034403e-21,-0.002501893788576126,0.00010703581938287243,0.0009486484341323376,9.990009857574478e-05,-1.2144063543399394e-21,-2.1407164240372367e-05,-8.470329472543003e-22,-6.403852603398263e-05,-1.9980019715148956e-05,4.235164736271502e-21,-0.0020247609354555607,8.562865696148947e-05,9.990009857574478e-05,0.000592470692936331,-3.4438042148317704e-22,-3.3610898896217147e-21,-1.3173639672459103e-05,-0.0,-1.536924537504092e-05,-3.121878035017289e-05,7.135721534723416e-05,-3.892211680067703e-05,-1.2144063543399394e-21,-3.4438042148317704e-22,3.2435098091809778e-06,1.9805605105602268e-22,-1.984335746417125e-23,0.0,4.010767240661287e-24,3.1705320056460285e-23,0.00010703581938287243,-1.783930383680854e-05,-2.1407164240372367e-05,-3.3610898896217147e-21,1.9805605105602268e-22,3.5678606309375027e-06,5.601816650993184e-22,0.0,-8.228460455756013e-38,-2.5860875718090325e-37,8.562865696148947e-05,-1.4271442523750011e-05,-8.470329472543003e-22,-1.3173639672459103e-05,-1.984335746417125e-23,5.601816650993184e-22,2.195606612076517e-06,0.0,-3.1763735522036263e-22,-1.0587911840678754e-21,9.605778905097395e-05,0.0,-6.403852603398263e-05,-0.0,0.0,0.0,0.0,6.403852694347734e-06,0.0,0.0,9.990009857574478e-05,1.9611903024006763e-21,-1.9980019715148956e-05,-1.536924537504092e-05,4.010767240661287e-24,-8.228460455756013e-38,-3.1763735522036263e-22,0.0,3.073849256907124e-06,-7.411538288475128e-22,6.243756070034578e-05,6.776263578034403e-21,4.235164736271502e-21,-3.121878035017289e-05,3.1705320056460285e-23,-2.5860875718090325e-37,-1.0587911840678754e-21,0.0,-7.411538288475128e-22,2.401444817223819e-06,13.0,11.0,15.0,0.017627300694584846,-0.0020229769870638847,-0.002340928418561816,-0.001781306928023696,6.660006329184398e-05,9.990009857574478e-05,7.492507575079799e-05,8.965393499238417e-05,8.741259080125019e-05,5.141917063156143e-05,-0.0020229769870638847,0.000639890437014401,9.990009857574478e-05,7.492507575079799e-05,-3.632731022662483e-05,-1.6650015822960995e-05,-1.2487512321968097e-05,0.0,-1.8080617226760648e-21,-4.235164736271502e-21,-0.002340928418561816,9.990009857574478e-05,0.0008865707204677165,8.741259080125019e-05,1.2858073034529712e-22,-1.9980019715148956e-05,8.470329472543003e-22,-5.9769288782263175e-05,-1.7482518160250038e-05,-5.929230630780102e-21,-0.001781306928023696,7.492507575079799e-05,8.741259080125019e-05,0.000483881012769416,1.1964319377334252e-21,2.528532805035484e-21,-1.0703582120186184e-05,-0.0,-1.2487512321968097e-05,-2.373192364757415e-05,6.660006329184398e-05,-3.632731022662483e-05,1.2858073034529712e-22,1.1964319377334252e-21,3.027275852218736e-06,2.6008248035505823e-38,-1.1009602801818802e-22,-0.0,-1.8368676665169194e-23,-2.949781903094412e-23,9.990009857574478e-05,-1.6650015822960995e-05,-1.9980019715148956e-05,2.528532805035484e-21,2.6008248035505823e-38,3.3300034374406096e-06,-4.21422142587097e-22,-0.0,-4.70197740328915e-38,-1.6456920911512025e-37,7.492507575079799e-05,-1.2487512321968097e-05,8.470329472543003e-22,-1.0703582120186184e-05,-1.1009602801818802e-22,-4.21422142587097e-22,1.7839303154687514e-06,0.0,1.5881867761018131e-22,6.352747104407253e-22,8.965393499238417e-05,0.0,-5.9769288782263175e-05,-0.0,-0.0,-0.0,0.0,5.976929060125258e-06,0.0,0.0,8.741259080125019e-05,-1.8080617226760648e-21,-1.7482518160250038e-05,-1.2487512321968097e-05,-1.8368676665169194e-23,-4.70197740328915e-38,1.5881867761018131e-22,0.0,2.4975024643936194e-06,7.411538288475128e-22,5.141917063156143e-05,-4.235164736271502e-21,-5.929230630780102e-21,-2.373192364757415e-05,-2.949781903094412e-23,-1.6456920911512025e-37,6.352747104407253e-22,0.0,7.411538288475128e-22,1.6951374846030376e-06,13.0,11.0,16.0,0.016621623188257217,-0.0019006729125976562,-0.0021994407288730145,-0.0015793030615895987,6.243756070034578e-05,9.365634468849748e-05,6.611036224057898e-05,8.405056723859161e-05,7.712875230936334e-05,4.284930764697492e-05,-0.0019006729125976562,0.0006005858886055648,9.365634468849748e-05,6.611036224057898e-05,-3.40568512910977e-05,-1.5609390175086446e-05,-1.1018393706763163e-05,0.0,3.2836679249397038e-21,8.470329472543003e-22,-0.0021994407288730145,9.365634468849748e-05,0.0008321241475641727,7.712875230936334e-05,1.4887545824221772e-22,-1.8731268937699497e-05,5.082197683525802e-21,-5.6033710279734805e-05,-1.5425750461872667e-05,6.3527471044072525e-21,-0.0015793030615895987,6.611036224057898e-05,7.712875230936334e-05,0.0004003349458798766,3.9785615366663143e-22,2.0022318701565177e-21,-8.81471441971371e-06,-0.0,-1.0283833944413345e-05,-1.836398951127194e-05,6.243756070034578e-05,-3.40568512910977e-05,1.4887545824221772e-22,3.9785615366663143e-22,2.8380709409248084e-06,-6.322142993198703e-39,2.78328870697081e-23,0.0,-1.9850061204143817e-23,-2.888357090937197e-23,9.365634468849748e-05,-1.5609390175086446e-05,-1.8731268937699497e-05,2.0022318701565177e-21,-6.322142993198703e-39,3.1218780804920243e-06,-3.3370530327823664e-22,-0.0,9.4039548065783e-38,1.1754943508222875e-38,6.611036224057898e-05,-1.1018393706763163e-05,5.082197683525802e-21,-8.81471441971371e-06,2.78328870697081e-23,-3.3370530327823664e-22,1.469119069952285e-06,0.0,-3.970466940254533e-22,-5.293955920339377e-23,8.405056723859161e-05,0.0,-5.6033710279734805e-05,-0.0,0.0,-0.0,0.0,5.60337093702401e-06,0.0,0.0,7.712875230936334e-05,3.2836679249397038e-21,-1.5425750461872667e-05,-1.0283833944413345e-05,-1.9850061204143817e-23,9.4039548065783e-38,-3.970466940254533e-22,0.0,2.056766788882669e-06,-8.999725064576941e-22,4.284930764697492e-05,8.470329472543003e-22,6.3527471044072525e-21,-1.836398951127194e-05,-2.888357090937197e-23,1.1754943508222875e-38,-5.293955920339377e-23,0.0,-8.999725064576941e-22,1.2242659295225167e-06,13.0,12.0,3.0,0.060826994478702545,-0.008276979438960552,-0.008875739760696888,-0.025993237271904945,0.0003052503161597997,0.0004226542660035193,0.0013736264081671834,0.00035221187863498926,0.001479289960116148,0.0032051282469183207,-0.008276979438960552,0.002766998019069433,0.0004226542660035193,0.0013736264081671834,-0.00016650016186758876,-7.044238009257242e-05,-0.00022893772984389216,-9.593305348501019e-20,-1.666062418653654e-18,-1.506796339729658e-17,-0.008875739760696888,0.0004226542660035193,0.0032339454628527164,0.001479289960116148,-2.067533288185347e-19,-7.684623415116221e-05,-1.7868985134990487e-18,-0.00021132713300175965,-0.0002689617977011949,-1.436194158342542e-17,-0.025993237271904945,0.0013736264081671834,0.001479289960116148,0.058044519275426865,-3.228073167668803e-18,-1.006942469297286e-18,-0.0013736264081671834,-3.5740034085609294e-18,-0.001479289960116148,-0.01923076994717121,0.0003052503161597997,-0.00016650016186758876,-2.067533288185347e-19,-3.228073167668803e-18,1.387501379213063e-05,1.4819918104103496e-20,9.584810591351011e-20,9.442245487711679e-22,9.24904764095808e-20,9.612320550572994e-19,0.0004226542660035193,-7.044238009257242e-05,-7.684623415116221e-05,-1.006942469297286e-18,1.4819918104103496e-20,1.2807705388695467e-05,3.624523529096091e-20,-9.306045231924386e-21,3.6506815003809466e-20,1.9622784326470956e-19,0.0013736264081671834,-0.00022893772984389216,-1.7868985134990487e-18,-0.0013736264081671834,9.584810591351011e-20,3.624523529096091e-20,0.00022893772984389216,1.103392116461881e-19,2.6207465119819835e-19,2.2505884611409087e-18,0.00035221187863498926,-9.593305348501019e-20,-0.00021132713300175965,-3.5740034085609294e-18,9.442245487711679e-22,-9.306045231924386e-21,1.103392116461881e-19,1.9211558537790552e-05,1.2768578362749037e-19,9.640759020032567e-19,0.001479289960116148,-1.666062418653654e-18,-0.0002689617977011949,-0.001479289960116148,9.24904764095808e-20,3.6506815003809466e-20,2.6207465119819835e-19,1.2768578362749037e-19,0.0002689617977011949,2.340853304714839e-18,0.0032051282469183207,-1.506796339729658e-17,-1.436194158342542e-17,-0.01923076994717121,9.612320550572994e-19,1.9622784326470956e-19,2.2505884611409087e-18,9.640759020032567e-19,2.340853304714839e-18,0.009615384973585606,13.0,12.0,4.0,0.049358975142240524,-0.006413778755813837,-0.006878698244690895,-0.0165574811398983,0.00022893772984389216,0.0003169907140545547,0.0008241758332587779,0.00026415890897624195,0.000887573987711221,0.0016025641234591603,-0.006413778755813837,0.0021095890551805496,0.0003169907140545547,0.0008241758332587779,-0.00012487512140069157,-5.283178325043991e-05,-0.00013736264372710139,-2.1352586685263835e-20,-2.3042529601406742e-21,1.9999247882953545e-34,-0.006878698244690895,0.0003169907140545547,0.0024658034089952707,0.000887573987711221,2.9907779314879167e-21,-5.763467197539285e-05,3.8664606104533536e-20,-0.00015849535702727735,-0.00016137708735186607,1.4832320320295536e-18,-0.0165574811398983,0.0008241758332587779,0.000887573987711221,0.022256270051002502,5.967831854170199e-21,3.4178912271409304e-20,-0.0005494505749084055,4.727719771773859e-19,-0.000591715972404927,-0.004807692486792803,0.00022893772984389216,-0.00012487512140069157,2.9907779314879167e-21,5.967831854170199e-21,1.0406260116724297e-05,-7.090215551810416e-23,-8.387219631407732e-22,-1.9498093240795186e-22,-1.7009090672238885e-22,5.467888131739848e-37,0.0003169907140545547,-5.283178325043991e-05,-5.763467197539285e-05,3.4178912271409304e-20,-7.090215551810416e-23,9.605779268895276e-06,-6.429195071995918e-21,4.680893513505758e-21,7.99319206583874e-22,-3.719890329291145e-35,0.0008241758332587779,-0.00013736264372710139,3.8664606104533536e-20,-0.0005494505749084055,-8.387219631407732e-22,-6.429195071995918e-21,9.157509339274839e-05,-1.6410757030568662e-23,7.000324536116119e-23,-1.64080292717801e-36,0.00026415890897624195,-2.1352586685263835e-20,-0.00015849535702727735,4.727719771773859e-19,-1.9498093240795186e-22,4.680893513505758e-21,-1.6410757030568662e-23,1.4408667993848212e-05,-2.078989384240037e-20,-1.1944303222097602e-19,0.000887573987711221,-2.3042529601406742e-21,-0.00016137708735186607,-0.000591715972404927,-1.7009090672238885e-22,7.99319206583874e-22,7.000324536116119e-23,-2.078989384240037e-20,0.00010758472490124404,-1.1290574629178702e-19,0.0016025641234591603,1.9999247882953545e-34,1.4832320320295536e-18,-0.004807692486792803,5.467888131739848e-37,-3.719890329291145e-35,-1.64080292717801e-36,-1.1944303222097602e-19,-1.1290574629178702e-19,0.0016025641234591603,13.0,12.0,5.0,0.041603267192840576,-0.005240913014858961,-0.00562130194157362,-0.011496196500957012,0.00018315018678549677,0.0002535925596021116,0.0005494505749084055,0.00021132713300175965,0.000591715972404927,0.0009157509193755686,-0.005240913014858961,0.001705986331216991,0.0002535925596021116,0.0005494505749084055,-9.990009857574478e-05,-4.226542660035193e-05,-9.157509339274839e-05,3.049318610115481e-20,-6.776263578034403e-21,-1.6437618238163317e-34,-0.00562130194157362,0.0002535925596021116,0.001994159771129489,0.000591715972404927,-2.2843222694634077e-21,-4.610773976310156e-05,2.3178933623121297e-20,-0.0001267962798010558,-0.00010758472490124404,7.356977972259013e-19,-0.011496196500957012,0.0005494505749084055,0.000591715972404927,0.01124260388314724,-1.1484698005411629e-21,1.988366416697311e-20,-0.00027472528745420277,3.3203691532368573e-19,-0.0002958579862024635,-0.0018315018387511373,0.00018315018678549677,-9.990009857574478e-05,-2.2843222694634077e-21,-1.1484698005411629e-21,8.325007911480498e-06,3.109778293238103e-22,1.9092543004864685e-22,3.1976632593162495e-24,1.1241168187380998e-22,9.230714855822997e-37,0.0002535925596021116,-4.226542660035193e-05,-4.610773976310156e-05,1.988366416697311e-20,3.109778293238103e-22,7.68462268752046e-06,-3.99278748819961e-21,-5.505714157152952e-21,8.470329472543003e-22,2.783983308508037e-35,0.0005494505749084055,-9.157509339274839e-05,2.3178933623121297e-20,-0.00027472528745420277,1.9092543004864685e-22,-3.99278748819961e-21,4.578754669637419e-05,3.1263053078557177e-23,7.534699544401557e-23,-3.3295142982438233e-37,0.00021132713300175965,3.049318610115481e-20,-0.0001267962798010558,3.3203691532368573e-19,3.1976632593162495e-24,-5.505714157152952e-21,3.1263053078557177e-23,1.152693494077539e-05,-1.6940658945086007e-20,-5.850271071433087e-20,0.000591715972404927,-6.776263578034403e-21,-0.00010758472490124404,-0.0002958579862024635,1.1241168187380998e-22,8.470329472543003e-22,7.534699544401557e-23,-1.6940658945086007e-20,5.379236245062202e-05,-4.6083976759433776e-20,0.0009157509193755686,-1.6437618238163317e-34,7.356977972259013e-19,-0.0018315018387511373,9.230714855822997e-37,2.783983308508037e-35,-3.3295142982438233e-37,-5.850271071433087e-20,-4.6083976759433776e-20,0.0004578754596877843,13.0,12.0,6.0,0.03598347678780556,-0.004432838410139084,-0.004754860419780016,-0.008456858806312084,0.00015262515807989985,0.00021132713300175965,0.0003924646880477667,0.00017610593931749463,0.0004226542660035193,0.0005723443464376032,-0.004432838410139084,0.001432557008229196,0.00021132713300175965,0.0003924646880477667,-8.325008093379438e-05,-3.522119004628621e-05,-6.541077891597524e-05,3.3881317890172014e-21,-1.0164395367051604e-19,4.489324768272428e-19,-0.004754860419780016,0.00021132713300175965,0.0016746073961257935,0.0004226542660035193,-6.41467126677965e-20,-3.8423117075581104e-05,-7.424616789441416e-20,-0.00010566356650087982,-7.684623415116221e-05,6.426054435231116e-19,-0.008456858806312084,0.0003924646880477667,0.0004226542660035193,0.006530637387186289,-7.458438782972031e-20,1.842969907748539e-19,-0.00015698587230872363,3.3881317890172014e-20,-0.00016906170640140772,-0.0008585164905525744,0.00015262515807989985,-8.325008093379438e-05,-6.41467126677965e-20,-7.458438782972031e-20,6.937506896065315e-06,7.2311119407427e-21,1.8098293365592567e-20,4.607880183189553e-22,2.485131268373809e-21,-1.1553269581825784e-20,0.00021132713300175965,-3.522119004628621e-05,-3.8423117075581104e-05,1.842969907748539e-19,7.2311119407427e-21,6.403852694347734e-06,-1.1499467501041283e-21,-5.082197683525802e-21,1.3493398060071414e-35,-4.037296671400282e-20,0.0003924646880477667,-6.541077891597524e-05,-7.424616789441416e-20,-0.00015698587230872363,1.8098293365592567e-20,-1.1499467501041283e-21,2.616431265778374e-05,9.139925716056144e-22,1.803276030468048e-20,-4.982089119243852e-20,0.00017610593931749463,3.3881317890172014e-21,-0.00010566356650087982,3.3881317890172014e-20,4.607880183189553e-22,-5.082197683525802e-21,9.139925716056144e-22,9.605779268895276e-06,1.3552527156068805e-20,-2.7232708313935003e-20,0.0004226542660035193,-1.0164395367051604e-19,-7.684623415116221e-05,-0.00016906170640140772,2.485131268373809e-21,1.3493398060071414e-35,1.803276030468048e-20,1.3552527156068805e-20,3.073849075008184e-05,-5.738644986473617e-20,0.0005723443464376032,4.489324768272428e-19,6.426054435231116e-19,-0.0008585164905525744,-1.1553269581825784e-20,-4.037296671400282e-20,-4.982089119243852e-20,-2.7232708313935003e-20,-5.738644986473617e-20,0.00017170330102089792,13.0,12.0,7.0,0.03171500191092491,-0.0038416252937167883,-0.004120879340916872,-0.006485730409622192,0.00013082155783195049,0.0001811375404940918,0.000294348516035825,0.00015094794798642397,0.0003169907140545547,0.000381562887923792,-0.0038416252937167883,0.0012349144089967012,0.0001811375404940918,0.000294348516035825,-7.135721534723416e-05,-3.0189590688678436e-05,-4.9058086005970836e-05,-1.5246593050577406e-20,-2.541098841762901e-21,4.0429417760416636e-35,-0.004120879340916872,0.0001811375404940918,0.0014436113415285945,0.0003169907140545547,-7.200418915398812e-22,-3.2934098271653056e-05,-4.644359837750261e-21,-9.05687702470459e-05,-5.763467197539285e-05,2.6982900415178842e-19,-0.006485730409622192,0.000294348516035825,0.0003169907140545547,0.00414603715762496,-7.722853043447002e-21,-4.983778538709764e-21,-9.811617201194167e-05,1.7279472123987727e-19,-0.00010566356650087982,-0.0004578754596877843,0.00013082155783195049,-7.135721534723416e-05,-7.200418915398812e-22,-7.722853043447002e-21,5.946434612269513e-06,2.76756109244011e-22,1.3286584550165172e-21,-4.0296734755462665e-23,-1.9245549203863904e-23,-1.837086031667649e-37,0.0001811375404940918,-3.0189590688678436e-05,-3.2934098271653056e-05,-4.983778538709764e-21,2.76756109244011e-22,5.489016530191293e-06,7.500932763561242e-22,2.541098841762901e-21,2.117582368135751e-22,-6.665941190601773e-36,0.000294348516035825,-4.9058086005970836e-05,-4.644359837750261e-21,-9.811617201194167e-05,1.3286584550165172e-21,7.500932763561242e-22,1.635269472899381e-05,1.0399281945377203e-22,7.142561206037261e-23,-4.6461268032795115e-37,0.00015094794798642397,-1.5246593050577406e-20,-9.05687702470459e-05,1.7279472123987727e-19,-4.0296734755462665e-23,2.541098841762901e-21,1.0399281945377203e-22,8.233524567913264e-06,-8.470329472543003e-21,-2.1125979587102653e-20,0.0003169907140545547,-2.541098841762901e-21,-5.763467197539285e-05,-0.00010566356650087982,-1.9245549203863904e-23,2.117582368135751e-22,7.142561206037261e-23,-8.470329472543003e-21,1.9211558537790552e-05,-1.2481077039013314e-20,0.000381562887923792,4.0429417760416636e-35,2.6982900415178842e-19,-0.0004578754596877843,-1.837086031667649e-37,-6.665941190601773e-36,-4.6461268032795115e-37,-2.1125979587102653e-20,-1.2481077039013314e-20,7.631257903994992e-05,13.0,12.0,8.0,0.028358926996588707,-0.0033900395501405,-0.0036365878768265247,-0.005133488215506077,0.00011446886492194608,0.00015849535702727735,0.00022893772984389216,0.00013207945448812097,0.00024654832668602467,0.00026709403027780354,-0.0033900395501405,0.0010853195562958717,0.00015849535702727735,0.00022893772984389216,-6.243756070034578e-05,-2.6415891625219956e-05,-3.815628951997496e-05,-1.0164395367051604e-20,8.470329472543003e-22,1.2660663914432926e-35,-0.0036365878768265247,0.00015849535702727735,0.0012687633279711008,0.00024654832668602467,8.588533905194258e-22,-2.8817335987696424e-05,1.2894577680203897e-20,-7.924767851363868e-05,-4.482696749619208e-05,1.327690023620848e-19,-0.005133488215506077,0.00022893772984389216,0.00024654832668602467,0.0028021810576319695,3.4344066473965045e-21,9.497480190387159e-21,-6.541077891597524e-05,9.486769009248164e-20,-7.044238009257242e-05,-0.00026709403027780354,0.00011446886492194608,-6.243756070034578e-05,8.588533905194258e-22,3.4344066473965045e-21,5.203130058362149e-06,-4.228157379513732e-22,-7.118258736575681e-22,4.9775409713559705e-23,-5.444825647348986e-24,1.5543144272274755e-37,0.00015849535702727735,-2.6415891625219956e-05,-2.8817335987696424e-05,9.497480190387159e-21,-4.228157379513732e-22,4.802889634447638e-06,-2.024579883082871e-21,2.541098841762901e-21,-0.0,-2.77051315774286e-36,0.00022893772984389216,-3.815628951997496e-05,1.2894577680203897e-20,-6.541077891597524e-05,-7.118258736575681e-22,-2.024579883082871e-21,1.0901796485995874e-05,-1.148202950985032e-22,-4.064098103272663e-23,1.627148204105345e-37,0.00013207945448812097,-1.0164395367051604e-20,-7.924767851363868e-05,9.486769009248164e-20,4.9775409713559705e-23,2.541098841762901e-21,-1.148202950985032e-22,7.204333996924106e-06,4.235164736271502e-22,-1.4219409213197006e-20,0.00024654832668602467,8.470329472543003e-22,-4.482696749619208e-05,-7.044238009257242e-05,-5.444825647348986e-24,-0.0,-4.064098103272663e-23,4.235164736271502e-22,1.2807705388695467e-05,6.755570330229939e-21,0.00026709403027780354,1.2660663914432926e-35,1.327690023620848e-19,-0.00026709403027780354,1.5543144272274755e-37,-2.77051315774286e-36,1.627148204105345e-37,-1.4219409213197006e-20,6.755570330229939e-21,3.815628951997496e-05,13.0,12.0,9.0,0.025649137794971466,-0.003033718327060342,-0.003254437819123268,-0.004165065474808216,0.0001017501053865999,0.00014088476018514484,0.00018315018678549677,0.00011740396439563483,0.0001972386526176706,0.00019425019854679704,-0.003033718327060342,0.0009681201772764325,0.00014088476018514484,0.00018315018678549677,-5.550005516852252e-05,-2.3480792151531205e-05,-3.052503234357573e-05,8.470329472543003e-21,8.470329472543003e-22,2.3721389903816114e-35,-0.003254437819123268,0.00014088476018514484,0.0011317741591483355,0.0001972386526176706,3.9584808993081834e-21,-2.5615410777390935e-05,-5.876007132137927e-21,-7.044238009257242e-05,-3.586157254176214e-05,-2.1555017491318595e-19,-0.004165065474808216,0.00018315018678549677,0.0001972386526176706,0.001984767382964492,-2.1069875244165257e-22,-4.907284122990999e-21,-4.578754669637419e-05,-1.9820570965750628e-19,-4.930966315441765e-05,-0.00016650016186758876,0.0001017501053865999,-5.550005516852252e-05,3.9584808993081834e-21,-2.1069875244165257e-22,4.625004748959327e-06,-4.954033863013471e-22,1.0112216724144725e-22,-5.891349555354938e-23,-7.2006232619277e-23,0.0,0.00014088476018514484,-2.3480792151531205e-05,-2.5615410777390935e-05,-4.907284122990999e-21,-4.954033863013471e-22,4.2692349779827055e-06,9.793344883649225e-22,-1.4823076576950256e-21,0.0,-4.312979819451836e-36,0.00018315018678549677,-3.052503234357573e-05,-5.876007132137927e-21,-4.578754669637419e-05,1.0112216724144725e-22,9.793344883649225e-22,7.631258085893933e-06,-3.76158192263132e-37,2.350988701644575e-38,-0.0,0.00011740396439563483,8.470329472543003e-21,-7.044238009257242e-05,-1.9820570965750628e-19,-5.891349555354938e-23,-1.4823076576950256e-21,-3.76158192263132e-37,6.403852694347734e-06,7.199780051661553e-21,2.0091840647110845e-20,0.0001972386526176706,8.470329472543003e-22,-3.586157254176214e-05,-4.930966315441765e-05,-7.2006232619277e-23,0.0,2.350988701644575e-38,7.199780051661553e-21,8.965393135440536e-06,-1.365017142490575e-21,0.00019425019854679704,2.3721389903816114e-35,-2.1555017491318595e-19,-0.00016650016186758876,0.0,-4.312979819451836e-36,-0.0,2.0091840647110845e-20,-1.365017142490575e-21,2.0812520233448595e-05,13.0,12.0,10.0,0.023414406925439835,-0.002745331497862935,-0.002945131855085492,-0.0034475140273571014,9.157509339274839e-05,0.0001267962798010558,0.00014985015150159597,0.00010566356650087982,0.00016137708735186607,0.00014568764891009778,-0.002745331497862935,0.0008738056640140712,0.0001267962798010558,0.00014985015150159597,-4.995004928787239e-05,-2.1132713300175965e-05,-2.4975024643936194e-05,1.6940658945086007e-20,0.0,-1.8930080956568905e-35,-0.002945131855085492,0.0001267962798010558,0.001021530944854021,0.00016137708735186607,-2.1463085171183205e-21,-2.305386988155078e-05,5.37494126439358e-21,-6.33981399005279e-05,-2.9341288609430194e-05,9.529715192676151e-20,-0.0034475140273571014,0.00014985015150159597,0.00016137708735186607,0.001458130544051528,-1.3661629471781905e-22,4.539834177464892e-21,-3.330003164592199e-05,9.147955830346444e-20,-3.586157254176214e-05,-0.00010926573304459453,9.157509339274839e-05,-4.995004928787239e-05,-2.1463085171183205e-21,-1.3661629471781905e-22,4.162503955740249e-06,4.134189025790274e-22,3.478403669911982e-24,-3.619923975245093e-23,2.1044704270401465e-23,0.0,0.0001267962798010558,-2.1132713300175965e-05,-2.305386988155078e-05,4.539834177464892e-21,4.134189025790274e-22,3.84231134376023e-06,-8.95823577723662e-22,-2.752857078576476e-21,1.0587911840678754e-22,3.4418329664184204e-36,0.00014985015150159597,-2.4975024643936194e-05,5.37494126439358e-21,-3.330003164592199e-05,3.478403669911982e-24,-8.95823577723662e-22,5.550005425902782e-06,7.52316384526264e-37,2.350988701644575e-38,-0.0,0.00010566356650087982,1.6940658945086007e-20,-6.33981399005279e-05,9.147955830346444e-20,-3.619923975245093e-23,-2.752857078576476e-21,7.52316384526264e-37,5.763467470387695e-06,-4.446922973085077e-21,-7.368238937699672e-21,0.00016137708735186607,0.0,-2.9341288609430194e-05,-3.586157254176214e-05,2.1044704270401465e-23,1.0587911840678754e-22,2.350988701644575e-38,-4.446922973085077e-21,6.520286206068704e-06,-3.165893036517673e-21,0.00014568764891009778,-1.8930080956568905e-35,9.529715192676151e-20,-0.00010926573304459453,0.0,3.4418329664184204e-36,-0.0,-7.368238937699672e-21,-3.165893036517673e-21,1.2140637409174815e-05,13.0,12.0,11.0,0.02153935842216015,-0.002507108263671398,-0.0026896181516349316,-0.0029009452555328608,8.325008093379438e-05,0.0001152693439507857,0.00012487512140069157,9.605778905097395e-05,0.00013448089885059744,0.00011206742055946961,-0.002507108263671398,0.0007962608360685408,0.0001152693439507857,0.00012487512140069157,-4.5409135054796934e-05,-1.9211558537790552e-05,-2.0812520233448595e-05,-7.623296525288703e-21,4.599915843490441e-21,0.0,-0.0026896181516349316,0.0001152693439507857,0.0009308872977271676,0.00013448089885059744,-1.0950665678303419e-21,-2.095806303259451e-05,8.470329472543003e-21,-5.763467197539285e-05,-2.4451073841191828e-05,6.268043809681823e-20,-0.0029009452555328608,0.00012487512140069157,0.00013448089885059744,0.0011031703324988484,-1.5730794208127831e-21,4.554546925596468e-21,-2.4975024643936194e-05,5.680450891675951e-20,-2.689618122531101e-05,-7.471161370631307e-05,8.325008093379438e-05,-4.5409135054796934e-05,-1.0950665678303419e-21,-1.5730794208127831e-21,3.7840945878997445e-06,3.570776489345758e-22,2.881818443774873e-22,-8.449212738961068e-23,-9.25914364564399e-24,-9.748265805873605e-24,0.0001152693439507857,-1.9211558537790552e-05,-2.095806303259451e-05,4.554546925596468e-21,3.570776489345758e-22,3.4930105812236434e-06,-7.913260892389402e-22,1.2705494208814505e-21,-5.164402950482831e-24,5.768017148166513e-23,0.00012487512140069157,-2.0812520233448595e-05,8.470329472543003e-21,-2.4975024643936194e-05,2.881818443774873e-22,-7.913260892389402e-22,4.162503955740249e-06,-2.6469779601696886e-23,-8.470329472543003e-22,0.0,9.605778905097395e-05,-7.623296525288703e-21,-5.763467197539285e-05,5.680450891675951e-20,-8.449212738961068e-23,1.2705494208814505e-21,-2.6469779601696886e-23,5.239515758148627e-06,-2.117582368135751e-22,-5.505714157152952e-21,0.00013448089885059744,4.599915843490441e-21,-2.4451073841191828e-05,-2.689618122531101e-05,-9.25914364564399e-24,-5.164402950482831e-24,-8.470329472543003e-22,-2.117582368135751e-22,4.890214768238366e-06,-6.352747104407253e-22,0.00011206742055946961,0.0,6.268043809681823e-20,-7.471161370631307e-05,-9.748265805873605e-24,5.768017148166513e-23,0.0,-5.505714157152952e-21,-6.352747104407253e-22,7.471161097782897e-06,13.0,12.0,12.0,0.019943321123719215,-0.0023069879971444607,-0.002474965760484338,-0.002474965760484338,7.631257903994992e-05,0.00010566356650087982,0.00010566356650087982,8.805296965874732e-05,0.00011379153147572652,8.805296965874732e-05,-0.0023069879971444607,0.0007313733221963048,0.00010566356650087982,0.00010566356650087982,-4.162504046689719e-05,-1.7610595023143105e-05,-1.7610595023143105e-05,2.625802136488331e-20,-2.746452244942872e-20,2.286988957586611e-20,-0.002474965760484338,0.00010566356650087982,0.0008550374768674374,0.00011379153147572652,-3.25065017068434e-20,-1.9211558537790552e-05,3.8116482626443515e-20,-5.283178325043991e-05,-2.068936919386033e-05,2.202285662861181e-20,-0.002474965760484338,0.00010566356650087982,0.00011379153147572652,0.0008550374768674374,-3.279274497287796e-20,3.41606981420618e-20,-1.9211558537790552e-05,3.9917175656201896e-21,-2.068936919386033e-05,-5.283178325043991e-05,7.631257903994992e-05,-4.162504046689719e-05,-3.25065017068434e-20,-3.279274497287796e-20,3.4687534480326576e-06,3.3412686549727695e-21,3.319877473526464e-21,1.8251048037869879e-22,1.151312325129051e-21,2.1750154810036752e-22,0.00010566356650087982,-1.7610595023143105e-05,-1.9211558537790552e-05,3.41606981420618e-20,3.3412686549727695e-21,3.201926347173867e-06,-6.418141527748412e-22,-2.329340604949326e-21,9.204178626113012e-22,-3.8806394878165355e-21,0.00010566356650087982,-1.7610595023143105e-05,3.8116482626443515e-20,-1.9211558537790552e-05,3.319877473526464e-21,-6.418141527748412e-22,3.201926347173867e-06,-3.8381180422460484e-21,2.117582368135751e-22,-2.117582368135751e-21,8.805296965874732e-05,2.625802136488331e-20,-5.283178325043991e-05,3.9917175656201896e-21,1.8251048037869879e-22,-2.329340604949326e-21,-3.8381180422460484e-21,4.802889634447638e-06,4.870439446712227e-21,-1.2705494208814505e-21,0.00011379153147572652,-2.746452244942872e-20,-2.068936919386033e-05,-2.068936919386033e-05,1.151312325129051e-21,9.204178626113012e-22,2.117582368135751e-22,4.870439446712227e-21,3.7617035104631213e-06,1.9058241313221758e-21,8.805296965874732e-05,2.286988957586611e-20,2.202285662861181e-20,-5.283178325043991e-05,2.1750154810036752e-22,-3.8806394878165355e-21,-2.117582368135751e-21,-1.2705494208814505e-21,1.9058241313221758e-21,4.802889634447638e-06,13.0,12.0,13.0,0.018568146973848343,-0.002136494033038616,-0.0022920866031199694,-0.002136494033038616,7.044238009257242e-05,9.753560152603313e-05,9.05687702470459e-05,8.127966430038214e-05,9.753560152603313e-05,7.044238009257242e-05,-0.002136494033038616,0.000676274998113513,9.753560152603313e-05,9.05687702470459e-05,-3.8423117075581104e-05,-1.625593358767219e-05,-1.5094795344339218e-05,7.623296525288703e-21,-3.3359081368625138e-21,-1.0164395367051604e-20,-0.0022920866031199694,9.753560152603313e-05,0.0007906294777058065,9.753560152603313e-05,-1.2039385614026655e-21,-1.773374606273137e-05,-8.470329472543003e-22,-4.876780076301657e-05,-1.773374606273137e-05,-8.555032767268433e-20,-0.002136494033038616,9.05687702470459e-05,9.753560152603313e-05,0.000676274998113513,9.299983448023825e-23,2.925844253402504e-21,-1.5094795344339218e-05,-9.836853170230772e-20,-1.625593358767219e-05,-3.8423117075581104e-05,7.044238009257242e-05,-3.8423117075581104e-05,-1.2039385614026655e-21,9.299983448023825e-23,3.201926347173867e-06,1.7103626500943122e-22,1.4506414935384569e-22,1.9156936458380427e-23,-8.209948386508276e-24,-7.108878107561772e-23,9.753560152603313e-05,-1.625593358767219e-05,-1.773374606273137e-05,2.925844253402504e-21,1.7103626500943122e-22,2.9556242679973366e-06,-5.483798010862328e-22,-1.2705494208814505e-21,8.848880596893517e-23,3.8116881726952685e-23,9.05687702470459e-05,-1.5094795344339218e-05,-8.470329472543003e-22,-1.5094795344339218e-05,1.4506414935384569e-22,-5.483798010862328e-22,2.5157992240565363e-06,2.6469779601696886e-23,5.293955920339377e-22,1.9058241313221758e-21,8.127966430038214e-05,7.623296525288703e-21,-4.876780076301657e-05,-9.836853170230772e-20,1.9156936458380427e-23,-1.2705494208814505e-21,2.6469779601696886e-23,4.433436515682843e-06,2.752857078576476e-21,6.988021814847978e-21,9.753560152603313e-05,-3.3359081368625138e-21,-1.773374606273137e-05,-1.625593358767219e-05,-8.209948386508276e-24,8.848880596893517e-23,5.293955920339377e-22,2.752857078576476e-21,2.9556242679973366e-06,1.5881867761018131e-21,7.044238009257242e-05,-1.0164395367051604e-20,-8.555032767268433e-20,-3.8423117075581104e-05,-7.108878107561772e-23,3.8116881726952685e-23,1.9058241313221758e-21,6.988021814847978e-21,1.5881867761018131e-21,3.201926347173867e-06,13.0,12.0,14.0,0.017370838671922684,-0.001989494077861309,-0.002134404145181179,-0.001863075071014464,6.541077891597524e-05,9.05687702470459e-05,7.849293615436181e-05,7.547397399321198e-05,8.453085320070386e-05,5.723443246097304e-05,-0.001989494077861309,0.0006289040902629495,9.05687702470459e-05,7.849293615436181e-05,-3.567860767361708e-05,-1.5094795344339218e-05,-1.308215632889187e-05,-6.776263578034403e-21,1.867785738099849e-21,5.929230630780102e-21,-0.002134404145181179,9.05687702470459e-05,0.0007352537359111011,8.453085320070386e-05,1.1667544098773845e-21,-1.6467049135826528e-05,1.2705494208814505e-21,-4.528438512352295e-05,-1.536924537504092e-05,4.0657581468206416e-20,-0.001863075071014464,7.849293615436181e-05,8.453085320070386e-05,0.000544181908480823,6.952199098405589e-22,5.464103120175963e-23,-1.2075835911673494e-05,4.7470851685129764e-20,-1.300474650633987e-05,-2.861721623048652e-05,6.541077891597524e-05,-3.567860767361708e-05,1.1667544098773845e-21,6.952199098405589e-22,2.9732173061347567e-06,-1.6000032813732997e-22,-2.0680749723370182e-22,-2.1036162484519732e-23,6.537571550479236e-24,3.644493521454744e-23,9.05687702470459e-05,-1.5094795344339218e-05,-1.6467049135826528e-05,5.464103120175963e-23,-1.6000032813732997e-22,2.7445082650956465e-06,6.496191930581958e-23,1.2705494208814505e-21,-1.3058000759057567e-24,-3.3201331654339516e-23,7.849293615436181e-05,-1.308215632889187e-05,1.2705494208814505e-21,-1.2075835911673494e-05,-2.0680749723370182e-22,6.496191930581958e-23,2.0126394701946992e-06,1.3234889800848443e-23,-2.6469779601696886e-22,-8.470329472543003e-22,7.547397399321198e-05,-6.776263578034403e-21,-4.528438512352295e-05,4.7470851685129764e-20,-2.1036162484519732e-23,1.2705494208814505e-21,1.3234889800848443e-23,4.116762283956632e-06,-2.2234614865425384e-21,-2.752857078576476e-21,8.453085320070386e-05,1.867785738099849e-21,-1.536924537504092e-05,-1.300474650633987e-05,6.537571550479236e-24,-1.3058000759057567e-24,-2.6469779601696886e-22,-2.2234614865425384e-21,2.364499323448399e-06,-1.5881867761018131e-21,5.723443246097304e-05,5.929230630780102e-21,4.0657581468206416e-20,-2.861721623048652e-05,3.644493521454744e-23,-3.3201331654339516e-23,-8.470329472543003e-22,-2.752857078576476e-21,-1.5881867761018131e-21,2.201324377892888e-06,13.0,12.0,15.0,0.0163189098238945,-0.001861439784988761,-0.001997041516005993,-0.0016390284290537238,6.105006468715146e-05,8.453085320070386e-05,6.868132186355069e-05,7.044238009257242e-05,7.396449655061588e-05,4.7134239139268175e-05,-0.001861439784988761,0.0005877402727492154,8.453085320070386e-05,6.868132186355069e-05,-3.330003164592199e-05,-1.4088475836615544e-05,-1.1446886674093548e-05,1.1858461261560205e-20,-9.138389898536987e-22,-4.658681209898652e-21,-0.001997041516005993,8.453085320070386e-05,0.0006871334044262767,7.396449655061588e-05,3.6216387064175535e-22,-1.536924537504092e-05,1.2705494208814505e-21,-4.226542660035193e-05,-1.3448090612655506e-05,2.456395547037471e-20,-0.0016390284290537238,6.868132186355069e-05,7.396449655061588e-05,0.000444438133854419,1.4923200570089334e-21,4.321934286161824e-21,-9.811617019295227e-06,3.1997452819173706e-20,-1.0566356650087982e-05,-2.1754263798356988e-05,6.105006468715146e-05,-3.330003164592199e-05,3.6216387064175535e-22,1.4923200570089334e-21,2.775002712951391e-06,-1.1481412936166799e-23,-1.5145349354580344e-22,-3.15738863633196e-23,1.1546762173555307e-23,-4.299029400545257e-23,8.453085320070386e-05,-1.4088475836615544e-05,-1.536924537504092e-05,4.321934286161824e-21,-1.1481412936166799e-23,2.5615411232138285e-06,-5.387817998721684e-22,-2.329340604949326e-21,-1.5569198639157076e-22,-7.671928683068537e-24,6.868132186355069e-05,-1.1446886674093548e-05,1.2705494208814505e-21,-9.811617019295227e-06,-1.5145349354580344e-22,-5.387817998721684e-22,1.6352695411114837e-06,1.3234889800848443e-23,2.6469779601696886e-22,6.352747104407253e-22,7.044238009257242e-05,1.1858461261560205e-20,-4.226542660035193e-05,3.1997452819173706e-20,-3.15738863633196e-23,-2.329340604949326e-21,1.3234889800848443e-23,3.84231134376023e-06,-2.117582368135751e-22,-2.2234614865425384e-21,7.396449655061588e-05,-9.138389898536987e-22,-1.3448090612655506e-05,-1.0566356650087982e-05,1.1546762173555307e-23,-1.5569198639157076e-22,2.6469779601696886e-22,-2.117582368135751e-22,1.921155671880115e-06,0.0,4.7134239139268175e-05,-4.658681209898652e-21,2.456395547037471e-20,-2.1754263798356988e-05,-4.299029400545257e-23,-7.671928683068537e-24,6.352747104407253e-22,-2.2234614865425384e-21,0.0,1.5538760180788813e-06,13.0,12.0,16.0,0.015387343242764473,-0.0017488874727860093,-0.0018763052066788077,-0.0014531330671161413,5.723443246097304e-05,7.924767851363868e-05,6.0601163568207994e-05,6.603972724406049e-05,6.526279321406037e-05,3.9278533222386613e-05,-0.0017488874727860093,0.0005516377277672291,7.924767851363868e-05,6.0601163568207994e-05,-3.121878035017289e-05,-1.3207945812609978e-05,-1.0100194231199566e-05,1.3825836031509422e-20,6.3848371077509784e-21,-2.541098841762901e-21,-0.0018763052066788077,7.924767851363868e-05,0.0006449291831813753,6.526279321406037e-05,-4.616886071719045e-22,-1.4408667993848212e-05,4.658681209898652e-21,-3.962383925681934e-05,-1.1865961823787075e-05,2.456395547037471e-20,-0.0014531330671161413,6.0601163568207994e-05,6.526279321406037e-05,0.00036769884172827005,8.555382057206781e-22,6.505172903728621e-21,-8.080155566858593e-06,4.237777140667006e-20,-8.701705155544914e-06,-1.6833657355164178e-05,5.723443246097304e-05,-3.121878035017289e-05,-4.616886071719045e-22,8.555382057206781e-22,2.6015650291810744e-06,1.3330696642243173e-22,-6.14853966747361e-23,1.8491999766320442e-38,-4.508708629153002e-23,-1.4804394836101684e-23,7.924767851363868e-05,-1.3207945812609978e-05,-1.4408667993848212e-05,6.505172903728621e-21,1.3330696642243173e-22,2.401444817223819e-06,-3.941359108811581e-22,-2.5137883510064048e-21,-7.5279226612458565e-22,1.410593220986745e-36,6.0601163568207994e-05,-1.0100194231199566e-05,4.658681209898652e-21,-8.080155566858593e-06,-6.14853966747361e-23,-3.941359108811581e-22,1.3466925565808197e-06,5.64237288394698e-37,-2.9116757561866574e-22,3.1763735522036263e-22,6.603972724406049e-05,1.3825836031509422e-20,-3.962383925681934e-05,4.237777140667006e-20,1.8491999766320442e-38,-2.5137883510064048e-21,5.64237288394698e-37,3.602166998462053e-06,-2.653845821075866e-21,-1.852107878604163e-21,6.526279321406037e-05,6.3848371077509784e-21,-1.1865961823787075e-05,-8.701705155544914e-06,-4.508708629153002e-23,-7.5279226612458565e-22,-2.9116757561866574e-22,-2.653845821075866e-21,1.5821283341210801e-06,-4.235164736271502e-22,3.9278533222386613e-05,-2.541098841762901e-21,2.456395547037471e-20,-1.6833657355164178e-05,-1.4804394836101684e-23,1.410593220986745e-36,3.1763735522036263e-22,-1.852107878604163e-21,-4.235164736271502e-22,1.1222438160984893e-06,13.0,13.0,3.0,0.056716177612543106,-0.007668156176805496,-0.007668156176805496,-0.024091294035315514,0.0002817695203702897,0.0003622750809881836,0.0012679628562182188,0.0002817695203702897,0.0012679628562182188,0.002958579920232296,-0.007668156176805496,0.0025587964337319136,0.0003622750809881836,0.0012679628562182188,-0.00015369246830232441,-6.037918137735687e-05,-0.00021132713300175965,-4.407720751281172e-20,0.0,-0.0,-0.007668156176805496,0.0003622750809881836,0.0025587964337319136,0.0012679628562182188,-3.537856326650701e-21,-6.037918137735687e-05,6.047584666799955e-20,-0.00015369246830232441,-0.00021132713300175965,-0.0,-0.024091294035315514,0.0012679628562182188,0.0012679628562182188,0.053677093237638474,9.933097411647165e-21,5.833531003786546e-20,-0.0012679628562182188,9.943137073993957e-22,-0.0012679628562182188,-0.017751479521393776,0.0002817695203702897,-0.00015369246830232441,-3.537856326650701e-21,9.933097411647165e-21,1.2807705388695467e-05,9.3802998380304e-22,-1.6555161679583968e-21,1.9870693072258968e-23,0.0,-0.0,0.0003622750809881836,-6.037918137735687e-05,-6.037918137735687e-05,5.833531003786546e-20,9.3802998380304e-22,1.0063196896226145e-05,-9.722550865184009e-21,7.105537199586627e-21,0.0,-0.0,0.0012679628562182188,-0.00021132713300175965,6.047584666799955e-20,-0.0012679628562182188,-1.6555161679583968e-21,-9.722550865184009e-21,0.00021132713300175965,-1.6571895123323261e-22,0.0,-0.0,0.0002817695203702897,-4.407720751281172e-20,-0.00015369246830232441,9.943137073993957e-22,1.9870693072258968e-23,7.105537199586627e-21,-1.6571895123323261e-22,1.2807705388695467e-05,0.0,-0.0,0.0012679628562182188,0.0,-0.00021132713300175965,-0.0012679628562182188,0.0,0.0,0.0,0.0,0.00021132713300175965,-0.0,0.002958579920232296,-0.0,-0.0,-0.017751479521393776,-0.0,-0.0,-0.0,-0.0,-0.0,0.008875739760696888,13.0,13.0,4.0,0.04600289836525917,-0.005941311363130808,-0.005941311363130808,-0.015342350117862225,0.00021132713300175965,0.00027170631801709533,0.0007607776788063347,0.00021132713300175965,0.0007607776788063347,0.001479289960116148,-0.005941311363130808,0.0019507964607328176,0.00027170631801709533,0.0007607776788063347,-0.0001152693439507857,-4.528438512352295e-05,-0.0001267962798010558,4.757453764400229e-22,-3.8793445947287206e-21,-0.0,-0.005941311363130808,0.00027170631801709533,0.0019507964607328176,0.0007607776788063347,1.593633829097928e-21,-4.528438512352295e-05,3.3627933243060128e-21,-0.0001152693439507857,-0.0001267962798010558,-0.0,-0.015342350117862225,0.0007607776788063347,0.0007607776788063347,0.0205832626670599,-2.9435486792087628e-24,-3.5738180845608006e-21,-0.0005071851192042232,-5.585064123130872e-21,-0.0005071851192042232,-0.004437869880348444,0.00021132713300175965,-0.0001152693439507857,1.593633829097928e-21,-2.9435486792087628e-24,9.605779268895276e-06,-4.645252247693345e-22,2.8721321610463602e-39,3.1913061211596083e-22,4.90591462969396e-25,-0.0,0.00027170631801709533,-4.528438512352295e-05,-4.528438512352295e-05,-3.5738180845608006e-21,-4.645252247693345e-22,7.547397672169609e-06,-8.159719088317958e-23,-8.715609173388031e-23,6.772335277918343e-22,-0.0,0.0007607776788063347,-0.0001267962798010558,3.3627933243060128e-21,-0.0005071851192042232,2.8721321610463602e-39,-8.159719088317958e-23,8.453085320070386e-05,-2.077019392824776e-22,-1.2692895658396019e-22,-0.0,0.00021132713300175965,4.757453764400229e-22,-0.0001152693439507857,-5.585064123130872e-21,3.1913061211596083e-22,-8.715609173388031e-23,-2.077019392824776e-22,9.605779268895276e-06,1.1385459555970315e-21,-0.0,0.0007607776788063347,-3.8793445947287206e-21,-0.0001267962798010558,-0.0005071851192042232,4.90591462969396e-25,6.772335277918343e-22,-1.2692895658396019e-22,1.1385459555970315e-21,8.453085320070386e-05,-0.0,0.001479289960116148,-0.0,-0.0,-0.004437869880348444,-0.0,-0.0,-0.0,-0.0,-0.0,0.001479289960116148,13.0,13.0,5.0,0.03876343369483948,-0.00485448632389307,-0.00485448632389307,-0.01065088715404272,0.00016906170640140772,0.0002173650573240593,0.0005071851192042232,0.00016906170640140772,0.0005071851192042232,0.0008453085320070386,-0.00485448632389307,0.0015775433275848627,0.0002173650573240593,0.0005071851192042232,-9.221547952620313e-05,-3.6227509554009885e-05,-8.453085320070386e-05,1.6940658945086007e-21,0.0,-0.0,-0.00485448632389307,0.0002173650573240593,0.0015775433275848627,0.0005071851192042232,5.0976090721185915e-23,-3.6227509554009885e-05,-5.249284936087246e-22,-9.221547952620313e-05,-8.453085320070386e-05,-0.0,-0.01065088715404272,0.0005071851192042232,0.0005071851192042232,0.010397295467555523,-3.237638029959577e-21,-1.5379769785530717e-22,-0.0002535925596021116,0.0,-0.0002535925596021116,-0.0016906170640140772,0.00016906170640140772,-9.221547952620313e-05,5.0976090721185915e-23,-3.237638029959577e-21,7.68462268752046e-06,3.7103798784563998e-22,3.8233225457609576e-22,-8.018263075148623e-23,-5.60170507450675e-23,-0.0,0.0002173650573240593,-3.6227509554009885e-05,-3.6227509554009885e-05,-1.5379769785530717e-22,3.7103798784563998e-22,6.037917955836747e-06,2.2727299773938467e-22,0.0,0.0,-0.0,0.0005071851192042232,-8.453085320070386e-05,-5.249284936087246e-22,-0.0002535925596021116,3.8233225457609576e-22,2.2727299773938467e-22,4.226542660035193e-05,3.9492102943024475e-23,-3.9133180697479777e-23,-0.0,0.00016906170640140772,1.6940658945086007e-21,-9.221547952620313e-05,0.0,-8.018263075148623e-23,0.0,3.9492102943024475e-23,7.68462268752046e-06,0.0,-0.0,0.0005071851192042232,0.0,-8.453085320070386e-05,-0.0002535925596021116,-5.60170507450675e-23,0.0,-3.9133180697479777e-23,0.0,4.226542660035193e-05,-0.0,0.0008453085320070386,-0.0,-0.0,-0.0016906170640140772,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004226542660035193,13.0,13.0,6.0,0.03352050855755806,-0.004105784464627504,-0.004105784464627504,-0.007834198884665966,0.00014088476018514484,0.0001811375404940918,0.0003622750809881836,0.00014088476018514484,0.0003622750809881836,0.0005283178179524839,-0.004105784464627504,0.0013246826129034162,0.0001811375404940918,0.0003622750809881836,-7.684623415116221e-05,-3.0189590688678436e-05,-6.037918137735687e-05,-2.202285662861181e-20,1.6940658945086007e-21,-0.0,-0.004105784464627504,0.0001811375404940918,0.0013246826129034162,0.0003622750809881836,1.0901274150394445e-21,-3.0189590688678436e-05,1.6367409855889687e-20,-7.684623415116221e-05,-6.037918137735687e-05,-0.0,-0.007834198884665966,0.0003622750809881836,0.0003622750809881836,0.0060394275933504105,7.994581066877104e-21,1.551919106767911e-20,-0.00014491003821603954,-3.3881317890172014e-21,-0.00014491003821603954,-0.0007924767560325563,0.00014088476018514484,-7.684623415116221e-05,1.0901274150394445e-21,7.994581066877104e-21,6.403852694347734e-06,-1.326067482394086e-22,-9.720877722758471e-22,1.4799803034544574e-22,-2.191702224177379e-22,-0.0,0.0001811375404940918,-3.0189590688678436e-05,-3.0189590688678436e-05,1.551919106767911e-20,-1.326067482394086e-22,5.031598448113073e-06,-2.9659780631374896e-21,3.1763735522036263e-21,-2.117582368135751e-22,-0.0,0.0003622750809881836,-6.037918137735687e-05,1.6367409855889687e-20,-0.00014491003821603954,-9.720877722758471e-22,-2.9659780631374896e-21,2.4151671823346987e-05,1.8903867671174992e-22,6.05514421609396e-23,-0.0,0.00014088476018514484,-2.202285662861181e-20,-7.684623415116221e-05,-3.3881317890172014e-21,1.4799803034544574e-22,3.1763735522036263e-21,1.8903867671174992e-22,6.403852694347734e-06,0.0,-0.0,0.0003622750809881836,1.6940658945086007e-21,-6.037918137735687e-05,-0.00014491003821603954,-2.191702224177379e-22,-2.117582368135751e-22,6.05514421609396e-23,0.0,2.4151671823346987e-05,-0.0,0.0005283178179524839,-0.0,-0.0,-0.0007924767560325563,-0.0,-0.0,-0.0,-0.0,-0.0,0.00015849535702727735,13.0,13.0,7.0,0.029539795592427254,-0.0035580589901655912,-0.0035580589901655912,-0.006007728632539511,0.00012075836275471374,0.00015526075731031597,0.00027170631801709533,0.00012075836275471374,0.00027170631801709533,0.00035221187863498926,-0.0035580589901655912,0.0011419114889577031,0.00015526075731031597,0.00027170631801709533,-6.586819654330611e-05,-2.587679227872286e-05,-4.528438512352295e-05,8.470329472543003e-21,2.541098841762901e-21,-0.0,-0.0035580589901655912,0.00015526075731031597,0.0011419114889577031,0.00027170631801709533,4.0632141625402576e-21,-2.587679227872286e-05,-5.269688589897959e-21,-6.586819654330611e-05,-4.528438512352295e-05,-0.0,-0.006007728632539511,0.00027170631801709533,0.00027170631801709533,0.003834078088402748,2.577816290554879e-21,-2.6335528349838243e-21,-9.05687702470459e-05,3.3881317890172014e-21,-9.05687702470459e-05,-0.0004226542660035193,0.00012075836275471374,-6.586819654330611e-05,4.0632141625402576e-21,2.577816290554879e-21,5.489016530191293e-06,-7.583768964625711e-22,-5.3453740003594275e-22,1.191460422712752e-22,-2.509214762669874e-23,-0.0,0.00015526075731031597,-2.587679227872286e-05,-2.587679227872286e-05,-2.6335528349838243e-21,-7.583768964625711e-22,4.312798864702927e-06,8.777133508237049e-22,-1.4823076576950256e-21,-2.117582368135751e-22,-0.0,0.00027170631801709533,-4.528438512352295e-05,-5.269688589897959e-21,-9.05687702470459e-05,-5.3453740003594275e-22,8.777133508237049e-22,1.5094795344339218e-05,1.3584780535661446e-22,-1.3193343652414073e-23,-0.0,0.00012075836275471374,8.470329472543003e-21,-6.586819654330611e-05,3.3881317890172014e-21,1.191460422712752e-22,-1.4823076576950256e-21,1.3584780535661446e-22,5.489016530191293e-06,-4.235164736271502e-22,-0.0,0.00027170631801709533,2.541098841762901e-21,-4.528438512352295e-05,-9.05687702470459e-05,-2.509214762669874e-23,-2.117582368135751e-22,-1.3193343652414073e-23,-4.235164736271502e-22,1.5094795344339218e-05,-0.0,0.00035221187863498926,-0.0,-0.0,-0.0004226542660035193,-0.0,-0.0,-0.0,-0.0,-0.0,7.044238009257242e-05,13.0,13.0,8.0,0.026410860940814018,-0.0031397175043821335,-0.0031397175043821335,-0.004754860419780016,0.00010566356650087982,0.00013585315900854766,0.00021132713300175965,0.00010566356650087982,0.00021132713300175965,0.00024654832668602467,-0.0031397175043821335,0.0010035751620307565,0.00013585315900854766,0.00021132713300175965,-5.763467197539285e-05,-2.2642192561761476e-05,-3.522119004628621e-05,0.0,8.470329472543003e-22,-0.0,-0.0031397175043821335,0.00013585315900854766,0.0010035751620307565,0.00021132713300175965,-7.508191798502213e-22,-2.2642192561761476e-05,1.8424089031942304e-21,-5.763467197539285e-05,-3.522119004628621e-05,-0.0,-0.004754860419780016,0.00021132713300175965,0.00021132713300175965,0.002591273281723261,4.911642573181458e-21,1.3890912083211009e-21,-6.037918137735687e-05,1.6940658945086007e-21,-6.037918137735687e-05,-0.00024654832668602467,0.00010566356650087982,-5.763467197539285e-05,-7.508191798502213e-22,4.911642573181458e-21,4.802889634447638e-06,-1.004804509831553e-22,-7.172029515359463e-22,1.4480783897940852e-22,3.19028318944659e-23,-0.0,0.00013585315900854766,-2.2642192561761476e-05,-2.2642192561761476e-05,1.3890912083211009e-21,-1.004804509831553e-22,3.7736988360848045e-06,-1.5027714416393787e-22,-4.235164736271502e-22,-1.0587911840678754e-22,-0.0,0.00021132713300175965,-3.522119004628621e-05,1.8424089031942304e-21,-6.037918137735687e-05,-7.172029515359463e-22,-1.5027714416393787e-22,1.0063196896226145e-05,-1.1301314729327393e-22,-3.3219355548302006e-23,-0.0,0.00010566356650087982,0.0,-5.763467197539285e-05,1.6940658945086007e-21,1.4480783897940852e-22,-4.235164736271502e-22,-1.1301314729327393e-22,4.802889634447638e-06,0.0,-0.0,0.00021132713300175965,8.470329472543003e-22,-3.522119004628621e-05,-6.037918137735687e-05,3.19028318944659e-23,-1.0587911840678754e-22,-3.3219355548302006e-23,0.0,1.0063196896226145e-05,-0.0,0.00024654832668602467,-0.0,-0.0,-0.00024654832668602467,-0.0,-0.0,-0.0,-0.0,-0.0,3.522119004628621e-05,13.0,13.0,9.0,0.023885028436779976,-0.002809644676744938,-0.002809644676744938,-0.003857680829241872,9.392316860612482e-05,0.00012075836275471374,0.00016906170640140772,9.392316860612482e-05,0.00016906170640140772,0.00017930786998476833,-0.002809644676744938,0.0008951976196840405,0.00012075836275471374,0.00016906170640140772,-5.123082155478187e-05,-2.012639379245229e-05,-2.8176951673231088e-05,-1.4399560103323106e-20,0.0,-0.0,-0.002809644676744938,0.00012075836275471374,0.0008951976196840405,0.00016906170640140772,-1.843549911607542e-21,-2.012639379245229e-05,7.478734596341557e-21,-5.123082155478187e-05,-2.8176951673231088e-05,-0.0,-0.003857680829241872,0.00016906170640140772,0.00016906170640140772,0.0018353441264480352,1.9356617032786677e-22,7.991324851008744e-21,-4.226542660035193e-05,0.0,-4.226542660035193e-05,-0.00015369246830232441,9.392316860612482e-05,-5.123082155478187e-05,-1.843549911607542e-21,1.9356617032786677e-22,4.2692349779827055e-06,1.9860355838956951e-22,-9.334353802119942e-23,3.1556017086094535e-23,6.108250963322163e-23,-0.0,0.00012075836275471374,-2.012639379245229e-05,-2.012639379245229e-05,7.991324851008744e-21,1.9860355838956951e-22,3.3543990411999403e-06,-1.246455867031122e-21,2.329340604949326e-21,0.0,-0.0,0.00016906170640140772,-2.8176951673231088e-05,7.478734596341557e-21,-4.226542660035193e-05,-9.334353802119942e-23,-1.246455867031122e-21,7.044237918307772e-06,-9.4039548065783e-37,0.0,-0.0,9.392316860612482e-05,-1.4399560103323106e-20,-5.123082155478187e-05,0.0,3.1556017086094535e-23,2.329340604949326e-21,-9.4039548065783e-37,4.2692349779827055e-06,0.0,-0.0,0.00016906170640140772,0.0,-2.8176951673231088e-05,-4.226542660035193e-05,6.108250963322163e-23,0.0,0.0,0.0,7.044237918307772e-06,-0.0,0.00017930786998476833,-0.0,-0.0,-0.00015369246830232441,-0.0,-0.0,-0.0,-0.0,-0.0,1.9211558537790552e-05,13.0,13.0,10.0,0.021802373230457306,-0.0025425124913454056,-0.0025425124913454056,-0.0031929609831422567,8.453085320070386e-05,0.00010868252866202965,0.00013832321565132588,8.453085320070386e-05,0.00013832321565132588,0.00013448089885059744,-0.0025425124913454056,0.0008079832186922431,0.00010868252866202965,0.00013832321565132588,-4.610773976310156e-05,-1.8113754777004942e-05,-2.305386988155078e-05,8.470329472543003e-22,0.0,-0.0,-0.0025425124913454056,0.00010868252866202965,0.0008079832186922431,0.00013832321565132588,9.5047252908891e-22,-1.8113754777004942e-05,1.6879903023867547e-22,-4.610773976310156e-05,-2.305386988155078e-05,-0.0,-0.0031929609831422567,0.00013832321565132588,0.00013832321565132588,0.0013483311049640179,1.460189865935252e-21,2.4271606698612777e-22,-3.073849075008184e-05,0.0,-3.073849075008184e-05,-0.00010086067777592689,8.453085320070386e-05,-4.610773976310156e-05,9.5047252908891e-22,1.460189865935252e-21,3.84231134376023e-06,-2.096619367767025e-23,-2.132911260810516e-22,-5.336849127655502e-23,-3.007383895304926e-23,-0.0,0.00010868252866202965,-1.8113754777004942e-05,-1.8113754777004942e-05,2.4271606698612777e-22,-2.096619367767025e-23,3.0189589779183734e-06,-2.813317170644591e-23,2.117582368135751e-22,0.0,-0.0,0.00013832321565132588,-2.305386988155078e-05,1.6879903023867547e-22,-3.073849075008184e-05,-2.132911260810516e-22,-2.813317170644591e-23,5.123082246427657e-06,1.4693679385278594e-39,7.346839692639297e-40,-0.0,8.453085320070386e-05,8.470329472543003e-22,-4.610773976310156e-05,0.0,-5.336849127655502e-23,2.117582368135751e-22,1.4693679385278594e-39,3.84231134376023e-06,0.0,-0.0,0.00013832321565132588,0.0,-2.305386988155078e-05,-3.073849075008184e-05,-3.007383895304926e-23,0.0,7.346839692639297e-40,0.0,5.123082246427657e-06,-0.0,0.00013448089885059744,-0.0,-0.0,-0.00010086067777592689,-0.0,-0.0,-0.0,-0.0,-0.0,1.120674187404802e-05,13.0,13.0,11.0,0.020055176690220833,-0.0023218540009111166,-0.0023218540009111166,-0.0026866623666137457,7.684623415116221e-05,9.880229481495917e-05,0.0001152693439507857,7.684623415116221e-05,0.0001152693439507857,0.00010344685142626986,-0.0023218540009111166,0.0007362767355516553,9.880229481495917e-05,0.0001152693439507857,-4.191612606518902e-05,-1.6467049135826528e-05,-1.9211558537790552e-05,5.844527336054672e-20,1.5594341072564406e-19,2.964615315390051e-19,-0.0023218540009111166,9.880229481495917e-05,0.0007362767355516553,0.0001152693439507857,8.387612057522554e-20,-1.6467049135826528e-05,1.4907779871675686e-19,-4.191612606518902e-05,-1.9211558537790552e-05,2.947674656444965e-19,-0.0026866623666137457,0.0001152693439507857,0.0001152693439507857,0.0010200844844803214,3.1932007323084277e-19,1.0860222283270625e-19,-2.305386988155078e-05,3.1612022842875795e-19,-2.305386988155078e-05,-6.896456761751324e-05,7.684623415116221e-05,-4.191612606518902e-05,8.387612057522554e-20,3.1932007323084277e-19,3.4930105812236434e-06,-4.211742761797893e-21,-1.1967893863867989e-20,-1.2711006390166955e-21,-7.698784834119836e-21,-1.827241488453498e-20,9.880229481495917e-05,-1.6467049135826528e-05,-1.6467049135826528e-05,1.0860222283270625e-19,-4.211742761797893e-21,2.7445082650956465e-06,-3.473492546926769e-21,-4.235164736271502e-22,-2.8779223039401973e-21,-5.63802508886379e-21,0.0001152693439507857,-1.9211558537790552e-05,1.4907779871675686e-19,-2.305386988155078e-05,-1.1967893863867989e-20,-3.473492546926769e-21,3.84231134376023e-06,-6.908612476042887e-21,-7.623296525288703e-21,-7.199780051661553e-21,7.684623415116221e-05,5.844527336054672e-20,-4.191612606518902e-05,3.1612022842875795e-19,-1.2711006390166955e-21,-4.235164736271502e-22,-6.908612476042887e-21,3.4930105812236434e-06,-1.207021949837378e-20,-1.8475906161984426e-20,0.0001152693439507857,1.5594341072564406e-19,-1.9211558537790552e-05,-2.305386988155078e-05,-7.698784834119836e-21,-2.8779223039401973e-21,-7.623296525288703e-21,-1.207021949837378e-20,3.84231134376023e-06,-6.564505341220828e-21,0.00010344685142626986,2.964615315390051e-19,2.947674656444965e-19,-6.896456761751324e-05,-1.827241488453498e-20,-5.63802508886379e-21,-7.199780051661553e-21,-1.8475906161984426e-20,-6.564505341220828e-21,6.896456397953443e-06,13.0,13.0,12.0,0.018568146973848343,-0.002136494033038616,-0.002136494033038616,-0.0022920866031199694,7.044238009257242e-05,9.05687702470459e-05,9.753560152603313e-05,7.044238009257242e-05,9.753560152603313e-05,8.127966430038214e-05,-0.002136494033038616,0.000676274998113513,9.05687702470459e-05,9.753560152603313e-05,-3.8423117075581104e-05,-1.5094795344339218e-05,-1.625593358767219e-05,-1.1858461261560205e-20,2.4208048491023482e-21,6.776263578034403e-21,-0.002136494033038616,9.05687702470459e-05,0.000676274998113513,9.753560152603313e-05,-1.7622592215850335e-21,-1.5094795344339218e-05,5.929230630780102e-21,-3.8423117075581104e-05,-1.625593358767219e-05,6.776263578034403e-21,-0.0022920866031199694,9.753560152603313e-05,9.753560152603313e-05,0.0007906294777058065,2.3446147696099304e-22,4.186122781028624e-21,-1.773374606273137e-05,-6.078298735166262e-22,-1.773374606273137e-05,-4.876780076301657e-05,7.044238009257242e-05,-3.8423117075581104e-05,-1.7622592215850335e-21,2.3446147696099304e-22,3.201926347173867e-06,1.6392354167827304e-22,2.0386455380802259e-22,6.177470667856048e-23,-3.491895557973977e-24,-1.2125578449797276e-22,9.05687702470459e-05,-1.5094795344339218e-05,-1.5094795344339218e-05,4.186122781028624e-21,1.6392354167827304e-22,2.5157992240565363e-06,-7.490213847798844e-22,1.9058241313221758e-21,1.1984774035735653e-23,1.872570091137593e-23,9.753560152603313e-05,-1.625593358767219e-05,5.929230630780102e-21,-1.773374606273137e-05,2.0386455380802259e-22,-7.490213847798844e-22,2.9556242679973366e-06,0.0,-3.705769144237564e-22,-1.0587911840678754e-21,7.044238009257242e-05,-1.1858461261560205e-20,-3.8423117075581104e-05,-6.078298735166262e-22,6.177470667856048e-23,1.9058241313221758e-21,0.0,3.201926347173867e-06,1.0587911840678754e-22,-5.293955920339377e-23,9.753560152603313e-05,2.4208048491023482e-21,-1.625593358767219e-05,-1.773374606273137e-05,-3.491895557973977e-24,1.1984774035735653e-23,-3.705769144237564e-22,1.0587911840678754e-22,2.9556242679973366e-06,-1.2705494208814505e-21,8.127966430038214e-05,6.776263578034403e-21,6.776263578034403e-21,-4.876780076301657e-05,-1.2125578449797276e-22,1.872570091137593e-23,-1.0587911840678754e-21,-5.293955920339377e-23,-1.2705494208814505e-21,4.433436515682843e-06,13.0,13.0,13.0,0.01728702336549759,-0.0019785792101174593,-0.0019785792101174593,-0.0019785792101174593,6.502373435068876e-05,8.360194624401629e-05,8.360194624401629e-05,6.502373435068876e-05,8.360194624401629e-05,6.502373435068876e-05,-0.0019785792101174593,0.0006253256578929722,8.360194624401629e-05,8.360194624401629e-05,-3.546749212546274e-05,-1.3933657101006247e-05,-1.3933657101006247e-05,1.6940658945086007e-21,8.284103772845076e-22,1.6940658945086007e-21,-0.0019785792101174593,8.360194624401629e-05,0.0006253256578929722,8.360194624401629e-05,8.556470559038241e-22,-1.3933657101006247e-05,1.0587911840678754e-21,-3.546749212546274e-05,-1.3933657101006247e-05,1.6940658945086007e-21,-0.0019785792101174593,8.360194624401629e-05,8.360194624401629e-05,0.0006253256578929722,-4.454040442203441e-22,1.3309874248442193e-21,-1.3933657101006247e-05,1.5067782491927262e-21,-1.3933657101006247e-05,-3.546749212546274e-05,6.502373435068876e-05,-3.546749212546274e-05,8.556470559038241e-22,-4.454040442203441e-22,2.9556242679973366e-06,-1.3653979414267433e-22,-1.2909909400156146e-22,-1.9415622881864123e-23,3.572946361706095e-23,7.785458862420867e-23,8.360194624401629e-05,-1.3933657101006247e-05,-1.3933657101006247e-05,1.3309874248442193e-21,-1.3653979414267433e-22,2.3222762592922663e-06,-9.58318325082072e-23,-3.1763735522036263e-22,-1.3553650191075253e-22,2.2972304036109828e-24,8.360194624401629e-05,-1.3933657101006247e-05,1.0587911840678754e-21,-1.3933657101006247e-05,-1.2909909400156146e-22,-9.58318325082072e-23,2.3222762592922663e-06,-1.3234889800848443e-23,-5.293955920339377e-23,-3.1763735522036263e-22,6.502373435068876e-05,1.6940658945086007e-21,-3.546749212546274e-05,1.5067782491927262e-21,-1.9415622881864123e-23,-3.1763735522036263e-22,-1.3234889800848443e-23,2.9556242679973366e-06,-1.0587911840678754e-22,0.0,8.360194624401629e-05,8.284103772845076e-22,-1.3933657101006247e-05,-1.3933657101006247e-05,3.572946361706095e-23,-1.3553650191075253e-22,-5.293955920339377e-23,-1.0587911840678754e-22,2.3222762592922663e-06,-2.117582368135751e-22,6.502373435068876e-05,1.6940658945086007e-21,1.6940658945086007e-21,-3.546749212546274e-05,7.785458862420867e-23,2.2972304036109828e-24,-3.1763735522036263e-22,0.0,-2.117582368135751e-22,2.9556242679973366e-06,13.0,13.0,14.0,0.01617170125246048,-0.001842427533119917,-0.001842427533119917,-0.0017253351397812366,6.037918137735687e-05,7.763037865515798e-05,7.245501910801977e-05,6.037918137735687e-05,7.245501910801977e-05,5.283178325043991e-05,-0.001842427533119917,0.0005815220647491515,7.763037865515798e-05,7.245501910801977e-05,-3.2934098271653056e-05,-1.293839613936143e-05,-1.2075835911673494e-05,5.082197683525802e-21,-2.0108374969735886e-21,-5.505714157152952e-21,-0.001842427533119917,7.763037865515798e-05,0.0005815220647491515,7.245501910801977e-05,-9.196259598584297e-24,-1.293839613936143e-05,-4.0234064994579266e-21,-3.2934098271653056e-05,-1.2075835911673494e-05,-4.658681209898652e-21,-0.0017253351397812366,7.245501910801977e-05,7.245501910801977e-05,0.0005031792097724974,-5.137087458348196e-22,-2.281592735000696e-21,-1.1146925317007117e-05,-1.4325039531185174e-21,-1.1146925317007117e-05,-2.6415891625219956e-05,6.037918137735687e-05,-3.2934098271653056e-05,-9.196259598584297e-24,-5.137087458348196e-22,2.7445082650956465e-06,-6.4788412505159844e-24,-9.225427257238301e-23,-1.649159634069209e-23,4.016703971175709e-23,5.908150399369973e-23,7.763037865515798e-05,-1.293839613936143e-05,-1.293839613936143e-05,-2.281592735000696e-21,-6.4788412505159844e-24,2.1563994323514635e-06,3.284767836855297e-22,-8.470329472543003e-22,2.4074329310068192e-23,2.768454019875948e-23,7.245501910801977e-05,-1.2075835911673494e-05,-4.0234064994579266e-21,-1.1146925317007117e-05,-9.225427257238301e-23,3.284767836855297e-22,1.857820961959078e-06,3.970466940254533e-23,2.9116757561866574e-22,9.529120656610879e-22,6.037918137735687e-05,5.082197683525802e-21,-3.2934098271653056e-05,-1.4325039531185174e-21,-1.649159634069209e-23,-8.470329472543003e-22,3.970466940254533e-23,2.7445082650956465e-06,0.0,7.940933880509066e-23,7.245501910801977e-05,-2.0108374969735886e-21,-1.2075835911673494e-05,-1.1146925317007117e-05,4.016703971175709e-23,2.4074329310068192e-23,2.9116757561866574e-22,0.0,1.857820961959078e-06,6.352747104407253e-22,5.283178325043991e-05,-5.505714157152952e-21,-4.658681209898652e-21,-2.6415891625219956e-05,5.908150399369973e-23,2.768454019875948e-23,9.529120656610879e-22,7.940933880509066e-23,6.352747104407253e-22,2.0319916984590236e-06,13.0,13.0,15.0,0.015191875398159027,-0.0017238255823031068,-0.0017238255823031068,-0.0015178261091932654,5.6353903346462175e-05,7.245501910801977e-05,6.33981399005279e-05,5.6353903346462175e-05,6.33981399005279e-05,4.3508527596713975e-05,-0.0017238255823031068,0.0005434583872556686,7.245501910801977e-05,6.33981399005279e-05,-3.073849075008184e-05,-1.2075835911673494e-05,-1.0566356650087982e-05,4.235164736271502e-21,1.6773863709899014e-21,4.235164736271502e-21,-0.0017238255823031068,7.245501910801977e-05,0.0005434583872556686,6.33981399005279e-05,-1.1220584849988737e-21,-1.2075835911673494e-05,0.0,-3.073849075008184e-05,-1.0566356650087982e-05,3.8116482626443515e-21,-0.0015178261091932654,6.33981399005279e-05,6.33981399005279e-05,0.00041094725020229816,-3.0356292177885453e-23,-2.7687851521295236e-21,-9.056877388502471e-06,-1.0965810797941704e-21,-9.056877388502471e-06,-2.0080859030713327e-05,5.6353903346462175e-05,-3.073849075008184e-05,-1.1220584849988737e-21,-3.0356292177885453e-23,2.5615411232138285e-06,1.230870272706911e-22,1.6707050031126053e-23,2.8924250888532404e-23,1.4187648589257924e-24,-5.2083851013925236e-24,7.245501910801977e-05,-1.2075835911673494e-05,-1.2075835911673494e-05,-2.7687851521295236e-21,1.230870272706911e-22,2.0126394701946992e-06,3.3895401771011723e-22,-7.411538288475128e-22,8.749110518310957e-23,2.4873748329644682e-23,6.33981399005279e-05,-1.0566356650087982e-05,0.0,-9.056877388502471e-06,1.6707050031126053e-23,3.3895401771011723e-22,1.5094794889591867e-06,0.0,-3.1763735522036263e-22,-6.352747104407253e-22,5.6353903346462175e-05,4.235164736271502e-21,-3.073849075008184e-05,-1.0965810797941704e-21,2.8924250888532404e-23,-7.411538288475128e-22,0.0,2.5615411232138285e-06,1.0587911840678754e-22,2.6469779601696886e-23,6.33981399005279e-05,1.6773863709899014e-21,-1.0566356650087982e-05,-9.056877388502471e-06,1.4187648589257924e-24,8.749110518310957e-23,-3.1763735522036263e-22,1.0587911840678754e-22,1.5094794889591867e-06,-6.352747104407253e-22,4.3508527596713975e-05,4.235164736271502e-21,3.8116482626443515e-21,-2.0080859030713327e-05,-5.2083851013925236e-24,2.4873748329644682e-23,-6.352747104407253e-22,2.6469779601696886e-23,-6.352747104407253e-22,1.4343470411404269e-06,13.0,13.0,16.0,0.014324220828711987,-0.001619582762941718,-0.001619582762941718,-0.0013456565793603659,5.283178325043991e-05,6.792657950427383e-05,5.593953392235562e-05,5.283178325043991e-05,5.593953392235562e-05,3.625710814958438e-05,-0.001619582762941718,0.0005100749549455941,6.792657950427383e-05,5.593953392235562e-05,-2.8817335987696424e-05,-1.1321096280880738e-05,-9.323255653725937e-06,4.235164736271502e-22,2.846274365625983e-21,5.082197683525802e-21,-0.001619582762941718,6.792657950427383e-05,0.0005100749549455941,5.593953392235562e-05,4.666510345149496e-22,-1.1321096280880738e-05,2.329340604949326e-21,-2.8817335987696424e-05,-9.323255653725937e-06,5.082197683525802e-21,-0.0013456565793603659,5.593953392235562e-05,5.593953392235562e-05,0.0003399880661163479,7.457234160815322e-22,-2.948926399219918e-22,-7.45860461393022e-06,-5.965537316543288e-22,-7.45860461393022e-06,-1.5538760635536164e-05,5.283178325043991e-05,-2.8817335987696424e-05,4.666510345149496e-22,7.457234160815322e-22,2.401444817223819e-06,-1.0114280699817145e-23,-1.0451362542339894e-22,-2.574544278535752e-23,-9.789340215486653e-24,-3.716231033339823e-24,6.792657950427383e-05,-1.1321096280880738e-05,-1.1321096280880738e-05,-2.948926399219918e-22,-1.0114280699817145e-23,1.8868494180424022e-06,6.469308260906841e-24,1.0587911840678754e-22,3.2939089045895085e-23,9.881197545873303e-24,5.593953392235562e-05,-9.323255653725937e-06,2.329340604949326e-21,-7.45860461393022e-06,-1.0451362542339894e-22,6.469308260906841e-24,1.24310076898837e-06,1.3234889800848443e-23,-3.441071348220595e-22,-6.88214269644119e-22,5.283178325043991e-05,4.235164736271502e-22,-2.8817335987696424e-05,-5.965537316543288e-22,-2.574544278535752e-23,1.0587911840678754e-22,1.3234889800848443e-23,2.401444817223819e-06,0.0,2.6469779601696886e-23,5.593953392235562e-05,2.846274365625983e-21,-9.323255653725937e-06,-7.45860461393022e-06,-9.789340215486653e-24,3.2939089045895085e-23,-3.441071348220595e-22,0.0,1.24310076898837e-06,-7.940933880509066e-22,3.625710814958438e-05,5.082197683525802e-21,5.082197683525802e-21,-1.5538760635536164e-05,-3.716231033339823e-24,9.881197545873303e-24,-6.88214269644119e-22,2.6469779601696886e-23,-7.940933880509066e-22,1.0359173074903083e-06,13.0,14.0,3.0,0.053126636892557144,-0.0071428571827709675,-0.0066915228962898254,-0.022448979318141937,0.00026164311566390097,0.00031397174461744726,0.0011773940641433,0.00022893772984389216,0.001098901149816811,0.002747252816334367,-0.0071428571827709675,0.0023797631729394197,0.00031397174461744726,0.0011773940641433,-0.00014271443069446832,-5.232862531556748e-05,-0.00019623234402388334,2.2446988640936972e-20,-6.977466214749977e-20,-1.0457359992551041e-18,-0.0066915228962898254,0.00031397174461744726,0.00205968483351171,0.001098901149816811,4.554889934939833e-22,-4.8303343646693975e-05,-1.0782671515904365e-19,-0.00011446886492194608,-0.00016906170640140772,-9.009417553404531e-19,-0.022448979318141937,0.0011773940641433,0.001098901149816811,0.04992150887846947,-3.115784995714818e-21,-3.986211806226597e-20,-0.0011773940641433,7.765958725714783e-22,-0.001098901149816811,-0.016483517363667488,0.00026164311566390097,-0.00014271443069446832,4.554889934939833e-22,-3.115784995714818e-21,1.1892869224539027e-05,-4.351536992138726e-22,5.192975161148356e-22,-2.7577842028162907e-23,2.90094397851165e-38,-5.764315714816111e-36,0.00031397174461744726,-5.232862531556748e-05,-4.8303343646693975e-05,-3.986211806226597e-20,-4.351536992138726e-22,8.050557880778797e-06,6.643686478343256e-21,-3.3537389681625033e-21,2.083846417969116e-36,3.3828170372069285e-35,0.0011773940641433,-0.00019623234402388334,-1.0782671515904365e-19,-0.0011773940641433,5.192975161148356e-22,6.643686478343256e-21,0.00019623234402388334,-1.2943264963583788e-22,6.977466214749977e-20,1.0457359992551041e-18,0.00022893772984389216,2.2446988640936972e-20,-0.00011446886492194608,7.765958725714783e-22,-2.7577842028162907e-23,-3.3537389681625033e-21,-1.2943264963583788e-22,8.805297511571553e-06,-8.94059540275529e-37,-5.339740127062933e-36,0.001098901149816811,-6.977466214749977e-20,-0.00016906170640140772,-0.001098901149816811,2.90094397851165e-38,2.083846417969116e-36,6.977466214749977e-20,-8.94059540275529e-37,0.00016906170640140772,9.009417553404531e-19,0.002747252816334367,-1.0457359992551041e-18,-9.009417553404531e-19,-0.016483517363667488,-5.764315714816111e-36,3.3828170372069285e-35,1.0457359992551041e-18,-5.339740127062933e-36,9.009417553404531e-19,0.008241758681833744,13.0,14.0,4.0,0.04307496175169945,-0.005533752031624317,-0.00518347742035985,-0.014293563552200794,0.00019623234402388334,0.00023547880118712783,0.0007064364035613835,0.00017170330102089792,0.0006593406433239579,0.0013736264081671834,-0.005533752031624317,0.0018142571207135916,0.00023547880118712783,0.0007064364035613835,-0.00010703581938287243,-3.924646807718091e-05,-0.00011773940059356391,-9.65726418130984e-21,-1.1314474979002656e-19,9.530278709468453e-19,-0.00518347742035985,0.00023547880118712783,0.001570122898556292,0.0006593406433239579,-1.2664805969964846e-19,-3.6227509554009885e-05,2.0956557488015308e-19,-8.585165051044896e-05,-0.00010143702093046159,1.6201314573828454e-18,-0.014293563552200794,0.0007064364035613835,0.0006593406433239579,0.01914442703127861,-3.4186622499447093e-19,2.8211067169424607e-19,-0.00047095760237425566,9.520626545695725e-20,-0.00043956044828519225,-0.004120879340916872,0.00019623234402388334,-0.00010703581938287243,-1.2664805969964846e-19,-3.4186622499447093e-19,8.91965191840427e-06,4.3534846834028295e-21,2.497426936594369e-20,5.031718663527327e-21,1.5037836574658604e-20,1.9805605459011954e-20,0.00023547880118712783,-3.924646807718091e-05,-3.6227509554009885e-05,2.8211067169424607e-19,4.3534846834028295e-21,6.037917955836747e-06,1.5427454597094027e-21,-5.8278917161163366e-21,-9.307818338803833e-21,-8.9826037183668e-20,0.0007064364035613835,-0.00011773940059356391,2.0956557488015308e-19,-0.00047095760237425566,2.497426936594369e-20,1.5427454597094027e-21,7.849293615436181e-05,-1.6315851623685772e-20,-3.2379216058912535e-20,-4.626470279857954e-19,0.00017170330102089792,-9.65726418130984e-21,-8.585165051044896e-05,9.520626545695725e-20,5.031718663527327e-21,-5.8278917161163366e-21,-1.6315851623685772e-20,6.603972906304989e-06,4.677439792110279e-21,-1.686333048250937e-20,0.0006593406433239579,-1.1314474979002656e-19,-0.00010143702093046159,-0.00043956044828519225,1.5037836574658604e-20,-9.307818338803833e-21,-3.2379216058912535e-20,4.677439792110279e-21,6.762468547094613e-05,-6.246869536964114e-19,0.0013736264081671834,9.530278709468453e-19,1.6201314573828454e-18,-0.004120879340916872,1.9805605459011954e-20,-8.9826037183668e-20,-4.626470279857954e-19,-1.686333048250937e-20,-6.246869536964114e-19,0.0013736264081671834,13.0,14.0,5.0,0.03628728538751602,-0.004521192982792854,-0.004234693944454193,-0.009921506978571415,0.00015698587230872363,0.00018838304094970226,0.00047095760237425566,0.00013736264372710139,0.00043956044828519225,0.0007849293760955334,-0.004521192982792854,0.0014671043027192354,0.00018838304094970226,0.00047095760237425566,-8.562865696148947e-05,-3.139717591693625e-05,-7.849293615436181e-05,-1.5246593050577406e-20,0.0,-0.0,-0.004234693944454193,0.00018838304094970226,0.0012696232879534364,0.00043956044828519225,-3.495152319734084e-21,-2.8982007279410027e-05,-2.058301467873115e-20,-6.868132186355069e-05,-6.762468547094613e-05,-0.0,-0.009921506978571415,0.00047095760237425566,0.00043956044828519225,0.00967032928019762,-1.4860949978336534e-21,-1.9391473931045586e-20,-0.00023547880118712783,0.0,-0.00021978022414259613,-0.0015698587521910667,0.00015698587230872363,-8.562865696148947e-05,-3.495152319734084e-21,-1.4860949978336534e-21,7.1357212618750054e-06,4.817676794299994e-22,3.652378028430247e-22,7.629779371586035e-23,-3.496164873193033e-24,-0.0,0.00018838304094970226,-3.139717591693625e-05,-2.8982007279410027e-05,-1.9391473931045586e-20,4.817676794299994e-22,4.830334546568338e-06,3.0660198632811313e-21,2.117582368135751e-21,0.0,-0.0,0.00047095760237425566,-7.849293615436181e-05,-2.058301467873115e-20,-0.00023547880118712783,3.652378028430247e-22,3.0660198632811313e-21,3.924646807718091e-05,1.851624287936601e-22,1.863757094876645e-23,-0.0,0.00013736264372710139,-1.5246593050577406e-20,-6.868132186355069e-05,0.0,7.629779371586035e-23,2.117582368135751e-21,1.851624287936601e-22,5.283178325043991e-06,0.0,-0.0,0.00043956044828519225,0.0,-6.762468547094613e-05,-0.00021978022414259613,-3.496164873193033e-24,0.0,1.863757094876645e-23,0.0,3.3812342735473067e-05,-0.0,0.0007849293760955334,-0.0,-0.0,-0.0015698587521910667,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003924646880477667,13.0,14.0,6.0,0.03137381374835968,-0.0038237273693084717,-0.003581240074709058,-0.007297039497643709,0.00013082155783195049,0.00015698587230872363,0.00033639828325249255,0.00011446886492194608,0.00031397174461744726,0.0004905808600597084,-0.0038237273693084717,0.0012319313827902079,0.00015698587230872363,0.00033639828325249255,-7.135721534723416e-05,-2.616431265778374e-05,-5.6066382967401296e-05,1.1858461261560205e-20,8.470329472543003e-22,-0.0,-0.003581240074709058,0.00015698587230872363,0.0010660699335858226,0.00031397174461744726,-1.1329616786687316e-21,-2.4151671823346987e-05,-1.1230963179788472e-20,-5.723443246097304e-05,-4.8303343646693975e-05,-0.0,-0.007297039497643709,0.00033639828325249255,0.00031397174461744726,0.005617010407149792,-5.381193990498528e-21,-1.0517688730316977e-20,-0.0001345593191217631,3.3881317890172014e-21,-0.000125588703667745,-0.0007358712609857321,0.00013082155783195049,-7.135721534723416e-05,-1.1329616786687316e-21,-5.381193990498528e-21,5.946434612269513e-06,2.550121239573418e-22,8.94912083657559e-22,-8.90408760739578e-23,-4.2272787146830607e-23,-0.0,0.00015698587230872363,-2.616431265778374e-05,-2.4151671823346987e-05,-1.0517688730316977e-20,2.550121239573418e-22,4.0252789403893985e-06,1.981454207924308e-21,-1.6940658945086007e-21,0.0,-0.0,0.00033639828325249255,-5.6066382967401296e-05,-1.1230963179788472e-20,-0.0001345593191217631,8.94912083657559e-22,1.981454207924308e-21,2.242655318696052e-05,-6.010331867967613e-23,-7.038522285552188e-24,-0.0,0.00011446886492194608,1.1858461261560205e-20,-5.723443246097304e-05,3.3881317890172014e-21,-8.90408760739578e-23,-1.6940658945086007e-21,-6.010331867967613e-23,4.402648755785776e-06,0.0,-0.0,0.00031397174461744726,8.470329472543003e-22,-4.8303343646693975e-05,-0.000125588703667745,-4.2272787146830607e-23,0.0,-7.038522285552188e-24,0.0,1.932133818627335e-05,-0.0,0.0004905808600597084,-0.0,-0.0,-0.0007358712609857321,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001471742580179125,13.0,14.0,7.0,0.027644464746117592,-0.0033135232515633106,-0.0031032743863761425,-0.005595425143837929,0.00011213276593480259,0.0001345593191217631,0.000252298719715327,9.811617201194167e-05,0.00023547880118712783,0.0003270538873039186,-0.0033135232515633106,0.00106194824911654,0.0001345593191217631,0.000252298719715327,-6.116332951933146e-05,-2.242655318696052e-05,-4.204978540656157e-05,-1.1011428314305904e-20,-1.6940658945086007e-21,-0.0,-0.0031032743863761425,0.0001345593191217631,0.0009189495467580855,0.00023547880118712783,-3.467529414815571e-21,-2.0701432731584646e-05,1.290732466269031e-20,-4.9058086005970836e-05,-3.6227509554009885e-05,-0.0,-0.005595425143837929,0.000252298719715327,0.00023547880118712783,0.0035658220294862986,-3.799367377046067e-21,1.3138238108356883e-20,-8.409957081312314e-05,0.0,-7.849293615436181e-05,-0.0003924646880477667,0.00011213276593480259,-6.116332951933146e-05,-3.467529414815571e-21,-3.799367377046067e-21,5.096943823446054e-06,4.008299699526974e-22,7.350148501742105e-22,8.817060472331798e-23,3.6629194189345346e-23,-0.0,0.0001345593191217631,-2.242655318696052e-05,-2.0701432731584646e-05,1.3138238108356883e-20,4.008299699526974e-22,3.450238864388666e-06,-2.2354515664567226e-21,1.4823076576950256e-21,1.0587911840678754e-22,-0.0,0.000252298719715327,-4.204978540656157e-05,1.290732466269031e-20,-8.409957081312314e-05,7.350148501742105e-22,-2.2354515664567226e-21,1.4016595741850324e-05,6.588464044032574e-23,-1.833815839775936e-24,-0.0,9.811617201194167e-05,-1.1011428314305904e-20,-4.9058086005970836e-05,0.0,8.817060472331798e-23,1.4823076576950256e-21,6.588464044032574e-23,3.7736988360848045e-06,0.0,-0.0,0.00023547880118712783,-1.6940658945086007e-21,-3.6227509554009885e-05,-7.849293615436181e-05,3.6629194189345346e-23,1.0587911840678754e-22,-1.833815839775936e-24,0.0,1.2075835911673494e-05,-0.0,0.0003270538873039186,-0.0,-0.0,-0.0003924646880477667,-0.0,-0.0,-0.0,-0.0,-0.0,6.541077891597524e-05,13.0,14.0,8.0,0.024713827297091484,-0.0029238618444651365,-0.0027382588014006615,-0.004428309854120016,9.811617201194167e-05,0.00011773940059356391,0.00019623234402388334,8.585165051044896e-05,0.00018315018678549677,0.00022893772984389216,-0.0029238618444651365,0.0009332929039373994,0.00011773940059356391,0.00019623234402388334,-5.3517909691436216e-05,-1.9623234038590454e-05,-3.270538945798762e-05,-2.541098841762901e-21,-7.623296525288703e-20,-7.199459155667083e-22,-0.0027382588014006615,0.00011773940059356391,0.0008076030062511563,0.00018315018678549677,-7.026638224757133e-20,-1.8113754777004942e-05,2.659832217641792e-20,-4.292582525522448e-05,-2.8176951673231088e-05,6.449470367408844e-20,-0.004428309854120016,0.00019623234402388334,0.00018315018678549677,0.0024099200963974,-1.396836506716599e-19,3.367317210618982e-20,-5.6066382967401296e-05,-3.3881317890172014e-20,-5.232862531556748e-05,-0.00022893772984389216,9.811617201194167e-05,-5.3517909691436216e-05,-7.026638224757133e-20,-1.396836506716599e-19,4.459825959202135e-06,2.0693379070918408e-21,4.4267935651903415e-21,2.4243777200489518e-21,5.473448054811632e-21,9.242615665460627e-21,0.00011773940059356391,-1.9623234038590454e-05,-1.8113754777004942e-05,3.367317210618982e-20,2.0693379070918408e-21,3.0189589779183734e-06,3.9980132057583816e-22,-3.1763735522036263e-21,-7.411538288475128e-22,-6.256540102274297e-21,0.00019623234402388334,-3.270538945798762e-05,2.659832217641792e-20,-5.6066382967401296e-05,4.4267935651903415e-21,3.9980132057583816e-22,9.344396858068649e-06,-3.3478273328911984e-21,9.540364133320813e-22,-2.4013726882249227e-20,8.585165051044896e-05,-2.541098841762901e-21,-4.292582525522448e-05,-3.3881317890172014e-20,2.4243777200489518e-21,-3.1763735522036263e-21,-3.3478273328911984e-21,3.3019864531524945e-06,2.964615315390051e-21,3.665941286316059e-21,0.00018315018678549677,-7.623296525288703e-20,-2.8176951673231088e-05,-5.232862531556748e-05,5.473448054811632e-21,-7.411538288475128e-22,9.540364133320813e-22,2.964615315390051e-21,8.050557880778797e-06,-2.489307965011705e-20,0.00022893772984389216,-7.199459155667083e-22,6.449470367408844e-20,-0.00022893772984389216,9.242615665460627e-21,-6.256540102274297e-21,-2.4013726882249227e-20,3.665941286316059e-21,-2.489307965011705e-20,3.270538945798762e-05,13.0,14.0,9.0,0.022348525002598763,-0.002616431098431349,-0.0024502878077328205,-0.0035925977863371372,8.721437188796699e-05,0.00010465725063113496,0.00015698587230872363,7.631257903994992e-05,0.00014652014942839742,0.00016650016186758876,-0.002616431098431349,0.0008325008093379438,0.00010465725063113496,0.00015698587230872363,-4.7571476898156106e-05,-1.744287510518916e-05,-2.616431265778374e-05,-8.470329472543003e-21,-4.235164736271502e-22,-0.0,-0.0024502878077328205,0.00010465725063113496,0.0007203739369288087,0.00014652014942839742,2.163451663657349e-22,-1.6101115761557594e-05,-4.69355083090624e-21,-3.815628951997496e-05,-2.254156061098911e-05,-0.0,-0.0035925977863371372,0.00015698587230872363,0.00014652014942839742,0.0017068645684048533,-7.536646831768877e-22,-4.319998408878637e-21,-3.924646807718091e-05,-1.6940658945086007e-21,-3.6630037357099354e-05,-0.00014271443069446832,8.721437188796699e-05,-4.7571476898156106e-05,2.163451663657349e-22,-7.536646831768877e-22,3.964289589930559e-06,-9.200257545651957e-24,8.667614244825661e-23,-2.1802693892957558e-23,3.5939666649309764e-23,-0.0,0.00010465725063113496,-1.744287510518916e-05,-1.6101115761557594e-05,-4.319998408878637e-21,-9.200257545651957e-24,2.683519142010482e-06,7.82258505475772e-22,1.2705494208814505e-21,0.0,-0.0,0.00015698587230872363,-2.616431265778374e-05,-4.69355083090624e-21,-3.924646807718091e-05,8.667614244825661e-23,7.82258505475772e-22,6.541078164445935e-06,2.82118644197349e-37,0.0,-0.0,7.631257903994992e-05,-8.470329472543003e-21,-3.815628951997496e-05,-1.6940658945086007e-21,-2.1802693892957558e-23,1.2705494208814505e-21,2.82118644197349e-37,2.9350990189414006e-06,2.117582368135751e-22,-0.0,0.00014652014942839742,-4.235164736271502e-22,-2.254156061098911e-05,-3.6630037357099354e-05,3.5939666649309764e-23,0.0,0.0,2.117582368135751e-22,5.635390152747277e-06,-0.0,0.00016650016186758876,-0.0,-0.0,-0.00014271443069446832,-0.0,-0.0,-0.0,-0.0,-0.0,1.783930383680854e-05,13.0,14.0,10.0,0.02039852924644947,-0.0023676324635744095,-0.002217247150838375,-0.0029734550043940544,7.849293615436181e-05,9.419152047485113e-05,0.000128442989080213,6.868132186355069e-05,0.00011988011829089373,0.00012487512140069157,-0.0023676324635744095,0.0007513914606533945,9.419152047485113e-05,0.000128442989080213,-4.2814328480744734e-05,-1.5698587958468124e-05,-2.1407164240372367e-05,-7.623296525288703e-21,-4.235164736271502e-22,-0.0,-0.002217247150838375,9.419152047485113e-05,0.000650180852971971,0.00011988011829089373,9.893332561623882e-22,-1.4491003639705013e-05,-4.01259418256435e-21,-3.4340660931775346e-05,-1.8443095541442744e-05,-0.0,-0.0029734550043940544,0.000128442989080213,0.00011988011829089373,0.0012539246818050742,-6.784856078206011e-22,-4.2416299120845565e-21,-2.8542885047500022e-05,-8.470329472543003e-22,-2.6640027499524876e-05,-9.365634468849748e-05,7.849293615436181e-05,-4.2814328480744734e-05,9.893332561623882e-22,-6.784856078206011e-22,3.5678606309375027e-06,-2.3581019876153664e-23,1.2905587704572984e-22,-5.588210504317677e-23,-1.4746104326093093e-23,-0.0,9.419152047485113e-05,-1.5698587958468124e-05,-1.4491003639705013e-05,-4.2416299120845565e-21,-2.3581019876153664e-23,2.415167273284169e-06,6.687656802650257e-22,1.0587911840678754e-21,5.293955920339377e-23,-0.0,0.000128442989080213,-2.1407164240372367e-05,-4.01259418256435e-21,-2.8542885047500022e-05,1.2905587704572984e-22,6.687656802650257e-22,4.75714750791667e-06,2.82118644197349e-37,2.350988701644575e-38,-0.0,6.868132186355069e-05,-7.623296525288703e-21,-3.4340660931775346e-05,-8.470329472543003e-22,-5.588210504317677e-23,1.0587911840678754e-21,2.82118644197349e-37,2.6415891625219956e-06,2.117582368135751e-22,-0.0,0.00011988011829089373,-4.235164736271502e-22,-1.8443095541442744e-05,-2.6640027499524876e-05,-1.4746104326093093e-23,5.293955920339377e-23,2.350988701644575e-38,2.117582368135751e-22,4.098465524293715e-06,-0.0,0.00012487512140069157,-0.0,-0.0,-9.365634468849748e-05,-0.0,-0.0,-0.0,-0.0,-0.0,1.0406260116724297e-05,13.0,14.0,11.0,0.018762830644845963,-0.002162123564630747,-0.0020247609354555607,-0.002501893788576126,7.135721534723416e-05,8.562865696148947e-05,0.00010703581938287243,6.243756070034578e-05,9.990009857574478e-05,9.605778905097395e-05,-0.002162123564630747,0.0006847049226053059,8.562865696148947e-05,0.00010703581938287243,-3.892211680067703e-05,-1.4271442523750011e-05,-1.783930383680854e-05,5.929230630780102e-21,0.0,-0.0,-0.0020247609354555607,8.562865696148947e-05,0.000592470692936331,9.990009857574478e-05,-3.4438042148317704e-22,-1.3173639672459103e-05,-4.005996528606316e-21,-3.121878035017289e-05,-1.536924537504092e-05,-0.0,-0.002501893788576126,0.00010703581938287243,9.990009857574478e-05,0.0009486484341323376,-1.038113789212163e-21,-3.534092008628731e-21,-2.1407164240372367e-05,0.0,-1.9980019715148956e-05,-6.403852603398263e-05,7.135721534723416e-05,-3.892211680067703e-05,-3.4438042148317704e-22,-1.038113789212163e-21,3.2435098091809778e-06,1.1223507484979272e-23,1.9358382819036924e-22,2.6597376275394574e-23,-1.898293898623764e-23,-0.0,8.562865696148947e-05,-1.4271442523750011e-05,-1.3173639672459103e-05,-3.534092008628731e-21,1.1223507484979272e-23,2.195606612076517e-06,6.6766607127202e-22,-9.529120656610879e-22,0.0,-0.0,0.00010703581938287243,-1.783930383680854e-05,-4.005996528606316e-21,-2.1407164240372367e-05,1.9358382819036924e-22,6.6766607127202e-22,3.5678606309375027e-06,-2.82118644197349e-37,2.350988701644575e-38,-0.0,6.243756070034578e-05,5.929230630780102e-21,-3.121878035017289e-05,0.0,2.6597376275394574e-23,-9.529120656610879e-22,-2.82118644197349e-37,2.401444817223819e-06,0.0,-0.0,9.990009857574478e-05,0.0,-1.536924537504092e-05,-1.9980019715148956e-05,-1.898293898623764e-23,0.0,2.350988701644575e-38,0.0,3.073849256907124e-06,-0.0,9.605778905097395e-05,-0.0,-0.0,-6.403852603398263e-05,-0.0,-0.0,-0.0,-0.0,-0.0,6.403852694347734e-06,13.0,14.0,12.0,0.017370838671922684,-0.001989494077861309,-0.001863075071014464,-0.002134404145181179,6.541077891597524e-05,7.849293615436181e-05,9.05687702470459e-05,5.723443246097304e-05,8.453085320070386e-05,7.547397399321198e-05,-0.001989494077861309,0.0006289040902629495,7.849293615436181e-05,9.05687702470459e-05,-3.567860767361708e-05,-1.308215632889187e-05,-1.5094795344339218e-05,6.3527471044072525e-21,-7.678031311031326e-24,-5.929230630780102e-21,-0.001863075071014464,7.849293615436181e-05,0.000544181908480823,8.453085320070386e-05,8.438048022123911e-22,-1.2075835911673494e-05,-3.8116482626443515e-21,-2.861721623048652e-05,-1.300474650633987e-05,-5.082197683525802e-21,-0.002134404145181179,9.05687702470459e-05,8.453085320070386e-05,0.0007352537359111011,2.226324508892188e-21,-2.322502834353517e-21,-1.6467049135826528e-05,4.793771658299156e-22,-1.536924537504092e-05,-4.528438512352295e-05,6.541077891597524e-05,-3.567860767361708e-05,8.438048022123911e-22,2.226324508892188e-21,2.9732173061347567e-06,-1.692126836538244e-23,-2.1296634258004123e-22,-4.0099882405173814e-23,-3.2999228645865514e-23,-6.195151249552585e-23,7.849293615436181e-05,-1.308215632889187e-05,-1.2075835911673494e-05,-2.322502834353517e-21,-1.692126836538244e-23,2.0126394701946992e-06,4.622973301116965e-22,-8.470329472543003e-22,-5.733109106477397e-23,-2.5579021533348476e-23,9.05687702470459e-05,-1.5094795344339218e-05,-3.8116482626443515e-21,-1.6467049135826528e-05,-2.1296634258004123e-22,4.622973301116965e-22,2.7445082650956465e-06,-1.3234889800848443e-23,2.117582368135751e-22,1.2705494208814505e-21,5.723443246097304e-05,6.3527471044072525e-21,-2.861721623048652e-05,4.793771658299156e-22,-4.0099882405173814e-23,-8.470329472543003e-22,-1.3234889800848443e-23,2.201324377892888e-06,0.0,-5.293955920339377e-23,8.453085320070386e-05,-7.678031311031326e-24,-1.300474650633987e-05,-1.536924537504092e-05,-3.2999228645865514e-23,-5.733109106477397e-23,2.117582368135751e-22,0.0,2.364499323448399e-06,1.0587911840678754e-21,7.547397399321198e-05,-5.929230630780102e-21,-5.082197683525802e-21,-4.528438512352295e-05,-6.195151249552585e-23,-2.5579021533348476e-23,1.2705494208814505e-21,-5.293955920339377e-23,1.0587911840678754e-21,4.116762283956632e-06,13.0,14.0,13.0,0.01617170125246048,-0.001842427533119917,-0.0017253351397812366,-0.001842427533119917,6.037918137735687e-05,7.245501910801977e-05,7.763037865515798e-05,5.283178325043991e-05,7.245501910801977e-05,6.037918137735687e-05,-0.001842427533119917,0.0005815220647491515,7.245501910801977e-05,7.763037865515798e-05,-3.2934098271653056e-05,-1.2075835911673494e-05,-1.293839613936143e-05,-6.3527471044072525e-21,1.2843870256574368e-21,6.776263578034403e-21,-0.0017253351397812366,7.245501910801977e-05,0.0005031792097724974,7.245501910801977e-05,-8.065940439864987e-22,-1.1146925317007117e-05,6.352747104407253e-22,-2.6415891625219956e-05,-1.1146925317007117e-05,4.235164736271502e-21,-0.001842427533119917,7.763037865515798e-05,7.245501910801977e-05,0.0005815220647491515,-7.841503327660113e-23,-1.251760344462671e-21,-1.293839613936143e-05,-1.0355735813667044e-21,-1.2075835911673494e-05,-3.2934098271653056e-05,6.037918137735687e-05,-3.2934098271653056e-05,-8.065940439864987e-22,-7.841503327660113e-23,2.7445082650956465e-06,1.9416709932191517e-23,-2.573251966600819e-23,4.601355609305778e-23,7.76865012979678e-24,1.4114625904629105e-23,7.245501910801977e-05,-1.2075835911673494e-05,-1.1146925317007117e-05,-1.251760344462671e-21,1.9416709932191517e-23,1.857820961959078e-06,1.8005188492705077e-22,7.411538288475128e-22,7.893350421794858e-23,-6.5471491107295244e-24,7.763037865515798e-05,-1.293839613936143e-05,6.352747104407253e-22,-1.293839613936143e-05,-2.573251966600819e-23,1.8005188492705077e-22,2.1563994323514635e-06,2.6469779601696886e-23,-2.9116757561866574e-22,-1.0587911840678754e-21,5.283178325043991e-05,-6.3527471044072525e-21,-2.6415891625219956e-05,-1.0355735813667044e-21,4.601355609305778e-23,7.411538288475128e-22,2.6469779601696886e-23,2.0319916984590236e-06,0.0,7.940933880509066e-23,7.245501910801977e-05,1.2843870256574368e-21,-1.1146925317007117e-05,-1.2075835911673494e-05,7.76865012979678e-24,7.893350421794858e-23,-2.9116757561866574e-22,0.0,1.857820961959078e-06,-7.411538288475128e-22,6.037918137735687e-05,6.776263578034403e-21,4.235164736271502e-21,-3.2934098271653056e-05,1.4114625904629105e-23,-6.5471491107295244e-24,-1.0587911840678754e-21,7.940933880509066e-23,-7.411538288475128e-22,2.7445082650956465e-06,13.0,14.0,14.0,0.015127831138670444,-0.0017156313406303525,-0.001606582198292017,-0.001606582198292017,5.6066382967401296e-05,6.727965956088156e-05,6.727965956088156e-05,4.9058086005970836e-05,6.27943518338725e-05,4.9058086005970836e-05,-0.0017156313406303525,0.0005407857242971659,6.727965956088156e-05,6.727965956088156e-05,-3.058166475966573e-05,-1.121327659348026e-05,-1.121327659348026e-05,-5.082197683525802e-21,-1.1832786350828383e-21,-5.929230630780102e-21,-0.001606582198292017,6.727965956088156e-05,0.0004679278645198792,6.27943518338725e-05,-1.0119667231404611e-21,-1.0350716365792323e-05,2.752857078576476e-21,-2.4529043002985418e-05,-9.660669093136676e-06,-2.964615315390051e-21,-0.001606582198292017,6.727965956088156e-05,6.27943518338725e-05,0.0004679278645198792,-9.673137122951944e-22,3.891867414500306e-21,-1.0350716365792323e-05,4.761088583015998e-23,-9.660669093136676e-06,-2.4529043002985418e-05,5.6066382967401296e-05,-3.058166475966573e-05,-1.0119667231404611e-21,-9.673137122951944e-22,2.548471911723027e-06,1.8807826064774869e-22,8.741400507367689e-23,-8.172155638260948e-24,-3.41288714470776e-25,3.182411619789933e-23,6.727965956088156e-05,-1.121327659348026e-05,-1.0350716365792323e-05,3.891867414500306e-21,1.8807826064774869e-22,1.725119432194333e-06,-6.154849797408909e-22,8.470329472543003e-22,-2.741052147472191e-23,-7.56983982674117e-24,6.727965956088156e-05,-1.121327659348026e-05,2.752857078576476e-21,-1.0350716365792323e-05,8.741400507367689e-23,-6.154849797408909e-22,1.725119432194333e-06,-1.3234889800848443e-23,1.5881867761018131e-22,8.470329472543003e-22,4.9058086005970836e-05,-5.082197683525802e-21,-2.4529043002985418e-05,4.761088583015998e-23,-8.172155638260948e-24,8.470329472543003e-22,-1.3234889800848443e-23,1.8868494180424022e-06,5.293955920339377e-23,-2.6469779601696886e-23,6.27943518338725e-05,-1.1832786350828383e-21,-9.660669093136676e-06,-9.660669093136676e-06,-3.41288714470776e-25,-2.741052147472191e-23,1.5881867761018131e-22,5.293955920339377e-23,1.48625679230463e-06,4.235164736271502e-22,4.9058086005970836e-05,-5.929230630780102e-21,-2.964615315390051e-21,-2.4529043002985418e-05,3.182411619789933e-23,-7.56983982674117e-24,8.470329472543003e-22,-2.6469779601696886e-23,4.235164736271502e-22,1.8868494180424022e-06,13.0,14.0,15.0,0.014210837893188,-0.0016051805578172207,-0.0015031397342681885,-0.0014133345102891326,5.232862531556748e-05,6.27943518338725e-05,5.886970029678196e-05,4.578754669637419e-05,5.494505603564903e-05,4.0400776924798265e-05,-0.0016051805578172207,0.0005053874920122325,6.27943518338725e-05,5.886970029678196e-05,-2.8542885047500022e-05,-1.0465724699315615e-05,-9.811617019295227e-06,-4.235164736271502e-21,-8.577950799725302e-22,-3.8116482626443515e-21,-0.0015031397342681885,6.27943518338725e-05,0.0004372962284833193,5.494505603564903e-05,-6.878599007037193e-22,-9.660669093136676e-06,1.6940658945086007e-21,-2.2893773348187096e-05,-8.453085683868267e-06,-4.235164736271502e-21,-0.0014133345102891326,5.886970029678196e-05,5.494505603564903e-05,0.00038215453969314694,-4.5691121504278815e-22,3.3797476995858655e-21,-8.409957445110194e-06,3.0047727657086444e-23,-7.849293979234062e-06,-1.8646511307451874e-05,5.232862531556748e-05,-2.8542885047500022e-05,-6.878599007037193e-22,-4.5691121504278815e-22,2.378573753958335e-06,1.37923730694027e-23,7.555387263868797e-23,3.268505059086495e-23,2.1145396054065686e-23,-8.892753253909565e-24,6.27943518338725e-05,-1.0465724699315615e-05,-9.660669093136676e-06,3.3797476995858655e-21,1.37923730694027e-23,1.6101115534183918e-06,-5.30980785934874e-22,5.293955920339377e-22,-6.941859845619655e-23,2.3276977106063382e-23,5.886970029678196e-05,-9.811617019295227e-06,1.6940658945086007e-21,-8.409957445110194e-06,7.555387263868797e-23,-5.30980785934874e-22,1.4016595741850324e-06,2.6469779601696886e-23,1.852884572118782e-22,5.293955920339377e-22,4.578754669637419e-05,-4.235164736271502e-21,-2.2893773348187096e-05,3.0047727657086444e-23,3.268505059086495e-23,5.293955920339377e-22,2.6469779601696886e-23,1.761059479576943e-06,-1.0587911840678754e-22,7.940933880509066e-23,5.494505603564903e-05,-8.577950799725302e-22,-8.453085683868267e-06,-7.849293979234062e-06,2.1145396054065686e-23,-6.941859845619655e-23,1.852884572118782e-22,-1.0587911840678754e-22,1.2075836366420845e-06,5.293955920339377e-22,4.0400776924798265e-05,-3.8116482626443515e-21,-4.235164736271502e-21,-1.8646511307451874e-05,-8.892753253909565e-24,2.3276977106063382e-23,5.293955920339377e-22,7.940933880509066e-23,5.293955920339377e-22,1.3318937135409215e-06,13.0,14.0,16.0,0.013398868963122368,-0.0015081032179296017,-0.0014122235588729382,-0.0012530011590570211,4.9058086005970836e-05,5.886970029678196e-05,5.1943854487035424e-05,4.292582525522448e-05,4.848093158216216e-05,3.3667314710328355e-05,-0.0015081032179296017,0.0004743418248835951,5.886970029678196e-05,5.1943854487035424e-05,-2.6758954845718108e-05,-9.811617019295227e-06,-8.65730908117257e-06,-2.117582368135751e-21,-2.5076888229514282e-20,-1.5246593050577406e-20,-0.0014122235588729382,5.886970029678196e-05,0.0004104313557036221,4.848093158216216e-05,-3.720018945875924e-20,-9.056877388502471e-06,2.541098841762901e-21,-2.146291262761224e-05,-7.45860461393022e-06,-1.6093625997831706e-20,-0.0012530011590570211,5.1943854487035424e-05,4.848093158216216e-05,0.00031616492196917534,-4.6328873919537757e-20,2.6923735352513707e-21,-6.925847173988586e-06,-1.7433598813443657e-20,-6.464123998739524e-06,-1.4428848771785852e-05,4.9058086005970836e-05,-2.6758954845718108e-05,-3.720018945875924e-20,-4.6328873919537757e-20,2.2299129796010675e-06,1.1134559883818748e-21,1.4310359902589842e-21,1.1871923949146932e-21,1.5630896397187498e-21,1.591586981173482e-21,5.886970029678196e-05,-9.811617019295227e-06,-9.056877388502471e-06,2.6923735352513707e-21,1.1134559883818748e-21,1.5094794889591867e-06,2.685849239046635e-22,-1.4823076576950256e-21,5.083241706223982e-23,-5.485165706345364e-22,5.1943854487035424e-05,-8.65730908117257e-06,2.541098841762901e-21,-6.925847173988586e-06,1.4310359902589842e-21,2.685849239046635e-22,1.1543078244358185e-06,-7.676236084492097e-22,3.705769144237564e-22,-3.1763735522036263e-22,4.292582525522448e-05,-2.117582368135751e-21,-2.146291262761224e-05,-1.7433598813443657e-20,1.1871923949146932e-21,-1.4823076576950256e-21,-7.676236084492097e-22,1.6509932265762473e-06,1.1117307432712692e-21,8.205631676526035e-22,4.848093158216216e-05,-2.5076888229514282e-20,-7.45860461393022e-06,-6.464123998739524e-06,1.5630896397187498e-21,5.083241706223982e-23,3.705769144237564e-22,1.1117307432712692e-21,9.94480615190696e-07,9.529120656610879e-22,3.3667314710328355e-05,-1.5246593050577406e-20,-1.6093625997831706e-20,-1.4428848771785852e-05,1.591586981173482e-21,-5.485165706345364e-22,-3.1763735522036263e-22,8.205631676526035e-22,9.529120656610879e-22,9.61923205977655e-07,13.0,15.0,3.0,0.049964986741542816,-0.006684981752187014,-0.005890433210879564,-0.02101648412644863,0.00024420025874860585,0.00027472528745420277,0.001098901149816811,0.0001885369565570727,0.000961538462433964,0.0025641026441007853,-0.006684981752187014,0.002224164782091975,0.00027472528745420277,0.001098901149816811,-0.00013320012658368796,-4.578754669637419e-05,-0.00018315018678549677,-2.3206863893492033e-20,-9.490773080400803e-21,-7.6318690628873735e-34,-0.005890433210879564,0.00027472528745420277,0.0016826553037390113,0.000961538462433964,2.183838202341863e-21,-3.924646807718091e-05,-2.0109825363085338e-20,-8.701705519342795e-05,-0.00013736264372710139,-3.4156748354636858e-18,-0.02101648412644863,0.001098901149816811,0.000961538462433964,0.0466575101017952,5.630601869880337e-21,-2.294500306848218e-20,-0.001098901149816811,-6.38245271116768e-19,-0.000961538462433964,-0.015384615398943424,0.00024420025874860585,-0.00013320012658368796,2.183838202341863e-21,5.630601869880337e-21,1.1100010851805564e-05,-6.502088823620667e-23,-1.3774478737955284e-21,-1.4416396439767988e-22,3.762979356568109e-22,1.6460555588258403e-35,0.00027472528745420277,-4.578754669637419e-05,-3.924646807718091e-05,-2.294500306848218e-20,-6.502088823620667e-23,6.541078164445935e-06,3.052457413188886e-21,2.9522522367963296e-21,6.614654983392381e-22,7.798637043369256e-35,0.001098901149816811,-0.00018315018678549677,-2.0109825363085338e-20,-0.001098901149816811,-1.3774478737955284e-21,3.052457413188886e-21,0.00018315018678549677,1.1925566238266471e-22,5.1600008419262145e-36,4.666810147979149e-36,0.0001885369565570727,-2.3206863893492033e-20,-8.701705519342795e-05,-6.38245271116768e-19,-1.4416396439767988e-22,2.9522522367963296e-21,1.1925566238266471e-22,6.215504072315525e-06,2.798451855551767e-20,2.208190698459044e-19,0.000961538462433964,-9.490773080400803e-21,-0.00013736264372710139,-0.000961538462433964,3.762979356568109e-22,6.614654983392381e-22,5.1600008419262145e-36,2.798451855551767e-20,0.00013736264372710139,3.242079351692069e-19,0.0025641026441007853,-7.6318690628873735e-34,-3.4156748354636858e-18,-0.015384615398943424,1.6460555588258403e-35,7.798637043369256e-35,4.666810147979149e-36,2.208190698459044e-19,3.242079351692069e-19,0.007692307699471712,13.0,15.0,4.0,0.04049800708889961,-0.005178571213036776,-0.004562055692076683,-0.013379121199250221,0.00018315018678549677,0.00020604395831469446,0.0006593406433239579,0.00014140272105578333,0.0005769230774603784,0.0012820513220503926,-0.005178571213036776,0.0016955960309132934,0.00020604395831469446,0.0006593406433239579,-9.990009857574478e-05,-3.4340660931775346e-05,-0.00010989011207129806,1.2665994718977964e-20,-3.2350965094495722e-21,1.8657782683756026e-34,-0.004562055692076683,0.00020604395831469446,0.001282595912925899,0.0005769230774603784,3.918152209375172e-21,-2.943485014839098e-05,-1.0406167981638636e-20,-6.526279321406037e-05,-8.241758041549474e-05,-1.2181807196982949e-18,-0.013379121199250221,0.0006593406433239579,0.0005769230774603784,0.017893772572278976,4.548047822453602e-21,-1.3040028989868251e-20,-0.00043956044828519225,-3.4655582207976376e-19,-0.0003846153849735856,-0.003846153849735856,0.00018315018678549677,-9.990009857574478e-05,3.918152209375172e-21,4.548047822453602e-21,8.325007911480498e-06,-9.949756816057337e-23,-7.575963659285092e-22,-1.1472633860924775e-22,-3.5283108071693696e-25,-1.4620593038365514e-36,0.00020604395831469446,-3.4340660931775346e-05,-2.943485014839098e-05,-1.3040028989868251e-20,-9.949756816057337e-23,4.905808509647613e-06,1.6584220033670945e-21,-1.7405441149183826e-21,4.413566955273554e-22,-2.439215636775408e-35,0.0006593406433239579,-0.00010989011207129806,-1.0406167981638636e-20,-0.00043956044828519225,-7.575963659285092e-22,1.6584220033670945e-21,7.326007471419871e-05,2.0294398153062225e-23,1.0010463764790801e-22,2.0347953216823392e-36,0.00014140272105578333,1.2665994718977964e-20,-6.526279321406037e-05,-3.4655582207976376e-19,-1.1472633860924775e-22,-1.7405441149183826e-21,2.0294398153062225e-23,4.6616278268629685e-06,1.636772166420653e-20,7.728667056865741e-20,0.0005769230774603784,-3.2350965094495722e-21,-8.241758041549474e-05,-0.0003846153849735856,-3.5283108071693696e-25,4.413566955273554e-22,1.0010463764790801e-22,1.636772166420653e-20,5.494505603564903e-05,9.077821900394457e-20,0.0012820513220503926,1.8657782683756026e-34,-1.2181807196982949e-18,-0.003846153849735856,-1.4620593038365514e-36,-2.439215636775408e-35,2.0347953216823392e-36,7.728667056865741e-20,9.077821900394457e-20,0.0012820513220503926,13.0,15.0,5.0,0.03410902991890907,-0.0042307693511247635,-0.003726567607372999,-0.009285714477300644,0.00014652014942839742,0.00016483516083098948,0.00043956044828519225,0.0001131221724790521,0.0003846153849735856,0.0007326007471419871,-0.0042307693511247635,0.0013711288338527083,0.00016483516083098948,0.00043956044828519225,-7.992007886059582e-05,-2.7472528017824516e-05,-7.326007471419871e-05,-1.3552527156068805e-20,0.0,-9.545154751780466e-35,-0.003726567607372999,0.00016483516083098948,0.0010370657546445727,0.0003846153849735856,-5.160473687956467e-21,-2.3547880118712783e-05,2.1059102357695167e-20,-5.221023457124829e-05,-5.494505603564903e-05,-4.576316251367333e-19,-0.009285714477300644,0.00043956044828519225,0.0003846153849735856,0.009038461372256279,-6.077335441337679e-22,2.3313384399990976e-20,-0.00021978022414259613,-1.9312351197398048e-19,-0.0001923076924867928,-0.0014652014942839742,0.00014652014942839742,-7.992007886059582e-05,-5.160473687956467e-21,-6.077335441337679e-22,6.660006874881219e-06,5.629347770367653e-22,9.525820441236669e-23,1.3289663253397196e-22,8.87337630572244e-23,-3.7624743255453406e-38,0.00016483516083098948,-2.7472528017824516e-05,-2.3547880118712783e-05,2.3313384399990976e-20,5.629347770367653e-22,3.924646989617031e-06,-3.713899990385662e-21,1.2705494208814505e-21,-2.117582368135751e-22,1.3828888911762458e-35,0.00043956044828519225,-7.326007471419871e-05,2.1059102357695167e-20,-0.00021978022414259613,9.525820441236669e-23,-3.713899990385662e-21,3.6630037357099354e-05,1.846274675039499e-22,5.2750213653479003e-23,-4.323471217739971e-37,0.0001131221724790521,-1.3552527156068805e-20,-5.221023457124829e-05,-1.9312351197398048e-19,1.3289663253397196e-22,1.2705494208814505e-21,1.846274675039499e-22,3.72930230696511e-06,5.929230630780102e-21,3.785469611844182e-20,0.0003846153849735856,0.0,-5.494505603564903e-05,-0.0001923076924867928,8.87337630572244e-23,-2.117582368135751e-22,5.2750213653479003e-23,5.929230630780102e-21,2.7472528017824516e-05,-3.616706026072611e-20,0.0007326007471419871,-9.545154751780466e-35,-4.576316251367333e-19,-0.0014652014942839742,-3.7624743255453406e-38,1.3828888911762458e-35,-4.323471217739971e-37,3.785469611844182e-20,-3.616706026072611e-20,0.00036630037357099354,13.0,15.0,6.0,0.029486024752259254,-0.0035779697354882956,-0.0031512605492025614,-0.006828885525465012,0.00012210012937430292,0.00013736264372710139,0.00031397174461744726,9.426847827853635e-05,0.00027472528745420277,0.0004578754596877843,-0.0035779697354882956,0.0011513287900015712,0.00013736264372710139,0.00031397174461744726,-6.660006329184398e-05,-2.2893773348187096e-05,-5.232862531556748e-05,-9.317362419797304e-21,0.0,-5.880511509034267e-35,-0.0031512605492025614,0.00013736264372710139,0.0008707625092938542,0.00027472528745420277,-2.3540465168104976e-22,-1.9623234038590454e-05,-7.54759899792373e-21,-4.3508527596713975e-05,-3.924646807718091e-05,-2.706652062028971e-19,-0.006828885525465012,0.00031397174461744726,0.00027472528745420277,0.005249869078397751,-2.903148081448797e-21,-2.657465140152569e-21,-0.000125588703667745,-1.5077186461126546e-19,-0.00010989011207129806,-0.0006868132040835917,0.00012210012937430292,-6.660006329184398e-05,-2.3540465168104976e-22,-2.903148081448797e-21,5.550005425902782e-06,-2.4745281700140716e-22,7.316690701941147e-22,5.4793331843565215e-24,4.0632578086364217e-23,5.666962196775689e-37,0.00013736264372710139,-2.2893773348187096e-05,-1.9623234038590454e-05,-2.657465140152569e-21,-2.4745281700140716e-22,3.2705390822229674e-06,9.265280131516832e-22,1.0587911840678754e-21,-2.117582368135751e-22,7.173461450541147e-36,0.00031397174461744726,-5.232862531556748e-05,-7.54759899792373e-21,-0.000125588703667745,7.316690701941147e-22,9.265280131516832e-22,2.093144939863123e-05,1.463128341252764e-22,9.946617780743282e-23,5.084219786855851e-37,9.426847827853635e-05,-9.317362419797304e-21,-4.3508527596713975e-05,-1.5077186461126546e-19,5.4793331843565215e-24,1.0587911840678754e-21,1.463128341252764e-22,3.1077520361577626e-06,5.929230630780102e-21,2.1687586755412142e-20,0.00027472528745420277,0.0,-3.924646807718091e-05,-0.00010989011207129806,4.0632578086364217e-23,-2.117582368135751e-22,9.946617780743282e-23,5.929230630780102e-21,1.5698587958468124e-05,-1.3184397856152896e-20,0.0004578754596877843,-5.880511509034267e-35,-2.706652062028971e-19,-0.0006868132040835917,5.666962196775689e-37,7.173461450541147e-36,5.084219786855851e-37,2.1687586755412142e-20,-1.3184397856152896e-20,0.00013736264372710139,13.0,15.0,7.0,0.025978147983551025,-0.0031004708725959063,-0.002730515319854021,-0.005236133001744747,0.00010465725063113496,0.00011773940059356391,0.00023547880118712783,8.080155384959653e-05,0.00020604395831469446,0.0003052503161597997,-0.0031004708725959063,0.0009924599435180426,0.00011773940059356391,0.00023547880118712783,-5.7085770095000044e-05,-1.9623234038590454e-05,-3.924646807718091e-05,-9.317362419797304e-21,0.0,-3.9608477301386313e-35,-0.002730515319854021,0.00011773940059356391,0.0007505728281103075,0.00020604395831469446,-5.267274094926357e-21,-1.681991489022039e-05,1.0341004890180211e-20,-3.729302261490375e-05,-2.943485014839098e-05,-1.691819711404607e-19,-0.005236133001744747,0.00023547880118712783,0.00020604395831469446,0.003332679159939289,-4.911535944430621e-21,1.0833163622158624e-20,-7.849293615436181e-05,-1.2536087619363645e-19,-6.868132186355069e-05,-0.00036630037357099354,0.00010465725063113496,-5.7085770095000044e-05,-5.267274094926357e-21,-4.911535944430621e-21,4.75714750791667e-06,6.726019424015517e-22,7.874804869892964e-22,1.0481405521054331e-22,2.666467873238441e-23,-9.170184031046391e-38,0.00011773940059356391,-1.9623234038590454e-05,-1.681991489022039e-05,1.0833163622158624e-20,6.726019424015517e-22,2.803319148370065e-06,-1.850760075037713e-21,9.529120656610879e-22,-2.117582368135751e-22,5.7868301194035e-36,0.00023547880118712783,-3.924646807718091e-05,1.0341004890180211e-20,-7.849293615436181e-05,7.874804869892964e-22,-1.850760075037713e-21,1.308215632889187e-05,5.30986188054353e-23,-8.097032512864364e-25,9.504929010801232e-38,8.080155384959653e-05,-9.317362419797304e-21,-3.729302261490375e-05,-1.2536087619363645e-19,1.0481405521054331e-22,9.529120656610879e-22,5.30986188054353e-23,2.663787427081843e-06,5.929230630780102e-21,1.3669750927329787e-20,0.00020604395831469446,0.0,-2.943485014839098e-05,-6.868132186355069e-05,2.666467873238441e-23,-2.117582368135751e-22,-8.097032512864364e-25,5.929230630780102e-21,9.811617019295227e-06,-7.39818142184567e-21,0.0003052503161597997,-3.9608477301386313e-35,-1.691819711404607e-19,-0.00036630037357099354,-9.170184031046391e-38,5.7868301194035e-36,9.504929010801232e-38,1.3669750927329787e-20,-7.39818142184567e-21,6.105006468715146e-05,13.0,15.0,8.0,0.023222140967845917,-0.002735805930569768,-0.0024092330131679773,-0.00414377311244607,9.157509339274839e-05,0.00010302197915734723,0.00018315018678549677,7.070136052789167e-05,0.00016025641525629908,0.0002136752154910937,-0.002735805930569768,0.0008722180500626564,0.00010302197915734723,0.00018315018678549677,-4.995004928787239e-05,-1.7170330465887673e-05,-3.052503234357573e-05,5.929230630780102e-21,-4.235164736271502e-22,2.8894842134802626e-35,-0.0024092330131679773,0.00010302197915734723,0.0006596129387617111,0.00016025641525629908,1.9401591949368372e-21,-1.471742507419549e-05,-2.525015671845e-21,-3.263139660703018e-05,-2.2893773348187096e-05,-1.091471539106197e-19,-0.00414377311244607,0.00018315018678549677,0.00016025641525629908,0.002252311212942004,6.013857912130883e-21,-3.5511295866459794e-21,-5.232862531556748e-05,-8.978549240895584e-20,-4.578754669637419e-05,-0.0002136752154910937,9.157509339274839e-05,-4.995004928787239e-05,1.9401591949368372e-21,6.013857912130883e-21,4.162503955740249e-06,-1.1480869568775282e-22,-9.351448481044954e-22,-2.6729879663922737e-23,-3.5593157918969624e-23,-4.595999442509807e-38,0.00010302197915734723,-1.7170330465887673e-05,-1.471742507419549e-05,-3.5511295866459794e-21,-1.1480869568775282e-22,2.4529042548238067e-06,4.857975091000049e-22,-8.470329472543003e-22,0.0,-4.02039372235451e-36,0.00018315018678549677,-3.052503234357573e-05,-2.525015671845e-21,-5.232862531556748e-05,-9.351448481044954e-22,4.857975091000049e-22,8.72143755259458e-06,3.2210020641846205e-23,2.078837180785895e-23,-4.526694303320923e-38,7.070136052789167e-05,5.929230630780102e-21,-3.263139660703018e-05,-8.978549240895584e-20,-2.6729879663922737e-23,-8.470329472543003e-22,3.2210020641846205e-23,2.3308139134314843e-06,3.5998900258307764e-21,9.200793769119116e-21,0.00016025641525629908,-4.235164736271502e-22,-2.2893773348187096e-05,-4.578754669637419e-05,-3.5593157918969624e-23,0.0,2.078837180785895e-23,3.5998900258307764e-21,6.541078164445935e-06,-5.61827534394552e-21,0.0002136752154910937,2.8894842134802626e-35,-1.091471539106197e-19,-0.0002136752154910937,-4.595999442509807e-38,-4.02039372235451e-36,-4.526694303320923e-38,9.200793769119116e-21,-5.61827534394552e-21,3.052503234357573e-05,13.0,15.0,9.0,0.0209981519728899,-0.002448107348755002,-0.002155785448849201,-0.0033616384025663137,8.140008139889687e-05,9.157509339274839e-05,0.00014652014942839742,6.28456546110101e-05,0.00012820512347389013,0.0001554001501062885,-0.002448107348755002,0.0007780182640999556,9.157509339274839e-05,0.00014652014942839742,-4.4400043407222256e-05,-1.5262516171787865e-05,-2.44200236920733e-05,-1.5331296345302836e-19,-1.384898868760781e-19,-2.8198039074776897e-19,-0.002155785448849201,9.157509339274839e-05,0.0005883576232008636,0.00012820512347389013,-1.876231357167179e-19,-1.308215632889187e-05,-7.638647834234951e-20,-2.9005685064475983e-05,-1.8315018678549677e-05,1.0507233296621278e-19,-0.0033616384025663137,0.00014652014942839742,0.00012820512347389013,0.0015952104004099965,-2.6620153282240783e-19,-8.445875945684405e-20,-3.6630037357099354e-05,4.319868030996932e-20,-3.205128086847253e-05,-0.00013320012658368796,8.140008139889687e-05,-4.4400043407222256e-05,-1.876231357167179e-19,-2.6620153282240783e-19,3.7000036172685213e-06,3.759284256357407e-21,5.154341323092994e-21,8.335064439757843e-21,9.901216222940494e-21,1.920543584140358e-20,9.157509339274839e-05,-1.5262516171787865e-05,-1.308215632889187e-05,-8.445875945684405e-20,3.759284256357407e-21,2.180359388148645e-06,2.9622103119928603e-21,5.399835038746165e-21,2.4352197233561135e-21,6.337793633792726e-21,0.00014652014942839742,-2.44200236920733e-05,-7.638647834234951e-20,-3.6630037357099354e-05,5.154341323092994e-21,2.9622103119928603e-21,6.105005923018325e-06,4.002345301683719e-21,6.450957636534627e-22,1.787652818207166e-21,6.28456546110101e-05,-1.5331296345302836e-19,-2.9005685064475983e-05,4.319868030996932e-20,8.335064439757843e-21,5.399835038746165e-21,4.002345301683719e-21,2.0718346149806166e-06,-2.329340604949326e-21,-5.4726802470262496e-21,0.00012820512347389013,-1.384898868760781e-19,-1.8315018678549677e-05,-3.205128086847253e-05,9.901216222940494e-21,2.4352197233561135e-21,6.450957636534627e-22,-2.329340604949326e-21,4.578754669637419e-06,-1.477187054274153e-20,0.0001554001501062885,-2.8198039074776897e-19,1.0507233296621278e-19,-0.00013320012658368796,1.920543584140358e-20,6.337793633792726e-21,1.787652818207166e-21,-5.4726802470262496e-21,-1.477187054274153e-20,1.6650015822960995e-05,13.0,15.0,10.0,0.019164903089404106,-0.0022152846213430166,-0.0019506963435560465,-0.0027822176925837994,7.326007471419871e-05,8.241758041549474e-05,0.00011988011829089373,5.656108623952605e-05,0.00010489510168554261,0.00011655011621769518,-0.0022152846213430166,0.000702214427292347,8.241758041549474e-05,0.00011988011829089373,-3.996003943029791e-05,-1.3736264008912258e-05,-1.9980019715148956e-05,-5.082197683525802e-21,0.0,-1.4665200336962224e-35,-0.0019506963435560465,8.241758041549474e-05,0.0005310203414410353,0.00010489510168554261,-1.8493755168639672e-21,-1.1773940059356391e-05,6.346597775878874e-21,-2.6105117285624146e-05,-1.4985014786361717e-05,-6.12587020319471e-20,-0.0027822176925837994,0.00011988011829089373,0.00010489510168554261,0.001171883661299944,3.86234250914132e-22,6.363157947898057e-21,-2.6640027499524876e-05,-6.268043809681823e-20,-2.3310023607336916e-05,-8.741259080125019e-05,7.326007471419871e-05,-3.996003943029791e-05,-1.8493755168639672e-21,3.86234250914132e-22,3.3300034374406096e-06,2.3244736991955723e-22,-5.605199412772517e-23,3.233934965409176e-23,-7.131754600496638e-24,0.0,8.241758041549474e-05,-1.3736264008912258e-05,-1.1773940059356391e-05,6.363157947898057e-21,2.3244736991955723e-22,1.9623234948085155e-06,-1.0577662959798123e-21,6.352747104407253e-22,-0.0,2.0950286451897754e-36,0.00011988011829089373,-1.9980019715148956e-05,6.346597775878874e-21,-2.6640027499524876e-05,-5.605199412772517e-23,-1.0577662959798123e-21,4.440004431671696e-06,-3.76158192263132e-37,2.350988701644575e-38,-0.0,5.656108623952605e-05,-5.082197683525802e-21,-2.6105117285624146e-05,-6.268043809681823e-20,3.233934965409176e-23,6.352747104407253e-22,-3.76158192263132e-37,1.864651153482555e-06,2.752857078576476e-21,4.767684066028821e-21,0.00010489510168554261,0.0,-1.4985014786361717e-05,-2.3310023607336916e-05,-7.131754600496638e-24,-0.0,2.350988701644575e-38,2.752857078576476e-21,3.3300034374406096e-06,-1.2197505146304645e-21,0.00011655011621769518,-1.4665200336962224e-35,-6.12587020319471e-20,-8.741259080125019e-05,0.0,2.0950286451897754e-36,-0.0,4.767684066028821e-21,-1.2197505146304645e-21,9.71250938164303e-06,13.0,15.0,11.0,0.017627300694584846,-0.0020229769870638847,-0.001781306928023696,-0.002340928418561816,6.660006329184398e-05,7.492507575079799e-05,9.990009857574478e-05,5.141917063156143e-05,8.741259080125019e-05,8.965393499238417e-05,-0.0020229769870638847,0.000639890437014401,7.492507575079799e-05,9.990009857574478e-05,-3.632731022662483e-05,-1.2487512321968097e-05,-1.6650015822960995e-05,-4.658681209898652e-21,0.0,-9.540438138094977e-36,-0.001781306928023696,7.492507575079799e-05,0.000483881012769416,8.741259080125019e-05,5.574050261742343e-22,-1.0703582120186184e-05,-1.6076910527499278e-21,-2.373192364757415e-05,-1.2487512321968097e-05,-4.1882584256609166e-20,-0.002340928418561816,9.990009857574478e-05,8.741259080125019e-05,0.0008865707204677165,-9.356859688201536e-22,-1.5010084826666163e-21,-1.9980019715148956e-05,-5.166900978251232e-20,-1.7482518160250038e-05,-5.9769288782263175e-05,6.660006329184398e-05,-3.632731022662483e-05,5.574050261742343e-22,-9.356859688201536e-22,3.027275852218736e-06,-1.8414314477346764e-22,1.3655220134699165e-22,3.084763577042417e-23,1.662469137489917e-23,-0.0,7.492507575079799e-05,-1.2487512321968097e-05,-1.0703582120186184e-05,-1.5010084826666163e-21,-1.8414314477346764e-22,1.7839303154687514e-06,2.6794850879165463e-22,7.411538288475128e-22,-0.0,1.3629197468254398e-36,9.990009857574478e-05,-1.6650015822960995e-05,-1.6076910527499278e-21,-1.9980019715148956e-05,1.3655220134699165e-22,2.6794850879165463e-22,3.3300034374406096e-06,1.1754943508222875e-37,5.877471754111438e-39,0.0,5.141917063156143e-05,-4.658681209898652e-21,-2.373192364757415e-05,-5.166900978251232e-20,3.084763577042417e-23,7.411538288475128e-22,1.1754943508222875e-37,1.6951374846030376e-06,2.117582368135751e-21,3.6031082754014906e-21,8.741259080125019e-05,0.0,-1.2487512321968097e-05,-1.7482518160250038e-05,1.662469137489917e-23,-0.0,5.877471754111438e-39,2.117582368135751e-21,2.4975024643936194e-06,-1.7121863198023404e-21,8.965393499238417e-05,-9.540438138094977e-36,-4.1882584256609166e-20,-5.9769288782263175e-05,-0.0,1.3629197468254398e-36,0.0,3.6031082754014906e-21,-1.7121863198023404e-21,5.976929060125258e-06,13.0,15.0,12.0,0.0163189098238945,-0.001861439784988761,-0.0016390284290537238,-0.001997041516005993,6.105006468715146e-05,6.868132186355069e-05,8.453085320070386e-05,4.7134239139268175e-05,7.396449655061588e-05,7.044238009257242e-05,-0.001861439784988761,0.0005877402727492154,6.868132186355069e-05,8.453085320070386e-05,-3.330003164592199e-05,-1.1446886674093548e-05,-1.4088475836615544e-05,-5.929230630780102e-21,-2.1411396480318228e-21,1.1858461261560205e-20,-0.0016390284290537238,6.868132186355069e-05,0.000444438133854419,7.396449655061588e-05,1.48597728716482e-22,-9.811617019295227e-06,-2.541098841762901e-21,-2.1754263798356988e-05,-1.0566356650087982e-05,-4.912791094074942e-20,-0.001997041516005993,8.453085320070386e-05,7.396449655061588e-05,0.0006871334044262767,-5.029256104838491e-22,-9.538244684949537e-22,-1.536924537504092e-05,-4.11336626848219e-20,-1.3448090612655506e-05,-4.226542660035193e-05,6.105006468715146e-05,-3.330003164592199e-05,1.48597728716482e-22,-5.029256104838491e-22,2.775002712951391e-06,-1.625710680552642e-22,-1.434463786529674e-22,4.208305347735047e-23,3.5159735649535854e-23,9.431465103907545e-23,6.868132186355069e-05,-1.1446886674093548e-05,-9.811617019295227e-06,-9.538244684949537e-22,-1.625710680552642e-22,1.6352695411114837e-06,1.3383093414656676e-22,7.411538288475128e-22,7.160713842099483e-23,-5.077241630178871e-23,8.453085320070386e-05,-1.4088475836615544e-05,-2.541098841762901e-21,-1.536924537504092e-05,-1.434463786529674e-22,1.3383093414656676e-22,2.5615411232138285e-06,-1.3234889800848443e-23,3.1763735522036263e-22,-2.0117032497289633e-21,4.7134239139268175e-05,-5.929230630780102e-21,-2.1754263798356988e-05,-4.11336626848219e-20,4.208305347735047e-23,7.411538288475128e-22,-1.3234889800848443e-23,1.5538760180788813e-06,1.5881867761018131e-21,2.7263872989747792e-21,7.396449655061588e-05,-2.1411396480318228e-21,-1.0566356650087982e-05,-1.3448090612655506e-05,3.5159735649535854e-23,7.160713842099483e-23,3.1763735522036263e-22,1.5881867761018131e-21,1.921155671880115e-06,2.0117032497289633e-21,7.044238009257242e-05,1.1858461261560205e-20,-4.912791094074942e-20,-4.226542660035193e-05,9.431465103907545e-23,-5.077241630178871e-23,-2.0117032497289633e-21,2.7263872989747792e-21,2.0117032497289633e-21,3.84231134376023e-06,13.0,15.0,13.0,0.015191875398159027,-0.0017238255823031068,-0.0015178261091932654,-0.0017238255823031068,5.6353903346462175e-05,6.33981399005279e-05,7.245501910801977e-05,4.3508527596713975e-05,6.33981399005279e-05,5.6353903346462175e-05,-0.0017238255823031068,0.0005434583872556686,6.33981399005279e-05,7.245501910801977e-05,-3.073849075008184e-05,-1.0566356650087982e-05,-1.2075835911673494e-05,4.658681209898652e-21,1.474690871178093e-21,4.235164736271502e-21,-0.0015178261091932654,6.33981399005279e-05,0.00041094725020229816,6.33981399005279e-05,-1.9199486037886238e-22,-9.056877388502471e-06,1.0587911840678754e-21,-2.0080859030713327e-05,-9.056877388502471e-06,-2.0752307207730358e-20,-0.0017238255823031068,7.245501910801977e-05,6.33981399005279e-05,0.0005434583872556686,-1.4306109898685746e-21,-1.1259130739519498e-21,-1.2075835911673494e-05,-3.373247061635222e-20,-1.0566356650087982e-05,-3.073849075008184e-05,5.6353903346462175e-05,-3.073849075008184e-05,-1.9199486037886238e-22,-1.4306109898685746e-21,2.5615411232138285e-06,-1.27914919908377e-24,1.4442635846741812e-22,-2.8361227844271232e-24,4.0393357594577755e-23,2.1778010435233193e-23,6.33981399005279e-05,-1.0566356650087982e-05,-9.056877388502471e-06,-1.1259130739519498e-21,-1.27914919908377e-24,1.5094794889591867e-06,1.5736708519215327e-22,-6.352747104407253e-22,2.1890912207988424e-23,-6.631300453363523e-24,7.245501910801977e-05,-1.2075835911673494e-05,1.0587911840678754e-21,-1.2075835911673494e-05,1.4442635846741812e-22,1.5736708519215327e-22,2.0126394701946992e-06,0.0,-3.441071348220595e-22,-7.411538288475128e-22,4.3508527596713975e-05,4.658681209898652e-21,-2.0080859030713327e-05,-3.373247061635222e-20,-2.8361227844271232e-24,-6.352747104407253e-22,0.0,1.4343470411404269e-06,1.0058516248644817e-21,2.1705219273391446e-21,6.33981399005279e-05,1.474690871178093e-21,-9.056877388502471e-06,-1.0566356650087982e-05,4.0393357594577755e-23,2.1890912207988424e-23,-3.441071348220595e-22,1.0058516248644817e-21,1.5094794889591867e-06,-1.7999450129153882e-21,5.6353903346462175e-05,4.235164736271502e-21,-2.0752307207730358e-20,-3.073849075008184e-05,2.1778010435233193e-23,-6.631300453363523e-24,-7.411538288475128e-22,2.1705219273391446e-21,-1.7999450129153882e-21,2.5615411232138285e-06,13.0,15.0,14.0,0.014210837893188,-0.0016051805578172207,-0.0014133345102891326,-0.0015031397342681885,5.232862531556748e-05,5.886970029678196e-05,6.27943518338725e-05,4.0400776924798265e-05,5.494505603564903e-05,4.578754669637419e-05,-0.0016051805578172207,0.0005053874920122325,5.886970029678196e-05,6.27943518338725e-05,-2.8542885047500022e-05,-9.811617019295227e-06,-1.0465724699315615e-05,-4.235164736271502e-21,-2.1751035305024724e-21,-3.8116482626443515e-21,-0.0014133345102891326,5.886970029678196e-05,0.00038215453969314694,5.494505603564903e-05,-9.52775548548274e-22,-8.409957445110194e-06,4.235164736271502e-22,-1.8646511307451874e-05,-7.849293979234062e-06,-3.049318610115481e-20,-0.0015031397342681885,6.27943518338725e-05,5.494505603564903e-05,0.0004372962284833193,-4.534566858537422e-22,3.843326695165718e-21,-9.660669093136676e-06,-3.336784552492972e-20,-8.453085683868267e-06,-2.2893773348187096e-05,5.232862531556748e-05,-2.8542885047500022e-05,-9.52775548548274e-22,-4.534566858537422e-22,2.378573753958335e-06,1.5279666492101791e-22,6.647382487321721e-23,-6.249832563147609e-24,2.001082947890605e-23,-6.111149238287945e-24,5.886970029678196e-05,-9.811617019295227e-06,-8.409957445110194e-06,3.843326695165718e-21,1.5279666492101791e-22,1.4016595741850324e-06,-5.613621039361167e-22,5.293955920339377e-22,-7.429282483915062e-23,-8.570858364318905e-25,6.27943518338725e-05,-1.0465724699315615e-05,4.235164736271502e-22,-9.660669093136676e-06,6.647382487321721e-23,-5.613621039361167e-22,1.6101115534183918e-06,2.6469779601696886e-23,4.235164736271502e-22,5.293955920339377e-22,4.0400776924798265e-05,-4.235164736271502e-21,-1.8646511307451874e-05,-3.336784552492972e-20,-6.249832563147609e-24,5.293955920339377e-22,2.6469779601696886e-23,1.3318937135409215e-06,1.3234889800848443e-21,1.826414792517085e-21,5.494505603564903e-05,-2.1751035305024724e-21,-7.849293979234062e-06,-8.453085683868267e-06,2.001082947890605e-23,-7.429282483915062e-23,4.235164736271502e-22,1.3234889800848443e-21,1.2075836366420845e-06,8.470329472543003e-22,4.578754669637419e-05,-3.8116482626443515e-21,-3.049318610115481e-20,-2.2893773348187096e-05,-6.111149238287945e-24,-8.570858364318905e-25,5.293955920339377e-22,1.826414792517085e-21,8.470329472543003e-22,1.761059479576943e-06,13.0,15.0,15.0,0.01334908977150917,-0.0015018314588814974,-0.0013223174028098583,-0.0013223174028098583,4.88400473841466e-05,5.494505603564903e-05,5.494505603564903e-05,3.77073920390103e-05,4.80769231216982e-05,3.77073920390103e-05,-0.0015018314588814974,0.0004723054589703679,5.494505603564903e-05,5.494505603564903e-05,-2.6640027499524876e-05,-9.157509339274839e-06,-9.157509339274839e-06,2.964615315390051e-21,2.6844888641927994e-22,3.8116482626443515e-21,-0.0013223174028098583,5.494505603564903e-05,0.00035713546094484627,4.80769231216982e-05,4.6627944947415425e-22,-7.849293979234062e-06,-2.117582368135751e-22,-1.740341031108983e-05,-6.868132004456129e-06,-2.244637310223896e-20,-0.0013223174028098583,5.494505603564903e-05,4.80769231216982e-05,0.00035713546094484627,4.9654353643399385e-22,-9.117264077277424e-22,-7.849293979234062e-06,-2.862654642017807e-20,-6.868132004456129e-06,-1.740341031108983e-05,4.88400473841466e-05,-2.6640027499524876e-05,4.6627944947415425e-22,4.9654353643399385e-22,2.220002215835848e-06,-1.3918974831726724e-22,-9.448761983659783e-23,1.3417040939307595e-23,2.3842950095679628e-23,-6.4121706711112306e-24,5.494505603564903e-05,-9.157509339274839e-06,-7.849293979234062e-06,-9.117264077277424e-22,-1.3918974831726724e-22,1.3082155874144519e-06,1.3253491772082278e-22,-4.764560328305439e-22,1.7533564845075074e-23,9.42752837244613e-24,5.494505603564903e-05,-9.157509339274839e-06,-2.117582368135751e-22,-7.849293979234062e-06,-9.448761983659783e-23,1.3253491772082278e-22,1.3082155874144519e-06,0.0,-7.940933880509066e-23,-5.293955920339377e-22,3.77073920390103e-05,2.964615315390051e-21,-1.740341031108983e-05,-2.862654642017807e-20,1.3417040939307595e-23,-4.764560328305439e-22,0.0,1.24310076898837e-06,1.164670302474663e-21,1.4558378780933287e-21,4.80769231216982e-05,2.6844888641927994e-22,-6.868132004456129e-06,-6.868132004456129e-06,2.3842950095679628e-23,1.7533564845075074e-23,-7.940933880509066e-23,1.164670302474663e-21,9.811617474042578e-07,2.6469779601696886e-22,3.77073920390103e-05,3.8116482626443515e-21,-2.244637310223896e-20,-1.740341031108983e-05,-6.4121706711112306e-24,9.42752837244613e-24,-5.293955920339377e-22,1.4558378780933287e-21,2.6469779601696886e-22,1.24310076898837e-06,13.0,15.0,16.0,0.012586075812578201,-0.0014109971234574914,-0.0012423238949850202,-0.001172295887954533,4.578754669637419e-05,5.1510989578673616e-05,4.848093158216216e-05,3.535068026394583e-05,4.242081558913924e-05,3.142282730550505e-05,-0.0014109971234574914,0.00044329138472676277,5.1510989578673616e-05,4.848093158216216e-05,-2.4975024643936194e-05,-8.585165232943837e-06,-8.080155566858593e-06,3.8116482626443515e-21,8.001972781911447e-22,4.658681209898652e-21,-0.0012423238949850202,5.1510989578673616e-05,0.0003351932391524315,4.242081558913924e-05,5.476011385747944e-22,-7.358712537097745e-06,-3.1763735522036263e-22,-1.631569830351509e-05,-6.06011644777027e-06,-1.3552527156068805e-20,-0.001172295887954533,4.848093158216216e-05,4.242081558913924e-05,0.00029546432779170573,-9.023555984543816e-22,-8.75836543445101e-22,-6.464123998739524e-06,-2.3952048612238608e-20,-5.6561084420536645e-06,-1.3466925338434521e-05,4.578754669637419e-05,-2.4975024643936194e-05,5.476011385747944e-22,-9.023555984543816e-22,2.0812519778701244e-06,-1.3112681047133414e-23,-3.5541784930238916e-24,-2.90733645322809e-23,-4.173554999340885e-24,5.911262928957613e-23,5.1510989578673616e-05,-8.585165232943837e-06,-7.358712537097745e-06,-8.75836543445101e-22,-1.3112681047133414e-23,1.2264521274119033e-06,1.779800963762252e-22,-4.235164736271502e-22,-2.2938427982256922e-23,-4.891593155782512e-24,4.848093158216216e-05,-8.080155566858593e-06,-3.1763735522036263e-22,-6.464123998739524e-06,-3.5541784930238916e-24,1.779800963762252e-22,1.0773539997899206e-06,6.617444900424222e-24,-9.26442286059391e-23,-6.88214269644119e-22,3.535068026394583e-05,3.8116482626443515e-21,-1.631569830351509e-05,-2.3952048612238608e-20,-2.90733645322809e-23,-4.235164736271502e-22,6.617444900424222e-24,1.1654069567157421e-06,8.470329472543003e-22,1.2043749718772083e-21,4.242081558913924e-05,8.001972781911447e-22,-6.06011644777027e-06,-5.6561084420536645e-06,-4.173554999340885e-24,-2.2938427982256922e-23,-9.26442286059391e-23,8.470329472543003e-22,8.080154998424405e-07,-4.764560328305439e-22,3.142282730550505e-05,4.658681209898652e-21,-1.3552527156068805e-20,-1.3466925338434521e-05,5.911262928957613e-23,-4.891593155782512e-24,-6.88214269644119e-22,1.2043749718772083e-21,-4.764560328305439e-22,8.977950187727401e-07,13.0,16.0,3.0,0.04715892672538757,-0.006282320711761713,-0.005225167144089937,-0.019755979999899864,0.00022893772984389216,0.00024240465427283198,0.001030219835229218,0.00015711413288954645,0.0008484162972308695,0.0024038462433964014,-0.006282320711761713,0.002087679458782077,0.00024240465427283198,0.001030219835229218,-0.00012487512140069157,-4.0400776924798265e-05,-0.00017170330102089792,-1.261129336200506e-20,0.0,-0.0,-0.005225167144089937,0.00024240465427283198,0.0013924801023676991,0.0008484162972308695,1.416453902736861e-21,-3.2320622267434373e-05,-9.365094133874595e-21,-6.733462942065671e-05,-0.0001131221724790521,-0.0,-0.019755979999899864,0.001030219835229218,0.0008484162972308695,0.04379444196820259,4.1507919098943094e-21,-8.568137117628863e-21,-0.001030219835229218,-2.966341923652301e-22,-0.0008484162972308695,-0.014423076994717121,0.00022893772984389216,-0.00012487512140069157,1.416453902736861e-21,4.1507919098943094e-21,1.0406260116724297e-05,3.8773237981468085e-22,-6.917986011619536e-22,-1.8042932647120644e-22,0.0,-0.0,0.00024240465427283198,-4.0400776924798265e-05,-3.2320622267434373e-05,-8.568137117628863e-21,3.8773237981468085e-22,5.386770226323279e-06,1.4280228192800786e-21,1.6518143529636695e-21,0.0,-0.0,0.001030219835229218,-0.00017170330102089792,-9.365094133874595e-21,-0.001030219835229218,-6.917986011619536e-22,1.4280228192800786e-21,0.00017170330102089792,4.94390299572426e-23,0.0,-0.0,0.00015711413288954645,-1.261129336200506e-20,-6.733462942065671e-05,-2.966341923652301e-22,-1.8042932647120644e-22,1.6518143529636695e-21,4.94390299572426e-23,4.488975264393957e-06,0.0,-0.0,0.0008484162972308695,0.0,-0.0001131221724790521,-0.0008484162972308695,0.0,0.0,0.0,0.0,0.0001131221724790521,-0.0,0.0024038462433964014,-0.0,-0.0,-0.014423076994717121,-0.0,-0.0,-0.0,-0.0,-0.0,0.0072115384973585606,13.0,16.0,4.0,0.03821239992976189,-0.004866273608058691,-0.004046137910336256,-0.012574741616845131,0.00017170330102089792,0.0001818034943426028,0.0006181318894959986,0.00011783559602918103,0.0005090498016215861,0.0012019231216982007,-0.004866273608058691,0.001591515145264566,0.0001818034943426028,0.0006181318894959986,-9.365634468849748e-05,-3.0300581784103997e-05,-0.00010302197915734723,3.574223596931408e-21,2.168675513193497e-21,-0.0,-0.004046137910336256,0.0001818034943426028,0.0010613283375278115,0.0005090498016215861,5.500111401946808e-22,-2.424046579108108e-05,-5.354073533178656e-21,-5.050097024650313e-05,-6.787330494262278e-05,-0.0,-0.012574741616845131,0.0006181318894959986,0.0005090498016215861,0.016796622425317764,2.9067278186407195e-21,-3.954069134742306e-21,-0.00041208791662938893,4.054874905651887e-21,-0.0003393665247131139,-0.0036057692486792803,0.00017170330102089792,-9.365634468849748e-05,5.500111401946808e-22,2.9067278186407195e-21,7.804695087543223e-06,1.9577190114951162e-22,-5.534389112218217e-22,-1.3918398016632826e-22,5.518740888649018e-23,-0.0,0.0001818034943426028,-3.0300581784103997e-05,-2.424046579108108e-05,-3.954069134742306e-21,1.9577190114951162e-22,4.040077783429297e-06,1.0950998893149784e-21,-4.269019364662222e-22,-3.4887066824279297e-22,-0.0,0.0006181318894959986,-0.00010302197915734723,-5.354073533178656e-21,-0.00041208791662938893,-5.534389112218217e-22,1.0950998893149784e-21,6.868132186355069e-05,-5.902871342192234e-23,-1.7665525181756083e-22,-0.0,0.00011783559602918103,3.574223596931408e-21,-5.050097024650313e-05,4.054874905651887e-21,-1.3918398016632826e-22,-4.269019364662222e-22,-5.902871342192234e-23,3.3667313346086303e-06,-4.934269678785191e-22,-0.0,0.0005090498016215861,2.168675513193497e-21,-6.787330494262278e-05,-0.0003393665247131139,5.518740888649018e-23,-3.4887066824279297e-22,-1.7665525181756083e-22,-4.934269678785191e-22,4.5248867536429316e-05,-0.0,0.0012019231216982007,-0.0,-0.0,-0.0036057692486792803,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012019231216982007,13.0,16.0,5.0,0.0321778729557991,-0.003975436557084322,-0.0033047834876924753,-0.008726567961275578,0.00013736264372710139,0.00014544279838446528,0.00041208791662938893,9.426847827853635e-05,0.0003393665247131139,0.0006868132040835917,-0.003975436557084322,0.0012869483325630426,0.00014544279838446528,0.00041208791662938893,-7.492507575079799e-05,-2.424046579108108e-05,-6.868132186355069e-05,8.470329472543003e-22,0.0,-0.0,-0.0033047834876924753,0.00014544279838446528,0.000858112471178174,0.0003393665247131139,1.3401903140298511e-21,-1.939237154147122e-05,-4.340594721455067e-21,-4.0400776924798265e-05,-4.5248867536429316e-05,-0.0,-0.008726567961275578,0.00041208791662938893,0.0003393665247131139,0.00848416332155466,6.397193118150989e-21,-4.85459861486441e-21,-0.00020604395831469446,3.3881317890172014e-21,-0.00016968326235655695,-0.0013736264081671834,0.00013736264372710139,-7.492507575079799e-05,1.3401903140298511e-21,6.397193118150989e-21,6.243756160984049e-06,-5.061132143861172e-22,-6.694284243996072e-22,5.467259825974295e-23,-9.154088987857354e-23,-0.0,0.00014544279838446528,-2.424046579108108e-05,-1.939237154147122e-05,-4.85459861486441e-21,-5.061132143861172e-22,3.232061999369762e-06,5.328658731975391e-22,-1.0587911840678754e-22,-2.117582368135751e-22,-0.0,0.00041208791662938893,-6.868132186355069e-05,-4.340594721455067e-21,-0.00020604395831469446,-6.694284243996072e-22,5.328658731975391e-22,3.4340660931775346e-05,1.605303543132171e-23,6.090303194437027e-24,-0.0,9.426847827853635e-05,8.470329472543003e-22,-4.0400776924798265e-05,3.3881317890172014e-21,5.467259825974295e-23,-1.0587911840678754e-22,1.605303543132171e-23,2.6933851131616393e-06,-4.235164736271502e-22,-0.0,0.0003393665247131139,0.0,-4.5248867536429316e-05,-0.00016968326235655695,-9.154088987857354e-23,-2.117582368135751e-22,6.090303194437027e-24,-4.235164736271502e-22,2.2624433768214658e-05,-0.0,0.0006868132040835917,-0.0,-0.0,-0.0013736264081671834,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034340660204179585,13.0,16.0,6.0,0.027812888845801353,-0.0033619217574596405,-0.002794387051835656,-0.006417230237275362,0.00011446886492194608,0.00012120232713641599,0.000294348516035825,7.855706644477323e-05,0.00024240465427283198,0.0004292582452762872,-0.0033619217574596405,0.0010806332575157285,0.00012120232713641599,0.000294348516035825,-6.243756070034578e-05,-2.0200388462399133e-05,-4.9058086005970836e-05,-5.082197683525802e-21,0.0,-0.0,-0.002794387051835656,0.00012120232713641599,0.0007204805151559412,0.00024240465427283198,7.57587328737979e-22,-1.6160311133717187e-05,-2.075638091068847e-21,-3.3667314710328355e-05,-3.2320622267434373e-05,-0.0,-0.006417230237275362,0.000294348516035825,0.00024240465427283198,0.004927812609821558,-2.4974099325397847e-21,-1.3834235267070138e-21,-0.00011773940059356391,3.3881317890172014e-21,-9.696186316432431e-05,-0.000643887382466346,0.00011446886492194608,-6.243756070034578e-05,7.57587328737979e-22,-2.4974099325397847e-21,5.203130058362149e-06,1.9160621069896534e-22,5.57766311847051e-22,-1.1072768472221658e-22,-2.873514594119373e-25,-0.0,0.00012120232713641599,-2.0200388462399133e-05,-1.6160311133717187e-05,-1.3834235267070138e-21,1.9160621069896534e-22,2.6933851131616393e-06,1.558013540674706e-22,7.411538288475128e-22,0.0,-0.0,0.000294348516035825,-4.9058086005970836e-05,-2.075638091068847e-21,-0.00011773940059356391,5.57766311847051e-22,1.558013540674706e-22,1.9623234038590454e-05,5.106510263028743e-23,3.98197831412788e-23,-0.0,7.855706644477323e-05,-5.082197683525802e-21,-3.3667314710328355e-05,3.3881317890172014e-21,-1.1072768472221658e-22,7.411538288475128e-22,5.106510263028743e-23,2.2444876321969787e-06,-4.235164736271502e-22,-0.0,0.00024240465427283198,0.0,-3.2320622267434373e-05,-9.696186316432431e-05,-2.873514594119373e-25,0.0,3.98197831412788e-23,-4.235164736271502e-22,1.2928247997479048e-05,-0.0,0.0004292582452762872,-0.0,-0.0,-0.000643887382466346,-0.0,-0.0,-0.0,-0.0,-0.0,0.00012877747940365225,13.0,16.0,7.0,0.024501627311110497,-0.0029131844639778137,-0.0024211606942117214,-0.004920237231999636,9.811617201194167e-05,0.00010388770897407085,0.00022076138702686876,6.733462942065671e-05,0.0001818034943426028,0.0002861721732188016,-0.0029131844639778137,0.000931513321120292,0.00010388770897407085,0.00022076138702686876,-5.3517909691436216e-05,-1.731461816234514e-05,-3.679356450447813e-05,-2.710505431213761e-20,-5.251604272976662e-20,1.5436045845185606e-19,-0.0024211606942117214,0.00010388770897407085,0.0006210176507011056,0.0001818034943426028,-8.76690021777226e-20,-1.3851694347977173e-05,6.945831079963798e-20,-2.8857697543571703e-05,-2.424046579108108e-05,4.770151552258415e-19,-0.004920237231999636,0.00022076138702686876,0.0001818034943426028,0.0031281744595617056,-1.2553594121546506e-19,5.591908961920392e-20,-7.358712900895625e-05,1.8126505071242027e-19,-6.0601163568207994e-05,-0.00034340660204179585,9.811617201194167e-05,-5.3517909691436216e-05,-8.76690021777226e-20,-1.2553594121546506e-19,4.459825959202135e-06,2.8173212266511012e-21,7.8920235956176e-21,3.2205859116581238e-21,5.184741018397885e-21,4.6213078327303136e-21,0.00010388770897407085,-1.731461816234514e-05,-1.3851694347977173e-05,5.591908961920392e-20,2.8173212266511012e-21,2.308615648871637e-06,2.1367808444316784e-22,-4.235164736271502e-22,3.1763735522036263e-22,-1.1533852647857095e-20,0.00022076138702686876,-3.679356450447813e-05,6.945831079963798e-20,-7.358712900895625e-05,7.8920235956176e-21,2.1367808444316784e-22,1.2264521501492709e-05,-3.93117424557113e-21,-7.810923544876891e-21,-4.715579926932363e-20,6.733462942065671e-05,-2.710505431213761e-20,-2.8857697543571703e-05,1.8126505071242027e-19,3.2205859116581238e-21,-4.235164736271502e-22,-3.93117424557113e-21,1.92384641195531e-06,-3.5998900258307764e-21,-2.2426935973431097e-20,0.0001818034943426028,-5.251604272976662e-20,-2.424046579108108e-05,-6.0601163568207994e-05,5.184741018397885e-21,3.1763735522036263e-22,-7.810923544876891e-21,-3.5998900258307764e-21,8.080155566858593e-06,-2.7789685209518756e-20,0.0002861721732188016,1.5436045845185606e-19,4.770151552258415e-19,-0.00034340660204179585,4.6213078327303136e-21,-1.1533852647857095e-20,-4.715579926932363e-20,-2.2426935973431097e-20,-2.7789685209518756e-20,5.723443246097304e-05,13.0,16.0,8.0,0.021900586783885956,-0.0025704994332045317,-0.0021361911203712225,-0.003893624758347869,8.585165051044896e-05,9.09017471713014e-05,0.00017170330102089792,5.891779801459052e-05,0.00014140272105578333,0.00020032051543239504,-0.0025704994332045317,0.0008186513441614807,9.09017471713014e-05,0.00017170330102089792,-4.682817234424874e-05,-1.5150290892051999e-05,-2.861721623048652e-05,8.470329472543003e-22,8.470329472543003e-22,-0.0,-0.0021361911203712225,9.09017471713014e-05,0.0005457471706904471,0.00014140272105578333,-8.662555058959425e-22,-1.212023289554054e-05,-1.6836374815077155e-21,-2.5250485123251565e-05,-1.885369601950515e-05,-0.0,-0.003893624758347869,0.00017170330102089792,0.00014140272105578333,0.002114066854119301,7.934776978915997e-23,-6.248245375006304e-22,-4.9058086005970836e-05,3.3881317890172014e-21,-4.0400776924798265e-05,-0.00020032051543239504,8.585165051044896e-05,-4.682817234424874e-05,-8.662555058959425e-22,7.934776978915997e-23,3.9023475437716115e-06,1.4253874053896907e-23,-5.472465045771305e-23,2.61971334956344e-23,6.33806823311839e-23,-0.0,9.09017471713014e-05,-1.5150290892051999e-05,-1.212023289554054e-05,-6.248245375006304e-22,1.4253874053896907e-23,2.0200388917146483e-06,3.0895554337250916e-22,-1.0587911840678754e-22,-1.5881867761018131e-22,-0.0,0.00017170330102089792,-2.861721623048652e-05,-1.6836374815077155e-21,-4.9058086005970836e-05,-5.472465045771305e-23,3.0895554337250916e-22,8.176347364496905e-06,-1.3675485971354293e-23,-1.9494718809387012e-23,-0.0,5.891779801459052e-05,8.470329472543003e-22,-2.5250485123251565e-05,3.3881317890172014e-21,2.61971334956344e-23,-1.0587911840678754e-22,-1.3675485971354293e-23,1.6833656673043151e-06,-3.1763735522036263e-22,-0.0,0.00014140272105578333,8.470329472543003e-22,-1.885369601950515e-05,-4.0400776924798265e-05,6.33806823311839e-23,-1.5881867761018131e-22,-1.9494718809387012e-23,-3.1763735522036263e-22,5.386770226323279e-06,-0.0,0.00020032051543239504,-0.0,-0.0,-0.00020032051543239504,-0.0,-0.0,-0.0,-0.0,-0.0,2.861721623048652e-05,13.0,16.0,9.0,0.01980195753276348,-0.002300150925293565,-0.0019114055903628469,-0.0031586061231791973,7.631257903994992e-05,8.080155384959653e-05,0.00013736264372710139,5.237137520452961e-05,0.0001131221724790521,0.00014568764891009778,-0.002300150925293565,0.0007302337908186018,8.080155384959653e-05,0.00013736264372710139,-4.162504046689719e-05,-1.3466925338434521e-05,-2.2893773348187096e-05,-7.538593230563273e-20,-1.8931186371133613e-19,-4.890962831685433e-19,-0.0019114055903628469,8.080155384959653e-05,0.00048678446910344064,0.0001131221724790521,-9.213929946546083e-20,-1.0773540452646557e-05,-1.8425987104486558e-19,-2.2444875867222436e-05,-1.508295645180624e-05,-4.346762257650445e-19,-0.0031586061231791973,0.00013736264372710139,0.0001131221724790521,0.0014972771750763059,-3.544607477542326e-19,-2.0175213021155375e-19,-3.4340660931775346e-05,-2.56650983018053e-19,-2.8280543119763024e-05,-0.00012487512140069157,7.631257903994992e-05,-4.162504046689719e-05,-9.213929946546083e-20,-3.544607477542326e-19,3.4687534480326576e-06,2.171179269354247e-21,9.206395817505888e-21,2.484180697293905e-21,8.724492832653425e-21,2.6407474483878316e-20,8.080155384959653e-05,-1.3466925338434521e-05,-1.0773540452646557e-05,-2.0175213021155375e-19,2.171179269354247e-21,1.7955900375454803e-06,6.501868220246243e-21,2.117582368135751e-21,4.711620769102046e-21,1.4322171864022515e-20,0.00013736264372710139,-2.2893773348187096e-05,-1.8425987104486558e-19,-3.4340660931775346e-05,9.206395817505888e-21,6.501868220246243e-21,5.723443337046774e-06,6.39430687173629e-21,1.053702003816757e-20,1.388692461221617e-20,5.237137520452961e-05,-7.538593230563273e-20,-2.2444875867222436e-05,-2.56650983018053e-19,2.484180697293905e-21,2.117582368135751e-21,6.39430687173629e-21,1.496325012340094e-06,6.776263578034403e-21,1.9520819452572164e-20,0.0001131221724790521,-1.8931186371133613e-19,-1.508295645180624e-05,-2.8280543119763024e-05,8.724492832653425e-21,4.711620769102046e-21,1.053702003816757e-20,6.776263578034403e-21,3.77073911295156e-06,1.2460411256190127e-20,0.00014568764891009778,-4.890962831685433e-19,-4.346762257650445e-19,-0.00012487512140069157,2.6407474483878316e-20,1.4322171864022515e-20,1.388692461221617e-20,1.9520819452572164e-20,1.2460411256190127e-20,1.5609390175086446e-05,13.0,16.0,10.0,0.01807224564254284,-0.00208137440495193,-0.0017295205034315586,-0.002614113735035062,6.868132186355069e-05,7.272139919223264e-05,0.00011238761362619698,4.7134239139268175e-05,9.2554502771236e-05,0.00010926573304459453,-0.00208137440495193,0.0006590835400857031,7.272139919223264e-05,0.00011238761362619698,-3.7462537875398993e-05,-1.212023289554054e-05,-1.8731268937699497e-05,-4.235164736271502e-22,0.0,-0.0,-0.0017295205034315586,7.272139919223264e-05,0.00043934007408097386,9.2554502771236e-05,5.245477704032032e-22,-9.69618577073561e-06,-9.17689640813136e-22,-2.0200388462399133e-05,-1.2340600733296014e-05,-0.0,-0.002614113735035062,0.00011238761362619698,9.2554502771236e-05,0.001099926419556141,-3.0462549217463827e-22,-1.404281261476547e-21,-2.4975024643936194e-05,8.470329472543003e-22,-2.056766788882669e-05,-8.19492997834459e-05,6.868132186355069e-05,-3.7462537875398993e-05,5.245477704032032e-22,-3.0462549217463827e-22,3.1218780804920243e-06,-1.2615517238835976e-23,5.776634664695147e-23,-2.6282327317954648e-23,-5.59634728901067e-24,-0.0,7.272139919223264e-05,-1.212023289554054e-05,-9.69618577073561e-06,-1.404281261476547e-21,-1.2615517238835976e-23,1.616030999684881e-06,1.5294826505433967e-22,5.293955920339377e-23,5.293955920339377e-23,-0.0,0.00011238761362619698,-1.8731268937699497e-05,-9.17689640813136e-22,-2.4975024643936194e-05,5.776634664695147e-23,1.5294826505433967e-22,4.162503955740249e-06,1.7632415262334313e-38,5.877471754111438e-39,-0.0,4.7134239139268175e-05,-4.235164736271502e-22,-2.0200388462399133e-05,8.470329472543003e-22,-2.6282327317954648e-23,5.293955920339377e-23,1.7632415262334313e-38,1.3466925565808197e-06,0.0,-0.0,9.2554502771236e-05,0.0,-1.2340600733296014e-05,-2.056766788882669e-05,-5.59634728901067e-24,5.293955920339377e-23,5.877471754111438e-39,0.0,2.7423557185102254e-06,-0.0,0.00010926573304459453,-0.0,-0.0,-8.19492997834459e-05,-0.0,-0.0,-0.0,-0.0,-0.0,9.105478056881111e-06,13.0,16.0,11.0,0.016621623188257217,-0.0019006729125976562,-0.0015793030615895987,-0.0021994407288730145,6.243756070034578e-05,6.611036224057898e-05,9.365634468849748e-05,4.284930764697492e-05,7.712875230936334e-05,8.405056723859161e-05,-0.0019006729125976562,0.0006005858886055648,6.611036224057898e-05,9.365634468849748e-05,-3.40568512910977e-05,-1.1018393706763163e-05,-1.5609390175086446e-05,4.235164736271502e-22,4.235164736271502e-22,-0.0,-0.0015793030615895987,6.611036224057898e-05,0.0004003349458798766,7.712875230936334e-05,5.636329631140966e-22,-8.81471441971371e-06,-8.008927379651875e-22,-1.836398951127194e-05,-1.0283833944413345e-05,-0.0,-0.0021994407288730145,9.365634468849748e-05,7.712875230936334e-05,0.0008321241475641727,-2.945447333301276e-22,-2.7490234922561406e-22,-1.8731268937699497e-05,4.235164736271502e-22,-1.5425750461872667e-05,-5.6033710279734805e-05,6.243756070034578e-05,-3.40568512910977e-05,5.636329631140966e-22,-2.945447333301276e-22,2.8380709409248084e-06,-1.0443738990551838e-23,8.664952312587083e-23,-2.1757790352510568e-23,-3.004698928327916e-23,-0.0,6.611036224057898e-05,-1.1018393706763163e-05,-8.81471441971371e-06,-2.7490234922561406e-22,-1.0443738990551838e-23,1.469119069952285e-06,1.3348211878693976e-22,0.0,-2.6469779601696886e-23,-0.0,9.365634468849748e-05,-1.5609390175086446e-05,-8.008927379651875e-22,-1.8731268937699497e-05,8.664952312587083e-23,1.3348211878693976e-22,3.1218780804920243e-06,0.0,0.0,-0.0,4.284930764697492e-05,4.235164736271502e-22,-1.836398951127194e-05,4.235164736271502e-22,-2.1757790352510568e-23,0.0,0.0,1.2242659295225167e-06,0.0,-0.0,7.712875230936334e-05,4.235164736271502e-22,-1.0283833944413345e-05,-1.5425750461872667e-05,-3.004698928327916e-23,-2.6469779601696886e-23,0.0,0.0,2.056766788882669e-06,-0.0,8.405056723859161e-05,-0.0,-0.0,-5.6033710279734805e-05,-0.0,-0.0,-0.0,-0.0,-0.0,5.60337093702401e-06,13.0,16.0,12.0,0.015387343242764473,-0.0017488874727860093,-0.0014531330671161413,-0.0018763052066788077,5.723443246097304e-05,6.0601163568207994e-05,7.924767851363868e-05,3.9278533222386613e-05,6.526279321406037e-05,6.603972724406049e-05,-0.0017488874727860093,0.0005516377277672291,6.0601163568207994e-05,7.924767851363868e-05,-3.121878035017289e-05,-1.0100194231199566e-05,-1.3207945812609978e-05,-2.117582368135751e-21,4.446922973085077e-21,1.3825836031509422e-20,-0.0014531330671161413,6.0601163568207994e-05,0.00036769884172827005,6.526279321406037e-05,6.542001398892505e-23,-8.080155566858593e-06,3.557977252712983e-21,-1.6833657355164178e-05,-8.701705155544914e-06,9.10878608184393e-21,-0.0018763052066788077,7.924767851363868e-05,6.526279321406037e-05,0.0006449291831813753,-5.110129872406259e-22,-2.122248133291335e-22,-1.4408667993848212e-05,4.235164736271502e-22,-1.1865961823787075e-05,-3.962383925681934e-05,5.723443246097304e-05,-3.121878035017289e-05,6.542001398892505e-23,-5.110129872406259e-22,2.6015650291810744e-06,-6.3132411133461245e-27,9.998021850593655e-23,-1.31525854281126e-26,-1.184911125928208e-23,-1.5130829575248135e-37,6.0601163568207994e-05,-1.0100194231199566e-05,-8.080155566858593e-06,-2.122248133291335e-22,-6.3132411133461245e-27,1.3466925565808197e-06,9.70633201119041e-23,2.6469779601696886e-22,-5.293955920339377e-23,-1.306032029006773e-37,7.924767851363868e-05,-1.3207945812609978e-05,3.557977252712983e-21,-1.4408667993848212e-05,9.998021850593655e-23,9.70633201119041e-23,2.401444817223819e-06,4.70197740328915e-38,-7.5279226612458565e-22,-2.5137883510064048e-21,3.9278533222386613e-05,-2.117582368135751e-21,-1.6833657355164178e-05,4.235164736271502e-22,-1.31525854281126e-26,2.6469779601696886e-22,4.70197740328915e-38,1.1222438160984893e-06,-5.293955920339377e-23,-1.0433893203054547e-38,6.526279321406037e-05,4.446922973085077e-21,-8.701705155544914e-06,-1.1865961823787075e-05,-1.184911125928208e-23,-5.293955920339377e-23,-7.5279226612458565e-22,-5.293955920339377e-23,1.5821283341210801e-06,-1.6561429147921513e-21,6.603972724406049e-05,1.3825836031509422e-20,9.10878608184393e-21,-3.962383925681934e-05,-1.5130829575248135e-37,-1.306032029006773e-37,-2.5137883510064048e-21,-1.0433893203054547e-38,-1.6561429147921513e-21,3.602166998462053e-06,13.0,16.0,13.0,0.014324220828711987,-0.001619582762941718,-0.0013456565793603659,-0.001619582762941718,5.283178325043991e-05,5.593953392235562e-05,6.792657950427383e-05,3.625710814958438e-05,5.593953392235562e-05,5.283178325043991e-05,-0.001619582762941718,0.0005100749549455941,5.593953392235562e-05,6.792657950427383e-05,-2.8817335987696424e-05,-9.323255653725937e-06,-1.1321096280880738e-05,4.658681209898652e-21,-9.066235757653425e-23,0.0,-0.0013456565793603659,5.593953392235562e-05,0.0003399880661163479,5.593953392235562e-05,5.911322756168665e-22,-7.45860461393022e-06,2.117582368135751e-22,-1.5538760635536164e-05,-7.45860461393022e-06,1.6940658945086007e-21,-0.001619582762941718,6.792657950427383e-05,5.593953392235562e-05,0.0005100749549455941,-3.6240504750858676e-22,-4.955019371165145e-22,-1.1321096280880738e-05,7.997113398735285e-23,-9.323255653725937e-06,-2.8817335987696424e-05,5.283178325043991e-05,-2.8817335987696424e-05,5.911322756168665e-22,-3.6240504750858676e-22,2.401444817223819e-06,-1.3397792733220203e-22,6.837380109660745e-24,8.404126498328428e-24,1.2876797436976038e-23,1.7404240565994952e-23,5.593953392235562e-05,-9.323255653725937e-06,-7.45860461393022e-06,-4.955019371165145e-22,-1.3397792733220203e-22,1.24310076898837e-06,5.401104057196288e-23,-5.823351512373315e-22,3.5526666410990355e-23,-1.258467356630274e-23,6.792657950427383e-05,-1.1321096280880738e-05,2.117582368135751e-22,-1.1321096280880738e-05,6.837380109660745e-24,5.401104057196288e-23,1.8868494180424022e-06,-1.3234889800848443e-23,-7.940933880509066e-23,1.0587911840678754e-22,3.625710814958438e-05,4.658681209898652e-21,-1.5538760635536164e-05,7.997113398735285e-23,8.404126498328428e-24,-5.823351512373315e-22,-1.3234889800848443e-23,1.0359173074903083e-06,5.293955920339377e-23,0.0,5.593953392235562e-05,-9.066235757653425e-23,-7.45860461393022e-06,-9.323255653725937e-06,1.2876797436976038e-23,3.5526666410990355e-23,-7.940933880509066e-23,5.293955920339377e-23,1.24310076898837e-06,-1.0587911840678754e-22,5.283178325043991e-05,0.0,1.6940658945086007e-21,-2.8817335987696424e-05,1.7404240565994952e-23,-1.258467356630274e-23,1.0587911840678754e-22,0.0,-1.0587911840678754e-22,2.401444817223819e-06,13.0,16.0,14.0,0.013398868963122368,-0.0015081032179296017,-0.0012530011590570211,-0.0014122235588729382,4.9058086005970836e-05,5.1943854487035424e-05,5.886970029678196e-05,3.3667314710328355e-05,4.848093158216216e-05,4.292582525522448e-05,-0.0015081032179296017,0.0004743418248835951,5.1943854487035424e-05,5.886970029678196e-05,-2.6758954845718108e-05,-8.65730908117257e-06,-9.811617019295227e-06,-1.3129010682441655e-20,-2.3479043473526058e-20,4.235164736271502e-22,-0.0012530011590570211,5.1943854487035424e-05,0.00031616492196917534,4.848093158216216e-05,-4.73180494540062e-20,-6.925847173988586e-06,1.1858461261560205e-20,-1.4428848771785852e-05,-6.464123998739524e-06,4.1504614415460717e-20,-0.0014122235588729382,5.886970029678196e-05,4.848093158216216e-05,0.0004104313557036221,-3.8289964372880906e-20,1.136387187873885e-20,-9.056877388502471e-06,4.331699621813281e-20,-7.45860461393022e-06,-2.146291262761224e-05,4.9058086005970836e-05,-2.6758954845718108e-05,-4.73180494540062e-20,-3.8289964372880906e-20,2.2299129796010675e-06,1.496416479161114e-21,1.1597531620584649e-21,1.6232622834947767e-21,1.5763643133527703e-21,1.238136401085142e-21,5.1943854487035424e-05,-8.65730908117257e-06,-6.925847173988586e-06,1.136387187873885e-20,1.496416479161114e-21,1.1543078244358185e-06,-1.68045396706038e-22,-3.705769144237564e-22,2.9641472495051037e-22,-1.1749721948081252e-21,5.886970029678196e-05,-9.811617019295227e-06,1.1858461261560205e-20,-9.056877388502471e-06,1.1597531620584649e-21,-1.68045396706038e-22,1.5094794889591867e-06,-8.933550615572699e-22,-1.0587911840678754e-22,-1.4293680984916318e-21,3.3667314710328355e-05,-1.3129010682441655e-20,-1.4428848771785852e-05,4.331699621813281e-20,1.6232622834947767e-21,-3.705769144237564e-22,-8.933550615572699e-22,9.61923205977655e-07,-7.940933880509066e-22,-2.541098841762901e-21,4.848093158216216e-05,-2.3479043473526058e-20,-6.464123998739524e-06,-7.45860461393022e-06,1.5763643133527703e-21,2.9641472495051037e-22,-1.0587911840678754e-22,-7.940933880509066e-22,9.94480615190696e-07,3.705769144237564e-22,4.292582525522448e-05,4.235164736271502e-22,4.1504614415460717e-20,-2.146291262761224e-05,1.238136401085142e-21,-1.1749721948081252e-21,-1.4293680984916318e-21,-2.541098841762901e-21,3.705769144237564e-22,1.6509932265762473e-06,13.0,16.0,15.0,0.012586075812578201,-0.0014109971234574914,-0.001172295887954533,-0.0012423238949850202,4.578754669637419e-05,4.848093158216216e-05,5.1510989578673616e-05,3.142282730550505e-05,4.242081558913924e-05,3.535068026394583e-05,-0.0014109971234574914,0.00044329138472676277,4.848093158216216e-05,5.1510989578673616e-05,-2.4975024643936194e-05,-8.080155566858593e-06,-8.585165232943837e-06,4.658681209898652e-21,-4.320528321458554e-22,3.3881317890172014e-21,-0.001172295887954533,4.848093158216216e-05,0.00029546432779170573,4.242081558913924e-05,-1.4237303557266197e-22,-6.464123998739524e-06,-3.1763735522036263e-22,-1.3466925338434521e-05,-5.6561084420536645e-06,4.235164736271502e-22,-0.0012423238949850202,5.1510989578673616e-05,4.242081558913924e-05,0.0003351932391524315,-2.2777529387673148e-22,-7.507096228477042e-22,-7.358712537097745e-06,-3.8234896580551196e-22,-6.06011644777027e-06,-1.631569830351509e-05,4.578754669637419e-05,-2.4975024643936194e-05,-1.4237303557266197e-22,-2.2777529387673148e-22,2.0812519778701244e-06,1.3895503813770638e-24,4.6036272131684527e-23,2.8948966689553884e-24,1.2481429028749224e-23,-9.437247138798453e-24,4.848093158216216e-05,-8.080155566858593e-06,-6.464123998739524e-06,-7.507096228477042e-22,1.3895503813770638e-24,1.0773539997899206e-06,8.596398406657204e-23,-5.823351512373315e-22,5.327710331840698e-23,-3.833609986162636e-24,5.1510989578673616e-05,-8.585165232943837e-06,-3.1763735522036263e-22,-7.358712537097745e-06,4.6036272131684527e-23,8.596398406657204e-23,1.2264521274119033e-06,0.0,-2.6469779601696886e-23,-5.293955920339377e-22,3.142282730550505e-05,4.658681209898652e-21,-1.3466925338434521e-05,-3.8234896580551196e-22,2.8948966689553884e-24,-5.823351512373315e-22,0.0,8.977950187727401e-07,2.6469779601696886e-23,1.3234889800848443e-23,4.242081558913924e-05,-4.320528321458554e-22,-5.6561084420536645e-06,-6.06011644777027e-06,1.2481429028749224e-23,5.327710331840698e-23,-2.6469779601696886e-23,2.6469779601696886e-23,8.080154998424405e-07,-1.0587911840678754e-22,3.535068026394583e-05,3.3881317890172014e-21,4.235164736271502e-22,-1.631569830351509e-05,-9.437247138798453e-24,-3.833609986162636e-24,-5.293955920339377e-22,1.3234889800848443e-23,-1.0587911840678754e-22,1.1654069567157421e-06,13.0,16.0,16.0,0.011866440996527672,-0.0013256504898890853,-0.0011013667099177837,-0.0011013667099177837,4.292582525522448e-05,4.54508735856507e-05,4.54508735856507e-05,2.945889900729526e-05,3.743013076018542e-05,2.945889900729526e-05,-0.0013256504898890853,0.00041605913429521024,4.54508735856507e-05,4.54508735856507e-05,-2.341408617212437e-05,-7.575145446025999e-06,-7.575145446025999e-06,-2.117582368135751e-22,-5.998150972066787e-22,0.0,-0.0011013667099177837,4.54508735856507e-05,0.0002773097367025912,3.743013076018542e-05,-3.712512453473138e-22,-6.06011644777027e-06,-8.470329472543003e-22,-1.2625242561625782e-05,-4.990683919459116e-06,-1.2705494208814505e-21,-0.0011013667099177837,4.54508735856507e-05,3.743013076018542e-05,0.0002773097367025912,2.271036387693646e-22,-3.847545750478781e-22,-6.06011644777027e-06,-8.611729445033632e-23,-4.990683919459116e-06,-1.2625242561625782e-05,4.292582525522448e-05,-2.341408617212437e-05,-3.712512453473138e-22,2.271036387693646e-22,1.9511737718858058e-06,9.290044905023307e-24,-1.7718467530371638e-23,1.935425896976879e-23,4.693761829110281e-25,-7.711734604345989e-24,4.54508735856507e-05,-7.575145446025999e-06,-6.06011644777027e-06,-3.847545750478781e-22,9.290044905023307e-24,1.0100194458573242e-06,5.142152576448439e-23,-5.293955920339377e-23,2.0159236303283468e-23,-2.733804369576337e-24,4.54508735856507e-05,-7.575145446025999e-06,-8.470329472543003e-22,-6.06011644777027e-06,-1.7718467530371638e-23,5.142152576448439e-23,1.0100194458573242e-06,0.0,7.940933880509066e-23,0.0,2.945889900729526e-05,-2.117582368135751e-22,-1.2625242561625782e-05,-8.611729445033632e-23,1.935425896976879e-23,-5.293955920339377e-23,0.0,8.416828336521576e-07,0.0,0.0,3.743013076018542e-05,-5.998150972066787e-22,-4.990683919459116e-06,-4.990683919459116e-06,4.693761829110281e-25,2.0159236303283468e-23,7.940933880509066e-23,0.0,6.654245225945488e-07,1.5881867761018131e-22,2.945889900729526e-05,0.0,-1.2705494208814505e-21,-1.2625242561625782e-05,-7.711734604345989e-24,-2.733804369576337e-24,0.0,0.0,1.5881867761018131e-22,8.416828336521576e-07,14.0,3.0,3.0,0.16587302088737488,-0.02559523843228817,-0.08452381193637848,-0.08452381193637848,0.0009920635493472219,0.004761904943734407,0.004761904943734407,0.011904762126505375,0.01785714365541935,0.011904762126505375,-0.02559523843228817,0.008402015082538128,0.004761904943734407,0.004761904943734407,-0.0004960317746736109,-0.0007326007471419871,-0.0007326007471419871,2.168404344971009e-18,-3.3610267347050637e-18,1.734723475976807e-18,-0.08452381193637848,0.004761904943734407,0.20357142388820648,0.01785714365541935,8.932378087054405e-19,-0.004761904943734407,-1.951563910473908e-18,-0.0714285746216774,-0.01785714365541935,9.956247773611823e-18,-0.08452381193637848,0.004761904943734407,0.01785714365541935,0.20357142388820648,9.12751826536179e-19,-1.837309795160174e-18,-0.004761904943734407,7.800234594216858e-18,-0.01785714365541935,-0.0714285746216774,0.0009920635493472219,-0.0004960317746736109,8.932378087054405e-19,9.12751826536179e-19,3.815628951997496e-05,-4.3129976659306966e-21,-9.783318524652739e-23,-4.453474243536497e-19,1.0675576829738036e-20,-4.740726669918372e-19,0.004761904943734407,-0.0007326007471419871,-0.004761904943734407,-1.837309795160174e-18,-4.3129976659306966e-21,0.0007326007471419871,-5.6491855647847205e-21,2.156966505050932e-18,1.7163152952274754e-18,8.591856521693821e-20,0.004761904943734407,-0.0007326007471419871,-1.951563910473908e-18,-0.004761904943734407,-9.783318524652739e-23,-5.6491855647847205e-21,0.0007326007471419871,1.7230442285648353e-19,1.6263032587282567e-18,2.168404344971009e-18,0.011904762126505375,2.168404344971009e-18,-0.0714285746216774,7.800234594216858e-18,-4.453474243536497e-19,2.156966505050932e-18,1.7230442285648353e-19,0.0357142873108387,1.452124457528425e-18,-4.6335957170520625e-18,0.01785714365541935,-3.3610267347050637e-18,-0.01785714365541935,-0.01785714365541935,1.0675576829738036e-20,1.7163152952274754e-18,1.6263032587282567e-18,1.452124457528425e-18,0.01785714365541935,-8.673617379884035e-19,0.011904762126505375,1.734723475976807e-18,9.956247773611823e-18,-0.0714285746216774,-4.740726669918372e-19,8.591856521693821e-20,2.168404344971009e-18,-4.6335957170520625e-18,-8.673617379884035e-19,0.0357142873108387,14.0,3.0,4.0,0.13648809492588043,-0.019910713657736778,-0.06607142835855484,-0.05428571254014969,0.0007440476329065859,0.0035714285913854837,0.0028571428265422583,0.008928571827709675,0.010714286006987095,0.0059523810632526875,-0.019910713657736778,0.006411401089280844,0.0035714285913854837,0.0028571428265422583,-0.00037202381645329297,-0.0005494505749084055,-0.00043956044828519225,-1.0914657488419091e-18,-1.5178830414797062e-18,4.553649124439119e-18,-0.06607142835855484,0.0035714285913854837,0.15535713732242584,0.010714286006987095,6.133875114325721e-19,-0.0035714285913854837,-4.4994390158148434e-18,-0.0535714291036129,-0.010714286006987095,-1.2576745200831851e-17,-0.05428571254014969,0.0028571428265422583,0.010714286006987095,0.07785714417695999,1.7321593711742576e-19,-2.601001607362766e-18,-0.0019047618843615055,-9.360405590152113e-18,-0.0071428571827709675,-0.01785714365541935,0.0007440476329065859,-0.00037202381645329297,6.133875114325721e-19,1.7321593711742576e-19,2.861721623048652e-05,4.087378095405106e-21,7.94456733597319e-21,-3.102825563520298e-19,-7.736319770001564e-21,-7.635808924523275e-20,0.0035714285913854837,-0.0005494505749084055,-0.0035714285913854837,-2.601001607362766e-18,4.087378095405106e-21,0.0005494505749084055,6.127713911231908e-20,2.667393811663263e-18,4.941280745334917e-19,5.184597473481038e-19,0.0028571428265422583,-0.00043956044828519225,-4.4994390158148434e-18,-0.0019047618843615055,7.94456733597319e-21,6.127713911231908e-20,0.00029304029885679483,1.492074696175322e-18,7.047314121155779e-19,-2.5478751053409354e-18,0.008928571827709675,-1.0914657488419091e-18,-0.0535714291036129,-9.360405590152113e-18,-3.102825563520298e-19,2.667393811663263e-18,1.492074696175322e-18,0.02678571455180645,-9.063044913287263e-18,2.334671370406924e-18,0.010714286006987095,-1.5178830414797062e-18,-0.010714286006987095,-0.0071428571827709675,-7.736319770001564e-21,4.941280745334917e-19,7.047314121155779e-19,-9.063044913287263e-18,0.0071428571827709675,2.3852447794681098e-18,0.0059523810632526875,4.553649124439119e-18,-1.2576745200831851e-17,-0.01785714365541935,-7.635808924523275e-20,5.184597473481038e-19,-2.5478751053409354e-18,2.334671370406924e-18,2.3852447794681098e-18,0.0059523810632526875,14.0,3.0,5.0,0.11608843505382538,-0.016309523954987526,-0.05428571254014969,-0.03789115697145462,0.0005952381179668009,0.0028571428265422583,0.0019047618843615055,0.0071428571827709675,0.0071428571827709675,0.003401360474526882,-0.016309523954987526,0.00518772890791297,0.0028571428265422583,0.0019047618843615055,-0.00029761905898340046,-0.00043956044828519225,-0.00029304029885679483,-7.941322655396966e-18,-6.931848496437385e-19,-1.2449929520735887e-18,-0.05428571254014969,0.0028571428265422583,0.1257142871618271,0.0071428571827709675,-1.0148825759971825e-18,-0.0028571428265422583,-8.149540559188814e-19,-0.04285714402794838,-0.0071428571827709675,1.0007111936658321e-17,-0.03789115697145462,0.0019047618843615055,0.0071428571827709675,0.03935374319553375,-1.7618285302889447e-19,-7.811464088020149e-19,-0.0009523809421807528,2.2188570683808232e-17,-0.0035714285913854837,-0.006802720949053764,0.0005952381179668009,-0.00029761905898340046,-1.0148825759971825e-18,-1.7618285302889447e-19,2.2893773348187096e-05,-3.3881317890172014e-21,8.470329472543003e-21,4.756037266068846e-19,3.183753231113821e-20,1.970029179610203e-20,0.0028571428265422583,-0.00043956044828519225,-0.0028571428265422583,-7.811464088020149e-19,-3.3881317890172014e-21,0.00043956044828519225,2.0328790734103208e-20,1.05735530192206e-18,-2.7476070666261786e-20,1.4794551770514248e-19,0.0019047618843615055,-0.00029304029885679483,-8.149540559188814e-19,-0.0009523809421807528,8.470329472543003e-21,2.0328790734103208e-20,0.00014652014942839742,1.7514798545910528e-19,1.2390882525178497e-19,4.0341233997753754e-19,0.0071428571827709675,-7.941322655396966e-18,-0.04285714402794838,2.2188570683808232e-17,4.756037266068846e-19,1.05735530192206e-18,1.7514798545910528e-19,0.02142857201397419,1.622902512434898e-18,-6.0244730336900705e-18,0.0071428571827709675,-6.931848496437385e-19,-0.0071428571827709675,-0.0035714285913854837,3.183753231113821e-20,-2.7476070666261786e-20,1.2390882525178497e-19,1.622902512434898e-18,0.0035714285913854837,4.617504675993645e-19,0.003401360474526882,-1.2449929520735887e-18,1.0007111936658321e-17,-0.006802720949053764,1.970029179610203e-20,1.4794551770514248e-19,4.0341233997753754e-19,-6.0244730336900705e-18,4.617504675993645e-19,0.001700680237263441,14.0,3.0,6.0,0.10104875266551971,-0.013818027451634407,-0.046088434755802155,-0.02797619067132473,0.0004960317746736109,0.0023809524718672037,0.0013605442363768816,0.0059523810632526875,0.005102040711790323,0.002125850412994623,-0.013818027451634407,0.004357993137091398,0.0023809524718672037,0.0013605442363768816,-0.00024801588733680546,-0.00036630037357099354,-0.00020931450126226991,-9.9038696632492e-19,-1.7262544906727595e-18,-2.1947163398708613e-18,-0.046088434755802155,0.0023809524718672037,0.10561224818229675,0.005102040711790323,4.170975779231328e-19,-0.0023809524718672037,-3.469160954256824e-18,-0.0357142873108387,-0.005102040711790323,-1.1753636798434422e-17,-0.02797619067132473,0.0013605442363768816,0.005102040711790323,0.022882653400301933,-2.574980159653073e-19,-1.8445066800796918e-18,-0.0005442177061922848,-2.4188771159939033e-17,-0.0020408162381500006,-0.0031887756194919348,0.0004960317746736109,-0.00024801588733680546,4.170975779231328e-19,-2.574980159653073e-19,1.907814475998748e-05,1.6940658945086007e-21,3.3881317890172014e-21,-2.8412428779914156e-19,4.9618370882856545e-20,3.229154137633045e-20,0.0023809524718672037,-0.00036630037357099354,-0.0023809524718672037,-1.8445066800796918e-18,1.6940658945086007e-21,0.00036630037357099354,4.0657581468206416e-20,5.507058842636234e-19,3.370285625795311e-19,2.1475942902167647e-19,0.0013605442363768816,-0.00020931450126226991,-3.469160954256824e-18,-0.0005442177061922848,3.3881317890172014e-21,4.0657581468206416e-20,8.372579759452492e-05,1.2085212146976303e-18,2.69059157495443e-19,5.7948401476222605e-19,0.0059523810632526875,-9.9038696632492e-19,-0.0357142873108387,-2.4188771159939033e-17,-2.8412428779914156e-19,5.507058842636234e-19,1.2085212146976303e-18,0.01785714365541935,-6.364474871132029e-18,4.021791429311917e-18,0.005102040711790323,-1.7262544906727595e-18,-0.005102040711790323,-0.0020408162381500006,4.9618370882856545e-20,3.370285625795311e-19,2.69059157495443e-19,-6.364474871132029e-18,0.0020408162381500006,6.906969488551204e-19,0.002125850412994623,-2.1947163398708613e-18,-1.1753636798434422e-17,-0.0031887756194919348,3.229154137633045e-20,2.1475942902167647e-19,5.7948401476222605e-19,4.021791429311917e-18,6.906969488551204e-19,0.0006377550889737904,14.0,3.0,7.0,0.08948412537574768,-0.011989795602858067,-0.04005102068185806,-0.02151360549032688,0.00042517005931586027,0.0020408162381500006,0.0010204081190750003,0.005102040711790323,0.0038265306502580643,0.0014172336086630821,-0.011989795602858067,0.003757849335670471,0.0020408162381500006,0.0010204081190750003,-0.00021258502965793014,-0.00031397174461744726,-0.00015698587230872363,-7.15573433840433e-18,-1.4094628242311558e-18,-1.1384122811097797e-18,-0.04005102068185806,0.0020408162381500006,0.09107142686843872,0.0038265306502580643,-4.10744908366908e-19,-0.0020408162381500006,-3.2780117156098544e-18,-0.030612245202064514,-0.0038265306502580643,-8.131516293641283e-18,-0.02151360549032688,0.0010204081190750003,0.0038265306502580643,0.01454081665724516,-4.404571325722362e-19,-2.8392544391964147e-18,-0.0003401360590942204,-2.949029909160572e-17,-0.0012755101779475808,-0.001700680237263441,0.00042517005931586027,-0.00021258502965793014,-4.10744908366908e-19,-4.404571325722362e-19,1.635269472899381e-05,1.0587911840678754e-20,-2.329340604949326e-21,1.12781475329448e-19,3.3960042220032334e-20,6.529913681979626e-20,0.0020408162381500006,-0.00031397174461744726,-0.0020408162381500006,-2.8392544391964147e-18,1.0587911840678754e-20,0.00031397174461744726,6.098637220230962e-20,1.3823577699190182e-18,7.047314121155779e-19,2.727446090158847e-19,0.0010204081190750003,-0.00015698587230872363,-3.2780117156098544e-18,-0.0003401360590942204,-2.329340604949326e-21,6.098637220230962e-20,5.232862531556748e-05,1.245415227776297e-18,9.156439601503941e-20,-5.529219011246529e-20,0.005102040711790323,-7.15573433840433e-18,-0.030612245202064514,-2.949029909160572e-17,1.12781475329448e-19,1.3823577699190182e-18,1.245415227776297e-18,0.015306122601032257,7.074419175467916e-18,2.2090619264392153e-18,0.0038265306502580643,-1.4094628242311558e-18,-0.0038265306502580643,-0.0012755101779475808,3.3960042220032334e-20,7.047314121155779e-19,9.156439601503941e-20,7.074419175467916e-18,0.0012755101779475808,4.946672411965114e-19,0.0014172336086630821,-1.1384122811097797e-18,-8.131516293641283e-18,-0.001700680237263441,6.529913681979626e-20,2.727446090158847e-19,-5.529219011246529e-20,2.2090619264392153e-18,4.946672411965114e-19,0.00028344671591185033,14.0,3.0,8.0,0.08030754327774048,-0.01059027761220932,-0.03541666641831398,-0.01706349290907383,0.00037202381645329297,0.0017857142956927419,0.0007936508045531809,0.004464285913854837,0.0029761905316263437,0.0009920635493472219,-0.01059027761220932,0.0033033806830644608,0.0017857142956927419,0.0007936508045531809,-0.00018601190822664648,-0.00027472528745420277,-0.00012210012937430292,-1.734723475976807e-18,-1.463672932855431e-18,-1.1655173354219173e-18,-0.03541666641831398,0.0017857142956927419,0.08005952090024948,0.0029761905316263437,4.0657581468206416e-20,-0.0017857142956927419,-1.5449880957918438e-18,-0.02678571455180645,-0.0029761905316263437,-1.0367683274392636e-17,-0.01706349290907383,0.0007936508045531809,0.0029761905316263437,0.009835600852966309,-2.981555974335137e-19,-2.5478751053409354e-18,-0.00022675737272948027,-3.0357660829594124e-17,-0.0008503401186317205,-0.0009920635493472219,0.00037202381645329297,-0.00018601190822664648,4.0657581468206416e-20,-2.981555974335137e-19,1.430860811524326e-05,1.840407594632121e-21,1.079967007749233e-20,-5.945080833033296e-20,2.783297648235854e-20,2.4053677120896124e-20,0.0017857142956927419,-0.00027472528745420277,-0.0017857142956927419,-2.5478751053409354e-18,1.840407594632121e-21,0.00027472528745420277,5.553462511777722e-20,1.5585406229479126e-18,5.014435047745458e-19,2.0328790734103208e-19,0.0007936508045531809,-0.00012210012937430292,-1.5449880957918438e-18,-0.00022675737272948027,1.079967007749233e-20,5.553462511777722e-20,3.488575021037832e-05,2.596906908234264e-19,1.7249610903874563e-19,1.7398769662893773e-19,0.004464285913854837,-1.734723475976807e-18,-0.02678571455180645,-3.0357660829594124e-17,-5.945080833033296e-20,1.5585406229479126e-18,2.596906908234264e-19,0.013392857275903225,7.074419175467916e-18,2.846030702774449e-18,0.0029761905316263437,-1.463672932855431e-18,-0.0029761905316263437,-0.0008503401186317205,2.783297648235854e-20,5.014435047745458e-19,1.7249610903874563e-19,7.074419175467916e-18,0.0008503401186317205,8.538092108323347e-19,0.0009920635493472219,-1.1655173354219173e-18,-1.0367683274392636e-17,-0.0009920635493472219,2.4053677120896124e-20,2.0328790734103208e-19,1.7398769662893773e-19,2.846030702774449e-18,8.538092108323347e-19,0.00014172335795592517,14.0,3.0,9.0,0.07284511625766754,-0.009484127163887024,-0.0317460335791111,-0.013867244124412537,0.0003306878206785768,0.0015873016091063619,0.0006349206087179482,0.003968254197388887,0.0023809524718672037,0.0007215007208287716,-0.009484127163887024,0.002947191707789898,0.0015873016091063619,0.0006349206087179482,-0.0001653439103392884,-0.00024420025874860585,-9.76800947682932e-05,-7.589415207398531e-19,-4.0657581468206416e-20,5.691636887917232e-35,-0.0317460335791111,0.0015873016091063619,0.0714285746216774,0.0023809524718672037,-7.638620692371101e-20,-0.0015873016091063619,-1.548860315647312e-20,-0.02380952425301075,-0.0023809524718672037,2.3344207346813204e-18,-0.013867244124412537,0.0006349206087179482,0.0023809524718672037,0.0069712428376078606,-1.4277782850212346e-22,0.0,-0.00015873015217948705,9.863950960863156e-18,-0.0005952381179668009,-0.0006184292142279446,0.0003306878206785768,-0.0001653439103392884,-7.638620692371101e-20,-1.4277782850212346e-22,1.2718763173324987e-05,1.657323808012831e-21,-2.4868174869577115e-22,2.3101324048383363e-20,3.5765205579390195e-21,-7.1714621451545745e-37,0.0015873016091063619,-0.00024420025874860585,-0.0015873016091063619,0.0,1.657323808012831e-21,0.00024420025874860585,3.4050008411015454e-22,3.2526065174565133e-19,1.3552527156068805e-20,-4.3798681313320273e-35,0.0006349206087179482,-9.76800947682932e-05,-1.548860315647312e-20,-0.00015873015217948705,-2.4868174869577115e-22,3.4050008411015454e-22,2.44200236920733e-05,1.7896044474649084e-20,-5.4184805298584195e-21,-7.721688152884957e-37,0.003968254197388887,-7.589415207398531e-19,-0.02380952425301075,9.863950960863156e-18,2.3101324048383363e-20,3.2526065174565133e-19,1.7896044474649084e-20,0.011904762126505375,-6.505213034913027e-19,-1.1672103673406602e-18,0.0023809524718672037,-4.0657581468206416e-20,-0.0023809524718672037,-0.0005952381179668009,3.5765205579390195e-21,1.3552527156068805e-20,-5.4184805298584195e-21,-6.505213034913027e-19,0.0005952381179668009,9.465230893446018e-35,0.0007215007208287716,5.691636887917232e-35,2.3344207346813204e-18,-0.0006184292142279446,-7.1714621451545745e-37,-4.3798681313320273e-35,-7.721688152884957e-37,-1.1672103673406602e-18,9.465230893446018e-35,7.730365177849308e-05,14.0,3.0,10.0,0.06665584444999695,-0.008587662130594254,-0.02876623347401619,-0.011493506841361523,0.00029761905898340046,0.0014285714132711291,0.0005194804980419576,0.0035714285913854837,0.0019480519695207477,0.0005411255406215787,-0.008587662130594254,0.002660464495420456,0.0014285714132711291,0.0005194804980419576,-0.00014880952949170023,-0.00021978022414259613,-7.992007886059582e-05,-1.4441623891832652e-17,-3.2517127488046498e-18,-1.3117676240098147e-18,-0.02876623347401619,0.0014285714132711291,0.06448052078485489,0.0019480519695207477,-3.1027883920915215e-18,-0.0014285714132711291,-2.3466330224499e-18,-0.02142857201397419,-0.0019480519695207477,-1.829344666246748e-18,-0.011493506841361523,0.0005194804980419576,0.0019480519695207477,0.00512445904314518,-1.1188096515559214e-18,-2.349256218967459e-18,-0.0001154401179519482,-7.620467567593772e-18,-0.00043290044413879514,-0.000405844155466184,0.00029761905898340046,-0.00014880952949170023,-3.1027883920915215e-18,-1.1188096515559214e-18,1.1446886674093548e-05,7.73320685671198e-20,3.0664784072994084e-20,8.082667659554847e-19,1.7468543640032328e-19,7.394092532368502e-20,0.0014285714132711291,-0.00021978022414259613,-0.0014285714132711291,-2.349256218967459e-18,7.73320685671198e-20,0.00021978022414259613,8.555032767268433e-20,1.1303152168886512e-18,3.376090365743902e-19,1.4973037959657584e-19,0.0005194804980419576,-7.992007886059582e-05,-2.3466330224499e-18,-0.0001154401179519482,3.0664784072994084e-20,8.555032767268433e-20,1.7760017726686783e-05,5.796968586735936e-19,1.1927068138553236e-19,3.8050847783541993e-20,0.0035714285913854837,-1.4441623891832652e-17,-0.02142857201397419,-7.620467567593772e-18,8.082667659554847e-19,1.1303152168886512e-18,5.796968586735936e-19,0.010714286006987095,1.7856100082352286e-32,4.280486479021165e-19,0.0019480519695207477,-3.2517127488046498e-18,-0.0019480519695207477,-0.00043290044413879514,1.7468543640032328e-19,3.376090365743902e-19,1.1927068138553236e-19,1.7856100082352286e-32,0.00043290044413879514,1.617441472152089e-33,0.0005411255406215787,-1.3117676240098147e-18,-1.829344666246748e-18,-0.000405844155466184,7.394092532368502e-20,1.4973037959657584e-19,3.8050847783541993e-20,4.280486479021165e-19,1.617441472152089e-33,4.5093795051798224e-05,14.0,3.0,11.0,0.061438560485839844,-0.007846320047974586,-0.026298701763153076,-0.009681984782218933,0.00027056277031078935,0.0012987012742087245,0.00043290044413879514,0.003246753243729472,0.001623376621864736,0.0004162504046689719,-0.007846320047974586,0.002424658741801977,0.0012987012742087245,0.00043290044413879514,-0.00013528138515539467,-0.00019980019715148956,-6.660006329184398e-05,0.0,0.0,-0.0,-0.026298701763153076,0.0012987012742087245,0.058766234666109085,0.001623376621864736,1.2618003703165683e-20,-0.0012987012742087245,6.776263578034403e-21,-0.019480518996715546,-0.001623376621864736,-6.469830901198954e-19,-0.009681984782218933,0.00043290044413879514,0.001623376621864736,0.0038788989186286926,-7.710812173512296e-22,0.0,-8.658008300699294e-05,-3.2349156056958417e-18,-0.0003246753185521811,-0.0002775002794805914,0.00027056277031078935,-0.00013528138515539467,1.2618003703165683e-20,-7.710812173512296e-22,1.0406260116724297e-05,-6.6969474384120985e-22,5.944008150702885e-24,0.0,0.0,-0.0,0.0012987012742087245,-0.00019980019715148956,-0.0012987012742087245,0.0,-6.6969474384120985e-22,0.00019980019715148956,8.470329472543003e-22,0.0,0.0,-0.0,0.00043290044413879514,-6.660006329184398e-05,6.776263578034403e-21,-8.658008300699294e-05,5.944008150702885e-24,8.470329472543003e-22,1.3320013749762438e-05,0.0,0.0,-0.0,0.003246753243729472,0.0,-0.019480518996715546,-3.2349156056958417e-18,0.0,0.0,0.0,0.009740259498357773,0.0,3.234915450599477e-19,0.001623376621864736,0.0,-0.001623376621864736,-0.0003246753185521811,0.0,0.0,0.0,0.0,0.0003246753185521811,-0.0,0.0004162504046689719,-0.0,-6.469830901198954e-19,-0.0002775002794805914,-0.0,-0.0,-0.0,3.234915450599477e-19,-0.0,2.775002758426126e-05,14.0,3.0,12.0,0.05698041990399361,-0.007222985383123159,-0.02422161214053631,-0.008267922326922417,0.00024801588733680546,0.0011904762359336019,0.00036630037357099354,0.0029761905316263437,0.0013736264081671834,0.0003270538873039186,-0.007222985383123159,0.0022272998467087746,0.0011904762359336019,0.00036630037357099354,-0.00012400794366840273,-0.00018315018678549677,-5.6353903346462175e-05,9.62964972193618e-35,0.0,0.0,-0.02422161214053631,0.0011904762359336019,0.05398351699113846,0.0013736264081671834,1.7684703059316053e-20,-0.0011904762359336019,6.776263578034403e-21,-0.01785714365541935,-0.0013736264081671834,9.893344823930228e-19,-0.008267922326922417,0.00036630037357099354,0.0013736264081671834,0.0030077064875513315,-9.582764207907866e-22,5.217539052803039e-21,-6.660006329184398e-05,6.525947144147281e-18,-0.00024975024280138314,-0.00019623234402388334,0.00024801588733680546,-0.00012400794366840273,1.7684703059316053e-20,-9.582764207907866e-22,9.53907237999374e-06,-1.2579763159603228e-21,1.3439766444265202e-22,-8.359635444482073e-37,2.9048832220305976e-22,-4.6494070203089626e-23,0.0011904762359336019,-0.00018315018678549677,-0.0011904762359336019,5.217539052803039e-21,-1.2579763159603228e-21,0.00018315018678549677,-9.757918087028836e-22,-1.1779228795336764e-36,1.1445633360949594e-22,-3.7937873410339933e-22,0.00036630037357099354,-5.6353903346462175e-05,6.776263578034403e-21,-6.660006329184398e-05,1.3439766444265202e-22,-9.757918087028836e-22,1.0246164492855314e-05,-1.28261658278059e-35,-1.1016133307936583e-22,-8.470329472543003e-22,0.0029761905316263437,9.62964972193618e-35,-0.01785714365541935,6.525947144147281e-18,-8.359635444482073e-37,-1.1779228795336764e-36,-1.28261658278059e-35,0.008928571827709675,-1.0140470201809273e-18,-5.01081820051707e-19,0.0013736264081671834,0.0,-0.0013736264081671834,-0.00024975024280138314,2.9048832220305976e-22,1.1445633360949594e-22,-1.1016133307936583e-22,-1.0140470201809273e-18,0.00024975024280138314,0.0,0.0003270538873039186,0.0,9.893344823930228e-19,-0.00019623234402388334,-4.6494070203089626e-23,-3.7937873410339933e-22,-8.470329472543003e-22,-5.01081820051707e-19,0.0,1.783930383680854e-05,14.0,3.0,13.0,0.053126636892557144,-0.0066915228962898254,-0.022448979318141937,-0.0071428571827709675,0.00022893772984389216,0.001098901149816811,0.00031397174461744726,0.002747252816334367,0.0011773940641433,0.00026164311566390097,-0.0066915228962898254,0.00205968483351171,0.001098901149816811,0.00031397174461744726,-0.00011446886492194608,-0.00016906170640140772,-4.8303343646693975e-05,-9.009417553404531e-19,-6.437450399132683e-20,3.3881317890172014e-20,-0.022448979318141937,0.001098901149816811,0.04992150887846947,0.0011773940641433,8.185959479790191e-21,-0.001098901149816811,0.0,-0.016483517363667488,-0.0011773940641433,-3.9302328752599536e-19,-0.0071428571827709675,0.00031397174461744726,0.0011773940641433,0.0023797631729394197,3.246551830022438e-21,-6.605169669380905e-20,-5.232862531556748e-05,-2.3766727067802227e-18,-0.00019623234402388334,-0.00014271443069446832,0.00022893772984389216,-0.00011446886492194608,8.185959479790191e-21,3.246551830022438e-21,8.805297511571553e-06,3.510543362026406e-23,5.60560713553138e-25,-1.3652651393015373e-36,-2.4660738530295094e-22,-2.5246310611329375e-22,0.001098901149816811,-0.00016906170640140772,-0.001098901149816811,-6.605169669380905e-20,3.510543362026406e-23,0.00016906170640140772,4.63828704766235e-22,9.009417553404531e-19,6.436957321939419e-20,1.099424084009489e-22,0.00031397174461744726,-4.8303343646693975e-05,0.0,-5.232862531556748e-05,5.60560713553138e-25,4.63828704766235e-22,8.050557880778797e-06,-8.082080988570535e-35,1.5262537481950184e-22,-5.082197683525802e-21,0.002747252816334367,-9.009417553404531e-19,-0.016483517363667488,-2.3766727067802227e-18,-1.3652651393015373e-36,9.009417553404531e-19,-8.082080988570535e-35,0.008241758681833744,3.6111186457260672e-34,1.9805605459011954e-19,0.0011773940641433,-6.437450399132683e-20,-0.0011773940641433,-0.00019623234402388334,-2.4660738530295094e-22,6.436957321939419e-20,1.5262537481950184e-22,3.6111186457260672e-34,0.00019623234402388334,0.0,0.00026164311566390097,3.3881317890172014e-20,-3.9302328752599536e-19,-0.00014271443069446832,-2.5246310611329375e-22,1.099424084009489e-22,-5.082197683525802e-21,1.9805605459011954e-19,0.0,1.1892869224539027e-05,14.0,3.0,14.0,0.04976190626621246,-0.006232993211597204,-0.02091836743056774,-0.006232993211597204,0.00021258502965793014,0.0010204081190750003,0.0002721088530961424,0.0025510203558951616,0.0010204081190750003,0.00021258502965793014,-0.006232993211597204,0.0019155546324327588,0.0010204081190750003,0.0002721088530961424,-0.00010629251482896507,-0.00015698587230872363,-4.186289879726246e-05,8.365887580450527e-19,4.404571325722362e-20,-1.8634724839594607e-20,-0.02091836743056774,0.0010204081190750003,0.04642857238650322,0.0010204081190750003,-3.879411641594777e-21,-0.0010204081190750003,-3.3881317890172014e-21,-0.015306122601032257,-0.0010204081190750003,6.301925127571995e-19,-0.006232993211597204,0.0002721088530961424,0.0010204081190750003,0.0019155546324327588,-4.415233231453773e-21,4.984436567349398e-20,-4.186289879726246e-05,5.914510538189415e-18,-0.00015698587230872363,-0.00010629251482896507,0.00021258502965793014,-0.00010629251482896507,-3.879411641594777e-21,-4.415233231453773e-21,8.176347364496905e-06,-5.386385174882313e-22,3.7668857957707636e-22,-1.6306308904150885e-36,4.1653471382803316e-22,1.5162191850451175e-22,0.0010204081190750003,-0.00015698587230872363,-0.0010204081190750003,4.984436567349398e-20,-5.386385174882313e-22,0.00015698587230872363,1.2866173689393245e-22,-8.365887580450527e-19,-5.524916379591546e-20,3.2668020030554316e-22,0.0002721088530961424,-4.186289879726246e-05,-3.3881317890172014e-21,-4.186289879726246e-05,3.7668857957707636e-22,1.2866173689393245e-22,6.440446213673567e-06,-7.988504061816648e-35,6.560953371932769e-22,2.541098841762901e-21,0.0025510203558951616,8.365887580450527e-19,-0.015306122601032257,5.914510538189415e-18,-1.6306308904150885e-36,-8.365887580450527e-19,-7.988504061816648e-35,0.0076530613005161285,-1.772415821744164e-18,-3.1862268242627814e-19,0.0010204081190750003,4.404571325722362e-20,-0.0010204081190750003,-0.00015698587230872363,4.1653471382803316e-22,-5.524916379591546e-20,6.560953371932769e-22,-1.772415821744164e-18,0.00015698587230872363,3.3881317890172014e-21,0.00021258502965793014,-1.8634724839594607e-20,6.301925127571995e-19,-0.00010629251482896507,1.5162191850451175e-22,3.2668020030554316e-22,2.541098841762901e-21,-3.1862268242627814e-19,3.3881317890172014e-21,8.176347364496905e-06,14.0,3.0,15.0,0.04679855331778526,-0.005833333358168602,-0.019583333283662796,-0.005486694630235434,0.00019841270113829523,0.0009523809421807528,0.0002380952355451882,0.0023809524718672037,0.0008928571478463709,0.00017507003212813288,-0.005833333358168602,0.001790293026715517,0.0009523809421807528,0.0002380952355451882,-9.920635056914762e-05,-0.00014652014942839742,-3.6630037357099354e-05,-7.8081620864124135e-19,-5.082197683525802e-20,-1.8634724839594607e-20,-0.019583333283662796,0.0009523809421807528,0.0433928556740284,0.0008928571478463709,1.0407425716222372e-20,-0.0009523809421807528,-3.3881317890172014e-21,-0.014285714365541935,-0.0008928571478463709,-2.642742795433417e-19,-0.005486694630235434,0.0002380952355451882,0.0008928571478463709,0.0015648951521143317,1.8816470718118643e-21,-4.614922709259743e-20,-3.40136066370178e-05,-1.821067276652083e-18,-0.00012755101488437504,-8.080155384959653e-05,0.00019841270113829523,-9.920635056914762e-05,1.0407425716222372e-20,1.8816470718118643e-21,7.631258085893933e-06,-1.1365781704679503e-21,-3.5276743916619303e-22,-4.790688698915735e-36,-1.0639700243562152e-22,1.0589633450718309e-22,0.0009523809421807528,-0.00014652014942839742,-0.0009523809421807528,-4.614922709259743e-20,-1.1365781704679503e-21,0.00014652014942839742,-4.850644364380012e-22,7.8081620864124135e-19,4.875011558301143e-20,6.554703952732736e-23,0.0002380952355451882,-3.6630037357099354e-05,-3.3881317890172014e-21,-3.40136066370178e-05,-3.5276743916619303e-22,-4.850644364380012e-22,5.2328623496578075e-06,6.739160196758912e-35,5.16486747911548e-22,2.752857078576476e-21,0.0023809524718672037,-7.8081620864124135e-19,-0.014285714365541935,-1.821067276652083e-18,-4.790688698915735e-36,7.8081620864124135e-19,6.739160196758912e-35,0.0071428571827709675,2.8888949165808538e-34,1.3007623220019206e-19,0.0008928571478463709,-5.082197683525802e-20,-0.0008928571478463709,-0.00012755101488437504,-1.0639700243562152e-22,4.875011558301143e-20,5.16486747911548e-22,2.8888949165808538e-34,0.00012755101488437504,0.0,0.00017507003212813288,-1.8634724839594607e-20,-2.642742795433417e-19,-8.080155384959653e-05,1.0589633450718309e-22,6.554703952732736e-23,2.752857078576476e-21,1.3007623220019206e-19,0.0,5.77153923586593e-06,14.0,3.0,16.0,0.044168710708618164,-0.005481880158185959,-0.01840861327946186,-0.004866946954280138,0.00018601190822664648,0.0008928571478463709,0.0002100840356433764,0.0022321429569274187,0.0007878151373006403,0.00014589169586542994,-0.005481880158185959,0.0016804197803139687,0.0008928571478463709,0.0002100840356433764,-9.300595411332324e-05,-0.00013736264372710139,-3.2320622267434373e-05,-6.7407548053553255e-34,3.3881317890172014e-21,8.470329472543003e-21,-0.01840861327946186,0.0008928571478463709,0.04073004052042961,0.0007878151373006403,8.90086829759601e-22,-0.0008928571478463709,3.3881317890172014e-21,-0.013392857275903225,-0.0007878151373006403,4.2690460541616737e-19,-0.004866946954280138,0.0002100840356433764,0.0007878151373006403,0.001295018009841442,-1.534707711769895e-21,4.492996286969427e-21,-2.801120535877999e-05,3.867621093153977e-18,-0.0001050420178216882,-6.252501043491066e-05,0.00018601190822664648,-9.300595411332324e-05,8.90086829759601e-22,-1.534707711769895e-21,7.15430405762163e-06,5.591605761653748e-23,2.7457998910530455e-22,7.349743990205293e-36,9.100455281544464e-23,-2.0832710523897802e-23,0.0008928571478463709,-0.00013736264372710139,-0.0008928571478463709,4.492996286969427e-21,5.591605761653748e-23,0.00013736264372710139,-5.266440451965268e-22,9.050342946086769e-36,-1.1191583546322426e-22,-1.8437246032772815e-23,0.0002100840356433764,-3.2320622267434373e-05,3.3881317890172014e-21,-2.801120535877999e-05,2.7457998910530455e-22,-5.266440451965268e-22,4.3094159991596825e-06,5.94792909470755e-35,-4.047912381437083e-22,-1.2705494208814505e-21,0.0022321429569274187,-6.7407548053553255e-34,-0.013392857275903225,3.867621093153977e-18,7.349743990205293e-36,9.050342946086769e-36,5.94792909470755e-35,0.0066964286379516125,-6.397443808806555e-19,-2.1519178598810028e-19,0.0007878151373006403,3.3881317890172014e-21,-0.0007878151373006403,-0.0001050420178216882,9.100455281544464e-23,-1.1191583546322426e-22,-4.047912381437083e-22,-6.397443808806555e-19,0.0001050420178216882,0.0,0.00014589169586542994,8.470329472543003e-21,4.2690460541616737e-19,-6.252501043491066e-05,-2.0832710523897802e-23,-1.8437246032772815e-23,-1.2705494208814505e-21,-2.1519178598810028e-19,0.0,4.168333816778613e-06,14.0,4.0,3.0,0.13648809492588043,-0.019910713657736778,-0.05428571254014969,-0.06607142835855484,0.0007440476329065859,0.0028571428265422583,0.0035714285913854837,0.0059523810632526875,0.010714286006987095,0.008928571827709675,-0.019910713657736778,0.006411401089280844,0.0028571428265422583,0.0035714285913854837,-0.00037202381645329297,-0.00043956044828519225,-0.0005494505749084055,4.9873299934333204e-18,-8.903653206307735e-19,2.9370647726192655e-19,-0.05428571254014969,0.0028571428265422583,0.07785714417695999,0.010714286006987095,9.901813343945181e-20,-0.0019047618843615055,-1.2468587613427787e-18,-0.01785714365541935,-0.0071428571827709675,4.069885778077281e-18,-0.06607142835855484,0.0035714285913854837,0.010714286006987095,0.15535713732242584,9.242691791926376e-19,-3.2398722787214126e-18,-0.0035714285913854837,1.9989742635907523e-17,-0.010714286006987095,-0.0535714291036129,0.0007440476329065859,-0.00037202381645329297,9.901813343945181e-20,9.242691791926376e-19,2.861721623048652e-05,1.5100207931549662e-20,-2.824135975130252e-21,-7.05757736460603e-20,-1.5286208862687587e-20,-4.384906140634679e-19,0.0028571428265422583,-0.00043956044828519225,-0.0019047618843615055,-3.2398722787214126e-18,1.5100207931549662e-20,0.00029304029885679483,1.2305339125143442e-19,-2.6556517760729196e-18,3.8978531486755067e-19,9.482919517472495e-19,0.0035714285913854837,-0.0005494505749084055,-1.2468587613427787e-18,-0.0035714285913854837,-2.824135975130252e-21,1.2305339125143442e-19,0.0005494505749084055,-4.021748583941126e-20,5.574845259859189e-19,3.2456350392539164e-18,0.0059523810632526875,4.9873299934333204e-18,-0.01785714365541935,1.9989742635907523e-17,-7.05757736460603e-20,-2.6556517760729196e-18,-4.021748583941126e-20,0.0059523810632526875,-5.630073317624787e-18,-5.602384273800187e-18,0.010714286006987095,-8.903653206307735e-19,-0.0071428571827709675,-0.010714286006987095,-1.5286208862687587e-20,3.8978531486755067e-19,5.574845259859189e-19,-5.630073317624787e-18,0.0071428571827709675,6.2118745237767154e-18,0.008928571827709675,2.9370647726192655e-19,4.069885778077281e-18,-0.0535714291036129,-4.384906140634679e-19,9.482919517472495e-19,3.2456350392539164e-18,-5.602384273800187e-18,6.2118745237767154e-18,0.02678571455180645,14.0,4.0,4.0,0.11183035373687744,-0.015468750149011612,-0.042321428656578064,-0.042321428656578064,0.0005580357392318547,0.002142857061699033,0.002142857061699033,0.004464285913854837,0.006428571417927742,0.004464285913854837,-0.015468750149011612,0.004890968557447195,0.002142857061699033,0.002142857061699033,-0.00027901786961592734,-0.00032967032166197896,-0.00032967032166197896,-2.0599841277224584e-18,-2.087089182034596e-18,-5.421010862427522e-19,-0.042321428656578064,0.002142857061699033,0.059464287012815475,0.006428571417927742,-7.786414474132629e-19,-0.0014285714132711291,-4.960224939121183e-18,-0.013392857275903225,-0.004285714123398066,-4.428359385778162e-18,-0.042321428656578064,0.002142857061699033,0.006428571417927742,0.059464287012815475,-3.2471453159560734e-19,-4.998087063709266e-18,-0.0014285714132711291,-5.358664605298175e-18,-0.004285714123398066,-0.013392857275903225,0.0005580357392318547,-0.00027901786961592734,-7.786414474132629e-19,-3.2471453159560734e-19,2.146291262761224e-05,5.455135293869602e-20,3.9742054088823604e-20,1.2990249842216178e-19,8.554511659638396e-22,2.3021421955502435e-20,0.002142857061699033,-0.00032967032166197896,-0.0014285714132711291,-4.998087063709266e-18,5.455135293869602e-20,0.00021978022414259613,3.0731266776023473e-19,-8.701246246319072e-19,5.542762025825554e-19,5.848262573508232e-19,0.002142857061699033,-0.00032967032166197896,-4.960224939121183e-18,-0.0014285714132711291,3.9742054088823604e-20,3.0731266776023473e-19,0.00021978022414259613,5.744509309275706e-19,5.421010862427522e-19,-8.673617379884035e-19,0.004464285913854837,-2.0599841277224584e-18,-0.013392857275903225,-5.358664605298175e-18,1.2990249842216178e-19,-8.701246246319072e-19,5.744509309275706e-19,0.004464285913854837,1.5156169801916172e-18,-3.5503274314781304e-19,0.006428571417927742,-2.087089182034596e-18,-0.004285714123398066,-0.004285714123398066,8.554511659638396e-22,5.542762025825554e-19,5.421010862427522e-19,1.5156169801916172e-18,0.0028571428265422583,9.75781955236954e-19,0.004464285913854837,-5.421010862427522e-19,-4.428359385778162e-18,-0.013392857275903225,2.3021421955502435e-20,5.848262573508232e-19,-8.673617379884035e-19,-3.5503274314781304e-19,9.75781955236954e-19,0.004464285913854837,14.0,4.0,5.0,0.0948520377278328,-0.012660713866353035,-0.03471428528428078,-0.029489796608686447,0.00044642857392318547,0.001714285695925355,0.0014285714132711291,0.0035714285913854837,0.004285714123398066,0.0025510203558951616,-0.012660713866353035,0.00395673094317317,0.001714285695925355,0.0014285714132711291,-0.00022321428696159273,-0.00026373626315034926,-0.00021978022414259613,5.421010862427522e-20,-6.505213034913027e-19,2.025079147974858e-19,-0.03471428528428078,0.001714285695925355,0.04814285784959793,0.004285714123398066,-4.618619818856943e-19,-0.0011428571306169033,-6.681163656984947e-19,-0.010714286006987095,-0.0028571428265422583,-2.062766763303087e-18,-0.029489796608686447,0.0014285714132711291,0.004285714123398066,0.03005102090537548,2.439454888092385e-19,-1.9786689647860456e-18,-0.0007142857066355646,-3.0799824539167634e-19,-0.002142857061699033,-0.005102040711790323,0.00044642857392318547,-0.00022321428696159273,-4.618619818856943e-19,2.439454888092385e-19,1.7170330465887673e-05,1.4399560103323106e-20,1.6940658945086007e-21,1.0386943140980168e-19,3.1978020537127246e-20,-7.674853141905485e-20,0.001714285695925355,-0.00026373626315034926,-0.0011428571306169033,-1.9786689647860456e-18,1.4399560103323106e-20,0.00017582417058292776,7.541110315317878e-20,-8.673617379884035e-19,1.4907779871675686e-19,3.11531624926379e-19,0.0014285714132711291,-0.00021978022414259613,-6.681163656984947e-19,-0.0007142857066355646,1.6940658945086007e-21,7.541110315317878e-20,0.00010989011207129806,4.5022872054590166e-20,3.406854828311883e-21,1.171369819201489e-19,0.0035714285913854837,5.421010862427522e-20,-0.010714286006987095,-3.0799824539167634e-19,1.0386943140980168e-19,-8.673617379884035e-19,4.5022872054590166e-20,0.0035714285913854837,-5.421010862427522e-19,1.9471385717449317e-19,0.004285714123398066,-6.505213034913027e-19,-0.0028571428265422583,-0.002142857061699033,3.1978020537127246e-20,1.4907779871675686e-19,3.406854828311883e-21,-5.421010862427522e-19,0.0014285714132711291,-5.012873227351381e-19,0.0025510203558951616,2.025079147974858e-19,-2.062766763303087e-18,-0.005102040711790323,-7.674853141905485e-20,3.11531624926379e-19,1.171369819201489e-19,1.9471385717449317e-19,-5.012873227351381e-19,0.0012755101779475808,14.0,4.0,6.0,0.08240221440792084,-0.010720663703978062,-0.029438775032758713,-0.021747449412941933,0.00037202381645329297,0.0014285714132711291,0.0010204081190750003,0.0029761905316263437,0.0030612244736403227,0.0015943878097459674,-0.010720663703978062,0.0033234399743378162,0.0014285714132711291,0.0010204081190750003,-0.00018601190822664648,-0.00021978022414259613,-0.00015698587230872363,2.6201597307349537e-18,-3.4692126142710173e-20,5.553615669438015e-19,-0.029438775032758713,0.0014285714132711291,0.04045918211340904,0.0030612244736403227,-1.5296328577376864e-19,-0.0009523809421807528,3.0969034673223013e-19,-0.008928571827709675,-0.0020408162381500006,7.062803078125834e-18,-0.021747449412941933,0.0010204081190750003,0.0030612244736403227,0.017468111589550972,-1.0164395367051604e-19,7.40538160902529e-20,-0.0004081632650922984,1.1748863139119379e-17,-0.0012244897661730647,-0.00239158165641129,0.00037202381645329297,-0.00018601190822664648,-1.5296328577376864e-19,-1.0164395367051604e-19,1.430860811524326e-05,1.0164395367051604e-20,7.623296525288703e-21,1.9580837302905925e-21,2.6309548900931682e-20,3.848035475328742e-22,0.0014285714132711291,-0.00021978022414259613,-0.0009523809421807528,7.40538160902529e-20,1.0164395367051604e-20,0.00014652014942839742,3.3881317890172014e-20,-1.6383499035791727e-18,-1.2263037884099305e-19,-2.6810747650717792e-20,0.0010204081190750003,-0.00015698587230872363,3.0969034673223013e-19,-0.0004081632650922984,7.623296525288703e-21,3.3881317890172014e-20,6.27943518338725e-05,-1.0079619047787722e-19,-6.797283659116053e-20,-1.8544055504701139e-19,0.0029761905316263437,2.6201597307349537e-18,-0.008928571827709675,1.1748863139119379e-17,1.9580837302905925e-21,-1.6383499035791727e-18,-1.0079619047787722e-19,0.0029761905316263437,-2.763798196538715e-18,-1.3877793184488438e-18,0.0030612244736403227,-3.4692126142710173e-20,-0.0020408162381500006,-0.0012244897661730647,2.6309548900931682e-20,-1.2263037884099305e-19,-6.797283659116053e-20,-2.763798196538715e-18,0.0008163265301845968,-8.832600459640962e-19,0.0015943878097459674,5.553615669438015e-19,7.062803078125834e-18,-0.00239158165641129,3.848035475328742e-22,-2.6810747650717792e-20,-1.8544055504701139e-19,-1.3877793184488438e-18,-8.832600459640962e-19,0.00047831633128225803,14.0,4.0,7.0,0.07286564260721207,-0.009298468939960003,-0.025561224669218063,-0.016709184274077415,0.0003188775444868952,0.0012244897661730647,0.0007653061184100807,0.0025510203558951616,0.002295918297022581,0.0010629252064973116,-0.009298468939960003,0.00286548282019794,0.0012244897661730647,0.0007653061184100807,-0.0001594387722434476,-0.00018838304094970226,-0.00011773940059356391,-3.6943548272661565e-19,-8.205529829913114e-19,-1.2670028840051294e-18,-0.025561224669218063,0.0012244897661730647,0.03489796072244644,0.002295918297022581,-1.7266564229022778e-19,-0.0008163265301845968,-1.794249047217348e-18,-0.0076530613005161285,-0.0015306122368201613,-6.844487367006245e-18,-0.016709184274077415,0.0007653061184100807,0.002295918297022581,0.011096938513219357,-1.8295911660692887e-19,-1.8339539234150465e-18,-0.00025510202976875007,-8.434045194973365e-18,-0.0007653061184100807,-0.0012755101779475808,0.0003188775444868952,-0.0001594387722434476,-1.7266564229022778e-19,-1.8295911660692887e-19,1.2264521501492709e-05,1.1011428314305904e-20,1.0164395367051604e-20,1.9035254739480733e-20,1.1414906660711384e-20,1.191955307344122e-20,0.0012244897661730647,-0.00018838304094970226,-0.0008163265301845968,-1.8339539234150465e-18,1.1011428314305904e-20,0.000125588703667745,7.115076756936123e-20,-4.838344321957287e-19,7.541517443275619e-20,1.9645503358982608e-19,0.0007653061184100807,-0.00011773940059356391,-1.794249047217348e-18,-0.00025510202976875007,1.0164395367051604e-20,7.115076756936123e-20,3.924646807718091e-05,2.616115851515335e-19,1.5577108573959454e-19,2.6283757021691367e-19,0.0025510203558951616,-3.6943548272661565e-19,-0.0076530613005161285,-8.434045194973365e-18,1.9035254739480733e-20,-4.838344321957287e-19,2.616115851515335e-19,0.0025510203558951616,6.817350673035677e-19,9.038939629466549e-19,0.002295918297022581,-8.205529829913114e-19,-0.0015306122368201613,-0.0007653061184100807,1.1414906660711384e-20,7.541517443275619e-20,1.5577108573959454e-19,6.817350673035677e-19,0.0005102040595375001,8.697929252062735e-19,0.0010629252064973116,-1.2670028840051294e-18,-6.844487367006245e-18,-0.0012755101779475808,1.191955307344122e-20,1.9645503358982608e-19,2.6283757021691367e-19,9.038939629466549e-19,8.697929252062735e-19,0.00021258502965793014,14.0,4.0,8.0,0.06531994044780731,-0.008210565894842148,-0.02258928492665291,-0.01324404776096344,0.00027901786961592734,0.0010714285308495164,0.0005952381179668009,0.0022321429569274187,0.0017857142956927419,0.0007440476329065859,-0.008210565894842148,0.002518744207918644,0.0010714285308495164,0.0005952381179668009,-0.00013950893480796367,-0.00016483516083098948,-9.157509339274839e-05,-1.0943772178029427e-18,5.656133849618423e-19,8.92603671368342e-19,-0.02258928492665291,0.0010714285308495164,0.030684523284435272,0.0017857142956927419,-3.1848438816761693e-19,-0.0007142857066355646,-7.696510281305772e-19,-0.0066964286379516125,-0.0011904762359336019,-8.019796246134106e-19,-0.01324404776096344,0.0005952381179668009,0.0017857142956927419,0.0075042517855763435,1.6940658945086007e-19,6.424424889424387e-19,-0.0001700680295471102,-4.986449873261564e-18,-0.0005102040595375001,-0.0007440476329065859,0.00027901786961592734,-0.00013950893480796367,-3.1848438816761693e-19,1.6940658945086007e-19,1.073145631380612e-05,1.7787691892340307e-20,7.623296525288703e-21,7.18543428414744e-20,-8.217262288302928e-21,-2.824135167336685e-20,0.0010714285308495164,-0.00016483516083098948,-0.0007142857066355646,6.424424889424387e-19,1.7787691892340307e-20,0.00010989011207129806,2.879912020664621e-20,-6.96987088726915e-19,-9.61505050508836e-20,-9.440671784674232e-20,0.0005952381179668009,-9.157509339274839e-05,-7.696510281305772e-19,-0.0001700680295471102,7.623296525288703e-21,2.879912020664621e-20,2.616431265778374e-05,2.456828524389354e-19,-7.974446973779681e-20,-8.708490926768359e-20,0.0022321429569274187,-1.0943772178029427e-18,-0.0066964286379516125,-4.986449873261564e-18,7.18543428414744e-20,-6.96987088726915e-19,2.456828524389354e-19,0.0022321429569274187,-8.1998977639173935e-19,6.406170047281107e-19,0.0017857142956927419,5.656133849618423e-19,-0.0011904762359336019,-0.0005102040595375001,-8.217262288302928e-21,-9.61505050508836e-20,-7.974446973779681e-20,-8.1998977639173935e-19,0.0003401360590942204,-1.5632069555784774e-19,0.0007440476329065859,8.92603671368342e-19,-8.019796246134106e-19,-0.0007440476329065859,-2.824135167336685e-20,-9.440671784674232e-20,-8.708490926768359e-20,6.406170047281107e-19,-1.5632069555784774e-19,0.00010629251482896507,14.0,4.0,9.0,0.059197328984737396,-0.0073511903174221516,-0.02023809589445591,-0.010757575742900372,0.00024801588733680546,0.0009523809421807528,0.0004761904710903764,0.0019841270986944437,0.0014285714132711291,0.0005411255406215787,-0.0073511903174221516,0.0022470238618552685,0.0009523809421807528,0.0004761904710903764,-0.00012400794366840273,-0.00014652014942839742,-7.326007471419871e-05,-5.013922712753558e-19,-1.3554089751944706e-19,-1.0140469814068361e-19,-0.02023809589445591,0.0009523809421807528,0.02738095261156559,0.0014285714132711291,-5.930242634560773e-20,-0.0006349206087179482,-1.1174456565752156e-19,-0.0059523810632526875,-0.0009523809421807528,-3.2956527380398314e-19,-0.010757575742900372,0.0004761904710903764,0.0014285714132711291,0.005317717790603638,-5.3796280826690026e-21,4.4028533103641803e-20,-0.0001190476177725941,-9.60921500436074e-20,-0.0003571428533177823,-0.00046382189611904323,0.00024801588733680546,-0.00012400794366840273,-5.930242634560773e-20,-5.3796280826690026e-21,9.53907237999374e-06,-4.561836959615571e-22,6.861659575938328e-22,1.5519582039765512e-20,2.8448976834395146e-21,5.648090630096934e-37,0.0009523809421807528,-0.00014652014942839742,-0.0006349206087179482,4.4028533103641803e-20,-4.561836959615571e-22,9.76800947682932e-05,-5.082197683525802e-21,1.4823896002744566e-19,-2.2473012922386498e-21,-7.269768904883144e-36,0.0004761904710903764,-7.326007471419871e-05,-1.1174456565752156e-19,-0.0001190476177725941,6.861659575938328e-22,-5.082197683525802e-21,1.8315018678549677e-05,1.5499608536029197e-20,2.4781764081004713e-20,2.5351174535170903e-20,0.0019841270986944437,-5.013922712753558e-19,-0.0059523810632526875,-9.60921500436074e-20,1.5519582039765512e-20,1.4823896002744566e-19,1.5499608536029197e-20,0.0019841270986944437,-3.1035368257559943e-21,1.73259185986959e-35,0.0014285714132711291,-1.3554089751944706e-19,-0.0009523809421807528,-0.0003571428533177823,2.8448976834395146e-21,-2.2473012922386498e-21,2.4781764081004713e-20,-3.1035368257559943e-21,0.0002380952355451882,8.239131845099579e-20,0.0005411255406215787,-1.0140469814068361e-19,-3.2956527380398314e-19,-0.00046382189611904323,5.648090630096934e-37,-7.269768904883144e-36,2.5351174535170903e-20,1.73259185986959e-35,8.239131845099579e-20,5.7977737014880404e-05,14.0,4.0,10.0,0.054128248244524,-0.006655032280832529,-0.018331168219447136,-0.008912337943911552,0.00022321428696159273,0.0008571428479626775,0.00038961038808338344,0.0017857142956927419,0.0011688311351463199,0.000405844155466184,-0.006655032280832529,0.0020283153280615807,0.0008571428479626775,0.00038961038808338344,-0.00011160714348079637,-0.00013186813157517463,-5.994005914544687e-05,0.0,0.0,-0.0,-0.018331168219447136,0.0008571428479626775,0.024720778688788414,0.0011688311351463199,6.587572694318547e-21,-0.0005714285653084517,-1.6940658945086007e-20,-0.0053571430034935474,-0.0007792207761667669,-0.0,-0.008912337943911552,0.00038961038808338344,0.0011688311351463199,0.003908279351890087,8.734687995261855e-22,-1.6940658945086007e-20,-8.658008300699294e-05,0.0,-0.0002597402490209788,-0.0003043831093236804,0.00022321428696159273,-0.00011160714348079637,6.587572694318547e-21,8.734687995261855e-22,8.585165232943837e-06,-1.6203578617248213e-21,-1.8650491859305245e-22,0.0,0.0,-0.0,0.0008571428479626775,-0.00013186813157517463,-0.0005714285653084517,-1.6940658945086007e-20,-1.6203578617248213e-21,8.791208529146388e-05,3.3881317890172014e-21,0.0,0.0,-0.0,0.00038961038808338344,-5.994005914544687e-05,-1.6940658945086007e-20,-8.658008300699294e-05,-1.8650491859305245e-22,3.3881317890172014e-21,1.3320013749762438e-05,0.0,0.0,-0.0,0.0017857142956927419,0.0,-0.0053571430034935474,0.0,0.0,0.0,0.0,0.0017857142956927419,0.0,-0.0,0.0011688311351463199,0.0,-0.0007792207761667669,-0.0002597402490209788,0.0,0.0,0.0,0.0,0.00017316016601398587,-0.0,0.000405844155466184,-0.0,-0.0,-0.0003043831093236804,-0.0,-0.0,-0.0,-0.0,-0.0,3.382034628884867e-05,14.0,4.0,11.0,0.04986139014363289,-0.006079545244574547,-0.016753247007727623,-0.007504994980990887,0.000202922077733092,0.0007792207761667669,0.0003246753185521811,0.001623376621864736,0.0009740259847603738,0.00031218782532960176,-0.006079545244574547,0.001848464016802609,0.0007792207761667669,0.0003246753185521811,-0.000101461038866546,-0.00011988011829089373,-4.995004928787239e-05,-2.489015828083806e-18,-4.1247270772077227e-19,-3.1991985672312614e-19,-0.016753247007727623,0.0007792207761667669,0.022532466799020767,0.0009740259847603738,-8.690961289377741e-19,-0.0005194804980419576,-5.4555574467876885e-21,-0.004870129749178886,-0.0006493506371043622,-1.1671382992297915e-18,-0.007504994980990887,0.0003246753185521811,0.0009740259847603738,0.0029578753747045994,-3.5767656748189737e-19,-2.5284697971372623e-20,-6.49350622552447e-05,-3.8101568559999184e-18,-0.00019480519404169172,-0.00020812520233448595,0.000202922077733092,-0.000101461038866546,-8.690961289377741e-19,-3.5767656748189737e-19,7.804695087543223e-06,1.8116948550227626e-20,8.441596255366723e-21,1.9409493220584744e-19,3.3273417688127965e-20,2.488396612309476e-20,0.0007792207761667669,-0.00011988011829089373,-0.0005194804980419576,-2.5284697971372623e-20,1.8116948550227626e-20,7.992007886059582e-05,3.8116482626443515e-21,-2.2812255120451623e-20,-1.2135705909207376e-21,6.156819262212219e-35,0.0003246753185521811,-4.995004928787239e-05,-5.4555574467876885e-21,-6.49350622552447e-05,8.441596255366723e-21,3.8116482626443515e-21,9.990009857574478e-06,1.928738733037228e-34,-3.652273015266544e-21,-7.143375562926939e-22,0.001623376621864736,-2.489015828083806e-18,-0.004870129749178886,-3.8101568559999184e-18,1.9409493220584744e-19,-2.2812255120451623e-20,1.928738733037228e-34,0.001623376621864736,3.8349414101999034e-19,3.234915450599477e-19,0.0009740259847603738,-4.1247270772077227e-19,-0.0006493506371043622,-0.00019480519404169172,3.3273417688127965e-20,-1.2135705909207376e-21,-3.652273015266544e-21,3.8349414101999034e-19,0.0001298701245104894,3.9332732163754834e-20,0.00031218782532960176,-3.1991985672312614e-19,-1.1671382992297915e-18,-0.00020812520233448595,2.488396612309476e-20,6.156819262212219e-35,-7.143375562926939e-22,3.234915450599477e-19,3.9332732163754834e-20,2.0812520233448595e-05,14.0,4.0,12.0,0.04621974751353264,-0.005595810245722532,-0.01542582456022501,-0.006406985688954592,0.00018601190822664648,0.0007142857066355646,0.00027472528745420277,0.0014880952658131719,0.0008241758332587779,0.0002452904300298542,-0.005595810245722532,0.0016979475039988756,0.0007142857066355646,0.00027472528745420277,-9.300595411332324e-05,-0.00010989011207129806,-4.226542660035193e-05,-3.660075945694076e-19,6.776263578034403e-21,-6.776263578034403e-21,-0.01542582456022501,0.0007142857066355646,0.020700549706816673,0.0008241758332587779,3.1893442935080833e-21,-0.0004761904710903764,2.371692252312041e-20,-0.004464285913854837,-0.0005494505749084055,1.6263032587282567e-19,-0.006406985688954592,0.00027472528745420277,0.0008241758332587779,0.002293242374435067,1.9728819025918738e-21,-5.967212438063065e-20,-4.995004928787239e-05,-4.575095125988051e-19,-0.00014985015150159597,-0.0001471742580179125,0.00018601190822664648,-9.300595411332324e-05,3.1893442935080833e-21,1.9728819025918738e-21,7.15430405762163e-06,-6.1481415767063995e-22,-1.7539125683368158e-22,-4.0264060774936036e-36,-4.143040676235578e-22,-2.45278766833716e-22,0.0007142857066355646,-0.00010989011207129806,-0.0004761904710903764,-5.967212438063065e-20,-6.1481415767063995e-22,7.326007471419871e-05,2.474964782437006e-21,2.4400507166273646e-19,2.9915106406428154e-20,-4.293056271988668e-22,0.00027472528745420277,-4.226542660035193e-05,2.371692252312041e-20,-4.995004928787239e-05,-1.7539125683368158e-22,2.474964782437006e-21,7.68462268752046e-06,-1.6303280126439706e-35,-8.40063708255471e-21,1.6940658945086007e-21,0.0014880952658131719,-3.660075945694076e-19,-0.004464285913854837,-4.575095125988051e-19,-4.0264060774936036e-36,2.4400507166273646e-19,-1.6303280126439706e-35,0.0014880952658131719,3.0500633311607204e-19,-9.027796614315168e-35,0.0008241758332587779,6.776263578034403e-21,-0.0005494505749084055,-0.00014985015150159597,-4.143040676235578e-22,2.9915106406428154e-20,-8.40063708255471e-21,3.0500633311607204e-19,9.990009857574478e-05,-3.049318610115481e-20,0.0002452904300298542,-6.776263578034403e-21,1.6263032587282567e-19,-0.0001471742580179125,-2.45278766833716e-22,-4.293056271988668e-22,1.6940658945086007e-21,-9.027796614315168e-35,-3.049318610115481e-20,1.3379477422859054e-05,14.0,4.0,13.0,0.04307496175169945,-0.00518347742035985,-0.014293563552200794,-0.005533752031624317,0.00017170330102089792,0.0006593406433239579,0.00023547880118712783,0.0013736264081671834,0.0007064364035613835,0.00019623234402388334,-0.00518347742035985,0.001570122898556292,0.0006593406433239579,0.00023547880118712783,-8.585165051044896e-05,-0.00010143702093046159,-3.6227509554009885e-05,1.6201314573828454e-18,1.6940658945086007e-20,1.1519648082658485e-19,-0.014293563552200794,0.0006593406433239579,0.01914442703127861,0.0007064364035613835,-2.889728328090153e-20,-0.00043956044828519225,3.083199928005653e-19,-0.004120879340916872,-0.00047095760237425566,2.303929616531697e-19,-0.005533752031624317,0.00023547880118712783,0.0007064364035613835,0.0018142571207135916,-2.031153787910037e-20,3.336068524275231e-19,-3.924646807718091e-05,6.815827109744931e-19,-0.00011773940059356391,-0.00010703581938287243,0.00017170330102089792,-8.585165051044896e-05,-2.889728328090153e-20,-2.031153787910037e-20,6.603972906304989e-06,3.939065580926629e-21,1.7511130839999165e-21,-1.686333048250937e-20,4.4242651713257996e-21,-6.036632238112192e-22,0.0006593406433239579,-0.00010143702093046159,-0.00043956044828519225,3.336068524275231e-19,3.939065580926629e-21,6.762468547094613e-05,-8.770640463545934e-21,-6.246869536964114e-19,-6.089151785050452e-20,-1.8799228768328957e-20,0.00023547880118712783,-3.6227509554009885e-05,3.083199928005653e-19,-3.924646807718091e-05,1.7511130839999165e-21,-8.770640463545934e-21,6.037917955836747e-06,-8.9826037183668e-20,-3.489555118108713e-21,-1.4823076576950256e-20,0.0013736264081671834,1.6201314573828454e-18,-0.004120879340916872,6.815827109744931e-19,-1.686333048250937e-20,-6.246869536964114e-19,-8.9826037183668e-20,0.0013736264081671834,-9.154977818265195e-20,-3.9611211725817474e-21,0.0007064364035613835,1.6940658945086007e-20,-0.00047095760237425566,-0.00011773940059356391,4.4242651713257996e-21,-6.089151785050452e-20,-3.489555118108713e-21,-9.154977818265195e-20,7.849293615436181e-05,-2.286988957586611e-20,0.00019623234402388334,1.1519648082658485e-19,2.303929616531697e-19,-0.00010703581938287243,-6.036632238112192e-22,-1.8799228768328957e-20,-1.4823076576950256e-20,-3.9611211725817474e-21,-2.286988957586611e-20,8.91965191840427e-06,14.0,4.0,14.0,0.040331631898880005,-0.004827806260436773,-0.013316326774656773,-0.004827806260436773,0.0001594387722434476,0.0006122448830865324,0.0002040816325461492,0.0012755101779475808,0.0006122448830865324,0.0001594387722434476,-0.004827806260436773,0.0014602139126509428,0.0006122448830865324,0.0002040816325461492,-7.97193861217238e-05,-9.419152047485113e-05,-3.139717591693625e-05,-1.0824416219492619e-18,6.776263578034403e-20,-4.912791094074942e-20,-0.013316326774656773,0.0006122448830865324,0.017806122079491615,0.0006122448830865324,4.831613979827946e-20,-0.0004081632650922984,-2.1345230270808369e-19,-0.0038265306502580643,-0.0004081632650922984,-2.0328790734103208e-20,-0.004827806260436773,0.0002040816325461492,0.0006122448830865324,0.0014602139126509428,5.3537853124339694e-20,-1.6464937035049104e-19,-3.139717591693625e-05,1.666964097220125e-19,-9.419152047485113e-05,-7.97193861217238e-05,0.0001594387722434476,-7.97193861217238e-05,4.831613979827946e-20,5.3537853124339694e-20,6.1322607507463545e-06,-4.884137606123719e-21,-3.0346641442897597e-21,1.5658806876615843e-20,-5.943997097183881e-21,-1.2962833005436593e-21,0.0006122448830865324,-9.419152047485113e-05,-0.0004081632650922984,-1.6464937035049104e-19,-4.884137606123719e-21,6.27943518338725e-05,3.401545201196345e-21,3.3029370973091265e-19,1.4505269585080835e-20,1.21307466625515e-20,0.0002040816325461492,-3.139717591693625e-05,-2.1345230270808369e-19,-3.139717591693625e-05,-3.0346641442897597e-21,3.401545201196345e-21,4.830334546568338e-06,6.97157319912039e-20,3.3347267387708548e-21,8.682087709356578e-21,0.0012755101779475808,-1.0824416219492619e-18,-0.0038265306502580643,1.666964097220125e-19,1.5658806876615843e-20,3.3029370973091265e-19,6.97157319912039e-20,0.0012755101779475808,-1.9591542748710594e-19,-1.7701259596264185e-20,0.0006122448830865324,6.776263578034403e-20,-0.0004081632650922984,-9.419152047485113e-05,-5.943997097183881e-21,1.4505269585080835e-20,3.3347267387708548e-21,-1.9591542748710594e-19,6.27943518338725e-05,4.235164736271502e-21,0.0001594387722434476,-4.912791094074942e-20,-2.0328790734103208e-20,-7.97193861217238e-05,-1.2962833005436593e-21,1.21307466625515e-20,8.682087709356578e-21,-1.7701259596264185e-20,4.235164736271502e-21,6.1322607507463545e-06,14.0,4.0,15.0,0.0379173681139946,-0.004517856985330582,-0.01246428582817316,-0.004248949699103832,0.00014880952949170023,0.0005714285653084517,0.00017857142665889114,0.0011904762359336019,0.0005357142654247582,0.00013130252773407847,-0.004517856985330582,0.0013646978186443448,0.0005714285653084517,0.00017857142665889114,-7.440476474585012e-05,-8.791208529146388e-05,-2.7472528017824516e-05,2.391381735830217e-19,-2.642742795433417e-19,-8.978549240895584e-20,-0.01246428582817316,0.0005714285653084517,0.01664285734295845,0.0005357142654247582,-1.4262650079718216e-19,-0.0003809523768723011,-3.3711911300721153e-19,-0.0035714285913854837,-0.0003571428533177823,-2.473336205982557e-19,-0.004248949699103832,0.00017857142665889114,0.0005357142654247582,0.0011928040767088532,-9.420082096005051e-20,5.3798815682903103e-20,-2.551020406826865e-05,-1.094938666643713e-18,-7.653061038581654e-05,-6.0601163568207994e-05,0.00014880952949170023,-7.440476474585012e-05,-1.4262650079718216e-19,-9.420082096005051e-20,5.723443337046774e-06,1.7914284453390732e-20,6.729134881854837e-21,-1.461488717211545e-20,6.580763398445973e-21,2.2395739389772413e-21,0.0005714285653084517,-8.791208529146388e-05,-0.0003809523768723011,5.3798815682903103e-20,1.7914284453390732e-20,5.860805686097592e-05,3.651403021594943e-21,-2.7541257668409793e-19,-1.523250371713112e-21,-7.872219728530344e-21,0.00017857142665889114,-2.7472528017824516e-05,-3.3711911300721153e-19,-2.551020406826865e-05,6.729134881854837e-21,3.651403021594943e-21,3.924646989617031e-06,4.270088560227432e-20,2.1931923306780662e-20,9.317362419797304e-21,0.0011904762359336019,2.391381735830217e-19,-0.0035714285913854837,-1.094938666643713e-18,-1.461488717211545e-20,-2.7541257668409793e-19,4.270088560227432e-20,0.0011904762359336019,2.0672374418693886e-19,2.915501789637142e-20,0.0005357142654247582,-2.642742795433417e-19,-0.0003571428533177823,-7.653061038581654e-05,6.580763398445973e-21,-1.523250371713112e-21,2.1931923306780662e-20,2.0672374418693886e-19,5.10204081365373e-05,2.625802136488331e-20,0.00013130252773407847,-8.978549240895584e-20,-2.473336205982557e-19,-6.0601163568207994e-05,2.2395739389772413e-21,-7.872219728530344e-21,9.317362419797304e-21,2.915501789637142e-20,2.625802136488331e-20,4.328654540586285e-06,14.0,4.0,16.0,0.03577621653676033,-0.004245338961482048,-0.011714810505509377,-0.0037683823611587286,0.00013950893480796367,0.0005357142654247582,0.00015756303037051111,0.0011160714784637094,0.0004726890765596181,0.00010941876826109365,-0.004245338961482048,0.0012809191830456257,0.0005357142654247582,0.00015756303037051111,-6.975446740398183e-05,-8.241758041549474e-05,-2.424046579108108e-05,0.0,-1.6940658945086007e-21,3.3881317890172014e-21,-0.011714810505509377,0.0005357142654247582,0.015622373670339584,0.0004726890765596181,1.2439593810124745e-21,-0.0003571428533177823,1.3552527156068805e-20,-0.0033482143189758062,-0.00031512606074102223,0.0,-0.0037683823611587286,0.00015756303037051111,0.0004726890765596181,0.00098701985552907,1.0979093953408177e-21,1.3697652117132113e-20,-2.100840356433764e-05,-0.0,-6.302521069301292e-05,-4.689375782618299e-05,0.00013950893480796367,-6.975446740398183e-05,1.2439593810124745e-21,1.0979093953408177e-21,5.36572815690306e-06,-4.523559156574841e-22,-4.8468213551066933e-23,-0.0,-7.761877758925457e-24,-7.565419681317035e-23,0.0005357142654247582,-8.241758041549474e-05,-0.0003571428533177823,1.3697652117132113e-20,-4.523559156574841e-22,5.494505603564903e-05,-2.2307084045800055e-21,-0.0,6.94180304763448e-23,1.596580319242237e-23,0.00015756303037051111,-2.424046579108108e-05,1.3552527156068805e-20,-2.100840356433764e-05,-4.8468213551066933e-23,-2.2307084045800055e-21,3.232061999369762e-06,0.0,-9.412460340295504e-24,-6.352747104407253e-22,0.0011160714784637094,0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,0.0,0.0011160714784637094,0.0,0.0,0.0004726890765596181,-1.6940658945086007e-21,-0.00031512606074102223,-6.302521069301292e-05,-7.761877758925457e-24,6.94180304763448e-23,-9.412460340295504e-24,0.0,4.201680712867528e-05,0.0,0.00010941876826109365,3.3881317890172014e-21,0.0,-4.689375782618299e-05,-7.565419681317035e-23,1.596580319242237e-23,-6.352747104407253e-22,0.0,0.0,3.1262504762707977e-06,14.0,5.0,3.0,0.11608843505382538,-0.016309523954987526,-0.03789115697145462,-0.05428571254014969,0.0005952381179668009,0.0019047618843615055,0.0028571428265422583,0.003401360474526882,0.0071428571827709675,0.0071428571827709675,-0.016309523954987526,0.00518772890791297,0.0019047618843615055,0.0028571428265422583,-0.00029761905898340046,-0.00029304029885679483,-0.00043956044828519225,-1.9901212803668423e-18,-8.624777534591608e-19,-6.4555412527195236e-18,-0.03789115697145462,0.0019047618843615055,0.03935374319553375,0.0071428571827709675,-3.569909381516675e-19,-0.0009523809421807528,-2.3077232736160182e-19,-0.006802720949053764,-0.0035714285913854837,1.821330526882028e-18,-0.05428571254014969,0.0028571428265422583,0.0071428571827709675,0.1257142871618271,-9.642089746843011e-19,-2.661085267022839e-19,-0.0028571428265422583,-2.1825532693487284e-18,-0.0071428571827709675,-0.04285714402794838,0.0005952381179668009,-0.00029761905898340046,-3.569909381516675e-19,-9.642089746843011e-19,2.2893773348187096e-05,5.904685217403263e-22,-1.7997961769506784e-21,7.482830271284688e-20,5.204083716137771e-20,4.3335022939372784e-19,0.0019047618843615055,-0.00029304029885679483,-0.0009523809421807528,-2.661085267022839e-19,5.904685217403263e-22,0.00014652014942839742,-9.03079199736813e-21,4.1143356207625253e-19,1.7630882757492176e-35,1.7369281966525965e-19,0.0028571428265422583,-0.00043956044828519225,-2.3077232736160182e-19,-0.0028571428265422583,-1.7997961769506784e-21,-9.03079199736813e-21,0.00043956044828519225,7.661163949002586e-20,-1.2833416398076124e-20,4.49759502343431e-19,0.003401360474526882,-1.9901212803668423e-18,-0.006802720949053764,-2.1825532693487284e-18,7.482830271284688e-20,4.1143356207625253e-19,7.661163949002586e-20,0.001700680237263441,2.1634989571434163e-18,-1.3103864391820043e-18,0.0071428571827709675,-8.624777534591608e-19,-0.0035714285913854837,-0.0071428571827709675,5.204083716137771e-20,1.7630882757492176e-35,-1.2833416398076124e-20,2.1634989571434163e-18,0.0035714285913854837,2.175130770917137e-18,0.0071428571827709675,-6.4555412527195236e-18,1.821330526882028e-18,-0.04285714402794838,4.3335022939372784e-19,1.7369281966525965e-19,4.49759502343431e-19,-1.3103864391820043e-18,2.175130770917137e-18,0.02142857201397419,14.0,5.0,4.0,0.0948520377278328,-0.012660713866353035,-0.029489796608686447,-0.03471428528428078,0.00044642857392318547,0.0014285714132711291,0.001714285695925355,0.0025510203558951616,0.004285714123398066,0.0035714285913854837,-0.012660713866353035,0.00395673094317317,0.0014285714132711291,0.001714285695925355,-0.00022321428696159273,-0.00021978022414259613,-0.00026373626315034926,-3.597102685660414e-19,-1.0812807773571203e-18,-5.929158252476504e-19,-0.029489796608686447,0.0014285714132711291,0.03005102090537548,0.004285714123398066,9.403869355999011e-20,-0.0007142857066355646,-2.4037723844183787e-18,-0.005102040711790323,-0.002142857061699033,-9.222077830676095e-18,-0.03471428528428078,0.001714285695925355,0.004285714123398066,0.04814285784959793,-5.180070727578842e-19,-1.4206159072253614e-18,-0.0011428571306169033,-7.025274720914916e-18,-0.0028571428265422583,-0.010714286006987095,0.00044642857392318547,-0.00022321428696159273,9.403869355999011e-20,-5.180070727578842e-19,1.7170330465887673e-05,3.262734762445857e-21,1.7940221089238244e-20,-4.896759946062752e-20,5.1602722242408706e-20,8.880876658894117e-20,0.0014285714132711291,-0.00021978022414259613,-0.0007142857066355646,-1.4206159072253614e-18,3.262734762445857e-21,0.00010989011207129806,5.000095807203366e-20,1.1483771708528411e-19,1.3877787497621727e-19,2.3101719867231166e-19,0.001714285695925355,-0.00026373626315034926,-2.4037723844183787e-18,-0.0011428571306169033,1.7940221089238244e-20,5.000095807203366e-20,0.00017582417058292776,4.7322796049005575e-19,7.804547307135557e-20,-8.197628704099584e-19,0.0025510203558951616,-3.597102685660414e-19,-0.005102040711790323,-7.025274720914916e-18,-4.896759946062752e-20,1.1483771708528411e-19,4.7322796049005575e-19,0.0012755101779475808,-2.1159012527877075e-19,1.1706625022295737e-18,0.004285714123398066,-1.0812807773571203e-18,-0.002142857061699033,-0.0028571428265422583,5.1602722242408706e-20,1.3877787497621727e-19,7.804547307135557e-20,-2.1159012527877075e-19,0.0014285714132711291,1.8209167297805983e-18,0.0035714285913854837,-5.929158252476504e-19,-9.222077830676095e-18,-0.010714286006987095,8.880876658894117e-20,2.3101719867231166e-19,-8.197628704099584e-19,1.1706625022295737e-18,1.8209167297805983e-18,0.0035714285913854837,14.0,5.0,5.0,0.08030612021684647,-0.010357142426073551,-0.02416326478123665,-0.02416326478123665,0.0003571428533177823,0.0011428571306169033,0.0011428571306169033,0.0020408162381500006,0.0028571428265422583,0.0020408162381500006,-0.010357142426073551,0.0032005493994802237,0.0011428571306169033,0.0011428571306169033,-0.00017857142665889114,-0.00017582417058292776,-0.00017582417058292776,1.19407274754059e-18,4.468676789219456e-19,1.2201557168083418e-18,-0.02416326478123665,0.0011428571306169033,0.02432653121650219,0.0028571428265422583,-8.04031381499363e-20,-0.0005714285653084517,1.2287723538517301e-18,-0.004081632476300001,-0.0014285714132711291,1.662198347819689e-18,-0.02416326478123665,0.0011428571306169033,0.0028571428265422583,0.02432653121650219,-1.6339181025016608e-19,7.478652104462501e-19,-0.0005714285653084517,1.248799120264675e-18,-0.0014285714132711291,-0.004081632476300001,0.0003571428533177823,-0.00017857142665889114,-8.04031381499363e-20,-1.6339181025016608e-19,1.3736264008912258e-05,1.3150405095062228e-20,1.7953399433489407e-20,-2.4139577888805195e-21,2.2906678918285545e-21,1.0528343527464999e-20,0.0011428571306169033,-0.00017582417058292776,-0.0005714285653084517,7.478652104462501e-19,1.3150405095062228e-20,8.791208529146388e-05,1.740968166151351e-20,-2.366196929611333e-19,-1.0996195266337858e-19,-1.6905519278688988e-19,0.0011428571306169033,-0.00017582417058292776,1.2287723538517301e-18,-0.0005714285653084517,1.7953399433489407e-20,1.740968166151351e-20,8.791208529146388e-05,-2.6721493247036186e-19,-1.3851750695371913e-19,-3.6282509471079227e-19,0.0020408162381500006,1.19407274754059e-18,-0.004081632476300001,1.248799120264675e-18,-2.4139577888805195e-21,-2.366196929611333e-19,-2.6721493247036186e-19,0.0010204081190750003,1.2295670159264522e-19,5.82325974702411e-20,0.0028571428265422583,4.468676789219456e-19,-0.0014285714132711291,-0.0014285714132711291,2.2906678918285545e-21,-1.0996195266337858e-19,-1.3851750695371913e-19,1.2295670159264522e-19,0.0007142857066355646,-4.1431062549368267e-19,0.0020408162381500006,1.2201557168083418e-18,1.662198347819689e-18,-0.004081632476300001,1.0528343527464999e-20,-1.6905519278688988e-19,-3.6282509471079227e-19,5.82325974702411e-20,-4.1431062549368267e-19,0.0010204081190750003,14.0,5.0,6.0,0.06967686861753464,-0.008767006918787956,-0.020476190373301506,-0.017806122079491615,0.00029761905898340046,0.0009523809421807528,0.0008163265301845968,0.001700680237263441,0.0020408162381500006,0.0012755101779475808,-0.008767006918787956,0.0026880560908466578,0.0009523809421807528,0.0008163265301845968,-0.00014880952949170023,-0.00014652014942839742,-0.000125588703667745,-5.485237301089202e-19,3.1422965786336042e-21,3.905621150109204e-20,-0.020476190373301506,0.0009523809421807528,0.0204421766102314,0.0020408162381500006,-1.374410994075433e-19,-0.0004761904710903764,3.7750721454148466e-19,-0.003401360474526882,-0.0010204081190750003,2.729954308571261e-18,-0.017806122079491615,0.0008163265301845968,0.0020408162381500006,0.014137755148112774,1.159509600181127e-19,2.5548352098101097e-19,-0.00032653060043230653,1.6641962991917343e-18,-0.0008163265301845968,-0.0019132653251290321,0.00029761905898340046,-0.00014880952949170023,-1.374410994075433e-19,1.159509600181127e-19,1.1446886674093548e-05,9.52210762956888e-36,-6.5348726459077524e-21,3.345182697532373e-20,9.826526014153504e-23,-1.4056538643055022e-20,0.0009523809421807528,-0.00014652014942839742,-0.0004761904710903764,2.5548352098101097e-19,9.52210762956888e-36,7.326007471419871e-05,-3.2220304485042155e-21,1.9692887883384825e-19,-1.6096135004650642e-20,-3.7016833243759495e-20,0.0008163265301845968,-0.000125588703667745,3.7750721454148466e-19,-0.00032653060043230653,-6.5348726459077524e-21,-3.2220304485042155e-21,5.023547782911919e-05,-9.294114120940589e-20,6.626556004065809e-21,8.41126554563245e-20,0.001700680237263441,-5.485237301089202e-19,-0.003401360474526882,1.6641962991917343e-18,3.345182697532373e-20,1.9692887883384825e-19,-9.294114120940589e-20,0.0008503401186317205,8.183096691700676e-19,-4.996716839024572e-19,0.0020408162381500006,3.1422965786336042e-21,-0.0010204081190750003,-0.0008163265301845968,9.826526014153504e-23,-1.6096135004650642e-20,6.626556004065809e-21,8.183096691700676e-19,0.0004081632650922984,-1.5305754558950847e-19,0.0012755101779475808,3.905621150109204e-20,2.729954308571261e-18,-0.0019132653251290321,-1.4056538643055022e-20,-3.7016833243759495e-20,8.41126554563245e-20,-4.996716839024572e-19,-1.5305754558950847e-19,0.00038265305920504034,14.0,5.0,7.0,0.061554908752441406,-0.007602040655910969,-0.01776967942714691,-0.013673469424247742,0.00025510202976875007,0.0008163265301845968,0.0006122448830865324,0.0014577260008081794,0.0015306122368201613,0.0008503401186317205,-0.007602040655910969,0.0023175040259957314,0.0008163265301845968,0.0006122448830865324,-0.00012755101488437504,-0.000125588703667745,-9.419152047485113e-05,3.2368019393839806e-19,-1.3892259280932284e-19,-9.431445101929086e-19,-0.01776967942714691,0.0008163265301845968,0.01763119548559189,0.0015306122368201613,6.387290296034438e-20,-0.0004081632650922984,-3.064423380465097e-20,-0.0029154520016163588,-0.0007653061184100807,2.371368876391321e-19,-0.013673469424247742,0.0006122448830865324,0.0015306122368201613,0.00897959154099226,-2.5597106640392856e-19,-2.883230307390666e-19,-0.0002040816325461492,6.723527195068967e-19,-0.0005102040595375001,-0.0010204081190750003,0.00025510202976875007,-0.00012755101488437504,6.387290296034438e-20,-2.5597106640392856e-19,9.811617019295227e-06,2.5868017822968062e-21,2.9949871418168823e-21,-1.9910373053470623e-20,-3.485408360319892e-22,3.783939004593532e-20,0.0008163265301845968,-0.000125588703667745,-0.0004081632650922984,-2.883230307390666e-19,2.5868017822968062e-21,6.27943518338725e-05,7.026934038761349e-21,4.5598954883619333e-20,4.90171204374556e-20,2.1060073325562637e-20,0.0006122448830865324,-9.419152047485113e-05,-3.064423380465097e-20,-0.0002040816325461492,2.9949871418168823e-21,7.026934038761349e-21,3.139717591693625e-05,-9.221453897387335e-21,3.9191546811917524e-21,9.85209720419133e-20,0.0014577260008081794,3.2368019393839806e-19,-0.0029154520016163588,6.723527195068967e-19,-1.9910373053470623e-20,4.5598954883619333e-20,-9.221453897387335e-21,0.0007288630004040897,-4.391909807795332e-21,-8.699313745612995e-20,0.0015306122368201613,-1.3892259280932284e-19,-0.0007653061184100807,-0.0005102040595375001,-3.485408360319892e-22,4.90171204374556e-20,3.9191546811917524e-21,-4.391909807795332e-21,0.00025510202976875007,-1.9729078327653728e-20,0.0008503401186317205,-9.431445101929086e-19,2.371368876391321e-19,-0.0010204081190750003,3.783939004593532e-20,2.1060073325562637e-20,9.85209720419133e-20,-8.699313745612995e-20,-1.9729078327653728e-20,0.0001700680295471102,14.0,5.0,8.0,0.05514030531048775,-0.006711309310048819,-0.015697278082370758,-0.010833333246409893,0.00022321428696159273,0.0007142857066355646,0.0004761904710903764,0.0012755101779475808,0.0011904762359336019,0.0005952381179668009,-0.006711309310048819,0.0020369733683764935,0.0007142857066355646,0.0004761904710903764,-0.00011160714348079637,-0.00010989011207129806,-7.326007471419871e-05,-5.147578039141993e-19,3.8038326983254325e-20,3.215814299291979e-19,-0.015697278082370758,0.0007142857066355646,0.015501700341701508,0.0011904762359336019,8.809142651444724e-20,-0.0003571428533177823,-7.24692469368613e-19,-0.0025510203558951616,-0.0005952381179668009,-1.2651300437007328e-18,-0.010833333246409893,0.0004761904710903764,0.0011904762359336019,0.006071428768336773,1.7957098481791167e-19,-2.8254870906503265e-20,-0.0001360544265480712,-3.295074383695292e-18,-0.0003401360590942204,-0.0005952381179668009,0.00022321428696159273,-0.00011160714348079637,8.809142651444724e-20,1.7957098481791167e-19,8.585165232943837e-06,3.3881317890172014e-21,-1.6940658945086007e-21,-1.2661425030769749e-20,-1.660689156792086e-20,-1.822326226157343e-20,0.0007142857066355646,-0.00010989011207129806,-0.0003571428533177823,-2.8254870906503265e-20,3.3881317890172014e-21,5.494505603564903e-05,5.082197683525802e-21,6.109694298575324e-20,1.8580408800153137e-20,-7.08050367694696e-21,0.0004761904710903764,-7.326007471419871e-05,-7.24692469368613e-19,-0.0001360544265480712,-1.6940658945086007e-21,5.082197683525802e-21,2.093144939863123e-05,1.4387961480171464e-19,3.8748991451711016e-20,2.860421052415522e-21,0.0012755101779475808,-5.147578039141993e-19,-0.0025510203558951616,-3.295074383695292e-18,-1.2661425030769749e-20,6.109694298575324e-20,1.4387961480171464e-19,0.0006377550889737904,1.558772879754281e-19,2.6906409472972415e-19,0.0011904762359336019,3.8038326983254325e-20,-0.0005952381179668009,-0.0003401360590942204,-1.660689156792086e-20,1.8580408800153137e-20,3.8748991451711016e-20,1.558772879754281e-19,0.0001700680295471102,7.922023109989426e-20,0.0005952381179668009,3.215814299291979e-19,-1.2651300437007328e-18,-0.0005952381179668009,-1.822326226157343e-20,-7.08050367694696e-21,2.860421052415522e-21,2.6906409472972415e-19,7.922023109989426e-20,8.50340147735551e-05,14.0,5.0,9.0,0.049942899495363235,-0.00600793631747365,-0.014058956876397133,-0.00879653636366129,0.00019841270113829523,0.0006349206087179482,0.0003809523768723011,0.0011337868636474013,0.0009523809421807528,0.00043290044413879514,-0.00600793631747365,0.0018171550473198295,0.0006349206087179482,0.0003809523768723011,-9.920635056914762e-05,-9.76800947682932e-05,-5.860805686097592e-05,-5.164375734781601e-21,2.350912570595914e-20,-0.0,-0.014058956876397133,0.0006349206087179482,0.01383219938725233,0.0009523809421807528,-1.9654800901379447e-21,-0.0003174603043589741,1.6437279152669142e-20,-0.0022675737272948027,-0.0004761904710903764,-0.0,-0.00879653636366129,0.0003809523768723011,0.0009523809421807528,0.004301793407648802,5.11764235257886e-22,-7.462806421814314e-22,-9.523809421807528e-05,1.3362640904916252e-37,-0.0002380952355451882,-0.0003710575110744685,0.00019841270113829523,-9.920635056914762e-05,-1.9654800901379447e-21,5.11764235257886e-22,7.631258085893933e-06,-3.151538443858841e-23,1.6125332955563406e-22,3.6928977110547434e-22,-3.1677632300864476e-22,-0.0,0.0006349206087179482,-9.76800947682932e-05,-0.0003174603043589741,-7.462806421814314e-22,-3.151538443858841e-23,4.88400473841466e-05,-1.5535086245585502e-38,-0.0,3.731403210907157e-22,-0.0,0.0003809523768723011,-5.860805686097592e-05,1.6437279152669142e-20,-9.523809421807528e-05,1.6125332955563406e-22,-1.5535086245585502e-38,1.465201421524398e-05,0.0,-4.956352735421586e-21,-0.0,0.0011337868636474013,-5.164375734781601e-21,-0.0022675737272948027,1.3362640904916252e-37,3.6928977110547434e-22,-0.0,0.0,0.0005668934318237007,-6.681320452458126e-38,-0.0,0.0009523809421807528,2.350912570595914e-20,-0.0004761904710903764,-0.0002380952355451882,-3.1677632300864476e-22,3.731403210907157e-22,-4.956352735421586e-21,-6.681320452458126e-38,0.0001190476177725941,-0.0,0.00043290044413879514,-0.0,-0.0,-0.0003710575110744685,-0.0,-0.0,-0.0,-0.0,-0.0,4.638218888430856e-05,14.0,5.0,10.0,0.04564471170306206,-0.005438311491161585,-0.012730983085930347,-0.007285714149475098,0.00017857142665889114,0.0005714285653084517,0.00031168831628747284,0.0010204081190750003,0.0007792207761667669,0.0003246753185521811,-0.005438311491161585,0.0016402347246184945,0.0005714285653084517,0.00031168831628747284,-8.928571332944557e-05,-8.791208529146388e-05,-4.795204949914478e-05,0.0,0.0,-0.0,-0.012730983085930347,0.0005714285653084517,0.012487940490245819,0.0007792207761667669,-3.0681760662597028e-21,-0.0002857142826542258,0.0,-0.0020408162381500006,-0.00038961038808338344,-0.0,-0.007285714149475098,0.00031168831628747284,0.0007792207761667669,0.0031612555030733347,-3.509302035749499e-21,0.0,-6.926406786078587e-05,0.0,-0.00017316016601398587,-0.00024350649619009346,0.00017857142665889114,-8.928571332944557e-05,-3.0681760662597028e-21,-3.509302035749499e-21,6.868132004456129e-06,5.673415433799471e-22,9.02162131895098e-22,0.0,0.0,-0.0,0.0005714285653084517,-8.791208529146388e-05,-0.0002857142826542258,0.0,5.673415433799471e-22,4.395604264573194e-05,0.0,0.0,0.0,-0.0,0.00031168831628747284,-4.795204949914478e-05,0.0,-6.926406786078587e-05,9.02162131895098e-22,0.0,1.065601099980995e-05,0.0,0.0,-0.0,0.0010204081190750003,0.0,-0.0020408162381500006,0.0,0.0,0.0,0.0,0.0005102040595375001,0.0,-0.0,0.0007792207761667669,0.0,-0.00038961038808338344,-0.00017316016601398587,0.0,0.0,0.0,0.0,8.658008300699294e-05,-0.0,0.0003246753185521811,-0.0,-0.0,-0.00024350649619009346,-0.0,-0.0,-0.0,-0.0,-0.0,2.7056277758674696e-05,14.0,5.0,11.0,0.04203011095523834,-0.0049675325863063335,-0.011632652953267097,-0.0061338660307228565,0.00016233765927609056,0.0005194804980419576,0.0002597402490209788,0.0009276437922380865,0.0006493506371043622,0.00024975024280138314,-0.0049675325863063335,0.001494755269959569,0.0005194804980419576,0.0002597402490209788,-8.116882963804528e-05,-7.992007886059582e-05,-3.996003943029791e-05,0.0,0.0,-0.0,-0.011632652953267097,0.0005194804980419576,0.011382189579308033,0.0006493506371043622,1.2125136940125842e-21,-0.0002597402490209788,0.0,-0.001855287584476173,-0.0003246753185521811,-0.0,-0.0061338660307228565,0.0002597402490209788,0.0006493506371043622,0.0023922743275761604,1.1650785411485585e-21,0.0,-5.194805271457881e-05,0.0,-0.0001298701245104894,-0.00016650016186758876,0.00016233765927609056,-8.116882963804528e-05,1.2125136940125842e-21,1.1650785411485585e-21,6.243756160984049e-06,-5.119840055951933e-22,-1.1408647775180488e-22,0.0,0.0,-0.0,0.0005194804980419576,-7.992007886059582e-05,-0.0002597402490209788,0.0,-5.119840055951933e-22,3.996003943029791e-05,0.0,0.0,0.0,-0.0,0.0002597402490209788,-3.996003943029791e-05,0.0,-5.194805271457881e-05,-1.1408647775180488e-22,0.0,7.992008249857463e-06,0.0,0.0,-0.0,0.0009276437922380865,0.0,-0.001855287584476173,0.0,0.0,0.0,0.0,0.00046382189611904323,0.0,-0.0,0.0006493506371043622,0.0,-0.0003246753185521811,-0.0001298701245104894,0.0,0.0,0.0,0.0,6.49350622552447e-05,-0.0,0.00024975024280138314,-0.0,-0.0,-0.00016650016186758876,-0.0,-0.0,-0.0,-0.0,-0.0,1.6650015822960995e-05,14.0,5.0,12.0,0.038947541266679764,-0.004571886267513037,-0.01070905290544033,-0.00523547874763608,0.00014880952949170023,0.0004761904710903764,0.00021978022414259613,0.0008503401186317205,0.0005494505749084055,0.00019623234402388334,-0.004571886267513037,0.0013730099890381098,0.0004761904710903764,0.00021978022414259613,-7.440476474585012e-05,-7.326007471419871e-05,-3.3812342735473067e-05,-1.9310760942670415e-18,-3.8624702394796095e-19,1.5246593050577406e-19,-0.01070905290544033,0.0004761904710903764,0.010456567630171776,0.0005494505749084055,-9.087070167383712e-19,-0.0002380952355451882,1.6601845766184287e-19,-0.001700680237263441,-0.00027472528745420277,3.8624702394796095e-19,-0.00523547874763608,0.00021978022414259613,0.0005494505749084055,0.0018545739585533738,-4.762244222590291e-20,-6.434345886896194e-20,-3.996003943029791e-05,1.5063954673252995e-18,-9.990009857574478e-05,-0.00011773940059356391,0.00014880952949170023,-7.440476474585012e-05,-9.087070167383712e-19,-4.762244222590291e-20,5.723443337046774e-06,2.6084214885432007e-20,4.653416011429296e-21,1.3434802552796317e-19,2.423984930427024e-20,-3.4208886259504414e-21,0.0004761904710903764,-7.326007471419871e-05,-0.0002380952355451882,-6.434345886896194e-20,2.6084214885432007e-20,3.6630037357099354e-05,9.579287868292513e-21,2.191942286289088e-19,3.99020650697386e-20,-6.499882663658689e-21,0.00021978022414259613,-3.3812342735473067e-05,1.6601845766184287e-19,-3.996003943029791e-05,4.653416011429296e-21,9.579287868292513e-21,6.147698513814248e-06,-5.460252827674921e-20,-6.862617518134531e-21,-1.9905274260476058e-20,0.0008503401186317205,-1.9310760942670415e-18,-0.001700680237263441,1.5063954673252995e-18,1.3434802552796317e-19,2.191942286289088e-19,-5.460252827674921e-20,0.00042517005931586027,-3.5612364574175417e-20,-8.092004848459951e-20,0.0005494505749084055,-3.8624702394796095e-19,-0.00027472528745420277,-9.990009857574478e-05,2.423984930427024e-20,3.99020650697386e-20,-6.862617518134531e-21,-3.5612364574175417e-20,4.995004928787239e-05,-8.470329472543003e-22,0.00019623234402388334,1.5246593050577406e-19,3.8624702394796095e-19,-0.00011773940059356391,-3.4208886259504414e-21,-6.499882663658689e-21,-1.9905274260476058e-20,-8.092004848459951e-20,-8.470329472543003e-22,1.0703582120186184e-05,14.0,5.0,13.0,0.03628728538751602,-0.004234693944454193,-0.009921506978571415,-0.004521192982792854,0.00013736264372710139,0.00043956044828519225,0.00018838304094970226,0.0007849293760955334,0.00047095760237425566,0.00015698587230872363,-0.004234693944454193,0.0012696232879534364,0.00043956044828519225,0.00018838304094970226,-6.868132186355069e-05,-6.762468547094613e-05,-2.8982007279410027e-05,0.0,0.0,1.6940658945086007e-20,-0.009921506978571415,0.00043956044828519225,0.00967032928019762,0.00047095760237425566,2.1605977794724257e-21,-0.00021978022414259613,0.0,-0.0015698587521910667,-0.00023547880118712783,-3.3881317890172014e-21,-0.004521192982792854,0.00018838304094970226,0.00047095760237425566,0.0014671043027192354,2.0557956518387693e-21,1.272510137816821e-21,-3.139717591693625e-05,-0.0,-7.849293615436181e-05,-8.562865696148947e-05,0.00013736264372710139,-6.868132186355069e-05,2.1605977794724257e-21,2.0557956518387693e-21,5.283178325043991e-06,-1.0988978822312703e-22,2.6974663202812817e-22,-0.0,-7.342979838706435e-23,-2.2659230544148756e-22,0.00043956044828519225,-6.762468547094613e-05,-0.00021978022414259613,1.272510137816821e-21,-1.0988978822312703e-22,3.3812342735473067e-05,-2.9711534071942974e-23,-0.0,-1.6364431962770463e-23,-8.103145770727852e-23,0.00018838304094970226,-2.8982007279410027e-05,0.0,-3.139717591693625e-05,2.6974663202812817e-22,-2.9711534071942974e-23,4.830334546568338e-06,0.0,1.4722677681562926e-22,-2.329340604949326e-21,0.0007849293760955334,0.0,-0.0015698587521910667,-0.0,-0.0,-0.0,0.0,0.0003924646880477667,0.0,0.0,0.00047095760237425566,0.0,-0.00023547880118712783,-7.849293615436181e-05,-7.342979838706435e-23,-1.6364431962770463e-23,1.4722677681562926e-22,0.0,3.924646807718091e-05,8.470329472543003e-22,0.00015698587230872363,1.6940658945086007e-20,-3.3881317890172014e-21,-8.562865696148947e-05,-2.2659230544148756e-22,-8.103145770727852e-23,-2.329340604949326e-21,0.0,8.470329472543003e-22,7.1357212618750054e-06,14.0,5.0,14.0,0.03396793082356453,-0.003943877760320902,-0.009241982363164425,-0.003943877760320902,0.00012755101488437504,0.0004081632650922984,0.00016326530021615326,0.0007288630004040897,0.0004081632650922984,0.00012755101488437504,-0.003943877760320902,0.0011807299451902509,0.0004081632650922984,0.00016326530021615326,-6.377550744218752e-05,-6.27943518338725e-05,-2.5117738914559595e-05,-2.0879051957088796e-18,-4.489274620447792e-19,-4.404571325722362e-20,-0.009241982363164425,0.0004081632650922984,0.008994169533252716,0.0004081632650922984,-8.013728359353146e-19,-0.0002040816325461492,-2.642742795433417e-19,-0.0014577260008081794,-0.0002040816325461492,1.2536087619363645e-19,-0.003943877760320902,0.00016326530021615326,0.0004081632650922984,0.0011807299451902509,-4.984175811585988e-20,-1.3415972561633372e-19,-2.5117738914559595e-05,2.447285186565965e-19,-6.27943518338725e-05,-6.377550744218752e-05,0.00012755101488437504,-6.377550744218752e-05,-8.013728359353146e-19,-4.984175811585988e-20,4.905808509647613e-06,2.244868500742756e-20,-2.027967769302644e-21,1.1515544491338397e-19,2.1079642932515478e-20,1.1007106214825958e-21,0.0004081632650922984,-6.27943518338725e-05,-0.0002040816325461492,-1.3415972561633372e-19,2.244868500742756e-20,3.139717591693625e-05,8.98994026110052e-21,1.8788077662813403e-19,3.837501211078328e-20,-1.2989716880215546e-22,0.00016326530021615326,-2.5117738914559595e-05,-2.642742795433417e-19,-2.5117738914559595e-05,-2.027967769302644e-21,8.98994026110052e-21,3.86426745535573e-06,2.6966963617455272e-20,1.1958370785507259e-20,4.0234064994579266e-21,0.0007288630004040897,-2.0879051957088796e-18,-0.0014577260008081794,2.447285186565965e-19,1.1515544491338397e-19,1.8788077662813403e-19,2.6966963617455272e-20,0.00036443150020204484,4.699206274447788e-20,-3.034501737393125e-20,0.0004081632650922984,-4.489274620447792e-19,-0.0002040816325461492,-6.27943518338725e-05,2.1079642932515478e-20,3.837501211078328e-20,1.1958370785507259e-20,4.699206274447788e-20,3.139717591693625e-05,0.0,0.00012755101488437504,-4.404571325722362e-20,1.2536087619363645e-19,-6.377550744218752e-05,1.1007106214825958e-21,-1.2989716880215546e-22,4.0234064994579266e-21,-3.034501737393125e-20,0.0,4.905808509647613e-06,14.0,5.0,15.0,0.031927771866321564,-0.003690476296469569,-0.008649660274386406,-0.003470588242635131,0.0001190476177725941,0.0003809523768723011,0.0001428571413271129,0.0006802721181884408,0.0003571428533177823,0.0001050420178216882,-0.003690476296469569,0.0011034798808395863,0.0003809523768723011,0.0001428571413271129,-5.952380888629705e-05,-5.860805686097592e-05,-2.197802132286597e-05,0.0,8.470329472543003e-22,-1.2705494208814505e-20,-0.008649660274386406,0.0003809523768723011,0.008406462147831917,0.0003571428533177823,6.742656942268735e-22,-0.00019047618843615055,1.6940658945086007e-21,-0.0013605442363768816,-0.00017857142665889114,0.0,-0.003470588242635131,0.0001428571413271129,0.0003571428533177823,0.0009644473320804536,2.458288893989358e-21,1.6730494283031625e-21,-2.0408162527019158e-05,-0.0,-5.10204081365373e-05,-4.848093158216216e-05,0.0001190476177725941,-5.952380888629705e-05,6.742656942268735e-22,2.458288893989358e-21,4.578754669637419e-06,-1.6985461448228257e-22,8.216545472486459e-23,-0.0,-3.2351362427956464e-23,-1.4383193599811598e-22,0.0003809523768723011,-5.860805686097592e-05,-0.00019047618843615055,1.6730494283031625e-21,-1.6985461448228257e-22,2.930402843048796e-05,-2.4832604184727613e-22,-0.0,-6.388520621172705e-23,-3.3929642751919384e-23,0.0001428571413271129,-2.197802132286597e-05,1.6940658945086007e-21,-2.0408162527019158e-05,8.216545472486459e-23,-2.4832604184727613e-22,3.1397173643199494e-06,0.0,1.3038089830923698e-22,1.9058241313221758e-21,0.0006802721181884408,0.0,-0.0013605442363768816,-0.0,-0.0,-0.0,0.0,0.0003401360590942204,0.0,0.0,0.0003571428533177823,8.470329472543003e-22,-0.00017857142665889114,-5.10204081365373e-05,-3.2351362427956464e-23,-6.388520621172705e-23,1.3038089830923698e-22,0.0,2.551020406826865e-05,0.0,0.0001050420178216882,-1.2705494208814505e-20,0.0,-4.848093158216216e-05,-1.4383193599811598e-22,-3.3929642751919384e-23,1.9058241313221758e-21,0.0,0.0,3.462923586994293e-06,14.0,5.0,16.0,0.030119173228740692,-0.0034676995128393173,-0.008128751069307327,-0.0030777310021221638,0.00011160714348079637,0.0003571428533177823,0.00012605042138602585,0.0006377550889737904,0.00031512606074102223,8.753501606406644e-05,-0.0034676995128393173,0.0010357244173064828,0.0003571428533177823,0.00012605042138602585,-5.5803571740398183e-05,-5.494505603564903e-05,-1.939237154147122e-05,0.0,1.6940658945086007e-21,-9.317362419797304e-21,-0.008128751069307327,0.0003571428533177823,0.007890906184911728,0.00031512606074102223,-2.8672848743538648e-21,-0.00017857142665889114,8.470329472543003e-22,-0.0012755101779475808,-0.00015756303037051111,3.3881317890172014e-21,-0.0030777310021221638,0.00012605042138602585,0.00031512606074102223,0.0007980192312970757,2.8028489990540828e-21,1.3843426948120028e-21,-1.6806723579065874e-05,-0.0,-4.201680712867528e-05,-3.751500480575487e-05,0.00011160714348079637,-5.5803571740398183e-05,-2.8672848743538648e-21,2.8028489990540828e-21,4.292582616471918e-06,-9.764136898425747e-24,-2.7933428338711606e-22,-0.0,1.2425523245257116e-23,-9.483733134221317e-23,0.0003571428533177823,-5.494505603564903e-05,-0.00017857142665889114,1.3843426948120028e-21,-9.764136898425747e-24,2.7472528017824516e-05,-2.4220619778409084e-22,-0.0,-4.5423980385157323e-23,-6.796420400423316e-23,0.00012605042138602585,-1.939237154147122e-05,8.470329472543003e-22,-1.6806723579065874e-05,-2.7933428338711606e-22,-2.4220619778409084e-22,2.5856495540210744e-06,0.0,-1.1291402849825472e-22,1.376428539288238e-21,0.0006377550889737904,0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,0.0,0.0003188775444868952,0.0,0.0,0.00031512606074102223,1.6940658945086007e-21,-0.00015756303037051111,-4.201680712867528e-05,1.2425523245257116e-23,-4.5423980385157323e-23,-1.1291402849825472e-22,0.0,2.100840356433764e-05,-4.235164736271502e-22,8.753501606406644e-05,-9.317362419797304e-21,3.3881317890172014e-21,-3.751500480575487e-05,-9.483733134221317e-23,-6.796420400423316e-23,1.376428539288238e-21,0.0,-4.235164736271502e-22,2.501000381016638e-06,14.0,6.0,3.0,0.10104875266551971,-0.013818027451634407,-0.02797619067132473,-0.046088434755802155,0.0004960317746736109,0.0013605442363768816,0.0023809524718672037,0.002125850412994623,0.005102040711790323,0.0059523810632526875,-0.013818027451634407,0.004357993137091398,0.0013605442363768816,0.0023809524718672037,-0.00024801588733680546,-0.00020931450126226991,-0.00036630037357099354,-2.1480755542369057e-18,-8.673617379884035e-19,4.979834599710248e-19,-0.02797619067132473,0.0013605442363768816,0.022882653400301933,0.005102040711790323,-1.8973538018496328e-19,-0.0005442177061922848,-2.168404344971009e-19,-0.0031887756194919348,-0.0020408162381500006,-5.81953324666577e-18,-0.046088434755802155,0.0023809524718672037,0.005102040711790323,0.10561224818229675,6.978660198265409e-19,-6.338362950542838e-19,-0.0023809524718672037,-1.1384122811097797e-17,-0.005102040711790323,-0.0357142873108387,0.0004960317746736109,-0.00024801588733680546,-1.8973538018496328e-19,6.978660198265409e-19,1.907814475998748e-05,-5.082197683525802e-21,-1.8634724839594607e-20,4.743384504624082e-20,6.776263578034403e-21,-2.811703741329264e-19,0.0013605442363768816,-0.00020931450126226991,-0.0005442177061922848,-6.338362950542838e-19,-5.082197683525802e-21,8.372579759452492e-05,-9.586314864531379e-21,5.793705359219414e-19,8.131516293641283e-20,2.356029845907291e-19,0.0023809524718672037,-0.00036630037357099354,-2.168404344971009e-19,-0.0023809524718672037,-1.8634724839594607e-20,-9.586314864531379e-21,0.00036630037357099354,-2.6684048864813313e-21,3.317120142887114e-19,2.478176453336911e-18,0.002125850412994623,-2.1480755542369057e-18,-0.0031887756194919348,-1.1384122811097797e-17,4.743384504624082e-20,5.793705359219414e-19,-2.6684048864813313e-21,0.0006377550889737904,3.144186300207963e-18,1.734723475976807e-18,0.005102040711790323,-8.673617379884035e-19,-0.0020408162381500006,-0.005102040711790323,6.776263578034403e-21,8.131516293641283e-20,3.317120142887114e-19,3.144186300207963e-18,0.0020408162381500006,-4.8930690403201464e-18,0.0059523810632526875,4.979834599710248e-19,-5.81953324666577e-18,-0.0357142873108387,-2.811703741329264e-19,2.356029845907291e-19,2.478176453336911e-18,1.734723475976807e-18,-4.8930690403201464e-18,0.01785714365541935,14.0,6.0,4.0,0.08240221440792084,-0.010720663703978062,-0.021747449412941933,-0.029438775032758713,0.00037202381645329297,0.0010204081190750003,0.0014285714132711291,0.0015943878097459674,0.0030612244736403227,0.0029761905316263437,-0.010720663703978062,0.0033234399743378162,0.0010204081190750003,0.0014285714132711291,-0.00018601190822664648,-0.00015698587230872363,-0.00021978022414259613,3.949835763307753e-19,-2.970297270716466e-19,2.4612138741055924e-18,-0.021747449412941933,0.0010204081190750003,0.017468111589550972,0.0030612244736403227,-9.674847908557701e-20,-0.0004081632650922984,-1.7567747152401871e-19,-0.00239158165641129,-0.0012244897661730647,6.140990108364596e-18,-0.029438775032758713,0.0014285714132711291,0.0030612244736403227,0.04045918211340904,-2.3682841712530944e-20,7.499379053414577e-20,-0.0009523809421807528,5.362824910189011e-18,-0.0020408162381500006,-0.008928571827709675,0.00037202381645329297,-0.00018601190822664648,-9.674847908557701e-20,-2.3682841712530944e-20,1.430860811524326e-05,6.013481076431902e-21,4.8550364389776946e-21,9.349180600605752e-22,3.197041112172661e-20,-3.340795732229001e-20,0.0010204081190750003,-0.00015698587230872363,-0.0004081632650922984,7.499379053414577e-20,6.013481076431902e-21,6.27943518338725e-05,-9.025809526647205e-21,-1.819799544815163e-19,-3.3986418295580265e-20,2.810584914927301e-20,0.0014285714132711291,-0.00021978022414259613,-1.7567747152401871e-19,-0.0009523809421807528,4.8550364389776946e-21,-9.025809526647205e-21,0.00014652014942839742,5.0001998510147886e-20,-2.5654699736776714e-20,-1.4460691852518072e-18,0.0015943878097459674,3.949835763307753e-19,-0.00239158165641129,5.362824910189011e-18,9.349180600605752e-22,-1.819799544815163e-19,5.0001998510147886e-20,0.00047831633128225803,-1.0666590158617501e-18,-8.987257384794236e-19,0.0030612244736403227,-2.970297270716466e-19,-0.0012244897661730647,-0.0020408162381500006,3.197041112172661e-20,-3.3986418295580265e-20,-2.5654699736776714e-20,-1.0666590158617501e-18,0.0008163265301845968,-1.3443517159043505e-18,0.0029761905316263437,2.4612138741055924e-18,6.140990108364596e-18,-0.008928571827709675,-3.340795732229001e-20,2.810584914927301e-20,-1.4460691852518072e-18,-8.987257384794236e-19,-1.3443517159043505e-18,0.0029761905316263437,14.0,6.0,5.0,0.06967686861753464,-0.008767006918787956,-0.017806122079491615,-0.020476190373301506,0.00029761905898340046,0.0008163265301845968,0.0009523809421807528,0.0012755101779475808,0.0020408162381500006,0.001700680237263441,-0.008767006918787956,0.0026880560908466578,0.0008163265301845968,0.0009523809421807528,-0.00014880952949170023,-0.000125588703667745,-0.00014652014942839742,4.710343809031417e-19,2.3649917662329346e-20,-1.360340651855906e-19,-0.017806122079491615,0.0008163265301845968,0.014137755148112774,0.0020408162381500006,1.9205454905331761e-19,-0.00032653060043230653,-5.2344173339288855e-20,-0.0019132653251290321,-0.0008163265301845968,-2.3365476745301356e-19,-0.020476190373301506,0.0009523809421807528,0.0020408162381500006,0.0204421766102314,-2.792854169250256e-20,1.2955263979714306e-19,-0.0004761904710903764,-7.013934540005909e-20,-0.0010204081190750003,-0.003401360474526882,0.00029761905898340046,-0.00014880952949170023,1.9205454905331761e-19,-2.792854169250256e-20,1.1446886674093548e-05,-7.929186946458532e-21,-4.5269034219419985e-21,-3.0247862426047484e-20,7.056301373887682e-21,8.23409912961879e-21,0.0008163265301845968,-0.000125588703667745,-0.00032653060043230653,1.2955263979714306e-19,-7.929186946458532e-21,5.023547782911919e-05,-4.297536093162561e-21,-5.144887311082238e-20,-2.1346240659001905e-20,-1.554245390682003e-20,0.0009523809421807528,-0.00014652014942839742,-5.2344173339288855e-20,-0.0004761904710903764,-4.5269034219419985e-21,-4.297536093162561e-21,7.326007471419871e-05,3.4292400805216726e-20,-4.3291909381117726e-20,-3.144207818212999e-21,0.0012755101779475808,4.710343809031417e-19,-0.0019132653251290321,-7.013934540005909e-20,-3.0247862426047484e-20,-5.144887311082238e-20,3.4292400805216726e-20,0.00038265305920504034,5.499408197451942e-20,-8.056100039996322e-20,0.0020408162381500006,2.3649917662329346e-20,-0.0008163265301845968,-0.0010204081190750003,7.056301373887682e-21,-2.1346240659001905e-20,-4.3291909381117726e-20,5.499408197451942e-20,0.0004081632650922984,4.0061949388622295e-19,0.001700680237263441,-1.360340651855906e-19,-2.3365476745301356e-19,-0.003401360474526882,8.23409912961879e-21,-1.554245390682003e-20,-3.144207818212999e-21,-8.056100039996322e-20,4.0061949388622295e-19,0.0008503401186317205,14.0,6.0,6.0,0.06040047109127045,-0.007419217843562365,-0.015081389807164669,-0.015081389807164669,0.00024801588733680546,0.0006802721181884408,0.0006802721181884408,0.0010629252064973116,0.0014577260008081794,0.0010629252064973116,-0.007419217843562365,0.00225748959928751,0.0006802721181884408,0.0006802721181884408,-0.00012400794366840273,-0.00010465725063113496,-0.00010465725063113496,-7.744624275610684e-19,2.3626289700496167e-21,-6.734631577804609e-19,-0.015081389807164669,0.0006802721181884408,0.011878644116222858,0.0014577260008081794,-6.157792912490722e-20,-0.0002721088530961424,1.5901468064126517e-19,-0.0015943878097459674,-0.000583090353757143,-4.085658871587749e-18,-0.015081389807164669,0.0006802721181884408,0.0014577260008081794,0.011878644116222858,-1.1473534702213214e-20,7.128774997126972e-20,-0.0002721088530961424,-5.218076988388663e-18,-0.000583090353757143,-0.0015943878097459674,0.00024801588733680546,-0.00012400794366840273,-6.157792912490722e-20,-1.1473534702213214e-20,9.53907237999374e-06,4.610997963435378e-21,-5.258883038275506e-22,2.9340344723777728e-21,5.4192564155794715e-21,2.687335831645306e-22,0.0006802721181884408,-0.00010465725063113496,-0.0002721088530961424,7.128774997126972e-20,4.610997963435378e-21,4.186289879726246e-05,-1.1705141234760227e-20,2.9138331466217723e-19,1.4152903568830316e-20,-5.691080364495649e-22,0.0006802721181884408,-0.00010465725063113496,1.5901468064126517e-19,-0.0002721088530961424,-5.258883038275506e-22,-1.1705141234760227e-20,4.186289879726246e-05,8.887673595525117e-21,-3.304498012974408e-20,2.7541991791203434e-19,0.0010629252064973116,-7.744624275610684e-19,-0.0015943878097459674,-5.218076988388663e-18,2.9340344723777728e-21,2.9138331466217723e-19,8.887673595525117e-21,0.0003188775444868952,1.1087840157366256e-18,4.679819293464562e-19,0.0014577260008081794,2.3626289700496167e-21,-0.000583090353757143,-0.000583090353757143,5.4192564155794715e-21,1.4152903568830316e-20,-3.304498012974408e-20,1.1087840157366256e-18,0.0002332361473236233,7.055655720645493e-19,0.0010629252064973116,-6.734631577804609e-19,-4.085658871587749e-18,-0.0015943878097459674,2.687335831645306e-22,-5.691080364495649e-22,2.7541991791203434e-19,4.679819293464562e-19,7.055655720645493e-19,0.0003188775444868952,14.0,6.0,7.0,0.05332442373037338,-0.006432215683162212,-0.01308309007436037,-0.011576773598790169,0.00021258502965793014,0.000583090353757143,0.0005102040595375001,0.0009110787068493664,0.001093294471502304,0.0007086168043315411,-0.006432215683162212,0.0019462043419480324,0.000583090353757143,0.0005102040595375001,-0.00010629251482896507,-8.970621274784207e-05,-7.849293615436181e-05,-8.5497641437543535e-19,-4.0814417497285885e-19,-2.1439338867592468e-19,-0.01308309007436037,0.000583090353757143,0.010244169272482395,0.001093294471502304,-2.379994560722659e-19,-0.0002332361473236233,-4.634234920870413e-19,-0.00136661808937788,-0.0004373177944216877,1.6639278273841725e-19,-0.011576773598790169,0.0005102040595375001,0.001093294471502304,0.007543731946498156,-1.633303145415016e-19,-1.5423226807513021e-21,-0.0001700680295471102,-4.701861588837568e-19,-0.00036443150020204484,-0.0008503401186317205,0.00021258502965793014,-0.00010629251482896507,-2.379994560722659e-19,-1.633303145415016e-19,8.176347364496905e-06,-7.469542915291667e-22,-3.9252854304680915e-21,2.975548962877383e-20,2.910031734719208e-20,1.9066635903969464e-20,0.000583090353757143,-8.970621274784207e-05,-0.0002332361473236233,-1.5423226807513021e-21,-7.469542915291667e-22,3.5882483643945307e-05,-3.829584107108044e-21,4.5238265362455e-20,2.0074397152826206e-20,-6.766073262187375e-21,0.0005102040595375001,-7.849293615436181e-05,-4.634234920870413e-19,-0.0001700680295471102,-3.9252854304680915e-21,-3.829584107108044e-21,2.616431265778374e-05,9.500379361498929e-20,1.9444782651909074e-21,-9.524638210107894e-21,0.0009110787068493664,-8.5497641437543535e-19,-0.00136661808937788,-4.701861588837568e-19,2.975548962877383e-20,4.5238265362455e-20,9.500379361498929e-20,0.000273323617875576,4.4806528781490604e-20,-6.294947212870256e-20,0.001093294471502304,-4.0814417497285885e-19,-0.0004373177944216877,-0.00036443150020204484,2.910031734719208e-20,2.0074397152826206e-20,1.9444782651909074e-21,4.4806528781490604e-20,0.00014577258843928576,7.497485585293655e-20,0.0007086168043315411,-2.1439338867592468e-19,1.6639278273841725e-19,-0.0008503401186317205,1.9066635903969464e-20,-6.766073262187375e-21,-9.524638210107894e-21,-6.294947212870256e-20,7.497485585293655e-20,0.00014172335795592517,14.0,6.0,8.0,0.0477430559694767,-0.005677791777998209,-0.011553996242582798,-0.0091695012524724,0.00018601190822664648,0.0005102040595375001,0.00039682540227659047,0.0007971939048729837,0.0008503401186317205,0.0004960317746736109,-0.005677791777998209,0.0017105600563809276,0.0005102040595375001,0.00039682540227659047,-9.300595411332324e-05,-7.849293615436181e-05,-6.105006468715146e-05,4.099069227076035e-19,-8.021125809721814e-20,-5.110027141259383e-19,-0.011553996242582798,0.0005102040595375001,0.009006164968013763,0.0008503401186317205,2.6248003109066042e-20,-0.0002040816325461492,-1.3619465454669952e-19,-0.001195790828205645,-0.0003401360590942204,-1.7027328086235957e-19,-0.0091695012524724,0.00039682540227659047,0.0008503401186317205,0.005100016016513109,-1.8279687288459484e-19,-1.9252389650275903e-19,-0.00011337868636474013,2.0402641419191942e-18,-0.00024295432376675308,-0.0004960317746736109,0.00018601190822664648,-9.300595411332324e-05,2.6248003109066042e-20,-1.8279687288459484e-19,7.15430405762163e-06,-2.3689402611881682e-21,8.45574152851752e-21,-2.6417646624370088e-21,1.899616439708585e-22,1.6500170728617315e-20,0.0005102040595375001,-7.849293615436181e-05,-0.0002040816325461492,-1.9252389650275903e-19,-2.3689402611881682e-21,3.139717591693625e-05,8.456279519033106e-21,-9.997907174199408e-20,-2.756814297702233e-20,2.732255434562504e-20,0.00039682540227659047,-6.105006468715146e-05,-1.3619465454669952e-19,-0.00011337868636474013,8.45574152851752e-21,8.456279519033106e-21,1.744287510518916e-05,-1.7096924995024638e-20,4.120495531386631e-20,5.590627478205788e-20,0.0007971939048729837,4.099069227076035e-19,-0.001195790828205645,2.0402641419191942e-18,-2.6417646624370088e-21,-9.997907174199408e-20,-1.7096924995024638e-20,0.00023915816564112902,-5.400352543616893e-19,-7.868266063696282e-20,0.0008503401186317205,-8.021125809721814e-20,-0.0003401360590942204,-0.00024295432376675308,1.899616439708585e-22,-2.756814297702233e-20,4.120495531386631e-20,-5.400352543616893e-19,9.718172805150971e-05,9.003349149635689e-20,0.0004960317746736109,-5.110027141259383e-19,-1.7027328086235957e-19,-0.0004960317746736109,1.6500170728617315e-20,2.732255434562504e-20,5.590627478205788e-20,-7.868266063696282e-20,9.003349149635689e-20,7.086167897796258e-05,14.0,6.0,9.0,0.043225280940532684,-0.005082199349999428,-0.010345805436372757,-0.007443826179951429,0.0001653439103392884,0.00045351474545896053,0.0003174603043589741,0.0007086168043315411,0.0006802721181884408,0.0003607503604143858,-0.005082199349999428,0.0015259244246408343,0.00045351474545896053,0.0003174603043589741,-8.26719551696442e-05,-6.977150042075664e-05,-4.88400473841466e-05,0.0,0.0,-0.0,-0.010345805436372757,0.00045351474545896053,0.008035714738070965,0.0006802721181884408,3.658552802455985e-21,-0.00018140589236281812,-1.0164395367051604e-20,-0.0010629252064973116,-0.0002721088530961424,4.168608491715778e-19,-0.007443826179951429,0.0003174603043589741,0.0006802721181884408,0.0036131725646555424,3.3031490784969646e-21,-8.470329472543003e-21,-7.936507608974352e-05,9.300317329299883e-19,-0.0001700680295471102,-0.0003092146071139723,0.0001653439103392884,-8.26719551696442e-05,3.658552802455985e-21,3.3031490784969646e-21,6.359381586662494e-06,-8.350286804655967e-22,-5.502354038837043e-22,0.0,-0.0,-0.0,0.00045351474545896053,-6.977150042075664e-05,-0.00018140589236281812,-8.470329472543003e-21,-8.350286804655967e-22,2.7908599804504775e-05,1.6940658945086007e-21,0.0,-0.0,-0.0,0.0003174603043589741,-4.88400473841466e-05,-1.0164395367051604e-20,-7.936507608974352e-05,-5.502354038837043e-22,1.6940658945086007e-21,1.221001184603665e-05,0.0,0.0,-0.0,0.0007086168043315411,0.0,-0.0010629252064973116,9.300317329299883e-19,0.0,0.0,0.0,0.00021258502965793014,-1.052217489267037e-19,-8.337216724937615e-20,0.0006802721181884408,0.0,-0.0002721088530961424,-0.0001700680295471102,-0.0,-0.0,0.0,-1.052217489267037e-19,6.80272132740356e-05,4.1266148185067624e-35,0.0003607503604143858,-0.0,4.168608491715778e-19,-0.0003092146071139723,-0.0,-0.0,-0.0,-8.337216724937615e-20,4.1266148185067624e-35,3.865182588924654e-05,14.0,6.0,10.0,0.03949211537837982,-0.004599953535944223,-0.009366882964968681,-0.006164193153381348,0.00014880952949170023,0.0004081632650922984,0.0002597402490209788,0.0006377550889737904,0.0005565862520597875,0.00027056277031078935,-0.004599953535944223,0.0013773280661553144,0.0004081632650922984,0.0002597402490209788,-7.440476474585012e-05,-6.27943518338725e-05,-3.996003943029791e-05,2.2427135983118273e-19,-5.410323171925454e-19,-6.539032314257257e-19,-0.009366882964968681,0.0004081632650922984,0.007254406344145536,0.0005565862520597875,-2.325335564444406e-20,-0.00016326530021615326,-5.72428577727455e-19,-0.0009566326625645161,-0.00022263450955506414,-1.456933065224349e-18,-0.006164193153381348,0.0002597402490209788,0.0005565862520597875,0.0026549939066171646,-5.267872330686166e-19,-4.744610282894309e-19,-5.77200589759741e-05,-3.269271518462466e-18,-0.00012368583702482283,-0.000202922077733092,0.00014880952949170023,-7.440476474585012e-05,-2.325335564444406e-20,-5.267872330686166e-19,5.723443337046774e-06,6.443677598960915e-21,1.5590835894718713e-20,-2.4169028426668924e-20,2.2103055989525373e-20,3.697046266184251e-20,0.0004081632650922984,-6.27943518338725e-05,-0.00016326530021615326,-4.744610282894309e-19,6.443677598960915e-21,2.5117738914559595e-05,1.0587911840678754e-20,-9.585571209773648e-20,2.994281372577441e-20,2.915385144246075e-20,0.0002597402490209788,-3.996003943029791e-05,-5.72428577727455e-19,-5.77200589759741e-05,1.5590835894718713e-20,1.0587911840678754e-20,8.880008863343392e-06,6.549053865872278e-20,3.298091886871097e-20,1.9025423891770997e-20,0.0006377550889737904,2.2427135983118273e-19,-0.0009566326625645161,-3.269271518462466e-18,-2.4169028426668924e-20,-9.585571209773648e-20,6.549053865872278e-20,0.00019132652960252017,2.568759502952733e-19,2.188519309516767e-19,0.0005565862520597875,-5.410323171925454e-19,-0.00022263450955506414,-0.00012368583702482283,2.2103055989525373e-20,2.994281372577441e-20,3.298091886871097e-20,2.568759502952733e-19,4.9474336265120655e-05,2.9328376858186634e-20,0.00027056277031078935,-6.539032314257257e-19,-1.456933065224349e-18,-0.000202922077733092,3.697046266184251e-20,2.915385144246075e-20,1.9025423891770997e-20,2.188519309516767e-19,2.9328376858186634e-20,2.2546897525899112e-05,14.0,6.0,11.0,0.03635471686720848,-0.0042014531791210175,-0.008557514287531376,-0.005188858602195978,0.00013528138515539467,0.0003710575110744685,0.00021645022206939757,0.0005797773483209312,0.00046382189611904323,0.00020812520233448595,-0.0042014531791210175,0.001255143666639924,0.0003710575110744685,0.00021645022206939757,-6.764069257769734e-05,-5.7085770095000044e-05,-3.330003164592199e-05,0.0,0.0,-0.0,-0.008557514287531376,0.0003710575110744685,0.006611781194806099,0.00046382189611904323,6.016244134327642e-21,-0.00014842300151940435,-3.3881317890172014e-21,-0.0008696660515852273,-0.00018552875553723425,2.31065407792387e-19,-0.005188858602195978,0.00021645022206939757,0.00046382189611904323,0.0020090227480977774,-4.665677308033582e-22,-3.3881317890172014e-21,-4.329004150349647e-05,4.62130815584774e-19,-9.276437776861712e-05,-0.0001387501397402957,0.00013528138515539467,-6.764069257769734e-05,6.016244134327642e-21,-4.665677308033582e-22,5.203130058362149e-06,-6.076918922779722e-22,-7.305931775153636e-23,0.0,0.0,-0.0,0.0003710575110744685,-5.7085770095000044e-05,-0.00014842300151940435,-3.3881317890172014e-21,-6.076918922779722e-22,2.283430876559578e-05,6.352747104407253e-22,0.0,0.0,-0.0,0.00021645022206939757,-3.330003164592199e-05,-3.3881317890172014e-21,-4.329004150349647e-05,-7.305931775153636e-23,6.352747104407253e-22,6.660006874881219e-06,0.0,0.0,-0.0,0.0005797773483209312,0.0,-0.0008696660515852273,4.62130815584774e-19,0.0,0.0,0.0,0.0001739332074066624,0.0,-4.6213078327303136e-20,0.00046382189611904323,0.0,-0.00018552875553723425,-9.276437776861712e-05,0.0,0.0,0.0,0.0,3.710575037985109e-05,-0.0,0.00020812520233448595,-0.0,2.31065407792387e-19,-0.0001387501397402957,-0.0,-0.0,-0.0,-4.6213078327303136e-20,-0.0,1.387501379213063e-05,14.0,6.0,12.0,0.03368055447936058,-0.0038665947504341602,-0.007877092808485031,-0.004428309854120016,0.00012400794366840273,0.0003401360590942204,0.00018315018678549677,0.0005314626032486558,0.0003924646880477667,0.0001635269436519593,-0.0038665947504341602,0.0011528964387252927,0.0003401360590942204,0.00018315018678549677,-6.200397183420137e-05,-5.232862531556748e-05,-2.8176951673231088e-05,1.0893083325574001e-19,2.371692252312041e-20,1.6940658945086007e-21,-0.007877092808485031,0.0003401360590942204,0.006073881406337023,0.0003924646880477667,-6.127448631824523e-21,-0.0001360544265480712,-6.776263578034403e-21,-0.0007971939048729837,-0.00015698587230872363,1.7957098481791167e-19,-0.004428309854120016,0.00018315018678549677,0.0003924646880477667,0.001557371229864657,-2.3802903666489392e-21,1.3508041964337072e-20,-3.330003164592199e-05,5.592658594350518e-19,-7.135721534723416e-05,-9.811617201194167e-05,0.00012400794366840273,-6.200397183420137e-05,-6.127448631824523e-21,-2.3802903666489392e-21,4.76953618999687e-06,9.224077610892776e-22,2.8131835060528105e-22,-2.2955997005594728e-36,3.2519165764271456e-23,-5.251599138438802e-23,0.0003401360590942204,-5.232862531556748e-05,-0.0001360544265480712,1.3508041964337072e-20,9.224077610892776e-22,2.093144939863123e-05,1.0347847709485813e-21,-4.3572333302296005e-20,-8.513191806998742e-21,1.2968093256170352e-22,0.00018315018678549677,-2.8176951673231088e-05,-6.776263578034403e-21,-3.330003164592199e-05,2.8131835060528105e-22,1.0347847709485813e-21,5.123082246427657e-06,-4.2502490009277904e-36,-2.4031644046486684e-22,-4.235164736271502e-22,0.0005314626032486558,1.0893083325574001e-19,-0.0007971939048729837,5.592658594350518e-19,-2.2955997005594728e-36,-4.3572333302296005e-20,-4.2502490009277904e-36,0.0001594387722434476,-6.622347884258159e-20,-3.579155903671825e-20,0.0003924646880477667,2.371692252312041e-20,-0.00015698587230872363,-7.135721534723416e-05,3.2519165764271456e-23,-8.513191806998742e-21,-2.4031644046486684e-22,-6.622347884258159e-20,2.8542885047500022e-05,-8.470329472543003e-22,0.0001635269436519593,1.6940658945086007e-21,1.7957098481791167e-19,-9.811617201194167e-05,-5.251599138438802e-23,1.2968093256170352e-22,-4.235164736271502e-22,-3.579155903671825e-20,-8.470329472543003e-22,8.91965191840427e-06,14.0,6.0,13.0,0.03137381374835968,-0.003581240074709058,-0.007297039497643709,-0.0038237273693084717,0.00011446886492194608,0.00031397174461744726,0.00015698587230872363,0.0004905808600597084,0.00033639828325249255,0.00013082155783195049,-0.003581240074709058,0.0010660699335858226,0.00031397174461744726,0.00015698587230872363,-5.723443246097304e-05,-4.8303343646693975e-05,-2.4151671823346987e-05,-7.222237291452134e-35,-5.929230630780102e-21,1.5246593050577406e-20,-0.007297039497643709,0.00031397174461744726,0.005617010407149792,0.00033639828325249255,6.06246487053796e-21,-0.000125588703667745,-9.317362419797304e-21,-0.0007358712609857321,-0.0001345593191217631,1.2197274440461925e-19,-0.0038237273693084717,0.00015698587230872363,0.00033639828325249255,0.0012319313827902079,1.836746876135112e-21,-4.274120581037488e-21,-2.616431265778374e-05,4.596002115970329e-19,-5.6066382967401296e-05,-7.135721534723416e-05,0.00011446886492194608,-5.723443246097304e-05,6.06246487053796e-21,1.836746876135112e-21,4.402648755785776e-06,-9.926570237677847e-22,-3.2204727700716534e-22,-7.158305185717213e-37,1.2676276567933547e-22,3.2545220262249096e-23,0.00031397174461744726,-4.8303343646693975e-05,-0.000125588703667745,-4.274120581037488e-21,-9.926570237677847e-22,1.932133818627335e-05,7.3982359479114395e-22,4.163499433468158e-37,-3.536798230673972e-23,7.337512086000168e-23,0.00015698587230872363,-2.4151671823346987e-05,-9.317362419797304e-21,-2.616431265778374e-05,-3.2204727700716534e-22,7.3982359479114395e-22,4.0252789403893985e-06,1.2022049918657647e-35,9.480820659759241e-22,-2.541098841762901e-21,0.0004905808600597084,-7.222237291452134e-35,-0.0007358712609857321,4.596002115970329e-19,-7.158305185717213e-37,4.163499433468158e-37,1.2022049918657647e-35,0.0001471742580179125,-4.803021318732314e-20,-2.8293722545899115e-20,0.00033639828325249255,-5.929230630780102e-21,-0.0001345593191217631,-5.6066382967401296e-05,1.2676276567933547e-22,-3.536798230673972e-23,9.480820659759241e-22,-4.803021318732314e-20,2.242655318696052e-05,4.235164736271502e-21,0.00013082155783195049,1.5246593050577406e-20,1.2197274440461925e-19,-7.135721534723416e-05,3.2545220262249096e-23,7.337512086000168e-23,-2.541098841762901e-21,-2.8293722545899115e-20,4.235164736271502e-21,5.946434612269513e-06,14.0,6.0,14.0,0.02936345897614956,-0.0033351555466651917,-0.0067966473288834095,-0.0033351555466651917,0.00010629251482896507,0.0002915451768785715,0.0001360544265480712,0.0004555393534246832,0.0002915451768785715,0.00010629251482896507,-0.0033351555466651917,0.0009914172114804387,0.0002915451768785715,0.0001360544265480712,-5.3146257414482534e-05,-4.485310637392104e-05,-2.093144939863123e-05,3.009265538105056e-35,-9.317362419797304e-21,-3.3881317890172014e-21,-0.0067966473288834095,0.0002915451768785715,0.00522412545979023,0.0002915451768785715,-2.1436458275732737e-21,-0.00011661807366181165,0.0,-0.00068330904468894,-0.00011661807366181165,8.470329472543003e-20,-0.0033351555466651917,0.0001360544265480712,0.0002915451768785715,0.0009914172114804387,3.4539774660396964e-21,1.375867768994064e-20,-2.093144939863123e-05,3.8506288905169715e-19,-4.485310637392104e-05,-5.3146257414482534e-05,0.00010629251482896507,-5.3146257414482534e-05,-2.1436458275732737e-21,3.4539774660396964e-21,4.088173682248453e-06,3.2531520588224666e-22,-7.469984551180846e-23,1.842765864286352e-36,-1.8257112800509218e-22,-2.36213253041563e-22,0.0002915451768785715,-4.485310637392104e-05,-0.00011661807366181165,1.375867768994064e-20,3.2531520588224666e-22,1.7941241821972653e-05,-1.9127990248759737e-21,7.603032028327543e-37,-4.8971487875936214e-23,-3.011727363449073e-23,0.0001360544265480712,-2.093144939863123e-05,0.0,-2.093144939863123e-05,-7.469984551180846e-23,-1.9127990248759737e-21,3.2202231068367837e-06,-8.202693424435559e-36,1.826402675613581e-21,8.470329472543003e-22,0.0004555393534246832,3.009265538105056e-35,-0.00068330904468894,3.8506288905169715e-19,1.842765864286352e-36,7.603032028327543e-37,-8.202693424435559e-36,0.000136661808937788,-3.567958915481669e-20,-2.2758763030448438e-20,0.0002915451768785715,-9.317362419797304e-21,-0.00011661807366181165,-4.485310637392104e-05,-1.8257112800509218e-22,-4.8971487875936214e-23,1.826402675613581e-21,-3.567958915481669e-20,1.7941241821972653e-05,5.082197683525802e-21,0.00010629251482896507,-3.3881317890172014e-21,8.470329472543003e-20,-5.3146257414482534e-05,-2.36213253041563e-22,-3.011727363449073e-23,8.470329472543003e-22,-2.2758763030448438e-20,5.082197683525802e-21,4.088173682248453e-06,14.0,6.0,15.0,0.027595704421401024,-0.0031207483261823654,-0.006360544357448816,-0.0029346738010644913,9.920635056914762e-05,0.0002721088530961424,0.0001190476177725941,0.00042517005931586027,0.00025510202976875007,8.753501606406644e-05,-0.0031207483261823654,0.0009265436674468219,0.0002721088530961424,0.0001190476177725941,-4.960317528457381e-05,-4.186289879726246e-05,-1.8315018678549677e-05,7.824090399073146e-35,-6.776263578034403e-21,-1.0164395367051604e-20,-0.006360544357448816,0.0002721088530961424,0.004882653243839741,0.00025510202976875007,9.879507174725596e-22,-0.00010884353832807392,5.929230630780102e-21,-0.0006377550889737904,-0.0001020408162730746,8.131516293641283e-20,-0.0029346738010644913,0.0001190476177725941,0.00025510202976875007,0.00080977997276932,1.694054938808349e-22,1.1237954633110392e-20,-1.70068033185089e-05,3.277950038955431e-19,-3.644314710982144e-05,-4.0400776924798265e-05,9.920635056914762e-05,-4.960317528457381e-05,9.879507174725596e-22,1.694054938808349e-22,3.815629042946966e-06,-2.462385013218951e-22,-2.0214253987168478e-22,-4.521523343831749e-37,9.510100652206148e-23,6.390713023400495e-23,0.0002721088530961424,-4.186289879726246e-05,-0.00010884353832807392,1.1237954633110392e-20,-2.462385013218951e-22,1.6745159882702865e-05,-1.7530237177341362e-21,-7.2832193971124245e-37,8.077632115786832e-23,4.511061959005457e-23,0.0001190476177725941,-1.8315018678549677e-05,5.929230630780102e-21,-1.70068033185089e-05,-2.0214253987168478e-22,-1.7530237177341362e-21,2.6164311748289037e-06,-9.036806537446043e-36,6.907095439724162e-22,1.376428539288238e-21,0.00042517005931586027,7.824090399073146e-35,-0.0006377550889737904,3.277950038955431e-19,-4.521523343831749e-37,-7.2832193971124245e-37,-9.036806537446043e-36,0.00012755101488437504,-2.705702129105985e-20,-1.8582318424145398e-20,0.00025510202976875007,-6.776263578034403e-21,-0.0001020408162730746,-3.644314710982144e-05,9.510100652206148e-23,8.077632115786832e-23,6.907095439724162e-22,-2.705702129105985e-20,1.4577259207726456e-05,1.4823076576950256e-21,8.753501606406644e-05,-1.0164395367051604e-20,8.131516293641283e-20,-4.0400776924798265e-05,6.390713023400495e-23,4.511061959005457e-23,1.376428539288238e-21,-1.8582318424145398e-20,1.4823076576950256e-21,2.885769617932965e-06,14.0,6.0,16.0,0.026029057800769806,-0.002932266565039754,-0.005977078340947628,-0.002602290827780962,9.300595411332324e-05,0.00025510202976875007,0.0001050420178216882,0.00039859695243649185,0.00022509002883452922,7.294584793271497e-05,-0.002932266565039754,0.0008696447475813329,0.00025510202976875007,0.0001050420178216882,-4.650297705666162e-05,-3.924646807718091e-05,-1.6160311133717187e-05,-8.169812171063074e-20,-1.9481757786848908e-20,4.235164736271502e-21,-0.005977078340947628,0.00025510202976875007,0.004583114292472601,0.00022509002883452922,-7.538701909090286e-23,-0.0001020408162730746,-1.1011428314305904e-20,-0.0005978954141028225,-9.003601735457778e-05,5.929230630780102e-20,-0.002602290827780962,0.0001050420178216882,0.00022509002883452922,0.0006700180238112807,-7.763660048145841e-22,-1.685329122405936e-20,-1.4005602679389995e-05,2.4129812310815667e-19,-3.0012004572199658e-05,-3.126250521745533e-05,9.300595411332324e-05,-4.650297705666162e-05,-7.538701909090286e-23,-7.763660048145841e-22,3.577152028810815e-06,8.238953539815805e-23,3.3388117508389023e-22,1.4229721795167133e-37,3.41066063410658e-23,-3.987493714032823e-23,0.00025510202976875007,-3.924646807718091e-05,-0.0001020408162730746,-1.685329122405936e-20,8.238953539815805e-23,1.5698587958468124e-05,5.2722858481640835e-22,3.2679249976722004e-20,4.9789511643536925e-21,7.268159852834205e-23,0.0001050420178216882,-1.6160311133717187e-05,-1.1011428314305904e-20,-1.4005602679389995e-05,3.3388117508389023e-22,5.2722858481640835e-22,2.1547079995798413e-06,5.0649428525573356e-36,9.184841057862276e-22,-6.352747104407253e-22,0.00039859695243649185,-8.169812171063074e-20,-0.0005978954141028225,2.4129812310815667e-19,1.4229721795167133e-37,3.2679249976722004e-20,5.0649428525573356e-36,0.00011957908282056451,-4.294202329111773e-21,-1.5370841394696553e-20,0.00022509002883452922,-1.9481757786848908e-20,-9.003601735457778e-05,-3.0012004572199658e-05,3.41066063410658e-23,4.9789511643536925e-21,9.184841057862276e-22,-4.294202329111773e-21,1.2004801646980923e-05,1.9058241313221758e-21,7.294584793271497e-05,4.235164736271502e-21,5.929230630780102e-20,-3.126250521745533e-05,-3.987493714032823e-23,7.268159852834205e-23,-6.352747104407253e-22,-1.5370841394696553e-20,1.9058241313221758e-21,2.0841669083893066e-06,14.0,7.0,3.0,0.08948412537574768,-0.011989795602858067,-0.02151360549032688,-0.04005102068185806,0.00042517005931586027,0.0010204081190750003,0.0020408162381500006,0.0014172336086630821,0.0038265306502580643,0.005102040711790323,-0.011989795602858067,0.003757849335670471,0.0010204081190750003,0.0020408162381500006,-0.00021258502965793014,-0.00015698587230872363,-0.00031397174461744726,-9.351243737687476e-19,-7.589415207398531e-19,-5.2356901451717544e-18,-0.02151360549032688,0.0010204081190750003,0.01454081665724516,0.0038265306502580643,-4.607859233063394e-19,-0.0003401360590942204,-1.4094628242311558e-18,-0.001700680237263441,-0.0012755101779475808,-5.1727979488381226e-18,-0.04005102068185806,0.0020408162381500006,0.0038265306502580643,0.09107142686843872,-4.0416634095527376e-19,-1.1671065561737848e-18,-0.0020408162381500006,-4.923162904980591e-19,-0.0038265306502580643,-0.030612245202064514,0.00042517005931586027,-0.00021258502965793014,-4.607859233063394e-19,-4.0416634095527376e-19,1.635269472899381e-05,-1.6940658945086007e-21,1.0587911840678754e-20,7.030373462210693e-20,3.049318610115481e-20,9.366295322908644e-20,0.0010204081190750003,-0.00015698587230872363,-0.0003401360590942204,-1.1671065561737848e-18,-1.6940658945086007e-21,5.232862531556748e-05,5.373357827443652e-20,-5.421010862427522e-20,-1.3552527156068805e-20,4.209229263646726e-19,0.0020408162381500006,-0.00031397174461744726,-1.4094628242311558e-18,-0.0020408162381500006,1.0587911840678754e-20,5.373357827443652e-20,0.00031397174461744726,8.977284559287172e-20,4.836769576866139e-19,2.1713544846256792e-18,0.0014172336086630821,-9.351243737687476e-19,-0.001700680237263441,-4.923162904980591e-19,7.030373462210693e-20,-5.421010862427522e-20,8.977284559287172e-20,0.00028344671591185033,2.710505431213761e-20,-1.0620756080875938e-19,0.0038265306502580643,-7.589415207398531e-19,-0.0012755101779475808,-0.0038265306502580643,3.049318610115481e-20,-1.3552527156068805e-20,4.836769576866139e-19,2.710505431213761e-20,0.0012755101779475808,2.898319891221223e-18,0.005102040711790323,-5.2356901451717544e-18,-5.1727979488381226e-18,-0.030612245202064514,9.366295322908644e-20,4.209229263646726e-19,2.1713544846256792e-18,-1.0620756080875938e-19,2.898319891221223e-18,0.015306122601032257,14.0,7.0,4.0,0.07286564260721207,-0.009298468939960003,-0.016709184274077415,-0.025561224669218063,0.0003188775444868952,0.0007653061184100807,0.0012244897661730647,0.0010629252064973116,0.002295918297022581,0.0025510203558951616,-0.009298468939960003,0.00286548282019794,0.0007653061184100807,0.0012244897661730647,-0.0001594387722434476,-0.00011773940059356391,-0.00018838304094970226,-1.3678638078282874e-18,-9.443428881053448e-19,-1.5032816493069202e-18,-0.016709184274077415,0.0007653061184100807,0.011096938513219357,0.002295918297022581,-2.1763101236754844e-19,-0.00025510202976875007,-1.7931323533904015e-18,-0.0012755101779475808,-0.0007653061184100807,-8.111513412068526e-18,-0.025561224669218063,0.0012244897661730647,0.002295918297022581,0.03489796072244644,-3.49146577607674e-19,-1.738287383645992e-18,-0.0008163265301845968,-5.692738866470579e-18,-0.0015306122368201613,-0.0076530613005161285,0.0003188775444868952,-0.0001594387722434476,-2.1763101236754844e-19,-3.49146577607674e-19,1.2264521501492709e-05,9.489995175195834e-21,1.4844804608313978e-20,1.883838898486738e-20,2.1471581140023563e-20,5.560335219445301e-20,0.0007653061184100807,-0.00011773940059356391,-0.00025510202976875007,-1.738287383645992e-18,9.489995175195834e-21,3.924646807718091e-05,6.921307759741015e-20,2.5951240755202706e-19,1.4161007677011348e-19,2.625588103504833e-19,0.0012244897661730647,-0.00018838304094970226,-1.7931323533904015e-18,-0.0008163265301845968,1.4844804608313978e-20,6.921307759741015e-20,0.000125588703667745,1.641383795270864e-19,1.892739426501294e-19,-3.314257451732827e-20,0.0010629252064973116,-1.3678638078282874e-18,-0.0012755101779475808,-5.692738866470579e-18,1.883838898486738e-20,2.5951240755202706e-19,1.641383795270864e-19,0.00021258502965793014,8.457653963631394e-19,6.409553215986449e-19,0.002295918297022581,-9.443428881053448e-19,-0.0007653061184100807,-0.0015306122368201613,2.1471581140023563e-20,1.4161007677011348e-19,1.892739426501294e-19,8.457653963631394e-19,0.0005102040595375001,1.5182142239174571e-18,0.0025510203558951616,-1.5032816493069202e-18,-8.111513412068526e-18,-0.0076530613005161285,5.560335219445301e-20,2.625588103504833e-19,-3.314257451732827e-20,6.409553215986449e-19,1.5182142239174571e-18,0.0025510203558951616,14.0,7.0,5.0,0.061554908752441406,-0.007602040655910969,-0.013673469424247742,-0.01776967942714691,0.00025510202976875007,0.0006122448830865324,0.0008163265301845968,0.0008503401186317205,0.0015306122368201613,0.0014577260008081794,-0.007602040655910969,0.0023175040259957314,0.0006122448830865324,0.0008163265301845968,-0.00012755101488437504,-9.419152047485113e-05,-0.000125588703667745,-9.88169605295395e-19,-5.126905180047159e-20,6.154940819588033e-19,-0.013673469424247742,0.0006122448830865324,0.00897959154099226,0.0015306122368201613,-2.918606495744086e-19,-0.0002040816325461492,-3.059130006156126e-19,-0.0010204081190750003,-0.0005102040595375001,2.241752104247311e-18,-0.01776967942714691,0.0008163265301845968,0.0015306122368201613,0.01763119548559189,1.3788220639388427e-19,-1.7381489666027084e-20,-0.0004081632650922984,4.319060495923927e-19,-0.0007653061184100807,-0.0029154520016163588,0.00025510202976875007,-0.00012755101488437504,-2.918606495744086e-19,1.3788220639388427e-19,9.811617019295227e-06,5.5817889241136885e-21,1.6878171063972916e-21,4.0520880178459225e-20,-2.2434608396729953e-21,-3.72247269961488e-20,0.0006122448830865324,-9.419152047485113e-05,-0.0002040816325461492,-1.7381489666027084e-20,5.5817889241136885e-21,3.139717591693625e-05,1.7886602983438616e-20,1.1454555430799097e-19,1.874057326184585e-20,-3.781601896245643e-20,0.0008163265301845968,-0.000125588703667745,-3.059130006156126e-19,-0.0004081632650922984,1.6878171063972916e-21,1.7886602983438616e-20,6.27943518338725e-05,2.3612684841241657e-20,1.9374282468353834e-20,-1.2984745213733579e-20,0.0008503401186317205,-9.88169605295395e-19,-0.0010204081190750003,4.319060495923927e-19,4.0520880178459225e-20,1.1454555430799097e-19,2.3612684841241657e-20,0.0001700680295471102,3.75252391277499e-20,-1.7388312290493513e-19,0.0015306122368201613,-5.126905180047159e-20,-0.0005102040595375001,-0.0007653061184100807,-2.2434608396729953e-21,1.874057326184585e-20,1.9374282468353834e-20,3.75252391277499e-20,0.00025510202976875007,-3.857739283363689e-19,0.0014577260008081794,6.154940819588033e-19,2.241752104247311e-18,-0.0029154520016163588,-3.72247269961488e-20,-3.781601896245643e-20,-1.2984745213733579e-20,-1.7388312290493513e-19,-3.857739283363689e-19,0.0007288630004040897,14.0,7.0,6.0,0.05332442373037338,-0.006432215683162212,-0.011576773598790169,-0.01308309007436037,0.00021258502965793014,0.0005102040595375001,0.000583090353757143,0.0007086168043315411,0.001093294471502304,0.0009110787068493664,-0.006432215683162212,0.0019462043419480324,0.0005102040595375001,0.000583090353757143,-0.00010629251482896507,-7.849293615436181e-05,-8.970621274784207e-05,-5.37957531759321e-19,-4.381495571571547e-19,-1.1966897402035547e-18,-0.011576773598790169,0.0005102040595375001,0.007543731946498156,0.001093294471502304,-2.6281438331036804e-19,-0.0001700680295471102,-5.46637706613511e-19,-0.0008503401186317205,-0.00036443150020204484,-1.745088669437556e-18,-0.01308309007436037,0.000583090353757143,0.001093294471502304,0.010244169272482395,-3.077594228391958e-19,-7.929680088275282e-19,-0.0002332361473236233,-8.898369590145053e-19,-0.0004373177944216877,-0.00136661808937788,0.00021258502965793014,-0.00010629251482896507,-2.6281438331036804e-19,-3.077594228391958e-19,8.176347364496905e-06,-1.0663599068675748e-21,3.14238563787436e-21,3.510611711459589e-20,2.2288355755847188e-20,4.2738515857796947e-20,0.0005102040595375001,-7.849293615436181e-05,-0.0001700680295471102,-7.929680088275282e-19,-1.0663599068675748e-21,2.616431265778374e-05,2.042703135654095e-20,-2.7546390711851597e-20,1.5108721469900101e-21,1.2528847204064392e-19,0.000583090353757143,-8.970621274784207e-05,-5.46637706613511e-19,-0.0002332361473236233,3.14238563787436e-21,2.042703135654095e-20,3.5882483643945307e-05,3.9801404297774284e-20,5.62046091022025e-20,7.403046762499388e-20,0.0007086168043315411,-5.37957531759321e-19,-0.0008503401186317205,-8.898369590145053e-19,3.510611711459589e-20,-2.7546390711851597e-20,3.9801404297774284e-20,0.00014172335795592517,8.85668873456033e-20,5.716912108348493e-20,0.001093294471502304,-4.381495571571547e-19,-0.00036443150020204484,-0.0004373177944216877,2.2288355755847188e-20,1.5108721469900101e-21,5.62046091022025e-20,8.85668873456033e-20,0.00014577258843928576,1.4158634702629087e-19,0.0009110787068493664,-1.1966897402035547e-18,-1.745088669437556e-18,-0.00136661808937788,4.2738515857796947e-20,1.2528847204064392e-19,7.403046762499388e-20,5.716912108348493e-20,1.4158634702629087e-19,0.000273323617875576,14.0,7.0,7.0,0.04705417901277542,-0.005575801711529493,-0.01004008762538433,-0.01004008762538433,0.00018221575010102242,0.0004373177944216877,0.0004373177944216877,0.0006073858239687979,0.0008199708536267281,0.0006073858239687979,-0.005575801711529493,0.0016777864657342434,0.0004373177944216877,0.0004373177944216877,-9.110787505051121e-05,-6.727965956088156e-05,-6.727965956088156e-05,-6.127084478484544e-19,-4.029759246562334e-19,-7.835328248692303e-19,-0.01004008762538433,0.0004373177944216877,0.006505101919174194,0.0008199708536267281,-6.852165800289239e-20,-0.00014577258843928576,-8.876202183704397e-19,-0.0007288630004040897,-0.000273323617875576,-2.5411265523134215e-18,-0.01004008762538433,0.0004373177944216877,0.0008199708536267281,0.006505101919174194,-6.531557703447075e-20,-8.473452079355391e-19,-0.00014577258843928576,-2.148373959642884e-18,-0.000273323617875576,-0.0007288630004040897,0.00018221575010102242,-9.110787505051121e-05,-6.852165800289239e-20,-6.531557703447075e-20,7.008297870925162e-06,-3.1123094638930313e-22,2.3816622020740058e-21,7.220247925060839e-21,6.815635436487366e-21,3.486256493078088e-21,0.0004373177944216877,-6.727965956088156e-05,-0.00014577258843928576,-8.473452079355391e-19,-3.1123094638930313e-22,2.242655318696052e-05,2.4500718158779884e-20,8.163610255173487e-20,3.2868125037371124e-20,9.232139552249614e-20,0.0004373177944216877,-6.727965956088156e-05,-8.876202183704397e-19,-0.00014577258843928576,2.3816622020740058e-21,2.4500718158779884e-20,2.242655318696052e-05,8.703878748618522e-20,5.539989807550765e-20,1.2745706818811946e-19,0.0006073858239687979,-6.127084478484544e-19,-0.0007288630004040897,-2.148373959642884e-18,7.220247925060839e-21,8.163610255173487e-20,8.703878748618522e-20,0.00012147716188337654,1.8873064008404691e-19,1.4231694137763126e-19,0.0008199708536267281,-4.029759246562334e-19,-0.000273323617875576,-0.000273323617875576,6.815635436487366e-21,3.2868125037371124e-20,5.539989807550765e-20,1.8873064008404691e-19,9.110787505051121e-05,3.0896315157621944e-19,0.0006073858239687979,-7.835328248692303e-19,-2.5411265523134215e-18,-0.0007288630004040897,3.486256493078088e-21,9.232139552249614e-20,1.2745706818811946e-19,1.4231694137763126e-19,3.0896315157621944e-19,0.00012147716188337654,14.0,7.0,8.0,0.04211309552192688,-0.004921343643218279,-0.008864795789122581,-0.007950680330395699,0.0001594387722434476,0.00038265305920504034,0.0003401360590942204,0.0005314626032486558,0.0006377550889737904,0.00042517005931586027,-0.004921343643218279,0.0014746042434126139,0.00038265305920504034,0.0003401360590942204,-7.97193861217238e-05,-5.886970029678196e-05,-5.232862531556748e-05,-3.169860538855537e-19,7.206018802937793e-20,2.3969799391196113e-19,-0.008864795789122581,0.00038265305920504034,0.0057185376062989235,0.0006377550889737904,-6.662707835802211e-20,-0.00012755101488437504,3.680360740759349e-19,-0.0006377550889737904,-0.00021258502965793014,9.256527421647091e-19,-0.007950680330395699,0.0003401360590942204,0.0006377550889737904,0.00439747329801321,-2.5794535265563657e-20,-7.503953749942908e-20,-9.718172805150971e-05,5.213700789357951e-19,-0.00018221575010102242,-0.00042517005931586027,0.0001594387722434476,-7.97193861217238e-05,-6.662707835802211e-20,-2.5794535265563657e-20,6.1322607507463545e-06,5.632811993079502e-21,-1.168570203598135e-22,1.5804171146523359e-21,3.445990003249731e-21,2.074581497083281e-21,0.00038265305920504034,-5.886970029678196e-05,-0.00012755101488437504,-7.503953749942908e-20,5.632811993079502e-21,1.9623234038590454e-05,5.795312189871041e-21,1.307339312600512e-19,2.493235134216771e-20,-5.420076326049922e-21,0.0003401360590942204,-5.232862531556748e-05,3.680360740759349e-19,-9.718172805150971e-05,-1.168570203598135e-22,5.795312189871041e-21,1.4951035154808778e-05,-3.4336829451398773e-20,-5.577516665496823e-20,-6.622817050761841e-20,0.0005314626032486558,-3.169860538855537e-19,-0.0006377550889737904,5.213700789357951e-19,1.5804171146523359e-21,1.307339312600512e-19,-3.4336829451398773e-20,0.00010629251482896507,7.844290104394462e-20,-7.1011471646677e-20,0.0006377550889737904,7.206018802937793e-20,-0.00021258502965793014,-0.00018221575010102242,3.445990003249731e-21,2.493235134216771e-20,-5.577516665496823e-20,7.844290104394462e-20,6.073858094168827e-05,-1.2792025055705794e-19,0.00042517005931586027,2.3969799391196113e-19,9.256527421647091e-19,-0.00042517005931586027,2.074581497083281e-21,-5.420076326049922e-21,-6.622817050761841e-20,-7.1011471646677e-20,-1.2792025055705794e-19,6.073858094168827e-05,14.0,7.0,9.0,0.038116540759801865,-0.004404761828482151,-0.007936508394777775,-0.006453308742493391,0.00014172335795592517,0.0003401360590942204,0.0002721088530961424,0.0004724111931864172,0.0005102040595375001,0.0003092146071139723,-0.004404761828482151,0.0013154108310118318,0.0003401360590942204,0.0002721088530961424,-7.086167897796258e-05,-5.232862531556748e-05,-4.186289879726246e-05,0.0,2.788629408895127e-20,5.794553994829105e-20,-0.007936508394777775,0.0003401360590942204,0.005102040711790323,0.0005102040595375001,3.1468907025972196e-21,-0.00011337868636474013,1.4396325697881053e-20,-0.0005668934318237007,-0.0001700680295471102,-1.9927021274126763e-35,-0.006453308742493391,0.0002721088530961424,0.0005102040595375001,0.0031152265146374702,-5.442147669679596e-22,-1.3489967583276648e-20,-6.80272132740356e-05,0.0,-0.00012755101488437504,-0.000265041075181216,0.00014172335795592517,-7.086167897796258e-05,3.1468907025972196e-21,-5.442147669679596e-22,5.450898242997937e-06,-4.841370389360489e-22,8.372534827884861e-23,0.0,-5.680559612346357e-38,4.6567672548827e-37,0.0003401360590942204,-5.232862531556748e-05,-0.00011337868636474013,-1.3489967583276648e-20,-4.841370389360489e-22,1.744287510518916e-05,2.075379597127424e-21,0.0,-1.3824805281408885e-36,-2.8726869631343557e-36,0.0002721088530961424,-4.186289879726246e-05,1.4396325697881053e-20,-6.80272132740356e-05,8.372534827884861e-23,2.075379597127424e-21,1.0465724699315615e-05,0.0,-6.971573522237817e-21,-1.4486384987072764e-20,0.0004724111931864172,0.0,-0.0005668934318237007,0.0,0.0,0.0,0.0,9.448223863728344e-05,0.0,-0.0,0.0005102040595375001,2.788629408895127e-20,-0.0001700680295471102,-0.00012755101488437504,-5.680559612346357e-38,-1.3824805281408885e-36,-6.971573522237817e-21,0.0,4.251700738677755e-05,9.649871611204243e-36,0.0003092146071139723,5.794553994829105e-20,-1.9927021274126763e-35,-0.000265041075181216,4.6567672548827e-37,-2.8726869631343557e-36,-1.4486384987072764e-20,-0.0,9.649871611204243e-36,3.3130134397652e-05,14.0,7.0,10.0,0.034816015511751175,-0.003986549098044634,-0.0071846009232103825,-0.005343228112906218,0.00012755101488437504,0.0003061224415432662,0.00022263450955506414,0.00042517005931586027,0.00041743970359675586,0.00023191094805952162,-0.003986549098044634,0.0011872948380187154,0.0003061224415432662,0.00022263450955506414,-6.377550744218752e-05,-4.7095760237425566e-05,-3.4251461329404265e-05,-4.160875193093717e-20,-4.386857252904539e-19,-5.959627967327778e-19,-0.0071846009232103825,0.0003061224415432662,0.004605751484632492,0.00041743970359675586,-9.502739411184119e-20,-0.0001020408162730746,-4.262189243871492e-19,-0.0005102040595375001,-0.00013914656301494688,-1.1264438048267499e-18,-0.005343228112906218,0.00022263450955506414,0.00041743970359675586,0.00228896108455956,-4.371980926575655e-19,-3.343754583129497e-19,-4.9474336265120655e-05,-1.756926037593496e-18,-9.276437776861712e-05,-0.0001739332074066624,0.00012755101488437504,-6.377550744218752e-05,-9.502739411184119e-20,-4.371980926575655e-19,4.905808509647613e-06,1.2812854012829505e-21,9.375554252772982e-21,-2.3601680269479147e-21,2.0053176415822527e-20,3.168896938065398e-20,0.0003061224415432662,-4.7095760237425566e-05,-0.0001020408162730746,-3.343754583129497e-19,1.2812854012829505e-21,1.5698587958468124e-05,8.076490526771894e-21,-4.6604632025073354e-20,1.869812694107709e-20,1.9805605459011954e-20,0.00022263450955506414,-3.4251461329404265e-05,-4.262189243871492e-19,-4.9474336265120655e-05,9.375554252772982e-21,8.076490526771894e-21,7.611436103616143e-06,4.197027832623686e-20,2.201866579558649e-20,2.48697344160323e-20,0.00042517005931586027,-4.160875193093717e-20,-0.0005102040595375001,-1.756926037593496e-18,-2.3601680269479147e-21,-4.6604632025073354e-20,4.197027832623686e-20,8.50340147735551e-05,5.442777990999884e-20,1.3302765139987247e-19,0.00041743970359675586,-4.386857252904539e-19,-0.00013914656301494688,-9.276437776861712e-05,2.0053176415822527e-20,1.869812694107709e-20,2.201866579558649e-20,5.442777990999884e-20,3.092145925620571e-05,3.862093032195588e-20,0.00023191094805952162,-5.959627967327778e-19,-1.1264438048267499e-18,-0.0001739332074066624,3.168896938065398e-20,1.9805605459011954e-20,2.48697344160323e-20,1.3302765139987247e-19,3.862093032195588e-20,1.932591294462327e-05,14.0,7.0,11.0,0.03204355016350746,-0.003641001880168915,-0.006563080009073019,-0.0044972882606089115,0.00011595547402976081,0.00027829312602989376,0.00018552875553723425,0.00038651825161650777,0.0003478664148133248,0.0001783930347301066,-0.003641001880168915,0.0010819537565112114,0.00027829312602989376,0.00018552875553723425,-5.7977737014880404e-05,-4.2814328480744734e-05,-2.8542885047500022e-05,0.0,0.0,-0.0,-0.006563080009073019,0.00027829312602989376,0.004197588190436363,0.0003478664148133248,-4.125659432542692e-21,-9.276437776861712e-05,9.317362419797304e-21,-0.00046382189611904323,-0.00011595547402976081,-0.0,-0.0044972882606089115,0.00018552875553723425,0.0003478664148133248,0.0017319584731012583,-1.564488637202505e-21,1.0164395367051604e-20,-3.710575037985109e-05,0.0,-6.957328150747344e-05,-0.00011892869224539027,0.00011595547402976081,-5.7977737014880404e-05,-4.125659432542692e-21,-1.564488637202505e-21,4.459825959202135e-06,5.158275883609198e-22,5.093317353249827e-23,0.0,0.0,-0.0,0.00027829312602989376,-4.2814328480744734e-05,-9.276437776861712e-05,1.0164395367051604e-20,5.158275883609198e-22,1.4271442523750011e-05,-1.4823076576950256e-21,0.0,0.0,-0.0,0.00018552875553723425,-2.8542885047500022e-05,9.317362419797304e-21,-3.710575037985109e-05,5.093317353249827e-23,-1.4823076576950256e-21,5.708577191398945e-06,0.0,0.0,-0.0,0.00038651825161650777,0.0,-0.00046382189611904323,0.0,0.0,0.0,0.0,7.730365177849308e-05,0.0,-0.0,0.0003478664148133248,0.0,-0.00011595547402976081,-6.957328150747344e-05,0.0,0.0,0.0,0.0,2.319109444215428e-05,-0.0,0.0001783930347301066,-0.0,-0.0,-0.00011892869224539027,-0.0,-0.0,-0.0,-0.0,-0.0,1.1892869224539027e-05,14.0,7.0,12.0,0.029681386426091194,-0.0033506671898066998,-0.006040685344487429,-0.0038377437740564346,0.00010629251482896507,0.00025510202976875007,0.00015698587230872363,0.00035430840216577053,0.000294348516035825,0.00014016595378052443,-0.0033506671898066998,0.000993803609162569,0.00025510202976875007,0.00015698587230872363,-5.3146257414482534e-05,-3.924646807718091e-05,-2.4151671823346987e-05,0.0,-5.929230630780102e-21,-6.776263578034403e-21,-0.006040685344487429,0.00025510202976875007,0.0038559655658900738,0.000294348516035825,1.1222891857928838e-22,-8.50340147735551e-05,2.541098841762901e-21,-0.00042517005931586027,-9.811617201194167e-05,-2.0328790734103208e-20,-0.0038377437740564346,0.00015698587230872363,0.000294348516035825,0.0013425350189208984,-3.4094595586685015e-21,6.986781043929148e-21,-2.8542885047500022e-05,-0.0,-5.3517909691436216e-05,-8.409957081312314e-05,0.00010629251482896507,-5.3146257414482534e-05,1.1222891857928838e-22,-3.4094595586685015e-21,4.088173682248453e-06,-1.0012324845438398e-22,4.366682742865735e-23,0.0,1.5999606197755454e-22,2.4343626543815834e-22,0.00025510202976875007,-3.924646807718091e-05,-8.50340147735551e-05,6.986781043929148e-21,-1.0012324845438398e-22,1.308215632889187e-05,-1.1208213491510954e-21,-0.0,-1.1179672062197951e-23,-1.8276581887650072e-23,0.00015698587230872363,-2.4151671823346987e-05,2.541098841762901e-21,-2.8542885047500022e-05,4.366682742865735e-23,-1.1208213491510954e-21,4.391213224153034e-06,0.0,7.644422649470854e-22,1.2705494208814505e-21,0.00035430840216577053,0.0,-0.00042517005931586027,-0.0,0.0,-0.0,0.0,7.086167897796258e-05,0.0,0.0,0.000294348516035825,-5.929230630780102e-21,-9.811617201194167e-05,-5.3517909691436216e-05,1.5999606197755454e-22,-1.1179672062197951e-23,7.644422649470854e-22,0.0,1.783930383680854e-05,2.964615315390051e-21,0.00014016595378052443,-6.776263578034403e-21,-2.0328790734103208e-20,-8.409957081312314e-05,2.4343626543815834e-22,-1.8276581887650072e-23,1.2705494208814505e-21,0.0,2.964615315390051e-21,7.645416189916432e-06,14.0,7.0,13.0,0.027644464746117592,-0.0031032743863761425,-0.005595425143837929,-0.0033135232515633106,9.811617201194167e-05,0.00023547880118712783,0.0001345593191217631,0.0003270538873039186,0.000252298719715327,0.00011213276593480259,-0.0031032743863761425,0.0009189495467580855,0.00023547880118712783,0.0001345593191217631,-4.9058086005970836e-05,-3.6227509554009885e-05,-2.0701432731584646e-05,0.0,-8.470329472543003e-21,-2.0328790734103208e-20,-0.005595425143837929,0.00023547880118712783,0.0035658220294862986,0.000252298719715327,2.2644337860000142e-21,-7.849293615436181e-05,-3.3881317890172014e-21,-0.0003924646880477667,-8.409957081312314e-05,-3.5575383784680614e-20,-0.0033135232515633106,0.0001345593191217631,0.000252298719715327,0.00106194824911654,1.6113867083187072e-21,7.368746232059714e-21,-2.242655318696052e-05,-0.0,-4.204978540656157e-05,-6.116332951933146e-05,9.811617201194167e-05,-4.9058086005970836e-05,2.2644337860000142e-21,1.6113867083187072e-21,3.7736988360848045e-06,-4.1893789968969845e-22,-1.5791431484666146e-22,0.0,-1.2905370610051867e-22,-8.495960636204465e-23,0.00023547880118712783,-3.6227509554009885e-05,-7.849293615436181e-05,7.368746232059714e-21,-4.1893789968969845e-22,1.2075835911673494e-05,-1.0188521535567198e-21,-0.0,-6.639982340942024e-23,-4.508135600591449e-23,0.0001345593191217631,-2.0701432731584646e-05,-3.3881317890172014e-21,-2.242655318696052e-05,-1.5791431484666146e-22,-1.0188521535567198e-21,3.450238864388666e-06,0.0,1.8078076715992602e-21,3.1763735522036263e-21,0.0003270538873039186,0.0,-0.0003924646880477667,-0.0,0.0,-0.0,0.0,6.541077891597524e-05,0.0,0.0,0.000252298719715327,-8.470329472543003e-21,-8.409957081312314e-05,-4.204978540656157e-05,-1.2905370610051867e-22,-6.639982340942024e-23,1.8078076715992602e-21,0.0,1.4016595741850324e-05,5.929230630780102e-21,0.00011213276593480259,-2.0328790734103208e-20,-3.5575383784680614e-20,-6.116332951933146e-05,-8.495960636204465e-23,-4.508135600591449e-23,3.1763735522036263e-21,0.0,5.929230630780102e-21,5.096943823446054e-06,14.0,7.0,14.0,0.02586977556347847,-0.002889941679313779,-0.005211370065808296,-0.002889941679313779,9.110787505051121e-05,0.00021865889721084386,0.00011661807366181165,0.00030369291198439896,0.00021865889721084386,9.110787505051121e-05,-0.002889941679313779,0.0008545918390154839,0.00021865889721084386,0.00011661807366181165,-4.5553937525255606e-05,-3.363982978044078e-05,-1.7941241821972653e-05,0.0,5.929230630780102e-21,7.623296525288703e-21,-0.005211370065808296,0.00021865889721084386,0.003316326532512903,0.00021865889721084386,-1.6616761745079887e-22,-7.288629421964288e-05,0.0,-0.00036443150020204484,-7.288629421964288e-05,1.0164395367051604e-20,-0.002889941679313779,0.00011661807366181165,0.00021865889721084386,0.0008545918390154839,6.432427356979858e-22,-5.9299221020734084e-21,-1.7941241821972653e-05,-0.0,-3.363982978044078e-05,-4.5553937525255606e-05,9.110787505051121e-05,-4.5553937525255606e-05,-1.6616761745079887e-22,6.432427356979858e-22,3.504148935462581e-06,1.9000385118473145e-22,-1.7359801822393318e-22,0.0,-2.681337585757495e-23,6.552955205878042e-23,0.00021865889721084386,-3.363982978044078e-05,-7.288629421964288e-05,-5.9299221020734084e-21,1.9000385118473145e-22,1.121327659348026e-05,8.81554106311947e-22,0.0,1.0671691393168122e-23,3.8847631982451496e-23,0.00011661807366181165,-1.7941241821972653e-05,0.0,-1.7941241821972653e-05,-1.7359801822393318e-22,8.81554106311947e-22,2.760191136985668e-06,0.0,-6.910681538290424e-22,-1.2705494208814505e-21,0.00030369291198439896,0.0,-0.00036443150020204484,-0.0,0.0,0.0,0.0,6.073858094168827e-05,0.0,0.0,0.00021865889721084386,5.929230630780102e-21,-7.288629421964288e-05,-3.363982978044078e-05,-2.681337585757495e-23,1.0671691393168122e-23,-6.910681538290424e-22,0.0,1.121327659348026e-05,-1.9058241313221758e-21,9.110787505051121e-05,7.623296525288703e-21,1.0164395367051604e-20,-4.5553937525255606e-05,6.552955205878042e-23,3.8847631982451496e-23,-1.2705494208814505e-21,0.0,-1.9058241313221758e-21,3.504148935462581e-06,14.0,7.0,15.0,0.024309640750288963,-0.00270408159121871,-0.004876700695604086,-0.002542767208069563,8.50340147735551e-05,0.0002040816325461492,0.0001020408162730746,0.00028344671591185033,0.00019132652960252017,7.503000961150974e-05,-0.00270408159121871,0.0007986656273715198,0.0002040816325461492,0.0001020408162730746,-4.251700738677755e-05,-3.139717591693625e-05,-1.5698587958468124e-05,5.804762179069834e-19,1.5246593050577406e-19,-1.6940658945086007e-20,-0.004876700695604086,0.0002040816325461492,0.003099489724263549,0.00019132652960252017,4.129601497461133e-19,-6.80272132740356e-05,-4.573977915173222e-20,-0.0003401360590942204,-6.377550744218752e-05,-1.4399560103323106e-19,-0.002542767208069563,0.0001020408162730746,0.00019132652960252017,0.0006980017060413957,6.295608311125445e-20,-8.112628141341518e-20,-1.4577259207726456e-05,-1.967898866415452e-19,-2.7332362151355483e-05,-3.462923632469028e-05,8.50340147735551e-05,-4.251700738677755e-05,4.129601497461133e-19,6.295608311125445e-20,3.2705390822229674e-06,-1.0311257084283846e-20,-1.3812003778365817e-21,-4.090957751817672e-20,-1.0267097433359592e-20,-1.2829062390750283e-21,0.0002040816325461492,-3.139717591693625e-05,-6.80272132740356e-05,-8.112628141341518e-20,-1.0311257084283846e-20,1.0465724699315615e-05,7.556714443455741e-22,-3.0224924319920476e-20,-2.990609910425992e-21,6.1237348009004876e-21,0.0001020408162730746,-1.5698587958468124e-05,-4.573977915173222e-20,-1.4577259207726456e-05,-1.3812003778365817e-21,7.556714443455741e-22,2.2426552277465817e-06,8.21649730779503e-21,1.2592923631421722e-22,2.6469779601696886e-21,0.00028344671591185033,5.804762179069834e-19,-0.0003401360590942204,-1.967898866415452e-19,-4.090957751817672e-20,-3.0224924319920476e-20,8.21649730779503e-21,5.668934318237007e-05,-3.764341851880058e-21,8.5435947334779e-21,0.00019132652960252017,1.5246593050577406e-19,-6.377550744218752e-05,-2.7332362151355483e-05,-1.0267097433359592e-20,-2.990609910425992e-21,1.2592923631421722e-22,-3.764341851880058e-21,9.11078677745536e-06,7.411538288475128e-21,7.503000961150974e-05,-1.6940658945086007e-20,-1.4399560103323106e-19,-3.462923632469028e-05,-1.2829062390750283e-21,6.1237348009004876e-21,2.6469779601696886e-21,8.5435947334779e-21,7.411538288475128e-21,2.473516815371113e-06,14.0,7.0,16.0,0.02292729541659355,-0.0025407038629055023,-0.004582458175718784,-0.0022546518594026566,7.97193861217238e-05,0.00019132652960252017,9.003601735457778e-05,0.0002657313016243279,0.00016881752526387572,6.252501043491066e-05,-0.0025407038629055023,0.0007496147300116718,0.00019132652960252017,9.003601735457778e-05,-3.98596930608619e-05,-2.943485014839098e-05,-1.3851694347977173e-05,-1.4176941889795504e-20,7.072725109573408e-20,3.218725199566341e-20,-0.004582458175718784,0.00019132652960252017,0.002909288741648197,0.00016881752526387572,2.8554494465180725e-20,-6.377550744218752e-05,8.470329472543003e-20,-0.0003188775444868952,-5.6272507208632305e-05,5.929230630780102e-20,-0.0022546518594026566,9.003601735457778e-05,0.00016881752526387572,0.0005775167373940349,4.7900710953844576e-20,-1.803297194659502e-20,-1.2004801646980923e-05,2.1333084932970617e-19,-2.2509004338644445e-05,-2.6796433303388767e-05,7.97193861217238e-05,-3.98596930608619e-05,2.8554494465180725e-20,4.7900710953844576e-20,3.0661303753731772e-06,-1.7172891517647403e-21,-1.9226918707419735e-21,1.4751049663553488e-21,-2.487490833382859e-21,-1.5518591886800828e-21,0.00019132652960252017,-2.943485014839098e-05,-6.377550744218752e-05,-1.803297194659502e-20,-1.7172891517647403e-21,9.811617019295227e-06,1.180661611117873e-22,2.265429108843527e-20,5.907798251861883e-22,1.7808261547729028e-21,9.003601735457778e-05,-1.3851694347977173e-05,8.470329472543003e-20,-1.2004801646980923e-05,-1.9226918707419735e-21,1.180661611117873e-22,1.8468925873094122e-06,-7.791757834707523e-21,-4.0538405259894125e-21,-1.9058241313221758e-21,0.0002657313016243279,-1.4176941889795504e-20,-0.0003188775444868952,2.1333084932970617e-19,1.4751049663553488e-21,2.265429108843527e-20,-7.791757834707523e-21,5.3146257414482534e-05,-4.2216689291485296e-21,-8.594449377485006e-21,0.00016881752526387572,7.072725109573408e-20,-5.6272507208632305e-05,-2.2509004338644445e-05,-2.487490833382859e-21,5.907798251861883e-22,-4.0538405259894125e-21,-4.2216689291485296e-21,7.503001143049914e-06,-1.9058241313221758e-21,6.252501043491066e-05,3.218725199566341e-20,5.929230630780102e-20,-2.6796433303388767e-05,-1.5518591886800828e-21,1.7808261547729028e-21,-1.9058241313221758e-21,-8.594449377485006e-21,-1.9058241313221758e-21,1.7864288111013593e-06,14.0,8.0,3.0,0.08030754327774048,-0.01059027761220932,-0.01706349290907383,-0.03541666641831398,0.00037202381645329297,0.0007936508045531809,0.0017857142956927419,0.0009920635493472219,0.0029761905316263437,0.004464285913854837,-0.01059027761220932,0.0033033806830644608,0.0007936508045531809,0.0017857142956927419,-0.00018601190822664648,-0.00012210012937430292,-0.00027472528745420277,-8.199278929421627e-19,-1.0299920638612292e-18,5.333756232500249e-19,-0.01706349290907383,0.0007936508045531809,0.009835600852966309,0.0029761905316263437,-4.743384504624082e-19,-0.00022675737272948027,-8.131516293641283e-19,-0.0009920635493472219,-0.0008503401186317205,6.091170260841446e-18,-0.03541666641831398,0.0017857142956927419,0.0029761905316263437,0.08005952090024948,-3.3679472896012004e-19,5.658672260123195e-19,-0.0017857142956927419,2.942834357391823e-19,-0.0029761905316263437,-0.02678571455180645,0.00037202381645329297,-0.00018601190822664648,-4.743384504624082e-19,-3.3679472896012004e-19,1.430860811524326e-05,1.6940658945086007e-20,1.122318655111948e-20,3.7269449679189215e-20,5.082197683525802e-20,3.28720993817205e-20,0.0007936508045531809,-0.00012210012937430292,-0.00022675737272948027,5.658672260123195e-19,1.6940658945086007e-20,3.488575021037832e-05,-2.1159755051723812e-20,7.284483346386983e-20,3.3881317890172014e-21,-2.2872350438188454e-19,0.0017857142956927419,-0.00027472528745420277,-8.131516293641283e-19,-0.0017857142956927419,1.122318655111948e-20,-2.1159755051723812e-20,0.00027472528745420277,6.449744370986752e-20,3.134322016306903e-19,-7.02149988218953e-19,0.0009920635493472219,-8.199278929421627e-19,-0.0009920635493472219,2.942834357391823e-19,3.7269449679189215e-20,7.284483346386983e-20,6.449744370986752e-20,0.00014172335795592517,1.9651164376299768e-19,-7.434529256613157e-19,0.0029761905316263437,-1.0299920638612292e-18,-0.0008503401186317205,-0.0029761905316263437,5.082197683525802e-20,3.3881317890172014e-21,3.134322016306903e-19,1.9651164376299768e-19,0.0008503401186317205,5.4339748505777595e-19,0.004464285913854837,5.333756232500249e-19,6.091170260841446e-18,-0.02678571455180645,3.28720993817205e-20,-2.2872350438188454e-19,-7.02149988218953e-19,-7.434529256613157e-19,5.4339748505777595e-19,0.013392857275903225,14.0,8.0,4.0,0.06531994044780731,-0.008210565894842148,-0.01324404776096344,-0.02258928492665291,0.00027901786961592734,0.0005952381179668009,0.0010714285308495164,0.0007440476329065859,0.0017857142956927419,0.0022321429569274187,-0.008210565894842148,0.002518744207918644,0.0005952381179668009,0.0010714285308495164,-0.00013950893480796367,-9.157509339274839e-05,-0.00016483516083098948,7.192482767695187e-19,3.641205112488386e-19,-1.5984622204661e-18,-0.01324404776096344,0.0005952381179668009,0.0075042517855763435,0.0017857142956927419,-8.444987372760764e-21,-0.0001700680295471102,3.0547425884883563e-19,-0.0007440476329065859,-0.0005102040595375001,-7.710456546433416e-18,-0.02258928492665291,0.0010714285308495164,0.0017857142956927419,0.030684523284435272,-3.6419268275728385e-19,-9.081051394451623e-19,-0.0007142857066355646,-1.519505556251229e-18,-0.0011904762359336019,-0.0066964286379516125,0.00027901786961592734,-0.00013950893480796367,-8.444987372760764e-21,-3.6419268275728385e-19,1.073145631380612e-05,1.0281851782859866e-20,2.2345366594627992e-20,-8.608241644847047e-21,1.7773655671321048e-21,7.006729667623601e-20,0.0005952381179668009,-9.157509339274839e-05,-0.0001700680295471102,-9.081051394451623e-19,1.0281851782859866e-20,2.616431265778374e-05,5.655725946178858e-20,-1.206691465333269e-19,-7.080503838505674e-20,2.401793096308904e-19,0.0010714285308495164,-0.00016483516083098948,3.0547425884883563e-19,-0.0007142857066355646,2.2345366594627992e-20,5.655725946178858e-20,0.00010989011207129806,-7.803274870708903e-20,-6.723474591551888e-20,-2.9768273446646895e-19,0.0007440476329065859,7.192482767695187e-19,-0.0007440476329065859,-1.519505556251229e-18,-8.608241644847047e-21,-1.206691465333269e-19,-7.803274870708903e-20,0.00010629251482896507,-2.523780264675455e-19,9.291146998233967e-19,0.0017857142956927419,3.641205112488386e-19,-0.0005102040595375001,-0.0011904762359336019,1.7773655671321048e-21,-7.080503838505674e-20,-6.723474591551888e-20,-2.523780264675455e-19,0.0003401360590942204,-3.722539714169194e-19,0.0022321429569274187,-1.5984622204661e-18,-7.710456546433416e-18,-0.0066964286379516125,7.006729667623601e-20,2.401793096308904e-19,-2.9768273446646895e-19,9.291146998233967e-19,-3.722539714169194e-19,0.0022321429569274187,14.0,8.0,5.0,0.05514030531048775,-0.006711309310048819,-0.010833333246409893,-0.015697278082370758,0.00022321428696159273,0.0004761904710903764,0.0007142857066355646,0.0005952381179668009,0.0011904762359336019,0.0012755101779475808,-0.006711309310048819,0.0020369733683764935,0.0004761904710903764,0.0007142857066355646,-0.00011160714348079637,-7.326007471419871e-05,-0.00010989011207129806,1.594577780309551e-19,-3.5405964270532683e-19,-4.948919241303961e-19,-0.010833333246409893,0.0004761904710903764,0.006071428768336773,0.0011904762359336019,-2.371692252312041e-20,-0.0001360544265480712,-1.431634573370027e-19,-0.0005952381179668009,-0.0003401360590942204,-3.503757162991395e-18,-0.015697278082370758,0.0007142857066355646,0.0011904762359336019,0.015501700341701508,-2.710505431213761e-20,-1.048303257683739e-18,-0.0003571428533177823,-1.6636584249984217e-18,-0.0005952381179668009,-0.0025510203558951616,0.00022321428696159273,-0.00011160714348079637,-2.371692252312041e-20,-2.710505431213761e-20,8.585165232943837e-06,-2.964615315390051e-21,-1.6940658945086007e-21,-8.905266733568032e-22,2.634757820647638e-20,-1.437690957170593e-20,0.0004761904710903764,-7.326007471419871e-05,-0.0001360544265480712,-1.048303257683739e-18,-2.964615315390051e-21,2.093144939863123e-05,2.879912020664621e-20,-2.699348348025812e-20,3.6015266155974097e-20,1.7974047929530262e-19,0.0007142857066355646,-0.00010989011207129806,-1.431634573370027e-19,-0.0003571428533177823,-1.6940658945086007e-21,2.879912020664621e-20,5.494505603564903e-05,-2.4265312976984306e-21,-1.4793102588855146e-20,-8.408098348615166e-20,0.0005952381179668009,1.594577780309551e-19,-0.0005952381179668009,-1.6636584249984217e-18,-8.905266733568032e-22,-2.699348348025812e-20,-2.4265312976984306e-21,8.50340147735551e-05,7.557412235733708e-20,3.5345815315303007e-19,0.0011904762359336019,-3.5405964270532683e-19,-0.0003401360590942204,-0.0005952381179668009,2.634757820647638e-20,3.6015266155974097e-20,-1.4793102588855146e-20,7.557412235733708e-20,0.0001700680295471102,-1.7516628683015801e-19,0.0012755101779475808,-4.948919241303961e-19,-3.503757162991395e-18,-0.0025510203558951616,-1.437690957170593e-20,1.7974047929530262e-19,-8.408098348615166e-20,3.5345815315303007e-19,-1.7516628683015801e-19,0.0006377550889737904,14.0,8.0,6.0,0.0477430559694767,-0.005677791777998209,-0.0091695012524724,-0.011553996242582798,0.00018601190822664648,0.00039682540227659047,0.0005102040595375001,0.0004960317746736109,0.0008503401186317205,0.0007971939048729837,-0.005677791777998209,0.0017105600563809276,0.00039682540227659047,0.0005102040595375001,-9.300595411332324e-05,-6.105006468715146e-05,-7.849293615436181e-05,-3.3742938328510135e-19,1.1104356886247409e-20,9.996053772639406e-19,-0.0091695012524724,0.00039682540227659047,0.005100016016513109,0.0008503401186317205,-2.211528889218578e-19,-0.00011337868636474013,3.5266250880133062e-19,-0.0004960317746736109,-0.00024295432376675308,3.817352086558211e-18,-0.011553996242582798,0.0005102040595375001,0.0008503401186317205,0.009006164968013763,8.458888530695629e-20,4.2366826126955365e-19,-0.0002040816325461492,1.532365009451555e-18,-0.0003401360590942204,-0.001195790828205645,0.00018601190822664648,-9.300595411332324e-05,-2.211528889218578e-19,8.458888530695629e-20,7.15430405762163e-06,7.049227525621933e-21,1.1168463989565443e-21,1.9716476748009365e-20,8.150769568633309e-21,-2.4414028984349474e-20,0.00039682540227659047,-6.105006468715146e-05,-0.00011337868636474013,4.2366826126955365e-19,7.049227525621933e-21,1.744287510518916e-05,-9.182488359098545e-21,3.2500995785891094e-20,1.0723337624383737e-20,-7.782126835126248e-20,0.0005102040595375001,-7.849293615436181e-05,3.5266250880133062e-19,-0.0002040816325461492,1.1168463989565443e-21,-9.182488359098545e-21,3.139717591693625e-05,-1.462798150583565e-20,-7.222036380018058e-20,-1.5007227660819874e-19,0.0004960317746736109,-3.3742938328510135e-19,-0.0004960317746736109,1.532365009451555e-18,1.9716476748009365e-20,3.2500995785891094e-20,-1.462798150583565e-20,7.086167897796258e-05,-4.736326327553532e-20,-2.4342325349938197e-19,0.0008503401186317205,1.1104356886247409e-20,-0.00024295432376675308,-0.0003401360590942204,8.150769568633309e-21,1.0723337624383737e-20,-7.222036380018058e-20,-4.736326327553532e-20,9.718172805150971e-05,-5.7203633902074e-19,0.0007971939048729837,9.996053772639406e-19,3.817352086558211e-18,-0.001195790828205645,-2.4414028984349474e-20,-7.782126835126248e-20,-1.5007227660819874e-19,-2.4342325349938197e-19,-5.7203633902074e-19,0.00023915816564112902,14.0,8.0,7.0,0.04211309552192688,-0.004921343643218279,-0.007950680330395699,-0.008864795789122581,0.0001594387722434476,0.0003401360590942204,0.00038265305920504034,0.00042517005931586027,0.0006377550889737904,0.0005314626032486558,-0.004921343643218279,0.0014746042434126139,0.0003401360590942204,0.00038265305920504034,-7.97193861217238e-05,-5.232862531556748e-05,-5.886970029678196e-05,1.6784510509890723e-19,-6.66458256311238e-20,-5.892053515136789e-19,-0.007950680330395699,0.0003401360590942204,0.00439747329801321,0.0006377550889737904,7.703566164242592e-21,-9.718172805150971e-05,-6.261458676524076e-20,-0.00042517005931586027,-0.00018221575010102242,4.1461427832667206e-19,-0.008864795789122581,0.00038265305920504034,0.0006377550889737904,0.0057185376062989235,-1.5940081889096258e-19,3.975565216261215e-19,-0.00012755101488437504,6.099902289580286e-19,-0.00021258502965793014,-0.0006377550889737904,0.0001594387722434476,-7.97193861217238e-05,7.703566164242592e-21,-1.5940081889096258e-19,6.1322607507463545e-06,-5.187182271531392e-22,5.105369241993657e-21,-3.9544859562228504e-21,7.218479664942793e-21,1.541348481709565e-20,0.0003401360590942204,-5.232862531556748e-05,-9.718172805150971e-05,3.975565216261215e-19,-5.187182271531392e-22,1.4951035154808778e-05,-7.071114692318344e-21,-3.104929381086053e-20,-3.721785751965549e-20,-3.6698433331411935e-20,0.00038265305920504034,-5.886970029678196e-05,-6.261458676524076e-20,-0.00012755101488437504,5.105369241993657e-21,-7.071114692318344e-21,1.9623234038590454e-05,1.4227700406368143e-21,3.062343150471497e-20,1.4631665690735778e-19,0.00042517005931586027,1.6784510509890723e-19,-0.00042517005931586027,6.099902289580286e-19,-3.9544859562228504e-21,-3.104929381086053e-20,1.4227700406368143e-21,6.073858094168827e-05,-6.867849920185069e-20,-5.766896435566571e-20,0.0006377550889737904,-6.66458256311238e-20,-0.00018221575010102242,-0.00021258502965793014,7.218479664942793e-21,-3.721785751965549e-20,3.062343150471497e-20,-6.867849920185069e-20,6.073858094168827e-05,7.704049386354339e-20,0.0005314626032486558,-5.892053515136789e-19,4.1461427832667206e-19,-0.0006377550889737904,1.541348481709565e-20,-3.6698433331411935e-20,1.4631665690735778e-19,-5.766896435566571e-20,7.704049386354339e-20,0.00010629251482896507,14.0,8.0,8.0,0.03767981007695198,-0.0043433778919279575,-0.00701884925365448,-0.00701884925365448,0.00013950893480796367,0.00029761905898340046,0.00029761905898340046,0.00037202381645329297,0.0004960317746736109,0.00037202381645329297,-0.0043433778919279575,0.001296002184972167,0.00029761905898340046,0.00029761905898340046,-6.975446740398183e-05,-4.578754669637419e-05,-4.578754669637419e-05,4.0682751023282756e-19,3.4582984184527776e-19,2.8840748070972943e-19,-0.00701884925365448,0.00029761905898340046,0.003865504637360573,0.0004960317746736109,1.6197122125216002e-20,-8.50340147735551e-05,2.582160604357916e-19,-0.00037202381645329297,-0.00014172335795592517,7.971938677819085e-19,-0.00701884925365448,0.00029761905898340046,0.0004960317746736109,0.003865504637360573,4.682472022914928e-20,3.314555107506375e-19,-8.50340147735551e-05,7.026981504711343e-19,-0.00014172335795592517,-0.00037202381645329297,0.00013950893480796367,-6.975446740398183e-05,1.6197122125216002e-20,4.682472022914928e-20,5.36572815690306e-06,7.158787759313295e-21,5.5190879874473154e-21,-5.732612060998235e-21,-6.4574161480507545e-21,-8.585405320709475e-21,0.00029761905898340046,-4.578754669637419e-05,-8.50340147735551e-05,3.314555107506375e-19,7.158787759313295e-21,1.308215632889187e-05,5.26173788171529e-21,-5.864528304772263e-20,-4.5055962510266555e-20,-2.795692109609652e-20,0.00029761905898340046,-4.578754669637419e-05,2.582160604357916e-19,-8.50340147735551e-05,5.5190879874473154e-21,5.26173788171529e-21,1.308215632889187e-05,-2.821232280374507e-20,-2.399096325953268e-20,-2.0288284733482252e-20,0.00037202381645329297,4.0682751023282756e-19,-0.00037202381645329297,7.026981504711343e-19,-5.732612060998235e-21,-5.864528304772263e-20,-2.821232280374507e-20,5.3146257414482534e-05,-8.068910999733237e-20,-2.71671316321703e-20,0.0004960317746736109,3.4582984184527776e-19,-0.00014172335795592517,-0.00014172335795592517,-6.4574161480507545e-21,-4.5055962510266555e-20,-2.399096325953268e-20,-8.068910999733237e-20,4.049238850711845e-05,-1.0650963682870609e-19,0.00037202381645329297,2.8840748070972943e-19,7.971938677819085e-19,-0.00037202381645329297,-8.585405320709475e-21,-2.795692109609652e-20,-2.0288284733482252e-20,-2.71671316321703e-20,-1.0650963682870609e-19,5.3146257414482534e-05,14.0,8.0,9.0,0.034096021205186844,-0.0038872354198247194,-0.006283068563789129,-0.005696248263120651,0.00012400794366840273,0.00026455026818439364,0.0002380952355451882,0.0003306878206785768,0.00039682540227659047,0.00027056277031078935,-0.0038872354198247194,0.001156071899458766,0.00026455026818439364,0.0002380952355451882,-6.200397183420137e-05,-4.0700040699448436e-05,-3.6630037357099354e-05,0.0,-2.1689338051865282e-20,-5.0702349070341807e-20,-0.006283068563789129,0.00026455026818439364,0.0034486015792936087,0.00039682540227659047,-2.704162101451813e-37,-7.558579090982676e-05,-1.7282615733432855e-20,-0.0003306878206785768,-0.00011337868636474013,-7.846792325747435e-20,-0.005696248263120651,0.0002380952355451882,0.00039682540227659047,0.002738224109634757,1.890211501157021e-21,4.40672272232921e-21,-5.952380888629705e-05,0.0,-9.920635056914762e-05,-0.00023191094805952162,0.00012400794366840273,-6.200397183420137e-05,-2.704162101451813e-37,1.890211501157021e-21,4.76953618999687e-06,2.1528912015085222e-38,-2.908017713505839e-22,0.0,3.261957138759338e-38,-7.101435337256563e-37,0.00026455026818439364,-4.0700040699448436e-05,-7.558579090982676e-05,4.40672272232921e-21,2.1528912015085222e-38,1.1628582797129638e-05,-6.779573613149161e-22,0.0,-4.014313835839824e-37,-9.384110626661426e-37,0.0002380952355451882,-3.6630037357099354e-05,-1.7282615733432855e-20,-5.952380888629705e-05,-2.908017713505839e-22,-6.779573613149161e-22,9.157509339274839e-06,0.0,5.4223345129663204e-21,1.2675587267585452e-20,0.0003306878206785768,0.0,-0.0003306878206785768,0.0,0.0,0.0,0.0,4.724111931864172e-05,0.0,-0.0,0.00039682540227659047,-2.1689338051865282e-20,-0.00011337868636474013,-9.920635056914762e-05,3.261957138759338e-38,-4.014313835839824e-37,5.4223345129663204e-21,0.0,2.8344671591185033e-05,1.9616980814368587e-20,0.00027056277031078935,-5.0702349070341807e-20,-7.846792325747435e-20,-0.00023191094805952162,-7.101435337256563e-37,-9.384110626661426e-37,1.2675587267585452e-20,-0.0,1.9616980814368587e-20,2.8988868507440202e-05,14.0,8.0,10.0,0.03113771602511406,-0.003517992328852415,-0.005687229335308075,-0.0047159092500805855,0.00011160714348079637,0.0002380952355451882,0.00019480519404169172,0.00029761905898340046,0.0003246753185521811,0.000202922077733092,-0.003517992328852415,0.0010434617288410664,0.0002380952355451882,0.00019480519404169172,-5.5803571740398183e-05,-3.6630037357099354e-05,-2.9970029572723433e-05,5.693451198224958e-20,1.7745822336178346e-20,-0.0,-0.005687229335308075,0.0002380952355451882,0.0031130178831517696,0.0003246753185521811,-2.3871968190331008e-36,-6.80272132740356e-05,3.632528924903242e-21,-0.00029761905898340046,-9.276437776861712e-05,-0.0,-0.0047159092500805855,0.00019480519404169172,0.0003246753185521811,0.002011859556660056,3.0038500508850255e-22,2.1378352068875155e-20,-4.329004150349647e-05,7.209240283682775e-20,-7.215006917249411e-05,-0.0001521915546618402,0.00011160714348079637,-5.5803571740398183e-05,-2.3871968190331008e-36,3.0038500508850255e-22,4.292582616471918e-06,3.8778048325352803e-39,-4.621308110409352e-23,2.6598270359103645e-37,1.111360283226455e-37,-0.0,0.0002380952355451882,-3.6630037357099354e-05,-6.80272132740356e-05,2.1378352068875155e-20,3.8778048325352803e-39,1.0465724699315615e-05,-5.588506232493826e-22,-1.6267004346692528e-20,-5.070235068592894e-21,-0.0,0.00019480519404169172,-2.9970029572723433e-05,3.632528924903242e-21,-4.329004150349647e-05,-4.621308110409352e-23,-5.588506232493826e-22,6.660006874881219e-06,8.686283721710045e-37,2.7074131138890466e-37,-0.0,0.00029761905898340046,5.693451198224958e-20,-0.00029761905898340046,7.209240283682775e-20,2.6598270359103645e-37,-1.6267004346692528e-20,8.686283721710045e-37,4.251700738677755e-05,-2.0597829612748946e-20,-0.0,0.0003246753185521811,1.7745822336178346e-20,-9.276437776861712e-05,-7.215006917249411e-05,1.111360283226455e-37,-5.070235068592894e-21,2.7074131138890466e-37,-2.0597829612748946e-20,2.0614306777133606e-05,-0.0,0.000202922077733092,-0.0,-0.0,-0.0001521915546618402,-0.0,-0.0,-0.0,-0.0,-0.0,1.6910173144424334e-05,14.0,8.0,11.0,0.028653638437390327,-0.003212932962924242,-0.005194805096834898,-0.003968947567045689,0.000101461038866546,0.00021645022206939757,0.00016233765927609056,0.00027056277031078935,0.00027056277031078935,0.00015609391266480088,-0.003212932962924242,0.0009508720249868929,0.00021645022206939757,0.00016233765927609056,-5.0730519433273e-05,-3.330003164592199e-05,-2.4975024643936194e-05,2.45784518106097e-19,2.0295735821343765e-20,-1.7844516615483286e-19,-0.005194805096834898,0.00021645022206939757,0.0028370439540594816,0.00027056277031078935,8.941699637076053e-20,-6.184291851241142e-05,9.000672606430969e-21,-0.00027056277031078935,-7.730365177849308e-05,-2.47667232879056e-19,-0.003968947567045689,0.00016233765927609056,0.00027056277031078935,0.0015222277725115418,-1.5113404047259298e-19,-6.135965037842125e-20,-3.246753112762235e-05,-3.316098574830611e-19,-5.411255551734939e-05,-0.00010406260116724297,0.000101461038866546,-5.0730519433273e-05,8.941699637076053e-20,-1.5113404047259298e-19,3.9023475437716115e-06,1.0406113859469651e-21,4.332056747349228e-21,-1.0686774464163046e-20,-4.126167888105987e-22,1.244198306154738e-20,0.00021645022206939757,-3.330003164592199e-05,-6.184291851241142e-05,-6.135965037842125e-20,1.0406113859469651e-21,9.51429501583334e-06,5.722025926303404e-23,-3.0530415691068234e-20,-1.588317941582246e-21,5.281494896775663e-21,0.00016233765927609056,-2.4975024643936194e-05,9.000672606430969e-21,-3.246753112762235e-05,4.332056747349228e-21,5.722025926303404e-23,4.995004928787239e-06,-1.3048746371900322e-35,-1.8745209189126556e-21,-3.5716877814634694e-22,0.00027056277031078935,2.45784518106097e-19,-0.00027056277031078935,-3.316098574830611e-19,-1.0686774464163046e-20,-3.0530415691068234e-20,-1.3048746371900322e-35,3.865182588924654e-05,1.1562129461668051e-20,2.3106539163651568e-20,0.00027056277031078935,2.0295735821343765e-20,-7.730365177849308e-05,-5.411255551734939e-05,-4.126167888105987e-22,-1.588317941582246e-21,-1.8745209189126556e-21,1.1562129461668051e-20,1.5460729628102854e-05,7.677601255620236e-21,0.00015609391266480088,-1.7844516615483286e-19,-2.47667232879056e-19,-0.00010406260116724297,1.244198306154738e-20,5.281494896775663e-21,-3.5716877814634694e-22,2.3106539163651568e-20,7.677601255620236e-21,1.0406260116724297e-05,14.0,8.0,12.0,0.026537835597991943,-0.002956635318696499,-0.0047809830866754055,-0.0033866430167108774,9.300595411332324e-05,0.00019841270113829523,0.00013736264372710139,0.00024801588733680546,0.00022893772984389216,0.0001226452150149271,-0.002956635318696499,0.0008733937866054475,0.00019841270113829523,0.00013736264372710139,-4.650297705666162e-05,-3.052503234357573e-05,-2.1132713300175965e-05,0.0,-2.541098841762901e-21,-1.6940658945086007e-21,-0.0047809830866754055,0.00019841270113829523,0.002606074558570981,0.00022893772984389216,-2.1366398339671483e-21,-5.668934318237007e-05,0.0,-0.00024801588733680546,-6.541077891597524e-05,0.0,-0.0033866430167108774,0.00013736264372710139,0.00022893772984389216,0.001179921324364841,-2.7565518758645906e-22,2.0468372211813346e-21,-2.4975024643936194e-05,-0.0,-4.162504046689719e-05,-7.358712900895625e-05,9.300595411332324e-05,-4.650297705666162e-05,-2.1366398339671483e-21,-2.7565518758645906e-22,3.577152028810815e-06,2.302794286907161e-22,1.848876527631535e-22,0.0,-1.0063575481842707e-24,-1.45860065831003e-22,0.00019841270113829523,-3.052503234357573e-05,-5.668934318237007e-05,2.0468372211813346e-21,2.302794286907161e-22,8.72143755259458e-06,-3.700602799505963e-22,-0.0,3.543827296883853e-23,-1.0152086385383319e-22,0.00013736264372710139,-2.1132713300175965e-05,0.0,-2.4975024643936194e-05,1.848876527631535e-22,-3.700602799505963e-22,3.84231134376023e-06,0.0,2.638464068409564e-22,8.470329472543003e-22,0.00024801588733680546,0.0,-0.00024801588733680546,-0.0,0.0,-0.0,0.0,3.543083948898129e-05,0.0,0.0,0.00022893772984389216,-2.541098841762901e-21,-6.541077891597524e-05,-4.162504046689719e-05,-1.0063575481842707e-24,3.543827296883853e-23,2.638464068409564e-22,0.0,1.1892869224539027e-05,4.235164736271502e-22,0.0001226452150149271,-1.6940658945086007e-21,0.0,-7.358712900895625e-05,-1.45860065831003e-22,-1.0152086385383319e-22,8.470329472543003e-22,0.0,4.235164736271502e-22,6.689738711429527e-06,14.0,8.0,13.0,0.024713827297091484,-0.0027382588014006615,-0.004428309854120016,-0.0029238618444651365,8.585165051044896e-05,0.00018315018678549677,0.00011773940059356391,0.00022893772984389216,0.00019623234402388334,9.811617201194167e-05,-0.0027382588014006615,0.0008076030062511563,0.00018315018678549677,0.00011773940059356391,-4.292582525522448e-05,-2.8176951673231088e-05,-1.8113754777004942e-05,8.192363828747655e-20,-1.1858461261560205e-20,6.522153693858113e-20,-0.004428309854120016,0.00018315018678549677,0.0024099200963974,0.00019623234402388334,-7.114254746202398e-20,-5.232862531556748e-05,8.385626177817573e-20,-0.00022893772984389216,-5.6066382967401296e-05,2.693564772268675e-19,-0.0029238618444651365,0.00011773940059356391,0.00019623234402388334,0.0009332929039373994,-1.3957021706781504e-20,7.852174815842712e-20,-1.9623234038590454e-05,4.453446326190823e-19,-3.270538945798762e-05,-5.3517909691436216e-05,8.585165051044896e-05,-4.292582525522448e-05,-7.114254746202398e-20,-1.3957021706781504e-20,3.3019864531524945e-06,3.372196849218835e-21,1.006331252294856e-21,3.665941286316059e-21,2.388984244913199e-21,-4.3895234846243765e-22,0.00018315018678549677,-2.8176951673231088e-05,-5.232862531556748e-05,7.852174815842712e-20,3.372196849218835e-21,8.050557880778797e-06,-1.4535410180599127e-21,-2.489307965011705e-20,-2.580958001685125e-21,-5.8122746430865635e-21,0.00011773940059356391,-1.8113754777004942e-05,8.385626177817573e-20,-1.9623234038590454e-05,1.006331252294856e-21,-1.4535410180599127e-21,3.0189589779183734e-06,-9.161362133942198e-21,-3.527790411012983e-21,-7.411538288475128e-21,0.00022893772984389216,8.192363828747655e-20,-0.00022893772984389216,4.453446326190823e-19,3.665941286316059e-21,-2.489307965011705e-20,-9.161362133942198e-21,3.270538945798762e-05,-2.6289324981189614e-20,-2.5087100355787617e-20,0.00019623234402388334,-1.1858461261560205e-20,-5.6066382967401296e-05,-3.270538945798762e-05,2.388984244913199e-21,-2.580958001685125e-21,-3.527790411012983e-21,-2.6289324981189614e-20,9.344396858068649e-06,-1.0164395367051604e-20,9.811617201194167e-05,6.522153693858113e-20,2.693564772268675e-19,-5.3517909691436216e-05,-4.3895234846243765e-22,-5.8122746430865635e-21,-7.411538288475128e-21,-2.5087100355787617e-20,-1.0164395367051604e-20,4.459825959202135e-06,14.0,8.0,14.0,0.023125000298023224,-0.0025499574840068817,-0.004124149680137634,-0.0025499574840068817,7.97193861217238e-05,0.0001700680295471102,0.0001020408162730746,0.00021258502965793014,0.0001700680295471102,7.97193861217238e-05,-0.0025499574840068817,0.0007510383729822934,0.0001700680295471102,0.0001020408162730746,-3.98596930608619e-05,-2.616431265778374e-05,-1.5698587958468124e-05,3.149654649065883e-20,4.912791094074942e-20,-1.6940658945086007e-21,-0.004124149680137634,0.0001700680295471102,0.0022412536200135946,0.0001700680295471102,6.623441959865231e-20,-4.8590864025754854e-05,-2.668153783851046e-20,-0.00021258502965793014,-4.8590864025754854e-05,-8.470329472543003e-20,-0.0025499574840068817,0.0001020408162730746,0.0001700680295471102,0.0007510383729822934,3.0170592124607667e-20,1.0618178250045099e-19,-1.5698587958468124e-05,-3.2732320075365816e-19,-2.616431265778374e-05,-3.98596930608619e-05,7.97193861217238e-05,-3.98596930608619e-05,6.623441959865231e-20,3.0170592124607667e-20,3.0661303753731772e-06,-2.5625859486952813e-21,-1.2106735402670805e-21,-3.4040885392418754e-21,-2.6253452484468662e-21,-7.048445682423325e-22,0.0001700680295471102,-2.616431265778374e-05,-4.8590864025754854e-05,1.0618178250045099e-19,-2.5625859486952813e-21,7.475517577404389e-06,-4.392187688782361e-21,-5.982666579130385e-21,-6.2142739194709646e-21,-3.647443217529772e-21,0.0001020408162730746,-1.5698587958468124e-05,-2.668153783851046e-20,-1.5698587958468124e-05,-1.2106735402670805e-21,-4.392187688782361e-21,2.415167273284169e-06,6.971573522237817e-21,2.443102778827551e-21,4.0234064994579266e-21,0.00021258502965793014,3.149654649065883e-20,-0.00021258502965793014,-3.2732320075365816e-19,-3.4040885392418754e-21,-5.982666579130385e-21,6.971573522237817e-21,3.0369290470844135e-05,1.7316014766251818e-20,1.7701259596264185e-20,0.0001700680295471102,4.912791094074942e-20,-4.8590864025754854e-05,-2.616431265778374e-05,-2.6253452484468662e-21,-6.2142739194709646e-21,2.443102778827551e-21,1.7316014766251818e-20,7.475517577404389e-06,-1.0587911840678754e-21,7.97193861217238e-05,-1.6940658945086007e-21,-8.470329472543003e-20,-3.98596930608619e-05,-7.048445682423325e-22,-3.647443217529772e-21,4.0234064994579266e-21,1.7701259596264185e-20,-1.0587911840678754e-21,3.0661303753731772e-06,14.0,8.0,15.0,0.021728524938225746,-0.0023859126958996058,-0.003859126940369606,-0.002243522321805358,7.440476474585012e-05,0.00015873015217948705,8.928571332944557e-05,0.00019841270113829523,0.00014880952949170023,6.565126386703923e-05,-0.0023859126958996058,0.0007018849137239158,0.00015873015217948705,8.928571332944557e-05,-3.720238237292506e-05,-2.44200236920733e-05,-1.3736264008912258e-05,-1.1720722764873054e-19,-1.0630263488041469e-19,-6.268043809681823e-20,-0.003859126940369606,0.00015873015217948705,0.002094671130180359,0.00014880952949170023,-8.627782655907619e-20,-4.535147309070453e-05,-1.2197274440461925e-19,-0.00019841270113829523,-4.251700738677755e-05,4.489274620447792e-20,-0.002243522321805358,8.928571332944557e-05,0.00014880952949170023,0.000613408803474158,-4.8968061518547815e-20,-1.0960175428070295e-19,-1.2755102034134325e-05,2.3096792972707647e-19,-2.1258503693388775e-05,-3.0300581784103997e-05,7.440476474585012e-05,-3.720238237292506e-05,-8.627782655907619e-20,-4.8968061518547815e-20,2.861721668523387e-06,5.7258722353724186e-21,3.257208040809202e-21,3.1771492359762865e-21,2.6861498897148328e-21,9.587873502218802e-22,0.00015873015217948705,-2.44200236920733e-05,-4.535147309070453e-05,-1.0960175428070295e-19,5.7258722353724186e-21,6.977149951126194e-06,4.486751638800148e-21,6.0977258675287336e-21,6.545222097087469e-21,3.523590288361646e-21,8.928571332944557e-05,-1.3736264008912258e-05,-1.2197274440461925e-19,-1.2755102034134325e-05,3.257208040809202e-21,4.486751638800148e-21,1.9623234948085155e-06,6.245367509449862e-21,5.76379370047593e-21,4.7645603283054394e-21,0.00019841270113829523,-1.1720722764873054e-19,-0.00019841270113829523,2.3096792972707647e-19,3.1771492359762865e-21,6.0977258675287336e-21,6.245367509449862e-21,2.8344671591185033e-05,-2.9452327934273145e-20,-1.2708596943905146e-20,0.00014880952949170023,-1.0630263488041469e-19,-4.251700738677755e-05,-2.1258503693388775e-05,2.6861498897148328e-21,6.545222097087469e-21,5.76379370047593e-21,-2.9452327934273145e-20,6.073858003219357e-06,2.117582368135751e-21,6.565126386703923e-05,-6.268043809681823e-20,4.489274620447792e-20,-3.0300581784103997e-05,9.587873502218802e-22,3.523590288361646e-21,4.7645603283054394e-21,-1.2708596943905146e-20,2.117582368135751e-21,2.1643272702931426e-06,14.0,8.0,16.0,0.020491398870944977,-0.002241716952994466,-0.0036261379718780518,-0.0019892333075404167,6.975446740398183e-05,0.00014880952949170023,7.878151518525556e-05,0.00018601190822664648,0.00013130252773407847,5.470938413054682e-05,-0.002241716952994466,0.0006587746320292354,0.00014880952949170023,7.878151518525556e-05,-3.487723370199092e-05,-2.2893773348187096e-05,-1.212023289554054e-05,0.0,-2.964615315390051e-21,2.117582368135751e-21,-0.0036261379718780518,0.00014880952949170023,0.0019660990219563246,0.00013130252773407847,9.804180424607852e-22,-4.251700738677755e-05,-1.6940658945086007e-21,-0.00018601190822664648,-3.751500480575487e-05,-8.470329472543003e-21,-0.0019892333075404167,7.878151518525556e-05,0.00013130252773407847,0.000507515505887568,-2.4471071125130996e-22,1.7607981249708193e-21,-1.050420178216882e-05,-0.0,-1.750700357661117e-05,-2.3446878913091496e-05,6.975446740398183e-05,-3.487723370199092e-05,9.804180424607852e-22,-2.4471071125130996e-22,2.68286407845153e-06,-1.2923610336358025e-22,-1.0280173415019692e-22,0.0,2.5650613815940903e-23,9.224247594640633e-24,0.00014880952949170023,-2.2893773348187096e-05,-4.251700738677755e-05,1.7607981249708193e-21,-1.2923610336358025e-22,6.541078164445935e-06,-2.516594020012801e-22,-0.0,-1.8774514046469196e-23,1.6814000637212297e-23,7.878151518525556e-05,-1.212023289554054e-05,-1.6940658945086007e-21,-1.050420178216882e-05,-1.0280173415019692e-22,-2.516594020012801e-22,1.616030999684881e-06,0.0,4.138356483289248e-22,-2.117582368135751e-22,0.00018601190822664648,0.0,-0.00018601190822664648,-0.0,0.0,-0.0,0.0,2.6573128707241267e-05,0.0,0.0,0.00013130252773407847,-2.964615315390051e-21,-3.751500480575487e-05,-1.750700357661117e-05,2.5650613815940903e-23,-1.8774514046469196e-23,4.138356483289248e-22,0.0,5.002000762033276e-06,1.164670302474663e-21,5.470938413054682e-05,2.117582368135751e-21,-8.470329472543003e-21,-2.3446878913091496e-05,9.224247594640633e-24,1.6814000637212297e-23,-2.117582368135751e-22,0.0,1.164670302474663e-21,1.5631252381353988e-06,14.0,9.0,3.0,0.07284511625766754,-0.009484127163887024,-0.013867244124412537,-0.0317460335791111,0.0003306878206785768,0.0006349206087179482,0.0015873016091063619,0.0007215007208287716,0.0023809524718672037,0.003968254197388887,-0.009484127163887024,0.002947191707789898,0.0006349206087179482,0.0015873016091063619,-0.0001653439103392884,-9.76800947682932e-05,-0.00024420025874860585,0.0,6.776263578034403e-21,-1.0842021724855044e-19,-0.013867244124412537,0.0006349206087179482,0.0069712428376078606,0.0023809524718672037,8.432493936480176e-23,-0.00015873015217948705,0.0,-0.0006184292142279446,-0.0005952381179668009,1.0950441942103595e-17,-0.0317460335791111,0.0015873016091063619,0.0023809524718672037,0.0714285746216774,1.4313278056850436e-20,-6.134287412162291e-21,-0.0015873016091063619,3.4159703457375204e-18,-0.0023809524718672037,-0.02380952425301075,0.0003306878206785768,-0.0001653439103392884,8.432493936480176e-23,1.4313278056850436e-20,1.2718763173324987e-05,-4.986003506166526e-39,-2.344805206943338e-21,-1.4660452917131295e-37,-8.432493936480176e-23,-2.4801453645302246e-22,0.0006349206087179482,-9.76800947682932e-05,-0.00015873015217948705,-6.134287412162291e-21,-4.986003506166526e-39,2.44200236920733e-05,5.748849721435815e-22,-1.881942436289765e-39,9.386552160238565e-22,-1.3971491510997821e-21,0.0015873016091063619,-0.00024420025874860585,0.0,-0.0015873016091063619,-2.344805206943338e-21,5.748849721435815e-22,0.00024420025874860585,0.0,0.0,0.0,0.0007215007208287716,0.0,-0.0006184292142279446,3.4159703457375204e-18,-1.4660452917131295e-37,-1.881942436289765e-39,0.0,7.730365177849308e-05,-1.6739823369767253e-19,-1.373188679624021e-18,0.0023809524718672037,6.776263578034403e-21,-0.0005952381179668009,-0.0023809524718672037,-8.432493936480176e-23,9.386552160238565e-22,0.0,-1.6739823369767253e-19,0.0005952381179668009,0.0,0.003968254197388887,-1.0842021724855044e-19,1.0950441942103595e-17,-0.02380952425301075,-2.4801453645302246e-22,-1.3971491510997821e-21,0.0,-1.373188679624021e-18,0.0,0.011904762126505375,14.0,9.0,4.0,0.059197328984737396,-0.0073511903174221516,-0.010757575742900372,-0.02023809589445591,0.00024801588733680546,0.0004761904710903764,0.0009523809421807528,0.0005411255406215787,0.0014285714132711291,0.0019841270986944437,-0.0073511903174221516,0.0022470238618552685,0.0004761904710903764,0.0009523809421807528,-0.00012400794366840273,-7.326007471419871e-05,-0.00014652014942839742,-1.0140469814068361e-19,-5.286776251116358e-20,-0.0,-0.010757575742900372,0.0004761904710903764,0.005317717790603638,0.0014285714132711291,-4.98050333969258e-21,-0.0001190476177725941,3.560922064161286e-21,-0.00046382189611904323,-0.0003571428533177823,3.9007877269949034e-18,-0.02023809589445591,0.0009523809421807528,0.0014285714132711291,0.02738095261156559,4.5647361105325024e-20,-4.0303383376146063e-20,-0.0006349206087179482,1.84360381244109e-18,-0.0009523809421807528,-0.0059523810632526875,0.00024801588733680546,-0.00012400794366840273,-4.98050333969258e-21,4.5647361105325024e-20,9.53907237999374e-06,1.6940658945086007e-21,4.424993700148989e-22,4.053214508991193e-36,-1.197173391253686e-21,-1.3676504081549458e-20,0.0004761904710903764,-7.326007471419871e-05,-0.0001190476177725941,-4.0303383376146063e-20,1.6940658945086007e-21,1.8315018678549677e-05,-2.454024349801057e-22,2.5351174535170903e-20,1.7549786993351814e-20,-8.593773254269472e-21,0.0009523809421807528,-0.00014652014942839742,3.560922064161286e-21,-0.0006349206087179482,4.424993700148989e-22,-2.454024349801057e-22,9.76800947682932e-05,-3.6628802882058915e-35,-3.9291843975802517e-22,1.5042382836853377e-19,0.0005411255406215787,-1.0140469814068361e-19,-0.00046382189611904323,1.84360381244109e-18,4.053214508991193e-36,2.5351174535170903e-20,-3.6628802882058915e-35,5.7977737014880404e-05,-1.0043893892613381e-19,-4.806160275286497e-19,0.0014285714132711291,-5.286776251116358e-20,-0.0003571428533177823,-0.0009523809421807528,-1.197173391253686e-21,1.7549786993351814e-20,-3.9291843975802517e-22,-1.0043893892613381e-19,0.0002380952355451882,8.326052200813187e-34,0.0019841270986944437,-0.0,3.9007877269949034e-18,-0.0059523810632526875,-1.3676504081549458e-20,-8.593773254269472e-21,1.5042382836853377e-19,-4.806160275286497e-19,8.326052200813187e-34,0.0019841270986944437,14.0,9.0,5.0,0.049942899495363235,-0.00600793631747365,-0.00879653636366129,-0.014058956876397133,0.00019841270113829523,0.0003809523768723011,0.0006349206087179482,0.00043290044413879514,0.0009523809421807528,0.0011337868636474013,-0.00600793631747365,0.0018171550473198295,0.0003809523768723011,0.0006349206087179482,-9.920635056914762e-05,-5.860805686097592e-05,-9.76800947682932e-05,0.0,0.0,-0.0,-0.00879653636366129,0.0003809523768723011,0.004301793407648802,0.0009523809421807528,-5.194326421326603e-38,-9.523809421807528e-05,-1.126683406092229e-21,-0.0003710575110744685,-0.0002380952355451882,-9.41615053240298e-19,-0.014058956876397133,0.0006349206087179482,0.0009523809421807528,0.01383219938725233,-1.4635810641086493e-20,-1.5600231543644257e-21,-0.0003174603043589741,-4.70807526620149e-19,-0.0004761904710903764,-0.0022675737272948027,0.00019841270113829523,-9.920635056914762e-05,-5.194326421326603e-38,-1.4635810641086493e-20,7.631258085893933e-06,7.991271633009922e-39,1.8379593742790984e-21,0.0,0.0,-0.0,0.0003809523768723011,-5.860805686097592e-05,-9.523809421807528e-05,-1.5600231543644257e-21,7.991271633009922e-39,1.465201421524398e-05,6.745678342644604e-23,0.0,0.0,-0.0,0.0006349206087179482,-9.76800947682932e-05,-1.126683406092229e-21,-0.0003174603043589741,1.8379593742790984e-21,6.745678342644604e-23,4.88400473841466e-05,0.0,0.0,-0.0,0.00043290044413879514,0.0,-0.0003710575110744685,-4.70807526620149e-19,0.0,0.0,0.0,4.638218888430856e-05,0.0,1.1770188165503726e-19,0.0009523809421807528,0.0,-0.0002380952355451882,-0.0004761904710903764,0.0,0.0,0.0,0.0,0.0001190476177725941,-0.0,0.0011337868636474013,-0.0,-9.41615053240298e-19,-0.0022675737272948027,-0.0,-0.0,-0.0,1.1770188165503726e-19,-0.0,0.0005668934318237007,14.0,9.0,6.0,0.043225280940532684,-0.005082199349999428,-0.007443826179951429,-0.010345805436372757,0.0001653439103392884,0.0003174603043589741,0.00045351474545896053,0.0003607503604143858,0.0006802721181884408,0.0007086168043315411,-0.005082199349999428,0.0015259244246408343,0.0003174603043589741,0.00045351474545896053,-8.26719551696442e-05,-4.88400473841466e-05,-6.977150042075664e-05,0.0,0.0,-0.0,-0.007443826179951429,0.0003174603043589741,0.0036131725646555424,0.0006802721181884408,4.836192432596363e-22,-7.936507608974352e-05,1.6940658945086007e-21,-0.0003092146071139723,-0.0001700680295471102,1.0789339625617308e-18,-0.010345805436372757,0.00045351474545896053,0.0006802721181884408,0.008035714738070965,8.317366692448008e-22,1.6940658945086007e-21,-0.00018140589236281812,8.273835302970446e-19,-0.0002721088530961424,-0.0010629252064973116,0.0001653439103392884,-8.26719551696442e-05,4.836192432596363e-22,8.317366692448008e-22,6.359381586662494e-06,3.0705490608368035e-22,5.802923296589456e-23,0.0,-0.0,-0.0,0.0003174603043589741,-4.88400473841466e-05,-7.936507608974352e-05,1.6940658945086007e-21,3.0705490608368035e-22,1.221001184603665e-05,0.0,0.0,0.0,-0.0,0.00045351474545896053,-6.977150042075664e-05,1.6940658945086007e-21,-0.00018140589236281812,5.802923296589456e-23,0.0,2.7908599804504775e-05,0.0,-0.0,-0.0,0.0003607503604143858,0.0,-0.0003092146071139723,8.273835302970446e-19,0.0,0.0,0.0,3.865182588924654e-05,-3.826245415516498e-20,-1.3486674532021635e-19,0.0006802721181884408,0.0,-0.0001700680295471102,-0.0002721088530961424,-0.0,0.0,-0.0,-3.826245415516498e-20,6.80272132740356e-05,1.3350812546820963e-34,0.0007086168043315411,-0.0,1.0789339625617308e-18,-0.0010629252064973116,-0.0,-0.0,-0.0,-1.3486674532021635e-19,1.3350812546820963e-34,0.00021258502965793014,14.0,9.0,7.0,0.038116540759801865,-0.004404761828482151,-0.006453308742493391,-0.007936508394777775,0.00014172335795592517,0.0002721088530961424,0.0003401360590942204,0.0003092146071139723,0.0005102040595375001,0.0004724111931864172,-0.004404761828482151,0.0013154108310118318,0.0002721088530961424,0.0003401360590942204,-7.086167897796258e-05,-4.186289879726246e-05,-5.232862531556748e-05,5.794553994829105e-20,2.788629408895127e-20,7.433974933309552e-35,-0.006453308742493391,0.0002721088530961424,0.0031152265146374702,0.0005102040595375001,-1.1056991943760108e-36,-6.80272132740356e-05,0.0,-0.000265041075181216,-0.00012755101488437504,-3.40027660986707e-19,-0.007936508394777775,0.0003401360590942204,0.0005102040595375001,0.005102040711790323,1.5734453512986098e-21,2.788629408895127e-20,-0.00011337868636474013,-1.667443344987523e-19,-0.0001700680295471102,-0.0005668934318237007,0.00014172335795592517,-7.086167897796258e-05,-1.1056991943760108e-36,1.5734453512986098e-21,5.450898242997937e-06,-0.0,-2.4206851946802443e-22,1.1616691401732589e-37,5.878796261419917e-38,-0.0,0.0002721088530961424,-4.186289879726246e-05,-6.80272132740356e-05,2.788629408895127e-20,-0.0,1.0465724699315615e-05,0.0,-1.4486384987072764e-20,-6.971573522237817e-21,-1.858493733327388e-35,0.0003401360590942204,-5.232862531556748e-05,0.0,-0.00011337868636474013,-2.4206851946802443e-22,0.0,1.744287510518916e-05,0.0,0.0,-0.0,0.0003092146071139723,5.794553994829105e-20,-0.000265041075181216,-1.667443344987523e-19,1.1616691401732589e-37,-1.4486384987072764e-20,0.0,3.3130134397652e-05,-2.2069102810319485e-20,4.250345762333837e-20,0.0005102040595375001,2.788629408895127e-20,-0.00012755101488437504,-0.0001700680295471102,5.878796261419917e-38,-6.971573522237817e-21,0.0,-2.2069102810319485e-20,4.251700738677755e-05,-2.8312989650301123e-35,0.0004724111931864172,7.433974933309552e-35,-3.40027660986707e-19,-0.0005668934318237007,-0.0,-1.858493733327388e-35,-0.0,4.250345762333837e-20,-2.8312989650301123e-35,9.448223863728344e-05,14.0,9.0,8.0,0.034096021205186844,-0.0038872354198247194,-0.005696248263120651,-0.006283068563789129,0.00012400794366840273,0.0002380952355451882,0.00026455026818439364,0.00027056277031078935,0.00039682540227659047,0.0003306878206785768,-0.0038872354198247194,0.001156071899458766,0.0002380952355451882,0.00026455026818439364,-6.200397183420137e-05,-3.6630037357099354e-05,-4.0700040699448436e-05,-5.0702349070341807e-20,-2.1689338051865282e-20,1.0007273838306733e-34,-0.005696248263120651,0.0002380952355451882,0.002738224109634757,0.00039682540227659047,6.846042078004614e-37,-5.952380888629705e-05,0.0,-0.00023191094805952162,-9.920635056914762e-05,4.577295426417442e-19,-0.006283068563789129,0.00026455026818439364,0.00039682540227659047,0.0034486015792936087,-5.244817837662033e-22,-2.1689338051865282e-20,-7.558579090982676e-05,4.961695045864843e-19,-0.00011337868636474013,-0.0003306878206785768,0.00012400794366840273,-6.200397183420137e-05,6.846042078004614e-37,-5.244817837662033e-22,4.76953618999687e-06,-0.0,8.068950228208331e-23,-9.850136084890722e-38,2.9544763824457866e-38,-0.0,0.0002380952355451882,-3.6630037357099354e-05,-5.952380888629705e-05,-2.1689338051865282e-20,-0.0,9.157509339274839e-06,0.0,1.2675587267585452e-20,5.4223345129663204e-21,-2.5018184595766833e-35,0.00026455026818439364,-4.0700040699448436e-05,0.0,-7.558579090982676e-05,8.068950228208331e-23,0.0,1.1628582797129638e-05,0.0,0.0,-0.0,0.00027056277031078935,-5.0702349070341807e-20,-0.00023191094805952162,4.961695045864843e-19,-9.850136084890722e-38,1.2675587267585452e-20,0.0,2.8988868507440202e-05,-2.3914033846978114e-20,-5.721619283021803e-20,0.00039682540227659047,-2.1689338051865282e-20,-9.920635056914762e-05,-0.00011337868636474013,2.9544763824457866e-38,5.4223345129663204e-21,0.0,-2.3914033846978114e-20,2.8344671591185033e-05,4.719984048198328e-35,0.0003306878206785768,1.0007273838306733e-34,4.577295426417442e-19,-0.0003306878206785768,-0.0,-2.5018184595766833e-35,-0.0,-5.721619283021803e-20,4.719984048198328e-35,4.724111931864172e-05,14.0,9.0,9.0,0.03084736317396164,-0.0034788360353559256,-0.005098605062812567,-0.005098605062812567,0.00011022927355952561,0.00021164021745789796,0.00021164021745789796,0.0002405002451268956,0.0003174603043589741,0.0002405002451268956,-0.0034788360353559256,0.0010312373051419854,0.00021164021745789796,0.00021164021745789796,-5.5114636779762805e-05,-3.256003401475027e-05,-3.256003401475027e-05,0.0,0.0,-0.0,-0.005098605062812567,0.00021164021745789796,0.002442795317620039,0.0003174603043589741,0.0,-5.291005436447449e-05,0.0,-0.00020614305685739964,-7.936507608974352e-05,3.2338295175515596e-19,-0.005098605062812567,0.00021164021745789796,0.0003174603043589741,0.002442795317620039,0.0,0.0,-5.291005436447449e-05,3.829023191411028e-19,-7.936507608974352e-05,-0.00020614305685739964,0.00011022927355952561,-5.5114636779762805e-05,0.0,0.0,4.2395877244416624e-06,0.0,0.0,0.0,-0.0,-0.0,0.00021164021745789796,-3.256003401475027e-05,-5.291005436447449e-05,0.0,0.0,8.140008503687568e-06,0.0,0.0,-0.0,-0.0,0.00021164021745789796,-3.256003401475027e-05,0.0,-5.291005436447449e-05,0.0,0.0,8.140008503687568e-06,0.0,0.0,-0.0,0.0002405002451268956,0.0,-0.00020614305685739964,3.829023191411028e-19,0.0,0.0,0.0,2.5767882107174955e-05,-1.487984346207384e-20,-4.0422868969394495e-20,0.0003174603043589741,0.0,-7.936507608974352e-05,-7.936507608974352e-05,-0.0,-0.0,0.0,-1.487984346207384e-20,1.984126902243588e-05,2.334246660216085e-35,0.0002405002451268956,-0.0,3.2338295175515596e-19,-0.00020614305685739964,-0.0,-0.0,-0.0,-4.0422868969394495e-20,2.334246660216085e-35,2.5767882107174955e-05,14.0,9.0,10.0,0.028166666626930237,-0.0031482684426009655,-0.004614718724042177,-0.004220779053866863,9.920635056914762e-05,0.00019047618843615055,0.00017316016601398587,0.00021645022206939757,0.0002597402490209788,0.0001803751802071929,-0.0031482684426009655,0.0009307775762863457,0.00019047618843615055,0.00017316016601398587,-4.960317528457381e-05,-2.930402843048796e-05,-2.6640027499524876e-05,0.0,0.0,-0.0,-0.004614718724042177,0.00019047618843615055,0.002205009339377284,0.0002597402490209788,0.0,-4.761904710903764e-05,0.0,-0.00018552875553723425,-6.49350622552447e-05,-1.1859356943067235e-19,-0.004220779053866863,0.00017316016601398587,0.0002597402490209788,0.0017947329906746745,5.748475612040123e-22,0.0,-3.848003689199686e-05,-1.3341775753157072e-19,-5.77200589759741e-05,-0.00013528138515539467,9.920635056914762e-05,-4.960317528457381e-05,0.0,5.748475612040123e-22,3.815629042946966e-06,0.0,-8.843808536817308e-23,0.0,0.0,-0.0,0.00019047618843615055,-2.930402843048796e-05,-4.761904710903764e-05,0.0,0.0,7.32600710762199e-06,0.0,0.0,0.0,-0.0,0.00017316016601398587,-2.6640027499524876e-05,0.0,-3.848003689199686e-05,-8.843808536817308e-23,0.0,5.920006060478045e-06,0.0,0.0,-0.0,0.00021645022206939757,0.0,-0.00018552875553723425,-1.3341775753157072e-19,0.0,0.0,0.0,2.319109444215428e-05,0.0,1.4824196178834044e-20,0.0002597402490209788,0.0,-6.49350622552447e-05,-5.77200589759741e-05,0.0,0.0,0.0,0.0,1.4430014743993524e-05,-0.0,0.0001803751802071929,-0.0,-1.1859356943067235e-19,-0.00013528138515539467,-0.0,-0.0,-0.0,1.4824196178834044e-20,-0.0,1.5031265320430975e-05,14.0,9.0,11.0,0.025916356593370438,-0.002875180449336767,-0.004214875865727663,-0.0035520035307854414,9.018759010359645e-05,0.00017316016601398587,0.00014430013834498823,0.00019677291857078671,0.00021645022206939757,0.0001387501397402957,-0.002875180449336767,0.0008481796248815954,0.00017316016601398587,0.00014430013834498823,-4.5093795051798224e-05,-2.6640027499524876e-05,-2.2200021703611128e-05,0.0,0.0,-0.0,-0.004214875865727663,0.00017316016601398587,0.0020094732753932476,0.00021645022206939757,0.0,-4.329004150349647e-05,0.0,-0.00016866250371094793,-5.411255551734939e-05,-8.962536833694147e-20,-0.0035520035307854414,0.00014430013834498823,0.00021645022206939757,0.0013579013757407665,4.0051336536155237e-22,0.0,-2.886002948798705e-05,-1.6515643206598604e-19,-4.329004150349647e-05,-9.250009316019714e-05,9.018759010359645e-05,-4.5093795051798224e-05,0.0,4.0051336536155237e-22,3.4687534480326576e-06,0.0,-6.161743936849562e-23,-0.0,-0.0,-0.0,0.00017316016601398587,-2.6640027499524876e-05,-4.329004150349647e-05,0.0,0.0,6.660006874881219e-06,0.0,-0.0,-0.0,-0.0,0.00014430013834498823,-2.2200021703611128e-05,0.0,-2.886002948798705e-05,-6.161743936849562e-23,0.0,4.440004431671696e-06,0.0,0.0,-0.0,0.00019677291857078671,0.0,-0.00016866250371094793,-1.6515643206598604e-19,-0.0,-0.0,0.0,2.108281296386849e-05,1.3281182026789435e-20,1.1203171042117684e-20,0.00021645022206939757,0.0,-5.411255551734939e-05,-4.329004150349647e-05,-0.0,-0.0,0.0,1.3281182026789435e-20,1.0822510375874117e-05,7.057471783963976e-36,0.0001387501397402957,-0.0,-8.962536833694147e-20,-9.250009316019714e-05,-0.0,-0.0,-0.0,1.1203171042117684e-20,7.057471783963976e-36,9.250009497918654e-06,14.0,9.0,12.0,0.024000134319067,-0.0026457570493221283,-0.0038788989186286926,-0.0030306994449347258,8.26719551696442e-05,0.00015873015217948705,0.00012210012937430292,0.0001803751802071929,0.00018315018678549677,0.00010901796485995874,-0.0026457570493221283,0.000779063324443996,0.00015873015217948705,0.00012210012937430292,-4.13359775848221e-05,-2.44200236920733e-05,-1.8784634448820725e-05,-6.117633056001604e-35,-4.115852111820593e-22,2.202285662861181e-20,-0.0038788989186286926,0.00015873015217948705,0.0018458326812833548,0.00018315018678549677,2.1368599577141412e-21,-3.968253804487176e-05,0.0,-0.00015460730355698615,-4.578754669637419e-05,1.3721933745519665e-19,-0.0030306994449347258,0.00012210012937430292,0.00018315018678549677,0.0010525189572945237,6.013121911217199e-22,5.726558153084952e-22,-2.2200021703611128e-05,2.2834806778136204e-19,-3.330003164592199e-05,-6.541077891597524e-05,8.26719551696442e-05,-4.13359775848221e-05,2.1368599577141412e-21,6.013121911217199e-22,3.179690793331247e-06,-3.3889590706039503e-22,-7.561652712722424e-23,-6.602763660548077e-38,1.1993375775046183e-23,-1.3316323912094408e-23,0.00015873015217948705,-2.44200236920733e-05,-3.968253804487176e-05,5.726558153084952e-22,-3.3889590706039503e-22,6.105005923018325e-06,-8.810089466284541e-23,-0.0,0.0,9.991701981989444e-38,0.00012210012937430292,-1.8784634448820725e-05,0.0,-2.2200021703611128e-05,-7.561652712722424e-23,-8.810089466284541e-23,3.4153879369114293e-06,1.128474576789396e-35,1.0587911840678754e-22,-4.0234064994579266e-21,0.0001803751802071929,-6.117633056001604e-35,-0.00015460730355698615,2.2834806778136204e-19,-6.602763660548077e-38,-0.0,1.128474576789396e-35,1.932591294462327e-05,-9.36493661412904e-21,-1.7353483463061056e-20,0.00018315018678549677,-4.115852111820593e-22,-4.578754669637419e-05,-3.330003164592199e-05,1.1993375775046183e-23,0.0,1.0587911840678754e-22,-9.36493661412904e-21,8.325007911480498e-06,8.470329472543003e-22,0.00010901796485995874,2.202285662861181e-20,1.3721933745519665e-19,-6.541077891597524e-05,-1.3316323912094408e-23,9.991701981989444e-38,-4.0234064994579266e-21,-1.7353483463061056e-20,8.470329472543003e-22,5.946434612269513e-06,14.0,9.0,13.0,0.022348525002598763,-0.0024502878077328205,-0.0035925977863371372,-0.002616431098431349,7.631257903994992e-05,0.00014652014942839742,0.00010465725063113496,0.00016650016186758876,0.00015698587230872363,8.721437188796699e-05,-0.0024502878077328205,0.0007203739369288087,0.00014652014942839742,0.00010465725063113496,-3.815628951997496e-05,-2.254156061098911e-05,-1.6101115761557594e-05,1.1214183103463191e-35,4.972790829637964e-22,9.317362419797304e-21,-0.0035925977863371372,0.00014652014942839742,0.0017068645684048533,0.00015698587230872363,1.0189132555669946e-22,-3.6630037357099354e-05,-4.235164736271502e-22,-0.00014271443069446832,-3.924646807718091e-05,-5.590417451878382e-20,-0.002616431098431349,0.00010465725063113496,0.00015698587230872363,0.0008325008093379438,-5.053897342727209e-22,-0.0,-1.744287510518916e-05,-1.0947761256533464e-19,-2.616431265778374e-05,-4.7571476898156106e-05,7.631257903994992e-05,-3.815628951997496e-05,1.0189132555669946e-22,-5.053897342727209e-22,2.9350990189414006e-06,0.0,7.661983829180777e-23,6.759446204960549e-38,-1.6981887592783243e-23,5.828775688403178e-24,0.00014652014942839742,-2.254156061098911e-05,-3.6630037357099354e-05,-0.0,0.0,5.635390152747277e-06,0.0,0.0,0.0,0.0,0.00010465725063113496,-1.6101115761557594e-05,-4.235164736271502e-22,-1.744287510518916e-05,7.661983829180777e-23,0.0,2.683519142010482e-06,-2.256949153578792e-36,0.0,-1.4823076576950256e-21,0.00016650016186758876,1.1214183103463191e-35,-0.00014271443069446832,-1.0947761256533464e-19,6.759446204960549e-38,0.0,-2.256949153578792e-36,1.783930383680854e-05,6.792151261909103e-21,6.859084229072708e-21,0.00015698587230872363,4.972790829637964e-22,-3.924646807718091e-05,-2.616431265778374e-05,-1.6981887592783243e-23,0.0,0.0,6.792151261909103e-21,6.541078164445935e-06,0.0,8.721437188796699e-05,9.317362419797304e-21,-5.590417451878382e-20,-4.7571476898156106e-05,5.828775688403178e-24,0.0,-1.4823076576950256e-21,6.859084229072708e-21,0.0,3.964289589930559e-06,14.0,9.0,14.0,0.020910121500492096,-0.0022817461285740137,-0.0033457018435001373,-0.0022817461285740137,7.086167897796258e-05,0.0001360544265480712,9.070294618140906e-05,0.00015460730355698615,0.0001360544265480712,7.086167897796258e-05,-0.0022817461285740137,0.0006699154037050903,0.0001360544265480712,9.070294618140906e-05,-3.543083948898129e-05,-2.093144939863123e-05,-1.3954299902252387e-05,2.897276997414553e-20,7.199780051661553e-21,6.776263578034403e-21,-0.0033457018435001373,0.0001360544265480712,0.0015873751835897565,0.0001360544265480712,-5.443950059075845e-22,-3.40136066370178e-05,-8.470329472543003e-22,-0.000132520537590608,-3.40136066370178e-05,-4.658681209898652e-20,-0.0022817461285740137,9.070294618140906e-05,0.0001360544265480712,0.0006699154037050903,-2.9061452732612064e-23,6.97270766440581e-21,-1.3954299902252387e-05,-4.818420772175152e-20,-2.093144939863123e-05,-3.543083948898129e-05,7.086167897796258e-05,-3.543083948898129e-05,-5.443950059075845e-22,-2.9061452732612064e-23,2.7254491214989685e-06,1.2594820684126597e-22,-8.367048773605592e-23,-2.3190867408057562e-38,5.44313393513774e-23,3.970375116845165e-23,0.0001360544265480712,-2.093144939863123e-05,-3.40136066370178e-05,6.97270766440581e-21,1.2594820684126597e-22,5.2328623496578075e-06,6.294264995862001e-23,-7.243192493536382e-21,-1.848228853895687e-21,2.539846389391787e-23,9.070294618140906e-05,-1.3954299902252387e-05,-8.470329472543003e-22,-1.3954299902252387e-05,-8.367048773605592e-23,6.294264995862001e-23,2.146815404557856e-06,-2.09660545348416e-36,-1.887430573984056e-24,-1.0587911840678754e-21,0.00015460730355698615,2.897276997414553e-20,-0.000132520537590608,-4.818420772175152e-20,-2.3190867408057562e-38,-7.243192493536382e-21,-2.09660545348416e-36,1.6565067198826e-05,-5.8850944058692896e-21,5.517275702579871e-21,0.0001360544265480712,7.199780051661553e-21,-3.40136066370178e-05,-2.093144939863123e-05,5.44313393513774e-23,-1.848228853895687e-21,-1.887430573984056e-24,-5.8850944058692896e-21,5.2328623496578075e-06,2.117582368135751e-22,7.086167897796258e-05,6.776263578034403e-21,-4.658681209898652e-20,-3.543083948898129e-05,3.970375116845165e-23,2.539846389391787e-23,-1.0587911840678754e-21,5.517275702579871e-21,2.117582368135751e-22,2.7254491214989685e-06,14.0,9.0,15.0,0.01964605413377285,-0.0021349205635488033,-0.00313059170730412,-0.002007469767704606,6.613756704609841e-05,0.00012698413047473878,7.936507608974352e-05,0.00014430013834498823,0.0001190476177725941,5.835667616338469e-05,-0.0021349205635488033,0.0006260683876462281,0.00012698413047473878,7.936507608974352e-05,-3.3068783523049206e-05,-1.953601895365864e-05,-1.221001184603665e-05,-1.0007496653191341e-19,3.7269449679189215e-20,6.691560283308973e-20,-0.00313059170730412,0.00012698413047473878,0.0014835343463346362,0.0001190476177725941,-1.1234498245996142e-19,-3.1746032618684694e-05,9.105604182983729e-20,-0.00012368583702482283,-2.9761904443148524e-05,1.2874900798265365e-19,-0.002007469767704606,7.936507608974352e-05,0.0001190476177725941,0.0005471419426612556,4.565821138851625e-20,1.195916403879e-19,-1.1337868272676133e-05,2.2819217008528994e-19,-1.70068033185089e-05,-2.6933850676869042e-05,6.613756704609841e-05,-3.3068783523049206e-05,-1.1234498245996142e-19,4.565821138851625e-20,2.5437525437155273e-06,2.855279042465125e-21,-9.357517030216638e-22,1.1971388378838599e-20,-2.0547752823459713e-22,-2.3215902295712595e-21,0.00012698413047473878,-1.953601895365864e-05,-3.1746032618684694e-05,1.195916403879e-19,2.855279042465125e-21,4.88400473841466e-06,-2.7333872341291525e-21,-2.216167312581405e-21,-3.81748941792694e-21,-5.7586545178030174e-21,7.936507608974352e-05,-1.221001184603665e-05,9.105604182983729e-20,-1.1337868272676133e-05,-9.357517030216638e-22,-2.7333872341291525e-21,1.7442874877815484e-06,-6.66977336379422e-21,-2.7596278023062284e-21,-1.9058241313221758e-21,0.00014430013834498823,-1.0007496653191341e-19,-0.00012368583702482283,2.2819217008528994e-19,1.1971388378838599e-20,-2.216167312581405e-21,-6.66977336379422e-21,1.5460729628102854e-05,-2.352169456996404e-21,-1.1339680076995942e-20,0.0001190476177725941,3.7269449679189215e-20,-2.9761904443148524e-05,-1.70068033185089e-05,-2.0547752823459713e-22,-3.81748941792694e-21,-2.7596278023062284e-21,-2.352169456996404e-21,4.251700829627225e-06,-1.0587911840678754e-22,5.835667616338469e-05,6.691560283308973e-20,1.2874900798265365e-19,-2.6933850676869042e-05,-2.3215902295712595e-21,-5.7586545178030174e-21,-1.9058241313221758e-21,-1.1339680076995942e-20,-1.0587911840678754e-22,1.92384641195531e-06,14.0,9.0,16.0,0.018526379019021988,-0.0020058648660779,-0.002941494807600975,-0.0017798786284402013,6.200397183420137e-05,0.0001190476177725941,7.002801430644467e-05,0.00013528138515539467,0.0001050420178216882,4.863056165049784e-05,-0.0020058648660779,0.0005876124487258494,0.0001190476177725941,7.002801430644467e-05,-3.100198591710068e-05,-1.8315018678549677e-05,-1.0773540452646557e-05,-2.5351174535170903e-20,-6.3527471044072525e-21,1.2705494208814505e-21,-0.002941494807600975,0.0001190476177725941,0.0013924547238275409,0.0001050420178216882,8.275616639246856e-23,-2.9761904443148524e-05,-8.470329472543003e-22,-0.00011595547402976081,-2.626050445542205e-05,5.844527336054672e-20,-0.0017798786284402013,7.002801430644467e-05,0.0001050420178216882,0.0004526810662355274,1.6544982975769466e-22,-6.282211781831851e-21,-9.337068149761762e-06,1.354206332132001e-19,-1.4005602679389995e-05,-2.0841669538640417e-05,6.200397183420137e-05,-3.100198591710068e-05,8.275616639246856e-23,1.6544982975769466e-22,2.384768094998435e-06,-8.504365475833052e-23,-1.2906398022494827e-22,6.841838631027148e-37,4.1847351305201294e-24,1.488001819791979e-23,0.0001190476177725941,-1.8315018678549677e-05,-2.9761904443148524e-05,-6.282211781831851e-21,-8.504365475833052e-23,4.578754669637419e-06,9.851730435619677e-24,6.337793633792726e-21,1.4659222720088906e-21,3.522535941051938e-23,7.002801430644467e-05,-1.0773540452646557e-05,-8.470329472543003e-22,-9.337068149761762e-06,-1.2906398022494827e-22,9.851730435619677e-24,1.4364720755111193e-06,1.2005319894764787e-36,7.694795394128178e-23,-2.117582368135751e-22,0.00013528138515539467,-2.5351174535170903e-20,-0.00011595547402976081,1.354206332132001e-19,6.841838631027148e-37,6.337793633792726e-21,1.2005319894764787e-36,1.4494434253720101e-05,-5.908173068076946e-21,-7.452529773029819e-21,0.0001050420178216882,-6.3527471044072525e-21,-2.626050445542205e-05,-1.4005602679389995e-05,4.1847351305201294e-24,1.4659222720088906e-21,7.694795394128178e-23,-5.908173068076946e-21,3.5014006698474986e-06,2.117582368135751e-22,4.863056165049784e-05,1.2705494208814505e-21,5.844527336054672e-20,-2.0841669538640417e-05,1.488001819791979e-23,3.522535941051938e-23,-2.117582368135751e-22,-7.452529773029819e-21,2.117582368135751e-22,1.3894447192797088e-06,14.0,10.0,3.0,0.06665584444999695,-0.008587662130594254,-0.011493506841361523,-0.02876623347401619,0.00029761905898340046,0.0005194804980419576,0.0014285714132711291,0.0005411255406215787,0.0019480519695207477,0.0035714285913854837,-0.008587662130594254,0.002660464495420456,0.0005194804980419576,0.0014285714132711291,-0.00014880952949170023,-7.992007886059582e-05,-0.00021978022414259613,-1.3117676240098147e-18,-3.2517127488046498e-18,-1.4441623891832652e-17,-0.011493506841361523,0.0005194804980419576,0.00512445904314518,0.0019480519695207477,-1.1179806097869902e-18,-0.0001154401179519482,-2.351556608250969e-18,-0.000405844155466184,-0.00043290044413879514,-1.4581890562664494e-17,-0.02876623347401619,0.0014285714132711291,0.0019480519695207477,0.06448052078485489,-3.1238651608945258e-18,-2.362485938889479e-18,-0.0014285714132711291,-4.015484590731506e-18,-0.0019480519695207477,-0.02142857201397419,0.00029761905898340046,-0.00014880952949170023,-1.1179806097869902e-18,-3.1238651608945258e-18,1.1446886674093548e-05,3.134021904840911e-20,8.046047856849242e-20,7.394092532368502e-20,1.7468543640032328e-19,8.082667659554847e-19,0.0005194804980419576,-7.992007886059582e-05,-0.0001154401179519482,-2.362485938889479e-18,3.134021904840911e-20,1.7760017726686783e-05,8.613834322828443e-20,3.8050847783541993e-20,1.1927068138553236e-19,5.796968586735936e-19,0.0014285714132711291,-0.00021978022414259613,-2.351556608250969e-18,-0.0014285714132711291,8.046047856849242e-20,8.613834322828443e-20,0.00021978022414259613,1.4973037959657584e-19,3.376090365743902e-19,1.1303152168886512e-18,0.0005411255406215787,-1.3117676240098147e-18,-0.000405844155466184,-4.015484590731506e-18,7.394092532368502e-20,3.8050847783541993e-20,1.4973037959657584e-19,4.5093795051798224e-05,1.4203487278875067e-19,1.2015401205204125e-18,0.0019480519695207477,-3.2517127488046498e-18,-0.00043290044413879514,-0.0019480519695207477,1.7468543640032328e-19,1.1927068138553236e-19,3.376090365743902e-19,1.4203487278875067e-19,0.00043290044413879514,2.1640670266381874e-32,0.0035714285913854837,-1.4441623891832652e-17,-1.4581890562664494e-17,-0.02142857201397419,8.082667659554847e-19,5.796968586735936e-19,1.1303152168886512e-18,1.2015401205204125e-18,2.1640670266381874e-32,0.010714286006987095,14.0,10.0,4.0,0.054128248244524,-0.006655032280832529,-0.008912337943911552,-0.018331168219447136,0.00022321428696159273,0.00038961038808338344,0.0008571428479626775,0.000405844155466184,0.0011688311351463199,0.0017857142956927419,-0.006655032280832529,0.0020283153280615807,0.00038961038808338344,0.0008571428479626775,-0.00011160714348079637,-5.994005914544687e-05,-0.00013186813157517463,0.0,0.0,-0.0,-0.008912337943911552,0.00038961038808338344,0.003908279351890087,0.0011688311351463199,3.3881317890172014e-21,-8.658008300699294e-05,-7.930164376674537e-21,-0.0003043831093236804,-0.0002597402490209788,-0.0,-0.018331168219447136,0.0008571428479626775,0.0011688311351463199,0.024720778688788414,6.516867735094086e-21,-7.930164376674537e-21,-0.0005714285653084517,0.0,-0.0007792207761667669,-0.0053571430034935474,0.00022321428696159273,-0.00011160714348079637,3.3881317890172014e-21,6.516867735094086e-21,8.585165232943837e-06,-4.235164736271502e-22,-1.0025950050993376e-21,0.0,0.0,-0.0,0.00038961038808338344,-5.994005914544687e-05,-8.658008300699294e-05,-7.930164376674537e-21,-4.235164736271502e-22,1.3320013749762438e-05,1.220025265417422e-21,0.0,0.0,-0.0,0.0008571428479626775,-0.00013186813157517463,-7.930164376674537e-21,-0.0005714285653084517,-1.0025950050993376e-21,1.220025265417422e-21,8.791208529146388e-05,0.0,0.0,-0.0,0.000405844155466184,0.0,-0.0003043831093236804,0.0,0.0,0.0,0.0,3.382034628884867e-05,0.0,-0.0,0.0011688311351463199,0.0,-0.0002597402490209788,-0.0007792207761667669,0.0,0.0,0.0,0.0,0.00017316016601398587,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,14.0,10.0,5.0,0.04564471170306206,-0.005438311491161585,-0.007285714149475098,-0.012730983085930347,0.00017857142665889114,0.00031168831628747284,0.0005714285653084517,0.0003246753185521811,0.0007792207761667669,0.0010204081190750003,-0.005438311491161585,0.0016402347246184945,0.00031168831628747284,0.0005714285653084517,-8.928571332944557e-05,-4.795204949914478e-05,-8.791208529146388e-05,0.0,0.0,-0.0,-0.007285714149475098,0.00031168831628747284,0.0031612555030733347,0.0007792207761667669,-3.509302035749499e-21,-6.926406786078587e-05,-6.776263578034403e-21,-0.00024350649619009346,-0.00017316016601398587,-0.0,-0.012730983085930347,0.0005714285653084517,0.0007792207761667669,0.012487940490245819,3.7080875117747e-21,-6.776263578034403e-21,-0.0002857142826542258,0.0,-0.00038961038808338344,-0.0020408162381500006,0.00017857142665889114,-8.928571332944557e-05,-3.509302035749499e-21,3.7080875117747e-21,6.868132004456129e-06,9.02162131895098e-22,-2.7969140387435323e-22,0.0,0.0,-0.0,0.00031168831628747284,-4.795204949914478e-05,-6.926406786078587e-05,-6.776263578034403e-21,9.02162131895098e-22,1.065601099980995e-05,8.470329472543003e-22,0.0,0.0,-0.0,0.0005714285653084517,-8.791208529146388e-05,-6.776263578034403e-21,-0.0002857142826542258,-2.7969140387435323e-22,8.470329472543003e-22,4.395604264573194e-05,0.0,0.0,-0.0,0.0003246753185521811,0.0,-0.00024350649619009346,0.0,0.0,0.0,0.0,2.7056277758674696e-05,0.0,-0.0,0.0007792207761667669,0.0,-0.00017316016601398587,-0.00038961038808338344,0.0,0.0,0.0,0.0,8.658008300699294e-05,-0.0,0.0010204081190750003,-0.0,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,14.0,10.0,6.0,0.03949211537837982,-0.004599953535944223,-0.006164193153381348,-0.009366882964968681,0.00014880952949170023,0.0002597402490209788,0.0004081632650922984,0.00027056277031078935,0.0005565862520597875,0.0006377550889737904,-0.004599953535944223,0.0013773280661553144,0.0002597402490209788,0.0004081632650922984,-7.440476474585012e-05,-3.996003943029791e-05,-6.27943518338725e-05,-5.148679223332455e-19,-3.5695661015624653e-19,6.413774422049884e-19,-0.006164193153381348,0.0002597402490209788,0.0026549939066171646,0.0005565862520597875,-5.253029091581785e-19,-5.77200589759741e-05,1.66715757993528e-19,-0.000202922077733092,-0.00012368583702482283,9.641008208192098e-19,-0.009366882964968681,0.0004081632650922984,0.0005565862520597875,0.007254406344145536,-2.4415001567804077e-20,4.456305010689018e-20,-0.00016326530021615326,9.204073831053572e-19,-0.00022263450955506414,-0.0009566326625645161,0.00014880952949170023,-7.440476474585012e-05,-5.253029091581785e-19,-2.4415001567804077e-20,5.723443337046774e-06,1.5332692535703946e-20,6.350907354558532e-21,3.697046266184251e-20,2.2103055989525373e-20,-2.4169028426668924e-20,0.0002597402490209788,-3.996003943029791e-05,-5.77200589759741e-05,4.456305010689018e-20,1.5332692535703946e-20,8.880008863343392e-06,8.470329472543003e-21,1.9025423891770997e-20,1.0907509710886096e-20,-2.719969863761531e-20,0.0004081632650922984,-6.27943518338725e-05,1.66715757993528e-19,-0.00016326530021615326,6.350907354558532e-21,8.470329472543003e-21,2.5117738914559595e-05,-2.64602896428724e-20,-3.9553284849131754e-21,-9.585571209773648e-20,0.00027056277031078935,-5.148679223332455e-19,-0.000202922077733092,9.204073831053572e-19,3.697046266184251e-20,1.9025423891770997e-20,-2.64602896428724e-20,2.2546897525899112e-05,-2.090199135568551e-20,-1.1130338112299816e-19,0.0005565862520597875,-3.5695661015624653e-19,-0.00012368583702482283,-0.00022263450955506414,2.2103055989525373e-20,1.0907509710886096e-20,-3.9553284849131754e-21,-2.090199135568551e-20,4.9474336265120655e-05,8.577104272456821e-20,0.0006377550889737904,6.413774422049884e-19,9.641008208192098e-19,-0.0009566326625645161,-2.4169028426668924e-20,-2.719969863761531e-20,-9.585571209773648e-20,-1.1130338112299816e-19,8.577104272456821e-20,0.00019132652960252017,14.0,10.0,7.0,0.034816015511751175,-0.003986549098044634,-0.005343228112906218,-0.0071846009232103825,0.00012755101488437504,0.00022263450955506414,0.0003061224415432662,0.00023191094805952162,0.00041743970359675586,0.00042517005931586027,-0.003986549098044634,0.0011872948380187154,0.00022263450955506414,0.0003061224415432662,-6.377550744218752e-05,-3.4251461329404265e-05,-4.7095760237425566e-05,-4.916862890640234e-19,-3.4218163930179506e-19,1.808478156415697e-19,-0.005343228112906218,0.00022263450955506414,0.00228896108455956,0.00041743970359675586,-4.366772790643868e-19,-4.9474336265120655e-05,7.496595719900307e-20,-0.0001739332074066624,-9.276437776861712e-05,6.73265875204367e-19,-0.0071846009232103825,0.0003061224415432662,0.00041743970359675586,0.004605751484632492,-9.728474415410426e-20,-4.7822471300124424e-20,-0.0001020408162730746,4.394239322883692e-19,-0.00013914656301494688,-0.0005102040595375001,0.00012755101488437504,-6.377550744218752e-05,-4.366772790643868e-19,-9.728474415410426e-20,4.905808509647613e-06,9.295430824454711e-21,1.6285698911263975e-21,3.168896938065398e-20,2.0053176415822527e-20,-2.3601680269479147e-21,0.00022263450955506414,-3.4251461329404265e-05,-4.9474336265120655e-05,-4.7822471300124424e-20,9.295430824454711e-21,7.611436103616143e-06,5.5872059877736305e-21,2.48697344160323e-20,1.2932010026302622e-20,-7.4645125828019e-21,0.0003061224415432662,-4.7095760237425566e-05,7.496595719900307e-20,-0.0001020408162730746,1.6285698911263975e-21,5.5872059877736305e-21,1.5698587958468124e-05,-1.4953231507630914e-20,1.6007976958592935e-22,-4.6604632025073354e-20,0.00023191094805952162,-4.916862890640234e-19,-0.0001739332074066624,4.394239322883692e-19,3.168896938065398e-20,2.48697344160323e-20,-1.4953231507630914e-20,1.932591294462327e-05,1.429608720000386e-21,-4.791856319167409e-20,0.00041743970359675586,-3.4218163930179506e-19,-9.276437776861712e-05,-0.00013914656301494688,2.0053176415822527e-20,1.2932010026302622e-20,1.6007976958592935e-22,1.429608720000386e-21,3.092145925620571e-05,-6.449315917278844e-20,0.00042517005931586027,1.808478156415697e-19,6.73265875204367e-19,-0.0005102040595375001,-2.3601680269479147e-21,-7.4645125828019e-21,-4.6604632025073354e-20,-4.791856319167409e-20,-6.449315917278844e-20,8.50340147735551e-05,14.0,10.0,8.0,0.03113771602511406,-0.003517992328852415,-0.0047159092500805855,-0.005687229335308075,0.00011160714348079637,0.00019480519404169172,0.0002380952355451882,0.000202922077733092,0.0003246753185521811,0.00029761905898340046,-0.003517992328852415,0.0010434617288410664,0.00019480519404169172,0.0002380952355451882,-5.5803571740398183e-05,-2.9970029572723433e-05,-3.6630037357099354e-05,0.0,1.7745822336178346e-20,5.693451198224958e-20,-0.0047159092500805855,0.00019480519404169172,0.002011859556660056,0.0003246753185521811,-7.259361001562707e-37,-4.329004150349647e-05,1.6303621629082205e-20,-0.0001521915546618402,-7.215006917249411e-05,-2.534092035799931e-35,-0.005687229335308075,0.0002380952355451882,0.0003246753185521811,0.0031130178831517696,1.6882081794578895e-21,-1.4422002022251617e-21,-6.80272132740356e-05,0.0,-9.276437776861712e-05,-0.00029761905898340046,0.00011160714348079637,-5.5803571740398183e-05,-7.259361001562707e-37,1.6882081794578895e-21,4.292582616471918e-06,-5.506245370136364e-39,-2.597243372430252e-22,-0.0,2.1763620259289764e-37,7.900452582706014e-37,0.00019480519404169172,-2.9970029572723433e-05,-4.329004150349647e-05,-1.4422002022251617e-21,-5.506245370136364e-39,6.660006874881219e-06,2.2187696195573224e-22,0.0,-1.0749072412871407e-37,-3.4486605409521195e-37,0.0002380952355451882,-3.6630037357099354e-05,1.6303621629082205e-20,-6.80272132740356e-05,-2.597243372430252e-22,2.2187696195573224e-22,1.0465724699315615e-05,0.0,-5.070235068592894e-21,-1.6267004346692528e-20,0.000202922077733092,0.0,-0.0001521915546618402,0.0,-0.0,0.0,0.0,1.6910173144424334e-05,0.0,-0.0,0.0003246753185521811,1.7745822336178346e-20,-7.215006917249411e-05,-9.276437776861712e-05,2.1763620259289764e-37,-1.0749072412871407e-37,-5.070235068592894e-21,0.0,2.0614306777133606e-05,7.880728219413034e-36,0.00029761905898340046,5.693451198224958e-20,-2.534092035799931e-35,-0.00029761905898340046,7.900452582706014e-37,-3.4486605409521195e-37,-1.6267004346692528e-20,-0.0,7.880728219413034e-36,4.251700738677755e-05,14.0,10.0,9.0,0.028166666626930237,-0.0031482684426009655,-0.004220779053866863,-0.004614718724042177,9.920635056914762e-05,0.00017316016601398587,0.00019047618843615055,0.0001803751802071929,0.0002597402490209788,0.00021645022206939757,-0.0031482684426009655,0.0009307775762863457,0.00017316016601398587,0.00019047618843615055,-4.960317528457381e-05,-2.6640027499524876e-05,-2.930402843048796e-05,0.0,0.0,-0.0,-0.004220779053866863,0.00017316016601398587,0.0017947329906746745,0.0002597402490209788,2.40886546712975e-37,-3.848003689199686e-05,1.5288908508788322e-20,-0.00013528138515539467,-5.77200589759741e-05,-0.0,-0.004614718724042177,0.00019047618843615055,0.0002597402490209788,0.002205009339377284,-7.502685675601516e-22,1.5288908508788322e-20,-4.761904710903764e-05,0.0,-6.49350622552447e-05,-0.00018552875553723425,9.920635056914762e-05,-4.960317528457381e-05,2.40886546712975e-37,-7.502685675601516e-22,3.815629042946966e-06,-3.705946786273556e-38,1.154259383253212e-22,0.0,0.0,-0.0,0.00017316016601398587,-2.6640027499524876e-05,-3.848003689199686e-05,1.5288908508788322e-20,-3.705946786273556e-38,5.920006060478045e-06,-2.3521397705828188e-21,0.0,0.0,-0.0,0.00019047618843615055,-2.930402843048796e-05,1.5288908508788322e-20,-4.761904710903764e-05,1.154259383253212e-22,-2.3521397705828188e-21,7.32600710762199e-06,0.0,0.0,-0.0,0.0001803751802071929,0.0,-0.00013528138515539467,0.0,0.0,0.0,0.0,1.5031265320430975e-05,0.0,-0.0,0.0002597402490209788,0.0,-5.77200589759741e-05,-6.49350622552447e-05,0.0,0.0,0.0,0.0,1.4430014743993524e-05,-0.0,0.00021645022206939757,-0.0,-0.0,-0.00018552875553723425,-0.0,-0.0,-0.0,-0.0,-0.0,2.319109444215428e-05,14.0,10.0,10.0,0.02571576088666916,-0.002849025884643197,-0.003819952718913555,-0.003819952718913555,8.928571332944557e-05,0.00015584415814373642,0.00015584415814373642,0.00016233765927609056,0.00021251475845929235,0.00016233765927609056,-0.002849025884643197,0.0008400973747484386,0.00015584415814373642,0.00015584415814373642,-4.4642856664722785e-05,-2.397602474957239e-05,-2.397602474957239e-05,0.0,0.0,-0.0,-0.003819952718913555,0.00015584415814373642,0.0016199823003262281,0.00021251475845929235,1.2227068986823192e-38,-3.4632033930392936e-05,-1.762106346652489e-21,-0.00012175324809504673,-4.722550147562288e-05,-0.0,-0.003819952718913555,0.00015584415814373642,0.00021251475845929235,0.0016199823003262281,2.4030800911951183e-22,-1.762106346652489e-21,-3.4632033930392936e-05,0.0,-4.722550147562288e-05,-0.00012175324809504673,8.928571332944557e-05,-4.4642856664722785e-05,1.2227068986823192e-38,2.4030800911951183e-22,3.4340660022280645e-06,-1.881087644226527e-39,-3.697046488327482e-23,0.0,0.0,-0.0,0.00015584415814373642,-2.397602474957239e-05,-3.4632033930392936e-05,-1.762106346652489e-21,-1.881087644226527e-39,5.328005499904975e-06,2.710932996348746e-22,0.0,0.0,-0.0,0.00015584415814373642,-2.397602474957239e-05,-1.762106346652489e-21,-3.4632033930392936e-05,-3.697046488327482e-23,2.710932996348746e-22,5.328005499904975e-06,0.0,0.0,-0.0,0.00016233765927609056,0.0,-0.00012175324809504673,0.0,0.0,0.0,0.0,1.3528138879337348e-05,0.0,-0.0,0.00021251475845929235,0.0,-4.722550147562288e-05,-4.722550147562288e-05,0.0,0.0,0.0,0.0,1.0494555681361817e-05,-0.0,0.00016233765927609056,-0.0,-0.0,-0.00012175324809504673,-0.0,-0.0,-0.0,-0.0,-0.0,1.3528138879337348e-05,14.0,10.0,11.0,0.023658841848373413,-0.002601830055937171,-0.003488783957436681,-0.0032145127188414335,8.116882963804528e-05,0.00014167650078888983,0.0001298701245104894,0.00014757968892809004,0.0001770956296240911,0.00012487512140069157,-0.002601830055937171,0.0007655412773601711,0.00014167650078888983,0.0001298701245104894,-4.058441481902264e-05,-2.17963861359749e-05,-1.9980019715148956e-05,0.0,0.0,-0.0,-0.003488783957436681,0.00014167650078888983,0.0014762888895347714,0.0001770956296240911,2.0643103611637718e-38,-3.1483668863074854e-05,-1.4874923797302747e-21,-0.00011068477033404633,-3.9354585169348866e-05,-0.0,-0.0032145127188414335,0.0001298701245104894,0.0001770956296240911,0.0012256531044840813,3.6046202630104223e-22,-1.4874923797302747e-21,-2.5974026357289404e-05,0.0,-3.5419125197222456e-05,-8.325008093379438e-05,8.116882963804528e-05,-4.058441481902264e-05,2.0643103611637718e-38,3.6046202630104223e-22,3.1218780804920243e-06,-3.1758622018903e-39,-5.545569732491223e-23,0.0,0.0,-0.0,0.00014167650078888983,-2.17963861359749e-05,-3.1483668863074854e-05,-1.4874923797302747e-21,-3.1758622018903e-39,4.8436413635499775e-06,2.2884498926421117e-22,0.0,0.0,-0.0,0.0001298701245104894,-1.9980019715148956e-05,-1.4874923797302747e-21,-2.5974026357289404e-05,-5.545569732491223e-23,2.2884498926421117e-22,3.9960041249287315e-06,0.0,0.0,-0.0,0.00014757968892809004,0.0,-0.00011068477033404633,0.0,0.0,0.0,0.0,1.229830741067417e-05,0.0,-0.0,0.0001770956296240911,0.0,-3.9354585169348866e-05,-3.5419125197222456e-05,0.0,0.0,0.0,0.0,7.870917215768714e-06,-0.0,0.00012487512140069157,-0.0,-0.0,-8.325008093379438e-05,-0.0,-0.0,-0.0,-0.0,-0.0,8.325007911480498e-06,14.0,10.0,12.0,0.02190764620900154,-0.0023941684048622847,-0.0032105394639074802,-0.002742614597082138,7.440476474585012e-05,0.0001298701245104894,0.00010989011207129806,0.00013528138515539467,0.00014985015150159597,9.811617201194167e-05,-0.0023941684048622847,0.0007031550048850477,0.0001298701245104894,0.00010989011207129806,-3.720238237292506e-05,-1.9980019715148956e-05,-1.6906171367736533e-05,-2.565960272061065e-19,-9.336792763139204e-20,8.216219588366713e-20,-0.0032105394639074802,0.0001298701245104894,0.001356039778329432,0.00014985015150159597,-2.723115799652132e-19,-2.886002948798705e-05,4.573977915173222e-20,-0.000101461038866546,-3.330003164592199e-05,1.5924219408380846e-19,-0.002742614597082138,0.00010989011207129806,0.00014985015150159597,0.0009499915759079158,-3.1644666750268376e-20,-3.1431015449230662e-21,-1.9980019715148956e-05,2.3047314647379905e-19,-2.7245481760473922e-05,-5.886970029678196e-05,7.440476474585012e-05,-3.720238237292506e-05,-2.723115799652132e-19,-3.1644666750268376e-20,2.861721668523387e-06,7.887032239167439e-21,2.434905693606963e-21,1.8485231330921254e-20,6.6646689162446865e-21,-1.5412358954811717e-21,0.0001298701245104894,-1.9980019715148956e-05,-2.886002948798705e-05,-3.1431015449230662e-21,7.887032239167439e-21,4.440004431671696e-06,2.657603272852517e-21,9.512711945885498e-21,3.3081370018244664e-21,-2.502615960130362e-21,0.00010989011207129806,-1.6906171367736533e-05,4.573977915173222e-20,-1.9980019715148956e-05,2.434905693606963e-21,2.657603272852517e-21,3.073849256907124e-06,-6.166052682492104e-21,-2.964615315390051e-21,-9.952637130238029e-21,0.00013528138515539467,-2.565960272061065e-19,-0.000101461038866546,2.3047314647379905e-19,1.8485231330921254e-20,9.512711945885498e-21,-6.166052682492104e-21,1.1273448762949556e-05,-5.115872173951093e-21,-1.303869047592782e-20,0.00014985015150159597,-9.336792763139204e-20,-3.330003164592199e-05,-2.7245481760473922e-05,6.6646689162446865e-21,3.3081370018244664e-21,-2.964615315390051e-21,-5.115872173951093e-21,6.054551704437472e-06,-5.293955920339377e-21,9.811617201194167e-05,8.216219588366713e-20,1.5924219408380846e-19,-5.886970029678196e-05,-1.5412358954811717e-21,-2.502615960130362e-21,-9.952637130238029e-21,-1.303869047592782e-20,-5.293955920339377e-21,5.351791060093092e-06,14.0,10.0,13.0,0.02039852924644947,-0.002217247150838375,-0.0029734550043940544,-0.0023676324635744095,6.868132186355069e-05,0.00011988011829089373,9.419152047485113e-05,0.00012487512140069157,0.000128442989080213,7.849293615436181e-05,-0.002217247150838375,0.000650180852971971,0.00011988011829089373,9.419152047485113e-05,-3.4340660931775346e-05,-1.8443095541442744e-05,-1.4491003639705013e-05,0.0,-2.5041747997661766e-21,9.317362419797304e-21,-0.0029734550043940544,0.00011988011829089373,0.0012539246818050742,0.000128442989080213,3.152117152218911e-23,-2.6640027499524876e-05,-3.3881317890172014e-21,-9.365634468849748e-05,-2.8542885047500022e-05,-5.929230630780102e-21,-0.0023676324635744095,9.419152047485113e-05,0.000128442989080213,0.0007513914606533945,-3.0407404684745257e-22,-9.947889929393477e-22,-1.5698587958468124e-05,-0.0,-2.1407164240372367e-05,-4.2814328480744734e-05,6.868132186355069e-05,-3.4340660931775346e-05,3.152117152218911e-23,-3.0407404684745257e-22,2.6415891625219956e-06,4.0838125223726003e-39,6.44459222322709e-23,0.0,-5.253528455554701e-24,-7.059371879277179e-24,0.00011988011829089373,-1.8443095541442744e-05,-2.6640027499524876e-05,-9.947889929393477e-22,4.0838125223726003e-39,4.098465524293715e-06,1.530444555976787e-22,0.0,2.350988701644575e-38,-9.4039548065783e-38,9.419152047485113e-05,-1.4491003639705013e-05,-3.3881317890172014e-21,-1.5698587958468124e-05,6.44459222322709e-23,1.530444555976787e-22,2.415167273284169e-06,0.0,4.235164736271502e-22,-1.4823076576950256e-21,0.00012487512140069157,0.0,-9.365634468849748e-05,-0.0,0.0,0.0,0.0,1.0406260116724297e-05,0.0,0.0,0.000128442989080213,-2.5041747997661766e-21,-2.8542885047500022e-05,-2.1407164240372367e-05,-5.253528455554701e-24,2.350988701644575e-38,4.235164736271502e-22,0.0,4.75714750791667e-06,1.2705494208814505e-21,7.849293615436181e-05,9.317362419797304e-21,-5.929230630780102e-21,-4.2814328480744734e-05,-7.059371879277179e-24,-9.4039548065783e-38,-1.4823076576950256e-21,0.0,1.2705494208814505e-21,3.5678606309375027e-06,14.0,10.0,14.0,0.019084416329860687,-0.0020647032652050257,-0.0027690166607499123,-0.0020647032652050257,6.377550744218752e-05,0.00011131725477753207,8.163265010807663e-05,0.00011595547402976081,0.00011131725477753207,6.377550744218752e-05,-0.0020647032652050257,0.0006046364433132112,0.00011131725477753207,8.163265010807663e-05,-3.188775372109376e-05,-1.7125730664702132e-05,-1.2558869457279798e-05,-2.9378260372767557e-19,-1.0708625926383797e-19,-1.8634724839594607e-20,-0.0027690166607499123,0.00011131725477753207,0.00116612552665174,0.00011131725477753207,-2.253804022374632e-19,-2.4737168132560328e-05,-6.183340514956392e-20,-8.69666037033312e-05,-2.4737168132560328e-05,6.522153693858113e-20,-0.0020647032652050257,8.163265010807663e-05,0.00011131725477753207,0.0006046364433132112,-2.8821434696139537e-20,-2.0055019800742298e-20,-1.2558869457279798e-05,6.117792267525247e-20,-1.7125730664702132e-05,-3.188775372109376e-05,6.377550744218752e-05,-3.188775372109376e-05,-2.253804022374632e-19,-2.8821434696139537e-20,2.4529042548238067e-06,4.647715412227356e-21,-9.57342409479005e-22,1.584448469032699e-20,5.711003986979205e-21,4.525042467512146e-22,0.00011131725477753207,-1.7125730664702132e-05,-2.4737168132560328e-05,-2.0055019800742298e-20,4.647715412227356e-21,3.8057180518080713e-06,1.5544201972098902e-21,1.243486720801615e-20,3.584585972808195e-21,-4.7533451243703485e-22,8.163265010807663e-05,-1.2558869457279798e-05,-6.183340514956392e-20,-1.2558869457279798e-05,-9.57342409479005e-22,1.5544201972098902e-21,1.932133727677865e-06,3.924556800670706e-21,1.641126335305207e-21,1.6940658945086007e-21,0.00011595547402976081,-2.9378260372767557e-19,-8.69666037033312e-05,6.117792267525247e-20,1.584448469032699e-20,1.243486720801615e-20,3.924556800670706e-21,9.662956472311635e-06,3.519036806511867e-22,-5.6322190726013635e-21,0.00011131725477753207,-1.0708625926383797e-19,-2.4737168132560328e-05,-1.7125730664702132e-05,5.711003986979205e-21,3.584585972808195e-21,1.641126335305207e-21,3.519036806511867e-22,3.8057180518080713e-06,-1.6940658945086007e-21,6.377550744218752e-05,-1.8634724839594607e-20,6.522153693858113e-20,-3.188775372109376e-05,4.525042467512146e-22,-4.7533451243703485e-22,1.6940658945086007e-21,-5.6322190726013635e-21,-1.6940658945086007e-21,2.4529042548238067e-06,14.0,10.0,15.0,0.017929717898368835,-0.001931818202137947,-0.0025909091345965862,-0.0018164629582315683,5.952380888629705e-05,0.00010389610542915761,7.142857066355646e-05,0.00010822511103469878,9.740259702084586e-05,5.25210089108441e-05,-0.001931818202137947,0.0005650599487125874,0.00010389610542915761,7.142857066355646e-05,-2.9761904443148524e-05,-1.5984016499714926e-05,-1.0989010661432985e-05,0.0,-2.9807100468533793e-22,-4.658681209898652e-21,-0.0025909091345965862,0.00010389610542915761,0.0010898268083110452,9.740259702084586e-05,-1.1935108552211514e-21,-2.308802322659176e-05,-2.541098841762901e-21,-8.116882963804528e-05,-2.1645020751748234e-05,-1.6940658945086007e-21,-0.0018164629582315683,7.142857066355646e-05,9.740259702084586e-05,0.0004938191850669682,1.2912164911256354e-22,-1.266640709759389e-21,-1.0204081263509579e-05,-0.0,-1.3914656847191509e-05,-2.424046579108108e-05,5.952380888629705e-05,-2.9761904443148524e-05,-1.1935108552211514e-21,1.2912164911256354e-22,2.2893773348187096e-06,1.9717580850354087e-22,1.0108758357936236e-22,0.0,-1.2590264223538041e-23,-4.8466402326428546e-23,0.00010389610542915761,-1.5984016499714926e-05,-2.308802322659176e-05,-1.266640709759389e-21,1.9717580850354087e-22,3.5520035908120917e-06,1.9486780344325592e-22,0.0,1.1754943508222875e-38,9.4039548065783e-38,7.142857066355646e-05,-1.0989010661432985e-05,-2.541098841762901e-21,-1.0204081263509579e-05,1.0108758357936236e-22,1.9486780344325592e-22,1.5698586821599747e-06,0.0,1.0587911840678754e-22,7.411538288475128e-22,0.00010822511103469878,0.0,-8.116882963804528e-05,-0.0,0.0,0.0,0.0,9.018758646561764e-06,0.0,0.0,9.740259702084586e-05,-2.9807100468533793e-22,-2.1645020751748234e-05,-1.3914656847191509e-05,-1.2590264223538041e-23,1.1754943508222875e-38,1.0587911840678754e-22,0.0,3.092146016570041e-06,2.117582368135751e-22,5.25210089108441e-05,-4.658681209898652e-21,-1.6940658945086007e-21,-2.424046579108108e-05,-4.8466402326428546e-23,9.4039548065783e-38,7.411538288475128e-22,0.0,2.117582368135751e-22,1.7314617934971466e-06,14.0,10.0,16.0,0.01690703071653843,-0.0018150185933336616,-0.002434348687529564,-0.0016104851383715868,5.5803571740398183e-05,9.740259702084586e-05,6.302521069301292e-05,0.000101461038866546,8.594346581958234e-05,4.376750803203322e-05,-0.0018150185933336616,0.0005303497309796512,9.740259702084586e-05,6.302521069301292e-05,-2.7901785870199092e-05,-1.4985014786361717e-05,-9.69618577073561e-06,0.0,-4.974482046444562e-21,-5.929230630780102e-21,-0.002434348687529564,9.740259702084586e-05,0.0010229062754660845,8.594346581958234e-05,-1.5638734519141774e-22,-2.1645020751748234e-05,-5.293955920339377e-21,-7.60957773309201e-05,-1.9098548364127055e-05,-1.1858461261560205e-20,-0.0016104851383715868,6.302521069301292e-05,8.594346581958234e-05,0.00040855887345969677,7.761964060308488e-23,-4.07209469160558e-22,-8.403361789532937e-06,-0.0,-1.1459129382274114e-05,-1.8757502402877435e-05,5.5803571740398183e-05,-2.7901785870199092e-05,-1.5638734519141774e-22,7.761964060308488e-23,2.146291308235959e-06,-3.197414172271616e-39,-6.598331747323803e-23,-0.0,2.0851646341066727e-23,1.597019241449902e-23,9.740259702084586e-05,-1.4985014786361717e-05,-2.1645020751748234e-05,-4.07209469160558e-22,-3.197414172271616e-39,3.3300034374406096e-06,6.264760966918011e-23,0.0,3.0856726709085047e-38,4.1142302278780063e-38,6.302521069301292e-05,-9.69618577073561e-06,-5.293955920339377e-21,-8.403361789532937e-06,-6.598331747323803e-23,6.264760966918011e-23,1.2928247770105372e-06,0.0,6.352747104407253e-22,7.940933880509066e-22,0.000101461038866546,0.0,-7.60957773309201e-05,-0.0,-0.0,0.0,0.0,8.455086572212167e-06,0.0,0.0,8.594346581958234e-05,-4.974482046444562e-21,-1.9098548364127055e-05,-1.1459129382274114e-05,2.0851646341066727e-23,3.0856726709085047e-38,6.352747104407253e-22,0.0,2.5464730697422056e-06,1.4823076576950256e-21,4.376750803203322e-05,-5.929230630780102e-21,-1.1858461261560205e-20,-1.8757502402877435e-05,1.597019241449902e-23,4.1142302278780063e-38,7.940933880509066e-22,0.0,1.4823076576950256e-21,1.250500190508319e-06,14.0,11.0,3.0,0.061438560485839844,-0.007846320047974586,-0.009681984782218933,-0.026298701763153076,0.00027056277031078935,0.00043290044413879514,0.0012987012742087245,0.0004162504046689719,0.001623376621864736,0.003246753243729472,-0.007846320047974586,0.002424658741801977,0.00043290044413879514,0.0012987012742087245,-0.00013528138515539467,-6.660006329184398e-05,-0.00019980019715148956,0.0,0.0,-0.0,-0.009681984782218933,0.00043290044413879514,0.0038788989186286926,0.001623376621864736,-6.776263578034403e-21,-8.658008300699294e-05,-3.11610827470031e-20,-0.0002775002794805914,-0.0003246753185521811,-0.0,-0.026298701763153076,0.0012987012742087245,0.001623376621864736,0.058766234666109085,-9.479288679259528e-21,-3.11610827470031e-20,-0.0012987012742087245,0.0,-0.001623376621864736,-0.019480518996715546,0.00027056277031078935,-0.00013528138515539467,-6.776263578034403e-21,-9.479288679259528e-21,1.0406260116724297e-05,8.470329472543003e-22,1.4583521355704491e-21,0.0,0.0,-0.0,0.00043290044413879514,-6.660006329184398e-05,-8.658008300699294e-05,-3.11610827470031e-20,8.470329472543003e-22,1.3320013749762438e-05,4.794012481756302e-21,0.0,0.0,-0.0,0.0012987012742087245,-0.00019980019715148956,-3.11610827470031e-20,-0.0012987012742087245,1.4583521355704491e-21,4.794012481756302e-21,0.00019980019715148956,0.0,0.0,-0.0,0.0004162504046689719,0.0,-0.0002775002794805914,0.0,0.0,0.0,0.0,2.775002758426126e-05,0.0,-0.0,0.001623376621864736,0.0,-0.0003246753185521811,-0.001623376621864736,0.0,0.0,0.0,0.0,0.0003246753185521811,-0.0,0.003246753243729472,-0.0,-0.0,-0.019480518996715546,-0.0,-0.0,-0.0,-0.0,-0.0,0.009740259498357773,14.0,11.0,4.0,0.04986139014363289,-0.006079545244574547,-0.007504994980990887,-0.016753247007727623,0.000202922077733092,0.0003246753185521811,0.0007792207761667669,0.00031218782532960176,0.0009740259847603738,0.001623376621864736,-0.006079545244574547,0.001848464016802609,0.0003246753185521811,0.0007792207761667669,-0.000101461038866546,-4.995004928787239e-05,-0.00011988011829089373,-3.1991985672312614e-19,-4.1247270772077227e-19,-2.489015828083806e-18,-0.007504994980990887,0.0003246753185521811,0.0029578753747045994,0.0009740259847603738,-3.59736169658972e-19,-6.49350622552447e-05,-1.8432450099256982e-20,-0.00020812520233448595,-0.00019480519404169172,-5.752411986052884e-19,-0.016753247007727623,0.0007792207761667669,0.0009740259847603738,0.022532466799020767,-8.68738373322845e-19,-1.9914415656376406e-21,-0.0005194804980419576,-2.7612386178044535e-33,-0.0006493506371043622,-0.004870129749178886,0.000202922077733092,-0.000101461038866546,-3.59736169658972e-19,-8.68738373322845e-19,7.804695087543223e-06,8.893845946170154e-21,1.8474839874476057e-20,2.488396612309476e-20,3.3273417688127965e-20,1.9409493220584744e-19,0.0003246753185521811,-4.995004928787239e-05,-6.49350622552447e-05,-1.9914415656376406e-21,8.893845946170154e-21,9.990009857574478e-06,3.115816297715537e-21,-7.143375562926939e-22,-3.652273015266544e-21,2.0755699160694323e-34,0.0007792207761667669,-0.00011988011829089373,-1.8432450099256982e-20,-0.0005194804980419576,1.8474839874476057e-20,3.115816297715537e-21,7.992007886059582e-05,6.3127335497863e-35,-1.2135705909207376e-21,-2.2812255120451623e-20,0.00031218782532960176,-3.1991985672312614e-19,-0.00020812520233448595,-2.7612386178044535e-33,2.488396612309476e-20,-7.143375562926939e-22,6.3127335497863e-35,2.0812520233448595e-05,9.887863586483603e-35,6.1883923057913365e-34,0.0009740259847603738,-4.1247270772077227e-19,-0.00019480519404169172,-0.0006493506371043622,3.3273417688127965e-20,-3.652273015266544e-21,-1.2135705909207376e-21,9.887863586483603e-35,0.0001298701245104894,3.8349414101999034e-19,0.001623376621864736,-2.489015828083806e-18,-5.752411986052884e-19,-0.004870129749178886,1.9409493220584744e-19,2.0755699160694323e-34,-2.2812255120451623e-20,6.1883923057913365e-34,3.8349414101999034e-19,0.001623376621864736,14.0,11.0,5.0,0.04203011095523834,-0.0049675325863063335,-0.0061338660307228565,-0.011632652953267097,0.00016233765927609056,0.0002597402490209788,0.0005194804980419576,0.00024975024280138314,0.0006493506371043622,0.0009276437922380865,-0.0049675325863063335,0.001494755269959569,0.0002597402490209788,0.0005194804980419576,-8.116882963804528e-05,-3.996003943029791e-05,-7.992007886059582e-05,0.0,0.0,-0.0,-0.0061338660307228565,0.0002597402490209788,0.0023922743275761604,0.0006493506371043622,6.062568470062921e-22,-5.194805271457881e-05,-6.776263578034403e-21,-0.00016650016186758876,-0.0001298701245104894,-0.0,-0.011632652953267097,0.0005194804980419576,0.0006493506371043622,0.011382189579308033,1.2125136940125842e-21,-6.776263578034403e-21,-0.0002597402490209788,0.0,-0.0003246753185521811,-0.001855287584476173,0.00016233765927609056,-8.116882963804528e-05,6.062568470062921e-22,1.2125136940125842e-21,6.243756160984049e-06,-2.5599200279759667e-22,-5.119840055951933e-22,0.0,0.0,-0.0,0.0002597402490209788,-3.996003943029791e-05,-5.194805271457881e-05,-6.776263578034403e-21,-2.5599200279759667e-22,7.992008249857463e-06,8.470329472543003e-22,0.0,0.0,-0.0,0.0005194804980419576,-7.992007886059582e-05,-6.776263578034403e-21,-0.0002597402490209788,-5.119840055951933e-22,8.470329472543003e-22,3.996003943029791e-05,0.0,0.0,-0.0,0.00024975024280138314,0.0,-0.00016650016186758876,0.0,0.0,0.0,0.0,1.6650015822960995e-05,0.0,-0.0,0.0006493506371043622,0.0,-0.0001298701245104894,-0.0003246753185521811,0.0,0.0,0.0,0.0,6.49350622552447e-05,-0.0,0.0009276437922380865,-0.0,-0.0,-0.001855287584476173,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046382189611904323,14.0,11.0,6.0,0.03635471686720848,-0.0042014531791210175,-0.005188858602195978,-0.008557514287531376,0.00013528138515539467,0.00021645022206939757,0.0003710575110744685,0.00020812520233448595,0.00046382189611904323,0.0005797773483209312,-0.0042014531791210175,0.001255143666639924,0.00021645022206939757,0.0003710575110744685,-6.764069257769734e-05,-3.330003164592199e-05,-5.7085770095000044e-05,0.0,0.0,-0.0,-0.005188858602195978,0.00021645022206939757,0.0020090227480977774,0.00046382189611904323,-4.665677308033582e-22,-4.329004150349647e-05,-3.3881317890172014e-21,-0.0001387501397402957,-9.276437776861712e-05,-0.0,-0.008557514287531376,0.0003710575110744685,0.00046382189611904323,0.006611781194806099,6.016244134327642e-21,-3.3881317890172014e-21,-0.00014842300151940435,0.0,-0.00018552875553723425,-0.0008696660515852273,0.00013528138515539467,-6.764069257769734e-05,-4.665677308033582e-22,6.016244134327642e-21,5.203130058362149e-06,-7.305931775153636e-23,-6.076918922779722e-22,0.0,0.0,-0.0,0.00021645022206939757,-3.330003164592199e-05,-4.329004150349647e-05,-3.3881317890172014e-21,-7.305931775153636e-23,6.660006874881219e-06,6.352747104407253e-22,0.0,0.0,-0.0,0.0003710575110744685,-5.7085770095000044e-05,-3.3881317890172014e-21,-0.00014842300151940435,-6.076918922779722e-22,6.352747104407253e-22,2.283430876559578e-05,0.0,0.0,-0.0,0.00020812520233448595,0.0,-0.0001387501397402957,0.0,0.0,0.0,0.0,1.387501379213063e-05,0.0,-0.0,0.00046382189611904323,0.0,-9.276437776861712e-05,-0.00018552875553723425,0.0,0.0,0.0,0.0,3.710575037985109e-05,-0.0,0.0005797773483209312,-0.0,-0.0,-0.0008696660515852273,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001739332074066624,14.0,11.0,7.0,0.03204355016350746,-0.003641001880168915,-0.0044972882606089115,-0.006563080009073019,0.00011595547402976081,0.00018552875553723425,0.00027829312602989376,0.0001783930347301066,0.0003478664148133248,0.00038651825161650777,-0.003641001880168915,0.0010819537565112114,0.00018552875553723425,0.00027829312602989376,-5.7977737014880404e-05,-2.8542885047500022e-05,-4.2814328480744734e-05,0.0,0.0,-0.0,-0.0044972882606089115,0.00018552875553723425,0.0017319584731012583,0.0003478664148133248,-1.564488637202505e-21,-3.710575037985109e-05,1.5246593050577406e-20,-0.00011892869224539027,-6.957328150747344e-05,-0.0,-0.006563080009073019,0.00027829312602989376,0.0003478664148133248,0.004197588190436363,-9.072483031151796e-22,1.4399560103323106e-20,-9.276437776861712e-05,0.0,-0.00011595547402976081,-0.00046382189611904323,0.00011595547402976081,-5.7977737014880404e-05,-1.564488637202505e-21,-9.072483031151796e-22,4.459825959202135e-06,2.6269141350151698e-22,1.135262098042552e-22,0.0,0.0,-0.0,0.00018552875553723425,-2.8542885047500022e-05,-3.710575037985109e-05,1.4399560103323106e-20,2.6269141350151698e-22,5.708577191398945e-06,-2.329340604949326e-21,0.0,0.0,-0.0,0.00027829312602989376,-4.2814328480744734e-05,1.5246593050577406e-20,-9.276437776861712e-05,1.135262098042552e-22,-2.329340604949326e-21,1.4271442523750011e-05,0.0,0.0,-0.0,0.0001783930347301066,0.0,-0.00011892869224539027,0.0,0.0,0.0,0.0,1.1892869224539027e-05,0.0,-0.0,0.0003478664148133248,0.0,-6.957328150747344e-05,-0.00011595547402976081,0.0,0.0,0.0,0.0,2.319109444215428e-05,-0.0,0.00038651825161650777,-0.0,-0.0,-0.00046382189611904323,-0.0,-0.0,-0.0,-0.0,-0.0,7.730365177849308e-05,14.0,11.0,8.0,0.028653638437390327,-0.003212932962924242,-0.003968947567045689,-0.005194805096834898,0.000101461038866546,0.00016233765927609056,0.00021645022206939757,0.00015609391266480088,0.00027056277031078935,0.00027056277031078935,-0.003212932962924242,0.0009508720249868929,0.00016233765927609056,0.00021645022206939757,-5.0730519433273e-05,-2.4975024643936194e-05,-3.330003164592199e-05,-1.168277326933277e-19,7.862054454283892e-20,3.6593852498825944e-19,-0.003968947567045689,0.00016233765927609056,0.0015222277725115418,0.00027056277031078935,-1.5181263876761617e-19,-3.246753112762235e-05,1.887524957467942e-19,-0.00010406260116724297,-5.411255551734939e-05,7.7144290813252015e-19,-0.005194805096834898,0.00021645022206939757,0.00027056277031078935,0.0028370439540594816,8.948261505779072e-20,2.45521267876152e-19,-6.184291851241142e-05,5.653400017693935e-19,-7.730365177849308e-05,-0.00027056277031078935,0.000101461038866546,-5.0730519433273e-05,-1.5181263876761617e-19,8.948261505779072e-20,3.9023475437716115e-06,4.4364555840445864e-21,1.0305160868182494e-21,1.244198306154738e-20,-4.126167888105987e-22,-1.0686774464163046e-20,0.00016233765927609056,-2.4975024643936194e-05,-3.246753112762235e-05,2.45521267876152e-19,4.4364555840445864e-21,4.995004928787239e-06,-4.294990735633113e-21,-3.5716877814634694e-22,-7.131268655868135e-21,-2.4030802022667338e-20,0.00021645022206939757,-3.330003164592199e-05,1.887524957467942e-19,-6.184291851241142e-05,1.0305160868182494e-21,-4.294990735633113e-21,9.51429501583334e-06,-1.2323487823212025e-20,-1.0742908846923713e-20,-3.0530415691068234e-20,0.00015609391266480088,-1.168277326933277e-19,-0.00010406260116724297,5.653400017693935e-19,1.244198306154738e-20,-3.5716877814634694e-22,-1.2323487823212025e-20,1.0406260116724297e-05,-1.5404359980963423e-20,-5.391526074116555e-20,0.00027056277031078935,7.862054454283892e-20,-5.411255551734939e-05,-7.730365177849308e-05,-4.126167888105987e-22,-7.131268655868135e-21,-1.0742908846923713e-20,-1.5404359980963423e-20,1.5460729628102854e-05,-2.174003032936543e-20,0.00027056277031078935,3.6593852498825944e-19,7.7144290813252015e-19,-0.00027056277031078935,-1.0686774464163046e-20,-2.4030802022667338e-20,-3.0530415691068234e-20,-5.391526074116555e-20,-2.174003032936543e-20,3.865182588924654e-05,14.0,11.0,9.0,0.025916356593370438,-0.002875180449336767,-0.0035520035307854414,-0.004214875865727663,9.018759010359645e-05,0.00014430013834498823,0.00017316016601398587,0.0001387501397402957,0.00021645022206939757,0.00019677291857078671,-0.002875180449336767,0.0008481796248815954,0.00014430013834498823,0.00017316016601398587,-4.5093795051798224e-05,-2.2200021703611128e-05,-2.6640027499524876e-05,0.0,0.0,-0.0,-0.0035520035307854414,0.00014430013834498823,0.0013579013757407665,0.00021645022206939757,0.0,-2.886002948798705e-05,-3.32143065860731e-21,-9.250009316019714e-05,-4.329004150349647e-05,-0.0,-0.004214875865727663,0.00017316016601398587,0.00021645022206939757,0.0020094732753932476,0.0,-3.32143065860731e-21,-4.329004150349647e-05,0.0,-5.411255551734939e-05,-0.00016866250371094793,9.018759010359645e-05,-4.5093795051798224e-05,0.0,0.0,3.4687534480326576e-06,0.0,0.0,0.0,0.0,-0.0,0.00014430013834498823,-2.2200021703611128e-05,-2.886002948798705e-05,-3.32143065860731e-21,0.0,4.440004431671696e-06,5.109893592787928e-22,0.0,0.0,-0.0,0.00017316016601398587,-2.6640027499524876e-05,-3.32143065860731e-21,-4.329004150349647e-05,0.0,5.109893592787928e-22,6.660006874881219e-06,0.0,0.0,-0.0,0.0001387501397402957,0.0,-9.250009316019714e-05,0.0,0.0,0.0,0.0,9.250009497918654e-06,0.0,-0.0,0.00021645022206939757,0.0,-4.329004150349647e-05,-5.411255551734939e-05,0.0,0.0,0.0,0.0,1.0822510375874117e-05,-0.0,0.00019677291857078671,-0.0,-0.0,-0.00016866250371094793,-0.0,-0.0,-0.0,-0.0,-0.0,2.108281296386849e-05,14.0,11.0,10.0,0.023658841848373413,-0.002601830055937171,-0.0032145127188414335,-0.003488783957436681,8.116882963804528e-05,0.0001298701245104894,0.00014167650078888983,0.00012487512140069157,0.0001770956296240911,0.00014757968892809004,-0.002601830055937171,0.0007655412773601711,0.0001298701245104894,0.00014167650078888983,-4.058441481902264e-05,-1.9980019715148956e-05,-2.17963861359749e-05,0.0,0.0,-0.0,-0.0032145127188414335,0.0001298701245104894,0.0012256531044840813,0.0001770956296240911,1.667327691024869e-38,-2.5974026357289404e-05,-2.4028724377613152e-21,-8.325008093379438e-05,-3.5419125197222456e-05,-0.0,-0.003488783957436681,0.00014167650078888983,0.0001770956296240911,0.0014762888895347714,2.1846183794662392e-22,-2.4028724377613152e-21,-3.1483668863074854e-05,0.0,-3.9354585169348866e-05,-0.00011068477033404633,8.116882963804528e-05,-4.058441481902264e-05,1.667327691024869e-38,2.1846183794662392e-22,3.1218780804920243e-06,-2.5651188779005074e-39,-3.3609513530249834e-23,0.0,0.0,-0.0,0.0001298701245104894,-1.9980019715148956e-05,-2.5974026357289404e-05,-2.4028724377613152e-21,-2.5651188779005074e-39,3.9960041249287315e-06,3.696726652562069e-22,0.0,0.0,-0.0,0.00014167650078888983,-2.17963861359749e-05,-2.4028724377613152e-21,-3.1483668863074854e-05,-3.3609513530249834e-23,3.696726652562069e-22,4.8436413635499775e-06,0.0,0.0,-0.0,0.00012487512140069157,0.0,-8.325008093379438e-05,0.0,0.0,0.0,0.0,8.325007911480498e-06,0.0,-0.0,0.0001770956296240911,0.0,-3.5419125197222456e-05,-3.9354585169348866e-05,0.0,0.0,0.0,0.0,7.870917215768714e-06,-0.0,0.00014757968892809004,-0.0,-0.0,-0.00011068477033404633,-0.0,-0.0,-0.0,-0.0,-0.0,1.229830741067417e-05,14.0,11.0,11.0,0.021764598786830902,-0.002376032993197441,-0.002935700584203005,-0.002935700584203005,7.378984446404502e-05,0.0001180637555080466,0.0001180637555080466,0.00011352283763699234,0.00014757968892809004,0.00011352283763699234,-0.002376032993197441,0.000697597861289978,0.0001180637555080466,0.0001180637555080466,-3.689492223202251e-05,-1.8163655113312416e-05,-1.8163655113312416e-05,0.0,0.0,-0.0,-0.002935700584203005,0.0001180637555080466,0.0011169133940711617,0.00014757968892809004,-1.3107709771926456e-21,-2.361275073781144e-05,5.929165603397963e-21,-7.568189175799489e-05,-2.951593887701165e-05,-0.0,-0.002935700584203005,0.0001180637555080466,0.00014757968892809004,0.0011169133940711617,-2.1049482748003187e-21,5.929165603397963e-21,-2.361275073781144e-05,0.0,-2.951593887701165e-05,-7.568189175799489e-05,7.378984446404502e-05,-3.689492223202251e-05,-1.3107709771926456e-21,-2.1049482748003187e-21,2.8380709409248084e-06,2.0165706855972452e-22,3.238381805886343e-22,0.0,0.0,-0.0,0.0001180637555080466,-1.8163655113312416e-05,-2.361275073781144e-05,5.929165603397963e-21,2.0165706855972452e-22,3.6327307952888077e-06,-9.121792769962116e-22,0.0,0.0,-0.0,0.0001180637555080466,-1.8163655113312416e-05,5.929165603397963e-21,-2.361275073781144e-05,3.238381805886343e-22,-9.121792769962116e-22,3.6327307952888077e-06,0.0,0.0,-0.0,0.00011352283763699234,0.0,-7.568189175799489e-05,0.0,0.0,0.0,0.0,7.568189175799489e-06,0.0,-0.0,0.00014757968892809004,0.0,-2.951593887701165e-05,-2.951593887701165e-05,0.0,0.0,0.0,0.0,5.90318768445286e-06,-0.0,0.00011352283763699234,-0.0,-0.0,-7.568189175799489e-05,-0.0,-0.0,-0.0,-0.0,-0.0,7.568189175799489e-06,14.0,11.0,12.0,0.020152168348431587,-0.0021863554138690233,-0.0027014652732759714,-0.0025046381633728743,6.764069257769734e-05,0.00010822511103469878,9.990009857574478e-05,0.00010406260116724297,0.00012487512140069157,8.91965173650533e-05,-0.0021863554138690233,0.0006407454493455589,0.00010822511103469878,9.990009857574478e-05,-3.382034628884867e-05,-1.6650015822960995e-05,-1.536924537504092e-05,0.0,-3.888546979043373e-21,-5.082197683525802e-21,-0.0027014652732759714,0.00010822511103469878,0.0010259185219183564,0.00012487512140069157,-1.1975558562640861e-22,-2.1645020751748234e-05,-5.929230630780102e-21,-6.937506987014785e-05,-2.4975024643936194e-05,-1.6940658945086007e-20,-0.0025046381633728743,9.990009857574478e-05,0.00012487512140069157,0.000865692738443613,-2.321839029989879e-22,-1.760345962521721e-21,-1.8163655113312416e-05,-0.0,-2.2704567527398467e-05,-5.3517909691436216e-05,6.764069257769734e-05,-3.382034628884867e-05,-1.1975558562640861e-22,-2.321839029989879e-22,2.6015650291810744e-06,-2.6376234617431378e-39,-2.721560656681628e-23,0.0,2.1773742697735947e-23,2.5337977195149143e-23,0.00010822511103469878,-1.6650015822960995e-05,-2.1645020751748234e-05,-1.760345962521721e-21,-2.6376234617431378e-39,3.3300034374406096e-06,2.7082246159800686e-22,0.0,7.640713280344869e-38,7.052966104933725e-38,9.990009857574478e-05,-1.536924537504092e-05,-5.929230630780102e-21,-1.8163655113312416e-05,-2.721560656681628e-23,2.7082246159800686e-22,2.7944083740294445e-06,0.0,7.940933880509066e-22,8.470329472543003e-22,0.00010406260116724297,0.0,-6.937506987014785e-05,-0.0,0.0,0.0,0.0,6.937506896065315e-06,0.0,0.0,0.00012487512140069157,-3.888546979043373e-21,-2.4975024643936194e-05,-2.2704567527398467e-05,2.1773742697735947e-23,7.640713280344869e-38,7.940933880509066e-22,0.0,4.540913778328104e-06,2.752857078576476e-21,8.91965173650533e-05,-5.082197683525802e-21,-1.6940658945086007e-20,-5.3517909691436216e-05,2.5337977195149143e-23,7.052966104933725e-38,8.470329472543003e-22,0.0,2.752857078576476e-21,4.865264600084629e-06,14.0,11.0,13.0,0.018762830644845963,-0.0020247609354555607,-0.002501893788576126,-0.002162123564630747,6.243756070034578e-05,9.990009857574478e-05,8.562865696148947e-05,9.605778905097395e-05,0.00010703581938287243,7.135721534723416e-05,-0.0020247609354555607,0.000592470692936331,9.990009857574478e-05,8.562865696148947e-05,-3.121878035017289e-05,-1.536924537504092e-05,-1.3173639672459103e-05,0.0,3.3638820280858647e-21,7.623296525288703e-21,-0.002501893788576126,9.990009857574478e-05,0.0009486484341323376,0.00010703581938287243,5.661295627287145e-23,-1.9980019715148956e-05,2.117582368135751e-21,-6.403852603398263e-05,-2.1407164240372367e-05,1.1011428314305904e-20,-0.002162123564630747,8.562865696148947e-05,0.00010703581938287243,0.0006847049226053059,4.782337340359031e-22,-1.3565303623020412e-21,-1.4271442523750011e-05,-0.0,-1.783930383680854e-05,-3.892211680067703e-05,6.243756070034578e-05,-3.121878035017289e-05,5.661295627287145e-23,4.782337340359031e-22,2.401444817223819e-06,-4.462612924547349e-39,-4.694913250487542e-23,-0.0,-9.435493501006147e-24,-9.746084605470669e-24,9.990009857574478e-05,-1.536924537504092e-05,-1.9980019715148956e-05,-1.3565303623020412e-21,-4.462612924547349e-39,3.073849256907124e-06,2.0869698949566167e-22,0.0,-5.289724578700294e-38,-1.1754943508222875e-37,8.562865696148947e-05,-1.3173639672459103e-05,2.117582368135751e-21,-1.4271442523750011e-05,-4.694913250487542e-23,2.0869698949566167e-22,2.195606612076517e-06,0.0,-5.293955920339377e-22,-1.376428539288238e-21,9.605778905097395e-05,0.0,-6.403852603398263e-05,-0.0,-0.0,0.0,0.0,6.403852694347734e-06,0.0,0.0,0.00010703581938287243,3.3638820280858647e-21,-2.1407164240372367e-05,-1.783930383680854e-05,-9.435493501006147e-24,-5.289724578700294e-38,-5.293955920339377e-22,0.0,3.5678606309375027e-06,-1.6940658945086007e-21,7.135721534723416e-05,7.623296525288703e-21,1.1011428314305904e-20,-3.892211680067703e-05,-9.746084605470669e-24,-1.1754943508222875e-37,-1.376428539288238e-21,0.0,-1.6940658945086007e-21,3.2435098091809778e-06,14.0,11.0,14.0,0.017553161829710007,-0.0018854360096156597,-0.0023298130836337805,-0.0018854360096156597,5.7977737014880404e-05,9.276437776861712e-05,7.421150075970218e-05,8.91965173650533e-05,9.276437776861712e-05,5.7977737014880404e-05,-0.0018854360096156597,0.0005509668844752014,9.276437776861712e-05,7.421150075970218e-05,-2.8988868507440202e-05,-1.4271442523750011e-05,-1.141715438279789e-05,0.0,-4.0738313972874165e-21,-3.3881317890172014e-21,-0.0023298130836337805,9.276437776861712e-05,0.0008822130039334297,9.276437776861712e-05,-1.1872556047613068e-21,-1.8552875189925544e-05,0.0,-5.946434612269513e-05,-1.8552875189925544e-05,-1.1858461261560205e-20,-0.0018854360096156597,7.421150075970218e-05,9.276437776861712e-05,0.0005509668844752014,-6.134976561049092e-22,3.853002446510601e-21,-1.141715438279789e-05,-0.0,-1.4271442523750011e-05,-2.8988868507440202e-05,5.7977737014880404e-05,-2.8988868507440202e-05,-1.1872556047613068e-21,-6.134976561049092e-22,2.2299129796010675e-06,1.5844484589352794e-22,1.8874230798054563e-23,0.0,2.4209858769028783e-23,2.6440904137122176e-23,9.276437776861712e-05,-1.4271442523750011e-05,-1.8552875189925544e-05,3.853002446510601e-21,1.5844484589352794e-22,2.8542885956994724e-06,-5.9276957220287085e-22,-0.0,-2.1158898314801175e-37,-1.88079096131566e-37,7.421150075970218e-05,-1.141715438279789e-05,0.0,-1.141715438279789e-05,1.8874230798054563e-23,-5.9276957220287085e-22,1.7564852896612138e-06,0.0,6.352747104407253e-22,5.293955920339377e-22,8.91965173650533e-05,0.0,-5.946434612269513e-05,-0.0,0.0,-0.0,0.0,5.946434612269513e-06,0.0,0.0,9.276437776861712e-05,-4.0738313972874165e-21,-1.8552875189925544e-05,-1.4271442523750011e-05,2.4209858769028783e-23,-2.1158898314801175e-37,6.352747104407253e-22,0.0,2.8542885956994724e-06,1.9058241313221758e-21,5.7977737014880404e-05,-3.3881317890172014e-21,-1.1858461261560205e-20,-2.8988868507440202e-05,2.6440904137122176e-23,-1.88079096131566e-37,5.293955920339377e-22,0.0,1.9058241313221758e-21,2.2299129796010675e-06,14.0,11.0,15.0,0.016490347683429718,-0.0017640693113207817,-0.002179903443902731,-0.0016587089048698545,5.411255551734939e-05,8.658008300699294e-05,6.49350622552447e-05,8.325008093379438e-05,8.116882963804528e-05,4.774637272930704e-05,-0.0017640693113207817,0.0005149017670191824,8.658008300699294e-05,6.49350622552447e-05,-2.7056277758674696e-05,-1.3320013749762438e-05,-9.990009857574478e-06,0.0,4.367406601632366e-21,3.3881317890172014e-21,-0.002179903443902731,8.658008300699294e-05,0.0008244810742326081,8.116882963804528e-05,1.9781652764164862e-22,-1.7316016965196468e-05,2.752857078576476e-21,-5.550005516852252e-05,-1.6233765563811176e-05,1.1011428314305904e-20,-0.0016587089048698545,6.49350622552447e-05,8.116882963804528e-05,0.0004499806964304298,5.032761424048059e-22,-1.1687440054327732e-21,-9.276437594962772e-06,-0.0,-1.159554722107714e-05,-2.2036787413526326e-05,5.411255551734939e-05,-2.7056277758674696e-05,1.9781652764164862e-22,5.032761424048059e-22,2.0812519778701244e-06,1.0695445561420774e-38,8.489081138022214e-23,0.0,-2.8259503047251625e-23,-6.070593899150532e-23,8.658008300699294e-05,-1.3320013749762438e-05,-1.7316016965196468e-05,-1.1687440054327732e-21,1.0695445561420774e-38,2.6640027499524876e-06,1.798067700665805e-22,0.0,-6.465218929522581e-38,-5.877471754111438e-38,6.49350622552447e-05,-9.990009857574478e-06,2.752857078576476e-21,-9.276437594962772e-06,8.489081138022214e-23,1.798067700665805e-22,1.4271442978497362e-06,0.0,-5.823351512373315e-22,-4.235164736271502e-22,8.325008093379438e-05,0.0,-5.550005516852252e-05,-0.0,0.0,0.0,0.0,5.550005425902782e-06,0.0,0.0,8.116882963804528e-05,4.367406601632366e-21,-1.6233765563811176e-05,-1.159554722107714e-05,-2.8259503047251625e-23,-6.465218929522581e-38,-5.823351512373315e-22,0.0,2.319109398740693e-06,-1.4823076576950256e-21,4.774637272930704e-05,3.3881317890172014e-21,1.1011428314305904e-20,-2.2036787413526326e-05,-6.070593899150532e-23,-5.877471754111438e-38,-4.235164736271502e-22,0.0,-1.4823076576950256e-21,1.5740562275823322e-06,14.0,11.0,16.0,0.015549126081168652,-0.0016573958564549685,-0.0020481357350945473,-0.00147058826405555,5.0730519433273e-05,8.116882963804528e-05,5.7295645092381164e-05,7.804695633240044e-05,7.161955727497116e-05,3.97886433347594e-05,-0.0016573958564549685,0.00048327131662517786,8.116882963804528e-05,5.7295645092381164e-05,-2.53652597166365e-05,-1.2487512321968097e-05,-8.81471441971371e-06,-5.714526855504014e-20,2.1152496218731233e-20,4.1928130889087867e-20,-0.0020481357350945473,8.116882963804528e-05,0.0007738462300039828,7.161955727497116e-05,-7.707867341869154e-20,-1.6233765563811176e-05,5.1880768019325896e-20,-5.203130058362149e-05,-1.4323911273095291e-05,1.0037340424963459e-19,-0.00147058826405555,5.7295645092381164e-05,7.161955727497116e-05,0.00037228528526611626,2.1955279849975348e-20,6.496782513507463e-20,-7.639418981852941e-06,1.4837116675378636e-19,-9.549274182063527e-06,-1.7052276234608144e-05,5.0730519433273e-05,-2.53652597166365e-05,-7.707867341869154e-20,2.1955279849975348e-20,1.9511737718858058e-06,2.2182277920222932e-21,2.141845710096432e-22,6.22099153077369e-21,6.003706067452481e-23,-1.2578677686997644e-21,8.116882963804528e-05,-1.2487512321968097e-05,-1.6233765563811176e-05,6.496782513507463e-20,2.2182277920222932e-21,2.4975024643936194e-06,-1.185055175084945e-21,-1.7858438907317347e-22,-1.6871985384734024e-21,-3.0290925901101392e-21,5.7295645092381164e-05,-8.81471441971371e-06,5.1880768019325896e-20,-7.639418981852941e-06,2.141845710096432e-22,-1.185055175084945e-21,1.1752953241739306e-06,-3.044626460402517e-21,-1.826414792517085e-21,-1.4293680984916318e-21,7.804695633240044e-05,-5.714526855504014e-20,-5.203130058362149e-05,1.4837116675378636e-19,6.22099153077369e-21,-1.7858438907317347e-22,-3.044626460402517e-21,5.203130058362149e-06,-3.805782873554754e-21,-6.79604078793395e-21,7.161955727497116e-05,2.1152496218731233e-20,-1.4323911273095291e-05,-9.549274182063527e-06,6.003706067452481e-23,-1.6871985384734024e-21,-1.826414792517085e-21,-3.805782873554754e-21,1.9098547454632353e-06,-1.641126335305207e-21,3.97886433347594e-05,4.1928130889087867e-20,1.0037340424963459e-19,-1.7052276234608144e-05,-1.2578677686997644e-21,-3.0290925901101392e-21,-1.4293680984916318e-21,-6.79604078793395e-21,-1.641126335305207e-21,1.1368183550075628e-06,14.0,12.0,3.0,0.05698041990399361,-0.007222985383123159,-0.008267922326922417,-0.02422161214053631,0.00024801588733680546,0.00036630037357099354,0.0011904762359336019,0.0003270538873039186,0.0013736264081671834,0.0029761905316263437,-0.007222985383123159,0.0022272998467087746,0.00036630037357099354,0.0011904762359336019,-0.00012400794366840273,-5.6353903346462175e-05,-0.00018315018678549677,-8.832574804117275e-21,-0.0,1.1663072425810123e-34,-0.008267922326922417,0.00036630037357099354,0.0030077064875513315,0.0013736264081671834,-1.2231885850255839e-21,-6.660006329184398e-05,-2.153456965119977e-20,-0.00019623234402388334,-0.00024975024280138314,3.8602190674425465e-18,-0.02422161214053631,0.0011904762359336019,0.0013736264081671834,0.05398351699113846,6.4976022624192e-21,-1.990133222786936e-20,-0.0011904762359336019,6.328833829886227e-19,-0.0013736264081671834,-0.01785714365541935,0.00024801588733680546,-0.00012400794366840273,-1.2231885850255839e-21,6.4976022624192e-21,9.53907237999374e-06,4.530544551445009e-22,-9.996311095280157e-22,-1.247267093720728e-22,-0.0,4.503244672138443e-36,0.00036630037357099354,-5.6353903346462175e-05,-6.660006329184398e-05,-1.990133222786936e-20,4.530544551445009e-22,1.0246164492855314e-05,3.0617434041377176e-21,1.5411289638077472e-21,0.0,-3.145987067939893e-35,0.0011904762359336019,-0.00018315018678549677,-2.153456965119977e-20,-0.0011904762359336019,-9.996311095280157e-22,3.0617434041377176e-21,0.00018315018678549677,1.3784353509440224e-22,0.0,-6.577583246395952e-36,0.0003270538873039186,-8.832574804117275e-21,-0.00019623234402388334,6.328833829886227e-19,-1.247267093720728e-22,1.5411289638077472e-21,1.3784353509440224e-22,1.783930383680854e-05,1.328921905351965e-35,-3.1688968734419126e-19,0.0013736264081671834,-0.0,-0.00024975024280138314,-0.0013736264081671834,-0.0,0.0,0.0,1.328921905351965e-35,0.00024975024280138314,-3.7443232571068363e-19,0.0029761905316263437,1.1663072425810123e-34,3.8602190674425465e-18,-0.01785714365541935,4.503244672138443e-36,-3.145987067939893e-35,-6.577583246395952e-36,-3.1688968734419126e-19,-3.7443232571068363e-19,0.008928571827709675,14.0,12.0,4.0,0.04621974751353264,-0.005595810245722532,-0.006406985688954592,-0.01542582456022501,0.00018601190822664648,0.00027472528745420277,0.0007142857066355646,0.0002452904300298542,0.0008241758332587779,0.0014880952658131719,-0.005595810245722532,0.0016979475039988756,0.00027472528745420277,0.0007142857066355646,-9.300595411332324e-05,-4.226542660035193e-05,-0.00010989011207129806,-3.231725788843097e-21,-4.051952954761529e-20,-3.660075945694076e-19,-0.006406985688954592,0.00027472528745420277,0.002293242374435067,0.0008241758332587779,5.490109655410565e-23,-4.995004928787239e-05,-5.992627562383756e-20,-0.0001471742580179125,-0.00014985015150159597,8.78185603098813e-19,-0.01542582456022501,0.0007142857066355646,0.0008241758332587779,0.020700549706816673,1.0308024294428927e-20,-1.5841793122161925e-20,-0.0004761904710903764,3.548898993957828e-19,-0.0005494505749084055,-0.004464285913854837,0.00018601190822664648,-9.300595411332324e-05,5.490109655410565e-23,1.0308024294428927e-20,7.15430405762163e-06,8.426823604293447e-24,-1.3580303339816646e-21,-1.8692919954231652e-22,-2.692412561778074e-22,-7.087731579948035e-36,0.00027472528745420277,-4.226542660035193e-05,-4.995004928787239e-05,-1.5841793122161925e-20,8.426823604293447e-24,7.68462268752046e-06,2.524478287174589e-21,1.0485165547672976e-21,-1.031483091448531e-22,-7.079599116284356e-36,0.0007142857066355646,-0.00010989011207129806,-5.992627562383756e-20,-0.0004761904710903764,-1.3580303339816646e-21,2.524478287174589e-21,7.326007471419871e-05,-1.1266507661834146e-22,2.990138684048714e-20,2.4400507166273646e-19,0.0002452904300298542,-3.231725788843097e-21,-0.0001471742580179125,3.548898993957828e-19,-1.8692919954231652e-22,1.0485165547672976e-21,-1.1266507661834146e-22,1.3379477422859054e-05,-3.89516361615023e-21,-1.1091138798552753e-19,0.0008241758332587779,-4.051952954761529e-20,-0.00014985015150159597,-0.0005494505749084055,-2.692412561778074e-22,-1.031483091448531e-22,2.990138684048714e-20,-3.89516361615023e-21,9.990009857574478e-05,2.2789311844445787e-19,0.0014880952658131719,-3.660075945694076e-19,8.78185603098813e-19,-0.004464285913854837,-7.087731579948035e-36,-7.079599116284356e-36,2.4400507166273646e-19,-1.1091138798552753e-19,2.2789311844445787e-19,0.0014880952658131719,14.0,12.0,5.0,0.038947541266679764,-0.004571886267513037,-0.00523547874763608,-0.01070905290544033,0.00014880952949170023,0.00021978022414259613,0.0004761904710903764,0.00019623234402388334,0.0005494505749084055,0.0008503401186317205,-0.004571886267513037,0.0013730099890381098,0.00021978022414259613,0.0004761904710903764,-7.440476474585012e-05,-3.3812342735473067e-05,-7.326007471419871e-05,6.606856988583543e-20,-5.404070203482436e-19,-2.488801795100308e-18,-0.00523547874763608,0.00021978022414259613,0.0018545739585533738,0.0005494505749084055,-5.246766558862934e-20,-3.996003943029791e-05,-6.268292480853471e-19,-0.00011773940059356391,-9.990009857574478e-05,-2.9358052350402886e-18,-0.01070905290544033,0.0004761904710903764,0.0005494505749084055,0.010456567630171776,-9.056894618637778e-19,-3.722243997100206e-19,-0.0002380952355451882,-1.3417001884508117e-18,-0.00027472528745420277,-0.001700680237263441,0.00014880952949170023,-7.440476474585012e-05,-5.246766558862934e-20,-9.056894618637778e-19,5.723443337046774e-06,4.784032596133464e-21,2.5858339648242478e-20,-2.9973220691221406e-21,2.4500847405750596e-20,1.3434802552796317e-19,0.00021978022414259613,-3.3812342735473067e-05,-3.996003943029791e-05,-3.722243997100206e-19,4.784032596133464e-21,6.147698513814248e-06,1.0251246100195404e-20,-2.0328790734103208e-20,9.317362419797304e-21,4.6802169863934407e-20,0.0004761904710903764,-7.326007471419871e-05,-6.268292480853471e-19,-0.0002380952355451882,2.5858339648242478e-20,1.0251246100195404e-20,3.6630037357099354e-05,3.5524990390800235e-20,7.046719972831418e-20,2.191942286289088e-19,0.00019623234402388334,6.606856988583543e-20,-0.00011773940059356391,-1.3417001884508117e-18,-2.9973220691221406e-21,-2.0328790734103208e-20,3.5524990390800235e-20,1.0703582120186184e-05,4.828087799349512e-20,1.8334331615206561e-19,0.0005494505749084055,-5.404070203482436e-19,-9.990009857574478e-05,-0.00027472528745420277,2.4500847405750596e-20,9.317362419797304e-21,7.046719972831418e-20,4.828087799349512e-20,4.995004928787239e-05,2.75718349167407e-19,0.0008503401186317205,-2.488801795100308e-18,-2.9358052350402886e-18,-0.001700680237263441,1.3434802552796317e-19,4.6802169863934407e-20,2.191942286289088e-19,1.8334331615206561e-19,2.75718349167407e-19,0.00042517005931586027,14.0,12.0,6.0,0.03368055447936058,-0.0038665947504341602,-0.004428309854120016,-0.007877092808485031,0.00012400794366840273,0.00018315018678549677,0.0003401360590942204,0.0001635269436519593,0.0003924646880477667,0.0005314626032486558,-0.0038665947504341602,0.0011528964387252927,0.00018315018678549677,0.0003401360590942204,-6.200397183420137e-05,-2.8176951673231088e-05,-5.232862531556748e-05,1.6940658945086007e-21,1.8634724839594607e-20,1.0893083325574001e-19,-0.004428309854120016,0.00018315018678549677,0.001557371229864657,0.0003924646880477667,-1.4084247376040023e-21,-3.330003164592199e-05,1.2679580191186867e-20,-9.811617201194167e-05,-7.135721534723416e-05,3.948891743433677e-19,-0.007877092808485031,0.0003401360590942204,0.0003924646880477667,0.006073881406337023,-6.114912887355867e-21,-1.1675583260352094e-20,-0.0001360544265480712,2.371692252312041e-19,-0.00015698587230872363,-0.0007971939048729837,0.00012400794366840273,-6.200397183420137e-05,-1.4084247376040023e-21,-6.114912887355867e-21,4.76953618999687e-06,4.731064663181031e-22,9.224077610892776e-22,-2.2881987193298893e-22,3.0239906795372766e-23,-1.7236903815453105e-36,0.00018315018678549677,-2.8176951673231088e-05,-3.330003164592199e-05,-1.1675583260352094e-20,4.731064663181031e-22,5.123082246427657e-06,1.477984245550533e-21,0.0,4.235164736271502e-22,-1.1228628360656714e-36,0.0003401360590942204,-5.232862531556748e-05,1.2679580191186867e-20,-0.0001360544265480712,9.224077610892776e-22,1.477984245550533e-21,2.093144939863123e-05,-1.2996201947945187e-22,-8.50784098241129e-21,-4.3572333302296005e-20,0.0001635269436519593,1.6940658945086007e-21,-9.811617201194167e-05,2.371692252312041e-19,-2.2881987193298893e-22,0.0,-1.2996201947945187e-22,8.91965191840427e-06,-1.4399560103323106e-20,-3.1123093831136746e-20,0.0003924646880477667,1.8634724839594607e-20,-7.135721534723416e-05,-0.00015698587230872363,3.0239906795372766e-23,4.235164736271502e-22,-8.50784098241129e-21,-1.4399560103323106e-20,2.8542885047500022e-05,-2.1014058172815107e-20,0.0005314626032486558,1.0893083325574001e-19,3.948891743433677e-19,-0.0007971939048729837,-1.7236903815453105e-36,-1.1228628360656714e-36,-4.3572333302296005e-20,-3.1123093831136746e-20,-2.1014058172815107e-20,0.0001594387722434476,14.0,12.0,7.0,0.029681386426091194,-0.0033506671898066998,-0.0038377437740564346,-0.006040685344487429,0.00010629251482896507,0.00015698587230872363,0.00025510202976875007,0.00014016595378052443,0.000294348516035825,0.00035430840216577053,-0.0033506671898066998,0.000993803609162569,0.00015698587230872363,0.00025510202976875007,-5.3146257414482534e-05,-2.4151671823346987e-05,-3.924646807718091e-05,-6.776263578034403e-21,0.0,1.1693362068330432e-35,-0.0038377437740564346,0.00015698587230872363,0.0013425350189208984,0.000294348516035825,-2.571660903574748e-21,-2.8542885047500022e-05,8.744238538603861e-21,-8.409957081312314e-05,-5.3517909691436216e-05,2.505555149335439e-19,-0.006040685344487429,0.00025510202976875007,0.000294348516035825,0.0038559655658900738,1.1145655938202714e-21,9.548058568994368e-21,-8.50340147735551e-05,1.6601845766184287e-19,-9.811617201194167e-05,-0.00042517005931586027,0.00010629251482896507,-5.3146257414482534e-05,-2.571660903574748e-21,1.1145655938202714e-21,4.088173682248453e-06,3.6637975788942266e-23,-1.0012324845438398e-22,2.2272625591718043e-22,-2.224697404389079e-23,8.702178369931189e-38,0.00015698587230872363,-2.4151671823346987e-05,-2.8542885047500022e-05,9.548058568994368e-21,3.6637975788942266e-23,4.391213224153034e-06,-1.4827107466849318e-21,1.2705494208814505e-21,0.0,-2.31337435322113e-36,0.00025510202976875007,-3.924646807718091e-05,8.744238538603861e-21,-8.50340147735551e-05,-1.0012324845438398e-22,-1.4827107466849318e-21,1.308215632889187e-05,1.0156617286878546e-23,1.383734129644392e-23,-6.225665275488097e-38,0.00014016595378052443,-6.776263578034403e-21,-8.409957081312314e-05,1.6601845766184287e-19,2.2272625591718043e-22,1.2705494208814505e-21,1.0156617286878546e-23,7.645416189916432e-06,-8.046812998915853e-21,-1.9616980814368587e-20,0.000294348516035825,0.0,-5.3517909691436216e-05,-9.811617201194167e-05,-2.224697404389079e-23,0.0,1.383734129644392e-23,-8.046812998915853e-21,1.783930383680854e-05,-1.1589571824724351e-20,0.00035430840216577053,1.1693362068330432e-35,2.505555149335439e-19,-0.00042517005931586027,8.702178369931189e-38,-2.31337435322113e-36,-6.225665275488097e-38,-1.9616980814368587e-20,-1.1589571824724351e-20,7.086167897796258e-05,14.0,12.0,8.0,0.026537835597991943,-0.002956635318696499,-0.0033866430167108774,-0.0047809830866754055,9.300595411332324e-05,0.00013736264372710139,0.00019841270113829523,0.0001226452150149271,0.00022893772984389216,0.00024801588733680546,-0.002956635318696499,0.0008733937866054475,0.00013736264372710139,0.00019841270113829523,-4.650297705666162e-05,-2.1132713300175965e-05,-3.052503234357573e-05,-6.776263578034403e-21,8.470329472543003e-22,1.6383882993473873e-35,-0.0033866430167108774,0.00013736264372710139,0.001179921324364841,0.00022893772984389216,1.6338253960729502e-21,-2.4975024643936194e-05,-5.4229944803105155e-21,-7.358712900895625e-05,-4.162504046689719e-05,1.6950987070515556e-19,-0.0047809830866754055,0.00019841270113829523,0.00022893772984389216,0.002606074558570981,-1.3579838858515652e-21,-5.6828071447313766e-21,-5.668934318237007e-05,1.4568966692773966e-19,-6.541077891597524e-05,-0.00024801588733680546,9.300595411332324e-05,-4.650297705666162e-05,1.6338253960729502e-21,-1.3579838858515652e-21,3.577152028810815e-06,9.412562103352278e-23,3.4120041588914803e-22,-2.395197035723681e-22,-6.924398882799131e-23,-6.564867505398262e-38,0.00013736264372710139,-2.1132713300175965e-05,-2.4975024643936194e-05,-5.6828071447313766e-21,9.412562103352278e-23,3.84231134376023e-06,7.660919308720836e-22,1.0587911840678754e-21,0.0,-2.8219291974219085e-36,0.00019841270113829523,-3.052503234357573e-05,-5.4229944803105155e-21,-5.668934318237007e-05,3.4120041588914803e-22,7.660919308720836e-22,8.72143755259458e-06,-3.8072913775539286e-23,1.6458236793516878e-24,1.565690812758158e-38,0.0001226452150149271,-6.776263578034403e-21,-7.358712900895625e-05,1.4568966692773966e-19,-2.395197035723681e-22,1.0587911840678754e-21,-3.8072913775539286e-23,6.689738711429527e-06,-9.317362419797304e-21,-1.3203737241939158e-20,0.00022893772984389216,8.470329472543003e-22,-4.162504046689719e-05,-6.541077891597524e-05,-6.924398882799131e-23,0.0,1.6458236793516878e-24,-9.317362419797304e-21,1.1892869224539027e-05,-6.933931957605252e-21,0.00024801588733680546,1.6383882993473873e-35,1.6950987070515556e-19,-0.00024801588733680546,-6.564867505398262e-38,-2.8219291974219085e-36,1.565690812758158e-38,-1.3203737241939158e-20,-6.933931957605252e-21,3.543083948898129e-05,14.0,12.0,9.0,0.024000134319067,-0.0026457570493221283,-0.0030306994449347258,-0.0038788989186286926,8.26719551696442e-05,0.00012210012937430292,0.00015873015217948705,0.00010901796485995874,0.00018315018678549677,0.0001803751802071929,-0.0026457570493221283,0.000779063324443996,0.00012210012937430292,0.00015873015217948705,-4.13359775848221e-05,-1.8784634448820725e-05,-2.44200236920733e-05,2.456395547037471e-20,8.470329472543003e-22,-3.537422381974832e-35,-0.0030306994449347258,0.00012210012937430292,0.0010525189572945237,0.00018315018678549677,8.56406078934166e-22,-2.2200021703611128e-05,-3.6363166689386536e-21,-6.541077891597524e-05,-3.330003164592199e-05,1.2024750414077506e-19,-0.0038788989186286926,0.00015873015217948705,0.00018315018678549677,0.0018458326812833548,2.1388140103525843e-21,-3.1838955239506386e-21,-3.968253804487176e-05,1.0842021724855044e-19,-4.578754669637419e-05,-0.00015460730355698615,8.26719551696442e-05,-4.13359775848221e-05,8.56406078934166e-22,2.1388140103525843e-21,3.179690793331247e-06,-2.1804943724259248e-23,-3.3889590706039503e-22,-6.424671276559725e-23,1.163807440105645e-23,0.0,0.00012210012937430292,-1.8784634448820725e-05,-2.2200021703611128e-05,-3.1838955239506386e-21,-2.1804943724259248e-23,3.4153879369114293e-06,5.594333453337385e-22,-4.446922973085077e-21,-1.0587911840678754e-22,6.431676732015689e-36,0.00015873015217948705,-2.44200236920733e-05,-3.6363166689386536e-21,-3.968253804487176e-05,-3.3889590706039503e-22,5.594333453337385e-22,6.105005923018325e-06,-7.052966104933725e-37,0.0,0.0,0.00010901796485995874,2.456395547037471e-20,-6.541077891597524e-05,1.0842021724855044e-19,-6.424671276559725e-23,-4.446922973085077e-21,-7.052966104933725e-37,5.946434612269513e-06,-5.929230630780102e-21,-9.328354874656309e-21,0.00018315018678549677,8.470329472543003e-22,-3.330003164592199e-05,-4.578754669637419e-05,1.163807440105645e-23,-1.0587911840678754e-22,0.0,-5.929230630780102e-21,8.325007911480498e-06,-4.408900129888914e-21,0.0001803751802071929,-3.537422381974832e-35,1.2024750414077506e-19,-0.00015460730355698615,0.0,6.431676732015689e-36,0.0,-9.328354874656309e-21,-4.408900129888914e-21,1.932591294462327e-05,14.0,12.0,10.0,0.02190764620900154,-0.0023941684048622847,-0.002742614597082138,-0.0032105394639074802,7.440476474585012e-05,0.00010989011207129806,0.0001298701245104894,9.811617201194167e-05,0.00014985015150159597,0.00013528138515539467,-0.0023941684048622847,0.0007031550048850477,0.00010989011207129806,0.0001298701245104894,-3.720238237292506e-05,-1.6906171367736533e-05,-1.9980019715148956e-05,2.710505431213761e-20,-1.401839527705867e-19,-3.3146119761734883e-19,-0.002742614597082138,0.00010989011207129806,0.0009499915759079158,0.00014985015150159597,-3.14579339581588e-20,-1.9980019715148956e-05,-1.6250286251031007e-19,-5.886970029678196e-05,-2.7245481760473922e-05,-3.909267982634797e-19,-0.0032105394639074802,0.0001298701245104894,0.00014985015150159597,0.001356039778329432,-2.7193702224409153e-19,-1.1496054048155117e-19,-2.886002948798705e-05,-3.6422416731934915e-19,-3.330003164592199e-05,-0.000101461038866546,7.440476474585012e-05,-3.720238237292506e-05,-3.14579339581588e-20,-2.7193702224409153e-19,2.861721668523387e-06,2.4851001683214815e-21,7.864900311020244e-21,-1.5686017200970038e-21,6.6227238313842156e-21,1.8485231330921254e-20,0.00010989011207129806,-1.6906171367736533e-05,-1.9980019715148956e-05,-1.1496054048155117e-19,2.4851001683214815e-21,3.073849256907124e-06,3.173448935594497e-21,-9.740878893424454e-21,1.7999450129153882e-21,7.445800044823589e-21,0.0001298701245104894,-1.9980019715148956e-05,-1.6250286251031007e-19,-2.886002948798705e-05,7.864900311020244e-21,3.173448935594497e-21,4.440004431671696e-06,8.905412742255258e-21,7.939006485058332e-21,9.512711945885498e-21,9.811617201194167e-05,2.710505431213761e-20,-5.886970029678196e-05,-3.6422416731934915e-19,-1.5686017200970038e-21,-9.740878893424454e-21,8.905412742255258e-21,5.351791060093092e-06,8.893845946170154e-21,2.5567236696109168e-20,0.00014985015150159597,-1.401839527705867e-19,-2.7245481760473922e-05,-3.330003164592199e-05,6.6227238313842156e-21,1.7999450129153882e-21,7.939006485058332e-21,8.893845946170154e-21,6.054551704437472e-06,1.1379253883840642e-20,0.00013528138515539467,-3.3146119761734883e-19,-3.909267982634797e-19,-0.000101461038866546,1.8485231330921254e-20,7.445800044823589e-21,9.512711945885498e-21,2.5567236696109168e-20,1.1379253883840642e-20,1.1273448762949556e-05,14.0,12.0,11.0,0.020152168348431587,-0.0021863554138690233,-0.0025046381633728743,-0.0027014652732759714,6.764069257769734e-05,9.990009857574478e-05,0.00010822511103469878,8.91965173650533e-05,0.00012487512140069157,0.00010406260116724297,-0.0021863554138690233,0.0006407454493455589,9.990009857574478e-05,0.00010822511103469878,-3.382034628884867e-05,-1.536924537504092e-05,-1.6650015822960995e-05,-4.235164736271502e-21,0.0,5.173438240422644e-36,-0.0025046381633728743,9.990009857574478e-05,0.000865692738443613,0.00012487512140069157,1.2629453571131972e-21,-1.8163655113312416e-05,-2.3104541894057293e-21,-5.3517909691436216e-05,-2.2704567527398467e-05,4.8723393771816847e-20,-0.0027014652732759714,0.00010822511103469878,0.00012487512140069157,0.0010259185219183564,3.276642443313776e-22,-2.4487724799255553e-21,-2.1645020751748234e-05,7.962109704190423e-20,-2.4975024643936194e-05,-6.937506987014785e-05,6.764069257769734e-05,-3.382034628884867e-05,1.2629453571131972e-21,3.276642443313776e-22,2.6015650291810744e-06,-2.609780013044897e-23,-1.957319626996021e-23,-7.689530220902371e-23,-3.6443357492737e-23,0.0,9.990009857574478e-05,-1.536924537504092e-05,-1.8163655113312416e-05,-2.4487724799255553e-21,-2.609780013044897e-23,2.7944083740294445e-06,3.5545448873599305e-22,6.352747104407253e-22,-0.0,-9.406251590813267e-37,0.00010822511103469878,-1.6650015822960995e-05,-2.3104541894057293e-21,-2.1645020751748234e-05,-1.957319626996021e-23,3.5545448873599305e-22,3.3300034374406096e-06,1.1754943508222875e-37,0.0,-0.0,8.91965173650533e-05,-4.235164736271502e-21,-5.3517909691436216e-05,7.962109704190423e-20,-7.689530220902371e-23,6.352747104407253e-22,1.1754943508222875e-37,4.865264600084629e-06,-5.082197683525802e-21,-5.170694296062255e-21,0.00012487512140069157,0.0,-2.2704567527398467e-05,-2.4975024643936194e-05,-3.6443357492737e-23,-0.0,0.0,-5.082197683525802e-21,4.540913778328104e-06,1.6308481719077737e-21,0.00010406260116724297,5.173438240422644e-36,4.8723393771816847e-20,-6.937506987014785e-05,0.0,-9.406251590813267e-37,-0.0,-5.170694296062255e-21,1.6308481719077737e-21,6.937506896065315e-06,14.0,12.0,12.0,0.018658068031072617,-0.002011790405958891,-0.002304723719134927,-0.002304723719134927,6.200397183420137e-05,9.157509339274839e-05,9.157509339274839e-05,8.176347182597965e-05,0.00010566356650087982,8.176347182597965e-05,-0.002011790405958891,0.0005885240389034152,9.157509339274839e-05,9.157509339274839e-05,-3.100198591710068e-05,-1.4088475836615544e-05,-1.4088475836615544e-05,8.470329472543003e-22,-1.670814339234069e-22,-8.470329472543003e-22,-0.002304723719134927,9.157509339274839e-05,0.0007951526786200702,0.00010566356650087982,-8.57207309178381e-22,-1.6650015822960995e-05,-2.541098841762901e-21,-4.9058086005970836e-05,-1.9211558537790552e-05,5.421010862427522e-20,-0.002304723719134927,9.157509339274839e-05,0.00010566356650087982,0.0007951526786200702,-3.3764266582837575e-22,-3.2797959684249383e-21,-1.6650015822960995e-05,6.45505448277843e-20,-1.9211558537790552e-05,-4.9058086005970836e-05,6.200397183420137e-05,-3.100198591710068e-05,-8.57207309178381e-22,-3.3764266582837575e-22,2.384768094998435e-06,1.410001904056367e-22,1.0077622333551525e-22,-3.5177445576858065e-24,-3.2025490693327358e-24,-2.5301866298351746e-23,9.157509339274839e-05,-1.4088475836615544e-05,-1.6650015822960995e-05,-3.2797959684249383e-21,1.410001904056367e-22,2.5615411232138285e-06,4.326364125108761e-22,-2.117582368135751e-22,7.924263040771211e-23,-3.7516101038754467e-23,9.157509339274839e-05,-1.4088475836615544e-05,-2.541098841762901e-21,-1.6650015822960995e-05,1.0077622333551525e-22,4.326364125108761e-22,2.5615411232138285e-06,2.6469779601696886e-23,-5.293955920339377e-23,2.117582368135751e-22,8.176347182597965e-05,8.470329472543003e-22,-4.9058086005970836e-05,6.45505448277843e-20,-3.5177445576858065e-24,-2.117582368135751e-22,2.6469779601696886e-23,4.459825959202135e-06,-3.8116482626443515e-21,-4.0763460586613204e-21,0.00010566356650087982,-1.670814339234069e-22,-1.9211558537790552e-05,-1.9211558537790552e-05,-3.2025490693327358e-24,7.924263040771211e-23,-5.293955920339377e-23,-3.8116482626443515e-21,3.4930105812236434e-06,-1.6940658945086007e-21,8.176347182597965e-05,-8.470329472543003e-22,5.421010862427522e-20,-4.9058086005970836e-05,-2.5301866298351746e-23,-3.7516101038754467e-23,2.117582368135751e-22,-4.0763460586613204e-21,-1.6940658945086007e-21,4.459825959202135e-06,14.0,12.0,13.0,0.017370838671922684,-0.001863075071014464,-0.002134404145181179,-0.001989494077861309,5.723443246097304e-05,8.453085320070386e-05,7.849293615436181e-05,7.547397399321198e-05,9.05687702470459e-05,6.541077891597524e-05,-0.001863075071014464,0.000544181908480823,8.453085320070386e-05,7.849293615436181e-05,-2.861721623048652e-05,-1.300474650633987e-05,-1.2075835911673494e-05,-5.082197683525802e-21,-8.722483244207255e-22,5.929230630780102e-21,-0.002134404145181179,8.453085320070386e-05,0.0007352537359111011,9.05687702470459e-05,9.961793571293561e-23,-1.536924537504092e-05,-1.4823076576950256e-21,-4.528438512352295e-05,-1.6467049135826528e-05,2.879912020664621e-20,-0.001989494077861309,7.849293615436181e-05,9.05687702470459e-05,0.0006289040902629495,5.521232174496579e-22,-1.8854784366998906e-21,-1.308215632889187e-05,5.2544325198132545e-20,-1.5094795344339218e-05,-3.567860767361708e-05,5.723443246097304e-05,-2.861721623048652e-05,9.961793571293561e-23,5.521232174496579e-22,2.201324377892888e-06,-7.846791535624352e-25,-5.891728839678169e-23,-2.312001035200341e-24,-1.1187301924873249e-23,-8.332698298804287e-24,8.453085320070386e-05,-1.300474650633987e-05,-1.536924537504092e-05,-1.8854784366998906e-21,-7.846791535624352e-25,2.364499323448399e-06,2.311267031682469e-22,8.470329472543003e-22,9.819433207982481e-23,1.2659200017032137e-24,7.849293615436181e-05,-1.2075835911673494e-05,-1.4823076576950256e-21,-1.308215632889187e-05,-5.891728839678169e-23,2.311267031682469e-22,2.0126394701946992e-06,-1.3234889800848443e-23,0.0,-8.470329472543003e-22,7.547397399321198e-05,-5.082197683525802e-21,-4.528438512352295e-05,5.2544325198132545e-20,-2.312001035200341e-24,8.470329472543003e-22,-1.3234889800848443e-23,4.116762283956632e-06,-2.6469779601696886e-21,-3.1763735522036263e-21,9.05687702470459e-05,-8.722483244207255e-22,-1.6467049135826528e-05,-1.5094795344339218e-05,-1.1187301924873249e-23,9.819433207982481e-23,0.0,-2.6469779601696886e-21,2.7445082650956465e-06,9.529120656610879e-22,6.541077891597524e-05,5.929230630780102e-21,2.879912020664621e-20,-3.567860767361708e-05,-8.332698298804287e-24,1.2659200017032137e-24,-8.470329472543003e-22,-3.1763735522036263e-21,9.529120656610879e-22,2.9732173061347567e-06,14.0,12.0,14.0,0.016250187531113625,-0.0017348574474453926,-0.0019875532016158104,-0.0017348574474453926,5.3146257414482534e-05,7.849293615436181e-05,6.80272132740356e-05,7.008297689026222e-05,7.849293615436181e-05,5.3146257414482534e-05,-0.0017348574474453926,0.0005060593248344958,7.849293615436181e-05,6.80272132740356e-05,-2.6573128707241267e-05,-1.2075835911673494e-05,-1.0465724699315615e-05,-3.3881317890172014e-21,-2.289387135128161e-21,-2.117582368135751e-21,-0.0019875532016158104,7.849293615436181e-05,0.000683755031786859,7.849293615436181e-05,-5.734721916820903e-22,-1.4271442523750011e-05,1.2705494208814505e-21,-4.204978540656157e-05,-1.4271442523750011e-05,2.625802136488331e-20,-0.0017348574474453926,6.80272132740356e-05,7.849293615436181e-05,0.0005060593248344958,-4.194538462761492e-23,2.9549240140190045e-21,-1.0465724699315615e-05,4.5536011608882876e-20,-1.2075835911673494e-05,-2.6573128707241267e-05,5.3146257414482534e-05,-2.6573128707241267e-05,-5.734721916820903e-22,-4.194538462761492e-23,2.0440868411242263e-06,1.1541985463002013e-22,8.212038236818388e-23,-1.9036288071535926e-23,7.506820884466684e-24,-3.812222389300284e-23,7.849293615436181e-05,-1.2075835911673494e-05,-1.4271442523750011e-05,2.9549240140190045e-21,1.1541985463002013e-22,2.195606612076517e-06,-4.449220943834647e-22,6.352747104407253e-22,-1.7572291604634184e-23,1.3301991887168353e-23,6.80272132740356e-05,-1.0465724699315615e-05,1.2705494208814505e-21,-1.0465724699315615e-05,8.212038236818388e-23,-4.449220943834647e-22,1.6101115534183918e-06,0.0,2.3822801641527197e-22,4.235164736271502e-22,7.008297689026222e-05,-3.3881317890172014e-21,-4.204978540656157e-05,4.5536011608882876e-20,-1.9036288071535926e-23,6.352747104407253e-22,0.0,3.822708094958216e-06,-2.2234614865425384e-21,-2.541098841762901e-21,7.849293615436181e-05,-2.289387135128161e-21,-1.4271442523750011e-05,-1.2075835911673494e-05,7.506820884466684e-24,-1.7572291604634184e-23,2.3822801641527197e-22,-2.2234614865425384e-21,2.195606612076517e-06,2.117582368135751e-22,5.3146257414482534e-05,-2.117582368135751e-21,2.625802136488331e-20,-2.6573128707241267e-05,-3.812222389300284e-23,1.3301991887168353e-23,4.235164736271502e-22,-2.541098841762901e-21,2.117582368135751e-22,2.0440868411242263e-06,14.0,12.0,15.0,0.015265670605003834,-0.0016231684712693095,-0.0018596284789964557,-0.0015262066153809428,4.960317528457381e-05,7.326007471419871e-05,5.952380888629705e-05,6.541077891597524e-05,6.868132186355069e-05,4.376750803203322e-05,-0.0016231684712693095,0.0004729325301013887,7.326007471419871e-05,5.952380888629705e-05,-2.4801587642286904e-05,-1.1270780305494554e-05,-9.157509339274839e-06,8.470329472543003e-21,-2.5276876510160665e-21,-5.082197683525802e-21,-0.0018596284789964557,7.326007471419871e-05,0.0006390038761310279,6.868132186355069e-05,-1.6328647023299104e-22,-1.3320013749762438e-05,0.0,-3.924646807718091e-05,-1.2487512321968097e-05,1.2705494208814505e-20,-0.0015262066153809428,5.952380888629705e-05,6.868132186355069e-05,0.0004132999456487596,2.091008989009093e-22,3.046878790815555e-21,-8.50340165925445e-06,2.926976335696901e-20,-9.811617019295227e-06,-2.0200388462399133e-05,4.960317528457381e-05,-2.4801587642286904e-05,-1.6328647023299104e-22,2.091008989009093e-22,1.907814521473483e-06,-9.478204796997528e-23,-2.718454753525592e-23,5.59032465154367e-23,1.67144306137553e-23,-8.259869871173378e-24,7.326007471419871e-05,-1.1270780305494554e-05,-1.3320013749762438e-05,3.046878790815555e-21,-9.478204796997528e-23,2.0492327621468576e-06,-4.332646234704707e-22,-1.7999450129153882e-21,-1.9392431948972435e-23,-4.228885308802634e-24,5.952380888629705e-05,-9.157509339274839e-06,0.0,-8.50340165925445e-06,-2.718454753525592e-23,-4.332646234704707e-22,1.3082155874144519e-06,0.0,3.705769144237564e-22,6.352747104407253e-22,6.541077891597524e-05,8.470329472543003e-21,-3.924646807718091e-05,2.926976335696901e-20,5.59032465154367e-23,-1.7999450129153882e-21,0.0,3.5678606309375027e-06,-1.0587911840678754e-22,-2.064642808932357e-21,6.868132186355069e-05,-2.5276876510160665e-21,-1.2487512321968097e-05,-9.811617019295227e-06,1.67144306137553e-23,-1.9392431948972435e-23,3.705769144237564e-22,-1.0587911840678754e-22,1.7839303154687514e-06,1.4823076576950256e-21,4.376750803203322e-05,-5.082197683525802e-21,1.2705494208814505e-20,-2.0200388462399133e-05,-8.259869871173378e-24,-4.228885308802634e-24,6.352747104407253e-22,-2.064642808932357e-21,1.4823076576950256e-21,1.4428848089664825e-06,14.0,12.0,16.0,0.014393854886293411,-0.0015250029973685741,-0.001747189206071198,-0.0013530893484130502,4.650297705666162e-05,6.868132186355069e-05,5.25210089108441e-05,6.132260750746354e-05,6.0601163568207994e-05,3.6472923966357484e-05,-0.0015250029973685741,0.00044387925299815834,6.868132186355069e-05,5.25210089108441e-05,-2.325148852833081e-05,-1.0566356650087982e-05,-8.080155566858593e-06,-5.429880209024519e-38,-9.227343116387157e-22,1.2705494208814505e-21,-0.001747189206071198,6.868132186355069e-05,0.0005997547414153814,6.0601163568207994e-05,-7.500480399163752e-22,-1.2487512321968097e-05,-2.752857078576476e-21,-3.679356450447813e-05,-1.1018393706763163e-05,1.6093625997831706e-20,-0.0013530893484130502,5.25210089108441e-05,6.0601163568207994e-05,0.0003419348504394293,-3.71524001893903e-22,-1.548139299304295e-21,-7.002801339694997e-06,3.83826732249722e-20,-8.080155566858593e-06,-1.5631252608727664e-05,4.650297705666162e-05,-2.325148852833081e-05,-7.500480399163752e-22,-3.71524001893903e-22,1.7885760144054075e-06,1.066455630405258e-22,2.8695989252441273e-23,-6.838981103198697e-39,7.58024726866375e-24,8.890117669625221e-24,6.868132186355069e-05,-1.0566356650087982e-05,-1.2487512321968097e-05,-1.548139299304295e-21,1.066455630405258e-22,1.921155671880115e-06,2.3817528264147976e-22,0.0,2.938735877055719e-38,-4.70197740328915e-38,5.25210089108441e-05,-8.080155566858593e-06,-2.752857078576476e-21,-7.002801339694997e-06,2.8695989252441273e-23,2.3817528264147976e-22,1.0773539997899206e-06,9.4039548065783e-38,1.0587911840678754e-22,-1.5881867761018131e-22,6.132260750746354e-05,-5.429880209024519e-38,-3.679356450447813e-05,3.83826732249722e-20,-6.838981103198697e-39,0.0,9.4039548065783e-38,3.3448693557147635e-06,-2.288264907915281e-21,-1.7198145164034062e-21,6.0601163568207994e-05,-9.227343116387157e-22,-1.1018393706763163e-05,-8.080155566858593e-06,7.58024726866375e-24,2.938735877055719e-38,1.0587911840678754e-22,-2.288264907915281e-21,1.469119069952285e-06,3.1763735522036263e-22,3.6472923966357484e-05,1.2705494208814505e-21,1.6093625997831706e-20,-1.5631252608727664e-05,8.890117669625221e-24,-4.70197740328915e-38,-1.5881867761018131e-22,-1.7198145164034062e-21,3.1763735522036263e-22,1.0420834541946533e-06,14.0,13.0,3.0,0.053126636892557144,-0.0066915228962898254,-0.0071428571827709675,-0.022448979318141937,0.00022893772984389216,0.00031397174461744726,0.001098901149816811,0.00026164311566390097,0.0011773940641433,0.002747252816334367,-0.0066915228962898254,0.00205968483351171,0.00031397174461744726,0.001098901149816811,-0.00011446886492194608,-4.8303343646693975e-05,-0.00016906170640140772,3.345191421702896e-20,-6.145605569387489e-20,-9.009417553404531e-19,-0.0071428571827709675,0.00031397174461744726,0.0023797631729394197,0.0011773940641433,1.5808494861590439e-22,-5.232862531556748e-05,-9.720506339666068e-20,-0.00014271443069446832,-0.00019623234402388334,-1.0457359992551041e-18,-0.022448979318141937,0.001098901149816811,0.0011773940641433,0.04992150887846947,-5.907023577831181e-21,-2.8847710605285166e-20,-0.001098901149816811,8.22354692225377e-21,-0.0011773940641433,-0.016483517363667488,0.00022893772984389216,-0.00011446886492194608,1.5808494861590439e-22,-5.907023577831181e-21,8.805297511571553e-06,-6.132125444188224e-24,8.185033950310862e-22,-1.6723978986152096e-23,9.779193097662795e-23,4.5853133197870694e-36,0.00031397174461744726,-4.8303343646693975e-05,-5.232862531556748e-05,-2.8847710605285166e-20,-6.132125444188224e-24,8.050557880778797e-06,5.130452847834474e-21,-5.811989088060648e-21,-7.50039002725845e-22,2.3361040331258803e-35,0.001098901149816811,-0.00016906170640140772,-9.720506339666068e-20,-0.001098901149816811,8.185033950310862e-22,5.130452847834474e-21,0.00016906170640140772,-5.663929160533135e-23,6.458870499588685e-20,9.009417553404531e-19,0.00026164311566390097,3.345191421702896e-20,-0.00014271443069446832,8.22354692225377e-21,-1.6723978986152096e-23,-5.811989088060648e-21,-5.663929160533135e-23,1.1892869224539027e-05,-1.3092319284992211e-21,-1.6226664928840274e-35,0.0011773940641433,-6.145605569387489e-20,-0.00019623234402388334,-0.0011773940641433,9.779193097662795e-23,-7.50039002725845e-22,6.458870499588685e-20,-1.3092319284992211e-21,0.00019623234402388334,1.0457359992551041e-18,0.002747252816334367,-9.009417553404531e-19,-1.0457359992551041e-18,-0.016483517363667488,4.5853133197870694e-36,2.3361040331258803e-35,9.009417553404531e-19,-1.6226664928840274e-35,1.0457359992551041e-18,0.008241758681833744,14.0,13.0,4.0,0.04307496175169945,-0.00518347742035985,-0.005533752031624317,-0.014293563552200794,0.00017170330102089792,0.00023547880118712783,0.0006593406433239579,0.00019623234402388334,0.0007064364035613835,0.0013736264081671834,-0.00518347742035985,0.001570122898556292,0.00023547880118712783,0.0006593406433239579,-8.585165051044896e-05,-3.6227509554009885e-05,-0.00010143702093046159,1.104648397017196e-19,3.752185608829153e-20,1.6201314573828454e-18,-0.005533752031624317,0.00023547880118712783,0.0018142571207135916,0.0007064364035613835,-2.3560086170923514e-20,-3.924646807718091e-05,3.6331424279614667e-19,-0.00010703581938287243,-0.00011773940059356391,9.530278709468453e-19,-0.014293563552200794,0.0006593406433239579,0.0007064364035613835,0.01914442703127861,-2.6896520787243285e-20,3.06478094220957e-19,-0.00043956044828519225,-1.1559542745107976e-19,-0.00047095760237425566,-0.004120879340916872,0.00017170330102089792,-8.585165051044896e-05,-2.3560086170923514e-20,-2.6896520787243285e-20,6.603972906304989e-06,1.878391259840287e-21,4.073942872799655e-21,-4.02079904279802e-22,4.688401146916957e-21,-1.686333048250937e-20,0.00023547880118712783,-3.6227509554009885e-05,-3.924646807718091e-05,3.06478094220957e-19,1.878391259840287e-21,6.037917955836747e-06,-8.76108426564896e-21,-1.5183308886955698e-20,-3.1107865710709458e-21,-8.9826037183668e-20,0.0006593406433239579,-0.00010143702093046159,3.6331424279614667e-19,-0.00043956044828519225,4.073942872799655e-21,-8.76108426564896e-21,6.762468547094613e-05,-1.8863222174702444e-20,-7.90528045740347e-20,-6.246869536964114e-19,0.00019623234402388334,1.104648397017196e-19,-0.00010703581938287243,-1.1559542745107976e-19,-4.02079904279802e-22,-1.5183308886955698e-20,-1.8863222174702444e-20,8.91965191840427e-06,2.398861419584e-20,1.9805605459011954e-20,0.0007064364035613835,3.752185608829153e-20,-0.00011773940059356391,-0.00047095760237425566,4.688401146916957e-21,-3.1107865710709458e-21,-7.90528045740347e-20,2.398861419584e-20,7.849293615436181e-05,-4.626470279857954e-19,0.0013736264081671834,1.6201314573828454e-18,9.530278709468453e-19,-0.004120879340916872,-1.686333048250937e-20,-8.9826037183668e-20,-6.246869536964114e-19,1.9805605459011954e-20,-4.626470279857954e-19,0.0013736264081671834,14.0,13.0,5.0,0.03628728538751602,-0.004234693944454193,-0.004521192982792854,-0.009921506978571415,0.00013736264372710139,0.00018838304094970226,0.00043956044828519225,0.00015698587230872363,0.00047095760237425566,0.0007849293760955334,-0.004234693944454193,0.0012696232879534364,0.00018838304094970226,0.00043956044828519225,-6.868132186355069e-05,-2.8982007279410027e-05,-6.762468547094613e-05,1.6940658945086007e-20,0.0,-0.0,-0.004521192982792854,0.00018838304094970226,0.0014671043027192354,0.00047095760237425566,-4.892246237948726e-22,-3.139717591693625e-05,1.1649515761946737e-20,-8.562865696148947e-05,-7.849293615436181e-05,-0.0,-0.009921506978571415,0.00043956044828519225,0.00047095760237425566,0.00967032928019762,-8.90506983388609e-22,9.047762124622538e-21,-0.00021978022414259613,-6.776263578034403e-21,-0.00023547880118712783,-0.0015698587521910667,0.00013736264372710139,-6.868132186355069e-05,-4.892246237948726e-22,-8.90506983388609e-22,5.283178325043991e-06,3.3004006618596256e-22,2.6057077868344013e-22,-6.215567600868429e-23,-5.885976465957297e-23,-0.0,0.00018838304094970226,-2.8982007279410027e-05,-3.139717591693625e-05,9.047762124622538e-21,3.3004006618596256e-22,4.830334546568338e-06,-1.549001013091835e-21,-2.752857078576476e-21,2.117582368135751e-22,-0.0,0.00043956044828519225,-6.762468547094613e-05,1.1649515761946737e-20,-0.00021978022414259613,2.6057077868344013e-22,-1.549001013091835e-21,3.3812342735473067e-05,-1.241388502255021e-22,-1.5244255788243868e-23,-0.0,0.00015698587230872363,1.6940658945086007e-20,-8.562865696148947e-05,-6.776263578034403e-21,-6.215567600868429e-23,-2.752857078576476e-21,-1.241388502255021e-22,7.1357212618750054e-06,8.470329472543003e-22,-0.0,0.00047095760237425566,0.0,-7.849293615436181e-05,-0.00023547880118712783,-5.885976465957297e-23,2.117582368135751e-22,-1.5244255788243868e-23,8.470329472543003e-22,3.924646807718091e-05,-0.0,0.0007849293760955334,-0.0,-0.0,-0.0015698587521910667,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003924646880477667,14.0,13.0,6.0,0.03137381374835968,-0.003581240074709058,-0.0038237273693084717,-0.007297039497643709,0.00011446886492194608,0.00015698587230872363,0.00031397174461744726,0.00013082155783195049,0.00033639828325249255,0.0004905808600597084,-0.003581240074709058,0.0010660699335858226,0.00015698587230872363,0.00031397174461744726,-5.723443246097304e-05,-2.4151671823346987e-05,-4.8303343646693975e-05,1.3552527156068805e-20,2.541098841762901e-21,-0.0,-0.0038237273693084717,0.00015698587230872363,0.0012319313827902079,0.00033639828325249255,-3.003134396271809e-22,-2.616431265778374e-05,-5.6569577505890944e-21,-7.135721534723416e-05,-5.6066382967401296e-05,-0.0,-0.007297039497643709,0.00031397174461744726,0.00033639828325249255,0.005617010407149792,5.833922298990374e-21,-3.3214266196394754e-21,-0.000125588703667745,-3.3881317890172014e-21,-0.0001345593191217631,-0.0007358712609857321,0.00011446886492194608,-5.723443246097304e-05,-3.003134396271809e-22,5.833922298990374e-21,4.402648755785776e-06,-2.8630082132620592e-22,-9.926570237677847e-22,6.671252787224985e-23,1.6485316061253445e-22,-0.0,0.00015698587230872363,-2.4151671823346987e-05,-2.616431265778374e-05,-3.3214266196394754e-21,-2.8630082132620592e-22,4.0252789403893985e-06,9.85082444464725e-22,-2.541098841762901e-21,-6.352747104407253e-22,-0.0,0.00031397174461744726,-4.8303343646693975e-05,-5.6569577505890944e-21,-0.000125588703667745,-9.926570237677847e-22,9.85082444464725e-22,1.932133818627335e-05,5.921754778997053e-24,-4.138868548680045e-23,-0.0,0.00013082155783195049,1.3552527156068805e-20,-7.135721534723416e-05,-3.3881317890172014e-21,6.671252787224985e-23,-2.541098841762901e-21,5.921754778997053e-24,5.946434612269513e-06,4.235164736271502e-22,-0.0,0.00033639828325249255,2.541098841762901e-21,-5.6066382967401296e-05,-0.0001345593191217631,1.6485316061253445e-22,-6.352747104407253e-22,-4.138868548680045e-23,4.235164736271502e-22,2.242655318696052e-05,-0.0,0.0004905808600597084,-0.0,-0.0,-0.0007358712609857321,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001471742580179125,14.0,13.0,7.0,0.027644464746117592,-0.0031032743863761425,-0.0033135232515633106,-0.005595425143837929,9.811617201194167e-05,0.0001345593191217631,0.00023547880118712783,0.00011213276593480259,0.000252298719715327,0.0003270538873039186,-0.0031032743863761425,0.0009189495467580855,0.0001345593191217631,0.00023547880118712783,-4.9058086005970836e-05,-2.0701432731584646e-05,-3.6227509554009885e-05,-2.202285662861181e-20,1.6940658945086007e-21,-0.0,-0.0033135232515633106,0.0001345593191217631,0.00106194824911654,0.000252298719715327,-7.536646831768877e-22,-2.242655318696052e-05,6.995195021722461e-21,-6.116332951933146e-05,-4.204978540656157e-05,-0.0,-0.005595425143837929,0.00023547880118712783,0.000252298719715327,0.0035658220294862986,1.702542476303352e-21,8.29010022644091e-21,-7.849293615436181e-05,-3.3881317890172014e-21,-8.409957081312314e-05,-0.0003924646880477667,9.811617201194167e-05,-4.9058086005970836e-05,-7.536646831768877e-22,1.702542476303352e-21,3.7736988360848045e-06,-1.0796842598059625e-22,-4.1893789968969845e-22,5.1256455042345083e-23,-3.540515658803735e-23,-0.0,0.0001345593191217631,-2.0701432731584646e-05,-2.242655318696052e-05,8.29010022644091e-21,-1.0796842598059625e-22,3.450238864388666e-06,-1.010963342556118e-21,3.3881317890172014e-21,-2.117582368135751e-22,-0.0,0.00023547880118712783,-3.6227509554009885e-05,6.995195021722461e-21,-7.849293615436181e-05,-4.1893789968969845e-22,-1.010963342556118e-21,1.2075835911673494e-05,-2.356651903499389e-23,-5.160837220305142e-23,-0.0,0.00011213276593480259,-2.202285662861181e-20,-6.116332951933146e-05,-3.3881317890172014e-21,5.1256455042345083e-23,3.3881317890172014e-21,-2.356651903499389e-23,5.096943823446054e-06,8.470329472543003e-22,-0.0,0.000252298719715327,1.6940658945086007e-21,-4.204978540656157e-05,-8.409957081312314e-05,-3.540515658803735e-23,-2.117582368135751e-22,-5.160837220305142e-23,8.470329472543003e-22,1.4016595741850324e-05,-0.0,0.0003270538873039186,-0.0,-0.0,-0.0003924646880477667,-0.0,-0.0,-0.0,-0.0,-0.0,6.541077891597524e-05,14.0,13.0,8.0,0.024713827297091484,-0.0027382588014006615,-0.0029238618444651365,-0.004428309854120016,8.585165051044896e-05,0.00011773940059356391,0.00018315018678549677,9.811617201194167e-05,0.00019623234402388334,0.00022893772984389216,-0.0027382588014006615,0.0008076030062511563,0.00011773940059356391,0.00018315018678549677,-4.292582525522448e-05,-1.8113754777004942e-05,-2.8176951673231088e-05,5.590417451878382e-20,-2.795208725939191e-20,6.449470367408844e-20,-0.0029238618444651365,0.00011773940059356391,0.0009332929039373994,0.00019623234402388334,-1.558671291635302e-20,-1.9623234038590454e-05,4.2235066595133325e-20,-5.3517909691436216e-05,-3.270538945798762e-05,-7.199459155667083e-22,-0.004428309854120016,0.00018315018678549677,0.00019623234402388334,0.0024099200963974,-6.999390378391753e-20,4.890737683462454e-20,-5.232862531556748e-05,-7.962109704190423e-20,-5.6066382967401296e-05,-0.00022893772984389216,8.585165051044896e-05,-4.292582525522448e-05,-1.558671291635302e-20,-6.999390378391753e-20,3.3019864531524945e-06,1.0377621970621496e-21,3.1604386124052598e-21,-2.787670860853749e-22,2.4798878803307604e-21,3.665941286316059e-21,0.00011773940059356391,-1.8113754777004942e-05,-1.9623234038590454e-05,4.890737683462454e-20,1.0377621970621496e-21,3.0189589779183734e-06,-6.587476768832472e-22,-7.411538288475128e-21,-2.117582368135751e-21,-6.256540102274297e-21,0.00018315018678549677,-2.8176951673231088e-05,4.2235066595133325e-20,-5.232862531556748e-05,3.1604386124052598e-21,-6.587476768832472e-22,8.050557880778797e-06,-3.93341748830654e-21,-4.266236515824092e-22,-2.489307965011705e-20,9.811617201194167e-05,5.590417451878382e-20,-5.3517909691436216e-05,-7.962109704190423e-20,-2.787670860853749e-22,-7.411538288475128e-21,-3.93341748830654e-21,4.459825959202135e-06,4.870439446712227e-21,9.242615665460627e-21,0.00019623234402388334,-2.795208725939191e-20,-3.270538945798762e-05,-5.6066382967401296e-05,2.4798878803307604e-21,-2.117582368135751e-21,-4.266236515824092e-22,4.870439446712227e-21,9.344396858068649e-06,-2.4013726882249227e-20,0.00022893772984389216,6.449470367408844e-20,-7.199459155667083e-22,-0.00022893772984389216,3.665941286316059e-21,-6.256540102274297e-21,-2.489307965011705e-20,9.242615665460627e-21,-2.4013726882249227e-20,3.270538945798762e-05,14.0,13.0,9.0,0.022348525002598763,-0.0024502878077328205,-0.002616431098431349,-0.0035925977863371372,7.631257903994992e-05,0.00010465725063113496,0.00014652014942839742,8.721437188796699e-05,0.00015698587230872363,0.00016650016186758876,-0.0024502878077328205,0.0007203739369288087,0.00010465725063113496,0.00014652014942839742,-3.815628951997496e-05,-1.6101115761557594e-05,-2.254156061098911e-05,9.317362419797304e-21,-4.235164736271502e-22,-0.0,-0.002616431098431349,0.00010465725063113496,0.0008325008093379438,0.00015698587230872363,-5.053897342727209e-22,-1.744287510518916e-05,3.576038709076336e-21,-4.7571476898156106e-05,-2.616431265778374e-05,-0.0,-0.0035925977863371372,0.00014652014942839742,0.00015698587230872363,0.0017068645684048533,-8.0258950835255825e-22,2.9199616986996093e-21,-3.6630037357099354e-05,-1.6940658945086007e-21,-3.924646807718091e-05,-0.00014271443069446832,7.631257903994992e-05,-3.815628951997496e-05,-5.053897342727209e-22,-8.0258950835255825e-22,2.9350990189414006e-06,1.3191428298136196e-23,1.3387205588783412e-22,3.597662320499756e-23,-1.1263147745466628e-23,-0.0,0.00010465725063113496,-1.6101115761557594e-05,-1.744287510518916e-05,2.9199616986996093e-21,1.3191428298136196e-23,2.683519142010482e-06,-5.501598246980969e-22,-1.4823076576950256e-21,0.0,-0.0,0.00014652014942839742,-2.254156061098911e-05,3.576038709076336e-21,-3.6630037357099354e-05,1.3387205588783412e-22,-5.501598246980969e-22,5.635390152747277e-06,2.82118644197349e-37,0.0,-0.0,8.721437188796699e-05,9.317362419797304e-21,-4.7571476898156106e-05,-1.6940658945086007e-21,3.597662320499756e-23,-1.4823076576950256e-21,2.82118644197349e-37,3.964289589930559e-06,2.117582368135751e-22,-0.0,0.00015698587230872363,-4.235164736271502e-22,-2.616431265778374e-05,-3.924646807718091e-05,-1.1263147745466628e-23,0.0,0.0,2.117582368135751e-22,6.541078164445935e-06,-0.0,0.00016650016186758876,-0.0,-0.0,-0.00014271443069446832,-0.0,-0.0,-0.0,-0.0,-0.0,1.783930383680854e-05,14.0,13.0,10.0,0.02039852924644947,-0.002217247150838375,-0.0023676324635744095,-0.0029734550043940544,6.868132186355069e-05,9.419152047485113e-05,0.00011988011829089373,7.849293615436181e-05,0.000128442989080213,0.00012487512140069157,-0.002217247150838375,0.000650180852971971,9.419152047485113e-05,0.00011988011829089373,-3.4340660931775346e-05,-1.4491003639705013e-05,-1.8443095541442744e-05,9.317362419797304e-21,4.235164736271502e-22,-0.0,-0.0023676324635744095,9.419152047485113e-05,0.0007513914606533945,0.000128442989080213,-1.1622720643485952e-22,-1.5698587958468124e-05,3.042883847730222e-21,-4.2814328480744734e-05,-2.1407164240372367e-05,-0.0,-0.0029734550043940544,0.00011988011829089373,0.000128442989080213,0.0012539246818050742,4.367197080175939e-22,2.478335906940265e-21,-2.6640027499524876e-05,-2.541098841762901e-21,-2.8542885047500022e-05,-9.365634468849748e-05,6.868132186355069e-05,-3.4340660931775346e-05,-1.1622720643485952e-22,4.367197080175939e-22,2.6415891625219956e-06,3.4818584862463975e-24,-6.122636630789773e-23,9.495977833192158e-24,-6.4580559489547686e-24,-0.0,9.419152047485113e-05,-1.4491003639705013e-05,-1.5698587958468124e-05,2.478335906940265e-21,3.4818584862463975e-24,2.415167273284169e-06,-4.681359610393886e-22,-1.4823076576950256e-21,-5.293955920339377e-23,-0.0,0.00011988011829089373,-1.8443095541442744e-05,3.042883847730222e-21,-2.6640027499524876e-05,-6.122636630789773e-23,-4.681359610393886e-22,4.098465524293715e-06,2.350988701644575e-37,-2.350988701644575e-38,-0.0,7.849293615436181e-05,9.317362419797304e-21,-4.2814328480744734e-05,-2.541098841762901e-21,9.495977833192158e-24,-1.4823076576950256e-21,2.350988701644575e-37,3.5678606309375027e-06,2.117582368135751e-22,-0.0,0.000128442989080213,4.235164736271502e-22,-2.1407164240372367e-05,-2.8542885047500022e-05,-6.4580559489547686e-24,-5.293955920339377e-23,-2.350988701644575e-38,2.117582368135751e-22,4.75714750791667e-06,-0.0,0.00012487512140069157,-0.0,-0.0,-9.365634468849748e-05,-0.0,-0.0,-0.0,-0.0,-0.0,1.0406260116724297e-05,14.0,13.0,11.0,0.018762830644845963,-0.0020247609354555607,-0.002162123564630747,-0.002501893788576126,6.243756070034578e-05,8.562865696148947e-05,9.990009857574478e-05,7.135721534723416e-05,0.00010703581938287243,9.605778905097395e-05,-0.0020247609354555607,0.000592470692936331,8.562865696148947e-05,9.990009857574478e-05,-3.121878035017289e-05,-1.3173639672459103e-05,-1.536924537504092e-05,5.929230630780102e-21,-8.470329472543003e-22,-0.0,-0.002162123564630747,8.562865696148947e-05,0.0006847049226053059,0.00010703581938287243,4.782337340359031e-22,-1.4271442523750011e-05,-2.7130607246040824e-21,-3.892211680067703e-05,-1.783930383680854e-05,-0.0,-0.002501893788576126,9.990009857574478e-05,0.00010703581938287243,0.0009486484341323376,1.7405213704807633e-22,-3.343768372165685e-21,-1.9980019715148956e-05,-8.470329472543003e-22,-2.1407164240372367e-05,-6.403852603398263e-05,6.243756070034578e-05,-3.121878035017289e-05,4.782337340359031e-22,1.7405213704807633e-22,2.401444817223819e-06,-1.1322520572637182e-22,-1.8067565302202713e-23,2.3605747510088722e-23,-9.435493501006147e-24,-0.0,8.562865696148947e-05,-1.3173639672459103e-05,-1.4271442523750011e-05,-3.343768372165685e-21,-1.1322520572637182e-22,2.195606612076517e-06,4.1739397899132334e-22,-1.164670302474663e-21,1.0587911840678754e-22,-0.0,9.990009857574478e-05,-1.536924537504092e-05,-2.7130607246040824e-21,-1.9980019715148956e-05,-1.8067565302202713e-23,4.1739397899132334e-22,3.073849256907124e-06,-2.5860875718090325e-37,-1.1754943508222875e-38,-0.0,7.135721534723416e-05,5.929230630780102e-21,-3.892211680067703e-05,-8.470329472543003e-22,2.3605747510088722e-23,-1.164670302474663e-21,-2.5860875718090325e-37,3.2435098091809778e-06,0.0,-0.0,0.00010703581938287243,-8.470329472543003e-22,-1.783930383680854e-05,-2.1407164240372367e-05,-9.435493501006147e-24,1.0587911840678754e-22,-1.1754943508222875e-38,0.0,3.5678606309375027e-06,-0.0,9.605778905097395e-05,-0.0,-0.0,-6.403852603398263e-05,-0.0,-0.0,-0.0,-0.0,-0.0,6.403852694347734e-06,14.0,13.0,12.0,0.017370838671922684,-0.001863075071014464,-0.001989494077861309,-0.002134404145181179,5.723443246097304e-05,7.849293615436181e-05,8.453085320070386e-05,6.541077891597524e-05,9.05687702470459e-05,7.547397399321198e-05,-0.001863075071014464,0.000544181908480823,7.849293615436181e-05,8.453085320070386e-05,-2.861721623048652e-05,-1.2075835911673494e-05,-1.300474650633987e-05,5.929230630780102e-21,-1.7218390490305654e-21,-5.082197683525802e-21,-0.001989494077861309,7.849293615436181e-05,0.0006289040902629495,9.05687702470459e-05,3.2797958674507425e-22,-1.308215632889187e-05,-4.235164736271502e-21,-3.567860767361708e-05,-1.5094795344339218e-05,-8.470329472543003e-21,-0.002134404145181179,8.453085320070386e-05,9.05687702470459e-05,0.0007352537359111011,1.2916330349271411e-21,-2.4427895568719674e-21,-1.536924537504092e-05,8.031747547918109e-22,-1.6467049135826528e-05,-4.528438512352295e-05,5.723443246097304e-05,-2.861721623048652e-05,3.2797958674507425e-22,1.2916330349271411e-21,2.201324377892888e-06,-9.82212101485875e-23,-5.238698738283542e-23,3.682560162208365e-23,-3.0037409356446153e-23,-6.506259057910027e-23,7.849293615436181e-05,-1.2075835911673494e-05,-1.308215632889187e-05,-2.4427895568719674e-21,-9.82212101485875e-23,2.0126394701946992e-06,3.289951094764706e-22,-1.0587911840678754e-21,5.470973152027351e-23,1.4433754850670834e-23,8.453085320070386e-05,-1.300474650633987e-05,-4.235164736271502e-21,-1.536924537504092e-05,-5.238698738283542e-23,3.289951094764706e-22,2.364499323448399e-06,0.0,3.1763735522036263e-22,1.0587911840678754e-21,6.541077891597524e-05,5.929230630780102e-21,-3.567860767361708e-05,8.031747547918109e-22,3.682560162208365e-23,-1.0587911840678754e-21,0.0,2.9732173061347567e-06,0.0,-5.293955920339377e-23,9.05687702470459e-05,-1.7218390490305654e-21,-1.5094795344339218e-05,-1.6467049135826528e-05,-3.0037409356446153e-23,5.470973152027351e-23,3.1763735522036263e-22,0.0,2.7445082650956465e-06,1.4823076576950256e-21,7.547397399321198e-05,-5.082197683525802e-21,-8.470329472543003e-21,-4.528438512352295e-05,-6.506259057910027e-23,1.4433754850670834e-23,1.0587911840678754e-21,-5.293955920339377e-23,1.4823076576950256e-21,4.116762283956632e-06,14.0,13.0,13.0,0.01617170125246048,-0.0017253351397812366,-0.001842427533119917,-0.001842427533119917,5.283178325043991e-05,7.245501910801977e-05,7.245501910801977e-05,6.037918137735687e-05,7.763037865515798e-05,6.037918137735687e-05,-0.0017253351397812366,0.0005031792097724974,7.245501910801977e-05,7.245501910801977e-05,-2.6415891625219956e-05,-1.1146925317007117e-05,-1.1146925317007117e-05,3.8116482626443515e-21,1.8847294101149397e-21,4.235164736271502e-21,-0.001842427533119917,7.245501910801977e-05,0.0005815220647491515,7.763037865515798e-05,-5.636412429981578e-22,-1.2075835911673494e-05,4.0234064994579266e-21,-3.2934098271653056e-05,-1.293839613936143e-05,5.082197683525802e-21,-0.001842427533119917,7.245501910801977e-05,7.763037865515798e-05,0.0005815220647491515,-3.461796806793541e-22,2.593556754052003e-21,-1.2075835911673494e-05,1.9179174068645373e-21,-1.293839613936143e-05,-3.2934098271653056e-05,5.283178325043991e-05,-2.6415891625219956e-05,-5.636412429981578e-22,-3.461796806793541e-22,2.0319916984590236e-06,1.0164610814431151e-23,3.593825616601123e-23,2.772166399295918e-23,2.3249960197781372e-23,-2.0840318692898206e-24,7.245501910801977e-05,-1.1146925317007117e-05,-1.2075835911673494e-05,2.593556754052003e-21,1.0164610814431151e-23,1.857820961959078e-06,-2.987030274208265e-22,-6.352747104407253e-22,-5.77045378173056e-23,2.7401631801180974e-24,7.245501910801977e-05,-1.1146925317007117e-05,4.0234064994579266e-21,-1.2075835911673494e-05,3.593825616601123e-23,-2.987030274208265e-22,1.857820961959078e-06,-3.970466940254533e-23,-2.6469779601696886e-22,-6.352747104407253e-22,6.037918137735687e-05,3.8116482626443515e-21,-3.2934098271653056e-05,1.9179174068645373e-21,2.772166399295918e-23,-6.352747104407253e-22,-3.970466940254533e-23,2.7445082650956465e-06,-1.0587911840678754e-22,-5.293955920339377e-23,7.763037865515798e-05,1.8847294101149397e-21,-1.293839613936143e-05,-1.293839613936143e-05,2.3249960197781372e-23,-5.77045378173056e-23,-2.6469779601696886e-22,-1.0587911840678754e-22,2.1563994323514635e-06,-9.529120656610879e-22,6.037918137735687e-05,4.235164736271502e-21,5.082197683525802e-21,-3.2934098271653056e-05,-2.0840318692898206e-24,2.7401631801180974e-24,-6.352747104407253e-22,-5.293955920339377e-23,-9.529120656610879e-22,2.7445082650956465e-06,14.0,13.0,14.0,0.015127831138670444,-0.001606582198292017,-0.0017156313406303525,-0.001606582198292017,4.9058086005970836e-05,6.727965956088156e-05,6.27943518338725e-05,5.6066382967401296e-05,6.727965956088156e-05,4.9058086005970836e-05,-0.001606582198292017,0.0004679278645198792,6.727965956088156e-05,6.27943518338725e-05,-2.4529043002985418e-05,-1.0350716365792323e-05,-9.660669093136676e-06,-8.470329472543003e-21,-1.3115854350565192e-21,-2.541098841762901e-21,-0.0017156313406303525,6.727965956088156e-05,0.0005407857242971659,6.727965956088156e-05,3.2219202351694253e-22,-1.121327659348026e-05,0.0,-3.058166475966573e-05,-1.121327659348026e-05,-5.082197683525802e-21,-0.001606582198292017,6.27943518338725e-05,6.727965956088156e-05,0.0004679278645198792,5.322392778250784e-23,2.3472855370906466e-21,-9.660669093136676e-06,6.441922465488332e-22,-1.0350716365792323e-05,-2.4529043002985418e-05,4.9058086005970836e-05,-2.4529043002985418e-05,3.2219202351694253e-22,5.322392778250784e-23,1.8868494180424022e-06,-7.915382991333319e-24,1.4656554413854215e-23,-2.1587409018757313e-23,1.2454348617164344e-24,-1.1152551813137358e-23,6.727965956088156e-05,-1.0350716365792323e-05,-1.121327659348026e-05,2.3472855370906466e-21,-7.915382991333319e-24,1.725119432194333e-06,-2.800717736701891e-22,1.4823076576950256e-21,-5.192272065200751e-23,-1.1726471787512801e-23,6.27943518338725e-05,-9.660669093136676e-06,0.0,-9.660669093136676e-06,1.4656554413854215e-23,-2.800717736701891e-22,1.48625679230463e-06,0.0,2.9116757561866574e-22,4.235164736271502e-22,5.6066382967401296e-05,-8.470329472543003e-21,-3.058166475966573e-05,6.441922465488332e-22,-2.1587409018757313e-23,1.4823076576950256e-21,0.0,2.548471911723027e-06,0.0,0.0,6.727965956088156e-05,-1.3115854350565192e-21,-1.121327659348026e-05,-1.0350716365792323e-05,1.2454348617164344e-24,-5.192272065200751e-23,2.9116757561866574e-22,0.0,1.725119432194333e-06,8.470329472543003e-22,4.9058086005970836e-05,-2.541098841762901e-21,-5.082197683525802e-21,-2.4529043002985418e-05,-1.1152551813137358e-23,-1.1726471787512801e-23,4.235164736271502e-22,0.0,8.470329472543003e-22,1.8868494180424022e-06,14.0,13.0,15.0,0.014210837893188,-0.0015031397342681885,-0.0016051805578172207,-0.0014133345102891326,4.578754669637419e-05,6.27943518338725e-05,5.494505603564903e-05,5.232862531556748e-05,5.886970029678196e-05,4.0400776924798265e-05,-0.0015031397342681885,0.0004372962284833193,6.27943518338725e-05,5.494505603564903e-05,-2.2893773348187096e-05,-9.660669093136676e-06,-8.453085683868267e-06,-1.0164395367051604e-20,-1.6336966539732182e-21,-3.8116482626443515e-21,-0.0016051805578172207,6.27943518338725e-05,0.0005053874920122325,5.886970029678196e-05,-1.7456110000670534e-21,-1.0465724699315615e-05,-2.117582368135751e-22,-2.8542885047500022e-05,-9.811617019295227e-06,-3.3881317890172014e-21,-0.0014133345102891326,5.494505603564903e-05,5.886970029678196e-05,0.00038215453969314694,-3.587085336591425e-22,1.278268292310406e-21,-7.849293979234062e-06,-9.251089218029502e-22,-8.409957445110194e-06,-1.8646511307451874e-05,4.578754669637419e-05,-2.2893773348187096e-05,-1.7456110000670534e-21,-3.587085336591425e-22,1.761059479576943e-06,1.9136526102407463e-22,1.3494711552946932e-22,3.4382669792569706e-23,8.232474309656862e-24,-3.7724432892936094e-23,6.27943518338725e-05,-9.660669093136676e-06,-1.0465724699315615e-05,1.278268292310406e-21,1.9136526102407463e-22,1.6101115534183918e-06,-2.049261081509604e-22,1.5881867761018131e-21,-1.660677042728481e-24,-1.4009636209538014e-24,5.494505603564903e-05,-8.453085683868267e-06,-2.117582368135751e-22,-7.849293979234062e-06,1.3494711552946932e-22,-2.049261081509604e-22,1.2075836366420845e-06,-3.970466940254533e-23,2.3822801641527197e-22,5.293955920339377e-22,5.232862531556748e-05,-1.0164395367051604e-20,-2.8542885047500022e-05,-9.251089218029502e-22,3.4382669792569706e-23,1.5881867761018131e-21,-3.970466940254533e-23,2.378573753958335e-06,3.1763735522036263e-22,-2.6469779601696886e-23,5.886970029678196e-05,-1.6336966539732182e-21,-9.811617019295227e-06,-8.409957445110194e-06,8.232474309656862e-24,-1.660677042728481e-24,2.3822801641527197e-22,3.1763735522036263e-22,1.4016595741850324e-06,5.293955920339377e-22,4.0400776924798265e-05,-3.8116482626443515e-21,-3.3881317890172014e-21,-1.8646511307451874e-05,-3.7724432892936094e-23,-1.4009636209538014e-24,5.293955920339377e-22,-2.6469779601696886e-23,5.293955920339377e-22,1.3318937135409215e-06,14.0,13.0,16.0,0.013398868963122368,-0.0014122235588729382,-0.0015081032179296017,-0.0012530011590570211,4.292582525522448e-05,5.886970029678196e-05,4.848093158216216e-05,4.9058086005970836e-05,5.1943854487035424e-05,3.3667314710328355e-05,-0.0014122235588729382,0.0004104313557036221,5.886970029678196e-05,4.848093158216216e-05,-2.146291262761224e-05,-9.056877388502471e-06,-7.45860461393022e-06,1.0164395367051604e-20,-1.9356399534368777e-20,-1.6517142471458857e-20,-0.0015081032179296017,5.886970029678196e-05,0.0004743418248835951,5.1943854487035424e-05,-9.794883124549083e-21,-9.811617019295227e-06,-2.795208725939191e-20,-2.6758954845718108e-05,-8.65730908117257e-06,-1.4823076576950256e-20,-0.0012530011590570211,4.848093158216216e-05,5.1943854487035424e-05,0.00031616492196917534,-2.626378577977704e-20,7.008442028426814e-21,-6.464123998739524e-06,-4.525809184776213e-20,-6.925847173988586e-06,-1.4428848771785852e-05,4.292582525522448e-05,-2.146291262761224e-05,-9.794883124549083e-21,-2.626378577977704e-20,1.6509932265762473e-06,5.189202260319738e-22,1.0440301702706737e-21,-1.042507327935686e-22,7.448487271098232e-22,8.204617895599517e-22,5.886970029678196e-05,-9.056877388502471e-06,-9.811617019295227e-06,7.008442028426814e-21,5.189202260319738e-22,1.5094794889591867e-06,-1.7559078184471732e-23,-3.494010907423989e-21,-3.1234423738584896e-22,-5.522469108395965e-22,4.848093158216216e-05,-7.45860461393022e-06,-2.795208725939191e-20,-6.464123998739524e-06,1.0440301702706737e-21,-1.7559078184471732e-23,9.94480615190696e-07,1.376428539288238e-21,1.164670302474663e-21,1.0058516248644817e-21,4.9058086005970836e-05,1.0164395367051604e-20,-2.6758954845718108e-05,-4.525809184776213e-20,-1.042507327935686e-22,-3.494010907423989e-21,1.376428539288238e-21,2.2299129796010675e-06,1.4293680984916318e-21,1.61465655570351e-21,5.1943854487035424e-05,-1.9356399534368777e-20,-8.65730908117257e-06,-6.925847173988586e-06,7.448487271098232e-22,-3.1234423738584896e-22,1.164670302474663e-21,1.4293680984916318e-21,1.1543078244358185e-06,-4.235164736271502e-22,3.3667314710328355e-05,-1.6517142471458857e-20,-1.4823076576950256e-20,-1.4428848771785852e-05,8.204617895599517e-22,-5.522469108395965e-22,1.0058516248644817e-21,1.61465655570351e-21,-4.235164736271502e-22,9.61923205977655e-07,14.0,14.0,3.0,0.04976190626621246,-0.006232993211597204,-0.006232993211597204,-0.02091836743056774,0.00021258502965793014,0.0002721088530961424,0.0010204081190750003,0.00021258502965793014,0.0010204081190750003,0.0025510203558951616,-0.006232993211597204,0.0019155546324327588,0.0002721088530961424,0.0010204081190750003,-0.00010629251482896507,-4.186289879726246e-05,-0.00015698587230872363,-1.231602138727274e-20,5.60352503341308e-20,8.365887580450527e-19,-0.006232993211597204,0.0002721088530961424,0.0019155546324327588,0.0010204081190750003,8.821438965900137e-22,-4.186289879726246e-05,7.565123756241204e-20,-0.00010629251482896507,-0.00015698587230872363,8.365887580450527e-19,-0.02091836743056774,0.0010204081190750003,0.0010204081190750003,0.04642857238650322,-6.581986801803113e-21,1.7196251292016357e-20,-0.0010204081190750003,1.1246843189624286e-21,-0.0010204081190750003,-0.015306122601032257,0.00021258502965793014,-0.00010629251482896507,8.821438965900137e-22,-6.581986801803113e-21,8.176347364496905e-06,-2.0999519895472216e-23,1.0126133618908017e-21,-5.331908965122646e-23,-1.1883178012251396e-37,-8.776827422470908e-36,0.0002721088530961424,-4.186289879726246e-05,-4.186289879726246e-05,1.7196251292016357e-20,-2.0999519895472216e-23,6.440446213673567e-06,-2.645577044176212e-21,1.668719856732722e-21,7.256250791595169e-37,1.5291103726097386e-35,0.0010204081190750003,-0.00015698587230872363,7.565123756241204e-20,-0.0010204081190750003,1.0126133618908017e-21,-2.645577044176212e-21,0.00015698587230872363,-1.7302835967616774e-22,-5.60352503341308e-20,-8.365887580450527e-19,0.00021258502965793014,-1.231602138727274e-20,-0.00010629251482896507,1.1246843189624286e-21,-5.331908965122646e-23,1.668719856732722e-21,-1.7302835967616774e-22,8.176347364496905e-06,-3.372679896138885e-37,-2.031467899242443e-36,0.0010204081190750003,5.60352503341308e-20,-0.00015698587230872363,-0.0010204081190750003,-1.1883178012251396e-37,7.256250791595169e-37,-5.60352503341308e-20,-3.372679896138885e-37,0.00015698587230872363,-8.365887580450527e-19,0.0025510203558951616,8.365887580450527e-19,8.365887580450527e-19,-0.015306122601032257,-8.776827422470908e-36,1.5291103726097386e-35,-8.365887580450527e-19,-2.031467899242443e-36,-8.365887580450527e-19,0.0076530613005161285,14.0,14.0,4.0,0.040331631898880005,-0.004827806260436773,-0.004827806260436773,-0.013316326774656773,0.0001594387722434476,0.0002040816325461492,0.0006122448830865324,0.0001594387722434476,0.0006122448830865324,0.0012755101779475808,-0.004827806260436773,0.0014602139126509428,0.0002040816325461492,0.0006122448830865324,-7.97193861217238e-05,-3.139717591693625e-05,-9.419152047485113e-05,-5.3228132146075405e-20,4.5169337952974604e-20,-1.150414465002771e-18,-0.004827806260436773,0.0002040816325461492,0.0014602139126509428,0.0006122448830865324,5.2422199735507334e-20,-3.139717591693625e-05,-2.0778977320136658e-19,-7.97193861217238e-05,-9.419152047485113e-05,-1.150414465002771e-18,-0.013316326774656773,0.0006122448830865324,0.0006122448830865324,0.017806122079491615,5.055461008929586e-20,-2.948223439082606e-19,-0.0004081632650922984,-9.499849448919012e-20,-0.0004081632650922984,-0.0038265306502580643,0.0001594387722434476,-7.97193861217238e-05,5.2422199735507334e-20,5.055461008929586e-20,6.1322607507463545e-06,-2.943519786389248e-21,-5.849597129260184e-21,-1.2583453766462214e-21,-5.887252022486603e-21,1.5658806876615843e-20,0.0002040816325461492,-3.139717591693625e-05,-3.139717591693625e-05,-2.948223439082606e-19,-2.943519786389248e-21,4.830334546568338e-06,5.12613680680628e-21,8.336542701985355e-21,7.947401883599605e-21,8.017309146676706e-20,0.0006122448830865324,-9.419152047485113e-05,-2.0778977320136658e-19,-0.0004081632650922984,-5.849597129260184e-21,5.12613680680628e-21,6.27943518338725e-05,1.4984990719508976e-20,8.783525578732295e-21,3.3029370973091265e-19,0.0001594387722434476,-5.3228132146075405e-20,-7.97193861217238e-05,-9.499849448919012e-20,-1.2583453766462214e-21,8.336542701985355e-21,1.4984990719508976e-20,6.1322607507463545e-06,-4.329054582557672e-21,1.5658806876615843e-20,0.0006122448830865324,4.5169337952974604e-20,-9.419152047485113e-05,-0.0004081632650922984,-5.887252022486603e-21,7.947401883599605e-21,8.783525578732295e-21,-4.329054582557672e-21,6.27943518338725e-05,3.3029370973091265e-19,0.0012755101779475808,-1.150414465002771e-18,-1.150414465002771e-18,-0.0038265306502580643,1.5658806876615843e-20,8.017309146676706e-20,3.3029370973091265e-19,1.5658806876615843e-20,3.3029370973091265e-19,0.0012755101779475808,14.0,14.0,5.0,0.03396793082356453,-0.003943877760320902,-0.003943877760320902,-0.009241982363164425,0.00012755101488437504,0.00016326530021615326,0.0004081632650922984,0.00012755101488437504,0.0004081632650922984,0.0007288630004040897,-0.003943877760320902,0.0011807299451902509,0.00016326530021615326,0.0004081632650922984,-6.377550744218752e-05,-2.5117738914559595e-05,-6.27943518338725e-05,-8.809142651444724e-20,-5.64123942871364e-19,-2.502215769503774e-18,-0.003943877760320902,0.00016326530021615326,0.0011807299451902509,0.0004081632650922984,-4.912070542213226e-20,-2.5117738914559595e-05,-5.612880575388025e-19,-6.377550744218752e-05,-6.27943518338725e-05,-2.502215769503774e-18,-0.009241982363164425,0.0004081632650922984,0.0004081632650922984,0.008994169533252716,-7.975833147540561e-19,-6.5258315456566765e-19,-0.0002040816325461492,-8.131516293641283e-19,-0.0002040816325461492,-0.0014577260008081794,0.00012755101488437504,-6.377550744218752e-05,-4.912070542213226e-20,-7.975833147540561e-19,4.905808509647613e-06,-2.0433067593969958e-21,2.2429669546861643e-20,9.51131082794363e-22,2.1041295356305403e-20,1.1515544491338397e-19,0.00016326530021615326,-2.5117738914559595e-05,-2.5117738914559595e-05,-6.5258315456566765e-19,-2.0433067593969958e-21,3.86426745535573e-06,1.6957157320897318e-20,4.0234064994579266e-21,2.0964065444543933e-20,9.070706208421941e-20,0.0004081632650922984,-6.27943518338725e-05,-5.612880575388025e-19,-0.0002040816325461492,2.2429669546861643e-20,1.6957157320897318e-20,3.139717591693625e-05,2.2567672999838752e-20,6.680549087639214e-20,1.8788077662813403e-19,0.00012755101488437504,-8.809142651444724e-20,-6.377550744218752e-05,-8.131516293641283e-19,9.51131082794363e-22,4.0234064994579266e-21,2.2567672999838752e-20,4.905808509647613e-06,2.329340604949326e-20,1.1515544491338397e-19,0.0004081632650922984,-5.64123942871364e-19,-6.27943518338725e-05,-0.0002040816325461492,2.1041295356305403e-20,2.0964065444543933e-20,6.680549087639214e-20,2.329340604949326e-20,3.139717591693625e-05,1.8788077662813403e-19,0.0007288630004040897,-2.502215769503774e-18,-2.502215769503774e-18,-0.0014577260008081794,1.1515544491338397e-19,9.070706208421941e-20,1.8788077662813403e-19,1.1515544491338397e-19,1.8788077662813403e-19,0.00036443150020204484,14.0,14.0,6.0,0.02936345897614956,-0.0033351555466651917,-0.0033351555466651917,-0.0067966473288834095,0.00010629251482896507,0.0001360544265480712,0.0002915451768785715,0.00010629251482896507,0.0002915451768785715,0.0004555393534246832,-0.0033351555466651917,0.0009914172114804387,0.0001360544265480712,0.0002915451768785715,-5.3146257414482534e-05,-2.093144939863123e-05,-4.485310637392104e-05,-5.929230630780102e-21,8.470329472543003e-22,-0.0,-0.0033351555466651917,0.0001360544265480712,0.0009914172114804387,0.0002915451768785715,-1.067802499960396e-22,-2.093144939863123e-05,5.8200444055102366e-21,-5.3146257414482534e-05,-4.485310637392104e-05,-0.0,-0.0067966473288834095,0.0002915451768785715,0.0002915451768785715,0.00522412545979023,-6.499803095992345e-21,6.016467085352119e-21,-0.00011661807366181165,-3.3881317890172014e-21,-0.00011661807366181165,-0.00068330904468894,0.00010629251482896507,-5.3146257414482534e-05,-1.067802499960396e-22,-6.499803095992345e-21,4.088173682248453e-06,-2.14566480661966e-22,6.940914727146328e-22,-7.364370058531297e-25,3.3728476910200784e-23,-0.0,0.0001360544265480712,-2.093144939863123e-05,-2.093144939863123e-05,6.016467085352119e-21,-2.14566480661966e-22,3.2202231068367837e-06,-8.824767075395956e-22,8.470329472543003e-22,-1.0587911840678754e-22,-0.0,0.0002915451768785715,-4.485310637392104e-05,5.8200444055102366e-21,-0.00011661807366181165,6.940914727146328e-22,-8.824767075395956e-22,1.7941241821972653e-05,-4.1190353233453406e-23,4.664877844837795e-23,-0.0,0.00010629251482896507,-5.929230630780102e-21,-5.3146257414482534e-05,-3.3881317890172014e-21,-7.364370058531297e-25,8.470329472543003e-22,-4.1190353233453406e-23,4.088173682248453e-06,8.470329472543003e-22,-0.0,0.0002915451768785715,8.470329472543003e-22,-4.485310637392104e-05,-0.00011661807366181165,3.3728476910200784e-23,-1.0587911840678754e-22,4.664877844837795e-23,8.470329472543003e-22,1.7941241821972653e-05,-0.0,0.0004555393534246832,-0.0,-0.0,-0.00068330904468894,-0.0,-0.0,-0.0,-0.0,-0.0,0.000136661808937788,14.0,14.0,7.0,0.02586977556347847,-0.002889941679313779,-0.002889941679313779,-0.005211370065808296,9.110787505051121e-05,0.00011661807366181165,0.00021865889721084386,9.110787505051121e-05,0.00021865889721084386,0.00030369291198439896,-0.002889941679313779,0.0008545918390154839,0.00011661807366181165,0.00021865889721084386,-4.5553937525255606e-05,-1.7941241821972653e-05,-3.363982978044078e-05,7.623296525288703e-21,8.470329472543003e-22,-0.0,-0.002889941679313779,0.00011661807366181165,0.0008545918390154839,0.00021865889721084386,6.432427356979858e-22,-1.7941241821972653e-05,-6.042697758058e-21,-4.5553937525255606e-05,-3.363982978044078e-05,-0.0,-0.005211370065808296,0.00021865889721084386,0.00021865889721084386,0.003316326532512903,1.5278983149231253e-21,-5.58293922215302e-21,-7.288629421964288e-05,1.6940658945086007e-21,-7.288629421964288e-05,-0.00036443150020204484,9.110787505051121e-05,-4.5553937525255606e-05,6.432427356979858e-22,1.5278983149231253e-21,3.504148935462581e-06,-1.7359801822393318e-22,-2.1754379317956392e-23,6.552955205878042e-23,-2.681337585757495e-23,-0.0,0.00011661807366181165,-1.7941241821972653e-05,-1.7941241821972653e-05,-5.58293922215302e-21,-1.7359801822393318e-22,2.760191136985668e-06,8.863718881194107e-22,-1.2705494208814505e-21,0.0,-0.0,0.00021865889721084386,-3.363982978044078e-05,-6.042697758058e-21,-7.288629421964288e-05,-2.1754379317956392e-23,8.863718881194107e-22,1.121327659348026e-05,-1.859133344452873e-24,-1.9198728731417226e-23,-0.0,9.110787505051121e-05,7.623296525288703e-21,-4.5553937525255606e-05,1.6940658945086007e-21,6.552955205878042e-23,-1.2705494208814505e-21,-1.859133344452873e-24,3.504148935462581e-06,-2.117582368135751e-22,-0.0,0.00021865889721084386,8.470329472543003e-22,-3.363982978044078e-05,-7.288629421964288e-05,-2.681337585757495e-23,0.0,-1.9198728731417226e-23,-2.117582368135751e-22,1.121327659348026e-05,-0.0,0.00030369291198439896,-0.0,-0.0,-0.00036443150020204484,-0.0,-0.0,-0.0,-0.0,-0.0,6.073858094168827e-05,14.0,14.0,8.0,0.023125000298023224,-0.0025499574840068817,-0.0025499574840068817,-0.004124149680137634,7.97193861217238e-05,0.0001020408162730746,0.0001700680295471102,7.97193861217238e-05,0.0001700680295471102,0.00021258502965793014,-0.0025499574840068817,0.0007510383729822934,0.0001020408162730746,0.0001700680295471102,-3.98596930608619e-05,-1.5698587958468124e-05,-2.616431265778374e-05,-8.470329472543003e-22,5.632769099241097e-20,3.9049083530657305e-20,-0.0025499574840068817,0.0001020408162730746,0.0007510383729822934,0.0001700680295471102,3.147343713229563e-20,-1.5698587958468124e-05,7.943580858469235e-20,-3.98596930608619e-05,-2.616431265778374e-05,3.9049083530657305e-20,-0.004124149680137634,0.0001700680295471102,0.0001700680295471102,0.0022412536200135946,7.111729260394697e-20,-3.7208978252767614e-20,-4.8590864025754854e-05,7.792703114739563e-20,-4.8590864025754854e-05,-0.00021258502965793014,7.97193861217238e-05,-3.98596930608619e-05,3.147343713229563e-20,7.111729260394697e-20,3.0661303753731772e-06,-1.4236443761988378e-21,-3.2739057396831575e-21,-6.124659522586249e-22,-2.7028015443554724e-21,-3.4040885392418754e-21,0.0001020408162730746,-1.5698587958468124e-05,-1.5698587958468124e-05,-3.7208978252767614e-20,-1.4236443761988378e-21,2.415167273284169e-06,2.9396165783608615e-22,4.446922973085077e-21,6.352747104407253e-22,5.809644467232586e-21,0.0001700680295471102,-2.616431265778374e-05,7.943580858469235e-20,-4.8590864025754854e-05,-3.2739057396831575e-21,2.9396165783608615e-22,7.475517577404389e-06,-4.353181356918441e-21,-4.6207827669117985e-21,-5.982666579130385e-21,7.97193861217238e-05,-8.470329472543003e-22,-3.98596930608619e-05,7.792703114739563e-20,-6.124659522586249e-22,4.446922973085077e-21,-4.353181356918441e-21,3.0661303753731772e-06,-2.752857078576476e-21,-3.4040885392418754e-21,0.0001700680295471102,5.632769099241097e-20,-2.616431265778374e-05,-4.8590864025754854e-05,-2.7028015443554724e-21,6.352747104407253e-22,-4.6207827669117985e-21,-2.752857078576476e-21,7.475517577404389e-06,-5.982666579130385e-21,0.00021258502965793014,3.9049083530657305e-20,3.9049083530657305e-20,-0.00021258502965793014,-3.4040885392418754e-21,5.809644467232586e-21,-5.982666579130385e-21,-3.4040885392418754e-21,-5.982666579130385e-21,3.0369290470844135e-05,14.0,14.0,9.0,0.020910121500492096,-0.0022817461285740137,-0.0022817461285740137,-0.0033457018435001373,7.086167897796258e-05,9.070294618140906e-05,0.0001360544265480712,7.086167897796258e-05,0.0001360544265480712,0.00015460730355698615,-0.0022817461285740137,0.0006699154037050903,9.070294618140906e-05,0.0001360544265480712,-3.543083948898129e-05,-1.3954299902252387e-05,-2.093144939863123e-05,6.776263578034403e-21,7.623296525288703e-21,2.897276997414553e-20,-0.0022817461285740137,9.070294618140906e-05,0.0006699154037050903,0.0001360544265480712,1.133056493438652e-21,-1.3954299902252387e-05,5.0645469901912416e-21,-3.543083948898129e-05,-2.093144939863123e-05,2.897276997414553e-20,-0.0033457018435001373,0.0001360544265480712,0.0001360544265480712,0.0015873751835897565,2.2472611045086942e-21,-1.5685636528251615e-21,-3.40136066370178e-05,0.0,-3.40136066370178e-05,-0.000132520537590608,7.086167897796258e-05,-3.543083948898129e-05,1.133056493438652e-21,2.2472611045086942e-21,2.7254491214989685e-06,-1.0766432956796442e-22,-2.975682541641097e-22,-2.121811798547439e-23,1.5884070891754233e-23,3.047945456301549e-37,9.070294618140906e-05,-1.3954299902252387e-05,-1.3954299902252387e-05,-1.5685636528251615e-21,-1.0766432956796442e-22,2.146815404557856e-06,4.2943507611797e-22,-9.529120656610879e-22,-1.0587911840678754e-22,-6.57974738932348e-37,0.0001360544265480712,-2.093144939863123e-05,5.0645469901912416e-21,-3.40136066370178e-05,-2.975682541641097e-22,4.2943507611797e-22,5.2328623496578075e-06,-9.374084623839217e-24,-1.8842625054332447e-21,-7.243192493536382e-21,7.086167897796258e-05,6.776263578034403e-21,-3.543083948898129e-05,0.0,-2.121811798547439e-23,-9.529120656610879e-22,-9.374084623839217e-24,2.7254491214989685e-06,0.0,-4.4715279853773837e-38,0.0001360544265480712,7.623296525288703e-21,-2.093144939863123e-05,-3.40136066370178e-05,1.5884070891754233e-23,-1.0587911840678754e-22,-1.8842625054332447e-21,0.0,5.2328623496578075e-06,-7.243192493536382e-21,0.00015460730355698615,2.897276997414553e-20,2.897276997414553e-20,-0.000132520537590608,3.047945456301549e-37,-6.57974738932348e-37,-7.243192493536382e-21,-4.4715279853773837e-38,-7.243192493536382e-21,1.6565067198826e-05,14.0,14.0,10.0,0.019084416329860687,-0.0020647032652050257,-0.0020647032652050257,-0.0027690166607499123,6.377550744218752e-05,8.163265010807663e-05,0.00011131725477753207,6.377550744218752e-05,0.00011131725477753207,0.00011595547402976081,-0.0020647032652050257,0.0006046364433132112,8.163265010807663e-05,0.00011131725477753207,-3.188775372109376e-05,-1.2558869457279798e-05,-1.7125730664702132e-05,-4.743384504624082e-20,-1.4145450219146816e-19,-3.49396748044183e-19,-0.0020647032652050257,8.163265010807663e-05,0.0006046364433132112,0.00011131725477753207,-2.8858360555671787e-20,-1.2558869457279798e-05,-1.3969781613964988e-19,-3.188775372109376e-05,-1.7125730664702132e-05,-3.49396748044183e-19,-0.0027690166607499123,0.00011131725477753207,0.00011131725477753207,0.00116612552665174,-2.2530125139259953e-19,-1.7644406115670223e-19,-2.4737168132560328e-05,-2.244637310223896e-19,-2.4737168132560328e-05,-8.69666037033312e-05,6.377550744218752e-05,-3.188775372109376e-05,-2.8858360555671787e-20,-2.2530125139259953e-19,2.4529042548238067e-06,-1.0265240719845966e-21,4.6573313868482846e-21,4.943125620633819e-22,5.6892109282333435e-21,1.584448469032699e-20,8.163265010807663e-05,-1.2558869457279798e-05,-1.2558869457279798e-05,-1.7644406115670223e-19,-1.0265240719845966e-21,1.932133727677865e-06,3.900226058434283e-21,1.7999450129153882e-21,4.129285617864714e-21,1.2480578630382508e-20,0.00011131725477753207,-1.7125730664702132e-05,-1.3969781613964988e-19,-2.4737168132560328e-05,4.6573313868482846e-21,3.900226058434283e-21,3.8057180518080713e-06,5.704014553141202e-21,7.579972940706238e-21,1.243486720801615e-20,6.377550744218752e-05,-4.743384504624082e-20,-3.188775372109376e-05,-2.244637310223896e-19,4.943125620633819e-22,1.7999450129153882e-21,5.704014553141202e-21,2.4529042548238067e-06,4.658681209898652e-21,1.584448469032699e-20,0.00011131725477753207,-1.4145450219146816e-19,-1.7125730664702132e-05,-2.4737168132560328e-05,5.6892109282333435e-21,4.129285617864714e-21,7.579972940706238e-21,4.658681209898652e-21,3.8057180518080713e-06,1.243486720801615e-20,0.00011595547402976081,-3.49396748044183e-19,-3.49396748044183e-19,-8.69666037033312e-05,1.584448469032699e-20,1.2480578630382508e-20,1.243486720801615e-20,1.584448469032699e-20,1.243486720801615e-20,9.662956472311635e-06,14.0,14.0,11.0,0.017553161829710007,-0.0018854360096156597,-0.0018854360096156597,-0.0023298130836337805,5.7977737014880404e-05,7.421150075970218e-05,9.276437776861712e-05,5.7977737014880404e-05,9.276437776861712e-05,8.91965173650533e-05,-0.0018854360096156597,0.0005509668844752014,7.421150075970218e-05,9.276437776861712e-05,-2.8988868507440202e-05,-1.141715438279789e-05,-1.4271442523750011e-05,-3.3881317890172014e-21,4.235164736271502e-22,-0.0,-0.0018854360096156597,7.421150075970218e-05,0.0005509668844752014,9.276437776861712e-05,6.679557283746427e-23,-1.141715438279789e-05,1.570839409251641e-21,-2.8988868507440202e-05,-1.4271442523750011e-05,-0.0,-0.0023298130836337805,9.276437776861712e-05,9.276437776861712e-05,0.0008822130039334297,-5.224585638035904e-22,1.6306092669603493e-21,-1.8552875189925544e-05,0.0,-1.8552875189925544e-05,-5.946434612269513e-05,5.7977737014880404e-05,-2.8988868507440202e-05,6.679557283746427e-23,-5.224585638035904e-22,2.2299129796010675e-06,2.6924690442188876e-25,9.599944967334856e-23,6.836346997697745e-25,-1.5621209816360108e-23,-0.0,7.421150075970218e-05,-1.141715438279789e-05,-1.141715438279789e-05,1.6306092669603493e-21,2.6924690442188876e-25,1.7564852896612138e-06,-2.416676014233294e-22,5.293955920339377e-22,-5.293955920339377e-23,-0.0,9.276437776861712e-05,-1.4271442523750011e-05,1.570839409251641e-21,-1.8552875189925544e-05,9.599944967334856e-23,-2.416676014233294e-22,2.8542885956994724e-06,-5.877471754111438e-38,1.1754943508222875e-38,-0.0,5.7977737014880404e-05,-3.3881317890172014e-21,-2.8988868507440202e-05,0.0,6.836346997697745e-25,5.293955920339377e-22,-5.877471754111438e-38,2.2299129796010675e-06,1.0587911840678754e-22,-0.0,9.276437776861712e-05,4.235164736271502e-22,-1.4271442523750011e-05,-1.8552875189925544e-05,-1.5621209816360108e-23,-5.293955920339377e-23,1.1754943508222875e-38,1.0587911840678754e-22,2.8542885956994724e-06,-0.0,8.91965173650533e-05,-0.0,-0.0,-5.946434612269513e-05,-0.0,-0.0,-0.0,-0.0,-0.0,5.946434612269513e-06,14.0,14.0,12.0,0.016250187531113625,-0.0017348574474453926,-0.0017348574474453926,-0.0019875532016158104,5.3146257414482534e-05,6.80272132740356e-05,7.849293615436181e-05,5.3146257414482534e-05,7.849293615436181e-05,7.008297689026222e-05,-0.0017348574474453926,0.0005060593248344958,6.80272132740356e-05,7.849293615436181e-05,-2.6573128707241267e-05,-1.0465724699315615e-05,-1.2075835911673494e-05,-2.541098841762901e-21,-4.863461523932553e-22,-1.6940658945086007e-21,-0.0017348574474453926,6.80272132740356e-05,0.0005060593248344958,7.849293615436181e-05,-9.904208492260855e-22,-1.0465724699315615e-05,2.117582368135751e-22,-2.6573128707241267e-05,-1.2075835911673494e-05,-1.6940658945086007e-21,-0.0019875532016158104,7.849293615436181e-05,7.849293615436181e-05,0.000683755031786859,-6.45191335729852e-22,1.6706383664542195e-21,-1.4271442523750011e-05,-4.581276006933155e-22,-1.4271442523750011e-05,-4.204978540656157e-05,5.3146257414482534e-05,-2.6573128707241267e-05,-9.904208492260855e-22,-6.45191335729852e-22,2.0440868411242263e-06,1.8960925033816542e-23,5.945707751523184e-23,4.814297251073155e-23,3.525705899713478e-23,2.4939415477977995e-24,6.80272132740356e-05,-1.0465724699315615e-05,-1.0465724699315615e-05,1.6706383664542195e-21,1.8960925033816542e-23,1.6101115534183918e-06,-1.8707105566573698e-22,3.1763735522036263e-22,-6.133960886856402e-23,-5.9796741299497374e-24,7.849293615436181e-05,-1.2075835911673494e-05,2.117582368135751e-22,-1.4271442523750011e-05,5.945707751523184e-23,-1.8707105566573698e-22,2.195606612076517e-06,1.3234889800848443e-23,1.5881867761018131e-22,6.352747104407253e-22,5.3146257414482534e-05,-2.541098841762901e-21,-2.6573128707241267e-05,-4.581276006933155e-22,4.814297251073155e-23,3.1763735522036263e-22,1.3234889800848443e-23,2.0440868411242263e-06,0.0,5.293955920339377e-23,7.849293615436181e-05,-4.863461523932553e-22,-1.2075835911673494e-05,-1.4271442523750011e-05,3.525705899713478e-23,-6.133960886856402e-23,1.5881867761018131e-22,0.0,2.195606612076517e-06,4.235164736271502e-22,7.008297689026222e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-4.204978540656157e-05,2.4939415477977995e-24,-5.9796741299497374e-24,6.352747104407253e-22,5.293955920339377e-23,4.235164736271502e-22,3.822708094958216e-06,14.0,14.0,13.0,0.015127831138670444,-0.001606582198292017,-0.001606582198292017,-0.0017156313406303525,4.9058086005970836e-05,6.27943518338725e-05,6.727965956088156e-05,4.9058086005970836e-05,6.727965956088156e-05,5.6066382967401296e-05,-0.001606582198292017,0.0004679278645198792,6.27943518338725e-05,6.727965956088156e-05,-2.4529043002985418e-05,-9.660669093136676e-06,-1.0350716365792323e-05,-2.541098841762901e-21,-2.2539819469856876e-21,-9.740878893424454e-21,-0.001606582198292017,6.27943518338725e-05,0.0004679278645198792,6.727965956088156e-05,-3.2334156424980507e-22,-9.660669093136676e-06,-1.4823076576950256e-21,-2.4529043002985418e-05,-1.0350716365792323e-05,-9.317362419797304e-21,-0.0017156313406303525,6.727965956088156e-05,6.727965956088156e-05,0.0005407857242971659,-2.44498312030301e-22,1.6221461147336487e-21,-1.121327659348026e-05,-2.840457141227815e-22,-1.121327659348026e-05,-3.058166475966573e-05,4.9058086005970836e-05,-2.4529043002985418e-05,-3.2334156424980507e-22,-2.44498312030301e-22,1.8868494180424022e-06,7.978268616114823e-24,3.493791742931857e-23,2.0257321690516838e-23,-1.968006798995593e-24,2.3375901052439e-24,6.27943518338725e-05,-9.660669093136676e-06,-9.660669093136676e-06,1.6221461147336487e-21,7.978268616114823e-24,1.48625679230463e-06,-2.0899774113805537e-22,3.1763735522036263e-22,-3.36354512768135e-23,5.356081162094338e-24,6.727965956088156e-05,-1.0350716365792323e-05,-1.4823076576950256e-21,-1.121327659348026e-05,3.493791742931857e-23,-2.0899774113805537e-22,1.725119432194333e-06,1.3234889800848443e-23,4.499862532288471e-22,1.5881867761018131e-21,4.9058086005970836e-05,-2.541098841762901e-21,-2.4529043002985418e-05,-2.840457141227815e-22,2.0257321690516838e-23,3.1763735522036263e-22,1.3234889800848443e-23,1.8868494180424022e-06,0.0,5.293955920339377e-23,6.727965956088156e-05,-2.2539819469856876e-21,-1.0350716365792323e-05,-1.121327659348026e-05,-1.968006798995593e-24,-3.36354512768135e-23,4.499862532288471e-22,0.0,1.725119432194333e-06,1.4823076576950256e-21,5.6066382967401296e-05,-9.740878893424454e-21,-9.317362419797304e-21,-3.058166475966573e-05,2.3375901052439e-24,5.356081162094338e-24,1.5881867761018131e-21,5.293955920339377e-23,1.4823076576950256e-21,2.548471911723027e-06,14.0,14.0,14.0,0.014150874689221382,-0.0014959912514314055,-0.0014959912514314055,-0.0014959912514314055,4.5553937525255606e-05,5.8309036830905825e-05,5.8309036830905825e-05,4.5553937525255606e-05,5.8309036830905825e-05,4.5553937525255606e-05,-0.0014959912514314055,0.000435145222581923,5.8309036830905825e-05,5.8309036830905825e-05,-2.2776968762627803e-05,-8.970620910986327e-06,-8.970620910986327e-06,4.235164736271502e-21,1.407455183375275e-21,4.235164736271502e-21,-0.0014959912514314055,5.8309036830905825e-05,0.000435145222581923,5.8309036830905825e-05,1.1866404194729792e-22,-8.970620910986327e-06,4.235164736271502e-22,-2.2776968762627803e-05,-8.970620910986327e-06,5.929230630780102e-21,-0.0014959912514314055,5.8309036830905825e-05,5.8309036830905825e-05,0.000435145222581923,-2.527547700780593e-22,-1.3879269758427395e-21,-8.970620910986327e-06,8.295849091308475e-22,-8.970620910986327e-06,-2.2776968762627803e-05,4.5553937525255606e-05,-2.2776968762627803e-05,1.1866404194729792e-22,-2.527547700780593e-22,1.7520744677312905e-06,-6.965095901355121e-23,-2.7193275492311284e-23,1.7671203718096226e-23,1.337572356053574e-23,2.4496122192037194e-23,5.8309036830905825e-05,-8.970620910986327e-06,-8.970620910986327e-06,-1.3879269758427395e-21,-6.965095901355121e-23,1.380095568492834e-06,2.105921741779136e-22,-7.411538288475128e-22,2.8612442571691126e-23,-1.519996282613752e-23,5.8309036830905825e-05,-8.970620910986327e-06,4.235164736271502e-22,-8.970620910986327e-06,-2.7193275492311284e-23,2.105921741779136e-22,1.380095568492834e-06,0.0,-2.6469779601696886e-22,-6.88214269644119e-22,4.5553937525255606e-05,4.235164736271502e-21,-2.2776968762627803e-05,8.295849091308475e-22,1.7671203718096226e-23,-7.411538288475128e-22,0.0,1.7520744677312905e-06,-1.0587911840678754e-22,-5.293955920339377e-23,5.8309036830905825e-05,1.407455183375275e-21,-8.970620910986327e-06,-8.970620910986327e-06,1.337572356053574e-23,2.8612442571691126e-23,-2.6469779601696886e-22,-1.0587911840678754e-22,1.380095568492834e-06,-7.411538288475128e-22,4.5553937525255606e-05,4.235164736271502e-21,5.929230630780102e-21,-2.2776968762627803e-05,2.4496122192037194e-23,-1.519996282613752e-23,-6.88214269644119e-22,-5.293955920339377e-23,-7.411538288475128e-22,1.7520744677312905e-06,14.0,14.0,15.0,0.013292716816067696,-0.0013996599009260535,-0.0013996599009260535,-0.0013160264352336526,4.251700738677755e-05,5.442176916403696e-05,5.10204081365373e-05,4.251700738677755e-05,5.10204081365373e-05,3.751500480575487e-05,-0.0013996599009260535,0.0004066588298883289,5.442176916403696e-05,5.10204081365373e-05,-2.1258503693388775e-05,-8.372579941351432e-06,-7.849293979234062e-06,-7.623296525288703e-21,1.2726710099056783e-20,-4.658681209898652e-21,-0.0013996599009260535,5.442176916403696e-05,0.0004066588298883289,5.10204081365373e-05,1.6188701685074154e-20,-8.372579941351432e-06,-9.105604182983729e-21,-2.1258503693388775e-05,-7.849293979234062e-06,-4.235164736271502e-21,-0.0013160264352336526,5.10204081365373e-05,5.10204081365373e-05,0.00035537840449251235,2.2647927290714868e-20,-1.1901246047833516e-20,-7.288629603863228e-06,1.1498178060560045e-20,-7.288629603863228e-06,-1.731461816234514e-05,4.251700738677755e-05,-2.1258503693388775e-05,1.6188701685074154e-20,2.2647927290714868e-20,1.6352695411114837e-06,-7.252646808469726e-22,-9.512588151521364e-22,-2.776121432330334e-22,-7.973073462182963e-22,-6.246116838957401e-22,5.442176916403696e-05,-8.372579941351432e-06,-8.372579941351432e-06,-1.1901246047833516e-20,-7.252646808469726e-22,1.2880891517852433e-06,2.0438381361027526e-22,1.164670302474663e-21,3.2349782181791125e-22,8.065457278337758e-22,5.10204081365373e-05,-7.849293979234062e-06,-9.105604182983729e-21,-7.288629603863228e-06,-9.512588151521364e-22,2.0438381361027526e-22,1.1213276138732908e-06,9.396771758602394e-22,-2.3822801641527197e-22,1.3234889800848443e-21,4.251700738677755e-05,-7.623296525288703e-21,-2.1258503693388775e-05,1.1498178060560045e-20,-2.776121432330334e-22,1.164670302474663e-21,9.396771758602394e-22,1.6352695411114837e-06,-9.529120656610879e-22,-6.352747104407253e-22,5.10204081365373e-05,1.2726710099056783e-20,-7.849293979234062e-06,-7.288629603863228e-06,-7.973073462182963e-22,3.2349782181791125e-22,-2.3822801641527197e-22,-9.529120656610879e-22,1.1213276138732908e-06,1.3234889800848443e-21,3.751500480575487e-05,-4.658681209898652e-21,-4.235164736271502e-21,-1.731461816234514e-05,-6.246116838957401e-22,8.065457278337758e-22,1.3234889800848443e-21,-6.352747104407253e-22,1.3234889800848443e-21,1.2367584076855564e-06,14.0,14.0,16.0,0.012532887980341911,-0.0013149947626516223,-0.0013149947626516223,-0.0011667166836559772,3.98596930608619e-05,5.10204081365373e-05,4.501800867728889e-05,3.98596930608619e-05,4.501800867728889e-05,3.126250521745533e-05,-0.0013149947626516223,0.00038167551974765956,5.10204081365373e-05,4.501800867728889e-05,-1.992984653043095e-05,-7.849293979234062e-06,-6.925847173988586e-06,8.470329472543003e-22,2.1822926105205462e-20,1.5670109524204556e-20,-0.0013149947626516223,5.10204081365373e-05,0.00038167551974765956,4.501800867728889e-05,1.645897648787732e-20,-7.849293979234062e-06,2.5940384009662948e-20,-1.992984653043095e-05,-6.925847173988586e-06,1.6093625997831706e-20,-0.0011667166836559772,4.501800867728889e-05,4.501800867728889e-05,0.00029401047504507005,2.4986140700203532e-20,-5.764057848972321e-21,-6.002400823490461e-06,2.6334016968074486e-20,-6.002400823490461e-06,-1.3398216651694383e-05,3.98596930608619e-05,-1.992984653043095e-05,1.645897648787732e-20,2.4986140700203532e-20,1.5330651876865886e-06,-7.540895321060035e-22,-9.89624667691664e-22,-2.783384001368161e-22,-7.706131009791842e-22,-7.375479898259582e-22,5.10204081365373e-05,-7.849293979234062e-06,-7.849293979234062e-06,-5.764057848972321e-21,-7.540895321060035e-22,1.2075836366420845e-06,2.1723763626224764e-23,2.064642808932357e-21,3.826737745500713e-23,5.418353605294213e-22,4.501800867728889e-05,-6.925847173988586e-06,2.5940384009662948e-20,-6.002400823490461e-06,-9.89624667691664e-22,2.1723763626224764e-23,9.234462936547061e-07,-1.0984958534704208e-21,-1.2308447514789052e-21,-1.0058516248644817e-21,3.98596930608619e-05,8.470329472543003e-22,-1.992984653043095e-05,2.6334016968074486e-20,-2.783384001368161e-22,2.064642808932357e-21,-1.0984958534704208e-21,1.5330651876865886e-06,-8.999725064576941e-22,-7.279189390466644e-22,4.501800867728889e-05,2.1822926105205462e-20,-6.925847173988586e-06,-6.002400823490461e-06,-7.706131009791842e-22,3.826737745500713e-23,-1.2308447514789052e-21,-8.999725064576941e-22,9.234462936547061e-07,-1.0587911840678754e-21,3.126250521745533e-05,1.5670109524204556e-20,1.6093625997831706e-20,-1.3398216651694383e-05,-7.375479898259582e-22,5.418353605294213e-22,-1.0058516248644817e-21,-7.279189390466644e-22,-1.0587911840678754e-21,8.932144055506797e-07,14.0,15.0,3.0,0.04679855331778526,-0.005833333358168602,-0.005486694630235434,-0.019583333283662796,0.00019841270113829523,0.0002380952355451882,0.0009523809421807528,0.00017507003212813288,0.0008928571478463709,0.0023809524718672037,-0.005833333358168602,0.001790293026715517,0.0002380952355451882,0.0009523809421807528,-9.920635056914762e-05,-3.6630037357099354e-05,-0.00014652014942839742,-1.7706455324486784e-20,-5.091066287538592e-20,-7.8081620864124135e-19,-0.005486694630235434,0.0002380952355451882,0.0015648951521143317,0.0008928571478463709,2.9460756452350663e-21,-3.40136066370178e-05,-3.9888994969825407e-20,-8.080155384959653e-05,-0.00012755101488437504,-3.851426551121414e-18,-0.019583333283662796,0.0009523809421807528,0.0008928571478463709,0.0433928556740284,-4.192304825196464e-21,7.713175676514985e-21,-0.0009523809421807528,-5.668175014397781e-19,-0.0008928571478463709,-0.014285714365541935,0.00019841270113829523,-9.920635056914762e-05,2.9460756452350663e-21,-4.192304825196464e-21,7.631258085893933e-06,-4.96222943362112e-22,5.08903131417958e-22,3.903927785076589e-23,1.2634778697786576e-22,-1.2466767613591602e-35,0.0002380952355451882,-3.6630037357099354e-05,-3.40136066370178e-05,7.713175676514985e-21,-4.96222943362112e-22,5.2328623496578075e-06,-1.2291547463626576e-21,2.8089698528592267e-21,3.9475682014421394e-23,1.0367776374362332e-34,0.0009523809421807528,-0.00014652014942839742,-3.9888994969825407e-20,-0.0009523809421807528,5.08903131417958e-22,-1.2291547463626576e-21,0.00014652014942839742,-6.569771196022457e-23,4.8867407208932036e-20,7.8081620864124135e-19,0.00017507003212813288,-1.7706455324486784e-20,-8.080155384959653e-05,-5.668175014397781e-19,3.903927785076589e-23,2.8089698528592267e-21,-6.569771196022457e-23,5.77153923586593e-06,2.2450281207515845e-20,2.050462736034696e-19,0.0008928571478463709,-5.091066287538592e-20,-0.00012755101488437504,-0.0008928571478463709,1.2634778697786576e-22,3.9475682014421394e-23,4.8867407208932036e-20,2.2450281207515845e-20,0.00012755101488437504,9.807786431246571e-19,0.0023809524718672037,-7.8081620864124135e-19,-3.851426551121414e-18,-0.014285714365541935,-1.2466767613591602e-35,1.0367776374362332e-34,7.8081620864124135e-19,2.050462736034696e-19,9.807786431246571e-19,0.0071428571827709675,14.0,15.0,4.0,0.0379173681139946,-0.004517856985330582,-0.004248949699103832,-0.01246428582817316,0.00014880952949170023,0.00017857142665889114,0.0005714285653084517,0.00013130252773407847,0.0005357142654247582,0.0011904762359336019,-0.004517856985330582,0.0013646978186443448,0.00017857142665889114,0.0005714285653084517,-7.440476474585012e-05,-2.7472528017824516e-05,-8.791208529146388e-05,-8.11032302161888e-20,-2.2072247065999467e-19,3.5809062307726845e-19,-0.004248949699103832,0.00017857142665889114,0.0011928040767088532,0.0005357142654247582,-9.417076457701157e-20,-2.551020406826865e-05,4.425119009126062e-20,-6.0601163568207994e-05,-7.653061038581654e-05,5.686172396575404e-19,-0.01246428582817316,0.0005714285653084517,0.0005357142654247582,0.01664285734295845,-1.354733918266445e-19,-3.1629856339894555e-19,-0.0003809523768723011,2.639907892377833e-19,-0.0003571428533177823,-0.0035714285913854837,0.00014880952949170023,-7.440476474585012e-05,-9.417076457701157e-20,-1.354733918266445e-19,5.723443337046774e-06,6.649782896393e-21,1.733562153170874e-20,2.188893980328988e-21,6.6872992530226876e-21,-1.461488717211545e-20,0.00017857142665889114,-2.7472528017824516e-05,-2.551020406826865e-05,-3.1629856339894555e-19,6.649782896393e-21,3.924646989617031e-06,1.586218990972732e-20,9.176563193284994e-21,1.5903174124139907e-20,2.5707676454484187e-20,0.0005714285653084517,-8.791208529146388e-05,4.425119009126062e-20,-0.0003809523768723011,1.733562153170874e-20,1.586218990972732e-20,5.860805686097592e-05,-1.2130400926904847e-20,-4.589286895736562e-21,-2.7541257668409793e-19,0.00013130252773407847,-8.11032302161888e-20,-6.0601163568207994e-05,2.639907892377833e-19,2.188893980328988e-21,9.176563193284994e-21,-1.2130400926904847e-20,4.328654540586285e-06,1.552604176297199e-21,-6.952350297166482e-20,0.0005357142654247582,-2.2072247065999467e-19,-7.653061038581654e-05,-0.0003571428533177823,6.6872992530226876e-21,1.5903174124139907e-20,-4.589286895736562e-21,1.552604176297199e-21,5.10204081365373e-05,1.206452229190482e-19,0.0011904762359336019,3.5809062307726845e-19,5.686172396575404e-19,-0.0035714285913854837,-1.461488717211545e-20,2.5707676454484187e-20,-2.7541257668409793e-19,-6.952350297166482e-20,1.206452229190482e-19,0.0011904762359336019,14.0,15.0,5.0,0.031927771866321564,-0.003690476296469569,-0.003470588242635131,-0.008649660274386406,0.0001190476177725941,0.0001428571413271129,0.0003809523768723011,0.0001050420178216882,0.0003571428533177823,0.0006802721181884408,-0.003690476296469569,0.0011034798808395863,0.0001428571413271129,0.0003809523768723011,-5.952380888629705e-05,-2.197802132286597e-05,-5.860805686097592e-05,-1.2705494208814505e-20,8.470329472543003e-22,-1.3735553914143762e-34,-0.003470588242635131,0.0001428571413271129,0.0009644473320804536,0.0003571428533177823,2.450926865368601e-21,-2.0408162527019158e-05,5.539068357428949e-21,-4.848093158216216e-05,-5.10204081365373e-05,-4.346564251291315e-19,-0.008649660274386406,0.0003809523768723011,0.0003571428533177823,0.008406462147831917,1.767949521418995e-21,1.6379449413159847e-21,-0.00019047618843615055,-2.1345230270808369e-19,-0.00017857142665889114,-0.0013605442363768816,0.0001190476177725941,-5.952380888629705e-05,2.450926865368601e-21,1.767949521418995e-21,4.578754669637419e-06,8.973429112053431e-23,2.536618465230931e-22,-1.258516755100159e-22,-1.885919037603562e-22,2.3751352041585574e-37,0.0001428571413271129,-2.197802132286597e-05,-2.0408162527019158e-05,1.6379449413159847e-21,8.973429112053431e-23,3.1397173643199494e-06,-5.470171038258923e-22,1.9058241313221758e-21,2.117582368135751e-22,1.896420358311011e-35,0.0003809523768723011,-5.860805686097592e-05,5.539068357428949e-21,-0.00019047618843615055,2.536618465230931e-22,-5.470171038258923e-22,2.930402843048796e-05,-8.162556463221857e-23,-1.6009494095885856e-22,6.42294141854227e-37,0.0001050420178216882,-1.2705494208814505e-20,-4.848093158216216e-05,-2.1345230270808369e-19,-1.258516755100159e-22,1.9058241313221758e-21,-8.162556463221857e-23,3.462923586994293e-06,1.0587911840678754e-20,3.5150788098848024e-20,0.0003571428533177823,8.470329472543003e-22,-5.10204081365373e-05,-0.00017857142665889114,-1.885919037603562e-22,2.117582368135751e-22,-1.6009494095885856e-22,1.0587911840678754e-20,2.551020406826865e-05,-2.872731058971895e-20,0.0006802721181884408,-1.3735553914143762e-34,-4.346564251291315e-19,-0.0013605442363768816,2.3751352041585574e-37,1.896420358311011e-35,6.42294141854227e-37,3.5150788098848024e-20,-2.872731058971895e-20,0.0003401360590942204,14.0,15.0,6.0,0.027595704421401024,-0.0031207483261823654,-0.0029346738010644913,-0.006360544357448816,9.920635056914762e-05,0.0001190476177725941,0.0002721088530961424,8.753501606406644e-05,0.00025510202976875007,0.00042517005931586027,-0.0031207483261823654,0.0009265436674468219,0.0001190476177725941,0.0002721088530961424,-4.960317528457381e-05,-1.8315018678549677e-05,-4.186289879726246e-05,-1.1011428314305904e-20,-1.6940658945086007e-21,-6.269497398195117e-35,-0.0029346738010644913,0.0001190476177725941,0.00080977997276932,0.00025510202976875007,1.6631474947595346e-22,-1.70068033185089e-05,1.0509888069789368e-21,-4.0400776924798265e-05,-3.644314710982144e-05,-2.56535255280478e-19,-0.006360544357448816,0.0002721088530961424,0.00025510202976875007,0.004882653243839741,-5.090921046255255e-22,1.599861210679713e-21,-0.00010884353832807392,-1.3721933745519665e-19,-0.0001020408162730746,-0.0006377550889737904,9.920635056914762e-05,-4.960317528457381e-05,1.6631474947595346e-22,-5.090921046255255e-22,3.815629042946966e-06,-3.0269266936087644e-22,1.86273646663747e-23,1.295060704980086e-22,6.260434459283327e-24,-1.3658796927560516e-37,0.0001190476177725941,-1.8315018678549677e-05,-1.70068033185089e-05,1.599861210679713e-21,-3.0269266936087644e-22,2.6164311748289037e-06,-4.551294243824963e-22,1.376428539288238e-21,1.0587911840678754e-22,9.002782203584321e-36,0.0002721088530961424,-4.186289879726246e-05,1.0509888069789368e-21,-0.00010884353832807392,1.86273646663747e-23,-4.551294243824963e-22,1.6745159882702865e-05,1.366595621607486e-22,1.139637309949525e-22,6.3425145097536716e-37,8.753501606406644e-05,-1.1011428314305904e-20,-4.0400776924798265e-05,-1.3721933745519665e-19,1.295060704980086e-22,1.376428539288238e-21,1.366595621607486e-22,2.885769617932965e-06,5.082197683525802e-21,2.0138472954143522e-20,0.00025510202976875007,-1.6940658945086007e-21,-3.644314710982144e-05,-0.0001020408162730746,6.260434459283327e-24,1.0587911840678754e-22,1.139637309949525e-22,5.082197683525802e-21,1.4577259207726456e-05,-1.0161345138542815e-20,0.00042517005931586027,-6.269497398195117e-35,-2.56535255280478e-19,-0.0006377550889737904,-1.3658796927560516e-37,9.002782203584321e-36,6.3425145097536716e-37,2.0138472954143522e-20,-1.0161345138542815e-20,0.00012755101488437504,14.0,15.0,7.0,0.024309640750288963,-0.00270408159121871,-0.002542767208069563,-0.004876700695604086,8.50340147735551e-05,0.0001020408162730746,0.0002040816325461492,7.503000961150974e-05,0.00019132652960252017,0.00028344671591185033,-0.00270408159121871,0.0007986656273715198,0.0001020408162730746,0.0002040816325461492,-4.251700738677755e-05,-1.5698587958468124e-05,-3.139717591693625e-05,1.0164395367051604e-20,2.1091120386632078e-19,7.164219040140015e-19,-0.002542767208069563,0.0001020408162730746,0.0006980017060413957,0.00019132652960252017,6.296807723013647e-20,-1.4577259207726456e-05,1.1481531858525983e-19,-3.462923632469028e-05,-2.7332362151355483e-05,7.108550818890962e-19,-0.004876700695604086,0.0002040816325461492,0.00019132652960252017,0.003099489724263549,4.1166594812959165e-19,1.3906656100999828e-19,-6.80272132740356e-05,3.2526065174565133e-19,-6.377550744218752e-05,-0.0003401360590942204,8.50340147735551e-05,-4.251700738677755e-05,6.296807723013647e-20,4.1166594812959165e-19,3.2705390822229674e-06,-1.5249393670874009e-21,-1.0099498847470271e-20,-1.2531312711199747e-21,-1.0324218939859067e-20,-4.090957751817672e-20,0.0001020408162730746,-1.5698587958468124e-05,-1.4577259207726456e-05,1.3906656100999828e-19,-1.5249393670874009e-21,2.2426552277465817e-06,-3.5991004076190864e-21,2.6469779601696886e-21,-4.0234064994579266e-21,-1.1204314070014913e-20,0.0002040816325461492,-3.139717591693625e-05,1.1481531858525983e-19,-6.80272132740356e-05,-1.0099498847470271e-20,-3.5991004076190864e-21,1.0465724699315615e-05,-3.029931483729413e-21,-1.2928922639289754e-20,-3.0224924319920476e-20,7.503000961150974e-05,1.0164395367051604e-20,-3.462923632469028e-05,3.2526065174565133e-19,-1.2531312711199747e-21,2.6469779601696886e-21,-3.029931483729413e-21,2.473516815371113e-06,-7.623296525288703e-21,-3.820207320162288e-20,0.00019132652960252017,2.1091120386632078e-19,-2.7332362151355483e-05,-6.377550744218752e-05,-1.0324218939859067e-20,-4.0234064994579266e-21,-1.2928922639289754e-20,-7.623296525288703e-21,9.11078677745536e-06,-2.99037779094453e-20,0.00028344671591185033,7.164219040140015e-19,7.108550818890962e-19,-0.0003401360590942204,-4.090957751817672e-20,-1.1204314070014913e-20,-3.0224924319920476e-20,-3.820207320162288e-20,-2.99037779094453e-20,5.668934318237007e-05,14.0,15.0,8.0,0.021728524938225746,-0.0023859126958996058,-0.002243522321805358,-0.003859126940369606,7.440476474585012e-05,8.928571332944557e-05,0.00015873015217948705,6.565126386703923e-05,0.00014880952949170023,0.00019841270113829523,-0.0023859126958996058,0.0007018849137239158,8.928571332944557e-05,0.00015873015217948705,-3.720238237292506e-05,-1.3736264008912258e-05,-2.44200236920733e-05,-6.268043809681823e-20,-1.0333801956502464e-19,-1.1720722764873054e-19,-0.002243522321805358,8.928571332944557e-05,0.000613408803474158,0.00014880952949170023,-5.109390923046056e-20,-1.2755102034134325e-05,-1.105467564317565e-19,-3.0300581784103997e-05,-2.1258503693388775e-05,4.255216434425097e-20,-0.003859126940369606,0.00015873015217948705,0.00014880952949170023,0.002094671130180359,-8.575840237083263e-20,-1.1679810928764065e-19,-4.535147309070453e-05,9.317362419797304e-21,-4.251700738677755e-05,-0.00019841270113829523,7.440476474585012e-05,-3.720238237292506e-05,-5.109390923046056e-20,-8.575840237083263e-20,2.861721668523387e-06,3.301443018483574e-21,5.7258722353724186e-21,1.0638700851458545e-21,2.7594573578636027e-21,3.1771492359762865e-21,8.928571332944557e-05,-1.3736264008912258e-05,-1.2755102034134325e-05,-1.1679810928764065e-19,3.301443018483574e-21,1.9623234948085155e-06,4.487636576652738e-21,4.552802091491864e-21,5.082197683525802e-21,6.245367509449862e-21,0.00015873015217948705,-2.44200236920733e-05,-1.105467564317565e-19,-4.535147309070453e-05,5.7258722353724186e-21,4.487636576652738e-21,6.977149951126194e-06,3.52569216722284e-21,6.804540391845359e-21,6.0977258675287336e-21,6.565126386703923e-05,-6.268043809681823e-20,-3.0300581784103997e-05,9.317362419797304e-21,1.0638700851458545e-21,4.552802091491864e-21,3.52569216722284e-21,2.1643272702931426e-06,-1.2705494208814505e-21,-4.1650022104272455e-21,0.00014880952949170023,-1.0333801956502464e-19,-2.1258503693388775e-05,-4.251700738677755e-05,2.7594573578636027e-21,5.082197683525802e-21,6.804540391845359e-21,-1.2705494208814505e-21,6.073858003219357e-06,-9.793626197758914e-21,0.00019841270113829523,-1.1720722764873054e-19,4.255216434425097e-20,-0.00019841270113829523,3.1771492359762865e-21,6.245367509449862e-21,6.0977258675287336e-21,-4.1650022104272455e-21,-9.793626197758914e-21,2.8344671591185033e-05,14.0,15.0,9.0,0.01964605413377285,-0.0021349205635488033,-0.002007469767704606,-0.00313059170730412,6.613756704609841e-05,7.936507608974352e-05,0.00012698413047473878,5.835667616338469e-05,0.0001190476177725941,0.00014430013834498823,-0.0021349205635488033,0.0006260683876462281,7.936507608974352e-05,0.00012698413047473878,-3.3068783523049206e-05,-1.221001184603665e-05,-1.953601895365864e-05,4.319868030996932e-20,1.2705494208814505e-21,-1.6598802000024033e-19,-0.002007469767704606,7.936507608974352e-05,0.0005471419426612556,0.0001190476177725941,4.3756801041243866e-20,-1.1337868272676133e-05,-5.644607495718248e-22,-2.6933850676869042e-05,-1.70068033185089e-05,-2.6182766023716885e-19,-0.00313059170730412,0.00012698413047473878,0.0001190476177725941,0.0014835343463346362,-1.1275629801955341e-19,-2.2081521828617718e-20,-3.1746032618684694e-05,-1.4145450219146816e-19,-2.9761904443148524e-05,-0.00012368583702482283,6.613756704609841e-05,-3.3068783523049206e-05,4.3756801041243866e-20,-1.1275629801955341e-19,2.5437525437155273e-06,-8.963183512834166e-22,2.855279042465125e-21,-2.2279138427351547e-21,-1.467170085877882e-22,1.1971388378838599e-20,7.936507608974352e-05,-1.221001184603665e-05,-1.1337868272676133e-05,-2.2081521828617718e-20,-8.963183512834166e-22,1.7442874877815484e-06,-3.80059754567433e-22,-1.7999450129153882e-21,-4.235164736271502e-22,2.7463773624792162e-21,0.00012698413047473878,-1.953601895365864e-05,-5.644607495718248e-22,-3.1746032618684694e-05,2.855279042465125e-21,-3.80059754567433e-22,4.88400473841466e-06,-4.24093894566223e-23,8.005753760675735e-22,-2.216167312581405e-21,5.835667616338469e-05,4.319868030996932e-20,-2.6933850676869042e-05,-1.4145450219146816e-19,-2.2279138427351547e-21,-1.7999450129153882e-21,-4.24093894566223e-23,1.92384641195531e-06,3.705769144237564e-21,1.2560193148753603e-20,0.0001190476177725941,1.2705494208814505e-21,-1.70068033185089e-05,-2.9761904443148524e-05,-1.467170085877882e-22,-4.235164736271502e-22,8.005753760675735e-22,3.705769144237564e-21,4.251700829627225e-06,1.5316890477947342e-20,0.00014430013834498823,-1.6598802000024033e-19,-2.6182766023716885e-19,-0.00012368583702482283,1.1971388378838599e-20,2.7463773624792162e-21,-2.216167312581405e-21,1.2560193148753603e-20,1.5316890477947342e-20,1.5460729628102854e-05,14.0,15.0,10.0,0.017929717898368835,-0.001931818202137947,-0.0018164629582315683,-0.0025909091345965862,5.952380888629705e-05,7.142857066355646e-05,0.00010389610542915761,5.25210089108441e-05,9.740259702084586e-05,0.00010822511103469878,-0.001931818202137947,0.0005650599487125874,7.142857066355646e-05,0.00010389610542915761,-2.9761904443148524e-05,-1.0989010661432985e-05,-1.5984016499714926e-05,-6.776263578034403e-21,-4.235164736271502e-22,-1.2061379904816935e-35,-0.0018164629582315683,7.142857066355646e-05,0.0004938191850669682,9.740259702084586e-05,-4.806098588130757e-22,-1.0204081263509579e-05,9.230081536579105e-22,-2.424046579108108e-05,-1.3914656847191509e-05,-7.261617618563574e-20,-0.0025909091345965862,0.00010389610542915761,9.740259702084586e-05,0.0010898268083110452,-1.4293133704774712e-21,3.844120453319439e-22,-2.308802322659176e-05,-5.929230630780102e-20,-2.1645020751748234e-05,-8.116882963804528e-05,5.952380888629705e-05,-2.9761904443148524e-05,-4.806098588130757e-22,-1.4293133704774712e-21,2.2893773348187096e-06,9.499459076366898e-24,2.0094470822964822e-22,2.2566587350528325e-23,1.7596107315362807e-23,0.0,7.142857066355646e-05,-1.0989010661432985e-05,-1.0204081263509579e-05,3.844120453319439e-22,9.499459076366898e-24,1.5698586821599747e-06,-1.4200124858347493e-22,9.529120656610879e-22,0.0,1.7230541696217316e-36,0.00010389610542915761,-1.5984016499714926e-05,9.230081536579105e-22,-2.308802322659176e-05,2.0094470822964822e-22,-1.4200124858347493e-22,3.5520035908120917e-06,-6.465218929522581e-38,2.938735877055719e-39,-0.0,5.25210089108441e-05,-6.776263578034403e-21,-2.424046579108108e-05,-5.929230630780102e-20,2.2566587350528325e-23,9.529120656610879e-22,-6.465218929522581e-38,1.7314617934971466e-06,2.752857078576476e-21,4.42713526186916e-21,9.740259702084586e-05,-4.235164736271502e-22,-1.3914656847191509e-05,-2.1645020751748234e-05,1.7596107315362807e-23,0.0,2.938735877055719e-39,2.752857078576476e-21,3.092146016570041e-06,2.3636173054787755e-21,0.00010822511103469878,-1.2061379904816935e-35,-7.261617618563574e-20,-8.116882963804528e-05,0.0,1.7230541696217316e-36,-0.0,4.42713526186916e-21,2.3636173054787755e-21,9.018758646561764e-06,14.0,15.0,11.0,0.016490347683429718,-0.0017640693113207817,-0.0016587089048698545,-0.002179903443902731,5.411255551734939e-05,6.49350622552447e-05,8.658008300699294e-05,4.774637272930704e-05,8.116882963804528e-05,8.325008093379438e-05,-0.0017640693113207817,0.0005149017670191824,6.49350622552447e-05,8.658008300699294e-05,-2.7056277758674696e-05,-9.990009857574478e-06,-1.3320013749762438e-05,2.117582368135751e-21,-4.235164736271502e-22,3.3520458323036406e-36,-0.0016587089048698545,6.49350622552447e-05,0.0004499806964304298,8.116882963804528e-05,-7.204242808196344e-22,-9.276437594962772e-06,7.19227080266322e-22,-2.2036787413526326e-05,-1.159554722107714e-05,-4.004357757797052e-20,-0.002179903443902731,8.658008300699294e-05,8.116882963804528e-05,0.0008244810742326081,1.0684438123219046e-22,4.016150695691223e-22,-1.7316016965196468e-05,-4.489274620447792e-20,-1.6233765563811176e-05,-5.550005516852252e-05,5.411255551734939e-05,-2.7056277758674696e-05,-7.204242808196344e-22,1.0684438123219046e-22,2.0812519778701244e-06,1.4792331575139045e-23,-3.697046488327482e-23,3.514015296642465e-23,1.9066233231498115e-23,-0.0,6.49350622552447e-05,-9.990009857574478e-06,-9.276437594962772e-06,4.016150695691223e-22,1.4792331575139045e-23,1.4271442978497362e-06,-1.10650325866407e-22,-3.1763735522036263e-22,0.0,-4.788636839231557e-37,8.658008300699294e-05,-1.3320013749762438e-05,7.19227080266322e-22,-1.7316016965196468e-05,-3.697046488327482e-23,-1.10650325866407e-22,2.6640027499524876e-06,2.938735877055719e-38,-2.938735877055719e-39,0.0,4.774637272930704e-05,2.117582368135751e-21,-2.2036787413526326e-05,-4.489274620447792e-20,3.514015296642465e-23,-3.1763735522036263e-22,2.938735877055719e-38,1.5740562275823322e-06,1.5881867761018131e-21,3.345743225488477e-21,8.116882963804528e-05,-4.235164736271502e-22,-1.159554722107714e-05,-1.6233765563811176e-05,1.9066233231498115e-23,0.0,-2.938735877055719e-39,1.5881867761018131e-21,2.319109398740693e-06,-1.3593658186962186e-21,8.325008093379438e-05,3.3520458323036406e-36,-4.004357757797052e-20,-5.550005516852252e-05,-0.0,-4.788636839231557e-37,0.0,3.345743225488477e-21,-1.3593658186962186e-21,5.550005425902782e-06,14.0,15.0,12.0,0.015265670605003834,-0.0016231684712693095,-0.0015262066153809428,-0.0018596284789964557,4.960317528457381e-05,5.952380888629705e-05,7.326007471419871e-05,4.376750803203322e-05,6.868132186355069e-05,6.541077891597524e-05,-0.0016231684712693095,0.0004729325301013887,5.952380888629705e-05,7.326007471419871e-05,-2.4801587642286904e-05,-9.157509339274839e-06,-1.1270780305494554e-05,-5.082197683525802e-21,3.7122767292128835e-21,1.0164395367051604e-20,-0.0015262066153809428,5.952380888629705e-05,0.0004132999456487596,6.868132186355069e-05,4.0887670459563725e-22,-8.50340165925445e-06,4.870439446712227e-21,-2.0200388462399133e-05,-9.811617019295227e-06,-2.964615315390051e-20,-0.0018596284789964557,7.326007471419871e-05,6.868132186355069e-05,0.0006390038761310279,4.336100561945361e-22,8.243889789598571e-22,-1.3320013749762438e-05,-3.7652014250146455e-20,-1.2487512321968097e-05,-3.924646807718091e-05,4.960317528457381e-05,-2.4801587642286904e-05,4.0887670459563725e-22,4.336100561945361e-22,1.907814521473483e-06,-1.1384065922740715e-23,-1.5837239690799244e-22,-2.704359386871103e-23,1.3125492148234203e-23,4.2531347352569467e-23,5.952380888629705e-05,-9.157509339274839e-06,-8.50340165925445e-06,8.243889789598571e-22,-1.1384065922740715e-23,1.3082155874144519e-06,-1.7600303424289858e-22,6.88214269644119e-22,6.329900051761369e-23,-8.704170532490145e-24,7.326007471419871e-05,-1.1270780305494554e-05,4.870439446712227e-21,-1.3320013749762438e-05,-1.5837239690799244e-22,-1.7600303424289858e-22,2.0492327621468576e-06,-1.3234889800848443e-23,-7.146840492458159e-22,-2.0117032497289633e-21,4.376750803203322e-05,-5.082197683525802e-21,-2.0200388462399133e-05,-3.7652014250146455e-20,-2.704359386871103e-23,6.88214269644119e-22,-1.3234889800848443e-23,1.4428848089664825e-06,1.376428539288238e-21,2.4881592825595072e-21,6.868132186355069e-05,3.7122767292128835e-21,-9.811617019295227e-06,-1.2487512321968097e-05,1.3125492148234203e-23,6.329900051761369e-23,-7.146840492458159e-22,1.376428539288238e-21,1.7839303154687514e-06,-1.164670302474663e-21,6.541077891597524e-05,1.0164395367051604e-20,-2.964615315390051e-20,-3.924646807718091e-05,4.2531347352569467e-23,-8.704170532490145e-24,-2.0117032497289633e-21,2.4881592825595072e-21,-1.164670302474663e-21,3.5678606309375027e-06,14.0,15.0,13.0,0.014210837893188,-0.0015031397342681885,-0.0014133345102891326,-0.0016051805578172207,4.578754669637419e-05,5.494505603564903e-05,6.27943518338725e-05,4.0400776924798265e-05,5.886970029678196e-05,5.232862531556748e-05,-0.0015031397342681885,0.0004372962284833193,5.494505603564903e-05,6.27943518338725e-05,-2.2893773348187096e-05,-8.453085683868267e-06,-9.660669093136676e-06,-3.8116482626443515e-21,-1.9633277241788162e-21,-9.740878893424454e-21,-0.0014133345102891326,5.494505603564903e-05,0.00038215453969314694,5.886970029678196e-05,-1.4565631252551527e-22,-7.849293979234062e-06,-1.6940658945086007e-21,-1.8646511307451874e-05,-8.409957445110194e-06,-3.049318610115481e-20,-0.0016051805578172207,6.27943518338725e-05,5.886970029678196e-05,0.0005053874920122325,-5.968998711977653e-22,6.805830438171772e-22,-1.0465724699315615e-05,-3.704110259368483e-20,-9.811617019295227e-06,-2.8542885047500022e-05,4.578754669637419e-05,-2.2893773348187096e-05,-1.4565631252551527e-22,-5.968998711977653e-22,1.761059479576943e-06,1.2032478979029264e-22,1.5329194335175187e-22,-3.264959918178432e-23,-2.416676645322018e-23,-1.7832031946287255e-23,5.494505603564903e-05,-8.453085683868267e-06,-7.849293979234062e-06,6.805830438171772e-22,1.2032478979029264e-22,1.2075836366420845e-06,-8.357690358914775e-23,5.293955920339377e-22,1.325690690871316e-23,-8.149947626057166e-24,6.27943518338725e-05,-9.660669093136676e-06,-1.6940658945086007e-21,-1.0465724699315615e-05,1.5329194335175187e-22,-8.357690358914775e-23,1.6101115534183918e-06,0.0,3.705769144237564e-22,1.5881867761018131e-21,4.0400776924798265e-05,-3.8116482626443515e-21,-1.8646511307451874e-05,-3.704110259368483e-20,-3.264959918178432e-23,5.293955920339377e-22,0.0,1.3318937135409215e-06,1.7999450129153882e-21,2.0381730293306602e-21,5.886970029678196e-05,-1.9633277241788162e-21,-8.409957445110194e-06,-9.811617019295227e-06,-2.416676645322018e-23,1.325690690871316e-23,3.705769144237564e-22,1.7999450129153882e-21,1.4016595741850324e-06,3.1763735522036263e-22,5.232862531556748e-05,-9.740878893424454e-21,-3.049318610115481e-20,-2.8542885047500022e-05,-1.7832031946287255e-23,-8.149947626057166e-24,1.5881867761018131e-21,2.0381730293306602e-21,3.1763735522036263e-22,2.378573753958335e-06,14.0,15.0,14.0,0.013292716816067696,-0.0013996599009260535,-0.0013160264352336526,-0.0013996599009260535,4.251700738677755e-05,5.10204081365373e-05,5.442176916403696e-05,3.751500480575487e-05,5.10204081365373e-05,4.251700738677755e-05,-0.0013996599009260535,0.0004066588298883289,5.10204081365373e-05,5.442176916403696e-05,-2.1258503693388775e-05,-7.849293979234062e-06,-8.372579941351432e-06,-7.199780051661553e-21,9.991446764368398e-21,-8.893845946170154e-21,-0.0013160264352336526,5.10204081365373e-05,0.00035537840449251235,5.10204081365373e-05,2.239287131871297e-20,-7.288629603863228e-06,-1.461131834013668e-20,-1.731461816234514e-05,-7.288629603863228e-06,-1.3552527156068805e-20,-0.0013996599009260535,5.442176916403696e-05,5.10204081365373e-05,0.0004066588298883289,1.651527646831921e-20,-1.2173916766356245e-20,-8.372579941351432e-06,4.24337232280846e-21,-7.849293979234062e-06,-2.1258503693388775e-05,4.251700738677755e-05,-2.1258503693388775e-05,2.239287131871297e-20,1.651527646831921e-20,1.6352695411114837e-06,-9.750994286418147e-22,-6.879657721480872e-22,-6.042614454346409e-22,-7.813536757065962e-22,-3.2628655240295064e-22,5.10204081365373e-05,-7.849293979234062e-06,-7.288629603863228e-06,-1.2173916766356245e-20,-9.750994286418147e-22,1.1213276138732908e-06,-1.0743857966499551e-23,1.4293680984916318e-21,-3.2481270858536902e-24,1.151511749165891e-21,5.442176916403696e-05,-8.372579941351432e-06,-1.461131834013668e-20,-8.372579941351432e-06,-6.879657721480872e-22,-1.0743857966499551e-23,1.2880891517852433e-06,1.0124690697649059e-21,5.029258124322408e-22,1.1117307432712692e-21,3.751500480575487e-05,-7.199780051661553e-21,-1.731461816234514e-05,4.24337232280846e-21,-6.042614454346409e-22,1.4293680984916318e-21,1.0124690697649059e-21,1.2367584076855564e-06,-2.6469779601696886e-22,-5.823351512373315e-22,5.10204081365373e-05,9.991446764368398e-21,-7.288629603863228e-06,-7.849293979234062e-06,-7.813536757065962e-22,-3.2481270858536902e-24,5.029258124322408e-22,-2.6469779601696886e-22,1.1213276138732908e-06,2.4881592825595072e-21,4.251700738677755e-05,-8.893845946170154e-21,-1.3552527156068805e-20,-2.1258503693388775e-05,-3.2628655240295064e-22,1.151511749165891e-21,1.1117307432712692e-21,-5.823351512373315e-22,2.4881592825595072e-21,1.6352695411114837e-06,14.0,15.0,15.0,0.012486286461353302,-0.0013095238246023655,-0.0012312674662098289,-0.0012312674662098289,3.968253804487176e-05,4.761904710903764e-05,4.761904710903764e-05,3.501400715322234e-05,4.4642856664722785e-05,3.501400715322234e-05,-0.0013095238246023655,0.00038003662484698,4.761904710903764e-05,4.761904710903764e-05,-1.984126902243588e-05,-7.32600710762199e-06,-7.32600710762199e-06,2.541098841762901e-21,-5.735671957786279e-23,2.117582368135751e-21,-0.0012312674662098289,4.761904710903764e-05,0.00033211169647984207,4.4642856664722785e-05,-3.9416685947219173e-22,-6.80272114550462e-06,6.352747104407253e-22,-1.6160311133717187e-05,-6.377551017067162e-06,-1.6093625997831706e-20,-0.0012312674662098289,4.761904710903764e-05,4.4642856664722785e-05,0.00033211169647984207,-6.95145441371106e-22,6.1685494714333395e-22,-6.80272114550462e-06,-2.505590336823215e-20,-6.377551017067162e-06,-1.6160311133717187e-05,3.968253804487176e-05,-1.984126902243588e-05,-3.9416685947219173e-22,-6.95145441371106e-22,1.5262514807545813e-06,6.50533632730919e-24,8.216270317802718e-23,1.545385297531747e-23,1.703784307451238e-23,2.7784945231484652e-24,4.761904710903764e-05,-7.32600710762199e-06,-6.80272114550462e-06,6.1685494714333395e-22,6.50533632730919e-24,1.046572492668929e-06,-7.880963412316716e-23,-3.1763735522036263e-22,-1.1845484865700779e-23,2.4788662186837997e-24,4.761904710903764e-05,-7.32600710762199e-06,6.352747104407253e-22,-6.80272114550462e-06,8.216270317802718e-23,-7.880963412316716e-23,1.046572492668929e-06,0.0,-1.3234889800848443e-23,-3.1763735522036263e-22,3.501400715322234e-05,2.541098841762901e-21,-1.6160311133717187e-05,-2.505590336823215e-20,1.545385297531747e-23,-3.1763735522036263e-22,0.0,1.1543078244358185e-06,8.999725064576941e-22,1.3367238698856927e-21,4.4642856664722785e-05,-5.735671957786279e-23,-6.377551017067162e-06,-6.377551017067162e-06,1.703784307451238e-23,-1.1845484865700779e-23,-1.3234889800848443e-23,8.999725064576941e-22,9.110787004829035e-07,-4.235164736271502e-22,3.501400715322234e-05,2.117582368135751e-21,-1.6093625997831706e-20,-1.6160311133717187e-05,2.7784945231484652e-24,2.4788662186837997e-24,-3.1763735522036263e-22,1.3367238698856927e-21,-4.235164736271502e-22,1.1543078244358185e-06,14.0,15.0,16.0,0.011772292666137218,-0.0012303045950829983,-0.0011567751644179225,-0.0010915616294369102,3.720238237292506e-05,4.4642856664722785e-05,4.201680712867528e-05,3.282563193351962e-05,3.939075759262778e-05,2.9178338081692345e-05,-0.0012303045950829983,0.00035668833879753947,4.4642856664722785e-05,4.201680712867528e-05,-1.860119118646253e-05,-6.868132004456129e-06,-6.464123998739524e-06,-3.218725199566341e-20,-3.361092353392094e-20,-3.176373552203626e-20,-0.0011567751644179225,4.4642856664722785e-05,0.00031170641887001693,3.939075759262778e-05,-2.6541044765760023e-20,-6.377551017067162e-06,-3.3881317890172014e-20,-1.5150290892051999e-05,-5.627251084661111e-06,-9.105604182983729e-21,-0.0010915616294369102,4.201680712867528e-05,3.939075759262778e-05,0.00027475989190861583,-3.010053057295928e-20,-3.598883838163788e-20,-5.6022408898570575e-06,-2.210148240765696e-21,-5.25210089108441e-06,-1.250500190508319e-05,3.720238237292506e-05,-1.860119118646253e-05,-2.6541044765760023e-20,-3.010053057295928e-20,1.4308608342616935e-06,1.6218381434362504e-21,1.751859283307383e-21,5.432444049456654e-22,8.235553864858664e-22,7.074188043917987e-22,4.4642856664722785e-05,-6.868132004456129e-06,-6.377551017067162e-06,-3.598883838163788e-20,1.6218381434362504e-21,9.811617474042578e-07,1.2797367600409186e-21,2.329340604949326e-21,1.4687936752167972e-21,1.0056286738400045e-21,4.201680712867528e-05,-6.464123998739524e-06,-3.3881317890172014e-20,-5.6022408898570575e-06,1.751859283307383e-21,1.2797367600409186e-21,8.61883222569304e-07,9.198248411589668e-22,1.402898318889935e-21,1.852884572118782e-21,3.282563193351962e-05,-3.218725199566341e-20,-1.5150290892051999e-05,-2.210148240765696e-21,5.432444049456654e-22,2.329340604949326e-21,9.198248411589668e-22,1.0821636351465713e-06,-1.5881867761018131e-22,-2.779326858178173e-22,3.939075759262778e-05,-3.361092353392094e-20,-5.627251084661111e-06,-5.25210089108441e-06,8.235553864858664e-22,1.4687936752167972e-21,1.402898318889935e-21,-1.5881867761018131e-22,7.503001029363077e-07,6.88214269644119e-22,2.9178338081692345e-05,-3.176373552203626e-20,-9.105604182983729e-21,-1.250500190508319e-05,7.074188043917987e-22,1.0056286738400045e-21,1.852884572118782e-21,-2.779326858178173e-22,6.88214269644119e-22,8.336667747244064e-07,14.0,16.0,3.0,0.044168710708618164,-0.005481880158185959,-0.004866946954280138,-0.01840861327946186,0.00018601190822664648,0.0002100840356433764,0.0008928571478463709,0.00014589169586542994,0.0007878151373006403,0.0022321429569274187,-0.005481880158185959,0.0016804197803139687,0.0002100840356433764,0.0008928571478463709,-9.300595411332324e-05,-3.2320622267434373e-05,-0.00013736264372710139,5.897469803314907e-21,0.0,-0.0,-0.004866946954280138,0.0002100840356433764,0.001295018009841442,0.0007878151373006403,-4.1275161460563182e-22,-2.801120535877999e-05,0.0,-6.252501043491066e-05,-0.0001050420178216882,-0.0,-0.01840861327946186,0.0008928571478463709,0.0007878151373006403,0.04073004052042961,0.0,0.0,-0.0008928571478463709,0.0,-0.0007878151373006403,-0.013392857275903225,0.00018601190822664648,-9.300595411332324e-05,-4.1275161460563182e-22,0.0,7.15430405762163e-06,4.332323622148908e-22,0.0,-8.419187430730908e-23,0.0,-0.0,0.0002100840356433764,-3.2320622267434373e-05,-2.801120535877999e-05,0.0,4.332323622148908e-22,4.3094159991596825e-06,0.0,-8.996116246816608e-22,0.0,-0.0,0.0008928571478463709,-0.00013736264372710139,0.0,-0.0008928571478463709,0.0,0.0,0.00013736264372710139,0.0,0.0,-0.0,0.00014589169586542994,5.897469803314907e-21,-6.252501043491066e-05,0.0,-8.419187430730908e-23,-8.996116246816608e-22,0.0,4.168333816778613e-06,0.0,-0.0,0.0007878151373006403,0.0,-0.0001050420178216882,-0.0007878151373006403,0.0,0.0,0.0,0.0,0.0001050420178216882,-0.0,0.0022321429569274187,-0.0,-0.0,-0.013392857275903225,-0.0,-0.0,-0.0,-0.0,-0.0,0.0066964286379516125,14.0,16.0,4.0,0.03577621653676033,-0.004245338961482048,-0.0037683823611587286,-0.011714810505509377,0.00013950893480796367,0.00015756303037051111,0.0005357142654247582,0.00010941876826109365,0.0004726890765596181,0.0011160714784637094,-0.004245338961482048,0.0012809191830456257,0.00015756303037051111,0.0005357142654247582,-6.975446740398183e-05,-2.424046579108108e-05,-8.241758041549474e-05,3.712332466969003e-21,-2.788688175877122e-21,-0.0,-0.0037683823611587286,0.00015756303037051111,0.00098701985552907,0.0004726890765596181,-6.77732794703305e-22,-2.100840356433764e-05,3.817146105660988e-21,-4.689375782618299e-05,-6.302521069301292e-05,-0.0,-0.011714810505509377,0.0005357142654247582,0.0004726890765596181,0.015622373670339584,7.058306822391822e-22,2.4035899603971553e-21,-0.0003571428533177823,-3.7806362598157155e-21,-0.00031512606074102223,-0.0033482143189758062,0.00013950893480796367,-6.975446740398183e-05,-6.77732794703305e-22,7.058306822391822e-22,5.36572815690306e-06,1.2579078175902007e-23,-2.1885596547664683e-22,2.807830169732236e-23,9.556440866133727e-23,-0.0,0.00015756303037051111,-2.424046579108108e-05,-2.100840356433764e-05,2.4035899603971553e-21,1.2579078175902007e-23,3.232061999369762e-06,-5.969926159966703e-22,-4.700141315696367e-22,1.9691495429028963e-22,-0.0,0.0005357142654247582,-8.241758041549474e-05,3.817146105660988e-21,-0.0003571428533177823,-2.1885596547664683e-22,-5.969926159966703e-22,5.494505603564903e-05,5.453554393265257e-24,-1.6403701458632365e-23,-0.0,0.00010941876826109365,3.712332466969003e-21,-4.689375782618299e-05,-3.7806362598157155e-21,2.807830169732236e-23,-4.700141315696367e-22,5.453554393265257e-24,3.1262504762707977e-06,4.993584445793121e-22,-0.0,0.0004726890765596181,-2.788688175877122e-21,-6.302521069301292e-05,-0.00031512606074102223,9.556440866133727e-23,1.9691495429028963e-22,-1.6403701458632365e-23,4.993584445793121e-22,4.201680712867528e-05,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,14.0,16.0,5.0,0.030119173228740692,-0.0034676995128393173,-0.0030777310021221638,-0.008128751069307327,0.00011160714348079637,0.00012605042138602585,0.0003571428533177823,8.753501606406644e-05,0.00031512606074102223,0.0006377550889737904,-0.0034676995128393173,0.0010357244173064828,0.00012605042138602585,0.0003571428533177823,-5.5803571740398183e-05,-1.939237154147122e-05,-5.494505603564903e-05,-1.2705494208814505e-20,0.0,-0.0,-0.0030777310021221638,0.00012605042138602585,0.0007980192312970757,0.00031512606074102223,1.5190196538804266e-21,-1.6806723579065874e-05,1.8433029287244483e-21,-3.751500480575487e-05,-4.201680712867528e-05,-0.0,-0.008128751069307327,0.0003571428533177823,0.00031512606074102223,0.007890906184911728,-3.7837878664171566e-21,-1.0321337944102553e-21,-0.00017857142665889114,-5.082197683525802e-21,-0.00015756303037051111,-0.0012755101779475808,0.00011160714348079637,-5.5803571740398183e-05,1.5190196538804266e-21,-3.7837878664171566e-21,4.292582616471918e-06,-2.651130523974772e-23,6.886811238387161e-22,-1.093448809751238e-22,-5.040366800480858e-23,-0.0,0.00012605042138602585,-1.939237154147122e-05,-1.6806723579065874e-05,-1.0321337944102553e-21,-2.651130523974772e-23,2.5856495540210744e-06,-1.4770906744041966e-22,1.7999450129153882e-21,1.0587911840678754e-22,-0.0,0.0003571428533177823,-5.494505603564903e-05,1.8433029287244483e-21,-0.00017857142665889114,6.886811238387161e-22,-1.4770906744041966e-22,2.7472528017824516e-05,1.2508692061633662e-23,-3.3138506771847715e-23,-0.0,8.753501606406644e-05,-1.2705494208814505e-20,-3.751500480575487e-05,-5.082197683525802e-21,-1.093448809751238e-22,1.7999450129153882e-21,1.2508692061633662e-23,2.501000381016638e-06,4.235164736271502e-22,-0.0,0.00031512606074102223,0.0,-4.201680712867528e-05,-0.00015756303037051111,-5.040366800480858e-23,1.0587911840678754e-22,-3.3138506771847715e-23,4.235164736271502e-22,2.100840356433764e-05,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,14.0,16.0,6.0,0.026029057800769806,-0.002932266565039754,-0.002602290827780962,-0.005977078340947628,9.300595411332324e-05,0.0001050420178216882,0.00025510202976875007,7.294584793271497e-05,0.00022509002883452922,0.00039859695243649185,-0.002932266565039754,0.0008696447475813329,0.0001050420178216882,0.00025510202976875007,-4.650297705666162e-05,-1.6160311133717187e-05,-3.924646807718091e-05,4.235164736271502e-21,-1.1858461261560205e-20,-8.169812171063074e-20,-0.002602290827780962,0.0001050420178216882,0.0006700180238112807,0.00022509002883452922,-6.919748516208417e-22,-1.4005602679389995e-05,-1.0658396676156222e-20,-3.126250521745533e-05,-3.0012004572199658e-05,-6.247503234861512e-20,-0.005977078340947628,0.00025510202976875007,0.00022509002883452922,0.004583114292472601,-2.989446839150883e-22,1.0295339108150385e-21,-0.0001020408162730746,-1.6940658945086007e-21,-9.003601735457778e-05,-0.0005978954141028225,9.300595411332324e-05,-4.650297705666162e-05,-6.919748516208417e-22,-2.989446839150883e-22,3.577152028810815e-06,3.3647025444014904e-22,1.8322679132418843e-22,-8.703533290650908e-23,-4.364544614268224e-23,-4.210497862922841e-37,0.0001050420178216882,-1.6160311133717187e-05,-1.4005602679389995e-05,1.0295339108150385e-21,3.3647025444014904e-22,2.1547079995798413e-06,-1.4228841919652434e-22,-5.293955920339377e-22,-0.0,-1.3240122577583404e-37,0.00025510202976875007,-3.924646807718091e-05,-1.0658396676156222e-20,-0.0001020408162730746,1.8322679132418843e-22,-1.4228841919652434e-22,1.5698587958468124e-05,2.4608369210241092e-23,4.8820567298952654e-21,3.2679249976722004e-20,7.294584793271497e-05,4.235164736271502e-21,-3.126250521745533e-05,-1.6940658945086007e-21,-8.703533290650908e-23,-5.293955920339377e-22,2.4608369210241092e-23,2.0841669083893066e-06,2.117582368135751e-22,3.159662799279135e-37,0.00022509002883452922,-1.1858461261560205e-20,-3.0012004572199658e-05,-9.003601735457778e-05,-4.364544614268224e-23,-0.0,4.8820567298952654e-21,2.117582368135751e-22,1.2004801646980923e-05,2.4990013262563473e-20,0.00039859695243649185,-8.169812171063074e-20,-6.247503234861512e-20,-0.0005978954141028225,-4.210497862922841e-37,-1.3240122577583404e-37,3.2679249976722004e-20,3.159662799279135e-37,2.4990013262563473e-20,0.00011957908282056451,14.0,16.0,7.0,0.02292729541659355,-0.0025407038629055023,-0.0022546518594026566,-0.004582458175718784,7.97193861217238e-05,9.003601735457778e-05,0.00019132652960252017,6.252501043491066e-05,0.00016881752526387572,0.0002657313016243279,-0.0025407038629055023,0.0007496147300116718,9.003601735457778e-05,0.00019132652960252017,-3.98596930608619e-05,-1.3851694347977173e-05,-2.943485014839098e-05,2.879912020664621e-20,6.352747104407253e-20,-4.416495974357623e-20,-0.0022546518594026566,9.003601735457778e-05,0.0005775167373940349,0.00016881752526387572,4.531512530476281e-20,-1.2004801646980923e-05,-2.6468380503238935e-20,-2.6796433303388767e-05,-2.2509004338644445e-05,-2.79372238577601e-19,-0.004582458175718784,0.00019132652960252017,0.00016881752526387572,0.002909288741648197,2.7290523715108485e-20,8.088217912218107e-20,-6.377550744218752e-05,-1.8295911660692887e-19,-5.6272507208632305e-05,-0.0003188775444868952,7.97193861217238e-05,-3.98596930608619e-05,4.531512530476281e-20,2.7290523715108485e-20,3.0661303753731772e-06,-1.637797518990017e-21,-1.557805054203787e-21,-1.4960105628937236e-21,-2.503854105720099e-21,1.4751049663553488e-21,9.003601735457778e-05,-1.3851694347977173e-05,-1.2004801646980923e-05,8.088217912218107e-20,-1.637797518990017e-21,1.8468925873094122e-06,-3.519633311573959e-21,-2.2234614865425384e-21,-3.5998900258307764e-21,-3.793356181217636e-21,0.00019132652960252017,-2.943485014839098e-05,-2.6468380503238935e-20,-6.377550744218752e-05,-1.557805054203787e-21,-3.519633311573959e-21,9.811617019295227e-06,3.586183384586831e-21,1.689004360992311e-21,2.265429108843527e-20,6.252501043491066e-05,2.879912020664621e-20,-2.6796433303388767e-05,-1.8295911660692887e-19,-1.4960105628937236e-21,-2.2234614865425384e-21,3.586183384586831e-21,1.7864288111013593e-06,5.082197683525802e-21,2.0825011859929795e-20,0.00016881752526387572,6.352747104407253e-20,-2.2509004338644445e-05,-5.6272507208632305e-05,-2.503854105720099e-21,-3.5998900258307764e-21,1.689004360992311e-21,5.082197683525802e-21,7.503001143049914e-06,9.201799674058355e-22,0.0002657313016243279,-4.416495974357623e-20,-2.79372238577601e-19,-0.0003188775444868952,1.4751049663553488e-21,-3.793356181217636e-21,2.265429108843527e-20,2.0825011859929795e-20,9.201799674058355e-22,5.3146257414482534e-05,14.0,16.0,8.0,0.020491398870944977,-0.002241716952994466,-0.0019892333075404167,-0.0036261379718780518,6.975446740398183e-05,7.878151518525556e-05,0.00014880952949170023,5.470938413054682e-05,0.00013130252773407847,0.00018601190822664648,-0.002241716952994466,0.0006587746320292354,7.878151518525556e-05,0.00014880952949170023,-3.487723370199092e-05,-1.212023289554054e-05,-2.2893773348187096e-05,2.964615315390051e-21,4.235164736271502e-22,-0.0,-0.0019892333075404167,7.878151518525556e-05,0.000507515505887568,0.00013130252773407847,6.996117320027522e-22,-1.050420178216882e-05,1.4684896419130378e-21,-2.3446878913091496e-05,-1.750700357661117e-05,-0.0,-0.0036261379718780518,0.00014880952949170023,0.00013130252773407847,0.0019660990219563246,1.2247295522287298e-21,1.1402095054739616e-21,-4.251700738677755e-05,-8.470329472543003e-22,-3.751500480575487e-05,-0.00018601190822664648,6.975446740398183e-05,-3.487723370199092e-05,6.996117320027522e-22,1.2247295522287298e-21,2.68286407845153e-06,-1.2234665922303582e-22,-1.2923610336358025e-22,-3.440282045553267e-23,-6.924263672039977e-24,-0.0,7.878151518525556e-05,-1.212023289554054e-05,-1.050420178216882e-05,1.1402095054739616e-21,-1.2234665922303582e-22,1.616030999684881e-06,-1.9141270627435824e-22,-4.235164736271502e-22,-5.293955920339377e-23,-0.0,0.00014880952949170023,-2.2893773348187096e-05,1.4684896419130378e-21,-4.251700738677755e-05,-1.2923610336358025e-22,-1.9141270627435824e-22,6.541078164445935e-06,-1.9814969515635966e-23,-2.3950116849653902e-23,-0.0,5.470938413054682e-05,2.964615315390051e-21,-2.3446878913091496e-05,-8.470329472543003e-22,-3.440282045553267e-23,-4.235164736271502e-22,-1.9814969515635966e-23,1.5631252381353988e-06,0.0,-0.0,0.00013130252773407847,4.235164736271502e-22,-1.750700357661117e-05,-3.751500480575487e-05,-6.924263672039977e-24,-5.293955920339377e-23,-2.3950116849653902e-23,0.0,5.002000762033276e-06,-0.0,0.00018601190822664648,-0.0,-0.0,-0.00018601190822664648,-0.0,-0.0,-0.0,-0.0,-0.0,2.6573128707241267e-05,14.0,16.0,9.0,0.018526379019021988,-0.0020058648660779,-0.0017798786284402013,-0.002941494807600975,6.200397183420137e-05,7.002801430644467e-05,0.0001190476177725941,4.863056165049784e-05,0.0001050420178216882,0.00013528138515539467,-0.0020058648660779,0.0005876124487258494,7.002801430644467e-05,0.0001190476177725941,-3.100198591710068e-05,-1.0773540452646557e-05,-1.8315018678549677e-05,1.2705494208814505e-21,-6.776263578034403e-21,-2.5351174535170903e-20,-0.0017798786284402013,7.002801430644467e-05,0.0004526810662355274,0.0001050420178216882,1.6544982975769466e-22,-9.337068149761762e-06,-5.169742311343609e-21,-2.0841669538640417e-05,-1.4005602679389995e-05,-1.938619257670489e-20,-0.002941494807600975,0.0001190476177725941,0.0001050420178216882,0.0013924547238275409,8.275616639246856e-23,-5.149829896995795e-22,-2.9761904443148524e-05,-8.470329472543003e-22,-2.626050445542205e-05,-0.00011595547402976081,6.200397183420137e-05,-3.100198591710068e-05,1.6544982975769466e-22,8.275616639246856e-23,2.384768094998435e-06,-2.3184861818160724e-23,-8.504365475833052e-23,1.488001819791979e-23,4.1847351305201294e-24,3.2870679588245303e-37,7.002801430644467e-05,-1.0773540452646557e-05,-9.337068149761762e-06,-5.149829896995795e-22,-2.3184861818160724e-23,1.4364720755111193e-06,-1.2097787826739426e-22,-2.117582368135751e-22,1.0587911840678754e-22,-4.68565171566038e-38,0.0001190476177725941,-1.8315018678549677e-05,-5.169742311343609e-21,-2.9761904443148524e-05,-8.504365475833052e-23,-1.2097787826739426e-22,4.578754669637419e-06,1.9236983752155014e-23,1.4527923953717452e-21,6.337793633792726e-21,4.863056165049784e-05,1.2705494208814505e-21,-2.0841669538640417e-05,-8.470329472543003e-22,1.488001819791979e-23,-2.117582368135751e-22,1.9236983752155014e-23,1.3894447192797088e-06,1.0587911840678754e-22,1.7962570148839411e-37,0.0001050420178216882,-6.776263578034403e-21,-1.4005602679389995e-05,-2.626050445542205e-05,4.1847351305201294e-24,1.0587911840678754e-22,1.4527923953717452e-21,1.0587911840678754e-22,3.5014006698474986e-06,4.846548144176223e-21,0.00013528138515539467,-2.5351174535170903e-20,-1.938619257670489e-20,-0.00011595547402976081,3.2870679588245303e-37,-4.68565171566038e-38,6.337793633792726e-21,1.7962570148839411e-37,4.846548144176223e-21,1.4494434253720101e-05,14.0,16.0,10.0,0.01690703071653843,-0.0018150185933336616,-0.0016104851383715868,-0.002434348687529564,5.5803571740398183e-05,6.302521069301292e-05,9.740259702084586e-05,4.376750803203322e-05,8.594346581958234e-05,0.000101461038866546,-0.0018150185933336616,0.0005303497309796512,6.302521069301292e-05,9.740259702084586e-05,-2.7901785870199092e-05,-9.69618577073561e-06,-1.4985014786361717e-05,-5.929230630780102e-21,2.117582368135751e-22,-0.0,-0.0016104851383715868,6.302521069301292e-05,0.00040855887345969677,8.594346581958234e-05,-1.266586991487187e-22,-8.403361789532937e-06,7.956459672865774e-22,-1.8757502402877435e-05,-1.1459129382274114e-05,-0.0,-0.002434348687529564,9.740259702084586e-05,8.594346581958234e-05,0.0010229062754660845,6.663015186108305e-23,1.183795521991488e-21,-2.1645020751748234e-05,0.0,-1.9098548364127055e-05,-7.60957773309201e-05,5.5803571740398183e-05,-2.7901785870199092e-05,-1.266586991487187e-22,6.663015186108305e-23,2.146291308235959e-06,-1.1976988609689846e-22,-2.310654055204676e-23,5.304129070573107e-23,1.1141647388844488e-23,-0.0,6.302521069301292e-05,-9.69618577073561e-06,-8.403361789532937e-06,1.183795521991488e-21,-1.1976988609689846e-22,1.2928247770105372e-06,-1.2240706703571403e-22,7.411538288475128e-22,-7.940933880509066e-23,-0.0,9.740259702084586e-05,-1.4985014786361717e-05,7.956459672865774e-22,-2.1645020751748234e-05,-2.310654055204676e-23,-1.2240706703571403e-22,3.3300034374406096e-06,-7.640713280344869e-38,5.877471754111438e-39,-0.0,4.376750803203322e-05,-5.929230630780102e-21,-1.8757502402877435e-05,0.0,5.304129070573107e-23,7.411538288475128e-22,-7.640713280344869e-38,1.250500190508319e-06,0.0,-0.0,8.594346581958234e-05,2.117582368135751e-22,-1.1459129382274114e-05,-1.9098548364127055e-05,1.1141647388844488e-23,-7.940933880509066e-23,5.877471754111438e-39,0.0,2.5464730697422056e-06,-0.0,0.000101461038866546,-0.0,-0.0,-7.60957773309201e-05,-0.0,-0.0,-0.0,-0.0,-0.0,8.455086572212167e-06,14.0,16.0,11.0,0.015549126081168652,-0.0016573958564549685,-0.00147058826405555,-0.0020481357350945473,5.0730519433273e-05,5.7295645092381164e-05,8.116882963804528e-05,3.97886433347594e-05,7.161955727497116e-05,7.804695633240044e-05,-0.0016573958564549685,0.00048327131662517786,5.7295645092381164e-05,8.116882963804528e-05,-2.53652597166365e-05,-8.81471441971371e-06,-1.2487512321968097e-05,2.710505431213761e-20,1.9058241313221758e-21,-8.976626692206251e-20,-0.00147058826405555,5.7295645092381164e-05,0.00037228528526611626,7.161955727497116e-05,2.2025616051436497e-20,-7.639418981852941e-06,-2.0036028977880174e-21,-1.7052276234608144e-05,-9.549274182063527e-06,-6.358764197128722e-20,-0.0020481357350945473,8.116882963804528e-05,7.161955727497116e-05,0.0007738462300039828,-7.677655862465362e-20,-1.154452279308289e-20,-1.6233765563811176e-05,-4.362219678359647e-20,-1.4323911273095291e-05,-5.203130058362149e-05,5.0730519433273e-05,-2.53652597166365e-05,2.2025616051436497e-20,-7.677655862465362e-20,1.9511737718858058e-06,1.7269687401290663e-22,2.166028373674614e-21,-1.2470396998316325e-21,6.499419949406123e-23,6.22099153077369e-21,5.7295645092381164e-05,-8.81471441971371e-06,-7.639418981852941e-06,-1.154452279308289e-20,1.7269687401290663e-22,1.1752953241739306e-06,-9.309974686932811e-25,-1.4293680984916318e-21,-6.352747104407253e-22,1.3048398539015382e-21,8.116882963804528e-05,-1.2487512321968097e-05,-2.0036028977880174e-21,-1.6233765563811176e-05,2.166028373674614e-21,-9.309974686932811e-25,2.4975024643936194e-06,-1.786751413249877e-36,4.0193089161024935e-22,-1.7858438907317347e-22,3.97886433347594e-05,2.710505431213761e-20,-1.7052276234608144e-05,-4.362219678359647e-20,-1.2470396998316325e-21,-1.4293680984916318e-21,-1.786751413249877e-36,1.1368183550075628e-06,9.529120656610879e-22,2.9125889668140902e-21,7.161955727497116e-05,1.9058241313221758e-21,-9.549274182063527e-06,-1.4323911273095291e-05,6.499419949406123e-23,-6.352747104407253e-22,4.0193089161024935e-22,9.529120656610879e-22,1.9098547454632353e-06,1.6310499183511186e-21,7.804695633240044e-05,-8.976626692206251e-20,-6.358764197128722e-20,-5.203130058362149e-05,6.22099153077369e-21,1.3048398539015382e-21,-1.7858438907317347e-22,2.9125889668140902e-21,1.6310499183511186e-21,5.203130058362149e-06,14.0,16.0,12.0,0.014393854886293411,-0.0015250029973685741,-0.0013530893484130502,-0.001747189206071198,4.650297705666162e-05,5.25210089108441e-05,6.868132186355069e-05,3.6472923966357484e-05,6.0601163568207994e-05,6.132260750746354e-05,-0.0015250029973685741,0.00044387925299815834,5.25210089108441e-05,6.868132186355069e-05,-2.325148852833081e-05,-8.080155566858593e-06,-1.0566356650087982e-05,1.2705494208814505e-21,0.0,-0.0,-0.0013530893484130502,5.25210089108441e-05,0.0003419348504394293,6.0601163568207994e-05,-2.860407370411982e-22,-7.002801339694997e-06,4.2603411373983217e-23,-1.5631252608727664e-05,-8.080155566858593e-06,-0.0,-0.001747189206071198,6.868132186355069e-05,6.0601163568207994e-05,0.0005997547414153814,-5.94021399796148e-22,-9.091792326627689e-23,-1.2487512321968097e-05,-8.470329472543003e-22,-1.1018393706763163e-05,-3.679356450447813e-05,4.650297705666162e-05,-2.325148852833081e-05,-2.860407370411982e-22,-5.94021399796148e-22,1.7885760144054075e-06,1.0699166471863884e-22,8.202264565747062e-23,-2.816663834148901e-23,8.116564610270023e-24,-0.0,5.25210089108441e-05,-8.080155566858593e-06,-7.002801339694997e-06,-9.091792326627689e-23,1.0699166471863884e-22,1.0773539997899206e-06,-6.554371132316823e-24,-1.5881867761018131e-22,0.0,-0.0,6.868132186355069e-05,-1.0566356650087982e-05,4.2603411373983217e-23,-1.2487512321968097e-05,8.202264565747062e-23,-6.554371132316823e-24,1.921155671880115e-06,0.0,-1.8367099231598242e-40,-0.0,3.6472923966357484e-05,1.2705494208814505e-21,-1.5631252608727664e-05,-8.470329472543003e-22,-2.816663834148901e-23,-1.5881867761018131e-22,0.0,1.0420834541946533e-06,1.0587911840678754e-22,-0.0,6.0601163568207994e-05,0.0,-8.080155566858593e-06,-1.1018393706763163e-05,8.116564610270023e-24,0.0,-1.8367099231598242e-40,1.0587911840678754e-22,1.469119069952285e-06,-0.0,6.132260750746354e-05,-0.0,-0.0,-3.679356450447813e-05,-0.0,-0.0,-0.0,-0.0,-0.0,3.3448693557147635e-06,14.0,16.0,13.0,0.013398868963122368,-0.0014122235588729382,-0.0012530011590570211,-0.0015081032179296017,4.292582525522448e-05,4.848093158216216e-05,5.886970029678196e-05,3.3667314710328355e-05,5.1943854487035424e-05,4.9058086005970836e-05,-0.0014122235588729382,0.0004104313557036221,4.848093158216216e-05,5.886970029678196e-05,-2.146291262761224e-05,-7.45860461393022e-06,-9.056877388502471e-06,-1.3129010682441655e-20,-1.6079129334479288e-20,1.4823076576950256e-20,-0.0012530011590570211,4.848093158216216e-05,0.00031616492196917534,5.1943854487035424e-05,-2.6003160878924614e-20,-6.464123998739524e-06,1.0587911840678754e-20,-1.4428848771785852e-05,-6.925847173988586e-06,5.378659215064807e-20,-0.0015081032179296017,5.886970029678196e-05,5.1943854487035424e-05,0.0004743418248835951,-9.671216391798137e-21,-2.6342747600946042e-20,-9.811617019295227e-06,5.3249490207985466e-20,-8.65730908117257e-06,-2.6758954845718108e-05,4.292582525522448e-05,-2.146291262761224e-05,-2.6003160878924614e-20,-9.671216391798137e-21,1.6509932265762473e-06,1.0977287525044094e-21,5.819320622474253e-22,7.813962868172526e-22,7.481935478350582e-22,-1.4747629667539429e-22,4.848093158216216e-05,-7.45860461393022e-06,-6.464123998739524e-06,-2.6342747600946042e-20,1.0977287525044094e-21,9.94480615190696e-07,1.1503880073400728e-21,1.0058516248644817e-21,1.0631219673286664e-21,6.998377122531054e-22,5.886970029678196e-05,-9.056877388502471e-06,1.0587911840678754e-20,-9.811617019295227e-06,5.819320622474253e-22,1.1503880073400728e-21,1.5094794889591867e-06,-1.0918784085699965e-21,-7.411538288475128e-22,-3.494010907423989e-21,3.3667314710328355e-05,-1.3129010682441655e-20,-1.4428848771785852e-05,5.3249490207985466e-20,7.813962868172526e-22,1.0058516248644817e-21,-1.0918784085699965e-21,9.61923205977655e-07,-9.529120656610879e-22,-3.282252670610414e-21,5.1943854487035424e-05,-1.6079129334479288e-20,-6.925847173988586e-06,-8.65730908117257e-06,7.481935478350582e-22,1.0631219673286664e-21,-7.411538288475128e-22,-9.529120656610879e-22,1.1543078244358185e-06,-1.7999450129153882e-21,4.9058086005970836e-05,1.4823076576950256e-20,5.378659215064807e-20,-2.6758954845718108e-05,-1.4747629667539429e-22,6.998377122531054e-22,-3.494010907423989e-21,-3.282252670610414e-21,-1.7999450129153882e-21,2.2299129796010675e-06,14.0,16.0,14.0,0.012532887980341911,-0.0013149947626516223,-0.0011667166836559772,-0.0013149947626516223,3.98596930608619e-05,4.501800867728889e-05,5.10204081365373e-05,3.126250521745533e-05,4.501800867728889e-05,3.98596930608619e-05,-0.0013149947626516223,0.00038167551974765956,4.501800867728889e-05,5.10204081365373e-05,-1.992984653043095e-05,-6.925847173988586e-06,-7.849293979234062e-06,1.376428539288238e-20,1.9145169594547985e-20,-2.117582368135751e-21,-0.0011667166836559772,4.501800867728889e-05,0.00029401047504507005,4.501800867728889e-05,2.4714397328695658e-20,-6.002400823490461e-06,-4.870439446712227e-21,-1.3398216651694383e-05,-6.002400823490461e-06,-2.922263668027336e-20,-0.0013149947626516223,5.10204081365373e-05,4.501800867728889e-05,0.00038167551974765956,1.7094102564301727e-20,2.6926753269279818e-20,-7.849293979234062e-06,-4.3388757367446053e-20,-6.925847173988586e-06,-1.992984653043095e-05,3.98596930608619e-05,-1.992984653043095e-05,2.4714397328695658e-20,1.7094102564301727e-20,1.5330651876865886e-06,-9.218489698893425e-22,-7.843473081786013e-22,-7.368603555520952e-22,-7.982875027375898e-22,-2.9484881712098494e-22,4.501800867728889e-05,-6.925847173988586e-06,-6.002400823490461e-06,2.6926753269279818e-20,-9.218489698893425e-22,9.234462936547061e-07,-1.0434492657218434e-21,-1.0587911840678754e-21,-1.0709454480245414e-21,-7.759512533050551e-22,5.10204081365373e-05,-7.849293979234062e-06,-4.870439446712227e-21,-7.849293979234062e-06,-7.843473081786013e-22,-1.0434492657218434e-21,1.2075836366420845e-06,8.271806125530277e-22,2.6469779601696886e-22,2.117582368135751e-21,3.126250521745533e-05,1.376428539288238e-20,-1.3398216651694383e-05,-4.3388757367446053e-20,-7.368603555520952e-22,-1.0587911840678754e-21,8.271806125530277e-22,8.932144055506797e-07,1.164670302474663e-21,2.3161057151484775e-21,4.501800867728889e-05,1.9145169594547985e-20,-6.002400823490461e-06,-6.925847173988586e-06,-7.982875027375898e-22,-1.0709454480245414e-21,2.6469779601696886e-22,1.164670302474663e-21,9.234462936547061e-07,1.5881867761018131e-22,3.98596930608619e-05,-2.117582368135751e-21,-2.922263668027336e-20,-1.992984653043095e-05,-2.9484881712098494e-22,-7.759512533050551e-22,2.117582368135751e-21,2.3161057151484775e-21,1.5881867761018131e-22,1.5330651876865886e-06,14.0,16.0,15.0,0.011772292666137218,-0.0012303045950829983,-0.0010915616294369102,-0.0011567751644179225,3.720238237292506e-05,4.201680712867528e-05,4.4642856664722785e-05,2.9178338081692345e-05,3.939075759262778e-05,3.282563193351962e-05,-0.0012303045950829983,0.00035668833879753947,4.201680712867528e-05,4.4642856664722785e-05,-1.860119118646253e-05,-6.464123998739524e-06,-6.868132004456129e-06,-3.049318610115481e-20,-3.4959647985037186e-20,-3.049318610115481e-20,-0.0010915616294369102,4.201680712867528e-05,0.00027475989190861583,3.939075759262778e-05,-3.0731401192873013e-20,-5.6022408898570575e-06,-3.48342299558331e-20,-1.250500190508319e-05,-5.25210089108441e-06,1.1858461261560205e-20,-0.0011567751644179225,4.4642856664722785e-05,3.939075759262778e-05,0.00031170641887001693,-2.6976610288231745e-20,-3.1971034738360294e-20,-6.377551017067162e-06,1.9676403724740292e-20,-5.627251084661111e-06,-1.5150290892051999e-05,3.720238237292506e-05,-1.860119118646253e-05,-3.0731401192873013e-20,-2.6976610288231745e-20,1.4308608342616935e-06,1.8304408356547455e-21,1.6723739109328036e-21,7.171245955599525e-22,8.183598097245615e-22,5.52947217375041e-22,4.201680712867528e-05,-6.464123998739524e-06,-5.6022408898570575e-06,-3.1971034738360294e-20,1.8304408356547455e-21,8.61883222569304e-07,1.2463925562103127e-21,1.7999450129153882e-21,1.450677389865088e-21,7.853900182122352e-22,4.4642856664722785e-05,-6.868132004456129e-06,-3.48342299558331e-20,-6.377551017067162e-06,1.6723739109328036e-21,1.2463925562103127e-21,9.811617474042578e-07,8.867376166568457e-22,1.6278914455043585e-21,2.329340604949326e-21,2.9178338081692345e-05,-3.049318610115481e-20,-1.250500190508319e-05,1.9676403724740292e-20,7.171245955599525e-22,1.7999450129153882e-21,8.867376166568457e-22,8.336667747244064e-07,-3.705769144237564e-22,-1.6808310047077522e-21,3.939075759262778e-05,-3.4959647985037186e-20,-5.25210089108441e-06,-5.627251084661111e-06,8.183598097245615e-22,1.450677389865088e-21,1.6278914455043585e-21,-3.705769144237564e-22,7.503001029363077e-07,1.0587911840678754e-21,3.282563193351962e-05,-3.049318610115481e-20,1.1858461261560205e-20,-1.5150290892051999e-05,5.52947217375041e-22,7.853900182122352e-22,2.329340604949326e-21,-1.6808310047077522e-21,1.0587911840678754e-21,1.0821636351465713e-06,14.0,16.0,16.0,0.011098909191787243,-0.0011558724800124764,-0.0010255113011226058,-0.0010255113011226058,3.487723370199092e-05,3.939075759262778e-05,3.939075759262778e-05,2.735469206527341e-05,3.4756551031023264e-05,2.735469206527341e-05,-0.0011558724800124764,0.0003347740857861936,3.939075759262778e-05,3.939075759262778e-05,-1.743861685099546e-05,-6.06011644777027e-06,-6.06011644777027e-06,8.470329472543003e-22,-6.141827660238755e-22,1.2705494208814505e-21,-0.0010255113011226058,3.939075759262778e-05,0.0002578770508989692,3.4756551031023264e-05,-5.88383896844851e-23,-5.25210089108441e-06,0.0,-1.1723439456545748e-05,-4.634206561604515e-06,-6.352747104407253e-22,-0.0010255113011226058,3.939075759262778e-05,3.4756551031023264e-05,0.0002578770508989692,3.6456039220649333e-22,3.8001373557766603e-22,-5.25210089108441e-06,3.1726082244396978e-22,-4.634206561604515e-06,-1.1723439456545748e-05,3.487723370199092e-05,-1.743861685099546e-05,-5.88383896844851e-23,3.6456039220649333e-22,1.341432039225765e-06,-7.642366436189741e-23,-4.9125369394995866e-23,2.965195614093706e-23,1.0347021488128121e-23,-7.620853094899097e-24,3.939075759262778e-05,-6.06011644777027e-06,-5.25210089108441e-06,3.8001373557766603e-22,-7.642366436189741e-23,8.080154998424405e-07,-5.406173592917601e-23,-1.5881867761018131e-22,1.9640702253063592e-23,-1.1725406036429847e-23,3.939075759262778e-05,-6.06011644777027e-06,0.0,-5.25210089108441e-06,-4.9125369394995866e-23,-5.406173592917601e-23,8.080154998424405e-07,-1.3234889800848443e-23,5.293955920339377e-23,-1.5881867761018131e-22,2.735469206527341e-05,8.470329472543003e-22,-1.1723439456545748e-05,3.1726082244396978e-22,2.965195614093706e-23,-1.5881867761018131e-22,-1.3234889800848443e-23,7.815626190676994e-07,0.0,-2.6469779601696886e-23,3.4756551031023264e-05,-6.141827660238755e-22,-4.634206561604515e-06,-4.634206561604515e-06,1.0347021488128121e-23,1.9640702253063592e-23,5.293955920339377e-23,0.0,6.178942157930578e-07,1.3234889800848443e-22,2.735469206527341e-05,1.2705494208814505e-21,-6.352747104407253e-22,-1.1723439456545748e-05,-7.620853094899097e-24,-1.1725406036429847e-23,-1.5881867761018131e-22,-2.6469779601696886e-23,1.3234889800848443e-22,7.815626190676994e-07,15.0,3.0,3.0,0.15626361966133118,-0.022549020126461983,-0.07916666567325592,-0.07916666567325592,0.0008169934735633433,0.004166666883975267,0.004166666883975267,0.011111111380159855,0.01666666753590107,0.011111111380159855,-0.022549020126461983,0.0068663363344967365,0.004166666883975267,0.004166666883975267,-0.0003770739131141454,-0.0005952381179668009,-0.0005952381179668009,1.734723475976807e-18,0.0,1.951563910473908e-18,-0.07916666567325592,0.004166666883975267,0.19027778506278992,0.01666666753590107,1.0993756634494475e-18,-0.004166666883975267,-6.884683795282953e-18,-0.06666667014360428,-0.01666666753590107,-2.922357635744922e-17,-0.07916666567325592,0.004166666883975267,0.01666666753590107,0.19027778506278992,1.1306061776691167e-18,-6.928668297174848e-18,-0.004166666883975267,-1.3192388433794856e-17,-0.01666666753590107,-0.06666667014360428,0.0008169934735633433,-0.0003770739131141454,1.0993756634494475e-18,1.1306061776691167e-18,2.6933850676869042e-05,-5.3981955409226904e-20,-6.66359059261217e-20,-3.1947915040239437e-19,-7.371149256362666e-20,-2.739336294476414e-19,0.004166666883975267,-0.0005952381179668009,-0.004166666883975267,-6.928668297174848e-18,-5.3981955409226904e-20,0.0005952381179668009,-3.8873472440377444e-20,-1.0653515535060335e-18,6.746831457864e-19,3.314881016667721e-18,0.004166666883975267,-0.0005952381179668009,-6.884683795282953e-18,-0.004166666883975267,-6.66359059261217e-20,-3.8873472440377444e-20,0.0005952381179668009,3.307031279449746e-18,5.963111948670274e-19,-1.5178830414797062e-18,0.011111111380159855,1.734723475976807e-18,-0.06666667014360428,-1.3192388433794856e-17,-3.1947915040239437e-19,-1.0653515535060335e-18,3.307031279449746e-18,0.03333333507180214,-3.254695644811577e-17,1.1479758124798727e-17,0.01666666753590107,0.0,-0.01666666753590107,-0.01666666753590107,-7.371149256362666e-20,6.746831457864e-19,5.963111948670274e-19,-3.254695644811577e-17,0.01666666753590107,-1.734723475976807e-17,0.011111111380159855,1.951563910473908e-18,-2.922357635744922e-17,-0.06666667014360428,-2.739336294476414e-19,3.314881016667721e-18,-1.5178830414797062e-18,1.1479758124798727e-17,-1.734723475976807e-17,0.03333333507180214,15.0,3.0,4.0,0.12851715087890625,-0.017536764964461327,-0.06187500059604645,-0.050833333283662796,0.0006127451197244227,0.0031250000465661287,0.0024999999441206455,0.008333333767950535,0.009999999776482582,0.0055555556900799274,-0.017536764964461327,0.005239037796854973,0.0031250000465661287,0.0024999999441206455,-0.00028280544211156666,-0.00044642857392318547,-0.0003571428533177823,-8.635371029901421e-18,-2.439454888092385e-18,-2.0599841277224584e-18,-0.06187500059604645,0.0031250000465661287,0.14520832896232605,0.009999999776482582,-7.404862423943942e-19,-0.0031250000465661287,-2.656295322589486e-18,-0.05000000074505806,-0.009999999776482582,-2.2985086056692694e-17,-0.050833333283662796,0.0024999999441206455,0.009999999776482582,0.07277777791023254,-7.026928254959409e-19,-6.1461566784706025e-18,-0.0016666667070239782,-3.56913511978381e-17,-0.006666666828095913,-0.01666666753590107,0.0006127451197244227,-0.00028280544211156666,-7.404862423943942e-19,-7.026928254959409e-19,2.0200388462399133e-05,9.411782986456958e-21,1.536989789181036e-20,2.973103997932435e-19,6.58560749412888e-20,1.6919901881589754e-19,0.0031250000465661287,-0.00044642857392318547,-0.0031250000465661287,-6.1461566784706025e-18,9.411782986456958e-21,0.00044642857392318547,1.8250897525733517e-19,3.5233369416808314e-18,1.1760477582100236e-18,1.056712375790953e-18,0.0024999999441206455,-0.0003571428533177823,-2.656295322589486e-18,-0.0016666667070239782,1.536989789181036e-20,1.8250897525733517e-19,0.0002380952355451882,4.977862807925074e-19,1.3552527156068805e-19,-1.4094628242311558e-18,0.008333333767950535,-8.635371029901421e-18,-0.05000000074505806,-3.56913511978381e-17,2.973103997932435e-19,3.5233369416808314e-18,4.977862807925074e-19,0.02500000037252903,1.0482262678482256e-17,5.024891437868741e-18,0.009999999776482582,-2.439454888092385e-18,-0.009999999776482582,-0.006666666828095913,6.58560749412888e-20,1.1760477582100236e-18,1.3552527156068805e-19,1.0482262678482256e-17,0.006666666828095913,2.3852447794681098e-18,0.0055555556900799274,-2.0599841277224584e-18,-2.2985086056692694e-17,-0.01666666753590107,1.6919901881589754e-19,1.056712375790953e-18,-1.4094628242311558e-18,5.024891437868741e-18,2.3852447794681098e-18,0.0055555556900799274,15.0,3.0,5.0,0.10927404463291168,-0.014362744987010956,-0.050833333283662796,-0.035476189106702805,0.0004901961074210703,0.0024999999441206455,0.0016666667070239782,0.006666666828095913,0.006666666828095913,0.0031746032182127237,-0.014362744987010956,0.004238849505782127,0.0024999999441206455,0.0016666667070239782,-0.0002262443449581042,-0.0003571428533177823,-0.0002380952355451882,1.5696241193730872e-18,-5.117965490200478e-19,1.2817769501307859e-18,-0.050833333283662796,0.0024999999441206455,0.11749999970197678,0.006666666828095913,3.7454298696700674e-19,-0.0024999999441206455,-1.329416504655611e-19,-0.03999999910593033,-0.006666666828095913,-1.0397326946004699e-17,-0.035476189106702805,0.0016666667070239782,0.006666666828095913,0.03678571432828903,4.0657581468206416e-20,1.2573596059616377e-20,-0.0008333333535119891,-2.8639775442166446e-17,-0.0033333334140479565,-0.0063492064364254475,0.0004901961074210703,-0.0002262443449581042,3.7454298696700674e-19,4.0657581468206416e-20,1.6160311133717187e-05,0.0,0.0,-2.173838663101541e-19,4.366489352037098e-20,-2.2058914917853158e-20,0.0024999999441206455,-0.0003571428533177823,-0.0024999999441206455,1.2573596059616377e-20,0.0,0.0003571428533177823,6.776263578034403e-21,9.188052376564186e-19,-6.205291820462018e-20,-1.4735224179783442e-20,0.0016666667070239782,-0.0002380952355451882,-1.329416504655611e-19,-0.0008333333535119891,0.0,6.776263578034403e-21,0.0001190476177725941,4.3341178326352915e-20,2.3129646906427634e-20,-2.3978200444292354e-19,0.006666666828095913,1.5696241193730872e-18,-0.03999999910593033,-2.8639775442166446e-17,-2.173838663101541e-19,9.188052376564186e-19,4.3341178326352915e-20,0.019999999552965164,7.785291576451088e-18,5.154683520603824e-18,0.006666666828095913,-5.117965490200478e-19,-0.006666666828095913,-0.0033333334140479565,4.366489352037098e-20,-6.205291820462018e-20,2.3129646906427634e-20,7.785291576451088e-18,0.0033333334140479565,-2.6893643426557823e-20,0.0031746032182127237,1.2817769501307859e-18,-1.0397326946004699e-17,-0.0063492064364254475,-2.2058914917853158e-20,-1.4735224179783442e-20,-2.3978200444292354e-19,5.154683520603824e-18,-2.6893643426557823e-20,0.0015873016091063619,15.0,3.0,6.0,0.09509609639644623,-0.012167367152869701,-0.0431547611951828,-0.02619047649204731,0.00040849673678167164,0.0020833334419876337,0.0011904762359336019,0.0055555556900799274,0.004761904943734407,0.0019841270986944437,-0.012167367152869701,0.0035607190802693367,0.0020833334419876337,0.0011904762359336019,-0.0001885369565570727,-0.00029761905898340046,-0.0001700680295471102,1.017335683501285e-18,1.8001061838878653e-19,5.355810418594561e-19,-0.0431547611951828,0.0020833334419876337,0.0987103208899498,0.004761904943734407,3.7474088992856006e-19,-0.0020833334419876337,3.926097424561586e-20,-0.03333333507180214,-0.004761904943734407,-9.516197613900963e-18,-0.02619047649204731,0.0011904762359336019,0.004761904943734407,0.021388888359069824,9.486769009248164e-20,2.677574595546201e-19,-0.0004761904710903764,-1.420705366808609e-17,-0.0019047618843615055,-0.0029761905316263437,0.00040849673678167164,-0.0001885369565570727,3.7474088992856006e-19,9.486769009248164e-20,1.3466925338434521e-05,-2.202285662861181e-20,-5.082197683525802e-21,-1.128315456059016e-19,-3.684770498405332e-36,-1.4470410061492833e-20,0.0020833334419876337,-0.00029761905898340046,-0.0020833334419876337,2.677574595546201e-19,-2.202285662861181e-20,0.00029761905898340046,-4.0657581468206416e-20,-2.2332072251220616e-19,-1.8001061838878653e-19,5.83447838408186e-20,0.0011904762359336019,-0.0001700680295471102,3.926097424561586e-20,-0.0004761904710903764,-5.082197683525802e-21,-4.0657581468206416e-20,6.80272132740356e-05,1.2647866861983408e-19,1.3216940627790896e-20,-1.033023861751995e-19,0.0055555556900799274,1.017335683501285e-18,-0.03333333507180214,-1.420705366808609e-17,-1.128315456059016e-19,-2.2332072251220616e-19,1.2647866861983408e-19,0.01666666753590107,-8.751079535527176e-18,4.456191118258427e-18,0.004761904943734407,1.8001061838878653e-19,-0.004761904943734407,-0.0019047618843615055,-3.684770498405332e-36,-1.8001061838878653e-19,1.3216940627790896e-20,-8.751079535527176e-18,0.0019047618843615055,1.7662105195839444e-19,0.0019841270986944437,5.355810418594561e-19,-9.516197613900963e-18,-0.0029761905316263437,-1.4470410061492833e-20,5.83447838408186e-20,-1.033023861751995e-19,4.456191118258427e-18,1.7662105195839444e-19,0.0005952381179668009,15.0,3.0,7.0,0.084198959171772,-0.010556722991168499,-0.03750000149011612,-0.02013888955116272,0.00035014006425626576,0.0017857142956927419,0.0008928571478463709,0.004761904943734407,0.0035714285913854837,0.0013227512827143073,-0.010556722991168499,0.0030702666845172644,0.0017857142956927419,0.0008928571478463709,-0.00016160310769919306,-0.00025510202976875007,-0.00012755101488437504,-2.6020852139652106e-18,5.421010862427522e-19,1.81603863891322e-18,-0.03750000149011612,0.0017857142956927419,0.08511904627084732,0.0035714285913854837,2.400026807207162e-19,-0.0017857142956927419,1.0563239110957829e-18,-0.02857142873108387,-0.0035714285913854837,4.662069341687669e-18,-0.02013888955116272,0.0008928571478463709,0.0035714285913854837,0.013591269962489605,3.5236570605778894e-19,1.9278469879507876e-18,-0.00029761905898340046,3.469446951953614e-18,-0.0011904762359336019,-0.0015873016091063619,0.00035014006425626576,-0.00016160310769919306,2.400026807207162e-19,3.5236570605778894e-19,1.154307847173186e-05,-2.668153783851046e-20,-1.079967007749233e-20,-1.3342747205700682e-20,-1.093476305024773e-20,-4.020386967104681e-20,0.0017857142956927419,-0.00025510202976875007,-0.0017857142956927419,1.9278469879507876e-18,-2.668153783851046e-20,0.00025510202976875007,-7.877406409464993e-20,2.1277467635028025e-18,1.7618285302889447e-19,-2.210755992333724e-19,0.0008928571478463709,-0.00012755101488437504,1.0563239110957829e-18,-0.00029761905898340046,-1.079967007749233e-20,-7.877406409464993e-20,4.251700738677755e-05,5.543781832892081e-21,-1.6350628429212518e-19,-2.756361222446404e-19,0.004761904943734407,-2.6020852139652106e-18,-0.02857142873108387,3.469446951953614e-18,-1.3342747205700682e-20,2.1277467635028025e-18,5.543781832892081e-21,0.014285714365541935,3.0357660829594124e-18,-9.486769009248164e-19,0.0035714285913854837,5.421010862427522e-19,-0.0035714285913854837,-0.0011904762359336019,-1.093476305024773e-20,1.7618285302889447e-19,-1.6350628429212518e-19,3.0357660829594124e-18,0.0011904762359336019,-3.049318610115481e-19,0.0013227512827143073,1.81603863891322e-18,4.662069341687669e-18,-0.0015873016091063619,-4.020386967104681e-20,-2.210755992333724e-19,-2.756361222446404e-19,-9.486769009248164e-19,-3.049318610115481e-19,0.00026455026818439364,15.0,3.0,8.0,0.07555487751960754,-0.009323937818408012,-0.03315972164273262,-0.01597222313284874,0.00030637255986221135,0.0015625000232830644,0.0006944444612599909,0.004166666883975267,0.0027777778450399637,0.0009259259095415473,-0.009323937818408012,0.0026988841127604246,0.0015625000232830644,0.0006944444612599909,-0.00014140272105578333,-0.00022321428696159273,-9.920635056914762e-05,-2.927345865710862e-18,-5.421010862427522e-20,-5.421010862427522e-20,-0.03315972164273262,0.0015625000232830644,0.07482638955116272,0.0027777778450399637,-1.9500505059950598e-19,-0.0015625000232830644,-5.597465030697334e-19,-0.02500000037252903,-0.0027777778450399637,-2.168404344971009e-18,-0.01597222313284874,0.0006944444612599909,0.0027777778450399637,0.009193121455609798,2.710505431213761e-20,-5.183841637196318e-19,-0.00019841270113829523,-6.5052130349130266e-18,-0.0007936508045531809,-0.0009259259095415473,0.00030637255986221135,-0.00014140272105578333,-1.9500505059950598e-19,2.710505431213761e-20,1.0100194231199566e-05,5.505714157152952e-21,3.282252670610414e-21,8.46019844874379e-20,1.737248721062025e-21,-6.4712209362130836e-21,0.0015625000232830644,-0.00022321428696159273,-0.0015625000232830644,-5.183841637196318e-19,5.505714157152952e-21,0.00022321428696159273,1.8211208365967457e-20,9.622294280808852e-19,2.0328790734103208e-20,3.9387032047324966e-20,0.0006944444612599909,-9.920635056914762e-05,-5.597465030697334e-19,-0.00019841270113829523,3.282252670610414e-21,1.8211208365967457e-20,2.8344671591185033e-05,2.205437996476832e-19,-1.0757360273836382e-20,2.423454048494827e-20,0.004166666883975267,-2.927345865710862e-18,-0.02500000037252903,-6.5052130349130266e-18,8.46019844874379e-20,9.622294280808852e-19,2.205437996476832e-19,0.012500000186264515,-1.734723475976807e-18,8.063753657860939e-19,0.0027777778450399637,-5.421010862427522e-20,-0.0027777778450399637,-0.0007936508045531809,1.737248721062025e-21,2.0328790734103208e-20,-1.0757360273836382e-20,-1.734723475976807e-18,0.0007936508045531809,4.0657581468206416e-20,0.0009259259095415473,-5.421010862427522e-20,-2.168404344971009e-18,-0.0009259259095415473,-6.4712209362130836e-21,3.9387032047324966e-20,2.423454048494827e-20,8.063753657860939e-19,4.0657581468206416e-20,0.00013227513409219682,15.0,3.0,9.0,0.06852726638317108,-0.008349672891199589,-0.029722223058342934,-0.012979798018932343,0.00027233114815317094,0.0013888889225199819,0.0005555555690079927,0.003703703638166189,0.002222222276031971,0.0006734006456099451,-0.008349672891199589,0.0024078264832496643,0.0013888889225199819,0.0005555555690079927,-0.0001256913092220202,-0.00019841270113829523,-7.936507608974352e-05,-4.933119884809045e-18,-5.285485590866834e-19,-4.586613616017852e-19,-0.029722223058342934,0.0013888889225199819,0.06675925850868225,0.002222222276031971,-9.911800257372052e-19,-0.0013888889225199819,-1.4476106621726939e-19,-0.02222222276031971,-0.002222222276031971,-9.031198252908818e-19,-0.012979798018932343,0.0005555555690079927,0.002222222276031971,0.006515752989798784,-3.3506685205807333e-19,-9.486769009248164e-20,-0.00013888889225199819,-4.6100860032723866e-18,-0.0005555555690079927,-0.0005772005533799529,0.00027233114815317094,-0.0001256913092220202,-9.911800257372052e-19,-3.3506685205807333e-19,8.977950528787915e-06,2.741818741042868e-20,1.0719982857700209e-20,3.180611301879312e-19,3.896861436669238e-20,2.816797170574545e-20,0.0013888889225199819,-0.00019841270113829523,-0.0013888889225199819,-9.486769009248164e-20,2.741818741042868e-20,0.00019841270113829523,1.6376444219142415e-20,3.2526065174565133e-19,0.0,1.1706722985077718e-34,0.0005555555690079927,-7.936507608974352e-05,-1.4476106621726939e-19,-0.00013888889225199819,1.0719982857700209e-20,1.6376444219142415e-20,1.984126902243588e-05,1.5672578141345144e-20,2.8310238794143095e-22,1.6077434583575834e-20,0.003703703638166189,-4.933119884809045e-18,-0.02222222276031971,-4.6100860032723866e-18,3.180611301879312e-19,3.2526065174565133e-19,1.5672578141345144e-20,0.011111111380159855,2.168404344971009e-19,5.446981748722273e-19,0.002222222276031971,-5.285485590866834e-19,-0.002222222276031971,-0.0005555555690079927,3.896861436669238e-20,0.0,2.8310238794143095e-22,2.168404344971009e-19,0.0005555555690079927,-4.6569121419870394e-20,0.0006734006456099451,-4.586613616017852e-19,-9.031198252908818e-19,-0.0005772005533799529,2.816797170574545e-20,1.1706722985077718e-34,1.6077434583575834e-20,5.446981748722273e-19,-4.6569121419870394e-20,7.215006917249411e-05,15.0,3.0,10.0,0.06269979476928711,-0.007560160476714373,-0.026931818574666977,-0.010757575742900372,0.00024509805371053517,0.0012499999720603228,0.00045454545761458576,0.0033333334140479565,0.001818181830458343,0.0005050505278632045,-0.007560160476714373,0.002173537155613303,0.0012499999720603228,0.00045454545761458576,-0.0001131221724790521,-0.00017857142665889114,-6.49350622552447e-05,-5.3919970888519184e-18,-4.641950448034001e-19,-1.7823199912603853e-19,-0.026931818574666977,0.0012499999720603228,0.06026514992117882,0.001818181830458343,-8.677841170886884e-19,-0.0012499999720603228,1.6093075405736476e-19,-0.019999999552965164,-0.001818181830458343,-5.1516033067978295e-19,-0.010757575742900372,0.00045454545761458576,0.001818181830458343,0.004789562430232763,-3.1305061287436195e-19,-7.82793519272064e-20,-0.00010101010411744937,-3.595608538980202e-18,-0.0004040404164697975,-0.0003787878667935729,0.00024509805371053517,-0.0001131221724790521,-8.677841170886884e-19,-3.1305061287436195e-19,8.080155566858593e-06,2.1718744968876395e-20,1.3779360436428733e-20,2.8706478562979687e-19,3.1316156493636916e-20,2.0659965093918457e-20,0.0012499999720603228,-0.00017857142665889114,-0.0012499999720603228,-7.82793519272064e-20,2.1718744968876395e-20,0.00017857142665889114,-7.623296525288703e-21,1.373090038335974e-18,1.3248946701383016e-19,1.0375380353444213e-34,0.00045454545761458576,-6.49350622552447e-05,1.6093075405736476e-19,-0.00010101010411744937,1.3779360436428733e-20,-7.623296525288703e-21,1.4430014743993524e-05,1.9267748309518894e-34,-2.371569790807292e-20,-2.466833693950838e-20,0.0033333334140479565,-5.3919970888519184e-18,-0.019999999552965164,-3.595608538980202e-18,2.8706478562979687e-19,1.373090038335974e-18,1.9267748309518894e-34,0.009999999776482582,1.4547509417818727e-33,3.9951207999177344e-19,0.001818181830458343,-4.641950448034001e-19,-0.001818181830458343,-0.0004040404164697975,3.1316156493636916e-20,1.3248946701383016e-19,-2.371569790807292e-20,1.4547509417818727e-33,0.0004040404164697975,-6.308085167443071e-20,0.0005050505278632045,-1.7823199912603853e-19,-5.1516033067978295e-19,-0.0003787878667935729,2.0659965093918457e-20,1.0375380353444213e-34,-2.466833693950838e-20,3.9951207999177344e-19,-6.308085167443071e-20,4.2087540350621566e-05,15.0,3.0,11.0,0.057788290083408356,-0.006907308474183083,-0.024621212854981422,-0.00906177144497633,0.0002228163939435035,0.0011363636003807187,0.0003787878667935729,0.0030303029343485832,0.0015151514671742916,0.0003885003970935941,-0.006907308474183083,0.001980862347409129,0.0011363636003807187,0.0003787878667935729,-0.00010283834126312286,-0.00016233765927609056,-5.411255551734939e-05,-4.0367063229368605e-18,-3.482204972131326e-19,-2.567948865952431e-19,-0.024621212854981422,0.0011363636003807187,0.054924242198467255,0.0015151514671742916,-7.6870519879891105e-19,-0.0011363636003807187,1.09660264384344e-19,-0.0181818176060915,-0.0015151514671742916,-6.0385089445166e-19,-0.00906177144497633,0.0003787878667935729,0.0015151514671742916,0.003625356126576662,-2.4923510203136197e-19,1.589462605261448e-20,-7.575757626909763e-05,-3.0192545239570883e-18,-0.0003030303050763905,-0.0002590002550277859,0.0002228163939435035,-0.00010283834126312286,-7.6870519879891105e-19,-2.4923510203136197e-19,7.3455958045087755e-06,1.6204414885538394e-20,9.288496724476044e-21,2.6096798693617897e-19,2.6096798693617897e-20,1.5613468654877414e-20,0.0011363636003807187,-0.00016233765927609056,-0.0011363636003807187,1.589462605261448e-20,1.6204414885538394e-20,0.00016233765927609056,-7.623296525288703e-21,3.831548160230846e-19,3.8315480956073606e-20,4.3416975683117347e-35,0.0003787878667935729,-5.411255551734939e-05,1.09660264384344e-19,-7.575757626909763e-05,9.288496724476044e-21,-7.623296525288703e-21,1.0822510375874117e-05,3.9732021298480255e-34,-1.1090029859544049e-20,7.64126427759829e-21,0.0030303029343485832,-4.0367063229368605e-18,-0.0181818176060915,-3.0192545239570883e-18,2.6096798693617897e-19,3.831548160230846e-19,3.9732021298480255e-34,0.00909090880304575,9.527570894536726e-34,3.0192544722583e-19,0.0015151514671742916,-3.482204972131326e-19,-0.0015151514671742916,-0.0003030303050763905,2.6096798693617897e-20,3.8315480956073606e-20,-1.1090029859544049e-20,9.527570894536726e-34,0.0003030303050763905,4.376186101907943e-35,0.0003885003970935941,-2.567948865952431e-19,-6.0385089445166e-19,-0.0002590002550277859,1.5613468654877414e-20,4.3416975683117347e-35,7.64126427759829e-21,3.0192544722583e-19,4.376186101907943e-35,2.590002623037435e-05,15.0,3.0,12.0,0.053592003881931305,-0.006358408834785223,-0.02267628163099289,-0.0077380952425301075,0.00020424836839083582,0.0010416667209938169,0.00032051283051259816,0.0027777778450399637,0.0012820513220503926,0.0003052503161597997,-0.006358408834785223,0.0018196060555055737,0.0010416667209938169,0.00032051283051259816,-9.426847827853635e-05,-0.00014880952949170023,-4.578754669637419e-05,-3.700314301688083e-18,-2.507217523872729e-19,-1.2536087619363645e-19,-0.02267628163099289,0.0010416667209938169,0.05045406147837639,0.0012820513220503926,-7.9761790124341845e-19,-0.0010416667209938169,2.710505431213761e-20,-0.01666666753590107,-0.0012820513220503926,-4.607859233063394e-19,-0.0077380952425301075,0.00032051283051259816,0.0012820513220503926,0.0028110777493566275,-2.0084092614334123e-19,3.901154051683991e-20,-5.827505810884759e-05,-2.5722200647441367e-18,-0.00023310023243539035,-0.00018315018678549677,0.00020424836839083582,-9.426847827853635e-05,-7.9761790124341845e-19,-2.0084092614334123e-19,6.7334626692172606e-06,2.888730218358834e-20,6.432079702823483e-21,2.3922065899972975e-19,2.198003387604085e-20,1.1911409706492835e-20,0.0010416667209938169,-0.00014880952949170023,-0.0010416667209938169,3.901154051683991e-20,2.888730218358834e-20,0.00014880952949170023,-1.783443355442711e-22,3.512252566376256e-19,-3.1121927377226076e-20,-5.605107904907511e-22,0.00032051283051259816,-4.578754669637419e-05,2.710505431213761e-20,-5.827505810884759e-05,6.432079702823483e-21,-1.783443355442711e-22,8.325007911480498e-06,1.4527472060500755e-34,-4.229928618370556e-21,-7.199780051661553e-21,0.0027777778450399637,-3.700314301688083e-18,-0.01666666753590107,-2.5722200647441367e-18,2.3922065899972975e-19,3.512252566376256e-19,1.4527472060500755e-34,0.008333333767950535,6.7407548053553255e-34,2.338381947538472e-19,0.0012820513220503926,-2.507217523872729e-19,-0.0012820513220503926,-0.00023310023243539035,2.198003387604085e-20,-3.1121927377226076e-20,-4.229928618370556e-21,6.7407548053553255e-34,0.00023310023243539035,0.0,0.0003052503161597997,-1.2536087619363645e-19,-4.607859233063394e-19,-0.00018315018678549677,1.1911409706492835e-20,-5.605107904907511e-22,-7.199780051661553e-21,2.338381947538472e-19,0.0,1.6650015822960995e-05,15.0,3.0,13.0,0.049964986741542816,-0.005890433210879564,-0.02101648412644863,-0.006684981752187014,0.0001885369565570727,0.000961538462433964,0.00027472528745420277,0.0025641026441007853,0.001098901149816811,0.00024420025874860585,-0.005890433210879564,0.0016826553037390113,0.000961538462433964,0.00027472528745420277,-8.701705519342795e-05,-0.00013736264372710139,-3.924646807718091e-05,-3.4156748354636858e-18,-2.371692252312041e-19,-1.3891340334970526e-19,-0.02101648412644863,0.000961538462433964,0.0466575101017952,0.001098901149816811,-7.234883011918889e-19,-0.000961538462433964,0.0,-0.015384615398943424,-0.001098901149816811,-3.7947076036992655e-19,-0.006684981752187014,0.00027472528745420277,0.001098901149816811,0.002224164782091975,-1.679292707262345e-19,1.9291553097988594e-20,-4.578754669637419e-05,-2.2182279148069154e-18,-0.00018315018678549677,-0.00013320012658368796,0.0001885369565570727,-8.701705519342795e-05,-7.234883011918889e-19,-1.679292707262345e-19,6.215504072315525e-06,2.5358682168582102e-20,4.9714342413164736e-21,2.208190698459044e-19,1.8215951729792566e-20,9.382826010462633e-21,0.000961538462433964,-0.00013736264372710139,-0.000961538462433964,1.9291553097988594e-20,2.5358682168582102e-20,0.00013736264372710139,-1.9948324873941767e-23,3.242079351692069e-19,-1.840234201742976e-20,1.537267508609352e-22,0.00027472528745420277,-3.924646807718091e-05,0.0,-4.578754669637419e-05,4.9714342413164736e-21,-1.9948324873941767e-23,6.541078164445935e-06,2.2922895187990506e-34,-1.0658971168843615e-22,8.470329472543003e-22,0.0025641026441007853,-3.4156748354636858e-18,-0.015384615398943424,-2.2182279148069154e-18,2.208190698459044e-19,3.242079351692069e-19,2.2922895187990506e-34,0.007692307699471712,5.7777898331617076e-34,1.8485231330921254e-19,0.001098901149816811,-2.371692252312041e-19,-0.001098901149816811,-0.00018315018678549677,1.8215951729792566e-20,-1.840234201742976e-20,-1.0658971168843615e-22,5.7777898331617076e-34,0.00018315018678549677,0.0,0.00024420025874860585,-1.3891340334970526e-19,-3.7947076036992655e-19,-0.00013320012658368796,9.382826010462633e-21,1.537267508609352e-22,8.470329472543003e-22,1.8485231330921254e-19,0.0,1.1100010851805564e-05,15.0,3.0,14.0,0.04679855331778526,-0.005486694630235434,-0.019583333283662796,-0.005833333358168602,0.00017507003212813288,0.0008928571478463709,0.0002380952355451882,0.0023809524718672037,0.0009523809421807528,0.00019841270113829523,-0.005486694630235434,0.0015648951521143317,0.0008928571478463709,0.0002380952355451882,-8.080155384959653e-05,-0.00012755101488437504,-3.40136066370178e-05,-3.851426551121414e-18,-2.676624113323589e-19,-1.3552527156068805e-19,-0.019583333283662796,0.0008928571478463709,0.0433928556740284,0.0009523809421807528,-6.685011080809084e-19,-0.0008928571478463709,3.3881317890172014e-20,-0.014285714365541935,-0.0009523809421807528,-2.981555974335137e-19,-0.005833333358168602,0.0002380952355451882,0.0009523809421807528,0.001790293026715517,-1.6626129979511254e-19,-5.900760108071793e-20,-3.6630037357099354e-05,-1.9329775757001477e-18,-0.00014652014942839742,-9.920635056914762e-05,0.00017507003212813288,-8.080155384959653e-05,-6.685011080809084e-19,-1.6626129979511254e-19,5.77153923586593e-06,2.1788287917054804e-20,7.477060848070845e-21,2.050462736034696e-19,1.625606843738321e-20,7.53907596799888e-21,0.0008928571478463709,-0.00012755101488437504,-0.0008928571478463709,-5.900760108071793e-20,2.1788287917054804e-20,0.00012755101488437504,-1.4986746660775125e-21,9.807786431246571e-19,6.924472371818884e-20,2.291937036496423e-22,0.0002380952355451882,-3.40136066370178e-05,3.3881317890172014e-20,-3.6630037357099354e-05,7.477060848070845e-21,-1.4986746660775125e-21,5.2328623496578075e-06,3.0345278759769366e-34,-4.454460898755036e-21,3.3881317890172014e-21,0.0023809524718672037,-3.851426551121414e-18,-0.014285714365541935,-1.9329775757001477e-18,2.050462736034696e-19,9.807786431246571e-19,3.0345278759769366e-34,0.0071428571827709675,1.0351873451081393e-33,1.4869058771720254e-19,0.0009523809421807528,-2.676624113323589e-19,-0.0009523809421807528,-0.00014652014942839742,1.625606843738321e-20,6.924472371818884e-20,-4.454460898755036e-21,1.0351873451081393e-33,0.00014652014942839742,0.0,0.00019841270113829523,-1.3552527156068805e-19,-2.981555974335137e-19,-9.920635056914762e-05,7.53907596799888e-21,2.291937036496423e-22,3.3881317890172014e-21,1.4869058771720254e-19,0.0,7.631258085893933e-06,15.0,3.0,15.0,0.04401007667183876,-0.005134803708642721,-0.018333332613110542,-0.005134803708642721,0.0001633986976230517,0.0008333333535119891,0.00020833333837799728,0.002222222276031971,0.0008333333535119891,0.0001633986976230517,-0.005134803708642721,0.0014625529292970896,0.0008333333535119891,0.00020833333837799728,-7.54147840780206e-05,-0.0001190476177725941,-2.9761904443148524e-05,5.198681670975826e-18,4.0996394647108136e-19,1.5415999640028266e-19,-0.018333332613110542,0.0008333333535119891,0.04055555537343025,0.0008333333535119891,1.220317637413249e-18,-0.0008333333535119891,4.743384504624082e-20,-0.013333333656191826,-0.0008333333535119891,4.743384504624082e-19,-0.005134803708642721,0.00020833333837799728,0.0008333333535119891,0.0014625529292970896,2.399143274915379e-19,2.2834125323483128e-20,-2.9761904443148524e-05,4.121146574227499e-18,-0.0001190476177725941,-7.54147840780206e-05,0.0001633986976230517,-7.54147840780206e-05,1.220317637413249e-18,2.399143274915379e-19,5.386770226323279e-06,-3.6422723693490354e-20,-5.3142024583013196e-21,-3.827530388899311e-19,-2.8578860750334093e-20,-1.2444958165254444e-20,0.0008333333535119891,-0.0001190476177725941,-0.0008333333535119891,2.2834125323483128e-20,-3.6422723693490354e-20,0.0001190476177725941,-5.3737542117469524e-21,1.5986078301033035e-19,9.445539871826077e-21,3.0563286123971826e-22,0.00020833333837799728,-2.9761904443148524e-05,4.743384504624082e-20,-2.9761904443148524e-05,-5.3142024583013196e-21,-5.3737542117469524e-21,4.251700829627225e-06,2.4777609460172104e-34,-2.7057114187320048e-21,2.541098841762901e-21,0.002222222276031971,5.198681670975826e-18,-0.013333333656191826,4.121146574227499e-18,-3.827530388899311e-19,1.5986078301033035e-19,2.4777609460172104e-34,0.006666666828095913,-7.218211703660766e-19,-2.428089684969848e-19,0.0008333333535119891,4.0996394647108136e-19,-0.0008333333535119891,-0.0001190476177725941,-2.8578860750334093e-20,9.445539871826077e-21,-2.7057114187320048e-21,-7.218211703660766e-19,0.0001190476177725941,1.6940658945086007e-21,0.0001633986976230517,1.5415999640028266e-19,4.743384504624082e-19,-7.54147840780206e-05,-1.2444958165254444e-20,3.0563286123971826e-22,2.541098841762901e-21,-2.428089684969848e-19,1.6940658945086007e-21,5.386770226323279e-06,15.0,3.0,16.0,0.04153560847043991,-0.004825367592275143,-0.017233455553650856,-0.0045547387562692165,0.00015318627993110567,0.0007812500116415322,0.00018382353300694376,0.0020833334419876337,0.000735294132027775,0.00013616557407658547,-0.004825367592275143,0.0013727847253903747,0.0007812500116415322,0.00018382353300694376,-7.070136052789167e-05,-0.00011160714348079637,-2.626050445542205e-05,-2.775235829663639e-18,-1.9142944607947188e-19,-5.421010862427522e-20,-0.017233455553650856,0.0007812500116415322,0.038066789507865906,0.000735294132027775,-5.633893030898404e-19,-0.0007812500116415322,-3.8963515573697816e-20,-0.012500000186264515,-0.000735294132027775,-1.9651164376299768e-19,-0.0045547387562692165,0.00018382353300694376,0.000735294132027775,0.0012103174813091755,-1.1864162345438285e-19,-5.878784891876585e-20,-2.4509803552064113e-05,-1.506342527766096e-18,-9.803921420825645e-05,-5.835667616338469e-05,0.00015318627993110567,-7.070136052789167e-05,-5.633893030898404e-19,-1.1864162345438285e-19,5.050097115599783e-06,1.5488591847363183e-20,4.025183241408425e-21,1.7941548778744877e-19,1.2461727151910682e-20,5.084986994712468e-21,0.0007812500116415322,-0.00011160714348079637,-0.0007812500116415322,-5.878784891876585e-20,1.5488591847363183e-20,0.00011160714348079637,5.753402647927516e-21,2.6341894894056773e-19,1.871814406566602e-20,1.964690269977863e-22,0.00018382353300694376,-2.626050445542205e-05,-3.8963515573697816e-20,-2.4509803552064113e-05,4.025183241408425e-21,5.753402647927516e-21,3.5014006698474986e-06,1.1347029749332012e-34,-1.5237208104916624e-22,-2.329340604949326e-21,0.0020833334419876337,-2.775235829663639e-18,-0.012500000186264515,-1.506342527766096e-18,1.7941548778744877e-19,2.6341894894056773e-19,1.1347029749332012e-34,0.0062500000931322575,4.574083617919685e-34,1.0042283475358317e-19,0.000735294132027775,-1.9142944607947188e-19,-0.000735294132027775,-9.803921420825645e-05,1.2461727151910682e-20,1.871814406566602e-20,-1.5237208104916624e-22,4.574083617919685e-34,9.803921420825645e-05,0.0,0.00013616557407658547,-5.421010862427522e-20,-1.9651164376299768e-19,-5.835667616338469e-05,5.084986994712468e-21,1.964690269977863e-22,-2.329340604949326e-21,1.0042283475358317e-19,0.0,3.890444986609509e-06,15.0,4.0,3.0,0.12851715087890625,-0.017536764964461327,-0.050833333283662796,-0.06187500059604645,0.0006127451197244227,0.0024999999441206455,0.0031250000465661287,0.0055555556900799274,0.009999999776482582,0.008333333767950535,-0.017536764964461327,0.005239037796854973,0.0024999999441206455,0.0031250000465661287,-0.00028280544211156666,-0.0003571428533177823,-0.00044642857392318547,-1.734723475976807e-18,-1.5474476139456937e-18,-6.1503806762686045e-18,-0.050833333283662796,0.0024999999441206455,0.07277777791023254,0.009999999776482582,-8.51602603150773e-19,-0.0016666667070239782,-2.125454439230265e-18,-0.01666666753590107,-0.006666666828095913,4.308937997254901e-17,-0.06187500059604645,0.0031250000465661287,0.009999999776482582,0.14520832896232605,-9.136667916912392e-19,3.2132141087352067e-18,-0.0031250000465661287,1.0523821886818146e-17,-0.009999999776482582,-0.05000000074505806,0.0006127451197244227,-0.00028280544211156666,-8.51602603150773e-19,-9.136667916912392e-19,2.0200388462399133e-05,2.2531105800650226e-20,1.5361325586477925e-20,1.9034034648077218e-19,8.211683019694743e-20,3.4550354494301973e-19,0.0024999999441206455,-0.0003571428533177823,-0.0016666667070239782,3.2132141087352067e-18,2.2531105800650226e-20,0.0002380952355451882,4.503863129928772e-21,-1.3886048447001718e-18,-9.029837670048139e-20,-1.5643241663933068e-18,0.0031250000465661287,-0.00044642857392318547,-2.125454439230265e-18,-0.0031250000465661287,1.5361325586477925e-20,4.503863129928772e-21,0.00044642857392318547,4.69106119497704e-19,3.852927160150162e-19,3.7626092736194516e-18,0.0055555556900799274,-1.734723475976807e-18,-0.01666666753590107,1.0523821886818146e-17,1.9034034648077218e-19,-1.3886048447001718e-18,4.69106119497704e-19,0.0055555556900799274,4.862784407130932e-19,-7.629464811116511e-18,0.009999999776482582,-1.5474476139456937e-18,-0.006666666828095913,-0.009999999776482582,8.211683019694743e-20,-9.029837670048139e-20,3.852927160150162e-19,4.862784407130932e-19,0.006666666828095913,-1.0401667162678765e-17,0.008333333767950535,-6.1503806762686045e-18,4.308937997254901e-17,-0.05000000074505806,3.4550354494301973e-19,-1.5643241663933068e-18,3.7626092736194516e-18,-7.629464811116511e-18,-1.0401667162678765e-17,0.02500000037252903,15.0,4.0,4.0,0.1052524521946907,-0.013621323741972446,-0.03962500020861626,-0.03962500020861626,0.0004595588252414018,0.0018749999580904841,0.0018749999580904841,0.004166666883975267,0.006000000052154064,0.004166666883975267,-0.013621323741972446,0.003996242769062519,0.0018749999580904841,0.0018749999580904841,-0.00021210407430771738,-0.0002678571327123791,-0.0002678571327123791,2.927345865710862e-18,-1.6263032587282567e-19,2.0599841277224584e-18,-0.03962500020861626,0.0018749999580904841,0.05558333173394203,0.006000000052154064,1.600019820946583e-20,-0.0012499999720603228,2.0599841277224584e-18,-0.012500000186264515,-0.004000000189989805,2.0670619813518297e-17,-0.03962500020861626,0.0018749999580904841,0.006000000052154064,0.05558333173394203,-2.7290761529534594e-19,2.1117592234185307e-18,-0.0012499999720603228,2.2557039942031203e-17,-0.004000000189989805,-0.012500000186264515,0.0004595588252414018,-0.00021210407430771738,1.600019820946583e-20,-2.7290761529534594e-19,1.5150290892051999e-05,2.804975273280999e-20,3.1007647205723046e-20,-8.021003671334492e-20,5.571891029537895e-21,3.51837396140309e-21,0.0018749999580904841,-0.0002678571327123791,-0.0012499999720603228,2.1117592234185307e-18,2.804975273280999e-20,0.00017857142665889114,4.65652892471888e-20,-3.1835454666084024e-19,5.1762377794154244e-20,-8.634542918710679e-19,0.0018749999580904841,-0.0002678571327123791,2.0599841277224584e-18,-0.0012499999720603228,3.1007647205723046e-20,4.65652892471888e-20,0.00017857142665889114,-8.60400858037405e-19,6.776263578034403e-20,-2.168404344971009e-19,0.004166666883975267,2.927345865710862e-18,-0.012500000186264515,2.2557039942031203e-17,-8.021003671334492e-20,-3.1835454666084024e-19,-8.60400858037405e-19,0.004166666883975267,5.76410211605979e-19,-5.271413180695776e-18,0.006000000052154064,-1.6263032587282567e-19,-0.004000000189989805,-0.004000000189989805,5.571891029537895e-21,5.1762377794154244e-20,6.776263578034403e-20,5.76410211605979e-19,0.0026666666381061077,1.734723475976807e-18,0.004166666883975267,2.0599841277224584e-18,2.0670619813518297e-17,-0.012500000186264515,3.51837396140309e-21,-8.634542918710679e-19,-2.168404344971009e-19,-5.271413180695776e-18,1.734723475976807e-18,0.004166666883975267,15.0,4.0,5.0,0.0892471969127655,-0.011147058568894863,-0.032499998807907104,-0.02760714292526245,0.0003676470660138875,0.001500000013038516,0.0012499999720603228,0.0033333334140479565,0.004000000189989805,0.0023809524718672037,-0.011147058568894863,0.0032327084336429834,0.001500000013038516,0.0012499999720603228,-0.00016968326235655695,-0.00021428571199066937,-0.00017857142665889114,-2.507217523872729e-19,-1.2197274440461925e-19,-6.53477789172235e-20,-0.032499998807907104,0.001500000013038516,0.04500000178813934,0.004000000189989805,1.7627996920268702e-19,-0.0010000000474974513,1.5612511904176723e-19,-0.009999999776482582,-0.0026666666381061077,-2.8127095929541287e-18,-0.02760714292526245,0.0012499999720603228,0.004000000189989805,0.028089284896850586,-2.574980159653073e-19,-1.1655173354219173e-18,-0.0006249999860301614,-3.631891575778922e-18,-0.0020000000949949026,-0.004761904943734407,0.0003676470660138875,-0.00016968326235655695,1.7627996920268702e-19,-2.574980159653073e-19,1.212023289554054e-05,5.929230630780102e-21,6.776263578034403e-21,-9.600921226250189e-20,2.1640750884400595e-20,4.1500562522928914e-20,0.001500000013038516,-0.00021428571199066937,-0.0010000000474974513,-1.1655173354219173e-18,5.929230630780102e-21,0.0001428571413271129,6.53521216154394e-20,1.111307226797642e-18,6.776263578034403e-21,1.6625408781414684e-19,0.0012499999720603228,-0.00017857142665889114,1.5612511904176723e-19,-0.0006249999860301614,6.776263578034403e-21,6.53521216154394e-20,8.928571332944557e-05,-1.3930164832502526e-19,-9.745191864837094e-20,-2.802919083223951e-19,0.0033333334140479565,-2.507217523872729e-19,-0.009999999776482582,-3.631891575778922e-18,-9.600921226250189e-20,1.111307226797642e-18,-1.3930164832502526e-19,0.0033333334140479565,2.168404344971009e-18,3.1390235041135014e-19,0.004000000189989805,-1.2197274440461925e-19,-0.0026666666381061077,-0.0020000000949949026,2.1640750884400595e-20,6.776263578034403e-21,-9.745191864837094e-20,2.168404344971009e-18,0.0013333333190530539,5.107116499478962e-19,0.0023809524718672037,-6.53477789172235e-20,-2.8127095929541287e-18,-0.004761904943734407,4.1500562522928914e-20,1.6625408781414684e-19,-2.802919083223951e-19,3.1390235041135014e-19,5.107116499478962e-19,0.0011904762359336019,15.0,4.0,6.0,0.07751750946044922,-0.009438024833798409,-0.027559524402022362,-0.020357143133878708,0.00030637255986221135,0.0012499999720603228,0.0008928571478463709,0.0027777778450399637,0.0028571428265422583,0.0014880952658131719,-0.009438024833798409,0.0027151822578161955,0.0012499999720603228,0.0008928571478463709,-0.00014140272105578333,-0.00017857142665889114,-0.00012755101488437504,-1.922267034333658e-18,-2.4667619812691387e-18,-5.950541388298883e-19,-0.027559524402022362,0.0012499999720603228,0.03781745955348015,0.0028571428265422583,-5.825297454764346e-19,-0.0008333333535119891,-3.5916231827889215e-18,-0.008333333767950535,-0.0019047618843615055,-1.2291755010027732e-17,-0.020357143133878708,0.0008928571478463709,0.0028571428265422583,0.016327381134033203,-2.1006417091906648e-19,-2.2457449050641044e-18,-0.0003571428533177823,-2.4461141883318044e-17,-0.0011428571306169033,-0.0022321429569274187,0.00030637255986221135,-0.00014140272105578333,-5.825297454764346e-19,-2.1006417091906648e-19,1.0100194231199566e-05,1.1011428314305904e-20,9.317362419797304e-21,9.171673295706841e-20,7.958373174267156e-20,4.727161101742959e-21,0.0012499999720603228,-0.00017857142665889114,-0.0008333333535119891,-2.2457449050641044e-18,1.1011428314305904e-20,0.0001190476177725941,7.453889935837843e-20,-8.308062485754242e-19,1.0942438866279568e-19,2.6453334217143566e-19,0.0008928571478463709,-0.00012755101488437504,-3.5916231827889215e-18,-0.0003571428533177823,9.317362419797304e-21,7.453889935837843e-20,5.10204081365373e-05,6.450906559747389e-19,3.806478900803778e-19,-1.397186572136771e-20,0.0027777778450399637,-1.922267034333658e-18,-0.008333333767950535,-2.4461141883318044e-17,9.171673295706841e-20,-8.308062485754242e-19,6.450906559747389e-19,0.0027777778450399637,1.2290307443955764e-18,3.3393132436255468e-18,0.0028571428265422583,-2.4667619812691387e-18,-0.0019047618843615055,-0.0011428571306169033,7.958373174267156e-20,1.0942438866279568e-19,3.806478900803778e-19,1.2290307443955764e-18,0.0007619047537446022,-7.591883049057295e-20,0.0014880952658131719,-5.950541388298883e-19,-1.2291755010027732e-17,-0.0022321429569274187,4.727161101742959e-21,2.6453334217143566e-19,-1.397186572136771e-20,3.3393132436255468e-18,-7.591883049057295e-20,0.00044642857392318547,15.0,4.0,7.0,0.06853612512350082,-0.008185398764908314,-0.023928571492433548,-0.015639880672097206,0.00026260505546815693,0.0010714285308495164,0.0006696428754366934,0.0023809524718672037,0.002142857061699033,0.0009920635493472219,-0.008185398764908314,0.0023409652058035135,0.0010714285308495164,0.0006696428754366934,-0.00012120232713641599,-0.0001530612207716331,-9.566326480126008e-05,8.971858383715795e-19,3.9619645575332534e-19,4.384218029762612e-19,-0.023928571492433548,0.0010714285308495164,0.03261904790997505,0.002142857061699033,2.0178238692739729e-19,-0.0007142857066355646,2.462424142739334e-19,-0.0071428571827709675,-0.0014285714132711291,3.6126306752156244e-18,-0.015639880672097206,0.0006696428754366934,0.002142857061699033,0.010372024029493332,2.1006417091906648e-19,-1.2309749031784116e-19,-0.00022321428696159273,4.612843409844332e-18,-0.0007142857066355646,-0.0011904762359336019,0.00026260505546815693,-0.00012120232713641599,2.0178238692739729e-19,2.1006417091906648e-19,8.65730908117257e-06,-1.0164395367051604e-20,-7.199780051661553e-21,-3.948821950069493e-20,1.5912322588233966e-21,-2.3407663602776414e-20,0.0010714285308495164,-0.0001530612207716331,-0.0007142857066355646,-1.2309749031784116e-19,-1.0164395367051604e-20,0.0001020408162730746,1.5246593050577406e-20,-7.633922564985742e-20,-1.0084319760112496e-19,4.120953711897803e-20,0.0006696428754366934,-9.566326480126008e-05,2.462424142739334e-19,-0.00022321428696159273,-7.199780051661553e-21,1.5246593050577406e-20,3.188775372109376e-05,-1.1814176402633074e-20,-7.930164376674537e-20,-4.1156629871517315e-20,0.0023809524718672037,8.971858383715795e-19,-0.0071428571827709675,4.612843409844332e-18,-3.948821950069493e-20,-7.633922564985742e-20,-1.1814176402633074e-20,0.0023809524718672037,-2.1151169563200365e-18,-1.8555169451712613e-19,0.002142857061699033,3.9619645575332534e-19,-0.0014285714132711291,-0.0007142857066355646,1.5912322588233966e-21,-1.0084319760112496e-19,-7.930164376674537e-20,-2.1151169563200365e-18,0.0004761904710903764,-1.0885618279039652e-18,0.0009920635493472219,4.384218029762612e-19,3.6126306752156244e-18,-0.0011904762359336019,-2.3407663602776414e-20,4.120953711897803e-20,-4.1156629871517315e-20,-1.8555169451712613e-19,-1.0885618279039652e-18,0.00019841270113829523,15.0,4.0,8.0,0.06143178045749664,-0.007227328605949879,-0.021145833656191826,-0.012395833618938923,0.0002297794126207009,0.0009374999790452421,0.0005208333604969084,0.0020833334419876337,0.0016666667070239782,0.0006944444612599909,-0.007227328605949879,0.0020576452370733023,0.0009374999790452421,0.0005208333604969084,-0.00010605203715385869,-0.00013392856635618955,-7.440476474585012e-05,5.475065564494214e-19,-3.7528274492857057e-19,-5.713409903183126e-19,-0.021145833656191826,0.0009374999790452421,0.028680555522441864,0.0016666667070239782,-5.140527487642715e-20,-0.0006249999860301614,-6.247383422919662e-19,-0.0062500000931322575,-0.0011111111380159855,-2.0926823705415265e-18,-0.012395833618938923,0.0005208333604969084,0.0016666667070239782,0.007013889029622078,-1.5585406229479126e-19,-8.57703512532749e-20,-0.00014880952949170023,-5.2829779928398796e-18,-0.0004761904710903764,-0.0006944444612599909,0.0002297794126207009,-0.00010605203715385869,-5.140527487642715e-20,-1.5585406229479126e-19,7.575145446025999e-06,1.4399560103323106e-20,5.929230630780102e-21,-3.006192773398205e-20,7.541309517211487e-21,1.3254577345662058e-20,0.0009374999790452421,-0.00013392856635618955,-0.0006249999860301614,-8.57703512532749e-20,1.4399560103323106e-20,8.928571332944557e-05,1.5246593050577406e-20,-1.9141776215331957e-19,-1.191961931251371e-20,-4.553641792904705e-21,0.0005208333604969084,-7.440476474585012e-05,-6.247383422919662e-19,-0.00014880952949170023,5.929230630780102e-21,1.5246593050577406e-20,2.1258503693388775e-05,6.665733507386565e-20,7.489599581375699e-20,9.709936522401289e-20,0.0020833334419876337,5.475065564494214e-19,-0.0062500000931322575,-5.2829779928398796e-18,-3.006192773398205e-20,-1.9141776215331957e-19,6.665733507386565e-20,0.0020833334419876337,9.139198055611038e-19,4.92409658509701e-19,0.0016666667070239782,-3.7528274492857057e-19,-0.0011111111380159855,-0.0004761904710903764,7.541309517211487e-21,-1.191961931251371e-20,7.489599581375699e-20,9.139198055611038e-19,0.0003174603043589741,1.5156763820993562e-19,0.0006944444612599909,-5.713409903183126e-19,-2.0926823705415265e-18,-0.0006944444612599909,1.3254577345662058e-20,-4.553641792904705e-21,9.709936522401289e-20,4.92409658509701e-19,1.5156763820993562e-19,9.920635056914762e-05,15.0,4.0,9.0,0.05566859617829323,-0.006470588035881519,-0.01894444413483143,-0.010068181902170181,0.00020424836839083582,0.0008333333535119891,0.00041666667675599456,0.0018518518190830946,0.0013333333190530539,0.0005050505278632045,-0.006470588035881519,0.0018356316722929478,0.0008333333535119891,0.00041666667675599456,-9.426847827853635e-05,-0.0001190476177725941,-5.952380888629705e-05,-1.8710823387997955e-18,-2.9093257877651825e-19,-2.499832868954162e-19,-0.01894444413483143,0.0008333333535119891,0.025592593476176262,0.0013333333190530539,-5.792258827123212e-19,-0.0005555555690079927,7.457622588351989e-20,-0.0055555556900799274,-0.0008888888987712562,1.1114090475611685e-19,-0.010068181902170181,0.00041666667675599456,0.0013333333190530539,0.004970147740095854,-2.8997054187472494e-19,-3.403719296802424e-20,-0.00010416666918899864,-3.984288094314528e-19,-0.00033333332976326346,-0.00043290044413879514,0.00020424836839083582,-9.426847827853635e-05,-5.792258827123212e-19,-2.8997054187472494e-19,6.7334626692172606e-06,1.6889202494871526e-20,1.2524540371882861e-20,1.2473303318401163e-19,2.1604127139662383e-20,2.1125979587102653e-20,0.0008333333535119891,-0.0001190476177725941,-0.0005555555690079927,-3.403719296802424e-20,1.6889202494871526e-20,7.936507608974352e-05,-3.3881317890172014e-21,5.591290515165538e-20,3.85027436607631e-20,5.137782750306897e-35,0.00041666667675599456,-5.952380888629705e-05,7.457622588351989e-20,-0.00010416666918899864,1.2524540371882861e-20,-3.3881317890172014e-21,1.4880952221574262e-05,6.791929118678193e-21,-1.6961740741596172e-20,-1.1445104407624538e-20,0.0018518518190830946,-1.8710823387997955e-18,-0.0055555556900799274,-3.984288094314528e-19,1.2473303318401163e-19,5.591290515165538e-20,6.791929118678193e-21,0.0018518518190830946,2.3392352360391087e-19,3.4698441989776426e-34,0.0013333333190530539,-2.9093257877651825e-19,-0.0008888888987712562,-0.00033333332976326346,2.1604127139662383e-20,3.85027436607631e-20,-1.6961740741596172e-20,2.3392352360391087e-19,0.00022222222469281405,-2.778522618902921e-20,0.0005050505278632045,-2.499832868954162e-19,1.1114090475611685e-19,-0.00043290044413879514,2.1125979587102653e-20,5.137782750306897e-35,-1.1445104407624538e-20,3.4698441989776426e-34,-2.778522618902921e-20,5.411255551734939e-05,15.0,4.0,10.0,0.05089794844388962,-0.0058576203882694244,-0.01715909130871296,-0.008340909145772457,0.00018382353300694376,0.000750000006519258,0.0003409090859349817,0.0016666667070239782,0.0010909091215580702,0.0003787878667935729,-0.0058576203882694244,0.001656938693486154,0.000750000006519258,0.0003409090859349817,-8.484163117827848e-05,-0.00010714285599533468,-4.870129851042293e-05,-3.3360487753381062e-18,-1.2988425133483674e-18,-6.78106122558721e-19,-0.01715909130871296,0.000750000006519258,0.023106060922145844,0.0010909091215580702,-1.047965147608358e-18,-0.0005000000237487257,-8.683338820033065e-19,-0.004999999888241291,-0.0007272727089002728,-1.349930221955408e-18,-0.008340909145772457,0.0003409090859349817,0.0010909091215580702,0.0036527777556329966,-5.474930630656791e-19,-3.632226066939123e-19,-7.575757626909763e-05,-5.575349529840116e-18,-0.00024242424115072936,-0.0002840909000951797,0.00018382353300694376,-8.484163117827848e-05,-1.047965147608358e-18,-5.474930630656791e-19,6.06011644777027e-06,1.8026761629652337e-20,1.5644770655596584e-20,1.7582717829019374e-19,6.811264303937906e-20,3.262099836702237e-20,0.000750000006519258,-0.00010714285599533468,-0.0005000000237487257,-3.632226066939123e-19,1.8026761629652337e-20,7.142857066355646e-05,7.623296525288703e-21,-3.3726990948690837e-21,4.236068495714201e-20,2.162772117416575e-20,0.0003409090859349817,-4.870129851042293e-05,-8.683338820033065e-19,-7.575757626909763e-05,1.5644770655596584e-20,7.623296525288703e-21,1.0822510375874117e-05,1.7782793432150345e-19,5.107066739395238e-20,3.798832456146035e-20,0.0016666667070239782,-3.3360487753381062e-18,-0.004999999888241291,-5.575349529840116e-18,1.7582717829019374e-19,-3.3726990948690837e-21,1.7782793432150345e-19,0.0016666667070239782,4.899634786432286e-19,3.9951207999177344e-19,0.0010909091215580702,-1.2988425133483674e-18,-0.0007272727089002728,-0.00024242424115072936,6.811264303937906e-20,4.236068495714201e-20,5.107066739395238e-20,4.899634786432286e-19,0.0001616161607671529,6.833007234665874e-34,0.0003787878667935729,-6.78106122558721e-19,-1.349930221955408e-18,-0.0002840909000951797,3.262099836702237e-20,2.162772117416575e-20,3.798832456146035e-20,3.9951207999177344e-19,6.833007234665874e-34,3.156565799145028e-05,15.0,4.0,11.0,0.046882882714271545,-0.005350935738533735,-0.01568181812763214,-0.0070236013270914555,0.00016711230273358524,0.0006818181718699634,0.0002840909000951797,0.0015151514671742916,0.0009090909152291715,0.00029137529782019556,-0.005350935738533735,0.0015099974116310477,0.0006818181718699634,0.0002840909000951797,-7.712875230936334e-05,-9.740259702084586e-05,-4.058441481902264e-05,-1.4396681514791421e-18,-1.7057882070112135e-19,-1.4670797796058072e-19,-0.01568181812763214,0.0006818181718699634,0.021060606464743614,0.0009090909152291715,-4.282069237424497e-19,-0.00045454545761458576,6.376327567978696e-20,-0.004545454401522875,-0.000606060610152781,-9.122387175357899e-34,-0.0070236013270914555,0.0002840909000951797,0.0009090909152291715,0.002764471573755145,-1.7964682694032513e-19,4.24692524125396e-20,-5.681818220182322e-05,-2.8691688356771096e-33,-0.0001818181772250682,-0.00019425019854679704,0.00016711230273358524,-7.712875230936334e-05,-4.282069237424497e-19,-1.7964682694032513e-19,5.509196853381582e-06,1.1632719310309222e-20,5.404628081875641e-21,9.133879542766264e-20,1.5658078246818458e-20,1.1710101895054844e-20,0.0006818181718699634,-9.740259702084586e-05,-0.00045454545761458576,4.24692524125396e-20,1.1632719310309222e-20,6.49350622552447e-05,-4.235164736271502e-21,1.072833479694758e-19,-1.0242797387278713e-20,2.2985457545776286e-35,0.0002840909000951797,-4.058441481902264e-05,6.376327567978696e-20,-5.681818220182322e-05,5.404628081875641e-21,-4.235164736271502e-21,8.116882781905588e-06,8.441724862737057e-35,-6.654018158064499e-21,-3.446689148581923e-21,0.0015151514671742916,-1.4396681514791421e-18,-0.004545454401522875,-2.8691688356771096e-33,9.133879542766264e-20,1.072833479694758e-19,8.441724862737057e-35,0.0015151514671742916,2.2452782395495537e-34,1.941456342133927e-34,0.0009090909152291715,-1.7057882070112135e-19,-0.000606060610152781,-0.0001818181772250682,1.5658078246818458e-20,-1.0242797387278713e-20,-6.654018158064499e-21,2.2452782395495537e-34,0.00012121212057536468,3.3780714379429643e-35,0.00029137529782019556,-1.4670797796058072e-19,-9.122387175357899e-34,-0.00019425019854679704,1.1710101895054844e-20,2.2985457545776286e-35,-3.446689148581923e-21,1.941456342133927e-34,3.3780714379429643e-35,1.942501876328606e-05,15.0,4.0,12.0,0.0434565544128418,-0.0049250563606619835,-0.01443910226225853,-0.005995878949761391,0.00015318627993110567,0.0006249999860301614,0.000240384615608491,0.0013888889225199819,0.0007692307699471712,0.00022893772984389216,-0.0049250563606619835,0.0013870259281247854,0.0006249999860301614,0.000240384615608491,-7.070136052789167e-05,-8.928571332944557e-05,-3.4340660931775346e-05,-1.3196957365908292e-18,-1.9651164376299768e-19,-1.5246593050577406e-19,-0.01443910226225853,0.0006249999860301614,0.01934828981757164,0.0007692307699471712,-4.464178994638699e-19,-0.00041666667675599456,-1.0164395367051604e-20,-0.004166666883975267,-0.0005128204938955605,-2.710505431213761e-20,-0.005995878949761391,0.000240384615608491,0.0007692307699471712,0.002143273362889886,-1.4524262750544303e-19,-4.4615841032077256e-20,-4.3706295400625095e-05,-2.449616718440396e-33,-0.0001398601452820003,-0.00013736264372710139,0.00015318627993110567,-7.070136052789167e-05,-4.464178994638699e-19,-1.4524262750544303e-19,5.050097115599783e-06,1.76113731748958e-20,3.310821905692604e-21,8.3727228064966e-20,1.3415418738363873e-20,9.297135268880968e-21,0.0006249999860301614,-8.928571332944557e-05,-0.00041666667675599456,-4.4615841032077256e-20,1.76113731748958e-20,5.952380888629705e-05,3.0217243010892384e-21,9.834307004907758e-20,1.5569254881784175e-20,2.8229696726808754e-23,0.000240384615608491,-3.4340660931775346e-05,-1.0164395367051604e-20,-4.3706295400625095e-05,3.310821905692604e-21,3.0217243010892384e-21,6.243756160984049e-06,5.956194863333621e-35,-1.9380823576762182e-21,4.658681209898652e-21,0.0013888889225199819,-1.3196957365908292e-18,-0.004166666883975267,-2.449616718440396e-33,8.3727228064966e-20,9.834307004907758e-20,5.956194863333621e-35,0.0013888889225199819,2.298286606286908e-34,1.5322816818808144e-34,0.0007692307699471712,-1.9651164376299768e-19,-0.0005128204938955605,-0.0001398601452820003,1.3415418738363873e-20,1.5569254881784175e-20,-1.9380823576762182e-21,2.298286606286908e-34,9.324009442934766e-05,3.3881317890172014e-21,0.00022893772984389216,-1.5246593050577406e-19,-2.710505431213761e-20,-0.00013736264372710139,9.297135268880968e-21,2.8229696726808754e-23,4.658681209898652e-21,1.5322816818808144e-34,3.3881317890172014e-21,1.2487512321968097e-05,15.0,4.0,13.0,0.04049800708889961,-0.004562055692076683,-0.013379121199250221,-0.005178571213036776,0.00014140272105578333,0.0005769230774603784,0.00020604395831469446,0.0012820513220503926,0.0006593406433239579,0.00018315018678549677,-0.004562055692076683,0.001282595912925899,0.0005769230774603784,0.00020604395831469446,-6.526279321406037e-05,-8.241758041549474e-05,-2.943485014839098e-05,-1.2181807196982949e-18,-1.7448878713438587e-19,-1.0333801956502464e-19,-0.013379121199250221,0.0005769230774603784,0.017893772572278976,0.0006593406433239579,-3.9857328169531404e-19,-0.0003846153849735856,6.776263578034403e-21,-0.003846153849735856,-0.00043956044828519225,0.0,-0.005178571213036776,0.00020604395831469446,0.0006593406433239579,0.0016955960309132934,-1.4173722993989937e-19,-1.7648342655280666e-20,-3.4340660931775346e-05,-2.3442533026853556e-33,-0.00010989011207129806,-9.990009857574478e-05,0.00014140272105578333,-6.526279321406037e-05,-3.9857328169531404e-19,-1.4173722993989937e-19,4.6616278268629685e-06,1.4258285086399865e-20,5.203951157213435e-21,7.728667056865741e-20,1.1292052568288787e-20,7.262489874057162e-21,0.0005769230774603784,-8.241758041549474e-05,-0.0003846153849735856,-1.7648342655280666e-20,1.4258285086399865e-20,5.494505603564903e-05,-4.786856440495116e-22,9.077821900394457e-20,1.3405032936473645e-20,-5.461304872772963e-23,0.00020604395831469446,-2.943485014839098e-05,6.776263578034403e-21,-3.4340660931775346e-05,5.203951157213435e-21,-4.786856440495116e-22,4.905808509647613e-06,8.673998643450954e-35,-9.23604204336121e-22,4.235164736271502e-22,0.0012820513220503926,-1.2181807196982949e-18,-0.003846153849735856,-2.3442533026853556e-33,7.728667056865741e-20,9.077821900394457e-20,8.673998643450954e-35,0.0012820513220503926,1.9661653711414558e-34,1.200857707739942e-34,0.0006593406433239579,-1.7448878713438587e-19,-0.00043956044828519225,-0.00010989011207129806,1.1292052568288787e-20,1.3405032936473645e-20,-9.23604204336121e-22,1.9661653711414558e-34,7.326007471419871e-05,-8.470329472543003e-22,0.00018315018678549677,-1.0333801956502464e-19,0.0,-9.990009857574478e-05,7.262489874057162e-21,-5.461304872772963e-23,4.235164736271502e-22,1.200857707739942e-34,-8.470329472543003e-22,8.325007911480498e-06,15.0,4.0,14.0,0.0379173681139946,-0.004248949699103832,-0.01246428582817316,-0.004517856985330582,0.00013130252773407847,0.0005357142654247582,0.00017857142665889114,0.0011904762359336019,0.0005714285653084517,0.00014880952949170023,-0.004248949699103832,0.0011928040767088532,0.0005357142654247582,0.00017857142665889114,-6.0601163568207994e-05,-7.653061038581654e-05,-2.551020406826865e-05,5.091409890610229e-19,-3.7269449679189215e-20,-1.6940658945086007e-20,-0.01246428582817316,0.0005357142654247582,0.01664285734295845,0.0005714285653084517,2.0664972444681244e-19,-0.0003571428533177823,-2.439454888092385e-19,-0.0035714285913854837,-0.0003809523768723011,-1.4907779871675686e-19,-0.004517856985330582,0.00017857142665889114,0.0005714285653084517,0.0013646978186443448,3.991697370781016e-20,-3.2906488123217685e-19,-2.7472528017824516e-05,-8.361283803353786e-19,-8.791208529146388e-05,-7.440476474585012e-05,0.00013130252773407847,-6.0601163568207994e-05,2.0664972444681244e-19,3.991697370781016e-20,4.328654540586285e-06,2.725249117838952e-21,1.5659135850545982e-21,-6.952350297166482e-20,-4.4387400242519106e-21,-3.726549633747258e-21,0.0005357142654247582,-7.653061038581654e-05,-0.0003571428533177823,-3.2906488123217685e-19,2.725249117838952e-21,5.10204081365373e-05,1.1170500639096107e-20,1.206452229190482e-19,2.4564658250777953e-20,1.4248045495145253e-20,0.00017857142665889114,-2.551020406826865e-05,-2.439454888092385e-19,-2.7472528017824516e-05,1.5659135850545982e-21,1.1170500639096107e-20,3.924646989617031e-06,3.485786599560195e-20,5.372590585113766e-21,6.1409888675936775e-21,0.0011904762359336019,5.091409890610229e-19,-0.0035714285913854837,-8.361283803353786e-19,-6.952350297166482e-20,1.206452229190482e-19,3.485786599560195e-20,0.0011904762359336019,1.9191966691468319e-19,1.6521176592532187e-20,0.0005714285653084517,-3.7269449679189215e-20,-0.0003809523768723011,-8.791208529146388e-05,-4.4387400242519106e-21,2.4564658250777953e-20,5.372590585113766e-21,1.9191966691468319e-19,5.860805686097592e-05,-5.082197683525802e-21,0.00014880952949170023,-1.6940658945086007e-20,-1.4907779871675686e-19,-7.440476474585012e-05,-3.726549633747258e-21,1.4248045495145253e-20,6.1409888675936775e-21,1.6521176592532187e-20,-5.082197683525802e-21,5.723443337046774e-06,15.0,4.0,15.0,0.03564644604921341,-0.003976102918386459,-0.011666666716337204,-0.003976102918386459,0.00012254902685526758,0.0005000000237487257,0.00015624999650754035,0.0011111111380159855,0.0005000000237487257,0.00012254902685526758,-0.003976102918386459,0.0011147718178108335,0.0005000000237487257,0.00015624999650754035,-5.656108623952605e-05,-7.142857066355646e-05,-2.2321428332361393e-05,-1.0557566719907246e-18,-1.1519648082658485e-19,-5.929230630780102e-20,-0.011666666716337204,0.0005000000237487257,0.015555555932223797,0.0005000000237487257,-3.3871285740305394e-19,-0.00033333332976326346,1.6940658945086007e-21,-0.0033333334140479565,-0.00033333332976326346,-3.049318610115481e-20,-0.003976102918386459,0.00015624999650754035,0.0005000000237487257,0.0011147718178108335,-9.915282170763017e-20,1.7404388998062878e-20,-2.2321428332361393e-05,-1.625818155098644e-33,-7.142857066355646e-05,-5.656108623952605e-05,0.00012254902685526758,-5.656108623952605e-05,-3.3871285740305394e-19,-9.915282170763017e-20,4.040077783429297e-06,1.1430516463599055e-20,3.1618718401414143e-21,6.69817837444425e-20,8.319930427281104e-21,4.552287123092936e-21,0.0005000000237487257,-7.142857066355646e-05,-0.00033333332976326346,1.7404388998062878e-20,1.1430516463599055e-20,4.761904710903764e-05,-1.0210007834706011e-21,7.867445345432265e-20,-6.367448543428892e-21,-1.7306887241681627e-23,0.00015624999650754035,-2.2321428332361393e-05,1.6940658945086007e-21,-2.2321428332361393e-05,3.1618718401414143e-21,-1.0210007834706011e-21,3.188775508533581e-06,5.261020820404263e-35,1.1727256199242516e-21,-1.0587911840678754e-21,0.0011111111380159855,-1.0557566719907246e-18,-0.0033333334140479565,-1.625818155098644e-33,6.69817837444425e-20,7.867445345432265e-20,5.261020820404263e-35,0.0011111111380159855,1.2134493874125343e-34,7.691039132239448e-35,0.0005000000237487257,-1.1519648082658485e-19,-0.00033333332976326346,-7.142857066355646e-05,8.319930427281104e-21,-6.367448543428892e-21,1.1727256199242516e-21,1.2134493874125343e-34,4.761904710903764e-05,5.505714157152952e-21,0.00012254902685526758,-5.929230630780102e-20,-3.049318610115481e-20,-5.656108623952605e-05,4.552287123092936e-21,-1.7306887241681627e-23,-1.0587911840678754e-21,7.691039132239448e-35,5.505714157152952e-21,4.040077783429297e-06,15.0,4.0,16.0,0.0336325578391552,-0.0037362133152782917,-0.010965073481202126,-0.003526348154991865,0.00011488970631035045,0.00046874998952262104,0.00013786765339318663,0.0010416667209938169,0.00044117646757513285,0.00010212418419541791,-0.0037362133152782917,0.001046329620294273,0.00046874998952262104,0.00013786765339318663,-5.3026018576929346e-05,-6.696428317809477e-05,-1.969537879631389e-05,-1.2128076646318801e-18,-1.0503208545953324e-19,-6.098637220230962e-20,-0.010965073481202126,0.00046874998952262104,0.014601715840399265,0.00044117646757513285,-3.1446491077606863e-19,-0.0003124999930150807,1.6940658945086007e-21,-0.0031250000465661287,-0.00029411763534881175,4.0657581468206416e-20,-0.003526348154991865,0.00013786765339318663,0.00044117646757513285,0.0009224439854733646,-8.564586703343421e-20,-3.0403517784049503e-20,-1.8382352209300734e-05,-1.585299048496792e-33,-5.8823530707741156e-05,-4.376750803203322e-05,0.00011488970631035045,-5.3026018576929346e-05,-3.1446491077606863e-19,-8.564586703343421e-20,3.7875727230129996e-06,9.89316252107804e-21,2.3885183499734626e-21,6.279542266431163e-20,7.579680519435004e-21,3.8249594889372764e-21,0.00046874998952262104,-6.696428317809477e-05,-0.0003124999930150807,-3.0403517784049503e-20,9.89316252107804e-21,4.4642856664722785e-05,2.0269701442474652e-21,2.2244789186959786e-19,1.0197340419885943e-20,-1.4643948416588783e-24,0.00013786765339318663,-1.969537879631389e-05,1.6940658945086007e-21,-1.8382352209300734e-05,2.3885183499734626e-21,2.0269701442474652e-21,2.626050445542205e-06,4.908963132192242e-35,-2.3742882584981363e-21,7.411538288475128e-22,0.0010416667209938169,-1.2128076646318801e-18,-0.0031250000465661287,-1.585299048496792e-33,6.279542266431163e-20,2.2244789186959786e-19,4.908963132192242e-35,0.0010416667209938169,1.7009830291455635e-34,6.56853328872847e-35,0.00044117646757513285,-1.0503208545953324e-19,-0.00029411763534881175,-5.8823530707741156e-05,7.579680519435004e-21,1.0197340419885943e-20,-2.3742882584981363e-21,1.7009830291455635e-34,3.9215687138494104e-05,-5.082197683525802e-21,0.00010212418419541791,-6.098637220230962e-20,4.0657581468206416e-20,-4.376750803203322e-05,3.8249594889372764e-21,-1.4643948416588783e-24,7.411538288475128e-22,6.56853328872847e-35,-5.082197683525802e-21,2.9178338536439696e-06,15.0,5.0,3.0,0.10927404463291168,-0.014362744987010956,-0.035476189106702805,-0.050833333283662796,0.0004901961074210703,0.0016666667070239782,0.0024999999441206455,0.0031746032182127237,0.006666666828095913,0.006666666828095913,-0.014362744987010956,0.004238849505782127,0.0016666667070239782,0.0024999999441206455,-0.0002262443449581042,-0.0002380952355451882,-0.0003571428533177823,1.9719452271769083e-18,-3.3259846756203267e-19,-2.8323346597821024e-18,-0.035476189106702805,0.0016666667070239782,0.03678571432828903,0.006666666828095913,4.094672503626374e-19,-0.0008333333535119891,1.0144310387803051e-19,-0.0063492064364254475,-0.0033333334140479565,-2.035525224189878e-17,-0.050833333283662796,0.0024999999441206455,0.006666666828095913,0.11749999970197678,-1.776486816978238e-19,-5.5804457895940555e-19,-0.0024999999441206455,-7.674266567453608e-18,-0.006666666828095913,-0.03999999910593033,0.0004901961074210703,-0.0002262443449581042,4.094672503626374e-19,-1.776486816978238e-19,1.6160311133717187e-05,2.380843301345514e-21,8.815576404088024e-21,-1.0495129964049007e-19,-5.774358024744454e-21,5.767313257047115e-20,0.0016666667070239782,-0.0002380952355451882,-0.0008333333535119891,-5.5804457895940555e-19,2.380843301345514e-21,0.0001190476177725941,5.964793742564914e-21,-2.5094418642386724e-19,4.625929381285527e-20,2.0393315991761173e-19,0.0024999999441206455,-0.0003571428533177823,1.0144310387803051e-19,-0.0024999999441206455,8.815576404088024e-21,5.964793742564914e-21,0.0003571428533177823,-8.610440297377562e-20,1.6912515417213597e-19,1.2984899276122667e-18,0.0031746032182127237,1.9719452271769083e-18,-0.0063492064364254475,-7.674266567453608e-18,-1.0495129964049007e-19,-2.5094418642386724e-19,-8.610440297377562e-20,0.0015873016091063619,1.4581875880208622e-19,3.96539218719652e-18,0.006666666828095913,-3.3259846756203267e-19,-0.0033333334140479565,-0.006666666828095913,-5.774358024744454e-21,4.625929381285527e-20,1.6912515417213597e-19,1.4581875880208622e-19,0.0033333334140479565,2.4501474382805517e-18,0.006666666828095913,-2.8323346597821024e-18,-2.035525224189878e-17,-0.03999999910593033,5.767313257047115e-20,2.0393315991761173e-19,1.2984899276122667e-18,3.96539218719652e-18,2.4501474382805517e-18,0.019999999552965164,15.0,5.0,4.0,0.0892471969127655,-0.011147058568894863,-0.02760714292526245,-0.032499998807907104,0.0003676470660138875,0.0012499999720603228,0.001500000013038516,0.0023809524718672037,0.004000000189989805,0.0033333334140479565,-0.011147058568894863,0.0032327084336429834,0.0012499999720603228,0.001500000013038516,-0.00016968326235655695,-0.00017857142665889114,-0.00021428571199066937,7.127109649909355e-19,-2.801322107653841e-19,-2.5081933902003884e-18,-0.02760714292526245,0.0012499999720603228,0.028089284896850586,0.004000000189989805,6.286182491110175e-21,-0.0006249999860301614,-9.93360680627048e-19,-0.004761904943734407,-0.0020000000949949026,-4.548154163629929e-18,-0.032499998807907104,0.001500000013038516,0.004000000189989805,0.04500000178813934,-7.870863281572728e-20,-7.739760970596755e-20,-0.0010000000474974513,-5.2155561554719074e-18,-0.0026666666381061077,-0.009999999776482582,0.0003676470660138875,-0.00016968326235655695,6.286182491110175e-21,-7.870863281572728e-20,1.212023289554054e-05,4.445853858299223e-21,7.720549216194071e-21,-2.066872803853269e-20,2.929904425818368e-20,-1.7662847396568754e-20,0.0012499999720603228,-0.00017857142665889114,-0.0006249999860301614,-7.739760970596755e-20,4.445853858299223e-21,8.928571332944557e-05,1.366431124544997e-20,-2.9326367714026926e-19,-9.251858762571054e-20,4.344881197238711e-20,0.001500000013038516,-0.00021428571199066937,-9.93360680627048e-19,-0.0010000000474974513,7.720549216194071e-21,1.366431124544997e-20,0.0001428571413271129,2.102615310433428e-19,7.675655280917462e-21,1.4771228896155432e-18,0.0023809524718672037,7.127109649909355e-19,-0.004761904943734407,-5.2155561554719074e-18,-2.066872803853269e-20,-2.9326367714026926e-19,2.102615310433428e-19,0.0011904762359336019,6.233113523377357e-19,8.97982930289351e-19,0.004000000189989805,-2.801322107653841e-19,-0.0020000000949949026,-0.0026666666381061077,2.929904425818368e-20,-9.251858762571054e-20,7.675655280917462e-21,6.233113523377357e-19,0.0013333333190530539,4.7016725094419055e-34,0.0033333334140479565,-2.5081933902003884e-18,-4.548154163629929e-18,-0.009999999776482582,-1.7662847396568754e-20,4.344881197238711e-20,1.4771228896155432e-18,8.97982930289351e-19,4.7016725094419055e-34,0.0033333334140479565,15.0,5.0,5.0,0.07554061710834503,-0.00911764707416296,-0.02261904813349247,-0.02261904813349247,0.00029411763534881175,0.0010000000474974513,0.0010000000474974513,0.0019047618843615055,0.0026666666381061077,0.0019047618843615055,-0.00911764707416296,0.0026147381868213415,0.0010000000474974513,0.0010000000474974513,-0.00013574660988524556,-0.0001428571413271129,-0.0001428571413271129,-1.0975079930238793e-18,-2.211077041808971e-19,-9.309904352599372e-19,-0.02261904813349247,0.0010000000474974513,0.022738095372915268,0.0026666666381061077,-2.83404382172279e-19,-0.0005000000237487257,6.2755939007229e-19,-0.003809523768723011,-0.0013333333190530539,4.840953766597162e-18,-0.02261904813349247,0.0010000000474974513,0.0026666666381061077,0.022738095372915268,-2.1669130934229406e-19,4.2572688116965086e-19,-0.0005000000237487257,3.74874159065e-18,-0.0013333333190530539,-0.003809523768723011,0.00029411763534881175,-0.00013574660988524556,-2.83404382172279e-19,-2.1669130934229406e-19,9.69618577073561e-06,6.99046539038799e-21,4.251578697655067e-21,5.603691115770444e-20,1.0243947685318044e-20,4.330465636360414e-20,0.0010000000474974513,-0.0001428571413271129,-0.0005000000237487257,4.2572688116965086e-19,6.99046539038799e-21,7.142857066355646e-05,2.5445531690035552e-21,3.506580433819615e-19,4.158756835243757e-20,-1.3077090881837175e-19,0.0010000000474974513,-0.0001428571413271129,6.2755939007229e-19,-0.0005000000237487257,4.251578697655067e-21,2.5445531690035552e-21,7.142857066355646e-05,-1.4483248809328451e-19,-2.4114730158685926e-20,2.0125499466340938e-19,0.0019047618843615055,-1.0975079930238793e-18,-0.003809523768723011,3.74874159065e-18,5.603691115770444e-20,3.506580433819615e-19,-1.4483248809328451e-19,0.0009523809421807528,3.108802201939935e-19,-8.348951574396386e-19,0.0026666666381061077,-2.211077041808971e-19,-0.0013333333190530539,-0.0013333333190530539,1.0243947685318044e-20,4.158756835243757e-20,-2.4114730158685926e-20,3.108802201939935e-19,0.0006666666595265269,-2.887284784861883e-19,0.0019047618843615055,-9.309904352599372e-19,4.840953766597162e-18,-0.003809523768723011,4.330465636360414e-20,-1.3077090881837175e-19,2.0125499466340938e-19,-8.348951574396386e-19,-2.887284784861883e-19,0.0009523809421807528,15.0,5.0,6.0,0.06552987545728683,-0.007717086933553219,-0.019166667014360428,-0.01666666753590107,0.00024509805371053517,0.0008333333535119891,0.0007142857066355646,0.0015873016091063619,0.0019047618843615055,0.0011904762359336019,-0.007717086933553219,0.002195955254137516,0.0008333333535119891,0.0007142857066355646,-0.0001131221724790521,-0.0001190476177725941,-0.0001020408162730746,9.859726135884542e-19,2.9097347251805135e-19,1.4737821139165947e-18,-0.019166667014360428,0.0008333333535119891,0.019107142463326454,0.0019047618843615055,1.7175606673384623e-19,-0.00041666667675599456,6.983046840451354e-19,-0.0031746032182127237,-0.0009523809421807528,3.764228066078218e-18,-0.01666666753590107,0.0007142857066355646,0.0019047618843615055,0.013214285485446453,1.4922103020969924e-19,1.2191875019013485e-18,-0.0002857142826542258,2.8049483640616967e-18,-0.0007619047537446022,-0.0017857142956927419,0.00024509805371053517,-0.0001131221724790521,1.7175606673384623e-19,1.4922103020969924e-19,8.080155566858593e-06,-1.652117578473862e-21,-2.9469429504687025e-23,-4.1461533168948336e-20,2.2619552733882312e-21,-3.0707732841361486e-20,0.0008333333535119891,-0.0001190476177725941,-0.00041666667675599456,1.2191875019013485e-18,-1.652117578473862e-21,5.952380888629705e-05,-3.0974908948041846e-20,-1.210055763980887e-19,-8.424577054653123e-22,-1.8299584859600506e-19,0.0007142857066355646,-0.0001020408162730746,6.983046840451354e-19,-0.0002857142826542258,-2.9469429504687025e-23,-3.0974908948041846e-20,4.0816325054038316e-05,-4.810215205122111e-20,-1.0810275437674054e-19,-2.366720121348773e-19,0.0015873016091063619,9.859726135884542e-19,-0.0031746032182127237,2.8049483640616967e-18,-4.1461533168948336e-20,-1.210055763980887e-19,-4.810215205122111e-20,0.0007936508045531809,-3.0980118893431223e-19,-3.225223737253711e-19,0.0019047618843615055,2.9097347251805135e-19,-0.0009523809421807528,-0.0007619047537446022,2.2619552733882312e-21,-8.424577054653123e-22,-1.0810275437674054e-19,-3.0980118893431223e-19,0.0003809523768723011,-4.54112126726685e-19,0.0011904762359336019,1.4737821139165947e-18,3.764228066078218e-18,-0.0017857142956927419,-3.0707732841361486e-20,-1.8299584859600506e-19,-2.366720121348773e-19,-3.225223737253711e-19,-4.54112126726685e-19,0.0003571428533177823,15.0,5.0,7.0,0.05788331851363182,-0.0066911764442920685,-0.016632653772830963,-0.012797619216144085,0.0002100840356433764,0.0007142857066355646,0.0005357142654247582,0.0013605442363768816,0.0014285714132711291,0.0007936508045531809,-0.0066911764442920685,0.001893180306069553,0.0007142857066355646,0.0005357142654247582,-9.696186316432431e-05,-0.0001020408162730746,-7.653061038581654e-05,-7.533417147880222e-19,-5.778647053155769e-19,-1.2774554484180792e-18,-0.016632653772830963,0.0007142857066355646,0.01647959090769291,0.0014285714132711291,1.7397045508304483e-19,-0.0003571428533177823,-8.340395424935291e-19,-0.002721088472753763,-0.0007142857066355646,-1.754689754807459e-18,-0.012797619216144085,0.0005357142654247582,0.0014285714132711291,0.008392857387661934,-1.8895563321066134e-19,-1.223220110785121e-18,-0.00017857142665889114,-5.227559786930971e-18,-0.0004761904710903764,-0.0009523809421807528,0.0002100840356433764,-9.696186316432431e-05,1.7397045508304483e-19,-1.8895563321066134e-19,6.925847173988586e-06,-1.1942727055289777e-20,1.3321991151946388e-21,-2.8534722909836147e-20,1.018126290452301e-20,2.428586445701777e-20,0.0007142857066355646,-0.0001020408162730746,-0.0003571428533177823,-1.223220110785121e-18,-1.1942727055289777e-20,5.10204081365373e-05,1.1028288581635208e-20,3.186834285025125e-19,1.0674675332117324e-19,1.5045209468102836e-19,0.0005357142654247582,-7.653061038581654e-05,-8.340395424935291e-19,-0.00017857142665889114,1.3321991151946388e-21,1.1028288581635208e-20,2.551020406826865e-05,1.4091357776964676e-19,5.991824938695639e-20,1.9279751233975509e-19,0.0013605442363768816,-7.533417147880222e-19,-0.002721088472753763,-5.227559786930971e-18,-2.8534722909836147e-20,3.186834285025125e-19,1.4091357776964676e-19,0.0006802721181884408,1.2610342588976765e-18,2.463673702452172e-19,0.0014285714132711291,-5.778647053155769e-19,-0.0007142857066355646,-0.0004761904710903764,1.018126290452301e-20,1.0674675332117324e-19,5.991824938695639e-20,1.2610342588976765e-18,0.0002380952355451882,-1.0178202820932704e-19,0.0007936508045531809,-1.2774554484180792e-18,-1.754689754807459e-18,-0.0009523809421807528,2.428586445701777e-20,1.5045209468102836e-19,1.9279751233975509e-19,2.463673702452172e-19,-1.0178202820932704e-19,0.00015873015217948705,15.0,5.0,8.0,0.05184582248330116,-0.005906862672418356,-0.014692460186779499,-0.010138888843357563,0.00018382353300694376,0.0006249999860301614,0.00041666667675599456,0.0011904762359336019,0.0011111111380159855,0.0005555555690079927,-0.005906862672418356,0.0016639733221381903,0.0006249999860301614,0.00041666667675599456,-8.484163117827848e-05,-8.928571332944557e-05,-5.952380888629705e-05,7.394794601913406e-19,2.4459704863798886e-19,1.9259972570047541e-19,-0.014692460186779499,0.0006249999860301614,0.014489087276160717,0.0011111111380159855,6.098637220230962e-20,-0.0003124999930150807,3.6853207225073703e-19,-0.0023809524718672037,-0.0005555555690079927,1.1477360541793242e-18,-0.010138888843357563,0.00041666667675599456,0.0011111111380159855,0.005674603395164013,-1.6940658945086007e-20,5.885098477148867e-19,-0.0001190476177725941,1.8702446116344324e-18,-0.0003174603043589741,-0.0005555555690079927,0.00018382353300694376,-8.484163117827848e-05,6.098637220230962e-20,-1.6940658945086007e-20,6.06011644777027e-06,4.3994752250012025e-36,2.541098841762901e-21,-1.4574974091972632e-20,2.0396011326263744e-22,-1.075821592917217e-21,0.0006249999860301614,-8.928571332944557e-05,-0.0003124999930150807,5.885098477148867e-19,4.3994752250012025e-36,4.4642856664722785e-05,-6.776263578034403e-21,-1.4913160423066402e-19,-4.543052669373676e-20,-5.94762312094719e-20,0.00041666667675599456,-5.952380888629705e-05,3.6853207225073703e-19,-0.0001190476177725941,2.541098841762901e-21,-6.776263578034403e-21,1.70068033185089e-05,-4.4158904522998403e-20,-3.933895540539459e-20,-1.2185248494513368e-20,0.0011904762359336019,7.394794601913406e-19,-0.0023809524718672037,1.8702446116344324e-18,-1.4574974091972632e-20,-1.4913160423066402e-19,-4.4158904522998403e-20,0.0005952381179668009,-4.559575278991996e-20,-1.812333335058077e-19,0.0011111111380159855,2.4459704863798886e-19,-0.0005555555690079927,-0.0003174603043589741,2.0396011326263744e-22,-4.543052669373676e-20,-3.933895540539459e-20,-4.559575278991996e-20,0.00015873015217948705,-1.4401947537210216e-21,0.0005555555690079927,1.9259972570047541e-19,1.1477360541793242e-18,-0.0005555555690079927,-1.075821592917217e-21,-5.94762312094719e-20,-1.2185248494513368e-20,-1.812333335058077e-19,-1.4401947537210216e-21,7.936507608974352e-05,15.0,5.0,9.0,0.046954985707998276,-0.005287581589072943,-0.01315873023122549,-0.008232323452830315,0.0001633986976230517,0.0005555555690079927,0.00033333332976326346,0.0010582010727375746,0.0008888888987712562,0.0004040404164697975,-0.005287581589072943,0.0014843783574178815,0.0005555555690079927,0.00033333332976326346,-7.54147840780206e-05,-7.936507608974352e-05,-4.761904710903764e-05,1.4168814969524142e-18,3.912975044248742e-19,4.896815134519246e-19,-0.01315873023122549,0.0005555555690079927,0.012928571552038193,0.0008888888987712562,7.264592237594497e-19,-0.00027777778450399637,1.8537409948584585e-20,-0.002116402145475149,-0.0004444444493856281,1.3234163432873045e-19,-0.008232323452830315,0.00033333332976326346,0.0008888888987712562,0.00402056286111474,4.294286695071905e-19,1.5991020866751752e-21,-8.333333244081587e-05,-1.2540471676610176e-19,-0.00022222222469281405,-0.00034632033202797174,0.0001633986976230517,-7.54147840780206e-05,7.264592237594497e-19,4.294286695071905e-19,5.386770226323279e-06,-2.3957189410498654e-20,-1.4045260229273318e-20,-1.080695185182221e-19,-3.077317704498121e-20,-3.380156604689454e-20,0.0005555555690079927,-7.936507608974352e-05,-0.00027777778450399637,1.5991020866751752e-21,-2.3957189410498654e-20,3.968253804487176e-05,-4.658681209898652e-21,4.678688640964778e-20,1.444704220918821e-20,1.5199593098007054e-34,0.00033333332976326346,-4.761904710903764e-05,1.8537409948584585e-20,-8.333333244081587e-05,-1.4045260229273318e-20,-4.658681209898652e-21,1.190476177725941e-05,2.9048524249008578e-22,2.6984586441911773e-21,-4.114900430024534e-21,0.0010582010727375746,1.4168814969524142e-18,-0.002116402145475149,-1.2540471676610176e-19,-1.080695185182221e-19,4.678688640964778e-20,2.9048524249008578e-22,0.0005291005363687873,6.168565647499518e-20,6.665990609578143e-34,0.0008888888987712562,3.912975044248742e-19,-0.0004444444493856281,-0.00022222222469281405,-3.077317704498121e-20,1.444704220918821e-20,2.6984586441911773e-21,6.168565647499518e-20,0.00011111111234640703,-3.308540858218261e-20,0.0004040404164697975,4.896815134519246e-19,1.3234163432873045e-19,-0.00034632033202797174,-3.380156604689454e-20,1.5199593098007054e-34,-4.114900430024534e-21,6.665990609578143e-34,-3.308540858218261e-20,4.329004150349647e-05,15.0,5.0,10.0,0.04291100054979324,-0.0047860960476100445,-0.011915584094822407,-0.006818181835114956,0.00014705881767440587,0.0005000000237487257,0.00027272728038951755,0.0009523809421807528,0.0007272727089002728,0.0003030303050763905,-0.0047860960476100445,0.001339836628176272,0.0005000000237487257,0.00027272728038951755,-6.787330494262278e-05,-7.142857066355646e-05,-3.8961039535934106e-05,-7.852915142490947e-19,-1.4217582953500854e-19,-1.4605683172213663e-19,-0.011915584094822407,0.0005000000237487257,0.01167207770049572,0.0007272727089002728,-3.2830483149621133e-19,-0.0002500000118743628,3.2660357300778264e-20,-0.0019047618843615055,-0.0003636363544501364,-8.576169848019322e-34,-0.006818181835114956,0.00027272728038951755,0.0007272727089002728,0.0029545454308390617,-1.710664695216155e-19,3.441561840474445e-20,-6.060606028768234e-05,-1.6505551480147528e-33,-0.0001616161607671529,-0.00022727272880729288,0.00014705881767440587,-6.787330494262278e-05,-3.2830483149621133e-19,-1.710664695216155e-19,4.848092885367805e-06,1.103662339565896e-20,4.645741568646522e-21,4.9211103984622087e-20,1.2526462920572193e-20,1.2395979217909788e-20,0.0005000000237487257,-7.142857066355646e-05,-0.0002500000118743628,3.441561840474445e-20,1.103662339565896e-20,3.571428533177823e-05,-2.541098841762901e-21,4.8168035694541255e-20,-8.737480537622788e-21,2.98810950964951e-35,0.00027272728038951755,-3.8961039535934106e-05,3.2660357300778264e-20,-6.060606028768234e-05,4.645741568646522e-21,-2.541098841762901e-21,8.658008482598234e-06,4.3594278457746624e-35,-3.4932661217552644e-21,-6.108195276053141e-21,0.0009523809421807528,-7.852915142490947e-19,-0.0019047618843615055,-1.6505551480147528e-33,4.9211103984622087e-20,4.8168035694541255e-20,4.3594278457746624e-35,0.0004761904710903764,1.0647724257019246e-34,1.2582675202194081e-34,0.0007272727089002728,-1.4217582953500854e-19,-0.0003636363544501364,-0.0001616161607671529,1.2526462920572193e-20,-8.737480537622788e-21,-3.4932661217552644e-21,1.0647724257019246e-34,8.080808038357645e-05,3.2253848810729117e-35,0.0003030303050763905,-1.4605683172213663e-19,-8.576169848019322e-34,-0.00022727272880729288,1.2395979217909788e-20,2.98810950964951e-35,-6.108195276053141e-21,1.2582675202194081e-34,3.2253848810729117e-35,2.5252526029362343e-05,15.0,5.0,11.0,0.039510637521743774,-0.004371657967567444,-0.010887445881962776,-0.005740093067288399,0.0001336898421868682,0.00045454545761458576,0.00022727272880729288,0.0008658008882775903,0.000606060610152781,0.00023310023243539035,-0.004371657967567444,0.0012209848500788212,0.00045454545761458576,0.00022727272880729288,-6.170300184749067e-05,-6.49350622552447e-05,-3.246753112762235e-05,-7.139013812899759e-19,-1.3485219211131424e-19,-1.5407692937220644e-19,-0.010887445881962776,0.00045454545761458576,0.010638528503477573,0.000606060610152781,-2.8432754158528233e-19,-0.00022727272880729288,2.1725299405878598e-20,-0.0017316017765551805,-0.0003030303050763905,-5.993609218440237e-34,-0.005740093067288399,0.00022727272880729288,0.000606060610152781,0.0022358198184520006,-1.5993351028074966e-19,2.3445898087887117e-20,-4.545454430626705e-05,-1.5827366544829917e-33,-0.00012121212057536468,-0.0001554001501062885,0.0001336898421868682,-6.170300184749067e-05,-2.8432754158528233e-19,-1.5993351028074966e-19,4.407357209856855e-06,7.537279435105992e-21,6.3305921541433994e-21,4.473736872746293e-20,1.0438718831212305e-20,9.368081354485162e-21,0.00045454545761458576,-6.49350622552447e-05,-0.00022727272880729288,2.3445898087887117e-20,7.537279435105992e-21,3.246753112762235e-05,-2.329340604949326e-21,4.378912247744452e-20,-4.0996525186548555e-21,1.6856002104573968e-35,0.00022727272880729288,-3.246753112762235e-05,2.1725299405878598e-20,-4.545454430626705e-05,6.3305921541433994e-21,-2.329340604949326e-21,6.493506589322351e-06,6.368217112733852e-35,-6.181148526722805e-22,4.5847584050002606e-21,0.0008658008882775903,-7.139013812899759e-19,-0.0017316017765551805,-1.5827366544829917e-33,4.473736872746293e-20,4.378912247744452e-20,6.368217112733852e-35,0.00043290044413879514,9.302204520666352e-35,9.509174178357617e-35,0.000606060610152781,-1.3485219211131424e-19,-0.0003030303050763905,-0.00012121212057536468,1.0438718831212305e-20,-4.0996525186548555e-21,-6.181148526722805e-22,9.302204520666352e-35,6.060606028768234e-05,2.0200382542807671e-35,0.00023310023243539035,-1.5407692937220644e-19,-5.993609218440237e-34,-0.0001554001501062885,9.368081354485162e-21,1.6856002104573968e-35,4.5847584050002606e-21,9.509174178357617e-35,2.0200382542807671e-35,1.554001573822461e-05,15.0,5.0,12.0,0.03661109134554863,-0.00402337871491909,-0.01002289354801178,-0.004899267572909594,0.00012254902685526758,0.00041666667675599456,0.0001923076924867928,0.0007936508045531809,0.0005128204938955605,0.00018315018678549677,-0.00402337871491909,0.0011215255362913013,0.00041666667675599456,0.0001923076924867928,-5.656108623952605e-05,-5.952380888629705e-05,-2.7472528017824516e-05,-6.54409621056973e-19,-1.2705494208814505e-19,-8.809142651444724e-20,-0.01002289354801178,0.00041666667675599456,0.00977335125207901,0.0005128204938955605,-2.674480164573428e-19,-0.00020833333837799728,3.218725199566341e-20,-0.0015873016091063619,-0.00025641024694778025,0.0,-0.004899267572909594,0.0001923076924867928,0.0005128204938955605,0.0017332667484879494,-1.3374428707837603e-19,-4.510107778098051e-21,-3.4965036320500076e-05,-1.3349544757796502e-33,-9.324009442934766e-05,-0.00010989011207129806,0.00012254902685526758,-5.656108623952605e-05,-2.674480164573428e-19,-1.3374428707837603e-19,4.040077783429297e-06,7.64447848820117e-21,4.6437366250133615e-21,4.100925278198936e-20,9.001307532174589e-21,7.513963281589653e-21,0.00041666667675599456,-5.952380888629705e-05,-0.00020833333837799728,-4.510107778098051e-21,7.64447848820117e-21,2.9761904443148524e-05,-1.7760892532963296e-21,4.014002812986391e-20,8.753225242036139e-21,2.413564241952123e-22,0.0001923076924867928,-2.7472528017824516e-05,3.218725199566341e-20,-3.4965036320500076e-05,4.6437366250133615e-21,-1.7760892532963296e-21,4.995004928787239e-06,4.563011069545101e-35,-3.374396874998413e-21,-2.964615315390051e-21,0.0007936508045531809,-6.54409621056973e-19,-0.0015873016091063619,-1.3349544757796502e-33,4.100925278198936e-20,4.014002812986391e-20,4.563011069545101e-35,0.00039682540227659047,9.585274810192638e-35,7.480509701128359e-35,0.0005128204938955605,-1.2705494208814505e-19,-0.00025641024694778025,-9.324009442934766e-05,9.001307532174589e-21,8.753225242036139e-21,-3.374396874998413e-21,9.585274810192638e-35,4.662004721467383e-05,8.470329472543003e-22,0.00018315018678549677,-8.809142651444724e-20,0.0,-0.00010989011207129806,7.513963281589653e-21,2.413564241952123e-22,-2.964615315390051e-21,7.480509701128359e-35,8.470329472543003e-22,9.990009857574478e-06,15.0,5.0,13.0,0.03410902991890907,-0.003726567607372999,-0.009285714477300644,-0.0042307693511247635,0.0001131221724790521,0.0003846153849735856,0.00016483516083098948,0.0007326007471419871,0.00043956044828519225,0.00014652014942839742,-0.003726567607372999,0.0010370657546445727,0.0003846153849735856,0.00016483516083098948,-5.221023457124829e-05,-5.494505603564903e-05,-2.3547880118712783e-05,-4.576316251367333e-19,-8.470329472543003e-20,-1.2366681029912785e-19,-0.009285714477300644,0.0003846153849735856,0.009038461372256279,0.00043956044828519225,-2.401230613492368e-19,-0.0001923076924867928,2.371692252312041e-20,-0.0014652014942839742,-0.00021978022414259613,1.0164395367051604e-20,-0.0042307693511247635,0.00016483516083098948,0.00043956044828519225,0.0013711288338527083,-1.101874369284817e-19,2.854235171228239e-20,-2.7472528017824516e-05,-1.1281535198948277e-33,-7.326007471419871e-05,-7.992007886059582e-05,0.0001131221724790521,-5.221023457124829e-05,-2.401230613492368e-19,-1.101874369284817e-19,3.72930230696511e-06,6.1880165895773746e-21,3.522169379477387e-21,3.785469611844182e-20,7.635280950647919e-21,5.761099708930164e-21,0.0003846153849735856,-5.494505603564903e-05,-0.0001923076924867928,2.854235171228239e-20,6.1880165895773746e-21,2.7472528017824516e-05,-2.2242785697355046e-21,-3.616706026072611e-20,-7.173503334722356e-21,2.649928299955215e-23,0.00016483516083098948,-2.3547880118712783e-05,2.371692252312041e-20,-2.7472528017824516e-05,3.522169379477387e-21,-2.2242785697355046e-21,3.924646989617031e-06,3.7609143933686216e-35,-1.2192444319607726e-21,6.988021814847978e-21,0.0007326007471419871,-4.576316251367333e-19,-0.0014652014942839742,-1.1281535198948277e-33,3.785469611844182e-20,-3.616706026072611e-20,3.7609143933686216e-35,0.00036630037357099354,8.174483568917302e-35,5.843362902894658e-35,0.00043956044828519225,-8.470329472543003e-20,-0.00021978022414259613,-7.326007471419871e-05,7.635280950647919e-21,-7.173503334722356e-21,-1.2192444319607726e-21,8.174483568917302e-35,3.6630037357099354e-05,-8.470329472543003e-22,0.00014652014942839742,-1.2366681029912785e-19,1.0164395367051604e-20,-7.992007886059582e-05,5.761099708930164e-21,2.649928299955215e-23,6.988021814847978e-21,5.843362902894658e-35,-8.470329472543003e-22,6.660006874881219e-06,15.0,5.0,14.0,0.031927771866321564,-0.003470588242635131,-0.008649660274386406,-0.003690476296469569,0.0001050420178216882,0.0003571428533177823,0.0001428571413271129,0.0006802721181884408,0.0003809523768723011,0.0001190476177725941,-0.003470588242635131,0.0009644473320804536,0.0003571428533177823,0.0001428571413271129,-4.848093158216216e-05,-5.10204081365373e-05,-2.0408162527019158e-05,-4.346564251291315e-19,-8.216219588366713e-20,-4.912791094074942e-20,-0.008649660274386406,0.0003571428533177823,0.008406462147831917,0.0003809523768723011,-2.5448009919919587e-19,-0.00017857142665889114,0.0,-0.0013605442363768816,-0.00019047618843615055,-3.3881317890172014e-21,-0.003690476296469569,0.0001428571413271129,0.0003809523768723011,0.0011034798808395863,-9.271380871262159e-20,8.614045641625556e-21,-2.197802132286597e-05,-9.480993767595316e-34,-5.860805686097592e-05,-5.952380888629705e-05,0.0001050420178216882,-4.848093158216216e-05,-2.5448009919919587e-19,-9.271380871262159e-20,3.462923586994293e-06,1.0473856235787336e-20,2.7863312361971645e-21,3.5150788098848024e-20,6.6041268078859775e-21,4.573396788481161e-21,0.0003571428533177823,-5.10204081365373e-05,-0.00017857142665889114,8.614045641625556e-21,1.0473856235787336e-20,2.551020406826865e-05,4.730075857590773e-24,-2.872731058971895e-20,-4.413153970812453e-21,-4.0128937730034914e-23,0.0001428571413271129,-2.0408162527019158e-05,0.0,-2.197802132286597e-05,2.7863312361971645e-21,4.730075857590773e-24,3.1397173643199494e-06,2.763518055175154e-35,-1.7787291226731102e-22,-2.117582368135751e-21,0.0006802721181884408,-4.346564251291315e-19,-0.0013605442363768816,-9.480993767595316e-34,3.5150788098848024e-20,-2.872731058971895e-20,2.763518055175154e-35,0.0003401360590942204,6.8063481936918e-35,4.752622096546953e-35,0.0003809523768723011,-8.216219588366713e-20,-0.00019047618843615055,-5.860805686097592e-05,6.6041268078859775e-21,-4.413153970812453e-21,-1.7787291226731102e-22,6.8063481936918e-35,2.930402843048796e-05,0.0,0.0001190476177725941,-4.912791094074942e-20,-3.3881317890172014e-21,-5.952380888629705e-05,4.573396788481161e-21,-4.0128937730034914e-23,-2.117582368135751e-21,4.752622096546953e-35,0.0,4.578754669637419e-06,15.0,5.0,15.0,0.03000922128558159,-0.003247549058869481,-0.008095238357782364,-0.003247549058869481,9.803921420825645e-05,0.00033333332976326346,0.0001250000059371814,0.0006349206087179482,0.00033333332976326346,9.803921420825645e-05,-0.003247549058869481,0.0009013413218781352,0.00033333332976326346,0.0001250000059371814,-4.5248867536429316e-05,-4.761904710903764e-05,-1.7857142665889114e-05,-4.1353589330184433e-19,-6.522153693858113e-20,-5.759824041329242e-20,-0.008095238357782364,0.00033333332976326346,0.007857142947614193,0.00033333332976326346,-2.326250826867499e-19,-0.00016666666488163173,6.776263578034403e-21,-0.0012698412174358964,-0.00016666666488163173,-3.3881317890172014e-21,-0.003247549058869481,0.0001250000059371814,0.00033333332976326346,0.0009013413218781352,-7.579536732180087e-20,5.472522727280695e-21,-1.7857142665889114e-05,-7.845202461284906e-34,-4.761904710903764e-05,-4.5248867536429316e-05,9.803921420825645e-05,-4.5248867536429316e-05,-2.326250826867499e-19,-7.579536732180087e-20,3.232061999369762e-06,9.081342910994063e-21,1.9711221243062812e-21,3.2807401579356635e-20,5.540376579110619e-21,3.596320789955224e-21,0.00033333332976326346,-4.761904710903764e-05,-0.00016666666488163173,5.472522727280695e-21,9.081342910994063e-21,2.380952355451882e-05,-5.2952473645273144e-24,-2.2883877329271352e-20,-2.616742852804063e-21,-6.635738269271935e-23,0.0001250000059371814,-1.7857142665889114e-05,6.776263578034403e-21,-1.7857142665889114e-05,1.9711221243062812e-21,-5.2952473645273144e-24,2.5510203158773948e-06,2.131523389771388e-35,-1.1340158492735966e-21,1.164670302474663e-21,0.0006349206087179482,-4.1353589330184433e-19,-0.0012698412174358964,-7.845202461284906e-34,3.2807401579356635e-20,-2.2883877329271352e-20,2.131523389771388e-35,0.0003174603043589741,5.596901111996202e-35,3.744357601355038e-35,0.00033333332976326346,-6.522153693858113e-20,-0.00016666666488163173,-4.761904710903764e-05,5.540376579110619e-21,-2.616742852804063e-21,-1.1340158492735966e-21,5.596901111996202e-35,2.380952355451882e-05,0.0,9.803921420825645e-05,-5.759824041329242e-20,-3.3881317890172014e-21,-4.5248867536429316e-05,3.596320789955224e-21,-6.635738269271935e-23,1.164670302474663e-21,3.744357601355038e-35,0.0,3.232061999369762e-06,15.0,5.0,16.0,0.028308531269431114,-0.003051470499485731,-0.007607668172568083,-0.002879902021959424,9.191176650347188e-05,0.0003124999930150807,0.00011029411689378321,0.0005952381179668009,0.00029411763534881175,8.169934881152585e-05,-0.003051470499485731,0.0008459922391921282,0.0003124999930150807,0.00011029411689378321,-4.242081558913924e-05,-4.4642856664722785e-05,-1.575630267325323e-05,-1.1242327510493957e-18,-1.7872395187065737e-19,1.2705494208814505e-20,-0.007607668172568083,0.0003124999930150807,0.007375262677669525,0.00029411763534881175,-4.382281910141355e-19,-0.00015624999650754035,2.879912020664621e-20,-0.0011904762359336019,-0.00014705881767440587,2.642742795433417e-19,-0.002879902021959424,0.00011029411689378321,0.00029411763534881175,0.0007457983447238803,-2.24724922994326e-20,-9.185652648058987e-20,-1.4705882676935289e-05,1.3494607969577842e-18,-3.9215687138494104e-05,-3.501400715322234e-05,9.191176650347188e-05,-4.242081558913924e-05,-4.382281910141355e-19,-2.24724922994326e-20,3.030058223885135e-06,1.3876919281095973e-20,1.5300538110823256e-21,5.766926162369834e-20,9.74491947684632e-21,-8.406328997975805e-22,0.0003124999930150807,-4.4642856664722785e-05,-0.00015624999650754035,-9.185652648058987e-20,1.3876919281095973e-20,2.2321428332361393e-05,5.622366818362103e-21,2.1174355435770227e-19,1.9256882598095258e-20,9.457911634200644e-22,0.00011029411689378321,-1.575630267325323e-05,2.879912020664621e-20,-1.4705882676935289e-05,1.5300538110823256e-21,5.622366818362103e-21,2.1008404473832343e-06,-1.7992810066033583e-20,-1.197399573452431e-21,-9.529120656610879e-22,0.0005952381179668009,-1.1242327510493957e-18,-0.0011904762359336019,1.3494607969577842e-18,5.766926162369834e-20,2.1174355435770227e-19,-1.7992810066033583e-20,0.00029761905898340046,-7.463684271278354e-20,-6.664003536683593e-20,0.00029411763534881175,-1.7872395187065737e-19,-0.00014705881767440587,-3.9215687138494104e-05,9.74491947684632e-21,1.9256882598095258e-20,-1.197399573452431e-21,-7.463684271278354e-20,1.9607843569247052e-05,-6.352747104407253e-22,8.169934881152585e-05,1.2705494208814505e-20,2.642742795433417e-19,-3.501400715322234e-05,-8.406328997975805e-22,9.457911634200644e-22,-9.529120656610879e-22,-6.664003536683593e-20,-6.352747104407253e-22,2.3342670374404406e-06,15.0,6.0,3.0,0.09509609639644623,-0.012167367152869701,-0.02619047649204731,-0.0431547611951828,0.00040849673678167164,0.0011904762359336019,0.0020833334419876337,0.0019841270986944437,0.004761904943734407,0.0055555556900799274,-0.012167367152869701,0.0035607190802693367,0.0011904762359336019,0.0020833334419876337,-0.0001885369565570727,-0.0001700680295471102,-0.00029761905898340046,6.979551485375435e-19,1.1102635060657702e-33,-2.0306097033997816e-18,-0.02619047649204731,0.0011904762359336019,0.021388888359069824,0.004761904943734407,8.131516293641283e-20,-0.0004761904710903764,0.0,-0.0029761905316263437,-0.0019047618843615055,-1.597839642978062e-17,-0.0431547611951828,0.0020833334419876337,0.004761904943734407,0.0987103208899498,-1.644865062426976e-19,-1.4150032024258535e-19,-0.0020833334419876337,-8.868774101803671e-18,-0.004761904943734407,-0.03333333507180214,0.00040849673678167164,-0.0001885369565570727,8.131516293641283e-20,-1.644865062426976e-19,1.3466925338434521e-05,8.470329472543003e-22,-8.470329472543003e-21,-2.710505431213761e-20,2.0328790734103208e-20,6.869072596527999e-20,0.0011904762359336019,-0.0001700680295471102,-0.0004761904710903764,-1.4150032024258535e-19,8.470329472543003e-22,6.80272132740356e-05,-1.0192100747693302e-19,-1.1180834903756764e-19,-6.098637220230962e-20,5.044310226531459e-19,0.0020833334419876337,-0.00029761905898340046,0.0,-0.0020833334419876337,-8.470329472543003e-21,-1.0192100747693302e-19,0.00029761905898340046,1.8325028418254754e-19,-7.429186316090918e-20,-5.902047924887961e-19,0.0019841270986944437,6.979551485375435e-19,-0.0029761905316263437,-8.868774101803671e-18,-2.710505431213761e-20,-1.1180834903756764e-19,1.8325028418254754e-19,0.0005952381179668009,-2.846030702774449e-19,4.1633365077804595e-18,0.004761904943734407,1.1102635060657702e-33,-0.0019047618843615055,-0.004761904943734407,2.0328790734103208e-20,-6.098637220230962e-20,-7.429186316090918e-20,-2.846030702774449e-19,0.0019047618843615055,-9.11272620805781e-18,0.0055555556900799274,-2.0306097033997816e-18,-1.597839642978062e-17,-0.03333333507180214,6.869072596527999e-20,5.044310226531459e-19,-5.902047924887961e-19,4.1633365077804595e-18,-9.11272620805781e-18,0.01666666753590107,15.0,6.0,4.0,0.07751750946044922,-0.009438024833798409,-0.020357143133878708,-0.027559524402022362,0.00030637255986221135,0.0008928571478463709,0.0012499999720603228,0.0014880952658131719,0.0028571428265422583,0.0027777778450399637,-0.009438024833798409,0.0027151822578161955,0.0008928571478463709,0.0012499999720603228,-0.00014140272105578333,-0.00012755101488437504,-0.00017857142665889114,-1.065929545959055e-18,-2.1553985841998376e-18,-4.137543361919831e-18,-0.020357143133878708,0.0008928571478463709,0.016327381134033203,0.0028571428265422583,-3.3243106688556725e-19,-0.0003571428533177823,-2.795094988604965e-18,-0.0022321429569274187,-0.0011428571306169033,-2.0060845427001356e-17,-0.027559524402022362,0.0012499999720603228,0.0028571428265422583,0.03781745955348015,-7.315449369605788e-19,-3.876304421634253e-18,-0.0008333333535119891,-8.619638881831275e-18,-0.0019047618843615055,-0.008333333767950535,0.00030637255986221135,-0.00014140272105578333,-3.3243106688556725e-19,-7.315449369605788e-19,1.0100194231199566e-05,9.39725158798116e-21,1.3329843511262281e-20,3.4593307140078497e-20,5.462963782885592e-20,1.58450181571986e-19,0.0008928571478463709,-0.00012755101488437504,-0.0003571428533177823,-3.876304421634253e-18,9.39725158798116e-21,5.10204081365373e-05,1.185782795140372e-19,-1.1277504206148084e-20,3.0663303548944585e-19,6.990697227141704e-19,0.0012499999720603228,-0.00017857142665889114,-2.795094988604965e-18,-0.0008333333535119891,1.3329843511262281e-20,1.185782795140372e-19,0.0001190476177725941,2.641141683960244e-19,2.8268403710571603e-19,-1.2687973489464866e-19,0.0014880952658131719,-1.065929545959055e-18,-0.0022321429569274187,-8.619638881831275e-18,3.4593307140078497e-20,-1.1277504206148084e-20,2.641141683960244e-19,0.00044642857392318547,-1.0452340169455581e-19,2.1404623906741207e-18,0.0028571428265422583,-2.1553985841998376e-18,-0.0011428571306169033,-0.0019047618843615055,5.462963782885592e-20,3.0663303548944585e-19,2.8268403710571603e-19,-1.0452340169455581e-19,0.0007619047537446022,1.958043629802342e-18,0.0027777778450399637,-4.137543361919831e-18,-2.0060845427001356e-17,-0.008333333767950535,1.58450181571986e-19,6.990697227141704e-19,-1.2687973489464866e-19,2.1404623906741207e-18,1.958043629802342e-18,0.0027777778450399637,15.0,6.0,5.0,0.06552987545728683,-0.007717086933553219,-0.01666666753590107,-0.019166667014360428,0.00024509805371053517,0.0007142857066355646,0.0008333333535119891,0.0011904762359336019,0.0019047618843615055,0.0015873016091063619,-0.007717086933553219,0.002195955254137516,0.0007142857066355646,0.0008333333535119891,-0.0001131221724790521,-0.0001020408162730746,-0.0001190476177725941,1.2683244084312594e-18,9.556350408400359e-20,1.5051779091624097e-19,-0.01666666753590107,0.0007142857066355646,0.013214285485446453,0.0019047618843615055,2.704984776106794e-19,-0.0002857142826542258,8.53251691099474e-19,-0.0017857142956927419,-0.0007619047537446022,-1.8067417492135833e-18,-0.019166667014360428,0.0008333333535119891,0.0019047618843615055,0.019107142463326454,5.3699689718715987e-20,-1.060938170121848e-19,-0.00041666667675599456,-5.481199108736295e-19,-0.0009523809421807528,-0.0031746032182127237,0.00024509805371053517,-0.0001131221724790521,2.704984776106794e-19,5.3699689718715987e-20,8.080155566858593e-06,-2.563716051895439e-21,-1.0218294786960922e-21,-4.777442373876246e-20,-3.452046839414695e-21,-1.0326224691285794e-20,0.0007142857066355646,-0.0001020408162730746,-0.0002857142826542258,-1.060938170121848e-19,-2.563716051895439e-21,4.0816325054038316e-05,-2.4071525319757802e-21,-9.523818945872297e-20,-2.4883909577545074e-20,4.7072250796281506e-20,0.0008333333535119891,-0.0001190476177725941,8.53251691099474e-19,-0.00041666667675599456,-1.0218294786960922e-21,-2.4071525319757802e-21,5.952380888629705e-05,-1.519958851226908e-19,-2.020223371596973e-20,-3.4827017974867405e-20,0.0011904762359336019,1.2683244084312594e-18,-0.0017857142956927419,-5.481199108736295e-19,-4.777442373876246e-20,-9.523818945872297e-20,-1.519958851226908e-19,0.0003571428533177823,1.4601549854090312e-19,3.1341333157296645e-19,0.0019047618843615055,9.556350408400359e-20,-0.0007619047537446022,-0.0009523809421807528,-3.452046839414695e-21,-2.4883909577545074e-20,-2.020223371596973e-20,1.4601549854090312e-19,0.0003809523768723011,-9.022764629575957e-20,0.0015873016091063619,1.5051779091624097e-19,-1.8067417492135833e-18,-0.0031746032182127237,-1.0326224691285794e-20,4.7072250796281506e-20,-3.4827017974867405e-20,3.1341333157296645e-19,-9.022764629575957e-20,0.0007936508045531809,15.0,6.0,6.0,0.05679549649357796,-0.006530112121254206,-0.014115646481513977,-0.014115646481513977,0.00020424836839083582,0.0005952381179668009,0.0005952381179668009,0.0009920635493472219,0.0013605442363768816,0.0009920635493472219,-0.006530112121254206,0.0018441351130604744,0.0005952381179668009,0.0005952381179668009,-9.426847827853635e-05,-8.50340147735551e-05,-8.50340147735551e-05,6.934711575332584e-19,4.63936137271671e-19,8.116573275875513e-19,-0.014115646481513977,0.0005952381179668009,0.011102607473731041,0.0013605442363768816,2.9971361150430295e-20,-0.0002380952355451882,1.1440931507616407e-18,-0.0014880952658131719,-0.0005442177061922848,3.95562194339135e-18,-0.014115646481513977,0.0005952381179668009,0.0013605442363768816,0.011102607473731041,5.0981448210070294e-20,1.2211743897327009e-18,-0.0002380952355451882,3.780264203023477e-18,-0.0005442177061922848,-0.0014880952658131719,0.00020424836839083582,-9.426847827853635e-05,2.9971361150430295e-20,5.0981448210070294e-20,6.7334626692172606e-06,1.1555261802710265e-21,-2.0859558363510604e-21,-1.2559233489996071e-20,5.8286906239540465e-21,-1.0867922979344324e-20,0.0005952381179668009,-8.50340147735551e-05,-0.0002380952355451882,1.2211743897327009e-18,1.1555261802710265e-21,3.40136066370178e-05,-4.4150587480433124e-20,-5.680774655337583e-20,-7.436968276197452e-20,-1.3679271905427243e-19,0.0005952381179668009,-8.50340147735551e-05,1.1440931507616407e-18,-0.0002380952355451882,-2.0859558363510604e-21,-4.4150587480433124e-20,3.40136066370178e-05,-1.1204916199339714e-19,-9.45722573668295e-20,-9.996510014446017e-20,0.0009920635493472219,6.934711575332584e-19,-0.0014880952658131719,3.780264203023477e-18,-1.2559233489996071e-20,-5.680774655337583e-20,-1.1204916199339714e-19,0.00029761905898340046,-2.2964133881969456e-19,-4.396738442309367e-19,0.0013605442363768816,4.63936137271671e-19,-0.0005442177061922848,-0.0005442177061922848,5.8286906239540465e-21,-7.436968276197452e-20,-9.45722573668295e-20,-2.2964133881969456e-19,0.00021768707665614784,-2.1956400421211416e-19,0.0009920635493472219,8.116573275875513e-19,3.95562194339135e-18,-0.0014880952658131719,-1.0867922979344324e-20,-1.3679271905427243e-19,-9.996510014446017e-20,-4.396738442309367e-19,-2.1956400421211416e-19,0.00029761905898340046,15.0,6.0,7.0,0.05013519152998924,-0.0056610144674777985,-0.01224489789456129,-0.010834750719368458,0.00017507003212813288,0.0005102040595375001,0.00044642857392318547,0.0008503401186317205,0.0010204081190750003,0.0006613756413571537,-0.0056610144674777985,0.0015897980192676187,0.0005102040595375001,0.00044642857392318547,-8.080155384959653e-05,-7.288629421964288e-05,-6.377550744218752e-05,3.5348744051659327e-19,3.2150866388468737e-19,9.0406167381585e-19,-0.01224489789456129,0.0005102040595375001,0.0095748296007514,0.0010204081190750003,7.307847321282485e-20,-0.0002040816325461492,5.22272636381667e-19,-0.0012755101779475808,-0.0004081632650922984,3.6585759053519995e-19,-0.010834750719368458,0.00044642857392318547,0.0010204081190750003,0.007050736807286739,1.7514836027532034e-19,6.82319211912395e-19,-0.00014880952949170023,-6.040301341506426e-19,-0.0003401360590942204,-0.0007936508045531809,0.00017507003212813288,-8.080155384959653e-05,7.307847321282485e-20,1.7514836027532034e-19,5.77153923586593e-06,-4.290401660379291e-21,-7.102677610359637e-21,-5.086845727710011e-21,-6.999854375016607e-21,-1.79883300429113e-20,0.0005102040595375001,-7.288629421964288e-05,-0.0002040816325461492,6.82319211912395e-19,-4.290401660379291e-21,2.9154518415452912e-05,-3.79455308894578e-20,-6.434530710064312e-20,-1.8027134830280266e-20,-5.640349434073321e-20,0.00044642857392318547,-6.377550744218752e-05,5.22272636381667e-19,-0.00014880952949170023,-7.102677610359637e-21,-3.79455308894578e-20,2.1258503693388775e-05,-2.0947269800699986e-20,-4.634548215527417e-20,-1.4384629493266524e-19,0.0008503401186317205,3.5348744051659327e-19,-0.0012755101779475808,-6.040301341506426e-19,-5.086845727710011e-21,-6.434530710064312e-20,-2.0947269800699986e-20,0.00025510202976875007,1.402636723021215e-19,7.173058886701822e-20,0.0010204081190750003,3.2150866388468737e-19,-0.0004081632650922984,-0.0003401360590942204,-6.999854375016607e-21,-1.8027134830280266e-20,-4.634548215527417e-20,1.402636723021215e-19,0.0001360544265480712,-1.08085577454333e-19,0.0006613756413571537,9.0406167381585e-19,3.6585759053519995e-19,-0.0007936508045531809,-1.79883300429113e-20,-5.640349434073321e-20,-1.4384629493266524e-19,7.173058886701822e-20,-1.08085577454333e-19,0.00013227513409219682,15.0,6.0,8.0,0.04488309100270271,-0.004996790550649166,-0.010813492350280285,-0.00858134962618351,0.00015318627993110567,0.00044642857392318547,0.00034722223062999547,0.0007440476329065859,0.0007936508045531809,0.00046296295477077365,-0.004996790550649166,0.001397273619659245,0.00044642857392318547,0.00034722223062999547,-7.070136052789167e-05,-6.377550744218752e-05,-4.960317528457381e-05,-1.982541126480377e-19,-1.5430121164048195e-19,1.0529823728397071e-19,-0.010813492350280285,0.00044642857392318547,0.008417658507823944,0.0007936508045531809,-7.396309117916202e-20,-0.00017857142665889114,-3.8104922777383087e-19,-0.0011160714784637094,-0.0003174603043589741,1.4173833887890807e-18,-0.00858134962618351,0.00034722223062999547,0.0007936508045531809,0.0047666290774941444,1.6342999949883704e-20,-8.227218505574254e-20,-9.920635056914762e-05,1.3780478487348872e-18,-0.00022675737272948027,-0.00046296295477077365,0.00015318627993110567,-7.070136052789167e-05,-7.396309117916202e-20,1.6342999949883704e-20,5.050097115599783e-06,4.108126677068906e-21,1.2625095524838297e-21,7.824881409920156e-21,-6.824383941791591e-22,-3.8375146204515395e-21,0.00044642857392318547,-6.377550744218752e-05,-0.00017857142665889114,-8.227218505574254e-20,4.108126677068906e-21,2.551020406826865e-05,1.6802115886006178e-20,-1.1079372639015326e-20,2.7488077709840876e-20,-1.509612695844945e-20,0.00034722223062999547,-4.960317528457381e-05,-3.8104922777383087e-19,-9.920635056914762e-05,1.2625095524838297e-21,1.6802115886006178e-20,1.4172335795592517e-05,3.2937424031892314e-20,2.2256832419690675e-20,-5.9101796272972405e-21,0.0007440476329065859,-1.982541126480377e-19,-0.0011160714784637094,1.3780478487348872e-18,7.824881409920156e-21,-1.1079372639015326e-20,3.2937424031892314e-20,0.00022321428696159273,-2.3021199004477958e-19,-1.3854211557694259e-19,0.0007936508045531809,-1.5430121164048195e-19,-0.0003174603043589741,-0.00022675737272948027,-6.824383941791591e-22,2.7488077709840876e-20,2.2256832419690675e-20,-2.3021199004477958e-19,9.070294618140906e-05,-1.7229161448168603e-19,0.00046296295477077365,1.0529823728397071e-19,1.4173833887890807e-18,-0.00046296295477077365,-3.8375146204515395e-21,-1.509612695844945e-20,-5.9101796272972405e-21,-1.3854211557694259e-19,-1.7229161448168603e-19,6.613756704609841e-05,15.0,6.0,9.0,0.04063268005847931,-0.004472455475479364,-0.009682539850473404,-0.006966089364141226,0.00013616557407658547,0.00039682540227659047,0.00027777778450399637,0.0006613756413571537,0.0006349206087179482,0.00033670032280497253,-0.004472455475479364,0.0012464302126318216,0.00039682540227659047,0.00027777778450399637,-6.28456546110101e-05,-5.668934318237007e-05,-3.968253804487176e-05,-5.042765983725399e-19,-1.650640592560186e-19,-2.302609229478909e-19,-0.009682539850473404,0.00039682540227659047,0.007510581985116005,0.0006349206087179482,-2.8897696871207804e-19,-0.00015873015217948705,5.892117363140321e-21,-0.0009920635493472219,-0.00025396826094947755,3.89070113830422e-19,-0.006966089364141226,0.00027777778450399637,0.0006349206087179482,0.003376923967152834,-1.7542100676003606e-19,-2.801935707647293e-20,-6.944444612599909e-05,8.516617982633588e-19,-0.00015873015217948705,-0.00028860027668997645,0.00013616557407658547,-6.28456546110101e-05,-2.8897696871207804e-19,-1.7542100676003606e-19,4.488975264393957e-06,1.2781909056866926e-20,5.060310920726175e-21,3.132651240716517e-20,1.0935801064981256e-20,1.4083985852872724e-20,0.00039682540227659047,-5.668934318237007e-05,-0.00015873015217948705,-2.801935707647293e-20,1.2781909056866926e-20,2.2675736545352265e-05,8.470329472543003e-22,2.6282161467837934e-20,9.174863595620139e-21,2.667954898830925e-35,0.00027777778450399637,-3.968253804487176e-05,5.892117363140321e-21,-6.944444612599909e-05,5.060310920726175e-21,8.470329472543003e-22,9.92063451121794e-06,2.0554363897678276e-35,-2.7435787616665307e-21,8.271278636331061e-21,0.0006613756413571537,-5.042765983725399e-19,-0.0009920635493472219,8.516617982633588e-19,3.132651240716517e-20,2.6282161467837934e-20,2.0554363897678276e-35,0.00019841270113829523,-9.165983197821271e-20,-7.781402405855411e-20,0.0006349206087179482,-1.650640592560186e-19,-0.00025396826094947755,-0.00015873015217948705,1.0935801064981256e-20,9.174863595620139e-21,-2.7435787616665307e-21,-9.165983197821271e-20,6.349206523736939e-05,6.557179551544088e-35,0.00033670032280497253,-2.302609229478909e-19,3.89070113830422e-19,-0.00028860027668997645,1.4083985852872724e-20,2.667954898830925e-35,8.271278636331061e-21,-7.781402405855411e-20,6.557179551544088e-35,3.607503458624706e-05,15.0,6.0,10.0,0.0371210016310215,-0.004047937225550413,-0.008766233921051025,-0.0057683982886374,0.00012254902685526758,0.0003571428533177823,0.00022727272880729288,0.0005952381179668009,0.0005194804980419576,0.00025252526393160224,-0.004047937225550413,0.0011250339448451996,0.0003571428533177823,0.00022727272880729288,-5.656108623952605e-05,-5.10204081365373e-05,-3.246753112762235e-05,-4.538489281955283e-19,-8.471076520033715e-20,-8.911599956301926e-20,-0.008766233921051025,0.0003571428533177823,0.006780303083360195,0.0005194804980419576,-2.469145243710269e-19,-0.0001428571413271129,2.3343406855700102e-20,-0.0008928571478463709,-0.00020779221085831523,2.8536575665161295e-19,-0.0057683982886374,0.00022727272880729288,0.0005194804980419576,0.0024813611526042223,-1.6390812604876403e-19,1.5516391255176074e-20,-5.0505052058724687e-05,6.636472122464472e-19,-0.0001154401179519482,-0.00018939393339678645,0.00012254902685526758,-5.656108623952605e-05,-2.469145243710269e-19,-1.6390812604876403e-19,4.040077783429297e-06,9.50408794176478e-21,6.953242262823104e-21,2.819386310515321e-20,8.947473745492586e-21,1.0329982546959229e-20,0.0003571428533177823,-5.10204081365373e-05,-0.0001428571413271129,1.5516391255176074e-20,9.50408794176478e-21,2.0408162527019158e-05,7.4784563706413125e-37,2.365394532105414e-20,-6.206556663629143e-21,1.7119377697977322e-35,0.00022727272880729288,-3.246753112762235e-05,2.3343406855700102e-20,-5.0505052058724687e-05,6.953242262823104e-21,7.4784563706413125e-37,7.215007371996762e-06,8.810334751187853e-35,-5.563882968011973e-21,-1.233416846975419e-20,0.0005952381179668009,-4.538489281955283e-19,-0.0008928571478463709,6.636472122464472e-19,2.819386310515321e-20,2.365394532105414e-20,8.810334751187853e-35,0.00017857142665889114,-5.999552615074474e-20,-5.707315520773171e-20,0.0005194804980419576,-8.471076520033715e-20,-0.00020779221085831523,-0.0001154401179519482,8.947473745492586e-21,-6.206556663629143e-21,-5.563882968011973e-21,-5.999552615074474e-20,4.617604645318352e-05,4.996481212087106e-35,0.00025252526393160224,-8.911599956301926e-20,2.8536575665161295e-19,-0.00018939393339678645,1.0329982546959229e-20,1.7119377697977322e-35,-1.233416846975419e-20,-5.707315520773171e-20,4.996481212087106e-35,2.1043770175310783e-05,15.0,6.0,11.0,0.03417012095451355,-0.003697160631418228,-0.008008657954633236,-0.0048555610701441765,0.00011140819697175175,0.0003246753185521811,0.00018939393339678645,0.0005411255406215787,0.00043290044413879514,0.00019425019854679704,-0.003697160631418228,0.00102521781809628,0.0003246753185521811,0.00018939393339678645,-5.141917063156143e-05,-4.638218888430856e-05,-2.7056277758674696e-05,-4.125899347232075e-19,-8.76260534093552e-20,-1.2839744329762154e-19,-0.008008657954633236,0.0003246753185521811,0.006179653573781252,0.00043290044413879514,-2.2185144294915884e-19,-0.0001298701245104894,1.4107424791011238e-20,-0.000811688310932368,-0.00017316016601398587,2.156610429646622e-19,-0.0048555610701441765,0.00018939393339678645,0.00043290044413879514,0.0018776131328195333,-1.2966195688497077e-19,1.112404039209319e-20,-3.787878813454881e-05,6.358522893034404e-19,-8.658008300699294e-05,-0.00012950012751389295,0.00011140819697175175,-5.141917063156143e-05,-2.2185144294915884e-19,-1.2966195688497077e-19,3.6727979022543877e-06,8.030888156537074e-21,4.5007280830954535e-21,2.56307842004337e-20,7.456227851979299e-21,7.806734327438707e-21,0.0003246753185521811,-4.638218888430856e-05,-0.0001298701245104894,1.112404039209319e-20,8.030888156537074e-21,1.8552875189925544e-05,-6.352747104407253e-22,2.150358753673311e-20,-3.094363522009752e-21,1.021575906867053e-35,0.00018939393339678645,-2.7056277758674696e-05,1.4107424791011238e-20,-3.787878813454881e-05,4.5007280830954535e-21,-6.352747104407253e-22,5.4112551879370585e-06,2.219151241782753e-35,-1.8050454214970873e-21,3.820632138799145e-21,0.0005411255406215787,-4.125899347232075e-19,-0.000811688310932368,6.358522893034404e-19,2.56307842004337e-20,2.150358753673311e-20,2.219151241782753e-35,0.00016233765927609056,-8.181208522705553e-20,-4.313220859293244e-20,0.00043290044413879514,-8.76260534093552e-20,-0.00017316016601398587,-8.658008300699294e-05,7.456227851979299e-21,-3.094363522009752e-21,-1.8050454214970873e-21,-8.181208522705553e-20,3.4632033930392936e-05,3.5203128550687475e-35,0.00019425019854679704,-1.2839744329762154e-19,2.156610429646622e-19,-0.00012950012751389295,7.806734327438707e-21,1.021575906867053e-35,3.820632138799145e-21,-4.313220859293244e-20,3.5203128550687475e-35,1.2950013115187176e-05,15.0,6.0,12.0,0.031655203551054,-0.003402418689802289,-0.007371794898062944,-0.00414377311244607,0.00010212418419541791,0.00029761905898340046,0.00016025641525629908,0.0004960317746736109,0.00036630037357099354,0.00015262515807989985,-0.003402418689802289,0.000941690756008029,0.00029761905898340046,0.00016025641525629908,-4.7134239139268175e-05,-4.251700738677755e-05,-2.2893773348187096e-05,-2.861384208919199e-19,-6.268043809681823e-20,-5.929230630780102e-20,-0.007371794898062944,0.00029761905898340046,0.005676892586052418,0.00036630037357099354,-1.9759842984092165e-19,-0.0001190476177725941,2.710505431213761e-20,-0.0007440476329065859,-0.00014652014942839742,-2.642742795433417e-19,-0.00414377311244607,0.00016025641525629908,0.00036630037357099354,0.001455488963983953,-1.0355070838002734e-19,1.1361918633893974e-20,-2.9137529054423794e-05,-8.791400661281227e-19,-6.660006329184398e-05,-9.157509339274839e-05,0.00010212418419541791,-4.7134239139268175e-05,-1.9759842984092165e-19,-1.0355070838002734e-19,3.3667313346086303e-06,6.5947584219933176e-21,3.3172117547555413e-21,2.3494884305373876e-20,6.199061147121448e-21,5.74904338994349e-21,0.00029761905898340046,-4.251700738677755e-05,-0.0001190476177725941,1.1361918633893974e-20,6.5947584219933176e-21,1.70068033185089e-05,-8.113652766896672e-22,-1.7115990538791705e-20,-1.4288028449431611e-21,-1.2991106537586183e-22,0.00016025641525629908,-2.2893773348187096e-05,2.710505431213761e-20,-2.9137529054423794e-05,3.3172117547555413e-21,-8.113652766896672e-22,4.162503955740249e-06,-1.6452194253319144e-35,-3.549847214358452e-21,-4.0234064994579266e-21,0.0004960317746736109,-2.861384208919199e-19,-0.0007440476329065859,-8.791400661281227e-19,2.3494884305373876e-20,-1.7115990538791705e-20,-1.6452194253319144e-35,0.00014880952949170023,5.768800889680003e-20,6.681090632446495e-20,0.00036630037357099354,-6.268043809681823e-20,-0.00014652014942839742,-6.660006329184398e-05,6.199061147121448e-21,-1.4288028449431611e-21,-3.549847214358452e-21,5.768800889680003e-20,2.6640027499524876e-05,-1.2705494208814505e-20,0.00015262515807989985,-5.929230630780102e-20,-2.642742795433417e-19,-9.157509339274839e-05,5.74904338994349e-21,-1.2991106537586183e-22,-4.0234064994579266e-21,6.681090632446495e-20,-1.2705494208814505e-20,8.325007911480498e-06,15.0,6.0,13.0,0.029486024752259254,-0.0031512605492025614,-0.006828885525465012,-0.0035779697354882956,9.426847827853635e-05,0.00027472528745420277,0.00013736264372710139,0.0004578754596877843,0.00031397174461744726,0.00012210012937430292,-0.0031512605492025614,0.0008707625092938542,0.00027472528745420277,0.00013736264372710139,-4.3508527596713975e-05,-3.924646807718091e-05,-1.9623234038590454e-05,-2.706652062028971e-19,-8.470329472543003e-20,-6.945670167485263e-20,-0.006828885525465012,0.00027472528745420277,0.005249869078397751,0.00031397174461744726,-1.7890317864494288e-19,-0.00010989011207129806,8.470329472543003e-21,-0.0006868132040835917,-0.000125588703667745,1.1180834903756764e-19,-0.0035779697354882956,0.00013736264372710139,0.00031397174461744726,0.0011513287900015712,-8.835211765437215e-20,-5.9917114436994826e-21,-2.2893773348187096e-05,4.214888213012354e-19,-5.232862531556748e-05,-6.660006329184398e-05,9.426847827853635e-05,-4.3508527596713975e-05,-1.7890317864494288e-19,-8.835211765437215e-20,3.1077520361577626e-06,5.491455792902783e-21,2.460715505864465e-21,2.1687586755412142e-20,5.417873472992859e-21,4.7364567862145936e-21,0.00027472528745420277,-3.924646807718091e-05,-0.00010989011207129806,-5.9917114436994826e-21,5.491455792902783e-21,1.5698587958468124e-05,-7.5768295130146625e-22,-1.3184397856152896e-20,4.5792609658804074e-21,1.4480165115446796e-23,0.00013736264372710139,-1.9623234038590454e-05,8.470329472543003e-21,-2.2893773348187096e-05,2.460715505864465e-21,-7.5768295130146625e-22,3.2705390822229674e-06,1.7463489606870198e-35,-3.792193715787702e-22,6.352747104407253e-22,0.0004578754596877843,-2.706652062028971e-19,-0.0006868132040835917,4.214888213012354e-19,2.1687586755412142e-20,-1.3184397856152896e-20,1.7463489606870198e-35,0.00013736264372710139,-4.183965487528737e-20,-2.6407474483878316e-20,0.00031397174461744726,-8.470329472543003e-20,-0.000125588703667745,-5.232862531556748e-05,5.417873472992859e-21,4.5792609658804074e-21,-3.792193715787702e-22,-4.183965487528737e-20,2.093144939863123e-05,4.235164736271502e-21,0.00012210012937430292,-6.945670167485263e-20,1.1180834903756764e-19,-6.660006329184398e-05,4.7364567862145936e-21,1.4480165115446796e-23,6.352747104407253e-22,-2.6407474483878316e-20,4.235164736271502e-21,5.550005425902782e-06,15.0,6.0,14.0,0.027595704421401024,-0.0029346738010644913,-0.006360544357448816,-0.0031207483261823654,8.753501606406644e-05,0.00025510202976875007,0.0001190476177725941,0.00042517005931586027,0.0002721088530961424,9.920635056914762e-05,-0.0029346738010644913,0.00080977997276932,0.00025510202976875007,0.0001190476177725941,-4.0400776924798265e-05,-3.644314710982144e-05,-1.70068033185089e-05,-2.56535255280478e-19,-6.437450399132683e-20,-6.691560283308973e-20,-0.006360544357448816,0.00025510202976875007,0.004882653243839741,0.0002721088530961424,-1.6766720956842005e-19,-0.0001020408162730746,8.470329472543003e-22,-0.0006377550889737904,-0.00010884353832807392,7.284483346386983e-20,-0.0031207483261823654,0.0001190476177725941,0.0002721088530961424,0.0009265436674468219,-8.722099986549417e-20,1.3662025189655512e-20,-1.8315018678549677e-05,3.538418615596781e-19,-4.186289879726246e-05,-4.960317528457381e-05,8.753501606406644e-05,-4.0400776924798265e-05,-1.6766720956842005e-19,-8.722099986549417e-20,2.885769617932965e-06,5.008452593212139e-21,3.569286362650232e-21,2.0138472954143522e-20,4.748139096779771e-21,3.866545105660456e-21,0.00025510202976875007,-3.644314710982144e-05,-0.0001020408162730746,1.3662025189655512e-20,5.008452593212139e-21,1.4577259207726456e-05,-7.636530506321789e-22,-1.0161345138542815e-20,-3.1604188214628696e-21,-3.0054006989892003e-23,0.0001190476177725941,-1.70068033185089e-05,8.470329472543003e-22,-1.8315018678549677e-05,3.569286362650232e-21,-7.636530506321789e-22,2.6164311748289037e-06,1.421581194609086e-35,8.63375620855583e-22,1.6940658945086007e-21,0.00042517005931586027,-2.56535255280478e-19,-0.0006377550889737904,3.538418615596781e-19,2.0138472954143522e-20,-1.0161345138542815e-20,1.421581194609086e-35,0.00012755101488437504,-3.108088500167667e-20,-2.124151183863445e-20,0.0002721088530961424,-6.437450399132683e-20,-0.00010884353832807392,-4.186289879726246e-05,4.748139096779771e-21,-3.1604188214628696e-21,8.63375620855583e-22,-3.108088500167667e-20,1.6745159882702865e-05,5.505714157152952e-21,9.920635056914762e-05,-6.691560283308973e-20,7.284483346386983e-20,-4.960317528457381e-05,3.866545105660456e-21,-3.0054006989892003e-23,1.6940658945086007e-21,-2.124151183863445e-20,5.505714157152952e-21,3.815629042946966e-06,15.0,6.0,15.0,0.025933610275387764,-0.002745973411947489,-0.0059523810632526875,-0.002745973411947489,8.169934881152585e-05,0.0002380952355451882,0.00010416666918899864,0.00039682540227659047,0.0002380952355451882,8.169934881152585e-05,-0.002745973411947489,0.0007567866705358028,0.0002380952355451882,0.00010416666918899864,-3.77073920390103e-05,-3.40136066370178e-05,-1.4880952221574262e-05,4.8728356855492165e-19,1.1519648082658485e-19,8.046812998915853e-20,-0.0059523810632526875,0.0002380952355451882,0.004563492257148027,0.0002380952355451882,3.053742733922933e-19,-9.523809421807528e-05,5.082197683525802e-21,-0.0005952381179668009,-9.523809421807528e-05,8.639736061993863e-20,-0.002745973411947489,0.00010416666918899864,0.0002380952355451882,0.0007567866705358028,1.2664520334159574e-19,1.1158933035217436e-20,-1.4880952221574262e-05,2.428089684969848e-19,-3.40136066370178e-05,-3.77073920390103e-05,8.169934881152585e-05,-3.77073920390103e-05,3.053742733922933e-19,1.2664520334159574e-19,2.6933851131616393e-06,-8.685495790415525e-21,-2.663683535030922e-21,-3.7591817473537615e-20,-8.216236390472906e-21,-6.342597178238572e-21,0.0002380952355451882,-3.40136066370178e-05,-9.523809421807528e-05,1.1158933035217436e-20,-8.685495790415525e-21,1.360544229100924e-05,-1.1184460321674898e-21,1.5600749137372278e-20,-1.4745747508528444e-21,4.063990502645191e-24,0.00010416666918899864,-1.4880952221574262e-05,5.082197683525802e-21,-1.4880952221574262e-05,-2.663683535030922e-21,-1.1184460321674898e-21,2.1258504148136126e-06,2.721037250539871e-35,4.612337184195179e-22,9.529120656610879e-22,0.00039682540227659047,4.8728356855492165e-19,-0.0005952381179668009,2.428089684969848e-19,-3.7591817473537615e-20,1.5600749137372278e-20,2.721037250539871e-35,0.0001190476177725941,1.023150282955719e-34,-1.7343497518986465e-20,0.0002380952355451882,1.1519648082658485e-19,-9.523809421807528e-05,-3.40136066370178e-05,-8.216236390472906e-21,-1.4745747508528444e-21,4.612337184195179e-22,1.023150282955719e-34,1.360544229100924e-05,2.117582368135751e-22,8.169934881152585e-05,8.046812998915853e-20,8.639736061993863e-20,-3.77073920390103e-05,-6.342597178238572e-21,4.063990502645191e-24,9.529120656610879e-22,-1.7343497518986465e-20,2.117582368135751e-22,2.6933851131616393e-06,15.0,6.0,16.0,0.0244606863707304,-0.0025800946168601513,-0.005593487527221441,-0.002434932393953204,7.659313996555284e-05,0.00022321428696159273,9.191176650347188e-05,0.00037202381645329297,0.0002100840356433764,6.808278703829274e-05,-0.0025800946168601513,0.0007103081443347037,0.00022321428696159273,9.191176650347188e-05,-3.535068026394583e-05,-3.188775372109376e-05,-1.3130252227711026e-05,-2.836555865845537e-19,-3.6422416731934915e-20,-2.625802136488331e-20,-0.005593487527221441,0.00022321428696159273,0.0042835259810090065,0.0002100840356433764,-1.396201516349494e-19,-8.928571332944557e-05,-8.470329472543003e-22,-0.0005580357392318547,-8.403361425735056e-05,-1.3891340334970526e-19,-0.002434932393953204,9.191176650347188e-05,0.0002100840356433764,0.0006261671078391373,-6.230136965641873e-20,-6.517360893066707e-21,-1.2254901776032057e-05,-5.213694585503357e-19,-2.801120535877999e-05,-2.9178338081692345e-05,7.659313996555284e-05,-3.535068026394583e-05,-1.396201516349494e-19,-6.230136965641873e-20,2.5250485577998916e-06,3.5685197665552e-21,2.1569932026283195e-21,1.762116363292719e-20,3.5558450815930286e-21,2.5481936926613905e-21,0.00022321428696159273,-3.188775372109376e-05,-8.928571332944557e-05,-6.517360893066707e-21,3.5685197665552e-21,1.2755102034134325e-05,1.4799681865509532e-21,1.478371602760723e-20,-1.1945049461794747e-21,-5.724925147902272e-23,9.191176650347188e-05,-1.3130252227711026e-05,-8.470329472543003e-22,-1.2254901776032057e-05,2.1569932026283195e-21,1.4799681865509532e-21,1.7507003349237493e-06,-2.769152485723613e-36,-1.252586717281657e-21,-1.0587911840678754e-21,0.00037202381645329297,-2.836555865845537e-19,-0.0005580357392318547,-5.213694585503357e-19,1.762116363292719e-20,1.478371602760723e-20,-2.769152485723613e-36,0.00011160714348079637,3.6394344289896396e-20,2.869223942421641e-20,0.0002100840356433764,-3.6422416731934915e-20,-8.403361425735056e-05,-2.801120535877999e-05,3.5558450815930286e-21,-1.1945049461794747e-21,-1.252586717281657e-21,3.6394344289896396e-20,1.1204481779714115e-05,-4.235164736271502e-22,6.808278703829274e-05,-2.625802136488331e-20,-1.3891340334970526e-19,-2.9178338081692345e-05,2.5481936926613905e-21,-5.724925147902272e-23,-1.0587911840678754e-21,2.869223942421641e-20,-4.235164736271502e-22,1.9452224933047546e-06,15.0,7.0,3.0,0.084198959171772,-0.010556722991168499,-0.02013888955116272,-0.03750000149011612,0.00035014006425626576,0.0008928571478463709,0.0017857142956927419,0.0013227512827143073,0.0035714285913854837,0.004761904943734407,-0.010556722991168499,0.0030702666845172644,0.0008928571478463709,0.0017857142956927419,-0.00016160310769919306,-0.00012755101488437504,-0.00025510202976875007,1.5280474368467578e-18,6.505213034913027e-19,-6.858073291579546e-19,-0.02013888955116272,0.0008928571478463709,0.013591269962489605,0.0035714285913854837,2.710505431213761e-19,-0.00029761905898340046,1.3010426069826053e-18,-0.0015873016091063619,-0.0011904762359336019,1.0410133278700063e-19,-0.03750000149011612,0.0017857142956927419,0.0035714285913854837,0.08511904627084732,3.709254418049768e-19,8.699027334325899e-19,-0.0017857142956927419,3.718813368907219e-18,-0.0035714285913854837,-0.02857142873108387,0.00035014006425626576,-0.00016160310769919306,2.710505431213761e-19,3.709254418049768e-19,1.154307847173186e-05,-1.1858461261560205e-20,-1.7575933655526732e-20,-2.541098841762901e-20,-1.8634724839594607e-20,-9.737129438804116e-20,0.0008928571478463709,-0.00012755101488437504,-0.00029761905898340046,8.699027334325899e-19,-1.1858461261560205e-20,4.251700738677755e-05,-9.105635202256699e-20,-2.761327408049019e-19,-1.4230153513872246e-19,1.0714973245115435e-19,0.0017857142956927419,-0.00025510202976875007,1.3010426069826053e-18,-0.0017857142956927419,-1.7575933655526732e-20,-9.105635202256699e-20,0.00025510202976875007,-9.03578044576145e-20,1.248272283762661e-19,1.1758519232000017e-18,0.0013227512827143073,1.5280474368467578e-18,-0.0015873016091063619,3.718813368907219e-18,-2.541098841762901e-20,-2.761327408049019e-19,-9.03578044576145e-20,0.00026455026818439364,-5.353248226647178e-19,-6.938894007304805e-19,0.0035714285913854837,6.505213034913027e-19,-0.0011904762359336019,-0.0035714285913854837,-1.8634724839594607e-20,-1.4230153513872246e-19,1.248272283762661e-19,-5.353248226647178e-19,0.0011904762359336019,4.0916402145971196e-18,0.004761904943734407,-6.858073291579546e-19,1.0410133278700063e-19,-0.02857142873108387,-9.737129438804116e-20,1.0714973245115435e-19,1.1758519232000017e-18,-6.938894007304805e-19,4.0916402145971196e-18,0.014285714365541935,15.0,7.0,4.0,0.06853612512350082,-0.008185398764908314,-0.015639880672097206,-0.023928571492433548,0.00026260505546815693,0.0006696428754366934,0.0010714285308495164,0.0009920635493472219,0.002142857061699033,0.0023809524718672037,-0.008185398764908314,0.0023409652058035135,0.0006696428754366934,0.0010714285308495164,-0.00012120232713641599,-9.566326480126008e-05,-0.0001530612207716331,4.3108419395503297e-19,8.478918709228601e-19,3.0665034941364235e-18,-0.015639880672097206,0.0006696428754366934,0.010372024029493332,0.002142857061699033,2.4551315116639134e-19,-0.00022321428696159273,5.2681566093982457e-20,-0.0011904762359336019,-0.0007142857066355646,8.304149714661713e-18,-0.023928571492433548,0.0010714285308495164,0.002142857061699033,0.03261904790997505,5.434506831109208e-19,7.87268217419155e-19,-0.0007142857066355646,3.9732785271566006e-18,-0.0014285714132711291,-0.0071428571827709675,0.00026260505546815693,-0.00012120232713641599,2.4551315116639134e-19,5.434506831109208e-19,8.65730908117257e-06,-5.702868697966488e-21,-1.3490251926612213e-20,-2.7873081817370294e-20,-2.1247424887544496e-20,-1.1794887261606676e-19,0.0006696428754366934,-9.566326480126008e-05,-0.00022321428696159273,7.87268217419155e-19,-5.702868697966488e-21,3.188775372109376e-05,2.0198132951927126e-21,-4.7413556503013395e-20,-9.251858762571054e-20,-1.4882610316599346e-19,0.0010714285308495164,-0.0001530612207716331,5.2681566093982457e-20,-0.0007142857066355646,-1.3490251926612213e-20,2.0198132951927126e-21,0.0001020408162730746,4.9695447313840295e-20,-1.9077266467310477e-19,-5.149211720851786e-19,0.0009920635493472219,4.3108419395503297e-19,-0.0011904762359336019,3.9732785271566006e-18,-2.7873081817370294e-20,-4.7413556503013395e-20,4.9695447313840295e-20,0.00019841270113829523,-8.648649967069888e-19,-5.568080473412153e-19,0.002142857061699033,8.478918709228601e-19,-0.0007142857066355646,-0.0014285714132711291,-2.1247424887544496e-20,-9.251858762571054e-20,-1.9077266467310477e-19,-8.648649967069888e-19,0.0004761904710903764,-2.1876315379243446e-18,0.0023809524718672037,3.0665034941364235e-18,8.304149714661713e-18,-0.0071428571827709675,-1.1794887261606676e-19,-1.4882610316599346e-19,-5.149211720851786e-19,-5.568080473412153e-19,-2.1876315379243446e-18,0.0023809524718672037,15.0,7.0,5.0,0.05788331851363182,-0.0066911764442920685,-0.012797619216144085,-0.016632653772830963,0.0002100840356433764,0.0005357142654247582,0.0007142857066355646,0.0007936508045531809,0.0014285714132711291,0.0013605442363768816,-0.0066911764442920685,0.001893180306069553,0.0005357142654247582,0.0007142857066355646,-9.696186316432431e-05,-7.653061038581654e-05,-0.0001020408162730746,-1.4959122972296852e-18,-6.919654303244704e-19,-1.1325090032707184e-18,-0.012797619216144085,0.0005357142654247582,0.008392857387661934,0.0014285714132711291,-2.6746055341350183e-19,-0.00017857142665889114,-9.092987610690764e-19,-0.0009523809421807528,-0.0004761904710903764,-3.2309682998127387e-18,-0.016632653772830963,0.0007142857066355646,0.0014285714132711291,0.01647959090769291,3.039533645080347e-20,-5.91808799094113e-19,-0.0003571428533177823,-4.0971212167334725e-19,-0.0007142857066355646,-0.002721088472753763,0.0002100840356433764,-9.696186316432431e-05,-2.6746055341350183e-19,3.039533645080347e-20,6.925847173988586e-06,3.726473701151965e-21,-9.446131984510649e-21,3.310551617965104e-20,1.3747764398851194e-20,-2.2259599920451033e-21,0.0005357142654247582,-7.653061038581654e-05,-0.00017857142665889114,-5.91808799094113e-19,3.726473701151965e-21,2.551020406826865e-05,-7.259259507582944e-21,2.450746678935558e-19,6.770241315434105e-20,1.0796466045088393e-19,0.0007142857066355646,-0.0001020408162730746,-9.092987610690764e-19,-0.0003571428533177823,-9.446131984510649e-21,-7.259259507582944e-21,5.10204081365373e-05,1.1805371775870786e-19,1.1748145094648894e-19,4.180166272824675e-19,0.0007936508045531809,-1.4959122972296852e-18,-0.0009523809421807528,-4.0971212167334725e-19,3.310551617965104e-20,2.450746678935558e-19,1.1805371775870786e-19,0.00015873015217948705,1.0159971889479006e-20,-1.16663007429156e-19,0.0014285714132711291,-6.919654303244704e-19,-0.0004761904710903764,-0.0007142857066355646,1.3747764398851194e-20,6.770241315434105e-20,1.1748145094648894e-19,1.0159971889479006e-20,0.0002380952355451882,1.5032381189271846e-18,0.0013605442363768816,-1.1325090032707184e-18,-3.2309682998127387e-18,-0.002721088472753763,-2.2259599920451033e-21,1.0796466045088393e-19,4.180166272824675e-19,-1.16663007429156e-19,1.5032381189271846e-18,0.0006802721181884408,15.0,7.0,6.0,0.05013519152998924,-0.0056610144674777985,-0.010834750719368458,-0.01224489789456129,0.00017507003212813288,0.00044642857392318547,0.0005102040595375001,0.0006613756413571537,0.0010204081190750003,0.0008503401186317205,-0.0056610144674777985,0.0015897980192676187,0.00044642857392318547,0.0005102040595375001,-8.080155384959653e-05,-6.377550744218752e-05,-7.288629421964288e-05,9.974979278583086e-19,2.2973098451858e-19,3.773535398933088e-19,-0.010834750719368458,0.00044642857392318547,0.007050736807286739,0.0010204081190750003,1.799013529997471e-19,-0.00014880952949170023,7.481332686635055e-19,-0.0007936508045531809,-0.0003401360590942204,1.1000190290202547e-19,-0.01224489789456129,0.0005102040595375001,0.0010204081190750003,0.0095748296007514,5.642248718307926e-20,6.394431320413214e-19,-0.0002040816325461492,1.5137983202173428e-18,-0.0004081632650922984,-0.0012755101779475808,0.00017507003212813288,-8.080155384959653e-05,1.799013529997471e-19,5.642248718307926e-20,5.77153923586593e-06,-4.766381902798903e-21,-2.5971625425864597e-21,-2.4196121822904303e-20,8.112740969907981e-22,-9.151673457900244e-21,0.00044642857392318547,-6.377550744218752e-05,-0.00014880952949170023,6.394431320413214e-19,-4.766381902798903e-21,2.1258503693388775e-05,-3.028930223603183e-20,-1.3777229476999128e-19,-5.68676589866491e-20,-4.730408431882083e-20,0.0005102040595375001,-7.288629421964288e-05,7.481332686635055e-19,-0.0002040816325461492,-2.5971625425864597e-21,-3.028930223603183e-20,2.9154518415452912e-05,-7.810548243985688e-20,-1.081192834487074e-20,-1.3296317654853308e-20,0.0006613756413571537,9.974979278583086e-19,-0.0007936508045531809,1.5137983202173428e-18,-2.4196121822904303e-20,-1.3777229476999128e-19,-7.810548243985688e-20,0.00013227513409219682,-1.4879865110941436e-19,-9.746509537703497e-20,0.0010204081190750003,2.2973098451858e-19,-0.0003401360590942204,-0.0004081632650922984,8.112740969907981e-22,-5.68676589866491e-20,-1.081192834487074e-20,-1.4879865110941436e-19,0.0001360544265480712,3.458749231886619e-19,0.0008503401186317205,3.773535398933088e-19,1.1000190290202547e-19,-0.0012755101779475808,-9.151673457900244e-21,-4.730408431882083e-20,-1.3296317654853308e-20,-9.746509537703497e-20,3.458749231886619e-19,0.00025510202976875007,15.0,7.0,7.0,0.04423436149954796,-0.004906962625682354,-0.009396258741617203,-0.009396258741617203,0.00015006001922301948,0.00038265305920504034,0.00038265305920504034,0.0005668934318237007,0.0007653061184100807,0.0005668934318237007,-0.004906962625682354,0.0013704932061955333,0.00038265305920504034,0.00038265305920504034,-6.925847264938056e-05,-5.4664724302710965e-05,-5.4664724302710965e-05,2.418723932484216e-19,3.4703432021473154e-19,1.2674816147846445e-19,-0.009396258741617203,0.00038265305920504034,0.006079931743443012,0.0007653061184100807,1.8900691840863962e-19,-0.00012755101488437504,3.23303749211504e-19,-0.0006802721181884408,-0.00025510202976875007,2.0847172416281002e-18,-0.009396258741617203,0.00038265305920504034,0.0007653061184100807,0.006079931743443012,1.9334955200105766e-19,3.4567205714343327e-19,-0.00012755101488437504,2.6183211150284015e-18,-0.00025510202976875007,-0.0006802721181884408,0.00015006001922301948,-6.925847264938056e-05,1.8900691840863962e-19,1.9334955200105766e-19,4.947033630742226e-06,-5.0838148862468286e-21,-5.782510277422076e-21,-1.6868056074876006e-20,-1.4015825847280928e-20,-1.7059028167624918e-20,0.00038265305920504034,-5.4664724302710965e-05,-0.00012755101488437504,3.4567205714343327e-19,-5.0838148862468286e-21,1.822157355491072e-05,-1.368418054381615e-21,4.425887382366941e-20,-2.5737317631629715e-20,-3.8650224147867624e-20,0.00038265305920504034,-5.4664724302710965e-05,3.23303749211504e-19,-0.00012755101488437504,-5.782510277422076e-21,-1.368418054381615e-21,1.822157355491072e-05,-4.3579671299058146e-20,-8.470562924883851e-21,9.522848301122254e-20,0.0005668934318237007,2.418723932484216e-19,-0.0006802721181884408,2.6183211150284015e-18,-1.6868056074876006e-20,4.425887382366941e-20,-4.3579671299058146e-20,0.00011337868636474013,-1.8040262445095424e-19,-2.6751326032815794e-19,0.0007653061184100807,3.4703432021473154e-19,-0.00025510202976875007,-0.00025510202976875007,-1.4015825847280928e-20,-2.5737317631629715e-20,-8.470562924883851e-21,-1.8040262445095424e-19,8.50340147735551e-05,-1.3753443187626827e-20,0.0005668934318237007,1.2674816147846445e-19,2.0847172416281002e-18,-0.0006802721181884408,-1.7059028167624918e-20,-3.8650224147867624e-20,9.522848301122254e-20,-2.6751326032815794e-19,-1.3753443187626827e-20,0.00011337868636474013,15.0,7.0,8.0,0.039585523307323456,-0.004330794792622328,-0.008296131156384945,-0.0074404762126505375,0.00013130252773407847,0.0003348214377183467,0.00029761905898340046,0.0004960317746736109,0.0005952381179668009,0.00039682540227659047,-0.004330794792622328,0.0012044962495565414,0.0003348214377183467,0.00029761905898340046,-6.0601163568207994e-05,-4.783163240063004e-05,-4.251700738677755e-05,2.0020597455032728e-19,-2.094076480066408e-19,-3.766783537183124e-19,-0.008296131156384945,0.0003348214377183467,0.005344741977751255,0.0005952381179668009,9.718652938106066e-20,-0.00011160714348079637,-3.0637154301830252e-19,-0.0005952381179668009,-0.00019841270113829523,-6.23099387305769e-19,-0.0074404762126505375,0.00029761905898340046,0.0005952381179668009,0.004109977278858423,-2.8898249402007596e-20,-6.627151347924648e-19,-8.50340147735551e-05,2.4461092976264327e-19,-0.0001700680295471102,-0.00039682540227659047,0.00013130252773407847,-6.0601163568207994e-05,9.718652938106066e-20,-2.8898249402007596e-20,4.328654540586285e-06,-3.563275166821801e-21,-1.8222463505197014e-22,-1.3264627913222004e-20,5.002444628557976e-21,2.1666412870435345e-21,0.0003348214377183467,-4.783163240063004e-05,-0.00011160714348079637,-6.627151347924648e-19,-3.563275166821801e-21,1.594387686054688e-05,2.0096226966179364e-20,-2.2337450217671918e-20,2.1916635005732636e-20,6.213555871769306e-20,0.00029761905898340046,-4.251700738677755e-05,-3.0637154301830252e-19,-8.50340147735551e-05,-1.8222463505197014e-22,2.0096226966179364e-20,1.2147716006438714e-05,1.2288080615585634e-20,2.2541422940087264e-20,3.576793915282074e-20,0.0004960317746736109,2.0020597455032728e-19,-0.0005952381179668009,2.4461092976264327e-19,-1.3264627913222004e-20,-2.2337450217671918e-20,1.2288080615585634e-20,9.920635056914762e-05,-1.0784541719570559e-19,-2.0992410113014513e-21,0.0005952381179668009,-2.094076480066408e-19,-0.00019841270113829523,-0.0001700680295471102,5.002444628557976e-21,2.1916635005732636e-20,2.2541422940087264e-20,-1.0784541719570559e-19,5.668934318237007e-05,5.485914813709671e-20,0.00039682540227659047,-3.766783537183124e-19,-6.23099387305769e-19,-0.00039682540227659047,2.1666412870435345e-21,6.213555871769306e-20,3.576793915282074e-20,-2.0992410113014513e-21,5.485914813709671e-20,5.668934318237007e-05,15.0,7.0,9.0,0.03582606092095375,-0.003876050468534231,-0.007427248638123274,-0.006038961000740528,0.00011671335232676938,0.00029761905898340046,0.0002380952355451882,0.00044091709423810244,0.0004761904710903764,0.00028860027668997645,-0.003876050468534231,0.0010744426399469376,0.00029761905898340046,0.0002380952355451882,-5.3867701353738084e-05,-4.251700738677755e-05,-3.40136066370178e-05,-9.239774946291361e-19,-6.189783217952415e-19,-5.188491943202515e-19,-0.007427248638123274,0.00029761905898340046,0.004768518730998039,0.0004761904710903764,-5.030326221288367e-19,-9.920635056914762e-05,-4.646624535482809e-19,-0.0005291005363687873,-0.00015873015217948705,-7.209240283682775e-20,-0.006038961000740528,0.0002380952355451882,0.0004761904710903764,0.0029115132056176662,-3.721725458253712e-19,-2.2938266393251274e-19,-5.952380888629705e-05,-3.172065750669815e-19,-0.0001190476177725941,-0.00024737167404964566,0.00011671335232676938,-5.3867701353738084e-05,-5.030326221288367e-19,-3.721725458253712e-19,3.84769282391062e-06,1.5734453512986098e-20,7.615405997726771e-21,3.9680251418603675e-20,2.973170818616293e-20,2.5120386297507207e-20,0.00029761905898340046,-4.251700738677755e-05,-9.920635056914762e-05,-2.2938266393251274e-19,1.5734453512986098e-20,1.4172335795592517e-05,8.169316508930396e-21,5.540458974054447e-20,2.2382838522611497e-20,1.0298914806374473e-20,0.0002380952355451882,-3.40136066370178e-05,-4.646624535482809e-19,-5.952380888629705e-05,7.615405997726771e-21,8.169316508930396e-21,8.50340165925445e-06,4.531522547116511e-20,2.8232068509695504e-20,3.0633780955894685e-20,0.00044091709423810244,-9.239774946291361e-19,-0.0005291005363687873,-3.172065750669815e-19,3.9680251418603675e-20,5.540458974054447e-20,4.531522547116511e-20,8.818342030281201e-05,5.500106384251309e-34,4.6765343790785786e-34,0.0004761904710903764,-6.189783217952415e-19,-0.00015873015217948705,-0.0001190476177725941,2.973170818616293e-20,2.2382838522611497e-20,2.8232068509695504e-20,5.500106384251309e-34,3.968253804487176e-05,3.15770659738491e-34,0.00028860027668997645,-5.188491943202515e-19,-7.209240283682775e-20,-0.00024737167404964566,2.5120386297507207e-20,1.0298914806374473e-20,3.0633780955894685e-20,4.6765343790785786e-34,3.15770659738491e-34,3.092145925620571e-05,15.0,7.0,10.0,0.032721810042858124,-0.00350792589597404,-0.006723484955728054,-0.004999999888241291,0.0001050420178216882,0.0002678571327123791,0.00019480519404169172,0.00039682540227659047,0.00038961038808338344,0.00021645022206939757,-0.00350792589597404,0.0009697812492959201,0.0002678571327123791,0.00019480519404169172,-4.848093158216216e-05,-3.826530519290827e-05,-2.7829313694383018e-05,-2.879260098944353e-19,-1.0147478231055188e-19,-1.4523235237127147e-19,-0.006723484955728054,0.0002678571327123791,0.004304653499275446,0.00038961038808338344,-1.739944303961118e-19,-8.928571332944557e-05,1.6722604765211652e-20,-0.0004761904710903764,-0.0001298701245104894,-4.2962206306142975e-34,-0.004999999888241291,0.00019480519404169172,0.00038961038808338344,0.0021392495837062597,-1.3557918047217178e-19,-5.308746620550164e-21,-4.329004150349647e-05,-6.933501440579121e-34,-8.658008300699294e-05,-0.00016233765927609056,0.0001050420178216882,-4.848093158216216e-05,-1.739944303961118e-19,-1.3557918047217178e-19,3.462923586994293e-06,5.310377959658612e-21,5.1084186627088795e-21,1.777067652864615e-20,6.710605309119439e-21,8.85427052373832e-21,0.0002678571327123791,-3.826530519290827e-05,-8.928571332944557e-05,-5.308746620550164e-21,5.310377959658612e-21,1.2755102034134325e-05,-1.3528689369856611e-21,1.3045509061426415e-20,4.926276157543474e-21,1.2961082216169382e-35,0.00019480519404169172,-2.7829313694383018e-05,1.6722604765211652e-20,-4.329004150349647e-05,5.1084186627088795e-21,-1.3528689369856611e-21,6.184292033140082e-06,2.474433975580147e-35,-1.6116715565252516e-21,4.727234610957551e-21,0.00039682540227659047,-2.879260098944353e-19,-0.0004761904710903764,-6.933501440579121e-34,1.777067652864615e-20,1.3045509061426415e-20,2.474433975580147e-35,7.936507608974352e-05,3.7067598622420307e-35,4.5437439824511547e-35,0.00038961038808338344,-1.0147478231055188e-19,-0.0001298701245104894,-8.658008300699294e-05,6.710605309119439e-21,4.926276157543474e-21,-1.6116715565252516e-21,3.7067598622420307e-35,2.886002948798705e-05,1.4726633979103038e-35,0.00021645022206939757,-1.4523235237127147e-19,-4.2962206306142975e-34,-0.00016233765927609056,8.85427052373832e-21,1.2961082216169382e-35,4.727234610957551e-21,4.5437439824511547e-35,1.4726633979103038e-35,1.803751729312353e-05,15.0,7.0,11.0,0.030114533379673958,-0.0032037815544754267,-0.006141774822026491,-0.004208291880786419,9.549274545861408e-05,0.00024350649619009346,0.00016233765927609056,0.0003607503604143858,0.0003246753185521811,0.00016650016186758876,-0.0032037815544754267,0.000883727625478059,0.00024350649619009346,0.00016233765927609056,-4.407357482705265e-05,-3.478664075373672e-05,-2.319109444215428e-05,-2.617509133859604e-19,-6.776693324212018e-20,-8.008715515594104e-20,-0.006141774822026491,0.00024350649619009346,0.003923160023987293,0.0003246753185521811,-1.5388180522052342e-19,-8.116882963804528e-05,-5.851063678480975e-21,-0.00043290044413879514,-0.00010822511103469878,-3.2314612914705754e-34,-0.004208291880786419,0.00016233765927609056,0.0003246753185521811,0.0016186591237783432,-1.0480601312071338e-19,3.669029481122495e-21,-3.246753112762235e-05,-5.2253226411320985e-34,-6.49350622552447e-05,-0.00011100011033704504,9.549274545861408e-05,-4.407357482705265e-05,-1.5388180522052342e-19,-1.0480601312071338e-19,3.1481124551646644e-06,3.949857299084248e-21,3.1508181949197126e-21,1.615516048058741e-20,5.592171090932866e-21,6.691486450976954e-21,0.00024350649619009346,-3.478664075373672e-05,-8.116882963804528e-05,3.669029481122495e-21,3.949857299084248e-21,1.159554722107714e-05,9.529120656610879e-22,1.1859554206256283e-20,-3.1994201046169964e-21,8.756364608518392e-36,0.00016233765927609056,-2.319109444215428e-05,-5.851063678480975e-21,-3.246753112762235e-05,3.1508181949197126e-21,9.529120656610879e-22,4.638218797481386e-06,1.5555611478976813e-35,-1.8503995971584634e-22,-2.7187316373924372e-21,0.0003607503604143858,-2.617509133859604e-19,-0.00043290044413879514,-5.2253226411320985e-34,1.615516048058741e-20,1.1859554206256283e-20,1.5555611478976813e-35,7.215006917249411e-05,2.3418704413268257e-35,3.4338686765070813e-35,0.0003246753185521811,-6.776693324212018e-20,-0.00010822511103469878,-6.49350622552447e-05,5.592171090932866e-21,-3.1994201046169964e-21,-1.8503995971584634e-22,2.3418704413268257e-35,2.1645020751748234e-05,1.1163893124809299e-35,0.00016650016186758876,-8.008715515594104e-20,-3.2314612914705754e-34,-0.00011100011033704504,6.691486450976954e-21,8.756364608518392e-36,-2.7187316373924372e-21,3.4338686765070813e-35,1.1163893124809299e-35,1.1100010851805564e-05,15.0,7.0,12.0,0.027893342077732086,-0.0029482466634362936,-0.005652854219079018,-0.0035910517908632755,8.753501606406644e-05,0.00022321428696159273,0.00013736264372710139,0.0003306878206785768,0.00027472528745420277,0.00013082155783195049,-0.0029482466634362936,0.0008117189281620085,0.00022321428696159273,0.00013736264372710139,-4.0400776924798265e-05,-3.188775372109376e-05,-1.9623234038590454e-05,-1.7855898103724133e-19,-4.404571325722362e-20,-6.437450399132683e-20,-0.005652854219079018,0.00022321428696159273,0.0036038614343851805,0.00027472528745420277,-1.389486748480124e-19,-7.440476474585012e-05,2.541098841762901e-20,-0.00039682540227659047,-9.157509339274839e-05,2.710505431213761e-20,-0.0035910517908632755,0.00013736264372710139,0.00027472528745420277,0.001254697679542005,-8.917383758241262e-20,1.197104425877908e-20,-2.4975024643936194e-05,-4.618973267619192e-34,-4.995004928787239e-05,-7.849293615436181e-05,8.753501606406644e-05,-4.0400776924798265e-05,-1.389486748480124e-19,-8.917383758241262e-20,2.885769617932965e-06,3.6111664201285635e-21,2.445881790646238e-21,1.480889656867608e-20,4.703616746543958e-21,5.242161812413913e-21,0.00022321428696159273,-3.188775372109376e-05,-7.440476474585012e-05,1.197104425877908e-20,3.6111664201285635e-21,1.0629251846694387e-05,-1.1120464895817493e-21,-9.588526603317678e-21,-1.6437472215331642e-21,8.219846066513903e-23,0.00013736264372710139,-1.9623234038590454e-05,2.541098841762901e-20,-2.4975024643936194e-05,2.445881790646238e-21,-1.1120464895817493e-21,3.5678606309375027e-06,1.4511774791334025e-35,-3.2755318281334205e-21,-1.4823076576950256e-21,0.0003306878206785768,-1.7855898103724133e-19,-0.00039682540227659047,-4.618973267619192e-34,1.480889656867608e-20,-9.588526603317678e-21,1.4511774791334025e-35,6.613756704609841e-05,2.3813967258591506e-35,2.628508396385887e-35,0.00027472528745420277,-4.404571325722362e-20,-9.157509339274839e-05,-4.995004928787239e-05,4.703616746543958e-21,-1.6437472215331642e-21,-3.2755318281334205e-21,2.3813967258591506e-35,1.6650015822960995e-05,-5.082197683525802e-21,0.00013082155783195049,-6.437450399132683e-20,2.710505431213761e-20,-7.849293615436181e-05,5.242161812413913e-21,8.219846066513903e-23,-1.4823076576950256e-21,2.628508396385887e-35,-5.082197683525802e-21,7.1357212618750054e-06,15.0,7.0,13.0,0.025978147983551025,-0.002730515319854021,-0.005236133001744747,-0.0031004708725959063,8.080155384959653e-05,0.00020604395831469446,0.00011773940059356391,0.0003052503161597997,0.00023547880118712783,0.00010465725063113496,-0.002730515319854021,0.0007505728281103075,0.00020604395831469446,0.00011773940059356391,-3.729302261490375e-05,-2.943485014839098e-05,-1.681991489022039e-05,-1.691819711404607e-19,-6.183340514956392e-20,-6.183340514956392e-20,-0.005236133001744747,0.00020604395831469446,0.003332679159939289,0.00023547880118712783,-1.4887943046610899e-19,-6.868132186355069e-05,-6.776263578034403e-21,-0.00036630037357099354,-7.849293615436181e-05,-3.218725199566341e-20,-0.0031004708725959063,0.00011773940059356391,0.00023547880118712783,0.0009924599435180426,-8.553548365809813e-20,1.7216435629873644e-21,-1.9623234038590454e-05,-4.411212906306007e-34,-3.924646807718091e-05,-5.7085770095000044e-05,8.080155384959653e-05,-3.729302261490375e-05,-1.4887943046610899e-19,-8.553548365809813e-20,2.663787427081843e-06,6.108250609912477e-21,3.444369569354437e-21,1.3669750927329787e-20,4.068159474757103e-21,4.150112151607724e-21,0.00020604395831469446,-2.943485014839098e-05,-6.868132186355069e-05,1.7216435629873644e-21,6.108250609912477e-21,9.811617019295227e-06,2.2616712834623516e-22,-7.39818142184567e-21,-7.879769771103808e-22,4.191678684207885e-23,0.00011773940059356391,-1.681991489022039e-05,-6.776263578034403e-21,-1.9623234038590454e-05,3.444369569354437e-21,2.2616712834623516e-22,2.803319148370065e-06,1.8488808527670503e-35,1.1042962151778788e-21,4.235164736271502e-22,0.0003052503161597997,-1.691819711404607e-19,-0.00036630037357099354,-4.411212906306007e-34,1.3669750927329787e-20,-7.39818142184567e-21,1.8488808527670503e-35,6.105006468715146e-05,1.9837348216917367e-35,2.1016204607856814e-35,0.00023547880118712783,-6.183340514956392e-20,-7.849293615436181e-05,-3.924646807718091e-05,4.068159474757103e-21,-7.879769771103808e-22,1.1042962151778788e-21,1.9837348216917367e-35,1.308215632889187e-05,5.082197683525802e-21,0.00010465725063113496,-6.183340514956392e-20,-3.218725199566341e-20,-5.7085770095000044e-05,4.150112151607724e-21,4.191678684207885e-23,4.235164736271502e-22,2.1016204607856814e-35,5.082197683525802e-21,4.75714750791667e-06,15.0,7.0,14.0,0.024309640750288963,-0.002542767208069563,-0.004876700695604086,-0.00270408159121871,7.503000961150974e-05,0.00019132652960252017,0.0001020408162730746,0.00028344671591185033,0.0002040816325461492,8.50340147735551e-05,-0.002542767208069563,0.0006980017060413957,0.00019132652960252017,0.0001020408162730746,-3.462923632469028e-05,-2.7332362151355483e-05,-1.4577259207726456e-05,5.749093957820781e-19,1.3383120566617945e-19,-3.6422416731934915e-20,-0.004876700695604086,0.00019132652960252017,0.003099489724263549,0.0002040816325461492,3.607517665054281e-19,-6.377550744218752e-05,-6.352747104407253e-20,-0.0003401360590942204,-6.80272132740356e-05,-1.8973538018496328e-19,-0.00270408159121871,0.0001020408162730746,0.0002040816325461492,0.0007986656273715198,4.746872557246156e-20,-9.421155492096809e-20,-1.5698587958468124e-05,-2.58918853763732e-19,-3.139717591693625e-05,-4.251700738677755e-05,7.503000961150974e-05,-3.462923632469028e-05,3.607517665054281e-19,4.746872557246156e-20,2.473516815371113e-06,-6.874842665976696e-21,-3.694281814844608e-22,-3.820207320162288e-20,-9.331866353291825e-21,-1.022537206834933e-21,0.00019132652960252017,-2.7332362151355483e-05,-6.377550744218752e-05,-9.421155492096809e-20,-6.874842665976696e-21,9.11078677745536e-06,1.3429795242423209e-22,-2.99037779094453e-20,-2.2805258416471518e-21,7.687029014340067e-21,0.0001020408162730746,-1.4577259207726456e-05,-6.352747104407253e-20,-1.5698587958468124e-05,-3.694281814844608e-22,1.3429795242423209e-22,2.2426552277465817e-06,9.710405688904971e-21,1.8925997428376976e-21,4.870439446712227e-21,0.00028344671591185033,5.749093957820781e-19,-0.0003401360590942204,-2.58918853763732e-19,-3.820207320162288e-20,-2.99037779094453e-20,9.710405688904971e-21,5.668934318237007e-05,-4.324167027580863e-21,1.2587562810388879e-20,0.0002040816325461492,1.3383120566617945e-19,-6.80272132740356e-05,-3.139717591693625e-05,-9.331866353291825e-21,-2.2805258416471518e-21,1.8925997428376976e-21,-4.324167027580863e-21,1.0465724699315615e-05,9.529120656610879e-21,8.50340147735551e-05,-3.6422416731934915e-20,-1.8973538018496328e-19,-4.251700738677755e-05,-1.022537206834933e-21,7.687029014340067e-21,4.870439446712227e-21,1.2587562810388879e-20,9.529120656610879e-21,3.2705390822229674e-06,15.0,7.0,15.0,0.02284294180572033,-0.0023792015854269266,-0.004563492257148027,-0.0023792015854269266,7.002801430644467e-05,0.00017857142665889114,8.928571332944557e-05,0.00026455026818439364,0.00017857142665889114,7.002801430644467e-05,-0.0023792015854269266,0.00065231864573434,0.00017857142665889114,8.928571332944557e-05,-3.2320622267434373e-05,-2.551020406826865e-05,-1.2755102034134325e-05,-1.9195067326295685e-19,-2.837560373301906e-20,-3.134021904840911e-20,-0.004563492257148027,0.00017857142665889114,0.0028968253172934055,0.00017857142665889114,-1.22334054311243e-19,-5.952380888629705e-05,8.893845946170154e-21,-0.0003174603043589741,-5.952380888629705e-05,8.470329472543003e-21,-0.0023792015854269266,8.928571332944557e-05,0.00017857142665889114,0.00065231864573434,-6.051947398296319e-20,7.355350591339043e-21,-1.2755102034134325e-05,-2.9912161896901644e-34,-2.551020406826865e-05,-3.2320622267434373e-05,7.002801430644467e-05,-3.2320622267434373e-05,-1.22334054311243e-19,-6.051947398296319e-20,2.308615648871637e-06,4.344665597135693e-21,1.878768499436051e-21,1.1847117416499578e-20,3.0730702855334388e-21,2.7000184935689506e-21,0.00017857142665889114,-2.551020406826865e-05,-5.952380888629705e-05,7.355350591339043e-21,4.344665597135693e-21,8.50340165925445e-06,-1.3954808049485483e-22,8.697006040950943e-21,-1.9451580234774927e-21,2.0564097074782806e-23,8.928571332944557e-05,-1.2755102034134325e-05,8.893845946170154e-21,-1.2755102034134325e-05,1.878768499436051e-21,-1.3954808049485483e-22,1.822157400965807e-06,9.240208529604533e-36,-1.1782818260261001e-21,-8.470329472543003e-22,0.00026455026818439364,-1.9195067326295685e-19,-0.0003174603043589741,-2.9912161896901644e-34,1.1847117416499578e-20,8.697006040950943e-21,9.240208529604533e-36,5.291005436447449e-05,1.2794531369238728e-35,1.3990308450345284e-35,0.00017857142665889114,-2.837560373301906e-20,-5.952380888629705e-05,-2.551020406826865e-05,3.0730702855334388e-21,-1.9451580234774927e-21,-1.1782818260261001e-21,1.2794531369238728e-35,8.50340165925445e-06,-1.6940658945086007e-21,7.002801430644467e-05,-3.134021904840911e-20,8.470329472543003e-21,-3.2320622267434373e-05,2.7000184935689506e-21,2.0564097074782806e-23,-8.470329472543003e-22,1.3990308450345284e-35,-1.6940658945086007e-21,2.308615648871637e-06,15.0,7.0,16.0,0.021543461829423904,-0.002235425403341651,-0.004288121592253447,-0.0021095939446240664,6.565126386703923e-05,0.00016741071885917336,7.878151518525556e-05,0.00024801588733680546,0.00015756303037051111,5.835667616338469e-05,-0.002235425403341651,0.0006122521008364856,0.00016741071885917336,7.878151518525556e-05,-3.0300581784103997e-05,-2.391581620031502e-05,-1.1254502169322222e-05,5.840776588964627e-20,-4.2351647362715017e-20,-1.7364175418713157e-20,-0.004288121592253447,0.00016741071885917336,0.0027190563268959522,0.00015756303037051111,6.061240255490469e-20,-5.5803571740398183e-05,-9.402065714522734e-20,-0.00029761905898340046,-5.25210089108441e-05,-1.3552527156068805e-19,-0.0021095939446240664,7.878151518525556e-05,0.00015756303037051111,0.0005397158674895763,1.1030188512104666e-20,-1.1515971006341745e-19,-1.050420178216882e-05,-2.3991523222033287e-19,-2.100840356433764e-05,-2.501000381016638e-05,6.565126386703923e-05,-3.0300581784103997e-05,6.061240255490469e-20,1.1030188512104666e-20,2.1643272702931426e-06,2.954161658840199e-22,-4.401111283342221e-22,-1.0198915617341488e-20,-5.600705934838633e-22,-6.544587979137416e-22,0.00016741071885917336,-2.391581620031502e-05,-5.5803571740398183e-05,-1.1515971006341745e-19,2.954161658840199e-22,7.97193843027344e-06,3.7047598061756646e-21,1.0169897249036075e-20,4.767570571032665e-21,4.391580631916801e-21,7.878151518525556e-05,-1.1254502169322222e-05,-9.402065714522734e-20,-1.050420178216882e-05,-4.401111283342221e-22,3.7047598061756646e-21,1.5006002058726153e-06,5.60886979954878e-21,3.738695617819863e-21,1.376428539288238e-21,0.00024801588733680546,5.840776588964627e-20,-0.00029761905898340046,-2.3991523222033287e-19,-1.0198915617341488e-20,1.0169897249036075e-20,5.60886979954878e-21,4.960317528457381e-05,2.021167682276733e-20,8.021486247211385e-21,0.00015756303037051111,-4.2351647362715017e-20,-5.25210089108441e-05,-2.100840356433764e-05,-5.600705934838633e-22,4.767570571032665e-21,3.738695617819863e-21,2.021167682276733e-20,7.002801339694997e-06,6.776263578034403e-21,5.835667616338469e-05,-1.7364175418713157e-20,-1.3552527156068805e-19,-2.501000381016638e-05,-6.544587979137416e-22,4.391580631916801e-21,1.376428539288238e-21,8.021486247211385e-21,6.776263578034403e-21,1.6673335494488128e-06,15.0,8.0,3.0,0.07555487751960754,-0.009323937818408012,-0.01597222313284874,-0.03315972164273262,0.00030637255986221135,0.0006944444612599909,0.0015625000232830644,0.0009259259095415473,0.0027777778450399637,0.004166666883975267,-0.009323937818408012,0.0026988841127604246,0.0006944444612599909,0.0015625000232830644,-0.00014140272105578333,-9.920635056914762e-05,-0.00022321428696159273,1.5585406229479126e-19,-5.421010862427522e-20,-5.2165136170309376e-18,-0.01597222313284874,0.0006944444612599909,0.009193121455609798,0.0027777778450399637,9.486769009248164e-20,-0.00019841270113829523,-2.710505431213761e-19,-0.0009259259095415473,-0.0007936508045531809,-3.556852232149949e-18,-0.03315972164273262,0.0015625000232830644,0.0027777778450399637,0.07482638955116272,-2.940078553482314e-19,-8.019220838620498e-19,-0.0015625000232830644,-6.396792921062053e-19,-0.0027777778450399637,-0.02500000037252903,0.00030637255986221135,-0.00014140272105578333,9.486769009248164e-20,-2.940078553482314e-19,1.0100194231199566e-05,1.6940658945086007e-21,6.352747104407253e-22,-1.3552527156068805e-20,-8.470329472543003e-21,1.7410898198625332e-19,0.0006944444612599909,-9.920635056914762e-05,-0.00019841270113829523,-8.019220838620498e-19,1.6940658945086007e-21,2.8344671591185033e-05,5.3968022585784214e-20,2.371692252312041e-20,1.0164395367051604e-20,2.1122566174606165e-19,0.0015625000232830644,-0.00022321428696159273,-2.710505431213761e-19,-0.0015625000232830644,6.352747104407253e-22,5.3968022585784214e-20,0.00022321428696159273,-1.9973944791602164e-20,7.357056166676294e-20,2.069704533895722e-18,0.0009259259095415473,1.5585406229479126e-19,-0.0009259259095415473,-6.396792921062053e-19,-1.3552527156068805e-20,2.371692252312041e-20,-1.9973944791602164e-20,0.00013227513409219682,4.0657581468206416e-20,3.4694470036524025e-19,0.0027777778450399637,-5.421010862427522e-20,-0.0007936508045531809,-0.0027777778450399637,-8.470329472543003e-21,1.0164395367051604e-20,7.357056166676294e-20,4.0657581468206416e-20,0.0007936508045531809,-1.2188960241330001e-18,0.004166666883975267,-5.2165136170309376e-18,-3.556852232149949e-18,-0.02500000037252903,1.7410898198625332e-19,2.1122566174606165e-19,2.069704533895722e-18,3.4694470036524025e-19,-1.2188960241330001e-18,0.012500000186264515,15.0,8.0,4.0,0.06143178045749664,-0.007227328605949879,-0.012395833618938923,-0.021145833656191826,0.0002297794126207009,0.0005208333604969084,0.0009374999790452421,0.0006944444612599909,0.0016666667070239782,0.0020833334419876337,-0.007227328605949879,0.0020576452370733023,0.0005208333604969084,0.0009374999790452421,-0.00010605203715385869,-7.440476474585012e-05,-0.00013392856635618955,-6.403569081242511e-19,-5.692061405548898e-19,-3.609826791433011e-19,-0.012395833618938923,0.0005208333604969084,0.007013889029622078,0.0016666667070239782,-2.0328790734103208e-19,-0.00014880952949170023,-3.7947076036992655e-19,-0.0006944444612599909,-0.0004761904710903764,-4.151818431340965e-18,-0.021145833656191826,0.0009374999790452421,0.0016666667070239782,0.028680555522441864,-1.0902819499877692e-19,-8.503133387685325e-19,-0.0006249999860301614,-1.1329912495678368e-18,-0.0011111111380159855,-0.0062500000931322575,0.0002297794126207009,-0.00010605203715385869,-2.0328790734103208e-19,-1.0902819499877692e-19,7.575145446025999e-06,5.929230630780102e-21,1.249373597200093e-20,1.9481757786848908e-20,1.0164395367051604e-20,-6.5736039240621275e-21,0.0005208333604969084,-7.440476474585012e-05,-0.00014880952949170023,-8.503133387685325e-19,5.929230630780102e-21,2.1258503693388775e-05,4.9833783577766985e-20,9.571472303973594e-20,7.962109704190423e-20,5.756232268013172e-20,0.0009374999790452421,-0.00013392856635618955,-3.7947076036992655e-19,-0.0006249999860301614,1.249373597200093e-20,4.9833783577766985e-20,8.928571332944557e-05,-1.9658677502707222e-20,5.503233261550147e-20,2.4326006627416175e-19,0.0006944444612599909,-6.403569081242511e-19,-0.0006944444612599909,-1.1329912495678368e-18,1.9481757786848908e-20,9.571472303973594e-20,-1.9658677502707222e-20,9.920635056914762e-05,2.337810934421869e-19,1.1564823776331244e-19,0.0016666667070239782,-5.692061405548898e-19,-0.0004761904710903764,-0.0011111111380159855,1.0164395367051604e-20,7.962109704190423e-20,5.503233261550147e-20,2.337810934421869e-19,0.0003174603043589741,2.1142914300687086e-18,0.0020833334419876337,-3.609826791433011e-19,-4.151818431340965e-18,-0.0062500000931322575,-6.5736039240621275e-21,5.756232268013172e-20,2.4326006627416175e-19,1.1564823776331244e-19,2.1142914300687086e-18,0.0020833334419876337,15.0,8.0,5.0,0.05184582248330116,-0.005906862672418356,-0.010138888843357563,-0.014692460186779499,0.00018382353300694376,0.00041666667675599456,0.0006249999860301614,0.0005555555690079927,0.0011111111380159855,0.0011904762359336019,-0.005906862672418356,0.0016639733221381903,0.00041666667675599456,0.0006249999860301614,-8.484163117827848e-05,-5.952380888629705e-05,-8.928571332944557e-05,4.4056469836361075e-20,1.9998290720357646e-19,7.878615127135086e-19,-0.010138888843357563,0.00041666667675599456,0.005674603395164013,0.0011111111380159855,-4.404571325722362e-20,-0.0001190476177725941,3.6434240244815594e-19,-0.0005555555690079927,-0.0003174603043589741,5.939266916549785e-19,-0.014692460186779499,0.0006249999860301614,0.0011111111380159855,0.014489087276160717,7.115076756936123e-20,1.8067902556016913e-20,-0.0003124999930150807,1.4011360105948907e-18,-0.0005555555690079927,-0.0023809524718672037,0.00018382353300694376,-8.484163117827848e-05,-4.404571325722362e-20,7.115076756936123e-20,6.06011644777027e-06,2.541098841762901e-21,-8.470329472543003e-22,3.0798137462303066e-21,4.060537690017475e-22,-1.4841885242363034e-20,0.00041666667675599456,-5.952380888629705e-05,-0.0001190476177725941,1.8067902556016913e-20,2.541098841762901e-21,1.70068033185089e-05,6.776263578034403e-21,3.050859092642487e-22,-2.022569204115385e-20,-3.7202268820374753e-22,0.0006249999860301614,-8.928571332944557e-05,3.6434240244815594e-19,-0.0003124999930150807,-8.470329472543003e-22,6.776263578034403e-21,4.4642856664722785e-05,-3.768591573056406e-20,-6.382302009199831e-20,-2.64338825480515e-19,0.0005555555690079927,4.4056469836361075e-20,-0.0005555555690079927,1.4011360105948907e-18,3.0798137462303066e-21,3.050859092642487e-22,-3.768591573056406e-20,7.936507608974352e-05,-2.07773681953513e-19,-1.0302083457420177e-19,0.0011111111380159855,1.9998290720357646e-19,-0.0003174603043589741,-0.0005555555690079927,4.060537690017475e-22,-2.022569204115385e-20,-6.382302009199831e-20,-2.07773681953513e-19,0.00015873015217948705,9.750843834866304e-20,0.0011904762359336019,7.878615127135086e-19,5.939266916549785e-19,-0.0023809524718672037,-1.4841885242363034e-20,-3.7202268820374753e-22,-2.64338825480515e-19,-1.0302083457420177e-19,9.750843834866304e-20,0.0005952381179668009,15.0,8.0,6.0,0.04488309100270271,-0.004996790550649166,-0.00858134962618351,-0.010813492350280285,0.00015318627993110567,0.00034722223062999547,0.00044642857392318547,0.00046296295477077365,0.0007936508045531809,0.0007440476329065859,-0.004996790550649166,0.001397273619659245,0.00034722223062999547,0.00044642857392318547,-7.070136052789167e-05,-4.960317528457381e-05,-6.377550744218752e-05,-6.087971760207857e-20,-3.3983231711517375e-19,-8.589409876538254e-19,-0.00858134962618351,0.00034722223062999547,0.0047666290774941444,0.0007936508045531809,2.843765843483188e-20,-9.920635056914762e-05,-6.505861337718115e-19,-0.00046296295477077365,-0.00022675737272948027,-2.002348250591295e-18,-0.010813492350280285,0.00044642857392318547,0.0007936508045531809,0.008417658507823944,-1.756916757660999e-19,-9.672845355993499e-19,-0.00017857142665889114,-1.4111356936224677e-18,-0.0003174603043589741,-0.0011160714784637094,0.00015318627993110567,-7.070136052789167e-05,2.843765843483188e-20,-1.756916757660999e-19,5.050097115599783e-06,3.0525345069874316e-22,3.9771599138534665e-21,-4.12320656737666e-21,-7.16799013731706e-24,2.8220074390813485e-20,0.00034722223062999547,-4.960317528457381e-05,-9.920635056914762e-05,-9.672845355993499e-19,3.0525345069874316e-22,1.4172335795592517e-05,3.207577971459909e-20,1.3086373722391095e-20,4.50400198964293e-20,1.057130037376807e-19,0.00044642857392318547,-6.377550744218752e-05,-6.505861337718115e-19,-0.00017857142665889114,3.9771599138534665e-21,3.207577971459909e-20,2.551020406826865e-05,3.473022168732736e-20,5.876480418388801e-20,1.0189083961838184e-20,0.00046296295477077365,-6.087971760207857e-20,-0.00046296295477077365,-1.4111356936224677e-18,-4.12320656737666e-21,1.3086373722391095e-20,3.473022168732736e-20,6.613756704609841e-05,2.0459784154506357e-20,1.959463950612884e-19,0.0007936508045531809,-3.3983231711517375e-19,-0.00022675737272948027,-0.0003174603043589741,-7.16799013731706e-24,4.50400198964293e-20,5.876480418388801e-20,2.0459784154506357e-20,9.070294618140906e-05,-1.2253100084521304e-19,0.0007440476329065859,-8.589409876538254e-19,-2.002348250591295e-18,-0.0011160714784637094,2.8220074390813485e-20,1.057130037376807e-19,1.0189083961838184e-20,1.959463950612884e-19,-1.2253100084521304e-19,0.00022321428696159273,15.0,8.0,7.0,0.039585523307323456,-0.004330794792622328,-0.0074404762126505375,-0.008296131156384945,0.00013130252773407847,0.00029761905898340046,0.0003348214377183467,0.00039682540227659047,0.0005952381179668009,0.0004960317746736109,-0.004330794792622328,0.0012044962495565414,0.00029761905898340046,0.0003348214377183467,-6.0601163568207994e-05,-4.251700738677755e-05,-4.783163240063004e-05,-4.418394030746006e-19,-1.7132628178213958e-19,2.414810592705016e-19,-0.0074404762126505375,0.00029761905898340046,0.004109977278858423,0.0005952381179668009,-4.7307725852220625e-20,-8.50340147735551e-05,-3.4882583832515654e-19,-0.00039682540227659047,-0.0001700680295471102,1.2373356377456088e-18,-0.008296131156384945,0.0003348214377183467,0.0005952381179668009,0.005344741977751255,9.962583977103979e-20,2.3108707281585252e-20,-0.00011160714348079637,1.2135932535692582e-19,-0.00019841270113829523,-0.0005952381179668009,0.00013130252773407847,-6.0601163568207994e-05,-4.7307725852220625e-20,9.962583977103979e-20,4.328654540586285e-06,8.867704711358263e-23,-1.9389531591413863e-21,6.749416962733725e-21,9.60335284644541e-23,-1.2704148424731973e-20,0.00029761905898340046,-4.251700738677755e-05,-8.50340147735551e-05,2.3108707281585252e-20,8.867704711358263e-23,1.2147716006438714e-05,6.205946375589315e-21,6.583129183465488e-20,1.5612757796538502e-20,-1.9566159289897727e-20,0.0003348214377183467,-4.783163240063004e-05,-3.4882583832515654e-19,-0.00011160714348079637,-1.9389531591413863e-21,6.205946375589315e-21,1.594387686054688e-05,3.09077522220602e-20,2.881610648977196e-20,1.0685161300409854e-20,0.00039682540227659047,-4.418394030746006e-19,-0.00039682540227659047,1.2135932535692582e-19,6.749416962733725e-21,6.583129183465488e-20,3.09077522220602e-20,5.668934318237007e-05,8.534752625094106e-20,-9.990806991863376e-20,0.0005952381179668009,-1.7132628178213958e-19,-0.0001700680295471102,-0.00019841270113829523,9.60335284644541e-23,1.5612757796538502e-20,2.881610648977196e-20,8.534752625094106e-20,5.668934318237007e-05,-1.0713901141493384e-19,0.0004960317746736109,2.414810592705016e-19,1.2373356377456088e-18,-0.0005952381179668009,-1.2704148424731973e-20,-1.9566159289897727e-20,1.0685161300409854e-20,-9.990806991863376e-20,-1.0713901141493384e-19,9.920635056914762e-05,15.0,8.0,8.0,0.03541496396064758,-0.0038219974376261234,-0.006568287033587694,-0.006568287033587694,0.00011488970631035045,0.0002604166802484542,0.0002604166802484542,0.00034722223062999547,0.00046296295477077365,0.00034722223062999547,-0.0038219974376261234,0.0010585845448076725,0.0002604166802484542,0.0002604166802484542,-5.3026018576929346e-05,-3.720238237292506e-05,-3.720238237292506e-05,-4.1644516506437576e-19,-1.2752210526378144e-19,-5.257224448251077e-19,-0.006568287033587694,0.0002604166802484542,0.003612764645367861,0.00046296295477077365,-1.2245872593919122e-19,-7.440476474585012e-05,-2.6181910408770775e-19,-0.00034722223062999547,-0.00013227513409219682,-6.380876415112884e-19,-0.006568287033587694,0.0002604166802484542,0.00046296295477077365,0.003612764645367861,-1.2018024401721684e-19,-2.840916141649457e-19,-7.440476474585012e-05,-4.190311126049755e-19,-0.00013227513409219682,-0.00034722223062999547,0.00011488970631035045,-5.3026018576929346e-05,-1.2245872593919122e-19,-1.2018024401721684e-19,3.7875727230129996e-06,2.8994776694289846e-21,3.4775836174465686e-21,1.257003207439901e-20,1.8711041540728644e-21,1.1787431973218615e-20,0.0002604166802484542,-3.720238237292506e-05,-7.440476474585012e-05,-2.840916141649457e-19,2.8994776694289846e-21,1.0629251846694387e-05,1.3340147726002249e-20,4.9088791113889343e-20,1.184183686995245e-20,1.9028493507325393e-20,0.0002604166802484542,-3.720238237292506e-05,-2.6181910408770775e-19,-7.440476474585012e-05,3.4775836174465686e-21,1.3340147726002249e-20,1.0629251846694387e-05,1.5644567091617714e-20,1.1822638040246836e-20,7.95714015816657e-20,0.00034722223062999547,-4.1644516506437576e-19,-0.00034722223062999547,-4.190311126049755e-19,1.257003207439901e-20,4.9088791113889343e-20,1.5644567091617714e-20,4.960317528457381e-05,1.6814972728417696e-20,3.139267070029807e-20,0.00046296295477077365,-1.2752210526378144e-19,-0.00013227513409219682,-0.00013227513409219682,1.8711041540728644e-21,1.184183686995245e-20,1.1822638040246836e-20,1.6814972728417696e-20,3.779289545491338e-05,6.854320347290998e-20,0.00034722223062999547,-5.257224448251077e-19,-6.380876415112884e-19,-0.00034722223062999547,1.1787431973218615e-20,1.9028493507325393e-20,7.95714015816657e-20,3.139267070029807e-20,6.854320347290998e-20,4.960317528457381e-05,15.0,8.0,9.0,0.0320441760122776,-0.0034204793628305197,-0.005879629403352737,-0.005330387037247419,0.00010212418419541791,0.00023148147738538682,0.00020833333837799728,0.00030864198924973607,0.000370370369637385,0.00025252526393160224,-0.0034204793628305197,0.0009442708687856793,0.00023148147738538682,0.00020833333837799728,-4.7134239139268175e-05,-3.3068783523049206e-05,-2.9761904443148524e-05,-2.6781251876414314e-19,-8.811056152846106e-20,-1.2582418780954564e-19,-0.005879629403352737,0.00023148147738538682,0.0032231041695922613,0.000370370369637385,-1.4791810442265459e-19,-6.613756704609841e-05,1.8989606325012597e-20,-0.00030864198924973607,-0.00010582010872894898,-4.643358806091504e-34,-0.005330387037247419,0.00020833333837799728,0.000370370369637385,0.002559148008003831,-1.4641902050816122e-19,4.329392644165439e-21,-5.208333459449932e-05,-8.223874240207097e-20,-9.259259240934625e-05,-0.00021645022206939757,0.00010212418419541791,-4.7134239139268175e-05,-1.4791810442265459e-19,-1.4641902050816122e-19,3.3667313346086303e-06,4.195854270129626e-21,5.6554059791469906e-21,1.3290036252076734e-20,6.379217287905733e-21,1.0562989793551326e-20,0.00023148147738538682,-3.3068783523049206e-05,-6.613756704609841e-05,4.329392644165439e-21,4.195854270129626e-21,9.448223863728344e-06,-1.5800370477790876e-21,2.3357717726532123e-20,1.923104653254683e-21,1.315990750028106e-35,0.00020833333837799728,-2.9761904443148524e-05,1.8989606325012597e-20,-5.208333459449932e-05,5.6554059791469906e-21,-1.5800370477790876e-21,7.440476110787131e-06,1.6189936470095588e-35,-1.9823369243445887e-21,-5.514417325043232e-21,0.00030864198924973607,-2.6781251876414314e-19,-0.00030864198924973607,-8.223874240207097e-20,1.3290036252076734e-20,2.3357717726532123e-20,1.6189936470095588e-35,4.4091710151406005e-05,2.3496784235843333e-20,4.1696974326278055e-35,0.000370370369637385,-8.811056152846106e-20,-0.00010582010872894898,-9.259259240934625e-05,6.379217287905733e-21,1.923104653254683e-21,-1.9823369243445887e-21,2.3496784235843333e-20,2.6455027182237245e-05,2.0084424444682305e-35,0.00025252526393160224,-1.2582418780954564e-19,-4.643358806091504e-34,-0.00021645022206939757,1.0562989793551326e-20,1.315990750028106e-35,-5.514417325043232e-21,4.1696974326278055e-35,2.0084424444682305e-35,2.7056277758674696e-05,15.0,8.0,10.0,0.029262106865644455,-0.0030954768881201744,-0.005321969743818045,-0.004412878770381212,9.191176650347188e-05,0.00020833333837799728,0.00017045454296749085,0.00027777778450399637,0.0003030303050763905,0.00018939393339678645,-0.0030954768881201744,0.0008522788411937654,0.00020833333837799728,0.00017045454296749085,-4.242081558913924e-05,-2.9761904443148524e-05,-2.4350649255211465e-05,-1.1063249887212644e-20,-2.2211347825757916e-19,-3.64886170303333e-19,-0.005321969743818045,0.00020833333837799728,0.002909451723098755,0.0003030303050763905,-2.451836360145626e-20,-5.952380888629705e-05,-2.555062684478562e-19,-0.00027777778450399637,-8.658008300699294e-05,-4.0451848725167407e-19,-0.004412878770381212,0.00017045454296749085,0.0003030303050763905,0.001880260999314487,-2.569927378580081e-19,-1.9258019648320092e-19,-3.787878813454881e-05,-5.704045701661143e-19,-6.73400645609945e-05,-0.00014204545004758984,9.191176650347188e-05,-4.242081558913924e-05,-2.451836360145626e-20,-2.569927378580081e-19,3.030058223885135e-06,2.1414734687233634e-21,8.076672280324457e-21,-5.831003336936214e-21,9.460089041760347e-21,1.6310499183511186e-20,0.00020833333837799728,-2.9761904443148524e-05,-5.952380888629705e-05,-1.9258019648320092e-19,2.1414734687233634e-21,8.50340165925445e-06,4.202159502816426e-21,-7.158180298550951e-21,7.482716210833036e-21,1.2015401011333669e-20,0.00017045454296749085,-2.4350649255211465e-05,-2.555062684478562e-19,-3.787878813454881e-05,8.076672280324457e-21,4.202159502816426e-21,5.4112551879370585e-06,2.3229774534637764e-20,1.0903164589289491e-20,1.8994162280730174e-20,0.00027777778450399637,-1.1063249887212644e-20,-0.00027777778450399637,-5.704045701661143e-19,-5.831003336936214e-21,-7.158180298550951e-21,2.3229774534637764e-20,3.968253804487176e-05,2.5196147640563968e-20,2.803593623164094e-20,0.0003030303050763905,-2.2211347825757916e-19,-8.658008300699294e-05,-6.73400645609945e-05,9.460089041760347e-21,7.482716210833036e-21,1.0903164589289491e-20,2.5196147640563968e-20,1.924001844599843e-05,2.4030802022667338e-20,0.00018939393339678645,-3.64886170303333e-19,-4.0451848725167407e-19,-0.00014204545004758984,1.6310499183511186e-20,1.2015401011333669e-20,1.8994162280730174e-20,2.803593623164094e-20,2.4030802022667338e-20,1.578282899572514e-05,15.0,8.0,11.0,0.02692629024386406,-0.0028269831091165543,-0.004861111287027597,-0.003713820828124881,8.355615136679262e-05,0.00018939393339678645,0.00014204545004758984,0.00025252526393160224,0.00025252526393160224,0.00014568764891009778,-0.0028269831091165543,0.000776643690187484,0.00018939393339678645,0.00014204545004758984,-3.856437615468167e-05,-2.7056277758674696e-05,-2.029220740951132e-05,-1.770654288930944e-19,-5.306238906200936e-20,-7.335398898029036e-20,-0.004861111287027597,0.00018939393339678645,0.002651515183970332,0.00025252526393160224,-1.3390919328830672e-19,-5.411255551734939e-05,7.335405360377572e-21,-0.00025252526393160224,-7.215006917249411e-05,-2.8297866065999455e-34,-0.003713820828124881,0.00014204545004758984,0.00025252526393160224,0.0014226398197934031,-9.250793767532392e-20,2.3635567209612545e-21,-2.840909110091161e-05,-3.601256661382401e-34,-5.0505052058724687e-05,-9.712509927339852e-05,8.355615136679262e-05,-3.856437615468167e-05,-1.3390919328830672e-19,-9.250793767532392e-20,2.754598426690791e-06,5.149457403187237e-21,2.6763285335795077e-21,1.0873665583811746e-20,4.349466314304055e-21,5.855050947527422e-21,0.00018939393339678645,-2.7056277758674696e-05,-5.411255551734939e-05,2.3635567209612545e-21,5.149457403187237e-21,7.730364814051427e-06,-1.3348725584915456e-22,7.095459974838972e-21,-4.083273797265648e-22,1.0782743529837017e-35,0.00014204545004758984,-2.029220740951132e-05,7.335405360377572e-21,-2.840909110091161e-05,2.6763285335795077e-21,-1.3348725584915456e-22,4.058441390952794e-06,1.0631473248509276e-35,-1.2801989189354077e-21,-1.7233445742909616e-21,0.00025252526393160224,-1.770654288930944e-19,-0.00025252526393160224,-3.601256661382401e-34,1.0873665583811746e-20,7.095459974838972e-21,1.0631473248509276e-35,3.607503458624706e-05,1.5594163733278012e-35,2.3112576526544103e-35,0.00025252526393160224,-5.306238906200936e-20,-7.215006917249411e-05,-5.0505052058724687e-05,4.349466314304055e-21,-4.083273797265648e-22,-1.2801989189354077e-21,1.5594163733278012e-35,1.4430014743993524e-05,9.142281757177938e-36,0.00014568764891009778,-7.335398898029036e-20,-2.8297866065999455e-34,-9.712509927339852e-05,5.855050947527422e-21,1.0782743529837017e-35,-1.7233445742909616e-21,2.3112576526544103e-35,9.142281757177938e-36,9.71250938164303e-06,15.0,8.0,12.0,0.024936966598033905,-0.0026014172472059727,-0.0044738249853253365,-0.0031688797753304243,7.659313996555284e-05,0.00017361111531499773,0.0001201923078042455,0.00023148147738538682,0.0002136752154910937,0.00011446886492194608,-0.0026014172472059727,0.0007133542676456273,0.00017361111531499773,0.0001201923078042455,-3.535068026394583e-05,-2.4801587642286904e-05,-1.7170330465887673e-05,-2.0085938261075882e-19,-5.251604272976662e-20,-7.369186641112413e-20,-0.0044738249853253365,0.00017361111531499773,0.0024356429930776358,0.0002136752154910937,-1.1703463124404253e-19,-4.960317528457381e-05,-4.235164736271502e-21,-0.00023148147738538682,-6.105006468715146e-05,0.0,-0.0031688797753304243,0.0001201923078042455,0.0002136752154910937,0.0011027167784050107,-7.576744351377867e-20,-6.695180087061816e-21,-2.1853147700312547e-05,-4.744542880599083e-20,-3.885003752657212e-05,-6.868132186355069e-05,7.659313996555284e-05,-3.535068026394583e-05,-1.1703463124404253e-19,-7.576744351377867e-20,2.5250485577998916e-06,3.957375433811817e-21,1.6848239283091679e-21,9.96752718905755e-21,3.679938329347322e-21,4.624894032270772e-21,0.00017361111531499773,-2.4801587642286904e-05,-4.960317528457381e-05,-6.695180087061816e-21,3.957375433811817e-21,7.086167897796258e-06,6.231530611493247e-22,1.751828789100231e-20,7.278649683389728e-22,-2.2970963761431857e-23,0.0001201923078042455,-1.7170330465887673e-05,-4.235164736271502e-21,-2.1853147700312547e-05,1.6848239283091679e-21,6.231530611493247e-22,3.1218780804920243e-06,8.27589635938087e-36,-3.140389378022044e-22,1.9058241313221758e-21,0.00023148147738538682,-2.0085938261075882e-19,-0.00023148147738538682,-4.744542880599083e-20,9.96752718905755e-21,1.751828789100231e-20,8.27589635938087e-36,3.3068783523049206e-05,1.355583749410615e-20,1.7303276844104072e-35,0.0002136752154910937,-5.251604272976662e-20,-6.105006468715146e-05,-3.885003752657212e-05,3.679938329347322e-21,7.278649683389728e-22,-3.140389378022044e-22,1.355583749410615e-20,1.1100010851805564e-05,-4.235164736271502e-22,0.00011446886492194608,-7.369186641112413e-20,0.0,-6.868132186355069e-05,4.624894032270772e-21,-2.2970963761431857e-23,1.9058241313221758e-21,1.7303276844104072e-35,-4.235164736271502e-22,6.243756160984049e-06,15.0,8.0,13.0,0.023222140967845917,-0.0024092330131679773,-0.00414377311244607,-0.002735805930569768,7.070136052789167e-05,0.00016025641525629908,0.00010302197915734723,0.0002136752154910937,0.00018315018678549677,9.157509339274839e-05,-0.0024092330131679773,0.0006596129387617111,0.00016025641525629908,0.00010302197915734723,-3.263139660703018e-05,-2.2893773348187096e-05,-1.471742507419549e-05,-1.091471539106197e-19,-2.795208725939191e-20,-5.166900978251232e-20,-0.00414377311244607,0.00016025641525629908,0.002252311212942004,0.00018315018678549677,-1.0768188746601297e-19,-4.578754669637419e-05,5.929230630780102e-21,-0.0002136752154910937,-5.232862531556748e-05,1.1858461261560205e-20,-0.002735805930569768,0.00010302197915734723,0.00018315018678549677,0.0008722180500626564,-7.589519121962983e-20,-1.513057127614404e-21,-1.7170330465887673e-05,-2.92048472013802e-34,-3.052503234357573e-05,-4.995004928787239e-05,7.070136052789167e-05,-3.263139660703018e-05,-1.0768188746601297e-19,-7.589519121962983e-20,2.3308139134314843e-06,3.413205701335215e-21,2.7971187134385573e-21,9.200793769119116e-21,3.2634965117794873e-21,3.7070567671832764e-21,0.00016025641525629908,-2.2893773348187096e-05,-4.578754669637419e-05,-1.513057127614404e-21,3.413205701335215e-21,6.541078164445935e-06,8.234084185437801e-22,-5.61827534394552e-21,-1.2895213615689476e-21,-3.7546079330874675e-24,0.00010302197915734723,-1.471742507419549e-05,5.929230630780102e-21,-1.7170330465887673e-05,2.7971187134385573e-21,8.234084185437801e-22,2.4529042548238067e-06,1.0822667576862076e-35,-1.999555448120833e-21,2.117582368135751e-22,0.0002136752154910937,-1.091471539106197e-19,-0.0002136752154910937,-2.92048472013802e-34,9.200793769119116e-21,-5.61827534394552e-21,1.0822667576862076e-35,3.052503234357573e-05,1.2670798822391737e-35,1.4315871023943873e-35,0.00018315018678549677,-2.795208725939191e-20,-5.232862531556748e-05,-3.052503234357573e-05,3.2634965117794873e-21,-1.2895213615689476e-21,-1.999555448120833e-21,1.2670798822391737e-35,8.72143755259458e-06,-1.9058241313221758e-21,9.157509339274839e-05,-5.166900978251232e-20,1.1858461261560205e-20,-4.995004928787239e-05,3.7070567671832764e-21,-3.7546079330874675e-24,2.117582368135751e-22,1.4315871023943873e-35,-1.9058241313221758e-21,4.162503955740249e-06,15.0,8.0,14.0,0.021728524938225746,-0.002243522321805358,-0.003859126940369606,-0.0023859126958996058,6.565126386703923e-05,0.00014880952949170023,8.928571332944557e-05,0.00019841270113829523,0.00015873015217948705,7.440476474585012e-05,-0.002243522321805358,0.000613408803474158,0.00014880952949170023,8.928571332944557e-05,-3.0300581784103997e-05,-2.1258503693388775e-05,-1.2755102034134325e-05,4.916063304255928e-20,-2.0752307207730358e-20,-8.470329472543003e-21,-0.003859126940369606,0.00014880952949170023,0.002094671130180359,0.00015873015217948705,3.653246083397288e-20,-4.251700738677755e-05,-6.776263578034403e-20,-0.00019841270113829523,-4.535147309070453e-05,5.759824041329242e-20,-0.0023859126958996058,8.928571332944557e-05,0.00015873015217948705,0.0007018849137239158,1.8448446027469653e-20,-5.539971712974865e-20,-1.3736264008912258e-05,2.5681559195995106e-19,-2.44200236920733e-05,-3.720238237292506e-05,6.565126386703923e-05,-3.0300581784103997e-05,3.653246083397288e-20,1.8448446027469653e-20,2.1643272702931426e-06,-1.5508147115980212e-21,5.994045361262782e-22,-4.1650022104272455e-21,-3.6873335279914214e-22,-1.833441990704343e-21,0.00014880952949170023,-2.1258503693388775e-05,-4.251700738677755e-05,-5.539971712974865e-20,-1.5508147115980212e-21,6.073858003219357e-06,1.4446181303194237e-21,-9.793626197758914e-21,1.3789871244373446e-21,2.602253459593747e-21,8.928571332944557e-05,-1.2755102034134325e-05,-6.776263578034403e-20,-1.3736264008912258e-05,5.994045361262782e-22,1.4446181303194237e-21,1.9623234948085155e-06,5.228679737781579e-21,1.984572291092721e-21,3.282252670610414e-21,0.00019841270113829523,4.916063304255928e-20,-0.00019841270113829523,2.5681559195995106e-19,-4.1650022104272455e-21,-9.793626197758914e-21,5.228679737781579e-21,2.8344671591185033e-05,-2.4792733917643844e-20,-1.6521176592532187e-20,0.00015873015217948705,-2.0752307207730358e-20,-4.535147309070453e-05,-2.44200236920733e-05,-3.6873335279914214e-22,1.3789871244373446e-21,1.984572291092721e-21,-2.4792733917643844e-20,6.977149951126194e-06,4.870439446712227e-21,7.440476474585012e-05,-8.470329472543003e-21,5.759824041329242e-20,-3.720238237292506e-05,-1.833441990704343e-21,2.602253459593747e-21,3.282252670610414e-21,-1.6521176592532187e-20,4.870439446712227e-21,2.861721668523387e-06,15.0,8.0,15.0,0.020415816456079483,-0.0020991626661270857,-0.003611111082136631,-0.0020991626661270857,6.127451342763379e-05,0.00013888889225199819,7.812499825377017e-05,0.0001851851848186925,0.00013888889225199819,6.127451342763379e-05,-0.0020991626661270857,0.0005732589634135365,0.00013888889225199819,7.812499825377017e-05,-2.8280543119763024e-05,-1.984126902243588e-05,-1.1160714166180696e-05,-9.929470256972862e-20,-3.5575383784680614e-20,-2.879912020664621e-20,-0.003611111082136631,0.00013888889225199819,0.0019576719496399164,0.00013888889225199819,-9.288551977556023e-20,-3.968253804487176e-05,-2.117582368135751e-21,-0.0001851851848186925,-3.968253804487176e-05,-1.3552527156068805e-20,-0.0020991626661270857,7.812499825377017e-05,0.00013888889225199819,0.0005732589634135365,-5.301778593241685e-20,2.9833373449427742e-21,-1.1160714166180696e-05,-2.1245216793527475e-34,-1.984126902243588e-05,-2.8280543119763024e-05,6.127451342763379e-05,-2.8280543119763024e-05,-9.288551977556023e-20,-5.301778593241685e-20,2.0200388917146483e-06,2.9794647825828336e-21,1.7871004893557666e-21,7.974021912804754e-21,2.343907546342069e-21,2.3495794688723824e-21,0.00013888889225199819,-1.984126902243588e-05,-3.968253804487176e-05,2.9833373449427742e-21,2.9794647825828336e-21,5.668934136338066e-06,-3.0755106803862815e-22,-3.526170784911256e-21,-2.996754594141361e-22,5.023119145649106e-23,7.812499825377017e-05,-1.1160714166180696e-05,-2.117582368135751e-21,-1.1160714166180696e-05,1.7871004893557666e-21,-3.0755106803862815e-22,1.5943877542667906e-06,7.439295078396355e-36,5.77925052745686e-22,-7.411538288475128e-22,0.0001851851848186925,-9.929470256972862e-20,-0.0001851851848186925,-2.1245216793527475e-34,7.974021912804754e-21,-3.526170784911256e-21,7.439295078396355e-36,2.6455027182237245e-05,8.879561209149523e-36,9.239670430994232e-36,0.00013888889225199819,-3.5575383784680614e-20,-3.968253804487176e-05,-1.984126902243588e-05,2.343907546342069e-21,-2.996754594141361e-22,5.77925052745686e-22,8.879561209149523e-36,5.668934136338066e-06,1.9058241313221758e-21,6.127451342763379e-05,-2.879912020664621e-20,-1.3552527156068805e-20,-2.8280543119763024e-05,2.3495794688723824e-21,5.023119145649106e-23,-7.411538288475128e-22,9.239670430994232e-36,1.9058241313221758e-21,2.0200388917146483e-06,15.0,8.0,16.0,0.01925296150147915,-0.001972273224964738,-0.00339307589456439,-0.0018612132407724857,5.7444853155175224e-05,0.0001302083401242271,6.893382669659331e-05,0.00017361111531499773,0.00012254902685526758,5.1062092097708955e-05,-0.001972273224964738,0.0005380457732826471,0.0001302083401242271,6.893382669659331e-05,-2.6513009288464673e-05,-1.860119118646253e-05,-9.847689398156945e-06,-9.487901858946449e-20,-3.176373552203626e-20,-2.922263668027336e-20,-0.00339307589456439,0.0001302083401242271,0.0018375058425590396,0.00012254902685526758,-8.582800832690926e-20,-3.720238237292506e-05,0.0,-0.00017361111531499773,-3.501400715322234e-05,5.929230630780102e-21,-0.0018612132407724857,6.893382669659331e-05,0.00012254902685526758,0.00047429389087483287,-4.455423546348766e-20,-7.404918420194003e-21,-9.191176104650367e-06,-1.733128667043226e-34,-1.633986903470941e-05,-2.188375401601661e-05,5.7444853155175224e-05,-2.6513009288464673e-05,-8.582800832690926e-20,-4.455423546348766e-20,1.8937863615064998e-06,2.5441817859111516e-21,1.2305239564586316e-21,7.475645593741555e-21,2.0881903953056257e-21,1.8958406106282862e-21,0.0001302083401242271,-1.860119118646253e-05,-3.720238237292506e-05,-7.404918420194003e-21,2.5441817859111516e-21,5.314625923347194e-06,3.7499309661070294e-22,-2.7942906281606783e-21,1.37201727959334e-21,-2.2257385430117897e-23,6.893382669659331e-05,-9.847689398156945e-06,0.0,-9.191176104650367e-06,1.2305239564586316e-21,3.7499309661070294e-22,1.3130252227711026e-06,4.63215803240541e-36,-2.792832661746536e-22,2.6469779601696886e-22,0.00017361111531499773,-9.487901858946449e-20,-0.00017361111531499773,-1.733128667043226e-34,7.475645593741555e-21,-2.7942906281606783e-21,4.63215803240541e-36,2.4801587642286904e-05,7.054608381892363e-36,7.742342171210333e-36,0.00012254902685526758,-3.176373552203626e-20,-3.501400715322234e-05,-1.633986903470941e-05,2.0881903953056257e-21,1.37201727959334e-21,-2.792832661746536e-22,7.054608381892363e-36,4.668534074880881e-06,-5.293955920339377e-22,5.1062092097708955e-05,-2.922263668027336e-20,5.929230630780102e-21,-2.188375401601661e-05,1.8958406106282862e-21,-2.2257385430117897e-23,2.6469779601696886e-22,7.742342171210333e-36,-5.293955920339377e-22,1.4589169268219848e-06,15.0,9.0,3.0,0.06852726638317108,-0.008349672891199589,-0.012979798018932343,-0.029722223058342934,0.00027233114815317094,0.0005555555690079927,0.0013888889225199819,0.0006734006456099451,0.002222222276031971,0.003703703638166189,-0.008349672891199589,0.0024078264832496643,0.0005555555690079927,0.0013888889225199819,-0.0001256913092220202,-7.936507608974352e-05,-0.00019841270113829523,-4.605218458957818e-19,-4.607859233063394e-19,-5.204170427930421e-18,-0.012979798018932343,0.0005555555690079927,0.006515752989798784,0.002222222276031971,-3.3307220940847827e-19,-0.00013888889225199819,-6.776263578034403e-20,-0.0005772005533799529,-0.0005555555690079927,-5.854691731421724e-18,-0.029722223058342934,0.0013888889225199819,0.002222222276031971,0.06675925850868225,-1.0364310445444951e-18,-4.7833224648087613e-20,-0.0013888889225199819,-1.86493266453577e-18,-0.002222222276031971,-0.02222222276031971,0.00027233114815317094,-0.0001256913092220202,-3.3307220940847827e-19,-1.0364310445444951e-18,8.977950528787915e-06,1.0164395367051604e-20,2.847109139498065e-20,2.816797170574545e-20,3.996579998217066e-20,3.395665853433911e-19,0.0005555555690079927,-7.936507608974352e-05,-0.00013888889225199819,-4.7833224648087613e-20,1.0164395367051604e-20,1.984126902243588e-05,1.5971750951212248e-20,1.6542557272662122e-20,-1.690003662219141e-20,3.0368459947140817e-21,0.0013888889225199819,-0.00019841270113829523,-6.776263578034403e-20,-0.0013888889225199819,2.847109139498065e-20,1.5971750951212248e-20,0.00019841270113829523,1.1435209044799213e-34,-5.421010862427522e-20,3.2526065174565133e-19,0.0006734006456099451,-4.605218458957818e-19,-0.0005772005533799529,-1.86493266453577e-18,2.816797170574545e-20,1.6542557272662122e-20,1.1435209044799213e-34,7.215006917249411e-05,1.4582246819014563e-19,6.408213700381996e-19,0.002222222276031971,-4.607859233063394e-19,-0.0005555555690079927,-0.002222222276031971,3.996579998217066e-20,-1.690003662219141e-20,-5.421010862427522e-20,1.4582246819014563e-19,0.0005555555690079927,6.505213034913027e-19,0.003703703638166189,-5.204170427930421e-18,-5.854691731421724e-18,-0.02222222276031971,3.395665853433911e-19,3.0368459947140817e-21,3.2526065174565133e-19,6.408213700381996e-19,6.505213034913027e-19,0.011111111380159855,15.0,9.0,4.0,0.05566859617829323,-0.006470588035881519,-0.010068181902170181,-0.01894444413483143,0.00020424836839083582,0.00041666667675599456,0.0008333333535119891,0.0005050505278632045,0.0013333333190530539,0.0018518518190830946,-0.006470588035881519,0.0018356316722929478,0.00041666667675599456,0.0008333333535119891,-9.426847827853635e-05,-5.952380888629705e-05,-0.0001190476177725941,-2.516483756190913e-19,-3.326415326526737e-19,-1.850371804212999e-18,-0.010068181902170181,0.00041666667675599456,0.004970147740095854,0.0013333333190530539,-2.866965868596342e-19,-0.00010416666918899864,-6.66419740713966e-20,-0.00043290044413879514,-0.00033333332976326346,-2.4192127445274467e-18,-0.01894444413483143,0.0008333333535119891,0.0013333333190530539,0.025592593476176262,-5.388547642299996e-19,4.572861221346275e-20,-0.0005555555690079927,-1.0228363311771861e-18,-0.0008888888987712562,-0.0055555556900799274,0.00020424836839083582,-9.426847827853635e-05,-2.866965868596342e-19,-5.388547642299996e-19,6.7334626692172606e-06,1.1858461261560205e-20,1.516912403192012e-20,2.1125979587102653e-20,2.1990304163451006e-20,1.1643087986975832e-19,0.00041666667675599456,-5.952380888629705e-05,-0.00010416666918899864,4.572861221346275e-20,1.1858461261560205e-20,1.4880952221574262e-05,-7.217452757370813e-22,-1.1028834650086464e-20,-1.1525682623721e-20,1.7679975851362284e-21,0.0008333333535119891,-0.0001190476177725941,-6.66419740713966e-20,-0.0005555555690079927,1.516912403192012e-20,-7.217452757370813e-22,7.936507608974352e-05,8.43766343791947e-35,4.793729754007871e-20,1.3881451649241396e-19,0.0005050505278632045,-2.516483756190913e-19,-0.00043290044413879514,-1.0228363311771861e-18,2.1125979587102653e-20,-1.1028834650086464e-20,8.43766343791947e-35,5.411255551734939e-05,8.749347832914797e-20,2.242874898531275e-19,0.0013333333190530539,-3.326415326526737e-19,-0.00033333332976326346,-0.0008888888987712562,2.1990304163451006e-20,-1.1525682623721e-20,4.793729754007871e-20,8.749347832914797e-20,0.00022222222469281405,4.0835789776362723e-19,0.0018518518190830946,-1.850371804212999e-18,-2.4192127445274467e-18,-0.0055555556900799274,1.1643087986975832e-19,1.7679975851362284e-21,1.3881451649241396e-19,2.242874898531275e-19,4.0835789776362723e-19,0.0018518518190830946,15.0,9.0,5.0,0.046954985707998276,-0.005287581589072943,-0.008232323452830315,-0.01315873023122549,0.0001633986976230517,0.00033333332976326346,0.0005555555690079927,0.0004040404164697975,0.0008888888987712562,0.0010582010727375746,-0.005287581589072943,0.0014843783574178815,0.00033333332976326346,0.0005555555690079927,-7.54147840780206e-05,-4.761904710903764e-05,-7.936507608974352e-05,4.926306708296176e-19,4.194175868967968e-19,1.4098070347635544e-18,-0.008232323452830315,0.00033333332976326346,0.00402056286111474,0.0008888888987712562,4.290690527358831e-19,-8.333333244081587e-05,3.5871737394999075e-20,-0.00034632033202797174,-0.00022222222469281405,1.63207718619903e-18,-0.01315873023122549,0.0005555555690079927,0.0008888888987712562,0.012928571552038193,7.057985268045596e-19,1.4770922193093934e-20,-0.00027777778450399637,1.1588198607972285e-18,-0.0004444444493856281,-0.002116402145475149,0.0001633986976230517,-7.54147840780206e-05,4.290690527358831e-19,7.057985268045596e-19,5.386770226323279e-06,-1.3976043629695956e-20,-2.3957095706444888e-20,-3.380156604689454e-20,-3.02003480084397e-20,-1.0472893668972963e-19,0.00033333332976326346,-4.761904710903764e-05,-8.333333244081587e-05,1.4770922193093934e-20,-1.3976043629695956e-20,1.190476177725941e-05,-4.778590086976163e-21,-4.8521869471702915e-21,1.6064502818310983e-21,2.666834939683971e-21,0.0005555555690079927,-7.936507608974352e-05,3.5871737394999075e-20,-0.00027777778450399637,-2.3957095706444888e-20,-4.778590086976163e-21,3.968253804487176e-05,1.4275196508723648e-34,-1.7401989851169048e-21,2.0429613064780912e-20,0.0004040404164697975,4.926306708296176e-19,-0.00034632033202797174,1.1588198607972285e-18,-3.380156604689454e-20,-4.8521869471702915e-21,1.4275196508723648e-34,4.329004150349647e-05,-6.999478266331837e-20,-2.1971018253598876e-19,0.0008888888987712562,4.194175868967968e-19,-0.00022222222469281405,-0.0004444444493856281,-3.02003480084397e-20,1.6064502818310983e-21,-1.7401989851169048e-21,-6.999478266331837e-20,0.00011111111234640703,5.346823747474026e-20,0.0010582010727375746,1.4098070347635544e-18,1.63207718619903e-18,-0.002116402145475149,-1.0472893668972963e-19,2.666834939683971e-21,2.0429613064780912e-20,-2.1971018253598876e-19,5.346823747474026e-20,0.0005291005363687873,15.0,9.0,6.0,0.04063268005847931,-0.004472455475479364,-0.006966089364141226,-0.009682539850473404,0.00013616557407658547,0.00027777778450399637,0.00039682540227659047,0.00033670032280497253,0.0006349206087179482,0.0006613756413571537,-0.004472455475479364,0.0012464302126318216,0.00027777778450399637,0.00039682540227659047,-6.28456546110101e-05,-3.968253804487176e-05,-5.668934318237007e-05,-2.302609229478909e-19,-1.650640592560186e-19,-5.042765983725399e-19,-0.006966089364141226,0.00027777778450399637,0.003376923967152834,0.0006349206087179482,-1.7250121429408873e-19,-6.944444612599909e-05,-5.173627959959334e-20,-0.00028860027668997645,-0.00015873015217948705,-5.035025124155551e-19,-0.009682539850473404,0.00039682540227659047,0.0006349206087179482,0.007510581985116005,-2.8127413360101354e-19,-1.782480515998009e-20,-0.00015873015217948705,-4.480124451909307e-19,-0.00025396826094947755,-0.0009920635493472219,0.00013616557407658547,-6.28456546110101e-05,-1.7250121429408873e-19,-2.8127413360101354e-19,4.488975264393957e-06,4.64140250550167e-21,1.1742004894187822e-20,1.4083985852872724e-20,1.0935801064981256e-20,3.132651240716517e-20,0.00027777778450399637,-3.968253804487176e-05,-6.944444612599909e-05,-1.782480515998009e-20,4.64140250550167e-21,9.92063451121794e-06,4.446922973085077e-21,8.271278636331061e-21,-2.7435787616665307e-21,5.258378254002316e-35,0.00039682540227659047,-5.668934318237007e-05,-5.173627959959334e-20,-0.00015873015217948705,1.1742004894187822e-20,4.446922973085077e-21,2.2675736545352265e-05,5.270458065578198e-35,9.174863595620139e-21,2.6282161467837934e-20,0.00033670032280497253,-2.302609229478909e-19,-0.00028860027668997645,-4.480124451909307e-19,1.4083985852872724e-20,8.271278636331061e-21,5.270458065578198e-35,3.607503458624706e-05,3.333084857956358e-20,6.293781405194439e-20,0.0006349206087179482,-1.650640592560186e-19,-0.00015873015217948705,-0.00025396826094947755,1.0935801064981256e-20,-2.7435787616665307e-21,9.174863595620139e-21,3.333084857956358e-20,6.349206523736939e-05,1.3976464823271318e-34,0.0006613756413571537,-5.042765983725399e-19,-5.035025124155551e-19,-0.0009920635493472219,3.132651240716517e-20,5.258378254002316e-35,2.6282161467837934e-20,6.293781405194439e-20,1.3976464823271318e-34,0.00019841270113829523,15.0,9.0,7.0,0.03582606092095375,-0.003876050468534231,-0.006038961000740528,-0.007427248638123274,0.00011671335232676938,0.0002380952355451882,0.00029761905898340046,0.00028860027668997645,0.0004761904710903764,0.00044091709423810244,-0.003876050468534231,0.0010744426399469376,0.0002380952355451882,0.00029761905898340046,-5.3867701353738084e-05,-3.40136066370178e-05,-4.251700738677755e-05,-5.188491943202515e-19,-6.189783217952415e-19,-9.239774946291361e-19,-0.006038961000740528,0.0002380952355451882,0.0029115132056176662,0.0004761904710903764,-3.7173245989009884e-19,-5.952380888629705e-05,-2.73624884284006e-19,-0.00024737167404964566,-0.0001190476177725941,-6.345657132581907e-19,-0.007427248638123274,0.00029761905898340046,0.0004761904710903764,0.004768518730998039,-5.029193500837053e-19,-5.089046738997741e-19,-9.920635056914762e-05,-3.1011176940493175e-19,-0.00015873015217948705,-0.0005291005363687873,0.00011671335232676938,-5.3867701353738084e-05,-3.7173245989009884e-19,-5.029193500837053e-19,3.84769282391062e-06,7.55253784779204e-21,1.5718275023427297e-20,2.5120386297507207e-20,2.973170818616293e-20,3.9680251418603675e-20,0.0002380952355451882,-3.40136066370178e-05,-5.952380888629705e-05,-5.089046738997741e-19,7.55253784779204e-21,8.50340165925445e-06,1.4489632317211888e-20,3.0633780955894685e-20,2.8232068509695504e-20,4.531522547116511e-20,0.00029761905898340046,-4.251700738677755e-05,-2.73624884284006e-19,-9.920635056914762e-05,1.5718275023427297e-20,1.4489632317211888e-20,1.4172335795592517e-05,1.0298914806374473e-20,2.2382838522611497e-20,5.540458974054447e-20,0.00028860027668997645,-5.188491943202515e-19,-0.00024737167404964566,-3.1011176940493175e-19,2.5120386297507207e-20,3.0633780955894685e-20,1.0298914806374473e-20,3.092145925620571e-05,3.15770659738491e-34,3.9669895505075423e-20,0.0004761904710903764,-6.189783217952415e-19,-0.0001190476177725941,-0.00015873015217948705,2.973170818616293e-20,2.8232068509695504e-20,2.2382838522611497e-20,3.15770659738491e-34,3.968253804487176e-05,5.500106384251309e-34,0.00044091709423810244,-9.239774946291361e-19,-6.345657132581907e-19,-0.0005291005363687873,3.9680251418603675e-20,4.531522547116511e-20,5.540458974054447e-20,3.9669895505075423e-20,5.500106384251309e-34,8.818342030281201e-05,15.0,9.0,8.0,0.0320441760122776,-0.0034204793628305197,-0.005330387037247419,-0.005879629403352737,0.00010212418419541791,0.00020833333837799728,0.00023148147738538682,0.00025252526393160224,0.000370370369637385,0.00030864198924973607,-0.0034204793628305197,0.0009442708687856793,0.00020833333837799728,0.00023148147738538682,-4.7134239139268175e-05,-2.9761904443148524e-05,-3.3068783523049206e-05,-1.2582418780954564e-19,-8.811056152846106e-20,-2.6781251876414314e-19,-0.005330387037247419,0.00020833333837799728,0.002559148008003831,0.000370370369637385,-1.4730805872089673e-19,-5.208333459449932e-05,-5.7509934036140986e-21,-0.00021645022206939757,-9.259259240934625e-05,-2.1360712765429888e-19,-0.005879629403352737,0.00023148147738538682,0.000370370369637385,0.0032231041695922613,-1.4712584634158778e-19,8.909220681129843e-21,-6.613756704609841e-05,-2.7023336622435614e-19,-0.00010582010872894898,-0.00030864198924973607,0.00010212418419541791,-4.7134239139268175e-05,-1.4730805872089673e-19,-1.4712584634158778e-19,3.3667313346086303e-06,5.7824117266069086e-21,4.082674313464778e-21,1.0562989793551326e-20,6.379217287905733e-21,1.3290036252076734e-20,0.00020833333837799728,-2.9761904443148524e-05,-5.208333459449932e-05,8.909220681129843e-21,5.7824117266069086e-21,7.440476110787131e-06,-1.3998190350562845e-22,-5.514417325043232e-21,-1.9823369243445887e-21,1.606869639601151e-35,0.00023148147738538682,-3.3068783523049206e-05,-5.7509934036140986e-21,-6.613756704609841e-05,4.082674313464778e-21,-1.3998190350562845e-22,9.448223863728344e-06,2.7751837460605483e-35,1.923104653254683e-21,2.3357717726532123e-20,0.00025252526393160224,-1.2582418780954564e-19,-0.00021645022206939757,-2.7023336622435614e-19,1.0562989793551326e-20,-5.514417325043232e-21,2.7751837460605483e-35,2.7056277758674696e-05,2.0831781170020805e-20,2.670089095678736e-20,0.000370370369637385,-8.811056152846106e-20,-9.259259240934625e-05,-0.00010582010872894898,6.379217287905733e-21,-1.9823369243445887e-21,1.923104653254683e-21,2.0831781170020805e-20,2.6455027182237245e-05,4.873355066500683e-35,0.00030864198924973607,-2.6781251876414314e-19,-2.1360712765429888e-19,-0.00030864198924973607,1.3290036252076734e-20,1.606869639601151e-35,2.3357717726532123e-20,2.670089095678736e-20,4.873355066500683e-35,4.4091710151406005e-05,15.0,9.0,9.0,0.02898888662457466,-0.0030610021203756332,-0.004771043546497822,-0.004771043546497822,9.077705180970952e-05,0.0001851851848186925,0.0001851851848186925,0.0002244668867206201,0.0002962962898891419,0.0002244668867206201,-0.0030610021203756332,0.000842291337903589,0.0001851851848186925,0.0001851851848186925,-4.189709943602793e-05,-2.6455027182237245e-05,-2.6455027182237245e-05,-1.1647300145751316e-19,-6.690781570310436e-20,-1.1647300145751316e-19,-0.004771043546497822,0.0001851851848186925,0.002283028792589903,0.0002962962898891419,-1.289375793129216e-19,-4.6296296204673126e-05,5.574171026880601e-21,-0.00019240019901189953,-7.407407247228548e-05,-1.5091204587569906e-19,-0.004771043546497822,0.0001851851848186925,0.0002962962898891419,0.002283028792589903,-1.2814732455990082e-19,5.574171026880601e-21,-4.6296296204673126e-05,-2.0276003686325254e-19,-7.407407247228548e-05,-0.00019240019901189953,9.077705180970952e-05,-4.189709943602793e-05,-1.289375793129216e-19,-1.2814732455990082e-19,2.992650024680188e-06,4.7727840707137364e-21,4.6598904768683705e-21,9.38932390191515e-21,5.1033739918833e-21,9.38932390191515e-21,0.0001851851848186925,-2.6455027182237245e-05,-4.6296296204673126e-05,5.574171026880601e-21,4.7727840707137364e-21,6.613756795559311e-06,-4.720661796651701e-22,-3.744383292324732e-21,-5.674269170625537e-22,1.28544583352707e-35,0.0001851851848186925,-2.6455027182237245e-05,5.574171026880601e-21,-4.6296296204673126e-05,4.6598904768683705e-21,-4.720661796651701e-22,6.613756795559311e-06,1.2457289903402172e-35,-5.674269170625537e-22,-3.744383292324732e-21,0.0002244668867206201,-1.1647300145751316e-19,-0.00019240019901189953,-2.0276003686325254e-19,9.38932390191515e-21,-3.744383292324732e-21,1.2457289903402172e-35,2.405002487648744e-05,1.2961996939094804e-20,1.8864005734462382e-20,0.0002962962898891419,-6.690781570310436e-20,-7.407407247228548e-05,-7.407407247228548e-05,5.1033739918833e-21,-5.674269170625537e-22,-5.674269170625537e-22,1.2961996939094804e-20,1.851851811807137e-05,2.5380380922754695e-35,0.0002244668867206201,-1.1647300145751316e-19,-1.5091204587569906e-19,-0.00019240019901189953,9.38932390191515e-21,1.28544583352707e-35,-3.744383292324732e-21,1.8864005734462382e-20,2.5380380922754695e-35,2.405002487648744e-05,15.0,9.0,10.0,0.02646811306476593,-0.002770053455606103,-0.00431818189099431,-0.003949495032429695,8.169934881152585e-05,0.00016666666488163173,0.00015151515253819525,0.00020202020823489875,0.00024242424115072936,0.00016835016140248626,-0.002770053455606103,0.0007602266850881279,0.00016666666488163173,0.00015151515253819525,-3.77073920390103e-05,-2.380952355451882e-05,-2.1645020751748234e-05,2.463153354148088e-19,1.2096085694622254e-19,1.9056608923981673e-19,-0.00431818189099431,0.00016666666488163173,0.0020607863552868366,0.00024242424115072936,2.236708784052575e-19,-4.166666622040793e-05,1.3821990934130758e-20,-0.00017316016601398587,-6.060606028768234e-05,2.2137465087420445e-19,-0.003949495032429695,0.00015151515253819525,0.00024242424115072936,0.0016773288371041417,1.972159363557983e-19,1.1679294263998646e-20,-3.367003228049725e-05,3.169202154786733e-19,-5.3872052376391366e-05,-0.00012626263196580112,8.169934881152585e-05,-3.77073920390103e-05,2.236708784052575e-19,1.972159363557983e-19,2.6933851131616393e-06,-7.269317345284993e-21,-5.69317719464705e-21,-1.690078302344727e-20,-8.350975549645984e-21,-1.3773310062612305e-20,0.00016666666488163173,-2.380952355451882e-05,-4.166666622040793e-05,1.1679294263998646e-20,-7.269317345284993e-21,5.952380888629705e-06,-1.532434681646704e-21,-2.4260934735851457e-21,-2.3806289836147835e-22,3.994248587077218e-35,0.00015151515253819525,-2.1645020751748234e-05,1.3821990934130758e-20,-3.367003228049725e-05,-5.69317719464705e-21,-1.532434681646704e-21,4.8100046114996076e-06,3.6623774888644265e-35,-6.877661461628556e-22,5.022792241689982e-22,0.00020202020823489875,2.463153354148088e-19,-0.00017316016601398587,3.169202154786733e-19,-1.690078302344727e-20,-2.4260934735851457e-21,3.6623774888644265e-35,2.1645020751748234e-05,-1.6968432503504755e-20,-2.7671831359275556e-20,0.00024242424115072936,1.2096085694622254e-19,-6.060606028768234e-05,-5.3872052376391366e-05,-8.350975549645984e-21,-2.3806289836147835e-22,-6.877661461628556e-22,-1.6968432503504755e-20,1.3468013094097842e-05,6.134042911221335e-35,0.00016835016140248626,1.9056608923981673e-19,2.2137465087420445e-19,-0.00012626263196580112,-1.3773310062612305e-20,3.994248587077218e-35,5.022792241689982e-22,-2.7671831359275556e-20,6.134042911221335e-35,1.4029180420038756e-05,15.0,9.0,11.0,0.024352295324206352,-0.0025297089014202356,-0.00394398532807827,-0.0033236208837479353,7.427213131450117e-05,0.00015151515253819525,0.00012626263196580112,0.0001836547307902947,0.00020202020823489875,0.00012950012751389295,-0.0025297089014202356,0.0006927549839019775,0.00015151515253819525,0.00012626263196580112,-3.4279444662388414e-05,-2.1645020751748234e-05,-1.803751729312353e-05,-1.2559686823745841e-19,-3.2458628628891894e-20,-4.693048302528243e-20,-0.00394398532807827,0.00015151515253819525,0.0018780336249619722,0.00020202020823489875,-9.988220759979441e-20,-3.787878813454881e-05,1.1183870632371027e-21,-0.00015741834067739546,-5.0505052058724687e-05,-5.489553762170051e-20,-0.0033236208837479353,0.00012626263196580112,0.00020202020823489875,0.0012690580915659666,-7.990055484197644e-20,-6.032297415883566e-21,-2.5252526029362343e-05,-1.5084046890331908e-19,-4.0404040191788226e-05,-8.63334207679145e-05,7.427213131450117e-05,-3.4279444662388414e-05,-9.988220759979441e-20,-7.990055484197644e-20,2.4485318590450333e-06,3.0038502528334172e-21,1.9910524110867642e-21,7.682174175002719e-21,3.4795732130019574e-21,5.204489551625805e-21,0.00015151515253819525,-2.1645020751748234e-05,-3.787878813454881e-05,-6.032297415883566e-21,3.0038502528334172e-21,5.4112551879370585e-06,1.5120931269664495e-21,4.5116066390615196e-21,-1.138088643463944e-21,6.979585238714608e-36,0.00012626263196580112,-1.803751729312353e-05,1.1183870632371027e-21,-2.5252526029362343e-05,1.9910524110867642e-21,1.5120931269664495e-21,3.607503685998381e-06,-1.691103847170312e-36,-2.340607709621093e-21,-5.1864745433925516e-21,0.0001836547307902947,-1.2559686823745841e-19,-0.00015741834067739546,-1.5084046890331908e-19,7.682174175002719e-21,4.5116066390615196e-21,-1.691103847170312e-36,1.9677292584674433e-05,1.156938587127993e-20,1.0456292380261222e-20,0.00020202020823489875,-3.2458628628891894e-20,-5.0505052058724687e-05,-4.0404040191788226e-05,3.4795732130019574e-21,-1.138088643463944e-21,-2.340607709621093e-21,1.156938587127993e-20,1.0101010047947057e-05,-5.750961091871421e-21,0.00012950012751389295,-4.693048302528243e-20,-5.489553762170051e-20,-8.63334207679145e-05,5.204489551625805e-21,6.979585238714608e-36,-5.1864745433925516e-21,1.0456292380261222e-20,-5.750961091871421e-21,8.63334207679145e-06,15.0,9.0,12.0,0.02255077287554741,-0.002327802823856473,-0.0036295647732913494,-0.0028357752598822117,6.808278703829274e-05,0.00013888889225199819,0.00010683760774554685,0.00016835016140248626,0.0001709401694824919,0.0001017501053865999,-0.002327802823856473,0.0006362972781062126,0.00013888889225199819,0.00010683760774554685,-3.142282730550505e-05,-1.984126902243588e-05,-1.5262516171787865e-05,-1.1513046147394546e-19,-3.312142971291988e-20,-4.404571325722362e-20,-0.0036295647732913494,0.00013888889225199819,0.001725092064589262,0.0001709401694824919,-9.008706436571677e-20,-3.4722223062999547e-05,-1.6940658945086007e-21,-0.00014430013834498823,-4.273504237062298e-05,-6.945670167485263e-20,-0.0028357752598822117,0.00010683760774554685,0.0001709401694824919,0.0009836460230872035,-7.678892109740216e-20,-5.903851372493783e-21,-1.942501876328606e-05,-1.2171281582182153e-19,-3.108003147644922e-05,-6.105006468715146e-05,6.808278703829274e-05,-3.142282730550505e-05,-9.008706436571677e-20,-7.678892109740216e-20,2.2444876321969787e-06,2.478176367710793e-21,2.968995374058426e-21,7.041992926436362e-21,2.9825247046144262e-21,4.008609336898604e-21,0.00013888889225199819,-1.984126902243588e-05,-3.4722223062999547e-05,-5.903851372493783e-21,2.478176367710793e-21,4.96031725560897e-06,1.1373008427877796e-21,4.1356393181655304e-21,-5.1431358126807065e-22,5.0311158215193905e-36,0.00010683760774554685,-1.5262516171787865e-05,-1.6940658945086007e-21,-1.942501876328606e-05,2.968995374058426e-21,1.1373008427877796e-21,2.775002712951391e-06,5.266214691683848e-36,-1.2705494208814505e-21,-2.117582368135751e-21,0.00016835016140248626,-1.1513046147394546e-19,-0.00014430013834498823,-1.2171281582182153e-19,7.041992926436362e-21,4.1356393181655304e-21,5.266214691683848e-36,1.803751729312353e-05,8.157899962448744e-21,8.098292067350208e-21,0.0001709401694824919,-3.312142971291988e-20,-4.273504237062298e-05,-3.108003147644922e-05,2.9825247046144262e-21,-5.1431358126807065e-22,-1.2705494208814505e-21,8.157899962448744e-21,7.770007869112305e-06,8.470329472543003e-22,0.0001017501053865999,-4.404571325722362e-20,-6.945670167485263e-20,-6.105006468715146e-05,4.008609336898604e-21,5.0311158215193905e-36,-2.117582368135751e-21,8.098292067350208e-21,8.470329472543003e-22,5.550005425902782e-06,15.0,9.0,13.0,0.0209981519728899,-0.002155785448849201,-0.0033616384025663137,-0.002448107348755002,6.28456546110101e-05,0.00012820512347389013,9.157509339274839e-05,0.0001554001501062885,0.00014652014942839742,8.140008139889687e-05,-0.002155785448849201,0.0005883576232008636,0.00012820512347389013,9.157509339274839e-05,-2.9005685064475983e-05,-1.8315018678549677e-05,-1.308215632889187e-05,1.6211247203527626e-19,1.8234179430071996e-19,1.9397054492123478e-19,-0.0033616384025663137,0.00012820512347389013,0.0015952104004099965,0.00014652014942839742,1.1329188454148443e-19,-3.205128086847253e-05,8.809142651444724e-20,-0.00013320012658368796,-3.6630037357099354e-05,2.608861477543245e-19,-0.002448107348755002,9.157509339274839e-05,0.00014652014942839742,0.0007780182640999556,1.8632008068270254e-19,2.161934500111137e-19,-1.5262516171787865e-05,3.8877563753235313e-19,-2.44200236920733e-05,-4.4400043407222256e-05,6.28456546110101e-05,-2.9005685064475983e-05,1.1329188454148443e-19,1.8632008068270254e-19,2.0718346149806166e-06,-2.551046819539845e-21,-3.627916827532762e-21,-5.4726802470262496e-21,-7.589098584632031e-21,-9.96717822223663e-21,0.00012820512347389013,-1.8315018678549677e-05,-3.205128086847253e-05,2.161934500111137e-19,-2.551046819539845e-21,4.578754669637419e-06,-5.3709697473216885e-21,-1.477187054274153e-20,-1.2465056069200068e-20,-9.638727742329124e-21,9.157509339274839e-05,-1.308215632889187e-05,8.809142651444724e-20,-1.5262516171787865e-05,-3.627916827532762e-21,-5.3709697473216885e-21,2.180359388148645e-06,-3.168896816896363e-21,-3.0704944337968387e-21,-1.6940658945086007e-21,0.0001554001501062885,1.6211247203527626e-19,-0.00013320012658368796,3.8877563753235313e-19,-5.4726802470262496e-21,-1.477187054274153e-20,-3.168896816896363e-21,1.6650015822960995e-05,-2.154849924346819e-20,-2.1254014867463644e-20,0.00014652014942839742,1.8234179430071996e-19,-3.6630037357099354e-05,-2.44200236920733e-05,-7.589098584632031e-21,-1.2465056069200068e-20,-3.0704944337968387e-21,-2.154849924346819e-20,6.105005923018325e-06,-3.1763735522036263e-21,8.140008139889687e-05,1.9397054492123478e-19,2.608861477543245e-19,-4.4400043407222256e-05,-9.96717822223663e-21,-9.638727742329124e-21,-1.6940658945086007e-21,-2.1254014867463644e-20,-3.1763735522036263e-21,3.7000036172685213e-06,15.0,9.0,14.0,0.01964605413377285,-0.002007469767704606,-0.00313059170730412,-0.0021349205635488033,5.835667616338469e-05,0.0001190476177725941,7.936507608974352e-05,0.00014430013834498823,0.00012698413047473878,6.613756704609841e-05,-0.002007469767704606,0.0005471419426612556,0.0001190476177725941,7.936507608974352e-05,-2.6933850676869042e-05,-1.70068033185089e-05,-1.1337868272676133e-05,-2.6182766023716885e-19,-1.511953810848926e-19,-1.2027867851011065e-19,-0.00313059170730412,0.0001190476177725941,0.0014835343463346362,0.00012698413047473878,-1.931651941220349e-19,-2.9761904443148524e-05,-6.945670167485263e-20,-0.00012368583702482283,-3.1746032618684694e-05,-8.470329472543003e-20,-0.0021349205635488033,7.936507608974352e-05,0.00012698413047473878,0.0006260683876462281,-1.3436530584794729e-19,-1.3249877279572138e-19,-1.221001184603665e-05,-8.616758535540789e-20,-1.953601895365864e-05,-3.3068783523049206e-05,5.835667616338469e-05,-2.6933850676869042e-05,-1.931651941220349e-19,-1.3436530584794729e-19,1.92384641195531e-06,3.7578532500535616e-21,2.8184769772970097e-21,1.2560193148753603e-20,7.94929454392696e-21,5.6287269810114546e-21,0.0001190476177725941,-1.70068033185089e-05,-2.9761904443148524e-05,-1.3249877279572138e-19,3.7578532500535616e-21,4.251700829627225e-06,3.784047168152146e-21,1.5316890477947342e-20,4.926389248642846e-21,6.1721151732120364e-21,7.936507608974352e-05,-1.1337868272676133e-05,-6.945670167485263e-20,-1.221001184603665e-05,2.8184769772970097e-21,3.784047168152146e-21,1.7442874877815484e-06,2.7463773624792162e-21,2.2169272443795096e-21,2.2234614865425384e-21,0.00014430013834498823,-2.6182766023716885e-19,-0.00012368583702482283,-8.616758535540789e-20,1.2560193148753603e-20,1.5316890477947342e-20,2.7463773624792162e-21,1.5460729628102854e-05,7.4103163875837e-35,5.149457403187237e-21,0.00012698413047473878,-1.511953810848926e-19,-3.1746032618684694e-05,-1.953601895365864e-05,7.94929454392696e-21,4.926389248642846e-21,2.2169272443795096e-21,7.4103163875837e-35,4.88400473841466e-06,0.0,6.613756704609841e-05,-1.2027867851011065e-19,-8.470329472543003e-20,-3.3068783523049206e-05,5.6287269810114546e-21,6.1721151732120364e-21,2.2234614865425384e-21,5.149457403187237e-21,0.0,2.5437525437155273e-06,15.0,9.0,15.0,0.01845790445804596,-0.0018782679690048099,-0.0029292928520590067,-0.0018782679690048099,5.4466232541017234e-05,0.00011111111234640703,6.944444612599909e-05,0.000134680129121989,0.00011111111234640703,5.4466232541017234e-05,-0.0018782679690048099,0.0005113271763548255,0.00011111111234640703,6.944444612599909e-05,-2.51382607530104e-05,-1.5873016309342347e-05,-9.92063451121794e-06,-9.210437047162607e-20,-1.9058241313221758e-20,-2.329340604949326e-20,-0.0029292928520590067,0.00011111111234640703,0.0013864838983863592,0.00011111111234640703,-8.159334765382354e-20,-2.7777778086601757e-05,5.082197683525802e-21,-0.0001154401179519482,-2.7777778086601757e-05,-3.218725199566341e-20,-0.0018782679690048099,6.944444612599909e-05,0.00011111111234640703,0.0005113271763548255,-4.527876490072742e-20,2.6610337701829462e-21,-9.92063451121794e-06,-8.552745742121695e-20,-1.5873016309342347e-05,-2.51382607530104e-05,5.4466232541017234e-05,-2.51382607530104e-05,-8.159334765382354e-20,-4.527876490072742e-20,1.7955900375454803e-06,3.2860904978469758e-21,1.0918812358474808e-21,5.6335943411490896e-21,1.9566270765409965e-21,2.078484553650374e-21,0.00011111111234640703,-1.5873016309342347e-05,-2.7777778086601757e-05,2.6610337701829462e-21,3.2860904978469758e-21,3.968254077335587e-06,2.9772494087254833e-24,3.308511414142746e-21,-6.988580101176934e-22,-1.892561877514247e-23,6.944444612599909e-05,-9.92063451121794e-06,5.082197683525802e-21,-9.92063451121794e-06,1.0918812358474808e-21,2.9772494087254833e-24,1.4172335340845166e-06,6.137906548926396e-37,-7.65924515655334e-22,-8.470329472543003e-22,0.000134680129121989,-9.210437047162607e-20,-0.0001154401179519482,-8.552745742121695e-20,5.6335943411490896e-21,3.308511414142746e-21,6.137906548926396e-37,1.4430014743993524e-05,6.666169796692073e-21,4.204483928805314e-21,0.00011111111234640703,-1.9058241313221758e-20,-2.7777778086601757e-05,-1.5873016309342347e-05,1.9566270765409965e-21,-6.988580101176934e-22,-7.65924515655334e-22,6.666169796692073e-21,3.968254077335587e-06,-2.117582368135751e-22,5.4466232541017234e-05,-2.329340604949326e-20,-3.218725199566341e-20,-2.51382607530104e-05,2.078484553650374e-21,-1.892561877514247e-23,-8.470329472543003e-22,4.204483928805314e-21,-2.117582368135751e-22,1.7955900375454803e-06,15.0,9.0,16.0,0.01740553043782711,-0.0017647058703005314,-0.002752339467406273,-0.0016653049970045686,5.1062092097708955e-05,0.00010416666918899864,6.127451342763379e-05,0.00012626263196580112,9.803921420825645e-05,4.538852590485476e-05,-0.0017647058703005314,0.00047991631436161697,0.00010416666918899864,6.127451342763379e-05,-2.3567119569634087e-05,-1.4880952221574262e-05,-8.753501788305584e-06,-6.291209390477282e-20,-1.9693516023662483e-20,-3.2610768469290563e-20,-0.002752339467406273,0.00010416666918899864,0.0013013605494052172,9.803921420825645e-05,-7.604291404480444e-20,-2.604166729724966e-05,3.1763735522036263e-21,-0.00010822511103469878,-2.4509803552064113e-05,-2.795208725939191e-20,-0.0016653049970045686,6.127451342763379e-05,9.803921420825645e-05,0.00042304699309170246,-4.7367156840528e-20,2.201608651072723e-21,-8.169934517354704e-06,-7.275440582081159e-20,-1.3071895409666467e-05,-1.9452225387794897e-05,5.1062092097708955e-05,-2.3567119569634087e-05,-7.604291404480444e-20,-4.7367156840528e-20,1.6833656673043151e-06,2.879667541941585e-21,1.9101856107385107e-21,5.281494896775663e-21,1.7459290687840385e-21,1.8066028474941598e-21,0.00010416666918899864,-1.4880952221574262e-05,-2.604166729724966e-05,2.201608651072723e-21,2.879667541941585e-21,3.7202380553935654e-06,-9.156377946659943e-23,-2.757208662521616e-21,-4.125071560774347e-22,-2.4693637974347337e-24,6.127451342763379e-05,-8.753501788305584e-06,3.1763735522036263e-21,-8.169934517354704e-06,1.9101856107385107e-21,-9.156377946659943e-23,1.1671335187202203e-06,7.152403140793231e-36,-3.9434783047473667e-22,9.529120656610879e-22,0.00012626263196580112,-6.291209390477282e-20,-0.00010822511103469878,-7.275440582081159e-20,5.281494896775663e-21,-2.757208662521616e-21,7.152403140793231e-36,1.3528138879337348e-05,5.1466753621426735e-21,3.477846958149393e-21,9.803921420825645e-05,-1.9693516023662483e-20,-2.4509803552064113e-05,-1.3071895409666467e-05,1.7459290687840385e-21,-4.125071560774347e-22,-3.9434783047473667e-22,5.1466753621426735e-21,3.267973852416617e-06,-1.0587911840678754e-22,4.538852590485476e-05,-3.2610768469290563e-20,-2.795208725939191e-20,-1.9452225387794897e-05,1.8066028474941598e-21,-2.4693637974347337e-24,9.529120656610879e-22,3.477846958149393e-21,-1.0587911840678754e-22,1.2968150713277282e-06,15.0,10.0,3.0,0.06269979476928711,-0.007560160476714373,-0.010757575742900372,-0.026931818574666977,0.00024509805371053517,0.00045454545761458576,0.0012499999720603228,0.0005050505278632045,0.001818181830458343,0.0033333334140479565,-0.007560160476714373,0.002173537155613303,0.00045454545761458576,0.0012499999720603228,-0.0001131221724790521,-6.49350622552447e-05,-0.00017857142665889114,-1.7823199912603853e-19,-4.641950448034001e-19,-5.3919970888519184e-18,-0.010757575742900372,0.00045454545761458576,0.004789562430232763,0.001818181830458343,-3.155116561424662e-19,-0.00010101010411744937,-1.5308276167349427e-19,-0.0003787878667935729,-0.0004040404164697975,-1.234581455987133e-32,-0.026931818574666977,0.0012499999720603228,0.001818181830458343,0.06026514992117882,-8.92196905302119e-19,8.612734431107689e-20,-0.0012499999720603228,-2.42121126479476e-33,-0.001818181830458343,-0.019999999552965164,0.00024509805371053517,-0.0001131221724790521,-3.155116561424662e-19,-8.92196905302119e-19,8.080155566858593e-06,1.3976043629695956e-20,2.530638238188373e-20,2.0659965093918457e-20,3.1316156493636916e-20,2.8706478562979687e-19,0.00045454545761458576,-6.49350622552447e-05,-0.00010101010411744937,8.612734431107689e-20,1.3976043629695956e-20,1.4430014743993524e-05,2.941899150545562e-21,-2.466833693950838e-20,-2.371569790807292e-20,5.2662422423326954e-34,0.0012499999720603228,-0.00017857142665889114,-1.5308276167349427e-19,-0.0012499999720603228,2.530638238188373e-20,2.941899150545562e-21,0.00017857142665889114,6.223735196487739e-35,1.3248946701383016e-19,1.373090038335974e-18,0.0005050505278632045,-1.7823199912603853e-19,-0.0003787878667935729,-2.42121126479476e-33,2.0659965093918457e-20,-2.466833693950838e-20,6.223735196487739e-35,4.2087540350621566e-05,1.150157626198519e-34,7.339894174064868e-34,0.001818181830458343,-4.641950448034001e-19,-0.0004040404164697975,-0.001818181830458343,3.1316156493636916e-20,-2.371569790807292e-20,1.3248946701383016e-19,1.150157626198519e-34,0.0004040404164697975,2.053540141744565e-33,0.0033333334140479565,-5.3919970888519184e-18,-1.234581455987133e-32,-0.019999999552965164,2.8706478562979687e-19,5.2662422423326954e-34,1.373090038335974e-18,7.339894174064868e-34,2.053540141744565e-33,0.009999999776482582,15.0,10.0,4.0,0.05089794844388962,-0.0058576203882694244,-0.008340909145772457,-0.01715909130871296,0.00018382353300694376,0.0003409090859349817,0.000750000006519258,0.0003787878667935729,0.0010909091215580702,0.0016666667070239782,-0.0058576203882694244,0.001656938693486154,0.0003409090859349817,0.000750000006519258,-8.484163117827848e-05,-4.870129851042293e-05,-0.00010714285599533468,-6.78106122558721e-19,-1.2988425133483674e-18,-3.3360487753381062e-18,-0.008340909145772457,0.0003409090859349817,0.0036527777556329966,0.0010909091215580702,-5.516120089258869e-19,-7.575757626909763e-05,-5.620578007975714e-19,-0.0002840909000951797,-0.00024242424115072936,-4.777323311566826e-18,-0.01715909130871296,0.000750000006519258,0.0010909091215580702,0.023106060922145844,-1.0517027632061788e-18,-1.0671690761069656e-18,-0.0005000000237487257,-1.6629692801505884e-18,-0.0007272727089002728,-0.004999999888241291,0.00018382353300694376,-8.484163117827848e-05,-5.516120089258869e-19,-1.0517027632061788e-18,6.06011644777027e-06,1.6093625997831706e-20,1.818414081912622e-20,3.262099836702237e-20,6.811264303937906e-20,1.7582717829019374e-19,0.0003409090859349817,-4.870129851042293e-05,-7.575757626909763e-05,-1.0671690761069656e-18,1.6093625997831706e-20,1.0822510375874117e-05,3.5994389539029936e-20,3.798832456146035e-20,5.107066739395238e-20,1.7782793432150345e-19,0.000750000006519258,-0.00010714285599533468,-5.620578007975714e-19,-0.0005000000237487257,1.818414081912622e-20,3.5994389539029936e-20,7.142857066355646e-05,2.162772117416575e-20,4.236068495714201e-20,-3.3726990948690837e-21,0.0003787878667935729,-6.78106122558721e-19,-0.0002840909000951797,-1.6629692801505884e-18,3.262099836702237e-20,3.798832456146035e-20,2.162772117416575e-20,3.156565799145028e-05,7.423688796191708e-20,3.9250309431827607e-19,0.0010909091215580702,-1.2988425133483674e-18,-0.00024242424115072936,-0.0007272727089002728,6.811264303937906e-20,5.107066739395238e-20,4.236068495714201e-20,7.423688796191708e-20,0.0001616161607671529,3.760786627234592e-33,0.0016666667070239782,-3.3360487753381062e-18,-4.777323311566826e-18,-0.004999999888241291,1.7582717829019374e-19,1.7782793432150345e-19,-3.3726990948690837e-21,3.9250309431827607e-19,3.760786627234592e-33,0.0016666667070239782,15.0,10.0,5.0,0.04291100054979324,-0.0047860960476100445,-0.006818181835114956,-0.011915584094822407,0.00014705881767440587,0.00027272728038951755,0.0005000000237487257,0.0003030303050763905,0.0007272727089002728,0.0009523809421807528,-0.0047860960476100445,0.001339836628176272,0.00027272728038951755,0.0005000000237487257,-6.787330494262278e-05,-3.8961039535934106e-05,-7.142857066355646e-05,-1.4605683172213663e-19,-1.4217582953500854e-19,-7.852915142490947e-19,-0.006818181835114956,0.00027272728038951755,0.0029545454308390617,0.0007272727089002728,-1.710664695216155e-19,-6.060606028768234e-05,3.780375019376165e-20,-0.00022727272880729288,-0.0001616161607671529,-1.6458759458145108e-33,-0.011915584094822407,0.0005000000237487257,0.0007272727089002728,0.01167207770049572,-3.3169296328522853e-19,3.6048489089795465e-20,-0.0002500000118743628,-8.7017806029543e-34,-0.0003636363544501364,-0.0019047618843615055,0.00014705881767440587,-6.787330494262278e-05,-1.710664695216155e-19,-3.3169296328522853e-19,4.848092885367805e-06,5.0692580422736725e-21,1.146013986928611e-20,1.2395979217909788e-20,1.2526462920572193e-20,4.9211103984622087e-20,0.00027272728038951755,-3.8961039535934106e-05,-6.060606028768234e-05,3.6048489089795465e-20,5.0692580422736725e-21,8.658008482598234e-06,-2.964615315390051e-21,-6.108195276053141e-21,-3.4932661217552644e-21,4.2925813620931116e-35,0.0005000000237487257,-7.142857066355646e-05,3.780375019376165e-20,-0.0002500000118743628,1.146013986928611e-20,-2.964615315390051e-21,3.571428533177823e-05,3.1675531992829697e-35,-8.737480537622788e-21,4.8168035694541255e-20,0.0003030303050763905,-1.4605683172213663e-19,-0.00022727272880729288,-8.7017806029543e-34,1.2395979217909788e-20,-6.108195276053141e-21,3.1675531992829697e-35,2.5252526029362343e-05,3.2253848810729117e-35,1.2582675202194081e-34,0.0007272727089002728,-1.4217582953500854e-19,-0.0001616161607671529,-0.0003636363544501364,1.2526462920572193e-20,-3.4932661217552644e-21,-8.737480537622788e-21,3.2253848810729117e-35,8.080808038357645e-05,1.0647724257019246e-34,0.0009523809421807528,-7.852915142490947e-19,-1.6458759458145108e-33,-0.0019047618843615055,4.9211103984622087e-20,4.2925813620931116e-35,4.8168035694541255e-20,1.2582675202194081e-34,1.0647724257019246e-34,0.0004761904710903764,15.0,10.0,6.0,0.0371210016310215,-0.004047937225550413,-0.0057683982886374,-0.008766233921051025,0.00012254902685526758,0.00022727272880729288,0.0003571428533177823,0.00025252526393160224,0.0005194804980419576,0.0005952381179668009,-0.004047937225550413,0.0011250339448451996,0.00022727272880729288,0.0003571428533177823,-5.656108623952605e-05,-3.246753112762235e-05,-5.10204081365373e-05,-8.911599956301926e-20,-8.471076520033715e-20,-4.538489281955283e-19,-0.0057683982886374,0.00022727272880729288,0.0024813611526042223,0.0005194804980419576,-1.6390812604876403e-19,-5.0505052058724687e-05,1.3822325360667473e-20,-0.00018939393339678645,-0.0001154401179519482,-1.0998609320739699e-33,-0.008766233921051025,0.0003571428533177823,0.0005194804980419576,0.006780303083360195,-2.5055101713896313e-19,2.3343406855700102e-20,-0.0001428571413271129,-6.7237950851023485e-34,-0.00020779221085831523,-0.0008928571478463709,0.00012254902685526758,-5.656108623952605e-05,-1.6390812604876403e-19,-2.5055101713896313e-19,4.040077783429297e-06,6.953242262823104e-21,9.95864953775681e-21,1.0329982546959229e-20,8.947473745492586e-21,2.819386310515321e-20,0.00022727272880729288,-3.246753112762235e-05,-5.0505052058724687e-05,2.3343406855700102e-20,6.953242262823104e-21,7.215007371996762e-06,4.235164736271502e-22,-1.233416846975419e-20,-5.563882968011973e-21,4.626625517733742e-35,0.0003571428533177823,-5.10204081365373e-05,1.3822325360667473e-20,-0.0001428571413271129,9.95864953775681e-21,4.235164736271502e-22,2.0408162527019158e-05,2.476925874371209e-35,-6.206556663629143e-21,2.365394532105414e-20,0.00025252526393160224,-8.911599956301926e-20,-0.00018939393339678645,-6.7237950851023485e-34,1.0329982546959229e-20,-1.233416846975419e-20,2.476925874371209e-35,2.1043770175310783e-05,3.078966096815642e-35,7.20882471723826e-35,0.0005194804980419576,-8.471076520033715e-20,-0.0001154401179519482,-0.00020779221085831523,8.947473745492586e-21,-5.563882968011973e-21,-6.206556663629143e-21,3.078966096815642e-35,4.617604645318352e-05,5.088118687956507e-35,0.0005952381179668009,-4.538489281955283e-19,-1.0998609320739699e-33,-0.0008928571478463709,2.819386310515321e-20,4.626625517733742e-35,2.365394532105414e-20,7.20882471723826e-35,5.088118687956507e-35,0.00017857142665889114,15.0,10.0,7.0,0.032721810042858124,-0.00350792589597404,-0.004999999888241291,-0.006723484955728054,0.0001050420178216882,0.00019480519404169172,0.0002678571327123791,0.00021645022206939757,0.00038961038808338344,0.00039682540227659047,-0.00350792589597404,0.0009697812492959201,0.00019480519404169172,0.0002678571327123791,-4.848093158216216e-05,-2.7829313694383018e-05,-3.826530519290827e-05,-1.4523235237127147e-19,-1.0147478231055188e-19,-2.879260098944353e-19,-0.004999999888241291,0.00019480519404169172,0.0021392495837062597,0.00038961038808338344,-1.3586645771397204e-19,-4.329004150349647e-05,-1.2614442141329017e-20,-0.00016233765927609056,-8.658008300699294e-05,-7.008221555318148e-34,-0.006723484955728054,0.0002678571327123791,0.00038961038808338344,0.004304653499275446,-1.747835090016991e-19,9.416908436639232e-21,-8.928571332944557e-05,-4.35206487747301e-34,-0.0001298701245104894,-0.0004761904710903764,0.0001050420178216882,-4.848093158216216e-05,-1.3586645771397204e-19,-1.747835090016991e-19,3.462923586994293e-06,5.149457403187237e-21,5.423103936338837e-21,8.85427052373832e-21,6.710605309119439e-21,1.777067652864615e-20,0.00019480519404169172,-2.7829313694383018e-05,-4.329004150349647e-05,9.416908436639232e-21,5.149457403187237e-21,6.184292033140082e-06,-3.091980833909848e-22,4.727234610957551e-21,-1.6116715565252516e-21,2.581177242623835e-35,0.0002678571327123791,-3.826530519290827e-05,-1.2614442141329017e-20,-8.928571332944557e-05,5.423103936338837e-21,-3.091980833909848e-22,1.2755102034134325e-05,1.375885860622348e-35,4.926276157543474e-21,1.3045509061426415e-20,0.00021645022206939757,-1.4523235237127147e-19,-0.00016233765927609056,-4.35206487747301e-34,8.85427052373832e-21,4.727234610957551e-21,1.375885860622348e-35,1.803751729312353e-05,1.4726633979103038e-35,4.5437439824511547e-35,0.00038961038808338344,-1.0147478231055188e-19,-8.658008300699294e-05,-0.0001298701245104894,6.710605309119439e-21,-1.6116715565252516e-21,4.926276157543474e-21,1.4726633979103038e-35,2.886002948798705e-05,3.7067598622420307e-35,0.00039682540227659047,-2.879260098944353e-19,-7.008221555318148e-34,-0.0004761904710903764,1.777067652864615e-20,2.581177242623835e-35,1.3045509061426415e-20,4.5437439824511547e-35,3.7067598622420307e-35,7.936507608974352e-05,15.0,10.0,8.0,0.029262106865644455,-0.0030954768881201744,-0.004412878770381212,-0.005321969743818045,9.191176650347188e-05,0.00017045454296749085,0.00020833333837799728,0.00018939393339678645,0.0003030303050763905,0.00027777778450399637,-0.0030954768881201744,0.0008522788411937654,0.00017045454296749085,0.00020833333837799728,-4.242081558913924e-05,-2.4350649255211465e-05,-2.9761904443148524e-05,-2.9392020005269494e-19,-1.6558107298825838e-19,1.0248228829664146e-19,-0.004412878770381212,0.00017045454296749085,0.001880260999314487,0.0003030303050763905,-2.5722879452531543e-19,-3.787878813454881e-05,3.6673472510193294e-20,-0.00014204545004758984,-6.73400645609945e-05,2.024685461702071e-19,-0.005321969743818045,0.00020833333837799728,0.0003030303050763905,0.002909451723098755,-2.4013347219272762e-20,-4.28639468116981e-20,-5.952380888629705e-05,2.487372943989699e-19,-8.658008300699294e-05,-0.00027777778450399637,9.191176650347188e-05,-4.242081558913924e-05,-2.5722879452531543e-19,-2.4013347219272762e-20,3.030058223885135e-06,8.110395238363765e-21,2.0693282135690374e-21,1.6310499183511186e-20,9.460089041760347e-21,-5.831003336936214e-21,0.00017045454296749085,-2.4350649255211465e-05,-3.787878813454881e-05,-4.28639468116981e-20,8.110395238363765e-21,5.4112551879370585e-06,4.3867076172241975e-21,1.8994162280730174e-20,5.816657730980814e-21,-2.002566700590017e-21,0.00020833333837799728,-2.9761904443148524e-05,3.6673472510193294e-20,-5.952380888629705e-05,2.0693282135690374e-21,4.3867076172241975e-21,8.50340165925445e-06,-8.260588296266093e-21,-2.129604759792613e-21,-7.158180298550951e-21,0.00018939393339678645,-2.9392020005269494e-19,-0.00014204545004758984,2.487372943989699e-19,1.6310499183511186e-20,1.8994162280730174e-20,-8.260588296266093e-21,1.578282899572514e-05,-3.0784239373983755e-21,-1.985878735628543e-20,0.0003030303050763905,-1.6558107298825838e-19,-6.73400645609945e-05,-8.658008300699294e-05,9.460089041760347e-21,5.816657730980814e-21,-2.129604759792613e-21,-3.0784239373983755e-21,1.924001844599843e-05,-2.7775707149636317e-21,0.00027777778450399637,1.0248228829664146e-19,2.024685461702071e-19,-0.00027777778450399637,-5.831003336936214e-21,-2.002566700590017e-21,-7.158180298550951e-21,-1.985878735628543e-20,-2.7775707149636317e-21,3.968253804487176e-05,15.0,10.0,9.0,0.02646811306476593,-0.002770053455606103,-0.003949495032429695,-0.00431818189099431,8.169934881152585e-05,0.00015151515253819525,0.00016666666488163173,0.00016835016140248626,0.00024242424115072936,0.00020202020823489875,-0.002770053455606103,0.0007602266850881279,0.00015151515253819525,0.00016666666488163173,-3.77073920390103e-05,-2.1645020751748234e-05,-2.380952355451882e-05,1.9056608923981673e-19,1.2096085694622254e-19,2.463153354148088e-19,-0.003949495032429695,0.00015151515253819525,0.0016773288371041417,0.00024242424115072936,1.984830607319559e-19,-3.367003228049725e-05,9.819048269104282e-21,-0.00012626263196580112,-5.3872052376391366e-05,-1.229656171391386e-33,-0.00431818189099431,0.00016666666488163173,0.00024242424115072936,0.0020607863552868366,2.2441578039625566e-19,1.1961744131442827e-20,-4.166666622040793e-05,-1.1279050130422241e-33,-6.060606028768234e-05,-0.00017316016601398587,8.169934881152585e-05,-3.77073920390103e-05,1.984830607319559e-19,2.2441578039625566e-19,2.6933851131616393e-06,-5.874196058960833e-21,-7.375730415239532e-21,-1.3773310062612305e-20,-8.350975549645984e-21,-1.690078302344727e-20,0.00015151515253819525,-2.1645020751748234e-05,-3.367003228049725e-05,1.1961744131442827e-20,-5.874196058960833e-21,4.8100046114996076e-06,-1.266685239379767e-21,5.022792241689982e-22,-6.877661461628556e-22,3.663965955962034e-35,0.00016666666488163173,-2.380952355451882e-05,9.819048269104282e-21,-4.166666622040793e-05,-7.375730415239532e-21,-1.266685239379767e-21,5.952380888629705e-06,3.6868625540557e-35,-2.3806289836147835e-22,-2.4260934735851457e-21,0.00016835016140248626,1.9056608923981673e-19,-0.00012626263196580112,-1.1279050130422241e-33,-1.3773310062612305e-20,5.022792241689982e-22,3.6868625540557e-35,1.4029180420038756e-05,3.96473265861204e-35,8.642646005062616e-35,0.00024242424115072936,1.2096085694622254e-19,-5.3872052376391366e-05,-6.060606028768234e-05,-8.350975549645984e-21,-6.877661461628556e-22,-2.3806289836147835e-22,3.96473265861204e-35,1.3468013094097842e-05,4.883510924432055e-35,0.00020202020823489875,2.463153354148088e-19,-1.229656171391386e-33,-0.00017316016601398587,-1.690078302344727e-20,3.663965955962034e-35,-2.4260934735851457e-21,8.642646005062616e-35,4.883510924432055e-35,2.1645020751748234e-05,15.0,10.0,10.0,0.024163587018847466,-0.002506684511899948,-0.003574380185455084,-0.003574380185455084,7.352940883720294e-05,0.00013636364019475877,0.00013636364019475877,0.00015151515253819525,0.00019834710110444576,0.00015151515253819525,-0.002506684511899948,0.0006861520814709365,0.00013636364019475877,0.00013636364019475877,-3.393665247131139e-05,-1.9480519767967053e-05,-1.9480519767967053e-05,-7.302841586106832e-20,-4.20305849627708e-20,-7.302841586106832e-20,-0.003574380185455084,0.00013636364019475877,0.0015140037285163999,0.00019834710110444576,-8.79768555372601e-20,-3.030303014384117e-05,9.959328892146612e-21,-0.00011363636440364644,-4.4077136408304796e-05,-2.292786808010746e-34,-0.003574380185455084,0.00013636364019475877,0.00019834710110444576,0.0015140037285163999,-8.724626764826825e-20,9.959328892146612e-21,-3.030303014384117e-05,-2.292786808010746e-34,-4.4077136408304796e-05,-0.00011363636440364644,7.352940883720294e-05,-3.393665247131139e-05,-8.79768555372601e-20,-8.724626764826825e-20,2.4240464426839026e-06,2.4030800407080204e-21,2.298710284581072e-21,6.197989608954894e-21,3.416308032529072e-21,6.197989608954894e-21,0.00013636364019475877,-1.9480519767967053e-05,-3.030303014384117e-05,9.959328892146612e-21,2.4030800407080204e-21,4.329004241299117e-06,-1.0086378058510754e-21,-3.0540976380265707e-21,-6.441919436262456e-22,6.863769198622361e-36,0.00013636364019475877,-1.9480519767967053e-05,9.959328892146612e-21,-3.030303014384117e-05,2.298710284581072e-21,-1.0086378058510754e-21,4.329004241299117e-06,6.863769198622361e-36,-6.441919436262456e-22,-3.0540976380265707e-21,0.00015151515253819525,-7.302841586106832e-20,-0.00011363636440364644,-2.292786808010746e-34,6.197989608954894e-21,-3.0540976380265707e-21,6.863769198622361e-36,1.2626263014681172e-05,8.578845876980181e-36,1.5847499124077968e-35,0.00019834710110444576,-4.20305849627708e-20,-4.4077136408304796e-05,-4.4077136408304796e-05,3.416308032529072e-21,-6.441919436262456e-22,-6.441919436262456e-22,8.578845876980181e-36,9.794918696570676e-06,8.578845876980181e-36,0.00015151515253819525,-7.302841586106832e-20,-2.292786808010746e-34,-0.00011363636440364644,6.197989608954894e-21,6.863769198622361e-36,-3.0540976380265707e-21,1.5847499124077968e-35,8.578845876980181e-36,1.2626263014681172e-05,15.0,10.0,11.0,0.022229738533496857,-0.0022891347762197256,-0.003264462808147073,-0.0030077877454459667,6.68449210934341e-05,0.0001239669363712892,0.00011363636440364644,0.00013774105173069984,0.00016528925334569067,0.00011655011621769518,-0.0022891347762197256,0.0006252503953874111,0.0001239669363712892,0.00011363636440364644,-3.0851500923745334e-05,-1.7709562598611228e-05,-1.6233765563811176e-05,-6.87559310620039e-20,-3.9148846036175175e-20,-7.703846468610322e-20,-0.003264462808147073,0.0001239669363712892,0.001379706198349595,0.00016528925334569067,-8.023776665091105e-20,-2.7548208890948445e-05,4.765232412553139e-21,-0.00010330578516004607,-3.6730947613250464e-05,-1.6608493102033386e-34,-0.0030077877454459667,0.00011363636440364644,0.00016528925334569067,0.0011454580817371607,-8.260582964828551e-20,5.5229524718715866e-21,-2.2727272153133526e-05,-2.0993789572146127e-34,-3.3057851396733895e-05,-7.770007505314425e-05,6.68449210934341e-05,-3.0851500923745334e-05,-8.023776665091105e-20,-8.260582964828551e-20,2.2036786049284274e-06,2.1846183289791413e-21,3.2791808336237087e-21,5.6345358245513655e-21,2.8469234277570242e-21,4.684040677242581e-21,0.0001239669363712892,-1.7709562598611228e-05,-2.7548208890948445e-05,5.5229524718715866e-21,2.1846183289791413e-21,3.935458607884357e-06,-6.842931891830637e-22,-2.2505712405976485e-21,-1.628666952572176e-22,4.3053789972151345e-36,0.00011363636440364644,-1.6233765563811176e-05,4.765232412553139e-21,-2.2727272153133526e-05,3.2791808336237087e-21,-6.842931891830637e-22,3.2467532946611755e-06,8.46960181458174e-36,4.964000331690033e-24,2.2923792025001303e-21,0.00013774105173069984,-6.87559310620039e-20,-0.00010330578516004607,-2.0993789572146127e-34,5.6345358245513655e-21,-2.2505712405976485e-21,8.46960181458174e-36,1.147842067439342e-05,6.863447774385808e-36,1.1976516731718813e-35,0.00016528925334569067,-3.9148846036175175e-20,-3.6730947613250464e-05,-3.3057851396733895e-05,2.8469234277570242e-21,-1.628666952572176e-22,4.964000331690033e-24,6.863447774385808e-36,7.346189249801682e-06,5.6317239124491286e-36,0.00011655011621769518,-7.703846468610322e-20,-1.6608493102033386e-34,-7.770007505314425e-05,4.684040677242581e-21,4.3053789972151345e-36,2.2923792025001303e-21,1.1976516731718813e-35,5.6317239124491286e-36,7.770007869112305e-06,15.0,10.0,12.0,0.02058347687125206,-0.002106386236846447,-0.003004079218953848,-0.002566183917224407,6.127451342763379e-05,0.00011363636440364644,9.61538462433964e-05,0.00012626263196580112,0.0001398601452820003,9.157509339274839e-05,-0.002106386236846447,0.0005742909270338714,0.00011363636440364644,9.61538462433964e-05,-2.8280543119763024e-05,-1.6233765563811176e-05,-1.3736264008912258e-05,-4.455799978150963e-20,-1.9017919489534065e-20,-4.0657581468206416e-20,-0.003004079218953848,0.00011363636440364644,0.0012673205928876996,0.0001398601452820003,-8.50934396312195e-20,-2.5252526029362343e-05,1.6940658945086007e-21,-9.469696669839323e-05,-3.108003147644922e-05,1.6940658945086007e-21,-0.002566183917224407,9.61538462433964e-05,0.0001398601452820003,0.0008878242806531489,-6.75362984852342e-20,1.0291655165588327e-20,-1.7482518160250038e-05,-1.8628079640467426e-34,-2.5429117158637382e-05,-5.494505603564903e-05,6.127451342763379e-05,-2.8280543119763024e-05,-8.50934396312195e-20,-6.75362984852342e-20,2.0200388917146483e-06,3.6046200610620306e-21,2.369050121113273e-21,5.164991273479614e-21,2.4320319679925516e-21,3.636489132865197e-21,0.00011363636440364644,-1.6233765563811176e-05,-2.5252526029362343e-05,1.0291655165588327e-20,3.6046200610620306e-21,3.607503685998381e-06,1.7927827112540587e-22,-6.167084234877095e-21,-2.565911836758791e-21,7.147005652999508e-36,9.61538462433964e-05,-1.3736264008912258e-05,1.6940658945086007e-21,-1.7482518160250038e-05,2.369050121113273e-21,1.7927827112540587e-22,2.4975024643936194e-06,5.532836454636943e-36,-6.352747104407253e-22,-1.6940658945086007e-21,0.00012626263196580112,-4.455799978150963e-20,-9.469696669839323e-05,-1.8628079640467426e-34,5.164991273479614e-21,-6.167084234877095e-21,5.532836454636943e-36,1.0521885087655392e-05,1.0115189873334951e-35,9.27569003450295e-36,0.0001398601452820003,-1.9017919489534065e-20,-3.108003147644922e-05,-2.5429117158637382e-05,2.4320319679925516e-21,-2.565911836758791e-21,-6.352747104407253e-22,1.0115189873334951e-35,5.65091477255919e-06,-6.352747104407253e-22,9.157509339274839e-05,-4.0657581468206416e-20,1.6940658945086007e-21,-5.494505603564903e-05,3.636489132865197e-21,7.147005652999508e-36,-1.6940658945086007e-21,9.27569003450295e-36,-6.352747104407253e-22,4.995004928787239e-06,15.0,10.0,13.0,0.019164903089404106,-0.0019506963435560465,-0.0027822176925837994,-0.0022152846213430166,5.656108623952605e-05,0.00010489510168554261,8.241758041549474e-05,0.00011655011621769518,0.00011988011829089373,7.326007471419871e-05,-0.0019506963435560465,0.0005310203414410353,0.00010489510168554261,8.241758041549474e-05,-2.6105117285624146e-05,-1.4985014786361717e-05,-1.1773940059356391e-05,-6.12587020319471e-20,-2.6746650846767735e-20,-6.098637220230962e-20,-0.0027822176925837994,0.00010489510168554261,0.001171883661299944,0.00011988011829089373,-7.596900416460312e-20,-2.3310023607336916e-05,0.0,-8.741259080125019e-05,-2.6640027499524876e-05,-5.082197683525802e-21,-0.0022152846213430166,8.241758041549474e-05,0.00011988011829089373,0.000702214427292347,-5.556689162401533e-20,3.0443689762030527e-21,-1.3736264008912258e-05,-1.4175292116284475e-34,-1.9980019715148956e-05,-3.996003943029791e-05,5.656108623952605e-05,-2.6105117285624146e-05,-7.596900416460312e-20,-5.556689162401533e-20,1.864651153482555e-06,2.9576371906619854e-21,1.708067380404481e-21,4.767684066028821e-21,2.0593980072505664e-21,2.862342995259679e-21,0.00010489510168554261,-1.4985014786361717e-05,-2.3310023607336916e-05,3.0443689762030527e-21,2.9576371906619854e-21,3.3300034374406096e-06,-3.7081710048129085e-23,-1.2197505146304645e-21,-6.188437349051558e-22,4.419858759091801e-36,8.241758041549474e-05,-1.1773940059356391e-05,0.0,-1.3736264008912258e-05,1.708067380404481e-21,-3.7081710048129085e-23,1.9623234948085155e-06,4.377947334532698e-36,5.293955920339377e-23,3.282252670610414e-21,0.00011655011621769518,-6.12587020319471e-20,-8.741259080125019e-05,-1.4175292116284475e-34,4.767684066028821e-21,-1.2197505146304645e-21,4.377947334532698e-36,9.71250938164303e-06,5.137011116899726e-36,7.33256142538117e-36,0.00011988011829089373,-2.6746650846767735e-20,-2.6640027499524876e-05,-1.9980019715148956e-05,2.0593980072505664e-21,-6.188437349051558e-22,5.293955920339377e-23,5.137011116899726e-36,4.440004431671696e-06,8.470329472543003e-22,7.326007471419871e-05,-6.098637220230962e-20,-5.082197683525802e-21,-3.996003943029791e-05,2.862342995259679e-21,4.419858759091801e-36,3.282252670610414e-21,7.33256142538117e-36,8.470329472543003e-22,3.3300034374406096e-06,15.0,10.0,14.0,0.017929717898368835,-0.0018164629582315683,-0.0025909091345965862,-0.001931818202137947,5.25210089108441e-05,9.740259702084586e-05,7.142857066355646e-05,0.00010822511103469878,0.00010389610542915761,5.952380888629705e-05,-0.0018164629582315683,0.0004938191850669682,9.740259702084586e-05,7.142857066355646e-05,-2.424046579108108e-05,-1.3914656847191509e-05,-1.0204081263509579e-05,-7.261617618563574e-20,-1.8725218721725335e-20,-2.414043899674756e-20,-0.0025909091345965862,9.740259702084586e-05,0.0010898268083110452,0.00010389610542915761,-6.95772567867837e-20,-2.1645020751748234e-05,5.505714157152952e-21,-8.116882963804528e-05,-2.308802322659176e-05,1.6940658945086007e-21,-0.001931818202137947,7.142857066355646e-05,0.00010389610542915761,0.0005650599487125874,-4.808756329940206e-20,1.820511639078233e-21,-1.0989010661432985e-05,-1.2207555898981237e-34,-1.5984016499714926e-05,-2.9761904443148524e-05,5.25210089108441e-05,-2.424046579108108e-05,-6.95772567867837e-20,-4.808756329940206e-20,1.7314617934971466e-06,2.5747287015936183e-21,1.4328227286548736e-21,4.42713526186916e-21,1.8015288941517782e-21,2.304118058614994e-21,9.740259702084586e-05,-1.3914656847191509e-05,-2.1645020751748234e-05,1.820511639078233e-21,2.5747287015936183e-21,3.092146016570041e-06,-5.2284350268178924e-23,2.3636173054787755e-21,-3.232269332939456e-22,3.6205226005326455e-36,7.142857066355646e-05,-1.0204081263509579e-05,5.505714157152952e-21,-1.0989010661432985e-05,1.4328227286548736e-21,-5.2284350268178924e-23,1.5698586821599747e-06,3.908771622830947e-36,-7.411538288475128e-22,-1.164670302474663e-21,0.00010822511103469878,-7.261617618563574e-20,-8.116882963804528e-05,-1.2207555898981237e-34,4.42713526186916e-21,2.3636173054787755e-21,3.908771622830947e-36,9.018758646561764e-06,4.008550171941791e-36,5.898129001028476e-36,0.00010389610542915761,-1.8725218721725335e-20,-2.308802322659176e-05,-1.5984016499714926e-05,1.8015288941517782e-21,-3.232269332939456e-22,-7.411538288475128e-22,4.008550171941791e-36,3.5520035908120917e-06,-2.117582368135751e-22,5.952380888629705e-05,-2.414043899674756e-20,1.6940658945086007e-21,-2.9761904443148524e-05,2.304118058614994e-21,3.6205226005326455e-36,-1.164670302474663e-21,5.898129001028476e-36,-2.117582368135751e-22,2.2893773348187096e-06,15.0,10.0,15.0,0.016844436526298523,-0.001699532032944262,-0.002424242440611124,-0.001699532032944262,4.901960710412823e-05,9.09090886125341e-05,6.25000029685907e-05,0.00010101010411744937,9.09090886125341e-05,4.901960710412823e-05,-0.001699532032944262,0.0004614931531250477,9.09090886125341e-05,6.25000029685907e-05,-2.2624433768214658e-05,-1.2987013178644702e-05,-8.928571332944557e-06,-6.777509518832061e-20,-1.9043140420281263e-20,-2.837560373301906e-20,-0.002424242440611124,9.09090886125341e-05,0.0010185184655711055,9.09090886125341e-05,-6.378636565110455e-20,-2.0202020095894113e-05,3.5998900258307764e-21,-7.575757626909763e-05,-2.0202020095894113e-05,-8.470329472543003e-22,-0.001699532032944262,6.25000029685907e-05,9.09090886125341e-05,0.0004614931531250477,-4.035275895013209e-20,1.7995195076539992e-21,-8.928571332944557e-06,-1.0164477840629983e-34,-1.2987013178644702e-05,-2.2624433768214658e-05,4.901960710412823e-05,-2.2624433768214658e-05,-6.378636565110455e-20,-4.035275895013209e-20,1.616030999684881e-06,2.2428747854401757e-21,9.895754932582762e-22,4.131992938004335e-21,1.5569010322281782e-21,1.886863600718812e-21,9.09090886125341e-05,-1.2987013178644702e-05,-2.0202020095894113e-05,1.7995195076539992e-21,2.2428747854401757e-21,2.88600290332397e-06,-1.7115602040573101e-22,2.2060428319100832e-21,-1.3365053112387358e-22,2.6801271198748155e-36,6.25000029685907e-05,-8.928571332944557e-06,3.5998900258307764e-21,-8.928571332944557e-06,9.895754932582762e-22,-1.7115602040573101e-22,1.2755101579386974e-06,2.5610345973444477e-36,-3.1763735522036263e-22,3.705769144237564e-22,0.00010101010411744937,-6.777509518832061e-20,-7.575757626909763e-05,-1.0164477840629983e-34,4.131992938004335e-21,2.2060428319100832e-21,2.5610345973444477e-36,8.417508070124313e-06,3.6215083971867165e-36,4.815767681479818e-36,9.09090886125341e-05,-1.9043140420281263e-20,-2.0202020095894113e-05,-1.2987013178644702e-05,1.5569010322281782e-21,-1.3365053112387358e-22,-3.1763735522036263e-22,3.6215083971867165e-36,2.88600290332397e-06,2.117582368135751e-22,4.901960710412823e-05,-2.837560373301906e-20,-8.470329472543003e-22,-2.2624433768214658e-05,1.886863600718812e-21,2.6801271198748155e-36,3.705769144237564e-22,4.815767681479818e-36,2.117582368135751e-22,1.616030999684881e-06,15.0,10.0,16.0,0.01588328182697296,-0.0015967580256983638,-0.002277740743011236,-0.0015067958738654852,4.595588325173594e-05,8.522727148374543e-05,5.5147058446891606e-05,9.469696669839323e-05,8.021390385692939e-05,4.0849674405762926e-05,-0.0015967580256983638,0.0004331422387622297,8.522727148374543e-05,5.5147058446891606e-05,-2.121040779456962e-05,-1.2175324627605733e-05,-7.878151336626615e-06,-1.4690488572045955e-19,-4.7645603283054394e-20,7.199780051661553e-21,-0.002277740743011236,8.522727148374543e-05,0.0009559752070344985,8.021390385692939e-05,-1.3169312472848887e-19,-1.8939394067274407e-05,5.293955920339377e-21,-7.102272502379492e-05,-1.7825312170316465e-05,3.049318610115481e-20,-0.0015067958738654852,5.5147058446891606e-05,8.021390385692939e-05,0.00038181181298568845,-1.3726734301129314e-20,-1.6227278674657242e-20,-7.3529413384676445e-06,6.096977042892174e-20,-1.069518748408882e-05,-1.750700357661117e-05,4.595588325173594e-05,-2.121040779456962e-05,-1.3169312472848887e-19,-1.3726734301129314e-20,1.5150291119425674e-06,3.9700876811748515e-21,8.411043483180896e-22,8.155249591755593e-21,2.6752961734009504e-21,-4.580585848304395e-22,8.522727148374543e-05,-1.2175324627605733e-05,-1.8939394067274407e-05,-1.6227278674657242e-20,3.9700876811748515e-21,2.7056275939685293e-06,1.308368094253568e-21,9.497081140365087e-21,1.6230416548768045e-21,-3.47415762608963e-23,5.5147058446891606e-05,-7.878151336626615e-06,5.293955920339377e-21,-7.3529413384676445e-06,8.411043483180896e-22,1.308368094253568e-21,1.0504202236916171e-06,-1.934832806104785e-21,-1.0606932854825443e-22,-4.235164736271502e-22,9.469696669839323e-05,-1.4690488572045955e-19,-7.102272502379492e-05,6.096977042892174e-20,8.155249591755593e-21,9.497081140365087e-21,-1.934832806104785e-21,7.89141449786257e-06,-7.605517796673782e-22,-2.3068784911816415e-21,8.021390385692939e-05,-4.7645603283054394e-20,-1.7825312170316465e-05,-1.069518748408882e-05,2.6752961734009504e-21,1.6230416548768045e-21,-1.0606932854825443e-22,-7.605517796673782e-22,2.3767081529513234e-06,-1.2705494208814505e-21,4.0849674405762926e-05,7.199780051661553e-21,3.049318610115481e-20,-1.750700357661117e-05,-4.580585848304395e-22,-3.47415762608963e-23,-4.235164736271502e-22,-2.3068784911816415e-21,-1.2705494208814505e-21,1.1671335187202203e-06,15.0,11.0,3.0,0.057788290083408356,-0.006907308474183083,-0.00906177144497633,-0.024621212854981422,0.0002228163939435035,0.0003787878667935729,0.0011363636003807187,0.0003885003970935941,0.0015151514671742916,0.0030303029343485832,-0.006907308474183083,0.001980862347409129,0.0003787878667935729,0.0011363636003807187,-0.00010283834126312286,-5.411255551734939e-05,-0.00016233765927609056,-2.567948865952431e-19,-3.482204972131326e-19,-4.0367063229368605e-18,-0.00906177144497633,0.0003787878667935729,0.003625356126576662,0.0015151514671742916,-2.53382249580579e-19,-7.575757626909763e-05,-2.779209889669679e-20,-0.0002590002550277859,-0.0003030303050763905,-8.862832879908553e-33,-0.024621212854981422,0.0011363636003807187,0.0015151514671742916,0.054924242198467255,-7.890269067990193e-19,6.597353458827133e-20,-0.0011363636003807187,-1.6014029537610727e-33,-0.0015151514671742916,-0.0181818176060915,0.0002228163939435035,-0.00010283834126312286,-2.53382249580579e-19,-7.890269067990193e-19,7.3455958045087755e-06,1.0164395367051604e-20,1.951528121987718e-20,1.5613468654877414e-20,2.6096798693617897e-20,2.6096798693617897e-19,0.0003787878667935729,-5.411255551734939e-05,-7.575757626909763e-05,6.597353458827133e-20,1.0164395367051604e-20,1.0822510375874117e-05,-1.5033406836685862e-21,7.64126427759829e-21,-1.1090029859544049e-20,3.375796615305946e-34,0.0011363636003807187,-0.00016233765927609056,-2.779209889669679e-20,-0.0011363636003807187,1.951528121987718e-20,-1.5033406836685862e-21,0.00016233765927609056,3.9027138521691444e-35,3.8315480956073606e-20,3.831548160230846e-19,0.0003885003970935941,-2.567948865952431e-19,-0.0002590002550277859,-1.6014029537610727e-33,1.5613468654877414e-20,7.64126427759829e-21,3.9027138521691444e-35,2.590002623037435e-05,4.376186101907943e-35,5.547018251576215e-34,0.0015151514671742916,-3.482204972131326e-19,-0.0003030303050763905,-0.0015151514671742916,2.6096798693617897e-20,-1.1090029859544049e-20,3.8315480956073606e-20,4.376186101907943e-35,0.0003030303050763905,9.527570894536726e-34,0.0030303029343485832,-4.0367063229368605e-18,-8.862832879908553e-33,-0.0181818176060915,2.6096798693617897e-19,3.375796615305946e-34,3.831548160230846e-19,5.547018251576215e-34,9.527570894536726e-34,0.00909090880304575,15.0,11.0,4.0,0.046882882714271545,-0.005350935738533735,-0.0070236013270914555,-0.01568181812763214,0.00016711230273358524,0.0002840909000951797,0.0006818181718699634,0.00029137529782019556,0.0009090909152291715,0.0015151514671742916,-0.005350935738533735,0.0015099974116310477,0.0002840909000951797,0.0006818181718699634,-7.712875230936334e-05,-4.058441481902264e-05,-9.740259702084586e-05,-1.4670797796058072e-19,-1.7057882070112135e-19,-1.4396681514791421e-18,-0.0070236013270914555,0.0002840909000951797,0.002764471573755145,0.0009090909152291715,-1.7785758357658464e-19,-5.681818220182322e-05,3.8010813534364134e-20,-0.00019425019854679704,-0.0001818181772250682,-2.8763522081865877e-33,-0.01568181812763214,0.0006818181718699634,0.0009090909152291715,0.021060606464743614,-4.2963838564186684e-19,5.591670501259429e-20,-0.00045454545761458576,-9.239400291142565e-34,-0.000606060610152781,-0.004545454401522875,0.00016711230273358524,-7.712875230936334e-05,-1.7785758357658464e-19,-4.2963838564186684e-19,5.509196853381582e-06,5.505714157152952e-21,1.1047373512447882e-20,1.1710101895054844e-20,1.5658078246818458e-20,9.133879542766264e-20,0.0002840909000951797,-4.058441481902264e-05,-5.681818220182322e-05,5.591670501259429e-20,5.505714157152952e-21,8.116882781905588e-06,-3.2352310070784688e-21,-3.446689148581923e-21,-6.654018158064499e-21,8.544343568059549e-35,0.0006818181718699634,-9.740259702084586e-05,3.8010813534364134e-20,-0.00045454545761458576,1.1047373512447882e-20,-3.2352310070784688e-21,6.49350622552447e-05,2.465707594543659e-35,-1.0242797387278713e-20,1.072833479694758e-19,0.00029137529782019556,-1.4670797796058072e-19,-0.00019425019854679704,-9.239400291142565e-34,1.1710101895054844e-20,-3.446689148581923e-21,2.465707594543659e-35,1.942501876328606e-05,3.3780714379429643e-35,1.941456342133927e-34,0.0009090909152291715,-1.7057882070112135e-19,-0.0001818181772250682,-0.000606060610152781,1.5658078246818458e-20,-6.654018158064499e-21,-1.0242797387278713e-20,3.3780714379429643e-35,0.00012121212057536468,2.2452782395495537e-34,0.0015151514671742916,-1.4396681514791421e-18,-2.8763522081865877e-33,-0.004545454401522875,9.133879542766264e-20,8.544343568059549e-35,1.072833479694758e-19,1.941456342133927e-34,2.2452782395495537e-34,0.0015151514671742916,15.0,11.0,5.0,0.039510637521743774,-0.004371657967567444,-0.005740093067288399,-0.010887445881962776,0.0001336898421868682,0.00022727272880729288,0.00045454545761458576,0.00023310023243539035,0.000606060610152781,0.0008658008882775903,-0.004371657967567444,0.0012209848500788212,0.00022727272880729288,0.00045454545761458576,-6.170300184749067e-05,-3.246753112762235e-05,-6.49350622552447e-05,-1.5407692937220644e-19,-1.3485219211131424e-19,-7.139013812899759e-19,-0.005740093067288399,0.00022727272880729288,0.0022358198184520006,0.000606060610152781,-1.5995204429634967e-19,-4.545454430626705e-05,8.199305037309711e-21,-0.0001554001501062885,-0.00012121212057536468,-1.601975088902137e-33,-0.010887445881962776,0.00045454545761458576,0.000606060610152781,0.010638528503477573,-2.8771567337429953e-19,4.7846400568958075e-21,-0.00022727272880729288,-6.053531420505846e-34,-0.0003030303050763905,-0.0017316017765551805,0.0001336898421868682,-6.170300184749067e-05,-1.5995204429634967e-19,-2.8771567337429953e-19,4.407357209856855e-06,6.332909309990185e-21,7.960795908733142e-21,9.368081354485162e-21,1.0438718831212305e-20,4.473736872746293e-20,0.00022727272880729288,-3.246753112762235e-05,-4.545454430626705e-05,4.7846400568958075e-21,6.332909309990185e-21,6.493506589322351e-06,-4.235164736271502e-22,4.5847584050002606e-21,-6.181148526722805e-22,6.643050906198468e-35,0.00045454545761458576,-6.49350622552447e-05,8.199305037309711e-21,-0.00022727272880729288,7.960795908733142e-21,-4.235164736271502e-22,3.246753112762235e-05,1.771203663750329e-35,-4.0996525186548555e-21,4.378912247744452e-20,0.00023310023243539035,-1.5407692937220644e-19,-0.0001554001501062885,-6.053531420505846e-34,9.368081354485162e-21,4.5847584050002606e-21,1.771203663750329e-35,1.554001573822461e-05,2.0200382542807671e-35,9.509174178357617e-35,0.000606060610152781,-1.3485219211131424e-19,-0.00012121212057536468,-0.0003030303050763905,1.0438718831212305e-20,-6.181148526722805e-22,-4.0996525186548555e-21,2.0200382542807671e-35,6.060606028768234e-05,9.302204520666352e-35,0.0008658008882775903,-7.139013812899759e-19,-1.601975088902137e-33,-0.0017316017765551805,4.473736872746293e-20,6.643050906198468e-35,4.378912247744452e-20,9.509174178357617e-35,9.302204520666352e-35,0.00043290044413879514,15.0,11.0,6.0,0.03417012095451355,-0.003697160631418228,-0.0048555610701441765,-0.008008657954633236,0.00011140819697175175,0.00018939393339678645,0.0003246753185521811,0.00019425019854679704,0.00043290044413879514,0.0005411255406215787,-0.003697160631418228,0.00102521781809628,0.00018939393339678645,0.0003246753185521811,-5.141917063156143e-05,-2.7056277758674696e-05,-4.638218888430856e-05,-1.2839744329762154e-19,-8.76260534093552e-20,-4.125899347232075e-19,-0.0048555610701441765,0.00018939393339678645,0.0018776131328195333,0.00043290044413879514,-1.2966195688497077e-19,-3.787878813454881e-05,1.112404039209319e-20,-0.00012950012751389295,-8.658008300699294e-05,-8.713881766283038e-34,-0.008008657954633236,0.0003246753185521811,0.00043290044413879514,0.006179653573781252,-2.2185144294915884e-19,1.4107424791011238e-20,-0.0001298701245104894,-4.4872357075580344e-34,-0.00017316016601398587,-0.000811688310932368,0.00011140819697175175,-5.141917063156143e-05,-1.2966195688497077e-19,-2.2185144294915884e-19,3.6727979022543877e-06,4.5007280830954535e-21,8.030888156537074e-21,7.806734327438707e-21,7.456227851979299e-21,2.56307842004337e-20,0.00018939393339678645,-2.7056277758674696e-05,-3.787878813454881e-05,1.4107424791011238e-20,4.5007280830954535e-21,5.4112551879370585e-06,-6.352747104407253e-22,3.820632138799145e-21,-1.8050454214970873e-21,3.0652671106481246e-35,0.0003246753185521811,-4.638218888430856e-05,1.112404039209319e-20,-0.0001298701245104894,8.030888156537074e-21,-6.352747104407253e-22,1.8552875189925544e-05,1.557067967499486e-35,-3.094363522009752e-21,2.150358753673311e-20,0.00019425019854679704,-1.2839744329762154e-19,-0.00012950012751389295,-4.4872357075580344e-34,7.806734327438707e-21,3.820632138799145e-21,1.557067967499486e-35,1.2950013115187176e-05,1.346611717799398e-35,5.447964600214575e-35,0.00043290044413879514,-8.76260534093552e-20,-8.658008300699294e-05,-0.00017316016601398587,7.456227851979299e-21,-1.8050454214970873e-21,-3.094363522009752e-21,1.346611717799398e-35,3.4632033930392936e-05,4.480921041445026e-35,0.0005411255406215787,-4.125899347232075e-19,-8.713881766283038e-34,-0.000811688310932368,2.56307842004337e-20,3.0652671106481246e-35,2.150358753673311e-20,5.447964600214575e-35,4.480921041445026e-35,0.00016233765927609056,15.0,11.0,7.0,0.030114533379673958,-0.0032037815544754267,-0.004208291880786419,-0.006141774822026491,9.549274545861408e-05,0.00016233765927609056,0.00024350649619009346,0.00016650016186758876,0.0003246753185521811,0.0003607503604143858,-0.0032037815544754267,0.000883727625478059,0.00016233765927609056,0.00024350649619009346,-4.407357482705265e-05,-2.319109444215428e-05,-3.478664075373672e-05,-8.008715515594104e-20,-6.776693324212018e-20,-2.617509133859604e-19,-0.004208291880786419,0.00016233765927609056,0.0016186591237783432,0.0003246753185521811,-1.0478451934948407e-19,-3.246753112762235e-05,-1.413168202403307e-21,-0.00011100011033704504,-6.49350622552447e-05,-5.28252054320418e-34,-0.006141774822026491,0.00024350649619009346,0.0003246753185521811,0.003923160023987293,-1.5201463885814103e-19,-1.0933261362006777e-20,-8.116882963804528e-05,-3.1612718809345035e-34,-0.00010822511103469878,-0.00043290044413879514,9.549274545861408e-05,-4.407357482705265e-05,-1.0478451934948407e-19,-1.5201463885814103e-19,3.1481124551646644e-06,3.1259040237795626e-21,3.683119420413956e-21,6.691486450976954e-21,5.592171090932866e-21,1.615516048058741e-20,0.00016233765927609056,-2.319109444215428e-05,-3.246753112762235e-05,-1.0933261362006777e-20,3.1259040237795626e-21,4.638218797481386e-06,1.5881867761018131e-21,-2.7187316373924372e-21,-1.8503995971584634e-22,1.6372726415620304e-35,0.00024350649619009346,-3.478664075373672e-05,-1.413168202403307e-21,-8.116882963804528e-05,3.683119420413956e-21,1.5881867761018131e-21,1.159554722107714e-05,7.753656591322923e-36,-3.1994201046169964e-21,1.1859554206256283e-20,0.00016650016186758876,-8.008715515594104e-20,-0.00011100011033704504,-3.1612718809345035e-34,6.691486450976954e-21,-2.7187316373924372e-21,7.753656591322923e-36,1.1100010851805564e-05,1.1163893124809299e-35,3.4338686765070813e-35,0.0003246753185521811,-6.776693324212018e-20,-6.49350622552447e-05,-0.00010822511103469878,5.592171090932866e-21,-1.8503995971584634e-22,-3.1994201046169964e-21,1.1163893124809299e-35,2.1645020751748234e-05,2.3418704413268257e-35,0.0003607503604143858,-2.617509133859604e-19,-5.28252054320418e-34,-0.00043290044413879514,1.615516048058741e-20,1.6372726415620304e-35,1.1859554206256283e-20,3.4338686765070813e-35,2.3418704413268257e-35,7.215006917249411e-05,15.0,11.0,8.0,0.02692629024386406,-0.0028269831091165543,-0.003713820828124881,-0.004861111287027597,8.355615136679262e-05,0.00014204545004758984,0.00018939393339678645,0.00014568764891009778,0.00025252526393160224,0.00025252526393160224,-0.0028269831091165543,0.000776643690187484,0.00014204545004758984,0.00018939393339678645,-3.856437615468167e-05,-2.029220740951132e-05,-2.7056277758674696e-05,-7.335398898029036e-20,-5.306238906200936e-20,-1.770654288930944e-19,-0.003713820828124881,0.00014204545004758984,0.0014226398197934031,0.00025252526393160224,-9.269789841052701e-20,-2.840909110091161e-05,7.644709517161316e-21,-9.712509927339852e-05,-5.0505052058724687e-05,-3.5527824426791073e-34,-0.004861111287027597,0.00018939393339678645,0.00025252526393160224,0.002651515183970332,-1.3392285469311091e-19,1.261655775268085e-20,-5.411255551734939e-05,-2.8522119164067654e-34,-7.215006917249411e-05,-0.00025252526393160224,8.355615136679262e-05,-3.856437615468167e-05,-9.269789841052701e-20,-1.3392285469311091e-19,2.754598426690791e-06,2.703465146770719e-21,5.151409032444979e-21,5.855050947527422e-21,4.349466314304055e-21,1.0873665583811746e-20,0.00014204545004758984,-2.029220740951132e-05,-2.840909110091161e-05,1.261655775268085e-20,2.703465146770719e-21,4.058441390952794e-06,-8.879375940005444e-22,-1.7233445742909616e-21,-1.2801989189354077e-21,9.93898697226513e-36,0.00018939393339678645,-2.7056277758674696e-05,7.644709517161316e-21,-5.411255551734939e-05,5.151409032444979e-21,-8.879375940005444e-22,7.730364814051427e-06,1.1103107353395287e-35,-4.083273797265648e-22,7.095459974838972e-21,0.00014568764891009778,-7.335398898029036e-20,-9.712509927339852e-05,-2.8522119164067654e-34,5.855050947527422e-21,-1.7233445742909616e-21,1.1103107353395287e-35,9.71250938164303e-06,9.142281757177938e-36,2.3112576526544103e-35,0.00025252526393160224,-5.306238906200936e-20,-5.0505052058724687e-05,-7.215006917249411e-05,4.349466314304055e-21,-1.2801989189354077e-21,-4.083273797265648e-22,9.142281757177938e-36,1.4430014743993524e-05,1.5594163733278012e-35,0.00025252526393160224,-1.770654288930944e-19,-3.5527824426791073e-34,-0.00025252526393160224,1.0873665583811746e-20,9.93898697226513e-36,7.095459974838972e-21,2.3112576526544103e-35,1.5594163733278012e-35,3.607503458624706e-05,15.0,11.0,9.0,0.024352295324206352,-0.0025297089014202356,-0.0033236208837479353,-0.00394398532807827,7.427213131450117e-05,0.00012626263196580112,0.00015151515253819525,0.00012950012751389295,0.00020202020823489875,0.0001836547307902947,-0.0025297089014202356,0.0006927549839019775,0.00012626263196580112,0.00015151515253819525,-3.4279444662388414e-05,-1.803751729312353e-05,-2.1645020751748234e-05,-4.693048302528243e-20,-3.2458628628891894e-20,-1.2559686823745841e-19,-0.0033236208837479353,0.00012626263196580112,0.0012690580915659666,0.00020202020823489875,-7.998115325291208e-20,-2.5252526029362343e-05,-6.840738227425398e-22,-8.63334207679145e-05,-4.0404040191788226e-05,-2.465489427843099e-34,-0.00394398532807827,0.00015151515253819525,0.00020202020823489875,0.0018780336249619722,-9.910326195671088e-20,6.466610858326521e-21,-3.787878813454881e-05,-2.170796208334317e-34,-5.0505052058724687e-05,-0.00015741834067739546,7.427213131450117e-05,-3.4279444662388414e-05,-7.998115325291208e-20,-9.910326195671088e-20,2.4485318590450333e-06,2.002566700590017e-21,2.8925718422251605e-21,5.204489551625805e-21,3.4795732130019574e-21,7.682174175002719e-21,0.00012626263196580112,-1.803751729312353e-05,-2.5252526029362343e-05,6.466610858326521e-21,2.002566700590017e-21,3.607503685998381e-06,7.480611706642749e-22,-5.1864745433925516e-21,-2.340607709621093e-21,6.634359824430817e-36,0.00015151515253819525,-2.1645020751748234e-05,-6.840738227425398e-22,-3.787878813454881e-05,2.8925718422251605e-21,7.480611706642749e-22,5.4112551879370585e-06,5.0326447390374583e-36,-1.138088643463944e-21,4.5116066390615196e-21,0.00012950012751389295,-4.693048302528243e-20,-8.63334207679145e-05,-2.170796208334317e-34,5.204489551625805e-21,-5.1864745433925516e-21,5.0326447390374583e-36,8.63334207679145e-06,1.0244004940922436e-35,1.6328885010712256e-35,0.00020202020823489875,-3.2458628628891894e-20,-4.0404040191788226e-05,-5.0505052058724687e-05,3.4795732130019574e-21,-2.340607709621093e-21,-1.138088643463944e-21,1.0244004940922436e-35,1.0101010047947057e-05,9.204891324148462e-36,0.0001836547307902947,-1.2559686823745841e-19,-2.465489427843099e-34,-0.00015741834067739546,7.682174175002719e-21,6.634359824430817e-36,4.5116066390615196e-21,1.6328885010712256e-35,9.204891324148462e-36,1.9677292584674433e-05,15.0,11.0,10.0,0.022229738533496857,-0.0022891347762197256,-0.0030077877454459667,-0.003264462808147073,6.68449210934341e-05,0.00011363636440364644,0.0001239669363712892,0.00011655011621769518,0.00016528925334569067,0.00013774105173069984,-0.0022891347762197256,0.0006252503953874111,0.00011363636440364644,0.0001239669363712892,-3.0851500923745334e-05,-1.6233765563811176e-05,-1.7709562598611228e-05,-7.703846468610322e-20,-3.9148846036175175e-20,-6.87559310620039e-20,-0.0030077877454459667,0.00011363636440364644,0.0011454580817371607,0.00016528925334569067,-8.236066753189157e-20,-2.2727272153133526e-05,2.929115514426049e-22,-7.770007505314425e-05,-3.3057851396733895e-05,-2.069469972825878e-34,-0.003264462808147073,0.0001239669363712892,0.00016528925334569067,0.001379706198349595,-7.966986838630218e-20,-4.648086088500388e-22,-2.7548208890948445e-05,-1.6977761336197264e-34,-3.6730947613250464e-05,-0.00010330578516004607,6.68449210934341e-05,-3.0851500923745334e-05,-8.236066753189157e-20,-7.966986838630218e-20,2.2036786049284274e-06,3.2441581357351842e-21,2.103490005463589e-21,4.684040677242581e-21,2.8469234277570242e-21,5.6345358245513655e-21,0.00011363636440364644,-1.6233765563811176e-05,-2.2727272153133526e-05,-4.648086088500388e-22,3.2441581357351842e-21,3.2467532946611755e-06,6.285551553847292e-23,2.2923792025001303e-21,4.964000331690033e-24,8.042329994058549e-36,0.0001239669363712892,-1.7709562598611228e-05,2.929115514426049e-22,-2.7548208890948445e-05,2.103490005463589e-21,6.285551553847292e-23,3.935458607884357e-06,4.8329054047530824e-36,-1.628666952572176e-22,-2.2505712405976485e-21,0.00011655011621769518,-7.703846468610322e-20,-7.770007505314425e-05,-1.6977761336197264e-34,4.684040677242581e-21,2.2923792025001303e-21,4.8329054047530824e-36,7.770007869112305e-06,5.6317239124491286e-36,1.1976516731718813e-35,0.00016528925334569067,-3.9148846036175175e-20,-3.3057851396733895e-05,-3.6730947613250464e-05,2.8469234277570242e-21,4.964000331690033e-24,-1.628666952572176e-22,5.6317239124491286e-36,7.346189249801682e-06,6.863447774385808e-36,0.00013774105173069984,-6.87559310620039e-20,-2.069469972825878e-34,-0.00010330578516004607,5.6345358245513655e-21,8.042329994058549e-36,-2.2505712405976485e-21,1.1976516731718813e-35,6.863447774385808e-36,1.147842067439342e-05,15.0,11.0,11.0,0.02044893614947796,-0.0020904229022562504,-0.0027468742337077856,-0.0027468742337077856,6.076811041566543e-05,0.00010330578516004607,0.00010330578516004607,0.00010595464846119285,0.00013774105173069984,0.00010595464846119285,-0.0020904229022562504,0.0005697510787285864,0.00010330578516004607,0.00010330578516004607,-2.8046819352312014e-05,-1.4757969438505825e-05,-1.4757969438505825e-05,-9.079991310797848e-20,-2.3625186254483718e-20,-9.079991310797848e-20,-0.0027468742337077856,0.00010330578516004607,0.001043829950504005,0.00013774105173069984,-2.039509766125243e-20,-2.0661156668211333e-05,-6.014937528233107e-20,-7.063643715810031e-05,-2.7548208890948445e-05,-1.5397742212945572e-19,-0.0027468742337077856,0.00010330578516004607,0.00013774105173069984,0.001043829950504005,-2.024860268229958e-20,-6.080025656448519e-20,-2.0661156668211333e-05,-2.2150519031462297e-19,-2.7548208890948445e-05,-7.063643715810031e-05,6.076811041566543e-05,-2.8046819352312014e-05,-2.039509766125243e-20,-2.024860268229958e-20,2.0033442069689045e-06,-8.312572942499161e-22,-8.521851555984798e-22,2.129109380387683e-21,1.0675962349217861e-21,2.129109380387683e-21,0.00010330578516004607,-1.4757969438505825e-05,-2.0661156668211333e-05,-6.080025656448519e-20,-8.312572942499161e-22,2.95159384222643e-06,3.2516472908685394e-22,7.493144017988746e-21,1.5883576244412223e-21,5.713617199168276e-21,0.00010330578516004607,-1.4757969438505825e-05,-6.014937528233107e-20,-2.0661156668211333e-05,-8.521851555984798e-22,3.2516472908685394e-22,2.95159384222643e-06,5.713617199168276e-21,1.4581811862568441e-21,7.493144017988746e-21,0.00010595464846119285,-9.079991310797848e-20,-7.063643715810031e-05,-2.2150519031462297e-19,2.129109380387683e-21,7.493144017988746e-21,5.713617199168276e-21,7.06364335201215e-06,6.010899368191942e-21,1.608660465614781e-20,0.00013774105173069984,-2.3625186254483718e-20,-2.7548208890948445e-05,-2.7548208890948445e-05,1.0675962349217861e-21,1.5883576244412223e-21,1.4581811862568441e-21,6.010899368191942e-21,5.5096420510380995e-06,-7.494656207546069e-21,0.00010595464846119285,-9.079991310797848e-20,-1.5397742212945572e-19,-7.063643715810031e-05,2.129109380387683e-21,5.713617199168276e-21,7.493144017988746e-21,1.608660465614781e-20,-7.494656207546069e-21,7.06364335201215e-06,15.0,11.0,12.0,0.018933210521936417,-0.001923505449667573,-0.0025276807136833668,-0.0023434897884726524,5.5704098485875875e-05,9.469696669839323e-05,8.741259080125019e-05,9.712509927339852e-05,0.00011655011621769518,8.325008093379438e-05,-0.001923505449667573,0.0005233124829828739,9.469696669839323e-05,8.741259080125019e-05,-2.5709585315780714e-05,-1.3528138879337348e-05,-1.2487512321968097e-05,-6.419872164881077e-20,-2.48239971442718e-20,-5.251604272976662e-20,-0.0025276807136833668,9.469696669839323e-05,0.000958786578848958,0.00011655011621769518,-6.584733138372017e-20,-1.8939394067274407e-05,2.541098841762901e-21,-6.475006375694647e-05,-2.3310023607336916e-05,0.0,-0.0023434897884726524,8.741259080125019e-05,0.00011655011621769518,0.0008090394549071789,-5.970150221707335e-20,3.466441720777678e-21,-1.589319799677469e-05,-1.23454113102077e-34,-2.119093005603645e-05,-4.995004928787239e-05,5.5704098485875875e-05,-2.5709585315780714e-05,-6.584733138372017e-20,-5.970150221707335e-20,1.8363989511271939e-06,2.252887588650867e-21,1.881100801412217e-21,3.9033671637193536e-21,2.007899551770605e-21,3.3162516921012256e-21,9.469696669839323e-05,-1.3528138879337348e-05,-1.8939394067274407e-05,3.466441720777678e-21,2.252887588650867e-21,2.7056275939685293e-06,-2.4343394303165337e-22,1.9103160693995725e-21,-3.524808239112209e-22,3.9026412447299945e-36,8.741259080125019e-05,-1.2487512321968097e-05,2.541098841762901e-21,-1.589319799677469e-05,1.881100801412217e-21,-2.4343394303165337e-22,2.270456889164052e-06,3.963675617701965e-36,-3.1763735522036263e-22,1.0587911840678754e-21,9.712509927339852e-05,-6.419872164881077e-20,-6.475006375694647e-05,-1.23454113102077e-34,3.9033671637193536e-21,1.9103160693995725e-21,3.963675617701965e-36,6.475006557593588e-06,3.719746190610066e-36,7.009968438646628e-36,0.00011655011621769518,-2.48239971442718e-20,-2.3310023607336916e-05,-2.119093005603645e-05,2.007899551770605e-21,-3.524808239112209e-22,-3.1763735522036263e-22,3.719746190610066e-36,4.23818619310623e-06,-2.117582368135751e-22,8.325008093379438e-05,-5.251604272976662e-20,0.0,-4.995004928787239e-05,3.3162516921012256e-21,3.9026412447299945e-36,1.0587911840678754e-21,7.009968438646628e-36,-2.117582368135751e-22,4.540913778328104e-06,15.0,11.0,13.0,0.017627300694584846,-0.001781306928023696,-0.002340928418561816,-0.0020229769870638847,5.141917063156143e-05,8.741259080125019e-05,7.492507575079799e-05,8.965393499238417e-05,9.990009857574478e-05,6.660006329184398e-05,-0.001781306928023696,0.000483881012769416,8.741259080125019e-05,7.492507575079799e-05,-2.373192364757415e-05,-1.2487512321968097e-05,-1.0703582120186184e-05,-4.1882584256609166e-20,-2.1532916905561797e-20,-3.8963515573697816e-20,-0.002340928418561816,8.741259080125019e-05,0.0008865707204677165,9.990009857574478e-05,-5.981866459602324e-20,-1.7482518160250038e-05,3.3881317890172014e-21,-5.9769288782263175e-05,-1.9980019715148956e-05,-5.929230630780102e-21,-0.0020229769870638847,7.492507575079799e-05,9.990009857574478e-05,0.000639890437014401,-4.9773253990208564e-20,2.1953137177539023e-21,-1.2487512321968097e-05,-1.0715922444409872e-34,-1.6650015822960995e-05,-3.632731022662483e-05,5.141917063156143e-05,-2.373192364757415e-05,-5.981866459602324e-20,-4.9773253990208564e-20,1.6951374846030376e-06,1.9409494189937024e-21,1.4404485018752386e-21,3.6031082754014906e-21,1.700155850209809e-21,2.599676194218405e-21,8.741259080125019e-05,-1.2487512321968097e-05,-1.7482518160250038e-05,2.1953137177539023e-21,1.9409494189937024e-21,2.4975024643936194e-06,-2.235506597393471e-22,-1.7121863198023404e-21,-1.2609183001311413e-22,2.7976765549570443e-36,7.492507575079799e-05,-1.0703582120186184e-05,3.3881317890172014e-21,-1.2487512321968097e-05,1.4404485018752386e-21,-2.235506597393471e-22,1.7839303154687514e-06,3.3172764112328555e-36,-3.1763735522036263e-22,3.1763735522036263e-22,8.965393499238417e-05,-4.1882584256609166e-20,-5.9769288782263175e-05,-1.0715922444409872e-34,3.6031082754014906e-21,-1.7121863198023404e-21,3.3172764112328555e-36,5.976929060125258e-06,3.488114469157979e-36,5.541476883388745e-36,9.990009857574478e-05,-2.1532916905561797e-20,-1.9980019715148956e-05,-1.6650015822960995e-05,1.700155850209809e-21,-1.2609183001311413e-22,-3.1763735522036263e-22,3.488114469157979e-36,3.3300034374406096e-06,1.164670302474663e-21,6.660006329184398e-05,-3.8963515573697816e-20,-5.929230630780102e-21,-3.632731022662483e-05,2.599676194218405e-21,2.7976765549570443e-36,3.1763735522036263e-22,5.541476883388745e-36,1.164670302474663e-21,3.027275852218736e-06,15.0,11.0,14.0,0.016490347683429718,-0.0016587089048698545,-0.002179903443902731,-0.0017640693113207817,4.774637272930704e-05,8.116882963804528e-05,6.49350622552447e-05,8.325008093379438e-05,8.658008300699294e-05,5.411255551734939e-05,-0.0016587089048698545,0.0004499806964304298,8.116882963804528e-05,6.49350622552447e-05,-2.2036787413526326e-05,-1.159554722107714e-05,-9.276437594962772e-06,-4.004357757797052e-20,-1.420748294897461e-20,-2.0752307207730358e-20,-0.002179903443902731,8.116882963804528e-05,0.0008244810742326081,8.658008300699294e-05,-5.383410979943012e-20,-1.6233765563811176e-05,0.0,-5.550005516852252e-05,-1.7316016965196468e-05,4.235164736271502e-21,-0.0017640693113207817,6.49350622552447e-05,8.658008300699294e-05,0.0005149017670191824,-4.173527179056657e-20,3.7197071173642433e-22,-9.990009857574478e-06,-8.683612097983143e-35,-1.3320013749762438e-05,-2.7056277758674696e-05,4.774637272930704e-05,-2.2036787413526326e-05,-5.383410979943012e-20,-4.173527179056657e-20,1.5740562275823322e-06,1.5448372411510102e-21,9.87069515665217e-22,3.345743225488477e-21,1.471202616607627e-21,2.1119330638253118e-21,8.116882963804528e-05,-1.159554722107714e-05,-1.6233765563811176e-05,3.7197071173642433e-22,1.5448372411510102e-21,2.319109398740693e-06,4.530295650052194e-22,-1.3593658186962186e-21,-7.086354929649136e-22,1.86021981017627e-36,6.49350622552447e-05,-9.276437594962772e-06,0.0,-9.990009857574478e-06,9.87069515665217e-22,4.530295650052194e-22,1.4271442978497362e-06,1.724593311013395e-36,-4.764560328305439e-22,-1.2705494208814505e-21,8.325008093379438e-05,-4.004357757797052e-20,-5.550005516852252e-05,-8.683612097983143e-35,3.345743225488477e-21,-1.3593658186962186e-21,1.724593311013395e-36,5.550005425902782e-06,3.3634876024206685e-36,4.457425575471336e-36,8.658008300699294e-05,-1.420748294897461e-20,-1.7316016965196468e-05,-1.3320013749762438e-05,1.471202616607627e-21,-7.086354929649136e-22,-4.764560328305439e-22,3.3634876024206685e-36,2.6640027499524876e-06,-4.235164736271502e-22,5.411255551734939e-05,-2.0752307207730358e-20,4.235164736271502e-21,-2.7056277758674696e-05,2.1119330638253118e-21,1.86021981017627e-36,-1.2705494208814505e-21,4.457425575471336e-36,-4.235164736271502e-22,2.0812519778701244e-06,15.0,11.0,15.0,0.015491481870412827,-0.0015519162407144904,-0.0020396269392222166,-0.0015519162407144904,4.456327951629646e-05,7.575757626909763e-05,5.681818220182322e-05,7.770007505314425e-05,7.575757626909763e-05,4.456327951629646e-05,-0.0015519162407144904,0.0004205231089144945,7.575757626909763e-05,5.681818220182322e-05,-2.056766788882669e-05,-1.0822510375874117e-05,-8.116882781905588e-06,-3.8306336732895774e-20,-1.6562041253496867e-20,-3.3457801416544863e-20,-0.0020396269392222166,7.575757626909763e-05,0.000770525773987174,7.575757626909763e-05,-5.140191768636292e-20,-1.5151515071920585e-05,1.0587911840678754e-21,-5.18000524607487e-05,-1.5151515071920585e-05,-3.3881317890172014e-21,-0.0015519162407144904,5.681818220182322e-05,7.575757626909763e-05,0.0004205231089144945,-4.219537485042785e-20,3.940807991650532e-21,-8.116882781905588e-06,-8.881359175972741e-35,-1.0822510375874117e-05,-2.056766788882669e-05,4.456327951629646e-05,-2.056766788882669e-05,-5.140191768636292e-20,-4.219537485042785e-20,1.469119069952285e-06,1.5620020466550524e-21,1.5946751759799177e-21,3.122693852144518e-21,1.3201380504207592e-21,1.742839258390469e-21,7.575757626909763e-05,-1.0822510375874117e-05,-1.5151515071920585e-05,3.940807991650532e-21,1.5620020466550524e-21,2.1645021206495585e-06,-2.399465719854013e-22,-1.082275156697747e-21,-4.5223641269667395e-22,1.3870833339702993e-36,5.681818220182322e-05,-8.116882781905588e-06,1.0587911840678754e-21,-8.116882781905588e-06,1.5946751759799177e-21,-2.399465719854013e-22,1.1595546993703465e-06,3.404674746250307e-36,7.940933880509066e-23,1.376428539288238e-21,7.770007505314425e-05,-3.8306336732895774e-20,-5.18000524607487e-05,-8.881359175972741e-35,3.122693852144518e-21,-1.082275156697747e-21,3.404674746250307e-36,5.18000524607487e-06,2.8057236403078882e-36,3.6394464524597016e-36,7.575757626909763e-05,-1.6562041253496867e-20,-1.5151515071920585e-05,-1.0822510375874117e-05,1.3201380504207592e-21,-4.5223641269667395e-22,7.940933880509066e-23,2.8057236403078882e-36,2.1645021206495585e-06,4.235164736271502e-22,4.456327951629646e-05,-3.3457801416544863e-20,-3.3881317890172014e-21,-2.056766788882669e-05,1.742839258390469e-21,1.3870833339702993e-36,1.376428539288238e-21,3.6394464524597016e-36,4.235164736271502e-22,1.469119069952285e-06,15.0,11.0,16.0,0.014606935903429985,-0.0014580547576770186,-0.0019163282122462988,-0.0013758912682533264,4.177807568339631e-05,7.102272502379492e-05,5.013369082007557e-05,7.284382445504889e-05,6.68449210934341e-05,3.713606565725058e-05,-0.0014580547576770186,0.0003946880460716784,7.102272502379492e-05,5.013369082007557e-05,-1.9282188077340834e-05,-1.014610370475566e-05,-7.1619556365476456e-06,-3.667699449014518e-20,-1.4117247560785306e-20,-1.6093625997831706e-20,-0.0019163282122462988,7.102272502379492e-05,0.0007232034695334733,6.68449210934341e-05,-4.736136334506586e-20,-1.4204545550455805e-05,2.117582368135751e-21,-4.856254963669926e-05,-1.3368983672989998e-05,4.235164736271502e-22,-0.0013758912682533264,5.013369082007557e-05,6.68449210934341e-05,0.0003479119041003287,-3.579715219937579e-20,3.2151355265135452e-21,-6.684491836494999e-06,-7.583265585723237e-35,-8.912656085158233e-06,-1.591545697010588e-05,4.177807568339631e-05,-1.9282188077340834e-05,-4.736136334506586e-20,-3.579715219937579e-20,1.3772992133453954e-06,1.3517325733853594e-21,1.2320142346154517e-21,2.927525473763711e-21,1.149864153211908e-21,1.427419902356549e-21,7.102272502379492e-05,-1.014610370475566e-05,-1.4204545550455805e-05,3.2151355265135452e-21,1.3517325733853594e-21,2.029220695476397e-06,-2.6021918653342674e-22,-8.616722871454808e-22,-2.78720234058492e-22,1.3870833339702993e-36,5.013369082007557e-05,-7.1619556365476456e-06,2.117582368135751e-21,-6.684491836494999e-06,1.2320142346154517e-21,-2.6021918653342674e-22,9.549273727316177e-07,2.67191017472932e-36,-7.940933880509066e-23,-5.823351512373315e-22,7.284382445504889e-05,-3.667699449014518e-20,-4.856254963669926e-05,-7.583265585723237e-35,2.927525473763711e-21,-8.616722871454808e-22,2.67191017472932e-36,4.856254690821515e-06,2.3944715535119598e-36,3.010461551949551e-36,6.68449210934341e-05,-1.4117247560785306e-20,-1.3368983672989998e-05,-8.912656085158233e-06,1.149864153211908e-21,-2.78720234058492e-22,-7.940933880509066e-23,2.3944715535119598e-36,1.7825311715569114e-06,-1.5881867761018131e-22,3.713606565725058e-05,-1.6093625997831706e-20,4.235164736271502e-22,-1.591545697010588e-05,1.427419902356549e-21,1.3870833339702993e-36,-5.823351512373315e-22,3.010461551949551e-36,-1.5881867761018131e-22,1.0610305025693378e-06,15.0,12.0,3.0,0.053592003881931305,-0.006358408834785223,-0.0077380952425301075,-0.02267628163099289,0.00020424836839083582,0.00032051283051259816,0.0010416667209938169,0.0003052503161597997,0.0012820513220503926,0.0027777778450399637,-0.006358408834785223,0.0018196060555055737,0.00032051283051259816,0.0010416667209938169,-9.426847827853635e-05,-4.578754669637419e-05,-0.00014880952949170023,-1.2704444723412328e-19,-2.292959650645595e-19,-3.700314301688083e-18,-0.0077380952425301075,0.00032051283051259816,0.0028110777493566275,0.0012820513220503926,-1.9884641274071688e-19,-5.827505810884759e-05,7.741896776787761e-20,-0.00018315018678549677,-0.00023310023243539035,-6.3223941254199255e-18,-0.02267628163099289,0.0010416667209938169,0.0012820513220503926,0.05045406147837639,-8.056083625631041e-19,5.094683587131378e-20,-0.0010416667209938169,-1.4800728224750605e-18,-0.0012820513220503926,-0.01666666753590107,0.00020424836839083582,-9.426847827853635e-05,-1.9884641274071688e-19,-8.056083625631041e-19,6.7334626692172606e-06,6.540381394137543e-21,2.9510757258557506e-20,1.193389867939662e-20,2.1925777613323334e-20,2.3922065899972975e-19,0.00032051283051259816,-4.578754669637419e-05,-5.827505810884759e-05,5.094683587131378e-20,6.540381394137543e-21,8.325007911480498e-06,-3.600697415500939e-21,-6.997616786836166e-21,-4.680355522990172e-21,-2.2970818393716852e-35,0.0010416667209938169,-0.00014880952949170023,7.741896776787761e-20,-0.0010416667209938169,2.9510757258557506e-20,-3.600697415500939e-21,0.00014880952949170023,-3.8438437209138874e-23,-5.175864901904922e-20,3.512252566376256e-19,0.0003052503161597997,-1.2704444723412328e-19,-0.00018315018678549677,-1.4800728224750605e-18,1.193389867939662e-20,-6.997616786836166e-21,-3.8438437209138874e-23,1.6650015822960995e-05,5.4052184981937217e-20,5.915274025894801e-19,0.0012820513220503926,-2.292959650645595e-19,-0.00023310023243539035,-0.0012820513220503926,2.1925777613323334e-20,-4.680355522990172e-21,-5.175864901904922e-20,5.4052184981937217e-20,0.00023310023243539035,-1.8440729013965902e-19,0.0027777778450399637,-3.700314301688083e-18,-6.3223941254199255e-18,-0.01666666753590107,2.3922065899972975e-19,-2.2970818393716852e-35,3.512252566376256e-19,5.915274025894801e-19,-1.8440729013965902e-19,0.008333333767950535,15.0,12.0,4.0,0.0434565544128418,-0.0049250563606619835,-0.005995878949761391,-0.01443910226225853,0.00015318627993110567,0.000240384615608491,0.0006249999860301614,0.00022893772984389216,0.0007692307699471712,0.0013888889225199819,-0.0049250563606619835,0.0013870259281247854,0.000240384615608491,0.0006249999860301614,-7.070136052789167e-05,-3.4340660931775346e-05,-8.928571332944557e-05,-1.467129539689531e-19,-1.770098526956885e-19,-1.3196957365908292e-18,-0.005995878949761391,0.000240384615608491,0.002143273362889886,0.0007692307699471712,-1.4494157253656494e-19,-4.3706295400625095e-05,-4.1509516106824947e-20,-0.00013736264372710139,-0.0001398601452820003,-2.217596362409231e-18,-0.01443910226225853,0.0006249999860301614,0.0007692307699471712,0.01934828981757164,-4.423468783804019e-19,-1.6902863899675723e-20,-0.00041666667675599456,-7.9869669985855245e-19,-0.0005128204938955605,-0.004166666883975267,0.00015318627993110567,-7.070136052789167e-05,-1.4494157253656494e-19,-4.423468783804019e-19,5.050097115599783e-06,3.465590306358117e-21,1.6972563559806118e-20,9.3187946377915e-21,1.3155869010749053e-20,8.3727228064966e-20,0.000240384615608491,-3.4340660931775346e-05,-4.3706295400625095e-05,-1.6902863899675723e-20,3.465590306358117e-21,6.243756160984049e-06,4.621018642633347e-21,3.919766988715498e-21,-2.8080487662445162e-21,1.3289419369695644e-34,0.0006249999860301614,-8.928571332944557e-05,-4.1509516106824947e-20,-0.00041666667675599456,1.6972563559806118e-20,4.621018642633347e-21,5.952380888629705e-05,6.686697421571764e-23,5.580075190061412e-21,9.834307004907758e-20,0.00022893772984389216,-1.467129539689531e-19,-0.00013736264372710139,-7.9869669985855245e-19,9.3187946377915e-21,3.919766988715498e-21,6.686697421571764e-23,1.2487512321968097e-05,3.220451939095046e-20,2.0703459607619688e-19,0.0007692307699471712,-1.770098526956885e-19,-0.0001398601452820003,-0.0005128204938955605,1.3155869010749053e-20,-2.8080487662445162e-21,5.580075190061412e-21,3.220451939095046e-20,9.324009442934766e-05,-3.985607253521094e-20,0.0013888889225199819,-1.3196957365908292e-18,-2.217596362409231e-18,-0.004166666883975267,8.3727228064966e-20,1.3289419369695644e-34,9.834307004907758e-20,2.0703459607619688e-19,-3.985607253521094e-20,0.0013888889225199819,15.0,12.0,5.0,0.03661109134554863,-0.00402337871491909,-0.004899267572909594,-0.01002289354801178,0.00012254902685526758,0.0001923076924867928,0.00041666667675599456,0.00018315018678549677,0.0005128204938955605,0.0007936508045531809,-0.00402337871491909,0.0011215255362913013,0.0001923076924867928,0.00041666667675599456,-5.656108623952605e-05,-2.7472528017824516e-05,-5.952380888629705e-05,-7.962109704190423e-20,-1.1350241493207625e-19,-6.54409621056973e-19,-0.004899267572909594,0.0001923076924867928,0.0017332667484879494,0.0005128204938955605,-1.3385985971958617e-19,-3.4965036320500076e-05,-5.140654068894656e-21,-0.00010989011207129806,-9.324009442934766e-05,6.376047231299223e-19,-0.01002289354801178,0.00041666667675599456,0.0005128204938955605,0.00977335125207901,-2.7097384796895596e-19,1.843017050581106e-20,-0.00020833333837799728,2.981555974335137e-19,-0.00025641024694778025,-0.0015873016091063619,0.00012254902685526758,-5.656108623952605e-05,-1.3385985971958617e-19,-2.7097384796895596e-19,4.040077783429297e-06,4.943149349569848e-21,8.348388186851055e-21,7.396649037449173e-21,8.752125834991525e-21,4.100925278198936e-20,0.0001923076924867928,-2.7472528017824516e-05,-3.4965036320500076e-05,1.843017050581106e-20,4.943149349569848e-21,4.995004928787239e-06,-2.3334278384496826e-22,-3.8116482626443515e-21,-2.752857078576476e-21,7.037069380548777e-35,0.00041666667675599456,-5.952380888629705e-05,-5.140654068894656e-21,-0.00020833333837799728,8.348388186851055e-21,-2.3334278384496826e-22,2.9761904443148524e-05,-6.78371847767181e-23,3.0477568624228256e-21,4.014002812986391e-20,0.00018315018678549677,-7.962109704190423e-20,-0.00010989011207129806,2.981555974335137e-19,7.396649037449173e-21,-3.8116482626443515e-21,-6.78371847767181e-23,9.990009857574478e-06,-1.5246593050577406e-20,-5.0702349070341807e-20,0.0005128204938955605,-1.1350241493207625e-19,-9.324009442934766e-05,-0.00025641024694778025,8.752125834991525e-21,-2.752857078576476e-21,3.0477568624228256e-21,-1.5246593050577406e-20,4.662004721467383e-05,-3.9939446524842606e-20,0.0007936508045531809,-6.54409621056973e-19,6.376047231299223e-19,-0.0015873016091063619,4.100925278198936e-20,7.037069380548777e-35,4.014002812986391e-20,-5.0702349070341807e-20,-3.9939446524842606e-20,0.00039682540227659047,15.0,12.0,6.0,0.031655203551054,-0.003402418689802289,-0.00414377311244607,-0.007371794898062944,0.00010212418419541791,0.00016025641525629908,0.00029761905898340046,0.00015262515807989985,0.00036630037357099354,0.0004960317746736109,-0.003402418689802289,0.000941690756008029,0.00016025641525629908,0.00029761905898340046,-4.7134239139268175e-05,-2.2893773348187096e-05,-4.251700738677755e-05,-5.929230630780102e-20,-8.978549240895584e-20,-2.861384208919199e-19,-0.00414377311244607,0.00016025641525629908,0.001455488963983953,0.00036630037357099354,-1.0335661174176148e-19,-2.9137529054423794e-05,2.9253165622548964e-21,-9.157509339274839e-05,-6.660006329184398e-05,-5.929064677669709e-19,-0.007371794898062944,0.00029761905898340046,0.00036630037357099354,0.005676892586052418,-1.9898400906573625e-19,8.597084400100385e-21,-0.0001190476177725941,-3.5914196963582334e-19,-0.00014652014942839742,-0.0007440476329065859,0.00010212418419541791,-4.7134239139268175e-05,-1.0335661174176148e-19,-1.9898400906573625e-19,3.3667313346086303e-06,3.315993804004978e-21,7.018275299517251e-21,5.8510947785333026e-21,6.1429736163876646e-21,2.3494884305373876e-20,0.00016025641525629908,-2.2893773348187096e-05,-2.9137529054423794e-05,8.597084400100385e-21,3.315993804004978e-21,4.162503955740249e-06,-9.128971025546393e-22,-3.8116482626443515e-21,-2.117582368135751e-22,-2.2881497252998592e-36,0.00029761905898340046,-4.251700738677755e-05,2.9253165622548964e-21,-0.0001190476177725941,7.018275299517251e-21,-9.128971025546393e-22,1.70068033185089e-05,-1.1624819644582564e-22,1.868912004280564e-21,-1.7115990538791705e-20,0.00015262515807989985,-5.929230630780102e-20,-9.157509339274839e-05,-3.5914196963582334e-19,5.8510947785333026e-21,-3.8116482626443515e-21,-1.1624819644582564e-22,8.325007911480498e-06,1.2705494208814505e-20,5.809644224894516e-20,0.00036630037357099354,-8.978549240895584e-20,-6.660006329184398e-05,-0.00014652014942839742,6.1429736163876646e-21,-2.117582368135751e-22,1.868912004280564e-21,1.2705494208814505e-20,2.6640027499524876e-05,-1.8461764927801464e-20,0.0004960317746736109,-2.861384208919199e-19,-5.929064677669709e-19,-0.0007440476329065859,2.3494884305373876e-20,-2.2881497252998592e-36,-1.7115990538791705e-20,5.809644224894516e-20,-1.8461764927801464e-20,0.00014880952949170023,15.0,12.0,7.0,0.027893342077732086,-0.0029482466634362936,-0.0035910517908632755,-0.005652854219079018,8.753501606406644e-05,0.00013736264372710139,0.00022321428696159273,0.00013082155783195049,0.00027472528745420277,0.0003306878206785768,-0.0029482466634362936,0.0008117189281620085,0.00013736264372710139,0.00022321428696159273,-4.0400776924798265e-05,-1.9623234038590454e-05,-3.188775372109376e-05,-6.437450399132683e-20,-4.658681209898652e-20,-1.7855898103724133e-19,-0.0035910517908632755,0.00013736264372710139,0.001254697679542005,0.00027472528745420277,-8.86715321554398e-20,-2.4975024643936194e-05,1.9084612542008287e-20,-7.849293615436181e-05,-4.995004928787239e-05,2.3385179153516604e-19,-0.005652854219079018,0.00022321428696159273,0.00027472528745420277,0.0036038614343851805,-1.414471868129259e-19,1.4946101921609046e-20,-7.440476474585012e-05,1.4230153513872246e-19,-9.157509339274839e-05,-0.00039682540227659047,8.753501606406644e-05,-4.0400776924798265e-05,-8.86715321554398e-20,-1.414471868129259e-19,2.885769617932965e-06,2.431373010390315e-21,3.891503099601613e-21,5.196562673353361e-21,4.75012869233516e-21,1.480889656867608e-20,0.00013736264372710139,-1.9623234038590454e-05,-2.4975024643936194e-05,1.4946101921609046e-20,2.431373010390315e-21,3.5678606309375027e-06,-7.974108952561592e-22,-1.4823076576950256e-21,-1.4823076576950256e-21,1.989315406505925e-35,0.00022321428696159273,-3.188775372109376e-05,1.9084612542008287e-20,-7.440476474585012e-05,3.891503099601613e-21,-7.974108952561592e-22,1.0629251846694387e-05,-3.3114806234811254e-23,-3.970672119820537e-21,-9.588526603317678e-21,0.00013082155783195049,-6.437450399132683e-20,-7.849293615436181e-05,1.4230153513872246e-19,5.196562673353361e-21,-1.4823076576950256e-21,-3.3114806234811254e-23,7.1357212618750054e-06,-6.776263578034403e-21,-1.8309182416528108e-20,0.00027472528745420277,-4.658681209898652e-20,-4.995004928787239e-05,-9.157509339274839e-05,4.75012869233516e-21,-1.4823076576950256e-21,-3.970672119820537e-21,-6.776263578034403e-21,1.6650015822960995e-05,-1.0816933433811539e-20,0.0003306878206785768,-1.7855898103724133e-19,2.3385179153516604e-19,-0.00039682540227659047,1.480889656867608e-20,1.989315406505925e-35,-9.588526603317678e-21,-1.8309182416528108e-20,-1.0816933433811539e-20,6.613756704609841e-05,15.0,12.0,8.0,0.024936966598033905,-0.0026014172472059727,-0.0031688797753304243,-0.0044738249853253365,7.659313996555284e-05,0.0001201923078042455,0.00017361111531499773,0.00011446886492194608,0.0002136752154910937,0.00023148147738538682,-0.0026014172472059727,0.0007133542676456273,0.0001201923078042455,0.00017361111531499773,-3.535068026394583e-05,-1.7170330465887673e-05,-2.4801587642286904e-05,-7.369186641112413e-20,-4.573977915173222e-20,-2.0085938261075882e-19,-0.0031688797753304243,0.0001201923078042455,0.0011027167784050107,0.0002136752154910937,-7.51789238949928e-20,-2.1853147700312547e-05,-6.111282259169227e-21,-6.868132186355069e-05,-3.885003752657212e-05,-2.416376807496097e-19,-0.0044738249853253365,0.00017361111531499773,0.0002136752154910937,0.0024356429930776358,-1.1888300509688348e-19,-6.2799410741151645e-21,-4.960317528457381e-05,-2.1514636860259229e-19,-6.105006468715146e-05,-0.00023148147738538682,7.659313996555284e-05,-3.535068026394583e-05,-7.51789238949928e-20,-1.1888300509688348e-19,2.5250485577998916e-06,1.6731600960218341e-21,3.990911791537161e-21,4.588236360202748e-21,3.659214789284097e-21,9.96752718905755e-21,0.0001201923078042455,-1.7170330465887673e-05,-2.1853147700312547e-05,-6.2799410741151645e-21,1.6731600960218341e-21,3.1218780804920243e-06,1.2619263255284945e-21,1.9058241313221758e-21,-4.235164736271502e-22,1.7737040286261932e-35,0.00017361111531499773,-2.4801587642286904e-05,-6.111282259169227e-21,-4.960317528457381e-05,3.990911791537161e-21,1.2619263255284945e-21,7.086167897796258e-06,3.150020991021558e-24,-8.214369983436476e-22,1.751828789100231e-20,0.00011446886492194608,-7.369186641112413e-20,-6.868132186355069e-05,-2.1514636860259229e-19,4.588236360202748e-21,1.9058241313221758e-21,3.150020991021558e-24,6.243756160984049e-06,7.623296525288703e-21,2.464697564642405e-20,0.0002136752154910937,-4.573977915173222e-20,-3.885003752657212e-05,-6.105006468715146e-05,3.659214789284097e-21,-4.235164736271502e-22,-8.214369983436476e-22,7.623296525288703e-21,1.1100010851805564e-05,-8.422588872736476e-21,0.00023148147738538682,-2.0085938261075882e-19,-2.416376807496097e-19,-0.00023148147738538682,9.96752718905755e-21,1.7737040286261932e-35,1.751828789100231e-20,2.464697564642405e-20,-8.422588872736476e-21,3.3068783523049206e-05,15.0,12.0,9.0,0.02255077287554741,-0.002327802823856473,-0.0028357752598822117,-0.0036295647732913494,6.808278703829274e-05,0.00010683760774554685,0.00013888889225199819,0.0001017501053865999,0.0001709401694824919,0.00016835016140248626,-0.002327802823856473,0.0006362972781062126,0.00010683760774554685,0.00013888889225199819,-3.142282730550505e-05,-1.5262516171787865e-05,-1.984126902243588e-05,-4.319868030996932e-20,-2.795208725939191e-20,-1.1513046147394546e-19,-0.0028357752598822117,0.00010683760774554685,0.0009836460230872035,0.0001709401694824919,-7.678892109740216e-20,-1.942501876328606e-05,6.218287845705121e-21,-6.105006468715146e-05,-3.108003147644922e-05,7.959939647552179e-20,-0.0036295647732913494,0.00013888889225199819,0.0001709401694824919,0.001725092064589262,-8.905789658733595e-20,5.784951833478171e-21,-3.4722223062999547e-05,8.978549240895584e-20,-4.273504237062298e-05,-0.00014430013834498823,6.808278703829274e-05,-3.142282730550505e-05,-7.678892109740216e-20,-8.905789658733595e-20,2.2444876321969787e-06,2.953270056690682e-21,2.341501735151311e-21,4.022346674298093e-21,2.969352620763408e-21,7.041992926436362e-21,0.00010683760774554685,-1.5262516171787865e-05,-1.942501876328606e-05,5.784951833478171e-21,2.953270056690682e-21,2.775002712951391e-06,4.490102871386821e-23,-2.541098841762901e-21,-1.2705494208814505e-21,1.2370803824895384e-35,0.00013888889225199819,-1.984126902243588e-05,6.218287845705121e-21,-3.4722223062999547e-05,2.341501735151311e-21,4.490102871386821e-23,4.96031725560897e-06,3.009265538105056e-36,-1.6331487679864368e-21,4.1356393181655304e-21,0.0001017501053865999,-4.319868030996932e-20,-6.105006468715146e-05,8.978549240895584e-20,4.022346674298093e-21,-2.541098841762901e-21,3.009265538105056e-36,5.550005425902782e-06,-3.8116482626443515e-21,-8.706464495826317e-21,0.0001709401694824919,-2.795208725939191e-20,-3.108003147644922e-05,-4.273504237062298e-05,2.969352620763408e-21,-1.2705494208814505e-21,-1.6331487679864368e-21,-3.8116482626443515e-21,7.770007869112305e-06,4.042926831003184e-21,0.00016835016140248626,-1.1513046147394546e-19,7.959939647552179e-20,-0.00014430013834498823,7.041992926436362e-21,1.2370803824895384e-35,4.1356393181655304e-21,-8.706464495826317e-21,4.042926831003184e-21,1.803751729312353e-05,15.0,12.0,10.0,0.02058347687125206,-0.002106386236846447,-0.002566183917224407,-0.003004079218953848,6.127451342763379e-05,9.61538462433964e-05,0.00011363636440364644,9.157509339274839e-05,0.0001398601452820003,0.00012626263196580112,-0.002106386236846447,0.0005742909270338714,9.61538462433964e-05,0.00011363636440364644,-2.8280543119763024e-05,-1.3736264008912258e-05,-1.6233765563811176e-05,-3.9810548520952116e-20,-1.6093625997831706e-20,-4.455799978150963e-20,-0.002566183917224407,9.61538462433964e-05,0.0008878242806531489,0.0001398601452820003,-6.734238279272734e-20,-1.7482518160250038e-05,1.6405020724366708e-20,-5.494505603564903e-05,-2.5429117158637382e-05,8.259086284907713e-20,-0.003004079218953848,0.00011363636440364644,0.0001398601452820003,0.0012673205928876996,-8.518917932477398e-20,3.913025547502547e-21,-2.5252526029362343e-05,5.929230630780102e-20,-3.108003147644922e-05,-9.469696669839323e-05,6.127451342763379e-05,-2.8280543119763024e-05,-6.734238279272734e-20,-8.518917932477398e-20,2.0200388917146483e-06,2.3804884780212328e-21,3.631109227709334e-21,3.619558183598785e-21,2.415726048998565e-21,5.164991273479614e-21,9.61538462433964e-05,-1.3736264008912258e-05,-1.7482518160250038e-05,3.913025547502547e-21,2.3804884780212328e-21,2.4975024643936194e-06,-1.590795823105305e-22,-1.9058241313221758e-21,-5.293955920339377e-22,8.9831444741676e-36,0.00011363636440364644,-1.6233765563811176e-05,1.6405020724366708e-20,-2.5252526029362343e-05,3.631109227709334e-21,-1.590795823105305e-22,3.607503685998381e-06,1.1096666671762394e-35,-3.398103192807587e-21,-6.167084234877095e-21,9.157509339274839e-05,-3.9810548520952116e-20,-5.494505603564903e-05,5.929230630780102e-20,3.619558183598785e-21,-1.9058241313221758e-21,1.1096666671762394e-35,4.995004928787239e-06,-2.117582368135751e-22,-6.385807267824881e-21,0.0001398601452820003,-1.6093625997831706e-20,-2.5429117158637382e-05,-3.108003147644922e-05,2.415726048998565e-21,-5.293955920339377e-22,-3.398103192807587e-21,-2.117582368135751e-22,5.65091477255919e-06,-2.74377404576134e-21,0.00012626263196580112,-4.455799978150963e-20,8.259086284907713e-20,-9.469696669839323e-05,5.164991273479614e-21,8.9831444741676e-36,-6.167084234877095e-21,-6.385807267824881e-21,-2.74377404576134e-21,1.0521885087655392e-05,15.0,12.0,11.0,0.018933210521936417,-0.001923505449667573,-0.0023434897884726524,-0.0025276807136833668,5.5704098485875875e-05,8.741259080125019e-05,9.469696669839323e-05,8.325008093379438e-05,0.00011655011621769518,9.712509927339852e-05,-0.001923505449667573,0.0005233124829828739,8.741259080125019e-05,9.469696669839323e-05,-2.5709585315780714e-05,-1.2487512321968097e-05,-1.3528138879337348e-05,-5.421010862427522e-20,-2.1175823681357508e-20,-6.419872164881077e-20,-0.0023434897884726524,8.741259080125019e-05,0.0008090394549071789,0.00011655011621769518,-5.917648163499799e-20,-1.589319799677469e-05,7.142592306089588e-21,-4.995004928787239e-05,-2.119093005603645e-05,6.258964209989346e-20,-0.0025276807136833668,9.469696669839323e-05,0.00011655011621769518,0.000958786578848958,-6.56811197793853e-20,3.7275504899767045e-21,-1.8939394067274407e-05,7.369186641112413e-20,-2.3310023607336916e-05,-6.475006375694647e-05,5.5704098485875875e-05,-2.5709585315780714e-05,-5.917648163499799e-20,-6.56811197793853e-20,1.8363989511271939e-06,1.905678930428517e-21,2.253707297172926e-21,3.2706129711558926e-21,1.9766355173490816e-21,3.9033671637193536e-21,8.741259080125019e-05,-1.2487512321968097e-05,-1.589319799677469e-05,3.7275504899767045e-21,1.905678930428517e-21,2.270456889164052e-06,-3.145256081827406e-22,1.2705494208814505e-21,-3.1763735522036263e-22,2.766060571108825e-36,9.469696669839323e-05,-1.3528138879337348e-05,7.142592306089588e-21,-1.8939394067274407e-05,2.253707297172926e-21,-3.145256081827406e-22,2.7056275939685293e-06,3.385423730368188e-36,-9.88182655200469e-22,1.9103160693995725e-21,8.325008093379438e-05,-5.421010862427522e-20,-4.995004928787239e-05,7.369186641112413e-20,3.2706129711558926e-21,1.2705494208814505e-21,3.385423730368188e-36,4.540913778328104e-06,-4.658681209898652e-21,-4.825981316064986e-21,0.00011655011621769518,-2.1175823681357508e-20,-2.119093005603645e-05,-2.3310023607336916e-05,1.9766355173490816e-21,-3.1763735522036263e-22,-9.88182655200469e-22,-4.658681209898652e-21,4.23818619310623e-06,-1.900770170870576e-21,9.712509927339852e-05,-6.419872164881077e-20,6.258964209989346e-20,-6.475006375694647e-05,3.9033671637193536e-21,2.766060571108825e-36,1.9103160693995725e-21,-4.825981316064986e-21,-1.900770170870576e-21,6.475006557593588e-06,15.0,12.0,12.0,0.01752878539264202,-0.0017698906594887376,-0.002156417351216078,-0.002156417351216078,5.1062092097708955e-05,8.012820762814954e-05,8.012820762814954e-05,7.631257903994992e-05,9.86193263088353e-05,7.631257903994992e-05,-0.0017698906594887376,0.00048065700684674084,8.012820762814954e-05,8.012820762814954e-05,-2.3567119569634087e-05,-1.1446886674093548e-05,-1.1446886674093548e-05,-3.3034284942917713e-20,-2.2472779873942434e-20,-3.3034284942917713e-20,-0.002156417351216078,8.012820762814954e-05,0.0007431137491948903,9.86193263088353e-05,-5.430122127627823e-20,-1.4568764527211897e-05,3.8116482626443515e-21,-4.578754669637419e-05,-1.793078627088107e-05,-6.860966872759833e-20,-0.002156417351216078,8.012820762814954e-05,9.86193263088353e-05,0.0007431137491948903,-5.373518093687334e-20,2.5919894325837355e-21,-1.4568764527211897e-05,-9.965162454169672e-20,-1.793078627088107e-05,-4.578754669637419e-05,5.1062092097708955e-05,-2.3567119569634087e-05,-5.430122127627823e-20,-5.373518093687334e-20,1.6833656673043151e-06,1.6449712307354796e-21,1.6081284729664292e-21,3.0409037437492448e-21,1.6947983613254293e-21,3.0148970318098e-21,8.012820762814954e-05,-1.1446886674093548e-05,-1.4568764527211897e-05,2.5919894325837355e-21,1.6449712307354796e-21,2.0812519778701244e-06,-3.3536615209542723e-22,-1.7999450129153882e-21,-9.603239250475059e-24,-5.027825884240107e-24,8.012820762814954e-05,-1.1446886674093548e-05,3.8116482626443515e-21,-1.4568764527211897e-05,1.6081284729664292e-21,-3.3536615209542723e-22,2.0812519778701244e-06,0.0,-2.6469779601696886e-22,-1.7999450129153882e-21,7.631257903994992e-05,-3.3034284942917713e-20,-4.578754669637419e-05,-9.965162454169672e-20,3.0409037437492448e-21,-1.7999450129153882e-21,0.0,4.162503955740249e-06,2.964615315390051e-21,7.517417406881916e-21,9.86193263088353e-05,-2.2472779873942434e-20,-1.793078627088107e-05,-1.793078627088107e-05,1.6947983613254293e-21,-9.603239250475059e-24,-2.6469779601696886e-22,2.964615315390051e-21,3.260143103034352e-06,-2.541098841762901e-21,7.631257903994992e-05,-3.3034284942917713e-20,-6.860966872759833e-20,-4.578754669637419e-05,3.0148970318098e-21,-5.027825884240107e-24,-1.7999450129153882e-21,7.517417406881916e-21,-2.541098841762901e-21,4.162503955740249e-06,15.0,12.0,13.0,0.0163189098238945,-0.0016390284290537238,-0.001997041516005993,-0.001861439784988761,4.7134239139268175e-05,7.396449655061588e-05,6.868132186355069e-05,7.044238009257242e-05,8.453085320070386e-05,6.105006468715146e-05,-0.0016390284290537238,0.000444438133854419,7.396449655061588e-05,6.868132186355069e-05,-2.1754263798356988e-05,-1.0566356650087982e-05,-9.811617019295227e-06,-4.997494388800372e-20,-1.4851436593498607e-20,-3.6422416731934915e-20,-0.001997041516005993,7.396449655061588e-05,0.0006871334044262767,8.453085320070386e-05,-4.978628854720481e-20,-1.3448090612655506e-05,3.8116482626443515e-21,-4.226542660035193e-05,-1.536924537504092e-05,2.879912020664621e-20,-0.001861439784988761,6.868132186355069e-05,8.453085320070386e-05,0.0005877402727492154,-4.517539963590097e-20,4.770821940139624e-21,-1.1446886674093548e-05,4.8142645127145e-20,-1.4088475836615544e-05,-3.330003164592199e-05,4.7134239139268175e-05,-2.1754263798356988e-05,-4.978628854720481e-20,-4.517539963590097e-20,1.5538760180788813e-06,1.511204150146025e-21,1.222399673633265e-21,2.7842626788206067e-21,1.431053862691653e-21,2.3952365671213634e-21,7.396449655061588e-05,-1.0566356650087982e-05,-1.3448090612655506e-05,4.770821940139624e-21,1.511204150146025e-21,1.921155671880115e-06,-2.715879974639823e-22,2.117582368135751e-21,-5.378758593868381e-22,3.88677132256548e-23,6.868132186355069e-05,-9.811617019295227e-06,3.8116482626443515e-21,-1.1446886674093548e-05,1.222399673633265e-21,-2.715879974639823e-22,1.6352695411114837e-06,1.3234889800848443e-23,-4.235164736271502e-22,3.1763735522036263e-22,7.044238009257242e-05,-4.997494388800372e-20,-4.226542660035193e-05,4.8142645127145e-20,2.7842626788206067e-21,2.117582368135751e-21,1.3234889800848443e-23,3.84231134376023e-06,-2.4352197233561135e-21,-2.9116757561866574e-21,8.453085320070386e-05,-1.4851436593498607e-20,-1.536924537504092e-05,-1.4088475836615544e-05,1.431053862691653e-21,-5.378758593868381e-22,-4.235164736271502e-22,-2.4352197233561135e-21,2.5615411232138285e-06,3.1763735522036263e-22,6.105006468715146e-05,-3.6422416731934915e-20,2.879912020664621e-20,-3.330003164592199e-05,2.3952365671213634e-21,3.88677132256548e-23,3.1763735522036263e-22,-2.9116757561866574e-21,3.1763735522036263e-22,2.775002712951391e-06,15.0,12.0,14.0,0.015265670605003834,-0.0015262066153809428,-0.0018596284789964557,-0.0016231684712693095,4.376750803203322e-05,6.868132186355069e-05,5.952380888629705e-05,6.541077891597524e-05,7.326007471419871e-05,4.960317528457381e-05,-0.0015262066153809428,0.0004132999456487596,6.868132186355069e-05,5.952380888629705e-05,-2.0200388462399133e-05,-9.811617019295227e-06,-8.50340165925445e-06,-3.2610768469290563e-20,-1.830984319166587e-20,-3.218725199566341e-20,-0.0018596284789964557,6.868132186355069e-05,0.0006390038761310279,7.326007471419871e-05,-4.5806457663922235e-20,-1.2487512321968097e-05,-1.2705494208814505e-21,-3.924646807718091e-05,-1.3320013749762438e-05,2.456395547037471e-20,-0.0016231684712693095,5.952380888629705e-05,7.326007471419871e-05,0.0004729325301013887,-4.4304662794218197e-20,3.628132508415137e-21,-9.157509339274839e-06,3.254730497549699e-20,-1.1270780305494554e-05,-2.4801587642286904e-05,4.376750803203322e-05,-2.0200388462399133e-05,-4.5806457663922235e-20,-4.4304662794218197e-20,1.4428848089664825e-06,1.3062890355606398e-21,1.798651937363099e-21,2.591848674554695e-21,1.2540899201355482e-21,1.9099087394934398e-21,6.868132186355069e-05,-9.811617019295227e-06,-1.2487512321968097e-05,3.628132508415137e-21,1.3062890355606398e-21,1.7839303154687514e-06,-2.3899726308294557e-22,-7.411538288475128e-22,-3.5116232810512174e-22,1.5067610898903158e-23,5.952380888629705e-05,-8.50340165925445e-06,-1.2705494208814505e-21,-9.157509339274839e-06,1.798651937363099e-21,-2.3899726308294557e-22,1.3082155874144519e-06,-3.970466940254533e-23,5.029258124322408e-22,9.529120656610879e-22,6.541077891597524e-05,-3.2610768469290563e-20,-3.924646807718091e-05,3.254730497549699e-20,2.591848674554695e-21,-7.411538288475128e-22,-3.970466940254533e-23,3.5678606309375027e-06,-1.0587911840678754e-22,-2.3822801641527197e-21,7.326007471419871e-05,-1.830984319166587e-20,-1.3320013749762438e-05,-1.1270780305494554e-05,1.2540899201355482e-21,-3.5116232810512174e-22,5.029258124322408e-22,-1.0587911840678754e-22,2.0492327621468576e-06,2.117582368135751e-22,4.960317528457381e-05,-3.218725199566341e-20,2.456395547037471e-20,-2.4801587642286904e-05,1.9099087394934398e-21,1.5067610898903158e-23,9.529120656610879e-22,-2.3822801641527197e-21,2.117582368135751e-22,1.907814521473483e-06,15.0,12.0,15.0,0.014340431429445744,-0.0014279317110776901,-0.0017399267526343465,-0.0014279317110776901,4.0849674405762926e-05,6.410256173694506e-05,5.208333459449932e-05,6.105006468715146e-05,6.410256173694506e-05,4.0849674405762926e-05,-0.0014279317110776901,0.0003862426383420825,6.410256173694506e-05,5.208333459449932e-05,-1.885369601950515e-05,-9.157509339274839e-06,-7.440476110787131e-06,6.098637220230962e-20,2.7371584183964414e-20,4.0657581468206416e-20,-0.0017399267526343465,6.410256173694506e-05,0.0005971806240268052,6.410256173694506e-05,8.382904882849245e-20,-1.1655011803668458e-05,2.117582368135751e-22,-3.6630037357099354e-05,-1.1655011803668458e-05,1.6517142471458857e-20,-0.0014279317110776901,5.208333459449932e-05,6.410256173694506e-05,0.0003862426383420825,6.561413107446557e-20,3.2277764860942964e-22,-7.440476110787131e-06,4.08656981716202e-20,-9.157509339274839e-06,-1.885369601950515e-05,4.0849674405762926e-05,-1.885369601950515e-05,8.382904882849245e-20,6.561413107446557e-20,1.3466925565808197e-06,-2.082766061503581e-21,-1.3338133896639851e-21,-4.88232007059809e-21,-2.2151004192278605e-21,-3.148864546178053e-21,6.410256173694506e-05,-9.157509339274839e-06,-1.1655011803668458e-05,3.2277764860942964e-22,-2.082766061503581e-21,1.6650017187203048e-06,-3.006942133198002e-22,1.164670302474663e-21,3.364543257607508e-22,-4.3437095355838886e-24,5.208333459449932e-05,-7.440476110787131e-06,2.117582368135751e-22,-7.440476110787131e-06,-1.3338133896639851e-21,-3.006942133198002e-22,1.0629252074068063e-06,0.0,2.3822801641527197e-22,5.293955920339377e-22,6.105006468715146e-05,6.098637220230962e-20,-3.6630037357099354e-05,4.08656981716202e-20,-4.88232007059809e-21,1.164670302474663e-21,0.0,3.3300034374406096e-06,-2.4352197233561135e-21,-1.9322939109238726e-21,6.410256173694506e-05,2.7371584183964414e-20,-1.1655011803668458e-05,-9.157509339274839e-06,-2.2151004192278605e-21,3.364543257607508e-22,2.3822801641527197e-22,-2.4352197233561135e-21,1.6650017187203048e-06,6.352747104407253e-22,4.0849674405762926e-05,4.0657581468206416e-20,1.6517142471458857e-20,-1.885369601950515e-05,-3.148864546178053e-21,-4.3437095355838886e-24,5.293955920339377e-22,-1.9322939109238726e-21,6.352747104407253e-22,1.3466925565808197e-06,15.0,12.0,16.0,0.013521147891879082,-0.0013415582943707705,-0.0016347164055332541,-0.0012659471249207854,3.829656998277642e-05,6.009615390212275e-05,4.595588325173594e-05,5.723443246097304e-05,5.656108623952605e-05,3.404139351914637e-05,-0.0013415582943707705,0.0003625128010753542,6.009615390212275e-05,4.595588325173594e-05,-1.7675340131972916e-05,-8.585165232943837e-06,-6.565126113855513e-06,-3.737629814987634e-20,-1.0001922231344558e-20,-1.4399560103323106e-20,-0.0016347164055332541,6.009615390212275e-05,0.0005604995531029999,5.656108623952605e-05,-3.835166041435e-20,-1.0926573850156274e-05,8.470329472543003e-22,-3.4340660931775346e-05,-1.0283833944413345e-05,-3.176373552203626e-20,-0.0012659471249207854,4.595588325173594e-05,5.656108623952605e-05,0.00031954768928699195,-3.259897145203888e-20,-1.9567549098729658e-21,-6.127450888016028e-06,-5.911813955241886e-20,-7.54147822590312e-06,-1.4589169040846173e-05,3.829656998277642e-05,-1.7675340131972916e-05,-3.835166041435e-20,-3.259897145203888e-20,1.2625242788999458e-06,8.664952186369338e-22,1.0964298204487597e-21,2.267338611666753e-21,9.793959816502063e-22,1.3021941280213972e-21,6.009615390212275e-05,-8.585165232943837e-06,-1.0926573850156274e-05,-1.9567549098729658e-21,8.664952186369338e-22,1.5609390402460122e-06,3.2529013903812236e-22,1.0242832526298875e-21,-5.823200177297257e-23,1.8220162437745456e-36,4.595588325173594e-05,-6.565126113855513e-06,8.470329472543003e-22,-6.127450888016028e-06,1.0964298204487597e-21,3.2529013903812236e-22,8.753501674618747e-07,-1.88079096131566e-37,-4.235164736271502e-22,-4.764560328305439e-22,5.723443246097304e-05,-3.737629814987634e-20,-3.4340660931775346e-05,-5.911813955241886e-20,2.267338611666753e-21,1.0242832526298875e-21,-1.88079096131566e-37,3.1218780804920243e-06,1.9933330142746454e-21,3.21032047100937e-21,5.656108623952605e-05,-1.0001922231344558e-20,-1.0283833944413345e-05,-7.54147822590312e-06,9.793959816502063e-22,-5.823200177297257e-23,-4.235164736271502e-22,1.9933330142746454e-21,1.3711778592551127e-06,-4.764560328305439e-22,3.404139351914637e-05,-1.4399560103323106e-20,-3.176373552203626e-20,-1.4589169040846173e-05,1.3021941280213972e-21,1.8220162437745456e-36,-4.764560328305439e-22,3.21032047100937e-21,-4.764560328305439e-22,9.726112466523773e-07,15.0,13.0,3.0,0.049964986741542816,-0.005890433210879564,-0.006684981752187014,-0.02101648412644863,0.0001885369565570727,0.00027472528745420277,0.000961538462433964,0.00024420025874860585,0.001098901149816811,0.0025641026441007853,-0.005890433210879564,0.0016826553037390113,0.00027472528745420277,0.000961538462433964,-8.701705519342795e-05,-3.924646807718091e-05,-0.00013736264372710139,-1.4708774433462206e-19,-2.231462132523516e-19,-3.4156748354636858e-18,-0.006684981752187014,0.00027472528745420277,0.002224164782091975,0.001098901149816811,-1.737060545550605e-19,-4.578754669637419e-05,6.265086638991945e-20,-0.00013320012658368796,-0.00018315018678549677,-6.060752629239741e-33,-0.02101648412644863,0.000961538462433964,0.001098901149816811,0.0466575101017952,-7.326065715780024e-19,3.005383041126698e-20,-0.000961538462433964,-1.9033512732653614e-21,-0.001098901149816811,-0.015384615398943424,0.0001885369565570727,-8.701705519342795e-05,-1.737060545550605e-19,-7.326065715780024e-19,6.215504072315525e-06,5.1688925125111815e-21,2.5441466468909895e-20,9.685070051471267e-21,1.8813030729213802e-20,2.208190698459044e-19,0.00027472528745420277,-3.924646807718091e-05,-4.578754669637419e-05,3.005383041126698e-20,5.1688925125111815e-21,6.541078164445935e-06,-3.721012208845841e-21,1.2540413515473356e-21,-6.677912287877988e-22,1.9005369705220705e-34,0.000961538462433964,-0.00013736264372710139,6.265086638991945e-20,-0.000961538462433964,2.5441466468909895e-20,-3.721012208845841e-21,0.00013736264372710139,-3.829247585356764e-23,-3.610917377371874e-20,3.242079351692069e-19,0.00024420025874860585,-1.4708774433462206e-19,-0.00013320012658368796,-1.9033512732653614e-21,9.685070051471267e-21,1.2540413515473356e-21,-3.829247585356764e-23,1.1100010851805564e-05,3.6189977263246184e-22,3.461470179260476e-34,0.001098901149816811,-2.231462132523516e-19,-0.00018315018678549677,-0.001098901149816811,1.8813030729213802e-20,-6.677912287877988e-22,-3.610917377371874e-20,3.6189977263246184e-22,0.00018315018678549677,5.706233451265324e-34,0.0025641026441007853,-3.4156748354636858e-18,-6.060752629239741e-33,-0.015384615398943424,2.208190698459044e-19,1.9005369705220705e-34,3.242079351692069e-19,3.461470179260476e-34,5.706233451265324e-34,0.007692307699471712,15.0,13.0,4.0,0.04049800708889961,-0.004562055692076683,-0.005178571213036776,-0.013379121199250221,0.00014140272105578333,0.00020604395831469446,0.0005769230774603784,0.00018315018678549677,0.0006593406433239579,0.0012820513220503926,-0.004562055692076683,0.001282595912925899,0.00020604395831469446,0.0005769230774603784,-6.526279321406037e-05,-2.943485014839098e-05,-8.241758041549474e-05,-1.0297532671581428e-19,-1.603137677932797e-19,-1.2181807196982949e-18,-0.005178571213036776,0.00020604395831469446,0.0016955960309132934,0.0006593406433239579,-1.4279775303337478e-19,-3.4340660931775346e-05,-6.310776574049423e-21,-9.990009857574478e-05,-0.00010989011207129806,-2.342273145717197e-33,-0.013379121199250221,0.0005769230774603784,0.0006593406433239579,0.017893772572278976,-4.1030011784190174e-19,6.152294342459875e-21,-0.0003846153849735856,4.5686231323972914e-21,-0.00043956044828519225,-0.003846153849735856,0.00014140272105578333,-6.526279321406037e-05,-1.4279775303337478e-19,-4.1030011784190174e-19,4.6616278268629685e-06,5.3621740870679935e-21,1.575076124951561e-20,7.253852137445805e-21,1.1364127949299572e-20,7.728667056865741e-20,0.00020604395831469446,-2.943485014839098e-05,-3.4340660931775346e-05,6.152294342459875e-21,5.3621740870679935e-21,4.905808509647613e-06,-5.857510577964578e-23,5.2522520628328355e-22,-9.570447375495852e-22,9.246877078062268e-35,0.0005769230774603784,-8.241758041549474e-05,-6.310776574049423e-21,-0.0003846153849735856,1.575076124951561e-20,-5.857510577964578e-23,5.494505603564903e-05,-1.7753784833098382e-23,4.6334146388149215e-21,9.077821900394457e-20,0.00018315018678549677,-1.0297532671581428e-19,-9.990009857574478e-05,4.5686231323972914e-21,7.253852137445805e-21,5.2522520628328355e-22,-1.7753784833098382e-23,8.325007911480498e-06,-7.407244360795829e-22,1.1743228742744221e-34,0.0006593406433239579,-1.603137677932797e-19,-0.00010989011207129806,-0.00043956044828519225,1.1364127949299572e-20,-9.570447375495852e-22,4.6334146388149215e-21,-7.407244360795829e-22,7.326007471419871e-05,1.9141155373952507e-34,0.0012820513220503926,-1.2181807196982949e-18,-2.342273145717197e-33,-0.003846153849735856,7.728667056865741e-20,9.246877078062268e-35,9.077821900394457e-20,1.1743228742744221e-34,1.9141155373952507e-34,0.0012820513220503926,15.0,13.0,5.0,0.03410902991890907,-0.003726567607372999,-0.0042307693511247635,-0.009285714477300644,0.0001131221724790521,0.00016483516083098948,0.0003846153849735856,0.00014652014942839742,0.00043956044828519225,0.0007326007471419871,-0.003726567607372999,0.0010370657546445727,0.00016483516083098948,0.0003846153849735856,-5.221023457124829e-05,-2.3547880118712783e-05,-5.494505603564903e-05,-1.2197274440461925e-19,-7.623296525288703e-20,-4.576316251367333e-19,-0.0042307693511247635,0.00016483516083098948,0.0013711288338527083,0.00043956044828519225,-1.101874369284817e-19,-2.7472528017824516e-05,2.962908932259234e-20,-7.992007886059582e-05,-7.326007471419871e-05,-1.1416166954670853e-33,-0.009285714477300644,0.0003846153849735856,0.00043956044828519225,0.009038461372256279,-2.4059137482291254e-19,1.2631756388642945e-20,-0.0001923076924867928,6.776263578034403e-21,-0.00021978022414259613,-0.0014652014942839742,0.0001131221724790521,-5.221023457124829e-05,-1.101874369284817e-19,-2.4059137482291254e-19,3.72930230696511e-06,3.3579819038728888e-21,6.183433976672088e-21,5.845230601134056e-21,7.658298220544487e-21,3.785469611844182e-20,0.00016483516083098948,-2.3547880118712783e-05,-2.7472528017824516e-05,1.2631756388642945e-20,3.3579819038728888e-21,3.924646989617031e-06,-9.835367314743731e-22,6.988021814847978e-21,-1.2705494208814505e-21,3.5930310707859e-35,0.0003846153849735856,-5.494505603564903e-05,2.962908932259234e-20,-0.0001923076924867928,6.183433976672088e-21,-9.835367314743731e-22,2.7472528017824516e-05,2.6414570382384088e-23,-1.1772165482596897e-20,-3.616706026072611e-20,0.00014652014942839742,-1.2197274440461925e-19,-7.992007886059582e-05,6.776263578034403e-21,5.845230601134056e-21,6.988021814847978e-21,2.6414570382384088e-23,6.660006874881219e-06,-8.470329472543003e-22,5.89051698634068e-35,0.00043956044828519225,-7.623296525288703e-20,-7.326007471419871e-05,-0.00021978022414259613,7.658298220544487e-21,-1.2705494208814505e-21,-1.1772165482596897e-20,-8.470329472543003e-22,3.6630037357099354e-05,9.130697139816495e-35,0.0007326007471419871,-4.576316251367333e-19,-1.1416166954670853e-33,-0.0014652014942839742,3.785469611844182e-20,3.5930310707859e-35,-3.616706026072611e-20,5.89051698634068e-35,9.130697139816495e-35,0.00036630037357099354,15.0,13.0,6.0,0.029486024752259254,-0.0031512605492025614,-0.0035779697354882956,-0.006828885525465012,9.426847827853635e-05,0.00013736264372710139,0.00027472528745420277,0.00012210012937430292,0.00031397174461744726,0.0004578754596877843,-0.0031512605492025614,0.0008707625092938542,0.00013736264372710139,0.00027472528745420277,-4.3508527596713975e-05,-1.9623234038590454e-05,-3.924646807718091e-05,-6.776263578034403e-20,-6.522153693858113e-20,-2.706652062028971e-19,-0.0035779697354882956,0.00013736264372710139,0.0011513287900015712,0.00031397174461744726,-8.835211765437215e-20,-2.2893773348187096e-05,5.832759480150755e-21,-6.660006329184398e-05,-5.232862531556748e-05,-6.107749719905081e-34,-0.006828885525465012,0.00027472528745420277,0.00031397174461744726,0.005249869078397751,-1.810874653746628e-19,2.33287680206799e-20,-0.00010989011207129806,6.776263578034403e-21,-0.000125588703667745,-0.0006868132040835917,9.426847827853635e-05,-4.3508527596713975e-05,-8.835211765437215e-20,-1.810874653746628e-19,3.1077520361577626e-06,2.4412846374567464e-21,5.803496754291341e-21,4.816132292999993e-21,5.417873472992859e-21,2.1687586755412142e-20,0.00013736264372710139,-1.9623234038590454e-05,-2.2893773348187096e-05,2.33287680206799e-20,2.4412846374567464e-21,3.2705390822229674e-06,-1.274012734825537e-21,2.117582368135751e-22,-2.329340604949326e-21,1.8685530204948312e-35,0.00027472528745420277,-3.924646807718091e-05,5.832759480150755e-21,-0.00010989011207129806,5.803496754291341e-21,-1.274012734825537e-21,1.5698587958468124e-05,9.175634041356388e-24,1.5043617347372063e-21,-1.3184397856152896e-20,0.00012210012937430292,-6.776263578034403e-20,-6.660006329184398e-05,6.776263578034403e-21,4.816132292999993e-21,2.117582368135751e-22,9.175634041356388e-24,5.550005425902782e-06,-8.470329472543003e-22,3.2708936742080787e-35,0.00031397174461744726,-6.522153693858113e-20,-5.232862531556748e-05,-0.000125588703667745,5.417873472992859e-21,-2.329340604949326e-21,1.5043617347372063e-21,-8.470329472543003e-22,2.093144939863123e-05,3.5224460214529423e-35,0.0004578754596877843,-2.706652062028971e-19,-6.107749719905081e-34,-0.0006868132040835917,2.1687586755412142e-20,1.8685530204948312e-35,-1.3184397856152896e-20,3.2708936742080787e-35,3.5224460214529423e-35,0.00013736264372710139,15.0,13.0,7.0,0.025978147983551025,-0.002730515319854021,-0.0031004708725959063,-0.005236133001744747,8.080155384959653e-05,0.00011773940059356391,0.00020604395831469446,0.00010465725063113496,0.00023547880118712783,0.0003052503161597997,-0.002730515319854021,0.0007505728281103075,0.00011773940059356391,0.00020604395831469446,-3.729302261490375e-05,-1.681991489022039e-05,-2.943485014839098e-05,-6.098637220230962e-20,-5.675120746603812e-20,-1.691819711404607e-19,-0.0031004708725959063,0.00011773940059356391,0.0009924599435180426,0.00023547880118712783,-8.451208675695957e-20,-1.9623234038590454e-05,-4.565735674292242e-21,-5.7085770095000044e-05,-3.924646807718091e-05,-4.448753420425471e-34,-0.005236133001744747,0.00020604395831469446,0.00023547880118712783,0.003332679159939289,-1.4825391390195697e-19,2.5935815937041866e-21,-6.868132186355069e-05,0.0,-7.849293615436181e-05,-0.00036630037357099354,8.080155384959653e-05,-3.729302261490375e-05,-8.451208675695957e-20,-1.4825391390195697e-19,2.663787427081843e-06,3.428427359413968e-21,6.108250609912477e-21,4.103734299548635e-21,3.963906848697362e-21,1.3669750927329787e-20,0.00011773940059356391,-1.681991489022039e-05,-1.9623234038590454e-05,2.5935815937041866e-21,3.428427359413968e-21,2.803319148370065e-06,2.4244785427835262e-22,4.235164736271502e-22,-4.235164736271502e-22,1.858661476600839e-35,0.00020604395831469446,-2.943485014839098e-05,-4.565735674292242e-21,-6.868132186355069e-05,6.108250609912477e-21,2.4244785427835262e-22,9.811617019295227e-06,8.927889749716833e-23,1.065907441495889e-21,-7.39818142184567e-21,0.00010465725063113496,-6.098637220230962e-20,-5.7085770095000044e-05,0.0,4.103734299548635e-21,4.235164736271502e-22,8.927889749716833e-23,4.75714750791667e-06,4.235164736271502e-22,2.1332026879144146e-35,0.00023547880118712783,-5.675120746603812e-20,-3.924646807718091e-05,-7.849293615436181e-05,3.963906848697362e-21,-4.235164736271502e-22,1.065907441495889e-21,4.235164736271502e-22,1.308215632889187e-05,1.9500687897579936e-35,0.0003052503161597997,-1.691819711404607e-19,-4.448753420425471e-34,-0.00036630037357099354,1.3669750927329787e-20,1.858661476600839e-35,-7.39818142184567e-21,2.1332026879144146e-35,1.9500687897579936e-35,6.105006468715146e-05,15.0,13.0,8.0,0.023222140967845917,-0.0024092330131679773,-0.002735805930569768,-0.00414377311244607,7.070136052789167e-05,0.00010302197915734723,0.00016025641525629908,9.157509339274839e-05,0.00018315018678549677,0.0002136752154910937,-0.0024092330131679773,0.0006596129387617111,0.00010302197915734723,0.00016025641525629908,-3.263139660703018e-05,-1.471742507419549e-05,-2.2893773348187096e-05,-5.505714157152952e-20,-2.752857078576476e-20,-1.091471539106197e-19,-0.002735805930569768,0.00010302197915734723,0.0008722180500626564,0.00018315018678549677,-7.589519121962983e-20,-1.7170330465887673e-05,1.0090365933402376e-20,-4.995004928787239e-05,-3.052503234357573e-05,-3.0810216622055832e-34,-0.00414377311244607,0.00016025641525629908,0.00018315018678549677,0.002252311212942004,-1.0719319174505606e-19,9.58934328261386e-21,-4.578754669637419e-05,1.6940658945086007e-21,-5.232862531556748e-05,-0.0002136752154910937,7.070136052789167e-05,-3.263139660703018e-05,-7.589519121962983e-20,-1.0719319174505606e-19,2.3308139134314843e-06,2.7931090281206276e-21,3.3838706779515595e-21,3.77700038097089e-21,3.221160858729398e-21,9.200793769119116e-21,0.00010302197915734723,-1.471742507419549e-05,-1.7170330465887673e-05,9.58934328261386e-21,2.7931090281206276e-21,2.4529042548238067e-06,-1.830681987278028e-22,4.235164736271502e-22,-1.2705494208814505e-21,1.232211953249463e-35,0.00016025641525629908,-2.2893773348187096e-05,1.0090365933402376e-20,-4.578754669637419e-05,3.3838706779515595e-21,-1.830681987278028e-22,6.541078164445935e-06,8.82746207668368e-23,-2.574121644728058e-21,-5.61827534394552e-21,9.157509339274839e-05,-5.505714157152952e-20,-4.995004928787239e-05,1.6940658945086007e-21,3.77700038097089e-21,4.235164736271502e-22,8.82746207668368e-23,4.162503955740249e-06,-4.235164736271502e-22,1.4233640946712157e-35,0.00018315018678549677,-2.752857078576476e-20,-3.052503234357573e-05,-5.232862531556748e-05,3.221160858729398e-21,-1.2705494208814505e-21,-2.574121644728058e-21,-4.235164736271502e-22,8.72143755259458e-06,1.4562135081539664e-35,0.0002136752154910937,-1.091471539106197e-19,-3.0810216622055832e-34,-0.0002136752154910937,9.200793769119116e-21,1.232211953249463e-35,-5.61827534394552e-21,1.4233640946712157e-35,1.4562135081539664e-35,3.052503234357573e-05,15.0,13.0,9.0,0.0209981519728899,-0.002155785448849201,-0.002448107348755002,-0.0033616384025663137,6.28456546110101e-05,9.157509339274839e-05,0.00012820512347389013,8.140008139889687e-05,0.00014652014942839742,0.0001554001501062885,-0.002155785448849201,0.0005883576232008636,9.157509339274839e-05,0.00012820512347389013,-2.9005685064475983e-05,-1.308215632889187e-05,-1.8315018678549677e-05,1.6686549060909717e-19,1.5966571055743561e-19,1.0507233296621278e-19,-0.002448107348755002,9.157509339274839e-05,0.0007780182640999556,0.00014652014942839742,1.8803734640845383e-19,-1.5262516171787865e-05,9.073113433251441e-20,-4.4400043407222256e-05,-2.44200236920733e-05,-2.8198039074776897e-19,-0.0033616384025663137,0.00012820512347389013,0.00014652014942839742,0.0015952104004099965,1.1318006006242492e-19,-3.761560860967132e-20,-3.205128086847253e-05,-1.7787691892340307e-19,-3.6630037357099354e-05,-0.00013320012658368796,6.28456546110101e-05,-2.9005685064475983e-05,1.8803734640845383e-19,1.1318006006242492e-19,2.0718346149806166e-06,-3.613294956177467e-21,-2.4568881799442732e-21,-1.0079805648101687e-20,-7.680312210830908e-21,-5.4726802470262496e-21,9.157509339274839e-05,-1.308215632889187e-05,-1.5262516171787865e-05,-3.761560860967132e-20,-3.613294956177467e-21,2.180359388148645e-06,-1.0916570731326532e-21,-1.5881867761018131e-21,-8.470329472543003e-22,6.337793633792726e-21,0.00012820512347389013,-1.8315018678549677e-05,9.073113433251441e-20,-3.205128086847253e-05,-2.4568881799442732e-21,-1.0916570731326532e-21,4.578754669637419e-06,-2.9840445682106357e-21,-1.0077356418006705e-20,-1.477187054274153e-20,8.140008139889687e-05,1.6686549060909717e-19,-4.4400043407222256e-05,-1.7787691892340307e-19,-1.0079805648101687e-20,-1.5881867761018131e-21,-2.9840445682106357e-21,3.7000036172685213e-06,5.293955920339377e-21,1.920543584140358e-20,0.00014652014942839742,1.5966571055743561e-19,-2.44200236920733e-05,-3.6630037357099354e-05,-7.680312210830908e-21,-8.470329472543003e-22,-1.0077356418006705e-20,5.293955920339377e-21,6.105005923018325e-06,1.787652818207166e-21,0.0001554001501062885,1.0507233296621278e-19,-2.8198039074776897e-19,-0.00013320012658368796,-5.4726802470262496e-21,6.337793633792726e-21,-1.477187054274153e-20,1.920543584140358e-20,1.787652818207166e-21,1.6650015822960995e-05,15.0,13.0,10.0,0.019164903089404106,-0.0019506963435560465,-0.0022152846213430166,-0.0027822176925837994,5.656108623952605e-05,8.241758041549474e-05,0.00010489510168554261,7.326007471419871e-05,0.00011988011829089373,0.00011655011621769518,-0.0019506963435560465,0.0005310203414410353,8.241758041549474e-05,0.00010489510168554261,-2.6105117285624146e-05,-1.1773940059356391e-05,-1.4985014786361717e-05,-6.098637220230962e-20,-2.1175823681357508e-20,-6.12587020319471e-20,-0.0022152846213430166,8.241758041549474e-05,0.000702214427292347,0.00011988011829089373,-5.613762685963131e-20,-1.3736264008912258e-05,8.518755081294301e-21,-3.996003943029791e-05,-1.9980019715148956e-05,-1.4482974318781103e-34,-0.0027822176925837994,0.00010489510168554261,0.00011988011829089373,0.001171883661299944,-7.593233033666375e-20,3.6345972803314084e-21,-2.3310023607336916e-05,8.470329472543003e-22,-2.6640027499524876e-05,-8.741259080125019e-05,5.656108623952605e-05,-2.6105117285624146e-05,-5.613762685963131e-20,-7.593233033666375e-20,1.864651153482555e-06,1.7314834983747292e-21,2.947176667866814e-21,2.8917161868893726e-21,2.0654895785389086e-21,4.767684066028821e-21,8.241758041549474e-05,-1.1773940059356391e-05,-1.3736264008912258e-05,3.6345972803314084e-21,1.7314834983747292e-21,1.9623234948085155e-06,-3.619271871266401e-22,3.282252670610414e-21,-2.6469779601696886e-22,4.496935286566464e-36,0.00010489510168554261,-1.4985014786361717e-05,8.518755081294301e-21,-2.3310023607336916e-05,2.947176667866814e-21,-3.619271871266401e-22,3.3300034374406096e-06,3.949661018762886e-36,-1.3300589671132104e-21,-1.2197505146304645e-21,7.326007471419871e-05,-6.098637220230962e-20,-3.996003943029791e-05,8.470329472543003e-22,2.8917161868893726e-21,3.282252670610414e-21,3.949661018762886e-36,3.3300034374406096e-06,0.0,7.33256142538117e-36,0.00011988011829089373,-2.1175823681357508e-20,-1.9980019715148956e-05,-2.6640027499524876e-05,2.0654895785389086e-21,-2.6469779601696886e-22,-1.3300589671132104e-21,0.0,4.440004431671696e-06,5.6356584894876475e-36,0.00011655011621769518,-6.12587020319471e-20,-1.4482974318781103e-34,-8.741259080125019e-05,4.767684066028821e-21,4.496935286566464e-36,-1.2197505146304645e-21,7.33256142538117e-36,5.6356584894876475e-36,9.71250938164303e-06,15.0,13.0,11.0,0.017627300694584846,-0.001781306928023696,-0.0020229769870638847,-0.002340928418561816,5.141917063156143e-05,7.492507575079799e-05,8.741259080125019e-05,6.660006329184398e-05,9.990009857574478e-05,8.965393499238417e-05,-0.001781306928023696,0.000483881012769416,7.492507575079799e-05,8.741259080125019e-05,-2.373192364757415e-05,-1.0703582120186184e-05,-1.2487512321968097e-05,-3.8963515573697816e-20,-2.202285662861181e-20,-4.1882584256609166e-20,-0.0020229769870638847,7.492507575079799e-05,0.000639890437014401,9.990009857574478e-05,-5.043309208743299e-20,-1.2487512321968097e-05,8.788458774045636e-22,-3.632731022662483e-05,-1.6650015822960995e-05,-1.0708156605266012e-34,-0.002340928418561816,8.741259080125019e-05,9.990009857574478e-05,0.0008865707204677165,-5.991143160925136e-20,6.129013731860482e-21,-1.7482518160250038e-05,-8.470329472543003e-22,-1.9980019715148956e-05,-5.9769288782263175e-05,5.141917063156143e-05,-2.373192364757415e-05,-5.043309208743299e-20,-5.991143160925136e-20,1.6951374846030376e-06,1.4731911014468612e-21,1.9329779101266844e-21,2.623430979641595e-21,1.724917550314198e-21,3.6031082754014906e-21,7.492507575079799e-05,-1.0703582120186184e-05,-1.2487512321968097e-05,6.129013731860482e-21,1.4731911014468612e-21,1.7839303154687514e-06,-3.3898451191726945e-22,4.235164736271502e-22,-5.823351512373315e-22,3.3964131389201564e-36,8.741259080125019e-05,-1.2487512321968097e-05,8.788458774045636e-22,-1.7482518160250038e-05,1.9329779101266844e-21,-3.3898451191726945e-22,2.4975024643936194e-06,2.7859216114488214e-36,2.988091513006841e-22,-1.7121863198023404e-21,6.660006329184398e-05,-3.8963515573697816e-20,-3.632731022662483e-05,-8.470329472543003e-22,2.623430979641595e-21,4.235164736271502e-22,2.7859216114488214e-36,3.027275852218736e-06,0.0,5.541476883388745e-36,9.990009857574478e-05,-2.202285662861181e-20,-1.6650015822960995e-05,-1.9980019715148956e-05,1.724917550314198e-21,-5.823351512373315e-22,2.988091513006841e-22,0.0,3.3300034374406096e-06,3.361789721938966e-36,8.965393499238417e-05,-4.1882584256609166e-20,-1.0708156605266012e-34,-5.9769288782263175e-05,3.6031082754014906e-21,3.3964131389201564e-36,-1.7121863198023404e-21,5.541476883388745e-36,3.361789721938966e-36,5.976929060125258e-06,15.0,13.0,12.0,0.0163189098238945,-0.0016390284290537238,-0.001861439784988761,-0.001997041516005993,4.7134239139268175e-05,6.868132186355069e-05,7.396449655061588e-05,6.105006468715146e-05,8.453085320070386e-05,7.044238009257242e-05,-0.0016390284290537238,0.000444438133854419,6.868132186355069e-05,7.396449655061588e-05,-2.1754263798356988e-05,-9.811617019295227e-06,-1.0566356650087982e-05,-3.6845933205562065e-20,-9.798342904396314e-21,-4.997494388800372e-20,-0.001861439784988761,6.868132186355069e-05,0.0005877402727492154,8.453085320070386e-05,-4.524903486628953e-20,-1.1446886674093548e-05,9.952637130238029e-21,-3.330003164592199e-05,-1.4088475836615544e-05,1.1858461261560205e-20,-0.001997041516005993,7.396449655061588e-05,8.453085320070386e-05,0.0006871334044262767,-4.9482674488306635e-20,4.4082631846613765e-21,-1.3448090612655506e-05,1.95256910662478e-23,-1.536924537504092e-05,-4.226542660035193e-05,4.7134239139268175e-05,-2.1754263798356988e-05,-4.524903486628953e-20,-4.9482674488306635e-20,1.5538760180788813e-06,1.2505034176725025e-21,1.4684507668476285e-21,2.3782050475558673e-21,1.4486716384383603e-21,2.774974668387858e-21,6.868132186355069e-05,-9.811617019295227e-06,-1.1446886674093548e-05,4.4082631846613765e-21,1.2505034176725025e-21,1.6352695411114837e-06,-2.847987796755672e-22,4.235164736271502e-22,-4.162378244486314e-22,-5.7389563801651665e-24,7.396449655061588e-05,-1.0566356650087982e-05,9.952637130238029e-21,-1.3448090612655506e-05,1.4684507668476285e-21,-2.847987796755672e-22,1.921155671880115e-06,-1.3234889800848443e-23,-1.4823076576950256e-21,2.117582368135751e-21,6.105006468715146e-05,-3.6845933205562065e-20,-3.330003164592199e-05,1.95256910662478e-23,2.3782050475558673e-21,4.235164736271502e-22,-1.3234889800848443e-23,2.775002712951391e-06,1.0587911840678754e-22,-1.0587911840678754e-22,8.453085320070386e-05,-9.798342904396314e-21,-1.4088475836615544e-05,-1.536924537504092e-05,1.4486716384383603e-21,-4.162378244486314e-22,-1.4823076576950256e-21,1.0587911840678754e-22,2.5615411232138285e-06,-2.117582368135751e-21,7.044238009257242e-05,-4.997494388800372e-20,1.1858461261560205e-20,-4.226542660035193e-05,2.774974668387858e-21,-5.7389563801651665e-24,2.117582368135751e-21,-1.0587911840678754e-22,-2.117582368135751e-21,3.84231134376023e-06,15.0,13.0,13.0,0.015191875398159027,-0.0015178261091932654,-0.0017238255823031068,-0.0017238255823031068,4.3508527596713975e-05,6.33981399005279e-05,6.33981399005279e-05,5.6353903346462175e-05,7.245501910801977e-05,5.6353903346462175e-05,-0.0015178261091932654,0.00041094725020229816,6.33981399005279e-05,6.33981399005279e-05,-2.0080859030713327e-05,-9.056877388502471e-06,-9.056877388502471e-06,-1.9058241313221758e-20,-1.1951733953561228e-20,-2.0752307207730358e-20,-0.0017238255823031068,6.33981399005279e-05,0.0005434583872556686,7.245501910801977e-05,-4.050373233662009e-20,-1.0566356650087982e-05,3.1763735522036263e-21,-3.073849075008184e-05,-1.2075835911673494e-05,5.082197683525802e-21,-0.0017238255823031068,6.33981399005279e-05,7.245501910801977e-05,0.0005434583872556686,-4.0579736017746934e-20,-9.645658005288348e-22,-1.0566356650087982e-05,-4.7071863484509704e-23,-1.2075835911673494e-05,-3.073849075008184e-05,4.3508527596713975e-05,-2.0080859030713327e-05,-4.050373233662009e-20,-4.0579736017746934e-20,1.4343470411404269e-06,9.840140364982425e-22,9.681889566249807e-22,2.1873797712877473e-21,1.2306882414753093e-21,2.2018400839296533e-21,6.33981399005279e-05,-9.056877388502471e-06,-1.0566356650087982e-05,-9.645658005288348e-22,9.840140364982425e-22,1.5094794889591867e-06,2.073510539518353e-22,-1.7999450129153882e-21,-1.1091590062331508e-22,8.712077285343176e-24,6.33981399005279e-05,-9.056877388502471e-06,3.1763735522036263e-21,-1.0566356650087982e-05,9.681889566249807e-22,2.073510539518353e-22,1.5094794889591867e-06,-1.3234889800848443e-23,-7.411538288475128e-22,-1.9058241313221758e-21,5.6353903346462175e-05,-1.9058241313221758e-20,-3.073849075008184e-05,-4.7071863484509704e-23,2.1873797712877473e-21,-1.7999450129153882e-21,-1.3234889800848443e-23,2.5615411232138285e-06,1.0587911840678754e-22,-5.293955920339377e-23,7.245501910801977e-05,-1.1951733953561228e-20,-1.2075835911673494e-05,-1.2075835911673494e-05,1.2306882414753093e-21,-1.1091590062331508e-22,-7.411538288475128e-22,1.0587911840678754e-22,2.0126394701946992e-06,-8.470329472543003e-22,5.6353903346462175e-05,-2.0752307207730358e-20,5.082197683525802e-21,-3.073849075008184e-05,2.2018400839296533e-21,8.712077285343176e-24,-1.9058241313221758e-21,-5.293955920339377e-23,-8.470329472543003e-22,2.5615411232138285e-06,15.0,13.0,14.0,0.014210837893188,-0.0014133345102891326,-0.0016051805578172207,-0.0015031397342681885,4.0400776924798265e-05,5.886970029678196e-05,5.494505603564903e-05,5.232862531556748e-05,6.27943518338725e-05,4.578754669637419e-05,-0.0014133345102891326,0.00038215453969314694,5.886970029678196e-05,5.494505603564903e-05,-1.8646511307451874e-05,-8.409957445110194e-06,-7.849293979234062e-06,-2.964615315390051e-20,-1.68724698589258e-20,-3.091670257478196e-20,-0.0016051805578172207,5.886970029678196e-05,0.0005053874920122325,6.27943518338725e-05,-4.392670587776682e-20,-9.811617019295227e-06,-2.541098841762901e-21,-2.8542885047500022e-05,-1.0465724699315615e-05,-3.3881317890172014e-21,-0.0015031397342681885,5.494505603564903e-05,6.27943518338725e-05,0.0004372962284833193,-4.0547740930147324e-20,6.91470182589892e-22,-8.453085683868267e-06,-6.405602552105488e-22,-9.660669093136676e-06,-2.2893773348187096e-05,4.0400776924798265e-05,-1.8646511307451874e-05,-4.392670587776682e-20,-4.0547740930147324e-20,1.3318937135409215e-06,1.7053885349880955e-21,1.4746327100412728e-21,2.0706552164511385e-21,1.0954980305692871e-21,1.8162434598188806e-21,5.886970029678196e-05,-8.409957445110194e-06,-9.811617019295227e-06,6.91470182589892e-22,1.7053885349880955e-21,1.4016595741850324e-06,9.794702891920345e-24,2.117582368135751e-22,-1.2115494914162379e-22,-6.720081226219812e-24,5.494505603564903e-05,-7.849293979234062e-06,-2.541098841762901e-21,-8.453085683868267e-06,1.4746327100412728e-21,9.794702891920345e-24,1.2075836366420845e-06,0.0,3.441071348220595e-22,8.999725064576941e-22,5.232862531556748e-05,-2.964615315390051e-20,-2.8542885047500022e-05,-6.405602552105488e-22,2.0706552164511385e-21,2.117582368135751e-22,0.0,2.378573753958335e-06,2.117582368135751e-22,-2.6469779601696886e-23,6.27943518338725e-05,-1.68724698589258e-20,-1.0465724699315615e-05,-9.660669093136676e-06,1.0954980305692871e-21,-1.2115494914162379e-22,3.441071348220595e-22,2.117582368135751e-22,1.6101115534183918e-06,5.293955920339377e-22,4.578754669637419e-05,-3.091670257478196e-20,-3.3881317890172014e-21,-2.2893773348187096e-05,1.8162434598188806e-21,-6.720081226219812e-24,8.999725064576941e-22,-2.6469779601696886e-23,5.293955920339377e-22,1.761059479576943e-06,15.0,13.0,15.0,0.01334908977150917,-0.0013223174028098583,-0.0015018314588814974,-0.0013223174028098583,3.77073920390103e-05,5.494505603564903e-05,4.80769231216982e-05,4.88400473841466e-05,5.494505603564903e-05,3.77073920390103e-05,-0.0013223174028098583,0.00035713546094484627,5.494505603564903e-05,4.80769231216982e-05,-1.740341031108983e-05,-7.849293979234062e-06,-6.868132004456129e-06,-2.668153783851046e-20,-8.839916032053684e-21,-2.286988957586611e-20,-0.0015018314588814974,5.494505603564903e-05,0.0004723054589703679,5.494505603564903e-05,-3.916666919343628e-20,-9.157509339274839e-06,2.117582368135751e-21,-2.6640027499524876e-05,-9.157509339274839e-06,3.3881317890172014e-21,-0.0013223174028098583,4.80769231216982e-05,5.494505603564903e-05,0.00035713546094484627,-3.3581707256191625e-20,-2.117777046385385e-21,-6.868132004456129e-06,5.812343810410733e-22,-7.849293979234062e-06,-1.740341031108983e-05,3.77073920390103e-05,-1.740341031108983e-05,-3.916666919343628e-20,-3.3581707256191625e-20,1.24310076898837e-06,1.3658140308443676e-21,1.0659011810957452e-21,1.9092796702531804e-21,9.567105129612612e-22,1.4552408176731595e-21,5.494505603564903e-05,-7.849293979234062e-06,-9.157509339274839e-06,-2.117777046385385e-21,1.3658140308443676e-21,1.3082155874144519e-06,3.28586189226753e-22,0.0,-6.394044619661515e-24,-1.5697338049157556e-23,4.80769231216982e-05,-6.868132004456129e-06,2.117582368135751e-21,-6.868132004456129e-06,1.0659011810957452e-21,3.28586189226753e-22,9.811617474042578e-07,-1.3234889800848443e-23,-6.352747104407253e-22,3.705769144237564e-22,4.88400473841466e-05,-2.668153783851046e-20,-2.6640027499524876e-05,5.812343810410733e-22,1.9092796702531804e-21,0.0,-1.3234889800848443e-23,2.220002215835848e-06,0.0,-2.6469779601696886e-23,5.494505603564903e-05,-8.839916032053684e-21,-9.157509339274839e-06,-7.849293979234062e-06,9.567105129612612e-22,-6.394044619661515e-24,-6.352747104407253e-22,0.0,1.3082155874144519e-06,-4.764560328305439e-22,3.77073920390103e-05,-2.286988957586611e-20,3.3881317890172014e-21,-1.740341031108983e-05,1.4552408176731595e-21,-1.5697338049157556e-23,3.705769144237564e-22,-2.6469779601696886e-23,-4.764560328305439e-22,1.24310076898837e-06,15.0,13.0,16.0,0.012586075812578201,-0.0012423238949850202,-0.0014109971234574914,-0.001172295887954533,3.535068026394583e-05,5.1510989578673616e-05,4.242081558913924e-05,4.578754669637419e-05,4.848093158216216e-05,3.142282730550505e-05,-0.0012423238949850202,0.0003351932391524315,5.1510989578673616e-05,4.242081558913924e-05,-1.631569830351509e-05,-7.358712537097745e-06,-6.06011644777027e-06,-2.583450489125616e-20,-6.000732074461572e-21,-1.3552527156068805e-20,-0.0014109971234574914,5.1510989578673616e-05,0.00044329138472676277,4.848093158216216e-05,-3.777447252372125e-20,-8.585165232943837e-06,4.0234064994579266e-21,-2.4975024643936194e-05,-8.080155566858593e-06,4.658681209898652e-21,-0.001172295887954533,4.242081558913924e-05,4.848093158216216e-05,0.00029546432779170573,-2.9445019018079415e-20,1.5373683818310245e-21,-5.6561084420536645e-06,-3.304927335060401e-22,-6.464123998739524e-06,-1.3466925338434521e-05,3.535068026394583e-05,-1.631569830351509e-05,-3.777447252372125e-20,-2.9445019018079415e-20,1.1654069567157421e-06,1.4174648563858944e-21,9.054309695379421e-22,1.792424454807118e-21,8.457421436214181e-22,1.201909686885084e-21,5.1510989578673616e-05,-7.358712537097745e-06,-8.585165232943837e-06,1.5373683818310245e-21,1.4174648563858944e-21,1.2264521274119033e-06,3.484773820329255e-25,2.117582368135751e-22,-2.7186231911060747e-22,8.485084926448545e-24,4.242081558913924e-05,-6.06011644777027e-06,4.0234064994579266e-21,-5.6561084420536645e-06,9.054309695379421e-22,3.484773820329255e-25,8.080154998424405e-07,6.617444900424222e-24,-5.426304818347862e-22,-4.235164736271502e-22,4.578754669637419e-05,-2.583450489125616e-20,-2.4975024643936194e-05,-3.304927335060401e-22,1.792424454807118e-21,2.117582368135751e-22,6.617444900424222e-24,2.0812519778701244e-06,0.0,2.6469779601696886e-23,4.848093158216216e-05,-6.000732074461572e-21,-8.080155566858593e-06,-6.464123998739524e-06,8.457421436214181e-22,-2.7186231911060747e-22,-5.426304818347862e-22,0.0,1.0773539997899206e-06,-6.88214269644119e-22,3.142282730550505e-05,-1.3552527156068805e-20,4.658681209898652e-21,-1.3466925338434521e-05,1.201909686885084e-21,8.485084926448545e-24,-4.235164736271502e-22,2.6469779601696886e-23,-6.88214269644119e-22,8.977950187727401e-07,15.0,14.0,3.0,0.04679855331778526,-0.005486694630235434,-0.005833333358168602,-0.019583333283662796,0.00017507003212813288,0.0002380952355451882,0.0008928571478463709,0.00019841270113829523,0.0009523809421807528,0.0023809524718672037,-0.005486694630235434,0.0015648951521143317,0.0002380952355451882,0.0008928571478463709,-8.080155384959653e-05,-3.40136066370178e-05,-0.00012755101488437504,-1.3032319731182742e-19,-2.5253860290395734e-19,-3.851426551121414e-18,-0.005833333358168602,0.0002380952355451882,0.001790293026715517,0.0009523809421807528,-1.6903952805403966e-19,-3.6630037357099354e-05,-5.430982266217907e-20,-9.920635056914762e-05,-0.00014652014942839742,-7.8081620864124135e-19,-0.019583333283662796,0.0008928571478463709,0.0009523809421807528,0.0433928556740284,-6.601368645219253e-19,2.9389972733253425e-20,-0.0008928571478463709,2.121604170357185e-22,-0.0009523809421807528,-0.014285714365541935,0.00017507003212813288,-8.080155384959653e-05,-1.6903952805403966e-19,-6.601368645219253e-19,5.77153923586593e-06,7.426649682731993e-21,2.0567253010652895e-20,7.734808388237807e-21,1.6319006865358264e-20,2.050462736034696e-19,0.0002380952355451882,-3.40136066370178e-05,-3.6630037357099354e-05,2.9389972733253425e-20,7.426649682731993e-21,5.2328623496578075e-06,5.169914484969339e-23,3.3852031334402375e-21,-4.577209978013931e-21,2.378013133098987e-34,0.0008928571478463709,-0.00012755101488437504,-5.430982266217907e-20,-0.0008928571478463709,2.0567253010652895e-20,5.169914484969339e-23,0.00012755101488437504,2.461985778603428e-24,5.3913499751189606e-20,9.807786431246571e-19,0.00019841270113829523,-1.3032319731182742e-19,-9.920635056914762e-05,2.121604170357185e-22,7.734808388237807e-21,3.3852031334402375e-21,2.461985778603428e-24,7.631258085893933e-06,-3.529143439994069e-23,2.720054208950685e-34,0.0009523809421807528,-2.5253860290395734e-19,-0.00014652014942839742,-0.0009523809421807528,1.6319006865358264e-20,-4.577209978013931e-21,5.3913499751189606e-20,-3.529143439994069e-23,0.00014652014942839742,7.8081620864124135e-19,0.0023809524718672037,-3.851426551121414e-18,-7.8081620864124135e-19,-0.014285714365541935,2.050462736034696e-19,2.378013133098987e-34,9.807786431246571e-19,2.720054208950685e-34,7.8081620864124135e-19,0.0071428571827709675,15.0,14.0,4.0,0.0379173681139946,-0.004248949699103832,-0.004517856985330582,-0.01246428582817316,0.00013130252773407847,0.00017857142665889114,0.0005357142654247582,0.00014880952949170023,0.0005714285653084517,0.0011904762359336019,-0.004248949699103832,0.0011928040767088532,0.00017857142665889114,0.0005357142654247582,-6.0601163568207994e-05,-2.551020406826865e-05,-7.653061038581654e-05,-1.2149276639183682e-20,-5.0436300643480903e-20,5.686172396575404e-19,-0.004517856985330582,0.00017857142665889114,0.0013646978186443448,0.0005714285653084517,4.032918430267433e-20,-2.7472528017824516e-05,-2.669748174481742e-19,-7.440476474585012e-05,-8.791208529146388e-05,3.5809062307726845e-19,-0.01246428582817316,0.0005357142654247582,0.0005714285653084517,0.01664285734295845,2.190342984273505e-19,-2.2864275087458405e-19,-0.0003571428533177823,-1.640814979352763e-19,-0.0003809523768723011,-0.0035714285913854837,0.00013130252773407847,-6.0601163568207994e-05,4.032918430267433e-20,2.190342984273505e-19,4.328654540586285e-06,1.1525836912292287e-21,7.5186325303549945e-22,-3.628212883875048e-21,-4.3516800725742714e-21,-6.952350297166482e-20,0.00017857142665889114,-2.551020406826865e-05,-2.7472528017824516e-05,-2.2864275087458405e-19,1.1525836912292287e-21,3.924646989617031e-06,9.267217018541977e-21,6.29959832667002e-21,9.52309693998216e-21,2.5707676454484187e-20,0.0005357142654247582,-7.653061038581654e-05,-2.669748174481742e-19,-0.0003571428533177823,7.5186325303549945e-22,9.267217018541977e-21,5.10204081365373e-05,1.173726233815628e-20,1.4851443055847143e-20,1.206452229190482e-19,0.00014880952949170023,-1.2149276639183682e-20,-7.440476474585012e-05,-1.640814979352763e-19,-3.628212883875048e-21,6.29959832667002e-21,1.173726233815628e-20,5.723443337046774e-06,1.6298446903492347e-20,-1.461488717211545e-20,0.0005714285653084517,-5.0436300643480903e-20,-8.791208529146388e-05,-0.0003809523768723011,-4.3516800725742714e-21,9.52309693998216e-21,1.4851443055847143e-20,1.6298446903492347e-20,5.860805686097592e-05,-2.7541257668409793e-19,0.0011904762359336019,5.686172396575404e-19,3.5809062307726845e-19,-0.0035714285913854837,-6.952350297166482e-20,2.5707676454484187e-20,1.206452229190482e-19,-1.461488717211545e-20,-2.7541257668409793e-19,0.0011904762359336019,15.0,14.0,5.0,0.031927771866321564,-0.003470588242635131,-0.003690476296469569,-0.008649660274386406,0.0001050420178216882,0.0001428571413271129,0.0003571428533177823,0.0001190476177725941,0.0003809523768723011,0.0006802721181884408,-0.003470588242635131,0.0009644473320804536,0.0001428571413271129,0.0003571428533177823,-4.848093158216216e-05,-2.0408162527019158e-05,-5.10204081365373e-05,-4.912791094074942e-20,-7.199780051661553e-20,-4.346564251291315e-19,-0.003690476296469569,0.0001428571413271129,0.0011034798808395863,0.0003809523768723011,-9.079957706585463e-20,-2.197802132286597e-05,2.713633207904977e-20,-5.952380888629705e-05,-5.860805686097592e-05,-9.590379027069099e-34,-0.008649660274386406,0.0003571428533177823,0.0003809523768723011,0.008406462147831917,-2.4869061039314894e-19,1.526999806138611e-20,-0.00017857142665889114,3.3881317890172014e-21,-0.00019047618843615055,-0.0013605442363768816,0.0001050420178216882,-4.848093158216216e-05,-9.079957706585463e-20,-2.4869061039314894e-19,3.462923586994293e-06,2.438531878928985e-21,9.741191509534862e-21,4.625112540430631e-21,6.502457909550114e-21,3.5150788098848024e-20,0.0001428571413271129,-2.0408162527019158e-05,-2.197802132286597e-05,1.526999806138611e-20,2.438531878928985e-21,3.1397173643199494e-06,-1.7069277856299117e-21,-2.541098841762901e-21,-4.235164736271502e-22,2.7850282242627594e-35,0.0003571428533177823,-5.10204081365373e-05,2.713633207904977e-20,-0.00017857142665889114,9.741191509534862e-21,-1.7069277856299117e-21,2.551020406826865e-05,1.328075985367651e-22,-8.528251502467322e-21,-2.872731058971895e-20,0.0001190476177725941,-4.912791094074942e-20,-5.952380888629705e-05,3.3881317890172014e-21,4.625112540430631e-21,-2.541098841762901e-21,1.328075985367651e-22,4.578754669637419e-06,-8.470329472543003e-22,4.7283824043219765e-35,0.0003809523768723011,-7.199780051661553e-20,-5.860805686097592e-05,-0.00019047618843615055,6.502457909550114e-21,-4.235164736271502e-22,-8.528251502467322e-21,-8.470329472543003e-22,2.930402843048796e-05,7.447479916991436e-35,0.0006802721181884408,-4.346564251291315e-19,-9.590379027069099e-34,-0.0013605442363768816,3.5150788098848024e-20,2.7850282242627594e-35,-2.872731058971895e-20,4.7283824043219765e-35,7.447479916991436e-35,0.0003401360590942204,15.0,14.0,6.0,0.027595704421401024,-0.0029346738010644913,-0.0031207483261823654,-0.006360544357448816,8.753501606406644e-05,0.0001190476177725941,0.00025510202976875007,9.920635056914762e-05,0.0002721088530961424,0.00042517005931586027,-0.0029346738010644913,0.00080977997276932,0.0001190476177725941,0.00025510202976875007,-4.0400776924798265e-05,-1.70068033185089e-05,-3.644314710982144e-05,-6.606856988583543e-20,-4.658681209898652e-20,-2.56535255280478e-19,-0.0031207483261823654,0.0001190476177725941,0.0009265436674468219,0.0002721088530961424,-8.926660459564074e-20,-1.8315018678549677e-05,1.0378606065134428e-20,-4.960317528457381e-05,-4.186289879726246e-05,-6.211983008044401e-34,-0.006360544357448816,0.00025510202976875007,0.0002721088530961424,0.004882653243839741,-1.6425555483073337e-19,1.5294591740428573e-21,-0.0001020408162730746,-3.3881317890172014e-21,-0.00010884353832807392,-0.0006377550889737904,8.753501606406644e-05,-4.0400776924798265e-05,-8.926660459564074e-20,-1.6425555483073337e-19,2.885769617932965e-06,3.6150725059215325e-21,4.865272799058038e-21,3.973404481560733e-21,4.744521393290202e-21,2.0138472954143522e-20,0.0001190476177725941,-1.70068033185089e-05,-1.8315018678549677e-05,1.5294591740428573e-21,3.6150725059215325e-21,2.6164311748289037e-06,4.01575437197244e-22,1.6940658945086007e-21,-7.411538288475128e-22,2.5969990636822293e-35,0.00025510202976875007,-3.644314710982144e-05,1.0378606065134428e-20,-0.0001020408162730746,4.865272799058038e-21,4.01575437197244e-22,1.4577259207726456e-05,6.851365509105046e-23,-5.658131070745084e-21,-1.0161345138542815e-20,9.920635056914762e-05,-6.606856988583543e-20,-4.960317528457381e-05,-3.3881317890172014e-21,3.973404481560733e-21,1.6940658945086007e-21,6.851365509105046e-23,3.815629042946966e-06,0.0,2.680962822889853e-35,0.0002721088530961424,-4.658681209898652e-20,-4.186289879726246e-05,-0.00010884353832807392,4.744521393290202e-21,-7.411538288475128e-22,-5.658131070745084e-21,0.0,1.6745159882702865e-05,3.636124590372112e-35,0.00042517005931586027,-2.56535255280478e-19,-6.211983008044401e-34,-0.0006377550889737904,2.0138472954143522e-20,2.5969990636822293e-35,-1.0161345138542815e-20,2.680962822889853e-35,3.636124590372112e-35,0.00012755101488437504,15.0,14.0,7.0,0.024309640750288963,-0.002542767208069563,-0.00270408159121871,-0.004876700695604086,7.503000961150974e-05,0.0001020408162730746,0.00019132652960252017,8.50340147735551e-05,0.0002040816325461492,0.00028344671591185033,-0.002542767208069563,0.0006980017060413957,0.0001020408162730746,0.00019132652960252017,-3.462923632469028e-05,-1.4577259207726456e-05,-2.7332362151355483e-05,-2.541098841762901e-21,1.9227647902672618e-19,7.108550818890962e-19,-0.00270408159121871,0.0001020408162730746,0.0007986656273715198,0.0002040816325461492,4.734293272704241e-20,-1.5698587958468124e-05,1.106351613597231e-19,-4.251700738677755e-05,-3.139717591693625e-05,7.164219040140015e-19,-0.004876700695604086,0.00019132652960252017,0.0002040816325461492,0.003099489724263549,3.6064402623064307e-19,1.2615923473172083e-19,-6.377550744218752e-05,3.6083603553033194e-19,-6.80272132740356e-05,-0.0003401360590942204,7.503000961150974e-05,-3.462923632469028e-05,4.734293272704241e-20,3.6064402623064307e-19,2.473516815371113e-06,-4.736123470394032e-22,-6.874842665976696e-21,-1.0179467179423688e-21,-9.31528962150452e-21,-3.820207320162288e-20,0.0001020408162730746,-1.4577259207726456e-05,-1.5698587958468124e-05,1.2615923473172083e-19,-4.736123470394032e-22,2.2426552277465817e-06,-3.653459664016388e-21,4.552802091491864e-21,-2.2234614865425384e-21,-1.1204314070014913e-20,0.00019132652960252017,-2.7332362151355483e-05,1.106351613597231e-19,-6.377550744218752e-05,-6.874842665976696e-21,-3.653459664016388e-21,9.11078677745536e-06,-2.9641160989656784e-21,-1.232044728822604e-20,-2.99037779094453e-20,8.50340147735551e-05,-2.541098841762901e-21,-4.251700738677755e-05,3.6083603553033194e-19,-1.0179467179423688e-21,4.552802091491864e-21,-2.9641160989656784e-21,3.2705390822229674e-06,-1.0164395367051604e-20,-4.090957751817672e-20,0.0002040816325461492,1.9227647902672618e-19,-3.139717591693625e-05,-6.80272132740356e-05,-9.31528962150452e-21,-2.2234614865425384e-21,-1.232044728822604e-20,-1.0164395367051604e-20,1.0465724699315615e-05,-3.0224924319920476e-20,0.00028344671591185033,7.108550818890962e-19,7.164219040140015e-19,-0.0003401360590942204,-3.820207320162288e-20,-1.1204314070014913e-20,-2.99037779094453e-20,-4.090957751817672e-20,-3.0224924319920476e-20,5.668934318237007e-05,15.0,14.0,8.0,0.021728524938225746,-0.002243522321805358,-0.0023859126958996058,-0.003859126940369606,6.565126386703923e-05,8.928571332944557e-05,0.00014880952949170023,7.440476474585012e-05,0.00015873015217948705,0.00019841270113829523,-0.002243522321805358,0.000613408803474158,8.928571332944557e-05,0.00014880952949170023,-3.0300581784103997e-05,-1.2755102034134325e-05,-2.1258503693388775e-05,-8.470329472543003e-21,-3.3881317890172014e-20,4.255216434425097e-20,-0.0023859126958996058,8.928571332944557e-05,0.0007018849137239158,0.00015873015217948705,1.7064853974829735e-20,-1.3736264008912258e-05,-8.092905053610956e-20,-3.720238237292506e-05,-2.44200236920733e-05,-1.1720722764873054e-19,-0.003859126940369606,0.00014880952949170023,0.00015873015217948705,0.002094671130180359,3.5368239664721437e-20,-9.55126195516345e-20,-4.251700738677755e-05,-8.809142651444724e-20,-4.535147309070453e-05,-0.00019841270113829523,6.565126386703923e-05,-3.0300581784103997e-05,1.7064853974829735e-20,3.5368239664721437e-20,2.1643272702931426e-06,7.461614926303068e-22,-1.312422006269288e-21,-1.8735422770063e-21,-3.1673492358833876e-22,-4.1650022104272455e-21,8.928571332944557e-05,-1.2755102034134325e-05,-1.3736264008912258e-05,-9.55126195516345e-20,7.461614926303068e-22,1.9623234948085155e-06,3.162867243764284e-21,3.0704944337968387e-21,3.1763735522036263e-21,6.245367509449862e-21,0.00014880952949170023,-2.1258503693388775e-05,-8.092905053610956e-20,-4.251700738677755e-05,-1.312422006269288e-21,3.162867243764284e-21,6.073858003219357e-06,3.1530287220156612e-21,2.9329338536428084e-21,-9.793626197758914e-21,7.440476474585012e-05,-8.470329472543003e-21,-3.720238237292506e-05,-8.809142651444724e-20,-1.8735422770063e-21,3.0704944337968387e-21,3.1530287220156612e-21,2.861721668523387e-06,5.505714157152952e-21,3.1771492359762865e-21,0.00015873015217948705,-3.3881317890172014e-20,-2.44200236920733e-05,-4.535147309070453e-05,-3.1673492358833876e-22,3.1763735522036263e-21,2.9329338536428084e-21,5.505714157152952e-21,6.977149951126194e-06,6.0977258675287336e-21,0.00019841270113829523,4.255216434425097e-20,-1.1720722764873054e-19,-0.00019841270113829523,-4.1650022104272455e-21,6.245367509449862e-21,-9.793626197758914e-21,3.1771492359762865e-21,6.0977258675287336e-21,2.8344671591185033e-05,15.0,14.0,9.0,0.01964605413377285,-0.002007469767704606,-0.0021349205635488033,-0.00313059170730412,5.835667616338469e-05,7.936507608974352e-05,0.0001190476177725941,6.613756704609841e-05,0.00012698413047473878,0.00014430013834498823,-0.002007469767704606,0.0005471419426612556,7.936507608974352e-05,0.0001190476177725941,-2.6933850676869042e-05,-1.1337868272676133e-05,-1.70068033185089e-05,-1.1858461261560205e-19,-1.478072492958754e-19,-2.6182766023716885e-19,-0.0021349205635488033,7.936507608974352e-05,0.0006260683876462281,0.00012698413047473878,-1.3392105816021803e-19,-1.221001184603665e-05,-1.1770341969398872e-19,-3.3068783523049206e-05,-1.953601895365864e-05,-1.6598802000024033e-19,-0.00313059170730412,0.0001190476177725941,0.00012698413047473878,0.0014835343463346362,-1.9379947363080115e-19,-5.814775329631759e-20,-2.9761904443148524e-05,-1.5670109524204556e-19,-3.1746032618684694e-05,-0.00012368583702482283,5.835667616338469e-05,-2.6933850676869042e-05,-1.3392105816021803e-19,-1.9379947363080115e-19,1.92384641195531e-06,2.8363619307659846e-21,3.969611486867137e-21,5.550660599011412e-21,7.916562748594295e-21,1.2560193148753603e-20,7.936507608974352e-05,-1.1337868272676133e-05,-1.221001184603665e-05,-5.814775329631759e-20,2.8363619307659846e-21,1.7442874877815484e-06,2.3734241213298955e-21,2.0117032497289633e-21,2.276401045745932e-21,2.7463773624792162e-21,0.0001190476177725941,-1.70068033185089e-05,-1.1770341969398872e-19,-2.9761904443148524e-05,3.969611486867137e-21,2.3734241213298955e-21,4.251700829627225e-06,6.08832799717088e-21,3.9868348574047826e-21,1.5316890477947342e-20,6.613756704609841e-05,-1.1858461261560205e-19,-3.3068783523049206e-05,-1.5670109524204556e-19,5.550660599011412e-21,2.0117032497289633e-21,6.08832799717088e-21,2.5437525437155273e-06,2.964615315390051e-21,1.1971388378838599e-20,0.00012698413047473878,-1.478072492958754e-19,-1.953601895365864e-05,-3.1746032618684694e-05,7.916562748594295e-21,2.276401045745932e-21,3.9868348574047826e-21,2.964615315390051e-21,4.88400473841466e-06,-2.216167312581405e-21,0.00014430013834498823,-2.6182766023716885e-19,-1.6598802000024033e-19,-0.00012368583702482283,1.2560193148753603e-20,2.7463773624792162e-21,1.5316890477947342e-20,1.1971388378838599e-20,-2.216167312581405e-21,1.5460729628102854e-05,15.0,14.0,10.0,0.017929717898368835,-0.0018164629582315683,-0.001931818202137947,-0.0025909091345965862,5.25210089108441e-05,7.142857066355646e-05,9.740259702084586e-05,5.952380888629705e-05,0.00010389610542915761,0.00010822511103469878,-0.0018164629582315683,0.0004938191850669682,7.142857066355646e-05,9.740259702084586e-05,-2.424046579108108e-05,-1.0204081263509579e-05,-1.3914656847191509e-05,-2.456395547037471e-20,-1.6517142471458857e-20,-7.261617618563574e-20,-0.001931818202137947,7.142857066355646e-05,0.0005650599487125874,0.00010389610542915761,-4.802585110206163e-20,-1.0989010661432985e-05,6.623792946170069e-21,-2.9761904443148524e-05,-1.5984016499714926e-05,-1.1933038937978365e-34,-0.0025909091345965862,9.740259702084586e-05,0.00010389610542915761,0.0010898268083110452,-6.922085180269845e-20,6.2495001813383596e-21,-2.1645020751748234e-05,-8.470329472543003e-22,-2.308802322659176e-05,-8.116882963804528e-05,5.25210089108441e-05,-2.424046579108108e-05,-4.802585110206163e-20,-6.922085180269845e-20,1.7314617934971466e-06,1.4345294954876353e-21,2.5542093313544397e-21,2.309384266826309e-21,1.7687948773868044e-21,4.42713526186916e-21,7.142857066355646e-05,-1.0204081263509579e-05,-1.0989010661432985e-05,6.2495001813383596e-21,1.4345294954876353e-21,1.5698586821599747e-06,-3.431997554544381e-22,-1.164670302474663e-21,-6.352747104407253e-22,3.6863977086028815e-36,9.740259702084586e-05,-1.3914656847191509e-05,6.623792946170069e-21,-2.1645020751748234e-05,2.5542093313544397e-21,-3.431997554544381e-22,3.092146016570041e-06,3.7145621485984285e-36,-9.380877410430767e-22,2.3636173054787755e-21,5.952380888629705e-05,-2.456395547037471e-20,-2.9761904443148524e-05,-8.470329472543003e-22,2.309384266826309e-21,-1.164670302474663e-21,3.7145621485984285e-36,2.2893773348187096e-06,1.0587911840678754e-22,5.898129001028476e-36,0.00010389610542915761,-1.6517142471458857e-20,-1.5984016499714926e-05,-2.308802322659176e-05,1.7687948773868044e-21,-6.352747104407253e-22,-9.380877410430767e-22,1.0587911840678754e-22,3.5520035908120917e-06,3.7444276976673396e-36,0.00010822511103469878,-7.261617618563574e-20,-1.1933038937978365e-34,-8.116882963804528e-05,4.42713526186916e-21,3.6863977086028815e-36,2.3636173054787755e-21,5.898129001028476e-36,3.7444276976673396e-36,9.018758646561764e-06,15.0,14.0,11.0,0.016490347683429718,-0.0016587089048698545,-0.0017640693113207817,-0.002179903443902731,4.774637272930704e-05,6.49350622552447e-05,8.116882963804528e-05,5.411255551734939e-05,8.658008300699294e-05,8.325008093379438e-05,-0.0016587089048698545,0.0004499806964304298,6.49350622552447e-05,8.116882963804528e-05,-2.2036787413526326e-05,-9.276437594962772e-06,-1.159554722107714e-05,-2.0328790734103208e-20,-1.2705494208814505e-20,-4.004357757797052e-20,-0.0017640693113207817,6.49350622552447e-05,0.0005149017670191824,8.658008300699294e-05,-4.1566575413219767e-20,-9.990009857574478e-06,5.2350096081721705e-21,-2.7056277758674696e-05,-1.3320013749762438e-05,-9.039973427133867e-35,-0.002179903443902731,8.116882963804528e-05,8.658008300699294e-05,0.0008244810742326081,-5.3923642407216184e-20,1.762907475922508e-21,-1.6233765563811176e-05,1.6940658945086007e-21,-1.7316016965196468e-05,-5.550005516852252e-05,4.774637272930704e-05,-2.2036787413526326e-05,-4.1566575413219767e-20,-5.3923642407216184e-20,1.5740562275823322e-06,9.849144234028e-22,1.5374352267486893e-21,2.0931742796652927e-21,1.4929479145588425e-21,3.345743225488477e-21,6.49350622552447e-05,-9.276437594962772e-06,-9.990009857574478e-06,1.762907475922508e-21,9.849144234028e-22,1.4271442978497362e-06,9.379920932360405e-23,-1.376428539288238e-21,-3.1763735522036263e-22,1.9351591893370217e-36,8.116882963804528e-05,-1.159554722107714e-05,5.2350096081721705e-21,-1.6233765563811176e-05,1.5374352267486893e-21,9.379920932360405e-23,2.319109398740693e-06,2.1158898314801175e-36,-1.1783208020657053e-21,-1.3593658186962186e-21,5.411255551734939e-05,-2.0328790734103208e-20,-2.7056277758674696e-05,1.6940658945086007e-21,2.0931742796652927e-21,-1.376428539288238e-21,2.1158898314801175e-36,2.0812519778701244e-06,-1.0587911840678754e-22,4.457425575471336e-36,8.658008300699294e-05,-1.2705494208814505e-20,-1.3320013749762438e-05,-1.7316016965196468e-05,1.4929479145588425e-21,-3.1763735522036263e-22,-1.1783208020657053e-21,-1.0587911840678754e-22,2.6640027499524876e-06,3.781418031069039e-36,8.325008093379438e-05,-4.004357757797052e-20,-9.039973427133867e-35,-5.550005516852252e-05,3.345743225488477e-21,1.9351591893370217e-36,-1.3593658186962186e-21,4.457425575471336e-36,3.781418031069039e-36,5.550005425902782e-06,15.0,14.0,12.0,0.015265670605003834,-0.0015262066153809428,-0.0016231684712693095,-0.0018596284789964557,4.376750803203322e-05,5.952380888629705e-05,6.868132186355069e-05,4.960317528457381e-05,7.326007471419871e-05,6.541077891597524e-05,-0.0015262066153809428,0.0004132999456487596,5.952380888629705e-05,6.868132186355069e-05,-2.0200388462399133e-05,-8.50340165925445e-06,-9.811617019295227e-06,-3.3457801416544863e-20,-9.683879363753588e-21,-3.218725199566341e-20,-0.0016231684712693095,5.952380888629705e-05,0.0004729325301013887,7.326007471419871e-05,-4.4778485420020495e-20,-9.157509339274839e-06,5.505714157152952e-21,-2.4801587642286904e-05,-1.1270780305494554e-05,1.0164395367051604e-20,-0.0018596284789964557,6.868132186355069e-05,7.326007471419871e-05,0.0006390038761310279,-4.5241977981688685e-20,5.404125836225392e-22,-1.2487512321968097e-05,-6.113871944370661e-22,-1.3320013749762438e-05,-3.924646807718091e-05,4.376750803203322e-05,-2.0200388462399133e-05,-4.4778485420020495e-20,-4.5241977981688685e-20,1.4428848089664825e-06,1.848248644838077e-21,1.2636975138982201e-21,1.9223808702186992e-21,1.2454039178585662e-21,2.5741349733219128e-21,5.952380888629705e-05,-8.50340165925445e-06,-9.157509339274839e-06,5.404125836225392e-22,1.848248644838077e-21,1.3082155874144519e-06,9.862701282000767e-23,1.0587911840678754e-21,-1.7008356084963943e-22,-7.780129633689556e-24,6.868132186355069e-05,-9.811617019295227e-06,5.505714157152952e-21,-1.2487512321968097e-05,1.2636975138982201e-21,9.862701282000767e-23,1.7839303154687514e-06,1.3234889800848443e-23,-1.164670302474663e-21,-8.470329472543003e-22,4.960317528457381e-05,-3.3457801416544863e-20,-2.4801587642286904e-05,-6.113871944370661e-22,1.9223808702186992e-21,1.0587911840678754e-21,1.3234889800848443e-23,1.907814521473483e-06,0.0,5.293955920339377e-23,7.326007471419871e-05,-9.683879363753588e-21,-1.1270780305494554e-05,-1.3320013749762438e-05,1.2454039178585662e-21,-1.7008356084963943e-22,-1.164670302474663e-21,0.0,2.0492327621468576e-06,-1.9058241313221758e-21,6.541077891597524e-05,-3.218725199566341e-20,1.0164395367051604e-20,-3.924646807718091e-05,2.5741349733219128e-21,-7.780129633689556e-24,-8.470329472543003e-22,5.293955920339377e-23,-1.9058241313221758e-21,3.5678606309375027e-06,15.0,14.0,13.0,0.014210837893188,-0.0014133345102891326,-0.0015031397342681885,-0.0016051805578172207,4.0400776924798265e-05,5.494505603564903e-05,5.886970029678196e-05,4.578754669637419e-05,6.27943518338725e-05,5.232862531556748e-05,-0.0014133345102891326,0.00038215453969314694,5.494505603564903e-05,5.886970029678196e-05,-1.8646511307451874e-05,-7.849293979234062e-06,-8.409957445110194e-06,-3.049318610115481e-20,-1.8242566912236313e-20,-2.922263668027336e-20,-0.0015031397342681885,5.494505603564903e-05,0.0004372962284833193,6.27943518338725e-05,-3.9852156351998387e-20,-8.453085683868267e-06,-3.3881317890172014e-21,-2.2893773348187096e-05,-9.660669093136676e-06,-8.046812998915853e-21,-0.0016051805578172207,5.886970029678196e-05,6.27943518338725e-05,0.0005053874920122325,-4.35512305031531e-20,2.770521403427479e-22,-9.811617019295227e-06,-7.089683039144955e-22,-1.0465724699315615e-05,-2.8542885047500022e-05,4.0400776924798265e-05,-1.8646511307451874e-05,-3.9852156351998387e-20,-4.35512305031531e-20,1.3318937135409215e-06,1.4438971745609241e-21,1.7166962312866017e-21,1.79064427973396e-21,1.0750907416875223e-21,2.045727514768742e-21,5.494505603564903e-05,-7.849293979234062e-06,-8.453085683868267e-06,2.770521403427479e-22,1.4438971745609241e-21,1.2075836366420845e-06,-8.687426170915924e-24,8.999725064576941e-22,-3.2207063991173436e-23,-1.2593538785155613e-23,5.886970029678196e-05,-8.409957445110194e-06,-3.3881317890172014e-21,-9.811617019295227e-06,1.7166962312866017e-21,-8.687426170915924e-24,1.4016595741850324e-06,-1.3234889800848443e-23,5.823351512373315e-22,1.0587911840678754e-22,4.578754669637419e-05,-3.049318610115481e-20,-2.2893773348187096e-05,-7.089683039144955e-22,1.79064427973396e-21,8.999725064576941e-22,-1.3234889800848443e-23,1.761059479576943e-06,1.0587911840678754e-22,-5.293955920339377e-23,6.27943518338725e-05,-1.8242566912236313e-20,-9.660669093136676e-06,-1.0465724699315615e-05,1.0750907416875223e-21,-3.2207063991173436e-23,5.823351512373315e-22,1.0587911840678754e-22,1.6101115534183918e-06,1.4823076576950256e-21,5.232862531556748e-05,-2.922263668027336e-20,-8.046812998915853e-21,-2.8542885047500022e-05,2.045727514768742e-21,-1.2593538785155613e-23,1.0587911840678754e-22,-5.293955920339377e-23,1.4823076576950256e-21,2.378573753958335e-06,15.0,14.0,14.0,0.013292716816067696,-0.0013160264352336526,-0.0013996599009260535,-0.0013996599009260535,3.751500480575487e-05,5.10204081365373e-05,5.10204081365373e-05,4.251700738677755e-05,5.442176916403696e-05,4.251700738677755e-05,-0.0013160264352336526,0.00035537840449251235,5.10204081365373e-05,5.10204081365373e-05,-1.731461816234514e-05,-7.288629603863228e-06,-7.288629603863228e-06,-1.1858461261560205e-20,7.698210492893737e-21,-1.1858461261560205e-20,-0.0013996599009260535,5.10204081365373e-05,0.0004066588298883289,5.442176916403696e-05,1.5551909938314704e-20,-7.849293979234062e-06,-1.3976043629695956e-20,-2.1258503693388775e-05,-8.372579941351432e-06,-9.317362419797304e-21,-0.0013996599009260535,5.10204081365373e-05,5.442176916403696e-05,0.0004066588298883289,1.5492861844158062e-20,-1.46376556415934e-20,-7.849293979234062e-06,3.256889770143825e-21,-8.372579941351432e-06,-2.1258503693388775e-05,3.751500480575487e-05,-1.731461816234514e-05,1.5551909938314704e-20,1.5492861844158062e-20,1.2367584076855564e-06,-2.8729476082323543e-22,-2.204516606939534e-22,-5.825914742335431e-22,-6.737791500640822e-22,-6.118273914439539e-22,5.10204081365373e-05,-7.288629603863228e-06,-7.849293979234062e-06,-1.46376556415934e-20,-2.8729476082323543e-22,1.1213276138732908e-06,-3.841130354944289e-23,2.329340604949326e-21,3.807797763146208e-22,1.1496896698014477e-21,5.10204081365373e-05,-7.288629603863228e-06,-1.3976043629695956e-20,-7.849293979234062e-06,-2.204516606939534e-22,-3.841130354944289e-23,1.1213276138732908e-06,1.1448179677733903e-21,2.9116757561866574e-22,2.329340604949326e-21,4.251700738677755e-05,-1.1858461261560205e-20,-2.1258503693388775e-05,3.256889770143825e-21,-5.825914742335431e-22,2.329340604949326e-21,1.1448179677733903e-21,1.6352695411114837e-06,-6.352747104407253e-22,-3.705769144237564e-22,5.442176916403696e-05,7.698210492893737e-21,-8.372579941351432e-06,-8.372579941351432e-06,-6.737791500640822e-22,3.807797763146208e-22,2.9116757561866574e-22,-6.352747104407253e-22,1.2880891517852433e-06,1.2705494208814505e-21,4.251700738677755e-05,-1.1858461261560205e-20,-9.317362419797304e-21,-2.1258503693388775e-05,-6.118273914439539e-22,1.1496896698014477e-21,2.329340604949326e-21,-3.705769144237564e-22,1.2705494208814505e-21,1.6352695411114837e-06,15.0,14.0,15.0,0.012486286461353302,-0.0012312674662098289,-0.0013095238246023655,-0.0012312674662098289,3.501400715322234e-05,4.761904710903764e-05,4.4642856664722785e-05,3.968253804487176e-05,4.761904710903764e-05,3.501400715322234e-05,-0.0012312674662098289,0.00033211169647984207,4.761904710903764e-05,4.4642856664722785e-05,-1.6160311133717187e-05,-6.80272114550462e-06,-6.377551017067162e-06,-2.668153783851046e-20,-6.712349335430476e-21,-1.6517142471458857e-20,-0.0013095238246023655,4.761904710903764e-05,0.00038003662484698,4.761904710903764e-05,-3.367383126574045e-20,-7.32600710762199e-06,3.8116482626443515e-21,-1.984126902243588e-05,-7.32600710762199e-06,2.117582368135751e-21,-0.0012312674662098289,4.4642856664722785e-05,4.761904710903764e-05,0.00033211169647984207,-3.136307314400516e-20,2.0612284674732667e-21,-6.377551017067162e-06,1.4384498691293196e-22,-6.80272114550462e-06,-1.6160311133717187e-05,3.501400715322234e-05,-1.6160311133717187e-05,-3.367383126574045e-20,-3.136307314400516e-20,1.1543078244358185e-06,1.1262050913264009e-21,9.361094545976252e-22,1.5275721682704707e-21,8.48867749367423e-22,1.3757597871890024e-21,4.761904710903764e-05,-6.80272114550462e-06,-7.32600710762199e-06,2.0612284674732667e-21,1.1262050913264009e-21,1.046572492668929e-06,-8.259522614602899e-23,7.411538288475128e-22,-2.2750907540932473e-22,1.8105399317736146e-26,4.4642856664722785e-05,-6.377551017067162e-06,3.8116482626443515e-21,-6.377551017067162e-06,9.361094545976252e-22,-8.259522614602899e-23,9.110787004829035e-07,6.617444900424222e-24,-4.632211430296955e-22,-3.1763735522036263e-22,3.968253804487176e-05,-2.668153783851046e-20,-1.984126902243588e-05,1.4384498691293196e-22,1.5275721682704707e-21,7.411538288475128e-22,6.617444900424222e-24,1.5262514807545813e-06,-5.293955920339377e-23,0.0,4.761904710903764e-05,-6.712349335430476e-21,-7.32600710762199e-06,-6.80272114550462e-06,8.48867749367423e-22,-2.2750907540932473e-22,-4.632211430296955e-22,-5.293955920339377e-23,1.046572492668929e-06,-3.1763735522036263e-22,3.501400715322234e-05,-1.6517142471458857e-20,2.117582368135751e-21,-1.6160311133717187e-05,1.3757597871890024e-21,1.8105399317736146e-26,-3.1763735522036263e-22,0.0,-3.1763735522036263e-22,1.1543078244358185e-06,15.0,14.0,16.0,0.011772292666137218,-0.0011567751644179225,-0.0012303045950829983,-0.0010915616294369102,3.282563193351962e-05,4.4642856664722785e-05,3.939075759262778e-05,3.720238237292506e-05,4.201680712867528e-05,2.9178338081692345e-05,-0.0011567751644179225,0.00031170641887001693,4.4642856664722785e-05,3.939075759262778e-05,-1.5150290892051999e-05,-6.377551017067162e-06,-5.627251084661111e-06,-5.082197683525802e-21,-1.5749533403293852e-20,-9.105604182983729e-21,-0.0012303045950829983,4.4642856664722785e-05,0.00035668833879753947,4.201680712867528e-05,8.696001953547229e-21,-6.868132004456129e-06,-2.6999175193730823e-20,-1.860119118646253e-05,-6.464123998739524e-06,-3.218725199566341e-20,-0.0010915616294369102,3.939075759262778e-05,4.201680712867528e-05,0.00027475989190861583,3.758053178961381e-21,-2.9946998096451194e-20,-5.25210089108441e-06,-3.0390971134367693e-20,-5.6022408898570575e-06,-1.250500190508319e-05,3.282563193351962e-05,-1.5150290892051999e-05,8.696001953547229e-21,3.758053178961381e-21,1.0821636351465713e-06,3.2899170159736005e-22,-1.7646800779309757e-22,-9.503562068152697e-22,-2.0463245152354825e-24,-2.813157757632864e-22,4.4642856664722785e-05,-6.377551017067162e-06,-6.868132004456129e-06,-2.9946998096451194e-20,3.2899170159736005e-22,9.811617474042578e-07,9.19859879204933e-22,1.641126335305207e-21,9.41479161359705e-22,1.010968694188499e-21,3.939075759262778e-05,-5.627251084661111e-06,-2.6999175193730823e-20,-5.25210089108441e-06,-1.7646800779309757e-22,9.19859879204933e-22,7.503001029363077e-07,8.07328277851755e-22,1.0587911840678754e-21,6.88214269644119e-22,3.720238237292506e-05,-5.082197683525802e-21,-1.860119118646253e-05,-3.0390971134367693e-20,-9.503562068152697e-22,1.641126335305207e-21,8.07328277851755e-22,1.4308608342616935e-06,1.852884572118782e-21,7.146840492458159e-22,4.201680712867528e-05,-1.5749533403293852e-20,-6.464123998739524e-06,-5.6022408898570575e-06,-2.0463245152354825e-24,9.41479161359705e-22,1.0587911840678754e-21,1.852884572118782e-21,8.61883222569304e-07,1.852884572118782e-21,2.9178338081692345e-05,-9.105604182983729e-21,-3.218725199566341e-20,-1.250500190508319e-05,-2.813157757632864e-22,1.010968694188499e-21,6.88214269644119e-22,7.146840492458159e-22,1.852884572118782e-21,8.336667747244064e-07,15.0,15.0,3.0,0.04401007667183876,-0.005134803708642721,-0.005134803708642721,-0.018333332613110542,0.0001633986976230517,0.00020833333837799728,0.0008333333535119891,0.0001633986976230517,0.0008333333535119891,0.002222222276031971,-0.005134803708642721,0.0014625529292970896,0.00020833333837799728,0.0008333333535119891,-7.54147840780206e-05,-2.9761904443148524e-05,-0.0001190476177725941,1.6006508369693387e-19,4.394712366796495e-19,5.198681670975826e-18,-0.005134803708642721,0.00020833333837799728,0.0014625529292970896,0.0008333333535119891,2.402948564227064e-19,-2.9761904443148524e-05,3.529128601835986e-20,-7.54147840780206e-05,-0.0001190476177725941,5.198681670975826e-18,-0.018333332613110542,0.0008333333535119891,0.0008333333535119891,0.04055555537343025,1.2218276556214646e-18,4.3222713784173104e-20,-0.0008333333535119891,1.0183620078463102e-18,-0.0008333333535119891,-0.013333333656191826,0.0001633986976230517,-7.54147840780206e-05,2.402948564227064e-19,1.2218276556214646e-18,5.386770226323279e-06,-5.110419971270989e-21,-3.6469100737755876e-20,-1.2617469751617932e-20,-2.8719704405492585e-20,-3.827530388899311e-19,0.00020833333837799728,-2.9761904443148524e-05,-2.9761904443148524e-05,4.3222713784173104e-20,-5.110419971270989e-21,4.251700829627225e-06,-2.9923282892912785e-21,2.053913896724568e-21,-3.182344964198885e-21,1.8396780463956505e-34,0.0008333333535119891,-0.0001190476177725941,3.529128601835986e-20,-0.0008333333535119891,-3.6469100737755876e-20,-2.9923282892912785e-21,0.0001190476177725941,5.0496119347456863e-23,-1.510507569558408e-20,1.5986078301033035e-19,0.0001633986976230517,1.6006508369693387e-19,-7.54147840780206e-05,1.0183620078463102e-18,-1.2617469751617932e-20,2.053913896724568e-21,5.0496119347456863e-23,5.386770226323279e-06,-3.617277943918009e-20,-3.827530388899311e-19,0.0008333333535119891,4.394712366796495e-19,-0.0001190476177725941,-0.0008333333535119891,-2.8719704405492585e-20,-3.182344964198885e-21,-1.510507569558408e-20,-3.617277943918009e-20,0.0001190476177725941,1.5986078301033035e-19,0.002222222276031971,5.198681670975826e-18,5.198681670975826e-18,-0.013333333656191826,-3.827530388899311e-19,1.8396780463956505e-34,1.5986078301033035e-19,-3.827530388899311e-19,1.5986078301033035e-19,0.006666666828095913,15.0,15.0,4.0,0.03564644604921341,-0.003976102918386459,-0.003976102918386459,-0.011666666716337204,0.00012254902685526758,0.00015624999650754035,0.0005000000237487257,0.00012254902685526758,0.0005000000237487257,0.0011111111380159855,-0.003976102918386459,0.0011147718178108335,0.00015624999650754035,0.0005000000237487257,-5.656108623952605e-05,-2.2321428332361393e-05,-7.142857066355646e-05,-5.607633794611996e-20,-9.12710053915245e-20,-1.0557566719907246e-18,-0.003976102918386459,0.00015624999650754035,0.0011147718178108335,0.0005000000237487257,-1.0068630470337838e-19,-2.2321428332361393e-05,2.983332538571051e-20,-5.656108623952605e-05,-7.142857066355646e-05,-1.0557566719907246e-18,-0.011666666716337204,0.0005000000237487257,0.0005000000237487257,0.015555555932223797,-3.4532210804553506e-19,1.8615181082035908e-20,-0.00033333332976326346,-2.806112258882347e-19,-0.00033333332976326346,-0.0033333334140479565,0.00012254902685526758,-5.656108623952605e-05,-1.0068630470337838e-19,-3.4532210804553506e-19,4.040077783429297e-06,3.427285947103873e-21,1.2034238757314857e-20,4.5049354758888934e-21,8.591012215857649e-21,6.69817837444425e-20,0.00015624999650754035,-2.2321428332361393e-05,-2.2321428332361393e-05,1.8615181082035908e-20,3.427285947103873e-21,3.188775508533581e-06,-1.3157449660811176e-21,-1.26744496922948e-21,-1.343566689191295e-21,2.611775968985901e-35,0.0005000000237487257,-7.142857066355646e-05,2.983332538571051e-20,-0.00033333332976326346,1.2034238757314857e-20,-1.3157449660811176e-21,4.761904710903764e-05,-6.95526858774224e-23,-1.3050784761212141e-20,7.867445345432265e-20,0.00012254902685526758,-5.607633794611996e-20,-5.656108623952605e-05,-2.806112258882347e-19,4.5049354758888934e-21,-1.26744496922948e-21,-6.95526858774224e-23,4.040077783429297e-06,1.1450393839900903e-20,6.69817837444425e-20,0.0005000000237487257,-9.12710053915245e-20,-7.142857066355646e-05,-0.00033333332976326346,8.591012215857649e-21,-1.343566689191295e-21,-1.3050784761212141e-20,1.1450393839900903e-20,4.761904710903764e-05,7.867445345432265e-20,0.0011111111380159855,-1.0557566719907246e-18,-1.0557566719907246e-18,-0.0033333334140479565,6.69817837444425e-20,2.611775968985901e-35,7.867445345432265e-20,6.69817837444425e-20,7.867445345432265e-20,0.0011111111380159855,15.0,15.0,5.0,0.03000922128558159,-0.003247549058869481,-0.003247549058869481,-0.008095238357782364,9.803921420825645e-05,0.0001250000059371814,0.00033333332976326346,9.803921420825645e-05,0.00033333332976326346,0.0006349206087179482,-0.003247549058869481,0.0009013413218781352,0.0001250000059371814,0.00033333332976326346,-4.5248867536429316e-05,-1.7857142665889114e-05,-4.761904710903764e-05,-6.013933925505532e-20,-6.183340514956392e-20,-4.1353589330184433e-19,-0.003247549058869481,0.0001250000059371814,0.0009013413218781352,0.00033333332976326346,-8.004883342912511e-20,-1.7857142665889114e-05,2.1513995149049646e-20,-4.5248867536429316e-05,-4.761904710903764e-05,-4.1353589330184433e-19,-0.008095238357782364,0.00033333332976326346,0.00033333332976326346,0.007857142947614193,-2.3857225279706474e-19,1.6584690169526908e-20,-0.00016666666488163173,-1.9989977555201488e-19,-0.00016666666488163173,-0.0012698412174358964,9.803921420825645e-05,-4.5248867536429316e-05,-8.004883342912511e-20,-2.3857225279706474e-19,3.232061999369762e-06,2.1142770788081983e-21,9.556749619981144e-21,3.766472811309662e-21,5.898918177180442e-21,3.2807401579356635e-20,0.0001250000059371814,-1.7857142665889114e-05,-1.7857142665889114e-05,1.6584690169526908e-20,2.1142770788081983e-21,2.5510203158773948e-06,-1.2642937665248224e-21,1.0587911840678754e-21,-1.0587911840678754e-21,3.254181048836952e-35,0.00033333332976326346,-4.761904710903764e-05,2.1513995149049646e-20,-0.00016666666488163173,9.556749619981144e-21,-1.2642937665248224e-21,2.380952355451882e-05,8.665061964252909e-24,-6.1186214676217174e-21,-2.2883877329271352e-20,9.803921420825645e-05,-6.013933925505532e-20,-4.5248867536429316e-05,-1.9989977555201488e-19,3.766472811309662e-21,1.0587911840678754e-21,8.665061964252909e-24,3.232061999369762e-06,9.317362419797304e-21,3.2807401579356635e-20,0.00033333332976326346,-6.183340514956392e-20,-4.761904710903764e-05,-0.00016666666488163173,5.898918177180442e-21,-1.0587911840678754e-21,-6.1186214676217174e-21,9.317362419797304e-21,2.380952355451882e-05,-2.2883877329271352e-20,0.0006349206087179482,-4.1353589330184433e-19,-4.1353589330184433e-19,-0.0012698412174358964,3.2807401579356635e-20,3.254181048836952e-35,-2.2883877329271352e-20,3.2807401579356635e-20,-2.2883877329271352e-20,0.0003174603043589741,15.0,15.0,6.0,0.025933610275387764,-0.002745973411947489,-0.002745973411947489,-0.0059523810632526875,8.169934881152585e-05,0.00010416666918899864,0.0002380952355451882,8.169934881152585e-05,0.0002380952355451882,0.00039682540227659047,-0.002745973411947489,0.0007567866705358028,0.00010416666918899864,0.0002380952355451882,-3.77073920390103e-05,-1.4880952221574262e-05,-3.40136066370178e-05,7.877406409464993e-20,1.1773757966834775e-19,4.8728356855492165e-19,-0.002745973411947489,0.00010416666918899864,0.0007567866705358028,0.0002380952355451882,1.2749909930299481e-19,-1.4880952221574262e-05,1.12350877737413e-20,-3.77073920390103e-05,-3.40136066370178e-05,4.8728356855492165e-19,-0.0059523810632526875,0.0002380952355451882,0.0002380952355451882,0.004563492257148027,3.0538257104781295e-19,3.6487393223079375e-21,-9.523809421807528e-05,2.456395547037471e-19,-9.523809421807528e-05,-0.0005952381179668009,8.169934881152585e-05,-3.77073920390103e-05,1.2749909930299481e-19,3.0538257104781295e-19,2.6933851131616393e-06,-2.682533599864006e-21,-8.685495790415525e-21,-6.3374228565454975e-21,-8.217420615842049e-21,-3.7591817473537615e-20,0.00010416666918899864,-1.4880952221574262e-05,-1.4880952221574262e-05,3.6487393223079375e-21,-2.682533599864006e-21,2.1258504148136126e-06,-7.482306053649419e-22,1.164670302474663e-21,5.293955920339377e-22,2.0320786052918935e-35,0.0002380952355451882,-3.40136066370178e-05,1.12350877737413e-20,-9.523809421807528e-05,-8.685495790415525e-21,-7.482306053649419e-22,1.360544229100924e-05,-2.152522469132055e-23,-2.45442360177152e-21,1.5600749137372278e-20,8.169934881152585e-05,7.877406409464993e-20,-3.77073920390103e-05,2.456395547037471e-19,-6.3374228565454975e-21,1.164670302474663e-21,-2.152522469132055e-23,2.6933851131616393e-06,-8.046812998915853e-21,-3.7591817473537615e-20,0.0002380952355451882,1.1773757966834775e-19,-3.40136066370178e-05,-9.523809421807528e-05,-8.217420615842049e-21,5.293955920339377e-22,-2.45442360177152e-21,-8.046812998915853e-21,1.360544229100924e-05,1.5600749137372278e-20,0.00039682540227659047,4.8728356855492165e-19,4.8728356855492165e-19,-0.0005952381179668009,-3.7591817473537615e-20,2.0320786052918935e-35,1.5600749137372278e-20,-3.7591817473537615e-20,1.5600749137372278e-20,0.0001190476177725941,15.0,15.0,7.0,0.02284294180572033,-0.0023792015854269266,-0.0023792015854269266,-0.004563492257148027,7.002801430644467e-05,8.928571332944557e-05,0.00017857142665889114,7.002801430644467e-05,0.00017857142665889114,0.00026455026818439364,-0.0023792015854269266,0.00065231864573434,8.928571332944557e-05,0.00017857142665889114,-3.2320622267434373e-05,-1.2755102034134325e-05,-2.551020406826865e-05,-3.3034284942917713e-20,-2.964615315390051e-20,-1.9195067326295685e-19,-0.0023792015854269266,8.928571332944557e-05,0.00065231864573434,0.00017857142665889114,-6.141372084861837e-20,-1.2755102034134325e-05,5.462341297162904e-21,-3.2320622267434373e-05,-2.551020406826865e-05,-1.9195067326295685e-19,-0.004563492257148027,0.00017857142665889114,0.00017857142665889114,0.0028968253172934055,-1.2445057685421891e-19,-1.6876279312413323e-22,-5.952380888629705e-05,-1.0164395367051604e-19,-5.952380888629705e-05,-0.0003174603043589741,7.002801430644467e-05,-3.2320622267434373e-05,-6.141372084861837e-20,-1.2445057685421891e-19,2.308615648871637e-06,1.9059293464342705e-21,4.62792204645647e-21,2.7470466194494313e-21,3.0903871581764587e-21,1.1847117416499578e-20,8.928571332944557e-05,-1.2755102034134325e-05,-1.2755102034134325e-05,-1.6876279312413323e-22,1.9059293464342705e-21,1.822157400965807e-06,5.791169521537153e-22,-6.352747104407253e-22,-5.293955920339377e-22,6.425333625597464e-36,0.00017857142665889114,-2.551020406826865e-05,5.462341297162904e-21,-5.952380888629705e-05,4.62792204645647e-21,5.791169521537153e-22,8.50340165925445e-06,4.837800888427672e-23,-3.3655458808853824e-21,8.697006040950943e-21,7.002801430644467e-05,-3.3034284942917713e-20,-3.2320622267434373e-05,-1.0164395367051604e-19,2.7470466194494313e-21,-6.352747104407253e-22,4.837800888427672e-23,2.308615648871637e-06,4.446922973085077e-21,1.1847117416499578e-20,0.00017857142665889114,-2.964615315390051e-20,-2.551020406826865e-05,-5.952380888629705e-05,3.0903871581764587e-21,-5.293955920339377e-22,-3.3655458808853824e-21,4.446922973085077e-21,8.50340165925445e-06,8.697006040950943e-21,0.00026455026818439364,-1.9195067326295685e-19,-1.9195067326295685e-19,-0.0003174603043589741,1.1847117416499578e-20,6.425333625597464e-36,8.697006040950943e-21,1.1847117416499578e-20,8.697006040950943e-21,5.291005436447449e-05,15.0,15.0,8.0,0.020415816456079483,-0.0020991626661270857,-0.0020991626661270857,-0.003611111082136631,6.127451342763379e-05,7.812499825377017e-05,0.00013888889225199819,6.127451342763379e-05,0.00013888889225199819,0.0001851851848186925,-0.0020991626661270857,0.0005732589634135365,7.812499825377017e-05,0.00013888889225199819,-2.8280543119763024e-05,-1.1160714166180696e-05,-1.984126902243588e-05,-2.964615315390051e-20,-3.4304834363799164e-20,-9.929470256972862e-20,-0.0020991626661270857,7.812499825377017e-05,0.0005732589634135365,0.00013888889225199819,-5.2948260755696917e-20,-1.1160714166180696e-05,-6.502645317657646e-22,-2.8280543119763024e-05,-1.984126902243588e-05,-9.929470256972862e-20,-0.003611111082136631,0.00013888889225199819,0.00013888889225199819,0.0019576719496399164,-9.292456528541215e-20,3.2953837589379097e-21,-3.968253804487176e-05,-7.623296525288703e-20,-3.968253804487176e-05,-0.0001851851848186925,6.127451342763379e-05,-2.8280543119763024e-05,-5.2948260755696917e-20,-9.292456528541215e-20,2.0200388917146483e-06,1.7851278574652837e-21,2.9794647825828336e-21,2.3445810442285103e-21,2.3494849570250497e-21,7.974021912804754e-21,7.812499825377017e-05,-1.1160714166180696e-05,-1.1160714166180696e-05,3.2953837589379097e-21,1.7851278574652837e-21,1.5943877542667906e-06,-2.9355662509290947e-22,-7.411538288475128e-22,-1.0587911840678754e-22,4.026801041873564e-36,0.00013888889225199819,-1.984126902243588e-05,-6.502645317657646e-22,-3.968253804487176e-05,2.9794647825828336e-21,-2.9355662509290947e-22,5.668934136338066e-06,8.56922057075053e-23,5.580011273395427e-22,-3.526170784911256e-21,6.127451342763379e-05,-2.964615315390051e-20,-2.8280543119763024e-05,-7.623296525288703e-20,2.3445810442285103e-21,-7.411538288475128e-22,8.56922057075053e-23,2.0200388917146483e-06,2.964615315390051e-21,7.974021912804754e-21,0.00013888889225199819,-3.4304834363799164e-20,-1.984126902243588e-05,-3.968253804487176e-05,2.3494849570250497e-21,-1.0587911840678754e-22,5.580011273395427e-22,2.964615315390051e-21,5.668934136338066e-06,-3.526170784911256e-21,0.0001851851848186925,-9.929470256972862e-20,-9.929470256972862e-20,-0.0001851851848186925,7.974021912804754e-21,4.026801041873564e-36,-3.526170784911256e-21,7.974021912804754e-21,-3.526170784911256e-21,2.6455027182237245e-05,15.0,15.0,9.0,0.01845790445804596,-0.0018782679690048099,-0.0018782679690048099,-0.0029292928520590067,5.4466232541017234e-05,6.944444612599909e-05,0.00011111111234640703,5.4466232541017234e-05,0.00011111111234640703,0.000134680129121989,-0.0018782679690048099,0.0005113271763548255,6.944444612599909e-05,0.00011111111234640703,-2.51382607530104e-05,-9.92063451121794e-06,-1.5873016309342347e-05,-2.498747194400186e-20,-1.6517142471458857e-20,-9.210437047162607e-20,-0.0018782679690048099,6.944444612599909e-05,0.0005113271763548255,0.00011111111234640703,-4.420570808226727e-20,-9.92063451121794e-06,4.8297452301901724e-21,-2.51382607530104e-05,-1.5873016309342347e-05,-9.210437047162607e-20,-0.0029292928520590067,0.00011111111234640703,0.00011111111234640703,0.0013864838983863592,-8.114772994820474e-20,3.646653599318082e-21,-2.7777778086601757e-05,-6.860966872759833e-20,-2.7777778086601757e-05,-0.0001154401179519482,5.4466232541017234e-05,-2.51382607530104e-05,-4.420570808226727e-20,-8.114772994820474e-20,1.7955900375454803e-06,1.0737513189793295e-21,3.2860904978469758e-21,2.059014305306267e-21,1.8929670869622665e-21,5.6335943411490896e-21,6.944444612599909e-05,-9.92063451121794e-06,-9.92063451121794e-06,3.646653599318082e-21,1.0737513189793295e-21,1.4172335340845166e-06,1.2592313999714167e-22,-6.352747104407253e-22,-6.352747104407253e-22,7.935758129358862e-37,0.00011111111234640703,-1.5873016309342347e-05,4.8297452301901724e-21,-2.7777778086601757e-05,3.2860904978469758e-21,1.2592313999714167e-22,3.968254077335587e-06,-2.861906584785136e-23,-1.433641932305953e-21,3.308511414142746e-21,5.4466232541017234e-05,-2.498747194400186e-20,-2.51382607530104e-05,-6.860966872759833e-20,2.059014305306267e-21,-6.352747104407253e-22,-2.861906584785136e-23,1.7955900375454803e-06,3.282252670610414e-21,5.6335943411490896e-21,0.00011111111234640703,-1.6517142471458857e-20,-1.5873016309342347e-05,-2.7777778086601757e-05,1.8929670869622665e-21,-6.352747104407253e-22,-1.433641932305953e-21,3.282252670610414e-21,3.968254077335587e-06,3.308511414142746e-21,0.000134680129121989,-9.210437047162607e-20,-9.210437047162607e-20,-0.0001154401179519482,5.6335943411490896e-21,7.935758129358862e-37,3.308511414142746e-21,5.6335943411490896e-21,3.308511414142746e-21,1.4430014743993524e-05,15.0,15.0,10.0,0.016844436526298523,-0.001699532032944262,-0.001699532032944262,-0.002424242440611124,4.901960710412823e-05,6.25000029685907e-05,9.09090886125341e-05,4.901960710412823e-05,9.09090886125341e-05,0.00010101010411744937,-0.001699532032944262,0.0004614931531250477,6.25000029685907e-05,9.09090886125341e-05,-2.2624433768214658e-05,-8.928571332944557e-06,-1.2987013178644702e-05,-2.922263668027336e-20,-2.1811098391798234e-20,-6.777509518832061e-20,-0.001699532032944262,6.25000029685907e-05,0.0004614931531250477,9.09090886125341e-05,-4.025196246884853e-20,-8.928571332944557e-06,1.7308269641531936e-21,-2.2624433768214658e-05,-1.2987013178644702e-05,-6.777509518832061e-20,-0.002424242440611124,9.09090886125341e-05,9.09090886125341e-05,0.0010185184655711055,-6.363032578336467e-20,4.392121045813088e-21,-2.0202020095894113e-05,-5.336307567702092e-20,-2.0202020095894113e-05,-7.575757626909763e-05,4.901960710412823e-05,-2.2624433768214658e-05,-4.025196246884853e-20,-6.363032578336467e-20,1.616030999684881e-06,9.940739946584044e-22,2.2136377070265125e-21,1.875998777243384e-21,1.5638467442393702e-21,4.131992938004335e-21,6.25000029685907e-05,-8.928571332944557e-06,-8.928571332944557e-06,4.392121045813088e-21,9.940739946584044e-22,1.2755101579386974e-06,-4.395460262470453e-22,4.764560328305439e-22,-2.6469779601696886e-22,3.2437434424732265e-36,9.09090886125341e-05,-1.2987013178644702e-05,1.7308269641531936e-21,-2.0202020095894113e-05,2.2136377070265125e-21,-4.395460262470453e-22,2.88600290332397e-06,3.9026412447299945e-36,2.9911002916082262e-22,2.2060428319100832e-21,4.901960710412823e-05,-2.922263668027336e-20,-2.2624433768214658e-05,-5.336307567702092e-20,1.875998777243384e-21,4.764560328305439e-22,3.9026412447299945e-36,1.616030999684881e-06,2.2234614865425384e-21,4.131992938004335e-21,9.09090886125341e-05,-2.1811098391798234e-20,-1.2987013178644702e-05,-2.0202020095894113e-05,1.5638467442393702e-21,-2.6469779601696886e-22,2.9911002916082262e-22,2.2234614865425384e-21,2.88600290332397e-06,2.2060428319100832e-21,0.00010101010411744937,-6.777509518832061e-20,-6.777509518832061e-20,-7.575757626909763e-05,4.131992938004335e-21,3.2437434424732265e-36,2.2060428319100832e-21,4.131992938004335e-21,2.2060428319100832e-21,8.417508070124313e-06,15.0,15.0,11.0,0.015491481870412827,-0.0015519162407144904,-0.0015519162407144904,-0.0020396269392222166,4.456327951629646e-05,5.681818220182322e-05,7.575757626909763e-05,4.456327951629646e-05,7.575757626909763e-05,7.770007505314425e-05,-0.0015519162407144904,0.0004205231089144945,5.681818220182322e-05,7.575757626909763e-05,-2.056766788882669e-05,-8.116882781905588e-06,-1.0822510375874117e-05,-3.3457801416544863e-20,-1.376428539288238e-20,-3.8306336732895774e-20,-0.0015519162407144904,5.681818220182322e-05,0.0004205231089144945,7.575757626909763e-05,-4.137403620095098e-20,-8.116882781905588e-06,4.518908285113147e-21,-2.056766788882669e-05,-1.0822510375874117e-05,-3.8306336732895774e-20,-0.0020396269392222166,7.575757626909763e-05,7.575757626909763e-05,0.000770525773987174,-5.1261930292385394e-20,6.588454703919456e-22,-1.5151515071920585e-05,-4.277516383634217e-20,-1.5151515071920585e-05,-5.18000524607487e-05,4.456327951629646e-05,-2.056766788882669e-05,-4.137403620095098e-20,-5.1261930292385394e-20,1.469119069952285e-06,1.6048270206583196e-21,1.55509349314794e-21,1.6879008140056664e-21,1.3070483615135694e-21,3.122693852144518e-21,5.681818220182322e-05,-8.116882781905588e-06,-8.116882781905588e-06,6.588454703919456e-22,1.6048270206583196e-21,1.1595546993703465e-06,-2.960047192281872e-23,1.376428539288238e-21,-2.6469779601696886e-23,6.285620267489355e-36,7.575757626909763e-05,-1.0822510375874117e-05,4.518908285113147e-21,-1.5151515071920585e-05,1.55509349314794e-21,-2.960047192281872e-23,2.1645021206495585e-06,4.231779662960235e-37,-8.623409382705206e-22,-1.082275156697747e-21,4.456327951629646e-05,-3.3457801416544863e-20,-2.056766788882669e-05,-4.277516383634217e-20,1.6879008140056664e-21,1.376428539288238e-21,4.231779662960235e-37,1.469119069952285e-06,1.6940658945086007e-21,3.122693852144518e-21,7.575757626909763e-05,-1.376428539288238e-20,-1.0822510375874117e-05,-1.5151515071920585e-05,1.3070483615135694e-21,-2.6469779601696886e-23,-8.623409382705206e-22,1.6940658945086007e-21,2.1645021206495585e-06,-1.082275156697747e-21,7.770007505314425e-05,-3.8306336732895774e-20,-3.8306336732895774e-20,-5.18000524607487e-05,3.122693852144518e-21,6.285620267489355e-36,-1.082275156697747e-21,3.122693852144518e-21,-1.082275156697747e-21,5.18000524607487e-06,15.0,15.0,12.0,0.014340431429445744,-0.0014279317110776901,-0.0014279317110776901,-0.0017399267526343465,4.0849674405762926e-05,5.208333459449932e-05,6.410256173694506e-05,4.0849674405762926e-05,6.410256173694506e-05,6.105006468715146e-05,-0.0014279317110776901,0.0003862426383420825,5.208333459449932e-05,6.410256173694506e-05,-1.885369601950515e-05,-7.440476110787131e-06,-9.157509339274839e-06,4.0657581468206416e-20,2.8169535594091056e-20,6.098637220230962e-20,-0.0014279317110776901,5.208333459449932e-05,0.0003862426383420825,6.410256173694506e-05,6.576619013550755e-20,-7.440476110787131e-06,-6.352747104407253e-22,-1.885369601950515e-05,-9.157509339274839e-06,6.098637220230962e-20,-0.0017399267526343465,6.410256173694506e-05,6.410256173694506e-05,0.0005971806240268052,8.335011771617278e-20,1.4208855592193244e-21,-1.1655011803668458e-05,6.779808822441017e-20,-1.1655011803668458e-05,-3.6630037357099354e-05,4.0849674405762926e-05,-1.885369601950515e-05,6.576619013550755e-20,8.335011771617278e-20,1.3466925565808197e-06,-1.3700308142380232e-21,-2.123290641376577e-21,-3.1475997434006068e-21,-2.200114636870656e-21,-4.82681092005824e-21,5.208333459449932e-05,-7.440476110787131e-06,-7.440476110787131e-06,1.4208855592193244e-21,-1.3700308142380232e-21,1.0629252074068063e-06,-2.3948928509586277e-22,5.293955920339377e-22,2.5208520387436944e-23,8.622294659137257e-24,6.410256173694506e-05,-9.157509339274839e-06,-6.352747104407253e-22,-1.1655011803668458e-05,-2.123290641376577e-21,-2.3948928509586277e-22,1.6650017187203048e-06,0.0,4.235164736271502e-22,1.2705494208814505e-21,4.0849674405762926e-05,4.0657581468206416e-20,-1.885369601950515e-05,6.779808822441017e-20,-3.1475997434006068e-21,5.293955920339377e-22,0.0,1.3466925565808197e-06,-2.064642808932357e-21,-4.817499887508833e-21,6.410256173694506e-05,2.8169535594091056e-20,-9.157509339274839e-06,-1.1655011803668458e-05,-2.200114636870656e-21,2.5208520387436944e-23,4.235164736271502e-22,-2.064642808932357e-21,1.6650017187203048e-06,1.164670302474663e-21,6.105006468715146e-05,6.098637220230962e-20,6.098637220230962e-20,-3.6630037357099354e-05,-4.82681092005824e-21,8.622294659137257e-24,1.2705494208814505e-21,-4.817499887508833e-21,1.164670302474663e-21,3.3300034374406096e-06,15.0,15.0,13.0,0.01334908977150917,-0.0013223174028098583,-0.0013223174028098583,-0.0015018314588814974,3.77073920390103e-05,4.80769231216982e-05,5.494505603564903e-05,3.77073920390103e-05,5.494505603564903e-05,4.88400473841466e-05,-0.0013223174028098583,0.00035713546094484627,4.80769231216982e-05,5.494505603564903e-05,-1.740341031108983e-05,-6.868132004456129e-06,-7.849293979234062e-06,-2.244637310223896e-20,-1.332684417374821e-20,-2.710505431213761e-20,-0.0013223174028098583,4.80769231216982e-05,0.00035713546094484627,5.494505603564903e-05,-3.3933601520999047e-20,-6.868132004456129e-06,-3.3881317890172014e-21,-1.740341031108983e-05,-7.849293979234062e-06,-2.752857078576476e-20,-0.0015018314588814974,5.494505603564903e-05,5.494505603564903e-05,0.0004723054589703679,-3.902843309591189e-20,6.0539003402186075e-22,-9.157509339274839e-06,-3.360457750765901e-20,-9.157509339274839e-06,-2.6640027499524876e-05,3.77073920390103e-05,-1.740341031108983e-05,-3.3933601520999047e-20,-3.902843309591189e-20,1.24310076898837e-06,1.0538900985488204e-21,1.3790096416830233e-21,1.485876085777011e-21,9.525165497358718e-22,1.8936991498823116e-21,4.80769231216982e-05,-6.868132004456129e-06,-6.868132004456129e-06,6.0539003402186075e-22,1.0538900985488204e-21,9.811617474042578e-07,1.86785462774498e-22,3.705769144237564e-22,-2.499658880317261e-22,-4.909774427495593e-24,5.494505603564903e-05,-7.849293979234062e-06,-3.3881317890172014e-21,-9.157509339274839e-06,1.3790096416830233e-21,1.86785462774498e-22,1.3082155874144519e-06,0.0,3.441071348220595e-22,0.0,3.77073920390103e-05,-2.244637310223896e-20,-1.740341031108983e-05,-3.360457750765901e-20,1.485876085777011e-21,3.705769144237564e-22,0.0,1.24310076898837e-06,1.4823076576950256e-21,1.9322939109238726e-21,5.494505603564903e-05,-1.332684417374821e-20,-7.849293979234062e-06,-9.157509339274839e-06,9.525165497358718e-22,-2.499658880317261e-22,3.441071348220595e-22,1.4823076576950256e-21,1.3082155874144519e-06,1.0587911840678754e-22,4.88400473841466e-05,-2.710505431213761e-20,-2.752857078576476e-20,-2.6640027499524876e-05,1.8936991498823116e-21,-4.909774427495593e-24,0.0,1.9322939109238726e-21,1.0587911840678754e-22,2.220002215835848e-06,15.0,15.0,14.0,0.012486286461353302,-0.0012312674662098289,-0.0012312674662098289,-0.0013095238246023655,3.501400715322234e-05,4.4642856664722785e-05,4.761904710903764e-05,3.501400715322234e-05,4.761904710903764e-05,3.968253804487176e-05,-0.0012312674662098289,0.00033211169647984207,4.4642856664722785e-05,4.761904710903764e-05,-1.6160311133717187e-05,-6.377551017067162e-06,-6.80272114550462e-06,-1.6517142471458857e-20,-8.187867488195318e-21,-2.625802136488331e-20,-0.0012312674662098289,4.4642856664722785e-05,0.00033211169647984207,4.761904710903764e-05,-3.0731588600980545e-20,-6.377551017067162e-06,8.470329472543003e-22,-1.6160311133717187e-05,-6.80272114550462e-06,-2.710505431213761e-20,-0.0013095238246023655,4.761904710903764e-05,4.761904710903764e-05,0.00038003662484698,-3.334941813808054e-20,-1.3933699393839217e-22,-7.32600710762199e-06,-2.808270424799286e-20,-7.32600710762199e-06,-1.984126902243588e-05,3.501400715322234e-05,-1.6160311133717187e-05,-3.0731588600980545e-20,-3.334941813808054e-20,1.1543078244358185e-06,9.17212032866679e-22,1.1380540093147612e-21,1.352311660398664e-21,8.263676188149941e-22,1.5097057940535355e-21,4.4642856664722785e-05,-6.377551017067162e-06,-6.377551017067162e-06,-1.3933699393839217e-22,9.17212032866679e-22,9.110787004829035e-07,1.681221370948979e-22,-3.1763735522036263e-22,-1.6936755282673739e-22,5.34322036275652e-24,4.761904710903764e-05,-6.80272114550462e-06,8.470329472543003e-22,-7.32600710762199e-06,1.1380540093147612e-21,1.681221370948979e-22,1.046572492668929e-06,6.617444900424222e-24,-2.9116757561866574e-22,7.411538288475128e-22,3.501400715322234e-05,-1.6517142471458857e-20,-1.6160311133717187e-05,-2.808270424799286e-20,1.352311660398664e-21,-3.1763735522036263e-22,6.617444900424222e-24,1.1543078244358185e-06,1.1117307432712692e-21,1.5352472168984194e-21,4.761904710903764e-05,-8.187867488195318e-21,-6.80272114550462e-06,-7.32600710762199e-06,8.263676188149941e-22,-1.6936755282673739e-22,-2.9116757561866574e-22,1.1117307432712692e-21,1.046572492668929e-06,8.470329472543003e-22,3.968253804487176e-05,-2.625802136488331e-20,-2.710505431213761e-20,-1.984126902243588e-05,1.5097057940535355e-21,5.34322036275652e-24,7.411538288475128e-22,1.5352472168984194e-21,8.470329472543003e-22,1.5262514807545813e-06,15.0,15.0,15.0,0.01172848604619503,-0.0011519608087837696,-0.0011519608087837696,-0.0011519608087837696,3.267973806941882e-05,4.166666622040793e-05,4.166666622040793e-05,3.267973806941882e-05,4.166666622040793e-05,3.267973806941882e-05,-0.0011519608087837696,0.00031036772998049855,4.166666622040793e-05,4.166666622040793e-05,-1.508295645180624e-05,-5.952380888629705e-06,-5.952380888629705e-06,-1.8422966602781032e-20,-1.190228487036061e-20,-1.7787691892340307e-20,-0.0011519608087837696,4.166666622040793e-05,0.00031036772998049855,4.166666622040793e-05,-2.930629501324059e-20,-5.952380888629705e-06,1.0587911840678754e-22,-1.508295645180624e-05,-5.952380888629705e-06,-1.8634724839594607e-20,-0.0011519608087837696,4.166666622040793e-05,4.166666622040793e-05,0.00031036772998049855,-2.9542299981759626e-20,2.5966821073625183e-21,-5.952380888629705e-06,-2.4181579923112136e-20,-5.952380888629705e-06,-1.508295645180624e-05,3.267973806941882e-05,-1.508295645180624e-05,-2.930629501324059e-20,-2.9542299981759626e-20,1.0773539997899206e-06,9.465705832379717e-22,9.494328987682501e-22,1.2522734953260736e-21,7.360017719646271e-22,1.2666212217395864e-21,4.166666622040793e-05,-5.952380888629705e-06,-5.952380888629705e-06,2.5966821073625183e-21,9.465705832379717e-22,8.503401431880775e-07,-2.9133716178062653e-22,1.5881867761018131e-22,-4.980041029336797e-23,-1.3102757965806639e-23,4.166666622040793e-05,-5.952380888629705e-06,1.0587911840678754e-22,-5.952380888629705e-06,9.494328987682501e-22,-2.9133716178062653e-22,8.503401431880775e-07,0.0,2.6469779601696886e-22,1.0587911840678754e-22,3.267973806941882e-05,-1.8422966602781032e-20,-1.508295645180624e-05,-2.4181579923112136e-20,1.2522734953260736e-21,1.5881867761018131e-22,0.0,1.0773539997899206e-06,9.529120656610879e-22,1.257314531080602e-21,4.166666622040793e-05,-1.190228487036061e-20,-5.952380888629705e-06,-5.952380888629705e-06,7.360017719646271e-22,-4.980041029336797e-23,2.6469779601696886e-22,9.529120656610879e-22,8.503401431880775e-07,2.117582368135751e-22,3.267973806941882e-05,-1.7787691892340307e-20,-1.8634724839594607e-20,-1.508295645180624e-05,1.2666212217395864e-21,-1.3102757965806639e-23,1.0587911840678754e-22,1.257314531080602e-21,2.117582368135751e-22,1.0773539997899206e-06,15.0,15.0,16.0,0.011057580821216106,-0.0010822609765455127,-0.0010822609765455127,-0.0010212418856099248,3.0637256713816896e-05,3.9062499126885086e-05,3.676470441860147e-05,3.0637256713816896e-05,3.676470441860147e-05,2.7233116270508617e-05,-0.0010822609765455127,0.00029129799804650247,3.9062499126885086e-05,3.676470441860147e-05,-1.4140271559881512e-05,-5.580357083090348e-06,-5.25210089108441e-06,-1.3552527156068805e-20,-8.568646835369606e-21,-1.1858461261560205e-20,-0.0010822609765455127,3.9062499126885086e-05,0.00029129799804650247,3.676470441860147e-05,-2.702557388749863e-20,-5.580357083090348e-06,9.529120656610879e-22,-1.4140271559881512e-05,-5.25210089108441e-06,-1.164670302474663e-20,-0.0010212418856099248,3.676470441860147e-05,3.676470441860147e-05,0.00025676938821561635,-2.5267598597147503e-20,1.2768237554643143e-21,-4.901960892311763e-06,-2.0223032784731463e-20,-4.901960892311763e-06,-1.1671335414575879e-05,3.0637256713816896e-05,-1.4140271559881512e-05,-2.702557388749863e-20,-2.5267598597147503e-20,1.0100194458573242e-06,8.02181875523838e-22,7.043134439720653e-22,1.1823133217703375e-21,6.469988748100903e-22,1.0528338074858422e-21,3.9062499126885086e-05,-5.580357083090348e-06,-5.580357083090348e-06,1.2768237554643143e-21,8.02181875523838e-22,7.971938771333953e-07,-1.2363739974704568e-22,-4.235164736271502e-22,-5.084550584237925e-23,-5.801907085971351e-24,3.676470441860147e-05,-5.25210089108441e-06,9.529120656610879e-22,-4.901960892311763e-06,7.043134439720653e-22,-1.2363739974704568e-22,7.002801112321322e-07,0.0,0.0,-3.970466940254533e-22,3.0637256713816896e-05,-1.3552527156068805e-20,-1.4140271559881512e-05,-2.0223032784731463e-20,1.1823133217703375e-21,-4.235164736271502e-22,0.0,1.0100194458573242e-06,6.617444900424221e-22,1.045556294267027e-21,3.676470441860147e-05,-8.568646835369606e-21,-5.25210089108441e-06,-4.901960892311763e-06,6.469988748100903e-22,-5.084550584237925e-23,0.0,6.617444900424221e-22,7.002801112321322e-07,-3.705769144237564e-22,2.7233116270508617e-05,-1.1858461261560205e-20,-1.164670302474663e-20,-1.1671335414575879e-05,1.0528338074858422e-21,-5.801907085971351e-24,-3.970466940254533e-22,1.045556294267027e-21,-3.705769144237564e-22,7.780890314279532e-07,15.0,16.0,3.0,0.04153560847043991,-0.004825367592275143,-0.0045547387562692165,-0.017233455553650856,0.00015318627993110567,0.00018382353300694376,0.0007812500116415322,0.00013616557407658547,0.000735294132027775,0.0020833334419876337,-0.004825367592275143,0.0013727847253903747,0.00018382353300694376,0.0007812500116415322,-7.070136052789167e-05,-2.626050445542205e-05,-0.00011160714348079637,-5.570514710858532e-20,-1.779622219240726e-19,-2.775235829663639e-18,-0.0045547387562692165,0.00018382353300694376,0.0012103174813091755,0.000735294132027775,-1.2000242603491208e-19,-2.4509803552064113e-05,-2.6074994729658882e-20,-5.835667616338469e-05,-9.803921420825645e-05,-4.265682022063904e-33,-0.017233455553650856,0.0007812500116415322,0.000735294132027775,0.038066789507865906,-5.697566809513322e-19,-1.887575913086145e-20,-0.0007812500116415322,-2.9029735475512386e-22,-0.000735294132027775,-0.012500000186264515,0.00015318627993110567,-7.070136052789167e-05,-1.2000242603491208e-19,-5.697566809513322e-19,5.050097115599783e-06,4.27630243146181e-21,1.6816675557256818e-20,5.114600302979936e-21,1.2427863637790726e-20,1.7941548778744877e-19,0.00018382353300694376,-2.626050445542205e-05,-2.4509803552064113e-05,-1.887575913086145e-20,4.27630243146181e-21,3.5014006698474986e-06,3.0264565577528016e-21,-1.8621176525889784e-21,-3.079250007294774e-22,1.534821622115804e-34,0.0007812500116415322,-0.00011160714348079637,-2.6074994729658882e-20,-0.0007812500116415322,1.6816675557256818e-20,3.0264565577528016e-21,0.00011160714348079637,-1.0179430197624452e-22,6.530723818147916e-21,2.6341894894056773e-19,0.00013616557407658547,-5.570514710858532e-20,-5.835667616338469e-05,-2.9029735475512386e-22,5.114600302979936e-21,-1.8621176525889784e-21,-1.0179430197624452e-22,3.890444986609509e-06,1.3371433419388786e-22,1.8309346183951886e-34,0.000735294132027775,-1.779622219240726e-19,-9.803921420825645e-05,-0.000735294132027775,1.2427863637790726e-20,-3.079250007294774e-22,6.530723818147916e-21,1.3371433419388786e-22,9.803921420825645e-05,4.4647842246348095e-34,0.0020833334419876337,-2.775235829663639e-18,-4.265682022063904e-33,-0.012500000186264515,1.7941548778744877e-19,1.534821622115804e-34,2.6341894894056773e-19,1.8309346183951886e-34,4.4647842246348095e-34,0.0062500000931322575,15.0,16.0,4.0,0.0336325578391552,-0.0037362133152782917,-0.003526348154991865,-0.010965073481202126,0.00011488970631035045,0.00013786765339318663,0.00046874998952262104,0.00010212418419541791,0.00044117646757513285,0.0010416667209938169,-0.0037362133152782917,0.001046329620294273,0.00013786765339318663,0.00046874998952262104,-5.3026018576929346e-05,-1.969537879631389e-05,-6.696428317809477e-05,-5.692463751368723e-20,-1.1180909866999777e-19,-1.2128076646318801e-18,-0.003526348154991865,0.00013786765339318663,0.0009224439854733646,0.00044117646757513285,-8.581836650289419e-20,-1.8382352209300734e-05,-1.2574484632540018e-20,-4.376750803203322e-05,-5.8823530707741156e-05,-1.9592170888988252e-19,-0.010965073481202126,0.00046874998952262104,0.00044117646757513285,0.014601715840399265,-3.147383456673057e-19,-3.470659614887488e-21,-0.0003124999930150807,2.049259390191823e-21,-0.00029411763534881175,-0.0031250000465661287,0.00011488970631035045,-5.3026018576929346e-05,-8.581836650289419e-20,-3.147383456673057e-19,3.7875727230129996e-06,2.273495614234018e-21,9.854340770044167e-21,3.84758659454101e-21,7.649559509737262e-21,6.279542266431163e-20,0.00013786765339318663,-1.969537879631389e-05,-1.8382352209300734e-05,-3.470659614887488e-21,2.273495614234018e-21,2.626050445542205e-06,7.974470440182801e-22,4.804505215319955e-22,-2.815292857004499e-22,4.062143143358672e-35,0.00046874998952262104,-6.696428317809477e-05,-1.2574484632540018e-20,-0.0003124999930150807,9.854340770044167e-21,7.974470440182801e-22,4.4642856664722785e-05,1.3589440179256406e-23,4.5155288807258274e-21,2.2244789186959786e-19,0.00010212418419541791,-5.692463751368723e-20,-4.376750803203322e-05,2.049259390191823e-21,3.84758659454101e-21,4.804505215319955e-22,1.3589440179256406e-23,2.9178338536439696e-06,-2.859180533932182e-22,6.513960045136584e-35,0.00044117646757513285,-1.1180909866999777e-19,-5.8823530707741156e-05,-0.00029411763534881175,7.649559509737262e-21,-2.815292857004499e-22,4.5155288807258274e-21,-2.859180533932182e-22,3.9215687138494104e-05,1.3061446828502265e-19,0.0010416667209938169,-1.2128076646318801e-18,-1.9592170888988252e-19,-0.0031250000465661287,6.279542266431163e-20,4.062143143358672e-35,2.2244789186959786e-19,6.513960045136584e-35,1.3061446828502265e-19,0.0010416667209938169,15.0,16.0,5.0,0.028308531269431114,-0.003051470499485731,-0.002879902021959424,-0.007607668172568083,9.191176650347188e-05,0.00011029411689378321,0.0003124999930150807,8.169934881152585e-05,0.00029411763534881175,0.0005952381179668009,-0.003051470499485731,0.0008459922391921282,0.00011029411689378321,0.0003124999930150807,-4.242081558913924e-05,-1.575630267325323e-05,-4.4642856664722785e-05,-1.0164395367051604e-20,-2.39710324072967e-19,-1.4041208918352883e-18,-0.002879902021959424,0.00011029411689378321,0.0007457983447238803,0.00029411763534881175,-2.3757241115633834e-20,-1.4705882676935289e-05,-2.9065893709012806e-19,-3.501400715322234e-05,-3.9215687138494104e-05,-8.124723589848574e-19,-0.007607668172568083,0.0003124999930150807,0.00029411763534881175,0.007375262677669525,-4.430904620522987e-19,-1.5354430260590472e-19,-0.00015624999650754035,-2.473336205982557e-19,-0.00014705881767440587,-0.0011904762359336019,9.191176650347188e-05,-4.242081558913924e-05,-2.3757241115633834e-20,-4.430904620522987e-19,3.030058223885135e-06,1.6463498314316694e-21,1.4170321213720812e-20,-8.557410628801775e-22,9.815016571411653e-21,5.766926162369834e-20,0.00011029411689378321,-1.575630267325323e-05,-1.4705882676935289e-05,-1.5354430260590472e-19,1.6463498314316694e-21,2.1008404473832343e-06,3.7397009169139275e-21,-1.0587911840678754e-21,3.282252670610414e-21,1.9325611290358185e-20,0.0003124999930150807,-4.4642856664722785e-05,-2.9065893709012806e-19,-0.00015624999650754035,1.4170321213720812e-20,3.7397009169139275e-21,2.2321428332361393e-05,1.240562346530556e-20,3.1644495498032183e-20,2.1174355435770227e-19,8.169934881152585e-05,-1.0164395367051604e-20,-3.501400715322234e-05,-2.473336205982557e-19,-8.557410628801775e-22,-1.0587911840678754e-21,1.240562346530556e-20,2.3342670374404406e-06,5.717472393966527e-21,2.2213345660807687e-20,0.00029411763534881175,-2.39710324072967e-19,-3.9215687138494104e-05,-0.00014705881767440587,9.815016571411653e-21,3.282252670610414e-21,3.1644495498032183e-20,5.717472393966527e-21,1.9607843569247052e-05,1.5955698800567318e-19,0.0005952381179668009,-1.4041208918352883e-18,-8.124723589848574e-19,-0.0011904762359336019,5.766926162369834e-20,1.9325611290358185e-20,2.1174355435770227e-19,2.2213345660807687e-20,1.5955698800567318e-19,0.00029761905898340046,15.0,16.0,6.0,0.0244606863707304,-0.0025800946168601513,-0.002434932393953204,-0.005593487527221441,7.659313996555284e-05,9.191176650347188e-05,0.00022321428696159273,6.808278703829274e-05,0.0002100840356433764,0.00037202381645329297,-0.0025800946168601513,0.0007103081443347037,9.191176650347188e-05,0.00022321428696159273,-3.535068026394583e-05,-1.3130252227711026e-05,-3.188775372109376e-05,-2.710505431213761e-20,-3.3881317890172014e-20,-2.836555865845537e-19,-0.002434932393953204,9.191176650347188e-05,0.0006261671078391373,0.0002100840356433764,-6.230136965641873e-20,-1.2254901776032057e-05,2.9401310923759083e-21,-2.9178338081692345e-05,-2.801120535877999e-05,-4.355432485117124e-34,-0.005593487527221441,0.00022321428696159273,0.0002100840356433764,0.0042835259810090065,-1.420550611655758e-19,4.926985804192036e-21,-8.928571332944557e-05,3.3881317890172014e-21,-8.403361425735056e-05,-0.0005580357392318547,7.659313996555284e-05,-3.535068026394583e-05,-6.230136965641873e-20,-1.420550611655758e-19,2.5250485577998916e-06,2.140698794692662e-21,3.6340782729646454e-21,2.5050403505731596e-21,3.590370986437881e-21,1.762116363292719e-20,9.191176650347188e-05,-1.3130252227711026e-05,-1.2254901776032057e-05,4.926985804192036e-21,2.140698794692662e-21,1.7507003349237493e-06,7.391847815409832e-22,-1.0587911840678754e-21,-1.164670302474663e-21,1.6745315937899922e-35,0.00022321428696159273,-3.188775372109376e-05,2.9401310923759083e-21,-8.928571332944557e-05,3.6340782729646454e-21,7.391847815409832e-22,1.2755102034134325e-05,-4.376263931876187e-23,-3.0622676621626657e-21,1.478371602760723e-20,6.808278703829274e-05,-2.710505431213761e-20,-2.9178338081692345e-05,3.3881317890172014e-21,2.5050403505731596e-21,-1.0587911840678754e-21,-4.376263931876187e-23,1.9452224933047546e-06,-2.117582368135751e-22,1.77440700065069e-35,0.0002100840356433764,-3.3881317890172014e-20,-2.801120535877999e-05,-8.403361425735056e-05,3.590370986437881e-21,-1.164670302474663e-21,-3.0622676621626657e-21,-2.117582368135751e-22,1.1204481779714115e-05,2.1034574576947667e-35,0.00037202381645329297,-2.836555865845537e-19,-4.355432485117124e-34,-0.0005580357392318547,1.762116363292719e-20,1.6745315937899922e-35,1.478371602760723e-20,1.77440700065069e-35,2.1034574576947667e-35,0.00011160714348079637,15.0,16.0,7.0,0.021543461829423904,-0.002235425403341651,-0.0021095939446240664,-0.004288121592253447,6.565126386703923e-05,7.878151518525556e-05,0.00016741071885917336,5.835667616338469e-05,0.00015756303037051111,0.00024801588733680546,-0.002235425403341651,0.0006122521008364856,7.878151518525556e-05,0.00016741071885917336,-3.0300581784103997e-05,-1.1254502169322222e-05,-2.391581620031502e-05,-1.2281977735187355e-20,-2.795208725939191e-20,8.464728555067224e-20,-0.0021095939446240664,7.878151518525556e-05,0.0005397158674895763,0.00015756303037051111,1.0074382122093209e-20,-1.050420178216882e-05,-7.381554283739788e-20,-2.501000381016638e-05,-2.100840356433764e-05,2.6925936105307495e-19,-0.004288121592253447,0.00016741071885917336,0.00015756303037051111,0.0027190563268959522,5.767257680849709e-20,-5.454419911886715e-20,-5.5803571740398183e-05,1.0164395367051604e-19,-5.25210089108441e-05,-0.00029761905898340046,6.565126386703923e-05,-3.0300581784103997e-05,1.0074382122093209e-20,5.767257680849709e-20,2.1643272702931426e-06,-3.671148626571183e-22,6.423973797301765e-22,-6.078676883529789e-22,-5.201776072060236e-22,-1.0198915617341488e-20,7.878151518525556e-05,-1.1254502169322222e-05,-1.050420178216882e-05,-5.454419911886715e-20,-3.671148626571183e-22,1.5006002058726153e-06,2.3169704581618935e-21,1.376428539288238e-21,2.752857078576476e-21,2.110267797387052e-21,0.00016741071885917336,-2.391581620031502e-05,-7.381554283739788e-20,-5.5803571740398183e-05,6.423973797301765e-22,2.3169704581618935e-21,7.97193843027344e-06,2.838106562922197e-21,2.369460884142065e-21,1.0169897249036075e-20,5.835667616338469e-05,-1.2281977735187355e-20,-2.501000381016638e-05,1.0164395367051604e-19,-6.078676883529789e-22,1.376428539288238e-21,2.838106562922197e-21,1.6673335494488128e-06,-8.470329472543003e-22,-1.9436678059051902e-20,0.00015756303037051111,-2.795208725939191e-20,-2.100840356433764e-05,-5.25210089108441e-05,-5.201776072060236e-22,2.752857078576476e-21,2.369460884142065e-21,-8.470329472543003e-22,7.002801339694997e-06,-9.490984722315343e-22,0.00024801588733680546,8.464728555067224e-20,2.6925936105307495e-19,-0.00029761905898340046,-1.0198915617341488e-20,2.110267797387052e-21,1.0169897249036075e-20,-1.9436678059051902e-20,-9.490984722315343e-22,4.960317528457381e-05,15.0,16.0,8.0,0.01925296150147915,-0.001972273224964738,-0.0018612132407724857,-0.00339307589456439,5.7444853155175224e-05,6.893382669659331e-05,0.0001302083401242271,5.1062092097708955e-05,0.00012254902685526758,0.00017361111531499773,-0.001972273224964738,0.0005380457732826471,6.893382669659331e-05,0.0001302083401242271,-2.6513009288464673e-05,-9.847689398156945e-06,-1.860119118646253e-05,-3.006966962752766e-20,-3.134021904840911e-20,-9.487901858946449e-20,-0.0018612132407724857,6.893382669659331e-05,0.00047429389087483287,0.00012254902685526758,-4.537413947158964e-20,-9.191176104650367e-06,-3.4076626218788294e-21,-2.188375401601661e-05,-1.633986903470941e-05,-1.7711787533719962e-34,-0.00339307589456439,0.0001302083401242271,0.00012254902685526758,0.0018375058425590396,-8.562878058390616e-20,-1.349731163849054e-21,-3.720238237292506e-05,0.0,-3.501400715322234e-05,-0.00017361111531499773,5.7444853155175224e-05,-2.6513009288464673e-05,-4.537413947158964e-20,-8.562878058390616e-20,1.8937863615064998e-06,1.2442154515731965e-21,2.4660899584137504e-21,1.9284395239191883e-21,2.1449253725833167e-21,7.475645593741555e-21,6.893382669659331e-05,-9.847689398156945e-06,-9.191176104650367e-06,-1.349731163849054e-21,1.2442154515731965e-21,1.3130252227711026e-06,2.482231996287843e-22,2.6469779601696886e-22,0.0,4.6066435486993903e-36,0.0001302083401242271,-1.860119118646253e-05,-3.4076626218788294e-21,-3.720238237292506e-05,2.4660899584137504e-21,2.482231996287843e-22,5.314625923347194e-06,7.412013214294507e-24,5.0081358371597e-22,-2.7942906281606783e-21,5.1062092097708955e-05,-3.006966962752766e-20,-2.188375401601661e-05,0.0,1.9284395239191883e-21,2.6469779601696886e-22,7.412013214294507e-24,1.4589169268219848e-06,1.0587911840678754e-22,7.814814726975263e-36,0.00012254902685526758,-3.134021904840911e-20,-1.633986903470941e-05,-3.501400715322234e-05,2.1449253725833167e-21,0.0,5.0081358371597e-22,1.0587911840678754e-22,4.668534074880881e-06,7.858993340345767e-36,0.00017361111531499773,-9.487901858946449e-20,-1.7711787533719962e-34,-0.00017361111531499773,7.475645593741555e-21,4.6066435486993903e-36,-2.7942906281606783e-21,7.814814726975263e-36,7.858993340345767e-36,2.4801587642286904e-05,15.0,16.0,9.0,0.01740553043782711,-0.0017647058703005314,-0.0016653049970045686,-0.002752339467406273,5.1062092097708955e-05,6.127451342763379e-05,0.00010416666918899864,4.538852590485476e-05,9.803921420825645e-05,0.00012626263196580112,-0.0017647058703005314,0.00047991631436161697,6.127451342763379e-05,0.00010416666918899864,-2.3567119569634087e-05,-8.753501788305584e-06,-1.4880952221574262e-05,-3.3034284942917713e-20,-1.7575933655526732e-20,-6.291209390477282e-20,-0.0016653049970045686,6.127451342763379e-05,0.00042304699309170246,9.803921420825645e-05,-4.663328930965434e-20,-8.169934517354704e-06,7.755860296385995e-21,-1.9452225387794897e-05,-1.3071895409666467e-05,-1.4771662644784854e-34,-0.002752339467406273,0.00010416666918899864,9.803921420825645e-05,0.0013013605494052172,-7.541112254022438e-20,6.203867518844779e-21,-2.604166729724966e-05,-1.6940658945086007e-21,-2.4509803552064113e-05,-0.00010822511103469878,5.1062092097708955e-05,-2.3567119569634087e-05,-4.663328930965434e-20,-7.541112254022438e-20,1.6833656673043151e-06,1.867193827363669e-21,2.82201693065576e-21,1.7872858779793808e-21,1.7231838233711393e-21,5.281494896775663e-21,6.127451342763379e-05,-8.753501788305584e-06,-8.169934517354704e-06,6.203867518844779e-21,1.867193827363669e-21,1.1671335187202203e-06,-5.275629608660262e-22,1.0587911840678754e-21,-3.1763735522036263e-22,6.033376858135902e-36,0.00010416666918899864,-1.4880952221574262e-05,7.755860296385995e-21,-2.604166729724966e-05,2.82201693065576e-21,-5.275629608660262e-22,3.7202380553935654e-06,5.819762163700123e-25,-1.0588386419399335e-21,-2.757208662521616e-21,4.538852590485476e-05,-3.3034284942917713e-20,-1.9452225387794897e-05,-1.6940658945086007e-21,1.7872858779793808e-21,1.0587911840678754e-21,5.819762163700123e-25,1.2968150713277282e-06,2.117582368135751e-22,5.438372167401429e-36,9.803921420825645e-05,-1.7575933655526732e-20,-1.3071895409666467e-05,-2.4509803552064113e-05,1.7231838233711393e-21,-3.1763735522036263e-22,-1.0588386419399335e-21,2.117582368135751e-22,3.267973852416617e-06,5.97482060863057e-36,0.00012626263196580112,-6.291209390477282e-20,-1.4771662644784854e-34,-0.00010822511103469878,5.281494896775663e-21,6.033376858135902e-36,-2.757208662521616e-21,5.438372167401429e-36,5.97482060863057e-36,1.3528138879337348e-05,15.0,16.0,10.0,0.01588328182697296,-0.0015967580256983638,-0.0015067958738654852,-0.002277740743011236,4.595588325173594e-05,5.5147058446891606e-05,8.522727148374543e-05,4.0849674405762926e-05,8.021390385692939e-05,9.469696669839323e-05,-0.0015967580256983638,0.0004331422387622297,5.5147058446891606e-05,8.522727148374543e-05,-2.121040779456962e-05,-7.878151336626615e-06,-1.2175324627605733e-05,-6.776263578034403e-21,-6.606856988583543e-20,-1.8447509310049422e-19,-0.0015067958738654852,5.5147058446891606e-05,0.00038181181298568845,8.021390385692939e-05,-1.437754772862382e-20,-7.3529413384676445e-06,-7.526697985613848e-20,-1.750700357661117e-05,-1.069518748408882e-05,-8.820396185184566e-20,-0.002277740743011236,8.522727148374543e-05,8.021390385692939e-05,0.0009559752070344985,-1.3181572840490572e-19,-5.265132876518452e-20,-1.8939394067274407e-05,-7.665648172651418e-20,-1.7825312170316465e-05,-7.102272502379492e-05,4.595588325173594e-05,-2.121040779456962e-05,-1.437754772862382e-20,-1.3181572840490572e-19,1.5150291119425674e-06,7.928207597732806e-22,4.0019652348104705e-21,-4.1558921670147146e-22,2.679113603849947e-21,8.155249591755593e-21,5.5147058446891606e-05,-7.878151336626615e-06,-7.3529413384676445e-06,-5.265132876518452e-20,7.928207597732806e-22,1.0504202236916171e-06,1.1758590511704364e-21,-4.764560328305439e-22,1.1911400820763599e-21,3.074528958766952e-21,8.522727148374543e-05,-1.2175324627605733e-05,-7.526697985613848e-20,-1.8939394067274407e-05,4.0019652348104705e-21,1.1758590511704364e-21,2.7056275939685293e-06,3.1412506879128004e-21,3.5331687005817116e-21,9.497081140365087e-21,4.0849674405762926e-05,-6.776263578034403e-21,-1.750700357661117e-05,-7.665648172651418e-20,-4.1558921670147146e-22,-4.764560328305439e-22,3.1412506879128004e-21,1.1671335187202203e-06,1.9058241313221758e-21,3.533941355128496e-21,8.021390385692939e-05,-6.606856988583543e-20,-1.069518748408882e-05,-1.7825312170316465e-05,2.679113603849947e-21,1.1911400820763599e-21,3.5331687005817116e-21,1.9058241313221758e-21,2.3767081529513234e-06,2.158916963008002e-21,9.469696669839323e-05,-1.8447509310049422e-19,-8.820396185184566e-20,-7.102272502379492e-05,8.155249591755593e-21,3.074528958766952e-21,9.497081140365087e-21,3.533941355128496e-21,2.158916963008002e-21,7.89141449786257e-06,15.0,16.0,11.0,0.014606935903429985,-0.0014580547576770186,-0.0013758912682533264,-0.0019163282122462988,4.177807568339631e-05,5.013369082007557e-05,7.102272502379492e-05,3.713606565725058e-05,6.68449210934341e-05,7.284382445504889e-05,-0.0014580547576770186,0.0003946880460716784,5.013369082007557e-05,7.102272502379492e-05,-1.9282188077340834e-05,-7.1619556365476456e-06,-1.014610370475566e-05,-1.6517142471458857e-20,-1.3129010682441655e-20,-3.667699449014518e-20,-0.0013758912682533264,5.013369082007557e-05,0.0003479119041003287,6.68449210934341e-05,-3.579715219937579e-20,-6.684491836494999e-06,3.8033885734223254e-21,-1.591545697010588e-05,-8.912656085158233e-06,-7.663083259265253e-35,-0.0019163282122462988,7.102272502379492e-05,6.68449210934341e-05,0.0007232034695334733,-4.729634888762375e-20,1.2532785924717465e-22,-1.4204545550455805e-05,-8.470329472543003e-22,-1.3368983672989998e-05,-4.856254963669926e-05,4.177807568339631e-05,-1.9282188077340834e-05,-3.579715219937579e-20,-4.729634888762375e-20,1.3772992133453954e-06,1.2566088224256786e-21,1.3381642667897539e-21,1.4155007063278644e-21,1.1538592982456328e-21,2.927525473763711e-21,5.013369082007557e-05,-7.1619556365476456e-06,-6.684491836494999e-06,1.2532785924717465e-22,1.2566088224256786e-21,9.549273727316177e-07,-8.625945349634438e-23,-5.293955920339377e-22,2.6469779601696886e-23,2.5980412530706598e-36,7.102272502379492e-05,-1.014610370475566e-05,3.8033885734223254e-21,-1.4204545550455805e-05,1.3381642667897539e-21,-8.625945349634438e-23,2.029220695476397e-06,1.2460240118716248e-36,-6.399144242537752e-22,-8.616722871454808e-22,3.713606565725058e-05,-1.6517142471458857e-20,-1.591545697010588e-05,-8.470329472543003e-22,1.4155007063278644e-21,-5.293955920339377e-22,1.2460240118716248e-36,1.0610305025693378e-06,1.0587911840678754e-22,3.010461551949551e-36,6.68449210934341e-05,-1.3129010682441655e-20,-8.912656085158233e-06,-1.3368983672989998e-05,1.1538592982456328e-21,2.6469779601696886e-23,-6.399144242537752e-22,1.0587911840678754e-22,1.7825311715569114e-06,2.6575232115519128e-36,7.284382445504889e-05,-3.667699449014518e-20,-7.663083259265253e-35,-4.856254963669926e-05,2.927525473763711e-21,2.5980412530706598e-36,-8.616722871454808e-22,3.010461551949551e-36,2.6575232115519128e-36,4.856254690821515e-06,15.0,16.0,12.0,0.013521147891879082,-0.0013415582943707705,-0.0012659471249207854,-0.0016347164055332541,3.829656998277642e-05,4.595588325173594e-05,6.009615390212275e-05,3.404139351914637e-05,5.656108623952605e-05,5.723443246097304e-05,-0.0013415582943707705,0.0003625128010753542,4.595588325173594e-05,6.009615390212275e-05,-1.7675340131972916e-05,-6.565126113855513e-06,-8.585165232943837e-06,-1.3129010682441655e-20,-1.2281977735187355e-20,-3.737629814987634e-20,-0.0012659471249207854,4.595588325173594e-05,0.00031954768928699195,5.656108623952605e-05,-3.197484752399628e-20,-6.127450888016028e-06,-2.2265272650774914e-21,-1.4589169040846173e-05,-7.54147822590312e-06,-6.044915414256303e-35,-0.0016347164055332541,6.009615390212275e-05,5.656108623952605e-05,0.0005604995531029999,-3.8051674964154546e-20,8.153202844805343e-22,-1.0926573850156274e-05,4.235164736271502e-22,-1.0283833944413345e-05,-3.4340660931775346e-05,3.829656998277642e-05,-1.7675340131972916e-05,-3.197484752399628e-20,-3.8051674964154546e-20,1.2625242788999458e-06,1.0913561700289657e-21,8.343957237187963e-22,1.2691051869579464e-21,9.693575309937645e-22,2.267338611666753e-21,4.595588325173594e-05,-6.565126113855513e-06,-6.127450888016028e-06,8.153202844805343e-22,1.0913561700289657e-21,8.753501674618747e-07,1.9394419247364868e-22,-5.823351512373315e-22,-2.6469779601696886e-22,2.217769835030389e-36,6.009615390212275e-05,-8.585165232943837e-06,-2.2265272650774914e-21,-1.0926573850156274e-05,8.343957237187963e-22,1.9394419247364868e-22,1.5609390402460122e-06,7.405614410180411e-37,1.5798507251441617e-22,1.0242832526298875e-21,3.404139351914637e-05,-1.3129010682441655e-20,-1.4589169040846173e-05,4.235164736271502e-22,1.2691051869579464e-21,-5.823351512373315e-22,7.405614410180411e-37,9.726112466523773e-07,-5.293955920339377e-23,2.33157177202428e-36,5.656108623952605e-05,-1.2281977735187355e-20,-7.54147822590312e-06,-1.0283833944413345e-05,9.693575309937645e-22,-2.6469779601696886e-22,1.5798507251441617e-22,-5.293955920339377e-23,1.3711778592551127e-06,1.8093067133316493e-36,5.723443246097304e-05,-3.737629814987634e-20,-6.044915414256303e-35,-3.4340660931775346e-05,2.267338611666753e-21,2.217769835030389e-36,1.0242832526298875e-21,2.33157177202428e-36,1.8093067133316493e-36,3.1218780804920243e-06,15.0,16.0,13.0,0.012586075812578201,-0.0012423238949850202,-0.001172295887954533,-0.0014109971234574914,3.535068026394583e-05,4.242081558913924e-05,5.1510989578673616e-05,3.142282730550505e-05,4.848093158216216e-05,4.578754669637419e-05,-0.0012423238949850202,0.0003351932391524315,4.242081558913924e-05,5.1510989578673616e-05,-1.631569830351509e-05,-6.06011644777027e-06,-7.358712537097745e-06,-1.3552527156068805e-20,-7.527246639004518e-21,-2.583450489125616e-20,-0.001172295887954533,4.242081558913924e-05,0.00029546432779170573,4.848093158216216e-05,-2.8913581323908237e-20,-5.6561084420536645e-06,2.117582368135751e-21,-1.3466925338434521e-05,-6.464123998739524e-06,1.2705494208814505e-21,-0.0014109971234574914,5.1510989578673616e-05,4.848093158216216e-05,0.00044329138472676277,-3.783021997336335e-20,-5.47675102173268e-22,-8.585165232943837e-06,3.6422934830533915e-22,-8.080155566858593e-06,-2.4975024643936194e-05,3.535068026394583e-05,-1.631569830351509e-05,-2.8913581323908237e-20,-3.783021997336335e-20,1.1654069567157421e-06,8.78390988652177e-22,1.4351866355543461e-21,1.1846886387539431e-21,8.349827372064766e-22,1.7933839116162585e-21,4.242081558913924e-05,-6.06011644777027e-06,-5.6561084420536645e-06,-5.47675102173268e-22,8.78390988652177e-22,8.080154998424405e-07,1.8927775836401706e-22,-3.705769144237564e-22,-1.0913118171134306e-22,-2.2688367358341366e-24,5.1510989578673616e-05,-7.358712537097745e-06,2.117582368135751e-21,-8.585165232943837e-06,1.4351866355543461e-21,1.8927775836401706e-22,1.2264521274119033e-06,6.617444900424222e-24,-5.823351512373315e-22,1.0587911840678754e-22,3.142282730550505e-05,-1.3552527156068805e-20,-1.3466925338434521e-05,3.6422934830533915e-22,1.1846886387539431e-21,-3.705769144237564e-22,6.617444900424222e-24,8.977950187727401e-07,-1.0587911840678754e-22,2.6469779601696886e-23,4.848093158216216e-05,-7.527246639004518e-21,-6.464123998739524e-06,-8.080155566858593e-06,8.349827372064766e-22,-1.0913118171134306e-22,-5.823351512373315e-22,-1.0587911840678754e-22,1.0773539997899206e-06,-2.117582368135751e-22,4.578754669637419e-05,-2.583450489125616e-20,1.2705494208814505e-21,-2.4975024643936194e-05,1.7933839116162585e-21,-2.2688367358341366e-24,1.0587911840678754e-22,2.6469779601696886e-23,-2.117582368135751e-22,2.0812519778701244e-06,15.0,16.0,14.0,0.011772292666137218,-0.0011567751644179225,-0.0010915616294369102,-0.0012303045950829983,3.282563193351962e-05,3.939075759262778e-05,4.4642856664722785e-05,2.9178338081692345e-05,4.201680712867528e-05,3.720238237292506e-05,-0.0011567751644179225,0.00031170641887001693,3.939075759262778e-05,4.4642856664722785e-05,-1.5150290892051999e-05,-5.627251084661111e-06,-6.377551017067162e-06,-6.776263578034403e-21,-1.4513084180047473e-20,-2.117582368135751e-21,-0.0010915616294369102,3.939075759262778e-05,0.00027475989190861583,4.201680712867528e-05,4.1342293144944256e-21,-5.25210089108441e-06,-2.3928680759933985e-20,-1.250500190508319e-05,-5.6022408898570575e-06,1.5670109524204556e-20,-0.0012303045950829983,4.4642856664722785e-05,4.201680712867528e-05,0.00035668833879753947,8.544745031517232e-21,-1.9293861772002927e-20,-6.868132004456129e-06,2.213988491382959e-20,-6.464123998739524e-06,-1.860119118646253e-05,3.282563193351962e-05,-1.5150290892051999e-05,4.1342293144944256e-21,8.544745031517232e-21,1.0821636351465713e-06,-1.8668436236088488e-22,3.156718672542374e-22,-2.9939742696581274e-22,-4.074874810984978e-24,-9.317851336853698e-22,3.939075759262778e-05,-5.627251084661111e-06,-5.25210089108441e-06,-1.9293861772002927e-20,-1.8668436236088488e-22,7.503001029363077e-07,6.428238442464262e-22,6.352747104407253e-22,8.393460846454351e-22,5.243495580567137e-22,4.4642856664722785e-05,-6.377551017067162e-06,-2.3928680759933985e-20,-6.868132004456129e-06,3.156718672542374e-22,6.428238442464262e-22,9.811617474042578e-07,7.47771273747937e-22,9.661469554619363e-22,1.4823076576950256e-21,2.9178338081692345e-05,-6.776263578034403e-21,-1.250500190508319e-05,2.213988491382959e-20,-2.9939742696581274e-22,6.352747104407253e-22,7.47771273747937e-22,8.336667747244064e-07,0.0,-2.1705219273391446e-21,4.201680712867528e-05,-1.4513084180047473e-20,-5.6022408898570575e-06,-6.464123998739524e-06,-4.074874810984978e-24,8.393460846454351e-22,9.661469554619363e-22,0.0,8.61883222569304e-07,1.7999450129153882e-21,3.720238237292506e-05,-2.117582368135751e-21,1.5670109524204556e-20,-1.860119118646253e-05,-9.317851336853698e-22,5.243495580567137e-22,1.4823076576950256e-21,-2.1705219273391446e-21,1.7999450129153882e-21,1.4308608342616935e-06,15.0,16.0,15.0,0.011057580821216106,-0.0010822609765455127,-0.0010212418856099248,-0.0010822609765455127,3.0637256713816896e-05,3.676470441860147e-05,3.9062499126885086e-05,2.7233116270508617e-05,3.676470441860147e-05,3.0637256713816896e-05,-0.0010822609765455127,0.00029129799804650247,3.676470441860147e-05,3.9062499126885086e-05,-1.4140271559881512e-05,-5.25210089108441e-06,-5.580357083090348e-06,-1.1858461261560205e-20,-9.054193777002564e-21,-1.3976043629695956e-20,-0.0010212418856099248,3.676470441860147e-05,0.00025676938821561635,3.676470441860147e-05,-2.5021956651374798e-20,-4.901960892311763e-06,5.293955920339377e-22,-1.1671335414575879e-05,-4.901960892311763e-06,2.117582368135751e-22,-0.0010822609765455127,3.9062499126885086e-05,3.676470441860147e-05,0.00029129799804650247,-2.6642539180685426e-20,7.914500855514665e-22,-5.580357083090348e-06,-4.534495671729335e-22,-5.25210089108441e-06,-1.4140271559881512e-05,3.0637256713816896e-05,-1.4140271559881512e-05,-2.5021956651374798e-20,-2.6642539180685426e-20,1.0100194458573242e-06,6.923125093318253e-22,8.003262727263664e-22,1.0476516098054899e-21,6.358418824989174e-22,1.1632884706042054e-21,3.676470441860147e-05,-5.25210089108441e-06,-4.901960892311763e-06,7.914500855514665e-22,6.923125093318253e-22,7.002801112321322e-07,-1.3262135163248604e-22,-3.970466940254533e-22,-1.0349495158711668e-24,5.207095313812487e-24,3.9062499126885086e-05,-5.580357083090348e-06,5.293955920339377e-22,-5.580357083090348e-06,8.003262727263664e-22,-1.3262135163248604e-22,7.971938771333953e-07,6.617444900424222e-24,3.970466940254533e-23,-4.235164736271502e-22,2.7233116270508617e-05,-1.1858461261560205e-20,-1.1671335414575879e-05,-4.534495671729335e-22,1.0476516098054899e-21,-3.970466940254533e-22,6.617444900424222e-24,7.780890314279532e-07,0.0,2.6469779601696886e-23,3.676470441860147e-05,-9.054193777002564e-21,-4.901960892311763e-06,-5.25210089108441e-06,6.358418824989174e-22,-1.0349495158711668e-24,3.970466940254533e-23,0.0,7.002801112321322e-07,-1.0587911840678754e-22,3.0637256713816896e-05,-1.3976043629695956e-20,2.117582368135751e-22,-1.4140271559881512e-05,1.1632884706042054e-21,5.207095313812487e-24,-4.235164736271502e-22,2.6469779601696886e-23,-1.0587911840678754e-22,1.0100194458573242e-06,15.0,16.0,16.0,0.010424851439893246,-0.001016773865558207,-0.0009594417060725391,-0.0009594417060725391,2.8722426577587612e-05,3.446691334829666e-05,3.446691334829666e-05,2.5531046048854478e-05,3.24394459312316e-05,2.5531046048854478e-05,-0.001016773865558207,0.000273399637080729,3.446691334829666e-05,3.446691334829666e-05,-1.3256504644232336e-05,-4.923844699078472e-06,-4.923844699078472e-06,-1.4399560103323106e-20,-3.720367589579418e-21,-1.418780186650953e-20,-0.0009594417060725391,3.446691334829666e-05,0.00024099161964841187,3.24394459312316e-05,-2.2405007609262772e-20,-4.5955880523251835e-06,3.0704944337968387e-21,-1.0941877008008305e-05,-4.325259396864567e-06,2.541098841762901e-21,-0.0009594417060725391,3.446691334829666e-05,3.24394459312316e-05,0.00024099161964841187,-2.2376112833373102e-20,1.1733518618870268e-21,-4.5955880523251835e-06,2.5171602328161325e-22,-4.325259396864567e-06,-1.0941877008008305e-05,2.8722426577587612e-05,-1.3256504644232336e-05,-2.2405007609262772e-20,-2.2376112833373102e-20,9.468931807532499e-07,5.339697735938692e-22,5.37241892898079e-22,9.6850227955476e-22,5.5273698909924325e-22,9.652888767454476e-22,3.446691334829666e-05,-4.923844699078472e-06,-4.5955880523251835e-06,1.1733518618870268e-21,5.339697735938692e-22,6.565126113855513e-07,1.236636025508735e-23,1.0587911840678754e-22,-1.6664282726010401e-22,1.680333089903873e-24,3.446691334829666e-05,-4.923844699078472e-06,3.0704944337968387e-21,-4.5955880523251835e-06,5.37241892898079e-22,1.236636025508735e-23,6.565126113855513e-07,0.0,-4.1028158382630173e-22,1.0587911840678754e-22,2.5531046048854478e-05,-1.4399560103323106e-20,-1.0941877008008305e-05,2.5171602328161325e-22,9.6850227955476e-22,1.0587911840678754e-22,0.0,7.294584634109924e-07,-2.6469779601696886e-23,-1.3234889800848443e-23,3.24394459312316e-05,-3.720367589579418e-21,-4.325259396864567e-06,-4.325259396864567e-06,5.5273698909924325e-22,-1.6664282726010401e-22,-4.1028158382630173e-22,-2.6469779601696886e-23,5.767012680735206e-07,-3.1763735522036263e-22,2.5531046048854478e-05,-1.418780186650953e-20,2.541098841762901e-21,-1.0941877008008305e-05,9.652888767454476e-22,1.680333089903873e-24,1.0587911840678754e-22,-1.3234889800848443e-23,-3.1763735522036263e-22,7.294584634109924e-07,16.0,3.0,3.0,0.14770561456680298,-0.020016340538859367,-0.07444852590560913,-0.07444852590560913,0.0006808278849348426,0.0036764706019312143,0.0036764706019312143,0.010416666977107525,0.015625,0.010416666977107525,-0.020016340538859367,0.00568394036963582,0.0036764706019312143,0.0036764706019312143,-0.0002917833917308599,-0.0004901961074210703,-0.0004901961074210703,4.336808689942018e-19,5.421010862427522e-19,0.0,-0.07444852590560913,0.0036764706019312143,0.17861519753932953,0.015625,6.372386440100793e-19,-0.0036764706019312143,-1.734723475976807e-18,-0.0625,-0.015625,2.5536350948183872e-17,-0.07444852590560913,0.0036764706019312143,0.015625,0.17861519753932953,5.88097136288011e-19,-1.172044927828303e-18,-0.0036764706019312143,2.964424732976919e-17,-0.015625,-0.0625,0.0006808278849348426,-0.0002917833917308599,6.372386440100793e-19,5.88097136288011e-19,1.9452225387794897e-05,-2.740917566539583e-20,-2.5998330273394275e-20,-1.8144058102334344e-19,-3.2291431516405345e-20,-1.6415918828937094e-19,0.0036764706019312143,-0.0004901961074210703,-0.0036764706019312143,-1.172044927828303e-18,-2.740917566539583e-20,0.0004901961074210703,-2.014009500362595e-20,1.3065091334582386e-18,-2.7446015575692555e-19,8.273097044273742e-19,0.0036764706019312143,-0.0004901961074210703,-1.734723475976807e-18,-0.0036764706019312143,-2.5998330273394275e-20,-2.014009500362595e-20,0.0004901961074210703,9.741667816933676e-19,0.0,1.5178830414797062e-18,0.010416666977107525,4.336808689942018e-19,-0.0625,2.964424732976919e-17,-1.8144058102334344e-19,1.3065091334582386e-18,9.741667816933676e-19,0.03125,-4.0868657281014635e-18,-1.6237436310407726e-17,0.015625,5.421010862427522e-19,-0.015625,-0.015625,-3.2291431516405345e-20,-2.7446015575692555e-19,0.0,-4.0868657281014635e-18,0.015625,8.673617379884035e-19,0.010416666977107525,0.0,2.5536350948183872e-17,-0.0625,-1.6415918828937094e-19,8.273097044273742e-19,1.5178830414797062e-18,-1.6237436310407726e-17,8.673617379884035e-19,0.03125,16.0,3.0,4.0,0.12142565101385117,-0.015563725493848324,-0.05818014591932297,-0.04779411852359772,0.0005106209428049624,0.0027573530096560717,0.002205882454290986,0.0078125,0.00937500037252903,0.0052083334885537624,-0.015563725493848324,0.004336484707891941,0.0027573530096560717,0.002205882454290986,-0.0002188375365221873,-0.0003676470660138875,-0.00029411763534881175,-4.04157924392541e-18,4.038653092508504e-18,1.0408340855860843e-17,-0.05818014591932297,0.0027573530096560717,0.13630515336990356,0.00937500037252903,2.8946213599073454e-19,-0.0027573530096560717,4.824699667560495e-18,-0.046875,-0.00937500037252903,5.984795992119984e-17,-0.04779411852359772,0.002205882454290986,0.00937500037252903,0.06832107901573181,1.0711269285428787e-18,1.2188470757202523e-17,-0.00147058826405555,6.443468303525128e-17,-0.0062500000931322575,-0.015625,0.0005106209428049624,-0.0002188375365221873,2.8946213599073454e-19,1.0711269285428787e-18,1.4589169040846173e-05,1.3870501159258193e-21,-2.7746897999864744e-20,-8.520189076434344e-20,-9.441443389089379e-20,-2.28631842430256e-19,0.0027573530096560717,-0.0003676470660138875,-0.0027573530096560717,1.2188470757202523e-17,1.3870501159258193e-21,0.0003676470660138875,-2.6849496861889353e-19,6.325150291220952e-18,-9.410508126649603e-19,-2.8243240359349857e-18,0.002205882454290986,-0.00029411763534881175,4.824699667560495e-18,-0.00147058826405555,-2.7746897999864744e-20,-2.6849496861889353e-19,0.0001960784284165129,-6.672323681176169e-19,-7.589415207398531e-19,-2.0057740190981832e-18,0.0078125,-4.04157924392541e-18,-0.046875,6.443468303525128e-17,-8.520189076434344e-20,6.325150291220952e-18,-6.672323681176169e-19,0.0234375,-8.921960160829606e-18,-1.4266618943996033e-17,0.00937500037252903,4.038653092508504e-18,-0.00937500037252903,-0.0062500000931322575,-9.441443389089379e-20,-9.410508126649603e-19,-7.589415207398531e-19,-8.921960160829606e-18,0.0062500000931322575,-4.553649124439119e-18,0.0052083334885537624,1.0408340855860843e-17,5.984795992119984e-17,-0.015625,-2.28631842430256e-19,-2.8243240359349857e-18,-2.0057740190981832e-18,-1.4266618943996033e-17,-4.553649124439119e-18,0.0052083334885537624,16.0,3.0,5.0,0.10321545600891113,-0.01274509821087122,-0.04779411852359772,-0.03335084021091461,0.00040849673678167164,0.002205882454290986,0.00147058826405555,0.0062500000931322575,0.0062500000931322575,0.0029761905316263437,-0.01274509821087122,0.003508403431624174,0.002205882454290986,0.00147058826405555,-0.00017507003212813288,-0.00029411763534881175,-0.0001960784284165129,6.668691220913719e-18,5.705177129642751e-20,6.006591663593359e-19,-0.04779411852359772,0.002205882454290986,0.11029411852359772,0.0062500000931322575,2.890551372799643e-19,-0.002205882454290986,6.5034382155112175e-19,-0.03750000149011612,-0.0062500000931322575,-5.286776406212723e-18,-0.03335084021091461,0.00147058826405555,0.0062500000931322575,0.034532561898231506,-2.439454888092385e-19,3.006593762124837e-20,-0.000735294132027775,-3.743452597813336e-18,-0.0031250000465661287,-0.0059523810632526875,0.00040849673678167164,-0.00017507003212813288,2.890551372799643e-19,-2.439454888092385e-19,1.1671335414575879e-05,3.3881317890172014e-21,7.623296525288703e-21,-1.5130383221801656e-19,-6.297156832644897e-37,4.4818665072040405e-20,0.002205882454290986,-0.00029411763534881175,-0.002205882454290986,3.006593762124837e-20,3.3881317890172014e-21,0.00029411763534881175,6.776263578034403e-21,-2.820324617673292e-18,-5.705177129642751e-20,-2.035859508554926e-20,0.00147058826405555,-0.0001960784284165129,6.5034382155112175e-19,-0.000735294132027775,7.623296525288703e-21,6.776263578034403e-21,9.803921420825645e-05,-3.2517191077556088e-19,8.17145357151594e-36,-4.868309456634903e-19,0.0062500000931322575,6.668691220913719e-18,-0.03750000149011612,-3.743452597813336e-18,-1.5130383221801656e-19,-2.820324617673292e-18,-3.2517191077556088e-19,0.01875000074505806,-3.525294051010132e-18,2.682879046320562e-18,0.0062500000931322575,5.705177129642751e-20,-0.0062500000931322575,-0.0031250000465661287,-6.297156832644897e-37,-5.705177129642751e-20,8.17145357151594e-36,-3.525294051010132e-18,0.0031250000465661287,-2.4977666945686266e-20,0.0029761905316263437,6.006591663593359e-19,-5.286776406212723e-18,-0.0059523810632526875,4.4818665072040405e-20,-2.035859508554926e-20,-4.868309456634903e-19,2.682879046320562e-18,-2.4977666945686266e-20,0.0014880952658131719,16.0,3.0,6.0,0.08980606496334076,-0.010795985348522663,-0.040572479367256165,-0.024619223549962044,0.0003404139424674213,0.0018382353009656072,0.0010504202218726277,0.0052083334885537624,0.004464285913854837,0.0018601190531626344,-0.010795985348522663,0.002947012195363641,0.0018382353009656072,0.0010504202218726277,-0.00014589169586542994,-0.00024509805371053517,-0.00014005602861288935,-2.0586534009120137e-18,-2.0306832966249047e-19,-1.449608587695345e-18,-0.040572479367256165,0.0018382353009656072,0.09265581518411636,0.004464285913854837,-1.2098042493758825e-19,-0.0018382353009656072,-7.248706750918299e-19,-0.03125,-0.004464285913854837,-5.637851296924623e-18,-0.024619223549962044,0.0010504202218726277,0.004464285913854837,0.020078344270586967,-1.8295911660692887e-19,-2.5253536655981073e-18,-0.0004201680712867528,-1.9147120215679355e-17,-0.0017857142956927419,-0.0027901786379516125,0.0003404139424674213,-0.00014589169586542994,-1.2098042493758825e-19,-1.8295911660692887e-19,9.726112693897448e-06,-8.470329472543003e-21,0.0,6.729205402233232e-20,2.708459290108686e-20,3.106586973485427e-20,0.0018382353009656072,-0.00024509805371053517,-0.0018382353009656072,-2.5253536655981073e-18,-8.470329472543003e-21,0.00024509805371053517,4.743384504624082e-20,6.715058416560073e-19,-3.8845619718189135e-20,4.152616764029655e-19,0.0010504202218726277,-0.00014005602861288935,-7.248706750918299e-19,-0.0004201680712867528,0.0,4.743384504624082e-20,5.602241071755998e-05,2.9273663384310227e-19,-7.434529385860127e-20,1.148405475939427e-19,0.0052083334885537624,-2.0586534009120137e-18,-0.03125,-1.9147120215679355e-17,6.729205402233232e-20,6.715058416560073e-19,2.9273663384310227e-19,0.015625,6.0333366875438825e-18,1.7652745647208406e-18,0.004464285913854837,-2.0306832966249047e-19,-0.004464285913854837,-0.0017857142956927419,2.708459290108686e-20,-3.8845619718189135e-20,-7.434529385860127e-20,6.0333366875438825e-18,0.0017857142956927419,-4.4139200176078595e-19,0.0018601190531626344,-1.449608587695345e-18,-5.637851296924623e-18,-0.0027901786379516125,3.106586973485427e-20,4.152616764029655e-19,1.148405475939427e-19,1.7652745647208406e-18,-4.4139200176078595e-19,0.0005580357392318547,16.0,3.0,7.0,0.07950367778539658,-0.009366246871650219,-0.03525472804903984,-0.01892944611608982,0.0002917833917308599,0.0015756302746012807,0.0007878151373006403,0.004464285913854837,0.0033482143189758062,0.0012400794075801969,-0.009366246871650219,0.002541016321629286,0.0015756302746012807,0.0007878151373006403,-0.0001250500208698213,-0.0002100840356433764,-0.0001050420178216882,5.421010862427522e-19,6.505213034913027e-19,1.2468324983583301e-18,-0.03525472804903984,0.0015756302746012807,0.07989758253097534,0.0033482143189758062,2.002368258022361e-19,-0.0015756302746012807,7.918793357438318e-19,-0.02678571455180645,-0.0033482143189758062,1.1058862159352145e-17,-0.01892944611608982,0.0007878151373006403,0.0033482143189758062,0.012758227996528149,1.6940658945086007e-19,3.4863876108987e-18,-0.00026260505546815693,1.3010426069826053e-17,-0.0011160714784637094,-0.0014880952658131719,0.0002917833917308599,-0.0001250500208698213,2.002368258022361e-19,1.6940658945086007e-19,8.336667633557227e-06,4.870439446712227e-21,-7.835054762102278e-21,-1.2314984826567635e-19,-2.423465317215086e-21,-1.647121617600369e-20,0.0015756302746012807,-0.0002100840356433764,-0.0015756302746012807,3.4863876108987e-18,4.870439446712227e-21,0.0002100840356433764,-7.369186641112413e-20,9.622294280808852e-19,-2.439454888092385e-19,-4.290221877843031e-19,0.0007878151373006403,-0.0001050420178216882,7.918793357438318e-19,-0.00026260505546815693,-7.835054762102278e-21,-7.369186641112413e-20,3.501400715322234e-05,8.238570913246691e-20,-1.3413869713419897e-19,-1.8437954081504728e-19,0.004464285913854837,5.421010862427522e-19,-0.02678571455180645,1.3010426069826053e-17,-1.2314984826567635e-19,9.622294280808852e-19,8.238570913246691e-20,0.013392857275903225,3.713392440762853e-18,-2.574980159653073e-18,0.0033482143189758062,6.505213034913027e-19,-0.0033482143189758062,-0.0011160714784637094,-2.423465317215086e-21,-2.439454888092385e-19,-1.3413869713419897e-19,3.713392440762853e-18,0.0011160714784637094,-7.860465750519907e-19,0.0012400794075801969,1.2468324983583301e-18,1.1058862159352145e-17,-0.0014880952658131719,-1.647121617600369e-20,-4.290221877843031e-19,-1.8437954081504728e-19,-2.574980159653073e-18,-7.860465750519907e-19,0.00024801588733680546,16.0,3.0,8.0,0.07133374363183975,-0.008272059261798859,-0.031173406168818474,-0.015012254938483238,0.0002553104714024812,0.0013786765048280358,0.0006127451197244227,0.00390625,0.0026041667442768812,0.0008680555620230734,-0.008272059261798859,0.002233601873740554,0.0013786765048280358,0.0006127451197244227,-0.00010941876826109365,-0.00018382353300694376,-8.169934881152585e-05,-3.3068166260807885e-18,2.168404344971009e-19,6.640738306473715e-19,-0.031173406168818474,0.0013786765048280358,0.07023590803146362,0.0026041667442768812,-1.2097466052269452e-19,-0.0013786765048280358,4.1580333753251996e-20,-0.0234375,-0.0026041667442768812,1.3010426069826053e-18,-0.015012254938483238,0.0006127451197244227,0.0026041667442768812,0.008629493415355682,2.710505431213761e-20,1.0994487655360818e-18,-0.00017507003212813288,1.1926223897340549e-18,-0.0007440476329065859,-0.0008680555620230734,0.0002553104714024812,-0.00010941876826109365,-1.2097466052269452e-19,2.710505431213761e-20,7.294584520423086e-06,8.893845946170154e-21,8.470329472543003e-22,-1.1452327697700172e-20,1.0383480291517382e-20,-5.82575348654463e-21,0.0013786765048280358,-0.00018382353300694376,-0.0013786765048280358,1.0994487655360818e-18,8.893845946170154e-21,0.00018382353300694376,-2.668153783851046e-20,3.2526065174565133e-18,2.710505431213761e-20,-1.190081290892292e-19,0.0006127451197244227,-8.169934881152585e-05,4.1580333753251996e-20,-0.00017507003212813288,8.470329472543003e-22,-2.668153783851046e-20,2.3342670829151757e-05,1.451223890485902e-19,-5.290530229380671e-20,-9.413379994338811e-20,0.00390625,-3.3068166260807885e-18,-0.0234375,1.1926223897340549e-18,-1.1452327697700172e-20,3.2526065174565133e-18,1.451223890485902e-19,0.01171875,-1.6263032587282567e-18,1.2874900798265365e-19,0.0026041667442768812,2.168404344971009e-19,-0.0026041667442768812,-0.0007440476329065859,1.0383480291517382e-20,2.710505431213761e-20,-5.290530229380671e-20,-1.6263032587282567e-18,0.0007440476329065859,-1.8973538018496328e-19,0.0008680555620230734,6.640738306473715e-19,1.3010426069826053e-18,-0.0008680555620230734,-5.82575348654463e-21,-1.190081290892292e-19,-9.413379994338811e-20,1.2874900798265365e-19,-1.8973538018496328e-19,0.00012400794366840273,16.0,3.0,9.0,0.06469309329986572,-0.007407407276332378,-0.027941176667809486,-0.01219919789582491,0.0002269426331622526,0.0012254902394488454,0.0004901961074210703,0.0034722222480922937,0.0020833334419876337,0.0006313131307251751,-0.007407407276332378,0.00199268595315516,0.0012254902394488454,0.0004901961074210703,-9.726112330099568e-05,-0.0001633986976230517,-6.535947613883764e-05,-3.0899761915836876e-18,-4.87890977618477e-19,1.0842021724855044e-19,-0.027941176667809486,0.0012254902394488454,0.06266339868307114,0.0020833334419876337,-2.676624113323589e-19,-0.0012254902394488454,-5.55653613398821e-19,-0.02083333395421505,-0.0020833334419876337,-1.4907779871675686e-18,-0.01219919789582491,0.0004901961074210703,0.0020833334419876337,0.006116177421063185,-3.7269449679189215e-20,-4.0657581468206416e-19,-0.00012254902685526758,-9.107298248878237e-18,-0.0005208333604969084,-0.0005411255406215787,0.0002269426331622526,-9.726112330099568e-05,-2.676624113323589e-19,-3.7269449679189215e-20,6.484075129264966e-06,-4.282969959563385e-21,-1.2705494208814505e-21,1.165011514477341e-19,8.158572046696443e-21,4.514374543718661e-21,0.0012254902394488454,-0.0001633986976230517,-0.0012254902394488454,-4.0657581468206416e-19,-4.282969959563385e-21,0.0001633986976230517,-8.74947263702089e-22,7.724940478959219e-19,2.0328790734103208e-19,2.879912020664621e-20,0.0004901961074210703,-6.535947613883764e-05,-5.55653613398821e-19,-0.00012254902685526758,-1.2705494208814505e-21,-8.74947263702089e-22,1.633986903470941e-05,1.5166326804356499e-19,5.755776026206561e-20,-3.671481215377534e-20,0.0034722222480922937,-3.0899761915836876e-18,-0.02083333395421505,-9.107298248878237e-18,1.165011514477341e-19,7.724940478959219e-19,1.5166326804356499e-19,0.010416666977107525,2.913793338554793e-18,6.2341624917916505e-19,0.0020833334419876337,-4.87890977618477e-19,-0.0020833334419876337,-0.0005208333604969084,8.158572046696443e-21,2.0328790734103208e-19,5.755776026206561e-20,2.913793338554793e-18,0.0005208333604969084,-1.3552527156068805e-20,0.0006313131307251751,1.0842021724855044e-19,-1.4907779871675686e-18,-0.0005411255406215787,4.514374543718661e-21,2.879912020664621e-20,-3.671481215377534e-20,6.2341624917916505e-19,-1.3552527156068805e-20,6.764069257769734e-05,16.0,3.0,10.0,0.05918746441602707,-0.006706773769110441,-0.025317512452602386,-0.010110294446349144,0.00020424836839083582,0.001102941227145493,0.00040106952656060457,0.0031250000465661287,0.001704545458778739,0.0004734848625957966,-0.006706773769110441,0.0017987649189308286,0.001102941227145493,0.00040106952656060457,-8.753501606406644e-05,-0.00014705881767440587,-5.347593469195999e-05,-5.421010862427522e-20,-4.743384504624082e-20,-1.2048890636071855e-36,-0.025317512452602386,0.001102941227145493,0.056567512452602386,0.001704545458778739,-1.4004137074367215e-20,-0.001102941227145493,-3.0665309946606166e-21,-0.01875000074505806,-0.001704545458778739,-7.490851467534009e-19,-0.010110294446349144,0.00040106952656060457,0.001704545458778739,0.004495785105973482,5.727165916769883e-21,-1.3552527156068805e-20,-8.912655903259292e-05,-3.503113616474829e-18,-0.0003787878667935729,-0.00035511364694684744,0.00020424836839083582,-8.753501606406644e-05,-1.4004137074367215e-20,5.727165916769883e-21,5.835667707287939e-06,-1.5165505066253103e-22,-1.2209450393675863e-21,3.3427673139878467e-21,1.0685503400985456e-21,4.842232806064035e-37,0.001102941227145493,-0.00014705881767440587,-0.001102941227145493,-1.3552527156068805e-20,-1.5165505066253103e-22,0.00014705881767440587,-1.8294337190251552e-21,0.0,2.710505431213761e-20,-5.6991408524040796e-36,0.00040106952656060457,-5.347593469195999e-05,-3.0665309946606166e-21,-8.912655903259292e-05,-1.2209450393675863e-21,-1.8294337190251552e-21,1.1883541446877643e-05,-9.57474281778809e-22,2.986419481297458e-21,-2.0036648821468145e-37,0.0031250000465661287,-5.421010862427522e-20,-0.01875000074505806,-3.503113616474829e-18,3.3427673139878467e-21,0.0,-9.57474281778809e-22,0.00937500037252903,1.0842021724855044e-19,3.7454257337670047e-19,0.001704545458778739,-4.743384504624082e-20,-0.001704545458778739,-0.0003787878667935729,1.0685503400985456e-21,2.710505431213761e-20,2.986419481297458e-21,1.0842021724855044e-19,0.0003787878667935729,-6.847355262821502e-38,0.0004734848625957966,-1.2048890636071855e-36,-7.490851467534009e-19,-0.00035511364694684744,4.842232806064035e-37,-5.6991408524040796e-36,-2.0036648821468145e-37,3.7454257337670047e-19,-6.847355262821502e-38,3.9457070670323446e-05,16.0,3.0,11.0,0.054547883570194244,-0.006127451080828905,-0.023145053535699844,-0.008516299538314342,0.00018568032828625292,0.0010026737581938505,0.0003342246054671705,0.0028409091755747795,0.0014204545877873898,0.0003642191004473716,-0.006127451080828905,0.0016392921097576618,0.0010026737581938505,0.0003342246054671705,-7.95772866695188e-05,-0.0001336898421868682,-4.456327951629646e-05,0.0,0.0,-0.0,-0.023145053535699844,0.0010026737581938505,0.05155414342880249,0.0014204545877873898,-1.3817359045817887e-20,-0.0010026737581938505,0.0,-0.017045455053448677,-0.0014204545877873898,-5.66110210317257e-19,-0.008516299538314342,0.0003342246054671705,0.0014204545877873898,0.0034029490780085325,-4.462852258328475e-21,-6.776263578034403e-21,-6.68449210934341e-05,-2.830551051586285e-18,-0.0002840909000951797,-0.0002428127481834963,0.00018568032828625292,-7.95772866695188e-05,-1.3817359045817887e-20,-4.462852258328475e-21,5.305152171786176e-06,1.3047889629068205e-21,4.662053849014849e-22,0.0,0.0,-0.0,0.0010026737581938505,-0.0001336898421868682,-0.0010026737581938505,-6.776263578034403e-21,1.3047889629068205e-21,0.0001336898421868682,0.0,0.0,0.0,-0.0,0.0003342246054671705,-4.456327951629646e-05,0.0,-6.68449210934341e-05,4.662053849014849e-22,0.0,8.912656085158233e-06,0.0,0.0,-0.0,0.0028409091755747795,0.0,-0.017045455053448677,-2.830551051586285e-18,0.0,0.0,0.0,0.008522727526724339,0.0,2.830551051586285e-19,0.0014204545877873898,0.0,-0.0014204545877873898,-0.0002840909000951797,0.0,0.0,0.0,0.0,0.0002840909000951797,-0.0,0.0003642191004473716,-0.0,-5.66110210317257e-19,-0.0002428127481834963,-0.0,-0.0,-0.0,2.830551051586285e-19,-0.0,2.428127481834963e-05,16.0,3.0,12.0,0.05058439075946808,-0.005640397313982248,-0.02131645940244198,-0.00727213965728879,0.00017020697123371065,0.0009191176504828036,0.00028280544211156666,0.0026041667442768812,0.0012019231216982007,0.0002861721732188016,-0.005640397313982248,0.001505826716311276,0.0009191176504828036,0.00028280544211156666,-7.294584793271497e-05,-0.00012254902685526758,-3.77073920390103e-05,0.0,0.0,-0.0,-0.02131645940244198,0.0009191176504828036,0.04735812544822693,0.0012019231216982007,1.2303737320987286e-22,-0.0009191176504828036,0.0,-0.015625,-0.0012019231216982007,8.768932367892755e-19,-0.00727213965728879,0.00028280544211156666,0.0012019231216982007,0.0026385991368442774,4.347669377514383e-21,3.3881317890172014e-21,-5.141917063156143e-05,6.3756720014938534e-18,-0.00021853146608918905,-0.00017170330102089792,0.00017020697123371065,-7.294584793271497e-05,1.2303737320987286e-22,4.347669377514383e-21,4.863056346948724e-06,-2.8635883100173226e-22,-5.882966677613953e-22,0.0,-0.0,-0.0,0.0009191176504828036,-0.00012254902685526758,-0.0009191176504828036,3.3881317890172014e-21,-2.8635883100173226e-22,0.00012254902685526758,0.0,0.0,-0.0,-0.0,0.00028280544211156666,-3.77073920390103e-05,0.0,-5.141917063156143e-05,-5.882966677613953e-22,0.0,6.8558892962755635e-06,0.0,0.0,-0.0,0.0026041667442768812,0.0,-0.015625,6.3756720014938534e-18,0.0,0.0,0.0,0.0078125,-1.5527594576467795e-18,-4.384466183946378e-19,0.0012019231216982007,0.0,-0.0012019231216982007,-0.00021853146608918905,-0.0,-0.0,0.0,-1.5527594576467795e-18,0.00021853146608918905,8.71426678660068e-35,0.0002861721732188016,-0.0,8.768932367892755e-19,-0.00017170330102089792,-0.0,-0.0,-0.0,-4.384466183946378e-19,8.71426678660068e-35,1.5609390175086446e-05,16.0,3.0,13.0,0.04715892672538757,-0.005225167144089937,-0.019755979999899864,-0.006282320711761713,0.00015711413288954645,0.0008484162972308695,0.00024240465427283198,0.0024038462433964014,0.001030219835229218,0.00022893772984389216,-0.005225167144089937,0.0013924801023676991,0.0008484162972308695,0.00024240465427283198,-6.733462942065671e-05,-0.0001131221724790521,-3.2320622267434373e-05,-2.8888949165808538e-34,3.3881317890172014e-21,1.0164395367051604e-20,-0.019755979999899864,0.0008484162972308695,0.04379444196820259,0.001030219835229218,-1.09356362750936e-20,-0.0008484162972308695,0.0,-0.014423076994717121,-0.001030219835229218,6.911788849595091e-19,-0.006282320711761713,0.00024240465427283198,0.001030219835229218,0.002087679458782077,-3.044840929594541e-21,-3.621546567463824e-21,-4.0400776924798265e-05,5.2853544827397445e-18,-0.00017170330102089792,-0.00012487512140069157,0.00015711413288954645,-6.733462942065671e-05,-1.09356362750936e-20,-3.044840929594541e-21,4.488975264393957e-06,9.753707463061128e-22,4.825654260644569e-22,-5.0192536170215144e-36,8.01490694531345e-23,6.1111646210755965e-24,0.0008484162972308695,-0.0001131221724790521,-0.0008484162972308695,-3.621546567463824e-21,9.753707463061128e-22,0.0001131221724790521,7.326362641510136e-23,-1.1006305565796627e-35,1.4707455821535781e-22,1.469297612184827e-23,0.00024240465427283198,-3.2320622267434373e-05,0.0,-4.0400776924798265e-05,4.825654260644569e-22,7.326362641510136e-23,5.386770226323279e-06,5.827823762972875e-35,-4.0381552448903304e-22,-1.2705494208814505e-21,0.0024038462433964014,-2.8888949165808538e-34,-0.014423076994717121,5.2853544827397445e-18,-5.0192536170215144e-36,-1.1006305565796627e-35,5.827823762972875e-35,0.0072115384973585606,-1.1261772458743547e-18,-3.465980858391864e-19,0.001030219835229218,3.3881317890172014e-21,-0.001030219835229218,-0.00017170330102089792,8.01490694531345e-23,1.4707455821535781e-22,-4.0381552448903304e-22,-1.1261772458743547e-18,0.00017170330102089792,0.0,0.00022893772984389216,1.0164395367051604e-20,6.911788849595091e-19,-0.00012487512140069157,6.1111646210755965e-24,1.469297612184827e-23,-1.2705494208814505e-21,-3.465980858391864e-19,0.0,1.0406260116724297e-05,16.0,3.0,14.0,0.044168710708618164,-0.004866946954280138,-0.01840861327946186,-0.005481880158185959,0.00014589169586542994,0.0007878151373006403,0.0002100840356433764,0.0022321429569274187,0.0008928571478463709,0.00018601190822664648,-0.004866946954280138,0.001295018009841442,0.0007878151373006403,0.0002100840356433764,-6.252501043491066e-05,-0.0001050420178216882,-2.801120535877999e-05,1.925929944387236e-34,0.0,-3.3881317890172014e-21,-0.01840861327946186,0.0007878151373006403,0.04073004052042961,0.0008928571478463709,1.235332044743292e-21,-0.0007878151373006403,0.0,-0.013392857275903225,-0.0008928571478463709,5.692061405548898e-19,-0.005481880158185959,0.0002100840356433764,0.0008928571478463709,0.0016804197803139687,3.146680474321422e-21,2.9150636424064303e-21,-3.2320622267434373e-05,4.460921764181618e-18,-0.00013736264372710139,-9.300595411332324e-05,0.00014589169586542994,-6.252501043491066e-05,1.235332044743292e-21,3.146680474321422e-21,4.168333816778613e-06,4.710532570193173e-22,-1.5690100092579973e-22,7.570683333538297e-37,-1.3444305234369482e-22,-1.772503874171213e-23,0.0007878151373006403,-0.0001050420178216882,-0.0007878151373006403,2.9150636424064303e-21,4.710532570193173e-22,0.0001050420178216882,-5.849761439520411e-23,1.0448966701585984e-35,-1.2225954373555046e-22,-3.80091208029446e-22,0.0002100840356433764,-2.801120535877999e-05,0.0,-3.2320622267434373e-05,-1.5690100092579973e-22,-5.849761439520411e-23,4.3094159991596825e-06,-3.263784171875823e-35,4.366724016068296e-22,6.352747104407253e-22,0.0022321429569274187,1.925929944387236e-34,-0.013392857275903225,4.460921764181618e-18,7.570683333538297e-37,1.0448966701585984e-35,-3.263784171875823e-35,0.0066964286379516125,-8.365887580450527e-19,-2.7879484066064483e-19,0.0008928571478463709,0.0,-0.0008928571478463709,-0.00013736264372710139,-1.3444305234369482e-22,-1.2225954373555046e-22,4.366724016068296e-22,-8.365887580450527e-19,0.00013736264372710139,0.0,0.00018601190822664648,-3.3881317890172014e-21,5.692061405548898e-19,-9.300595411332324e-05,-1.772503874171213e-23,-3.80091208029446e-22,6.352747104407253e-22,-2.7879484066064483e-19,0.0,7.15430405762163e-06,16.0,3.0,15.0,0.04153560847043991,-0.0045547387562692165,-0.017233455553650856,-0.004825367592275143,0.00013616557407658547,0.000735294132027775,0.00018382353300694376,0.0020833334419876337,0.0007812500116415322,0.00015318627993110567,-0.0045547387562692165,0.0012103174813091755,0.000735294132027775,0.00018382353300694376,-5.835667616338469e-05,-9.803921420825645e-05,-2.4509803552064113e-05,3.851859888774472e-34,-3.3881317890172014e-21,1.6940658945086007e-20,-0.017233455553650856,0.000735294132027775,0.038066789507865906,0.0007812500116415322,-2.8110897051272856e-21,-0.000735294132027775,1.6940658945086007e-21,-0.012500000186264515,-0.0007812500116415322,-2.236166980751353e-19,-0.004825367592275143,0.00018382353300694376,0.0007812500116415322,0.0013727847253903747,4.545696234406025e-22,-0.0,-2.626050445542205e-05,-1.5934337895223901e-18,-0.00011160714348079637,-7.070136052789167e-05,0.00013616557407658547,-5.835667616338469e-05,-2.8110897051272856e-21,4.545696234406025e-22,3.890444986609509e-06,5.680451820638553e-22,-7.343101638830202e-23,-1.5907787692376062e-36,9.016598736230746e-23,-1.365051599934915e-22,0.000735294132027775,-9.803921420825645e-05,-0.000735294132027775,-0.0,5.680451820638553e-22,9.803921420825645e-05,-2.1446994933071593e-22,2.5161087443704398e-37,1.3023114095498982e-22,9.857838743380985e-23,0.00018382353300694376,-2.4509803552064113e-05,1.6940658945086007e-21,-2.626050445542205e-05,-7.343101638830202e-23,-2.1446994933071593e-22,3.5014006698474986e-06,-5.837219682173539e-35,4.361082587745135e-22,-2.541098841762901e-21,0.0020833334419876337,3.851859888774472e-34,-0.012500000186264515,-1.5934337895223901e-18,-1.5907787692376062e-36,2.5161087443704398e-37,-5.837219682173539e-35,0.0062500000931322575,0.0,1.1381670479075518e-19,0.0007812500116415322,-3.3881317890172014e-21,-0.0007812500116415322,-0.00011160714348079637,9.016598736230746e-23,1.3023114095498982e-22,4.361082587745135e-22,0.0,0.00011160714348079637,0.0,0.00015318627993110567,1.6940658945086007e-20,-2.236166980751353e-19,-7.070136052789167e-05,-1.365051599934915e-22,9.857838743380985e-23,-2.541098841762901e-21,1.1381670479075518e-19,0.0,5.050097115599783e-06,16.0,3.0,16.0,0.039199165999889374,-0.004280204884707928,-0.016199449077248573,-0.004280204884707928,0.0001276552357012406,0.0006893382524140179,0.00016219723329413682,0.001953125,0.0006893382524140179,0.0001276552357012406,-0.004280204884707928,0.0011360242497175932,0.0006893382524140179,0.00016219723329413682,-5.470938413054682e-05,-9.191176650347188e-05,-2.1626297893817537e-05,-5.7777898331617076e-34,1.6940658945086007e-21,1.3552527156068805e-20,-0.016199449077248573,0.0006893382524140179,0.035730697214603424,0.0006893382524140179,2.6527248055533364e-21,-0.0006893382524140179,5.082197683525802e-21,-0.01171875,-0.0006893382524140179,3.8624702394796095e-19,-0.004280204884707928,0.00016219723329413682,0.0006893382524140179,0.0011360242497175932,1.0105165317394008e-21,-0.0,-2.1626297893817537e-05,3.3141965247108335e-18,-9.191176650347188e-05,-5.470938413054682e-05,0.0001276552357012406,-5.470938413054682e-05,2.6527248055533364e-21,1.0105165317394008e-21,3.647292260211543e-06,-3.076135205787727e-22,-4.938502769511479e-24,-2.869262144845995e-36,-3.4378097554763045e-23,-1.0508592192203144e-22,0.0006893382524140179,-9.191176650347188e-05,-0.0006893382524140179,-0.0,-3.076135205787727e-22,9.191176650347188e-05,-2.137756255163766e-22,-5.155865733472257e-36,9.73994884534986e-23,1.0077557962501659e-22,0.00016219723329413682,-2.1626297893817537e-05,5.082197683525802e-21,-2.1626297893817537e-05,-4.938502769511479e-24,-2.137756255163766e-22,2.883506340367603e-06,8.617849273156256e-35,-2.0710269529532276e-22,-1.4823076576950256e-21,0.001953125,-5.7777898331617076e-34,-0.01171875,3.3141965247108335e-18,-2.869262144845995e-36,-5.155865733472257e-36,8.617849273156256e-35,0.005859375,-4.898042980741004e-19,-1.88292815970762e-19,0.0006893382524140179,1.6940658945086007e-21,-0.0006893382524140179,-9.191176650347188e-05,-3.4378097554763045e-23,9.73994884534986e-23,-2.0710269529532276e-22,-4.898042980741004e-19,9.191176650347188e-05,-8.470329472543003e-22,0.0001276552357012406,1.3552527156068805e-20,3.8624702394796095e-19,-5.470938413054682e-05,-1.0508592192203144e-22,1.0077557962501659e-22,-1.4823076576950256e-21,-1.88292815970762e-19,-8.470329472543003e-22,3.647292260211543e-06,16.0,4.0,3.0,0.12142565101385117,-0.015563725493848324,-0.04779411852359772,-0.05818014591932297,0.0005106209428049624,0.002205882454290986,0.0027573530096560717,0.0052083334885537624,0.00937500037252903,0.0078125,-0.015563725493848324,0.004336484707891941,0.002205882454290986,0.0027573530096560717,-0.0002188375365221873,-0.00029411763534881175,-0.0003676470660138875,9.324138683375338e-18,2.670493050623346e-18,-6.233847749568574e-18,-0.04779411852359772,0.002205882454290986,0.06832107901573181,0.00937500037252903,1.1724577943515434e-18,-0.00147058826405555,4.330842236183673e-18,-0.015625,-0.0062500000931322575,-4.919167994853236e-17,-0.05818014591932297,0.0027573530096560717,0.00937500037252903,0.13630515336990356,3.949134986232556e-19,-3.0344725792765326e-18,-0.0027573530096560717,-2.485667194169038e-18,-0.00937500037252903,-0.046875,0.0005106209428049624,-0.0002188375365221873,1.1724577943515434e-18,3.949134986232556e-19,1.4589169040846173e-05,-3.0933272036427165e-20,-1.9299535057684885e-22,-2.4969563483740087e-19,-9.962812744242138e-20,-1.2374231637941746e-19,0.002205882454290986,-0.00029411763534881175,-0.00147058826405555,-3.0344725792765326e-18,-3.0933272036427165e-20,0.0001960784284165129,4.482109491508978e-20,-2.0707310650359005e-18,-5.302443827399937e-19,1.739728332273059e-18,0.0027573530096560717,-0.0003676470660138875,4.330842236183673e-18,-0.0027573530096560717,-1.9299535057684885e-22,4.482109491508978e-20,0.0003676470660138875,-1.43492127213643e-18,2.874442611981541e-20,5.6746289877296495e-18,0.0052083334885537624,9.324138683375338e-18,-0.015625,-2.485667194169038e-18,-2.4969563483740087e-19,-2.0707310650359005e-18,-1.43492127213643e-18,0.0052083334885537624,-6.268978937364314e-18,1.1352588204605437e-17,0.00937500037252903,2.670493050623346e-18,-0.0062500000931322575,-0.00937500037252903,-9.962812744242138e-20,-5.302443827399937e-19,2.874442611981541e-20,-6.268978937364314e-18,0.0062500000931322575,2.974854570602539e-18,0.0078125,-6.233847749568574e-18,-4.919167994853236e-17,-0.046875,-1.2374231637941746e-19,1.739728332273059e-18,5.6746289877296495e-18,1.1352588204605437e-17,2.974854570602539e-18,0.0234375,16.0,4.0,4.0,0.09940563887357712,-0.012086397036910057,-0.03725183755159378,-0.03725183755159378,0.00038296569255180657,0.0016544117825105786,0.0016544117825105786,0.00390625,0.005625000223517418,0.00390625,-0.012086397036910057,0.0033075104001909494,0.0016544117825105786,0.0016544117825105786,-0.00016412815602961928,-0.00022058823378756642,-0.00022058823378756642,5.421010862427522e-20,-4.87890977618477e-19,-4.336808689942018e-19,-0.03725183755159378,0.0016544117825105786,0.05217830836772919,0.005625000223517418,8.960420414548748e-20,-0.001102941227145493,8.809142651444724e-19,-0.01171875,-0.0037499999161809683,1.9485777884625916e-18,-0.03725183755159378,0.0016544117825105786,0.005625000223517418,0.05217830836772919,-9.235530992761081e-20,9.67008050479604e-19,-0.001102941227145493,-5.03215367005665e-18,-0.0037499999161809683,-0.01171875,0.00038296569255180657,-0.00016412815602961928,8.960420414548748e-20,-9.235530992761081e-20,1.0941877008008305e-05,-1.2963345954351604e-20,-8.81582601230021e-21,-1.1691176907368426e-20,3.339292913077054e-20,3.41130447839605e-20,0.0016544117825105786,-0.00022058823378756642,-0.001102941227145493,9.67008050479604e-19,-1.2963345954351604e-20,0.00014705881767440587,-6.41229312251856e-20,2.9987530592701146e-19,-3.4582004492489784e-20,-1.4365329043130189e-19,0.0016544117825105786,-0.00022058823378756642,8.809142651444724e-19,-0.001102941227145493,-8.81582601230021e-21,-6.41229312251856e-20,0.00014705881767440587,-1.5599858625744076e-19,5.421010862427522e-20,2.710505431213761e-19,0.00390625,5.421010862427522e-20,-0.01171875,-5.03215367005665e-18,-1.1691176907368426e-20,2.9987530592701146e-19,-1.5599858625744076e-19,0.00390625,4.1742598413595285e-18,1.6481493571997235e-19,0.005625000223517418,-4.87890977618477e-19,-0.0037499999161809683,-0.0037499999161809683,3.339292913077054e-20,-3.4582004492489784e-20,5.421010862427522e-20,4.1742598413595285e-18,0.0024999999441206455,-5.421010862427522e-19,0.00390625,-4.336808689942018e-19,1.9485777884625916e-18,-0.01171875,3.41130447839605e-20,-1.4365329043130189e-19,2.710505431213761e-19,1.6481493571997235e-19,-5.421010862427522e-19,0.00390625,16.0,4.0,5.0,0.08426820486783981,-0.009889706037938595,-0.030551470816135406,-0.025950631126761436,0.00030637255986221135,0.0013235294027253985,0.001102941227145493,0.0031250000465661287,0.0037499999161809683,0.0022321429569274187,-0.009889706037938595,0.0026754201389849186,0.0013235294027253985,0.001102941227145493,-0.00013130252773407847,-0.00017647058120928705,-0.00014705881767440587,2.846030702774449e-19,-1.2061749168901237e-18,-3.0179419951201198e-18,-0.030551470816135406,0.0013235294027253985,0.04224264621734619,0.0037499999161809683,3.348093403936279e-19,-0.0008823529351502657,-2.1983793024183992e-18,-0.00937500037252903,-0.0024999999441206455,-2.0971630838426343e-17,-0.025950631126761436,0.001102941227145493,0.0037499999161809683,0.026368172839283943,-4.0657581468206416e-20,-2.7376104855258987e-18,-0.0005514706135727465,-2.1108929585220345e-17,-0.0018749999580904841,-0.004464285913854837,0.00030637255986221135,-0.00013130252773407847,3.348093403936279e-19,-4.0657581468206416e-20,8.753501788305584e-06,-1.8634724839594607e-20,-7.623296525288703e-21,-5.59814189708295e-20,-5.737018171009144e-21,2.7577587699407063e-20,0.0013235294027253985,-0.00017647058120928705,-0.0008823529351502657,-2.7376104855258987e-18,-1.8634724839594607e-20,0.00011764706141548231,5.2691388863756524e-20,2.168404344971009e-19,2.371692252312041e-19,5.008000099567678e-19,0.001102941227145493,-0.00014705881767440587,-2.1983793024183992e-18,-0.0005514706135727465,-7.623296525288703e-21,5.2691388863756524e-20,7.352940883720294e-05,3.0997127794776845e-19,4.162040160664224e-19,9.331195981566487e-19,0.0031250000465661287,2.846030702774449e-19,-0.00937500037252903,-2.1108929585220345e-17,-5.59814189708295e-20,2.168404344971009e-19,3.0997127794776845e-19,0.0031250000465661287,3.3610267347050637e-18,3.453958408573865e-18,0.0037499999161809683,-1.2061749168901237e-18,-0.0024999999441206455,-0.0018749999580904841,-5.737018171009144e-21,2.371692252312041e-19,4.162040160664224e-19,3.3610267347050637e-18,0.0012499999720603228,3.121847874175662e-18,0.0022321429569274187,-3.0179419951201198e-18,-2.0971630838426343e-17,-0.004464285913854837,2.7577587699407063e-20,5.008000099567678e-19,9.331195981566487e-19,3.453958408573865e-18,3.121847874175662e-18,0.0011160714784637094,16.0,4.0,6.0,0.07317999750375748,-0.008372724056243896,-0.02590598724782467,-0.01913405954837799,0.0002553104714024812,0.001102941227145493,0.0007878151373006403,0.0026041667442768812,0.0026785715017467737,0.0013950893189758062,-0.008372724056243896,0.0022470238618552685,0.001102941227145493,0.0007878151373006403,-0.00010941876826109365,-0.00014705881767440587,-0.0001050420178216882,4.981873496522614e-18,1.4968933334361731e-18,1.0252904726570544e-18,-0.02590598724782467,0.001102941227145493,0.035499826073646545,0.0026785715017467737,5.815202749363902e-19,-0.000735294132027775,2.471996173390221e-18,-0.0078125,-0.0017857142956927419,1.2313438722605197e-17,-0.01913405954837799,0.0007878151373006403,0.0026785715017467737,0.015326615422964096,8.809142651444724e-20,1.5862798145971487e-18,-0.00031512606074102223,1.7668342964838706e-17,-0.0010714285308495164,-0.0020926338620483875,0.0002553104714024812,-0.00010941876826109365,5.815202749363902e-19,8.809142651444724e-20,7.294584520423086e-06,-1.7787691892340307e-20,-2.117582368135751e-21,-1.0694249139596714e-19,-3.109348335014676e-20,-4.727890135437128e-21,0.001102941227145493,-0.00014705881767440587,-0.000735294132027775,1.5862798145971487e-18,-1.7787691892340307e-20,9.803921420825645e-05,-3.3881317890172014e-20,-1.1191764027600121e-18,-1.8023597340691895e-19,-1.872910097760808e-19,0.0007878151373006403,-0.0001050420178216882,2.471996173390221e-18,-0.00031512606074102223,-2.117582368135751e-21,-3.3881317890172014e-20,4.201680712867528e-05,-4.969310794367042e-19,-2.081668124643259e-19,-2.0506650075438594e-19,0.0026041667442768812,4.981873496522614e-18,-0.0078125,1.7668342964838706e-17,-1.0694249139596714e-19,-1.1191764027600121e-18,-4.969310794367042e-19,0.0026041667442768812,-2.6323583700234263e-18,-1.8537481486782874e-18,0.0026785715017467737,1.4968933334361731e-18,-0.0017857142956927419,-0.0010714285308495164,-3.109348335014676e-20,-1.8023597340691895e-19,-2.081668124643259e-19,-2.6323583700234263e-18,0.0007142857066355646,-1.776152196571066e-18,0.0013950893189758062,1.0252904726570544e-18,1.2313438722605197e-17,-0.0020926338620483875,-4.727890135437128e-21,-1.872910097760808e-19,-2.0506650075438594e-19,-1.8537481486782874e-18,-1.776152196571066e-18,0.0004185267898719758,16.0,4.0,7.0,0.06469275057315826,-0.007261029444634914,-0.022492121905088425,-0.014699317514896393,0.0002188375365221873,0.0009453781531192362,0.0005908613675273955,0.0022321429569274187,0.002008928684517741,0.0009300595265813172,-0.007261029444634914,0.001937274937517941,0.0009453781531192362,0.0005908613675273955,-9.378751565236598e-05,-0.00012605042138602585,-7.878151518525556e-05,1.73596776241324e-18,1.1777485449470092e-18,9.15394151605403e-19,-0.022492121905088425,0.0009453781531192362,0.030619747936725616,0.002008928684517741,3.3263793958688793e-19,-0.0006302521214820445,1.8528434198833075e-18,-0.0066964286379516125,-0.0013392857508733869,6.319349687175424e-18,-0.014699317514896393,0.0005908613675273955,0.002008928684517741,0.009736081585288048,1.9312351197398048e-19,1.855331579165867e-18,-0.00019695378432516009,1.0252562067001794e-17,-0.0006696428754366934,-0.0011160714784637094,0.0002188375365221873,-9.378751565236598e-05,3.3263793958688793e-19,1.9312351197398048e-19,6.252500952541595e-06,-6.776263578034403e-21,-2.964615315390051e-21,-5.70753330191882e-20,-2.8957686852663506e-20,-1.9299587412805442e-20,0.0009453781531192362,-0.00012605042138602585,-0.0006302521214820445,1.855331579165867e-18,-6.776263578034403e-21,8.403361425735056e-05,-3.8963515573697816e-20,3.2176322871820056e-19,-1.9049490000834888e-19,-1.848005628221397e-19,0.0005908613675273955,-7.878151518525556e-05,1.8528434198833075e-18,-0.00019695378432516009,-2.964615315390051e-21,-3.8963515573697816e-20,2.626050445542205e-05,-3.508232985587131e-19,-1.1771338463543057e-19,-6.972230419966458e-20,0.0022321429569274187,1.73596776241324e-18,-0.0066964286379516125,1.0252562067001794e-17,-5.70753330191882e-20,3.2176322871820056e-19,-3.508232985587131e-19,0.0022321429569274187,2.295746732322016e-19,-1.2062310617742007e-18,0.002008928684517741,1.1777485449470092e-18,-0.0013392857508733869,-0.0006696428754366934,-2.8957686852663506e-20,-1.9049490000834888e-19,-1.1771338463543057e-19,2.295746732322016e-19,0.00044642857392318547,-3.0464128797199473e-19,0.0009300595265813172,9.15394151605403e-19,6.319349687175424e-18,-0.0011160714784637094,-1.9299587412805442e-20,-1.848005628221397e-19,-6.972230419966458e-20,-1.2062310617742007e-18,-3.0464128797199473e-19,0.00018601190822664648,16.0,4.0,8.0,0.05798100307583809,-0.006410845555365086,-0.019875919446349144,-0.011649816296994686,0.00019148284627590328,0.0008272058912552893,0.0004595588252414018,0.001953125,0.0015625000232830644,0.0006510416860692203,-0.006410845555365086,0.0017027748981490731,0.0008272058912552893,0.0004595588252414018,-8.206407801480964e-05,-0.00011029411689378321,-6.127451342763379e-05,-4.36060150628634e-20,1.0215671259248e-18,7.661840039906377e-19,-0.019875919446349144,0.0008272058912552893,0.02692248858511448,0.0015625000232830644,1.596622725880147e-19,-0.0005514706135727465,9.063230822129934e-19,-0.005859375,-0.0010416667209938169,6.195441133342278e-19,-0.011649816296994686,0.0004595588252414018,0.0015625000232830644,0.006583727430552244,3.1848438816761693e-19,1.6043272412018307e-18,-0.00013130252773407847,-2.907880237945958e-18,-0.00044642857392318547,-0.0006510416860692203,0.00019148284627590328,-8.206407801480964e-05,1.596622725880147e-19,3.1848438816761693e-19,5.4709385040041525e-06,-8.470329472543003e-21,-8.470329472543003e-21,-7.727081034976399e-21,-1.769775054100937e-20,-3.0575571351460533e-20,0.0008272058912552893,-0.00011029411689378321,-0.0005514706135727465,1.6043272412018307e-18,-8.470329472543003e-21,7.352940883720294e-05,-5.082197683525802e-20,2.247096363088651e-19,-2.766038977119333e-19,-1.040907733094935e-19,0.0004595588252414018,-6.127451342763379e-05,9.063230822129934e-19,-0.00013130252773407847,-8.470329472543003e-21,-5.082197683525802e-20,1.750700357661117e-05,-6.569140137590539e-20,-8.26058813470738e-20,-2.4249038763887822e-20,0.001953125,-4.36060150628634e-20,-0.005859375,-2.907880237945958e-18,-7.727081034976399e-21,2.247096363088651e-19,-6.569140137590539e-20,0.001953125,3.304235253882952e-19,4.59495211358027e-19,0.0015625000232830644,1.0215671259248e-18,-0.0010416667209938169,-0.00044642857392318547,-1.769775054100937e-20,-2.766038977119333e-19,-8.26058813470738e-20,3.304235253882952e-19,0.00029761905898340046,-3.461623684515241e-19,0.0006510416860692203,7.661840039906377e-19,6.195441133342278e-19,-0.0006510416860692203,-3.0575571351460533e-20,-1.040907733094935e-19,-2.4249038763887822e-20,4.59495211358027e-19,-3.461623684515241e-19,9.300595411332324e-05,16.0,4.0,9.0,0.05253738537430763,-0.005739379208534956,-0.017806371673941612,-0.009461898356676102,0.00017020697123371065,0.000735294132027775,0.0003676470660138875,0.0017361111240461469,0.0012499999720603228,0.0004734848625957966,-0.005739379208534956,0.0015190242556855083,0.000735294132027775,0.0003676470660138875,-7.294584793271497e-05,-9.803921420825645e-05,-4.901960710412823e-05,6.658049128742918e-19,5.048798004471986e-20,2.523951646158618e-19,-0.017806371673941612,0.000735294132027775,0.024023693054914474,0.0012499999720603228,1.6263032587282567e-19,-0.0004901961074210703,4.193611835187783e-20,-0.0052083334885537624,-0.0008333333535119891,-1.1337676619702944e-18,-0.009461898356676102,0.0003676470660138875,0.0012499999720603228,0.004665258340537548,1.6940658945086007e-20,5.468884586613882e-20,-9.191176650347188e-05,-1.7288807891176154e-18,-0.0003124999930150807,-0.000405844155466184,0.00017020697123371065,-7.294584793271497e-05,1.6263032587282567e-19,1.6940658945086007e-20,4.863056346948724e-06,-3.3881317890172014e-21,-8.470329472543003e-22,-4.675255841422683e-20,-2.1697171125109764e-22,-2.305194645491342e-21,0.000735294132027775,-9.803921420825645e-05,-0.0004901961074210703,5.468884586613882e-20,-3.3881317890172014e-21,6.535947613883764e-05,-1.3552527156068805e-20,-6.6435043208939096e-21,5.7824117266069086e-21,5.6322190726013635e-21,0.0003676470660138875,-4.901960710412823e-05,4.193611835187783e-20,-9.191176650347188e-05,-8.470329472543003e-22,-1.3552527156068805e-20,1.2254901776032057e-05,2.3865693864344913e-20,2.1098857110298863e-21,-4.8393529653167185e-20,0.0017361111240461469,6.658049128742918e-19,-0.0052083334885537624,-1.7288807891176154e-18,-4.675255841422683e-20,-6.6435043208939096e-21,2.3865693864344913e-20,0.0017361111240461469,1.7418492750624334e-19,1.6082292330970023e-19,0.0012499999720603228,5.048798004471986e-20,-0.0008333333535119891,-0.0003124999930150807,-2.1697171125109764e-22,5.7824117266069086e-21,2.1098857110298863e-21,1.7418492750624334e-19,0.00020833333837799728,1.4793922337766883e-19,0.0004734848625957966,2.523951646158618e-19,-1.1337676619702944e-18,-0.000405844155466184,-2.305194645491342e-21,5.6322190726013635e-21,-4.8393529653167185e-20,1.6082292330970023e-19,1.4793922337766883e-19,5.0730519433273e-05,16.0,4.0,10.0,0.04803197458386421,-0.005195521283894777,-0.01612800732254982,-0.007838401943445206,0.00015318627993110567,0.0006617647013626993,0.00030080214492045343,0.0015625000232830644,0.0010227272287011147,0.00035511364694684744,-0.005195521283894777,0.0013711325591430068,0.0006617647013626993,0.00030080214492045343,-6.565126386703923e-05,-8.823529060464352e-05,-4.0106951928464696e-05,-2.1967714701027493e-19,9.583699228961607e-21,-0.0,-0.01612800732254982,0.0006617647013626993,0.021689506247639656,0.0010227272287011147,-4.944882147550305e-20,-0.00044117646757513285,-5.3914417404681657e-20,-0.004687500186264515,-0.0006818181718699634,-0.0,-0.007838401943445206,0.00030080214492045343,0.0010227272287011147,0.0034286570735275745,3.543246632148738e-22,-2.289667277937178e-20,-6.68449210934341e-05,-5.759405281144137e-19,-0.00022727272880729288,-0.0002663352352101356,0.00015318627993110567,-6.565126386703923e-05,-4.944882147550305e-20,3.543246632148738e-22,4.376750894152792e-06,-9.778111916460535e-22,-7.594529910897139e-23,1.6388795382781024e-20,9.039416001488848e-22,-0.0,0.0006617647013626993,-8.823529060464352e-05,-0.00044117646757513285,-2.289667277937178e-20,-9.778111916460535e-22,5.8823530707741156e-05,3.8116482626443515e-21,-6.626530962465234e-20,-5.064342618418804e-21,-0.0,0.00030080214492045343,-4.0106951928464696e-05,-5.3914417404681657e-20,-6.68449210934341e-05,-7.594529910897139e-23,3.8116482626443515e-21,8.912656085158233e-06,1.2197274117344498e-20,-3.679716590013195e-21,-0.0,0.0015625000232830644,-2.1967714701027493e-19,-0.004687500186264515,-5.759405281144137e-19,1.6388795382781024e-20,-6.626530962465234e-20,1.2197274117344498e-20,0.0015625000232830644,3.2297396264103677e-19,-0.0,0.0010227272287011147,9.583699228961607e-21,-0.0006818181718699634,-0.00022727272880729288,9.039416001488848e-22,-5.064342618418804e-21,-3.679716590013195e-21,3.2297396264103677e-19,0.00015151515253819525,-0.0,0.00035511364694684744,-0.0,-0.0,-0.0002663352352101356,-0.0,-0.0,-0.0,-0.0,-0.0,2.9592803912237287e-05,16.0,4.0,11.0,0.04424062371253967,-0.004745989106595516,-0.014739304780960083,-0.00660029286518693,0.00013926024257671088,0.0006016042898409069,0.00025066843954846263,0.0014204545877873898,0.0008522727293893695,0.0002731643326114863,-0.004745989106595516,0.0012495225528255105,0.0006016042898409069,0.00025066843954846263,-5.9682963183149695e-05,-8.021390385692939e-05,-3.342246054671705e-05,0.0,0.0,-0.0,-0.014739304780960083,0.0006016042898409069,0.01976938545703888,0.0008522727293893695,8.015630551644592e-21,-0.00040106952656060457,0.0,-0.004261363763362169,-0.0005681818001903594,-0.0,-0.00660029286518693,0.00025066843954846263,0.0008522727293893695,0.002594825578853488,1.908496312441634e-21,0.0,-5.013369082007557e-05,0.0,-0.00017045454296749085,-0.0001821095502236858,0.00013926024257671088,-5.9682963183149695e-05,8.015630551644592e-21,1.908496312441634e-21,3.97886424252647e-06,-8.993441440368057e-22,-4.075662362381096e-22,0.0,0.0,-0.0,0.0006016042898409069,-8.021390385692939e-05,-0.00040106952656060457,0.0,-8.993441440368057e-22,5.347593469195999e-05,0.0,0.0,0.0,-0.0,0.00025066843954846263,-3.342246054671705e-05,0.0,-5.013369082007557e-05,-4.075662362381096e-22,0.0,6.684491836494999e-06,0.0,0.0,-0.0,0.0014204545877873898,0.0,-0.004261363763362169,0.0,0.0,0.0,0.0,0.0014204545877873898,0.0,-0.0,0.0008522727293893695,0.0,-0.0005681818001903594,-0.00017045454296749085,0.0,0.0,0.0,0.0,0.00011363636440364644,-0.0,0.0002731643326114863,-0.0,-0.0,-0.0001821095502236858,-0.0,-0.0,-0.0,-0.0,-0.0,1.8210956113762222e-05,16.0,4.0,12.0,0.04100555181503296,-0.004368165507912636,-0.013571125455200672,-0.005634393077343702,0.0001276552357012406,0.0005514706135727465,0.00021210407430771738,0.0013020833721384406,0.0007211538613773882,0.0002146291226381436,-0.004368165507912636,0.001147752394899726,0.0005514706135727465,0.00021210407430771738,-5.470938413054682e-05,-7.352940883720294e-05,-2.8280543119763024e-05,0.0,0.0,-0.0,-0.013571125455200672,0.0005514706135727465,0.01816200092434883,0.0007211538613773882,-1.992043169896624e-21,-0.0003676470660138875,-3.3881317890172014e-21,-0.00390625,-0.000480769231216982,-0.0,-0.005634393077343702,0.00021210407430771738,0.0007211538613773882,0.00201172917149961,-1.4662821440429652e-21,-3.3881317890172014e-21,-3.856437615468167e-05,0.0,-0.00013111888256389648,-0.00012877747940365225,0.0001276552357012406,-5.470938413054682e-05,-1.992043169896624e-21,-1.4662821440429652e-21,3.647292260211543e-06,1.7022558105612818e-22,2.3105435515690728e-22,0.0,0.0,-0.0,0.0005514706135727465,-7.352940883720294e-05,-0.0003676470660138875,-3.3881317890172014e-21,1.7022558105612818e-22,4.901960710412823e-05,4.235164736271502e-22,0.0,0.0,-0.0,0.00021210407430771738,-2.8280543119763024e-05,-3.3881317890172014e-21,-3.856437615468167e-05,2.3105435515690728e-22,4.235164736271502e-22,5.141916972206673e-06,0.0,0.0,-0.0,0.0013020833721384406,0.0,-0.00390625,0.0,0.0,0.0,0.0,0.0013020833721384406,0.0,-0.0,0.0007211538613773882,0.0,-0.000480769231216982,-0.00013111888256389648,0.0,0.0,0.0,0.0,8.741259080125019e-05,-0.0,0.0002146291226381436,-0.0,-0.0,-0.00012877747940365225,-0.0,-0.0,-0.0,-0.0,-0.0,1.1707043086062185e-05,16.0,4.0,13.0,0.03821239992976189,-0.004046137910336256,-0.012574741616845131,-0.004866273608058691,0.00011783559602918103,0.0005090498016215861,0.0001818034943426028,0.0012019231216982007,0.0006181318894959986,0.00017170330102089792,-0.004046137910336256,0.0010613283375278115,0.0005090498016215861,0.0001818034943426028,-5.050097024650313e-05,-6.787330494262278e-05,-2.424046579108108e-05,0.0,-5.082197683525802e-21,5.082197683525802e-21,-0.012574741616845131,0.0005090498016215861,0.016796622425317764,0.0006181318894959986,3.5330346068495985e-21,-0.0003393665247131139,-5.082197683525802e-21,-0.0036057692486792803,-0.00041208791662938893,0.0,-0.004866273608058691,0.0001818034943426028,0.0006181318894959986,0.001591515145264566,9.599628918101788e-22,-1.3804193424315405e-21,-3.0300581784103997e-05,-0.0,-0.00010302197915734723,-9.365634468849748e-05,0.00011783559602918103,-5.050097024650313e-05,3.5330346068495985e-21,9.599628918101788e-22,3.3667313346086303e-06,-4.043296598508454e-22,-1.126836684921557e-22,-0.0,-2.627834199266147e-23,-7.24832347205588e-23,0.0005090498016215861,-6.787330494262278e-05,-0.0003393665247131139,-1.3804193424315405e-21,-4.043296598508454e-22,4.5248867536429316e-05,2.60363699540376e-23,0.0,9.710945900852866e-23,8.047604914290499e-23,0.0001818034943426028,-2.424046579108108e-05,-5.082197683525802e-21,-3.0300581784103997e-05,-1.126836684921557e-22,2.60363699540376e-23,4.040077783429297e-06,0.0,9.064845342976318e-22,-6.352747104407253e-22,0.0012019231216982007,0.0,-0.0036057692486792803,-0.0,-0.0,0.0,0.0,0.0012019231216982007,0.0,0.0,0.0006181318894959986,-5.082197683525802e-21,-0.00041208791662938893,-0.00010302197915734723,-2.627834199266147e-23,9.710945900852866e-23,9.064845342976318e-22,0.0,6.868132186355069e-05,0.0,0.00017170330102089792,5.082197683525802e-21,0.0,-9.365634468849748e-05,-7.24832347205588e-23,8.047604914290499e-23,-6.352747104407253e-22,0.0,0.0,7.804695087543223e-06,16.0,4.0,14.0,0.03577621653676033,-0.0037683823611587286,-0.011714810505509377,-0.004245338961482048,0.00010941876826109365,0.0004726890765596181,0.00015756303037051111,0.0011160714784637094,0.0005357142654247582,0.00013950893480796367,-0.0037683823611587286,0.00098701985552907,0.0004726890765596181,0.00015756303037051111,-4.689375782618299e-05,-6.302521069301292e-05,-2.100840356433764e-05,0.0,-1.0164395367051604e-20,-1.6940658945086007e-21,-0.011714810505509377,0.0004726890765596181,0.015622373670339584,0.0005357142654247582,-3.879784842222706e-21,-0.00031512606074102223,-1.5246593050577406e-20,-0.0033482143189758062,-0.0003571428533177823,-4.404571325722362e-20,-0.004245338961482048,0.00015756303037051111,0.0005357142654247582,0.0012809191830456257,-3.7310179943499194e-22,-0.0,-2.424046579108108e-05,-0.0,-8.241758041549474e-05,-6.975446740398183e-05,0.00010941876826109365,-4.689375782618299e-05,-3.879784842222706e-21,-3.7310179943499194e-22,3.1262504762707977e-06,6.018933481060398e-22,-2.4240373486564542e-23,0.0,-6.740981149270556e-23,4.3113466747193777e-23,0.0004726890765596181,-6.302521069301292e-05,-0.00031512606074102223,-0.0,6.018933481060398e-22,4.201680712867528e-05,2.1644616580515216e-22,0.0,-1.4920795364743752e-22,-9.238911730007787e-23,0.00015756303037051111,-2.100840356433764e-05,-1.5246593050577406e-20,-2.424046579108108e-05,-2.4240373486564542e-23,2.1644616580515216e-22,3.232061999369762e-06,0.0,1.79502494424751e-21,0.0,0.0011160714784637094,0.0,-0.0033482143189758062,-0.0,0.0,0.0,0.0,0.0011160714784637094,0.0,0.0,0.0005357142654247582,-1.0164395367051604e-20,-0.0003571428533177823,-8.241758041549474e-05,-6.740981149270556e-23,-1.4920795364743752e-22,1.79502494424751e-21,0.0,5.494505603564903e-05,6.776263578034403e-21,0.00013950893480796367,-1.6940658945086007e-21,-4.404571325722362e-20,-6.975446740398183e-05,4.3113466747193777e-23,-9.238911730007787e-23,0.0,0.0,6.776263578034403e-21,5.36572815690306e-06,16.0,4.0,15.0,0.0336325578391552,-0.003526348154991865,-0.010965073481202126,-0.0037362133152782917,0.00010212418419541791,0.00044117646757513285,0.00013786765339318663,0.0010416667209938169,0.00046874998952262104,0.00011488970631035045,-0.003526348154991865,0.0009224439854733646,0.00044117646757513285,0.00013786765339318663,-4.376750803203322e-05,-5.8823530707741156e-05,-1.8382352209300734e-05,-1.9592170888988252e-19,-8.470329472543003e-21,2.541098841762901e-21,-0.010965073481202126,0.00044117646757513285,0.014601715840399265,0.00046874998952262104,-1.8266492545998913e-21,-0.00029411763534881175,-1.0164395367051604e-20,-0.0031250000465661287,-0.0003124999930150807,2.710505431213761e-20,-0.0037362133152782917,0.00013786765339318663,0.00046874998952262104,0.001046329620294273,1.3990674588728879e-21,-3.6301848695306775e-20,-1.969537879631389e-05,-1.3456726424539975e-34,-6.696428317809477e-05,-5.3026018576929346e-05,0.00010212418419541791,-4.376750803203322e-05,-1.8266492545998913e-21,1.3990674588728879e-21,2.9178338536439696e-06,2.77182371811869e-22,1.8143534185097307e-23,3.3191530973986056e-38,-2.925222769848709e-23,-5.572239541974935e-23,0.00044117646757513285,-5.8823530707741156e-05,-0.00029411763534881175,-3.6301848695306775e-20,2.77182371811869e-22,3.9215687138494104e-05,2.25798032319368e-21,1.3061446828502265e-19,1.2926212491872649e-20,-4.799004945767174e-24,0.00013786765339318663,-1.8382352209300734e-05,-1.0164395367051604e-20,-1.969537879631389e-05,1.8143534185097307e-23,2.25798032319368e-21,2.626050445542205e-06,9.638859243778236e-36,-1.3993961298804392e-21,-2.117582368135751e-22,0.0010416667209938169,-1.9592170888988252e-19,-0.0031250000465661287,-1.3456726424539975e-34,3.3191530973986056e-38,1.3061446828502265e-19,9.638859243778236e-36,0.0010416667209938169,4.369843425968606e-35,-2.173630951273946e-37,0.00046874998952262104,-8.470329472543003e-21,-0.0003124999930150807,-6.696428317809477e-05,-2.925222769848709e-23,1.2926212491872649e-20,-1.3993961298804392e-21,4.369843425968606e-35,4.4642856664722785e-05,-4.658681209898652e-21,0.00011488970631035045,2.541098841762901e-21,2.710505431213761e-20,-5.3026018576929346e-05,-5.572239541974935e-23,-4.799004945767174e-24,-2.117582368135751e-22,-2.173630951273946e-37,-4.658681209898652e-21,3.7875727230129996e-06,16.0,4.0,16.0,0.031731635332107544,-0.0033135542180389166,-0.010305606760084629,-0.0033135542180389166,9.574142313795164e-05,0.00041360294562764466,0.00012164792133262381,0.0009765625,0.00041360294562764466,9.574142313795164e-05,-0.0033135542180389166,0.0008658049628138542,0.00041360294562764466,0.00012164792133262381,-4.103203900740482e-05,-5.5147058446891606e-05,-1.62197229656158e-05,0.0,-3.3881317890172014e-21,-3.3881317890172014e-21,-0.010305606760084629,0.00041360294562764466,0.013706342317163944,0.00041360294562764466,-1.9249512693487224e-21,-0.00027573530678637326,1.6940658945086007e-21,-0.0029296875,-0.00027573530678637326,-2.0328790734103208e-20,-0.0033135542180389166,0.00012164792133262381,0.00041360294562764466,0.0008658049628138542,2.2890135306034485e-21,7.509660973052097e-21,-1.62197229656158e-05,-0.0,-5.5147058446891606e-05,-4.103203900740482e-05,9.574142313795164e-05,-4.103203900740482e-05,-1.9249512693487224e-21,2.2890135306034485e-21,2.7354692520020762e-06,3.4010933921569323e-22,-8.045049004957583e-23,0.0,-1.496458661131438e-22,-8.833149448265962e-23,0.00041360294562764466,-5.5147058446891606e-05,-0.00027573530678637326,7.509660973052097e-21,3.4010933921569323e-22,3.676470441860147e-05,-8.92195069995135e-22,-0.0,-1.4495185342626566e-22,-6.446091690035734e-23,0.00012164792133262381,-1.62197229656158e-05,1.6940658945086007e-21,-1.62197229656158e-05,-8.045049004957583e-23,-8.92195069995135e-22,2.1626296984322835e-06,0.0,7.568742489667571e-22,6.352747104407253e-22,0.0009765625,0.0,-0.0029296875,-0.0,0.0,-0.0,0.0,0.0009765625,0.0,0.0,0.00041360294562764466,-3.3881317890172014e-21,-0.00027573530678637326,-5.5147058446891606e-05,-1.496458661131438e-22,-1.4495185342626566e-22,7.568742489667571e-22,0.0,3.676470441860147e-05,1.6940658945086007e-21,9.574142313795164e-05,-3.3881317890172014e-21,-2.0328790734103208e-20,-4.103203900740482e-05,-8.833149448265962e-23,-6.446091690035734e-23,6.352747104407253e-22,0.0,1.6940658945086007e-21,2.7354692520020762e-06,16.0,5.0,3.0,0.10321545600891113,-0.01274509821087122,-0.03335084021091461,-0.04779411852359772,0.00040849673678167164,0.00147058826405555,0.002205882454290986,0.0029761905316263437,0.0062500000931322575,0.0062500000931322575,-0.01274509821087122,0.003508403431624174,0.00147058826405555,0.002205882454290986,-0.00017507003212813288,-0.0001960784284165129,-0.00029411763534881175,5.803005971231807e-19,-5.468463629230275e-19,1.9927105624792864e-18,-0.03335084021091461,0.00147058826405555,0.034532561898231506,0.0062500000931322575,-2.609862366084434e-19,-0.000735294132027775,-1.4012186252585694e-19,-0.0059523810632526875,-0.0031250000465661287,2.2468504319527815e-18,-0.04779411852359772,0.002205882454290986,0.0062500000931322575,0.11029411852359772,-1.1638159799982605e-19,5.418818316816374e-19,-0.002205882454290986,1.4606978743848075e-18,-0.0062500000931322575,-0.03750000149011612,0.00040849673678167164,-0.00017507003212813288,-2.609862366084434e-19,-1.1638159799982605e-19,1.1671335414575879e-05,8.632064284929861e-21,3.490688048586355e-21,4.4818665072040405e-20,1.461394528481639e-20,2.8776153019950794e-20,0.00147058826405555,-0.0001960784284165129,-0.000735294132027775,5.418818316816374e-19,8.632064284929861e-21,9.803921420825645e-05,1.2027935544111975e-20,-4.846052094302632e-19,2.1684043772827515e-20,-3.547692861227149e-19,0.002205882454290986,-0.00029411763534881175,-1.4012186252585694e-19,-0.002205882454290986,3.490688048586355e-21,1.2027935544111975e-20,0.00029411763534881175,-6.317938310255255e-20,2.781807107546125e-19,-1.1991321977572706e-18,0.0029761905316263437,5.803005971231807e-19,-0.0059523810632526875,1.4606978743848075e-18,4.4818665072040405e-20,-4.846052094302632e-19,-6.317938310255255e-20,0.0014880952658131719,-4.783668717443297e-19,-1.6228167247580883e-20,0.0062500000931322575,-5.468463629230275e-19,-0.0031250000465661287,-0.0062500000931322575,1.461394528481639e-20,2.1684043772827515e-20,2.781807107546125e-19,-4.783668717443297e-19,0.0031250000465661287,1.2355707445111503e-18,0.0062500000931322575,1.9927105624792864e-18,2.2468504319527815e-18,-0.03750000149011612,2.8776153019950794e-20,-3.547692861227149e-19,-1.1991321977572706e-18,-1.6228167247580883e-20,1.2355707445111503e-18,0.01875000074505806,16.0,5.0,4.0,0.08426820486783981,-0.009889706037938595,-0.025950631126761436,-0.030551470816135406,0.00030637255986221135,0.001102941227145493,0.0013235294027253985,0.0022321429569274187,0.0037499999161809683,0.0031250000465661287,-0.009889706037938595,0.0026754201389849186,0.001102941227145493,0.0013235294027253985,-0.00013130252773407847,-0.00014705881767440587,-0.00017647058120928705,-3.333524840494054e-18,-1.3489517706883344e-18,-8.925073952998591e-20,-0.025950631126761436,0.001102941227145493,0.026368172839283943,0.0037499999161809683,-1.7880199119157292e-19,-0.0005514706135727465,-2.6437213500980673e-18,-0.004464285913854837,-0.0018749999580904841,-6.253416361319741e-18,-0.030551470816135406,0.0013235294027253985,0.0037499999161809683,0.04224264621734619,2.9472858815570653e-19,-1.8425950656840817e-18,-0.0008823529351502657,-1.1294422518291934e-17,-0.0024999999441206455,-0.00937500037252903,0.00030637255986221135,-0.00013130252773407847,-1.7880199119157292e-19,2.9472858815570653e-19,8.753501788305584e-06,-2.1474798177903927e-21,-1.4613284509678628e-20,3.704984292007919e-20,1.9535537451361926e-20,-7.006997208852974e-20,0.001102941227145493,-0.00014705881767440587,-0.0005514706135727465,-1.8425950656840817e-18,-2.1474798177903927e-21,7.352940883720294e-05,1.333722674446417e-20,9.360356166110513e-19,3.295974562996903e-19,3.485273553709956e-19,0.0013235294027253985,-0.00017647058120928705,-2.6437213500980673e-18,-0.0008823529351502657,-1.4613284509678628e-20,1.333722674446417e-20,0.00011764706141548231,5.311155590213769e-19,2.6321879708172404e-19,2.9862398845537187e-19,0.0022321429569274187,-3.333524840494054e-18,-0.004464285913854837,-1.1294422518291934e-17,3.704984292007919e-20,9.360356166110513e-19,5.311155590213769e-19,0.0011160714784637094,2.1427487178872173e-18,7.765347217906669e-19,0.0037499999161809683,-1.3489517706883344e-18,-0.0018749999580904841,-0.0024999999441206455,1.9535537451361926e-20,3.295974562996903e-19,2.6321879708172404e-19,2.1427487178872173e-18,0.0012499999720603228,6.267387881305462e-20,0.0031250000465661287,-8.925073952998591e-20,-6.253416361319741e-18,-0.00937500037252903,-7.006997208852974e-20,3.485273553709956e-19,2.9862398845537187e-19,7.765347217906669e-19,6.267387881305462e-20,0.0031250000465661287,16.0,5.0,5.0,0.07130952179431915,-0.00808823574334383,-0.02126050367951393,-0.02126050367951393,0.00024509805371053517,0.0008823529351502657,0.0008823529351502657,0.0017857142956927419,0.0024999999441206455,0.0017857142956927419,-0.00808823574334383,0.002163865603506565,0.0008823529351502657,0.0008823529351502657,-0.0001050420178216882,-0.00011764706141548231,-0.00011764706141548231,-1.5135410670468388e-18,3.8058198705001205e-20,-1.2848210781825576e-18,-0.02126050367951393,0.0008823529351502657,0.021344536915421486,0.0024999999441206455,-1.3647408972855186e-20,-0.00044117646757513285,-3.910659972509359e-19,-0.0035714285913854837,-0.0012499999720603228,1.071771198842481e-18,-0.02126050367951393,0.0008823529351502657,0.0024999999441206455,0.021344536915421486,1.8865666558036024e-20,-1.0717253807913638e-19,-0.00044117646757513285,-2.5533801474138407e-19,-0.0012499999720603228,-0.0035714285913854837,0.00024509805371053517,-0.0001050420178216882,-1.3647408972855186e-20,1.8865666558036024e-20,7.002801339694997e-06,-5.1730982897174875e-21,-5.650032536339664e-21,2.112923661076458e-20,-1.603565065353197e-20,1.3895219036561575e-20,0.0008823529351502657,-0.00011764706141548231,-0.00044117646757513285,-1.0717253807913638e-19,-5.1730982897174875e-21,5.8823530707741156e-05,-6.869356132069997e-21,4.784023371130929e-19,3.1319733403551354e-20,2.759581798462591e-20,0.0008823529351502657,-0.00011764706141548231,-3.910659972509359e-19,-0.00044117646757513285,-5.650032536339664e-21,-6.869356132069997e-21,5.8823530707741156e-05,8.278744749152919e-20,6.26117239448395e-20,4.082040680190865e-19,0.0017857142956927419,-1.5135410670468388e-18,-0.0035714285913854837,-2.5533801474138407e-19,2.112923661076458e-20,4.784023371130929e-19,8.278744749152919e-20,0.0008928571478463709,4.847927209353713e-19,-3.3344787865354806e-19,0.0024999999441206455,3.8058198705001205e-20,-0.0012499999720603228,-0.0012499999720603228,-1.603565065353197e-20,3.1319733403551354e-20,6.26117239448395e-20,4.847927209353713e-19,0.0006249999860301614,1.2281228102757229e-19,0.0017857142956927419,-1.2848210781825576e-18,1.071771198842481e-18,-0.0035714285913854837,1.3895219036561575e-20,2.759581798462591e-20,4.082040680190865e-19,-3.3344787865354806e-19,1.2281228102757229e-19,0.0008928571478463709,16.0,5.0,6.0,0.06184932217001915,-0.0068452381528913975,-0.018014706671237946,-0.015664391219615936,0.00020424836839083582,0.000735294132027775,0.0006302521214820445,0.0014880952658131719,0.0017857142956927419,0.0011160714784637094,-0.0068452381528913975,0.0018172268755733967,0.000735294132027775,0.0006302521214820445,-8.753501606406644e-05,-9.803921420825645e-05,-8.403361425735056e-05,6.205737981004914e-19,3.7432132841223667e-19,1.9740914118996625e-20,-0.018014706671237946,0.000735294132027775,0.017935924232006073,0.0017857142956927419,6.631008764155209e-22,-0.0003676470660138875,1.4336285956341628e-19,-0.0029761905316263437,-0.0008928571478463709,2.736243983153961e-18,-0.015664391219615936,0.0006302521214820445,0.0017857142956927419,0.012404149398207664,-3.6823218050459534e-20,4.880961184103901e-19,-0.0002521008427720517,7.452007272763672e-18,-0.0007142857066355646,-0.0016741071594879031,0.00020424836839083582,-8.753501606406644e-05,6.631008764155209e-22,-3.6823218050459534e-20,5.835667707287939e-06,3.9744513820234955e-22,5.288457673425957e-21,8.880801695651104e-22,-4.233756752084314e-21,-9.074193534029805e-22,0.000735294132027775,-9.803921420825645e-05,-0.0003676470660138875,4.880961184103901e-19,3.9744513820234955e-22,4.901960710412823e-05,-2.997181513041492e-21,-2.518993473868187e-19,-1.1842379060994584e-19,-4.38491447706429e-20,0.0006302521214820445,-8.403361425735056e-05,1.4336285956341628e-19,-0.0002521008427720517,5.288457673425957e-21,-2.997181513041492e-21,3.361344715813175e-05,-2.869045904719486e-20,-5.469457554590917e-21,2.1158435117035422e-20,0.0014880952658131719,6.205737981004914e-19,-0.0029761905316263437,7.452007272763672e-18,8.880801695651104e-22,-2.518993473868187e-19,-2.869045904719486e-20,0.0007440476329065859,-1.3625217720348434e-18,-8.421354693413153e-19,0.0017857142956927419,3.7432132841223667e-19,-0.0008928571478463709,-0.0007142857066355646,-4.233756752084314e-21,-1.1842379060994584e-19,-5.469457554590917e-21,-1.3625217720348434e-18,0.0003571428533177823,3.556085642517265e-19,0.0011160714784637094,1.9740914118996625e-20,2.736243983153961e-18,-0.0016741071594879031,-9.074193534029805e-22,-4.38491447706429e-20,2.1158435117035422e-20,-8.421354693413153e-19,3.556085642517265e-19,0.0003348214377183467,16.0,5.0,7.0,0.05462560057640076,-0.005934874061495066,-0.015632502734661102,-0.012027311138808727,0.00017507003212813288,0.0006302521214820445,0.0004726890765596181,0.0012755101779475808,0.0013392857508733869,0.0007440476329065859,-0.005934874061495066,0.0015666265971958637,0.0006302521214820445,0.0004726890765596181,-7.503000961150974e-05,-8.403361425735056e-05,-6.302521069301292e-05,-2.8322015354022696e-19,-3.723442892000525e-19,-5.671072214493248e-19,-0.015632502734661102,0.0006302521214820445,0.01546931266784668,0.0013392857508733869,-9.248999173344064e-20,-0.00031512606074102223,-3.57970087352383e-19,-0.0025510203558951616,-0.0006696428754366934,-8.815100419806637e-19,-0.012027311138808727,0.0004726890765596181,0.0013392857508733869,0.007878151722252369,-1.2232005686431495e-19,-8.410075568773109e-19,-0.00015756303037051111,-3.8865148289228775e-19,-0.00044642857392318547,-0.0008928571478463709,0.00017507003212813288,-7.503000961150974e-05,-9.248999173344064e-20,-1.2232005686431495e-19,5.002000762033276e-06,-1.8475351611700717e-21,8.025510371839324e-22,2.2872102930239542e-20,7.211453476497494e-21,1.641498243463429e-20,0.0006302521214820445,-8.403361425735056e-05,-0.00031512606074102223,-8.410075568773109e-19,-1.8475351611700717e-21,4.201680712867528e-05,1.4575365064059034e-20,-1.6266480896461147e-20,4.342935060977224e-20,1.0095597850776774e-19,0.0004726890765596181,-6.302521069301292e-05,-3.57970087352383e-19,-0.00015756303037051111,8.025510371839324e-22,1.4575365064059034e-20,2.100840356433764e-05,1.2160148732801212e-20,5.3351937819319866e-20,1.760033225242278e-20,0.0012755101779475808,-2.8322015354022696e-19,-0.0025510203558951616,-3.8865148289228775e-19,2.2872102930239542e-20,-1.6266480896461147e-20,1.2160148732801212e-20,0.0006377550889737904,2.640773588587658e-19,-4.3902013244012404e-20,0.0013392857508733869,-3.723442892000525e-19,-0.0006696428754366934,-0.00044642857392318547,7.211453476497494e-21,4.342935060977224e-20,5.3351937819319866e-20,2.640773588587658e-19,0.00022321428696159273,3.431077649327762e-20,0.0007440476329065859,-5.671072214493248e-19,-8.815100419806637e-19,-0.0008928571478463709,1.641498243463429e-20,1.0095597850776774e-19,1.760033225242278e-20,-4.3902013244012404e-20,3.431077649327762e-20,0.00014880952949170023,16.0,5.0,8.0,0.048923321068286896,-0.0052389707416296005,-0.013808648101985455,-0.009528186172246933,0.00015318627993110567,0.0005514706135727465,0.0003676470660138875,0.0011160714784637094,0.0010416667209938169,0.0005208333604969084,-0.0052389707416296005,0.0013769257348030806,0.0005514706135727465,0.0003676470660138875,-6.565126386703923e-05,-7.352940883720294e-05,-4.901960710412823e-05,-1.1711271709386753e-18,-2.3797816586501547e-20,2.3654431612781442e-19,-0.013808648101985455,0.0005514706135727465,0.01360075268894434,0.0010416667209938169,0.0,-0.00027573530678637326,1.52426678200769e-19,-0.0022321429569274187,-0.0005208333604969084,2.030668433223273e-18,-0.009528186172246933,0.0003676470660138875,0.0010416667209938169,0.005326505750417709,-3.3881317890172014e-21,2.8639032323783644e-19,-0.0001050420178216882,1.861882849617287e-18,-0.00029761905898340046,-0.0005208333604969084,0.00015318627993110567,-6.565126386703923e-05,0.0,-3.3881317890172014e-21,4.376750894152792e-06,-3.3881317890172014e-21,-1.4823076576950256e-21,9.47594683727307e-21,-2.326926311926115e-21,2.257380940367006e-21,0.0005514706135727465,-7.352940883720294e-05,-0.00027573530678637326,2.8639032323783644e-19,-3.3881317890172014e-21,3.676470441860147e-05,-1.2705494208814505e-20,4.6852523191253865e-19,6.573962988302635e-20,-4.13029406735369e-20,0.0003676470660138875,-4.901960710412823e-05,1.52426678200769e-19,-0.0001050420178216882,-1.4823076576950256e-21,-1.2705494208814505e-20,1.4005602679389995e-05,4.283598523932665e-22,-1.1126751347303861e-20,-5.16234954617763e-20,0.0011160714784637094,-1.1711271709386753e-18,-0.0022321429569274187,1.861882849617287e-18,9.47594683727307e-21,4.6852523191253865e-19,4.283598523932665e-22,0.0005580357392318547,5.17598807426801e-19,-4.020476470631899e-19,0.0010416667209938169,-2.3797816586501547e-20,-0.0005208333604969084,-0.00029761905898340046,-2.326926311926115e-21,6.573962988302635e-20,-1.1126751347303861e-20,5.17598807426801e-19,0.00014880952949170023,-1.4604322847846926e-20,0.0005208333604969084,2.3654431612781442e-19,2.030668433223273e-18,-0.0005208333604969084,2.257380940367006e-21,-4.13029406735369e-20,-5.16234954617763e-20,-4.020476470631899e-19,-1.4604322847846926e-20,7.440476474585012e-05,16.0,5.0,9.0,0.04430488497018814,-0.004689542576670647,-0.012366946786642075,-0.0077361855655908585,0.00013616557407658547,0.0004901961074210703,0.00029411763534881175,0.0009920635493472219,0.0008333333535119891,0.0003787878667935729,-0.004689542576670647,0.0012282913085073233,0.0004901961074210703,0.00029411763534881175,-5.835667616338469e-05,-6.535947613883764e-05,-3.9215687138494104e-05,-4.405647177506564e-19,-1.9772324364053765e-19,-1.0921799417526663e-19,-0.012366946786642075,0.0004901961074210703,0.012135853990912437,0.0008333333535119891,-1.4907779871675686e-19,-0.00024509805371053517,2.2327692071383206e-20,-0.0019841270986944437,-0.00041666667675599456,6.402677277144602e-19,-0.0077361855655908585,0.00029411763534881175,0.0008333333535119891,0.003773873206228018,-4.2351647362715017e-20,1.6672894118454056e-19,-7.352940883720294e-05,1.3378223657391631e-18,-0.00020833333837799728,-0.0003246753185521811,0.00013616557407658547,-5.835667616338469e-05,-1.4907779871675686e-19,-4.2351647362715017e-20,3.890444986609509e-06,-4.235164736271502e-22,-6.352747104407253e-22,2.5253090624685148e-20,1.2337507888359946e-20,2.7994370809756933e-21,0.0004901961074210703,-6.535947613883764e-05,-0.00024509805371053517,1.6672894118454056e-19,-4.235164736271502e-22,3.267973806941882e-05,-2.541098841762901e-21,2.205257373835263e-20,-1.0119220319613698e-20,-1.5770212918607678e-20,0.00029411763534881175,-3.9215687138494104e-05,2.2327692071383206e-20,-7.352940883720294e-05,-6.352747104407253e-22,-2.541098841762901e-21,9.803921784623526e-06,-1.411564328276135e-20,1.192185205393275e-20,1.8921567488455843e-20,0.0009920635493472219,-4.405647177506564e-19,-0.0019841270986944437,1.3378223657391631e-18,2.5253090624685148e-20,2.205257373835263e-20,-1.411564328276135e-20,0.0004960317746736109,-1.6217591937319849e-19,-1.1319550507542493e-19,0.0008333333535119891,-1.9772324364053765e-19,-0.00041666667675599456,-0.00020833333837799728,1.2337507888359946e-20,-1.0119220319613698e-20,1.192185205393275e-20,-1.6217591937319849e-19,0.00010416666918899864,-1.678268521954685e-20,0.0003787878667935729,-1.0921799417526663e-19,6.402677277144602e-19,-0.0003246753185521811,2.7994370809756933e-21,-1.5770212918607678e-20,1.8921567488455843e-20,-1.1319550507542493e-19,-1.678268521954685e-20,4.058441481902264e-05,16.0,5.0,10.0,0.040486693382263184,-0.004244652576744556,-0.011198434047400951,-0.006407085340470076,0.00012254902685526758,0.00044117646757513285,0.00024064170429483056,0.0008928571478463709,0.0006818181718699634,0.0002840909000951797,-0.004244652576744556,0.0011086707236245275,0.00044117646757513285,0.00024064170429483056,-5.25210089108441e-05,-5.8823530707741156e-05,-3.208556154277176e-05,-1.4611515441767016e-20,-2.3761806764874215e-20,-0.0,-0.011198434047400951,0.00044117646757513285,0.010956360027194023,0.0006818181718699634,-9.420158997952624e-21,-0.00022058823378756642,-7.607895940934872e-21,-0.0017857142956927419,-0.0003409090859349817,-0.0,-0.006407085340470076,0.00024064170429483056,0.0006818181718699634,0.0027732285670936108,-3.045195954867214e-21,-1.2562190822244662e-20,-5.347593469195999e-05,-6.2632844219574835e-37,-0.00015151515253819525,-0.00021306818234734237,0.00012254902685526758,-5.25210089108441e-05,-9.420158997952624e-21,-3.045195954867214e-21,3.5014006698474986e-06,2.7179777135589867e-22,2.6647557295297493e-22,9.0642152639941e-22,5.380842196400123e-22,-0.0,0.00044117646757513285,-5.8823530707741156e-05,-0.00022058823378756642,-1.2562190822244662e-20,2.7179777135589867e-22,2.9411765353870578e-05,2.117582368135751e-22,0.0,4.58702951661373e-21,-0.0,0.00024064170429483056,-3.208556154277176e-05,-7.607895940934872e-21,-5.347593469195999e-05,2.6647557295297493e-22,2.117582368135751e-22,7.130124686227646e-06,0.0,1.3141844098839731e-21,-0.0,0.0008928571478463709,-1.4611515441767016e-20,-0.0017857142956927419,-6.2632844219574835e-37,9.0642152639941e-22,0.0,0.0,0.00044642857392318547,3.1316422109787418e-37,-0.0,0.0006818181718699634,-2.3761806764874215e-20,-0.0003409090859349817,-0.00015151515253819525,5.380842196400123e-22,4.58702951661373e-21,1.3141844098839731e-21,3.1316422109787418e-37,7.575757626909763e-05,-0.0,0.0002840909000951797,-0.0,-0.0,-0.00021306818234734237,-0.0,-0.0,-0.0,-0.0,-0.0,2.3674241674598306e-05,16.0,5.0,11.0,0.03727656975388527,-0.0038770053070038557,-0.0102320471778512,-0.0053938706405460835,0.00011140819697175175,0.00040106952656060457,0.00020053476328030229,0.000811688310932368,0.0005681818001903594,0.00021853146608918905,-0.0038770053070038557,0.0010103131644427776,0.00040106952656060457,0.00020053476328030229,-4.774637272930704e-05,-5.347593469195999e-05,-2.6737967345979996e-05,0.0,0.0,-0.0,-0.0102320471778512,0.00040106952656060457,0.009986153803765774,0.0005681818001903594,-2.478348831637336e-21,-0.00020053476328030229,0.0,-0.001623376621864736,-0.0002840909000951797,-0.0,-0.0053938706405460835,0.00020053476328030229,0.0005681818001903594,0.0020985875744372606,1.042443764679387e-21,0.0,-4.0106951928464696e-05,0.0,-0.00011363636440364644,-0.00014568764891009778,0.00011140819697175175,-4.774637272930704e-05,-2.478348831637336e-21,1.042443764679387e-21,3.183091394021176e-06,3.390958612117632e-22,-3.2741256614817587e-22,0.0,0.0,-0.0,0.00040106952656060457,-5.347593469195999e-05,-0.00020053476328030229,0.0,3.390958612117632e-22,2.6737967345979996e-05,2.117582368135751e-22,0.0,0.0,-0.0,0.00020053476328030229,-2.6737967345979996e-05,0.0,-4.0106951928464696e-05,-3.2741256614817587e-22,2.117582368135751e-22,5.34759374204441e-06,0.0,0.0,-0.0,0.000811688310932368,0.0,-0.001623376621864736,0.0,0.0,0.0,0.0,0.000405844155466184,0.0,-0.0,0.0005681818001903594,0.0,-0.0002840909000951797,-0.00011363636440364644,0.0,0.0,0.0,0.0,5.681818220182322e-05,-0.0,0.00021853146608918905,-0.0,-0.0,-0.00014568764891009778,-0.0,-0.0,-0.0,-0.0,-0.0,1.4568764527211897e-05,16.0,5.0,12.0,0.03453952074050903,-0.003568061860278249,-0.009419441223144531,-0.0046036685816943645,0.00010212418419541791,0.0003676470660138875,0.00016968326235655695,0.0007440476329065859,0.000480769231216982,0.00017170330102089792,-0.003568061860278249,0.0009280058438889682,0.0003676470660138875,0.00016968326235655695,-4.376750803203322e-05,-4.901960710412823e-05,-2.2624433768214658e-05,0.0,0.0,-0.0,-0.009419441223144531,0.0003676470660138875,0.009174006059765816,0.000480769231216982,-1.6798507472142629e-21,-0.00018382353300694376,-1.6940658945086007e-21,-0.0014880952658131719,-0.000240384615608491,-0.0,-0.0046036685816943645,0.00016968326235655695,0.000480769231216982,0.001626865821890533,1.2899772600632929e-21,0.0,-3.0851500923745334e-05,0.0,-8.741259080125019e-05,-0.00010302197915734723,0.00010212418419541791,-4.376750803203322e-05,-1.6798507472142629e-21,1.2899772600632929e-21,2.9178338536439696e-06,-1.233745891587495e-22,-2.567002610509658e-22,0.0,0.0,-0.0,0.0003676470660138875,-4.901960710412823e-05,-0.00018382353300694376,0.0,-1.233745891587495e-22,2.4509803552064113e-05,0.0,0.0,0.0,-0.0,0.00016968326235655695,-2.2624433768214658e-05,-1.6940658945086007e-21,-3.0851500923745334e-05,-2.567002610509658e-22,0.0,4.113533577765338e-06,0.0,0.0,-0.0,0.0007440476329065859,0.0,-0.0014880952658131719,0.0,0.0,0.0,0.0,0.00037202381645329297,0.0,-0.0,0.000480769231216982,0.0,-0.000240384615608491,-8.741259080125019e-05,0.0,0.0,0.0,0.0,4.3706295400625095e-05,-0.0,0.00017170330102089792,-0.0,-0.0,-0.00010302197915734723,-0.0,-0.0,-0.0,-0.0,-0.0,9.365634468849748e-06,16.0,5.0,13.0,0.0321778729557991,-0.0033047834876924753,-0.008726567961275578,-0.003975436557084322,9.426847827853635e-05,0.0003393665247131139,0.00014544279838446528,0.0006868132040835917,0.00041208791662938893,0.00013736264372710139,-0.0033047834876924753,0.000858112471178174,0.0003393665247131139,0.00014544279838446528,-4.0400776924798265e-05,-4.5248867536429316e-05,-1.939237154147122e-05,0.0,0.0,6.776263578034403e-21,-0.008726567961275578,0.0003393665247131139,0.00848416332155466,0.00041208791662938893,4.275542802586293e-22,-0.00016968326235655695,0.0,-0.0013736264081671834,-0.00020604395831469446,0.0,-0.003975436557084322,0.00014544279838446528,0.00041208791662938893,0.0012869483325630426,9.606069052314268e-22,-0.0,-2.424046579108108e-05,-0.0,-6.868132186355069e-05,-7.492507575079799e-05,9.426847827853635e-05,-4.0400776924798265e-05,4.275542802586293e-22,9.606069052314268e-22,2.6933851131616393e-06,-7.120829034731508e-23,6.566408755300043e-23,-0.0,-1.8545531391510693e-23,-1.166694986563116e-22,0.0003393665247131139,-4.5248867536429316e-05,-0.00016968326235655695,-0.0,-7.120829034731508e-23,2.2624433768214658e-05,-1.059200129561142e-22,0.0,9.69680249256925e-25,-1.26399207495466e-25,0.00014544279838446528,-1.939237154147122e-05,0.0,-2.424046579108108e-05,6.566408755300043e-23,-1.059200129561142e-22,3.232061999369762e-06,0.0,-1.9555752030990876e-22,-8.470329472543003e-22,0.0006868132040835917,0.0,-0.0013736264081671834,-0.0,-0.0,0.0,0.0,0.00034340660204179585,0.0,0.0,0.00041208791662938893,0.0,-0.00020604395831469446,-6.868132186355069e-05,-1.8545531391510693e-23,9.69680249256925e-25,-1.9555752030990876e-22,0.0,3.4340660931775346e-05,-8.470329472543003e-22,0.00013736264372710139,6.776263578034403e-21,0.0,-7.492507575079799e-05,-1.166694986563116e-22,-1.26399207495466e-25,-8.470329472543003e-22,0.0,-8.470329472543003e-22,6.243756160984049e-06,16.0,5.0,14.0,0.030119173228740692,-0.0030777310021221638,-0.008128751069307327,-0.0034676995128393173,8.753501606406644e-05,0.00031512606074102223,0.00012605042138602585,0.0006377550889737904,0.0003571428533177823,0.00011160714348079637,-0.0030777310021221638,0.0007980192312970757,0.00031512606074102223,0.00012605042138602585,-3.751500480575487e-05,-4.201680712867528e-05,-1.6806723579065874e-05,0.0,8.470329472543003e-22,-8.470329472543003e-22,-0.008128751069307327,0.00031512606074102223,0.007890906184911728,0.0003571428533177823,-3.6576492853513554e-21,-0.00015756303037051111,0.0,-0.0012755101779475808,-0.00017857142665889114,3.3881317890172014e-21,-0.0034676995128393173,0.00012605042138602585,0.0003571428533177823,0.0010357244173064828,-1.9351060422788045e-21,-8.983477306719775e-22,-1.939237154147122e-05,-0.0,-5.494505603564903e-05,-5.5803571740398183e-05,8.753501606406644e-05,-3.751500480575487e-05,-3.6576492853513554e-21,-1.9351060422788045e-21,2.501000381016638e-06,3.9250353678720237e-22,1.6131816761115599e-22,0.0,2.464615722532299e-23,9.476396096714038e-23,0.00031512606074102223,-4.201680712867528e-05,-0.00015756303037051111,-8.983477306719775e-22,3.9250353678720237e-22,2.100840356433764e-05,2.3080199539788345e-22,0.0,-5.421241467296046e-24,1.860809279446015e-24,0.00012605042138602585,-1.6806723579065874e-05,0.0,-1.939237154147122e-05,1.6131816761115599e-22,2.3080199539788345e-22,2.5856495540210744e-06,0.0,-1.9593916490496744e-22,0.0,0.0006377550889737904,0.0,-0.0012755101779475808,-0.0,0.0,0.0,0.0,0.0003188775444868952,0.0,0.0,0.0003571428533177823,8.470329472543003e-22,-0.00017857142665889114,-5.494505603564903e-05,2.464615722532299e-23,-5.421241467296046e-24,-1.9593916490496744e-22,0.0,2.7472528017824516e-05,-4.235164736271502e-22,0.00011160714348079637,-8.470329472543003e-22,3.3881317890172014e-21,-5.5803571740398183e-05,9.476396096714038e-23,1.860809279446015e-24,0.0,0.0,-4.235164736271502e-22,4.292582616471918e-06,16.0,5.0,15.0,0.028308531269431114,-0.002879902021959424,-0.007607668172568083,-0.003051470499485731,8.169934881152585e-05,0.00029411763534881175,0.00011029411689378321,0.0005952381179668009,0.0003124999930150807,9.191176650347188e-05,-0.002879902021959424,0.0007457983447238803,0.00029411763534881175,0.00011029411689378321,-3.501400715322234e-05,-3.9215687138494104e-05,-1.4705882676935289e-05,-5.325842181989648e-19,-8.809142651444724e-20,7.707999820014133e-20,-0.007607668172568083,0.00029411763534881175,0.007375262677669525,0.0003124999930150807,-1.870747795940806e-19,-0.00014705881767440587,5.082197683525802e-20,-0.0011904762359336019,-0.00015624999650754035,3.2526065174565133e-19,-0.003051470499485731,0.00011029411689378321,0.0003124999930150807,0.0008459922391921282,6.584466243377498e-20,-5.2098471616792196e-20,-1.575630267325323e-05,1.5401537420993542e-18,-4.4642856664722785e-05,-4.242081558913924e-05,8.169934881152585e-05,-3.501400715322234e-05,-1.870747795940806e-19,6.584466243377498e-20,2.3342670374404406e-06,6.055231886939523e-21,-1.29739280500786e-21,2.2213345660807687e-20,3.1305130919241665e-21,-4.6870448615180544e-21,0.00029411763534881175,-3.9215687138494104e-05,-0.00014705881767440587,-5.2098471616792196e-20,6.055231886939523e-21,1.9607843569247052e-05,3.8148980161641766e-21,1.5955698800567318e-19,1.8343827067027302e-20,-8.3013855064679335e-22,0.00011029411689378321,-1.4705882676935289e-05,5.082197683525802e-20,-1.575630267325323e-05,-1.29739280500786e-21,3.8148980161641766e-21,2.1008404473832343e-06,-2.0658410899095652e-20,-1.2469923429337703e-21,-1.376428539288238e-21,0.0005952381179668009,-5.325842181989648e-19,-0.0011904762359336019,1.5401537420993542e-18,2.2213345660807687e-20,1.5955698800567318e-19,-2.0658410899095652e-20,0.00029761905898340046,-8.49660473545378e-20,-8.07369701505868e-20,0.0003124999930150807,-8.809142651444724e-20,-0.00015624999650754035,-4.4642856664722785e-05,3.1305130919241665e-21,1.8343827067027302e-20,-1.2469923429337703e-21,-8.49660473545378e-20,2.2321428332361393e-05,4.235164736271502e-22,9.191176650347188e-05,7.707999820014133e-20,3.2526065174565133e-19,-4.242081558913924e-05,-4.6870448615180544e-21,-8.3013855064679335e-22,-1.376428539288238e-21,-8.07369701505868e-20,4.235164736271502e-22,3.030058223885135e-06,16.0,5.0,16.0,0.02670358493924141,-0.002705990569666028,-0.007149422075599432,-0.002705990569666028,7.659313996555284e-05,0.00027573530678637326,9.731834143167362e-05,0.0005580357392318547,0.00027573530678637326,7.659313996555284e-05,-0.002705990569666028,0.0006999968900345266,0.00027573530678637326,9.731834143167362e-05,-3.282563193351962e-05,-3.676470441860147e-05,-1.2975778190593701e-05,0.0,-8.470329472543003e-22,6.776263578034403e-21,-0.007149422075599432,0.00027573530678637326,0.006922925356775522,0.00027573530678637326,-6.685712544508813e-22,-0.00013786765339318663,-1.6940658945086007e-21,-0.0011160714784637094,-0.00013786765339318663,-1.6940658945086007e-21,-0.002705990569666028,9.731834143167362e-05,0.00027573530678637326,0.0006999968900345266,1.4027463527251532e-21,-0.0,-1.2975778190593701e-05,-0.0,-3.676470441860147e-05,-3.282563193351962e-05,7.659313996555284e-05,-3.282563193351962e-05,-6.685712544508813e-22,1.4027463527251532e-21,2.188375447076396e-06,1.3342054977100907e-22,-9.225134432070283e-23,-0.0,-6.373337888646459e-23,-4.107436543683695e-23,0.00027573530678637326,-3.676470441860147e-05,-0.00013786765339318663,-0.0,1.3342054977100907e-22,1.8382352209300734e-05,1.0478623050869435e-22,0.0,2.6382116644743295e-23,-2.7647391555441265e-24,9.731834143167362e-05,-1.2975778190593701e-05,-1.6940658945086007e-21,-1.2975778190593701e-05,-9.225134432070283e-23,1.0478623050869435e-22,1.7301038042205619e-06,0.0,1.8218471237927872e-22,-8.470329472543003e-22,0.0005580357392318547,0.0,-0.0011160714784637094,-0.0,-0.0,0.0,0.0,0.00027901786961592734,0.0,0.0,0.00027573530678637326,-8.470329472543003e-22,-0.00013786765339318663,-3.676470441860147e-05,-6.373337888646459e-23,2.6382116644743295e-23,1.8218471237927872e-22,0.0,1.8382352209300734e-05,0.0,7.659313996555284e-05,6.776263578034403e-21,-1.6940658945086007e-21,-3.282563193351962e-05,-4.107436543683695e-23,-2.7647391555441265e-24,-8.470329472543003e-22,0.0,0.0,2.188375447076396e-06,16.0,6.0,3.0,0.08980606496334076,-0.010795985348522663,-0.024619223549962044,-0.040572479367256165,0.0003404139424674213,0.0010504202218726277,0.0018382353009656072,0.0018601190531626344,0.004464285913854837,0.0052083334885537624,-0.010795985348522663,0.002947012195363641,0.0010504202218726277,0.0018382353009656072,-0.00014589169586542994,-0.00014005602861288935,-0.00024509805371053517,-1.4568966692773966e-18,-2.168404344971009e-19,-2.351232146655695e-18,-0.024619223549962044,0.0010504202218726277,0.020078344270586967,0.004464285913854837,-2.710505431213761e-19,-0.0004201680712867528,-1.8431436932253575e-18,-0.0027901786379516125,-0.0017857142956927419,-3.117421713435952e-17,-0.040572479367256165,0.0018382353009656072,0.004464285913854837,0.09265581518411636,-8.171595133024038e-20,-5.601982987805522e-19,-0.0018382353009656072,-1.1709383462843448e-17,-0.004464285913854837,-0.03125,0.0003404139424674213,-0.00014589169586542994,-2.710505431213761e-19,-8.171595133024038e-20,9.726112693897448e-06,2.541098841762901e-21,-6.1409888675936775e-21,3.9810548520952116e-20,1.3552527156068805e-20,4.085797566512019e-20,0.0010504202218726277,-0.00014005602861288935,-0.0004201680712867528,-5.601982987805522e-19,2.541098841762901e-21,5.602241071755998e-05,-2.4609807448821717e-20,1.0503208545953324e-19,-1.3552527156068805e-20,3.6141431232668894e-19,0.0018382353009656072,-0.00024509805371053517,-1.8431436932253575e-18,-0.0018382353009656072,-6.1409888675936775e-21,-2.4609807448821717e-20,0.00024509805371053517,3.9488423710908653e-19,-2.008769181935101e-20,1.1891249667066041e-18,0.0018601190531626344,-1.4568966692773966e-18,-0.0027901786379516125,-1.1709383462843448e-17,3.9810548520952116e-20,1.0503208545953324e-19,3.9488423710908653e-19,0.0005580357392318547,7.182839392716467e-19,3.469446951953614e-18,0.004464285913854837,-2.168404344971009e-19,-0.0017857142956927419,-0.004464285913854837,1.3552527156068805e-20,-1.3552527156068805e-20,-2.008769181935101e-20,7.182839392716467e-19,0.0017857142956927419,9.541757494828851e-18,0.0052083334885537624,-2.351232146655695e-18,-3.117421713435952e-17,-0.03125,4.085797566512019e-20,3.6141431232668894e-19,1.1891249667066041e-18,3.469446951953614e-18,9.541757494828851e-18,0.015625,16.0,6.0,4.0,0.07317999750375748,-0.008372724056243896,-0.01913405954837799,-0.02590598724782467,0.0002553104714024812,0.0007878151373006403,0.001102941227145493,0.0013950893189758062,0.0026785715017467737,0.0026041667442768812,-0.008372724056243896,0.0022470238618552685,0.0007878151373006403,0.001102941227145493,-0.00010941876826109365,-0.0001050420178216882,-0.00014705881767440587,1.119169475122382e-18,1.3651525165754917e-18,5.076382603819554e-18,-0.01913405954837799,0.0007878151373006403,0.015326615422964096,0.0026785715017467737,1.0795625939778769e-19,-0.00031512606074102223,1.9111830209206006e-18,-0.0020926338620483875,-0.0010714285308495164,2.2185966719239915e-17,-0.02590598724782467,0.001102941227145493,0.0026785715017467737,0.035499826073646545,6.055949530744398e-19,2.3965653665363574e-18,-0.000735294132027775,1.432084890495501e-17,-0.0017857142956927419,-0.0078125,0.0002553104714024812,-0.00010941876826109365,1.0795625939778769e-19,6.055949530744398e-19,7.294584520423086e-06,2.3604336395701463e-22,-1.3456667101272853e-20,-1.2991978197332016e-20,-3.034814515062247e-20,-1.2870158726909963e-19,0.0007878151373006403,-0.0001050420178216882,-0.00031512606074102223,2.3965653665363574e-18,2.3604336395701463e-22,4.201680712867528e-05,-5.067382103273153e-20,-2.0676952346396485e-19,-1.6851600027447602e-19,-4.589626104411194e-19,0.001102941227145493,-0.00014705881767440587,1.9111830209206006e-18,-0.000735294132027775,-1.3456667101272853e-20,-5.067382103273153e-20,9.803921420825645e-05,-2.2727454244263306e-19,-1.7679412657687409e-19,-1.069400499206904e-18,0.0013950893189758062,1.119169475122382e-18,-0.0020926338620483875,1.432084890495501e-17,-1.2991978197332016e-20,-2.0676952346396485e-19,-2.2727454244263306e-19,0.0004185267898719758,-1.518452555331449e-18,-2.5999134512669527e-18,0.0026785715017467737,1.3651525165754917e-18,-0.0010714285308495164,-0.0017857142956927419,-3.034814515062247e-20,-1.6851600027447602e-19,-1.7679412657687409e-19,-1.518452555331449e-18,0.0007142857066355646,-3.1818718217352662e-18,0.0026041667442768812,5.076382603819554e-18,2.2185966719239915e-17,-0.0078125,-1.2870158726909963e-19,-4.589626104411194e-19,-1.069400499206904e-18,-2.5999134512669527e-18,-3.1818718217352662e-18,0.0026041667442768812,16.0,6.0,5.0,0.06184932217001915,-0.0068452381528913975,-0.015664391219615936,-0.018014706671237946,0.00020424836839083582,0.0006302521214820445,0.000735294132027775,0.0011160714784637094,0.0017857142956927419,0.0014880952658131719,-0.0068452381528913975,0.0018172268755733967,0.0006302521214820445,0.000735294132027775,-8.753501606406644e-05,-8.403361425735056e-05,-9.803921420825645e-05,3.8624542128552413e-19,4.1803609187625665e-19,6.393590181127824e-19,-0.015664391219615936,0.0006302521214820445,0.012404149398207664,0.0017857142956927419,8.526869367674277e-21,-0.0002521008427720517,5.003548833896377e-19,-0.0016741071594879031,-0.0007142857066355646,2.75349586880452e-18,-0.018014706671237946,0.000735294132027775,0.0017857142956927419,0.017935924232006073,5.342966048515717e-20,1.8904545985530577e-19,-0.0003676470660138875,9.308526062903706e-19,-0.0008928571478463709,-0.0029761905316263437,0.00020424836839083582,-8.753501606406644e-05,8.526869367674277e-21,5.342966048515717e-20,5.835667707287939e-06,-4.664802871497363e-22,2.1554577890059462e-21,-7.599505288180804e-22,-5.696455220941718e-21,-1.468564665740568e-20,0.0006302521214820445,-8.403361425735056e-05,-0.0002521008427720517,1.8904545985530577e-19,-4.664802871497363e-22,3.361344715813175e-05,7.502539464965898e-21,-1.2200779618307618e-19,-3.190707041255522e-20,-4.002385772141423e-20,0.000735294132027775,-9.803921420825645e-05,5.003548833896377e-19,-0.0003676470660138875,2.1554577890059462e-21,7.502539464965898e-21,4.901960710412823e-05,-5.729462635439425e-20,-1.2326766980417687e-19,-1.5621280018669785e-19,0.0011160714784637094,3.8624542128552413e-19,-0.0016741071594879031,9.308526062903706e-19,-7.599505288180804e-22,-1.2200779618307618e-19,-5.729462635439425e-20,0.0003348214377183467,-1.232416394642756e-19,-4.41691958130413e-20,0.0017857142956927419,4.1803609187625665e-19,-0.0007142857066355646,-0.0008928571478463709,-5.696455220941718e-21,-3.190707041255522e-20,-1.2326766980417687e-19,-1.232416394642756e-19,0.0003571428533177823,-9.568609225078395e-19,0.0014880952658131719,6.393590181127824e-19,2.75349586880452e-18,-0.0029761905316263437,-1.468564665740568e-20,-4.002385772141423e-20,-1.5621280018669785e-19,-4.41691958130413e-20,-9.568609225078395e-19,0.0007440476329065859,16.0,6.0,6.0,0.05359713360667229,-0.005791900213807821,-0.01326624397188425,-0.01326624397188425,0.00017020697123371065,0.0005252101109363139,0.0005252101109363139,0.0009300595265813172,0.0012755101779475808,0.0009300595265813172,-0.005791900213807821,0.0015260271029546857,0.0005252101109363139,0.0005252101109363139,-7.294584793271497e-05,-7.002801430644467e-05,-7.002801430644467e-05,-7.649911061497597e-19,-3.228239069080408e-19,-4.1437749787632875e-19,-0.01326624397188425,0.0005252101109363139,0.010421824641525745,0.0012755101779475808,-1.3205071232235613e-19,-0.0002100840356433764,-5.227497644987453e-19,-0.0013950893189758062,-0.0005102040595375001,-2.5498512398243246e-18,-0.01326624397188425,0.0005252101109363139,0.0012755101779475808,0.010421824641525745,-9.789084136090689e-20,-5.631718062875272e-19,-0.0002100840356433764,-2.591754968885342e-18,-0.0005102040595375001,-0.0013950893189758062,0.00017020697123371065,-7.294584793271497e-05,-1.3205071232235613e-19,-9.789084136090689e-20,4.863056346948724e-06,-1.9436678210513195e-22,-7.44722357903694e-22,2.3929572564031893e-20,2.8337370055701925e-21,1.75843169371645e-20,0.0005252101109363139,-7.002801430644467e-05,-0.0002100840356433764,-5.631718062875272e-19,-1.9436678210513195e-22,2.801120535877999e-05,5.9896653025944075e-21,5.697459146786719e-20,4.3168966431402764e-20,7.352353515646959e-20,0.0005252101109363139,-7.002801430644467e-05,-5.227497644987453e-19,-0.0002100840356433764,-7.44722357903694e-22,5.9896653025944075e-21,2.801120535877999e-05,6.408285820191653e-20,5.3567350514230306e-20,-1.1775714927530059e-20,0.0009300595265813172,-7.649911061497597e-19,-0.0013950893189758062,-2.591754968885342e-18,2.3929572564031893e-20,5.697459146786719e-20,6.408285820191653e-20,0.00027901786961592734,3.309028248544814e-19,2.413816425006304e-19,0.0012755101779475808,-3.228239069080408e-19,-0.0005102040595375001,-0.0005102040595375001,2.8337370055701925e-21,4.3168966431402764e-20,5.3567350514230306e-20,3.309028248544814e-19,0.0002040816325461492,3.064750439924482e-19,0.0009300595265813172,-4.1437749787632875e-19,-2.5498512398243246e-18,-0.0013950893189758062,1.75843169371645e-20,7.352353515646959e-20,-1.1775714927530059e-20,2.413816425006304e-19,3.064750439924482e-19,0.00027901786961592734,16.0,6.0,7.0,0.047306422144174576,-0.0050207581371068954,-0.011507728137075901,-0.010182198137044907,0.00014589169586542994,0.00045018005766905844,0.00039390756865032017,0.0007971939048729837,0.0009566326625645161,0.0006200397037900984,-0.0050207581371068954,0.0013155261985957623,0.00045018005766905844,0.00039390756865032017,-6.252501043491066e-05,-6.0024009144399315e-05,-5.25210089108441e-05,3.4642492074782724e-20,3.540252113123293e-19,4.741699641113888e-19,-0.011507728137075901,0.00045018005766905844,0.008987657725811005,0.0009566326625645161,7.565861110209113e-20,-0.00018007203470915556,2.8694182006186203e-19,-0.001195790828205645,-0.00038265305920504034,2.6137116510649497e-18,-0.010182198137044907,0.00039390756865032017,0.0009566326625645161,0.006618272513151169,9.491663592029005e-20,5.952941246051052e-19,-0.00013130252773407847,6.732125220548573e-19,-0.0003188775444868952,-0.0007440476329065859,0.00014589169586542994,-6.252501043491066e-05,7.565861110209113e-20,9.491663592029005e-20,4.168333816778613e-06,-2.055335007557218e-21,-2.8771977131106465e-21,-5.3688109190140244e-21,-1.000380519814911e-20,-7.207656846732846e-21,0.00045018005766905844,-6.0024009144399315e-05,-0.00018007203470915556,5.952941246051052e-19,-2.055335007557218e-21,2.4009603293961845e-05,-1.2499535929811605e-20,2.2974280738522582e-20,-2.926801529169014e-20,-6.281844801214387e-20,0.00039390756865032017,-5.25210089108441e-05,2.8694182006186203e-19,-0.00013130252773407847,-2.8771977131106465e-21,-1.2499535929811605e-20,1.750700357661117e-05,-6.528506020909865e-21,-4.0709958803087215e-20,-7.251991304184988e-20,0.0007971939048729837,3.4642492074782724e-20,-0.001195790828205645,6.732125220548573e-19,-5.3688109190140244e-21,2.2974280738522582e-20,-6.528506020909865e-21,0.00023915816564112902,7.6780171077485e-20,-1.143229522503347e-19,0.0009566326625645161,3.540252113123293e-19,-0.00038265305920504034,-0.0003188775444868952,-1.000380519814911e-20,-2.926801529169014e-20,-4.0709958803087215e-20,7.6780171077485e-20,0.00012755101488437504,-4.960306933399402e-19,0.0006200397037900984,4.741699641113888e-19,2.6137116510649497e-18,-0.0007440476329065859,-7.207656846732846e-21,-6.281844801214387e-20,-7.251991304184988e-20,-1.143229522503347e-19,-4.960306933399402e-19,0.00012400794366840273,16.0,6.0,8.0,0.04234688729047775,-0.004431460052728653,-0.010162267833948135,-0.00806416291743517,0.0001276552357012406,0.00039390756865032017,0.00030637255986221135,0.0006975446594879031,0.0007440476329065859,0.0004340277810115367,-0.004431460052728653,0.001156191690824926,0.00039390756865032017,0.00030637255986221135,-5.470938413054682e-05,-5.25210089108441e-05,-4.0849674405762926e-05,2.807899227499403e-19,1.8396234451828791e-19,2.5815236752862503e-19,-0.010162267833948135,0.00039390756865032017,0.007901403121650219,0.0007440476329065859,5.351431401979888e-20,-0.00015756303037051111,-8.208636022360221e-20,-0.0010463169310241938,-0.00029761905898340046,2.0086042951122158e-19,-0.00806416291743517,0.00030637255986221135,0.0007440476329065859,0.004474185407161713,8.886496963415503e-20,1.7297260384566738e-19,-8.753501606406644e-05,2.689567163464571e-19,-0.00021258502965793014,-0.0004340277810115367,0.0001276552357012406,-5.470938413054682e-05,5.351431401979888e-20,8.886496963415503e-20,3.647292260211543e-06,2.915501668468107e-22,-1.930899861175715e-21,-4.310054066172744e-21,-8.78929645597456e-21,-6.882116039253481e-21,0.00039390756865032017,-5.25210089108441e-05,-0.00015756303037051111,1.7297260384566738e-19,2.915501668468107e-22,2.100840356433764e-05,1.6015275878341274e-21,-9.850927519106392e-20,-1.2053411737626328e-20,-1.8985638443011757e-20,0.00030637255986221135,-4.0849674405762926e-05,-8.208636022360221e-20,-8.753501606406644e-05,-1.930899861175715e-21,1.6015275878341274e-21,1.1671335414575879e-05,1.600244387558194e-20,-8.882773721696412e-22,-2.3453441264215262e-20,0.0006975446594879031,2.807899227499403e-19,-0.0010463169310241938,2.689567163464571e-19,-4.310054066172744e-21,-9.850927519106392e-20,1.600244387558194e-20,0.0002092633949359879,-2.074710243221981e-19,3.484466341754378e-20,0.0007440476329065859,1.8396234451828791e-19,-0.00029761905898340046,-0.00021258502965793014,-8.78929645597456e-21,-1.2053411737626328e-20,-8.882773721696412e-22,-2.074710243221981e-19,8.50340147735551e-05,-5.2594379318714807e-20,0.0004340277810115367,2.5815236752862503e-19,2.0086042951122158e-19,-0.0004340277810115367,-6.882116039253481e-21,-1.8985638443011757e-20,-2.3453441264215262e-20,3.484466341754378e-20,-5.2594379318714807e-20,6.200397183420137e-05,16.0,6.0,9.0,0.038333941251039505,-0.003966308664530516,-0.0090992646291852,-0.00654602749273181,0.0001134713165811263,0.00035014006425626576,0.00024509805371053517,0.0006200397037900984,0.0005952381179668009,0.00031565656536258757,-0.003966308664530516,0.0010313569800928235,0.00035014006425626576,0.00024509805371053517,-4.863056165049784e-05,-4.6685341658303514e-05,-3.267973806941882e-05,-8.889857384654e-20,-1.3934535965051986e-19,6.227246357141912e-20,-0.0090992646291852,0.00035014006425626576,0.007049924228340387,0.0005952381179668009,3.218725199566341e-20,-0.00014005602861288935,-2.9831886220691637e-19,-0.0009300595265813172,-0.0002380952355451882,3.46975719638211e-19,-0.00654602749273181,0.00024509805371053517,0.0005952381179668009,0.003169695846736431,-1.3552527156068805e-20,4.0034339650738923e-20,-6.127451342763379e-05,-6.768560458580003e-19,-0.00014880952949170023,-0.00027056277031078935,0.0001134713165811263,-4.863056165049784e-05,3.218725199566341e-20,-1.3552527156068805e-20,3.242037564632483e-06,-6.352747104407253e-22,-2.117582368135751e-22,-6.309588309712445e-21,1.898818339664442e-21,9.147527053521109e-22,0.00035014006425626576,-4.6685341658303514e-05,-0.00014005602861288935,4.0034339650738923e-20,-6.352747104407253e-22,1.8674136299523525e-05,-2.964615315390051e-21,-2.0487005182125314e-20,1.4353312306028295e-20,-6.1015705610106146e-21,0.00024509805371053517,-3.267973806941882e-05,-2.9831886220691637e-19,-6.127451342763379e-05,-2.117582368135751e-22,-2.964615315390051e-21,8.169934517354704e-06,4.835611265514623e-20,1.5828640627304905e-20,-1.4111353898920865e-20,0.0006200397037900984,-8.889857384654e-20,-0.0009300595265813172,-6.768560458580003e-19,-6.309588309712445e-21,-2.0487005182125314e-20,4.835611265514623e-20,0.00018601190822664648,3.7026504148342976e-20,2.74866010632005e-20,0.0005952381179668009,-1.3934535965051986e-19,-0.0002380952355451882,-0.00014880952949170023,1.898818339664442e-21,1.4353312306028295e-20,1.5828640627304905e-20,3.7026504148342976e-20,5.952380888629705e-05,-1.107805383523793e-19,0.00031565656536258757,6.227246357141912e-20,3.46975719638211e-19,-0.00027056277031078935,9.147527053521109e-22,-6.1015705610106146e-21,-1.4111353898920865e-20,2.74866010632005e-20,-1.107805383523793e-19,3.382034628884867e-05,16.0,6.0,10.0,0.0350189134478569,-0.0035897314082831144,-0.008238039910793304,-0.005420406814664602,0.00010212418419541791,0.00031512606074102223,0.00020053476328030229,0.0005580357392318547,0.0004870129923801869,0.0002367424312978983,-0.0035897314082831144,0.00093089509755373,0.00031512606074102223,0.00020053476328030229,-4.376750803203322e-05,-4.201680712867528e-05,-2.6737967345979996e-05,0.0,0.0,-0.0,-0.008238039910793304,0.00031512606074102223,0.006364412140101194,0.0004870129923801869,2.4709007730016992e-21,-0.00012605042138602585,-1.6940658945086007e-21,-0.0008370535797439516,-0.00019480519404169172,2.6753039847647427e-19,-0.005420406814664602,0.00020053476328030229,0.0004870129923801869,0.002329061273485422,-5.250234598399387e-22,-3.3881317890172014e-21,-4.456327951629646e-05,6.133808422888834e-19,-0.00010822511103469878,-0.00017755682347342372,0.00010212418419541791,-4.376750803203322e-05,2.4709007730016992e-21,-5.250234598399387e-22,2.9178338536439696e-06,-1.1528302197284411e-22,1.5284785883832313e-22,0.0,-0.0,-0.0,0.00031512606074102223,-4.201680712867528e-05,-0.00012605042138602585,-3.3881317890172014e-21,-1.1528302197284411e-22,1.6806723579065874e-05,4.235164736271502e-22,0.0,-0.0,-0.0,0.00020053476328030229,-2.6737967345979996e-05,-1.6940658945086007e-21,-4.456327951629646e-05,1.5284785883832313e-22,4.235164736271502e-22,5.941770723438822e-06,0.0,0.0,-0.0,0.0005580357392318547,0.0,-0.0008370535797439516,6.133808422888834e-19,0.0,0.0,0.0,0.00016741071885917336,-5.2730444067131244e-20,-5.350608098776456e-20,0.0004870129923801869,0.0,-0.00019480519404169172,-0.00010822511103469878,-0.0,-0.0,0.0,-5.2730444067131244e-20,4.329004150349647e-05,1.6853159508981953e-35,0.0002367424312978983,-0.0,2.6753039847647427e-19,-0.00017755682347342372,-0.0,-0.0,-0.0,-5.350608098776456e-20,1.6853159508981953e-35,1.9728535335161723e-05,16.0,6.0,11.0,0.032233595848083496,-0.0032785842195153236,-0.007526021916419268,-0.0045625329948961735,9.284016414312646e-05,0.00028647822909988463,0.00016711230273358524,0.0005073052016086876,0.000405844155466184,0.0001821095502236858,-0.0032785842195153236,0.0008482938865199685,0.00028647822909988463,0.00016711230273358524,-3.97886433347594e-05,-3.819709672825411e-05,-2.228163975814823e-05,0.0,0.0,-0.0,-0.007526021916419268,0.00028647822909988463,0.005800587125122547,0.000405844155466184,-1.1747702464163886e-21,-0.00011459129018476233,1.3552527156068805e-20,-0.000760957773309201,-0.00016233765927609056,2.021822253559901e-19,-0.0045625329948961735,0.00016711230273358524,0.000405844155466184,0.0017623512540012598,-1.784282905394258e-21,1.3552527156068805e-20,-3.342246054671705e-05,5.841273414320042e-19,-8.116882963804528e-05,-0.00012140637409174815,9.284016414312646e-05,-3.97886433347594e-05,-1.1747702464163886e-21,-1.784282905394258e-21,2.652576085893088e-06,9.712947083197231e-23,2.293269391010905e-22,0.0,-0.0,-0.0,0.00028647822909988463,-3.819709672825411e-05,-0.00011459129018476233,1.3552527156068805e-20,9.712947083197231e-23,1.5278837963705882e-05,-1.6940658945086007e-21,0.0,-0.0,-0.0,0.00016711230273358524,-2.228163975814823e-05,1.3552527156068805e-20,-3.342246054671705e-05,2.293269391010905e-22,-1.6940658945086007e-21,4.456328042579116e-06,0.0,0.0,-0.0,0.0005073052016086876,0.0,-0.000760957773309201,5.841273414320042e-19,0.0,0.0,0.0,0.0001521915546618402,-7.190514982566105e-20,-4.043644313249346e-20,0.000405844155466184,0.0,-0.00016233765927609056,-8.116882963804528e-05,-0.0,-0.0,0.0,-7.190514982566105e-20,3.246753112762235e-05,1.9104796553079856e-35,0.0001821095502236858,-0.0,2.021822253559901e-19,-0.00012140637409174815,-0.0,-0.0,-0.0,-4.043644313249346e-20,1.9104796553079856e-35,1.2140637409174815e-05,16.0,6.0,12.0,0.029860006645321846,-0.003017152426764369,-0.006927470676600933,-0.003893624758347869,8.510348561685532e-05,0.00026260505546815693,0.00014140272105578333,0.0004650297632906586,0.00034340660204179585,0.0001430860866094008,-0.003017152426764369,0.0007791738607920706,0.00026260505546815693,0.00014140272105578333,-3.6472923966357484e-05,-3.501400715322234e-05,-1.885369601950515e-05,-7.288754312534141e-20,-1.435323960460727e-20,1.6362135200039958e-35,-0.006927470676600933,0.00026260505546815693,0.005328651983290911,0.00034340660204179585,-2.9345007712142925e-21,-0.0001050420178216882,-2.541098841762901e-21,-0.0006975446594879031,-0.00013736264372710139,1.5658806876615843e-19,-0.003893624758347869,0.00014140272105578333,0.00034340660204179585,0.001366127748042345,8.752637168319402e-22,-1.604730549911587e-20,-2.5709585315780714e-05,3.282779222769092e-19,-6.243756070034578e-05,-8.585165051044896e-05,8.510348561685532e-05,-3.6472923966357484e-05,-2.9345007712142925e-21,8.752637168319402e-22,2.431528173474362e-06,1.977515255030584e-22,-7.727644193310305e-23,-5.56602834994853e-37,7.651988688308212e-38,-0.0,0.00026260505546815693,-3.501400715322234e-05,-0.0001050420178216882,-1.604730549911587e-20,1.977515255030584e-22,1.4005602679389995e-05,2.117582368135751e-22,2.915501789637142e-20,5.7412954379461246e-21,-6.54485393652302e-36,0.00014140272105578333,-1.885369601950515e-05,-2.541098841762901e-21,-2.5709585315780714e-05,-7.727644193310305e-23,2.117582368135751e-22,3.4279446481377818e-06,3.5941462622191278e-37,1.5392047303541082e-37,-0.0,0.0004650297632906586,-7.288754312534141e-20,-0.0006975446594879031,3.282779222769092e-19,-5.56602834994853e-37,2.915501789637142e-20,3.5941462622191278e-37,0.00013950893480796367,6.4863359655409996e-21,-3.1317613753231687e-20,0.00034340660204179585,-1.435323960460727e-20,-0.00013736264372710139,-6.243756070034578e-05,7.651988688308212e-38,5.7412954379461246e-21,1.5392047303541082e-37,6.4863359655409996e-21,2.4975024643936194e-05,-1.4560828219381447e-36,0.0001430860866094008,1.6362135200039958e-35,1.5658806876615843e-19,-8.585165051044896e-05,-0.0,-6.54485393652302e-36,-0.0,-3.1317613753231687e-20,-1.4560828219381447e-36,7.804695087543223e-06,16.0,6.0,13.0,0.027812888845801353,-0.002794387051835656,-0.006417230237275362,-0.0033619217574596405,7.855706644477323e-05,0.00024240465427283198,0.00012120232713641599,0.0004292582452762872,0.000294348516035825,0.00011446886492194608,-0.002794387051835656,0.0007204805151559412,0.00024240465427283198,0.00012120232713641599,-3.3667314710328355e-05,-3.2320622267434373e-05,-1.6160311133717187e-05,-3.009265538105056e-35,-3.3881317890172014e-21,5.929230630780102e-21,-0.006417230237275362,0.00024240465427283198,0.004927812609821558,0.000294348516035825,8.428141948638253e-22,-9.696186316432431e-05,-5.929230630780102e-21,-0.000643887382466346,-0.00011773940059356391,1.0503208545953324e-19,-0.0033619217574596405,0.00012120232713641599,0.000294348516035825,0.0010806332575157285,-7.031765755007842e-22,-1.8745998807338246e-21,-2.0200388462399133e-05,3.890169157772772e-19,-4.9058086005970836e-05,-6.243756070034578e-05,7.855706644477323e-05,-3.3667314710328355e-05,8.428141948638253e-22,-7.031765755007842e-22,2.2444876321969787e-06,-7.174140885795069e-23,1.8019651784085761e-22,3.425200338374025e-37,-2.2784456533054074e-23,-8.122403443146107e-23,0.00024240465427283198,-3.2320622267434373e-05,-9.696186316432431e-05,-1.8745998807338246e-21,-7.174140885795069e-23,1.2928247997479048e-05,2.507423543544043e-22,1.097544713510861e-37,1.0323195522207731e-23,1.4617226542285326e-23,0.00012120232713641599,-1.6160311133717187e-05,-5.929230630780102e-21,-2.0200388462399133e-05,1.8019651784085761e-22,2.507423543544043e-22,2.6933851131616393e-06,3.847556448725916e-36,7.772709355579557e-22,-6.352747104407253e-22,0.0004292582452762872,-3.009265538105056e-35,-0.000643887382466346,3.890169157772772e-19,3.425200338374025e-37,1.097544713510861e-37,3.847556448725916e-36,0.00012877747940365225,-3.6773131618134595e-20,-2.4757006823764942e-20,0.000294348516035825,-3.3881317890172014e-21,-0.00011773940059356391,-4.9058086005970836e-05,-2.2784456533054074e-23,1.0323195522207731e-23,7.772709355579557e-22,-3.6773131618134595e-20,1.9623234038590454e-05,2.964615315390051e-21,0.00011446886492194608,5.929230630780102e-21,1.0503208545953324e-19,-6.243756070034578e-05,-8.122403443146107e-23,1.4617226542285326e-23,-6.352747104407253e-22,-2.4757006823764942e-20,2.964615315390051e-21,5.203130058362149e-06,16.0,6.0,14.0,0.026029057800769806,-0.002602290827780962,-0.005977078340947628,-0.002932266565039754,7.294584793271497e-05,0.00022509002883452922,0.0001050420178216882,0.00039859695243649185,0.00025510202976875007,9.300595411332324e-05,-0.002602290827780962,0.0006700180238112807,0.00022509002883452922,0.0001050420178216882,-3.126250521745533e-05,-3.0012004572199658e-05,-1.4005602679389995e-05,-6.247503234861512e-20,-8.470329472543003e-21,-2.541098841762901e-21,-0.005977078340947628,0.00022509002883452922,0.004583114292472601,0.00025510202976875007,-1.0092601098202116e-21,-9.003601735457778e-05,1.1858461261560205e-20,-0.0005978954141028225,-0.0001020408162730746,1.1350241493207625e-19,-0.002932266565039754,0.0001050420178216882,0.00025510202976875007,0.0008696447475813329,-3.110151645327326e-22,-3.0171863187785257e-21,-1.6160311133717187e-05,2.2096633384433296e-19,-3.924646807718091e-05,-4.650297705666162e-05,7.294584793271497e-05,-3.126250521745533e-05,-1.0092601098202116e-21,-3.110151645327326e-22,2.0841669083893066e-06,1.220425501886295e-22,-4.4680854479777405e-23,1.1838140728023505e-36,9.390986442050121e-23,2.773516298076932e-23,0.00022509002883452922,-3.0012004572199658e-05,-9.003601735457778e-05,-3.0171863187785257e-21,1.220425501886295e-22,1.2004801646980923e-05,-1.1155638247206253e-21,2.4990013262563473e-20,4.313014225698819e-21,-4.453082575737885e-23,0.0001050420178216882,-1.4005602679389995e-05,1.1858461261560205e-20,-1.6160311133717187e-05,-4.4680854479777405e-23,-1.1155638247206253e-21,2.1547079995798413e-06,-4.17886089322882e-36,-6.352709239083802e-22,5.293955920339377e-22,0.00039859695243649185,-6.247503234861512e-20,-0.0005978954141028225,2.2096633384433296e-19,1.1838140728023505e-36,2.4990013262563473e-20,-4.17886089322882e-36,0.00011957908282056451,1.5165839543276917e-20,-1.9913917651642384e-20,0.00025510202976875007,-8.470329472543003e-21,-0.0001020408162730746,-3.924646807718091e-05,9.390986442050121e-23,4.313014225698819e-21,-6.352709239083802e-22,1.5165839543276917e-20,1.5698587958468124e-05,-8.470329472543003e-22,9.300595411332324e-05,-2.541098841762901e-21,1.1350241493207625e-19,-4.650297705666162e-05,2.773516298076932e-23,-4.453082575737885e-23,5.293955920339377e-22,-1.9913917651642384e-20,-8.470329472543003e-22,3.577152028810815e-06,16.0,6.0,15.0,0.0244606863707304,-0.002434932393953204,-0.005593487527221441,-0.0025800946168601513,6.808278703829274e-05,0.0002100840356433764,9.191176650347188e-05,0.00037202381645329297,0.00022321428696159273,7.659313996555284e-05,-0.002434932393953204,0.0006261671078391373,0.0002100840356433764,9.191176650347188e-05,-2.9178338081692345e-05,-2.801120535877999e-05,-1.2254901776032057e-05,1.2037062152420224e-34,1.1011428314305904e-20,7.623296525288703e-21,-0.005593487527221441,0.0002100840356433764,0.0042835259810090065,0.00022321428696159273,7.748278648889225e-22,-8.403361425735056e-05,1.1011428314305904e-20,-0.0005580357392318547,-8.928571332944557e-05,-1.2705494208814505e-19,-0.0025800946168601513,9.191176650347188e-05,0.00022321428696159273,0.0007103081443347037,-1.8730182209297437e-21,-1.848282370219497e-21,-1.3130252227711026e-05,-5.588444626117443e-19,-3.188775372109376e-05,-3.535068026394583e-05,6.808278703829274e-05,-2.9178338081692345e-05,7.748278648889225e-22,-1.8730182209297437e-21,1.9452224933047546e-06,-2.612381676310316e-22,4.5370763828491114e-23,1.2589541627447444e-36,1.1401618708970607e-22,2.4279494676576263e-23,0.0002100840356433764,-2.801120535877999e-05,-8.403361425735056e-05,-1.848282370219497e-21,-2.612381676310316e-22,1.1204481779714115e-05,1.9562866925267245e-22,4.970098936752255e-37,3.2183644288619235e-23,1.9694474167807077e-23,9.191176650347188e-05,-1.2254901776032057e-05,1.1011428314305904e-20,-1.3130252227711026e-05,4.5370763828491114e-23,1.9562866925267245e-22,1.7507003349237493e-06,-2.305404000732115e-35,-1.8454270219087336e-21,-1.2705494208814505e-21,0.00037202381645329297,1.2037062152420224e-34,-0.0005580357392318547,-5.588444626117443e-19,1.2589541627447444e-36,4.970098936752255e-37,-2.305404000732115e-35,0.00011160714348079637,4.143106319560312e-20,3.2519058050048014e-20,0.00022321428696159273,1.1011428314305904e-20,-8.928571332944557e-05,-3.188775372109376e-05,1.1401618708970607e-22,3.2183644288619235e-23,-1.8454270219087336e-21,4.143106319560312e-20,1.2755102034134325e-05,-5.082197683525802e-21,7.659313996555284e-05,7.623296525288703e-21,-1.2705494208814505e-19,-3.535068026394583e-05,2.4279494676576263e-23,1.9694474167807077e-23,-1.2705494208814505e-21,3.2519058050048014e-20,-5.082197683525802e-21,2.5250485577998916e-06,16.0,6.0,16.0,0.023070894181728363,-0.0022878176532685757,-0.005256203934550285,-0.0022878176532685757,6.38276178506203e-05,0.00019695378432516009,8.109861664706841e-05,0.00034877232974395156,0.00019695378432516009,6.38276178506203e-05,-0.0022878176532685757,0.0005877075018361211,0.00019695378432516009,8.109861664706841e-05,-2.735469206527341e-05,-2.626050445542205e-05,-1.0813148946908768e-05,-6.620384183831123e-35,6.3527471044072525e-21,6.3527471044072525e-21,-0.005256203934550285,0.00019695378432516009,0.0040207295678555965,0.00019695378432516009,7.878851410792386e-22,-7.878151518525556e-05,-4.235164736271502e-22,-0.0005231584655120969,-7.878151518525556e-05,8.470329472543003e-20,-0.0022878176532685757,8.109861664706841e-05,0.00019695378432516009,0.0005877075018361211,6.5178999942984475e-22,-6.11706000265681e-21,-1.0813148946908768e-05,2.8171034212716455e-19,-2.626050445542205e-05,-2.735469206527341e-05,6.38276178506203e-05,-2.735469206527341e-05,7.878851410792386e-22,6.5178999942984475e-22,1.8236461301057716e-06,8.586855871831108e-24,2.616790304365234e-23,6.302312265747087e-37,-6.741124406410944e-23,-6.304111242136608e-23,0.00019695378432516009,-2.626050445542205e-05,-7.878151518525556e-05,-6.11706000265681e-21,8.586855871831108e-24,1.050420178216882e-05,8.152493501079368e-22,2.3200700039122037e-37,-6.465593909334608e-24,3.731184680659193e-24,8.109861664706841e-05,-1.0813148946908768e-05,-4.235164736271502e-22,-1.0813148946908768e-05,2.616790304365234e-23,8.152493501079368e-22,1.4417531701838016e-06,9.429309295630857e-36,-8.279532166127139e-22,-7.411538288475128e-22,0.00034877232974395156,-6.620384183831123e-35,-0.0005231584655120969,2.8171034212716455e-19,6.302312265747087e-37,2.3200700039122037e-37,9.429309295630857e-36,0.00010463169746799394,-3.198721645909336e-20,-1.3449486624256267e-20,0.00019695378432516009,6.3527471044072525e-21,-7.878151518525556e-05,-2.626050445542205e-05,-6.741124406410944e-23,-6.465593909334608e-24,-8.279532166127139e-22,-3.198721645909336e-20,1.050420178216882e-05,-2.329340604949326e-21,6.38276178506203e-05,6.3527471044072525e-21,8.470329472543003e-20,-2.735469206527341e-05,-6.304111242136608e-23,3.731184680659193e-24,-7.411538288475128e-22,-1.3449486624256267e-20,-2.329340604949326e-21,1.8236461301057716e-06,16.0,7.0,3.0,0.07950367778539658,-0.009366246871650219,-0.01892944611608982,-0.03525472804903984,0.0002917833917308599,0.0007878151373006403,0.0015756302746012807,0.0012400794075801969,0.0033482143189758062,0.004464285913854837,-0.009366246871650219,0.002541016321629286,0.0007878151373006403,0.0015756302746012807,-0.0001250500208698213,-0.0001050420178216882,-0.0002100840356433764,1.294266343404571e-18,5.421010862427522e-19,-3.714670021218941e-18,-0.01892944611608982,0.0007878151373006403,0.012758227996528149,0.0033482143189758062,2.168404344971009e-19,-0.00026260505546815693,1.4094628242311558e-18,-0.0014880952658131719,-0.0011160714784637094,-2.3589306752576953e-17,-0.03525472804903984,0.0015756302746012807,0.0033482143189758062,0.07989758253097534,7.277612577423964e-20,-1.4160397372815649e-18,-0.0015756302746012807,1.889609530159758e-18,-0.0033482143189758062,-0.02678571455180645,0.0002917833917308599,-0.0001250500208698213,2.168404344971009e-19,7.277612577423964e-20,8.336667633557227e-06,-5.082197683525802e-21,5.293955920339377e-22,-2.795208725939191e-20,-1.0164395367051604e-20,-9.283010190569345e-21,0.0007878151373006403,-0.0001050420178216882,-0.00026260505546815693,-1.4160397372815649e-18,-5.082197683525802e-21,3.501400715322234e-05,2.9880904426803647e-20,-1.8295911660692887e-19,-9.486769009248164e-20,7.622299772650577e-19,0.0015756302746012807,-0.0002100840356433764,1.4094628242311558e-18,-0.0015756302746012807,5.293955920339377e-22,2.9880904426803647e-20,0.0002100840356433764,-2.455625235092031e-19,-7.995267368291582e-20,1.0552234506883576e-18,0.0012400794075801969,1.294266343404571e-18,-0.0014880952658131719,1.889609530159758e-18,-2.795208725939191e-20,-1.8295911660692887e-19,-2.455625235092031e-19,0.00024801588733680546,-7.318364664277155e-19,1.1151793626425793e-18,0.0033482143189758062,5.421010862427522e-19,-0.0011160714784637094,-0.0033482143189758062,-1.0164395367051604e-20,-9.486769009248164e-20,-7.995267368291582e-20,-7.318364664277155e-19,0.0011160714784637094,1.072827032855859e-17,0.004464285913854837,-3.714670021218941e-18,-2.3589306752576953e-17,-0.02678571455180645,-9.283010190569345e-21,7.622299772650577e-19,1.0552234506883576e-18,1.1151793626425793e-18,1.072827032855859e-17,0.013392857275903225,16.0,7.0,4.0,0.06469275057315826,-0.007261029444634914,-0.014699317514896393,-0.022492121905088425,0.0002188375365221873,0.0005908613675273955,0.0009453781531192362,0.0009300595265813172,0.002008928684517741,0.0022321429569274187,-0.007261029444634914,0.001937274937517941,0.0005908613675273955,0.0009453781531192362,-9.378751565236598e-05,-7.878151518525556e-05,-0.00012605042138602585,8.935621669031379e-19,1.2838463492282404e-18,1.1681476663722593e-18,-0.014699317514896393,0.0005908613675273955,0.009736081585288048,0.002008928684517741,2.002632955818378e-19,-0.00019695378432516009,1.8384769470044865e-18,-0.0011160714784637094,-0.0006696428754366934,7.049934629336347e-18,-0.022492121905088425,0.0009453781531192362,0.002008928684517741,0.030619747936725616,2.501679808165628e-19,1.9290313037928104e-18,-0.0006302521214820445,5.178296631960069e-18,-0.0013392857508733869,-0.0066964286379516125,0.0002188375365221873,-9.378751565236598e-05,2.002632955818378e-19,2.501679808165628e-19,6.252500952541595e-06,-4.5255103819357996e-21,-7.964906770195332e-21,-1.7540494136157663e-20,-3.172693244712619e-20,-2.302579858104815e-20,0.0005908613675273955,-7.878151518525556e-05,-0.00019695378432516009,1.9290313037928104e-18,-4.5255103819357996e-21,2.626050445542205e-05,-4.217055943205126e-20,-6.964116941380049e-20,-1.4249514710084815e-19,-3.4140000532172073e-19,0.0009453781531192362,-0.00012605042138602585,1.8384769470044865e-18,-0.0006302521214820445,-7.964906770195332e-21,-4.217055943205126e-20,8.403361425735056e-05,-1.9240037517285014e-19,-1.298107718470479e-19,4.271231361942462e-19,0.0009300595265813172,8.935621669031379e-19,-0.0011160714784637094,5.178296631960069e-18,-1.7540494136157663e-20,-6.964116941380049e-20,-1.9240037517285014e-19,0.00018601190822664648,-1.9575509661993844e-19,-9.085889367059293e-19,0.002008928684517741,1.2838463492282404e-18,-0.0006696428754366934,-0.0013392857508733869,-3.172693244712619e-20,-1.4249514710084815e-19,-1.298107718470479e-19,-1.9575509661993844e-19,0.00044642857392318547,1.0993053530973805e-18,0.0022321429569274187,1.1681476663722593e-18,7.049934629336347e-18,-0.0066964286379516125,-2.302579858104815e-20,-3.4140000532172073e-19,4.271231361942462e-19,-9.085889367059293e-19,1.0993053530973805e-18,0.0022321429569274187,16.0,7.0,5.0,0.05462560057640076,-0.005934874061495066,-0.012027311138808727,-0.015632502734661102,0.00017507003212813288,0.0004726890765596181,0.0006302521214820445,0.0007440476329065859,0.0013392857508733869,0.0012755101779475808,-0.005934874061495066,0.0015666265971958637,0.0004726890765596181,0.0006302521214820445,-7.503000961150974e-05,-6.302521069301292e-05,-8.403361425735056e-05,-4.926147993016142e-19,-4.5032788528418e-20,7.112199202380204e-19,-0.012027311138808727,0.0004726890765596181,0.007878151722252369,0.0013392857508733869,-1.1745523966082867e-19,-0.00015756303037051111,-6.868416668151638e-20,-0.0008928571478463709,-0.00044642857392318547,4.354342437386304e-18,-0.015632502734661102,0.0006302521214820445,0.0013392857508733869,0.01546931266784668,7.763762133057864e-20,2.685074797256584e-19,-0.00031512606074102223,2.0045363501066507e-18,-0.0006696428754366934,-0.0025510203558951616,0.00017507003212813288,-7.503000961150974e-05,-1.1745523966082867e-19,7.763762133057864e-20,5.002000762033276e-06,-2.722185560736308e-21,-3.2823035616051314e-21,2.2920714331511237e-20,-1.5203953263249361e-21,-1.2114789508430043e-20,0.0004726890765596181,-6.302521069301292e-05,-0.00015756303037051111,2.685074797256584e-19,-2.722185560736308e-21,2.100840356433764e-05,-9.967790529760375e-21,2.780184411828843e-20,3.5062638433648574e-20,-7.459560646677806e-20,0.0006302521214820445,-8.403361425735056e-05,-6.868416668151638e-20,-0.00031512606074102223,-3.2823035616051314e-21,-9.967790529760375e-21,4.201680712867528e-05,3.1056160056179574e-20,-2.150797870256303e-20,-1.9222468976556211e-19,0.0007440476329065859,-4.926147993016142e-19,-0.0008928571478463709,2.0045363501066507e-18,2.2920714331511237e-20,2.780184411828843e-20,3.1056160056179574e-20,0.00014880952949170023,-2.560215438083399e-20,-5.418217576896507e-19,0.0013392857508733869,-4.5032788528418e-20,-0.00044642857392318547,-0.0006696428754366934,-1.5203953263249361e-21,3.5062638433648574e-20,-2.150797870256303e-20,-2.560215438083399e-20,0.00022321428696159273,-1.3279326201848733e-19,0.0012755101779475808,7.112199202380204e-19,4.354342437386304e-18,-0.0025510203558951616,-1.2114789508430043e-20,-7.459560646677806e-20,-1.9222468976556211e-19,-5.418217576896507e-19,-1.3279326201848733e-19,0.0006377550889737904,16.0,7.0,6.0,0.047306422144174576,-0.0050207581371068954,-0.010182198137044907,-0.011507728137075901,0.00014589169586542994,0.00039390756865032017,0.00045018005766905844,0.0006200397037900984,0.0009566326625645161,0.0007971939048729837,-0.0050207581371068954,0.0013155261985957623,0.00039390756865032017,0.00045018005766905844,-6.252501043491066e-05,-5.25210089108441e-05,-6.0024009144399315e-05,5.856398411820574e-19,3.4861185704044673e-19,-1.6979337393541104e-19,-0.010182198137044907,0.00039390756865032017,0.006618272513151169,0.0009566326625645161,1.3240085529071042e-19,-0.00013130252773407847,2.9043849345688267e-19,-0.0007440476329065859,-0.0003188775444868952,-2.4047530070345604e-18,-0.011507728137075901,0.00045018005766905844,0.0009566326625645161,0.008987657725811005,5.2821585799702663e-20,-2.1466726300686216e-19,-0.00018007203470915556,9.464987663509023e-20,-0.00038265305920504034,-0.001195790828205645,0.00014589169586542994,-6.252501043491066e-05,1.3240085529071042e-19,5.2821585799702663e-20,4.168333816778613e-06,-3.565142381651797e-21,-2.444668888605468e-21,-1.3187946493292492e-20,-9.258588167659857e-21,-1.0033476667553398e-21,0.00039390756865032017,-5.25210089108441e-05,-0.00013130252773407847,-2.1466726300686216e-19,-3.565142381651797e-21,1.750700357661117e-05,8.24897333548956e-23,-9.343748188868038e-20,-3.3792089012767123e-20,6.397903411034405e-20,0.00045018005766905844,-6.0024009144399315e-05,2.9043849345688267e-19,-0.00018007203470915556,-2.444668888605468e-21,8.24897333548956e-23,2.4009603293961845e-05,-3.024845049976422e-20,-3.0784227660977034e-20,-4.877245511410533e-21,0.0006200397037900984,5.856398411820574e-19,-0.0007440476329065859,9.464987663509023e-20,-1.3187946493292492e-20,-9.343748188868038e-20,-3.024845049976422e-20,0.00012400794366840273,-2.9549272209594653e-19,1.9553829775126712e-19,0.0009566326625645161,3.4861185704044673e-19,-0.0003188775444868952,-0.00038265305920504034,-9.258588167659857e-21,-3.3792089012767123e-20,-3.0784227660977034e-20,-2.9549272209594653e-19,0.00012755101488437504,2.6251445279013514e-19,0.0007971939048729837,-1.6979337393541104e-19,-2.4047530070345604e-18,-0.001195790828205645,-1.0033476667553398e-21,6.397903411034405e-20,-4.877245511410533e-21,1.9553829775126712e-19,2.6251445279013514e-19,0.00023915816564112902,16.0,7.0,7.0,0.04173387959599495,-0.004351740702986717,-0.008830094709992409,-0.008830094709992409,0.0001250500208698213,0.00033763505052775145,0.00033763505052775145,0.0005314626032486558,0.000717474496923387,0.0005314626032486558,-0.004351740702986717,0.0011340250493958592,0.00033763505052775145,0.00033763505052775145,-5.3592866606777534e-05,-4.501800867728889e-05,-4.501800867728889e-05,-5.406811273237284e-19,-3.00725285705198e-19,-4.1698412493224234e-19,-0.008830094709992409,0.00033763505052775145,0.005706970114260912,0.000717474496923387,-1.3078055064238682e-19,-0.00011254501441726461,-6.630185032821187e-19,-0.0006377550889737904,-0.00023915816564112902,-2.5252959697503817e-18,-0.008830094709992409,0.00033763505052775145,0.000717474496923387,0.005706970114260912,-1.1125420265064247e-19,-6.055230400599359e-19,-0.00011254501441726461,-2.5077640834624734e-18,-0.00023915816564112902,-0.0006377550889737904,0.0001250500208698213,-5.3592866606777534e-05,-1.3078055064238682e-19,-1.1125420265064247e-19,3.5728576222027186e-06,9.031677339117503e-22,2.1198365160843145e-21,1.465629951711852e-20,9.764242706761242e-21,1.0163417936835599e-20,0.00033763505052775145,-4.501800867728889e-05,-0.00011254501441726461,-6.055230400599359e-19,9.031677339117503e-22,1.5006002286099829e-05,1.5837716995823114e-20,1.4684399424138314e-20,2.009593939166953e-20,6.514042800211118e-20,0.00033763505052775145,-4.501800867728889e-05,-6.630185032821187e-19,-0.00011254501441726461,2.1198365160843145e-21,1.5837716995823114e-20,1.5006002286099829e-05,6.835909762548012e-20,3.0975946154981805e-20,-7.392946111738292e-21,0.0005314626032486558,-5.406811273237284e-19,-0.0006377550889737904,-2.5077640834624734e-18,1.465629951711852e-20,1.4684399424138314e-20,6.835909762548012e-20,0.00010629251482896507,2.1884645088011855e-19,2.052801072228807e-19,0.000717474496923387,-3.00725285705198e-19,-0.00023915816564112902,-0.00023915816564112902,9.764242706761242e-21,2.009593939166953e-20,3.0975946154981805e-20,2.1884645088011855e-19,7.97193861217238e-05,2.2854136955075802e-19,0.0005314626032486558,-4.1698412493224234e-19,-2.5252959697503817e-18,-0.0006377550889737904,1.0163417936835599e-20,6.514042800211118e-20,-7.392946111738292e-21,2.052801072228807e-19,2.2854136955075802e-19,0.00010629251482896507,16.0,7.0,8.0,0.03734462708234787,-0.0038405987434089184,-0.007796087302267551,-0.006991859059780836,0.00010941876826109365,0.00029543068376369774,0.00026260505546815693,0.0004650297632906586,0.0005580357392318547,0.00037202381645329297,-0.0038405987434089184,0.0009966486832126975,0.00029543068376369774,0.00026260505546815693,-4.689375782618299e-05,-3.939075759262778e-05,-3.501400715322234e-05,3.829388960338141e-19,2.783004192988854e-19,1.1973735342268005e-19,-0.007796087302267551,0.00029543068376369774,0.005016850307583809,0.0005580357392318547,7.233441778948486e-20,-9.847689216258004e-05,3.2712976973729147e-19,-0.0005580357392318547,-0.00018601190822664648,-3.082341469626188e-19,-0.006991859059780836,0.00026260505546815693,0.0005580357392318547,0.003857793053612113,9.104991552342557e-20,1.6082026082210357e-19,-7.503000961150974e-05,7.226257586081492e-19,-0.0001594387722434476,-0.00037202381645329297,0.00010941876826109365,-4.689375782618299e-05,7.233441778948486e-20,9.104991552342557e-20,3.1262504762707977e-06,-2.1291704192890854e-22,-3.055836211731031e-21,-7.919303592166944e-21,-4.456692024586942e-21,-7.096981857919099e-21,0.00029543068376369774,-3.939075759262778e-05,-9.847689216258004e-05,1.6082026082210357e-19,-2.1291704192890854e-22,1.3130252227711026e-05,-4.153841734506315e-21,-3.6864473683510617e-20,-2.981059084356237e-20,-3.27982989575475e-21,0.00026260505546815693,-3.501400715322234e-05,3.2712976973729147e-19,-7.503000961150974e-05,-3.055836211731031e-21,-4.153841734506315e-21,1.0004001524066553e-05,-3.403828833610102e-20,-1.4804952920482248e-20,1.7101862229305814e-21,0.0004650297632906586,3.829388960338141e-19,-0.0005580357392318547,7.226257586081492e-19,-7.919303592166944e-21,-3.6864473683510617e-20,-3.403828833610102e-20,9.300595411332324e-05,-7.970757619000724e-20,-2.2606052887791505e-20,0.0005580357392318547,2.783004192988854e-19,-0.00018601190822664648,-0.0001594387722434476,-4.456692024586942e-21,-2.981059084356237e-20,-1.4804952920482248e-20,-7.970757619000724e-20,5.3146257414482534e-05,1.4266067369623825e-19,0.00037202381645329297,1.1973735342268005e-19,-3.082341469626188e-19,-0.00037202381645329297,-7.096981857919099e-21,-3.27982989575475e-21,1.7101862229305814e-21,-2.2606052887791505e-20,1.4266067369623825e-19,5.3146257414482534e-05,16.0,7.0,9.0,0.03379567712545395,-0.00343720824457705,-0.006979458499699831,-0.005674656014889479,9.726112330099568e-05,0.00026260505546815693,0.0002100840356433764,0.00041335978312417865,0.00044642857392318547,0.00027056277031078935,-0.00343720824457705,0.000889022252522409,0.00026260505546815693,0.0002100840356433764,-4.1683339077280834e-05,-3.501400715322234e-05,-2.801120535877999e-05,-1.3322709078479012e-20,-3.450683445432403e-20,5.789623222896465e-20,-0.006979458499699831,0.00026260505546815693,0.004475957248359919,0.00044642857392318547,2.0138896237972602e-20,-8.753501606406644e-05,9.880668377978081e-21,-0.0004960317746736109,-0.00014880952949170023,-1.843440819086326e-20,-0.005674656014889479,0.0002100840356433764,0.00044642857392318547,0.0027328261639922857,-1.2832860636102065e-20,-1.1995673076841706e-20,-5.25210089108441e-05,-2.3760533035977854e-19,-0.00011160714348079637,-0.00023191094805952162,9.726112330099568e-05,-4.1683339077280834e-05,2.0138896237972602e-20,-1.2832860636102065e-20,2.7788894385594176e-06,-1.3776403306128534e-21,1.616220494536216e-22,-2.933274540579668e-21,2.7952963311515264e-21,6.161090507584549e-22,0.00026260505546815693,-3.501400715322234e-05,-8.753501606406644e-05,-1.1995673076841706e-20,-1.3776403306128534e-21,1.1671335414575879e-05,-4.359245463225507e-21,1.5839179102179286e-20,-1.2073569418295906e-21,5.764523541963666e-21,0.0002100840356433764,-2.801120535877999e-05,9.880668377978081e-21,-5.25210089108441e-05,1.616220494536216e-22,-4.359245463225507e-21,7.002801339694997e-06,6.591090635302598e-21,-3.8046648872581006e-21,-2.5528259040916875e-20,0.00041335978312417865,-1.3322709078479012e-20,-0.0004960317746736109,-2.3760533035977854e-19,-2.933274540579668e-21,1.5839179102179286e-20,6.591090635302598e-21,8.26719551696442e-05,4.7573063420742615e-20,4.976942989546264e-21,0.00044642857392318547,-3.450683445432403e-20,-0.00014880952949170023,-0.00011160714348079637,2.7952963311515264e-21,-1.2073569418295906e-21,-3.8046648872581006e-21,4.7573063420742615e-20,3.720238237292506e-05,-1.5006875462824685e-20,0.00027056277031078935,5.789623222896465e-20,-1.843440819086326e-20,-0.00023191094805952162,6.161090507584549e-22,5.764523541963666e-21,-2.5528259040916875e-20,4.976942989546264e-21,-1.5006875462824685e-20,2.8988868507440202e-05,16.0,7.0,10.0,0.030865641310811043,-0.003110676072537899,-0.006318038795143366,-0.0046982429921627045,8.753501606406644e-05,0.00023634453827980906,0.00017188693163916469,0.00037202381645329297,0.00036525973700918257,0.000202922077733092,-0.003110676072537899,0.0008024118724279106,0.00023634453827980906,0.00017188693163916469,-3.751500480575487e-05,-3.151260534650646e-05,-2.2918258764548227e-05,0.0,0.0,-0.0,-0.006318038795143366,0.00023634453827980906,0.004040536470711231,0.00036525973700918257,-1.4740315999469788e-38,-7.878151518525556e-05,1.0947497108037072e-21,-0.00044642857392318547,-0.00012175324809504673,-0.0,-0.0046982429921627045,0.00017188693163916469,0.00036525973700918257,0.0020079337991774082,5.143068664840454e-22,1.0947497108037072e-21,-3.819709672825411e-05,0.0,-8.116882963804528e-05,-0.0001521915546618402,8.753501606406644e-05,-3.751500480575487e-05,-1.4740315999469788e-38,5.143068664840454e-22,2.501000381016638e-06,1.9653757468556646e-39,-6.857424591945867e-23,0.0,0.0,-0.0,0.00023634453827980906,-3.151260534650646e-05,-7.878151518525556e-05,1.0947497108037072e-21,1.9653757468556646e-39,1.050420178216882e-05,-1.459666314729675e-22,0.0,0.0,-0.0,0.00017188693163916469,-2.2918258764548227e-05,1.0947497108037072e-21,-3.819709672825411e-05,-6.857424591945867e-23,-1.459666314729675e-22,5.092946139484411e-06,0.0,0.0,-0.0,0.00037202381645329297,0.0,-0.00044642857392318547,0.0,0.0,0.0,0.0,7.440476474585012e-05,0.0,-0.0,0.00036525973700918257,0.0,-0.00012175324809504673,-8.116882963804528e-05,0.0,0.0,0.0,0.0,2.7056277758674696e-05,-0.0,0.000202922077733092,-0.0,-0.0,-0.0001521915546618402,-0.0,-0.0,-0.0,-0.0,-0.0,1.6910173144424334e-05,16.0,7.0,11.0,0.02840495854616165,-0.0028409091755747795,-0.0057713426649570465,-0.003954226151108742,7.95772866695188e-05,0.00021485866454895586,0.00014323911454994231,0.0003382034774404019,0.0003043831093236804,0.00015609391266480088,-0.0028409091755747795,0.0007312015513889492,0.00021485866454895586,0.00014323911454994231,-3.410455246921629e-05,-2.8647822546190582e-05,-1.9098548364127055e-05,-3.2148770002603798e-19,-2.5626122585317567e-19,-1.248918130875306e-19,-0.0057713426649570465,0.00021485866454895586,0.0036824389826506376,0.0003043831093236804,-1.6936205094475292e-19,-7.161955727497116e-05,-1.0216485773657424e-19,-0.000405844155466184,-0.000101461038866546,-9.815601737071549e-20,-0.003954226151108742,0.00014323911454994231,0.0003043831093236804,0.001519283396191895,-1.230000639513189e-19,-1.18230695635703e-19,-2.8647822546190582e-05,-5.300911992303065e-20,-6.0876624047523364e-05,-0.00010406260116724297,7.95772866695188e-05,-3.410455246921629e-05,-1.6936205094475292e-19,-1.230000639513189e-19,2.2736367100151256e-06,1.9891086578162996e-21,2.0318677966438607e-21,1.2621219529355697e-20,1.135909701096463e-20,5.8251779336281805e-21,0.00021485866454895586,-2.8647822546190582e-05,-7.161955727497116e-05,-1.18230695635703e-19,1.9891086578162996e-21,9.549274182063527e-06,2.117582368135751e-21,2.756474378169262e-20,1.378237189084631e-20,4.893149755053356e-21,0.00014323911454994231,-1.9098548364127055e-05,-1.0216485773657424e-19,-2.8647822546190582e-05,2.0318677966438607e-21,2.117582368135751e-21,3.819709490926471e-06,7.067882710256991e-21,6.361094439231292e-21,3.262099836702237e-21,0.0003382034774404019,-3.2148770002603798e-19,-0.000405844155466184,-5.300911992303065e-20,1.2621219529355697e-20,2.756474378169262e-20,7.067882710256991e-21,6.764069257769734e-05,1.1931811786160954e-34,5.491123839577725e-35,0.0003043831093236804,-2.5626122585317567e-19,-0.000101461038866546,-6.0876624047523364e-05,1.135909701096463e-20,1.378237189084631e-20,6.361094439231292e-21,1.1931811786160954e-34,2.029220740951132e-05,1.2291479003121777e-20,0.00015609391266480088,-1.248918130875306e-19,-9.815601737071549e-20,-0.00010406260116724297,5.8251779336281805e-21,4.893149755053356e-21,3.262099836702237e-21,5.491123839577725e-35,1.2291479003121777e-20,1.0406260116724297e-05,16.0,7.0,12.0,0.02630884014070034,-0.002614266937598586,-0.005311860237270594,-0.003374186111614108,7.294584793271497e-05,0.00019695378432516009,0.00012120232713641599,0.0003100198518950492,0.0002575549588073045,0.0001226452150149271,-0.002614266937598586,0.000671614776365459,0.00019695378432516009,0.00012120232713641599,-3.126250521745533e-05,-2.626050445542205e-05,-1.6160311133717187e-05,0.0,0.0,-0.0,-0.005311860237270594,0.00019695378432516009,0.0033827233128249645,0.0002575549588073045,3.6017107925306734e-21,-6.565126386703923e-05,8.470329472543003e-22,-0.00037202381645329297,-8.585165051044896e-05,-0.0,-0.003374186111614108,0.00012120232713641599,0.0002575549588073045,0.0011776563478633761,-3.2784228708224234e-22,1.6940658945086007e-21,-2.2036787413526326e-05,0.0,-4.682817234424874e-05,-7.358712900895625e-05,7.294584793271497e-05,-3.126250521745533e-05,3.6017107925306734e-21,-3.2784228708224234e-22,2.0841669083893066e-06,-3.8037380956013235e-22,5.1977006904061197e-23,0.0,0.0,-0.0,0.00019695378432516009,-2.626050445542205e-05,-6.565126386703923e-05,1.6940658945086007e-21,-3.8037380956013235e-22,8.753501788305584e-06,-1.0587911840678754e-22,0.0,0.0,-0.0,0.00012120232713641599,-1.6160311133717187e-05,8.470329472543003e-22,-2.2036787413526326e-05,5.1977006904061197e-23,-1.0587911840678754e-22,2.93823813990457e-06,0.0,0.0,-0.0,0.0003100198518950492,0.0,-0.00037202381645329297,0.0,0.0,0.0,0.0,6.200397183420137e-05,0.0,-0.0,0.0002575549588073045,0.0,-8.585165051044896e-05,-4.682817234424874e-05,0.0,0.0,0.0,0.0,1.5609390175086446e-05,-0.0,0.0001226452150149271,-0.0,-0.0,-7.358712900895625e-05,-0.0,-0.0,-0.0,-0.0,-0.0,6.689738711429527e-06,16.0,7.0,13.0,0.024501627311110497,-0.0024211606942117214,-0.004920237231999636,-0.0029131844639778137,6.733462942065671e-05,0.0001818034943426028,0.00010388770897407085,0.0002861721732188016,0.00022076138702686876,9.811617201194167e-05,-0.0024211606942117214,0.0006210176507011056,0.0001818034943426028,0.00010388770897407085,-2.8857697543571703e-05,-2.424046579108108e-05,-1.3851694347977173e-05,4.770151552258415e-19,1.1011428314305904e-19,1.3298417271892515e-19,-0.004920237231999636,0.0001818034943426028,0.0031281744595617056,0.00022076138702686876,1.9624920778896816e-19,-6.0601163568207994e-05,7.792703114739563e-20,-0.00034340660204179585,-7.358712900895625e-05,5.590417451878382e-20,-0.0029131844639778137,0.00010388770897407085,0.00022076138702686876,0.000931513321120292,1.1144259303515142e-19,8.564365691023504e-20,-1.731461816234514e-05,4.9177037714316827e-20,-3.679356450447813e-05,-5.3517909691436216e-05,6.733462942065671e-05,-2.8857697543571703e-05,1.9624920778896816e-19,1.1144259303515142e-19,1.92384641195531e-06,-3.739568842665732e-21,-2.107658220269032e-21,-2.2426935973431097e-20,-5.9470372282730835e-21,-6.6085955218983245e-21,0.0001818034943426028,-2.424046579108108e-05,-6.0601163568207994e-05,8.564365691023504e-20,-3.739568842665732e-21,8.080155566858593e-06,-1.0335051249643425e-21,-2.7789685209518756e-20,-6.352043920107226e-21,-5.610439342449357e-21,0.00010388770897407085,-1.3851694347977173e-05,7.792703114739563e-20,-1.731461816234514e-05,-2.107658220269032e-21,-1.0335051249643425e-21,2.308615648871637e-06,-1.1533852647857095e-20,-1.6349492388729643e-21,-3.3881317890172014e-21,0.0002861721732188016,4.770151552258415e-19,-0.00034340660204179585,4.9177037714316827e-20,-2.2426935973431097e-20,-2.7789685209518756e-20,-1.1533852647857095e-20,5.723443246097304e-05,-6.813164395966077e-21,3.3009343104847895e-21,0.00022076138702686876,1.1011428314305904e-19,-7.358712900895625e-05,-3.679356450447813e-05,-5.9470372282730835e-21,-6.352043920107226e-21,-1.6349492388729643e-21,-6.813164395966077e-21,1.2264521501492709e-05,-7.623296525288703e-21,9.811617201194167e-05,1.3298417271892515e-19,5.590417451878382e-20,-5.3517909691436216e-05,-6.6085955218983245e-21,-5.610439342449357e-21,-3.3881317890172014e-21,3.3009343104847895e-21,-7.623296525288703e-21,4.459825959202135e-06,16.0,7.0,14.0,0.02292729541659355,-0.0022546518594026566,-0.004582458175718784,-0.0025407038629055023,6.252501043491066e-05,0.00016881752526387572,9.003601735457778e-05,0.0002657313016243279,0.00019132652960252017,7.97193861217238e-05,-0.0022546518594026566,0.0005775167373940349,0.00016881752526387572,9.003601735457778e-05,-2.6796433303388767e-05,-2.2509004338644445e-05,-1.2004801646980923e-05,-2.693762261639922e-19,-2.964615315390051e-20,-5.505714157152952e-20,-0.004582458175718784,0.00016881752526387572,0.002909288741648197,0.00019132652960252017,-1.920266963311293e-19,-5.6272507208632305e-05,7.792703114739563e-20,-0.0003188775444868952,-6.377550744218752e-05,6.945670167485263e-20,-0.0025407038629055023,9.003601735457778e-05,0.00019132652960252017,0.0007496147300116718,-8.990743046347352e-20,9.362695148539477e-20,-1.3851694347977173e-05,1.3252520380123186e-19,-2.943485014839098e-05,-3.98596930608619e-05,6.252501043491066e-05,-2.6796433303388767e-05,-1.920266963311293e-19,-8.990743046347352e-20,1.7864288111013593e-06,5.27924196051745e-21,2.3103542249518197e-21,2.0825011859929795e-20,4.6337005977376205e-21,4.699516790294922e-21,0.00016881752526387572,-2.2509004338644445e-05,-5.6272507208632305e-05,9.362695148539477e-20,5.27924196051745e-21,7.503001143049914e-06,-2.758169936866282e-21,9.201799674058355e-22,-5.007447698014858e-21,-3.731948522051944e-21,9.003601735457778e-05,-1.2004801646980923e-05,7.792703114739563e-20,-1.3851694347977173e-05,2.3103542249518197e-21,-2.758169936866282e-21,1.8468925873094122e-06,-5.331202877814488e-21,-2.7507364185148503e-21,-1.0587911840678754e-22,0.0002657313016243279,-2.693762261639922e-19,-0.0003188775444868952,1.3252520380123186e-19,2.0825011859929795e-20,9.201799674058355e-22,-5.331202877814488e-21,5.3146257414482534e-05,1.0152056724213283e-21,-5.900419865421395e-21,0.00019132652960252017,-2.964615315390051e-20,-6.377550744218752e-05,-2.943485014839098e-05,4.6337005977376205e-21,-5.007447698014858e-21,-2.7507364185148503e-21,1.0152056724213283e-21,9.811617019295227e-06,6.352747104407253e-22,7.97193861217238e-05,-5.505714157152952e-20,6.945670167485263e-20,-3.98596930608619e-05,4.699516790294922e-21,-3.731948522051944e-21,-1.0587911840678754e-22,-5.900419865421395e-21,6.352747104407253e-22,3.0661303753731772e-06,16.0,7.0,15.0,0.021543461829423904,-0.0021095939446240664,-0.004288121592253447,-0.002235425403341651,5.835667616338469e-05,0.00015756303037051111,7.878151518525556e-05,0.00024801588733680546,0.00016741071885917336,6.565126386703923e-05,-0.0021095939446240664,0.0005397158674895763,0.00015756303037051111,7.878151518525556e-05,-2.501000381016638e-05,-2.100840356433764e-05,-1.050420178216882e-05,2.5176635225395666e-19,5.929230630780102e-21,2.286988957586611e-20,-0.004288121592253447,0.00015756303037051111,0.0027190563268959522,0.00016741071885917336,1.4608363754386218e-19,-5.25210089108441e-05,-9.275010772434589e-20,-0.00029761905898340046,-5.5803571740398183e-05,-1.3044307387716225e-19,-0.002235425403341651,7.878151518525556e-05,0.00016741071885917336,0.0006122521008364856,6.164889863652485e-20,-1.035535905874742e-19,-1.1254502169322222e-05,-2.1039761517880485e-19,-2.391581620031502e-05,-3.0300581784103997e-05,5.835667616338469e-05,-2.501000381016638e-05,1.4608363754386218e-19,6.164889863652485e-20,1.6673335494488128e-06,-5.282869963374998e-22,-5.512327765033933e-22,-1.9436678059051902e-20,-3.748357636674108e-21,-3.4601150815613545e-21,0.00015756303037051111,-2.100840356433764e-05,-5.25210089108441e-05,-1.035535905874742e-19,-5.282869963374998e-22,7.002801339694997e-06,4.140216680412632e-21,-9.490984722315343e-22,4.680886243363656e-21,3.61506644746978e-21,7.878151518525556e-05,-1.050420178216882e-05,-9.275010772434589e-20,-1.1254502169322222e-05,-5.512327765033933e-22,4.140216680412632e-21,1.5006002058726153e-06,4.609269285202113e-21,4.162480278911239e-21,2.2234614865425384e-21,0.00024801588733680546,2.5176635225395666e-19,-0.00029761905898340046,-2.1039761517880485e-19,-1.9436678059051902e-20,-9.490984722315343e-22,4.609269285202113e-21,4.960317528457381e-05,1.9173555460490478e-20,7.101863354444155e-21,0.00016741071885917336,5.929230630780102e-21,-5.5803571740398183e-05,-2.391581620031502e-05,-3.748357636674108e-21,4.680886243363656e-21,4.162480278911239e-21,1.9173555460490478e-20,7.97193843027344e-06,8.258571235729428e-21,6.565126386703923e-05,2.286988957586611e-20,-1.3044307387716225e-19,-3.0300581784103997e-05,-3.4601150815613545e-21,3.61506644746978e-21,2.2234614865425384e-21,7.101863354444155e-21,8.258571235729428e-21,2.1643272702931426e-06,16.0,7.0,16.0,0.020317455753684044,-0.0019820888992398977,-0.004029346164315939,-0.0019820888992398977,5.470938413054682e-05,0.00014771534188184887,6.951310206204653e-05,0.0002325148816453293,0.00014771534188184887,5.470938413054682e-05,-0.0019820888992398977,0.0005065629375167191,0.00014771534188184887,6.951310206204653e-05,-2.3446878913091496e-05,-1.969537879631389e-05,-9.26841312320903e-06,0.0,1.2705494208814505e-21,-8.470329472543003e-22,-0.004029346164315939,0.00014771534188184887,0.002552192658185959,0.00014771534188184887,-1.7503317456722876e-21,-4.923844608129002e-05,4.235164736271502e-22,-0.00027901786961592734,-4.923844608129002e-05,1.6940658945086007e-21,-0.0019820888992398977,6.951310206204653e-05,0.00014771534188184887,0.0005065629375167191,7.467982737747757e-23,-0.0,-9.26841312320903e-06,-0.0,-1.969537879631389e-05,-2.3446878913091496e-05,5.470938413054682e-05,-2.3446878913091496e-05,-1.7503317456722876e-21,7.467982737747757e-23,1.5631252381353988e-06,2.880421970646015e-22,4.2526557389152965e-23,0.0,-2.6430188250585653e-23,-2.913021615999837e-23,0.00014771534188184887,-1.969537879631389e-05,-4.923844608129002e-05,-0.0,2.880421970646015e-22,6.565126113855513e-06,5.509805934492123e-23,0.0,-3.473731956745173e-23,-2.1009284415757042e-23,6.951310206204653e-05,-9.26841312320903e-06,4.235164736271502e-22,-9.26841312320903e-06,4.2526557389152965e-23,5.509805934492123e-23,1.2357884315861156e-06,0.0,-1.423501649172978e-22,1.5881867761018131e-22,0.0002325148816453293,0.0,-0.00027901786961592734,-0.0,0.0,0.0,0.0,4.650297705666162e-05,0.0,0.0,0.00014771534188184887,1.2705494208814505e-21,-4.923844608129002e-05,-1.969537879631389e-05,-2.6430188250585653e-23,-3.473731956745173e-23,-1.423501649172978e-22,0.0,6.565126113855513e-06,-3.1763735522036263e-22,5.470938413054682e-05,-8.470329472543003e-22,1.6940658945086007e-21,-2.3446878913091496e-05,-2.913021615999837e-23,-2.1009284415757042e-23,1.5881867761018131e-22,0.0,-3.1763735522036263e-22,1.5631252381353988e-06,16.0,8.0,3.0,0.07133374363183975,-0.008272059261798859,-0.015012254938483238,-0.031173406168818474,0.0002553104714024812,0.0006127451197244227,0.0013786765048280358,0.0008680555620230734,0.0026041667442768812,0.00390625,-0.008272059261798859,0.002233601873740554,0.0006127451197244227,0.0013786765048280358,-0.00010941876826109365,-8.169934881152585e-05,-0.00018382353300694376,8.097634975751111e-19,4.87890977618477e-19,-4.0776281886107776e-18,-0.015012254938483238,0.0006127451197244227,0.008629493415355682,0.0026041667442768812,2.710505431213761e-19,-0.00017507003212813288,5.421010862427522e-19,-0.0008680555620230734,-0.0007440476329065859,9.18057487062186e-18,-0.031173406168818474,0.0013786765048280358,0.0026041667442768812,0.07023590803146362,4.997245265264326e-20,-9.108321471295965e-19,-0.0013786765048280358,2.927345865710862e-18,-0.0026041667442768812,-0.0234375,0.0002553104714024812,-0.00010941876826109365,2.710505431213761e-19,4.997245265264326e-20,7.294584520423086e-06,-7.623296525288703e-21,-1.461131834013668e-20,-2.159934015498466e-20,-3.049318610115481e-20,9.698651969388475e-20,0.0006127451197244227,-8.169934881152585e-05,-0.00017507003212813288,-9.108321471295965e-19,-7.623296525288703e-21,2.3342670829151757e-05,4.363889872338665e-20,-9.317362419797304e-20,-6.776263578034403e-21,2.7923319468650965e-19,0.0013786765048280358,-0.00018382353300694376,5.421010862427522e-19,-0.0013786765048280358,-1.461131834013668e-20,4.363889872338665e-20,0.00018382353300694376,-1.097106965523156e-19,-6.226690595167853e-20,2.0250098974479507e-18,0.0008680555620230734,8.097634975751111e-19,-0.0008680555620230734,2.927345865710862e-18,-2.159934015498466e-20,-9.317362419797304e-20,-1.097106965523156e-19,0.00012400794366840273,-1.7618285302889447e-19,-7.318364664277155e-19,0.0026041667442768812,4.87890977618477e-19,-0.0007440476329065859,-0.0026041667442768812,-3.049318610115481e-20,-6.776263578034403e-21,-6.226690595167853e-20,-1.7618285302889447e-19,0.0007440476329065859,-4.8113349104034755e-18,0.00390625,-4.0776281886107776e-18,9.18057487062186e-18,-0.0234375,9.698651969388475e-20,2.7923319468650965e-19,2.0250098974479507e-18,-7.318364664277155e-19,-4.8113349104034755e-18,0.01171875,16.0,8.0,4.0,0.05798100307583809,-0.006410845555365086,-0.011649816296994686,-0.019875919446349144,0.00019148284627590328,0.0004595588252414018,0.0008272058912552893,0.0006510416860692203,0.0015625000232830644,0.001953125,-0.006410845555365086,0.0017027748981490731,0.0004595588252414018,0.0008272058912552893,-8.206407801480964e-05,-6.127451342763379e-05,-0.00011029411689378321,8.165397611531455e-19,9.75781955236954e-19,-2.904090509969546e-19,-0.011649816296994686,0.0004595588252414018,0.006583727430552244,0.0015625000232830644,3.3203691532368573e-19,-0.00013130252773407847,1.6805133673525319e-18,-0.0006510416860692203,-0.00044642857392318547,4.802720237914042e-18,-0.019875919446349144,0.0008272058912552893,0.0015625000232830644,0.02692248858511448,3.5711445301922784e-20,9.18298796326383e-19,-0.0005514706135727465,2.1141942363467336e-18,-0.0010416667209938169,-0.005859375,0.00019148284627590328,-8.206407801480964e-05,3.3203691532368573e-19,3.5711445301922784e-20,5.4709385040041525e-06,-9.317362419797304e-21,-6.45862622281404e-21,-3.2610768469290563e-20,-1.6093625997831706e-20,2.197750225100204e-20,0.0004595588252414018,-6.127451342763379e-05,-0.00013130252773407847,9.18298796326383e-19,-9.317362419797304e-21,1.750700357661117e-05,-4.537343507559926e-20,-2.710505431213761e-20,-7.623296525288703e-20,-8.474164876398864e-20,0.0008272058912552893,-0.00011029411689378321,1.6805133673525319e-18,-0.0005514706135727465,-6.45862622281404e-21,-4.537343507559926e-20,7.352940883720294e-05,-1.191817206955917e-19,-2.815079672204246e-19,2.981555974335137e-19,0.0006510416860692203,8.165397611531455e-19,-0.0006510416860692203,2.1141942363467336e-18,-3.2610768469290563e-20,-2.710505431213761e-20,-1.191817206955917e-19,9.300595411332324e-05,-3.7269449679189215e-20,-3.5236570605778894e-19,0.0015625000232830644,9.75781955236954e-19,-0.00044642857392318547,-0.0010416667209938169,-1.6093625997831706e-20,-7.623296525288703e-20,-2.815079672204246e-19,-3.7269449679189215e-20,0.00029761905898340046,-9.681923663216268e-19,0.001953125,-2.904090509969546e-19,4.802720237914042e-18,-0.005859375,2.197750225100204e-20,-8.474164876398864e-20,2.981555974335137e-19,-3.5236570605778894e-19,-9.681923663216268e-19,0.001953125,16.0,8.0,5.0,0.048923321068286896,-0.0052389707416296005,-0.009528186172246933,-0.013808648101985455,0.00015318627993110567,0.0003676470660138875,0.0005514706135727465,0.0005208333604969084,0.0010416667209938169,0.0011160714784637094,-0.0052389707416296005,0.0013769257348030806,0.0003676470660138875,0.0005514706135727465,-6.565126386703923e-05,-4.901960710412823e-05,-7.352940883720294e-05,2.384586964085977e-19,-1.0402391385154449e-19,-1.286489294682924e-18,-0.009528186172246933,0.0003676470660138875,0.005326505750417709,0.0010416667209938169,-1.0164395367051604e-20,-0.0001050420178216882,1.4195811301284517e-19,-0.0005208333604969084,-0.00029761905898340046,-3.882476378076029e-19,-0.013808648101985455,0.0005514706135727465,0.0010416667209938169,0.01360075268894434,-4.404571325722362e-20,1.8017937292727016e-20,-0.00027573530678637326,1.4154339308804464e-18,-0.0005208333604969084,-0.0022321429569274187,0.00015318627993110567,-6.565126386703923e-05,-1.0164395367051604e-20,-4.404571325722362e-20,4.376750894152792e-06,-2.541098841762901e-21,-3.3881317890172014e-21,4.412199562713106e-21,5.666339667024001e-22,1.7094071868146183e-20,0.0003676470660138875,-4.901960710412823e-05,-0.0001050420178216882,1.8017937292727016e-20,-2.541098841762901e-21,1.4005602679389995e-05,-1.2705494208814505e-20,-6.618598429637821e-20,-1.7348124560537934e-20,3.6086112882969556e-20,0.0005514706135727465,-7.352940883720294e-05,1.4195811301284517e-19,-0.00027573530678637326,-3.3881317890172014e-21,-1.2705494208814505e-20,3.676470441860147e-05,-2.852351719747547e-20,8.645148925127257e-20,4.104479763763956e-19,0.0005208333604969084,2.384586964085977e-19,-0.0005208333604969084,1.4154339308804464e-18,4.412199562713106e-21,-6.618598429637821e-20,-2.852351719747547e-20,7.440476474585012e-05,-1.1977438267978887e-19,-1.9344503966301925e-19,0.0010416667209938169,-1.0402391385154449e-19,-0.00029761905898340046,-0.0005208333604969084,5.666339667024001e-22,-1.7348124560537934e-20,8.645148925127257e-20,-1.1977438267978887e-19,0.00014880952949170023,7.611223307260609e-19,0.0011160714784637094,-1.286489294682924e-18,-3.882476378076029e-19,-0.0022321429569274187,1.7094071868146183e-20,3.6086112882969556e-20,4.104479763763956e-19,-1.9344503966301925e-19,7.611223307260609e-19,0.0005580357392318547,16.0,8.0,6.0,0.04234688729047775,-0.004431460052728653,-0.00806416291743517,-0.010162267833948135,0.0001276552357012406,0.00030637255986221135,0.00039390756865032017,0.0004340277810115367,0.0007440476329065859,0.0006975446594879031,-0.004431460052728653,0.001156191690824926,0.00030637255986221135,0.00039390756865032017,-5.470938413054682e-05,-4.0849674405762926e-05,-5.25210089108441e-05,3.92930927640725e-19,2.344477234677222e-19,1.5637160593961096e-19,-0.00806416291743517,0.00030637255986221135,0.004474185407161713,0.0007440476329065859,1.030104301930595e-19,-8.753501606406644e-05,1.4867087755416905e-19,-0.0004340277810115367,-0.00021258502965793014,6.079276541006276e-19,-0.010162267833948135,0.00039390756865032017,0.0007440476329065859,0.007901403121650219,8.02468541265908e-22,-1.8421924872197098e-19,-0.00015756303037051111,7.287654550060358e-19,-0.00029761905898340046,-0.0010463169310241938,0.0001276552357012406,-5.470938413054682e-05,1.030104301930595e-19,8.02468541265908e-22,3.647292260211543e-06,-6.751765319607034e-22,1.3135519075210542e-21,-1.0451976339233028e-20,-7.541415338168757e-21,3.825795151382282e-21,0.00030637255986221135,-4.0849674405762926e-05,-8.753501606406644e-05,-1.8421924872197098e-19,-6.751765319607034e-22,1.1671335414575879e-05,1.1269333374218422e-20,-4.6674616028539315e-20,-8.758148743826677e-21,2.6935574375030872e-20,0.00039390756865032017,-5.25210089108441e-05,1.4867087755416905e-19,-0.00015756303037051111,1.3135519075210542e-21,1.1269333374218422e-20,2.100840356433764e-05,-2.1978570154097544e-20,-2.4051248893433883e-20,-1.089807742852229e-19,0.0004340277810115367,3.92930927640725e-19,-0.0004340277810115367,7.287654550060358e-19,-1.0451976339233028e-20,-4.6674616028539315e-20,-2.1978570154097544e-20,6.200397183420137e-05,-1.2045697470620704e-19,-2.1507030352915435e-20,0.0007440476329065859,2.344477234677222e-19,-0.00021258502965793014,-0.00029761905898340046,-7.541415338168757e-21,-8.758148743826677e-21,-2.4051248893433883e-20,-1.2045697470620704e-19,8.50340147735551e-05,-2.416152951742825e-19,0.0006975446594879031,1.5637160593961096e-19,6.079276541006276e-19,-0.0010463169310241938,3.825795151382282e-21,2.6935574375030872e-20,-1.089807742852229e-19,-2.1507030352915435e-20,-2.416152951742825e-19,0.0002092633949359879,16.0,8.0,7.0,0.03734462708234787,-0.0038405987434089184,-0.006991859059780836,-0.007796087302267551,0.00010941876826109365,0.00026260505546815693,0.00029543068376369774,0.00037202381645329297,0.0005580357392318547,0.0004650297632906586,-0.0038405987434089184,0.0009966486832126975,0.00026260505546815693,0.00029543068376369774,-4.689375782618299e-05,-3.501400715322234e-05,-3.939075759262778e-05,6.490461690404821e-20,3.0052914050244635e-19,4.096928380253171e-19,-0.006991859059780836,0.00026260505546815693,0.003857793053612113,0.0005580357392318547,6.203238086097414e-20,-7.503000961150974e-05,7.576335284715566e-20,-0.00037202381645329297,-0.0001594387722434476,4.367786086894246e-19,-0.007796087302267551,0.00029543068376369774,0.0005580357392318547,0.005016850307583809,1.2130772996621783e-19,2.972093803609355e-19,-9.847689216258004e-05,1.6446839874210092e-19,-0.00018601190822664648,-0.0005580357392318547,0.00010941876826109365,-4.689375782618299e-05,6.203238086097414e-20,1.2130772996621783e-19,3.1262504762707977e-06,-1.2962788576790411e-21,-1.9449813186347232e-21,-3.2132539733477355e-21,-8.809793409942255e-21,-1.1235960998587169e-20,0.00026260505546815693,-3.501400715322234e-05,-7.503000961150974e-05,2.972093803609355e-19,-1.2962788576790411e-21,1.0004001524066553e-05,-1.4509069042122967e-21,-2.8045895922424603e-21,-1.521533467071085e-20,-3.307253235272549e-20,0.00029543068376369774,-3.939075759262778e-05,7.576335284715566e-20,-9.847689216258004e-05,-1.9449813186347232e-21,-1.4509069042122967e-21,1.3130252227711026e-05,5.239454492274293e-21,-2.873333996090264e-20,-1.8643988616220348e-20,0.00037202381645329297,6.490461690404821e-20,-0.00037202381645329297,1.6446839874210092e-19,-3.2132539733477355e-21,-2.8045895922424603e-21,5.239454492274293e-21,5.3146257414482534e-05,-1.567533271740843e-20,-2.220107042976437e-20,0.0005580357392318547,3.0052914050244635e-19,-0.0001594387722434476,-0.00018601190822664648,-8.809793409942255e-21,-1.521533467071085e-20,-2.873333996090264e-20,-1.567533271740843e-20,5.3146257414482534e-05,8.839291607626434e-21,0.0004650297632906586,4.096928380253171e-19,4.367786086894246e-19,-0.0005580357392318547,-1.1235960998587169e-20,-3.307253235272549e-20,-1.8643988616220348e-20,-2.220107042976437e-20,8.839291607626434e-21,9.300595411332324e-05,16.0,8.0,8.0,0.03340737521648407,-0.0033892462961375713,-0.006172130350023508,-0.006172130350023508,9.574142313795164e-05,0.0002297794126207009,0.0002297794126207009,0.00032552084303461015,0.0004340277810115367,0.00032552084303461015,-0.0033892462961375713,0.0008758972398936749,0.0002297794126207009,0.0002297794126207009,-4.103203900740482e-05,-3.0637256713816896e-05,-3.0637256713816896e-05,4.0456287066141637e-19,3.050130281091549e-19,5.413241568524118e-19,-0.006172130350023508,0.0002297794126207009,0.003391070058569312,0.0004340277810115367,1.5600123582034035e-19,-6.565126386703923e-05,4.847858449965295e-19,-0.00032552084303461015,-0.00012400794366840273,8.147865518448394e-19,-0.006172130350023508,0.0002297794126207009,0.0004340277810115367,0.003391070058569312,2.1557771744264455e-19,5.400610520570433e-19,-6.565126386703923e-05,7.701848698184036e-19,-0.00012400794366840273,-0.00032552084303461015,9.574142313795164e-05,-4.103203900740482e-05,1.5600123582034035e-19,2.1557771744264455e-19,2.7354692520020762e-06,-3.788292123346449e-21,-4.751863429020177e-21,-1.2131693396611961e-20,-1.0254549975884215e-20,-1.9489218568233224e-20,0.0002297794126207009,-3.0637256713816896e-05,-6.565126386703923e-05,5.400610520570433e-19,-3.788292123346449e-21,8.753501788305584e-06,-1.7659772934252956e-20,-1.2610933086074202e-20,-2.2116691544935427e-20,-4.317742241446156e-20,0.0002297794126207009,-3.0637256713816896e-05,4.847858449965295e-19,-6.565126386703923e-05,-4.751863429020177e-21,-1.7659772934252956e-20,8.753501788305584e-06,-3.8526502485154126e-20,-1.6475206676224406e-20,-2.0223632167558137e-20,0.00032552084303461015,4.0456287066141637e-19,-0.00032552084303461015,7.701848698184036e-19,-1.2131693396611961e-20,-1.2610933086074202e-20,-3.8526502485154126e-20,4.650297705666162e-05,3.0139252561487634e-21,-6.433001072165942e-20,0.0004340277810115367,3.050130281091549e-19,-0.00012400794366840273,-0.00012400794366840273,-1.0254549975884215e-20,-2.2116691544935427e-20,-1.6475206676224406e-20,3.0139252561487634e-21,3.543083948898129e-05,3.6055777003356455e-21,0.00032552084303461015,5.413241568524118e-19,8.147865518448394e-19,-0.00032552084303461015,-1.9489218568233224e-20,-4.317742241446156e-20,-2.0223632167558137e-20,-6.433001072165942e-20,3.6055777003356455e-21,4.650297705666162e-05,16.0,8.0,9.0,0.030225664377212524,-0.0030330882873386145,-0.005524918437004089,-0.005008726846426725,8.510348561685532e-05,0.00020424836839083582,0.00018382353300694376,0.00028935185400769114,0.00034722223062999547,0.0002367424312978983,-0.0030330882873386145,0.0007812986150383949,0.00020424836839083582,0.00018382353300694376,-3.6472923966357484e-05,-2.7233116270508617e-05,-2.4509803552064113e-05,-2.888154875468712e-19,-8.323133328774046e-20,4.952608531459433e-20,-0.005524918437004089,0.00020424836839083582,0.003025307320058346,0.00034722223062999547,-6.765530263351674e-20,-5.835667616338469e-05,-1.7439309267727114e-19,-0.00028935185400769114,-9.920635056914762e-05,4.8061604045334676e-20,-0.005008726846426725,0.00018382353300694376,0.00034722223062999547,0.002402073470875621,-1.1529288210307065e-21,4.195956375236488e-20,-4.595588325173594e-05,-1.2533911100376865e-19,-8.680555765749887e-05,-0.000202922077733092,8.510348561685532e-05,-3.6472923966357484e-05,-6.765530263351674e-20,-1.1529288210307065e-21,2.431528173474362e-06,9.906091661013799e-22,-1.098757881508699e-21,6.423373303758936e-21,2.3332222549868947e-21,1.5341686105381543e-22,0.00020424836839083582,-2.7233116270508617e-05,-5.835667616338469e-05,4.195956375236488e-20,9.906091661013799e-22,7.780889973219018e-06,7.70604063788654e-22,2.2631041173991422e-20,3.506891983642515e-21,-7.500233214332267e-21,0.00018382353300694376,-2.4509803552064113e-05,-1.7439309267727114e-19,-4.595588325173594e-05,-1.098757881508699e-21,7.70604063788654e-22,6.127450888016028e-06,1.8217648096283153e-20,8.315972238803067e-21,-4.9554023662900735e-21,0.00028935185400769114,-2.888154875468712e-19,-0.00028935185400769114,-1.2533911100376865e-19,6.423373303758936e-21,2.2631041173991422e-20,1.8217648096283153e-20,4.13359775848221e-05,3.7997184441302616e-20,-1.7879111505898756e-20,0.00034722223062999547,-8.323133328774046e-20,-9.920635056914762e-05,-8.680555765749887e-05,2.3332222549868947e-21,3.506891983642515e-21,8.315972238803067e-21,3.7997184441302616e-20,2.4801587642286904e-05,3.881184102239371e-20,0.0002367424312978983,4.952608531459433e-20,4.8061604045334676e-20,-0.000202922077733092,1.5341686105381543e-22,-7.500233214332267e-21,-4.9554023662900735e-21,-1.7879111505898756e-20,3.881184102239371e-20,2.53652597166365e-05,16.0,8.0,10.0,0.027599988505244255,-0.00274481950327754,-0.0050008357502520084,-0.004146473947912455,7.659313996555284e-05,0.00018382353300694376,0.00015040107246022671,0.0002604166802484542,0.0002840909000951797,0.00017755682347342372,-0.00274481950327754,0.000705174112226814,0.00018382353300694376,0.00015040107246022671,-3.282563193351962e-05,-2.4509803552064113e-05,-2.0053475964232348e-05,-3.809588712166065e-20,-1.1874042791673032e-20,-0.0,-0.0050008357502520084,0.00018382353300694376,0.002730893436819315,0.0002840909000951797,8.56987953983674e-37,-5.25210089108441e-05,-5.321699994292932e-21,-0.0002604166802484542,-8.116882963804528e-05,-0.0,-0.004146473947912455,0.00015040107246022671,0.0002840909000951797,0.0017648335779085755,-3.340610353702806e-22,-1.719574238206918e-20,-3.342246054671705e-05,-6.308085167443071e-20,-6.313131598290056e-05,-0.0001331676176050678,7.659313996555284e-05,-3.282563193351962e-05,8.56987953983674e-37,-3.340610353702806e-22,2.188375447076396e-06,7.092127072077439e-39,4.4541472224155715e-23,-1.1264744642549082e-37,-2.703262804149348e-38,-0.0,0.00018382353300694376,-2.4509803552064113e-05,-5.25210089108441e-05,-1.719574238206918e-20,7.092127072077439e-39,7.002801339694997e-06,7.095600127022837e-22,1.088453929301641e-20,3.3925835393646425e-21,-0.0,0.00015040107246022671,-2.0053475964232348e-05,-5.321699994292932e-21,-3.342246054671705e-05,4.4541472224155715e-23,7.095600127022837e-22,4.456328042579116e-06,1.1028777639960006e-36,3.4375411815857635e-37,-0.0,0.0002604166802484542,-3.809588712166065e-20,-0.0002604166802484542,-6.308085167443071e-20,-1.1264744642549082e-37,1.088453929301641e-20,1.1028777639960006e-36,3.720238237292506e-05,1.8023100709206936e-20,-0.0,0.0002840909000951797,-1.1874042791673032e-20,-8.116882963804528e-05,-6.313131598290056e-05,-2.703262804149348e-38,3.3925835393646425e-21,3.4375411815857635e-37,1.8023100709206936e-20,1.803751729312353e-05,-0.0,0.00017755682347342372,-0.0,-0.0,-0.0001331676176050678,-0.0,-0.0,-0.0,-0.0,-0.0,1.4796401956118643e-05,16.0,8.0,11.0,0.0253957137465477,-0.002506684511899948,-0.00456773629412055,-0.003489540424197912,6.963012128835544e-05,0.00016711230273358524,0.00012533421977423131,0.0002367424312978983,0.0002367424312978983,0.00013658216630574316,-0.002506684511899948,0.0006425865576602519,0.00016711230273358524,0.00012533421977423131,-2.9841481591574848e-05,-2.228163975814823e-05,-1.6711230273358524e-05,0.0,0.0,-0.0,-0.00456773629412055,0.00016711230273358524,0.002488779602572322,0.0002367424312978983,1.3252280586602838e-21,-4.774637272930704e-05,-4.343201471295603e-21,-0.0002367424312978983,-6.764069257769734e-05,-0.0,-0.003489540424197912,0.00012533421977423131,0.0002367424312978983,0.0013352915411815047,2.087234169670753e-21,-4.343201471295603e-21,-2.5066845410037786e-05,0.0,-4.734848334919661e-05,-9.10547751118429e-05,6.963012128835544e-05,-2.9841481591574848e-05,1.3252280586602838e-21,2.087234169670753e-21,1.989432121263235e-06,-1.7669706775642479e-22,-2.7829788424072393e-22,0.0,0.0,-0.0,0.00016711230273358524,-2.228163975814823e-05,-4.774637272930704e-05,-4.343201471295603e-21,-1.7669706775642479e-22,6.366182788042352e-06,5.7909352614027385e-22,0.0,0.0,-0.0,0.00012533421977423131,-1.6711230273358524e-05,-4.343201471295603e-21,-2.5066845410037786e-05,-2.7829788424072393e-22,5.7909352614027385e-22,3.3422459182474995e-06,0.0,0.0,-0.0,0.0002367424312978983,0.0,-0.0002367424312978983,0.0,0.0,0.0,0.0,3.382034628884867e-05,0.0,-0.0,0.0002367424312978983,0.0,-6.764069257769734e-05,-4.734848334919661e-05,0.0,0.0,0.0,0.0,1.3528138879337348e-05,-0.0,0.00013658216630574316,-0.0,-0.0,-9.10547751118429e-05,-0.0,-0.0,-0.0,-0.0,-0.0,9.105478056881111e-06,16.0,8.0,12.0,0.023518582805991173,-0.0023066317662596703,-0.004203784745186567,-0.002977452939376235,6.38276178506203e-05,0.00015318627993110567,0.00010605203715385869,0.00021701389050576836,0.00020032051543239504,0.0001073145613190718,-0.0023066317662596703,0.0005902160773985088,0.00015318627993110567,0.00010605203715385869,-2.735469206527341e-05,-2.0424837202881463e-05,-1.4140271559881512e-05,0.0,0.0,-0.0,-0.004203784745186567,0.00015318627993110567,0.0022861508186906576,0.00020032051543239504,-2.6148291898439673e-21,-4.376750803203322e-05,-4.658681209898652e-21,-0.00021701389050576836,-5.723443246097304e-05,-0.0,-0.002977452939376235,0.00010605203715385869,0.00020032051543239504,0.0010350020602345467,-5.166293739632119e-22,-4.235164736271502e-21,-1.9282188077340834e-05,0.0,-3.6421912227524444e-05,-6.438873970182613e-05,6.38276178506203e-05,-2.735469206527341e-05,-2.6148291898439673e-21,-5.166293739632119e-22,1.8236461301057716e-06,2.8683659040948307e-22,8.713347982489306e-23,0.0,0.0,-0.0,0.00015318627993110567,-2.0424837202881463e-05,-4.376750803203322e-05,-4.235164736271502e-21,2.8683659040948307e-22,5.835667707287939e-06,6.352747104407253e-22,0.0,0.0,-0.0,0.00010605203715385869,-1.4140271559881512e-05,-4.658681209898652e-21,-1.9282188077340834e-05,8.713347982489306e-23,6.352747104407253e-22,2.5709584861033363e-06,0.0,0.0,-0.0,0.00021701389050576836,0.0,-0.00021701389050576836,0.0,0.0,0.0,0.0,3.100198591710068e-05,0.0,-0.0,0.00020032051543239504,0.0,-5.723443246097304e-05,-3.6421912227524444e-05,0.0,0.0,0.0,0.0,1.0406260116724297e-05,-0.0,0.0001073145613190718,-0.0,-0.0,-6.438873970182613e-05,-0.0,-0.0,-0.0,-0.0,-0.0,5.853521543031093e-06,16.0,8.0,13.0,0.021900586783885956,-0.0021361911203712225,-0.003893624758347869,-0.0025704994332045317,5.891779801459052e-05,0.00014140272105578333,9.09017471713014e-05,0.00020032051543239504,0.00017170330102089792,8.585165051044896e-05,-0.0021361911203712225,0.0005457471706904471,0.00014140272105578333,9.09017471713014e-05,-2.5250485123251565e-05,-1.885369601950515e-05,-1.212023289554054e-05,0.0,2.541098841762901e-21,1.6940658945086007e-21,-0.003893624758347869,0.00014140272105578333,0.002114066854119301,0.00017170330102089792,-1.9763360657494597e-23,-4.0400776924798265e-05,-8.470329472543003e-22,-0.00020032051543239504,-4.9058086005970836e-05,1.1858461261560205e-20,-0.0025704994332045317,9.09017471713014e-05,0.00017170330102089792,0.0008186513441614807,5.734617408528179e-22,-4.2604010150964716e-21,-1.5150290892051999e-05,-0.0,-2.861721623048652e-05,-4.682817234424874e-05,5.891779801459052e-05,-2.5250485123251565e-05,-1.9763360657494597e-23,5.734617408528179e-22,1.6833656673043151e-06,4.834003943118662e-24,-3.646295595306631e-23,-0.0,-2.4349209470214264e-24,-3.127716737787339e-23,0.00014140272105578333,-1.885369601950515e-05,-4.0400776924798265e-05,-4.2604010150964716e-21,4.834003943118662e-24,5.386770226323279e-06,5.110733698097552e-22,0.0,3.088075530666897e-23,3.240231968699012e-23,9.09017471713014e-05,-1.212023289554054e-05,-8.470329472543003e-22,-1.5150290892051999e-05,-3.646295595306631e-23,5.110733698097552e-22,2.0200388917146483e-06,0.0,-4.482658548796431e-22,-3.1763735522036263e-22,0.00020032051543239504,0.0,-0.00020032051543239504,-0.0,-0.0,0.0,0.0,2.861721623048652e-05,0.0,0.0,0.00017170330102089792,2.541098841762901e-21,-4.9058086005970836e-05,-2.861721623048652e-05,-2.4349209470214264e-24,3.088075530666897e-23,-4.482658548796431e-22,0.0,8.176347364496905e-06,-1.9058241313221758e-21,8.585165051044896e-05,1.6940658945086007e-21,1.1858461261560205e-20,-4.682817234424874e-05,-3.127716737787339e-23,3.240231968699012e-23,-3.1763735522036263e-22,0.0,-1.9058241313221758e-21,3.9023475437716115e-06,16.0,8.0,14.0,0.020491398870944977,-0.0019892333075404167,-0.0036261379718780518,-0.002241716952994466,5.470938413054682e-05,0.00013130252773407847,7.878151518525556e-05,0.00018601190822664648,0.00014880952949170023,6.975446740398183e-05,-0.0019892333075404167,0.000507515505887568,0.00013130252773407847,7.878151518525556e-05,-2.3446878913091496e-05,-1.750700357661117e-05,-1.050420178216882e-05,0.0,-2.117582368135751e-21,-2.541098841762901e-21,-0.0036261379718780518,0.00013130252773407847,0.0019660990219563246,0.00014880952949170023,-8.328720231031438e-22,-3.751500480575487e-05,2.541098841762901e-21,-0.00018601190822664648,-4.251700738677755e-05,-5.082197683525802e-21,-0.002241716952994466,7.878151518525556e-05,0.00014880952949170023,0.0006587746320292354,-8.844253075714618e-22,2.856979447923547e-21,-1.212023289554054e-05,-0.0,-2.2893773348187096e-05,-3.487723370199092e-05,5.470938413054682e-05,-2.3446878913091496e-05,-8.328720231031438e-22,-8.844253075714618e-22,1.5631252381353988e-06,5.312415896610273e-23,-6.898015587596196e-23,0.0,7.120753935173331e-23,7.673744798644536e-23,0.00013130252773407847,-1.750700357661117e-05,-3.751500480575487e-05,2.856979447923547e-21,5.312415896610273e-23,5.002000762033276e-06,-4.306086487094492e-22,-0.0,2.590333053452434e-24,1.2540925707081898e-23,7.878151518525556e-05,-1.050420178216882e-05,2.541098841762901e-21,-1.212023289554054e-05,-6.898015587596196e-23,-4.306086487094492e-22,1.616030999684881e-06,0.0,1.715101369106411e-22,2.117582368135751e-22,0.00018601190822664648,0.0,-0.00018601190822664648,-0.0,0.0,-0.0,0.0,2.6573128707241267e-05,0.0,0.0,0.00014880952949170023,-2.117582368135751e-21,-4.251700738677755e-05,-2.2893773348187096e-05,7.120753935173331e-23,2.590333053452434e-24,1.715101369106411e-22,0.0,6.541078164445935e-06,8.470329472543003e-22,6.975446740398183e-05,-2.541098841762901e-21,-5.082197683525802e-21,-3.487723370199092e-05,7.673744798644536e-23,1.2540925707081898e-23,2.117582368135751e-22,0.0,8.470329472543003e-22,2.68286407845153e-06,16.0,8.0,15.0,0.01925296150147915,-0.0018612132407724857,-0.00339307589456439,-0.001972273224964738,5.1062092097708955e-05,0.00012254902685526758,6.893382669659331e-05,0.00017361111531499773,0.0001302083401242271,5.7444853155175224e-05,-0.0018612132407724857,0.00047429389087483287,0.00012254902685526758,6.893382669659331e-05,-2.188375401601661e-05,-1.633986903470941e-05,-9.191176104650367e-06,0.0,8.470329472543003e-22,8.470329472543003e-22,-0.00339307589456439,0.00012254902685526758,0.0018375058425590396,0.0001302083401242271,2.8241150987152563e-23,-3.501400715322234e-05,-8.470329472543003e-22,-0.00017361111531499773,-3.720238237292506e-05,4.235164736271502e-21,-0.001972273224964738,6.893382669659331e-05,0.0001302083401242271,0.0005380457732826471,-7.48470469567227e-22,-1.8667212681270054e-21,-9.847689398156945e-06,-0.0,-1.860119118646253e-05,-2.6513009288464673e-05,5.1062092097708955e-05,-2.188375401601661e-05,2.8241150987152563e-23,-7.48470469567227e-22,1.4589169268219848e-06,4.6529729871449237e-23,1.7185350597457847e-23,0.0,2.631972484688846e-24,2.883907284343026e-23,0.00012254902685526758,-1.633986903470941e-05,-3.501400715322234e-05,-1.8667212681270054e-21,4.6529729871449237e-23,4.668534074880881e-06,2.4941249895126996e-22,0.0,1.6671611243819904e-23,2.1967546889487024e-23,6.893382669659331e-05,-9.191176104650367e-06,-8.470329472543003e-22,-9.847689398156945e-06,1.7185350597457847e-23,2.4941249895126996e-22,1.3130252227711026e-06,0.0,-1.4378176444454393e-22,-1.0587911840678754e-22,0.00017361111531499773,0.0,-0.00017361111531499773,-0.0,0.0,0.0,0.0,2.4801587642286904e-05,0.0,0.0,0.0001302083401242271,8.470329472543003e-22,-3.720238237292506e-05,-1.860119118646253e-05,2.631972484688846e-24,1.6671611243819904e-23,-1.4378176444454393e-22,0.0,5.314625923347194e-06,-6.352747104407253e-22,5.7444853155175224e-05,8.470329472543003e-22,4.235164736271502e-21,-2.6513009288464673e-05,2.883907284343026e-23,2.1967546889487024e-23,-1.0587911840678754e-22,0.0,-6.352747104407253e-22,1.8937863615064998e-06,16.0,8.0,16.0,0.018155952915549278,-0.0017486888682469726,-0.0031881893519312143,-0.0017486888682469726,4.787071156897582e-05,0.00011488970631035045,6.0823960666311905e-05,0.00016276042151730508,0.00011488970631035045,4.787071156897582e-05,-0.0017486888682469726,0.00044515737681649625,0.00011488970631035045,6.0823960666311905e-05,-2.051601950370241e-05,-1.5318628356908448e-05,-8.1098614828079e-06,0.0,2.117582368135751e-21,-2.117582368135751e-21,-0.0031881893519312143,0.00011488970631035045,0.001724713365547359,0.00011488970631035045,2.075445583764424e-22,-3.282563193351962e-05,-4.235164736271502e-22,-0.00016276042151730508,-3.282563193351962e-05,5.082197683525802e-21,-0.0017486888682469726,6.0823960666311905e-05,0.00011488970631035045,0.00044515737681649625,-1.3372298010940908e-22,-1.9305624054131232e-21,-8.1098614828079e-06,-0.0,-1.5318628356908448e-05,-2.051601950370241e-05,4.787071156897582e-05,-2.051601950370241e-05,2.075445583764424e-22,-1.3372298010940908e-22,1.3677346260010381e-06,-2.12801887169408e-23,1.375970791703931e-23,0.0,3.0981464839703558e-24,-1.3221882273382254e-23,0.00011488970631035045,-1.5318628356908448e-05,-3.282563193351962e-05,-1.9305624054131232e-21,-2.12801887169408e-23,4.376750894152792e-06,2.514638402274322e-22,0.0,3.8815861398354625e-24,-1.8668297081024807e-23,6.0823960666311905e-05,-8.1098614828079e-06,-4.235164736271502e-22,-8.1098614828079e-06,1.375970791703931e-23,2.514638402274322e-22,1.0813148492161417e-06,0.0,-2.7548047698405795e-22,3.1763735522036263e-22,0.00016276042151730508,0.0,-0.00016276042151730508,-0.0,0.0,0.0,0.0,2.325148852833081e-05,0.0,0.0,0.00011488970631035045,2.117582368135751e-21,-3.282563193351962e-05,-1.5318628356908448e-05,3.0981464839703558e-24,3.8815861398354625e-24,-2.7548047698405795e-22,0.0,4.376750894152792e-06,-7.411538288475128e-22,4.787071156897582e-05,-2.117582368135751e-21,5.082197683525802e-21,-2.051601950370241e-05,-1.3221882273382254e-23,-1.8668297081024807e-23,3.1763735522036263e-22,0.0,-7.411538288475128e-22,1.3677346260010381e-06,16.0,9.0,3.0,0.06469309329986572,-0.007407407276332378,-0.01219919789582491,-0.027941176667809486,0.0002269426331622526,0.0004901961074210703,0.0012254902394488454,0.0006313131307251751,0.0020833334419876337,0.0034722222480922937,-0.007407407276332378,0.00199268595315516,0.0004901961074210703,0.0012254902394488454,-9.726112330099568e-05,-6.535947613883764e-05,-0.0001633986976230517,-8.639736061993863e-20,-4.336808689942018e-19,-1.110473325342612e-18,-0.01219919789582491,0.0004901961074210703,0.006116177421063185,0.0020833334419876337,-2.710505431213761e-20,-0.00012254902685526758,-5.149960319306146e-19,-0.0005411255406215787,-0.0005208333604969084,1.621720884929866e-18,-0.027941176667809486,0.0012254902394488454,0.0020833334419876337,0.06266339868307114,-8.003424144613179e-20,-5.311167480935074e-19,-0.0012254902394488454,6.68591322466465e-19,-0.0020833334419876337,-0.02083333395421505,0.0002269426331622526,-9.726112330099568e-05,-2.710505431213761e-20,-8.003424144613179e-20,6.484075129264966e-06,-3.3881317890172014e-21,-6.45862622281404e-21,6.776263578034403e-21,-1.085755502089472e-35,6.034591468834337e-20,0.0004901961074210703,-6.535947613883764e-05,-0.00012254902685526758,-5.311167480935074e-19,-3.3881317890172014e-21,1.633986903470941e-05,1.9840360423820133e-22,-1.0164395367051604e-20,5.082197683525802e-20,1.571381438735062e-19,0.0012254902394488454,-0.0001633986976230517,-5.149960319306146e-19,-0.0012254902394488454,-6.45862622281404e-21,1.9840360423820133e-22,0.0001633986976230517,4.1449102841540166e-20,1.7577213200536775e-19,-3.4507940808393317e-19,0.0006313131307251751,-8.639736061993863e-20,-0.0005411255406215787,6.68591322466465e-19,6.776263578034403e-21,-1.0164395367051604e-20,4.1449102841540166e-20,6.764069257769734e-05,-1.8634724839594607e-19,-1.4456029397296628e-19,0.0020833334419876337,-4.336808689942018e-19,-0.0005208333604969084,-0.0020833334419876337,-1.085755502089472e-35,5.082197683525802e-20,1.7577213200536775e-19,-1.8634724839594607e-19,0.0005208333604969084,-1.8741871612290133e-18,0.0034722222480922937,-1.110473325342612e-18,1.621720884929866e-18,-0.02083333395421505,6.034591468834337e-20,1.571381438735062e-19,-3.4507940808393317e-19,-1.4456029397296628e-19,-1.8741871612290133e-18,0.010416666977107525,16.0,9.0,4.0,0.05253738537430763,-0.005739379208534956,-0.009461898356676102,-0.017806371673941612,0.00017020697123371065,0.0003676470660138875,0.000735294132027775,0.0004734848625957966,0.0012499999720603228,0.0017361111240461469,-0.005739379208534956,0.0015190242556855083,0.0003676470660138875,0.000735294132027775,-7.294584793271497e-05,-4.901960710412823e-05,-9.803921420825645e-05,2.744386749103933e-19,2.439454888092385e-19,5.723994713096508e-19,-0.009461898356676102,0.0003676470660138875,0.004665258340537548,0.0012499999720603228,6.776263578034403e-21,-9.191176650347188e-05,4.607859233063394e-19,-0.000405844155466184,-0.0003124999930150807,3.430891236421905e-18,-0.017806371673941612,0.000735294132027775,0.0012499999720603228,0.024023693054914474,4.6454931721246863e-20,4.1000564154383287e-19,-0.0004901961074210703,1.7934510247213875e-18,-0.0008333333535119891,-0.0052083334885537624,0.00017020697123371065,-7.294584793271497e-05,6.776263578034403e-21,4.6454931721246863e-20,4.863056346948724e-06,-1.0587911840678754e-21,-2.1705219273391446e-21,1.2705494208814505e-21,-3.3881317890172014e-21,-8.708713393116696e-21,0.0003676470660138875,-4.901960710412823e-05,-9.191176650347188e-05,4.1000564154383287e-19,-1.0587911840678754e-21,1.2254901776032057e-05,-1.1952964223163687e-20,-4.870439446712227e-20,-1.8634724839594607e-20,-7.794092519674711e-20,0.000735294132027775,-9.803921420825645e-05,4.607859233063394e-19,-0.0004901961074210703,-2.1705219273391446e-21,-1.1952964223163687e-20,6.535947613883764e-05,-3.7753977185340686e-20,-4.421356306691226e-20,-2.642499875751965e-20,0.0004734848625957966,2.744386749103933e-19,-0.000405844155466184,1.7934510247213875e-18,1.2705494208814505e-21,-4.870439446712227e-20,-3.7753977185340686e-20,5.0730519433273e-05,-1.2027867851011065e-19,-3.1321395519594703e-19,0.0012499999720603228,2.439454888092385e-19,-0.0003124999930150807,-0.0008333333535119891,-3.3881317890172014e-21,-1.8634724839594607e-20,-4.421356306691226e-20,-1.2027867851011065e-19,0.00020833333837799728,-3.8743262579734233e-20,0.0017361111240461469,5.723994713096508e-19,3.430891236421905e-18,-0.0052083334885537624,-8.708713393116696e-21,-7.794092519674711e-20,-2.642499875751965e-20,-3.1321395519594703e-19,-3.8743262579734233e-20,0.0017361111240461469,16.0,9.0,5.0,0.04430488497018814,-0.004689542576670647,-0.0077361855655908585,-0.012366946786642075,0.00013616557407658547,0.00029411763534881175,0.0004901961074210703,0.0003787878667935729,0.0008333333535119891,0.0009920635493472219,-0.004689542576670647,0.0012282913085073233,0.00029411763534881175,0.0004901961074210703,-5.835667616338469e-05,-3.9215687138494104e-05,-6.535947613883764e-05,-1.3759464480874845e-19,1.1276503349918637e-20,-2.784866900330747e-19,-0.0077361855655908585,0.00029411763534881175,0.003773873206228018,0.0008333333535119891,-1.0164395367051604e-20,-7.352940883720294e-05,3.152326183950488e-20,-0.0003246753185521811,-0.00020833333837799728,4.970479186982273e-19,-0.012366946786642075,0.0004901961074210703,0.0008333333535119891,0.012135853990912437,-2.371692252312041e-20,1.6921777578252204e-20,-0.00024509805371053517,8.00997373485398e-20,-0.00041666667675599456,-0.0019841270986944437,0.00013616557407658547,-5.835667616338469e-05,-1.0164395367051604e-20,-2.371692252312041e-20,3.890444986609509e-06,-6.352747104407253e-22,-8.470329472543003e-22,2.484061749691172e-21,-2.1813431299619575e-21,1.0592942779013696e-20,0.00029411763534881175,-3.9215687138494104e-05,-7.352940883720294e-05,1.6921777578252204e-20,-6.352747104407253e-22,9.803921784623526e-06,-3.60696789653917e-36,2.462035884839317e-20,1.885061211322563e-21,-6.1155058078340055e-21,0.0004901961074210703,-6.535947613883764e-05,3.152326183950488e-20,-0.00024509805371053517,-8.470329472543003e-22,-3.60696789653917e-36,3.267973806941882e-05,-4.5053930909445685e-21,5.648073636939819e-21,7.916396989354358e-20,0.0003787878667935729,-1.3759464480874845e-19,-0.0003246753185521811,8.00997373485398e-20,2.484061749691172e-21,2.462035884839317e-20,-4.5053930909445685e-21,4.058441481902264e-05,4.6515270669523485e-20,-5.924778718873948e-20,0.0008333333535119891,1.1276503349918637e-20,-0.00020833333837799728,-0.00041666667675599456,-2.1813431299619575e-21,1.885061211322563e-21,5.648073636939819e-21,4.6515270669523485e-20,0.00010416666918899864,1.4685489945453692e-20,0.0009920635493472219,-2.784866900330747e-19,4.970479186982273e-19,-0.0019841270986944437,1.0592942779013696e-20,-6.1155058078340055e-21,7.916396989354358e-20,-5.924778718873948e-20,1.4685489945453692e-20,0.0004960317746736109,16.0,9.0,6.0,0.038333941251039505,-0.003966308664530516,-0.00654602749273181,-0.0090992646291852,0.0001134713165811263,0.00024509805371053517,0.00035014006425626576,0.00031565656536258757,0.0005952381179668009,0.0006200397037900984,-0.003966308664530516,0.0010313569800928235,0.00024509805371053517,0.00035014006425626576,-4.863056165049784e-05,-3.267973806941882e-05,-4.6685341658303514e-05,-6.373820822981748e-20,-2.379049248378876e-19,-1.1790834076605166e-19,-0.00654602749273181,0.00024509805371053517,0.003169695846736431,0.0005952381179668009,-4.0657581468206416e-20,-6.127451342763379e-05,-2.184571590043358e-19,-0.00027056277031078935,-0.00014880952949170023,-1.9990229845288317e-18,-0.0090992646291852,0.00035014006425626576,0.0005952381179668009,0.007049924228340387,2.0328790734103208e-20,-4.900025112283835e-19,-0.00014005602861288935,-8.469415954954015e-19,-0.0002380952355451882,-0.0009300595265813172,0.0001134713165811263,-4.863056165049784e-05,-4.0657581468206416e-20,2.0328790734103208e-20,3.242037564632483e-06,-1.6940658945086007e-21,-1.9058241313221758e-21,5.559886409339506e-21,3.104419340227883e-21,-2.8621147935770166e-21,0.00024509805371053517,-3.267973806941882e-05,-6.127451342763379e-05,-4.900025112283835e-19,-1.6940658945086007e-21,8.169934517354704e-06,7.623296525288703e-21,-6.841009848012284e-21,2.637024327837776e-20,6.335177917443597e-20,0.00035014006425626576,-4.6685341658303514e-05,-2.184571590043358e-19,-0.00014005602861288935,-1.9058241313221758e-21,7.623296525288703e-21,1.8674136299523525e-05,1.1092260985375954e-20,3.020358564505602e-20,-5.033795662346659e-20,0.00031565656536258757,-6.373820822981748e-20,-0.00027056277031078935,-8.469415954954015e-19,5.559886409339506e-21,-6.841009848012284e-21,1.1092260985375954e-20,3.382034628884867e-05,-2.6828499722145004e-20,1.6599269874058008e-19,0.0005952381179668009,-2.379049248378876e-19,-0.00014880952949170023,-0.0002380952355451882,3.104419340227883e-21,2.637024327837776e-20,3.020358564505602e-20,-2.6828499722145004e-20,5.952380888629705e-05,3.851984626616249e-20,0.0006200397037900984,-1.1790834076605166e-19,-1.9990229845288317e-18,-0.0009300595265813172,-2.8621147935770166e-21,6.335177917443597e-20,-5.033795662346659e-20,1.6599269874058008e-19,3.851984626616249e-20,0.00018601190822664648,16.0,9.0,7.0,0.03379567712545395,-0.00343720824457705,-0.005674656014889479,-0.006979458499699831,9.726112330099568e-05,0.0002100840356433764,0.00026260505546815693,0.00027056277031078935,0.00044642857392318547,0.00041335978312417865,-0.00343720824457705,0.000889022252522409,0.0002100840356433764,0.00026260505546815693,-4.1683339077280834e-05,-2.801120535877999e-05,-3.501400715322234e-05,-6.2763472005358204e-21,-4.5032788528418e-20,1.8504327570843865e-19,-0.005674656014889479,0.0002100840356433764,0.0027328261639922857,0.00044642857392318547,-3.3186479713278935e-20,-5.25210089108441e-05,-5.367387263631638e-20,-0.00023191094805952162,-0.00011160714348079637,-5.002244990455841e-19,-0.006979458499699831,0.00026260505546815693,0.00044642857392318547,0.004475957248359919,5.83095381919056e-20,-1.1141804903541333e-19,-8.753501606406644e-05,-4.405965642042396e-19,-0.00014880952949170023,-0.0004960317746736109,9.726112330099568e-05,-4.1683339077280834e-05,-3.3186479713278935e-20,5.83095381919056e-20,2.7788894385594176e-06,3.887335642102639e-22,-1.2830105454193602e-21,2.8233112178984e-21,3.1261853378892517e-21,-9.633928640747896e-21,0.0002100840356433764,-2.801120535877999e-05,-5.25210089108441e-05,-1.1141804903541333e-19,3.887335642102639e-22,7.002801339694997e-06,1.3672024260375566e-21,-1.7404521476207858e-20,4.725259959583151e-21,1.310700557788447e-20,0.00026260505546815693,-3.501400715322234e-05,-5.367387263631638e-20,-8.753501606406644e-05,-1.2830105454193602e-21,1.3672024260375566e-21,1.1671335414575879e-05,6.995392931146363e-21,-5.946203989208778e-21,-1.770023208284703e-20,0.00027056277031078935,-6.2763472005358204e-21,-0.00023191094805952162,-4.405965642042396e-19,2.8233112178984e-21,-1.7404521476207858e-20,6.995392931146363e-21,2.8988868507440202e-05,1.1760814367394167e-20,5.2182175186199173e-20,0.00044642857392318547,-4.5032788528418e-20,-0.00011160714348079637,-0.00014880952949170023,3.1261853378892517e-21,4.725259959583151e-21,-5.946203989208778e-21,1.1760814367394167e-20,3.720238237292506e-05,-8.341582526049533e-21,0.00041335978312417865,1.8504327570843865e-19,-5.002244990455841e-19,-0.0004960317746736109,-9.633928640747896e-21,1.310700557788447e-20,-1.770023208284703e-20,5.2182175186199173e-20,-8.341582526049533e-21,8.26719551696442e-05,16.0,9.0,8.0,0.030225664377212524,-0.0030330882873386145,-0.005008726846426725,-0.005524918437004089,8.510348561685532e-05,0.00018382353300694376,0.00020424836839083582,0.0002367424312978983,0.00034722223062999547,0.00028935185400769114,-0.0030330882873386145,0.0007812986150383949,0.00018382353300694376,0.00020424836839083582,-3.6472923966357484e-05,-2.4509803552064113e-05,-2.7233116270508617e-05,1.2830850845707502e-19,-9.644217668968804e-20,-3.996462383473719e-19,-0.005008726846426725,0.00018382353300694376,0.002402073470875621,0.00034722223062999547,1.5941484541845903e-20,-4.595588325173594e-05,-1.3085800835193416e-19,-0.000202922077733092,-8.680555765749887e-05,-4.975321295493005e-19,-0.005524918437004089,0.00020424836839083582,0.00034722223062999547,0.003025307320058346,-5.311874720358807e-20,-2.7006917087276437e-19,-5.835667616338469e-05,-1.6720678015995772e-19,-9.920635056914762e-05,-0.00028935185400769114,8.510348561685532e-05,-3.6472923966357484e-05,1.5941484541845903e-20,-5.311874720358807e-20,2.431528173474362e-06,-1.3185094376155996e-21,1.3691283068753525e-21,-1.1399739326750008e-21,1.1183318303519628e-21,4.877398992188253e-21,0.00018382353300694376,-2.4509803552064113e-05,-4.595588325173594e-05,-2.7006917087276437e-19,-1.3185094376155996e-21,6.127450888016028e-06,4.769739092863132e-21,-2.6139480890108206e-20,2.349540694781169e-21,3.040748889722461e-20,0.00020424836839083582,-2.7233116270508617e-05,-1.3085800835193416e-19,-5.835667616338469e-05,1.3691283068753525e-21,4.769739092863132e-21,7.780889973219018e-06,3.596002519289847e-21,1.682781987730641e-20,4.5341259042240655e-20,0.0002367424312978983,1.2830850845707502e-19,-0.000202922077733092,-1.6720678015995772e-19,-1.1399739326750008e-21,-2.6139480890108206e-20,3.596002519289847e-21,2.53652597166365e-05,8.136781007434499e-21,1.440947657715094e-20,0.00034722223062999547,-9.644217668968804e-20,-8.680555765749887e-05,-9.920635056914762e-05,1.1183318303519628e-21,2.349540694781169e-21,1.682781987730641e-20,8.136781007434499e-21,2.4801587642286904e-05,3.232400498419889e-20,0.00028935185400769114,-3.996462383473719e-19,-4.975321295493005e-19,-0.00028935185400769114,4.877398992188253e-21,3.040748889722461e-20,4.5341259042240655e-20,1.440947657715094e-20,3.232400498419889e-20,4.13359775848221e-05,16.0,9.0,9.0,0.027341993525624275,-0.0027142339386045933,-0.0044830660335719585,-0.0044830660335719585,7.564754196209833e-05,0.0001633986976230517,0.0001633986976230517,0.00021043770539108664,0.00027777778450399637,0.00021043770539108664,-0.0027142339386045933,0.000696908391546458,0.0001633986976230517,0.0001633986976230517,-3.242037564632483e-05,-2.1786492652609013e-05,-2.1786492652609013e-05,5.702599945046765e-20,-3.758834315340618e-21,4.140407319694431e-20,-0.0044830660335719585,0.0001633986976230517,0.002142892451956868,0.00027777778450399637,9.648175695888128e-21,-4.0849674405762926e-05,8.239161571902842e-21,-0.0001803751802071929,-6.944444612599909e-05,-8.02310910448738e-20,-0.0044830660335719585,0.0001633986976230517,0.00027777778450399637,0.002142892451956868,9.89332892655283e-21,3.584104527842295e-21,-4.0849674405762926e-05,-1.345404096438671e-20,-6.944444612599909e-05,-0.0001803751802071929,7.564754196209833e-05,-3.242037564632483e-05,9.648175695888128e-21,9.89332892655283e-21,2.1613584522128804e-06,8.832113831669588e-23,4.622919507048258e-37,-1.758259229789907e-21,7.271143766539858e-22,-1.6002233041460967e-21,0.0001633986976230517,-2.1786492652609013e-05,-4.0849674405762926e-05,3.584104527842295e-21,8.832113831669588e-23,5.446623163152253e-06,-1.0792320216262174e-22,-9.577417826185032e-21,-1.1610175609391276e-21,1.6753499738947277e-22,0.0001633986976230517,-2.1786492652609013e-05,8.239161571902842e-21,-4.0849674405762926e-05,4.622919507048258e-37,-1.0792320216262174e-22,5.446623163152253e-06,-6.422174942002371e-22,-4.730071581964666e-22,-6.0871049977105234e-21,0.00021043770539108664,5.702599945046765e-20,-0.0001803751802071929,-1.345404096438671e-20,-1.758259229789907e-21,-9.577417826185032e-21,-6.422174942002371e-22,2.2546897525899112e-05,-1.2374537145468765e-20,8.181924550923294e-21,0.00027777778450399637,-3.758834315340618e-21,-6.944444612599909e-05,-6.944444612599909e-05,7.271143766539858e-22,-1.1610175609391276e-21,-4.730071581964666e-22,-1.2374537145468765e-20,1.7361111531499773e-05,2.852047060403773e-21,0.00021043770539108664,4.140407319694431e-20,-8.02310910448738e-20,-0.0001803751802071929,-1.6002233041460967e-21,1.6753499738947277e-22,-6.0871049977105234e-21,8.181924550923294e-21,2.852047060403773e-21,2.2546897525899112e-05,16.0,9.0,10.0,0.02496311068534851,-0.002456179354339838,-0.004057486541569233,-0.0037110070697963238,6.808278703829274e-05,0.00014705881767440587,0.0001336898421868682,0.00018939393339678645,0.00022727272880729288,0.00015782828268129379,-0.002456179354339838,0.0006290000746957958,0.00014705881767440587,0.0001336898421868682,-2.9178338081692345e-05,-1.9607843569247052e-05,-1.7825312170316465e-05,-2.714066831491714e-20,-9.499234718014566e-21,-1.7348840164565083e-35,-0.004057486541569233,0.00014705881767440587,0.0019342850428074598,0.00022727272880729288,-7.91573278957652e-37,-3.676470441860147e-05,0.0,-0.00016233765927609056,-5.681818220182322e-05,-1.037693684050769e-19,-0.0037110070697963238,0.0001336898421868682,0.00022727272880729288,0.00157435261644423,-3.0921986857374338e-22,-9.499234718014566e-21,-2.970885361719411e-05,-1.7639517995237918e-19,-5.0505052058724687e-05,-0.00011837121564894915,6.808278703829274e-05,-2.9178338081692345e-05,-7.91573278957652e-37,-3.0921986857374338e-22,1.9452224933047546e-06,0.0,4.122931665128408e-23,8.689058853188794e-38,2.1433012753380689e-38,-0.0,0.00014705881767440587,-1.9607843569247052e-05,-3.676470441860147e-05,-9.499234718014566e-21,0.0,4.901960892311763e-06,-0.0,6.785167078729285e-21,2.3748086795036415e-21,4.337210041141271e-36,0.0001336898421868682,-1.7825312170316465e-05,0.0,-2.970885361719411e-05,4.122931665128408e-23,-0.0,3.961180482292548e-06,0.0,0.0,-0.0,0.00018939393339678645,-2.714066831491714e-20,-0.00016233765927609056,-1.7639517995237918e-19,8.689058853188794e-38,6.785167078729285e-21,0.0,2.029220740951132e-05,1.4913660931960482e-20,1.2971171050634613e-20,0.00022727272880729288,-9.499234718014566e-21,-5.681818220182322e-05,-5.0505052058724687e-05,2.1433012753380689e-38,2.3748086795036415e-21,0.0,1.4913660931960482e-20,1.2626263014681172e-05,9.533099907980103e-36,0.00015782828268129379,-1.7348840164565083e-35,-1.037693684050769e-19,-0.00011837121564894915,-0.0,4.337210041141271e-36,-0.0,1.2971171050634613e-20,9.533099907980103e-36,1.3152356586942915e-05,16.0,9.0,11.0,0.022966597229242325,-0.002243018476292491,-0.0037058419547975063,-0.003122857538983226,6.18934427620843e-05,0.0001336898421868682,0.00011140819697175175,0.000172176311025396,0.00018939393339678645,0.00012140637409174815,-0.002243018476292491,0.0005731686833314598,0.0001336898421868682,0.00011140819697175175,-2.6525762223172933e-05,-1.7825312170316465e-05,-1.4854426808597054e-05,-1.7711997111473462e-19,-1.7237375093157313e-19,-1.2631575281325235e-19,-0.0037058419547975063,0.0001336898421868682,0.0017627454362809658,0.00018939393339678645,-1.1015455649913272e-19,-3.342246054671705e-05,-9.73572581670219e-20,-0.00014757968892809004,-4.734848334919661e-05,-1.5453784991915747e-19,-0.003122857538983226,0.00011140819697175175,0.00018939393339678645,0.0011911345645785332,-8.067394286531938e-20,-1.8891859102885545e-19,-2.228163975814823e-05,-1.65687830986066e-19,-3.787878813454881e-05,-8.093757787719369e-05,6.18934427620843e-05,-2.6525762223172933e-05,-1.1015455649913272e-19,-8.067394286531938e-20,1.7683840951576713e-06,1.2368794742949735e-21,-6.245781099756139e-22,6.425347955133336e-21,7.067882710256991e-21,4.530693993254894e-21,0.0001336898421868682,-1.7825312170316465e-05,-3.342246054671705e-05,-1.8891859102885545e-19,1.2368794742949735e-21,4.456328042579116e-06,5.448746535327981e-21,1.3888097528475376e-20,9.662352472988036e-21,1.014875486800839e-20,0.00011140819697175175,-1.4854426808597054e-05,-9.73572581670219e-20,-2.228163975814823e-05,-6.245781099756139e-22,5.448746535327981e-21,2.970885361719411e-06,3.5981948710305396e-21,3.958014398523272e-21,2.5371887170020974e-21,0.000172176311025396,-1.7711997111473462e-19,-0.00014757968892809004,-1.65687830986066e-19,6.425347955133336e-21,1.3888097528475376e-20,3.5981948710305396e-21,1.8447461116011254e-05,1.0168405254317926e-20,9.802774459904581e-21,0.00018939393339678645,-1.7237375093157313e-19,-4.734848334919661e-05,-3.787878813454881e-05,7.067882710256991e-21,9.662352472988036e-21,3.958014398523272e-21,1.0168405254317926e-20,9.469697033637203e-06,5.024881913245816e-35,0.00012140637409174815,-1.2631575281325235e-19,-1.5453784991915747e-19,-8.093757787719369e-05,4.530693993254894e-21,1.014875486800839e-20,2.5371887170020974e-21,9.802774459904581e-21,5.024881913245816e-35,8.09375796961831e-06,16.0,9.0,12.0,0.02126680128276348,-0.0020639558788388968,-0.003410376375541091,-0.002664431231096387,5.673565829056315e-05,0.00012254902685526758,9.426847827853635e-05,0.00015782828268129379,0.00016025641525629908,9.5390721980948e-05,-0.0020639558788388968,0.0005264520295895636,0.00012254902685526758,9.426847827853635e-05,-2.431528082524892e-05,-1.633986903470941e-05,-1.25691303765052e-05,0.0,0.0,-0.0,-0.003410376375541091,0.00012254902685526758,0.001619188580662012,0.00016025641525629908,0.0,-3.0637256713816896e-05,0.0,-0.00013528138515539467,-4.006410381407477e-05,1.2147438101025312e-19,-0.002664431231096387,9.426847827853635e-05,0.00016025641525629908,0.0009232393349520862,-2.3786142959717215e-22,0.0,-1.7139722331194207e-05,2.24387501159064e-19,-2.9137529054423794e-05,-5.723443246097304e-05,5.673565829056315e-05,-2.431528082524892e-05,0.0,-2.3786142959717215e-22,1.6210187823162414e-06,0.0,3.171485896252622e-23,0.0,-0.0,-0.0,0.00012254902685526758,-1.633986903470941e-05,-3.0637256713816896e-05,0.0,0.0,4.084967258677352e-06,0.0,0.0,-0.0,-0.0,9.426847827853635e-05,-1.25691303765052e-05,0.0,-1.7139722331194207e-05,3.171485896252622e-23,0.0,2.2852964320918545e-06,0.0,0.0,-0.0,0.00015782828268129379,0.0,-0.00013528138515539467,2.24387501159064e-19,0.0,0.0,0.0,1.6910173144424334e-05,-1.434005802918184e-20,-1.518429762628164e-20,0.00016025641525629908,0.0,-4.006410381407477e-05,-2.9137529054423794e-05,-0.0,-0.0,0.0,-1.434005802918184e-20,7.2843822636059485e-06,1.2876493114630108e-35,9.5390721980948e-05,-0.0,1.2147438101025312e-19,-5.723443246097304e-05,-0.0,-0.0,-0.0,-1.518429762628164e-20,1.2876493114630108e-35,5.203130058362149e-06,16.0,9.0,13.0,0.01980195753276348,-0.0019114055903628469,-0.0031586061231791973,-0.002300150925293565,5.237137520452961e-05,0.0001131221724790521,8.080155384959653e-05,0.00014568764891009778,0.00013736264372710139,7.631257903994992e-05,-0.0019114055903628469,0.00048678446910344064,0.0001131221724790521,8.080155384959653e-05,-2.2444875867222436e-05,-1.508295645180624e-05,-1.0773540452646557e-05,-3.6757016459591443e-19,-1.2558082868839313e-19,-3.134021904840911e-20,-0.0031586061231791973,0.0001131221724790521,0.0014972771750763059,0.00013736264372710139,-2.5620660608335303e-19,-2.8280543119763024e-05,-6.310395457044538e-20,-0.00012487512140069157,-3.4340660931775346e-05,1.5754812818929986e-19,-0.002300150925293565,8.080155384959653e-05,0.00013736264372710139,0.0007302337908186018,-6.45631528697772e-20,-4.968639275574839e-21,-1.3466925338434521e-05,2.74606670122924e-19,-2.2893773348187096e-05,-4.162504046689719e-05,5.237137520452961e-05,-2.2444875867222436e-05,-2.5620660608335303e-19,-6.45631528697772e-20,1.496325012340094e-06,6.802837563006236e-21,2.402680990685949e-21,1.9520819452572164e-20,6.176291869849932e-21,1.7212964137019693e-21,0.0001131221724790521,-1.508295645180624e-05,-2.8280543119763024e-05,-4.968639275574839e-21,6.802837563006236e-21,3.77073911295156e-06,1.9949199247369114e-21,1.2460411256190127e-20,2.557939520098206e-21,-1.5658078650715241e-21,8.080155384959653e-05,-1.0773540452646557e-05,-6.310395457044538e-20,-1.3466925338434521e-05,2.402680990685949e-21,1.9949199247369114e-21,1.7955900375454803e-06,3.1378292782599993e-21,2.80579663777987e-21,1.4823076576950256e-21,0.00014568764891009778,-3.6757016459591443e-19,-0.00012487512140069157,2.74606670122924e-19,1.9520819452572164e-20,1.2460411256190127e-20,3.1378292782599993e-21,1.5609390175086446e-05,-1.3467811421322444e-20,-1.8485231330921254e-20,0.00013736264372710139,-1.2558082868839313e-19,-3.4340660931775346e-05,-2.2893773348187096e-05,6.176291869849932e-21,2.557939520098206e-21,2.80579663777987e-21,-1.3467811421322444e-20,5.723443337046774e-06,2.117582368135751e-22,7.631257903994992e-05,-3.134021904840911e-20,1.5754812818929986e-19,-4.162504046689719e-05,1.7212964137019693e-21,-1.5658078650715241e-21,1.4823076576950256e-21,-1.8485231330921254e-20,2.117582368135751e-22,3.4687534480326576e-06,16.0,9.0,14.0,0.018526379019021988,-0.0017798786284402013,-0.002941494807600975,-0.0020058648660779,4.863056165049784e-05,0.0001050420178216882,7.002801430644467e-05,0.00013528138515539467,0.0001190476177725941,6.200397183420137e-05,-0.0017798786284402013,0.0004526810662355274,0.0001050420178216882,7.002801430644467e-05,-2.0841669538640417e-05,-1.4005602679389995e-05,-9.337068149761762e-06,-1.938619257670489e-20,-4.658681209898652e-21,-1.2705494208814505e-21,-0.002941494807600975,0.0001050420178216882,0.0013924547238275409,0.0001190476177725941,5.31840934622378e-22,-2.626050445542205e-05,-4.235164736271502e-22,-0.00011595547402976081,-2.9761904443148524e-05,7.792703114739563e-20,-0.0020058648660779,7.002801430644467e-05,0.0001190476177725941,0.0005876124487258494,8.211953166058369e-22,-4.84188919477886e-21,-1.0773540452646557e-05,1.5642230952622105e-19,-1.8315018678549677e-05,-3.100198591710068e-05,4.863056165049784e-05,-2.0841669538640417e-05,5.31840934622378e-22,8.211953166058369e-22,1.3894447192797088e-06,-1.0648384024406824e-22,-9.696199250635027e-23,1.4282443127550118e-37,-1.5373302388285353e-23,-1.1500255667748908e-23,0.0001050420178216882,-1.4005602679389995e-05,-2.626050445542205e-05,-4.84188919477886e-21,-1.0648384024406824e-22,3.5014006698474986e-06,-5.495273854440504e-23,4.846548144176223e-21,1.2345007241887083e-21,-5.793125880804883e-24,7.002801430644467e-05,-9.337068149761762e-06,-4.235164736271502e-22,-1.0773540452646557e-05,-9.696199250635027e-23,-5.495273854440504e-23,1.4364720755111193e-06,-1.2445164389317655e-36,3.872983296119665e-23,3.1763735522036263e-22,0.00013528138515539467,-1.938619257670489e-20,-0.00011595547402976081,1.5642230952622105e-19,1.4282443127550118e-37,4.846548144176223e-21,-1.2445164389317655e-36,1.4494434253720101e-05,-7.726072100811283e-21,-9.65523258048897e-21,0.0001190476177725941,-4.658681209898652e-21,-2.9761904443148524e-05,-1.8315018678549677e-05,-1.5373302388285353e-23,1.2345007241887083e-21,3.872983296119665e-23,-7.726072100811283e-21,4.578754669637419e-06,0.0,6.200397183420137e-05,-1.2705494208814505e-21,7.792703114739563e-20,-3.100198591710068e-05,-1.1500255667748908e-23,-5.793125880804883e-24,3.1763735522036263e-22,-9.65523258048897e-21,0.0,2.384768094998435e-06,16.0,9.0,15.0,0.01740553043782711,-0.0016653049970045686,-0.002752339467406273,-0.0017647058703005314,4.538852590485476e-05,9.803921420825645e-05,6.127451342763379e-05,0.00012626263196580112,0.00010416666918899864,5.1062092097708955e-05,-0.0016653049970045686,0.00042304699309170246,9.803921420825645e-05,6.127451342763379e-05,-1.9452225387794897e-05,-1.3071895409666467e-05,-8.169934517354704e-06,-9.027796614315168e-36,2.117582368135751e-22,-5.505714157152952e-21,-0.002752339467406273,9.803921420825645e-05,0.0013013605494052172,0.00010416666918899864,5.814997917149131e-22,-2.4509803552064113e-05,-4.235164736271502e-22,-0.00010822511103469878,-2.604166729724966e-05,-3.218725199566341e-20,-0.0017647058703005314,6.127451342763379e-05,0.00010416666918899864,0.00047991631436161697,5.949039142680368e-22,4.1626104851368113e-22,-8.753501788305584e-06,-7.861960750230126e-20,-1.4880952221574262e-05,-2.3567119569634087e-05,4.538852590485476e-05,-1.9452225387794897e-05,5.814997917149131e-22,5.949039142680368e-22,1.2968150713277282e-06,-1.0440651073424441e-22,2.4275424154305322e-23,-5.211241214829775e-38,-2.4897706035336244e-23,-1.49996252883694e-23,9.803921420825645e-05,-1.3071895409666467e-05,-2.4509803552064113e-05,4.1626104851368113e-22,-1.0440651073424441e-22,3.267973852416617e-06,-3.46097923135137e-23,-2.0180509765191738e-38,-6.332937481790832e-24,-8.680527582299767e-24,6.127451342763379e-05,-8.169934517354704e-06,-4.235164736271502e-22,-8.753501788305584e-06,2.4275424154305322e-23,-3.46097923135137e-23,1.1671335187202203e-06,1.697415923235343e-36,-9.966644592544127e-24,7.411538288475128e-22,0.00012626263196580112,-9.027796614315168e-36,-0.00010822511103469878,-7.861960750230126e-20,-5.211241214829775e-38,-2.0180509765191738e-38,1.697415923235343e-36,1.3528138879337348e-05,5.858938050171568e-21,3.941703834716275e-21,0.00010416666918899864,2.117582368135751e-22,-2.604166729724966e-05,-1.4880952221574262e-05,-2.4897706035336244e-23,-6.332937481790832e-24,-9.966644592544127e-24,5.858938050171568e-21,3.7202380553935654e-06,0.0,5.1062092097708955e-05,-5.505714157152952e-21,-3.218725199566341e-20,-2.3567119569634087e-05,-1.49996252883694e-23,-8.680527582299767e-24,7.411538288475128e-22,3.941703834716275e-21,0.0,1.6833656673043151e-06,16.0,9.0,16.0,0.01641281321644783,-0.0015646026004105806,-0.002586062764748931,-0.0015646026004105806,4.255174280842766e-05,9.191176650347188e-05,5.406574564403854e-05,0.00011837121564894915,9.191176650347188e-05,4.255174280842766e-05,-0.0015646026004105806,0.0003970570978708565,9.191176650347188e-05,5.406574564403854e-05,-1.8236461983178742e-05,-1.2254901776032057e-05,-7.2087659646058455e-06,-2.407412430484045e-35,0.0,3.8116482626443515e-21,-0.002586062764748931,9.191176650347188e-05,0.0012214615708217025,9.191176650347188e-05,1.1797701856731987e-21,-2.297794162586797e-05,-4.235164736271502e-22,-0.000101461038866546,-2.297794162586797e-05,5.166900978251232e-20,-0.0015646026004105806,5.406574564403854e-05,9.191176650347188e-05,0.0003970570978708565,2.291567723375035e-22,-0.0,-7.2087659646058455e-06,1.1590823096959551e-19,-1.2254901776032057e-05,-1.8236461983178742e-05,4.255174280842766e-05,-1.8236461983178742e-05,1.1797701856731987e-21,2.291567723375035e-22,1.215764086737181e-06,-9.425151692310881e-23,6.33387169031784e-25,-6.238788155346806e-38,-3.827417822487104e-24,-8.946107072373283e-24,9.191176650347188e-05,-1.2254901776032057e-05,-2.297794162586797e-05,-0.0,-9.425151692310881e-23,3.063725444008014e-06,-7.79518819950932e-25,-1.090604362476753e-37,9.408745594292818e-24,1.1262892943394242e-23,5.406574564403854e-05,-7.2087659646058455e-06,-4.235164736271502e-22,-7.2087659646058455e-06,6.33387169031784e-25,-7.79518819950932e-25,9.611687801225344e-07,2.651715513250937e-36,3.3515427667805935e-23,-5.293955920339377e-22,0.00011837121564894915,-2.407412430484045e-35,-0.000101461038866546,1.1590823096959551e-19,-6.238788155346806e-38,-1.090604362476753e-37,2.651715513250937e-36,1.268262985831825e-05,-4.523444853785118e-21,-6.520963248478504e-21,9.191176650347188e-05,0.0,-2.297794162586797e-05,-1.2254901776032057e-05,-3.827417822487104e-24,9.408745594292818e-24,3.3515427667805935e-23,-4.523444853785118e-21,3.063725444008014e-06,1.0587911840678754e-22,4.255174280842766e-05,3.8116482626443515e-21,5.166900978251232e-20,-1.8236461983178742e-05,-8.946107072373283e-24,1.1262892943394242e-23,-5.293955920339377e-22,-6.520963248478504e-21,1.0587911840678754e-22,1.215764086737181e-06,16.0,10.0,3.0,0.05918746441602707,-0.006706773769110441,-0.010110294446349144,-0.025317512452602386,0.00020424836839083582,0.00040106952656060457,0.001102941227145493,0.0004734848625957966,0.001704545458778739,0.0031250000465661287,-0.006706773769110441,0.0017987649189308286,0.00040106952656060457,0.001102941227145493,-8.753501606406644e-05,-5.347593469195999e-05,-0.00014705881767440587,-0.0,-2.0328790734103208e-20,0.0,-0.010110294446349144,0.00040106952656060457,0.004495785105973482,0.001704545458778739,6.962055290638488e-21,-8.912655903259292e-05,0.0,-0.00035511364694684744,-0.0003787878667935729,4.336808689942018e-19,-0.025317512452602386,0.001102941227145493,0.001704545458778739,0.056567512452602386,-1.4095448443587692e-20,2.0970405008457328e-20,-0.001102941227145493,-0.0,-0.001704545458778739,-0.01875000074505806,0.00020424836839083582,-8.753501606406644e-05,6.962055290638488e-21,-1.4095448443587692e-20,5.835667707287939e-06,-8.470329472543003e-22,2.576871828413825e-22,0.0,-1.8579139705972367e-22,6.13437101879647e-21,0.00040106952656060457,-5.347593469195999e-05,-8.912655903259292e-05,2.0970405008457328e-20,-8.470329472543003e-22,1.1883541446877643e-05,-3.522693637502335e-21,0.0,3.09634140455842e-22,2.642367882283126e-21,0.001102941227145493,-0.00014705881767440587,0.0,-0.001102941227145493,2.576871828413825e-22,-3.522693637502335e-21,0.00014705881767440587,0.0,6.776263578034403e-21,-1.6263032587282567e-19,0.0004734848625957966,-0.0,-0.00035511364694684744,-0.0,0.0,0.0,0.0,3.9457070670323446e-05,0.0,0.0,0.001704545458778739,-2.0328790734103208e-20,-0.0003787878667935729,-0.001704545458778739,-1.8579139705972367e-22,3.09634140455842e-22,6.776263578034403e-21,0.0,0.0003787878667935729,-5.421010862427522e-19,0.0031250000465661287,0.0,4.336808689942018e-19,-0.01875000074505806,6.13437101879647e-21,2.642367882283126e-21,-1.6263032587282567e-19,0.0,-5.421010862427522e-19,0.00937500037252903,16.0,10.0,4.0,0.04803197458386421,-0.005195521283894777,-0.007838401943445206,-0.01612800732254982,0.00015318627993110567,0.00030080214492045343,0.0006617647013626993,0.00035511364694684744,0.0010227272287011147,0.0015625000232830644,-0.005195521283894777,0.0013711325591430068,0.00030080214492045343,0.0006617647013626993,-6.565126386703923e-05,-4.0106951928464696e-05,-8.823529060464352e-05,0.0,-2.794549566388563e-20,-1.7347235018262012e-19,-0.007838401943445206,0.00030080214492045343,0.0034286570735275745,0.0010227272287011147,-7.603863839345459e-22,-6.68449210934341e-05,-2.919644437776191e-21,-0.0002663352352101356,-0.00022727272880729288,-2.5521119761372203e-19,-0.01612800732254982,0.0006617647013626993,0.0010227272287011147,0.021689506247639656,-5.169713715451339e-20,-5.4564359222917426e-21,-0.00044117646757513285,0.0,-0.0006818181718699634,-0.004687500186264515,0.00015318627993110567,-6.565126386703923e-05,-7.603863839345459e-22,-5.169713715451339e-20,4.376750894152792e-06,7.239279385634038e-38,-2.9899224276134227e-22,-0.0,5.069242391273313e-22,1.6772465015337847e-20,0.00030080214492045343,-4.0106951928464696e-05,-6.68449210934341e-05,-5.4564359222917426e-21,7.239279385634038e-38,8.912656085158233e-06,-1.99993187992303e-21,0.0,3.5334364841491543e-22,6.353976970112928e-21,0.0006617647013626993,-8.823529060464352e-05,-2.919644437776191e-21,-0.00044117646757513285,-2.9899224276134227e-22,-1.99993187992303e-21,5.8823530707741156e-05,0.0,1.2122554020195531e-20,-8.366179678604335e-20,0.00035511364694684744,0.0,-0.0002663352352101356,0.0,-0.0,0.0,0.0,2.9592803912237287e-05,0.0,-0.0,0.0010227272287011147,-2.794549566388563e-20,-0.00022727272880729288,-0.0006818181718699634,5.069242391273313e-22,3.5334364841491543e-22,1.2122554020195531e-20,0.0,0.00015151515253819525,1.3837090211484118e-19,0.0015625000232830644,-1.7347235018262012e-19,-2.5521119761372203e-19,-0.004687500186264515,1.6772465015337847e-20,6.353976970112928e-21,-8.366179678604335e-20,-0.0,1.3837090211484118e-19,0.0015625000232830644,16.0,10.0,5.0,0.040486693382263184,-0.004244652576744556,-0.006407085340470076,-0.011198434047400951,0.00012254902685526758,0.00024064170429483056,0.00044117646757513285,0.0002840909000951797,0.0006818181718699634,0.0008928571478463709,-0.004244652576744556,0.0011086707236245275,0.00024064170429483056,0.00044117646757513285,-5.25210089108441e-05,-3.208556154277176e-05,-5.8823530707741156e-05,0.0,-7.35943318002639e-21,-0.0,-0.006407085340470076,0.00024064170429483056,0.0027732285670936108,0.0006818181718699634,-2.8408476084432375e-21,-5.347593469195999e-05,-8.987259194251826e-21,-0.00021306818234734237,-0.00015151515253819525,-4.6139139366533406e-20,-0.011198434047400951,0.00044117646757513285,0.0006818181718699634,0.010956360027194023,-4.5859773654927826e-21,-1.2778694846264046e-20,-0.00022058823378756642,0.0,-0.0003409090859349817,-0.0017857142956927419,0.00012254902685526758,-5.25210089108441e-05,-2.8408476084432375e-21,-4.5859773654927826e-21,3.5014006698474986e-06,1.2077162281005116e-38,8.822268216483705e-23,0.0,5.733908064802205e-22,-0.0,0.00024064170429483056,-3.208556154277176e-05,-5.347593469195999e-05,-1.2778694846264046e-20,1.2077162281005116e-38,7.130124686227646e-06,1.559672571956371e-21,0.0,2.3075905612109046e-22,-0.0,0.00044117646757513285,-5.8823530707741156e-05,-8.987259194251826e-21,-0.00022058823378756642,8.822268216483705e-23,1.559672571956371e-21,2.9411765353870578e-05,0.0,-1.4610214894124232e-21,-0.0,0.0002840909000951797,0.0,-0.00021306818234734237,0.0,0.0,0.0,0.0,2.3674241674598306e-05,0.0,-0.0,0.0006818181718699634,-7.35943318002639e-21,-0.00015151515253819525,-0.0003409090859349817,5.733908064802205e-22,2.3075905612109046e-22,-1.4610214894124232e-21,0.0,7.575757626909763e-05,2.3069569683266703e-20,0.0008928571478463709,-0.0,-4.6139139366533406e-20,-0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,2.3069569683266703e-20,0.00044642857392318547,16.0,10.0,6.0,0.0350189134478569,-0.0035897314082831144,-0.005420406814664602,-0.008238039910793304,0.00010212418419541791,0.00020053476328030229,0.00031512606074102223,0.0002367424312978983,0.0004870129923801869,0.0005580357392318547,-0.0035897314082831144,0.00093089509755373,0.00020053476328030229,0.00031512606074102223,-4.376750803203322e-05,-2.6737967345979996e-05,-4.201680712867528e-05,0.0,0.0,-0.0,-0.005420406814664602,0.00020053476328030229,0.002329061273485422,0.0004870129923801869,-5.250234598399387e-22,-4.456327951629646e-05,6.776263578034403e-21,-0.00017755682347342372,-0.00010822511103469878,-0.0,-0.008238039910793304,0.00031512606074102223,0.0004870129923801869,0.006364412140101194,1.5123537413659856e-21,6.776263578034403e-21,-0.00012605042138602585,0.0,-0.00019480519404169172,-0.0008370535797439516,0.00010212418419541791,-4.376750803203322e-05,-5.250234598399387e-22,1.5123537413659856e-21,2.9178338536439696e-06,1.5284785883832313e-22,4.535359348202807e-24,0.0,0.0,-0.0,0.00020053476328030229,-2.6737967345979996e-05,-4.456327951629646e-05,6.776263578034403e-21,1.5284785883832313e-22,5.941770723438822e-06,-6.352747104407253e-22,0.0,0.0,-0.0,0.00031512606074102223,-4.201680712867528e-05,6.776263578034403e-21,-0.00012605042138602585,4.535359348202807e-24,-6.352747104407253e-22,1.6806723579065874e-05,0.0,0.0,-0.0,0.0002367424312978983,0.0,-0.00017755682347342372,0.0,0.0,0.0,0.0,1.9728535335161723e-05,0.0,-0.0,0.0004870129923801869,0.0,-0.00010822511103469878,-0.00019480519404169172,0.0,0.0,0.0,0.0,4.329004150349647e-05,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0008370535797439516,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,16.0,10.0,7.0,0.030865641310811043,-0.003110676072537899,-0.0046982429921627045,-0.006318038795143366,8.753501606406644e-05,0.00017188693163916469,0.00023634453827980906,0.000202922077733092,0.00036525973700918257,0.00037202381645329297,-0.003110676072537899,0.0008024118724279106,0.00017188693163916469,0.00023634453827980906,-3.751500480575487e-05,-2.2918258764548227e-05,-3.151260534650646e-05,0.0,0.0,-0.0,-0.0046982429921627045,0.00017188693163916469,0.0020079337991774082,0.00036525973700918257,7.968747161494365e-39,-3.819709672825411e-05,1.928384351618566e-20,-0.0001521915546618402,-8.116882963804528e-05,-0.0,-0.006318038795143366,0.00023634453827980906,0.00036525973700918257,0.004040536470711231,-3.255522932941454e-23,1.928384351618566e-20,-7.878151518525556e-05,0.0,-0.00012175324809504673,-0.00044642857392318547,8.753501606406644e-05,-3.751500480575487e-05,7.968747161494365e-39,-3.255522932941454e-23,2.501000381016638e-06,-1.0624995281126844e-39,4.340697270217302e-24,0.0,0.0,-0.0,0.00017188693163916469,-2.2918258764548227e-05,-3.819709672825411e-05,1.928384351618566e-20,-1.0624995281126844e-39,5.092946139484411e-06,-2.5711790547120645e-21,0.0,0.0,-0.0,0.00023634453827980906,-3.151260534650646e-05,1.928384351618566e-20,-7.878151518525556e-05,4.340697270217302e-24,-2.5711790547120645e-21,1.050420178216882e-05,0.0,0.0,-0.0,0.000202922077733092,0.0,-0.0001521915546618402,0.0,0.0,0.0,0.0,1.6910173144424334e-05,0.0,-0.0,0.00036525973700918257,0.0,-8.116882963804528e-05,-0.00012175324809504673,0.0,0.0,0.0,0.0,2.7056277758674696e-05,-0.0,0.00037202381645329297,-0.0,-0.0,-0.00044642857392318547,-0.0,-0.0,-0.0,-0.0,-0.0,7.440476474585012e-05,16.0,10.0,8.0,0.027599988505244255,-0.00274481950327754,-0.004146473947912455,-0.0050008357502520084,7.659313996555284e-05,0.00015040107246022671,0.00018382353300694376,0.00017755682347342372,0.0002840909000951797,0.0002604166802484542,-0.00274481950327754,0.000705174112226814,0.00015040107246022671,0.00018382353300694376,-3.282563193351962e-05,-2.0053475964232348e-05,-2.4509803552064113e-05,0.0,-1.1874042791673032e-20,-3.809588712166065e-20,-0.004146473947912455,0.00015040107246022671,0.0017648335779085755,0.0002840909000951797,2.5112033589662243e-38,-3.342246054671705e-05,-8.468154892260784e-21,-0.0001331676176050678,-6.313131598290056e-05,-1.3162157469936932e-35,-0.0050008357502520084,0.00018382353300694376,0.0002840909000951797,0.002730893436819315,5.358048281424815e-22,3.405887899412248e-21,-5.25210089108441e-05,0.0,-8.116882963804528e-05,-0.0002604166802484542,7.659313996555284e-05,-3.282563193351962e-05,2.5112033589662243e-38,5.358048281424815e-22,2.188375447076396e-06,4.632790813950348e-39,-7.14406445937825e-23,0.0,-1.7102274626012484e-38,-1.0923388336639557e-37,0.00015040107246022671,-2.0053475964232348e-05,-3.342246054671705e-05,3.405887899412248e-21,4.632790813950348e-39,4.456328042579116e-06,-4.541184202463651e-22,0.0,-2.2000262575634767e-37,-7.058417940687089e-37,0.00018382353300694376,-2.4509803552064113e-05,-8.468154892260784e-21,-5.25210089108441e-05,-7.14406445937825e-23,-4.541184202463651e-22,7.002801339694997e-06,0.0,3.3925835393646425e-21,1.088453929301641e-20,0.00017755682347342372,0.0,-0.0001331676176050678,0.0,0.0,0.0,0.0,1.4796401956118643e-05,0.0,-0.0,0.0002840909000951797,-1.1874042791673032e-20,-6.313131598290056e-05,-8.116882963804528e-05,-1.7102274626012484e-38,-2.2000262575634767e-37,3.3925835393646425e-21,0.0,1.803751729312353e-05,5.2731342810799086e-36,0.0002604166802484542,-3.809588712166065e-20,-1.3162157469936932e-35,-0.0002604166802484542,-1.0923388336639557e-37,-7.058417940687089e-37,1.088453929301641e-20,-0.0,5.2731342810799086e-36,3.720238237292506e-05,16.0,10.0,9.0,0.02496311068534851,-0.002456179354339838,-0.0037110070697963238,-0.004057486541569233,6.808278703829274e-05,0.0001336898421868682,0.00014705881767440587,0.00015782828268129379,0.00022727272880729288,0.00018939393339678645,-0.002456179354339838,0.0006290000746957958,0.0001336898421868682,0.00014705881767440587,-2.9178338081692345e-05,-1.7825312170316465e-05,-1.9607843569247052e-05,0.0,-9.499234718014566e-21,-2.714066831491714e-20,-0.0037110070697963238,0.0001336898421868682,0.00157435261644423,0.00022727272880729288,-1.2465721325685423e-37,-2.970885361719411e-05,-7.247564272320695e-21,-0.00011837121564894915,-5.0505052058724687e-05,-1.0031890773530771e-35,-0.004057486541569233,0.00014705881767440587,0.00022727272880729288,0.0019342850428074598,-7.596220124272666e-24,2.2516704456938707e-21,-3.676470441860147e-05,0.0,-5.681818220182322e-05,-0.00016233765927609056,6.808278703829274e-05,-2.9178338081692345e-05,-1.2465721325685423e-37,-7.596220124272666e-24,1.9452224933047546e-06,-6.203127912026668e-41,1.0128293630507038e-24,-0.0,3.1280613889349447e-38,8.689058853188794e-38,0.0001336898421868682,-1.7825312170316465e-05,-2.970885361719411e-05,2.2516704456938707e-21,-6.203127912026668e-41,3.961180482292548e-06,-3.0022271431219324e-22,0.0,-1.4544618222953891e-37,-4.155605078439538e-37,0.00014705881767440587,-1.9607843569247052e-05,-7.247564272320695e-21,-3.676470441860147e-05,1.0128293630507038e-24,-3.0022271431219324e-22,4.901960892311763e-06,0.0,2.3748086795036415e-21,6.785167078729285e-21,0.00015782828268129379,0.0,-0.00011837121564894915,0.0,-0.0,0.0,0.0,1.3152356586942915e-05,0.0,-0.0,0.00022727272880729288,-9.499234718014566e-21,-5.0505052058724687e-05,-5.681818220182322e-05,3.1280613889349447e-38,-1.4544618222953891e-37,2.3748086795036415e-21,0.0,1.2626263014681172e-05,3.2871486287745245e-36,0.00018939393339678645,-2.714066831491714e-20,-1.0031890773530771e-35,-0.00016233765927609056,8.689058853188794e-38,-4.155605078439538e-37,6.785167078729285e-21,-0.0,3.2871486287745245e-36,2.029220740951132e-05,16.0,10.0,10.0,0.02278844639658928,-0.002222593640908599,-0.003358501475304365,-0.003358501475304365,6.127451342763379e-05,0.00012032085214741528,0.00012032085214741528,0.00014204545004758984,0.0001859504118328914,0.00014204545004758984,-0.002222593640908599,0.0005677043809555471,0.00012032085214741528,0.00012032085214741528,-2.626050445542205e-05,-1.604278077138588e-05,-1.604278077138588e-05,0.0,0.0,-0.0,-0.003358501475304365,0.00012032085214741528,0.0014210495864972472,0.0001859504118328914,-1.484255348959129e-21,-2.6737967345979996e-05,-4.021027143506486e-21,-0.00010653409117367119,-4.132231333642267e-05,-0.0,-0.003358501475304365,0.00012032085214741528,0.0001859504118328914,0.0014210495864972472,-1.0910934351713164e-21,-4.021027143506486e-21,-2.6737967345979996e-05,0.0,-4.132231333642267e-05,-0.00010653409117367119,6.127451342763379e-05,-2.626050445542205e-05,-1.484255348959129e-21,-1.0910934351713164e-21,1.7507003349237493e-06,1.979007148774538e-22,1.454791280553154e-22,0.0,0.0,-0.0,0.00012032085214741528,-1.604278077138588e-05,-2.6737967345979996e-05,-4.021027143506486e-21,1.979007148774538e-22,3.565062343113823e-06,5.361369322726923e-22,0.0,0.0,-0.0,0.00012032085214741528,-1.604278077138588e-05,-4.021027143506486e-21,-2.6737967345979996e-05,1.454791280553154e-22,5.361369322726923e-22,3.565062343113823e-06,0.0,0.0,-0.0,0.00014204545004758984,0.0,-0.00010653409117367119,0.0,0.0,0.0,0.0,1.1837120837299153e-05,0.0,-0.0,0.0001859504118328914,0.0,-4.132231333642267e-05,-4.132231333642267e-05,0.0,0.0,0.0,0.0,9.182736903312616e-06,-0.0,0.00014204545004758984,-0.0,-0.0,-0.00010653409117367119,-0.0,-0.0,-0.0,-0.0,-0.0,1.1837120837299153e-05,16.0,10.0,11.0,0.020963750779628754,-0.0020296548027545214,-0.0030672703869640827,-0.0028260676190257072,5.5704098485875875e-05,0.00010938259947579354,0.00010026738164015114,0.00012913222599308938,0.0001549586741020903,0.00010926573304459453,-0.0020296548027545214,0.000517310225404799,0.00010938259947579354,0.00010026738164015114,-2.387318636465352e-05,-1.4584345990442671e-05,-1.3368983672989998e-05,1.8215861256913068e-20,6.4767506870756146e-21,-0.0,-0.0030672703869640827,0.00010938259947579354,0.0012949936790391803,0.0001549586741020903,-2.834184213905304e-37,-2.430724271107465e-05,-2.246197240381026e-21,-9.684917313279584e-05,-3.443526293267496e-05,-0.0,-0.0028260676190257072,0.00010026738164015114,0.0001549586741020903,0.0010751202935352921,5.648825692750646e-22,4.230553446694589e-21,-2.0053475964232348e-05,-5.2839651299080416e-36,-3.09917340928223e-05,-7.284382445504889e-05,5.5704098485875875e-05,-2.387318636465352e-05,-2.834184213905304e-37,5.648825692750646e-22,1.591545697010588e-06,-8.436360459039557e-39,-7.531767506189031e-23,5.912742436458493e-39,5.869529194415644e-38,-0.0,0.00010938259947579354,-1.4584345990442671e-05,-2.430724271107465e-05,4.230553446694589e-21,-8.436360459039557e-39,3.2409657251264434e-06,2.9949294855510415e-22,-4.047969078448063e-21,-1.4392779080225375e-21,-0.0,0.00010026738164015114,-1.3368983672989998e-05,-2.246197240381026e-21,-2.0053475964232348e-05,-7.531767506189031e-23,2.9949294855510415e-22,2.673796871022205e-06,-3.7406698411807536e-37,-1.3300158687950165e-37,-0.0,0.00012913222599308938,1.8215861256913068e-20,-9.684917313279584e-05,-5.2839651299080416e-36,5.912742436458493e-39,-4.047969078448063e-21,-3.7406698411807536e-37,1.076101943908725e-05,1.7976593895454865e-36,-0.0,0.0001549586741020903,6.4767506870756146e-21,-3.443526293267496e-05,-3.09917340928223e-05,5.869529194415644e-38,-1.4392779080225375e-21,-1.3300158687950165e-37,1.7976593895454865e-36,6.887052222737111e-06,-0.0,0.00010926573304459453,-0.0,-0.0,-7.284382445504889e-05,-0.0,-0.0,-0.0,-0.0,-0.0,7.2843822636059485e-06,16.0,10.0,12.0,0.019410543143749237,-0.0018675870960578322,-0.0028225909918546677,-0.002411099849268794,5.1062092097708955e-05,0.00010026738164015114,8.484163117827848e-05,0.00011837121564894915,0.00013111888256389648,8.585165051044896e-05,-0.0018675870960578322,0.0004751437227241695,0.00010026738164015114,8.484163117827848e-05,-2.188375401601661e-05,-1.3368983672989998e-05,-1.1312216884107329e-05,0.0,0.0,-0.0,-0.0028225909918546677,0.00010026738164015114,0.0011895056813955307,0.00013111888256389648,-1.4482770513932451e-37,-2.228163975814823e-05,1.8339395915415818e-21,-8.877841173671186e-05,-2.9137529054423794e-05,-0.0,-0.002411099849268794,8.484163117827848e-05,0.00013111888256389648,0.0008332993602380157,1.2181840009557638e-21,1.8339395915415818e-21,-1.5425750461872667e-05,0.0,-2.3839796995162033e-05,-5.1510989578673616e-05,5.1062092097708955e-05,-2.188375401601661e-05,-1.4482770513932451e-37,1.2181840009557638e-21,1.4589169268219848e-06,1.9310360872083064e-38,-1.6242454187528483e-22,0.0,0.0,-0.0,0.00010026738164015114,-1.3368983672989998e-05,-2.228163975814823e-05,1.8339395915415818e-21,1.9310360872083064e-38,2.970885361719411e-06,-2.445252973841468e-22,0.0,0.0,-0.0,8.484163117827848e-05,-1.1312216884107329e-05,1.8339395915415818e-21,-1.5425750461872667e-05,-1.6242454187528483e-22,-2.445252973841468e-22,2.056766788882669e-06,0.0,0.0,-0.0,0.00011837121564894915,0.0,-8.877841173671186e-05,0.0,0.0,0.0,0.0,9.864267667580862e-06,0.0,-0.0,0.00013111888256389648,0.0,-2.9137529054423794e-05,-2.3839796995162033e-05,0.0,0.0,0.0,0.0,5.2977325140091125e-06,-0.0,8.585165051044896e-05,-0.0,-0.0,-5.1510989578673616e-05,-0.0,-0.0,-0.0,-0.0,-0.0,4.682817234424874e-06,16.0,10.0,13.0,0.01807224564254284,-0.0017295205034315586,-0.002614113735035062,-0.00208137440495193,4.7134239139268175e-05,9.2554502771236e-05,7.272139919223264e-05,0.00010926573304459453,0.00011238761362619698,6.868132186355069e-05,-0.0017295205034315586,0.00043934007408097386,9.2554502771236e-05,7.272139919223264e-05,-2.0200388462399133e-05,-1.2340600733296014e-05,-9.69618577073561e-06,0.0,-1.4832536849361156e-21,2.541098841762901e-21,-0.002614113735035062,9.2554502771236e-05,0.001099926419556141,0.00011238761362619698,2.4808590785456142e-24,-2.056766788882669e-05,-4.235164736271502e-21,-8.19492997834459e-05,-2.4975024643936194e-05,-6.776263578034403e-21,-0.00208137440495193,7.272139919223264e-05,0.00011238761362619698,0.0006590835400857031,-2.037551482667993e-22,-2.1765438264323377e-21,-1.212023289554054e-05,-0.0,-1.8731268937699497e-05,-3.7462537875398993e-05,4.7134239139268175e-05,-2.0200388462399133e-05,2.4808590785456142e-24,-2.037551482667993e-22,1.3466925565808197e-06,6.776385100797307e-40,3.773479458092617e-24,0.0,-4.134765130909357e-25,1.372759023414414e-23,9.2554502771236e-05,-1.2340600733296014e-05,-2.056766788882669e-05,-2.1765438264323377e-21,6.776385100797307e-40,2.7423557185102254e-06,2.902058468901182e-22,0.0,4.70197740328915e-38,-7.052966104933725e-38,7.272139919223264e-05,-9.69618577073561e-06,-4.235164736271502e-21,-1.212023289554054e-05,3.773479458092617e-24,2.902058468901182e-22,1.616030999684881e-06,0.0,3.1763735522036263e-22,-3.1763735522036263e-22,0.00010926573304459453,0.0,-8.19492997834459e-05,-0.0,0.0,0.0,0.0,9.105478056881111e-06,0.0,0.0,0.00011238761362619698,-1.4832536849361156e-21,-2.4975024643936194e-05,-1.8731268937699497e-05,-4.134765130909357e-25,4.70197740328915e-38,3.1763735522036263e-22,0.0,4.162503955740249e-06,1.2705494208814505e-21,6.868132186355069e-05,2.541098841762901e-21,-6.776263578034403e-21,-3.7462537875398993e-05,1.372759023414414e-23,-7.052966104933725e-38,-3.1763735522036263e-22,0.0,1.2705494208814505e-21,3.1218780804920243e-06,16.0,10.0,14.0,0.01690703071653843,-0.0016104851383715868,-0.002434348687529564,-0.0018150185933336616,4.376750803203322e-05,8.594346581958234e-05,6.302521069301292e-05,0.000101461038866546,9.740259702084586e-05,5.5803571740398183e-05,-0.0016104851383715868,0.00040855887345969677,8.594346581958234e-05,6.302521069301292e-05,-1.8757502402877435e-05,-1.1459129382274114e-05,-8.403361789532937e-06,0.0,1.770697231236963e-21,0.0,-0.002434348687529564,8.594346581958234e-05,0.0010229062754660845,9.740259702084586e-05,6.59125408728216e-23,-1.9098548364127055e-05,6.776263578034403e-21,-7.60957773309201e-05,-2.1645020751748234e-05,1.6940658945086007e-21,-0.0018150185933336616,6.302521069301292e-05,9.740259702084586e-05,0.0005303497309796512,1.3274729169828276e-22,5.366922297654504e-21,-9.69618577073561e-06,-0.0,-1.4985014786361717e-05,-2.7901785870199092e-05,4.376750803203322e-05,-1.8757502402877435e-05,6.59125408728216e-23,1.3274729169828276e-22,1.250500190508319e-06,8.383715077033338e-39,-1.514649541170345e-23,0.0,-1.0140391206919055e-23,1.8937365308451664e-24,8.594346581958234e-05,-1.1459129382274114e-05,-1.9098548364127055e-05,5.366922297654504e-21,8.383715077033338e-39,2.5464730697422056e-06,-7.155896363214607e-22,-0.0,1.1754943508222875e-37,-4.70197740328915e-38,6.302521069301292e-05,-8.403361789532937e-06,6.776263578034403e-21,-9.69618577073561e-06,-1.514649541170345e-23,-7.155896363214607e-22,1.2928247770105372e-06,0.0,-2.6469779601696886e-22,0.0,0.000101461038866546,0.0,-7.60957773309201e-05,-0.0,0.0,-0.0,0.0,8.455086572212167e-06,0.0,0.0,9.740259702084586e-05,1.770697231236963e-21,-2.1645020751748234e-05,-1.4985014786361717e-05,-1.0140391206919055e-23,1.1754943508222875e-37,-2.6469779601696886e-22,0.0,3.3300034374406096e-06,-2.117582368135751e-22,5.5803571740398183e-05,0.0,1.6940658945086007e-21,-2.7901785870199092e-05,1.8937365308451664e-24,-4.70197740328915e-38,0.0,0.0,-2.117582368135751e-22,2.146291308235959e-06,16.0,10.0,15.0,0.01588328182697296,-0.0015067958738654852,-0.002277740743011236,-0.0015967580256983638,4.0849674405762926e-05,8.021390385692939e-05,5.5147058446891606e-05,9.469696669839323e-05,8.522727148374543e-05,4.595588325173594e-05,-0.0015067958738654852,0.00038181181298568845,8.021390385692939e-05,5.5147058446891606e-05,-1.750700357661117e-05,-1.069518748408882e-05,-7.3529413384676445e-06,-5.0633751240636725e-20,-1.5476476559446123e-20,5.039846036163087e-20,-0.002277740743011236,8.021390385692939e-05,0.0009559752070344985,8.522727148374543e-05,-6.006676708100087e-20,-1.7825312170316465e-05,1.6728900708272432e-20,-7.102272502379492e-05,-1.8939394067274407e-05,4.489274620447792e-20,-0.0015967580256983638,5.5147058446891606e-05,8.522727148374543e-05,0.0004331422387622297,3.32134438625436e-20,3.6708892642516756e-20,-7.878151336626615e-06,7.758050709422127e-20,-1.2175324627605733e-05,-2.121040779456962e-05,4.0849674405762926e-05,-1.750700357661117e-05,-6.006676708100087e-20,3.32134438625436e-20,1.1671335187202203e-06,1.8470733051981702e-21,-6.935190499982555e-22,3.533941355128496e-21,8.466838289720857e-22,-2.3815697097105904e-21,8.021390385692939e-05,-1.069518748408882e-05,-1.7825312170316465e-05,3.6708892642516756e-20,1.8470733051981702e-21,2.3767081529513234e-06,3.677098089300615e-23,2.158916963008002e-21,-1.387875176080259e-22,-2.578977695755756e-21,5.5147058446891606e-05,-7.3529413384676445e-06,1.6728900708272432e-20,-7.878151336626615e-06,-6.935190499982555e-22,3.677098089300615e-23,1.0504202236916171e-06,-2.292644562686872e-21,-2.6469779601696886e-23,-6.352747104407253e-22,9.469696669839323e-05,-5.0633751240636725e-20,-7.102272502379492e-05,7.758050709422127e-20,3.533941355128496e-21,2.158916963008002e-21,-2.292644562686872e-21,7.89141449786257e-06,-8.65806675595308e-22,-3.2705947958006363e-21,8.522727148374543e-05,-1.5476476559446123e-20,-1.8939394067274407e-05,-1.2175324627605733e-05,8.466838289720857e-22,-1.387875176080259e-22,-2.6469779601696886e-23,-8.65806675595308e-22,2.7056275939685293e-06,5.293955920339377e-22,4.595588325173594e-05,5.039846036163087e-20,4.489274620447792e-20,-2.121040779456962e-05,-2.3815697097105904e-21,-2.578977695755756e-21,-6.352747104407253e-22,-3.2705947958006363e-21,5.293955920339377e-22,1.5150291119425674e-06,16.0,10.0,16.0,0.014976661652326584,-0.001415662351064384,-0.0021400819532573223,-0.001415662351064384,3.829656998277642e-05,7.520053623011336e-05,4.865917071583681e-05,8.877841173671186e-05,7.520053623011336e-05,3.829656998277642e-05,-0.001415662351064384,0.00035835406742990017,7.520053623011336e-05,4.865917071583681e-05,-1.641281596675981e-05,-1.0026737982116174e-05,-6.4878890952968504e-06,0.0,-1.4823076576950256e-21,2.964615315390051e-21,-0.0021400819532573223,7.520053623011336e-05,0.0008972712093964219,7.520053623011336e-05,-4.86060445906046e-22,-1.6711230273358524e-05,0.0,-6.65838088025339e-05,-1.6711230273358524e-05,-3.3881317890172014e-21,-0.001415662351064384,4.865917071583681e-05,7.520053623011336e-05,0.00035835406742990017,1.4039510253689598e-22,9.324678202236353e-22,-6.4878890952968504e-06,-0.0,-1.0026737982116174e-05,-1.641281596675981e-05,3.829656998277642e-05,-1.641281596675981e-05,-4.86060445906046e-22,1.4039510253689598e-22,1.094187723538198e-06,4.886054563366955e-23,-5.0349028343069353e-23,-0.0,1.321897768752923e-23,1.4173089964036844e-23,7.520053623011336e-05,-1.0026737982116174e-05,-1.6711230273358524e-05,9.324678202236353e-22,4.886054563366955e-23,2.228164021289558e-06,-1.2539394685837045e-22,-0.0,2.156289950486255e-24,3.5716967271461346e-24,4.865917071583681e-05,-6.4878890952968504e-06,0.0,-6.4878890952968504e-06,-5.0349028343069353e-23,-1.2539394685837045e-22,8.650519021102809e-07,0.0,1.411524468712316e-22,-4.235164736271502e-22,8.877841173671186e-05,0.0,-6.65838088025339e-05,-0.0,-0.0,-0.0,0.0,7.398200978059322e-06,0.0,0.0,7.520053623011336e-05,-1.4823076576950256e-21,-1.6711230273358524e-05,-1.0026737982116174e-05,1.321897768752923e-23,2.156289950486255e-24,1.411524468712316e-22,0.0,2.228164021289558e-06,4.235164736271502e-22,3.829656998277642e-05,2.964615315390051e-21,-3.3881317890172014e-21,-1.641281596675981e-05,1.4173089964036844e-23,3.5716967271461346e-24,-4.235164736271502e-22,0.0,4.235164736271502e-22,1.094187723538198e-06,16.0,11.0,3.0,0.054547883570194244,-0.006127451080828905,-0.008516299538314342,-0.023145053535699844,0.00018568032828625292,0.0003342246054671705,0.0010026737581938505,0.0003642191004473716,0.0014204545877873898,0.0028409091755747795,-0.006127451080828905,0.0016392921097576618,0.0003342246054671705,0.0010026737581938505,-7.95772866695188e-05,-4.456327951629646e-05,-0.0001336898421868682,0.0,0.0,-0.0,-0.008516299538314342,0.0003342246054671705,0.0034029490780085325,0.0014204545877873898,-5.98541568058429e-37,-6.68449210934341e-05,5.1445393136135974e-20,-0.0002428127481834963,-0.0002840909000951797,-0.0,-0.023145053535699844,0.0010026737581938505,0.0014204545877873898,0.05155414342880249,1.1665611048768142e-20,5.1445393136135974e-20,-0.0010026737581938505,0.0,-0.0014204545877873898,-0.017045455053448677,0.00018568032828625292,-7.95772866695188e-05,-5.98541568058429e-37,1.1665611048768142e-20,5.305152171786176e-06,7.98055394183538e-38,-1.5554147930391928e-21,0.0,0.0,-0.0,0.0003342246054671705,-4.456327951629646e-05,-6.68449210934341e-05,5.1445393136135974e-20,7.98055394183538e-38,8.912656085158233e-06,-6.859385536073179e-21,0.0,0.0,-0.0,0.0010026737581938505,-0.0001336898421868682,5.1445393136135974e-20,-0.0010026737581938505,-1.5554147930391928e-21,-6.859385536073179e-21,0.0001336898421868682,0.0,0.0,-0.0,0.0003642191004473716,0.0,-0.0002428127481834963,0.0,0.0,0.0,0.0,2.428127481834963e-05,0.0,-0.0,0.0014204545877873898,0.0,-0.0002840909000951797,-0.0014204545877873898,0.0,0.0,0.0,0.0,0.0002840909000951797,-0.0,0.0028409091755747795,-0.0,-0.0,-0.017045455053448677,-0.0,-0.0,-0.0,-0.0,-0.0,0.008522727526724339,16.0,11.0,4.0,0.04424062371253967,-0.004745989106595516,-0.00660029286518693,-0.014739304780960083,0.00013926024257671088,0.00025066843954846263,0.0006016042898409069,0.0002731643326114863,0.0008522727293893695,0.0014204545877873898,-0.004745989106595516,0.0012495225528255105,0.00025066843954846263,0.0006016042898409069,-5.9682963183149695e-05,-3.342246054671705e-05,-8.021390385692939e-05,0.0,0.0,-0.0,-0.00660029286518693,0.00025066843954846263,0.002594825578853488,0.0008522727293893695,3.3881317890172014e-21,-5.013369082007557e-05,-2.0176595963741987e-20,-0.0001821095502236858,-0.00017045454296749085,-0.0,-0.014739304780960083,0.0006016042898409069,0.0008522727293893695,0.01976938545703888,6.258249393461955e-21,-2.0176595963741987e-20,-0.00040106952656060457,0.0,-0.0005681818001903594,-0.004261363763362169,0.00013926024257671088,-5.9682963183149695e-05,3.3881317890172014e-21,6.258249393461955e-21,3.97886424252647e-06,-4.235164736271502e-22,-8.344332861196593e-22,0.0,0.0,-0.0,0.00025066843954846263,-3.342246054671705e-05,-5.013369082007557e-05,-2.0176595963741987e-20,-4.235164736271502e-22,6.684491836494999e-06,2.690212889408181e-21,0.0,0.0,-0.0,0.0006016042898409069,-8.021390385692939e-05,-2.0176595963741987e-20,-0.00040106952656060457,-8.344332861196593e-22,2.690212889408181e-21,5.347593469195999e-05,0.0,0.0,-0.0,0.0002731643326114863,0.0,-0.0001821095502236858,0.0,0.0,0.0,0.0,1.8210956113762222e-05,0.0,-0.0,0.0008522727293893695,0.0,-0.00017045454296749085,-0.0005681818001903594,0.0,0.0,0.0,0.0,0.00011363636440364644,-0.0,0.0014204545877873898,-0.0,-0.0,-0.004261363763362169,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014204545877873898,16.0,11.0,5.0,0.03727656975388527,-0.0038770053070038557,-0.0053938706405460835,-0.0102320471778512,0.00011140819697175175,0.00020053476328030229,0.00040106952656060457,0.00021853146608918905,0.0005681818001903594,0.000811688310932368,-0.0038770053070038557,0.0010103131644427776,0.00020053476328030229,0.00040106952656060457,-4.774637272930704e-05,-2.6737967345979996e-05,-5.347593469195999e-05,0.0,0.0,-0.0,-0.0053938706405460835,0.00020053476328030229,0.0020985875744372606,0.0005681818001903594,1.4112816005277038e-21,-4.0106951928464696e-05,-1.5246593050577406e-20,-0.00014568764891009778,-0.00011363636440364644,-0.0,-0.0102320471778512,0.00040106952656060457,0.0005681818001903594,0.009986153803765774,9.097829573798654e-22,-1.5246593050577406e-20,-0.00020053476328030229,0.0,-0.0002840909000951797,-0.001623376621864736,0.00011140819697175175,-4.774637272930704e-05,1.4112816005277038e-21,9.097829573798654e-22,3.183091394021176e-06,-3.7351730825098996e-22,-8.442060610449972e-23,0.0,0.0,-0.0,0.00020053476328030229,-2.6737967345979996e-05,-4.0106951928464696e-05,-1.5246593050577406e-20,-3.7351730825098996e-22,5.34759374204441e-06,2.329340604949326e-21,0.0,0.0,-0.0,0.00040106952656060457,-5.347593469195999e-05,-1.5246593050577406e-20,-0.00020053476328030229,-8.442060610449972e-23,2.329340604949326e-21,2.6737967345979996e-05,0.0,0.0,-0.0,0.00021853146608918905,0.0,-0.00014568764891009778,0.0,0.0,0.0,0.0,1.4568764527211897e-05,0.0,-0.0,0.0005681818001903594,0.0,-0.00011363636440364644,-0.0002840909000951797,0.0,0.0,0.0,0.0,5.681818220182322e-05,-0.0,0.000811688310932368,-0.0,-0.0,-0.001623376621864736,-0.0,-0.0,-0.0,-0.0,-0.0,0.000405844155466184,16.0,11.0,6.0,0.032233595848083496,-0.0032785842195153236,-0.0045625329948961735,-0.007526021916419268,9.284016414312646e-05,0.00016711230273358524,0.00028647822909988463,0.0001821095502236858,0.000405844155466184,0.0005073052016086876,-0.0032785842195153236,0.0008482938865199685,0.00016711230273358524,0.00028647822909988463,-3.97886433347594e-05,-2.228163975814823e-05,-3.819709672825411e-05,0.0,0.0,-0.0,-0.0045625329948961735,0.00016711230273358524,0.0017623512540012598,0.000405844155466184,-1.784282905394258e-21,-3.342246054671705e-05,1.3552527156068805e-20,-0.00012140637409174815,-8.116882963804528e-05,-0.0,-0.007526021916419268,0.00028647822909988463,0.000405844155466184,0.005800587125122547,-1.1747702464163886e-21,1.3552527156068805e-20,-0.00011459129018476233,0.0,-0.00016233765927609056,-0.000760957773309201,9.284016414312646e-05,-3.97886433347594e-05,-1.784282905394258e-21,-1.1747702464163886e-21,2.652576085893088e-06,2.293269391010905e-22,9.712947083197231e-23,0.0,0.0,-0.0,0.00016711230273358524,-2.228163975814823e-05,-3.342246054671705e-05,1.3552527156068805e-20,2.293269391010905e-22,4.456328042579116e-06,-1.6940658945086007e-21,0.0,0.0,-0.0,0.00028647822909988463,-3.819709672825411e-05,1.3552527156068805e-20,-0.00011459129018476233,9.712947083197231e-23,-1.6940658945086007e-21,1.5278837963705882e-05,0.0,0.0,-0.0,0.0001821095502236858,0.0,-0.00012140637409174815,0.0,0.0,0.0,0.0,1.2140637409174815e-05,0.0,-0.0,0.000405844155466184,0.0,-8.116882963804528e-05,-0.00016233765927609056,0.0,0.0,0.0,0.0,3.246753112762235e-05,-0.0,0.0005073052016086876,-0.0,-0.0,-0.000760957773309201,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001521915546618402,16.0,11.0,7.0,0.02840495854616165,-0.0028409091755747795,-0.003954226151108742,-0.0057713426649570465,7.95772866695188e-05,0.00014323911454994231,0.00021485866454895586,0.00015609391266480088,0.0003043831093236804,0.0003382034774404019,-0.0028409091755747795,0.0007312015513889492,0.00014323911454994231,0.00021485866454895586,-3.410455246921629e-05,-1.9098548364127055e-05,-2.8647822546190582e-05,-1.248918130875306e-19,-2.5626122585317567e-19,-3.2148770002603798e-19,-0.003954226151108742,0.00014323911454994231,0.001519283396191895,0.0003043831093236804,-1.230996228928579e-19,-2.8647822546190582e-05,-1.250069592137374e-19,-0.00010406260116724297,-6.0876624047523364e-05,-1.7285103414501623e-19,-0.0057713426649570465,0.00021485866454895586,0.0003043831093236804,0.0036824389826506376,-1.6956116882783091e-19,-1.0894112131460864e-19,-7.161955727497116e-05,-3.6698620739519467e-20,-0.000101461038866546,-0.000405844155466184,7.95772866695188e-05,-3.410455246921629e-05,-1.230996228928579e-19,-1.6956116882783091e-19,2.2736367100151256e-06,2.044312462387844e-21,2.0139981912526578e-21,5.8251779336281805e-21,1.135909701096463e-20,1.2621219529355697e-20,0.00014323911454994231,-1.9098548364127055e-05,-2.8647822546190582e-05,-1.0894112131460864e-19,2.044312462387844e-21,3.819709490926471e-06,2.8587361969832636e-21,3.262099836702237e-21,6.361094439231292e-21,7.067882710256991e-21,0.00021485866454895586,-2.8647822546190582e-05,-1.250069592137374e-19,-7.161955727497116e-05,2.0139981912526578e-21,2.8587361969832636e-21,9.549274182063527e-06,4.893149755053356e-21,1.378237189084631e-20,2.756474378169262e-20,0.00015609391266480088,-1.248918130875306e-19,-0.00010406260116724297,-3.6698620739519467e-20,5.8251779336281805e-21,3.262099836702237e-21,4.893149755053356e-21,1.0406260116724297e-05,4.3770327103881493e-35,5.491123839577725e-35,0.0003043831093236804,-2.5626122585317567e-19,-6.0876624047523364e-05,-0.000101461038866546,1.135909701096463e-20,6.361094439231292e-21,1.378237189084631e-20,4.3770327103881493e-35,2.029220740951132e-05,3.994730474066186e-20,0.0003382034774404019,-3.2148770002603798e-19,-1.7285103414501623e-19,-0.000405844155466184,1.2621219529355697e-20,7.067882710256991e-21,2.756474378169262e-20,5.491123839577725e-35,3.994730474066186e-20,6.764069257769734e-05,16.0,11.0,8.0,0.0253957137465477,-0.002506684511899948,-0.003489540424197912,-0.00456773629412055,6.963012128835544e-05,0.00012533421977423131,0.00016711230273358524,0.00013658216630574316,0.0002367424312978983,0.0002367424312978983,-0.002506684511899948,0.0006425865576602519,0.00012533421977423131,0.00016711230273358524,-2.9841481591574848e-05,-1.6711230273358524e-05,-2.228163975814823e-05,0.0,0.0,-0.0,-0.003489540424197912,0.00012533421977423131,0.0013352915411815047,0.0002367424312978983,1.3914894464471686e-21,-2.5066845410037786e-05,-6.515893536052349e-21,-9.10547751118429e-05,-4.734848334919661e-05,-0.0,-0.00456773629412055,0.00016711230273358524,0.0002367424312978983,0.002488779602572322,1.9977072164396597e-21,-6.515893536052349e-21,-4.774637272930704e-05,0.0,-6.764069257769734e-05,-0.0002367424312978983,6.963012128835544e-05,-2.9841481591574848e-05,1.3914894464471686e-21,1.9977072164396597e-21,1.989432121263235e-06,-1.8553191861989113e-22,-2.663609672406644e-22,0.0,0.0,-0.0,0.00012533421977423131,-1.6711230273358524e-05,-2.5066845410037786e-05,-6.515893536052349e-21,-1.8553191861989113e-22,3.3422459182474995e-06,8.68785818270206e-22,0.0,0.0,-0.0,0.00016711230273358524,-2.228163975814823e-05,-6.515893536052349e-21,-4.774637272930704e-05,-2.663609672406644e-22,8.68785818270206e-22,6.366182788042352e-06,0.0,0.0,-0.0,0.00013658216630574316,0.0,-9.10547751118429e-05,0.0,0.0,0.0,0.0,9.105478056881111e-06,0.0,-0.0,0.0002367424312978983,0.0,-4.734848334919661e-05,-6.764069257769734e-05,0.0,0.0,0.0,0.0,1.3528138879337348e-05,-0.0,0.0002367424312978983,-0.0,-0.0,-0.0002367424312978983,-0.0,-0.0,-0.0,-0.0,-0.0,3.382034628884867e-05,16.0,11.0,9.0,0.022966597229242325,-0.002243018476292491,-0.003122857538983226,-0.0037058419547975063,6.18934427620843e-05,0.00011140819697175175,0.0001336898421868682,0.00012140637409174815,0.00018939393339678645,0.000172176311025396,-0.002243018476292491,0.0005731686833314598,0.00011140819697175175,0.0001336898421868682,-2.6525762223172933e-05,-1.4854426808597054e-05,-1.7825312170316465e-05,-1.2631575281325235e-19,-1.7237375093157313e-19,-1.7711997111473462e-19,-0.003122857538983226,0.00011140819697175175,0.0011911345645785332,0.00018939393339678645,-8.041075725885974e-20,-2.228163975814823e-05,-1.6074967905139807e-19,-8.093757787719369e-05,-3.787878813454881e-05,-2.6986462138574222e-20,-0.0037058419547975063,0.0001336898421868682,0.00018939393339678645,0.0017627454362809658,-1.1004406326387153e-19,-6.918835265191306e-20,-3.342246054671705e-05,-7.611566070226935e-20,-4.734848334919661e-05,-0.00014757968892809004,6.18934427620843e-05,-2.6525762223172933e-05,-8.041075725885974e-20,-1.1004406326387153e-19,1.7683840951576713e-06,-6.596690664205453e-22,1.222147440091986e-21,4.530693993254894e-21,7.067882710256991e-21,6.425347955133336e-21,0.00011140819697175175,-1.4854426808597054e-05,-2.228163975814823e-05,-6.918835265191306e-20,-6.596690664205453e-22,2.970885361719411e-06,1.6928927763010029e-21,2.5371887170020974e-21,3.958014398523272e-21,3.5981948710305396e-21,0.0001336898421868682,-1.7825312170316465e-05,-1.6074967905139807e-19,-3.342246054671705e-05,1.222147440091986e-21,1.6928927763010029e-21,4.456328042579116e-06,1.014875486800839e-20,9.662352472988036e-21,1.3888097528475376e-20,0.00012140637409174815,-1.2631575281325235e-19,-8.093757787719369e-05,-7.611566070226935e-20,4.530693993254894e-21,2.5371887170020974e-21,1.014875486800839e-20,8.09375796961831e-06,4.4845445257403096e-35,5.239265565336286e-35,0.00018939393339678645,-1.7237375093157313e-19,-3.787878813454881e-05,-4.734848334919661e-05,7.067882710256991e-21,3.958014398523272e-21,9.662352472988036e-21,4.4845445257403096e-35,9.469697033637203e-06,6.250472527222288e-35,0.000172176311025396,-1.7711997111473462e-19,-2.6986462138574222e-20,-0.00014757968892809004,6.425347955133336e-21,3.5981948710305396e-21,1.3888097528475376e-20,5.239265565336286e-35,6.250472527222288e-35,1.8447461116011254e-05,16.0,11.0,10.0,0.020963750779628754,-0.0020296548027545214,-0.0028260676190257072,-0.0030672703869640827,5.5704098485875875e-05,0.00010026738164015114,0.00010938259947579354,0.00010926573304459453,0.0001549586741020903,0.00012913222599308938,-0.0020296548027545214,0.000517310225404799,0.00010026738164015114,0.00010938259947579354,-2.387318636465352e-05,-1.3368983672989998e-05,-1.4584345990442671e-05,0.0,6.4767506870756146e-21,1.8215861256913068e-20,-0.0028260676190257072,0.00010026738164015114,0.0010751202935352921,0.0001549586741020903,1.8598903144605625e-37,-2.0053475964232348e-05,1.5114727415070347e-21,-7.284382445504889e-05,-3.09917340928223e-05,3.870870517094027e-20,-0.0030672703869640827,0.00010938259947579354,0.0001549586741020903,0.0012949936790391803,3.4737536661972844e-22,-4.965278046542776e-21,-2.430724271107465e-05,0.0,-3.443526293267496e-05,-9.684917313279584e-05,5.5704098485875875e-05,-2.387318636465352e-05,1.8598903144605625e-37,3.4737536661972844e-22,1.591545697010588e-06,-9.461186077938869e-39,-4.631671533893422e-23,0.0,-2.5562251168071306e-38,1.3559036808327075e-37,0.00010026738164015114,-1.3368983672989998e-05,-2.0053475964232348e-05,-4.965278046542776e-21,-9.461186077938869e-39,2.673796871022205e-06,6.620370627749505e-22,0.0,-2.9400351609918407e-37,-8.268849240614168e-37,0.00010938259947579354,-1.4584345990442671e-05,1.5114727415070347e-21,-2.430724271107465e-05,-4.631671533893422e-23,6.620370627749505e-22,3.2409657251264434e-06,0.0,-1.4392779080225375e-21,-4.047969078448063e-21,0.00010926573304459453,0.0,-7.284382445504889e-05,0.0,0.0,0.0,0.0,7.2843822636059485e-06,0.0,-0.0,0.0001549586741020903,6.4767506870756146e-21,-3.09917340928223e-05,-3.443526293267496e-05,-2.5562251168071306e-38,-2.9400351609918407e-37,-1.4392779080225375e-21,0.0,6.887052222737111e-06,-8.60193439267633e-21,0.00012913222599308938,1.8215861256913068e-20,3.870870517094027e-20,-9.684917313279584e-05,1.3559036808327075e-37,-8.268849240614168e-37,-4.047969078448063e-21,-0.0,-8.60193439267633e-21,1.076101943908725e-05,16.0,11.0,11.0,0.01928355172276497,-0.0018534272676333785,-0.0025808915961533785,-0.0025808915961533785,5.0640090194065124e-05,9.115216380450875e-05,9.115216380450875e-05,9.93324865703471e-05,0.00012913222599308938,9.93324865703471e-05,-0.0018534272676333785,0.00047138691297732294,9.115216380450875e-05,9.115216380450875e-05,-2.1702895537600853e-05,-1.2153621355537325e-05,-1.2153621355537325e-05,0.0,0.0,-0.0,-0.0025808915961533785,9.115216380450875e-05,0.0009797299280762672,0.00012913222599308938,-1.0119922696120158e-21,-1.8230432033305988e-05,3.627232222484775e-21,-6.622165528824553e-05,-2.5826446290011518e-05,-0.0,-0.0025808915961533785,9.115216380450875e-05,0.00012913222599308938,0.0009797299280762672,-5.1352961761134925e-22,3.627232222484775e-21,-1.8230432033305988e-05,0.0,-2.5826446290011518e-05,-6.622165528824553e-05,5.0640090194065124e-05,-2.1702895537600853e-05,-1.0119922696120158e-21,-5.1352961761134925e-22,1.4468597555605811e-06,1.3493231018800013e-22,6.84706148400616e-23,0.0,0.0,-0.0,9.115216380450875e-05,-1.2153621355537325e-05,-1.8230432033305988e-05,3.627232222484775e-21,1.3493231018800013e-22,2.4307244075316703e-06,-4.83630956266357e-22,0.0,0.0,-0.0,9.115216380450875e-05,-1.2153621355537325e-05,3.627232222484775e-21,-1.8230432033305988e-05,6.84706148400616e-23,-4.83630956266357e-22,2.4307244075316703e-06,0.0,0.0,-0.0,9.93324865703471e-05,0.0,-6.622165528824553e-05,0.0,0.0,0.0,0.0,6.622165528824553e-06,0.0,-0.0,0.00012913222599308938,0.0,-2.5826446290011518e-05,-2.5826446290011518e-05,0.0,0.0,0.0,0.0,5.165289167052833e-06,-0.0,9.93324865703471e-05,-0.0,-0.0,-6.622165528824553e-05,-0.0,-0.0,-0.0,-0.0,-0.0,6.622165528824553e-06,16.0,11.0,12.0,0.017853572964668274,-0.001705402391962707,-0.0023749228566884995,-0.002201842376962304,4.642008207156323e-05,8.355615136679262e-05,7.712875230936334e-05,9.10547751118429e-05,0.00010926573304459453,7.804695633240044e-05,-0.001705402391962707,0.00043296164949424565,8.355615136679262e-05,7.712875230936334e-05,-1.98943216673797e-05,-1.1140819879074115e-05,-1.0283833944413345e-05,0.0,0.0,-0.0,-0.0023749228566884995,8.355615136679262e-05,0.0008999068522825837,0.00010926573304459453,-9.276596309647791e-22,-1.6711230273358524e-05,3.4102184807246475e-21,-6.0703187045874074e-05,-2.1853147700312547e-05,-0.0,-0.002201842376962304,7.712875230936334e-05,0.00010926573304459453,0.0007593509508296847,-2.0040886341572418e-22,3.4102184807246475e-21,-1.4023409676156007e-05,0.0,-1.986649658647366e-05,-4.682817234424874e-05,4.642008207156323e-05,-1.98943216673797e-05,-9.276596309647791e-22,-2.0040886341572418e-22,1.326288042946544e-06,1.2368794995385225e-22,2.672118010585996e-23,0.0,0.0,-0.0,8.355615136679262e-05,-1.1140819879074115e-05,-1.6711230273358524e-05,3.4102184807246475e-21,1.2368794995385225e-22,2.228164021289558e-06,-4.546957906983399e-22,0.0,0.0,-0.0,7.712875230936334e-05,-1.0283833944413345e-05,3.4102184807246475e-21,-1.4023409676156007e-05,2.672118010585996e-23,-4.546957906983399e-22,1.8697879795581684e-06,0.0,0.0,-0.0,9.10547751118429e-05,0.0,-6.0703187045874074e-05,0.0,0.0,0.0,0.0,6.070318704587407e-06,0.0,-0.0,0.00010926573304459453,0.0,-2.1853147700312547e-05,-1.986649658647366e-05,0.0,0.0,0.0,0.0,3.973299499193672e-06,-0.0,7.804695633240044e-05,-0.0,-0.0,-4.682817234424874e-05,-0.0,-0.0,-0.0,-0.0,-0.0,4.2571064113872126e-06,16.0,11.0,13.0,0.016621623188257217,-0.0015793030615895987,-0.0021994407288730145,-0.0019006729125976562,4.284930764697492e-05,7.712875230936334e-05,6.611036224057898e-05,8.405056723859161e-05,9.365634468849748e-05,6.243756070034578e-05,-0.0015793030615895987,0.0004003349458798766,7.712875230936334e-05,6.611036224057898e-05,-1.836398951127194e-05,-1.0283833944413345e-05,-8.81471441971371e-06,0.0,-2.0849093397850815e-21,1.6940658945086007e-21,-0.0021994407288730145,7.712875230936334e-05,0.0008321241475641727,9.365634468849748e-05,-3.4969096367736523e-23,-1.5425750461872667e-05,-4.235164736271502e-21,-5.6033710279734805e-05,-1.8731268937699497e-05,-3.3881317890172014e-21,-0.0019006729125976562,6.611036224057898e-05,9.365634468849748e-05,0.0006005858886055648,-1.839790364616327e-22,-2.638234806497845e-21,-1.1018393706763163e-05,-0.0,-1.5609390175086446e-05,-3.40568512910977e-05,4.284930764697492e-05,-1.836398951127194e-05,-3.4969096367736523e-23,-1.839790364616327e-22,1.2242659295225167e-06,6.5938519628343565e-40,2.753876343664007e-24,0.0,5.828182465002452e-24,1.0388442996539466e-23,7.712875230936334e-05,-1.0283833944413345e-05,-1.5425750461872667e-05,-2.638234806497845e-21,6.5938519628343565e-40,2.056766788882669e-06,3.5176466442702505e-22,0.0,7.052966104933725e-38,-9.4039548065783e-38,6.611036224057898e-05,-8.81471441971371e-06,-4.235164736271502e-21,-1.1018393706763163e-05,2.753876343664007e-24,3.5176466442702505e-22,1.469119069952285e-06,0.0,2.6469779601696886e-22,-4.235164736271502e-22,8.405056723859161e-05,0.0,-5.6033710279734805e-05,-0.0,0.0,0.0,0.0,5.60337093702401e-06,0.0,0.0,9.365634468849748e-05,-2.0849093397850815e-21,-1.8731268937699497e-05,-1.5609390175086446e-05,5.828182465002452e-24,7.052966104933725e-38,2.6469779601696886e-22,0.0,3.1218780804920243e-06,7.411538288475128e-22,6.243756070034578e-05,1.6940658945086007e-21,-3.3881317890172014e-21,-3.40568512910977e-05,1.0388442996539466e-23,-9.4039548065783e-38,-4.235164736271502e-22,0.0,7.411538288475128e-22,2.8380709409248084e-06,16.0,11.0,14.0,0.015549126081168652,-0.00147058826405555,-0.0020481357350945473,-0.0016573958564549685,3.97886433347594e-05,7.161955727497116e-05,5.7295645092381164e-05,7.804695633240044e-05,8.116882963804528e-05,5.0730519433273e-05,-0.00147058826405555,0.00037228528526611626,7.161955727497116e-05,5.7295645092381164e-05,-1.7052276234608144e-05,-9.549274182063527e-06,-7.639418981852941e-06,-6.358764197128722e-20,-6.424643963039742e-20,-4.1504614415460717e-20,-0.0020481357350945473,7.161955727497116e-05,0.0007738462300039828,8.116882963804528e-05,-6.270041321614167e-20,-1.4323911273095291e-05,-2.9434394917086937e-20,-5.203130058362149e-05,-1.6233765563811176e-05,-2.541098841762901e-21,-0.0016573958564549685,5.7295645092381164e-05,8.116882963804528e-05,0.00048327131662517786,-5.1309357468287946e-20,-3.1733239699296905e-20,-8.81471441971371e-06,-9.786299510106711e-21,-1.2487512321968097e-05,-2.53652597166365e-05,3.97886433347594e-05,-1.7052276234608144e-05,-6.270041321614167e-20,-5.1309357468287946e-20,1.1368183550075628e-06,8.481458848411606e-22,7.093253991581837e-22,2.9125889668140902e-21,3.0216453392680694e-21,1.9083157705794217e-21,7.161955727497116e-05,-9.549274182063527e-06,-1.4323911273095291e-05,-3.1733239699296905e-20,8.481458848411606e-22,1.9098547454632353e-06,8.102434028864725e-22,1.6310499183511186e-21,1.6962917696823213e-21,1.0601824065385487e-21,5.7295645092381164e-05,-7.639418981852941e-06,-2.9434394917086937e-20,-8.81471441971371e-06,7.093253991581837e-22,8.102434028864725e-22,1.1752953241739306e-06,1.3048398539015382e-21,1.1117307432712692e-21,8.999725064576941e-22,7.804695633240044e-05,-6.358764197128722e-20,-5.203130058362149e-05,-9.786299510106711e-21,2.9125889668140902e-21,1.6310499183511186e-21,1.3048398539015382e-21,5.203130058362149e-06,1.1049646897729503e-35,7.147005652999508e-36,8.116882963804528e-05,-6.424643963039742e-20,-1.6233765563811176e-05,-1.2487512321968097e-05,3.0216453392680694e-21,1.6962917696823213e-21,1.1117307432712692e-21,1.1049646897729503e-35,2.4975024643936194e-06,-6.352747104407253e-22,5.0730519433273e-05,-4.1504614415460717e-20,-2.541098841762901e-21,-2.53652597166365e-05,1.9083157705794217e-21,1.0601824065385487e-21,8.999725064576941e-22,7.147005652999508e-36,-6.352747104407253e-22,1.9511737718858058e-06,16.0,11.0,15.0,0.014606935903429985,-0.0013758912682533264,-0.0019163282122462988,-0.0014580547576770186,3.713606565725058e-05,6.68449210934341e-05,5.013369082007557e-05,7.284382445504889e-05,7.102272502379492e-05,4.177807568339631e-05,-0.0013758912682533264,0.0003479119041003287,6.68449210934341e-05,5.013369082007557e-05,-1.591545697010588e-05,-8.912656085158233e-06,-6.684491836494999e-06,0.0,-6.635378927352388e-22,-3.8116482626443515e-21,-0.0019163282122462988,6.68449210934341e-05,0.0007232034695334733,7.102272502379492e-05,-7.049526106319116e-22,-1.3368983672989998e-05,-1.6940658945086007e-21,-4.856254963669926e-05,-1.4204545550455805e-05,-1.2705494208814505e-21,-0.0014580547576770186,5.013369082007557e-05,7.102272502379492e-05,0.0003946880460716784,-4.1188957265195527e-22,-9.595882775435074e-22,-7.1619556365476456e-06,-0.0,-1.014610370475566e-05,-1.9282188077340834e-05,3.713606565725058e-05,-1.591545697010588e-05,-7.049526106319116e-22,-4.1188957265195527e-22,1.0610305025693378e-06,9.89503574387269e-23,3.642018075934161e-23,0.0,-5.310724421057298e-24,1.0981109461466581e-23,6.68449210934341e-05,-8.912656085158233e-06,-1.3368983672989998e-05,-9.595882775435074e-22,9.89503574387269e-23,1.7825311715569114e-06,1.2794511040408072e-22,0.0,1.4693679385278594e-38,7.640713280344869e-38,5.013369082007557e-05,-6.684491836494999e-06,-1.6940658945086007e-21,-7.1619556365476456e-06,3.642018075934161e-23,1.2794511040408072e-22,9.549273727316177e-07,0.0,1.0587911840678754e-22,5.823351512373315e-22,7.284382445504889e-05,0.0,-4.856254963669926e-05,-0.0,0.0,0.0,0.0,4.856254690821515e-06,0.0,0.0,7.102272502379492e-05,-6.635378927352388e-22,-1.4204545550455805e-05,-1.014610370475566e-05,-5.310724421057298e-24,1.4693679385278594e-38,1.0587911840678754e-22,0.0,2.029220695476397e-06,2.117582368135751e-22,4.177807568339631e-05,-3.8116482626443515e-21,-1.2705494208814505e-21,-1.9282188077340834e-05,1.0981109461466581e-23,7.640713280344869e-38,5.823351512373315e-22,0.0,2.117582368135751e-22,1.3772992133453954e-06,16.0,11.0,16.0,0.013772618025541306,-0.0012926628114655614,-0.0018004743615165353,-0.0012926628114655614,3.481506064417772e-05,6.266710988711566e-05,4.423561040312052e-05,6.829108315287158e-05,6.266710988711566e-05,3.481506064417772e-05,-0.0012926628114655614,0.00032653604284860194,6.266710988711566e-05,4.423561040312052e-05,-1.4920740795787424e-05,-8.355615136679262e-06,-5.898081326449756e-06,0.0,2.0163250406222467e-21,-8.470329472543003e-22,-0.0018004743615165353,6.266710988711566e-05,0.0006787866004742682,6.266710988711566e-05,6.526265201555156e-22,-1.2533422705018893e-05,8.470329472543003e-22,-4.552738755592145e-05,-1.2533422705018893e-05,5.505714157152952e-21,-0.0012926628114655614,4.423561040312052e-05,6.266710988711566e-05,0.00032653604284860194,2.2742627656871273e-22,-1.5557531575695475e-21,-5.898081326449756e-06,-0.0,-8.355615136679262e-06,-1.4920740795787424e-05,3.481506064417772e-05,-1.4920740795787424e-05,6.526265201555156e-22,2.2742627656871273e-22,9.947160606316174e-07,-9.276595930994556e-23,-3.2960789031675904e-23,-0.0,5.749092848366804e-24,-5.561938261008674e-25,6.266710988711566e-05,-8.355615136679262e-06,-1.2533422705018893e-05,-1.5557531575695475e-21,-9.276595930994556e-23,1.6711229591237498e-06,2.0743375181825143e-22,0.0,-7.640713280344869e-38,2.350988701644575e-38,4.423561040312052e-05,-5.898081326449756e-06,8.470329472543003e-22,-5.898081326449756e-06,-3.2960789031675904e-23,2.0743375181825143e-22,7.864107942623377e-07,0.0,-2.6469779601696886e-22,1.0587911840678754e-22,6.829108315287158e-05,0.0,-4.552738755592145e-05,-0.0,-0.0,0.0,0.0,4.5527390284405556e-06,0.0,0.0,6.266710988711566e-05,2.0163250406222467e-21,-1.2533422705018893e-05,-8.355615136679262e-06,5.749092848366804e-24,-7.640713280344869e-38,-2.6469779601696886e-22,0.0,1.6711229591237498e-06,-6.88214269644119e-22,3.481506064417772e-05,-8.470329472543003e-22,5.505714157152952e-21,-1.4920740795787424e-05,-5.561938261008674e-25,2.350988701644575e-38,1.0587911840678754e-22,0.0,-6.88214269644119e-22,9.947160606316174e-07,16.0,12.0,3.0,0.05058439075946808,-0.005640397313982248,-0.00727213965728879,-0.02131645940244198,0.00017020697123371065,0.00028280544211156666,0.0009191176504828036,0.0002861721732188016,0.0012019231216982007,0.0026041667442768812,-0.005640397313982248,0.001505826716311276,0.00028280544211156666,0.0009191176504828036,-7.294584793271497e-05,-3.77073920390103e-05,-0.00012254902685526758,0.0,-0.0,-0.0,-0.00727213965728879,0.00028280544211156666,0.0026385991368442774,0.0012019231216982007,-9.54534245851236e-38,-5.141917063156143e-05,-2.7885056549206706e-20,-0.00017170330102089792,-0.00021853146608918905,3.050063279461932e-18,-0.02131645940244198,0.0009191176504828036,0.0012019231216982007,0.04735812544822693,-3.1462343703240757e-21,-2.7885056549206706e-20,-0.0009191176504828036,8.275695942360807e-19,-0.0012019231216982007,-0.015625,0.00017020697123371065,-7.294584793271497e-05,-9.54534245851236e-38,-3.1462343703240757e-21,4.863056346948724e-06,1.2727123745115968e-38,4.19497902579984e-22,0.0,-0.0,-0.0,0.00028280544211156666,-3.77073920390103e-05,-5.141917063156143e-05,-2.7885056549206706e-20,1.2727123745115968e-38,6.8558892962755635e-06,3.718007620673584e-21,0.0,0.0,-0.0,0.0009191176504828036,-0.00012254902685526758,-2.7885056549206706e-20,-0.0009191176504828036,4.19497902579984e-22,3.718007620673584e-21,0.00012254902685526758,0.0,0.0,-0.0,0.0002861721732188016,0.0,-0.00017170330102089792,8.275695942360807e-19,0.0,0.0,0.0,1.5609390175086446e-05,-4.9638665888432504e-20,-2.772784893508644e-19,0.0012019231216982007,-0.0,-0.00021853146608918905,-0.0012019231216982007,-0.0,0.0,0.0,-4.9638665888432504e-20,0.00021853146608918905,8.817598020578988e-34,0.0026041667442768812,-0.0,3.050063279461932e-18,-0.015625,-0.0,-0.0,-0.0,-2.772784893508644e-19,8.817598020578988e-34,0.0078125,16.0,12.0,4.0,0.04100555181503296,-0.004368165507912636,-0.005634393077343702,-0.013571125455200672,0.0001276552357012406,0.00021210407430771738,0.0005514706135727465,0.0002146291226381436,0.0007211538613773882,0.0013020833721384406,-0.004368165507912636,0.001147752394899726,0.00021210407430771738,0.0005514706135727465,-5.470938413054682e-05,-2.8280543119763024e-05,-7.352940883720294e-05,0.0,-0.0,-0.0,-0.005634393077343702,0.00021210407430771738,0.00201172917149961,0.0007211538613773882,-3.3881317890172014e-21,-3.856437615468167e-05,8.928724049010195e-21,-0.00012877747940365225,-0.00013111888256389648,1.0675221788309492e-18,-0.013571125455200672,0.0005514706135727465,0.0007211538613773882,0.01816200092434883,-3.0464007789723144e-21,8.928724049010195e-21,-0.0003676470660138875,4.549500089884129e-19,-0.000480769231216982,-0.00390625,0.0001276552357012406,-5.470938413054682e-05,-3.3881317890172014e-21,-3.0464007789723144e-21,3.647292260211543e-06,2.117582368135751e-22,4.06186777261255e-22,0.0,-0.0,-0.0,0.00021210407430771738,-2.8280543119763024e-05,-3.856437615468167e-05,8.928724049010195e-21,2.117582368135751e-22,5.141916972206673e-06,-1.1904964725518954e-21,0.0,0.0,-0.0,0.0005514706135727465,-7.352940883720294e-05,8.928724049010195e-21,-0.0003676470660138875,4.06186777261255e-22,-1.1904964725518954e-21,4.901960710412823e-05,0.0,0.0,-0.0,0.0002146291226381436,0.0,-0.00012877747940365225,4.549500089884129e-19,0.0,0.0,0.0,1.1707043086062185e-05,-2.9783200179294356e-20,-9.704746610292372e-20,0.0007211538613773882,-0.0,-0.00013111888256389648,-0.000480769231216982,-0.0,0.0,0.0,-2.9783200179294356e-20,8.741259080125019e-05,2.4689275192305136e-34,0.0013020833721384406,-0.0,1.0675221788309492e-18,-0.00390625,-0.0,-0.0,-0.0,-9.704746610292372e-20,2.4689275192305136e-34,0.0013020833721384406,16.0,12.0,5.0,0.03453952074050903,-0.003568061860278249,-0.0046036685816943645,-0.009419441223144531,0.00010212418419541791,0.00016968326235655695,0.0003676470660138875,0.00017170330102089792,0.000480769231216982,0.0007440476329065859,-0.003568061860278249,0.0009280058438889682,0.00016968326235655695,0.0003676470660138875,-4.376750803203322e-05,-2.2624433768214658e-05,-4.901960710412823e-05,0.0,0.0,-0.0,-0.0046036685816943645,0.00016968326235655695,0.001626865821890533,0.000480769231216982,2.9840431545718936e-21,-3.0851500923745334e-05,-1.0164395367051604e-20,-0.00010302197915734723,-8.741259080125019e-05,5.228679996275521e-19,-0.009419441223144531,0.0003676470660138875,0.000480769231216982,0.009174006059765816,-7.213036146043534e-22,-1.0164395367051604e-20,-0.00018382353300694376,2.5565684116873497e-19,-0.000240384615608491,-0.0014880952658131719,0.00010212418419541791,-4.376750803203322e-05,2.9840431545718936e-21,-7.213036146043534e-22,2.9178338536439696e-06,-2.567002610509658e-22,-2.431929681132137e-22,0.0,-0.0,-0.0,0.00016968326235655695,-2.2624433768214658e-05,-3.0851500923745334e-05,-1.0164395367051604e-20,-2.567002610509658e-22,4.113533577765338e-06,1.2705494208814505e-21,0.0,0.0,-0.0,0.0003676470660138875,-4.901960710412823e-05,-1.0164395367051604e-20,-0.00018382353300694376,-2.431929681132137e-22,1.2705494208814505e-21,2.4509803552064113e-05,0.0,-0.0,-0.0,0.00017170330102089792,0.0,-0.00010302197915734723,2.5565684116873497e-19,0.0,0.0,0.0,9.365634468849748e-06,-1.1913279748600316e-20,-4.7533452455393835e-20,0.000480769231216982,0.0,-8.741259080125019e-05,-0.000240384615608491,-0.0,0.0,-0.0,-1.1913279748600316e-20,4.3706295400625095e-05,6.046353213743026e-35,0.0007440476329065859,-0.0,5.228679996275521e-19,-0.0014880952658131719,-0.0,-0.0,-0.0,-4.7533452455393835e-20,6.046353213743026e-35,0.00037202381645329297,16.0,12.0,6.0,0.029860006645321846,-0.003017152426764369,-0.003893624758347869,-0.006927470676600933,8.510348561685532e-05,0.00014140272105578333,0.00026260505546815693,0.0001430860866094008,0.00034340660204179585,0.0004650297632906586,-0.003017152426764369,0.0007791738607920706,0.00014140272105578333,0.00026260505546815693,-3.6472923966357484e-05,-1.885369601950515e-05,-3.501400715322234e-05,2.0748519920782172e-35,-1.435323960460727e-20,-7.288754312534141e-20,-0.003893624758347869,0.00014140272105578333,0.001366127748042345,0.00034340660204179585,8.752637168319402e-22,-2.5709585315780714e-05,-2.1129503182641673e-20,-8.585165051044896e-05,-6.243756070034578e-05,1.695854931077188e-19,-0.006927470676600933,0.00026260505546815693,0.00034340660204179585,0.005328651983290911,4.53630916828713e-22,-7.623296525288703e-21,-0.0001050420178216882,1.9856642502806476e-19,-0.00013736264372710139,-0.0006975446594879031,8.510348561685532e-05,-3.6472923966357484e-05,8.752637168319402e-22,4.53630916828713e-22,2.431528173474362e-06,-7.727644193310305e-23,2.731678586651993e-23,-0.0,1.6245563624657299e-37,6.809836337218283e-38,0.00014140272105578333,-1.885369601950515e-05,-2.5709585315780714e-05,-7.623296525288703e-21,-7.727644193310305e-23,3.4279446481377818e-06,1.0587911840678754e-21,-0.0,4.617614303166202e-37,2.355320036725089e-36,0.00026260505546815693,-3.501400715322234e-05,-2.1129503182641673e-20,-0.0001050420178216882,2.731678586651993e-23,1.0587911840678754e-21,1.4005602679389995e-05,-8.299407681326943e-36,5.7412954379461246e-21,2.915501789637142e-20,0.0001430860866094008,2.0748519920782172e-35,-8.585165051044896e-05,1.9856642502806476e-19,-0.0,-0.0,-8.299407681326943e-36,7.804695087543223e-06,-1.1345980866818123e-20,-2.7232708313935003e-20,0.00034340660204179585,-1.435323960460727e-20,-6.243756070034578e-05,-0.00013736264372710139,1.6245563624657299e-37,4.617614303166202e-37,5.7412954379461246e-21,-1.1345980866818123e-20,2.4975024643936194e-05,5.198971352211281e-20,0.0004650297632906586,-7.288754312534141e-20,1.695854931077188e-19,-0.0006975446594879031,6.809836337218283e-38,2.355320036725089e-36,2.915501789637142e-20,-2.7232708313935003e-20,5.198971352211281e-20,0.00013950893480796367,16.0,12.0,7.0,0.02630884014070034,-0.002614266937598586,-0.003374186111614108,-0.005311860237270594,7.294584793271497e-05,0.00012120232713641599,0.00019695378432516009,0.0001226452150149271,0.0002575549588073045,0.0003100198518950492,-0.002614266937598586,0.000671614776365459,0.00012120232713641599,0.00019695378432516009,-3.126250521745533e-05,-1.6160311133717187e-05,-2.626050445542205e-05,0.0,0.0,-0.0,-0.003374186111614108,0.00012120232713641599,0.0011776563478633761,0.0002575549588073045,-1.5507142422731322e-21,-2.2036787413526326e-05,4.235164736271502e-21,-7.358712900895625e-05,-4.682817234424874e-05,1.8881343569348464e-19,-0.005311860237270594,0.00019695378432516009,0.0002575549588073045,0.0033827233128249645,-7.952198183146898e-23,3.3881317890172014e-21,-6.565126386703923e-05,1.0298914967933187e-19,-8.585165051044896e-05,-0.00037202381645329297,7.294584793271497e-05,-3.126250521745533e-05,-1.5507142422731322e-21,-7.952198183146898e-23,2.0841669083893066e-06,1.0656300401362898e-22,9.634001670335057e-23,0.0,0.0,-0.0,0.00012120232713641599,-1.6160311133717187e-05,-2.2036787413526326e-05,3.3881317890172014e-21,1.0656300401362898e-22,2.93823813990457e-06,-5.293955920339377e-22,0.0,0.0,-0.0,0.00019695378432516009,-2.626050445542205e-05,4.235164736271502e-21,-6.565126386703923e-05,9.634001670335057e-23,-5.293955920339377e-22,8.753501788305584e-06,0.0,0.0,-0.0,0.0001226452150149271,0.0,-7.358712900895625e-05,1.0298914967933187e-19,0.0,0.0,0.0,6.689738711429527e-06,0.0,-1.716485881841769e-20,0.0002575549588073045,0.0,-4.682817234424874e-05,-8.585165051044896e-05,0.0,0.0,0.0,0.0,1.5609390175086446e-05,-0.0,0.0003100198518950492,-0.0,1.8881343569348464e-19,-0.00037202381645329297,-0.0,-0.0,-0.0,-1.716485881841769e-20,-0.0,6.200397183420137e-05,16.0,12.0,8.0,0.023518582805991173,-0.0023066317662596703,-0.002977452939376235,-0.004203784745186567,6.38276178506203e-05,0.00010605203715385869,0.00015318627993110567,0.0001073145613190718,0.00020032051543239504,0.00021701389050576836,-0.0023066317662596703,0.0005902160773985088,0.00010605203715385869,0.00015318627993110567,-2.735469206527341e-05,-1.4140271559881512e-05,-2.0424837202881463e-05,0.0,0.0,-0.0,-0.002977452939376235,0.00010605203715385869,0.0010350020602345467,0.00020032051543239504,-7.548712238433179e-22,-1.9282188077340834e-05,2.964615315390051e-21,-6.438873970182613e-05,-3.6421912227524444e-05,1.2708597428581286e-19,-0.004203784745186567,0.00015318627993110567,0.00020032051543239504,0.0022861508186906576,4.544835934257227e-22,2.541098841762901e-21,-4.376750803203322e-05,1.19874691253758e-19,-5.723443246097304e-05,-0.00021701389050576836,6.38276178506203e-05,-2.735469206527341e-05,-7.548712238433179e-22,4.544835934257227e-22,1.8236461301057716e-06,1.1184045822600859e-22,-1.0415555199218826e-22,0.0,-0.0,-0.0,0.00010605203715385869,-1.4140271559881512e-05,-1.9282188077340834e-05,2.541098841762901e-21,1.1184045822600859e-22,2.5709584861033363e-06,-3.1763735522036263e-22,0.0,0.0,-0.0,0.00015318627993110567,-2.0424837202881463e-05,2.964615315390051e-21,-4.376750803203322e-05,-1.0415555199218826e-22,-3.1763735522036263e-22,5.835667707287939e-06,0.0,-0.0,-0.0,0.0001073145613190718,0.0,-6.438873970182613e-05,1.19874691253758e-19,0.0,0.0,0.0,5.853521543031093e-06,-7.091237637864543e-21,-1.1553269581825784e-20,0.00020032051543239504,0.0,-3.6421912227524444e-05,-5.723443246097304e-05,-0.0,0.0,-0.0,-7.091237637864543e-21,1.0406260116724297e-05,1.3996187357029023e-35,0.00021701389050576836,-0.0,1.2708597428581286e-19,-0.00021701389050576836,-0.0,-0.0,-0.0,-1.1553269581825784e-20,1.3996187357029023e-35,3.100198591710068e-05,16.0,12.0,9.0,0.02126680128276348,-0.0020639558788388968,-0.002664431231096387,-0.003410376375541091,5.673565829056315e-05,9.426847827853635e-05,0.00012254902685526758,9.5390721980948e-05,0.00016025641525629908,0.00015782828268129379,-0.0020639558788388968,0.0005264520295895636,9.426847827853635e-05,0.00012254902685526758,-2.431528082524892e-05,-1.25691303765052e-05,-1.633986903470941e-05,0.0,0.0,-0.0,-0.002664431231096387,9.426847827853635e-05,0.0009232393349520862,0.00016025641525629908,4.078689375187029e-40,-1.7139722331194207e-05,1.9740322006312053e-21,-5.723443246097304e-05,-2.9137529054423794e-05,8.978541486077341e-20,-0.003410376375541091,0.00012254902685526758,0.00016025641525629908,0.001619188580662012,-6.3301835683707056e-24,1.9740322006312053e-21,-3.0637256713816896e-05,8.956627015958368e-20,-4.006410381407477e-05,-0.00013528138515539467,5.673565829056315e-05,-2.431528082524892e-05,4.078689375187029e-40,-6.3301835683707056e-24,1.6210187823162414e-06,-5.438299210198183e-41,8.440244692089199e-25,0.0,-0.0,-0.0,9.426847827853635e-05,-1.25691303765052e-05,-1.7139722331194207e-05,1.9740322006312053e-21,-5.438299210198183e-41,2.2852964320918545e-06,-2.6320431192942995e-22,0.0,-0.0,-0.0,0.00012254902685526758,-1.633986903470941e-05,1.9740322006312053e-21,-3.0637256713816896e-05,8.440244692089199e-25,-2.6320431192942995e-22,4.084967258677352e-06,0.0,0.0,-0.0,9.5390721980948e-05,0.0,-5.723443246097304e-05,8.956627015958368e-20,0.0,0.0,0.0,5.203130058362149e-06,-4.4123255785095495e-21,-8.16231051532427e-21,0.00016025641525629908,0.0,-2.9137529054423794e-05,-4.006410381407477e-05,-0.0,-0.0,0.0,-4.4123255785095495e-21,7.2843822636059485e-06,6.921751117544299e-36,0.00015782828268129379,-0.0,8.978541486077341e-20,-0.00013528138515539467,-0.0,-0.0,-0.0,-8.16231051532427e-21,6.921751117544299e-36,1.6910173144424334e-05,16.0,12.0,10.0,0.019410543143749237,-0.0018675870960578322,-0.002411099849268794,-0.0028225909918546677,5.1062092097708955e-05,8.484163117827848e-05,0.00010026738164015114,8.585165051044896e-05,0.00013111888256389648,0.00011837121564894915,-0.0018675870960578322,0.0004751437227241695,8.484163117827848e-05,0.00010026738164015114,-2.188375401601661e-05,-1.1312216884107329e-05,-1.3368983672989998e-05,0.0,0.0,-0.0,-0.002411099849268794,8.484163117827848e-05,0.0008332993602380157,0.00013111888256389648,8.563011667446589e-22,-1.5425750461872667e-05,-2.3984033198521847e-21,-5.1510989578673616e-05,-2.3839796995162033e-05,6.585363863589089e-20,-0.0028225909918546677,0.00010026738164015114,0.00013111888256389648,0.0011895056813955307,-2.2270737374255306e-22,-2.3984033198521847e-21,-2.228163975814823e-05,5.3880250967974095e-20,-2.9137529054423794e-05,-8.877841173671186e-05,5.1062092097708955e-05,-2.188375401601661e-05,8.563011667446589e-22,-2.2270737374255306e-22,1.4589169268219848e-06,-1.1417349226509438e-22,2.969431481610381e-23,0.0,0.0,-0.0,8.484163117827848e-05,-1.1312216884107329e-05,-1.5425750461872667e-05,-2.3984033198521847e-21,-1.1417349226509438e-22,2.056766788882669e-06,3.197871210939475e-22,0.0,0.0,-0.0,0.00010026738164015114,-1.3368983672989998e-05,-2.3984033198521847e-21,-2.228163975814823e-05,2.969431481610381e-23,3.197871210939475e-22,2.970885361719411e-06,0.0,0.0,-0.0,8.585165051044896e-05,0.0,-5.1510989578673616e-05,5.3880250967974095e-20,0.0,0.0,0.0,4.682817234424874e-06,0.0,-5.986694237855179e-21,0.00013111888256389648,0.0,-2.3839796995162033e-05,-2.9137529054423794e-05,0.0,0.0,0.0,0.0,5.2977325140091125e-06,-0.0,0.00011837121564894915,-0.0,6.585363863589089e-20,-8.877841173671186e-05,-0.0,-0.0,-0.0,-5.986694237855179e-21,-0.0,9.864267667580862e-06,16.0,12.0,11.0,0.017853572964668274,-0.001705402391962707,-0.002201842376962304,-0.0023749228566884995,4.642008207156323e-05,7.712875230936334e-05,8.355615136679262e-05,7.804695633240044e-05,0.00010926573304459453,9.10547751118429e-05,-0.001705402391962707,0.00043296164949424565,7.712875230936334e-05,8.355615136679262e-05,-1.98943216673797e-05,-1.0283833944413345e-05,-1.1140819879074115e-05,0.0,0.0,-0.0,-0.002201842376962304,7.712875230936334e-05,0.0007593509508296847,0.00010926573304459453,4.082626183092703e-38,-1.4023409676156007e-05,1.4493428139182969e-21,-4.682817234424874e-05,-1.986649658647366e-05,4.976793224618952e-20,-0.0023749228566884995,8.355615136679262e-05,0.00010926573304459453,0.0008999068522825837,-4.707354407378219e-22,1.4493428139182969e-21,-1.6711230273358524e-05,6.69040804656508e-20,-2.1853147700312547e-05,-6.0703187045874074e-05,4.642008207156323e-05,-1.98943216673797e-05,4.082626183092703e-38,-4.707354407378219e-22,1.326288042946544e-06,-5.4435022313962206e-39,6.276472711461285e-23,0.0,-0.0,-0.0,7.712875230936334e-05,-1.0283833944413345e-05,-1.4023409676156007e-05,1.4493428139182969e-21,-5.4435022313962206e-39,1.8697879795581684e-06,-1.9324571609550427e-22,0.0,-0.0,-0.0,8.355615136679262e-05,-1.1140819879074115e-05,1.4493428139182969e-21,-1.6711230273358524e-05,6.276472711461285e-23,-1.9324571609550427e-22,2.228164021289558e-06,0.0,0.0,-0.0,7.804695633240044e-05,0.0,-4.682817234424874e-05,6.69040804656508e-20,0.0,0.0,0.0,4.2571064113872126e-06,-3.938274347127805e-21,-4.524357256618984e-21,0.00010926573304459453,0.0,-1.986649658647366e-05,-2.1853147700312547e-05,-0.0,-0.0,0.0,-3.938274347127805e-21,3.973299499193672e-06,4.185509639657696e-36,9.10547751118429e-05,-0.0,4.976793224618952e-20,-6.0703187045874074e-05,-0.0,-0.0,-0.0,-4.524357256618984e-21,4.185509639657696e-36,6.070318704587407e-06,16.0,12.0,12.0,0.016528651118278503,-0.0015691773733124137,-0.0020260601304471493,-0.0020260601304471493,4.255174280842766e-05,7.070136052789167e-05,7.070136052789167e-05,7.15430433047004e-05,9.245562250725925e-05,7.15430433047004e-05,-0.0015691773733124137,0.0003976670850533992,7.070136052789167e-05,7.070136052789167e-05,-1.8236461983178742e-05,-9.426848009752575e-06,-9.426848009752575e-06,0.0,0.0,-0.0,-0.0020260601304471493,7.070136052789167e-05,0.0006974725401960313,9.245562250725925e-05,5.048414256910932e-38,-1.2854792657890357e-05,-2.0439449163148834e-21,-4.292582525522448e-05,-1.681011235632468e-05,3.8544755388592845e-20,-0.0020260601304471493,7.070136052789167e-05,9.245562250725925e-05,0.0006974725401960313,3.1750517999797104e-22,-2.0439449163148834e-21,-1.2854792657890357e-05,5.3818189803812744e-20,-1.681011235632468e-05,-4.292582525522448e-05,4.255174280842766e-05,-1.8236461983178742e-05,5.048414256910932e-38,3.1750517999797104e-22,1.215764086737181e-06,-6.73121844869519e-39,-4.2334024841181104e-23,0.0,-0.0,-0.0,7.070136052789167e-05,-9.426848009752575e-06,-1.2854792657890357e-05,-2.0439449163148834e-21,-6.73121844869519e-39,1.7139723240688909e-06,2.7252599725650077e-22,0.0,-0.0,-0.0,7.070136052789167e-05,-9.426848009752575e-06,-2.0439449163148834e-21,-1.2854792657890357e-05,-4.2334024841181104e-23,2.7252599725650077e-22,1.7139723240688909e-06,0.0,0.0,-0.0,7.15430433047004e-05,0.0,-4.292582525522448e-05,5.3818189803812744e-20,0.0,0.0,0.0,3.9023475437716115e-06,-2.7769882958018634e-21,-3.5040687451260375e-21,9.245562250725925e-05,0.0,-1.681011235632468e-05,-1.681011235632468e-05,-0.0,-0.0,0.0,-2.7769882958018634e-21,3.0563842301489785e-06,2.4935649237256873e-36,7.15430433047004e-05,-0.0,3.8544755388592845e-20,-4.292582525522448e-05,-0.0,-0.0,-0.0,-3.5040687451260375e-21,2.4935649237256873e-36,3.9023475437716115e-06,16.0,12.0,13.0,0.015387343242764473,-0.0014531330671161413,-0.0018763052066788077,-0.0017488874727860093,3.9278533222386613e-05,6.526279321406037e-05,6.0601163568207994e-05,6.603972724406049e-05,7.924767851363868e-05,5.723443246097304e-05,-0.0014531330671161413,0.00036769884172827005,6.526279321406037e-05,6.0601163568207994e-05,-1.6833657355164178e-05,-8.701705155544914e-06,-8.080155566858593e-06,9.10878608184393e-21,1.3186930087036881e-21,2.541098841762901e-21,-0.0018763052066788077,6.526279321406037e-05,0.0006449291831813753,7.924767851363868e-05,1.4930675689809464e-22,-1.1865961823787075e-05,-4.235164736271502e-21,-3.962383925681934e-05,-1.4408667993848212e-05,2.286988957586611e-20,-0.0017488874727860093,6.0601163568207994e-05,7.924767851363868e-05,0.0005516377277672291,-6.517170581951044e-23,1.3938578971854552e-21,-1.0100194231199566e-05,4.431761334068348e-20,-1.3207945812609978e-05,-3.121878035017289e-05,3.9278533222386613e-05,-1.6833657355164178e-05,1.4930675689809464e-22,-6.517170581951044e-23,1.1222438160984893e-06,9.94912801230602e-39,1.9525184617546648e-23,4.8209919239418e-38,-2.4884459483015773e-23,4.304311060963983e-24,6.526279321406037e-05,-8.701705155544914e-06,-1.1865961823787075e-05,1.3938578971854552e-21,9.94912801230602e-39,1.5821283341210801e-06,2.5579040781554563e-22,-1.6561429147921513e-21,-6.022337826074098e-22,8.933757066249385e-37,6.0601163568207994e-05,-8.080155566858593e-06,-4.235164736271502e-21,-1.0100194231199566e-05,1.9525184617546648e-23,2.5579040781554563e-22,1.3466925565808197e-06,0.0,3.705769144237564e-22,-5.293955920339377e-22,6.603972724406049e-05,9.10878608184393e-21,-3.962383925681934e-05,4.431761334068348e-20,4.8209919239418e-38,-1.6561429147921513e-21,0.0,3.602166998462053e-06,-2.014079374506136e-21,-2.7700148158868076e-21,7.924767851363868e-05,1.3186930087036881e-21,-1.4408667993848212e-05,-1.3207945812609978e-05,-2.4884459483015773e-23,-6.022337826074098e-22,3.705769144237564e-22,-2.014079374506136e-21,2.401444817223819e-06,1.376428539288238e-21,5.723443246097304e-05,2.541098841762901e-21,2.286988957586611e-20,-3.121878035017289e-05,4.304311060963983e-24,8.933757066249385e-37,-5.293955920339377e-22,-2.7700148158868076e-21,1.376428539288238e-21,2.6015650291810744e-06,16.0,12.0,14.0,0.014393854886293411,-0.0013530893484130502,-0.001747189206071198,-0.0015250029973685741,3.6472923966357484e-05,6.0601163568207994e-05,5.25210089108441e-05,6.132260750746354e-05,6.868132186355069e-05,4.650297705666162e-05,-0.0013530893484130502,0.0003419348504394293,6.0601163568207994e-05,5.25210089108441e-05,-1.5631252608727664e-05,-8.080155566858593e-06,-7.002801339694997e-06,1.2495090972043392e-36,1.508557818420709e-21,-1.2705494208814505e-21,-0.001747189206071198,6.0601163568207994e-05,0.0005997547414153814,6.868132186355069e-05,-1.6710049280287703e-23,-1.1018393706763163e-05,2.752857078576476e-21,-3.679356450447813e-05,-1.2487512321968097e-05,2.879912020664621e-20,-0.0015250029973685741,5.25210089108441e-05,6.868132186355069e-05,0.00044387925299815834,1.4703314617327733e-22,1.0580421574829245e-21,-8.080155566858593e-06,2.8965696933673345e-20,-1.0566356650087982e-05,-2.325148852833081e-05,3.6472923966357484e-05,-1.5631252608727664e-05,-1.6710049280287703e-23,1.4703314617327733e-22,1.0420834541946533e-06,2.0431295947456557e-39,-1.5603165412014083e-23,2.2355927540163514e-38,2.570776599966326e-24,-3.156946203693267e-24,6.0601163568207994e-05,-8.080155566858593e-06,-1.1018393706763163e-05,1.0580421574829245e-21,2.0431295947456557e-39,1.469119069952285e-06,-1.4107228598148666e-22,0.0,2.938735877055719e-38,-1.1754943508222875e-38,5.25210089108441e-05,-7.002801339694997e-06,2.752857078576476e-21,-8.080155566858593e-06,-1.5603165412014083e-23,-1.4107228598148666e-22,1.0773539997899206e-06,-1.88079096131566e-37,-2.117582368135751e-22,1.5881867761018131e-22,6.132260750746354e-05,1.2495090972043392e-36,-3.679356450447813e-05,2.8965696933673345e-20,2.2355927540163514e-38,0.0,-1.88079096131566e-37,3.3448693557147635e-06,7.52316384526264e-37,-2.228130533359488e-21,6.868132186355069e-05,1.508557818420709e-21,-1.2487512321968097e-05,-1.0566356650087982e-05,2.570776599966326e-24,2.938735877055719e-38,-2.117582368135751e-22,7.52316384526264e-37,1.921155671880115e-06,-6.352747104407253e-22,4.650297705666162e-05,-1.2705494208814505e-21,2.879912020664621e-20,-2.325148852833081e-05,-3.156946203693267e-24,-1.1754943508222875e-38,1.5881867761018131e-22,-2.228130533359488e-21,-6.352747104407253e-22,1.7885760144054075e-06,16.0,12.0,15.0,0.013521147891879082,-0.0012659471249207854,-0.0016347164055332541,-0.0013415582943707705,3.404139351914637e-05,5.656108623952605e-05,4.595588325173594e-05,5.723443246097304e-05,6.009615390212275e-05,3.829656998277642e-05,-0.0012659471249207854,0.00031954768928699195,5.656108623952605e-05,4.595588325173594e-05,-1.4589169040846173e-05,-7.54147822590312e-06,-6.127450888016028e-06,1.2532168836152367e-35,2.3533550960042895e-21,4.235164736271502e-21,-0.0016347164055332541,5.656108623952605e-05,0.0005604995531029999,6.009615390212275e-05,-5.70030574568341e-23,-1.0283833944413345e-05,1.4823076576950256e-21,-3.4340660931775346e-05,-1.0926573850156274e-05,-3.176373552203626e-20,-0.0013415582943707705,4.595588325173594e-05,6.009615390212275e-05,0.0003625128010753542,-4.63362033587368e-23,-1.440952565061013e-21,-6.565126113855513e-06,-6.341951751178582e-20,-8.585165232943837e-06,-1.7675340131972916e-05,3.404139351914637e-05,-1.4589169040846173e-05,-5.70030574568341e-23,-4.63362033587368e-23,9.726112466523773e-07,-3.434787125635918e-39,-1.56492364666008e-23,4.449604670903022e-38,8.143293584321627e-24,7.90023607309217e-24,5.656108623952605e-05,-7.54147822590312e-06,-1.0283833944413345e-05,-1.440952565061013e-21,-3.434787125635918e-39,1.3711778592551127e-06,1.92127010357705e-22,-0.0,-8.228460455756013e-38,-1.410593220986745e-37,4.595588325173594e-05,-6.127450888016028e-06,1.4823076576950256e-21,-6.565126113855513e-06,-1.56492364666008e-23,1.92127010357705e-22,8.753501674618747e-07,-2.068870057447226e-36,-3.970466940254533e-22,-6.88214269644119e-22,5.723443246097304e-05,1.2532168836152367e-35,-3.4340660931775346e-05,-6.341951751178582e-20,4.449604670903022e-38,-0.0,-2.068870057447226e-36,3.1218780804920243e-06,2.2691961329739462e-21,3.638495692085491e-21,6.009615390212275e-05,2.3533550960042895e-21,-1.0926573850156274e-05,-8.585165232943837e-06,8.143293584321627e-24,-8.228460455756013e-38,-3.970466940254533e-22,2.2691961329739462e-21,1.5609390402460122e-06,-1.164670302474663e-21,3.829656998277642e-05,4.235164736271502e-21,-3.176373552203626e-20,-1.7675340131972916e-05,7.90023607309217e-24,-1.410593220986745e-37,-6.88214269644119e-22,3.638495692085491e-21,-1.164670302474663e-21,1.2625242788999458e-06,16.0,12.0,16.0,0.012748416513204575,-0.0011893596965819597,-0.0015358607051894069,-0.0011893596965819597,3.191380892531015e-05,5.3026018576929346e-05,4.0549308323534206e-05,5.36572806595359e-05,5.3026018576929346e-05,3.191380892531015e-05,-0.0011893596965819597,0.00029991386691108346,5.3026018576929346e-05,4.0549308323534206e-05,-1.3677346032636706e-05,-7.070135779940756e-06,-5.406574473454384e-06,-3.616816177304894e-36,-7.169796975888815e-22,3.1763735522036263e-21,-0.0015358607051894069,5.3026018576929346e-05,0.0005260708858259022,5.3026018576929346e-05,4.833011745426512e-22,-9.641094038670417e-06,2.117582368135751e-22,-3.219436985091306e-05,-9.641094038670417e-06,1.4823076576950256e-20,-0.0011893596965819597,4.0549308323534206e-05,5.3026018576929346e-05,0.00029991386691108346,7.693918969662478e-24,8.168001622951799e-22,-5.406574473454384e-06,3.22083063271923e-20,-7.070135779940756e-06,-1.3677346032636706e-05,3.191380892531015e-05,-1.3677346032636706e-05,4.833011745426512e-22,7.693918969662478e-24,9.118230650528858e-07,-7.135843266568399e-23,-2.6046106075329837e-23,-1.7215677506834898e-38,6.918273062325728e-24,9.280482333130218e-24,5.3026018576929346e-05,-7.070135779940756e-06,-9.641094038670417e-06,8.168001622951799e-22,-7.135843266568399e-23,1.2854792430516682e-06,-1.0890669083037888e-22,-0.0,-1.7632415262334313e-38,6.465218929522581e-38,4.0549308323534206e-05,-5.406574473454384e-06,2.117582368135751e-22,-5.406574473454384e-06,-2.6046106075329837e-23,-1.0890669083037888e-22,7.208765850919008e-07,5.64237288394698e-37,1.0587911840678754e-22,-4.235164736271502e-22,5.36572806595359e-05,-3.616816177304894e-36,-3.219436985091306e-05,3.22083063271923e-20,-1.7215677506834898e-38,-0.0,5.64237288394698e-37,2.9267607715155464e-06,-1.751952785412757e-21,-1.5048376261223336e-21,5.3026018576929346e-05,-7.169796975888815e-22,-9.641094038670417e-06,-7.070135779940756e-06,6.918273062325728e-24,-1.7632415262334313e-38,1.0587911840678754e-22,-1.751952785412757e-21,1.2854792430516682e-06,3.1763735522036263e-22,3.191380892531015e-05,3.1763735522036263e-21,1.4823076576950256e-20,-1.3677346032636706e-05,9.280482333130218e-24,6.465218929522581e-38,-4.235164736271502e-22,-1.5048376261223336e-21,3.1763735522036263e-22,9.118230650528858e-07,16.0,13.0,3.0,0.04715892672538757,-0.005225167144089937,-0.006282320711761713,-0.019755979999899864,0.00015711413288954645,0.00024240465427283198,0.0008484162972308695,0.00022893772984389216,0.001030219835229218,0.0024038462433964014,-0.005225167144089937,0.0013924801023676991,0.00024240465427283198,0.0008484162972308695,-6.733462942065671e-05,-3.2320622267434373e-05,-0.0001131221724790521,7.357570408061012e-21,0.0,-0.0,-0.006282320711761713,0.00024240465427283198,0.002087679458782077,0.001030219835229218,-2.07033674383737e-21,-4.0400776924798265e-05,1.4758268914661287e-20,-0.00012487512140069157,-0.00017170330102089792,-0.0,-0.019755979999899864,0.0008484162972308695,0.001030219835229218,0.04379444196820259,1.792466662020991e-21,1.3217069874761607e-20,-0.0008484162972308695,8.948893644634885e-22,-0.001030219835229218,-0.014423076994717121,0.00015711413288954645,-6.733462942065671e-05,-2.07033674383737e-21,1.792466662020991e-21,4.488975264393957e-06,4.365566346912666e-23,-2.389955465216158e-22,1.3493569282356172e-22,0.0,-0.0,0.00024240465427283198,-3.2320622267434373e-05,-4.0400776924798265e-05,1.3217069874761607e-20,4.365566346912666e-23,5.386770226323279e-06,-1.7622759833015476e-21,-1.232749225787177e-21,0.0,-0.0,0.0008484162972308695,-0.0001131221724790521,1.4758268914661287e-20,-0.0008484162972308695,-2.389955465216158e-22,-1.7622759833015476e-21,0.0001131221724790521,-1.1931858192846514e-22,0.0,-0.0,0.00022893772984389216,7.357570408061012e-21,-0.00012487512140069157,8.948893644634885e-22,1.3493569282356172e-22,-1.232749225787177e-21,-1.1931858192846514e-22,1.0406260116724297e-05,0.0,-0.0,0.001030219835229218,0.0,-0.00017170330102089792,-0.001030219835229218,0.0,0.0,0.0,0.0,0.00017170330102089792,-0.0,0.0024038462433964014,-0.0,-0.0,-0.014423076994717121,-0.0,-0.0,-0.0,-0.0,-0.0,0.0072115384973585606,16.0,13.0,4.0,0.03821239992976189,-0.004046137910336256,-0.004866273608058691,-0.012574741616845131,0.00011783559602918103,0.0001818034943426028,0.0005090498016215861,0.00017170330102089792,0.0006181318894959986,0.0012019231216982007,-0.004046137910336256,0.0010613283375278115,0.0001818034943426028,0.0005090498016215861,-5.050097024650313e-05,-2.424046579108108e-05,-6.787330494262278e-05,3.803545285374313e-21,-2.7600656264195133e-21,-0.0,-0.004866273608058691,0.0001818034943426028,0.001591515145264566,0.0006181318894959986,-4.730543131459371e-22,-3.0300581784103997e-05,1.1258013964913195e-21,-9.365634468849748e-05,-0.00010302197915734723,-0.0,-0.012574741616845131,0.0005090498016215861,0.0006181318894959986,0.016796622425317764,4.859948227761512e-21,-3.195083464852845e-21,-0.0003393665247131139,2.451202928820105e-21,-0.00041208791662938893,-0.0036057692486792803,0.00011783559602918103,-5.050097024650313e-05,-4.730543131459371e-22,4.859948227761512e-21,3.3667313346086303e-06,-2.010497592586747e-22,-6.294399165324761e-22,1.3897805591562937e-22,-2.319144880671932e-23,-0.0,0.0001818034943426028,-2.424046579108108e-05,-3.0300581784103997e-05,-3.195083464852845e-21,-2.010497592586747e-22,4.040077783429297e-06,-5.0929262360130185e-24,-5.256122908631446e-22,5.388800982518461e-22,-0.0,0.0005090498016215861,-6.787330494262278e-05,1.1258013964913195e-21,-0.0003393665247131139,-6.294399165324761e-22,-5.0929262360130185e-24,4.5248867536429316e-05,-7.650858366062264e-23,-6.62457178538635e-23,-0.0,0.00017170330102089792,3.803545285374313e-21,-9.365634468849748e-05,2.451202928820105e-21,1.3897805591562937e-22,-5.256122908631446e-22,-7.650858366062264e-23,7.804695087543223e-06,-3.128981060937355e-22,-0.0,0.0006181318894959986,-2.7600656264195133e-21,-0.00010302197915734723,-0.00041208791662938893,-2.319144880671932e-23,5.388800982518461e-22,-6.62457178538635e-23,-3.128981060937355e-22,6.868132186355069e-05,-0.0,0.0012019231216982007,-0.0,-0.0,-0.0036057692486792803,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012019231216982007,16.0,13.0,5.0,0.0321778729557991,-0.0033047834876924753,-0.003975436557084322,-0.008726567961275578,9.426847827853635e-05,0.00014544279838446528,0.0003393665247131139,0.00013736264372710139,0.00041208791662938893,0.0006868132040835917,-0.0033047834876924753,0.000858112471178174,0.00014544279838446528,0.0003393665247131139,-4.0400776924798265e-05,-1.939237154147122e-05,-4.5248867536429316e-05,6.776263578034403e-21,0.0,-0.0,-0.003975436557084322,0.00014544279838446528,0.0012869483325630426,0.00041208791662938893,9.606069052314268e-22,-2.424046579108108e-05,-6.170403736322716e-23,-7.492507575079799e-05,-6.868132186355069e-05,-0.0,-0.008726567961275578,0.0003393665247131139,0.00041208791662938893,0.00848416332155466,4.275542802586293e-22,1.4178843915479526e-23,-0.00016968326235655695,6.776263578034403e-21,-0.00020604395831469446,-0.0013736264081671834,9.426847827853635e-05,-4.0400776924798265e-05,9.606069052314268e-22,4.275542802586293e-22,2.6933851131616393e-06,6.566408755300043e-23,-7.120829034731508e-23,-1.166694986563116e-22,-1.8545531391510693e-23,-0.0,0.00014544279838446528,-1.939237154147122e-05,-2.424046579108108e-05,1.4178843915479526e-23,6.566408755300043e-23,3.232061999369762e-06,-1.0475778102900846e-22,-8.470329472543003e-22,-2.117582368135751e-22,-0.0,0.0003393665247131139,-4.5248867536429316e-05,-6.170403736322716e-23,-0.00016968326235655695,-7.120829034731508e-23,-1.0475778102900846e-22,2.2624433768214658e-05,3.465958994701668e-24,4.262675376816871e-24,-0.0,0.00013736264372710139,6.776263578034403e-21,-7.492507575079799e-05,6.776263578034403e-21,-1.166694986563116e-22,-8.470329472543003e-22,3.465958994701668e-24,6.243756160984049e-06,-8.470329472543003e-22,-0.0,0.00041208791662938893,0.0,-6.868132186355069e-05,-0.00020604395831469446,-1.8545531391510693e-23,-2.117582368135751e-22,4.262675376816871e-24,-8.470329472543003e-22,3.4340660931775346e-05,-0.0,0.0006868132040835917,-0.0,-0.0,-0.0013736264081671834,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034340660204179585,16.0,13.0,6.0,0.027812888845801353,-0.002794387051835656,-0.0033619217574596405,-0.006417230237275362,7.855706644477323e-05,0.00012120232713641599,0.00024240465427283198,0.00011446886492194608,0.000294348516035825,0.0004292582452762872,-0.002794387051835656,0.0007204805151559412,0.00012120232713641599,0.00024240465427283198,-3.3667314710328355e-05,-1.6160311133717187e-05,-3.2320622267434373e-05,4.235164736271502e-21,2.541098841762901e-21,-0.0,-0.0033619217574596405,0.00012120232713641599,0.0010806332575157285,0.000294348516035825,-1.1822927230343803e-21,-2.0200388462399133e-05,3.6715905906264984e-21,-6.243756070034578e-05,-4.9058086005970836e-05,-0.0,-0.006417230237275362,0.00024240465427283198,0.000294348516035825,0.004927812609821558,8.871554478793486e-22,5.229153912605377e-21,-9.696186316432431e-05,0.0,-0.00011773940059356391,-0.000643887382466346,7.855706644477323e-05,-3.3667314710328355e-05,-1.1822927230343803e-21,8.871554478793486e-22,2.2444876321969787e-06,1.7822484520523546e-22,-9.35970842270247e-23,4.862141428316538e-24,-1.0337675064123062e-24,-0.0,0.00012120232713641599,-1.6160311133717187e-05,-2.0200388462399133e-05,5.229153912605377e-21,1.7822484520523546e-22,2.6933851131616393e-06,-4.997654715628572e-22,-4.235164736271502e-22,-4.235164736271502e-22,-0.0,0.00024240465427283198,-3.2320622267434373e-05,3.6715905906264984e-21,-9.696186316432431e-05,-9.35970842270247e-23,-4.997654715628572e-22,1.2928247997479048e-05,2.9019046725791e-23,-2.2215656265953516e-23,-0.0,0.00011446886492194608,4.235164736271502e-21,-6.243756070034578e-05,0.0,4.862141428316538e-24,-4.235164736271502e-22,2.9019046725791e-23,5.203130058362149e-06,-4.235164736271502e-22,-0.0,0.000294348516035825,2.541098841762901e-21,-4.9058086005970836e-05,-0.00011773940059356391,-1.0337675064123062e-24,-4.235164736271502e-22,-2.2215656265953516e-23,-4.235164736271502e-22,1.9623234038590454e-05,-0.0,0.0004292582452762872,-0.0,-0.0,-0.000643887382466346,-0.0,-0.0,-0.0,-0.0,-0.0,0.00012877747940365225,16.0,13.0,7.0,0.024501627311110497,-0.0024211606942117214,-0.0029131844639778137,-0.004920237231999636,6.733462942065671e-05,0.00010388770897407085,0.0001818034943426028,9.811617201194167e-05,0.00022076138702686876,0.0002861721732188016,-0.0024211606942117214,0.0006210176507011056,0.00010388770897407085,0.0001818034943426028,-2.8857697543571703e-05,-1.3851694347977173e-05,-2.424046579108108e-05,1.3298417271892515e-19,1.0842021724855044e-19,4.770151552258415e-19,-0.0029131844639778137,0.00010388770897407085,0.000931513321120292,0.00022076138702686876,1.1110176877338543e-19,-1.731461816234514e-05,8.5279387247982e-20,-5.3517909691436216e-05,-3.679356450447813e-05,1.5436045845185606e-19,-0.004920237231999636,0.0001818034943426028,0.00022076138702686876,0.0031281744595617056,1.9611370526487432e-19,7.97472485476671e-20,-6.0601163568207994e-05,-4.2351647362715017e-20,-7.358712900895625e-05,-0.00034340660204179585,6.733462942065671e-05,-2.8857697543571703e-05,1.1110176877338543e-19,1.9611370526487432e-19,1.92384641195531e-06,-2.1019000657754468e-21,-3.739568842665732e-21,-6.6408579891685934e-21,-5.924453743521965e-21,-2.2426935973431097e-20,0.00010388770897407085,-1.3851694347977173e-05,-1.731461816234514e-05,7.97472485476671e-20,-2.1019000657754468e-21,2.308615648871637e-06,-1.0179707498009855e-21,-3.5998900258307764e-21,-1.6940658945086007e-21,-1.1533852647857095e-20,0.0001818034943426028,-2.424046579108108e-05,8.5279387247982e-20,-6.0601163568207994e-05,-3.739568842665732e-21,-1.0179707498009855e-21,8.080155566858593e-06,-5.562424092830068e-21,-6.4761888666498034e-21,-2.7789685209518756e-20,9.811617201194167e-05,1.3298417271892515e-19,-5.3517909691436216e-05,-4.2351647362715017e-20,-6.6408579891685934e-21,-3.5998900258307764e-21,-5.562424092830068e-21,4.459825959202135e-06,8.046812998915853e-21,4.6213078327303136e-21,0.00022076138702686876,1.0842021724855044e-19,-3.679356450447813e-05,-7.358712900895625e-05,-5.924453743521965e-21,-1.6940658945086007e-21,-6.4761888666498034e-21,8.046812998915853e-21,1.2264521501492709e-05,-4.715579926932363e-20,0.0002861721732188016,4.770151552258415e-19,1.5436045845185606e-19,-0.00034340660204179585,-2.2426935973431097e-20,-1.1533852647857095e-20,-2.7789685209518756e-20,4.6213078327303136e-21,-4.715579926932363e-20,5.723443246097304e-05,16.0,13.0,8.0,0.021900586783885956,-0.0021361911203712225,-0.0025704994332045317,-0.003893624758347869,5.891779801459052e-05,9.09017471713014e-05,0.00014140272105578333,8.585165051044896e-05,0.00017170330102089792,0.00020032051543239504,-0.0021361911203712225,0.0005457471706904471,9.09017471713014e-05,0.00014140272105578333,-2.5250485123251565e-05,-1.212023289554054e-05,-1.885369601950515e-05,2.541098841762901e-21,-8.470329472543003e-22,-0.0,-0.0025704994332045317,9.09017471713014e-05,0.0008186513441614807,0.00017170330102089792,2.356557593600448e-21,-1.5150290892051999e-05,1.13045135918525e-21,-4.682817234424874e-05,-2.861721623048652e-05,-0.0,-0.003893624758347869,0.00014140272105578333,0.00017170330102089792,0.002114066854119301,2.40363236955942e-21,-6.602250303429961e-22,-4.0400776924798265e-05,-1.6940658945086007e-21,-4.9058086005970836e-05,-0.00020032051543239504,5.891779801459052e-05,-2.5250485123251565e-05,2.356557593600448e-21,2.40363236955942e-21,1.6833656673043151e-06,-1.842809493072789e-22,-3.0363339545668336e-22,-7.862255418177219e-23,-1.497235594459772e-23,-0.0,9.09017471713014e-05,-1.212023289554054e-05,-1.5150290892051999e-05,-6.602250303429961e-22,-1.842809493072789e-22,2.0200388917146483e-06,-1.81279100060085e-22,-3.1763735522036263e-22,2.117582368135751e-22,-0.0,0.00014140272105578333,-1.885369601950515e-05,1.13045135918525e-21,-4.0400776924798265e-05,-3.0363339545668336e-22,-1.81279100060085e-22,5.386770226323279e-06,-1.6483576780729614e-23,-1.8652201163114678e-23,-0.0,8.585165051044896e-05,2.541098841762901e-21,-4.682817234424874e-05,-1.6940658945086007e-21,-7.862255418177219e-23,-3.1763735522036263e-22,-1.6483576780729614e-23,3.9023475437716115e-06,2.117582368135751e-22,-0.0,0.00017170330102089792,-8.470329472543003e-22,-2.861721623048652e-05,-4.9058086005970836e-05,-1.497235594459772e-23,2.117582368135751e-22,-1.8652201163114678e-23,2.117582368135751e-22,8.176347364496905e-06,-0.0,0.00020032051543239504,-0.0,-0.0,-0.00020032051543239504,-0.0,-0.0,-0.0,-0.0,-0.0,2.861721623048652e-05,16.0,13.0,9.0,0.01980195753276348,-0.0019114055903628469,-0.002300150925293565,-0.0031586061231791973,5.237137520452961e-05,8.080155384959653e-05,0.0001131221724790521,7.631257903994992e-05,0.00013736264372710139,0.00014568764891009778,-0.0019114055903628469,0.00048678446910344064,8.080155384959653e-05,0.0001131221724790521,-2.2444875867222436e-05,-1.0773540452646557e-05,-1.508295645180624e-05,-6.098637220230962e-20,-1.6135977645194421e-19,-4.346762257650445e-19,-0.002300150925293565,8.080155384959653e-05,0.0007302337908186018,0.00013736264372710139,-6.435097458030881e-20,-1.3466925338434521e-05,-1.397438409859202e-19,-4.162504046689719e-05,-2.2893773348187096e-05,-4.890962831685433e-19,-0.0031586061231791973,0.0001131221724790521,0.00013736264372710139,0.0014972771750763059,-2.557561286916355e-19,-1.936888769979634e-19,-2.8280543119763024e-05,-3.3711911300721153e-19,-3.4340660931775346e-05,-0.00012487512140069157,5.237137520452961e-05,-2.2444875867222436e-05,-6.435097458030881e-20,-2.557561286916355e-19,1.496325012340094e-06,2.393428321221754e-21,6.748300188127422e-21,1.7123826136391084e-21,6.1693811958847066e-21,1.9520819452572164e-20,8.080155384959653e-05,-1.0773540452646557e-05,-1.3466925338434521e-05,-1.936888769979634e-19,2.393428321221754e-21,1.7955900375454803e-06,4.1762596215762094e-21,1.2705494208814505e-21,5.929230630780102e-21,1.4322171864022515e-20,0.0001131221724790521,-1.508295645180624e-05,-1.397438409859202e-19,-2.8280543119763024e-05,6.748300188127422e-21,4.1762596215762094e-21,3.77073911295156e-06,6.2632314602860965e-21,6.88045521567984e-21,1.2460411256190127e-20,7.631257903994992e-05,-6.098637220230962e-20,-4.162504046689719e-05,-3.3711911300721153e-19,1.7123826136391084e-21,1.2705494208814505e-21,6.2632314602860965e-21,3.4687534480326576e-06,9.317362419797304e-21,2.6407474483878316e-20,0.00013736264372710139,-1.6135977645194421e-19,-2.2893773348187096e-05,-3.4340660931775346e-05,6.1693811958847066e-21,5.929230630780102e-21,6.88045521567984e-21,9.317362419797304e-21,5.723443337046774e-06,1.388692461221617e-20,0.00014568764891009778,-4.346762257650445e-19,-4.890962831685433e-19,-0.00012487512140069157,1.9520819452572164e-20,1.4322171864022515e-20,1.2460411256190127e-20,2.6407474483878316e-20,1.388692461221617e-20,1.5609390175086446e-05,16.0,13.0,10.0,0.01807224564254284,-0.0017295205034315586,-0.00208137440495193,-0.002614113735035062,4.7134239139268175e-05,7.272139919223264e-05,9.2554502771236e-05,6.868132186355069e-05,0.00011238761362619698,0.00010926573304459453,-0.0017295205034315586,0.00043934007408097386,7.272139919223264e-05,9.2554502771236e-05,-2.0200388462399133e-05,-9.69618577073561e-06,-1.2340600733296014e-05,3.3881317890172014e-21,4.235164736271502e-22,-0.0,-0.00208137440495193,7.272139919223264e-05,0.0006590835400857031,0.00011238761362619698,-2.0801071837344284e-22,-1.212023289554054e-05,1.2091909866362443e-22,-3.7462537875398993e-05,-1.8731268937699497e-05,-0.0,-0.002614113735035062,9.2554502771236e-05,0.00011238761362619698,0.001099926419556141,2.8831399435632995e-22,4.0144661936686503e-22,-2.056766788882669e-05,0.0,-2.4975024643936194e-05,-8.19492997834459e-05,4.7134239139268175e-05,-2.0200388462399133e-05,-2.0801071837344284e-22,2.8831399435632995e-22,1.3466925565808197e-06,4.4317191969053234e-24,-3.805783075503146e-23,1.3698041082356372e-23,-4.800459703884015e-25,-0.0,7.272139919223264e-05,-9.69618577073561e-06,-1.212023289554054e-05,4.0144661936686503e-22,4.4317191969053234e-24,1.616030999684881e-06,-1.6122546698846165e-23,-6.352747104407253e-22,-5.293955920339377e-23,-0.0,9.2554502771236e-05,-1.2340600733296014e-05,1.2091909866362443e-22,-2.056766788882669e-05,-3.805783075503146e-23,-1.6122546698846165e-23,2.7423557185102254e-06,7.346839692639297e-39,7.346839692639297e-40,-0.0,6.868132186355069e-05,3.3881317890172014e-21,-3.7462537875398993e-05,0.0,1.3698041082356372e-23,-6.352747104407253e-22,7.346839692639297e-39,3.1218780804920243e-06,0.0,-0.0,0.00011238761362619698,4.235164736271502e-22,-1.8731268937699497e-05,-2.4975024643936194e-05,-4.800459703884015e-25,-5.293955920339377e-23,7.346839692639297e-40,0.0,4.162503955740249e-06,-0.0,0.00010926573304459453,-0.0,-0.0,-8.19492997834459e-05,-0.0,-0.0,-0.0,-0.0,-0.0,9.105478056881111e-06,16.0,13.0,11.0,0.016621623188257217,-0.0015793030615895987,-0.0019006729125976562,-0.0021994407288730145,4.284930764697492e-05,6.611036224057898e-05,7.712875230936334e-05,6.243756070034578e-05,9.365634468849748e-05,8.405056723859161e-05,-0.0015793030615895987,0.0004003349458798766,6.611036224057898e-05,7.712875230936334e-05,-1.836398951127194e-05,-8.81471441971371e-06,-1.0283833944413345e-05,1.6940658945086007e-21,-2.117582368135751e-22,-0.0,-0.0019006729125976562,6.611036224057898e-05,0.0006005858886055648,9.365634468849748e-05,-1.8785689996685643e-22,-1.1018393706763163e-05,0.0,-3.40568512910977e-05,-1.5609390175086446e-05,-0.0,-0.0021994407288730145,7.712875230936334e-05,9.365634468849748e-05,0.0008321241475641727,3.9341859019370977e-22,-2.0843893731634577e-22,-1.5425750461872667e-05,0.0,-1.8731268937699497e-05,-5.6033710279734805e-05,4.284930764697492e-05,-1.836398951127194e-05,-1.8785689996685643e-22,3.9341859019370977e-22,1.2242659295225167e-06,3.350892982052963e-24,-5.708674613254719e-23,1.0357305867749487e-23,5.7886664501076686e-24,-0.0,6.611036224057898e-05,-8.81471441971371e-06,-1.1018393706763163e-05,-2.0843893731634577e-22,3.350892982052963e-24,1.469119069952285e-06,0.0,-3.1763735522036263e-22,0.0,-0.0,7.712875230936334e-05,-1.0283833944413345e-05,0.0,-1.5425750461872667e-05,-5.708674613254719e-23,0.0,2.056766788882669e-06,0.0,0.0,-0.0,6.243756070034578e-05,1.6940658945086007e-21,-3.40568512910977e-05,0.0,1.0357305867749487e-23,-3.1763735522036263e-22,0.0,2.8380709409248084e-06,-1.0587911840678754e-22,-0.0,9.365634468849748e-05,-2.117582368135751e-22,-1.5609390175086446e-05,-1.8731268937699497e-05,5.7886664501076686e-24,0.0,0.0,-1.0587911840678754e-22,3.1218780804920243e-06,-0.0,8.405056723859161e-05,-0.0,-0.0,-5.6033710279734805e-05,-0.0,-0.0,-0.0,-0.0,-0.0,5.60337093702401e-06,16.0,13.0,12.0,0.015387343242764473,-0.0014531330671161413,-0.0017488874727860093,-0.0018763052066788077,3.9278533222386613e-05,6.0601163568207994e-05,6.526279321406037e-05,5.723443246097304e-05,7.924767851363868e-05,6.603972724406049e-05,-0.0014531330671161413,0.00036769884172827005,6.0601163568207994e-05,6.526279321406037e-05,-1.6833657355164178e-05,-8.080155566858593e-06,-8.701705155544914e-06,3.8116482626443515e-21,3.8116482626443515e-21,9.10878608184393e-21,-0.0017488874727860093,6.0601163568207994e-05,0.0005516377277672291,7.924767851363868e-05,-6.873351378077918e-23,-1.0100194231199566e-05,4.474969565729453e-21,-3.121878035017289e-05,-1.3207945812609978e-05,1.3825836031509422e-20,-0.0018763052066788077,6.526279321406037e-05,7.924767851363868e-05,0.0006449291831813753,3.465483627120182e-22,1.397504277346651e-21,-1.1865961823787075e-05,8.470329472543003e-22,-1.4408667993848212e-05,-3.962383925681934e-05,3.9278533222386613e-05,-1.6833657355164178e-05,-6.873351378077918e-23,3.465483627120182e-22,1.1222438160984893e-06,2.6723509217682624e-24,-3.7769981721603555e-23,8.259993722335497e-24,-1.0545583299998586e-23,3.31623839659281e-38,6.0601163568207994e-05,-8.080155566858593e-06,-1.0100194231199566e-05,1.397504277346651e-21,2.6723509217682624e-24,1.3466925565808197e-06,-1.5502448384800895e-22,-5.293955920339377e-22,-1.0587911840678754e-22,2.254134987530021e-37,6.526279321406037e-05,-8.701705155544914e-06,4.474969565729453e-21,-1.1865961823787075e-05,-3.7769981721603555e-23,-1.5502448384800895e-22,1.5821283341210801e-06,9.4039548065783e-38,-6.022337826074098e-22,-1.6561429147921513e-21,5.723443246097304e-05,3.8116482626443515e-21,-3.121878035017289e-05,8.470329472543003e-22,8.259993722335497e-24,-5.293955920339377e-22,9.4039548065783e-38,2.6015650291810744e-06,-2.117582368135751e-22,-9.683832225222196e-38,7.924767851363868e-05,3.8116482626443515e-21,-1.3207945812609978e-05,-1.4408667993848212e-05,-1.0545583299998586e-23,-1.0587911840678754e-22,-6.022337826074098e-22,-2.117582368135751e-22,2.401444817223819e-06,-2.5137883510064048e-21,6.603972724406049e-05,9.10878608184393e-21,1.3825836031509422e-20,-3.962383925681934e-05,3.31623839659281e-38,2.254134987530021e-37,-1.6561429147921513e-21,-9.683832225222196e-38,-2.5137883510064048e-21,3.602166998462053e-06,16.0,13.0,13.0,0.014324220828711987,-0.0013456565793603659,-0.001619582762941718,-0.001619582762941718,3.625710814958438e-05,5.593953392235562e-05,5.593953392235562e-05,5.283178325043991e-05,6.792657950427383e-05,5.283178325043991e-05,-0.0013456565793603659,0.0003399880661163479,5.593953392235562e-05,5.593953392235562e-05,-1.5538760635536164e-05,-7.45860461393022e-06,-7.45860461393022e-06,1.6940658945086007e-21,-1.2600511842241224e-22,2.117582368135751e-21,-0.001619582762941718,5.593953392235562e-05,0.0005100749549455941,6.792657950427383e-05,1.7257747202629238e-22,-9.323255653725937e-06,-2.329340604949326e-21,-2.8817335987696424e-05,-1.1321096280880738e-05,-8.470329472543003e-22,-0.001619582762941718,5.593953392235562e-05,6.792657950427383e-05,0.0005100749549455941,5.349133900760328e-23,-2.2799349406529306e-21,-9.323255653725937e-06,1.2777996710673813e-22,-1.1321096280880738e-05,-2.8817335987696424e-05,3.625710814958438e-05,-1.5538760635536164e-05,1.7257747202629238e-22,5.349133900760328e-23,1.0359173074903083e-06,-6.236378382636884e-23,-4.576194101872849e-23,2.0530340138926588e-23,4.994559619866937e-24,2.011013128965527e-23,5.593953392235562e-05,-7.45860461393022e-06,-9.323255653725937e-06,-2.2799349406529306e-21,-6.236378382636884e-23,1.24310076898837e-06,3.295319892759023e-22,-4.235164736271502e-22,-2.8806256229773066e-23,-1.0125900423735824e-24,5.593953392235562e-05,-7.45860461393022e-06,-2.329340604949326e-21,-9.323255653725937e-06,-4.576194101872849e-23,3.295319892759023e-22,1.24310076898837e-06,0.0,-2.6469779601696886e-23,-3.1763735522036263e-22,5.283178325043991e-05,1.6940658945086007e-21,-2.8817335987696424e-05,1.2777996710673813e-22,2.0530340138926588e-23,-4.235164736271502e-22,0.0,2.401444817223819e-06,0.0,0.0,6.792657950427383e-05,-1.2600511842241224e-22,-1.1321096280880738e-05,-1.1321096280880738e-05,4.994559619866937e-24,-2.8806256229773066e-23,-2.6469779601696886e-23,0.0,1.8868494180424022e-06,1.0587911840678754e-22,5.283178325043991e-05,2.117582368135751e-21,-8.470329472543003e-22,-2.8817335987696424e-05,2.011013128965527e-23,-1.0125900423735824e-24,-3.1763735522036263e-22,0.0,1.0587911840678754e-22,2.401444817223819e-06,16.0,13.0,14.0,0.013398868963122368,-0.0012530011590570211,-0.0015081032179296017,-0.0014122235588729382,3.3667314710328355e-05,5.1943854487035424e-05,4.848093158216216e-05,4.9058086005970836e-05,5.886970029678196e-05,4.292582525522448e-05,-0.0012530011590570211,0.00031616492196917534,5.1943854487035424e-05,4.848093158216216e-05,-1.4428848771785852e-05,-6.925847173988586e-06,-6.464123998739524e-06,5.209252625613947e-20,1.7837127243050288e-20,4.1504614415460717e-20,-0.0015081032179296017,5.1943854487035424e-05,0.0004743418248835951,5.886970029678196e-05,5.641361437853992e-20,-8.65730908117257e-06,-1.8211208365967457e-20,-2.6758954845718108e-05,-9.811617019295227e-06,8.470329472543003e-22,-0.0014122235588729382,4.848093158216216e-05,5.886970029678196e-05,0.0004104313557036221,4.6385571334414585e-20,1.670995310236614e-20,-7.45860461393022e-06,-3.367155328788166e-20,-9.056877388502471e-06,-2.146291262761224e-05,3.3667314710328355e-05,-1.4428848771785852e-05,5.641361437853992e-20,4.6385571334414585e-20,9.61923205977655e-07,-9.895521682190306e-22,-7.281639024458408e-22,-3.3539013346694595e-21,-1.4592078918804329e-21,-2.554090383751707e-21,5.1943854487035424e-05,-6.925847173988586e-06,-8.65730908117257e-06,1.670995310236614e-20,-9.895521682190306e-22,1.1543078244358185e-06,-1.249922588854319e-22,-1.6940658945086007e-21,-5.804922207014414e-22,-1.1538416277613559e-21,4.848093158216216e-05,-6.464123998739524e-06,-1.8211208365967457e-20,-7.45860461393022e-06,-7.281639024458408e-22,-1.249922588854319e-22,9.94480615190696e-07,9.661469554619363e-22,7.676236084492097e-22,2.117582368135751e-22,4.9058086005970836e-05,5.209252625613947e-20,-2.6758954845718108e-05,-3.367155328788166e-20,-3.3539013346694595e-21,-1.6940658945086007e-21,9.661469554619363e-22,2.2299129796010675e-06,1.164670302474663e-21,1.2705494208814505e-21,5.886970029678196e-05,1.7837127243050288e-20,-9.811617019295227e-06,-9.056877388502471e-06,-1.4592078918804329e-21,-5.804922207014414e-22,7.676236084492097e-22,1.164670302474663e-21,1.5094794889591867e-06,-1.5352472168984194e-21,4.292582525522448e-05,4.1504614415460717e-20,8.470329472543003e-22,-2.146291262761224e-05,-2.554090383751707e-21,-1.1538416277613559e-21,2.117582368135751e-22,1.2705494208814505e-21,-1.5352472168984194e-21,1.6509932265762473e-06,16.0,13.0,15.0,0.012586075812578201,-0.001172295887954533,-0.0014109971234574914,-0.0012423238949850202,3.142282730550505e-05,4.848093158216216e-05,4.242081558913924e-05,4.578754669637419e-05,5.1510989578673616e-05,3.535068026394583e-05,-0.001172295887954533,0.00029546432779170573,4.848093158216216e-05,4.242081558913924e-05,-1.3466925338434521e-05,-6.464123998739524e-06,-5.6561084420536645e-06,8.470329472543003e-22,1.782247467553945e-21,1.2705494208814505e-21,-0.0014109971234574914,4.848093158216216e-05,0.00044329138472676277,5.1510989578673616e-05,4.5522706642990095e-22,-8.080155566858593e-06,-5.293955920339377e-22,-2.4975024643936194e-05,-8.585165232943837e-06,3.8116482626443515e-21,-0.0012423238949850202,4.242081558913924e-05,5.1510989578673616e-05,0.0003351932391524315,6.216857546220647e-23,-1.9703696645986707e-21,-6.06011644777027e-06,4.469336518264549e-22,-7.358712537097745e-06,-1.631569830351509e-05,3.142282730550505e-05,-1.3466925338434521e-05,4.5522706642990095e-22,6.216857546220647e-23,8.977950187727401e-07,-6.051653033271814e-23,-1.6534186940964973e-23,-2.1987817459307583e-24,3.8639807365831926e-24,2.567961747041271e-24,4.848093158216216e-05,-6.464123998739524e-06,-8.080155566858593e-06,-1.9703696645986707e-21,-6.051653033271814e-23,1.0773539997899206e-06,2.6392509098308677e-22,-1.0587911840678754e-22,-9.68276905149582e-24,1.134269322509788e-25,4.242081558913924e-05,-5.6561084420536645e-06,-5.293955920339377e-22,-6.06011644777027e-06,-1.6534186940964973e-23,2.6392509098308677e-22,8.080154998424405e-07,6.617444900424222e-24,-2.3822801641527197e-22,-1.5881867761018131e-22,4.578754669637419e-05,8.470329472543003e-22,-2.4975024643936194e-05,4.469336518264549e-22,-2.1987817459307583e-24,-1.0587911840678754e-22,6.617444900424222e-24,2.0812519778701244e-06,-1.0587911840678754e-22,-2.6469779601696886e-23,5.1510989578673616e-05,1.782247467553945e-21,-8.585165232943837e-06,-7.358712537097745e-06,3.8639807365831926e-24,-9.68276905149582e-24,-2.3822801641527197e-22,-1.0587911840678754e-22,1.2264521274119033e-06,-5.293955920339377e-22,3.535068026394583e-05,1.2705494208814505e-21,3.8116482626443515e-21,-1.631569830351509e-05,2.567961747041271e-24,1.134269322509788e-25,-1.5881867761018131e-22,-2.6469779601696886e-23,-5.293955920339377e-22,1.1654069567157421e-06,16.0,13.0,16.0,0.011866440996527672,-0.0011013667099177837,-0.0013256504898890853,-0.0011013667099177837,2.945889900729526e-05,4.54508735856507e-05,3.743013076018542e-05,4.292582525522448e-05,4.54508735856507e-05,2.945889900729526e-05,-0.0011013667099177837,0.0002773097367025912,4.54508735856507e-05,3.743013076018542e-05,-1.2625242561625782e-05,-6.06011644777027e-06,-4.990683919459116e-06,8.470329472543003e-22,1.5016183163225628e-22,-8.470329472543003e-22,-0.0013256504898890853,4.54508735856507e-05,0.00041605913429521024,4.54508735856507e-05,7.454633570400735e-22,-7.575145446025999e-06,3.1763735522036263e-22,-2.341408617212437e-05,-7.575145446025999e-06,4.235164736271502e-22,-0.0011013667099177837,3.743013076018542e-05,4.54508735856507e-05,0.0002773097367025912,4.069787368121117e-23,-2.2513671192094824e-22,-4.990683919459116e-06,-1.8485262418351807e-23,-6.06011644777027e-06,-1.2625242561625782e-05,2.945889900729526e-05,-1.2625242561625782e-05,7.454633570400735e-22,4.069787368121117e-23,8.416828336521576e-07,-6.29213444032918e-23,6.955659547206868e-24,-2.118510731203451e-23,1.1692129640124426e-26,-5.765227814891742e-24,4.54508735856507e-05,-6.06011644777027e-06,-7.575145446025999e-06,-2.2513671192094824e-22,-6.29213444032918e-23,1.0100194458573242e-06,-5.874430224431939e-24,-1.0587911840678754e-22,3.138974729537929e-23,3.52528764566153e-24,3.743013076018542e-05,-4.990683919459116e-06,3.1763735522036263e-22,-4.990683919459116e-06,6.955659547206868e-24,-5.874430224431939e-24,6.654245225945488e-07,0.0,-3.970466940254533e-23,1.0587911840678754e-22,4.292582525522448e-05,8.470329472543003e-22,-2.341408617212437e-05,-1.8485262418351807e-23,-2.118510731203451e-23,-1.0587911840678754e-22,0.0,1.9511737718858058e-06,-5.293955920339377e-23,1.3234889800848443e-23,4.54508735856507e-05,1.5016183163225628e-22,-7.575145446025999e-06,-6.06011644777027e-06,1.1692129640124426e-26,3.138974729537929e-23,-3.970466940254533e-23,-5.293955920339377e-23,1.0100194458573242e-06,-1.0587911840678754e-22,2.945889900729526e-05,-8.470329472543003e-22,4.235164736271502e-22,-1.2625242561625782e-05,-5.765227814891742e-24,3.52528764566153e-24,1.0587911840678754e-22,1.3234889800848443e-23,-1.0587911840678754e-22,8.416828336521576e-07,16.0,14.0,3.0,0.044168710708618164,-0.004866946954280138,-0.005481880158185959,-0.01840861327946186,0.00014589169586542994,0.0002100840356433764,0.0007878151373006403,0.00018601190822664648,0.0008928571478463709,0.0022321429569274187,-0.004866946954280138,0.001295018009841442,0.0002100840356433764,0.0007878151373006403,-6.252501043491066e-05,-2.801120535877999e-05,-0.0001050420178216882,-5.0950553337308865e-21,0.0,-0.0,-0.005481880158185959,0.0002100840356433764,0.0016804197803139687,0.0008928571478463709,1.5019773300759725e-21,-3.2320622267434373e-05,-1.1516891406331924e-20,-9.300595411332324e-05,-0.00013736264372710139,-0.0,-0.01840861327946186,0.0007878151373006403,0.0008928571478463709,0.04073004052042961,3.3063905521327284e-21,-1.0009080090141269e-20,-0.0007878151373006403,-8.086444764948982e-22,-0.0008928571478463709,-0.013392857275903225,0.00014589169586542994,-6.252501043491066e-05,1.5019773300759725e-21,3.3063905521327284e-21,4.168333816778613e-06,-2.432184136105725e-22,-4.4085207698350365e-22,1.534920268763085e-23,0.0,-0.0,0.0002100840356433764,-2.801120535877999e-05,-3.2320622267434373e-05,-1.0009080090141269e-20,-2.432184136105725e-22,4.3094159991596825e-06,1.334544038945288e-21,6.597472709352453e-22,0.0,-0.0,0.0007878151373006403,-0.0001050420178216882,-1.1516891406331924e-20,-0.0007878151373006403,-4.4085207698350365e-22,1.334544038945288e-21,0.0001050420178216882,1.0781926184974982e-22,0.0,-0.0,0.00018601190822664648,-5.0950553337308865e-21,-9.300595411332324e-05,-8.086444764948982e-22,1.534920268763085e-23,6.597472709352453e-22,1.0781926184974982e-22,7.15430405762163e-06,0.0,-0.0,0.0008928571478463709,0.0,-0.00013736264372710139,-0.0008928571478463709,0.0,0.0,0.0,0.0,0.00013736264372710139,-0.0,0.0022321429569274187,-0.0,-0.0,-0.013392857275903225,-0.0,-0.0,-0.0,-0.0,-0.0,0.0066964286379516125,16.0,14.0,4.0,0.03577621653676033,-0.0037683823611587286,-0.004245338961482048,-0.011714810505509377,0.00010941876826109365,0.00015756303037051111,0.0004726890765596181,0.00013950893480796367,0.0005357142654247582,0.0011160714784637094,-0.0037683823611587286,0.00098701985552907,0.00015756303037051111,0.0004726890765596181,-4.689375782618299e-05,-2.100840356433764e-05,-6.302521069301292e-05,-1.1668806276222198e-21,7.625158287512123e-22,-0.0,-0.004245338961482048,0.00015756303037051111,0.0012809191830456257,0.0005357142654247582,1.1880604700765729e-21,-2.424046579108108e-05,-7.215765478557854e-21,-6.975446740398183e-05,-8.241758041549474e-05,-0.0,-0.011714810505509377,0.0004726890765596181,0.0005357142654247582,0.015622373670339584,-1.736849469091562e-21,-6.828578712810547e-21,-0.00031512606074102223,-2.685826166442879e-21,-0.0003571428533177823,-0.0033482143189758062,0.00010941876826109365,-4.689375782618299e-05,1.1880604700765729e-21,-1.736849469091562e-21,3.1262504762707977e-06,-2.3595127864582637e-23,2.6715803229929973e-22,-6.789743481721526e-23,-4.105165886454107e-23,-0.0,0.00015756303037051111,-2.100840356433764e-05,-2.424046579108108e-05,-6.828578712810547e-21,-2.3595127864582637e-23,3.232061999369762e-06,9.239121756335193e-22,7.015045311696267e-23,-1.5502009778137592e-23,-0.0,0.0004726890765596181,-6.302521069301292e-05,-7.215765478557854e-21,-0.00031512606074102223,2.6715803229929973e-22,9.239121756335193e-22,4.201680712867528e-05,2.0481364498486847e-23,0.0,-0.0,0.00013950893480796367,-1.1668806276222198e-21,-6.975446740398183e-05,-2.685826166442879e-21,-6.789743481721526e-23,7.015045311696267e-23,2.0481364498486847e-23,5.36572815690306e-06,3.8957170052306865e-22,-0.0,0.0005357142654247582,7.625158287512123e-22,-8.241758041549474e-05,-0.0003571428533177823,-4.105165886454107e-23,-1.5502009778137592e-23,0.0,3.8957170052306865e-22,5.494505603564903e-05,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,16.0,14.0,5.0,0.030119173228740692,-0.0030777310021221638,-0.0034676995128393173,-0.008128751069307327,8.753501606406644e-05,0.00012605042138602585,0.00031512606074102223,0.00011160714348079637,0.0003571428533177823,0.0006377550889737904,-0.0030777310021221638,0.0007980192312970757,0.00012605042138602585,0.00031512606074102223,-3.751500480575487e-05,-1.6806723579065874e-05,-4.201680712867528e-05,-1.6940658945086007e-21,0.0,-0.0,-0.0034676995128393173,0.00012605042138602585,0.0010357244173064828,0.0003571428533177823,-1.9351060422788045e-21,-1.939237154147122e-05,1.1294890347089469e-20,-5.5803571740398183e-05,-5.494505603564903e-05,-0.0,-0.008128751069307327,0.00031512606074102223,0.0003571428533177823,0.007890906184911728,-5.168813348741621e-21,1.0904995049512192e-20,-0.00015756303037051111,-3.3881317890172014e-21,-0.00017857142665889114,-0.0012755101779475808,8.753501606406644e-05,-3.751500480575487e-05,-1.9351060422788045e-21,-5.168813348741621e-21,2.501000381016638e-06,1.5697671895092646e-22,6.600155088865694e-22,4.925424402336001e-23,-4.406483615433394e-23,-0.0,0.00012605042138602585,-1.6806723579065874e-05,-1.939237154147122e-05,1.0904995049512192e-20,1.5697671895092646e-22,2.5856495540210744e-06,-1.5063968696549317e-21,4.235164736271502e-22,0.0,-0.0,0.00031512606074102223,-4.201680712867528e-05,1.1294890347089469e-20,-0.00015756303037051111,6.600155088865694e-22,-1.5063968696549317e-21,2.100840356433764e-05,6.247821914472382e-23,-1.7508688905289835e-23,-0.0,0.00011160714348079637,-1.6940658945086007e-21,-5.5803571740398183e-05,-3.3881317890172014e-21,4.925424402336001e-23,4.235164736271502e-22,6.247821914472382e-23,4.292582616471918e-06,4.235164736271502e-22,-0.0,0.0003571428533177823,0.0,-5.494505603564903e-05,-0.00017857142665889114,-4.406483615433394e-23,0.0,-1.7508688905289835e-23,4.235164736271502e-22,2.7472528017824516e-05,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,16.0,14.0,6.0,0.026029057800769806,-0.002602290827780962,-0.002932266565039754,-0.005977078340947628,7.294584793271497e-05,0.0001050420178216882,0.00022509002883452922,9.300595411332324e-05,0.00025510202976875007,0.00039859695243649185,-0.002602290827780962,0.0006700180238112807,0.0001050420178216882,0.00022509002883452922,-3.126250521745533e-05,-1.4005602679389995e-05,-3.0012004572199658e-05,-2.541098841762901e-21,-1.1011428314305904e-20,-6.247503234861512e-20,-0.002932266565039754,0.0001050420178216882,0.0008696447475813329,0.00025510202976875007,4.432814151618988e-22,-1.6160311133717187e-05,-1.439204923873764e-20,-4.650297705666162e-05,-3.924646807718091e-05,-8.169812171063074e-20,-0.005977078340947628,0.00022509002883452922,0.00025510202976875007,0.004583114292472601,-5.566149535786628e-22,-4.176192574710153e-21,-9.003601735457778e-05,0.0,-0.0001020408162730746,-0.0005978954141028225,7.294584793271497e-05,-3.126250521745533e-05,4.432814151618988e-22,-5.566149535786628e-22,2.0841669083893066e-06,-5.358292260325582e-23,1.3238049031001672e-22,-6.6108362181907324e-24,1.1548530799704813e-23,2.910734794829949e-37,0.0001050420178216882,-1.4005602679389995e-05,-1.6160311133717187e-05,-4.176192574710153e-21,-5.358292260325582e-23,2.1547079995798413e-06,5.008981496050097e-22,3.1763735522036263e-22,0.0,6.2321195441109e-37,0.00022509002883452922,-3.0012004572199658e-05,-1.439204923873764e-20,-9.003601735457778e-05,1.3238049031001672e-22,5.008981496050097e-22,1.2004801646980923e-05,1.0915597718731597e-23,4.279071143912518e-21,2.4990013262563473e-20,9.300595411332324e-05,-2.541098841762901e-21,-4.650297705666162e-05,0.0,-6.6108362181907324e-24,3.1763735522036263e-22,1.0915597718731597e-23,3.577152028810815e-06,0.0,1.363915044283099e-38,0.00025510202976875007,-1.1011428314305904e-20,-3.924646807718091e-05,-0.0001020408162730746,1.1548530799704813e-23,0.0,4.279071143912518e-21,0.0,1.5698587958468124e-05,3.2679249976722004e-20,0.00039859695243649185,-6.247503234861512e-20,-8.169812171063074e-20,-0.0005978954141028225,2.910734794829949e-37,6.2321195441109e-37,2.4990013262563473e-20,1.363915044283099e-38,3.2679249976722004e-20,0.00011957908282056451,16.0,14.0,7.0,0.02292729541659355,-0.0022546518594026566,-0.0025407038629055023,-0.004582458175718784,6.252501043491066e-05,9.003601735457778e-05,0.00016881752526387572,7.97193861217238e-05,0.00019132652960252017,0.0002657313016243279,-0.0022546518594026566,0.0005775167373940349,9.003601735457778e-05,0.00016881752526387572,-2.6796433303388767e-05,-1.2004801646980923e-05,-2.2509004338644445e-05,-5.844527336054672e-20,-3.5575383784680614e-20,-2.79372238577601e-19,-0.0025407038629055023,9.003601735457778e-05,0.0007496147300116718,0.00019132652960252017,-9.106099198881553e-20,-1.3851694347977173e-05,7.585242339702142e-20,-3.98596930608619e-05,-2.943485014839098e-05,-4.416495974357623e-20,-0.004582458175718784,0.00016881752526387572,0.00019132652960252017,0.002909288741648197,-1.9382752022344553e-19,5.970841693000641e-20,-5.6272507208632305e-05,3.218725199566341e-20,-6.377550744218752e-05,-0.0003188775444868952,6.252501043491066e-05,-2.6796433303388767e-05,-9.106099198881553e-20,-1.9382752022344553e-19,1.7864288111013593e-06,2.3314875183018775e-21,5.4651794798603695e-21,4.760330317292125e-21,4.681903255464441e-21,2.0825011859929795e-20,9.003601735457778e-05,-1.2004801646980923e-05,-1.3851694347977173e-05,5.970841693000641e-20,2.3314875183018775e-21,1.8468925873094122e-06,-2.1571555691352757e-21,-1.0587911840678754e-22,-2.117582368135751e-21,-3.793356181217636e-21,0.00016881752526387572,-2.2509004338644445e-05,7.585242339702142e-20,-5.6272507208632305e-05,5.4651794798603695e-21,-2.1571555691352757e-21,7.503001143049914e-06,-2.922981029104463e-21,-4.4347697188703695e-21,9.201799674058355e-22,7.97193861217238e-05,-5.844527336054672e-20,-3.98596930608619e-05,3.218725199566341e-20,4.760330317292125e-21,-1.0587911840678754e-22,-2.922981029104463e-21,3.0661303753731772e-06,-1.4823076576950256e-21,1.4751049663553488e-21,0.00019132652960252017,-3.5575383784680614e-20,-2.943485014839098e-05,-6.377550744218752e-05,4.681903255464441e-21,-2.117582368135751e-21,-4.4347697188703695e-21,-1.4823076576950256e-21,9.811617019295227e-06,2.265429108843527e-20,0.0002657313016243279,-2.79372238577601e-19,-4.416495974357623e-20,-0.0003188775444868952,2.0825011859929795e-20,-3.793356181217636e-21,9.201799674058355e-22,1.4751049663553488e-21,2.265429108843527e-20,5.3146257414482534e-05,16.0,14.0,8.0,0.020491398870944977,-0.0019892333075404167,-0.002241716952994466,-0.0036261379718780518,5.470938413054682e-05,7.878151518525556e-05,0.00013130252773407847,6.975446740398183e-05,0.00014880952949170023,0.00018601190822664648,-0.0019892333075404167,0.000507515505887568,7.878151518525556e-05,0.00013130252773407847,-2.3446878913091496e-05,-1.050420178216882e-05,-1.750700357661117e-05,-1.6940658945086007e-21,-4.235164736271502e-22,-0.0,-0.002241716952994466,7.878151518525556e-05,0.0006587746320292354,0.00014880952949170023,9.587872492476843e-22,-1.212023289554054e-05,-1.4525754018248243e-21,-3.487723370199092e-05,-2.2893773348187096e-05,-0.0,-0.0036261379718780518,0.00013130252773407847,0.00014880952949170023,0.0019660990219563246,1.7320844967885373e-21,-2.176387972761015e-22,-3.751500480575487e-05,1.6940658945086007e-21,-4.251700738677755e-05,-0.00018601190822664648,5.470938413054682e-05,-2.3446878913091496e-05,9.587872492476843e-22,1.7320844967885373e-21,1.5631252381353988e-06,-7.448371024555238e-23,-2.154503582854991e-22,-3.505106532667623e-23,7.152111156155867e-24,-0.0,7.878151518525556e-05,-1.050420178216882e-05,-1.212023289554054e-05,-2.176387972761015e-22,-7.448371024555238e-23,1.616030999684881e-06,8.039497317451e-23,2.117582368135751e-22,5.293955920339377e-23,-0.0,0.00013130252773407847,-1.750700357661117e-05,-1.4525754018248243e-21,-3.751500480575487e-05,-2.154503582854991e-22,8.039497317451e-23,5.002000762033276e-06,2.606625358284918e-23,4.051254501102579e-23,-0.0,6.975446740398183e-05,-1.6940658945086007e-21,-3.487723370199092e-05,1.6940658945086007e-21,-3.505106532667623e-23,2.117582368135751e-22,2.606625358284918e-23,2.68286407845153e-06,-2.117582368135751e-22,-0.0,0.00014880952949170023,-4.235164736271502e-22,-2.2893773348187096e-05,-4.251700738677755e-05,7.152111156155867e-24,5.293955920339377e-23,4.051254501102579e-23,-2.117582368135751e-22,6.541078164445935e-06,-0.0,0.00018601190822664648,-0.0,-0.0,-0.00018601190822664648,-0.0,-0.0,-0.0,-0.0,-0.0,2.6573128707241267e-05,16.0,14.0,9.0,0.018526379019021988,-0.0017798786284402013,-0.0020058648660779,-0.002941494807600975,4.863056165049784e-05,7.002801430644467e-05,0.0001050420178216882,6.200397183420137e-05,0.0001190476177725941,0.00013528138515539467,-0.0017798786284402013,0.0004526810662355274,7.002801430644467e-05,0.0001050420178216882,-2.0841669538640417e-05,-9.337068149761762e-06,-1.4005602679389995e-05,0.0,-5.082197683525802e-21,-1.938619257670489e-20,-0.0020058648660779,7.002801430644467e-05,0.0005876124487258494,0.0001190476177725941,5.0881533435465055e-22,-1.0773540452646557e-05,-6.234591139370015e-21,-3.100198591710068e-05,-1.8315018678549677e-05,-2.5351174535170903e-20,-0.002941494807600975,0.0001050420178216882,0.0001190476177725941,0.0013924547238275409,1.4447316253155797e-21,-1.5350303243256943e-21,-2.626050445542205e-05,8.470329472543003e-22,-2.9761904443148524e-05,-0.00011595547402976081,4.863056165049784e-05,-2.0841669538640417e-05,5.0881533435465055e-22,1.4447316253155797e-21,1.3894447192797088e-06,-7.419522696795668e-23,-1.4522285554620167e-22,-1.1409041259000013e-23,2.2173531093614714e-23,3.5320055697147666e-38,7.002801430644467e-05,-9.337068149761762e-06,-1.0773540452646557e-05,-1.5350303243256943e-21,-7.419522696795668e-23,1.4364720755111193e-06,1.8573107759946685e-22,1.0587911840678754e-22,0.0,3.077231921582675e-37,0.0001050420178216882,-1.4005602679389995e-05,-6.234591139370015e-21,-2.626050445542205e-05,-1.4522285554620167e-22,1.8573107759946685e-22,3.5014006698474986e-06,-2.8435895501102664e-23,1.2374336206818987e-21,4.846548144176223e-21,6.200397183420137e-05,0.0,-3.100198591710068e-05,8.470329472543003e-22,-1.1409041259000013e-23,1.0587911840678754e-22,-2.8435895501102664e-23,2.384768094998435e-06,-2.117582368135751e-22,1.385444061395569e-37,0.0001190476177725941,-5.082197683525802e-21,-1.8315018678549677e-05,-2.9761904443148524e-05,2.2173531093614714e-23,0.0,1.2374336206818987e-21,-2.117582368135751e-22,4.578754669637419e-06,6.337793633792726e-21,0.00013528138515539467,-1.938619257670489e-20,-2.5351174535170903e-20,-0.00011595547402976081,3.5320055697147666e-38,3.077231921582675e-37,4.846548144176223e-21,1.385444061395569e-37,6.337793633792726e-21,1.4494434253720101e-05,16.0,14.0,10.0,0.01690703071653843,-0.0016104851383715868,-0.0018150185933336616,-0.002434348687529564,4.376750803203322e-05,6.302521069301292e-05,8.594346581958234e-05,5.5803571740398183e-05,9.740259702084586e-05,0.000101461038866546,-0.0016104851383715868,0.00040855887345969677,6.302521069301292e-05,8.594346581958234e-05,-1.8757502402877435e-05,-8.403361789532937e-06,-1.1459129382274114e-05,-4.235164736271502e-22,6.352747104407253e-22,-0.0,-0.0018150185933336616,6.302521069301292e-05,0.0005303497309796512,9.740259702084586e-05,1.3617165484631303e-22,-9.69618577073561e-06,3.941852872629377e-21,-2.7901785870199092e-05,-1.4985014786361717e-05,-0.0,-0.002434348687529564,8.594346581958234e-05,9.740259702084586e-05,0.0010229062754660845,1.8470677011302995e-22,4.622742878001994e-21,-1.9098548364127055e-05,-8.470329472543003e-22,-2.1645020751748234e-05,-7.60957773309201e-05,4.376750803203322e-05,-1.8757502402877435e-05,1.3617165484631303e-22,1.8470677011302995e-22,1.250500190508319e-06,-3.7883309479247606e-24,-3.323483299926244e-23,-1.090131696976438e-23,9.93145824072765e-24,-0.0,6.302521069301292e-05,-8.403361789532937e-06,-9.69618577073561e-06,4.622742878001994e-21,-3.7883309479247606e-24,1.2928247770105372e-06,-5.255803830172503e-22,0.0,-1.0587911840678754e-22,-0.0,8.594346581958234e-05,-1.1459129382274114e-05,3.941852872629377e-21,-1.9098548364127055e-05,-3.323483299926244e-23,-5.255803830172503e-22,2.5464730697422056e-06,-2.350988701644575e-38,0.0,-0.0,5.5803571740398183e-05,-4.235164736271502e-22,-2.7901785870199092e-05,-8.470329472543003e-22,-1.090131696976438e-23,0.0,-2.350988701644575e-38,2.146291308235959e-06,0.0,-0.0,9.740259702084586e-05,6.352747104407253e-22,-1.4985014786361717e-05,-2.1645020751748234e-05,9.93145824072765e-24,-1.0587911840678754e-22,0.0,0.0,3.3300034374406096e-06,-0.0,0.000101461038866546,-0.0,-0.0,-7.60957773309201e-05,-0.0,-0.0,-0.0,-0.0,-0.0,8.455086572212167e-06,16.0,14.0,11.0,0.015549126081168652,-0.00147058826405555,-0.0016573958564549685,-0.0020481357350945473,3.97886433347594e-05,5.7295645092381164e-05,7.161955727497116e-05,5.0730519433273e-05,8.116882963804528e-05,7.804695633240044e-05,-0.00147058826405555,0.00037228528526611626,5.7295645092381164e-05,7.161955727497116e-05,-1.7052276234608144e-05,-7.639418981852941e-06,-9.549274182063527e-06,-4.1504614415460717e-20,-6.564505341220828e-20,-6.358764197128722e-20,-0.0016573958564549685,5.7295645092381164e-05,0.00048327131662517786,8.116882963804528e-05,-5.0912029662101196e-20,-8.81471441971371e-06,-3.1613350209265e-20,-2.53652597166365e-05,-1.2487512321968097e-05,-8.976626692206251e-20,-0.0020481357350945473,7.161955727497116e-05,8.116882963804528e-05,0.0007738462300039828,-6.288085491195187e-20,-3.0677750775330707e-20,-1.4323911273095291e-05,-8.470329472543003e-20,-1.6233765563811176e-05,-5.203130058362149e-05,3.97886433347594e-05,-1.7052276234608144e-05,-5.0912029662101196e-20,-6.288085491195187e-20,1.1368183550075628e-06,6.942894831127305e-22,8.667583573913666e-22,1.8857207747699745e-21,3.0279299732189117e-21,2.9125889668140902e-21,5.7295645092381164e-05,-7.639418981852941e-06,-8.81471441971371e-06,-3.0677750775330707e-20,6.942894831127305e-22,1.1752953241739306e-06,7.9425822842566155e-22,8.999725064576941e-22,1.2705494208814505e-21,1.3048398539015382e-21,7.161955727497116e-05,-9.549274182063527e-06,-3.1613350209265e-20,-1.4323911273095291e-05,8.667583573913666e-22,7.9425822842566155e-22,1.9098547454632353e-06,1.0601824065385487e-21,1.6962917696823213e-21,1.6310499183511186e-21,5.0730519433273e-05,-4.1504614415460717e-20,-2.53652597166365e-05,-8.470329472543003e-20,1.8857207747699745e-21,8.999725064576941e-22,1.0601824065385487e-21,1.9511737718858058e-06,2.329340604949326e-21,6.22099153077369e-21,8.116882963804528e-05,-6.564505341220828e-20,-1.2487512321968097e-05,-1.6233765563811176e-05,3.0279299732189117e-21,1.2705494208814505e-21,1.6962917696823213e-21,2.329340604949326e-21,2.4975024643936194e-06,-1.7858438907317347e-22,7.804695633240044e-05,-6.358764197128722e-20,-8.976626692206251e-20,-5.203130058362149e-05,2.9125889668140902e-21,1.3048398539015382e-21,1.6310499183511186e-21,6.22099153077369e-21,-1.7858438907317347e-22,5.203130058362149e-06,16.0,14.0,12.0,0.014393854886293411,-0.0013530893484130502,-0.0015250029973685741,-0.001747189206071198,3.6472923966357484e-05,5.25210089108441e-05,6.0601163568207994e-05,4.650297705666162e-05,6.868132186355069e-05,6.132260750746354e-05,-0.0013530893484130502,0.0003419348504394293,5.25210089108441e-05,6.0601163568207994e-05,-1.5631252608727664e-05,-7.002801339694997e-06,-8.080155566858593e-06,-1.6940658945086007e-21,-2.117582368135751e-22,-0.0,-0.0015250029973685741,5.25210089108441e-05,0.00044387925299815834,6.868132186355069e-05,-2.3510468258867404e-22,-8.080155566858593e-06,-7.557443982020889e-22,-2.325148852833081e-05,-1.0566356650087982e-05,-0.0,-0.001747189206071198,6.0601163568207994e-05,6.868132186355069e-05,0.0005997547414153814,-1.545653036922979e-22,-8.408690784417165e-22,-1.1018393706763163e-05,-4.235164736271502e-22,-1.2487512321968097e-05,-3.679356450447813e-05,3.6472923966357484e-05,-1.5631252608727664e-05,-2.3510468258867404e-22,-1.545653036922979e-22,1.0420834541946533e-06,4.8951430298560064e-24,2.0388122717211534e-23,1.4086283710026324e-23,2.5451993135325386e-25,-0.0,5.25210089108441e-05,-7.002801339694997e-06,-8.080155566858593e-06,-8.408690784417165e-22,4.8951430298560064e-24,1.0773539997899206e-06,1.0076591765664944e-22,2.6469779601696886e-22,0.0,-0.0,6.0601163568207994e-05,-8.080155566858593e-06,-7.557443982020889e-22,-1.1018393706763163e-05,2.0388122717211534e-23,1.0076591765664944e-22,1.469119069952285e-06,1.1754943508222875e-38,5.877471754111438e-39,-0.0,4.650297705666162e-05,-1.6940658945086007e-21,-2.325148852833081e-05,-4.235164736271502e-22,1.4086283710026324e-23,2.6469779601696886e-22,1.1754943508222875e-38,1.7885760144054075e-06,1.0587911840678754e-22,-0.0,6.868132186355069e-05,-2.117582368135751e-22,-1.0566356650087982e-05,-1.2487512321968097e-05,2.5451993135325386e-25,0.0,5.877471754111438e-39,1.0587911840678754e-22,1.921155671880115e-06,-0.0,6.132260750746354e-05,-0.0,-0.0,-3.679356450447813e-05,-0.0,-0.0,-0.0,-0.0,-0.0,3.3448693557147635e-06,16.0,14.0,13.0,0.013398868963122368,-0.0012530011590570211,-0.0014122235588729382,-0.0015081032179296017,3.3667314710328355e-05,4.848093158216216e-05,5.1943854487035424e-05,4.292582525522448e-05,5.886970029678196e-05,4.9058086005970836e-05,-0.0012530011590570211,0.00031616492196917534,4.848093158216216e-05,5.1943854487035424e-05,-1.4428848771785852e-05,-6.464123998739524e-06,-6.925847173988586e-06,4.362219678359647e-20,2.081929106588868e-20,5.293955920339377e-20,-0.0014122235588729382,4.848093158216216e-05,0.0004104313557036221,5.886970029678196e-05,4.574149813644268e-20,-7.45860461393022e-06,1.5246593050577406e-20,-2.146291262761224e-05,-9.056877388502471e-06,1.5246593050577406e-20,-0.0015081032179296017,5.1943854487035424e-05,5.886970029678196e-05,0.0004743418248835951,5.597587427578598e-20,-2.260121581991263e-20,-8.65730908117257e-06,7.030448748571132e-21,-9.811617019295227e-06,-2.6758954845718108e-05,3.3667314710328355e-05,-1.4428848771785852e-05,4.574149813644268e-20,5.597587427578598e-20,9.61923205977655e-07,-7.328574355052886e-22,-1.0017248094793447e-21,-2.521501163983608e-21,-1.4219536642632192e-21,-3.3316912524946623e-21,4.848093158216216e-05,-6.464123998739524e-06,-7.45860461393022e-06,-2.260121581991263e-20,-7.328574355052886e-22,9.94480615190696e-07,9.518211404489269e-22,1.5881867761018131e-22,7.3219706426431e-22,7.097113225347923e-22,5.1943854487035424e-05,-6.925847173988586e-06,1.5246593050577406e-20,-8.65730908117257e-06,-1.0017248094793447e-21,9.518211404489269e-22,1.1543078244358185e-06,-1.4095157637903592e-21,-1.1117307432712692e-21,-1.5881867761018131e-21,4.292582525522448e-05,4.362219678359647e-20,-2.146291262761224e-05,7.030448748571132e-21,-2.521501163983608e-21,1.5881867761018131e-22,-1.4095157637903592e-21,1.6509932265762473e-06,6.352747104407253e-22,-1.852884572118782e-22,5.886970029678196e-05,2.081929106588868e-20,-9.056877388502471e-06,-9.811617019295227e-06,-1.4219536642632192e-21,7.3219706426431e-22,-1.1117307432712692e-21,6.352747104407253e-22,1.5094794889591867e-06,-3.5998900258307764e-21,4.9058086005970836e-05,5.293955920339377e-20,1.5246593050577406e-20,-2.6758954845718108e-05,-3.3316912524946623e-21,7.097113225347923e-22,-1.5881867761018131e-21,-1.852884572118782e-22,-3.5998900258307764e-21,2.2299129796010675e-06,16.0,14.0,14.0,0.012532887980341911,-0.0011667166836559772,-0.0013149947626516223,-0.0013149947626516223,3.126250521745533e-05,4.501800867728889e-05,4.501800867728889e-05,3.98596930608619e-05,5.10204081365373e-05,3.98596930608619e-05,-0.0011667166836559772,0.00029401047504507005,4.501800867728889e-05,4.501800867728889e-05,-1.3398216651694383e-05,-6.002400823490461e-06,-6.002400823490461e-06,-2.879912020664621e-20,-5.8425584200145974e-21,-2.879912020664621e-20,-0.0013149947626516223,4.501800867728889e-05,0.00038167551974765956,5.10204081365373e-05,-4.5089618421439806e-20,-6.925847173988586e-06,2.1387581918171084e-20,-1.992984653043095e-05,-7.849293979234062e-06,-1.2705494208814505e-21,-0.0013149947626516223,4.501800867728889e-05,5.10204081365373e-05,0.00038167551974765956,-4.5219162660183853e-20,2.1657443130667973e-20,-6.925847173988586e-06,1.6785384865647586e-20,-7.849293979234062e-06,-1.992984653043095e-05,3.126250521745533e-05,-1.3398216651694383e-05,-4.5089618421439806e-20,-4.5219162660183853e-20,8.932144055506797e-07,1.138603006017697e-21,1.1208043854861896e-21,2.332008545152558e-21,1.1128060174830706e-21,2.3508174125137276e-21,4.501800867728889e-05,-6.002400823490461e-06,-6.925847173988586e-06,2.1657443130667973e-20,1.138603006017697e-21,9.234462936547061e-07,-6.444567989420082e-22,1.5881867761018131e-22,-6.836211049353643e-22,-7.814539935701914e-22,4.501800867728889e-05,-6.002400823490461e-06,2.1387581918171084e-20,-6.925847173988586e-06,1.1208043854861896e-21,-6.444567989420082e-22,9.234462936547061e-07,-7.742410533496339e-22,-6.88214269644119e-22,1.0587911840678754e-22,3.98596930608619e-05,-2.879912020664621e-20,-1.992984653043095e-05,1.6785384865647586e-20,2.332008545152558e-21,1.5881867761018131e-22,-7.742410533496339e-22,1.5330651876865886e-06,-7.940933880509066e-22,-2.6469779601696886e-22,5.10204081365373e-05,-5.8425584200145974e-21,-7.849293979234062e-06,-7.849293979234062e-06,1.1128060174830706e-21,-6.836211049353643e-22,-6.88214269644119e-22,-7.940933880509066e-22,1.2075836366420845e-06,2.0117032497289633e-21,3.98596930608619e-05,-2.879912020664621e-20,-1.2705494208814505e-21,-1.992984653043095e-05,2.3508174125137276e-21,-7.814539935701914e-22,1.0587911840678754e-22,-2.6469779601696886e-22,2.0117032497289633e-21,1.5330651876865886e-06,16.0,14.0,15.0,0.011772292666137218,-0.0010915616294369102,-0.0012303045950829983,-0.0011567751644179225,2.9178338081692345e-05,4.201680712867528e-05,3.939075759262778e-05,3.720238237292506e-05,4.4642856664722785e-05,3.282563193351962e-05,-0.0010915616294369102,0.00027475989190861583,4.201680712867528e-05,3.939075759262778e-05,-1.250500190508319e-05,-5.6022408898570575e-06,-5.25210089108441e-06,1.3976043629695956e-20,-3.244941695495122e-21,1.1434944787933055e-20,-0.0012303045950829983,4.201680712867528e-05,0.00035668833879753947,4.4642856664722785e-05,3.379202438928177e-20,-6.464123998739524e-06,-2.541098841762901e-20,-1.860119118646253e-05,-6.868132004456129e-06,-3.006966962752766e-20,-0.0011567751644179225,3.939075759262778e-05,4.4642856664722785e-05,0.00031170641887001693,3.05211713014881e-20,-3.0166873043025446e-20,-5.627251084661111e-06,-2.5668002481237186e-20,-6.377551017067162e-06,-1.5150290892051999e-05,2.9178338081692345e-05,-1.250500190508319e-05,3.379202438928177e-20,3.05211713014881e-20,8.336667747244064e-07,2.5935084946972652e-23,-3.4841416390327243e-22,-2.2104501536113423e-21,-8.785620389399779e-22,-1.6657328380705462e-21,4.201680712867528e-05,-5.6022408898570575e-06,-6.464123998739524e-06,-3.0166873043025446e-20,2.5935084946972652e-23,8.61883222569304e-07,1.1352109798558936e-21,1.9587636905255695e-21,1.31866705833535e-21,7.782614924194237e-22,3.939075759262778e-05,-5.25210089108441e-06,-2.541098841762901e-20,-5.627251084661111e-06,-3.4841416390327243e-22,1.1352109798558936e-21,7.503001029363077e-07,6.683619349428464e-22,8.867376166568457e-22,1.0058516248644817e-21,3.720238237292506e-05,1.3976043629695956e-20,-1.860119118646253e-05,-2.5668002481237186e-20,-2.2104501536113423e-21,1.9587636905255695e-21,6.683619349428464e-22,1.4308608342616935e-06,1.7470054537119944e-21,4.764560328305439e-22,4.4642856664722785e-05,-3.244941695495122e-21,-6.868132004456129e-06,-6.377551017067162e-06,-8.785620389399779e-22,1.31866705833535e-21,8.867376166568457e-22,1.7470054537119944e-21,9.811617474042578e-07,2.276401045745932e-21,3.282563193351962e-05,1.1434944787933055e-20,-3.006966962752766e-20,-1.5150290892051999e-05,-1.6657328380705462e-21,7.782614924194237e-22,1.0058516248644817e-21,4.764560328305439e-22,2.276401045745932e-21,1.0821636351465713e-06,16.0,14.0,16.0,0.011098909191787243,-0.0010255113011226058,-0.0011558724800124764,-0.0010255113011226058,2.735469206527341e-05,3.939075759262778e-05,3.4756551031023264e-05,3.487723370199092e-05,3.939075759262778e-05,2.735469206527341e-05,-0.0010255113011226058,0.0002578770508989692,3.939075759262778e-05,3.4756551031023264e-05,-1.1723439456545748e-05,-5.25210089108441e-06,-4.634206561604515e-06,-1.2705494208814505e-21,3.5203338200577954e-22,-1.0587911840678754e-21,-0.0011558724800124764,3.939075759262778e-05,0.0003347740857861936,3.939075759262778e-05,-1.7115865835659807e-22,-6.06011644777027e-06,-2.117582368135751e-22,-1.743861685099546e-05,-6.06011644777027e-06,8.470329472543003e-22,-0.0010255113011226058,3.4756551031023264e-05,3.939075759262778e-05,0.0002578770508989692,-1.1188017895030827e-22,-5.711342856380539e-22,-4.634206561604515e-06,4.4959204996817725e-22,-5.25210089108441e-06,-1.1723439456545748e-05,2.735469206527341e-05,-1.1723439456545748e-05,-1.7115865835659807e-22,-1.1188017895030827e-22,7.815626190676994e-07,3.655326632721782e-24,9.404803656349429e-24,1.0518582957795587e-23,-4.472835416146348e-25,2.745129848377369e-24,3.939075759262778e-05,-5.25210089108441e-06,-6.06011644777027e-06,-5.711342856380539e-22,3.655326632721782e-24,8.080154998424405e-07,6.982063352793339e-23,1.5881867761018131e-22,1.1632112979195695e-23,-2.2044765328055488e-24,3.4756551031023264e-05,-4.634206561604515e-06,-2.117582368135751e-22,-4.634206561604515e-06,9.404803656349429e-24,6.982063352793339e-23,6.178942157930578e-07,-6.617444900424222e-24,-2.6469779601696886e-23,1.3234889800848443e-22,3.487723370199092e-05,-1.2705494208814505e-21,-1.743861685099546e-05,4.4959204996817725e-22,1.0518582957795587e-23,1.5881867761018131e-22,-6.617444900424222e-24,1.341432039225765e-06,0.0,-1.3234889800848443e-23,3.939075759262778e-05,3.5203338200577954e-22,-6.06011644777027e-06,-5.25210089108441e-06,-4.472835416146348e-25,1.1632112979195695e-23,-2.6469779601696886e-23,0.0,8.080154998424405e-07,-1.0587911840678754e-22,2.735469206527341e-05,-1.0587911840678754e-21,8.470329472543003e-22,-1.1723439456545748e-05,2.745129848377369e-24,-2.2044765328055488e-24,1.3234889800848443e-22,-1.3234889800848443e-23,-1.0587911840678754e-22,7.815626190676994e-07,16.0,15.0,3.0,0.04153560847043991,-0.0045547387562692165,-0.004825367592275143,-0.017233455553650856,0.00013616557407658547,0.00018382353300694376,0.000735294132027775,0.00015318627993110567,0.0007812500116415322,0.0020833334419876337,-0.0045547387562692165,0.0012103174813091755,0.00018382353300694376,0.000735294132027775,-5.835667616338469e-05,-2.4509803552064113e-05,-9.803921420825645e-05,2.208839615187243e-20,-2.04585171302966e-21,6.955394563685706e-34,-0.004825367592275143,0.00018382353300694376,0.0013727847253903747,0.0007812500116415322,-5.660108044525989e-22,-2.626050445542205e-05,-1.4229120507458835e-20,-7.070136052789167e-05,-0.00011160714348079637,-2.775235829663639e-18,-0.017233455553650856,0.000735294132027775,0.0007812500116415322,0.038066789507865906,-3.939204925316927e-21,-1.8520551296842415e-20,-0.000735294132027775,-4.7193848931266215e-19,-0.0007812500116415322,-0.012500000186264515,0.00013616557407658547,-5.835667616338469e-05,-5.660108044525989e-22,-3.939204925316927e-21,3.890444986609509e-06,1.2996586754294753e-23,5.795086815465863e-22,3.4990812130735447e-23,-5.815861877612529e-23,-1.6275732347451563e-36,0.00018382353300694376,-2.4509803552064113e-05,-2.626050445542205e-05,-1.8520551296842415e-20,1.2996586754294753e-23,3.5014006698474986e-06,2.0716243667830823e-21,-3.042556489387217e-21,4.261955209919276e-22,-9.529975492209253e-35,0.000735294132027775,-9.803921420825645e-05,-1.4229120507458835e-20,-0.000735294132027775,5.795086815465863e-22,2.0716243667830823e-21,9.803921420825645e-05,-8.690067119454423e-23,2.280105868540677e-36,-2.204695114997302e-36,0.00015318627993110567,2.208839615187243e-20,-7.070136052789167e-05,-4.7193848931266215e-19,3.4990812130735447e-23,-3.042556489387217e-21,-8.690067119454423e-23,5.050097115599783e-06,1.6251328304732368e-20,1.7941548778744877e-19,0.0007812500116415322,-2.04585171302966e-21,-0.00011160714348079637,-0.0007812500116415322,-5.815861877612529e-23,4.261955209919276e-22,2.280105868540677e-36,1.6251328304732368e-20,0.00011160714348079637,2.6341894894056773e-19,0.0020833334419876337,6.955394563685706e-34,-2.775235829663639e-18,-0.012500000186264515,-1.6275732347451563e-36,-9.529975492209253e-35,-2.204695114997302e-36,1.7941548778744877e-19,2.6341894894056773e-19,0.0062500000931322575,16.0,15.0,4.0,0.0336325578391552,-0.003526348154991865,-0.0037362133152782917,-0.010965073481202126,0.00010212418419541791,0.00013786765339318663,0.00044117646757513285,0.00011488970631035045,0.00046874998952262104,0.0010416667209938169,-0.003526348154991865,0.0009224439854733646,0.00013786765339318663,0.00044117646757513285,-4.376750803203322e-05,-1.8382352209300734e-05,-5.8823530707741156e-05,4.114177050885334e-21,-1.8061125167990233e-20,-1.9592170888988252e-19,-0.0037362133152782917,0.00013786765339318663,0.001046329620294273,0.00046874998952262104,-1.0134452882905605e-21,-1.969537879631389e-05,-2.984656996903416e-20,-5.3026018576929346e-05,-6.696428317809477e-05,-1.2128076646318801e-18,-0.010965073481202126,0.00044117646757513285,0.00046874998952262104,0.014601715840399265,-1.0031672258673232e-21,-9.456019377770072e-21,-0.00029411763534881175,-2.5552728400529386e-19,-0.0003124999930150807,-0.0031250000465661287,0.00010212418419541791,-4.376750803203322e-05,-1.0134452882905605e-21,-1.0031672258673232e-21,2.9178338536439696e-06,1.2732608809631017e-22,1.440593046436624e-22,4.802298440046472e-24,-1.1039656351269369e-23,-1.8440101276395708e-36,0.00013786765339318663,-1.8382352209300734e-05,-1.969537879631389e-05,-9.456019377770072e-21,1.2732608809631017e-22,2.626050445542205e-06,1.431262374406121e-21,-3.625667829268188e-22,-1.8263557478560511e-22,1.898691708418331e-36,0.00044117646757513285,-5.8823530707741156e-05,-2.984656996903416e-20,-0.00029411763534881175,1.440593046436624e-22,1.431262374406121e-21,3.9215687138494104e-05,-2.6934652177700007e-23,1.3011689168159073e-20,1.3061446828502265e-19,0.00011488970631035045,4.114177050885334e-21,-5.3026018576929346e-05,-2.5552728400529386e-19,4.802298440046472e-24,-3.625667829268188e-22,-2.6934652177700007e-23,3.7875727230129996e-06,9.620435257005624e-21,6.279542266431163e-20,0.00046874998952262104,-1.8061125167990233e-20,-6.696428317809477e-05,-0.0003124999930150807,-1.1039656351269369e-23,-1.8263557478560511e-22,1.3011689168159073e-20,9.620435257005624e-21,4.4642856664722785e-05,2.2244789186959786e-19,0.0010416667209938169,-1.9592170888988252e-19,-1.2128076646318801e-18,-0.0031250000465661287,-1.8440101276395708e-36,1.898691708418331e-36,1.3061446828502265e-19,6.279542266431163e-20,2.2244789186959786e-19,0.0010416667209938169,16.0,15.0,5.0,0.028308531269431114,-0.002879902021959424,-0.003051470499485731,-0.007607668172568083,8.169934881152585e-05,0.00011029411689378321,0.00029411763534881175,9.191176650347188e-05,0.0003124999930150807,0.0005952381179668009,-0.002879902021959424,0.0007457983447238803,0.00011029411689378321,0.00029411763534881175,-3.501400715322234e-05,-1.4705882676935289e-05,-3.9215687138494104e-05,5.082197683525802e-20,-1.5500702934753696e-19,-8.124723589848574e-19,-0.003051470499485731,0.00011029411689378321,0.0008459922391921282,0.0003124999930150807,6.789123651620188e-20,-1.575630267325323e-05,-2.905379877749363e-19,-4.242081558913924e-05,-4.4642856664722785e-05,-1.4041208918352883e-18,-0.007607668172568083,0.00029411763534881175,0.0003124999930150807,0.007375262677669525,-1.8483551120302006e-19,-1.6662447085811453e-19,-0.00014705881767440587,-4.607859233063394e-19,-0.00015624999650754035,-0.0011904762359336019,8.169934881152585e-05,-3.501400715322234e-05,6.789123651620188e-20,-1.8483551120302006e-19,2.3342670374404406e-06,-1.363825041134154e-21,5.9304310120205846e-21,-4.766299911751858e-21,2.9532460248320653e-21,2.2213345660807687e-20,0.00011029411689378321,-1.4705882676935289e-05,-1.575630267325323e-05,-1.6662447085811453e-19,-1.363825041134154e-21,2.1008404473832343e-06,4.7248500043479255e-21,-1.376428539288238e-21,4.0234064994579266e-21,1.9325611290358185e-20,0.00029411763534881175,-3.9215687138494104e-05,-2.905379877749363e-19,-0.00014705881767440587,5.9304310120205846e-21,4.7248500043479255e-21,1.9607843569247052e-05,1.2435690349660869e-20,3.4354478125249417e-20,1.5955698800567318e-19,9.191176650347188e-05,5.082197683525802e-20,-4.242081558913924e-05,-4.607859233063394e-19,-4.766299911751858e-21,-1.376428539288238e-21,1.2435690349660869e-20,3.030058223885135e-06,1.4399560103323106e-20,5.766926162369834e-20,0.0003124999930150807,-1.5500702934753696e-19,-4.4642856664722785e-05,-0.00015624999650754035,2.9532460248320653e-21,4.0234064994579266e-21,3.4354478125249417e-20,1.4399560103323106e-20,2.2321428332361393e-05,2.1174355435770227e-19,0.0005952381179668009,-8.124723589848574e-19,-1.4041208918352883e-18,-0.0011904762359336019,2.2213345660807687e-20,1.9325611290358185e-20,1.5955698800567318e-19,5.766926162369834e-20,2.1174355435770227e-19,0.00029761905898340046,16.0,15.0,6.0,0.0244606863707304,-0.002434932393953204,-0.0025800946168601513,-0.005593487527221441,6.808278703829274e-05,9.191176650347188e-05,0.0002100840356433764,7.659313996555284e-05,0.00022321428696159273,0.00037202381645329297,-0.002434932393953204,0.0006261671078391373,9.191176650347188e-05,0.0002100840356433764,-2.9178338081692345e-05,-1.2254901776032057e-05,-2.801120535877999e-05,8.470329472543003e-21,8.470329472543003e-22,6.668375118235886e-35,-0.0025800946168601513,9.191176650347188e-05,0.0007103081443347037,0.00022321428696159273,-1.5468123469092918e-22,-1.3130252227711026e-05,-1.9797218946199917e-21,-3.535068026394583e-05,-3.188775372109376e-05,-2.836555865845537e-19,-0.005593487527221441,0.0002100840356433764,0.00022321428696159273,0.0042835259810090065,1.7488191522181807e-21,-1.869017017444267e-21,-8.403361425735056e-05,-1.1519648082658485e-19,-8.928571332944557e-05,-0.0005580357392318547,6.808278703829274e-05,-2.9178338081692345e-05,-1.5468123469092918e-22,1.7488191522181807e-21,1.9452224933047546e-06,1.6834279095641908e-23,-2.612381676310316e-22,-5.254949904019819e-23,-2.5125418624237342e-23,1.461255429354313e-37,9.191176650347188e-05,-1.2254901776032057e-05,-1.3130252227711026e-05,-1.869017017444267e-21,1.6834279095641908e-23,1.7507003349237493e-06,2.546315774566632e-22,-1.164670302474663e-21,-1.0587911840678754e-22,-9.756704991828537e-36,0.0002100840356433764,-2.801120535877999e-05,-1.9797218946199917e-21,-8.403361425735056e-05,-2.612381676310316e-22,2.546315774566632e-22,1.1204481779714115e-05,9.549112348324224e-24,-3.1719137744076136e-23,-2.9694530120169816e-37,7.659313996555284e-05,8.470329472543003e-21,-3.535068026394583e-05,-1.1519648082658485e-19,-5.254949904019819e-23,-1.164670302474663e-21,9.549112348324224e-24,2.5250485577998916e-06,3.8116482626443515e-21,1.762116363292719e-20,0.00022321428696159273,8.470329472543003e-22,-3.188775372109376e-05,-8.928571332944557e-05,-2.5125418624237342e-23,-1.0587911840678754e-22,-3.1719137744076136e-23,3.8116482626443515e-21,1.2755102034134325e-05,1.478371602760723e-20,0.00037202381645329297,6.668375118235886e-35,-2.836555865845537e-19,-0.0005580357392318547,1.461255429354313e-37,-9.756704991828537e-36,-2.9694530120169816e-37,1.762116363292719e-20,1.478371602760723e-20,0.00011160714348079637,16.0,15.0,7.0,0.021543461829423904,-0.0021095939446240664,-0.002235425403341651,-0.004288121592253447,5.835667616338469e-05,7.878151518525556e-05,0.00015756303037051111,6.565126386703923e-05,0.00016741071885917336,0.00024801588733680546,-0.0021095939446240664,0.0005397158674895763,7.878151518525556e-05,0.00015756303037051111,-2.501000381016638e-05,-1.050420178216882e-05,-2.100840356433764e-05,2.456395547037471e-20,2.0328790734103208e-20,2.6925936105307495e-19,-0.002235425403341651,7.878151518525556e-05,0.0006122521008364856,0.00016741071885917336,6.187290948616187e-20,-1.1254502169322222e-05,-7.552792949000482e-20,-3.0300581784103997e-05,-2.391581620031502e-05,8.464728555067224e-20,-0.004288121592253447,0.00015756303037051111,0.00016741071885917336,0.0027190563268959522,1.432155955649877e-19,-5.819191052386115e-20,-5.25210089108441e-05,3.5575383784680614e-20,-5.5803571740398183e-05,-0.00029761905898340046,5.835667616338469e-05,-2.501000381016638e-05,6.187290948616187e-20,1.432155955649877e-19,1.6673335494488128e-06,-5.878156771793767e-22,-3.165287342803757e-22,-3.424137975573483e-21,-3.778980686900259e-21,-1.9436678059051902e-20,7.878151518525556e-05,-1.050420178216882e-05,-1.1254502169322222e-05,-5.819191052386115e-20,-5.878156771793767e-22,1.5006002058726153e-06,3.1340304270630425e-21,2.2234614865425384e-21,2.4352197233561135e-21,2.110267797387052e-21,0.00015756303037051111,-2.100840356433764e-05,-7.552792949000482e-20,-5.25210089108441e-05,-3.165287342803757e-22,3.1340304270630425e-21,7.002801339694997e-06,2.4270979648856435e-21,3.819209210430969e-21,-9.490984722315343e-22,6.565126386703923e-05,2.456395547037471e-20,-3.0300581784103997e-05,3.5575383784680614e-20,-3.424137975573483e-21,2.2234614865425384e-21,2.4270979648856435e-21,2.1643272702931426e-06,4.235164736271502e-22,-1.0198915617341488e-20,0.00016741071885917336,2.0328790734103208e-20,-2.391581620031502e-05,-5.5803571740398183e-05,-3.778980686900259e-21,2.4352197233561135e-21,3.819209210430969e-21,4.235164736271502e-22,7.97193843027344e-06,1.0169897249036075e-20,0.00024801588733680546,2.6925936105307495e-19,8.464728555067224e-20,-0.00029761905898340046,-1.9436678059051902e-20,2.110267797387052e-21,-9.490984722315343e-22,-1.0198915617341488e-20,1.0169897249036075e-20,4.960317528457381e-05,16.0,15.0,8.0,0.01925296150147915,-0.0018612132407724857,-0.001972273224964738,-0.00339307589456439,5.1062092097708955e-05,6.893382669659331e-05,0.00012254902685526758,5.7444853155175224e-05,0.0001302083401242271,0.00017361111531499773,-0.0018612132407724857,0.00047429389087483287,6.893382669659331e-05,0.00012254902685526758,-2.188375401601661e-05,-9.191176104650367e-06,-1.633986903470941e-05,8.470329472543003e-22,-8.470329472543003e-22,5.728168043838142e-36,-0.001972273224964738,6.893382669659331e-05,0.0005380457732826471,0.0001302083401242271,-5.029711498461857e-22,-9.847689398156945e-06,-1.8497909247057693e-21,-2.6513009288464673e-05,-1.860119118646253e-05,-9.487901858946449e-20,-0.00339307589456439,0.00012254902685526758,0.0001302083401242271,0.0018375058425590396,-6.774826437548158e-23,-2.5239703869693713e-21,-3.501400715322234e-05,-6.945670167485263e-20,-3.720238237292506e-05,-0.00017361111531499773,5.1062092097708955e-05,-2.188375401601661e-05,-5.029711498461857e-22,-6.774826437548158e-23,1.4589169268219848e-06,1.107415718295921e-23,4.6529729871449237e-23,1.2385857741220793e-23,1.6344745150019768e-23,8.322900685499491e-38,6.893382669659331e-05,-9.191176104650367e-06,-9.847689398156945e-06,-2.5239703869693713e-21,1.107415718295921e-23,1.3130252227711026e-06,2.504451872959639e-22,-1.0587911840678754e-22,1.0587911840678754e-22,-9.617110912245711e-37,0.00012254902685526758,-1.633986903470941e-05,-1.8497909247057693e-21,-3.501400715322234e-05,4.6529729871449237e-23,2.504451872959639e-22,4.668534074880881e-06,2.4747805108404337e-23,-2.3354396704162677e-24,-9.65262698997984e-38,5.7444853155175224e-05,8.470329472543003e-22,-2.6513009288464673e-05,-6.945670167485263e-20,1.2385857741220793e-23,-1.0587911840678754e-22,2.4747805108404337e-23,1.8937863615064998e-06,2.329340604949326e-21,7.475645593741555e-21,0.0001302083401242271,-8.470329472543003e-22,-1.860119118646253e-05,-3.720238237292506e-05,1.6344745150019768e-23,1.0587911840678754e-22,-2.3354396704162677e-24,2.329340604949326e-21,5.314625923347194e-06,-2.7942906281606783e-21,0.00017361111531499773,5.728168043838142e-36,-9.487901858946449e-20,-0.00017361111531499773,8.322900685499491e-38,-9.617110912245711e-37,-9.65262698997984e-38,7.475645593741555e-21,-2.7942906281606783e-21,2.4801587642286904e-05,16.0,15.0,9.0,0.01740553043782711,-0.0016653049970045686,-0.0017647058703005314,-0.002752339467406273,4.538852590485476e-05,6.127451342763379e-05,9.803921420825645e-05,5.1062092097708955e-05,0.00010416666918899864,0.00012626263196580112,-0.0016653049970045686,0.00042304699309170246,6.127451342763379e-05,9.803921420825645e-05,-1.9452225387794897e-05,-8.169934517354704e-06,-1.3071895409666467e-05,-5.505714157152952e-21,2.117582368135751e-22,-1.3755935654572326e-35,-0.0017647058703005314,6.127451342763379e-05,0.00047991631436161697,0.00010416666918899864,-6.3218823219561925e-22,-8.753501788305584e-06,2.160613733395373e-21,-2.3567119569634087e-05,-1.4880952221574262e-05,-6.291209390477282e-20,-0.002752339467406273,9.803921420825645e-05,0.00010416666918899864,0.0013013605494052172,5.852534064721209e-22,2.3152349136833094e-21,-2.4509803552064113e-05,-6.268043809681823e-20,-2.604166729724966e-05,-0.00010822511103469878,4.538852590485476e-05,-1.9452225387794897e-05,-6.3218823219561925e-22,5.852534064721209e-22,1.2968150713277282e-06,4.710111760231892e-23,-1.335043204882563e-22,1.998438212819761e-23,7.820705483210504e-24,-4.384315933372586e-38,6.127451342763379e-05,-8.169934517354704e-06,-8.753501788305584e-06,2.3152349136833094e-21,4.710111760231892e-23,1.1671335187202203e-06,-2.8385767492652576e-22,7.411538288475128e-22,-0.0,2.0800056494549927e-36,9.803921420825645e-05,-1.3071895409666467e-05,2.160613733395373e-21,-2.4509803552064113e-05,-1.335043204882563e-22,-2.8385767492652576e-22,3.267973852416617e-06,-3.735044577068439e-24,7.694823004259861e-24,-2.433776293878114e-38,5.1062092097708955e-05,-5.505714157152952e-21,-2.3567119569634087e-05,-6.268043809681823e-20,1.998438212819761e-23,7.411538288475128e-22,-3.735044577068439e-24,1.6833656673043151e-06,2.8587361969832636e-21,5.281494896775663e-21,0.00010416666918899864,2.117582368135751e-22,-1.4880952221574262e-05,-2.604166729724966e-05,7.820705483210504e-24,-0.0,7.694823004259861e-24,2.8587361969832636e-21,3.7202380553935654e-06,-2.757208662521616e-21,0.00012626263196580112,-1.3755935654572326e-35,-6.291209390477282e-20,-0.00010822511103469878,-4.384315933372586e-38,2.0800056494549927e-36,-2.433776293878114e-38,5.281494896775663e-21,-2.757208662521616e-21,1.3528138879337348e-05,16.0,15.0,10.0,0.01588328182697296,-0.0015067958738654852,-0.0015967580256983638,-0.002277740743011236,4.0849674405762926e-05,5.5147058446891606e-05,8.021390385692939e-05,4.595588325173594e-05,8.522727148374543e-05,9.469696669839323e-05,-0.0015067958738654852,0.00038181181298568845,5.5147058446891606e-05,8.021390385692939e-05,-1.750700357661117e-05,-7.3529413384676445e-06,-1.069518748408882e-05,3.2610768469290563e-20,-3.3881317890172014e-20,-8.820396185184566e-20,-0.0015967580256983638,5.5147058446891606e-05,0.0004331422387622297,8.522727148374543e-05,3.335887255398808e-20,-7.878151336626615e-06,-3.786000493776379e-20,-2.121040779456962e-05,-1.2175324627605733e-05,-1.8447509310049422e-19,-0.002277740743011236,8.021390385692939e-05,8.522727148374543e-05,0.0009559752070344985,-6.009109782323729e-20,-5.491545457988714e-20,-1.7825312170316465e-05,-1.1943164556285635e-19,-1.8939394067274407e-05,-7.102272502379492e-05,4.0849674405762926e-05,-1.750700357661117e-05,3.335887255398808e-20,-6.009109782323729e-20,1.1671335187202203e-06,-7.243526819098902e-22,1.8541324112313223e-21,-2.3746461110482935e-21,8.42595939139456e-22,3.533941355128496e-21,5.5147058446891606e-05,-7.3529413384676445e-06,-7.878151336626615e-06,-5.491545457988714e-20,-7.243526819098902e-22,1.0504202236916171e-06,1.4514989159226724e-21,-5.293955920339377e-22,1.2705494208814505e-21,3.074528958766952e-21,8.021390385692939e-05,-1.069518748408882e-05,-3.786000493776379e-20,-1.7825312170316465e-05,1.8541324112313223e-21,1.4514989159226724e-21,2.3767081529513234e-06,1.0477096699681141e-21,1.9430252465123627e-21,2.158916963008002e-21,4.595588325173594e-05,3.2610768469290563e-20,-2.121040779456962e-05,-1.1943164556285635e-19,-2.3746461110482935e-21,-5.293955920339377e-22,1.0477096699681141e-21,1.5150291119425674e-06,4.0234064994579266e-21,8.155249591755593e-21,8.522727148374543e-05,-3.3881317890172014e-20,-1.2175324627605733e-05,-1.8939394067274407e-05,8.42595939139456e-22,1.2705494208814505e-21,1.9430252465123627e-21,4.0234064994579266e-21,2.7056275939685293e-06,9.497081140365087e-21,9.469696669839323e-05,-8.820396185184566e-20,-1.8447509310049422e-19,-7.102272502379492e-05,3.533941355128496e-21,3.074528958766952e-21,2.158916963008002e-21,8.155249591755593e-21,9.497081140365087e-21,7.89141449786257e-06,16.0,15.0,11.0,0.014606935903429985,-0.0013758912682533264,-0.0014580547576770186,-0.0019163282122462988,3.713606565725058e-05,5.013369082007557e-05,6.68449210934341e-05,4.177807568339631e-05,7.102272502379492e-05,7.284382445504889e-05,-0.0013758912682533264,0.0003479119041003287,5.013369082007557e-05,6.68449210934341e-05,-1.591545697010588e-05,-6.684491836494999e-06,-8.912656085158233e-06,-3.8116482626443515e-21,2.117582368135751e-22,-1.0265640809845408e-35,-0.0014580547576770186,5.013369082007557e-05,0.0003946880460716784,7.102272502379492e-05,-4.2208324589099567e-22,-7.1619556365476456e-06,-1.2891912769226541e-21,-1.9282188077340834e-05,-1.014610370475566e-05,-3.667699449014518e-20,-0.0019163282122462988,6.68449210934341e-05,7.102272502379492e-05,0.0007232034695334733,-6.106449331232383e-22,-7.102592590086716e-22,-1.3368983672989998e-05,-3.7692966152816365e-20,-1.4204545550455805e-05,-4.856254963669926e-05,3.713606565725058e-05,-1.591545697010588e-05,-4.2208324589099567e-22,-6.106449331232383e-22,1.0610305025693378e-06,5.393107531972244e-23,8.510836028522037e-23,2.4821883091709116e-24,-3.9525351063596825e-24,0.0,5.013369082007557e-05,-6.684491836494999e-06,-7.1619556365476456e-06,-7.102592590086716e-22,5.393107531972244e-23,9.549273727316177e-07,1.7189217278070878e-22,5.823351512373315e-22,-5.293955920339377e-23,1.4665200516328428e-36,6.68449210934341e-05,-8.912656085158233e-06,-1.2891912769226541e-21,-1.3368983672989998e-05,8.510836028522037e-23,1.7189217278070878e-22,1.7825311715569114e-06,1.0579449157400588e-37,0.0,0.0,4.177807568339631e-05,-3.8116482626443515e-21,-1.9282188077340834e-05,-3.7692966152816365e-20,2.4821883091709116e-24,5.823351512373315e-22,1.0579449157400588e-37,1.3772992133453954e-06,1.2705494208814505e-21,2.927525473763711e-21,7.102272502379492e-05,2.117582368135751e-22,-1.014610370475566e-05,-1.4204545550455805e-05,-3.9525351063596825e-24,-5.293955920339377e-23,0.0,1.2705494208814505e-21,2.029220695476397e-06,-8.616722871454808e-22,7.284382445504889e-05,-1.0265640809845408e-35,-3.667699449014518e-20,-4.856254963669926e-05,0.0,1.4665200516328428e-36,0.0,2.927525473763711e-21,-8.616722871454808e-22,4.856254690821515e-06,16.0,15.0,12.0,0.013521147891879082,-0.0012659471249207854,-0.0013415582943707705,-0.0016347164055332541,3.404139351914637e-05,4.595588325173594e-05,5.656108623952605e-05,3.829656998277642e-05,6.009615390212275e-05,5.723443246097304e-05,-0.0012659471249207854,0.00031954768928699195,4.595588325173594e-05,5.656108623952605e-05,-1.4589169040846173e-05,-6.127450888016028e-06,-7.54147822590312e-06,4.658681209898652e-21,-2.117582368135751e-22,7.407423138975835e-36,-0.0013415582943707705,4.595588325173594e-05,0.0003625128010753542,6.009615390212275e-05,5.637979044630474e-22,-6.565126113855513e-06,-8.187230643941977e-22,-1.7675340131972916e-05,-8.585165232943837e-06,-3.737629814987634e-20,-0.0016347164055332541,5.656108623952605e-05,6.009615390212275e-05,0.0005604995531029999,2.9323817772268985e-22,-1.0520024869312586e-21,-1.0283833944413345e-05,-3.134021904840911e-20,-1.0926573850156274e-05,-3.4340660931775346e-05,3.404139351914637e-05,-1.4589169040846173e-05,5.637979044630474e-22,2.9323817772268985e-22,9.726112466523773e-07,-1.1097637627803113e-23,-3.3867218610767435e-23,-2.9878255091096004e-23,-5.604862648052078e-24,-0.0,4.595588325173594e-05,-6.127450888016028e-06,-6.565126113855513e-06,-1.0520024869312586e-21,-1.1097637627803113e-23,8.753501674618747e-07,1.0916307693546296e-22,-6.352747104407253e-22,2.6469779601696886e-23,-1.0582032927561048e-36,5.656108623952605e-05,-7.54147822590312e-06,-8.187230643941977e-22,-1.0283833944413345e-05,-3.3867218610767435e-23,1.0916307693546296e-22,1.3711778592551127e-06,-8.816207631167156e-38,0.0,-0.0,3.829656998277642e-05,4.658681209898652e-21,-1.7675340131972916e-05,-3.134021904840911e-20,-2.9878255091096004e-23,-6.352747104407253e-22,-8.816207631167156e-38,1.2625242788999458e-06,8.470329472543003e-22,2.267338611666753e-21,6.009615390212275e-05,-2.117582368135751e-22,-8.585165232943837e-06,-1.0926573850156274e-05,-5.604862648052078e-24,2.6469779601696886e-23,0.0,8.470329472543003e-22,1.5609390402460122e-06,1.0242832526298875e-21,5.723443246097304e-05,7.407423138975835e-36,-3.737629814987634e-20,-3.4340660931775346e-05,-0.0,-1.0582032927561048e-36,-0.0,2.267338611666753e-21,1.0242832526298875e-21,3.1218780804920243e-06,16.0,15.0,13.0,0.012586075812578201,-0.001172295887954533,-0.0012423238949850202,-0.0014109971234574914,3.142282730550505e-05,4.242081558913924e-05,4.848093158216216e-05,3.535068026394583e-05,5.1510989578673616e-05,4.578754669637419e-05,-0.001172295887954533,0.00029546432779170573,4.242081558913924e-05,4.848093158216216e-05,-1.3466925338434521e-05,-5.6561084420536645e-06,-6.464123998739524e-06,8.470329472543003e-22,-1.3619634808591262e-21,1.2705494208814505e-21,-0.0012423238949850202,4.242081558913924e-05,0.0003351932391524315,5.1510989578673616e-05,6.609072246320568e-23,-6.06011644777027e-06,-2.117582368135751e-21,-1.631569830351509e-05,-7.358712537097745e-06,-2.668153783851046e-20,-0.0014109971234574914,4.848093158216216e-05,5.1510989578673616e-05,0.00044329138472676277,2.21447821623292e-22,-1.0548979219977818e-21,-8.080155566858593e-06,-3.153767933908774e-20,-8.585165232943837e-06,-2.4975024643936194e-05,3.142282730550505e-05,-1.3466925338434521e-05,6.609072246320568e-23,2.21447821623292e-22,8.977950187727401e-07,-2.3373958482459895e-24,-4.431512909778608e-23,-6.292988776689535e-24,7.694034932215545e-24,4.417346940073102e-24,4.242081558913924e-05,-5.6561084420536645e-06,-6.06011644777027e-06,-1.0548979219977818e-21,-2.3373958482459895e-24,8.080154998424405e-07,1.0525508525454703e-22,-1.5881867761018131e-22,3.366495783011239e-23,-5.2011457248653104e-24,4.848093158216216e-05,-6.464123998739524e-06,-2.117582368135751e-21,-8.080155566858593e-06,-4.431512909778608e-23,1.0525508525454703e-22,1.0773539997899206e-06,6.617444900424222e-24,2.3822801641527197e-22,-1.5881867761018131e-22,3.535068026394583e-05,8.470329472543003e-22,-1.631569830351509e-05,-3.153767933908774e-20,-6.292988776689535e-24,-1.5881867761018131e-22,6.617444900424222e-24,1.1654069567157421e-06,1.4293680984916318e-21,1.7999450129153882e-21,5.1510989578673616e-05,-1.3619634808591262e-21,-7.358712537097745e-06,-8.585165232943837e-06,7.694034932215545e-24,3.366495783011239e-23,2.3822801641527197e-22,1.4293680984916318e-21,1.2264521274119033e-06,3.1763735522036263e-22,4.578754669637419e-05,1.2705494208814505e-21,-2.668153783851046e-20,-2.4975024643936194e-05,4.417346940073102e-24,-5.2011457248653104e-24,-1.5881867761018131e-22,1.7999450129153882e-21,3.1763735522036263e-22,2.0812519778701244e-06,16.0,15.0,14.0,0.011772292666137218,-0.0010915616294369102,-0.0011567751644179225,-0.0012303045950829983,2.9178338081692345e-05,3.939075759262778e-05,4.201680712867528e-05,3.282563193351962e-05,4.4642856664722785e-05,3.720238237292506e-05,-0.0010915616294369102,0.00027475989190861583,3.939075759262778e-05,4.201680712867528e-05,-1.250500190508319e-05,-5.25210089108441e-06,-5.6022408898570575e-06,1.2705494208814505e-20,-1.1994505613189077e-21,1.5246593050577406e-20,-0.0011567751644179225,3.939075759262778e-05,0.00031170641887001693,4.4642856664722785e-05,3.1321261748980016e-20,-5.627251084661111e-06,-2.5516867536035798e-20,-1.5150290892051999e-05,-6.377551017067162e-06,-2.541098841762901e-21,-0.0012303045950829983,4.201680712867528e-05,4.4642856664722785e-05,0.00035668833879753947,3.3595407435087034e-20,-1.97114732746557e-20,-6.464123998739524e-06,2.9385326708553133e-21,-6.868132004456129e-06,-1.860119118646253e-05,2.9178338081692345e-05,-1.250500190508319e-05,3.1321261748980016e-20,3.3595407435087034e-20,8.336667747244064e-07,-3.5594719232473237e-22,3.867860748945522e-23,-1.7100478882822418e-21,-8.903386594040965e-22,-2.1973303743937837e-21,3.939075759262778e-05,-5.25210089108441e-06,-5.627251084661111e-06,-1.97114732746557e-20,-3.5594719232473237e-22,7.503001029363077e-07,8.584948311498975e-22,1.0587911840678754e-21,6.839523002978123e-22,5.193997020010543e-22,4.201680712867528e-05,-5.6022408898570575e-06,-2.5516867536035798e-20,-6.464123998739524e-06,3.867860748945522e-23,8.584948311498975e-22,8.61883222569304e-07,6.485096002415737e-22,1.2440796412797536e-21,1.9058241313221758e-21,3.282563193351962e-05,1.2705494208814505e-20,-1.5150290892051999e-05,2.9385326708553133e-21,-1.7100478882822418e-21,1.0587911840678754e-21,6.485096002415737e-22,1.0821636351465713e-06,4.235164736271502e-22,-9.396771758602394e-22,4.4642856664722785e-05,-1.1994505613189077e-21,-6.377551017067162e-06,-6.868132004456129e-06,-8.903386594040965e-22,6.839523002978123e-22,1.2440796412797536e-21,4.235164736271502e-22,9.811617474042578e-07,1.5352472168984194e-21,3.720238237292506e-05,1.5246593050577406e-20,-2.541098841762901e-21,-1.860119118646253e-05,-2.1973303743937837e-21,5.193997020010543e-22,1.9058241313221758e-21,-9.396771758602394e-22,1.5352472168984194e-21,1.4308608342616935e-06,16.0,15.0,15.0,0.011057580821216106,-0.0010212418856099248,-0.0010822609765455127,-0.0010822609765455127,2.7233116270508617e-05,3.676470441860147e-05,3.676470441860147e-05,3.0637256713816896e-05,3.9062499126885086e-05,3.0637256713816896e-05,-0.0010212418856099248,0.00025676938821561635,3.676470441860147e-05,3.676470441860147e-05,-1.1671335414575879e-05,-4.901960892311763e-06,-4.901960892311763e-06,4.235164736271502e-22,3.6503736906422617e-23,4.235164736271502e-22,-0.0010822609765455127,3.676470441860147e-05,0.00029129799804650247,3.9062499126885086e-05,-5.36576056428749e-23,-5.25210089108441e-06,-5.293955920339377e-22,-1.4140271559881512e-05,-5.580357083090348e-06,-1.3976043629695956e-20,-0.0010822609765455127,3.676470441860147e-05,3.9062499126885086e-05,0.00029129799804650247,-3.4515572660260273e-22,-9.387011592829766e-22,-5.25210089108441e-06,-2.2106106218034162e-20,-5.580357083090348e-06,-1.4140271559881512e-05,2.7233116270508617e-05,-1.1671335414575879e-05,-5.36576056428749e-23,-3.4515572660260273e-22,7.780890314279532e-07,3.4336698134457047e-23,2.7372779213572515e-23,-1.221407460163896e-23,-2.8595320345743304e-24,1.0621348656779633e-23,3.676470441860147e-05,-4.901960892311763e-06,-5.25210089108441e-06,-9.387011592829766e-22,3.4336698134457047e-23,7.002801112321322e-07,1.0956900582462796e-22,0.0,1.79825734282742e-23,1.5914365517097435e-24,3.676470441860147e-05,-4.901960892311763e-06,-5.293955920339377e-22,-5.25210089108441e-06,2.7372779213572515e-23,1.0956900582462796e-22,7.002801112321322e-07,0.0,-3.970466940254533e-23,-1.5881867761018131e-22,3.0637256713816896e-05,4.235164736271502e-22,-1.4140271559881512e-05,-2.2106106218034162e-20,-1.221407460163896e-23,0.0,0.0,1.0100194458573242e-06,8.470329472543003e-22,1.164670302474663e-21,3.9062499126885086e-05,3.6503736906422617e-23,-5.580357083090348e-06,-5.580357083090348e-06,-2.8595320345743304e-24,1.79825734282742e-23,-3.970466940254533e-23,8.470329472543003e-22,7.971938771333953e-07,-3.705769144237564e-22,3.0637256713816896e-05,4.235164736271502e-22,-1.3976043629695956e-20,-1.4140271559881512e-05,1.0621348656779633e-23,1.5914365517097435e-24,-1.5881867761018131e-22,1.164670302474663e-21,-3.705769144237564e-22,1.0100194458573242e-06,16.0,15.0,16.0,0.010424851439893246,-0.0009594417060725391,-0.001016773865558207,-0.0009594417060725391,2.5531046048854478e-05,3.446691334829666e-05,3.24394459312316e-05,2.8722426577587612e-05,3.446691334829666e-05,2.5531046048854478e-05,-0.0009594417060725391,0.00024099161964841187,3.446691334829666e-05,3.24394459312316e-05,-1.0941877008008305e-05,-4.5955880523251835e-06,-4.325259396864567e-06,8.470329472543003e-22,8.80838906082612e-22,2.541098841762901e-21,-0.001016773865558207,3.446691334829666e-05,0.000273399637080729,3.446691334829666e-05,-1.9413191612554231e-22,-4.923844699078472e-06,1.0587911840678754e-22,-1.3256504644232336e-05,-4.923844699078472e-06,-1.461131834013668e-20,-0.0009594417060725391,3.24394459312316e-05,3.446691334829666e-05,0.00024099161964841187,5.833047559531567e-22,-2.449047836557688e-22,-4.325259396864567e-06,-1.8604342107954623e-20,-4.5955880523251835e-06,-1.0941877008008305e-05,2.5531046048854478e-05,-1.0941877008008305e-05,-1.9413191612554231e-22,5.833047559531567e-22,7.294584634109924e-07,3.1556723905465613e-24,-5.873660138416262e-23,8.496040626700255e-24,5.677164511028752e-24,-1.1322604191893136e-23,3.446691334829666e-05,-4.5955880523251835e-06,-4.923844699078472e-06,-2.449047836557688e-22,3.1556723905465613e-24,6.565126113855513e-07,6.064377675217391e-23,-1.0587911840678754e-22,-2.1799570003772883e-23,1.1849879018158086e-24,3.24394459312316e-05,-4.325259396864567e-06,1.0587911840678754e-22,-4.325259396864567e-06,-5.873660138416262e-23,6.064377675217391e-23,5.767012680735206e-07,6.617444900424222e-24,-7.940933880509066e-23,-3.1763735522036263e-22,2.8722426577587612e-05,8.470329472543003e-22,-1.3256504644232336e-05,-1.8604342107954623e-20,8.496040626700255e-24,-1.0587911840678754e-22,6.617444900424222e-24,9.468931807532499e-07,5.029258124322408e-22,1.0058516248644817e-21,3.446691334829666e-05,8.80838906082612e-22,-4.923844699078472e-06,-4.5955880523251835e-06,5.677164511028752e-24,-2.1799570003772883e-23,-7.940933880509066e-23,5.029258124322408e-22,6.565126113855513e-07,7.940933880509066e-23,2.5531046048854478e-05,2.541098841762901e-21,-1.461131834013668e-20,-1.0941877008008305e-05,-1.1322604191893136e-23,1.1849879018158086e-24,-3.1763735522036263e-22,1.0058516248644817e-21,7.940933880509066e-23,7.294584634109924e-07,16.0,16.0,3.0,0.039199165999889374,-0.004280204884707928,-0.004280204884707928,-0.016199449077248573,0.0001276552357012406,0.00016219723329413682,0.0006893382524140179,0.0001276552357012406,0.0006893382524140179,0.001953125,-0.004280204884707928,0.0011360242497175932,0.00016219723329413682,0.0006893382524140179,-5.470938413054682e-05,-2.1626297893817537e-05,-9.191176650347188e-05,1.4346355587829754e-20,0.0,-0.0,-0.004280204884707928,0.00016219723329413682,0.0011360242497175932,0.0006893382524140179,4.5976171659215e-22,-2.1626297893817537e-05,-1.9613895042942852e-20,-5.470938413054682e-05,-9.191176650347188e-05,-0.0,-0.016199449077248573,0.0006893382524140179,0.0006893382524140179,0.035730697214603424,-1.542200098077518e-21,-2.01407218514339e-20,-0.0006893382524140179,2.4511175551374984e-22,-0.0006893382524140179,-0.01171875,0.0001276552357012406,-5.470938413054682e-05,4.5976171659215e-22,-1.542200098077518e-21,3.647292260211543e-06,2.0223537302301118e-22,2.0562667974366907e-22,-1.829092653435061e-22,0.0,-0.0,0.00016219723329413682,-2.1626297893817537e-05,-2.1626297893817537e-05,-2.01407218514339e-20,2.0223537302301118e-22,2.883506340367603e-06,2.6854295398015084e-21,-1.6129456489287177e-21,0.0,-0.0,0.0006893382524140179,-9.191176650347188e-05,-1.9613895042942852e-20,-0.0006893382524140179,2.0562667974366907e-22,2.6854295398015084e-21,9.191176650347188e-05,-3.2681566981107496e-23,0.0,-0.0,0.0001276552357012406,1.4346355587829754e-20,-5.470938413054682e-05,2.4511175551374984e-22,-1.829092653435061e-22,-1.6129456489287177e-21,-3.2681566981107496e-23,3.647292260211543e-06,0.0,-0.0,0.0006893382524140179,0.0,-9.191176650347188e-05,-0.0006893382524140179,0.0,0.0,0.0,0.0,9.191176650347188e-05,-0.0,0.001953125,-0.0,-0.0,-0.01171875,-0.0,-0.0,-0.0,-0.0,-0.0,0.005859375,16.0,16.0,4.0,0.031731635332107544,-0.0033135542180389166,-0.0033135542180389166,-0.010305606760084629,9.574142313795164e-05,0.00012164792133262381,0.00041360294562764466,9.574142313795164e-05,0.00041360294562764466,0.0009765625,-0.0033135542180389166,0.0008658049628138542,0.00012164792133262381,0.00041360294562764466,-4.103203900740482e-05,-1.62197229656158e-05,-5.5147058446891606e-05,-6.125967542319527e-21,-6.714919330663716e-22,-0.0,-0.0033135542180389166,0.00012164792133262381,0.0008658049628138542,0.00041360294562764466,-3.244175957680755e-23,-1.62197229656158e-05,5.814236773660676e-21,-4.103203900740482e-05,-5.5147058446891606e-05,-0.0,-0.010305606760084629,0.00041360294562764466,0.00041360294562764466,0.013706342317163944,-2.819687254008687e-21,4.136145400835222e-21,-0.00027573530678637326,-4.014224713879231e-21,-0.00027573530678637326,-0.0029296875,9.574142313795164e-05,-4.103203900740482e-05,-3.244175957680755e-23,-2.819687254008687e-21,2.7354692520020762e-06,1.2513735052185514e-24,3.9460781378554855e-22,3.1656771189770268e-24,-1.8649503258818822e-23,-0.0,0.00012164792133262381,-1.62197229656158e-05,-1.62197229656158e-05,4.136145400835222e-21,1.2513735052185514e-24,2.1626296984322835e-06,-6.9262709443905295e-22,7.537426857431959e-22,1.4114106203064745e-22,-0.0,0.00041360294562764466,-5.5147058446891606e-05,5.814236773660676e-21,-0.00027573530678637326,3.9460781378554855e-22,-6.9262709443905295e-22,3.676470441860147e-05,-3.3070554293471977e-23,-5.762402982876236e-23,-0.0,9.574142313795164e-05,-6.125967542319527e-21,-4.103203900740482e-05,-4.014224713879231e-21,3.1656771189770268e-24,7.537426857431959e-22,-3.3070554293471977e-23,2.7354692520020762e-06,5.683004953181083e-22,-0.0,0.00041360294562764466,-6.714919330663716e-22,-5.5147058446891606e-05,-0.00027573530678637326,-1.8649503258818822e-23,1.4114106203064745e-22,-5.762402982876236e-23,5.683004953181083e-22,3.676470441860147e-05,-0.0,0.0009765625,-0.0,-0.0,-0.0029296875,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009765625,16.0,16.0,5.0,0.02670358493924141,-0.002705990569666028,-0.002705990569666028,-0.007149422075599432,7.659313996555284e-05,9.731834143167362e-05,0.00027573530678637326,7.659313996555284e-05,0.00027573530678637326,0.0005580357392318547,-0.002705990569666028,0.0006999968900345266,9.731834143167362e-05,0.00027573530678637326,-3.282563193351962e-05,-1.2975778190593701e-05,-3.676470441860147e-05,6.776263578034403e-21,8.470329472543003e-22,-0.0,-0.002705990569666028,9.731834143167362e-05,0.0006999968900345266,0.00027573530678637326,1.4027463527251532e-21,-1.2975778190593701e-05,-8.396915577591788e-21,-3.282563193351962e-05,-3.676470441860147e-05,-0.0,-0.007149422075599432,0.00027573530678637326,0.00027573530678637326,0.006922925356775522,-3.686137741076851e-22,-8.915994837982255e-21,-0.00013786765339318663,0.0,-0.00013786765339318663,-0.0011160714784637094,7.659313996555284e-05,-3.282563193351962e-05,1.4027463527251532e-21,-3.686137741076851e-22,2.188375447076396e-06,-1.957660194026023e-22,1.4943587765106121e-22,1.7846668471522725e-23,-1.2081072810790879e-22,-0.0,9.731834143167362e-05,-1.2975778190593701e-05,-1.2975778190593701e-05,-8.915994837982255e-21,-1.957660194026023e-22,1.7301038042205619e-06,1.0213103703551333e-21,-9.529120656610879e-22,0.0,-0.0,0.00027573530678637326,-3.676470441860147e-05,-8.396915577591788e-21,-0.00013786765339318663,1.4943587765106121e-22,1.0213103703551333e-21,1.8382352209300734e-05,7.03034542672521e-23,-8.578432415085158e-24,-0.0,7.659313996555284e-05,6.776263578034403e-21,-3.282563193351962e-05,0.0,1.7846668471522725e-23,-9.529120656610879e-22,7.03034542672521e-23,2.188375447076396e-06,-2.117582368135751e-22,-0.0,0.00027573530678637326,8.470329472543003e-22,-3.676470441860147e-05,-0.00013786765339318663,-1.2081072810790879e-22,0.0,-8.578432415085158e-24,-2.117582368135751e-22,1.8382352209300734e-05,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,16.0,16.0,6.0,0.023070894181728363,-0.0022878176532685757,-0.0022878176532685757,-0.005256203934550285,6.38276178506203e-05,8.109861664706841e-05,0.00019695378432516009,6.38276178506203e-05,0.00019695378432516009,0.00034877232974395156,-0.0022878176532685757,0.0005877075018361211,8.109861664706841e-05,0.00019695378432516009,-2.735469206527341e-05,-1.0813148946908768e-05,-2.626050445542205e-05,5.929230630780102e-21,8.470329472543003e-22,-0.0,-0.0022878176532685757,8.109861664706841e-05,0.0005877075018361211,0.00019695378432516009,7.226244580605065e-22,-1.0813148946908768e-05,-5.828769787723607e-21,-2.735469206527341e-05,-2.626050445542205e-05,-0.0,-0.005256203934550285,0.00019695378432516009,0.00019695378432516009,0.0040207295678555965,8.116233162472086e-22,-5.833697732378763e-21,-7.878151518525556e-05,3.3881317890172014e-21,-7.878151518525556e-05,-0.0005231584655120969,6.38276178506203e-05,-2.735469206527341e-05,7.226244580605065e-22,8.116233162472086e-22,1.8236461301057716e-06,2.4864629097580327e-23,8.586855871831108e-24,-6.633808399953402e-23,-7.057633703158615e-23,-0.0,8.109861664706841e-05,-1.0813148946908768e-05,-1.0813148946908768e-05,-5.833697732378763e-21,2.4864629097580327e-23,1.4417531701838016e-06,8.099451755989755e-22,-6.352747104407253e-22,-1.0587911840678754e-22,-0.0,0.00019695378432516009,-2.626050445542205e-05,-5.828769787723607e-21,-7.878151518525556e-05,8.586855871831108e-24,8.099451755989755e-22,1.050420178216882e-05,-9.687207971809499e-24,-1.9347250729486807e-23,-0.0,6.38276178506203e-05,5.929230630780102e-21,-2.735469206527341e-05,3.3881317890172014e-21,-6.633808399953402e-23,-6.352747104407253e-22,-9.687207971809499e-24,1.8236461301057716e-06,-2.117582368135751e-22,-0.0,0.00019695378432516009,8.470329472543003e-22,-2.626050445542205e-05,-7.878151518525556e-05,-7.057633703158615e-23,-1.0587911840678754e-22,-1.9347250729486807e-23,-2.117582368135751e-22,1.050420178216882e-05,-0.0,0.00034877232974395156,-0.0,-0.0,-0.0005231584655120969,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010463169746799394,16.0,16.0,7.0,0.020317455753684044,-0.0019820888992398977,-0.0019820888992398977,-0.004029346164315939,5.470938413054682e-05,6.951310206204653e-05,0.00014771534188184887,5.470938413054682e-05,0.00014771534188184887,0.0002325148816453293,-0.0019820888992398977,0.0005065629375167191,6.951310206204653e-05,0.00014771534188184887,-2.3446878913091496e-05,-9.26841312320903e-06,-1.969537879631389e-05,-8.470329472543003e-22,4.235164736271502e-22,-0.0,-0.0019820888992398977,6.951310206204653e-05,0.0005065629375167191,0.00014771534188184887,7.467982737747757e-23,-9.26841312320903e-06,1.4524971468230263e-21,-2.3446878913091496e-05,-1.969537879631389e-05,-0.0,-0.004029346164315939,0.00014771534188184887,0.00014771534188184887,0.002552192658185959,-1.9012360658103124e-21,1.315747692384406e-21,-4.923844608129002e-05,0.0,-4.923844608129002e-05,-0.00027901786961592734,5.470938413054682e-05,-2.3446878913091496e-05,7.467982737747757e-23,-1.9012360658103124e-21,1.5631252381353988e-06,4.127630751768629e-23,2.880421970646015e-22,-3.2293049829842526e-23,-6.309612048114805e-24,-0.0,6.951310206204653e-05,-9.26841312320903e-06,-9.26841312320903e-06,1.315747692384406e-21,4.127630751768629e-23,1.2357884315861156e-06,-1.3359167578945685e-22,1.5881867761018131e-22,-1.0587911840678754e-22,-0.0,0.00014771534188184887,-1.969537879631389e-05,1.4524971468230263e-21,-4.923844608129002e-05,2.880421970646015e-22,-1.3359167578945685e-22,6.565126113855513e-06,-1.7166611995515227e-23,-3.8180482848575224e-23,-0.0,5.470938413054682e-05,-8.470329472543003e-22,-2.3446878913091496e-05,0.0,-3.2293049829842526e-23,1.5881867761018131e-22,-1.7166611995515227e-23,1.5631252381353988e-06,-1.0587911840678754e-22,-0.0,0.00014771534188184887,4.235164736271502e-22,-1.969537879631389e-05,-4.923844608129002e-05,-6.309612048114805e-24,-1.0587911840678754e-22,-3.8180482848575224e-23,-1.0587911840678754e-22,6.565126113855513e-06,-0.0,0.0002325148816453293,-0.0,-0.0,-0.00027901786961592734,-0.0,-0.0,-0.0,-0.0,-0.0,4.650297705666162e-05,16.0,16.0,8.0,0.018155952915549278,-0.0017486888682469726,-0.0017486888682469726,-0.0031881893519312143,4.787071156897582e-05,6.0823960666311905e-05,0.00011488970631035045,4.787071156897582e-05,0.00011488970631035045,0.00016276042151730508,-0.0017486888682469726,0.00044515737681649625,6.0823960666311905e-05,0.00011488970631035045,-2.051601950370241e-05,-8.1098614828079e-06,-1.5318628356908448e-05,-1.6940658945086007e-21,0.0,-0.0,-0.0017486888682469726,6.0823960666311905e-05,0.00044515737681649625,0.00011488970631035045,-1.3372298010940908e-22,-8.1098614828079e-06,1.9609883540089397e-21,-2.051601950370241e-05,-1.5318628356908448e-05,-0.0,-0.0031881893519312143,0.00011488970631035045,0.00011488970631035045,0.001724713365547359,1.6117910089989638e-22,1.4219322577336951e-21,-3.282563193351962e-05,1.6940658945086007e-21,-3.282563193351962e-05,-0.00016276042151730508,4.787071156897582e-05,-2.051601950370241e-05,-1.3372298010940908e-22,1.6117910089989638e-22,1.3677346260010381e-06,4.8786884957783634e-23,-8.039520509961613e-24,-4.6679818547276586e-23,3.0981464839703558e-24,-0.0,6.0823960666311905e-05,-8.1098614828079e-06,-8.1098614828079e-06,1.4219322577336951e-21,4.8786884957783634e-23,1.0813148492161417e-06,-1.9884439446848987e-22,3.705769144237564e-22,5.293955920339377e-23,-0.0,0.00011488970631035045,-1.5318628356908448e-05,1.9609883540089397e-21,-3.282563193351962e-05,-8.039520509961613e-24,-1.9884439446848987e-22,4.376750894152792e-06,-3.508108621728532e-23,-8.158929596324013e-24,-0.0,4.787071156897582e-05,-1.6940658945086007e-21,-2.051601950370241e-05,1.6940658945086007e-21,-4.6679818547276586e-23,3.705769144237564e-22,-3.508108621728532e-23,1.3677346260010381e-06,-1.0587911840678754e-22,-0.0,0.00011488970631035045,0.0,-1.5318628356908448e-05,-3.282563193351962e-05,3.0981464839703558e-24,5.293955920339377e-23,-8.158929596324013e-24,-1.0587911840678754e-22,4.376750894152792e-06,-0.0,0.00016276042151730508,-0.0,-0.0,-0.00016276042151730508,-0.0,-0.0,-0.0,-0.0,-0.0,2.325148852833081e-05,16.0,16.0,9.0,0.01641281321644783,-0.0015646026004105806,-0.0015646026004105806,-0.002586062764748931,4.255174280842766e-05,5.406574564403854e-05,9.191176650347188e-05,4.255174280842766e-05,9.191176650347188e-05,0.00011837121564894915,-0.0015646026004105806,0.0003970570978708565,5.406574564403854e-05,9.191176650347188e-05,-1.8236461983178742e-05,-7.2087659646058455e-06,-1.2254901776032057e-05,3.8116482626443515e-21,2.117582368135751e-22,-0.0,-0.0015646026004105806,5.406574564403854e-05,0.0003970570978708565,9.191176650347188e-05,2.7701276040635925e-22,-7.2087659646058455e-06,-2.4525396252250094e-21,-1.8236461983178742e-05,-1.2254901776032057e-05,-0.0,-0.002586062764748931,9.191176650347188e-05,9.191176650347188e-05,0.0012214615708217025,1.7852109087413853e-22,-2.3554248650711977e-21,-2.297794162586797e-05,0.0,-2.297794162586797e-05,-0.000101461038866546,4.255174280842766e-05,-1.8236461983178742e-05,2.7701276040635925e-22,1.7852109087413853e-22,1.215764086737181e-06,-5.317501840638414e-23,3.228935480536247e-23,1.5325691477211644e-23,-5.304460471039391e-24,-0.0,5.406574564403854e-05,-7.2087659646058455e-06,-7.2087659646058455e-06,-2.3554248650711977e-21,-5.317501840638414e-23,9.611687801225344e-07,3.685266081331018e-22,-5.823351512373315e-22,-2.6469779601696886e-23,-0.0,9.191176650347188e-05,-1.2254901776032057e-05,-2.4525396252250094e-21,-2.297794162586797e-05,3.228935480536247e-23,3.685266081331018e-22,3.063725444008014e-06,-3.61121905292816e-24,-1.0952988542347715e-24,-0.0,4.255174280842766e-05,3.8116482626443515e-21,-1.8236461983178742e-05,0.0,1.5325691477211644e-23,-5.823351512373315e-22,-3.61121905292816e-24,1.215764086737181e-06,0.0,-0.0,9.191176650347188e-05,2.117582368135751e-22,-1.2254901776032057e-05,-2.297794162586797e-05,-5.304460471039391e-24,-2.6469779601696886e-23,-1.0952988542347715e-24,0.0,3.063725444008014e-06,-0.0,0.00011837121564894915,-0.0,-0.0,-0.000101461038866546,-0.0,-0.0,-0.0,-0.0,-0.0,1.268262985831825e-05,16.0,16.0,10.0,0.014976661652326584,-0.001415662351064384,-0.001415662351064384,-0.0021400819532573223,3.829656998277642e-05,4.865917071583681e-05,7.520053623011336e-05,3.829656998277642e-05,7.520053623011336e-05,8.877841173671186e-05,-0.001415662351064384,0.00035835406742990017,4.865917071583681e-05,7.520053623011336e-05,-1.641281596675981e-05,-6.4878890952968504e-06,-1.0026737982116174e-05,3.3881317890172014e-21,-4.235164736271502e-22,-0.0,-0.001415662351064384,4.865917071583681e-05,0.00035835406742990017,7.520053623011336e-05,7.1884908336408905e-22,-6.4878890952968504e-06,-2.049885026309423e-21,-1.641281596675981e-05,-1.0026737982116174e-05,-0.0,-0.0021400819532573223,7.520053623011336e-05,7.520053623011336e-05,0.0008972712093964219,-5.2168310406742724e-24,-2.329432491467566e-21,-1.6711230273358524e-05,-4.235164736271502e-22,-1.6711230273358524e-05,-6.65838088025339e-05,3.829656998277642e-05,-1.641281596675981e-05,7.1884908336408905e-22,-5.2168310406742724e-24,1.094187723538198e-06,-5.681792757959684e-23,3.928649975871401e-24,-1.432234086958285e-23,-2.96615033300425e-24,-0.0,4.865917071583681e-05,-6.4878890952968504e-06,-6.4878890952968504e-06,-2.329432491467566e-21,-5.681792757959684e-23,8.650519021102809e-07,2.5393894496010467e-22,-4.235164736271502e-22,5.293955920339377e-23,-0.0,7.520053623011336e-05,-1.0026737982116174e-05,-2.049885026309423e-21,-1.6711230273358524e-05,3.928649975871401e-24,2.5393894496010467e-22,2.228164021289558e-06,8.28051712207618e-25,2.980022254807335e-24,-0.0,3.829656998277642e-05,3.3881317890172014e-21,-1.641281596675981e-05,-4.235164736271502e-22,-1.432234086958285e-23,-4.235164736271502e-22,8.28051712207618e-25,1.094187723538198e-06,5.293955920339377e-23,-0.0,7.520053623011336e-05,-4.235164736271502e-22,-1.0026737982116174e-05,-1.6711230273358524e-05,-2.96615033300425e-24,5.293955920339377e-23,2.980022254807335e-24,5.293955920339377e-23,2.228164021289558e-06,-0.0,8.877841173671186e-05,-0.0,-0.0,-6.65838088025339e-05,-0.0,-0.0,-0.0,-0.0,-0.0,7.398200978059322e-06,16.0,16.0,11.0,0.013772618025541306,-0.0012926628114655614,-0.0012926628114655614,-0.0018004743615165353,3.481506064417772e-05,4.423561040312052e-05,6.266710988711566e-05,3.481506064417772e-05,6.266710988711566e-05,6.829108315287158e-05,-0.0012926628114655614,0.00032653604284860194,4.423561040312052e-05,6.266710988711566e-05,-1.4920740795787424e-05,-5.898081326449756e-06,-8.355615136679262e-06,-8.470329472543003e-22,2.117582368135751e-22,-0.0,-0.0012926628114655614,4.423561040312052e-05,0.00032653604284860194,6.266710988711566e-05,2.1477605260549065e-22,-5.898081326449756e-06,8.453470315929854e-22,-1.4920740795787424e-05,-8.355615136679262e-06,-0.0,-0.0018004743615165353,6.266710988711566e-05,6.266710988711566e-05,0.0006787866004742682,1.069297549147971e-21,1.0676088566962697e-21,-1.2533422705018893e-05,8.470329472543003e-22,-1.2533422705018893e-05,-4.552738755592145e-05,3.481506064417772e-05,-1.4920740795787424e-05,2.1477605260549065e-22,1.069297549147971e-21,9.947160606316174e-07,-4.0895518047848863e-23,-1.3845837959481874e-22,6.979745048365075e-24,-4.114629456303591e-24,-0.0,4.423561040312052e-05,-5.898081326449756e-06,-5.898081326449756e-06,1.0676088566962697e-21,-4.0895518047848863e-23,7.864107942623377e-07,-1.1271293838718302e-22,5.293955920339377e-23,-2.6469779601696886e-23,-0.0,6.266710988711566e-05,-8.355615136679262e-06,8.453470315929854e-22,-1.2533422705018893e-05,-1.3845837959481874e-22,-1.1271293838718302e-22,1.6711229591237498e-06,-1.7632415262334313e-38,2.938735877055719e-39,-0.0,3.481506064417772e-05,-8.470329472543003e-22,-1.4920740795787424e-05,8.470329472543003e-22,6.979745048365075e-24,5.293955920339377e-23,-1.7632415262334313e-38,9.947160606316174e-07,-1.0587911840678754e-22,-0.0,6.266710988711566e-05,2.117582368135751e-22,-8.355615136679262e-06,-1.2533422705018893e-05,-4.114629456303591e-24,-2.6469779601696886e-23,2.938735877055719e-39,-1.0587911840678754e-22,1.6711229591237498e-06,-0.0,6.829108315287158e-05,-0.0,-0.0,-4.552738755592145e-05,-0.0,-0.0,-0.0,-0.0,-0.0,4.5527390284405556e-06,16.0,16.0,12.0,0.012748416513204575,-0.0011893596965819597,-0.0011893596965819597,-0.0015358607051894069,3.191380892531015e-05,4.0549308323534206e-05,5.3026018576929346e-05,3.191380892531015e-05,5.3026018576929346e-05,5.36572806595359e-05,-0.0011893596965819597,0.00029991386691108346,4.0549308323534206e-05,5.3026018576929346e-05,-1.3677346032636706e-05,-5.406574473454384e-06,-7.070135779940756e-06,3.5998900258307764e-21,2.117582368135751e-22,-0.0,-0.0011893596965819597,4.0549308323534206e-05,0.00029991386691108346,5.3026018576929346e-05,1.5439838072475314e-23,-5.406574473454384e-06,-1.4664775291119704e-21,-1.3677346032636706e-05,-7.070135779940756e-06,-0.0,-0.0015358607051894069,5.3026018576929346e-05,5.3026018576929346e-05,0.0005260708858259022,3.495733476718404e-22,-1.3355809429626596e-21,-9.641094038670417e-06,4.235164736271502e-22,-9.641094038670417e-06,-3.219436985091306e-05,3.191380892531015e-05,-1.3677346032636706e-05,1.5439838072475314e-23,3.495733476718404e-22,9.118230650528858e-07,-3.490718656389478e-23,-5.351882292154118e-23,1.2925825931096429e-23,6.909044967456453e-24,-0.0,4.0549308323534206e-05,-5.406574473454384e-06,-5.406574473454384e-06,-1.3355809429626596e-21,-3.490718656389478e-23,7.208765850919008e-07,1.9553033300767122e-22,-4.764560328305439e-22,0.0,-0.0,5.3026018576929346e-05,-7.070135779940756e-06,-1.4664775291119704e-21,-9.641094038670417e-06,-5.351882292154118e-23,1.9553033300767122e-22,1.2854792430516682e-06,-1.2930437859045163e-37,-5.877471754111438e-39,-0.0,3.191380892531015e-05,3.5998900258307764e-21,-1.3677346032636706e-05,4.235164736271502e-22,1.2925825931096429e-23,-4.764560328305439e-22,-1.2930437859045163e-37,9.118230650528858e-07,0.0,-0.0,5.3026018576929346e-05,2.117582368135751e-22,-7.070135779940756e-06,-9.641094038670417e-06,6.909044967456453e-24,0.0,-5.877471754111438e-39,0.0,1.2854792430516682e-06,-0.0,5.36572806595359e-05,-0.0,-0.0,-3.219436985091306e-05,-0.0,-0.0,-0.0,-0.0,-0.0,2.9267607715155464e-06,16.0,16.0,13.0,0.011866440996527672,-0.0011013667099177837,-0.0011013667099177837,-0.0013256504898890853,2.945889900729526e-05,3.743013076018542e-05,4.54508735856507e-05,2.945889900729526e-05,4.54508735856507e-05,4.292582525522448e-05,-0.0011013667099177837,0.0002773097367025912,3.743013076018542e-05,4.54508735856507e-05,-1.2625242561625782e-05,-4.990683919459116e-06,-6.06011644777027e-06,-8.470329472543003e-22,6.167879507643753e-22,1.2705494208814505e-21,-0.0011013667099177837,3.743013076018542e-05,0.0002773097367025912,4.54508735856507e-05,-4.036286023198191e-23,-4.990683919459116e-06,9.529120656610879e-22,-1.2625242561625782e-05,-6.06011644777027e-06,1.6940658945086007e-21,-0.0013256504898890853,4.54508735856507e-05,4.54508735856507e-05,0.00041605913429521024,6.883091349011373e-22,5.986458160185239e-22,-7.575145446025999e-06,2.895067520450241e-22,-7.575145446025999e-06,-2.341408617212437e-05,2.945889900729526e-05,-1.2625242561625782e-05,-4.036286023198191e-23,6.883091349011373e-22,8.416828336521576e-07,1.8572988484177815e-24,-6.006333289811229e-23,4.698523787964648e-24,-8.21784803961316e-24,-1.364131409466193e-23,3.743013076018542e-05,-4.990683919459116e-06,-4.990683919459116e-06,5.986458160185239e-22,1.8572988484177815e-24,6.654245225945488e-07,-6.383904207155351e-23,1.0587911840678754e-22,-2.4134371091286374e-23,-1.0134814749180048e-23,4.54508735856507e-05,-6.06011644777027e-06,9.529120656610879e-22,-7.575145446025999e-06,-6.006333289811229e-23,-6.383904207155351e-23,1.0100194458573242e-06,6.617444900424222e-24,-1.0587911840678754e-22,-1.5881867761018131e-22,2.945889900729526e-05,-8.470329472543003e-22,-1.2625242561625782e-05,2.895067520450241e-22,4.698523787964648e-24,1.0587911840678754e-22,6.617444900424222e-24,8.416828336521576e-07,-5.293955920339377e-23,1.3234889800848443e-23,4.54508735856507e-05,6.167879507643753e-22,-6.06011644777027e-06,-7.575145446025999e-06,-8.21784803961316e-24,-2.4134371091286374e-23,-1.0587911840678754e-22,-5.293955920339377e-23,1.0100194458573242e-06,-2.6469779601696886e-22,4.292582525522448e-05,1.2705494208814505e-21,1.6940658945086007e-21,-2.341408617212437e-05,-1.364131409466193e-23,-1.0134814749180048e-23,-1.5881867761018131e-22,1.3234889800848443e-23,-2.6469779601696886e-22,1.9511737718858058e-06,16.0,16.0,14.0,0.011098909191787243,-0.0010255113011226058,-0.0010255113011226058,-0.0011558724800124764,2.735469206527341e-05,3.4756551031023264e-05,3.939075759262778e-05,2.735469206527341e-05,3.939075759262778e-05,3.487723370199092e-05,-0.0010255113011226058,0.0002578770508989692,3.4756551031023264e-05,3.939075759262778e-05,-1.1723439456545748e-05,-4.634206561604515e-06,-5.25210089108441e-06,-6.352747104407253e-22,-3.9990633058409756e-24,-1.2705494208814505e-21,-0.0010255113011226058,3.4756551031023264e-05,0.0002578770508989692,3.939075759262778e-05,-1.4508387718736345e-22,-4.634206561604515e-06,1.0587911840678754e-22,-1.1723439456545748e-05,-5.25210089108441e-06,-4.235164736271502e-22,-0.0011558724800124764,3.939075759262778e-05,3.939075759262778e-05,0.0003347740857861936,-1.6378452545411137e-22,4.328420464607619e-22,-6.06011644777027e-06,2.2663163489077826e-22,-6.06011644777027e-06,-1.743861685099546e-05,2.735469206527341e-05,-1.1723439456545748e-05,-1.4508387718736345e-22,-1.6378452545411137e-22,7.815626190676994e-07,3.0010384953985544e-24,-6.0259976200261256e-24,7.591912943730159e-24,2.991528185540436e-26,1.492748553630875e-23,3.4756551031023264e-05,-4.634206561604515e-06,-4.634206561604515e-06,4.328420464607619e-22,3.0010384953985544e-24,6.178942157930578e-07,-4.588565965221611e-23,1.0587911840678754e-22,-7.835353052498648e-24,4.920785150795442e-25,3.939075759262778e-05,-5.25210089108441e-06,1.0587911840678754e-22,-6.06011644777027e-06,-6.0259976200261256e-24,-4.588565965221611e-23,8.080154998424405e-07,0.0,5.293955920339377e-23,1.5881867761018131e-22,2.735469206527341e-05,-6.352747104407253e-22,-1.1723439456545748e-05,2.2663163489077826e-22,7.591912943730159e-24,1.0587911840678754e-22,0.0,7.815626190676994e-07,-2.6469779601696886e-23,-1.3234889800848443e-23,3.939075759262778e-05,-3.9990633058409756e-24,-5.25210089108441e-06,-6.06011644777027e-06,2.991528185540436e-26,-7.835353052498648e-24,5.293955920339377e-23,-2.6469779601696886e-23,8.080154998424405e-07,1.5881867761018131e-22,3.487723370199092e-05,-1.2705494208814505e-21,-4.235164736271502e-22,-1.743861685099546e-05,1.492748553630875e-23,4.920785150795442e-25,1.5881867761018131e-22,-1.3234889800848443e-23,1.5881867761018131e-22,1.341432039225765e-06,16.0,16.0,15.0,0.010424851439893246,-0.0009594417060725391,-0.0009594417060725391,-0.001016773865558207,2.5531046048854478e-05,3.24394459312316e-05,3.446691334829666e-05,2.5531046048854478e-05,3.446691334829666e-05,2.8722426577587612e-05,-0.0009594417060725391,0.00024099161964841187,3.24394459312316e-05,3.446691334829666e-05,-1.0941877008008305e-05,-4.325259396864567e-06,-4.5955880523251835e-06,2.329340604949326e-21,4.595689063651395e-22,6.352747104407253e-22,-0.0009594417060725391,3.24394459312316e-05,0.00024099161964841187,3.446691334829666e-05,6.257622848576592e-22,-4.325259396864567e-06,-5.293955920339377e-22,-1.0941877008008305e-05,-4.5955880523251835e-06,8.470329472543003e-22,-0.001016773865558207,3.446691334829666e-05,3.446691334829666e-05,0.000273399637080729,3.855251848671959e-22,-1.1088188494108195e-21,-4.923844699078472e-06,-3.5203459369612996e-22,-4.923844699078472e-06,-1.3256504644232336e-05,2.5531046048854478e-05,-1.0941877008008305e-05,6.257622848576592e-22,3.855251848671959e-22,7.294584634109924e-07,-6.43943244181822e-23,-1.6937133935908245e-23,-9.299896002792481e-25,-1.8259062864666924e-23,-8.07538054899115e-24,3.24394459312316e-05,-4.325259396864567e-06,-4.325259396864567e-06,-1.1088188494108195e-21,-6.43943244181822e-23,5.767012680735206e-07,1.1923116351839217e-22,-2.9116757561866574e-22,1.9969491589750658e-23,4.091954438443918e-24,3.446691334829666e-05,-4.5955880523251835e-06,-5.293955920339377e-22,-4.923844699078472e-06,-1.6937133935908245e-23,1.1923116351839217e-22,6.565126113855513e-07,-3.308722450212111e-24,-5.293955920339377e-23,-1.0587911840678754e-22,2.5531046048854478e-05,2.329340604949326e-21,-1.0941877008008305e-05,-3.5203459369612996e-22,-9.299896002792481e-25,-2.9116757561866574e-22,-3.308722450212111e-24,7.294584634109924e-07,5.293955920339377e-23,-2.6469779601696886e-23,3.446691334829666e-05,4.595689063651395e-22,-4.5955880523251835e-06,-4.923844699078472e-06,-1.8259062864666924e-23,1.9969491589750658e-23,-5.293955920339377e-23,5.293955920339377e-23,6.565126113855513e-07,-1.0587911840678754e-22,2.8722426577587612e-05,6.352747104407253e-22,8.470329472543003e-22,-1.3256504644232336e-05,-8.07538054899115e-24,4.091954438443918e-24,-1.0587911840678754e-22,-2.6469779601696886e-23,-1.0587911840678754e-22,9.468931807532499e-07,16.0,16.0,16.0,0.009828138165175915,-0.0009013773524202406,-0.0009013773524202406,-0.0009013773524202406,2.393535578448791e-05,3.0411980333155952e-05,3.0411980333155952e-05,2.393535578448791e-05,3.0411980333155952e-05,2.393535578448791e-05,-0.0009013773524202406,0.00022618308139499277,3.0411980333155952e-05,3.0411980333155952e-05,-1.0258009751851205e-05,-4.05493074140395e-06,-4.05493074140395e-06,-1.2705494208814505e-21,-4.483488051815489e-22,-1.6940658945086007e-21,-0.0009013773524202406,3.0411980333155952e-05,0.00022618308139499277,3.0411980333155952e-05,-8.170269629608746e-23,-4.05493074140395e-06,0.0,-1.0258009751851205e-05,-4.05493074140395e-06,-6.352747104407253e-22,-0.0009013773524202406,3.0411980333155952e-05,3.0411980333155952e-05,0.00022618308139499277,-1.7316004264935447e-22,3.742948095591758e-22,-4.05493074140395e-06,2.5385955399860323e-22,-4.05493074140395e-06,-1.0258009751851205e-05,2.393535578448791e-05,-1.0258009751851205e-05,-8.170269629608746e-23,-1.7316004264935447e-22,6.838673130005191e-07,2.3705355004438716e-24,1.2375515774753346e-23,5.996890624775733e-24,-4.366159333655121e-24,7.015500957755123e-24,3.0411980333155952e-05,-4.05493074140395e-06,-4.05493074140395e-06,3.742948095591758e-22,2.3705355004438716e-24,5.406574246080709e-07,-4.6414893811754403e-23,1.5881867761018131e-22,6.524663813917557e-24,-4.382700169115795e-24,3.0411980333155952e-05,-4.05493074140395e-06,0.0,-4.05493074140395e-06,1.2375515774753346e-23,-4.6414893811754403e-23,5.406574246080709e-07,-6.617444900424222e-24,5.293955920339377e-23,1.852884572118782e-22,2.393535578448791e-05,-1.2705494208814505e-21,-1.0258009751851205e-05,2.5385955399860323e-22,5.996890624775733e-24,1.5881867761018131e-22,-6.617444900424222e-24,6.838673130005191e-07,2.6469779601696886e-23,-1.3234889800848443e-23,3.0411980333155952e-05,-4.483488051815489e-22,-4.05493074140395e-06,-4.05493074140395e-06,-4.366159333655121e-24,6.524663813917557e-24,5.293955920339377e-23,2.6469779601696886e-23,5.406574246080709e-07,1.3234889800848443e-22,2.393535578448791e-05,-1.6940658945086007e-21,-6.352747104407253e-22,-1.0258009751851205e-05,7.015500957755123e-24,-4.382700169115795e-24,1.852884572118782e-22,-1.3234889800848443e-23,1.3234889800848443e-22,6.838673130005191e-07}; - -float COEFF_4D[]={3.0,3.0,3.0,3.0,0.2777777910232544,-0.1388888955116272,-0.1388888955116272,-0.1388888955116272,-0.1388888955116272,0.018518518656492233,0.02777777798473835,0.02777777798473835,0.02777777798473835,0.018518518656492233,0.02777777798473835,0.02777777798473835,0.018518518656492233,0.02777777798473835,0.018518518656492233,-0.1388888955116272,0.32407405972480774,0.02777777798473835,0.02777777798473835,0.02777777798473835,-0.1111111119389534,-0.02777777798473835,-0.02777777798473835,-0.02777777798473835,1.1275702593849246e-16,3.752882043206134e-17,3.698123348399614e-17,1.1796119636642288e-16,3.646706794140053e-17,1.148228069479477e-16,-0.1388888955116272,0.02777777798473835,0.32407405972480774,0.02777777798473835,0.02777777798473835,1.8041124150158794e-16,-0.02777777798473835,1.5072953364341806e-18,8.673617379884035e-19,-0.1111111119389534,-0.02777777798473835,-0.02777777798473835,1.1772209484728075e-16,3.6976988393092516e-17,1.1646598469117203e-16,-0.1388888955116272,0.02777777798473835,0.02777777798473835,0.32407405972480774,0.02777777798473835,1.7935511053037003e-16,-7.869652625198074e-19,-0.02777777798473835,4.0892415459170807e-19,1.5959455978986625e-16,-0.02777777798473835,4.336808689942018e-19,-0.1111111119389534,-0.02777777798473835,1.1364778696164876e-16,-0.1388888955116272,0.02777777798473835,0.02777777798473835,0.02777777798473835,0.32407405972480774,1.8041124150158794e-16,-8.168743040121349e-19,-8.755419338610936e-19,-0.02777777798473835,1.6017070101267679e-16,-1.0368536304399331e-18,-0.02777777798473835,1.43982048506075e-16,-0.02777777798473835,-0.1111111119389534,0.018518518656492233,-0.1111111119389534,1.8041124150158794e-16,1.7935511053037003e-16,1.8041124150158794e-16,0.0555555559694767,-2.0816681711721685e-17,-2.0816681711721685e-17,-2.0816681711721685e-17,-6.193210434025375e-17,-1.8503717628539684e-17,-1.8503717628539684e-17,-6.03322973309068e-17,-1.8503717628539684e-17,-6.155318282781056e-17,0.02777777798473835,-0.02777777798473835,-0.02777777798473835,-7.869652625198074e-19,-8.168743040121349e-19,-2.0816681711721685e-17,0.02777777798473835,-1.8927679900818212e-19,-1.7472100516666306e-19,1.1048170022754285e-17,8.673617379884035e-19,8.673617379884035e-19,5.025245005881819e-20,5.970382827600431e-33,5.733856386208759e-20,0.02777777798473835,-0.02777777798473835,1.5072953364341806e-18,-0.02777777798473835,-8.755419338610936e-19,-2.0816681711721685e-17,-1.8927679900818212e-19,0.02777777798473835,-1.8111624867504023e-19,2.148447029417776e-20,-1.3706628836235903e-18,6.0945766843079934e-21,2.374552436075096e-18,8.673617379884035e-19,8.45547317949458e-20,0.02777777798473835,-0.02777777798473835,8.673617379884035e-19,4.0892415459170807e-19,-0.02777777798473835,-2.0816681711721685e-17,-1.7472100516666306e-19,-1.8111624867504023e-19,0.02777777798473835,7.970761496409845e-20,-1.808566108979266e-20,-8.47254890152406e-19,5.412663123706699e-20,-3.2699661950806457e-19,8.120685190700514e-18,0.018518518656492233,1.1275702593849246e-16,-0.1111111119389534,1.5959455978986625e-16,1.6017070101267679e-16,-6.193210434025375e-17,1.1048170022754285e-17,2.148447029417776e-20,7.970761496409845e-20,0.0555555559694767,-1.9081958235744878e-17,-1.9081958235744878e-17,-6.191670554597046e-17,-1.8503717628539684e-17,-6.216949855861157e-17,0.02777777798473835,3.752882043206134e-17,-0.02777777798473835,-0.02777777798473835,-1.0368536304399331e-18,-1.8503717628539684e-17,8.673617379884035e-19,-1.3706628836235903e-18,-1.808566108979266e-20,-1.9081958235744878e-17,0.02777777798473835,3.4431990118524464e-19,6.076292176753761e-18,8.673617379884035e-19,-7.234264435917064e-20,0.02777777798473835,3.698123348399614e-17,-0.02777777798473835,4.336808689942018e-19,-0.02777777798473835,-1.8503717628539684e-17,8.673617379884035e-19,6.0945766843079934e-21,-8.47254890152406e-19,-1.9081958235744878e-17,3.4431990118524464e-19,0.02777777798473835,2.4378306737231974e-20,-8.369150290979166e-19,7.969763606398376e-18,0.018518518656492233,1.1796119636642288e-16,1.1772209484728075e-16,-0.1111111119389534,1.43982048506075e-16,-6.03322973309068e-17,5.025245005881819e-20,2.374552436075096e-18,5.412663123706699e-20,-6.191670554597046e-17,6.076292176753761e-18,2.4378306737231974e-20,0.0555555559694767,-1.9882599585524754e-17,-6.174944962611224e-17,0.02777777798473835,3.646706794140053e-17,3.6976988393092516e-17,-0.02777777798473835,-0.02777777798473835,-1.8503717628539684e-17,5.970382827600431e-33,8.673617379884035e-19,-3.2699661950806457e-19,-1.8503717628539684e-17,8.673617379884035e-19,-8.369150290979166e-19,-1.9882599585524754e-17,0.02777777798473835,9.850636661723503e-18,0.018518518656492233,1.148228069479477e-16,1.1646598469117203e-16,1.1364778696164876e-16,-0.1111111119389534,-6.155318282781056e-17,5.733856386208759e-20,8.45547317949458e-20,8.120685190700514e-18,-6.216949855861157e-17,-7.234264435917064e-20,7.969763606398376e-18,-6.174944962611224e-17,9.850636661723503e-18,0.0555555559694767,3.0,3.0,3.0,4.0,0.2282407432794571,-0.10833333432674408,-0.10833333432674408,-0.10833333432674408,-0.08888889104127884,0.013888888992369175,0.02083333395421505,0.02083333395421505,0.01666666753590107,0.013888888992369175,0.02083333395421505,0.01666666753590107,0.013888888992369175,0.01666666753590107,0.009259259328246117,-0.10833333432674408,0.24722221493721008,0.02083333395421505,0.02083333395421505,0.01666666753590107,-0.0833333358168602,-0.02083333395421505,-0.02083333395421505,-0.01666666753590107,9.251858317961474e-17,2.7755575615628914e-17,2.2204460823375376e-17,9.251858317961474e-17,2.2204460823375376e-17,4.3825861885296824e-17,-0.10833333432674408,0.02083333395421505,0.24722221493721008,0.02083333395421505,0.01666666753590107,1.477213416261781e-16,-0.02083333395421505,-8.746860517434746e-32,-3.6560486846767844e-32,-0.0833333358168602,-0.02083333395421505,-0.01666666753590107,9.251858317961474e-17,2.2204460823375376e-17,4.317534058180552e-17,-0.10833333432674408,0.02083333395421505,0.02083333395421505,0.24722221493721008,0.01666666753590107,1.477213416261781e-16,-8.746860517434746e-32,-0.02083333395421505,-3.7868741529572e-32,1.3384355381836365e-16,-0.02083333395421505,-6.588989668456537e-32,-0.0833333358168602,-0.01666666753590107,4.317534058180552e-17,-0.08888889104127884,0.01666666753590107,0.01666666753590107,0.01666666753590107,0.1240740716457367,1.0012566696489741e-16,-5.928630443753574e-32,-5.928630443753574e-32,-0.011111111380159855,8.902344068911278e-17,-8.606100946395531e-32,-0.011111111380159855,7.792120779588326e-17,-0.011111111380159855,-0.02777777798473835,0.013888888992369175,-0.0833333358168602,1.477213416261781e-16,1.477213416261781e-16,1.0012566696489741e-16,0.0416666679084301,-2.4671622953265837e-17,-2.4671622953265837e-17,-1.3158198577536201e-17,-4.625929158980737e-17,-1.3877787807814457e-17,-1.1102230411687688e-17,-4.625929158980737e-17,-1.1102230411687688e-17,-2.158767029090276e-17,0.02083333395421505,-0.02083333395421505,-0.02083333395421505,-8.746860517434746e-32,-5.928630443753574e-32,-2.4671622953265837e-17,0.02083333395421505,1.4608535390712659e-32,7.791219168920339e-33,2.739100495961219e-32,8.217301340946863e-33,6.573841219694284e-33,2.739100495961219e-32,6.573841219694284e-33,1.2782468099531592e-32,0.02083333395421505,-0.02083333395421505,-8.746860517434746e-32,-0.02083333395421505,-5.928630443753574e-32,-2.4671622953265837e-17,1.4608535390712659e-32,0.02083333395421505,7.791219168920339e-33,2.739100495961219e-32,8.217301340946863e-33,6.573841219694284e-33,2.739100495961219e-32,6.573841219694284e-33,1.2782468099531592e-32,0.01666666753590107,-0.01666666753590107,-3.6560486846767844e-32,-3.7868741529572e-32,-0.011111111380159855,-1.3158198577536201e-17,7.791219168920339e-33,7.791219168920339e-33,0.011111111380159855,1.3866695599588098e-32,4.3825606906821945e-33,-2.2311217059813032e-33,1.5768113548024812e-32,-3.8941762160361355e-33,-4.336808689942018e-19,0.013888888992369175,9.251858317961474e-17,-0.0833333358168602,1.3384355381836365e-16,8.902344068911278e-17,-4.625929158980737e-17,2.739100495961219e-32,2.739100495961219e-32,1.3866695599588098e-32,0.0416666679084301,-2.4671622953265837e-17,-1.3158198577536201e-17,-4.625929158980737e-17,-1.1102230411687688e-17,-2.158767029090276e-17,0.02083333395421505,2.7755575615628914e-17,-0.02083333395421505,-0.02083333395421505,-8.606100946395531e-32,-1.3877787807814457e-17,8.217301340946863e-33,8.217301340946863e-33,4.3825606906821945e-33,-2.4671622953265837e-17,0.02083333395421505,1.1489004074396656e-32,4.2798444514710075e-32,1.0271626125170601e-32,1.9972607048366585e-32,0.01666666753590107,2.2204460823375376e-17,-0.01666666753590107,-6.588989668456537e-32,-0.011111111380159855,-1.1102230411687688e-17,6.573841219694284e-33,6.573841219694284e-33,-2.2311217059813032e-33,-1.3158198577536201e-17,1.1489004074396656e-32,0.011111111380159855,2.5422275265911513e-32,-2.0116671962583518e-33,1.709072175153648e-33,0.013888888992369175,9.251858317961474e-17,9.251858317961474e-17,-0.0833333358168602,7.792120779588326e-17,-4.625929158980737e-17,2.739100495961219e-32,2.739100495961219e-32,1.5768113548024812e-32,-4.625929158980737e-17,4.2798444514710075e-32,2.5422275265911513e-32,0.0416666679084301,-1.3158198577536201e-17,-2.158767029090276e-17,0.01666666753590107,2.2204460823375376e-17,2.2204460823375376e-17,-0.01666666753590107,-0.011111111380159855,-1.1102230411687688e-17,6.573841219694284e-33,6.573841219694284e-33,-3.8941762160361355e-33,-1.1102230411687688e-17,1.0271626125170601e-32,-2.0116671962583518e-33,-1.3158198577536201e-17,0.011111111380159855,3.3035468754135694e-33,0.009259259328246117,4.3825861885296824e-17,4.317534058180552e-17,4.317534058180552e-17,-0.02777777798473835,-2.158767029090276e-17,1.2782468099531592e-32,1.2782468099531592e-32,-4.336808689942018e-19,-2.158767029090276e-17,1.9972607048366585e-32,1.709072175153648e-33,-2.158767029090276e-17,3.3035468754135694e-33,0.009259259328246117,3.0,3.0,3.0,5.0,0.19391533732414246,-0.08888889104127884,-0.08888889104127884,-0.08888889104127884,-0.06190476194024086,0.011111111380159855,0.01666666753590107,0.01666666753590107,0.011111111380159855,0.011111111380159855,0.01666666753590107,0.011111111380159855,0.011111111380159855,0.011111111380159855,0.005291005130857229,-0.08888889104127884,0.20000000298023224,0.01666666753590107,0.01666666753590107,0.011111111380159855,-0.06666667014360428,-0.01666666753590107,-0.01666666753590107,-0.011111111380159855,-1.1796119636642288e-16,-8.673617379884035e-18,-3.469446951953614e-18,-1.0061396160665481e-16,8.673617379884035e-19,3.382710778154774e-17,-0.08888889104127884,0.01666666753590107,0.20000000298023224,0.01666666753590107,0.011111111380159855,-1.4765535246563107e-16,-0.01666666753590107,2.2551405187698492e-17,-9.107298248878237e-18,-0.06666667014360428,-0.01666666753590107,-0.011111111380159855,-6.245004513516506e-17,-1.734723475976807e-18,3.2959746043559335e-17,-0.08888889104127884,0.01666666753590107,0.01666666753590107,0.20000000298023224,0.011111111380159855,-1.50655463755467e-16,1.3695853567986481e-17,-0.01666666753590107,-6.396792817664476e-18,-9.761639803310555e-17,-0.01666666753590107,3.2526065174565133e-19,-0.06666667014360428,-0.011111111380159855,3.599551212651875e-17,-0.06190476194024086,0.011111111380159855,0.011111111380159855,0.011111111380159855,0.06269841641187668,4.683753385137379e-17,2.8277073287174195e-17,3.287868565225159e-17,-0.0055555556900799274,5.034951443042488e-17,3.278694470487456e-17,-0.0055555556900799274,6.592403827176526e-17,-0.0055555556900799274,-0.010582010261714458,0.011111111380159855,-0.06666667014360428,-1.4765535246563107e-16,-1.50655463755467e-16,4.683753385137379e-17,0.03333333507180214,1.814161435231092e-17,1.8470862014609078e-17,-4.805524380190597e-18,5.2651687115335517e-17,1.2244185507361032e-17,4.073699080701151e-18,5.344630989897846e-17,4.170309226753975e-18,-1.1275702593849246e-17,0.01666666753590107,-0.01666666753590107,-0.01666666753590107,1.3695853567986481e-17,2.8277073287174195e-17,1.814161435231092e-17,0.01666666753590107,-4.336808689942018e-18,-1.3388103295832812e-18,1.6344902788410002e-18,-2.7855199594243575e-18,-1.1141801284626153e-18,2.0462664746366087e-19,-2.7779113453549416e-18,-5.204170427930421e-18,0.01666666753590107,-0.01666666753590107,2.2551405187698492e-17,-0.01666666753590107,3.287868565225159e-17,1.8470862014609078e-17,-4.336808689942018e-18,0.01666666753590107,-1.330852852090521e-18,-1.3177226006371606e-18,-7.559988257106957e-18,-3.075690782404897e-18,-2.264120391499725e-17,-5.3242944236659845e-18,-5.204170427930421e-18,0.011111111380159855,-0.011111111380159855,-9.107298248878237e-18,-6.396792817664476e-18,-0.0055555556900799274,-4.805524380190597e-18,-1.3388103295832812e-18,-1.330852852090521e-18,0.0055555556900799274,5.421010862427522e-18,-1.2124804113020388e-18,1.946719294571944e-19,4.9063361901648844e-18,-3.347311459763475e-19,-2.168404344971009e-18,0.011111111380159855,-1.1796119636642288e-16,-0.06666667014360428,-9.761639803310555e-17,5.034951443042488e-17,5.2651687115335517e-17,1.6344902788410002e-18,-1.3177226006371606e-18,5.421010862427522e-18,0.03333333507180214,7.850901061096956e-18,-2.0809572921537404e-17,3.9161635256571616e-17,4.420204625709308e-18,-8.673617379884035e-18,0.01666666753590107,-8.673617379884035e-18,-0.01666666753590107,-0.01666666753590107,3.278694470487456e-17,1.2244185507361032e-17,-2.7855199594243575e-18,-7.559988257106957e-18,-1.2124804113020388e-18,7.850901061096956e-18,0.01666666753590107,-2.6020852139652106e-18,-2.2852647823178054e-17,-5.186163946766061e-18,-5.637851296924623e-18,0.011111111380159855,-3.469446951953614e-18,-0.011111111380159855,3.2526065174565133e-19,-0.0055555556900799274,4.073699080701151e-18,-1.1141801284626153e-18,-3.075690782404897e-18,1.946719294571944e-19,-2.0809572921537404e-17,-2.6020852139652106e-18,0.0055555556900799274,2.8472685785611347e-18,-1.3983647228982908e-19,-1.3010426069826053e-18,0.011111111380159855,-1.0061396160665481e-16,-6.245004513516506e-17,-0.06666667014360428,6.592403827176526e-17,5.344630989897846e-17,2.0462664746366087e-19,-2.264120391499725e-17,4.9063361901648844e-18,3.9161635256571616e-17,-2.2852647823178054e-17,2.8472685785611347e-18,0.03333333507180214,-2.8080836267374565e-17,-1.214306433183765e-17,0.011111111380159855,8.673617379884035e-19,-1.734723475976807e-18,-0.011111111380159855,-0.0055555556900799274,4.170309226753975e-18,-2.7779113453549416e-18,-5.3242944236659845e-18,-3.347311459763475e-19,4.420204625709308e-18,-5.186163946766061e-18,-1.3983647228982908e-19,-2.8080836267374565e-17,0.0055555556900799274,-1.3010426069826053e-18,0.005291005130857229,3.382710778154774e-17,3.2959746043559335e-17,3.599551212651875e-17,-0.010582010261714458,-1.1275702593849246e-17,-5.204170427930421e-18,-5.204170427930421e-18,-2.168404344971009e-18,-8.673617379884035e-18,-5.637851296924623e-18,-1.3010426069826053e-18,-1.214306433183765e-17,-1.3010426069826053e-18,0.0026455025654286146,3.0,3.0,3.0,6.0,0.1686507910490036,-0.075396828353405,-0.075396828353405,-0.075396828353405,-0.0456349216401577,0.009259259328246117,0.013888888992369175,0.013888888992369175,0.007936508394777775,0.009259259328246117,0.013888888992369175,0.007936508394777775,0.009259259328246117,0.007936508394777775,0.003306878264993429,-0.075396828353405,0.16798941791057587,0.013888888992369175,0.013888888992369175,0.007936508394777775,-0.0555555559694767,-0.013888888992369175,-0.013888888992369175,-0.007936508394777775,1.3877787807814457e-17,1.0408340855860843e-17,7.806255641895632e-18,1.3877787807814457e-17,6.071532165918825e-18,-2.6020852139652106e-18,-0.075396828353405,0.013888888992369175,0.16798941791057587,0.013888888992369175,0.007936508394777775,-1.283328451446721e-17,-0.013888888992369175,1.9081958235744878e-17,9.86623976961809e-18,-0.0555555559694767,-0.013888888992369175,-0.007936508394777775,-6.938893903907228e-18,1.3877787807814457e-17,2.168404344971009e-19,-0.075396828353405,0.013888888992369175,0.013888888992369175,0.16798941791057587,0.007936508394777775,-9.026916145672784e-18,2.2645197542994655e-17,-0.013888888992369175,8.890457814381136e-18,7.080829825215202e-18,-0.013888888992369175,8.782037597132586e-18,-0.0555555559694767,-0.007936508394777775,1.951563910473908e-18,-0.0456349216401577,0.007936508394777775,0.007936508394777775,0.007936508394777775,0.03644179925322533,-4.336808689942018e-19,-1.644065721611914e-18,-1.7479835947863384e-18,-0.0031746032182127237,2.7102227008803905e-17,1.1150651083204704e-18,-0.0031746032182127237,2.1715218232635987e-17,-0.0031746032182127237,-0.004960317630320787,0.009259259328246117,-0.0555555559694767,-1.283328451446721e-17,-9.026916145672784e-18,-4.336808689942018e-19,0.02777777798473835,7.124334562351816e-18,6.399132911617389e-18,7.639451362651864e-18,5.0903784997839515e-18,4.46737139481527e-19,-2.304973518464739e-18,4.3083863505043894e-18,-2.4647273237574114e-18,4.336808689942018e-19,0.013888888992369175,-0.013888888992369175,-0.013888888992369175,2.2645197542994655e-17,-1.644065721611914e-18,7.124334562351816e-18,0.013888888992369175,-2.168404344971009e-18,-7.236578602927652e-20,-4.394396177007347e-18,-4.232984288176812e-18,-4.4041422257796e-19,-6.2740656845412086e-18,-9.460255802664308e-19,8.673617379884035e-19,0.013888888992369175,-0.013888888992369175,1.9081958235744878e-17,-0.013888888992369175,-1.7479835947863384e-18,6.399132911617389e-18,-2.168404344971009e-18,0.013888888992369175,6.43517888362243e-20,-5.459521496615847e-18,-3.1862997195542626e-18,-4.639423411262652e-19,4.037861480662291e-20,1.0455998246467626e-18,4.336808689942018e-19,0.007936508394777775,-0.007936508394777775,9.86623976961809e-18,8.890457814381136e-18,-0.0031746032182127237,7.639451362651864e-18,-7.236578602927652e-20,6.43517888362243e-20,0.0031746032182127237,-3.7947076036992655e-18,-1.2679069924146499e-18,-4.496696498493924e-19,-3.2080636686511453e-18,-3.218626454880718e-19,2.168404344971009e-19,0.009259259328246117,1.3877787807814457e-17,-0.0555555559694767,7.080829825215202e-18,2.7102227008803905e-17,5.0903784997839515e-18,-4.394396177007347e-18,-5.459521496615847e-18,-3.7947076036992655e-18,0.02777777798473835,-1.3859467411607632e-17,-6.551739876417603e-18,1.4198537016499244e-17,-5.3027004601849815e-18,-8.673617379884035e-19,0.013888888992369175,1.0408340855860843e-17,-0.013888888992369175,-0.013888888992369175,1.1150651083204704e-18,4.46737139481527e-19,-4.232984288176812e-18,-3.1862997195542626e-18,-1.2679069924146499e-18,-1.3859467411607632e-17,0.013888888992369175,-2.0599841277224584e-18,-1.2840476849893358e-17,-5.129663375025626e-19,6.505213034913027e-19,0.007936508394777775,7.806255641895632e-18,-0.007936508394777775,8.782037597132586e-18,-0.0031746032182127237,-2.304973518464739e-18,-4.4041422257796e-19,-4.639423411262652e-19,-4.496696498493924e-19,-6.551739876417603e-18,-2.0599841277224584e-18,0.0031746032182127237,-2.2971636927113194e-18,-4.8698883376291135e-19,-2.168404344971009e-19,0.009259259328246117,1.3877787807814457e-17,-6.938893903907228e-18,-0.0555555559694767,2.1715218232635987e-17,4.3083863505043894e-18,-6.2740656845412086e-18,4.037861480662291e-20,-3.2080636686511453e-18,1.4198537016499244e-17,-1.2840476849893358e-17,-2.2971636927113194e-18,0.02777777798473835,-3.0357660829594124e-18,-2.168404344971009e-18,0.007936508394777775,6.071532165918825e-18,1.3877787807814457e-17,-0.007936508394777775,-0.0031746032182127237,-2.4647273237574114e-18,-9.460255802664308e-19,1.0455998246467626e-18,-3.218626454880718e-19,-5.3027004601849815e-18,-5.129663375025626e-19,-4.8698883376291135e-19,-3.0357660829594124e-18,0.0031746032182127237,-2.168404344971009e-19,0.003306878264993429,-2.6020852139652106e-18,2.168404344971009e-19,1.951563910473908e-18,-0.004960317630320787,4.336808689942018e-19,8.673617379884035e-19,4.336808689942018e-19,2.168404344971009e-19,-8.673617379884035e-19,6.505213034913027e-19,-2.168404344971009e-19,-2.168404344971009e-18,-2.168404344971009e-19,0.0009920635493472219,3.0,3.0,3.0,7.0,0.14925044775009155,-0.065476194024086,-0.065476194024086,-0.065476194024086,-0.035052910447120667,0.007936508394777775,0.011904762126505375,0.011904762126505375,0.0059523810632526875,0.007936508394777775,0.011904762126505375,0.0059523810632526875,0.007936508394777775,0.0059523810632526875,0.002204585587605834,-0.065476194024086,0.144841268658638,0.011904762126505375,0.011904762126505375,0.0059523810632526875,-0.0476190485060215,-0.011904762126505375,-0.011904762126505375,-0.0059523810632526875,-5.551115123125783e-17,-2.2551405187698492e-17,-6.071532165918825e-18,-7.979727989493313e-17,-7.37257477290143e-18,1.8214596497756474e-17,-0.065476194024086,0.011904762126505375,0.144841268658638,0.011904762126505375,0.0059523810632526875,-9.396773082091374e-17,-0.011904762126505375,-2.6020852139652106e-18,-9.324138683375338e-18,-0.0476190485060215,-0.011904762126505375,-0.0059523810632526875,-5.551115123125783e-17,-5.204170427930421e-18,1.713039432527097e-17,-0.065476194024086,0.011904762126505375,0.011904762126505375,0.144841268658638,0.0059523810632526875,-9.492395822646995e-17,-1.8196558997319143e-18,-0.011904762126505375,-1.338989683019598e-17,-5.1752349883588263e-17,-0.011904762126505375,-2.0057740190981832e-18,-0.0476190485060215,-0.0059523810632526875,1.6696713456276768e-17,-0.035052910447120667,0.0059523810632526875,0.0059523810632526875,0.0059523810632526875,0.023148147389292717,1.214306433183765e-17,2.3389506238698445e-17,2.2738606086486593e-17,-0.0019841270986944437,1.6136879272062104e-17,2.311666733109273e-17,-0.0019841270986944437,4.849886490032122e-18,-0.0019841270986944437,-0.0026455025654286146,0.007936508394777775,-0.0476190485060215,-9.396773082091374e-17,-9.492395822646995e-17,1.214306433183765e-17,0.02380952425301075,2.337101048020176e-17,2.3950376053040025e-17,5.550039871047525e-18,1.8925604556360105e-17,1.4285534910243896e-17,4.557006236955165e-18,1.9008651835499204e-17,4.653569233713074e-18,-4.553649124439119e-18,0.011904762126505375,-0.011904762126505375,-0.011904762126505375,-1.8196558997319143e-18,2.3389506238698445e-17,2.337101048020176e-17,0.011904762126505375,-2.168404344971009e-18,-9.238845402078005e-19,-9.31559887073134e-18,-4.749934534304583e-18,-2.329496528494792e-18,6.8027031655437414e-18,-1.535879389681563e-18,-2.927345865710862e-18,0.011904762126505375,-0.011904762126505375,-2.6020852139652106e-18,-0.011904762126505375,2.2738606086486593e-17,2.3950376053040025e-17,-2.168404344971009e-18,0.011904762126505375,-1.0402028847401604e-18,4.718715910806219e-18,-5.699037252299105e-20,-1.7608288825186744e-18,1.3832067053816813e-17,-9.12642638695322e-19,-3.0357660829594124e-18,0.0059523810632526875,-0.0059523810632526875,-9.324138683375338e-18,-1.338989683019598e-17,-0.0019841270986944437,5.550039871047525e-18,-9.238845402078005e-19,-1.0402028847401604e-18,0.0019841270986944437,4.87890977618477e-18,-7.783247406362316e-20,1.2490900293463522e-19,6.795126604723062e-18,1.8932717947736543e-19,-7.589415207398531e-19,0.007936508394777775,-5.551115123125783e-17,-0.0476190485060215,-5.1752349883588263e-17,1.6136879272062104e-17,1.8925604556360105e-17,-9.31559887073134e-18,4.718715910806219e-18,4.87890977618477e-18,0.02380952425301075,1.5335394198057424e-17,-3.1979135421496603e-18,7.087434035225826e-18,4.363514216018292e-18,-3.686287386450715e-18,0.011904762126505375,-2.2551405187698492e-17,-0.011904762126505375,-0.011904762126505375,2.311666733109273e-17,1.4285534910243896e-17,-4.749934534304583e-18,-5.699037252299105e-20,-7.783247406362316e-20,1.5335394198057424e-17,0.011904762126505375,-2.710505431213761e-18,1.3241686743941791e-17,-1.214682366092655e-18,-2.927345865710862e-18,0.0059523810632526875,-6.071532165918825e-18,-0.0059523810632526875,-2.0057740190981832e-18,-0.0019841270986944437,4.557006236955165e-18,-2.329496528494792e-18,-1.7608288825186744e-18,1.2490900293463522e-19,-3.1979135421496603e-18,-2.710505431213761e-18,0.0019841270986944437,3.7064304751373e-18,-2.6278907675350274e-19,-5.421010862427522e-19,0.007936508394777775,-7.979727989493313e-17,-5.551115123125783e-17,-0.0476190485060215,4.849886490032122e-18,1.9008651835499204e-17,6.8027031655437414e-18,1.3832067053816813e-17,6.795126604723062e-18,7.087434035225826e-18,1.3241686743941791e-17,3.7064304751373e-18,0.02380952425301075,2.9815559743351372e-18,-3.686287386450715e-18,0.0059523810632526875,-7.37257477290143e-18,-5.204170427930421e-18,-0.0059523810632526875,-0.0019841270986944437,4.653569233713074e-18,-1.535879389681563e-18,-9.12642638695322e-19,1.8932717947736543e-19,4.363514216018292e-18,-1.214682366092655e-18,-2.6278907675350274e-19,2.9815559743351372e-18,0.0019841270986944437,-6.505213034913027e-19,0.002204585587605834,1.8214596497756474e-17,1.713039432527097e-17,1.6696713456276768e-17,-0.0026455025654286146,-4.553649124439119e-18,-2.927345865710862e-18,-3.0357660829594124e-18,-7.589415207398531e-19,-3.686287386450715e-18,-2.927345865710862e-18,-5.421010862427522e-19,-3.686287386450715e-18,-6.505213034913027e-19,0.00044091709423810244,3.0,3.0,3.0,8.0,0.13387346267700195,-0.05787036940455437,-0.05787036940455437,-0.05787036940455437,-0.02777777798473835,0.0069444444961845875,0.010416666977107525,0.010416666977107525,0.004629629664123058,0.0069444444961845875,0.010416666977107525,0.004629629664123058,0.0069444444961845875,0.004629629664123058,0.0015432098880410194,-0.05787036940455437,0.12731482088565826,0.010416666977107525,0.010416666977107525,0.004629629664123058,-0.0416666679084301,-0.010416666977107525,-0.010416666977107525,-0.004629629664123058,-4.5102810375396984e-17,-1.0408340855860843e-17,3.903127820947816e-18,-4.85722573273506e-17,3.469446951953614e-18,7.589415207398531e-18,-0.05787036940455437,0.010416666977107525,0.12731482088565826,0.010416666977107525,0.004629629664123058,-4.890487657782552e-17,-0.010416666977107525,-9.540979117872439e-18,3.5236570605778894e-18,-0.0416666679084301,-0.010416666977107525,-0.004629629664123058,-5.204170427930421e-17,6.288372600415926e-18,9.107298248878237e-18,-0.05787036940455437,0.010416666977107525,0.010416666977107525,0.12731482088565826,0.004629629664123058,-4.8826803962890317e-17,-2.9426658710408035e-18,-0.010416666977107525,6.396792817664476e-18,-4.43144840905768e-17,-0.010416666977107525,4.824699667560495e-18,-0.0416666679084301,-0.004629629664123058,1.0299920638612292e-17,-0.02777777798473835,0.004629629664123058,0.004629629664123058,0.004629629664123058,0.015652557834982872,2.3418766925686896e-17,8.072826174819421e-18,7.338138416820235e-18,-0.0013227512827143073,2.814749378985654e-17,1.0528641868247492e-17,-0.0013227512827143073,3.275349021218046e-17,-0.0013227512827143073,-0.0015432098880410194,0.0069444444961845875,-0.0416666679084301,-4.890487657782552e-17,-4.8826803962890317e-17,2.3418766925686896e-17,0.02083333395421505,2.0813868056868086e-18,2.757939276260002e-18,-4.625718579476297e-19,2.430389981195539e-17,2.5782088523790206e-18,-1.7149410380372952e-18,2.3799913553977855e-17,-1.4356860006127353e-18,-2.3852447794681098e-18,0.010416666977107525,-0.010416666977107525,-0.010416666977107525,-2.9426658710408035e-18,8.072826174819421e-18,2.0813868056868086e-18,0.010416666977107525,4.336808689942018e-19,-9.369562686328228e-19,-5.036905822675767e-18,1.402447402058517e-18,5.175646345277449e-19,1.3967288956887847e-18,-4.077940190798075e-19,-8.673617379884035e-19,0.010416666977107525,-0.010416666977107525,-9.540979117872439e-18,-0.010416666977107525,7.338138416820235e-18,2.757939276260002e-18,4.336808689942018e-19,0.010416666977107525,-5.459440122723087e-19,2.7511630126819675e-18,4.316503060265066e-18,-1.1896697685375468e-19,3.1132656685252713e-18,6.952942636033252e-19,-9.75781955236954e-19,0.004629629664123058,-0.004629629664123058,3.5236570605778894e-18,6.396792817664476e-18,-0.0013227512827143073,-4.625718579476297e-19,-9.369562686328228e-19,-5.459440122723087e-19,0.0013227512827143073,-7.047314121155779e-19,-2.3142515381066516e-19,-2.1226120140009854e-19,-2.01163976361695e-18,-3.3964829527827484e-19,-2.710505431213761e-19,0.0069444444961845875,-4.5102810375396984e-17,-0.0416666679084301,-4.43144840905768e-17,2.814749378985654e-17,2.430389981195539e-17,-5.036905822675767e-18,2.7511630126819675e-18,-7.047314121155779e-19,0.02083333395421505,-2.599761456829396e-18,-1.6116900792317417e-18,2.4987868990695885e-17,-1.89279831142115e-18,-2.8189256484623115e-18,0.010416666977107525,-1.0408340855860843e-17,-0.010416666977107525,-0.010416666977107525,1.0528641868247492e-17,2.5782088523790206e-18,1.402447402058517e-18,4.316503060265066e-18,-2.3142515381066516e-19,-2.599761456829396e-18,0.010416666977107525,-1.5720931501039814e-18,2.5445678304567953e-18,-6.578297543959384e-19,-9.75781955236954e-19,0.004629629664123058,3.903127820947816e-18,-0.004629629664123058,4.824699667560495e-18,-0.0013227512827143073,-1.7149410380372952e-18,5.175646345277449e-19,-1.1896697685375468e-19,-2.1226120140009854e-19,-1.6116900792317417e-18,-1.5720931501039814e-18,0.0013227512827143073,-9.794080048496568e-19,-2.778494766180733e-19,-1.6263032587282567e-19,0.0069444444961845875,-4.85722573273506e-17,-5.204170427930421e-17,-0.0416666679084301,3.275349021218046e-17,2.3799913553977855e-17,1.3967288956887847e-18,3.1132656685252713e-18,-2.01163976361695e-18,2.4987868990695885e-17,2.5445678304567953e-18,-9.794080048496568e-19,0.02083333395421505,-1.5178830414797062e-18,-3.0357660829594124e-18,0.004629629664123058,3.469446951953614e-18,6.288372600415926e-18,-0.004629629664123058,-0.0013227512827143073,-1.4356860006127353e-18,-4.077940190798075e-19,6.952942636033252e-19,-3.3964829527827484e-19,-1.89279831142115e-18,-6.578297543959384e-19,-2.778494766180733e-19,-1.5178830414797062e-18,0.0013227512827143073,-2.710505431213761e-19,0.0015432098880410194,7.589415207398531e-18,9.107298248878237e-18,1.0299920638612292e-17,-0.0015432098880410194,-2.3852447794681098e-18,-8.673617379884035e-19,-9.75781955236954e-19,-2.710505431213761e-19,-2.8189256484623115e-18,-9.75781955236954e-19,-1.6263032587282567e-19,-3.0357660829594124e-18,-2.710505431213761e-19,0.00022045854711905122,3.0,3.0,4.0,3.0,0.2282407432794571,-0.10833333432674408,-0.10833333432674408,-0.08888889104127884,-0.10833333432674408,0.013888888992369175,0.02083333395421505,0.01666666753590107,0.02083333395421505,0.013888888992369175,0.01666666753590107,0.02083333395421505,0.009259259328246117,0.01666666753590107,0.013888888992369175,-0.10833333432674408,0.24722221493721008,0.02083333395421505,0.01666666753590107,0.02083333395421505,-0.0833333358168602,-0.02083333395421505,-0.01666666753590107,-0.02083333395421505,9.251858317961474e-17,2.2204460823375376e-17,2.7755575615628914e-17,4.317534058180552e-17,2.2204460823375376e-17,9.251858317961474e-17,-0.10833333432674408,0.02083333395421505,0.24722221493721008,0.01666666753590107,0.02083333395421505,1.477213416261781e-16,-0.02083333395421505,-3.3478998935748267e-32,-8.746860517434746e-32,-0.0833333358168602,-0.01666666753590107,-0.02083333395421505,4.317534058180552e-17,2.2204460823375376e-17,9.251858317961474e-17,-0.08888889104127884,0.01666666753590107,0.01666666753590107,0.1240740716457367,0.01666666753590107,1.0012566696489741e-16,-5.928630443753574e-32,-0.011111111380159855,-5.928630443753574e-32,8.902344068911278e-17,-0.011111111380159855,-8.606100946395531e-32,-0.02777777798473835,-0.011111111380159855,-2.099976929354166e-31,-0.10833333432674408,0.02083333395421505,0.02083333395421505,0.01666666753590107,0.24722221493721008,1.477213416261781e-16,-8.746860517434746e-32,-4.1390848804317927e-32,-0.02083333395421505,1.3384355381836365e-16,-7.193182009835685e-32,-0.02083333395421505,-0.0,-0.01666666753590107,-0.0833333358168602,0.013888888992369175,-0.0833333358168602,1.477213416261781e-16,1.0012566696489741e-16,1.477213416261781e-16,0.0416666679084301,-2.4671622953265837e-17,-1.3158198577536201e-17,-2.4671622953265837e-17,-4.625929158980737e-17,-1.1102230411687688e-17,-1.3877787807814457e-17,-2.158767029090276e-17,-1.1102230411687688e-17,-4.625929158980737e-17,0.02083333395421505,-0.02083333395421505,-0.02083333395421505,-5.928630443753574e-32,-8.746860517434746e-32,-2.4671622953265837e-17,0.02083333395421505,7.791219168920339e-33,1.4608535390712659e-32,2.739100495961219e-32,6.573841219694284e-33,8.217301340946863e-33,1.2782468099531592e-32,6.573841219694284e-33,2.739100495961219e-32,0.01666666753590107,-0.01666666753590107,-3.3478998935748267e-32,-0.011111111380159855,-4.1390848804317927e-32,-1.3158198577536201e-17,7.791219168920339e-33,0.011111111380159855,7.791219168920339e-33,1.232595164407831e-32,-2.2311217059813032e-33,4.3825606906821945e-33,5.565156221244899e-34,-0.0,1.4608535390712659e-32,0.02083333395421505,-0.02083333395421505,-8.746860517434746e-32,-5.928630443753574e-32,-0.02083333395421505,-2.4671622953265837e-17,1.4608535390712659e-32,7.791219168920339e-33,0.02083333395421505,2.739100495961219e-32,6.573841219694284e-33,8.217301340946863e-33,1.2782468099531592e-32,6.573841219694284e-33,2.739100495961219e-32,0.013888888992369175,9.251858317961474e-17,-0.0833333358168602,8.902344068911278e-17,1.3384355381836365e-16,-4.625929158980737e-17,2.739100495961219e-32,1.232595164407831e-32,2.739100495961219e-32,0.0416666679084301,-1.3158198577536201e-17,-2.4671622953265837e-17,-2.158767029090276e-17,-1.1102230411687688e-17,-4.625929158980737e-17,0.01666666753590107,2.2204460823375376e-17,-0.01666666753590107,-0.011111111380159855,-7.193182009835685e-32,-1.1102230411687688e-17,6.573841219694284e-33,-2.2311217059813032e-33,6.573841219694284e-33,-1.3158198577536201e-17,0.011111111380159855,1.1489004074396656e-32,1.709072175153648e-33,-0.0,2.693448703479097e-32,0.02083333395421505,2.7755575615628914e-17,-0.02083333395421505,-8.606100946395531e-32,-0.02083333395421505,-1.3877787807814457e-17,8.217301340946863e-33,4.3825606906821945e-33,8.217301340946863e-33,-2.4671622953265837e-17,1.1489004074396656e-32,0.02083333395421505,1.9972607048366585e-32,1.0271626125170601e-32,4.2798444514710075e-32,0.009259259328246117,4.317534058180552e-17,4.317534058180552e-17,-0.02777777798473835,-0.0,-2.158767029090276e-17,1.2782468099531592e-32,5.565156221244899e-34,1.2782468099531592e-32,-2.158767029090276e-17,1.709072175153648e-33,1.9972607048366585e-32,0.009259259328246117,9.39120161122684e-34,4.7934255740585453e-32,0.01666666753590107,2.2204460823375376e-17,2.2204460823375376e-17,-0.011111111380159855,-0.01666666753590107,-1.1102230411687688e-17,6.573841219694284e-33,-0.0,6.573841219694284e-33,-1.1102230411687688e-17,-0.0,1.0271626125170601e-32,9.39120161122684e-34,0.011111111380159855,2.465190328815662e-32,0.013888888992369175,9.251858317961474e-17,9.251858317961474e-17,-2.099976929354166e-31,-0.0833333358168602,-4.625929158980737e-17,2.739100495961219e-32,1.4608535390712659e-32,2.739100495961219e-32,-4.625929158980737e-17,2.693448703479097e-32,4.2798444514710075e-32,4.7934255740585453e-32,2.465190328815662e-32,0.0416666679084301,3.0,3.0,4.0,4.0,0.1867361068725586,-0.08437500149011612,-0.08437500149011612,-0.06916666775941849,-0.06916666775941849,0.010416666977107525,0.015625,0.012500000186264515,0.012500000186264515,0.010416666977107525,0.012500000186264515,0.012500000186264515,0.0069444444961845875,0.009999999776482582,0.0069444444961845875,-0.08437500149011612,0.18854166567325592,0.015625,0.012500000186264515,0.012500000186264515,-0.0625,-0.015625,-0.012500000186264515,-0.012500000186264515,6.938893903907228e-17,1.6593942882611955e-17,1.63200865428528e-17,3.234851251044185e-17,1.2852527217057031e-17,3.2593668991667867e-17,-0.08437500149011612,0.015625,0.18854166567325592,0.012500000186264515,0.012500000186264515,1.0824674754793072e-16,-0.015625,-3.46104485195691e-20,-3.580504272693772e-19,-0.0625,-0.012500000186264515,-0.012500000186264515,3.229497738119742e-17,1.3322675997716858e-17,3.174857826449184e-17,-0.06916666775941849,0.012500000186264515,0.012500000186264515,0.094722218811512,0.009999999776482582,8.169391239528861e-17,-3.6279385005183956e-32,-0.008333333767950535,-4.100255455773224e-19,7.336724103408892e-17,-0.008333333767950535,-2.168404344971009e-19,-0.02083333395421505,-0.006666666828095913,-6.754640042846501e-19,-0.06916666775941849,0.012500000186264515,0.012500000186264515,0.009999999776482582,0.094722218811512,8.169391239528861e-17,-3.6279385005183956e-32,-2.3907644522980995e-19,-0.008333333767950535,7.336724103408892e-17,-4.3083705435998714e-20,-0.008333333767950535,-0.0,-0.006666666828095913,-0.02083333395421505,0.010416666977107525,-0.0625,1.0824674754793072e-16,8.169391239528861e-17,8.169391239528861e-17,0.03125,-1.3877787807814457e-17,-1.4802974433703992e-17,-1.4802974433703992e-17,-3.469446951953614e-17,-8.326673015560919e-18,-8.326673015560919e-18,-1.6190751890996458e-17,-6.661337998858429e-18,-1.6190751890996458e-17,0.015625,-0.015625,-0.015625,-3.6279385005183956e-32,-3.6279385005183956e-32,-1.3877787807814457e-17,0.015625,6.573841219694284e-33,6.573841219694284e-33,1.5407439555097887e-32,3.697785640160287e-33,3.697785640160287e-33,7.190138214151024e-33,2.958228328457237e-33,7.190138214151024e-33,0.012500000186264515,-0.012500000186264515,-3.46104485195691e-20,-0.008333333767950535,-2.3907644522980995e-19,-1.4802974433703992e-17,6.573841219694284e-33,0.008333333767950535,8.797804945615205e-21,1.4637067577342992e-32,1.7741489331485246e-20,5.332141937836063e-21,6.260800921092066e-34,1.0842021724855044e-19,1.9076376278799702e-20,0.012500000186264515,-0.012500000186264515,-3.580504272693772e-19,-4.100255455773224e-19,-0.008333333767950535,-1.4802974433703992e-17,6.573841219694284e-33,8.797804945615205e-21,0.008333333767950535,1.5407439555097887e-32,2.1859842271214908e-20,2.168404344971009e-19,2.1994512767934796e-20,2.050127727886612e-19,-1.6051824942564222e-19,0.010416666977107525,6.938893903907228e-17,-0.0625,7.336724103408892e-17,7.336724103408892e-17,-3.469446951953614e-17,1.5407439555097887e-32,1.4637067577342992e-32,1.5407439555097887e-32,0.03125,-1.4802974433703992e-17,-1.4802974433703992e-17,-1.6190751890996458e-17,-6.661337998858429e-18,-1.6190751890996458e-17,0.012500000186264515,1.6593942882611955e-17,-0.012500000186264515,-0.008333333767950535,-4.3083705435998714e-20,-8.326673015560919e-18,3.697785640160287e-33,1.7741489331485246e-20,2.1859842271214908e-20,-1.4802974433703992e-17,0.008333333767950535,5.332141937836063e-21,4.435372494430025e-20,-1.0842021724855044e-19,5.464960648583084e-20,0.012500000186264515,1.63200865428528e-17,-0.012500000186264515,-2.168404344971009e-19,-0.008333333767950535,-8.326673015560919e-18,3.697785640160287e-33,5.332141937836063e-21,2.168404344971009e-19,-1.4802974433703992e-17,5.332141937836063e-21,0.008333333767950535,1.3330354844590158e-20,1.0842021724855044e-19,3.673011499510757e-19,0.0069444444961845875,3.234851251044185e-17,3.229497738119742e-17,-0.02083333395421505,-0.0,-1.6190751890996458e-17,7.190138214151024e-33,6.260800921092066e-34,2.1994512767934796e-20,-1.6190751890996458e-17,4.435372494430025e-20,1.3330354844590158e-20,0.0069444444961845875,-4.336808689942018e-19,2.912449299306365e-20,0.009999999776482582,1.2852527217057031e-17,1.3322675997716858e-17,-0.006666666828095913,-0.006666666828095913,-6.661337998858429e-18,2.958228328457237e-33,1.0842021724855044e-19,2.050127727886612e-19,-6.661337998858429e-18,-1.0842021724855044e-19,1.0842021724855044e-19,-4.336808689942018e-19,0.004444444552063942,3.3773200214232504e-19,0.0069444444961845875,3.2593668991667867e-17,3.174857826449184e-17,-6.754640042846501e-19,-0.02083333395421505,-1.6190751890996458e-17,7.190138214151024e-33,1.9076376278799702e-20,-1.6051824942564222e-19,-1.6190751890996458e-17,5.464960648583084e-20,3.673011499510757e-19,2.912449299306365e-20,3.3773200214232504e-19,0.0069444444961845875,3.0,3.0,4.0,5.0,0.1582142859697342,-0.06916666775941849,-0.06916666775941849,-0.05666666850447655,-0.04809523746371269,0.008333333767950535,0.012500000186264515,0.009999999776482582,0.008333333767950535,0.008333333767950535,0.009999999776482582,0.008333333767950535,0.0055555556900799274,0.006666666828095913,0.003968254197388887,-0.06916666775941849,0.1525000035762787,0.012500000186264515,0.009999999776482582,0.008333333767950535,-0.05000000074505806,-0.012500000186264515,-0.009999999776482582,-0.008333333767950535,-2.7755575615628914e-17,-6.661337998858429e-18,-5.6595354230923944e-18,-1.2952602009105534e-17,-4.936289227326042e-18,-7.734413351334176e-18,-0.06916666775941849,0.012500000186264515,0.1525000035762787,0.009999999776482582,0.008333333767950535,-3.8302694217219e-17,-0.012500000186264515,-0.0,-1.0842021724855044e-19,-0.05000000074505806,-0.009999999776482582,-0.008333333767950535,-1.2952602009105534e-17,-4.8745728682331544e-18,-8.122080644393891e-18,-0.05666666850447655,0.009999999776482582,0.009999999776482582,0.07666666805744171,0.006666666828095913,-2.7200464632711927e-17,-0.0,-0.006666666828095913,-4.95396969593148e-19,-2.386979542648756e-17,-0.006666666828095913,-4.336808689942018e-19,-0.01666666753590107,-0.004444444552063942,-6.537806018999147e-19,-0.04809523746371269,0.008333333767950535,0.008333333767950535,0.006666666828095913,0.047857142984867096,-2.1966555407399e-17,-0.0,-0.0,-0.004166666883975267,-1.9190997184091618e-17,-2.9265331436682295e-33,-0.004166666883975267,-1.0661948289677173e-32,-0.0033333334140479565,-0.007936508394777775,0.008333333767950535,-0.05000000074505806,-3.8302694217219e-17,-2.7200464632711927e-17,-2.1966555407399e-17,0.02500000037252903,-0.0,-0.0,8.801742392578571e-35,1.3877787807814457e-17,3.3306689994292145e-18,2.775557602921922e-18,6.476301004552767e-18,2.2204459996194763e-18,3.965082408057119e-18,0.012500000186264515,-0.012500000186264515,-0.012500000186264515,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.009999999776482582,-0.0,-0.006666666828095913,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.008333333767950535,-1.0842021724855044e-19,-4.95396969593148e-19,-0.004166666883975267,8.801742392578571e-35,-0.0,-0.0,0.004166666883975267,7.703719777548943e-34,0.0,5.421010862427522e-20,0.0,2.47698484796574e-19,-9.787537049851273e-20,0.008333333767950535,-2.7755575615628914e-17,-0.05000000074505806,-2.386979542648756e-17,-1.9190997184091618e-17,1.3877787807814457e-17,-0.0,-0.0,7.703719777548943e-34,0.02500000037252903,1.8488928200801433e-33,1.7333369499485123e-33,6.476301004552767e-18,2.2204459996194763e-18,3.965082408057119e-18,0.009999999776482582,-6.661337998858429e-18,-0.009999999776482582,-0.006666666828095913,-2.9265331436682295e-33,3.3306689994292145e-18,-0.0,-0.0,0.0,1.8488928200801433e-33,0.006666666828095913,3.6977854105715463e-34,8.628166187589015e-34,2.958228420292733e-34,5.282550848917912e-34,0.008333333767950535,-5.6595354230923944e-18,-0.008333333767950535,-4.336808689942018e-19,-0.004166666883975267,2.775557602921922e-18,-0.0,-0.0,5.421010862427522e-20,1.7333369499485123e-33,3.6977854105715463e-34,0.004166666883975267,7.1901384896575126e-34,2.168404344971009e-19,9.595812093497967e-20,0.0055555556900799274,-1.2952602009105534e-17,-1.2952602009105534e-17,-0.01666666753590107,-1.0661948289677173e-32,6.476301004552767e-18,-0.0,-0.0,0.0,6.476301004552767e-18,8.628166187589015e-34,7.1901384896575126e-34,0.0055555556900799274,1.150422158345202e-33,2.0543253352367157e-33,0.006666666828095913,-4.936289227326042e-18,-4.8745728682331544e-18,-0.004444444552063942,-0.0033333334140479565,2.2204459996194763e-18,-0.0,-0.0,2.47698484796574e-19,2.2204459996194763e-18,2.958228420292733e-34,2.168404344971009e-19,1.150422158345202e-33,0.002222222276031971,3.2689030094995736e-19,0.003968254197388887,-7.734413351334176e-18,-8.122080644393891e-18,-6.537806018999147e-19,-0.007936508394777775,3.965082408057119e-18,-0.0,-0.0,-9.787537049851273e-20,3.965082408057119e-18,5.282550848917912e-34,9.595812093497967e-20,2.0543253352367157e-33,3.2689030094995736e-19,0.0019841270986944437,3.0,3.0,4.0,6.0,0.1373346596956253,-0.05863095074892044,-0.05863095074892044,-0.04801587387919426,-0.03541666641831398,0.0069444444961845875,0.010416666977107525,0.008333333767950535,0.0059523810632526875,0.0069444444961845875,0.008333333767950535,0.0059523810632526875,0.004629629664123058,0.004761904943734407,0.0024801588151603937,-0.05863095074892044,0.12807539105415344,0.010416666977107525,0.008333333767950535,0.0059523810632526875,-0.0416666679084301,-0.010416666977107525,-0.008333333767950535,-0.0059523810632526875,4.625929158980737e-17,1.1102230411687688e-17,7.930164816114238e-18,2.158767029090276e-17,6.033912818840526e-18,9.036869609983635e-18,-0.05863095074892044,0.010416666977107525,0.12807539105415344,0.008333333767950535,0.0059523810632526875,7.683448437689069e-17,-0.010416666977107525,-2.4264081253197453e-32,-1.475647576286746e-32,-0.0416666679084301,-0.008333333767950535,-0.0059523810632526875,2.158767029090276e-17,6.07308106161583e-18,9.222172129265926e-18,-0.04801587387919426,0.008333333767950535,0.008333333767950535,0.06441798806190491,0.004761904943734407,5.244188433349002e-17,-3.1051832322698653e-32,-0.0055555556900799274,-3.102188375954691e-19,4.6890767886875254e-17,-0.0055555556900799274,-2.710505431213761e-19,-0.013888888992369175,-0.0031746032182127237,-5.705128274287822e-19,-0.03541666641831398,0.0059523810632526875,0.0059523810632526875,0.004761904943734407,0.027807539328932762,3.707902608473461e-17,-2.1955194351095517e-32,-1.1709436448482698e-32,-0.0023809524718672037,3.311394243590657e-17,-2.033711315287719e-32,-0.0023809524718672037,-3.636726496285143e-32,-0.0019047618843615055,-0.0037202381063252687,0.0069444444961845875,-0.0416666679084301,7.683448437689069e-17,5.244188433349002e-17,3.707902608473461e-17,0.02083333395421505,-1.2335811476632919e-17,-6.579099288768101e-18,-5.6392281390542176e-18,-2.3129645794903686e-17,-5.551115205843844e-18,-3.965082408057119e-18,-1.079383514545138e-17,-3.1720658023686032e-18,-4.543323428852619e-18,0.010416666977107525,-0.010416666977107525,-0.010416666977107525,-3.1051832322698653e-32,-2.1955194351095517e-32,-1.2335811476632919e-17,0.010416666977107525,3.8956095844601695e-33,3.3390938245824354e-33,1.3695502479806094e-32,3.286920609847142e-33,2.347800356888962e-33,6.391234049765796e-33,1.878240322245368e-33,2.6901878821499158e-33,0.008333333767950535,-0.008333333767950535,-2.4264081253197453e-32,-0.0055555556900799274,-1.1709436448482698e-32,-6.579099288768101e-18,3.8956095844601695e-33,0.0055555556900799274,1.7808500642667645e-33,7.304267695356329e-33,1.7530242762728778e-33,1.2521601842184133e-33,3.40865811089616e-33,1.0017280922734329e-33,1.4347668949694207e-33,0.0059523810632526875,-0.0059523810632526875,-1.475647576286746e-32,-3.102188375954691e-19,-0.0023809524718672037,-5.6392281390542176e-18,3.3390938245824354e-33,1.7808500642667645e-33,0.0023809524718672037,5.3926038442842604e-33,1.5025921843278974e-33,-6.486858127482289e-34,2.9217070046741348e-33,1.2408753503818763e-19,1.991072848264008e-20,0.0069444444961845875,4.625929158980737e-17,-0.0416666679084301,4.6890767886875254e-17,3.311394243590657e-17,-2.3129645794903686e-17,1.3695502479806094e-32,7.304267695356329e-33,5.3926038442842604e-33,0.02083333395421505,-6.579099288768101e-18,-5.6392281390542176e-18,-1.079383514545138e-17,-3.1720658023686032e-18,-4.543323428852619e-18,0.008333333767950535,1.1102230411687688e-17,-0.008333333767950535,-0.0055555556900799274,-2.033711315287719e-32,-5.551115205843844e-18,3.286920609847142e-33,1.7530242762728778e-33,1.5025921843278974e-33,-6.579099288768101e-18,0.0055555556900799274,2.8373601422148508e-33,6.284713690430157e-33,1.8469361729990012e-33,2.6453514052026844e-33,0.0059523810632526875,7.930164816114238e-18,-0.0059523810632526875,-2.710505431213761e-19,-0.0023809524718672037,-3.965082408057119e-18,2.347800356888962e-33,1.2521601842184133e-33,-6.486858127482289e-34,-5.6392281390542176e-18,2.8373601422148508e-33,0.0023809524718672037,4.976032156239858e-33,1.0842021724855044e-19,-5.421010862427522e-20,0.004629629664123058,2.158767029090276e-17,2.158767029090276e-17,-0.013888888992369175,-3.636726496285143e-32,-1.079383514545138e-17,6.391234049765796e-33,3.40865811089616e-33,2.9217070046741348e-33,-1.079383514545138e-17,6.284713690430157e-33,4.976032156239858e-33,0.004629629664123058,3.286920609847142e-33,4.7078287937623526e-33,0.004761904943734407,6.033912818840526e-18,6.07308106161583e-18,-0.0031746032182127237,-0.0019047618843615055,-3.1720658023686032e-18,1.878240322245368e-33,1.0017280922734329e-33,1.2408753503818763e-19,-3.1720658023686032e-18,1.8469361729990012e-33,1.0842021724855044e-19,3.286920609847142e-33,0.0012698412174358964,2.2820514648114936e-19,0.0024801588151603937,9.036869609983635e-18,9.222172129265926e-18,-5.705128274287822e-19,-0.0037202381063252687,-4.543323428852619e-18,2.6901878821499158e-33,1.4347668949694207e-33,1.991072848264008e-20,-4.543323428852619e-18,2.6453514052026844e-33,-5.421010862427522e-20,4.7078287937623526e-33,2.2820514648114936e-19,0.0007440476329065859,3.0,3.0,4.0,7.0,0.12136243283748627,-0.05089285597205162,-0.05089285597205162,-0.0416666679084301,-0.02718253992497921,0.0059523810632526875,0.008928571827709675,0.0071428571827709675,0.004464285913854837,0.0059523810632526875,0.0071428571827709675,0.004464285913854837,0.003968254197388887,0.0035714285913854837,0.0016534391324967146,-0.05089285597205162,0.11041666567325592,0.008928571827709675,0.0071428571827709675,0.004464285913854837,-0.0357142873108387,-0.008928571827709675,-0.0071428571827709675,-0.004464285913854837,2.2551405187698492e-17,-5.204170427930421e-18,2.6020852139652106e-18,-3.0357660829594124e-17,-5.204170427930421e-18,-9.974659986866641e-18,-0.05089285597205162,0.008928571827709675,0.11041666567325592,0.0071428571827709675,0.004464285913854837,1.5838061930138548e-17,-0.008928571827709675,8.673617379884035e-18,-2.222614453595284e-18,-0.0357142873108387,-0.0071428571827709675,-0.004464285913854837,-3.209238430557093e-17,-6.5052130349130266e-18,-9.269928574751063e-18,-0.0416666679084301,0.0071428571827709675,0.0071428571827709675,0.0555555559694767,0.0035714285913854837,-6.091168771916344e-17,-9.20363087583555e-18,-0.004761904943734407,-6.179952383167375e-18,-5.721606973540312e-17,-0.004761904943734407,-5.854691731421724e-18,-0.011904762126505375,-0.0023809524718672037,-4.228388472693467e-18,-0.02718253992497921,0.004464285913854837,0.004464285913854837,0.0035714285913854837,0.01765873096883297,-2.6237692574149207e-17,-8.291211782700771e-18,-4.5616707084293516e-18,-0.0014880952658131719,-2.746405235234685e-17,-7.178105438070826e-18,-0.0014880952658131719,-1.4140988406922705e-17,-0.0011904762359336019,-0.0019841270986944437,0.0059523810632526875,-0.0357142873108387,1.5838061930138548e-17,-6.091168771916344e-17,-2.6237692574149207e-17,0.01785714365541935,-3.0841369168445227e-18,1.2017990487316569e-17,9.96727574553838e-18,-8.114957792139197e-18,4.4004589973070544e-18,-6.972482193065403e-19,1.2342154297569975e-17,1.7381833656839633e-18,2.3852447794681098e-18,0.008928571827709675,-0.008928571827709675,-0.008928571827709675,-9.20363087583555e-18,-8.291211782700771e-18,-3.0841369168445227e-18,0.008928571827709675,-6.505213034913027e-19,2.892038229950707e-19,-6.130473334056597e-18,-1.0679177779589027e-18,-1.0146038161307521e-18,2.9262111807055924e-18,7.433989521263466e-19,1.5178830414797062e-18,0.0071428571827709675,-0.0071428571827709675,8.673617379884035e-18,-0.004761904943734407,-4.5616707084293516e-18,1.2017990487316569e-17,-6.505213034913027e-19,0.004761904943734407,3.666569055008676e-19,-1.5785288220647971e-18,-2.1616042999503636e-18,-3.3152031518175222e-19,-2.1336162303343256e-18,2.7931873033172647e-19,6.505213034913027e-19,0.004464285913854837,-0.004464285913854837,-2.222614453595284e-18,-6.179952383167375e-18,-0.0014880952658131719,9.96727574553838e-18,2.892038229950707e-19,3.666569055008676e-19,0.0014880952658131719,4.87890977618477e-19,2.426875021939102e-19,1.171183057328811e-19,1.6098161015540028e-18,2.2331257995305134e-19,4.336808689942018e-19,0.0059523810632526875,2.2551405187698492e-17,-0.0357142873108387,-5.721606973540312e-17,-2.746405235234685e-17,-8.114957792139197e-18,-6.130473334056597e-18,-1.5785288220647971e-18,4.87890977618477e-19,0.01785714365541935,1.415657414402443e-17,6.978013756616699e-18,1.171670980152883e-17,2.2651600748116428e-18,2.6020852139652106e-18,0.0071428571827709675,-5.204170427930421e-18,-0.0071428571827709675,-0.004761904943734407,-7.178105438070826e-18,4.4004589973070544e-18,-1.0679177779589027e-18,-2.1616042999503636e-18,2.426875021939102e-19,1.415657414402443e-17,0.004761904943734407,2.0057740190981832e-18,3.9641134176683013e-19,2.714240151679438e-19,6.505213034913027e-19,0.004464285913854837,2.6020852139652106e-18,-0.004464285913854837,-5.854691731421724e-18,-0.0014880952658131719,-6.972482193065403e-19,-1.0146038161307521e-18,-3.3152031518175222e-19,1.171183057328811e-19,6.978013756616699e-18,2.0057740190981832e-18,0.0014880952658131719,1.1725501283874197e-18,2.003332440423868e-19,3.7947076036992655e-19,0.003968254197388887,-3.0357660829594124e-17,-3.209238430557093e-17,-0.011904762126505375,-1.4140988406922705e-17,1.2342154297569975e-17,2.9262111807055924e-18,-2.1336162303343256e-18,1.6098161015540028e-18,1.171670980152883e-17,3.9641134176683013e-19,1.1725501283874197e-18,0.003968254197388887,4.065758146820642e-18,3.2526065174565133e-19,0.0035714285913854837,-5.204170427930421e-18,-6.5052130349130266e-18,-0.0023809524718672037,-0.0011904762359336019,1.7381833656839633e-18,7.433989521263466e-19,2.7931873033172647e-19,2.2331257995305134e-19,2.2651600748116428e-18,2.714240151679438e-19,2.003332440423868e-19,4.065758146820642e-18,0.0007936508045531809,1.6263032587282567e-19,0.0016534391324967146,-9.974659986866641e-18,-9.269928574751063e-18,-4.228388472693467e-18,-0.0019841270986944437,2.3852447794681098e-18,1.5178830414797062e-18,6.505213034913027e-19,4.336808689942018e-19,2.6020852139652106e-18,6.505213034913027e-19,3.7947076036992655e-19,3.2526065174565133e-19,1.6263032587282567e-19,0.0003306878206785768,3.0,3.0,4.0,8.0,0.10873842239379883,-0.04496527835726738,-0.04496527835726738,-0.03680555522441864,-0.02152777835726738,0.0052083334885537624,0.0078125,0.0062500000931322575,0.0034722222480922937,0.0052083334885537624,0.0062500000931322575,0.0034722222480922937,0.0034722222480922937,0.0027777778450399637,0.0011574074160307646,-0.04496527835726738,0.09704861044883728,0.0078125,0.0062500000931322575,0.0034722222480922937,-0.03125,-0.0078125,-0.0062500000931322575,-0.0034722222480922937,8.673617379884035e-18,1.474514954580286e-17,0.0,3.122502256758253e-17,1.951563910473908e-18,-6.5052130349130266e-18,-0.04496527835726738,0.0078125,0.09704861044883728,0.0062500000931322575,0.0034722222480922937,5.241063924021205e-18,-0.0078125,1.0842021724855044e-17,5.5294310796760726e-18,-0.03125,-0.0062500000931322575,-0.0034722222480922937,2.42861286636753e-17,6.505213034913027e-19,-7.860465750519907e-18,-0.03680555522441864,0.0062500000931322575,0.0062500000931322575,0.048842594027519226,0.0027777778450399637,4.7317894176695586e-17,1.3849307979324256e-17,-0.004166666883975267,7.426784881525705e-18,3.425549800334405e-17,-0.004166666883975267,2.3310346708438345e-18,-0.010416666977107525,-0.0018518518190830946,-4.391018798566293e-18,-0.02152777835726738,0.0034722222480922937,0.0034722222480922937,0.0027777778450399637,0.011937830597162247,-1.0191500421363742e-17,-8.202281595045195e-18,-7.737674924489473e-18,-0.0009920635493472219,-1.1570513072885595e-17,-8.034048774883547e-18,-0.0009920635493472219,4.5071690186391514e-18,-0.0007936508045531809,-0.0011574074160307646,0.0052083334885537624,-0.03125,5.241063924021205e-18,4.7317894176695586e-17,-1.0191500421363742e-17,0.015625,-2.411628118695795e-18,-4.139411549333282e-18,4.6382495256511653e-20,4.82017829833228e-18,-6.269306500886885e-18,-2.3763407488606475e-19,-9.921929704358223e-18,-9.992091577505277e-19,1.734723475976807e-18,0.0078125,-0.0078125,-0.0078125,1.3849307979324256e-17,-8.202281595045195e-18,-2.411628118695795e-18,0.0078125,-6.505213034913027e-19,-1.2782354797357167e-19,-3.0434543131627865e-18,-9.87551908172971e-19,8.195292435857005e-19,-3.790335954161923e-18,-1.3523999764693383e-19,1.0299920638612292e-18,0.0062500000931322575,-0.0062500000931322575,1.0842021724855044e-17,-0.004166666883975267,-7.737674924489473e-18,-4.139411549333282e-18,-6.505213034913027e-19,0.004166666883975267,4.883218094706464e-20,-4.756979631581697e-18,-4.897188916758543e-19,7.085150913337603e-20,-4.907511613815322e-19,6.085435417654616e-19,8.673617379884035e-19,0.0034722222480922937,-0.0034722222480922937,5.5294310796760726e-18,7.426784881525705e-18,-0.0009920635493472219,4.6382495256511653e-20,-1.2782354797357167e-19,4.883218094706464e-20,0.0009920635493472219,-1.951563910473908e-18,-5.117384395820159e-19,-8.40535572789667e-20,-2.044906486311995e-18,-1.762224801501146e-19,3.2526065174565133e-19,0.0052083334885537624,8.673617379884035e-18,-0.03125,3.425549800334405e-17,-1.1570513072885595e-17,4.82017829833228e-18,-3.0434543131627865e-18,-4.756979631581697e-18,-1.951563910473908e-18,0.015625,-7.906125293152222e-18,-5.858774488130133e-19,-5.543400505860868e-18,-5.121762766199979e-19,2.168404344971009e-18,0.0062500000931322575,1.474514954580286e-17,-0.0062500000931322575,-0.004166666883975267,-8.034048774883547e-18,-6.269306500886885e-18,-9.87551908172971e-19,-4.897188916758543e-19,-5.117384395820159e-19,-7.906125293152222e-18,0.004166666883975267,8.673617379884035e-19,-2.678638504910309e-18,3.2165825432858875e-19,1.0299920638612292e-18,0.0034722222480922937,0.0,-0.0034722222480922937,2.3310346708438345e-18,-0.0009920635493472219,-2.3763407488606475e-19,8.195292435857005e-19,7.085150913337603e-20,-8.40535572789667e-20,-5.858774488130133e-19,8.673617379884035e-19,0.0009920635493472219,-1.1085396872631928e-18,8.91681878742054e-21,2.710505431213761e-19,0.0034722222480922937,3.122502256758253e-17,2.42861286636753e-17,-0.010416666977107525,4.5071690186391514e-18,-9.921929704358223e-18,-3.790335954161923e-18,-4.907511613815322e-19,-2.044906486311995e-18,-5.543400505860868e-18,-2.678638504910309e-18,-1.1085396872631928e-18,0.0034722222480922937,-2.710505431213761e-18,4.336808689942018e-19,0.0027777778450399637,1.951563910473908e-18,6.505213034913027e-19,-0.0018518518190830946,-0.0007936508045531809,-9.992091577505277e-19,-1.3523999764693383e-19,6.085435417654616e-19,-1.762224801501146e-19,-5.121762766199979e-19,3.2165825432858875e-19,8.91681878742054e-21,-2.710505431213761e-18,0.0005291005363687873,1.8973538018496328e-19,0.0011574074160307646,-6.5052130349130266e-18,-7.860465750519907e-18,-4.391018798566293e-18,-0.0011574074160307646,1.734723475976807e-18,1.0299920638612292e-18,8.673617379884035e-19,3.2526065174565133e-19,2.168404344971009e-18,1.0299920638612292e-18,2.710505431213761e-19,4.336808689942018e-19,1.8973538018496328e-19,0.0001653439103392884,3.0,3.0,5.0,3.0,0.19391533732414246,-0.08888889104127884,-0.08888889104127884,-0.06190476194024086,-0.08888889104127884,0.011111111380159855,0.01666666753590107,0.011111111380159855,0.01666666753590107,0.011111111380159855,0.011111111380159855,0.01666666753590107,0.005291005130857229,0.011111111380159855,0.011111111380159855,-0.08888889104127884,0.20000000298023224,0.01666666753590107,0.011111111380159855,0.01666666753590107,-0.06666667014360428,-0.01666666753590107,-0.011111111380159855,-0.01666666753590107,-1.2836953722228372e-16,-9.540979117872439e-18,-2.949029909160572e-17,3.642919299551295e-17,0.0,-6.938893903907228e-17,-0.08888889104127884,0.01666666753590107,0.20000000298023224,0.011111111380159855,0.01666666753590107,-1.4936312970597335e-16,-0.01666666753590107,-1.496198998029996e-17,7.806255641895632e-18,-0.06666667014360428,-0.011111111380159855,-0.01666666753590107,3.1008182133085427e-17,-2.6020852139652106e-18,-4.85722573273506e-17,-0.06190476194024086,0.011111111380159855,0.011111111380159855,0.06269841641187668,0.011111111380159855,4.75130757140336e-17,2.571374313926832e-17,-0.0055555556900799274,1.0408340855860843e-17,4.744244441588892e-17,-0.0055555556900799274,6.938893903907228e-18,-0.010582010261714458,-0.0055555556900799274,3.469446951953614e-17,-0.08888889104127884,0.01666666753590107,0.01666666753590107,0.011111111380159855,0.20000000298023224,-1.3660947373317356e-16,3.0613057806803547e-17,-1.1111455957059492e-17,-0.01666666753590107,-9.103534907963366e-17,-7.431958069076612e-18,-0.01666666753590107,1.6479873021779667e-17,-0.011111111380159855,-0.06666667014360428,0.011111111380159855,-0.06666667014360428,-1.4936312970597335e-16,4.75130757140336e-17,-1.3660947373317356e-16,0.03333333507180214,1.7846511051337728e-17,-4.780345829525095e-18,1.8657045481243738e-17,5.270316752793837e-17,4.463807383748509e-18,1.3575952083835695e-17,-1.214306433183765e-17,3.2526065174565133e-18,4.705437428587089e-17,0.01666666753590107,-0.01666666753590107,-0.01666666753590107,2.571374313926832e-17,3.0613057806803547e-17,1.7846511051337728e-17,0.01666666753590107,-1.3010426069826053e-18,-3.520361159427172e-18,2.3474469681726523e-18,-2.1414142170652278e-20,1.6819911255168579e-19,-5.204170427930421e-18,-3.469446951953614e-18,-9.540979117872439e-18,0.011111111380159855,-0.011111111380159855,-1.496198998029996e-17,-0.0055555556900799274,-1.1111455957059492e-17,-4.780345829525095e-18,-1.3010426069826053e-18,0.0055555556900799274,4.615858896767394e-18,6.288372600415926e-18,8.199295990021761e-19,1.6479200730736815e-18,-1.3010426069826053e-18,-2.168404344971009e-19,2.3852447794681098e-18,0.01666666753590107,-0.01666666753590107,7.806255641895632e-18,1.0408340855860843e-17,-0.01666666753590107,1.8657045481243738e-17,-3.520361159427172e-18,4.615858896767394e-18,0.01666666753590107,-0.0,-9.210994230853344e-19,-1.9314053121508376e-18,-3.0357660829594124e-18,-1.3010426069826053e-18,-1.452830911130576e-17,0.011111111380159855,-1.2836953722228372e-16,-0.06666667014360428,4.744244441588892e-17,-9.103534907963366e-17,5.270316752793837e-17,2.3474469681726523e-18,6.288372600415926e-18,-0.0,0.03333333507180214,-2.0285244637935967e-17,1.0387012003766163e-17,-8.673617379884035e-18,4.228388472693467e-18,3.382710778154774e-17,0.011111111380159855,-9.540979117872439e-18,-0.011111111380159855,-0.0055555556900799274,-7.431958069076612e-18,4.463807383748509e-18,-2.1414142170652278e-20,8.199295990021761e-19,-9.210994230853344e-19,-2.0285244637935967e-17,0.0055555556900799274,3.903127820947816e-18,-1.3010426069826053e-18,-0.0,1.8431436932253575e-18,0.01666666753590107,-2.949029909160572e-17,-0.01666666753590107,6.938893903907228e-18,-0.01666666753590107,1.3575952083835695e-17,1.6819911255168579e-19,1.6479200730736815e-18,-1.9314053121508376e-18,1.0387012003766163e-17,3.903127820947816e-18,0.01666666753590107,-2.6020852139652106e-18,-8.673617379884035e-19,-1.1492543028346347e-17,0.005291005130857229,3.642919299551295e-17,3.1008182133085427e-17,-0.010582010261714458,1.6479873021779667e-17,-1.214306433183765e-17,-5.204170427930421e-18,-1.3010426069826053e-18,-3.0357660829594124e-18,-8.673617379884035e-18,-1.3010426069826053e-18,-2.6020852139652106e-18,0.0026455025654286146,-4.336808689942018e-19,-5.204170427930421e-18,0.011111111380159855,0.0,-2.6020852139652106e-18,-0.0055555556900799274,-0.011111111380159855,3.2526065174565133e-18,-3.469446951953614e-18,-2.168404344971009e-19,-1.3010426069826053e-18,4.228388472693467e-18,-0.0,-8.673617379884035e-19,-4.336808689942018e-19,0.0055555556900799274,-1.8011856183980953e-17,0.011111111380159855,-6.938893903907228e-17,-4.85722573273506e-17,3.469446951953614e-17,-0.06666667014360428,4.705437428587089e-17,-9.540979117872439e-18,2.3852447794681098e-18,-1.452830911130576e-17,3.382710778154774e-17,1.8431436932253575e-18,-1.1492543028346347e-17,-5.204170427930421e-18,-1.8011856183980953e-17,0.03333333507180214,3.0,3.0,5.0,4.0,0.1582142859697342,-0.06916666775941849,-0.06916666775941849,-0.04809523746371269,-0.05666666850447655,0.008333333767950535,0.012500000186264515,0.008333333767950535,0.009999999776482582,0.008333333767950535,0.008333333767950535,0.009999999776482582,0.003968254197388887,0.006666666828095913,0.0055555556900799274,-0.06916666775941849,0.1525000035762787,0.012500000186264515,0.008333333767950535,0.009999999776482582,-0.05000000074505806,-0.012500000186264515,-0.008333333767950535,-0.009999999776482582,-2.7755575615628914e-17,-5.5336008971439524e-18,-6.661337998858429e-18,-7.496483947120036e-18,-4.440891999238953e-18,-1.2952602009105534e-17,-0.06916666775941849,0.012500000186264515,0.1525000035762787,0.008333333767950535,0.009999999776482582,-3.8302694217219e-17,-0.012500000186264515,1.7514035665665904e-20,-0.0,-0.05000000074505806,-0.008333333767950535,-0.009999999776482582,-7.896804622009974e-18,-4.549312216487503e-18,-1.2952602009105534e-17,-0.04809523746371269,0.008333333767950535,0.008333333767950535,0.047857142984867096,0.006666666828095913,-2.1966555407399e-17,-0.0,-0.004166666883975267,-0.0,-1.9190997184091618e-17,-0.004166666883975267,-2.9265331436682295e-33,-0.007936508394777775,-0.0033333334140479565,-1.0661948289677173e-32,-0.05666666850447655,0.009999999776482582,0.009999999776482582,0.006666666828095913,0.07666666805744171,-2.7200464632711927e-17,-0.0,-0.0,-0.006666666828095913,-2.386979542648756e-17,-1.0842021724855044e-19,-0.006666666828095913,-0.0,-0.004444444552063942,-0.01666666753590107,0.008333333767950535,-0.05000000074505806,-3.8302694217219e-17,-2.1966555407399e-17,-2.7200464632711927e-17,0.02500000037252903,-0.0,-3.851859888774472e-34,-0.0,1.3877787807814457e-17,2.775557602921922e-18,3.3306689994292145e-18,3.965082408057119e-18,2.2204459996194763e-18,6.476301004552767e-18,0.012500000186264515,-0.012500000186264515,-0.012500000186264515,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.008333333767950535,1.7514035665665904e-20,-0.004166666883975267,-0.0,-3.851859888774472e-34,-0.0,0.004166666883975267,-0.0,-0.0,-8.757017832832952e-21,-0.0,-2.168404344971009e-19,-0.0,0.0,0.009999999776482582,-0.009999999776482582,-0.0,-0.0,-0.006666666828095913,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-2.7755575615628914e-17,-0.05000000074505806,-1.9190997184091618e-17,-2.386979542648756e-17,1.3877787807814457e-17,-0.0,-0.0,-0.0,0.02500000037252903,1.3689843025519862e-33,1.8488928200801433e-33,3.965082408057119e-18,2.2204459996194763e-18,6.476301004552767e-18,0.008333333767950535,-5.5336008971439524e-18,-0.008333333767950535,-0.004166666883975267,-1.0842021724855044e-19,2.775557602921922e-18,-0.0,-8.757017832832952e-21,-0.0,1.3689843025519862e-33,0.004166666883975267,3.6977854105715463e-34,-1.668003404423358e-20,5.421010862427522e-20,7.1901384896575126e-34,0.009999999776482582,-6.661337998858429e-18,-0.009999999776482582,-2.9265331436682295e-33,-0.006666666828095913,3.3306689994292145e-18,-0.0,-0.0,-0.0,1.8488928200801433e-33,3.6977854105715463e-34,0.006666666828095913,5.282550848917912e-34,2.958228420292733e-34,8.628166187589015e-34,0.003968254197388887,-7.496483947120036e-18,-7.896804622009974e-18,-0.007936508394777775,-0.0,3.965082408057119e-18,-0.0,-2.168404344971009e-19,-0.0,3.965082408057119e-18,-1.668003404423358e-20,5.282550848917912e-34,0.0019841270986944437,-1.2462093890190076e-20,2.0543253352367157e-33,0.006666666828095913,-4.440891999238953e-18,-4.549312216487503e-18,-0.0033333334140479565,-0.004444444552063942,2.2204459996194763e-18,-0.0,-0.0,-0.0,2.2204459996194763e-18,5.421010862427522e-20,2.958228420292733e-34,-1.2462093890190076e-20,0.002222222276031971,1.150422158345202e-33,0.0055555556900799274,-1.2952602009105534e-17,-1.2952602009105534e-17,-1.0661948289677173e-32,-0.01666666753590107,6.476301004552767e-18,-0.0,0.0,-0.0,6.476301004552767e-18,7.1901384896575126e-34,8.628166187589015e-34,2.0543253352367157e-33,1.150422158345202e-33,0.0055555556900799274,3.0,3.0,5.0,5.0,0.13380952179431915,-0.05666666850447655,-0.05666666850447655,-0.03936507925391197,-0.03936507925391197,0.006666666828095913,0.009999999776482582,0.006666666828095913,0.006666666828095913,0.006666666828095913,0.006666666828095913,0.006666666828095913,0.0031746032182127237,0.004444444552063942,0.0031746032182127237,-0.05666666850447655,0.12333333492279053,0.009999999776482582,0.006666666828095913,0.006666666828095913,-0.03999999910593033,-0.009999999776482582,-0.006666666828095913,-0.006666666828095913,-2.2204460823375376e-17,-4.437703631567867e-18,-4.440891999238953e-18,-6.34478549101143e-18,-2.9605948040227372e-18,-6.566545995791996e-18,-0.05666666850447655,0.009999999776482582,0.12333333492279053,0.006666666828095913,0.006666666828095913,-3.108624482185328e-17,-0.009999999776482582,1.472162492675947e-33,3.188563359077238e-21,-0.03999999910593033,-0.006666666828095913,-0.006666666828095913,-6.3441316047372065e-18,-2.9605948040227372e-18,-6.338058031089536e-18,-0.03936507925391197,0.006666666828095913,0.006666666828095913,0.038730159401893616,0.004444444552063942,-1.7869303185936014e-17,-0.0,-0.0033333334140479565,1.1274998348331751e-33,-1.5648857599906844e-17,-0.0033333334140479565,-0.0,-0.0063492064364254475,-0.002222222276031971,-6.869268021146376e-34,-0.03936507925391197,0.006666666828095913,0.006666666828095913,0.004444444552063942,0.038730159401893616,-1.7869303185936014e-17,-0.0,-1.2295038141577743e-20,-0.0033333334140479565,-1.5648857599906844e-17,1.4804044960513e-20,-0.0033333334140479565,-0.0,-0.002222222276031971,-0.0063492064364254475,0.006666666828095913,-0.03999999910593033,-3.108624482185328e-17,-1.7869303185936014e-17,-1.7869303185936014e-17,0.019999999552965164,-0.0,-0.0,1.925141192269609e-34,1.1102230411687688e-17,2.2204459996194763e-18,2.2204459996194763e-18,3.1720658023686032e-18,1.4802974020113686e-18,3.1720658023686032e-18,0.009999999776482582,-0.009999999776482582,-0.009999999776482582,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.006666666828095913,1.472162492675947e-33,-0.0033333334140479565,-1.2295038141577743e-20,-0.0,-0.0,0.0033333334140479565,1.7169187784142954e-22,-5.7777898331617076e-34,-0.0,-1.5830228598067681e-34,-0.0,-0.0,2.7869760574119794e-21,0.006666666828095913,-0.006666666828095913,3.188563359077238e-21,1.1274998348331751e-33,-0.0033333334140479565,1.925141192269609e-34,-0.0,1.7169187784142954e-22,0.0033333334140479565,-5.7777898331617076e-34,-1.594281679538619e-21,-0.0,3.270321458652421e-22,-1.6192255603359502e-34,1.0842021724855044e-19,0.006666666828095913,-2.2204460823375376e-17,-0.03999999910593033,-1.5648857599906844e-17,-1.5648857599906844e-17,1.1102230411687688e-17,-0.0,-5.7777898331617076e-34,-5.7777898331617076e-34,0.019999999552965164,1.3481509610710651e-33,1.3481509610710651e-33,3.1720658023686032e-18,1.4802974020113686e-18,3.1720658023686032e-18,0.006666666828095913,-4.437703631567867e-18,-0.006666666828095913,-0.0033333334140479565,1.4804044960513e-20,2.2204459996194763e-18,-0.0,-0.0,-1.594281679538619e-21,1.3481509610710651e-33,0.0033333334140479565,8.821674713047812e-35,2.8335520915311635e-35,-0.0,-3.036727047111349e-21,0.006666666828095913,-4.440891999238953e-18,-0.006666666828095913,-0.0,-0.0033333334140479565,2.2204459996194763e-18,-0.0,-1.5830228598067681e-34,-0.0,1.3481509610710651e-33,8.821674713047812e-35,0.0033333334140479565,5.064188653545138e-35,-1.3473584551775327e-35,2.8335520915311635e-35,0.0031746032182127237,-6.34478549101143e-18,-6.3441316047372065e-18,-0.0063492064364254475,-0.0,3.1720658023686032e-18,-0.0,-0.0,3.270321458652421e-22,3.1720658023686032e-18,2.8335520915311635e-35,5.064188653545138e-35,0.0015873016091063619,3.77806955103686e-35,5.74140161231308e-23,0.004444444552063942,-2.9605948040227372e-18,-2.9605948040227372e-18,-0.002222222276031971,-0.002222222276031971,1.4802974020113686e-18,-0.0,-0.0,-1.6192255603359502e-34,1.4802974020113686e-18,-0.0,-1.3473584551775327e-35,3.77806955103686e-35,0.0011111111380159855,7.810164694024488e-35,0.0031746032182127237,-6.566545995791996e-18,-6.338058031089536e-18,-6.869268021146376e-34,-0.0063492064364254475,3.1720658023686032e-18,-0.0,2.7869760574119794e-21,1.0842021724855044e-19,3.1720658023686032e-18,-3.036727047111349e-21,2.8335520915311635e-35,5.74140161231308e-23,7.810164694024488e-35,0.0015873016091063619,3.0,3.0,5.0,6.0,0.1160052940249443,-0.04801587387919426,-0.04801587387919426,-0.03333333507180214,-0.02896825410425663,0.0055555556900799274,0.008333333767950535,0.0055555556900799274,0.004761904943734407,0.0055555556900799274,0.0055555556900799274,0.004761904943734407,0.0026455025654286146,0.0031746032182127237,0.0019841270986944437,-0.04801587387919426,0.10357142984867096,0.008333333767950535,0.0055555556900799274,0.004761904943734407,-0.03333333507180214,-0.008333333767950535,-0.0055555556900799274,-0.004761904943734407,-1.8503717628539684e-17,-3.705065213536281e-18,-3.243781327501185e-18,-5.284789931971677e-18,-2.2195563668706755e-18,-3.892423276640767e-18,-0.04801587387919426,0.008333333767950535,0.10357142984867096,0.0055555556900799274,0.004761904943734407,-2.6169542817842188e-17,-0.008333333767950535,-4.9410256602823465e-21,-7.122014088089058e-20,-0.03333333507180214,-0.0055555556900799274,-0.004761904943734407,-5.296187653632045e-18,-2.148591921734292e-18,-3.763099378132389e-18,-0.03333333507180214,0.0055555556900799274,0.0055555556900799274,0.03253968432545662,0.0031746032182127237,-1.5067313233335113e-17,-0.0,-0.0027777778450399637,5.718868665146994e-21,-1.3216940808736655e-17,-0.0027777778450399637,-5.421010862427522e-20,-0.005291005130857229,-0.0015873016091063619,8.935732465997021e-21,-0.02896825410425663,0.004761904943734407,0.004761904943734407,0.0031746032182127237,0.02250000089406967,-1.278739005254093e-17,-0.0,-1.0423697102041372e-19,-0.0019047618843615055,-1.1201357254754205e-17,-1.8363555001519265e-20,-0.0019047618843615055,-1.0842021724855044e-19,-0.0012698412174358964,-0.0029761905316263437,0.0055555556900799274,-0.03333333507180214,-2.6169542817842188e-17,-1.5067313233335113e-17,-1.278739005254093e-17,0.01666666753590107,-0.0,-0.0,2.0097429211896053e-34,9.251858814269842e-18,1.850371804212999e-18,1.5860329011843016e-18,2.6433882031063616e-18,1.05735530192206e-18,1.817329454259109e-18,0.008333333767950535,-0.008333333767950535,-0.008333333767950535,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0055555556900799274,-4.9410256602823465e-21,-0.0027777778450399637,-1.0423697102041372e-19,-0.0,-0.0,0.0027777778450399637,-4.1712778576746556e-22,3.851859888774472e-34,-0.0,1.9764101429439035e-21,-0.0,5.421010862427522e-20,-1.0582055337318393e-21,0.004761904943734407,-0.004761904943734407,-7.122014088089058e-20,5.718868665146994e-21,-0.0019047618843615055,2.0097429211896053e-34,-0.0,-4.1712778576746556e-22,0.0019047618843615055,3.851859888774472e-34,1.728753761963626e-21,2.710505431213761e-20,-7.945290917060782e-22,-1.4297171662867485e-21,1.0395234980386158e-19,0.0055555556900799274,-1.8503717628539684e-17,-0.03333333507180214,-1.3216940808736655e-17,-1.1201357254754205e-17,9.251858814269842e-18,-0.0,3.851859888774472e-34,3.851859888774472e-34,0.01666666753590107,7.693773074960071e-34,7.695618050077885e-34,2.6433882031063616e-18,1.05735530192206e-18,1.817329454259109e-18,0.0055555556900799274,-3.705065213536281e-18,-0.0055555556900799274,-0.0027777778450399637,-1.8363555001519265e-20,1.850371804212999e-18,-0.0,-0.0,1.728753761963626e-21,7.693773074960071e-34,0.0027777778450399637,1.9764101429439035e-21,2.3612933617783154e-35,-0.0,2.7011776773375186e-21,0.004761904943734407,-3.243781327501185e-18,-0.004761904943734407,-5.421010862427522e-20,-0.0019047618843615055,1.5860329011843016e-18,-0.0,1.9764101429439035e-21,2.710505431213761e-20,7.695618050077885e-34,1.9764101429439035e-21,0.0019047618843615055,3.764591056195461e-21,1.3552527156068805e-20,4.9215320667041547e-20,0.0026455025654286146,-5.284789931971677e-18,-5.296187653632045e-18,-0.005291005130857229,-1.0842021724855044e-19,2.6433882031063616e-18,-0.0,-0.0,-7.945290917060782e-22,2.6433882031063616e-18,2.3612933617783154e-35,3.764591056195461e-21,0.0013227512827143073,4.174801554187871e-20,-1.67256339910877e-20,0.0031746032182127237,-2.2195563668706755e-18,-2.148591921734292e-18,-0.0015873016091063619,-0.0012698412174358964,1.05735530192206e-18,-0.0,5.421010862427522e-20,-1.4297171662867485e-21,1.05735530192206e-18,-0.0,1.3552527156068805e-20,4.174801554187871e-20,0.0006349206087179482,2.487112058979318e-20,0.0019841270986944437,-3.892423276640767e-18,-3.763099378132389e-18,8.935732465997021e-21,-0.0029761905316263437,1.817329454259109e-18,-0.0,-1.0582055337318393e-21,1.0395234980386158e-19,1.817329454259109e-18,2.7011776773375186e-21,4.9215320667041547e-20,-1.67256339910877e-20,2.487112058979318e-20,0.0005952381179668009,3.0,3.0,5.0,7.0,0.10241874307394028,-0.0416666679084301,-0.0416666679084301,-0.028911564499139786,-0.02222222276031971,0.004761904943734407,0.0071428571827709675,0.004761904943734407,0.0035714285913854837,0.004761904943734407,0.004761904943734407,0.0035714285913854837,0.0022675737272948027,0.0023809524718672037,0.0013227512827143073,-0.0416666679084301,0.0892857164144516,0.0071428571827709675,0.004761904943734407,0.0035714285913854837,-0.02857142873108387,-0.0071428571827709675,-0.004761904943734407,-0.0035714285913854837,-1.5860329632228476e-17,-3.1720658023686032e-18,-2.3790494034752407e-18,-4.5315224566436314e-18,-1.5860329011843016e-18,-2.290936470264867e-18,-0.0416666679084301,0.0071428571827709675,0.0892857164144516,0.004761904943734407,0.0035714285913854837,-2.2600968195641445e-17,-0.0071428571827709675,-0.0,-3.851859888774472e-34,-0.02857142873108387,-0.004761904943734407,-0.0035714285913854837,-4.5315224566436314e-18,-1.5860329011843016e-18,-2.290936470264867e-18,-0.028911564499139786,0.004761904943734407,0.004761904943734407,0.02806122414767742,0.0023809524718672037,-1.3028127734934688e-17,-0.0,-0.0023809524718672037,1.1840200139024848e-34,-1.144209410996735e-17,-0.0023809524718672037,-8.867138678981417e-34,-0.004535147454589605,-0.0011904762359336019,-1.6281358993506793e-33,-0.02222222276031971,0.0035714285913854837,0.0035714285913854837,0.0023809524718672037,0.014285714365541935,-9.648367013716523e-18,-0.0,-0.0,-0.0011904762359336019,-8.45884241537648e-18,-1.0711839208661948e-33,-0.0011904762359336019,-2.8718629217924004e-33,-0.0007936508045531809,-0.0015873016091063619,0.004761904943734407,-0.02857142873108387,-2.2600968195641445e-17,-1.3028127734934688e-17,-9.648367013716523e-18,0.014285714365541935,-0.0,-0.0,0.0,7.930164816114238e-18,1.5860329011843016e-18,1.1895247017376204e-18,2.2657612283218157e-18,7.930164505921508e-19,1.1454682351324336e-18,0.0071428571827709675,-0.0071428571827709675,-0.0071428571827709675,-0.0,-0.0,-0.0,0.0071428571827709675,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.004761904943734407,-0.0,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0035714285913854837,-3.851859888774472e-34,1.1840200139024848e-34,-0.0011904762359336019,0.0,-0.0,-0.0,0.0011904762359336019,1.925929944387236e-34,0.0,-0.0,-0.0,-3.946733188350999e-35,1.2143795087970594e-35,0.004761904943734407,-1.5860329632228476e-17,-0.02857142873108387,-1.144209410996735e-17,-8.45884241537648e-18,7.930164816114238e-18,-0.0,-0.0,1.925929944387236e-34,0.014285714365541935,8.804251567922347e-34,6.7407548053553255e-34,2.2657612283218157e-18,7.930164505921508e-19,1.1454682351324336e-18,0.004761904943734407,-3.1720658023686032e-18,-0.004761904943734407,-0.0023809524718672037,-1.0711839208661948e-33,1.5860329011843016e-18,-0.0,-0.0,0.0,8.804251567922347e-34,0.0023809524718672037,1.320637712229478e-34,2.515500283985856e-34,8.804251223539237e-35,1.2717252086207704e-34,0.0035714285913854837,-2.3790494034752407e-18,-0.0035714285913854837,-8.867138678981417e-34,-0.0011904762359336019,1.1895247017376204e-18,-0.0,-0.0,-0.0,6.7407548053553255e-34,1.320637712229478e-34,0.0011904762359336019,1.8866252703865772e-34,-0.0,7.336876258770969e-36,0.0022675737272948027,-4.5315224566436314e-18,-4.5315224566436314e-18,-0.004535147454589605,-2.8718629217924004e-33,2.2657612283218157e-18,-0.0,-0.0,-0.0,2.2657612283218157e-18,2.515500283985856e-34,1.8866252703865772e-34,0.0011337868636474013,2.515500283985856e-34,3.6335005632609524e-34,0.0023809524718672037,-1.5860329011843016e-18,-1.5860329011843016e-18,-0.0011904762359336019,-0.0007936508045531809,7.930164505921508e-19,-0.0,-0.0,-3.946733188350999e-35,7.930164505921508e-19,8.804251223539237e-35,-0.0,2.515500283985856e-34,0.00039682540227659047,1.5854398265726837e-35,0.0013227512827143073,-2.290936470264867e-18,-2.290936470264867e-18,-1.6281358993506793e-33,-0.0015873016091063619,1.1454682351324336e-18,-0.0,-0.0,1.2143795087970594e-35,1.1454682351324336e-18,1.2717252086207704e-34,7.336876258770969e-36,3.6335005632609524e-34,1.5854398265726837e-35,0.00026455026818439364,3.0,3.0,5.0,8.0,0.09169973433017731,-0.03680555522441864,-0.03680555522441864,-0.025529099628329277,-0.017592592164874077,0.004166666883975267,0.0062500000931322575,0.004166666883975267,0.0027777778450399637,0.004166666883975267,0.004166666883975267,0.0027777778450399637,0.0019841270986944437,0.0018518518190830946,0.0009259259095415473,-0.03680555522441864,0.07847221940755844,0.0062500000931322575,0.004166666883975267,0.0027777778450399637,-0.02500000037252903,-0.0062500000931322575,-0.004166666883975267,-0.0027777778450399637,2.6020852139652106e-17,4.336808689942018e-19,6.5052130349130266e-18,4.336808689942018e-18,3.903127820947816e-18,8.673617379884035e-18,-0.03680555522441864,0.0062500000931322575,0.07847221940755844,0.004166666883975267,0.0027777778450399637,2.8100777937581993e-17,-0.0062500000931322575,1.734723475976807e-18,3.7947076036992655e-19,-0.02500000037252903,-0.004166666883975267,-0.0027777778450399637,3.0357660829594124e-18,2.168404344971009e-18,9.053088140253962e-18,-0.025529099628329277,0.004166666883975267,0.004166666883975267,0.024669311940670013,0.0018518518190830946,1.0686737590002302e-17,3.6333602349565096e-18,-0.0020833334419876337,-1.0842021724855044e-19,2.3291197477257743e-18,-0.0020833334419876337,1.463672932855431e-18,-0.003968254197388887,-0.0009259259095415473,6.0173220572945496e-18,-0.017592592164874077,0.0027777778450399637,0.0027777778450399637,0.0018518518190830946,0.009656084701418877,1.452830911130576e-17,1.2825221157856043e-17,8.573339101404844e-18,-0.0007936508045531809,1.8367290730111313e-17,7.30006660194687e-18,-0.0007936508045531809,8.628655977688716e-18,-0.0005291005363687873,-0.0009259259095415473,0.004166666883975267,-0.02500000037252903,2.8100777937581993e-17,1.0686737590002302e-17,1.452830911130576e-17,0.012500000186264515,-6.168746464011543e-19,-7.443776101885734e-19,4.1299696962312955e-18,-9.607161838682807e-18,-4.252127108707667e-19,-1.89359695430257e-18,-1.2411291914323535e-18,-1.1746201478703336e-18,-1.951563910473908e-18,0.0062500000931322575,-0.0062500000931322575,-0.0062500000931322575,3.6333602349565096e-18,1.2825221157856043e-17,-6.168746464011543e-19,0.0062500000931322575,-1.0842021724855044e-19,-5.877818770770517e-19,-4.9854651147423196e-18,1.4215920837457505e-19,-1.3467854880616346e-18,-5.642922224272303e-19,-3.8119067565857743e-19,-1.3552527156068805e-18,0.004166666883975267,-0.004166666883975267,1.734723475976807e-18,-0.0020833334419876337,8.573339101404844e-18,-7.443776101885734e-19,-1.0842021724855044e-19,0.0020833334419876337,-3.20023383546666e-19,1.2795787435023204e-19,5.223526661059315e-20,-5.373541035024635e-19,-6.735086527141513e-19,-6.257974436687638e-19,-8.673617379884035e-19,0.0027777778450399637,-0.0027777778450399637,3.7947076036992655e-19,-1.0842021724855044e-19,-0.0007936508045531809,4.1299696962312955e-18,-5.877818770770517e-19,-3.20023383546666e-19,0.0007936508045531809,1.0842021724855044e-19,2.1552387315464617e-19,-5.609040647888189e-20,2.3589898600305235e-20,1.469390230765987e-20,-2.710505431213761e-19,0.004166666883975267,2.6020852139652106e-17,-0.02500000037252903,2.3291197477257743e-18,1.8367290730111313e-17,-9.607161838682807e-18,-4.9854651147423196e-18,1.2795787435023204e-19,1.0842021724855044e-19,0.012500000186264515,5.455699198402816e-19,-1.9936044086793323e-19,-2.533860494415179e-19,-7.193787645111489e-19,-2.168404344971009e-18,0.004166666883975267,4.336808689942018e-19,-0.004166666883975267,-0.0020833334419876337,7.30006660194687e-18,-4.252127108707667e-19,1.4215920837457505e-19,5.223526661059315e-20,2.1552387315464617e-19,5.455699198402816e-19,0.0020833334419876337,-4.87890977618477e-19,-6.765568132714092e-19,-2.0194883117627944e-19,-9.75781955236954e-19,0.0027777778450399637,6.5052130349130266e-18,-0.0027777778450399637,1.463672932855431e-18,-0.0007936508045531809,-1.89359695430257e-18,-1.3467854880616346e-18,-5.373541035024635e-19,-5.609040647888189e-20,-1.9936044086793323e-19,-4.87890977618477e-19,0.0007936508045531809,-1.0523138428837024e-19,-8.769282562559898e-21,-3.5236570605778894e-19,0.0019841270986944437,4.336808689942018e-18,3.0357660829594124e-18,-0.003968254197388887,8.628655977688716e-18,-1.2411291914323535e-18,-5.642922224272303e-19,-6.735086527141513e-19,2.3589898600305235e-20,-2.533860494415179e-19,-6.765568132714092e-19,-1.0523138428837024e-19,0.0009920635493472219,-1.1587410718438829e-18,-7.860465750519907e-19,0.0018518518190830946,3.903127820947816e-18,2.168404344971009e-18,-0.0009259259095415473,-0.0005291005363687873,-1.1746201478703336e-18,-3.8119067565857743e-19,-6.257974436687638e-19,1.469390230765987e-20,-7.193787645111489e-19,-2.0194883117627944e-19,-8.769282562559898e-21,-1.1587410718438829e-18,0.00026455026818439364,-1.8973538018496328e-19,0.0009259259095415473,8.673617379884035e-18,9.053088140253962e-18,6.0173220572945496e-18,-0.0009259259095415473,-1.951563910473908e-18,-1.3552527156068805e-18,-8.673617379884035e-19,-2.710505431213761e-19,-2.168404344971009e-18,-9.75781955236954e-19,-3.5236570605778894e-19,-7.860465750519907e-19,-1.8973538018496328e-19,0.00013227513409219682,3.0,3.0,6.0,3.0,0.1686507910490036,-0.075396828353405,-0.075396828353405,-0.0456349216401577,-0.075396828353405,0.009259259328246117,0.013888888992369175,0.007936508394777775,0.013888888992369175,0.009259259328246117,0.007936508394777775,0.013888888992369175,0.003306878264993429,0.007936508394777775,0.009259259328246117,-0.075396828353405,0.16798941791057587,0.013888888992369175,0.007936508394777775,0.013888888992369175,-0.0555555559694767,-0.013888888992369175,-0.007936508394777775,-0.013888888992369175,1.0408340855860843e-17,6.071532165918825e-18,6.938893903907228e-18,-3.469446951953614e-18,3.469446951953614e-18,0.0,-0.075396828353405,0.013888888992369175,0.16798941791057587,0.007936508394777775,0.013888888992369175,-1.4829503770309793e-17,-0.013888888992369175,9.86623976961809e-18,1.734723475976807e-17,-0.0555555559694767,-0.007936508394777775,-0.013888888992369175,4.336808689942018e-19,1.1709383462843448e-17,-1.0408340855860843e-17,-0.0456349216401577,0.007936508394777775,0.007936508394777775,0.03644179925322533,0.007936508394777775,-1.5178830414797062e-18,-4.008319552265572e-18,-0.0031746032182127237,-2.6020852139652106e-18,2.663464827830728e-17,-0.0031746032182127237,2.6020852139652106e-18,-0.004960317630320787,-0.0031746032182127237,3.469446951953614e-17,-0.075396828353405,0.013888888992369175,0.013888888992369175,0.007936508394777775,0.16798941791057587,-1.6046192152785466e-17,2.5819514724195474e-17,1.0193048903470441e-17,-0.013888888992369175,3.83039920636001e-18,1.0066003887549647e-17,-0.013888888992369175,4.336808689942018e-18,-0.007936508394777775,-0.0555555559694767,0.009259259328246117,-0.0555555559694767,-1.4829503770309793e-17,-1.5178830414797062e-18,-1.6046192152785466e-17,0.02777777798473835,8.36758785019963e-18,7.556655546418981e-18,7.779309406261104e-18,4.958209513558697e-18,-2.127527767435629e-18,9.966917369537991e-19,8.673617379884035e-19,-1.951563910473908e-18,5.854691731421724e-18,0.013888888992369175,-0.013888888992369175,-0.013888888992369175,-4.008319552265572e-18,2.5819514724195474e-17,8.36758785019963e-18,0.013888888992369175,2.168404344971009e-19,-2.700225023765799e-18,-3.262747338176107e-18,-1.742454538626275e-19,-4.4142543019729075e-18,6.505213034913027e-19,-6.505213034913027e-19,-8.023096076392733e-18,0.007936508394777775,-0.007936508394777775,9.86623976961809e-18,-0.0031746032182127237,1.0193048903470441e-17,7.556655546418981e-18,2.168404344971009e-19,0.0031746032182127237,-3.0389757505312713e-19,-3.7393654984067115e-18,-4.655268055896105e-19,-1.2980592767058563e-18,2.168404344971009e-19,-2.168404344971009e-19,-3.903127820947816e-18,0.013888888992369175,-0.013888888992369175,1.734723475976807e-17,-2.6020852139652106e-18,-0.013888888992369175,7.779309406261104e-18,-2.700225023765799e-18,-3.0389757505312713e-19,0.013888888992369175,-5.854691731421724e-18,-8.468080575252625e-19,-7.137233823619121e-19,4.336808689942018e-19,1.951563910473908e-18,1.0625181290357943e-17,0.009259259328246117,1.0408340855860843e-17,-0.0555555559694767,2.663464827830728e-17,3.83039920636001e-18,4.958209513558697e-18,-3.262747338176107e-18,-3.7393654984067115e-18,-5.854691731421724e-18,0.02777777798473835,-6.353680991318825e-18,-1.36688444666254e-17,-1.3010426069826053e-18,-4.87890977618477e-18,1.5070410197548512e-17,0.007936508394777775,6.071532165918825e-18,-0.007936508394777775,-0.0031746032182127237,1.0066003887549647e-17,-2.127527767435629e-18,-1.742454538626275e-19,-4.655268055896105e-19,-8.468080575252625e-19,-6.353680991318825e-18,0.0031746032182127237,-2.0599841277224584e-18,0.0,-4.336808689942018e-19,-2.8189256484623115e-18,0.013888888992369175,6.938893903907228e-18,-0.013888888992369175,2.6020852139652106e-18,-0.013888888992369175,9.966917369537991e-19,-4.4142543019729075e-18,-1.2980592767058563e-18,-7.137233823619121e-19,-1.36688444666254e-17,-2.0599841277224584e-18,0.013888888992369175,-2.168404344971009e-19,1.0842021724855044e-19,-9.75781955236954e-19,0.003306878264993429,-3.469446951953614e-18,4.336808689942018e-19,-0.004960317630320787,4.336808689942018e-18,8.673617379884035e-19,6.505213034913027e-19,2.168404344971009e-19,4.336808689942018e-19,-1.3010426069826053e-18,0.0,-2.168404344971009e-19,0.0009920635493472219,-2.168404344971009e-19,-3.0357660829594124e-18,0.007936508394777775,3.469446951953614e-18,1.1709383462843448e-17,-0.0031746032182127237,-0.007936508394777775,-1.951563910473908e-18,-6.505213034913027e-19,-2.168404344971009e-19,1.951563910473908e-18,-4.87890977618477e-18,-4.336808689942018e-19,1.0842021724855044e-19,-2.168404344971009e-19,0.0031746032182127237,-6.478657228527624e-18,0.009259259328246117,0.0,-1.0408340855860843e-17,3.469446951953614e-17,-0.0555555559694767,5.854691731421724e-18,-8.023096076392733e-18,-3.903127820947816e-18,1.0625181290357943e-17,1.5070410197548512e-17,-2.8189256484623115e-18,-9.75781955236954e-19,-3.0357660829594124e-18,-6.478657228527624e-18,0.02777777798473835,3.0,3.0,6.0,4.0,0.1373346596956253,-0.05863095074892044,-0.05863095074892044,-0.03541666641831398,-0.04801587387919426,0.0069444444961845875,0.010416666977107525,0.0059523810632526875,0.008333333767950535,0.0069444444961845875,0.0059523810632526875,0.008333333767950535,0.0024801588151603937,0.004761904943734407,0.004629629664123058,-0.05863095074892044,0.12807539105415344,0.010416666977107525,0.0059523810632526875,0.008333333767950535,-0.0416666679084301,-0.010416666977107525,-0.0059523810632526875,-0.008333333767950535,4.625929158980737e-17,7.930164816114238e-18,1.1102230411687688e-17,9.086646857705238e-18,6.2763689689568625e-18,2.158767029090276e-17,-0.05863095074892044,0.010416666977107525,0.12807539105415344,0.0059523810632526875,0.008333333767950535,7.683448437689069e-17,-0.010416666977107525,-1.5526847740622353e-32,-2.4264081253197453e-32,-0.0416666679084301,-0.0059523810632526875,-0.008333333767950535,9.357697400826614e-18,6.3441316047372065e-18,2.158767029090276e-17,-0.03541666641831398,0.0059523810632526875,0.0059523810632526875,0.027807539328932762,0.004761904943734407,3.707902608473461e-17,-2.1955194351095517e-32,-0.0023809524718672037,-1.1709436448482698e-32,3.311394243590657e-17,-0.0023809524718672037,-2.033711315287719e-32,-0.0037202381063252687,-0.0019047618843615055,6.7959517173840836e-18,-0.04801587387919426,0.008333333767950535,0.008333333767950535,0.004761904943734407,0.06441798806190491,5.244188433349002e-17,-3.1051832322698653e-32,-6.776263578034403e-20,-0.0055555556900799274,4.6890767886875254e-17,-1.9111773433476223e-32,-0.0055555556900799274,6.830473686658678e-18,-0.0031746032182127237,-0.013888888992369175,0.0069444444961845875,-0.0416666679084301,7.683448437689069e-17,3.707902608473461e-17,5.244188433349002e-17,0.02083333395421505,-1.2335811476632919e-17,-5.6392281390542176e-18,-6.579099288768101e-18,-2.3129645794903686e-17,-3.965082408057119e-18,-5.551115205843844e-18,-4.543323428852619e-18,-3.1720658023686032e-18,-1.079383514545138e-17,0.010416666977107525,-0.010416666977107525,-0.010416666977107525,-2.1955194351095517e-32,-3.1051832322698653e-32,-1.2335811476632919e-17,0.010416666977107525,3.3390938245824354e-33,3.8956095844601695e-33,1.3695502479806094e-32,2.347800356888962e-33,3.286920609847142e-33,2.6901878821499158e-33,1.878240322245368e-33,6.391234049765796e-33,0.0059523810632526875,-0.0059523810632526875,-1.5526847740622353e-32,-0.0023809524718672037,-6.776263578034403e-20,-5.6392281390542176e-18,3.3390938245824354e-33,0.0023809524718672037,1.7808500642667645e-33,5.7777898331617076e-33,-6.486858127482289e-34,1.5025921843278974e-33,9.669190642750704e-35,2.710505431213761e-20,2.9851914138002156e-33,0.008333333767950535,-0.008333333767950535,-2.4264081253197453e-32,-1.1709436448482698e-32,-0.0055555556900799274,-6.579099288768101e-18,3.8956095844601695e-33,1.7808500642667645e-33,0.0055555556900799274,7.304267695356329e-33,1.2521601842184133e-33,1.7530242762728778e-33,1.4347668949694207e-33,1.0017280922734329e-33,3.40865811089616e-33,0.0069444444961845875,4.625929158980737e-17,-0.0416666679084301,3.311394243590657e-17,4.6890767886875254e-17,-2.3129645794903686e-17,1.3695502479806094e-32,5.7777898331617076e-33,7.304267695356329e-33,0.02083333395421505,-5.6392281390542176e-18,-6.579099288768101e-18,-4.543323428852619e-18,-3.1720658023686032e-18,-1.079383514545138e-17,0.0059523810632526875,7.930164816114238e-18,-0.0059523810632526875,-0.0023809524718672037,-1.9111773433476223e-32,-3.965082408057119e-18,2.347800356888962e-33,-6.486858127482289e-34,1.2521601842184133e-33,-5.6392281390542176e-18,0.0023809524718672037,2.8373601422148508e-33,-1.0842021724855044e-19,-0.0,5.007417855406813e-33,0.008333333767950535,1.1102230411687688e-17,-0.008333333767950535,-2.033711315287719e-32,-0.0055555556900799274,-5.551115205843844e-18,3.286920609847142e-33,1.5025921843278974e-33,1.7530242762728778e-33,-6.579099288768101e-18,2.8373601422148508e-33,0.0055555556900799274,2.6453514052026844e-33,1.8469361729990012e-33,6.284713690430157e-33,0.0024801588151603937,9.086646857705238e-18,9.357697400826614e-18,-0.0037202381063252687,6.830473686658678e-18,-4.543323428852619e-18,2.6901878821499158e-33,9.669190642750704e-35,1.4347668949694207e-33,-4.543323428852619e-18,-1.0842021724855044e-19,2.6453514052026844e-33,0.0007440476329065859,-8.181464043966649e-19,-1.5419764345791148e-18,0.004761904943734407,6.2763689689568625e-18,6.3441316047372065e-18,-0.0019047618843615055,-0.0031746032182127237,-3.1720658023686032e-18,1.878240322245368e-33,2.710505431213761e-20,1.0017280922734329e-33,-3.1720658023686032e-18,-0.0,1.8469361729990012e-33,-8.181464043966649e-19,0.0012698412174358964,6.092870737385702e-19,0.004629629664123058,2.158767029090276e-17,2.158767029090276e-17,6.7959517173840836e-18,-0.013888888992369175,-1.079383514545138e-17,6.391234049765796e-33,2.9851914138002156e-33,3.40865811089616e-33,-1.079383514545138e-17,5.007417855406813e-33,6.284713690430157e-33,-1.5419764345791148e-18,6.092870737385702e-19,0.004629629664123058,3.0,3.0,6.0,5.0,0.1160052940249443,-0.04801587387919426,-0.04801587387919426,-0.02896825410425663,-0.03333333507180214,0.0055555556900799274,0.008333333767950535,0.004761904943734407,0.0055555556900799274,0.0055555556900799274,0.004761904943734407,0.0055555556900799274,0.0019841270986944437,0.0031746032182127237,0.0026455025654286146,-0.04801587387919426,0.10357142984867096,0.008333333767950535,0.004761904943734407,0.0055555556900799274,-0.03333333507180214,-0.008333333767950535,-0.004761904943734407,-0.0055555556900799274,-1.8503717628539684e-17,-3.0331803163645717e-18,-3.712300975944589e-18,-3.78282970369331e-18,-2.1927315199910403e-18,-5.2511741390581345e-18,-0.04801587387919426,0.008333333767950535,0.10357142984867096,0.004761904943734407,0.0055555556900799274,-2.6169542817842188e-17,-0.008333333767950535,1.262791888452381e-19,4.200255937275917e-21,-0.03333333507180214,-0.004761904943734407,-0.0055555556900799274,-3.4030291050541282e-18,-2.174685127362124e-18,-5.27877591532811e-18,-0.02896825410425663,0.004761904943734407,0.004761904943734407,0.02250000089406967,0.0031746032182127237,-1.278739005254093e-17,-0.0,-0.0019047618843615055,-1.1469944867601705e-19,-1.1201357254754205e-17,-0.0019047618843615055,-1.0842021724855044e-19,-0.0029761905316263437,-0.0012698412174358964,-7.394789535432154e-18,-0.03333333507180214,0.0055555556900799274,0.0055555556900799274,0.0031746032182127237,0.03253968432545662,-1.5067313233335113e-17,-0.0,-2.474262486709903e-20,-0.0027777778450399637,-1.3216940808736655e-17,1.0977907304658333e-20,-0.0027777778450399637,-7.697835424647081e-18,-0.0015873016091063619,-0.005291005130857229,0.0055555556900799274,-0.03333333507180214,-2.6169542817842188e-17,-1.278739005254093e-17,-1.5067313233335113e-17,0.01666666753590107,-0.0,1.925929944387236e-34,-2.6010610624716675e-35,9.251858814269842e-18,1.5860329011843016e-18,1.850371804212999e-18,1.817329454259109e-18,1.05735530192206e-18,2.6433882031063616e-18,0.008333333767950535,-0.008333333767950535,-0.008333333767950535,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.004761904943734407,1.262791888452381e-19,-0.0019047618843615055,-2.474262486709903e-20,1.925929944387236e-34,-0.0,0.0019047618843615055,4.046608754081326e-21,-0.0,-5.421010862427522e-20,4.623043781105681e-21,5.421010862427522e-20,-0.0,3.6949362286080304e-21,0.0055555556900799274,-0.0055555556900799274,4.200255937275917e-21,-1.1469944867601705e-19,-0.0027777778450399637,-2.6010610624716675e-35,-0.0,4.046608754081326e-21,0.0027777778450399637,-0.0,-1.6801023749103667e-21,8.330187101202348e-37,6.322826430687561e-21,3.9010535621642627e-20,-2.241984839267471e-20,0.0055555556900799274,-1.8503717628539684e-17,-0.03333333507180214,-1.1201357254754205e-17,-1.3216940808736655e-17,9.251858814269842e-18,-0.0,-0.0,-0.0,0.01666666753590107,5.7588386601745445e-34,9.606384117339514e-34,1.817329454259109e-18,1.05735530192206e-18,2.6433882031063616e-18,0.004761904943734407,-3.0331803163645717e-18,-0.004761904943734407,-0.0019047618843615055,1.0977907304658333e-20,1.5860329011843016e-18,-0.0,-5.421010862427522e-20,-1.6801023749103667e-21,5.7588386601745445e-34,0.0019047618843615055,4.623043781105681e-21,-9.843064133408309e-20,-0.0,-3.2001949805960897e-21,0.0055555556900799274,-3.712300975944589e-18,-0.0055555556900799274,-1.0842021724855044e-19,-0.0027777778450399637,1.850371804212999e-18,-0.0,4.623043781105681e-21,8.330187101202348e-37,9.606384117339514e-34,4.623043781105681e-21,0.0027777778450399637,7.223505756516333e-21,2.998728437722194e-20,2.307355074546584e-35,0.0019841270986944437,-3.78282970369331e-18,-3.4030291050541282e-18,-0.0029761905316263437,-7.697835424647081e-18,1.817329454259109e-18,-0.0,5.421010862427522e-20,6.322826430687561e-21,1.817329454259109e-18,-9.843064133408309e-20,7.223505756516333e-21,0.0005952381179668009,6.776263578034403e-19,1.5095427861584872e-18,0.0031746032182127237,-2.1927315199910403e-18,-2.174685127362124e-18,-0.0012698412174358964,-0.0015873016091063619,1.05735530192206e-18,-0.0,-0.0,3.9010535621642627e-20,1.05735530192206e-18,-0.0,2.998728437722194e-20,6.776263578034403e-19,0.0006349206087179482,-7.650386690349815e-20,0.0026455025654286146,-5.2511741390581345e-18,-5.27877591532811e-18,-7.394789535432154e-18,-0.005291005130857229,2.6433882031063616e-18,-0.0,3.6949362286080304e-21,-2.241984839267471e-20,2.6433882031063616e-18,-3.2001949805960897e-21,2.307355074546584e-35,1.5095427861584872e-18,-7.650386690349815e-20,0.0013227512827143073,3.0,3.0,6.0,6.0,0.10048186033964157,-0.0406746044754982,-0.0406746044754982,-0.02451813966035843,-0.02451813966035843,0.004629629664123058,0.0069444444961845875,0.003968254197388887,0.003968254197388887,0.004629629664123058,0.003968254197388887,0.003968254197388887,0.0016534391324967146,0.0022675737272948027,0.0016534391324967146,-0.0406746044754982,0.08697090297937393,0.0069444444961845875,0.003968254197388887,0.003968254197388887,-0.02777777798473835,-0.0069444444961845875,-0.003968254197388887,-0.003968254197388887,3.0839529932353215e-17,5.259473242143879e-18,5.3041827678426765e-18,6.066713011670091e-18,2.580391575220395e-18,6.096648678038385e-18,-0.0406746044754982,0.0069444444961845875,0.08697090297937393,0.003968254197388887,0.003968254197388887,4.9539052792412777e-17,-0.0069444444961845875,-2.3548789985683337e-20,1.365241244620885e-20,-0.02777777798473835,-0.003968254197388887,-0.003968254197388887,6.003810475578802e-18,2.5753575608075503e-18,6.079096319030316e-18,-0.02451813966035843,0.003968254197388887,0.003968254197388887,0.018901171162724495,0.0022675737272948027,2.6576715856926516e-17,-1.0491051247534782e-32,-0.0015873016091063619,-3.118033537576027e-19,2.3933327860615307e-17,-0.0015873016091063619,-2.710505431213761e-19,-0.0024801588151603937,-0.0009070294909179211,2.0730570969183996e-18,-0.02451813966035843,0.003968254197388887,0.003968254197388887,0.0022675737272948027,0.018901171162724495,2.6576715856926516e-17,-1.0491051247534782e-32,-5.2785270632107025e-20,-0.0015873016091063619,2.3933327860615307e-17,-4.2915897631575554e-20,-0.0015873016091063619,2.8189256484623115e-18,-0.0009070294909179211,-0.0024801588151603937,0.004629629664123058,-0.02777777798473835,4.9539052792412777e-17,2.6576715856926516e-17,2.6576715856926516e-17,0.013888888992369175,-5.482582878503519e-18,-5.012647096851425e-18,-5.012647096851425e-18,-1.5419764966176608e-17,-2.6433882031063616e-18,-2.6433882031063616e-18,-3.028882285901746e-18,-1.5105074855478771e-18,-3.028882285901746e-18,0.0069444444961845875,-0.0069444444961845875,-0.0069444444961845875,-1.0491051247534782e-32,-1.0491051247534782e-32,-5.482582878503519e-18,0.0069444444961845875,1.9787223140376264e-33,1.9787223140376264e-33,6.0868897461302744e-33,1.043466774264263e-33,1.043466774264263e-33,1.1956390179175198e-33,5.962667543897206e-34,1.1956390179175198e-33,0.003968254197388887,-0.003968254197388887,-2.3548789985683337e-20,-0.0015873016091063619,-5.2785270632107025e-20,-5.012647096851425e-18,1.9787223140376264e-33,0.0015873016091063619,-2.290840759651881e-21,5.007417855406813e-33,1.6382176322293466e-20,-6.962659520226564e-21,8.594835871790915e-35,4.0657581468206416e-20,-7.29825251085301e-21,0.003968254197388887,-0.003968254197388887,1.365241244620885e-20,-3.118033537576027e-19,-0.0015873016091063619,-5.012647096851425e-18,1.9787223140376264e-33,-2.290840759651881e-21,0.0015873016091063619,5.007417855406813e-33,-5.460964816924827e-21,-5.760815419229345e-34,-3.579438712199613e-21,1.3559183375060443e-19,-8.255414378469802e-21,0.004629629664123058,3.0839529932353215e-17,-0.02777777798473835,2.3933327860615307e-17,2.3933327860615307e-17,-1.5419764966176608e-17,6.0868897461302744e-33,5.007417855406813e-33,5.007417855406813e-33,0.013888888992369175,-5.012647096851425e-18,-5.012647096851425e-18,-3.028882285901746e-18,-1.5105074855478771e-18,-3.028882285901746e-18,0.003968254197388887,5.259473242143879e-18,-0.003968254197388887,-0.0015873016091063619,-4.2915897631575554e-20,-2.6433882031063616e-18,1.043466774264263e-33,1.6382176322293466e-20,-5.460964816924827e-21,-5.012647096851425e-18,0.0015873016091063619,-6.962659520226564e-21,3.246082259621972e-20,4.0657581468206416e-20,-8.532757374983749e-21,0.003968254197388887,5.3041827678426765e-18,-0.003968254197388887,-2.710505431213761e-19,-0.0015873016091063619,-2.6433882031063616e-18,1.043466774264263e-33,-6.962659520226564e-21,-5.760815419229345e-34,-5.012647096851425e-18,-6.962659520226564e-21,0.0015873016091063619,-1.087915615668628e-20,1.376053723073175e-19,2.372542263004115e-34,0.0016534391324967146,6.066713011670091e-18,6.003810475578802e-18,-0.0024801588151603937,2.8189256484623115e-18,-3.028882285901746e-18,1.1956390179175198e-33,8.594835871790915e-35,-3.579438712199613e-21,-3.028882285901746e-18,3.246082259621972e-20,-1.087915615668628e-20,0.0004960317746736109,-2.31824811293499e-19,-4.345903023789155e-19,0.0022675737272948027,2.580391575220395e-18,2.5753575608075503e-18,-0.0009070294909179211,-0.0009070294909179211,-1.5105074855478771e-18,5.962667543897206e-34,4.0657581468206416e-20,1.3559183375060443e-19,-1.5105074855478771e-18,4.0657581468206416e-20,1.376053723073175e-19,-2.31824811293499e-19,0.00036281178472563624,4.661321402392859e-20,0.0016534391324967146,6.096648678038385e-18,6.079096319030316e-18,2.0730570969183996e-18,-0.0024801588151603937,-3.028882285901746e-18,1.1956390179175198e-33,-7.29825251085301e-21,-8.255414378469802e-21,-3.028882285901746e-18,-8.532757374983749e-21,2.372542263004115e-34,-4.345903023789155e-19,4.661321402392859e-20,0.0004960317746736109,3.0,3.0,6.0,7.0,0.08865582942962646,-0.03528911620378494,-0.03528911620378494,-0.021258503198623657,-0.018801964819431305,0.003968254197388887,0.0059523810632526875,0.003401360474526882,0.0029761905316263437,0.003968254197388887,0.003401360474526882,0.0029761905316263437,0.0014172336086630821,0.001700680237263441,0.001102292793802917,-0.03528911620378494,0.07497165352106094,0.0059523810632526875,0.003401360474526882,0.0029761905316263437,-0.02380952425301075,-0.0059523810632526875,-0.003401360474526882,-0.0029761905316263437,2.643388161747331e-17,4.471424476419204e-18,3.967027109677231e-18,4.917862952000811e-18,2.220759501071634e-18,3.7469788687646495e-18,-0.03528911620378494,0.0059523810632526875,0.07497165352106094,0.003401360474526882,0.0029761905316263437,4.2073929743856463e-17,-0.0059523810632526875,-5.470566089702838e-20,-2.548552151056723e-21,-0.02380952425301075,-0.003401360474526882,-0.0029761905316263437,5.089732885315854e-18,2.2237268047240148e-18,3.814829185689924e-18,-0.021258503198623657,0.003401360474526882,0.003401360474526882,0.016298186033964157,0.001700680237263441,2.23280879290051e-17,-7.554791255455483e-33,-0.0013605442363768816,-1.9129133276656966e-20,2.006232773465905e-17,-0.0013605442363768816,-0.0,-0.002125850412994623,-0.0006802721181884408,1.4960838338092134e-18,-0.018801964819431305,0.0029761905316263437,0.0029761905316263437,0.001700680237263441,0.01199924387037754,1.8954770944758725e-17,-6.413416362849782e-33,-1.8787885731061897e-20,-0.0009920635493472219,1.697223077470593e-17,-4.295768640838082e-20,-0.0009920635493472219,1.6263032587282567e-18,-0.0005668934318237007,-0.0013227512827143073,0.003968254197388887,-0.02380952425301075,4.2073929743856463e-17,2.23280879290051e-17,1.8954770944758725e-17,0.011904762126505375,-4.028020099324441e-18,-3.6827611154994015e-18,-2.6853467328829607e-18,-1.3216940808736655e-17,-2.2657612283218157e-18,-1.9825412040285595e-18,-2.5961847278607168e-18,-1.1328806141609079e-18,-1.909113621823146e-18,0.0059523810632526875,-0.0059523810632526875,-0.0059523810632526875,-7.554791255455483e-33,-6.413416362849782e-33,-4.028020099324441e-18,0.0059523810632526875,1.2460758070914579e-33,9.085969809356448e-34,4.4720007497584006e-33,7.666286710959985e-34,6.708000757295616e-34,8.7842865310576e-34,3.8331433554799923e-34,6.4595563528294796e-34,0.003401360474526882,-0.003401360474526882,-5.470566089702838e-20,-0.0013605442363768816,-1.8787885731061897e-20,-3.6827611154994015e-18,1.2460758070914579e-33,0.0013605442363768816,7.373280680273571e-22,4.4296388720906425e-33,2.2815903116199953e-20,-7.780319275851171e-22,1.0842021724855044e-19,1.3552527156068805e-20,-2.3158044081480065e-21,0.0029761905316263437,-0.0029761905316263437,-2.548552151056723e-21,-1.9129133276656966e-20,-0.0009920635493472219,-2.6853467328829607e-18,9.085969809356448e-34,7.373280680273571e-22,0.0009920635493472219,3.0814879110195774e-33,1.01942084022785e-21,-2.672409264777698e-34,1.152075185178836e-21,3.706818468081027e-21,2.567935521202705e-20,0.003968254197388887,2.643388161747331e-17,-0.02380952425301075,2.006232773465905e-17,1.697223077470593e-17,-1.3216940808736655e-17,4.4720007497584006e-33,4.4296388720906425e-33,3.0814879110195774e-33,0.011904762126505375,-3.6827611154994015e-18,-2.6853467328829607e-18,-2.5961847278607168e-18,-1.1328806141609079e-18,-1.909113621823146e-18,0.003401360474526882,4.471424476419204e-18,-0.003401360474526882,-0.0013605442363768816,-4.295768640838082e-20,-2.2657612283218157e-18,7.666286710959985e-34,2.2815903116199953e-20,1.01942084022785e-21,-3.6827611154994015e-18,0.0013605442363768816,-7.780319275851171e-22,4.2513519500008255e-20,1.3552527156068805e-20,1.3592277869704667e-21,0.0029761905316263437,3.967027109677231e-18,-0.0029761905316263437,-0.0,-0.0009920635493472219,-1.9825412040285595e-18,6.708000757295616e-34,-7.780319275851171e-22,-2.672409264777698e-34,-2.6853467328829607e-18,-7.780319275851171e-22,0.0009920635493472219,-1.2156748931626327e-21,2.7177085668398997e-21,9.86820275469988e-35,0.0014172336086630821,4.917862952000811e-18,5.089732885315854e-18,-0.002125850412994623,1.6263032587282567e-18,-2.5961847278607168e-18,8.7842865310576e-34,1.0842021724855044e-19,1.152075185178836e-21,-2.5961847278607168e-18,4.2513519500008255e-20,-1.2156748931626327e-21,0.00042517005931586027,2.2110264739316802e-20,-2.630233756620084e-19,0.001700680237263441,2.220759501071634e-18,2.2237268047240148e-18,-0.0006802721181884408,-0.0005668934318237007,-1.1328806141609079e-18,3.8331433554799923e-34,1.3552527156068805e-20,3.706818468081027e-21,-1.1328806141609079e-18,1.3552527156068805e-20,2.7177085668398997e-21,2.2110264739316802e-20,0.00022675737272948027,-6.138403281944596e-20,0.001102292793802917,3.7469788687646495e-18,3.814829185689924e-18,1.4960838338092134e-18,-0.0013227512827143073,-1.909113621823146e-18,6.4595563528294796e-34,-2.3158044081480065e-21,2.567935521202705e-20,-1.909113621823146e-18,1.3592277869704667e-21,9.86820275469988e-35,-2.630233756620084e-19,-6.138403281944596e-20,0.00022045854711905122,3.0,3.0,6.0,8.0,0.07933752238750458,-0.031167328357696533,-0.031167328357696533,-0.018766533583402634,-0.014880952425301075,0.0034722222480922937,0.0052083334885537624,0.0029761905316263437,0.002314814832061529,0.0034722222480922937,0.0029761905316263437,0.002314814832061529,0.0012400794075801969,0.0013227512827143073,0.0007716049440205097,-0.031167328357696533,0.06588955223560333,0.0052083334885537624,0.0029761905316263437,0.002314814832061529,-0.02083333395421505,-0.0052083334885537624,-0.0029761905316263437,-0.002314814832061529,2.3129645794903686e-17,3.965082408057119e-18,3.0839528691582296e-18,4.543323428852619e-18,1.6983436590464187e-18,2.5910646866641667e-18,-0.031167328357696533,0.0052083334885537624,0.06588955223560333,0.0029761905316263437,0.002314814832061529,3.9650823253390577e-17,-0.0052083334885537624,-1.0732801211672986e-32,-5.043270433106893e-33,-0.02083333395421505,-0.0029761905316263437,-0.002314814832061529,4.543323428852619e-18,1.6911080000356876e-18,2.569960620900948e-18,-0.018766533583402634,0.0029761905316263437,0.0029761905316263437,0.014327050186693668,0.0013227512827143073,1.9244416508050293e-17,-1.1394983628114074e-32,-0.0011904762359336019,-6.391509563393312e-20,1.7261874683636274e-17,-0.0011904762359336019,-7.115076756936123e-20,-0.0018601190531626344,-0.0005291005363687873,8.408143068067032e-19,-0.014880952425301075,0.002314814832061529,0.002314814832061529,0.0013227512827143073,0.008109725080430508,1.4306115163884215e-17,-8.470921593976464e-33,-3.872421121680277e-33,-0.0006613756413571537,1.2764138005522065e-17,-6.177830397213702e-33,-0.0006613756413571537,1.7964749902457283e-18,-0.0003779289545491338,-0.0007716049440205097,0.0034722222480922937,-0.02083333395421505,3.9650823253390577e-17,1.9244416508050293e-17,1.4306115163884215e-17,0.010416666977107525,-6.167905738316459e-18,-2.8196140695271088e-18,-1.566452191916676e-18,-1.1564822897451843e-17,-1.9825412040285595e-18,-1.5419764345791148e-18,-2.2716617144263096e-18,-8.811294355013127e-19,-1.284980310450474e-18,0.0052083334885537624,-0.0052083334885537624,-0.0052083334885537624,-1.1394983628114074e-32,-8.470921593976464e-33,-6.167905738316459e-18,0.0052083334885537624,1.6695469122912177e-33,9.275260215682337e-34,6.847751239903047e-33,1.173900178444481e-33,9.130334619195412e-34,1.3450939410749579e-33,5.217333871321315e-34,7.608612182662843e-34,0.0029761905316263437,-0.0029761905316263437,-1.0732801211672986e-32,-0.0011904762359336019,-3.872421121680277e-33,-2.8196140695271088e-18,1.6695469122912177e-33,0.0011904762359336019,4.240119244366342e-34,3.1304005982992774e-33,5.366400789507485e-34,4.173867280728044e-34,6.149000847246809e-34,2.3850670175588824e-34,3.4782225808808766e-34,0.002314814832061529,-0.002314814832061529,-5.043270433106893e-33,-6.391509563393312e-20,-0.0006613756413571537,-1.566452191916676e-18,9.275260215682337e-34,4.240119244366342e-34,0.0006613756413571537,1.925929944387236e-33,2.981333771948603e-34,-1.3755683106957891e-34,3.2841232087986734e-34,1.8261456357005786e-20,-6.029726208959976e-21,0.0034722222480922937,2.3129645794903686e-17,-0.02083333395421505,1.7261874683636274e-17,1.2764138005522065e-17,-1.1564822897451843e-17,6.847751239903047e-33,3.1304005982992774e-33,1.925929944387236e-33,0.010416666977107525,-2.8196140695271088e-18,-1.566452191916676e-18,-2.2716617144263096e-18,-8.811294355013127e-19,-1.284980310450474e-18,0.0029761905316263437,3.965082408057119e-18,-0.0029761905316263437,-0.0011904762359336019,-6.177830397213702e-33,-1.9825412040285595e-18,1.173900178444481e-33,5.366400789507485e-34,2.981333771948603e-34,-2.8196140695271088e-18,0.0011904762359336019,7.174869460888804e-34,1.0472516824029184e-33,4.0620672068827865e-34,5.923848220493742e-34,0.002314814832061529,3.0839528691582296e-18,-0.002314814832061529,-7.115076756936123e-20,-0.0006613756413571537,-1.5419764345791148e-18,9.130334619195412e-34,4.173867280728044e-34,-1.3755683106957891e-34,-1.566452191916676e-18,7.174869460888804e-34,0.0006613756413571537,6.680569494593224e-34,2.0328790734103208e-20,4.7107497020737166e-35,0.0012400794075801969,4.543323428852619e-18,4.543323428852619e-18,-0.0018601190531626344,1.7964749902457283e-18,-2.2716617144263096e-18,1.3450939410749579e-33,6.149000847246809e-34,3.2841232087986734e-34,-2.2716617144263096e-18,1.0472516824029184e-33,6.680569494593224e-34,0.00037202381645329297,-2.045978383138893e-19,-1.8356861947140974e-19,0.0013227512827143073,1.6983436590464187e-18,1.6911080000356876e-18,-0.0005291005363687873,-0.0003779289545491338,-8.811294355013127e-19,5.217333871321315e-34,2.3850670175588824e-34,1.8261456357005786e-20,-8.811294355013127e-19,4.0620672068827865e-34,2.0328790734103208e-20,-2.045978383138893e-19,0.0001511715818196535,2.2008229102701545e-20,0.0007716049440205097,2.5910646866641667e-18,2.569960620900948e-18,8.408143068067032e-19,-0.0007716049440205097,-1.284980310450474e-18,7.608612182662843e-34,3.4782225808808766e-34,-6.029726208959976e-21,-1.284980310450474e-18,5.923848220493742e-34,4.7107497020737166e-35,-1.8356861947140974e-19,2.2008229102701545e-20,0.00011022927355952561,3.0,3.0,7.0,3.0,0.14925044775009155,-0.065476194024086,-0.065476194024086,-0.035052910447120667,-0.065476194024086,0.007936508394777775,0.011904762126505375,0.0059523810632526875,0.011904762126505375,0.007936508394777775,0.0059523810632526875,0.011904762126505375,0.002204585587605834,0.0059523810632526875,0.007936508394777775,-0.065476194024086,0.144841268658638,0.011904762126505375,0.0059523810632526875,0.011904762126505375,-0.0476190485060215,-0.011904762126505375,-0.0059523810632526875,-0.011904762126505375,-4.85722573273506e-17,-5.204170427930421e-18,-2.7755575615628914e-17,1.7780915628762273e-17,-4.336808689942018e-19,-2.7755575615628914e-17,-0.065476194024086,0.011904762126505375,0.144841268658638,0.0059523810632526875,0.011904762126505375,-9.303848273821657e-17,-0.011904762126505375,-9.215718466126788e-18,-2.6020852139652106e-18,-0.0476190485060215,-0.0059523810632526875,-0.011904762126505375,1.5395670849294163e-17,-4.336808689942018e-19,-1.734723475976807e-18,-0.035052910447120667,0.0059523810632526875,0.0059523810632526875,0.023148147389292717,0.0059523810632526875,1.4081618345637324e-17,2.6498638278907636e-17,-0.0019841270986944437,1.0408340855860843e-17,1.9729050048416536e-17,-0.0019841270986944437,9.540979117872439e-18,-0.0026455025654286146,-0.0019841270986944437,-1.0408340855860843e-17,-0.065476194024086,0.011904762126505375,0.011904762126505375,0.0059523810632526875,0.144841268658638,-7.502679033599691e-17,2.1091897936407878e-17,-1.7473379803182408e-17,-0.011904762126505375,-3.3986141526117183e-17,-3.3800905594874202e-18,-0.011904762126505375,2.168404344971009e-18,-0.0059523810632526875,-0.0476190485060215,0.007936508394777775,-0.0476190485060215,-9.303848273821657e-17,1.4081618345637324e-17,-7.502679033599691e-17,0.02380952425301075,2.2783493869607396e-17,5.036294122612784e-18,2.2857518262624766e-17,1.8965348930432053e-17,4.299976405216563e-18,1.4474997320826717e-17,-4.9873299934333204e-18,3.469446951953614e-18,1.1275702593849246e-17,0.011904762126505375,-0.011904762126505375,-0.011904762126505375,2.6498638278907636e-17,2.1091897936407878e-17,2.2783493869607396e-17,0.011904762126505375,-1.0842021724855044e-18,-1.936566505582862e-18,-9.45883263842041e-18,-2.450985372241068e-18,-3.1681941835115488e-18,-3.0357660829594124e-18,-2.8189256484623115e-18,-3.2526065174565133e-18,0.0059523810632526875,-0.0059523810632526875,-9.215718466126788e-18,-0.0019841270986944437,-1.7473379803182408e-17,5.036294122612784e-18,-1.0842021724855044e-18,0.0019841270986944437,2.474597036031241e-18,4.464761536585089e-18,-5.1359166019625856e-20,1.4832616037364524e-18,-8.673617379884035e-19,5.421010862427522e-20,6.288372600415926e-18,0.011904762126505375,-0.011904762126505375,-2.6020852139652106e-18,1.0408340855860843e-17,-0.011904762126505375,2.2857518262624766e-17,-1.936566505582862e-18,2.474597036031241e-18,0.011904762126505375,4.336808689942018e-18,-7.976834553069633e-19,-1.4925766914095652e-18,-1.1926223897340549e-18,-2.3852447794681098e-18,-1.1926223897340549e-17,0.007936508394777775,-4.85722573273506e-17,-0.0476190485060215,1.9729050048416536e-17,-3.3986141526117183e-17,1.8965348930432053e-17,-9.45883263842041e-18,4.464761536585089e-18,4.336808689942018e-18,0.02380952425301075,-3.54080161954397e-18,1.5178830414797062e-17,-4.553649124439119e-18,3.0899761915836876e-18,6.505213034913027e-19,0.0059523810632526875,-5.204170427930421e-18,-0.0059523810632526875,-0.0019841270986944437,-3.3800905594874202e-18,4.299976405216563e-18,-2.450985372241068e-18,-5.1359166019625856e-20,-7.976834553069633e-19,-3.54080161954397e-18,0.0019841270986944437,-0.0,-7.589415207398531e-19,-3.7947076036992655e-19,2.439454888092385e-18,0.011904762126505375,-2.7755575615628914e-17,-0.011904762126505375,9.540979117872439e-18,-0.011904762126505375,1.4474997320826717e-17,-3.1681941835115488e-18,1.4832616037364524e-18,-1.4925766914095652e-18,1.5178830414797062e-17,-0.0,0.011904762126505375,-1.4094628242311558e-18,-1.5178830414797062e-18,-2.4936649967166602e-18,0.002204585587605834,1.7780915628762273e-17,1.5395670849294163e-17,-0.0026455025654286146,2.168404344971009e-18,-4.9873299934333204e-18,-3.0357660829594124e-18,-8.673617379884035e-19,-1.1926223897340549e-18,-4.553649124439119e-18,-7.589415207398531e-19,-1.4094628242311558e-18,0.00044091709423810244,0.0,8.673617379884035e-19,0.0059523810632526875,-4.336808689942018e-19,-4.336808689942018e-19,-0.0019841270986944437,-0.0059523810632526875,3.469446951953614e-18,-2.8189256484623115e-18,5.421010862427522e-20,-2.3852447794681098e-18,3.0899761915836876e-18,-3.7947076036992655e-19,-1.5178830414797062e-18,0.0,0.0019841270986944437,-4.711640621436747e-18,0.007936508394777775,-2.7755575615628914e-17,-1.734723475976807e-18,-1.0408340855860843e-17,-0.0476190485060215,1.1275702593849246e-17,-3.2526065174565133e-18,6.288372600415926e-18,-1.1926223897340549e-17,6.505213034913027e-19,2.439454888092385e-18,-2.4936649967166602e-18,8.673617379884035e-19,-4.711640621436747e-18,0.02380952425301075,3.0,3.0,7.0,4.0,0.12136243283748627,-0.05089285597205162,-0.05089285597205162,-0.02718253992497921,-0.0416666679084301,0.0059523810632526875,0.008928571827709675,0.004464285913854837,0.0071428571827709675,0.0059523810632526875,0.004464285913854837,0.0071428571827709675,0.0016534391324967146,0.0035714285913854837,0.003968254197388887,-0.05089285597205162,0.11041666567325592,0.008928571827709675,0.004464285913854837,0.0071428571827709675,-0.0357142873108387,-0.008928571827709675,-0.004464285913854837,-0.0071428571827709675,2.2551405187698492e-17,8.673617379884035e-19,-4.336808689942018e-18,-6.938893903907228e-18,-6.071532165918825e-18,-1.6479873021779667e-17,-0.05089285597205162,0.008928571827709675,0.11041666567325592,0.004464285913854837,0.0071428571827709675,1.544278871134641e-17,-0.008928571827709675,-2.4936649967166602e-18,7.806255641895632e-18,-0.0357142873108387,-0.004464285913854837,-0.0071428571827709675,-8.40256683676266e-18,-7.589415207398531e-18,-2.168404344971009e-17,-0.02718253992497921,0.004464285913854837,0.004464285913854837,0.01765873096883297,0.0035714285913854837,-2.5174633138120558e-17,-9.132838277471425e-18,-0.0014880952658131719,-3.903127820947816e-18,-2.859104788664217e-17,-0.0014880952658131719,-5.637851296924623e-18,-0.0019841270986944437,-0.0011904762359336019,2.6020852139652106e-18,-0.0416666679084301,0.0071428571827709675,0.0071428571827709675,0.0035714285913854837,0.0555555559694767,-5.778797579347739e-17,-4.992231038562697e-18,-2.0043473393366824e-18,-0.004761904943734407,-5.701855885746016e-17,-5.024015867190353e-19,-0.004761904943734407,-1.5178830414797062e-18,-0.0023809524718672037,-0.011904762126505375,0.0059523810632526875,-0.0357142873108387,1.544278871134641e-17,-2.5174633138120558e-17,-5.778797579347739e-17,0.01785714365541935,-3.037660533357312e-18,9.64939933512099e-18,1.2073774720646533e-17,-8.214517250666079e-18,-3.9816421503301242e-19,4.364066772667478e-18,2.168404344971009e-18,1.8431436932253575e-18,1.1275702593849246e-17,0.008928571827709675,-0.008928571827709675,-0.008928571827709675,-9.132838277471425e-18,-4.992231038562697e-18,-3.037660533357312e-18,0.008928571827709675,-0.0,-5.794194429756586e-19,-6.279812521846921e-18,-7.911451612514027e-19,-1.1976184572362986e-18,1.3010426069826053e-18,8.673617379884035e-19,1.3010426069826053e-18,0.004464285913854837,-0.004464285913854837,-2.4936649967166602e-18,-0.0014880952658131719,-2.0043473393366824e-18,9.64939933512099e-18,-0.0,0.0014880952658131719,7.144746691532634e-19,6.883933542467368e-19,3.027419778879964e-19,1.9372432944202954e-19,3.7947076036992655e-19,2.168404344971009e-19,2.168404344971009e-19,0.0071428571827709675,-0.0071428571827709675,7.806255641895632e-18,-3.903127820947816e-18,-0.004761904943734407,1.2073774720646533e-17,-5.794194429756586e-19,7.144746691532634e-19,0.004761904943734407,-1.4094628242311558e-18,-4.0649803385509004e-19,-1.8216570564288332e-18,5.421010862427522e-19,3.2526065174565133e-19,-5.800481622797449e-18,0.0059523810632526875,2.2551405187698492e-17,-0.0357142873108387,-2.859104788664217e-17,-5.701855885746016e-17,-8.214517250666079e-18,-6.279812521846921e-18,6.883933542467368e-19,-1.4094628242311558e-18,0.01785714365541935,7.238732813887288e-18,1.451948640289227e-17,2.6020852139652106e-18,2.4936649967166602e-18,1.1167282376600696e-17,0.004464285913854837,8.673617379884035e-19,-0.004464285913854837,-0.0014880952658131719,-5.024015867190353e-19,-3.9816421503301242e-19,-7.911451612514027e-19,3.027419778879964e-19,-4.0649803385509004e-19,7.238732813887288e-18,0.0014880952658131719,9.75781955236954e-19,5.421010862427522e-19,2.168404344971009e-19,-2.168404344971009e-19,0.0071428571827709675,-4.336808689942018e-18,-0.0071428571827709675,-5.637851296924623e-18,-0.004761904943734407,4.364066772667478e-18,-1.1976184572362986e-18,1.9372432944202954e-19,-1.8216570564288332e-18,1.451948640289227e-17,9.75781955236954e-19,0.004761904943734407,4.336808689942018e-19,6.505213034913027e-19,-8.673617379884035e-19,0.0016534391324967146,-6.938893903907228e-18,-8.40256683676266e-18,-0.0019841270986944437,-1.5178830414797062e-18,2.168404344971009e-18,1.3010426069826053e-18,3.7947076036992655e-19,5.421010862427522e-19,2.6020852139652106e-18,5.421010862427522e-19,4.336808689942018e-19,0.0003306878206785768,1.6263032587282567e-19,-3.2526065174565133e-19,0.0035714285913854837,-6.071532165918825e-18,-7.589415207398531e-18,-0.0011904762359336019,-0.0023809524718672037,1.8431436932253575e-18,8.673617379884035e-19,2.168404344971009e-19,3.2526065174565133e-19,2.4936649967166602e-18,2.168404344971009e-19,6.505213034913027e-19,1.6263032587282567e-19,0.0007936508045531809,-5.288494977332879e-19,0.003968254197388887,-1.6479873021779667e-17,-2.168404344971009e-17,2.6020852139652106e-18,-0.011904762126505375,1.1275702593849246e-17,1.3010426069826053e-18,2.168404344971009e-19,-5.800481622797449e-18,1.1167282376600696e-17,-2.168404344971009e-19,-8.673617379884035e-19,-3.2526065174565133e-19,-5.288494977332879e-19,0.003968254197388887,3.0,3.0,7.0,5.0,0.10241874307394028,-0.0416666679084301,-0.0416666679084301,-0.02222222276031971,-0.028911564499139786,0.004761904943734407,0.0071428571827709675,0.0035714285913854837,0.004761904943734407,0.004761904943734407,0.0035714285913854837,0.004761904943734407,0.0013227512827143073,0.0023809524718672037,0.0022675737272948027,-0.0416666679084301,0.0892857164144516,0.0071428571827709675,0.0035714285913854837,0.004761904943734407,-0.02857142873108387,-0.0071428571827709675,-0.0035714285913854837,-0.004761904943734407,-1.5860329632228476e-17,-2.3790494034752407e-18,-3.1720658023686032e-18,-2.290936470264867e-18,-1.5860329011843016e-18,-4.5315224566436314e-18,-0.0416666679084301,0.0071428571827709675,0.0892857164144516,0.0035714285913854837,0.004761904943734407,-2.2600968195641445e-17,-0.0071428571827709675,-3.851859888774472e-34,-0.0,-0.02857142873108387,-0.0035714285913854837,-0.004761904943734407,-2.290936470264867e-18,-1.5860329011843016e-18,-4.5315224566436314e-18,-0.02222222276031971,0.0035714285913854837,0.0035714285913854837,0.014285714365541935,0.0023809524718672037,-9.648367013716523e-18,-0.0,-0.0011904762359336019,-5.2867765096103e-19,-8.45884241537648e-18,-0.0011904762359336019,-5.2867765096103e-19,-0.0015873016091063619,-0.0007936508045531809,-2.8718629217924004e-33,-0.028911564499139786,0.004761904943734407,0.004761904943734407,0.0023809524718672037,0.02806122414767742,-1.3028127734934688e-17,-0.0,-5.2867765096103e-19,-0.0023809524718672037,-1.144209410996735e-17,-5.2867765096103e-19,-0.0023809524718672037,5.421010862427522e-20,-0.0011904762359336019,-0.004535147454589605,0.004761904943734407,-0.02857142873108387,-2.2600968195641445e-17,-9.648367013716523e-18,-1.3028127734934688e-17,0.014285714365541935,-0.0,-0.0,-0.0,7.930164816114238e-18,1.1895247017376204e-18,1.5860329011843016e-18,1.1454682351324336e-18,7.930164505921508e-19,2.2657612283218157e-18,0.0071428571827709675,-0.0071428571827709675,-0.0071428571827709675,-0.0,-0.0,-0.0,0.0071428571827709675,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0035714285913854837,-3.851859888774472e-34,-0.0011904762359336019,-5.2867765096103e-19,-0.0,-0.0,0.0011904762359336019,5.2867765096103e-19,1.925929944387236e-34,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.004761904943734407,-0.0,-5.2867765096103e-19,-0.0023809524718672037,-0.0,-0.0,5.2867765096103e-19,0.0023809524718672037,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-1.5860329632228476e-17,-0.02857142873108387,-8.45884241537648e-18,-1.144209410996735e-17,7.930164816114238e-18,-0.0,1.925929944387236e-34,0.0,0.014285714365541935,6.7407548053553255e-34,8.804251567922347e-34,1.1454682351324336e-18,7.930164505921508e-19,2.2657612283218157e-18,0.0035714285913854837,-2.3790494034752407e-18,-0.0035714285913854837,-0.0011904762359336019,-5.2867765096103e-19,1.1895247017376204e-18,-0.0,-0.0,-0.0,6.7407548053553255e-34,0.0011904762359336019,5.2867765096103e-19,7.336876258770969e-36,-0.0,1.8866252703865772e-34,0.004761904943734407,-3.1720658023686032e-18,-0.004761904943734407,-5.2867765096103e-19,-0.0023809524718672037,1.5860329011843016e-18,-0.0,-0.0,-0.0,8.804251567922347e-34,5.2867765096103e-19,0.0023809524718672037,1.3240768367662246e-34,9.62964972193618e-35,2.515500283985856e-34,0.0013227512827143073,-2.290936470264867e-18,-2.290936470264867e-18,-0.0015873016091063619,5.421010862427522e-20,1.1454682351324336e-18,-0.0,-0.0,-0.0,1.1454682351324336e-18,7.336876258770969e-36,1.3240768367662246e-34,0.00026455026818439364,9.782501439206354e-36,3.6335005632609524e-34,0.0023809524718672037,-1.5860329011843016e-18,-1.5860329011843016e-18,-0.0007936508045531809,-0.0011904762359336019,7.930164505921508e-19,-0.0,-0.0,-0.0,7.930164505921508e-19,-0.0,9.62964972193618e-35,9.782501439206354e-36,0.00039682540227659047,2.515500283985856e-34,0.0022675737272948027,-4.5315224566436314e-18,-4.5315224566436314e-18,-2.8718629217924004e-33,-0.004535147454589605,2.2657612283218157e-18,-0.0,-0.0,-0.0,2.2657612283218157e-18,1.8866252703865772e-34,2.515500283985856e-34,3.6335005632609524e-34,2.515500283985856e-34,0.0011337868636474013,3.0,3.0,7.0,6.0,0.08865582942962646,-0.03528911620378494,-0.03528911620378494,-0.018801964819431305,-0.021258503198623657,0.003968254197388887,0.0059523810632526875,0.0029761905316263437,0.003401360474526882,0.003968254197388887,0.0029761905316263437,0.003401360474526882,0.001102292793802917,0.001700680237263441,0.0014172336086630821,-0.03528911620378494,0.07497165352106094,0.0059523810632526875,0.0029761905316263437,0.003401360474526882,-0.02380952425301075,-0.0059523810632526875,-0.0029761905316263437,-0.003401360474526882,2.643388161747331e-17,4.016666218236538e-18,4.473288941519898e-18,3.7372342675584686e-18,1.9726692170080453e-18,5.089753978421474e-18,-0.03528911620378494,0.0059523810632526875,0.07497165352106094,0.0029761905316263437,0.003401360474526882,4.2073929743856463e-17,-0.0059523810632526875,5.3855962231003153e-20,-6.095990242270793e-20,-0.02380952425301075,-0.0029761905316263437,-0.003401360474526882,3.910885120732338e-18,1.9405005765761644e-18,5.2154858451198404e-18,-0.018801964819431305,0.0029761905316263437,0.0029761905316263437,0.01199924387037754,0.001700680237263441,1.8954770944758725e-17,-6.413416362849782e-33,-0.0009920635493472219,-2.6956125612726267e-19,1.697223077470593e-17,-0.0009920635493472219,-2.710505431213761e-19,-0.0013227512827143073,-0.0005668934318237007,-4.424797442662932e-19,-0.021258503198623657,0.003401360474526882,0.003401360474526882,0.001700680237263441,0.016298186033964157,2.23280879290051e-17,-7.554791255455483e-33,-7.72649861581463e-21,-0.0013605442363768816,2.006232773465905e-17,4.342340363353238e-21,-0.0013605442363768816,-0.0,-0.0006802721181884408,-0.002125850412994623,0.003968254197388887,-0.02380952425301075,4.2073929743856463e-17,1.8954770944758725e-17,2.23280879290051e-17,0.011904762126505375,-4.028020099324441e-18,-2.6853467328829607e-18,-3.6827611154994015e-18,-1.3216940808736655e-17,-1.9825412040285595e-18,-2.2657612283218157e-18,-1.909113621823146e-18,-1.1328806141609079e-18,-2.5961847278607168e-18,0.0059523810632526875,-0.0059523810632526875,-0.0059523810632526875,-6.413416362849782e-33,-7.554791255455483e-33,-4.028020099324441e-18,0.0059523810632526875,9.085969809356448e-34,1.2460758070914579e-33,4.4720007497584006e-33,6.708000757295616e-34,7.666286710959985e-34,6.4595563528294796e-34,3.8331433554799923e-34,8.7842865310576e-34,0.0029761905316263437,-0.0029761905316263437,5.3855962231003153e-20,-0.0009920635493472219,-7.72649861581463e-21,-2.6853467328829607e-18,9.085969809356448e-34,0.0009920635493472219,-9.666122824218209e-23,2.8888949165808538e-33,-1.5305009450164696e-20,-3.1763735522036263e-21,2.710505431213761e-20,6.776263578034403e-21,-1.719150712039768e-21,0.003401360474526882,-0.003401360474526882,-6.095990242270793e-20,-2.6956125612726267e-19,-0.0013605442363768816,-3.6827611154994015e-18,1.2460758070914579e-33,-9.666122824218209e-23,0.0013605442363768816,3.851859888774472e-33,-2.267578728304528e-21,2.710505431213761e-20,-1.2888163344898462e-22,1.0910529081680628e-19,4.3109234943888486e-20,0.003968254197388887,2.643388161747331e-17,-0.02380952425301075,1.697223077470593e-17,2.006232773465905e-17,-1.3216940808736655e-17,4.4720007497584006e-33,2.8888949165808538e-33,3.851859888774472e-33,0.011904762126505375,-2.6853467328829607e-18,-3.6827611154994015e-18,-1.909113621823146e-18,-1.1328806141609079e-18,-2.5961847278607168e-18,0.0029761905316263437,4.016666218236538e-18,-0.0029761905316263437,-0.0009920635493472219,4.342340363353238e-21,-1.9825412040285595e-18,6.708000757295616e-34,-1.5305009450164696e-20,-2.267578728304528e-21,-2.6853467328829607e-18,0.0009920635493472219,-3.1763735522036263e-21,-2.735669170176419e-20,6.776263578034403e-21,-3.5430920406548636e-21,0.003401360474526882,4.473288941519898e-18,-0.003401360474526882,-2.710505431213761e-19,-0.0013605442363768816,-2.2657612283218157e-18,7.666286710959985e-34,-3.1763735522036263e-21,2.710505431213761e-20,-3.6827611154994015e-18,-3.1763735522036263e-21,0.0013605442363768816,-4.235164736271502e-21,1.2197274440461925e-19,-4.994788765027242e-21,0.001102292793802917,3.7372342675584686e-18,3.910885120732338e-18,-0.0013227512827143073,-0.0,-1.909113621823146e-18,6.4595563528294796e-34,2.710505431213761e-20,-1.2888163344898462e-22,-1.909113621823146e-18,-2.735669170176419e-20,-4.235164736271502e-21,0.00022045854711905122,2.5020050258556805e-20,1.8608879888316944e-21,0.001700680237263441,1.9726692170080453e-18,1.9405005765761644e-18,-0.0005668934318237007,-0.0006802721181884408,-1.1328806141609079e-18,3.8331433554799923e-34,6.776263578034403e-21,1.0910529081680628e-19,-1.1328806141609079e-18,6.776263578034403e-21,1.2197274440461925e-19,2.5020050258556805e-20,0.00022675737272948027,1.742584819572752e-19,0.0014172336086630821,5.089753978421474e-18,5.2154858451198404e-18,-4.424797442662932e-19,-0.002125850412994623,-2.5961847278607168e-18,8.7842865310576e-34,-1.719150712039768e-21,4.3109234943888486e-20,-2.5961847278607168e-18,-3.5430920406548636e-21,-4.994788765027242e-21,1.8608879888316944e-21,1.742584819572752e-19,0.00042517005931586027,3.0,3.0,7.0,7.0,0.07818405330181122,-0.030612245202064514,-0.030612245202064514,-0.016298186033964157,-0.016298186033964157,0.003401360474526882,0.005102040711790323,0.0025510203558951616,0.0025510203558951616,0.003401360474526882,0.0025510203558951616,0.0025510203558951616,0.0009448223863728344,0.0012755101779475808,0.0009448223863728344,-0.030612245202064514,0.06462585180997849,0.005102040711790323,0.0025510203558951616,0.0025510203558951616,-0.020408162847161293,-0.005102040711790323,-0.0025510203558951616,-0.0025510203558951616,-1.1328806761994538e-17,-1.6848446918350127e-18,-1.6936035005461835e-18,-1.627163940155618e-18,-7.746542300656041e-19,-1.6616789817925823e-18,-0.030612245202064514,0.005102040711790323,0.06462585180997849,0.0025510203558951616,0.0025510203558951616,-1.6426769680814988e-17,-0.005102040711790323,1.2026407198683312e-20,8.167370534227622e-21,-0.020408162847161293,-0.0025510203558951616,-0.0025510203558951616,-1.6203479719081811e-18,-8.090029050018686e-19,-1.6254933455109907e-18,-0.016298186033964157,0.0025510203558951616,0.0025510203558951616,0.010345805436372757,0.0012755101779475808,-7.033300854398518e-18,-0.0,-0.0008503401186317205,1.0000830094442046e-19,-6.183639954338137e-18,-0.0008503401186317205,8.131516293641283e-20,-0.0011337868636474013,-0.00042517005931586027,1.8894451797118015e-19,-0.016298186033964157,0.0025510203558951616,0.0025510203558951616,0.0012755101779475808,0.010345805436372757,-7.033300854398518e-18,-0.0,2.4409172529424992e-20,-0.0008503401186317205,-6.183639954338137e-18,7.894116588749558e-21,-0.0008503401186317205,8.131516293641283e-20,-0.00042517005931586027,-0.0011337868636474013,0.003401360474526882,-0.020408162847161293,-1.6426769680814988e-17,-7.033300854398518e-18,-7.033300854398518e-18,0.010204081423580647,-0.0,-0.0,-6.977910675839352e-35,5.664403380997269e-18,8.49660486470075e-19,8.49660486470075e-19,8.181915891376256e-19,4.248302432350375e-19,8.181915891376256e-19,0.005102040711790323,-0.005102040711790323,-0.005102040711790323,-0.0,-0.0,-0.0,0.005102040711790323,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025510203558951616,-0.0025510203558951616,1.2026407198683312e-20,-0.0008503401186317205,2.4409172529424992e-20,-0.0,-0.0,0.0008503401186317205,-2.304788123378776e-21,-1.925929944387236e-34,-2.1029782682389284e-21,-1.9058241313221758e-21,-0.0,-0.0,-3.107470780427023e-21,0.0025510203558951616,-0.0025510203558951616,8.167370534227622e-21,1.0000830094442046e-19,-0.0008503401186317205,-6.977910675839352e-35,-0.0,-2.304788123378776e-21,0.0008503401186317205,-9.62964972193618e-35,-2.722456979374802e-21,-0.0,-3.073050898487832e-21,-2.5002075236105116e-20,1.153941996112049e-20,0.003401360474526882,-1.1328806761994538e-17,-0.020408162847161293,-6.183639954338137e-18,-6.183639954338137e-18,5.664403380997269e-18,-0.0,-1.925929944387236e-34,-9.62964972193618e-35,0.010204081423580647,4.786515650922427e-34,3.863241980168293e-34,8.181915891376256e-19,4.248302432350375e-19,8.181915891376256e-19,0.0025510203558951616,-1.6848446918350127e-18,-0.0025510203558951616,-0.0008503401186317205,7.894116588749558e-21,8.49660486470075e-19,-0.0,-2.1029782682389284e-21,-2.722456979374802e-21,4.786515650922427e-34,0.0008503401186317205,-1.9058241313221758e-21,-2.803971226266963e-21,6.776263578034403e-21,-3.62994236990188e-21,0.0025510203558951616,-1.6936035005461835e-18,-0.0025510203558951616,8.131516293641283e-20,-0.0008503401186317205,8.49660486470075e-19,-0.0,-1.9058241313221758e-21,-0.0,3.863241980168293e-34,-1.9058241313221758e-21,0.0008503401186317205,-2.541098841762901e-21,-2.0328790734103208e-20,5.2406255916372e-36,0.0009448223863728344,-1.627163940155618e-18,-1.6203479719081811e-18,-0.0011337868636474013,8.131516293641283e-20,8.181915891376256e-19,-0.0,-0.0,-3.073050898487832e-21,8.181915891376256e-19,-2.803971226266963e-21,-2.541098841762901e-21,0.0001889644772745669,-2.814755714672158e-20,2.4440873529679136e-23,0.0012755101779475808,-7.746542300656041e-19,-8.090029050018686e-19,-0.00042517005931586027,-0.00042517005931586027,4.248302432350375e-19,-0.0,-0.0,-2.5002075236105116e-20,4.248302432350375e-19,6.776263578034403e-21,-2.0328790734103208e-20,-2.814755714672158e-20,0.00014172335795592517,-6.078865664886384e-20,0.0009448223863728344,-1.6616789817925823e-18,-1.6254933455109907e-18,1.8894451797118015e-19,-0.0011337868636474013,8.181915891376256e-19,-0.0,-3.107470780427023e-21,1.153941996112049e-20,8.181915891376256e-19,-3.62994236990188e-21,5.2406255916372e-36,2.4440873529679136e-23,-6.078865664886384e-20,0.0001889644772745669,3.0,3.0,7.0,8.0,0.0699404776096344,-0.02703372947871685,-0.02703372947871685,-0.014384920708835125,-0.012896825559437275,0.0029761905316263437,0.004464285913854837,0.0022321429569274187,0.0019841270986944437,0.0029761905316263437,0.0022321429569274187,0.0019841270986944437,0.0008267195662483573,0.0009920635493472219,0.0006613756413571537,-0.02703372947871685,0.056795634329319,0.004464285913854837,0.0022321429569274187,0.0019841270986944437,-0.01785714365541935,-0.004464285913854837,-0.0022321429569274187,-0.0019841270986944437,1.9825411626695288e-17,2.9771229066373124e-18,2.666152213563821e-18,2.949602194067367e-18,1.4059380008459142e-18,2.1712022833929695e-18,-0.02703372947871685,0.004464285913854837,0.056795634329319,0.0022321429569274187,0.0019841270986944437,3.344358052745385e-17,-0.004464285913854837,-1.1117307432712692e-21,2.65550389815138e-20,-0.01785714365541935,-0.0022321429569274187,-0.0019841270986944437,2.8621882284746006e-18,1.392844869122542e-18,2.203002208066805e-18,-0.014384920708835125,0.0022321429569274187,0.0022321429569274187,0.009093915112316608,0.0009920635493472219,1.390138892505182e-17,-7.055379541772757e-33,-0.0007440476329065859,7.442405050020427e-20,1.2414483797512224e-17,-0.0007440476329065859,6.776263578034403e-20,-0.0009920635493472219,-0.0003306878206785768,1.1674589351147324e-19,-0.012896825559437275,0.0019841270986944437,0.0019841270986944437,0.0009920635493472219,0.00699168536812067,1.3315842658676557e-17,-6.75819693746962e-33,1.3015258000137842e-20,-0.0005668934318237007,1.1994148660520953e-17,8.985079767208204e-21,-0.0005668934318237007,-0.0,-0.00028344671591185033,-0.0006613756413571537,0.0029761905316263437,-0.01785714365541935,3.344358052745385e-17,1.390138892505182e-17,1.3315842658676557e-17,0.008928571827709675,-4.5315224566436314e-18,-1.5105074855478771e-18,-2.3017258005847025e-18,-9.912705813347644e-18,-1.4869058513226313e-18,-1.3216941015531808e-18,-1.4318352680661478e-18,-6.608470507765904e-19,-1.1014117685272467e-18,0.004464285913854837,-0.004464285913854837,-0.004464285913854837,-7.055379541772757e-33,-6.75819693746962e-33,-4.5315224566436314e-18,0.004464285913854837,7.666286710959985e-34,1.1681960921071158e-33,5.031000843478201e-33,7.546501081546309e-34,6.708000757295616e-34,7.267001126521905e-34,3.354000378647808e-34,5.590000937198001e-34,0.0022321429569274187,-0.0022321429569274187,-1.1117307432712692e-21,-0.0007440476329065859,1.3015258000137842e-20,-1.5105074855478771e-18,7.666286710959985e-34,0.0007440476329065859,-9.892668151415068e-22,1.7333369499485123e-33,-1.5035174269516892e-34,3.1763735522036263e-22,-2.710505431213761e-20,-6.776263578034403e-21,1.054643971895173e-21,0.0019841270986944437,-0.0019841270986944437,2.65550389815138e-20,7.442405050020427e-20,-0.0005668934318237007,-2.3017258005847025e-18,1.1681960921071158e-33,-9.892668151415068e-22,0.0005668934318237007,2.5037089277034066e-33,-9.46039055070921e-22,-6.776263578034403e-21,-1.3190223865306105e-21,-1.8261456357005786e-20,8.130649854261377e-21,0.0029761905316263437,1.9825411626695288e-17,-0.01785714365541935,1.2414483797512224e-17,1.1994148660520953e-17,-9.912705813347644e-18,5.031000843478201e-33,1.7333369499485123e-33,2.5037089277034066e-33,0.008928571827709675,-1.5105074855478771e-18,-2.3017258005847025e-18,-1.4318352680661478e-18,-6.608470507765904e-19,-1.1014117685272467e-18,0.0022321429569274187,2.9771229066373124e-18,-0.0022321429569274187,-0.0007440476329065859,8.985079767208204e-21,-1.4869058513226313e-18,7.546501081546309e-34,-1.5035174269516892e-34,-9.46039055070921e-22,-1.5105074855478771e-18,0.0007440476329065859,3.1763735522036263e-22,6.010656182414564e-35,-0.0,-1.1037121804289766e-21,0.0019841270986944437,2.666152213563821e-18,-0.0019841270986944437,6.776263578034403e-20,-0.0005668934318237007,-1.3216941015531808e-18,6.708000757295616e-34,3.1763735522036263e-22,-6.776263578034403e-21,-2.3017258005847025e-18,3.1763735522036263e-22,0.0005668934318237007,4.235164736271502e-22,-2.0328790734103208e-20,8.949782217558526e-22,0.0008267195662483573,2.949602194067367e-18,2.8621882284746006e-18,-0.0009920635493472219,-0.0,-1.4318352680661478e-18,7.267001126521905e-34,-2.710505431213761e-20,-1.3190223865306105e-21,-1.4318352680661478e-18,6.010656182414564e-35,4.235164736271502e-22,0.0001653439103392884,1.0425021277645988e-21,1.1947411248236107e-21,0.0009920635493472219,1.4059380008459142e-18,1.392844869122542e-18,-0.0003306878206785768,-0.00028344671591185033,-6.608470507765904e-19,3.354000378647808e-34,-6.776263578034403e-21,-1.8261456357005786e-20,-6.608470507765904e-19,-0.0,-2.0328790734103208e-20,1.0425021277645988e-21,9.448223863728344e-05,-3.556075625877035e-20,0.0006613756413571537,2.1712022833929695e-18,2.203002208066805e-18,1.1674589351147324e-19,-0.0006613756413571537,-1.1014117685272467e-18,5.590000937198001e-34,1.054643971895173e-21,8.130649854261377e-21,-1.1014117685272467e-18,-1.1037121804289766e-21,8.949782217558526e-22,1.1947411248236107e-21,-3.556075625877035e-20,9.448223863728344e-05,3.0,3.0,8.0,3.0,0.13387346267700195,-0.05787036940455437,-0.05787036940455437,-0.02777777798473835,-0.05787036940455437,0.0069444444961845875,0.010416666977107525,0.004629629664123058,0.010416666977107525,0.0069444444961845875,0.004629629664123058,0.010416666977107525,0.0015432098880410194,0.004629629664123058,0.0069444444961845875,-0.05787036940455437,0.12731482088565826,0.010416666977107525,0.004629629664123058,0.010416666977107525,-0.0416666679084301,-0.010416666977107525,-0.004629629664123058,-0.010416666977107525,-4.163336342344337e-17,3.469446951953614e-18,-6.938893903907228e-18,7.806255641895632e-18,5.204170427930421e-18,-5.551115123125783e-17,-0.05787036940455437,0.010416666977107525,0.12731482088565826,0.004629629664123058,0.010416666977107525,-5.1791657506296783e-17,-0.010416666977107525,2.1141942363467336e-18,-3.903127820947816e-18,-0.0416666679084301,-0.004629629664123058,-0.010416666977107525,9.107298248878237e-18,6.5052130349130266e-18,-5.898059818321144e-17,-0.02777777798473835,0.004629629664123058,0.004629629664123058,0.015652557834982872,0.004629629664123058,2.3435446195558415e-17,7.982612202853163e-18,-0.0013227512827143073,3.469446951953614e-18,2.7956990786063126e-17,-0.0013227512827143073,5.637851296924623e-18,-0.0015432098880410194,-0.0013227512827143073,3.469446951953614e-18,-0.05787036940455437,0.010416666977107525,0.010416666977107525,0.004629629664123058,0.12731482088565826,-4.640385298237959e-17,-4.775675981376927e-18,-8.717496209452677e-19,-0.010416666977107525,-4.14536170763356e-17,-2.2466483930881654e-18,-0.010416666977107525,3.903127820947816e-18,-0.004629629664123058,-0.0416666679084301,0.0069444444961845875,-0.0416666679084301,-5.1791657506296783e-17,2.3435446195558415e-17,-4.640385298237959e-17,0.02083333395421505,2.79569035185085e-18,-3.4220131069073734e-19,2.353197734586274e-18,2.4975520838511694e-17,-1.375943811449282e-18,2.8095836774192908e-18,-2.6020852139652106e-18,-1.734723475976807e-18,2.3418766925686896e-17,0.010416666977107525,-0.010416666977107525,-0.010416666977107525,7.982612202853163e-18,-4.775675981376927e-18,2.79569035185085e-18,0.010416666977107525,-6.505213034913027e-19,8.1420892128333595e-19,-5.005257478849182e-18,3.4419887432187047e-19,1.7613679974829058e-18,-7.589415207398531e-19,-6.505213034913027e-19,2.168404344971009e-18,0.004629629664123058,-0.004629629664123058,2.1141942363467336e-18,-0.0013227512827143073,-8.717496209452677e-19,-3.4220131069073734e-19,-6.505213034913027e-19,0.0013227512827143073,7.896447590178081e-19,-5.59162151665753e-19,-1.019073783838715e-19,1.4964063050011384e-19,-3.2526065174565133e-19,-2.168404344971009e-19,3.7947076036992655e-19,0.010416666977107525,-0.010416666977107525,-3.903127820947816e-18,3.469446951953614e-18,-0.010416666977107525,2.353197734586274e-18,8.1420892128333595e-19,7.896447590178081e-19,0.010416666977107525,2.0599841277224584e-18,-2.332128979095454e-19,3.393056098601306e-19,-5.421010862427522e-19,-1.0842021724855044e-19,4.336808689942018e-18,0.0069444444961845875,-4.163336342344337e-17,-0.0416666679084301,2.7956990786063126e-17,-4.14536170763356e-17,2.4975520838511694e-17,-5.005257478849182e-18,-5.59162151665753e-19,2.0599841277224584e-18,0.02083333395421505,-1.2745268154593352e-18,-2.4788160707455677e-18,-2.8189256484623115e-18,-2.1141942363467336e-18,2.45029690981724e-17,0.004629629664123058,3.469446951953614e-18,-0.004629629664123058,-0.0013227512827143073,-2.2466483930881654e-18,-1.375943811449282e-18,3.4419887432187047e-19,-1.019073783838715e-19,-2.332128979095454e-19,-1.2745268154593352e-18,0.0013227512827143073,-5.421010862427522e-20,-3.2526065174565133e-19,-8.131516293641283e-20,1.3552527156068805e-18,0.010416666977107525,-6.938893903907228e-18,-0.010416666977107525,5.637851296924623e-18,-0.010416666977107525,2.8095836774192908e-18,1.7613679974829058e-18,1.4964063050011384e-19,3.393056098601306e-19,-2.4788160707455677e-18,-5.421010862427522e-20,0.010416666977107525,-4.336808689942018e-19,-1.1926223897340549e-18,3.7947076036992655e-18,0.0015432098880410194,7.806255641895632e-18,9.107298248878237e-18,-0.0015432098880410194,3.903127820947816e-18,-2.6020852139652106e-18,-7.589415207398531e-19,-3.2526065174565133e-19,-5.421010862427522e-19,-2.8189256484623115e-18,-3.2526065174565133e-19,-4.336808689942018e-19,0.00022045854711905122,-1.0842021724855044e-19,-1.0842021724855044e-18,0.004629629664123058,5.204170427930421e-18,6.5052130349130266e-18,-0.0013227512827143073,-0.004629629664123058,-1.734723475976807e-18,-6.505213034913027e-19,-2.168404344971009e-19,-1.0842021724855044e-19,-2.1141942363467336e-18,-8.131516293641283e-20,-1.1926223897340549e-18,-1.0842021724855044e-19,0.0013227512827143073,4.494404794606846e-18,0.0069444444961845875,-5.551115123125783e-17,-5.898059818321144e-17,3.469446951953614e-18,-0.0416666679084301,2.3418766925686896e-17,2.168404344971009e-18,3.7947076036992655e-19,4.336808689942018e-18,2.45029690981724e-17,1.3552527156068805e-18,3.7947076036992655e-18,-1.0842021724855044e-18,4.494404794606846e-18,0.02083333395421505,3.0,3.0,8.0,4.0,0.10873842239379883,-0.04496527835726738,-0.04496527835726738,-0.02152777835726738,-0.03680555522441864,0.0052083334885537624,0.0078125,0.0034722222480922937,0.0062500000931322575,0.0052083334885537624,0.0034722222480922937,0.0062500000931322575,0.0011574074160307646,0.0027777778450399637,0.0034722222480922937,-0.04496527835726738,0.09704861044883728,0.0078125,0.0034722222480922937,0.0062500000931322575,-0.03125,-0.0078125,-0.0034722222480922937,-0.0062500000931322575,1.0408340855860843e-17,1.0842021724855044e-18,1.9949319973733282e-17,-6.071532165918825e-18,1.5178830414797062e-18,2.7755575615628914e-17,-0.04496527835726738,0.0078125,0.09704861044883728,0.0034722222480922937,0.0062500000931322575,6.868210906974266e-18,-0.0078125,6.938893903907228e-18,1.5612511283791264e-17,-0.03125,-0.0034722222480922937,-0.0062500000931322575,-7.453889935837843e-18,0.0,1.3877787807814457e-17,-0.02152777835726738,0.0034722222480922937,0.0034722222480922937,0.011937830597162247,0.0027777778450399637,-1.0710666270762236e-17,-8.375146626637139e-18,-0.0009920635493472219,-1.3010426069826053e-18,-1.0513129750220285e-17,-0.0009920635493472219,-3.903127820947816e-18,-0.0011574074160307646,-0.0007936508045531809,6.938893903907228e-18,-0.03680555522441864,0.0062500000931322575,0.0062500000931322575,0.0027777778450399637,0.048842594027519226,4.109126233720062e-17,7.57520755319732e-18,9.22551063021819e-18,-0.004166666883975267,3.251553681972856e-17,3.609745055648733e-18,-0.004166666883975267,-4.336808689942018e-19,-0.0018518518190830946,-0.010416666977107525,0.0052083334885537624,-0.03125,6.868210906974266e-18,-1.0710666270762236e-17,4.109126233720062e-17,0.015625,-2.846301397629907e-18,-6.90396217003669e-20,-4.340926808621613e-18,4.451569246585787e-18,-3.0044202804418686e-19,-6.251053106309677e-18,1.951563910473908e-18,-7.589415207398531e-19,-8.185726402265558e-18,0.0078125,-0.0078125,-0.0078125,-8.375146626637139e-18,7.57520755319732e-18,-2.846301397629907e-18,0.0078125,1.0842021724855044e-19,-1.6784518264708966e-18,-3.665901520254346e-18,8.212148825777187e-19,-9.310069788721883e-19,9.75781955236954e-19,1.6263032587282567e-19,-1.6263032587282567e-18,0.0034722222480922937,-0.0034722222480922937,6.938893903907228e-18,-0.0009920635493472219,9.22551063021819e-18,-6.90396217003669e-20,1.0842021724855044e-19,0.0009920635493472219,-6.86550292444392e-19,-2.1941852899176022e-18,-2.326826234381106e-19,-1.0270607425654944e-18,2.168404344971009e-19,-2.439454888092385e-19,-2.087089182034596e-18,0.0062500000931322575,-0.0062500000931322575,1.5612511283791264e-17,-1.3010426069826053e-18,-0.004166666883975267,-4.340926808621613e-18,-1.6784518264708966e-18,-6.86550292444392e-19,0.004166666883975267,-5.149960319306146e-18,-2.9455625024495993e-19,-1.4933872250122906e-18,2.710505431213761e-19,4.87890977618477e-19,-5.963111948670274e-19,0.0052083334885537624,1.0408340855860843e-17,-0.03125,-1.0513129750220285e-17,3.251553681972856e-17,4.451569246585787e-18,-3.665901520254346e-18,-2.1941852899176022e-18,-5.149960319306146e-18,0.015625,-5.200427642453772e-19,-8.285754045019146e-18,2.0599841277224584e-18,-5.149960319306146e-19,-4.662069341687669e-18,0.0034722222480922937,1.0842021724855044e-18,-0.0034722222480922937,-0.0009920635493472219,3.609745055648733e-18,-3.0044202804418686e-19,8.212148825777187e-19,-2.326826234381106e-19,-2.9455625024495993e-19,-5.200427642453772e-19,0.0009920635493472219,3.7947076036992655e-19,2.710505431213761e-19,-2.710505431213761e-20,-1.111307226797642e-18,0.0062500000931322575,1.9949319973733282e-17,-0.0062500000931322575,-3.903127820947816e-18,-0.004166666883975267,-6.251053106309677e-18,-9.310069788721883e-19,-1.0270607425654944e-18,-1.4933872250122906e-18,-8.285754045019146e-18,3.7947076036992655e-19,0.004166666883975267,5.421010862427522e-19,3.7947076036992655e-19,7.318364664277155e-19,0.0011574074160307646,-6.071532165918825e-18,-7.453889935837843e-18,-0.0011574074160307646,-4.336808689942018e-19,1.951563910473908e-18,9.75781955236954e-19,2.168404344971009e-19,2.710505431213761e-19,2.0599841277224584e-18,2.710505431213761e-19,5.421010862427522e-19,0.0001653439103392884,2.710505431213761e-20,-2.710505431213761e-19,0.0027777778450399637,1.5178830414797062e-18,0.0,-0.0007936508045531809,-0.0018518518190830946,-7.589415207398531e-19,1.6263032587282567e-19,-2.439454888092385e-19,4.87890977618477e-19,-5.149960319306146e-19,-2.710505431213761e-20,3.7947076036992655e-19,2.710505431213761e-20,0.0005291005363687873,-1.481387005673254e-18,0.0034722222480922937,2.7755575615628914e-17,1.3877787807814457e-17,6.938893903907228e-18,-0.010416666977107525,-8.185726402265558e-18,-1.6263032587282567e-18,-2.087089182034596e-18,-5.963111948670274e-19,-4.662069341687669e-18,-1.111307226797642e-18,7.318364664277155e-19,-2.710505431213761e-19,-1.481387005673254e-18,0.0034722222480922937,3.0,3.0,8.0,5.0,0.09169973433017731,-0.03680555522441864,-0.03680555522441864,-0.017592592164874077,-0.025529099628329277,0.004166666883975267,0.0062500000931322575,0.0027777778450399637,0.004166666883975267,0.004166666883975267,0.0027777778450399637,0.004166666883975267,0.0009259259095415473,0.0018518518190830946,0.0019841270986944437,-0.03680555522441864,0.07847221940755844,0.0062500000931322575,0.0027777778450399637,0.004166666883975267,-0.02500000037252903,-0.0062500000931322575,-0.0027777778450399637,-0.004166666883975267,2.7755575615628914e-17,3.903127820947816e-18,8.673617379884035e-19,7.589415207398531e-18,5.204170427930421e-18,8.673617379884035e-19,-0.03680555522441864,0.0062500000931322575,0.07847221940755844,0.0027777778450399637,0.004166666883975267,2.702906288362359e-17,-0.0062500000931322575,-1.0299920638612292e-18,1.734723475976807e-18,-0.02500000037252903,-0.0027777778450399637,-0.004166666883975267,8.239936510889834e-18,3.903127820947816e-18,1.3010426069826053e-18,-0.017592592164874077,0.0027777778450399637,0.0027777778450399637,0.009656084701418877,0.0018518518190830946,1.390280836698296e-17,1.1496453111101885e-17,-0.0007936508045531809,3.903127820947816e-18,1.8644894198045334e-17,-0.0007936508045531809,3.469446951953614e-18,-0.0009259259095415473,-0.0005291005363687873,-1.3010426069826053e-18,-0.025529099628329277,0.004166666883975267,0.004166666883975267,0.0018518518190830946,0.024669311940670013,1.0299920638612292e-17,3.09506542030242e-18,-7.021321624767525e-18,-0.0020833334419876337,1.6651776455909519e-18,-3.728885533635971e-18,-0.0020833334419876337,4.336808689942018e-19,-0.0009259259095415473,-0.003968254197388887,0.004166666883975267,-0.02500000037252903,2.702906288362359e-17,1.390280836698296e-17,1.0299920638612292e-17,0.012500000186264515,-2.0329045996870363e-20,4.192787859900104e-18,-6.582628351453982e-19,-9.556938740611037e-18,-1.885828073989472e-18,-5.276821907926107e-19,-1.8431436932253575e-18,-1.4094628242311558e-18,-1.0299920638612292e-18,0.0062500000931322575,-0.0062500000931322575,-0.0062500000931322575,1.1496453111101885e-17,3.09506542030242e-18,-2.0329045996870363e-20,0.0062500000931322575,-5.421010862427522e-19,-2.0903418888477018e-19,-4.812229919826258e-18,-1.0899732048241338e-18,-3.359965772171888e-19,-1.1384122811097797e-18,-6.505213034913027e-19,-1.0842021724855044e-19,0.0027777778450399637,-0.0027777778450399637,-1.0299920638612292e-18,-0.0007936508045531809,-7.021321624767525e-18,4.192787859900104e-18,-5.421010862427522e-19,0.0007936508045531809,1.1968775102026042e-18,6.996575379369659e-20,6.185869878173215e-20,6.227039432741803e-19,-2.168404344971009e-19,9.486769009248164e-20,1.1248597539537109e-18,0.004166666883975267,-0.004166666883975267,1.734723475976807e-18,3.903127820947816e-18,-0.0020833334419876337,-6.582628351453982e-19,-2.0903418888477018e-19,1.1968775102026042e-18,0.0020833334419876337,3.2526065174565133e-19,-3.7930412225058833e-20,-8.076107083321536e-19,-4.336808689942018e-19,-9.75781955236954e-19,-1.7618285302889447e-18,0.004166666883975267,2.7755575615628914e-17,-0.02500000037252903,1.8644894198045334e-17,1.6651776455909519e-18,-9.556938740611037e-18,-4.812229919826258e-18,6.996575379369659e-20,3.2526065174565133e-19,0.012500000186264515,-9.282098030073549e-20,5.653340047099525e-19,-2.3852447794681098e-18,-9.75781955236954e-19,5.421010862427522e-20,0.0027777778450399637,3.903127820947816e-18,-0.0027777778450399637,-0.0007936508045531809,-3.728885533635971e-18,-1.885828073989472e-18,-1.0899732048241338e-18,6.185869878173215e-20,-3.7930412225058833e-20,-9.282098030073549e-20,0.0007936508045531809,5.421010862427522e-19,-3.2526065174565133e-19,-2.710505431213761e-20,7.589415207398531e-19,0.004166666883975267,8.673617379884035e-19,-0.004166666883975267,3.469446951953614e-18,-0.0020833334419876337,-5.276821907926107e-19,-3.359965772171888e-19,6.227039432741803e-19,-8.076107083321536e-19,5.653340047099525e-19,5.421010862427522e-19,0.0020833334419876337,-4.87890977618477e-19,-4.743384504624082e-19,-1.883801274693564e-18,0.0009259259095415473,7.589415207398531e-18,8.239936510889834e-18,-0.0009259259095415473,4.336808689942018e-19,-1.8431436932253575e-18,-1.1384122811097797e-18,-2.168404344971009e-19,-4.336808689942018e-19,-2.3852447794681098e-18,-3.2526065174565133e-19,-4.87890977618477e-19,0.00013227513409219682,-2.710505431213761e-20,1.3552527156068805e-19,0.0018518518190830946,5.204170427930421e-18,3.903127820947816e-18,-0.0005291005363687873,-0.0009259259095415473,-1.4094628242311558e-18,-6.505213034913027e-19,9.486769009248164e-20,-9.75781955236954e-19,-9.75781955236954e-19,-2.710505431213761e-20,-4.743384504624082e-19,-2.710505431213761e-20,0.00026455026818439364,-8.16433209950491e-19,0.0019841270986944437,8.673617379884035e-19,1.3010426069826053e-18,-1.3010426069826053e-18,-0.003968254197388887,-1.0299920638612292e-18,-1.0842021724855044e-19,1.1248597539537109e-18,-1.7618285302889447e-18,5.421010862427522e-20,7.589415207398531e-19,-1.883801274693564e-18,1.3552527156068805e-19,-8.16433209950491e-19,0.0009920635493472219,3.0,3.0,8.0,6.0,0.07933752238750458,-0.031167328357696533,-0.031167328357696533,-0.014880952425301075,-0.018766533583402634,0.0034722222480922937,0.0052083334885537624,0.002314814832061529,0.0029761905316263437,0.0034722222480922937,0.002314814832061529,0.0029761905316263437,0.0007716049440205097,0.0013227512827143073,0.0012400794075801969,-0.031167328357696533,0.06588955223560333,0.0052083334885537624,0.002314814832061529,0.0029761905316263437,-0.02083333395421505,-0.0052083334885537624,-0.002314814832061529,-0.0029761905316263437,2.3129645794903686e-17,3.042548757187194e-18,3.965082408057119e-18,2.569960620900948e-18,1.7622588710026254e-18,4.543323428852619e-18,-0.031167328357696533,0.0052083334885537624,0.06588955223560333,0.002314814832061529,0.0029761905316263437,3.9650823253390577e-17,-0.0052083334885537624,-4.140411843338406e-20,-1.0732801211672986e-32,-0.02083333395421505,-0.002314814832061529,-0.0029761905316263437,2.535826392538488e-18,1.738541948479505e-18,4.543323428852619e-18,-0.014880952425301075,0.002314814832061529,0.002314814832061529,0.008109725080430508,0.0013227512827143073,1.4306115163884215e-17,-8.470921593976464e-33,-0.0006613756413571537,-3.872421121680277e-33,1.2764138005522065e-17,-0.0006613756413571537,-6.177830397213702e-33,-0.0007716049440205097,-0.0003779289545491338,-5.9034678116798724e-33,-0.018766533583402634,0.0029761905316263437,0.0029761905316263437,0.0013227512827143073,0.014327050186693668,1.9244416508050293e-17,-1.1394983628114074e-32,-2.4302010415136657e-33,-0.0011904762359336019,1.7261874683636274e-17,-2.371692252312041e-20,-0.0011904762359336019,-2.710505431213761e-20,-0.0005291005363687873,-0.0018601190531626344,0.0034722222480922937,-0.02083333395421505,3.9650823253390577e-17,1.4306115163884215e-17,1.9244416508050293e-17,0.010416666977107525,-6.167905738316459e-18,-1.566452191916676e-18,-2.8196140695271088e-18,-1.1564822897451843e-17,-1.5419764345791148e-18,-1.9825412040285595e-18,-1.284980310450474e-18,-8.811294355013127e-19,-2.2716617144263096e-18,0.0052083334885537624,-0.0052083334885537624,-0.0052083334885537624,-8.470921593976464e-33,-1.1394983628114074e-32,-6.167905738316459e-18,0.0052083334885537624,9.275260215682337e-34,1.6695469122912177e-33,6.847751239903047e-33,9.130334619195412e-34,1.173900178444481e-33,7.608612182662843e-34,5.217333871321315e-34,1.3450939410749579e-33,0.002314814832061529,-0.002314814832061529,-4.140411843338406e-20,-0.0006613756413571537,-2.4302010415136657e-33,-1.566452191916676e-18,9.275260215682337e-34,0.0006613756413571537,4.240119244366342e-34,1.925929944387236e-33,1.1829748239223098e-20,2.981333771948603e-34,1.4583742251870086e-35,-0.0,3.4161114797643424e-34,0.0029761905316263437,-0.0029761905316263437,-1.0732801211672986e-32,-3.872421121680277e-33,-0.0011904762359336019,-2.8196140695271088e-18,1.6695469122912177e-33,4.240119244366342e-34,0.0011904762359336019,3.1304005982992774e-33,4.173867280728044e-34,5.366400789507485e-34,3.4782225808808766e-34,2.3850670175588824e-34,6.149000847246809e-34,0.0034722222480922937,2.3129645794903686e-17,-0.02083333395421505,1.2764138005522065e-17,1.7261874683636274e-17,-1.1564822897451843e-17,6.847751239903047e-33,1.925929944387236e-33,3.1304005982992774e-33,0.010416666977107525,-1.566452191916676e-18,-2.8196140695271088e-18,-1.284980310450474e-18,-8.811294355013127e-19,-2.2716617144263096e-18,0.002314814832061529,3.042548757187194e-18,-0.002314814832061529,-0.0006613756413571537,-2.371692252312041e-20,-1.5419764345791148e-18,9.130334619195412e-34,1.1829748239223098e-20,4.173867280728044e-34,-1.566452191916676e-18,0.0006613756413571537,7.174869460888804e-34,9.7526621781855e-21,6.776263578034403e-21,6.778846332451737e-34,0.0029761905316263437,3.965082408057119e-18,-0.0029761905316263437,-6.177830397213702e-33,-0.0011904762359336019,-1.9825412040285595e-18,1.173900178444481e-33,2.981333771948603e-34,5.366400789507485e-34,-2.8196140695271088e-18,7.174869460888804e-34,0.0011904762359336019,5.923848220493742e-34,4.0620672068827865e-34,1.0472516824029184e-33,0.0007716049440205097,2.569960620900948e-18,2.535826392538488e-18,-0.0007716049440205097,-2.710505431213761e-20,-1.284980310450474e-18,7.608612182662843e-34,1.4583742251870086e-35,3.4782225808808766e-34,-1.284980310450474e-18,9.7526621781855e-21,5.923848220493742e-34,0.00011022927355952561,5.881285255304354e-21,5.604558240871485e-34,0.0013227512827143073,1.7622588710026254e-18,1.738541948479505e-18,-0.0003779289545491338,-0.0005291005363687873,-8.811294355013127e-19,5.217333871321315e-34,-0.0,2.3850670175588824e-34,-8.811294355013127e-19,6.776263578034403e-21,4.0620672068827865e-34,5.881285255304354e-21,0.0001511715818196535,3.843125414734885e-34,0.0012400794075801969,4.543323428852619e-18,4.543323428852619e-18,-5.9034678116798724e-33,-0.0018601190531626344,-2.2716617144263096e-18,1.3450939410749579e-33,3.4161114797643424e-34,6.149000847246809e-34,-2.2716617144263096e-18,6.778846332451737e-34,1.0472516824029184e-33,5.604558240871485e-34,3.843125414734885e-34,0.00037202381645329297,3.0,3.0,8.0,7.0,0.0699404776096344,-0.02703372947871685,-0.02703372947871685,-0.012896825559437275,-0.014384920708835125,0.0029761905316263437,0.004464285913854837,0.0019841270986944437,0.0022321429569274187,0.0029761905316263437,0.0019841270986944437,0.0022321429569274187,0.0006613756413571537,0.0009920635493472219,0.0008267195662483573,-0.02703372947871685,0.056795634329319,0.004464285913854837,0.0019841270986944437,0.0022321429569274187,-0.01785714365541935,-0.004464285913854837,-0.0019841270986944437,-0.0022321429569274187,1.9825411626695288e-17,2.642892308329136e-18,2.92877564739966e-18,2.200969411711456e-18,1.463236181492003e-18,2.8779052804985675e-18,-0.02703372947871685,0.004464285913854837,0.056795634329319,0.0019841270986944437,0.0022321429569274187,3.344358052745385e-17,-0.004464285913854837,-3.753007700342234e-21,-4.1235951968617175e-20,-0.01785714365541935,-0.0019841270986944437,-0.0022321429569274187,2.198444856481944e-18,1.4436668459578e-18,2.787839167066803e-18,-0.012896825559437275,0.0019841270986944437,0.0019841270986944437,0.00699168536812067,0.0009920635493472219,1.3315842658676557e-17,-6.75819693746962e-33,-0.0005668934318237007,1.2430938746341377e-19,1.1994148660520953e-17,-0.0005668934318237007,1.0842021724855044e-19,-0.0006613756413571537,-0.00028344671591185033,1.8103588290865187e-19,-0.014384920708835125,0.0022321429569274187,0.0022321429569274187,0.0009920635493472219,0.009093915112316608,1.390138892505182e-17,-7.055379541772757e-33,3.5670940109095395e-21,-0.0007440476329065859,1.2414483797512224e-17,-2.848402497778103e-21,-0.0007440476329065859,2.710505431213761e-20,-0.0003306878206785768,-0.0009920635493472219,0.0029761905316263437,-0.01785714365541935,3.344358052745385e-17,1.3315842658676557e-17,1.390138892505182e-17,0.008928571827709675,-4.5315224566436314e-18,-2.3017258005847025e-18,-1.5105074855478771e-18,-9.912705813347644e-18,-1.3216941015531808e-18,-1.4869058513226313e-18,-1.1014117685272467e-18,-6.608470507765904e-19,-1.4318352680661478e-18,0.004464285913854837,-0.004464285913854837,-0.004464285913854837,-6.75819693746962e-33,-7.055379541772757e-33,-4.5315224566436314e-18,0.004464285913854837,1.1681960921071158e-33,7.666286710959985e-34,5.031000843478201e-33,6.708000757295616e-34,7.546501081546309e-34,5.590000937198001e-34,3.354000378647808e-34,7.267001126521905e-34,0.0019841270986944437,-0.0019841270986944437,-3.753007700342234e-21,-0.0005668934318237007,3.5670940109095395e-21,-2.3017258005847025e-18,1.1681960921071158e-33,0.0005668934318237007,5.297318361061791e-22,2.5037089277034066e-33,-2.02124325078473e-34,1.2510025331226794e-21,2.1429173049853398e-35,-3.3881317890172014e-21,1.0016358512127847e-21,0.0022321429569274187,-0.0022321429569274187,-4.1235951968617175e-20,1.2430938746341377e-19,-0.0007440476329065859,-1.5105074855478771e-18,7.666286710959985e-34,5.297318361061791e-22,0.0007440476329065859,1.7333369499485123e-33,1.6524827264096707e-22,1.3552527156068805e-20,6.180204922862416e-22,-4.322788689417583e-20,-5.913503293928441e-21,0.0029761905316263437,1.9825411626695288e-17,-0.01785714365541935,1.1994148660520953e-17,1.2414483797512224e-17,-9.912705813347644e-18,5.031000843478201e-33,2.5037089277034066e-33,1.7333369499485123e-33,0.008928571827709675,-2.3017258005847025e-18,-1.5105074855478771e-18,-1.1014117685272467e-18,-6.608470507765904e-19,-1.4318352680661478e-18,0.0019841270986944437,2.642892308329136e-18,-0.0019841270986944437,-0.0005668934318237007,-2.848402497778103e-21,-1.3216941015531808e-18,6.708000757295616e-34,-2.02124325078473e-34,1.6524827264096707e-22,-2.3017258005847025e-18,0.0005668934318237007,1.2510025331226794e-21,6.042986868836985e-35,-0.0,2.2033104701698873e-22,0.0022321429569274187,2.92877564739966e-18,-0.0022321429569274187,1.0842021724855044e-19,-0.0007440476329065859,-1.4869058513226313e-18,7.546501081546309e-34,1.2510025331226794e-21,1.3552527156068805e-20,-1.5105074855478771e-18,1.2510025331226794e-21,0.0007440476329065859,1.45950293848076e-21,-4.0657581468206416e-20,2.5020050258556805e-20,0.0006613756413571537,2.200969411711456e-18,2.198444856481944e-18,-0.0006613756413571537,2.710505431213761e-20,-1.1014117685272467e-18,5.590000937198001e-34,2.1429173049853398e-35,6.180204922862416e-22,-1.1014117685272467e-18,6.042986868836985e-35,1.45950293848076e-21,9.448223863728344e-05,-6.32877461861777e-21,-2.3359277575909897e-21,0.0009920635493472219,1.463236181492003e-18,1.4436668459578e-18,-0.00028344671591185033,-0.0003306878206785768,-6.608470507765904e-19,3.354000378647808e-34,-3.3881317890172014e-21,-4.322788689417583e-20,-6.608470507765904e-19,-0.0,-4.0657581468206416e-20,-6.32877461861777e-21,9.448223863728344e-05,-5.485717712079336e-20,0.0008267195662483573,2.8779052804985675e-18,2.787839167066803e-18,1.8103588290865187e-19,-0.0009920635493472219,-1.4318352680661478e-18,7.267001126521905e-34,1.0016358512127847e-21,-5.913503293928441e-21,-1.4318352680661478e-18,2.2033104701698873e-22,2.5020050258556805e-20,-2.3359277575909897e-21,-5.485717712079336e-20,0.0001653439103392884,3.0,3.0,8.0,8.0,0.06254822760820389,-0.02387152798473835,-0.02387152798473835,-0.011381172575056553,-0.011381172575056553,0.0026041667442768812,0.00390625,0.0017361111240461469,0.0017361111240461469,0.0026041667442768812,0.0017361111240461469,0.0017361111240461469,0.0005787037080153823,0.0007716049440205097,0.0005787037080153823,-0.02387152798473835,0.0499131940305233,0.00390625,0.0017361111240461469,0.0017361111240461469,-0.015625,-0.00390625,-0.0017361111240461469,-0.0017361111240461469,1.734723475976807e-17,2.3157262460424688e-18,2.309680796535625e-18,1.8771217912471983e-18,1.061147821633039e-18,1.9081003255727686e-18,-0.02387152798473835,0.00390625,0.0499131940305233,0.0017361111240461469,0.0017361111240461469,2.89120568300393e-17,-0.00390625,9.369266387647872e-22,-1.4591593232922202e-21,-0.015625,-0.0017361111240461469,-0.0017361111240461469,1.9285635331564116e-18,1.03984275098097e-18,1.9257680762762887e-18,-0.011381172575056553,0.0017361111240461469,0.0017361111240461469,0.006145282182842493,0.0007716049440205097,1.146386054060607e-17,-5.0909767693090616e-33,-0.0004960317746736109,2.5726830855543618e-20,1.030737849901507e-17,-0.0004960317746736109,1.3552527156068805e-20,-0.0005787037080153823,-0.00022045854711905122,3.5469740541995375e-20,-0.011381172575056553,0.0017361111240461469,0.0017361111240461469,0.0007716049440205097,0.006145282182842493,1.146386054060607e-17,-5.0909767693090616e-33,-1.0391364356730778e-20,-0.0004960317746736109,1.030737849901507e-17,-1.6896256148298102e-20,-0.0004960317746736109,-1.3552527156068805e-20,-0.00022045854711905122,-0.0005787037080153823,0.0026041667442768812,-0.015625,2.89120568300393e-17,1.146386054060607e-17,1.146386054060607e-17,0.0078125,-3.469446951953614e-18,-1.7622588710026254e-18,-1.7622588710026254e-18,-8.673617379884035e-18,-1.1564823517837303e-18,-1.1564823517837303e-18,-9.63735310386038e-19,-5.139921448597049e-19,-9.63735310386038e-19,0.00390625,-0.00390625,-0.00390625,-5.0909767693090616e-33,-5.0909767693090616e-33,-3.469446951953614e-18,0.00390625,7.826001495748193e-34,7.826001495748193e-34,3.851859888774472e-33,5.135813338091789e-34,5.135813338091789e-34,4.2798445249394045e-34,2.282583654798853e-34,4.2798445249394045e-34,0.0017361111240461469,-0.0017361111240461469,9.369266387647872e-22,-0.0004960317746736109,-1.0391364356730778e-20,-1.7622588710026254e-18,7.826001495748193e-34,0.0004960317746736109,7.138738322981688e-22,1.5407439555097887e-33,-1.205945221597156e-21,9.382519250855585e-22,1.3552527156068805e-20,-0.0,1.1542390621962934e-21,0.0017361111240461469,-0.0017361111240461469,-1.4591593232922202e-21,2.5726830855543618e-20,-0.0004960317746736109,-1.7622588710026254e-18,7.826001495748193e-34,7.138738322981688e-22,0.0004960317746736109,1.7333369499485123e-33,4.169026637977772e-22,-1.5475143208341702e-34,8.328528380059288e-22,-9.475283638754608e-21,4.380084113872021e-21,0.0026041667442768812,1.734723475976807e-17,-0.015625,1.030737849901507e-17,1.030737849901507e-17,-8.673617379884035e-18,3.851859888774472e-33,1.5407439555097887e-33,1.7333369499485123e-33,0.0078125,-1.7622588710026254e-18,-1.7622588710026254e-18,-9.63735310386038e-19,-5.139921448597049e-19,-9.63735310386038e-19,0.0017361111240461469,2.3157262460424688e-18,-0.0017361111240461469,-0.0004960317746736109,-1.6896256148298102e-20,-1.1564823517837303e-18,5.135813338091789e-34,-1.205945221597156e-21,4.169026637977772e-22,-1.7622588710026254e-18,0.0004960317746736109,9.382519250855585e-22,-1.4069360750343161e-21,3.3881317890172014e-21,4.863864410974067e-22,0.0017361111240461469,2.309680796535625e-18,-0.0017361111240461469,1.3552527156068805e-20,-0.0004960317746736109,-1.1564823517837303e-18,5.135813338091789e-34,9.382519250855585e-22,-1.5475143208341702e-34,-1.7622588710026254e-18,9.382519250855585e-22,0.0004960317746736109,1.094627229104119e-21,-6.776263578034403e-21,4.761248319495443e-35,0.0005787037080153823,1.8771217912471983e-18,1.9285635331564116e-18,-0.0005787037080153823,-1.3552527156068805e-20,-9.63735310386038e-19,4.2798445249394045e-34,1.3552527156068805e-20,8.328528380059288e-22,-9.63735310386038e-19,-1.4069360750343161e-21,1.094627229104119e-21,8.26719551696442e-05,-4.474891108779263e-22,3.712602068071971e-22,0.0007716049440205097,1.061147821633039e-18,1.03984275098097e-18,-0.00022045854711905122,-0.00022045854711905122,-5.139921448597049e-19,2.282583654798853e-34,-0.0,-9.475283638754608e-21,-5.139921448597049e-19,3.3881317890172014e-21,-6.776263578034403e-21,-4.474891108779263e-22,6.29881615168415e-05,-1.1406096056276701e-20,0.0005787037080153823,1.9081003255727686e-18,1.9257680762762887e-18,3.5469740541995375e-20,-0.0005787037080153823,-9.63735310386038e-19,4.2798445249394045e-34,1.1542390621962934e-21,4.380084113872021e-21,-9.63735310386038e-19,4.863864410974067e-22,4.761248319495443e-35,3.712602068071971e-22,-1.1406096056276701e-20,8.26719551696442e-05,3.0,4.0,3.0,3.0,0.2282407432794571,-0.10833333432674408,-0.08888889104127884,-0.10833333432674408,-0.10833333432674408,0.013888888992369175,0.01666666753590107,0.02083333395421505,0.02083333395421505,0.009259259328246117,0.01666666753590107,0.01666666753590107,0.013888888992369175,0.02083333395421505,0.013888888992369175,-0.10833333432674408,0.24722221493721008,0.01666666753590107,0.02083333395421505,0.02083333395421505,-0.0833333358168602,-0.01666666753590107,-0.02083333395421505,-0.02083333395421505,4.317534058180552e-17,2.2204460823375376e-17,2.2204460823375376e-17,9.251858317961474e-17,2.7755575615628914e-17,9.251858317961474e-17,-0.08888889104127884,0.01666666753590107,0.1240740716457367,0.01666666753590107,0.01666666753590107,1.0012566696489741e-16,-0.011111111380159855,-5.928630443753574e-32,-5.928630443753574e-32,-0.02777777798473835,-0.011111111380159855,-0.011111111380159855,-1.1116182228974746e-31,-3.3348545511429886e-32,-1.1116182228974746e-31,-0.10833333432674408,0.02083333395421505,0.01666666753590107,0.24722221493721008,0.02083333395421505,1.477213416261781e-16,-4.1390848804317927e-32,-0.02083333395421505,-8.746860517434746e-32,-0.0,-0.01666666753590107,-3.492352867864325e-32,-0.0833333358168602,-0.02083333395421505,9.251858317961474e-17,-0.10833333432674408,0.02083333395421505,0.01666666753590107,0.02083333395421505,0.24722221493721008,1.477213416261781e-16,-4.1390848804317927e-32,-8.746860517434746e-32,-0.02083333395421505,2.3361545506843732e-32,-3.492352867864325e-32,-0.01666666753590107,1.1719021109596426e-16,-0.02083333395421505,-0.0833333358168602,0.013888888992369175,-0.0833333358168602,1.0012566696489741e-16,1.477213416261781e-16,1.477213416261781e-16,0.0416666679084301,-1.3158198577536201e-17,-2.4671622953265837e-17,-2.4671622953265837e-17,-2.158767029090276e-17,-1.1102230411687688e-17,-1.1102230411687688e-17,-4.625929158980737e-17,-1.3877787807814457e-17,-4.625929158980737e-17,0.01666666753590107,-0.01666666753590107,-0.011111111380159855,-4.1390848804317927e-32,-4.1390848804317927e-32,-1.3158198577536201e-17,0.011111111380159855,7.791219168920339e-33,7.791219168920339e-33,5.565156221244899e-34,-0.0,-0.0,1.4608535390712659e-32,4.3825606906821945e-33,1.4608535390712659e-32,0.02083333395421505,-0.02083333395421505,-5.928630443753574e-32,-0.02083333395421505,-8.746860517434746e-32,-2.4671622953265837e-17,7.791219168920339e-33,0.02083333395421505,1.4608535390712659e-32,1.2782468099531592e-32,6.573841219694284e-33,6.573841219694284e-33,2.739100495961219e-32,8.217301340946863e-33,2.739100495961219e-32,0.02083333395421505,-0.02083333395421505,-5.928630443753574e-32,-8.746860517434746e-32,-0.02083333395421505,-2.4671622953265837e-17,7.791219168920339e-33,1.4608535390712659e-32,0.02083333395421505,1.2782468099531592e-32,6.573841219694284e-33,6.573841219694284e-33,2.739100495961219e-32,8.217301340946863e-33,2.739100495961219e-32,0.009259259328246117,4.317534058180552e-17,-0.02777777798473835,-0.0,2.3361545506843732e-32,-2.158767029090276e-17,5.565156221244899e-34,1.2782468099531592e-32,1.2782468099531592e-32,0.009259259328246117,-0.0,0.0,2.3967127870292726e-32,7.190138214151024e-33,2.3967127870292726e-32,0.01666666753590107,2.2204460823375376e-17,-0.011111111380159855,-0.01666666753590107,-3.492352867864325e-32,-1.1102230411687688e-17,-0.0,6.573841219694284e-33,6.573841219694284e-33,-0.0,0.011111111380159855,0.0,1.232595164407831e-32,3.697785640160287e-33,1.232595164407831e-32,0.01666666753590107,2.2204460823375376e-17,-0.011111111380159855,-3.492352867864325e-32,-0.01666666753590107,-1.1102230411687688e-17,-0.0,6.573841219694284e-33,6.573841219694284e-33,0.0,0.0,0.011111111380159855,1.232595164407831e-32,3.697785640160287e-33,1.232595164407831e-32,0.013888888992369175,9.251858317961474e-17,-1.1116182228974746e-31,-0.0833333358168602,1.1719021109596426e-16,-4.625929158980737e-17,1.4608535390712659e-32,2.739100495961219e-32,2.739100495961219e-32,2.3967127870292726e-32,1.232595164407831e-32,1.232595164407831e-32,0.0416666679084301,-2.4671622953265837e-17,-4.625929158980737e-17,0.02083333395421505,2.7755575615628914e-17,-3.3348545511429886e-32,-0.02083333395421505,-0.02083333395421505,-1.3877787807814457e-17,4.3825606906821945e-33,8.217301340946863e-33,8.217301340946863e-33,7.190138214151024e-33,3.697785640160287e-33,3.697785640160287e-33,-2.4671622953265837e-17,0.02083333395421505,4.2798444514710075e-32,0.013888888992369175,9.251858317961474e-17,-1.1116182228974746e-31,9.251858317961474e-17,-0.0833333358168602,-4.625929158980737e-17,1.4608535390712659e-32,2.739100495961219e-32,2.739100495961219e-32,2.3967127870292726e-32,1.232595164407831e-32,1.232595164407831e-32,-4.625929158980737e-17,4.2798444514710075e-32,0.0416666679084301,3.0,4.0,3.0,4.0,0.1867361068725586,-0.08437500149011612,-0.06916666775941849,-0.08437500149011612,-0.06916666775941849,0.010416666977107525,0.012500000186264515,0.015625,0.012500000186264515,0.0069444444961845875,0.012500000186264515,0.009999999776482582,0.010416666977107525,0.012500000186264515,0.0069444444961845875,-0.08437500149011612,0.18854166567325592,0.012500000186264515,0.015625,0.012500000186264515,-0.0625,-0.012500000186264515,-0.015625,-0.012500000186264515,3.242585720643801e-17,1.6653346031121838e-17,1.2672154694225555e-17,6.938893903907228e-17,1.63813094887103e-17,3.264827945570862e-17,-0.06916666775941849,0.012500000186264515,0.094722218811512,0.012500000186264515,0.009999999776482582,8.169391239528861e-17,-0.008333333767950535,-3.6279385005183956e-32,-2.168404344971009e-19,-0.02083333395421505,-0.008333333767950535,-0.006666666828095913,-8.624956463529896e-32,-3.2526065174565133e-19,-3.673011499510757e-19,-0.08437500149011612,0.015625,0.012500000186264515,0.18854166567325592,0.012500000186264515,1.0824674754793072e-16,-4.5380749933445337e-32,-0.015625,-2.7203618052002133e-19,-0.0,-0.012500000186264515,-3.2526065174565133e-19,-0.0625,-0.012500000186264515,3.1963615445253576e-17,-0.06916666775941849,0.012500000186264515,0.009999999776482582,0.012500000186264515,0.094722218811512,8.169391239528861e-17,-2.3907644522980995e-19,-3.6279385005183956e-32,-0.008333333767950535,-3.604942031421944e-19,-2.131582828000389e-32,-0.006666666828095913,6.337523010669337e-17,-0.008333333767950535,-0.02083333395421505,0.010416666977107525,-0.0625,8.169391239528861e-17,1.0824674754793072e-16,8.169391239528861e-17,0.03125,-1.4802974433703992e-17,-1.3877787807814457e-17,-1.4802974433703992e-17,-1.6190751890996458e-17,-8.326673015560919e-18,-6.661337998858429e-18,-3.469446951953614e-17,-8.326673015560919e-18,-1.6190751890996458e-17,0.012500000186264515,-0.012500000186264515,-0.008333333767950535,-4.5380749933445337e-32,-2.3907644522980995e-19,-1.4802974433703992e-17,0.008333333767950535,6.573841219694284e-33,-1.1827660092852542e-20,6.260800921092066e-34,-0.0,2.168404344971009e-19,1.6434602681893725e-32,3.9584687775284066e-33,-2.2762210693392165e-20,0.015625,-0.015625,-3.6279385005183956e-32,-0.015625,-3.6279385005183956e-32,-1.3877787807814457e-17,6.573841219694284e-33,0.015625,6.573841219694284e-33,7.190138214151024e-33,3.697785640160287e-33,2.958228328457237e-33,1.5407439555097887e-32,3.697785640160287e-33,7.190138214151024e-33,0.012500000186264515,-0.012500000186264515,-2.168404344971009e-19,-2.7203618052002133e-19,-0.008333333767950535,-1.4802974433703992e-17,-1.1827660092852542e-20,6.573841219694284e-33,0.008333333767950535,-2.956915103992492e-20,3.944304437942983e-33,2.168404344971009e-19,1.506777605432397e-32,1.8135744937178186e-19,-1.550871753940751e-19,0.0069444444961845875,3.242585720643801e-17,-0.02083333395421505,-0.0,-3.604942031421944e-19,-1.6190751890996458e-17,6.260800921092066e-34,7.190138214151024e-33,-2.956915103992492e-20,0.0069444444961845875,-0.0,0.0,1.7975346637403514e-32,4.345379437023701e-33,-4.925153889940915e-20,0.012500000186264515,1.6653346031121838e-17,-0.008333333767950535,-0.012500000186264515,-2.131582828000389e-32,-8.326673015560919e-18,-0.0,3.697785640160287e-33,3.944304437942983e-33,-0.0,0.008333333767950535,1.4737356347251334e-33,9.244463733058732e-33,2.218671384096172e-33,4.3140830019590114e-33,0.009999999776482582,1.2672154694225555e-17,-0.006666666828095913,-3.2526065174565133e-19,-0.006666666828095913,-6.661337998858429e-18,2.168404344971009e-19,2.958228328457237e-33,2.168404344971009e-19,0.0,1.4737356347251334e-33,0.004444444552063942,4.4296388720906425e-33,2.168404344971009e-19,3.673011499510757e-19,0.010416666977107525,6.938893903907228e-17,-8.624956463529896e-32,-0.0625,6.337523010669337e-17,-3.469446951953614e-17,1.6434602681893725e-32,1.5407439555097887e-32,1.506777605432397e-32,1.7975346637403514e-32,9.244463733058732e-33,4.4296388720906425e-33,0.03125,-1.4802974433703992e-17,-1.6190751890996458e-17,0.012500000186264515,1.63813094887103e-17,-3.2526065174565133e-19,-0.012500000186264515,-0.008333333767950535,-8.326673015560919e-18,3.9584687775284066e-33,3.697785640160287e-33,1.8135744937178186e-19,4.345379437023701e-33,2.218671384096172e-33,2.168404344971009e-19,-1.4802974433703992e-17,0.008333333767950535,2.7859370652482374e-19,0.0069444444961845875,3.264827945570862e-17,-3.673011499510757e-19,3.1963615445253576e-17,-0.02083333395421505,-1.6190751890996458e-17,-2.2762210693392165e-20,7.190138214151024e-33,-1.550871753940751e-19,-4.925153889940915e-20,4.3140830019590114e-33,3.673011499510757e-19,-1.6190751890996458e-17,2.7859370652482374e-19,0.0069444444961845875,3.0,4.0,3.0,5.0,0.1582142859697342,-0.06916666775941849,-0.05666666850447655,-0.06916666775941849,-0.04809523746371269,0.008333333767950535,0.009999999776482582,0.012500000186264515,0.008333333767950535,0.0055555556900799274,0.009999999776482582,0.006666666828095913,0.008333333767950535,0.008333333767950535,0.003968254197388887,-0.06916666775941849,0.1525000035762787,0.009999999776482582,0.012500000186264515,0.008333333767950535,-0.05000000074505806,-0.009999999776482582,-0.012500000186264515,-0.008333333767950535,-1.2952602009105534e-17,-6.661337998858429e-18,-4.8745728682331544e-18,-2.7755575615628914e-17,-5.351788666456328e-18,-7.826441330383763e-18,-0.05666666850447655,0.009999999776482582,0.07666666805744171,0.009999999776482582,0.006666666828095913,-2.7200464632711927e-17,-0.006666666828095913,-0.0,-4.336808689942018e-19,-0.01666666753590107,-0.006666666828095913,-0.004444444552063942,-1.6309635877457808e-32,1.0842021724855044e-19,-7.676649674798373e-19,-0.06916666775941849,0.012500000186264515,0.009999999776482582,0.1525000035762787,0.008333333767950535,-3.8302694217219e-17,-0.0,-0.012500000186264515,1.9932639721584785e-19,-9.922391161645115e-33,-0.009999999776482582,1.0842021724855044e-19,-0.05000000074505806,-0.008333333767950535,-7.796532133795071e-18,-0.04809523746371269,0.008333333767950535,0.006666666828095913,0.008333333767950535,0.047857142984867096,-2.1966555407399e-17,-0.0,-0.0,-0.004166666883975267,-5.690481092280336e-33,-2.9265331436682295e-33,-0.0033333334140479565,-1.5860329632228476e-17,-0.004166666883975267,-0.007936508394777775,0.008333333767950535,-0.05000000074505806,-2.7200464632711927e-17,-3.8302694217219e-17,-2.1966555407399e-17,0.02500000037252903,-0.0,-0.0,4.6638028224659006e-35,6.476301004552767e-18,3.3306689994292145e-18,2.2204459996194763e-18,1.3877787807814457e-17,2.775557602921922e-18,3.965082408057119e-18,0.009999999776482582,-0.009999999776482582,-0.006666666828095913,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.012500000186264515,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.008333333767950535,-4.336808689942018e-19,1.9932639721584785e-19,-0.004166666883975267,4.6638028224659006e-35,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,2.168404344971009e-19,1.5646415260732654e-34,-9.966319860792392e-20,-5.1861484371295753e-20,0.0055555556900799274,-1.2952602009105534e-17,-0.01666666753590107,-9.922391161645115e-33,-5.690481092280336e-33,6.476301004552767e-18,-0.0,-0.0,-0.0,0.0055555556900799274,8.628166187589015e-34,5.75211079172601e-34,3.595069107075512e-33,7.1901384896575126e-34,1.0271626676183578e-33,0.009999999776482582,-6.661337998858429e-18,-0.006666666828095913,-0.009999999776482582,-2.9265331436682295e-33,3.3306689994292145e-18,-0.0,-0.0,-0.0,8.628166187589015e-34,0.006666666828095913,2.958228420292733e-34,1.8488928200801433e-33,3.6977854105715463e-34,5.282550848917912e-34,0.006666666828095913,-4.8745728682331544e-18,-0.004444444552063942,1.0842021724855044e-19,-0.0033333334140479565,2.2204459996194763e-18,-0.0,-0.0,2.168404344971009e-19,5.75211079172601e-34,2.958228420292733e-34,0.002222222276031971,1.8377675007335797e-33,-5.421010862427522e-20,3.8383248373991867e-19,0.008333333767950535,-2.7755575615628914e-17,-1.6309635877457808e-32,-0.05000000074505806,-1.5860329632228476e-17,1.3877787807814457e-17,-0.0,-0.0,1.5646415260732654e-34,3.595069107075512e-33,1.8488928200801433e-33,1.8377675007335797e-33,0.02500000037252903,1.1555579666323415e-33,3.965082408057119e-18,0.008333333767950535,-5.351788666456328e-18,1.0842021724855044e-19,-0.008333333767950535,-0.004166666883975267,2.775557602921922e-18,-0.0,-0.0,-9.966319860792392e-20,7.1901384896575126e-34,3.6977854105715463e-34,-5.421010862427522e-20,1.1555579666323415e-33,0.004166666883975267,-6.681599865511098e-20,0.003968254197388887,-7.826441330383763e-18,-7.676649674798373e-19,-7.796532133795071e-18,-0.007936508394777775,3.965082408057119e-18,-0.0,-0.0,-5.1861484371295753e-20,1.0271626676183578e-33,5.282550848917912e-34,3.8383248373991867e-19,3.965082408057119e-18,-6.681599865511098e-20,0.0019841270986944437,3.0,4.0,3.0,6.0,0.1373346596956253,-0.05863095074892044,-0.04801587387919426,-0.05863095074892044,-0.03541666641831398,0.0069444444961845875,0.008333333767950535,0.010416666977107525,0.0059523810632526875,0.004629629664123058,0.008333333767950535,0.004761904943734407,0.0069444444961845875,0.0059523810632526875,0.0024801588151603937,-0.05863095074892044,0.12807539105415344,0.008333333767950535,0.010416666977107525,0.0059523810632526875,-0.0416666679084301,-0.008333333767950535,-0.010416666977107525,-0.0059523810632526875,2.158767029090276e-17,1.1102230411687688e-17,5.937555790055142e-18,4.625929158980737e-17,7.930164816114238e-18,9.06350399852723e-18,-0.04801587387919426,0.008333333767950535,0.06441798806190491,0.008333333767950535,0.004761904943734407,5.244188433349002e-17,-0.0055555556900799274,-3.1051832322698653e-32,-4.0657581468206416e-19,-0.013888888992369175,-0.0055555556900799274,-0.0031746032182127237,-5.531609577752048e-32,-7.320058257907719e-33,-6.027045255202381e-19,-0.05863095074892044,0.010416666977107525,0.008333333767950535,0.12807539105415344,0.0059523810632526875,7.683448437689069e-17,-2.4264081253197453e-32,-0.010416666977107525,-1.5925372651645756e-32,-3.9808257249918865e-32,-0.008333333767950535,-6.71299256752478e-33,-0.0416666679084301,-0.0059523810632526875,9.086646857705238e-18,-0.03541666641831398,0.0059523810632526875,0.004761904943734407,0.0059523810632526875,0.027807539328932762,3.707902608473461e-17,-1.1709436448482698e-32,-2.1955194351095517e-32,-0.0023809524718672037,-1.9210794138853615e-32,-9.87983753146138e-33,-0.0019047618843615055,2.8355844042546395e-17,-0.0023809524718672037,-0.0037202381063252687,0.0069444444961845875,-0.0416666679084301,5.244188433349002e-17,7.683448437689069e-17,3.707902608473461e-17,0.02083333395421505,-6.579099288768101e-18,-1.2335811476632919e-17,-5.6392281390542176e-18,-1.079383514545138e-17,-5.551115205843844e-18,-3.1720658023686032e-18,-2.3129645794903686e-17,-3.965082408057119e-18,-4.543323428852619e-18,0.008333333767950535,-0.008333333767950535,-0.0055555556900799274,-2.4264081253197453e-32,-1.1709436448482698e-32,-6.579099288768101e-18,0.0055555556900799274,3.8956095844601695e-33,1.7808500642667645e-33,3.40865811089616e-33,1.7530242762728778e-33,1.0017280922734329e-33,7.304267695356329e-33,1.2521601842184133e-33,1.4347668949694207e-33,0.010416666977107525,-0.010416666977107525,-3.1051832322698653e-32,-0.010416666977107525,-2.1955194351095517e-32,-1.2335811476632919e-17,3.8956095844601695e-33,0.010416666977107525,3.3390938245824354e-33,6.391234049765796e-33,3.286920609847142e-33,1.878240322245368e-33,1.3695502479806094e-32,2.347800356888962e-33,2.6901878821499158e-33,0.0059523810632526875,-0.0059523810632526875,-4.0657581468206416e-19,-1.5925372651645756e-32,-0.0023809524718672037,-5.6392281390542176e-18,1.7808500642667645e-33,3.3390938245824354e-33,0.0023809524718672037,2.9217070046741348e-33,1.5025921843278974e-33,1.6263032587282567e-19,5.885938252173235e-33,-5.757940509022119e-34,9.257008931236477e-21,0.004629629664123058,2.158767029090276e-17,-0.013888888992369175,-3.9808257249918865e-32,-1.9210794138853615e-32,-1.079383514545138e-17,3.40865811089616e-33,6.391234049765796e-33,2.9217070046741348e-33,0.004629629664123058,2.876055395863005e-33,1.643460304923571e-33,1.1983563935146363e-32,2.0543253352367157e-33,2.3539143968811763e-33,0.008333333767950535,1.1102230411687688e-17,-0.0055555556900799274,-0.008333333767950535,-9.87983753146138e-33,-5.551115205843844e-18,1.7530242762728778e-33,3.286920609847142e-33,1.5025921843278974e-33,2.876055395863005e-33,0.0055555556900799274,8.452080807255683e-34,6.162975822039155e-33,1.0565101697835825e-33,1.2105845102332636e-33,0.004761904943734407,5.937555790055142e-18,-0.0031746032182127237,-6.71299256752478e-33,-0.0019047618843615055,-3.1720658023686032e-18,1.0017280922734329e-33,1.878240322245368e-33,1.6263032587282567e-19,1.643460304923571e-33,8.452080807255683e-34,0.0012698412174358964,2.359264181874364e-33,-4.60635277455968e-34,2.4108181537797406e-19,0.0069444444961845875,4.625929158980737e-17,-5.531609577752048e-32,-0.0416666679084301,2.8355844042546395e-17,-2.3129645794903686e-17,7.304267695356329e-33,1.3695502479806094e-32,5.885938252173235e-33,1.1983563935146363e-32,6.162975822039155e-33,2.359264181874364e-33,0.02083333395421505,-5.6392281390542176e-18,-4.543323428852619e-18,0.0059523810632526875,7.930164816114238e-18,-7.320058257907719e-33,-0.0059523810632526875,-0.0023809524718672037,-3.965082408057119e-18,1.2521601842184133e-33,2.347800356888962e-33,-5.757940509022119e-34,2.0543253352367157e-33,1.0565101697835825e-33,-4.60635277455968e-34,-5.6392281390542176e-18,0.0023809524718672037,3.981084370483266e-34,0.0024801588151603937,9.06350399852723e-18,-6.027045255202381e-19,9.086646857705238e-18,-0.0037202381063252687,-4.543323428852619e-18,1.4347668949694207e-33,2.6901878821499158e-33,9.257008931236477e-21,2.3539143968811763e-33,1.2105845102332636e-33,2.4108181537797406e-19,-4.543323428852619e-18,3.981084370483266e-34,0.0007440476329065859,3.0,4.0,3.0,7.0,0.12136243283748627,-0.05089285597205162,-0.0416666679084301,-0.05089285597205162,-0.02718253992497921,0.0059523810632526875,0.0071428571827709675,0.008928571827709675,0.004464285913854837,0.003968254197388887,0.0071428571827709675,0.0035714285913854837,0.0059523810632526875,0.004464285913854837,0.0016534391324967146,-0.05089285597205162,0.11041666567325592,0.0071428571827709675,0.008928571827709675,0.004464285913854837,-0.0357142873108387,-0.0071428571827709675,-0.008928571827709675,-0.004464285913854837,-4.163336342344337e-17,-3.469446951953614e-18,-6.938893903907228e-18,1.734723475976807e-17,4.336808689942018e-18,-6.938893903907228e-18,-0.0416666679084301,0.0071428571827709675,0.0555555559694767,0.0071428571827709675,0.0035714285913854837,-6.174904596197332e-17,-0.004761904943734407,-8.673617379884035e-18,-6.451002926288751e-18,-0.011904762126505375,-0.004761904943734407,-0.0023809524718672037,-6.938893903907228e-17,-1.0191500421363742e-17,-5.041540102057596e-18,-0.05089285597205162,0.008928571827709675,0.0071428571827709675,0.11041666567325592,0.004464285913854837,1.2175616370483449e-17,1.0861893084710406e-17,-0.008928571827709675,1.6263032587282567e-19,-5.574969688502832e-17,-0.0071428571827709675,-7.860465750519907e-18,-0.0357142873108387,-0.004464285913854837,-7.697835424647081e-18,-0.02718253992497921,0.004464285913854837,0.0035714285913854837,0.004464285913854837,0.01765873096883297,-2.6020852139652106e-17,-5.419237800784515e-18,-9.3366100854708e-18,-0.0014880952658131719,-2.155576924339904e-17,-4.117202990657152e-18,-0.0011904762359336019,-2.1604152691788492e-17,-0.0014880952658131719,-0.0019841270986944437,0.0059523810632526875,-0.0357142873108387,-6.174904596197332e-17,1.2175616370483449e-17,-2.6020852139652106e-17,0.01785714365541935,1.2050478833055202e-17,-2.451860322533996e-18,9.770327350411954e-18,1.2306297672377026e-17,4.382314790570704e-18,1.9510411323267745e-18,-6.634934393705736e-18,-6.3575266573841605e-19,2.6020852139652106e-18,0.0071428571827709675,-0.0071428571827709675,-0.004761904943734407,1.0861893084710406e-17,-5.419237800784515e-18,1.2050478833055202e-17,0.004761904943734407,-1.734723475976807e-18,1.8018917307882435e-19,3.575600280733463e-18,-1.8019273512533716e-18,1.0949947081302135e-18,-1.9684243328995763e-18,-6.269531183820769e-19,6.505213034913027e-19,0.008928571827709675,-0.008928571827709675,-8.673617379884035e-18,-0.008928571827709675,-9.3366100854708e-18,-2.451860322533996e-18,-1.734723475976807e-18,0.008928571827709675,8.05962240768912e-19,3.321601238759255e-18,-1.185825136447977e-18,8.7136560234589e-19,-5.653505690017189e-18,-1.1726488730730432e-18,1.4094628242311558e-18,0.004464285913854837,-0.004464285913854837,-6.451002926288751e-18,1.6263032587282567e-19,-0.0014880952658131719,9.770327350411954e-18,1.8018917307882435e-19,8.05962240768912e-19,0.0014880952658131719,1.8431436932253575e-18,-1.7372639802825047e-19,2.8428587236192497e-19,-1.7074744922380853e-19,-1.4815023198205228e-19,2.710505431213761e-19,0.003968254197388887,-4.163336342344337e-17,-0.011904762126505375,-5.574969688502832e-17,-2.155576924339904e-17,1.2306297672377026e-17,3.575600280733463e-18,3.321601238759255e-18,1.8431436932253575e-18,0.003968254197388887,4.3109936237951566e-18,6.384569983343086e-18,1.773033187994343e-17,3.0230148870217544e-18,9.75781955236954e-19,0.0071428571827709675,-3.469446951953614e-18,-0.004761904943734407,-0.0071428571827709675,-4.117202990657152e-18,4.382314790570704e-18,-1.8019273512533716e-18,-1.185825136447977e-18,-1.7372639802825047e-19,4.3109936237951566e-18,0.004761904943734407,1.6263032587282567e-19,1.2766772575773046e-17,3.125054491519012e-19,3.2526065174565133e-19,0.0035714285913854837,-6.938893903907228e-18,-0.0023809524718672037,-7.860465750519907e-18,-0.0011904762359336019,1.9510411323267745e-18,1.0949947081302135e-18,8.7136560234589e-19,2.8428587236192497e-19,6.384569983343086e-18,1.6263032587282567e-19,0.0007936508045531809,2.528178487389976e-18,5.609943050237696e-19,1.6263032587282567e-19,0.0059523810632526875,1.734723475976807e-17,-6.938893903907228e-17,-0.0357142873108387,-2.1604152691788492e-17,-6.634934393705736e-18,-1.9684243328995763e-18,-5.653505690017189e-18,-1.7074744922380853e-19,1.773033187994343e-17,1.2766772575773046e-17,2.528178487389976e-18,0.01785714365541935,3.144186300207963e-18,2.3852447794681098e-18,0.004464285913854837,4.336808689942018e-18,-1.0191500421363742e-17,-0.004464285913854837,-0.0014880952658131719,-6.3575266573841605e-19,-6.269531183820769e-19,-1.1726488730730432e-18,-1.4815023198205228e-19,3.0230148870217544e-18,3.125054491519012e-19,5.609943050237696e-19,3.144186300207963e-18,0.0014880952658131719,3.2526065174565133e-19,0.0016534391324967146,-6.938893903907228e-18,-5.041540102057596e-18,-7.697835424647081e-18,-0.0019841270986944437,2.6020852139652106e-18,6.505213034913027e-19,1.4094628242311558e-18,2.710505431213761e-19,9.75781955236954e-19,3.2526065174565133e-19,1.6263032587282567e-19,2.3852447794681098e-18,3.2526065174565133e-19,0.0003306878206785768,3.0,4.0,3.0,8.0,0.10873842239379883,-0.04496527835726738,-0.03680555522441864,-0.04496527835726738,-0.02152777835726738,0.0052083334885537624,0.0062500000931322575,0.0078125,0.0034722222480922937,0.0034722222480922937,0.0062500000931322575,0.0027777778450399637,0.0052083334885537624,0.0034722222480922937,0.0011574074160307646,-0.04496527835726738,0.09704861044883728,0.0062500000931322575,0.0078125,0.0034722222480922937,-0.03125,-0.0062500000931322575,-0.0078125,-0.0034722222480922937,2.5153490401663703e-17,1.8214596497756474e-17,3.0357660829594124e-18,5.204170427930421e-18,-1.0842021724855044e-18,-6.071532165918825e-18,-0.03680555522441864,0.0062500000931322575,0.048842594027519226,0.0062500000931322575,0.0027777778450399637,4.358199911454884e-17,-0.004166666883975267,1.1275702593849246e-17,7.26415455565288e-18,-0.010416666977107525,-0.004166666883975267,-0.0018518518190830946,2.949029909160572e-17,4.336808689942018e-19,-4.228388472693467e-18,-0.04496527835726738,0.0078125,0.0062500000931322575,0.09704861044883728,0.0034722222480922937,2.423763065077101e-18,7.717810182079012e-18,-0.0078125,4.824699667560495e-18,1.3136099620291235e-17,-0.0062500000931322575,2.1141942363467336e-18,-0.03125,-0.0034722222480922937,-7.914675859144182e-18,-0.02152777835726738,0.0034722222480922937,0.0027777778450399637,0.0034722222480922937,0.011937830597162247,-1.1058862159352145e-17,-7.288835143589624e-18,-8.384956988702018e-18,-0.0009920635493472219,-4.1313442636142055e-19,-6.15137866967765e-18,-0.0007936508045531809,-1.41338845798221e-17,-0.0009920635493472219,-0.0011574074160307646,0.0052083334885537624,-0.03125,4.358199911454884e-17,2.423763065077101e-18,-1.1058862159352145e-17,0.015625,-4.03691518604153e-18,-1.5178830414797062e-18,7.379770029309117e-20,-8.727914342472629e-18,-6.323287894071789e-18,-1.0450167657124893e-18,5.417945744667707e-18,1.6518876602298699e-21,1.734723475976807e-18,0.0062500000931322575,-0.0062500000931322575,-0.004166666883975267,7.717810182079012e-18,-7.288835143589624e-18,-4.03691518604153e-18,0.004166666883975267,-0.0,9.642514678570968e-22,2.5344896686686023e-18,-4.690727996286546e-20,5.82466776352304e-19,-4.0822558505477055e-18,2.1216589468389594e-19,8.131516293641283e-19,0.0078125,-0.0078125,1.1275702593849246e-17,-0.0078125,-8.384956988702018e-18,-1.5178830414797062e-18,-0.0,0.0078125,2.322593654584249e-19,-3.0716696506521234e-18,-8.069980259921932e-19,-3.098417724831156e-19,-1.1289542979858483e-18,9.950605367858446e-19,9.75781955236954e-19,0.0034722222480922937,-0.0034722222480922937,7.26415455565288e-18,4.824699667560495e-18,-0.0009920635493472219,7.379770029309117e-20,9.642514678570968e-22,2.322593654584249e-19,0.0009920635493472219,-1.6805133673525319e-18,-8.810569538001377e-19,-3.266229148169496e-19,-1.4425031062335145e-18,-1.5675837749946486e-19,2.710505431213761e-19,0.0034722222480922937,2.5153490401663703e-17,-0.010416666977107525,1.3136099620291235e-17,-4.1313442636142055e-19,-8.727914342472629e-18,2.5344896686686023e-18,-3.0716696506521234e-18,-1.6805133673525319e-18,0.0034722222480922937,1.875748051044901e-18,-7.437848318821026e-19,-5.5985337480487525e-18,-3.347443550167542e-19,4.87890977618477e-19,0.0062500000931322575,1.8214596497756474e-17,-0.004166666883975267,-0.0062500000931322575,-6.15137866967765e-18,-6.323287894071789e-18,-4.690727996286546e-20,-8.069980259921932e-19,-8.810569538001377e-19,1.875748051044901e-18,0.004166666883975267,1.6263032587282567e-19,-4.315468257318762e-18,6.093105449884514e-19,7.047314121155779e-19,0.0027777778450399637,3.0357660829594124e-18,-0.0018518518190830946,2.1141942363467336e-18,-0.0007936508045531809,-1.0450167657124893e-18,5.82466776352304e-19,-3.098417724831156e-19,-3.266229148169496e-19,-7.437848318821026e-19,1.6263032587282567e-19,0.0005291005363687873,-7.991939388042734e-19,-9.031159220323663e-20,1.3552527156068805e-19,0.0052083334885537624,5.204170427930421e-18,2.949029909160572e-17,-0.03125,-1.41338845798221e-17,5.417945744667707e-18,-4.0822558505477055e-18,-1.1289542979858483e-18,-1.4425031062335145e-18,-5.5985337480487525e-18,-4.315468257318762e-18,-7.991939388042734e-19,0.015625,9.215718466126788e-19,2.2768245622195593e-18,0.0034722222480922937,-1.0842021724855044e-18,4.336808689942018e-19,-0.0034722222480922937,-0.0009920635493472219,1.6518876602298699e-21,2.1216589468389594e-19,9.950605367858446e-19,-1.5675837749946486e-19,-3.347443550167542e-19,6.093105449884514e-19,-9.031159220323663e-20,9.215718466126788e-19,0.0009920635493472219,2.710505431213761e-19,0.0011574074160307646,-6.071532165918825e-18,-4.228388472693467e-18,-7.914675859144182e-18,-0.0011574074160307646,1.734723475976807e-18,8.131516293641283e-19,9.75781955236954e-19,2.710505431213761e-19,4.87890977618477e-19,7.047314121155779e-19,1.3552527156068805e-19,2.2768245622195593e-18,2.710505431213761e-19,0.0001653439103392884,3.0,4.0,4.0,3.0,0.1867361068725586,-0.08437500149011612,-0.06916666775941849,-0.06916666775941849,-0.08437500149011612,0.010416666977107525,0.012500000186264515,0.012500000186264515,0.015625,0.0069444444961845875,0.009999999776482582,0.012500000186264515,0.0069444444961845875,0.012500000186264515,0.010416666977107525,-0.08437500149011612,0.18854166567325592,0.012500000186264515,0.012500000186264515,0.015625,-0.0625,-0.012500000186264515,-0.012500000186264515,-0.015625,3.242585720643801e-17,1.2672154694225555e-17,1.6653346031121838e-17,3.2356092793575287e-17,1.6653346031121838e-17,6.938893903907228e-17,-0.06916666775941849,0.012500000186264515,0.094722218811512,0.009999999776482582,0.012500000186264515,8.169391239528861e-17,-0.008333333767950535,-2.168404344971009e-19,-3.6279385005183956e-32,-0.02083333395421505,-0.006666666828095913,-0.008333333767950535,6.637972550547461e-20,-1.910588714551448e-32,-9.069845810485608e-32,-0.06916666775941849,0.012500000186264515,0.009999999776482582,0.094722218811512,0.012500000186264515,8.169391239528861e-17,-3.6877448786900335e-19,-0.008333333767950535,-3.6279385005183956e-32,-4.336808689942018e-19,-0.006666666828095913,-1.1214374492656376e-19,-0.02083333395421505,-0.008333333767950535,-9.069845810485608e-32,-0.08437500149011612,0.015625,0.012500000186264515,0.012500000186264515,0.18854166567325592,1.0824674754793072e-16,-4.5359502873054224e-32,-4.5363023478634937e-32,-0.015625,5.1494574839665933e-20,-1.1214374492656376e-19,-0.012500000186264515,-0.0,-0.012500000186264515,-0.0625,0.010416666977107525,-0.0625,8.169391239528861e-17,8.169391239528861e-17,1.0824674754793072e-16,0.03125,-1.4802974433703992e-17,-1.4802974433703992e-17,-1.3877787807814457e-17,-1.6190751890996458e-17,-6.661337998858429e-18,-8.326673015560919e-18,-1.6190751890996458e-17,-8.326673015560919e-18,-3.469446951953614e-17,0.012500000186264515,-0.012500000186264515,-0.008333333767950535,-3.6877448786900335e-19,-4.5359502873054224e-32,-1.4802974433703992e-17,0.008333333767950535,-1.1827660092852542e-20,6.573841219694284e-33,6.260800921092066e-34,2.168404344971009e-19,-0.0,1.6941276099371154e-20,3.944304437942983e-33,1.6434602681893725e-32,0.012500000186264515,-0.012500000186264515,-2.168404344971009e-19,-0.008333333767950535,-4.5363023478634937e-32,-1.4802974433703992e-17,-1.1827660092852542e-20,0.008333333767950535,6.573841219694284e-33,-2.956915103992492e-20,2.168404344971009e-19,3.946651753224781e-33,6.260800921092066e-34,-0.0,1.6434602681893725e-32,0.015625,-0.015625,-3.6279385005183956e-32,-3.6279385005183956e-32,-0.015625,-1.3877787807814457e-17,6.573841219694284e-33,6.573841219694284e-33,0.015625,7.190138214151024e-33,2.958228328457237e-33,3.697785640160287e-33,7.190138214151024e-33,3.697785640160287e-33,1.5407439555097887e-32,0.0069444444961845875,3.242585720643801e-17,-0.02083333395421505,-4.336808689942018e-19,5.1494574839665933e-20,-1.6190751890996458e-17,6.260800921092066e-34,-2.956915103992492e-20,7.190138214151024e-33,0.0069444444961845875,-0.0,0.0,4.974057147028348e-21,4.3140830019590114e-33,1.7975346637403514e-32,0.009999999776482582,1.2672154694225555e-17,-0.006666666828095913,-0.006666666828095913,-1.1214374492656376e-19,-6.661337998858429e-18,2.168404344971009e-19,2.168404344971009e-19,2.958228328457237e-33,-0.0,0.004444444552063942,7.476249015536063e-20,-6.637972550547461e-20,-0.0,7.395571280320573e-33,0.012500000186264515,1.6653346031121838e-17,-0.008333333767950535,-1.1214374492656376e-19,-0.012500000186264515,-8.326673015560919e-18,-0.0,3.946651753224781e-33,3.697785640160287e-33,0.0,7.476249015536063e-20,0.008333333767950535,4.31528678164265e-33,2.2193333343524788e-33,9.244463733058732e-33,0.0069444444961845875,3.2356092793575287e-17,6.637972550547461e-20,-0.02083333395421505,-0.0,-1.6190751890996458e-17,1.6941276099371154e-20,6.260800921092066e-34,7.190138214151024e-33,4.974057147028348e-21,-6.637972550547461e-20,4.31528678164265e-33,0.0069444444961845875,3.5217004894156947e-34,1.7975346637403514e-32,0.012500000186264515,1.6653346031121838e-17,-1.910588714551448e-32,-0.008333333767950535,-0.012500000186264515,-8.326673015560919e-18,3.944304437942983e-33,-0.0,3.697785640160287e-33,4.3140830019590114e-33,-0.0,2.2193333343524788e-33,3.5217004894156947e-34,0.008333333767950535,9.244463733058732e-33,0.010416666977107525,6.938893903907228e-17,-9.069845810485608e-32,-9.069845810485608e-32,-0.0625,-3.469446951953614e-17,1.6434602681893725e-32,1.6434602681893725e-32,1.5407439555097887e-32,1.7975346637403514e-32,7.395571280320573e-33,9.244463733058732e-33,1.7975346637403514e-32,9.244463733058732e-33,0.03125,3.0,4.0,4.0,4.0,0.1521874964237213,-0.06562499701976776,-0.05375000089406967,-0.05375000089406967,-0.05375000089406967,0.0078125,0.00937500037252903,0.00937500037252903,0.00937500037252903,0.0052083334885537624,0.007499999832361937,0.007499999832361937,0.0052083334885537624,0.007499999832361937,0.0052083334885537624,-0.06562499701976776,0.14374999701976776,0.00937500037252903,0.00937500037252903,0.00937500037252903,-0.046875,-0.00937500037252903,-0.00937500037252903,-0.00937500037252903,2.429426150345792e-17,9.683481657900012e-18,9.657869664593532e-18,2.4096022706575912e-17,9.681179614255277e-18,2.48527788161374e-17,-0.05375000089406967,0.00937500037252903,0.07229166477918625,0.007499999832361937,0.007499999832361937,5.974387413036107e-17,-0.0062500000931322575,-1.891012040737736e-19,-1.0842021724855044e-19,-0.015625,-0.004999999888241291,-0.004999999888241291,-7.316339622740049e-19,-1.6951749627642753e-19,-4.0049099654794166e-19,-0.05375000089406967,0.00937500037252903,0.007499999832361937,0.07229166477918625,0.007499999832361937,5.974387413036107e-17,-3.2250085410474765e-20,-0.0062500000931322575,3.548297866297049e-20,-4.336808689942018e-19,-0.004999999888241291,-2.168404344971009e-19,-0.015625,-0.004999999888241291,8.87074498886005e-20,-0.05375000089406967,0.00937500037252903,0.007499999832361937,0.007499999832361937,0.07229166477918625,5.974387413036107e-17,-1.0124476793912531e-19,7.175446886044429e-21,-0.0062500000931322575,-3.408135601168148e-19,-1.3474785103185892e-19,-0.004999999888241291,-0.0,-0.004999999888241291,-0.015625,0.0078125,-0.046875,5.974387413036107e-17,5.974387413036107e-17,5.974387413036107e-17,0.0234375,-8.326673015560919e-18,-8.326673015560919e-18,-8.326673015560919e-18,-1.214306433183765e-17,-4.9960038093365514e-18,-4.9960038093365514e-18,-1.214306433183765e-17,-4.9960038093365514e-18,-1.214306433183765e-17,0.00937500037252903,-0.00937500037252903,-0.0062500000931322575,-3.2250085410474765e-20,-1.0124476793912531e-19,-8.326673015560919e-18,0.0062500000931322575,3.3708787320659702e-21,-5.539750539096235e-21,3.5217004894156947e-34,1.0842021724855044e-19,1.0842021724855044e-19,-4.094421893750165e-20,1.7755344420781476e-33,-1.7095655143537398e-20,0.00937500037252903,-0.00937500037252903,-1.891012040737736e-19,-0.0062500000931322575,7.175446886044429e-21,-8.326673015560919e-18,3.3708787320659702e-21,0.0062500000931322575,-1.9663760139830448e-20,8.427196527242338e-21,9.954947419839495e-20,5.9181856693392454e-21,2.168404344971009e-19,1.0842021724855044e-19,-4.867937548476681e-20,0.00937500037252903,-0.00937500037252903,-1.0842021724855044e-19,3.548297866297049e-20,-0.0062500000931322575,-8.326673015560919e-18,-5.539750539096235e-21,-1.9663760139830448e-20,0.0062500000931322575,-1.3849376751637372e-20,-2.2860410522254778e-21,1.0842021724855044e-19,-4.9159401965163255e-20,9.879814217060392e-20,-3.119917182927175e-19,0.0052083334885537624,2.429426150345792e-17,-0.015625,-4.336808689942018e-19,-3.408135601168148e-19,-1.214306433183765e-17,3.5217004894156947e-34,8.427196527242338e-21,-1.3849376751637372e-20,0.0052083334885537624,2.168404344971009e-19,2.168404344971009e-19,5.599400762577679e-20,2.5939868938465583e-33,4.6127587918526074e-20,0.007499999832361937,9.683481657900012e-18,-0.004999999888241291,-0.004999999888241291,-1.3474785103185892e-19,-4.9960038093365514e-18,1.0842021724855044e-19,9.954947419839495e-20,-2.2860410522254778e-21,2.168404344971009e-19,0.0033333334140479565,4.959204327492263e-20,3.783141550784243e-19,5.421010862427522e-20,-5.71510273153789e-21,0.007499999832361937,9.657869664593532e-18,-0.004999999888241291,-2.168404344971009e-19,-0.004999999888241291,-4.9960038093365514e-18,1.0842021724855044e-19,5.9181856693392454e-21,1.0842021724855044e-19,2.168404344971009e-19,4.959204327492263e-20,0.0033333334140479565,1.4795464577244897e-20,5.88015555600098e-20,1.8365057497553785e-19,0.0052083334885537624,2.4096022706575912e-17,-7.316339622740049e-19,-0.015625,-0.0,-1.214306433183765e-17,-4.094421893750165e-20,2.168404344971009e-19,-4.9159401965163255e-20,5.599400762577679e-20,3.783141550784243e-19,1.4795464577244897e-20,0.0052083334885537624,1.587581771031913e-19,-8.291281059077072e-20,0.007499999832361937,9.681179614255277e-18,-1.6951749627642753e-19,-0.004999999888241291,-0.004999999888241291,-4.9960038093365514e-18,1.7755344420781476e-33,1.0842021724855044e-19,9.879814217060392e-20,2.5939868938465583e-33,5.421010862427522e-20,5.88015555600098e-20,1.587581771031913e-19,0.0033333334140479565,1.5959538728067154e-19,0.0052083334885537624,2.48527788161374e-17,-4.0049099654794166e-19,8.87074498886005e-20,-0.015625,-1.214306433183765e-17,-1.7095655143537398e-20,-4.867937548476681e-20,-3.119917182927175e-19,4.6127587918526074e-20,-5.71510273153789e-21,1.8365057497553785e-19,-8.291281059077072e-20,1.5959538728067154e-19,0.0052083334885537624,3.0,4.0,4.0,5.0,0.12861904501914978,-0.05375000089406967,-0.04399999976158142,-0.04399999976158142,-0.03732142969965935,0.0062500000931322575,0.007499999832361937,0.007499999832361937,0.0062500000931322575,0.004166666883975267,0.006000000052154064,0.004999999888241291,0.004166666883975267,0.004999999888241291,0.0029761905316263437,-0.05375000089406967,0.11625000089406967,0.007499999832361937,0.007499999832361937,0.0062500000931322575,-0.03750000149011612,-0.007499999832361937,-0.007499999832361937,-0.0062500000931322575,-9.714451300033997e-18,-3.996802716596996e-18,-3.7643500752185694e-18,-9.714451300033997e-18,-3.7764430421837884e-18,-6.2948845797882494e-18,-0.04399999976158142,0.007499999832361937,0.05849999934434891,0.006000000052154064,0.004999999888241291,-2.0899949020903723e-17,-0.004999999888241291,-0.0,-4.336808689942018e-19,-0.012500000186264515,-0.004000000189989805,-0.0033333334140479565,-5.4141741656218494e-33,-5.963111948670274e-19,-1.2013458364740391e-18,-0.04399999976158142,0.007499999832361937,0.006000000052154064,0.05849999934434891,0.004999999888241291,-2.0899949020903723e-17,-0.0,-0.004999999888241291,-4.45773887658209e-19,-5.4141741656218494e-33,-0.004000000189989805,-5.963111948670274e-19,-0.012500000186264515,-0.0033333334140479565,-1.2097817345535846e-18,-0.03732142969965935,0.0062500000931322575,0.004999999888241291,0.004999999888241291,0.03651785850524902,-1.689124979273699e-17,-0.0,-0.0,-0.0031250000465661287,-4.3757127014046854e-33,-1.800293291842342e-33,-0.0024999999441206455,-4.3757127014046854e-33,-0.0024999999441206455,-0.0059523810632526875,0.0062500000931322575,-0.03750000149011612,-2.0899949020903723e-17,-2.0899949020903723e-17,-1.689124979273699e-17,0.01875000074505806,-0.0,-0.0,7.141370167777773e-34,4.8572256500169986e-18,1.998401358298498e-18,1.6653344997146072e-18,4.8572256500169986e-18,1.6653344997146072e-18,2.9738117026452626e-18,0.007499999832361937,-0.007499999832361937,-0.004999999888241291,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.007499999832361937,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0062500000931322575,-4.336808689942018e-19,-4.45773887658209e-19,-0.0031250000465661287,7.141370167777773e-34,-0.0,-0.0,0.0031250000465661287,0.0,0.0,2.168404344971009e-19,0.0,2.228869438291045e-19,1.7363052262537675e-19,0.004166666883975267,-9.714451300033997e-18,-0.012500000186264515,-5.4141741656218494e-33,-4.3757127014046854e-33,4.8572256500169986e-18,-0.0,-0.0,0.0,0.004166666883975267,5.176899620717913e-34,4.3140830937945075e-34,1.2582742242106277e-33,4.3140830937945075e-34,7.703719777548943e-34,0.006000000052154064,-3.996802716596996e-18,-0.004000000189989805,-0.004000000189989805,-1.800293291842342e-33,1.998401358298498e-18,-0.0,-0.0,0.0,5.176899620717913e-34,0.0026666666381061077,1.7749370062578918e-34,5.176899620717913e-34,1.7749370062578918e-34,3.1695304175152512e-34,0.004999999888241291,-3.7643500752185694e-18,-0.0033333334140479565,-5.963111948670274e-19,-0.0024999999441206455,1.6653344997146072e-18,-0.0,-0.0,2.168404344971009e-19,4.3140830937945075e-34,1.7749370062578918e-34,0.0016666667070239782,4.3140830937945075e-34,2.981555974335137e-19,6.006729182370196e-19,0.004166666883975267,-9.714451300033997e-18,-5.4141741656218494e-33,-0.012500000186264515,-4.3757127014046854e-33,4.8572256500169986e-18,-0.0,-0.0,0.0,1.2582742242106277e-33,5.176899620717913e-34,4.3140830937945075e-34,0.004166666883975267,4.3140830937945075e-34,7.703719777548943e-34,0.004999999888241291,-3.7764430421837884e-18,-5.963111948670274e-19,-0.0033333334140479565,-0.0024999999441206455,1.6653344997146072e-18,-0.0,-0.0,2.228869438291045e-19,4.3140830937945075e-34,1.7749370062578918e-34,2.981555974335137e-19,4.3140830937945075e-34,0.0016666667070239782,6.048908672767923e-19,0.0029761905316263437,-6.2948845797882494e-18,-1.2013458364740391e-18,-1.2097817345535846e-18,-0.0059523810632526875,2.9738117026452626e-18,-0.0,-0.0,1.7363052262537675e-19,7.703719777548943e-34,3.1695304175152512e-34,6.006729182370196e-19,7.703719777548943e-34,6.048908672767923e-19,0.0014880952658131719,3.0,4.0,4.0,6.0,0.11144841462373734,-0.04553571343421936,-0.037261903285980225,-0.037261903285980225,-0.02745535783469677,0.0052083334885537624,0.0062500000931322575,0.0062500000931322575,0.004464285913854837,0.0034722222480922937,0.004999999888241291,0.0035714285913854837,0.0034722222480922937,0.0035714285913854837,0.0018601190531626344,-0.04553571343421936,0.09761904925107956,0.0062500000931322575,0.0062500000931322575,0.004464285913854837,-0.03125,-0.0062500000931322575,-0.0062500000931322575,-0.004464285913854837,1.6190751890996458e-17,6.661337998858429e-18,4.554810899609449e-18,1.6190751890996458e-17,4.524578275401249e-18,6.664674018268855e-18,-0.037261903285980225,0.0062500000931322575,0.04914682358503342,0.004999999888241291,0.0035714285913854837,4.263124102720284e-17,-0.004166666883975267,-2.019421271275154e-32,-2.0328790734103208e-19,-0.010416666977107525,-0.0033333334140479565,-0.0023809524718672037,-2.20874213025157e-32,-2.371692252312041e-19,-6.40165415812445e-19,-0.037261903285980225,0.0062500000931322575,0.004999999888241291,0.04914682358503342,0.0035714285913854837,4.263124102720284e-17,-2.019421271275154e-32,-0.004166666883975267,-2.335204798504444e-19,-2.20874213025157e-32,-0.0033333334140479565,-2.371692252312041e-19,-0.010416666977107525,-0.0023809524718672037,-4.335124601913648e-19,-0.02745535783469677,0.004464285913854837,0.0035714285913854837,0.0035714285913854837,0.021212797611951828,2.73466770777868e-17,-1.2953988888363887e-32,-1.2953988888363887e-32,-0.0017857142956927419,-1.416842442829304e-32,-5.8292948528269554e-33,-0.0014285714132711291,-1.416842442829304e-32,-0.0014285714132711291,-0.0027901786379516125,0.0052083334885537624,-0.03125,4.263124102720284e-17,4.263124102720284e-17,2.73466770777868e-17,0.015625,-7.401487216851996e-18,-7.401487216851996e-18,-3.1720658023686032e-18,-8.095375945498229e-18,-3.3306689994292145e-18,-2.3790494034752407e-18,-8.095375945498229e-18,-2.3790494034752407e-18,-3.4074925716394644e-18,0.0062500000931322575,-0.0062500000931322575,-0.004166666883975267,-2.019421271275154e-32,-1.2953988888363887e-32,-7.401487216851996e-18,0.004166666883975267,3.5060485525457556e-33,1.5025921843278974e-33,3.834740650264668e-33,1.5777218853797885e-33,1.126944138245923e-33,3.834740650264668e-33,1.126944138245923e-33,1.6141128027583464e-33,0.0062500000931322575,-0.0062500000931322575,-2.019421271275154e-32,-0.004166666883975267,-1.2953988888363887e-32,-7.401487216851996e-18,3.5060485525457556e-33,0.004166666883975267,1.5025921843278974e-33,3.834740650264668e-33,1.5777218853797885e-33,1.126944138245923e-33,3.834740650264668e-33,1.126944138245923e-33,1.6141128027583464e-33,0.004464285913854837,-0.004464285913854837,-2.0328790734103208e-19,-2.335204798504444e-19,-0.0017857142956927419,-3.1720658023686032e-18,1.5025921843278974e-33,1.5025921843278974e-33,0.0017857142956927419,1.643460304923571e-33,6.7616648294755385e-34,8.131516293641283e-20,1.643460304923571e-33,9.340818806276864e-20,6.012445000402937e-20,0.0034722222480922937,1.6190751890996458e-17,-0.010416666977107525,-2.20874213025157e-32,-1.416842442829304e-32,-8.095375945498229e-18,3.834740650264668e-33,3.834740650264668e-33,1.643460304923571e-33,0.0034722222480922937,1.725633237517803e-33,1.2325951827749302e-33,4.194247597706418e-33,1.2325951827749302e-33,1.7654358435786303e-33,0.004999999888241291,6.661337998858429e-18,-0.0033333334140479565,-0.0033333334140479565,-5.8292948528269554e-33,-3.3306689994292145e-18,1.5777218853797885e-33,1.5777218853797885e-33,6.7616648294755385e-34,1.725633237517803e-33,0.002222222276031971,5.071248851695394e-34,1.725633237517803e-33,5.071248851695394e-34,7.263507245070574e-34,0.0035714285913854837,4.554810899609449e-18,-0.0023809524718672037,-2.371692252312041e-19,-0.0014285714132711291,-2.3790494034752407e-18,1.126944138245923e-33,1.126944138245923e-33,8.131516293641283e-20,1.2325951827749302e-33,5.071248851695394e-34,0.0009523809421807528,1.2325951827749302e-33,9.486769009248164e-20,2.56066166324978e-19,0.0034722222480922937,1.6190751890996458e-17,-2.20874213025157e-32,-0.010416666977107525,-1.416842442829304e-32,-8.095375945498229e-18,3.834740650264668e-33,3.834740650264668e-33,1.643460304923571e-33,4.194247597706418e-33,1.725633237517803e-33,1.2325951827749302e-33,0.0034722222480922937,1.2325951827749302e-33,1.7654358435786303e-33,0.0035714285913854837,4.524578275401249e-18,-2.371692252312041e-19,-0.0023809524718672037,-0.0014285714132711291,-2.3790494034752407e-18,1.126944138245923e-33,1.126944138245923e-33,9.340818806276864e-20,1.2325951827749302e-33,5.071248851695394e-34,9.486769009248164e-20,1.2325951827749302e-33,0.0009523809421807528,1.7340498666148534e-19,0.0018601190531626344,6.664674018268855e-18,-6.40165415812445e-19,-4.335124601913648e-19,-0.0027901786379516125,-3.4074925716394644e-18,1.6141128027583464e-33,1.6141128027583464e-33,6.012445000402937e-20,1.7654358435786303e-33,7.263507245070574e-34,2.56066166324978e-19,1.7654358435786303e-33,1.7340498666148534e-19,0.0005580357392318547,3.0,4.0,4.0,7.0,0.09835813194513321,-0.03950892761349678,-0.03232142701745033,-0.03232142701745033,-0.02105654776096344,0.004464285913854837,0.0053571430034935474,0.0053571430034935474,0.0033482143189758062,0.0029761905316263437,0.004285714123398066,0.0026785715017467737,0.0029761905316263437,0.0026785715017467737,0.0012400794075801969,-0.03950892761349678,0.08415178209543228,0.0053571430034935474,0.0053571430034935474,0.0033482143189758062,-0.02678571455180645,-0.0053571430034935474,-0.0053571430034935474,-0.0033482143189758062,-1.734723475976807e-17,-7.37257477290143e-18,-5.637851296924623e-18,-2.5153490401663703e-17,-6.938893903907228e-18,-8.890457814381136e-18,-0.03232142701745033,0.0053571430034935474,0.04238095134496689,0.004285714123398066,0.0026785715017467737,-5.692822825302753e-18,-0.0035714285913854837,-1.5612511283791264e-17,-5.9631119486702744e-18,-0.008928571827709675,-0.0028571428265422583,-0.0017857142956927419,-4.119968255444917e-17,-1.3660947373317356e-17,-4.851804721872632e-18,-0.03232142701745033,0.0053571430034935474,0.004285714123398066,0.04238095134496689,0.0026785715017467737,-5.84689348619688e-18,-2.0619407407433914e-17,-0.0035714285913854837,-5.908901840045999e-18,-3.3848455658796507e-17,-0.0028571428265422583,-1.1600963245594897e-17,-0.008928571827709675,-0.0017857142956927419,-4.174178364069192e-18,-0.02105654776096344,0.0033482143189758062,0.0026785715017467737,0.0026785715017467737,0.01346726156771183,-2.0166160408230382e-17,-8.741935881036015e-18,-8.337642257663985e-18,-0.0011160714784637094,-1.6328717345364177e-17,-4.503062480488132e-18,-0.0008928571478463709,-1.916763098614822e-17,-0.0008928571478463709,-0.0014880952658131719,0.004464285913854837,-0.02678571455180645,-5.692822825302753e-18,-5.84689348619688e-18,-2.0166160408230382e-17,0.013392857275903225,-6.271328957484577e-18,-6.444557121365432e-18,6.607539929576782e-19,1.8145464050881743e-18,1.7779250514189203e-18,1.2196522740080267e-18,1.9766299645761024e-18,1.1606928044992017e-18,2.8189256484623115e-18,0.0053571430034935474,-0.0053571430034935474,-0.0035714285913854837,-2.0619407407433914e-17,-8.741935881036015e-18,-6.271328957484577e-18,0.0035714285913854837,7.589415207398531e-19,1.7801675122101575e-19,2.002363553432627e-18,6.8933954546992085e-19,4.838341737017872e-19,4.767216405252347e-18,1.2253751230759749e-18,9.215718466126788e-19,0.0053571430034935474,-0.0053571430034935474,-1.5612511283791264e-17,-0.0035714285913854837,-8.337642257663985e-18,-6.444557121365432e-18,7.589415207398531e-19,0.0035714285913854837,1.3348227761934986e-19,3.2203018058138674e-18,1.1831949088952115e-18,1.0012822791607387e-18,4.799159225377001e-18,9.168148343074629e-19,8.673617379884035e-19,0.0033482143189758062,-0.0033482143189758062,-5.9631119486702744e-18,-5.908901840045999e-18,-0.0011160714784637094,6.607539929576782e-19,1.7801675122101575e-19,1.3348227761934986e-19,0.0011160714784637094,1.4094628242311558e-18,2.929549061272397e-19,3.3124137436956286e-19,1.4443911459816668e-18,2.8882107101600594e-19,3.2526065174565133e-19,0.0029761905316263437,-1.734723475976807e-17,-0.008928571827709675,-3.3848455658796507e-17,-1.6328717345364177e-17,1.8145464050881743e-18,2.002363553432627e-18,3.2203018058138674e-18,1.4094628242311558e-18,0.0029761905316263437,1.6626977581145179e-18,3.571977229650481e-18,6.073902038373789e-18,2.710638193702076e-18,7.589415207398531e-19,0.004285714123398066,-7.37257477290143e-18,-0.0028571428265422583,-0.0028571428265422583,-4.503062480488132e-18,1.7779250514189203e-18,6.8933954546992085e-19,1.1831949088952115e-18,2.929549061272397e-19,1.6626977581145179e-18,0.0019047618843615055,5.421010862427522e-20,5.847039483574996e-18,7.241677783663129e-19,4.87890977618477e-19,0.0026785715017467737,-5.637851296924623e-18,-0.0017857142956927419,-1.1600963245594897e-17,-0.0008928571478463709,1.2196522740080267e-18,4.838341737017872e-19,1.0012822791607387e-18,3.3124137436956286e-19,3.571977229650481e-18,5.421010862427522e-20,0.0005952381179668009,2.4584771470489607e-18,8.91164790692806e-19,2.168404344971009e-19,0.0029761905316263437,-2.5153490401663703e-17,-4.119968255444917e-17,-0.008928571827709675,-1.916763098614822e-17,1.9766299645761024e-18,4.767216405252347e-18,4.799159225377001e-18,1.4443911459816668e-18,6.073902038373789e-18,5.847039483574996e-18,2.4584771470489607e-18,0.0029761905316263437,5.583641188300348e-18,5.421010862427522e-19,0.0026785715017467737,-6.938893903907228e-18,-1.3660947373317356e-17,-0.0017857142956927419,-0.0008928571478463709,1.1606928044992017e-18,1.2253751230759749e-18,9.168148343074629e-19,2.8882107101600594e-19,2.710638193702076e-18,7.241677783663129e-19,8.91164790692806e-19,5.583641188300348e-18,0.0005952381179668009,2.710505431213761e-19,0.0012400794075801969,-8.890457814381136e-18,-4.851804721872632e-18,-4.174178364069192e-18,-0.0014880952658131719,2.8189256484623115e-18,9.215718466126788e-19,8.673617379884035e-19,3.2526065174565133e-19,7.589415207398531e-19,4.87890977618477e-19,2.168404344971009e-19,5.421010862427522e-19,2.710505431213761e-19,0.00024801588733680546,3.0,4.0,4.0,8.0,0.08803819119930267,-0.03489583358168602,-0.028541667386889458,-0.028541667386889458,-0.01666666753590107,0.00390625,0.004687500186264515,0.004687500186264515,0.0026041667442768812,0.0026041667442768812,0.0037499999161809683,0.0020833334419876337,0.0026041667442768812,0.0020833334419876337,0.0008680555620230734,-0.03489583358168602,0.07395832985639572,0.004687500186264515,0.004687500186264515,0.0026041667442768812,-0.0234375,-0.004687500186264515,-0.004687500186264515,-0.0026041667442768812,-6.938893903907228e-18,-1.2576745200831851e-17,-1.0191500421363742e-17,8.673617379884035e-19,-8.673617379884035e-18,-1.3010426069826053e-18,-0.028541667386889458,0.004687500186264515,0.03725694492459297,0.0037499999161809683,0.0020833334419876337,-4.7284479388670894e-17,-0.0031250000465661287,3.903127820947816e-18,-4.336808689942018e-19,-0.0078125,-0.0024999999441206455,-0.0013888889225199819,2.168404344971009e-18,-1.8431436932253575e-18,5.366800753803247e-18,-0.028541667386889458,0.004687500186264515,0.0037499999161809683,0.03725694492459297,0.0020833334419876337,-4.4608189456314776e-17,1.9692903910009194e-18,-0.0031250000465661287,4.336808689942018e-19,1.2320445769574133e-18,-0.0024999999441206455,-4.255493527005605e-18,-0.0078125,-0.0013888889225199819,5.7462715141731735e-18,-0.01666666753590107,0.0026041667442768812,0.0020833334419876337,0.0020833334419876337,0.00910218246281147,-2.4936649967166602e-17,2.8617487887741818e-18,4.556958260479637e-18,-0.0007440476329065859,9.582018029603032e-18,4.508528489975882e-18,-0.0005952381179668009,1.1465954134736442e-17,-0.0005952381179668009,-0.0008680555620230734,0.00390625,-0.0234375,-4.7284479388670894e-17,-4.4608189456314776e-17,-2.4936649967166602e-17,0.01171875,-1.3052017745000985e-18,-1.496712180882024e-18,4.769991182617156e-18,6.77517087244522e-18,6.688533629447641e-18,4.009482154616515e-18,6.149554322836664e-18,3.8815408885020196e-18,9.75781955236954e-19,0.004687500186264515,-0.004687500186264515,-0.0031250000465661287,1.9692903910009194e-18,2.8617487887741818e-18,-1.3052017745000985e-18,0.0031250000465661287,-1.734723475976807e-18,-8.720657073368395e-19,-3.2592107274671367e-18,-4.452199803781797e-20,2.0987067527921443e-19,-6.37985277910485e-19,3.1225132375808844e-19,-4.336808689942018e-19,0.004687500186264515,-0.004687500186264515,3.903127820947816e-18,-0.0031250000465661287,4.556958260479637e-18,-1.496712180882024e-18,-1.734723475976807e-18,0.0031250000465661287,-9.331329364440262e-19,-4.908725501364244e-19,-1.229899077243604e-18,1.9667393918412e-19,-6.913937451236197e-18,-4.658383941866016e-19,-4.87890977618477e-19,0.0026041667442768812,-0.0026041667442768812,-4.336808689942018e-19,4.336808689942018e-19,-0.0007440476329065859,4.769991182617156e-18,-8.720657073368395e-19,-9.331329364440262e-19,0.0007440476329065859,-1.3552527156068805e-19,2.4702841680161777e-19,3.398670845502951e-19,-3.1820231957873635e-19,2.7998913436880655e-19,5.421010862427522e-20,0.0026041667442768812,-6.938893903907228e-18,-0.0078125,1.2320445769574133e-18,9.582018029603032e-18,6.77517087244522e-18,-3.2592107274671367e-18,-4.908725501364244e-19,-1.3552527156068805e-19,0.0026041667442768812,8.977429315894369e-20,-7.237262707143628e-19,-2.501036675239368e-19,-1.951050877548366e-20,-1.1926223897340549e-18,0.0037499999161809683,-1.2576745200831851e-17,-0.0024999999441206455,-0.0024999999441206455,4.508528489975882e-18,6.688533629447641e-18,-4.452199803781797e-20,-1.229899077243604e-18,2.4702841680161777e-19,8.977429315894369e-20,0.0016666667070239782,4.336808689942018e-19,-1.2832321676234198e-18,-1.1408004549357968e-19,-7.047314121155779e-19,0.0020833334419876337,-1.0191500421363742e-17,-0.0013888889225199819,-4.255493527005605e-18,-0.0005952381179668009,4.009482154616515e-18,2.0987067527921443e-19,1.9667393918412e-19,3.398670845502951e-19,-7.237262707143628e-19,4.336808689942018e-19,0.00039682540227659047,5.0250472580166305e-19,4.41627282946269e-19,-1.0842021724855044e-19,0.0026041667442768812,8.673617379884035e-19,2.168404344971009e-18,-0.0078125,1.1465954134736442e-17,6.149554322836664e-18,-6.37985277910485e-19,-6.913937451236197e-18,-3.1820231957873635e-19,-2.501036675239368e-19,-1.2832321676234198e-18,5.0250472580166305e-19,0.0026041667442768812,-2.222614453595284e-18,-1.1384122811097797e-18,0.0020833334419876337,-8.673617379884035e-18,-1.8431436932253575e-18,-0.0013888889225199819,-0.0005952381179668009,3.8815408885020196e-18,3.1225132375808844e-19,-4.658383941866016e-19,2.7998913436880655e-19,-1.951050877548366e-20,-1.1408004549357968e-19,4.41627282946269e-19,-2.222614453595284e-18,0.00039682540227659047,-1.6263032587282567e-19,0.0008680555620230734,-1.3010426069826053e-18,5.366800753803247e-18,5.7462715141731735e-18,-0.0008680555620230734,9.75781955236954e-19,-4.336808689942018e-19,-4.87890977618477e-19,5.421010862427522e-20,-1.1926223897340549e-18,-7.047314121155779e-19,-1.0842021724855044e-19,-1.1384122811097797e-18,-1.6263032587282567e-19,0.00012400794366840273,3.0,4.0,5.0,3.0,0.1582142859697342,-0.06916666775941849,-0.05666666850447655,-0.04809523746371269,-0.06916666775941849,0.008333333767950535,0.009999999776482582,0.008333333767950535,0.012500000186264515,0.0055555556900799274,0.006666666828095913,0.009999999776482582,0.003968254197388887,0.008333333767950535,0.008333333767950535,-0.06916666775941849,0.1525000035762787,0.009999999776482582,0.008333333767950535,0.012500000186264515,-0.05000000074505806,-0.009999999776482582,-0.008333333767950535,-0.012500000186264515,-1.2952602009105534e-17,-4.886248936169647e-18,-6.661337998858429e-18,-7.713324381617137e-18,-5.334274771346743e-18,-2.7755575615628914e-17,-0.05666666850447655,0.009999999776482582,0.07666666805744171,0.006666666828095913,0.009999999776482582,-2.7200464632711927e-17,-0.006666666828095913,-4.4535688523190575e-19,-0.0,-0.01666666753590107,-0.004444444552063942,-0.006666666828095913,-7.899050107180326e-19,1.0842021724855044e-19,-1.5099291057869517e-32,-0.04809523746371269,0.008333333767950535,0.006666666828095913,0.047857142984867096,0.008333333767950535,-2.1966555407399e-17,-0.0,-0.004166666883975267,-0.0,-5.690481092280336e-33,-0.0033333334140479565,-2.9265331436682295e-33,-0.007936508394777775,-0.004166666883975267,-1.2193887792499303e-32,-0.06916666775941849,0.012500000186264515,0.009999999776482582,0.008333333767950535,0.1525000035762787,-3.8302694217219e-17,-0.0,2.168404344971009e-19,-0.012500000186264515,-9.922391161645115e-33,1.0842021724855044e-19,-0.009999999776482582,2.168404344971009e-19,-0.008333333767950535,-0.05000000074505806,0.008333333767950535,-0.05000000074505806,-2.7200464632711927e-17,-2.1966555407399e-17,-3.8302694217219e-17,0.02500000037252903,-0.0,-0.0,-0.0,6.476301004552767e-18,2.2204459996194763e-18,3.3306689994292145e-18,3.965082408057119e-18,2.775557602921922e-18,1.3877787807814457e-17,0.009999999776482582,-0.009999999776482582,-0.006666666828095913,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.008333333767950535,-4.4535688523190575e-19,-0.004166666883975267,2.168404344971009e-19,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,2.2267844261595288e-19,-0.0,-1.0842021724855044e-19,-1.0842021724855044e-19,0.0,0.012500000186264515,-0.012500000186264515,-0.0,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0055555556900799274,-1.2952602009105534e-17,-0.01666666753590107,-5.690481092280336e-33,-9.922391161645115e-33,6.476301004552767e-18,-0.0,-0.0,-0.0,0.0055555556900799274,5.75211079172601e-34,8.628166187589015e-34,1.0271626676183578e-33,7.1901384896575126e-34,3.595069107075512e-33,0.006666666828095913,-4.886248936169647e-18,-0.004444444552063942,-0.0033333334140479565,1.0842021724855044e-19,2.2204459996194763e-18,-0.0,2.2267844261595288e-19,-0.0,5.75211079172601e-34,0.002222222276031971,2.958228420292733e-34,3.949525053590163e-19,-5.421010862427522e-20,1.2325951827749302e-33,0.009999999776482582,-6.661337998858429e-18,-0.006666666828095913,-2.9265331436682295e-33,-0.009999999776482582,3.3306689994292145e-18,-0.0,-0.0,-0.0,8.628166187589015e-34,2.958228420292733e-34,0.006666666828095913,5.282550848917912e-34,3.6977854105715463e-34,1.8488928200801433e-33,0.003968254197388887,-7.713324381617137e-18,-7.899050107180326e-19,-0.007936508394777775,2.168404344971009e-19,3.965082408057119e-18,-0.0,-1.0842021724855044e-19,-0.0,1.0271626676183578e-33,3.949525053590163e-19,5.282550848917912e-34,0.0019841270986944437,-6.480288661340126e-20,2.2010628460628388e-33,0.008333333767950535,-5.334274771346743e-18,1.0842021724855044e-19,-0.004166666883975267,-0.008333333767950535,2.775557602921922e-18,-0.0,-1.0842021724855044e-19,-0.0,7.1901384896575126e-34,-5.421010862427522e-20,3.6977854105715463e-34,-6.480288661340126e-20,0.004166666883975267,1.5407439555097887e-33,0.008333333767950535,-2.7755575615628914e-17,-1.5099291057869517e-32,-1.2193887792499303e-32,-0.05000000074505806,1.3877787807814457e-17,-0.0,0.0,-0.0,3.595069107075512e-33,1.2325951827749302e-33,1.8488928200801433e-33,2.2010628460628388e-33,1.5407439555097887e-33,0.02500000037252903,3.0,4.0,5.0,4.0,0.12861904501914978,-0.05375000089406967,-0.04399999976158142,-0.03732142969965935,-0.04399999976158142,0.0062500000931322575,0.007499999832361937,0.0062500000931322575,0.007499999832361937,0.004166666883975267,0.004999999888241291,0.006000000052154064,0.0029761905316263437,0.004999999888241291,0.004166666883975267,-0.05375000089406967,0.11625000089406967,0.007499999832361937,0.0062500000931322575,0.007499999832361937,-0.03750000149011612,-0.007499999832361937,-0.0062500000931322575,-0.007499999832361937,-9.714451300033997e-18,-3.6384155492701274e-18,-3.996802716596996e-18,-5.947623405290525e-18,-3.3306689994292145e-18,-9.714451300033997e-18,-0.04399999976158142,0.007499999832361937,0.05849999934434891,0.004999999888241291,0.006000000052154064,-2.0899949020903723e-17,-0.004999999888241291,-3.0774662738909536e-19,-0.0,-0.012500000186264515,-0.0033333334140479565,-0.004000000189989805,-9.760695038973927e-19,-1.0842021724855044e-19,-5.4141741656218494e-33,-0.03732142969965935,0.0062500000931322575,0.004999999888241291,0.03651785850524902,0.004999999888241291,-1.689124979273699e-17,-0.0,-0.0031250000465661287,-0.0,-4.3757127014046854e-33,-0.0024999999441206455,-1.800293291842342e-33,-0.0059523810632526875,-0.0024999999441206455,-4.3757127014046854e-33,-0.04399999976158142,0.007499999832361937,0.006000000052154064,0.004999999888241291,0.05849999934434891,-2.0899949020903723e-17,-0.0,0.0,-0.004999999888241291,-5.4141741656218494e-33,-1.0842021724855044e-19,-0.004000000189989805,-2.168404344971009e-19,-0.0033333334140479565,-0.012500000186264515,0.0062500000931322575,-0.03750000149011612,-2.0899949020903723e-17,-1.689124979273699e-17,-2.0899949020903723e-17,0.01875000074505806,-0.0,-0.0,-0.0,4.8572256500169986e-18,1.6653344997146072e-18,1.998401358298498e-18,2.9738117026452626e-18,1.6653344997146072e-18,4.8572256500169986e-18,0.007499999832361937,-0.007499999832361937,-0.004999999888241291,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0062500000931322575,-3.0774662738909536e-19,-0.0031250000465661287,0.0,-0.0,-0.0,0.0031250000465661287,-0.0,0.0,1.5387331369454768e-19,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.007499999832361937,-0.0,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-9.714451300033997e-18,-0.012500000186264515,-4.3757127014046854e-33,-5.4141741656218494e-33,4.8572256500169986e-18,-0.0,0.0,-0.0,0.004166666883975267,4.3140830937945075e-34,5.176899620717913e-34,7.703719777548943e-34,4.3140830937945075e-34,1.2582742242106277e-33,0.004999999888241291,-3.6384155492701274e-18,-0.0033333334140479565,-0.0024999999441206455,-1.0842021724855044e-19,1.6653344997146072e-18,-0.0,1.5387331369454768e-19,-0.0,4.3140830937945075e-34,0.0016666667070239782,1.7749370062578918e-34,4.880347519486964e-19,5.421010862427522e-20,4.3140830937945075e-34,0.006000000052154064,-3.996802716596996e-18,-0.004000000189989805,-1.800293291842342e-33,-0.004000000189989805,1.998401358298498e-18,-0.0,-0.0,-0.0,5.176899620717913e-34,1.7749370062578918e-34,0.0026666666381061077,3.1695304175152512e-34,1.7749370062578918e-34,5.176899620717913e-34,0.0029761905316263437,-5.947623405290525e-18,-9.760695038973927e-19,-0.0059523810632526875,-2.168404344971009e-19,2.9738117026452626e-18,-0.0,-0.0,-0.0,7.703719777548943e-34,4.880347519486964e-19,3.1695304175152512e-34,0.0014880952658131719,8.972707924054281e-20,7.703719777548943e-34,0.004999999888241291,-3.3306689994292145e-18,-1.0842021724855044e-19,-0.0024999999441206455,-0.0033333334140479565,1.6653344997146072e-18,-0.0,-0.0,-0.0,4.3140830937945075e-34,5.421010862427522e-20,1.7749370062578918e-34,8.972707924054281e-20,0.0016666667070239782,4.3140830937945075e-34,0.004166666883975267,-9.714451300033997e-18,-5.4141741656218494e-33,-4.3757127014046854e-33,-0.012500000186264515,4.8572256500169986e-18,-0.0,-0.0,-0.0,1.2582742242106277e-33,4.3140830937945075e-34,5.176899620717913e-34,7.703719777548943e-34,4.3140830937945075e-34,0.004166666883975267,3.0,4.0,5.0,5.0,0.10852380841970444,-0.04399999976158142,-0.035999998450279236,-0.030523808673024178,-0.030523808673024178,0.004999999888241291,0.006000000052154064,0.004999999888241291,0.004999999888241291,0.0033333334140479565,0.004000000189989805,0.004000000189989805,0.0023809524718672037,0.0033333334140479565,0.0023809524718672037,-0.04399999976158142,0.09399999678134918,0.006000000052154064,0.004999999888241291,0.004999999888241291,-0.029999999329447746,-0.006000000052154064,-0.004999999888241291,-0.004999999888241291,-7.77156120546332e-18,-2.3987731115912614e-18,-2.3934847391400567e-18,-4.756471329095283e-18,-2.2204459996194763e-18,-4.859854016413386e-18,-0.035999998450279236,0.006000000052154064,0.047333333641290665,0.004000000189989805,0.004000000189989805,-1.698641195912754e-17,-0.004000000189989805,2.710505431213761e-19,2.657620672725949e-19,-0.009999999776482582,-0.0026666666381061077,-0.0026666666381061077,-8.927986171592055e-18,-4.440891999238953e-18,-8.938059577091725e-18,-0.030523808673024178,0.004999999888241291,0.004000000189989805,0.029547618702054024,0.0033333334140479565,-1.3735044558228631e-17,-0.0,-0.0024999999441206455,7.710184996478466e-33,-1.8680507632138192e-17,-0.0020000000949949026,-0.0,-0.004761904943734407,-0.0016666667070239782,-3.3780441972389165e-33,-0.030523808673024178,0.004999999888241291,0.004000000189989805,0.0033333334140479565,0.029547618702054024,-1.3735044558228631e-17,-0.0,-1.7602994740019434e-20,-0.0024999999441206455,-1.8680507632138192e-17,-2.4553585016562253e-20,-0.0020000000949949026,-0.0,-0.0016666667070239782,-0.004761904943734407,0.004999999888241291,-0.029999999329447746,-1.698641195912754e-17,-1.3735044558228631e-17,-1.3735044558228631e-17,0.014999999664723873,-0.0,-0.0,-4.182971679625592e-35,3.88578060273166e-18,1.3322676411307164e-18,1.3322676411307164e-18,2.3790494034752407e-18,1.1102229998097382e-18,2.3790494034752407e-18,0.006000000052154064,-0.006000000052154064,-0.004000000189989805,-0.0,-0.0,-0.0,0.004000000189989805,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.004999999888241291,2.710505431213761e-19,-0.0024999999441206455,-1.7602994740019434e-20,-0.0,-0.0,0.0024999999441206455,-4.271451833040689e-22,-0.0,-1.3552527156068805e-19,-1.0577467347393498e-33,-0.0,-0.0,4.144859877835439e-21,0.004999999888241291,-0.004999999888241291,2.657620672725949e-19,7.710184996478466e-33,-0.0024999999441206455,-4.182971679625592e-35,-0.0,-4.271451833040689e-22,0.0024999999441206455,-0.0,2.644232269835638e-21,-1.3552527156068805e-19,-8.136099330638192e-22,-6.968735506212577e-34,4.673285148236761e-20,0.0033333334140479565,-7.77156120546332e-18,-0.009999999776482582,-1.8680507632138192e-17,-1.8680507632138192e-17,3.88578060273166e-18,-0.0,-0.0,-0.0,0.0033333334140479565,2.0210994011021063e-18,2.0210994011021063e-18,3.1720658023686032e-18,1.4802974020113686e-18,3.1720658023686032e-18,0.004000000189989805,-2.3987731115912614e-18,-0.0026666666381061077,-0.0020000000949949026,-2.4553585016562253e-20,1.3322676411307164e-18,-0.0,-1.3552527156068805e-19,2.644232269835638e-21,2.0210994011021063e-18,0.0013333333190530539,4.9758446281567035e-34,-2.941054109617244e-19,-0.0,5.036632875691845e-21,0.004000000189989805,-2.3934847391400567e-18,-0.0026666666381061077,-0.0,-0.0020000000949949026,1.3322676411307164e-18,-0.0,-1.0577467347393498e-33,-1.3552527156068805e-19,2.0210994011021063e-18,4.9758446281567035e-34,0.0013333333190530539,1.1986428651613516e-34,2.6853869979172645e-34,-2.941054109617244e-19,0.0023809524718672037,-4.756471329095283e-18,-8.927986171592055e-18,-0.004761904943734407,-0.0,2.3790494034752407e-18,-0.0,-0.0,-8.136099330638192e-22,3.1720658023686032e-18,-2.941054109617244e-19,1.1986428651613516e-34,0.0011904762359336019,1.2750984411890236e-34,-2.6896112851491978e-21,0.0033333334140479565,-2.2204459996194763e-18,-4.440891999238953e-18,-0.0016666667070239782,-0.0016666667070239782,1.1102229998097382e-18,-0.0,-0.0,-6.968735506212577e-34,1.4802974020113686e-18,-0.0,2.6853869979172645e-34,1.2750984411890236e-34,0.0008333333535119891,1.951111237433757e-34,0.0023809524718672037,-4.859854016413386e-18,-8.938059577091725e-18,-3.3780441972389165e-33,-0.004761904943734407,2.3790494034752407e-18,-0.0,4.144859877835439e-21,4.673285148236761e-20,3.1720658023686032e-18,5.036632875691845e-21,-2.941054109617244e-19,-2.6896112851491978e-21,1.951111237433757e-34,0.0011904762359336019,3.0,4.0,5.0,6.0,0.09392856806516647,-0.037261903285980225,-0.030476190149784088,-0.025833332911133766,-0.022440476343035698,0.004166666883975267,0.004999999888241291,0.004166666883975267,0.0035714285913854837,0.0027777778450399637,0.0033333334140479565,0.0028571428265422583,0.0019841270986944437,0.0023809524718672037,0.0014880952658131719,-0.037261903285980225,0.07892857491970062,0.004999999888241291,0.004166666883975267,0.0035714285913854837,-0.02500000037252903,-0.004999999888241291,-0.004166666883975267,-0.0035714285913854837,-6.476301004552767e-18,-2.4355516295769004e-18,-2.4062892882272245e-18,-4.065810672789539e-18,-1.5521515832941296e-18,-2.7268170193030005e-18,-0.030476190149784088,0.004999999888241291,0.03976190462708473,0.0033333334140479565,0.0028571428265422583,-1.4313946909923867e-17,-0.0033333334140479565,-2.1037806011213622e-19,-5.068318626822928e-19,-0.008333333767950535,-0.002222222276031971,-0.0019047618843615055,-3.7152320904451706e-19,-6.512453139439002e-34,-8.528559885739439e-19,-0.025833332911133766,0.004166666883975267,0.0033333334140479565,0.024821428582072258,0.0023809524718672037,-1.1578040416459828e-17,-0.0,-0.0020833334419876337,4.9920957428337564e-20,-2.9993149784253454e-33,-0.0016666667070239782,2.710505431213761e-20,-0.003968254197388887,-0.0011904762359336019,3.751873154277458e-20,-0.022440476343035698,0.0035714285913854837,0.0028571428265422583,0.0023809524718672037,0.01716071367263794,-9.828447541791768e-18,-0.0,2.3701532440082948e-20,-0.0014285714132711291,-2.5460794379078036e-33,9.68002457285212e-21,-0.0011428571306169033,-0.0,-0.0009523809421807528,-0.0022321429569274187,0.004166666883975267,-0.02500000037252903,-1.4313946909923867e-17,-1.1578040416459828e-17,-9.828447541791768e-18,0.012500000186264515,-0.0,1.925929944387236e-34,1.8763201797739486e-34,3.2381505022763835e-18,1.1102229998097382e-18,9.516196993515503e-19,1.9825412040285595e-18,7.930164505921508e-19,1.3629969872967551e-18,0.004999999888241291,-0.004999999888241291,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.004166666883975267,-2.1037806011213622e-19,-0.0020833334419876337,2.3701532440082948e-20,1.925929944387236e-34,-0.0,0.0020833334419876337,-1.6152458411105974e-21,0.0,1.0842021724855044e-19,-2.5849507233381487e-21,5.421010862427522e-20,-0.0,-3.355441191156451e-21,0.0035714285913854837,-0.0035714285913854837,-5.068318626822928e-19,4.9920957428337564e-20,-0.0014285714132711291,1.8763201797739486e-34,-0.0,-1.6152458411105974e-21,0.0014285714132711291,0.0,-6.939517244275511e-22,2.0328790734103208e-19,-3.0766589084545978e-21,-1.3552527156068805e-20,3.0135225710556407e-21,0.0027777778450399637,-6.476301004552767e-18,-0.008333333767950535,-2.9993149784253454e-33,-2.5460794379078036e-33,3.2381505022763835e-18,-0.0,0.0,0.0,0.0027777778450399637,2.876055395863005e-34,2.465190273714364e-34,5.135813338091789e-34,2.0543253811544638e-34,3.5308716412395125e-34,0.0033333334140479565,-2.4355516295769004e-18,-0.002222222276031971,-0.0016666667070239782,9.68002457285212e-21,1.1102229998097382e-18,-0.0,1.0842021724855044e-19,-6.939517244275511e-22,2.876055395863005e-34,0.0011111111380159855,-2.0679606190601973e-21,1.9191624186995933e-19,-0.0,-1.0842995883507103e-21,0.0028571428265422583,-2.4062892882272245e-18,-0.0019047618843615055,2.710505431213761e-20,-0.0011428571306169033,9.516196993515503e-19,-0.0,-2.5849507233381487e-21,2.0328790734103208e-19,2.465190273714364e-34,-2.0679606190601973e-21,0.0007619047537446022,-4.923715451936254e-21,1.397908730065848e-35,3.4200984422832545e-19,0.0019841270986944437,-4.065810672789539e-18,-3.7152320904451706e-19,-0.003968254197388887,-0.0,1.9825412040285595e-18,-0.0,5.421010862427522e-20,-3.0766589084545978e-21,5.135813338091789e-34,1.9191624186995933e-19,-4.923715451936254e-21,0.0009920635493472219,1.0119829000820557e-35,6.6625997530229535e-21,0.0023809524718672037,-1.5521515832941296e-18,-6.512453139439002e-34,-0.0011904762359336019,-0.0009523809421807528,7.930164505921508e-19,-0.0,-0.0,-1.3552527156068805e-20,2.0543253811544638e-34,-0.0,1.397908730065848e-35,1.0119829000820557e-35,0.0004761904710903764,-2.4607660333520773e-20,0.0014880952658131719,-2.7268170193030005e-18,-8.528559885739439e-19,3.751873154277458e-20,-0.0022321429569274187,1.3629969872967551e-18,-0.0,-3.355441191156451e-21,3.0135225710556407e-21,3.5308716412395125e-34,-1.0842995883507103e-21,3.4200984422832545e-19,6.6625997530229535e-21,-2.4607660333520773e-20,0.00044642857392318547,3.0,4.0,5.0,7.0,0.08282596617937088,-0.03232142701745033,-0.026428570970892906,-0.022397959604859352,-0.017202381044626236,0.0035714285913854837,0.004285714123398066,0.0035714285913854837,0.0026785715017467737,0.0023809524718672037,0.0028571428265422583,0.002142857061699033,0.001700680237263441,0.0017857142956927419,0.0009920635493472219,-0.03232142701745033,0.06803571432828903,0.004285714123398066,0.0035714285913854837,0.0026785715017467737,-0.02142857201397419,-0.004285714123398066,-0.0035714285913854837,-0.0026785715017467737,1.8239378828908563e-17,3.298948484094184e-18,8.877757283255997e-18,-6.1175552544303565e-18,2.8548592014522276e-18,7.754210264934408e-18,-0.026428570970892906,0.004285714123398066,0.034285712987184525,0.0028571428265422583,0.002142857061699033,5.1863274803731624e-17,-0.0028571428265422583,2.6735981832452935e-19,-2.8950410248212453e-20,-0.0071428571827709675,-0.0019047618843615055,-0.0014285714132711291,-1.4576398083397142e-17,-4.916702004011093e-18,3.4688180878929207e-19,-0.022397959604859352,0.0035714285913854837,0.0028571428265422583,0.021403061226010323,0.0017857142956927419,6.967216154490738e-19,-1.1614292433985577e-17,-0.0017857142956927419,5.947623508688102e-19,-2.2020178217788362e-17,-0.0014285714132711291,1.4002404841842255e-18,-0.003401360474526882,-0.0008928571478463709,2.0517727057816445e-18,-0.017202381044626236,0.0026785715017467737,0.002142857061699033,0.0017857142956927419,0.010892856866121292,3.2434373858024855e-17,-8.179398160386798e-19,7.256100298028451e-18,-0.0008928571478463709,-3.0066652486243375e-18,-1.5225915603215112e-18,-0.0007142857066355646,3.34649337813766e-18,-0.0005952381179668009,-0.0011904762359336019,0.0035714285913854837,-0.02142857201397419,5.1863274803731624e-17,6.967216154490738e-19,3.2434373858024855e-17,0.010714286006987095,-4.7580988069504814e-18,1.9673728793462387e-32,-2.9738117026452626e-18,-9.119689414454282e-18,-2.2204459996194763e-18,-4.0443837997922714e-18,1.69932097294015e-18,-1.387778801460961e-18,-3.105981102460823e-18,0.004285714123398066,-0.004285714123398066,-0.0028571428265422583,-1.1614292433985577e-17,-8.179398160386798e-19,-4.7580988069504814e-18,0.0028571428265422583,1.1600697307027962e-18,-1.3367990916226468e-19,1.578466450848439e-32,7.612957801607556e-19,9.470894618082821e-34,1.812608941298422e-18,4.758098496757752e-19,1.3917136796865852e-34,0.0035714285913854837,-0.0035714285913854837,2.6735981832452935e-19,-0.0017857142956927419,7.256100298028451e-18,1.9673728793462387e-32,1.1600697307027962e-18,0.0017857142956927419,-5.947623508688102e-19,-2.0028414377355842e-33,-7.051450360069637e-34,-4.758098496757752e-19,2.9651760510835737e-33,-3.965082252960754e-19,-7.930164505921508e-19,0.0026785715017467737,-0.0026785715017467737,-2.8950410248212453e-20,5.947623508688102e-19,-0.0008928571478463709,-2.9738117026452626e-18,-1.3367990916226468e-19,-5.947623508688102e-19,0.0008928571478463709,2.6000054249227684e-33,5.7777898331617076e-34,5.421010862427522e-20,-6.500013562306921e-34,-3.598715974984005e-35,1.4595029990652775e-20,0.0023809524718672037,1.8239378828908563e-17,-0.0071428571827709675,-2.2020178217788362e-17,-3.0066652486243375e-18,-9.119689414454282e-18,1.578466450848439e-32,-2.0028414377355842e-33,2.6000054249227684e-33,0.0023809524718672037,2.4450081651347597e-18,5.946364643193373e-19,3.3986419458803e-18,1.05735530192206e-18,-4.4056469836361075e-20,0.0028571428265422583,3.298948484094184e-18,-0.0019047618843615055,-0.0014285714132711291,-1.5225915603215112e-18,-2.2204459996194763e-18,7.612957801607556e-19,-7.051450360069637e-34,5.7777898331617076e-34,2.4450081651347597e-18,0.0009523809421807528,3.806478900803778e-19,1.812608941298422e-18,4.758098496757752e-19,-1.9597456107825314e-34,0.002142857061699033,8.877757283255997e-18,-0.0014285714132711291,1.4002404841842255e-18,-0.0007142857066355646,-4.0443837997922714e-18,9.470894618082821e-34,-4.758098496757752e-19,5.421010862427522e-20,5.946364643193373e-19,3.806478900803778e-19,0.0004761904710903764,-4.531522353246055e-19,2.7749136923046587e-35,-1.30312767081291e-19,0.001700680237263441,-6.1175552544303565e-18,-1.4576398083397142e-17,-0.003401360474526882,3.34649337813766e-18,1.69932097294015e-18,1.812608941298422e-18,2.9651760510835737e-33,-6.500013562306921e-34,3.3986419458803e-18,1.812608941298422e-18,-4.531522353246055e-19,0.0008503401186317205,-1.0609516764302874e-19,-3.146890767220705e-19,0.0017857142956927419,2.8548592014522276e-18,-4.916702004011093e-18,-0.0008928571478463709,-0.0005952381179668009,-1.387778801460961e-18,4.758098496757752e-19,-3.965082252960754e-19,-3.598715974984005e-35,1.05735530192206e-18,4.758098496757752e-19,2.7749136923046587e-35,-1.0609516764302874e-19,0.00029761905898340046,-3.684447280506745e-35,0.0009920635493472219,7.754210264934408e-18,3.4688180878929207e-19,2.0517727057816445e-18,-0.0011904762359336019,-3.105981102460823e-18,1.3917136796865852e-34,-7.930164505921508e-19,1.4595029990652775e-20,-4.4056469836361075e-20,-1.9597456107825314e-34,-1.30312767081291e-19,-3.146890767220705e-19,-3.684447280506745e-35,0.00019841270113829523,3.0,4.0,5.0,8.0,0.07408729940652847,-0.028541667386889458,-0.023333333432674408,-0.019771825522184372,-0.013611110858619213,0.0031250000465661287,0.0037499999161809683,0.0031250000465661287,0.0020833334419876337,0.0020833334419876337,0.0024999999441206455,0.0016666667070239782,0.0014880952658131719,0.0013888889225199819,0.0006944444612599909,-0.028541667386889458,0.05979166552424431,0.0037499999161809683,0.0031250000465661287,0.0020833334419876337,-0.01875000074505806,-0.0037499999161809683,-0.0031250000465661287,-0.0020833334419876337,1.8648277366750676e-17,-3.903127820947816e-18,-1.951563910473908e-18,-1.3444106938820255e-17,-4.445228907190568e-18,-4.9873299934333204e-18,-0.023333333432674408,0.0037499999161809683,0.030138889327645302,0.0024999999441206455,0.0016666667070239782,2.1137554997498355e-17,-0.0024999999441206455,-1.0842021724855044e-18,5.963111948670274e-19,-0.0062500000931322575,-0.0016666667070239782,-0.0011111111380159855,-9.75781955236954e-18,-1.6263032587282567e-18,-4.174178364069192e-18,-0.019771825522184372,0.0031250000465661287,0.0024999999441206455,0.018814483657479286,0.0013888889225199819,-1.557323178522357e-17,-9.579831791244055e-18,-0.0015625000232830644,-3.672734859294646e-18,1.4720180478627488e-18,-0.0012499999720603228,-3.3068166260807885e-18,-0.0029761905316263437,-0.0006944444612599909,-3.7947076036992655e-18,-0.013611110858619213,0.0020833334419876337,0.0016666667070239782,0.0013888889225199819,0.007361111231148243,-1.441988889405721e-17,-5.487287468237415e-18,-6.4091628901349004e-18,-0.0005952381179668009,-4.201726373599352e-18,-4.289597356480554e-18,-0.0004761904710903764,-6.803067952193877e-18,-0.00039682540227659047,-0.0006944444612599909,0.0031250000465661287,-0.01875000074505806,2.1137554997498355e-17,-1.557323178522357e-17,-1.441988889405721e-17,0.00937500037252903,-5.04281809610399e-18,1.6623119817563385e-18,2.3669099076005656e-18,-5.910225329026084e-18,4.606598816605016e-19,3.1750526481629557e-19,2.333962476621966e-18,9.283127482195265e-19,1.3010426069826053e-18,0.0037499999161809683,-0.0037499999161809683,-0.0024999999441206455,-9.579831791244055e-18,-5.487287468237415e-18,-5.04281809610399e-18,0.0024999999441206455,9.215718466126788e-19,-1.2388912639786141e-20,-1.6378192672162199e-18,3.368024062301803e-19,1.6678182904495567e-19,1.5434428190100182e-18,4.71301870433726e-19,5.692061405548898e-19,0.0031250000465661287,-0.0031250000465661287,-1.0842021724855044e-18,-0.0015625000232830644,-6.4091628901349004e-18,1.6623119817563385e-18,9.215718466126788e-19,0.0015625000232830644,5.192342468953949e-19,-9.496637273955921e-19,8.838890134223662e-19,3.1543343587579165e-19,2.038606678766791e-18,6.100703103810814e-19,5.421010862427522e-19,0.0020833334419876337,-0.0020833334419876337,5.963111948670274e-19,-3.672734859294646e-18,-0.0005952381179668009,2.3669099076005656e-18,-1.2388912639786141e-20,5.192342468953949e-19,0.0005952381179668009,-5.285485590866834e-19,2.404900968966631e-19,1.1871071888492517e-19,5.21533757299504e-19,1.5680317449951343e-19,1.6263032587282567e-19,0.0020833334419876337,1.8648277366750676e-17,-0.0062500000931322575,1.4720180478627488e-18,-4.201726373599352e-18,-5.910225329026084e-18,-1.6378192672162199e-18,-9.496637273955921e-19,-5.285485590866834e-19,0.0020833334419876337,-2.067374159315007e-18,4.242983402517718e-19,8.76303974000408e-19,-1.2583258886264189e-19,5.963111948670274e-19,0.0024999999441206455,-3.903127820947816e-18,-0.0016666667070239782,-0.0012499999720603228,-4.289597356480554e-18,4.606598816605016e-19,3.368024062301803e-19,8.838890134223662e-19,2.404900968966631e-19,-2.067374159315007e-18,0.0008333333535119891,6.776263578034403e-20,1.3975920586579838e-18,4.956023688790026e-19,3.7947076036992655e-19,0.0016666667070239782,-1.951563910473908e-18,-0.0011111111380159855,-3.3068166260807885e-18,-0.0004761904710903764,3.1750526481629557e-19,1.6678182904495567e-19,3.1543343587579165e-19,1.1871071888492517e-19,4.242983402517718e-19,6.776263578034403e-20,0.0003174603043589741,5.846903412364231e-19,1.2252465481895111e-19,1.3552527156068805e-19,0.0014880952658131719,-1.3444106938820255e-17,-9.75781955236954e-18,-0.0029761905316263437,-6.803067952193877e-18,2.333962476621966e-18,1.5434428190100182e-18,2.038606678766791e-18,5.21533757299504e-19,8.76303974000408e-19,1.3975920586579838e-18,5.846903412364231e-19,0.0007440476329065859,7.386127300057499e-19,5.149960319306146e-19,0.0013888889225199819,-4.445228907190568e-18,-1.6263032587282567e-18,-0.0006944444612599909,-0.00039682540227659047,9.283127482195265e-19,4.71301870433726e-19,6.100703103810814e-19,1.5680317449951343e-19,-1.2583258886264189e-19,4.956023688790026e-19,1.2252465481895111e-19,7.386127300057499e-19,0.00019841270113829523,1.4907779871675686e-19,0.0006944444612599909,-4.9873299934333204e-18,-4.174178364069192e-18,-3.7947076036992655e-18,-0.0006944444612599909,1.3010426069826053e-18,5.692061405548898e-19,5.421010862427522e-19,1.6263032587282567e-19,5.963111948670274e-19,3.7947076036992655e-19,1.3552527156068805e-19,5.149960319306146e-19,1.4907779871675686e-19,9.920635056914762e-05,3.0,4.0,6.0,3.0,0.1373346596956253,-0.05863095074892044,-0.04801587387919426,-0.03541666641831398,-0.05863095074892044,0.0069444444961845875,0.008333333767950535,0.0059523810632526875,0.010416666977107525,0.004629629664123058,0.004761904943734407,0.008333333767950535,0.0024801588151603937,0.0059523810632526875,0.0069444444961845875,-0.05863095074892044,0.12807539105415344,0.008333333767950535,0.0059523810632526875,0.010416666977107525,-0.0416666679084301,-0.008333333767950535,-0.0059523810632526875,-0.010416666977107525,2.158767029090276e-17,5.930407295201459e-18,1.1102230411687688e-17,8.95112158614455e-18,7.930164816114238e-18,4.625929158980737e-17,-0.04801587387919426,0.008333333767950535,0.06441798806190491,0.004761904943734407,0.008333333767950535,5.244188433349002e-17,-0.0055555556900799274,-4.13724412933324e-19,-3.1051832322698653e-32,-0.013888888992369175,-0.0031746032182127237,-0.0055555556900799274,-6.13874203825483e-19,6.776263578034403e-20,-5.61586901281899e-32,-0.03541666641831398,0.0059523810632526875,0.004761904943734407,0.027807539328932762,0.0059523810632526875,3.707902608473461e-17,-1.1709436448482698e-32,-0.0023809524718672037,-2.1955194351095517e-32,-1.9210794138853615e-32,-0.0019047618843615055,-9.87983753146138e-33,-0.0037202381063252687,-0.0023809524718672037,1.8469619589329023e-17,-0.05863095074892044,0.010416666977107525,0.008333333767950535,0.0059523810632526875,0.12807539105415344,7.683448437689069e-17,-2.4264081253197453e-32,-1.7918933194139614e-32,-0.010416666977107525,-3.9808257249918865e-32,6.776263578034403e-20,-0.008333333767950535,8.673617379884035e-18,-0.0059523810632526875,-0.0416666679084301,0.0069444444961845875,-0.0416666679084301,5.244188433349002e-17,3.707902608473461e-17,7.683448437689069e-17,0.02083333395421505,-6.579099288768101e-18,-5.6392281390542176e-18,-1.2335811476632919e-17,-1.079383514545138e-17,-3.1720658023686032e-18,-5.551115205843844e-18,-4.543323428852619e-18,-3.965082408057119e-18,-2.3129645794903686e-17,0.008333333767950535,-0.008333333767950535,-0.0055555556900799274,-1.1709436448482698e-32,-2.4264081253197453e-32,-6.579099288768101e-18,0.0055555556900799274,1.7808500642667645e-33,3.8956095844601695e-33,3.40865811089616e-33,1.0017280922734329e-33,1.7530242762728778e-33,1.4347668949694207e-33,1.2521601842184133e-33,7.304267695356329e-33,0.0059523810632526875,-0.0059523810632526875,-4.13724412933324e-19,-0.0023809524718672037,-1.7918933194139614e-32,-5.6392281390542176e-18,1.7808500642667645e-33,0.0023809524718672037,3.3390938245824354e-33,2.9217070046741348e-33,1.6548976000345077e-19,1.5025921843278974e-33,5.421010862427522e-20,-0.0,6.162975822039155e-33,0.010416666977107525,-0.010416666977107525,-3.1051832322698653e-32,-2.1955194351095517e-32,-0.010416666977107525,-1.2335811476632919e-17,3.8956095844601695e-33,3.3390938245824354e-33,0.010416666977107525,6.391234049765796e-33,1.878240322245368e-33,3.286920609847142e-33,2.6901878821499158e-33,2.347800356888962e-33,1.3695502479806094e-32,0.004629629664123058,2.158767029090276e-17,-0.013888888992369175,-1.9210794138853615e-32,-3.9808257249918865e-32,-1.079383514545138e-17,3.40865811089616e-33,2.9217070046741348e-33,6.391234049765796e-33,0.004629629664123058,1.643460304923571e-33,2.876055395863005e-33,2.3539143968811763e-33,2.0543253352367157e-33,1.1983563935146363e-32,0.004761904943734407,5.930407295201459e-18,-0.0031746032182127237,-0.0019047618843615055,6.776263578034403e-20,-3.1720658023686032e-18,1.0017280922734329e-33,1.6548976000345077e-19,1.878240322245368e-33,1.643460304923571e-33,0.0012698412174358964,8.452080807255683e-34,2.455496763603144e-19,-2.710505431213761e-20,2.6963019221421302e-33,0.008333333767950535,1.1102230411687688e-17,-0.0055555556900799274,-9.87983753146138e-33,-0.008333333767950535,-5.551115205843844e-18,1.7530242762728778e-33,1.5025921843278974e-33,3.286920609847142e-33,2.876055395863005e-33,8.452080807255683e-34,0.0055555556900799274,1.2105845102332636e-33,1.0565101697835825e-33,6.162975822039155e-33,0.0024801588151603937,8.95112158614455e-18,-6.13874203825483e-19,-0.0037202381063252687,8.673617379884035e-18,-4.543323428852619e-18,1.4347668949694207e-33,5.421010862427522e-20,2.6901878821499158e-33,2.3539143968811763e-33,2.455496763603144e-19,1.2105845102332636e-33,0.0007440476329065859,-8.598695495902045e-19,-3.3042352021841637e-18,0.0059523810632526875,7.930164816114238e-18,6.776263578034403e-20,-0.0023809524718672037,-0.0059523810632526875,-3.965082408057119e-18,1.2521601842184133e-33,-0.0,2.347800356888962e-33,2.0543253352367157e-33,-2.710505431213761e-20,1.0565101697835825e-33,-8.598695495902045e-19,0.0023809524718672037,-1.9484433716130517e-18,0.0069444444961845875,4.625929158980737e-17,-5.61586901281899e-32,1.8469619589329023e-17,-0.0416666679084301,-2.3129645794903686e-17,7.304267695356329e-33,6.162975822039155e-33,1.3695502479806094e-32,1.1983563935146363e-32,2.6963019221421302e-33,6.162975822039155e-33,-3.3042352021841637e-18,-1.9484433716130517e-18,0.02083333395421505,3.0,4.0,6.0,4.0,0.11144841462373734,-0.04553571343421936,-0.037261903285980225,-0.02745535783469677,-0.037261903285980225,0.0052083334885537624,0.0062500000931322575,0.004464285913854837,0.0062500000931322575,0.0034722222480922937,0.0035714285913854837,0.004999999888241291,0.0018601190531626344,0.0035714285913854837,0.0034722222480922937,-0.04553571343421936,0.09761904925107956,0.0062500000931322575,0.004464285913854837,0.0062500000931322575,-0.03125,-0.0062500000931322575,-0.004464285913854837,-0.0062500000931322575,1.6190751890996458e-17,4.492409634969368e-18,6.661337998858429e-18,6.679459871718241e-18,4.6903361711701374e-18,1.6190751890996458e-17,-0.037261903285980225,0.0062500000931322575,0.04914682358503342,0.0035714285913854837,0.004999999888241291,4.263124102720284e-17,-0.004166666883975267,-2.6568909443293123e-19,-2.019421271275154e-32,-0.010416666977107525,-0.0023809524718672037,-0.0033333334140479565,-6.193012324268669e-19,-3.3881317890172014e-20,-2.1413345821980167e-32,-0.02745535783469677,0.004464285913854837,0.0035714285913854837,0.021212797611951828,0.0035714285913854837,2.73466770777868e-17,-1.2953988888363887e-32,-0.0017857142956927419,-1.2953988888363887e-32,-1.416842442829304e-32,-0.0014285714132711291,-5.8292948528269554e-33,-0.0027901786379516125,-0.0014285714132711291,6.600757772336883e-18,-0.037261903285980225,0.0062500000931322575,0.004999999888241291,0.0035714285913854837,0.04914682358503342,4.263124102720284e-17,-2.019421271275154e-32,-6.776263578034403e-20,-0.004166666883975267,-2.20874213025157e-32,-3.3881317890172014e-20,-0.0033333334140479565,4.662069341687669e-18,-0.0023809524718672037,-0.010416666977107525,0.0052083334885537624,-0.03125,4.263124102720284e-17,2.73466770777868e-17,4.263124102720284e-17,0.015625,-7.401487216851996e-18,-3.1720658023686032e-18,-7.401487216851996e-18,-8.095375945498229e-18,-2.3790494034752407e-18,-3.3306689994292145e-18,-3.4074925716394644e-18,-2.3790494034752407e-18,-8.095375945498229e-18,0.0062500000931322575,-0.0062500000931322575,-0.004166666883975267,-1.2953988888363887e-32,-2.019421271275154e-32,-7.401487216851996e-18,0.004166666883975267,1.5025921843278974e-33,3.5060485525457556e-33,3.834740650264668e-33,1.126944138245923e-33,1.5777218853797885e-33,1.6141128027583464e-33,1.126944138245923e-33,3.834740650264668e-33,0.004464285913854837,-0.004464285913854837,-2.6568909443293123e-19,-0.0017857142956927419,-6.776263578034403e-20,-3.1720658023686032e-18,1.5025921843278974e-33,0.0017857142956927419,1.5025921843278974e-33,1.643460304923571e-33,1.0627564165058161e-19,6.7616648294755385e-34,5.421010862427522e-20,2.710505431213761e-20,1.6370404527291505e-33,0.0062500000931322575,-0.0062500000931322575,-2.019421271275154e-32,-1.2953988888363887e-32,-0.004166666883975267,-7.401487216851996e-18,3.5060485525457556e-33,1.5025921843278974e-33,0.004166666883975267,3.834740650264668e-33,1.126944138245923e-33,1.5777218853797885e-33,1.6141128027583464e-33,1.126944138245923e-33,3.834740650264668e-33,0.0034722222480922937,1.6190751890996458e-17,-0.010416666977107525,-1.416842442829304e-32,-2.20874213025157e-32,-8.095375945498229e-18,3.834740650264668e-33,1.643460304923571e-33,3.834740650264668e-33,0.0034722222480922937,1.2325951827749302e-33,1.725633237517803e-33,1.7654358435786303e-33,1.2325951827749302e-33,4.194247597706418e-33,0.0035714285913854837,4.492409634969368e-18,-0.0023809524718672037,-0.0014285714132711291,-3.3881317890172014e-20,-2.3790494034752407e-18,1.126944138245923e-33,1.0627564165058161e-19,1.126944138245923e-33,1.2325951827749302e-33,0.0009523809421807528,5.071248851695394e-34,2.477204826309891e-19,1.3552527156068805e-20,9.62964972193618e-34,0.004999999888241291,6.661337998858429e-18,-0.0033333334140479565,-5.8292948528269554e-33,-0.0033333334140479565,-3.3306689994292145e-18,1.5777218853797885e-33,6.7616648294755385e-34,1.5777218853797885e-33,1.725633237517803e-33,5.071248851695394e-34,0.002222222276031971,7.263507245070574e-34,5.071248851695394e-34,1.725633237517803e-33,0.0018601190531626344,6.679459871718241e-18,-6.193012324268669e-19,-0.0027901786379516125,4.662069341687669e-18,-3.4074925716394644e-18,1.6141128027583464e-33,5.421010862427522e-20,1.6141128027583464e-33,1.7654358435786303e-33,2.477204826309891e-19,7.263507245070574e-34,0.0005580357392318547,-4.966318468501131e-19,-1.1564823517837303e-18,0.0035714285913854837,4.6903361711701374e-18,-3.3881317890172014e-20,-0.0014285714132711291,-0.0023809524718672037,-2.3790494034752407e-18,1.126944138245923e-33,2.710505431213761e-20,1.126944138245923e-33,1.2325951827749302e-33,1.3552527156068805e-20,5.071248851695394e-34,-4.966318468501131e-19,0.0009523809421807528,-5.455641295759938e-19,0.0034722222480922937,1.6190751890996458e-17,-2.1413345821980167e-32,6.600757772336883e-18,-0.010416666977107525,-8.095375945498229e-18,3.834740650264668e-33,1.6370404527291505e-33,3.834740650264668e-33,4.194247597706418e-33,9.62964972193618e-34,1.725633237517803e-33,-1.1564823517837303e-18,-5.455641295759938e-19,0.0034722222480922937,3.0,4.0,6.0,5.0,0.09392856806516647,-0.037261903285980225,-0.030476190149784088,-0.022440476343035698,-0.025833332911133766,0.004166666883975267,0.004999999888241291,0.0035714285913854837,0.004166666883975267,0.0027777778450399637,0.0028571428265422583,0.0033333334140479565,0.0014880952658131719,0.0023809524718672037,0.0019841270986944437,-0.037261903285980225,0.07892857491970062,0.004999999888241291,0.0035714285913854837,0.004166666883975267,-0.02500000037252903,-0.004999999888241291,-0.0035714285913854837,-0.004166666883975267,-6.476301004552767e-18,-2.4972255956633947e-18,-2.4370494468710808e-18,-2.7256552441326698e-18,-2.0032629055536253e-18,-4.073299966055594e-18,-0.030476190149784088,0.004999999888241291,0.03976190462708473,0.0028571428265422583,0.0033333334140479565,-1.4313946909923867e-17,-0.0033333334140479565,-5.900899177812278e-19,-2.214735248067987e-19,-0.008333333767950535,-0.0019047618843615055,-0.002222222276031971,-1.0001059249321118e-18,-2.585105884326488e-19,-2.8423719795275505e-19,-0.022440476343035698,0.0035714285913854837,0.0028571428265422583,0.01716071367263794,0.0023809524718672037,-9.828447541791768e-18,-0.0,-0.0014285714132711291,-4.1898254159338217e-19,-2.5460794379078036e-33,-0.0011428571306169033,-3.2526065174565133e-19,-0.0022321429569274187,-0.0009523809421807528,-6.612167074525827e-18,-0.025833332911133766,0.004166666883975267,0.0033333334140479565,0.0023809524718672037,0.024821428582072258,-1.1578040416459828e-17,-0.0,1.9222055386249935e-20,-0.0020833334419876337,-2.9993149784253454e-33,5.066780781741918e-20,-0.0016666667070239782,-5.5294310796760726e-18,-0.0011904762359336019,-0.003968254197388887,0.004166666883975267,-0.02500000037252903,-1.4313946909923867e-17,-9.828447541791768e-18,-1.1578040416459828e-17,0.012500000186264515,-0.0,1.925929944387236e-34,4.845397356816566e-34,3.2381505022763835e-18,9.516196993515503e-19,1.1102229998097382e-18,1.3629969872967551e-18,7.930164505921508e-19,1.9825412040285595e-18,0.004999999888241291,-0.004999999888241291,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0035714285913854837,-5.900899177812278e-19,-0.0014285714132711291,1.9222055386249935e-20,1.925929944387236e-34,-0.0,0.0014285714132711291,-1.0838059002635613e-22,-0.0,2.361118299144199e-19,-9.481846810024753e-23,0.0,-0.0,-4.361252022445802e-21,0.004166666883975267,-0.004166666883975267,-2.214735248067987e-19,-4.1898254159338217e-19,-0.0020833334419876337,4.845397356816566e-34,-0.0,-1.0838059002635613e-22,0.0020833334419876337,0.0,1.853234952578445e-21,1.0842021724855044e-19,-1.6934466954959874e-22,2.08615028034056e-19,5.956046146028452e-20,0.0027777778450399637,-6.476301004552767e-18,-0.008333333767950535,-2.5460794379078036e-33,-2.9993149784253454e-33,3.2381505022763835e-18,-0.0,-0.0,0.0,0.0027777778450399637,2.465190273714364e-34,2.876055395863005e-34,3.5308716412395125e-34,2.0543253811544638e-34,5.135813338091789e-34,0.0028571428265422583,-2.4972255956633947e-18,-0.0019047618843615055,-0.0011428571306169033,5.066780781741918e-20,9.516196993515503e-19,-0.0,2.361118299144199e-19,1.853234952578445e-21,2.465190273714364e-34,0.0007619047537446022,-7.585477574237547e-23,4.001608997847447e-19,-2.710505431213761e-20,3.529971453643738e-21,0.0033333334140479565,-2.4370494468710808e-18,-0.002222222276031971,-3.2526065174565133e-19,-0.0016666667070239782,1.1102229998097382e-18,-0.0,-9.481846810024753e-23,1.0842021724855044e-19,2.876055395863005e-34,-7.585477574237547e-23,0.0011111111380159855,-1.4815385877321948e-22,1.631366121064964e-19,1.377061332456841e-19,0.0014880952658131719,-2.7256552441326698e-18,-1.0001059249321118e-18,-0.0022321429569274187,-5.5294310796760726e-18,1.3629969872967551e-18,-0.0,0.0,-1.6934466954959874e-22,3.5308716412395125e-34,4.001608997847447e-19,-1.4815385877321948e-22,0.00044642857392318547,4.140680030802632e-19,1.132767083621835e-18,0.0023809524718672037,-2.0032629055536253e-18,-2.585105884326488e-19,-0.0009523809421807528,-0.0011904762359336019,7.930164505921508e-19,-0.0,-0.0,2.08615028034056e-19,2.0543253811544638e-34,-2.710505431213761e-20,1.631366121064964e-19,4.140680030802632e-19,0.0004761904710903764,4.737230280866687e-19,0.0019841270986944437,-4.073299966055594e-18,-2.8423719795275505e-19,-6.612167074525827e-18,-0.003968254197388887,1.9825412040285595e-18,-0.0,-4.361252022445802e-21,5.956046146028452e-20,5.135813338091789e-34,3.529971453643738e-21,1.377061332456841e-19,1.132767083621835e-18,4.737230280866687e-19,0.0009920635493472219,3.0,4.0,6.0,6.0,0.08123110234737396,-0.03154762089252472,-0.02579365111887455,-0.01898384280502796,-0.01898384280502796,0.0034722222480922937,0.004166666883975267,0.0029761905316263437,0.0029761905316263437,0.002314814832061529,0.0023809524718672037,0.0023809524718672037,0.0012400794075801969,0.001700680237263441,0.0012400794075801969,-0.03154762089252472,0.06626984477043152,0.004166666883975267,0.0029761905316263437,0.0029761905316263437,-0.02083333395421505,-0.004166666883975267,-0.0029761905316263437,-0.0029761905316263437,1.079383514545138e-17,3.035446584447814e-18,3.0066220284373316e-18,4.482069050131842e-18,2.3002809228497255e-18,4.440648808138862e-18,-0.02579365111887455,0.004166666883975267,0.033399470150470734,0.0023809524718672037,0.0023809524718672037,2.741046593790444e-17,-0.0027777778450399637,-1.3603032994813703e-19,-1.660326360545299e-19,-0.0069444444961845875,-0.0015873016091063619,-0.0015873016091063619,-2.468657465642804e-19,5.422296869786101e-20,-3.023239414859274e-19,-0.01898384280502796,0.0029761905316263437,0.0023809524718672037,0.01441397424787283,0.001700680237263441,1.9389173115247073e-17,-6.1230384014699675e-33,-0.0011904762359336019,1.845594396735805e-20,-1.0045610152918154e-32,-0.0009523809421807528,5.421010862427522e-20,-0.0018601190531626344,-0.0006802721181884408,1.4663967352149915e-18,-0.01898384280502796,0.0029761905316263437,0.0023809524718672037,0.001700680237263441,0.01441397424787283,1.9389173115247073e-17,-6.1230384014699675e-33,8.22756246407506e-21,-0.0011904762359336019,-1.0045610152918154e-32,3.163570347284954e-20,-0.0009523809421807528,2.1141942363467336e-18,-0.0006802721181884408,-0.0018601190531626344,0.0034722222480922937,-0.02083333395421505,2.741046593790444e-17,1.9389173115247073e-17,1.9389173115247073e-17,0.010416666977107525,-3.2895496443840503e-18,-2.8196140695271088e-18,-2.8196140695271088e-18,-5.39691757272569e-18,-1.5860329011843016e-18,-1.5860329011843016e-18,-2.2716617144263096e-18,-1.1328806141609079e-18,-2.2716617144263096e-18,0.004166666883975267,-0.004166666883975267,-0.0027777778450399637,-6.1230384014699675e-33,-6.1230384014699675e-33,-3.2895496443840503e-18,0.0027777778450399637,8.904250321333822e-34,8.904250321333822e-34,1.70432905544808e-33,5.0086404613671646e-34,5.0086404613671646e-34,7.173834474847104e-34,3.5776005263383236e-34,7.173834474847104e-34,0.0029761905316263437,-0.0029761905316263437,-1.3603032994813703e-19,-0.0011904762359336019,8.22756246407506e-21,-2.8196140695271088e-18,8.904250321333822e-34,0.0011904762359336019,-1.666107856234001e-21,1.4608535023370674e-33,5.599725818709018e-20,-1.5851235219217568e-21,2.710505431213761e-20,-1.3552527156068805e-20,5.472521111693561e-21,0.0029761905316263437,-0.0029761905316263437,-1.660326360545299e-19,1.845594396735805e-20,-0.0011904762359336019,-2.8196140695271088e-18,8.904250321333822e-34,-1.666107856234001e-21,0.0011904762359336019,1.4608535023370674e-33,-1.349580106452035e-21,6.776263578034403e-20,-2.6032934938111905e-21,-2.55304090844695e-22,3.5597265296822056e-20,0.002314814832061529,1.079383514545138e-17,-0.0069444444961845875,-1.0045610152918154e-32,-1.0045610152918154e-32,-5.39691757272569e-18,1.70432905544808e-33,1.4608535023370674e-33,1.4608535023370674e-33,0.002314814832061529,8.217301524617855e-34,8.217301524617855e-34,1.1769571984405881e-33,5.869500892222405e-34,1.1769571984405881e-33,0.0023809524718672037,3.035446584447814e-18,-0.0015873016091063619,-0.0009523809421807528,3.163570347284954e-20,-1.5860329011843016e-18,5.0086404613671646e-34,5.599725818709018e-20,-1.349580106452035e-21,8.217301524617855e-34,0.0006349206087179482,-1.2680987771477271e-21,1.012230544480458e-19,-6.776263578034403e-21,-2.1087188532224324e-21,0.0023809524718672037,3.0066220284373316e-18,-0.0015873016091063619,5.421010862427522e-20,-0.0009523809421807528,-1.5860329011843016e-18,5.0086404613671646e-34,-1.5851235219217568e-21,6.776263578034403e-20,8.217301524617855e-34,-1.2680987771477271e-21,0.0006349206087179482,-2.4767554588265344e-21,-1.4912924224227427e-20,1.2303829520525533e-19,0.0012400794075801969,4.482069050131842e-18,-2.468657465642804e-19,-0.0018601190531626344,2.1141942363467336e-18,-2.2716617144263096e-18,7.173834474847104e-34,2.710505431213761e-20,-2.6032934938111905e-21,1.1769571984405881e-33,1.012230544480458e-19,-2.4767554588265344e-21,0.00037202381645329297,-1.853649455691452e-19,-3.190952352005932e-19,0.001700680237263441,2.3002809228497255e-18,5.422296869786101e-20,-0.0006802721181884408,-0.0006802721181884408,-1.1328806141609079e-18,3.5776005263383236e-34,-1.3552527156068805e-20,-2.55304090844695e-22,5.869500892222405e-34,-6.776263578034403e-21,-1.4912924224227427e-20,-1.853649455691452e-19,0.0002721088530961424,4.978162273156213e-20,0.0012400794075801969,4.440648808138862e-18,-3.023239414859274e-19,1.4663967352149915e-18,-0.0018601190531626344,-2.2716617144263096e-18,7.173834474847104e-34,5.472521111693561e-21,3.5597265296822056e-20,1.1769571984405881e-33,-2.1087188532224324e-21,1.2303829520525533e-19,-3.190952352005932e-19,4.978162273156213e-20,0.00037202381645329297,3.0,4.0,6.0,7.0,0.07158683240413666,-0.027359694242477417,-0.022363945841789246,-0.01645408198237419,-0.014547902159392834,0.0029761905316263437,0.0035714285913854837,0.0025510203558951616,0.0022321429569274187,0.0019841270986944437,0.0020408162381500006,0.0017857142956927419,0.0010629252064973116,0.0012755101779475808,0.0008267195662483573,-0.027359694242477417,0.05712159723043442,0.0035714285913854837,0.0025510203558951616,0.0022321429569274187,-0.01785714365541935,-0.0035714285913854837,-0.0025510203558951616,-0.0022321429569274187,9.251858814269842e-18,2.5746027584985957e-18,2.5438438406256582e-18,3.9611164906102334e-18,1.7727473143746447e-18,2.876663062013666e-18,-0.022363945841789246,0.0035714285913854837,0.028798185288906097,0.0020408162381500006,0.0017857142956927419,2.326181602189986e-17,-0.0023809524718672037,-1.3828970916784027e-19,1.5977697927452107e-19,-0.0059523810632526875,-0.0013605442363768816,-0.0011904762359336019,-2.5039605002108015e-19,7.545870481249179e-20,2.1512098449754457e-19,-0.01645408198237419,0.0025510203558951616,0.0020408162381500006,0.012427721172571182,0.0012755101779475808,1.6395412918154328e-17,-4.437958800700572e-33,-0.0010204081190750003,6.984708568753791e-20,-8.494529928644791e-33,-0.0008163265301845968,6.776263578034403e-20,-0.0015943878097459674,-0.0005102040595375001,1.0103016497648638e-18,-0.014547902159392834,0.0022321429569274187,0.0017857142956927419,0.0012755101779475808,0.009148242883384228,1.400995803481063e-17,-3.7922564477160276e-33,-5.5325700620796494e-21,-0.0007440476329065859,-7.258615902874207e-33,6.946526267107512e-21,-0.0005952381179668009,1.6805133673525319e-18,-0.00042517005931586027,-0.0009920635493472219,0.0029761905316263437,-0.01785714365541935,2.326181602189986e-17,1.6395412918154328e-17,1.400995803481063e-17,0.008928571827709675,-2.4168120595946647e-18,-2.071553075769625e-18,-1.5105074855478771e-18,-4.625929407134921e-18,-1.3594567576726047e-18,-1.1895247017376204e-18,-1.9471384941967493e-18,-8.49660486470075e-19,-1.4318352680661478e-18,0.0035714285913854837,-0.0035714285913854837,-0.0023809524718672037,-4.437958800700572e-33,-3.7922564477160276e-33,-2.4168120595946647e-18,0.0023809524718672037,5.607341315582553e-34,4.088686184621661e-34,1.2521601842184133e-33,3.679817566159495e-34,3.219840427786743e-34,5.270572285976545e-34,2.2998859214524992e-34,3.875733903533184e-34,0.0025510203558951616,-0.0025510203558951616,-1.3828970916784027e-19,-0.0010204081190750003,-5.5325700620796494e-21,-2.071553075769625e-18,5.607341315582553e-34,0.0010204081190750003,1.969760815441134e-22,1.073280157901497e-33,5.635468422224405e-20,-8.656660185404634e-22,-2.710505431213761e-20,-0.0,1.0206297033007852e-21,0.0022321429569274187,-0.0022321429569274187,1.5977697927452107e-19,6.984708568753791e-20,-0.0007440476329065859,-1.5105074855478771e-18,4.088686184621661e-34,1.969760815441134e-22,0.0007440476329065859,7.826001495748193e-34,1.1413377911385938e-21,-5.421010862427522e-20,3.077751297792599e-22,-2.447541967985026e-20,-5.181406042656747e-21,0.0019841270986944437,9.251858814269842e-18,-0.0059523810632526875,-8.494529928644791e-33,-7.258615902874207e-33,-4.625929407134921e-18,1.2521601842184133e-33,1.073280157901497e-33,7.826001495748193e-34,0.0019841270986944437,7.0434009788313895e-34,6.162975913874651e-34,1.0088204558062184e-33,4.402125783961174e-34,7.418396992890642e-34,0.0020408162381500006,2.5746027584985957e-18,-0.0013605442363768816,-0.0008163265301845968,6.946526267107512e-21,-1.3594567576726047e-18,3.679817566159495e-34,5.635468422224405e-20,1.1413377911385938e-21,7.0434009788313895e-34,0.0005442177061922848,-6.925328350272099e-22,1.0178153707083834e-19,-6.776263578034403e-21,1.5217837215181251e-21,0.0017857142956927419,2.5438438406256582e-18,-0.0011904762359336019,6.776263578034403e-20,-0.0005952381179668009,-1.1895247017376204e-18,3.219840427786743e-34,-8.656660185404634e-22,-5.421010862427522e-20,6.162975913874651e-34,-6.925328350272099e-22,0.00039682540227659047,-1.3526032738763317e-21,-1.9506014212077172e-20,-7.297514672208961e-20,0.0010629252064973116,3.9611164906102334e-18,-2.5039605002108015e-19,-0.0015943878097459674,1.6805133673525319e-18,-1.9471384941967493e-18,5.270572285976545e-34,-2.710505431213761e-20,3.077751297792599e-22,1.0088204558062184e-33,1.0178153707083834e-19,-1.3526032738763317e-21,0.0003188775444868952,-1.8786233308541351e-19,-2.0487009705769289e-19,0.0012755101779475808,1.7727473143746447e-18,7.545870481249179e-20,-0.0005102040595375001,-0.00042517005931586027,-8.49660486470075e-19,2.2998859214524992e-34,-0.0,-2.447541967985026e-20,4.402125783961174e-34,-6.776263578034403e-21,-1.9506014212077172e-20,-1.8786233308541351e-19,0.0001700680295471102,3.627686202469399e-21,0.0008267195662483573,2.876663062013666e-18,2.1512098449754457e-19,1.0103016497648638e-18,-0.0009920635493472219,-1.4318352680661478e-18,3.875733903533184e-34,1.0206297033007852e-21,-5.181406042656747e-21,7.418396992890642e-34,1.5217837215181251e-21,-7.297514672208961e-20,-2.0487009705769289e-19,3.627686202469399e-21,0.0001653439103392884,3.0,4.0,6.0,8.0,0.06400462985038757,-0.02415674552321434,-0.01974206417798996,-0.014521329663693905,-0.011507936753332615,0.0026041667442768812,0.0031250000465661287,0.0022321429569274187,0.0017361111240461469,0.0017361111240461469,0.0017857142956927419,0.0013888889225199819,0.0009300595265813172,0.0009920635493472219,0.0005787037080153823,-0.02415674552321434,0.05019841343164444,0.0031250000465661287,0.0022321429569274187,0.0017361111240461469,-0.015625,-0.0031250000465661287,-0.0022321429569274187,-0.0017361111240461469,8.095375945498229e-18,2.3790494034752407e-18,1.9452394943054807e-18,3.4074925716394644e-18,1.273255232062688e-18,1.9246699940131245e-18,-0.01974206417798996,0.0031250000465661287,0.025314154103398323,0.0017857142956927419,0.0013888889225199819,2.2055770145185294e-17,-0.0020833334419876337,-4.477590592738545e-33,9.486769009248164e-20,-0.0052083334885537624,-0.0011904762359336019,-0.0009259259095415473,-6.195441133342278e-19,-2.4737663399010846e-19,1.2977184265946961e-19,-0.014521329663693905,0.0022321429569274187,0.0017857142956927419,0.010923858731985092,0.0009920635493472219,1.4202016138155642e-17,-6.727426168784939e-33,-0.0008928571478463709,-4.8438798404658856e-20,-7.358122234355283e-33,-0.0007142857066355646,-7.115076756936123e-20,-0.0013950893189758062,-0.00039682540227659047,6.1400810368714005e-19,-0.011507936753332615,0.0017361111240461469,0.0013888889225199819,0.0009920635493472219,0.006181500386446714,1.1548301619077321e-17,-5.470374550534663e-33,-2.3444463408982797e-33,-0.0004960317746736109,-5.983222531989272e-33,-1.762258793454443e-19,-0.00039682540227659047,8.38421583487317e-19,-0.00028344671591185033,-0.0005787037080153823,0.0026041667442768812,-0.015625,2.2055770145185294e-17,1.4202016138155642e-17,1.1548301619077321e-17,0.0078125,-3.700743608425998e-18,-1.5860329011843016e-18,-1.7622588710026254e-18,-4.0476879727491145e-18,-1.1895247017376204e-18,-9.251859021064995e-19,-1.7037462858197322e-18,-6.608470507765904e-19,-9.63735310386038e-19,0.0031250000465661287,-0.0031250000465661287,-0.0020833334419876337,-6.727426168784939e-33,-5.470374550534663e-33,-3.700743608425998e-18,0.0020833334419876337,7.512960921639487e-34,8.347734561456088e-34,1.917370325132334e-33,5.634720691229615e-34,4.3825606906821945e-34,8.070564013791732e-34,3.130400460546033e-34,4.565167309597706e-34,0.0022321429569274187,-0.0022321429569274187,-4.477590592738545e-33,-0.0008928571478463709,-2.3444463408982797e-33,-1.5860329011843016e-18,7.512960921639487e-34,0.0008928571478463709,3.5776005263383236e-34,8.217301524617855e-34,2.4148802634428723e-34,1.8782402304098718e-34,3.4588129191791447e-34,1.3416001973768713e-34,1.9565003739370484e-34,0.0017361111240461469,-0.0017361111240461469,9.486769009248164e-20,-4.8438798404658856e-20,-0.0004960317746736109,-1.7622588710026254e-18,8.347734561456088e-34,3.5776005263383236e-34,0.0004960317746736109,9.130334619195412e-34,2.738431639675601e-34,-2.710505431213761e-20,3.875066718653596e-34,1.3839657379439873e-20,8.001711763615127e-22,0.0017361111240461469,8.095375945498229e-18,-0.0052083334885537624,-7.358122234355283e-33,-5.983222531989272e-33,-4.0476879727491145e-18,1.917370325132334e-33,8.217301524617855e-34,9.130334619195412e-34,0.0017361111240461469,6.162975913874651e-34,4.793425812830835e-34,8.827179217893152e-34,3.4238754821982793e-34,4.993151486585158e-34,0.0017857142956927419,2.3790494034752407e-18,-0.0011904762359336019,-0.0007142857066355646,-1.762258793454443e-19,-1.1895247017376204e-18,5.634720691229615e-34,2.4148802634428723e-34,2.738431639675601e-34,6.162975913874651e-34,0.0004761904710903764,1.5350693483666902e-34,2.4781765050356993e-19,7.04903478607686e-20,3.8101141124915634e-35,0.0013888889225199819,1.9452394943054807e-18,-0.0009259259095415473,-7.115076756936123e-20,-0.00039682540227659047,-9.251859021064995e-19,4.3825606906821945e-34,1.8782402304098718e-34,-2.710505431213761e-20,4.793425812830835e-34,1.5350693483666902e-34,0.00026455026818439364,2.7083389842945504e-34,2.0328790734103208e-20,-3.7077669792873356e-20,0.0009300595265813172,3.4074925716394644e-18,-6.195441133342278e-19,-0.0013950893189758062,8.38421583487317e-19,-1.7037462858197322e-18,8.070564013791732e-34,3.4588129191791447e-34,3.875066718653596e-34,8.827179217893152e-34,2.4781765050356993e-19,2.7083389842945504e-34,0.00027901786961592734,5.0125471372442764e-20,-1.3767647106590584e-19,0.0009920635493472219,1.273255232062688e-18,-2.4737663399010846e-19,-0.00039682540227659047,-0.00028344671591185033,-6.608470507765904e-19,3.130400460546033e-34,1.3416001973768713e-34,1.3839657379439873e-20,3.4238754821982793e-34,7.04903478607686e-20,2.0328790734103208e-20,5.0125471372442764e-20,0.00011337868636474013,2.1249773951237176e-20,0.0005787037080153823,1.9246699940131245e-18,1.2977184265946961e-19,6.1400810368714005e-19,-0.0005787037080153823,-9.63735310386038e-19,4.565167309597706e-34,1.9565003739370484e-34,8.001711763615127e-22,4.993151486585158e-34,3.8101141124915634e-35,-3.7077669792873356e-20,-1.3767647106590584e-19,2.1249773951237176e-20,8.26719551696442e-05,3.0,4.0,7.0,3.0,0.12136243283748627,-0.05089285597205162,-0.0416666679084301,-0.02718253992497921,-0.05089285597205162,0.0059523810632526875,0.0071428571827709675,0.004464285913854837,0.008928571827709675,0.003968254197388887,0.0035714285913854837,0.0071428571827709675,0.0016534391324967146,0.004464285913854837,0.0059523810632526875,-0.05089285597205162,0.11041666567325592,0.0071428571827709675,0.004464285913854837,0.008928571827709675,-0.0357142873108387,-0.0071428571827709675,-0.004464285913854837,-0.008928571827709675,-4.163336342344337e-17,-7.806255641895632e-18,-6.938893903907228e-18,-6.071532165918825e-18,-1.734723475976807e-18,2.42861286636753e-17,-0.0416666679084301,0.0071428571827709675,0.0555555559694767,0.0035714285913854837,0.0071428571827709675,-6.231755727081366e-17,-0.004761904943734407,-7.426784881525705e-18,-9.540979117872439e-18,-0.011904762126505375,-0.0023809524718672037,-0.004761904943734407,-4.716279450311944e-18,-1.3444106938820255e-17,-6.591949208711867e-17,-0.02718253992497921,0.004464285913854837,0.0035714285913854837,0.01765873096883297,0.004464285913854837,-2.7214521740041653e-17,-6.1676145707408406e-18,-0.0014880952658131719,-6.5052130349130266e-18,-2.2515376508938133e-17,-0.0011904762359336019,-2.6020852139652106e-18,-0.0019841270986944437,-0.0014880952658131719,1.3877787807814457e-17,-0.05089285597205162,0.008928571827709675,0.0071428571827709675,0.004464285913854837,0.11041666567325592,1.0083080204115191e-17,4.8051885448619e-18,2.659970279255906e-18,-0.008928571827709675,-5.777475413856634e-17,-3.8821703729481725e-18,-0.0071428571827709675,2.168404344971009e-19,-0.004464285913854837,-0.0357142873108387,0.0059523810632526875,-0.0357142873108387,-6.231755727081366e-17,-2.7214521740041653e-17,1.0083080204115191e-17,0.01785714365541935,1.1773738114500073e-17,1.0208154048636272e-17,-2.279015143276753e-18,1.2467229796452281e-17,2.0046718009319563e-18,4.553183421754251e-18,2.3852447794681098e-18,-0.0,-6.830473686658678e-18,0.0071428571827709675,-0.0071428571827709675,-0.004761904943734407,-6.1676145707408406e-18,4.8051885448619e-18,1.1773738114500073e-17,0.004761904943734407,4.336808689942018e-19,-1.2086420864646397e-18,3.644460585186665e-18,1.1147597752768618e-18,-1.177342812856552e-18,5.421010862427522e-19,3.2526065174565133e-19,-1.0842021724855044e-18,0.004464285913854837,-0.004464285913854837,-7.426784881525705e-18,-0.0014880952658131719,2.659970279255906e-18,1.0208154048636272e-17,4.336808689942018e-19,0.0014880952658131719,6.022231064037322e-19,1.9457508987191916e-18,2.9319838157066585e-19,-2.60484370621171e-19,3.7947076036992655e-19,2.168404344971009e-19,-1.8431436932253575e-18,0.008928571827709675,-0.008928571827709675,-9.540979117872439e-18,-6.5052130349130266e-18,-0.008928571827709675,-2.279015143276753e-18,-1.2086420864646397e-18,6.022231064037322e-19,0.008928571827709675,3.3068166260807885e-18,3.5711912529721906e-19,5.871441725235616e-20,9.75781955236954e-19,-2.168404344971009e-19,-6.071532165918825e-18,0.003968254197388887,-4.163336342344337e-17,-0.011904762126505375,-2.2515376508938133e-17,-5.777475413856634e-17,1.2467229796452281e-17,3.644460585186665e-18,1.9457508987191916e-18,3.3068166260807885e-18,0.003968254197388887,6.4465890905401684e-18,4.737556190028033e-18,8.673617379884035e-19,3.469446951953614e-18,1.7726705520137997e-17,0.0035714285913854837,-7.806255641895632e-18,-0.0023809524718672037,-0.0011904762359336019,-3.8821703729481725e-18,2.0046718009319563e-18,1.1147597752768618e-18,2.9319838157066585e-19,3.5711912529721906e-19,6.4465890905401684e-18,0.0007936508045531809,8.673617379884035e-19,2.710505431213761e-19,6.776263578034403e-19,1.8973538018496328e-19,0.0071428571827709675,-6.938893903907228e-18,-0.004761904943734407,-2.6020852139652106e-18,-0.0071428571827709675,4.553183421754251e-18,-1.177342812856552e-18,-2.60484370621171e-19,5.871441725235616e-20,4.737556190028033e-18,8.673617379884035e-19,0.004761904943734407,1.0842021724855044e-19,4.336808689942018e-19,1.349831704744453e-17,0.0016534391324967146,-6.071532165918825e-18,-4.716279450311944e-18,-0.0019841270986944437,2.168404344971009e-19,2.3852447794681098e-18,5.421010862427522e-19,3.7947076036992655e-19,9.75781955236954e-19,8.673617379884035e-19,2.710505431213761e-19,1.0842021724855044e-19,0.0003306878206785768,1.6263032587282567e-19,-1.0842021724855044e-18,0.004464285913854837,-1.734723475976807e-18,-1.3444106938820255e-17,-0.0014880952658131719,-0.004464285913854837,-0.0,3.2526065174565133e-19,2.168404344971009e-19,-2.168404344971009e-19,3.469446951953614e-18,6.776263578034403e-19,4.336808689942018e-19,1.6263032587282567e-19,0.0014880952658131719,-5.094359306481863e-18,0.0059523810632526875,2.42861286636753e-17,-6.591949208711867e-17,1.3877787807814457e-17,-0.0357142873108387,-6.830473686658678e-18,-1.0842021724855044e-18,-1.8431436932253575e-18,-6.071532165918825e-18,1.7726705520137997e-17,1.8973538018496328e-19,1.349831704744453e-17,-1.0842021724855044e-18,-5.094359306481863e-18,0.01785714365541935,3.0,4.0,7.0,4.0,0.09835813194513321,-0.03950892761349678,-0.03232142701745033,-0.02105654776096344,-0.03232142701745033,0.004464285913854837,0.0053571430034935474,0.0033482143189758062,0.0053571430034935474,0.0029761905316263437,0.0026785715017467737,0.004285714123398066,0.0012400794075801969,0.0026785715017467737,0.0029761905316263437,-0.03950892761349678,0.08415178209543228,0.0053571430034935474,0.0033482143189758062,0.0053571430034935474,-0.02678571455180645,-0.0053571430034935474,-0.0033482143189758062,-0.0053571430034935474,-1.9081958235744878e-17,-6.071532165918825e-18,-7.806255641895632e-18,-9.540979117872439e-18,-7.15573433840433e-18,-1.0408340855860843e-17,-0.03232142701745033,0.0053571430034935474,0.04238095134496689,0.0026785715017467737,0.004285714123398066,-6.698074744223134e-18,-0.0035714285913854837,-6.0173220572945496e-18,-1.452830911130576e-17,-0.008928571827709675,-0.0017857142956927419,-0.0028571428265422583,-4.7704895589362195e-18,-1.3227266504323154e-17,-2.7755575615628914e-17,-0.02105654776096344,0.0033482143189758062,0.0026785715017467737,0.01346726156771183,0.0026785715017467737,-2.0854985137166566e-17,-8.697689162889941e-18,-0.0011160714784637094,-6.5052130349130266e-18,-1.652887520126731e-17,-0.0008928571478463709,-4.9873299934333204e-18,-0.0014880952658131719,-0.0008928571478463709,-7.806255641895632e-18,-0.03232142701745033,0.0053571430034935474,0.004285714123398066,0.0026785715017467737,0.04238095134496689,-1.0842021724855044e-18,-1.4693816371349045e-17,-1.590359986366143e-18,-0.0035714285913854837,-2.997587396350905e-17,-8.235033811399232e-18,-0.0028571428265422583,-1.734723475976807e-18,-0.0017857142956927419,-0.008928571827709675,0.004464285913854837,-0.02678571455180645,-6.698074744223134e-18,-2.0854985137166566e-17,-1.0842021724855044e-18,0.013392857275903225,-6.194863968069869e-18,6.9357538229044005e-19,-6.396897456011964e-18,1.9626963139527998e-18,1.2510939260790502e-18,1.9530902654992215e-18,2.6020852139652106e-18,1.1384122811097797e-18,2.710505431213761e-19,0.0053571430034935474,-0.0053571430034935474,-0.0035714285913854837,-8.697689162889941e-18,-1.4693816371349045e-17,-6.194863968069869e-18,0.0035714285913854837,5.421010862427522e-20,4.919965334925191e-19,2.190324424408511e-18,4.845096183707251e-19,7.236194093189786e-19,9.75781955236954e-19,1.2468324983583301e-18,2.8731357570865868e-18,0.0033482143189758062,-0.0033482143189758062,-6.0173220572945496e-18,-0.0011160714784637094,-1.590359986366143e-18,6.9357538229044005e-19,5.421010862427522e-20,0.0011160714784637094,-6.4197430471573365e-19,1.4662227170936257e-18,3.0049900010887645e-19,3.1514635250444747e-19,3.7947076036992655e-19,3.2526065174565133e-19,2.168404344971009e-19,0.0053571430034935474,-0.0053571430034935474,-1.452830911130576e-17,-6.5052130349130266e-18,-0.0035714285913854837,-6.396897456011964e-18,4.919965334925191e-19,-6.4197430471573365e-19,0.0035714285913854837,3.2526065174565133e-18,9.1020307627375e-19,9.081619047146988e-19,7.047314121155779e-19,7.047314121155779e-19,2.0599841277224584e-18,0.0029761905316263437,-1.9081958235744878e-17,-0.008928571827709675,-1.652887520126731e-17,-2.997587396350905e-17,1.9626963139527998e-18,2.190324424408511e-18,1.4662227170936257e-18,3.2526065174565133e-18,0.0029761905316263437,3.616261584514426e-18,1.6345929526345334e-18,8.673617379884035e-19,2.6291902682773483e-18,4.851804721872632e-18,0.0026785715017467737,-6.071532165918825e-18,-0.0017857142956927419,-0.0008928571478463709,-8.235033811399232e-18,1.2510939260790502e-18,4.845096183707251e-19,3.0049900010887645e-19,9.1020307627375e-19,3.616261584514426e-18,0.0005952381179668009,4.607859233063394e-19,2.168404344971009e-19,8.402566836762659e-19,1.2061749168901237e-18,0.004285714123398066,-7.806255641895632e-18,-0.0028571428265422583,-4.9873299934333204e-18,-0.0028571428265422583,1.9530902654992215e-18,7.236194093189786e-19,3.1514635250444747e-19,9.081619047146988e-19,1.6345929526345334e-18,4.607859233063394e-19,0.0019047618843615055,4.87890977618477e-19,7.318364664277155e-19,4.0115480381963664e-18,0.0012400794075801969,-9.540979117872439e-18,-4.7704895589362195e-18,-0.0014880952658131719,-1.734723475976807e-18,2.6020852139652106e-18,9.75781955236954e-19,3.7947076036992655e-19,7.047314121155779e-19,8.673617379884035e-19,2.168404344971009e-19,4.87890977618477e-19,0.00024801588733680546,2.710505431213761e-19,3.2526065174565133e-19,0.0026785715017467737,-7.15573433840433e-18,-1.3227266504323154e-17,-0.0008928571478463709,-0.0017857142956927419,1.1384122811097797e-18,1.2468324983583301e-18,3.2526065174565133e-19,7.047314121155779e-19,2.6291902682773483e-18,8.402566836762659e-19,7.318364664277155e-19,2.710505431213761e-19,0.0005952381179668009,2.5904463691562833e-18,0.0029761905316263437,-1.0408340855860843e-17,-2.7755575615628914e-17,-7.806255641895632e-18,-0.008928571827709675,2.710505431213761e-19,2.8731357570865868e-18,2.168404344971009e-19,2.0599841277224584e-18,4.851804721872632e-18,1.2061749168901237e-18,4.0115480381963664e-18,3.2526065174565133e-19,2.5904463691562833e-18,0.0029761905316263437,3.0,4.0,7.0,5.0,0.08282596617937088,-0.03232142701745033,-0.026428570970892906,-0.017202381044626236,-0.022397959604859352,0.0035714285913854837,0.004285714123398066,0.0026785715017467737,0.0035714285913854837,0.0023809524718672037,0.002142857061699033,0.0028571428265422583,0.0009920635493472219,0.0017857142956927419,0.001700680237263441,-0.03232142701745033,0.06803571432828903,0.004285714123398066,0.0026785715017467737,0.0035714285913854837,-0.02142857201397419,-0.004285714123398066,-0.0026785715017467737,-0.0035714285913854837,1.8239378828908563e-17,7.865852350668852e-18,1.8715188833680703e-18,6.211962204921646e-18,1.1267184287901175e-18,-9.516197613900963e-18,-0.026428570970892906,0.004285714123398066,0.034285712987184525,0.002142857061699033,0.0028571428265422583,5.1863274803731624e-17,-0.0028571428265422583,-1.0408555302434647e-18,-1.1600697307027962e-18,-0.0071428571827709675,-0.0014285714132711291,-0.0019047618843615055,-9.439449108331302e-19,-6.242294090803353e-18,-1.7295310978356892e-17,-0.017202381044626236,0.0026785715017467737,0.002142857061699033,0.010892856866121292,0.0017857142956927419,3.2434373858024855e-17,-8.179398160386798e-19,-0.0008928571478463709,-7.250436075386417e-19,-3.0066652486243375e-18,-0.0007142857066355646,-6.863443865104123e-18,-0.0011904762359336019,-0.0005952381179668009,-1.062874395725621e-17,-0.022397959604859352,0.0035714285913854837,0.0028571428265422583,0.0017857142956927419,0.021403061226010323,6.967216154490738e-19,-1.1614292433985577e-17,-7.3019136962547e-18,-0.0017857142956927419,-2.2020178217788362e-17,-3.816116692313363e-18,-0.0014285714132711291,-7.26415455565288e-18,-0.0008928571478463709,-0.003401360474526882,0.0035714285913854837,-0.02142857201397419,5.1863274803731624e-17,3.2434373858024855e-17,6.967216154490738e-19,0.010714286006987095,-4.7580988069504814e-18,-2.9738117026452626e-18,-4.346784520114918e-33,-9.119689414454282e-18,-4.0443837997922714e-18,-2.2204459996194763e-18,-3.105981102460823e-18,-1.387778801460961e-18,1.69932097294015e-18,0.004285714123398066,-0.004285714123398066,-0.0028571428265422583,-8.179398160386798e-19,-1.1614292433985577e-17,-4.7580988069504814e-18,0.0028571428265422583,-1.3367990916226468e-19,1.1600697307027962e-18,1.578466450848439e-32,3.7794567836035114e-33,7.612957801607556e-19,5.19473728831416e-33,4.758098496757752e-19,1.812608941298422e-18,0.0026785715017467737,-0.0026785715017467737,-1.0408555302434647e-18,-0.0008928571478463709,-7.3019136962547e-18,-2.9738117026452626e-18,-1.3367990916226468e-19,0.0008928571478463709,7.250436075386417e-19,9.966687462203946e-33,7.430523376002927e-20,4.758098496757752e-19,-1.8342190288195015e-35,3.1170812458958252e-19,1.1328806141609079e-18,0.0035714285913854837,-0.0035714285913854837,-1.1600697307027962e-18,-7.250436075386417e-19,-0.0017857142956927419,-4.346784520114918e-33,1.1600697307027962e-18,7.250436075386417e-19,0.0017857142956927419,0.0,5.758815127328654e-35,6.954855489323258e-34,-2.407412430484045e-35,4.393527685633382e-34,1.655917973648395e-33,0.0023809524718672037,1.8239378828908563e-17,-0.0071428571827709675,-3.0066652486243375e-18,-2.2020178217788362e-17,-9.119689414454282e-18,1.578466450848439e-32,9.966687462203946e-33,0.0,0.0023809524718672037,5.946364643193373e-19,2.4450081651347597e-18,-4.4056469836361075e-20,1.05735530192206e-18,3.3986419458803e-18,0.002142857061699033,7.865852350668852e-18,-0.0014285714132711291,-0.0007142857066355646,-3.816116692313363e-18,-4.0443837997922714e-18,3.7794567836035114e-33,7.430523376002927e-20,5.758815127328654e-35,5.946364643193373e-19,0.0004761904710903764,4.519438278472421e-19,-1.2297929396312557e-19,2.303929616531697e-19,4.531522353246055e-19,0.0028571428265422583,1.8715188833680703e-18,-0.0019047618843615055,-6.863443865104123e-18,-0.0014285714132711291,-2.2204459996194763e-18,7.612957801607556e-19,4.758098496757752e-19,6.954855489323258e-34,2.4450081651347597e-18,4.519438278472421e-19,0.0009523809421807528,6.34413150133963e-19,7.930164505921508e-19,1.812608941298422e-18,0.0009920635493472219,6.211962204921646e-18,-9.439449108331302e-19,-0.0011904762359336019,-7.26415455565288e-18,-3.105981102460823e-18,5.19473728831416e-33,-1.8342190288195015e-35,-2.407412430484045e-35,-4.4056469836361075e-20,-1.2297929396312557e-19,6.34413150133963e-19,0.00019841270113829523,4.138733312929777e-19,1.1328806141609079e-18,0.0017857142956927419,1.1267184287901175e-18,-6.242294090803353e-18,-0.0005952381179668009,-0.0008928571478463709,-1.387778801460961e-18,4.758098496757752e-19,3.1170812458958252e-19,4.393527685633382e-34,1.05735530192206e-18,2.303929616531697e-19,7.930164505921508e-19,4.138733312929777e-19,0.00029761905898340046,9.150190251976103e-19,0.001700680237263441,-9.516197613900963e-18,-1.7295310978356892e-17,-1.062874395725621e-17,-0.003401360474526882,1.69932097294015e-18,1.812608941298422e-18,1.1328806141609079e-18,1.655917973648395e-33,3.3986419458803e-18,4.531522353246055e-19,1.812608941298422e-18,1.1328806141609079e-18,9.150190251976103e-19,0.0008503401186317205,3.0,4.0,7.0,6.0,0.07158683240413666,-0.027359694242477417,-0.022363945841789246,-0.014547902159392834,-0.01645408198237419,0.0029761905316263437,0.0035714285913854837,0.0022321429569274187,0.0025510203558951616,0.0019841270986944437,0.0017857142956927419,0.0020408162381500006,0.0008267195662483573,0.0012755101779475808,0.0010629252064973116,-0.027359694242477417,0.05712159723043442,0.0035714285913854837,0.0022321429569274187,0.0025510203558951616,-0.01785714365541935,-0.0035714285913854837,-0.0022321429569274187,-0.0025510203558951616,9.251858814269842e-18,2.529853734925549e-18,2.6153988927194048e-18,2.981610981845872e-18,1.6369197083000685e-18,3.9716018320549556e-18,-0.022363945841789246,0.0035714285913854837,0.028798185288906097,0.0017857142956927419,0.0020408162381500006,2.326181602189986e-17,-0.0023809524718672037,1.505564745345749e-19,-1.0321730289438018e-19,-0.0059523810632526875,-0.0011904762359336019,-0.0013605442363768816,2.841421497304939e-19,6.776263578034403e-21,-1.87015804201345e-19,-0.014547902159392834,0.0022321429569274187,0.0017857142956927419,0.009148242883384228,0.0012755101779475808,1.400995803481063e-17,-3.7922564477160276e-33,-0.0007440476329065859,-7.488143614250635e-20,-7.258615902874207e-33,-0.0005952381179668009,-4.0657581468206416e-20,-0.0009920635493472219,-0.00042517005931586027,-8.338315324188662e-20,-0.01645408198237419,0.0025510203558951616,0.0020408162381500006,0.0012755101779475808,0.012427721172571182,1.6395412918154328e-17,-4.437958800700572e-33,2.4503274017625703e-20,-0.0010204081190750003,-8.494529928644791e-33,3.49379312627834e-20,-0.0008163265301845968,5.421010862427522e-20,-0.0005102040595375001,-0.0015943878097459674,0.0029761905316263437,-0.01785714365541935,2.326181602189986e-17,1.400995803481063e-17,1.6395412918154328e-17,0.008928571827709675,-2.4168120595946647e-18,-1.5105074855478771e-18,-2.071553075769625e-18,-4.625929407134921e-18,-1.1895247017376204e-18,-1.3594567576726047e-18,-1.4318352680661478e-18,-8.49660486470075e-19,-1.9471384941967493e-18,0.0035714285913854837,-0.0035714285913854837,-0.0023809524718672037,-3.7922564477160276e-33,-4.437958800700572e-33,-2.4168120595946647e-18,0.0023809524718672037,4.088686184621661e-34,5.607341315582553e-34,1.2521601842184133e-33,3.219840427786743e-34,3.679817566159495e-34,3.875733903533184e-34,2.2998859214524992e-34,5.270572285976545e-34,0.0022321429569274187,-0.0022321429569274187,1.505564745345749e-19,-0.0007440476329065859,2.4503274017625703e-20,-1.5105074855478771e-18,4.088686184621661e-34,0.0007440476329065859,1.2096790454119737e-21,7.826001495748193e-34,-5.070514403608344e-20,6.235825548914505e-22,-4.0657581468206416e-20,-0.0,-4.910625561080672e-21,0.0025510203558951616,-0.0025510203558951616,-1.0321730289438018e-19,-7.488143614250635e-20,-0.0010204081190750003,-2.071553075769625e-18,5.607341315582553e-34,1.2096790454119737e-21,0.0010204081190750003,1.073280157901497e-33,5.244503807912882e-22,4.0657581468206416e-20,1.6129053602245663e-21,2.4960478714168782e-20,-2.5037065622250962e-20,0.0019841270986944437,9.251858814269842e-18,-0.0059523810632526875,-7.258615902874207e-33,-8.494529928644791e-33,-4.625929407134921e-18,1.2521601842184133e-33,7.826001495748193e-34,1.073280157901497e-33,0.0019841270986944437,6.162975913874651e-34,7.0434009788313895e-34,7.418396992890642e-34,4.402125783961174e-34,1.0088204558062184e-33,0.0017857142956927419,2.529853734925549e-18,-0.0011904762359336019,-0.0005952381179668009,3.49379312627834e-20,-1.1895247017376204e-18,3.219840427786743e-34,-5.070514403608344e-20,5.244503807912882e-22,6.162975913874651e-34,0.00039682540227659047,4.988660439131604e-22,-9.540691491663818e-20,-1.3552527156068805e-20,8.194537641625986e-22,0.0020408162381500006,2.6153988927194048e-18,-0.0013605442363768816,-4.0657581468206416e-20,-0.0008163265301845968,-1.3594567576726047e-18,3.679817566159495e-34,6.235825548914505e-22,4.0657581468206416e-20,7.0434009788313895e-34,4.988660439131604e-22,0.0005442177061922848,8.314433896929013e-22,1.3552527156068805e-20,7.382298100056232e-20,0.0008267195662483573,2.981610981845872e-18,2.841421497304939e-19,-0.0009920635493472219,5.421010862427522e-20,-1.4318352680661478e-18,3.875733903533184e-34,-4.0657581468206416e-20,1.6129053602245663e-21,7.418396992890642e-34,-9.540691491663818e-20,8.314433896929013e-22,0.0001653439103392884,-2.3977547423972835e-20,9.669021414728353e-22,0.0012755101779475808,1.6369197083000685e-18,6.776263578034403e-21,-0.00042517005931586027,-0.0005102040595375001,-8.49660486470075e-19,2.2998859214524992e-34,-0.0,2.4960478714168782e-20,4.402125783961174e-34,-1.3552527156068805e-20,1.3552527156068805e-20,-2.3977547423972835e-20,0.0001700680295471102,3.231189454304323e-20,0.0010629252064973116,3.9716018320549556e-18,-1.87015804201345e-19,-8.338315324188662e-20,-0.0015943878097459674,-1.9471384941967493e-18,5.270572285976545e-34,-4.910625561080672e-21,-2.5037065622250962e-20,1.0088204558062184e-33,8.194537641625986e-22,7.382298100056232e-20,9.669021414728353e-22,3.231189454304323e-20,0.0003188775444868952,3.0,4.0,7.0,7.0,0.06305980682373047,-0.02372448891401291,-0.019387755542993546,-0.012606292963027954,-0.012606292963027954,0.0025510203558951616,0.0030612244736403227,0.0019132653251290321,0.0019132653251290321,0.001700680237263441,0.0015306122368201613,0.0015306122368201613,0.0007086168043315411,0.0009566326625645161,0.0007086168043315411,-0.02372448891401291,0.049234695732593536,0.0030612244736403227,0.0019132653251290321,0.0019132653251290321,-0.015306122601032257,-0.0030612244736403227,-0.0019132653251290321,-0.0019132653251290321,9.204654925433891e-18,2.4346675802972343e-18,2.461986460797717e-18,2.5428791412362683e-18,1.3981346891398186e-18,2.4978608703738354e-18,-0.019387755542993546,0.0030612244736403227,0.024829931557178497,0.0015306122368201613,0.0015306122368201613,2.360322158484132e-17,-0.0020408162381500006,4.874385098234105e-19,5.007772107911343e-19,-0.005102040711790323,-0.0010204081190750003,-0.0010204081190750003,1.4776819086132642e-19,4.86633682474442e-20,1.759781258272876e-19,-0.012606292963027954,0.0019132653251290321,0.0015306122368201613,0.00788690522313118,0.0009566326625645161,1.4298860789912125e-17,5.947623508688102e-19,-0.0006377550889737904,3.3176236890850055e-19,-7.655917565088786e-33,-0.0005102040595375001,6.776263578034403e-20,-0.0008503401186317205,-0.0003188775444868952,1.2305748838040598e-19,-0.012606292963027954,0.0019132653251290321,0.0015306122368201613,0.0009566326625645161,0.00788690522313118,1.4298860789912125e-17,5.947623508688102e-19,2.512701472840014e-19,-0.0006377550889737904,-7.655917565088786e-33,-3.424400104585957e-21,-0.0005102040595375001,2.710505431213761e-20,-0.0003188775444868952,-0.0008503401186317205,0.0025510203558951616,-0.015306122601032257,2.360322158484132e-17,1.4298860789912125e-17,1.4298860789912125e-17,0.0076530613005161285,-5.590419106239607e-18,-3.494012148194908e-18,-3.494012148194908e-18,-3.965082408057119e-18,-1.0195925424050594e-18,-1.0195925424050594e-18,-1.2272873578570443e-18,-6.372453648525563e-19,-1.2272873578570443e-18,0.0030612244736403227,-0.0030612244736403227,-0.0020408162381500006,5.947623508688102e-19,5.947623508688102e-19,-5.590419106239607e-18,0.0020408162381500006,-3.398641894181512e-19,-3.398641894181512e-19,-8.49660486470075e-19,-1.699320947090756e-19,-1.699320947090756e-19,9.416494025223712e-34,4.955635768049657e-34,9.416494025223712e-34,0.0019132653251290321,-0.0019132653251290321,4.874385098234105e-19,-0.0006377550889737904,2.512701472840014e-19,-3.494012148194908e-18,-3.398641894181512e-19,0.0006377550889737904,-2.1416243726396046e-19,1.951758677681671e-33,-4.743384504624082e-20,-1.7576012819296293e-21,-2.710505431213761e-20,-6.776263578034403e-21,-2.1757719796791205e-21,0.0019132653251290321,-0.0019132653251290321,5.007772107911343e-19,3.3176236890850055e-19,-0.0006377550889737904,-3.494012148194908e-18,-3.398641894181512e-19,-2.1416243726396046e-19,0.0006377550889737904,1.951758677681671e-33,5.724332681808015e-22,-5.421010862427522e-20,-2.3297572244814785e-21,-3.443838848980953e-20,-1.2252915746029327e-20,0.001700680237263441,9.204654925433891e-18,-0.005102040711790323,-7.655917565088786e-33,-7.655917565088786e-33,-3.965082408057119e-18,-8.49660486470075e-19,1.951758677681671e-33,1.951758677681671e-33,0.001700680237263441,5.990034980929768e-34,5.990034980929768e-34,6.358625928309482e-34,3.30159422317651e-34,6.358625928309482e-34,0.0015306122368201613,2.4346675802972343e-18,-0.0010204081190750003,-0.0005102040595375001,-3.424400104585957e-21,-1.0195925424050594e-18,-1.699320947090756e-19,-4.743384504624082e-20,5.724332681808015e-22,5.990034980929768e-34,0.0003401360590942204,-1.4060810255437034e-21,-4.691259524453597e-20,-0.0,7.63244357574402e-22,0.0015306122368201613,2.461986460797717e-18,-0.0010204081190750003,6.776263578034403e-20,-0.0005102040595375001,-1.0195925424050594e-18,-1.699320947090756e-19,-1.7576012819296293e-21,-5.421010862427522e-20,5.990034980929768e-34,-1.4060810255437034e-21,0.0003401360590942204,-2.3434685105384335e-21,-1.622112328767711e-20,-5.94226195660208e-20,0.0007086168043315411,2.5428791412362683e-18,1.4776819086132642e-19,-0.0008503401186317205,2.710505431213761e-20,-1.2272873578570443e-18,9.416494025223712e-34,-2.710505431213761e-20,-2.3297572244814785e-21,6.358625928309482e-34,-4.691259524453597e-20,-2.3434685105384335e-21,0.00014172335795592517,-5.733761551244e-21,-1.0537987169015596e-21,0.0009566326625645161,1.3981346891398186e-18,4.86633682474442e-20,-0.0003188775444868952,-0.0003188775444868952,-6.372453648525563e-19,4.955635768049657e-34,-6.776263578034403e-21,-3.443838848980953e-20,3.30159422317651e-34,-0.0,-1.622112328767711e-20,-5.733761551244e-21,0.00010629251482896507,-3.8392295661941665e-20,0.0007086168043315411,2.4978608703738354e-18,1.759781258272876e-19,1.2305748838040598e-19,-0.0008503401186317205,-1.2272873578570443e-18,9.416494025223712e-34,-2.1757719796791205e-21,-1.2252915746029327e-20,6.358625928309482e-34,7.63244357574402e-22,-5.94226195660208e-20,-1.0537987169015596e-21,-3.8392295661941665e-20,0.00014172335795592517,3.0,4.0,7.0,8.0,0.0563616082072258,-0.02094493992626667,-0.01711309514939785,-0.01112351194024086,-0.00997023843228817,0.0022321429569274187,0.0026785715017467737,0.0016741071594879031,0.0014880952658131719,0.0014880952658131719,0.0013392857508733869,0.0011904762359336019,0.0006200397037900984,0.0007440476329065859,0.0004960317746736109,-0.02094493992626667,0.04326637089252472,0.0026785715017467737,0.0016741071594879031,0.0014880952658131719,-0.013392857275903225,-0.0026785715017467737,-0.0016741071594879031,-0.0014880952658131719,6.938893903907228e-18,1.771829143894711e-18,1.706943235489673e-18,2.1087420821342435e-18,1.037314163245972e-18,1.6505227968710796e-18,-0.01711309514939785,0.0026785715017467737,0.02182539738714695,0.0013392857508733869,0.0011904762359336019,1.8579242527188226e-17,-0.0017857142956927419,-1.0255071810528462e-20,1.1902222993373381e-19,-0.004464285913854837,-0.0008928571478463709,-0.0007936508045531809,1.6559131581068726e-20,2.2101319233356438e-20,1.5086689990882956e-19,-0.01112351194024086,0.0016741071594879031,0.0013392857508733869,0.006932043470442295,0.0007440476329065859,1.1215518586841113e-17,-4.553774381615338e-33,-0.0005580357392318547,8.016664204292856e-20,-7.434529256613157e-19,-0.00044642857392318547,-8.131516293641283e-20,-0.0007440476329065859,-0.00024801588733680546,8.6836722772175e-20,-0.00997023843228817,0.0014880952658131719,0.0011904762359336019,0.0007440476329065859,0.005328798200935125,9.753562880937342e-18,-3.9601846319386226e-33,-1.6887409193152906e-20,-0.00042517005931586027,-6.608470507765904e-19,-1.5013350089822473e-19,-0.0003401360590942204,-2.710505431213761e-20,-0.00021258502965793014,-0.0004960317746736109,0.0022321429569274187,-0.013392857275903225,1.8579242527188226e-17,1.1215518586841113e-17,9.753562880937342e-18,0.0066964286379516125,-2.7189135153452095e-18,-1.69932097294015e-18,-1.2947207757535922e-18,-3.469446951953614e-18,-8.921435521526094e-19,-7.930164505921508e-19,-1.073876476899005e-18,-4.956353010071399e-19,-8.260588005460409e-19,0.0026785715017467737,-0.0026785715017467737,-0.0017857142956927419,-4.553774381615338e-33,-3.9601846319386226e-33,-2.7189135153452095e-18,0.0017857142956927419,6.8996582235349785e-34,5.256882368564273e-34,1.4086801957662779e-33,3.6223205099586786e-34,3.219840427786743e-34,4.360200584077647e-34,2.012400181270937e-34,3.354000378647808e-34,0.0016741071594879031,-0.0016741071594879031,-1.0255071810528462e-20,-0.0005580357392318547,-1.6887409193152906e-20,-1.69932097294015e-18,6.8996582235349785e-34,0.0005580357392318547,-3.528615218731933e-22,8.730673886755526e-34,4.322788931755653e-21,-7.752271673464836e-22,1.3552527156068805e-20,1.0164395367051604e-20,-1.596802399364275e-21,0.0014880952658131719,-0.0014880952658131719,1.1902222993373381e-19,8.016664204292856e-20,-0.00042517005931586027,-1.2947207757535922e-18,5.256882368564273e-34,-3.528615218731933e-22,0.00042517005931586027,6.138901697734314e-34,-1.458732429635638e-22,-3.3881317890172014e-20,-4.704819955061925e-22,-2.1867668175291484e-20,1.824357342302073e-21,0.0014880952658131719,6.938893903907228e-18,-0.004464285913854837,-7.434529256613157e-19,-6.608470507765904e-19,-3.469446951953614e-18,1.4086801957662779e-33,8.730673886755526e-34,6.138901697734314e-34,0.0014880952658131719,4.956353010071399e-19,4.405647177506564e-19,5.712608212231131e-34,2.4452197267198474e-34,3.604810006317494e-34,0.0013392857508733869,1.771829143894711e-18,-0.0008928571478463709,-0.00044642857392318547,-1.5013350089822473e-19,-8.921435521526094e-19,3.6223205099586786e-34,4.322788931755653e-21,-1.458732429635638e-22,4.956353010071399e-19,0.00029761905898340046,8.749275454611198e-20,-4.313801824426592e-21,6.776263578034403e-21,-1.7018545643504502e-22,0.0011904762359336019,1.706943235489673e-18,-0.0007936508045531809,-8.131516293641283e-20,-0.0003401360590942204,-7.930164505921508e-19,3.219840427786743e-34,-7.752271673464836e-22,-3.3881317890172014e-20,4.405647177506564e-19,8.749275454611198e-20,0.00022675737272948027,-1.0336361894705795e-21,-1.2122888446732247e-20,-4.295895302869379e-20,0.0006200397037900984,2.1087420821342435e-18,1.6559131581068726e-20,-0.0007440476329065859,-2.710505431213761e-20,-1.073876476899005e-18,4.360200584077647e-34,1.3552527156068805e-20,-4.704819955061925e-22,5.712608212231131e-34,-4.313801824426592e-21,-1.0336361894705795e-21,0.00012400794366840273,1.0425021075697597e-20,4.96446803154352e-22,0.0007440476329065859,1.037314163245972e-18,2.2101319233356438e-20,-0.00024801588733680546,-0.00021258502965793014,-4.956353010071399e-19,2.012400181270937e-34,1.0164395367051604e-20,-2.1867668175291484e-20,2.4452197267198474e-34,6.776263578034403e-21,-1.2122888446732247e-20,1.0425021075697597e-20,7.086167897796258e-05,-2.520329984480571e-20,0.0004960317746736109,1.6505227968710796e-18,1.5086689990882956e-19,8.6836722772175e-20,-0.0004960317746736109,-8.260588005460409e-19,3.354000378647808e-34,-1.596802399364275e-21,1.824357342302073e-21,3.604810006317494e-34,-1.7018545643504502e-22,-4.295895302869379e-20,4.96446803154352e-22,-2.520329984480571e-20,7.086167897796258e-05,3.0,4.0,8.0,3.0,0.10873842239379883,-0.04496527835726738,-0.03680555522441864,-0.02152777835726738,-0.04496527835726738,0.0052083334885537624,0.0062500000931322575,0.0034722222480922937,0.0078125,0.0034722222480922937,0.0027777778450399637,0.0062500000931322575,0.0011574074160307646,0.0034722222480922937,0.0052083334885537624,-0.04496527835726738,0.09704861044883728,0.0062500000931322575,0.0034722222480922937,0.0078125,-0.03125,-0.0062500000931322575,-0.0034722222480922937,-0.0078125,2.0816681711721685e-17,3.469446951953614e-18,1.9081958235744878e-17,-6.288372600415926e-18,-4.336808689942018e-19,3.2959746043559335e-17,-0.03680555522441864,0.0062500000931322575,0.048842594027519226,0.0027777778450399637,0.0062500000931322575,4.2140696454179294e-17,-0.004166666883975267,7.860465750519907e-18,1.6479873021779667e-17,-0.010416666977107525,-0.0018518518190830946,-0.004166666883975267,-4.255493527005605e-18,-8.673617379884035e-19,4.683753385137379e-17,-0.02152777835726738,0.0034722222480922937,0.0027777778450399637,0.011937830597162247,0.0034722222480922937,-1.0951651280159147e-17,-7.657767622955625e-18,-0.0009920635493472219,-8.673617379884035e-19,-1.2722211528994202e-18,-0.0007936508045531809,-8.673617379884035e-19,-0.0011574074160307646,-0.0009920635493472219,1.9081958235744878e-17,-0.04496527835726738,0.0078125,0.0062500000931322575,0.0034722222480922937,0.09704861044883728,9.75781955236954e-19,8.680707144914227e-18,1.1156160106084308e-17,-0.0078125,1.1229136461265573e-17,8.575230863465753e-18,-0.0062500000931322575,-6.505213034913027e-19,-0.0034722222480922937,-0.03125,0.0052083334885537624,-0.03125,4.2140696454179294e-17,-1.0951651280159147e-17,9.75781955236954e-19,0.015625,-3.840842775183798e-18,1.1122134807068763e-20,-2.0151178512975822e-18,-8.579401508114246e-18,-9.470429090222944e-19,-5.6408196345527696e-18,1.5178830414797062e-18,3.2526065174565133e-19,5.312590645178972e-18,0.0062500000931322575,-0.0062500000931322575,-0.004166666883975267,-7.657767622955625e-18,8.680707144914227e-18,-3.840842775183798e-18,0.004166666883975267,-5.421010862427522e-20,-7.7700874798044805e-19,2.6551670482339635e-18,5.549038775711183e-19,2.1156492211948203e-19,8.673617379884035e-19,4.336808689942018e-19,-4.662069341687669e-18,0.0034722222480922937,-0.0034722222480922937,7.860465750519907e-18,-0.0009920635493472219,1.1156160106084308e-17,1.1122134807068763e-20,-5.421010862427522e-20,0.0009920635493472219,-5.10342262105603e-19,-1.6152506781784762e-18,-3.726519228397398e-19,-1.2469719816891219e-18,1.6263032587282567e-19,-1.8973538018496328e-19,-3.74049749507499e-18,0.0078125,-0.0078125,1.6479873021779667e-17,-8.673617379884035e-19,-0.0078125,-2.0151178512975822e-18,-7.7700874798044805e-19,-5.10342262105603e-19,0.0078125,-2.9815559743351372e-18,-7.83730417638054e-19,-3.1919998211553655e-18,4.87890977618477e-19,-7.589415207398531e-19,-2.222614453595284e-17,0.0034722222480922937,2.0816681711721685e-17,-0.010416666977107525,-1.2722211528994202e-18,1.1229136461265573e-17,-8.579401508114246e-18,2.6551670482339635e-18,-1.6152506781784762e-18,-2.9815559743351372e-18,0.0034722222480922937,-6.885790045954666e-19,2.2412007883690443e-18,5.963111948670274e-19,-0.0,-5.637851296924623e-18,0.0027777778450399637,3.469446951953614e-18,-0.0018518518190830946,-0.0007936508045531809,8.575230863465753e-18,-9.470429090222944e-19,5.549038775711183e-19,-3.726519228397398e-19,-7.83730417638054e-19,-6.885790045954666e-19,0.0005291005363687873,-7.047314121155779e-19,1.8973538018496328e-19,-1.0842021724855044e-19,-3.0086610286472748e-18,0.0062500000931322575,1.9081958235744878e-17,-0.004166666883975267,-8.673617379884035e-19,-0.0062500000931322575,-5.6408196345527696e-18,2.1156492211948203e-19,-1.2469719816891219e-18,-3.1919998211553655e-18,2.2412007883690443e-18,-7.047314121155779e-19,0.004166666883975267,2.710505431213761e-19,7.047314121155779e-19,-1.2414114874959026e-17,0.0011574074160307646,-6.288372600415926e-18,-4.255493527005605e-18,-0.0011574074160307646,-6.505213034913027e-19,1.5178830414797062e-18,8.673617379884035e-19,1.6263032587282567e-19,4.87890977618477e-19,5.963111948670274e-19,1.8973538018496328e-19,2.710505431213761e-19,0.0001653439103392884,1.0842021724855044e-19,-2.168404344971009e-19,0.0034722222480922937,-4.336808689942018e-19,-8.673617379884035e-19,-0.0009920635493472219,-0.0034722222480922937,3.2526065174565133e-19,4.336808689942018e-19,-1.8973538018496328e-19,-7.589415207398531e-19,-0.0,-1.0842021724855044e-19,7.047314121155779e-19,1.0842021724855044e-19,0.0009920635493472219,-6.878477872737274e-18,0.0052083334885537624,3.2959746043559335e-17,4.683753385137379e-17,1.9081958235744878e-17,-0.03125,5.312590645178972e-18,-4.662069341687669e-18,-3.74049749507499e-18,-2.222614453595284e-17,-5.637851296924623e-18,-3.0086610286472748e-18,-1.2414114874959026e-17,-2.168404344971009e-19,-6.878477872737274e-18,0.015625,3.0,4.0,8.0,4.0,0.08803819119930267,-0.03489583358168602,-0.028541667386889458,-0.01666666753590107,-0.028541667386889458,0.00390625,0.004687500186264515,0.0026041667442768812,0.004687500186264515,0.0026041667442768812,0.0020833334419876337,0.0037499999161809683,0.0008680555620230734,0.0020833334419876337,0.0026041667442768812,-0.03489583358168602,0.07395832985639572,0.004687500186264515,0.0026041667442768812,0.004687500186264515,-0.0234375,-0.004687500186264515,-0.0026041667442768812,-0.004687500186264515,-6.071532165918825e-18,-1.1058862159352145e-17,-1.431146867680866e-17,-1.5178830414797062e-18,-8.239936510889834e-18,-1.8214596497756474e-17,-0.028541667386889458,0.004687500186264515,0.03725694492459297,0.0020833334419876337,0.0037499999161809683,-4.7431002853656087e-17,-0.0031250000465661287,-7.589415207398531e-19,1.3010426069826053e-18,-0.0078125,-0.0013888889225199819,-0.0024999999441206455,5.285485590866834e-18,-9.75781955236954e-19,-1.0842021724855044e-17,-0.01666666753590107,0.0026041667442768812,0.0020833334419876337,0.00910218246281147,0.0020833334419876337,-2.430547476384169e-17,4.395451245878658e-18,-0.0007440476329065859,-1.5178830414797062e-18,1.018910242476795e-17,-0.0005952381179668009,8.673617379884035e-19,-0.0008680555620230734,-0.0005952381179668009,-1.0408340855860843e-17,-0.028541667386889458,0.004687500186264515,0.0037499999161809683,0.0020833334419876337,0.03725694492459297,-4.7921736023859296e-17,4.005211627909057e-19,-6.203559290669026e-18,-0.0031250000465661287,-8.115061603306072e-19,-1.0050490942341827e-17,-0.0024999999441206455,-0.0,-0.0013888889225199819,-0.0078125,0.00390625,-0.0234375,-4.7431002853656087e-17,-2.430547476384169e-17,-4.7921736023859296e-17,0.01171875,-1.3602216929440631e-18,4.726864880610785e-18,-1.4674573875554377e-18,6.7572347016329266e-18,4.060836008585645e-18,6.809847938084668e-18,9.75781955236954e-19,3.63207727782644e-18,7.48099499014998e-18,0.004687500186264515,-0.004687500186264515,-0.0031250000465661287,4.395451245878658e-18,4.005211627909057e-19,-1.3602216929440631e-18,0.0031250000465661287,-8.673617379884035e-19,-1.6867227020182377e-18,-3.350084375971906e-18,1.6288278398071626e-19,-3.3066927557840587e-19,-5.963111948670274e-19,-1.0842021724855044e-19,5.963111948670274e-19,0.0026041667442768812,-0.0026041667442768812,-7.589415207398531e-19,-0.0007440476329065859,-6.203559290669026e-18,4.726864880610785e-18,-8.673617379884035e-19,0.0007440476329065859,3.8832660770670755e-19,-1.4085316773553625e-19,3.619291030110325e-19,3.926815585354344e-19,-0.0,2.846030702774449e-19,1.2468324983583301e-18,0.004687500186264515,-0.004687500186264515,1.3010426069826053e-18,-1.5178830414797062e-18,-0.0031250000465661287,-1.4674573875554377e-18,-1.6867227020182377e-18,3.8832660770670755e-19,0.0031250000465661287,-5.692061405548898e-19,6.384475167765372e-19,-3.8772080130558903e-19,-5.421010862427522e-20,8.131516293641283e-20,-1.5449880957918438e-18,0.0026041667442768812,-6.071532165918825e-18,-0.0078125,1.018910242476795e-17,-8.115061603306072e-19,6.7572347016329266e-18,-3.350084375971906e-18,-1.4085316773553625e-19,-5.692061405548898e-19,0.0026041667442768812,-7.85673103005423e-19,8.857163232501554e-21,-1.1384122811097797e-18,-1.6263032587282567e-19,7.047314121155779e-19,0.0020833334419876337,-1.1058862159352145e-17,-0.0013888889225199819,-0.0005952381179668009,-1.0050490942341827e-17,4.060836008585645e-18,1.6288278398071626e-19,3.619291030110325e-19,6.384475167765372e-19,-7.85673103005423e-19,0.00039682540227659047,1.0570971181733668e-18,-1.3552527156068805e-19,4.743384504624082e-19,1.870248747537495e-18,0.0037499999161809683,-1.431146867680866e-17,-0.0024999999441206455,8.673617379884035e-19,-0.0024999999441206455,6.809847938084668e-18,-3.3066927557840587e-19,3.926815585354344e-19,-3.8772080130558903e-19,8.857163232501554e-21,1.0570971181733668e-18,0.0016666667070239782,-3.7947076036992655e-19,-6.776263578034403e-20,3.7947076036992655e-19,0.0008680555620230734,-1.5178830414797062e-18,5.285485590866834e-18,-0.0008680555620230734,-0.0,9.75781955236954e-19,-5.963111948670274e-19,-0.0,-5.421010862427522e-20,-1.1384122811097797e-18,-1.3552527156068805e-19,-3.7947076036992655e-19,0.00012400794366840273,0.0,3.7947076036992655e-19,0.0020833334419876337,-8.239936510889834e-18,-9.75781955236954e-19,-0.0005952381179668009,-0.0013888889225199819,3.63207727782644e-18,-1.0842021724855044e-19,2.846030702774449e-19,8.131516293641283e-20,-1.6263032587282567e-19,4.743384504624082e-19,-6.776263578034403e-20,0.0,0.00039682540227659047,2.094274486425538e-18,0.0026041667442768812,-1.8214596497756474e-17,-1.0842021724855044e-17,-1.0408340855860843e-17,-0.0078125,7.48099499014998e-18,5.963111948670274e-19,1.2468324983583301e-18,-1.5449880957918438e-18,7.047314121155779e-19,1.870248747537495e-18,3.7947076036992655e-19,3.7947076036992655e-19,2.094274486425538e-18,0.0026041667442768812,3.0,4.0,8.0,5.0,0.07408729940652847,-0.028541667386889458,-0.023333333432674408,-0.013611110858619213,-0.019771825522184372,0.0031250000465661287,0.0037499999161809683,0.0020833334419876337,0.0031250000465661287,0.0020833334419876337,0.0016666667070239782,0.0024999999441206455,0.0006944444612599909,0.0013888889225199819,0.0014880952658131719,-0.028541667386889458,0.05979166552424431,0.0037499999161809683,0.0020833334419876337,0.0031250000465661287,-0.01875000074505806,-0.0037499999161809683,-0.0020833334419876337,-0.0031250000465661287,2.0383000842727483e-17,-7.589415207398531e-19,-2.168404344971009e-18,-4.336808689942018e-18,-3.7947076036992655e-18,-8.239936510889834e-18,-0.023333333432674408,0.0037499999161809683,0.030138889327645302,0.0016666667070239782,0.0024999999441206455,2.249185314667835e-17,-0.0024999999441206455,1.8431436932253575e-18,1.4094628242311558e-18,-0.0062500000931322575,-0.0011111111380159855,-0.0016666667070239782,-3.767602549387128e-18,-1.4094628242311558e-18,-4.9873299934333204e-18,-0.013611110858619213,0.0020833334419876337,0.0016666667070239782,0.007361111231148243,0.0013888889225199819,-1.3916480008147237e-17,-4.779359830234932e-18,-0.0005952381179668009,-2.8189256484623115e-18,-4.008997013187253e-18,-0.0004761904710903764,-1.951563910473908e-18,-0.0006944444612599909,-0.00039682540227659047,8.673617379884035e-19,-0.019771825522184372,0.0031250000465661287,0.0024999999441206455,0.0013888889225199819,0.018814483657479286,-1.3552527156068805e-17,-7.200318546240325e-18,6.458889886634291e-19,-0.0015625000232830644,3.1833332430824943e-18,-2.3862692426567567e-19,-0.0012499999720603228,5.421010862427522e-20,-0.0006944444612599909,-0.0029761905316263437,0.0031250000465661287,-0.01875000074505806,2.249185314667835e-17,-1.3916480008147237e-17,-1.3552527156068805e-17,0.00937500037252903,-5.203832111059887e-18,2.3629460581052115e-18,1.4390063035915231e-18,-6.1102739970883584e-18,2.959396581206666e-19,3.762118238528325e-19,1.3010426069826053e-18,9.486769009248164e-19,1.951563910473908e-18,0.0037499999161809683,-0.0037499999161809683,-0.0024999999441206455,-4.779359830234932e-18,-7.200318546240325e-18,-5.203832111059887e-18,0.0024999999441206455,-1.6263032587282567e-19,5.44649061023357e-19,-1.753541214526929e-18,7.008325867711887e-20,1.2427097526371834e-19,5.149960319306146e-19,5.149960319306146e-19,1.111307226797642e-18,0.0020833334419876337,-0.0020833334419876337,1.8431436932253575e-18,-0.0005952381179668009,6.458889886634291e-19,2.3629460581052115e-18,-1.6263032587282567e-19,0.0005952381179668009,1.353463808285264e-19,-5.8812851745249975e-19,7.057542467923938e-20,-6.985182905136302e-20,1.6263032587282567e-19,5.421010862427522e-20,-2.0328790734103208e-19,0.0031250000465661287,-0.0031250000465661287,1.4094628242311558e-18,-2.8189256484623115e-18,-0.0015625000232830644,1.4390063035915231e-18,5.44649061023357e-19,1.353463808285264e-19,0.0015625000232830644,-1.0299920638612292e-18,3.3881317890172014e-20,6.058349388496567e-19,1.8973538018496328e-19,4.472333961502706e-19,1.5449880957918438e-18,0.0020833334419876337,2.0383000842727483e-17,-0.0062500000931322575,-4.008997013187253e-18,3.1833332430824943e-18,-6.1102739970883584e-18,-1.753541214526929e-18,-5.8812851745249975e-19,-1.0299920638612292e-18,0.0020833334419876337,3.9979955110402976e-19,-2.229599166687682e-18,5.421010862427522e-19,-1.2197274440461925e-19,5.285485590866834e-19,0.0016666667070239782,-7.589415207398531e-19,-0.0011111111380159855,-0.0004761904710903764,-2.3862692426567567e-19,2.959396581206666e-19,7.008325867711887e-20,7.057542467923938e-20,3.3881317890172014e-20,3.9979955110402976e-19,0.0003174603043589741,-2.710505431213761e-20,1.8973538018496328e-19,7.453889935837843e-20,-0.0,0.0024999999441206455,-2.168404344971009e-18,-0.0016666667070239782,-1.951563910473908e-18,-0.0012499999720603228,3.762118238528325e-19,1.2427097526371834e-19,-6.985182905136302e-20,6.058349388496567e-19,-2.229599166687682e-18,-2.710505431213761e-20,0.0008333333535119891,1.3552527156068805e-19,4.336808689942018e-19,1.1180834903756764e-18,0.0006944444612599909,-4.336808689942018e-18,-3.767602549387128e-18,-0.0006944444612599909,5.421010862427522e-20,1.3010426069826053e-18,5.149960319306146e-19,1.6263032587282567e-19,1.8973538018496328e-19,5.421010862427522e-19,1.8973538018496328e-19,1.3552527156068805e-19,9.920635056914762e-05,4.0657581468206416e-20,-1.3552527156068805e-19,0.0013888889225199819,-3.7947076036992655e-18,-1.4094628242311558e-18,-0.00039682540227659047,-0.0006944444612599909,9.486769009248164e-19,5.149960319306146e-19,5.421010862427522e-20,4.472333961502706e-19,-1.2197274440461925e-19,7.453889935837843e-20,4.336808689942018e-19,4.0657581468206416e-20,0.00019841270113829523,1.461333459287978e-19,0.0014880952658131719,-8.239936510889834e-18,-4.9873299934333204e-18,8.673617379884035e-19,-0.0029761905316263437,1.951563910473908e-18,1.111307226797642e-18,-2.0328790734103208e-19,1.5449880957918438e-18,5.285485590866834e-19,-0.0,1.1180834903756764e-18,-1.3552527156068805e-19,1.461333459287978e-19,0.0007440476329065859,3.0,4.0,8.0,6.0,0.06400462985038757,-0.02415674552321434,-0.01974206417798996,-0.011507936753332615,-0.014521329663693905,0.0026041667442768812,0.0031250000465661287,0.0017361111240461469,0.0022321429569274187,0.0017361111240461469,0.0013888889225199819,0.0017857142956927419,0.0005787037080153823,0.0009920635493472219,0.0009300595265813172,-0.02415674552321434,0.05019841343164444,0.0031250000465661287,0.0017361111240461469,0.0022321429569274187,-0.015625,-0.0031250000465661287,-0.0017361111240461469,-0.0022321429569274187,8.095375945498229e-18,1.9452394943054807e-18,2.3790494034752407e-18,1.9749044658183168e-18,1.3454110240763012e-18,3.4074925716394644e-18,-0.01974206417798996,0.0031250000465661287,0.025314154103398323,0.0013888889225199819,0.0017857142956927419,2.2055770145185294e-17,-0.0020833334419876337,9.486769009248164e-20,-4.477590592738545e-33,-0.0052083334885537624,-0.0009259259095415473,-0.0011904762359336019,1.2977184265946961e-19,-1.762258793454443e-19,-6.195441133342278e-19,-0.011507936753332615,0.0017361111240461469,0.0013888889225199819,0.006181500386446714,0.0009920635493472219,1.1548301619077321e-17,-5.470374550534663e-33,-0.0004960317746736109,-2.3444463408982797e-33,-5.983222531989272e-33,-0.00039682540227659047,-1.762258793454443e-19,-0.0005787037080153823,-0.00028344671591185033,-2.95020996502244e-19,-0.014521329663693905,0.0022321429569274187,0.0017857142956927419,0.0009920635493472219,0.010923858731985092,1.4202016138155642e-17,-6.727426168784939e-33,2.371692252312041e-20,-0.0008928571478463709,-7.358122234355283e-33,-1.4435633579689139e-33,-0.0007142857066355646,-0.0,-0.00039682540227659047,-0.0013950893189758062,0.0026041667442768812,-0.015625,2.2055770145185294e-17,1.1548301619077321e-17,1.4202016138155642e-17,0.0078125,-3.700743608425998e-18,-1.7622588710026254e-18,-1.5860329011843016e-18,-4.0476879727491145e-18,-9.251859021064995e-19,-1.1895247017376204e-18,-9.63735310386038e-19,-6.608470507765904e-19,-1.7037462858197322e-18,0.0031250000465661287,-0.0031250000465661287,-0.0020833334419876337,-5.470374550534663e-33,-6.727426168784939e-33,-3.700743608425998e-18,0.0020833334419876337,8.347734561456088e-34,7.512960921639487e-34,1.917370325132334e-33,4.3825606906821945e-34,5.634720691229615e-34,4.565167309597706e-34,3.130400460546033e-34,8.070564013791732e-34,0.0017361111240461469,-0.0017361111240461469,9.486769009248164e-20,-0.0004960317746736109,2.371692252312041e-20,-1.7622588710026254e-18,8.347734561456088e-34,0.0004960317746736109,3.5776005263383236e-34,9.130334619195412e-34,-2.710505431213761e-20,2.640757931438106e-34,-1.3552527156068805e-20,-6.776263578034403e-21,3.8288927495403197e-34,0.0022321429569274187,-0.0022321429569274187,-4.477590592738545e-33,-2.3444463408982797e-33,-0.0008928571478463709,-1.5860329011843016e-18,7.512960921639487e-34,3.5776005263383236e-34,0.0008928571478463709,8.217301524617855e-34,1.8782402304098718e-34,2.4148802634428723e-34,1.9565003739370484e-34,1.3416001973768713e-34,3.4588129191791447e-34,0.0017361111240461469,8.095375945498229e-18,-0.0052083334885537624,-5.983222531989272e-33,-7.358122234355283e-33,-4.0476879727491145e-18,1.917370325132334e-33,9.130334619195412e-34,8.217301524617855e-34,0.0017361111240461469,4.793425812830835e-34,6.162975913874651e-34,4.993151486585158e-34,3.4238754821982793e-34,8.827179217893152e-34,0.0013888889225199819,1.9452394943054807e-18,-0.0009259259095415473,-0.00039682540227659047,-1.4435633579689139e-33,-9.251859021064995e-19,4.3825606906821945e-34,-2.710505431213761e-20,1.8782402304098718e-34,4.793425812830835e-34,0.00026455026818439364,1.4294011305999016e-34,-3.7077669792873356e-20,-0.0,2.082658238840387e-34,0.0017857142956927419,2.3790494034752407e-18,-0.0011904762359336019,-1.762258793454443e-19,-0.0007142857066355646,-1.1895247017376204e-18,5.634720691229615e-34,2.640757931438106e-34,2.4148802634428723e-34,6.162975913874651e-34,1.4294011305999016e-34,0.0004761904710903764,1.4648979605467394e-34,7.04903478607686e-20,2.4781765050356993e-19,0.0005787037080153823,1.9749044658183168e-18,1.2977184265946961e-19,-0.0005787037080153823,-0.0,-9.63735310386038e-19,4.565167309597706e-34,-1.3552527156068805e-20,1.9565003739370484e-34,4.993151486585158e-34,-3.7077669792873356e-20,1.4648979605467394e-34,8.26719551696442e-05,8.949782217558526e-22,2.1797462662011343e-34,0.0009920635493472219,1.3454110240763012e-18,-1.762258793454443e-19,-0.00028344671591185033,-0.00039682540227659047,-6.608470507765904e-19,3.130400460546033e-34,-6.776263578034403e-21,1.3416001973768713e-34,3.4238754821982793e-34,-0.0,7.04903478607686e-20,8.949782217558526e-22,0.00011337868636474013,1.1800840377077644e-19,0.0009300595265813172,3.4074925716394644e-18,-6.195441133342278e-19,-2.95020996502244e-19,-0.0013950893189758062,-1.7037462858197322e-18,8.070564013791732e-34,3.8288927495403197e-34,3.4588129191791447e-34,8.827179217893152e-34,2.082658238840387e-34,2.4781765050356993e-19,2.1797462662011343e-34,1.1800840377077644e-19,0.00027901786961592734,3.0,4.0,8.0,7.0,0.0563616082072258,-0.02094493992626667,-0.01711309514939785,-0.00997023843228817,-0.01112351194024086,0.0022321429569274187,0.0026785715017467737,0.0014880952658131719,0.0016741071594879031,0.0014880952658131719,0.0011904762359336019,0.0013392857508733869,0.0004960317746736109,0.0007440476329065859,0.0006200397037900984,-0.02094493992626667,0.04326637089252472,0.0026785715017467737,0.0014880952658131719,0.0016741071594879031,-0.013392857275903225,-0.0026785715017467737,-0.0014880952658131719,-0.0016741071594879031,6.938893903907228e-18,1.7033325921158791e-18,1.7837287573917455e-18,1.6715638935101675e-18,8.738773362759072e-19,2.1304688081035613e-18,-0.01711309514939785,0.0026785715017467737,0.02182539738714695,0.0011904762359336019,0.0013392857508733869,1.8579242527188226e-17,-0.0017857142956927419,1.181060498571489e-19,-1.4990282777114433e-21,-0.004464285913854837,-0.0007936508045531809,-0.0008928571478463709,1.4979801453634912e-19,-9.50160591525098e-20,-1.998704437598055e-21,-0.00997023843228817,0.0014880952658131719,0.0011904762359336019,0.005328798200935125,0.0007440476329065859,9.753562880937342e-18,-3.9601846319386226e-33,-0.00042517005931586027,-1.300341623112255e-19,-6.608470507765904e-19,-0.0003401360590942204,-2.1006417091906648e-19,-0.0004960317746736109,-0.00021258502965793014,-1.619113637488493e-19,-0.01112351194024086,0.0016741071594879031,0.0013392857508733869,0.0007440476329065859,0.006932043470442295,1.1215518586841113e-17,-4.553774381615338e-33,6.198357811360128e-23,-0.0005580357392318547,-7.434529256613157e-19,-1.1761966765696773e-19,-0.00044642857392318547,-0.0,-0.00024801588733680546,-0.0007440476329065859,0.0022321429569274187,-0.013392857275903225,1.8579242527188226e-17,9.753562880937342e-18,1.1215518586841113e-17,0.0066964286379516125,-2.7189135153452095e-18,-1.2947207757535922e-18,-1.69932097294015e-18,-3.469446951953614e-18,-7.930164505921508e-19,-8.921435521526094e-19,-8.260588005460409e-19,-4.956353010071399e-19,-1.073876476899005e-18,0.0026785715017467737,-0.0026785715017467737,-0.0017857142956927419,-3.9601846319386226e-33,-4.553774381615338e-33,-2.7189135153452095e-18,0.0017857142956927419,5.256882368564273e-34,6.8996582235349785e-34,1.4086801957662779e-33,3.219840427786743e-34,3.6223205099586786e-34,3.354000378647808e-34,2.012400181270937e-34,4.360200584077647e-34,0.0014880952658131719,-0.0014880952658131719,1.181060498571489e-19,-0.00042517005931586027,6.198357811360128e-23,-1.2947207757535922e-18,5.256882368564273e-34,0.00042517005931586027,1.220181674446822e-21,6.247789667996402e-34,-3.3881317890172014e-20,1.595207007069556e-22,-6.776263578034403e-21,-0.0,-2.340686620955164e-22,0.0016741071594879031,-0.0016741071594879031,-1.4990282777114433e-21,-1.300341623112255e-19,-0.0005580357392318547,-1.69932097294015e-18,6.8996582235349785e-34,1.220181674446822e-21,0.0005580357392318547,8.787055371266764e-34,4.282938152691686e-22,0.0,1.4235452195384952e-21,3.9131090733573695e-20,6.0344675533011676e-21,0.0014880952658131719,6.938893903907228e-18,-0.004464285913854837,-6.608470507765904e-19,-7.434529256613157e-19,-3.469446951953614e-18,1.4086801957662779e-33,6.247789667996402e-34,8.787055371266764e-34,0.0014880952658131719,4.405647177506564e-19,4.956353010071399e-19,3.6880451082602894e-34,3.095351673026076e-34,5.816884663053645e-34,0.0011904762359336019,1.7033325921158791e-18,-0.0007936508045531809,-0.0003401360590942204,-1.1761966765696773e-19,-7.930164505921508e-19,3.219840427786743e-34,-3.3881317890172014e-20,4.282938152691686e-22,4.405647177506564e-19,0.00022675737272948027,7.565299532121372e-20,-4.295895302869379e-20,-0.0,5.710584035298588e-22,0.0013392857508733869,1.7837287573917455e-18,-0.0008928571478463709,-2.1006417091906648e-19,-0.00044642857392318547,-8.921435521526094e-19,3.6223205099586786e-34,1.595207007069556e-22,0.0,4.956353010071399e-19,7.565299532121372e-20,0.00029761905898340046,1.8610748415811486e-22,3.1672021871619446e-20,1.1005314029424046e-35,0.0004960317746736109,1.6715638935101675e-18,1.4979801453634912e-19,-0.0004960317746736109,-0.0,-8.260588005460409e-19,3.354000378647808e-34,-6.776263578034403e-21,1.4235452195384952e-21,3.6880451082602894e-34,-4.295895302869379e-20,1.8610748415811486e-22,7.086167897796258e-05,4.6143875051664316e-36,-2.6570693213047654e-22,0.0007440476329065859,8.738773362759072e-19,-9.50160591525098e-20,-0.00021258502965793014,-0.00024801588733680546,-4.956353010071399e-19,2.012400181270937e-34,-0.0,3.9131090733573695e-20,3.095351673026076e-34,-0.0,3.1672021871619446e-20,4.6143875051664316e-36,7.086167897796258e-05,5.443353786254404e-20,0.0006200397037900984,2.1304688081035613e-18,-1.998704437598055e-21,-1.619113637488493e-19,-0.0007440476329065859,-1.073876476899005e-18,4.360200584077647e-34,-2.340686620955164e-22,6.0344675533011676e-21,5.816884663053645e-34,5.710584035298588e-22,1.1005314029424046e-35,-2.6570693213047654e-22,5.443353786254404e-20,0.00012400794366840273,3.0,4.0,8.0,8.0,0.05036168918013573,-0.01848958246409893,-0.015104166232049465,-0.008796296082437038,-0.008796296082437038,0.001953125,0.0023437500931322575,0.0013020833721384406,0.0013020833721384406,0.0013020833721384406,0.0010416667209938169,0.0010416667209938169,0.0004340277810115367,0.0005787037080153823,0.0004340277810115367,-0.01848958246409893,0.03802083432674408,0.0023437500931322575,0.0013020833721384406,0.0013020833721384406,-0.01171875,-0.0023437500931322575,-0.0013020833721384406,-0.0013020833721384406,6.071532165918825e-18,1.480852853792698e-18,1.479422141525711e-18,1.4667655543706136e-18,8.148042328304327e-19,1.4551400478490637e-18,-0.015104166232049465,0.0023437500931322575,0.01918402686715126,0.0010416667209938169,0.0010416667209938169,1.6046192152785466e-17,-0.0015625000232830644,9.16433336024014e-20,9.307405233173697e-20,-0.00390625,-0.0006944444612599909,-0.0006944444612599909,1.2601009665221694e-19,2.371692252312041e-20,1.5139617917858986e-19,-0.008796296082437038,0.0013020833721384406,0.0010416667209938169,0.004683366511017084,0.0005787037080153823,8.440943881282057e-18,-2.998825862572808e-33,-0.00037202381645329297,2.503771993504019e-20,-4.373287509622145e-33,-0.00029761905898340046,1.3552527156068805e-20,-0.0004340277810115367,-0.0001653439103392884,4.821830630379946e-20,-0.008796296082437038,0.0013020833721384406,0.0010416667209938169,0.0005787037080153823,0.004683366511017084,8.440943881282057e-18,-2.998825862572808e-33,4.855380559037214e-22,-0.00037202381645329297,-4.373287509622145e-33,-6.14476974538377e-21,-0.00029761905898340046,1.3552527156068805e-20,-0.0001653439103392884,-0.0004340277810115367,0.001953125,-0.01171875,1.6046192152785466e-17,8.440943881282057e-18,8.440943881282057e-18,0.005859375,-2.0816682538902298e-18,-9.912706020142797e-19,-9.912706020142797e-19,-3.0357660829594124e-18,-6.938894007304805e-19,-6.938894007304805e-19,-7.228014310907402e-19,-3.854941086447787e-19,-7.228014310907402e-19,0.0023437500931322575,-0.0023437500931322575,-0.0015625000232830644,-2.998825862572808e-33,-2.998825862572808e-33,-2.0816682538902298e-18,0.0015625000232830644,3.5217004894156947e-34,3.5217004894156947e-34,1.0785207504897528e-33,2.465190273714364e-34,2.465190273714364e-34,2.5679066690458946e-34,1.3695502158381858e-34,2.5679066690458946e-34,0.0013020833721384406,-0.0013020833721384406,9.16433336024014e-20,-0.00037202381645329297,4.855380559037214e-22,-9.912706020142797e-19,3.5217004894156947e-34,0.00037202381645329297,6.255381726299296e-22,5.135813338091789e-34,-2.710505431213761e-20,9.212443364044832e-22,-6.776263578034403e-21,-3.3881317890172014e-21,1.2369553059160706e-21,0.0013020833721384406,-0.0013020833721384406,9.307405233173697e-20,2.503771993504019e-20,-0.00037202381645329297,-9.912706020142797e-19,3.5217004894156947e-34,6.255381726299296e-22,0.00037202381645329297,5.135813338091789e-34,5.124688331966549e-22,-2.710505431213761e-20,7.297945347349178e-22,-9.130728178502893e-21,-3.961849802379133e-21,0.0013020833721384406,6.071532165918825e-18,-0.00390625,-4.373287509622145e-33,-4.373287509622145e-33,-3.0357660829594124e-18,1.0785207504897528e-33,5.135813338091789e-34,5.135813338091789e-34,0.0013020833721384406,3.5950692448287563e-34,3.5950692448287563e-34,3.7448637297332385e-34,1.997260640551811e-34,3.7448637297332385e-34,0.0010416667209938169,1.480852853792698e-18,-0.0006944444612599909,-0.00029761905898340046,-6.14476974538377e-21,-6.938894007304805e-19,2.465190273714364e-34,-2.710505431213761e-20,5.124688331966549e-22,3.5950692448287563e-34,0.00019841270113829523,7.36995459026167e-22,-3.7077669792873356e-20,-0.0,5.978802801525485e-22,0.0010416667209938169,1.479422141525711e-18,-0.0006944444612599909,1.3552527156068805e-20,-0.00029761905898340046,-6.938894007304805e-19,2.465190273714364e-34,9.212443364044832e-22,-2.710505431213761e-20,3.5950692448287563e-34,7.36995459026167e-22,0.00019841270113829523,1.0747849918224331e-21,-6.776263578034403e-21,-4.385393337090776e-20,0.0004340277810115367,1.4667655543706136e-18,1.2601009665221694e-19,-0.0004340277810115367,1.3552527156068805e-20,-7.228014310907402e-19,2.5679066690458946e-34,-6.776263578034403e-21,7.297945347349178e-22,3.7448637297332385e-34,-3.7077669792873356e-20,1.0747849918224331e-21,6.200397183420137e-05,-6.32877461861777e-21,2.7447111604519228e-24,0.0005787037080153823,8.148042328304327e-19,2.371692252312041e-20,-0.0001653439103392884,-0.0001653439103392884,-3.854941086447787e-19,1.3695502158381858e-34,-3.3881317890172014e-21,-9.130728178502893e-21,1.997260640551811e-34,-0.0,-6.776263578034403e-21,-6.32877461861777e-21,4.724111931864172e-05,-1.4392246340367974e-20,0.0004340277810115367,1.4551400478490637e-18,1.5139617917858986e-19,4.821830630379946e-20,-0.0004340277810115367,-7.228014310907402e-19,2.5679066690458946e-34,1.2369553059160706e-21,-3.961849802379133e-21,3.7448637297332385e-34,5.978802801525485e-22,-4.385393337090776e-20,2.7447111604519228e-24,-1.4392246340367974e-20,6.200397183420137e-05,3.0,5.0,3.0,3.0,0.19391533732414246,-0.08888889104127884,-0.06190476194024086,-0.08888889104127884,-0.08888889104127884,0.011111111380159855,0.011111111380159855,0.01666666753590107,0.01666666753590107,0.005291005130857229,0.011111111380159855,0.011111111380159855,0.011111111380159855,0.01666666753590107,0.011111111380159855,-0.08888889104127884,0.20000000298023224,0.011111111380159855,0.01666666753590107,0.01666666753590107,-0.06666667014360428,-0.011111111380159855,-0.01666666753590107,-0.01666666753590107,2.992397996059992e-17,1.5178830414797062e-18,3.0357660829594124e-18,-9.367506770274758e-17,-2.5153490401663703e-17,-7.979727989493313e-17,-0.06190476194024086,0.011111111380159855,0.06269841641187668,0.011111111380159855,0.011111111380159855,4.748171564265049e-17,-0.0055555556900799274,1.5612511283791264e-17,1.9081958235744878e-17,-0.010582010261714458,-0.0055555556900799274,-0.0055555556900799274,2.0816681711721685e-17,-5.204170427930421e-18,3.469446951953614e-17,-0.08888889104127884,0.01666666753590107,0.011111111380159855,0.20000000298023224,0.01666666753590107,-1.441161973490964e-16,-2.0442015216349467e-17,-0.01666666753590107,3.5128150388530344e-17,1.3010426069826053e-17,-0.011111111380159855,-4.868188274675164e-18,-0.06666667014360428,-0.01666666753590107,-5.551115123125783e-17,-0.08888889104127884,0.01666666753590107,0.011111111380159855,0.01666666753590107,0.20000000298023224,-1.4037674541031567e-16,-1.1964387529261908e-17,3.8226792124211137e-17,-0.01666666753590107,1.3877787807814457e-17,-2.6020852139652106e-18,-0.011111111380159855,-5.594483210025203e-17,-0.01666666753590107,-0.06666667014360428,0.011111111380159855,-0.06666667014360428,4.748171564265049e-17,-1.441161973490964e-16,-1.4037674541031567e-16,0.03333333507180214,-4.553649124439119e-18,1.864091380493773e-17,1.7876761046338792e-17,-1.1275702593849246e-17,3.2526065174565133e-18,2.8189256484623115e-18,4.96564594998361e-17,1.431146867680866e-17,4.87890977618477e-17,0.011111111380159855,-0.011111111380159855,-0.0055555556900799274,-2.0442015216349467e-17,-1.1964387529261908e-17,-4.553649124439119e-18,0.0055555556900799274,4.4477212023761905e-18,3.663855489009196e-18,-1.734723475976807e-18,-2.168404344971009e-19,-2.168404344971009e-19,6.288372600415926e-18,2.6020852139652106e-18,2.8189256484623115e-18,0.01666666753590107,-0.01666666753590107,1.5612511283791264e-17,-0.01666666753590107,3.8226792124211137e-17,1.864091380493773e-17,4.4477212023761905e-18,0.01666666753590107,-5.204170427930421e-18,-2.168404344971009e-18,-3.903127820947816e-18,-3.686287386450715e-18,-1.8214596497756474e-17,-3.469446951953614e-18,-1.0191500421363742e-17,0.01666666753590107,-0.01666666753590107,1.9081958235744878e-17,3.5128150388530344e-17,-0.01666666753590107,1.7876761046338792e-17,3.663855489009196e-18,-5.204170427930421e-18,0.01666666753590107,-3.0357660829594124e-18,-3.686287386450715e-18,-3.2526065174565133e-18,-8.456776945386935e-18,-3.903127820947816e-18,-1.5178830414797062e-17,0.005291005130857229,2.992397996059992e-17,-0.010582010261714458,1.3010426069826053e-17,1.3877787807814457e-17,-1.1275702593849246e-17,-1.734723475976807e-18,-2.168404344971009e-18,-3.0357660829594124e-18,0.0026455025654286146,-4.336808689942018e-19,-4.336808689942018e-19,-1.734723475976807e-18,-4.336808689942018e-19,-6.071532165918825e-18,0.011111111380159855,1.5178830414797062e-18,-0.0055555556900799274,-0.011111111380159855,-2.6020852139652106e-18,3.2526065174565133e-18,-2.168404344971009e-19,-3.903127820947816e-18,-3.686287386450715e-18,-4.336808689942018e-19,0.0055555556900799274,-2.154863269096545e-19,-2.1433081814945175e-17,1.650500359596964e-18,2.580630837212576e-18,0.011111111380159855,3.0357660829594124e-18,-0.0055555556900799274,-4.868188274675164e-18,-0.011111111380159855,2.8189256484623115e-18,-2.168404344971009e-19,-3.686287386450715e-18,-3.2526065174565133e-18,-4.336808689942018e-19,-2.154863269096545e-19,0.0055555556900799274,3.896450819043288e-18,1.9794554067534304e-18,-1.814353175697082e-17,0.011111111380159855,-9.367506770274758e-17,2.0816681711721685e-17,-0.06666667014360428,-5.594483210025203e-17,4.96564594998361e-17,6.288372600415926e-18,-1.8214596497756474e-17,-8.456776945386935e-18,-1.734723475976807e-18,-2.1433081814945175e-17,3.896450819043288e-18,0.03333333507180214,-3.354351800752067e-18,3.026177405298698e-17,0.01666666753590107,-2.5153490401663703e-17,-5.204170427930421e-18,-0.01666666753590107,-0.01666666753590107,1.431146867680866e-17,2.6020852139652106e-18,-3.469446951953614e-18,-3.903127820947816e-18,-4.336808689942018e-19,1.650500359596964e-18,1.9794554067534304e-18,-3.354351800752067e-18,0.01666666753590107,3.45402727135986e-18,0.011111111380159855,-7.979727989493313e-17,3.469446951953614e-17,-5.551115123125783e-17,-0.06666667014360428,4.87890977618477e-17,2.8189256484623115e-18,-1.0191500421363742e-17,-1.5178830414797062e-17,-6.071532165918825e-18,2.580630837212576e-18,-1.814353175697082e-17,3.026177405298698e-17,3.45402727135986e-18,0.03333333507180214,3.0,5.0,3.0,4.0,0.1582142859697342,-0.06916666775941849,-0.04809523746371269,-0.06916666775941849,-0.05666666850447655,0.008333333767950535,0.008333333767950535,0.012500000186264515,0.009999999776482582,0.003968254197388887,0.008333333767950535,0.006666666828095913,0.008333333767950535,0.009999999776482582,0.0055555556900799274,-0.06916666775941849,0.1525000035762787,0.008333333767950535,0.012500000186264515,0.009999999776482582,-0.05000000074505806,-0.008333333767950535,-0.012500000186264515,-0.009999999776482582,-7.496483947120036e-18,-5.551115205843844e-18,-4.440891999238953e-18,-2.7755575615628914e-17,-6.661337998858429e-18,-1.2952602009105534e-17,-0.04809523746371269,0.008333333767950535,0.047857142984867096,0.008333333767950535,0.006666666828095913,-2.1966555407399e-17,-0.004166666883975267,-0.0,-0.0,-0.007936508394777775,-0.004166666883975267,-0.0033333334140479565,-1.2193887792499303e-32,-2.9265331436682295e-33,-5.690481092280336e-33,-0.06916666775941849,0.012500000186264515,0.008333333767950535,0.1525000035762787,0.009999999776482582,-3.8302694217219e-17,-0.0,-0.012500000186264515,-0.0,-0.0,-0.008333333767950535,-2.9089246056348963e-33,-0.05000000074505806,-0.009999999776482582,-1.2952602009105534e-17,-0.05666666850447655,0.009999999776482582,0.006666666828095913,0.009999999776482582,0.07666666805744171,-2.7200464632711927e-17,-0.0,-0.0,-0.006666666828095913,5.808782017227626e-34,-2.5268200649955344e-33,-0.004444444552063942,-1.9428902600067994e-17,-0.006666666828095913,-0.01666666753590107,0.008333333767950535,-0.05000000074505806,-2.1966555407399e-17,-3.8302694217219e-17,-2.7200464632711927e-17,0.02500000037252903,-3.851859888774472e-34,-0.0,-0.0,3.965082408057119e-18,2.775557602921922e-18,2.2204459996194763e-18,1.3877787807814457e-17,3.3306689994292145e-18,6.476301004552767e-18,0.008333333767950535,-0.008333333767950535,-0.004166666883975267,-0.0,-0.0,-3.851859888774472e-34,0.004166666883975267,-0.0,-0.0,-2.168404344971009e-19,-0.0,-0.0,0.0,-0.0,0.0,0.012500000186264515,-0.012500000186264515,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.009999999776482582,-0.0,-0.0,-0.006666666828095913,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003968254197388887,-7.496483947120036e-18,-0.007936508394777775,-0.0,5.808782017227626e-34,3.965082408057119e-18,-2.168404344971009e-19,-0.0,-0.0,0.0019841270986944437,-0.0,0.0,2.2010628460628388e-33,5.282550848917912e-34,1.0271626676183578e-33,0.008333333767950535,-5.551115205843844e-18,-0.004166666883975267,-0.008333333767950535,-2.5268200649955344e-33,2.775557602921922e-18,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,0.0,1.5407439555097887e-33,3.6977854105715463e-34,7.1901384896575126e-34,0.006666666828095913,-4.440891999238953e-18,-0.0033333334140479565,-2.9089246056348963e-33,-0.004444444552063942,2.2204459996194763e-18,-0.0,-0.0,-0.0,0.0,0.0,0.002222222276031971,1.2325951827749302e-33,2.958228420292733e-34,5.75211079172601e-34,0.008333333767950535,-2.7755575615628914e-17,-1.2193887792499303e-32,-0.05000000074505806,-1.9428902600067994e-17,1.3877787807814457e-17,0.0,-0.0,-0.0,2.2010628460628388e-33,1.5407439555097887e-33,1.2325951827749302e-33,0.02500000037252903,1.8488928200801433e-33,6.476301004552767e-18,0.009999999776482582,-6.661337998858429e-18,-2.9265331436682295e-33,-0.009999999776482582,-0.006666666828095913,3.3306689994292145e-18,-0.0,-0.0,-0.0,5.282550848917912e-34,3.6977854105715463e-34,2.958228420292733e-34,1.8488928200801433e-33,0.006666666828095913,8.628166187589015e-34,0.0055555556900799274,-1.2952602009105534e-17,-5.690481092280336e-33,-1.2952602009105534e-17,-0.01666666753590107,6.476301004552767e-18,0.0,-0.0,-0.0,1.0271626676183578e-33,7.1901384896575126e-34,5.75211079172601e-34,6.476301004552767e-18,8.628166187589015e-34,0.0055555556900799274,3.0,5.0,3.0,5.0,0.13380952179431915,-0.05666666850447655,-0.03936507925391197,-0.05666666850447655,-0.03936507925391197,0.006666666828095913,0.006666666828095913,0.009999999776482582,0.006666666828095913,0.0031746032182127237,0.006666666828095913,0.004444444552063942,0.006666666828095913,0.006666666828095913,0.0031746032182127237,-0.05666666850447655,0.12333333492279053,0.006666666828095913,0.009999999776482582,0.006666666828095913,-0.03999999910593033,-0.006666666828095913,-0.009999999776482582,-0.006666666828095913,-5.935085828746059e-18,-4.2123754968053595e-18,-2.7437543695256363e-18,-2.2204460823375376e-17,-4.440891999238953e-18,-6.190939409653611e-18,-0.03936507925391197,0.006666666828095913,0.038730159401893616,0.006666666828095913,0.004444444552063942,-1.7869303185936014e-17,-0.0033333334140479565,-0.0,5.421010862427522e-20,-0.0063492064364254475,-0.0033333334140479565,-0.002222222276031971,-9.099370995968799e-33,0.0,2.043783381835301e-19,-0.05666666850447655,0.009999999776482582,0.006666666828095913,0.12333333492279053,0.006666666828095913,-3.108624482185328e-17,2.168404344971009e-19,-0.009999999776482582,1.167602350784608e-20,4.336808689942018e-19,-0.006666666828095913,1.0842021724855044e-19,-0.03999999910593033,-0.006666666828095913,-6.3218916131977995e-18,-0.03936507925391197,0.006666666828095913,0.004444444552063942,0.006666666828095913,0.038730159401893616,-1.7869303185936014e-17,7.193912885426108e-20,-0.0,-0.0033333334140479565,1.6291642696719244e-19,1.6263032587282567e-19,-0.002222222276031971,-1.2688263209474413e-17,-0.0033333334140479565,-0.0063492064364254475,0.006666666828095913,-0.03999999910593033,-1.7869303185936014e-17,-3.108624482185328e-17,-1.7869303185936014e-17,0.019999999552965164,-3.851859888774472e-34,-0.0,-1.9307338591912604e-34,3.1720658023686032e-18,2.2204459996194763e-18,1.4802974020113686e-18,1.1102230411687688e-17,2.2204459996194763e-18,3.1720658023686032e-18,0.006666666828095913,-0.006666666828095913,-0.0033333334140479565,2.168404344971009e-19,7.193912885426108e-20,-3.851859888774472e-34,0.0033333334140479565,-0.0,6.466720718251626e-21,-2.168404344971009e-19,-1.0842021724855044e-19,-5.421010862427522e-20,-8.853454099507359e-36,-1.5170402037609534e-34,6.899854378190055e-21,0.009999999776482582,-0.009999999776482582,-0.0,-0.009999999776482582,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.006666666828095913,5.421010862427522e-20,1.167602350784608e-20,-0.0033333334140479565,-1.9307338591912604e-34,6.466720718251626e-21,-0.0,0.0033333334140479565,1.2317563465192041e-20,-5.83801175392304e-21,-5.421010862427522e-20,-4.1888589662983555e-34,-0.0,-8.349603108375743e-20,0.0031746032182127237,-5.935085828746059e-18,-0.0063492064364254475,4.336808689942018e-19,1.6291642696719244e-19,3.1720658023686032e-18,-2.168404344971009e-19,-0.0,1.2317563465192041e-20,0.0015873016091063619,-2.168404344971009e-19,-1.0842021724855044e-19,1.7439865614249776e-33,6.321001040327923e-35,-1.89469556324714e-21,0.006666666828095913,-4.2123754968053595e-18,-0.0033333334140479565,-0.006666666828095913,1.6263032587282567e-19,2.2204459996194763e-18,-1.0842021724855044e-19,-0.0,-5.83801175392304e-21,-2.168404344971009e-19,0.0033333334140479565,-5.421010862427522e-20,1.1924475507550373e-33,0.0,-1.1120022426891199e-20,0.004444444552063942,-2.7437543695256363e-18,-0.002222222276031971,1.0842021724855044e-19,-0.002222222276031971,1.4802974020113686e-18,-5.421010862427522e-20,-0.0,-5.421010862427522e-20,-1.0842021724855044e-19,-5.421010862427522e-20,0.0011111111380159855,4.728667094360066e-34,-0.0,-9.595812093497967e-20,0.006666666828095913,-2.2204460823375376e-17,-9.099370995968799e-33,-0.03999999910593033,-1.2688263209474413e-17,1.1102230411687688e-17,-8.853454099507359e-36,-0.0,-4.1888589662983555e-34,1.7439865614249776e-33,1.1924475507550373e-33,4.728667094360066e-34,0.019999999552965164,1.1555579666323415e-33,3.1720658023686032e-18,0.006666666828095913,-4.440891999238953e-18,0.0,-0.006666666828095913,-0.0033333334140479565,2.2204459996194763e-18,-1.5170402037609534e-34,-0.0,-0.0,6.321001040327923e-35,0.0,-0.0,1.1555579666323415e-33,0.0033333334140479565,2.8335520915311635e-35,0.0031746032182127237,-6.190939409653611e-18,2.043783381835301e-19,-6.3218916131977995e-18,-0.0063492064364254475,3.1720658023686032e-18,6.899854378190055e-21,-0.0,-8.349603108375743e-20,-1.89469556324714e-21,-1.1120022426891199e-20,-9.595812093497967e-20,3.1720658023686032e-18,2.8335520915311635e-35,0.0015873016091063619,3.0,5.0,3.0,6.0,0.1160052940249443,-0.04801587387919426,-0.03333333507180214,-0.04801587387919426,-0.02896825410425663,0.0055555556900799274,0.0055555556900799274,0.008333333767950535,0.004761904943734407,0.0026455025654286146,0.0055555556900799274,0.0031746032182127237,0.0055555556900799274,0.004761904943734407,0.0019841270986944437,-0.04801587387919426,0.10357142984867096,0.0055555556900799274,0.008333333767950535,0.004761904943734407,-0.03333333507180214,-0.0055555556900799274,-0.008333333767950535,-0.004761904943734407,-5.314576292239405e-18,-3.8091638256745485e-18,-2.168920712468395e-18,-1.8503717628539684e-17,-3.1720658023686032e-18,-3.766490818643857e-18,-0.03333333507180214,0.0055555556900799274,0.03253968432545662,0.0055555556900799274,0.0031746032182127237,-1.5067313233335113e-17,-0.0027777778450399637,-0.0,-5.421010862427522e-20,-0.005291005130857229,-0.0027777778450399637,-0.0015873016091063619,-8.355344785351709e-33,0.0,-9.843064133408309e-20,-0.04801587387919426,0.008333333767950535,0.0055555556900799274,0.10357142984867096,0.004761904943734407,-2.6169542817842188e-17,-1.0842021724855044e-19,-0.008333333767950535,1.5867730770867499e-34,-2.168404344971009e-19,-0.0055555556900799274,-5.421010862427522e-20,-0.03333333507180214,-0.004761904943734407,-3.634658908518218e-18,-0.02896825410425663,0.004761904943734407,0.0031746032182127237,0.004761904943734407,0.02250000089406967,-1.278739005254093e-17,-5.0026862396138494e-20,-0.0,-0.0019047618843615055,2.3962522463627634e-20,-5.421010862427522e-20,-0.0012698412174358964,-9.086646857705238e-18,-0.0019047618843615055,-0.0029761905316263437,0.0055555556900799274,-0.03333333507180214,-1.5067313233335113e-17,-2.6169542817842188e-17,-1.278739005254093e-17,0.01666666753590107,-0.0,-0.0,2.1481525596353814e-34,2.6433882031063616e-18,1.850371804212999e-18,1.05735530192206e-18,9.251858814269842e-18,1.5860329011843016e-18,1.817329454259109e-18,0.0055555556900799274,-0.0055555556900799274,-0.0027777778450399637,-1.0842021724855044e-19,-5.0026862396138494e-20,-0.0,0.0027777778450399637,-0.0,5.83801175392304e-21,-0.0,5.421010862427522e-20,2.710505431213761e-20,4.4434073892081884e-35,-1.0836001947411254e-34,-1.8466692064663053e-21,0.008333333767950535,-0.008333333767950535,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.004761904943734407,-5.421010862427522e-20,1.5867730770867499e-34,-0.0019047618843615055,2.1481525596353814e-34,5.83801175392304e-21,-0.0,0.0019047618843615055,1.1120022426891199e-20,-1.061173966579344e-34,-3.742418150470551e-35,2.6778745673456153e-35,-0.0,5.421010862427522e-20,0.0026455025654286146,-5.314576292239405e-18,-0.005291005130857229,-2.168404344971009e-19,2.3962522463627634e-20,2.6433882031063616e-18,-0.0,-0.0,1.1120022426891199e-20,0.0013227512827143073,1.0842021724855044e-19,0.0,1.552011436204405e-33,4.5150006200974054e-35,7.474637467370006e-21,0.0055555556900799274,-3.8091638256745485e-18,-0.0027777778450399637,-0.0055555556900799274,-5.421010862427522e-20,1.850371804212999e-18,5.421010862427522e-20,-0.0,-1.061173966579344e-34,1.0842021724855044e-19,0.0027777778450399637,2.710505431213761e-20,1.071480549518785e-33,0.0,3.5418319207200433e-35,0.0031746032182127237,-2.168920712468395e-18,-0.0015873016091063619,-5.421010862427522e-20,-0.0012698412174358964,1.05735530192206e-18,2.710505431213761e-20,-0.0,-3.742418150470551e-35,0.0,2.710505431213761e-20,0.0006349206087179482,4.007044428537207e-34,-0.0,2.710505431213761e-20,0.0055555556900799274,-1.8503717628539684e-17,-8.355344785351709e-33,-0.03333333507180214,-9.086646857705238e-18,9.251858814269842e-18,4.4434073892081884e-35,-0.0,2.6778745673456153e-35,1.552011436204405e-33,1.071480549518785e-33,4.007044428537207e-34,0.01666666753590107,7.703719777548943e-34,1.817329454259109e-18,0.004761904943734407,-3.1720658023686032e-18,0.0,-0.004761904943734407,-0.0019047618843615055,1.5860329011843016e-18,-1.0836001947411254e-34,-0.0,-0.0,4.5150006200974054e-35,0.0,-0.0,7.703719777548943e-34,0.0019047618843615055,1.359729844453716e-35,0.0019841270986944437,-3.766490818643857e-18,-9.843064133408309e-20,-3.634658908518218e-18,-0.0029761905316263437,1.817329454259109e-18,-1.8466692064663053e-21,-0.0,5.421010862427522e-20,7.474637467370006e-21,3.5418319207200433e-35,2.710505431213761e-20,1.817329454259109e-18,1.359729844453716e-35,0.0005952381179668009,3.0,5.0,3.0,7.0,0.10241874307394028,-0.0416666679084301,-0.028911564499139786,-0.0416666679084301,-0.02222222276031971,0.004761904943734407,0.004761904943734407,0.0071428571827709675,0.0035714285913854837,0.0022675737272948027,0.004761904943734407,0.0023809524718672037,0.004761904943734407,0.0035714285913854837,0.0013227512827143073,-0.0416666679084301,0.0892857164144516,0.004761904943734407,0.0071428571827709675,0.0035714285913854837,-0.02857142873108387,-0.004761904943734407,-0.0071428571827709675,-0.0035714285913854837,-4.5315224566436314e-18,-3.1720658023686032e-18,-1.5860329011843016e-18,-1.5860329632228476e-17,-2.3874612099194456e-18,-2.289642346196528e-18,-0.028911564499139786,0.004761904943734407,0.02806122414767742,0.004761904943734407,0.0023809524718672037,-1.3028127734934688e-17,-0.0023809524718672037,-0.0,-0.0,-0.004535147454589605,-0.0023809524718672037,-0.0011904762359336019,-7.395267121157298e-33,4.0657581468206416e-20,-8.685463271996947e-34,-0.0416666679084301,0.0071428571827709675,0.004761904943734407,0.0892857164144516,0.0035714285913854837,-2.2600968195641445e-17,-0.0,-0.0071428571827709675,-8.411913072955714e-21,-3.584588105569993e-33,-0.004761904943734407,4.0657581468206416e-20,-0.02857142873108387,-0.0035714285913854837,-2.2208370492540608e-18,-0.02222222276031971,0.0035714285913854837,0.0023809524718672037,0.0035714285913854837,0.014285714365541935,-9.648367013716523e-18,-0.0,-0.0,-0.0011904762359336019,-1.530262678497781e-33,-1.0711839208661948e-33,-0.0007936508045531809,-6.872809203999448e-18,-0.0011904762359336019,-0.0015873016091063619,0.004761904943734407,-0.02857142873108387,-1.3028127734934688e-17,-2.2600968195641445e-17,-9.648367013716523e-18,0.014285714365541935,-0.0,-0.0,9.339099574740787e-37,2.2657612283218157e-18,1.5860329011843016e-18,7.930164505921508e-19,7.930164816114238e-18,1.1895247017376204e-18,1.1454682351324336e-18,0.004761904943734407,-0.004761904943734407,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0071428571827709675,-0.0071428571827709675,-0.0,-0.0071428571827709675,-0.0,-0.0,-0.0,0.0071428571827709675,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0035714285913854837,-0.0,-8.411913072955714e-21,-0.0011904762359336019,9.339099574740787e-37,-0.0,-0.0,0.0011904762359336019,0.0,0.0,-0.0,1.2678535388971197e-34,2.803971226266963e-21,-4.313801925400788e-22,0.0022675737272948027,-4.5315224566436314e-18,-0.004535147454589605,-3.584588105569993e-33,-1.530262678497781e-33,2.2657612283218157e-18,-0.0,-0.0,0.0,0.0011337868636474013,2.515500283985856e-34,1.257750141992928e-34,1.2577502108695502e-33,1.8866252703865772e-34,1.8167502816304762e-34,0.004761904943734407,-3.1720658023686032e-18,-0.0023809524718672037,-0.004761904943734407,-1.0711839208661948e-33,1.5860329011843016e-18,-0.0,-0.0,0.0,2.515500283985856e-34,0.0023809524718672037,8.804251223539237e-35,8.804251567922347e-34,1.320637712229478e-34,1.2717252086207704e-34,0.0023809524718672037,-1.5860329011843016e-18,-0.0011904762359336019,4.0657581468206416e-20,-0.0007936508045531809,7.930164505921508e-19,-0.0,-0.0,-0.0,1.257750141992928e-34,8.804251223539237e-35,0.00039682540227659047,4.946138141036997e-34,-1.3552527156068805e-20,4.891250719603177e-36,0.004761904943734407,-1.5860329632228476e-17,-7.395267121157298e-33,-0.02857142873108387,-6.872809203999448e-18,7.930164816114238e-18,-0.0,-0.0,1.2678535388971197e-34,1.2577502108695502e-33,8.804251567922347e-34,4.946138141036997e-34,0.014285714365541935,5.7777898331617076e-34,1.1454682351324336e-18,0.0035714285913854837,-2.3874612099194456e-18,4.0657581468206416e-20,-0.0035714285913854837,-0.0011904762359336019,1.1895247017376204e-18,-0.0,-0.0,2.803971226266963e-21,1.8866252703865772e-34,1.320637712229478e-34,-1.3552527156068805e-20,5.7777898331617076e-34,0.0011904762359336019,-2.3366425741183805e-20,0.0013227512827143073,-2.289642346196528e-18,-8.685463271996947e-34,-2.2208370492540608e-18,-0.0015873016091063619,1.1454682351324336e-18,-0.0,-0.0,-4.313801925400788e-22,1.8167502816304762e-34,1.2717252086207704e-34,4.891250719603177e-36,1.1454682351324336e-18,-2.3366425741183805e-20,0.00026455026818439364,3.0,5.0,3.0,8.0,0.09169973433017731,-0.03680555522441864,-0.025529099628329277,-0.03680555522441864,-0.017592592164874077,0.004166666883975267,0.004166666883975267,0.0062500000931322575,0.0027777778450399637,0.0019841270986944437,0.004166666883975267,0.0018518518190830946,0.004166666883975267,0.0027777778450399637,0.0009259259095415473,-0.03680555522441864,0.07847221940755844,0.004166666883975267,0.0062500000931322575,0.0027777778450399637,-0.02500000037252903,-0.004166666883975267,-0.0062500000931322575,-0.0027777778450399637,7.37257477290143e-18,8.673617379884035e-19,4.9873299934333204e-18,2.42861286636753e-17,5.637851296924623e-18,7.589415207398531e-18,-0.025529099628329277,0.004166666883975267,0.024669311940670013,0.004166666883975267,0.0018518518190830946,9.675165184021404e-18,-0.0020833334419876337,5.637851296924623e-18,3.7947076036992655e-19,-0.003968254197388887,-0.0020833334419876337,-0.0009259259095415473,2.6020852139652106e-18,3.3610267347050637e-18,6.288372600415926e-18,-0.03680555522441864,0.0062500000931322575,0.004166666883975267,0.07847221940755844,0.0027777778450399637,2.2645420881760044e-17,5.770621643455203e-18,-0.0062500000931322575,-1.111307226797642e-18,6.784012192422493e-18,-0.004166666883975267,2.981555974335137e-19,-0.02500000037252903,-0.0027777778450399637,8.185726402265558e-18,-0.017592592164874077,0.0027777778450399637,0.0018518518190830946,0.0027777778450399637,0.009656084701418877,1.3010426069826053e-17,9.643125170174775e-18,1.103393176287041e-17,-0.0007936508045531809,9.795603508389737e-18,6.759454854397019e-18,-0.0005291005363687873,1.4532086017982677e-17,-0.0007936508045531809,-0.0009259259095415473,0.004166666883975267,-0.02500000037252903,9.675165184021404e-18,2.2645420881760044e-17,1.3010426069826053e-17,0.012500000186264515,-8.02769271905669e-19,-3.382063385248359e-19,4.25087330969419e-18,-1.0438016373926489e-18,-2.234080417656188e-19,-1.2020058232052799e-18,-8.081413136758334e-18,-1.5982380545200981e-18,-1.6263032587282567e-18,0.004166666883975267,-0.004166666883975267,-0.0020833334419876337,5.770621643455203e-18,9.643125170174775e-18,-8.02769271905669e-19,0.0020833334419876337,-7.589415207398531e-19,-4.192868923600134e-19,-1.6526540277193225e-18,-7.023988661857549e-19,-9.55228481568966e-19,-6.53819531087493e-19,-5.989920355335235e-19,-8.673617379884035e-19,0.0062500000931322575,-0.0062500000931322575,5.637851296924623e-18,-0.0062500000931322575,1.103393176287041e-17,-3.382063385248359e-19,-7.589415207398531e-19,0.0062500000931322575,-4.1814869183714043e-19,-8.413574025776326e-19,-2.1812486504263674e-19,-3.607580737575988e-19,-4.520330289365483e-18,-1.0866290170051584e-18,-1.1926223897340549e-18,0.0027777778450399637,-0.0027777778450399637,3.7947076036992655e-19,-1.111307226797642e-18,-0.0007936508045531809,4.25087330969419e-18,-4.192868923600134e-19,-4.1814869183714043e-19,0.0007936508045531809,-5.421010862427522e-20,2.097570284178679e-19,2.899333962953425e-20,3.895551518621078e-19,5.362071658843705e-20,-2.981555974335137e-19,0.0019841270986944437,7.37257477290143e-18,-0.003968254197388887,6.784012192422493e-18,9.795603508389737e-18,-1.0438016373926489e-18,-1.6526540277193225e-18,-8.413574025776326e-19,-5.421010862427522e-20,0.0009920635493472219,-3.536827326893382e-19,-1.2865301367256687e-18,-1.338782308840031e-18,-6.056349162377837e-19,-8.402566836762659e-19,0.004166666883975267,8.673617379884035e-19,-0.0020833334419876337,-0.004166666883975267,6.759454854397019e-18,-2.234080417656188e-19,-7.023988661857549e-19,-2.1812486504263674e-19,2.097570284178679e-19,-3.536827326893382e-19,0.0020833334419876337,-2.168404344971009e-19,5.861416296211474e-19,-3.051737596419316e-19,-9.215718466126788e-19,0.0018518518190830946,4.9873299934333204e-18,-0.0009259259095415473,2.981555974335137e-19,-0.0005291005363687873,-1.2020058232052799e-18,-9.55228481568966e-19,-3.607580737575988e-19,2.899333962953425e-20,-1.2865301367256687e-18,-2.168404344971009e-19,0.00026455026818439364,2.292640410627938e-19,8.927502665136972e-21,-2.439454888092385e-19,0.004166666883975267,2.42861286636753e-17,2.6020852139652106e-18,-0.02500000037252903,1.4532086017982677e-17,-8.081413136758334e-18,-6.53819531087493e-19,-4.520330289365483e-18,3.895551518621078e-19,-1.338782308840031e-18,5.861416296211474e-19,2.292640410627938e-19,0.012500000186264515,-1.1655173354219173e-18,-1.951563910473908e-18,0.0027777778450399637,5.637851296924623e-18,3.3610267347050637e-18,-0.0027777778450399637,-0.0007936508045531809,-1.5982380545200981e-18,-5.989920355335235e-19,-1.0866290170051584e-18,5.362071658843705e-20,-6.056349162377837e-19,-3.051737596419316e-19,8.927502665136972e-21,-1.1655173354219173e-18,0.0007936508045531809,-2.981555974335137e-19,0.0009259259095415473,7.589415207398531e-18,6.288372600415926e-18,8.185726402265558e-18,-0.0009259259095415473,-1.6263032587282567e-18,-8.673617379884035e-19,-1.1926223897340549e-18,-2.981555974335137e-19,-8.402566836762659e-19,-9.215718466126788e-19,-2.439454888092385e-19,-1.951563910473908e-18,-2.981555974335137e-19,0.00013227513409219682,3.0,5.0,4.0,3.0,0.1582142859697342,-0.06916666775941849,-0.04809523746371269,-0.05666666850447655,-0.06916666775941849,0.008333333767950535,0.008333333767950535,0.009999999776482582,0.012500000186264515,0.003968254197388887,0.006666666828095913,0.008333333767950535,0.0055555556900799274,0.009999999776482582,0.008333333767950535,-0.06916666775941849,0.1525000035762787,0.008333333767950535,0.009999999776482582,0.012500000186264515,-0.05000000074505806,-0.008333333767950535,-0.009999999776482582,-0.012500000186264515,-7.496483947120036e-18,-4.440891999238953e-18,-5.551115205843844e-18,-1.2952602009105534e-17,-6.661337998858429e-18,-2.7755575615628914e-17,-0.04809523746371269,0.008333333767950535,0.047857142984867096,0.006666666828095913,0.008333333767950535,-2.1966555407399e-17,-0.004166666883975267,-0.0,-0.0,-0.007936508394777775,-0.0033333334140479565,-0.004166666883975267,-5.690481092280336e-33,-2.9265331436682295e-33,-1.2193887792499303e-32,-0.05666666850447655,0.009999999776482582,0.006666666828095913,0.07666666805744171,0.009999999776482582,-2.7200464632711927e-17,-0.0,-0.006666666828095913,-0.0,-0.0,-0.004444444552063942,3.2895496960828386e-19,-0.01666666753590107,-0.006666666828095913,-1.5099291057869517e-32,-0.06916666775941849,0.012500000186264515,0.008333333767950535,0.009999999776482582,0.1525000035762787,-3.8302694217219e-17,-0.0,-0.0,-0.012500000186264515,-1.134327508148628e-19,3.2895496960828386e-19,-0.008333333767950535,-9.922391161645115e-33,-0.009999999776482582,-0.05000000074505806,0.008333333767950535,-0.05000000074505806,-2.1966555407399e-17,-2.7200464632711927e-17,-3.8302694217219e-17,0.02500000037252903,-3.851859888774472e-34,-0.0,-0.0,3.965082408057119e-18,2.2204459996194763e-18,2.775557602921922e-18,6.476301004552767e-18,3.3306689994292145e-18,1.3877787807814457e-17,0.008333333767950535,-0.008333333767950535,-0.004166666883975267,-0.0,-0.0,-3.851859888774472e-34,0.004166666883975267,-0.0,-0.0,-2.168404344971009e-19,-0.0,-0.0,0.0,-0.0,0.0,0.009999999776482582,-0.009999999776482582,-0.0,-0.006666666828095913,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.012500000186264515,-0.0,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003968254197388887,-7.496483947120036e-18,-0.007936508394777775,-0.0,-1.134327508148628e-19,3.965082408057119e-18,-2.168404344971009e-19,-0.0,-0.0,0.0019841270986944437,-0.0,1.0842021724855044e-19,1.0271626676183578e-33,5.282550848917912e-34,2.2010628460628388e-33,0.006666666828095913,-4.440891999238953e-18,-0.0033333334140479565,-0.004444444552063942,3.2895496960828386e-19,2.2204459996194763e-18,-0.0,-0.0,-0.0,-0.0,0.002222222276031971,-1.6447748480414193e-19,5.75211079172601e-34,2.958228420292733e-34,1.2325951827749302e-33,0.008333333767950535,-5.551115205843844e-18,-0.004166666883975267,3.2895496960828386e-19,-0.008333333767950535,2.775557602921922e-18,-0.0,-0.0,-0.0,1.0842021724855044e-19,-1.6447748480414193e-19,0.004166666883975267,7.1901384896575126e-34,3.6977854105715463e-34,1.5407439555097887e-33,0.0055555556900799274,-1.2952602009105534e-17,-5.690481092280336e-33,-0.01666666753590107,-9.922391161645115e-33,6.476301004552767e-18,0.0,-0.0,-0.0,1.0271626676183578e-33,5.75211079172601e-34,7.1901384896575126e-34,0.0055555556900799274,8.628166187589015e-34,3.595069107075512e-33,0.009999999776482582,-6.661337998858429e-18,-2.9265331436682295e-33,-0.006666666828095913,-0.009999999776482582,3.3306689994292145e-18,-0.0,-0.0,-0.0,5.282550848917912e-34,2.958228420292733e-34,3.6977854105715463e-34,8.628166187589015e-34,0.006666666828095913,1.8488928200801433e-33,0.008333333767950535,-2.7755575615628914e-17,-1.2193887792499303e-32,-1.5099291057869517e-32,-0.05000000074505806,1.3877787807814457e-17,0.0,-0.0,-0.0,2.2010628460628388e-33,1.2325951827749302e-33,1.5407439555097887e-33,3.595069107075512e-33,1.8488928200801433e-33,0.02500000037252903,3.0,5.0,4.0,4.0,0.12861904501914978,-0.05375000089406967,-0.03732142969965935,-0.04399999976158142,-0.04399999976158142,0.0062500000931322575,0.0062500000931322575,0.007499999832361937,0.007499999832361937,0.0029761905316263437,0.004999999888241291,0.004999999888241291,0.004166666883975267,0.006000000052154064,0.004166666883975267,-0.05375000089406967,0.11625000089406967,0.0062500000931322575,0.007499999832361937,0.007499999832361937,-0.03750000149011612,-0.0062500000931322575,-0.007499999832361937,-0.007499999832361937,-5.5139425362963234e-18,-3.222248782180664e-18,-3.222248782180664e-18,-9.714451300033997e-18,-3.996802716596996e-18,-9.714451300033997e-18,-0.03732142969965935,0.0062500000931322575,0.03651785850524902,0.004999999888241291,0.004999999888241291,-1.689124979273699e-17,-0.0031250000465661287,-0.0,-0.0,-0.0059523810632526875,-0.0024999999441206455,-0.0024999999441206455,-4.3757127014046854e-33,-1.800293291842342e-33,-4.3757127014046854e-33,-0.04399999976158142,0.007499999832361937,0.004999999888241291,0.05849999934434891,0.006000000052154064,-2.0899949020903723e-17,1.0842021724855044e-19,-0.004999999888241291,-0.0,-0.0,-0.0033333334140479565,3.7500866380247996e-19,-0.012500000186264515,-0.004000000189989805,-5.4141741656218494e-33,-0.04399999976158142,0.007499999832361937,0.004999999888241291,0.006000000052154064,0.05849999934434891,-2.0899949020903723e-17,1.0842021724855044e-19,-0.0,-0.004999999888241291,6.260291576378552e-20,3.7500866380247996e-19,-0.0033333334140479565,-5.4141741656218494e-33,-0.004000000189989805,-0.012500000186264515,0.0062500000931322575,-0.03750000149011612,-1.689124979273699e-17,-2.0899949020903723e-17,-2.0899949020903723e-17,0.01875000074505806,-7.703719777548943e-34,-0.0,-0.0,2.9738117026452626e-18,1.6653344997146072e-18,1.6653344997146072e-18,4.8572256500169986e-18,1.998401358298498e-18,4.8572256500169986e-18,0.0062500000931322575,-0.0062500000931322575,-0.0031250000465661287,1.0842021724855044e-19,1.0842021724855044e-19,-7.703719777548943e-34,0.0031250000465661287,-0.0,-0.0,-2.168404344971009e-19,-5.421010862427522e-20,-5.421010862427522e-20,-0.0,-0.0,-0.0,0.007499999832361937,-0.007499999832361937,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.007499999832361937,-0.0,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0029761905316263437,-5.5139425362963234e-18,-0.0059523810632526875,-0.0,6.260291576378552e-20,2.9738117026452626e-18,-2.168404344971009e-19,-0.0,-0.0,0.0014880952658131719,-0.0,0.0,7.703719777548943e-34,3.1695304175152512e-34,7.703719777548943e-34,0.004999999888241291,-3.222248782180664e-18,-0.0024999999441206455,-0.0033333334140479565,3.7500866380247996e-19,1.6653344997146072e-18,-5.421010862427522e-20,-0.0,-0.0,-0.0,0.0016666667070239782,-1.8750433190123998e-19,4.3140830937945075e-34,1.7749370062578918e-34,4.3140830937945075e-34,0.004999999888241291,-3.222248782180664e-18,-0.0024999999441206455,3.7500866380247996e-19,-0.0033333334140479565,1.6653344997146072e-18,-5.421010862427522e-20,-0.0,-0.0,0.0,-1.8750433190123998e-19,0.0016666667070239782,4.3140830937945075e-34,1.7749370062578918e-34,4.3140830937945075e-34,0.004166666883975267,-9.714451300033997e-18,-4.3757127014046854e-33,-0.012500000186264515,-5.4141741656218494e-33,4.8572256500169986e-18,-0.0,-0.0,-0.0,7.703719777548943e-34,4.3140830937945075e-34,4.3140830937945075e-34,0.004166666883975267,5.176899620717913e-34,1.2582742242106277e-33,0.006000000052154064,-3.996802716596996e-18,-1.800293291842342e-33,-0.004000000189989805,-0.004000000189989805,1.998401358298498e-18,-0.0,-0.0,-0.0,3.1695304175152512e-34,1.7749370062578918e-34,1.7749370062578918e-34,5.176899620717913e-34,0.0026666666381061077,5.176899620717913e-34,0.004166666883975267,-9.714451300033997e-18,-4.3757127014046854e-33,-5.4141741656218494e-33,-0.012500000186264515,4.8572256500169986e-18,-0.0,-0.0,-0.0,7.703719777548943e-34,4.3140830937945075e-34,4.3140830937945075e-34,1.2582742242106277e-33,5.176899620717913e-34,0.004166666883975267,3.0,5.0,4.0,5.0,0.10852380841970444,-0.04399999976158142,-0.030523808673024178,-0.035999998450279236,-0.030523808673024178,0.004999999888241291,0.004999999888241291,0.006000000052154064,0.004999999888241291,0.0023809524718672037,0.004000000189989805,0.0033333334140479565,0.0033333334140479565,0.004000000189989805,0.0023809524718672037,-0.04399999976158142,0.09399999678134918,0.004999999888241291,0.006000000052154064,0.004999999888241291,-0.029999999329447746,-0.004999999888241291,-0.006000000052154064,-0.004999999888241291,-4.7803387984898884e-18,-2.718745390885708e-18,-2.166235890995201e-18,-7.77156120546332e-18,-2.3859786954665974e-18,-4.884486214284296e-18,-0.030523808673024178,0.004999999888241291,0.029547618702054024,0.004000000189989805,0.0033333334140479565,-1.3735044558228631e-17,-0.0024999999441206455,-0.0,-5.421010862427522e-20,-0.004761904943734407,-0.0020000000949949026,-0.0016666667070239782,-2.8865837844845418e-33,2.168404344971009e-19,1.2462093890190076e-20,-0.035999998450279236,0.006000000052154064,0.004000000189989805,0.047333333641290665,0.004000000189989805,-1.698641195912754e-17,-5.421010862427522e-20,-0.004000000189989805,2.785565609454413e-19,-1.0842021724855044e-19,-0.0026666666381061077,-4.217305632196669e-21,-0.009999999776482582,-0.0026666666381061077,-8.920988223609856e-18,-0.030523808673024178,0.004999999888241291,0.0033333334140479565,0.004000000189989805,0.029547618702054024,-1.3735044558228631e-17,-1.7602994740019434e-20,-0.0,-0.0024999999441206455,-2.8146746121980367e-20,-2.2105773730202007e-19,-0.0016666667070239782,-1.571991241452515e-17,-0.0020000000949949026,-0.004761904943734407,0.004999999888241291,-0.029999999329447746,-1.3735044558228631e-17,-1.698641195912754e-17,-1.3735044558228631e-17,0.014999999664723873,-0.0,-0.0,-2.0967477267567235e-35,2.3790494034752407e-18,1.3322676411307164e-18,1.1102229998097382e-18,3.88578060273166e-18,1.3322676411307164e-18,2.3790494034752407e-18,0.004999999888241291,-0.004999999888241291,-0.0024999999441206455,-5.421010862427522e-20,-1.7602994740019434e-20,-0.0,0.0024999999441206455,-0.0,5.83801175392304e-21,-0.0,2.710505431213761e-20,-2.710505431213761e-20,-0.0,-2.3648198089575415e-36,1.516668772652221e-20,0.006000000052154064,-0.006000000052154064,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,0.004000000189989805,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.004999999888241291,-5.421010862427522e-20,2.785565609454413e-19,-0.0024999999441206455,-2.0967477267567235e-35,5.83801175392304e-21,-0.0,0.0024999999441206455,1.1120022426891199e-20,-4.856277897257698e-36,-4.667816033648005e-35,-2.7851910600768846e-34,-1.3927828047272064e-19,4.802699170657816e-20,0.0023809524718672037,-4.7803387984898884e-18,-0.004761904943734407,-1.0842021724855044e-19,-2.8146746121980367e-20,2.3790494034752407e-18,-0.0,-0.0,1.1120022426891199e-20,0.0011904762359336019,-0.0,0.0,6.162975913874651e-34,2.1064858766735392e-34,-6.351444133383768e-21,0.004000000189989805,-2.718745390885708e-18,-0.0020000000949949026,-0.0026666666381061077,-2.2105773730202007e-19,1.3322676411307164e-18,2.710505431213761e-20,-0.0,-4.856277897257698e-36,-0.0,0.0013333333190530539,1.1052886865101004e-19,3.451266566871102e-34,1.039488621282817e-34,2.0469216034542065e-34,0.0033333334140479565,-2.166235890995201e-18,-0.0016666667070239782,-4.217305632196669e-21,-0.0016666667070239782,1.1102229998097382e-18,-2.710505431213761e-20,-0.0,-4.667816033648005e-35,0.0,1.1052886865101004e-19,0.0008333333535119891,-4.81482486096809e-35,-1.0842021724855044e-19,2.489837084173246e-35,0.0033333334140479565,-7.77156120546332e-18,-2.8865837844845418e-33,-0.009999999776482582,-1.571991241452515e-17,3.88578060273166e-18,-0.0,-0.0,-2.7851910600768846e-34,6.162975913874651e-34,3.451266566871102e-34,-4.81482486096809e-35,0.0033333334140479565,2.0210994011021063e-18,3.1720658023686032e-18,0.004000000189989805,-2.3859786954665974e-18,2.168404344971009e-19,-0.0026666666381061077,-0.0020000000949949026,1.3322676411307164e-18,-2.3648198089575415e-36,-0.0,-1.3927828047272064e-19,2.1064858766735392e-34,1.039488621282817e-34,-1.0842021724855044e-19,2.0210994011021063e-18,0.0013333333190530539,-2.976043849528237e-19,0.0023809524718672037,-4.884486214284296e-18,1.2462093890190076e-20,-8.920988223609856e-18,-0.004761904943734407,2.3790494034752407e-18,1.516668772652221e-20,-0.0,4.802699170657816e-20,-6.351444133383768e-21,2.0469216034542065e-34,2.489837084173246e-35,3.1720658023686032e-18,-2.976043849528237e-19,0.0011904762359336019,3.0,5.0,4.0,6.0,0.09392856806516647,-0.037261903285980225,-0.025833332911133766,-0.030476190149784088,-0.022440476343035698,0.004166666883975267,0.004166666883975267,0.004999999888241291,0.0035714285913854837,0.0019841270986944437,0.0033333334140479565,0.0023809524718672037,0.0027777778450399637,0.0028571428265422583,0.0014880952658131719,-0.037261903285980225,0.07892857491970062,0.004166666883975267,0.004999999888241291,0.0035714285913854837,-0.02500000037252903,-0.004166666883975267,-0.004999999888241291,-0.0035714285913854837,-3.737816602709706e-18,-2.2204459996194763e-18,-1.5521515832941296e-18,-6.476301004552767e-18,-2.4344688501550685e-18,-2.7192394245065554e-18,-0.025833332911133766,0.004166666883975267,0.024821428582072258,0.0033333334140479565,0.0023809524718672037,-1.1578040416459828e-17,-0.0020833334419876337,-0.0,5.421010862427522e-20,-0.003968254197388887,-0.0016666667070239782,-0.0011904762359336019,-2.9993149784253454e-33,-3.7269449679189215e-19,9.843064133408309e-20,-0.030476190149784088,0.004999999888241291,0.0033333334140479565,0.03976190462708473,0.0028571428265422583,-1.4313946909923867e-17,4.5535809272728216e-36,-0.0033333334140479565,-5.312292963556029e-19,-0.0,-0.002222222276031971,-2.6742891375507167e-19,-0.008333333767950535,-0.0019047618843615055,-9.167157794291097e-19,-0.022440476343035698,0.0035714285913854837,0.0023809524718672037,0.0028571428265422583,0.01716071367263794,-9.828447541791768e-18,2.3701532440082948e-20,-0.0,-0.0014285714132711291,-4.1747107581909465e-20,1.0526558949916901e-19,-0.0009523809421807528,-2.5460794379078036e-33,-0.0011428571306169033,-0.0022321429569274187,0.004166666883975267,-0.02500000037252903,-1.1578040416459828e-17,-1.4313946909923867e-17,-9.828447541791768e-18,0.012500000186264515,-1.925929944387236e-34,-0.0,1.6671974388752597e-34,1.9825412040285595e-18,1.1102229998097382e-18,7.930164505921508e-19,3.2381505022763835e-18,9.516196993515503e-19,1.3629969872967551e-18,0.004166666883975267,-0.004166666883975267,-0.0020833334419876337,4.5535809272728216e-36,2.3701532440082948e-20,-1.925929944387236e-34,0.0020833334419876337,-0.0,-2.189254458208238e-21,-1.0842021724855044e-19,-0.0,-0.0,-0.0,-1.8214324067823693e-36,-3.964179075129423e-21,0.004999999888241291,-0.004999999888241291,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0035714285913854837,5.421010862427522e-20,-5.312292963556029e-19,-0.0014285714132711291,1.6671974388752597e-34,-2.189254458208238e-21,-0.0,0.0014285714132711291,-4.170008511058395e-21,1.329694937815523e-36,-1.3552527156068805e-20,0.0,2.1249171337236234e-19,4.6947356621205585e-22,0.0019841270986944437,-3.737816602709706e-18,-0.003968254197388887,-0.0,-4.1747107581909465e-20,1.9825412040285595e-18,-1.0842021724855044e-19,-0.0,-4.170008511058395e-21,0.0009920635493472219,-0.0,5.421010862427522e-20,5.135813338091789e-34,1.5648180798146291e-34,-7.57409462691957e-21,0.0033333334140479565,-2.2204459996194763e-18,-0.0016666667070239782,-0.002222222276031971,1.0526558949916901e-19,1.1102229998097382e-18,-0.0,-0.0,1.329694937815523e-36,-0.0,0.0011111111380159855,-5.2632794749584506e-20,2.876055395863005e-34,6.804341014128897e-35,1.2362516819310827e-34,0.0023809524718672037,-1.5521515832941296e-18,-0.0011904762359336019,-2.6742891375507167e-19,-0.0009523809421807528,7.930164505921508e-19,-0.0,-0.0,-1.3552527156068805e-20,5.421010862427522e-20,-5.2632794749584506e-20,0.0004761904710903764,2.0543253811544638e-34,1.4907779871675686e-19,-2.4607660333520773e-20,0.0027777778450399637,-6.476301004552767e-18,-2.9993149784253454e-33,-0.008333333767950535,-2.5460794379078036e-33,3.2381505022763835e-18,-0.0,-0.0,0.0,5.135813338091789e-34,2.876055395863005e-34,2.0543253811544638e-34,0.0027777778450399637,2.465190273714364e-34,3.5308716412395125e-34,0.0028571428265422583,-2.4344688501550685e-18,-3.7269449679189215e-19,-0.0019047618843615055,-0.0011428571306169033,9.516196993515503e-19,-1.8214324067823693e-36,-0.0,2.1249171337236234e-19,1.5648180798146291e-34,6.804341014128897e-35,1.4907779871675686e-19,2.465190273714364e-34,0.0007619047537446022,3.6668629626200737e-19,0.0014880952658131719,-2.7192394245065554e-18,9.843064133408309e-20,-9.167157794291097e-19,-0.0022321429569274187,1.3629969872967551e-18,-3.964179075129423e-21,-0.0,4.6947356621205585e-22,-7.57409462691957e-21,1.2362516819310827e-34,-2.4607660333520773e-20,3.5308716412395125e-34,3.6668629626200737e-19,0.00044642857392318547,3.0,5.0,4.0,7.0,0.08282596617937088,-0.03232142701745033,-0.022397959604859352,-0.026428570970892906,-0.017202381044626236,0.0035714285913854837,0.0035714285913854837,0.004285714123398066,0.0026785715017467737,0.001700680237263441,0.0028571428265422583,0.0017857142956927419,0.0023809524718672037,0.002142857061699033,0.0009920635493472219,-0.03232142701745033,0.06803571432828903,0.0035714285913854837,0.004285714123398066,0.0026785715017467737,-0.02142857201397419,-0.0035714285913854837,-0.004285714123398066,-0.0026785715017467737,-3.3986419458803e-18,5.709718402904455e-18,3.568574208610438e-18,2.2997477222268738e-17,9.777503142225852e-18,7.766180395578663e-18,-0.022397959604859352,0.0035714285913854837,0.021403061226010323,0.0028571428265422583,0.0017857142956927419,6.967216154490738e-19,-0.0017857142956927419,9.516196993515503e-19,5.947623508688102e-19,-0.003401360474526882,-0.0014285714132711291,-0.0008928571478463709,5.400064167775842e-18,3.528231782955614e-18,2.0517727057816445e-18,-0.026428570970892906,0.004285714123398066,0.0028571428265422583,0.034285712987184525,0.002142857061699033,5.1863274803731624e-17,1.284686682012533e-17,-0.0028571428265422583,-8.082387581369315e-20,5.5507553822773834e-18,-0.0019047618843615055,-3.40681521411536e-19,-0.0071428571827709675,-0.0014285714132711291,3.173322806706954e-19,-0.017202381044626236,0.0026785715017467737,0.0017857142956927419,0.002142857061699033,0.010892856866121292,3.2434373858024855e-17,7.969814891596355e-18,1.3367990916226468e-19,-0.0008928571478463709,3.686357696802782e-18,-1.9837998627281355e-19,-0.0005952381179668009,-8.919546447802176e-19,-0.0007142857066355646,-0.0011904762359336019,0.0035714285913854837,-0.02142857201397419,6.967216154490738e-19,5.1863274803731624e-17,3.2434373858024855e-17,0.010714286006987095,3.88795726317311e-32,-4.7580988069504814e-18,-2.9738117026452626e-18,1.69932097294015e-18,-2.2204459996194763e-18,-1.387778801460961e-18,-9.119689414454282e-18,-4.0443837997922714e-18,-3.105981102460823e-18,0.0035714285913854837,-0.0035714285913854837,-0.0017857142956927419,1.284686682012533e-17,7.969814891596355e-18,3.88795726317311e-32,0.0017857142956927419,-9.516196993515503e-19,-5.947623508688102e-19,4.304380398118927e-33,-6.34413150133963e-19,-3.965082252960754e-19,-2.3790494034752407e-18,-9.516196993515503e-19,-7.930164505921508e-19,0.004285714123398066,-0.004285714123398066,9.516196993515503e-19,-0.0028571428265422583,1.3367990916226468e-19,-4.7580988069504814e-18,-9.516196993515503e-19,0.0028571428265422583,-1.3367990916226468e-19,-7.546501081546309e-34,1.3241593968772707e-33,7.949987680756136e-34,5.3177678331490826e-33,2.2533657325187072e-33,1.7338130251605953e-33,0.0026785715017467737,-0.0026785715017467737,5.947623508688102e-19,-8.082387581369315e-20,-0.0008928571478463709,-2.9738117026452626e-18,-5.947623508688102e-19,-1.3367990916226468e-19,0.0008928571478463709,-5.296307347064899e-34,8.250062919517257e-34,-3.168126023190255e-35,3.389741835397537e-33,7.150126596688497e-20,1.0604762414485254e-20,0.001700680237263441,-3.3986419458803e-18,-0.003401360474526882,5.5507553822773834e-18,3.686357696802782e-18,1.69932097294015e-18,4.304380398118927e-33,-7.546501081546309e-34,-5.296307347064899e-34,0.0008503401186317205,-1.697522733987248e-19,-1.0609516764302874e-19,-7.552537427739386e-19,-6.797283788363024e-19,-3.146890767220705e-19,0.0028571428265422583,5.709718402904455e-18,-0.0014285714132711291,-0.0019047618843615055,-1.9837998627281355e-19,-2.2204459996194763e-18,-6.34413150133963e-19,1.3241593968772707e-33,8.250062919517257e-34,-1.697522733987248e-19,0.0009523809421807528,9.918999313640677e-20,2.8859576500717366e-33,1.3016691593746671e-33,9.421889360622994e-34,0.0017857142956927419,3.568574208610438e-18,-0.0008928571478463709,-3.40681521411536e-19,-0.0005952381179668009,-1.387778801460961e-18,-3.965082252960754e-19,7.949987680756136e-34,-3.168126023190255e-35,-1.0609516764302874e-19,9.918999313640677e-20,0.00029761905898340046,1.8416705093202943e-33,4.743384504624082e-20,-1.1538268417010301e-35,0.0023809524718672037,2.2997477222268738e-17,5.400064167775842e-18,-0.0071428571827709675,-8.919546447802176e-19,-9.119689414454282e-18,-2.3790494034752407e-18,5.3177678331490826e-33,3.389741835397537e-33,-7.552537427739386e-19,2.8859576500717366e-33,1.8416705093202943e-33,0.0023809524718672037,5.946364643193373e-19,-4.4056469836361075e-20,0.002142857061699033,9.777503142225852e-18,3.528231782955614e-18,-0.0014285714132711291,-0.0007142857066355646,-4.0443837997922714e-18,-9.516196993515503e-19,2.2533657325187072e-33,7.150126596688497e-20,-6.797283788363024e-19,1.3016691593746671e-33,4.743384504624082e-20,5.946364643193373e-19,0.0004761904710903764,-1.2046292006685976e-19,0.0009920635493472219,7.766180395578663e-18,2.0517727057816445e-18,3.173322806706954e-19,-0.0011904762359336019,-3.105981102460823e-18,-7.930164505921508e-19,1.7338130251605953e-33,1.0604762414485254e-20,-3.146890767220705e-19,9.421889360622994e-34,-1.1538268417010301e-35,-4.4056469836361075e-20,-1.2046292006685976e-19,0.00019841270113829523,3.0,5.0,4.0,8.0,0.07408729940652847,-0.028541667386889458,-0.019771825522184372,-0.023333333432674408,-0.013611110858619213,0.0031250000465661287,0.0031250000465661287,0.0037499999161809683,0.0020833334419876337,0.0014880952658131719,0.0024999999441206455,0.0013888889225199819,0.0020833334419876337,0.0016666667070239782,0.0006944444612599909,-0.028541667386889458,0.05979166552424431,0.0031250000465661287,0.0037499999161809683,0.0020833334419876337,-0.01875000074505806,-0.0031250000465661287,-0.0037499999161809683,-0.0020833334419876337,-9.540979117872439e-18,-2.168404344971009e-18,-2.0599841277224584e-18,2.6454533008646308e-17,-2.168404344971009e-19,-4.336808689942018e-18,-0.019771825522184372,0.0031250000465661287,0.018814483657479286,0.0024999999441206455,0.0013888889225199819,-1.2343080739856035e-17,-0.0015625000232830644,-2.6020852139652106e-18,-2.2497195079074217e-18,-0.0029761905316263437,-0.0012499999720603228,-0.0006944444612599909,1.235990476633475e-17,-1.5720931501039814e-18,-3.482999479109683e-18,-0.023333333432674408,0.0037499999161809683,0.0024999999441206455,0.030138889327645302,0.0016666667070239782,2.3520285147904304e-17,5.665820341386572e-18,-0.0024999999441206455,3.5236570605778894e-18,-1.2122345318649575e-18,-0.0016666667070239782,1.951563910473908e-18,-0.0062500000931322575,-0.0011111111380159855,-3.0357660829594124e-18,-0.013611110858619213,0.0020833334419876337,0.0013888889225199819,0.0016666667070239782,0.007361111231148243,-1.2902005852577503e-17,-4.724683191745177e-18,-3.3884537690706376e-18,-0.0005952381179668009,-5.172735910292181e-18,-3.649603167054907e-18,-0.00039682540227659047,5.34917177719094e-19,-0.0004761904710903764,-0.0006944444612599909,0.0031250000465661287,-0.01875000074505806,-1.2343080739856035e-17,2.3520285147904304e-17,-1.2902005852577503e-17,0.00937500037252903,1.3332656345397617e-18,-5.270042128830469e-18,2.2975257910244645e-18,1.8715236396565925e-18,4.197457191060389e-19,6.454621634673518e-19,-6.4026641456523776e-18,1.71599238459585e-19,1.1926223897340549e-18,0.0031250000465661287,-0.0031250000465661287,-0.0015625000232830644,5.665820341386572e-18,-4.724683191745177e-18,1.3332656345397617e-18,0.0015625000232830644,-1.6263032587282567e-19,3.5100465790801536e-19,1.663193032506284e-18,5.808001625143745e-19,2.993999355687349e-19,-2.2105208662446057e-18,7.862259310732469e-20,5.149960319306146e-19,0.0037499999161809683,-0.0037499999161809683,-2.6020852139652106e-18,-0.0024999999441206455,-3.3884537690706376e-18,-5.270042128830469e-18,-1.6263032587282567e-19,0.0024999999441206455,-1.6353911302268588e-19,6.517581453022226e-19,-8.873661446754153e-20,9.47245943088585e-20,-2.2415899768472505e-18,6.000987902684224e-20,4.607859233063394e-19,0.0020833334419876337,-0.0020833334419876337,-2.2497195079074217e-18,3.5236570605778894e-18,-0.0005952381179668009,2.2975257910244645e-18,3.5100465790801536e-19,-1.6353911302268588e-19,0.0005952381179668009,3.6591823321385775e-19,1.3146072575045269e-19,5.139671549579179e-20,-1.1854158888399163e-18,-9.321667959509128e-21,1.3552527156068805e-19,0.0014880952658131719,-9.540979117872439e-18,-0.0029761905316263437,-1.2122345318649575e-18,-5.172735910292181e-18,1.8715236396565925e-18,1.663193032506284e-18,6.517581453022226e-19,3.6591823321385775e-19,0.0007440476329065859,1.0352078512136823e-18,4.808226158866348e-19,-9.8887105445484e-19,3.65193028461196e-19,4.336808689942018e-19,0.0024999999441206455,-2.168404344971009e-18,-0.0012499999720603228,-0.0016666667070239782,-3.649603167054907e-18,4.197457191060389e-19,5.808001625143745e-19,-8.873661446754153e-20,1.3146072575045269e-19,1.0352078512136823e-18,0.0008333333535119891,3.5236570605778894e-19,-1.3528151177392633e-18,1.5638821417534738e-19,3.2526065174565133e-19,0.0013888889225199819,-2.0599841277224584e-18,-0.0006944444612599909,1.951563910473908e-18,-0.00039682540227659047,6.454621634673518e-19,2.993999355687349e-19,9.47245943088585e-20,5.139671549579179e-20,4.808226158866348e-19,3.5236570605778894e-19,0.00019841270113829523,-8.178576149653074e-19,-4.445806925492984e-20,1.2197274440461925e-19,0.0020833334419876337,2.6454533008646308e-17,1.235990476633475e-17,-0.0062500000931322575,5.34917177719094e-19,-6.4026641456523776e-18,-2.2105208662446057e-18,-2.2415899768472505e-18,-1.1854158888399163e-18,-9.8887105445484e-19,-1.3528151177392633e-18,-8.178576149653074e-19,0.0020833334419876337,-1.3552527156068805e-19,4.336808689942018e-19,0.0016666667070239782,-2.168404344971009e-19,-1.5720931501039814e-18,-0.0011111111380159855,-0.0004761904710903764,1.71599238459585e-19,7.862259310732469e-20,6.000987902684224e-20,-9.321667959509128e-21,3.65193028461196e-19,1.5638821417534738e-19,-4.445806925492984e-20,-1.3552527156068805e-19,0.0003174603043589741,1.3552527156068805e-19,0.0006944444612599909,-4.336808689942018e-18,-3.482999479109683e-18,-3.0357660829594124e-18,-0.0006944444612599909,1.1926223897340549e-18,5.149960319306146e-19,4.607859233063394e-19,1.3552527156068805e-19,4.336808689942018e-19,3.2526065174565133e-19,1.2197274440461925e-19,4.336808689942018e-19,1.3552527156068805e-19,9.920635056914762e-05,3.0,5.0,5.0,3.0,0.13380952179431915,-0.05666666850447655,-0.03936507925391197,-0.03936507925391197,-0.05666666850447655,0.006666666828095913,0.006666666828095913,0.006666666828095913,0.009999999776482582,0.0031746032182127237,0.004444444552063942,0.006666666828095913,0.0031746032182127237,0.006666666828095913,0.006666666828095913,-0.05666666850447655,0.12333333492279053,0.006666666828095913,0.006666666828095913,0.009999999776482582,-0.03999999910593033,-0.006666666828095913,-0.006666666828095913,-0.009999999776482582,-6.1717711533189196e-18,-2.7495924034938824e-18,-4.440891999238953e-18,-6.163620115562822e-18,-4.332471781990402e-18,-2.2204460823375376e-17,-0.03936507925391197,0.006666666828095913,0.038730159401893616,0.004444444552063942,0.006666666828095913,-1.7869303185936014e-17,-0.0033333334140479565,-5.83801175392304e-21,-0.0,-0.0063492064364254475,-0.002222222276031971,-0.0033333334140479565,-1.1120022426891199e-20,5.421010862427522e-20,-9.919456099187906e-33,-0.03936507925391197,0.006666666828095913,0.004444444552063942,0.038730159401893616,0.006666666828095913,-1.7869303185936014e-17,1.7729021845572996e-20,-0.0033333334140479565,-0.0,-0.0,-0.002222222276031971,-0.0,-0.0063492064364254475,-0.0033333334140479565,-9.919456099187906e-33,-0.05666666850447655,0.009999999776482582,0.006666666828095913,0.006666666828095913,0.12333333492279053,-3.108624482185328e-17,3.034080407521907e-34,1.0842021724855044e-19,-0.009999999776482582,-2.4924187780380152e-20,5.421010862427522e-20,-0.006666666828095913,2.168404344971009e-19,-0.006666666828095913,-0.03999999910593033,0.006666666828095913,-0.03999999910593033,-1.7869303185936014e-17,-1.7869303185936014e-17,-3.108624482185328e-17,0.019999999552965164,-1.925929944387236e-34,-1.9795699097494165e-34,-0.0,3.1720658023686032e-18,1.4802974020113686e-18,2.2204459996194763e-18,3.1720658023686032e-18,2.2204459996194763e-18,1.1102230411687688e-17,0.006666666828095913,-0.006666666828095913,-0.0033333334140479565,1.7729021845572996e-20,3.034080407521907e-34,-1.925929944387236e-34,0.0033333334140479565,1.167602350784608e-20,-0.0,-1.0842021724855044e-19,-5.421010862427522e-20,-0.0,1.8164408037872856e-20,-1.5170402037609534e-34,0.0,0.006666666828095913,-0.006666666828095913,-5.83801175392304e-21,-0.0033333334140479565,1.0842021724855044e-19,-1.9795699097494165e-34,1.167602350784608e-20,0.0033333334140479565,-0.0,2.2240044853782397e-20,-5.129110133367496e-20,-1.5170402037609534e-34,-1.0842021724855044e-19,-5.421010862427522e-20,-0.0,0.009999999776482582,-0.009999999776482582,-0.0,-0.0,-0.009999999776482582,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031746032182127237,-6.1717711533189196e-18,-0.0063492064364254475,-0.0,-2.4924187780380152e-20,3.1720658023686032e-18,-1.0842021724855044e-19,2.2240044853782397e-20,-0.0,0.0015873016091063619,-1.0842021724855044e-19,0.0,3.994295234892315e-20,6.319457630020618e-35,1.7608503135844695e-33,0.004444444552063942,-2.7495924034938824e-18,-0.002222222276031971,-0.002222222276031971,5.421010862427522e-20,1.4802974020113686e-18,-5.421010862427522e-20,-5.129110133367496e-20,-0.0,-1.0842021724855044e-19,0.0011111111380159855,-0.0,-9.039811012543085e-20,-2.710505431213761e-20,8.217301524617855e-34,0.006666666828095913,-4.440891999238953e-18,-0.0033333334140479565,-0.0,-0.006666666828095913,2.2204459996194763e-18,-0.0,-1.5170402037609534e-34,-0.0,0.0,-0.0,0.0033333334140479565,6.321001040327923e-35,0.0,1.2325951827749302e-33,0.0031746032182127237,-6.163620115562822e-18,-1.1120022426891199e-20,-0.0063492064364254475,2.168404344971009e-19,3.1720658023686032e-18,1.8164408037872856e-20,-1.0842021724855044e-19,-0.0,3.994295234892315e-20,-9.039811012543085e-20,6.321001040327923e-35,0.0015873016091063619,-8.349603108375743e-20,1.7608503135844695e-33,0.006666666828095913,-4.332471781990402e-18,5.421010862427522e-20,-0.0033333334140479565,-0.006666666828095913,2.2204459996194763e-18,-1.5170402037609534e-34,-5.421010862427522e-20,-0.0,6.319457630020618e-35,-2.710505431213761e-20,0.0,-8.349603108375743e-20,0.0033333334140479565,1.2325951827749302e-33,0.006666666828095913,-2.2204460823375376e-17,-9.919456099187906e-33,-9.919456099187906e-33,-0.03999999910593033,1.1102230411687688e-17,0.0,-0.0,-0.0,1.7608503135844695e-33,8.217301524617855e-34,1.2325951827749302e-33,1.7608503135844695e-33,1.2325951827749302e-33,0.019999999552965164,3.0,5.0,5.0,4.0,0.10852380841970444,-0.04399999976158142,-0.030523808673024178,-0.030523808673024178,-0.035999998450279236,0.004999999888241291,0.004999999888241291,0.004999999888241291,0.006000000052154064,0.0023809524718672037,0.0033333334140479565,0.004000000189989805,0.0023809524718672037,0.004000000189989805,0.0033333334140479565,-0.04399999976158142,0.09399999678134918,0.004999999888241291,0.004999999888241291,0.006000000052154064,-0.029999999329447746,-0.004999999888241291,-0.004999999888241291,-0.006000000052154064,-4.7580988069504814e-18,-2.2204459996194763e-18,-2.664535282261433e-18,-4.7661919420637e-18,-2.664535282261433e-18,-7.77156120546332e-18,-0.030523808673024178,0.004999999888241291,0.029547618702054024,0.0033333334140479565,0.004000000189989805,-1.3735044558228631e-17,-0.0024999999441206455,1.0452557297294206e-33,-0.0,-0.004761904943734407,-0.0016666667070239782,-0.0020000000949949026,-6.290830783952619e-35,-1.0227018502279796e-33,-3.5580913608765046e-33,-0.030523808673024178,0.004999999888241291,0.0033333334140479565,0.029547618702054024,0.004000000189989805,-1.3735044558228631e-17,-1.7602994740019434e-20,-0.0024999999441206455,-0.0,-0.0,-0.0016666667070239782,-1.1440650297946574e-33,-0.004761904943734407,-0.0020000000949949026,-3.5580913608765046e-33,-0.035999998450279236,0.006000000052154064,0.004000000189989805,0.004000000189989805,0.047333333641290665,-1.698641195912754e-17,-0.0,0.0,-0.004000000189989805,4.524964943622103e-34,-9.841797983255793e-34,-0.0026666666381061077,-0.0,-0.0026666666381061077,-0.009999999776482582,0.004999999888241291,-0.029999999329447746,-1.3735044558228631e-17,-1.3735044558228631e-17,-1.698641195912754e-17,0.014999999664723873,-0.0,0.0,-0.0,2.3790494034752407e-18,1.1102229998097382e-18,1.3322676411307164e-18,2.3790494034752407e-18,1.3322676411307164e-18,3.88578060273166e-18,0.004999999888241291,-0.004999999888241291,-0.0024999999441206455,-1.7602994740019434e-20,-0.0,-0.0,0.0024999999441206455,-1.025122450235712e-34,-0.0,-0.0,-0.0,-0.0,4.046665703527795e-21,0.0,0.0,0.004999999888241291,-0.004999999888241291,1.0452557297294206e-33,-0.0024999999441206455,0.0,0.0,-1.025122450235712e-34,0.0024999999441206455,-0.0,-1.9526141253283826e-34,-4.667816033648005e-35,-0.0,0.0,-0.0,-0.0,0.006000000052154064,-0.006000000052154064,-0.0,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,0.004000000189989805,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-4.7580988069504814e-18,-0.004761904943734407,-0.0,4.524964943622103e-34,2.3790494034752407e-18,-0.0,-1.9526141253283826e-34,-0.0,0.0011904762359336019,-0.0,0.0,-9.302679963924487e-22,2.1130202018139207e-34,6.162975913874651e-34,0.0033333334140479565,-2.2204459996194763e-18,-0.0016666667070239782,-0.0016666667070239782,-9.841797983255793e-34,1.1102229998097382e-18,-0.0,-4.667816033648005e-35,-0.0,-0.0,0.0008333333535119891,6.068160700249443e-35,2.489837084173246e-35,-0.0,2.876055395863005e-34,0.004000000189989805,-2.664535282261433e-18,-0.0020000000949949026,-1.1440650297946574e-33,-0.0026666666381061077,1.3322676411307164e-18,-0.0,-0.0,-0.0,0.0,6.068160700249443e-35,0.0013333333190530539,2.1130202018139207e-34,1.1832914140348414e-34,3.451266566871102e-34,0.0023809524718672037,-4.7661919420637e-18,-6.290830783952619e-35,-0.004761904943734407,-0.0,2.3790494034752407e-18,4.046665703527795e-21,0.0,-0.0,-9.302679963924487e-22,2.489837084173246e-35,2.1130202018139207e-34,0.0011904762359336019,1.7001313123158832e-35,6.162975913874651e-34,0.004000000189989805,-2.664535282261433e-18,-1.0227018502279796e-33,-0.0020000000949949026,-0.0026666666381061077,1.3322676411307164e-18,0.0,-0.0,-0.0,2.1130202018139207e-34,-0.0,1.1832914140348414e-34,1.7001313123158832e-35,0.0013333333190530539,3.451266566871102e-34,0.0033333334140479565,-7.77156120546332e-18,-3.5580913608765046e-33,-3.5580913608765046e-33,-0.009999999776482582,3.88578060273166e-18,0.0,-0.0,-0.0,6.162975913874651e-34,2.876055395863005e-34,3.451266566871102e-34,6.162975913874651e-34,3.451266566871102e-34,0.0033333334140479565,3.0,5.0,5.0,5.0,0.09142857044935226,-0.035999998450279236,-0.02495238184928894,-0.02495238184928894,-0.02495238184928894,0.004000000189989805,0.004000000189989805,0.004000000189989805,0.004000000189989805,0.0019047618843615055,0.0026666666381061077,0.0026666666381061077,0.0019047618843615055,0.0026666666381061077,0.0019047618843615055,-0.035999998450279236,0.07599999755620956,0.004000000189989805,0.004000000189989805,0.004000000189989805,-0.024000000208616257,-0.004000000189989805,-0.004000000189989805,-0.004000000189989805,7.61068863839217e-18,3.606617072162364e-18,3.552713847545346e-18,7.623145978417218e-18,3.601085715406222e-18,7.608700096199592e-18,-0.02495238184928894,0.004000000189989805,0.02390476129949093,0.0026666666381061077,0.0026666666381061077,2.5059827086543098e-17,-0.0020000000949949026,4.8372097274248965e-20,-0.0,-0.003809523768723011,-0.0013333333190530539,-0.0013333333190530539,8.483809931588204e-20,2.710505431213761e-20,-6.395861548581701e-34,-0.02495238184928894,0.004000000189989805,0.0026666666381061077,0.02390476129949093,0.0026666666381061077,2.5059827086543098e-17,2.125703439981689e-20,-0.0020000000949949026,4.8372097274248965e-20,-0.0,-0.0013333333190530539,2.710505431213761e-20,-0.003809523768723011,-0.0013333333190530539,8.483809931588204e-20,-0.02495238184928894,0.004000000189989805,0.0026666666381061077,0.0026666666381061077,0.02390476129949093,2.5059827086543098e-17,1.9589031156952245e-20,1.9589031156952245e-20,-0.0020000000949949026,-3.848267160621162e-21,-1.4245346656838085e-21,-0.0013333333190530539,-0.0,-0.0013333333190530539,-0.003809523768723011,0.004000000189989805,-0.024000000208616257,2.5059827086543098e-17,2.5059827086543098e-17,2.5059827086543098e-17,0.012000000104308128,-2.728484201827601e-18,-2.728484201827601e-18,-2.728484201827601e-18,-3.806478797406201e-18,-1.776356923772673e-18,-1.776356923772673e-18,-3.806478797406201e-18,-1.776356923772673e-18,-3.806478797406201e-18,0.004000000189989805,-0.004000000189989805,-0.0020000000949949026,2.125703439981689e-20,1.9589031156952245e-20,-2.728484201827601e-18,0.0020000000949949026,6.287089643285856e-22,-3.3042461378915246e-23,6.963737588922919e-35,-0.0,-0.0,-5.031205310715532e-21,4.039880210188497e-34,-4.495629693997672e-21,0.004000000189989805,-0.004000000189989805,4.8372097274248965e-20,-0.0020000000949949026,1.9589031156952245e-20,-2.728484201827601e-18,6.287089643285856e-22,0.0020000000949949026,-3.3042461378915246e-23,1.1975408363524507e-21,-2.710505431213761e-20,9.929182672092487e-35,6.963737588922919e-35,-0.0,-4.495629693997672e-21,0.004000000189989805,-0.004000000189989805,-0.0,4.8372097274248965e-20,-0.0020000000949949026,-2.728484201827601e-18,-3.3042461378915246e-23,-3.3042461378915246e-23,0.0020000000949949026,-6.29380240782718e-23,1.534114336907875e-22,8.539133051596285e-35,-6.29380240782718e-23,-2.4186048637124483e-20,1.1120022426891199e-20,0.0019047618843615055,7.61068863839217e-18,-0.003809523768723011,-0.0,-3.848267160621162e-21,-3.806478797406201e-18,6.963737588922919e-35,1.1975408363524507e-21,-6.29380240782718e-23,0.0009523809421807528,-0.0,0.0,3.712925791343925e-21,5.627326556256455e-34,8.991276553608641e-22,0.0026666666381061077,3.606617072162364e-18,-0.0013333333190530539,-0.0013333333190530539,-1.4245346656838085e-21,-1.776356923772673e-18,-0.0,-2.710505431213761e-20,1.534114336907875e-22,-0.0,0.0006666666595265269,4.0248926572155124e-35,-4.7979060467489833e-20,-0.0,2.9221225464911906e-22,0.0026666666381061077,3.552713847545346e-18,-0.0013333333190530539,2.710505431213761e-20,-0.0013333333190530539,-1.776356923772673e-18,-0.0,9.929182672092487e-35,8.539133051596285e-35,0.0,4.0248926572155124e-35,0.0006666666595265269,-1.705898581474605e-35,-1.3552527156068805e-20,2.570664374201149e-35,0.0019047618843615055,7.623145978417218e-18,8.483809931588204e-20,-0.003809523768723011,-0.0,-3.806478797406201e-18,-5.031205310715532e-21,6.963737588922919e-35,-6.29380240782718e-23,3.712925791343925e-21,-4.7979060467489833e-20,-1.705898581474605e-35,0.0009523809421807528,4.533683403847047e-35,8.991276553608641e-22,0.0026666666381061077,3.601085715406222e-18,2.710505431213761e-20,-0.0013333333190530539,-0.0013333333190530539,-1.776356923772673e-18,4.039880210188497e-34,-0.0,-2.4186048637124483e-20,5.627326556256455e-34,-0.0,-1.3552527156068805e-20,4.533683403847047e-35,0.0006666666595265269,-4.241904965794102e-20,0.0019047618843615055,7.608700096199592e-18,-6.395861548581701e-34,8.483809931588204e-20,-0.003809523768723011,-3.806478797406201e-18,-4.495629693997672e-21,-4.495629693997672e-21,1.1120022426891199e-20,8.991276553608641e-22,2.9221225464911906e-22,2.570664374201149e-35,8.991276553608641e-22,-4.241904965794102e-20,0.0009523809421807528,3.0,5.0,5.0,6.0,0.07904762029647827,-0.030476190149784088,-0.021111110225319862,-0.021111110225319862,-0.018333332613110542,0.0033333334140479565,0.0033333334140479565,0.0033333334140479565,0.0028571428265422583,0.0015873016091063619,0.002222222276031971,0.0019047618843615055,0.0015873016091063619,0.0019047618843615055,0.0011904762359336019,-0.030476190149784088,0.06380952149629593,0.0033333334140479565,0.0033333334140479565,0.0028571428265422583,-0.019999999552965164,-0.0033333334140479565,-0.0033333334140479565,-0.0028571428265422583,-3.180208154728269e-18,-1.4775057708415787e-18,-1.2288068886423042e-18,-3.179140264557463e-18,-1.2656243875143098e-18,-2.092143462372448e-18,-0.021111110225319862,0.0033333334140479565,0.020079365000128746,0.002222222276031971,0.0019047618843615055,-9.410461597740147e-18,-0.0016666667070239782,-9.121893744157985e-22,5.421010862427522e-20,-0.0031746032182127237,-0.0011111111380159855,-0.0009523809421807528,-1.7375035799323967e-21,3.3881317890172014e-21,4.4220529478633604e-20,-0.021111110225319862,0.0033333334140479565,0.002222222276031971,0.020079365000128746,0.0019047618843615055,-9.410461597740147e-18,-9.796276568452065e-21,-0.0016666667070239782,2.4245620181512506e-20,-0.0,-0.0011111111380159855,1.3552527156068805e-20,-0.0031746032182127237,-0.0009523809421807528,-9.462654594128969e-21,-0.018333332613110542,0.0028571428265422583,0.0019047618843615055,0.0019047618843615055,0.013880952261388302,-7.989640756518026e-18,-4.400589872789597e-20,-4.1920896289902296e-20,-0.0011428571306169033,-9.038302054160029e-20,-1.7227955573931866e-20,-0.0007619047537446022,-5.421010862427522e-20,-0.0007619047537446022,-0.0017857142956927419,0.0033333334140479565,-0.019999999552965164,-9.410461597740147e-18,-9.410461597740147e-18,-7.989640756518026e-18,0.009999999776482582,-0.0,-1.8618560559463174e-37,-1.945336391846602e-34,1.5860329011843016e-18,7.401487010056843e-19,6.34413150133963e-19,1.5860329011843016e-18,6.34413150133963e-19,1.09039765187595e-18,0.0033333334140479565,-0.0033333334140479565,-0.0016666667070239782,-9.796276568452065e-21,-4.400589872789597e-20,-0.0,0.0016666667070239782,4.0527763084520587e-22,1.3856564700744452e-21,-0.0,-0.0,1.3552527156068805e-20,2.158850320038729e-21,-4.3303660545999575e-37,2.8590643631198356e-21,0.0033333334140479565,-0.0033333334140479565,-9.121893744157985e-22,-0.0016666667070239782,-4.1920896289902296e-20,-1.8618560559463174e-37,4.0527763084520587e-22,0.0016666667070239782,5.789202544201639e-22,7.719573704487787e-22,-1.824378748831597e-21,3.1906174771437865e-22,-0.0,1.3552527156068805e-20,2.505920845561131e-21,0.0028571428265422583,-0.0028571428265422583,5.421010862427522e-20,2.4245620181512506e-20,-0.0011428571306169033,-1.945336391846602e-34,1.3856564700744452e-21,5.789202544201639e-22,0.0011428571306169033,2.639345724600788e-21,3.4285856364659915e-22,-2.710505431213761e-20,1.1027051647735821e-21,-1.2122810090756253e-20,-3.975266526511901e-20,0.0015873016091063619,-3.180208154728269e-18,-0.0031746032182127237,-0.0,-9.038302054160029e-20,1.5860329011843016e-18,-0.0,7.719573704487787e-22,2.639345724600788e-21,0.0007936508045531809,-0.0,2.710505431213761e-20,1.1515691025091441e-21,1.0005807914199311e-34,1.7215463854212608e-20,0.002222222276031971,-1.4775057708415787e-18,-0.0011111111380159855,-0.0011111111380159855,-1.7227955573931866e-20,7.401487010056843e-19,-0.0,-1.824378748831597e-21,3.4285856364659915e-22,-0.0,0.0005555555690079927,2.1270782339506945e-22,-3.475007159864793e-21,6.776263578034403e-21,5.357165262081947e-22,0.0019047618843615055,-1.2288068886423042e-18,-0.0009523809421807528,1.3552527156068805e-20,-0.0007619047537446022,6.34413150133963e-19,1.3552527156068805e-20,3.1906174771437865e-22,-2.710505431213761e-20,2.710505431213761e-20,2.1270782339506945e-22,0.0003809523768723011,6.077366238467419e-22,-6.776263578034403e-21,-4.9215320667041547e-20,0.0015873016091063619,-3.179140264557463e-18,-1.7375035799323967e-21,-0.0031746032182127237,-5.421010862427522e-20,1.5860329011843016e-18,2.158850320038729e-21,-0.0,1.1027051647735821e-21,1.1515691025091441e-21,-3.475007159864793e-21,6.077366238467419e-22,0.0007936508045531809,2.0874007770939356e-20,1.4211407210122836e-20,0.0019047618843615055,-1.2656243875143098e-18,3.3881317890172014e-21,-0.0009523809421807528,-0.0007619047537446022,6.34413150133963e-19,-4.3303660545999575e-37,1.3552527156068805e-20,-1.2122810090756253e-20,1.0005807914199311e-34,6.776263578034403e-21,-6.776263578034403e-21,2.0874007770939356e-20,0.0003809523768723011,-2.2373726611176343e-20,0.0011904762359336019,-2.092143462372448e-18,4.4220529478633604e-20,-9.462654594128969e-21,-0.0017857142956927419,1.09039765187595e-18,2.8590643631198356e-21,2.505920845561131e-21,-3.975266526511901e-20,1.7215463854212608e-20,5.357165262081947e-22,-4.9215320667041547e-20,1.4211407210122836e-20,-2.2373726611176343e-20,0.0003571428533177823,3.0,5.0,5.0,7.0,0.06964852660894394,-0.026428570970892906,-0.018299318850040436,-0.018299318850040436,-0.014047618955373764,0.0028571428265422583,0.0028571428265422583,0.0028571428265422583,0.002142857061699033,0.0013605442363768816,0.0019047618843615055,0.0014285714132711291,0.0013605442363768816,0.0014285714132711291,0.0007936508045531809,-0.026428570970892906,0.054999999701976776,0.0028571428265422583,0.0028571428265422583,0.002142857061699033,-0.017142856493592262,-0.0028571428265422583,-0.0028571428265422583,-0.002142857061699033,-2.7189135153452095e-18,-1.268826300267926e-18,-9.516196993515503e-19,-2.7189135153452095e-18,-9.333939119272866e-19,-1.4614849367376517e-18,-0.018299318850040436,0.0028571428265422583,0.017312925308942795,0.0019047618843615055,0.0014285714132711291,-8.134083035082035e-18,-0.0014285714132711291,-0.0,-0.0,-0.002721088472753763,-0.0009523809421807528,-0.0007142857066355646,-1.2900922848934946e-33,1.0164395367051604e-20,-5.465623073798945e-34,-0.018299318850040436,0.0028571428265422583,0.0019047618843615055,0.017312925308942795,0.0014285714132711291,-8.134083035082035e-18,-0.0,-0.0014285714132711291,1.8225811658070713e-20,-1.2900922848934946e-33,-0.0009523809421807528,1.0164395367051604e-20,-0.002721088472753763,-0.0007142857066355646,-5.9314775085865636e-21,-0.014047618955373764,0.002142857061699033,0.0014285714132711291,0.0014285714132711291,0.008809523656964302,-6.026924797025678e-18,-0.0,-0.0,-0.0007142857066355646,-9.558901492405986e-34,-4.460820604620631e-34,-0.0004761904710903764,-9.558901492405986e-34,-0.0004761904710903764,-0.0009523809421807528,0.0028571428265422583,-0.017142856493592262,-8.134083035082035e-18,-8.134083035082035e-18,-6.026924797025678e-18,0.008571428246796131,-0.0,-0.0,9.224955371157504e-35,1.3594567576726047e-18,6.34413150133963e-19,4.758098496757752e-19,1.3594567576726047e-18,4.758098496757752e-19,6.872808997204295e-19,0.0028571428265422583,-0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0028571428265422583,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.002142857061699033,-0.0,1.8225811658070713e-20,-0.0007142857066355646,9.224955371157504e-35,-0.0,-0.0,0.0007142857066355646,-0.0,0.0,-0.0,0.0,-6.07527082195476e-21,2.897436940540808e-20,0.0013605442363768816,-2.7189135153452095e-18,-0.002721088472753763,-1.2900922848934946e-33,-9.558901492405986e-34,1.3594567576726047e-18,-0.0,-0.0,-0.0,0.0006802721181884408,1.0062000906354684e-34,7.546500966751939e-35,2.1561431661560882e-34,7.546500966751939e-35,1.0900501460194117e-34,0.0019047618843615055,-1.268826300267926e-18,-0.0009523809421807528,-0.0009523809421807528,-4.460820604620631e-34,6.34413150133963e-19,-0.0,-0.0,0.0,1.0062000906354684e-34,0.0004761904710903764,3.5217004320185096e-35,1.0062000906354684e-34,3.5217004320185096e-35,5.086900719688711e-35,0.0014285714132711291,-9.516196993515503e-19,-0.0007142857066355646,1.0164395367051604e-20,-0.0004761904710903764,4.758098496757752e-19,-0.0,-0.0,-0.0,7.546500966751939e-35,3.5217004320185096e-35,0.0002380952355451882,7.546500966751939e-35,-3.3881317890172014e-21,2.9347503600154247e-36,0.0013605442363768816,-2.7189135153452095e-18,-1.2900922848934946e-33,-0.002721088472753763,-9.558901492405986e-34,1.3594567576726047e-18,-0.0,-0.0,0.0,2.1561431661560882e-34,1.0062000906354684e-34,7.546500966751939e-35,0.0006802721181884408,7.546500966751939e-35,1.0900501460194117e-34,0.0014285714132711291,-9.333939119272866e-19,1.0164395367051604e-20,-0.0007142857066355646,-0.0004761904710903764,4.758098496757752e-19,-0.0,-0.0,-6.07527082195476e-21,7.546500966751939e-35,3.5217004320185096e-35,-3.3881317890172014e-21,7.546500966751939e-35,0.0002380952355451882,1.9771591695288545e-21,0.0007936508045531809,-1.4614849367376517e-18,-5.465623073798945e-34,-5.9314775085865636e-21,-0.0009523809421807528,6.872808997204295e-19,-0.0,-0.0,2.897436940540808e-20,1.0900501460194117e-34,5.086900719688711e-35,2.9347503600154247e-36,1.0900501460194117e-34,1.9771591695288545e-21,0.00015873015217948705,3.0,5.0,5.0,8.0,0.062261905521154404,-0.023333333432674408,-0.016150793060660362,-0.016150793060660362,-0.011111111380159855,0.0024999999441206455,0.0024999999441206455,0.0024999999441206455,0.0016666667070239782,0.0011904762359336019,0.0016666667070239782,0.0011111111380159855,0.0011904762359336019,0.0011111111380159855,0.0005555555690079927,-0.023333333432674408,0.04833333194255829,0.0024999999441206455,0.0024999999441206455,0.0016666667070239782,-0.014999999664723873,-0.0024999999441206455,-0.0024999999441206455,-0.0016666667070239782,-1.734723475976807e-18,-4.336808689942018e-19,-2.6020852139652106e-18,0.0,-2.168404344971009e-18,-4.0115480381963664e-18,-0.016150793060660362,0.0024999999441206455,0.015218254178762436,0.0016666667070239782,0.0011111111380159855,-6.236129113697995e-18,-0.0012499999720603228,-1.5178830414797062e-18,3.5236570605778894e-19,-0.0023809524718672037,-0.0008333333535119891,-0.0005555555690079927,-2.6020852139652106e-18,-1.3010426069826053e-18,-1.8973538018496328e-18,-0.016150793060660362,0.0024999999441206455,0.0016666667070239782,0.015218254178762436,0.0011111111380159855,-5.2910591338342164e-18,-2.094648578857565e-18,-0.0012499999720603228,5.963111948670274e-19,-2.7095804364937737e-18,-0.0008333333535119891,-9.012430558785756e-19,-0.0023809524718672037,-0.0005555555690079927,-1.8973538018496328e-18,-0.011111111380159855,0.0016666667070239782,0.0011111111380159855,0.0011111111380159855,0.0059523810632526875,-8.456776945386935e-18,-3.6511549578840566e-18,-3.5269628878959576e-18,-0.0004761904710903764,-1.2096356337778924e-18,-1.769780217517417e-18,-0.0003174603043589741,-6.539196199416119e-19,-0.0003174603043589741,-0.0005555555690079927,0.0024999999441206455,-0.014999999664723873,-6.236129113697995e-18,-5.2910591338342164e-18,-8.456776945386935e-18,0.007499999832361937,-3.349199370264657e-20,-8.208959139787e-20,-2.26705369802893e-18,7.256780550684699e-19,2.342407215194308e-19,7.509664656590762e-19,6.111008740267459e-19,6.656899347691469e-19,1.0299920638612292e-18,0.0024999999441206455,-0.0024999999441206455,-0.0012499999720603228,-2.094648578857565e-18,-3.6511549578840566e-18,-3.349199370264657e-20,0.0012499999720603228,1.0842021724855044e-19,1.2593539190314574e-19,-4.0233337980369014e-20,1.0026430688165709e-19,2.75466369273308e-19,2.9281009782125463e-19,1.522427468367496e-19,3.7947076036992655e-19,0.0024999999441206455,-0.0024999999441206455,-1.5178830414797062e-18,-0.0012499999720603228,-3.5269628878959576e-18,-8.208959139787e-20,1.0842021724855044e-19,0.0012499999720603228,1.2100719198522258e-19,1.8276733995178728e-19,-1.8628320652195857e-20,1.9230312975208687e-19,-5.995005965138788e-19,2.1292111058315686e-19,3.2526065174565133e-19,0.0016666667070239782,-0.0016666667070239782,3.5236570605778894e-19,5.963111948670274e-19,-0.0004761904710903764,-2.26705369802893e-18,1.2593539190314574e-19,1.2100719198522258e-19,0.0004761904710903764,-6.776263578034403e-20,-1.153413796054494e-19,9.83056659757537e-21,-9.942319344566137e-20,-1.1647902598193545e-20,8.131516293641283e-20,0.0011904762359336019,-1.734723475976807e-18,-0.0023809524718672037,-2.7095804364937737e-18,-1.2096356337778924e-18,7.256780550684699e-19,-4.0233337980369014e-20,1.8276733995178728e-19,-6.776263578034403e-20,0.0005952381179668009,1.1756871526993902e-20,-2.220600734092812e-19,4.477830059685238e-19,1.7975377880858882e-19,1.8973538018496328e-19,0.0016666667070239782,-4.336808689942018e-19,-0.0008333333535119891,-0.0008333333535119891,-1.769780217517417e-18,2.342407215194308e-19,1.0026430688165709e-19,-1.8628320652195857e-20,-1.153413796054494e-19,1.1756871526993902e-20,0.00041666667675599456,9.486769009248164e-20,3.829525703633154e-20,1.166612625950514e-19,1.8973538018496328e-19,0.0011111111380159855,-2.6020852139652106e-18,-0.0005555555690079927,-9.012430558785756e-19,-0.0003174603043589741,7.509664656590762e-19,2.75466369273308e-19,1.9230312975208687e-19,9.83056659757537e-21,-2.220600734092812e-19,9.486769009248164e-20,0.00015873015217948705,9.644434803879599e-20,3.0459640049906666e-20,5.421010862427522e-20,0.0011904762359336019,0.0,-2.6020852139652106e-18,-0.0023809524718672037,-6.539196199416119e-19,6.111008740267459e-19,2.9281009782125463e-19,-5.995005965138788e-19,-9.942319344566137e-20,4.477830059685238e-19,3.829525703633154e-20,9.644434803879599e-20,0.0005952381179668009,-3.9641141931501256e-19,1.8973538018496328e-19,0.0011111111380159855,-2.168404344971009e-18,-1.3010426069826053e-18,-0.0005555555690079927,-0.0003174603043589741,6.656899347691469e-19,1.522427468367496e-19,2.1292111058315686e-19,-1.1647902598193545e-20,1.7975377880858882e-19,1.166612625950514e-19,3.0459640049906666e-20,-3.9641141931501256e-19,0.00015873015217948705,5.421010862427522e-20,0.0005555555690079927,-4.0115480381963664e-18,-1.8973538018496328e-18,-1.8973538018496328e-18,-0.0005555555690079927,1.0299920638612292e-18,3.7947076036992655e-19,3.2526065174565133e-19,8.131516293641283e-20,1.8973538018496328e-19,1.8973538018496328e-19,5.421010862427522e-20,1.8973538018496328e-19,5.421010862427522e-20,7.936507608974352e-05,3.0,5.0,6.0,3.0,0.1160052940249443,-0.04801587387919426,-0.03333333507180214,-0.02896825410425663,-0.04801587387919426,0.0055555556900799274,0.0055555556900799274,0.004761904943734407,0.008333333767950535,0.0026455025654286146,0.0031746032182127237,0.0055555556900799274,0.0019841270986944437,0.004761904943734407,0.0055555556900799274,-0.04801587387919426,0.10357142984867096,0.0055555556900799274,0.004761904943734407,0.008333333767950535,-0.03333333507180214,-0.0055555556900799274,-0.004761904943734407,-0.008333333767950535,-5.313427338368569e-18,-2.1653462582464003e-18,-3.700983904393945e-18,-3.8920407056074615e-18,-3.2442069119263436e-18,-1.8503717628539684e-17,-0.03333333507180214,0.0055555556900799274,0.03253968432545662,0.0031746032182127237,0.0055555556900799274,-1.5067313233335113e-17,-0.0027777778450399637,-4.849124036302501e-20,-0.0,-0.005291005130857229,-0.0015873016091063619,-0.0027777778450399637,-8.949490644470537e-20,-5.421010862427522e-20,-8.474091755303838e-33,-0.02896825410425663,0.004761904943734407,0.0031746032182127237,0.02250000089406967,0.004761904943734407,-1.278739005254093e-17,-2.4908535972227e-20,-0.0019047618843615055,-0.0,-0.0,-0.0012698412174358964,2.701379819599711e-19,-0.0029761905316263437,-0.0019047618843615055,-2.5942284870710595e-17,-0.04801587387919426,0.008333333767950535,0.0055555556900799274,0.004761904943734407,0.10357142984867096,-2.6169542817842188e-17,-5.473135842598007e-21,-6.795517499261282e-20,-0.008333333767950535,8.17944753272961e-20,2.371692252312041e-19,-0.0055555556900799274,-1.3010426069826053e-17,-0.004761904943734407,-0.03333333507180214,0.0055555556900799274,-0.03333333507180214,-1.5067313233335113e-17,-1.278739005254093e-17,-2.6169542817842188e-17,0.01666666753590107,-0.0,1.9002186457335129e-34,-0.0,2.6433882031063616e-18,1.05735530192206e-18,1.850371804212999e-18,1.817329454259109e-18,1.5860329011843016e-18,9.251858814269842e-18,0.0055555556900799274,-0.0055555556900799274,-0.0027777778450399637,-2.4908535972227e-20,-5.473135842598007e-21,-0.0,0.0027777778450399637,5.596689888146364e-21,-0.0,-0.0,2.710505431213761e-20,-0.0,-6.834309200374464e-21,2.189254458208238e-21,1.1441450127720925e-35,0.004761904943734407,-0.004761904943734407,-4.849124036302501e-20,-0.0019047618843615055,-6.795517499261282e-20,1.9002186457335129e-34,5.596689888146364e-21,0.0019047618843615055,-0.0,1.0660361230111035e-20,-1.4297171662867485e-21,9.627014255980972e-23,1.0842021724855044e-19,2.710505431213761e-20,3.851859888774472e-34,0.008333333767950535,-0.008333333767950535,-0.0,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026455025654286146,-5.313427338368569e-18,-0.005291005130857229,-0.0,8.17944753272961e-20,2.6433882031063616e-18,-0.0,1.0660361230111035e-20,-0.0,0.0013227512827143073,-0.0,0.0,7.816319605904092e-21,4.170008511058395e-21,1.4891684061834916e-33,0.0031746032182127237,-2.1653462582464003e-18,-0.0015873016091063619,-0.0012698412174358964,2.371692252312041e-19,1.05735530192206e-18,2.710505431213761e-20,-1.4297171662867485e-21,-0.0,-0.0,0.0006349206087179482,-1.3552527156068805e-19,2.487112058979318e-20,1.3552527156068805e-20,5.7777898331617076e-34,0.0055555556900799274,-3.700983904393945e-18,-0.0027777778450399637,2.701379819599711e-19,-0.0055555556900799274,1.850371804212999e-18,-0.0,9.627014255980972e-23,-0.0,0.0,-1.3552527156068805e-19,0.0027777778450399637,1.5042210524388128e-22,-5.717604522399606e-35,1.0539014906797186e-33,0.0019841270986944437,-3.8920407056074615e-18,-8.949490644470537e-20,-0.0029761905316263437,-1.3010426069826053e-17,1.817329454259109e-18,-6.834309200374464e-21,1.0842021724855044e-19,-0.0,7.816319605904092e-21,2.487112058979318e-20,1.5042210524388128e-22,0.0005952381179668009,1.0742126224204312e-18,5.286776406212723e-18,0.004761904943734407,-3.2442069119263436e-18,-5.421010862427522e-20,-0.0019047618843615055,-0.004761904943734407,1.5860329011843016e-18,2.189254458208238e-21,2.710505431213761e-20,-0.0,4.170008511058395e-21,1.3552527156068805e-20,-5.717604522399606e-35,1.0742126224204312e-18,0.0019047618843615055,-4.915965916663497e-19,0.0055555556900799274,-1.8503717628539684e-17,-8.474091755303838e-33,-2.5942284870710595e-17,-0.03333333507180214,9.251858814269842e-18,1.1441450127720925e-35,3.851859888774472e-34,-0.0,1.4891684061834916e-33,5.7777898331617076e-34,1.0539014906797186e-33,5.286776406212723e-18,-4.915965916663497e-19,0.01666666753590107,3.0,5.0,6.0,4.0,0.09392856806516647,-0.037261903285980225,-0.025833332911133766,-0.022440476343035698,-0.030476190149784088,0.004166666883975267,0.004166666883975267,0.0035714285913854837,0.004999999888241291,0.0019841270986944437,0.0023809524718672037,0.0033333334140479565,0.0014880952658131719,0.0028571428265422583,0.0027777778450399637,-0.037261903285980225,0.07892857491970062,0.004166666883975267,0.0035714285913854837,0.004999999888241291,-0.02500000037252903,-0.004166666883975267,-0.0035714285913854837,-0.004999999888241291,-3.765616902326694e-18,-1.5521515832941296e-18,-2.2204459996194763e-18,-2.7244339119582352e-18,-1.8693580808129287e-18,-6.476301004552767e-18,-0.025833332911133766,0.004166666883975267,0.024821428582072258,0.0023809524718672037,0.0033333334140479565,-1.1578040416459828e-17,-0.0020833334419876337,7.375938228774437e-34,-0.0,-0.003968254197388887,-0.0011904762359336019,-0.0016666667070239782,-3.3369001500857094e-35,-7.301092299405674e-34,-2.9672160847952273e-33,-0.022440476343035698,0.0035714285913854837,0.0023809524718672037,0.01716071367263794,0.0028571428265422583,-9.828447541791768e-18,5.844895366803773e-22,-0.0014285714132711291,-0.0,-1.0842021724855044e-19,-0.0009523809421807528,-3.7594854777349333e-20,-0.0022321429569274187,-0.0011428571306169033,-9.11757017772492e-18,-0.030476190149784088,0.004999999888241291,0.0033333334140479565,0.0028571428265422583,0.03976190462708473,-1.4313946909923867e-17,-0.0,3.3881317890172014e-20,-0.0033333334140479565,2.1606237096459246e-20,-3.7594854777349333e-20,-0.002222222276031971,-7.15573433840433e-18,-0.0019047618843615055,-0.008333333767950535,0.004166666883975267,-0.02500000037252903,-1.1578040416459828e-17,-9.828447541791768e-18,-1.4313946909923867e-17,0.012500000186264515,-1.925929944387236e-34,-9.797274757185957e-35,-0.0,1.9825412040285595e-18,7.930164505921508e-19,1.1102229998097382e-18,1.3629969872967551e-18,9.516196993515503e-19,3.2381505022763835e-18,0.004166666883975267,-0.004166666883975267,-0.0020833334419876337,5.844895366803773e-22,-0.0,-1.925929944387236e-34,0.0020833334419876337,3.648757497663194e-21,-0.0,-1.0842021724855044e-19,-0.0,-0.0,-7.800823600935165e-22,0.0,0.0,0.0035714285913854837,-0.0035714285913854837,7.375938228774437e-34,-0.0014285714132711291,3.3881317890172014e-20,-9.797274757185957e-35,3.648757497663194e-21,0.0014285714132711291,-0.0,6.950014319729587e-21,-1.3552527156068805e-20,-0.0,-0.0,-1.3552527156068805e-20,-1.925929944387236e-34,0.004999999888241291,-0.004999999888241291,-0.0,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019841270986944437,-3.765616902326694e-18,-0.003968254197388887,-1.0842021724855044e-19,2.1606237096459246e-20,1.9825412040285595e-18,-1.0842021724855044e-19,6.950014319729587e-21,-0.0,0.0009920635493472219,-0.0,0.0,1.432166295407534e-20,1.5093001933503877e-34,5.135813338091789e-34,0.0023809524718672037,-1.5521515832941296e-18,-0.0011904762359336019,-0.0009523809421807528,-3.7594854777349333e-20,7.930164505921508e-19,-0.0,-1.3552527156068805e-20,-0.0,-0.0,0.0004761904710903764,1.8797427388674667e-20,-2.4607660333520773e-20,-0.0,1.925929944387236e-34,0.0033333334140479565,-2.2204459996194763e-18,-0.0016666667070239782,-3.7594854777349333e-20,-0.002222222276031971,1.1102229998097382e-18,-0.0,-0.0,-0.0,0.0,1.8797427388674667e-20,0.0011111111380159855,1.2037062152420224e-34,8.425943506694157e-35,2.876055395863005e-34,0.0014880952658131719,-2.7244339119582352e-18,-3.3369001500857094e-35,-0.0022321429569274187,-7.15573433840433e-18,1.3629969872967551e-18,-7.800823600935165e-22,-0.0,-0.0,1.432166295407534e-20,-2.4607660333520773e-20,1.2037062152420224e-34,0.00044642857392318547,6.530187168569651e-19,1.850371804212999e-18,0.0028571428265422583,-1.8693580808129287e-18,-7.301092299405674e-34,-0.0011428571306169033,-0.0019047618843615055,9.516196993515503e-19,0.0,-1.3552527156068805e-20,-0.0,1.5093001933503877e-34,-0.0,8.425943506694157e-35,6.530187168569651e-19,0.0007619047537446022,-8.952563491199201e-20,0.0027777778450399637,-6.476301004552767e-18,-2.9672160847952273e-33,-9.11757017772492e-18,-0.008333333767950535,3.2381505022763835e-18,0.0,-1.925929944387236e-34,-0.0,5.135813338091789e-34,1.925929944387236e-34,2.876055395863005e-34,1.850371804212999e-18,-8.952563491199201e-20,0.0027777778450399637,3.0,5.0,6.0,5.0,0.07904762029647827,-0.030476190149784088,-0.021111110225319862,-0.018333332613110542,-0.021111110225319862,0.0033333334140479565,0.0033333334140479565,0.0028571428265422583,0.0033333334140479565,0.0015873016091063619,0.0019047618843615055,0.002222222276031971,0.0011904762359336019,0.0019047618843615055,0.0015873016091063619,-0.030476190149784088,0.06380952149629593,0.0033333334140479565,0.0028571428265422583,0.0033333334140479565,-0.019999999552965164,-0.0033333334140479565,-0.0028571428265422583,-0.0033333334140479565,-3.1861218757225637e-18,-1.2420477755025937e-18,-1.4316159618062447e-18,-2.1184833746179742e-18,-1.1005531550514167e-18,-3.036492140742081e-18,-0.021111110225319862,0.0033333334140479565,0.020079365000128746,0.0019047618843615055,0.002222222276031971,-9.410461597740147e-18,-0.0016666667070239782,2.2051227954270097e-20,2.710505431213761e-20,-0.0031746032182127237,-0.0009523809421807528,-0.0011111111380159855,9.300090177748858e-21,1.1083023381261783e-19,-6.231046945095038e-21,-0.018333332613110542,0.0028571428265422583,0.0019047618843615055,0.013880952261388302,0.0019047618843615055,-7.989640756518026e-18,-4.1086894668469973e-20,-0.0011428571306169033,5.889020605722075e-20,-1.0842021724855044e-19,-0.0007619047537446022,-1.3552527156068805e-20,-0.0017857142956927419,-0.0007619047537446022,2.8156620073554836e-18,-0.021111110225319862,0.0033333334140479565,0.002222222276031971,0.0019047618843615055,0.020079365000128746,-9.410461597740147e-18,1.3584960269730092e-21,6.45838646968337e-20,-0.0016666667070239782,9.129881610844733e-21,-1.6429391856281478e-20,-0.0011111111380159855,2.5478751053409354e-18,-0.0009523809421807528,-0.0031746032182127237,0.0033333334140479565,-0.019999999552965164,-9.410461597740147e-18,-7.989640756518026e-18,-9.410461597740147e-18,0.009999999776482582,-0.0,-1.9410520363620915e-34,-1.7800473072359735e-34,1.5860329011843016e-18,6.34413150133963e-19,7.401487010056843e-19,1.09039765187595e-18,6.34413150133963e-19,1.5860329011843016e-18,0.0033333334140479565,-0.0033333334140479565,-0.0016666667070239782,-4.1086894668469973e-20,1.3584960269730092e-21,-0.0,0.0016666667070239782,3.291680631278636e-21,-4.248617528387034e-22,-0.0,1.3552527156068805e-20,-1.3552527156068805e-20,1.969931032691819e-21,3.0683698858865305e-37,6.016418213841319e-21,0.0028571428265422583,-0.0028571428265422583,2.2051227954270097e-20,-0.0011428571306169033,6.45838646968337e-20,-1.9410520363620915e-34,3.291680631278636e-21,0.0011428571306169033,4.834700033981429e-22,6.269867888335344e-21,-2.2815903116199953e-20,2.211461511157159e-21,-2.710505431213761e-20,-4.0657581468206416e-20,7.391654449824744e-21,0.0033333334140479565,-0.0033333334140479565,2.710505431213761e-20,5.889020605722075e-20,-0.0016666667070239782,-1.7800473072359735e-34,-4.248617528387034e-22,4.834700033981429e-22,0.0016666667070239782,-8.092604695767927e-22,1.5780578525658733e-21,-1.3552527156068805e-20,7.554218866204856e-22,-3.331460869769369e-20,-8.304284596800347e-20,0.0015873016091063619,-3.1861218757225637e-18,-0.0031746032182127237,-1.0842021724855044e-19,9.129881610844733e-21,1.5860329011843016e-18,-0.0,6.269867888335344e-21,-8.092604695767927e-22,0.0007936508045531809,2.710505431213761e-20,0.0,2.0253554456864962e-20,1.023150282955719e-34,2.1813617092139972e-20,0.0019047618843615055,-1.2420477755025937e-18,-0.0009523809421807528,-0.0007619047537446022,-1.6429391856281478e-20,6.34413150133963e-19,1.3552527156068805e-20,-2.2815903116199953e-20,1.5780578525658733e-21,2.710505431213761e-20,0.0003809523768723011,2.6298987807837426e-20,-4.2513519500008255e-20,-2.0328790734103208e-20,3.005824500311034e-21,0.002222222276031971,-1.4316159618062447e-18,-0.0011111111380159855,-1.3552527156068805e-20,-0.0011111111380159855,7.401487010056843e-19,-1.3552527156068805e-20,2.211461511157159e-21,-1.3552527156068805e-20,0.0,2.6298987807837426e-20,0.0005555555690079927,3.455408472343542e-21,-3.0004128488679906e-20,-5.109458454588253e-20,0.0011904762359336019,-2.1184833746179742e-18,9.300090177748858e-21,-0.0017857142956927419,2.5478751053409354e-18,1.09039765187595e-18,1.969931032691819e-21,-2.710505431213761e-20,7.554218866204856e-22,2.0253554456864962e-20,-4.2513519500008255e-20,3.455408472343542e-21,0.0003571428533177823,-3.1027627494925323e-19,-4.596835500437476e-19,0.0019047618843615055,-1.1005531550514167e-18,1.1083023381261783e-19,-0.0007619047537446022,-0.0009523809421807528,6.34413150133963e-19,3.0683698858865305e-37,-4.0657581468206416e-20,-3.331460869769369e-20,1.023150282955719e-34,-2.0328790734103208e-20,-3.0004128488679906e-20,-3.1027627494925323e-19,0.0003809523768723011,-2.639303792036728e-19,0.0015873016091063619,-3.036492140742081e-18,-6.231046945095038e-21,2.8156620073554836e-18,-0.0031746032182127237,1.5860329011843016e-18,6.016418213841319e-21,7.391654449824744e-21,-8.304284596800347e-20,2.1813617092139972e-20,3.005824500311034e-21,-5.109458454588253e-20,-4.596835500437476e-19,-2.639303792036728e-19,0.0007936508045531809,3.0,5.0,6.0,6.0,0.06829176098108292,-0.02579365111887455,-0.01785714365541935,-0.015504535287618637,-0.015504535287618637,0.0027777778450399637,0.0027777778450399637,0.0023809524718672037,0.0023809524718672037,0.0013227512827143073,0.0015873016091063619,0.0015873016091063619,0.0009920635493472219,0.0013605442363768816,0.0009920635493472219,-0.02579365111887455,0.0535714291036129,0.0027777778450399637,0.0023809524718672037,0.0023809524718672037,-0.01666666753590107,-0.0027777778450399637,-0.0023809524718672037,-0.0023809524718672037,-2.6506413363075328e-18,-1.078598437425764e-18,-1.1175387919423103e-18,-1.951743615461985e-18,-8.349901798125057e-19,-1.844007476580016e-18,-0.01785714365541935,0.0027777778450399637,0.01686508022248745,0.0015873016091063619,0.0015873016091063619,-7.930164816114238e-18,-0.0013888889225199819,1.2849623968203335e-20,-5.421010862427522e-20,-0.0026455025654286146,-0.0007936508045531809,-0.0007936508045531809,2.3661055520030402e-20,6.117196438990267e-20,-9.843064133408309e-20,-0.015504535287618637,0.0023809524718672037,0.0015873016091063619,0.01165816280990839,0.0013605442363768816,-6.733559138140434e-18,-9.375899988419635e-21,-0.0009523809421807528,7.694008189199769e-20,-0.0,-0.0006349206087179482,1.3552527156068805e-19,-0.0014880952658131719,-0.0005442177061922848,-2.2847793513753286e-18,-0.015504535287618637,0.0023809524718672037,0.0015873016091063619,0.0013605442363768816,0.01165816280990839,-6.733559138140434e-18,-2.7098435251650053e-20,-1.6245975864557782e-20,-0.0009523809421807528,-1.831864652595845e-20,4.2713819992868264e-20,-0.0006349206087179482,-3.144186300207963e-18,-0.0005442177061922848,-0.0014880952658131719,0.0027777778450399637,-0.01666666753590107,-7.930164816114238e-18,-6.733559138140434e-18,-6.733559138140434e-18,0.008333333767950535,-0.0,9.667146155017487e-35,4.0666221326978526e-35,1.3216941015531808e-18,5.2867765096103e-19,5.2867765096103e-19,9.086647271295545e-19,4.531522353246055e-19,9.086647271295545e-19,0.0027777778450399637,-0.0027777778450399637,-0.0013888889225199819,-9.375899988419635e-21,-2.7098435251650053e-20,-0.0,0.0013888889225199819,-8.16194468581264e-22,2.3393839023671695e-21,-0.0,1.3552527156068805e-20,1.3552527156068805e-20,-3.11663883351508e-21,-1.1535312282611512e-36,-4.323101648840257e-22,0.0023809524718672037,-0.0023809524718672037,1.2849623968203335e-20,-0.0009523809421807528,-1.6245975864557782e-20,9.667146155017487e-35,-8.16194468581264e-22,0.0009523809421807528,1.311311189140541e-21,-1.5546561739056344e-21,-1.7871465335890825e-21,-3.211235903069112e-22,5.421010862427522e-20,6.776263578034403e-21,-2.5130462916409687e-22,0.0023809524718672037,-0.0023809524718672037,-5.421010862427522e-20,7.694008189199769e-20,-0.0009523809421807528,4.0666221326978526e-35,2.3393839023671695e-21,1.311311189140541e-21,0.0009523809421807528,4.4559694532413086e-21,-5.576241906663664e-22,1.3552527156068805e-20,2.048923751964757e-21,-3.530198766753477e-20,1.1268411681758536e-20,0.0013227512827143073,-2.6506413363075328e-18,-0.0026455025654286146,-0.0,-1.831864652595845e-20,1.3216941015531808e-18,-0.0,-1.5546561739056344e-21,4.4559694532413086e-21,0.0006613756413571537,-0.0,0.0,-2.829651993502145e-21,6.921310737641629e-35,1.6874331015304045e-20,0.0015873016091063619,-1.078598437425764e-18,-0.0007936508045531809,-0.0006349206087179482,4.2713819992868264e-20,5.2867765096103e-19,1.3552527156068805e-20,-1.7871465335890825e-21,-5.576241906663664e-22,-0.0,0.0003174603043589741,-2.718433117279772e-20,-2.792416345136971e-21,6.776263578034403e-21,-8.712877568954304e-22,0.0015873016091063619,-1.1175387919423103e-18,-0.0007936508045531809,1.3552527156068805e-19,-0.0006349206087179482,5.2867765096103e-19,1.3552527156068805e-20,-3.211235903069112e-22,1.3552527156068805e-20,0.0,-2.718433117279772e-20,0.0003174603043589741,-5.017556224763232e-22,-3.1245048041525765e-20,1.1055132369658401e-20,0.0009920635493472219,-1.951743615461985e-18,2.3661055520030402e-20,-0.0014880952658131719,-3.144186300207963e-18,9.086647271295545e-19,-3.11663883351508e-21,5.421010862427522e-20,2.048923751964757e-21,-2.829651993502145e-21,-2.792416345136971e-21,-5.017556224763232e-22,0.00029761905898340046,2.2664686745407017e-19,5.162591884247714e-19,0.0013605442363768816,-8.349901798125057e-19,6.117196438990267e-20,-0.0005442177061922848,-0.0005442177061922848,4.531522353246055e-19,-1.1535312282611512e-36,6.776263578034403e-21,-3.530198766753477e-20,6.921310737641629e-35,6.776263578034403e-21,-3.1245048041525765e-20,2.2664686745407017e-19,0.00021768707665614784,-1.173008929284051e-19,0.0009920635493472219,-1.844007476580016e-18,-9.843064133408309e-20,-2.2847793513753286e-18,-0.0014880952658131719,9.086647271295545e-19,-4.323101648840257e-22,-2.5130462916409687e-22,1.1268411681758536e-20,1.6874331015304045e-20,-8.712877568954304e-22,1.1055132369658401e-20,5.162591884247714e-19,-1.173008929284051e-19,0.00029761905898340046,3.0,5.0,6.0,7.0,0.06013794243335724,-0.022363945841789246,-0.015476190485060215,-0.01343537401407957,-0.011876417323946953,0.0023809524718672037,0.0023809524718672037,0.0020408162381500006,0.0017857142956927419,0.0011337868636474013,0.0013605442363768816,0.0011904762359336019,0.0008503401186317205,0.0010204081190750003,0.0006613756413571537,-0.022363945841789246,0.046173468232154846,0.0023809524718672037,0.0020408162381500006,0.0017857142956927419,-0.014285714365541935,-0.0023809524718672037,-0.0020408162381500006,-0.0017857142956927419,-2.2657612283218157e-18,-8.961579630629058e-19,-8.176479246800252e-19,-1.4891092536793194e-18,-7.155912078838452e-19,-1.1641411136777822e-18,-0.015476190485060215,0.0023809524718672037,0.01454081665724516,0.0013605442363768816,0.0011904762359336019,-6.853927979337313e-18,-0.0011904762359336019,9.096690988766043e-21,-2.3756586802844608e-20,-0.0022675737272948027,-0.0006802721181884408,-0.0005952381179668009,5.238469226460688e-20,-2.5517116462672162e-23,-4.210046879983446e-20,-0.01343537401407957,0.0020408162381500006,0.0013605442363768816,0.010051020421087742,0.0010204081190750003,-5.820174311640499e-18,-0.0,-0.0008163265301845968,-3.087997575558461e-19,-9.230988159694493e-34,-0.0005442177061922848,-2.710505431213761e-20,-0.0012755101779475808,-0.0004081632650922984,9.32995004076883e-19,-0.011876417323946953,0.0017857142956927419,0.0011904762359336019,0.0010204081190750003,0.007397959008812904,-5.079081694158315e-18,-0.0,-2.7012022342619538e-19,-0.0005952381179668009,-8.055590236143171e-34,-7.078591629573999e-21,-0.00039682540227659047,1.3010426069826053e-18,-0.0003401360590942204,-0.0007936508045531809,0.0023809524718672037,-0.014285714365541935,-6.853927979337313e-18,-5.820174311640499e-18,-5.079081694158315e-18,0.0071428571827709675,-0.0,-0.0,8.216327264797989e-35,1.1328806141609079e-18,4.531522353246055e-19,3.965082252960754e-19,7.788554286979727e-19,3.398641894181512e-19,5.727341175662168e-19,0.0023809524718672037,-0.0023809524718672037,-0.0011904762359336019,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,-0.0020408162381500006,9.096690988766043e-21,-0.0008163265301845968,-2.7012022342619538e-19,-0.0,-0.0,0.0008163265301845968,2.7171236515960096e-19,-0.0,-5.703975779049988e-21,1.721082752303512e-21,-2.710505431213761e-20,-0.0,-7.745088369170766e-22,0.0017857142956927419,-0.0017857142956927419,-2.3756586802844608e-20,-3.087997575558461e-19,-0.0005952381179668009,8.216327264797989e-35,-0.0,2.7171236515960096e-19,0.0005952381179668009,0.0,1.3711183063275247e-21,6.776263578034403e-21,-2.7966510009632954e-22,1.1954267194187172e-20,6.869727717110792e-21,0.0011337868636474013,-2.2657612283218157e-18,-0.0022675737272948027,-9.230988159694493e-34,-8.055590236143171e-34,1.1328806141609079e-18,-0.0,-0.0,0.0,0.0005668934318237007,7.187144078510911e-35,6.28875070996464e-35,1.235290393875049e-34,5.390357915390221e-35,9.083751408152381e-35,0.0013605442363768816,-8.961579630629058e-19,-0.0006802721181884408,-0.0005442177061922848,-7.078591629573999e-21,4.531522353246055e-19,-0.0,-5.703975779049988e-21,1.3711183063275247e-21,7.187144078510911e-35,0.0002721088530961424,1.1473885688518052e-21,-2.4180907838864436e-20,-3.3881317890172014e-21,1.8281578090861635e-21,0.0011904762359336019,-8.176479246800252e-19,-0.0005952381179668009,-2.710505431213761e-20,-0.00039682540227659047,3.965082252960754e-19,-0.0,1.721082752303512e-21,6.776263578034403e-21,6.28875070996464e-35,1.1473885688518052e-21,0.00019841270113829523,2.689191838339561e-21,2.831948954509757e-21,1.2510025129278402e-20,0.0008503401186317205,-1.4891092536793194e-18,5.238469226460688e-20,-0.0012755101779475808,1.3010426069826053e-18,7.788554286979727e-19,-0.0,-2.710505431213761e-20,-2.7966510009632954e-22,1.235290393875049e-34,-2.4180907838864436e-20,2.689191838339561e-21,0.00025510202976875007,-1.342765778025539e-19,-1.5929809339864115e-19,0.0010204081190750003,-7.155912078838452e-19,-2.5517116462672162e-23,-0.0004081632650922984,-0.0003401360590942204,3.398641894181512e-19,-0.0,-0.0,1.1954267194187172e-20,5.390357915390221e-35,-3.3881317890172014e-21,2.831948954509757e-21,-1.342765778025539e-19,0.0001360544265480712,-4.7079388460239043e-20,0.0006613756413571537,-1.1641411136777822e-18,-4.210046879983446e-20,9.32995004076883e-19,-0.0007936508045531809,5.727341175662168e-19,-0.0,-7.745088369170766e-22,6.869727717110792e-21,9.083751408152381e-35,1.8281578090861635e-21,1.2510025129278402e-20,-1.5929809339864115e-19,-4.7079388460239043e-20,0.00013227513409219682,3.0,5.0,6.0,8.0,0.05373677238821983,-0.01974206417798996,-0.013657407835125923,-0.01185515895485878,-0.009391534142196178,0.0020833334419876337,0.0020833334419876337,0.0017857142956927419,0.0013888889225199819,0.0009920635493472219,0.0011904762359336019,0.0009259259095415473,0.0007440476329065859,0.0007936508045531809,0.00046296295477077365,-0.01974206417798996,0.04057539626955986,0.0020833334419876337,0.0017857142956927419,0.0013888889225199819,-0.012500000186264515,-0.0020833334419876337,-0.0017857142956927419,-0.0013888889225199819,-1.9825412040285595e-18,-7.930164505921508e-19,-6.167905841714036e-19,-1.3629969872967551e-18,-5.807342465593117e-19,-8.01233559399676e-19,-0.013657407835125923,0.0020833334419876337,0.012781084515154362,0.0011904762359336019,0.0009259259095415473,-6.035736338500899e-18,-0.0010416667209938169,-0.0,-0.0,-0.0019841270986944437,-0.0005952381179668009,-0.00046296295477077365,-6.668286956159574e-34,-3.5575383784680614e-20,-2.371692252312041e-20,-0.01185515895485878,0.0017857142956927419,0.0011904762359336019,0.008834325708448887,0.0007936508045531809,-5.125694976036903e-18,-0.0,-0.0007142857066355646,-5.205663437237291e-20,-8.129520565615239e-34,-0.0004761904710903764,-3.5575383784680614e-20,-0.0011160714784637094,-0.0003174603043589741,-1.180006748019279e-18,-0.009391534142196178,0.0013888889225199819,0.0009259259095415473,0.0007936508045531809,0.004998110234737396,-3.9760963179132625e-18,-0.0,-0.0,-0.00039682540227659047,-6.306219543249443e-34,-2.5224878172997773e-34,-0.00026455026818439364,-1.9102524427314784e-18,-0.00022675737272948027,-0.00046296295477077365,0.0020833334419876337,-0.012500000186264515,-6.035736338500899e-18,-5.125694976036903e-18,-3.9760963179132625e-18,0.0062500000931322575,-0.0,-0.0,1.1101772725348778e-34,9.912706020142797e-19,3.965082252960754e-19,3.083952920857018e-19,6.814984936483776e-19,2.64338825480515e-19,3.854941086447787e-19,0.0020833334419876337,-0.0020833334419876337,-0.0010416667209938169,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0017857142956927419,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0013888889225199819,-0.0,-5.205663437237291e-20,-0.00039682540227659047,1.1101772725348778e-34,-0.0,-0.0,0.00039682540227659047,0.0,0.0,-0.0,-1.3261170304725317e-36,1.4873324567988585e-20,8.641523547598802e-21,0.0009920635493472219,-1.9825412040285595e-18,-0.0019841270986944437,-8.129520565615239e-34,-6.306219543249443e-34,9.912706020142797e-19,-0.0,-0.0,0.0,0.0004960317746736109,6.28875070996464e-35,4.891250934842621e-35,1.080878994195594e-34,4.19250047330976e-35,6.114063525060313e-35,0.0011904762359336019,-7.930164505921508e-19,-0.0005952381179668009,-0.0004761904710903764,-2.5224878172997773e-34,3.965082252960754e-19,-0.0,-0.0,0.0,6.28875070996464e-35,0.0002380952355451882,1.9565002878412707e-35,4.323516148973931e-35,1.6770002467210892e-35,2.4456254674213105e-35,0.0009259259095415473,-6.167905841714036e-19,-0.00046296295477077365,-3.5575383784680614e-20,-0.00026455026818439364,3.083952920857018e-19,-0.0,-0.0,-0.0,4.891250934842621e-35,1.9565002878412707e-35,0.00013227513409219682,3.611118645726067e-35,1.0164395367051604e-20,6.776263578034403e-21,0.0007440476329065859,-1.3629969872967551e-18,-6.668286956159574e-34,-0.0011160714784637094,-1.9102524427314784e-18,6.814984936483776e-19,-0.0,-0.0,-1.3261170304725317e-36,1.080878994195594e-34,4.323516148973931e-35,3.611118645726067e-35,0.00022321428696159273,1.473104497898549e-19,2.202823588753282e-19,0.0007936508045531809,-5.807342465593117e-19,-3.5575383784680614e-20,-0.0003174603043589741,-0.00022675737272948027,2.64338825480515e-19,-0.0,-0.0,1.4873324567988585e-20,4.19250047330976e-35,1.6770002467210892e-35,1.0164395367051604e-20,1.473104497898549e-19,9.070294618140906e-05,2.2455717658221394e-20,0.00046296295477077365,-8.01233559399676e-19,-2.371692252312041e-20,-1.180006748019279e-18,-0.00046296295477077365,3.854941086447787e-19,-0.0,-0.0,8.641523547598802e-21,6.114063525060313e-35,2.4456254674213105e-35,6.776263578034403e-21,2.202823588753282e-19,2.2455717658221394e-20,6.613756704609841e-05,3.0,5.0,7.0,3.0,0.10241874307394028,-0.0416666679084301,-0.028911564499139786,-0.02222222276031971,-0.0416666679084301,0.004761904943734407,0.004761904943734407,0.0035714285913854837,0.0071428571827709675,0.0022675737272948027,0.0023809524718672037,0.004761904943734407,0.0013227512827143073,0.0035714285913854837,0.004761904943734407,-0.0416666679084301,0.0892857164144516,0.004761904943734407,0.0035714285913854837,0.0071428571827709675,-0.02857142873108387,-0.004761904943734407,-0.0035714285913854837,-0.0071428571827709675,-4.5315224566436314e-18,-1.5860329011843016e-18,-3.1720658023686032e-18,-2.290936470264867e-18,-2.3790494034752407e-18,-1.5860329632228476e-17,-0.028911564499139786,0.004761904943734407,0.02806122414767742,0.0023809524718672037,0.004761904943734407,-1.3028127734934688e-17,-0.0023809524718672037,-0.0,-0.0,-0.004535147454589605,-0.0011904762359336019,-0.0023809524718672037,-8.685463271996947e-34,-8.867138678981417e-34,-7.226477152638757e-33,-0.02222222276031971,0.0035714285913854837,0.0023809524718672037,0.014285714365541935,0.0035714285913854837,-9.648367013716523e-18,-0.0,-0.0011904762359336019,-7.930164505921508e-19,-1.530262678497781e-33,-0.0007936508045531809,-1.0711839208661948e-33,-0.0015873016091063619,-0.0011904762359336019,-3.1720658023686032e-18,-0.0416666679084301,0.0071428571827709675,0.004761904943734407,0.0035714285913854837,0.0892857164144516,-2.2600968195641445e-17,-0.0,-7.930164505921508e-19,-0.0071428571827709675,-3.584588105569993e-33,-1.0527861485788798e-33,-0.004761904943734407,-1.0842021724855044e-19,-0.0035714285913854837,-0.02857142873108387,0.004761904943734407,-0.02857142873108387,-1.3028127734934688e-17,-9.648367013716523e-18,-2.2600968195641445e-17,0.014285714365541935,-0.0,-0.0,-0.0,2.2657612283218157e-18,7.930164505921508e-19,1.5860329011843016e-18,1.1454682351324336e-18,1.1895247017376204e-18,7.930164816114238e-18,0.004761904943734407,-0.004761904943734407,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0035714285913854837,-0.0,-0.0011904762359336019,-7.930164505921508e-19,-0.0,-0.0,0.0011904762359336019,7.930164505921508e-19,0.0,-0.0,0.0,-0.0,-0.0,-2.65171149544798e-35,0.0071428571827709675,-0.0071428571827709675,-0.0,-7.930164505921508e-19,-0.0071428571827709675,-0.0,-0.0,7.930164505921508e-19,0.0071428571827709675,0.0,-0.0,0.0,-0.0,-0.0,0.0,0.0022675737272948027,-4.5315224566436314e-18,-0.004535147454589605,-1.530262678497781e-33,-3.584588105569993e-33,2.2657612283218157e-18,-0.0,0.0,0.0,0.0011337868636474013,1.257750141992928e-34,2.515500283985856e-34,1.8167502816304762e-34,1.8866252703865772e-34,1.2577502108695502e-33,0.0023809524718672037,-1.5860329011843016e-18,-0.0011904762359336019,-0.0007936508045531809,-1.0527861485788798e-33,7.930164505921508e-19,-0.0,-0.0,-0.0,1.257750141992928e-34,0.00039682540227659047,8.804251223539237e-35,4.891250719603177e-36,-0.0,4.38350567793766e-34,0.004761904943734407,-3.1720658023686032e-18,-0.0023809524718672037,-1.0711839208661948e-33,-0.004761904943734407,1.5860329011843016e-18,-0.0,0.0,0.0,2.515500283985856e-34,8.804251223539237e-35,0.0023809524718672037,1.2717252086207704e-34,1.320637712229478e-34,8.804251567922347e-34,0.0013227512827143073,-2.290936470264867e-18,-8.685463271996947e-34,-0.0015873016091063619,-1.0842021724855044e-19,1.1454682351324336e-18,-0.0,-0.0,-0.0,1.8167502816304762e-34,4.891250719603177e-36,1.2717252086207704e-34,0.00026455026818439364,7.336876258770969e-36,6.6880435264480425e-34,0.0035714285913854837,-2.3790494034752407e-18,-8.867138678981417e-34,-0.0011904762359336019,-0.0035714285913854837,1.1895247017376204e-18,-0.0,-0.0,-0.0,1.8866252703865772e-34,-0.0,1.320637712229478e-34,7.336876258770969e-36,0.0011904762359336019,3.1720658023686032e-18,0.004761904943734407,-1.5860329632228476e-17,-7.226477152638757e-33,-3.1720658023686032e-18,-0.02857142873108387,7.930164816114238e-18,-0.0,-2.65171149544798e-35,0.0,1.2577502108695502e-33,4.38350567793766e-34,8.804251567922347e-34,6.6880435264480425e-34,3.1720658023686032e-18,0.014285714365541935,3.0,5.0,7.0,4.0,0.08282596617937088,-0.03232142701745033,-0.022397959604859352,-0.017202381044626236,-0.026428570970892906,0.0035714285913854837,0.0035714285913854837,0.0026785715017467737,0.004285714123398066,0.001700680237263441,0.0017857142956927419,0.0028571428265422583,0.0009920635493472219,0.002142857061699033,0.0023809524718672037,-0.03232142701745033,0.06803571432828903,0.0035714285913854837,0.0026785715017467737,0.004285714123398066,-0.02142857201397419,-0.0035714285913854837,-0.0026785715017467737,-0.004285714123398066,-3.3986419458803e-18,3.568574208610438e-18,5.709718402904455e-18,7.87931057923509e-18,9.992007618673103e-18,2.2997477222268738e-17,-0.022397959604859352,0.0035714285913854837,0.021403061226010323,0.0017857142956927419,0.0028571428265422583,6.967216154490738e-19,-0.0017857142956927419,5.947623508688102e-19,9.516196993515503e-19,-0.003401360474526882,-0.0008928571478463709,-0.0014285714132711291,2.0517727057816445e-18,3.6705333180943364e-18,5.400064167775842e-18,-0.017202381044626236,0.0026785715017467737,0.0017857142956927419,0.010892856866121292,0.002142857061699033,3.2434373858024855e-17,7.969814891596355e-18,-0.0008928571478463709,1.3367990916226468e-19,3.686357696802782e-18,-0.0005952381179668009,-1.9837998627281355e-19,-0.0011904762359336019,-0.0007142857066355646,9.154256878662566e-19,-0.026428570970892906,0.004285714123398066,0.0028571428265422583,0.002142857061699033,0.034285712987184525,5.1863274803731624e-17,1.284686682012533e-17,1.3367990916226468e-19,-0.0028571428265422583,5.5507553822773834e-18,-1.9837998627281355e-19,-0.0019047618843615055,-5.421010862427522e-19,-0.0014285714132711291,-0.0071428571827709675,0.0035714285913854837,-0.02142857201397419,6.967216154490738e-19,3.2434373858024855e-17,5.1863274803731624e-17,0.010714286006987095,3.88795726317311e-32,-2.9738117026452626e-18,-4.7580988069504814e-18,1.69932097294015e-18,-1.387778801460961e-18,-2.2204459996194763e-18,-3.105981102460823e-18,-4.0443837997922714e-18,-9.119689414454282e-18,0.0035714285913854837,-0.0035714285913854837,-0.0017857142956927419,7.969814891596355e-18,1.284686682012533e-17,3.88795726317311e-32,0.0017857142956927419,-5.947623508688102e-19,-9.516196993515503e-19,4.304380398118927e-33,-3.965082252960754e-19,-6.34413150133963e-19,-7.930164505921508e-19,-9.516196993515503e-19,-2.3790494034752407e-18,0.0026785715017467737,-0.0026785715017467737,5.947623508688102e-19,-0.0008928571478463709,1.3367990916226468e-19,-2.9738117026452626e-18,-5.947623508688102e-19,0.0008928571478463709,-1.3367990916226468e-19,-4.333342374871281e-34,-3.168126023190255e-35,8.305572885169955e-34,-2.710505431213761e-20,-0.0,3.334266216220402e-33,0.004285714123398066,-0.004285714123398066,9.516196993515503e-19,1.3367990916226468e-19,-0.0028571428265422583,-4.7580988069504814e-18,-9.516196993515503e-19,-1.3367990916226468e-19,0.0028571428265422583,-7.546501081546309e-34,8.275480229788904e-34,1.3241593968772707e-33,1.8055593228630336e-33,2.3035927694194204e-33,5.3177678331490826e-33,0.001700680237263441,-3.3986419458803e-18,-0.003401360474526882,3.686357696802782e-18,5.5507553822773834e-18,1.69932097294015e-18,4.304380398118927e-33,-4.333342374871281e-34,-7.546501081546309e-34,0.0008503401186317205,-1.0609516764302874e-19,-1.697522733987248e-19,-3.146890767220705e-19,-6.797283788363024e-19,-7.552537427739386e-19,0.0017857142956927419,3.568574208610438e-18,-0.0008928571478463709,-0.0005952381179668009,-1.9837998627281355e-19,-1.387778801460961e-18,-3.965082252960754e-19,-3.168126023190255e-35,8.275480229788904e-34,-1.0609516764302874e-19,0.00029761905898340046,9.918999313640677e-20,-1.1538268417010301e-35,-0.0,1.7935222607106134e-33,0.0028571428265422583,5.709718402904455e-18,-0.0014285714132711291,-1.9837998627281355e-19,-0.0019047618843615055,-2.2204459996194763e-18,-6.34413150133963e-19,8.305572885169955e-34,1.3241593968772707e-33,-1.697522733987248e-19,9.918999313640677e-20,0.0009523809421807528,9.870390964984584e-34,1.3150490401519095e-33,2.8859576500717366e-33,0.0009920635493472219,7.87931057923509e-18,2.0517727057816445e-18,-0.0011904762359336019,-5.421010862427522e-19,-3.105981102460823e-18,-7.930164505921508e-19,-2.710505431213761e-20,1.8055593228630336e-33,-3.146890767220705e-19,-1.1538268417010301e-35,9.870390964984584e-34,0.00019841270113829523,8.198633599296865e-20,4.4056469836361075e-20,0.002142857061699033,9.992007618673103e-18,3.6705333180943364e-18,-0.0007142857066355646,-0.0014285714132711291,-4.0443837997922714e-18,-9.516196993515503e-19,-0.0,2.3035927694194204e-33,-6.797283788363024e-19,-0.0,1.3150490401519095e-33,8.198633599296865e-20,0.0004761904710903764,-9.62735559218191e-19,0.0023809524718672037,2.2997477222268738e-17,5.400064167775842e-18,9.154256878662566e-19,-0.0071428571827709675,-9.119689414454282e-18,-2.3790494034752407e-18,3.334266216220402e-33,5.3177678331490826e-33,-7.552537427739386e-19,1.7935222607106134e-33,2.8859576500717366e-33,4.4056469836361075e-20,-9.62735559218191e-19,0.0023809524718672037,3.0,5.0,7.0,5.0,0.06964852660894394,-0.026428570970892906,-0.018299318850040436,-0.014047618955373764,-0.018299318850040436,0.0028571428265422583,0.0028571428265422583,0.002142857061699033,0.0028571428265422583,0.0013605442363768816,0.0014285714132711291,0.0019047618843615055,0.0007936508045531809,0.0014285714132711291,0.0013605442363768816,-0.026428570970892906,0.054999999701976776,0.0028571428265422583,0.002142857061699033,0.0028571428265422583,-0.017142856493592262,-0.0028571428265422583,-0.002142857061699033,-0.0028571428265422583,-2.7189135153452095e-18,-9.537227026613898e-19,-1.268826300267926e-18,-1.4558769623772718e-18,-9.312909086174471e-19,-2.7189135153452095e-18,-0.018299318850040436,0.0028571428265422583,0.017312925308942795,0.0014285714132711291,0.0019047618843615055,-8.134083035082035e-18,-0.0014285714132711291,-2.1029782682389284e-21,-0.0,-0.002721088472753763,-0.0007142857066355646,-0.0009523809421807528,-2.803971226266963e-21,1.0164395367051604e-20,-1.2900922848934946e-33,-0.014047618955373764,0.002142857061699033,0.0014285714132711291,0.008809523656964302,0.0014285714132711291,-6.026924797025678e-18,-0.0,-0.0007142857066355646,-0.0,-9.558901492405986e-34,-0.0004761904710903764,-4.460820604620631e-34,-0.0009523809421807528,-0.0004761904710903764,-9.558901492405986e-34,-0.018299318850040436,0.0028571428265422583,0.0019047618843615055,0.0014285714132711291,0.017312925308942795,-8.134083035082035e-18,-0.0,2.0328790734103208e-20,-0.0014285714132711291,-1.2900922848934946e-33,1.0164395367051604e-20,-0.0009523809421807528,2.710505431213761e-20,-0.0007142857066355646,-0.002721088472753763,0.0028571428265422583,-0.017142856493592262,-8.134083035082035e-18,-6.026924797025678e-18,-8.134083035082035e-18,0.008571428246796131,-0.0,9.62964972193618e-35,-0.0,1.3594567576726047e-18,4.758098496757752e-19,6.34413150133963e-19,6.872808997204295e-19,4.758098496757752e-19,1.3594567576726047e-18,0.0028571428265422583,-0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.002142857061699033,-2.1029782682389284e-21,-0.0007142857066355646,2.0328790734103208e-20,9.62964972193618e-35,-0.0,0.0007142857066355646,-0.0,-0.0,7.009928065667407e-22,0.0,2.710505431213761e-20,-6.776263578034403e-21,-0.0,0.0028571428265422583,-0.0028571428265422583,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-2.7189135153452095e-18,-0.002721088472753763,-9.558901492405986e-34,-1.2900922848934946e-33,1.3594567576726047e-18,-0.0,-0.0,-0.0,0.0006802721181884408,7.546500966751939e-35,1.0062000906354684e-34,1.0900501460194117e-34,7.546500966751939e-35,2.1561431661560882e-34,0.0014285714132711291,-9.537227026613898e-19,-0.0007142857066355646,-0.0004761904710903764,1.0164395367051604e-20,4.758098496757752e-19,-0.0,7.009928065667407e-22,-0.0,7.546500966751939e-35,0.0002380952355451882,3.5217004320185096e-35,9.346570417642557e-22,-3.3881317890172014e-21,7.546500966751939e-35,0.0019047618843615055,-1.268826300267926e-18,-0.0009523809421807528,-4.460820604620631e-34,-0.0009523809421807528,6.34413150133963e-19,-0.0,0.0,-0.0,1.0062000906354684e-34,3.5217004320185096e-35,0.0004761904710903764,5.086900719688711e-35,3.5217004320185096e-35,1.0062000906354684e-34,0.0007936508045531809,-1.4558769623772718e-18,-2.803971226266963e-21,-0.0009523809421807528,2.710505431213761e-20,6.872808997204295e-19,-0.0,2.710505431213761e-20,-0.0,1.0900501460194117e-34,9.346570417642557e-22,5.086900719688711e-35,0.00015873015217948705,2.0850042555291977e-21,1.0900501460194117e-34,0.0014285714132711291,-9.312909086174471e-19,1.0164395367051604e-20,-0.0004761904710903764,-0.0007142857066355646,4.758098496757752e-19,-0.0,-6.776263578034403e-21,-0.0,7.546500966751939e-35,-3.3881317890172014e-21,3.5217004320185096e-35,2.0850042555291977e-21,0.0002380952355451882,7.546500966751939e-35,0.0013605442363768816,-2.7189135153452095e-18,-1.2900922848934946e-33,-9.558901492405986e-34,-0.002721088472753763,1.3594567576726047e-18,-0.0,-0.0,-0.0,2.1561431661560882e-34,7.546500966751939e-35,1.0062000906354684e-34,1.0900501460194117e-34,7.546500966751939e-35,0.0006802721181884408,3.0,5.0,7.0,6.0,0.06013794243335724,-0.022363945841789246,-0.015476190485060215,-0.011876417323946953,-0.01343537401407957,0.0023809524718672037,0.0023809524718672037,0.0017857142956927419,0.0020408162381500006,0.0011337868636474013,0.0011904762359336019,0.0013605442363768816,0.0006613756413571537,0.0010204081190750003,0.0008503401186317205,-0.022363945841789246,0.046173468232154846,0.0023809524718672037,0.0017857142956927419,0.0020408162381500006,-0.014285714365541935,-0.0023809524718672037,-0.0017857142956927419,-0.0020408162381500006,-2.2657612283218157e-18,-7.730266488128295e-19,-8.893965887358974e-19,-1.1344493621926147e-18,-7.553373397145947e-19,-1.449647465184135e-18,-0.015476190485060215,0.0023809524718672037,0.01454081665724516,0.0011904762359336019,0.0013605442363768816,-6.853927979337313e-18,-0.0011904762359336019,1.767274448335098e-20,1.9688336451311223e-20,-0.0022675737272948027,-0.0005952381179668009,-0.0006802721181884408,-6.668900946741918e-21,-3.0372963800173326e-20,3.505282212622304e-20,-0.011876417323946953,0.0017857142956927419,0.0011904762359336019,0.007397959008812904,0.0010204081190750003,-5.079081694158315e-18,-0.0,-0.0005952381179668009,-2.4806978549403375e-19,-8.055590236143171e-34,-0.00039682540227659047,-4.0657581468206416e-20,-0.0007936508045531809,-0.0003401360590942204,-4.77227443375235e-20,-0.01343537401407957,0.0020408162381500006,0.0013605442363768816,0.0010204081190750003,0.010051020421087742,-5.820174311640499e-18,-0.0,-2.1470788532975675e-19,-0.0008163265301845968,-9.230988159694493e-34,1.883172307235294e-20,-0.0005442177061922848,2.710505431213761e-20,-0.0004081632650922984,-0.0012755101779475808,0.0023809524718672037,-0.014285714365541935,-6.853927979337313e-18,-5.079081694158315e-18,-5.820174311640499e-18,0.0071428571827709675,-0.0,-4.81482486096809e-35,2.1295460567447363e-35,1.1328806141609079e-18,3.965082252960754e-19,4.531522353246055e-19,5.727341175662168e-19,3.398641894181512e-19,7.788554286979727e-19,0.0023809524718672037,-0.0023809524718672037,-0.0011904762359336019,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0017857142956927419,1.767274448335098e-20,-0.0005952381179668009,-2.1470788532975675e-19,-4.81482486096809e-35,-0.0,0.0005952381179668009,2.2327047128999356e-19,0.0,-5.9000224309864575e-21,1.0929212669094806e-23,-0.0,6.776263578034403e-21,-5.327990282798743e-21,0.0020408162381500006,-0.0020408162381500006,1.9688336451311223e-20,-2.4806978549403375e-19,-0.0008163265301845968,2.1295460567447363e-35,-0.0,2.2327047128999356e-19,0.0008163265301845968,-0.0,-9.158927040234638e-22,-6.776263578034403e-21,-4.407544248386794e-21,2.211205642544829e-20,-3.683177096874636e-20,0.0011337868636474013,-2.2657612283218157e-18,-0.0022675737272948027,-8.055590236143171e-34,-9.230988159694493e-34,1.1328806141609079e-18,-0.0,0.0,-0.0,0.0005668934318237007,6.28875070996464e-35,7.187144078510911e-35,9.083751408152381e-35,5.390357915390221e-35,1.235290393875049e-34,0.0011904762359336019,-7.730266488128295e-19,-0.0005952381179668009,-0.00039682540227659047,1.883172307235294e-20,3.965082252960754e-19,-0.0,-5.9000224309864575e-21,-9.158927040234638e-22,6.28875070996464e-35,0.00019841270113829523,7.286141779396537e-24,2.2108233542392715e-21,-3.3881317890172014e-21,-1.4310824383890836e-21,0.0013605442363768816,-8.893965887358974e-19,-0.0006802721181884408,-4.0657581468206416e-20,-0.0005442177061922848,4.531522353246055e-19,-0.0,1.0929212669094806e-23,-6.776263578034403e-21,7.187144078510911e-35,7.286141779396537e-24,0.0002721088530961424,1.4572283558793075e-23,1.6214943666889972e-20,-1.2303830166760387e-20,0.0006613756413571537,-1.1344493621926147e-18,-6.668900946741918e-21,-0.0007936508045531809,2.710505431213761e-20,5.727341175662168e-19,-0.0,-0.0,-4.407544248386794e-21,9.083751408152381e-35,2.2108233542392715e-21,1.4572283558793075e-23,0.00013227513409219682,2.068870057447226e-36,-8.382393064845227e-21,0.0010204081190750003,-7.553373397145947e-19,-3.0372963800173326e-20,-0.0003401360590942204,-0.0004081632650922984,3.398641894181512e-19,-0.0,6.776263578034403e-21,2.211205642544829e-20,5.390357915390221e-35,-3.3881317890172014e-21,1.6214943666889972e-20,2.068870057447226e-36,0.0001360544265480712,4.4159382736790035e-20,0.0008503401186317205,-1.449647465184135e-18,3.505282212622304e-20,-4.77227443375235e-20,-0.0012755101779475808,7.788554286979727e-19,-0.0,-5.327990282798743e-21,-3.683177096874636e-20,1.235290393875049e-34,-1.4310824383890836e-21,-1.2303830166760387e-20,-8.382393064845227e-21,4.4159382736790035e-20,0.00025510202976875007,3.0,5.0,7.0,7.0,0.05293569713830948,-0.019387755542993546,-0.013411078602075577,-0.010289115831255913,-0.010289115831255913,0.0020408162381500006,0.0020408162381500006,0.0015306122368201613,0.0015306122368201613,0.0009718172950670123,0.0010204081190750003,0.0010204081190750003,0.0005668934318237007,0.0007653061184100807,0.0005668934318237007,-0.019387755542993546,0.03979591652750969,0.0020408162381500006,0.0015306122368201613,0.0015306122368201613,-0.01224489789456129,-0.0020408162381500006,-0.0015306122368201613,-0.0015306122368201613,6.355801468819105e-19,3.482117290986395e-18,3.484806868748111e-18,4.637131914170727e-18,4.367162496109957e-18,4.6833109262277245e-18,-0.013411078602075577,0.0020408162381500006,0.012536442838609219,0.0010204081190750003,0.0010204081190750003,4.3696825018461e-18,-0.0010204081190750003,2.0761741202616526e-18,2.0748864068430606e-18,-0.0019436345901340246,-0.0005102040595375001,-0.0005102040595375001,1.6234644782635512e-18,2.0454979204499704e-18,1.6003763164035477e-18,-0.010289115831255913,0.0015306122368201613,0.0010204081190750003,0.0063775512389838696,0.0007653061184100807,1.736139609185498e-17,5.306254855277122e-18,-0.0005102040595375001,1.5390819228206386e-18,2.622047977278259e-18,-0.0003401360590942204,1.0232158002831948e-18,-0.0006802721181884408,-0.00025510202976875007,1.6108429428869109e-18,-0.010289115831255913,0.0015306122368201613,0.0010204081190750003,0.0007653061184100807,0.0063775512389838696,1.736139609185498e-17,5.306254855277122e-18,1.4202342667702447e-18,-0.0005102040595375001,2.622047977278259e-18,9.382123423929846e-19,-0.0003401360590942204,1.883801274693564e-18,-0.00025510202976875007,-0.0006802721181884408,0.0020408162381500006,-0.01224489789456129,4.3696825018461e-18,1.736139609185498e-17,1.736139609185498e-17,0.006122448947280645,-3.398641894181512e-19,-1.5293888136075891e-18,-1.5293888136075891e-18,3.2368019393839806e-19,-8.49660486470075e-19,-8.49660486470075e-19,-1.5482702450648777e-18,-1.2744907297051125e-18,-1.5482702450648777e-18,0.0020408162381500006,-0.0020408162381500006,-0.0010204081190750003,5.306254855277122e-18,5.306254855277122e-18,-3.398641894181512e-19,0.0010204081190750003,-5.097962712025297e-19,-5.097962712025297e-19,-1.964100168699273e-19,-3.5196367043069403e-19,-3.5196367043069403e-19,-4.342709072648935e-19,-3.823472034018973e-19,-4.342709072648935e-19,0.0015306122368201613,-0.0015306122368201613,2.0761741202616526e-18,-0.0005102040595375001,1.4202342667702447e-18,-1.5293888136075891e-18,-5.097962712025297e-19,0.0005102040595375001,-2.046128826612801e-19,-1.21380069495725e-19,-1.759491874305453e-19,-1.2769263371693808e-19,-1.2197274440461925e-19,-1.3213713977167085e-19,-7.258125365414951e-20,0.0015306122368201613,-0.0015306122368201613,2.0748864068430606e-18,1.5390819228206386e-18,-0.0005102040595375001,-1.5293888136075891e-18,-5.097962712025297e-19,-2.046128826612801e-19,0.0005102040595375001,-1.21380069495725e-19,-1.2702973892885633e-19,-1.7618285302889447e-19,-7.057486245491679e-20,-1.7654212083338098e-19,-1.3535946062196239e-19,0.0009718172950670123,6.355801468819105e-19,-0.0019436345901340246,2.622047977278259e-18,2.622047977278259e-18,3.2368019393839806e-19,-1.964100168699273e-19,-1.21380069495725e-19,-1.21380069495725e-19,0.00048590864753350616,-1.8488670592811885e-19,-1.8488670592811885e-19,-1.7982231847715708e-19,-2.4276013899145e-19,-1.7982231847715708e-19,0.0010204081190750003,3.482117290986395e-18,-0.0005102040595375001,-0.0003401360590942204,9.382123423929846e-19,-8.49660486470075e-19,-3.5196367043069403e-19,-1.759491874305453e-19,-1.2702973892885633e-19,-1.8488670592811885e-19,0.0001700680295471102,-9.117816083011396e-20,-8.812737655935061e-20,-8.809142651444724e-20,-4.6644255915119205e-20,0.0010204081190750003,3.484806868748111e-18,-0.0005102040595375001,1.0232158002831948e-18,-0.0003401360590942204,-8.49660486470075e-19,-3.5196367043069403e-19,-1.2769263371693808e-19,-1.7618285302889447e-19,-1.8488670592811885e-19,-9.117816083011396e-20,0.0001700680295471102,-4.7528114555503454e-20,-1.1428991672462087e-19,-8.131516293641283e-20,0.0005668934318237007,4.637131914170727e-18,1.6234644782635512e-18,-0.0006802721181884408,1.883801274693564e-18,-1.5482702450648777e-18,-4.342709072648935e-19,-1.2197274440461925e-19,-7.057486245491679e-20,-1.7982231847715708e-19,-8.812737655935061e-20,-4.7528114555503454e-20,0.00011337868636474013,-1.3552527156068805e-19,-2.2138656744490404e-19,0.0007653061184100807,4.367162496109957e-18,2.0454979204499704e-18,-0.00025510202976875007,-0.00025510202976875007,-1.2744907297051125e-18,-3.823472034018973e-19,-1.3213713977167085e-19,-1.7654212083338098e-19,-2.4276013899145e-19,-8.809142651444724e-20,-1.1428991672462087e-19,-1.3552527156068805e-19,8.50340147735551e-05,-3.835088170135146e-20,0.0005668934318237007,4.6833109262277245e-18,1.6003763164035477e-18,1.6108429428869109e-18,-0.0006802721181884408,-1.5482702450648777e-18,-4.342709072648935e-19,-7.258125365414951e-20,-1.3535946062196239e-19,-1.7982231847715708e-19,-4.6644255915119205e-20,-8.131516293641283e-20,-2.2138656744490404e-19,-3.835088170135146e-20,0.00011337868636474013,3.0,5.0,7.0,8.0,0.04728599637746811,-0.01711309514939785,-0.011833900585770607,-0.00907738134264946,-0.008134921081364155,0.0017857142956927419,0.0017857142956927419,0.0013392857508733869,0.0011904762359336019,0.0008503401186317205,0.0008928571478463709,0.0007936508045531809,0.0004960317746736109,0.0005952381179668009,0.00039682540227659047,-0.01711309514939785,0.0349702388048172,0.0017857142956927419,0.0013392857508733869,0.0011904762359336019,-0.010714286006987095,-0.0017857142956927419,-0.0013392857508733869,-0.0011904762359336019,-1.69932097294015e-18,1.7881142622043485e-18,1.2162546296419652e-18,3.899672273938876e-18,2.5515639172826156e-18,2.4001778710665296e-18,-0.011833900585770607,0.0017857142956927419,0.01101899053901434,0.0008928571478463709,0.0007936508045531809,4.012285573110034e-19,-0.0008928571478463709,2.377801498123628e-19,2.132665231123831e-19,-0.001700680237263441,-0.00044642857392318547,-0.00039682540227659047,1.034531217472614e-18,9.1258814817247e-19,4.380201033912901e-19,-0.00907738134264946,0.0013392857508733869,0.0008928571478463709,0.0056051588617265224,0.0005952381179668009,1.6785514603756786e-17,4.130293951031416e-18,-0.00044642857392318547,6.53346991237875e-20,1.8998229359781035e-18,-0.00029761905898340046,-4.0657581468206416e-20,-0.0005952381179668009,-0.00019841270113829523,-3.885501015684617e-19,-0.008134921081364155,0.0011904762359336019,0.0007936508045531809,0.0005952381179668009,0.004308389965444803,1.2895958335119128e-17,3.2664725460647397e-18,-2.908081397931173e-19,-0.0003401360590942204,1.222706121431996e-18,-2.462422333281744e-19,-0.00022675737272948027,-5.014435047745458e-19,-0.0001700680295471102,-0.00039682540227659047,0.0017857142956927419,-0.010714286006987095,4.012285573110034e-19,1.6785514603756786e-17,1.2895958335119128e-17,0.0053571430034935474,1.9771832613246138e-32,-1.4869058513226313e-18,-1.1328806141609079e-18,8.49660486470075e-19,-6.938894007304805e-19,-4.909149431428177e-19,-1.5529905512304115e-18,-1.0290332581337037e-18,-9.912706020142797e-19,0.0017857142956927419,-0.0017857142956927419,-0.0008928571478463709,4.130293951031416e-18,3.2664725460647397e-18,1.9771832613246138e-32,0.0008928571478463709,-2.973811754344051e-19,-2.2657611766230274e-19,2.080022192758668e-33,-1.982541126480377e-19,-1.5105075372466654e-19,-3.965082252960754e-19,-2.4545747157140886e-19,-2.64338825480515e-19,0.0013392857508733869,-0.0013392857508733869,2.377801498123628e-19,-0.00044642857392318547,-2.908081397931173e-19,-1.4869058513226313e-18,-2.973811754344051e-19,0.00044642857392318547,-3.197315438867996e-20,-2.6481536735324493e-34,-1.8401060856832582e-21,1.8606098251169164e-20,-1.9933158468143447e-35,1.0164395367051604e-20,3.368926981639193e-20,0.0011904762359336019,-0.0011904762359336019,2.132665231123831e-19,6.53346991237875e-20,-0.0003401360590942204,-1.1328806141609079e-18,-2.2657611766230274e-19,-3.197315438867996e-20,0.0003401360590942204,-1.4444474582904269e-34,4.8371577459088635e-22,3.3881317890172014e-21,-1.928041180716488e-22,-9.450214573197996e-21,2.8494463690149893e-21,0.0008503401186317205,-1.69932097294015e-18,-0.001700680237263441,1.8998229359781035e-18,1.222706121431996e-18,8.49660486470075e-19,2.080022192758668e-33,-2.6481536735324493e-34,-1.4444474582904269e-34,0.00042517005931586027,-5.304758382151437e-20,-4.0417207952077335e-20,-1.5734453836103525e-19,-1.6184009696919903e-19,-6.293781405194439e-20,0.0008928571478463709,1.7881142622043485e-18,-0.00044642857392318547,-0.00029761905898340046,-2.462422333281744e-19,-6.938894007304805e-19,-1.982541126480377e-19,-1.8401060856832582e-21,4.8371577459088635e-22,-5.304758382151437e-20,0.00014880952949170023,2.972694866646648e-20,-2.4534746462787498e-21,5.082197683525802e-21,2.2592569197572037e-20,0.0007936508045531809,1.2162546296419652e-18,-0.00039682540227659047,-4.0657581468206416e-20,-0.00022675737272948027,-4.909149431428177e-19,-1.5105075372466654e-19,1.8606098251169164e-20,3.3881317890172014e-21,-4.0417207952077335e-20,2.972694866646648e-20,0.00011337868636474013,-3.6699508201726953e-22,-1.0004841597295502e-20,2.940642627652177e-21,0.0004960317746736109,3.899672273938876e-18,1.034531217472614e-18,-0.0005952381179668009,-5.014435047745458e-19,-1.5529905512304115e-18,-3.965082252960754e-19,-1.9933158468143447e-35,-1.928041180716488e-22,-1.5734453836103525e-19,-2.4534746462787498e-21,-3.6699508201726953e-22,9.920635056914762e-05,4.478882194650314e-20,4.695478145577617e-20,0.0005952381179668009,2.5515639172826156e-18,9.1258814817247e-19,-0.00019841270113829523,-0.0001700680295471102,-1.0290332581337037e-18,-2.4545747157140886e-19,1.0164395367051604e-20,-9.450214573197996e-21,-1.6184009696919903e-19,5.082197683525802e-21,-1.0004841597295502e-20,4.478882194650314e-20,5.668934318237007e-05,-5.01675469159643e-21,0.00039682540227659047,2.4001778710665296e-18,4.380201033912901e-19,-3.885501015684617e-19,-0.00039682540227659047,-9.912706020142797e-19,-2.64338825480515e-19,3.368926981639193e-20,2.8494463690149893e-21,-6.293781405194439e-20,2.2592569197572037e-20,2.940642627652177e-21,4.695478145577617e-20,-5.01675469159643e-21,5.668934318237007e-05,3.0,5.0,8.0,3.0,0.09169973433017731,-0.03680555522441864,-0.025529099628329277,-0.017592592164874077,-0.03680555522441864,0.004166666883975267,0.004166666883975267,0.0027777778450399637,0.0062500000931322575,0.0019841270986944437,0.0018518518190830946,0.004166666883975267,0.0009259259095415473,0.0027777778450399637,0.004166666883975267,-0.03680555522441864,0.07847221940755844,0.004166666883975267,0.0027777778450399637,0.0062500000931322575,-0.02500000037252903,-0.004166666883975267,-0.0027777778450399637,-0.0062500000931322575,7.37257477290143e-18,4.336808689942018e-18,4.336808689942018e-19,8.239936510889834e-18,7.806255641895632e-18,1.9081958235744878e-17,-0.025529099628329277,0.004166666883975267,0.024669311940670013,0.0018518518190830946,0.004166666883975267,9.970581986446754e-18,-0.0020833334419876337,1.8973538018496328e-19,5.637851296924623e-18,-0.003968254197388887,-0.0009259259095415473,-0.0020833334419876337,5.583641188300348e-18,4.87890977618477e-18,1.734723475976807e-18,-0.017592592164874077,0.0027777778450399637,0.0018518518190830946,0.009656084701418877,0.0027777778450399637,1.4544080136864695e-17,1.022543219727128e-17,-0.0007936508045531809,4.7704895589362195e-18,9.994338613639277e-18,-0.0005291005363687873,3.469446951953614e-18,-0.0009259259095415473,-0.0007936508045531809,-1.734723475976807e-17,-0.03680555522441864,0.0062500000931322575,0.004166666883975267,0.0027777778450399637,0.07847221940755844,2.6454533008646308e-17,4.9299360666313286e-18,-8.170947166261074e-18,-0.0062500000931322575,7.702217000351775e-18,-3.781529789360683e-18,-0.004166666883975267,2.168404344971009e-19,-0.0027777778450399637,-0.02500000037252903,0.004166666883975267,-0.02500000037252903,9.970581986446754e-18,1.4544080136864695e-17,2.6454533008646308e-17,0.012500000186264515,-7.885359234066808e-19,4.073849213982329e-18,-7.039003540939035e-19,-1.0563960826042281e-18,-1.2455052870654888e-18,-4.52917781319735e-19,-1.8431436932253575e-18,-2.1141942363467336e-18,-8.565197162635485e-18,0.004166666883975267,-0.004166666883975267,-0.0020833334419876337,1.022543219727128e-17,4.9299360666313286e-18,-7.885359234066808e-19,0.0020833334419876337,-4.336808689942018e-19,-5.404608904856361e-19,-1.5620874700169634e-18,-8.810029802651687e-19,-4.901366695839819e-19,-9.215718466126788e-19,-8.673617379884035e-19,-5.421010862427522e-20,0.0027777778450399637,-0.0027777778450399637,1.8973538018496328e-19,-0.0007936508045531809,-8.170947166261074e-18,4.073849213982329e-18,-4.336808689942018e-19,0.0007936508045531809,1.5933825043244118e-18,-5.625577151555861e-20,3.767471244158408e-21,4.74063723101464e-19,-2.981555974335137e-19,5.421010862427522e-20,2.574980159653073e-18,0.0062500000931322575,-0.0062500000931322575,5.637851296924623e-18,4.7704895589362195e-18,-0.0062500000931322575,-7.039003540939035e-19,-5.404608904856361e-19,1.5933825043244118e-18,0.0062500000931322575,-9.215718466126788e-19,-1.1445483585924863e-19,-9.484640053146605e-19,-5.421010862427522e-19,-1.6805133673525319e-18,-1.0083080204115191e-17,0.0019841270986944437,7.37257477290143e-18,-0.003968254197388887,9.994338613639277e-18,7.702217000351775e-18,-1.0563960826042281e-18,-1.5620874700169634e-18,-5.625577151555861e-20,-9.215718466126788e-19,0.0009920635493472219,-1.2725770473579711e-18,-3.635977589510992e-19,-8.944667923005412e-19,-7.995991022080595e-19,-1.3823577699190182e-18,0.0018518518190830946,4.336808689942018e-18,-0.0009259259095415473,-0.0005291005363687873,-3.781529789360683e-18,-1.2455052870654888e-18,-8.810029802651687e-19,3.767471244158408e-21,-1.1445483585924863e-19,-1.2725770473579711e-18,0.00026455026818439364,-6.776263578034403e-20,-2.439454888092385e-19,2.710505431213761e-20,1.8431436932253575e-18,0.004166666883975267,4.336808689942018e-19,-0.0020833334419876337,3.469446951953614e-18,-0.004166666883975267,-4.52917781319735e-19,-4.901366695839819e-19,4.74063723101464e-19,-9.484640053146605e-19,-3.635977589510992e-19,-6.776263578034403e-20,0.0020833334419876337,-3.2526065174565133e-19,-6.505213034913027e-19,-3.415236843329339e-18,0.0009259259095415473,8.239936510889834e-18,5.583641188300348e-18,-0.0009259259095415473,2.168404344971009e-19,-1.8431436932253575e-18,-9.215718466126788e-19,-2.981555974335137e-19,-5.421010862427522e-19,-8.944667923005412e-19,-2.439454888092385e-19,-3.2526065174565133e-19,0.00013227513409219682,-1.0842021724855044e-19,1.1926223897340549e-18,0.0027777778450399637,7.806255641895632e-18,4.87890977618477e-18,-0.0007936508045531809,-0.0027777778450399637,-2.1141942363467336e-18,-8.673617379884035e-19,5.421010862427522e-20,-1.6805133673525319e-18,-7.995991022080595e-19,2.710505431213761e-20,-6.505213034913027e-19,-1.0842021724855044e-19,0.0007936508045531809,1.7158012024767737e-18,0.004166666883975267,1.9081958235744878e-17,1.734723475976807e-18,-1.734723475976807e-17,-0.02500000037252903,-8.565197162635485e-18,-5.421010862427522e-20,2.574980159653073e-18,-1.0083080204115191e-17,-1.3823577699190182e-18,1.8431436932253575e-18,-3.415236843329339e-18,1.1926223897340549e-18,1.7158012024767737e-18,0.012500000186264515,3.0,5.0,8.0,4.0,0.07408729940652847,-0.028541667386889458,-0.019771825522184372,-0.013611110858619213,-0.023333333432674408,0.0031250000465661287,0.0031250000465661287,0.0020833334419876337,0.0037499999161809683,0.0014880952658131719,0.0013888889225199819,0.0024999999441206455,0.0006944444612599909,0.0016666667070239782,0.0020833334419876337,-0.028541667386889458,0.05979166552424431,0.0031250000465661287,0.0020833334419876337,0.0037499999161809683,-0.01875000074505806,-0.0031250000465661287,-0.0020833334419876337,-0.0037499999161809683,-9.974659986866641e-18,-2.2768245622195593e-18,-3.0357660829594124e-18,-4.336808689942018e-18,-6.505213034913027e-19,1.9081958235744878e-17,-0.019771825522184372,0.0031250000465661287,0.018814483657479286,0.0013888889225199819,0.0024999999441206455,-1.3451147073013694e-17,-0.0015625000232830644,-2.168404344971009e-18,-2.3852447794681098e-18,-0.0029761905316263437,-0.0006944444612599909,-0.0012499999720603228,-3.2255014631443757e-18,-2.222614453595284e-18,6.938893903907228e-18,-0.013611110858619213,0.0020833334419876337,0.0013888889225199819,0.007361111231148243,0.0016666667070239782,-1.3624478634471118e-17,-5.571085827372712e-18,-0.0005952381179668009,-6.505213034913027e-19,-5.634026827362484e-18,-0.00039682540227659047,-1.5178830414797062e-18,-0.0006944444612599909,-0.0004761904710903764,2.6020852139652106e-18,-0.023333333432674408,0.0037499999161809683,0.0024999999441206455,0.0016666667070239782,0.030138889327645302,1.8919327909872052e-17,1.9582189920922034e-18,4.4453265145028494e-18,-0.0024999999441206455,-3.2185105461973838e-18,2.9749126800405707e-18,-0.0016666667070239782,-5.421010862427522e-19,-0.0011111111380159855,-0.0062500000931322575,0.0031250000465661287,-0.01875000074505806,-1.3451147073013694e-17,-1.3624478634471118e-17,1.8919327909872052e-17,0.00937500037252903,1.5467010834428646e-18,2.3472662292088095e-18,-5.0144673077893476e-18,1.9727726145846145e-18,7.57089308251982e-19,5.561253131431294e-19,1.0842021724855044e-18,3.7947076036992655e-19,-5.2583805365546965e-18,0.0031250000465661287,-0.0031250000465661287,-0.0015625000232830644,-5.571085827372712e-18,1.9582189920922034e-18,1.5467010834428646e-18,0.0015625000232830644,3.5236570605778894e-19,-3.814341042499767e-21,1.7315060535867055e-18,3.213598230732161e-19,6.06238137699488e-19,5.421010862427522e-19,2.168404344971009e-19,-1.2468324983583301e-18,0.0020833334419876337,-0.0020833334419876337,-2.168404344971009e-18,-0.0005952381179668009,4.4453265145028494e-18,2.3472662292088095e-18,3.5236570605778894e-19,0.0005952381179668009,-5.262824977985944e-19,3.9065977402198993e-19,6.100888056225902e-20,-3.291409212640142e-21,1.8973538018496328e-19,-4.0657581468206416e-20,-1.1519648082658485e-18,0.0037499999161809683,-0.0037499999161809683,-2.3852447794681098e-18,-6.505213034913027e-19,-0.0024999999441206455,-5.0144673077893476e-18,-3.814341042499767e-21,-5.262824977985944e-19,0.0024999999441206455,6.776263578034403e-19,-7.65350348104852e-20,-1.0754586149168775e-19,2.439454888092385e-19,-1.8973538018496328e-19,-7.589415207398531e-19,0.0014880952658131719,-9.974659986866641e-18,-0.0029761905316263437,-5.634026827362484e-18,-3.2185105461973838e-18,1.9727726145846145e-18,1.7315060535867055e-18,3.9065977402198993e-19,6.776263578034403e-19,0.0007440476329065859,5.038677643547856e-19,1.0842021724855044e-18,4.0657581468206416e-19,4.54009659728305e-19,-4.743384504624082e-19,0.0013888889225199819,-2.2768245622195593e-18,-0.0006944444612599909,-0.00039682540227659047,2.9749126800405707e-18,7.57089308251982e-19,3.213598230732161e-19,6.100888056225902e-20,-7.65350348104852e-20,5.038677643547856e-19,0.00019841270113829523,-0.0,1.0842021724855044e-19,-5.421010862427522e-20,-8.334804200982315e-19,0.0024999999441206455,-3.0357660829594124e-18,-0.0012499999720603228,-1.5178830414797062e-18,-0.0016666667070239782,5.561253131431294e-19,6.06238137699488e-19,-3.291409212640142e-21,-1.0754586149168775e-19,1.0842021724855044e-18,-0.0,0.0008333333535119891,1.8973538018496328e-19,1.6263032587282567e-19,-2.439454888092385e-19,0.0006944444612599909,-4.336808689942018e-18,-3.2255014631443757e-18,-0.0006944444612599909,-5.421010862427522e-19,1.0842021724855044e-18,5.421010862427522e-19,1.8973538018496328e-19,2.439454888092385e-19,4.0657581468206416e-19,1.0842021724855044e-19,1.8973538018496328e-19,9.920635056914762e-05,8.131516293641283e-20,0.0,0.0016666667070239782,-6.505213034913027e-19,-2.222614453595284e-18,-0.0004761904710903764,-0.0011111111380159855,3.7947076036992655e-19,2.168404344971009e-19,-4.0657581468206416e-20,-1.8973538018496328e-19,4.54009659728305e-19,-5.421010862427522e-20,1.6263032587282567e-19,8.131516293641283e-20,0.0003174603043589741,3.8774667654912545e-19,0.0020833334419876337,1.9081958235744878e-17,6.938893903907228e-18,2.6020852139652106e-18,-0.0062500000931322575,-5.2583805365546965e-18,-1.2468324983583301e-18,-1.1519648082658485e-18,-7.589415207398531e-19,-4.743384504624082e-19,-8.334804200982315e-19,-2.439454888092385e-19,0.0,3.8774667654912545e-19,0.0020833334419876337,3.0,5.0,8.0,5.0,0.062261905521154404,-0.023333333432674408,-0.016150793060660362,-0.011111111380159855,-0.016150793060660362,0.0024999999441206455,0.0024999999441206455,0.0016666667070239782,0.0024999999441206455,0.0011904762359336019,0.0011111111380159855,0.0016666667070239782,0.0005555555690079927,0.0011111111380159855,0.0011904762359336019,-0.023333333432674408,0.04833333194255829,0.0024999999441206455,0.0016666667070239782,0.0024999999441206455,-0.014999999664723873,-0.0024999999441206455,-0.0016666667070239782,-0.0024999999441206455,-1.3010426069826053e-18,-2.3852447794681098e-18,0.0,-3.469446951953614e-18,-2.3852447794681098e-18,4.336808689942018e-19,-0.016150793060660362,0.0024999999441206455,0.015218254178762436,0.0011111111380159855,0.0016666667070239782,-5.866754506294585e-18,-0.0012499999720603228,7.453889935837843e-19,-1.3010426069826053e-18,-0.0023809524718672037,-0.0005555555690079927,-0.0008333333535119891,-1.3552527156068805e-18,-1.2468324983583301e-18,-6.505213034913027e-19,-0.011111111380159855,0.0016666667070239782,0.0011111111380159855,0.0059523810632526875,0.0011111111380159855,-8.48240382794444e-18,-3.506110491834108e-18,-0.0004761904710903764,-1.8431436932253575e-18,-1.0303893173504078e-18,-0.0003174603043589741,-5.421010862427522e-19,-0.0005555555690079927,-0.0003174603043589741,2.8189256484623115e-18,-0.016150793060660362,0.0024999999441206455,0.0016666667070239782,0.0011111111380159855,0.015218254178762436,-5.095750210681871e-18,-2.2193226883476293e-18,2.7903872969437727e-18,-0.0012499999720603228,-2.278996118122664e-18,6.081937994627165e-19,-0.0008333333535119891,-0.0,-0.0005555555690079927,-0.0023809524718672037,0.0024999999441206455,-0.014999999664723873,-5.866754506294585e-18,-8.48240382794444e-18,-5.095750210681871e-18,0.007499999832361937,-1.0181687965497937e-19,-2.351944349163103e-18,-1.0038778943747477e-19,6.3425888094972185e-19,7.587995558672237e-19,2.4314128830807796e-19,9.75781955236954e-19,7.589415207398531e-19,4.607859233063394e-19,0.0024999999441206455,-0.0024999999441206455,-0.0012499999720603228,-3.506110491834108e-18,-2.2193226883476293e-18,-1.0181687965497937e-19,0.0012499999720603228,8.131516293641283e-20,2.5430122139173127e-19,-4.0269740389669883e-20,2.9646473686387876e-19,1.416909465996876e-19,2.981555974335137e-19,2.439454888092385e-19,1.8973538018496328e-19,0.0016666667070239782,-0.0016666667070239782,7.453889935837843e-19,-0.0004761904710903764,2.7903872969437727e-18,-2.351944349163103e-18,8.131516293641283e-20,0.0004761904710903764,-4.501859656479903e-19,-1.1724800506799e-19,-7.595484192778741e-21,-1.754092065116101e-19,1.0842021724855044e-19,-4.0657581468206416e-20,-4.2012834183813297e-19,0.0024999999441206455,-0.0024999999441206455,-1.3010426069826053e-18,-1.8431436932253575e-18,-0.0012499999720603228,-1.0038778943747477e-19,2.5430122139173127e-19,-4.501859656479903e-19,0.0012499999720603228,2.0328790734103208e-19,9.242658963195816e-20,-6.871585157638629e-20,1.8973538018496328e-19,2.710505431213761e-19,-2.0328790734103208e-19,0.0011904762359336019,-1.3010426069826053e-18,-0.0023809524718672037,-1.0303893173504078e-18,-2.278996118122664e-18,6.3425888094972185e-19,-4.0269740389669883e-20,-1.1724800506799e-19,2.0328790734103208e-19,0.0005952381179668009,-2.2051060902560453e-19,5.21965102908382e-21,1.6263032587282567e-19,2.0328790734103208e-19,3.2526065174565133e-19,0.0011111111380159855,-2.3852447794681098e-18,-0.0005555555690079927,-0.0003174603043589741,6.081937994627165e-19,7.587995558672237e-19,2.9646473686387876e-19,-7.595484192778741e-21,9.242658963195816e-20,-2.2051060902560453e-19,0.00015873015217948705,-5.421010862427522e-20,8.131516293641283e-20,1.6940658945086007e-20,-1.5924219408380846e-19,0.0016666667070239782,0.0,-0.0008333333535119891,-5.421010862427522e-19,-0.0008333333535119891,2.4314128830807796e-19,1.416909465996876e-19,-1.754092065116101e-19,-6.871585157638629e-20,5.21965102908382e-21,-5.421010862427522e-20,0.00041666667675599456,6.776263578034403e-20,3.3881317890172014e-20,-1.4907779871675686e-19,0.0005555555690079927,-3.469446951953614e-18,-1.3552527156068805e-18,-0.0005555555690079927,-0.0,9.75781955236954e-19,2.981555974335137e-19,1.0842021724855044e-19,1.8973538018496328e-19,1.6263032587282567e-19,8.131516293641283e-20,6.776263578034403e-20,7.936507608974352e-05,1.3552527156068805e-20,-1.6263032587282567e-19,0.0011111111380159855,-2.3852447794681098e-18,-1.2468324983583301e-18,-0.0003174603043589741,-0.0005555555690079927,7.589415207398531e-19,2.439454888092385e-19,-4.0657581468206416e-20,2.710505431213761e-19,2.0328790734103208e-19,1.6940658945086007e-20,3.3881317890172014e-20,1.3552527156068805e-20,0.00015873015217948705,-3.009701311665137e-19,0.0011904762359336019,4.336808689942018e-19,-6.505213034913027e-19,2.8189256484623115e-18,-0.0023809524718672037,4.607859233063394e-19,1.8973538018496328e-19,-4.2012834183813297e-19,-2.0328790734103208e-19,3.2526065174565133e-19,-1.5924219408380846e-19,-1.4907779871675686e-19,-1.6263032587282567e-19,-3.009701311665137e-19,0.0005952381179668009,3.0,5.0,8.0,6.0,0.05373677238821983,-0.01974206417798996,-0.013657407835125923,-0.009391534142196178,-0.01185515895485878,0.0020833334419876337,0.0020833334419876337,0.0013888889225199819,0.0017857142956927419,0.0009920635493472219,0.0009259259095415473,0.0011904762359336019,0.00046296295477077365,0.0007936508045531809,0.0007440476329065859,-0.01974206417798996,0.04057539626955986,0.0020833334419876337,0.0013888889225199819,0.0017857142956927419,-0.012500000186264515,-0.0020833334419876337,-0.0013888889225199819,-0.0017857142956927419,-1.9825412040285595e-18,-6.286490454329638e-19,-7.930164505921508e-19,-7.947051398126778e-19,-5.168191896994698e-19,-1.3629969872967551e-18,-0.013657407835125923,0.0020833334419876337,0.012781084515154362,0.0009259259095415473,0.0011904762359336019,-6.035736338500899e-18,-0.0010416667209938169,-1.1858461261560205e-20,-0.0,-0.0019841270986944437,-0.00046296295477077365,-0.0005952381179668009,-2.2150710963213804e-20,-2.0962503514492503e-34,-6.581352261254054e-34,-0.009391534142196178,0.0013888889225199819,0.0009259259095415473,0.004998110234737396,0.0007936508045531809,-3.9760963179132625e-18,-0.0,-0.00039682540227659047,-0.0,-6.306219543249443e-34,-0.00026455026818439364,-2.5224878172997773e-34,-0.00046296295477077365,-0.00022675737272948027,-4.335525763792437e-34,-0.01185515895485878,0.0017857142956927419,0.0011904762359336019,0.0007936508045531809,0.008834325708448887,-5.125694976036903e-18,-0.0,1.1858461261560205e-20,-0.0007142857066355646,-8.129520565615239e-34,-2.072667455213359e-34,-0.0004761904710903764,-0.0,-0.0003174603043589741,-0.0011160714784637094,0.0020833334419876337,-0.012500000186264515,-6.035736338500899e-18,-3.9760963179132625e-18,-5.125694976036903e-18,0.0062500000931322575,-0.0,4.81482486096809e-35,-0.0,9.912706020142797e-19,3.083952920857018e-19,3.965082252960754e-19,3.854941086447787e-19,2.64338825480515e-19,6.814984936483776e-19,0.0020833334419876337,-0.0020833334419876337,-0.0010416667209938169,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0013888889225199819,-1.1858461261560205e-20,-0.00039682540227659047,1.1858461261560205e-20,4.81482486096809e-35,-0.0,0.00039682540227659047,-0.0,0.0,3.3881317890172014e-21,0.0,6.776263578034403e-21,-3.3881317890172014e-21,-0.0,0.0017857142956927419,-0.0017857142956927419,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009920635493472219,-1.9825412040285595e-18,-0.0019841270986944437,-6.306219543249443e-34,-8.129520565615239e-34,9.912706020142797e-19,-0.0,0.0,-0.0,0.0004960317746736109,4.891250934842621e-35,6.28875070996464e-35,6.114063525060313e-35,4.19250047330976e-35,1.080878994195594e-34,0.0009259259095415473,-6.286490454329638e-19,-0.00046296295477077365,-0.00026455026818439364,-2.072667455213359e-34,3.083952920857018e-19,-0.0,3.3881317890172014e-21,-0.0,4.891250934842621e-35,0.00013227513409219682,1.9565002878412707e-35,6.32877461861777e-21,-0.0,3.36273491008458e-35,0.0011904762359336019,-7.930164505921508e-19,-0.0005952381179668009,-2.5224878172997773e-34,-0.0004761904710903764,3.965082252960754e-19,-0.0,0.0,-0.0,6.28875070996464e-35,1.9565002878412707e-35,0.0002380952355451882,2.4456254674213105e-35,1.6770002467210892e-35,4.323516148973931e-35,0.00046296295477077365,-7.947051398126778e-19,-2.2150710963213804e-20,-0.00046296295477077365,-0.0,3.854941086447787e-19,-0.0,6.776263578034403e-21,-0.0,6.114063525060313e-35,6.32877461861777e-21,2.4456254674213105e-35,6.613756704609841e-05,3.835620748433834e-21,4.2034185658592434e-35,0.0007936508045531809,-5.168191896994698e-19,-2.0962503514492503e-34,-0.00022675737272948027,-0.0003174603043589741,2.64338825480515e-19,-0.0,-3.3881317890172014e-21,-0.0,4.19250047330976e-35,-0.0,1.6770002467210892e-35,3.835620748433834e-21,9.070294618140906e-05,2.882344003653979e-35,0.0007440476329065859,-1.3629969872967551e-18,-6.581352261254054e-34,-4.335525763792437e-34,-0.0011160714784637094,6.814984936483776e-19,-0.0,-0.0,-0.0,1.080878994195594e-34,3.36273491008458e-35,4.323516148973931e-35,4.2034185658592434e-35,2.882344003653979e-35,0.00022321428696159273,3.0,5.0,8.0,7.0,0.04728599637746811,-0.01711309514939785,-0.011833900585770607,-0.008134921081364155,-0.00907738134264946,0.0017857142956927419,0.0017857142956927419,0.0011904762359336019,0.0013392857508733869,0.0008503401186317205,0.0007936508045531809,0.0008928571478463709,0.00039682540227659047,0.0005952381179668009,0.0004960317746736109,-0.01711309514939785,0.0349702388048172,0.0017857142956927419,0.0011904762359336019,0.0013392857508733869,-0.010714286006987095,-0.0017857142956927419,-0.0011904762359336019,-0.0013392857508733869,-1.69932097294015e-18,1.2729315976480267e-18,1.845839888431974e-18,2.514010951448474e-18,2.540624867271908e-18,4.021051516253988e-18,-0.011833900585770607,0.0017857142956927419,0.01101899053901434,0.0007936508045531809,0.0008928571478463709,4.012285573110034e-19,-0.0008928571478463709,2.7029119131905243e-19,2.951000439495311e-19,-0.001700680237263441,-0.00039682540227659047,-0.00044642857392318547,5.01006236423235e-19,8.858893429386725e-19,1.110957846386415e-18,-0.008134921081364155,0.0011904762359336019,0.0007936508045531809,0.004308389965444803,0.0005952381179668009,1.2895958335119128e-17,3.2664725460647397e-18,-0.0003401360590942204,-9.567885660146674e-22,1.222706121431996e-18,-0.00022675737272948027,-5.421010862427522e-20,-0.00039682540227659047,-0.0001700680295471102,9.632381748378936e-19,-0.00907738134264946,0.0013392857508733869,0.0008928571478463709,0.0005952381179668009,0.0056051588617265224,1.6785514603756786e-17,4.130293951031416e-18,3.8994395259940186e-19,-0.00044642857392318547,1.8998229359781035e-18,1.6319965877880943e-19,-0.00029761905898340046,1.1384122811097797e-18,-0.00019841270113829523,-0.0005952381179668009,0.0017857142956927419,-0.010714286006987095,4.012285573110034e-19,1.2895958335119128e-17,1.6785514603756786e-17,0.0053571430034935474,1.9771832613246138e-32,-1.1328806141609079e-18,-1.4869058513226313e-18,8.49660486470075e-19,-4.909149431428177e-19,-6.938894007304805e-19,-9.912706020142797e-19,-1.0290332581337037e-18,-1.5529905512304115e-18,0.0017857142956927419,-0.0017857142956927419,-0.0008928571478463709,3.2664725460647397e-18,4.130293951031416e-18,1.9771832613246138e-32,0.0008928571478463709,-2.2657611766230274e-19,-2.973811754344051e-19,2.080022192758668e-33,-1.5105075372466654e-19,-1.982541126480377e-19,-2.64338825480515e-19,-2.4545747157140886e-19,-3.965082252960754e-19,0.0011904762359336019,-0.0011904762359336019,2.7029119131905243e-19,-0.0003401360590942204,3.8994395259940186e-19,-1.1328806141609079e-18,-2.2657611766230274e-19,0.0003401360590942204,-6.094835420587486e-20,-2.407412430484045e-35,2.5841683752685612e-21,-1.7586548062996407e-20,5.617603128717617e-36,-1.6940658945086007e-20,-3.608156985194905e-20,0.0013392857508733869,-0.0013392857508733869,2.951000439495311e-19,-9.567885660146674e-22,-0.00044642857392318547,-1.4869058513226313e-18,-2.973811754344051e-19,-6.094835420587486e-20,0.00044642857392318547,-3.1296361596292583e-34,6.517460251675441e-22,-1.8045284694186602e-35,-9.307517637648537e-22,2.254958973304909e-20,1.4104399806051416e-21,0.0008503401186317205,-1.69932097294015e-18,-0.001700680237263441,1.222706121431996e-18,1.8998229359781035e-18,8.49660486470075e-19,2.080022192758668e-33,-2.407412430484045e-35,-3.1296361596292583e-34,0.00042517005931586027,-4.0417207952077335e-20,-5.304758382151437e-20,-6.293781405194439e-20,-1.6184009696919903e-19,-1.5734453836103525e-19,0.0007936508045531809,1.2729315976480267e-18,-0.00039682540227659047,-0.00022675737272948027,1.6319965877880943e-19,-4.909149431428177e-19,-1.5105075372466654e-19,2.5841683752685612e-21,6.517460251675441e-22,-4.0417207952077335e-20,0.00011337868636474013,1.1892300541873153e-20,3.014863104479988e-21,-8.470329472543003e-21,-2.430613038202532e-20,0.0008928571478463709,1.845839888431974e-18,-0.00044642857392318547,-5.421010862427522e-20,-0.00029761905898340046,-6.938894007304805e-19,-1.982541126480377e-19,-1.7586548062996407e-20,-1.8045284694186602e-35,-5.304758382151437e-20,1.1892300541873153e-20,0.00014880952949170023,1.5105958815901145e-21,1.219156220903262e-20,-5.200582445453061e-36,0.00039682540227659047,2.514010951448474e-18,5.01006236423235e-19,-0.00039682540227659047,1.1384122811097797e-18,-9.912706020142797e-19,-2.64338825480515e-19,5.617603128717617e-36,-9.307517637648537e-22,-6.293781405194439e-20,3.014863104479988e-21,1.5105958815901145e-21,5.668934318237007e-05,-8.238196743266482e-20,-1.434141706107887e-19,0.0005952381179668009,2.540624867271908e-18,8.858893429386725e-19,-0.0001700680295471102,-0.00019841270113829523,-1.0290332581337037e-18,-2.4545747157140886e-19,-1.6940658945086007e-20,2.254958973304909e-20,-1.6184009696919903e-19,-8.470329472543003e-21,1.219156220903262e-20,-8.238196743266482e-20,5.668934318237007e-05,2.714338250130208e-20,0.0004960317746736109,4.021051516253988e-18,1.110957846386415e-18,9.632381748378936e-19,-0.0005952381179668009,-1.5529905512304115e-18,-3.965082252960754e-19,-3.608156985194905e-20,1.4104399806051416e-21,-1.5734453836103525e-19,-2.430613038202532e-20,-5.200582445453061e-36,-1.434141706107887e-19,2.714338250130208e-20,9.920635056914762e-05,3.0,5.0,8.0,8.0,0.04222883656620979,-0.015104166232049465,-0.010441468097269535,-0.007175926119089127,-0.007175926119089127,0.0015625000232830644,0.0015625000232830644,0.0010416667209938169,0.0010416667209938169,0.0007440476329065859,0.0006944444612599909,0.0006944444612599909,0.00034722223062999547,0.00046296295477077365,0.00034722223062999547,-0.015104166232049465,0.03072916716337204,0.0015625000232830644,0.0010416667209938169,0.0010416667209938169,-0.00937500037252903,-0.0015625000232830644,-0.0010416667209938169,-0.0010416667209938169,-1.4869058513226313e-18,-4.505815647759438e-19,-4.372830854655054e-19,-5.772997409572032e-19,-2.930194779138071e-19,-5.688746479244092e-19,-0.010441468097269535,0.0015625000232830644,0.009685019962489605,0.0006944444612599909,0.0006944444612599909,-4.592886850385878e-18,-0.0007812500116415322,1.3451388978106426e-20,2.3869829767407678e-20,-0.0014880952658131719,-0.00034722223062999547,-0.00034722223062999547,1.2150665236325263e-20,1.1858461261560205e-20,2.076289091904449e-20,-0.007175926119089127,0.0010416667209938169,0.0006944444612599909,0.0037863757461309433,0.00046296295477077365,-3.0261288084377102e-18,-0.0,-0.00029761905898340046,2.3659496478446196e-20,-4.799539760987554e-34,-0.00019841270113829523,1.6940658945086007e-20,-0.00034722223062999547,-0.00013227513409219682,3.305784989685267e-20,-0.007175926119089127,0.0010416667209938169,0.0006944444612599909,0.00046296295477077365,0.0037863757461309433,-3.0261288084377102e-18,-0.0,-9.746006161142254e-22,-0.00029761905898340046,-4.799539760987554e-34,1.036426409425008e-21,-0.00019841270113829523,-0.0,-0.00013227513409219682,-0.00034722223062999547,0.0015625000232830644,-0.00937500037252903,-4.592886850385878e-18,-3.0261288084377102e-18,-3.0261288084377102e-18,0.004687500186264515,-0.0,-0.0,-4.5370075618220405e-35,7.434529256613157e-19,2.312964755266249e-19,2.312964755266249e-19,2.8912058794593256e-19,1.541976460428509e-19,2.8912058794593256e-19,0.0015625000232830644,-0.0015625000232830644,-0.0007812500116415322,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0010416667209938169,1.3451388978106426e-20,-0.00029761905898340046,-9.746006161142254e-22,-0.0,-0.0,0.00029761905898340046,-2.3055140268728733e-22,0.0,-3.3881317890172014e-21,-4.551222047274917e-22,-0.0,1.6940658945086007e-21,-5.037139665180908e-22,0.0010416667209938169,-0.0010416667209938169,2.3869829767407678e-20,2.3659496478446196e-20,-0.00029761905898340046,-4.5370075618220405e-35,-0.0,-2.3055140268728733e-22,0.00029761905898340046,-0.0,-4.368781112873623e-23,-6.776263578034403e-21,-2.6897665329753453e-22,-6.087151849737406e-21,-2.1724349844540652e-21,0.0007440476329065859,-1.4869058513226313e-18,-0.0014880952658131719,-4.799539760987554e-34,-4.799539760987554e-34,7.434529256613157e-19,-0.0,0.0,-0.0,0.00037202381645329297,3.668438057639003e-35,3.668438057639003e-35,4.5855475003022723e-35,2.4456254674213105e-35,4.5855475003022723e-35,0.0006944444612599909,-4.505815647759438e-19,-0.00034722223062999547,-0.00019841270113829523,1.036426409425008e-21,2.312964755266249e-19,-0.0,-3.3881317890172014e-21,-4.368781112873623e-23,3.668438057639003e-35,9.920635056914762e-05,-3.034147863226285e-22,-2.940642627652177e-21,-0.0,-5.096911403534014e-23,0.0006944444612599909,-4.372830854655054e-19,-0.00034722223062999547,1.6940658945086007e-20,-0.00019841270113829523,2.312964755266249e-19,-0.0,-4.551222047274917e-22,-6.776263578034403e-21,3.668438057639003e-35,-3.034147863226285e-22,9.920635056914762e-05,-5.309758886863744e-22,-3.3881317890172014e-21,-5.881285255304354e-21,0.00034722223062999547,-5.772997409572032e-19,1.2150665236325263e-20,-0.00034722223062999547,-0.0,2.8912058794593256e-19,-0.0,-0.0,-2.6897665329753453e-22,4.5855475003022723e-35,-2.940642627652177e-21,-5.309758886863744e-22,4.960317528457381e-05,-2.2374455543896316e-22,-3.7286375276823245e-22,0.00046296295477077365,-2.930194779138071e-19,1.1858461261560205e-20,-0.00013227513409219682,-0.00013227513409219682,1.541976460428509e-19,-0.0,1.6940658945086007e-21,-6.087151849737406e-21,2.4456254674213105e-35,-0.0,-3.3881317890172014e-21,-2.2374455543896316e-22,3.779289545491338e-05,-8.465453630572915e-21,0.00034722223062999547,-5.688746479244092e-19,2.076289091904449e-20,3.305784989685267e-20,-0.00034722223062999547,2.8912058794593256e-19,-0.0,-5.037139665180908e-22,-2.1724349844540652e-21,4.5855475003022723e-35,-5.096911403534014e-23,-5.881285255304354e-21,-3.7286375276823245e-22,-8.465453630572915e-21,4.960317528457381e-05,3.0,6.0,3.0,3.0,0.1686507910490036,-0.075396828353405,-0.0456349216401577,-0.075396828353405,-0.075396828353405,0.009259259328246117,0.007936508394777775,0.013888888992369175,0.013888888992369175,0.003306878264993429,0.007936508394777775,0.007936508394777775,0.009259259328246117,0.013888888992369175,0.009259259328246117,-0.075396828353405,0.16798941791057587,0.007936508394777775,0.013888888992369175,0.013888888992369175,-0.0555555559694767,-0.007936508394777775,-0.013888888992369175,-0.013888888992369175,-0.0,4.7704895589362195e-18,1.0842021724855044e-18,3.469446951953614e-18,-3.469446951953614e-18,-1.734723475976807e-17,-0.0456349216401577,0.007936508394777775,0.03644179925322533,0.007936508394777775,0.007936508394777775,9.028869739484481e-19,-0.0031746032182127237,-2.6020852139652106e-18,-3.469446951953614e-18,-0.004960317630320787,-0.0031746032182127237,-0.0031746032182127237,2.42861286636753e-17,-8.673617379884035e-19,1.734723475976807e-17,-0.075396828353405,0.013888888992369175,0.007936508394777775,0.16798941791057587,0.013888888992369175,-1.7387784807756645e-17,9.274679073008955e-18,-0.013888888992369175,4.336808689942018e-19,6.938893903907228e-18,-0.007936508394777775,-3.9632691764556144e-19,-0.0555555559694767,-0.013888888992369175,-6.418476861114186e-17,-0.075396828353405,0.013888888992369175,0.007936508394777775,0.013888888992369175,0.16798941791057587,-2.2398031012880135e-17,7.592700768791592e-18,7.892566148551252e-18,-0.013888888992369175,7.806255641895632e-18,-8.673617379884035e-19,-0.007936508394777775,-4.83554168928535e-17,-0.013888888992369175,-0.0555555559694767,0.009259259328246117,-0.0555555559694767,9.028869739484481e-19,-1.7387784807756645e-17,-2.2398031012880135e-17,0.02777777798473835,8.239936510889834e-18,6.786874237341927e-18,7.77385166857948e-18,-0.0,-2.168404344971009e-18,-1.951563910473908e-18,6.938893903907228e-18,1.734723475976807e-18,8.673617379884035e-18,0.007936508394777775,-0.007936508394777775,-0.0031746032182127237,9.274679073008955e-18,7.592700768791592e-18,8.239936510889834e-18,0.0031746032182127237,1.5673791770400124e-19,2.5926572678372727e-19,2.168404344971009e-19,-3.2526065174565133e-19,-0.0,-3.686287386450715e-18,-1.3010426069826053e-18,-3.3610267347050637e-18,0.013888888992369175,-0.013888888992369175,-2.6020852139652106e-18,-0.013888888992369175,7.892566148551252e-18,6.786874237341927e-18,1.5673791770400124e-19,0.013888888992369175,-4.336808689942018e-19,4.336808689942018e-19,1.0842021724855044e-18,2.168404344971009e-19,-2.168404344971009e-18,-1.3010426069826053e-18,-2.8189256484623115e-18,0.013888888992369175,-0.013888888992369175,-3.469446951953614e-18,4.336808689942018e-19,-0.013888888992369175,7.77385166857948e-18,2.5926572678372727e-19,-4.336808689942018e-19,0.013888888992369175,2.168404344971009e-19,2.168404344971009e-19,2.6020852139652106e-18,-1.951563910473908e-18,3.686287386450715e-18,1.3877787807814457e-17,0.003306878264993429,-0.0,-0.004960317630320787,6.938893903907228e-18,7.806255641895632e-18,-0.0,2.168404344971009e-19,4.336808689942018e-19,2.168404344971009e-19,0.0009920635493472219,0.0,-4.336808689942018e-19,-3.0357660829594124e-18,-2.168404344971009e-19,-3.903127820947816e-18,0.007936508394777775,4.7704895589362195e-18,-0.0031746032182127237,-0.007936508394777775,-8.673617379884035e-19,-2.168404344971009e-18,-3.2526065174565133e-19,1.0842021724855044e-18,2.168404344971009e-19,0.0,0.0031746032182127237,3.580462267428291e-20,-1.5664522177660702e-19,-7.832261088830351e-20,3.524517586908886e-19,0.007936508394777775,1.0842021724855044e-18,-0.0031746032182127237,-3.9632691764556144e-19,-0.007936508394777775,-1.951563910473908e-18,-0.0,2.168404344971009e-19,2.6020852139652106e-18,-4.336808689942018e-19,3.580462267428291e-20,0.0031746032182127237,-7.369301412422405e-19,1.7142188059649598e-18,5.5680401483572915e-18,0.009259259328246117,3.469446951953614e-18,2.42861286636753e-17,-0.0555555559694767,-4.83554168928535e-17,6.938893903907228e-18,-3.686287386450715e-18,-2.168404344971009e-18,-1.951563910473908e-18,-3.0357660829594124e-18,-1.5664522177660702e-19,-7.369301412422405e-19,0.02777777798473835,1.5223231402127377e-18,2.526769592011645e-17,0.013888888992369175,-3.469446951953614e-18,-8.673617379884035e-19,-0.013888888992369175,-0.013888888992369175,1.734723475976807e-18,-1.3010426069826053e-18,-1.3010426069826053e-18,3.686287386450715e-18,-2.168404344971009e-19,-7.832261088830351e-20,1.7142188059649598e-18,1.5223231402127377e-18,0.013888888992369175,1.3363795973147482e-17,0.009259259328246117,-1.734723475976807e-17,1.734723475976807e-17,-6.418476861114186e-17,-0.0555555559694767,8.673617379884035e-18,-3.3610267347050637e-18,-2.8189256484623115e-18,1.3877787807814457e-17,-3.903127820947816e-18,3.524517586908886e-19,5.5680401483572915e-18,2.526769592011645e-17,1.3363795973147482e-17,0.02777777798473835,3.0,6.0,3.0,4.0,0.1373346596956253,-0.05863095074892044,-0.03541666641831398,-0.05863095074892044,-0.04801587387919426,0.0069444444961845875,0.0059523810632526875,0.010416666977107525,0.008333333767950535,0.0024801588151603937,0.0059523810632526875,0.004761904943734407,0.0069444444961845875,0.008333333767950535,0.004629629664123058,-0.05863095074892044,0.12807539105415344,0.0059523810632526875,0.010416666977107525,0.008333333767950535,-0.0416666679084301,-0.0059523810632526875,-0.010416666977107525,-0.008333333767950535,8.95112158614455e-18,7.930164816114238e-18,6.3441316047372065e-18,4.625929158980737e-17,1.1102230411687688e-17,2.158767029090276e-17,-0.03541666641831398,0.0059523810632526875,0.027807539328932762,0.0059523810632526875,0.004761904943734407,3.707902608473461e-17,-0.0023809524718672037,-2.1955194351095517e-32,-1.1709436448482698e-32,-0.0037202381063252687,-0.0023809524718672037,-0.0019047618843615055,1.8469619589329023e-17,4.99386017077912e-18,6.7959517173840836e-18,-0.05863095074892044,0.010416666977107525,0.0059523810632526875,0.12807539105415344,0.008333333767950535,7.683448437689069e-17,-1.860208789916731e-32,-0.010416666977107525,-2.4264081253197453e-32,9.75781955236954e-18,-0.0059523810632526875,5.942020911001704e-19,-0.0416666679084301,-0.008333333767950535,2.158767029090276e-17,-0.04801587387919426,0.008333333767950535,0.004761904943734407,0.008333333767950535,0.06441798806190491,5.244188433349002e-17,-1.2180871396615853e-32,-3.1051832322698653e-32,-0.0055555556900799274,7.644021535536219e-18,5.006768117442857e-19,-0.0031746032182127237,3.896060389794163e-17,-0.0055555556900799274,-0.013888888992369175,0.0069444444961845875,-0.0416666679084301,3.707902608473461e-17,7.683448437689069e-17,5.244188433349002e-17,0.02083333395421505,-5.6392281390542176e-18,-1.2335811476632919e-17,-6.579099288768101e-18,-4.543323428852619e-18,-3.965082408057119e-18,-3.1720658023686032e-18,-2.3129645794903686e-17,-5.551115205843844e-18,-1.079383514545138e-17,0.0059523810632526875,-0.0059523810632526875,-0.0023809524718672037,-1.860208789916731e-32,-1.2180871396615853e-32,-5.6392281390542176e-18,0.0023809524718672037,3.3390938245824354e-33,1.7808500642667645e-33,5.421010862427522e-20,-0.0,-0.0,6.548161810916602e-33,1.4444474582904269e-33,2.9851914138002156e-33,0.010416666977107525,-0.010416666977107525,-2.1955194351095517e-32,-0.010416666977107525,-3.1051832322698653e-32,-1.2335811476632919e-17,3.3390938245824354e-33,0.010416666977107525,3.8956095844601695e-33,2.6901878821499158e-33,2.347800356888962e-33,1.878240322245368e-33,1.3695502479806094e-32,3.286920609847142e-33,6.391234049765796e-33,0.008333333767950535,-0.008333333767950535,-1.1709436448482698e-32,-2.4264081253197453e-32,-0.0055555556900799274,-6.579099288768101e-18,1.7808500642667645e-33,3.8956095844601695e-33,0.0055555556900799274,1.4347668949694207e-33,1.2521601842184133e-33,1.0017280922734329e-33,7.304267695356329e-33,1.7530242762728778e-33,3.40865811089616e-33,0.0024801588151603937,8.95112158614455e-18,-0.0037202381063252687,9.75781955236954e-18,7.644021535536219e-18,-4.543323428852619e-18,5.421010862427522e-20,2.6901878821499158e-33,1.4347668949694207e-33,0.0007440476329065859,-8.673617379884035e-19,-8.673617379884035e-19,-3.3042352021841637e-18,-7.930164505921508e-19,-1.5419764345791148e-18,0.0059523810632526875,7.930164816114238e-18,-0.0023809524718672037,-0.0059523810632526875,5.006768117442857e-19,-3.965082408057119e-18,-0.0,2.347800356888962e-33,1.2521601842184133e-33,-8.673617379884035e-19,0.0023809524718672037,-1.3220168570884413e-20,-1.9484433716130517e-18,-4.676263967794232e-19,4.8131450060723677e-33,0.004761904943734407,6.3441316047372065e-18,-0.0019047618843615055,5.942020911001704e-19,-0.0031746032182127237,-3.1720658023686032e-18,-0.0,1.878240322245368e-33,1.0017280922734329e-33,-8.673617379884035e-19,-1.3220168570884413e-20,0.0012698412174358964,6.470132495909018e-33,-3.7410111742353857e-19,6.092870737385702e-19,0.0069444444961845875,4.625929158980737e-17,1.8469619589329023e-17,-0.0416666679084301,3.896060389794163e-17,-2.3129645794903686e-17,6.548161810916602e-33,1.3695502479806094e-32,7.304267695356329e-33,-3.3042352021841637e-18,-1.9484433716130517e-18,6.470132495909018e-33,0.02083333395421505,-6.579099288768101e-18,-1.079383514545138e-17,0.008333333767950535,1.1102230411687688e-17,4.99386017077912e-18,-0.008333333767950535,-0.0055555556900799274,-5.551115205843844e-18,1.4444474582904269e-33,3.286920609847142e-33,1.7530242762728778e-33,-7.930164505921508e-19,-4.676263967794232e-19,-3.7410111742353857e-19,-6.579099288768101e-18,0.0055555556900799274,7.619459607798033e-33,0.004629629664123058,2.158767029090276e-17,6.7959517173840836e-18,2.158767029090276e-17,-0.013888888992369175,-1.079383514545138e-17,2.9851914138002156e-33,6.391234049765796e-33,3.40865811089616e-33,-1.5419764345791148e-18,4.8131450060723677e-33,6.092870737385702e-19,-1.079383514545138e-17,7.619459607798033e-33,0.004629629664123058,3.0,6.0,3.0,5.0,0.1160052940249443,-0.04801587387919426,-0.02896825410425663,-0.04801587387919426,-0.03333333507180214,0.0055555556900799274,0.004761904943734407,0.008333333767950535,0.0055555556900799274,0.0019841270986944437,0.004761904943734407,0.0031746032182127237,0.0055555556900799274,0.0055555556900799274,0.0026455025654286146,-0.04801587387919426,0.10357142984867096,0.004761904943734407,0.008333333767950535,0.0055555556900799274,-0.03333333507180214,-0.004761904943734407,-0.008333333767950535,-0.0055555556900799274,-3.931159731136319e-18,-3.1739676973920158e-18,-2.1449802443847322e-18,-1.8503717628539684e-17,-3.594366113700147e-18,-5.106817060097218e-18,-0.02896825410425663,0.004761904943734407,0.02250000089406967,0.004761904943734407,0.0031746032182127237,-1.278739005254093e-17,-0.0019047618843615055,-0.0,-1.0842021724855044e-19,-0.0029761905316263437,-0.0019047618843615055,-0.0012698412174358964,-2.5942284870710595e-17,-5.2583805365546965e-18,-7.384404282841551e-18,-0.04801587387919426,0.008333333767950535,0.004761904943734407,0.10357142984867096,0.0055555556900799274,-2.6169542817842188e-17,4.165519198310091e-21,-0.008333333767950535,9.879306276465496e-20,-1.5178830414797062e-17,-0.004761904943734407,-3.796479062679836e-19,-0.03333333507180214,-0.0055555556900799274,-5.1131975177521456e-18,-0.03333333507180214,0.0055555556900799274,0.0031746032182127237,0.0055555556900799274,0.03253968432545662,-1.5067313233335113e-17,-6.003656852629415e-20,-0.0,-0.0027777778450399637,-8.840846002782043e-18,-4.336808689942018e-19,-0.0015873016091063619,-1.0573552812425446e-17,-0.0027777778450399637,-0.005291005130857229,0.0055555556900799274,-0.03333333507180214,-1.278739005254093e-17,-2.6169542817842188e-17,-1.5067313233335113e-17,0.01666666753590107,1.925929944387236e-34,-0.0,-1.558419326825451e-34,1.817329454259109e-18,1.5860329011843016e-18,1.05735530192206e-18,9.251858814269842e-18,1.850371804212999e-18,2.6433882031063616e-18,0.004761904943734407,-0.004761904943734407,-0.0019047618843615055,4.165519198310091e-21,-6.003656852629415e-20,1.925929944387236e-34,0.0019047618843615055,-0.0,8.144124658751608e-21,1.0842021724855044e-19,-0.0,-0.0,3.851859888774472e-34,-2.0827595991550456e-21,1.2408092082446148e-20,0.008333333767950535,-0.008333333767950535,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0055555556900799274,-1.0842021724855044e-19,9.879306276465496e-20,-0.0027777778450399637,-1.558419326825451e-34,8.144124658751608e-21,-0.0,0.0027777778450399637,1.2725195486118759e-20,9.509331733704611e-22,1.51348832782044e-20,3.6932456950105313e-35,-5.0585199616088984e-20,-1.0548964558524578e-19,0.0019841270986944437,-3.931159731136319e-18,-0.0029761905316263437,-1.5178830414797062e-17,-8.840846002782043e-18,1.817329454259109e-18,1.0842021724855044e-19,-0.0,1.2725195486118759e-20,0.0005952381179668009,9.75781955236954e-19,6.776263578034403e-19,5.286776406212723e-18,1.0541009665971232e-18,1.5005364436490098e-18,0.004761904943734407,-3.1739676973920158e-18,-0.0019047618843615055,-0.004761904943734407,-4.336808689942018e-19,1.5860329011843016e-18,-0.0,-0.0,9.509331733704611e-22,9.75781955236954e-19,0.0019047618843615055,1.6263032587282567e-19,-4.915965916663497e-19,1.8274961049857994e-20,1.8113011768279113e-21,0.0031746032182127237,-2.1449802443847322e-18,-0.0012698412174358964,-3.796479062679836e-19,-0.0015873016091063619,1.05735530192206e-18,-0.0,-0.0,1.51348832782044e-20,6.776263578034403e-19,1.6263032587282567e-19,0.0006349206087179482,6.933347799794049e-33,-1.3463953399246709e-20,-6.412158059434167e-20,0.0055555556900799274,-1.8503717628539684e-17,-2.5942284870710595e-17,-0.03333333507180214,-1.0573552812425446e-17,9.251858814269842e-18,3.851859888774472e-34,-0.0,3.6932456950105313e-35,5.286776406212723e-18,-4.915965916663497e-19,6.933347799794049e-33,0.01666666753590107,9.629649721936179e-33,2.6433882031063616e-18,0.0055555556900799274,-3.594366113700147e-18,-5.2583805365546965e-18,-0.0055555556900799274,-0.0027777778450399637,1.850371804212999e-18,-2.0827595991550456e-21,-0.0,-5.0585199616088984e-20,1.0541009665971232e-18,1.8274961049857994e-20,-1.3463953399246709e-20,9.629649721936179e-33,0.0027777778450399637,-8.905353450207444e-20,0.0026455025654286146,-5.106817060097218e-18,-7.384404282841551e-18,-5.1131975177521456e-18,-0.005291005130857229,2.6433882031063616e-18,1.2408092082446148e-20,-0.0,-1.0548964558524578e-19,1.5005364436490098e-18,1.8113011768279113e-21,-6.412158059434167e-20,2.6433882031063616e-18,-8.905353450207444e-20,0.0013227512827143073,3.0,6.0,3.0,6.0,0.10048186033964157,-0.0406746044754982,-0.02451813966035843,-0.0406746044754982,-0.02451813966035843,0.004629629664123058,0.003968254197388887,0.0069444444961845875,0.003968254197388887,0.0016534391324967146,0.003968254197388887,0.0022675737272948027,0.004629629664123058,0.003968254197388887,0.0016534391324967146,-0.0406746044754982,0.08697090297937393,0.003968254197388887,0.0069444444961845875,0.003968254197388887,-0.02777777798473835,-0.003968254197388887,-0.0069444444961845875,-0.003968254197388887,5.9393284381078435e-18,5.223423470277899e-18,2.5441000598203965e-18,3.0839529932353215e-17,5.2595307311964515e-18,5.978951216629746e-18,-0.02451813966035843,0.003968254197388887,0.018901171162724495,0.003968254197388887,0.0022675737272948027,2.6576715856926516e-17,-0.0015873016091063619,-1.0491051247534782e-32,-2.981555974335137e-19,-0.0024801588151603937,-0.0015873016091063619,-0.0009070294909179211,1.2313079726219349e-17,2.3852447794681098e-18,2.1490758223926354e-18,-0.0406746044754982,0.0069444444961845875,0.003968254197388887,0.08697090297937393,0.003968254197388887,4.9539052792412777e-17,-7.878392563851521e-20,-0.0069444444961845875,-1.1814564951338775e-20,6.938893903907228e-18,-0.003968254197388887,3.523320501466157e-19,-0.02777777798473835,-0.003968254197388887,6.056463416699946e-18,-0.02451813966035843,0.003968254197388887,0.0022675737272948027,0.003968254197388887,0.018901171162724495,2.6576715856926516e-17,-6.615519120560621e-20,-1.0491051247534782e-32,-0.0015873016091063619,3.2223211604842624e-18,2.710505431213761e-19,-0.0009070294909179211,2.015705811276985e-17,-0.0015873016091063619,-0.0024801588151603937,0.004629629664123058,-0.02777777798473835,2.6576715856926516e-17,4.9539052792412777e-17,2.6576715856926516e-17,0.013888888992369175,-5.012647096851425e-18,-5.482582878503519e-18,-5.012647096851425e-18,-3.028882285901746e-18,-2.6433882031063616e-18,-1.5105074855478771e-18,-1.5419764966176608e-17,-2.6433882031063616e-18,-3.028882285901746e-18,0.003968254197388887,-0.003968254197388887,-0.0015873016091063619,-7.878392563851521e-20,-6.615519120560621e-20,-5.012647096851425e-18,0.0015873016091063619,1.9787223140376264e-33,-4.374884750578371e-21,5.421010862427522e-20,2.710505431213761e-20,5.421010862427522e-20,5.3926038442842604e-33,4.408516024047831e-21,-1.2789381955154746e-20,0.0069444444961845875,-0.0069444444961845875,-1.0491051247534782e-32,-0.0069444444961845875,-1.0491051247534782e-32,-5.482582878503519e-18,1.9787223140376264e-33,0.0069444444961845875,1.9787223140376264e-33,1.1956390179175198e-33,1.043466774264263e-33,5.962667543897206e-34,6.0868897461302744e-33,1.043466774264263e-33,1.1956390179175198e-33,0.003968254197388887,-0.003968254197388887,-2.981555974335137e-19,-1.1814564951338775e-20,-0.0015873016091063619,-5.012647096851425e-18,-4.374884750578371e-21,1.9787223140376264e-33,0.0015873016091063619,-6.835757574239999e-21,-1.7639210549006338e-21,1.3655591275453498e-19,4.8292007895366616e-33,6.4897468738774304e-21,4.431465358505419e-20,0.0016534391324967146,5.9393284381078435e-18,-0.0024801588151603937,6.938893903907228e-18,3.2223211604842624e-18,-3.028882285901746e-18,5.421010862427522e-20,1.1956390179175198e-33,-6.835757574239999e-21,0.0004960317746736109,-7.047314121155779e-19,-2.439454888092385e-19,-2.2028235370544935e-18,-3.7073857653472223e-19,-4.477642393083765e-19,0.003968254197388887,5.223423470277899e-18,-0.0015873016091063619,-0.003968254197388887,2.710505431213761e-19,-2.6433882031063616e-18,2.710505431213761e-20,1.043466774264263e-33,-1.7639210549006338e-21,-7.047314121155779e-19,0.0015873016091063619,-1.3552527156068805e-20,-1.2989622477420345e-18,-2.204487255760279e-19,-2.7561266230386913e-21,0.0022675737272948027,2.5441000598203965e-18,-0.0009070294909179211,3.523320501466157e-19,-0.0009070294909179211,-1.5105074855478771e-18,5.421010862427522e-20,5.962667543897206e-34,1.3655591275453498e-19,-2.439454888092385e-19,-1.3552527156068805e-20,0.00036281178472563624,2.9851914138002156e-33,-1.2738028256281981e-19,4.4687757277755353e-20,0.004629629664123058,3.0839529932353215e-17,1.2313079726219349e-17,-0.02777777798473835,2.015705811276985e-17,-1.5419764966176608e-17,5.3926038442842604e-33,6.0868897461302744e-33,4.8292007895366616e-33,-2.2028235370544935e-18,-1.2989622477420345e-18,2.9851914138002156e-33,0.013888888992369175,-5.012647096851425e-18,-3.028882285901746e-18,0.003968254197388887,5.2595307311964515e-18,2.3852447794681098e-18,-0.003968254197388887,-0.0015873016091063619,-2.6433882031063616e-18,4.408516024047831e-21,1.043466774264263e-33,6.4897468738774304e-21,-3.7073857653472223e-19,-2.204487255760279e-19,-1.2738028256281981e-19,-5.012647096851425e-18,0.0015873016091063619,3.276557120118267e-21,0.0016534391324967146,5.978951216629746e-18,2.1490758223926354e-18,6.056463416699946e-18,-0.0024801588151603937,-3.028882285901746e-18,-1.2789381955154746e-20,1.1956390179175198e-33,4.431465358505419e-20,-4.477642393083765e-19,-2.7561266230386913e-21,4.4687757277755353e-20,-3.028882285901746e-18,3.276557120118267e-21,0.0004960317746736109,3.0,6.0,3.0,7.0,0.08865582942962646,-0.03528911620378494,-0.021258503198623657,-0.03528911620378494,-0.018801964819431305,0.003968254197388887,0.003401360474526882,0.0059523810632526875,0.0029761905316263437,0.0014172336086630821,0.003401360474526882,0.001700680237263441,0.003968254197388887,0.0029761905316263437,0.001102292793802917,-0.03528911620378494,0.07497165352106094,0.003401360474526882,0.0059523810632526875,0.0029761905316263437,-0.02380952425301075,-0.003401360474526882,-0.0059523810632526875,-0.0029761905316263437,5.1758461093953805e-18,4.593117220186474e-18,2.2741260922662582e-18,2.643388161747331e-17,3.986023726034818e-18,3.804843047744878e-18,-0.021258503198623657,0.003401360474526882,0.016298186033964157,0.003401360474526882,0.001700680237263441,2.23280879290051e-17,-0.0013605442363768816,-7.554791255455483e-33,-2.710505431213761e-20,-0.002125850412994623,-0.0013605442363768816,-0.0006802721181884408,1.055406857309676e-17,1.1926223897340549e-18,1.5638920679208244e-18,-0.03528911620378494,0.0059523810632526875,0.003401360474526882,0.07497165352106094,0.0029761905316263437,4.2073929743856463e-17,6.727120002360803e-20,-0.0059523810632526875,1.621122458530775e-20,6.071532165918825e-18,-0.003401360474526882,-3.173572447230883e-20,-0.02380952425301075,-0.0029761905316263437,3.839842300232915e-18,-0.018801964819431305,0.0029761905316263437,0.001700680237263441,0.0029761905316263437,0.01199924387037754,1.8954770944758725e-17,-2.1582885400025962e-20,-6.413416362849782e-33,-0.0009920635493472219,1.8873389193783e-18,-1.0842021724855044e-19,-0.0005668934318237007,1.4140028877412143e-17,-0.0009920635493472219,-0.0013227512827143073,0.003968254197388887,-0.02380952425301075,2.23280879290051e-17,4.2073929743856463e-17,1.8954770944758725e-17,0.011904762126505375,-3.6827611154994015e-18,-4.028020099324441e-18,-2.6853467328829607e-18,-2.5961847278607168e-18,-2.2657612283218157e-18,-1.1328806141609079e-18,-1.3216940808736655e-17,-1.9825412040285595e-18,-1.909113621823146e-18,0.003401360474526882,-0.003401360474526882,-0.0013605442363768816,6.727120002360803e-20,-2.1582885400025962e-20,-3.6827611154994015e-18,0.0013605442363768816,1.2460758070914579e-33,3.5249934257874314e-21,6.314573129568714e-35,-2.710505431213761e-20,-0.0,4.237045877651919e-33,1.6381273512008208e-22,2.752935232604078e-21,0.0059523810632526875,-0.0059523810632526875,-7.554791255455483e-33,-0.0059523810632526875,-6.413416362849782e-33,-4.028020099324441e-18,1.2460758070914579e-33,0.0059523810632526875,9.085969809356448e-34,8.7842865310576e-34,7.666286710959985e-34,3.8331433554799923e-34,4.4720007497584006e-33,6.708000757295616e-34,6.4595563528294796e-34,0.0029761905316263437,-0.0029761905316263437,-2.710505431213761e-20,1.621122458530775e-20,-0.0009920635493472219,-2.6853467328829607e-18,3.5249934257874314e-21,9.085969809356448e-34,0.0009920635493472219,5.5078023035235084e-21,2.0559618553651685e-21,-2.788302656397297e-21,2.6163130213175275e-33,-7.11704341115421e-21,2.167353760969581e-21,0.0014172336086630821,5.1758461093953805e-18,-0.002125850412994623,6.071532165918825e-18,1.8873389193783e-18,-2.5961847278607168e-18,6.314573129568714e-35,8.7842865310576e-34,5.5078023035235084e-21,0.00042517005931586027,-5.421010862427522e-19,0.0,-1.888134460332423e-18,-2.829641928394301e-19,-2.7749102306950227e-19,0.003401360474526882,4.593117220186474e-18,-0.0013605442363768816,-0.003401360474526882,-1.0842021724855044e-19,-2.2657612283218157e-18,-2.710505431213761e-20,7.666286710959985e-34,2.0559618553651685e-21,-5.421010862427522e-19,0.0013605442363768816,-2.0328790734103208e-20,-1.1133961680370681e-18,1.3936790032221193e-19,2.741282406504094e-21,0.001700680237263441,2.2741260922662582e-18,-0.0006802721181884408,-3.173572447230883e-20,-0.0005668934318237007,-1.1328806141609079e-18,-0.0,3.8331433554799923e-34,-2.788302656397297e-21,0.0,-2.0328790734103208e-20,0.00022675737272948027,1.6370404527291505e-33,2.751923269213086e-20,-5.996667176453342e-20,0.003968254197388887,2.643388161747331e-17,1.055406857309676e-17,-0.02380952425301075,1.4140028877412143e-17,-1.3216940808736655e-17,4.237045877651919e-33,4.4720007497584006e-33,2.6163130213175275e-33,-1.888134460332423e-18,-1.1133961680370681e-18,1.6370404527291505e-33,0.011904762126505375,-2.6853467328829607e-18,-1.909113621823146e-18,0.0029761905316263437,3.986023726034818e-18,1.1926223897340549e-18,-0.0029761905316263437,-0.0009920635493472219,-1.9825412040285595e-18,1.6381273512008208e-22,6.708000757295616e-34,-7.11704341115421e-21,-2.829641928394301e-19,1.3936790032221193e-19,2.751923269213086e-20,-2.6853467328829607e-18,0.0009920635493472219,-9.489390945607758e-21,0.001102292793802917,3.804843047744878e-18,1.5638920679208244e-18,3.839842300232915e-18,-0.0013227512827143073,-1.909113621823146e-18,2.752935232604078e-21,6.4595563528294796e-34,2.167353760969581e-21,-2.7749102306950227e-19,2.741282406504094e-21,-5.996667176453342e-20,-1.909113621823146e-18,-9.489390945607758e-21,0.00022045854711905122,3.0,6.0,3.0,8.0,0.07933752238750458,-0.031167328357696533,-0.018766533583402634,-0.031167328357696533,-0.014880952425301075,0.0034722222480922937,0.0029761905316263437,0.0052083334885537624,0.002314814832061529,0.0012400794075801969,0.0029761905316263437,0.0013227512827143073,0.0034722222480922937,0.002314814832061529,0.0007716049440205097,-0.031167328357696533,0.06588955223560333,0.0029761905316263437,0.0052083334885537624,0.002314814832061529,-0.02083333395421505,-0.0029761905316263437,-0.0052083334885537624,-0.002314814832061529,4.543323428852619e-18,3.965082408057119e-18,1.714824922558808e-18,2.3129645794903686e-17,3.0839528691582296e-18,2.6330567172555742e-18,-0.018766533583402634,0.0029761905316263437,0.014327050186693668,0.0029761905316263437,0.0013227512827143073,1.9244416508050293e-17,-0.0011904762359336019,-1.1394983628114074e-32,-4.743384504624082e-20,-0.0018601190531626344,-0.0011904762359336019,-0.0005291005363687873,8.260587902062833e-18,1.1014117685272467e-18,8.529571631026168e-19,-0.031167328357696533,0.0052083334885537624,0.0029761905316263437,0.06588955223560333,0.002314814832061529,3.9650823253390577e-17,-1.0732801211672986e-32,-0.0052083334885537624,-4.718279673225132e-33,5.0822282892084665e-18,-0.0029761905316263437,-4.528660312152004e-33,-0.02083333395421505,-0.002314814832061529,2.569960620900948e-18,-0.014880952425301075,0.002314814832061529,0.0013227512827143073,0.002314814832061529,0.008109725080430508,1.4306115163884215e-17,-3.872421121680277e-33,-8.470921593976464e-33,-0.0006613756413571537,2.0167573232716623e-18,-4.906403585078823e-33,-0.0003779289545491338,1.0561314675262724e-17,-0.0006613756413571537,-0.0007716049440205097,0.0034722222480922937,-0.02083333395421505,1.9244416508050293e-17,3.9650823253390577e-17,1.4306115163884215e-17,0.010416666977107525,-2.8196140695271088e-18,-6.167905738316459e-18,-1.566452191916676e-18,-2.2716617144263096e-18,-1.9825412040285595e-18,-8.811294355013127e-19,-1.1564822897451843e-17,-1.5419764345791148e-18,-1.284980310450474e-18,0.0029761905316263437,-0.0029761905316263437,-0.0011904762359336019,-1.0732801211672986e-32,-3.872421121680277e-33,-2.8196140695271088e-18,0.0011904762359336019,1.6695469122912177e-33,4.240119244366342e-34,6.149000847246809e-34,5.366400789507485e-34,2.3850670175588824e-34,3.1304005982992774e-33,4.173867280728044e-34,3.4782225808808766e-34,0.0052083334885537624,-0.0052083334885537624,-1.1394983628114074e-32,-0.0052083334885537624,-8.470921593976464e-33,-6.167905738316459e-18,1.6695469122912177e-33,0.0052083334885537624,9.275260215682337e-34,1.3450939410749579e-33,1.173900178444481e-33,5.217333871321315e-34,6.847751239903047e-33,9.130334619195412e-34,7.608612182662843e-34,0.002314814832061529,-0.002314814832061529,-4.743384504624082e-20,-4.718279673225132e-33,-0.0006613756413571537,-1.566452191916676e-18,4.240119244366342e-34,9.275260215682337e-34,0.0006613756413571537,3.851859888774472e-34,2.981333771948603e-34,1.3552527156068805e-20,1.8683061092839734e-33,-1.9748348715675105e-34,-1.8027417558028698e-20,0.0012400794075801969,4.543323428852619e-18,-0.0018601190531626344,5.0822282892084665e-18,2.0167573232716623e-18,-2.2716617144263096e-18,6.149000847246809e-34,1.3450939410749579e-33,3.851859888774472e-34,0.00037202381645329297,-4.028020099324441e-19,-2.045978383138893e-19,-1.6521176010920818e-18,-2.202823588753282e-19,-1.8356861947140974e-19,0.0029761905316263437,3.965082408057119e-18,-0.0011904762359336019,-0.0029761905316263437,-4.906403585078823e-33,-1.9825412040285595e-18,5.366400789507485e-34,1.173900178444481e-33,2.981333771948603e-34,-4.028020099324441e-19,0.0011904762359336019,3.892245925742391e-34,3.989862925561008e-33,5.319817234081344e-34,4.433181334519441e-34,0.0013227512827143073,1.714824922558808e-18,-0.0005291005363687873,-4.528660312152004e-33,-0.0003779289545491338,-8.811294355013127e-19,2.3850670175588824e-34,5.217333871321315e-34,1.3552527156068805e-20,-2.045978383138893e-19,3.892245925742391e-34,0.0001511715818196535,1.6370404527291505e-33,-6.86330055060603e-35,1.8538834896436678e-20,0.0034722222480922937,2.3129645794903686e-17,8.260587902062833e-18,-0.02083333395421505,1.0561314675262724e-17,-1.1564822897451843e-17,3.1304005982992774e-33,6.847751239903047e-33,1.8683061092839734e-33,-1.6521176010920818e-18,3.989862925561008e-33,1.6370404527291505e-33,0.010416666977107525,-1.566452191916676e-18,-1.284980310450474e-18,0.002314814832061529,3.0839528691582296e-18,1.1014117685272467e-18,-0.002314814832061529,-0.0006613756413571537,-1.5419764345791148e-18,4.173867280728044e-34,9.130334619195412e-34,-1.9748348715675105e-34,-2.202823588753282e-19,5.319817234081344e-34,-6.86330055060603e-35,-1.566452191916676e-18,0.0006613756413571537,8.588753492086001e-35,0.0007716049440205097,2.6330567172555742e-18,8.529571631026168e-19,2.569960620900948e-18,-0.0007716049440205097,-1.284980310450474e-18,3.4782225808808766e-34,7.608612182662843e-34,-1.8027417558028698e-20,-1.8356861947140974e-19,4.433181334519441e-34,1.8538834896436678e-20,-1.284980310450474e-18,8.588753492086001e-35,0.00011022927355952561,3.0,6.0,4.0,3.0,0.1373346596956253,-0.05863095074892044,-0.03541666641831398,-0.04801587387919426,-0.05863095074892044,0.0069444444961845875,0.0059523810632526875,0.008333333767950535,0.010416666977107525,0.0024801588151603937,0.004761904943734407,0.0059523810632526875,0.004629629664123058,0.008333333767950535,0.0069444444961845875,-0.05863095074892044,0.12807539105415344,0.0059523810632526875,0.008333333767950535,0.010416666977107525,-0.0416666679084301,-0.0059523810632526875,-0.008333333767950535,-0.010416666977107525,8.95112158614455e-18,6.3441316047372065e-18,8.065690087674926e-18,2.158767029090276e-17,1.1102230411687688e-17,4.625929158980737e-17,-0.03541666641831398,0.0059523810632526875,0.027807539328932762,0.004761904943734407,0.0059523810632526875,3.707902608473461e-17,-0.0023809524718672037,-1.1709436448482698e-32,-2.1955194351095517e-32,-0.0037202381063252687,-0.0019047618843615055,-0.0023809524718672037,6.7959517173840836e-18,4.99386017077912e-18,1.8469619589329023e-17,-0.04801587387919426,0.008333333767950535,0.004761904943734407,0.06441798806190491,0.008333333767950535,5.244188433349002e-17,-1.1940130153567449e-32,-0.0055555556900799274,-3.1051832322698653e-32,7.806255641895632e-18,-0.0031746032182127237,8.31181013091699e-19,-0.013888888992369175,-0.0055555556900799274,-9.247825059154908e-32,-0.05863095074892044,0.010416666977107525,0.0059523810632526875,0.008333333767950535,0.12807539105415344,7.683448437689069e-17,1.3552527156068805e-19,-2.4264081253197453e-32,-0.010416666977107525,1.0213670516141388e-17,9.247063441463719e-19,-0.0059523810632526875,-5.97206084578623e-32,-0.008333333767950535,-0.0416666679084301,0.0069444444961845875,-0.0416666679084301,3.707902608473461e-17,5.244188433349002e-17,7.683448437689069e-17,0.02083333395421505,-5.6392281390542176e-18,-6.579099288768101e-18,-1.2335811476632919e-17,-4.543323428852619e-18,-3.1720658023686032e-18,-3.965082408057119e-18,-1.079383514545138e-17,-5.551115205843844e-18,-2.3129645794903686e-17,0.0059523810632526875,-0.0059523810632526875,-0.0023809524718672037,-1.1940130153567449e-32,1.3552527156068805e-19,-5.6392281390542176e-18,0.0023809524718672037,1.7808500642667645e-33,3.3390938245824354e-33,5.421010862427522e-20,-0.0,-5.421010862427522e-20,2.8888949165808538e-33,1.4925957069001078e-33,6.933347799794049e-33,0.008333333767950535,-0.008333333767950535,-1.1709436448482698e-32,-0.0055555556900799274,-2.4264081253197453e-32,-6.579099288768101e-18,1.7808500642667645e-33,0.0055555556900799274,3.8956095844601695e-33,1.4347668949694207e-33,1.0017280922734329e-33,1.2521601842184133e-33,3.40865811089616e-33,1.7530242762728778e-33,7.304267695356329e-33,0.010416666977107525,-0.010416666977107525,-2.1955194351095517e-32,-3.1051832322698653e-32,-0.010416666977107525,-1.2335811476632919e-17,3.3390938245824354e-33,3.8956095844601695e-33,0.010416666977107525,2.6901878821499158e-33,1.878240322245368e-33,2.347800356888962e-33,6.391234049765796e-33,3.286920609847142e-33,1.3695502479806094e-32,0.0024801588151603937,8.95112158614455e-18,-0.0037202381063252687,7.806255641895632e-18,1.0213670516141388e-17,-4.543323428852619e-18,5.421010862427522e-20,1.4347668949694207e-33,2.6901878821499158e-33,0.0007440476329065859,-8.673617379884035e-19,-8.673617379884035e-19,-1.5419764345791148e-18,-7.930164505921508e-19,-3.3042352021841637e-18,0.004761904943734407,6.3441316047372065e-18,-0.0019047618843615055,-0.0031746032182127237,9.247063441463719e-19,-3.1720658023686032e-18,-0.0,1.0017280922734329e-33,1.878240322245368e-33,-8.673617379884035e-19,0.0012698412174358964,-1.4542185427972854e-19,6.092870737385702e-19,-3.7410111742353857e-19,7.555827894536114e-33,0.0059523810632526875,8.065690087674926e-18,-0.0023809524718672037,8.31181013091699e-19,-0.0059523810632526875,-3.965082408057119e-18,-5.421010862427522e-20,1.2521601842184133e-33,2.347800356888962e-33,-8.673617379884035e-19,-1.4542185427972854e-19,0.0023809524718672037,3.740216210779171e-33,-4.676263967794232e-19,-1.9484433716130517e-18,0.004629629664123058,2.158767029090276e-17,6.7959517173840836e-18,-0.013888888992369175,-5.97206084578623e-32,-1.079383514545138e-17,2.8888949165808538e-33,3.40865811089616e-33,6.391234049765796e-33,-1.5419764345791148e-18,6.092870737385702e-19,3.740216210779171e-33,0.004629629664123058,4.210801129559888e-33,1.883131517504941e-32,0.008333333767950535,1.1102230411687688e-17,4.99386017077912e-18,-0.0055555556900799274,-0.008333333767950535,-5.551115205843844e-18,1.4925957069001078e-33,1.7530242762728778e-33,3.286920609847142e-33,-7.930164505921508e-19,-3.7410111742353857e-19,-4.676263967794232e-19,4.210801129559888e-33,0.0055555556900799274,9.7904661653363e-33,0.0069444444961845875,4.625929158980737e-17,1.8469619589329023e-17,-9.247825059154908e-32,-0.0416666679084301,-2.3129645794903686e-17,6.933347799794049e-33,7.304267695356329e-33,1.3695502479806094e-32,-3.3042352021841637e-18,7.555827894536114e-33,-1.9484433716130517e-18,1.883131517504941e-32,9.7904661653363e-33,0.02083333395421505,3.0,6.0,4.0,4.0,0.11144841462373734,-0.04553571343421936,-0.02745535783469677,-0.037261903285980225,-0.037261903285980225,0.0052083334885537624,0.004464285913854837,0.0062500000931322575,0.0062500000931322575,0.0018601190531626344,0.0035714285913854837,0.0035714285913854837,0.0034722222480922937,0.004999999888241291,0.0034722222480922937,-0.04553571343421936,0.09761904925107956,0.004464285913854837,0.0062500000931322575,0.0062500000931322575,-0.03125,-0.004464285913854837,-0.0062500000931322575,-0.0062500000931322575,6.679459871718241e-18,4.6903361711701374e-18,4.6903361711701374e-18,1.6190751890996458e-17,6.661337998858429e-18,1.6190751890996458e-17,-0.02745535783469677,0.004464285913854837,0.021212797611951828,0.0035714285913854837,0.0035714285913854837,2.73466770777868e-17,-0.0017857142956927419,-1.2953988888363887e-32,-1.2953988888363887e-32,-0.0027901786379516125,-0.0014285714132711291,-0.0014285714132711291,6.600757772336883e-18,3.0524312907605183e-18,6.600757772336883e-18,-0.037261903285980225,0.0062500000931322575,0.0035714285913854837,0.04914682358503342,0.004999999888241291,4.263124102720284e-17,-6.776263578034403e-20,-0.004166666883975267,-2.019421271275154e-32,5.421010862427522e-18,-0.0023809524718672037,3.119031841177802e-19,-0.010416666977107525,-0.0033333334140479565,-3.3324124616291553e-32,-0.037261903285980225,0.0062500000931322575,0.0035714285913854837,0.004999999888241291,0.04914682358503342,4.263124102720284e-17,-6.776263578034403e-20,-2.019421271275154e-32,-0.004166666883975267,5.403225238486713e-18,3.119031841177802e-19,-0.0023809524718672037,-3.3324124616291553e-32,-0.0033333334140479565,-0.010416666977107525,0.0052083334885537624,-0.03125,2.73466770777868e-17,4.263124102720284e-17,4.263124102720284e-17,0.015625,-3.1720658023686032e-18,-7.401487216851996e-18,-7.401487216851996e-18,-3.4074925716394644e-18,-2.3790494034752407e-18,-2.3790494034752407e-18,-8.095375945498229e-18,-3.3306689994292145e-18,-8.095375945498229e-18,0.004464285913854837,-0.004464285913854837,-0.0017857142956927419,-6.776263578034403e-20,-6.776263578034403e-20,-3.1720658023686032e-18,0.0017857142956927419,1.5025921843278974e-33,1.5025921843278974e-33,5.421010862427522e-20,2.710505431213761e-20,2.710505431213761e-20,1.5407439555097887e-33,7.2222372914521344e-34,1.5407439555097887e-33,0.0062500000931322575,-0.0062500000931322575,-1.2953988888363887e-32,-0.004166666883975267,-2.019421271275154e-32,-7.401487216851996e-18,1.5025921843278974e-33,0.004166666883975267,3.5060485525457556e-33,1.6141128027583464e-33,1.126944138245923e-33,1.126944138245923e-33,3.834740650264668e-33,1.5777218853797885e-33,3.834740650264668e-33,0.0062500000931322575,-0.0062500000931322575,-1.2953988888363887e-32,-2.019421271275154e-32,-0.004166666883975267,-7.401487216851996e-18,1.5025921843278974e-33,3.5060485525457556e-33,0.004166666883975267,1.6141128027583464e-33,1.126944138245923e-33,1.126944138245923e-33,3.834740650264668e-33,1.5777218853797885e-33,3.834740650264668e-33,0.0018601190531626344,6.679459871718241e-18,-0.0027901786379516125,5.421010862427522e-18,5.403225238486713e-18,-3.4074925716394644e-18,5.421010862427522e-20,1.6141128027583464e-33,1.6141128027583464e-33,0.0005580357392318547,-4.87890977618477e-19,-4.87890977618477e-19,-1.1564823517837303e-18,-4.758098496757752e-19,-1.1564823517837303e-18,0.0035714285913854837,4.6903361711701374e-18,-0.0014285714132711291,-0.0023809524718672037,3.119031841177802e-19,-2.3790494034752407e-18,2.710505431213761e-20,1.126944138245923e-33,1.126944138245923e-33,-4.87890977618477e-19,0.0009523809421807528,9.91512642816331e-21,-5.455641295759938e-19,-2.244606807938808e-19,2.2289444700383895e-33,0.0035714285913854837,4.6903361711701374e-18,-0.0014285714132711291,3.119031841177802e-19,-0.0023809524718672037,-2.3790494034752407e-18,2.710505431213761e-20,1.126944138245923e-33,1.126944138245923e-33,-4.87890977618477e-19,9.91512642816331e-21,0.0009523809421807528,2.2289444700383895e-33,-2.244606807938808e-19,-5.455641295759938e-19,0.0034722222480922937,1.6190751890996458e-17,6.600757772336883e-18,-0.010416666977107525,-3.3324124616291553e-32,-8.095375945498229e-18,1.5407439555097887e-33,3.834740650264668e-33,3.834740650264668e-33,-1.1564823517837303e-18,-5.455641295759938e-19,2.2289444700383895e-33,0.0034722222480922937,2.762760699317776e-33,6.590960090862103e-33,0.004999999888241291,6.661337998858429e-18,3.0524312907605183e-18,-0.0033333334140479565,-0.0033333334140479565,-3.3306689994292145e-18,7.2222372914521344e-34,1.5777218853797885e-33,1.5777218853797885e-33,-4.758098496757752e-19,-2.244606807938808e-19,-2.244606807938808e-19,2.762760699317776e-33,0.002222222276031971,2.762760699317776e-33,0.0034722222480922937,1.6190751890996458e-17,6.600757772336883e-18,-3.3324124616291553e-32,-0.010416666977107525,-8.095375945498229e-18,1.5407439555097887e-33,3.834740650264668e-33,3.834740650264668e-33,-1.1564823517837303e-18,2.2289444700383895e-33,-5.455641295759938e-19,6.590960090862103e-33,2.762760699317776e-33,0.0034722222480922937,3.0,6.0,4.0,5.0,0.09392856806516647,-0.037261903285980225,-0.022440476343035698,-0.030476190149784088,-0.025833332911133766,0.004166666883975267,0.0035714285913854837,0.004999999888241291,0.004166666883975267,0.0014880952658131719,0.0028571428265422583,0.0023809524718672037,0.0027777778450399637,0.0033333334140479565,0.0019841270986944437,-0.037261903285980225,0.07892857491970062,0.0035714285913854837,0.004999999888241291,0.004166666883975267,-0.02500000037252903,-0.0035714285913854837,-0.004999999888241291,-0.004166666883975267,-2.7319132790569397e-18,-1.9371207165932727e-18,-1.893338253565994e-18,-6.476301004552767e-18,-2.3538863624462245e-18,-3.936513657651069e-18,-0.022440476343035698,0.0035714285913854837,0.01716071367263794,0.0028571428265422583,0.0023809524718672037,-9.828447541791768e-18,-0.0014285714132711291,-0.0,-3.2526065174565133e-19,-0.0022321429569274187,-0.0011428571306169033,-0.0009523809421807528,-9.11757017772492e-18,-3.1519504242325387e-18,-6.268270043579356e-18,-0.030476190149784088,0.004999999888241291,0.0028571428265422583,0.03976190462708473,0.0033333334140479565,-1.4313946909923867e-17,-3.3881317890172014e-20,-0.0033333334140479565,-1.3344027235386865e-19,-8.565197162635485e-18,-0.0019047618843615055,2.1580441662927236e-19,-0.008333333767950535,-0.002222222276031971,-2.3227425470945084e-19,-0.025833332911133766,0.004166666883975267,0.0023809524718672037,0.0033333334140479565,0.024821428582072258,-1.1578040416459828e-17,3.7747808873663484e-20,-0.0,-0.0020833334419876337,-6.397293261935071e-18,4.527602551118319e-19,-0.0011904762359336019,-2.9217482204448105e-32,-0.0016666667070239782,-0.003968254197388887,0.004166666883975267,-0.02500000037252903,-9.828447541791768e-18,-1.4313946909923867e-17,-1.1578040416459828e-17,0.012500000186264515,-1.925929944387236e-34,-0.0,3.0173087204473133e-34,1.3629969872967551e-18,9.516196993515503e-19,7.930164505921508e-19,3.2381505022763835e-18,1.1102229998097382e-18,1.9825412040285595e-18,0.0035714285913854837,-0.0035714285913854837,-0.0014285714132711291,-3.3881317890172014e-20,3.7747808873663484e-20,-1.925929944387236e-34,0.0014285714132711291,-0.0,1.894180998744995e-21,-0.0,1.3552527156068805e-20,-0.0,-1.925929944387236e-34,-9.62964972193618e-35,-9.113101315078557e-21,0.004999999888241291,-0.004999999888241291,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.004166666883975267,-3.2526065174565133e-19,-1.3344027235386865e-19,-0.0020833334419876337,3.0173087204473133e-34,1.894180998744995e-21,-0.0,0.0020833334419876337,2.9596578862697016e-21,-9.62964972193618e-35,1.5365270204024038e-19,0.0,6.672013617693433e-20,-2.8928731492256315e-21,0.0014880952658131719,-2.7319132790569397e-18,-0.0022321429569274187,-8.565197162635485e-18,-6.397293261935071e-18,1.3629969872967551e-18,-0.0,-0.0,2.9596578862697016e-21,0.00044642857392318547,7.047314121155779e-19,3.7947076036992655e-19,1.850371804212999e-18,6.34413150133963e-19,1.1057952053883184e-18,0.0028571428265422583,-1.9371207165932727e-18,-0.0011428571306169033,-0.0019047618843615055,4.527602551118319e-19,9.516196993515503e-19,1.3552527156068805e-20,-0.0,-9.62964972193618e-35,7.047314121155779e-19,0.0007619047537446022,-1.296898483812503e-19,-8.952563491199201e-20,-8.569040553954136e-20,1.781485198558193e-33,0.0023809524718672037,-1.893338253565994e-18,-0.0009523809421807528,2.1580441662927236e-19,-0.0011904762359336019,7.930164505921508e-19,-0.0,-0.0,1.5365270204024038e-19,3.7947076036992655e-19,-1.296898483812503e-19,0.0004761904710903764,1.720022823386519e-33,5.421010862427522e-20,3.799817511933312e-19,0.0027777778450399637,-6.476301004552767e-18,-9.11757017772492e-18,-0.008333333767950535,-2.9217482204448105e-32,3.2381505022763835e-18,-1.925929944387236e-34,-0.0,0.0,1.850371804212999e-18,-8.952563491199201e-20,1.720022823386519e-33,0.0027777778450399637,2.720465861562213e-33,5.2091819098338584e-33,0.0033333334140479565,-2.3538863624462245e-18,-3.1519504242325387e-18,-0.002222222276031971,-0.0016666667070239782,1.1102229998097382e-18,-9.62964972193618e-35,-0.0,6.672013617693433e-20,6.34413150133963e-19,-8.569040553954136e-20,5.421010862427522e-20,2.720465861562213e-33,0.0011111111380159855,1.1613712735472542e-19,0.0019841270986944437,-3.936513657651069e-18,-6.268270043579356e-18,-2.3227425470945084e-19,-0.003968254197388887,1.9825412040285595e-18,-9.113101315078557e-21,-0.0,-2.8928731492256315e-21,1.1057952053883184e-18,1.781485198558193e-33,3.799817511933312e-19,5.2091819098338584e-33,1.1613712735472542e-19,0.0009920635493472219,3.0,6.0,4.0,6.0,0.08123110234737396,-0.03154762089252472,-0.01898384280502796,-0.02579365111887455,-0.01898384280502796,0.0034722222480922937,0.0029761905316263437,0.004166666883975267,0.0029761905316263437,0.0012400794075801969,0.0023809524718672037,0.001700680237263441,0.002314814832061529,0.0023809524718672037,0.0012400794075801969,-0.03154762089252472,0.06626984477043152,0.0029761905316263437,0.004166666883975267,0.0029761905316263437,-0.02083333395421505,-0.0029761905316263437,-0.004166666883975267,-0.0029761905316263437,4.5466354600252815e-18,3.0800113535394145e-18,2.3400616928686257e-18,1.079383514545138e-17,3.05575448887145e-18,4.554633469368057e-18,-0.01898384280502796,0.0029761905316263437,0.01441397424787283,0.0023809524718672037,0.001700680237263441,1.9389173115247073e-17,-0.0011904762359336019,-6.1230384014699675e-33,5.421010862427522e-20,-0.0018601190531626344,-0.0009523809421807528,-0.0006802721181884408,3.3979758586920418e-18,1.111307226797642e-18,1.6012678103087267e-18,-0.02579365111887455,0.004166666883975267,0.0023809524718672037,0.033399470150470734,0.0023809524718672037,2.741046593790444e-17,-9.675165856105651e-20,-0.0027777778450399637,-1.1161415546407375e-19,3.7947076036992655e-18,-0.0015873016091063619,1.2498584025872315e-19,-0.0069444444961845875,-0.0015873016091063619,-2.0013588391811048e-19,-0.01898384280502796,0.0029761905316263437,0.001700680237263441,0.0023809524718672037,0.01441397424787283,1.9389173115247073e-17,2.9912130494927524e-20,-6.1230384014699675e-33,-0.0011904762359336019,2.4605914206946462e-18,-2.710505431213761e-20,-0.0006802721181884408,-1.5268951626891636e-32,-0.0009523809421807528,-0.0018601190531626344,0.0034722222480922937,-0.02083333395421505,1.9389173115247073e-17,2.741046593790444e-17,1.9389173115247073e-17,0.010416666977107525,-2.8196140695271088e-18,-3.2895496443840503e-18,-2.8196140695271088e-18,-2.2716617144263096e-18,-1.5860329011843016e-18,-1.1328806141609079e-18,-5.39691757272569e-18,-1.5860329011843016e-18,-2.2716617144263096e-18,0.0029761905316263437,-0.0029761905316263437,-0.0011904762359336019,-9.675165856105651e-20,2.9912130494927524e-20,-2.8196140695271088e-18,0.0011904762359336019,8.904250321333822e-34,-8.478814334221816e-22,4.834595321375352e-35,4.0657581468206416e-20,-1.3552527156068805e-20,1.396299209680746e-33,-1.9569190939154476e-21,1.4285834280155393e-21,0.004166666883975267,-0.004166666883975267,-6.1230384014699675e-33,-0.0027777778450399637,-6.1230384014699675e-33,-3.2895496443840503e-18,8.904250321333822e-34,0.0027777778450399637,8.904250321333822e-34,7.173834474847104e-34,5.0086404613671646e-34,3.5776005263383236e-34,1.70432905544808e-33,5.0086404613671646e-34,7.173834474847104e-34,0.0029761905316263437,-0.0029761905316263437,5.421010862427522e-20,-1.1161415546407375e-19,-0.0011904762359336019,-2.8196140695271088e-18,-8.478814334221816e-22,8.904250321333822e-34,0.0011904762359336019,-1.324814670302399e-21,-3.835802098089613e-21,-1.616767804970081e-20,1.4711047314311993e-33,4.848146282969069e-20,-5.9526404883502066e-21,0.0012400794075801969,4.5466354600252815e-18,-0.0018601190531626344,3.7947076036992655e-18,2.4605914206946462e-18,-2.2716617144263096e-18,4.834595321375352e-35,7.173834474847104e-34,-1.324814670302399e-21,0.00037202381645329297,-3.7947076036992655e-19,-1.8973538018496328e-19,-7.709882172895574e-19,-2.2963381664599915e-19,-3.290945046378639e-19,0.0023809524718672037,3.0800113535394145e-18,-0.0009523809421807528,-0.0015873016091063619,-2.710505431213761e-20,-1.5860329011843016e-18,4.0657581468206416e-20,5.0086404613671646e-34,-3.835802098089613e-21,-3.7947076036992655e-19,0.0006349206087179482,-2.0328790734103208e-20,3.046435368692851e-19,7.619148989998574e-20,-5.993440525829531e-21,0.001700680237263441,2.3400616928686257e-18,-0.0006802721181884408,1.2498584025872315e-19,-0.0006802721181884408,-1.1328806141609079e-18,-1.3552527156068805e-20,3.5776005263383236e-34,-1.616767804970081e-20,-1.8973538018496328e-19,-2.0328790734103208e-20,0.0002721088530961424,1.0111132208032988e-33,-2.966554666185576e-20,2.1486701420009664e-20,0.002314814832061529,1.079383514545138e-17,3.3979758586920418e-18,-0.0069444444961845875,-1.5268951626891636e-32,-5.39691757272569e-18,1.396299209680746e-33,1.70432905544808e-33,1.4711047314311993e-33,-7.709882172895574e-19,3.046435368692851e-19,1.0111132208032988e-33,0.002314814832061529,1.2904138009655437e-33,1.865521657040463e-33,0.0023809524718672037,3.05575448887145e-18,1.111307226797642e-18,-0.0015873016091063619,-0.0009523809421807528,-1.5860329011843016e-18,-1.9569190939154476e-21,5.0086404613671646e-34,4.848146282969069e-20,-2.2963381664599915e-19,7.619148989998574e-20,-2.966554666185576e-20,1.2904138009655437e-33,0.0006349206087179482,8.604779280060402e-20,0.0012400794075801969,4.554633469368057e-18,1.6012678103087267e-18,-2.0013588391811048e-19,-0.0018601190531626344,-2.2716617144263096e-18,1.4285834280155393e-21,7.173834474847104e-34,-5.9526404883502066e-21,-3.290945046378639e-19,-5.993440525829531e-21,2.1486701420009664e-20,1.865521657040463e-33,8.604779280060402e-20,0.00037202381645329297,3.0,6.0,4.0,7.0,0.07158683240413666,-0.027359694242477417,-0.01645408198237419,-0.022363945841789246,-0.014547902159392834,0.0029761905316263437,0.0025510203558951616,0.0035714285913854837,0.0022321429569274187,0.0010629252064973116,0.0020408162381500006,0.0012755101779475808,0.0019841270986944437,0.0017857142956927419,0.0008267195662483573,-0.027359694242477417,0.05712159723043442,0.0025510203558951616,0.0035714285913854837,0.0022321429569274187,-0.01785714365541935,-0.0025510203558951616,-0.0035714285913854837,-0.0022321429569274187,3.833605358414265e-18,2.681076619765809e-18,1.741170108080739e-18,9.251858814269842e-18,2.564499574496873e-18,2.965539482929426e-18,-0.01645408198237419,0.0025510203558951616,0.012427721172571182,0.0020408162381500006,0.0012755101779475808,1.6395412918154328e-17,-0.0010204081190750003,-4.437958800700572e-33,5.421010862427522e-20,-0.0015943878097459674,-0.0008163265301845968,-0.0005102040595375001,3.7718617023611634e-18,1.0706496453294356e-18,1.0123737371993091e-18,-0.022363945841789246,0.0035714285913854837,0.0020408162381500006,0.028798185288906097,0.0017857142956927419,2.326181602189986e-17,-2.9047225922798103e-20,-0.0023809524718672037,1.7812552547156647e-19,3.198396408832238e-18,-0.0013605442363768816,8.454901907884036e-20,-0.0059523810632526875,-0.0011904762359336019,3.010933293789958e-19,-0.014547902159392834,0.0022321429569274187,0.0012755101779475808,0.0017857142956927419,0.009148242883384228,1.400995803481063e-17,-3.3478745888148647e-21,-3.7922564477160276e-33,-0.0007440476329065859,1.964496258965715e-18,1.0842021724855044e-19,-0.00042517005931586027,-1.1415784735335844e-32,-0.0005952381179668009,-0.0009920635493472219,0.0029761905316263437,-0.01785714365541935,1.6395412918154328e-17,2.326181602189986e-17,1.400995803481063e-17,0.008928571827709675,-2.071553075769625e-18,-2.4168120595946647e-18,-1.5105074855478771e-18,-1.9471384941967493e-18,-1.3594567576726047e-18,-8.49660486470075e-19,-4.625929407134921e-18,-1.1895247017376204e-18,-1.4318352680661478e-18,0.0025510203558951616,-0.0025510203558951616,-0.0010204081190750003,-2.9047225922798103e-20,-3.3478745888148647e-21,-2.071553075769625e-18,0.0010204081190750003,5.607341315582553e-34,-1.5126647418892599e-21,2.710505431213761e-20,1.3552527156068805e-20,-0.0,1.0111132208032988e-33,-1.6113635852278534e-21,1.1196284400011075e-21,0.0035714285913854837,-0.0035714285913854837,-4.437958800700572e-33,-0.0023809524718672037,-3.7922564477160276e-33,-2.4168120595946647e-18,5.607341315582553e-34,0.0023809524718672037,4.088686184621661e-34,5.270572285976545e-34,3.679817566159495e-34,2.2998859214524992e-34,1.2521601842184133e-33,3.219840427786743e-34,3.875733903533184e-34,0.0022321429569274187,-0.0022321429569274187,5.421010862427522e-20,1.7812552547156647e-19,-0.0007440476329065859,-1.5105074855478771e-18,-1.5126647418892599e-21,4.088686184621661e-34,0.0007440476329065859,-2.3635385456059982e-21,1.3185046918283938e-21,-1.3949688556780765e-20,7.823353878393959e-34,-6.047392735048449e-20,-3.488932147709884e-20,0.0010629252064973116,3.833605358414265e-18,-0.0015943878097459674,3.198396408832238e-18,1.964496258965715e-18,-1.9471384941967493e-18,2.710505431213761e-20,5.270572285976545e-34,-2.3635385456059982e-21,0.0003188775444868952,-2.710505431213761e-19,-1.8973538018496328e-19,-6.608470507765904e-19,-1.7244985154792801e-19,-2.094439664054107e-19,0.0020408162381500006,2.681076619765809e-18,-0.0008163265301845968,-0.0013605442363768816,1.0842021724855044e-19,-1.3594567576726047e-18,1.3552527156068805e-20,3.679817566159495e-34,1.3185046918283938e-21,-2.710505431213761e-19,0.0005442177061922848,-0.0,-3.1175093118628214e-19,-8.077717242082659e-20,1.758006188455061e-21,0.0012755101779475808,1.741170108080739e-18,-0.0005102040595375001,8.454901907884036e-20,-0.00042517005931586027,-8.49660486470075e-19,-0.0,2.2998859214524992e-34,-1.3949688556780765e-20,-1.8973538018496328e-19,-0.0,0.0001700680295471102,8.666684749742561e-34,-2.818300635961345e-20,1.1059482338016407e-20,0.0019841270986944437,9.251858814269842e-18,3.7718617023611634e-18,-0.0059523810632526875,-1.1415784735335844e-32,-4.625929407134921e-18,1.0111132208032988e-33,1.2521601842184133e-33,7.823353878393959e-34,-6.608470507765904e-19,-3.1175093118628214e-19,8.666684749742561e-34,0.0019841270986944437,9.830562828655825e-34,1.165395109474297e-33,0.0017857142956927419,2.564499574496873e-18,1.0706496453294356e-18,-0.0011904762359336019,-0.0005952381179668009,-1.1895247017376204e-18,-1.6113635852278534e-21,3.219840427786743e-34,-6.047392735048449e-20,-1.7244985154792801e-19,-8.077717242082659e-20,-2.818300635961345e-20,9.830562828655825e-34,0.00039682540227659047,-1.0182944246053252e-19,0.0008267195662483573,2.965539482929426e-18,1.0123737371993091e-18,3.010933293789958e-19,-0.0009920635493472219,-1.4318352680661478e-18,1.1196284400011075e-21,3.875733903533184e-34,-3.488932147709884e-20,-2.094439664054107e-19,1.758006188455061e-21,1.1059482338016407e-20,1.165395109474297e-33,-1.0182944246053252e-19,0.0001653439103392884,3.0,6.0,4.0,8.0,0.06400462985038757,-0.02415674552321434,-0.014521329663693905,-0.01974206417798996,-0.011507936753332615,0.0026041667442768812,0.0022321429569274187,0.0031250000465661287,0.0017361111240461469,0.0009300595265813172,0.0017857142956927419,0.0009920635493472219,0.0017361111240461469,0.0013888889225199819,0.0005787037080153823,-0.02415674552321434,0.05019841343164444,0.0022321429569274187,0.0031250000465661287,0.0017361111240461469,-0.015625,-0.0022321429569274187,-0.0031250000465661287,-0.0017361111240461469,3.4074925716394644e-18,2.3790494034752407e-18,1.2624017952453798e-18,8.095375945498229e-18,1.953882084140588e-18,1.879107645102785e-18,-0.014521329663693905,0.0022321429569274187,0.010923858731985092,0.0017857142956927419,0.0009920635493472219,1.4202016138155642e-17,-0.0008928571478463709,-6.727426168784939e-33,-5.929230630780102e-20,-0.0013950893189758062,-0.0007142857066355646,-0.00039682540227659047,2.8912057243629608e-18,7.201393570843914e-19,6.250626487908753e-19,-0.01974206417798996,0.0031250000465661287,0.0017857142956927419,0.025314154103398323,0.0013888889225199819,2.2055770145185294e-17,-4.477590592738545e-33,-0.0020833334419876337,1.0351029931463442e-19,2.0580665162674074e-18,-0.0011904762359336019,-1.1693357303764328e-19,-0.0052083334885537624,-0.0009259259095415473,1.3276963567224128e-19,-0.011507936753332615,0.0017361111240461469,0.0009920635493472219,0.0013888889225199819,0.006181500386446714,1.1548301619077321e-17,-2.3444463408982797e-33,-5.470374550534663e-33,-0.0004960317746736109,1.0366756832106577e-18,-1.762258793454443e-19,-0.00028344671591185033,-8.13164600633832e-33,-0.00039682540227659047,-0.0005787037080153823,0.0026041667442768812,-0.015625,1.4202016138155642e-17,2.2055770145185294e-17,1.1548301619077321e-17,0.0078125,-1.5860329011843016e-18,-3.700743608425998e-18,-1.7622588710026254e-18,-1.7037462858197322e-18,-1.1895247017376204e-18,-6.608470507765904e-19,-4.0476879727491145e-18,-9.251859021064995e-19,-9.63735310386038e-19,0.0022321429569274187,-0.0022321429569274187,-0.0008928571478463709,-4.477590592738545e-33,-2.3444463408982797e-33,-1.5860329011843016e-18,0.0008928571478463709,7.512960921639487e-34,3.5776005263383236e-34,3.4588129191791447e-34,2.4148802634428723e-34,1.3416001973768713e-34,8.217301524617855e-34,1.8782402304098718e-34,1.9565003739370484e-34,0.0031250000465661287,-0.0031250000465661287,-6.727426168784939e-33,-0.0020833334419876337,-5.470374550534663e-33,-3.700743608425998e-18,7.512960921639487e-34,0.0020833334419876337,8.347734561456088e-34,8.070564013791732e-34,5.634720691229615e-34,3.130400460546033e-34,1.917370325132334e-33,4.3825606906821945e-34,4.565167309597706e-34,0.0017361111240461469,-0.0017361111240461469,-5.929230630780102e-20,1.0351029931463442e-19,-0.0004960317746736109,-1.7622588710026254e-18,3.5776005263383236e-34,8.347734561456088e-34,0.0004960317746736109,3.851859888774472e-34,2.783618377205179e-34,1.6940658945086007e-20,9.130334619195412e-34,-2.9574369386367394e-20,1.3817987509212972e-20,0.0009300595265813172,3.4074925716394644e-18,-0.0013950893189758062,2.0580665162674074e-18,1.0366756832106577e-18,-1.7037462858197322e-18,3.4588129191791447e-34,8.070564013791732e-34,3.851859888774472e-34,0.00027901786961592734,5.569996430505979e-20,5.0125471372442764e-20,-5.782411758918651e-19,-1.321694127402575e-19,-1.3767647106590584e-19,0.0017857142956927419,2.3790494034752407e-18,-0.0007142857066355646,-0.0011904762359336019,-1.762258793454443e-19,-1.1895247017376204e-18,2.4148802634428723e-34,5.634720691229615e-34,2.783618377205179e-34,5.569996430505979e-20,0.0004761904710903764,7.04903478607686e-20,5.0086404613671646e-34,1.0395079067370102e-34,1.3774508235726578e-34,0.0009920635493472219,1.2624017952453798e-18,-0.00039682540227659047,-1.1693357303764328e-19,-0.00028344671591185033,-6.608470507765904e-19,1.3416001973768713e-34,3.130400460546033e-34,1.6940658945086007e-20,5.0125471372442764e-20,7.04903478607686e-20,0.00011337868636474013,2.3850670175588824e-34,-1.6940658945086007e-20,1.8091344725329695e-20,0.0017361111240461469,8.095375945498229e-18,2.8912057243629608e-18,-0.0052083334885537624,-8.13164600633832e-33,-4.0476879727491145e-18,8.217301524617855e-34,1.917370325132334e-33,9.130334619195412e-34,-5.782411758918651e-19,5.0086404613671646e-34,2.3850670175588824e-34,0.0017361111240461469,7.5325260149184665e-34,7.846381629055575e-34,0.0013888889225199819,1.953882084140588e-18,7.201393570843914e-19,-0.0009259259095415473,-0.00039682540227659047,-9.251859021064995e-19,1.8782402304098718e-34,4.3825606906821945e-34,-2.9574369386367394e-20,-1.321694127402575e-19,1.0395079067370102e-34,-1.6940658945086007e-20,7.5325260149184665e-34,0.00026455026818439364,-3.793418300542934e-20,0.0005787037080153823,1.879107645102785e-18,6.250626487908753e-19,1.3276963567224128e-19,-0.0005787037080153823,-9.63735310386038e-19,1.9565003739370484e-34,4.565167309597706e-34,1.3817987509212972e-20,-1.3767647106590584e-19,1.3774508235726578e-34,1.8091344725329695e-20,7.846381629055575e-34,-3.793418300542934e-20,8.26719551696442e-05,3.0,6.0,5.0,3.0,0.1160052940249443,-0.04801587387919426,-0.02896825410425663,-0.03333333507180214,-0.04801587387919426,0.0055555556900799274,0.004761904943734407,0.0055555556900799274,0.008333333767950535,0.0019841270986944437,0.0031746032182127237,0.004761904943734407,0.0026455025654286146,0.0055555556900799274,0.0055555556900799274,-0.04801587387919426,0.10357142984867096,0.004761904943734407,0.0055555556900799274,0.008333333767950535,-0.03333333507180214,-0.004761904943734407,-0.0055555556900799274,-0.008333333767950535,-3.924830972269676e-18,-2.1449802443847322e-18,-3.176236860607402e-18,-5.098936923991731e-18,-3.59120793812142e-18,-1.8503717628539684e-17,-0.02896825410425663,0.004761904943734407,0.02250000089406967,0.0031746032182127237,0.004761904943734407,-1.278739005254093e-17,-0.0019047618843615055,-9.035759766246136e-20,-0.0,-0.0029761905316263437,-0.0012698412174358964,-0.0019047618843615055,-7.338463498800968e-18,-5.4752209710517974e-18,-2.5942284870710595e-17,-0.03333333507180214,0.0055555556900799274,0.0031746032182127237,0.03253968432545662,0.0055555556900799274,-1.5067313233335113e-17,-5.613473172748737e-20,-0.0027777778450399637,-0.0,-8.782037597132586e-18,-0.0015873016091063619,-5.508528122199281e-19,-0.005291005130857229,-0.0027777778450399637,-8.619238859007497e-32,-0.04801587387919426,0.008333333767950535,0.004761904943734407,0.0055555556900799274,0.10357142984867096,-2.6169542817842188e-17,8.922645402418924e-22,1.0320629105247557e-19,-0.008333333767950535,-1.534335994735631e-17,-3.3881317890172014e-19,-0.004761904943734407,2.168404344971009e-19,-0.0055555556900799274,-0.03333333507180214,0.0055555556900799274,-0.03333333507180214,-1.278739005254093e-17,-1.5067313233335113e-17,-2.6169542817842188e-17,0.01666666753590107,3.851859888774472e-34,-1.9603558576545012e-34,-0.0,1.817329454259109e-18,1.05735530192206e-18,1.5860329011843016e-18,2.6433882031063616e-18,1.850371804212999e-18,9.251858814269842e-18,0.004761904943734407,-0.004761904943734407,-0.0019047618843615055,-5.613473172748737e-20,8.922645402418924e-22,3.851859888774472e-34,0.0019047618843615055,6.118919947344704e-21,-0.0,1.0842021724855044e-19,-0.0,-0.0,1.1600446341722583e-20,-4.461322701209462e-22,3.851859888774472e-34,0.0055555556900799274,-0.0055555556900799274,-9.035759766246136e-20,-0.0027777778450399637,1.0320629105247557e-19,-1.9603558576545012e-34,6.118919947344704e-21,0.0027777778450399637,-0.0,9.560812821622884e-21,1.51348832782044e-20,2.0855717305099774e-21,-1.0842021724855044e-19,-5.421010862427522e-20,1.1757750230574204e-35,0.008333333767950535,-0.008333333767950535,-0.0,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019841270986944437,-3.924830972269676e-18,-0.0029761905316263437,-8.782037597132586e-18,-1.534335994735631e-17,1.817329454259109e-18,1.0842021724855044e-19,9.560812821622884e-21,-0.0,0.0005952381179668009,6.776263578034403e-19,9.75781955236954e-19,1.4918213721127277e-18,1.0566581954608309e-18,5.286776406212723e-18,0.0031746032182127237,-2.1449802443847322e-18,-0.0012698412174358964,-0.0015873016091063619,-3.3881317890172014e-19,1.05735530192206e-18,-0.0,1.51348832782044e-20,-0.0,6.776263578034403e-19,0.0006349206087179482,1.3552527156068805e-19,-6.412158059434167e-20,-0.0,6.548161810916602e-33,0.004761904943734407,-3.176236860607402e-18,-0.0019047618843615055,-5.508528122199281e-19,-0.004761904943734407,1.5860329011843016e-18,-0.0,2.0855717305099774e-21,-0.0,9.75781955236954e-19,1.3552527156068805e-19,0.0019047618843615055,3.972517524224226e-21,1.926736291183282e-19,-4.915965916663497e-19,0.0026455025654286146,-5.098936923991731e-18,-7.338463498800968e-18,-0.005291005130857229,2.168404344971009e-19,2.6433882031063616e-18,1.1600446341722583e-20,-1.0842021724855044e-19,-0.0,1.4918213721127277e-18,-6.412158059434167e-20,3.972517524224226e-21,0.0013227512827143073,-9.595812093497967e-20,1.490577236162952e-32,0.0055555556900799274,-3.59120793812142e-18,-5.4752209710517974e-18,-0.0027777778450399637,-0.0055555556900799274,1.850371804212999e-18,-4.461322701209462e-22,-5.421010862427522e-20,-0.0,1.0566581954608309e-18,-0.0,1.926736291183282e-19,-9.595812093497967e-20,0.0027777778450399637,1.0179294717333357e-32,0.0055555556900799274,-1.8503717628539684e-17,-2.5942284870710595e-17,-8.619238859007497e-32,-0.03333333507180214,9.251858814269842e-18,3.851859888774472e-34,1.1757750230574204e-35,-0.0,5.286776406212723e-18,6.548161810916602e-33,-4.915965916663497e-19,1.490577236162952e-32,1.0179294717333357e-32,0.01666666753590107,3.0,6.0,5.0,4.0,0.09392856806516647,-0.037261903285980225,-0.022440476343035698,-0.025833332911133766,-0.030476190149784088,0.004166666883975267,0.0035714285913854837,0.004166666883975267,0.004999999888241291,0.0014880952658131719,0.0023809524718672037,0.0028571428265422583,0.0019841270986944437,0.0033333334140479565,0.0027777778450399637,-0.037261903285980225,0.07892857491970062,0.0035714285913854837,0.004166666883975267,0.004999999888241291,-0.02500000037252903,-0.0035714285913854837,-0.004166666883975267,-0.004999999888241291,-2.7102949137478663e-18,-1.8889597797885978e-18,-1.9371207165932727e-18,-3.715005442957331e-18,-2.166235890995201e-18,-6.476301004552767e-18,-0.022440476343035698,0.0035714285913854837,0.01716071367263794,0.0023809524718672037,0.0028571428265422583,-9.828447541791768e-18,-0.0014285714132711291,-2.5530590979385935e-19,-0.0,-0.0022321429569274187,-0.0009523809421807528,-0.0011428571306169033,-6.256422335665759e-18,-3.3384912328918222e-18,-9.11757017772492e-18,-0.025833332911133766,0.004166666883975267,0.0023809524718672037,0.024821428582072258,0.0033333334140479565,-1.1578040416459828e-17,6.285525108705394e-20,-0.0020833334419876337,-0.0,-6.342582709040201e-18,-0.0011904762359336019,1.8391270075683766e-19,-0.003968254197388887,-0.0016666667070239782,-2.9399766113430117e-32,-0.030476190149784088,0.004999999888241291,0.0028571428265422583,0.0033333334140479565,0.03976190462708473,-1.4313946909923867e-17,-3.3881317890172014e-20,5.421010862427522e-20,-0.0033333334140479565,-8.45402160676652e-18,2.961280743545697e-19,-0.0019047618843615055,1.0842021724855044e-19,-0.002222222276031971,-0.008333333767950535,0.004166666883975267,-0.02500000037252903,-9.828447541791768e-18,-1.1578040416459828e-17,-1.4313946909923867e-17,0.012500000186264515,-0.0,1.954194155039781e-34,-0.0,1.3629969872967551e-18,7.930164505921508e-19,9.516196993515503e-19,1.9825412040285595e-18,1.1102229998097382e-18,3.2381505022763835e-18,0.0035714285913854837,-0.0035714285913854837,-0.0014285714132711291,6.285525108705394e-20,-3.3881317890172014e-20,-0.0,0.0014285714132711291,-5.023750587782968e-21,-0.0,-0.0,-0.0,1.3552527156068805e-20,-1.3294597054555713e-20,-8.425943506694157e-35,-1.925929944387236e-34,0.004166666883975267,-0.004166666883975267,-2.5530590979385935e-19,-0.0020833334419876337,5.421010862427522e-20,1.954194155039781e-34,-5.023750587782968e-21,0.0020833334419876337,-0.0,-7.849610394385084e-21,1.5146343930214808e-19,-7.222237291452134e-35,-1.0842021724855044e-19,-2.710505431213761e-20,-0.0,0.004999999888241291,-0.004999999888241291,-0.0,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014880952658131719,-2.7102949137478663e-18,-0.0022321429569274187,-6.342582709040201e-18,-8.45402160676652e-18,1.3629969872967551e-18,-0.0,-7.849610394385084e-21,-0.0,0.00044642857392318547,3.7947076036992655e-19,7.047314121155779e-19,1.1059193858777779e-18,6.34413150133963e-19,1.850371804212999e-18,0.0023809524718672037,-1.8889597797885978e-18,-0.0009523809421807528,-0.0011904762359336019,2.961280743545697e-19,7.930164505921508e-19,-0.0,1.5146343930214808e-19,-0.0,3.7947076036992655e-19,0.0004761904710903764,-1.2929324112692526e-19,3.7581172693029823e-19,1.3552527156068805e-20,1.7199761709544708e-33,0.0028571428265422583,-1.9371207165932727e-18,-0.0011428571306169033,1.8391270075683766e-19,-0.0019047618843615055,9.516196993515503e-19,1.3552527156068805e-20,-7.222237291452134e-35,-0.0,7.047314121155779e-19,-1.2929324112692526e-19,0.0007619047537446022,1.781485198558193e-33,9.288027881089788e-20,-8.952563491199201e-20,0.0019841270986944437,-3.715005442957331e-18,-6.256422335665759e-18,-0.003968254197388887,1.0842021724855044e-19,1.9825412040285595e-18,-1.3294597054555713e-20,-1.0842021724855044e-19,-0.0,1.1059193858777779e-18,3.7581172693029823e-19,1.781485198558193e-33,0.0009920635493472219,-5.576787066347157e-20,5.2091819098338584e-33,0.0033333334140479565,-2.166235890995201e-18,-3.3384912328918222e-18,-0.0016666667070239782,-0.002222222276031971,1.1102229998097382e-18,-8.425943506694157e-35,-2.710505431213761e-20,-0.0,6.34413150133963e-19,1.3552527156068805e-20,9.288027881089788e-20,-5.576787066347157e-20,0.0011111111380159855,2.8420659767089786e-33,0.0027777778450399637,-6.476301004552767e-18,-9.11757017772492e-18,-2.9399766113430117e-32,-0.008333333767950535,3.2381505022763835e-18,-1.925929944387236e-34,-0.0,-0.0,1.850371804212999e-18,1.7199761709544708e-33,-8.952563491199201e-20,5.2091819098338584e-33,2.8420659767089786e-33,0.0027777778450399637,3.0,6.0,5.0,5.0,0.07904762029647827,-0.030476190149784088,-0.018333332613110542,-0.021111110225319862,-0.021111110225319862,0.0033333334140479565,0.0028571428265422583,0.0033333334140479565,0.0033333334140479565,0.0011904762359336019,0.0019047618843615055,0.0019047618843615055,0.0015873016091063619,0.002222222276031971,0.0015873016091063619,-0.030476190149784088,0.06380952149629593,0.0028571428265422583,0.0033333334140479565,0.0033333334140479565,-0.019999999552965164,-0.0028571428265422583,-0.0033333334140479565,-0.0033333334140479565,-2.176557864268944e-18,-1.1413195107701738e-18,-1.091982219736872e-18,-3.0488777228489905e-18,-1.5138617029317797e-18,-2.9089009788218483e-18,-0.018333332613110542,0.0028571428265422583,0.013880952261388302,0.0019047618843615055,0.0019047618843615055,-7.989640756518026e-18,-0.0011428571306169033,7.325875334992166e-20,1.0842021724855044e-19,-0.0017857142956927419,-0.0007619047537446022,-0.0007619047537446022,2.7973482285935595e-18,1.4124157556203935e-18,2.880921594602242e-18,-0.021111110225319862,0.0033333334140479565,0.0019047618843615055,0.020079365000128746,0.002222222276031971,-9.410461597740147e-18,4.658046284155032e-20,-0.0016666667070239782,6.463513050776639e-20,2.9815559743351372e-18,-0.0009523809421807528,1.6263032587282567e-19,-0.0031746032182127237,-0.0011111111380159855,1.085160797267271e-19,-0.021111110225319862,0.0033333334140479565,0.0019047618843615055,0.002222222276031971,0.020079365000128746,-9.410461597740147e-18,3.091314505191313e-20,2.095753524134874e-20,-0.0016666667070239782,2.964772272911283e-18,2.6968285167730796e-19,-0.0009523809421807528,1.0842021724855044e-19,-0.0011111111380159855,-0.0031746032182127237,0.0033333334140479565,-0.019999999552965164,-7.989640756518026e-18,-9.410461597740147e-18,-9.410461597740147e-18,0.009999999776482582,-0.0,-9.547740494969165e-35,-3.157809453140607e-34,1.09039765187595e-18,6.34413150133963e-19,6.34413150133963e-19,1.5860329011843016e-18,7.401487010056843e-19,1.5860329011843016e-18,0.0028571428265422583,-0.0028571428265422583,-0.0011428571306169033,4.658046284155032e-20,3.091314505191313e-20,-0.0,0.0011428571306169033,-1.455868372300481e-21,9.990910742849631e-23,-0.0,-2.710505431213761e-20,-2.710505431213761e-20,5.204147451050203e-21,2.407412430484045e-35,8.448179772937335e-21,0.0033333334140479565,-0.0033333334140479565,7.325875334992166e-20,-0.0016666667070239782,2.095753524134874e-20,-9.547740494969165e-35,-1.455868372300481e-21,0.0016666667070239782,-7.29176350512973e-21,-2.274794344341276e-21,-2.851801127652316e-20,-1.211155288155568e-21,-5.421010862427522e-20,1.3552527156068805e-20,-8.67653735975809e-21,0.0033333334140479565,-0.0033333334140479565,1.0842021724855044e-19,6.463513050776639e-20,-0.0016666667070239782,-3.157809453140607e-34,9.990910742849631e-23,-7.29176350512973e-21,0.0016666667070239782,1.5610798745677363e-22,-1.3540735591423698e-21,-5.332956193751545e-20,-1.3889073343104247e-20,3.229642085337159e-21,-1.334660441998285e-19,0.0011904762359336019,-2.176557864268944e-18,-0.0017857142956927419,2.9815559743351372e-18,2.964772272911283e-18,1.09039765187595e-18,-0.0,-2.274794344341276e-21,1.5610798745677363e-22,0.0003571428533177823,-2.710505431213761e-19,-2.710505431213761e-19,-4.579874161977076e-19,-2.1147105004465433e-19,-4.564676269185063e-19,0.0019047618843615055,-1.1413195107701738e-18,-0.0007619047537446022,-0.0009523809421807528,2.6968285167730796e-19,6.34413150133963e-19,-2.710505431213761e-20,-2.851801127652316e-20,-1.3540735591423698e-21,-2.710505431213761e-19,0.0003809523768723011,-1.0686536165060797e-20,-2.529692021115795e-19,-1.1519648082658485e-19,-2.579187722083162e-21,0.0019047618843615055,-1.091982219736872e-18,-0.0007619047537446022,1.6263032587282567e-19,-0.0009523809421807528,6.34413150133963e-19,-2.710505431213761e-20,-1.211155288155568e-21,-5.332956193751545e-20,-2.710505431213761e-19,-1.0686536165060797e-20,0.0003809523768723011,-2.306962501712604e-21,-6.233377187197608e-20,-3.0022931337979e-19,0.0015873016091063619,-3.0488777228489905e-18,2.7973482285935595e-18,-0.0031746032182127237,1.0842021724855044e-19,1.5860329011843016e-18,5.204147451050203e-21,-5.421010862427522e-20,-1.3889073343104247e-20,-4.579874161977076e-19,-2.529692021115795e-19,-2.306962501712604e-21,0.0007936508045531809,8.879241846273331e-21,-1.2674592065910974e-20,0.002222222276031971,-1.5138617029317797e-18,1.4124157556203935e-18,-0.0011111111380159855,-0.0011111111380159855,7.401487010056843e-19,2.407412430484045e-35,1.3552527156068805e-20,3.229642085337159e-21,-2.1147105004465433e-19,-1.1519648082658485e-19,-6.233377187197608e-20,8.879241846273331e-21,0.0005555555690079927,-1.9128548434114497e-20,0.0015873016091063619,-2.9089009788218483e-18,2.880921594602242e-18,1.085160797267271e-19,-0.0031746032182127237,1.5860329011843016e-18,8.448179772937335e-21,-8.67653735975809e-21,-1.334660441998285e-19,-4.564676269185063e-19,-2.579187722083162e-21,-3.0022931337979e-19,-1.2674592065910974e-20,-1.9128548434114497e-20,0.0007936508045531809,3.0,6.0,5.0,6.0,0.06829176098108292,-0.02579365111887455,-0.015504535287618637,-0.01785714365541935,-0.015504535287618637,0.0027777778450399637,0.0023809524718672037,0.0027777778450399637,0.0023809524718672037,0.0009920635493472219,0.0015873016091063619,0.0013605442363768816,0.0013227512827143073,0.0015873016091063619,0.0009920635493472219,-0.02579365111887455,0.0535714291036129,0.0023809524718672037,0.0027777778450399637,0.0023809524718672037,-0.01666666753590107,-0.0023809524718672037,-0.0027777778450399637,-0.0023809524718672037,-1.813068440128695e-18,-1.1505655288621384e-18,-8.0217101352764e-19,-2.6588738513539668e-18,-1.0475858852975024e-18,-1.8892341969568122e-18,-0.015504535287618637,0.0023809524718672037,0.01165816280990839,0.0015873016091063619,0.0013605442363768816,-6.733559138140434e-18,-0.0009523809421807528,-5.1762752610369307e-20,1.0842021724855044e-19,-0.0014880952658131719,-0.0006349206087179482,-0.0005442177061922848,-3.721384246251034e-18,-1.4732931467769993e-18,-2.2185201163582997e-18,-0.01785714365541935,0.0027777778450399637,0.0015873016091063619,0.01686508022248745,0.0015873016091063619,-7.930164816114238e-18,-3.161455866844115e-20,-0.0013888889225199819,-2.710505431213761e-20,-4.607859233063394e-18,-0.0007936508045531809,-0.0,-0.0026455025654286146,-0.0007936508045531809,-4.9215320667041547e-20,-0.015504535287618637,0.0023809524718672037,0.0013605442363768816,0.0015873016091063619,0.01165816280990839,-6.733559138140434e-18,-2.279316211170328e-20,-2.918343930523086e-20,-0.0009523809421807528,-3.718748021638827e-18,-1.6019975904041516e-19,-0.0005442177061922848,-0.0,-0.0006349206087179482,-0.0014880952658131719,0.0027777778450399637,-0.01666666753590107,-6.733559138140434e-18,-7.930164816114238e-18,-6.733559138140434e-18,0.008333333767950535,-0.0,2.2198966697876026e-37,-2.914145488029789e-35,9.086647271295545e-19,5.2867765096103e-19,4.531522353246055e-19,1.3216941015531808e-18,5.2867765096103e-19,9.086647271295545e-19,0.0023809524718672037,-0.0023809524718672037,-0.0009523809421807528,-3.161455866844115e-20,-2.279316211170328e-20,-0.0,0.0009523809421807528,-3.9456901445078616e-22,-7.751238202570124e-22,-0.0,1.3552527156068805e-20,-0.0,-4.30388777397946e-22,1.8055593228630336e-35,4.343050413898584e-21,0.0027777778450399637,-0.0027777778450399637,-5.1762752610369307e-20,-0.0013888889225199819,-2.918343930523086e-20,2.2198966697876026e-37,-3.9456901445078616e-22,0.0013888889225199819,3.477971358358703e-21,-6.165140582580826e-22,2.7374980148119856e-20,3.011900218650625e-22,1.4845703453076265e-38,-0.0,4.598125369049305e-21,0.0023809524718672037,-0.0023809524718672037,1.0842021724855044e-19,-2.710505431213761e-20,-0.0009523809421807528,-2.914145488029789e-35,-7.751238202570124e-22,3.477971358358703e-21,0.0009523809421807528,-1.2111309533743638e-21,1.831592749281211e-21,-4.189434896211817e-20,6.624707368487852e-21,-3.907750655510388e-21,2.0740426179947712e-20,0.0009920635493472219,-1.813068440128695e-18,-0.0014880952658131719,-4.607859233063394e-18,-3.718748021638827e-18,9.086647271295545e-19,-0.0,-6.165140582580826e-22,-1.2111309533743638e-21,0.00029761905898340046,3.6591823321385775e-19,2.168404344971009e-19,7.542006901553703e-19,3.021015074493331e-19,5.065721279699511e-19,0.0015873016091063619,-1.1505655288621384e-18,-0.0006349206087179482,-0.0007936508045531809,-1.6019975904041516e-19,5.2867765096103e-19,1.3552527156068805e-20,2.7374980148119856e-20,1.831592749281211e-21,3.6591823321385775e-19,0.0003174603043589741,3.545107081707611e-20,-2.5086809550103516e-20,2.710505431213761e-20,2.861863771726088e-21,0.0013605442363768816,-8.0217101352764e-19,-0.0005442177061922848,-0.0,-0.0005442177061922848,4.531522353246055e-19,-0.0,3.011900218650625e-22,-4.189434896211817e-20,2.168404344971009e-19,3.545107081707611e-20,0.00021768707665614784,5.736952941678613e-22,-3.656977766559153e-20,-1.2760146290379825e-19,0.0013227512827143073,-2.6588738513539668e-18,-3.721384246251034e-18,-0.0026455025654286146,-0.0,1.3216941015531808e-18,-4.30388777397946e-22,1.4845703453076265e-38,6.624707368487852e-21,7.542006901553703e-19,-2.5086809550103516e-20,5.736952941678613e-22,0.0006613756413571537,-1.5577617160789203e-20,1.4093511354614155e-20,0.0015873016091063619,-1.0475858852975024e-18,-1.4732931467769993e-18,-0.0007936508045531809,-0.0006349206087179482,5.2867765096103e-19,1.8055593228630336e-35,-0.0,-3.907750655510388e-21,3.021015074493331e-19,2.710505431213761e-20,-3.656977766559153e-20,-1.5577617160789203e-20,0.0003174603043589741,-9.537696193117581e-21,0.0009920635493472219,-1.8892341969568122e-18,-2.2185201163582997e-18,-4.9215320667041547e-20,-0.0014880952658131719,9.086647271295545e-19,4.343050413898584e-21,4.598125369049305e-21,2.0740426179947712e-20,5.065721279699511e-19,2.861863771726088e-21,-1.2760146290379825e-19,1.4093511354614155e-20,-9.537696193117581e-21,0.00029761905898340046,3.0,6.0,5.0,7.0,0.06013794243335724,-0.022363945841789246,-0.01343537401407957,-0.015476190485060215,-0.011876417323946953,0.0023809524718672037,0.0020408162381500006,0.0023809524718672037,0.0017857142956927419,0.0008503401186317205,0.0013605442363768816,0.0010204081190750003,0.0011337868636474013,0.0011904762359336019,0.0006613756413571537,-0.022363945841789246,0.046173468232154846,0.0020408162381500006,0.0023809524718672037,0.0017857142956927419,-0.014285714365541935,-0.0020408162381500006,-0.0023809524718672037,-0.0017857142956927419,-1.4843324924369788e-18,-9.06304470649211e-19,-7.173489666855203e-19,-2.2657612283218157e-18,-7.621727467064267e-19,-1.1451657972209689e-18,-0.01343537401407957,0.0020408162381500006,0.010051020421087742,0.0013605442363768816,0.0010204081190750003,-5.820174311640499e-18,-0.0008163265301845968,-3.6252180376932087e-19,-2.981555974335137e-19,-0.0012755101779475808,-0.0005442177061922848,-0.0004081632650922984,1.872891382799449e-18,6.148544128513584e-19,9.6001930488172e-19,-0.015476190485060215,0.0023809524718672037,0.0013605442363768816,0.01454081665724516,0.0011904762359336019,-6.853927979337313e-18,-3.6252180376932087e-19,-0.0011904762359336019,3.0843681267504283e-20,2.2768245622195593e-18,-0.0006802721181884408,-1.2842667896239646e-19,-0.0022675737272948027,-0.0005952381179668009,5.154993131722163e-20,-0.011876417323946953,0.0017857142956927419,0.0010204081190750003,0.0011904762359336019,0.007397959008812904,-5.079081694158315e-18,-2.8285273025188857e-19,-1.256118454814941e-34,-0.0005952381179668009,1.5111959066126744e-18,1.3025938848628398e-21,-0.0003401360590942204,-2.743348695810892e-33,-0.00039682540227659047,-0.0007936508045531809,0.0023809524718672037,-0.014285714365541935,-5.820174311640499e-18,-6.853927979337313e-18,-5.079081694158315e-18,0.0071428571827709675,-0.0,-0.0,-2.1220550066245364e-36,7.788554286979727e-19,4.531522353246055e-19,3.398641894181512e-19,1.1328806141609079e-18,3.965082252960754e-19,5.727341175662168e-19,0.0020408162381500006,-0.0020408162381500006,-0.0008163265301845968,-3.6252180376932087e-19,-2.8285273025188857e-19,-0.0,0.0008163265301845968,3.6252180376932087e-19,2.706933303437239e-19,-2.710505431213761e-20,-0.0,-0.0,-0.0,1.2037062152420224e-35,1.870678244914692e-21,0.0023809524718672037,-0.0023809524718672037,-3.6252180376932087e-19,-0.0011904762359336019,-1.256118454814941e-34,-0.0,3.6252180376932087e-19,0.0011904762359336019,1.2021198718402633e-34,-1.2037062152420224e-35,-3.009265538105056e-36,-0.0,-0.0,0.0,8.307480236678675e-37,0.0017857142956927419,-0.0017857142956927419,-2.981555974335137e-19,3.0843681267504283e-20,-0.0005952381179668009,-2.1220550066245364e-36,2.706933303437239e-19,1.2021198718402633e-34,0.0005952381179668009,-1.8719204294722637e-21,6.018531076210112e-36,1.2540187333274611e-20,-0.0,-1.0281227358432617e-20,-1.6596943792092308e-21,0.0008503401186317205,-1.4843324924369788e-18,-0.0012755101779475808,2.2768245622195593e-18,1.5111959066126744e-18,7.788554286979727e-19,-2.710505431213761e-20,-1.2037062152420224e-35,-1.8719204294722637e-21,0.00025510202976875007,-2.574980159653073e-19,-1.2197274440461925e-19,-3.2368019393839806e-19,-1.1328805883115137e-19,-1.6077746715010103e-19,0.0013605442363768816,-9.06304470649211e-19,-0.0005442177061922848,-0.0006802721181884408,1.3025938848628398e-21,4.531522353246055e-19,-0.0,-3.009265538105056e-36,6.018531076210112e-36,-2.574980159653073e-19,0.0002721088530961424,3.510764222885029e-20,-1.2724528410191175e-19,-4.4535846850729697e-20,2.0162079105303875e-34,0.0010204081190750003,-7.173489666855203e-19,-0.0004081632650922984,-1.2842667896239646e-19,-0.0003401360590942204,3.398641894181512e-19,-0.0,-0.0,1.2540187333274611e-20,-1.2197274440461925e-19,3.510764222885029e-20,0.0001360544265480712,2.080969154477301e-34,1.3552527156068805e-20,-5.307442518615686e-20,0.0011337868636474013,-2.2657612283218157e-18,1.872891382799449e-18,-0.0022675737272948027,-2.743348695810892e-33,1.1328806141609079e-18,-0.0,-0.0,-0.0,-3.2368019393839806e-19,-1.2724528410191175e-19,2.080969154477301e-34,0.0005668934318237007,2.161548833048688e-34,2.9846612015631474e-34,0.0011904762359336019,-7.621727467064267e-19,6.148544128513584e-19,-0.0005952381179668009,-0.00039682540227659047,3.965082252960754e-19,1.2037062152420224e-35,0.0,-1.0281227358432617e-20,-1.1328805883115137e-19,-4.4535846850729697e-20,1.3552527156068805e-20,2.161548833048688e-34,0.00019841270113829523,-1.7183310439073877e-20,0.0006613756413571537,-1.1451657972209689e-18,9.6001930488172e-19,5.154993131722163e-20,-0.0007936508045531809,5.727341175662168e-19,1.870678244914692e-21,8.307480236678675e-37,-1.6596943792092308e-21,-1.6077746715010103e-19,2.0162079105303875e-34,-5.307442518615686e-20,2.9846612015631474e-34,-1.7183310439073877e-20,0.00013227513409219682,3.0,6.0,5.0,8.0,0.05373677238821983,-0.01974206417798996,-0.01185515895485878,-0.013657407835125923,-0.009391534142196178,0.0020833334419876337,0.0017857142956927419,0.0020833334419876337,0.0013888889225199819,0.0007440476329065859,0.0011904762359336019,0.0007936508045531809,0.0009920635493472219,0.0009259259095415473,0.00046296295477077365,-0.01974206417798996,0.04057539626955986,0.0017857142956927419,0.0020833334419876337,0.0013888889225199819,-0.012500000186264515,-0.0017857142956927419,-0.0020833334419876337,-0.0013888889225199819,-1.3629969872967551e-18,-7.930164505921508e-19,-5.87969957268831e-19,-1.9825412040285595e-18,-6.167905841714036e-19,-7.9884440329668145e-19,-0.01185515895485878,0.0017857142956927419,0.008834325708448887,0.0011904762359336019,0.0007936508045531809,-5.125694976036903e-18,-0.0007142857066355646,-0.0,-5.929230630780102e-20,-0.0011160714784637094,-0.0004761904710903764,-0.0003174603043589741,-2.8322016904986345e-18,-8.811294355013127e-19,-1.1884483329655357e-18,-0.013657407835125923,0.0020833334419876337,0.0011904762359336019,0.012781084515154362,0.0009259259095415473,-6.035736338500899e-18,-0.0,-0.0010416667209938169,4.333040236088921e-34,-3.3659143381494864e-18,-0.0005952381179668009,-2.0239114392901045e-33,-0.0019841270986944437,-0.00046296295477077365,-3.1269090127353506e-33,-0.009391534142196178,0.0013888889225199819,0.0007936508045531809,0.0009259259095415473,0.004998110234737396,-3.9760963179132625e-18,-0.0,-0.0,-0.00039682540227659047,-2.262704382368126e-18,-2.2121703493231478e-33,-0.00022675737272948027,-6.372579689102215e-33,-0.00026455026818439364,-0.00046296295477077365,0.0020833334419876337,-0.012500000186264515,-5.125694976036903e-18,-6.035736338500899e-18,-3.9760963179132625e-18,0.0062500000931322575,-0.0,-0.0,1.13063925422821e-34,6.814984936483776e-19,3.965082252960754e-19,2.64338825480515e-19,9.912706020142797e-19,3.083952920857018e-19,3.854941086447787e-19,0.0017857142956927419,-0.0017857142956927419,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0020833334419876337,-0.0,-0.0010416667209938169,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0013888889225199819,-5.929230630780102e-20,4.333040236088921e-34,-0.00039682540227659047,1.13063925422821e-34,-0.0,-0.0,0.00039682540227659047,4.81482486096809e-35,0.0,1.6940658945086007e-20,0.0,-1.2380114796262102e-34,7.958913749722157e-21,0.0007440476329065859,-1.3629969872967551e-18,-0.0011160714784637094,-3.3659143381494864e-18,-2.262704382368126e-18,6.814984936483776e-19,-0.0,-0.0,4.81482486096809e-35,0.00022321428696159273,1.933449637335974e-19,1.473104497898549e-19,5.664403070804539e-19,1.762258793454443e-19,2.202823588753282e-19,0.0011904762359336019,-7.930164505921508e-19,-0.0004761904710903764,-0.0005952381179668009,-2.2121703493231478e-33,3.965082252960754e-19,-0.0,-0.0,0.0,1.933449637335974e-19,0.0002380952355451882,1.4436816650468394e-34,5.5352986647340126e-34,1.7220929102642903e-34,2.1526162239261406e-34,0.0007936508045531809,-5.87969957268831e-19,-0.0003174603043589741,-2.0239114392901045e-33,-0.00022675737272948027,2.64338825480515e-19,-0.0,-0.0,1.6940658945086007e-20,1.473104497898549e-19,1.4436816650468394e-34,9.070294618140906e-05,4.1574773997287275e-34,0.0,2.4867608303364098e-20,0.0009920635493472219,-1.9825412040285595e-18,-2.8322016904986345e-18,-0.0019841270986944437,-6.372579689102215e-33,9.912706020142797e-19,-0.0,-0.0,0.0,5.664403070804539e-19,5.5352986647340126e-34,4.1574773997287275e-34,0.0004960317746736109,4.9611256940099815e-34,6.201407232306847e-34,0.0009259259095415473,-6.167905841714036e-19,-8.811294355013127e-19,-0.00046296295477077365,-0.00026455026818439364,3.083952920857018e-19,-0.0,-0.0,-1.2380114796262102e-34,1.762258793454443e-19,1.7220929102642903e-34,0.0,4.9611256940099815e-34,0.00013227513409219682,3.0912051855801727e-35,0.00046296295477077365,-7.9884440329668145e-19,-1.1884483329655357e-18,-3.1269090127353506e-33,-0.00046296295477077365,3.854941086447787e-19,-0.0,-0.0,7.958913749722157e-21,2.202823588753282e-19,2.1526162239261406e-34,2.4867608303364098e-20,6.201407232306847e-34,3.0912051855801727e-35,6.613756704609841e-05,3.0,6.0,6.0,3.0,0.10048186033964157,-0.0406746044754982,-0.02451813966035843,-0.02451813966035843,-0.0406746044754982,0.004629629664123058,0.003968254197388887,0.003968254197388887,0.0069444444961845875,0.0016534391324967146,0.0022675737272948027,0.003968254197388887,0.0016534391324967146,0.003968254197388887,0.004629629664123058,-0.0406746044754982,0.08697090297937393,0.003968254197388887,0.003968254197388887,0.0069444444961845875,-0.02777777798473835,-0.003968254197388887,-0.003968254197388887,-0.0069444444961845875,5.9315074454161546e-18,2.7044963776538696e-18,5.217150132512297e-18,6.07282008613257e-18,5.216856483394841e-18,3.0839529932353215e-17,-0.02451813966035843,0.003968254197388887,0.018901171162724495,0.0022675737272948027,0.003968254197388887,2.6576715856926516e-17,-0.0015873016091063619,-2.6089149857891196e-19,-1.0491051247534782e-32,-0.0024801588151603937,-0.0009070294909179211,-0.0015873016091063619,2.1433248491838605e-18,2.358139725155972e-18,1.2313079726219349e-17,-0.02451813966035843,0.003968254197388887,0.0022675737272948027,0.018901171162724495,0.003968254197388887,2.6576715856926516e-17,3.0881523972735017e-22,-0.0015873016091063619,-1.0491051247534782e-32,3.3068166260807885e-18,-0.0009070294909179211,3.694754975887479e-19,-0.0024801588151603937,-0.0015873016091063619,1.2313079726219349e-17,-0.0406746044754982,0.0069444444961845875,0.003968254197388887,0.003968254197388887,0.08697090297937393,4.9539052792412777e-17,-6.991992928023086e-20,-6.9626092754667e-20,-0.0069444444961845875,7.078805714256285e-18,7.115076756936123e-19,-0.003968254197388887,6.179952383167375e-18,-0.003968254197388887,-0.02777777798473835,0.004629629664123058,-0.02777777798473835,2.6576715856926516e-17,2.6576715856926516e-17,4.9539052792412777e-17,0.013888888992369175,-5.012647096851425e-18,-5.012647096851425e-18,-5.482582878503519e-18,-3.028882285901746e-18,-1.5105074855478771e-18,-2.6433882031063616e-18,-3.028882285901746e-18,-2.6433882031063616e-18,-1.5419764966176608e-17,0.003968254197388887,-0.003968254197388887,-0.0015873016091063619,3.0881523972735017e-22,-6.991992928023086e-20,-5.012647096851425e-18,0.0015873016091063619,-2.372700742190695e-21,1.9787223140376264e-33,5.421010862427522e-20,1.3552527156068805e-20,2.710505431213761e-20,-6.022177378076863e-21,8.629165921611658e-22,5.585196838722984e-33,0.003968254197388887,-0.003968254197388887,-2.6089149857891196e-19,-0.0015873016091063619,-6.9626092754667e-20,-5.012647096851425e-18,-2.372700742190695e-21,0.0015873016091063619,1.9787223140376264e-33,-3.707344745589893e-21,1.130549360700792e-19,7.453816184285181e-22,8.591837442841356e-35,2.710505431213761e-20,5.3926038442842604e-33,0.0069444444961845875,-0.0069444444961845875,-1.0491051247534782e-32,-1.0491051247534782e-32,-0.0069444444961845875,-5.482582878503519e-18,1.9787223140376264e-33,1.9787223140376264e-33,0.0069444444961845875,1.1956390179175198e-33,5.962667543897206e-34,1.043466774264263e-33,1.1956390179175198e-33,1.043466774264263e-33,6.0868897461302744e-33,0.0016534391324967146,5.9315074454161546e-18,-0.0024801588151603937,3.3068166260807885e-18,7.078805714256285e-18,-3.028882285901746e-18,5.421010862427522e-20,-3.707344745589893e-21,1.1956390179175198e-33,0.0004960317746736109,-2.710505431213761e-19,-6.505213034913027e-19,-4.395013770732194e-19,-3.7627856698850785e-19,-2.2028235370544935e-18,0.0022675737272948027,2.7044963776538696e-18,-0.0009070294909179211,-0.0009070294909179211,7.115076756936123e-19,-1.5105074855478771e-18,1.3552527156068805e-20,1.130549360700792e-19,5.962667543897206e-34,-2.710505431213761e-19,0.00036281178472563624,-1.2197274440461925e-19,2.4777028795115274e-20,-1.6263032587282567e-19,2.8888949165808538e-33,0.003968254197388887,5.217150132512297e-18,-0.0015873016091063619,3.694754975887479e-19,-0.003968254197388887,-2.6433882031063616e-18,2.710505431213761e-20,7.453816184285181e-22,1.043466774264263e-33,-6.505213034913027e-19,-1.2197274440461925e-19,0.0015873016091063619,1.164658791416334e-21,-7.160924534856582e-20,-1.2989622477420345e-18,0.0016534391324967146,6.07282008613257e-18,2.1433248491838605e-18,-0.0024801588151603937,6.179952383167375e-18,-3.028882285901746e-18,-6.022177378076863e-21,8.591837442841356e-35,1.1956390179175198e-33,-4.395013770732194e-19,2.4777028795115274e-20,1.164658791416334e-21,0.0004960317746736109,-6.890144634891875e-19,-2.2028235370544935e-18,0.003968254197388887,5.216856483394841e-18,2.358139725155972e-18,-0.0015873016091063619,-0.003968254197388887,-2.6433882031063616e-18,8.629165921611658e-22,2.710505431213761e-20,1.043466774264263e-33,-3.7627856698850785e-19,-1.6263032587282567e-19,-7.160924534856582e-20,-6.890144634891875e-19,0.0015873016091063619,-1.2989622477420345e-18,0.004629629664123058,3.0839529932353215e-17,1.2313079726219349e-17,1.2313079726219349e-17,-0.02777777798473835,-1.5419764966176608e-17,5.585196838722984e-33,5.3926038442842604e-33,6.0868897461302744e-33,-2.2028235370544935e-18,2.8888949165808538e-33,-1.2989622477420345e-18,-2.2028235370544935e-18,-1.2989622477420345e-18,0.013888888992369175,3.0,6.0,6.0,4.0,0.08123110234737396,-0.03154762089252472,-0.01898384280502796,-0.01898384280502796,-0.02579365111887455,0.0034722222480922937,0.0029761905316263437,0.0029761905316263437,0.004166666883975267,0.0012400794075801969,0.001700680237263441,0.0023809524718672037,0.0012400794075801969,0.0023809524718672037,0.002314814832061529,-0.03154762089252472,0.06626984477043152,0.0029761905316263437,0.0029761905316263437,0.004166666883975267,-0.02083333395421505,-0.0029761905316263437,-0.0029761905316263437,-0.004166666883975267,4.4869903611862266e-18,2.310573944802029e-18,3.134045272693216e-18,4.549642261551912e-18,3.1695009220842294e-18,1.079383514545138e-17,-0.01898384280502796,0.0029761905316263437,0.01441397424787283,0.001700680237263441,0.0023809524718672037,1.9389173115247073e-17,-0.0011904762359336019,3.618384297987299e-20,-6.1230384014699675e-33,-0.0018601190531626344,-0.0006802721181884408,-0.0009523809421807528,1.5232290063810599e-18,1.0842021724855044e-18,3.3979758586920418e-18,-0.01898384280502796,0.0029761905316263437,0.001700680237263441,0.01441397424787283,0.0023809524718672037,1.9389173115247073e-17,4.898471175954971e-20,-0.0011904762359336019,-6.1230384014699675e-33,2.439454888092385e-18,-0.0006802721181884408,-2.918169899477023e-19,-0.0018601190531626344,-0.0009523809421807528,3.3979758586920418e-18,-0.02579365111887455,0.004166666883975267,0.0023809524718672037,0.0023809524718672037,0.033399470150470734,2.741046593790444e-17,-3.644618524984874e-20,-4.139192398169744e-21,-0.0027777778450399637,3.920843548126864e-18,1.3552527156068805e-19,-0.0015873016091063619,3.3610267347050637e-18,-0.0015873016091063619,-0.0069444444961845875,0.0034722222480922937,-0.02083333395421505,1.9389173115247073e-17,1.9389173115247073e-17,2.741046593790444e-17,0.010416666977107525,-2.8196140695271088e-18,-2.8196140695271088e-18,-3.2895496443840503e-18,-2.2716617144263096e-18,-1.1328806141609079e-18,-1.5860329011843016e-18,-2.2716617144263096e-18,-1.5860329011843016e-18,-5.39691757272569e-18,0.0029761905316263437,-0.0029761905316263437,-0.0011904762359336019,4.898471175954971e-20,-3.644618524984874e-20,-2.8196140695271088e-18,0.0011904762359336019,-2.926003792631976e-21,8.904250321333822e-34,2.710505431213761e-20,-1.3552527156068805e-20,1.3552527156068805e-20,-2.5275759735554362e-21,1.0259473073777969e-21,1.4444474582904269e-33,0.0029761905316263437,-0.0029761905316263437,3.618384297987299e-20,-0.0011904762359336019,-4.139192398169744e-21,-2.8196140695271088e-18,-2.926003792631976e-21,0.0011904762359336019,8.904250321333822e-34,-4.571880963852786e-21,-4.37251226087225e-21,1.6556769188782192e-21,4.83089722073944e-35,-0.0,1.396299209680746e-33,0.004166666883975267,-0.004166666883975267,-6.1230384014699675e-33,-6.1230384014699675e-33,-0.0027777778450399637,-3.2895496443840503e-18,8.904250321333822e-34,8.904250321333822e-34,0.0027777778450399637,7.173834474847104e-34,3.5776005263383236e-34,5.0086404613671646e-34,7.173834474847104e-34,5.0086404613671646e-34,1.70432905544808e-33,0.0012400794075801969,4.4869903611862266e-18,-0.0018601190531626344,2.439454888092385e-18,3.920843548126864e-18,-2.2716617144263096e-18,2.710505431213761e-20,-4.571880963852786e-21,7.173834474847104e-34,0.00037202381645329297,-1.8973538018496328e-19,-3.7947076036992655e-19,-3.248470614393748e-19,-2.2497309333396326e-19,-7.709882172895574e-19,0.001700680237263441,2.310573944802029e-18,-0.0006802721181884408,-0.0006802721181884408,1.3552527156068805e-19,-1.1328806141609079e-18,-1.3552527156068805e-20,-4.37251226087225e-21,3.5776005263383236e-34,-1.8973538018496328e-19,0.0002721088530961424,2.0328790734103208e-20,3.991665059038338e-20,-7.453889935837843e-20,9.62964972193618e-34,0.0023809524718672037,3.134045272693216e-18,-0.0009523809421807528,-2.918169899477023e-19,-0.0015873016091063619,-1.5860329011843016e-18,1.3552527156068805e-20,1.6556769188782192e-21,5.0086404613671646e-34,-3.7947076036992655e-19,2.0328790734103208e-20,0.0006349206087179482,2.58699524885609e-21,1.5020038620556789e-19,3.046435368692851e-19,0.0012400794075801969,4.549642261551912e-18,1.5232290063810599e-18,-0.0018601190531626344,3.3610267347050637e-18,-2.2716617144263096e-18,-2.5275759735554362e-21,4.83089722073944e-35,7.173834474847104e-34,-3.248470614393748e-19,3.991665059038338e-20,2.58699524885609e-21,0.00037202381645329297,-4.2644676094711927e-19,-7.709882172895574e-19,0.0023809524718672037,3.1695009220842294e-18,1.0842021724855044e-18,-0.0009523809421807528,-0.0015873016091063619,-1.5860329011843016e-18,1.0259473073777969e-21,-0.0,5.0086404613671646e-34,-2.2497309333396326e-19,-7.453889935837843e-20,1.5020038620556789e-19,-4.2644676094711927e-19,0.0006349206087179482,3.046435368692851e-19,0.002314814832061529,1.079383514545138e-17,3.3979758586920418e-18,3.3979758586920418e-18,-0.0069444444961845875,-5.39691757272569e-18,1.4444474582904269e-33,1.396299209680746e-33,1.70432905544808e-33,-7.709882172895574e-19,9.62964972193618e-34,3.046435368692851e-19,-7.709882172895574e-19,3.046435368692851e-19,0.002314814832061529,3.0,6.0,6.0,5.0,0.06829176098108292,-0.02579365111887455,-0.015504535287618637,-0.015504535287618637,-0.01785714365541935,0.0027777778450399637,0.0023809524718672037,0.0023809524718672037,0.0027777778450399637,0.0009920635493472219,0.0013605442363768816,0.0015873016091063619,0.0009920635493472219,0.0015873016091063619,0.0013227512827143073,-0.02579365111887455,0.0535714291036129,0.0023809524718672037,0.0023809524718672037,0.0027777778450399637,-0.01666666753590107,-0.0023809524718672037,-0.0023809524718672037,-0.0027777778450399637,-1.7537095457815836e-18,-7.562889593105487e-19,-1.1301104896870443e-18,-1.8985368769207367e-18,-1.1131197863148989e-18,-2.6647559326898314e-18,-0.015504535287618637,0.0023809524718672037,0.01165816280990839,0.0013605442363768816,0.0015873016091063619,-6.733559138140434e-18,-0.0009523809421807528,9.666609060409702e-20,-2.710505431213761e-20,-0.0014880952658131719,-0.0005442177061922848,-0.0006349206087179482,-2.2647495864326634e-18,-1.6108031348199317e-18,-3.698432879384831e-18,-0.015504535287618637,0.0023809524718672037,0.0013605442363768816,0.01165816280990839,0.0015873016091063619,-6.733559138140434e-18,-9.866136171708717e-21,-0.0009523809421807528,-3.1441293410679703e-20,-3.74049749507499e-18,-0.0005442177061922848,-1.8973538018496328e-19,-0.0014880952658131719,-0.0006349206087179482,-3.645622360356996e-18,-0.01785714365541935,0.0027777778450399637,0.0015873016091063619,0.0015873016091063619,0.01686508022248745,-7.930164816114238e-18,-8.73908320005961e-21,3.448701443136543e-20,-0.0013888889225199819,-4.637756435533204e-18,2.3493945649249084e-20,-0.0007936508045531809,-3.7947076036992655e-18,-0.0007936508045531809,-0.0026455025654286146,0.0027777778450399637,-0.01666666753590107,-6.733559138140434e-18,-6.733559138140434e-18,-7.930164816114238e-18,0.008333333767950535,-9.62964972193618e-35,-9.730432291307363e-35,8.330652699993221e-35,9.086647271295545e-19,4.531522353246055e-19,5.2867765096103e-19,9.086647271295545e-19,5.2867765096103e-19,1.3216941015531808e-18,0.0023809524718672037,-0.0023809524718672037,-0.0009523809421807528,-9.866136171708717e-21,-8.73908320005961e-21,-9.62964972193618e-35,0.0009523809421807528,1.791335952975658e-21,-9.134965863555093e-22,-2.710505431213761e-20,-1.3552527156068805e-20,1.3552527156068805e-20,7.731471393012752e-21,1.2037062152420224e-35,-5.5698246935936466e-21,0.0023809524718672037,-0.0023809524718672037,9.666609060409702e-20,-0.0009523809421807528,3.448701443136543e-20,-9.730432291307363e-35,1.791335952975658e-21,0.0009523809421807528,-1.8828199880710703e-21,2.7989625022551123e-21,-4.4381461344214917e-20,-1.3464034582500187e-21,2.710505431213761e-20,-0.0,-6.72142166498085e-21,0.0027777778450399637,-0.0027777778450399637,-2.710505431213761e-20,-3.1441293410679703e-20,-0.0013888889225199819,8.330652699993221e-35,-9.134965863555093e-22,-1.8828199880710703e-21,0.0013888889225199819,-1.4273384161804833e-21,-2.590278525808943e-21,2.111996798737744e-20,-2.941906218739273e-21,2.788227773933641e-20,2.604789971783637e-20,0.0009920635493472219,-1.7537095457815836e-18,-0.0014880952658131719,-3.74049749507499e-18,-4.637756435533204e-18,9.086647271295545e-19,-2.710505431213761e-20,2.7989625022551123e-21,-1.4273384161804833e-21,0.00029761905898340046,2.0328790734103208e-19,3.3881317890172014e-19,5.188775252562314e-19,3.021015074493331e-19,7.57174145963557e-19,0.0013605442363768816,-7.562889593105487e-19,-0.0005442177061922848,-0.0005442177061922848,2.3493945649249084e-20,4.531522353246055e-19,-1.3552527156068805e-20,-4.4381461344214917e-20,-2.590278525808943e-21,2.0328790734103208e-19,0.00021768707665614784,2.05522474373533e-20,-1.3320349190352535e-19,-2.0328790734103208e-20,-4.9338637625178004e-21,0.0015873016091063619,-1.1301104896870443e-18,-0.0006349206087179482,-1.8973538018496328e-19,-0.0007936508045531809,5.2867765096103e-19,1.3552527156068805e-20,-1.3464034582500187e-21,2.111996798737744e-20,3.3881317890172014e-19,2.05522474373533e-20,0.0003174603043589741,-2.1037555675987225e-21,7.55587742795651e-20,-3.517631437556353e-20,0.0009920635493472219,-1.8985368769207367e-18,-2.2647495864326634e-18,-0.0014880952658131719,-3.7947076036992655e-18,9.086647271295545e-19,7.731471393012752e-21,2.710505431213761e-20,-2.941906218739273e-21,5.188775252562314e-19,-1.3320349190352535e-19,-2.1037555675987225e-21,0.00029761905898340046,3.2107336008733133e-19,7.442526025185013e-19,0.0015873016091063619,-1.1131197863148989e-18,-1.6108031348199317e-18,-0.0006349206087179482,-0.0007936508045531809,5.2867765096103e-19,1.2037062152420224e-35,-0.0,2.788227773933641e-20,3.021015074493331e-19,-2.0328790734103208e-20,7.55587742795651e-20,3.2107336008733133e-19,0.0003174603043589741,-2.594534063098973e-20,0.0013227512827143073,-2.6647559326898314e-18,-3.698432879384831e-18,-3.645622360356996e-18,-0.0026455025654286146,1.3216941015531808e-18,-5.5698246935936466e-21,-6.72142166498085e-21,2.604789971783637e-20,7.57174145963557e-19,-4.9338637625178004e-21,-3.517631437556353e-20,7.442526025185013e-19,-2.594534063098973e-20,0.0006613756413571537,3.0,6.0,6.0,6.0,0.05895691737532616,-0.02182539738714695,-0.013109410181641579,-0.013109410181641579,-0.013109410181641579,0.002314814832061529,0.0019841270986944437,0.0019841270986944437,0.0019841270986944437,0.0008267195662483573,0.0011337868636474013,0.0011337868636474013,0.0008267195662483573,0.0011337868636474013,0.0008267195662483573,-0.02182539738714695,0.04497354477643967,0.0019841270986944437,0.0019841270986944437,0.0019841270986944437,-0.013888888992369175,-0.0019841270986944437,-0.0019841270986944437,-0.0019841270986944437,3.0276251781658187e-18,1.335397692568617e-18,1.32443692906683e-18,3.025977641180766e-18,1.3531957242186143e-18,3.0989579254699415e-18,-0.013109410181641579,0.0019841270986944437,0.009790722280740738,0.0011337868636474013,0.0011337868636474013,1.385479797704977e-17,-0.0007936508045531809,-1.5416658799578894e-19,-1.7618285302889447e-19,-0.0012400794075801969,-0.00045351474545896053,-0.00045351474545896053,1.0423341155884032e-18,3.094341792362801e-19,9.982174715936532e-19,-0.013109410181641579,0.0019841270986944437,0.0011337868636474013,0.009790722280740738,0.0011337868636474013,1.385479797704977e-17,-1.2168067533137987e-20,-0.0007936508045531809,-1.3650813014946298e-19,1.7076184216646695e-18,-0.00045351474545896053,-8.131516293641283e-20,-0.0012400794075801969,-0.00045351474545896053,1.095353084130602e-18,-0.013109410181641579,0.0019841270986944437,0.0011337868636474013,0.0011337868636474013,0.009790722280740738,1.385479797704977e-17,-3.137989140606898e-20,-1.4574987016669703e-20,-0.0007936508045531809,1.6726125517317316e-18,3.781152763022421e-20,-0.00045351474545896053,1.4365678785432934e-18,-0.00045351474545896053,-0.0012400794075801969,0.002314814832061529,-0.013888888992369175,1.385479797704977e-17,1.385479797704977e-17,1.385479797704977e-17,0.0069444444961845875,-2.5063235484257123e-18,-2.5063235484257123e-18,-2.5063235484257123e-18,-1.514441142950873e-18,-7.552537427739386e-19,-7.552537427739386e-19,-1.514441142950873e-18,-7.552537427739386e-19,-1.514441142950873e-18,0.0019841270986944437,-0.0019841270986944437,-0.0007936508045531809,-1.2168067533137987e-20,-3.137989140606898e-20,-2.5063235484257123e-18,0.0007936508045531809,-1.645468427675935e-22,4.863441833964359e-22,4.2974179358954573e-35,6.776263578034403e-21,6.776263578034403e-21,-8.491482556835451e-22,2.6180610181513987e-34,2.5711711787247867e-21,0.0019841270986944437,-0.0019841270986944437,-1.5416658799578894e-19,-0.0007936508045531809,-1.4574987016669703e-20,-2.5063235484257123e-18,-1.645468427675935e-22,0.0007936508045531809,1.2870129605951875e-21,-2.571044355134776e-22,6.291651415117115e-20,-6.259747850528641e-22,4.2972101580854e-35,1.3552527156068805e-20,-3.50646344915525e-21,0.0019841270986944437,-0.0019841270986944437,-1.7618285302889447e-19,-1.3650813014946298e-19,-0.0007936508045531809,-2.5063235484257123e-18,4.863441833964359e-22,1.2870129605951875e-21,0.0007936508045531809,7.599128149559236e-22,3.5113011733663975e-22,6.827795637726749e-20,2.010957656266672e-21,4.9372200640091057e-20,-2.7094956892550782e-20,0.0008267195662483573,3.0276251781658187e-18,-0.0012400794075801969,1.7076184216646695e-18,1.6726125517317316e-18,-1.514441142950873e-18,4.2974179358954573e-35,-2.571044355134776e-22,7.599128149559236e-22,0.00024801588733680546,-1.3552527156068805e-19,-1.3552527156068805e-19,-2.2115720577067957e-19,-1.0789339367123366e-19,-2.1822053365035733e-19,0.0011337868636474013,1.335397692568617e-18,-0.00045351474545896053,-0.00045351474545896053,3.781152763022421e-20,-7.552537427739386e-19,6.776263578034403e-21,6.291651415117115e-20,3.5113011733663975e-22,-1.3552527156068805e-19,0.00018140589236281812,-3.678477030784716e-20,2.75191583751227e-20,2.0328790734103208e-20,5.486408193825523e-22,0.0011337868636474013,1.32443692906683e-18,-0.00045351474545896053,-8.131516293641283e-20,-0.00045351474545896053,-7.552537427739386e-19,6.776263578034403e-21,-6.259747850528641e-22,6.827795637726749e-20,-1.3552527156068805e-19,-3.678477030784716e-20,0.00018140589236281812,-9.780855385362277e-22,7.168432491385207e-20,3.5896407410533616e-20,0.0008267195662483573,3.025977641180766e-18,1.0423341155884032e-18,-0.0012400794075801969,1.4365678785432934e-18,-1.514441142950873e-18,-8.491482556835451e-22,4.2972101580854e-35,2.010957656266672e-21,-2.2115720577067957e-19,2.75191583751227e-20,-9.780855385362277e-22,0.00024801588733680546,-1.3383536741863636e-19,-2.213914271310028e-19,0.0011337868636474013,1.3531957242186143e-18,3.094341792362801e-19,-0.00045351474545896053,-0.00045351474545896053,-7.552537427739386e-19,2.6180610181513987e-34,1.3552527156068805e-20,4.9372200640091057e-20,-1.0789339367123366e-19,2.0328790734103208e-20,7.168432491385207e-20,-1.3383536741863636e-19,0.00018140589236281812,6.3561632634018685e-21,0.0008267195662483573,3.0989579254699415e-18,9.982174715936532e-19,1.095353084130602e-18,-0.0012400794075801969,-1.514441142950873e-18,2.5711711787247867e-21,-3.50646344915525e-21,-2.7094956892550782e-20,-2.1822053365035733e-19,5.486408193825523e-22,3.5896407410533616e-20,-2.213914271310028e-19,6.3561632634018685e-21,0.00024801588733680546,3.0,6.0,6.0,7.0,0.051889870315790176,-0.018920067697763443,-0.011358114890754223,-0.011358114890754223,-0.010038738138973713,0.0019841270986944437,0.001700680237263441,0.001700680237263441,0.0014880952658131719,0.0007086168043315411,0.0009718172950670123,0.0008503401186317205,0.0007086168043315411,0.0008503401186317205,0.0005511463969014585,-0.018920067697763443,0.038761336356401443,0.001700680237263441,0.001700680237263441,0.0014880952658131719,-0.011904762126505375,-0.001700680237263441,-0.001700680237263441,-0.0014880952658131719,2.5959179621131684e-18,1.2351122796566428e-18,1.1096996012771452e-18,2.468232915193411e-18,1.096340117396531e-18,1.8943199101579414e-18,-0.011358114890754223,0.001700680237263441,0.008440637961030006,0.0009718172950670123,0.0008503401186317205,1.164956424248545e-17,-0.0006802721181884408,-3.9284060985759185e-20,-4.0657581468206416e-20,-0.0010629252064973116,-0.00038872691220603883,-0.0003401360590942204,6.968618742616898e-19,3.285070513065864e-19,7.319059495991699e-19,-0.011358114890754223,0.001700680237263441,0.0009718172950670123,0.008440637961030006,0.0008503401186317205,1.164956424248545e-17,1.8010969265418537e-20,-0.0006802721181884408,-1.788631379334165e-20,1.5178830414797062e-18,-0.00038872691220603883,-1.5585406229479126e-19,-0.0010629252064973116,-0.0003401360590942204,7.795100904540201e-19,-0.010038738138973713,0.0014880952658131719,0.0008503401186317205,0.0008503401186317205,0.006212207023054361,9.902216335999859e-18,1.2270127403560252e-20,-6.3707302047946114e-21,-0.0004960317746736109,1.0422637018387597e-18,4.925632749967401e-20,-0.00028344671591185033,8.131516293641283e-19,-0.00028344671591185033,-0.0006613756413571537,0.0019841270986944437,-0.011904762126505375,1.164956424248545e-17,1.164956424248545e-17,9.902216335999859e-18,0.0059523810632526875,-1.8413805577497008e-18,-1.8413805577497008e-18,-1.3426733664414804e-18,-1.2980923639303584e-18,-6.473603878767961e-19,-5.664403070804539e-19,-1.2980923639303584e-18,-5.664403070804539e-19,-9.54556810911573e-19,0.001700680237263441,-0.001700680237263441,-0.0006802721181884408,1.8010969265418537e-20,1.2270127403560252e-20,-1.8413805577497008e-18,0.0006802721181884408,-1.9233589062798794e-21,1.6597146750226003e-21,3.157286564784357e-35,-0.0,-0.0,-2.964547258782036e-21,1.715281356719882e-34,-2.1430527051467434e-21,0.001700680237263441,-0.001700680237263441,-3.9284060985759185e-20,-0.0006802721181884408,-6.3707302047946114e-21,-1.8413805577497008e-18,-1.9233589062798794e-21,0.0006802721181884408,-3.456596951250686e-23,-3.005248139601018e-21,2.4508608686341816e-20,-1.2518731326394558e-21,5.421010862427522e-20,6.776263578034403e-21,-1.1393353718603298e-21,0.0014880952658131719,-0.0014880952658131719,-4.0657581468206416e-20,-1.788631379334165e-20,-0.0004960317746736109,-1.3426733664414804e-18,1.6597146750226003e-21,-3.456596951250686e-23,0.0004960317746736109,2.5933041166139406e-21,-5.543449526813478e-22,8.770243836904564e-21,-5.400933032152036e-23,6.5332772536130335e-21,7.666557101972946e-21,0.0007086168043315411,2.5959179621131684e-18,-0.0010629252064973116,1.5178830414797062e-18,1.0422637018387597e-18,-1.2980923639303584e-18,3.157286564784357e-35,-3.005248139601018e-21,2.5933041166139406e-21,0.00021258502965793014,-1.3552527156068805e-19,0.0,-1.8763045109526017e-19,-8.092004848459951e-20,-1.3491041787161973e-19,0.0009718172950670123,1.2351122796566428e-18,-0.00038872691220603883,-0.00038872691220603883,4.925632749967401e-20,-6.473603878767961e-19,-0.0,2.4508608686341816e-20,-5.543449526813478e-22,-1.3552527156068805e-19,0.00015549076488241553,9.545990617462986e-21,1.0042278305479488e-19,-2.710505431213761e-20,-7.3912656991706515e-22,0.0008503401186317205,1.1096996012771452e-18,-0.0003401360590942204,-1.5585406229479126e-19,-0.00028344671591185033,-5.664403070804539e-19,-0.0,-1.2518731326394558e-21,8.770243836904564e-21,0.0,9.545990617462986e-21,0.00011337868636474013,-1.956051725572939e-21,4.7951934759511776e-20,-1.7994562978073857e-20,0.0007086168043315411,2.468232915193411e-18,6.968618742616898e-19,-0.0010629252064973116,8.131516293641283e-19,-1.2980923639303584e-18,-2.964547258782036e-21,5.421010862427522e-20,-5.400933032152036e-23,-1.8763045109526017e-19,1.0042278305479488e-19,-1.956051725572939e-21,0.00021258502965793014,1.123827532715647e-20,-1.4135428409037853e-19,0.0008503401186317205,1.096340117396531e-18,3.285070513065864e-19,-0.0003401360590942204,-0.00028344671591185033,-5.664403070804539e-19,1.715281356719882e-34,6.776263578034403e-21,6.5332772536130335e-21,-8.092004848459951e-20,-2.710505431213761e-20,4.7951934759511776e-20,1.123827532715647e-20,0.00011337868636474013,-2.2540938263947096e-20,0.0005511463969014585,1.8943199101579414e-18,7.319059495991699e-19,7.795100904540201e-19,-0.0006613756413571537,-9.54556810911573e-19,-2.1430527051467434e-21,-1.1393353718603298e-21,7.666557101972946e-21,-1.3491041787161973e-19,-7.3912656991706515e-22,-1.7994562978073857e-20,-1.4135428409037853e-19,-2.2540938263947096e-20,0.00011022927355952561,3.0,6.0,6.0,8.0,0.046347472816705704,-0.016699735075235367,-0.010021022520959377,-0.010021022520959377,-0.007936508394777775,0.0017361111240461469,0.0014880952658131719,0.0014880952658131719,0.0011574074160307646,0.0006200397037900984,0.0008503401186317205,0.0006613756413571537,0.0006200397037900984,0.0006613756413571537,0.00038580247201025486,-0.016699735075235367,0.034060847014188766,0.0014880952658131719,0.0014880952658131719,0.0011574074160307646,-0.010416666977107525,-0.0014880952658131719,-0.0014880952658131719,-0.0011574074160307646,2.2716617144263096e-18,1.1328806141609079e-18,8.455540000178438e-19,2.2716617144263096e-18,8.61934761085808e-19,1.3030647533875678e-18,-0.010021022520959377,0.0014880952658131719,0.007418627385050058,0.0008503401186317205,0.0006613756413571537,1.004703829046503e-17,-0.0005952381179668009,-2.7195620166090262e-33,-3.5575383784680614e-20,-0.0009300595265813172,-0.0003401360590942204,-0.00026455026818439364,8.113077403811711e-19,2.969013848297302e-19,4.161863350808291e-19,-0.010021022520959377,0.0014880952658131719,0.0008503401186317205,0.007418627385050058,0.0006613756413571537,1.004703829046503e-17,-2.7195620166090262e-33,-0.0005952381179668009,-1.919462756347784e-20,1.261762694824606e-18,-0.0003401360590942204,-1.7787691892340307e-20,-0.0009300595265813172,-0.00026455026818439364,4.3175459799211305e-19,-0.007936508394777775,0.0011574074160307646,0.0006613756413571537,0.0006613756413571537,0.004196586087346077,7.483480667890702e-18,-2.0256506199163445e-33,-2.0256506199163445e-33,-0.0003306878206785768,1.0555820334838994e-18,-1.3363516610181979e-33,-0.0001889644772745669,8.982374951228641e-19,-0.0001889644772745669,-0.00038580247201025486,0.0017361111240461469,-0.010416666977107525,1.004703829046503e-17,1.004703829046503e-17,7.483480667890702e-18,0.0052083334885537624,-1.4098070347635544e-18,-1.4098070347635544e-18,-7.83226095958338e-19,-1.1358308572131548e-18,-5.664403070804539e-19,-4.405647177506564e-19,-1.1358308572131548e-18,-4.405647177506564e-19,-6.42490155225237e-19,0.0014880952658131719,-0.0014880952658131719,-0.0005952381179668009,-2.7195620166090262e-33,-2.0256506199163445e-33,-1.4098070347635544e-18,0.0005952381179668009,3.8161071821764638e-34,2.120059622183171e-34,3.0745004236234043e-34,1.5332573192331229e-34,1.1925335087794412e-34,3.0745004236234043e-34,1.1925335087794412e-34,1.7391112904404383e-34,0.0014880952658131719,-0.0014880952658131719,-2.7195620166090262e-33,-0.0005952381179668009,-2.0256506199163445e-33,-1.4098070347635544e-18,3.8161071821764638e-34,0.0005952381179668009,2.120059622183171e-34,3.0745004236234043e-34,1.5332573192331229e-34,1.1925335087794412e-34,3.0745004236234043e-34,1.1925335087794412e-34,1.7391112904404383e-34,0.0011574074160307646,-0.0011574074160307646,-3.5575383784680614e-20,-1.919462756347784e-20,-0.0003306878206785768,-7.83226095958338e-19,2.120059622183171e-34,2.120059622183171e-34,0.0003306878206785768,1.6851887013388314e-34,8.518096409285744e-35,1.0164395367051604e-20,1.984095333411342e-34,5.484179592348514e-21,-5.1669820807253535e-21,0.0006200397037900984,2.2716617144263096e-18,-0.0009300595265813172,1.261762694824606e-18,1.0555820334838994e-18,-1.1358308572131548e-18,3.0745004236234043e-34,3.0745004236234043e-34,1.6851887013388314e-34,0.00018601190822664648,-9.206902788748504e-20,-1.0229891915694465e-19,-1.622615454912948e-19,-6.293781405194439e-20,-9.178430973570487e-20,0.0008503401186317205,1.1328806141609079e-18,-0.0003401360590942204,-0.0003401360590942204,-1.3363516610181979e-33,-5.664403070804539e-19,1.5332573192331229e-34,1.5332573192331229e-34,8.518096409285744e-35,-9.206902788748504e-20,0.0001360544265480712,9.854848725614805e-35,2.0384252129384096e-34,7.906618941667375e-35,1.1530486076175725e-34,0.0006613756413571537,8.455540000178438e-19,-0.00026455026818439364,-1.7787691892340307e-20,-0.0001889644772745669,-4.405647177506564e-19,1.1925335087794412e-34,1.1925335087794412e-34,1.0164395367051604e-20,-1.0229891915694465e-19,9.854848725614805e-35,7.558579090982676e-05,1.7905129951725083e-34,5.082197683525802e-21,1.2210059873922124e-20,0.0006200397037900984,2.2716617144263096e-18,8.113077403811711e-19,-0.0009300595265813172,8.982374951228641e-19,-1.1358308572131548e-18,3.0745004236234043e-34,3.0745004236234043e-34,1.984095333411342e-34,-1.622615454912948e-19,2.0384252129384096e-34,1.7905129951725083e-34,0.00018601190822664648,-1.0229891915694465e-19,-9.178430973570487e-20,0.0006613756413571537,8.61934761085808e-19,2.969013848297302e-19,-0.00026455026818439364,-0.0001889644772745669,-4.405647177506564e-19,1.1925335087794412e-34,1.1925335087794412e-34,5.484179592348514e-21,-6.293781405194439e-20,7.906618941667375e-35,5.082197683525802e-21,-1.0229891915694465e-19,7.558579090982676e-05,7.761985795004149e-21,0.00038580247201025486,1.3030647533875678e-18,4.161863350808291e-19,4.3175459799211305e-19,-0.00038580247201025486,-6.42490155225237e-19,1.7391112904404383e-34,1.7391112904404383e-34,-5.1669820807253535e-21,-9.178430973570487e-20,1.1530486076175725e-34,1.2210059873922124e-20,-9.178430973570487e-20,7.761985795004149e-21,5.5114636779762805e-05,3.0,6.0,7.0,3.0,0.08865582942962646,-0.03528911620378494,-0.021258503198623657,-0.018801964819431305,-0.03528911620378494,0.003968254197388887,0.003401360474526882,0.0029761905316263437,0.0059523810632526875,0.0014172336086630821,0.001700680237263441,0.003401360474526882,0.001102292793802917,0.0029761905316263437,0.003968254197388887,-0.03528911620378494,0.07497165352106094,0.003401360474526882,0.0029761905316263437,0.0059523810632526875,-0.02380952425301075,-0.003401360474526882,-0.0029761905316263437,-0.0059523810632526875,5.191996397265172e-18,2.2825381055056162e-18,4.599227603371403e-18,3.8177718807190816e-18,4.013196195566878e-18,2.643388161747331e-17,-0.021258503198623657,0.003401360474526882,0.016298186033964157,0.001700680237263441,0.003401360474526882,2.23280879290051e-17,-0.0013605442363768816,1.60027088318719e-20,-7.554791255455483e-33,-0.002125850412994623,-0.0006802721181884408,-0.0013605442363768816,1.6305339773687357e-18,1.111307226797642e-18,1.055406857309676e-17,-0.018801964819431305,0.0029761905316263437,0.001700680237263441,0.01199924387037754,0.0029761905316263437,1.8954770944758725e-17,1.7186147410080992e-21,-0.0009920635493472219,-6.413416362849782e-33,1.8973538018496328e-18,-0.0005668934318237007,3.605452169215342e-20,-0.0013227512827143073,-0.0009920635493472219,-2.957658985115256e-32,-0.03528911620378494,0.0059523810632526875,0.003401360474526882,0.0029761905316263437,0.07497165352106094,4.2073929743856463e-17,7.671052634731716e-20,4.0609627610898215e-20,-0.0059523810632526875,6.13162601024019e-18,2.0667603913004928e-19,-0.003401360474526882,-0.0,-0.0029761905316263437,-0.02380952425301075,0.003968254197388887,-0.02380952425301075,2.23280879290051e-17,1.8954770944758725e-17,4.2073929743856463e-17,0.011904762126505375,-3.6827611154994015e-18,-2.6853467328829607e-18,-4.028020099324441e-18,-2.5961847278607168e-18,-1.1328806141609079e-18,-2.2657612283218157e-18,-1.909113621823146e-18,-1.9825412040285595e-18,-1.3216940808736655e-17,0.003401360474526882,-0.003401360474526882,-0.0013605442363768816,1.7186147410080992e-21,7.671052634731716e-20,-3.6827611154994015e-18,0.0013605442363768816,7.964097361041251e-23,1.2460758070914579e-33,6.314573129568714e-35,-0.0,-2.710505431213761e-20,1.8221142005408588e-22,-2.982629919726521e-21,4.237045877651919e-33,0.0029761905316263437,-0.0029761905316263437,1.60027088318719e-20,-0.0009920635493472219,4.0609627610898215e-20,-2.6853467328829607e-18,7.964097361041251e-23,0.0009920635493472219,9.085969809356448e-34,1.2443902126626955e-22,-5.592273680715868e-21,1.9182168963294827e-23,3.3126653366214665e-35,-1.3552527156068805e-20,2.9945364102182604e-33,0.0059523810632526875,-0.0059523810632526875,-7.554791255455483e-33,-6.413416362849782e-33,-0.0059523810632526875,-4.028020099324441e-18,1.2460758070914579e-33,9.085969809356448e-34,0.0059523810632526875,8.7842865310576e-34,3.8331433554799923e-34,7.666286710959985e-34,6.4595563528294796e-34,6.708000757295616e-34,4.4720007497584006e-33,0.0014172336086630821,5.191996397265172e-18,-0.002125850412994623,1.8973538018496328e-18,6.13162601024019e-18,-2.5961847278607168e-18,6.314573129568714e-35,1.2443902126626955e-22,8.7842865310576e-34,0.00042517005931586027,2.710505431213761e-20,-5.421010862427522e-19,-2.86730527114143e-19,-2.8788051496074486e-19,-1.888134460332423e-18,0.001700680237263441,2.2825381055056162e-18,-0.0006802721181884408,-0.0005668934318237007,2.0667603913004928e-19,-1.1328806141609079e-18,-0.0,-5.592273680715868e-21,3.8331433554799923e-34,2.710505431213761e-20,0.00022675737272948027,-1.1519648082658485e-19,-6.370530195107436e-20,2.710505431213761e-20,1.3000027124613842e-33,0.003401360474526882,4.599227603371403e-18,-0.0013605442363768816,3.605452169215342e-20,-0.003401360474526882,-2.2657612283218157e-18,-2.710505431213761e-20,1.9182168963294827e-23,7.666286710959985e-34,-5.421010862427522e-19,-1.1519648082658485e-19,0.0013605442363768816,2.5576225810300372e-23,2.5175125620777757e-19,-1.1133961680370681e-18,0.001102292793802917,3.8177718807190816e-18,1.6305339773687357e-18,-0.0013227512827143073,-0.0,-1.909113621823146e-18,1.8221142005408588e-22,3.3126653366214665e-35,6.4595563528294796e-34,-2.86730527114143e-19,-6.370530195107436e-20,2.5576225810300372e-23,0.00022045854711905122,-8.34001702211679e-21,3.3483122716867745e-33,0.0029761905316263437,4.013196195566878e-18,1.111307226797642e-18,-0.0009920635493472219,-0.0029761905316263437,-1.9825412040285595e-18,-2.982629919726521e-21,-1.3552527156068805e-20,6.708000757295616e-34,-2.8788051496074486e-19,2.710505431213761e-20,2.5175125620777757e-19,-8.34001702211679e-21,0.0009920635493472219,3.233369862669479e-33,0.003968254197388887,2.643388161747331e-17,1.055406857309676e-17,-2.957658985115256e-32,-0.02380952425301075,-1.3216940808736655e-17,4.237045877651919e-33,2.9945364102182604e-33,4.4720007497584006e-33,-1.888134460332423e-18,1.3000027124613842e-33,-1.1133961680370681e-18,3.3483122716867745e-33,3.233369862669479e-33,0.011904762126505375,3.0,6.0,7.0,4.0,0.07158683240413666,-0.027359694242477417,-0.01645408198237419,-0.014547902159392834,-0.022363945841789246,0.0029761905316263437,0.0025510203558951616,0.0022321429569274187,0.0035714285913854837,0.0010629252064973116,0.0012755101779475808,0.0020408162381500006,0.0008267195662483573,0.0017857142956927419,0.0019841270986944437,-0.027359694242477417,0.05712159723043442,0.0025510203558951616,0.0022321429569274187,0.0035714285913854837,-0.01785714365541935,-0.0025510203558951616,-0.0022321429569274187,-0.0035714285913854837,3.907416338833597e-18,1.7239956672150303e-18,2.681785927141073e-18,2.8671420063680275e-18,2.382181936454979e-18,9.251858814269842e-18,-0.01645408198237419,0.0025510203558951616,0.012427721172571182,0.0012755101779475808,0.0020408162381500006,1.6395412918154328e-17,-0.0010204081190750003,4.9621976873339393e-20,-4.437958800700572e-33,-0.0015943878097459674,-0.0005102040595375001,-0.0008163265301845968,9.65869849956731e-19,8.809142651444724e-19,3.7718617023611634e-18,-0.014547902159392834,0.0022321429569274187,0.0012755101779475808,0.009148242883384228,0.0017857142956927419,1.400995803481063e-17,1.3708420005379507e-20,-0.0007440476329065859,-3.7922564477160276e-33,2.0057740190981832e-18,-0.00042517005931586027,4.618545824966211e-20,-0.0009920635493472219,-0.0005952381179668009,-1.1501274766051302e-32,-0.022363945841789246,0.0035714285913854837,0.0020408162381500006,0.0017857142956927419,0.028798185288906097,2.326181602189986e-17,-3.0122185902901976e-20,-2.705164542487182e-21,-0.0023809524718672037,3.361695717025466e-18,-3.3881317890172014e-21,-0.0013605442363768816,1.0842021724855044e-19,-0.0011904762359336019,-0.0059523810632526875,0.0029761905316263437,-0.01785714365541935,1.6395412918154328e-17,1.400995803481063e-17,2.326181602189986e-17,0.008928571827709675,-2.071553075769625e-18,-1.5105074855478771e-18,-2.4168120595946647e-18,-1.9471384941967493e-18,-8.49660486470075e-19,-1.3594567576726047e-18,-1.4318352680661478e-18,-1.1895247017376204e-18,-4.625929407134921e-18,0.0025510203558951616,-0.0025510203558951616,-0.0010204081190750003,1.3708420005379507e-20,-3.0122185902901976e-20,-2.071553075769625e-18,0.0010204081190750003,-2.80302429025811e-21,5.607341315582553e-34,3.551947600621846e-35,-0.0,1.3552527156068805e-20,-1.3885893665676355e-21,-1.2530435245437652e-21,1.0111132208032988e-33,0.0022321429569274187,-0.0022321429569274187,4.9621976873339393e-20,-0.0007440476329065859,-2.705164542487182e-21,-1.5105074855478771e-18,-2.80302429025811e-21,0.0007440476329065859,4.088686184621661e-34,-4.379725453528297e-21,-8.224913708969043e-21,1.082065837189712e-21,1.860784885463567e-35,-0.0,7.860814495631765e-34,0.0035714285913854837,-0.0035714285913854837,-4.437958800700572e-33,-3.7922564477160276e-33,-0.0023809524718672037,-2.4168120595946647e-18,5.607341315582553e-34,4.088686184621661e-34,0.0023809524718672037,5.270572285976545e-34,2.2998859214524992e-34,3.679817566159495e-34,3.875733903533184e-34,3.219840427786743e-34,1.2521601842184133e-33,0.0010629252064973116,3.907416338833597e-18,-0.0015943878097459674,2.0057740190981832e-18,3.361695717025466e-18,-1.9471384941967493e-18,3.551947600621846e-35,-4.379725453528297e-21,5.270572285976545e-34,0.0003188775444868952,-1.8973538018496328e-19,-2.981555974335137e-19,-2.1395809780326572e-19,-1.7188997952020032e-19,-6.608470507765904e-19,0.0012755101779475808,1.7239956672150303e-18,-0.0005102040595375001,-0.00042517005931586027,-3.3881317890172014e-21,-8.49660486470075e-19,-0.0,-8.224913708969043e-21,2.2998859214524992e-34,-1.8973538018496328e-19,0.0001700680295471102,-6.776263578034403e-21,3.5720049918997896e-20,6.776263578034403e-21,8.907425992790966e-34,0.0020408162381500006,2.681785927141073e-18,-0.0008163265301845968,4.618545824966211e-20,-0.0013605442363768816,-1.3594567576726047e-18,1.3552527156068805e-20,1.082065837189712e-21,3.679817566159495e-34,-2.981555974335137e-19,-6.776263578034403e-21,0.0005442177061922848,1.4427544495862827e-21,-2.6469845840769375e-20,-3.1175093118628214e-19,0.0008267195662483573,2.8671420063680275e-18,9.65869849956731e-19,-0.0009920635493472219,1.0842021724855044e-19,-1.4318352680661478e-18,-1.3885893665676355e-21,1.860784885463567e-35,3.875733903533184e-34,-2.1395809780326572e-19,3.5720049918997896e-20,1.4427544495862827e-21,0.0001653439103392884,-2.97113097830104e-20,1.1703898584393379e-33,0.0017857142956927419,2.382181936454979e-18,8.809142651444724e-19,-0.0005952381179668009,-0.0011904762359336019,-1.1895247017376204e-18,-1.2530435245437652e-21,-0.0,3.219840427786743e-34,-1.7188997952020032e-19,6.776263578034403e-21,-2.6469845840769375e-20,-2.97113097830104e-20,0.00039682540227659047,9.757844727733042e-34,0.0019841270986944437,9.251858814269842e-18,3.7718617023611634e-18,-1.1501274766051302e-32,-0.0059523810632526875,-4.625929407134921e-18,1.0111132208032988e-33,7.860814495631765e-34,1.2521601842184133e-33,-6.608470507765904e-19,8.907425992790966e-34,-3.1175093118628214e-19,1.1703898584393379e-33,9.757844727733042e-34,0.0019841270986944437,3.0,6.0,7.0,5.0,0.06013794243335724,-0.022363945841789246,-0.01343537401407957,-0.011876417323946953,-0.015476190485060215,0.0023809524718672037,0.0020408162381500006,0.0017857142956927419,0.0023809524718672037,0.0008503401186317205,0.0010204081190750003,0.0013605442363768816,0.0006613756413571537,0.0011904762359336019,0.0011337868636474013,-0.022363945841789246,0.046173468232154846,0.0020408162381500006,0.0017857142956927419,0.0023809524718672037,-0.014285714365541935,-0.0020408162381500006,-0.0017857142956927419,-0.0023809524718672037,-1.4798788486214168e-18,-7.089370051449506e-19,-9.06304470649211e-19,-1.1001786490290833e-18,-7.523588691239444e-19,-2.2657612283218157e-18,-0.01343537401407957,0.0020408162381500006,0.010051020421087742,0.0010204081190750003,0.0013605442363768816,-5.820174311640499e-18,-0.0008163265301845968,-2.807375260280139e-19,-3.6252180376932087e-19,-0.0012755101779475808,-0.0004081632650922984,-0.0005442177061922848,9.763393715722382e-19,5.554732880252845e-19,1.872891382799449e-18,-0.011876417323946953,0.0017857142956927419,0.0010204081190750003,0.007397959008812904,0.0011904762359336019,-5.079081694158315e-18,-2.577000031311351e-19,-0.0005952381179668009,-2.64338825480515e-19,1.5449880957918438e-18,-0.0003401360590942204,9.253264000260114e-21,-0.0007936508045531809,-0.00039682540227659047,-2.7621354832599324e-33,-0.015476190485060215,0.0023809524718672037,0.0013605442363768816,0.0011904762359336019,0.01454081665724516,-6.853927979337313e-18,-3.6252180376932087e-19,-2.2368124401230857e-19,-0.0011904762359336019,2.262359034462385e-18,-6.109488149657039e-20,-0.0006802721181884408,2.710505431213761e-20,-0.0005952381179668009,-0.0022675737272948027,0.0023809524718672037,-0.014285714365541935,-5.820174311640499e-18,-5.079081694158315e-18,-6.853927979337313e-18,0.0071428571827709675,-9.62964972193618e-35,-5.546455299984766e-35,-0.0,7.788554286979727e-19,3.398641894181512e-19,4.531522353246055e-19,5.727341175662168e-19,3.965082252960754e-19,1.1328806141609079e-18,0.0020408162381500006,-0.0020408162381500006,-0.0008163265301845968,-2.577000031311351e-19,-3.6252180376932087e-19,-9.62964972193618e-35,0.0008163265301845968,2.6974323586202433e-19,3.6252180376932087e-19,-2.710505431213761e-20,-0.0,-0.0,-1.8528013693813865e-21,3.009265538105056e-36,-0.0,0.0017857142956927419,-0.0017857142956927419,-2.807375260280139e-19,-0.0005952381179668009,-2.2368124401230857e-19,-5.546455299984766e-35,2.6974323586202433e-19,0.0005952381179668009,2.64338825480515e-19,-3.356451538960309e-21,9.73621630895604e-21,6.018531076210112e-36,-1.3552527156068805e-20,-1.3552527156068805e-20,-0.0,0.0023809524718672037,-0.0023809524718672037,-3.6252180376932087e-19,-2.64338825480515e-19,-0.0011904762359336019,-0.0,3.6252180376932087e-19,2.64338825480515e-19,0.0011904762359336019,-0.0,-0.0,-6.018531076210112e-36,-1.2037062152420224e-35,-3.009265538105056e-36,0.0,0.0008503401186317205,-1.4798788486214168e-18,-0.0012755101779475808,1.5449880957918438e-18,2.262359034462385e-18,7.788554286979727e-19,-2.710505431213761e-20,-3.356451538960309e-21,-0.0,0.00025510202976875007,-1.2197274440461925e-19,-2.710505431213761e-19,-1.6477798401104596e-19,-1.1328805883115137e-19,-3.2368019393839806e-19,0.0010204081190750003,-7.089370051449506e-19,-0.0004081632650922984,-0.0003401360590942204,-6.109488149657039e-20,3.398641894181512e-19,-0.0,9.73621630895604e-21,-0.0,-1.2197274440461925e-19,0.0001360544265480712,8.174920172904303e-21,-5.003678856348913e-20,1.3552527156068805e-20,2.2069137314408125e-34,0.0013605442363768816,-9.06304470649211e-19,-0.0005442177061922848,9.253264000260114e-21,-0.0006802721181884408,4.531522353246055e-19,-0.0,6.018531076210112e-36,-6.018531076210112e-36,-2.710505431213761e-19,8.174920172904303e-21,0.0002721088530961424,2.091439548983014e-34,-1.484528282210561e-20,-1.2724528410191175e-19,0.0006613756413571537,-1.1001786490290833e-18,9.763393715722382e-19,-0.0007936508045531809,2.710505431213761e-20,5.727341175662168e-19,-1.8528013693813865e-21,-1.3552527156068805e-20,-1.2037062152420224e-35,-1.6477798401104596e-19,-5.003678856348913e-20,2.091439548983014e-34,0.00013227513409219682,-1.668003404423358e-20,2.9846612015631474e-34,0.0011904762359336019,-7.523588691239444e-19,5.554732880252845e-19,-0.00039682540227659047,-0.0005952381179668009,3.965082252960754e-19,3.009265538105056e-36,-1.3552527156068805e-20,-3.009265538105056e-36,-1.1328805883115137e-19,1.3552527156068805e-20,-1.484528282210561e-20,-1.668003404423358e-20,0.00019841270113829523,2.09805216388387e-34,0.0011337868636474013,-2.2657612283218157e-18,1.872891382799449e-18,-2.7621354832599324e-33,-0.0022675737272948027,1.1328806141609079e-18,-0.0,-0.0,0.0,-3.2368019393839806e-19,2.2069137314408125e-34,-1.2724528410191175e-19,2.9846612015631474e-34,2.09805216388387e-34,0.0005668934318237007,3.0,6.0,7.0,6.0,0.051889870315790176,-0.018920067697763443,-0.011358114890754223,-0.010038738138973713,-0.011358114890754223,0.0019841270986944437,0.001700680237263441,0.0014880952658131719,0.001700680237263441,0.0007086168043315411,0.0008503401186317205,0.0009718172950670123,0.0005511463969014585,0.0008503401186317205,0.0007086168043315411,-0.018920067697763443,0.038761336356401443,0.001700680237263441,0.0014880952658131719,0.001700680237263441,-0.011904762126505375,-0.001700680237263441,-0.0014880952658131719,-0.001700680237263441,2.5857924442349068e-18,1.126740142281197e-18,1.2396515366656041e-18,1.861580928693705e-18,9.639124304347009e-19,2.589402053632935e-18,-0.011358114890754223,0.001700680237263441,0.008440637961030006,0.0008503401186317205,0.0009718172950670123,1.164956424248545e-17,-0.0006802721181884408,-3.3519045093616465e-20,-6.776263578034403e-20,-0.0010629252064973116,-0.0003401360590942204,-0.00038872691220603883,7.4600643221226685e-19,2.7800077312198807e-19,6.81515657646088e-19,-0.010038738138973713,0.0014880952658131719,0.0008503401186317205,0.006212207023054361,0.0008503401186317205,9.902216335999859e-18,-7.418268824474925e-21,-0.0004960317746736109,-1.5160959177662854e-19,1.0299920638612292e-18,-0.00028344671591185033,6.098637220230962e-20,-0.0006613756413571537,-0.00028344671591185033,-2.169982450483395e-19,-0.011358114890754223,0.001700680237263441,0.0009718172950670123,0.0008503401186317205,0.008440637961030006,1.164956424248545e-17,2.5129769627580855e-20,-3.395920534589698e-21,-0.0006802721181884408,1.5242441637878156e-18,1.3926446720272586e-20,-0.00038872691220603883,-2.710505431213761e-20,-0.0003401360590942204,-0.0010629252064973116,0.0019841270986944437,-0.011904762126505375,1.164956424248545e-17,9.902216335999859e-18,1.164956424248545e-17,0.0059523810632526875,-1.8413805577497008e-18,-1.3426733664414804e-18,-1.8413805577497008e-18,-1.2980923639303584e-18,-5.664403070804539e-19,-6.473603878767961e-19,-9.54556810911573e-19,-5.664403070804539e-19,-1.2980923639303584e-18,0.001700680237263441,-0.001700680237263441,-0.0006802721181884408,-7.418268824474925e-21,2.5129769627580855e-20,-1.8413805577497008e-18,0.0006802721181884408,1.1222495281774565e-21,1.3137571880612544e-21,3.157286564784357e-35,-6.776263578034403e-21,-0.0,3.574873466856016e-21,1.6851887013388314e-34,-4.872885849529724e-21,0.0014880952658131719,-0.0014880952658131719,-3.3519045093616465e-20,-0.0004960317746736109,-3.395920534589698e-21,-1.3426733664414804e-18,1.1222495281774565e-21,0.0004960317746736109,-6.186198751129158e-22,1.7535148562228396e-21,8.098459280618566e-21,-5.657294903429099e-22,1.3552527156068805e-20,3.3881317890172014e-21,-8.726409120942614e-22,0.001700680237263441,-0.001700680237263441,-6.776263578034403e-20,-1.5160959177662854e-19,-0.0006802721181884408,-1.8413805577497008e-18,1.3137571880612544e-21,-6.186198751129158e-22,0.0006802721181884408,2.0527456252783717e-21,-4.857035021236516e-22,2.2706569872500903e-20,-8.248265001505544e-22,6.352153860811687e-20,8.633137034786766e-21,0.0007086168043315411,2.5857924442349068e-18,-0.0010629252064973116,1.0299920638612292e-18,1.5242441637878156e-18,-1.2980923639303584e-18,3.157286564784357e-35,1.7535148562228396e-21,2.0527456252783717e-21,0.00021258502965793014,-0.0,-1.3552527156068805e-19,-1.3998137106869364e-19,-8.092004848459951e-20,-1.8460603320652195e-19,0.0008503401186317205,1.126740142281197e-18,-0.0003401360590942204,-0.00028344671591185033,1.3926446720272586e-20,-5.664403070804539e-19,-6.776263578034403e-21,8.098459280618566e-21,-4.857035021236516e-22,-0.0,0.00011337868636474013,-3.8287896421349524e-20,-1.5415268425291466e-20,2.879912020664621e-20,-7.589117062909875e-22,0.0009718172950670123,1.2396515366656041e-18,-0.00038872691220603883,6.098637220230962e-20,-0.00038872691220603883,-6.473603878767961e-19,-0.0,-5.657294903429099e-22,2.2706569872500903e-20,-1.3552527156068805e-19,-3.8287896421349524e-20,0.00015549076488241553,-7.543060207819451e-22,1.6080835394492678e-20,9.932301411866296e-20,0.0005511463969014585,1.861580928693705e-18,7.4600643221226685e-19,-0.0006613756413571537,-2.710505431213761e-20,-9.54556810911573e-19,3.574873466856016e-21,1.3552527156068805e-20,-8.248265001505544e-22,-1.3998137106869364e-19,-1.5415268425291466e-20,-7.543060207819451e-22,0.00011022927355952561,8.730955181188996e-21,-5.381785295389533e-22,0.0008503401186317205,9.639124304347009e-19,2.7800077312198807e-19,-0.00028344671591185033,-0.0003401360590942204,-5.664403070804539e-19,1.6851887013388314e-34,3.3881317890172014e-21,6.352153860811687e-20,-8.092004848459951e-20,2.879912020664621e-20,1.6080835394492678e-20,8.730955181188996e-21,0.00011337868636474013,8.930652898489349e-20,0.0007086168043315411,2.589402053632935e-18,6.81515657646088e-19,-2.169982450483395e-19,-0.0010629252064973116,-1.2980923639303584e-18,-4.872885849529724e-21,-8.726409120942614e-22,8.633137034786766e-21,-1.8460603320652195e-19,-7.589117062909875e-22,9.932301411866296e-20,-5.381785295389533e-22,8.930652898489349e-20,0.00021258502965793014,3.0,6.0,7.0,7.0,0.045651793479919434,-0.01639941707253456,-0.009839650243520737,-0.00869574025273323,-0.00869574025273323,0.001700680237263441,0.0014577260008081794,0.0012755101779475808,0.0012755101779475808,0.0006073858239687979,0.0007288630004040897,0.0007288630004040897,0.0004724111931864172,0.0006377550889737904,0.0004724111931864172,-0.01639941707253456,0.03340622037649155,0.0014577260008081794,0.0012755101779475808,0.0012755101779475808,-0.010204081423580647,-0.0014577260008081794,-0.0012755101779475808,-0.0012755101779475808,-1.1463569373030452e-18,-4.736047929578619e-19,-4.843687908714379e-19,-8.148041811316444e-19,-3.586748710836723e-19,-8.121268042839634e-19,-0.009839650243520737,0.0014577260008081794,0.007276481948792934,0.0007288630004040897,0.0007288630004040897,-4.2381872542297705e-18,-0.000583090353757143,3.713771470429161e-20,2.710505431213761e-20,-0.0009110787068493664,-0.0002915451768785715,-0.0002915451768785715,5.580257089016817e-19,2.7329900097205423e-19,5.3262919614477235e-19,-0.00869574025273323,0.0012755101779475808,0.0007288630004040897,0.005355118308216333,0.0006377550889737904,-3.698720324647693e-18,7.156769083189496e-21,-0.00042517005931586027,4.41625460563982e-20,1.2197274440461925e-18,-0.00024295432376675308,-1.3552527156068805e-20,-0.0005668934318237007,-0.00021258502965793014,9.32859656649154e-20,-0.00869574025273323,0.0012755101779475808,0.0007288630004040897,0.0006377550889737904,0.005355118308216333,-3.698720324647693e-18,-1.428898770429236e-20,1.9233589062798794e-21,-0.00042517005931586027,1.196762842290189e-18,-1.0451958163877772e-21,-0.00024295432376675308,1.3552527156068805e-20,-0.00021258502965793014,-0.0005668934318237007,0.001700680237263441,-0.010204081423580647,-4.2381872542297705e-18,-3.698720324647693e-18,-3.698720324647693e-18,0.005102040711790323,1.4444474582904269e-34,4.86892400381106e-35,-8.462095123728601e-35,5.563253357550024e-19,2.4276013899145e-19,2.4276013899145e-19,4.090957945688128e-19,2.1241512161751876e-19,4.090957945688128e-19,0.0014577260008081794,-0.0014577260008081794,-0.000583090353757143,7.156769083189496e-21,-1.428898770429236e-20,1.4444474582904269e-34,0.000583090353757143,-9.615674727567218e-22,9.242361008538647e-22,1.3552527156068805e-20,6.776263578034403e-21,1.3552527156068805e-20,-3.55936302257708e-21,-6.018531076210112e-36,-3.1563947978091265e-21,0.0012755101779475808,-0.0012755101779475808,3.713771470429161e-20,-0.00042517005931586027,1.9233589062798794e-21,4.86892400381106e-35,-9.615674727567218e-22,0.00042517005931586027,1.3777593791897821e-21,-1.5024490815190692e-21,-9.022739911092809e-21,-3.1821268094487117e-22,-8.743278453889836e-39,-3.3881317890172014e-21,1.1782782919292447e-21,0.0012755101779475808,-0.0012755101779475808,2.710505431213761e-20,4.41625460563982e-20,-0.00042517005931586027,-8.462095123728601e-35,9.242361008538647e-22,1.3777593791897821e-21,0.00042517005931586027,1.4441189138950509e-21,-5.959653045279063e-22,-1.1359382162093762e-20,1.8370124382702456e-21,-1.866365838957549e-20,-5.695381360368659e-22,0.0006073858239687979,-1.1463569373030452e-18,-0.0009110787068493664,1.2197274440461925e-18,1.196762842290189e-18,5.563253357550024e-19,1.3552527156068805e-20,-1.5024490815190692e-21,1.4441189138950509e-21,0.00018221575010102242,-1.1519648082658485e-19,-1.2197274440461925e-19,-1.2080543746394207e-19,-6.06900347478625e-20,-1.1705823174089443e-19,0.0007288630004040897,-4.736047929578619e-19,-0.0002915451768785715,-0.00024295432376675308,-1.0451958163877772e-21,2.4276013899145e-19,6.776263578034403e-21,-9.022739911092809e-21,-5.959653045279063e-22,-1.1519648082658485e-19,9.718172805150971e-05,-1.343280730268596e-21,1.7502207952258676e-20,3.3881317890172014e-21,-7.946203723791432e-22,0.0007288630004040897,-4.843687908714379e-19,-0.0002915451768785715,-1.3552527156068805e-20,-0.00024295432376675308,2.4276013899145e-19,1.3552527156068805e-20,-3.1821268094487117e-22,-1.1359382162093762e-20,-1.2197274440461925e-19,-1.343280730268596e-21,9.718172805150971e-05,-4.242835745931616e-22,6.6622616914151865e-21,1.9425444881709946e-20,0.0004724111931864172,-8.148041811316444e-19,5.580257089016817e-19,-0.0005668934318237007,1.3552527156068805e-20,4.090957945688128e-19,-3.55936302257708e-21,-8.743278453889836e-39,1.8370124382702456e-21,-1.2080543746394207e-19,1.7502207952258676e-20,-4.242835745931616e-22,9.448223863728344e-05,-1.4334403474213216e-20,1.267614302955951e-21,0.0006377550889737904,-3.586748710836723e-19,2.7329900097205423e-19,-0.00021258502965793014,-0.00021258502965793014,2.1241512161751876e-19,-6.018531076210112e-36,-3.3881317890172014e-21,-1.866365838957549e-20,-6.06900347478625e-20,3.3881317890172014e-21,6.6622616914151865e-21,-1.4334403474213216e-20,7.086167897796258e-05,-3.357239501195187e-20,0.0004724111931864172,-8.121268042839634e-19,5.3262919614477235e-19,9.32859656649154e-20,-0.0005668934318237007,4.090957945688128e-19,-3.1563947978091265e-21,1.1782782919292447e-21,-5.695381360368659e-22,-1.1705823174089443e-19,-7.946203723791432e-22,1.9425444881709946e-20,1.267614302955951e-21,-3.357239501195187e-20,9.448223863728344e-05,3.0,6.0,7.0,8.0,0.04076318070292473,-0.014473497867584229,-0.0086805559694767,-0.007670776452869177,-0.0068735829554498196,0.0014880952658131719,0.0012755101779475808,0.0011160714784637094,0.0009920635493472219,0.0005314626032486558,0.0006377550889737904,0.0005668934318237007,0.00041335978312417865,0.0004960317746736109,0.0003306878206785768,-0.014473497867584229,0.02935444936156273,0.0012755101779475808,0.0011160714784637094,0.0009920635493472219,-0.008928571827709675,-0.0012755101779475808,-0.0011160714784637094,-0.0009920635493472219,2.2790372703581387e-18,1.0068404158892122e-18,8.152302308458975e-19,1.498566926610521e-18,7.168373554766563e-19,1.0968523489908545e-18,-0.0086805559694767,0.0012755101779475808,0.006395266391336918,0.0006377550889737904,0.0005668934318237007,8.499807708032556e-18,-0.0005102040595375001,5.03178554883467e-20,-3.38692429919333e-20,-0.0007971939048729837,-0.00025510202976875007,-0.00022675737272948027,6.045227719042062e-19,2.707451583789792e-19,3.644750873882883e-19,-0.007670776452869177,0.0011160714784637094,0.0006377550889737904,0.004706396255642176,0.0004960317746736109,7.269317817036436e-18,1.0620756080875938e-19,-0.00037202381645329297,5.914873877273479e-20,1.0254689368742127e-18,-0.00021258502965793014,3.3881317890172014e-20,-0.0004960317746736109,-0.0001653439103392884,7.586836601085868e-20,-0.0068735829554498196,0.0009920635493472219,0.0005668934318237007,0.0004960317746736109,0.0036173199769109488,6.941141353631535e-18,9.440671784674232e-20,1.7022520745160346e-20,-0.00028344671591185033,8.802118854068383e-19,1.121984551692659e-20,-0.0001619695540284738,2.710505431213761e-20,-0.00014172335795592517,-0.0003306878206785768,0.0014880952658131719,-0.008928571827709675,8.499807708032556e-18,7.269317817036436e-18,6.941141353631535e-18,0.004464285913854837,-1.0357765378848125e-18,-7.552537427739386e-19,-1.1508629002923513e-18,-9.735692470983746e-19,-4.248302432350375e-19,-3.776268713869693e-19,-7.159176340330739e-19,-3.304235253882952e-19,-5.507058842636234e-19,0.0012755101779475808,-0.0012755101779475808,-0.0005102040595375001,1.0620756080875938e-19,9.440671784674232e-20,-1.0357765378848125e-18,0.0005102040595375001,1.836090148355128e-34,2.6137587547451372e-34,-1.3275945101094922e-19,-4.24830236772689e-20,-3.7762688431166636e-20,2.6556917606458376e-34,1.2175098938751599e-34,1.886944283941356e-34,0.0011160714784637094,-0.0011160714784637094,5.03178554883467e-20,-0.00037202381645329297,1.7022520745160346e-20,-7.552537427739386e-19,1.836090148355128e-34,0.00037202381645329297,-1.2311420195115414e-21,1.925929944387236e-34,-1.6327289980593732e-20,-3.8171012731180226e-22,-2.0328790734103208e-20,-3.3881317890172014e-21,-6.171501452049549e-22,0.0009920635493472219,-0.0009920635493472219,-3.38692429919333e-20,5.914873877273479e-20,-0.00028344671591185033,-1.1508629002923513e-18,2.6137587547451372e-34,-1.2311420195115414e-21,0.00028344671591185033,2.407412430484045e-34,-5.687133788050137e-22,1.0164395367051604e-20,-1.6415227599981858e-21,-1.3093119606468663e-20,1.8316715091539883e-21,0.0005314626032486558,2.2790372703581387e-18,-0.0007971939048729837,1.0254689368742127e-18,8.802118854068383e-19,-9.735692470983746e-19,-1.3275945101094922e-19,1.925929944387236e-34,2.407412430484045e-34,0.0001594387722434476,-9.864539163826864e-20,-7.515839301369529e-20,-1.022739486422032e-19,-4.720335892337116e-20,-7.867226918051762e-20,0.0006377550889737904,1.0068404158892122e-18,-0.00025510202976875007,-0.00021258502965793014,1.121984551692659e-20,-4.248302432350375e-19,-4.24830236772689e-20,-1.6327289980593732e-20,-5.687133788050137e-22,-9.864539163826864e-20,8.50340147735551e-05,-2.1812006553715873e-22,-3.04572392874257e-20,-1.6940658945086007e-21,-6.634989166956337e-22,0.0005668934318237007,8.152302308458975e-19,-0.00022675737272948027,3.3881317890172014e-20,-0.0001619695540284738,-3.776268713869693e-19,-3.7762688431166636e-20,-3.8171012731180226e-22,1.0164395367051604e-20,-7.515839301369529e-20,-2.1812006553715873e-22,6.478781870100647e-05,-5.08946853244769e-22,-8.470329472543003e-21,8.821928084904923e-21,0.00041335978312417865,1.498566926610521e-18,6.045227719042062e-19,-0.0004960317746736109,2.710505431213761e-20,-7.159176340330739e-19,2.6556917606458376e-34,-2.0328790734103208e-20,-1.6415227599981858e-21,-1.022739486422032e-19,-3.04572392874257e-20,-5.08946853244769e-22,8.26719551696442e-05,-2.215316907903802e-21,8.3598753142956195e-22,0.0004960317746736109,7.168373554766563e-19,2.707451583789792e-19,-0.0001653439103392884,-0.00014172335795592517,-3.304235253882952e-19,1.2175098938751599e-34,-3.3881317890172014e-21,-1.3093119606468663e-20,-4.720335892337116e-20,-1.6940658945086007e-21,-8.470329472543003e-21,-2.215316907903802e-21,4.724111931864172e-05,-2.2578967569491795e-20,0.0003306878206785768,1.0968523489908545e-18,3.644750873882883e-19,7.586836601085868e-20,-0.0003306878206785768,-5.507058842636234e-19,1.886944283941356e-34,-6.171501452049549e-22,1.8316715091539883e-21,-7.867226918051762e-20,-6.634989166956337e-22,8.821928084904923e-21,8.3598753142956195e-22,-2.2578967569491795e-20,4.724111931864172e-05,3.0,6.0,8.0,3.0,0.07933752238750458,-0.031167328357696533,-0.018766533583402634,-0.014880952425301075,-0.031167328357696533,0.0034722222480922937,0.0029761905316263437,0.002314814832061529,0.0052083334885537624,0.0012400794075801969,0.0013227512827143073,0.0029761905316263437,0.0007716049440205097,0.002314814832061529,0.0034722222480922937,-0.031167328357696533,0.06588955223560333,0.0029761905316263437,0.002314814832061529,0.0052083334885537624,-0.02083333395421505,-0.0029761905316263437,-0.002314814832061529,-0.0052083334885537624,4.543323428852619e-18,1.714824922558808e-18,3.965082408057119e-18,2.569960620900948e-18,3.0839528691582296e-18,2.3129645794903686e-17,-0.018766533583402634,0.0029761905316263437,0.014327050186693668,0.0013227512827143073,0.0029761905316263437,1.9244416508050293e-17,-0.0011904762359336019,-4.743384504624082e-20,-1.1394983628114074e-32,-0.0018601190531626344,-0.0005291005363687873,-0.0011904762359336019,8.529571631026168e-19,1.1014117685272467e-18,8.260587902062833e-18,-0.014880952425301075,0.002314814832061529,0.0013227512827143073,0.008109725080430508,0.002314814832061529,1.4306115163884215e-17,-3.872421121680277e-33,-0.0006613756413571537,-8.470921593976464e-33,2.0167573232716623e-18,-0.0003779289545491338,-4.906403585078823e-33,-0.0007716049440205097,-0.0006613756413571537,-2.483918010939375e-32,-0.031167328357696533,0.0052083334885537624,0.0029761905316263437,0.002314814832061529,0.06588955223560333,3.9650823253390577e-17,-1.0732801211672986e-32,-5.151081999518513e-33,-0.0052083334885537624,5.0822282892084665e-18,-5.2684889059107045e-33,-0.0029761905316263437,-0.0,-0.002314814832061529,-0.02083333395421505,0.0034722222480922937,-0.02083333395421505,1.9244416508050293e-17,1.4306115163884215e-17,3.9650823253390577e-17,0.010416666977107525,-2.8196140695271088e-18,-1.566452191916676e-18,-6.167905738316459e-18,-2.2716617144263096e-18,-8.811294355013127e-19,-1.9825412040285595e-18,-1.284980310450474e-18,-1.5419764345791148e-18,-1.1564822897451843e-17,0.0029761905316263437,-0.0029761905316263437,-0.0011904762359336019,-3.872421121680277e-33,-1.0732801211672986e-32,-2.8196140695271088e-18,0.0011904762359336019,4.240119244366342e-34,1.6695469122912177e-33,6.149000847246809e-34,2.3850670175588824e-34,5.366400789507485e-34,3.4782225808808766e-34,4.173867280728044e-34,3.1304005982992774e-33,0.002314814832061529,-0.002314814832061529,-4.743384504624082e-20,-0.0006613756413571537,-5.151081999518513e-33,-1.566452191916676e-18,4.240119244366342e-34,0.0006613756413571537,9.275260215682337e-34,3.6111186457260672e-34,1.3552527156068805e-20,2.981333771948603e-34,1.4583742251870086e-35,-0.0,1.7391113822759344e-33,0.0052083334885537624,-0.0052083334885537624,-1.1394983628114074e-32,-8.470921593976464e-33,-0.0052083334885537624,-6.167905738316459e-18,1.6695469122912177e-33,9.275260215682337e-34,0.0052083334885537624,1.3450939410749579e-33,5.217333871321315e-34,1.173900178444481e-33,7.608612182662843e-34,9.130334619195412e-34,6.847751239903047e-33,0.0012400794075801969,4.543323428852619e-18,-0.0018601190531626344,2.0167573232716623e-18,5.0822282892084665e-18,-2.2716617144263096e-18,6.149000847246809e-34,3.6111186457260672e-34,1.3450939410749579e-33,0.00037202381645329297,-2.045978383138893e-19,-4.028020099324441e-19,-1.8356861947140974e-19,-2.202823588753282e-19,-1.6521176010920818e-18,0.0013227512827143073,1.714824922558808e-18,-0.0005291005363687873,-0.0003779289545491338,-5.2684889059107045e-33,-8.811294355013127e-19,2.3850670175588824e-34,1.3552527156068805e-20,5.217333871321315e-34,-2.045978383138893e-19,0.0001511715818196535,3.892245925742391e-34,1.8538834896436678e-20,-0.0,1.886847144945295e-33,0.0029761905316263437,3.965082408057119e-18,-0.0011904762359336019,-4.906403585078823e-33,-0.0029761905316263437,-1.9825412040285595e-18,5.366400789507485e-34,2.981333771948603e-34,1.173900178444481e-33,-4.028020099324441e-19,3.892245925742391e-34,0.0011904762359336019,4.433181334519441e-34,5.319817234081344e-34,3.989862925561008e-33,0.0007716049440205097,2.569960620900948e-18,8.529571631026168e-19,-0.0007716049440205097,-0.0,-1.284980310450474e-18,3.4782225808808766e-34,1.4583742251870086e-35,7.608612182662843e-34,-1.8356861947140974e-19,1.8538834896436678e-20,4.433181334519441e-34,0.00011022927355952561,2.2559227484162637e-35,2.241823296348594e-33,0.002314814832061529,3.0839528691582296e-18,1.1014117685272467e-18,-0.0006613756413571537,-0.002314814832061529,-1.5419764345791148e-18,4.173867280728044e-34,-0.0,9.130334619195412e-34,-2.202823588753282e-19,-0.0,5.319817234081344e-34,2.2559227484162637e-35,0.0006613756413571537,2.6901878821499158e-33,0.0034722222480922937,2.3129645794903686e-17,8.260587902062833e-18,-2.483918010939375e-32,-0.02083333395421505,-1.1564822897451843e-17,3.1304005982992774e-33,1.7391113822759344e-33,6.847751239903047e-33,-1.6521176010920818e-18,1.886847144945295e-33,3.989862925561008e-33,2.241823296348594e-33,2.6901878821499158e-33,0.010416666977107525,3.0,6.0,8.0,4.0,0.06400462985038757,-0.02415674552321434,-0.014521329663693905,-0.011507936753332615,-0.01974206417798996,0.0026041667442768812,0.0022321429569274187,0.0017361111240461469,0.0031250000465661287,0.0009300595265813172,0.0009920635493472219,0.0017857142956927419,0.0005787037080153823,0.0013888889225199819,0.0017361111240461469,-0.02415674552321434,0.05019841343164444,0.0022321429569274187,0.0017361111240461469,0.0031250000465661287,-0.015625,-0.0022321429569274187,-0.0017361111240461469,-0.0031250000465661287,3.4074925716394644e-18,1.2642107358474567e-18,2.3790494034752407e-18,1.927470620772076e-18,1.8029379591667582e-18,8.095375945498229e-18,-0.014521329663693905,0.0022321429569274187,0.010923858731985092,0.0009920635493472219,0.0017857142956927419,1.4202016138155642e-17,-0.0008928571478463709,-5.748339155511826e-20,-6.727426168784939e-33,-0.0013950893189758062,-0.00039682540227659047,-0.0007142857066355646,6.034561225043191e-19,6.489885895150302e-19,2.8912057243629608e-18,-0.011507936753332615,0.0017361111240461469,0.0009920635493472219,0.006181500386446714,0.0013888889225199819,1.1548301619077321e-17,-2.3444463408982797e-33,-0.0004960317746736109,-5.470374550534663e-33,1.0366756832106577e-18,-0.00028344671591185033,-1.5105075372466654e-19,-0.0005787037080153823,-0.00039682540227659047,-8.13164600633832e-33,-0.01974206417798996,0.0031250000465661287,0.0017857142956927419,0.0013888889225199819,0.025314154103398323,2.2055770145185294e-17,-4.477590592738545e-33,-4.743384504624082e-20,-0.0020833334419876337,2.0580665162674074e-18,-1.6290921498622675e-19,-0.0011904762359336019,-2.710505431213761e-20,-0.0009259259095415473,-0.0052083334885537624,0.0026041667442768812,-0.015625,1.4202016138155642e-17,1.1548301619077321e-17,2.2055770145185294e-17,0.0078125,-1.5860329011843016e-18,-1.7622588710026254e-18,-3.700743608425998e-18,-1.7037462858197322e-18,-6.608470507765904e-19,-1.1895247017376204e-18,-9.63735310386038e-19,-9.251859021064995e-19,-4.0476879727491145e-18,0.0022321429569274187,-0.0022321429569274187,-0.0008928571478463709,-2.3444463408982797e-33,-4.477590592738545e-33,-1.5860329011843016e-18,0.0008928571478463709,3.5776005263383236e-34,7.512960921639487e-34,3.4588129191791447e-34,1.3416001973768713e-34,2.4148802634428723e-34,1.9565003739370484e-34,1.8782402304098718e-34,8.217301524617855e-34,0.0017361111240461469,-0.0017361111240461469,-5.748339155511826e-20,-0.0004960317746736109,-4.743384504624082e-20,-1.7622588710026254e-18,3.5776005263383236e-34,0.0004960317746736109,8.347734561456088e-34,3.851859888774472e-34,1.6423824543018084e-20,2.7685242950566515e-34,1.640671128891727e-35,1.3552527156068805e-20,9.130334619195412e-34,0.0031250000465661287,-0.0031250000465661287,-6.727426168784939e-33,-5.470374550534663e-33,-0.0020833334419876337,-3.700743608425998e-18,7.512960921639487e-34,8.347734561456088e-34,0.0020833334419876337,8.070564013791732e-34,3.130400460546033e-34,5.634720691229615e-34,4.565167309597706e-34,4.3825606906821945e-34,1.917370325132334e-33,0.0009300595265813172,3.4074925716394644e-18,-0.0013950893189758062,1.0366756832106577e-18,2.0580665162674074e-18,-1.7037462858197322e-18,3.4588129191791447e-34,3.851859888774472e-34,8.070564013791732e-34,0.00027901786961592734,5.0125471372442764e-20,5.569996430505979e-20,-1.3767647106590584e-19,-1.321694127402575e-19,-5.782411758918651e-19,0.0009920635493472219,1.2642107358474567e-18,-0.00039682540227659047,-0.00028344671591185033,-1.6290921498622675e-19,-6.608470507765904e-19,1.3416001973768713e-34,1.6423824543018084e-20,3.130400460546033e-34,5.0125471372442764e-20,0.00011337868636474013,6.042030278233632e-20,2.4264635642078422e-20,3.3881317890172014e-21,2.3850670175588824e-34,0.0017857142956927419,2.3790494034752407e-18,-0.0007142857066355646,-1.5105075372466654e-19,-0.0011904762359336019,-1.1895247017376204e-18,2.4148802634428723e-34,2.7685242950566515e-34,5.634720691229615e-34,5.569996430505979e-20,6.042030278233632e-20,0.0004761904710903764,1.3541694921472752e-34,1.1886598875514971e-34,5.0086404613671646e-34,0.0005787037080153823,1.927470620772076e-18,6.034561225043191e-19,-0.0005787037080153823,-2.710505431213761e-20,-9.63735310386038e-19,1.9565003739370484e-34,1.640671128891727e-35,4.565167309597706e-34,-1.3767647106590584e-19,2.4264635642078422e-20,1.3541694921472752e-34,8.26719551696442e-05,3.867584332084333e-21,7.846381629055575e-34,0.0013888889225199819,1.8029379591667582e-18,6.489885895150302e-19,-0.00039682540227659047,-0.0009259259095415473,-9.251859021064995e-19,1.8782402304098718e-34,1.3552527156068805e-20,4.3825606906821945e-34,-1.321694127402575e-19,3.3881317890172014e-21,1.1886598875514971e-34,3.867584332084333e-21,0.00026455026818439364,7.5325260149184665e-34,0.0017361111240461469,8.095375945498229e-18,2.8912057243629608e-18,-8.13164600633832e-33,-0.0052083334885537624,-4.0476879727491145e-18,8.217301524617855e-34,9.130334619195412e-34,1.917370325132334e-33,-5.782411758918651e-19,2.3850670175588824e-34,5.0086404613671646e-34,7.846381629055575e-34,7.5325260149184665e-34,0.0017361111240461469,3.0,6.0,8.0,5.0,0.05373677238821983,-0.01974206417798996,-0.01185515895485878,-0.009391534142196178,-0.013657407835125923,0.0020833334419876337,0.0017857142956927419,0.0013888889225199819,0.0020833334419876337,0.0007440476329065859,0.0007936508045531809,0.0011904762359336019,0.00046296295477077365,0.0009259259095415473,0.0009920635493472219,-0.01974206417798996,0.04057539626955986,0.0017857142956927419,0.0013888889225199819,0.0020833334419876337,-0.012500000186264515,-0.0017857142956927419,-0.0013888889225199819,-0.0020833334419876337,-1.3629969872967551e-18,-5.87969957268831e-19,-7.930164505921508e-19,-7.709882172895574e-19,-6.167905841714036e-19,-1.9825412040285595e-18,-0.01185515895485878,0.0017857142956927419,0.008834325708448887,0.0007936508045531809,0.0011904762359336019,-5.125694976036903e-18,-0.0007142857066355646,-5.929230630780102e-20,-0.0,-0.0011160714784637094,-0.0003174603043589741,-0.0004761904710903764,-1.1884483329655357e-18,-8.811294355013127e-19,-2.8322016904986345e-18,-0.009391534142196178,0.0013888889225199819,0.0007936508045531809,0.004998110234737396,0.0009259259095415473,-3.9760963179132625e-18,-0.0,-0.00039682540227659047,-0.0,-2.262704382368126e-18,-0.00022675737272948027,-2.2121703493231478e-33,-0.00046296295477077365,-0.00026455026818439364,-6.372579689102215e-33,-0.013657407835125923,0.0020833334419876337,0.0011904762359336019,0.0009259259095415473,0.012781084515154362,-6.035736338500899e-18,-0.0,-0.0,-0.0010416667209938169,-3.3659143381494864e-18,-2.0239114392901045e-33,-0.0005952381179668009,-0.0,-0.00046296295477077365,-0.0019841270986944437,0.0020833334419876337,-0.012500000186264515,-5.125694976036903e-18,-3.9760963179132625e-18,-6.035736338500899e-18,0.0062500000931322575,-0.0,4.81482486096809e-35,-0.0,6.814984936483776e-19,2.64338825480515e-19,3.965082252960754e-19,3.854941086447787e-19,3.083952920857018e-19,9.912706020142797e-19,0.0017857142956927419,-0.0017857142956927419,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0013888889225199819,-5.929230630780102e-20,-0.00039682540227659047,-0.0,4.81482486096809e-35,-0.0,0.00039682540227659047,-0.0,4.81482486096809e-35,1.6940658945086007e-20,0.0,0.0,-0.0,0.0,0.0020833334419876337,-0.0020833334419876337,-0.0,-0.0,-0.0010416667209938169,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-1.3629969872967551e-18,-0.0011160714784637094,-2.262704382368126e-18,-3.3659143381494864e-18,6.814984936483776e-19,-0.0,4.81482486096809e-35,-0.0,0.00022321428696159273,1.473104497898549e-19,1.933449637335974e-19,2.202823588753282e-19,1.762258793454443e-19,5.664403070804539e-19,0.0007936508045531809,-5.87969957268831e-19,-0.0003174603043589741,-0.00022675737272948027,-2.0239114392901045e-33,2.64338825480515e-19,-0.0,1.6940658945086007e-20,-0.0,1.473104497898549e-19,9.070294618140906e-05,1.4436816650468394e-34,2.4867608303364098e-20,-0.0,4.1574773997287275e-34,0.0011904762359336019,-7.930164505921508e-19,-0.0004761904710903764,-2.2121703493231478e-33,-0.0005952381179668009,3.965082252960754e-19,-0.0,0.0,-0.0,1.933449637335974e-19,1.4436816650468394e-34,0.0002380952355451882,2.1526162239261406e-34,1.7220929102642903e-34,5.5352986647340126e-34,0.00046296295477077365,-7.709882172895574e-19,-1.1884483329655357e-18,-0.00046296295477077365,-0.0,3.854941086447787e-19,-0.0,0.0,-0.0,2.202823588753282e-19,2.4867608303364098e-20,2.1526162239261406e-34,6.613756704609841e-05,1.4560955569385885e-35,6.201407232306847e-34,0.0009259259095415473,-6.167905841714036e-19,-8.811294355013127e-19,-0.00026455026818439364,-0.00046296295477077365,3.083952920857018e-19,-0.0,-0.0,-0.0,1.762258793454443e-19,-0.0,1.7220929102642903e-34,1.4560955569385885e-35,0.00013227513409219682,4.9611256940099815e-34,0.0009920635493472219,-1.9825412040285595e-18,-2.8322016904986345e-18,-6.372579689102215e-33,-0.0019841270986944437,9.912706020142797e-19,-0.0,0.0,-0.0,5.664403070804539e-19,4.1574773997287275e-34,5.5352986647340126e-34,6.201407232306847e-34,4.9611256940099815e-34,0.0004960317746736109,3.0,6.0,8.0,6.0,0.046347472816705704,-0.016699735075235367,-0.010021022520959377,-0.007936508394777775,-0.010021022520959377,0.0017361111240461469,0.0014880952658131719,0.0011574074160307646,0.0014880952658131719,0.0006200397037900984,0.0006613756413571537,0.0008503401186317205,0.00038580247201025486,0.0006613756413571537,0.0006200397037900984,-0.016699735075235367,0.034060847014188766,0.0014880952658131719,0.0011574074160307646,0.0014880952658131719,-0.010416666977107525,-0.0014880952658131719,-0.0011574074160307646,-0.0014880952658131719,2.2716617144263096e-18,8.57412461279404e-19,1.1328806141609079e-18,1.3086972329735945e-18,8.92987896762873e-19,2.2716617144263096e-18,-0.010021022520959377,0.0014880952658131719,0.007418627385050058,0.0006613756413571537,0.0008503401186317205,1.004703829046503e-17,-0.0005952381179668009,-2.371692252312041e-20,-2.7195620166090262e-33,-0.0009300595265813172,-0.00026455026818439364,-0.0003401360590942204,4.383370686622628e-19,3.146890767220705e-19,8.113077403811711e-19,-0.007936508394777775,0.0011574074160307646,0.0006613756413571537,0.004196586087346077,0.0006613756413571537,7.483480667890702e-18,-2.0256506199163445e-33,-0.0003306878206785768,-2.0256506199163445e-33,1.0555820334838994e-18,-0.0001889644772745669,-1.3363516610181979e-33,-0.00038580247201025486,-0.0001889644772745669,-2.5527972044517607e-33,-0.010021022520959377,0.0014880952658131719,0.0008503401186317205,0.0006613756413571537,0.007418627385050058,1.004703829046503e-17,-2.7195620166090262e-33,1.1858461261560205e-20,-0.0005952381179668009,1.261762694824606e-18,-1.2922012870627628e-33,-0.0003401360590942204,-0.0,-0.00026455026818439364,-0.0009300595265813172,0.0017361111240461469,-0.010416666977107525,1.004703829046503e-17,7.483480667890702e-18,1.004703829046503e-17,0.0052083334885537624,-1.4098070347635544e-18,-7.83226095958338e-19,-1.4098070347635544e-18,-1.1358308572131548e-18,-4.405647177506564e-19,-5.664403070804539e-19,-6.42490155225237e-19,-4.405647177506564e-19,-1.1358308572131548e-18,0.0014880952658131719,-0.0014880952658131719,-0.0005952381179668009,-2.0256506199163445e-33,-2.7195620166090262e-33,-1.4098070347635544e-18,0.0005952381179668009,2.120059622183171e-34,3.8161071821764638e-34,3.0745004236234043e-34,1.1925335087794412e-34,1.5332573192331229e-34,1.7391112904404383e-34,1.1925335087794412e-34,3.0745004236234043e-34,0.0011574074160307646,-0.0011574074160307646,-2.371692252312041e-20,-0.0003306878206785768,1.1858461261560205e-20,-7.83226095958338e-19,2.120059622183171e-34,0.0003306878206785768,2.120059622183171e-34,1.8055593228630336e-34,6.776263578034403e-21,8.518096409285744e-35,-6.776263578034403e-21,-3.3881317890172014e-21,1.7080557398821712e-34,0.0014880952658131719,-0.0014880952658131719,-2.7195620166090262e-33,-2.0256506199163445e-33,-0.0005952381179668009,-1.4098070347635544e-18,3.8161071821764638e-34,2.120059622183171e-34,0.0005952381179668009,3.0745004236234043e-34,1.1925335087794412e-34,1.5332573192331229e-34,1.7391112904404383e-34,1.1925335087794412e-34,3.0745004236234043e-34,0.0006200397037900984,2.2716617144263096e-18,-0.0009300595265813172,1.0555820334838994e-18,1.261762694824606e-18,-1.1358308572131548e-18,3.0745004236234043e-34,1.8055593228630336e-34,3.0745004236234043e-34,0.00018601190822664648,-1.0229891915694465e-19,-9.206902788748504e-20,-9.178430973570487e-20,-6.293781405194439e-20,-1.622615454912948e-19,0.0006613756413571537,8.57412461279404e-19,-0.00026455026818439364,-0.0001889644772745669,-1.2922012870627628e-33,-4.405647177506564e-19,1.1925335087794412e-34,6.776263578034403e-21,1.1925335087794412e-34,-1.0229891915694465e-19,7.558579090982676e-05,9.854848725614805e-35,5.881285255304354e-21,-0.0,1.8531534131300232e-34,0.0008503401186317205,1.1328806141609079e-18,-0.0003401360590942204,-1.3363516610181979e-33,-0.0003401360590942204,-5.664403070804539e-19,1.5332573192331229e-34,8.518096409285744e-35,1.5332573192331229e-34,-9.206902788748504e-20,9.854848725614805e-35,0.0001360544265480712,1.1530486076175725e-34,7.906618941667375e-35,2.0384252129384096e-34,0.00038580247201025486,1.3086972329735945e-18,4.383370686622628e-19,-0.00038580247201025486,-0.0,-6.42490155225237e-19,1.7391112904404383e-34,-6.776263578034403e-21,1.7391112904404383e-34,-9.178430973570487e-20,5.881285255304354e-21,1.1530486076175725e-34,5.5114636779762805e-05,4.474891108779263e-22,2.201790688287639e-34,0.0006613756413571537,8.92987896762873e-19,3.146890767220705e-19,-0.0001889644772745669,-0.00026455026818439364,-4.405647177506564e-19,1.1925335087794412e-34,-3.3881317890172014e-21,1.1925335087794412e-34,-6.293781405194439e-20,-0.0,7.906618941667375e-35,4.474891108779263e-22,7.558579090982676e-05,1.5097993192720064e-34,0.0006200397037900984,2.2716617144263096e-18,8.113077403811711e-19,-2.5527972044517607e-33,-0.0009300595265813172,-1.1358308572131548e-18,3.0745004236234043e-34,1.7080557398821712e-34,3.0745004236234043e-34,-1.622615454912948e-19,1.8531534131300232e-34,2.0384252129384096e-34,2.201790688287639e-34,1.5097993192720064e-34,0.00018601190822664648,3.0,6.0,8.0,7.0,0.04076318070292473,-0.014473497867584229,-0.0086805559694767,-0.0068735829554498196,-0.007670776452869177,0.0014880952658131719,0.0012755101779475808,0.0009920635493472219,0.0011160714784637094,0.0005314626032486558,0.0005668934318237007,0.0006377550889737904,0.0003306878206785768,0.0004960317746736109,0.00041335978312417865,-0.014473497867584229,0.02935444936156273,0.0012755101779475808,0.0009920635493472219,0.0011160714784637094,-0.008928571827709675,-0.0012755101779475808,-0.0009920635493472219,-0.0011160714784637094,2.2790372703581387e-18,8.211132944587395e-19,1.0048263344952222e-18,1.0964198369280658e-18,7.461219273052946e-19,1.4652035271813838e-18,-0.0086805559694767,0.0012755101779475808,0.006395266391336918,0.0005668934318237007,0.0006377550889737904,8.499807708032556e-18,-0.0005102040595375001,-2.802773874252357e-20,4.8352283713638906e-20,-0.0007971939048729837,-0.00022675737272948027,-0.00025510202976875007,3.6774754313851877e-19,2.918283636811249e-19,6.019020052296968e-19,-0.0068735829554498196,0.0009920635493472219,0.0005668934318237007,0.0036173199769109488,0.0004960317746736109,6.941141353631535e-18,9.440671784674232e-20,-0.00028344671591185033,6.35566808594533e-20,8.802118854068383e-19,-0.0001619695540284738,9.486769009248164e-20,-0.0003306878206785768,-0.00014172335795592517,8.92597480438445e-20,-0.007670776452869177,0.0011160714784637094,0.0006377550889737904,0.0004960317746736109,0.004706396255642176,7.269317817036436e-18,1.0620756080875938e-19,-7.978866250825731e-21,-0.00037202381645329297,1.0254689368742127e-18,5.5258799157582e-20,-0.00021258502965793014,1.3552527156068805e-20,-0.0001653439103392884,-0.0004960317746736109,0.0014880952658131719,-0.008928571827709675,8.499807708032556e-18,6.941141353631535e-18,7.269317817036436e-18,0.004464285913854837,-1.0357765378848125e-18,-1.1508629002923513e-18,-7.552537427739386e-19,-9.735692470983746e-19,-3.776268713869693e-19,-4.248302432350375e-19,-5.507058842636234e-19,-3.304235253882952e-19,-7.159176340330739e-19,0.0012755101779475808,-0.0012755101779475808,-0.0005102040595375001,9.440671784674232e-20,1.0620756080875938e-19,-1.0357765378848125e-18,0.0005102040595375001,2.6234868888531533e-34,1.8328167868889466e-34,-1.3275945101094922e-19,-3.7762688431166636e-20,-4.24830236772689e-20,1.906066270951373e-34,1.2526205555606533e-34,2.685647121960132e-34,0.0009920635493472219,-0.0009920635493472219,-2.802773874252357e-20,-0.00028344671591185033,-7.978866250825731e-21,-1.1508629002923513e-18,2.6234868888531533e-34,0.00028344671591185033,1.4262627380718984e-21,2.407412430484045e-34,7.55151437334272e-21,5.324794954370491e-22,1.0714586524926699e-35,-1.6940658945086007e-21,1.715482319503873e-21,0.0011160714784637094,-0.0011160714784637094,4.8352283713638906e-20,6.35566808594533e-20,-0.00037202381645329297,-7.552537427739386e-19,1.8328167868889466e-34,1.4262627380718984e-21,0.00037202381645329297,2.046300565911438e-34,7.056269667990179e-22,-1.6940658945086007e-20,1.6639731607591496e-21,-2.6448554017931804e-20,-1.312415018854934e-20,0.0005314626032486558,2.2790372703581387e-18,-0.0007971939048729837,8.802118854068383e-19,1.0254689368742127e-18,-9.735692470983746e-19,-1.3275945101094922e-19,2.407412430484045e-34,2.046300565911438e-34,0.0001594387722434476,-7.515839301369529e-20,-9.864539163826864e-20,-7.867226918051762e-20,-4.720335892337116e-20,-1.022739486422032e-19,0.0005668934318237007,8.211132944587395e-19,-0.00022675737272948027,-0.0001619695540284738,5.5258799157582e-20,-3.776268713869693e-19,-3.7762688431166636e-20,7.55151437334272e-21,7.056269667990179e-22,-7.515839301369529e-20,6.478781870100647e-05,-2.1274405192680503e-20,6.785744651129652e-21,-2.541098841762901e-21,9.40835955732024e-22,0.0006377550889737904,1.0048263344952222e-18,-0.00025510202976875007,9.486769009248164e-20,-0.00021258502965793014,-4.248302432350375e-19,-4.24830236772689e-20,5.324794954370491e-22,-1.6940658945086007e-20,-9.864539163826864e-20,-2.1274405192680503e-20,8.50340147735551e-05,6.212260695953743e-22,-1.5639242116424404e-20,-3.127506241929922e-20,0.0003306878206785768,1.0964198369280658e-18,3.6774754313851877e-19,-0.0003306878206785768,1.3552527156068805e-20,-5.507058842636234e-19,1.906066270951373e-34,1.0714586524926699e-35,1.6639731607591496e-21,-7.867226918051762e-20,6.785744651129652e-21,6.212260695953743e-22,4.724111931864172e-05,-5.713477046984411e-21,1.1302377987609886e-21,0.0004960317746736109,7.461219273052946e-19,2.918283636811249e-19,-0.00014172335795592517,-0.0001653439103392884,-3.304235253882952e-19,1.2526205555606533e-34,-1.6940658945086007e-21,-2.6448554017931804e-20,-4.720335892337116e-20,-2.541098841762901e-21,-1.5639242116424404e-20,-5.713477046984411e-21,4.724111931864172e-05,-3.396161257072648e-20,0.00041335978312417865,1.4652035271813838e-18,6.019020052296968e-19,8.92597480438445e-20,-0.0004960317746736109,-7.159176340330739e-19,2.685647121960132e-34,1.715482319503873e-21,-1.312415018854934e-20,-1.022739486422032e-19,9.40835955732024e-22,-3.127506241929922e-20,1.1302377987609886e-21,-3.396161257072648e-20,8.26719551696442e-05,3.0,6.0,8.0,8.0,0.036389440298080444,-0.0127728171646595,-0.0076574902050197124,-0.006062610074877739,-0.006062610074877739,0.0013020833721384406,0.0011160714784637094,0.0008680555620230734,0.0008680555620230734,0.0004650297632906586,0.0004960317746736109,0.0004960317746736109,0.00028935185400769114,0.00038580247201025486,0.00028935185400769114,-0.0127728171646595,0.02579365111887455,0.0011160714784637094,0.0008680555620230734,0.0008680555620230734,-0.0078125,-0.0011160714784637094,-0.0008680555620230734,-0.0008680555620230734,1.7037462858197322e-18,6.333988716066081e-19,6.315984096058099e-19,8.950945189878923e-19,5.241222639301239e-19,9.6958130596768e-19,-0.0076574902050197124,0.0011160714784637094,0.0056206597946584225,0.0004960317746736109,0.0004960317746736109,7.365346868708942e-18,-0.00044642857392318547,-2.713821585364789e-20,-2.955855925067512e-20,-0.0006975446594879031,-0.00019841270113829523,-0.00019841270113829523,3.035987819062365e-19,1.8443746930732013e-19,3.007750457889219e-19,-0.006062610074877739,0.0008680555620230734,0.0004960317746736109,0.003178933635354042,0.00038580247201025486,5.9797477915596346e-18,-1.21396185243997e-33,-0.00024801588733680546,2.2166420932503776e-20,5.477088021091906e-19,-0.00014172335795592517,-3.3881317890172014e-20,-0.00028935185400769114,-0.00011022927355952561,1.503585101807105e-20,-0.006062610074877739,0.0008680555620230734,0.0004960317746736109,0.00038580247201025486,0.003178933635354042,5.9797477915596346e-18,-1.21396185243997e-33,2.499396700817689e-21,-0.00024801588733680546,5.477088021091906e-19,-4.7479414296939395e-20,-0.00014172335795592517,-6.776263578034403e-21,-0.00011022927355952561,-0.00028935185400769114,0.0013020833721384406,-0.0078125,7.365346868708942e-18,5.9797477915596346e-18,5.9797477915596346e-18,0.00390625,-7.930164505921508e-19,-8.811294355013127e-19,-8.811294355013127e-19,-8.518731429098661e-19,-3.304235253882952e-19,-3.304235253882952e-19,-4.81867655193019e-19,-2.5699607242985247e-19,-4.81867655193019e-19,0.0011160714784637094,-0.0011160714784637094,-0.00044642857392318547,-1.21396185243997e-33,-1.21396185243997e-33,-7.930164505921508e-19,0.00044642857392318547,1.7888002631691618e-34,1.7888002631691618e-34,1.7294064595895724e-34,6.708000986884357e-35,6.708000986884357e-35,9.782501869685242e-35,5.217334100910055e-35,9.782501869685242e-35,0.0008680555620230734,-0.0008680555620230734,-2.713821585364789e-20,-0.00024801588733680546,2.499396700817689e-21,-8.811294355013127e-19,1.7888002631691618e-34,0.00024801588733680546,-6.146936954549691e-22,1.925929944387236e-34,7.867356811257327e-21,-1.1358124074100341e-22,2.0328790734103208e-20,1.6940658945086007e-21,-9.94525753210719e-22,0.0008680555620230734,-0.0008680555620230734,-2.955855925067512e-20,2.2166420932503776e-20,-0.00024801588733680546,-8.811294355013127e-19,1.7888002631691618e-34,-6.146936954549691e-22,0.00024801588733680546,2.046300565911438e-34,-2.5027173887101117e-23,8.470329472543003e-21,-7.17142619453915e-22,-4.588390244877251e-21,-6.757585977127862e-22,0.0004650297632906586,1.7037462858197322e-18,-0.0006975446594879031,5.477088021091906e-19,5.477088021091906e-19,-8.518731429098661e-19,1.7294064595895724e-34,1.925929944387236e-34,2.046300565911438e-34,0.00013950893480796367,2.5062735686221382e-20,2.5062735686221382e-20,-6.883823553295292e-20,-3.6713723248047095e-20,-6.883823553295292e-20,0.0004960317746736109,6.333988716066081e-19,-0.00019841270113829523,-0.00014172335795592517,-4.7479414296939395e-20,-3.304235253882952e-19,6.708000986884357e-35,7.867356811257327e-21,-2.5027173887101117e-23,2.5062735686221382e-20,5.668934318237007e-05,1.6718512483001502e-20,1.1730336316113283e-20,1.6940658945086007e-21,-2.9198370586765843e-23,0.0004960317746736109,6.315984096058099e-19,-0.00019841270113829523,-3.3881317890172014e-20,-0.00014172335795592517,-3.304235253882952e-19,6.708000986884357e-35,-1.1358124074100341e-22,8.470329472543003e-21,2.5062735686221382e-20,1.6718512483001502e-20,5.668934318237007e-05,-1.325114538420579e-22,-1.9423095414120483e-21,1.2433804151682049e-20,0.00028935185400769114,8.950945189878923e-19,3.035987819062365e-19,-0.00028935185400769114,-6.776263578034403e-21,-4.81867655193019e-19,9.782501869685242e-35,2.0328790734103208e-20,-7.17142619453915e-22,-6.883823553295292e-20,1.1730336316113283e-20,-1.325114538420579e-22,4.13359775848221e-05,2.605025807115507e-21,-7.215751089734942e-23,0.00038580247201025486,5.241222639301239e-19,1.8443746930732013e-19,-0.00011022927355952561,-0.00011022927355952561,-2.5699607242985247e-19,5.217334100910055e-35,1.6940658945086007e-21,-4.588390244877251e-21,-3.6713723248047095e-20,1.6940658945086007e-21,-1.9423095414120483e-21,2.605025807115507e-21,3.149408075842075e-05,-3.834855364029152e-21,0.00028935185400769114,9.6958130596768e-19,3.007750457889219e-19,1.503585101807105e-20,-0.00028935185400769114,-4.81867655193019e-19,9.782501869685242e-35,-9.94525753210719e-22,-6.757585977127862e-22,-6.883823553295292e-20,-2.9198370586765843e-23,1.2433804151682049e-20,-7.215751089734942e-23,-3.834855364029152e-21,4.13359775848221e-05,3.0,7.0,3.0,3.0,0.14925044775009155,-0.065476194024086,-0.035052910447120667,-0.065476194024086,-0.065476194024086,0.007936508394777775,0.0059523810632526875,0.011904762126505375,0.011904762126505375,0.002204585587605834,0.0059523810632526875,0.0059523810632526875,0.007936508394777775,0.011904762126505375,0.007936508394777775,-0.065476194024086,0.144841268658638,0.0059523810632526875,0.011904762126505375,0.011904762126505375,-0.0476190485060215,-0.0059523810632526875,-0.011904762126505375,-0.011904762126505375,1.5612511283791264e-17,-5.421010862427522e-18,-6.288372600415926e-18,-6.245004513516506e-17,-3.8163916471489756e-17,-5.204170427930421e-17,-0.035052910447120667,0.0059523810632526875,0.023148147389292717,0.0059523810632526875,0.0059523810632526875,1.450061675875871e-17,-0.0019841270986944437,7.806255641895632e-18,8.673617379884035e-18,-0.0026455025654286146,-0.0019841270986944437,-0.0019841270986944437,-2.0816681711721685e-17,-7.806255641895632e-18,-1.734723475976807e-17,-0.065476194024086,0.011904762126505375,0.0059523810632526875,0.144841268658638,0.011904762126505375,-7.775417686915165e-17,-1.8570325520184904e-17,-0.011904762126505375,6.5052130349130266e-18,2.6020852139652106e-18,-0.0059523810632526875,-9.720775095816965e-18,-0.0476190485060215,-0.011904762126505375,-1.6479873021779667e-17,-0.065476194024086,0.011904762126505375,0.0059523810632526875,0.011904762126505375,0.144841268658638,-7.705059027500385e-17,-2.0454667770999078e-17,4.05179492449044e-18,-0.011904762126505375,-8.673617379884035e-19,-7.806255641895632e-18,-0.0059523810632526875,-3.838075690598686e-17,-0.011904762126505375,-0.0476190485060215,0.007936508394777775,-0.0476190485060215,1.450061675875871e-17,-7.775417686915165e-17,-7.705059027500385e-17,0.02380952425301075,4.9873299934333204e-18,2.3920620712045268e-17,2.3464233735236485e-17,-4.553649124439119e-18,3.469446951953614e-18,3.577867169202165e-18,1.214306433183765e-17,1.431146867680866e-17,1.1926223897340549e-17,0.0059523810632526875,-0.0059523810632526875,-0.0019841270986944437,-1.8570325520184904e-17,-2.0454667770999078e-17,4.9873299934333204e-18,0.0019841270986944437,2.4897104530031973e-18,2.3852447794681098e-18,-7.589415207398531e-19,1.0842021724855044e-19,3.2526065174565133e-19,6.288372600415926e-18,2.8189256484623115e-18,6.7220534694101275e-18,0.011904762126505375,-0.011904762126505375,7.806255641895632e-18,-0.011904762126505375,4.05179492449044e-18,2.3920620712045268e-17,2.4897104530031973e-18,0.011904762126505375,-0.0,-1.3010426069826053e-18,1.0842021724855044e-19,-7.589415207398531e-19,1.2793585635328952e-17,1.734723475976807e-18,-1.734723475976807e-18,0.011904762126505375,-0.011904762126505375,8.673617379884035e-18,6.5052130349130266e-18,-0.011904762126505375,2.3464233735236485e-17,2.3852447794681098e-18,-0.0,0.011904762126505375,-1.5178830414797062e-18,-1.1926223897340549e-18,2.168404344971009e-19,-1.0842021724855044e-18,-2.168404344971009e-19,9.107298248878237e-18,0.002204585587605834,1.5612511283791264e-17,-0.0026455025654286146,2.6020852139652106e-18,-8.673617379884035e-19,-4.553649124439119e-18,-7.589415207398531e-19,-1.3010426069826053e-18,-1.5178830414797062e-18,0.00044091709423810244,-2.168404344971009e-19,-2.168404344971009e-19,6.505213034913027e-19,0.0,-8.673617379884035e-19,0.0059523810632526875,-5.421010862427522e-18,-0.0019841270986944437,-0.0059523810632526875,-7.806255641895632e-18,3.469446951953614e-18,1.0842021724855044e-19,1.0842021724855044e-19,-1.1926223897340549e-18,-2.168404344971009e-19,0.0019841270986944437,1.848288162099372e-19,4.805933421003504e-18,1.5444968539055639e-18,3.463260054562024e-18,0.0059523810632526875,-6.288372600415926e-18,-0.0019841270986944437,-9.720775095816965e-18,-0.0059523810632526875,3.577867169202165e-18,3.2526065174565133e-19,-7.589415207398531e-19,2.168404344971009e-19,-2.168404344971009e-19,1.848288162099372e-19,0.0019841270986944437,3.6310941736684206e-18,2.551501878736674e-18,8.07869998434916e-18,0.007936508394777775,-6.245004513516506e-17,-2.0816681711721685e-17,-0.0476190485060215,-3.838075690598686e-17,1.214306433183765e-17,6.288372600415926e-18,1.2793585635328952e-17,-1.0842021724855044e-18,6.505213034913027e-19,4.805933421003504e-18,3.6310941736684206e-18,0.02380952425301075,2.1316859630159025e-17,3.4139083912655788e-18,0.011904762126505375,-3.8163916471489756e-17,-7.806255641895632e-18,-0.011904762126505375,-0.011904762126505375,1.431146867680866e-17,2.8189256484623115e-18,1.734723475976807e-18,-2.168404344971009e-19,0.0,1.5444968539055639e-18,2.551501878736674e-18,2.1316859630159025e-17,0.011904762126505375,4.781545642078906e-20,0.007936508394777775,-5.204170427930421e-17,-1.734723475976807e-17,-1.6479873021779667e-17,-0.0476190485060215,1.1926223897340549e-17,6.7220534694101275e-18,-1.734723475976807e-18,9.107298248878237e-18,-8.673617379884035e-19,3.463260054562024e-18,8.07869998434916e-18,3.4139083912655788e-18,4.781545642078906e-20,0.02380952425301075,3.0,7.0,3.0,4.0,0.12136243283748627,-0.05089285597205162,-0.02718253992497921,-0.05089285597205162,-0.0416666679084301,0.0059523810632526875,0.004464285913854837,0.008928571827709675,0.0071428571827709675,0.0016534391324967146,0.004464285913854837,0.0035714285913854837,0.0059523810632526875,0.0071428571827709675,0.003968254197388887,-0.05089285597205162,0.11041666567325592,0.004464285913854837,0.008928571827709675,0.0071428571827709675,-0.0357142873108387,-0.004464285913854837,-0.008928571827709675,-0.0071428571827709675,-6.830473686658678e-18,2.168404344971009e-19,-8.239936510889834e-18,2.0816681711721685e-17,-9.107298248878237e-18,-3.729655473350135e-17,-0.02718253992497921,0.004464285913854837,0.01765873096883297,0.004464285913854837,0.0035714285913854837,-2.6432996534217878e-17,-0.0014880952658131719,-4.336808689942018e-18,-6.5052130349130266e-18,-0.0019841270986944437,-0.0014880952658131719,-0.0011904762359336019,5.204170427930421e-18,-3.903127820947816e-18,-1.0408340855860843e-17,-0.05089285597205162,0.008928571827709675,0.004464285913854837,0.11041666567325592,0.0071428571827709675,1.073393072549029e-17,3.957280854109825e-18,-0.008928571827709675,-4.553649124439119e-18,2.168404344971009e-19,-0.004464285913854837,-1.2072303993517413e-17,-0.0357142873108387,-0.0071428571827709675,-5.421010862427522e-17,-0.0416666679084301,0.0071428571827709675,0.0035714285913854837,0.0071428571827709675,0.0555555559694767,-5.854674526064983e-17,-4.810433697126099e-18,-1.3795751343383898e-17,-0.004761904943734407,-4.336808689942018e-19,-5.9631119486702744e-18,-0.0023809524718672037,-8.977193988179977e-17,-0.004761904943734407,-0.011904762126505375,0.0059523810632526875,-0.0357142873108387,-2.6432996534217878e-17,1.073393072549029e-17,-5.854674526064983e-17,0.01785714365541935,9.974659986866641e-18,-2.881527297605784e-18,1.2117358867121952e-17,2.3852447794681098e-18,-1.0842021724855044e-19,1.8431436932253575e-18,-6.938893903907228e-18,4.9873299934333204e-18,1.1167282376600696e-17,0.004464285913854837,-0.004464285913854837,-0.0014880952658131719,3.957280854109825e-18,-4.810433697126099e-18,9.974659986866641e-18,0.0014880952658131719,-2.7153428222100624e-20,9.409533087502556e-19,3.2526065174565133e-19,1.0842021724855044e-19,3.7947076036992655e-19,-1.951563910473908e-18,-0.0,8.131516293641283e-19,0.008928571827709675,-0.008928571827709675,-4.336808689942018e-18,-0.008928571827709675,-1.3795751343383898e-17,-2.881527297605784e-18,-2.7153428222100624e-20,0.008928571827709675,4.336808689942018e-19,6.505213034913027e-19,-1.3010426069826053e-18,8.673617379884035e-19,-4.0115480381963664e-18,-8.673617379884035e-19,3.577867169202165e-18,0.0071428571827709675,-0.0071428571827709675,-6.5052130349130266e-18,-4.553649124439119e-18,-0.004761904943734407,1.2117358867121952e-17,9.409533087502556e-19,4.336808689942018e-19,0.004761904943734407,7.589415207398531e-19,2.710505431213761e-19,1.1384122811097797e-18,1.5178830414797062e-18,2.168404344971009e-19,4.824699667560495e-18,0.0016534391324967146,-6.830473686658678e-18,-0.0019841270986944437,2.168404344971009e-19,-4.336808689942018e-19,2.3852447794681098e-18,3.2526065174565133e-19,6.505213034913027e-19,7.589415207398531e-19,0.0003306878206785768,1.0842021724855044e-19,3.2526065174565133e-19,-8.673617379884035e-19,0.0,2.168404344971009e-19,0.004464285913854837,2.168404344971009e-19,-0.0014880952658131719,-0.004464285913854837,-5.9631119486702744e-18,-1.0842021724855044e-19,1.0842021724855044e-19,-1.3010426069826053e-18,2.710505431213761e-19,1.0842021724855044e-19,0.0014880952658131719,4.0460945126966076e-19,-1.0232235551014375e-18,7.420852342172475e-19,1.1325579103244356e-18,0.0035714285913854837,-8.239936510889834e-18,-0.0011904762359336019,-1.2072303993517413e-17,-0.0023809524718672037,1.8431436932253575e-18,3.7947076036992655e-19,8.673617379884035e-19,1.1384122811097797e-18,3.2526065174565133e-19,4.0460945126966076e-19,0.0007936508045531809,3.399029273202128e-18,1.8634240938936264e-18,4.75555977606025e-18,0.0059523810632526875,2.0816681711721685e-17,5.204170427930421e-18,-0.0357142873108387,-8.977193988179977e-17,-6.938893903907228e-18,-1.951563910473908e-18,-4.0115480381963664e-18,1.5178830414797062e-18,-8.673617379884035e-19,-1.0232235551014375e-18,3.399029273202128e-18,0.01785714365541935,1.6660898190114447e-17,1.8864560281514916e-17,0.0071428571827709675,-9.107298248878237e-18,-3.903127820947816e-18,-0.0071428571827709675,-0.004761904943734407,4.9873299934333204e-18,-0.0,-8.673617379884035e-19,2.168404344971009e-19,0.0,7.420852342172475e-19,1.8634240938936264e-18,1.6660898190114447e-17,0.004761904943734407,5.26896017658925e-18,0.003968254197388887,-3.729655473350135e-17,-1.0408340855860843e-17,-5.421010862427522e-17,-0.011904762126505375,1.1167282376600696e-17,8.131516293641283e-19,3.577867169202165e-18,4.824699667560495e-18,2.168404344971009e-19,1.1325579103244356e-18,4.75555977606025e-18,1.8864560281514916e-17,5.26896017658925e-18,0.003968254197388887,3.0,7.0,3.0,5.0,0.10241874307394028,-0.0416666679084301,-0.02222222276031971,-0.0416666679084301,-0.028911564499139786,0.004761904943734407,0.0035714285913854837,0.0071428571827709675,0.004761904943734407,0.0013227512827143073,0.0035714285913854837,0.0023809524718672037,0.004761904943734407,0.004761904943734407,0.0022675737272948027,-0.0416666679084301,0.0892857164144516,0.0035714285913854837,0.0071428571827709675,0.004761904943734407,-0.02857142873108387,-0.0035714285913854837,-0.0071428571827709675,-0.004761904943734407,-2.290936470264867e-18,-2.3790494034752407e-18,-1.5860329011843016e-18,-1.5860329632228476e-17,-3.1720658023686032e-18,-4.5315224566436314e-18,-0.02222222276031971,0.0035714285913854837,0.014285714365541935,0.0035714285913854837,0.0023809524718672037,-9.648367013716523e-18,-0.0011904762359336019,-7.930164505921508e-19,-5.2867765096103e-19,-0.0015873016091063619,-0.0011904762359336019,-0.0007936508045531809,-3.1720658023686032e-18,-5.2867765096103e-19,-2.0333627812127003e-33,-0.0416666679084301,0.0071428571827709675,0.0035714285913854837,0.0892857164144516,0.004761904943734407,-2.2600968195641445e-17,-7.930164505921508e-19,-0.0071428571827709675,-3.5217004894156947e-34,1.0842021724855044e-19,-0.0035714285913854837,4.0657581468206416e-20,-0.02857142873108387,-0.004761904943734407,-4.5315224566436314e-18,-0.028911564499139786,0.004761904943734407,0.0023809524718672037,0.004761904943734407,0.02806122414767742,-1.3028127734934688e-17,-5.2867765096103e-19,-3.5217004894156947e-34,-0.0023809524718672037,-6.2152982017138525e-21,-4.880200694928236e-19,-0.0011904762359336019,-9.063044913287263e-18,-0.0023809524718672037,-0.004535147454589605,0.004761904943734407,-0.02857142873108387,-9.648367013716523e-18,-2.2600968195641445e-17,-1.3028127734934688e-17,0.014285714365541935,-0.0,-0.0,-0.0,1.1454682351324336e-18,1.1895247017376204e-18,7.930164505921508e-19,7.930164816114238e-18,1.5860329011843016e-18,2.2657612283218157e-18,0.0035714285913854837,-0.0035714285913854837,-0.0011904762359336019,-7.930164505921508e-19,-5.2867765096103e-19,-0.0,0.0011904762359336019,7.930164505921508e-19,5.2867765096103e-19,-0.0,-0.0,-0.0,-1.1922423472087315e-35,-1.241763418821745e-35,-0.0,0.0071428571827709675,-0.0071428571827709675,-7.930164505921508e-19,-0.0071428571827709675,-3.5217004894156947e-34,-0.0,7.930164505921508e-19,0.0071428571827709675,3.5217004894156947e-34,-2.407412430484045e-35,-2.407412430484045e-35,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.004761904943734407,-5.2867765096103e-19,-3.5217004894156947e-34,-0.0023809524718672037,-0.0,5.2867765096103e-19,3.5217004894156947e-34,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013227512827143073,-2.290936470264867e-18,-0.0015873016091063619,1.0842021724855044e-19,-6.2152982017138525e-21,1.1454682351324336e-18,-0.0,-2.407412430484045e-35,-0.0,0.00026455026818439364,-2.710505431213761e-20,0.0,6.538755743893612e-34,1.1920499948921694e-34,1.8167502816304762e-34,0.0035714285913854837,-2.3790494034752407e-18,-0.0011904762359336019,-0.0035714285913854837,-4.880200694928236e-19,1.1895247017376204e-18,-0.0,-2.407412430484045e-35,-0.0,-2.710505431213761e-20,0.0011904762359336019,-1.3552527156068805e-20,3.1720658023686032e-18,5.2867765096103e-19,6.9176258383582894e-34,0.0023809524718672037,-1.5860329011843016e-18,-0.0007936508045531809,4.0657581468206416e-20,-0.0011904762359336019,7.930164505921508e-19,-0.0,-0.0,-0.0,0.0,-1.3552527156068805e-20,0.00039682540227659047,4.3501560766853665e-34,8.541103496960725e-35,1.257750141992928e-34,0.004761904943734407,-1.5860329632228476e-17,-3.1720658023686032e-18,-0.02857142873108387,-9.063044913287263e-18,7.930164816114238e-18,-1.1922423472087315e-35,-0.0,-0.0,6.538755743893612e-34,3.1720658023686032e-18,4.3501560766853665e-34,0.014285714365541935,2.2891053525585126e-33,2.2657612283218157e-18,0.004761904943734407,-3.1720658023686032e-18,-5.2867765096103e-19,-0.004761904943734407,-0.0023809524718672037,1.5860329011843016e-18,-1.241763418821745e-35,-0.0,-0.0,1.1920499948921694e-34,5.2867765096103e-19,8.541103496960725e-35,2.2891053525585126e-33,0.0023809524718672037,2.515500283985856e-34,0.0022675737272948027,-4.5315224566436314e-18,-2.0333627812127003e-33,-4.5315224566436314e-18,-0.004535147454589605,2.2657612283218157e-18,-0.0,-0.0,-0.0,1.8167502816304762e-34,6.9176258383582894e-34,1.257750141992928e-34,2.2657612283218157e-18,2.515500283985856e-34,0.0011337868636474013,3.0,7.0,3.0,6.0,0.08865582942962646,-0.03528911620378494,-0.018801964819431305,-0.03528911620378494,-0.021258503198623657,0.003968254197388887,0.0029761905316263437,0.0059523810632526875,0.003401360474526882,0.001102292793802917,0.0029761905316263437,0.001700680237263441,0.003968254197388887,0.003401360474526882,0.0014172336086630821,-0.03528911620378494,0.07497165352106094,0.0029761905316263437,0.0059523810632526875,0.003401360474526882,-0.02380952425301075,-0.0029761905316263437,-0.0059523810632526875,-0.003401360474526882,3.73358970977956e-18,3.972230902910802e-18,2.0082632123565084e-18,2.643388161747331e-17,4.5315224566436314e-18,5.179457579949787e-18,-0.018801964819431305,0.0029761905316263437,0.01199924387037754,0.0029761905316263437,0.001700680237263441,1.8954770944758725e-17,-0.0009920635493472219,-6.413416362849782e-33,-2.439454888092385e-19,-0.0013227512827143073,-0.0009920635493472219,-0.0005668934318237007,-1.8392630968898102e-32,4.5719250245824916e-34,-3.8872776445440163e-19,-0.03528911620378494,0.0059523810632526875,0.0029761905316263437,0.07497165352106094,0.003401360474526882,4.2073929743856463e-17,-7.468036833628921e-33,-0.0059523810632526875,8.578303199668883e-21,-0.0,-0.0029761905316263437,-2.3297076621198837e-34,-0.02380952425301075,-0.003401360474526882,5.205773090367243e-18,-0.021258503198623657,0.003401360474526882,0.001700680237263441,0.003401360474526882,0.016298186033964157,2.23280879290051e-17,-3.670086640563558e-20,-7.554791255455483e-33,-0.0013605442363768816,-5.2733830337763883e-20,2.710505431213761e-20,-0.0006802721181884408,1.666368578877875e-17,-0.0013605442363768816,-0.002125850412994623,0.003968254197388887,-0.02380952425301075,1.8954770944758725e-17,4.2073929743856463e-17,2.23280879290051e-17,0.011904762126505375,-2.6853467328829607e-18,-4.028020099324441e-18,-3.6827611154994015e-18,-1.909113621823146e-18,-1.9825412040285595e-18,-1.1328806141609079e-18,-1.3216940808736655e-17,-2.2657612283218157e-18,-2.5961847278607168e-18,0.0029761905316263437,-0.0029761905316263437,-0.0009920635493472219,-7.468036833628921e-33,-3.670086640563558e-20,-2.6853467328829607e-18,0.0009920635493472219,9.085969809356448e-34,9.967963599532093e-22,2.710505431213761e-20,-0.0,6.776263578034403e-21,2.9888607928847043e-33,2.3268722411760057e-34,2.8332824197403935e-21,0.0059523810632526875,-0.0059523810632526875,-6.413416362849782e-33,-0.0059523810632526875,-7.554791255455483e-33,-4.028020099324441e-18,9.085969809356448e-34,0.0059523810632526875,1.2460758070914579e-33,6.4595563528294796e-34,6.708000757295616e-34,3.8331433554799923e-34,4.4720007497584006e-33,7.666286710959985e-34,8.7842865310576e-34,0.003401360474526882,-0.003401360474526882,-2.439454888092385e-19,8.578303199668883e-21,-0.0013605442363768816,-3.6827611154994015e-18,9.967963599532093e-22,1.2460758070914579e-33,0.0013605442363768816,1.3290617459548152e-21,-2.859434332573497e-21,9.486769009248164e-20,4.284786009316674e-33,-3.657539881912749e-34,1.76482537979883e-21,0.001102292793802917,3.73358970977956e-18,-0.0013227512827143073,-0.0,-5.2733830337763883e-20,-1.909113621823146e-18,2.710505431213761e-20,6.4595563528294796e-34,1.3290617459548152e-21,0.00022045854711905122,-0.0,1.3552527156068805e-20,2.1295780958534584e-33,-7.848030477991906e-36,4.229375683673981e-21,0.0029761905316263437,3.972230902910802e-18,-0.0009920635493472219,-0.0029761905316263437,2.710505431213761e-20,-1.9825412040285595e-18,-0.0,6.708000757295616e-34,-2.859434332573497e-21,-0.0,0.0009920635493472219,-0.0,2.2377221067611703e-33,-0.0,-4.4678662329985104e-21,0.001700680237263441,2.0082632123565084e-18,-0.0005668934318237007,-2.3297076621198837e-34,-0.0006802721181884408,-1.1328806141609079e-18,6.776263578034403e-21,3.8331433554799923e-34,9.486769009248164e-20,1.3552527156068805e-20,-0.0,0.00022675737272948027,1.5342445508168213e-34,-1.8287699409563745e-34,1.4514856156015927e-19,0.003968254197388887,2.643388161747331e-17,-1.8392630968898102e-32,-0.02380952425301075,1.666368578877875e-17,-1.3216940808736655e-17,2.9888607928847043e-33,4.4720007497584006e-33,4.284786009316674e-33,2.1295780958534584e-33,2.2377221067611703e-33,1.5342445508168213e-34,0.011904762126505375,-3.6827611154994015e-18,-2.5961847278607168e-18,0.003401360474526882,4.5315224566436314e-18,4.5719250245824916e-34,-0.003401360474526882,-0.0013605442363768816,-2.2657612283218157e-18,2.3268722411760057e-34,7.666286710959985e-34,-3.657539881912749e-34,-7.848030477991906e-36,-0.0,-1.8287699409563745e-34,-3.6827611154994015e-18,0.0013605442363768816,2.7049362495731564e-34,0.0014172336086630821,5.179457579949787e-18,-3.8872776445440163e-19,5.205773090367243e-18,-0.002125850412994623,-2.5961847278607168e-18,2.8332824197403935e-21,8.7842865310576e-34,1.76482537979883e-21,4.229375683673981e-21,-4.4678662329985104e-21,1.4514856156015927e-19,-2.5961847278607168e-18,2.7049362495731564e-34,0.00042517005931586027,3.0,7.0,3.0,7.0,0.07818405330181122,-0.030612245202064514,-0.016298186033964157,-0.030612245202064514,-0.016298186033964157,0.003401360474526882,0.0025510203558951616,0.005102040711790323,0.0025510203558951616,0.0009448223863728344,0.0025510203558951616,0.0012755101779475808,0.003401360474526882,0.0025510203558951616,0.0009448223863728344,-0.030612245202064514,0.06462585180997849,0.0025510203558951616,0.005102040711790323,0.0025510203558951616,-0.020408162847161293,-0.0025510203558951616,-0.005102040711790323,-0.0025510203558951616,-1.6523607921921724e-18,-1.705455654555573e-18,-6.870301605972494e-19,-1.1328806761994538e-17,-1.6679384642829242e-18,-1.7126523326799375e-18,-0.016298186033964157,0.0025510203558951616,0.010345805436372757,0.0025510203558951616,0.0012755101779475808,-7.033300854398518e-18,-0.0008503401186317205,-0.0,8.131516293641283e-20,-0.0011337868636474013,-0.0008503401186317205,-0.00042517005931586027,-3.126043187677573e-33,1.3552527156068805e-20,1.501203047825151e-19,-0.030612245202064514,0.005102040711790323,0.0025510203558951616,0.06462585180997849,0.0025510203558951616,-1.6426769680814988e-17,-2.447456382256608e-21,-0.005102040711790323,2.7695234754497125e-20,-0.0,-0.0025510203558951616,4.232896775052943e-20,-0.020408162847161293,-0.0025510203558951616,-1.5786061634520708e-18,-0.016298186033964157,0.0025510203558951616,0.0012755101779475808,0.0025510203558951616,0.010345805436372757,-7.033300854398518e-18,3.846717812559759e-21,-0.0,-0.0008503401186317205,2.651325182029567e-20,-0.0,-0.00042517005931586027,-4.909149431428177e-18,-0.0008503401186317205,-0.0011337868636474013,0.003401360474526882,-0.020408162847161293,-7.033300854398518e-18,-1.6426769680814988e-17,-7.033300854398518e-18,0.010204081423580647,-0.0,-0.0,-1.99583874008536e-35,8.181915891376256e-19,8.49660486470075e-19,4.248302432350375e-19,5.664403380997269e-18,8.49660486470075e-19,8.181915891376256e-19,0.0025510203558951616,-0.0025510203558951616,-0.0008503401186317205,-2.447456382256608e-21,3.846717812559759e-21,-0.0,0.0008503401186317205,-0.0,3.994415192237007e-21,-0.0,-0.0,-1.3552527156068805e-20,-5.100076387021091e-36,8.15818794085536e-22,4.923173826349616e-21,0.005102040711790323,-0.005102040711790323,-0.0,-0.005102040711790323,-0.0,-0.0,-0.0,0.005102040711790323,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025510203558951616,-0.0025510203558951616,8.131516293641283e-20,2.7695234754497125e-20,-0.0008503401186317205,-1.99583874008536e-35,3.994415192237007e-21,-0.0,0.0008503401186317205,5.3258867883504146e-21,2.0449023536401065e-21,-4.0657581468206416e-20,5.851841041105593e-35,-1.1276647137173554e-20,2.0499905645389446e-20,0.0009448223863728344,-1.6523607921921724e-18,-0.0011337868636474013,-0.0,2.651325182029567e-20,8.181915891376256e-19,-0.0,-0.0,5.3258867883504146e-21,0.0001889644772745669,-0.0,-2.710505431213761e-20,4.473874561222008e-34,1.0877583584559827e-21,4.115824545865121e-21,0.0025510203558951616,-1.705455654555573e-18,-0.0008503401186317205,-0.0025510203558951616,-0.0,8.49660486470075e-19,-0.0,-0.0,2.0449023536401065e-21,-0.0,0.0008503401186317205,-6.776263578034403e-21,4.702161992636428e-34,5.614014838725053e-22,2.7265365388362725e-21,0.0012755101779475808,-6.870301605972494e-19,-0.00042517005931586027,4.232896775052943e-20,-0.00042517005931586027,4.248302432350375e-19,-1.3552527156068805e-20,-0.0,-4.0657581468206416e-20,-2.710505431213761e-20,-6.776263578034403e-21,0.00014172335795592517,-6.665938320742518e-36,-7.333392338808741e-21,-6.150762523518874e-20,0.003401360474526882,-1.1328806761994538e-17,-3.126043187677573e-33,-0.020408162847161293,-4.909149431428177e-18,5.664403380997269e-18,-5.100076387021091e-36,-0.0,5.851841041105593e-35,4.473874561222008e-34,4.702161992636428e-34,-6.665938320742518e-36,0.010204081423580647,3.851859888774472e-34,8.181915891376256e-19,0.0025510203558951616,-1.6679384642829242e-18,1.3552527156068805e-20,-0.0025510203558951616,-0.0008503401186317205,8.49660486470075e-19,8.15818794085536e-22,-0.0,-1.1276647137173554e-20,1.0877583584559827e-21,5.614014838725053e-22,-7.333392338808741e-21,3.851859888774472e-34,0.0008503401186317205,-2.1985543028167425e-20,0.0009448223863728344,-1.7126523326799375e-18,1.501203047825151e-19,-1.5786061634520708e-18,-0.0011337868636474013,8.181915891376256e-19,4.923173826349616e-21,-0.0,2.0499905645389446e-20,4.115824545865121e-21,2.7265365388362725e-21,-6.150762523518874e-20,8.181915891376256e-19,-2.1985543028167425e-20,0.0001889644772745669,3.0,7.0,3.0,8.0,0.0699404776096344,-0.02703372947871685,-0.014384920708835125,-0.02703372947871685,-0.012896825559437275,0.0029761905316263437,0.0022321429569274187,0.004464285913854837,0.0019841270986944437,0.0008267195662483573,0.0022321429569274187,0.0009920635493472219,0.0029761905316263437,0.0019841270986944437,0.0006613756413571537,-0.02703372947871685,0.056795634329319,0.0022321429569274187,0.004464285913854837,0.0019841270986944437,-0.01785714365541935,-0.0022321429569274187,-0.004464285913854837,-0.0019841270986944437,2.938276643915444e-18,2.9750175251832118e-18,1.4368905823797656e-18,1.9825411626695288e-17,2.6433882031063616e-18,2.162906282234522e-18,-0.014384920708835125,0.0022321429569274187,0.009093915112316608,0.0022321429569274187,0.0009920635493472219,1.390138892505182e-17,-0.0007440476329065859,-7.055379541772757e-33,8.131516293641283e-20,-0.0009920635493472219,-0.0007440476329065859,-0.0003306878206785768,-1.6996331759217356e-32,3.0690199108014358e-34,1.247855333035146e-19,-0.02703372947871685,0.004464285913854837,0.0022321429569274187,0.056795634329319,0.0019841270986944437,3.344358052745385e-17,-4.346150120507459e-33,-0.004464285913854837,1.033667289522907e-21,-0.0,-0.0022321429569274187,1.0164395367051604e-20,-0.01785714365541935,-0.0019841270986944437,2.2040293595924427e-18,-0.012896825559437275,0.0019841270986944437,0.0009920635493472219,0.0019841270986944437,0.00699168536812067,1.3315842658676557e-17,1.3015258000137842e-20,-6.75819693746962e-33,-0.0005668934318237007,-4.087351438217397e-21,1.3552527156068805e-20,-0.00028344671591185033,1.0011607663287547e-17,-0.0005668934318237007,-0.0006613756413571537,0.0029761905316263437,-0.01785714365541935,1.390138892505182e-17,3.344358052745385e-17,1.3315842658676557e-17,0.008928571827709675,-1.5105074855478771e-18,-4.5315224566436314e-18,-2.3017258005847025e-18,-1.4318352680661478e-18,-1.4869058513226313e-18,-6.608470507765904e-19,-9.912705813347644e-18,-1.3216941015531808e-18,-1.1014117685272467e-18,0.0022321429569274187,-0.0022321429569274187,-0.0007440476329065859,-4.346150120507459e-33,1.3015258000137842e-20,-1.5105074855478771e-18,0.0007440476329065859,7.666286710959985e-34,1.437629302326596e-21,-2.710505431213761e-20,-0.0,-6.776263578034403e-21,1.6691661623241466e-33,6.891121540195242e-35,7.760626783301958e-22,0.004464285913854837,-0.004464285913854837,-7.055379541772757e-33,-0.004464285913854837,-6.75819693746962e-33,-4.5315224566436314e-18,7.666286710959985e-34,0.004464285913854837,1.1681960921071158e-33,7.267001126521905e-34,7.546501081546309e-34,3.354000378647808e-34,5.031000843478201e-33,6.708000757295616e-34,5.590000937198001e-34,0.0019841270986944437,-0.0019841270986944437,8.131516293641283e-20,1.033667289522907e-21,-0.0005668934318237007,-2.3017258005847025e-18,1.437629302326596e-21,1.1681960921071158e-33,0.0005668934318237007,1.916839002452664e-21,-3.445557631743023e-22,-2.710505431213761e-20,2.4749998659074723e-33,-1.7537257617102806e-34,1.0739738257173448e-20,0.0008267195662483573,2.938276643915444e-18,-0.0009920635493472219,-0.0,-4.087351438217397e-21,-1.4318352680661478e-18,-2.710505431213761e-20,7.267001126521905e-34,1.916839002452664e-21,0.0001653439103392884,-1.3552527156068805e-20,-6.776263578034403e-21,1.5792110897854865e-33,5.7024433429416986e-36,4.3583306370109404e-21,0.0022321429569274187,2.9750175251832118e-18,-0.0007440476329065859,-0.0022321429569274187,1.3552527156068805e-20,-1.4869058513226313e-18,-0.0,7.546501081546309e-34,-3.445557631743023e-22,-1.3552527156068805e-20,0.0007440476329065859,-3.3881317890172014e-21,1.661194841257633e-33,-0.0,-4.0198173211786903e-22,0.0009920635493472219,1.4368905823797656e-18,-0.0003306878206785768,1.0164395367051604e-20,-0.00028344671591185033,-6.608470507765904e-19,-6.776263578034403e-21,3.354000378647808e-34,-2.710505431213761e-20,-6.776263578034403e-21,-3.3881317890172014e-21,9.448223863728344e-05,1.1988364543872526e-33,-8.768628808551403e-35,-4.385393337090776e-20,0.0029761905316263437,1.9825411626695288e-17,-1.6996331759217356e-32,-0.01785714365541935,1.0011607663287547e-17,-9.912705813347644e-18,1.6691661623241466e-33,5.031000843478201e-33,2.4749998659074723e-33,1.5792110897854865e-33,1.661194841257633e-33,1.1988364543872526e-33,0.008928571827709675,-2.3017258005847025e-18,-1.1014117685272467e-18,0.0019841270986944437,2.6433882031063616e-18,3.0690199108014358e-34,-0.0019841270986944437,-0.0005668934318237007,-1.3216941015531808e-18,6.891121540195242e-35,6.708000757295616e-34,-1.7537257617102806e-34,5.7024433429416986e-36,-0.0,-8.768628808551403e-35,-2.3017258005847025e-18,0.0005668934318237007,9.16402424137223e-35,0.0006613756413571537,2.162906282234522e-18,1.247855333035146e-19,2.2040293595924427e-18,-0.0006613756413571537,-1.1014117685272467e-18,7.760626783301958e-22,5.590000937198001e-34,1.0739738257173448e-20,4.3583306370109404e-21,-4.0198173211786903e-22,-4.385393337090776e-20,-1.1014117685272467e-18,9.16402424137223e-35,9.448223863728344e-05,3.0,7.0,4.0,3.0,0.12136243283748627,-0.05089285597205162,-0.02718253992497921,-0.0416666679084301,-0.05089285597205162,0.0059523810632526875,0.004464285913854837,0.0071428571827709675,0.008928571827709675,0.0016534391324967146,0.0035714285913854837,0.004464285913854837,0.003968254197388887,0.0071428571827709675,0.0059523810632526875,-0.05089285597205162,0.11041666567325592,0.004464285913854837,0.0071428571827709675,0.008928571827709675,-0.0357142873108387,-0.004464285913854837,-0.0071428571827709675,-0.008928571827709675,-8.673617379884035e-18,-9.215718466126788e-18,-1.4094628242311558e-18,-2.949029909160572e-17,-8.239936510889834e-18,3.122502256758253e-17,-0.02718253992497921,0.004464285913854837,0.01765873096883297,0.0035714285913854837,0.004464285913854837,-2.700728983553997e-17,-0.0014880952658131719,-6.938893903907228e-18,-6.071532165918825e-18,-0.0019841270986944437,-0.0011904762359336019,-0.0014880952658131719,-1.0408340855860843e-17,-4.336808689942018e-18,1.0408340855860843e-17,-0.0416666679084301,0.0071428571827709675,0.0035714285913854837,0.0555555559694767,0.0071428571827709675,-5.997640452671708e-17,-7.696149630558698e-18,-0.004761904943734407,-2.168404344971009e-18,-2.6020852139652106e-18,-0.0023809524718672037,-3.001933775520534e-18,-0.011904762126505375,-0.004761904943734407,-3.903127820947816e-17,-0.05089285597205162,0.008928571827709675,0.004464285913854837,0.0071428571827709675,0.11041666567325592,1.2013418660070989e-17,1.0449711673812223e-18,1.0003954588260206e-17,-0.008928571827709675,1.3010426069826053e-18,-4.553649124439119e-18,-0.004464285913854837,-2.1358782797964437e-17,-0.0071428571827709675,-0.0357142873108387,0.0059523810632526875,-0.0357142873108387,-2.700728983553997e-17,-5.997640452671708e-17,1.2013418660070989e-17,0.01785714365541935,1.0191500421363742e-17,1.2560289269725722e-17,-2.359805666909654e-18,2.3852447794681098e-18,2.0599841277224584e-18,1.0842021724855044e-19,1.1275702593849246e-17,4.9873299934333204e-18,-8.131516293641283e-18,0.004464285913854837,-0.004464285913854837,-0.0014880952658131719,-7.696149630558698e-18,1.0449711673812223e-18,1.0191500421363742e-17,0.0014880952658131719,1.1939606645675891e-18,5.904096747867679e-19,4.87890977618477e-19,6.505213034913027e-19,3.7947076036992655e-19,1.1926223897340549e-18,6.505213034913027e-19,-1.8431436932253575e-18,0.0071428571827709675,-0.0071428571827709675,-6.938893903907228e-18,-0.004761904943734407,1.0003954588260206e-17,1.2560289269725722e-17,1.1939606645675891e-18,0.004761904943734407,-1.3010426069826053e-18,6.505213034913027e-19,9.215718466126788e-19,1.0842021724855044e-19,8.131516293641283e-19,-1.6263032587282567e-18,-2.927345865710862e-18,0.008928571827709675,-0.008928571827709675,-6.071532165918825e-18,-2.168404344971009e-18,-0.008928571827709675,-2.359805666909654e-18,5.904096747867679e-19,-1.3010426069826053e-18,0.008928571827709675,7.589415207398531e-19,8.131516293641283e-19,-2.168404344971009e-19,9.215718466126788e-19,-2.0599841277224584e-18,-4.445228907190568e-18,0.0016534391324967146,-8.673617379884035e-18,-0.0019841270986944437,-2.6020852139652106e-18,1.3010426069826053e-18,2.3852447794681098e-18,4.87890977618477e-19,6.505213034913027e-19,7.589415207398531e-19,0.0003306878206785768,2.168404344971009e-19,1.0842021724855044e-19,5.421010862427522e-19,3.2526065174565133e-19,-1.3010426069826053e-18,0.0035714285913854837,-9.215718466126788e-18,-0.0011904762359336019,-0.0023809524718672037,-4.553649124439119e-18,2.0599841277224584e-18,6.505213034913027e-19,9.215718466126788e-19,8.131516293641283e-19,2.168404344971009e-19,0.0007936508045531809,6.863126331146479e-19,3.709393436091465e-18,8.631324152152082e-19,2.836074808620549e-19,0.004464285913854837,-1.4094628242311558e-18,-0.0014880952658131719,-3.001933775520534e-18,-0.004464285913854837,1.0842021724855044e-19,3.7947076036992655e-19,1.0842021724855044e-19,-2.168404344971009e-19,1.0842021724855044e-19,6.863126331146479e-19,0.0014880952658131719,-3.550338029729729e-20,6.409974044123085e-19,-6.590315444284013e-19,0.003968254197388887,-2.949029909160572e-17,-1.0408340855860843e-17,-0.011904762126505375,-2.1358782797964437e-17,1.1275702593849246e-17,1.1926223897340549e-18,8.131516293641283e-19,9.215718466126788e-19,5.421010862427522e-19,3.709393436091465e-18,-3.550338029729729e-20,0.003968254197388887,-1.784722821692881e-18,1.1666734030460214e-17,0.0071428571827709675,-8.239936510889834e-18,-4.336808689942018e-18,-0.004761904943734407,-0.0071428571827709675,4.9873299934333204e-18,6.505213034913027e-19,-1.6263032587282567e-18,-2.0599841277224584e-18,3.2526065174565133e-19,8.631324152152082e-19,6.409974044123085e-19,-1.784722821692881e-18,0.004761904943734407,5.8694837887257035e-18,0.0059523810632526875,3.122502256758253e-17,1.0408340855860843e-17,-3.903127820947816e-17,-0.0357142873108387,-8.131516293641283e-18,-1.8431436932253575e-18,-2.927345865710862e-18,-4.445228907190568e-18,-1.3010426069826053e-18,2.836074808620549e-19,-6.590315444284013e-19,1.1666734030460214e-17,5.8694837887257035e-18,0.01785714365541935,3.0,7.0,4.0,4.0,0.09835813194513321,-0.03950892761349678,-0.02105654776096344,-0.03232142701745033,-0.03232142701745033,0.004464285913854837,0.0033482143189758062,0.0053571430034935474,0.0053571430034935474,0.0012400794075801969,0.0026785715017467737,0.0026785715017467737,0.0029761905316263437,0.004285714123398066,0.0029761905316263437,-0.03950892761349678,0.08415178209543228,0.0033482143189758062,0.0053571430034935474,0.0053571430034935474,-0.02678571455180645,-0.0033482143189758062,-0.0053571430034935474,-0.0053571430034935474,-8.944667923005412e-18,-7.26415455565288e-18,-6.938893903907228e-18,-1.0408340855860843e-17,-9.75781955236954e-18,-1.0408340855860843e-17,-0.02105654776096344,0.0033482143189758062,0.01346726156771183,0.0026785715017467737,0.0026785715017467737,-1.930255407022297e-17,-0.0011160714784637094,-8.239936510889834e-18,-7.806255641895632e-18,-0.0014880952658131719,-0.0008928571478463709,-0.0008928571478463709,-8.673617379884035e-18,-6.938893903907228e-18,-7.806255641895632e-18,-0.03232142701745033,0.0053571430034935474,0.0026785715017467737,0.04238095134496689,0.004285714123398066,-3.1678403570045292e-18,-3.529917990634303e-18,-0.0035714285913854837,-1.1275702593849246e-17,-2.4936649967166602e-18,-0.0017857142956927419,-1.0273787521519904e-17,-0.008928571827709675,-0.0028571428265422583,-2.1467203015212988e-17,-0.03232142701745033,0.0053571430034935474,0.0026785715017467737,0.004285714123398066,0.04238095134496689,-2.531466323529721e-18,-3.7134788811368645e-18,-1.1846955179239592e-17,-0.0035714285913854837,-3.0357660829594124e-18,-9.432558900623889e-18,-0.0017857142956927419,-2.347297703431117e-17,-0.0028571428265422583,-0.008928571827709675,0.004464285913854837,-0.02678571455180645,-1.930255407022297e-17,-3.1678403570045292e-18,-2.531466323529721e-18,0.013392857275903225,7.047314121155779e-19,-6.230283841899389e-18,-6.1759500697735374e-18,2.6020852139652106e-18,1.3552527156068805e-18,1.2468324983583301e-18,6.505213034913027e-19,2.168404344971009e-18,5.421010862427522e-19,0.0033482143189758062,-0.0033482143189758062,-0.0011160714784637094,-3.529917990634303e-18,-3.7134788811368645e-18,7.047314121155779e-19,0.0011160714784637094,-3.4392003690725767e-19,-2.8077490425194364e-19,3.7947076036992655e-19,3.7947076036992655e-19,4.336808689942018e-19,5.149960319306146e-19,7.047314121155779e-19,5.149960319306146e-19,0.0053571430034935474,-0.0053571430034935474,-8.239936510889834e-18,-0.0035714285913854837,-1.1846955179239592e-17,-6.230283841899389e-18,-3.4392003690725767e-19,0.0035714285913854837,5.421010862427522e-19,9.215718466126788e-19,6.505213034913027e-19,1.1384122811097797e-18,3.0357660829594124e-18,1.2468324983583301e-18,1.734723475976807e-18,0.0053571430034935474,-0.0053571430034935474,-7.806255641895632e-18,-1.1275702593849246e-17,-0.0035714285913854837,-6.1759500697735374e-18,-2.8077490425194364e-19,5.421010862427522e-19,0.0035714285913854837,8.673617379884035e-19,1.0299920638612292e-18,4.336808689942018e-19,1.8973538018496328e-18,6.505213034913027e-19,2.4936649967166602e-18,0.0012400794075801969,-8.944667923005412e-18,-0.0014880952658131719,-2.4936649967166602e-18,-3.0357660829594124e-18,2.6020852139652106e-18,3.7947076036992655e-19,9.215718466126788e-19,8.673617379884035e-19,0.00024801588733680546,2.168404344971009e-19,1.6263032587282567e-19,3.2526065174565133e-19,5.421010862427522e-19,2.168404344971009e-19,0.0026785715017467737,-7.26415455565288e-18,-0.0008928571478463709,-0.0017857142956927419,-9.432558900623889e-18,1.3552527156068805e-18,3.7947076036992655e-19,6.505213034913027e-19,1.0299920638612292e-18,2.168404344971009e-19,0.0005952381179668009,9.43103874945317e-19,2.131822075585698e-18,6.671099453869591e-19,1.3388056766923356e-18,0.0026785715017467737,-6.938893903907228e-18,-0.0008928571478463709,-1.0273787521519904e-17,-0.0017857142956927419,1.2468324983583301e-18,4.336808689942018e-19,1.1384122811097797e-18,4.336808689942018e-19,1.6263032587282567e-19,9.43103874945317e-19,0.0005952381179668009,1.50079411040982e-18,7.896026245053562e-19,2.4448613405760316e-18,0.0029761905316263437,-1.0408340855860843e-17,-8.673617379884035e-18,-0.008928571827709675,-2.347297703431117e-17,6.505213034913027e-19,5.149960319306146e-19,3.0357660829594124e-18,1.8973538018496328e-18,3.2526065174565133e-19,2.131822075585698e-18,1.50079411040982e-18,0.0029761905316263437,4.799816006783368e-18,2.9590752732374773e-18,0.004285714123398066,-9.75781955236954e-18,-6.938893903907228e-18,-0.0028571428265422583,-0.0028571428265422583,2.168404344971009e-18,7.047314121155779e-19,1.2468324983583301e-18,6.505213034913027e-19,5.421010862427522e-19,6.671099453869591e-19,7.896026245053562e-19,4.799816006783368e-18,0.0019047618843615055,3.828577754651168e-18,0.0029761905316263437,-1.0408340855860843e-17,-7.806255641895632e-18,-2.1467203015212988e-17,-0.008928571827709675,5.421010862427522e-19,5.149960319306146e-19,1.734723475976807e-18,2.4936649967166602e-18,2.168404344971009e-19,1.3388056766923356e-18,2.4448613405760316e-18,2.9590752732374773e-18,3.828577754651168e-18,0.0029761905316263437,3.0,7.0,4.0,5.0,0.08282596617937088,-0.03232142701745033,-0.017202381044626236,-0.026428570970892906,-0.022397959604859352,0.0035714285913854837,0.0026785715017467737,0.004285714123398066,0.0035714285913854837,0.0009920635493472219,0.002142857061699033,0.0017857142956927419,0.0023809524718672037,0.0028571428265422583,0.001700680237263441,-0.03232142701745033,0.06803571432828903,0.0026785715017467737,0.004285714123398066,0.0035714285913854837,-0.02142857201397419,-0.0026785715017467737,-0.004285714123398066,-0.0035714285913854837,6.211962204921646e-18,8.129425181052749e-18,1.1267184287901175e-18,1.8239378828908563e-17,1.8715188833680703e-18,-9.516197613900963e-18,-0.017202381044626236,0.0026785715017467737,0.010892856866121292,0.002142857061699033,0.0017857142956927419,3.2434373858024855e-17,-0.0008928571478463709,-8.179398160386798e-19,-7.250436075386417e-19,-0.0011904762359336019,-0.0007142857066355646,-0.0005952381179668009,-1.463623715608984e-18,-6.479186624119658e-18,-1.062874395725621e-17,-0.026428570970892906,0.004285714123398066,0.002142857061699033,0.034285712987184525,0.0028571428265422583,5.1863274803731624e-17,-7.772822345704734e-19,-0.0028571428265422583,-1.1600697307027962e-18,-1.734723475976807e-18,-0.0014285714132711291,-6.344420704361294e-18,-0.0071428571827709675,-0.0019047618843615055,-1.7295310978356892e-17,-0.022397959604859352,0.0035714285913854837,0.0017857142956927419,0.0028571428265422583,0.021403061226010323,6.967216154490738e-19,-7.3019136962547e-18,-1.1614292433985577e-17,-0.0017857142956927419,-7.158121581652157e-18,-3.651669877815371e-18,-0.0008928571478463709,-2.2416687244415656e-17,-0.0014285714132711291,-0.003401360474526882,0.0035714285913854837,-0.02142857201397419,3.2434373858024855e-17,5.1863274803731624e-17,6.967216154490738e-19,0.010714286006987095,-2.9738117026452626e-18,-4.7580988069504814e-18,-4.346784520114918e-33,-3.105981102460823e-18,-4.0443837997922714e-18,-1.387778801460961e-18,-9.119689414454282e-18,-2.2204459996194763e-18,1.69932097294015e-18,0.0026785715017467737,-0.0026785715017467737,-0.0008928571478463709,-7.772822345704734e-19,-7.3019136962547e-18,-2.9738117026452626e-18,0.0008928571478463709,-1.3367990916226468e-19,7.250436075386417e-19,-3.272480132404208e-35,-1.3552527156068805e-20,3.1170812458958252e-19,1.0050946897270887e-32,4.758098496757752e-19,1.1328806141609079e-18,0.004285714123398066,-0.004285714123398066,-8.179398160386798e-19,-0.0028571428265422583,-1.1614292433985577e-17,-4.7580988069504814e-18,-1.3367990916226468e-19,0.0028571428265422583,1.1600697307027962e-18,5.218066443074167e-33,3.74352632940269e-33,4.758098496757752e-19,1.599596549551645e-32,7.612957801607556e-19,1.812608941298422e-18,0.0035714285913854837,-0.0035714285913854837,-7.250436075386417e-19,-1.1600697307027962e-18,-0.0017857142956927419,-4.346784520114918e-33,7.250436075386417e-19,1.1600697307027962e-18,0.0017857142956927419,-2.407412430484045e-35,-3.611118645726067e-35,4.333342374871281e-34,0.0,6.954855489323258e-34,1.655917973648395e-33,0.0009920635493472219,6.211962204921646e-18,-0.0011904762359336019,-1.734723475976807e-18,-7.158121581652157e-18,-3.105981102460823e-18,-3.272480132404208e-35,5.218066443074167e-33,-2.407412430484045e-35,0.00019841270113829523,6.776263578034403e-20,4.0657581468206416e-19,4.4056469836361075e-20,5.991679665100559e-19,1.1328806141609079e-18,0.002142857061699033,8.129425181052749e-18,-0.0007142857066355646,-0.0014285714132711291,-3.651669877815371e-18,-4.0443837997922714e-18,-1.3552527156068805e-20,3.74352632940269e-33,-3.611118645726067e-35,6.776263578034403e-20,0.0004761904710903764,1.82719324702168e-19,-9.62735559218191e-19,4.376598662345233e-19,4.531522353246055e-19,0.0017857142956927419,1.1267184287901175e-18,-0.0005952381179668009,-6.344420704361294e-18,-0.0008928571478463709,-1.387778801460961e-18,3.1170812458958252e-19,4.758098496757752e-19,4.333342374871281e-34,4.0657581468206416e-19,1.82719324702168e-19,0.00029761905898340046,1.1895247017376204e-18,7.173361453860258e-19,9.150190251976103e-19,0.0023809524718672037,1.8239378828908563e-17,-1.463623715608984e-18,-0.0071428571827709675,-2.2416687244415656e-17,-9.119689414454282e-18,1.0050946897270887e-32,1.599596549551645e-32,0.0,4.4056469836361075e-20,-9.62735559218191e-19,1.1895247017376204e-18,0.0023809524718672037,2.4450081651347597e-18,3.3986419458803e-18,0.0028571428265422583,1.8715188833680703e-18,-6.479186624119658e-18,-0.0019047618843615055,-0.0014285714132711291,-2.2204459996194763e-18,4.758098496757752e-19,7.612957801607556e-19,6.954855489323258e-34,5.991679665100559e-19,4.376598662345233e-19,7.173361453860258e-19,2.4450081651347597e-18,0.0009523809421807528,1.812608941298422e-18,0.001700680237263441,-9.516197613900963e-18,-1.062874395725621e-17,-1.7295310978356892e-17,-0.003401360474526882,1.69932097294015e-18,1.1328806141609079e-18,1.812608941298422e-18,1.655917973648395e-33,1.1328806141609079e-18,4.531522353246055e-19,9.150190251976103e-19,3.3986419458803e-18,1.812608941298422e-18,0.0008503401186317205,3.0,7.0,4.0,6.0,0.07158683240413666,-0.027359694242477417,-0.014547902159392834,-0.022363945841789246,-0.01645408198237419,0.0029761905316263437,0.0022321429569274187,0.0035714285913854837,0.0025510203558951616,0.0008267195662483573,0.0017857142956927419,0.0012755101779475808,0.0019841270986944437,0.0020408162381500006,0.0010629252064973116,-0.027359694242477417,0.05712159723043442,0.0022321429569274187,0.0035714285913854837,0.0025510203558951616,-0.01785714365541935,-0.0022321429569274187,-0.0035714285913854837,-0.0025510203558951616,2.8773126055896733e-18,2.340217616414092e-18,1.631558337159806e-18,9.251858814269842e-18,2.5981718224872223e-18,3.909150109397508e-18,-0.014547902159392834,0.0022321429569274187,0.009148242883384228,0.0017857142956927419,0.0012755101779475808,1.400995803481063e-17,-0.0007440476329065859,-3.7922564477160276e-33,-2.710505431213761e-20,-0.0009920635493472219,-0.0005952381179668009,-0.00042517005931586027,-7.258615902874207e-33,-2.710505431213761e-20,-1.0342542929131677e-19,-0.022363945841789246,0.0035714285913854837,0.0017857142956927419,0.028798185288906097,0.0020408162381500006,2.326181602189986e-17,-3.807817705549892e-20,-0.0023809524718672037,-1.216458788156901e-19,5.421010862427522e-20,-0.0011904762359336019,-9.79181318587726e-20,-0.0059523810632526875,-0.0013605442363768816,-2.243900602490841e-19,-0.01645408198237419,0.0025510203558951616,0.0012755101779475808,0.0020408162381500006,0.012427721172571182,1.6395412918154328e-17,2.5437931564260938e-20,-4.437958800700572e-33,-0.0010204081190750003,6.28066089896267e-20,-5.421010862427522e-20,-0.0005102040595375001,-8.494529928644791e-33,-0.0008163265301845968,-0.0015943878097459674,0.0029761905316263437,-0.01785714365541935,1.400995803481063e-17,2.326181602189986e-17,1.6395412918154328e-17,0.008928571827709675,-1.5105074855478771e-18,-2.4168120595946647e-18,-2.071553075769625e-18,-1.4318352680661478e-18,-1.1895247017376204e-18,-8.49660486470075e-19,-4.625929407134921e-18,-1.3594567576726047e-18,-1.9471384941967493e-18,0.0022321429569274187,-0.0022321429569274187,-0.0007440476329065859,-3.807817705549892e-20,2.5437931564260938e-20,-1.5105074855478771e-18,0.0007440476329065859,4.088686184621661e-34,-4.092624310725639e-21,1.863333607467877e-35,1.3552527156068805e-20,-0.0,7.826001495748193e-34,-1.0317615025500889e-21,-3.648218295457257e-21,0.0035714285913854837,-0.0035714285913854837,-3.7922564477160276e-33,-0.0023809524718672037,-4.437958800700572e-33,-2.4168120595946647e-18,4.088686184621661e-34,0.0023809524718672037,5.607341315582553e-34,3.875733903533184e-34,3.219840427786743e-34,2.2998859214524992e-34,1.2521601842184133e-33,3.679817566159495e-34,5.270572285976545e-34,0.0025510203558951616,-0.0025510203558951616,-2.710505431213761e-20,-1.216458788156901e-19,-0.0010204081190750003,-2.071553075769625e-18,-4.092624310725639e-21,5.607341315582553e-34,0.0010204081190750003,-5.45683214503633e-21,-7.303653923512592e-22,2.710505431213761e-20,1.073280157901497e-33,4.9534790098071744e-20,-1.5713616477926718e-21,0.0008267195662483573,2.8773126055896733e-18,-0.0009920635493472219,5.421010862427522e-20,6.28066089896267e-20,-1.4318352680661478e-18,1.863333607467877e-35,3.875733903533184e-34,-5.45683214503633e-21,0.0001653439103392884,-2.710505431213761e-20,0.0,7.418396992890642e-34,-1.3756820370581838e-21,3.0197629783086927e-21,0.0017857142956927419,2.340217616414092e-18,-0.0005952381179668009,-0.0011904762359336019,-5.421010862427522e-20,-1.1895247017376204e-18,1.3552527156068805e-20,3.219840427786743e-34,-7.303653923512592e-22,-2.710505431213761e-20,0.00039682540227659047,2.0328790734103208e-20,6.162975913874651e-34,9.799444734821629e-23,-1.1411959223933989e-21,0.0012755101779475808,1.631558337159806e-18,-0.00042517005931586027,-9.79181318587726e-20,-0.0005102040595375001,-8.49660486470075e-19,-0.0,2.2998859214524992e-34,2.710505431213761e-20,0.0,2.0328790734103208e-20,0.0001700680295471102,4.402125783961174e-34,1.4772702570115484e-20,3.566279351097274e-20,0.0019841270986944437,9.251858814269842e-18,-7.258615902874207e-33,-0.0059523810632526875,-8.494529928644791e-33,-4.625929407134921e-18,7.826001495748193e-34,1.2521601842184133e-33,1.073280157901497e-33,7.418396992890642e-34,6.162975913874651e-34,4.402125783961174e-34,0.0019841270986944437,7.0434009788313895e-34,1.0088204558062184e-33,0.0020408162381500006,2.5981718224872223e-18,-2.710505431213761e-20,-0.0013605442363768816,-0.0008163265301845968,-1.3594567576726047e-18,-1.0317615025500889e-21,3.679817566159495e-34,4.9534790098071744e-20,-1.3756820370581838e-21,9.799444734821629e-23,1.4772702570115484e-20,7.0434009788313895e-34,0.0005442177061922848,9.112545391545785e-20,0.0010629252064973116,3.909150109397508e-18,-1.0342542929131677e-19,-2.243900602490841e-19,-0.0015943878097459674,-1.9471384941967493e-18,-3.648218295457257e-21,5.270572285976545e-34,-1.5713616477926718e-21,3.0197629783086927e-21,-1.1411959223933989e-21,3.566279351097274e-20,1.0088204558062184e-33,9.112545391545785e-20,0.0003188775444868952,3.0,7.0,4.0,7.0,0.06305980682373047,-0.02372448891401291,-0.012606292963027954,-0.019387755542993546,-0.012606292963027954,0.0025510203558951616,0.0019132653251290321,0.0030612244736403227,0.0019132653251290321,0.0007086168043315411,0.0015306122368201613,0.0009566326625645161,0.001700680237263441,0.0015306122368201613,0.0007086168043315411,-0.02372448891401291,0.049234695732593536,0.0019132653251290321,0.0030612244736403227,0.0019132653251290321,-0.015306122601032257,-0.0019132653251290321,-0.0030612244736403227,-0.0019132653251290321,2.4989138712936154e-18,2.2937997559552194e-18,1.3650283360860322e-18,9.204654925433891e-18,2.38690534454781e-18,2.393130499042731e-18,-0.012606292963027954,0.0019132653251290321,0.00788690522313118,0.0015306122368201613,0.0009566326625645161,1.4298860789912125e-17,-0.0006377550889737904,5.947623508688102e-19,3.1170812458958252e-19,-0.0008503401186317205,-0.0005102040595375001,-0.0003188775444868952,-7.655917565088786e-33,1.3552527156068805e-20,8.757017348156812e-20,-0.019387755542993546,0.0030612244736403227,0.0015306122368201613,0.024829931557178497,0.0015306122368201613,2.360322158484132e-17,3.3794021901214113e-19,-0.0020408162381500006,4.343267419562408e-19,-5.421010862427522e-20,-0.0010204081190750003,-6.925279519150977e-20,-0.005102040711790323,-0.0010204081190750003,9.676000145301594e-20,-0.012606292963027954,0.0019132653251290321,0.0009566326625645161,0.0015306122368201613,0.00788690522313118,1.4298860789912125e-17,2.171551767201773e-19,5.947623508688102e-19,-0.0006377550889737904,-1.1515943056684329e-20,-9.486769009248164e-20,-0.0003188775444868952,-7.655917565088786e-33,-0.0005102040595375001,-0.0008503401186317205,0.0025510203558951616,-0.015306122601032257,1.4298860789912125e-17,2.360322158484132e-17,1.4298860789912125e-17,0.0076530613005161285,-3.494012148194908e-18,-5.590419106239607e-18,-3.494012148194908e-18,-1.2272873578570443e-18,-1.0195925424050594e-18,-6.372453648525563e-19,-3.965082408057119e-18,-1.0195925424050594e-18,-1.2272873578570443e-18,0.0019132653251290321,-0.0019132653251290321,-0.0006377550889737904,3.3794021901214113e-19,2.171551767201773e-19,-3.494012148194908e-18,0.0006377550889737904,-3.398641894181512e-19,-2.1333551514534885e-19,-1.3552527156068805e-20,-0.0,-0.0,1.951758677681671e-33,6.41321348211906e-22,-7.3563599294009425e-22,0.0030612244736403227,-0.0030612244736403227,5.947623508688102e-19,-0.0020408162381500006,5.947623508688102e-19,-5.590419106239607e-18,-3.398641894181512e-19,0.0020408162381500006,-3.398641894181512e-19,9.027796614315168e-34,-1.699320947090756e-19,4.664361584062837e-34,-8.49660486470075e-19,-1.699320947090756e-19,8.935011539126903e-34,0.0019132653251290321,-0.0019132653251290321,3.1170812458958252e-19,4.343267419562408e-19,-0.0006377550889737904,-3.494012148194908e-18,-2.1333551514534885e-19,-3.398641894181512e-19,0.0006377550889737904,-1.2271925148143491e-21,9.448294346915168e-23,-3.017919351050851e-20,1.951758677681671e-33,-3.158199812534468e-20,2.12170130753361e-20,0.0007086168043315411,2.4989138712936154e-18,-0.0008503401186317205,-5.421010862427522e-20,-1.1515943056684329e-20,-1.2272873578570443e-18,-1.3552527156068805e-20,9.027796614315168e-34,-1.2271925148143491e-21,0.00014172335795592517,1.3552527156068805e-20,1.3552527156068805e-20,6.358625928309482e-34,8.55095130949208e-22,1.0639835296549125e-22,0.0015306122368201613,2.2937997559552194e-18,-0.0005102040595375001,-0.0010204081190750003,-9.486769009248164e-20,-1.0195925424050594e-18,-0.0,-1.699320947090756e-19,9.448294346915168e-23,1.3552527156068805e-20,0.0003401360590942204,3.049318610115481e-20,5.990034980929768e-34,1.649864440267257e-21,1.2597726216612707e-22,0.0009566326625645161,1.3650283360860322e-18,-0.0003188775444868952,-6.925279519150977e-20,-0.0003188775444868952,-6.372453648525563e-19,-0.0,4.664361584062837e-34,-3.017919351050851e-20,1.3552527156068805e-20,3.049318610115481e-20,0.00010629251482896507,3.30159422317651e-34,-7.408921037318222e-21,-2.923836603660894e-20,0.001700680237263441,9.204654925433891e-18,-7.655917565088786e-33,-0.005102040711790323,-7.655917565088786e-33,-3.965082408057119e-18,1.951758677681671e-33,-8.49660486470075e-19,1.951758677681671e-33,6.358625928309482e-34,5.990034980929768e-34,3.30159422317651e-34,0.001700680237263441,5.990034980929768e-34,6.358625928309482e-34,0.0015306122368201613,2.38690534454781e-18,1.3552527156068805e-20,-0.0010204081190750003,-0.0005102040595375001,-1.0195925424050594e-18,6.41321348211906e-22,-1.699320947090756e-19,-3.158199812534468e-20,8.55095130949208e-22,1.649864440267257e-21,-7.408921037318222e-21,5.990034980929768e-34,0.0003401360590942204,-3.23793097629663e-20,0.0007086168043315411,2.393130499042731e-18,8.757017348156812e-20,9.676000145301594e-20,-0.0008503401186317205,-1.2272873578570443e-18,-7.3563599294009425e-22,8.935011539126903e-34,2.12170130753361e-20,1.0639835296549125e-22,1.2597726216612707e-22,-2.923836603660894e-20,6.358625928309482e-34,-3.23793097629663e-20,0.00014172335795592517,3.0,7.0,4.0,8.0,0.0563616082072258,-0.02094493992626667,-0.01112351194024086,-0.01711309514939785,-0.00997023843228817,0.0022321429569274187,0.0016741071594879031,0.0026785715017467737,0.0014880952658131719,0.0006200397037900984,0.0013392857508733869,0.0007440476329065859,0.0014880952658131719,0.0011904762359336019,0.0004960317746736109,-0.02094493992626667,0.04326637089252472,0.0016741071594879031,0.0026785715017467737,0.0014880952658131719,-0.013392857275903225,-0.0016741071594879031,-0.0026785715017467737,-0.0014880952658131719,2.1512093279875628e-18,1.7873453978249805e-18,1.0505629083220808e-18,6.938893903907228e-18,1.7159543342876726e-18,1.6279500719302732e-18,-0.01112351194024086,0.0016741071594879031,0.006932043470442295,0.0013392857508733869,0.0007440476329065859,1.1215518586841113e-17,-0.0005580357392318547,-4.553774381615338e-33,6.776263578034403e-20,-0.0007440476329065859,-0.00044642857392318547,-0.00024801588733680546,-7.434529256613157e-19,-7.453889935837843e-20,7.236537890131878e-20,-0.01711309514939785,0.0026785715017467737,0.0013392857508733869,0.02182539738714695,0.0011904762359336019,1.8579242527188226e-17,2.7725706747326257e-21,-0.0017857142956927419,1.301664078116574e-19,2.710505431213761e-20,-0.0008928571478463709,4.836870777244206e-20,-0.004464285913854837,-0.0007936508045531809,1.5678317999314438e-19,-0.00997023843228817,0.0014880952658131719,0.0007440476329065859,0.0011904762359336019,0.005328798200935125,9.753562880937342e-18,4.142374700926729e-21,-3.9601846319386226e-33,-0.00042517005931586027,4.0521368893567228e-22,-1.2197274440461925e-19,-0.00021258502965793014,-6.608470507765904e-19,-0.0003401360590942204,-0.0004960317746736109,0.0022321429569274187,-0.013392857275903225,1.1215518586841113e-17,1.8579242527188226e-17,9.753562880937342e-18,0.0066964286379516125,-1.69932097294015e-18,-2.7189135153452095e-18,-1.2947207757535922e-18,-1.073876476899005e-18,-8.921435521526094e-19,-4.956353010071399e-19,-3.469446951953614e-18,-7.930164505921508e-19,-8.260588005460409e-19,0.0016741071594879031,-0.0016741071594879031,-0.0005580357392318547,2.7725706747326257e-21,4.142374700926729e-21,-1.69932097294015e-18,0.0005580357392318547,6.8996582235349785e-34,-7.406502200456197e-22,2.09625023665488e-35,-0.0,-0.0,8.614925345752956e-34,-7.921630643484925e-22,-2.923463736247811e-22,0.0026785715017467737,-0.0026785715017467737,-4.553774381615338e-33,-0.0017857142956927419,-3.9601846319386226e-33,-2.7189135153452095e-18,6.8996582235349785e-34,0.0017857142956927419,5.256882368564273e-34,4.360200584077647e-34,3.6223205099586786e-34,2.012400181270937e-34,1.4086801957662779e-33,3.219840427786743e-34,3.354000378647808e-34,0.0014880952658131719,-0.0014880952658131719,6.776263578034403e-20,1.301664078116574e-19,-0.00042517005931586027,-1.2947207757535922e-18,-7.406502200456197e-22,5.256882368564273e-34,0.00042517005931586027,-9.875335930694276e-22,-8.73807265030736e-22,-1.6940658945086007e-20,6.175979360953142e-34,-3.644142249897803e-20,7.155600205898125e-21,0.0006200397037900984,2.1512093279875628e-18,-0.0007440476329065859,2.710505431213761e-20,4.0521368893567228e-22,-1.073876476899005e-18,2.09625023665488e-35,4.360200584077647e-34,-9.875335930694276e-22,0.00012400794366840273,-0.0,-6.776263578034403e-21,5.412453535765833e-34,-1.0562174527893886e-21,7.129689015547971e-22,0.0013392857508733869,1.7873453978249805e-18,-0.00044642857392318547,-0.0008928571478463709,-1.2197274440461925e-19,-8.921435521526094e-19,-0.0,3.6223205099586786e-34,-8.73807265030736e-22,-0.0,0.00029761905898340046,-0.0,4.956353010071399e-19,8.70434533018279e-20,-1.0194418428605906e-21,0.0007440476329065859,1.0505629083220808e-18,-0.00024801588733680546,4.836870777244206e-20,-0.00021258502965793014,-4.956353010071399e-19,-0.0,2.012400181270937e-34,-1.6940658945086007e-20,-6.776263578034403e-21,-0.0,7.086167897796258e-05,2.2457560137183157e-34,-1.381963056132814e-20,-2.1479476514346896e-20,0.0014880952658131719,6.938893903907228e-18,-7.434529256613157e-19,-0.004464285913854837,-6.608470507765904e-19,-3.469446951953614e-18,8.614925345752956e-34,1.4086801957662779e-33,6.175979360953142e-34,5.412453535765833e-34,4.956353010071399e-19,2.2457560137183157e-34,0.0014880952658131719,4.405647177506564e-19,3.673049978858872e-34,0.0011904762359336019,1.7159543342876726e-18,-7.453889935837843e-20,-0.0007936508045531809,-0.0003401360590942204,-7.930164505921508e-19,-7.921630643484925e-22,3.219840427786743e-34,-3.644142249897803e-20,-1.0562174527893886e-21,8.70434533018279e-20,-1.381963056132814e-20,4.405647177506564e-19,0.00022675737272948027,-4.3921387364922044e-20,0.0004960317746736109,1.6279500719302732e-18,7.236537890131878e-20,1.5678317999314438e-19,-0.0004960317746736109,-8.260588005460409e-19,-2.923463736247811e-22,3.354000378647808e-34,7.155600205898125e-21,7.129689015547971e-22,-1.0194418428605906e-21,-2.1479476514346896e-20,3.673049978858872e-34,-4.3921387364922044e-20,7.086167897796258e-05,3.0,7.0,5.0,3.0,0.10241874307394028,-0.0416666679084301,-0.02222222276031971,-0.028911564499139786,-0.0416666679084301,0.004761904943734407,0.0035714285913854837,0.004761904943734407,0.0071428571827709675,0.0013227512827143073,0.0023809524718672037,0.0035714285913854837,0.0022675737272948027,0.004761904943734407,0.004761904943734407,-0.0416666679084301,0.0892857164144516,0.0035714285913854837,0.004761904943734407,0.0071428571827709675,-0.02857142873108387,-0.0035714285913854837,-0.004761904943734407,-0.0071428571827709675,-2.290936470264867e-18,-1.5860329011843016e-18,-2.3790494034752407e-18,-4.5315224566436314e-18,-3.1720658023686032e-18,-1.5860329632228476e-17,-0.02222222276031971,0.0035714285913854837,0.014285714365541935,0.0023809524718672037,0.0035714285913854837,-9.648367013716523e-18,-0.0011904762359336019,-5.2867765096103e-19,-7.930164505921508e-19,-0.0015873016091063619,-0.0007936508045531809,-0.0011904762359336019,-1.530262678497781e-33,-5.2867765096103e-19,-3.1720658023686032e-18,-0.028911564499139786,0.004761904943734407,0.0023809524718672037,0.02806122414767742,0.004761904943734407,-1.3028127734934688e-17,-5.2867765096103e-19,-0.0023809524718672037,-3.5217004894156947e-34,5.421010862427522e-20,-0.0011904762359336019,-5.2867765096103e-19,-0.004535147454589605,-0.0023809524718672037,-8.653729332628561e-33,-0.0416666679084301,0.0071428571827709675,0.0035714285913854837,0.004761904943734407,0.0892857164144516,-2.2600968195641445e-17,-7.930164505921508e-19,-3.5217004894156947e-34,-0.0071428571827709675,1.3582313736056384e-20,-1.0681859510941171e-33,-0.0035714285913854837,-3.584588105569993e-33,-0.004761904943734407,-0.02857142873108387,0.004761904943734407,-0.02857142873108387,-9.648367013716523e-18,-1.3028127734934688e-17,-2.2600968195641445e-17,0.014285714365541935,-0.0,-0.0,-0.0,1.1454682351324336e-18,7.930164505921508e-19,1.1895247017376204e-18,2.2657612283218157e-18,1.5860329011843016e-18,7.930164816114238e-18,0.0035714285913854837,-0.0035714285913854837,-0.0011904762359336019,-5.2867765096103e-19,-7.930164505921508e-19,-0.0,0.0011904762359336019,5.2867765096103e-19,7.930164505921508e-19,-0.0,-0.0,-0.0,-0.0,-6.783447577795178e-36,-2.65171149544798e-35,0.004761904943734407,-0.004761904943734407,-5.2867765096103e-19,-0.0023809524718672037,-3.5217004894156947e-34,-0.0,5.2867765096103e-19,0.0023809524718672037,3.5217004894156947e-34,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0071428571827709675,-0.0071428571827709675,-7.930164505921508e-19,-3.5217004894156947e-34,-0.0071428571827709675,-0.0,7.930164505921508e-19,3.5217004894156947e-34,0.0071428571827709675,-0.0,-0.0,-0.0,-0.0,0.0,0.0,0.0013227512827143073,-2.290936470264867e-18,-0.0015873016091063619,5.421010862427522e-20,1.3582313736056384e-20,1.1454682351324336e-18,-0.0,-0.0,-0.0,0.00026455026818439364,-0.0,0.0,1.8167502816304762e-34,1.3240768367662246e-34,6.7407548053553255e-34,0.0023809524718672037,-1.5860329011843016e-18,-0.0007936508045531809,-0.0011904762359336019,-1.0681859510941171e-33,7.930164505921508e-19,-0.0,-0.0,-0.0,-0.0,0.00039682540227659047,-0.0,1.257750141992928e-34,8.955192045024511e-35,4.445410149187839e-34,0.0035714285913854837,-2.3790494034752407e-18,-0.0011904762359336019,-5.2867765096103e-19,-0.0035714285913854837,1.1895247017376204e-18,-0.0,-0.0,-0.0,0.0,-0.0,0.0011904762359336019,1.8866252703865772e-34,5.2867765096103e-19,3.1720658023686032e-18,0.0022675737272948027,-4.5315224566436314e-18,-1.530262678497781e-33,-0.004535147454589605,-3.584588105569993e-33,2.2657612283218157e-18,-0.0,-0.0,-0.0,1.8167502816304762e-34,1.257750141992928e-34,1.8866252703865772e-34,0.0011337868636474013,2.515500283985856e-34,1.2577502108695502e-33,0.004761904943734407,-3.1720658023686032e-18,-5.2867765096103e-19,-0.0023809524718672037,-0.004761904943734407,1.5860329011843016e-18,-6.783447577795178e-36,-0.0,0.0,1.3240768367662246e-34,8.955192045024511e-35,5.2867765096103e-19,2.515500283985856e-34,0.0023809524718672037,2.2891053525585126e-33,0.004761904943734407,-1.5860329632228476e-17,-3.1720658023686032e-18,-8.653729332628561e-33,-0.02857142873108387,7.930164816114238e-18,-2.65171149544798e-35,-0.0,0.0,6.7407548053553255e-34,4.445410149187839e-34,3.1720658023686032e-18,1.2577502108695502e-33,2.2891053525585126e-33,0.014285714365541935,3.0,7.0,5.0,4.0,0.08282596617937088,-0.03232142701745033,-0.017202381044626236,-0.022397959604859352,-0.026428570970892906,0.0035714285913854837,0.0026785715017467737,0.0035714285913854837,0.004285714123398066,0.0009920635493472219,0.0017857142956927419,0.002142857061699033,0.001700680237263441,0.0028571428265422583,0.0023809524718672037,-0.03232142701745033,0.06803571432828903,0.0026785715017467737,0.0035714285913854837,0.004285714123398066,-0.02142857201397419,-0.0026785715017467737,-0.0035714285913854837,-0.004285714123398066,6.130647041985233e-18,1.881090810621381e-18,9.08104519059703e-18,-6.7972838917606e-18,4.2822888021783414e-18,2.2997477222268738e-17,-0.017202381044626236,0.0026785715017467737,0.010892856866121292,0.0017857142956927419,0.002142857061699033,3.2434373858024855e-17,-0.0008928571478463709,-1.1328806367791277e-20,1.3367990916226468e-19,-0.0011904762359336019,-0.0005952381179668009,-0.0007142857066355646,-9.269287509776334e-18,-5.181157022518277e-18,9.154256878662566e-19,-0.022397959604859352,0.0035714285913854837,0.0017857142956927419,0.021403061226010323,0.0028571428265422583,6.967216154490738e-19,-7.261256114786494e-18,-0.0017857142956927419,9.516196993515503e-19,-7.101524229780054e-18,-0.0008928571478463709,1.16377591343734e-18,-0.003401360474526882,-0.0014285714132711291,5.400064167775842e-18,-0.026428570970892906,0.004285714123398066,0.002142857061699033,0.0028571428265422583,0.034285712987184525,5.1863274803731624e-17,-7.772822345704734e-19,1.141943680580891e-17,-0.0028571428265422583,-1.5831438694973836e-18,-1.4295331210238362e-18,-0.0014285714132711291,4.871027158537446e-18,-0.0019047618843615055,-0.0071428571827709675,0.0035714285913854837,-0.02142857201397419,3.2434373858024855e-17,6.967216154490738e-19,5.1863274803731624e-17,0.010714286006987095,-2.9738117026452626e-18,1.485906115486372e-32,-4.7580988069504814e-18,-3.105981102460823e-18,-1.387778801460961e-18,-4.0443837997922714e-18,1.69932097294015e-18,-2.2204459996194763e-18,-9.119689414454282e-18,0.0026785715017467737,-0.0026785715017467737,-0.0008928571478463709,-7.261256114786494e-18,-7.772822345704734e-19,-2.9738117026452626e-18,0.0008928571478463709,7.250436075386417e-19,-1.3367990916226468e-19,2.710505431213761e-20,2.981555974335137e-19,-1.3552527156068805e-20,1.1328806141609079e-18,4.758098496757752e-19,5.7777898331617076e-34,0.0035714285913854837,-0.0035714285913854837,-1.1328806367791277e-20,-0.0017857142956927419,1.141943680580891e-17,1.485906115486372e-32,7.250436075386417e-19,0.0017857142956927419,-9.516196993515503e-19,-5.7777898331617076e-34,-2.3472271197219437e-34,-4.758098496757752e-19,2.5423323659935653e-33,-6.34413150133963e-19,-2.3790494034752407e-18,0.004285714123398066,-0.004285714123398066,1.3367990916226468e-19,9.516196993515503e-19,-0.0028571428265422583,-4.7580988069504814e-18,-1.3367990916226468e-19,-9.516196993515503e-19,0.0028571428265422583,1.3842621475283258e-33,5.7176045223996064e-34,2.0508144642185957e-33,-9.242666879740905e-34,1.2529203984556091e-33,5.3177678331490826e-33,0.0009920635493472219,6.130647041985233e-18,-0.0011904762359336019,-7.101524229780054e-18,-1.5831438694973836e-18,-3.105981102460823e-18,2.710505431213761e-20,-5.7777898331617076e-34,1.3842621475283258e-33,0.00019841270113829523,3.9302328752599536e-19,6.776263578034403e-20,1.1328806141609079e-18,5.991679665100559e-19,4.4056469836361075e-20,0.0017857142956927419,1.881090810621381e-18,-0.0005952381179668009,-0.0008928571478463709,-1.4295331210238362e-18,-1.387778801460961e-18,2.981555974335137e-19,-2.3472271197219437e-34,5.7176045223996064e-34,3.9302328752599536e-19,0.00029761905898340046,2.4063948054541133e-19,9.150190251976103e-19,3.53807326769104e-19,5.950548128263606e-35,0.002142857061699033,9.08104519059703e-18,-0.0007142857066355646,1.16377591343734e-18,-0.0014285714132711291,-4.0443837997922714e-18,-1.3552527156068805e-20,-4.758098496757752e-19,2.0508144642185957e-33,6.776263578034403e-20,2.4063948054541133e-19,0.0004761904710903764,-4.531522353246055e-19,5.701197615414546e-20,-9.62735559218191e-19,0.001700680237263441,-6.7972838917606e-18,-9.269287509776334e-18,-0.003401360474526882,4.871027158537446e-18,1.69932097294015e-18,1.1328806141609079e-18,2.5423323659935653e-33,-9.242666879740905e-34,1.1328806141609079e-18,9.150190251976103e-19,-4.531522353246055e-19,0.0008503401186317205,-1.697522733987248e-19,-7.552537427739386e-19,0.0028571428265422583,4.2822888021783414e-18,-5.181157022518277e-18,-0.0014285714132711291,-0.0019047618843615055,-2.2204459996194763e-18,4.758098496757752e-19,-6.34413150133963e-19,1.2529203984556091e-33,5.991679665100559e-19,3.53807326769104e-19,5.701197615414546e-20,-1.697522733987248e-19,0.0009523809421807528,3.0379821304116752e-33,0.0023809524718672037,2.2997477222268738e-17,9.154256878662566e-19,5.400064167775842e-18,-0.0071428571827709675,-9.119689414454282e-18,5.7777898331617076e-34,-2.3790494034752407e-18,5.3177678331490826e-33,4.4056469836361075e-20,5.950548128263606e-35,-9.62735559218191e-19,-7.552537427739386e-19,3.0379821304116752e-33,0.0023809524718672037,3.0,7.0,5.0,5.0,0.06964852660894394,-0.026428570970892906,-0.014047618955373764,-0.018299318850040436,-0.018299318850040436,0.0028571428265422583,0.002142857061699033,0.0028571428265422583,0.0028571428265422583,0.0007936508045531809,0.0014285714132711291,0.0014285714132711291,0.0013605442363768816,0.0019047618843615055,0.0013605442363768816,-0.026428570970892906,0.054999999701976776,0.002142857061699033,0.0028571428265422583,0.0028571428265422583,-0.017142856493592262,-0.002142857061699033,-0.0028571428265422583,-0.0028571428265422583,-1.374561799440859e-18,-9.516196993515503e-19,-9.516196993515503e-19,-2.7189135153452095e-18,-1.268826300267926e-18,-2.7189135153452095e-18,-0.014047618955373764,0.002142857061699033,0.008809523656964302,0.0014285714132711291,0.0014285714132711291,-6.026924797025678e-18,-0.0007142857066355646,-0.0,-0.0,-0.0009523809421807528,-0.0004761904710903764,-0.0004761904710903764,-9.558901492405986e-34,-4.460820604620631e-34,-9.558901492405986e-34,-0.018299318850040436,0.0028571428265422583,0.0014285714132711291,0.017312925308942795,0.0019047618843615055,-8.134083035082035e-18,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0007142857066355646,-3.7229405305016625e-34,-0.002721088472753763,-0.0009523809421807528,-1.2900922848934946e-33,-0.018299318850040436,0.0028571428265422583,0.0014285714132711291,0.0019047618843615055,0.017312925308942795,-8.134083035082035e-18,-0.0,-0.0,-0.0014285714132711291,1.1455201632312808e-34,-3.7229405305016625e-34,-0.0007142857066355646,-1.2900922848934946e-33,-0.0009523809421807528,-0.002721088472753763,0.0028571428265422583,-0.017142856493592262,-6.026924797025678e-18,-8.134083035082035e-18,-8.134083035082035e-18,0.008571428246796131,-0.0,-0.0,-0.0,6.872808997204295e-19,4.758098496757752e-19,4.758098496757752e-19,1.3594567576726047e-18,6.34413150133963e-19,1.3594567576726047e-18,0.002142857061699033,-0.002142857061699033,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0,0.0,0.0028571428265422583,-0.0028571428265422583,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0028571428265422583,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,-1.374561799440859e-18,-0.0009523809421807528,-0.0,1.1455201632312808e-34,6.872808997204295e-19,-0.0,-0.0,-0.0,0.00015873015217948705,-0.0,0.0,1.0900501460194117e-34,5.086900719688711e-35,1.0900501460194117e-34,0.0014285714132711291,-9.516196993515503e-19,-0.0004761904710903764,-0.0007142857066355646,-3.7229405305016625e-34,4.758098496757752e-19,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,0.0,7.546500966751939e-35,3.5217004320185096e-35,7.546500966751939e-35,0.0014285714132711291,-9.516196993515503e-19,-0.0004761904710903764,-3.7229405305016625e-34,-0.0007142857066355646,4.758098496757752e-19,-0.0,-0.0,-0.0,0.0,0.0,0.0002380952355451882,7.546500966751939e-35,3.5217004320185096e-35,7.546500966751939e-35,0.0013605442363768816,-2.7189135153452095e-18,-9.558901492405986e-34,-0.002721088472753763,-1.2900922848934946e-33,1.3594567576726047e-18,0.0,-0.0,-0.0,1.0900501460194117e-34,7.546500966751939e-35,7.546500966751939e-35,0.0006802721181884408,1.0062000906354684e-34,2.1561431661560882e-34,0.0019047618843615055,-1.268826300267926e-18,-4.460820604620631e-34,-0.0009523809421807528,-0.0009523809421807528,6.34413150133963e-19,0.0,-0.0,-0.0,5.086900719688711e-35,3.5217004320185096e-35,3.5217004320185096e-35,1.0062000906354684e-34,0.0004761904710903764,1.0062000906354684e-34,0.0013605442363768816,-2.7189135153452095e-18,-9.558901492405986e-34,-1.2900922848934946e-33,-0.002721088472753763,1.3594567576726047e-18,0.0,-0.0,-0.0,1.0900501460194117e-34,7.546500966751939e-35,7.546500966751939e-35,2.1561431661560882e-34,1.0062000906354684e-34,0.0006802721181884408,3.0,7.0,5.0,6.0,0.06013794243335724,-0.022363945841789246,-0.011876417323946953,-0.015476190485060215,-0.01343537401407957,0.0023809524718672037,0.0017857142956927419,0.0023809524718672037,0.0020408162381500006,0.0006613756413571537,0.0011904762359336019,0.0010204081190750003,0.0011337868636474013,0.0013605442363768816,0.0008503401186317205,-0.022363945841789246,0.046173468232154846,0.0017857142956927419,0.0023809524718672037,0.0020408162381500006,-0.014285714365541935,-0.0017857142956927419,-0.0023809524718672037,-0.0020408162381500006,-1.1446344370749801e-18,-7.930164505921508e-19,-7.469495732069422e-19,-2.2657612283218157e-18,-8.751039417267467e-19,-1.4731055835731029e-18,-0.011876417323946953,0.0017857142956927419,0.007397959008812904,0.0011904762359336019,0.0010204081190750003,-5.079081694158315e-18,-0.0005952381179668009,-2.64338825480515e-19,-2.710505431213761e-19,-0.0007936508045531809,-0.00039682540227659047,-0.0003401360590942204,-8.055590236143171e-34,8.470329472543003e-21,-8.557738552600277e-20,-0.015476190485060215,0.0023809524718672037,0.0011904762359336019,0.01454081665724516,0.0013605442363768816,-6.853927979337313e-18,-2.64338825480515e-19,-0.0011904762359336019,3.1200596777123843e-20,-0.0,-0.0005952381179668009,8.470329472543003e-21,-0.0022675737272948027,-0.0006802721181884408,2.344920681033733e-20,-0.01343537401407957,0.0020408162381500006,0.0010204081190750003,0.0013605442363768816,0.010051020421087742,-5.820174311640499e-18,-2.422802708385927e-19,-1.075940540389698e-34,-0.0008163265301845968,1.0168834192701974e-20,-2.9698343607084397e-34,-0.0004081632650922984,-9.230988159694493e-34,-0.0005442177061922848,-0.0012755101779475808,0.0023809524718672037,-0.014285714365541935,-5.079081694158315e-18,-6.853927979337313e-18,-5.820174311640499e-18,0.0071428571827709675,-0.0,-0.0,7.011424174753695e-36,5.727341175662168e-19,3.965082252960754e-19,3.398641894181512e-19,1.1328806141609079e-18,4.531522353246055e-19,7.788554286979727e-19,0.0017857142956927419,-0.0017857142956927419,-0.0005952381179668009,-2.64338825480515e-19,-2.422802708385927e-19,-0.0,0.0005952381179668009,2.64338825480515e-19,2.26325998924582e-19,-0.0,-0.0,6.776263578034403e-21,0.0,-3.7448520781046635e-36,-8.061129524302843e-22,0.0023809524718672037,-0.0023809524718672037,-2.64338825480515e-19,-0.0011904762359336019,-1.075940540389698e-34,-0.0,2.64338825480515e-19,0.0011904762359336019,1.0050893403094375e-34,-0.0,-0.0,3.009265538105056e-36,0.0,-0.0,-3.5798606409466606e-37,0.0020408162381500006,-0.0020408162381500006,-2.710505431213761e-19,3.1200596777123843e-20,-0.0008163265301845968,7.011424174753695e-36,2.26325998924582e-19,1.0050893403094375e-34,0.0008163265301845968,-3.3351799614490096e-22,-3.009265538105056e-36,1.8756968240080593e-20,-0.0,-1.2480239357084391e-20,-3.28747877187113e-20,0.0006613756413571537,-1.1446344370749801e-18,-0.0007936508045531809,-0.0,1.0168834192701974e-20,5.727341175662168e-19,-0.0,-0.0,-3.3351799614490096e-22,0.00013227513409219682,-0.0,0.0,9.083751408152381e-35,3.611118645726067e-35,-1.018361317990604e-21,0.0011904762359336019,-7.930164505921508e-19,-0.00039682540227659047,-0.0005952381179668009,-2.9698343607084397e-34,3.965082252960754e-19,-0.0,-0.0,-3.009265538105056e-36,-0.0,0.00019841270113829523,1.1243886864216605e-35,6.28875070996464e-35,2.5043204028751376e-35,4.3234943380435934e-35,0.0010204081190750003,-7.469495732069422e-19,-0.0003401360590942204,8.470329472543003e-21,-0.0004081632650922984,3.398641894181512e-19,6.776263578034403e-21,3.009265538105056e-36,1.8756968240080593e-20,0.0,1.1243886864216605e-35,0.0001360544265480712,5.390357915390221e-35,-3.3881317890172014e-21,3.72011361928197e-20,0.0011337868636474013,-2.2657612283218157e-18,-8.055590236143171e-34,-0.0022675737272948027,-9.230988159694493e-34,1.1328806141609079e-18,0.0,0.0,-0.0,9.083751408152381e-35,6.28875070996464e-35,5.390357915390221e-35,0.0005668934318237007,7.187144078510911e-35,1.235290393875049e-34,0.0013605442363768816,-8.751039417267467e-19,8.470329472543003e-21,-0.0006802721181884408,-0.0005442177061922848,4.531522353246055e-19,-3.7448520781046635e-36,-0.0,-1.2480239357084391e-20,3.611118645726067e-35,2.5043204028751376e-35,-3.3881317890172014e-21,7.187144078510911e-35,0.0002721088530961424,-9.379682885693645e-21,0.0008503401186317205,-1.4731055835731029e-18,-8.557738552600277e-20,2.344920681033733e-20,-0.0012755101779475808,7.788554286979727e-19,-8.061129524302843e-22,-3.5798606409466606e-37,-3.28747877187113e-20,-1.018361317990604e-21,4.3234943380435934e-35,3.72011361928197e-20,1.235290393875049e-34,-9.379682885693645e-21,0.00025510202976875007,3.0,7.0,5.0,7.0,0.05293569713830948,-0.019387755542993546,-0.010289115831255913,-0.013411078602075577,-0.010289115831255913,0.0020408162381500006,0.0015306122368201613,0.0020408162381500006,0.0015306122368201613,0.0005668934318237007,0.0010204081190750003,0.0007653061184100807,0.0009718172950670123,0.0010204081190750003,0.0005668934318237007,-0.019387755542993546,0.03979591652750969,0.0015306122368201613,0.0020408162381500006,0.0015306122368201613,-0.01224489789456129,-0.0015306122368201613,-0.0020408162381500006,-0.0015306122368201613,3.9553820610137096e-18,2.704752596848608e-18,4.132381341307194e-18,-8.209806353680013e-19,3.0842041252692926e-18,4.6333293648948204e-18,-0.010289115831255913,0.0015306122368201613,0.0063775512389838696,0.0010204081190750003,0.0007653061184100807,1.736139609185498e-17,-0.0005102040595375001,2.031555584430236e-18,1.5449880957918438e-18,-0.0006802721181884408,-0.0003401360590942204,-0.00025510202976875007,-8.021953119581338e-19,4.515021134001388e-19,1.5932254434056033e-18,-0.013411078602075577,0.0020408162381500006,0.0010204081190750003,0.012536442838609219,0.0010204081190750003,4.3696825018461e-18,-1.3792244097586673e-18,-0.0010204081190750003,2.0586196933020522e-18,-5.421010862427522e-20,-0.0005102040595375001,3.9830240589409706e-19,-0.0019436345901340246,-0.0005102040595375001,1.60944097514621e-18,-0.010289115831255913,0.0015306122368201613,0.0007653061184100807,0.0010204081190750003,0.0063775512389838696,1.736139609185498e-17,1.152575164160336e-18,4.923907574327042e-18,-0.0005102040595375001,1.8505388946967347e-18,6.766640365583114e-19,-0.00025510202976875007,1.893767560303909e-18,-0.0003401360590942204,-0.0006802721181884408,0.0020408162381500006,-0.01224489789456129,1.736139609185498e-17,4.3696825018461e-18,1.736139609185498e-17,0.006122448947280645,-1.5293888136075891e-18,-3.398641894181512e-19,-1.5293888136075891e-18,-1.5482702450648777e-18,-8.49660486470075e-19,-1.2744907297051125e-18,3.2368019393839806e-19,-8.49660486470075e-19,-1.5482702450648777e-18,0.0015306122368201613,-0.0015306122368201613,-0.0005102040595375001,-1.3792244097586673e-18,1.152575164160336e-18,-1.5293888136075891e-18,0.0005102040595375001,-7.733644357707838e-20,-2.0410757870458678e-19,-1.2197274440461925e-19,-0.0,-1.3552527156068805e-19,3.64140208487175e-19,3.6713039564881683e-34,-6.92069642156955e-20,0.0020408162381500006,-0.0020408162381500006,2.031555584430236e-18,-0.0010204081190750003,4.923907574327042e-18,-3.398641894181512e-19,-7.733644357707838e-20,0.0010204081190750003,-5.097962712025297e-19,-9.440671784674232e-20,-2.2657611766230274e-19,-2.5489813560126485e-19,-1.964100168699273e-19,-3.5196367043069403e-19,-4.342709072648935e-19,0.0015306122368201613,-0.0015306122368201613,1.5449880957918438e-18,2.0586196933020522e-18,-0.0005102040595375001,-1.5293888136075891e-18,-2.0410757870458678e-19,-5.097962712025297e-19,0.0005102040595375001,-6.990112384599235e-20,-1.2744906780063243e-19,-1.7985951575532782e-19,-1.21380069495725e-19,-1.703412518442567e-19,-1.2207324684904444e-19,0.0005668934318237007,3.9553820610137096e-18,-0.0006802721181884408,-5.421010862427522e-20,1.8505388946967347e-18,-1.5482702450648777e-18,-1.2197274440461925e-19,-9.440671784674232e-20,-6.990112384599235e-20,0.00011337868636474013,-2.710505431213761e-20,-1.3552527156068805e-19,3.5964465634135977e-20,-2.832201470778784e-20,-2.1553833589066878e-19,0.0010204081190750003,2.704752596848608e-18,-0.0003401360590942204,-0.0005102040595375001,6.766640365583114e-19,-8.49660486470075e-19,-0.0,-2.2657611766230274e-19,-1.2744906780063243e-19,-2.710505431213761e-20,0.0001700680295471102,-7.14384034715052e-21,1.1113414513954864e-19,-7.979862421852489e-20,-4.720335892337116e-20,0.0007653061184100807,4.132381341307194e-18,-0.00025510202976875007,3.9830240589409706e-19,-0.00025510202976875007,-1.2744907297051125e-18,-1.3552527156068805e-19,-2.5489813560126485e-19,-1.7985951575532782e-19,-1.3552527156068805e-19,-7.14384034715052e-21,8.50340147735551e-05,4.2129717533470784e-35,-4.0657581468206416e-20,-4.59015866655401e-20,0.0009718172950670123,-8.209806353680013e-19,-8.021953119581338e-19,-0.0019436345901340246,1.893767560303909e-18,3.2368019393839806e-19,3.64140208487175e-19,-1.964100168699273e-19,-1.21380069495725e-19,3.5964465634135977e-20,1.1113414513954864e-19,4.2129717533470784e-35,0.00048590864753350616,-1.8488670592811885e-19,-1.7982231847715708e-19,0.0010204081190750003,3.0842041252692926e-18,4.515021134001388e-19,-0.0005102040595375001,-0.0003401360590942204,-8.49660486470075e-19,3.6713039564881683e-34,-3.5196367043069403e-19,-1.703412518442567e-19,-2.832201470778784e-20,-7.979862421852489e-20,-4.0657581468206416e-20,-1.8488670592811885e-19,0.0001700680295471102,-8.377762792119491e-20,0.0005668934318237007,4.6333293648948204e-18,1.5932254434056033e-18,1.60944097514621e-18,-0.0006802721181884408,-1.5482702450648777e-18,-6.92069642156955e-20,-4.342709072648935e-19,-1.2207324684904444e-19,-2.1553833589066878e-19,-4.720335892337116e-20,-4.59015866655401e-20,-1.7982231847715708e-19,-8.377762792119491e-20,0.00011337868636474013,3.0,7.0,5.0,8.0,0.04728599637746811,-0.01711309514939785,-0.00907738134264946,-0.011833900585770607,-0.008134921081364155,0.0017857142956927419,0.0013392857508733869,0.0017857142956927419,0.0011904762359336019,0.0004960317746736109,0.0008928571478463709,0.0005952381179668009,0.0008503401186317205,0.0007936508045531809,0.00039682540227659047,-0.01711309514939785,0.0349702388048172,0.0013392857508733869,0.0017857142956927419,0.0011904762359336019,-0.010714286006987095,-0.0013392857508733869,-0.0017857142956927419,-0.0011904762359336019,3.0482012959030752e-18,9.388242492511207e-19,2.3062058107822897e-18,-3.3986419458803e-18,8.227405138199962e-19,2.387154946297648e-18,-0.00907738134264946,0.0013392857508733869,0.0056051588617265224,0.0008928571478463709,0.0005952381179668009,1.6785514603756786e-17,-0.00044642857392318547,3.3986418295580265e-20,4.743384504624082e-20,-0.0005952381179668009,-0.00029761905898340046,-0.00019841270113829523,-5.383603687176343e-18,-1.7957098481791167e-18,-3.905313025331028e-19,-0.011833900585770607,0.0017857142956927419,0.0008928571478463709,0.01101899053901434,0.0007936508045531809,4.012285573110034e-19,-3.805836491660554e-18,-0.0008928571478463709,2.1996632418254464e-19,-3.767602549387128e-18,-0.00044642857392318547,-8.874483715981819e-19,-0.001700680237263441,-0.00039682540227659047,4.398327663061235e-19,-0.008134921081364155,0.0011904762359336019,0.0005952381179668009,0.0007936508045531809,0.004308389965444803,1.2895958335119128e-17,-5.708512993956812e-19,2.8699643466180584e-18,-0.0003401360590942204,-8.994096100508518e-19,-6.2341624917916505e-19,-0.0001700680295471102,3.865323754098976e-19,-0.00022675737272948027,-0.00039682540227659047,0.0017857142956927419,-0.010714286006987095,1.6785514603756786e-17,4.012285573110034e-19,1.2895958335119128e-17,0.0053571430034935474,-1.4869058513226313e-18,7.382993490766775e-33,-1.1328806141609079e-18,-1.5529905512304115e-18,-6.938894007304805e-19,-1.0290332581337037e-18,8.49660486470075e-19,-4.909149431428177e-19,-9.912706020142797e-19,0.0013392857508733869,-0.0013392857508733869,-0.00044642857392318547,-3.805836491660554e-18,-5.708512993956812e-19,-1.4869058513226313e-18,0.00044642857392318547,3.6252180376932087e-19,-2.8159499566815315e-20,1.3552527156068805e-20,1.4907779871675686e-19,1.0164395367051604e-20,5.664403070804539e-19,1.520187747612038e-19,3.493132674258005e-20,0.0017857142956927419,-0.0017857142956927419,3.3986418295580265e-20,-0.0008928571478463709,2.8699643466180584e-18,7.382993490766775e-33,3.6252180376932087e-19,0.0008928571478463709,-2.2657611766230274e-19,-6.2592723192585165e-34,-2.8888949165808538e-34,-1.1328805883115137e-19,7.174594872755292e-34,-1.5105075372466654e-19,-2.64338825480515e-19,0.0011904762359336019,-0.0011904762359336019,4.743384504624082e-20,2.1996632418254464e-19,-0.0003401360590942204,-1.1328806141609079e-18,-2.8159499566815315e-20,-2.2657611766230274e-19,0.0003401360590942204,4.892069331157565e-21,4.917531186336105e-22,-1.4873229248347685e-20,-2.046300565911438e-34,1.4670099660467839e-21,5.505654380428998e-21,0.0004960317746736109,3.0482012959030752e-18,-0.0005952381179668009,-3.767602549387128e-18,-8.994096100508518e-19,-1.5529905512304115e-18,1.3552527156068805e-20,-6.2592723192585165e-34,4.892069331157565e-21,9.920635056914762e-05,2.0328790734103208e-19,4.0657581468206416e-20,5.664403070804539e-19,1.8590827398462184e-19,4.9927361615736314e-20,0.0008928571478463709,9.388242492511207e-19,-0.00029761905898340046,-0.00044642857392318547,-6.2341624917916505e-19,-6.938894007304805e-19,1.4907779871675686e-19,-2.8888949165808538e-34,4.917531186336105e-22,2.0328790734103208e-19,0.00014880952949170023,7.623296525288703e-20,4.575095125988051e-19,1.1154829120779922e-19,2.260194606529715e-20,0.0005952381179668009,2.3062058107822897e-18,-0.00019841270113829523,-8.874483715981819e-19,-0.0001700680295471102,-1.0290332581337037e-18,1.0164395367051604e-20,-1.1328805883115137e-19,-1.4873229248347685e-20,4.0657581468206416e-20,7.623296525288703e-20,5.668934318237007e-05,1.1688451088756122e-19,6.182472621548065e-20,-1.0331427689650496e-20,0.0008503401186317205,-3.3986419458803e-18,-5.383603687176343e-18,-0.001700680237263441,3.865323754098976e-19,8.49660486470075e-19,5.664403070804539e-19,7.174594872755292e-34,-2.046300565911438e-34,5.664403070804539e-19,4.575095125988051e-19,1.1688451088756122e-19,0.00042517005931586027,-4.0417207952077335e-20,-6.293781405194439e-20,0.0007936508045531809,8.227405138199962e-19,-1.7957098481791167e-18,-0.00039682540227659047,-0.00022675737272948027,-4.909149431428177e-19,1.520187747612038e-19,-1.5105075372466654e-19,1.4670099660467839e-21,1.8590827398462184e-19,1.1154829120779922e-19,6.182472621548065e-20,-4.0417207952077335e-20,0.00011337868636474013,2.414708834949388e-21,0.00039682540227659047,2.387154946297648e-18,-3.905313025331028e-19,4.398327663061235e-19,-0.00039682540227659047,-9.912706020142797e-19,3.493132674258005e-20,-2.64338825480515e-19,5.505654380428998e-21,4.9927361615736314e-20,2.260194606529715e-20,-1.0331427689650496e-20,-6.293781405194439e-20,2.414708834949388e-21,5.668934318237007e-05,3.0,7.0,6.0,3.0,0.08865582942962646,-0.03528911620378494,-0.018801964819431305,-0.021258503198623657,-0.03528911620378494,0.003968254197388887,0.0029761905316263437,0.003401360474526882,0.0059523810632526875,0.001102292793802917,0.001700680237263441,0.0029761905316263437,0.0014172336086630821,0.003401360474526882,0.003968254197388887,-0.03528911620378494,0.07497165352106094,0.0029761905316263437,0.003401360474526882,0.0059523810632526875,-0.02380952425301075,-0.0029761905316263437,-0.003401360474526882,-0.0059523810632526875,3.744538272367312e-18,2.0064760886430876e-18,3.965082408057119e-18,5.198007105186289e-18,4.594027946040895e-18,2.643388161747331e-17,-0.018801964819431305,0.0029761905316263437,0.01199924387037754,0.001700680237263441,0.0029761905316263437,1.8954770944758725e-17,-0.0009920635493472219,-2.168404344971009e-19,-6.413416362849782e-33,-0.0013227512827143073,-0.0005668934318237007,-0.0009920635493472219,-3.9372256533633237e-19,-0.0,-1.9066706449433635e-32,-0.021258503198623657,0.003401360474526882,0.001700680237263441,0.016298186033964157,0.003401360474526882,2.23280879290051e-17,-9.595812093497967e-21,-0.0013605442363768816,-7.554791255455483e-33,-0.0,-0.0006802721181884408,0.0,-0.002125850412994623,-0.0013605442363768816,1.055406857309676e-17,-0.03528911620378494,0.0059523810632526875,0.0029761905316263437,0.003401360474526882,0.07497165352106094,4.2073929743856463e-17,-4.381204927446159e-21,6.776263578034403e-20,-0.0059523810632526875,-5.841606435295951e-21,1.6940658945086007e-20,-0.0029761905316263437,5.204170427930421e-18,-0.003401360474526882,-0.02380952425301075,0.003968254197388887,-0.02380952425301075,1.8954770944758725e-17,2.23280879290051e-17,4.2073929743856463e-17,0.011904762126505375,-2.6853467328829607e-18,-3.6827611154994015e-18,-4.028020099324441e-18,-1.909113621823146e-18,-1.1328806141609079e-18,-1.9825412040285595e-18,-2.5961847278607168e-18,-2.2657612283218157e-18,-1.3216940808736655e-17,0.0029761905316263437,-0.0029761905316263437,-0.0009920635493472219,-9.595812093497967e-21,-4.381204927446159e-21,-2.6853467328829607e-18,0.0009920635493472219,-2.287855558525231e-21,9.085969809356448e-34,2.710505431213761e-20,6.776263578034403e-21,-0.0,-1.879165529974205e-21,1.752481890199107e-21,2.965331436743073e-33,0.003401360474526882,-0.003401360474526882,-2.168404344971009e-19,-0.0013605442363768816,6.776263578034403e-20,-3.6827611154994015e-18,-2.287855558525231e-21,0.0013605442363768816,1.2460758070914579e-33,-3.0504740780336412e-21,9.558254862513791e-20,3.2054925090444994e-34,6.314573129568714e-35,-2.710505431213761e-20,4.044452883213195e-33,0.0059523810632526875,-0.0059523810632526875,-6.413416362849782e-33,-7.554791255455483e-33,-0.0059523810632526875,-4.028020099324441e-18,9.085969809356448e-34,1.2460758070914579e-33,0.0059523810632526875,6.4595563528294796e-34,3.8331433554799923e-34,6.708000757295616e-34,8.7842865310576e-34,7.666286710959985e-34,4.4720007497584006e-33,0.001102292793802917,3.744538272367312e-18,-0.0013227512827143073,-0.0,-5.841606435295951e-21,-1.909113621823146e-18,2.710505431213761e-20,-3.0504740780336412e-21,6.4595563528294796e-34,0.00022045854711905122,1.3552527156068805e-20,0.0,4.605830104090839e-21,2.336642654897737e-21,2.0982054373269578e-33,0.001700680237263441,2.0064760886430876e-18,-0.0005668934318237007,-0.0006802721181884408,1.6940658945086007e-20,-1.1328806141609079e-18,6.776263578034403e-21,9.558254862513791e-20,3.8331433554799923e-34,1.3552527156068805e-20,0.00022675737272948027,-0.0,1.4626552680574435e-19,-6.776263578034403e-21,5.296307347064899e-34,0.0029761905316263437,3.965082408057119e-18,-0.0009920635493472219,0.0,-0.0029761905316263437,-1.9825412040285595e-18,-0.0,3.2054925090444994e-34,6.708000757295616e-34,0.0,-0.0,0.0009920635493472219,-2.507602373919084e-35,-0.0,2.1987337142092798e-33,0.0014172336086630821,5.198007105186289e-18,-3.9372256533633237e-19,-0.002125850412994623,5.204170427930421e-18,-2.5961847278607168e-18,-1.879165529974205e-21,6.314573129568714e-35,8.7842865310576e-34,4.605830104090839e-21,1.4626552680574435e-19,-2.507602373919084e-35,0.00042517005931586027,-5.333602170111161e-19,-1.888134460332423e-18,0.003401360474526882,4.594027946040895e-18,-0.0,-0.0013605442363768816,-0.003401360474526882,-2.2657612283218157e-18,1.752481890199107e-21,-2.710505431213761e-20,7.666286710959985e-34,2.336642654897737e-21,-6.776263578034403e-21,-0.0,-5.333602170111161e-19,0.0013605442363768816,-1.1133961680370681e-18,0.003968254197388887,2.643388161747331e-17,-1.9066706449433635e-32,1.055406857309676e-17,-0.02380952425301075,-1.3216940808736655e-17,2.965331436743073e-33,4.044452883213195e-33,4.4720007497584006e-33,2.0982054373269578e-33,5.296307347064899e-34,2.1987337142092798e-33,-1.888134460332423e-18,-1.1133961680370681e-18,0.011904762126505375,3.0,7.0,6.0,4.0,0.07158683240413666,-0.027359694242477417,-0.014547902159392834,-0.01645408198237419,-0.022363945841789246,0.0029761905316263437,0.0022321429569274187,0.0025510203558951616,0.0035714285913854837,0.0008267195662483573,0.0012755101779475808,0.0017857142956927419,0.0010629252064973116,0.0020408162381500006,0.0019841270986944437,-0.027359694242477417,0.05712159723043442,0.0022321429569274187,0.0025510203558951616,0.0035714285913854837,-0.01785714365541935,-0.0022321429569274187,-0.0025510203558951616,-0.0035714285913854837,2.945611874792411e-18,1.6349464689488232e-18,2.418752625311714e-18,3.897017437762887e-18,2.689104200815483e-18,9.251858814269842e-18,-0.014547902159392834,0.0022321429569274187,0.009148242883384228,0.0012755101779475808,0.0017857142956927419,1.400995803481063e-17,-0.0007440476329065859,-8.345973853438166e-20,-3.7922564477160276e-33,-0.0009920635493472219,-0.00042517005931586027,-0.0005952381179668009,-1.5099685773787988e-19,1.3552527156068805e-20,-7.174089042842454e-33,-0.01645408198237419,0.0025510203558951616,0.0012755101779475808,0.012427721172571182,0.0020408162381500006,1.6395412918154328e-17,2.75096102551614e-20,-0.0010204081190750003,-4.437958800700572e-33,5.421010862427522e-20,-0.0005102040595375001,-1.335082918033798e-20,-0.0015943878097459674,-0.0008163265301845968,3.7718617023611634e-18,-0.022363945841789246,0.0035714285913854837,0.0017857142956927419,0.0020408162381500006,0.028798185288906097,2.326181602189986e-17,4.405093160366609e-20,-3.502635880896988e-20,-0.0023809524718672037,5.134242530574446e-20,-1.0164395367051604e-20,-0.0011904762359336019,2.8189256484623115e-18,-0.0013605442363768816,-0.0059523810632526875,0.0029761905316263437,-0.01785714365541935,1.400995803481063e-17,1.6395412918154328e-17,2.326181602189986e-17,0.008928571827709675,-1.5105074855478771e-18,-2.071553075769625e-18,-2.4168120595946647e-18,-1.4318352680661478e-18,-8.49660486470075e-19,-1.1895247017376204e-18,-1.9471384941967493e-18,-1.3594567576726047e-18,-4.625929407134921e-18,0.0022321429569274187,-0.0022321429569274187,-0.0007440476329065859,2.75096102551614e-20,4.405093160366609e-20,-1.5105074855478771e-18,0.0007440476329065859,-1.8786992563812344e-22,4.088686184621661e-34,-2.710505431213761e-20,-6.776263578034403e-21,-1.3552527156068805e-20,-9.134412524961735e-22,-1.357340074378709e-21,7.876156533619919e-34,0.0025510203558951616,-0.0025510203558951616,-8.345973853438166e-20,-0.0010204081190750003,-3.502635880896988e-20,-2.071553075769625e-18,-1.8786992563812344e-22,0.0010204081190750003,5.607341315582553e-34,-2.5049322576964826e-22,3.3881317890172014e-20,3.816799107836887e-22,3.551947600621846e-35,1.3552527156068805e-20,1.0111132208032988e-33,0.0035714285913854837,-0.0035714285913854837,-3.7922564477160276e-33,-4.437958800700572e-33,-0.0023809524718672037,-2.4168120595946647e-18,4.088686184621661e-34,5.607341315582553e-34,0.0023809524718672037,3.875733903533184e-34,2.2998859214524992e-34,3.219840427786743e-34,5.270572285976545e-34,3.679817566159495e-34,1.2521601842184133e-33,0.0008267195662483573,2.945611874792411e-18,-0.0009920635493472219,5.421010862427522e-20,5.134242530574446e-20,-1.4318352680661478e-18,-2.710505431213761e-20,-2.5049322576964826e-22,3.875733903533184e-34,0.0001653439103392884,-2.710505431213761e-20,-2.710505431213761e-20,4.784489403395572e-21,-1.8097867658382787e-21,7.485270223660449e-34,0.0012755101779475808,1.6349464689488232e-18,-0.00042517005931586027,-0.0005102040595375001,-1.0164395367051604e-20,-8.49660486470075e-19,-6.776263578034403e-21,3.3881317890172014e-20,2.2998859214524992e-34,-2.710505431213761e-20,0.0001700680295471102,3.3881317890172014e-21,4.796662367773313e-20,-0.0,3.851859888774472e-34,0.0017857142956927419,2.418752625311714e-18,-0.0005952381179668009,-1.335082918033798e-20,-0.0011904762359336019,-1.1895247017376204e-18,-1.3552527156068805e-20,3.816799107836887e-22,3.219840427786743e-34,-2.710505431213761e-20,3.3881317890172014e-21,0.00039682540227659047,5.963748558663481e-22,-2.8771572224581033e-22,6.1933505042289065e-34,0.0010629252064973116,3.897017437762887e-18,-1.5099685773787988e-19,-0.0015943878097459674,2.8189256484623115e-18,-1.9471384941967493e-18,-9.134412524961735e-22,3.551947600621846e-35,5.270572285976545e-34,4.784489403395572e-21,4.796662367773313e-20,5.963748558663481e-22,0.0003188775444868952,-3.00652984949782e-19,-6.608470507765904e-19,0.0020408162381500006,2.689104200815483e-18,1.3552527156068805e-20,-0.0008163265301845968,-0.0013605442363768816,-1.3594567576726047e-18,-1.357340074378709e-21,1.3552527156068805e-20,3.679817566159495e-34,-1.8097867658382787e-21,-0.0,-2.8771572224581033e-22,-3.00652984949782e-19,0.0005442177061922848,-3.1175093118628214e-19,0.0019841270986944437,9.251858814269842e-18,-7.174089042842454e-33,3.7718617023611634e-18,-0.0059523810632526875,-4.625929407134921e-18,7.876156533619919e-34,1.0111132208032988e-33,1.2521601842184133e-33,7.485270223660449e-34,3.851859888774472e-34,6.1933505042289065e-34,-6.608470507765904e-19,-3.1175093118628214e-19,0.0019841270986944437,3.0,7.0,6.0,5.0,0.06013794243335724,-0.022363945841789246,-0.011876417323946953,-0.01343537401407957,-0.015476190485060215,0.0023809524718672037,0.0017857142956927419,0.0020408162381500006,0.0023809524718672037,0.0006613756413571537,0.0010204081190750003,0.0011904762359336019,0.0008503401186317205,0.0013605442363768816,0.0011337868636474013,-0.022363945841789246,0.046173468232154846,0.0017857142956927419,0.0020408162381500006,0.0023809524718672037,-0.014285714365541935,-0.0017857142956927419,-0.0020408162381500006,-0.0023809524718672037,-1.1407308683667658e-18,-7.469495732069422e-19,-7.930164505921508e-19,-1.6154255234804546e-18,-9.06304470649211e-19,-2.2657612283218157e-18,-0.011876417323946953,0.0017857142956927419,0.007397959008812904,0.0010204081190750003,0.0011904762359336019,-5.079081694158315e-18,-0.0005952381179668009,-2.5973039549282893e-19,-2.64338825480515e-19,-0.0007936508045531809,-0.0003401360590942204,-0.00039682540227659047,-6.055835147175318e-20,-2.6782463289135e-34,-7.008927311106122e-34,-0.01343537401407957,0.0020408162381500006,0.0010204081190750003,0.010051020421087742,0.0013605442363768816,-5.820174311640499e-18,-2.2730799155865318e-19,-0.0008163265301845968,-3.6252180376932087e-19,-0.0,-0.0004081632650922984,-4.603451555932965e-21,-0.0012755101779475808,-0.0005442177061922848,1.872891382799449e-18,-0.015476190485060215,0.0023809524718672037,0.0011904762359336019,0.0013605442363768816,0.01454081665724516,-6.853927979337313e-18,-2.64338825480515e-19,-3.6252180376932087e-19,-0.0011904762359336019,-1.177204027459402e-20,-4.603451555932965e-21,-0.0005952381179668009,1.951563910473908e-18,-0.0006802721181884408,-0.0022675737272948027,0.0023809524718672037,-0.014285714365541935,-5.079081694158315e-18,-5.820174311640499e-18,-6.853927979337313e-18,0.0071428571827709675,-0.0,1.3890617001462828e-34,-0.0,5.727341175662168e-19,3.398641894181512e-19,3.965082252960754e-19,7.788554286979727e-19,4.531522353246055e-19,1.1328806141609079e-18,0.0017857142956927419,-0.0017857142956927419,-0.0005952381179668009,-2.2730799155865318e-19,-2.64338825480515e-19,-0.0,0.0005952381179668009,2.251549438217542e-19,2.64338825480515e-19,-0.0,6.776263578034403e-21,-0.0,-3.3493399263453054e-21,-2.218301011226276e-38,0.0,0.0020408162381500006,-0.0020408162381500006,-2.5973039549282893e-19,-0.0008163265301845968,-3.6252180376932087e-19,1.3890617001462828e-34,2.251549438217542e-19,0.0008163265301845968,3.6252180376932087e-19,-1.894916090890916e-21,1.8756968240080593e-20,-1.504632769052528e-36,2.710505431213761e-20,-0.0,2.407412430484045e-35,0.0023809524718672037,-0.0023809524718672037,-2.64338825480515e-19,-3.6252180376932087e-19,-0.0011904762359336019,-0.0,2.64338825480515e-19,3.6252180376932087e-19,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-3.009265538105056e-36,-0.0,0.0006613756413571537,-1.1407308683667658e-18,-0.0007936508045531809,-0.0,-1.177204027459402e-20,5.727341175662168e-19,-0.0,-1.894916090890916e-21,-0.0,0.00013227513409219682,-6.776263578034403e-21,0.0,-4.476177621008821e-21,3.630542714121259e-35,9.083751408152381e-35,0.0010204081190750003,-7.469495732069422e-19,-0.0003401360590942204,-0.0004081632650922984,-4.603451555932965e-21,3.398641894181512e-19,6.776263578034403e-21,1.8756968240080593e-20,-0.0,-6.776263578034403e-21,0.0001360544265480712,1.5344838519776551e-21,3.72011361928197e-20,-0.0,1.2037062152420224e-35,0.0011904762359336019,-7.930164505921508e-19,-0.00039682540227659047,-4.603451555932965e-21,-0.0005952381179668009,3.965082252960754e-19,-0.0,-1.504632769052528e-36,-0.0,0.0,1.5344838519776551e-21,0.00019841270113829523,4.3446271206391746e-35,2.501451978549828e-35,6.28875070996464e-35,0.0008503401186317205,-1.6154255234804546e-18,-6.055835147175318e-20,-0.0012755101779475808,1.951563910473908e-18,7.788554286979727e-19,-3.3493399263453054e-21,2.710505431213761e-20,-0.0,-4.476177621008821e-21,3.72011361928197e-20,4.3446271206391746e-35,0.00025510202976875007,-2.710505431213761e-19,-3.2368019393839806e-19,0.0013605442363768816,-9.06304470649211e-19,-2.6782463289135e-34,-0.0005442177061922848,-0.0006802721181884408,4.531522353246055e-19,-2.218301011226276e-38,-0.0,-3.009265538105056e-36,3.630542714121259e-35,-0.0,2.501451978549828e-35,-2.710505431213761e-19,0.0002721088530961424,-1.2724528410191175e-19,0.0011337868636474013,-2.2657612283218157e-18,-7.008927311106122e-34,1.872891382799449e-18,-0.0022675737272948027,1.1328806141609079e-18,0.0,2.407412430484045e-35,-0.0,9.083751408152381e-35,1.2037062152420224e-35,6.28875070996464e-35,-3.2368019393839806e-19,-1.2724528410191175e-19,0.0005668934318237007,3.0,7.0,6.0,6.0,0.051889870315790176,-0.018920067697763443,-0.010038738138973713,-0.011358114890754223,-0.011358114890754223,0.0019841270986944437,0.0014880952658131719,0.001700680237263441,0.001700680237263441,0.0005511463969014585,0.0008503401186317205,0.0008503401186317205,0.0007086168043315411,0.0009718172950670123,0.0007086168043315411,-0.018920067697763443,0.038761336356401443,0.0014880952658131719,0.001700680237263441,0.001700680237263441,-0.011904762126505375,-0.0014880952658131719,-0.001700680237263441,-0.001700680237263441,1.90060751678911e-18,1.0182417564647603e-18,1.0122807827779735e-18,2.57414243248771e-18,1.3436110790633858e-18,2.579805517756401e-18,-0.010038738138973713,0.0014880952658131719,0.006212207023054361,0.0008503401186317205,0.0008503401186317205,9.902216335999859e-18,-0.0004960317746736109,-1.4809833932331165e-19,-1.2197274440461925e-19,-0.0006613756413571537,-0.00028344671591185033,-0.00028344671591185033,-2.2251985658288997e-19,1.2731439730391254e-20,-1.9436388222720081e-19,-0.011358114890754223,0.001700680237263441,0.0008503401186317205,0.008440637961030006,0.0009718172950670123,1.164956424248545e-17,-2.185539779100957e-20,-0.0006802721181884408,-3.171285422084145e-20,-2.710505431213761e-20,-0.0003401360590942204,-4.0657581468206416e-20,-0.0010629252064973116,-0.00038872691220603883,7.115577201206717e-19,-0.011358114890754223,0.001700680237263441,0.0008503401186317205,0.0009718172950670123,0.008440637961030006,1.164956424248545e-17,-1.835043320281779e-20,3.583099551865657e-20,-0.0006802721181884408,-2.693812215594102e-20,6.906151129044402e-21,-0.0003401360590942204,1.3552527156068805e-18,-0.00038872691220603883,-0.0010629252064973116,0.0019841270986944437,-0.011904762126505375,9.902216335999859e-18,1.164956424248545e-17,1.164956424248545e-17,0.0059523810632526875,-1.3426733664414804e-18,-1.8413805577497008e-18,-1.8413805577497008e-18,-9.54556810911573e-19,-5.664403070804539e-19,-5.664403070804539e-19,-1.2980923639303584e-18,-6.473603878767961e-19,-1.2980923639303584e-18,0.0014880952658131719,-0.0014880952658131719,-0.0004960317746736109,-2.185539779100957e-20,-1.835043320281779e-20,-1.3426733664414804e-18,0.0004960317746736109,2.151381864615527e-21,4.004810536188745e-22,1.656296508084121e-35,-3.3881317890172014e-21,-0.0,5.504006885449211e-21,1.4554889547878724e-34,3.3077306816602924e-21,0.001700680237263441,-0.001700680237263441,-1.4809833932331165e-19,-0.0006802721181884408,3.583099551865657e-20,-1.8413805577497008e-18,2.151381864615527e-21,0.0006802721181884408,1.4157826262827287e-21,2.8685092874529636e-21,5.011456615928899e-20,8.060960392524763e-22,3.157286564784357e-35,-2.710505431213761e-20,5.177684537693825e-21,0.001700680237263441,-0.001700680237263441,-1.2197274440461925e-19,-3.171285422084145e-20,-0.0006802721181884408,-1.8413805577497008e-18,4.004810536188745e-22,1.4157826262827287e-21,0.0006802721181884408,5.339747213294667e-22,-1.9327400149212188e-22,4.743384504624082e-20,2.2121604545409594e-21,7.548894698805113e-21,-2.5952721036914135e-21,0.0005511463969014585,1.90060751678911e-18,-0.0006613756413571537,-2.710505431213761e-20,-2.693812215594102e-20,-9.54556810911573e-19,1.656296508084121e-35,2.8685092874529636e-21,5.339747213294667e-22,0.00011022927355952561,-0.0,1.3552527156068805e-20,-1.8340837826932817e-21,1.034435028723613e-34,1.5962191724089397e-21,0.0008503401186317205,1.0182417564647603e-18,-0.00028344671591185033,-0.0003401360590942204,6.906151129044402e-21,-5.664403070804539e-19,-3.3881317890172014e-21,5.011456615928899e-20,-1.9327400149212188e-22,-0.0,0.00011337868636474013,6.778971302070807e-21,9.031543083826676e-20,-1.0164395367051604e-20,-3.0199064626410216e-22,0.0008503401186317205,1.0122807827779735e-18,-0.00028344671591185033,-4.0657581468206416e-20,-0.0003401360590942204,-5.664403070804539e-19,-0.0,8.060960392524763e-22,4.743384504624082e-20,1.3552527156068805e-20,6.778971302070807e-21,0.00011337868636474013,1.2595250581765507e-21,5.071819555674459e-21,7.257428078007963e-20,0.0007086168043315411,2.57414243248771e-18,-2.2251985658288997e-19,-0.0010629252064973116,1.3552527156068805e-18,-1.2980923639303584e-18,5.504006885449211e-21,3.157286564784357e-35,2.2121604545409594e-21,-1.8340837826932817e-21,9.031543083826676e-20,1.2595250581765507e-21,0.00021258502965793014,-1.655689237730115e-19,-1.8599832034911648e-19,0.0009718172950670123,1.3436110790633858e-18,1.2731439730391254e-20,-0.00038872691220603883,-0.00038872691220603883,-6.473603878767961e-19,1.4554889547878724e-34,-2.710505431213761e-20,7.548894698805113e-21,1.034435028723613e-34,-1.0164395367051604e-20,5.071819555674459e-21,-1.655689237730115e-19,0.00015549076488241553,8.575983701220753e-20,0.0007086168043315411,2.579805517756401e-18,-1.9436388222720081e-19,7.115577201206717e-19,-0.0010629252064973116,-1.2980923639303584e-18,3.3077306816602924e-21,5.177684537693825e-21,-2.5952721036914135e-21,1.5962191724089397e-21,-3.0199064626410216e-22,7.257428078007963e-20,-1.8599832034911648e-19,8.575983701220753e-20,0.00021258502965793014,3.0,7.0,6.0,7.0,0.045651793479919434,-0.01639941707253456,-0.00869574025273323,-0.009839650243520737,-0.00869574025273323,0.001700680237263441,0.0012755101779475808,0.0014577260008081794,0.0012755101779475808,0.0004724111931864172,0.0007288630004040897,0.0006377550889737904,0.0006073858239687979,0.0007288630004040897,0.0004724111931864172,-0.01639941707253456,0.03340622037649155,0.0012755101779475808,0.0014577260008081794,0.0012755101779475808,-0.010204081423580647,-0.0012755101779475808,-0.0014577260008081794,-0.0012755101779475808,-7.762000755341009e-19,-5.446414613014791e-19,-3.521808570402775e-19,-1.1059349989118398e-18,-4.568787356829452e-19,-7.777394586540621e-19,-0.00869574025273323,0.0012755101779475808,0.005355118308216333,0.0007288630004040897,0.0006377550889737904,-3.698720324647693e-18,-0.00042517005931586027,-6.158596182413693e-20,6.776263578034403e-20,-0.0005668934318237007,-0.00024295432376675308,-0.00021258502965793014,-1.0342599151563936e-19,1.1494652041640325e-20,1.1154772252112809e-19,-0.009839650243520737,0.0014577260008081794,0.0007288630004040897,0.007276481948792934,0.0007288630004040897,-4.2381872542297705e-18,1.1932273398739924e-20,-0.000583090353757143,4.89894971286403e-20,2.710505431213761e-20,-0.0002915451768785715,2.710505431213761e-20,-0.0009110787068493664,-0.0002915451768785715,5.765621543447473e-19,-0.00869574025273323,0.0012755101779475808,0.0006377550889737904,0.0007288630004040897,0.005355118308216333,-3.698720324647693e-18,3.792672787859999e-21,5.5409561709949026e-21,-0.00042517005931586027,4.522188007774306e-20,-1.3384245984615415e-20,-0.00021258502965793014,1.0299920638612292e-18,-0.00024295432376675308,-0.0005668934318237007,0.001700680237263441,-0.010204081423580647,-3.698720324647693e-18,-4.2381872542297705e-18,-3.698720324647693e-18,0.005102040711790323,-0.0,9.622875132178974e-35,-2.041397468771563e-34,4.090957945688128e-19,2.4276013899145e-19,2.1241512161751876e-19,5.563253357550024e-19,2.4276013899145e-19,4.090957945688128e-19,0.0012755101779475808,-0.0012755101779475808,-0.00042517005931586027,1.1932273398739924e-20,3.792672787859999e-21,-0.0,0.00042517005931586027,1.0170030131077838e-22,-4.182333269944785e-22,-1.3552527156068805e-20,-0.0,-3.3881317890172014e-21,-2.2175627759683047e-21,2.268927990950451e-37,1.0446085504646072e-21,0.0014577260008081794,-0.0014577260008081794,-6.158596182413693e-20,-0.000583090353757143,5.5409561709949026e-21,9.622875132178974e-35,1.0170030131077838e-22,0.000583090353757143,-1.3429749488490706e-23,1.3560040595496267e-22,2.4960478714168782e-20,-5.994461879820739e-22,0.0,6.776263578034403e-21,-3.1799765134605986e-21,0.0012755101779475808,-0.0012755101779475808,6.776263578034403e-20,4.89894971286403e-20,-0.00042517005931586027,-2.041397468771563e-34,-4.182333269944785e-22,-1.3429749488490706e-23,0.00042517005931586027,-5.57644435992638e-22,-1.0933365769325305e-21,-2.0328790734103208e-20,-2.0983984068804794e-23,-1.5194062234918887e-20,-1.1878665794256666e-20,0.0004724111931864172,-7.762000755341009e-19,-0.0005668934318237007,2.710505431213761e-20,4.522188007774306e-20,4.090957945688128e-19,-1.3552527156068805e-20,1.3560040595496267e-22,-5.57644435992638e-22,9.448223863728344e-05,-1.3552527156068805e-20,-1.3552527156068805e-20,1.6512408195311376e-21,2.0312542382209128e-35,5.603613486808661e-22,0.0007288630004040897,-5.446414613014791e-19,-0.00024295432376675308,-0.0002915451768785715,-1.3384245984615415e-20,2.4276013899145e-19,-0.0,2.4960478714168782e-20,-1.0933365769325305e-21,-1.3552527156068805e-20,9.718172805150971e-05,2.3375023492013598e-21,3.908815812107763e-20,6.776263578034403e-21,-1.4577820352605768e-21,0.0006377550889737904,-3.521808570402775e-19,-0.00021258502965793014,2.710505431213761e-20,-0.00021258502965793014,2.1241512161751876e-19,-3.3881317890172014e-21,-5.994461879820739e-22,-2.0328790734103208e-20,-1.3552527156068805e-20,2.3375023492013598e-21,7.086167897796258e-05,-9.366346213903361e-22,-9.478437264839966e-21,-3.7530076195628774e-20,0.0006073858239687979,-1.1059349989118398e-18,-1.0342599151563936e-19,-0.0009110787068493664,1.0299920638612292e-18,5.563253357550024e-19,-2.2175627759683047e-21,0.0,-2.0983984068804794e-23,1.6512408195311376e-21,3.908815812107763e-20,-9.366346213903361e-22,0.00018221575010102242,-1.2696753236185292e-19,-1.2003540986183763e-19,0.0007288630004040897,-4.568787356829452e-19,1.1494652041640325e-20,-0.0002915451768785715,-0.00024295432376675308,2.4276013899145e-19,2.268927990950451e-37,6.776263578034403e-21,-1.5194062234918887e-20,2.0312542382209128e-35,6.776263578034403e-21,-9.478437264839966e-21,-1.2696753236185292e-19,9.718172805150971e-05,1.0837531361975103e-20,0.0004724111931864172,-7.777394586540621e-19,1.1154772252112809e-19,5.765621543447473e-19,-0.0005668934318237007,4.090957945688128e-19,1.0446085504646072e-21,-3.1799765134605986e-21,-1.1878665794256666e-20,5.603613486808661e-22,-1.4577820352605768e-21,-3.7530076195628774e-20,-1.2003540986183763e-19,1.0837531361975103e-20,9.448223863728344e-05,3.0,7.0,6.0,8.0,0.04076318070292473,-0.014473497867584229,-0.007670776452869177,-0.0086805559694767,-0.0068735829554498196,0.0014880952658131719,0.0011160714784637094,0.0012755101779475808,0.0009920635493472219,0.00041335978312417865,0.0006377550889737904,0.0004960317746736109,0.0005314626032486558,0.0005668934318237007,0.0003306878206785768,-0.014473497867584229,0.02935444936156273,0.0011160714784637094,0.0012755101779475808,0.0009920635493472219,-0.008928571827709675,-0.0011160714784637094,-0.0012755101779475808,-0.0009920635493472219,1.4956839953806206e-18,9.660323909470977e-19,7.023516651920511e-19,2.2790372703581387e-18,8.195118727928368e-19,1.0957753598333104e-18,-0.007670776452869177,0.0011160714784637094,0.004706396255642176,0.0006377550889737904,0.0004960317746736109,7.269317817036436e-18,-0.00037202381645329297,1.0620756080875938e-19,4.743384504624082e-20,-0.0004960317746736109,-0.00021258502965793014,-0.0001653439103392884,-1.6977580420269833e-33,-1.7787691892340307e-20,6.14977895407176e-20,-0.0086805559694767,0.0012755101779475808,0.0006377550889737904,0.006395266391336918,0.0005668934318237007,8.499807708032556e-18,1.0164395367051604e-20,-0.0005102040595375001,-3.014862983310953e-20,2.710505431213761e-20,-0.00025510202976875007,-2.5181371480637386e-20,-0.0007971939048729837,-0.00022675737272948027,3.569573339392825e-19,-0.0068735829554498196,0.0009920635493472219,0.0004960317746736109,0.0005668934318237007,0.0036173199769109488,6.941141353631535e-18,2.76900103496029e-21,9.440671784674232e-20,-0.00028344671591185033,2.4177229146960563e-21,-7.393679588297079e-21,-0.00014172335795592517,7.386018215614219e-19,-0.0001619695540284738,-0.0003306878206785768,0.0014880952658131719,-0.008928571827709675,7.269317817036436e-18,8.499807708032556e-18,6.941141353631535e-18,0.004464285913854837,-7.552537427739386e-19,-1.0357765378848125e-18,-1.1508629002923513e-18,-7.159176340330739e-19,-4.248302432350375e-19,-3.304235253882952e-19,-9.735692470983746e-19,-3.776268713869693e-19,-5.507058842636234e-19,0.0011160714784637094,-0.0011160714784637094,-0.00037202381645329297,1.0164395367051604e-20,2.76900103496029e-21,-7.552537427739386e-19,0.00037202381645329297,1.7604203397914578e-34,-6.1336866156968745e-22,-2.0328790734103208e-20,-3.3881317890172014e-21,-0.0,1.6470537819704851e-34,6.39296620497658e-35,-2.84706161094407e-22,0.0012755101779475808,-0.0012755101779475808,1.0620756080875938e-19,-0.0005102040595375001,9.440671784674232e-20,-1.0357765378848125e-18,1.7604203397914578e-34,0.0005102040595375001,2.619954895670917e-34,1.722682149766514e-34,-4.24830236772689e-20,7.246932430340869e-35,-1.3275945101094922e-19,-3.7762688431166636e-20,1.8718979562508307e-34,0.0009920635493472219,-0.0009920635493472219,4.743384504624082e-20,-3.014862983310953e-20,-0.00028344671591185033,-1.1508629002923513e-18,-6.1336866156968745e-22,2.619954895670917e-34,0.00028344671591185033,-8.178248989219492e-22,1.0903263412741069e-34,-1.1858461261560205e-20,2.3543677887257083e-34,8.613894584228537e-21,1.8544252363993404e-21,0.00041335978312417865,1.4956839953806206e-18,-0.0004960317746736109,2.710505431213761e-20,2.4177229146960563e-21,-7.159176340330739e-19,-2.0328790734103208e-20,1.722682149766514e-34,-8.178248989219492e-22,8.26719551696442e-05,-1.3552527156068805e-20,0.0,1.5612697858318247e-34,6.093762714662738e-35,6.855298201598626e-22,0.0006377550889737904,9.660323909470977e-19,-0.00021258502965793014,-0.00025510202976875007,-7.393679588297079e-21,-4.248302432350375e-19,-3.3881317890172014e-21,-4.24830236772689e-20,1.0903263412741069e-34,-1.3552527156068805e-20,8.50340147735551e-05,2.464559997397954e-21,1.0370121623345466e-34,3.934523085164943e-35,5.16207553492809e-35,0.0004960317746736109,7.023516651920511e-19,-0.0001653439103392884,-2.5181371480637386e-20,-0.00014172335795592517,-3.304235253882952e-19,-0.0,7.246932430340869e-35,-1.1858461261560205e-20,0.0,2.464559997397954e-21,4.724111931864172e-05,9.62964972193618e-35,5.082197683525802e-21,-1.8762579174196603e-20,0.0005314626032486558,2.2790372703581387e-18,-1.6977580420269833e-33,-0.0007971939048729837,7.386018215614219e-19,-9.735692470983746e-19,1.6470537819704851e-34,-1.3275945101094922e-19,2.3543677887257083e-34,1.5612697858318247e-34,1.0370121623345466e-34,9.62964972193618e-35,0.0001594387722434476,-7.515839301369529e-20,-7.867226918051762e-20,0.0005668934318237007,8.195118727928368e-19,-1.7787691892340307e-20,-0.00022675737272948027,-0.0001619695540284738,-3.776268713869693e-19,6.39296620497658e-35,-3.7762688431166636e-20,8.613894584228537e-21,6.093762714662738e-35,3.934523085164943e-35,5.082197683525802e-21,-7.515839301369529e-20,6.478781870100647e-05,1.0401141890065096e-20,0.0003306878206785768,1.0957753598333104e-18,6.14977895407176e-20,3.569573339392825e-19,-0.0003306878206785768,-5.507058842636234e-19,-2.84706161094407e-22,1.8718979562508307e-34,1.8544252363993404e-21,6.855298201598626e-22,5.16207553492809e-35,-1.8762579174196603e-20,-7.867226918051762e-20,1.0401141890065096e-20,4.724111931864172e-05,3.0,7.0,7.0,3.0,0.07818405330181122,-0.030612245202064514,-0.016298186033964157,-0.016298186033964157,-0.030612245202064514,0.003401360474526882,0.0025510203558951616,0.0025510203558951616,0.005102040711790323,0.0009448223863728344,0.0012755101779475808,0.0025510203558951616,0.0009448223863728344,0.0025510203558951616,0.003401360474526882,-0.030612245202064514,0.06462585180997849,0.0025510203558951616,0.0025510203558951616,0.005102040711790323,-0.020408162847161293,-0.0025510203558951616,-0.0025510203558951616,-0.005102040711790323,-1.6530247080313228e-18,-7.073589513313526e-19,-1.7412997686417568e-18,-1.6485531764350143e-18,-1.69932097294015e-18,-1.1328806761994538e-17,-0.016298186033964157,0.0025510203558951616,0.010345805436372757,0.0012755101779475808,0.0025510203558951616,-7.033300854398518e-18,-0.0008503401186317205,8.131516293641283e-20,-0.0,-0.0011337868636474013,-0.00042517005931586027,-0.0008503401186317205,1.772253590946527e-19,-0.0,-3.904265998328022e-33,-0.016298186033964157,0.0025510203558951616,0.0012755101779475808,0.010345805436372757,0.0025510203558951616,-7.033300854398518e-18,-1.0200075608903623e-20,-0.0008503401186317205,-0.0,2.710505431213761e-20,-0.00042517005931586027,-1.2622985527651755e-19,-0.0011337868636474013,-0.0008503401186317205,-3.904265998328022e-33,-0.030612245202064514,0.005102040711790323,0.0025510203558951616,0.0025510203558951616,0.06462585180997849,-1.6426769680814988e-17,-4.0657581468206416e-20,-1.3211734398251927e-21,-0.005102040711790323,-4.5870092409952e-20,-1.2197274440461925e-19,-0.0025510203558951616,-0.0,-0.0025510203558951616,-0.020408162847161293,0.003401360474526882,-0.020408162847161293,-7.033300854398518e-18,-7.033300854398518e-18,-1.6426769680814988e-17,0.010204081423580647,-0.0,-9.90678743841066e-35,-0.0,8.181915891376256e-19,4.248302432350375e-19,8.49660486470075e-19,8.181915891376256e-19,8.49660486470075e-19,5.664403380997269e-18,0.0025510203558951616,-0.0025510203558951616,-0.0008503401186317205,-1.0200075608903623e-20,-4.0657581468206416e-20,-0.0,0.0008503401186317205,4.160398998786002e-21,-0.0,-0.0,-6.776263578034403e-21,1.3552527156068805e-20,4.056687190519331e-21,-4.2286429067945886e-35,-0.0,0.0025510203558951616,-0.0025510203558951616,8.131516293641283e-20,-0.0008503401186317205,-1.3211734398251927e-21,-9.90678743841066e-35,4.160398998786002e-21,0.0008503401186317205,-0.0,5.547198799680264e-21,-4.0657581468206416e-20,4.403911802664628e-22,-0.0,-0.0,-0.0,0.005102040711790323,-0.005102040711790323,-0.0,-0.0,-0.005102040711790323,-0.0,-0.0,-0.0,0.005102040711790323,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009448223863728344,-1.6530247080313228e-18,-0.0011337868636474013,2.710505431213761e-20,-4.5870092409952e-20,8.181915891376256e-19,-0.0,5.547198799680264e-21,-0.0,0.0001889644772745669,-0.0,0.0,4.082521791941919e-22,1.1746229898060072e-35,4.541875531884635e-34,0.0012755101779475808,-7.073589513313526e-19,-0.00042517005931586027,-0.00042517005931586027,-1.2197274440461925e-19,4.248302432350375e-19,-6.776263578034403e-21,-4.0657581468206416e-20,-0.0,-0.0,0.00014172335795592517,4.0657581468206416e-20,-6.150762523518874e-20,-0.0,2.3582815879832215e-34,0.0025510203558951616,-1.7412997686417568e-18,-0.0008503401186317205,-1.2622985527651755e-19,-0.0025510203558951616,8.49660486470075e-19,1.3552527156068805e-20,4.403911802664628e-22,-0.0,0.0,4.0657581468206416e-20,0.0008503401186317205,5.8718822352625115e-22,-0.0,4.716563175966443e-34,0.0009448223863728344,-1.6485531764350143e-18,1.772253590946527e-19,-0.0011337868636474013,-0.0,8.181915891376256e-19,4.056687190519331e-21,-0.0,-0.0,4.082521791941919e-22,-6.150762523518874e-20,5.8718822352625115e-22,0.0001889644772745669,5.2406255916372e-36,4.541875531884635e-34,0.0025510203558951616,-1.69932097294015e-18,-0.0,-0.0008503401186317205,-0.0025510203558951616,8.49660486470075e-19,-4.2286429067945886e-35,-0.0,-0.0,1.1746229898060072e-35,-0.0,-0.0,5.2406255916372e-36,0.0008503401186317205,4.716563175966443e-34,0.003401360474526882,-1.1328806761994538e-17,-3.904265998328022e-33,-3.904265998328022e-33,-0.020408162847161293,5.664403380997269e-18,-0.0,-0.0,-0.0,4.541875531884635e-34,2.3582815879832215e-34,4.716563175966443e-34,4.541875531884635e-34,4.716563175966443e-34,0.010204081423580647,3.0,7.0,7.0,4.0,0.06305980682373047,-0.02372448891401291,-0.012606292963027954,-0.012606292963027954,-0.019387755542993546,0.0025510203558951616,0.0019132653251290321,0.0019132653251290321,0.0030612244736403227,0.0007086168043315411,0.0009566326625645161,0.0015306122368201613,0.0007086168043315411,0.0015306122368201613,0.001700680237263441,-0.02372448891401291,0.049234695732593536,0.0019132653251290321,0.0019132653251290321,0.0030612244736403227,-0.015306122601032257,-0.0019132653251290321,-0.0019132653251290321,-0.0030612244736403227,2.5054233691241015e-18,1.3900888067190919e-18,2.2946947653780018e-18,2.4586268667398328e-18,2.2748060347297768e-18,9.204654925433891e-18,-0.012606292963027954,0.0019132653251290321,0.00788690522313118,0.0009566326625645161,0.0015306122368201613,1.4298860789912125e-17,-0.0006377550889737904,3.326185266918871e-19,5.947623508688102e-19,-0.0008503401186317205,-0.0003188775444868952,-0.0005102040595375001,1.1771325538845986e-19,-2.710505431213761e-20,-7.655917565088786e-33,-0.012606292963027954,0.0019132653251290321,0.0009566326625645161,0.00788690522313118,0.0015306122368201613,1.4298860789912125e-17,2.4459710033677715e-19,-0.0006377550889737904,5.947623508688102e-19,2.710505431213761e-20,-0.0003188775444868952,-8.950951135239576e-20,-0.0008503401186317205,-0.0005102040595375001,-7.655917565088786e-33,-0.019387755542993546,0.0030612244736403227,0.0015306122368201613,0.0015306122368201613,0.024829931557178497,2.360322158484132e-17,3.4091569107307094e-19,3.2014678855430123e-19,-0.0020408162381500006,-2.3258507751814045e-20,-1.2197274440461925e-19,-0.0010204081190750003,-8.131516293641283e-20,-0.0010204081190750003,-0.005102040711790323,0.0025510203558951616,-0.015306122601032257,1.4298860789912125e-17,1.4298860789912125e-17,2.360322158484132e-17,0.0076530613005161285,-3.494012148194908e-18,-3.494012148194908e-18,-5.590419106239607e-18,-1.2272873578570443e-18,-6.372453648525563e-19,-1.0195925424050594e-18,-1.2272873578570443e-18,-1.0195925424050594e-18,-3.965082408057119e-18,0.0019132653251290321,-0.0019132653251290321,-0.0006377550889737904,2.4459710033677715e-19,3.4091569107307094e-19,-3.494012148194908e-18,0.0006377550889737904,-2.1496288960297037e-19,-3.398641894181512e-19,-1.3552527156068805e-20,-6.776263578034403e-21,-0.0,-1.3507194992782129e-21,-3.5049640328337037e-22,1.951758677681671e-33,0.0019132653251290321,-0.0019132653251290321,3.326185266918871e-19,-0.0006377550889737904,3.2014678855430123e-19,-3.494012148194908e-18,-2.1496288960297037e-19,0.0006377550889737904,-3.398641894181512e-19,-3.39702438449893e-21,-3.17564298370168e-20,-2.0379806230004332e-22,4.3101471966207313e-35,6.776263578034403e-21,1.951758677681671e-33,0.0030612244736403227,-0.0030612244736403227,5.947623508688102e-19,5.947623508688102e-19,-0.0020408162381500006,-5.590419106239607e-18,-3.398641894181512e-19,-3.398641894181512e-19,0.0020408162381500006,8.967611303553067e-34,4.634268928681786e-34,-1.699320947090756e-19,8.907425992790966e-34,-1.699320947090756e-19,-8.49660486470075e-19,0.0007086168043315411,2.5054233691241015e-18,-0.0008503401186317205,2.710505431213761e-20,-2.3258507751814045e-20,-1.2272873578570443e-18,-1.3552527156068805e-20,-3.39702438449893e-21,8.967611303553067e-34,0.00014172335795592517,-0.0,1.3552527156068805e-20,-3.3739865158664044e-21,-4.673285208821278e-22,6.358625928309482e-34,0.0009566326625645161,1.3900888067190919e-18,-0.0003188775444868952,-0.0003188775444868952,-1.2197274440461925e-19,-6.372453648525563e-19,-6.776263578034403e-21,-3.17564298370168e-20,4.634268928681786e-34,-0.0,0.00010629251482896507,3.049318610115481e-20,-3.13413434970543e-20,1.0164395367051604e-20,3.30159422317651e-34,0.0015306122368201613,2.2946947653780018e-18,-0.0005102040595375001,-8.950951135239576e-20,-0.0010204081190750003,-1.0195925424050594e-18,-0.0,-2.0379806230004332e-22,-1.699320947090756e-19,1.3552527156068805e-20,3.049318610115481e-20,0.0003401360590942204,-2.717307497333911e-22,3.009265538105056e-36,5.990034980929768e-34,0.0007086168043315411,2.4586268667398328e-18,1.1771325538845986e-19,-0.0008503401186317205,-8.131516293641283e-20,-1.2272873578570443e-18,-1.3507194992782129e-21,4.3101471966207313e-35,8.907425992790966e-34,-3.3739865158664044e-21,-3.13413434970543e-20,-2.717307497333911e-22,0.00014172335795592517,2.1371293568687178e-20,6.358625928309482e-34,0.0015306122368201613,2.2748060347297768e-18,-2.710505431213761e-20,-0.0005102040595375001,-0.0010204081190750003,-1.0195925424050594e-18,-3.5049640328337037e-22,6.776263578034403e-21,-1.699320947090756e-19,-4.673285208821278e-22,1.0164395367051604e-20,3.009265538105056e-36,2.1371293568687178e-20,0.0003401360590942204,5.990034980929768e-34,0.001700680237263441,9.204654925433891e-18,-7.655917565088786e-33,-7.655917565088786e-33,-0.005102040711790323,-3.965082408057119e-18,1.951758677681671e-33,1.951758677681671e-33,-8.49660486470075e-19,6.358625928309482e-34,3.30159422317651e-34,5.990034980929768e-34,6.358625928309482e-34,5.990034980929768e-34,0.001700680237263441,3.0,7.0,7.0,5.0,0.05293569713830948,-0.019387755542993546,-0.010289115831255913,-0.010289115831255913,-0.013411078602075577,0.0020408162381500006,0.0015306122368201613,0.0015306122368201613,0.0020408162381500006,0.0005668934318237007,0.0007653061184100807,0.0010204081190750003,0.0005668934318237007,0.0010204081190750003,0.0009718172950670123,-0.019387755542993546,0.03979591652750969,0.0015306122368201613,0.0015306122368201613,0.0020408162381500006,-0.01224489789456129,-0.0015306122368201613,-0.0015306122368201613,-0.0020408162381500006,3.9580265574320416e-18,3.874679011730586e-18,2.3224053158985282e-18,3.998051759321951e-18,2.3224053158985282e-18,-2.2775415210154896e-18,-0.010289115831255913,0.0015306122368201613,0.0063775512389838696,0.0007653061184100807,0.0010204081190750003,1.736139609185498e-17,-0.0005102040595375001,1.2936763568326675e-18,1.6492083034801563e-18,-0.0006802721181884408,-0.00025510202976875007,-0.0003401360590942204,1.2852304291881948e-18,3.345013384000741e-20,-1.5304757289324838e-18,-0.010289115831255913,0.0015306122368201613,0.0007653061184100807,0.0063775512389838696,0.0010204081190750003,1.736139609185498e-17,1.1621074901418205e-18,-0.0005102040595375001,1.6492083034801563e-18,1.870248747537495e-18,-0.00025510202976875007,-8.998821369757727e-19,-0.0006802721181884408,-0.0003401360590942204,-1.5304757289324838e-18,-0.013411078602075577,0.0020408162381500006,0.0010204081190750003,0.0010204081190750003,0.012536442838609219,4.3696825018461e-18,-1.3792244097586673e-18,-1.3792244097586673e-18,-0.0010204081190750003,-9.021750040855873e-20,-1.3215035398195639e-18,-0.0005102040595375001,-5.692061405548898e-19,-0.0005102040595375001,-0.0019436345901340246,0.0020408162381500006,-0.01224489789456129,1.736139609185498e-17,1.736139609185498e-17,4.3696825018461e-18,0.006122448947280645,-1.5293888136075891e-18,-1.5293888136075891e-18,-3.398641894181512e-19,-1.5482702450648777e-18,-1.2744907297051125e-18,-8.49660486470075e-19,-1.5482702450648777e-18,-8.49660486470075e-19,3.2368019393839806e-19,0.0015306122368201613,-0.0015306122368201613,-0.0005102040595375001,1.1621074901418205e-18,-1.3792244097586673e-18,-1.5293888136075891e-18,0.0005102040595375001,-2.047686511103815e-19,-7.733644357707838e-20,-1.2197274440461925e-19,-1.3552527156068805e-19,-0.0,-7.057176698996825e-20,2.949080227342955e-34,3.64140208487175e-19,0.0015306122368201613,-0.0015306122368201613,1.2936763568326675e-18,-0.0005102040595375001,-1.3792244097586673e-18,-1.5293888136075891e-18,-2.047686511103815e-19,0.0005102040595375001,-7.733644357707838e-20,-7.078255587450149e-20,-1.789248533619312e-19,9.62964972193618e-35,-1.3552527156068805e-19,-0.0,3.64140208487175e-19,0.0020408162381500006,-0.0020408162381500006,1.6492083034801563e-18,1.6492083034801563e-18,-0.0010204081190750003,-3.398641894181512e-19,-7.733644357707838e-20,-7.733644357707838e-20,0.0010204081190750003,-9.440671784674232e-20,-1.2744906780063243e-19,-2.2657611766230274e-19,-9.440671784674232e-20,-2.2657611766230274e-19,-1.964100168699273e-19,0.0005668934318237007,3.9580265574320416e-18,-0.0006802721181884408,1.870248747537495e-18,-9.021750040855873e-20,-1.5482702450648777e-18,-1.2197274440461925e-19,-7.078255587450149e-20,-9.440671784674232e-20,0.00011337868636474013,-1.3552527156068805e-19,-2.710505431213761e-20,-2.208866918609806e-19,-2.832201470778784e-20,3.5964465634135977e-20,0.0007653061184100807,3.874679011730586e-18,-0.00025510202976875007,-0.00025510202976875007,-1.3215035398195639e-18,-1.2744907297051125e-18,-1.3552527156068805e-19,-1.789248533619312e-19,-1.2744906780063243e-19,-1.3552527156068805e-19,8.50340147735551e-05,6.999561630627946e-20,-4.448162451534199e-20,6.098637220230962e-20,2.4276013899145e-19,0.0010204081190750003,2.3224053158985282e-18,-0.0003401360590942204,-8.998821369757727e-19,-0.0005102040595375001,-8.49660486470075e-19,-0.0,9.62964972193618e-35,-2.2657611766230274e-19,-2.710505431213761e-20,6.999561630627946e-20,0.0001700680295471102,1.2272873578570443e-19,-2.3238577868930345e-20,1.1113414513954864e-19,0.0005668934318237007,3.998051759321951e-18,1.2852304291881948e-18,-0.0006802721181884408,-5.692061405548898e-19,-1.5482702450648777e-18,-7.057176698996825e-20,-1.3552527156068805e-19,-9.440671784674232e-20,-2.208866918609806e-19,-4.448162451534199e-20,1.2272873578570443e-19,0.00011337868636474013,-1.8706885038929922e-20,3.5964465634135977e-20,0.0010204081190750003,2.3224053158985282e-18,3.345013384000741e-20,-0.0003401360590942204,-0.0005102040595375001,-8.49660486470075e-19,2.949080227342955e-34,-0.0,-2.2657611766230274e-19,-2.832201470778784e-20,6.098637220230962e-20,-2.3238577868930345e-20,-1.8706885038929922e-20,0.0001700680295471102,1.1113414513954864e-19,0.0009718172950670123,-2.2775415210154896e-18,-1.5304757289324838e-18,-1.5304757289324838e-18,-0.0019436345901340246,3.2368019393839806e-19,3.64140208487175e-19,3.64140208487175e-19,-1.964100168699273e-19,3.5964465634135977e-20,2.4276013899145e-19,1.1113414513954864e-19,3.5964465634135977e-20,1.1113414513954864e-19,0.00048590864753350616,3.0,7.0,7.0,6.0,0.045651793479919434,-0.01639941707253456,-0.00869574025273323,-0.00869574025273323,-0.009839650243520737,0.001700680237263441,0.0012755101779475808,0.0012755101779475808,0.0014577260008081794,0.0004724111931864172,0.0006377550889737904,0.0007288630004040897,0.0004724111931864172,0.0007288630004040897,0.0006073858239687979,-0.01639941707253456,0.03340622037649155,0.0012755101779475808,0.0012755101779475808,0.0014577260008081794,-0.010204081423580647,-0.0012755101779475808,-0.0012755101779475808,-0.0014577260008081794,-7.756157241301205e-19,-3.457113223731354e-19,-5.536478555097448e-19,-8.165588897048108e-19,-5.676475771844751e-19,-1.0642181092716827e-18,-0.00869574025273323,0.0012755101779475808,0.005355118308216333,0.0006377550889737904,0.0007288630004040897,-3.698720324647693e-18,-0.00042517005931586027,6.199246293406992e-20,-5.421010862427522e-20,-0.0005668934318237007,-0.00021258502965793014,-0.00024295432376675308,1.2400919844923945e-19,-3.009175793482224e-20,-9.843064133408309e-20,-0.00869574025273323,0.0012755101779475808,0.0006377550889737904,0.005355118308216333,0.0007288630004040897,-3.698720324647693e-18,6.0124834513767236e-21,-0.00042517005931586027,-6.201398255469337e-20,5.421010862427522e-20,-0.00021258502965793014,-6.098637220230962e-20,-0.0005668934318237007,-0.00024295432376675308,-9.038280728409862e-20,-0.009839650243520737,0.0014577260008081794,0.0007288630004040897,0.0007288630004040897,0.007276481948792934,-4.2381872542297705e-18,7.25898808894445e-21,-6.293539067124355e-21,-0.000583090353757143,1.601266569537808e-20,-7.74996259555372e-21,-0.0002915451768785715,-0.0,-0.0002915451768785715,-0.0009110787068493664,0.001700680237263441,-0.010204081423580647,-3.698720324647693e-18,-3.698720324647693e-18,-4.2381872542297705e-18,0.005102040711790323,-0.0,-4.857724665054593e-35,1.3430817335186401e-34,4.090957945688128e-19,2.1241512161751876e-19,2.4276013899145e-19,4.090957945688128e-19,2.4276013899145e-19,5.563253357550024e-19,0.0012755101779475808,-0.0012755101779475808,-0.00042517005931586027,6.0124834513767236e-21,7.25898808894445e-21,-0.0,0.00042517005931586027,6.440111493285435e-22,-1.3482977341645078e-21,-1.3552527156068805e-20,-3.3881317890172014e-21,-0.0,5.396770370927366e-22,5.925721711250578e-37,-1.0891935047018587e-21,0.0012755101779475808,-0.0012755101779475808,6.199246293406992e-20,-0.00042517005931586027,-6.293539067124355e-21,-4.857724665054593e-35,6.440111493285435e-22,0.00042517005931586027,-9.755091819286483e-22,8.58681532438058e-22,-2.2840681376072464e-20,1.216573210096175e-22,-0.0,3.3881317890172014e-21,-6.007959100582453e-22,0.0014577260008081794,-0.0014577260008081794,-5.421010862427522e-20,-6.201398255469337e-20,-0.000583090353757143,1.3430817335186401e-34,-1.3482977341645078e-21,-9.755091819286483e-22,0.000583090353757143,-1.797730446851605e-21,-1.7299400320602355e-22,2.710505431213761e-20,-1.3006789092381977e-21,2.8785155071460844e-20,-1.7345008092956655e-20,0.0004724111931864172,-7.756157241301205e-19,-0.0005668934318237007,5.421010862427522e-20,1.601266569537808e-20,4.090957945688128e-19,-1.3552527156068805e-20,8.58681532438058e-22,-1.797730446851605e-21,9.448223863728344e-05,-1.3552527156068805e-20,-6.776263578034403e-21,4.455232947456645e-22,1.88079096131566e-35,-3.493470493527702e-21,0.0006377550889737904,-3.457113223731354e-19,-0.00021258502965793014,-0.00021258502965793014,-7.74996259555372e-21,2.1241512161751876e-19,-3.3881317890172014e-21,-2.2840681376072464e-20,-1.7299400320602355e-22,-1.3552527156068805e-20,7.086167897796258e-05,6.5180656929538674e-21,-4.26167652113868e-20,-3.3881317890172014e-21,-2.703031260651073e-22,0.0007288630004040897,-5.536478555097448e-19,-0.00024295432376675308,-6.098637220230962e-20,-0.0002915451768785715,2.4276013899145e-19,-0.0,1.216573210096175e-22,2.710505431213761e-20,-6.776263578034403e-21,6.5180656929538674e-21,9.718172805150971e-05,1.6220976976067298e-22,1.6102461643866965e-20,4.9215320667041547e-20,0.0004724111931864172,-8.165588897048108e-19,1.2400919844923945e-19,-0.0005668934318237007,-0.0,4.090957945688128e-19,5.396770370927366e-22,-0.0,-1.3006789092381977e-21,4.455232947456645e-22,-4.26167652113868e-20,1.6220976976067298e-22,9.448223863728344e-05,-5.733761551244e-21,-3.870124842852379e-21,0.0007288630004040897,-5.676475771844751e-19,-3.009175793482224e-20,-0.00024295432376675308,-0.0002915451768785715,2.4276013899145e-19,5.925721711250578e-37,3.3881317890172014e-21,2.8785155071460844e-20,1.88079096131566e-35,-3.3881317890172014e-21,1.6102461643866965e-20,-5.733761551244e-21,9.718172805150971e-05,4.6780130024253843e-20,0.0006073858239687979,-1.0642181092716827e-18,-9.843064133408309e-20,-9.038280728409862e-20,-0.0009110787068493664,5.563253357550024e-19,-1.0891935047018587e-21,-6.007959100582453e-22,-1.7345008092956655e-20,-3.493470493527702e-21,-2.703031260651073e-22,4.9215320667041547e-20,-3.870124842852379e-21,4.6780130024253843e-20,0.00018221575010102242,3.0,7.0,7.0,7.0,0.04014820232987404,-0.014212828129529953,-0.007531584240496159,-0.007531584240496159,-0.007531584240496159,0.0014577260008081794,0.001093294471502304,0.001093294471502304,0.001093294471502304,0.00040492386324331164,0.000546647235751152,0.000546647235751152,0.00040492386324331164,0.000546647235751152,0.00040492386324331164,-0.014212828129529953,0.02879008837044239,0.001093294471502304,0.001093294471502304,0.001093294471502304,-0.008746355772018433,-0.001093294471502304,-0.001093294471502304,-0.001093294471502304,1.400594310691245e-18,7.277014939431395e-19,7.2839053539339615e-19,1.4015102064244944e-18,7.195421843809164e-19,1.4303021921983573e-18,-0.007531584240496159,0.001093294471502304,0.004616132006049156,0.000546647235751152,0.000546647235751152,7.842166861009009e-18,-0.00036443150020204484,-1.2126340956437375e-20,-1.3552527156068805e-20,-0.00048590864753350616,-0.00018221575010102242,-0.00018221575010102242,-9.565941502979426e-21,-4.5954875191564416e-21,-1.1467523102488e-20,-0.007531584240496159,0.001093294471502304,0.000546647235751152,0.004616132006049156,0.000546647235751152,7.842166861009009e-18,5.280267454450688e-21,-0.00036443150020204484,-6.776263578034403e-21,1.3552527156068805e-20,-0.00018221575010102242,-0.0,-0.00048590864753350616,-0.00018221575010102242,1.0425021277645988e-21,-0.007531584240496159,0.001093294471502304,0.000546647235751152,0.000546647235751152,0.004616132006049156,7.842166861009009e-18,5.280267454450688e-21,2.0089676568144996e-21,-0.00036443150020204484,1.1643965412348249e-20,2.3751273540658018e-21,-0.00018221575010102242,1.3552527156068805e-20,-0.00018221575010102242,-0.00048590864753350616,0.0014577260008081794,-0.008746355772018433,7.842166861009009e-18,7.842166861009009e-18,7.842166861009009e-18,0.004373177886009216,-1.4494832698325432e-18,-1.4494832698325432e-18,-1.4494832698325432e-18,-7.013070394759732e-19,-3.64140208487175e-19,-3.64140208487175e-19,-7.013070394759732e-19,-3.64140208487175e-19,-7.013070394759732e-19,0.001093294471502304,-0.001093294471502304,-0.00036443150020204484,5.280267454450688e-21,5.280267454450688e-21,-1.4494832698325432e-18,0.00036443150020204484,2.1435377851836947e-22,2.9060638628157876e-22,1.788055190309395e-35,-3.3881317890172014e-21,-3.3881317890172014e-21,7.184268092769679e-22,1.2063346619364343e-34,7.0669562720099e-22,0.001093294471502304,-0.001093294471502304,-1.2126340956437375e-20,-0.00036443150020204484,2.0089676568144996e-21,-1.4494832698325432e-18,2.1435377851836947e-22,0.00036443150020204484,-2.6284991774548122e-22,2.858050632680416e-22,3.3881317890172014e-21,-3.67135581299933e-23,1.788055190309395e-35,-0.0,-2.516887854922778e-22,0.001093294471502304,-0.001093294471502304,-1.3552527156068805e-20,-6.776263578034403e-21,-0.00036443150020204484,-1.4494832698325432e-18,2.9060638628157876e-22,-2.6284991774548122e-22,0.00036443150020204484,3.874751985378043e-22,1.9297887916114783e-22,3.3881317890172014e-21,-3.504665654084913e-22,2.9127365910884497e-21,-9.684356769751653e-21,0.00040492386324331164,1.400594310691245e-18,-0.00048590864753350616,1.3552527156068805e-20,1.1643965412348249e-20,-7.013070394759732e-19,1.788055190309395e-35,2.858050632680416e-22,3.874751985378043e-22,8.09847770142369e-05,-6.776263578034403e-21,-6.776263578034403e-21,6.057339773765371e-23,5.830451980078546e-35,2.1357993752478386e-22,0.000546647235751152,7.277014939431395e-19,-0.00018221575010102242,-0.00018221575010102242,2.3751273540658018e-21,-3.64140208487175e-19,-3.3881317890172014e-21,3.3881317890172014e-21,1.9297887916114783e-22,-6.776263578034403e-21,6.073858094168827e-05,-1.413529992947103e-21,2.866880775622e-21,-0.0,2.5730517221486378e-22,0.000546647235751152,7.2839053539339615e-19,-0.00018221575010102242,-0.0,-0.00018221575010102242,-3.64140208487175e-19,-3.3881317890172014e-21,-3.67135581299933e-23,3.3881317890172014e-21,-6.776263578034403e-21,-1.413529992947103e-21,6.073858094168827e-05,-4.895141294362015e-23,1.5318292403682778e-21,2.866880775622e-21,0.00040492386324331164,1.4015102064244944e-18,-9.565941502979426e-21,-0.00048590864753350616,1.3552527156068805e-20,-7.013070394759732e-19,7.184268092769679e-22,1.788055190309395e-35,-3.504665654084913e-22,6.057339773765371e-23,2.866880775622e-21,-4.895141294362015e-23,8.09847770142369e-05,-3.3881317890172014e-21,2.9270851757826274e-22,0.000546647235751152,7.195421843809164e-19,-4.5954875191564416e-21,-0.00018221575010102242,-0.00018221575010102242,-3.64140208487175e-19,1.2063346619364343e-34,-0.0,2.9127365910884497e-21,5.830451980078546e-35,-0.0,1.5318292403682778e-21,-3.3881317890172014e-21,6.073858094168827e-05,-1.1551113782743996e-21,0.00040492386324331164,1.4303021921983573e-18,-1.1467523102488e-20,1.0425021277645988e-21,-0.00048590864753350616,-7.013070394759732e-19,7.0669562720099e-22,-2.516887854922778e-22,-9.684356769751653e-21,2.1357993752478386e-22,2.5730517221486378e-22,2.866880775622e-21,2.9270851757826274e-22,-1.1551113782743996e-21,8.09847770142369e-05,3.0,7.0,7.0,8.0,0.0358382947742939,-0.01254251692444086,-0.006643282249569893,-0.006643282249569893,-0.0059523810632526875,0.0012755101779475808,0.0009566326625645161,0.0009566326625645161,0.0008503401186317205,0.00035430840216577053,0.00047831633128225803,0.00042517005931586027,0.00035430840216577053,0.00042517005931586027,0.00028344671591185033,-0.01254251692444086,0.0252976194024086,0.0009566326625645161,0.0009566326625645161,0.0008503401186317205,-0.0076530613005161285,-0.0009566326625645161,-0.0009566326625645161,-0.0008503401186317205,1.2274123655271164e-18,7.05606931095177e-19,6.107598688192209e-19,1.2694056368894428e-18,6.103054881689878e-19,9.796800438736101e-19,-0.006643282249569893,0.0009566326625645161,0.004056830890476704,0.00047831633128225803,0.00042517005931586027,7.376006745262913e-18,-0.0003188775444868952,1.6646490254807422e-19,1.4230153513872246e-19,-0.00042517005931586027,-0.0001594387722434476,-0.00014172335795592517,6.253914530843651e-20,1.2477321606720581e-20,5.574435417715063e-20,-0.006643282249569893,0.0009566326625645161,0.00047831633128225803,0.004056830890476704,0.00042517005931586027,7.376006745262913e-18,1.149449403721863e-19,-0.0003188775444868952,1.4372817612613208e-19,-0.0,-0.0001594387722434476,-3.3881317890172014e-21,-0.00042517005931586027,-0.00014172335795592517,6.367466395666722e-20,-0.0059523810632526875,0.0008503401186317205,0.00042517005931586027,0.00042517005931586027,0.003117913845926523,6.415528458538802e-18,8.946253007854216e-20,9.810810551867277e-20,-0.00024295432376675308,-1.6233354897867812e-20,-2.4012384329340962e-20,-0.00012147716188337654,1.3552527156068805e-20,-0.00012147716188337654,-0.00028344671591185033,0.0012755101779475808,-0.0076530613005161285,7.376006745262913e-18,7.376006745262913e-18,6.415528458538802e-18,0.0038265306502580643,-1.747006074097454e-18,-1.747006074097454e-18,-1.411972180016912e-18,-6.136436789285222e-19,-3.1862268242627814e-19,-2.8322015354022696e-19,-6.136436789285222e-19,-2.8322015354022696e-19,-4.720336150831057e-19,0.0009566326625645161,-0.0009566326625645161,-0.0003188775444868952,1.149449403721863e-19,8.946253007854216e-20,-1.747006074097454e-18,0.0003188775444868952,-1.0649459894366382e-19,-9.418746974797602e-20,2.1550735983103657e-35,-3.3881317890172014e-21,1.6940658945086007e-21,2.637015088698854e-22,1.3416685000271389e-34,-4.718474948004683e-23,0.0009566326625645161,-0.0009566326625645161,1.6646490254807422e-19,-0.0003188775444868952,9.810810551867277e-20,-1.747006074097454e-18,-1.0649459894366382e-19,0.0003188775444868952,-9.488924202484777e-20,-3.82718455631743e-22,-1.9091097508763732e-20,-5.981029156326636e-23,-1.3552527156068805e-20,-0.0,-4.0143478014239948e-22,0.0008503401186317205,-0.0008503401186317205,1.4230153513872246e-19,1.4372817612613208e-19,-0.00024295432376675308,-1.411972180016912e-18,-9.418746974797602e-20,-9.488924202484777e-20,0.00024295432376675308,2.923316061486354e-22,-2.6396245143555804e-22,-1.406352282623484e-20,-6.433619862233062e-22,-1.2532911536617125e-20,-9.790580816011527e-21,0.00035430840216577053,1.2274123655271164e-18,-0.00042517005931586027,-0.0,-1.6233354897867812e-20,-6.136436789285222e-19,2.1550735983103657e-35,-3.82718455631743e-22,2.923316061486354e-22,7.086167897796258e-05,-0.0,3.3881317890172014e-21,-1.171087818467268e-21,4.513898307157584e-35,1.519446370832166e-21,0.00047831633128225803,7.05606931095177e-19,-0.0001594387722434476,-0.0001594387722434476,-2.4012384329340962e-20,-3.1862268242627814e-19,-3.3881317890172014e-21,-1.9091097508763732e-20,-2.6396245143555804e-22,-0.0,5.3146257414482534e-05,7.175272402633969e-21,-1.8303888137490342e-20,1.6940658945086007e-21,-3.0795617651245173e-22,0.00042517005931586027,6.107598688192209e-19,-0.00014172335795592517,-3.3881317890172014e-21,-0.00012147716188337654,-2.8322015354022696e-19,1.6940658945086007e-21,-5.981029156326636e-23,-1.406352282623484e-20,3.3881317890172014e-21,7.175272402633969e-21,4.049238850711845e-05,-7.974705962494663e-23,-5.0170055114989665e-21,-1.8471343743918313e-20,0.00035430840216577053,1.2694056368894428e-18,6.253914530843651e-20,-0.00042517005931586027,1.3552527156068805e-20,-6.136436789285222e-19,2.637015088698854e-22,-1.3552527156068805e-20,-6.433619862233062e-22,-1.171087818467268e-21,-1.8303888137490342e-20,-7.974705962494663e-23,7.086167897796258e-05,2.606255268924399e-21,-6.07639133260631e-22,0.00042517005931586027,6.103054881689878e-19,1.2477321606720581e-20,-0.00014172335795592517,-0.00012147716188337654,-2.8322015354022696e-19,1.3416685000271389e-34,-0.0,-1.2532911536617125e-20,4.513898307157584e-35,1.6940658945086007e-21,-5.0170055114989665e-21,2.606255268924399e-21,4.049238850711845e-05,-1.6685630438065385e-20,0.00028344671591185033,9.796800438736101e-19,5.574435417715063e-20,6.367466395666722e-20,-0.00028344671591185033,-4.720336150831057e-19,-4.718474948004683e-23,-4.0143478014239948e-22,-9.790580816011527e-21,1.519446370832166e-21,-3.0795617651245173e-22,-1.8471343743918313e-20,-6.07639133260631e-22,-1.6685630438065385e-20,4.049238850711845e-05,3.0,7.0,8.0,3.0,0.0699404776096344,-0.02703372947871685,-0.014384920708835125,-0.012896825559437275,-0.02703372947871685,0.0029761905316263437,0.0022321429569274187,0.0019841270986944437,0.004464285913854837,0.0008267195662483573,0.0009920635493472219,0.0022321429569274187,0.0006613756413571537,0.0019841270986944437,0.0029761905316263437,-0.02703372947871685,0.056795634329319,0.0022321429569274187,0.0019841270986944437,0.004464285913854837,-0.01785714365541935,-0.0022321429569274187,-0.0019841270986944437,-0.004464285913854837,2.9392061881288004e-18,1.4356846564442399e-18,3.0083334651247038e-18,2.1944799730108242e-18,2.6676307989087594e-18,1.9825411626695288e-17,-0.014384920708835125,0.0022321429569274187,0.009093915112316608,0.0009920635493472219,0.0022321429569274187,1.390138892505182e-17,-0.0007440476329065859,7.99369378642317e-20,-7.055379541772757e-33,-0.0009920635493472219,-0.0003306878206785768,-0.0007440476329065859,1.2317761051498516e-19,1.3552527156068805e-20,-1.5433642793545654e-32,-0.012896825559437275,0.0019841270986944437,0.0009920635493472219,0.00699168536812067,0.0019841270986944437,1.3315842658676557e-17,-1.79160252485275e-21,-0.0005668934318237007,-6.75819693746962e-33,-0.0,-0.00028344671591185033,-1.1888253980778892e-19,-0.0006613756413571537,-0.0005668934318237007,-1.4783556213974527e-32,-0.02703372947871685,0.004464285913854837,0.0022321429569274187,0.0019841270986944437,0.056795634329319,3.344358052745385e-17,4.127094881711156e-20,1.8457693648224055e-20,-0.004464285913854837,4.1996657632959057e-20,-8.978549240895584e-20,-0.0022321429569274187,5.421010862427522e-20,-0.0019841270986944437,-0.01785714365541935,0.0029761905316263437,-0.01785714365541935,1.390138892505182e-17,1.3315842658676557e-17,3.344358052745385e-17,0.008928571827709675,-1.5105074855478771e-18,-2.3017258005847025e-18,-4.5315224566436314e-18,-1.4318352680661478e-18,-6.608470507765904e-19,-1.4869058513226313e-18,-1.1014117685272467e-18,-1.3216941015531808e-18,-9.912705813347644e-18,0.0022321429569274187,-0.0022321429569274187,-0.0007440476329065859,-1.79160252485275e-21,4.127094881711156e-20,-1.5105074855478771e-18,0.0007440476329065859,1.2384546717505188e-21,7.666286710959985e-34,-2.710505431213761e-20,-6.776263578034403e-21,-1.3552527156068805e-20,2.7811379313552666e-21,-1.7524820164168518e-22,1.6770002811594002e-33,0.0019841270986944437,-0.0019841270986944437,7.99369378642317e-20,-0.0005668934318237007,1.8457693648224055e-20,-2.3017258005847025e-18,1.2384546717505188e-21,0.0005668934318237007,1.1681960921071158e-33,1.6512729293254237e-21,-2.676049804409233e-20,1.7530762243159878e-21,2.1429173049853398e-35,-6.776263578034403e-21,2.555428842429664e-33,0.004464285913854837,-0.004464285913854837,-7.055379541772757e-33,-6.75819693746962e-33,-0.004464285913854837,-4.5315224566436314e-18,7.666286710959985e-34,1.1681960921071158e-33,0.004464285913854837,7.267001126521905e-34,3.354000378647808e-34,7.546501081546309e-34,5.590000937198001e-34,6.708000757295616e-34,5.031000843478201e-33,0.0008267195662483573,2.9392061881288004e-18,-0.0009920635493472219,-0.0,4.1996657632959057e-20,-1.4318352680661478e-18,-2.710505431213761e-20,1.6512729293254237e-21,7.267001126521905e-34,0.0001653439103392884,-6.776263578034403e-21,-1.3552527156068805e-20,3.704281188487249e-21,-2.336642604410639e-22,1.5896564591184964e-33,0.0009920635493472219,1.4356846564442399e-18,-0.0003306878206785768,-0.00028344671591185033,-8.978549240895584e-20,-6.608470507765904e-19,-6.776263578034403e-21,-2.676049804409233e-20,3.354000378647808e-34,-6.776263578034403e-21,9.448223863728344e-05,3.3881317890172014e-20,-4.345194944260113e-20,-3.3881317890172014e-21,7.336876000483636e-34,0.0022321429569274187,3.0083334651247038e-18,-0.0007440476329065859,-1.1888253980778892e-19,-0.0022321429569274187,-1.4869058513226313e-18,-1.3552527156068805e-20,1.7530762243159878e-21,7.546501081546309e-34,-1.3552527156068805e-20,3.3881317890172014e-20,0.0007440476329065859,2.0452555613772538e-21,-1.504632769052528e-36,1.650797042711633e-33,0.0006613756413571537,2.1944799730108242e-18,1.2317761051498516e-19,-0.0006613756413571537,5.421010862427522e-20,-1.1014117685272467e-18,2.7811379313552666e-21,2.1429173049853398e-35,5.590000937198001e-34,3.704281188487249e-21,-4.345194944260113e-20,2.0452555613772538e-21,9.448223863728344e-05,-1.131508195508886e-20,1.2228126820531886e-33,0.0019841270986944437,2.6676307989087594e-18,1.3552527156068805e-20,-0.0005668934318237007,-0.0019841270986944437,-1.3216941015531808e-18,-1.7524820164168518e-22,-6.776263578034403e-21,6.708000757295616e-34,-2.336642604410639e-22,-3.3881317890172014e-21,-1.504632769052528e-36,-1.131508195508886e-20,0.0005668934318237007,1.4673752000967271e-33,0.0029761905316263437,1.9825411626695288e-17,-1.5433642793545654e-32,-1.4783556213974527e-32,-0.01785714365541935,-9.912705813347644e-18,1.6770002811594002e-33,2.555428842429664e-33,5.031000843478201e-33,1.5896564591184964e-33,7.336876000483636e-34,1.650797042711633e-33,1.2228126820531886e-33,1.4673752000967271e-33,0.008928571827709675,3.0,7.0,8.0,4.0,0.0563616082072258,-0.02094493992626667,-0.01112351194024086,-0.00997023843228817,-0.01711309514939785,0.0022321429569274187,0.0016741071594879031,0.0014880952658131719,0.0026785715017467737,0.0006200397037900984,0.0007440476329065859,0.0013392857508733869,0.0004960317746736109,0.0011904762359336019,0.0014880952658131719,-0.02094493992626667,0.04326637089252472,0.0016741071594879031,0.0014880952658131719,0.0026785715017467737,-0.013392857275903225,-0.0016741071594879031,-0.0014880952658131719,-0.0026785715017467737,2.156021244405937e-18,1.0311385361902277e-18,1.781004438044302e-18,1.6386156353509553e-18,1.5848402101385767e-18,6.938893903907228e-18,-0.01112351194024086,0.0016741071594879031,0.006932043470442295,0.0007440476329065859,0.0013392857508733869,1.1215518586841113e-17,-0.0005580357392318547,7.591712443055956e-20,-4.553774381615338e-33,-0.0007440476329065859,-0.00024801588733680546,-0.00044642857392318547,8.592765774132776e-20,-1.4230153513872246e-19,-7.434529256613157e-19,-0.00997023843228817,0.0014880952658131719,0.0007440476329065859,0.005328798200935125,0.0011904762359336019,9.753562880937342e-18,6.627369452187724e-21,-0.00042517005931586027,-3.9601846319386226e-33,1.3552527156068805e-20,-0.00021258502965793014,-4.0107793935368486e-20,-0.0004960317746736109,-0.0003401360590942204,-5.664403070804539e-19,-0.01711309514939785,0.0026785715017467737,0.0013392857508733869,0.0011904762359336019,0.02182539738714695,1.8579242527188226e-17,-1.3915223640350217e-21,-2.8137033212131404e-21,-0.0017857142956927419,2.9990547863232404e-20,9.571472303973594e-20,-0.0008928571478463709,-2.710505431213761e-20,-0.0007936508045531809,-0.004464285913854837,0.0022321429569274187,-0.013392857275903225,1.1215518586841113e-17,9.753562880937342e-18,1.8579242527188226e-17,0.0066964286379516125,-1.69932097294015e-18,-1.2947207757535922e-18,-2.7189135153452095e-18,-1.073876476899005e-18,-4.956353010071399e-19,-8.921435521526094e-19,-8.260588005460409e-19,-7.930164505921508e-19,-3.469446951953614e-18,0.0016741071594879031,-0.0016741071594879031,-0.0005580357392318547,6.627369452187724e-21,-1.3915223640350217e-21,-1.69932097294015e-18,0.0005580357392318547,-1.7717802804618462e-21,6.8996582235349785e-34,2.09625023665488e-35,6.776263578034403e-21,-0.0,-3.405004173250009e-21,3.975778182957205e-22,8.734875360704755e-34,0.0014880952658131719,-0.0014880952658131719,7.591712443055956e-20,-0.00042517005931586027,-2.8137033212131404e-21,-1.2947207757535922e-18,-1.7717802804618462e-21,0.00042517005931586027,5.256882368564273e-34,-2.3623737072824616e-21,-1.71990753383264e-20,9.379011407291121e-22,6.776263578034403e-21,-0.0,6.6603413490319844e-34,0.0026785715017467737,-0.0026785715017467737,-4.553774381615338e-33,-3.9601846319386226e-33,-0.0017857142956927419,-2.7189135153452095e-18,6.8996582235349785e-34,5.256882368564273e-34,0.0017857142956927419,4.360200584077647e-34,2.012400181270937e-34,3.6223205099586786e-34,3.354000378647808e-34,3.219840427786743e-34,1.4086801957662779e-33,0.0006200397037900984,2.156021244405937e-18,-0.0007440476329065859,1.3552527156068805e-20,2.9990547863232404e-20,-1.073876476899005e-18,2.09625023665488e-35,-2.3623737072824616e-21,4.360200584077647e-34,0.00012400794366840273,-0.0,0.0,-1.2200939278706125e-21,5.30103724069562e-22,5.296307347064899e-34,0.0007440476329065859,1.0311385361902277e-18,-0.00024801588733680546,-0.00021258502965793014,9.571472303973594e-20,-4.956353010071399e-19,6.776263578034403e-21,-1.71990753383264e-20,2.012400181270937e-34,-0.0,7.086167897796258e-05,-3.3881317890172014e-20,-2.1780962844989734e-20,1.6940658945086007e-21,2.065075644334718e-34,0.0013392857508733869,1.781004438044302e-18,-0.00044642857392318547,-4.0107793935368486e-20,-0.0008928571478463709,-8.921435521526094e-19,-0.0,9.379011407291121e-22,3.6223205099586786e-34,0.0,-3.3881317890172014e-20,0.00029761905898340046,1.0942179806882648e-21,8.835269926574035e-20,4.956353010071399e-19,0.0004960317746736109,1.6386156353509553e-18,8.592765774132776e-20,-0.0004960317746736109,-2.710505431213761e-20,-8.260588005460409e-19,-3.405004173250009e-21,6.776263578034403e-21,3.354000378647808e-34,-1.2200939278706125e-21,-2.1780962844989734e-20,1.0942179806882648e-21,7.086167897796258e-05,-6.712336410733405e-22,4.30487704448215e-34,0.0011904762359336019,1.5848402101385767e-18,-1.4230153513872246e-19,-0.0003401360590942204,-0.0007936508045531809,-7.930164505921508e-19,3.975778182957205e-22,-0.0,3.219840427786743e-34,5.30103724069562e-22,1.6940658945086007e-21,8.835269926574035e-20,-6.712336410733405e-22,0.00022675737272948027,3.776268713869693e-19,0.0014880952658131719,6.938893903907228e-18,-7.434529256613157e-19,-5.664403070804539e-19,-0.004464285913854837,-3.469446951953614e-18,8.734875360704755e-34,6.6603413490319844e-34,1.4086801957662779e-33,5.296307347064899e-34,2.065075644334718e-34,4.956353010071399e-19,4.30487704448215e-34,3.776268713869693e-19,0.0014880952658131719,3.0,7.0,8.0,5.0,0.04728599637746811,-0.01711309514939785,-0.00907738134264946,-0.008134921081364155,-0.011833900585770607,0.0017857142956927419,0.0013392857508733869,0.0011904762359336019,0.0017857142956927419,0.0004960317746736109,0.0005952381179668009,0.0008928571478463709,0.00039682540227659047,0.0007936508045531809,0.0008503401186317205,-0.01711309514939785,0.0349702388048172,0.0013392857508733869,0.0011904762359336019,0.0017857142956927419,-0.010714286006987095,-0.0013392857508733869,-0.0011904762359336019,-0.0017857142956927419,3.1433940679762902e-18,2.054677970888084e-18,5.217738464722975e-19,1.9059113988768e-18,1.9522186239287437e-19,-4.909149431428177e-18,-0.00907738134264946,0.0013392857508733869,0.0056051588617265224,0.0005952381179668009,0.0008928571478463709,1.6785514603756786e-17,-0.00044642857392318547,-1.551406060917672e-19,-3.6252180376932087e-19,-0.0005952381179668009,-0.00019841270113829523,-0.00029761905898340046,-6.3521846215907165e-19,-2.15485181781494e-18,-6.1388576367454346e-18,-0.008134921081364155,0.0011904762359336019,0.0005952381179668009,0.004308389965444803,0.0007936508045531809,1.2895958335119128e-17,-5.759919167099686e-19,-0.0003401360590942204,-2.762070836624551e-19,-8.809142651444724e-19,-0.0001700680295471102,-2.0599841277224584e-18,-0.00039682540227659047,-0.00022675737272948027,-3.1649584597503945e-18,-0.011833900585770607,0.0017857142956927419,0.0008928571478463709,0.0007936508045531809,0.01101899053901434,4.012285573110034e-19,-3.8244323390113586e-18,-2.8271114278041363e-18,-0.0008928571478463709,-3.797055142277691e-18,-2.235477318915637e-18,-0.00044642857392318547,-1.2061749168901237e-18,-0.00039682540227659047,-0.001700680237263441,0.0017857142956927419,-0.010714286006987095,1.6785514603756786e-17,1.2895958335119128e-17,4.012285573110034e-19,0.0053571430034935474,-1.4869058513226313e-18,-1.1328806141609079e-18,-2.127394615096806e-33,-1.5529905512304115e-18,-1.0290332581337037e-18,-6.938894007304805e-19,-9.912706020142797e-19,-4.909149431428177e-19,8.49660486470075e-19,0.0013392857508733869,-0.0013392857508733869,-0.00044642857392318547,-5.759919167099686e-19,-3.8244323390113586e-18,-1.4869058513226313e-18,0.00044642857392318547,-3.1133262336557466e-20,3.6252180376932087e-19,-1.3552527156068805e-20,1.6940658945086007e-20,1.5585406229479126e-19,3.344887691321724e-20,1.515237071645908e-19,5.664403070804539e-19,0.0011904762359336019,-0.0011904762359336019,-1.551406060917672e-19,-0.0003401360590942204,-2.8271114278041363e-18,-1.1328806141609079e-18,-3.1133262336557466e-20,0.0003401360590942204,2.762070836624551e-19,9.270499487701264e-22,-1.3552432644221473e-20,1.1384078350139872e-19,-6.776263578034403e-21,9.486769009248164e-20,4.3157357468493465e-19,0.0017857142956927419,-0.0017857142956927419,-3.6252180376932087e-19,-2.762070836624551e-19,-0.0008928571478463709,-2.127394615096806e-33,3.6252180376932087e-19,2.762070836624551e-19,0.0008928571478463709,-1.2037062152420224e-35,-6.018531076210112e-36,2.2268564981977415e-34,1.8055593228630336e-35,2.0162079105303875e-34,8.104360394732834e-34,0.0004960317746736109,3.1433940679762902e-18,-0.0005952381179668009,-8.809142651444724e-19,-3.797055142277691e-18,-1.5529905512304115e-18,-1.3552527156068805e-20,9.270499487701264e-22,-1.2037062152420224e-35,9.920635056914762e-05,4.743384504624082e-20,2.0328790734103208e-19,4.644685701675167e-20,1.8524818385580452e-19,5.664403070804539e-19,0.0005952381179668009,2.054677970888084e-18,-0.00019841270113829523,-0.0001700680295471102,-2.235477318915637e-18,-1.0290332581337037e-18,1.6940658945086007e-20,-1.3552432644221473e-20,-6.018531076210112e-36,4.743384504624082e-20,5.668934318237007e-05,1.1858461261560205e-19,-9.099477876572008e-21,1.1011428314305904e-19,3.326713111547256e-19,0.0008928571478463709,5.217738464722975e-19,-0.00029761905898340046,-2.0599841277224584e-18,-0.00044642857392318547,-6.938894007304805e-19,1.5585406229479126e-19,1.1384078350139872e-19,2.2268564981977415e-34,2.0328790734103208e-19,1.1858461261560205e-19,0.00014880952949170023,1.548424721044272e-19,2.090053797349986e-19,4.575095125988051e-19,0.00039682540227659047,1.9059113988768e-18,-6.3521846215907165e-19,-0.00039682540227659047,-1.2061749168901237e-18,-9.912706020142797e-19,3.344887691321724e-20,-6.776263578034403e-21,1.8055593228630336e-35,4.644685701675167e-20,-9.099477876572008e-21,1.548424721044272e-19,5.668934318237007e-05,1.8379016170390617e-20,1.2587562810388879e-19,0.0007936508045531809,1.9522186239287437e-19,-2.15485181781494e-18,-0.00022675737272948027,-0.00039682540227659047,-4.909149431428177e-19,1.515237071645908e-19,9.486769009248164e-20,2.0162079105303875e-34,1.8524818385580452e-19,1.1011428314305904e-19,2.090053797349986e-19,1.8379016170390617e-20,0.00011337868636474013,3.911563667328573e-19,0.0008503401186317205,-4.909149431428177e-18,-6.1388576367454346e-18,-3.1649584597503945e-18,-0.001700680237263441,8.49660486470075e-19,5.664403070804539e-19,4.3157357468493465e-19,8.104360394732834e-34,5.664403070804539e-19,3.326713111547256e-19,4.575095125988051e-19,1.2587562810388879e-19,3.911563667328573e-19,0.00042517005931586027,3.0,7.0,8.0,6.0,0.04076318070292473,-0.014473497867584229,-0.007670776452869177,-0.0068735829554498196,-0.0086805559694767,0.0014880952658131719,0.0011160714784637094,0.0009920635493472219,0.0012755101779475808,0.00041335978312417865,0.0004960317746736109,0.0006377550889737904,0.0003306878206785768,0.0005668934318237007,0.0005314626032486558,-0.014473497867584229,0.02935444936156273,0.0011160714784637094,0.0009920635493472219,0.0012755101779475808,-0.008928571827709675,-0.0011160714784637094,-0.0009920635493472219,-0.0012755101779475808,1.4928216402684574e-18,7.082808958228312e-19,9.761967863141493e-19,1.077641182661887e-18,8.49660486470075e-19,2.2790372703581387e-18,-0.007670776452869177,0.0011160714784637094,0.004706396255642176,0.0004960317746736109,0.0006377550889737904,7.269317817036436e-18,-0.00037202381645329297,4.743384504624082e-20,1.0620756080875938e-19,-0.0004960317746736109,-0.0001653439103392884,-0.00021258502965793014,7.505031669678641e-20,-5.245666958595978e-34,-1.6131088571143472e-33,-0.0068735829554498196,0.0009920635493472219,0.0004960317746736109,0.0036173199769109488,0.0005668934318237007,6.941141353631535e-18,-1.354688239559718e-22,-0.00028344671591185033,9.440671784674232e-20,-0.0,-0.00014172335795592517,-2.671645875440955e-20,-0.0003306878206785768,-0.0001619695540284738,1.6858342841909617e-19,-0.0086805559694767,0.0012755101779475808,0.0006377550889737904,0.0005668934318237007,0.006395266391336918,8.499807708032556e-18,2.0328790734103208e-20,-1.8220410393585083e-33,-0.0005102040595375001,3.8363334646979506e-20,-2.671645875440955e-20,-0.00025510202976875007,1.3552527156068805e-20,-0.00022675737272948027,-0.0007971939048729837,0.0014880952658131719,-0.008928571827709675,7.269317817036436e-18,6.941141353631535e-18,8.499807708032556e-18,0.004464285913854837,-7.552537427739386e-19,-1.1508629002923513e-18,-1.0357765378848125e-18,-7.159176340330739e-19,-3.304235253882952e-19,-4.248302432350375e-19,-5.507058842636234e-19,-3.776268713869693e-19,-9.735692470983746e-19,0.0011160714784637094,-0.0011160714784637094,-0.00037202381645329297,-1.354688239559718e-22,2.0328790734103208e-20,-7.552537427739386e-19,0.00037202381645329297,1.0983819214083454e-34,1.7681620721175764e-34,-2.0328790734103208e-20,-0.0,-6.776263578034403e-21,1.7892108437385266e-23,6.388572450457271e-35,1.6470537819704851e-34,0.0009920635493472219,-0.0009920635493472219,4.743384504624082e-20,-0.00028344671591185033,-1.8220410393585083e-33,-1.1508629002923513e-18,1.0983819214083454e-34,0.00028344671591185033,2.6632000012229746e-34,7.102564734493103e-35,-1.3552527156068805e-20,1.0720508479499262e-34,6.776263578034403e-21,-0.0,2.468211661537962e-34,0.0012755101779475808,-0.0012755101779475808,1.0620756080875938e-19,9.440671784674232e-20,-0.0005102040595375001,-1.0357765378848125e-18,1.7681620721175764e-34,2.6632000012229746e-34,0.0005102040595375001,1.7238527079594178e-34,7.221368298069739e-35,-4.24830236772689e-20,1.2794133319760068e-34,-3.7762688431166636e-20,-1.3275945101094922e-19,0.00041335978312417865,1.4928216402684574e-18,-0.0004960317746736109,-0.0,3.8363334646979506e-20,-7.159176340330739e-19,-2.0328790734103208e-20,7.102564734493103e-35,1.7238527079594178e-34,8.26719551696442e-05,-0.0,-2.0328790734103208e-20,2.5787289963113323e-22,6.055834080777637e-35,1.5612697858318247e-34,0.0004960317746736109,7.082808958228312e-19,-0.0001653439103392884,-0.00014172335795592517,-2.671645875440955e-20,-3.304235253882952e-19,-0.0,-1.3552527156068805e-20,7.221368298069739e-35,-0.0,4.724111931864172e-05,8.90548625146985e-21,-2.192696668545388e-20,-0.0,7.21110338548668e-35,0.0006377550889737904,9.761967863141493e-19,-0.00021258502965793014,-2.671645875440955e-20,-0.00025510202976875007,-4.248302432350375e-19,-6.776263578034403e-21,1.0720508479499262e-34,-4.24830236772689e-20,-2.0328790734103208e-20,8.90548625146985e-21,8.50340147735551e-05,4.890056499420716e-35,3.893237289923416e-35,1.0370121623345466e-34,0.0003306878206785768,1.077641182661887e-18,7.505031669678641e-20,-0.0003306878206785768,1.3552527156068805e-20,-5.507058842636234e-19,1.7892108437385266e-23,6.776263578034403e-21,1.2794133319760068e-34,2.5787289963113323e-22,-2.192696668545388e-20,4.890056499420716e-35,4.724111931864172e-05,3.515723591387696e-36,1.2003702908440834e-34,0.0005668934318237007,8.49660486470075e-19,-5.245666958595978e-34,-0.0001619695540284738,-0.00022675737272948027,-3.776268713869693e-19,6.388572450457271e-35,-0.0,-3.7762688431166636e-20,6.055834080777637e-35,-0.0,3.893237289923416e-35,3.515723591387696e-36,6.478781870100647e-05,-6.743337266010817e-20,0.0005314626032486558,2.2790372703581387e-18,-1.6131088571143472e-33,1.6858342841909617e-19,-0.0007971939048729837,-9.735692470983746e-19,1.6470537819704851e-34,2.468211661537962e-34,-1.3275945101094922e-19,1.5612697858318247e-34,7.21110338548668e-35,1.0370121623345466e-34,1.2003702908440834e-34,-6.743337266010817e-20,0.0001594387722434476,3.0,7.0,8.0,7.0,0.0358382947742939,-0.01254251692444086,-0.006643282249569893,-0.0059523810632526875,-0.006643282249569893,0.0012755101779475808,0.0009566326625645161,0.0008503401186317205,0.0009566326625645161,0.00035430840216577053,0.00042517005931586027,0.00047831633128225803,0.00028344671591185033,0.00042517005931586027,0.00035430840216577053,-0.01254251692444086,0.0252976194024086,0.0009566326625645161,0.0008503401186317205,0.0009566326625645161,-0.0076530613005161285,-0.0009566326625645161,-0.0008503401186317205,-0.0009566326625645161,1.2197023184350862e-18,6.098047337056636e-19,7.040338403652543e-19,9.196967315615976e-19,6.164104429811472e-19,1.2008023788115918e-18,-0.006643282249569893,0.0009566326625645161,0.004056830890476704,0.00042517005931586027,0.00047831633128225803,7.376006745262913e-18,-0.0003188775444868952,1.28039984950725e-19,1.5585406229479126e-19,-0.00042517005931586027,-0.00014172335795592517,-0.0001594387722434476,4.5274483594822605e-20,1.407581582873663e-20,4.378508674078406e-20,-0.0059523810632526875,0.0008503401186317205,0.00042517005931586027,0.003117913845926523,0.00042517005931586027,6.415528458538802e-18,8.911203168101842e-20,-0.00024295432376675308,1.2293965391720838e-19,-0.0,-0.00012147716188337654,-1.6940658945086007e-20,-0.00028344671591185033,-0.00012147716188337654,5.666761052538198e-20,-0.006643282249569893,0.0009566326625645161,0.00047831633128225803,0.00042517005931586027,0.004056830890476704,7.376006745262913e-18,1.0694193563399308e-19,1.0025218997815289e-19,-0.0003188775444868952,-2.8354996111332694e-21,-2.528890980703068e-20,-0.0001594387722434476,1.3552527156068805e-20,-0.00014172335795592517,-0.00042517005931586027,0.0012755101779475808,-0.0076530613005161285,7.376006745262913e-18,6.415528458538802e-18,7.376006745262913e-18,0.0038265306502580643,-1.747006074097454e-18,-1.411972180016912e-18,-1.747006074097454e-18,-6.136436789285222e-19,-2.8322015354022696e-19,-3.1862268242627814e-19,-4.720336150831057e-19,-2.8322015354022696e-19,-6.136436789285222e-19,0.0009566326625645161,-0.0009566326625645161,-0.0003188775444868952,8.911203168101842e-20,1.0694193563399308e-19,-1.747006074097454e-18,0.0003188775444868952,-9.339539261266821e-20,-1.0549117069950017e-19,2.1550735983103657e-35,-0.0,-3.3881317890172014e-21,5.65727117449307e-22,1.347593496650512e-34,1.3405589708189662e-21,0.0008503401186317205,-0.0008503401186317205,1.28039984950725e-19,-0.00024295432376675308,1.0025218997815289e-19,-1.411972180016912e-18,-9.339539261266821e-20,0.00024295432376675308,-8.121823417072781e-20,1.3484326356901878e-21,-1.2111040538485845e-20,-3.402535051238442e-22,6.776263578034403e-21,-3.3881317890172014e-21,-9.468822905806171e-22,0.0009566326625645161,-0.0009566326625645161,1.5585406229479126e-19,1.2293965391720838e-19,-0.0003188775444868952,-1.747006074097454e-18,-1.0549117069950017e-19,-8.121823417072781e-20,0.0003188775444868952,9.551844899391037e-22,-3.2525787778254244e-22,-1.8477728544271457e-20,-3.4788301438945626e-22,-1.2703893161964817e-20,8.592476745594523e-21,0.00035430840216577053,1.2197023184350862e-18,-0.00042517005931586027,-0.0,-2.8354996111332694e-21,-6.136436789285222e-19,2.1550735983103657e-35,1.3484326356901878e-21,9.551844899391037e-22,7.086167897796258e-05,3.3881317890172014e-21,-3.3881317890172014e-21,1.2107420007718792e-21,4.513898307157584e-35,-2.0215114792188255e-22,0.00042517005931586027,6.098047337056636e-19,-0.00014172335795592517,-0.00012147716188337654,-2.528890980703068e-20,-2.8322015354022696e-19,-0.0,-1.2111040538485845e-20,-3.2525787778254244e-22,3.3881317890172014e-21,4.049238850711845e-05,1.0465894622391513e-20,-1.50054699020182e-20,-8.470329472543003e-22,-4.336772040347885e-22,0.00047831633128225803,7.040338403652543e-19,-0.0001594387722434476,-1.6940658945086007e-20,-0.0001594387722434476,-3.1862268242627814e-19,-3.3881317890172014e-21,-3.402535051238442e-22,-1.8477728544271457e-20,-3.3881317890172014e-21,1.0465894622391513e-20,5.3146257414482534e-05,-3.969624310590012e-22,-3.703733100552076e-21,-1.4097931601012485e-20,0.00028344671591185033,9.196967315615976e-19,4.5274483594822605e-20,-0.00028344671591185033,1.3552527156068805e-20,-4.720336150831057e-19,5.65727117449307e-22,6.776263578034403e-21,-3.4788301438945626e-22,1.2107420007718792e-21,-1.50054699020182e-20,-3.969624310590012e-22,4.049238850711845e-05,-2.605025807115507e-21,-5.844212276368724e-22,0.00042517005931586027,6.164104429811472e-19,1.407581582873663e-20,-0.00012147716188337654,-0.00014172335795592517,-2.8322015354022696e-19,1.347593496650512e-34,-3.3881317890172014e-21,-1.2703893161964817e-20,4.513898307157584e-35,-8.470329472543003e-22,-3.703733100552076e-21,-2.605025807115507e-21,4.049238850711845e-05,-1.666492992011882e-20,0.00035430840216577053,1.2008023788115918e-18,4.378508674078406e-20,5.666761052538198e-20,-0.00042517005931586027,-6.136436789285222e-19,1.3405589708189662e-21,-9.468822905806171e-22,8.592476745594523e-21,-2.0215114792188255e-22,-4.336772040347885e-22,-1.4097931601012485e-20,-5.844212276368724e-22,-1.666492992011882e-20,7.086167897796258e-05,3.0,7.0,8.0,8.0,0.031983714550733566,-0.011067708022892475,-0.005859375,-0.005249669309705496,-0.005249669309705496,0.0011160714784637094,0.0008370535797439516,0.0007440476329065859,0.0007440476329065859,0.0003100198518950492,0.00037202381645329297,0.00037202381645329297,0.00024801588733680546,0.0003306878206785768,0.00024801588733680546,-0.011067708022892475,0.0222284235060215,0.0008370535797439516,0.0007440476329065859,0.0007440476329065859,-0.0066964286379516125,-0.0008370535797439516,-0.0007440476329065859,-0.0007440476329065859,1.0547975560704694e-18,5.266086137550934e-19,5.253766316302723e-19,8.174698740531731e-19,4.446716694919821e-19,8.3335577431967745e-19,-0.005859375,0.0008370535797439516,0.0035652280785143375,0.00037202381645329297,0.00037202381645329297,5.806013393143897e-18,-0.00027901786961592734,3.958684140169627e-20,3.3881317890172014e-20,-0.00037202381645329297,-0.00012400794366840273,-0.00012400794366840273,4.081477809633417e-20,3.0082733265092318e-21,3.618268945065939e-20,-0.005249669309705496,0.0007440476329065859,0.00037202381645329297,0.0027399847749620676,0.0003306878206785768,5.053007306889418e-18,1.457818587919481e-21,-0.00021258502965793014,1.1542618823645597e-20,-0.0,-0.00010629251482896507,2.879912020664621e-20,-0.00024801588733680546,-9.448223863728344e-05,2.0945849699609294e-20,-0.005249669309705496,0.0007440476329065859,0.00037202381645329297,0.0003306878206785768,0.0027399847749620676,5.053007306889418e-18,-1.6674409175678542e-21,-4.387812274926997e-21,-0.00021258502965793014,-3.9293777126782415e-21,2.035831720456223e-20,-0.00010629251482896507,-0.0,-9.448223863728344e-05,-0.00024801588733680546,0.0011160714784637094,-0.0066964286379516125,5.806013393143897e-18,5.053007306889418e-18,5.053007306889418e-18,0.0033482143189758062,-8.49660486470075e-19,-6.473603878767961e-19,-6.473603878767961e-19,-5.369382384495025e-19,-2.4781765050356993e-19,-2.4781765050356993e-19,-4.1302940027302046e-19,-2.202823588753282e-19,-4.1302940027302046e-19,0.0008370535797439516,-0.0008370535797439516,-0.00027901786961592734,1.457818587919481e-21,-1.6674409175678542e-21,-8.49660486470075e-19,0.00027901786961592734,-3.8359576993254464e-22,1.157606425410756e-22,6.776263578034403e-21,1.6940658945086007e-21,1.6940658945086007e-21,-8.131121302781886e-22,5.590392845177855e-35,-4.662947470648283e-22,0.0007440476329065859,-0.0007440476329065859,3.958684140169627e-20,-0.00021258502965793014,-4.387812274926997e-21,-6.473603878767961e-19,-3.8359576993254464e-22,0.00021258502965793014,-2.0331775329384683e-22,-5.114610097476935e-22,-1.0465881697694442e-20,2.148108887030652e-22,3.3881317890172014e-21,1.6940658945086007e-21,-2.6184401280624132e-22,0.0007440476329065859,-0.0007440476329065859,3.3881317890172014e-20,1.1542618823645597e-20,-0.00021258502965793014,-6.473603878767961e-19,1.157606425410756e-22,-2.0331775329384683e-22,0.00021258502965793014,1.5434752759535897e-22,1.6429895111673686e-22,-1.0164395367051604e-20,-2.3720403709497165e-22,-2.8674926792489617e-21,-1.4233225714366056e-21,0.0003100198518950492,1.0547975560704694e-18,-0.00037202381645329297,-0.0,-3.9293777126782415e-21,-5.369382384495025e-19,6.776263578034403e-21,-5.114610097476935e-22,1.5434752759535897e-22,6.200397183420137e-05,-0.0,0.0,-4.371941352768811e-22,3.517079097660284e-35,6.441473382752208e-23,0.00037202381645329297,5.266086137550934e-19,-0.00012400794366840273,-0.00010629251482896507,2.035831720456223e-20,-2.4781765050356993e-19,1.6940658945086007e-21,-1.0465881697694442e-20,1.6429895111673686e-22,-0.0,3.543083948898129e-05,-8.312846077698984e-21,-1.086772830109469e-20,8.470329472543003e-22,1.9168211805070932e-22,0.00037202381645329297,5.253766316302723e-19,-0.00012400794366840273,2.879912020664621e-20,-0.00010629251482896507,-2.4781765050356993e-19,1.6940658945086007e-21,2.148108887030652e-22,-1.0164395367051604e-20,0.0,-8.312846077698984e-21,3.543083948898129e-05,2.506127034869094e-22,-1.706539640820994e-21,-1.0515993979413524e-20,0.00024801588733680546,8.174698740531731e-19,4.081477809633417e-20,-0.00024801588733680546,-0.0,-4.1302940027302046e-19,-8.131121302781886e-22,3.3881317890172014e-21,-2.3720403709497165e-22,-4.371941352768811e-22,-1.086772830109469e-20,2.506127034869094e-22,3.543083948898129e-05,-5.593614012191824e-22,-1.6301864880022488e-22,0.0003306878206785768,4.446716694919821e-19,3.0082733265092318e-21,-9.448223863728344e-05,-9.448223863728344e-05,-2.202823588753282e-19,5.590392845177855e-35,1.6940658945086007e-21,-2.8674926792489617e-21,3.517079097660284e-35,8.470329472543003e-22,-1.706539640820994e-21,-5.593614012191824e-22,2.6994925065082498e-05,-5.721361919991374e-21,0.00024801588733680546,8.3335577431967745e-19,3.618268945065939e-20,2.0945849699609294e-20,-0.00024801588733680546,-4.1302940027302046e-19,-4.662947470648283e-22,-2.6184401280624132e-22,-1.4233225714366056e-21,6.441473382752208e-23,1.9168211805070932e-22,-1.0515993979413524e-20,-1.6301864880022488e-22,-5.721361919991374e-21,3.543083948898129e-05,3.0,8.0,3.0,3.0,0.13387346267700195,-0.05787036940455437,-0.02777777798473835,-0.05787036940455437,-0.05787036940455437,0.0069444444961845875,0.004629629664123058,0.010416666977107525,0.010416666977107525,0.0015432098880410194,0.004629629664123058,0.004629629664123058,0.0069444444961845875,0.010416666977107525,0.0069444444961845875,-0.05787036940455437,0.12731482088565826,0.004629629664123058,0.010416666977107525,0.010416666977107525,-0.0416666679084301,-0.004629629664123058,-0.010416666977107525,-0.010416666977107525,6.993104012531504e-18,1.6263032587282567e-18,1.3010426069826053e-18,-4.683753385137379e-17,-1.0408340855860843e-17,-5.551115123125783e-17,-0.02777777798473835,0.004629629664123058,0.015652557834982872,0.004629629664123058,0.004629629664123058,2.3100815241833763e-17,-0.0013227512827143073,-0.0,8.673617379884035e-19,-0.0015432098880410194,-0.0013227512827143073,-0.0013227512827143073,3.469446951953614e-18,-4.336808689942018e-18,3.469446951953614e-18,-0.05787036940455437,0.010416666977107525,0.004629629664123058,0.12731482088565826,0.010416666977107525,-4.7427402963630256e-17,-3.3923018132802343e-18,-0.010416666977107525,-3.469446951953614e-18,1.951563910473908e-18,-0.004629629664123058,-2.6592651077837044e-18,-0.0416666679084301,-0.010416666977107525,-5.637851296924623e-17,-0.05787036940455437,0.010416666977107525,0.004629629664123058,0.010416666977107525,0.12731482088565826,-5.1909001347993556e-17,-3.577867169202165e-18,-8.702801139075519e-18,-0.010416666977107525,1.951563910473908e-18,-5.312590645178972e-18,-0.004629629664123058,-4.683753385137379e-17,-0.010416666977107525,-0.0416666679084301,0.0069444444961845875,-0.0416666679084301,2.3100815241833763e-17,-4.7427402963630256e-17,-5.1909001347993556e-17,0.02083333395421505,-0.0,2.638378176931281e-18,3.216851842274062e-18,-2.168404344971009e-18,-1.6263032587282567e-18,-1.4094628242311558e-18,2.3418766925686896e-17,3.0357660829594124e-18,2.482822974991805e-17,0.004629629664123058,-0.004629629664123058,-0.0013227512827143073,-3.3923018132802343e-18,-3.577867169202165e-18,-0.0,0.0013227512827143073,1.315073451327883e-18,1.27042978988536e-18,-1.6263032587282567e-19,-0.0,-5.421010862427522e-20,4.336808689942018e-19,7.589415207398531e-19,6.505213034913027e-19,0.010416666977107525,-0.010416666977107525,-0.0,-0.010416666977107525,-8.702801139075519e-18,2.638378176931281e-18,1.315073451327883e-18,0.010416666977107525,4.336808689942018e-19,-3.2526065174565133e-19,2.2768245622195593e-18,-1.0842021724855044e-19,-5.421010862427522e-19,3.686287386450715e-18,2.3852447794681098e-18,0.010416666977107525,-0.010416666977107525,8.673617379884035e-19,-3.469446951953614e-18,-0.010416666977107525,3.216851842274062e-18,1.27042978988536e-18,4.336808689942018e-19,0.010416666977107525,-4.336808689942018e-19,-3.2526065174565133e-19,1.8431436932253575e-18,1.3010426069826053e-18,1.5178830414797062e-18,2.168404344971009e-18,0.0015432098880410194,6.993104012531504e-18,-0.0015432098880410194,1.951563910473908e-18,1.951563910473908e-18,-2.168404344971009e-18,-1.6263032587282567e-19,-3.2526065174565133e-19,-4.336808689942018e-19,0.00022045854711905122,-1.0842021724855044e-19,-1.6263032587282567e-19,-1.0842021724855044e-18,1.0842021724855044e-19,-1.0842021724855044e-18,0.004629629664123058,1.6263032587282567e-18,-0.0013227512827143073,-0.004629629664123058,-5.312590645178972e-18,-1.6263032587282567e-18,-0.0,2.2768245622195593e-18,-3.2526065174565133e-19,-1.0842021724855044e-19,0.0013227512827143073,-1.2393309783288457e-19,4.4650882729270475e-18,2.212438891289963e-18,1.8461759305558238e-18,0.004629629664123058,1.3010426069826053e-18,-0.0013227512827143073,-2.6592651077837044e-18,-0.004629629664123058,-1.4094628242311558e-18,-5.421010862427522e-20,-1.0842021724855044e-19,1.8431436932253575e-18,-1.6263032587282567e-19,-1.2393309783288457e-19,0.0013227512827143073,8.93367262471305e-19,1.456311025403709e-18,3.854941241544152e-18,0.0069444444961845875,-4.683753385137379e-17,3.469446951953614e-18,-0.0416666679084301,-4.683753385137379e-17,2.3418766925686896e-17,4.336808689942018e-19,-5.421010862427522e-19,1.3010426069826053e-18,-1.0842021724855044e-18,4.4650882729270475e-18,8.93367262471305e-19,0.02083333395421505,4.864568532314632e-19,2.105532166408201e-17,0.010416666977107525,-1.0408340855860843e-17,-4.336808689942018e-18,-0.010416666977107525,-0.010416666977107525,3.0357660829594124e-18,7.589415207398531e-19,3.686287386450715e-18,1.5178830414797062e-18,1.0842021724855044e-19,2.212438891289963e-18,1.456311025403709e-18,4.864568532314632e-19,0.010416666977107525,6.718611570881294e-18,0.0069444444961845875,-5.551115123125783e-17,3.469446951953614e-18,-5.637851296924623e-17,-0.0416666679084301,2.482822974991805e-17,6.505213034913027e-19,2.3852447794681098e-18,2.168404344971009e-18,-1.0842021724855044e-18,1.8461759305558238e-18,3.854941241544152e-18,2.105532166408201e-17,6.718611570881294e-18,0.02083333395421505,3.0,8.0,3.0,4.0,0.10873842239379883,-0.04496527835726738,-0.02152777835726738,-0.04496527835726738,-0.03680555522441864,0.0052083334885537624,0.0034722222480922937,0.0078125,0.0062500000931322575,0.0011574074160307646,0.0034722222480922937,0.0027777778450399637,0.0052083334885537624,0.0062500000931322575,0.0034722222480922937,-0.04496527835726738,0.09704861044883728,0.0034722222480922937,0.0078125,0.0062500000931322575,-0.03125,-0.0034722222480922937,-0.0078125,-0.0062500000931322575,-4.4994390158148434e-18,2.710505431213761e-18,3.0357660829594124e-18,2.42861286636753e-17,2.7321894746634712e-17,3.0357660829594124e-17,-0.02152777835726738,0.0034722222480922937,0.011937830597162247,0.0034722222480922937,0.0027777778450399637,-8.384779144870319e-18,-0.0009920635493472219,-4.336808689942018e-19,-1.734723475976807e-18,-0.0011574074160307646,-0.0009920635493472219,-0.0007936508045531809,1.214306433183765e-17,5.204170427930421e-18,1.3010426069826053e-17,-0.04496527835726738,0.0078125,0.0034722222480922937,0.09704861044883728,0.0062500000931322575,7.689786130106328e-18,1.1117309087073917e-17,-0.0078125,1.713039432527097e-17,-3.2526065174565133e-19,-0.0034722222480922937,8.419567879892462e-18,-0.03125,-0.0062500000931322575,2.2985086056692694e-17,-0.03680555522441864,0.0062500000931322575,0.0027777778450399637,0.0062500000931322575,0.048842594027519226,4.3819965741890546e-17,9.749532856992984e-18,1.8611830134600365e-17,-0.004166666883975267,3.2526065174565133e-19,5.637851296924623e-18,-0.0018518518190830946,4.217546450968612e-17,-0.004166666883975267,-0.010416666977107525,0.0052083334885537624,-0.03125,-8.384779144870319e-18,7.689786130106328e-18,4.3819965741890546e-17,0.015625,-2.168404344971009e-19,-3.1710520925279195e-18,-4.361670844023218e-18,1.6263032587282567e-18,-2.168404344971009e-19,-9.215718466126788e-19,4.7704895589362195e-18,-6.938893903907228e-18,-8.51098705401121e-18,0.0034722222480922937,-0.0034722222480922937,-0.0009920635493472219,1.1117309087073917e-17,9.749532856992984e-18,-2.168404344971009e-19,0.0009920635493472219,-5.038791897869965e-19,-5.848196399059228e-19,1.0842021724855044e-19,-2.710505431213761e-19,-2.168404344971009e-19,-3.469446951953614e-18,-1.5720931501039814e-18,-2.168404344971009e-18,0.0078125,-0.0078125,-4.336808689942018e-19,-0.0078125,1.8611830134600365e-17,-3.1710520925279195e-18,-5.038791897869965e-19,0.0078125,-1.734723475976807e-18,4.336808689942018e-19,-1.0842021724855044e-18,-4.336808689942018e-19,-1.1167282376600696e-17,-5.312590645178972e-18,-2.9815559743351372e-18,0.0062500000931322575,-0.0062500000931322575,-1.734723475976807e-18,1.713039432527097e-17,-0.004166666883975267,-4.361670844023218e-18,-5.848196399059228e-19,-1.734723475976807e-18,0.004166666883975267,3.7947076036992655e-19,-3.2526065174565133e-19,-0.0,-5.4752209710517974e-18,-1.734723475976807e-18,-9.75781955236954e-19,0.0011574074160307646,-4.4994390158148434e-18,-0.0011574074160307646,-3.2526065174565133e-19,3.2526065174565133e-19,1.6263032587282567e-18,1.0842021724855044e-19,4.336808689942018e-19,3.7947076036992655e-19,0.0001653439103392884,5.421010862427522e-20,2.710505431213761e-20,3.2526065174565133e-19,-1.0842021724855044e-19,-3.2526065174565133e-19,0.0034722222480922937,2.710505431213761e-18,-0.0009920635493472219,-0.0034722222480922937,5.637851296924623e-18,-2.168404344971009e-19,-2.710505431213761e-19,-1.0842021724855044e-18,-3.2526065174565133e-19,5.421010862427522e-20,0.0009920635493472219,-1.578937733630734e-19,-5.037038171573776e-18,-1.0486258581226347e-18,-1.1903860035504412e-18,0.0027777778450399637,3.0357660829594124e-18,-0.0007936508045531809,8.419567879892462e-18,-0.0018518518190830946,-9.215718466126788e-19,-2.168404344971009e-19,-4.336808689942018e-19,-0.0,2.710505431213761e-20,-1.578937733630734e-19,0.0005291005363687873,-2.8051255875079362e-18,-1.0377662174507323e-18,-4.1826404217356095e-18,0.0052083334885537624,2.42861286636753e-17,1.214306433183765e-17,-0.03125,4.217546450968612e-17,4.7704895589362195e-18,-3.469446951953614e-18,-1.1167282376600696e-17,-5.4752209710517974e-18,3.2526065174565133e-19,-5.037038171573776e-18,-2.8051255875079362e-18,0.015625,-1.265421645546173e-17,-3.5339029332352775e-18,0.0062500000931322575,2.7321894746634712e-17,5.204170427930421e-18,-0.0062500000931322575,-0.004166666883975267,-6.938893903907228e-18,-1.5720931501039814e-18,-5.312590645178972e-18,-1.734723475976807e-18,-1.0842021724855044e-19,-1.0486258581226347e-18,-1.0377662174507323e-18,-1.265421645546173e-17,0.004166666883975267,-4.848070828587568e-18,0.0034722222480922937,3.0357660829594124e-17,1.3010426069826053e-17,2.2985086056692694e-17,-0.010416666977107525,-8.51098705401121e-18,-2.168404344971009e-18,-2.9815559743351372e-18,-9.75781955236954e-19,-3.2526065174565133e-19,-1.1903860035504412e-18,-4.1826404217356095e-18,-3.5339029332352775e-18,-4.848070828587568e-18,0.0034722222480922937,3.0,8.0,3.0,5.0,0.09169973433017731,-0.03680555522441864,-0.017592592164874077,-0.03680555522441864,-0.025529099628329277,0.004166666883975267,0.0027777778450399637,0.0062500000931322575,0.004166666883975267,0.0009259259095415473,0.0027777778450399637,0.0018518518190830946,0.004166666883975267,0.004166666883975267,0.0019841270986944437,-0.03680555522441864,0.07847221940755844,0.0027777778450399637,0.0062500000931322575,0.004166666883975267,-0.02500000037252903,-0.0027777778450399637,-0.0062500000931322575,-0.004166666883975267,6.911788849595091e-18,5.9631119486702744e-18,3.686287386450715e-18,1.3877787807814457e-17,-1.0842021724855044e-18,-2.168404344971009e-18,-0.017592592164874077,0.0027777778450399637,0.009656084701418877,0.0027777778450399637,0.0018518518190830946,1.4932231330582753e-17,-0.0007936508045531809,4.7704895589362195e-18,2.8189256484623115e-18,-0.0009259259095415473,-0.0007936508045531809,-0.0005291005363687873,-1.214306433183765e-17,-1.734723475976807e-18,-1.3010426069826053e-18,-0.03680555522441864,0.0062500000931322575,0.0027777778450399637,0.07847221940755844,0.004166666883975267,2.7376369553055004e-17,-9.813723726888324e-18,-0.0062500000931322575,3.2526065174565133e-18,-8.673617379884035e-19,-0.0027777778450399637,-2.4253491839016713e-18,-0.02500000037252903,-0.004166666883975267,1.951563910473908e-18,-0.025529099628329277,0.004166666883975267,0.0018518518190830946,0.004166666883975267,0.024669311940670013,9.139700567833164e-18,-7.62668465707772e-18,2.638104173353373e-18,-0.0020833334419876337,-1.0842021724855044e-18,-2.710505431213761e-18,-0.0009259259095415473,4.336808689942018e-19,-0.0020833334419876337,-0.003968254197388887,0.004166666883975267,-0.02500000037252903,1.4932231330582753e-17,2.7376369553055004e-17,9.139700567833164e-18,0.012500000186264515,4.0115480381963664e-18,-6.215406171402011e-19,-3.6805132521847887e-19,-1.951563910473908e-18,-2.0599841277224584e-18,-1.3552527156068805e-18,-8.890457814381136e-18,-6.505213034913027e-19,-7.589415207398531e-19,0.0027777778450399637,-0.0027777778450399637,-0.0007936508045531809,-9.813723726888324e-18,-7.62668465707772e-18,4.0115480381963664e-18,0.0007936508045531809,1.6558723806876132e-18,1.1063789881056277e-18,-2.168404344971009e-19,1.0842021724855044e-19,8.131516293641283e-20,2.7647155398380363e-18,9.215718466126788e-19,1.2468324983583301e-18,0.0062500000931322575,-0.0062500000931322575,4.7704895589362195e-18,-0.0062500000931322575,2.638104173353373e-18,-6.215406171402011e-19,1.6558723806876132e-18,0.0062500000931322575,-3.2526065174565133e-19,-5.963111948670274e-19,-1.0842021724855044e-18,-3.2526065174565133e-19,-9.75781955236954e-19,-3.2526065174565133e-19,-2.168404344971009e-19,0.004166666883975267,-0.004166666883975267,2.8189256484623115e-18,3.2526065174565133e-18,-0.0020833334419876337,-3.6805132521847887e-19,1.1063789881056277e-18,-3.2526065174565133e-19,0.0020833334419876337,-3.2526065174565133e-19,-3.5236570605778894e-19,-2.981555974335137e-19,-5.963111948670274e-19,-2.710505431213761e-19,-1.0842021724855044e-19,0.0009259259095415473,6.911788849595091e-18,-0.0009259259095415473,-8.673617379884035e-19,-1.0842021724855044e-18,-1.951563910473908e-18,-2.168404344971009e-19,-5.963111948670274e-19,-3.2526065174565133e-19,0.00013227513409219682,-5.421010862427522e-20,-8.131516293641283e-20,1.0842021724855044e-19,0.0,0.0,0.0027777778450399637,5.9631119486702744e-18,-0.0007936508045531809,-0.0027777778450399637,-2.710505431213761e-18,-2.0599841277224584e-18,1.0842021724855044e-19,-1.0842021724855044e-18,-3.5236570605778894e-19,-5.421010862427522e-20,0.0007936508045531809,2.710505431213761e-20,4.526544070126981e-18,7.589415207398531e-19,5.421010862427522e-19,0.0018518518190830946,3.686287386450715e-18,-0.0005291005363687873,-2.4253491839016713e-18,-0.0009259259095415473,-1.3552527156068805e-18,8.131516293641283e-20,-3.2526065174565133e-19,-2.981555974335137e-19,-8.131516293641283e-20,2.710505431213761e-20,0.00026455026818439364,1.2874900798265365e-18,4.0657581468206416e-20,-3.3203691532368573e-19,0.004166666883975267,1.3877787807814457e-17,-1.214306433183765e-17,-0.02500000037252903,4.336808689942018e-19,-8.890457814381136e-18,2.7647155398380363e-18,-9.75781955236954e-19,-5.963111948670274e-19,1.0842021724855044e-19,4.526544070126981e-18,1.2874900798265365e-18,0.012500000186264515,1.2024670280955665e-19,-1.1175788068044425e-18,0.004166666883975267,-1.0842021724855044e-18,-1.734723475976807e-18,-0.004166666883975267,-0.0020833334419876337,-6.505213034913027e-19,9.215718466126788e-19,-3.2526065174565133e-19,-2.710505431213761e-19,0.0,7.589415207398531e-19,4.0657581468206416e-20,1.2024670280955665e-19,0.0020833334419876337,-5.285033226469344e-19,0.0019841270986944437,-2.168404344971009e-18,-1.3010426069826053e-18,1.951563910473908e-18,-0.003968254197388887,-7.589415207398531e-19,1.2468324983583301e-18,-2.168404344971009e-19,-1.0842021724855044e-19,0.0,5.421010862427522e-19,-3.3203691532368573e-19,-1.1175788068044425e-18,-5.285033226469344e-19,0.0009920635493472219,3.0,8.0,3.0,6.0,0.07933752238750458,-0.031167328357696533,-0.014880952425301075,-0.031167328357696533,-0.018766533583402634,0.0034722222480922937,0.002314814832061529,0.0052083334885537624,0.0029761905316263437,0.0007716049440205097,0.002314814832061529,0.0013227512827143073,0.0034722222480922937,0.0029761905316263437,0.0012400794075801969,-0.031167328357696533,0.06588955223560333,0.002314814832061529,0.0052083334885537624,0.0029761905316263437,-0.02083333395421505,-0.002314814832061529,-0.0052083334885537624,-0.0029761905316263437,2.617394465947189e-18,3.0839528691582296e-18,1.7622588710026254e-18,2.3129645794903686e-17,3.965082408057119e-18,4.543323428852619e-18,-0.014880952425301075,0.002314814832061529,0.008109725080430508,0.002314814832061529,0.0013227512827143073,1.4306115163884215e-17,-0.0006613756413571537,-8.470921593976464e-33,-3.872421121680277e-33,-0.0007716049440205097,-0.0006613756413571537,-0.0003779289545491338,-1.588297844788335e-32,-2.7227962791127183e-33,-3.119870740309802e-33,-0.031167328357696533,0.0052083334885537624,0.002314814832061529,0.06588955223560333,0.0029761905316263437,3.9650823253390577e-17,-5.151081999518513e-33,-0.0052083334885537624,-1.0732801211672986e-32,-0.0,-0.002314814832061529,-2.8974837395235337e-33,-0.02083333395421505,-0.0029761905316263437,4.543323428852619e-18,-0.018766533583402634,0.0029761905316263437,0.0013227512827143073,0.0029761905316263437,0.014327050186693668,1.9244416508050293e-17,-2.4302010415136657e-33,-1.1394983628114074e-32,-0.0011904762359336019,6.369247621795115e-34,-2.3922290842332518e-33,-0.0005291005363687873,1.4177922021273197e-17,-0.0011904762359336019,-0.0018601190531626344,0.0034722222480922937,-0.02083333395421505,1.4306115163884215e-17,3.9650823253390577e-17,1.9244416508050293e-17,0.010416666977107525,-1.566452191916676e-18,-6.167905738316459e-18,-2.8196140695271088e-18,-1.284980310450474e-18,-1.5419764345791148e-18,-8.811294355013127e-19,-1.1564822897451843e-17,-1.9825412040285595e-18,-2.2716617144263096e-18,0.002314814832061529,-0.002314814832061529,-0.0006613756413571537,-5.151081999518513e-33,-2.4302010415136657e-33,-1.566452191916676e-18,0.0006613756413571537,9.275260215682337e-34,4.240119244366342e-34,-1.3552527156068805e-20,-0.0,-0.0,1.7391113822759344e-33,2.981333771948603e-34,3.4161114797643424e-34,0.0052083334885537624,-0.0052083334885537624,-8.470921593976464e-33,-0.0052083334885537624,-1.1394983628114074e-32,-6.167905738316459e-18,9.275260215682337e-34,0.0052083334885537624,1.6695469122912177e-33,7.608612182662843e-34,9.130334619195412e-34,5.217333871321315e-34,6.847751239903047e-33,1.173900178444481e-33,1.3450939410749579e-33,0.0029761905316263437,-0.0029761905316263437,-3.872421121680277e-33,-1.0732801211672986e-32,-0.0011904762359336019,-2.8196140695271088e-18,4.240119244366342e-34,1.6695469122912177e-33,0.0011904762359336019,3.4782225808808766e-34,4.173867280728044e-34,2.3850670175588824e-34,3.1304005982992774e-33,5.366400789507485e-34,6.149000847246809e-34,0.0007716049440205097,2.617394465947189e-18,-0.0007716049440205097,-0.0,6.369247621795115e-34,-1.284980310450474e-18,-1.3552527156068805e-20,7.608612182662843e-34,3.4782225808808766e-34,0.00011022927355952561,-0.0,6.776263578034403e-21,1.426614749810972e-33,2.4456254100241254e-34,2.8022791204357424e-34,0.002314814832061529,3.0839528691582296e-18,-0.0006613756413571537,-0.002314814832061529,-2.3922290842332518e-33,-1.5419764345791148e-18,-0.0,9.130334619195412e-34,4.173867280728044e-34,-0.0,0.0006613756413571537,-0.0,1.7119378099757618e-33,2.9347504461112023e-34,3.3627348526873947e-34,0.0013227512827143073,1.7622588710026254e-18,-0.0003779289545491338,-2.8974837395235337e-33,-0.0005291005363687873,-8.811294355013127e-19,-0.0,5.217333871321315e-34,2.3850670175588824e-34,6.776263578034403e-21,-0.0,0.0001511715818196535,9.782501640096501e-34,1.677000189323904e-34,1.9215627073674426e-34,0.0034722222480922937,2.3129645794903686e-17,-1.588297844788335e-32,-0.02083333395421505,1.4177922021273197e-17,-1.1564822897451843e-17,1.7391113822759344e-33,6.847751239903047e-33,3.1304005982992774e-33,1.426614749810972e-33,1.7119378099757618e-33,9.782501640096501e-34,0.010416666977107525,-2.8196140695271088e-18,-2.2716617144263096e-18,0.0029761905316263437,3.965082408057119e-18,-2.7227962791127183e-33,-0.0029761905316263437,-0.0011904762359336019,-1.9825412040285595e-18,2.981333771948603e-34,1.173900178444481e-33,5.366400789507485e-34,2.4456254100241254e-34,2.9347504461112023e-34,1.677000189323904e-34,-2.8196140695271088e-18,0.0011904762359336019,1.0472516824029184e-33,0.0012400794075801969,4.543323428852619e-18,-3.119870740309802e-33,4.543323428852619e-18,-0.0018601190531626344,-2.2716617144263096e-18,3.4161114797643424e-34,1.3450939410749579e-33,6.149000847246809e-34,2.8022791204357424e-34,3.3627348526873947e-34,1.9215627073674426e-34,-2.2716617144263096e-18,1.0472516824029184e-33,0.00037202381645329297,3.0,8.0,3.0,7.0,0.0699404776096344,-0.02703372947871685,-0.012896825559437275,-0.02703372947871685,-0.014384920708835125,0.0029761905316263437,0.0019841270986944437,0.004464285913854837,0.0022321429569274187,0.0006613756413571537,0.0019841270986944437,0.0009920635493472219,0.0029761905316263437,0.0022321429569274187,0.0008267195662483573,-0.02703372947871685,0.056795634329319,0.0019841270986944437,0.004464285913854837,0.0022321429569274187,-0.01785714365541935,-0.0019841270986944437,-0.004464285913854837,-0.0022321429569274187,2.1553896920082527e-18,2.6433882031063616e-18,1.4318083846962398e-18,1.9825411626695288e-17,2.9738117026452626e-18,2.8835323834106126e-18,-0.012896825559437275,0.0019841270986944437,0.00699168536812067,0.0019841270986944437,0.0009920635493472219,1.3315842658676557e-17,-0.0005668934318237007,-6.75819693746962e-33,1.2197274440461925e-19,-0.0006613756413571537,-0.0005668934318237007,-0.00028344671591185033,-1.6538923397425388e-32,1.7268121068231091e-34,1.7097034854949742e-19,-0.02703372947871685,0.004464285913854837,0.0019841270986944437,0.056795634329319,0.0022321429569274187,3.344358052745385e-17,-6.922820513198466e-33,-0.004464285913854837,-4.19072735946769e-33,-0.0,-0.0019841270986944437,-2.798938374674255e-33,-0.01785714365541935,-0.0022321429569274187,2.8636705361322956e-18,-0.014384920708835125,0.0022321429569274187,0.0009920635493472219,0.0022321429569274187,0.009093915112316608,1.390138892505182e-17,-4.013132980873503e-21,-7.055379541772757e-33,-0.0007440476329065859,2.763508967667657e-20,-0.0,-0.0003306878206785768,1.0101518887149611e-17,-0.0007440476329065859,-0.0009920635493472219,0.0029761905316263437,-0.01785714365541935,1.3315842658676557e-17,3.344358052745385e-17,1.390138892505182e-17,0.008928571827709675,-2.3017258005847025e-18,-4.5315224566436314e-18,-1.5105074855478771e-18,-1.1014117685272467e-18,-1.3216941015531808e-18,-6.608470507765904e-19,-9.912705813347644e-18,-1.4869058513226313e-18,-1.4318352680661478e-18,0.0019841270986944437,-0.0019841270986944437,-0.0005668934318237007,-6.922820513198466e-33,-4.013132980873503e-21,-2.3017258005847025e-18,0.0005668934318237007,1.1681960921071158e-33,2.0111902486090553e-34,1.3552527156068805e-20,-0.0,3.3881317890172014e-21,2.556669723653751e-33,2.1376169619273963e-34,-1.2069736437820746e-21,0.004464285913854837,-0.004464285913854837,-6.75819693746962e-33,-0.004464285913854837,-7.055379541772757e-33,-4.5315224566436314e-18,1.1681960921071158e-33,0.004464285913854837,7.666286710959985e-34,5.590000937198001e-34,6.708000757295616e-34,3.354000378647808e-34,5.031000843478201e-33,7.546501081546309e-34,7.267001126521905e-34,0.0022321429569274187,-0.0022321429569274187,1.2197274440461925e-19,-4.19072735946769e-33,-0.0007440476329065859,-1.5105074855478771e-18,2.0111902486090553e-34,7.666286710959985e-34,0.0007440476329065859,-3.062927314397574e-35,6.891121540195242e-35,-4.0657581468206416e-20,1.7857210189829844e-33,-1.2951090514187393e-34,-5.212510537848798e-21,0.0006613756413571537,2.1553896920082527e-18,-0.0006613756413571537,-0.0,2.763508967667657e-20,-1.1014117685272467e-18,1.3552527156068805e-20,5.590000937198001e-34,-3.062927314397574e-35,9.448223863728344e-05,-0.0,-6.776263578034403e-21,1.2242601931436309e-33,-1.4389514482284817e-35,-7.355666236675327e-22,0.0019841270986944437,2.6433882031063616e-18,-0.0005668934318237007,-0.0019841270986944437,-0.0,-1.3216941015531808e-18,-0.0,6.708000757295616e-34,6.891121540195242e-35,-0.0,0.0005668934318237007,-0.0,1.4572757750777444e-33,-0.0,5.7024433429416986e-36,0.0009920635493472219,1.4318083846962398e-18,-0.00028344671591185033,-2.798938374674255e-33,-0.0003306878206785768,-6.608470507765904e-19,3.3881317890172014e-21,3.354000378647808e-34,-4.0657581468206416e-20,-6.776263578034403e-21,-0.0,9.448223863728344e-05,1.3181098254033592e-33,-5.756040547400981e-35,-5.473136165715434e-20,0.0029761905316263437,1.9825411626695288e-17,-1.6538923397425388e-32,-0.01785714365541935,1.0101518887149611e-17,-9.912705813347644e-18,2.556669723653751e-33,5.031000843478201e-33,1.7857210189829844e-33,1.2242601931436309e-33,1.4572757750777444e-33,1.3181098254033592e-33,0.008928571827709675,-1.5105074855478771e-18,-1.4318352680661478e-18,0.0022321429569274187,2.9738117026452626e-18,1.7268121068231091e-34,-0.0022321429569274187,-0.0007440476329065859,-1.4869058513226313e-18,2.1376169619273963e-34,7.546501081546309e-34,-1.2951090514187393e-34,-1.4389514482284817e-35,-0.0,-5.756040547400981e-35,-1.5105074855478771e-18,0.0007440476329065859,8.789434714177847e-35,0.0008267195662483573,2.8835323834106126e-18,1.7097034854949742e-19,2.8636705361322956e-18,-0.0009920635493472219,-1.4318352680661478e-18,-1.2069736437820746e-21,7.267001126521905e-34,-5.212510537848798e-21,-7.355666236675327e-22,5.7024433429416986e-36,-5.473136165715434e-20,-1.4318352680661478e-18,8.789434714177847e-35,0.0001653439103392884,3.0,8.0,3.0,8.0,0.06254822760820389,-0.02387152798473835,-0.011381172575056553,-0.02387152798473835,-0.011381172575056553,0.0026041667442768812,0.0017361111240461469,0.00390625,0.0017361111240461469,0.0005787037080153823,0.0017361111240461469,0.0007716049440205097,0.0026041667442768812,0.0017361111240461469,0.0005787037080153823,-0.02387152798473835,0.0499131940305233,0.0017361111240461469,0.00390625,0.0017361111240461469,-0.015625,-0.0017361111240461469,-0.00390625,-0.0017361111240461469,1.945760618091389e-18,2.3129647035674605e-18,1.03984275098097e-18,1.734723475976807e-17,2.3129647035674605e-18,1.9321040729732917e-18,-0.011381172575056553,0.0017361111240461469,0.006145282182842493,0.0017361111240461469,0.0007716049440205097,1.146386054060607e-17,-0.0004960317746736109,-5.0909767693090616e-33,6.776263578034403e-20,-0.0005787037080153823,-0.0004960317746736109,-0.00022045854711905122,-1.3144471870442885e-32,2.0784501068176873e-34,7.236537890131878e-20,-0.02387152798473835,0.00390625,0.0017361111240461469,0.0499131940305233,0.0017361111240461469,2.89120568300393e-17,-5.224357541902974e-33,-0.00390625,-4.349004367728049e-33,-0.0,-0.0017361111240461469,-1.2200432908310483e-33,-0.015625,-0.0017361111240461469,1.927470620772076e-18,-0.011381172575056553,0.0017361111240461469,0.0007716049440205097,0.0017361111240461469,0.006145282182842493,1.146386054060607e-17,2.6361250920390514e-20,-5.0909767693090616e-33,-0.0004960317746736109,2.3623380028068026e-20,-0.0,-0.00022045854711905122,8.508405423319432e-18,-0.0004960317746736109,-0.0005787037080153823,0.0026041667442768812,-0.015625,1.146386054060607e-17,2.89120568300393e-17,1.146386054060607e-17,0.0078125,-1.7622588710026254e-18,-3.469446951953614e-18,-1.7622588710026254e-18,-9.63735310386038e-19,-1.1564823517837303e-18,-5.139921448597049e-19,-8.673617379884035e-18,-1.1564823517837303e-18,-9.63735310386038e-19,0.0017361111240461469,-0.0017361111240461469,-0.0004960317746736109,-5.224357541902974e-33,2.6361250920390514e-20,-1.7622588710026254e-18,0.0004960317746736109,7.826001495748193e-34,-4.479225022240126e-21,1.640671128891727e-35,-0.0,3.3881317890172014e-21,1.9885097738761604e-33,1.3278225770657687e-34,-4.456290955080953e-21,0.00390625,-0.00390625,-5.0909767693090616e-33,-0.00390625,-5.0909767693090616e-33,-3.469446951953614e-18,7.826001495748193e-34,0.00390625,7.826001495748193e-34,4.2798445249394045e-34,5.135813338091789e-34,2.282583654798853e-34,3.851859888774472e-33,5.135813338091789e-34,4.2798445249394045e-34,0.0017361111240461469,-0.0017361111240461469,6.776263578034403e-20,-4.349004367728049e-33,-0.0004960317746736109,-1.7622588710026254e-18,-4.479225022240126e-21,7.826001495748193e-34,0.0004960317746736109,-5.2257623913145526e-21,1.3278225770657687e-34,-6.776263578034403e-21,1.784658849634421e-33,-1.336146546437529e-34,3.1324237256583863e-21,0.0005787037080153823,1.945760618091389e-18,-0.0005787037080153823,-0.0,2.3623380028068026e-20,-9.63735310386038e-19,1.640671128891727e-35,4.2798445249394045e-34,-5.2257623913145526e-21,8.26719551696442e-05,-0.0,3.3881317890172014e-21,1.1073054847345213e-33,-6.770375368888939e-36,-4.6842058710270216e-21,0.0017361111240461469,2.3129647035674605e-18,-0.0004960317746736109,-0.0017361111240461469,-0.0,-1.1564823517837303e-18,-0.0,5.135813338091789e-34,1.3278225770657687e-34,-0.0,0.0004960317746736109,-0.0,1.2841319775218486e-33,-0.0,-6.770375368888939e-36,0.0007716049440205097,1.03984275098097e-18,-0.00022045854711905122,-1.2200432908310483e-33,-0.00022045854711905122,-5.139921448597049e-19,3.3881317890172014e-21,2.282583654798853e-34,-6.776263578034403e-21,3.3881317890172014e-21,-0.0,6.29881615168415e-05,5.998149565370288e-34,-5.938428712630006e-35,-9.269417448218339e-21,0.0026041667442768812,1.734723475976807e-17,-1.3144471870442885e-32,-0.015625,8.508405423319432e-18,-8.673617379884035e-18,1.9885097738761604e-33,3.851859888774472e-33,1.784658849634421e-33,1.1073054847345213e-33,1.2841319775218486e-33,5.998149565370288e-34,0.0078125,-1.7622588710026254e-18,-9.63735310386038e-19,0.0017361111240461469,2.3129647035674605e-18,2.0784501068176873e-34,-0.0017361111240461469,-0.0004960317746736109,-1.1564823517837303e-18,1.3278225770657687e-34,5.135813338091789e-34,-1.336146546437529e-34,-6.770375368888939e-36,-0.0,-5.938428712630006e-35,-1.7622588710026254e-18,0.0004960317746736109,7.227206165766133e-35,0.0005787037080153823,1.9321040729732917e-18,7.236537890131878e-20,1.927470620772076e-18,-0.0005787037080153823,-9.63735310386038e-19,-4.456290955080953e-21,4.2798445249394045e-34,3.1324237256583863e-21,-4.6842058710270216e-21,-6.770375368888939e-36,-9.269417448218339e-21,-9.63735310386038e-19,7.227206165766133e-35,8.26719551696442e-05,3.0,8.0,4.0,3.0,0.10873842239379883,-0.04496527835726738,-0.02152777835726738,-0.03680555522441864,-0.04496527835726738,0.0052083334885537624,0.0034722222480922937,0.0062500000931322575,0.0078125,0.0011574074160307646,0.0027777778450399637,0.0034722222480922937,0.0034722222480922937,0.0062500000931322575,0.0052083334885537624,-0.04496527835726738,0.09704861044883728,0.0034722222480922937,0.0062500000931322575,0.0078125,-0.03125,-0.0034722222480922937,-0.0062500000931322575,-0.0078125,-4.20128341838133e-18,2.7647155398380363e-18,-6.505213034913027e-19,2.862293735361732e-17,2.2551405187698492e-17,5.204170427930421e-18,-0.02152777835726738,0.0034722222480922937,0.011937830597162247,0.0027777778450399637,0.0034722222480922937,-9.331381476818852e-18,-0.0009920635493472219,-8.673617379884035e-19,-2.168404344971009e-18,-0.0011574074160307646,-0.0007936508045531809,-0.0009920635493472219,1.3010426069826053e-17,3.0357660829594124e-18,6.938893903907228e-18,-0.03680555522441864,0.0062500000931322575,0.0027777778450399637,0.048842594027519226,0.0062500000931322575,4.2868397017544244e-17,1.0428065804747782e-17,-0.004166666883975267,1.1709383462843448e-17,1.3010426069826053e-18,-0.0018518518190830946,1.481734731723256e-18,-0.010416666977107525,-0.004166666883975267,2.2551405187698492e-17,-0.04496527835726738,0.0078125,0.0034722222480922937,0.0062500000931322575,0.09704861044883728,-1.0748033327753707e-18,9.096939466067236e-18,6.1819285176507645e-18,-0.0078125,-6.505213034913027e-19,4.174178364069192e-18,-0.0034722222480922937,9.86623976961809e-18,-0.0062500000931322575,-0.03125,0.0052083334885537624,-0.03125,-9.331381476818852e-18,4.2868397017544244e-17,-1.0748033327753707e-18,0.015625,-2.168404344971009e-19,-4.355013280863085e-18,-2.4750962395309167e-18,1.3010426069826053e-18,-8.131516293641283e-19,2.168404344971009e-19,-8.61940727125976e-18,-6.179952383167375e-18,7.26415455565288e-18,0.0034722222480922937,-0.0034722222480922937,-0.0009920635493472219,1.0428065804747782e-17,9.096939466067236e-18,-2.168404344971009e-19,0.0009920635493472219,-7.949150368931131e-19,-4.858924575597606e-19,1.6263032587282567e-19,-2.439454888092385e-19,-8.131516293641283e-20,-2.2768245622195593e-18,-1.463672932855431e-18,-2.8189256484623115e-18,0.0062500000931322575,-0.0062500000931322575,-8.673617379884035e-19,-0.004166666883975267,6.1819285176507645e-18,-4.355013280863085e-18,-7.949150368931131e-19,0.004166666883975267,-5.421010862427522e-19,2.168404344971009e-19,-0.0,1.6263032587282567e-19,2.168404344971009e-19,-9.75781955236954e-19,-2.168404344971009e-18,0.0078125,-0.0078125,-2.168404344971009e-18,1.1709383462843448e-17,-0.0078125,-2.4750962395309167e-18,-4.858924575597606e-19,-5.421010862427522e-19,0.0078125,3.2526065174565133e-19,-2.168404344971009e-19,-1.6263032587282567e-19,-2.2768245622195593e-18,-3.144186300207963e-18,-5.204170427930421e-18,0.0011574074160307646,-4.20128341838133e-18,-0.0011574074160307646,1.3010426069826053e-18,-6.505213034913027e-19,1.3010426069826053e-18,1.6263032587282567e-19,2.168404344971009e-19,3.2526065174565133e-19,0.0001653439103392884,2.710505431213761e-20,1.0842021724855044e-19,-5.421010862427522e-19,-5.421010862427522e-20,1.0842021724855044e-19,0.0027777778450399637,2.7647155398380363e-18,-0.0007936508045531809,-0.0018518518190830946,4.174178364069192e-18,-8.131516293641283e-19,-2.439454888092385e-19,-0.0,-2.168404344971009e-19,2.710505431213761e-20,0.0005291005363687873,1.6903469744850932e-20,-3.4380329070355347e-18,-7.690238184311088e-19,-1.4452917388735839e-18,0.0034722222480922937,-6.505213034913027e-19,-0.0009920635493472219,1.481734731723256e-18,-0.0034722222480922937,2.168404344971009e-19,-8.131516293641283e-20,1.6263032587282567e-19,-1.6263032587282567e-19,1.0842021724855044e-19,1.6903469744850932e-20,0.0009920635493472219,-6.42240708571764e-19,7.204083329551389e-20,-2.4732129560712866e-18,0.0034722222480922937,2.862293735361732e-17,1.3010426069826053e-17,-0.010416666977107525,9.86623976961809e-18,-8.61940727125976e-18,-2.2768245622195593e-18,2.168404344971009e-19,-2.2768245622195593e-18,-5.421010862427522e-19,-3.4380329070355347e-18,-6.42240708571764e-19,0.0034722222480922937,5.887747006072685e-19,-3.101945288252177e-18,0.0062500000931322575,2.2551405187698492e-17,3.0357660829594124e-18,-0.004166666883975267,-0.0062500000931322575,-6.179952383167375e-18,-1.463672932855431e-18,-9.75781955236954e-19,-3.144186300207963e-18,-5.421010862427522e-20,-7.690238184311088e-19,7.204083329551389e-20,5.887747006072685e-19,0.004166666883975267,-5.395262797910278e-18,0.0052083334885537624,5.204170427930421e-18,6.938893903907228e-18,2.2551405187698492e-17,-0.03125,7.26415455565288e-18,-2.8189256484623115e-18,-2.168404344971009e-18,-5.204170427930421e-18,1.0842021724855044e-19,-1.4452917388735839e-18,-2.4732129560712866e-18,-3.101945288252177e-18,-5.395262797910278e-18,0.015625,3.0,8.0,4.0,4.0,0.08803819119930267,-0.03489583358168602,-0.01666666753590107,-0.028541667386889458,-0.028541667386889458,0.00390625,0.0026041667442768812,0.004687500186264515,0.004687500186264515,0.0008680555620230734,0.0020833334419876337,0.0020833334419876337,0.0026041667442768812,0.0037499999161809683,0.0026041667442768812,-0.03489583358168602,0.07395832985639572,0.0026041667442768812,0.004687500186264515,0.004687500186264515,-0.0234375,-0.0026041667442768812,-0.004687500186264515,-0.004687500186264515,-2.4123498337802474e-18,-8.077306185017008e-18,-8.294146619514109e-18,-2.211772431870429e-17,-1.951563910473908e-17,-2.211772431870429e-17,-0.01666666753590107,0.0026041667442768812,0.00910218246281147,0.0020833334419876337,0.0020833334419876337,-2.2180361743409256e-17,-0.0007440476329065859,-8.673617379884035e-19,-1.3010426069826053e-18,-0.0008680555620230734,-0.0005952381179668009,-0.0005952381179668009,-8.239936510889834e-18,-5.204170427930421e-18,-8.239936510889834e-18,-0.028541667386889458,0.004687500186264515,0.0020833334419876337,0.03725694492459297,0.0037499999161809683,-4.7837826822521917e-17,-7.410971669755529e-18,-0.0031250000465661287,-1.734723475976807e-18,-7.589415207398531e-19,-0.0013888889225199819,-8.130515405100094e-18,-0.0078125,-0.0024999999441206455,-1.0625181290357943e-17,-0.028541667386889458,0.004687500186264515,0.0020833334419876337,0.0037499999161809683,0.03725694492459297,-4.7695071992407515e-17,-6.874110359102994e-18,-3.4533859995899783e-18,-0.0031250000465661287,-7.589415207398531e-19,-8.294146619514109e-18,-0.0013888889225199819,-1.1546753136970622e-17,-0.0024999999441206455,-0.0078125,0.00390625,-0.0234375,-2.2180361743409256e-17,-4.7837826822521917e-17,-4.7695071992407515e-17,0.01171875,4.662069341687669e-18,-1.7219042444337665e-18,-1.8048063533753624e-18,9.75781955236954e-19,3.469446951953614e-18,3.469446951953614e-18,7.643625316022806e-18,7.15573433840433e-18,7.589415207398531e-18,0.0026041667442768812,-0.0026041667442768812,-0.0007440476329065859,-7.410971669755529e-18,-6.874110359102994e-18,4.662069341687669e-18,0.0007440476329065859,4.33619683478267e-19,3.820405520391874e-19,-0.0,2.168404344971009e-19,2.439454888092385e-19,1.4365678785432934e-18,9.75781955236954e-19,1.2468324983583301e-18,0.004687500186264515,-0.004687500186264515,-8.673617379884035e-19,-0.0031250000465661287,-3.4533859995899783e-18,-1.7219042444337665e-18,4.33619683478267e-19,0.0031250000465661287,-1.6263032587282567e-18,5.421010862427522e-20,5.421010862427522e-20,1.0842021724855044e-19,1.6263032587282567e-19,4.336808689942018e-19,1.1926223897340549e-18,0.004687500186264515,-0.004687500186264515,-1.3010426069826053e-18,-1.734723475976807e-18,-0.0031250000465661287,-1.8048063533753624e-18,3.820405520391874e-19,-1.6263032587282567e-18,0.0031250000465661287,5.421010862427522e-20,8.131516293641283e-20,1.8973538018496328e-19,7.860465750519907e-19,2.710505431213761e-19,-0.0,0.0008680555620230734,-2.4123498337802474e-18,-0.0008680555620230734,-7.589415207398531e-19,-7.589415207398531e-19,9.75781955236954e-19,-0.0,5.421010862427522e-20,5.421010862427522e-20,0.00012400794366840273,-2.710505431213761e-20,-5.421010862427522e-20,3.2526065174565133e-19,5.421010862427522e-20,2.168404344971009e-19,0.0020833334419876337,-8.077306185017008e-18,-0.0005952381179668009,-0.0013888889225199819,-8.294146619514109e-18,3.469446951953614e-18,2.168404344971009e-19,5.421010862427522e-20,8.131516293641283e-20,-2.710505431213761e-20,0.00039682540227659047,3.6752908990862234e-19,1.0796110098931054e-18,1.1590128006751065e-18,1.662441435522203e-18,0.0020833334419876337,-8.294146619514109e-18,-0.0005952381179668009,-8.130515405100094e-18,-0.0013888889225199819,3.469446951953614e-18,2.439454888092385e-19,1.0842021724855044e-19,1.8973538018496328e-19,-5.421010862427522e-20,3.6752908990862234e-19,0.00039682540227659047,1.6138715613021972e-18,1.1529541162784619e-18,1.168717697211885e-18,0.0026041667442768812,-2.211772431870429e-17,-8.239936510889834e-18,-0.0078125,-1.1546753136970622e-17,7.643625316022806e-18,1.4365678785432934e-18,1.6263032587282567e-19,7.860465750519907e-19,3.2526065174565133e-19,1.0796110098931054e-18,1.6138715613021972e-18,0.0026041667442768812,1.618692886900039e-18,6.582869267807388e-19,0.0037499999161809683,-1.951563910473908e-17,-5.204170427930421e-18,-0.0024999999441206455,-0.0024999999441206455,7.15573433840433e-18,9.75781955236954e-19,4.336808689942018e-19,2.710505431213761e-19,5.421010862427522e-20,1.1590128006751065e-18,1.1529541162784619e-18,1.618692886900039e-18,0.0016666667070239782,9.398729074726848e-19,0.0026041667442768812,-2.211772431870429e-17,-8.239936510889834e-18,-1.0625181290357943e-17,-0.0078125,7.589415207398531e-18,1.2468324983583301e-18,1.1926223897340549e-18,-0.0,2.168404344971009e-19,1.662441435522203e-18,1.168717697211885e-18,6.582869267807388e-19,9.398729074726848e-19,0.0026041667442768812,3.0,8.0,4.0,5.0,0.07408729940652847,-0.028541667386889458,-0.013611110858619213,-0.023333333432674408,-0.019771825522184372,0.0031250000465661287,0.0020833334419876337,0.0037499999161809683,0.0031250000465661287,0.0006944444612599909,0.0016666667070239782,0.0013888889225199819,0.0020833334419876337,0.0024999999441206455,0.0014880952658131719,-0.028541667386889458,0.05979166552424431,0.0020833334419876337,0.0037499999161809683,0.0031250000465661287,-0.01875000074505806,-0.0020833334419876337,-0.0037499999161809683,-0.0031250000465661287,-4.363913744254155e-18,0.0,-3.2255014631443757e-18,1.691355389077387e-17,3.0357660829594124e-18,-4.553649124439119e-18,-0.013611110858619213,0.0020833334419876337,0.007361111231148243,0.0016666667070239782,0.0013888889225199819,-1.3691797901443134e-17,-0.0005952381179668009,-1.951563910473908e-18,-2.3852447794681098e-18,-0.0006944444612599909,-0.0004761904710903764,-0.00039682540227659047,-8.673617379884035e-19,1.5178830414797062e-18,1.734723475976807e-18,-0.023333333432674408,0.0037499999161809683,0.0016666667070239782,0.030138889327645302,0.0024999999441206455,2.1689828750914285e-17,4.053280954460892e-18,-0.0024999999441206455,4.87890977618477e-19,-7.589415207398531e-19,-0.0011111111380159855,2.0426108533170072e-19,-0.0062500000931322575,-0.0016666667070239782,-4.228388472693467e-18,-0.019771825522184372,0.0031250000465661287,0.0013888889225199819,0.0024999999441206455,0.018814483657479286,-1.1727318392884823e-17,1.6412975616920054e-18,-6.407947348224754e-18,-0.0015625000232830644,8.673617379884035e-19,-4.0657581468206416e-19,-0.0006944444612599909,1.8973538018496328e-18,-0.0012499999720603228,-0.0029761905316263437,0.0031250000465661287,-0.01875000074505806,-1.3691797901443134e-17,2.1689828750914285e-17,-1.1727318392884823e-17,0.00937500037252903,2.2768245622195593e-18,-5.244861923803742e-18,1.2496172018904899e-18,1.0842021724855044e-18,2.710505431213761e-19,8.944667923005412e-19,-5.637851296924623e-18,5.421010862427522e-20,1.6805133673525319e-18,0.0020833334419876337,-0.0020833334419876337,-0.0005952381179668009,4.053280954460892e-18,1.6412975616920054e-18,2.2768245622195593e-18,0.0005952381179668009,-4.486218705072291e-19,7.032825923479942e-20,1.6263032587282567e-19,-5.421010862427522e-20,6.776263578034403e-20,-7.589415207398531e-19,-4.336808689942018e-19,-3.1170812458958252e-19,0.0037499999161809683,-0.0037499999161809683,-1.951563910473908e-18,-0.0024999999441206455,-6.407947348224754e-18,-5.244861923803742e-18,-4.486218705072291e-19,0.0024999999441206455,6.505213034913027e-19,3.2526065174565133e-19,-2.981555974335137e-19,4.0657581468206416e-19,-1.6805133673525319e-18,-2.168404344971009e-19,1.0842021724855044e-18,0.0031250000465661287,-0.0031250000465661287,-2.3852447794681098e-18,4.87890977618477e-19,-0.0015625000232830644,1.2496172018904899e-18,7.032825923479942e-20,6.505213034913027e-19,0.0015625000232830644,2.439454888092385e-19,6.776263578034403e-20,2.0328790734103208e-19,-2.710505431213761e-19,-2.439454888092385e-19,2.0328790734103208e-19,0.0006944444612599909,-4.363913744254155e-18,-0.0006944444612599909,-7.589415207398531e-19,8.673617379884035e-19,1.0842021724855044e-18,1.6263032587282567e-19,3.2526065174565133e-19,2.439454888092385e-19,9.920635056914762e-05,8.131516293641283e-20,4.0657581468206416e-20,1.0842021724855044e-19,-5.421010862427522e-20,-1.3552527156068805e-19,0.0016666667070239782,0.0,-0.0004761904710903764,-0.0011111111380159855,-4.0657581468206416e-19,2.710505431213761e-19,-5.421010862427522e-20,-2.981555974335137e-19,6.776263578034403e-20,8.131516293641283e-20,0.0003174603043589741,4.996766082120413e-20,4.749003128934848e-19,-1.730879179929361e-19,1.071837696408912e-19,0.0013888889225199819,-3.2255014631443757e-18,-0.00039682540227659047,2.0426108533170072e-19,-0.0006944444612599909,8.944667923005412e-19,6.776263578034403e-20,4.0657581468206416e-19,2.0328790734103208e-19,4.0657581468206416e-20,4.996766082120413e-20,0.00019841270113829523,-1.6874101925048459e-19,-1.7781759456384653e-19,-2.2437669611231253e-19,0.0020833334419876337,1.691355389077387e-17,-8.673617379884035e-19,-0.0062500000931322575,1.8973538018496328e-18,-5.637851296924623e-18,-7.589415207398531e-19,-1.6805133673525319e-18,-2.710505431213761e-19,1.0842021724855044e-19,4.749003128934848e-19,-1.6874101925048459e-19,0.0020833334419876337,-2.4618896806660482e-18,6.382858546655714e-19,0.0024999999441206455,3.0357660829594124e-18,1.5178830414797062e-18,-0.0016666667070239782,-0.0012499999720603228,5.421010862427522e-20,-4.336808689942018e-19,-2.168404344971009e-19,-2.439454888092385e-19,-5.421010862427522e-20,-1.730879179929361e-19,-1.7781759456384653e-19,-2.4618896806660482e-18,0.0008333333535119891,2.602173980784695e-19,0.0014880952658131719,-4.553649124439119e-18,1.734723475976807e-18,-4.228388472693467e-18,-0.0029761905316263437,1.6805133673525319e-18,-3.1170812458958252e-19,1.0842021724855044e-18,2.0328790734103208e-19,-1.3552527156068805e-19,1.071837696408912e-19,-2.2437669611231253e-19,6.382858546655714e-19,2.602173980784695e-19,0.0007440476329065859,3.0,8.0,4.0,6.0,0.06400462985038757,-0.02415674552321434,-0.011507936753332615,-0.01974206417798996,-0.014521329663693905,0.0026041667442768812,0.0017361111240461469,0.0031250000465661287,0.0022321429569274187,0.0005787037080153823,0.0013888889225199819,0.0009920635493472219,0.0017361111240461469,0.0017857142956927419,0.0009300595265813172,-0.02415674552321434,0.05019841343164444,0.0017361111240461469,0.0031250000465661287,0.0022321429569274187,-0.015625,-0.0017361111240461469,-0.0031250000465661287,-0.0022321429569274187,1.9749044658183168e-18,1.8740887267361194e-18,1.3454110240763012e-18,8.095375945498229e-18,2.3790494034752407e-18,3.4074925716394644e-18,-0.011507936753332615,0.0017361111240461469,0.006181500386446714,0.0013888889225199819,0.0009920635493472219,1.1548301619077321e-17,-0.0004960317746736109,-5.470374550534663e-33,-2.3444463408982797e-33,-0.0005787037080153823,-0.00039682540227659047,-0.00028344671591185033,-5.983222531989272e-33,-1.5105075372466654e-19,-2.95020996502244e-19,-0.01974206417798996,0.0031250000465661287,0.0013888889225199819,0.025314154103398323,0.0017857142956927419,2.2055770145185294e-17,2.371692252312041e-20,-0.0020833334419876337,-4.477590592738545e-33,2.710505431213761e-20,-0.0009259259095415473,-2.1034306003246757e-19,-0.0052083334885537624,-0.0011904762359336019,-6.195441133342278e-19,-0.014521329663693905,0.0022321429569274187,0.0009920635493472219,0.0017857142956927419,0.010923858731985092,1.4202016138155642e-17,2.371692252312041e-20,-6.727426168784939e-33,-0.0008928571478463709,8.614165195073464e-21,-5.929230630780102e-20,-0.00039682540227659047,-7.358122234355283e-33,-0.0007142857066355646,-0.0013950893189758062,0.0026041667442768812,-0.015625,1.1548301619077321e-17,2.2055770145185294e-17,1.4202016138155642e-17,0.0078125,-1.7622588710026254e-18,-3.700743608425998e-18,-1.5860329011843016e-18,-9.63735310386038e-19,-9.251859021064995e-19,-6.608470507765904e-19,-4.0476879727491145e-18,-1.1895247017376204e-18,-1.7037462858197322e-18,0.0017361111240461469,-0.0017361111240461469,-0.0004960317746736109,2.371692252312041e-20,2.371692252312041e-20,-1.7622588710026254e-18,0.0004960317746736109,8.347734561456088e-34,3.5776005263383236e-34,-1.3552527156068805e-20,-6.776263578034403e-21,-6.776263578034403e-21,9.130334619195412e-34,2.671789604767372e-34,3.7687074387782186e-34,0.0031250000465661287,-0.0031250000465661287,-5.470374550534663e-33,-0.0020833334419876337,-6.727426168784939e-33,-3.700743608425998e-18,8.347734561456088e-34,0.0020833334419876337,7.512960921639487e-34,4.565167309597706e-34,4.3825606906821945e-34,3.130400460546033e-34,1.917370325132334e-33,5.634720691229615e-34,8.070564013791732e-34,0.0022321429569274187,-0.0022321429569274187,-2.3444463408982797e-33,-4.477590592738545e-33,-0.0008928571478463709,-1.5860329011843016e-18,3.5776005263383236e-34,7.512960921639487e-34,0.0008928571478463709,1.9565003739370484e-34,1.8782402304098718e-34,1.3416001973768713e-34,8.217301524617855e-34,2.4148802634428723e-34,3.4588129191791447e-34,0.0005787037080153823,1.9749044658183168e-18,-0.0005787037080153823,2.710505431213761e-20,8.614165195073464e-21,-9.63735310386038e-19,-1.3552527156068805e-20,4.565167309597706e-34,1.9565003739370484e-34,8.26719551696442e-05,-1.3552527156068805e-20,0.0,4.993151486585158e-34,1.4745401136714774e-34,2.046300565911438e-34,0.0013888889225199819,1.8740887267361194e-18,-0.00039682540227659047,-0.0009259259095415473,-5.929230630780102e-20,-9.251859021064995e-19,-6.776263578034403e-21,4.3825606906821945e-34,1.8782402304098718e-34,-1.3552527156068805e-20,0.00026455026818439364,1.6940658945086007e-20,4.793425812830835e-34,1.5196790967430533e-34,2.1666711874356403e-34,0.0009920635493472219,1.3454110240763012e-18,-0.00028344671591185033,-2.1034306003246757e-19,-0.00039682540227659047,-6.608470507765904e-19,-6.776263578034403e-21,3.130400460546033e-34,1.3416001973768713e-34,0.0,1.6940658945086007e-20,0.00011337868636474013,3.4238754821982793e-34,6.042030278233632e-20,1.1800840377077644e-19,0.0017361111240461469,8.095375945498229e-18,-5.983222531989272e-33,-0.0052083334885537624,-7.358122234355283e-33,-4.0476879727491145e-18,9.130334619195412e-34,1.917370325132334e-33,8.217301524617855e-34,4.993151486585158e-34,4.793425812830835e-34,3.4238754821982793e-34,0.0017361111240461469,6.162975913874651e-34,8.827179217893152e-34,0.0017857142956927419,2.3790494034752407e-18,-1.5105075372466654e-19,-0.0011904762359336019,-0.0007142857066355646,-1.1895247017376204e-18,2.671789604767372e-34,5.634720691229615e-34,2.4148802634428723e-34,1.4745401136714774e-34,1.5196790967430533e-34,6.042030278233632e-20,6.162975913874651e-34,0.0004761904710903764,2.4781765050356993e-19,0.0009300595265813172,3.4074925716394644e-18,-2.95020996502244e-19,-6.195441133342278e-19,-0.0013950893189758062,-1.7037462858197322e-18,3.7687074387782186e-34,8.070564013791732e-34,3.4588129191791447e-34,2.046300565911438e-34,2.1666711874356403e-34,1.1800840377077644e-19,8.827179217893152e-34,2.4781765050356993e-19,0.00027901786961592734,3.0,8.0,4.0,7.0,0.0563616082072258,-0.02094493992626667,-0.00997023843228817,-0.01711309514939785,-0.01112351194024086,0.0022321429569274187,0.0014880952658131719,0.0026785715017467737,0.0016741071594879031,0.0004960317746736109,0.0011904762359336019,0.0007440476329065859,0.0014880952658131719,0.0013392857508733869,0.0006200397037900984,-0.02094493992626667,0.04326637089252472,0.0014880952658131719,0.0026785715017467737,0.0016741071594879031,-0.013392857275903225,-0.0014880952658131719,-0.0026785715017467737,-0.0016741071594879031,1.6795696576711854e-18,1.5921499018141313e-18,8.692978576096605e-19,6.938893903907228e-18,1.7687791221810747e-18,2.140842480165589e-18,-0.00997023843228817,0.0014880952658131719,0.005328798200935125,0.0011904762359336019,0.0007440476329065859,9.753562880937342e-18,-0.00042517005931586027,-3.9601846319386226e-33,-1.0842021724855044e-19,-0.0004960317746736109,-0.0003401360590942204,-0.00021258502965793014,-5.664403070804539e-19,-1.2197274440461925e-19,-1.3239776628811041e-19,-0.01711309514939785,0.0026785715017467737,0.0011904762359336019,0.02182539738714695,0.0013392857508733869,1.8579242527188226e-17,6.501749676540294e-22,-0.0017857142956927419,-9.129907460238876e-21,-2.710505431213761e-20,-0.0007936508045531809,-9.422917774542459e-20,-0.004464285913854837,-0.0008928571478463709,1.805935125331722e-20,-0.01112351194024086,0.0016741071594879031,0.0007440476329065859,0.0013392857508733869,0.006932043470442295,1.1215518586841113e-17,1.0628360487956457e-20,-4.553774381615338e-33,-0.0005580357392318547,1.9947877293196807e-20,-1.7618285302889447e-19,-0.00024801588733680546,-7.434529256613157e-19,-0.00044642857392318547,-0.0007440476329065859,0.0022321429569274187,-0.013392857275903225,9.753562880937342e-18,1.8579242527188226e-17,1.1215518586841113e-17,0.0066964286379516125,-1.2947207757535922e-18,-2.7189135153452095e-18,-1.69932097294015e-18,-8.260588005460409e-19,-7.930164505921508e-19,-4.956353010071399e-19,-3.469446951953614e-18,-8.921435521526094e-19,-1.073876476899005e-18,0.0014880952658131719,-0.0014880952658131719,-0.00042517005931586027,6.501749676540294e-22,1.0628360487956457e-20,-1.2947207757535922e-18,0.00042517005931586027,5.256882368564273e-34,-1.0671897128092204e-21,-6.776263578034403e-21,-0.0,-0.0,6.680858776406122e-34,-2.1672498080349348e-22,-1.4209359453430627e-21,0.0026785715017467737,-0.0026785715017467737,-3.9601846319386226e-33,-0.0017857142956927419,-4.553774381615338e-33,-2.7189135153452095e-18,5.256882368564273e-34,0.0017857142956927419,6.8996582235349785e-34,3.354000378647808e-34,3.219840427786743e-34,2.012400181270937e-34,1.4086801957662779e-33,3.6223205099586786e-34,4.360200584077647e-34,0.0016741071594879031,-0.0016741071594879031,-1.0842021724855044e-19,-9.129907460238876e-21,-0.0005580357392318547,-1.69932097294015e-18,-1.0671897128092204e-21,6.8996582235349785e-34,0.0005580357392318547,-1.2450546481150578e-21,-2.038996574872162e-21,4.0657581468206416e-20,8.903759001429377e-34,5.422131756781017e-21,3.9612492078621084e-21,0.0004960317746736109,1.6795696576711854e-18,-0.0004960317746736109,-2.710505431213761e-20,1.9947877293196807e-20,-8.260588005460409e-19,-6.776263578034403e-21,3.354000378647808e-34,-1.2450546481150578e-21,7.086167897796258e-05,6.776263578034403e-21,0.0,4.179078026780049e-34,-2.5284582355918354e-22,-3.473239303643531e-21,0.0011904762359336019,1.5921499018141313e-18,-0.0003401360590942204,-0.0007936508045531809,-1.7618285302889447e-19,-7.930164505921508e-19,-0.0,3.219840427786743e-34,-2.038996574872162e-21,6.776263578034403e-21,0.00022675737272948027,2.371692252312041e-20,3.776268713869693e-19,7.525594862718826e-20,-2.718661965197288e-21,0.0007440476329065859,8.692978576096605e-19,-0.00021258502965793014,-9.422917774542459e-20,-0.00024801588733680546,-4.956353010071399e-19,-0.0,2.012400181270937e-34,4.0657581468206416e-20,0.0,2.371692252312041e-20,7.086167897796258e-05,3.0021987966756986e-34,3.739983240765575e-21,5.473136165715434e-20,0.0014880952658131719,6.938893903907228e-18,-5.664403070804539e-19,-0.004464285913854837,-7.434529256613157e-19,-3.469446951953614e-18,6.680858776406122e-34,1.4086801957662779e-33,8.903759001429377e-34,4.179078026780049e-34,3.776268713869693e-19,3.0021987966756986e-34,0.0014880952658131719,4.956353010071399e-19,5.867550306284009e-34,0.0013392857508733869,1.7687791221810747e-18,-1.2197274440461925e-19,-0.0008928571478463709,-0.00044642857392318547,-8.921435521526094e-19,-2.1672498080349348e-22,3.6223205099586786e-34,5.422131756781017e-21,-2.5284582355918354e-22,7.525594862718826e-20,3.739983240765575e-21,4.956353010071399e-19,0.00029761905898340046,-2.8480111217949174e-21,0.0006200397037900984,2.140842480165589e-18,-1.3239776628811041e-19,1.805935125331722e-20,-0.0007440476329065859,-1.073876476899005e-18,-1.4209359453430627e-21,4.360200584077647e-34,3.9612492078621084e-21,-3.473239303643531e-21,-2.718661965197288e-21,5.473136165715434e-20,5.867550306284009e-34,-2.8480111217949174e-21,0.00012400794366840273,3.0,8.0,4.0,8.0,0.05036168918013573,-0.01848958246409893,-0.008796296082437038,-0.015104166232049465,-0.008796296082437038,0.001953125,0.0013020833721384406,0.0023437500931322575,0.0013020833721384406,0.0004340277810115367,0.0010416667209938169,0.0005787037080153823,0.0013020833721384406,0.0010416667209938169,0.0004340277810115367,-0.01848958246409893,0.03802083432674408,0.0013020833721384406,0.0023437500931322575,0.0013020833721384406,-0.01171875,-0.0013020833721384406,-0.0023437500931322575,-0.0013020833721384406,1.4685307577978018e-18,1.3882599103847371e-18,8.184220623357982e-19,6.071532165918825e-18,1.4879474785089887e-18,1.4976853588726927e-18,-0.008796296082437038,0.0013020833721384406,0.004683366511017084,0.0010416667209938169,0.0005787037080153823,8.440943881282057e-18,-0.00037202381645329297,-2.998825862572808e-33,3.3881317890172014e-20,-0.0004340277810115367,-0.00029761905898340046,-0.0001653439103392884,-4.373287509622145e-33,4.0657581468206416e-20,4.9735216606728196e-20,-0.015104166232049465,0.0023437500931322575,0.0010416667209938169,0.01918402686715126,0.0010416667209938169,1.6046192152785466e-17,-1.8824417387333477e-21,-0.0015625000232830644,1.0253231333665531e-19,2.710505431213761e-20,-0.0006944444612599909,4.946555007248094e-21,-0.00390625,-0.0006944444612599909,1.3162865633949802e-19,-0.008796296082437038,0.0013020833721384406,0.0005787037080153823,0.0010416667209938169,0.004683366511017084,8.440943881282057e-18,-2.3857601388391244e-21,-2.998825862572808e-33,-0.00037202381645329297,8.369904576300237e-21,-4.0657581468206416e-20,-0.0001653439103392884,-4.373287509622145e-33,-0.00029761905898340046,-0.0004340277810115367,0.001953125,-0.01171875,8.440943881282057e-18,1.6046192152785466e-17,8.440943881282057e-18,0.005859375,-9.912706020142797e-19,-2.0816682538902298e-18,-9.912706020142797e-19,-7.228014310907402e-19,-6.938894007304805e-19,-3.854941086447787e-19,-3.0357660829594124e-18,-6.938894007304805e-19,-7.228014310907402e-19,0.0013020833721384406,-0.0013020833721384406,-0.00037202381645329297,-1.8824417387333477e-21,-2.3857601388391244e-21,-9.912706020142797e-19,0.00037202381645329297,3.5217004894156947e-34,1.9324893464799757e-22,-6.776263578034403e-21,-0.0,-3.3881317890172014e-21,5.135813338091789e-34,5.378405184182842e-22,1.7492355698019415e-21,0.0023437500931322575,-0.0023437500931322575,-2.998825862572808e-33,-0.0015625000232830644,-2.998825862572808e-33,-2.0816682538902298e-18,3.5217004894156947e-34,0.0015625000232830644,3.5217004894156947e-34,2.5679066690458946e-34,2.465190273714364e-34,1.3695502158381858e-34,1.0785207504897528e-33,2.465190273714364e-34,2.5679066690458946e-34,0.0013020833721384406,-0.0013020833721384406,3.3881317890172014e-20,1.0253231333665531e-19,-0.00037202381645329297,-9.912706020142797e-19,1.9324893464799757e-22,3.5217004894156947e-34,0.00037202381645329297,2.2545707780088935e-22,-1.3747685992388103e-22,-1.0164395367051604e-20,5.135813338091789e-34,-2.915747035764067e-20,-1.6629939533972972e-20,0.0004340277810115367,1.4685307577978018e-18,-0.0004340277810115367,2.710505431213761e-20,8.369904576300237e-21,-7.228014310907402e-19,-6.776263578034403e-21,2.5679066690458946e-34,2.2545707780088935e-22,6.200397183420137e-05,-6.776263578034403e-21,-6.776263578034403e-21,3.7448637297332385e-34,6.274806132358479e-22,4.424267190809717e-22,0.0010416667209938169,1.3882599103847371e-18,-0.00029761905898340046,-0.0006944444612599909,-4.0657581468206416e-20,-6.938894007304805e-19,-0.0,2.465190273714364e-34,-1.3747685992388103e-22,-6.776263578034403e-21,0.00019841270113829523,1.1858461261560205e-20,3.5950692448287563e-34,3.365485599290449e-22,-1.6038967201482361e-22,0.0005787037080153823,8.184220623357982e-19,-0.0001653439103392884,4.946555007248094e-21,-0.0001653439103392884,-3.854941086447787e-19,-3.3881317890172014e-21,1.3695502158381858e-34,-1.0164395367051604e-20,-6.776263578034403e-21,1.1858461261560205e-20,4.724111931864172e-05,1.997260640551811e-34,-1.3271762346005274e-20,-1.5598191662939326e-20,0.0013020833721384406,6.071532165918825e-18,-4.373287509622145e-33,-0.00390625,-4.373287509622145e-33,-3.0357660829594124e-18,5.135813338091789e-34,1.0785207504897528e-33,5.135813338091789e-34,3.7448637297332385e-34,3.5950692448287563e-34,1.997260640551811e-34,0.0013020833721384406,3.5950692448287563e-34,3.7448637297332385e-34,0.0010416667209938169,1.4879474785089887e-18,4.0657581468206416e-20,-0.0006944444612599909,-0.00029761905898340046,-6.938894007304805e-19,5.378405184182842e-22,2.465190273714364e-34,-2.915747035764067e-20,6.274806132358479e-22,3.365485599290449e-22,-1.3271762346005274e-20,3.5950692448287563e-34,0.00019841270113829523,-3.744779757407389e-20,0.0004340277810115367,1.4976853588726927e-18,4.9735216606728196e-20,1.3162865633949802e-19,-0.0004340277810115367,-7.228014310907402e-19,1.7492355698019415e-21,2.5679066690458946e-34,-1.6629939533972972e-20,4.424267190809717e-22,-1.6038967201482361e-22,-1.5598191662939326e-20,3.7448637297332385e-34,-3.744779757407389e-20,6.200397183420137e-05,3.0,8.0,5.0,3.0,0.09169973433017731,-0.03680555522441864,-0.017592592164874077,-0.025529099628329277,-0.03680555522441864,0.004166666883975267,0.0027777778450399637,0.004166666883975267,0.0062500000931322575,0.0009259259095415473,0.0018518518190830946,0.0027777778450399637,0.0019841270986944437,0.004166666883975267,0.004166666883975267,-0.03680555522441864,0.07847221940755844,0.0027777778450399637,0.004166666883975267,0.0062500000931322575,-0.02500000037252903,-0.0027777778450399637,-0.004166666883975267,-0.0062500000931322575,6.69494841509799e-18,4.933119884809045e-18,7.047314121155779e-18,4.336808689942018e-19,6.505213034913027e-19,1.5612511283791264e-17,-0.017592592164874077,0.0027777778450399637,0.009656084701418877,0.0018518518190830946,0.0027777778450399637,1.5564276727912072e-17,-0.0007936508045531809,3.2526065174565133e-18,5.637851296924623e-18,-0.0009259259095415473,-0.0005291005363687873,-0.0007936508045531809,-4.336808689942018e-19,-6.505213034913027e-19,-8.673617379884035e-18,-0.025529099628329277,0.004166666883975267,0.0018518518190830946,0.024669311940670013,0.004166666883975267,1.0670212175724718e-17,-6.599218389216922e-18,-0.0020833334419876337,3.7947076036992655e-18,-1.0842021724855044e-19,-0.0009259259095415473,-1.9115852374934545e-18,-0.003968254197388887,-0.0020833334419876337,9.107298248878237e-18,-0.03680555522441864,0.0062500000931322575,0.0027777778450399637,0.004166666883975267,0.07847221940755844,2.830477391152737e-17,-8.697334302407156e-18,3.4313155800761447e-18,-0.0062500000931322575,-2.168404344971009e-19,-1.0299920638612292e-18,-0.0027777778450399637,3.469446951953614e-18,-0.004166666883975267,-0.02500000037252903,0.004166666883975267,-0.02500000037252903,1.5564276727912072e-17,1.0670212175724718e-17,2.830477391152737e-17,0.012500000186264515,4.119968255444917e-18,-5.395450464511751e-19,-6.471010150559725e-19,-1.951563910473908e-18,-1.463672932855431e-18,-2.168404344971009e-18,-9.215718466126788e-19,-7.589415207398531e-19,-8.890457814381136e-18,0.0027777778450399637,-0.0027777778450399637,-0.0007936508045531809,-6.599218389216922e-18,-8.697334302407156e-18,4.119968255444917e-18,0.0007936508045531809,1.0718817308518334e-18,1.5622367761175293e-18,-2.981555974335137e-19,2.710505431213761e-20,-0.0,1.0842021724855044e-18,8.131516293641283e-19,2.5478751053409354e-18,0.004166666883975267,-0.004166666883975267,3.2526065174565133e-18,-0.0020833334419876337,3.4313155800761447e-18,-5.395450464511751e-19,1.0718817308518334e-18,0.0020833334419876337,-3.2526065174565133e-19,-3.7947076036992655e-19,-5.963111948670274e-19,-3.5236570605778894e-19,-3.7947076036992655e-19,-5.421010862427522e-19,-3.7947076036992655e-19,0.0062500000931322575,-0.0062500000931322575,5.637851296924623e-18,3.7947076036992655e-18,-0.0062500000931322575,-6.471010150559725e-19,1.5622367761175293e-18,-3.2526065174565133e-19,0.0062500000931322575,-7.047314121155779e-19,-3.7947076036992655e-19,-1.5178830414797062e-18,-2.439454888092385e-19,-9.75781955236954e-19,-6.776263578034403e-18,0.0009259259095415473,6.69494841509799e-18,-0.0009259259095415473,-1.0842021724855044e-19,-2.168404344971009e-19,-1.951563910473908e-18,-2.981555974335137e-19,-3.7947076036992655e-19,-7.047314121155779e-19,0.00013227513409219682,-5.421010862427522e-20,-1.0842021724855044e-19,0.0,1.0842021724855044e-19,3.2526065174565133e-19,0.0018518518190830946,4.933119884809045e-18,-0.0005291005363687873,-0.0009259259095415473,-1.0299920638612292e-18,-1.463672932855431e-18,2.710505431213761e-20,-5.963111948670274e-19,-3.7947076036992655e-19,-5.421010862427522e-20,0.00026455026818439364,-1.3552527156068805e-20,-6.844026213814747e-19,-2.981555974335137e-19,1.0299920638612292e-18,0.0027777778450399637,7.047314121155779e-18,-0.0007936508045531809,-1.9115852374934545e-18,-0.0027777778450399637,-2.168404344971009e-18,-0.0,-3.5236570605778894e-19,-1.5178830414797062e-18,-1.0842021724855044e-19,-1.3552527156068805e-20,0.0007936508045531809,5.014435047745458e-19,3.7947076036992655e-19,1.0299920638612292e-18,0.0019841270986944437,4.336808689942018e-19,-4.336808689942018e-19,-0.003968254197388887,3.469446951953614e-18,-9.215718466126788e-19,1.0842021724855044e-18,-3.7947076036992655e-19,-2.439454888092385e-19,0.0,-6.844026213814747e-19,5.014435047745458e-19,0.0009920635493472219,-6.110383701917098e-19,-1.8446195902333053e-18,0.004166666883975267,6.505213034913027e-19,-6.505213034913027e-19,-0.0020833334419876337,-0.004166666883975267,-7.589415207398531e-19,8.131516293641283e-19,-5.421010862427522e-19,-9.75781955236954e-19,1.0842021724855044e-19,-2.981555974335137e-19,3.7947076036992655e-19,-6.110383701917098e-19,0.0020833334419876337,-4.172807725794192e-18,0.004166666883975267,1.5612511283791264e-17,-8.673617379884035e-18,9.107298248878237e-18,-0.02500000037252903,-8.890457814381136e-18,2.5478751053409354e-18,-3.7947076036992655e-19,-6.776263578034403e-18,3.2526065174565133e-19,1.0299920638612292e-18,1.0299920638612292e-18,-1.8446195902333053e-18,-4.172807725794192e-18,0.012500000186264515,3.0,8.0,5.0,4.0,0.07408729940652847,-0.028541667386889458,-0.013611110858619213,-0.019771825522184372,-0.023333333432674408,0.0031250000465661287,0.0020833334419876337,0.0031250000465661287,0.0037499999161809683,0.0006944444612599909,0.0013888889225199819,0.0016666667070239782,0.0014880952658131719,0.0024999999441206455,0.0020833334419876337,-0.028541667386889458,0.05979166552424431,0.0020833334419876337,0.0031250000465661287,0.0037499999161809683,-0.01875000074505806,-0.0020833334419876337,-0.0031250000465661287,-0.0037499999161809683,-3.686287386450715e-18,-2.574980159653073e-18,-1.1384122811097797e-18,-3.469446951953614e-18,1.5178830414797062e-18,1.5612511283791264e-17,-0.013611110858619213,0.0020833334419876337,0.007361111231148243,0.0013888889225199819,0.0016666667070239782,-1.4348514787722458e-17,-0.0005952381179668009,-2.6020852139652106e-18,-2.3852447794681098e-18,-0.0006944444612599909,-0.00039682540227659047,-0.0004761904710903764,2.168404344971009e-18,1.734723475976807e-18,8.673617379884035e-19,-0.019771825522184372,0.0031250000465661287,0.0013888889225199819,0.018814483657479286,0.0024999999441206455,-1.3039451837520539e-17,1.3730496098835355e-18,-0.0015625000232830644,-1.8431436932253575e-18,3.2526065174565133e-19,-0.0006944444612599909,1.5441755976351636e-18,-0.0029761905316263437,-0.0012499999720603228,6.613633252161577e-18,-0.023333333432674408,0.0037499999161809683,0.0016666667070239782,0.0024999999441206455,0.030138889327645302,1.9376922570375162e-17,2.905925403363342e-18,2.5854975543465316e-18,-0.0024999999441206455,-1.4094628242311558e-18,1.81603863891322e-18,-0.0011111111380159855,4.607859233063394e-19,-0.0016666667070239782,-0.0062500000931322575,0.0031250000465661287,-0.01875000074505806,-1.4348514787722458e-17,-1.3039451837520539e-17,1.9376922570375162e-17,0.00937500037252903,2.3852447794681098e-18,1.642980357250668e-18,-4.920648482713583e-18,1.0842021724855044e-18,8.944667923005412e-19,4.0657581468206416e-19,1.7889335846010823e-18,3.2526065174565133e-19,-5.366800753803247e-18,0.0020833334419876337,-0.0020833334419876337,-0.0005952381179668009,1.3730496098835355e-18,2.905925403363342e-18,2.3852447794681098e-18,0.0005952381179668009,2.2034176078306714e-19,-2.385727697849476e-19,1.6263032587282567e-19,4.0657581468206416e-20,2.710505431213761e-20,-2.981555974335137e-19,-2.710505431213761e-19,-6.776263578034403e-19,0.0031250000465661287,-0.0031250000465661287,-2.6020852139652106e-18,-0.0015625000232830644,2.5854975543465316e-18,1.642980357250668e-18,2.2034176078306714e-19,0.0015625000232830644,1.6263032587282567e-19,2.439454888092385e-19,1.6263032587282567e-19,8.131516293641283e-20,1.3552527156068805e-19,-1.0842021724855044e-19,-8.944667923005412e-19,0.0037499999161809683,-0.0037499999161809683,-2.3852447794681098e-18,-1.8431436932253575e-18,-0.0024999999441206455,-4.920648482713583e-18,-2.385727697849476e-19,1.6263032587282567e-19,0.0024999999441206455,2.710505431213761e-19,2.168404344971009e-19,-0.0,2.168404344971009e-19,-0.0,-3.5236570605778894e-19,0.0006944444612599909,-3.686287386450715e-18,-0.0006944444612599909,3.2526065174565133e-19,-1.4094628242311558e-18,1.0842021724855044e-18,1.6263032587282567e-19,2.439454888092385e-19,2.710505431213761e-19,9.920635056914762e-05,0.0,8.131516293641283e-20,-1.6263032587282567e-19,-1.3552527156068805e-19,5.421010862427522e-20,0.0013888889225199819,-2.574980159653073e-18,-0.00039682540227659047,-0.0006944444612599909,1.81603863891322e-18,8.944667923005412e-19,4.0657581468206416e-20,1.6263032587282567e-19,2.168404344971009e-19,0.0,0.00019841270113829523,-3.0585520137031044e-20,-2.6359438231626287e-20,-8.951516590736439e-20,-5.53832471882709e-19,0.0016666667070239782,-1.1384122811097797e-18,-0.0004761904710903764,1.5441755976351636e-18,-0.0011111111380159855,4.0657581468206416e-19,2.710505431213761e-20,8.131516293641283e-20,-0.0,8.131516293641283e-20,-3.0585520137031044e-20,0.0003174603043589741,-2.4153231861908575e-19,-3.284698798778098e-19,5.359351268604171e-19,0.0014880952658131719,-3.469446951953614e-18,2.168404344971009e-18,-0.0029761905316263437,4.607859233063394e-19,1.7889335846010823e-18,-2.981555974335137e-19,1.3552527156068805e-19,2.168404344971009e-19,-1.6263032587282567e-19,-2.6359438231626287e-20,-2.4153231861908575e-19,0.0007440476329065859,6.040710278921757e-19,-3.3735175755449207e-19,0.0024999999441206455,1.5178830414797062e-18,1.734723475976807e-18,-0.0012499999720603228,-0.0016666667070239782,3.2526065174565133e-19,-2.710505431213761e-19,-1.0842021724855044e-19,-0.0,-1.3552527156068805e-19,-8.951516590736439e-20,-3.284698798778098e-19,6.040710278921757e-19,0.0008333333535119891,-1.1923954320534856e-18,0.0020833334419876337,1.5612511283791264e-17,8.673617379884035e-19,6.613633252161577e-18,-0.0062500000931322575,-5.366800753803247e-18,-6.776263578034403e-19,-8.944667923005412e-19,-3.5236570605778894e-19,5.421010862427522e-20,-5.53832471882709e-19,5.359351268604171e-19,-3.3735175755449207e-19,-1.1923954320534856e-18,0.0020833334419876337,3.0,8.0,5.0,5.0,0.062261905521154404,-0.023333333432674408,-0.011111111380159855,-0.016150793060660362,-0.016150793060660362,0.0024999999441206455,0.0016666667070239782,0.0024999999441206455,0.0024999999441206455,0.0005555555690079927,0.0011111111380159855,0.0011111111380159855,0.0011904762359336019,0.0016666667070239782,0.0011904762359336019,-0.023333333432674408,0.04833333194255829,0.0016666667070239782,0.0024999999441206455,0.0024999999441206455,-0.014999999664723873,-0.0016666667070239782,-0.0024999999441206455,-0.0024999999441206455,-2.791820594150174e-18,-2.710505431213761e-18,-2.303929616531697e-18,-6.505213034913027e-19,-6.505213034913027e-19,-6.505213034913027e-19,-0.011111111380159855,0.0016666667070239782,0.0059523810632526875,0.0011111111380159855,0.0011111111380159855,-8.213359197808505e-18,-0.0004761904710903764,-1.734723475976807e-18,-2.168404344971009e-18,-0.0005555555690079927,-0.0003174603043589741,-0.0003174603043589741,2.3852447794681098e-18,2.168404344971009e-19,1.951563910473908e-18,-0.016150793060660362,0.0024999999441206455,0.0011111111380159855,0.015218254178762436,0.0016666667070239782,-5.846959247055578e-18,2.5400708630566507e-18,-0.0012499999720603228,-1.951563910473908e-18,2.710505431213761e-19,-0.0005555555690079927,2.4777828187629124e-19,-0.0023809524718672037,-0.0008333333535119891,-1.4094628242311558e-18,-0.016150793060660362,0.0024999999441206455,0.0011111111380159855,0.0016666667070239782,0.015218254178762436,-6.42422378113796e-18,2.7485334055146614e-18,-2.1405649610700773e-18,-0.0012499999720603228,3.2526065174565133e-19,8.131516293641283e-20,-0.0005555555690079927,-1.043544591017298e-18,-0.0008333333535119891,-0.0023809524718672037,0.0024999999441206455,-0.014999999664723873,-8.213359197808505e-18,-5.846959247055578e-18,-6.42422378113796e-18,0.007499999832361937,-2.358139725155972e-18,-1.3177226264865547e-19,-1.0365449531309574e-20,8.673617379884035e-19,7.860465750519907e-19,7.860465750519907e-19,6.2341624917916505e-19,2.981555974335137e-19,7.318364664277155e-19,0.0016666667070239782,-0.0016666667070239782,-0.0004761904710903764,2.5400708630566507e-18,2.7485334055146614e-18,-2.358139725155972e-18,0.0004761904710903764,-4.420208658214794e-19,-4.622752103004528e-19,8.131516293641283e-20,-4.0657581468206416e-20,-6.776263578034403e-20,-3.2526065174565133e-19,-2.710505431213761e-19,-3.5236570605778894e-19,0.0024999999441206455,-0.0024999999441206455,-1.734723475976807e-18,-0.0012499999720603228,-2.1405649610700773e-18,-1.3177226264865547e-19,-4.420208658214794e-19,0.0012499999720603228,2.168404344971009e-19,1.3552527156068805e-19,3.5236570605778894e-19,1.3552527156068805e-19,2.710505431213761e-20,2.168404344971009e-19,2.303929616531697e-19,0.0024999999441206455,-0.0024999999441206455,-2.168404344971009e-18,-1.951563910473908e-18,-0.0012499999720603228,-1.0365449531309574e-20,-4.622752103004528e-19,2.168404344971009e-19,0.0012499999720603228,2.168404344971009e-19,2.0328790734103208e-19,3.2526065174565133e-19,1.4907779871675686e-19,1.6263032587282567e-19,4.0657581468206416e-20,0.0005555555690079927,-2.791820594150174e-18,-0.0005555555690079927,2.710505431213761e-19,3.2526065174565133e-19,8.673617379884035e-19,8.131516293641283e-20,1.3552527156068805e-19,2.168404344971009e-19,7.936507608974352e-05,4.0657581468206416e-20,2.710505431213761e-20,-1.3552527156068805e-19,2.710505431213761e-20,-1.6263032587282567e-19,0.0011111111380159855,-2.710505431213761e-18,-0.0003174603043589741,-0.0005555555690079927,8.131516293641283e-20,7.860465750519907e-19,-4.0657581468206416e-20,3.5236570605778894e-19,2.0328790734103208e-19,4.0657581468206416e-20,0.00015873015217948705,1.5331144803229677e-20,-4.3365706170219673e-19,-9.395013353565866e-20,-4.9652482389601554e-20,0.0011111111380159855,-2.303929616531697e-18,-0.0003174603043589741,2.4777828187629124e-19,-0.0005555555690079927,7.860465750519907e-19,-6.776263578034403e-20,1.3552527156068805e-19,3.2526065174565133e-19,2.710505431213761e-20,1.5331144803229677e-20,0.00015873015217948705,-1.2630116083025903e-19,2.807033208172151e-20,-2.149176014644331e-19,0.0011904762359336019,-6.505213034913027e-19,2.3852447794681098e-18,-0.0023809524718672037,-1.043544591017298e-18,6.2341624917916505e-19,-3.2526065174565133e-19,2.710505431213761e-20,1.4907779871675686e-19,-1.3552527156068805e-19,-4.3365706170219673e-19,-1.2630116083025903e-19,0.0005952381179668009,1.9393171913123307e-19,2.2915312131252927e-19,0.0016666667070239782,-6.505213034913027e-19,2.168404344971009e-19,-0.0008333333535119891,-0.0008333333535119891,2.981555974335137e-19,-2.710505431213761e-19,2.168404344971009e-19,1.6263032587282567e-19,2.710505431213761e-20,-9.395013353565866e-20,2.807033208172151e-20,1.9393171913123307e-19,0.00041666667675599456,2.4510661774471567e-19,0.0011904762359336019,-6.505213034913027e-19,1.951563910473908e-18,-1.4094628242311558e-18,-0.0023809524718672037,7.318364664277155e-19,-3.5236570605778894e-19,2.303929616531697e-19,4.0657581468206416e-20,-1.6263032587282567e-19,-4.9652482389601554e-20,-2.149176014644331e-19,2.2915312131252927e-19,2.4510661774471567e-19,0.0005952381179668009,3.0,8.0,5.0,6.0,0.05373677238821983,-0.01974206417798996,-0.009391534142196178,-0.013657407835125923,-0.01185515895485878,0.0020833334419876337,0.0013888889225199819,0.0020833334419876337,0.0017857142956927419,0.00046296295477077365,0.0009259259095415473,0.0007936508045531809,0.0009920635493472219,0.0011904762359336019,0.0007440476329065859,-0.01974206417798996,0.04057539626955986,0.0013888889225199819,0.0020833334419876337,0.0017857142956927419,-0.012500000186264515,-0.0013888889225199819,-0.0020833334419876337,-0.0017857142956927419,-7.709882172895574e-19,-6.167905841714036e-19,-5.405361122225902e-19,-1.9825412040285595e-18,-7.930164505921508e-19,-1.3629969872967551e-18,-0.009391534142196178,0.0013888889225199819,0.004998110234737396,0.0009259259095415473,0.0007936508045531809,-3.9760963179132625e-18,-0.00039682540227659047,-0.0,-0.0,-0.00046296295477077365,-0.00026455026818439364,-0.00022675737272948027,-6.306219543249443e-34,-2.5224878172997773e-34,-4.335525763792437e-34,-0.013657407835125923,0.0020833334419876337,0.0009259259095415473,0.012781084515154362,0.0011904762359336019,-6.035736338500899e-18,-0.0,-0.0010416667209938169,-0.0,-0.0,-0.00046296295477077365,-2.0962503514492503e-34,-0.0019841270986944437,-0.0005952381179668009,-6.581352261254054e-34,-0.01185515895485878,0.0017857142956927419,0.0007936508045531809,0.0011904762359336019,0.008834325708448887,-5.125694976036903e-18,-1.1858461261560205e-20,-0.0,-0.0007142857066355646,-3.909136990829981e-20,-2.072667455213359e-34,-0.0003174603043589741,-8.129520565615239e-34,-0.0004761904710903764,-0.0011160714784637094,0.0020833334419876337,-0.012500000186264515,-3.9760963179132625e-18,-6.035736338500899e-18,-5.125694976036903e-18,0.0062500000931322575,-0.0,-0.0,-0.0,3.854941086447787e-19,3.083952920857018e-19,2.64338825480515e-19,9.912706020142797e-19,3.965082252960754e-19,6.814984936483776e-19,0.0013888889225199819,-0.0013888889225199819,-0.00039682540227659047,-0.0,-1.1858461261560205e-20,-0.0,0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,3.3881317890172014e-21,0.0,0.0,0.0,0.0020833334419876337,-0.0020833334419876337,-0.0,-0.0010416667209938169,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0017857142956927419,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-7.709882172895574e-19,-0.00046296295477077365,-0.0,-3.909136990829981e-20,3.854941086447787e-19,-0.0,-0.0,-0.0,6.613756704609841e-05,-0.0,6.776263578034403e-21,6.114063525060313e-35,2.4456254674213105e-35,4.2034185658592434e-35,0.0009259259095415473,-6.167905841714036e-19,-0.00026455026818439364,-0.00046296295477077365,-2.072667455213359e-34,3.083952920857018e-19,-0.0,-0.0,-0.0,-0.0,0.00013227513409219682,0.0,4.891250934842621e-35,1.9565002878412707e-35,3.36273491008458e-35,0.0007936508045531809,-5.405361122225902e-19,-0.00022675737272948027,-2.0962503514492503e-34,-0.0003174603043589741,2.64338825480515e-19,3.3881317890172014e-21,-0.0,-0.0,6.776263578034403e-21,0.0,9.070294618140906e-05,4.19250047330976e-35,1.6770002467210892e-35,2.882344003653979e-35,0.0009920635493472219,-1.9825412040285595e-18,-6.306219543249443e-34,-0.0019841270986944437,-8.129520565615239e-34,9.912706020142797e-19,0.0,-0.0,-0.0,6.114063525060313e-35,4.891250934842621e-35,4.19250047330976e-35,0.0004960317746736109,6.28875070996464e-35,1.080878994195594e-34,0.0011904762359336019,-7.930164505921508e-19,-2.5224878172997773e-34,-0.0005952381179668009,-0.0004761904710903764,3.965082252960754e-19,0.0,-0.0,-0.0,2.4456254674213105e-35,1.9565002878412707e-35,1.6770002467210892e-35,6.28875070996464e-35,0.0002380952355451882,4.323516148973931e-35,0.0007440476329065859,-1.3629969872967551e-18,-4.335525763792437e-34,-6.581352261254054e-34,-0.0011160714784637094,6.814984936483776e-19,0.0,-0.0,-0.0,4.2034185658592434e-35,3.36273491008458e-35,2.882344003653979e-35,1.080878994195594e-34,4.323516148973931e-35,0.00022321428696159273,3.0,8.0,5.0,7.0,0.04728599637746811,-0.01711309514939785,-0.008134921081364155,-0.011833900585770607,-0.00907738134264946,0.0017857142956927419,0.0011904762359336019,0.0017857142956927419,0.0013392857508733869,0.00039682540227659047,0.0007936508045531809,0.0005952381179668009,0.0008503401186317205,0.0008928571478463709,0.0004960317746736109,-0.01711309514939785,0.0349702388048172,0.0011904762359336019,0.0017857142956927419,0.0013392857508733869,-0.010714286006987095,-0.0011904762359336019,-0.0017857142956927419,-0.0013392857508733869,2.008002443668401e-18,6.260760484388293e-19,2.2929291483605073e-18,-3.2098284584880272e-18,1.4573684724192815e-18,4.029620693809731e-18,-0.008134921081364155,0.0011904762359336019,0.004308389965444803,0.0007936508045531809,0.0005952381179668009,1.2895958335119128e-17,-0.0003401360590942204,1.2030112870892322e-19,-0.0,-0.00039682540227659047,-0.00022675737272948027,-0.0001700680295471102,-2.409704716976456e-18,-6.192114316316166e-19,9.902994919751425e-19,-0.011833900585770607,0.0017857142956927419,0.0007936508045531809,0.01101899053901434,0.0008928571478463709,4.012285573110034e-19,-2.7925261792126817e-18,-0.0008928571478463709,3.0088612063555126e-19,-8.402566836762659e-19,-0.00039682540227659047,-5.225847419665409e-19,-0.001700680237263441,-0.00044642857392318547,1.1181513191859058e-18,-0.00907738134264946,0.0013392857508733869,0.0005952381179668009,0.0008928571478463709,0.0056051588617265224,1.6785514603756786e-17,1.6245495065826735e-19,3.733785751584735e-18,-0.00044642857392318547,1.0955379589975077e-18,-1.4304647590381181e-19,-0.00019841270113829523,1.050162346110452e-18,-0.00029761905898340046,-0.0005952381179668009,0.0017857142956927419,-0.010714286006987095,1.2895958335119128e-17,4.012285573110034e-19,1.6785514603756786e-17,0.0053571430034935474,-1.1328806141609079e-18,1.0261444874724542e-32,-1.4869058513226313e-18,-9.912706020142797e-19,-4.909149431428177e-19,-1.0290332581337037e-18,8.49660486470075e-19,-6.938894007304805e-19,-1.5529905512304115e-18,0.0011904762359336019,-0.0011904762359336019,-0.0003401360590942204,-2.7925261792126817e-18,1.6245495065826735e-19,-1.1328806141609079e-18,0.0003401360590942204,2.762070836624551e-19,-6.064897298526749e-20,-6.776263578034403e-21,1.0164395367051604e-19,-1.0164395367051604e-20,4.3157357468493465e-19,9.440671784674232e-20,-3.923754500100015e-20,0.0017857142956927419,-0.0017857142956927419,1.2030112870892322e-19,-0.0008928571478463709,3.733785751584735e-18,1.0261444874724542e-32,2.762070836624551e-19,0.0008928571478463709,-2.973811754344051e-19,7.402793223738438e-34,-1.504632769052528e-35,-1.321694127402575e-19,1.0500074819716274e-33,-1.982541126480377e-19,-3.965082252960754e-19,0.0013392857508733869,-0.0013392857508733869,-0.0,3.0088612063555126e-19,-0.00044642857392318547,-1.4869058513226313e-18,-6.064897298526749e-20,-2.973811754344051e-19,0.00044642857392318547,-5.814728316046163e-22,1.3240768367662246e-34,2.1683851517958582e-20,-2.8287096058187527e-34,-1.1683213274488686e-21,2.2360909350649606e-21,0.00039682540227659047,2.008002443668401e-18,-0.00039682540227659047,-8.402566836762659e-19,1.0955379589975077e-18,-9.912706020142797e-19,-6.776263578034403e-21,7.402793223738438e-34,-5.814728316046163e-22,5.668934318237007e-05,2.710505431213761e-20,-7.792703114739563e-20,1.2587562810388879e-19,2.2028234918180537e-20,-1.45196111520684e-19,0.0007936508045531809,6.260760484388293e-19,-0.00022675737272948027,-0.00039682540227659047,-1.4304647590381181e-19,-4.909149431428177e-19,1.0164395367051604e-19,-1.504632769052528e-35,1.3240768367662246e-34,2.710505431213761e-20,0.00011337868636474013,3.8164523725456947e-20,3.911563667328573e-19,8.655447969988396e-20,-2.5175125620777757e-20,0.0005952381179668009,2.2929291483605073e-18,-0.0001700680295471102,-5.225847419665409e-19,-0.00019841270113829523,-1.0290332581337037e-18,-1.0164395367051604e-20,-1.321694127402575e-19,2.1683851517958582e-20,-7.792703114739563e-20,3.8164523725456947e-20,5.668934318237007e-05,8.092004848459951e-20,4.0657581468206416e-20,2.4251559079816695e-20,0.0008503401186317205,-3.2098284584880272e-18,-2.409704716976456e-18,-0.001700680237263441,1.050162346110452e-18,8.49660486470075e-19,4.3157357468493465e-19,1.0500074819716274e-33,-2.8287096058187527e-34,1.2587562810388879e-19,3.911563667328573e-19,8.092004848459951e-20,0.00042517005931586027,-5.304758382151437e-20,-1.5734453836103525e-19,0.0008928571478463709,1.4573684724192815e-18,-6.192114316316166e-19,-0.00044642857392318547,-0.00029761905898340046,-6.938894007304805e-19,9.440671784674232e-20,-1.982541126480377e-19,-1.1683213274488686e-21,2.2028234918180537e-20,8.655447969988396e-20,4.0657581468206416e-20,-5.304758382151437e-20,0.00014880952949170023,-1.384011398475359e-21,0.0004960317746736109,4.029620693809731e-18,9.902994919751425e-19,1.1181513191859058e-18,-0.0005952381179668009,-1.5529905512304115e-18,-3.923754500100015e-20,-3.965082252960754e-19,2.2360909350649606e-21,-1.45196111520684e-19,-2.5175125620777757e-20,2.4251559079816695e-20,-1.5734453836103525e-19,-1.384011398475359e-21,9.920635056914762e-05,3.0,8.0,5.0,8.0,0.04222883656620979,-0.015104166232049465,-0.007175926119089127,-0.010441468097269535,-0.007175926119089127,0.0015625000232830644,0.0010416667209938169,0.0015625000232830644,0.0010416667209938169,0.00034722223062999547,0.0006944444612599909,0.00046296295477077365,0.0007440476329065859,0.0006944444612599909,0.00034722223062999547,-0.015104166232049465,0.03072916716337204,0.0010416667209938169,0.0015625000232830644,0.0010416667209938169,-0.00937500037252903,-0.0010416667209938169,-0.0015625000232830644,-0.0010416667209938169,-5.762016069952508e-19,-4.637766465098131e-19,-2.787491389318013e-19,-1.4869058513226313e-18,-4.519118779960822e-19,-5.7040410487701975e-19,-0.007175926119089127,0.0010416667209938169,0.0037863757461309433,0.0006944444612599909,0.00046296295477077365,-3.0261288084377102e-18,-0.00029761905898340046,-0.0,3.3881317890172014e-20,-0.00034722223062999547,-0.00019841270113829523,-0.00013227513409219682,-4.799539760987554e-34,3.3881317890172014e-21,4.9735216606728196e-20,-0.010441468097269535,0.0015625000232830644,0.0006944444612599909,0.009685019962489605,0.0006944444612599909,-4.592886850385878e-18,2.5363080326875086e-23,-0.0007812500116415322,9.471933718832481e-21,-0.0,-0.00034722223062999547,3.379271303329759e-21,-0.0014880952658131719,-0.00034722223062999547,7.507967837735778e-21,-0.007175926119089127,0.0010416667209938169,0.00046296295477077365,0.0006944444612599909,0.0037863757461309433,-3.0261288084377102e-18,1.8966974776544245e-21,-0.0,-0.00029761905898340046,1.4196997788475648e-20,-3.3881317890172014e-21,-0.00013227513409219682,-4.799539760987554e-34,-0.00019841270113829523,-0.00034722223062999547,0.0015625000232830644,-0.00937500037252903,-3.0261288084377102e-18,-4.592886850385878e-18,-3.0261288084377102e-18,0.004687500186264515,-0.0,-0.0,-6.517194376516898e-35,2.8912058794593256e-19,2.312964755266249e-19,1.541976460428509e-19,7.434529256613157e-19,2.312964755266249e-19,2.8912058794593256e-19,0.0010416667209938169,-0.0010416667209938169,-0.00029761905898340046,2.5363080326875086e-23,1.8966974776544245e-21,-0.0,0.00029761905898340046,-0.0,-4.994832486854053e-22,-0.0,-0.0,-0.0,-0.0,-7.246594604495998e-24,-1.8262353361274782e-22,0.0015625000232830644,-0.0015625000232830644,-0.0,-0.0007812500116415322,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0010416667209938169,3.3881317890172014e-20,9.471933718832481e-21,-0.00029761905898340046,-6.517194376516898e-35,-4.994832486854053e-22,-0.0,0.00029761905898340046,-5.827304652141558e-22,3.3821026702690037e-22,-8.470329472543003e-21,-0.0,-3.0444770185926318e-21,-2.0565323595718243e-21,0.00034722223062999547,-5.762016069952508e-19,-0.00034722223062999547,-0.0,1.4196997788475648e-20,2.8912058794593256e-19,-0.0,-0.0,-5.827304652141558e-22,4.960317528457381e-05,-0.0,0.0,4.5855475003022723e-35,-8.454360371911997e-24,-9.012085315893178e-22,0.0006944444612599909,-4.637766465098131e-19,-0.00019841270113829523,-0.00034722223062999547,-3.3881317890172014e-21,2.312964755266249e-19,-0.0,-0.0,3.3821026702690037e-22,-0.0,9.920635056914762e-05,-0.0,3.668438057639003e-35,3.1198798780105115e-23,3.945786322429426e-22,0.00046296295477077365,-2.787491389318013e-19,-0.00013227513409219682,3.379271303329759e-21,-0.00013227513409219682,1.541976460428509e-19,-0.0,-0.0,-8.470329472543003e-21,0.0,-0.0,3.779289545491338e-05,2.4456254674213105e-35,-9.655060722407603e-22,-1.2433804151682049e-20,0.0007440476329065859,-1.4869058513226313e-18,-4.799539760987554e-34,-0.0014880952658131719,-4.799539760987554e-34,7.434529256613157e-19,-0.0,-0.0,-0.0,4.5855475003022723e-35,3.668438057639003e-35,2.4456254674213105e-35,0.00037202381645329297,3.668438057639003e-35,4.5855475003022723e-35,0.0006944444612599909,-4.519118779960822e-19,3.3881317890172014e-21,-0.00034722223062999547,-0.00019841270113829523,2.312964755266249e-19,-7.246594604495998e-24,-0.0,-3.0444770185926318e-21,-8.454360371911997e-24,3.1198798780105115e-23,-9.655060722407603e-22,3.668438057639003e-35,9.920635056914762e-05,-2.5397122641052377e-21,0.00034722223062999547,-5.7040410487701975e-19,4.9735216606728196e-20,7.507967837735778e-21,-0.00034722223062999547,2.8912058794593256e-19,-1.8262353361274782e-22,-0.0,-2.0565323595718243e-21,-9.012085315893178e-22,3.945786322429426e-22,-1.2433804151682049e-20,4.5855475003022723e-35,-2.5397122641052377e-21,4.960317528457381e-05,3.0,8.0,6.0,3.0,0.07933752238750458,-0.031167328357696533,-0.014880952425301075,-0.018766533583402634,-0.031167328357696533,0.0034722222480922937,0.002314814832061529,0.0029761905316263437,0.0052083334885537624,0.0007716049440205097,0.0013227512827143073,0.002314814832061529,0.0012400794075801969,0.0029761905316263437,0.0034722222480922937,-0.031167328357696533,0.06588955223560333,0.002314814832061529,0.0029761905316263437,0.0052083334885537624,-0.02083333395421505,-0.002314814832061529,-0.0029761905316263437,-0.0052083334885537624,2.617394465947189e-18,1.7622588710026254e-18,3.1313867142044704e-18,4.543323428852619e-18,3.965082408057119e-18,2.3129645794903686e-17,-0.014880952425301075,0.002314814832061529,0.008109725080430508,0.0013227512827143073,0.002314814832061529,1.4306115163884215e-17,-0.0006613756413571537,-3.872421121680277e-33,-8.470921593976464e-33,-0.0007716049440205097,-0.0003779289545491338,-0.0006613756413571537,-3.119870740309802e-33,-2.7227962791127183e-33,-1.588297844788335e-32,-0.018766533583402634,0.0029761905316263437,0.0013227512827143073,0.014327050186693668,0.0029761905316263437,1.9244416508050293e-17,-2.4302010415136657e-33,-0.0011904762359336019,-1.1394983628114074e-32,-0.0,-0.0005291005363687873,7.115076756936123e-20,-0.0018601190531626344,-0.0011904762359336019,8.260587902062833e-18,-0.031167328357696533,0.0052083334885537624,0.002314814832061529,0.0029761905316263437,0.06588955223560333,3.9650823253390577e-17,4.743384504624082e-20,-1.0732801211672986e-32,-0.0052083334885537624,2.445208252370118e-20,7.115076756936123e-20,-0.002314814832061529,4.311240123617697e-18,-0.0029761905316263437,-0.02083333395421505,0.0034722222480922937,-0.02083333395421505,1.4306115163884215e-17,1.9244416508050293e-17,3.9650823253390577e-17,0.010416666977107525,-1.566452191916676e-18,-2.8196140695271088e-18,-6.167905738316459e-18,-1.284980310450474e-18,-8.811294355013127e-19,-1.5419764345791148e-18,-2.2716617144263096e-18,-1.9825412040285595e-18,-1.1564822897451843e-17,0.002314814832061529,-0.002314814832061529,-0.0006613756413571537,-2.4302010415136657e-33,4.743384504624082e-20,-1.566452191916676e-18,0.0006613756413571537,4.240119244366342e-34,9.275260215682337e-34,-1.3552527156068805e-20,-0.0,-1.3552527156068805e-20,3.4161114797643424e-34,2.981333771948603e-34,1.7391113822759344e-33,0.0029761905316263437,-0.0029761905316263437,-3.872421121680277e-33,-0.0011904762359336019,-1.0732801211672986e-32,-2.8196140695271088e-18,4.240119244366342e-34,0.0011904762359336019,1.6695469122912177e-33,3.4782225808808766e-34,2.3850670175588824e-34,4.173867280728044e-34,6.149000847246809e-34,5.366400789507485e-34,3.1304005982992774e-33,0.0052083334885537624,-0.0052083334885537624,-8.470921593976464e-33,-1.1394983628114074e-32,-0.0052083334885537624,-6.167905738316459e-18,9.275260215682337e-34,1.6695469122912177e-33,0.0052083334885537624,7.608612182662843e-34,5.217333871321315e-34,9.130334619195412e-34,1.3450939410749579e-33,1.173900178444481e-33,6.847751239903047e-33,0.0007716049440205097,2.617394465947189e-18,-0.0007716049440205097,-0.0,2.445208252370118e-20,-1.284980310450474e-18,-1.3552527156068805e-20,3.4782225808808766e-34,7.608612182662843e-34,0.00011022927355952561,6.776263578034403e-21,-1.3552527156068805e-20,2.8022791204357424e-34,2.4456254100241254e-34,1.426614749810972e-33,0.0013227512827143073,1.7622588710026254e-18,-0.0003779289545491338,-0.0005291005363687873,7.115076756936123e-20,-8.811294355013127e-19,-0.0,2.3850670175588824e-34,5.217333871321315e-34,6.776263578034403e-21,0.0001511715818196535,-2.0328790734103208e-20,1.9215627073674426e-34,1.677000189323904e-34,9.782501640096501e-34,0.002314814832061529,3.1313867142044704e-18,-0.0006613756413571537,7.115076756936123e-20,-0.002314814832061529,-1.5419764345791148e-18,-1.3552527156068805e-20,4.173867280728044e-34,9.130334619195412e-34,-1.3552527156068805e-20,-2.0328790734103208e-20,0.0006613756413571537,3.3627348526873947e-34,2.9347504461112023e-34,1.7119378099757618e-33,0.0012400794075801969,4.543323428852619e-18,-3.119870740309802e-33,-0.0018601190531626344,4.311240123617697e-18,-2.2716617144263096e-18,3.4161114797643424e-34,6.149000847246809e-34,1.3450939410749579e-33,2.8022791204357424e-34,1.9215627073674426e-34,3.3627348526873947e-34,0.00037202381645329297,-4.028020099324441e-19,-1.6521176010920818e-18,0.0029761905316263437,3.965082408057119e-18,-2.7227962791127183e-33,-0.0011904762359336019,-0.0029761905316263437,-1.9825412040285595e-18,2.981333771948603e-34,5.366400789507485e-34,1.173900178444481e-33,2.4456254100241254e-34,1.677000189323904e-34,2.9347504461112023e-34,-4.028020099324441e-19,0.0011904762359336019,3.989862925561008e-33,0.0034722222480922937,2.3129645794903686e-17,-1.588297844788335e-32,8.260587902062833e-18,-0.02083333395421505,-1.1564822897451843e-17,1.7391113822759344e-33,3.1304005982992774e-33,6.847751239903047e-33,1.426614749810972e-33,9.782501640096501e-34,1.7119378099757618e-33,-1.6521176010920818e-18,3.989862925561008e-33,0.010416666977107525,3.0,8.0,6.0,4.0,0.06400462985038757,-0.02415674552321434,-0.011507936753332615,-0.014521329663693905,-0.01974206417798996,0.0026041667442768812,0.0017361111240461469,0.0022321429569274187,0.0031250000465661287,0.0005787037080153823,0.0009920635493472219,0.0013888889225199819,0.0009300595265813172,0.0017857142956927419,0.0017361111240461469,-0.02415674552321434,0.05019841343164444,0.0017361111240461469,0.0022321429569274187,0.0031250000465661287,-0.015625,-0.0017361111240461469,-0.0022321429569274187,-0.0031250000465661287,1.9749044658183168e-18,1.3454110240763012e-18,1.850371804212999e-18,3.4074925716394644e-18,2.3790494034752407e-18,8.095375945498229e-18,-0.011507936753332615,0.0017361111240461469,0.006181500386446714,0.0009920635493472219,0.0013888889225199819,1.1548301619077321e-17,-0.0004960317746736109,-2.3444463408982797e-33,-5.470374550534663e-33,-0.0005787037080153823,-0.00028344671591185033,-0.00039682540227659047,-2.95020996502244e-19,-1.5105075372466654e-19,-5.3718159613739375e-33,-0.014521329663693905,0.0022321429569274187,0.0009920635493472219,0.010923858731985092,0.0017857142956927419,1.4202016138155642e-17,2.371692252312041e-20,-0.0008928571478463709,-6.727426168784939e-33,2.710505431213761e-20,-0.00039682540227659047,5.929230630780102e-20,-0.0013950893189758062,-0.0007142857066355646,2.8912057243629608e-18,-0.01974206417798996,0.0031250000465661287,0.0013888889225199819,0.0017857142956927419,0.025314154103398323,2.2055770145185294e-17,-4.2369650624153e-33,-4.477590592738545e-33,-0.0020833334419876337,3.1925455794138915e-21,-9.175844741686552e-20,-0.0009259259095415473,1.5954735135153693e-18,-0.0011904762359336019,-0.0052083334885537624,0.0026041667442768812,-0.015625,1.1548301619077321e-17,1.4202016138155642e-17,2.2055770145185294e-17,0.0078125,-1.7622588710026254e-18,-1.5860329011843016e-18,-3.700743608425998e-18,-9.63735310386038e-19,-6.608470507765904e-19,-9.251859021064995e-19,-1.7037462858197322e-18,-1.1895247017376204e-18,-4.0476879727491145e-18,0.0017361111240461469,-0.0017361111240461469,-0.0004960317746736109,2.371692252312041e-20,-4.2369650624153e-33,-1.7622588710026254e-18,0.0004960317746736109,3.5776005263383236e-34,8.347734561456088e-34,-1.3552527156068805e-20,-6.776263578034403e-21,-0.0,3.785464432173427e-34,2.6523645606200336e-34,9.130334619195412e-34,0.0022321429569274187,-0.0022321429569274187,-2.3444463408982797e-33,-0.0008928571478463709,-4.477590592738545e-33,-1.5860329011843016e-18,3.5776005263383236e-34,0.0008928571478463709,7.512960921639487e-34,1.9565003739370484e-34,1.3416001973768713e-34,1.8782402304098718e-34,3.4588129191791447e-34,2.4148802634428723e-34,8.217301524617855e-34,0.0031250000465661287,-0.0031250000465661287,-5.470374550534663e-33,-6.727426168784939e-33,-0.0020833334419876337,-3.700743608425998e-18,8.347734561456088e-34,7.512960921639487e-34,0.0020833334419876337,4.565167309597706e-34,3.130400460546033e-34,4.3825606906821945e-34,8.070564013791732e-34,5.634720691229615e-34,1.917370325132334e-33,0.0005787037080153823,1.9749044658183168e-18,-0.0005787037080153823,2.710505431213761e-20,3.1925455794138915e-21,-9.63735310386038e-19,-1.3552527156068805e-20,1.9565003739370484e-34,4.565167309597706e-34,8.26719551696442e-05,-6.776263578034403e-21,-6.776263578034403e-21,2.1068660756276333e-34,1.4624359656891138e-34,4.993151486585158e-34,0.0009920635493472219,1.3454110240763012e-18,-0.00028344671591185033,-0.00039682540227659047,-9.175844741686552e-20,-6.608470507765904e-19,-6.776263578034403e-21,1.3416001973768713e-34,3.130400460546033e-34,-6.776263578034403e-21,0.00011337868636474013,-1.6940658945086007e-20,1.1800840377077644e-19,6.042030278233632e-20,9.782501869685242e-35,0.0013888889225199819,1.850371804212999e-18,-0.00039682540227659047,5.929230630780102e-20,-0.0009259259095415473,-9.251859021064995e-19,-0.0,1.8782402304098718e-34,4.3825606906821945e-34,-6.776263578034403e-21,-1.6940658945086007e-20,0.00026455026818439364,1.8695775028516587e-34,1.327704109275725e-34,4.793425812830835e-34,0.0009300595265813172,3.4074925716394644e-18,-2.95020996502244e-19,-0.0013950893189758062,1.5954735135153693e-18,-1.7037462858197322e-18,3.785464432173427e-34,3.4588129191791447e-34,8.070564013791732e-34,2.1068660756276333e-34,1.1800840377077644e-19,1.8695775028516587e-34,0.00027901786961592734,5.569996430505979e-20,-5.782411758918651e-19,0.0017857142956927419,2.3790494034752407e-18,-1.5105075372466654e-19,-0.0007142857066355646,-0.0011904762359336019,-1.1895247017376204e-18,2.6523645606200336e-34,2.4148802634428723e-34,5.634720691229615e-34,1.4624359656891138e-34,6.042030278233632e-20,1.327704109275725e-34,5.569996430505979e-20,0.0004761904710903764,5.0086404613671646e-34,0.0017361111240461469,8.095375945498229e-18,-5.3718159613739375e-33,2.8912057243629608e-18,-0.0052083334885537624,-4.0476879727491145e-18,9.130334619195412e-34,8.217301524617855e-34,1.917370325132334e-33,4.993151486585158e-34,9.782501869685242e-35,4.793425812830835e-34,-5.782411758918651e-19,5.0086404613671646e-34,0.0017361111240461469,3.0,8.0,6.0,5.0,0.05373677238821983,-0.01974206417798996,-0.009391534142196178,-0.01185515895485878,-0.013657407835125923,0.0020833334419876337,0.0013888889225199819,0.0017857142956927419,0.0020833334419876337,0.00046296295477077365,0.0007936508045531809,0.0009259259095415473,0.0007440476329065859,0.0011904762359336019,0.0009920635493472219,-0.01974206417798996,0.04057539626955986,0.0013888889225199819,0.0017857142956927419,0.0020833334419876337,-0.012500000186264515,-0.0013888889225199819,-0.0017857142956927419,-0.0020833334419876337,-7.709882172895574e-19,-5.405361122225902e-19,-6.286490454329638e-19,-1.3629969872967551e-18,-7.930164505921508e-19,-1.9825412040285595e-18,-0.009391534142196178,0.0013888889225199819,0.004998110234737396,0.0007936508045531809,0.0009259259095415473,-3.9760963179132625e-18,-0.00039682540227659047,-0.0,-0.0,-0.00046296295477077365,-0.00022675737272948027,-0.00026455026818439364,-4.335525763792437e-34,-2.5224878172997773e-34,-6.306219543249443e-34,-0.01185515895485878,0.0017857142956927419,0.0007936508045531809,0.008834325708448887,0.0011904762359336019,-5.125694976036903e-18,-1.1858461261560205e-20,-0.0007142857066355646,-0.0,-4.0657581468206416e-20,-0.0003174603043589741,3.340753403846093e-20,-0.0011160714784637094,-0.0004761904710903764,-2.8322016904986345e-18,-0.013657407835125923,0.0020833334419876337,0.0009259259095415473,0.0011904762359336019,0.012781084515154362,-6.035736338500899e-18,-1.1858461261560205e-20,-0.0,-0.0010416667209938169,-9.464577142818301e-21,3.340753403846093e-20,-0.00046296295477077365,-2.749123598881718e-18,-0.0005952381179668009,-0.0019841270986944437,0.0020833334419876337,-0.012500000186264515,-3.9760963179132625e-18,-5.125694976036903e-18,-6.035736338500899e-18,0.0062500000931322575,-0.0,-0.0,-0.0,3.854941086447787e-19,2.64338825480515e-19,3.083952920857018e-19,6.814984936483776e-19,3.965082252960754e-19,9.912706020142797e-19,0.0013888889225199819,-0.0013888889225199819,-0.00039682540227659047,-1.1858461261560205e-20,-1.1858461261560205e-20,-0.0,0.00039682540227659047,-0.0,-0.0,-0.0,3.3881317890172014e-21,3.3881317890172014e-21,0.0,-0.0,0.0,0.0017857142956927419,-0.0017857142956927419,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0020833334419876337,-0.0,-0.0,-0.0010416667209938169,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-7.709882172895574e-19,-0.00046296295477077365,-4.0657581468206416e-20,-9.464577142818301e-21,3.854941086447787e-19,-0.0,-0.0,-0.0,6.613756704609841e-05,6.776263578034403e-21,-6.776263578034403e-21,4.2034185658592434e-35,2.4456254674213105e-35,6.114063525060313e-35,0.0007936508045531809,-5.405361122225902e-19,-0.00022675737272948027,-0.0003174603043589741,3.340753403846093e-20,2.64338825480515e-19,3.3881317890172014e-21,-0.0,-0.0,6.776263578034403e-21,9.070294618140906e-05,-9.545009956072713e-21,2.882344003653979e-35,1.6770002467210892e-35,4.19250047330976e-35,0.0009259259095415473,-6.286490454329638e-19,-0.00026455026818439364,3.340753403846093e-20,-0.00046296295477077365,3.083952920857018e-19,3.3881317890172014e-21,-0.0,-0.0,-6.776263578034403e-21,-9.545009956072713e-21,0.00013227513409219682,3.36273491008458e-35,1.9565002878412707e-35,4.891250934842621e-35,0.0007440476329065859,-1.3629969872967551e-18,-4.335525763792437e-34,-0.0011160714784637094,-2.749123598881718e-18,6.814984936483776e-19,0.0,-0.0,-0.0,4.2034185658592434e-35,2.882344003653979e-35,3.36273491008458e-35,0.00022321428696159273,1.933449637335974e-19,5.664403070804539e-19,0.0011904762359336019,-7.930164505921508e-19,-2.5224878172997773e-34,-0.0004761904710903764,-0.0005952381179668009,3.965082252960754e-19,-0.0,-0.0,-0.0,2.4456254674213105e-35,1.6770002467210892e-35,1.9565002878412707e-35,1.933449637335974e-19,0.0002380952355451882,5.5352986647340126e-34,0.0009920635493472219,-1.9825412040285595e-18,-6.306219543249443e-34,-2.8322016904986345e-18,-0.0019841270986944437,9.912706020142797e-19,0.0,-0.0,-0.0,6.114063525060313e-35,4.19250047330976e-35,4.891250934842621e-35,5.664403070804539e-19,5.5352986647340126e-34,0.0004960317746736109,3.0,8.0,6.0,6.0,0.046347472816705704,-0.016699735075235367,-0.007936508394777775,-0.010021022520959377,-0.010021022520959377,0.0017361111240461469,0.0011574074160307646,0.0014880952658131719,0.0014880952658131719,0.00038580247201025486,0.0006613756413571537,0.0006613756413571537,0.0006200397037900984,0.0008503401186317205,0.0006200397037900984,-0.016699735075235367,0.034060847014188766,0.0011574074160307646,0.0014880952658131719,0.0014880952658131719,-0.010416666977107525,-0.0011574074160307646,-0.0014880952658131719,-0.0014880952658131719,1.284980310450474e-18,8.811294355013127e-19,8.811294355013127e-19,2.2716617144263096e-18,1.1328806141609079e-18,2.2716617144263096e-18,-0.007936508394777775,0.0011574074160307646,0.004196586087346077,0.0006613756413571537,0.0006613756413571537,7.483480667890702e-18,-0.0003306878206785768,-2.0256506199163445e-33,-2.0256506199163445e-33,-0.00038580247201025486,-0.0001889644772745669,-0.0001889644772745669,-1.6319939085442765e-33,-8.13877482856308e-34,-1.6319939085442765e-33,-0.010021022520959377,0.0014880952658131719,0.0006613756413571537,0.007418627385050058,0.0008503401186317205,1.004703829046503e-17,-1.278986251001124e-33,-0.0005952381179668009,-2.7195620166090262e-33,-0.0,-0.00026455026818439364,1.3639856103004238e-20,-0.0009300595265813172,-0.0003401360590942204,8.113077403811711e-19,-0.010021022520959377,0.0014880952658131719,0.0006613756413571537,0.0008503401186317205,0.007418627385050058,1.004703829046503e-17,-1.278986251001124e-33,-2.7195620166090262e-33,-0.0005952381179668009,-4.503726208919175e-21,1.3639856103004238e-20,-0.00026455026818439364,1.041480361798672e-18,-0.0003401360590942204,-0.0009300595265813172,0.0017361111240461469,-0.010416666977107525,7.483480667890702e-18,1.004703829046503e-17,1.004703829046503e-17,0.0052083334885537624,-7.83226095958338e-19,-1.4098070347635544e-18,-1.4098070347635544e-18,-6.42490155225237e-19,-4.405647177506564e-19,-4.405647177506564e-19,-1.1358308572131548e-18,-5.664403070804539e-19,-1.1358308572131548e-18,0.0011574074160307646,-0.0011574074160307646,-0.0003306878206785768,-1.278986251001124e-33,-1.278986251001124e-33,-7.83226095958338e-19,0.0003306878206785768,2.120059622183171e-34,2.120059622183171e-34,7.291871125935043e-36,-0.0,-0.0,1.7080557398821712e-34,8.518096409285744e-35,1.7080557398821712e-34,0.0014880952658131719,-0.0014880952658131719,-2.0256506199163445e-33,-0.0005952381179668009,-2.7195620166090262e-33,-1.4098070347635544e-18,2.120059622183171e-34,0.0005952381179668009,3.8161071821764638e-34,1.7391112904404383e-34,1.1925335087794412e-34,1.1925335087794412e-34,3.0745004236234043e-34,1.5332573192331229e-34,3.0745004236234043e-34,0.0014880952658131719,-0.0014880952658131719,-2.0256506199163445e-33,-2.7195620166090262e-33,-0.0005952381179668009,-1.4098070347635544e-18,2.120059622183171e-34,3.8161071821764638e-34,0.0005952381179668009,1.7391112904404383e-34,1.1925335087794412e-34,1.1925335087794412e-34,3.0745004236234043e-34,1.5332573192331229e-34,3.0745004236234043e-34,0.00038580247201025486,1.284980310450474e-18,-0.00038580247201025486,-0.0,-4.503726208919175e-21,-6.42490155225237e-19,7.291871125935043e-36,1.7391112904404383e-34,1.7391112904404383e-34,5.5114636779762805e-05,3.3881317890172014e-21,3.3881317890172014e-21,1.4011395602178712e-34,6.987501171497501e-35,1.4011395602178712e-34,0.0006613756413571537,8.811294355013127e-19,-0.0001889644772745669,-0.00026455026818439364,1.3639856103004238e-20,-4.405647177506564e-19,-0.0,1.1925335087794412e-34,1.1925335087794412e-34,3.3881317890172014e-21,7.558579090982676e-05,-3.897101916814118e-21,9.607813536837213e-35,4.7914291943499904e-35,9.607813536837213e-35,0.0006613756413571537,8.811294355013127e-19,-0.0001889644772745669,1.3639856103004238e-20,-0.00026455026818439364,-4.405647177506564e-19,-0.0,1.1925335087794412e-34,1.1925335087794412e-34,3.3881317890172014e-21,-3.897101916814118e-21,7.558579090982676e-05,9.607813536837213e-35,4.7914291943499904e-35,9.607813536837213e-35,0.0006200397037900984,2.2716617144263096e-18,-1.6319939085442765e-33,-0.0009300595265813172,1.041480361798672e-18,-1.1358308572131548e-18,1.7080557398821712e-34,3.0745004236234043e-34,3.0745004236234043e-34,1.4011395602178712e-34,9.607813536837213e-35,9.607813536837213e-35,0.00018601190822664648,-9.206902788748504e-20,-1.622615454912948e-19,0.0008503401186317205,1.1328806141609079e-18,-8.13877482856308e-34,-0.0003401360590942204,-0.0003401360590942204,-5.664403070804539e-19,8.518096409285744e-35,1.5332573192331229e-34,1.5332573192331229e-34,6.987501171497501e-35,4.7914291943499904e-35,4.7914291943499904e-35,-9.206902788748504e-20,0.0001360544265480712,2.0384252129384096e-34,0.0006200397037900984,2.2716617144263096e-18,-1.6319939085442765e-33,8.113077403811711e-19,-0.0009300595265813172,-1.1358308572131548e-18,1.7080557398821712e-34,3.0745004236234043e-34,3.0745004236234043e-34,1.4011395602178712e-34,9.607813536837213e-35,9.607813536837213e-35,-1.622615454912948e-19,2.0384252129384096e-34,0.00018601190822664648,3.0,8.0,6.0,7.0,0.04076318070292473,-0.014473497867584229,-0.0068735829554498196,-0.0086805559694767,-0.007670776452869177,0.0014880952658131719,0.0009920635493472219,0.0012755101779475808,0.0011160714784637094,0.0003306878206785768,0.0005668934318237007,0.0004960317746736109,0.0005314626032486558,0.0006377550889737904,0.00041335978312417865,-0.014473497867584229,0.02935444936156273,0.0009920635493472219,0.0012755101779475808,0.0011160714784637094,-0.008928571827709675,-0.0009920635493472219,-0.0012755101779475808,-0.0011160714784637094,1.0953820354520414e-18,8.378020252085148e-19,7.379270489767317e-19,2.2790372703581387e-18,9.891652205601791e-19,1.4570784422170051e-18,-0.0068735829554498196,0.0009920635493472219,0.0036173199769109488,0.0005668934318237007,0.0004960317746736109,6.941141353631535e-18,-0.00028344671591185033,9.440671784674232e-20,5.421010862427522e-20,-0.0003306878206785768,-0.0001619695540284738,-0.00014172335795592517,1.6858342841909617e-19,7.427548756972004e-20,8.652767387815841e-20,-0.0086805559694767,0.0012755101779475808,0.0005668934318237007,0.006395266391336918,0.0006377550889737904,8.499807708032556e-18,-1.1858461261560205e-20,-0.0005102040595375001,3.3297157125473383e-20,1.3552527156068805e-20,-0.00022675737272948027,4.103214242050235e-20,-0.0007971939048729837,-0.00025510202976875007,5.766159727833516e-19,-0.007670776452869177,0.0011160714784637094,0.0004960317746736109,0.0006377550889737904,0.004706396255642176,7.269317817036436e-18,-4.992716370631241e-21,1.0620756080875938e-19,-0.00037202381645329297,3.1158681984522133e-21,7.465005175319024e-20,-0.0001653439103392884,8.602571354059739e-19,-0.00021258502965793014,-0.0004960317746736109,0.0014880952658131719,-0.008928571827709675,6.941141353631535e-18,8.499807708032556e-18,7.269317817036436e-18,0.004464285913854837,-1.1508629002923513e-18,-1.0357765378848125e-18,-7.552537427739386e-19,-5.507058842636234e-19,-3.776268713869693e-19,-3.304235253882952e-19,-9.735692470983746e-19,-4.248302432350375e-19,-7.159176340330739e-19,0.0009920635493472219,-0.0009920635493472219,-0.00028344671591185033,-1.1858461261560205e-20,-4.992716370631241e-21,-1.1508629002923513e-18,0.00028344671591185033,2.6632000012229746e-34,1.7227789168457075e-21,1.0714586524926699e-35,3.3881317890172014e-21,-1.6940658945086007e-21,2.4447495289795185e-34,1.1080416380717238e-34,1.4152566516964508e-21,0.0012755101779475808,-0.0012755101779475808,9.440671784674232e-20,-0.0005102040595375001,1.0620756080875938e-19,-1.0357765378848125e-18,2.6632000012229746e-34,0.0005102040595375001,1.8077450076715938e-34,1.294459659666532e-34,-3.7762688431166636e-20,8.349609268315784e-35,-1.3275945101094922e-19,-4.24830236772689e-20,2.625461811198031e-34,0.0011160714784637094,-0.0011160714784637094,5.421010862427522e-20,3.3297157125473383e-20,-0.00037202381645329297,-7.552537427739386e-19,1.7227789168457075e-21,1.8077450076715938e-34,0.00037202381645329297,2.009908736319992e-21,6.782894555916752e-35,-2.371692252312041e-20,1.717097288862036e-34,-1.1099052105893272e-20,-1.0065537590328714e-20,0.0003306878206785768,1.0953820354520414e-18,-0.0003306878206785768,1.3552527156068805e-20,3.1158681984522133e-21,-5.507058842636234e-19,1.0714586524926699e-35,1.294459659666532e-34,2.009908736319992e-21,4.724111931864172e-05,-0.0,-3.3881317890172014e-21,1.1528060471133452e-34,5.416677968589101e-35,3.638351198011204e-22,0.0005668934318237007,8.378020252085148e-19,-0.0001619695540284738,-0.00022675737272948027,7.465005175319024e-20,-3.776268713869693e-19,3.3881317890172014e-21,-3.7762688431166636e-20,6.782894555916752e-35,-0.0,6.478781870100647e-05,-5.915243685168427e-21,-6.743337266010817e-20,-2.1578678411129306e-20,1.1308909982820532e-34,0.0004960317746736109,7.379270489767317e-19,-0.00014172335795592517,4.103214242050235e-20,-0.0001653439103392884,-3.304235253882952e-19,-1.6940658945086007e-21,8.349609268315784e-35,-2.371692252312041e-20,-3.3881317890172014e-21,-5.915243685168427e-21,4.724111931864172e-05,1.1585672321704466e-34,-6.776263578034403e-21,-3.023255958471525e-20,0.0005314626032486558,2.2790372703581387e-18,1.6858342841909617e-19,-0.0007971939048729837,8.602571354059739e-19,-9.735692470983746e-19,2.4447495289795185e-34,-1.3275945101094922e-19,1.717097288862036e-34,1.1528060471133452e-34,-6.743337266010817e-20,1.1585672321704466e-34,0.0001594387722434476,-9.864539163826864e-20,-1.022739486422032e-19,0.0006377550889737904,9.891652205601791e-19,7.427548756972004e-20,-0.00025510202976875007,-0.00021258502965793014,-4.248302432350375e-19,1.1080416380717238e-34,-4.24830236772689e-20,-1.1099052105893272e-20,5.416677968589101e-35,-2.1578678411129306e-20,-6.776263578034403e-21,-9.864539163826864e-20,8.50340147735551e-05,-2.1748751268714183e-20,0.00041335978312417865,1.4570784422170051e-18,8.652767387815841e-20,5.766159727833516e-19,-0.0004960317746736109,-7.159176340330739e-19,1.4152566516964508e-21,2.625461811198031e-34,-1.0065537590328714e-20,3.638351198011204e-22,1.1308909982820532e-34,-3.023255958471525e-20,-1.022739486422032e-19,-2.1748751268714183e-20,8.26719551696442e-05,3.0,8.0,6.0,8.0,0.036389440298080444,-0.0127728171646595,-0.006062610074877739,-0.0076574902050197124,-0.006062610074877739,0.0013020833721384406,0.0008680555620230734,0.0011160714784637094,0.0008680555620230734,0.00028935185400769114,0.0004960317746736109,0.00038580247201025486,0.0004650297632906586,0.0004960317746736109,0.00028935185400769114,-0.0127728171646595,0.02579365111887455,0.0008680555620230734,0.0011160714784637094,0.0008680555620230734,-0.0078125,-0.0008680555620230734,-0.0011160714784637094,-0.0008680555620230734,9.64790482654926e-19,6.608470507765904e-19,5.317798367520452e-19,1.7037462858197322e-18,6.402956967589221e-19,9.597772511549717e-19,-0.006062610074877739,0.0008680555620230734,0.003178933635354042,0.0004960317746736109,0.00038580247201025486,5.9797477915596346e-18,-0.00024801588733680546,-1.21396185243997e-33,2.0328790734103208e-20,-0.00028935185400769114,-0.00014172335795592517,-0.00011022927355952561,-1.47510498251122e-19,-5.0852388647466415e-20,2.442011974784425e-20,-0.0076574902050197124,0.0011160714784637094,0.0004960317746736109,0.0056206597946584225,0.0004960317746736109,7.365346868708942e-18,-1.3958890723549044e-33,-0.00044642857392318547,-2.0551316859164178e-20,-2.710505431213761e-20,-0.00019841270113829523,1.762291735276103e-21,-0.0006975446594879031,-0.00019841270113829523,3.154414233385816e-19,-0.006062610074877739,0.0008680555620230734,0.00038580247201025486,0.0004960317746736109,0.003178933635354042,5.9797477915596346e-18,-5.195682178365389e-21,-1.21396185243997e-33,-0.00024801588733680546,-2.5306054013798766e-21,-3.130240461595322e-20,-0.00011022927355952561,4.192107917436585e-19,-0.00014172335795592517,-0.00028935185400769114,0.0013020833721384406,-0.0078125,5.9797477915596346e-18,7.365346868708942e-18,5.9797477915596346e-18,0.00390625,-8.811294355013127e-19,-7.930164505921508e-19,-8.811294355013127e-19,-4.81867655193019e-19,-3.304235253882952e-19,-2.5699607242985247e-19,-8.518731429098661e-19,-3.304235253882952e-19,-4.81867655193019e-19,0.0008680555620230734,-0.0008680555620230734,-0.00024801588733680546,-1.3958890723549044e-33,-5.195682178365389e-21,-8.811294355013127e-19,0.00024801588733680546,1.7888002631691618e-34,-2.5841682238072674e-22,8.203355644458635e-36,-0.0,-0.0,1.9168691099531778e-34,7.387842519758287e-35,7.203527406018617e-22,0.0011160714784637094,-0.0011160714784637094,-1.21396185243997e-33,-0.00044642857392318547,-1.21396185243997e-33,-7.930164505921508e-19,1.7888002631691618e-34,0.00044642857392318547,1.7888002631691618e-34,9.782501869685242e-35,6.708000986884357e-35,5.217334100910055e-35,1.7294064595895724e-34,6.708000986884357e-35,9.782501869685242e-35,0.0008680555620230734,-0.0008680555620230734,2.0328790734103208e-20,-2.0551316859164178e-20,-0.00024801588733680546,-8.811294355013127e-19,-2.5841682238072674e-22,1.7888002631691618e-34,0.00024801588733680546,-3.01486305399289e-22,7.690885307783383e-35,-5.082197683525802e-21,2.026153694764298e-34,5.871804586105889e-21,4.1051437983487607e-22,0.00028935185400769114,9.64790482654926e-19,-0.00028935185400769114,-2.710505431213761e-20,-2.5306054013798766e-21,-4.81867655193019e-19,8.203355644458635e-36,9.782501869685242e-35,-3.01486305399289e-22,4.13359775848221e-05,3.3881317890172014e-21,1.6940658945086007e-21,1.0699235934757965e-34,4.137740114894452e-35,-4.983032642324885e-22,0.0004960317746736109,6.608470507765904e-19,-0.00014172335795592517,-0.00019841270113829523,-3.130240461595322e-20,-3.304235253882952e-19,-0.0,6.708000986884357e-35,7.690885307783383e-35,3.3881317890172014e-21,5.668934318237007e-05,-3.0446107084279614e-21,5.900420188538822e-20,1.6783417080518505e-20,1.548797607098608e-35,0.00038580247201025486,5.317798367520452e-19,-0.00011022927355952561,1.762291735276103e-21,-0.00011022927355952561,-2.5699607242985247e-19,-0.0,5.217334100910055e-35,-5.082197683525802e-21,1.6940658945086007e-21,-3.0446107084279614e-21,3.149408075842075e-05,6.69561582228375e-35,2.541098841762901e-21,-6.105029936961062e-21,0.0004650297632906586,1.7037462858197322e-18,-1.47510498251122e-19,-0.0006975446594879031,4.192107917436585e-19,-8.518731429098661e-19,1.9168691099531778e-34,1.7294064595895724e-34,2.026153694764298e-34,1.0699235934757965e-34,5.900420188538822e-20,6.69561582228375e-35,0.00013950893480796367,2.5062735686221382e-20,-6.883823553295292e-20,0.0004960317746736109,6.402956967589221e-19,-5.0852388647466415e-20,-0.00019841270113829523,-0.00014172335795592517,-3.304235253882952e-19,7.387842519758287e-35,6.708000986884357e-35,5.871804586105889e-21,4.137740114894452e-35,1.6783417080518505e-20,2.541098841762901e-21,2.5062735686221382e-20,5.668934318237007e-05,8.214215290968406e-21,0.00028935185400769114,9.597772511549717e-19,2.442011974784425e-20,3.154414233385816e-19,-0.00028935185400769114,-4.81867655193019e-19,7.203527406018617e-22,9.782501869685242e-35,4.1051437983487607e-22,-4.983032642324885e-22,1.548797607098608e-35,-6.105029936961062e-21,-6.883823553295292e-20,8.214215290968406e-21,4.13359775848221e-05,3.0,8.0,7.0,3.0,0.0699404776096344,-0.02703372947871685,-0.012896825559437275,-0.014384920708835125,-0.02703372947871685,0.0029761905316263437,0.0019841270986944437,0.0022321429569274187,0.004464285913854837,0.0006613756413571537,0.0009920635493472219,0.0019841270986944437,0.0008267195662483573,0.0022321429569274187,0.0029761905316263437,-0.02703372947871685,0.056795634329319,0.0019841270986944437,0.0022321429569274187,0.004464285913854837,-0.01785714365541935,-0.0019841270986944437,-0.0022321429569274187,-0.004464285913854837,2.205567295146332e-18,1.452137175430343e-18,2.6168731353661274e-18,2.86425597321083e-18,2.9738117026452626e-18,1.9825411626695288e-17,-0.012896825559437275,0.0019841270986944437,0.00699168536812067,0.0009920635493472219,0.0019841270986944437,1.3315842658676557e-17,-0.0005668934318237007,1.4907779871675686e-19,-6.75819693746962e-33,-0.0006613756413571537,-0.00028344671591185033,-0.0005668934318237007,1.9390539152329916e-19,-0.0,-1.4783556213974527e-32,-0.014384920708835125,0.0022321429569274187,0.0009920635493472219,0.009093915112316608,0.0022321429569274187,1.390138892505182e-17,-9.987385178313792e-21,-0.0007440476329065859,-7.055379541772757e-33,2.710505431213761e-20,-0.0003306878206785768,-1.0388351286726069e-19,-0.0009920635493472219,-0.0007440476329065859,-1.5433642793545654e-32,-0.02703372947871685,0.004464285913854837,0.0019841270986944437,0.0022321429569274187,0.056795634329319,3.344358052745385e-17,-2.371692252312041e-20,-3.2643495417861826e-21,-0.004464285913854837,-6.769871022863016e-20,-9.486769009248164e-20,-0.0019841270986944437,-0.0,-0.0022321429569274187,-0.01785714365541935,0.0029761905316263437,-0.01785714365541935,1.3315842658676557e-17,1.390138892505182e-17,3.344358052745385e-17,0.008928571827709675,-2.3017258005847025e-18,-1.5105074855478771e-18,-4.5315224566436314e-18,-1.1014117685272467e-18,-6.608470507765904e-19,-1.3216941015531808e-18,-1.4318352680661478e-18,-1.4869058513226313e-18,-9.912705813347644e-18,0.0019841270986944437,-0.0019841270986944437,-0.0005668934318237007,-9.987385178313792e-21,-2.371692252312041e-20,-2.3017258005847025e-18,0.0005668934318237007,-7.839594662922712e-22,1.1681960921071158e-33,2.1429173049853398e-35,3.3881317890172014e-21,6.776263578034403e-21,-1.6724872292241168e-22,2.1376169619273963e-34,2.555428842429664e-33,0.0022321429569274187,-0.0022321429569274187,1.4907779871675686e-19,-0.0007440476329065859,-3.2643495417861826e-21,-1.5105074855478771e-18,-7.839594662922712e-22,0.0007440476329065859,7.666286710959985e-34,-9.146194194135647e-22,-4.743384504624082e-20,9.3267128322831e-22,1.863333607467877e-35,-0.0,1.6770002811594002e-33,0.004464285913854837,-0.004464285913854837,-6.75819693746962e-33,-7.055379541772757e-33,-0.004464285913854837,-4.5315224566436314e-18,1.1681960921071158e-33,7.666286710959985e-34,0.004464285913854837,5.590000937198001e-34,3.354000378647808e-34,6.708000757295616e-34,7.267001126521905e-34,7.546501081546309e-34,5.031000843478201e-33,0.0006613756413571537,2.205567295146332e-18,-0.0006613756413571537,2.710505431213761e-20,-6.769871022863016e-20,-1.1014117685272467e-18,2.1429173049853398e-35,-9.146194194135647e-22,5.590000937198001e-34,9.448223863728344e-05,-6.776263578034403e-21,0.0,8.905126379435775e-22,-1.4389514482284817e-35,1.2228126820531886e-33,0.0009920635493472219,1.452137175430343e-18,-0.00028344671591185033,-0.0003306878206785768,-9.486769009248164e-20,-6.608470507765904e-19,3.3881317890172014e-21,-4.743384504624082e-20,3.354000378647808e-34,-6.776263578034403e-21,9.448223863728344e-05,2.710505431213761e-20,-6.724138274746491e-20,-0.0,7.336876000483636e-34,0.0019841270986944437,2.6168731353661274e-18,-0.0005668934318237007,-1.0388351286726069e-19,-0.0019841270986944437,-1.3216941015531808e-18,6.776263578034403e-21,9.3267128322831e-22,6.708000757295616e-34,0.0,2.710505431213761e-20,0.0005668934318237007,1.2435617446291452e-21,-0.0,1.4673752000967271e-33,0.0008267195662483573,2.86425597321083e-18,1.9390539152329916e-19,-0.0009920635493472219,-0.0,-1.4318352680661478e-18,-1.6724872292241168e-22,1.863333607467877e-35,7.267001126521905e-34,8.905126379435775e-22,-6.724138274746491e-20,1.2435617446291452e-21,0.0001653439103392884,1.8342190288195015e-35,1.5896564591184964e-33,0.0022321429569274187,2.9738117026452626e-18,-0.0,-0.0007440476329065859,-0.0022321429569274187,-1.4869058513226313e-18,2.1376169619273963e-34,-0.0,7.546501081546309e-34,-1.4389514482284817e-35,-0.0,-0.0,1.8342190288195015e-35,0.0007440476329065859,1.650797042711633e-33,0.0029761905316263437,1.9825411626695288e-17,-1.4783556213974527e-32,-1.5433642793545654e-32,-0.01785714365541935,-9.912705813347644e-18,2.555428842429664e-33,1.6770002811594002e-33,5.031000843478201e-33,1.2228126820531886e-33,7.336876000483636e-34,1.4673752000967271e-33,1.5896564591184964e-33,1.650797042711633e-33,0.008928571827709675,3.0,8.0,7.0,4.0,0.0563616082072258,-0.02094493992626667,-0.00997023843228817,-0.01112351194024086,-0.01711309514939785,0.0022321429569274187,0.0014880952658131719,0.0016741071594879031,0.0026785715017467737,0.0004960317746736109,0.0007440476329065859,0.0011904762359336019,0.0006200397037900984,0.0013392857508733869,0.0014880952658131719,-0.02094493992626667,0.04326637089252472,0.0014880952658131719,0.0016741071594879031,0.0026785715017467737,-0.013392857275903225,-0.0014880952658131719,-0.0016741071594879031,-0.0026785715017467737,1.6571254559180544e-18,8.591334105438206e-19,1.6105848625357943e-18,2.1141458462808993e-18,1.8036805605616777e-18,6.938893903907228e-18,-0.00997023843228817,0.0014880952658131719,0.005328798200935125,0.0007440476329065859,0.0011904762359336019,9.753562880937342e-18,-0.00042517005931586027,-1.176499502222054e-19,-3.9601846319386226e-33,-0.0004960317746736109,-0.00021258502965793014,-0.0003401360590942204,-1.586041147141033e-19,-1.1519648082658485e-19,-5.664403070804539e-19,-0.01112351194024086,0.0016741071594879031,0.0007440476329065859,0.006932043470442295,0.0013392857508733869,1.1215518586841113e-17,1.4124037873509056e-20,-0.0005580357392318547,-4.553774381615338e-33,2.710505431213761e-20,-0.00024801588733680546,-1.810289294216276e-19,-0.0007440476329065859,-0.00044642857392318547,-7.434529256613157e-19,-0.01711309514939785,0.0026785715017467737,0.0011904762359336019,0.0013392857508733869,0.02182539738714695,1.8579242527188226e-17,2.291524880023728e-20,2.1302978466730528e-20,-0.0017857142956927419,-1.9397831670314237e-21,-7.115076756936123e-20,-0.0007936508045531809,-0.0,-0.0008928571478463709,-0.004464285913854837,0.0022321429569274187,-0.013392857275903225,9.753562880937342e-18,1.1215518586841113e-17,1.8579242527188226e-17,0.0066964286379516125,-1.2947207757535922e-18,-1.69932097294015e-18,-2.7189135153452095e-18,-8.260588005460409e-19,-4.956353010071399e-19,-7.930164505921508e-19,-1.073876476899005e-18,-8.921435521526094e-19,-3.469446951953614e-18,0.0014880952658131719,-0.0014880952658131719,-0.00042517005931586027,1.4124037873509056e-20,2.291524880023728e-20,-1.2947207757535922e-18,0.00042517005931586027,-1.4308144528732492e-21,5.256882368564273e-34,1.2053909661176333e-35,-0.0,-6.776263578034403e-21,-2.014470952437713e-21,2.672243723459852e-22,6.680743063680963e-34,0.0016741071594879031,-0.0016741071594879031,-1.176499502222054e-19,-0.0005580357392318547,2.1302978466730528e-20,-1.69932097294015e-18,-1.4308144528732492e-21,0.0005580357392318547,6.8996582235349785e-34,-1.6692834946940588e-21,4.404571325722362e-20,-2.7833948560942167e-22,1.3552527156068805e-20,-6.776263578034403e-21,8.76393027497922e-34,0.0026785715017467737,-0.0026785715017467737,-3.9601846319386226e-33,-4.553774381615338e-33,-0.0017857142956927419,-2.7189135153452095e-18,5.256882368564273e-34,6.8996582235349785e-34,0.0017857142956927419,3.354000378647808e-34,2.012400181270937e-34,3.219840427786743e-34,4.360200584077647e-34,3.6223205099586786e-34,1.4086801957662779e-33,0.0004960317746736109,1.6571254559180544e-18,-0.0004960317746736109,2.710505431213761e-20,-1.9397831670314237e-21,-8.260588005460409e-19,1.2053909661176333e-35,-1.6692834946940588e-21,3.354000378647808e-34,7.086167897796258e-05,-0.0,-6.776263578034403e-21,-2.877113096734509e-21,3.1176176773698273e-22,4.092601131822876e-34,0.0007440476329065859,8.591334105438206e-19,-0.00021258502965793014,-0.00024801588733680546,-7.115076756936123e-20,-4.956353010071399e-19,-0.0,4.404571325722362e-20,2.012400181270937e-34,-0.0,7.086167897796258e-05,2.0328790734103208e-20,6.098637220230962e-20,-0.0,2.9157813652022885e-34,0.0011904762359336019,1.6105848625357943e-18,-0.0003401360590942204,-1.810289294216276e-19,-0.0007936508045531809,-7.930164505921508e-19,-6.776263578034403e-21,-2.7833948560942167e-22,3.219840427786743e-34,-6.776263578034403e-21,2.0328790734103208e-20,0.00022675737272948027,-3.711192973168629e-22,7.504585121394833e-20,3.776268713869693e-19,0.0006200397037900984,2.1141458462808993e-18,-1.586041147141033e-19,-0.0007440476329065859,-0.0,-1.073876476899005e-18,-2.014470952437713e-21,1.3552527156068805e-20,4.360200584077647e-34,-2.877113096734509e-21,6.098637220230962e-20,-3.711192973168629e-22,0.00012400794366840273,1.0425021277645988e-21,5.538768668956342e-34,0.0013392857508733869,1.8036805605616777e-18,-1.1519648082658485e-19,-0.00044642857392318547,-0.0008928571478463709,-8.921435521526094e-19,2.672243723459852e-22,-6.776263578034403e-21,3.6223205099586786e-34,3.1176176773698273e-22,-0.0,7.504585121394833e-20,1.0425021277645988e-21,0.00029761905898340046,4.956353010071399e-19,0.0014880952658131719,6.938893903907228e-18,-5.664403070804539e-19,-7.434529256613157e-19,-0.004464285913854837,-3.469446951953614e-18,6.680743063680963e-34,8.76393027497922e-34,1.4086801957662779e-33,4.092601131822876e-34,2.9157813652022885e-34,3.776268713869693e-19,5.538768668956342e-34,4.956353010071399e-19,0.0014880952658131719,3.0,8.0,7.0,5.0,0.04728599637746811,-0.01711309514939785,-0.008134921081364155,-0.00907738134264946,-0.011833900585770607,0.0017857142956927419,0.0011904762359336019,0.0013392857508733869,0.0017857142956927419,0.00039682540227659047,0.0005952381179668009,0.0007936508045531809,0.0004960317746736109,0.0008928571478463709,0.0008503401186317205,-0.01711309514939785,0.0349702388048172,0.0011904762359336019,0.0013392857508733869,0.0017857142956927419,-0.010714286006987095,-0.0011904762359336019,-0.0013392857508733869,-0.0017857142956927419,2.00728610525793e-18,2.0478092698765967e-18,2.295678231427539e-19,3.2412650440777987e-18,6.101218540730011e-19,-4.909149431428177e-18,-0.008134921081364155,0.0011904762359336019,0.004308389965444803,0.0005952381179668009,0.0007936508045531809,1.2895958335119128e-17,-0.0003401360590942204,-2.589911803685421e-19,-2.762070836624551e-19,-0.00039682540227659047,-0.0001700680295471102,-0.00022675737272948027,6.4817583286440855e-19,-9.817492361759115e-19,-3.1649584597503945e-18,-0.00907738134264946,0.0013392857508733869,0.0005952381179668009,0.0056051588617265224,0.0008928571478463709,1.6785514603756786e-17,1.7030648440913534e-19,-0.00044642857392318547,-3.6252180376932087e-19,1.0842021724855044e-18,-0.00019841270113829523,-1.9009464540451037e-18,-0.0005952381179668009,-0.00029761905898340046,-6.1388576367454346e-18,-0.011833900585770607,0.0017857142956927419,0.0007936508045531809,0.0008928571478463709,0.01101899053901434,4.012285573110034e-19,-2.7925261792126817e-18,-3.7363636599637565e-18,-0.0008928571478463709,-8.559753383626697e-19,-2.284337016542766e-18,-0.00039682540227659047,-3.6591823321385775e-18,-0.00044642857392318547,-0.001700680237263441,0.0017857142956927419,-0.010714286006987095,1.2895958335119128e-17,1.6785514603756786e-17,4.012285573110034e-19,0.0053571430034935474,-1.1328806141609079e-18,-1.4869058513226313e-18,-2.127394615096806e-33,-9.912706020142797e-19,-1.0290332581337037e-18,-4.909149431428177e-19,-1.5529905512304115e-18,-6.938894007304805e-19,8.49660486470075e-19,0.0011904762359336019,-0.0011904762359336019,-0.0003401360590942204,1.7030648440913534e-19,-2.7925261792126817e-18,-1.1328806141609079e-18,0.0003401360590942204,-6.044428455775183e-20,2.762070836624551e-19,-6.776263578034403e-21,-1.3552527156068805e-20,1.0164395367051604e-19,-3.865258290508311e-20,9.440671784674232e-20,4.3157357468493465e-19,0.0013392857508733869,-0.0013392857508733869,-2.589911803685421e-19,-0.00044642857392318547,-3.7363636599637565e-18,-1.4869058513226313e-18,-6.044428455775183e-20,0.00044642857392318547,3.6252180376932087e-19,-3.426687826454647e-22,1.9230375659989482e-20,1.321694127402575e-19,-1.1407982546554661e-35,1.4907779871675686e-19,5.664403070804539e-19,0.0017857142956927419,-0.0017857142956927419,-2.762070836624551e-19,-3.6252180376932087e-19,-0.0008928571478463709,-2.127394615096806e-33,2.762070836624551e-19,3.6252180376932087e-19,0.0008928571478463709,-0.0,9.027796614315168e-36,1.8958372890061853e-34,-1.2037062152420224e-35,1.986115255149337e-34,8.104360394732834e-34,0.00039682540227659047,2.00728610525793e-18,-0.00039682540227659047,1.0842021724855044e-18,-8.559753383626697e-19,-9.912706020142797e-19,-6.776263578034403e-21,-3.426687826454647e-22,-0.0,5.668934318237007e-05,-7.453889935837843e-20,3.049318610115481e-20,-1.4947195027863838e-19,2.2028234918180537e-20,1.2587562810388879e-19,0.0005952381179668009,2.0478092698765967e-18,-0.0001700680295471102,-0.00019841270113829523,-2.284337016542766e-18,-1.0290332581337037e-18,-1.3552527156068805e-20,1.9230375659989482e-20,9.027796614315168e-36,-7.453889935837843e-20,5.668934318237007e-05,1.3133445146006764e-19,3.1405281973465237e-20,1.1011428314305904e-19,3.326713111547256e-19,0.0007936508045531809,2.295678231427539e-19,-0.00022675737272948027,-1.9009464540451037e-18,-0.00039682540227659047,-4.909149431428177e-19,1.0164395367051604e-19,1.321694127402575e-19,1.8958372890061853e-34,3.049318610115481e-20,1.3133445146006764e-19,0.00011337868636474013,1.5105075372466654e-19,1.6363831007270689e-19,3.911563667328573e-19,0.0004960317746736109,3.2412650440777987e-18,6.4817583286440855e-19,-0.0005952381179668009,-3.6591823321385775e-18,-1.5529905512304115e-18,-3.865258290508311e-20,-1.1407982546554661e-35,-1.2037062152420224e-35,-1.4947195027863838e-19,3.1405281973465237e-20,1.5105075372466654e-19,9.920635056914762e-05,1.9559945741780776e-19,5.664403070804539e-19,0.0008928571478463709,6.101218540730011e-19,-9.817492361759115e-19,-0.00029761905898340046,-0.00044642857392318547,-6.938894007304805e-19,9.440671784674232e-20,1.4907779871675686e-19,1.986115255149337e-34,2.2028234918180537e-20,1.1011428314305904e-19,1.6363831007270689e-19,1.9559945741780776e-19,0.00014880952949170023,4.575095125988051e-19,0.0008503401186317205,-4.909149431428177e-18,-3.1649584597503945e-18,-6.1388576367454346e-18,-0.001700680237263441,8.49660486470075e-19,4.3157357468493465e-19,5.664403070804539e-19,8.104360394732834e-34,1.2587562810388879e-19,3.326713111547256e-19,3.911563667328573e-19,5.664403070804539e-19,4.575095125988051e-19,0.00042517005931586027,3.0,8.0,7.0,6.0,0.04076318070292473,-0.014473497867584229,-0.0068735829554498196,-0.007670776452869177,-0.0086805559694767,0.0014880952658131719,0.0009920635493472219,0.0011160714784637094,0.0012755101779475808,0.0003306878206785768,0.0004960317746736109,0.0005668934318237007,0.00041335978312417865,0.0006377550889737904,0.0005314626032486558,-0.014473497867584229,0.02935444936156273,0.0009920635493472219,0.0011160714784637094,0.0012755101779475808,-0.008928571827709675,-0.0009920635493472219,-0.0011160714784637094,-0.0012755101779475808,1.0775526743363438e-18,7.132754640602147e-19,8.49660486470075e-19,1.453645435879757e-18,9.761967863141493e-19,2.2790372703581387e-18,-0.0068735829554498196,0.0009920635493472219,0.0036173199769109488,0.0004960317746736109,0.0005668934318237007,6.941141353631535e-18,-0.00028344671591185033,5.795844525831659e-20,9.440671784674232e-20,-0.0003306878206785768,-0.00014172335795592517,-0.0001619695540284738,7.484542147411761e-20,6.411109220266844e-20,1.6858342841909617e-19,-0.007670776452869177,0.0011160714784637094,0.0004960317746736109,0.004706396255642176,0.0006377550889737904,7.269317817036436e-18,-3.2187162734474265e-21,-0.00037202381645329297,1.0620756080875938e-19,1.3552527156068805e-20,-0.0001653439103392884,3.142109210915751e-20,-0.0004960317746736109,-0.00021258502965793014,-1.6456294593428228e-33,-0.0086805559694767,0.0012755101779475808,0.0005668934318237007,0.0006377550889737904,0.006395266391336918,8.499807708032556e-18,-1.8310221835407752e-33,2.0328790734103208e-20,-0.0005102040595375001,1.8450365344984718e-20,-1.2361209359407717e-20,-0.00022675737272948027,4.0657581468206416e-20,-0.00025510202976875007,-0.0007971939048729837,0.0014880952658131719,-0.008928571827709675,6.941141353631535e-18,7.269317817036436e-18,8.499807708032556e-18,0.004464285913854837,-1.1508629002923513e-18,-7.552537427739386e-19,-1.0357765378848125e-18,-5.507058842636234e-19,-3.304235253882952e-19,-3.776268713869693e-19,-7.159176340330739e-19,-4.248302432350375e-19,-9.735692470983746e-19,0.0009920635493472219,-0.0009920635493472219,-0.00028344671591185033,-3.2187162734474265e-21,-1.8310221835407752e-33,-1.1508629002923513e-18,0.00028344671591185033,4.059710143373462e-23,2.6607631463324223e-34,6.776263578034403e-21,1.6940658945086007e-21,-0.0,-4.2324793275323845e-22,1.1028000123341362e-34,2.468211661537962e-34,0.0011160714784637094,-0.0011160714784637094,5.795844525831659e-20,-0.00037202381645329297,2.0328790734103208e-20,-7.552537427739386e-19,4.059710143373462e-23,0.00037202381645329297,1.775466667481983e-34,4.736328448011645e-23,-1.9452549587055263e-20,6.281841810794304e-35,-6.776263578034403e-21,-6.776263578034403e-21,1.6470537819704851e-34,0.0012755101779475808,-0.0012755101779475808,9.440671784674232e-20,1.0620756080875938e-19,-0.0005102040595375001,-1.0357765378848125e-18,2.6607631463324223e-34,1.775466667481983e-34,0.0005102040595375001,1.2700133949723854e-34,7.460431017837116e-35,-3.7762688431166636e-20,1.7203673212914817e-34,-4.24830236772689e-20,-1.3275945101094922e-19,0.0003306878206785768,1.0775526743363438e-18,-0.0003306878206785768,1.3552527156068805e-20,1.8450365344984718e-20,-5.507058842636234e-19,6.776263578034403e-21,4.736328448011645e-23,1.2700133949723854e-34,4.724111931864172e-05,-3.3881317890172014e-21,0.0,-7.917254926706972e-22,5.266214691683848e-35,1.1736135598609718e-34,0.0004960317746736109,7.132754640602147e-19,-0.00014172335795592517,-0.0001653439103392884,-1.2361209359407717e-20,-3.304235253882952e-19,1.6940658945086007e-21,-1.9452549587055263e-20,7.460431017837116e-35,-3.3881317890172014e-21,4.724111931864172e-05,6.435886833904501e-21,-2.280922751016271e-20,-3.3881317890172014e-21,6.535991380664886e-35,0.0005668934318237007,8.49660486470075e-19,-0.0001619695540284738,3.142109210915751e-20,-0.00022675737272948027,-3.776268713869693e-19,-0.0,6.281841810794304e-35,-3.7762688431166636e-20,0.0,6.435886833904501e-21,6.478781870100647e-05,6.018531076210112e-35,-2.1578678411129306e-20,-6.743337266010817e-20,0.00041335978312417865,1.453645435879757e-18,7.484542147411761e-20,-0.0004960317746736109,4.0657581468206416e-20,-7.159176340330739e-19,-4.2324793275323845e-22,-6.776263578034403e-21,1.7203673212914817e-34,-7.917254926706972e-22,-2.280922751016271e-20,6.018531076210112e-35,8.26719551696442e-05,-1.7461910362377992e-20,1.5612697858318247e-34,0.0006377550889737904,9.761967863141493e-19,6.411109220266844e-20,-0.00021258502965793014,-0.00025510202976875007,-4.248302432350375e-19,1.1028000123341362e-34,-6.776263578034403e-21,-4.24830236772689e-20,5.266214691683848e-35,-3.3881317890172014e-21,-2.1578678411129306e-20,-1.7461910362377992e-20,8.50340147735551e-05,1.2616104470739292e-34,0.0005314626032486558,2.2790372703581387e-18,1.6858342841909617e-19,-1.6456294593428228e-33,-0.0007971939048729837,-9.735692470983746e-19,2.468211661537962e-34,1.6470537819704851e-34,-1.3275945101094922e-19,1.1736135598609718e-34,6.535991380664886e-35,-6.743337266010817e-20,1.5612697858318247e-34,1.2616104470739292e-34,0.0001594387722434476,3.0,8.0,7.0,7.0,0.0358382947742939,-0.01254251692444086,-0.0059523810632526875,-0.006643282249569893,-0.006643282249569893,0.0012755101779475808,0.0008503401186317205,0.0009566326625645161,0.0009566326625645161,0.00028344671591185033,0.00042517005931586027,0.00042517005931586027,0.00035430840216577053,0.00047831633128225803,0.00035430840216577053,-0.01254251692444086,0.0252976194024086,0.0008503401186317205,0.0009566326625645161,0.0009566326625645161,-0.0076530613005161285,-0.0008503401186317205,-0.0009566326625645161,-0.0009566326625645161,9.689382764389965e-19,6.143074396713077e-19,6.0751116866220715e-19,1.2257981225617192e-18,7.064025754468764e-19,1.2426722968650712e-18,-0.0059523810632526875,0.0008503401186317205,0.003117913845926523,0.00042517005931586027,0.00042517005931586027,6.415528458538802e-18,-0.00024295432376675308,1.2696564535608054e-19,1.1519648082658485e-19,-0.00028344671591185033,-0.00012147716188337654,-0.00012147716188337654,5.570833950876189e-20,1.31595654741114e-20,5.004010051711361e-20,-0.006643282249569893,0.0009566326625645161,0.00042517005931586027,0.004056830890476704,0.00047831633128225803,7.376006745262913e-18,9.19828524697632e-20,-0.0003188775444868952,1.5408374068756293e-19,1.3552527156068805e-20,-0.00014172335795592517,-0.0,-0.00042517005931586027,-0.0001594387722434476,5.760996957588448e-20,-0.006643282249569893,0.0009566326625645161,0.00042517005931586027,0.00047831633128225803,0.004056830890476704,7.376006745262913e-18,9.19828524697632e-20,1.1044690022218486e-19,-0.0003188775444868952,1.7247006577414728e-20,-2.2883114772144154e-20,-0.00014172335795592517,-0.0,-0.0001594387722434476,-0.00042517005931586027,0.0012755101779475808,-0.0076530613005161285,6.415528458538802e-18,7.376006745262913e-18,7.376006745262913e-18,0.0038265306502580643,-1.411972180016912e-18,-1.747006074097454e-18,-1.747006074097454e-18,-4.720336150831057e-19,-2.8322015354022696e-19,-2.8322015354022696e-19,-6.136436789285222e-19,-3.1862268242627814e-19,-6.136436789285222e-19,0.0008503401186317205,-0.0008503401186317205,-0.00024295432376675308,9.19828524697632e-20,9.19828524697632e-20,-1.411972180016912e-18,0.00024295432376675308,-8.135169459268441e-20,-8.08181437105421e-20,-6.776263578034403e-21,-1.6940658945086007e-21,-1.6940658945086007e-21,-7.233731312357719e-22,1.2378645428323574e-34,-8.054573269765115e-22,0.0009566326625645161,-0.0009566326625645161,1.2696564535608054e-19,-0.0003188775444868952,1.1044690022218486e-19,-1.747006074097454e-18,-8.135169459268441e-20,0.0003188775444868952,-1.052023101823087e-19,-5.035891119248996e-22,-1.4379072842878213e-20,4.453846571747374e-22,2.1550735983103657e-35,-3.3881317890172014e-21,5.170713380185274e-22,0.0009566326625645161,-0.0009566326625645161,1.1519648082658485e-19,1.5408374068756293e-19,-0.0003188775444868952,-1.747006074097454e-18,-8.08181437105421e-20,-1.052023101823087e-19,0.0003188775444868952,1.1888263845957828e-22,3.99779964533412e-22,-1.2159261775464705e-20,1.340330668162108e-21,-1.9664269049777625e-20,-4.7056794474171555e-21,0.00028344671591185033,9.689382764389965e-19,-0.00028344671591185033,1.3552527156068805e-20,1.7247006577414728e-20,-4.720336150831057e-19,-6.776263578034403e-21,-5.035891119248996e-22,1.1888263845957828e-22,4.049238850711845e-05,-0.0,0.0,-9.37730475405433e-24,3.987276837989199e-35,-7.427598234327979e-22,0.00042517005931586027,6.143074396713077e-19,-0.00012147716188337654,-0.00014172335795592517,-2.2883114772144154e-20,-2.8322015354022696e-19,-1.6940658945086007e-21,-1.4379072842878213e-20,3.99779964533412e-22,-0.0,4.049238850711845e-05,3.981822498321881e-21,-1.8898501750945258e-20,1.6940658945086007e-21,5.33039952711216e-22,0.00042517005931586027,6.0751116866220715e-19,-0.00012147716188337654,-0.0,-0.00014172335795592517,-2.8322015354022696e-19,-1.6940658945086007e-21,4.453846571747374e-22,-1.2159261775464705e-20,0.0,3.981822498321881e-21,4.049238850711845e-05,5.938462095663165e-22,-6.0805877192124006e-21,-1.5070002914494406e-20,0.00035430840216577053,1.2257981225617192e-18,5.570833950876189e-20,-0.00042517005931586027,-0.0,-6.136436789285222e-19,-7.233731312357719e-22,2.1550735983103657e-35,1.340330668162108e-21,-9.37730475405433e-24,-1.8898501750945258e-20,5.938462095663165e-22,7.086167897796258e-05,-3.909382852899501e-22,3.729500352186019e-22,0.00047831633128225803,7.064025754468764e-19,1.31595654741114e-20,-0.0001594387722434476,-0.0001594387722434476,-3.1862268242627814e-19,1.2378645428323574e-34,-3.3881317890172014e-21,-1.9664269049777625e-20,3.987276837989199e-35,1.6940658945086007e-21,-6.0805877192124006e-21,-3.909382852899501e-22,5.3146257414482534e-05,-2.080561996756168e-20,0.00035430840216577053,1.2426722968650712e-18,5.004010051711361e-20,5.760996957588448e-20,-0.00042517005931586027,-6.136436789285222e-19,-8.054573269765115e-22,5.170713380185274e-22,-4.7056794474171555e-21,-7.427598234327979e-22,5.33039952711216e-22,-1.5070002914494406e-20,3.729500352186019e-22,-2.080561996756168e-20,7.086167897796258e-05,3.0,8.0,7.0,8.0,0.031983714550733566,-0.011067708022892475,-0.005249669309705496,-0.005859375,-0.005249669309705496,0.0011160714784637094,0.0007440476329065859,0.0008370535797439516,0.0007440476329065859,0.00024801588733680546,0.00037202381645329297,0.0003306878206785768,0.0003100198518950492,0.00037202381645329297,0.00024801588733680546,-0.011067708022892475,0.0222284235060215,0.0007440476329065859,0.0008370535797439516,0.0007440476329065859,-0.0066964286379516125,-0.0007440476329065859,-0.0008370535797439516,-0.0007440476329065859,8.235766900217107e-19,4.437646142515295e-19,4.5821814788982165e-19,1.0708961451519764e-18,5.154371259922585e-19,8.314850536656005e-19,-0.005249669309705496,0.0007440476329065859,0.0027399847749620676,0.00037202381645329297,0.0003306878206785768,5.053007306889418e-18,-0.00021258502965793014,-5.405973623620103e-20,1.3552527156068805e-20,-0.00024801588733680546,-0.00010629251482896507,-9.448223863728344e-05,-7.607590433407852e-20,1.8300078583028623e-20,2.531509847447108e-20,-0.005859375,0.0008370535797439516,0.00037202381645329297,0.0035652280785143375,0.00037202381645329297,5.806013393143897e-18,-3.845260552964988e-21,-0.00027901786961592734,2.7708026973423287e-20,-6.776263578034403e-21,-0.00012400794366840273,-1.6940658945086007e-21,-0.00037202381645329297,-0.00012400794366840273,3.100487162702702e-20,-0.005249669309705496,0.0007440476329065859,0.0003306878206785768,0.00037202381645329297,0.0027399847749620676,5.053007306889418e-18,-1.5165141811583467e-21,-4.70507642951943e-21,-0.00021258502965793014,-6.956332981984437e-22,-1.4840848035423075e-20,-9.448223863728344e-05,-1.3552527156068805e-20,-0.00010629251482896507,-0.00024801588733680546,0.0011160714784637094,-0.0066964286379516125,5.053007306889418e-18,5.806013393143897e-18,5.053007306889418e-18,0.0033482143189758062,-6.473603878767961e-19,-8.49660486470075e-19,-6.473603878767961e-19,-4.1302940027302046e-19,-2.4781765050356993e-19,-2.202823588753282e-19,-5.369382384495025e-19,-2.4781765050356993e-19,-4.1302940027302046e-19,0.0007440476329065859,-0.0007440476329065859,-0.00021258502965793014,-3.845260552964988e-21,-1.5165141811583467e-21,-6.473603878767961e-19,0.00021258502965793014,2.1977460346710756e-22,4.19482554502212e-22,6.026954830588167e-36,-0.0,-0.0,5.5776706915352e-22,4.7667426650390204e-35,1.4489096598615709e-22,0.0008370535797439516,-0.0008370535797439516,-5.405973623620103e-20,-0.00027901786961592734,-4.70507642951943e-21,-8.49660486470075e-19,2.1977460346710756e-22,0.00027901786961592734,2.203034810615167e-22,2.5640369983770065e-22,1.7247342619538577e-20,4.4739611995441887e-23,1.04812511832744e-35,3.3881317890172014e-21,-7.708203505162039e-22,0.0007440476329065859,-0.0007440476329065859,1.3552527156068805e-20,2.7708026973423287e-20,-0.00021258502965793014,-6.473603878767961e-19,4.19482554502212e-22,2.203034810615167e-22,0.00021258502965793014,4.8939633041494665e-22,3.6750975380449744e-23,-5.082197683525802e-21,2.937379747486889e-22,-8.561787052399098e-21,-1.0345395046268173e-21,0.00024801588733680546,8.235766900217107e-19,-0.00024801588733680546,-6.776263578034403e-21,-6.956332981984437e-22,-4.1302940027302046e-19,6.026954830588167e-36,2.5640369983770065e-22,4.8939633041494665e-22,3.543083948898129e-05,-0.0,0.0,7.74250948820829e-23,3.0844971765576824e-35,-5.574922173923665e-22,0.00037202381645329297,4.437646142515295e-19,-0.00010629251482896507,-0.00012400794366840273,-1.4840848035423075e-20,-2.4781765050356993e-19,-0.0,1.7247342619538577e-20,3.6750975380449744e-23,-0.0,3.543083948898129e-05,4.863017843315908e-21,2.4907712022788715e-20,-8.470329472543003e-22,4.2876136366136225e-23,0.0003306878206785768,4.5821814788982165e-19,-9.448223863728344e-05,-1.6940658945086007e-21,-9.448223863728344e-05,-2.202823588753282e-19,-0.0,4.4739611995441887e-23,-5.082197683525802e-21,0.0,4.863017843315908e-21,2.6994925065082498e-05,5.965281599392252e-23,-4.502565409563473e-21,-6.105029936961062e-21,0.0003100198518950492,1.0708961451519764e-18,-7.607590433407852e-20,-0.00037202381645329297,-1.3552527156068805e-20,-5.369382384495025e-19,5.5776706915352e-22,1.04812511832744e-35,2.937379747486889e-22,7.74250948820829e-23,2.4907712022788715e-20,5.965281599392252e-23,6.200397183420137e-05,3.3229753618557032e-21,8.934011057905858e-22,0.00037202381645329297,5.154371259922585e-19,1.8300078583028623e-20,-0.00012400794366840273,-0.00010629251482896507,-2.4781765050356993e-19,4.7667426650390204e-35,3.3881317890172014e-21,-8.561787052399098e-21,3.0844971765576824e-35,-8.470329472543003e-22,-4.502565409563473e-21,3.3229753618557032e-21,3.543083948898129e-05,-1.0340350577390985e-20,0.00024801588733680546,8.314850536656005e-19,2.531509847447108e-20,3.100487162702702e-20,-0.00024801588733680546,-4.1302940027302046e-19,1.4489096598615709e-22,-7.708203505162039e-22,-1.0345395046268173e-21,-5.574922173923665e-22,4.2876136366136225e-23,-6.105029936961062e-21,8.934011057905858e-22,-1.0340350577390985e-20,3.543083948898129e-05,3.0,8.0,8.0,3.0,0.06254822760820389,-0.02387152798473835,-0.011381172575056553,-0.011381172575056553,-0.02387152798473835,0.0026041667442768812,0.0017361111240461469,0.0017361111240461469,0.00390625,0.0005787037080153823,0.0007716049440205097,0.0017361111240461469,0.0005787037080153823,0.0017361111240461469,0.0026041667442768812,-0.02387152798473835,0.0499131940305233,0.0017361111240461469,0.0017361111240461469,0.00390625,-0.015625,-0.0017361111240461469,-0.0017361111240461469,-0.00390625,1.9347649062087217e-18,1.03984275098097e-18,2.310775776871492e-18,1.9331866455999705e-18,2.3129647035674605e-18,1.734723475976807e-17,-0.011381172575056553,0.0017361111240461469,0.006145282182842493,0.0007716049440205097,0.0017361111240461469,1.146386054060607e-17,-0.0004960317746736109,4.0657581468206416e-20,-5.0909767693090616e-33,-0.0005787037080153823,-0.00022045854711905122,-0.0004960317746736109,4.88402394956885e-20,-0.0,-1.2727441739601662e-32,-0.011381172575056553,0.0017361111240461469,0.0007716049440205097,0.006145282182842493,0.0017361111240461469,1.146386054060607e-17,2.293450336769901e-21,-0.0004960317746736109,-5.0909767693090616e-33,-0.0,-0.00022045854711905122,-2.986632213733313e-20,-0.0005787037080153823,-0.0004960317746736109,-1.2727441739601662e-32,-0.02387152798473835,0.00390625,0.0017361111240461469,0.0017361111240461469,0.0499131940305233,2.89120568300393e-17,-5.160338650189254e-33,-2.18876978206807e-21,-0.00390625,1.096348334272694e-20,-2.371692252312041e-20,-0.0017361111240461469,-0.0,-0.0017361111240461469,-0.015625,0.0026041667442768812,-0.015625,1.146386054060607e-17,1.146386054060607e-17,2.89120568300393e-17,0.0078125,-1.7622588710026254e-18,-1.7622588710026254e-18,-3.469446951953614e-18,-9.63735310386038e-19,-5.139921448597049e-19,-1.1564823517837303e-18,-9.63735310386038e-19,-1.1564823517837303e-18,-8.673617379884035e-18,0.0017361111240461469,-0.0017361111240461469,-0.0004960317746736109,2.293450336769901e-21,-5.160338650189254e-33,-1.7622588710026254e-18,0.0004960317746736109,-1.7863750907326488e-21,7.826001495748193e-34,1.640671128891727e-35,3.3881317890172014e-21,-0.0,-1.6331841089549907e-21,1.3278225770657687e-34,1.9565003280193003e-33,0.0017361111240461469,-0.0017361111240461469,4.0657581468206416e-20,-0.0004960317746736109,-2.18876978206807e-21,-1.7622588710026254e-18,-1.7863750907326488e-21,0.0004960317746736109,7.826001495748193e-34,-2.0841043734956195e-21,-6.776263578034403e-21,6.2536278045170635e-22,1.640671128891727e-35,-0.0,1.9565003280193003e-33,0.00390625,-0.00390625,-5.0909767693090616e-33,-5.0909767693090616e-33,-0.00390625,-3.469446951953614e-18,7.826001495748193e-34,7.826001495748193e-34,0.00390625,4.2798445249394045e-34,2.282583654798853e-34,5.135813338091789e-34,4.2798445249394045e-34,5.135813338091789e-34,3.851859888774472e-33,0.0005787037080153823,1.9347649062087217e-18,-0.0005787037080153823,-0.0,1.096348334272694e-20,-9.63735310386038e-19,1.640671128891727e-35,-2.0841043734956195e-21,4.2798445249394045e-34,8.26719551696442e-05,3.3881317890172014e-21,0.0,-2.0463357833246527e-21,-6.770375368888939e-36,1.069961039399355e-33,0.0007716049440205097,1.03984275098097e-18,-0.00022045854711905122,-0.00022045854711905122,-2.371692252312041e-20,-5.139921448597049e-19,3.3881317890172014e-21,-6.776263578034403e-21,2.282583654798853e-34,3.3881317890172014e-21,6.29881615168415e-05,6.776263578034403e-21,-9.269417448218339e-21,-0.0,5.706458907408392e-34,0.0017361111240461469,2.310775776871492e-18,-0.0004960317746736109,-2.986632213733313e-20,-0.0017361111240461469,-1.1564823517837303e-18,-0.0,6.2536278045170635e-22,5.135813338091789e-34,0.0,6.776263578034403e-21,0.0004960317746736109,7.295899105269907e-22,-0.0,1.2839532656463252e-33,0.0005787037080153823,1.9331866455999705e-18,4.88402394956885e-20,-0.0005787037080153823,-0.0,-9.63735310386038e-19,-1.6331841089549907e-21,1.640671128891727e-35,4.2798445249394045e-34,-2.0463357833246527e-21,-9.269417448218339e-21,7.295899105269907e-22,8.26719551696442e-05,1.0766904059144205e-35,1.069961039399355e-33,0.0017361111240461469,2.3129647035674605e-18,-0.0,-0.0004960317746736109,-0.0017361111240461469,-1.1564823517837303e-18,1.3278225770657687e-34,-0.0,5.135813338091789e-34,-6.770375368888939e-36,-0.0,-0.0,1.0766904059144205e-35,0.0004960317746736109,1.2839532656463252e-33,0.0026041667442768812,1.734723475976807e-17,-1.2727441739601662e-32,-1.2727441739601662e-32,-0.015625,-8.673617379884035e-18,1.9565003280193003e-33,1.9565003280193003e-33,3.851859888774472e-33,1.069961039399355e-33,5.706458907408392e-34,1.2839532656463252e-33,1.069961039399355e-33,1.2839532656463252e-33,0.0078125,3.0,8.0,8.0,4.0,0.05036168918013573,-0.01848958246409893,-0.008796296082437038,-0.008796296082437038,-0.015104166232049465,0.001953125,0.0013020833721384406,0.0013020833721384406,0.0023437500931322575,0.0004340277810115367,0.0005787037080153823,0.0010416667209938169,0.0004340277810115367,0.0010416667209938169,0.0013020833721384406,-0.01848958246409893,0.03802083432674408,0.0013020833721384406,0.0013020833721384406,0.0023437500931322575,-0.01171875,-0.0013020833721384406,-0.0013020833721384406,-0.0023437500931322575,1.4650408827934406e-18,8.056591307731996e-19,1.3996623883336275e-18,1.4635132869972083e-18,1.4000880761563626e-18,6.071532165918825e-18,-0.008796296082437038,0.0013020833721384406,0.004683366511017084,0.0005787037080153823,0.0010416667209938169,8.440943881282057e-18,-0.00037202381645329297,1.2518859967520094e-20,-2.998825862572808e-33,-0.0004340277810115367,-0.0001653439103392884,-0.00029761905898340046,3.76616786923814e-20,6.776263578034403e-21,-4.373287509622145e-33,-0.008796296082437038,0.0013020833721384406,0.0005787037080153823,0.004683366511017084,0.0010416667209938169,8.440943881282057e-18,-1.557263832513933e-21,-0.00037202381645329297,-2.998825862572808e-33,1.3552527156068805e-20,-0.0001653439103392884,-1.2207516939773377e-20,-0.0004340277810115367,-0.00029761905898340046,-4.373287509622145e-33,-0.015104166232049465,0.0023437500931322575,0.0010416667209938169,0.0010416667209938169,0.01918402686715126,1.6046192152785466e-17,1.230929165906651e-20,1.1883565062240195e-20,-0.0015625000232830644,2.822016809486725e-20,-5.929230630780102e-21,-0.0006944444612599909,2.710505431213761e-20,-0.0006944444612599909,-0.00390625,0.001953125,-0.01171875,8.440943881282057e-18,8.440943881282057e-18,1.6046192152785466e-17,0.005859375,-9.912706020142797e-19,-9.912706020142797e-19,-2.0816682538902298e-18,-7.228014310907402e-19,-3.854941086447787e-19,-6.938894007304805e-19,-7.228014310907402e-19,-6.938894007304805e-19,-3.0357660829594124e-18,0.0013020833721384406,-0.0013020833721384406,-0.00037202381645329297,-1.557263832513933e-21,1.230929165906651e-20,-9.912706020142797e-19,0.00037202381645329297,1.0479013189918721e-21,3.5217004894156947e-34,-6.776263578034403e-21,-3.3881317890172014e-21,-3.3881317890172014e-21,1.6590048264256462e-21,-1.2880864172714633e-22,5.135813338091789e-34,0.0013020833721384406,-0.0013020833721384406,1.2518859967520094e-20,-0.00037202381645329297,1.1883565062240195e-20,-9.912706020142797e-19,1.0479013189918721e-21,0.00037202381645329297,3.5217004894156947e-34,1.222551437849655e-21,-6.517846780897225e-21,-7.172495321946778e-24,-6.776263578034403e-21,-3.3881317890172014e-21,5.135813338091789e-34,0.0023437500931322575,-0.0023437500931322575,-2.998825862572808e-33,-2.998825862572808e-33,-0.0015625000232830644,-2.0816682538902298e-18,3.5217004894156947e-34,3.5217004894156947e-34,0.0015625000232830644,2.5679066690458946e-34,1.3695502158381858e-34,2.465190273714364e-34,2.5679066690458946e-34,2.465190273714364e-34,1.0785207504897528e-33,0.0004340277810115367,1.4650408827934406e-18,-0.0004340277810115367,1.3552527156068805e-20,2.822016809486725e-20,-7.228014310907402e-19,-6.776263578034403e-21,1.222551437849655e-21,2.5679066690458946e-34,6.200397183420137e-05,-6.776263578034403e-21,-6.776263578034403e-21,5.201246462402907e-22,-1.5027675288892888e-22,3.7448637297332385e-34,0.0005787037080153823,8.056591307731996e-19,-0.0001653439103392884,-0.0001653439103392884,-5.929230630780102e-21,-3.854941086447787e-19,-3.3881317890172014e-21,-6.517846780897225e-21,1.3695502158381858e-34,-6.776263578034403e-21,4.724111931864172e-05,3.3881317890172014e-21,-1.2356062906592702e-20,-1.6940658945086007e-21,1.997260640551811e-34,0.0010416667209938169,1.3996623883336275e-18,-0.00029761905898340046,-1.2207516939773377e-20,-0.0006944444612599909,-6.938894007304805e-19,-3.3881317890172014e-21,-7.172495321946778e-24,2.465190273714364e-34,-6.776263578034403e-21,3.3881317890172014e-21,0.00019841270113829523,-8.367910683030637e-24,2.797236146428352e-22,3.5950692448287563e-34,0.0004340277810115367,1.4635132869972083e-18,3.76616786923814e-20,-0.0004340277810115367,2.710505431213761e-20,-7.228014310907402e-19,1.6590048264256462e-21,-6.776263578034403e-21,2.5679066690458946e-34,5.201246462402907e-22,-1.2356062906592702e-20,-8.367910683030637e-24,6.200397183420137e-05,-5.545668434767684e-21,3.7448637297332385e-34,0.0010416667209938169,1.4000880761563626e-18,6.776263578034403e-21,-0.00029761905898340046,-0.0006944444612599909,-6.938894007304805e-19,-1.2880864172714633e-22,-3.3881317890172014e-21,2.465190273714364e-34,-1.5027675288892888e-22,-1.6940658945086007e-21,2.797236146428352e-22,-5.545668434767684e-21,0.00019841270113829523,3.5950692448287563e-34,0.0013020833721384406,6.071532165918825e-18,-4.373287509622145e-33,-4.373287509622145e-33,-0.00390625,-3.0357660829594124e-18,5.135813338091789e-34,5.135813338091789e-34,1.0785207504897528e-33,3.7448637297332385e-34,1.997260640551811e-34,3.5950692448287563e-34,3.7448637297332385e-34,3.5950692448287563e-34,0.0013020833721384406,3.0,8.0,8.0,5.0,0.04222883656620979,-0.015104166232049465,-0.007175926119089127,-0.007175926119089127,-0.010441468097269535,0.0015625000232830644,0.0010416667209938169,0.0010416667209938169,0.0015625000232830644,0.00034722223062999547,0.00046296295477077365,0.0006944444612599909,0.00034722223062999547,0.0006944444612599909,0.0007440476329065859,-0.015104166232049465,0.03072916716337204,0.0010416667209938169,0.0010416667209938169,0.0015625000232830644,-0.00937500037252903,-0.0010416667209938169,-0.0010416667209938169,-0.0015625000232830644,-5.76089007034367e-19,-2.7935210189956415e-19,-4.644018399565384e-19,-5.760550926292523e-19,-4.505837361250518e-19,-1.4869058513226313e-18,-0.007175926119089127,0.0010416667209938169,0.0037863757461309433,0.00046296295477077365,0.0006944444612599909,-3.0261288084377102e-18,-0.00029761905898340046,3.319220535408145e-20,-0.0,-0.00034722223062999547,-0.00013227513409219682,-0.00019841270113829523,4.893125521246347e-20,3.3881317890172014e-21,-4.799539760987554e-34,-0.007175926119089127,0.0010416667209938169,0.00046296295477077365,0.0037863757461309433,0.0006944444612599909,-3.0261288084377102e-18,5.342255109397448e-21,-0.00029761905898340046,-0.0,1.3552527156068805e-20,-0.00013227513409219682,-1.6940658945086007e-20,-0.00034722223062999547,-0.00019841270113829523,-4.799539760987554e-34,-0.010441468097269535,0.0015625000232830644,0.0006944444612599909,0.0006944444612599909,0.009685019962489605,-4.592886850385878e-18,1.507431526996445e-22,1.0049543277703177e-20,-0.0007812500116415322,4.091396868400664e-21,-8.893845946170154e-21,-0.00034722223062999547,-0.0,-0.00034722223062999547,-0.0014880952658131719,0.0015625000232830644,-0.00937500037252903,-3.0261288084377102e-18,-3.0261288084377102e-18,-4.592886850385878e-18,0.004687500186264515,-0.0,-9.589075651789877e-35,-0.0,2.8912058794593256e-19,1.541976460428509e-19,2.312964755266249e-19,2.8912058794593256e-19,2.312964755266249e-19,7.434529256613157e-19,0.0010416667209938169,-0.0010416667209938169,-0.00029761905898340046,5.342255109397448e-21,1.507431526996445e-22,-0.0,0.00029761905898340046,-5.270535460478707e-22,-0.0,-0.0,-0.0,-0.0,-6.245932056178962e-22,-4.306947039678779e-23,-0.0,0.0010416667209938169,-0.0010416667209938169,3.319220535408145e-20,-0.00029761905898340046,1.0049543277703177e-20,-9.589075651789877e-35,-5.270535460478707e-22,0.00029761905898340046,-0.0,-6.148957953079995e-22,-8.298051338520363e-21,5.168336447614535e-22,-0.0,-3.3881317890172014e-21,-0.0,0.0015625000232830644,-0.0015625000232830644,-0.0,-0.0,-0.0007812500116415322,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-5.76089007034367e-19,-0.00034722223062999547,1.3552527156068805e-20,4.091396868400664e-21,2.8912058794593256e-19,-0.0,-6.148957953079995e-22,-0.0,4.960317528457381e-05,-0.0,0.0,-8.846096864531173e-22,-5.024771651473363e-23,4.5855475003022723e-35,0.00046296295477077365,-2.7935210189956415e-19,-0.00013227513409219682,-0.00013227513409219682,-8.893845946170154e-21,1.541976460428509e-19,-0.0,-8.298051338520363e-21,-0.0,-0.0,3.779289545491338e-05,3.3881317890172014e-21,-1.2232813803115868e-20,-8.470329472543003e-22,2.4456254674213105e-35,0.0006944444612599909,-4.644018399565384e-19,-0.00019841270113829523,-1.6940658945086007e-20,-0.00034722223062999547,2.312964755266249e-19,-0.0,5.168336447614535e-22,-0.0,0.0,3.3881317890172014e-21,9.920635056914762e-05,6.02972610798578e-22,-0.0,3.668438057639003e-35,0.00034722223062999547,-5.760550926292523e-19,4.893125521246347e-20,-0.00034722223062999547,-0.0,2.8912058794593256e-19,-6.245932056178962e-22,-0.0,-0.0,-8.846096864531173e-22,-1.2232813803115868e-20,6.02972610798578e-22,4.960317528457381e-05,-2.5490897376755257e-21,4.5855475003022723e-35,0.0006944444612599909,-4.505837361250518e-19,3.3881317890172014e-21,-0.00019841270113829523,-0.00034722223062999547,2.312964755266249e-19,-4.306947039678779e-23,-3.3881317890172014e-21,-0.0,-5.024771651473363e-23,-8.470329472543003e-22,-0.0,-2.5490897376755257e-21,9.920635056914762e-05,3.668438057639003e-35,0.0007440476329065859,-1.4869058513226313e-18,-4.799539760987554e-34,-4.799539760987554e-34,-0.0014880952658131719,7.434529256613157e-19,-0.0,-0.0,-0.0,4.5855475003022723e-35,2.4456254674213105e-35,3.668438057639003e-35,4.5855475003022723e-35,3.668438057639003e-35,0.00037202381645329297,3.0,8.0,8.0,6.0,0.036389440298080444,-0.0127728171646595,-0.006062610074877739,-0.006062610074877739,-0.0076574902050197124,0.0013020833721384406,0.0008680555620230734,0.0008680555620230734,0.0011160714784637094,0.00028935185400769114,0.00038580247201025486,0.0004960317746736109,0.00028935185400769114,0.0004960317746736109,0.0004650297632906586,-0.0127728171646595,0.02579365111887455,0.0008680555620230734,0.0008680555620230734,0.0011160714784637094,-0.0078125,-0.0008680555620230734,-0.0008680555620230734,-0.0011160714784637094,9.688683796772358e-19,5.124847115909036e-19,6.727055120381506e-19,9.920164087340729e-19,6.786347426689307e-19,1.7037462858197322e-18,-0.006062610074877739,0.0008680555620230734,0.003178933635354042,0.00038580247201025486,0.0004960317746736109,5.9797477915596346e-18,-0.00024801588733680546,2.2712521695502163e-20,-1.21396185243997e-33,-0.00028935185400769114,-0.00011022927355952561,-0.00014172335795592517,2.2449231075878815e-20,-3.602931207051616e-20,-1.47510498251122e-19,-0.006062610074877739,0.0008680555620230734,0.00038580247201025486,0.003178933635354042,0.0004960317746736109,5.9797477915596346e-18,-7.276623131278651e-22,-0.00024801588733680546,-1.21396185243997e-33,-0.0,-0.00011022927355952561,-5.1907279804193074e-20,-0.00028935185400769114,-0.00014172335795592517,-1.47510498251122e-19,-0.0076574902050197124,0.0011160714784637094,0.0004960317746736109,0.0004960317746736109,0.0056206597946584225,7.365346868708942e-18,1.1858461261560205e-20,1.7787691892340307e-20,-0.00044642857392318547,-1.3260664877982566e-20,-4.019508087703844e-21,-0.00019841270113829523,-0.0,-0.00019841270113829523,-0.0006975446594879031,0.0013020833721384406,-0.0078125,5.9797477915596346e-18,5.9797477915596346e-18,7.365346868708942e-18,0.00390625,-8.811294355013127e-19,-8.811294355013127e-19,-7.930164505921508e-19,-4.81867655193019e-19,-2.5699607242985247e-19,-3.304235253882952e-19,-4.81867655193019e-19,-3.304235253882952e-19,-8.518731429098661e-19,0.0008680555620230734,-0.0008680555620230734,-0.00024801588733680546,-7.276623131278651e-22,1.1858461261560205e-20,-8.811294355013127e-19,0.00024801588733680546,-1.2571008696821448e-21,1.7888002631691618e-34,8.203355644458635e-36,3.3881317890172014e-21,-3.3881317890172014e-21,-1.304073358780702e-21,7.389334846570854e-35,1.9144463747701598e-34,0.0008680555620230734,-0.0008680555620230734,2.2712521695502163e-20,-0.00024801588733680546,1.7787691892340307e-20,-8.811294355013127e-19,-1.2571008696821448e-21,0.00024801588733680546,1.7888002631691618e-34,-1.4666176812958356e-21,-2.9574370598057745e-21,7.297468929904761e-35,-6.776263578034403e-21,-5.082197683525802e-21,1.8843537193891093e-34,0.0011160714784637094,-0.0011160714784637094,-1.21396185243997e-33,-1.21396185243997e-33,-0.00044642857392318547,-7.930164505921508e-19,1.7888002631691618e-34,1.7888002631691618e-34,0.00044642857392318547,9.782501869685242e-35,5.217334100910055e-35,6.708000986884357e-35,9.782501869685242e-35,6.708000986884357e-35,1.7294064595895724e-34,0.00028935185400769114,9.688683796772358e-19,-0.00028935185400769114,-0.0,-1.3260664877982566e-20,-4.81867655193019e-19,8.203355644458635e-36,-1.4666176812958356e-21,9.782501869685242e-35,4.13359775848221e-05,1.6940658945086007e-21,3.3881317890172014e-21,-8.825742486128044e-22,4.0625084764418256e-35,1.0833355937178202e-34,0.00038580247201025486,5.124847115909036e-19,-0.00011022927355952561,-0.00011022927355952561,-4.019508087703844e-21,-2.5699607242985247e-19,3.3881317890172014e-21,-2.9574370598057745e-21,5.217334100910055e-35,1.6940658945086007e-21,3.149408075842075e-05,2.8424967190101584e-21,-4.132231237106584e-21,-1.6940658945086007e-21,5.842070892258085e-35,0.0004960317746736109,6.727055120381506e-19,-0.00014172335795592517,-5.1907279804193074e-20,-0.00019841270113829523,-3.304235253882952e-19,-3.3881317890172014e-21,7.297468929904761e-35,6.708000986884357e-35,3.3881317890172014e-21,2.8424967190101584e-21,5.668934318237007e-05,3.912045199536573e-35,1.6783417080518505e-20,5.900420188538822e-20,0.00028935185400769114,9.920164087340729e-19,2.2449231075878815e-20,-0.00028935185400769114,-0.0,-4.81867655193019e-19,-1.304073358780702e-21,-6.776263578034403e-21,9.782501869685242e-35,-8.825742486128044e-22,-4.132231237106584e-21,3.912045199536573e-35,4.13359775848221e-05,-1.9337921660421663e-21,1.0601834059589098e-34,0.0004960317746736109,6.786347426689307e-19,-3.602931207051616e-20,-0.00014172335795592517,-0.00019841270113829523,-3.304235253882952e-19,7.389334846570854e-35,-5.082197683525802e-21,6.708000986884357e-35,4.0625084764418256e-35,-1.6940658945086007e-21,1.6783417080518505e-20,-1.9337921660421663e-21,5.668934318237007e-05,5.900420188538822e-20,0.0004650297632906586,1.7037462858197322e-18,-1.47510498251122e-19,-1.47510498251122e-19,-0.0006975446594879031,-8.518731429098661e-19,1.9144463747701598e-34,1.8843537193891093e-34,1.7294064595895724e-34,1.0833355937178202e-34,5.842070892258085e-35,5.900420188538822e-20,1.0601834059589098e-34,5.900420188538822e-20,0.00013950893480796367,3.0,8.0,8.0,7.0,0.031983714550733566,-0.011067708022892475,-0.005249669309705496,-0.005249669309705496,-0.005859375,0.0011160714784637094,0.0007440476329065859,0.0007440476329065859,0.0008370535797439516,0.00024801588733680546,0.0003306878206785768,0.00037202381645329297,0.00024801588733680546,0.00037202381645329297,0.0003100198518950492,-0.011067708022892475,0.0222284235060215,0.0007440476329065859,0.0007440476329065859,0.0008370535797439516,-0.0066964286379516125,-0.0007440476329065859,-0.0007440476329065859,-0.0008370535797439516,8.120581999919098e-19,4.523918495465161e-19,4.2937182668947163e-19,8.266030853891008e-19,4.389912651292156e-19,1.0735568749898298e-18,-0.005249669309705496,0.0007440476329065859,0.0027399847749620676,0.0003306878206785768,0.00037202381645329297,5.053007306889418e-18,-0.00021258502965793014,7.227533415241127e-21,-6.098637220230962e-20,-0.00024801588733680546,-9.448223863728344e-05,-0.00010629251482896507,1.520838603044798e-20,-2.3690247563952708e-20,-7.193264711867991e-20,-0.005249669309705496,0.0007440476329065859,0.0003306878206785768,0.0027399847749620676,0.00037202381645329297,5.053007306889418e-18,-3.411571131052499e-21,-0.00021258502965793014,-5.733536499956249e-20,-0.0,-9.448223863728344e-05,-2.879912020664621e-20,-0.00024801588733680546,-0.00010629251482896507,-8.409216981146674e-20,-0.005859375,0.0008370535797439516,0.00037202381645329297,0.00037202381645329297,0.0035652280785143375,5.806013393143897e-18,-8.238346508193793e-21,-1.4620832330819783e-21,-0.00027901786961592734,-2.4329090298578635e-21,-7.04201473686267e-21,-0.00012400794366840273,-0.0,-0.00012400794366840273,-0.00037202381645329297,0.0011160714784637094,-0.0066964286379516125,5.053007306889418e-18,5.053007306889418e-18,5.806013393143897e-18,0.0033482143189758062,-6.473603878767961e-19,-6.473603878767961e-19,-8.49660486470075e-19,-4.1302940027302046e-19,-2.202823588753282e-19,-2.4781765050356993e-19,-4.1302940027302046e-19,-2.4781765050356993e-19,-5.369382384495025e-19,0.0007440476329065859,-0.0007440476329065859,-0.00021258502965793014,-3.411571131052499e-21,-8.238346508193793e-21,-6.473603878767961e-19,0.00021258502965793014,5.277879313744207e-22,-3.7155269749819134e-24,3.3881317890172014e-21,-0.0,1.6940658945086007e-21,3.8087701446524197e-22,4.843817327105167e-35,3.5582026776052593e-22,0.0007440476329065859,-0.0007440476329065859,7.227533415241127e-21,-0.00021258502965793014,-1.4620832330819783e-21,-6.473603878767961e-19,5.277879313744207e-22,0.00021258502965793014,-5.363829559009254e-22,6.157525613599419e-22,-3.3881317890172014e-21,-1.8632875648658574e-22,6.026954830588167e-36,-1.6940658945086007e-21,1.31997649170737e-21,0.0008370535797439516,-0.0008370535797439516,-6.098637220230962e-20,-5.733536499956249e-20,-0.00027901786961592734,-8.49660486470075e-19,-3.7155269749819134e-24,-5.363829559009254e-22,0.00027901786961592734,-4.33478160228905e-24,1.0438861463574856e-23,2.0328790734103208e-20,-6.2578010680323e-22,2.0857754964372397e-20,-1.848579840200525e-21,0.00024801588733680546,8.120581999919098e-19,-0.00024801588733680546,-0.0,-2.4329090298578635e-21,-4.1302940027302046e-19,3.3881317890172014e-21,6.157525613599419e-22,-4.33478160228905e-24,3.543083948898129e-05,-0.0,0.0,1.6963354410220343e-22,3.0844971765576824e-35,-1.3958964652258401e-21,0.0003306878206785768,4.523918495465161e-19,-9.448223863728344e-05,-9.448223863728344e-05,-7.04201473686267e-21,-2.202823588753282e-19,-0.0,-3.3881317890172014e-21,1.0438861463574856e-23,-0.0,2.6994925065082498e-05,1.98317319263477e-21,-4.6347087241091695e-21,-0.0,1.3918481951433142e-23,0.00037202381645329297,4.2937182668947163e-19,-0.00010629251482896507,-2.879912020664621e-20,-0.00012400794366840273,-2.4781765050356993e-19,1.6940658945086007e-21,-1.8632875648658574e-22,2.0328790734103208e-20,0.0,1.98317319263477e-21,3.543083948898129e-05,-2.1738353450894646e-22,7.896749187984236e-21,2.736568082857717e-20,0.00024801588733680546,8.266030853891008e-19,1.520838603044798e-20,-0.00024801588733680546,-0.0,-4.1302940027302046e-19,3.8087701446524197e-22,6.026954830588167e-36,-6.2578010680323e-22,1.6963354410220343e-22,-4.6347087241091695e-21,-2.1738353450894646e-22,3.543083948898129e-05,-1.4703213138260886e-21,4.573074882744733e-22,0.00037202381645329297,4.389912651292156e-19,-2.3690247563952708e-20,-0.00010629251482896507,-0.00012400794366840273,-2.4781765050356993e-19,4.843817327105167e-35,-1.6940658945086007e-21,2.0857754964372397e-20,3.0844971765576824e-35,-0.0,7.896749187984236e-21,-1.4703213138260886e-21,3.543083948898129e-05,2.6420336173051235e-20,0.0003100198518950492,1.0735568749898298e-18,-7.193264711867991e-20,-8.409216981146674e-20,-0.00037202381645329297,-5.369382384495025e-19,3.5582026776052593e-22,1.31997649170737e-21,-1.848579840200525e-21,-1.3958964652258401e-21,1.3918481951433142e-23,2.736568082857717e-20,4.573074882744733e-22,2.6420336173051235e-20,6.200397183420137e-05,3.0,8.0,8.0,8.0,0.0285373255610466,-0.009765625,-0.004629629664123058,-0.004629629664123058,-0.004629629664123058,0.0009765625,0.0006510416860692203,0.0006510416860692203,0.0006510416860692203,0.00021701389050576836,0.00028935185400769114,0.00028935185400769114,0.00021701389050576836,0.00028935185400769114,0.00021701389050576836,-0.009765625,0.01953125,0.0006510416860692203,0.0006510416860692203,0.0006510416860692203,-0.005859375,-0.0006510416860692203,-0.0006510416860692203,-0.0006510416860692203,7.452699312743649e-19,4.065460620294064e-19,4.0300275632735308e-19,7.349628472516479e-19,4.06218059067135e-19,7.321451598925626e-19,-0.004629629664123058,0.0006510416860692203,0.002407820662483573,0.00028935185400769114,0.00028935185400769114,4.374669573759182e-18,-0.00018601190822664648,1.861354287668214e-20,1.6940658945086007e-20,-0.00021701389050576836,-8.26719551696442e-05,-8.26719551696442e-05,3.157121569681308e-20,1.4338067625832884e-20,3.16438718813985e-20,-0.004629629664123058,0.0006510416860692203,0.00028935185400769114,0.002407820662483573,0.00028935185400769114,4.374669573759182e-18,-9.631761936452954e-22,-0.00018601190822664648,1.5734713622514655e-20,6.776263578034403e-21,-8.26719551696442e-05,3.3881317890172014e-21,-0.00021701389050576836,-8.26719551696442e-05,2.3460672632226565e-20,-0.004629629664123058,0.0006510416860692203,0.00028935185400769114,0.00028935185400769114,0.002407820662483573,4.374669573759182e-18,2.427690279518607e-22,7.01903220208948e-21,-0.00018601190822664648,6.6820485948375365e-21,1.3444967877529867e-22,-8.26719551696442e-05,1.3552527156068805e-20,-8.26719551696442e-05,-0.00021701389050576836,0.0009765625,-0.005859375,4.374669573759182e-18,4.374669573759182e-18,4.374669573759182e-18,0.0029296875,-4.956353010071399e-19,-4.956353010071399e-19,-4.956353010071399e-19,-3.614007155453701e-19,-1.9274705432238935e-19,-1.9274705432238935e-19,-3.614007155453701e-19,-1.9274705432238935e-19,-3.614007155453701e-19,0.0006510416860692203,-0.0006510416860692203,-0.00018601190822664648,-9.631761936452954e-22,2.427690279518607e-22,-4.956353010071399e-19,0.00018601190822664648,2.7599282005389365e-22,2.9742514217412814e-23,-6.776263578034403e-21,-0.0,-0.0,9.076006904369854e-23,3.2909809670770863e-35,-3.599208803418351e-23,0.0006510416860692203,-0.0006510416860692203,1.861354287668214e-20,-0.00018601190822664648,7.01903220208948e-21,-4.956353010071399e-19,2.7599282005389365e-22,0.00018601190822664648,-1.5198938884682542e-22,3.219916402252419e-22,-6.173290916748727e-21,7.972747694183543e-23,-3.3881317890172014e-21,-1.6940658945086007e-21,-1.607171944408969e-22,0.0006510416860692203,-0.0006510416860692203,1.6940658945086007e-20,1.5734713622514655e-20,-0.00018601190822664648,-4.956353010071399e-19,2.9742514217412814e-23,-1.5198938884682542e-22,0.00018601190822664648,3.46996025498513e-23,1.584471051911605e-22,-5.082197683525802e-21,-1.7732096206914598e-22,-4.227061759001463e-21,-2.4729267192676006e-21,0.00021701389050576836,7.452699312743649e-19,-0.00021701389050576836,6.776263578034403e-21,6.6820485948375365e-21,-3.614007155453701e-19,-6.776263578034403e-21,3.219916402252419e-22,3.46996025498513e-23,3.100198591710068e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-2.6503674114894974e-22,2.4262203400972014e-35,-6.548351287417427e-22,0.00028935185400769114,4.065460620294064e-19,-8.26719551696442e-05,-8.26719551696442e-05,1.3444967877529867e-22,-1.9274705432238935e-19,-0.0,-6.173290916748727e-21,1.584471051911605e-22,-1.6940658945086007e-21,2.362055965932086e-05,1.2104907769725589e-21,-8.565948804856006e-21,-1.6940658945086007e-21,1.8485496236724115e-22,0.00028935185400769114,4.0300275632735308e-19,-8.26719551696442e-05,3.3881317890172014e-21,-8.26719551696442e-05,-1.9274705432238935e-19,-0.0,7.972747694183543e-23,-5.082197683525802e-21,-1.6940658945086007e-21,1.2104907769725589e-21,2.362055965932086e-05,9.301539081728921e-23,-2.4025246826307448e-21,-7.799095831469663e-21,0.00021701389050576836,7.349628472516479e-19,3.157121569681308e-20,-0.00021701389050576836,1.3552527156068805e-20,-3.614007155453701e-19,9.076006904369854e-23,-3.3881317890172014e-21,-1.7732096206914598e-22,-2.6503674114894974e-22,-8.565948804856006e-21,9.301539081728921e-23,3.100198591710068e-05,-4.075347221915791e-21,-1.8743814735481615e-23,0.00028935185400769114,4.06218059067135e-19,1.4338067625832884e-20,-8.26719551696442e-05,-8.26719551696442e-05,-1.9274705432238935e-19,3.2909809670770863e-35,-1.6940658945086007e-21,-4.227061759001463e-21,2.4262203400972014e-35,-1.6940658945086007e-21,-2.4025246826307448e-21,-4.075347221915791e-21,2.362055965932086e-05,-6.801437656754718e-21,0.00021701389050576836,7.321451598925626e-19,3.16438718813985e-20,2.3460672632226565e-20,-0.00021701389050576836,-3.614007155453701e-19,-3.599208803418351e-23,-1.607171944408969e-22,-2.4729267192676006e-21,-6.548351287417427e-22,1.8485496236724115e-22,-7.799095831469663e-21,-1.8743814735481615e-23,-6.801437656754718e-21,3.100198591710068e-05,4.0,3.0,3.0,3.0,0.2282407432794571,-0.08888889104127884,-0.10833333432674408,-0.10833333432674408,-0.10833333432674408,0.009259259328246117,0.01666666753590107,0.01666666753590107,0.01666666753590107,0.013888888992369175,0.02083333395421505,0.02083333395421505,0.013888888992369175,0.02083333395421505,0.013888888992369175,-0.08888889104127884,0.1240740716457367,0.01666666753590107,0.01666666753590107,0.01666666753590107,-0.02777777798473835,-0.011111111380159855,-0.011111111380159855,-0.011111111380159855,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.10833333432674408,0.01666666753590107,0.24722221493721008,0.02083333395421505,0.02083333395421505,-0.0,-0.01666666753590107,-0.0,-0.0,-0.0833333358168602,-0.02083333395421505,-0.02083333395421505,9.251858317961474e-17,2.7755575615628914e-17,9.251858317961474e-17,-0.10833333432674408,0.01666666753590107,0.02083333395421505,0.24722221493721008,0.02083333395421505,-0.0,-0.0,-0.01666666753590107,-0.0,1.3106799890377871e-16,-0.02083333395421505,-7.760784150809611e-32,-0.0833333358168602,-0.02083333395421505,9.251858317961474e-17,-0.10833333432674408,0.01666666753590107,0.02083333395421505,0.02083333395421505,0.24722221493721008,-0.0,-0.0,-0.0,-0.01666666753590107,1.3106799890377871e-16,-7.760784150809611e-32,-0.02083333395421505,1.1719021109596426e-16,-0.02083333395421505,-0.0833333358168602,0.009259259328246117,-0.02777777798473835,-0.0,-0.0,-0.0,0.009259259328246117,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.01666666753590107,-0.011111111380159855,-0.01666666753590107,-0.0,-0.0,-0.0,0.011111111380159855,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.01666666753590107,-0.011111111380159855,-0.0,-0.01666666753590107,-0.0,-0.0,-0.0,0.011111111380159855,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.01666666753590107,-0.011111111380159855,-0.0,-0.0,-0.01666666753590107,-0.0,-0.0,-0.0,0.011111111380159855,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.013888888992369175,-0.0,-0.0833333358168602,1.3106799890377871e-16,1.3106799890377871e-16,-0.0,-0.0,-0.0,-0.0,0.0416666679084301,-2.4671622953265837e-17,-2.4671622953265837e-17,-4.625929158980737e-17,-1.3877787807814457e-17,-4.625929158980737e-17,0.02083333395421505,-0.0,-0.02083333395421505,-0.02083333395421505,-7.760784150809611e-32,0.0,-0.0,-0.0,-0.0,-2.4671622953265837e-17,0.02083333395421505,1.4608535390712659e-32,2.739100495961219e-32,8.217301340946863e-33,2.739100495961219e-32,0.02083333395421505,-0.0,-0.02083333395421505,-7.760784150809611e-32,-0.02083333395421505,0.0,-0.0,-0.0,-0.0,-2.4671622953265837e-17,1.4608535390712659e-32,0.02083333395421505,2.739100495961219e-32,8.217301340946863e-33,2.739100495961219e-32,0.013888888992369175,-0.0,9.251858317961474e-17,-0.0833333358168602,1.1719021109596426e-16,-0.0,-0.0,-0.0,-0.0,-4.625929158980737e-17,2.739100495961219e-32,2.739100495961219e-32,0.0416666679084301,-2.4671622953265837e-17,-4.625929158980737e-17,0.02083333395421505,-0.0,2.7755575615628914e-17,-0.02083333395421505,-0.02083333395421505,-0.0,-0.0,-0.0,-0.0,-1.3877787807814457e-17,8.217301340946863e-33,8.217301340946863e-33,-2.4671622953265837e-17,0.02083333395421505,4.2798444514710075e-32,0.013888888992369175,-0.0,9.251858317961474e-17,9.251858317961474e-17,-0.0833333358168602,-0.0,-0.0,-0.0,-0.0,-4.625929158980737e-17,2.739100495961219e-32,2.739100495961219e-32,-4.625929158980737e-17,4.2798444514710075e-32,0.0416666679084301,4.0,3.0,3.0,4.0,0.1867361068725586,-0.06916666775941849,-0.08437500149011612,-0.08437500149011612,-0.06916666775941849,0.0069444444961845875,0.012500000186264515,0.012500000186264515,0.009999999776482582,0.010416666977107525,0.015625,0.012500000186264515,0.010416666977107525,0.012500000186264515,0.0069444444961845875,-0.06916666775941849,0.094722218811512,0.012500000186264515,0.012500000186264515,0.009999999776482582,-0.02083333395421505,-0.008333333767950535,-0.008333333767950535,-0.006666666828095913,2.311115933264683e-33,-0.0,-1.6263032587282567e-19,2.5023381910877524e-33,4.321438657859282e-33,-8.175769422437105e-19,-0.08437500149011612,0.012500000186264515,0.18854166567325592,0.015625,0.012500000186264515,8.673617379884035e-19,-0.012500000186264515,1.699320947090756e-19,-2.6684649459330338e-20,-0.0625,-0.015625,-0.012500000186264515,6.938893903907228e-17,1.6653346031121838e-17,3.18056603442029e-17,-0.08437500149011612,0.012500000186264515,0.015625,0.18854166567325592,0.012500000186264515,7.5291768132651225e-19,1.699320947090756e-19,-0.012500000186264515,1.3594567318232106e-19,9.575673719740873e-17,-0.015625,-3.367102181542684e-32,-0.0625,-0.012500000186264515,3.2381503781992916e-17,-0.06916666775941849,0.009999999776482582,0.012500000186264515,0.012500000186264515,0.094722218811512,4.336808689942018e-19,1.3594567318232106e-19,1.3594567318232106e-19,-0.006666666828095913,7.170190146789306e-17,-3.1842040767623674e-32,-0.008333333767950535,6.337523010669337e-17,-0.008333333767950535,-0.02083333395421505,0.0069444444961845875,-0.02083333395421505,8.673617379884035e-19,7.5291768132651225e-19,4.336808689942018e-19,0.0069444444961845875,-4.336808689942018e-19,-4.336808689942018e-19,-4.336808689942018e-19,0.0,-0.0,-7.8609383874558e-36,0.0,0.0,6.637972550547461e-20,0.012500000186264515,-0.008333333767950535,-0.012500000186264515,1.699320947090756e-19,1.3594567318232106e-19,-4.336808689942018e-19,0.008333333767950535,-1.1328805883115137e-19,-9.063045094233022e-20,0.0,-0.0,-2.21088898873427e-36,0.0,0.0,6.768027644652197e-37,0.012500000186264515,-0.008333333767950535,1.699320947090756e-19,-0.012500000186264515,1.3594567318232106e-19,-4.336808689942018e-19,-1.1328805883115137e-19,0.008333333767950535,-9.063045094233022e-20,0.0,-0.0,-2.21088898873427e-36,0.0,0.0,6.768027644652197e-37,0.009999999776482582,-0.006666666828095913,-2.6684649459330338e-20,1.3594567318232106e-19,-0.006666666828095913,-4.336808689942018e-19,-9.063045094233022e-20,-9.063045094233022e-20,0.004444444552063942,-1.5407439555097887e-33,0.0,1.0842021724855044e-19,-1.6682253995015042e-33,-2.880959044015857e-33,4.0049099654794166e-19,0.010416666977107525,2.311115933264683e-33,-0.0625,9.575673719740873e-17,7.170190146789306e-17,0.0,0.0,0.0,-1.5407439555097887e-33,0.03125,-1.3877787807814457e-17,-1.4802974433703992e-17,-3.469446951953614e-17,-8.326673015560919e-18,-1.6190751890996458e-17,0.015625,-0.0,-0.015625,-0.015625,-3.1842040767623674e-32,-0.0,-0.0,-0.0,0.0,-1.3877787807814457e-17,0.015625,6.573841219694284e-33,1.5407439555097887e-32,3.697785640160287e-33,7.190138214151024e-33,0.012500000186264515,-1.6263032587282567e-19,-0.012500000186264515,-3.367102181542684e-32,-0.008333333767950535,-7.8609383874558e-36,-2.21088898873427e-36,-2.21088898873427e-36,1.0842021724855044e-19,-1.4802974433703992e-17,6.573841219694284e-33,0.008333333767950535,1.5214846560659163e-32,-2.2194639244280155e-33,3.838960732495087e-19,0.010416666977107525,2.5023381910877524e-33,6.938893903907228e-17,-0.0625,6.337523010669337e-17,0.0,0.0,0.0,-1.6682253995015042e-33,-3.469446951953614e-17,1.5407439555097887e-32,1.5214846560659163e-32,0.03125,-1.4802974433703992e-17,-1.6190751890996458e-17,0.012500000186264515,4.321438657859282e-33,1.6653346031121838e-17,-0.012500000186264515,-0.008333333767950535,0.0,0.0,0.0,-2.880959044015857e-33,-8.326673015560919e-18,3.697785640160287e-33,-2.2194639244280155e-33,-1.4802974433703992e-17,0.008333333767950535,2.980567129226676e-33,0.0069444444961845875,-8.175769422437105e-19,3.18056603442029e-17,3.2381503781992916e-17,-0.02083333395421505,6.637972550547461e-20,6.768027644652197e-37,6.768027644652197e-37,4.0049099654794166e-19,-1.6190751890996458e-17,7.190138214151024e-33,3.838960732495087e-19,-1.6190751890996458e-17,2.980567129226676e-33,0.0069444444961845875,4.0,3.0,3.0,5.0,0.1582142859697342,-0.05666666850447655,-0.06916666775941849,-0.06916666775941849,-0.04809523746371269,0.0055555556900799274,0.009999999776482582,0.009999999776482582,0.006666666828095913,0.008333333767950535,0.012500000186264515,0.008333333767950535,0.008333333767950535,0.008333333767950535,0.003968254197388887,-0.05666666850447655,0.07666666805744171,0.009999999776482582,0.009999999776482582,0.006666666828095913,-0.01666666753590107,-0.006666666828095913,-0.006666666828095913,-0.004444444552063942,-7.703719777548943e-34,0.0,0.0,-1.2638769241602344e-33,2.9701087192532117e-34,-6.505213034913027e-19,-0.06916666775941849,0.009999999776482582,0.1525000035762787,0.012500000186264515,0.008333333767950535,-0.0,-0.009999999776482582,-0.0,-7.703719777548943e-34,-0.05000000074505806,-0.012500000186264515,-0.008333333767950535,-2.7755575615628914e-17,-5.551115205843844e-18,-7.930164816114238e-18,-0.06916666775941849,0.009999999776482582,0.012500000186264515,0.1525000035762787,0.008333333767950535,-0.0,-0.0,-0.009999999776482582,-9.668660522349132e-34,-3.3306692062243676e-17,-0.012500000186264515,-8.616830932298234e-34,-0.05000000074505806,-0.008333333767950535,-7.930164816114238e-18,-0.04809523746371269,0.006666666828095913,0.008333333767950535,0.008333333767950535,0.047857142984867096,0.0,-0.0,-0.0,-0.0033333334140479565,-1.8635886201174632e-17,-0.0,-0.004166666883975267,-1.5860329632228476e-17,-0.004166666883975267,-0.007936508394777775,0.0055555556900799274,-0.01666666753590107,-0.0,-0.0,0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.006666666828095913,-0.009999999776482582,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.006666666828095913,-0.0,-0.009999999776482582,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.004444444552063942,-7.703719777548943e-34,-9.668660522349132e-34,-0.0033333334140479565,-0.0,-0.0,-0.0,0.002222222276031971,3.851859888774472e-34,-0.0,-0.0,6.319384620801172e-34,-1.4850543596266059e-34,3.2526065174565133e-19,0.008333333767950535,-7.703719777548943e-34,-0.05000000074505806,-3.3306692062243676e-17,-1.8635886201174632e-17,-0.0,-0.0,-0.0,3.851859888774472e-34,0.02500000037252903,-0.0,-0.0,1.3877787807814457e-17,2.775557602921922e-18,3.965082408057119e-18,0.012500000186264515,0.0,-0.012500000186264515,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,0.0,-0.008333333767950535,-8.616830932298234e-34,-0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,4.308415466149117e-34,-0.0,-0.0,0.008333333767950535,-1.2638769241602344e-33,-2.7755575615628914e-17,-0.05000000074505806,-1.5860329632228476e-17,-0.0,-0.0,-0.0,6.319384620801172e-34,1.3877787807814457e-17,-0.0,4.308415466149117e-34,0.02500000037252903,1.5407439555097887e-33,3.965082408057119e-18,0.008333333767950535,2.9701087192532117e-34,-5.551115205843844e-18,-0.008333333767950535,-0.004166666883975267,-0.0,-0.0,-0.0,-1.4850543596266059e-34,2.775557602921922e-18,-0.0,-0.0,1.5407439555097887e-33,0.004166666883975267,8.662817671793719e-35,0.003968254197388887,-6.505213034913027e-19,-7.930164816114238e-18,-7.930164816114238e-18,-0.007936508394777775,-0.0,-0.0,-0.0,3.2526065174565133e-19,3.965082408057119e-18,-0.0,-0.0,3.965082408057119e-18,8.662817671793719e-35,0.0019841270986944437,4.0,3.0,3.0,6.0,0.1373346596956253,-0.04801587387919426,-0.05863095074892044,-0.05863095074892044,-0.03541666641831398,0.004629629664123058,0.008333333767950535,0.008333333767950535,0.004761904943734407,0.0069444444961845875,0.010416666977107525,0.0059523810632526875,0.0069444444961845875,0.0059523810632526875,0.0024801588151603937,-0.04801587387919426,0.06441798806190491,0.008333333767950535,0.008333333767950535,0.004761904943734407,-0.013888888992369175,-0.0055555556900799274,-0.0055555556900799274,-0.0031746032182127237,3.851859888774472e-33,-0.0,1.2705641094839709e-33,3.556059592359505e-33,2.0449535228537927e-33,-6.776263578034403e-19,-0.05863095074892044,0.008333333767950535,0.12807539105415344,0.010416666977107525,0.0059523810632526875,-0.0,-0.008333333767950535,-0.0,4.352051836832556e-33,-0.0416666679084301,-0.010416666977107525,-0.0059523810632526875,4.625929158980737e-17,7.930164816114238e-18,9.086646857705238e-18,-0.05863095074892044,0.008333333767950535,0.010416666977107525,0.12807539105415344,0.0059523810632526875,-0.0,-0.0,-0.008333333767950535,4.889801196741397e-33,6.85078063982461e-17,-0.010416666977107525,-1.3840374811705249e-32,-0.0416666679084301,-0.0059523810632526875,9.086646857705238e-18,-0.03541666641831398,0.004761904943734407,0.0059523810632526875,0.0059523810632526875,0.027807539328932762,-0.0,-0.0,-0.0,-0.0019047618843615055,3.232092769137443e-17,-1.9137832673866015e-32,-0.0023809524718672037,2.8355844042546395e-17,-0.0023809524718672037,-0.0037202381063252687,0.004629629664123058,-0.013888888992369175,-0.0,-0.0,-0.0,0.004629629664123058,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0055555556900799274,-0.008333333767950535,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0055555556900799274,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.0031746032182127237,4.352051836832556e-33,4.889801196741397e-33,-0.0019047618843615055,-0.0,-0.0,-0.0,0.0012698412174358964,-1.5407439555097887e-33,0.0,-5.082256254264891e-34,-1.422423836943802e-33,-8.179814275086163e-34,2.710505431213761e-19,0.0069444444961845875,3.851859888774472e-33,-0.0416666679084301,6.85078063982461e-17,3.232092769137443e-17,-0.0,-0.0,-0.0,-1.5407439555097887e-33,0.02083333395421505,-1.2335811476632919e-17,-5.6392281390542176e-18,-2.3129645794903686e-17,-3.965082408057119e-18,-4.543323428852619e-18,0.010416666977107525,-0.0,-0.010416666977107525,-0.010416666977107525,-1.9137832673866015e-32,-0.0,-0.0,-0.0,0.0,-1.2335811476632919e-17,0.010416666977107525,3.3390938245824354e-33,1.3695502479806094e-32,2.347800356888962e-33,2.6901878821499158e-33,0.0059523810632526875,1.2705641094839709e-33,-0.0059523810632526875,-1.3840374811705249e-32,-0.0023809524718672037,-0.0,-0.0,-0.0,-5.082256254264891e-34,-5.6392281390542176e-18,3.3390938245824354e-33,0.0023809524718672037,5.970382827600431e-33,-5.757940509022119e-34,2.37171964654728e-34,0.0069444444961845875,3.556059592359505e-33,4.625929158980737e-17,-0.0416666679084301,2.8355844042546395e-17,-0.0,-0.0,-0.0,-1.422423836943802e-33,-2.3129645794903686e-17,1.3695502479806094e-32,5.970382827600431e-33,0.02083333395421505,-5.6392281390542176e-18,-4.543323428852619e-18,0.0059523810632526875,2.0449535228537927e-33,7.930164816114238e-18,-0.0059523810632526875,-0.0023809524718672037,-0.0,-0.0,-0.0,-8.179814275086163e-34,-3.965082408057119e-18,2.347800356888962e-33,-5.757940509022119e-34,-5.6392281390542176e-18,0.0023809524718672037,4.968834824734964e-34,0.0024801588151603937,-6.776263578034403e-19,9.086646857705238e-18,9.086646857705238e-18,-0.0037202381063252687,-0.0,-0.0,-0.0,2.710505431213761e-19,-4.543323428852619e-18,2.6901878821499158e-33,2.37171964654728e-34,-4.543323428852619e-18,4.968834824734964e-34,0.0007440476329065859,4.0,3.0,3.0,7.0,0.12136243283748627,-0.0416666679084301,-0.05089285597205162,-0.05089285597205162,-0.02718253992497921,0.003968254197388887,0.0071428571827709675,0.0071428571827709675,0.0035714285913854837,0.0059523810632526875,0.008928571827709675,0.004464285913854837,0.0059523810632526875,0.004464285913854837,0.0016534391324967146,-0.0416666679084301,0.0555555559694767,0.0071428571827709675,0.0071428571827709675,0.0035714285913854837,-0.011904762126505375,-0.004761904943734407,-0.004761904943734407,-0.0023809524718672037,-4.683753385137379e-17,-8.673617379884035e-19,-7.806255641895632e-18,-5.898059818321144e-17,-9.107298248878237e-18,-4.553649124439119e-18,-0.05089285597205162,0.0071428571827709675,0.11041666567325592,0.008928571827709675,0.004464285913854837,-2.588261206132102e-17,-0.0071428571827709675,6.5052130349130266e-18,-9.86623976961809e-18,-0.0357142873108387,-0.008928571827709675,-0.004464285913854837,3.642919299551295e-17,1.3010426069826053e-18,-9.269928574751063e-18,-0.05089285597205162,0.0071428571827709675,0.008928571827709675,0.11041666567325592,0.004464285913854837,-2.769755882182567e-17,1.6008929320551177e-17,-0.0071428571827709675,-8.565197162635485e-18,4.818319788931996e-17,-0.008928571827709675,2.3852447794681098e-18,-0.0357142873108387,-0.004464285913854837,-1.0191500421363742e-17,-0.02718253992497921,0.0035714285913854837,0.004464285913854837,0.004464285913854837,0.01765873096883297,-1.1709383462843448e-17,-5.010077460278529e-18,-6.906707065501871e-18,-0.0011904762359336019,-2.6367693933579266e-17,-9.876010427013567e-18,-0.0014880952658131719,-3.133130865885069e-17,-0.0014880952658131719,-0.0019841270986944437,0.003968254197388887,-0.011904762126505375,-2.588261206132102e-17,-2.769755882182567e-17,-1.1709383462843448e-17,0.003968254197388887,-1.1253201833621732e-18,-8.150992778151727e-19,3.1309280425548098e-18,1.047780582934182e-17,7.593067209802953e-19,1.834413629040473e-18,1.1064240487694965e-17,1.885312120082392e-18,3.2526065174565133e-19,0.0071428571827709675,-0.004761904943734407,-0.0071428571827709675,1.6008929320551177e-17,-5.010077460278529e-18,-1.1253201833621732e-18,0.004761904943734407,-1.1926223897340549e-18,3.846259825919043e-19,9.080156798619147e-18,-2.572732089543307e-18,1.8379197116149613e-19,-4.727373183097199e-18,-4.68080725730868e-19,6.505213034913027e-19,0.0071428571827709675,-0.004761904943734407,6.5052130349130266e-18,-0.0071428571827709675,-6.906707065501871e-18,-8.150992778151727e-19,-1.1926223897340549e-18,0.004761904943734407,3.582393863405573e-19,-2.9254878112599147e-18,1.1083301003754871e-18,-3.5660993746905585e-20,2.4381234581784196e-17,1.6660994349860657e-18,8.673617379884035e-19,0.0035714285913854837,-0.0023809524718672037,-9.86623976961809e-18,-8.565197162635485e-18,-0.0011904762359336019,3.1309280425548098e-18,3.846259825919043e-19,3.582393863405573e-19,0.0007936508045531809,2.8731357570865868e-18,5.519791737202839e-19,7.909493262413808e-19,2.466241891458996e-18,7.805609717234805e-19,3.2526065174565133e-19,0.0059523810632526875,-4.683753385137379e-17,-0.0357142873108387,4.818319788931996e-17,-2.6367693933579266e-17,1.047780582934182e-17,9.080156798619147e-18,-2.9254878112599147e-18,2.8731357570865868e-18,0.01785714365541935,-1.2907197238101886e-17,6.869042223489882e-18,-1.3972655497906938e-17,-5.371242506897504e-19,2.168404344971009e-18,0.008928571827709675,-8.673617379884035e-19,-0.008928571827709675,-0.008928571827709675,-9.876010427013567e-18,7.593067209802953e-19,-2.572732089543307e-18,1.1083301003754871e-18,5.519791737202839e-19,-1.2907197238101886e-17,0.008928571827709675,-5.421010862427522e-19,2.3061528712230863e-18,8.181528150464122e-19,1.3010426069826053e-18,0.004464285913854837,-7.806255641895632e-18,-0.004464285913854837,2.3852447794681098e-18,-0.0014880952658131719,1.834413629040473e-18,1.8379197116149613e-19,-3.5660993746905585e-20,7.909493262413808e-19,6.869042223489882e-18,-5.421010862427522e-19,0.0014880952658131719,-7.579266735258271e-19,-9.023741736674535e-20,3.7947076036992655e-19,0.0059523810632526875,-5.898059818321144e-17,3.642919299551295e-17,-0.0357142873108387,-3.133130865885069e-17,1.1064240487694965e-17,-4.727373183097199e-18,2.4381234581784196e-17,2.466241891458996e-18,-1.3972655497906938e-17,2.3061528712230863e-18,-7.579266735258271e-19,0.01785714365541935,1.4148838350935833e-17,1.951563910473908e-18,0.004464285913854837,-9.107298248878237e-18,1.3010426069826053e-18,-0.004464285913854837,-0.0014880952658131719,1.885312120082392e-18,-4.68080725730868e-19,1.6660994349860657e-18,7.805609717234805e-19,-5.371242506897504e-19,8.181528150464122e-19,-9.023741736674535e-20,1.4148838350935833e-17,0.0014880952658131719,2.710505431213761e-19,0.0016534391324967146,-4.553649124439119e-18,-9.269928574751063e-18,-1.0191500421363742e-17,-0.0019841270986944437,3.2526065174565133e-19,6.505213034913027e-19,8.673617379884035e-19,3.2526065174565133e-19,2.168404344971009e-18,1.3010426069826053e-18,3.7947076036992655e-19,1.951563910473908e-18,2.710505431213761e-19,0.0003306878206785768,4.0,3.0,3.0,8.0,0.10873842239379883,-0.03680555522441864,-0.04496527835726738,-0.04496527835726738,-0.02152777835726738,0.0034722222480922937,0.0062500000931322575,0.0062500000931322575,0.0027777778450399637,0.0052083334885537624,0.0078125,0.0034722222480922937,0.0052083334885537624,0.0034722222480922937,0.0011574074160307646,-0.03680555522441864,0.048842594027519226,0.0062500000931322575,0.0062500000931322575,0.0027777778450399637,-0.010416666977107525,-0.004166666883975267,-0.004166666883975267,-0.0018518518190830946,2.0816681711721685e-17,6.071532165918825e-18,2.168404344971009e-19,2.6020852139652106e-17,4.336808689942018e-19,-3.686287386450715e-18,-0.04496527835726738,0.0062500000931322575,0.09704861044883728,0.0078125,0.0034722222480922937,8.787252970894733e-18,-0.0062500000931322575,6.505213034913027e-19,7.047314121155779e-19,-0.03125,-0.0078125,-0.0034722222480922937,-3.642919299551295e-17,-4.9873299934333204e-18,-7.209944447028604e-18,-0.04496527835726738,0.0062500000931322575,0.0078125,0.09704861044883728,0.0034722222480922937,7.618506322361408e-18,3.2027246313874218e-18,-0.0062500000931322575,-8.944667923005412e-19,-4.0692326362656094e-17,-0.0078125,-4.4994390158148434e-18,-0.03125,-0.0034722222480922937,-8.023096076392733e-18,-0.02152777835726738,0.0027777778450399637,0.0034722222480922937,0.0034722222480922937,0.011937830597162247,-3.469446951953614e-18,-5.6808630344161554e-18,-7.181331442459783e-18,-0.0007936508045531809,-1.3048262138224841e-17,-9.704086726958708e-18,-0.0009920635493472219,-1.536138752162629e-17,-0.0009920635493472219,-0.0011574074160307646,0.0034722222480922937,-0.010416666977107525,8.787252970894733e-18,7.618506322361408e-18,-3.469446951953614e-18,0.0034722222480922937,1.4048057973824822e-18,1.48037722494048e-18,-9.483377568736696e-19,-4.003741107575091e-18,-1.6013630394767469e-18,-1.9956061857617107e-19,-3.6452377213721585e-18,-1.1611531046606934e-19,8.131516293641283e-19,0.0062500000931322575,-0.004166666883975267,-0.0062500000931322575,3.2027246313874218e-18,-5.6808630344161554e-18,1.4048057973824822e-18,0.004166666883975267,-5.421010862427522e-19,1.709309928469158e-19,-7.75148305045482e-18,-5.636475385373218e-19,-3.587102653666016e-20,-9.542749491178456e-19,1.5646943297174243e-19,6.505213034913027e-19,0.0062500000931322575,-0.004166666883975267,6.505213034913027e-19,-0.0062500000931322575,-7.181331442459783e-18,1.48037722494048e-18,-5.421010862427522e-19,0.004166666883975267,3.4134205098005374e-19,-7.6105744874676375e-19,-4.221005084395213e-20,5.346744002093097e-19,-1.1183275913744408e-17,-1.894548367103371e-19,7.047314121155779e-19,0.0027777778450399637,-0.0018518518190830946,7.047314121155779e-19,-8.944667923005412e-19,-0.0007936508045531809,-9.483377568736696e-19,1.709309928469158e-19,3.4134205098005374e-19,0.0005291005363687873,-1.8973538018496328e-19,-2.414095339969099e-19,-5.667758192917237e-20,2.57299932057995e-19,3.169368366391068e-20,1.8973538018496328e-19,0.0052083334885537624,2.0816681711721685e-17,-0.03125,-4.0692326362656094e-17,-1.3048262138224841e-17,-4.003741107575091e-18,-7.75148305045482e-18,-7.6105744874676375e-19,-1.8973538018496328e-19,0.015625,-4.929780143085862e-18,-4.0605634525738086e-18,2.021590374154687e-17,1.7614256933306314e-18,2.0599841277224584e-18,0.0078125,6.071532165918825e-18,-0.0078125,-0.0078125,-9.704086726958708e-18,-1.6013630394767469e-18,-5.636475385373218e-19,-4.221005084395213e-20,-2.414095339969099e-19,-4.929780143085862e-18,0.0078125,7.047314121155779e-19,-7.437088243235666e-18,6.579188314081527e-19,1.1384122811097797e-18,0.0034722222480922937,2.168404344971009e-19,-0.0034722222480922937,-4.4994390158148434e-18,-0.0009920635493472219,-1.9956061857617107e-19,-3.587102653666016e-20,5.346744002093097e-19,-5.667758192917237e-20,-4.0605634525738086e-18,7.047314121155779e-19,0.0009920635493472219,1.1200390487413284e-18,1.828226835046459e-19,2.168404344971009e-19,0.0052083334885537624,2.6020852139652106e-17,-3.642919299551295e-17,-0.03125,-1.536138752162629e-17,-3.6452377213721585e-18,-9.542749491178456e-19,-1.1183275913744408e-17,2.57299932057995e-19,2.021590374154687e-17,-7.437088243235666e-18,1.1200390487413284e-18,0.015625,-3.876022766635678e-18,2.3852447794681098e-18,0.0034722222480922937,4.336808689942018e-19,-4.9873299934333204e-18,-0.0034722222480922937,-0.0009920635493472219,-1.1611531046606934e-19,1.5646943297174243e-19,-1.894548367103371e-19,3.169368366391068e-20,1.7614256933306314e-18,6.579188314081527e-19,1.828226835046459e-19,-3.876022766635678e-18,0.0009920635493472219,2.710505431213761e-19,0.0011574074160307646,-3.686287386450715e-18,-7.209944447028604e-18,-8.023096076392733e-18,-0.0011574074160307646,8.131516293641283e-19,6.505213034913027e-19,7.047314121155779e-19,1.8973538018496328e-19,2.0599841277224584e-18,1.1384122811097797e-18,2.168404344971009e-19,2.3852447794681098e-18,2.710505431213761e-19,0.0001653439103392884,4.0,3.0,4.0,3.0,0.1867361068725586,-0.06916666775941849,-0.08437500149011612,-0.06916666775941849,-0.08437500149011612,0.0069444444961845875,0.012500000186264515,0.009999999776482582,0.012500000186264515,0.010416666977107525,0.012500000186264515,0.015625,0.0069444444961845875,0.012500000186264515,0.010416666977107525,-0.06916666775941849,0.094722218811512,0.012500000186264515,0.009999999776482582,0.012500000186264515,-0.02083333395421505,-0.008333333767950535,-0.006666666828095913,-0.008333333767950535,1.1555579666323415e-33,2.947700858190662e-33,-0.0,-0.0,-0.0,-0.0,-0.08437500149011612,0.012500000186264515,0.18854166567325592,0.012500000186264515,0.015625,8.673617379884035e-19,-0.012500000186264515,1.3594567318232106e-19,1.699320947090756e-19,-0.0625,-0.012500000186264515,-0.015625,3.2381503781992916e-17,1.6653346031121838e-17,6.938893903907228e-17,-0.06916666775941849,0.009999999776482582,0.012500000186264515,0.094722218811512,0.012500000186264515,3.51681886185149e-19,1.3594567318232106e-19,-0.006666666828095913,1.3191765256600874e-19,7.170190146789306e-17,-0.008333333767950535,-3.1842040767623674e-32,-0.02083333395421505,-0.008333333767950535,-7.9605106327163e-32,-0.08437500149011612,0.012500000186264515,0.015625,0.012500000186264515,0.18854166567325592,8.673617379884035e-19,1.699320947090756e-19,1.3191765256600874e-19,-0.012500000186264515,9.575673719740873e-17,-3.9443045848797766e-32,-0.015625,-0.0,-0.012500000186264515,-0.0625,0.0069444444961845875,-0.02083333395421505,8.673617379884035e-19,3.51681886185149e-19,8.673617379884035e-19,0.0069444444961845875,-4.336808689942018e-19,-4.336808689942018e-19,-4.336808689942018e-19,0.0,0.0,-0.0,1.991391700540753e-19,-0.0,-0.0,0.012500000186264515,-0.008333333767950535,-0.012500000186264515,1.3594567318232106e-19,1.699320947090756e-19,-4.336808689942018e-19,0.008333333767950535,-9.063045094233022e-20,-1.1328805883115137e-19,0.0,0.0,-0.0,6.018531076210112e-36,-0.0,-0.0,0.009999999776482582,-0.006666666828095913,1.3594567318232106e-19,-0.006666666828095913,1.3191765256600874e-19,-4.336808689942018e-19,-9.063045094233022e-20,0.004444444552063942,-8.794510601890485e-20,-7.703719777548943e-34,-1.9651339666841054e-33,0.0,-4.336808689942018e-19,-0.0,0.0,0.012500000186264515,-0.008333333767950535,1.699320947090756e-19,1.3191765256600874e-19,-0.012500000186264515,-4.336808689942018e-19,-1.1328805883115137e-19,-8.794510601890485e-20,0.008333333767950535,0.0,0.0,-0.0,6.018531076210112e-36,-0.0,-0.0,0.010416666977107525,1.1555579666323415e-33,-0.0625,7.170190146789306e-17,9.575673719740873e-17,0.0,0.0,-7.703719777548943e-34,0.0,0.03125,-1.4802974433703992e-17,-1.3877787807814457e-17,-1.6190751890996458e-17,-8.326673015560919e-18,-3.469446951953614e-17,0.012500000186264515,2.947700858190662e-33,-0.012500000186264515,-0.008333333767950535,-3.9443045848797766e-32,0.0,0.0,-1.9651339666841054e-33,0.0,-1.4802974433703992e-17,0.008333333767950535,6.573841219694284e-33,1.528437539847137e-33,-0.0,1.6434602681893725e-32,0.015625,-0.0,-0.015625,-3.1842040767623674e-32,-0.015625,-0.0,-0.0,0.0,-0.0,-1.3877787807814457e-17,6.573841219694284e-33,0.015625,7.190138214151024e-33,3.697785640160287e-33,1.5407439555097887e-32,0.0069444444961845875,-0.0,3.2381503781992916e-17,-0.02083333395421505,-0.0,1.991391700540753e-19,6.018531076210112e-36,-4.336808689942018e-19,6.018531076210112e-36,-1.6190751890996458e-17,1.528437539847137e-33,7.190138214151024e-33,0.0069444444961845875,3.5217004894156947e-34,1.7975346637403514e-32,0.012500000186264515,-0.0,1.6653346031121838e-17,-0.008333333767950535,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-8.326673015560919e-18,-0.0,3.697785640160287e-33,3.5217004894156947e-34,0.008333333767950535,9.244463733058732e-33,0.010416666977107525,-0.0,6.938893903907228e-17,-7.9605106327163e-32,-0.0625,-0.0,-0.0,0.0,-0.0,-3.469446951953614e-17,1.6434602681893725e-32,1.5407439555097887e-32,1.7975346637403514e-32,9.244463733058732e-33,0.03125,4.0,3.0,4.0,4.0,0.1521874964237213,-0.05375000089406967,-0.06562499701976776,-0.05375000089406967,-0.05375000089406967,0.0052083334885537624,0.00937500037252903,0.007499999832361937,0.007499999832361937,0.0078125,0.00937500037252903,0.00937500037252903,0.0052083334885537624,0.007499999832361937,0.0052083334885537624,-0.05375000089406967,0.07229166477918625,0.00937500037252903,0.007499999832361937,0.007499999832361937,-0.015625,-0.0062500000931322575,-0.004999999888241291,-0.004999999888241291,-0.0,-1.5491986519048919e-19,-1.597610172736382e-19,-4.336808689942018e-19,-2.387634090667469e-19,-7.088190285100852e-19,-0.06562499701976776,0.00937500037252903,0.14374999701976776,0.00937500037252903,0.00937500037252903,-0.0,-0.00937500037252903,-1.4934342709096295e-19,-1.6533746829786152e-19,-0.046875,-0.00937500037252903,-0.00937500037252903,2.4077067035658647e-17,9.669063899823213e-18,2.4027085474325743e-17,-0.05375000089406967,0.007499999832361937,0.00937500037252903,0.07229166477918625,0.007499999832361937,-2.489598318331408e-19,-0.0,-0.004999999888241291,-4.022813772850244e-19,5.224987255225931e-17,-0.0062500000931322575,-2.168404344971009e-19,-0.015625,-0.004999999888241291,-1.8258011279001473e-19,-0.05375000089406967,0.007499999832361937,0.00937500037252903,0.007499999832361937,0.07229166477918625,-4.336808689942018e-19,-0.0,-2.707650365630746e-19,-0.004999999888241291,5.224987255225931e-17,-1.0005480400448243e-19,-0.0062500000931322575,-4.336808689942018e-19,-0.004999999888241291,-0.015625,0.0052083334885537624,-0.015625,-0.0,-2.489598318331408e-19,-4.336808689942018e-19,0.0052083334885537624,-0.0,2.168404344971009e-19,2.168404344971009e-19,-0.0,1.0011204828021183e-35,8.966383061189139e-36,2.0362230156600518e-20,1.2440768123671499e-35,4.965324817790302e-20,0.00937500037252903,-0.0062500000931322575,-0.00937500037252903,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-1.4934342709096295e-19,-0.004999999888241291,-2.707650365630746e-19,2.168404344971009e-19,-0.0,0.0033333334140479565,1.0118109441900434e-19,-0.0,1.014751506644184e-19,-1.9128688990195146e-21,2.168404344971009e-19,5.421010862427522e-20,1.2119721895949817e-20,0.007499999832361937,-0.004999999888241291,-1.6533746829786152e-19,-4.022813772850244e-19,-0.004999999888241291,2.168404344971009e-19,-0.0,1.0118109441900434e-19,0.0033333334140479565,-0.0,1.80475966452278e-21,1.0842021724855044e-19,2.793573105524838e-20,1.0496549742022272e-19,3.522925522723663e-19,0.0078125,-0.0,-0.046875,5.224987255225931e-17,5.224987255225931e-17,-0.0,-0.0,-0.0,-0.0,0.0234375,-8.326673015560919e-18,-8.326673015560919e-18,-1.214306433183765e-17,-4.9960038093365514e-18,-1.214306433183765e-17,0.00937500037252903,-1.5491986519048919e-19,-0.00937500037252903,-0.0062500000931322575,-1.0005480400448243e-19,1.0011204828021183e-35,-0.0,1.014751506644184e-19,1.80475966452278e-21,-8.326673015560919e-18,0.0062500000931322575,-2.3910861237743932e-21,1.4535230648478873e-19,5.421010862427522e-20,5.63987412833853e-21,0.00937500037252903,-1.597610172736382e-19,-0.00937500037252903,-2.168404344971009e-19,-0.0062500000931322575,8.966383061189139e-36,-0.0,-1.9128688990195146e-21,1.0842021724855044e-19,-8.326673015560919e-18,-2.3910861237743932e-21,0.0062500000931322575,-5.977715208461787e-21,1.6108534635903268e-19,1.670556387524078e-19,0.0052083334885537624,-4.336808689942018e-19,2.4077067035658647e-17,-0.015625,-4.336808689942018e-19,2.0362230156600518e-20,-0.0,2.168404344971009e-19,2.793573105524838e-20,-1.214306433183765e-17,1.4535230648478873e-19,-5.977715208461787e-21,0.0052083334885537624,-4.1487327633128065e-20,-1.0576384303361004e-19,0.007499999832361937,-2.387634090667469e-19,9.669063899823213e-18,-0.004999999888241291,-0.004999999888241291,1.2440768123671499e-35,-0.0,5.421010862427522e-20,1.0496549742022272e-19,-4.9960038093365514e-18,5.421010862427522e-20,1.6108534635903268e-19,-4.1487327633128065e-20,0.0033333334140479565,3.3617059533855464e-19,0.0052083334885537624,-7.088190285100852e-19,2.4027085474325743e-17,-1.8258011279001473e-19,-0.015625,4.965324817790302e-20,-0.0,1.2119721895949817e-20,3.522925522723663e-19,-1.214306433183765e-17,5.63987412833853e-21,1.670556387524078e-19,-1.0576384303361004e-19,3.3617059533855464e-19,0.0052083334885537624,4.0,3.0,4.0,5.0,0.12861904501914978,-0.04399999976158142,-0.05375000089406967,-0.04399999976158142,-0.03732142969965935,0.004166666883975267,0.007499999832361937,0.006000000052154064,0.004999999888241291,0.0062500000931322575,0.007499999832361937,0.0062500000931322575,0.004166666883975267,0.004999999888241291,0.0029761905316263437,-0.04399999976158142,0.05849999934434891,0.007499999832361937,0.006000000052154064,0.004999999888241291,-0.012500000186264515,-0.004999999888241291,-0.004000000189989805,-0.0033333334140479565,-2.6963019221421302e-33,0.0,1.0842021724855044e-19,-0.0,-5.009536587555496e-19,-1.3700646252455613e-18,-0.05375000089406967,0.007499999832361937,0.11625000089406967,0.007499999832361937,0.0062500000931322575,-0.0,-0.007499999832361937,-0.0,1.0842021724855044e-19,-0.03750000149011612,-0.007499999832361937,-0.0062500000931322575,-9.714451300033997e-18,-3.818560183842845e-18,-5.7681690529389835e-18,-0.04399999976158142,0.006000000052154064,0.007499999832361937,0.05849999934434891,0.004999999888241291,-0.0,-0.0,-0.004000000189989805,-5.009536587555496e-19,-1.7902345742685057e-17,-0.004999999888241291,-4.87890977618477e-19,-0.012500000186264515,-0.0033333334140479565,-1.0161411312991819e-18,-0.03732142969965935,0.004999999888241291,0.0062500000931322575,0.004999999888241291,0.03651785850524902,0.0,-0.0,-0.0,-0.0024999999441206455,-1.4393248715249326e-17,-0.0,-0.0031250000465661287,-3.728600489883124e-33,-0.0024999999441206455,-0.0059523810632526875,0.004166666883975267,-0.012500000186264515,-0.0,-0.0,0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-0.007499999832361937,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006000000052154064,-0.004000000189989805,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,1.0842021724855044e-19,-5.009536587555496e-19,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,1.3481509610710651e-33,-0.0,-5.421010862427522e-20,0.0,2.504768293777748e-19,6.850323126227807e-19,0.0062500000931322575,-2.6963019221421302e-33,-0.03750000149011612,-1.7902345742685057e-17,-1.4393248715249326e-17,-0.0,-0.0,-0.0,1.3481509610710651e-33,0.01875000074505806,-0.0,1.925929944387236e-34,4.8572256500169986e-18,1.6653344997146072e-18,2.9738117026452626e-18,0.007499999832361937,0.0,-0.007499999832361937,-0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,1.0842021724855044e-19,-0.0062500000931322575,-4.87890977618477e-19,-0.0031250000465661287,-0.0,-0.0,-0.0,-5.421010862427522e-20,1.925929944387236e-34,-0.0,0.0031250000465661287,-0.0,2.439454888092385e-19,-8.972707924054281e-20,0.004166666883975267,-0.0,-9.714451300033997e-18,-0.012500000186264515,-3.728600489883124e-33,-0.0,-0.0,-0.0,0.0,4.8572256500169986e-18,-0.0,-0.0,0.004166666883975267,4.3140830937945075e-34,7.703719777548943e-34,0.004999999888241291,-5.009536587555496e-19,-3.818560183842845e-18,-0.0033333334140479565,-0.0024999999441206455,-0.0,-0.0,-0.0,2.504768293777748e-19,1.6653344997146072e-18,-0.0,2.439454888092385e-19,4.3140830937945075e-34,0.0016666667070239782,5.0807056564959095e-19,0.0029761905316263437,-1.3700646252455613e-18,-5.7681690529389835e-18,-1.0161411312991819e-18,-0.0059523810632526875,-0.0,-0.0,-0.0,6.850323126227807e-19,2.9738117026452626e-18,-0.0,-8.972707924054281e-20,7.703719777548943e-34,5.0807056564959095e-19,0.0014880952658131719,4.0,3.0,4.0,6.0,0.11144841462373734,-0.037261903285980225,-0.04553571343421936,-0.037261903285980225,-0.02745535783469677,0.0034722222480922937,0.0062500000931322575,0.004999999888241291,0.0035714285913854837,0.0052083334885537624,0.0062500000931322575,0.004464285913854837,0.0034722222480922937,0.0035714285913854837,0.0018601190531626344,-0.037261903285980225,0.04914682358503342,0.0062500000931322575,0.004999999888241291,0.0035714285913854837,-0.010416666977107525,-0.004166666883975267,-0.0033333334140479565,-0.0023809524718672037,3.851859888774472e-33,-0.0,-6.776263578034403e-20,-0.0,-2.1476642128279195e-19,-4.702499551885e-19,-0.04553571343421936,0.0062500000931322575,0.09761904925107956,0.0062500000931322575,0.004464285913854837,-0.0,-0.0062500000931322575,-0.0,-6.776263578034403e-20,-0.03125,-0.0062500000931322575,-0.004464285913854837,1.6190751890996458e-17,4.487048263829105e-18,6.833715407479273e-18,-0.037261903285980225,0.004999999888241291,0.0062500000931322575,0.04914682358503342,0.0035714285913854837,-0.0,-0.0,-0.0033333334140479565,-2.1476642128279195e-19,3.7635238872227514e-17,-0.004166666883975267,-2.710505431213761e-19,-0.010416666977107525,-0.0023809524718672037,-4.3278901319750476e-19,-0.02745535783469677,0.0035714285913854837,0.004464285913854837,0.0035714285913854837,0.021212797611951828,-0.0,-0.0,-0.0,-0.0014285714132711291,2.3778102455586057e-17,-1.1263572175899774e-32,-0.0017857142956927419,-1.2319531975554881e-32,-0.0014285714132711291,-0.0027901786379516125,0.0034722222480922937,-0.010416666977107525,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.004166666883975267,-0.0062500000931322575,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.002222222276031971,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0023809524718672037,-6.776263578034403e-20,-2.1476642128279195e-19,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0009523809421807528,-1.5407439555097887e-33,0.0,2.710505431213761e-20,0.0,8.59065710980562e-20,1.8809996656576351e-19,0.0052083334885537624,3.851859888774472e-33,-0.03125,3.7635238872227514e-17,2.3778102455586057e-17,-0.0,-0.0,-0.0,-1.5407439555097887e-33,0.015625,-7.401487216851996e-18,-3.1720658023686032e-18,-8.095375945498229e-18,-2.3790494034752407e-18,-3.4074925716394644e-18,0.0062500000931322575,-0.0,-0.0062500000931322575,-0.004166666883975267,-1.1263572175899774e-32,-0.0,-0.0,-0.0,0.0,-7.401487216851996e-18,0.004166666883975267,1.5025921843278974e-33,3.834740650264668e-33,1.126944138245923e-33,1.6141128027583464e-33,0.004464285913854837,-6.776263578034403e-20,-0.004464285913854837,-2.710505431213761e-19,-0.0017857142956927419,-0.0,-0.0,-0.0,2.710505431213761e-20,-3.1720658023686032e-18,1.5025921843278974e-33,0.0017857142956927419,1.643460304923571e-33,1.0842021724855044e-19,-7.492183551437646e-21,0.0034722222480922937,-0.0,1.6190751890996458e-17,-0.010416666977107525,-1.2319531975554881e-32,-0.0,-0.0,-0.0,0.0,-8.095375945498229e-18,3.834740650264668e-33,1.643460304923571e-33,0.0034722222480922937,1.2325951827749302e-33,1.7654358435786303e-33,0.0035714285913854837,-2.1476642128279195e-19,4.487048263829105e-18,-0.0023809524718672037,-0.0014285714132711291,-0.0,-0.0,-0.0,8.59065710980562e-20,-2.3790494034752407e-18,1.126944138245923e-33,1.0842021724855044e-19,1.2325951827749302e-33,0.0009523809421807528,1.731156026940625e-19,0.0018601190531626344,-4.702499551885e-19,6.833715407479273e-18,-4.3278901319750476e-19,-0.0027901786379516125,-0.0,-0.0,-0.0,1.8809996656576351e-19,-3.4074925716394644e-18,1.6141128027583464e-33,-7.492183551437646e-21,1.7654358435786303e-33,1.731156026940625e-19,0.0005580357392318547,4.0,3.0,4.0,7.0,0.09835813194513321,-0.03232142701745033,-0.03950892761349678,-0.03232142701745033,-0.02105654776096344,0.0029761905316263437,0.0053571430034935474,0.004285714123398066,0.0026785715017467737,0.004464285913854837,0.0053571430034935474,0.0033482143189758062,0.0029761905316263437,0.0026785715017467737,0.0012400794075801969,-0.03232142701745033,0.04238095134496689,0.0053571430034935474,0.004285714123398066,0.0026785715017467737,-0.008928571827709675,-0.0035714285913854837,-0.0028571428265422583,-0.0017857142956927419,1.0408340855860843e-17,-8.239936510889834e-18,-1.1275702593849246e-17,-2.168404344971009e-17,-9.75781955236954e-18,-4.553649124439119e-18,-0.03950892761349678,0.0053571430034935474,0.08415178209543228,0.0053571430034935474,0.0033482143189758062,-2.58343295289663e-17,-0.0053571430034935474,6.071532165918825e-18,-8.348356728138384e-18,-0.02678571455180645,-0.0053571430034935474,-0.0033482143189758062,-7.37257477290143e-18,-3.469446951953614e-18,-7.535205098774256e-18,-0.03232142701745033,0.004285714123398066,0.0053571430034935474,0.04238095134496689,0.0026785715017467737,-2.6104116140111694e-17,8.277613450418282e-19,-0.0028571428265422583,-9.974659986866641e-18,2.0401402302634338e-17,-0.0035714285913854837,-6.532318089225164e-18,-0.008928571827709675,-0.0017857142956927419,-3.469446951953614e-18,-0.02105654776096344,0.0026785715017467737,0.0033482143189758062,0.0026785715017467737,0.01346726156771183,-1.8323016715005025e-17,-4.4305816064937854e-18,-4.605088178011341e-18,-0.0008928571478463709,-1.654676380919438e-17,-8.629297869844057e-18,-0.0011160714784637094,-1.5008692597684705e-17,-0.0008928571478463709,-0.0014880952658131719,0.0029761905316263437,-0.008928571827709675,-2.58343295289663e-17,-2.6104116140111694e-17,-1.8323016715005025e-17,0.0029761905316263437,7.31026325735781e-18,4.0115480381963664e-18,4.913935912042715e-18,2.262709138656648e-19,2.528758961384835e-18,2.9724325857689836e-18,3.3723487693393833e-18,2.1290839009629944e-18,7.589415207398531e-19,0.0053571430034935474,-0.0035714285913854837,-0.0053571430034935474,8.277613450418282e-19,-4.4305816064937854e-18,7.31026325735781e-18,0.0035714285913854837,-0.0,6.585207604001499e-19,-7.790513567658135e-18,-2.448007522035877e-18,-7.664813754208505e-19,6.035412187098355e-19,1.1616110266779239e-19,6.505213034913027e-19,0.004285714123398066,-0.0028571428265422583,6.071532165918825e-18,-0.0028571428265422583,-4.605088178011341e-18,4.0115480381963664e-18,-0.0,0.0019047618843615055,5.918431787883223e-19,-3.792086681928391e-18,-2.48440223467964e-20,4.2974578987452802e-19,2.5590800939185787e-18,3.679173219592453e-19,4.336808689942018e-19,0.0026785715017467737,-0.0017857142956927419,-8.348356728138384e-18,-9.974659986866641e-18,-0.0008928571478463709,4.913935912042715e-18,6.585207604001499e-19,5.918431787883223e-19,0.0005952381179668009,1.3010426069826053e-18,1.0801314098959778e-18,8.633525486557239e-19,1.8517277600321266e-18,7.207775786257644e-19,1.0842021724855044e-19,0.004464285913854837,1.0408340855860843e-17,-0.02678571455180645,2.0401402302634338e-17,-1.654676380919438e-17,2.262709138656648e-19,-7.790513567658135e-18,-3.792086681928391e-18,1.3010426069826053e-18,0.013392857275903225,-7.680627586364141e-18,1.0021740832586475e-18,-2.303086099102046e-18,2.3355938318862854e-19,1.951563910473908e-18,0.0053571430034935474,-8.239936510889834e-18,-0.0053571430034935474,-0.0035714285913854837,-8.629297869844057e-18,2.528758961384835e-18,-2.448007522035877e-18,-2.48440223467964e-20,1.0801314098959778e-18,-7.680627586364141e-18,0.0035714285913854837,2.710505431213761e-19,3.2177470584919973e-18,9.8511472389566e-19,7.589415207398531e-19,0.0033482143189758062,-1.1275702593849246e-17,-0.0033482143189758062,-6.532318089225164e-18,-0.0011160714784637094,2.9724325857689836e-18,-7.664813754208505e-19,4.2974578987452802e-19,8.633525486557239e-19,1.0021740832586475e-18,2.710505431213761e-19,0.0011160714784637094,1.490665800796991e-18,3.3577659887303797e-19,3.2526065174565133e-19,0.0029761905316263437,-2.168404344971009e-17,-7.37257477290143e-18,-0.008928571827709675,-1.5008692597684705e-17,3.3723487693393833e-18,6.035412187098355e-19,2.5590800939185787e-18,1.8517277600321266e-18,-2.303086099102046e-18,3.2177470584919973e-18,1.490665800796991e-18,0.0029761905316263437,4.797594613248357e-18,4.336808689942018e-19,0.0026785715017467737,-9.75781955236954e-18,-3.469446951953614e-18,-0.0017857142956927419,-0.0008928571478463709,2.1290839009629944e-18,1.1616110266779239e-19,3.679173219592453e-19,7.207775786257644e-19,2.3355938318862854e-19,9.8511472389566e-19,3.3577659887303797e-19,4.797594613248357e-18,0.0005952381179668009,1.6263032587282567e-19,0.0012400794075801969,-4.553649124439119e-18,-7.535205098774256e-18,-3.469446951953614e-18,-0.0014880952658131719,7.589415207398531e-19,6.505213034913027e-19,4.336808689942018e-19,1.0842021724855044e-19,1.951563910473908e-18,7.589415207398531e-19,3.2526065174565133e-19,4.336808689942018e-19,1.6263032587282567e-19,0.00024801588733680546,4.0,3.0,4.0,8.0,0.08803819119930267,-0.028541667386889458,-0.03489583358168602,-0.028541667386889458,-0.01666666753590107,0.0026041667442768812,0.004687500186264515,0.0037499999161809683,0.0020833334419876337,0.00390625,0.004687500186264515,0.0026041667442768812,0.0026041667442768812,0.0020833334419876337,0.0008680555620230734,-0.028541667386889458,0.03725694492459297,0.004687500186264515,0.0037499999161809683,0.0020833334419876337,-0.0078125,-0.0031250000465661287,-0.0024999999441206455,-0.0013888889225199819,-1.9081958235744878e-17,3.469446951953614e-18,2.168404344971009e-18,6.5052130349130266e-18,6.505213034913027e-19,5.854691731421724e-18,-0.03489583358168602,0.004687500186264515,0.07395832985639572,0.004687500186264515,0.0026041667442768812,8.779124267015174e-18,-0.004687500186264515,-8.673617379884035e-18,-8.61940727125976e-18,-0.0234375,-0.004687500186264515,-0.0026041667442768812,-1.734723475976807e-18,-4.119968255444917e-18,-1.3552527156068805e-19,-0.028541667386889458,0.0037499999161809683,0.004687500186264515,0.03725694492459297,0.0020833334419876337,9.639375560458072e-18,7.837393201693966e-18,-0.0024999999441206455,-3.1170812458958252e-18,-2.308171729585114e-17,-0.0031250000465661287,1.3823577699190182e-18,-0.0078125,-0.0013888889225199819,5.800481622797449e-18,-0.01666666753590107,0.0020833334419876337,0.0026041667442768812,0.0020833334419876337,0.00910218246281147,1.1817803680091998e-17,3.9676470815463396e-18,4.761311162859331e-18,-0.0005952381179668009,-1.960799547449185e-17,3.4259037509185165e-18,-0.0007440476329065859,9.67463578842937e-18,-0.0005952381179668009,-0.0008680555620230734,0.0026041667442768812,-0.0078125,8.779124267015174e-18,9.639375560458072e-18,1.1817803680091998e-17,0.0026041667442768812,-1.773373283303194e-18,5.362654304187672e-19,-2.480920676717844e-19,1.0796868003167306e-18,-1.835942258812471e-18,-1.1532641022130161e-18,-1.920675745630259e-18,-5.697716735999347e-19,-1.2468324983583301e-18,0.004687500186264515,-0.0031250000465661287,-0.004687500186264515,7.837393201693966e-18,3.9676470815463396e-18,-1.773373283303194e-18,0.0031250000465661287,-3.7947076036992655e-19,-5.4947585376806e-20,-2.0594505962273617e-18,-1.674615052597146e-18,-1.4565770415188273e-19,-1.5391919378421082e-18,-2.9375251503289395e-19,-4.87890977618477e-19,0.0037499999161809683,-0.0024999999441206455,-8.673617379884035e-18,-0.0024999999441206455,4.761311162859331e-18,5.362654304187672e-19,-3.7947076036992655e-19,0.0016666667070239782,4.410850143559522e-19,3.6991049636325305e-18,1.4314687236572102e-18,-8.834690253910394e-20,1.0395753648479623e-18,-6.912407167102974e-20,-6.776263578034403e-19,0.0020833334419876337,-0.0013888889225199819,-8.61940727125976e-18,-3.1170812458958252e-18,-0.0005952381179668009,-2.480920676717844e-19,-5.4947585376806e-20,4.410850143559522e-19,0.00039682540227659047,3.144186300207963e-18,4.618423880449345e-19,4.039528766584468e-19,1.9488934871132512e-19,3.3901950876576383e-19,-1.6263032587282567e-19,0.00390625,-1.9081958235744878e-17,-0.0234375,-2.308171729585114e-17,-1.960799547449185e-17,1.0796868003167306e-18,-2.0594505962273617e-18,3.6991049636325305e-18,3.144186300207963e-18,0.01171875,-4.415983316248296e-19,6.773541740228797e-18,2.94837610560441e-18,2.112013788252044e-18,7.589415207398531e-19,0.004687500186264515,3.469446951953614e-18,-0.004687500186264515,-0.0031250000465661287,3.4259037509185165e-18,-1.835942258812471e-18,-1.674615052597146e-18,1.4314687236572102e-18,4.618423880449345e-19,-4.415983316248296e-19,0.0031250000465661287,2.710505431213761e-20,1.1532808526204203e-18,-2.1521507629222247e-19,-4.87890977618477e-19,0.0026041667442768812,2.168404344971009e-18,-0.0026041667442768812,1.3823577699190182e-18,-0.0007440476329065859,-1.1532641022130161e-18,-1.4565770415188273e-19,-8.834690253910394e-20,4.039528766584468e-19,6.773541740228797e-18,2.710505431213761e-20,0.0007440476329065859,-6.120966960866831e-19,1.402628192721148e-19,0.0,0.0026041667442768812,6.5052130349130266e-18,-1.734723475976807e-18,-0.0078125,9.67463578842937e-18,-1.920675745630259e-18,-1.5391919378421082e-18,1.0395753648479623e-18,1.9488934871132512e-19,2.94837610560441e-18,1.1532808526204203e-18,-6.120966960866831e-19,0.0026041667442768812,-1.3552527156068805e-19,-1.1926223897340549e-18,0.0020833334419876337,6.505213034913027e-19,-4.119968255444917e-18,-0.0013888889225199819,-0.0005952381179668009,-5.697716735999347e-19,-2.9375251503289395e-19,-6.912407167102974e-20,3.3901950876576383e-19,2.112013788252044e-18,-2.1521507629222247e-19,1.402628192721148e-19,-1.3552527156068805e-19,0.00039682540227659047,-2.168404344971009e-19,0.0008680555620230734,5.854691731421724e-18,-1.3552527156068805e-19,5.800481622797449e-18,-0.0008680555620230734,-1.2468324983583301e-18,-4.87890977618477e-19,-6.776263578034403e-19,-1.6263032587282567e-19,7.589415207398531e-19,-4.87890977618477e-19,0.0,-1.1926223897340549e-18,-2.168404344971009e-19,0.00012400794366840273,4.0,3.0,5.0,3.0,0.1582142859697342,-0.05666666850447655,-0.06916666775941849,-0.04809523746371269,-0.06916666775941849,0.0055555556900799274,0.009999999776482582,0.006666666828095913,0.009999999776482582,0.008333333767950535,0.008333333767950535,0.012500000186264515,0.003968254197388887,0.008333333767950535,0.008333333767950535,-0.05666666850447655,0.07666666805744171,0.009999999776482582,0.006666666828095913,0.009999999776482582,-0.01666666753590107,-0.006666666828095913,-0.004444444552063942,-0.006666666828095913,-1.1555579666323415e-33,-9.14387340321781e-21,0.0,-4.336808689942018e-19,1.0842021724855044e-19,-0.0,-0.06916666775941849,0.009999999776482582,0.1525000035762787,0.008333333767950535,0.012500000186264515,-0.0,-0.009999999776482582,-9.14387340321781e-21,-0.0,-0.05000000074505806,-0.008333333767950535,-0.012500000186264515,-7.951935382656021e-18,-5.4426949885952935e-18,-2.7755575615628914e-17,-0.04809523746371269,0.006666666828095913,0.008333333767950535,0.047857142984867096,0.008333333767950535,-0.0,-0.0,-0.0033333334140479565,-0.0,-1.8635886201174632e-17,-0.004166666883975267,-0.0,-0.007936508394777775,-0.004166666883975267,-1.0344995339761144e-32,-0.06916666775941849,0.009999999776482582,0.012500000186264515,0.008333333767950535,0.1525000035762787,-0.0,-0.0,1.0842021724855044e-19,-0.009999999776482582,-3.3306692062243676e-17,1.0842021724855044e-19,-0.012500000186264515,2.168404344971009e-19,-0.008333333767950535,-0.05000000074505806,0.0055555556900799274,-0.01666666753590107,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.006666666828095913,-0.009999999776482582,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.004444444552063942,-9.14387340321781e-21,-0.0033333334140479565,1.0842021724855044e-19,-0.0,-0.0,0.002222222276031971,-0.0,5.7777898331617076e-34,4.571936701608905e-21,-0.0,2.168404344971009e-19,-5.421010862427522e-20,0.0,0.009999999776482582,-0.006666666828095913,-0.0,-0.0,-0.009999999776482582,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-1.1555579666323415e-33,-0.05000000074505806,-1.8635886201174632e-17,-3.3306692062243676e-17,-0.0,-0.0,5.7777898331617076e-34,-0.0,0.02500000037252903,-1.4357459589336796e-35,-0.0,3.965082408057119e-18,2.775557602921922e-18,1.3877787807814457e-17,0.008333333767950535,-9.14387340321781e-21,-0.008333333767950535,-0.004166666883975267,1.0842021724855044e-19,-0.0,-0.0,4.571936701608905e-21,-0.0,-1.4357459589336796e-35,0.004166666883975267,-0.0,1.0885564383052865e-20,-5.421010862427522e-20,-0.0,0.012500000186264515,0.0,-0.012500000186264515,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,0.003968254197388887,-4.336808689942018e-19,-7.951935382656021e-18,-0.007936508394777775,2.168404344971009e-19,-0.0,-0.0,2.168404344971009e-19,-0.0,3.965082408057119e-18,1.0885564383052865e-20,-0.0,0.0019841270986944437,-7.726498292697204e-20,2.2010628460628388e-33,0.008333333767950535,1.0842021724855044e-19,-5.4426949885952935e-18,-0.004166666883975267,-0.008333333767950535,-0.0,-0.0,-5.421010862427522e-20,-0.0,2.775557602921922e-18,-5.421010862427522e-20,-0.0,-7.726498292697204e-20,0.004166666883975267,1.5407439555097887e-33,0.008333333767950535,-0.0,-2.7755575615628914e-17,-1.0344995339761144e-32,-0.05000000074505806,-0.0,-0.0,0.0,-0.0,1.3877787807814457e-17,-0.0,-0.0,2.2010628460628388e-33,1.5407439555097887e-33,0.02500000037252903,4.0,3.0,5.0,4.0,0.12861904501914978,-0.04399999976158142,-0.05375000089406967,-0.03732142969965935,-0.04399999976158142,0.004166666883975267,0.007499999832361937,0.004999999888241291,0.006000000052154064,0.0062500000931322575,0.0062500000931322575,0.007499999832361937,0.0029761905316263437,0.004999999888241291,0.004166666883975267,-0.04399999976158142,0.05849999934434891,0.007499999832361937,0.004999999888241291,0.006000000052154064,-0.012500000186264515,-0.004999999888241291,-0.0033333334140479565,-0.004000000189989805,-3.0814879110195774e-33,1.0156231482146618e-19,0.0,-1.3010426069826053e-18,-1.0842021724855044e-19,-0.0,-0.05375000089406967,0.007499999832361937,0.11625000089406967,0.0062500000931322575,0.007499999832361937,-0.0,-0.007499999832361937,1.0156231482146618e-19,-0.0,-0.03750000149011612,-0.0062500000931322575,-0.007499999832361937,-5.78449759823078e-18,-3.2764588908049393e-18,-9.714451300033997e-18,-0.03732142969965935,0.004999999888241291,0.0062500000931322575,0.03651785850524902,0.004999999888241291,-0.0,-0.0,-0.0024999999441206455,-0.0,-1.4393248715249326e-17,-0.0031250000465661287,-0.0,-0.0059523810632526875,-0.0024999999441206455,-3.728600489883124e-33,-0.04399999976158142,0.006000000052154064,0.007499999832361937,0.004999999888241291,0.05849999934434891,-0.0,-0.0,-1.0842021724855044e-19,-0.004000000189989805,-1.7902345742685057e-17,5.421010862427522e-20,-0.004999999888241291,-2.168404344971009e-19,-0.0033333334140479565,-0.012500000186264515,0.004166666883975267,-0.012500000186264515,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-0.007499999832361937,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,1.0156231482146618e-19,-0.0024999999441206455,-1.0842021724855044e-19,-0.0,-0.0,0.0016666667070239782,-0.0,1.5407439555097887e-33,-5.078115741073309e-20,-0.0,6.505213034913027e-19,5.421010862427522e-20,0.0,0.006000000052154064,-0.004000000189989805,-0.0,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-3.0814879110195774e-33,-0.03750000149011612,-1.4393248715249326e-17,-1.7902345742685057e-17,-0.0,-0.0,1.5407439555097887e-33,-0.0,0.01875000074505806,-2.0336109666410673e-34,-0.0,2.9738117026452626e-18,1.6653344997146072e-18,4.8572256500169986e-18,0.0062500000931322575,1.0156231482146618e-19,-0.0062500000931322575,-0.0031250000465661287,5.421010862427522e-20,-0.0,-0.0,-5.078115741073309e-20,-0.0,-2.0336109666410673e-34,0.0031250000465661287,-0.0,-8.156290352987246e-20,-2.710505431213761e-20,-0.0,0.007499999832361937,0.0,-0.007499999832361937,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,0.0029761905316263437,-1.3010426069826053e-18,-5.78449759823078e-18,-0.0059523810632526875,-2.168404344971009e-19,-0.0,-0.0,6.505213034913027e-19,-0.0,2.9738117026452626e-18,-8.156290352987246e-20,-0.0,0.0014880952658131719,9.595812093497967e-20,7.703719777548943e-34,0.004999999888241291,-1.0842021724855044e-19,-3.2764588908049393e-18,-0.0024999999441206455,-0.0033333334140479565,-0.0,-0.0,5.421010862427522e-20,-0.0,1.6653344997146072e-18,-2.710505431213761e-20,-0.0,9.595812093497967e-20,0.0016666667070239782,4.3140830937945075e-34,0.004166666883975267,-0.0,-9.714451300033997e-18,-3.728600489883124e-33,-0.012500000186264515,-0.0,-0.0,0.0,-0.0,4.8572256500169986e-18,-0.0,-0.0,7.703719777548943e-34,4.3140830937945075e-34,0.004166666883975267,4.0,3.0,5.0,5.0,0.10852380841970444,-0.035999998450279236,-0.04399999976158142,-0.030523808673024178,-0.030523808673024178,0.0033333334140479565,0.006000000052154064,0.004000000189989805,0.004000000189989805,0.004999999888241291,0.004999999888241291,0.004999999888241291,0.0023809524718672037,0.0033333334140479565,0.0023809524718672037,-0.035999998450279236,0.047333333641290665,0.006000000052154064,0.004000000189989805,0.004000000189989805,-0.009999999776482582,-0.004000000189989805,-0.0026666666381061077,-0.0026666666381061077,-3.3306692062243676e-17,-6.820580606532544e-18,-6.715548107482704e-18,-8.866356252873179e-18,-4.440891999238953e-18,-8.633031763129121e-18,-0.04399999976158142,0.006000000052154064,0.09399999678134918,0.004999999888241291,0.004999999888241291,-3.5633716561477854e-17,-0.006000000052154064,-1.6263032587282567e-19,-5.0822306415033334e-20,-0.029999999329447746,-0.004999999888241291,-0.004999999888241291,-5.135700139136038e-18,-2.2204459996194763e-18,-4.948179948631492e-18,-0.030523808673024178,0.004000000189989805,0.004999999888241291,0.029547618702054024,0.0033333334140479565,-2.0900953218167362e-17,-1.9009305590915044e-32,-0.0020000000949949026,5.104784879004889e-34,-1.1736643199930133e-17,-0.0024999999441206455,-0.0,-0.004761904943734407,-0.0016666667070239782,-1.926125921336037e-33,-0.030523808673024178,0.004000000189989805,0.004999999888241291,0.0033333334140479565,0.029547618702054024,-2.0900953218167362e-17,-1.9009305590915044e-32,7.053845681444165e-21,-0.0020000000949949026,-1.1736643199930133e-17,2.0084820921014082e-20,-0.0024999999441206455,-0.0,-0.0016666667070239782,-0.004761904943734407,0.0033333334140479565,-0.009999999776482582,-3.5633716561477854e-17,-2.0900953218167362e-17,-2.0900953218167362e-17,0.0033333334140479565,3.031648998255583e-18,2.0210994011021063e-18,2.0210994011021063e-18,1.1102230411687688e-17,2.2204459996194763e-18,2.2204459996194763e-18,3.1720658023686032e-18,1.4802974020113686e-18,3.1720658023686032e-18,0.006000000052154064,-0.004000000189989805,-0.006000000052154064,-1.9009305590915044e-32,-1.9009305590915044e-32,3.031648998255583e-18,0.004000000189989805,1.8381791074273598e-33,1.8381791074273598e-33,1.0097419331746677e-32,2.0194838663493354e-33,2.0194838663493354e-33,2.8849770306437616e-33,1.3463226081780557e-33,2.8849770306437616e-33,0.004000000189989805,-0.0026666666381061077,-1.6263032587282567e-19,-0.0020000000949949026,7.053845681444165e-21,2.0210994011021063e-18,1.8381791074273598e-33,0.0013333333190530539,1.4285908748624846e-22,6.355568816477878e-33,8.131516293641283e-20,4.135362034721441e-34,-3.2526065174565133e-19,-0.0,-1.6708354680845544e-21,0.004000000189989805,-0.0026666666381061077,-5.0822306415033334e-20,5.104784879004889e-34,-0.0020000000949949026,2.0210994011021063e-18,1.8381791074273598e-33,1.4285908748624846e-22,0.0013333333190530539,6.162975822039155e-33,-1.6939004987757684e-21,2.710505431213761e-20,3.4014066645996136e-22,1.5944175785813113e-34,-4.399119171509872e-19,0.004999999888241291,-3.3306692062243676e-17,-0.029999999329447746,-1.1736643199930133e-17,-1.1736643199930133e-17,1.1102230411687688e-17,1.0097419331746677e-32,6.355568816477878e-33,6.162975822039155e-33,0.014999999664723873,7.896312771987667e-33,7.703719777548943e-33,2.3790494034752407e-18,1.1102229998097382e-18,2.3790494034752407e-18,0.004999999888241291,-6.820580606532544e-18,-0.004999999888241291,-0.0024999999441206455,2.0084820921014082e-20,2.2204459996194763e-18,2.0194838663493354e-33,8.131516293641283e-20,-1.6939004987757684e-21,7.896312771987667e-33,0.0024999999441206455,3.131311698256661e-34,1.8880071779156664e-19,-0.0,-4.033096387190231e-21,0.004999999888241291,-6.715548107482704e-18,-0.004999999888241291,-0.0,-0.0024999999441206455,2.2204459996194763e-18,2.0194838663493354e-33,4.135362034721441e-34,2.710505431213761e-20,7.703719777548943e-33,3.131311698256661e-34,0.0024999999441206455,-1.0789976292624273e-34,1.3774278646986183e-34,9.907364501337236e-20,0.0023809524718672037,-8.866356252873179e-18,-5.135700139136038e-18,-0.004761904943734407,-0.0,3.1720658023686032e-18,2.8849770306437616e-33,-3.2526065174565133e-19,3.4014066645996136e-22,2.3790494034752407e-18,1.8880071779156664e-19,-1.0789976292624273e-34,0.0011904762359336019,1.2750984411890236e-34,1.5032987793773008e-21,0.0033333334140479565,-4.440891999238953e-18,-2.2204459996194763e-18,-0.0016666667070239782,-0.0016666667070239782,1.4802974020113686e-18,1.3463226081780557e-33,-0.0,1.5944175785813113e-34,1.1102229998097382e-18,-0.0,1.3774278646986183e-34,1.2750984411890236e-34,0.0008333333535119891,4.0864921772212615e-35,0.0023809524718672037,-8.633031763129121e-18,-4.948179948631492e-18,-1.926125921336037e-33,-0.004761904943734407,3.1720658023686032e-18,2.8849770306437616e-33,-1.6708354680845544e-21,-4.399119171509872e-19,2.3790494034752407e-18,-4.033096387190231e-21,9.907364501337236e-20,1.5032987793773008e-21,4.0864921772212615e-35,0.0011904762359336019,4.0,3.0,5.0,6.0,0.09392856806516647,-0.030476190149784088,-0.037261903285980225,-0.025833332911133766,-0.022440476343035698,0.0027777778450399637,0.004999999888241291,0.0033333334140479565,0.0028571428265422583,0.004166666883975267,0.004166666883975267,0.0035714285913854837,0.0019841270986944437,0.0023809524718672037,0.0014880952658131719,-0.030476190149784088,0.03976190462708473,0.004999999888241291,0.0033333334140479565,0.0028571428265422583,-0.008333333767950535,-0.0033333334140479565,-0.002222222276031971,-0.0019047618843615055,-2.311115933264683e-33,-1.0949747782473298e-19,-1.0339802893352595e-20,-3.3809386781092285e-19,1.1755636006733258e-21,-6.977897124150329e-19,-0.037261903285980225,0.004999999888241291,0.07892857491970062,0.004166666883975267,0.0035714285913854837,-0.0,-0.004999999888241291,-1.1563005271453334e-19,-5.433750251654406e-21,-0.02500000037252903,-0.004166666883975267,-0.0035714285913854837,-4.161702826070667e-18,-1.5453753197160952e-18,-2.7366069086477187e-18,-0.025833332911133766,0.0033333334140479565,0.004166666883975267,0.024821428582072258,0.0023809524718672037,-0.0,-0.0,-0.0016666667070239782,4.466827105246844e-34,-9.912705813347644e-18,-0.0020833334419876337,-0.0,-0.003968254197388887,-0.0011904762359336019,-2.0845192851700285e-34,-0.022440476343035698,0.0028571428265422583,0.0035714285913854837,0.0023809524718672037,0.01716071367263794,-0.0,-0.0,-6.193823736750795e-20,-0.0011428571306169033,-8.40101835465596e-18,-6.643879137108973e-20,-0.0014285714132711291,-1.0842021724855044e-19,-0.0009523809421807528,-0.0022321429569274187,0.0027777778450399637,-0.008333333767950535,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-0.004999999888241291,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.002222222276031971,-1.1563005271453334e-19,-0.0016666667070239782,-6.193823736750795e-20,-0.0,-0.0,0.0011111111380159855,2.1559782100114514e-21,1.925929944387236e-34,5.1352648741127733e-20,5.1699014466762975e-21,1.6263032587282567e-19,1.3552527156068805e-20,4.8702665788889004e-21,0.0028571428265422583,-0.0019047618843615055,-5.433750251654406e-21,4.466827105246844e-34,-0.0011428571306169033,-0.0,-0.0,2.1559782100114514e-21,0.0007619047537446022,7.703719777548943e-34,2.716875125827203e-21,0.0,5.13328174090592e-21,-1.1312247407462445e-20,2.752196885050082e-19,0.004166666883975267,-2.311115933264683e-33,-0.02500000037252903,-9.912705813347644e-18,-8.40101835465596e-18,-0.0,-0.0,1.925929944387236e-34,7.703719777548943e-34,0.012500000186264515,1.8502230572419918e-34,-2.5932575564250863e-36,1.9825412040285595e-18,7.930164505921508e-19,1.3629969872967551e-18,0.004166666883975267,-1.0949747782473298e-19,-0.004166666883975267,-0.0020833334419876337,-6.643879137108973e-20,-0.0,-0.0,5.1352648741127733e-20,2.716875125827203e-21,1.8502230572419918e-34,0.0020833334419876337,6.462376808345372e-21,8.292359625047659e-20,1.3552527156068805e-20,5.306396749063917e-21,0.0035714285913854837,-1.0339802893352595e-20,-0.0035714285913854837,-0.0,-0.0014285714132711291,-0.0,-0.0,5.1699014466762975e-21,0.0,-2.5932575564250863e-36,6.462376808345372e-21,0.0014285714132711291,1.230928923568581e-20,-2.710505431213761e-20,-0.0,0.0019841270986944437,-3.3809386781092285e-19,-4.161702826070667e-18,-0.003968254197388887,-1.0842021724855044e-19,-0.0,-0.0,1.6263032587282567e-19,5.13328174090592e-21,1.9825412040285595e-18,8.292359625047659e-20,1.230928923568581e-20,0.0009920635493472219,-7.788808580394602e-21,8.010745823945267e-21,0.0023809524718672037,1.1755636006733258e-21,-1.5453753197160952e-18,-0.0011904762359336019,-0.0009523809421807528,-0.0,-0.0,1.3552527156068805e-20,-1.1312247407462445e-20,7.930164505921508e-19,1.3552527156068805e-20,-2.710505431213761e-20,-7.788808580394602e-21,0.0004761904710903764,-1.898341539511552e-20,0.0014880952658131719,-6.977897124150329e-19,-2.7366069086477187e-18,-2.0845192851700285e-34,-0.0022321429569274187,-0.0,-0.0,4.8702665788889004e-21,2.752196885050082e-19,1.3629969872967551e-18,5.306396749063917e-21,-0.0,8.010745823945267e-21,-1.898341539511552e-20,0.00044642857392318547,4.0,3.0,5.0,7.0,0.08282596617937088,-0.026428570970892906,-0.03232142701745033,-0.022397959604859352,-0.017202381044626236,0.0023809524718672037,0.004285714123398066,0.0028571428265422583,0.002142857061699033,0.0035714285913854837,0.0035714285913854837,0.0026785715017467737,0.001700680237263441,0.0017857142956927419,0.0009920635493472219,-0.026428570970892906,0.034285712987184525,0.004285714123398066,0.0028571428265422583,0.002142857061699033,-0.0071428571827709675,-0.0028571428265422583,-0.0019047618843615055,-0.0014285714132711291,-4.1078252440526384e-17,-1.8200104293424545e-17,-7.137148417220875e-18,-1.4576398083397142e-17,-4.916702004011093e-18,3.6251934807687736e-19,-0.03232142701745033,0.004285714123398066,0.06803571432828903,0.0035714285913854837,0.0026785715017467737,-4.1187006838742406e-17,-0.004285714123398066,-1.5408687363413297e-17,2.474211363070638e-18,-0.02142857201397419,-0.0035714285913854837,-0.0026785715017467737,-6.1175552544303565e-18,2.8548592014522276e-18,7.797995416298677e-18,-0.022397959604859352,0.0028571428265422583,0.0035714285913854837,0.021403061226010323,0.0017857142956927419,-2.5985260212255175e-17,-1.3816612011251872e-17,-0.0014285714132711291,9.24430582809662e-19,-8.343665786884596e-18,-0.0017857142956927419,-1.189524624189438e-19,-0.003401360474526882,-0.0008928571478463709,2.0517727057816445e-18,-0.017202381044626236,0.002142857061699033,0.0026785715017467737,0.0017857142956927419,0.010892856866121292,-4.592698253206216e-18,-2.7596972418568302e-18,-1.998401358298498e-18,-0.0007142857066355646,2.922265653260806e-17,6.542385704460547e-18,-0.0008928571478463709,3.34649337813766e-18,-0.0005952381179668009,-0.0011904762359336019,0.0023809524718672037,-0.0071428571827709675,-4.1187006838742406e-17,-2.5985260212255175e-17,-4.592698253206216e-18,0.0023809524718672037,3.667512454497293e-18,2.4450081651347597e-18,5.946364643193373e-19,1.0309214012794325e-17,3.965082408057119e-18,1.5860329011843016e-18,3.3986419458803e-18,1.05735530192206e-18,-4.4056469836361075e-20,0.004285714123398066,-0.0028571428265422583,-0.004285714123398066,-1.3816612011251872e-17,-2.7596972418568302e-18,3.667512454497293e-18,0.0028571428265422583,1.5225915603215112e-18,5.709718609699608e-19,7.612957594812403e-18,2.2204459996194763e-18,9.516196993515503e-19,1.812608941298422e-18,4.758098496757752e-19,-4.016019144234743e-33,0.0028571428265422583,-0.0019047618843615055,-1.5408687363413297e-17,-0.0014285714132711291,-1.998401358298498e-18,2.4450081651347597e-18,1.5225915603215112e-18,0.0009523809421807528,3.806478900803778e-19,3.806478797406201e-18,1.72499955428594e-18,4.758098496757752e-19,1.812608941298422e-18,4.758098496757752e-19,-2.7415435772984107e-33,0.002142857061699033,-0.0014285714132711291,2.474211363070638e-18,9.24430582809662e-19,-0.0007142857066355646,5.946364643193373e-19,5.709718609699608e-19,3.806478900803778e-19,0.0004761904710903764,-1.9032393987031007e-18,2.5518571763130875e-33,-1.3920235096917482e-34,-4.531522353246055e-19,-6.505243134635638e-35,-1.3552527156068805e-19,0.0035714285913854837,-4.1078252440526384e-17,-0.02142857201397419,-8.343665786884596e-18,2.922265653260806e-17,1.0309214012794325e-17,7.612957594812403e-18,3.806478797406201e-18,-1.9032393987031007e-18,0.010714286006987095,4.7755013423236194e-32,-2.9738117026452626e-18,1.69932097294015e-18,-1.387778801460961e-18,-3.105981102460823e-18,0.0035714285913854837,-1.8200104293424545e-17,-0.0035714285913854837,-0.0017857142956927419,6.542385704460547e-18,3.965082408057119e-18,2.2204459996194763e-18,1.72499955428594e-18,2.5518571763130875e-33,4.7755013423236194e-32,0.0017857142956927419,-5.947623508688102e-19,1.2128065251641039e-32,-3.965082252960754e-19,-7.930164505921508e-19,0.0026785715017467737,-7.137148417220875e-18,-0.0026785715017467737,-1.189524624189438e-19,-0.0008928571478463709,1.5860329011843016e-18,9.516196993515503e-19,4.758098496757752e-19,-1.3920235096917482e-34,-2.9738117026452626e-18,-5.947623508688102e-19,0.0008928571478463709,3.5178314140448105e-33,-3.598715974984005e-35,-1.5566074985820314e-35,0.001700680237263441,-1.4576398083397142e-17,-6.1175552544303565e-18,-0.003401360474526882,3.34649337813766e-18,3.3986419458803e-18,1.812608941298422e-18,1.812608941298422e-18,-4.531522353246055e-19,1.69932097294015e-18,1.2128065251641039e-32,3.5178314140448105e-33,0.0008503401186317205,-1.0609516764302874e-19,-3.146890767220705e-19,0.0017857142956927419,-4.916702004011093e-18,2.8548592014522276e-18,-0.0008928571478463709,-0.0005952381179668009,1.05735530192206e-18,4.758098496757752e-19,4.758098496757752e-19,-6.505243134635638e-35,-1.387778801460961e-18,-3.965082252960754e-19,-3.598715974984005e-35,-1.0609516764302874e-19,0.00029761905898340046,-1.5428726391738273e-35,0.0009920635493472219,3.6251934807687736e-19,7.797995416298677e-18,2.0517727057816445e-18,-0.0011904762359336019,-4.4056469836361075e-20,-4.016019144234743e-33,-2.7415435772984107e-33,-1.3552527156068805e-19,-3.105981102460823e-18,-7.930164505921508e-19,-1.5566074985820314e-35,-3.146890767220705e-19,-1.5428726391738273e-35,0.00019841270113829523,4.0,3.0,5.0,8.0,0.07408729940652847,-0.023333333432674408,-0.028541667386889458,-0.019771825522184372,-0.013611110858619213,0.0020833334419876337,0.0037499999161809683,0.0024999999441206455,0.0016666667070239782,0.0031250000465661287,0.0031250000465661287,0.0020833334419876337,0.0014880952658131719,0.0013888889225199819,0.0006944444612599909,-0.023333333432674408,0.030138889327645302,0.0037499999161809683,0.0024999999441206455,0.0016666667070239782,-0.0062500000931322575,-0.0024999999441206455,-0.0016666667070239782,-0.0011111111380159855,2.6020852139652106e-17,5.854691731421724e-18,1.8431436932253575e-18,5.854691731421724e-18,7.589415207398531e-19,-4.119968255444917e-18,-0.028541667386889458,0.0037499999161809683,0.05979166552424431,0.0031250000465661287,0.0020833334419876337,2.0890553903506346e-17,-0.0037499999161809683,4.228388472693467e-18,1.463672932855431e-18,-0.01875000074505806,-0.0031250000465661287,-0.0020833334419876337,7.589415207398531e-18,-4.336808689942018e-19,-5.583641188300348e-18,-0.019771825522184372,0.0024999999441206455,0.0031250000465661287,0.018814483657479286,0.0013888889225199819,1.0376865806372587e-17,4.891618579116035e-18,-0.0012499999720603228,4.0657581468206416e-20,1.0278185640836849e-17,-0.0015625000232830644,6.505213034913027e-19,-0.0029761905316263437,-0.0006944444612599909,-3.0357660829594124e-18,-0.013611110858619213,0.0016666667070239782,0.0020833334419876337,0.0013888889225199819,0.007361111231148243,-5.204170427930421e-18,-4.579107262151663e-18,-2.9728538274959262e-18,-0.0004761904710903764,-1.2470095977274777e-17,-4.329324359759638e-18,-0.0005952381179668009,-2.0047735441473003e-18,-0.00039682540227659047,-0.0006944444612599909,0.0020833334419876337,-0.0062500000931322575,2.0890553903506346e-17,1.0376865806372587e-17,-5.204170427930421e-18,0.0020833334419876337,-3.0160959347880546e-18,-2.1275579595279872e-18,5.679719353821724e-19,-5.255641327956227e-18,-1.7076994853646997e-18,-4.529068211766187e-19,-9.6673663184111e-19,-2.8166138337465907e-19,7.589415207398531e-19,0.0037499999161809683,-0.0024999999441206455,-0.0037499999161809683,4.891618579116035e-18,-4.579107262151663e-18,-3.0160959347880546e-18,0.0024999999441206455,-5.421010862427522e-19,1.8153407828195607e-19,-3.2259315970629033e-18,-2.8356361444019547e-19,-1.9862625345080707e-19,-9.254188568465098e-19,1.412115889723646e-20,6.2341624917916505e-19,0.0024999999441206455,-0.0016666667070239782,4.228388472693467e-18,-0.0012499999720603228,-2.9728538274959262e-18,-2.1275579595279872e-18,-5.421010862427522e-19,0.0008333333535119891,9.580680504401928e-20,-1.3234240464067589e-18,-2.4464882497445585e-19,3.875502405406897e-20,-9.579357403162756e-19,8.223126061805391e-21,3.7947076036992655e-19,0.0016666667070239782,-0.0011111111380159855,1.463672932855431e-18,4.0657581468206416e-20,-0.0004761904710903764,5.679719353821724e-19,1.8153407828195607e-19,9.580680504401928e-20,0.0003174603043589741,-7.995991022080595e-19,1.3396887146144558e-20,-2.9774841131463596e-20,-6.506504470644375e-20,2.1449995280327624e-20,1.8973538018496328e-19,0.0031250000465661287,2.6020852139652106e-17,-0.01875000074505806,1.0278185640836849e-17,-1.2470095977274777e-17,-5.255641327956227e-18,-3.2259315970629033e-18,-1.3234240464067589e-18,-7.995991022080595e-19,0.00937500037252903,9.740926456309676e-19,3.2437550645167365e-18,-2.11218749618068e-18,2.102257110532037e-21,1.3010426069826053e-18,0.0031250000465661287,5.854691731421724e-18,-0.0031250000465661287,-0.0015625000232830644,-4.329324359759638e-18,-1.7076994853646997e-18,-2.8356361444019547e-19,-2.4464882497445585e-19,1.3396887146144558e-20,9.740926456309676e-19,0.0015625000232830644,6.776263578034403e-20,-6.563235618980559e-19,2.166216452250806e-19,4.87890977618477e-19,0.0020833334419876337,1.8431436932253575e-18,-0.0020833334419876337,6.505213034913027e-19,-0.0005952381179668009,-4.529068211766187e-19,-1.9862625345080707e-19,3.875502405406897e-20,-2.9774841131463596e-20,3.2437550645167365e-18,6.776263578034403e-20,0.0005952381179668009,-1.6727559124716447e-19,2.5449316202896696e-21,1.6263032587282567e-19,0.0014880952658131719,5.854691731421724e-18,7.589415207398531e-18,-0.0029761905316263437,-2.0047735441473003e-18,-9.6673663184111e-19,-9.254188568465098e-19,-9.579357403162756e-19,-6.506504470644375e-20,-2.11218749618068e-18,-6.563235618980559e-19,-1.6727559124716447e-19,0.0007440476329065859,-2.371692252312041e-19,3.7947076036992655e-19,0.0013888889225199819,7.589415207398531e-19,-4.336808689942018e-19,-0.0006944444612599909,-0.00039682540227659047,-2.8166138337465907e-19,1.412115889723646e-20,8.223126061805391e-21,2.1449995280327624e-20,2.102257110532037e-21,2.166216452250806e-19,2.5449316202896696e-21,-2.371692252312041e-19,0.00019841270113829523,1.0842021724855044e-19,0.0006944444612599909,-4.119968255444917e-18,-5.583641188300348e-18,-3.0357660829594124e-18,-0.0006944444612599909,7.589415207398531e-19,6.2341624917916505e-19,3.7947076036992655e-19,1.8973538018496328e-19,1.3010426069826053e-18,4.87890977618477e-19,1.6263032587282567e-19,3.7947076036992655e-19,1.0842021724855044e-19,9.920635056914762e-05,4.0,3.0,6.0,3.0,0.1373346596956253,-0.04801587387919426,-0.05863095074892044,-0.03541666641831398,-0.05863095074892044,0.004629629664123058,0.008333333767950535,0.004761904943734407,0.008333333767950535,0.0069444444961845875,0.0059523810632526875,0.010416666977107525,0.0024801588151603937,0.0059523810632526875,0.0069444444961845875,-0.04801587387919426,0.06441798806190491,0.008333333767950535,0.004761904943734407,0.008333333767950535,-0.013888888992369175,-0.0055555556900799274,-0.0031746032182127237,-0.0055555556900799274,2.8888949165808538e-33,-6.776263578034403e-20,-0.0,-6.776263578034403e-19,-1.3552527156068805e-19,2.4074124304840448e-33,-0.05863095074892044,0.008333333767950535,0.12807539105415344,0.0059523810632526875,0.010416666977107525,-0.0,-0.008333333767950535,-6.776263578034403e-20,-0.0,-0.0416666679084301,-0.0059523810632526875,-0.010416666977107525,8.834326992374513e-18,7.930164816114238e-18,4.625929158980737e-17,-0.03541666641831398,0.004761904943734407,0.0059523810632526875,0.027807539328932762,0.0059523810632526875,-0.0,-0.0,-0.0019047618843615055,-0.0,3.232092769137443e-17,-0.0023809524718672037,-1.9137832673866015e-32,-0.0037202381063252687,-0.0023809524718672037,1.8469619589329023e-17,-0.05863095074892044,0.008333333767950535,0.010416666977107525,0.0059523810632526875,0.12807539105415344,-0.0,-0.0,-1.3552527156068805e-19,-0.008333333767950535,6.85078063982461e-17,-1.6050230722854223e-32,-0.010416666977107525,8.673617379884035e-18,-0.0059523810632526875,-0.0416666679084301,0.004629629664123058,-0.013888888992369175,-0.0,-0.0,-0.0,0.004629629664123058,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0055555556900799274,-0.008333333767950535,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.0031746032182127237,-6.776263578034403e-20,-0.0019047618843615055,-1.3552527156068805e-19,-0.0,-0.0,0.0012698412174358964,-0.0,-1.1555579666323415e-33,2.710505431213761e-20,0.0,2.710505431213761e-19,5.421010862427522e-20,-9.62964972193618e-34,0.008333333767950535,-0.0055555556900799274,-0.0,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0069444444961845875,2.8888949165808538e-33,-0.0416666679084301,3.232092769137443e-17,6.85078063982461e-17,-0.0,-0.0,-1.1555579666323415e-33,-0.0,0.02083333395421505,-5.6392281390542176e-18,-1.2335811476632919e-17,-4.543323428852619e-18,-3.965082408057119e-18,-2.3129645794903686e-17,0.0059523810632526875,-6.776263578034403e-20,-0.0059523810632526875,-0.0023809524718672037,-1.6050230722854223e-32,-0.0,-0.0,2.710505431213761e-20,-0.0,-5.6392281390542176e-18,0.0023809524718672037,3.3390938245824354e-33,1.0092803531269993e-19,-0.0,6.355568816477878e-33,0.010416666977107525,-0.0,-0.010416666977107525,-1.9137832673866015e-32,-0.010416666977107525,-0.0,-0.0,0.0,-0.0,-1.2335811476632919e-17,3.3390938245824354e-33,0.010416666977107525,2.6901878821499158e-33,2.347800356888962e-33,1.3695502479806094e-32,0.0024801588151603937,-6.776263578034403e-19,8.834326992374513e-18,-0.0037202381063252687,8.673617379884035e-18,-0.0,-0.0,2.710505431213761e-19,-0.0,-4.543323428852619e-18,1.0092803531269993e-19,2.6901878821499158e-33,0.0007440476329065859,-8.281360061605264e-19,-3.3042352021841637e-18,0.0059523810632526875,-1.3552527156068805e-19,7.930164816114238e-18,-0.0023809524718672037,-0.0059523810632526875,-0.0,-0.0,5.421010862427522e-20,-0.0,-3.965082408057119e-18,-0.0,2.347800356888962e-33,-8.281360061605264e-19,0.0023809524718672037,-1.9484433716130517e-18,0.0069444444961845875,2.4074124304840448e-33,4.625929158980737e-17,1.8469619589329023e-17,-0.0416666679084301,-0.0,-0.0,-9.62964972193618e-34,-0.0,-2.3129645794903686e-17,6.355568816477878e-33,1.3695502479806094e-32,-3.3042352021841637e-18,-1.9484433716130517e-18,0.02083333395421505,4.0,3.0,6.0,4.0,0.11144841462373734,-0.037261903285980225,-0.04553571343421936,-0.02745535783469677,-0.037261903285980225,0.0034722222480922937,0.0062500000931322575,0.0035714285913854837,0.004999999888241291,0.0052083334885537624,0.004464285913854837,0.0062500000931322575,0.0018601190531626344,0.0035714285913854837,0.0034722222480922937,-0.037261903285980225,0.04914682358503342,0.0062500000931322575,0.0035714285913854837,0.004999999888241291,-0.010416666977107525,-0.004166666883975267,-0.0023809524718672037,-0.0033333334140479565,1.4444474582904269e-33,6.776263578034403e-20,-0.0,-4.0657581468206416e-19,-0.0,7.2222372914521344e-34,-0.04553571343421936,0.0062500000931322575,0.09761904925107956,0.004464285913854837,0.0062500000931322575,-0.0,-0.0062500000931322575,6.776263578034403e-20,-0.0,-0.03125,-0.004464285913854837,-0.0062500000931322575,6.931779737048966e-18,4.7580988069504814e-18,1.6190751890996458e-17,-0.02745535783469677,0.0035714285913854837,0.004464285913854837,0.021212797611951828,0.0035714285913854837,-0.0,-0.0,-0.0014285714132711291,-0.0,2.3778102455586057e-17,-0.0017857142956927419,-1.1263572175899774e-32,-0.0027901786379516125,-0.0014285714132711291,6.600757772336883e-18,-0.037261903285980225,0.004999999888241291,0.0062500000931322575,0.0035714285913854837,0.04914682358503342,-0.0,-0.0,8.666684749742561e-34,-0.0033333334140479565,3.7635238872227514e-17,-6.413713909857334e-33,-0.004166666883975267,4.7704895589362195e-18,-0.0023809524718672037,-0.010416666977107525,0.0034722222480922937,-0.010416666977107525,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.004166666883975267,-0.0062500000931322575,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0023809524718672037,6.776263578034403e-20,-0.0014285714132711291,8.666684749742561e-34,-0.0,-0.0,0.0009523809421807528,-0.0,-5.7777898331617076e-34,-2.710505431213761e-20,0.0,1.6263032587282567e-19,-0.0,-2.8888949165808538e-34,0.004999999888241291,-0.0033333334140479565,-0.0,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.002222222276031971,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0052083334885537624,1.4444474582904269e-33,-0.03125,2.3778102455586057e-17,3.7635238872227514e-17,-0.0,-0.0,-5.7777898331617076e-34,-0.0,0.015625,-3.1720658023686032e-18,-7.401487216851996e-18,-3.4074925716394644e-18,-2.3790494034752407e-18,-8.095375945498229e-18,0.004464285913854837,6.776263578034403e-20,-0.004464285913854837,-0.0017857142956927419,-6.413713909857334e-33,-0.0,-0.0,-2.710505431213761e-20,-0.0,-3.1720658023686032e-18,0.0017857142956927419,1.5025921843278974e-33,-4.671792668842471e-20,-0.0,1.6370404527291505e-33,0.0062500000931322575,-0.0,-0.0062500000931322575,-1.1263572175899774e-32,-0.004166666883975267,-0.0,-0.0,0.0,-0.0,-7.401487216851996e-18,1.5025921843278974e-33,0.004166666883975267,1.6141128027583464e-33,1.126944138245923e-33,3.834740650264668e-33,0.0018601190531626344,-4.0657581468206416e-19,6.931779737048966e-18,-0.0027901786379516125,4.7704895589362195e-18,-0.0,-0.0,1.6263032587282567e-19,-0.0,-3.4074925716394644e-18,-4.671792668842471e-20,1.6141128027583464e-33,0.0005580357392318547,-4.87890977618477e-19,-1.1564823517837303e-18,0.0035714285913854837,-0.0,4.7580988069504814e-18,-0.0014285714132711291,-0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-2.3790494034752407e-18,-0.0,1.126944138245923e-33,-4.87890977618477e-19,0.0009523809421807528,-5.455641295759938e-19,0.0034722222480922937,7.2222372914521344e-34,1.6190751890996458e-17,6.600757772336883e-18,-0.010416666977107525,-0.0,-0.0,-2.8888949165808538e-34,-0.0,-8.095375945498229e-18,1.6370404527291505e-33,3.834740650264668e-33,-1.1564823517837303e-18,-5.455641295759938e-19,0.0034722222480922937,4.0,3.0,6.0,5.0,0.09392856806516647,-0.030476190149784088,-0.037261903285980225,-0.022440476343035698,-0.025833332911133766,0.0027777778450399637,0.004999999888241291,0.0028571428265422583,0.0033333334140479565,0.004166666883975267,0.0035714285913854837,0.004166666883975267,0.0014880952658131719,0.0023809524718672037,0.0019841270986944437,-0.030476190149784088,0.03976190462708473,0.004999999888241291,0.0028571428265422583,0.0033333334140479565,-0.008333333767950535,-0.0033333334140479565,-0.0019047618843615055,-0.002222222276031971,-3.322229154067982e-33,5.370023417158011e-21,5.952340635378156e-20,-9.50273049314314e-19,-1.9932725024585454e-19,-2.76076983661737e-19,-0.037261903285980225,0.004999999888241291,0.07892857491970062,0.0035714285913854837,0.004166666883975267,-0.0,-0.004999999888241291,4.250636002562441e-21,6.092264052105183e-20,-0.02500000037252903,-0.0035714285913854837,-0.004166666883975267,-2.7176919763756218e-18,-1.966769351289011e-18,-3.750952644427354e-18,-0.022440476343035698,0.0028571428265422583,0.0035714285913854837,0.01716071367263794,0.0023809524718672037,-0.0,-0.0,-0.0011428571306169033,-3.0322993690122027e-19,-8.40101835465596e-18,-0.0014285714132711291,-3.5236570605778894e-19,-0.0022321429569274187,-0.0009523809421807528,-6.309817257796363e-18,-0.025833332911133766,0.0033333334140479565,0.004166666883975267,0.0023809524718672037,0.024821428582072258,-0.0,-0.0,9.809994357247234e-20,-0.0016666667070239782,-9.912705813347644e-18,3.449321505478531e-20,-0.0020833334419876337,-5.421010862427522e-18,-0.0011904762359336019,-0.003968254197388887,0.0027777778450399637,-0.008333333767950535,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-0.004999999888241291,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0019047618843615055,4.250636002562441e-21,-0.0011428571306169033,9.809994357247234e-20,-0.0,-0.0,0.0007619047537446022,4.086100317443491e-22,8.666684749742561e-34,-7.251446019420692e-37,-2.1253180012812205e-21,3.7947076036992655e-19,-4.0657581468206416e-20,1.1623942431255959e-21,0.0033333334140479565,-0.002222222276031971,6.092264052105183e-20,-3.0322993690122027e-19,-0.0016666667070239782,-0.0,-0.0,4.086100317443491e-22,0.0011111111380159855,5.7777898331617076e-34,-2.6850117085790054e-21,-2.710505431213761e-20,7.980664702228341e-22,1.5048559549583676e-19,1.3658549738613083e-19,0.004166666883975267,-3.322229154067982e-33,-0.02500000037252903,-8.40101835465596e-18,-9.912705813347644e-18,-0.0,-0.0,8.666684749742561e-34,5.7777898331617076e-34,0.012500000186264515,1.0660739714458719e-36,9.760585328527137e-35,1.3629969872967551e-18,7.930164505921508e-19,1.9825412040285595e-18,0.0035714285913854837,5.370023417158011e-21,-0.0035714285913854837,-0.0014285714132711291,3.449321505478531e-20,-0.0,-0.0,-7.251446019420692e-37,-2.6850117085790054e-21,1.0660739714458719e-36,0.0014285714132711291,-2.6566476530628194e-21,2.004392436309492e-37,-0.0,-6.392884751161681e-21,0.004166666883975267,5.952340635378156e-20,-0.004166666883975267,-3.5236570605778894e-19,-0.0020833334419876337,-0.0,-0.0,-2.1253180012812205e-21,-2.710505431213761e-20,9.760585328527137e-35,-2.6566476530628194e-21,0.0020833334419876337,-4.151011629744519e-21,1.903682379770517e-19,-9.907364501337236e-20,0.0014880952658131719,-9.50273049314314e-19,-2.7176919763756218e-18,-0.0022321429569274187,-5.421010862427522e-18,-0.0,-0.0,3.7947076036992655e-19,7.980664702228341e-22,1.3629969872967551e-18,2.004392436309492e-37,-4.151011629744519e-21,0.00044642857392318547,3.636039886550875e-19,1.114884989742087e-18,0.0023809524718672037,-1.9932725024585454e-19,-1.966769351289011e-18,-0.0009523809421807528,-0.0011904762359336019,-0.0,-0.0,-4.0657581468206416e-20,1.5048559549583676e-19,7.930164505921508e-19,-0.0,1.903682379770517e-19,3.636039886550875e-19,0.0004761904710903764,3.7385991672679694e-19,0.0019841270986944437,-2.76076983661737e-19,-3.750952644427354e-18,-6.309817257796363e-18,-0.003968254197388887,-0.0,-0.0,1.1623942431255959e-21,1.3658549738613083e-19,1.9825412040285595e-18,-6.392884751161681e-21,-9.907364501337236e-20,1.114884989742087e-18,3.7385991672679694e-19,0.0009920635493472219,4.0,3.0,6.0,6.0,0.08123110234737396,-0.02579365111887455,-0.03154762089252472,-0.01898384280502796,-0.01898384280502796,0.002314814832061529,0.004166666883975267,0.0023809524718672037,0.0023809524718672037,0.0034722222480922937,0.0029761905316263437,0.0029761905316263437,0.0012400794075801969,0.001700680237263441,0.0012400794075801969,-0.02579365111887455,0.033399470150470734,0.004166666883975267,0.0023809524718672037,0.0023809524718672037,-0.0069444444961845875,-0.0027777778450399637,-0.0015873016091063619,-0.0015873016091063619,3.370377402677663e-33,-1.3239358918757573e-21,5.073238041178017e-21,-4.063657883546581e-19,-4.8148910374050234e-20,-3.182494171748636e-19,-0.03154762089252472,0.004166666883975267,0.06626984477043152,0.0029761905316263437,0.0029761905316263437,-0.0,-0.004166666883975267,5.073238041178017e-21,-1.3239358918757573e-21,-0.02083333395421505,-0.0029761905316263437,-0.0029761905316263437,4.553232225410392e-18,2.2657773583437605e-18,4.5407376622577784e-18,-0.01898384280502796,0.0023809524718672037,0.0029761905316263437,0.01441397424787283,0.001700680237263441,-0.0,-0.0,-0.0009523809421807528,-1.4276751247340257e-20,1.7010123918566985e-17,-0.0011904762359336019,2.710505431213761e-20,-0.0018601190531626344,-0.0006802721181884408,1.4837335102759139e-18,-0.01898384280502796,0.0023809524718672037,0.0029761905316263437,0.001700680237263441,0.01441397424787283,-0.0,-0.0,-1.4180325333150659e-21,-0.0009523809421807528,1.7010123918566985e-17,-3.870678989239304e-21,-0.0011904762359336019,2.1141942363467336e-18,-0.0006802721181884408,-0.0018601190531626344,0.002314814832061529,-0.0069444444961845875,-0.0,-0.0,-0.0,0.002314814832061529,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0027777778450399637,-0.004166666883975267,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0015873016091063619,5.073238041178017e-21,-0.0009523809421807528,-1.4180325333150659e-21,-0.0,-0.0,0.0006349206087179482,-4.301324670235088e-23,-3.851859888774472e-34,-2.5399707702921145e-34,-2.0292951760815284e-21,1.6263032587282567e-19,1.3552527156068805e-20,-5.5963397096350925e-21,0.0023809524718672037,-0.0015873016091063619,-1.3239358918757573e-21,-1.4276751247340257e-20,-0.0009523809421807528,-0.0,-0.0,-4.301324670235088e-23,0.0006349206087179482,-9.62964972193618e-34,5.295743668477225e-22,-2.5396521011204462e-34,-8.401024697249099e-23,5.707037316668715e-21,1.328961038330824e-19,0.0034722222480922937,3.370377402677663e-33,-0.02083333395421505,1.7010123918566985e-17,1.7010123918566985e-17,-0.0,-0.0,-3.851859888774472e-34,-9.62964972193618e-34,0.010416666977107525,-2.8196140695271088e-18,-2.8196140695271088e-18,-2.2716617144263096e-18,-1.1328806141609079e-18,-2.2716617144263096e-18,0.0029761905316263437,-1.3239358918757573e-21,-0.0029761905316263437,-0.0011904762359336019,-3.870678989239304e-21,-0.0,-0.0,-2.5399707702921145e-34,5.295743668477225e-22,-2.8196140695271088e-18,0.0011904762359336019,-2.5366190205890085e-21,1.1855398913638996e-34,-0.0,1.0343249344605971e-21,0.0029761905316263437,5.073238041178017e-21,-0.0029761905316263437,2.710505431213761e-20,-0.0011904762359336019,-0.0,-0.0,-2.0292951760815284e-21,-2.5396521011204462e-34,-2.8196140695271088e-18,-2.5366190205890085e-21,0.0011904762359336019,-3.963467408996943e-21,-6.4305436360242806e-24,1.1847464326770945e-34,0.0012400794075801969,-4.063657883546581e-19,4.553232225410392e-18,-0.0018601190531626344,2.1141942363467336e-18,-0.0,-0.0,1.6263032587282567e-19,-8.401024697249099e-23,-2.2716617144263096e-18,1.1855398913638996e-34,-3.963467408996943e-21,0.00037202381645329297,-1.934814743840628e-19,-3.1786123682302893e-19,0.001700680237263441,-4.8148910374050234e-20,2.2657773583437605e-18,-0.0006802721181884408,-0.0006802721181884408,-0.0,-0.0,1.3552527156068805e-20,5.707037316668715e-21,-1.1328806141609079e-18,-0.0,-6.4305436360242806e-24,-1.934814743840628e-19,0.0002721088530961424,4.403614251904244e-20,0.0012400794075801969,-3.182494171748636e-19,4.5407376622577784e-18,1.4837335102759139e-18,-0.0018601190531626344,-0.0,-0.0,-5.5963397096350925e-21,1.328961038330824e-19,-2.2716617144263096e-18,1.0343249344605971e-21,1.1847464326770945e-34,-3.1786123682302893e-19,4.403614251904244e-20,0.00037202381645329297,4.0,3.0,6.0,7.0,0.07158683240413666,-0.022363945841789246,-0.027359694242477417,-0.01645408198237419,-0.014547902159392834,0.0019841270986944437,0.0035714285913854837,0.0020408162381500006,0.0017857142956927419,0.0029761905316263437,0.0025510203558951616,0.0022321429569274187,0.0010629252064973116,0.0012755101779475808,0.0008267195662483573,-0.022363945841789246,0.028798185288906097,0.0035714285913854837,0.0020408162381500006,0.0017857142956927419,-0.0059523810632526875,-0.0023809524718672037,-0.0013605442363768816,-0.0011904762359336019,-1.4444474582904269e-33,-5.969495585800682e-20,-1.6430215199874588e-21,-1.9055666713565186e-19,-1.792997180446083e-20,2.9797142050024996e-19,-0.027359694242477417,0.0035714285913854837,0.05712159723043442,0.0025510203558951616,0.0022321429569274187,-0.0,-0.0035714285913854837,-6.553373945868307e-20,3.2226276098985806e-21,-0.01785714365541935,-0.0025510203558951616,-0.0022321429569274187,3.849598481967672e-18,1.7047059187278703e-18,2.8690416266447555e-18,-0.01645408198237419,0.0020408162381500006,0.0025510203558951616,0.012427721172571182,0.0012755101779475808,-0.0,-0.0,-0.0008163265301845968,9.647673248289487e-21,1.4356227419753903e-17,-0.0010204081190750003,1.3552527156068805e-20,-0.0015943878097459674,-0.0005102040595375001,9.239531961986424e-19,-0.014547902159392834,0.0017857142956927419,0.0022321429569274187,0.0012755101779475808,0.009148242883384228,-0.0,-0.0,1.942975849935744e-20,-0.0005952381179668009,1.2225669896529645e-17,-1.8638731899583445e-21,-0.0007440476329065859,1.7618285302889447e-18,-0.00042517005931586027,-0.0009920635493472219,0.0019841270986944437,-0.0059523810632526875,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0023809524718672037,-0.0035714285913854837,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,-0.0013605442363768816,-6.553373945868307e-20,-0.0008163265301845968,1.942975849935744e-20,-0.0,-0.0,0.0005442177061922848,-2.1727980876624076e-21,-5.7777898331617076e-34,2.5424843692889273e-20,6.572086281898227e-22,8.131516293641283e-20,-0.0,-2.5888877072350533e-21,0.0017857142956927419,-0.0011904762359336019,3.2226276098985806e-21,9.647673248289487e-21,-0.0005952381179668009,-0.0,-0.0,-2.1727980876624076e-21,0.00039682540227659047,9.62964972193618e-34,-1.289051023764593e-21,-1.1788464612264244e-34,-4.243746331229956e-21,5.976657402785871e-21,-9.71664056277209e-20,0.0029761905316263437,-1.4444474582904269e-33,-0.01785714365541935,1.4356227419753903e-17,1.2225669896529645e-17,-0.0,-0.0,-5.7777898331617076e-34,9.62964972193618e-34,0.008928571827709675,-2.071553075769625e-18,-1.5105074855478771e-18,-1.9471384941967493e-18,-8.49660486470075e-19,-1.4318352680661478e-18,0.0025510203558951616,-5.969495585800682e-20,-0.0025510203558951616,-0.0010204081190750003,-1.8638731899583445e-21,-0.0,-0.0,2.5424843692889273e-20,-1.289051023764593e-21,-2.071553075769625e-18,0.0010204081190750003,8.215107599937294e-22,1.633121101056769e-20,6.776263578034403e-21,-2.1484184739151843e-21,0.0022321429569274187,-1.6430215199874588e-21,-0.0022321429569274187,1.3552527156068805e-20,-0.0007440476329065859,-0.0,-0.0,6.572086281898227e-22,-1.1788464612264244e-34,-1.5105074855478771e-18,8.215107599937294e-22,0.0007440476329065859,1.2836105340912096e-21,-7.441858820010458e-21,4.585391666944729e-35,0.0010629252064973116,-1.9055666713565186e-19,3.849598481967672e-18,-0.0015943878097459674,1.7618285302889447e-18,-0.0,-0.0,8.131516293641283e-20,-4.243746331229956e-21,-1.9471384941967493e-18,1.633121101056769e-20,1.2836105340912096e-21,0.0003188775444868952,-1.9098407394309743e-19,-2.0501490536367795e-19,0.0012755101779475808,-1.792997180446083e-20,1.7047059187278703e-18,-0.0005102040595375001,-0.00042517005931586027,-0.0,-0.0,-0.0,5.976657402785871e-21,-8.49660486470075e-19,6.776263578034403e-21,-7.441858820010458e-21,-1.9098407394309743e-19,0.0001700680295471102,3.578410471768247e-20,0.0008267195662483573,2.9797142050024996e-19,2.8690416266447555e-18,9.239531961986424e-19,-0.0009920635493472219,-0.0,-0.0,-2.5888877072350533e-21,-9.71664056277209e-20,-1.4318352680661478e-18,-2.1484184739151843e-21,4.585391666944729e-35,-2.0501490536367795e-19,3.578410471768247e-20,0.0001653439103392884,4.0,3.0,6.0,8.0,0.06400462985038757,-0.01974206417798996,-0.02415674552321434,-0.014521329663693905,-0.011507936753332615,0.0017361111240461469,0.0031250000465661287,0.0017857142956927419,0.0013888889225199819,0.0026041667442768812,0.0022321429569274187,0.0017361111240461469,0.0009300595265813172,0.0009920635493472219,0.0005787037080153823,-0.01974206417798996,0.025314154103398323,0.0031250000465661287,0.0017857142956927419,0.0013888889225199819,-0.0052083334885537624,-0.0020833334419876337,-0.0011904762359336019,-0.0009259259095415473,4.840503902403787e-33,-3.965082252960754e-19,-4.743384504624082e-20,-6.195441133342278e-19,-2.3173607032340853e-19,1.1946138529081704e-19,-0.02415674552321434,0.0031250000465661287,0.05019841343164444,0.0022321429569274187,0.0017361111240461469,-0.0,-0.0031250000465661287,-3.965082252960754e-19,-4.743384504624082e-20,-0.015625,-0.0022321429569274187,-0.0017361111240461469,3.4074925716394644e-18,1.27426025650694e-18,1.8894339610747438e-18,-0.014521329663693905,0.0017857142956927419,0.0022321429569274187,0.010923858731985092,0.0009920635493472219,-0.0,-0.0,-0.0007142857066355646,-5.55102039026613e-20,1.241772882705527e-17,-0.0008928571478463709,-4.743384504624082e-20,-0.0013950893189758062,-0.00039682540227659047,6.107767743229899e-19,-0.011507936753332615,0.0013888889225199819,0.0017361111240461469,0.0009920635493472219,0.006181500386446714,-0.0,-0.0,-1.762258793454443e-19,-0.00039682540227659047,1.0160523334604243e-17,-2.121405287708374e-33,-0.0004960317746736109,8.38421583487317e-19,-0.00028344671591185033,-0.0005787037080153823,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0020833334419876337,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-3.965082252960754e-19,-0.0007142857066355646,-1.762258793454443e-19,-0.0,-0.0,0.0004761904710903764,9.86059317939245e-36,-2.205831679707331e-33,1.5860328753349075e-19,8.425943363201194e-36,2.4781765050356993e-19,7.04903478607686e-20,-1.0833355937178202e-34,0.0013888889225199819,-0.0009259259095415473,-4.743384504624082e-20,-5.55102039026613e-20,-0.00039682540227659047,-0.0,-0.0,9.86059317939245e-36,0.00026455026818439364,1.925929944387236e-34,-0.0,1.3552527156068805e-20,6.323123588232874e-35,1.5860058950297715e-20,-3.41318211376306e-20,0.0026041667442768812,4.840503902403787e-33,-0.015625,1.241772882705527e-17,1.0160523334604243e-17,-0.0,-0.0,-2.205831679707331e-33,1.925929944387236e-34,0.0078125,-1.5860329011843016e-18,-1.7622588710026254e-18,-1.7037462858197322e-18,-6.608470507765904e-19,-9.63735310386038e-19,0.0022321429569274187,-3.965082252960754e-19,-0.0022321429569274187,-0.0008928571478463709,-2.121405287708374e-33,-0.0,-0.0,1.5860328753349075e-19,-0.0,-1.5860329011843016e-18,0.0008928571478463709,3.5776005263383236e-34,4.284211302781717e-34,1.5763801687809202e-34,1.9565003739370484e-34,0.0017361111240461469,-4.743384504624082e-20,-0.0017361111240461469,-4.743384504624082e-20,-0.0004960317746736109,-0.0,-0.0,8.425943363201194e-36,1.3552527156068805e-20,-1.7622588710026254e-18,3.5776005263383236e-34,0.0004960317746736109,3.7766282503218453e-34,1.3552527156068805e-20,1.0867592591775443e-20,0.0009300595265813172,-6.195441133342278e-19,3.4074925716394644e-18,-0.0013950893189758062,8.38421583487317e-19,-0.0,-0.0,2.4781765050356993e-19,6.323123588232874e-35,-1.7037462858197322e-18,4.284211302781717e-34,3.7766282503218453e-34,0.00027901786961592734,5.0125471372442764e-20,-1.3767647106590584e-19,0.0009920635493472219,-2.3173607032340853e-19,1.27426025650694e-18,-0.00039682540227659047,-0.00028344671591185033,-0.0,-0.0,7.04903478607686e-20,1.5860058950297715e-20,-6.608470507765904e-19,1.5763801687809202e-34,1.3552527156068805e-20,5.0125471372442764e-20,0.00011337868636474013,2.2173010912422924e-20,0.0005787037080153823,1.1946138529081704e-19,1.8894339610747438e-18,6.107767743229899e-19,-0.0005787037080153823,-0.0,-0.0,-1.0833355937178202e-34,-3.41318211376306e-20,-9.63735310386038e-19,1.9565003739370484e-34,1.0867592591775443e-20,-1.3767647106590584e-19,2.2173010912422924e-20,8.26719551696442e-05,4.0,3.0,7.0,3.0,0.12136243283748627,-0.0416666679084301,-0.05089285597205162,-0.02718253992497921,-0.05089285597205162,0.003968254197388887,0.0071428571827709675,0.0035714285913854837,0.0071428571827709675,0.0059523810632526875,0.004464285913854837,0.008928571827709675,0.0016534391324967146,0.004464285913854837,0.0059523810632526875,-0.0416666679084301,0.0555555559694767,0.0071428571827709675,0.0035714285913854837,0.0071428571827709675,-0.011904762126505375,-0.004761904943734407,-0.0023809524718672037,-0.004761904943734407,-4.683753385137379e-17,-7.806255641895632e-18,-1.734723475976807e-18,-2.8189256484623115e-18,-1.0191500421363742e-17,-5.551115123125783e-17,-0.05089285597205162,0.0071428571827709675,0.11041666567325592,0.004464285913854837,0.008928571827709675,-2.7261570118922445e-17,-0.0071428571827709675,-1.0137290312739466e-17,9.540979117872439e-18,-0.0357142873108387,-0.004464285913854837,-0.008928571827709675,-7.697835424647081e-18,0.0,5.377642775528102e-17,-0.02718253992497921,0.0035714285913854837,0.004464285913854837,0.01765873096883297,0.004464285913854837,-1.1952386792934988e-17,-7.019721857462847e-18,-0.0011904762359336019,-4.7704895589362195e-18,-2.6167971174678338e-17,-0.0014880952658131719,-2.6020852139652106e-18,-0.0019841270986944437,-0.0014880952658131719,-3.469446951953614e-18,-0.05089285597205162,0.0071428571827709675,0.008928571827709675,0.004464285913854837,0.11041666567325592,-2.873135757086587e-17,1.2886047057019517e-17,-6.908947484190971e-18,-0.0071428571827709675,4.76535177471553e-17,7.326791980357845e-18,-0.008928571827709675,-2.168404344971009e-19,-0.004464285913854837,-0.0357142873108387,0.003968254197388887,-0.011904762126505375,-2.7261570118922445e-17,-1.1952386792934988e-17,-2.873135757086587e-17,0.003968254197388887,-8.087885618256408e-19,3.1326626402993335e-18,-6.740247100188078e-19,1.0740036145591544e-17,1.9529537806981502e-18,8.948993043633298e-19,2.168404344971009e-19,2.168404344971009e-18,1.1058862159352145e-17,0.0071428571827709675,-0.004761904943734407,-0.0071428571827709675,-7.019721857462847e-18,1.2886047057019517e-17,-8.087885618256408e-19,0.004761904943734407,4.87890977618477e-19,-7.676179215824984e-19,9.445114675141831e-18,4.343000136826977e-19,-2.7000211237448046e-18,9.75781955236954e-19,1.0842021724855044e-19,-4.445228907190568e-18,0.0035714285913854837,-0.0023809524718672037,-1.0137290312739466e-17,-0.0011904762359336019,-6.908947484190971e-18,3.1326626402993335e-18,4.87890977618477e-19,0.0007936508045531809,1.418513834493711e-18,3.1401444889398756e-18,8.155185549881605e-19,2.4455039048156204e-19,2.168404344971009e-19,6.776263578034403e-19,1.1926223897340549e-18,0.0071428571827709675,-0.004761904943734407,9.540979117872439e-18,-4.7704895589362195e-18,-0.0071428571827709675,-6.740247100188078e-19,-7.676179215824984e-19,1.418513834493711e-18,0.004761904943734407,-2.8189256484623115e-18,-5.486335900340249e-19,-4.279485138115578e-20,1.0842021724855044e-19,1.4094628242311558e-18,2.3744027577432547e-17,0.0059523810632526875,-4.683753385137379e-17,-0.0357142873108387,-2.6167971174678338e-17,4.76535177471553e-17,1.0740036145591544e-17,9.445114675141831e-18,3.1401444889398756e-18,-2.8189256484623115e-18,0.01785714365541935,6.789548098672004e-18,-1.3042137692969499e-17,2.168404344971009e-18,-2.710505431213761e-19,-1.4257258568184383e-17,0.004464285913854837,-7.806255641895632e-18,-0.004464285913854837,-0.0014880952658131719,7.326791980357845e-18,1.9529537806981502e-18,4.343000136826977e-19,8.155185549881605e-19,-5.486335900340249e-19,6.789548098672004e-18,0.0014880952658131719,-8.673617379884035e-19,4.87890977618477e-19,-2.710505431213761e-20,-2.6020852139652106e-18,0.008928571827709675,-1.734723475976807e-18,-0.008928571827709675,-2.6020852139652106e-18,-0.008928571827709675,8.948993043633298e-19,-2.7000211237448046e-18,2.4455039048156204e-19,-4.279485138115578e-20,-1.3042137692969499e-17,-8.673617379884035e-19,0.008928571827709675,5.421010862427522e-19,-1.0842021724855044e-19,-6.071532165918825e-18,0.0016534391324967146,-2.8189256484623115e-18,-7.697835424647081e-18,-0.0019841270986944437,-2.168404344971009e-19,2.168404344971009e-19,9.75781955236954e-19,2.168404344971009e-19,1.0842021724855044e-19,2.168404344971009e-18,4.87890977618477e-19,5.421010862427522e-19,0.0003306878206785768,-5.421010862427522e-20,-8.673617379884035e-19,0.004464285913854837,-1.0191500421363742e-17,0.0,-0.0014880952658131719,-0.004464285913854837,2.168404344971009e-18,1.0842021724855044e-19,6.776263578034403e-19,1.4094628242311558e-18,-2.710505431213761e-19,-2.710505431213761e-20,-1.0842021724855044e-19,-5.421010862427522e-20,0.0014880952658131719,7.408786258577164e-18,0.0059523810632526875,-5.551115123125783e-17,5.377642775528102e-17,-3.469446951953614e-18,-0.0357142873108387,1.1058862159352145e-17,-4.445228907190568e-18,1.1926223897340549e-18,2.3744027577432547e-17,-1.4257258568184383e-17,-2.6020852139652106e-18,-6.071532165918825e-18,-8.673617379884035e-19,7.408786258577164e-18,0.01785714365541935,4.0,3.0,7.0,4.0,0.09835813194513321,-0.03232142701745033,-0.03950892761349678,-0.02105654776096344,-0.03232142701745033,0.0029761905316263437,0.0053571430034935474,0.0026785715017467737,0.004285714123398066,0.004464285913854837,0.0033482143189758062,0.0053571430034935474,0.0012400794075801969,0.0026785715017467737,0.0029761905316263437,-0.03232142701745033,0.04238095134496689,0.0053571430034935474,0.0026785715017467737,0.004285714123398066,-0.008928571827709675,-0.0035714285913854837,-0.0017857142956927419,-0.0028571428265422583,1.0408340855860843e-17,-1.0625181290357943e-17,-5.637851296924623e-18,-3.686287386450715e-18,-8.673617379884035e-18,-8.673617379884035e-18,-0.03950892761349678,0.0053571430034935474,0.08415178209543228,0.0033482143189758062,0.0053571430034935474,-2.4708131396781477e-17,-0.0053571430034935474,-8.131516293641283e-18,7.806255641895632e-18,-0.02678571455180645,-0.0033482143189758062,-0.0053571430034935474,-8.51098705401121e-18,-2.3852447794681098e-18,1.0842021724855044e-17,-0.02105654776096344,0.0026785715017467737,0.0033482143189758062,0.01346726156771183,0.0026785715017467737,-1.833782490233095e-17,-4.467690996724446e-18,-0.0008928571478463709,-3.903127820947816e-18,-1.5976181240100202e-17,-0.0011160714784637094,-7.37257477290143e-18,-0.0014880952658131719,-0.0008928571478463709,-8.673617379884035e-19,-0.03232142701745033,0.004285714123398066,0.0053571430034935474,0.0026785715017467737,0.04238095134496689,-2.2822455730819868e-17,8.802743582226013e-18,-5.438053264587952e-18,-0.0028571428265422583,2.766231100156356e-17,-1.5939623579338115e-18,-0.0035714285913854837,-6.505213034913027e-19,-0.0017857142956927419,-0.008928571827709675,0.0029761905316263437,-0.008928571827709675,-2.4708131396781477e-17,-1.833782490233095e-17,-2.2822455730819868e-17,0.0029761905316263437,7.210812159491173e-18,4.921977761957956e-18,3.825207407245321e-18,9.509717455132828e-20,2.778329071564281e-18,2.3064554125321276e-18,6.505213034913027e-19,2.032879073410321e-18,2.439454888092385e-18,0.0053571430034935474,-0.0035714285913854837,-0.0053571430034935474,-4.467690996724446e-18,8.802743582226013e-18,7.210812159491173e-18,0.0035714285913854837,7.047314121155779e-19,-2.507634474600244e-19,-7.697445822578569e-18,-7.196755155559023e-19,-2.6388997143074957e-18,5.421010862427522e-19,5.421010862427522e-20,-1.7889335846010823e-18,0.0026785715017467737,-0.0017857142956927419,-8.131516293641283e-18,-0.0008928571478463709,-5.438053264587952e-18,4.921977761957956e-18,7.047314121155779e-19,0.0005952381179668009,1.1030717132214875e-18,1.383351524027424e-18,8.413508368315205e-19,7.643150927941507e-19,2.710505431213761e-19,5.963111948670274e-19,3.5236570605778894e-19,0.004285714123398066,-0.0028571428265422583,7.806255641895632e-18,-3.903127820947816e-18,-0.0028571428265422583,3.825207407245321e-18,-2.507634474600244e-19,1.1030717132214875e-18,0.0019047618843615055,-3.903127820947816e-18,2.639318009203506e-19,-2.650167775406846e-19,2.710505431213761e-19,2.710505431213761e-19,9.486769009248164e-19,0.004464285913854837,1.0408340855860843e-17,-0.02678571455180645,-1.5976181240100202e-17,2.766231100156356e-17,9.509717455132828e-20,-7.697445822578569e-18,1.383351524027424e-18,-3.903127820947816e-18,0.013392857275903225,8.777059417411089e-19,-8.035649369368838e-18,1.951563910473908e-18,-0.0,-4.30970363562988e-18,0.0033482143189758062,-1.0625181290357943e-17,-0.0033482143189758062,-0.0011160714784637094,-1.5939623579338115e-18,2.778329071564281e-18,-7.196755155559023e-19,8.413508368315205e-19,2.639318009203506e-19,8.777059417411089e-19,0.0011160714784637094,3.2526065174565133e-19,4.87890977618477e-19,2.981555974335137e-19,-2.710505431213761e-20,0.0053571430034935474,-5.637851296924623e-18,-0.0053571430034935474,-7.37257477290143e-18,-0.0035714285913854837,2.3064554125321276e-18,-2.6388997143074957e-18,7.643150927941507e-19,-2.650167775406846e-19,-8.035649369368838e-18,3.2526065174565133e-19,0.0035714285913854837,7.047314121155779e-19,8.402566836762659e-19,6.505213034913027e-19,0.0012400794075801969,-3.686287386450715e-18,-8.51098705401121e-18,-0.0014880952658131719,-6.505213034913027e-19,6.505213034913027e-19,5.421010862427522e-19,2.710505431213761e-19,2.710505431213761e-19,1.951563910473908e-18,4.87890977618477e-19,7.047314121155779e-19,0.00024801588733680546,1.0842021724855044e-19,-3.2526065174565133e-19,0.0026785715017467737,-8.673617379884035e-18,-2.3852447794681098e-18,-0.0008928571478463709,-0.0017857142956927419,2.032879073410321e-18,5.421010862427522e-20,5.963111948670274e-19,2.710505431213761e-19,-0.0,2.981555974335137e-19,8.402566836762659e-19,1.0842021724855044e-19,0.0005952381179668009,1.8457358704699456e-18,0.0029761905316263437,-8.673617379884035e-18,1.0842021724855044e-17,-8.673617379884035e-19,-0.008928571827709675,2.439454888092385e-18,-1.7889335846010823e-18,3.5236570605778894e-19,9.486769009248164e-19,-4.30970363562988e-18,-2.710505431213761e-20,6.505213034913027e-19,-3.2526065174565133e-19,1.8457358704699456e-18,0.0029761905316263437,4.0,3.0,7.0,5.0,0.08282596617937088,-0.026428570970892906,-0.03232142701745033,-0.017202381044626236,-0.022397959604859352,0.0023809524718672037,0.004285714123398066,0.002142857061699033,0.0028571428265422583,0.0035714285913854837,0.0026785715017467737,0.0035714285913854837,0.0009920635493472219,0.0017857142956927419,0.001700680237263441,-0.026428570970892906,0.034285712987184525,0.004285714123398066,0.002142857061699033,0.0028571428265422583,-0.0071428571827709675,-0.0028571428265422583,-0.0014285714132711291,-0.0019047618843615055,-4.1078252440526384e-17,-8.09975669402231e-18,-1.9627535134921578e-17,-9.46964533659255e-19,-6.201636509335147e-18,-1.7295310978356892e-17,-0.03232142701745033,0.004285714123398066,0.06803571432828903,0.0026785715017467737,0.0035714285913854837,-4.1187006838742406e-17,-0.004285714123398066,1.5116030862692036e-18,-1.6836116550549105e-17,-0.02142857201397419,-0.0026785715017467737,-0.0035714285913854837,6.258283078453697e-18,1.1267184287901175e-18,-9.516197613900963e-18,-0.017202381044626236,0.002142857061699033,0.0026785715017467737,0.010892856866121292,0.0017857142956927419,-4.592698253206216e-18,-2.7596972418568302e-18,-0.0007142857066355646,-7.339254283466569e-18,2.922265653260806e-17,-0.0008928571478463709,-1.438758459600487e-18,-0.0011904762359336019,-0.0005952381179668009,-1.062874395725621e-17,-0.022397959604859352,0.0028571428265422583,0.0035714285913854837,0.0017857142956927419,0.021403061226010323,-2.5985260212255175e-17,-1.3816612011251872e-17,-4.2512691156172966e-18,-0.0014285714132711291,-8.343665786884596e-18,-8.015628289822604e-18,-0.0017857142956927419,-7.26415455565288e-18,-0.0008928571478463709,-0.003401360474526882,0.0023809524718672037,-0.0071428571827709675,-4.1187006838742406e-17,-4.592698253206216e-18,-2.5985260212255175e-17,0.0023809524718672037,3.667512454497293e-18,5.946364643193373e-19,2.4450081651347597e-18,1.0309214012794325e-17,1.5860329011843016e-18,3.965082408057119e-18,-4.4056469836361075e-20,1.05735530192206e-18,3.3986419458803e-18,0.004285714123398066,-0.0028571428265422583,-0.004285714123398066,-2.7596972418568302e-18,-1.3816612011251872e-17,3.667512454497293e-18,0.0028571428265422583,5.709718609699608e-19,1.5225915603215112e-18,7.612957594812403e-18,9.516196993515503e-19,2.2204459996194763e-18,2.0506603642560426e-33,4.758098496757752e-19,1.812608941298422e-18,0.002142857061699033,-0.0014285714132711291,1.5116030862692036e-18,-0.0007142857066355646,-4.2512691156172966e-18,5.946364643193373e-19,5.709718609699608e-19,0.0004761904710903764,4.519438278472421e-19,-1.9032393987031007e-18,3.662845013573954e-21,4.758098496757752e-19,-1.2197274440461925e-19,2.168404344971009e-19,4.531522353246055e-19,0.0028571428265422583,-0.0019047618843615055,-1.6836116550549105e-17,-7.339254283466569e-18,-0.0014285714132711291,2.4450081651347597e-18,1.5225915603215112e-18,4.519438278472421e-19,0.0009523809421807528,3.806478797406201e-18,9.516196993515503e-19,1.72499955428594e-18,6.34413150133963e-19,7.930164505921508e-19,1.812608941298422e-18,0.0035714285913854837,-4.1078252440526384e-17,-0.02142857201397419,2.922265653260806e-17,-8.343665786884596e-18,1.0309214012794325e-17,7.612957594812403e-18,-1.9032393987031007e-18,3.806478797406201e-18,0.010714286006987095,-2.9738117026452626e-18,2.5873932521592084e-32,-3.105981102460823e-18,-1.387778801460961e-18,1.69932097294015e-18,0.0026785715017467737,-8.09975669402231e-18,-0.0026785715017467737,-0.0008928571478463709,-8.015628289822604e-18,1.5860329011843016e-18,9.516196993515503e-19,3.662845013573954e-21,9.516196993515503e-19,-2.9738117026452626e-18,0.0008928571478463709,7.250436075386417e-19,-1.5440301947931133e-20,3.1170812458958252e-19,1.1328806141609079e-18,0.0035714285913854837,-1.9627535134921578e-17,-0.0035714285913854837,-1.438758459600487e-18,-0.0017857142956927419,3.965082408057119e-18,2.2204459996194763e-18,4.758098496757752e-19,1.72499955428594e-18,2.5873932521592084e-32,7.250436075386417e-19,0.0017857142956927419,1.0592614694129797e-33,4.1046381939752964e-33,1.1724388001941188e-32,0.0009920635493472219,-9.46964533659255e-19,6.258283078453697e-18,-0.0011904762359336019,-7.26415455565288e-18,-4.4056469836361075e-20,2.0506603642560426e-33,-1.2197274440461925e-19,6.34413150133963e-19,-3.105981102460823e-18,-1.5440301947931133e-20,1.0592614694129797e-33,0.00019841270113829523,4.0344829648478945e-19,1.1328806141609079e-18,0.0017857142956927419,-6.201636509335147e-18,1.1267184287901175e-18,-0.0005952381179668009,-0.0008928571478463709,1.05735530192206e-18,4.758098496757752e-19,2.168404344971009e-19,7.930164505921508e-19,-1.387778801460961e-18,3.1170812458958252e-19,4.1046381939752964e-33,4.0344829648478945e-19,0.00029761905898340046,9.150190251976103e-19,0.001700680237263441,-1.7295310978356892e-17,-9.516197613900963e-18,-1.062874395725621e-17,-0.003401360474526882,3.3986419458803e-18,1.812608941298422e-18,4.531522353246055e-19,1.812608941298422e-18,1.69932097294015e-18,1.1328806141609079e-18,1.1724388001941188e-32,1.1328806141609079e-18,9.150190251976103e-19,0.0008503401186317205,4.0,3.0,7.0,6.0,0.07158683240413666,-0.022363945841789246,-0.027359694242477417,-0.014547902159392834,-0.01645408198237419,0.0019841270986944437,0.0035714285913854837,0.0017857142956927419,0.0020408162381500006,0.0029761905316263437,0.0022321429569274187,0.0025510203558951616,0.0008267195662483573,0.0012755101779475808,0.0010629252064973116,-0.022363945841789246,0.028798185288906097,0.0035714285913854837,0.0017857142956927419,0.0020408162381500006,-0.0059523810632526875,-0.0023809524718672037,-0.0011904762359336019,-0.0013605442363768816,-9.62964972193618e-34,1.3644158411541794e-20,-7.374902588392125e-20,2.4047027041135595e-19,-1.1755636006733258e-21,-2.3951875421297854e-19,-0.027359694242477417,0.0035714285913854837,0.05712159723043442,0.0022321429569274187,0.0025510203558951616,-0.0,-0.0035714285913854837,1.1219429503239612e-20,-7.083935345578062e-20,-0.01785714365541935,-0.0022321429569274187,-0.0025510203558951616,2.884454482998456e-18,1.6518871278939092e-18,3.906998612624258e-18,-0.014547902159392834,0.0017857142956927419,0.0022321429569274187,0.009148242883384228,0.0012755101779475808,-0.0,-0.0,-0.0005952381179668009,-7.347418220070344e-20,1.2225669896529645e-17,-0.0007440476329065859,-9.486769009248164e-20,-0.0009920635493472219,-0.00042517005931586027,-1.7904947329109113e-19,-0.01645408198237419,0.0020408162381500006,0.0025510203558951616,0.0012755101779475808,0.012427721172571182,-0.0,-0.0,3.002785500132825e-20,-0.0008163265301845968,1.4356227419753903e-17,5.426101254368991e-21,-0.0010204081190750003,5.421010862427522e-20,-0.0005102040595375001,-0.0015943878097459674,0.0019841270986944437,-0.0059523810632526875,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0023809524718672037,-0.0035714285913854837,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,1.1219429503239612e-20,-0.0005952381179668009,3.002785500132825e-20,-0.0,-0.0,0.00039682540227659047,8.340546833722512e-22,9.62964972193618e-34,-5.402696647457072e-21,1.9954641756526415e-21,-8.131516293641283e-20,-2.0328790734103208e-20,5.1066285921645264e-21,0.0020408162381500006,-0.0013605442363768816,-7.083935345578062e-20,-7.347418220070344e-20,-0.0008163265301845968,-0.0,-0.0,8.340546833722512e-22,0.0005442177061922848,-7.703719777548943e-34,1.0255724911627338e-21,2.710505431213761e-20,1.3900911557827846e-21,2.486477456353125e-20,8.967954866706369e-20,0.0029761905316263437,-9.62964972193618e-34,-0.01785714365541935,1.2225669896529645e-17,1.4356227419753903e-17,-0.0,-0.0,9.62964972193618e-34,-7.703719777548943e-34,0.008928571827709675,-1.5105074855478771e-18,-2.071553075769625e-18,-1.4318352680661478e-18,-8.49660486470075e-19,-1.9471384941967493e-18,0.0022321429569274187,1.3644158411541794e-20,-0.0022321429569274187,-0.0007440476329065859,5.426101254368991e-21,-0.0,-0.0,-5.402696647457072e-21,1.0255724911627338e-21,-1.5105074855478771e-18,0.0007440476329065859,2.494330219565802e-21,-9.699495628989794e-21,-6.776263578034403e-21,2.0030713696209667e-21,0.0025510203558951616,-7.374902588392125e-20,-0.0025510203558951616,-9.486769009248164e-20,-0.0010204081190750003,-0.0,-0.0,1.9954641756526415e-21,2.710505431213761e-20,-2.071553075769625e-18,2.494330219565802e-21,0.0010204081190750003,3.3257735587716053e-21,2.710505431213761e-20,-7.492183551437646e-21,0.0008267195662483573,2.4047027041135595e-19,2.884454482998456e-18,-0.0009920635493472219,5.421010862427522e-20,-0.0,-0.0,-8.131516293641283e-20,1.3900911557827846e-21,-1.4318352680661478e-18,-9.699495628989794e-21,3.3257735587716053e-21,0.0001653439103392884,-7.818765604824806e-21,4.5614143826058625e-21,0.0012755101779475808,-1.1755636006733258e-21,1.6518871278939092e-18,-0.00042517005931586027,-0.0005102040595375001,-0.0,-0.0,-2.0328790734103208e-20,2.486477456353125e-20,-8.49660486470075e-19,-6.776263578034403e-21,2.710505431213761e-20,-7.818765604824806e-21,0.0001700680295471102,5.589490751098381e-20,0.0010629252064973116,-2.3951875421297854e-19,3.906998612624258e-18,-1.7904947329109113e-19,-0.0015943878097459674,-0.0,-0.0,5.1066285921645264e-21,8.967954866706369e-20,-1.9471384941967493e-18,2.0030713696209667e-21,-7.492183551437646e-21,4.5614143826058625e-21,5.589490751098381e-20,0.0003188775444868952,4.0,3.0,7.0,7.0,0.06305980682373047,-0.019387755542993546,-0.02372448891401291,-0.012606292963027954,-0.012606292963027954,0.001700680237263441,0.0030612244736403227,0.0015306122368201613,0.0015306122368201613,0.0025510203558951616,0.0019132653251290321,0.0019132653251290321,0.0007086168043315411,0.0009566326625645161,0.0007086168043315411,-0.019387755542993546,0.024829931557178497,0.0030612244736403227,0.0015306122368201613,0.0015306122368201613,-0.005102040711790323,-0.0020408162381500006,-0.0010204081190750003,-0.0010204081190750003,2.7189135153452095e-18,3.488017208404218e-19,3.41696368625562e-19,1.6857152477309364e-19,4.454266785960899e-20,1.7952414571572586e-19,-0.02372448891401291,0.0030612244736403227,0.049234695732593536,0.0019132653251290321,0.0019132653251290321,-0.0,-0.0030612244736403227,2.616751488117294e-19,2.5889083302048175e-19,-0.015306122601032257,-0.0019132653251290321,-0.0019132653251290321,2.465869660183347e-18,1.3316067238212866e-18,2.4612291769469246e-18,-0.012606292963027954,0.0015306122368201613,0.0019132653251290321,0.00788690522313118,0.0009566326625645161,-0.0,5.947623508688102e-19,-0.0005102040595375001,7.069291017561606e-20,1.2769472493292419e-17,-0.0006377550889737904,2.981555974335137e-19,-0.0008503401186317205,-0.0003188775444868952,1.2755153479901243e-19,-0.012606292963027954,0.0015306122368201613,0.0019132653251290321,0.0009566326625645161,0.00788690522313118,-0.0,5.947623508688102e-19,-4.5523933479469895e-21,-0.0005102040595375001,1.2769472493292419e-17,2.0926411924566578e-19,-0.0006377550889737904,-0.0,-0.0003188775444868952,-0.0008503401186317205,0.001700680237263441,-0.005102040711790323,-0.0,-0.0,-0.0,0.001700680237263441,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0030612244736403227,-0.0020408162381500006,-0.0030612244736403227,5.947623508688102e-19,5.947623508688102e-19,-0.0,0.0020408162381500006,-1.699320947090756e-19,-1.699320947090756e-19,-2.7189135153452095e-18,-3.398641894181512e-19,-3.398641894181512e-19,4.81482486096809e-34,2.4395872261517374e-34,4.81482486096809e-34,0.0015306122368201613,-0.0010204081190750003,2.616751488117294e-19,-0.0005102040595375001,-4.5523933479469895e-21,-0.0,-1.699320947090756e-19,0.0003401360590942204,-1.1882394973258474e-21,7.703719777548943e-34,-1.6482803570824752e-21,-6.107231881250362e-22,-5.421010862427522e-20,3.3881317890172014e-21,-4.952184015745164e-22,0.0015306122368201613,-0.0010204081190750003,2.5889083302048175e-19,7.069291017561606e-20,-0.0005102040595375001,-0.0,-1.699320947090756e-19,-1.1882394973258474e-21,0.0003401360590942204,9.62964972193618e-34,-1.3308961441711544e-21,-2.725876808995842e-34,-1.9803990275774845e-21,-1.8235687742220198e-20,-5.934616352049647e-20,0.0025510203558951616,2.7189135153452095e-18,-0.015306122601032257,1.2769472493292419e-17,1.2769472493292419e-17,-0.0,-2.7189135153452095e-18,7.703719777548943e-34,9.62964972193618e-34,0.0076530613005161285,-3.494012148194908e-18,-3.494012148194908e-18,-1.2272873578570443e-18,-6.372453648525563e-19,-1.2272873578570443e-18,0.0019132653251290321,3.488017208404218e-19,-0.0019132653251290321,-0.0006377550889737904,2.0926411924566578e-19,-0.0,-3.398641894181512e-19,-1.6482803570824752e-21,-1.3308961441711544e-21,-3.494012148194908e-18,0.0006377550889737904,-2.131785188500257e-19,-2.7471338611546615e-21,6.776263578034403e-21,-2.2181603412594532e-21,0.0019132653251290321,3.41696368625562e-19,-0.0019132653251290321,2.981555974335137e-19,-0.0006377550889737904,-0.0,-3.398641894181512e-19,-6.107231881250362e-22,-2.725876808995842e-34,-3.494012148194908e-18,-2.131785188500257e-19,0.0006377550889737904,-1.0178719970374263e-21,-2.581494013106472e-20,1.060063216253313e-34,0.0007086168043315411,1.6857152477309364e-19,2.465869660183347e-18,-0.0008503401186317205,-0.0,-0.0,4.81482486096809e-34,-5.421010862427522e-20,-1.9803990275774845e-21,-1.2272873578570443e-18,-2.7471338611546615e-21,-1.0178719970374263e-21,0.00014172335795592517,-1.824378748831597e-21,-1.0505093814969542e-21,0.0009566326625645161,4.454266785960899e-20,1.3316067238212866e-18,-0.0003188775444868952,-0.0003188775444868952,-0.0,2.4395872261517374e-34,3.3881317890172014e-21,-1.8235687742220198e-20,-6.372453648525563e-19,6.776263578034403e-21,-2.581494013106472e-20,-1.824378748831597e-21,0.00010629251482896507,-3.9254078919728405e-20,0.0007086168043315411,1.7952414571572586e-19,2.4612291769469246e-18,1.2755153479901243e-19,-0.0008503401186317205,-0.0,4.81482486096809e-34,-4.952184015745164e-22,-5.934616352049647e-20,-1.2272873578570443e-18,-2.2181603412594532e-21,1.060063216253313e-34,-1.0505093814969542e-21,-3.9254078919728405e-20,0.00014172335795592517,4.0,3.0,7.0,8.0,0.0563616082072258,-0.01711309514939785,-0.02094493992626667,-0.01112351194024086,-0.00997023843228817,0.0014880952658131719,0.0026785715017467737,0.0013392857508733869,0.0011904762359336019,0.0022321429569274187,0.0016741071594879031,0.0014880952658131719,0.0006200397037900984,0.0007440476329065859,0.0004960317746736109,-0.01711309514939785,0.02182539738714695,0.0026785715017467737,0.0013392857508733869,0.0011904762359336019,-0.004464285913854837,-0.0017857142956927419,-0.0008928571478463709,-0.0007936508045531809,-2.0222264416065976e-33,1.7390557956609624e-20,2.0509535352501013e-21,-1.6863638857703552e-21,5.78401390436759e-20,1.4556381915235796e-19,-0.02094493992626667,0.0026785715017467737,0.04326637089252472,0.0016741071594879031,0.0014880952658131719,-1.4869058513226313e-18,-0.0026785715017467737,1.695258844048267e-20,2.4263556025976198e-21,-0.013392857275903225,-0.0016741071594879031,-0.0014880952658131719,2.17809228430523e-18,1.097180739694038e-18,1.679372995480551e-18,-0.01112351194024086,0.0013392857508733869,0.0016741071594879031,0.006932043470442295,0.0007440476329065859,-7.434529256613157e-19,-4.952391219970395e-34,-0.00044642857392318547,-7.708594356079406e-20,9.877303310310987e-18,-0.0005580357392318547,9.486769009248164e-20,-0.0007440476329065859,-0.00024801588733680546,9.76097356619581e-20,-0.00997023843228817,0.0011904762359336019,0.0014880952658131719,0.0007440476329065859,0.005328798200935125,-6.608470507765904e-19,-4.402125783961174e-34,-1.2570286367813884e-19,-0.0003401360590942204,8.564038282597298e-18,3.1326867836334624e-20,-0.00042517005931586027,1.3552527156068805e-20,-0.00021258502965793014,-0.0004960317746736109,0.0014880952658131719,-0.004464285913854837,-1.4869058513226313e-18,-7.434529256613157e-19,-6.608470507765904e-19,0.0014880952658131719,9.912706020142797e-19,4.956353010071399e-19,4.405647177506564e-19,0.0,-9.653698568520702e-36,-1.1385078737939617e-36,2.407412430484045e-35,-3.210772418704548e-35,-8.342419696910315e-35,0.0026785715017467737,-0.0017857142956927419,-0.0026785715017467737,-4.952391219970395e-34,-4.402125783961174e-34,9.912706020142797e-19,0.0017857142956927419,3.30159422317651e-34,2.9347504461112023e-34,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0008928571478463709,1.695258844048267e-20,-0.00044642857392318547,-1.2570286367813884e-19,4.956353010071399e-19,3.30159422317651e-34,0.00029761905898340046,8.840202637211236e-20,0.0,-4.853269794446783e-21,-6.836511952457331e-22,-0.0,-0.0,-8.210506710702556e-22,0.0011904762359336019,-0.0007936508045531809,2.4263556025976198e-21,-7.708594356079406e-20,-0.0003401360590942204,4.405647177506564e-19,2.9347504461112023e-34,8.840202637211236e-20,0.00022675737272948027,5.7777898331617076e-34,-8.087851840368406e-22,-8.912481077676982e-35,4.818182675021295e-22,-1.6525753550882504e-20,-4.0885905935490926e-20,0.0022321429569274187,-2.0222264416065976e-33,-0.013392857275903225,9.877303310310987e-18,8.564038282597298e-18,0.0,0.0,0.0,5.7777898331617076e-34,0.0066964286379516125,-1.69932097294015e-18,-1.2947207757535922e-18,-1.073876476899005e-18,-4.956353010071399e-19,-8.260588005460409e-19,0.0016741071594879031,1.7390557956609624e-20,-0.0016741071594879031,-0.0005580357392318547,3.1326867836334624e-20,-9.653698568520702e-36,-0.0,-4.853269794446783e-21,-8.087851840368406e-22,-1.69932097294015e-18,0.0005580357392318547,-8.545640066789408e-22,-8.783784880467285e-21,-6.776263578034403e-21,-1.1794783702471394e-21,0.0014880952658131719,2.0509535352501013e-21,-0.0014880952658131719,9.486769009248164e-20,-0.00042517005931586027,-1.1385078737939617e-36,-0.0,-6.836511952457331e-22,-8.912481077676982e-35,-1.2947207757535922e-18,-8.545640066789408e-22,0.00042517005931586027,-1.1394185745977253e-21,-2.445183695445683e-20,-6.776263578034403e-21,0.0006200397037900984,-1.6863638857703552e-21,2.17809228430523e-18,-0.0007440476329065859,1.3552527156068805e-20,2.407412430484045e-35,-0.0,-0.0,4.818182675021295e-22,-1.073876476899005e-18,-8.783784880467285e-21,-1.1394185745977253e-21,0.00012400794366840273,-5.733761551244e-21,9.597328473484419e-23,0.0007440476329065859,5.78401390436759e-20,1.097180739694038e-18,-0.00024801588733680546,-0.00021258502965793014,-3.210772418704548e-35,-0.0,-0.0,-1.6525753550882504e-20,-4.956353010071399e-19,-6.776263578034403e-21,-2.445183695445683e-20,-5.733761551244e-21,7.086167897796258e-05,-2.737785912439245e-20,0.0004960317746736109,1.4556381915235796e-19,1.679372995480551e-18,9.76097356619581e-20,-0.0004960317746736109,-8.342419696910315e-35,-0.0,-8.210506710702556e-22,-4.0885905935490926e-20,-8.260588005460409e-19,-1.1794783702471394e-21,-6.776263578034403e-21,9.597328473484419e-23,-2.737785912439245e-20,7.086167897796258e-05,4.0,3.0,8.0,3.0,0.10873842239379883,-0.03680555522441864,-0.04496527835726738,-0.02152777835726738,-0.04496527835726738,0.0034722222480922937,0.0062500000931322575,0.0027777778450399637,0.0062500000931322575,0.0052083334885537624,0.0034722222480922937,0.0078125,0.0011574074160307646,0.0034722222480922937,0.0052083334885537624,-0.03680555522441864,0.048842594027519226,0.0062500000931322575,0.0027777778450399637,0.0062500000931322575,-0.010416666977107525,-0.004166666883975267,-0.0018518518190830946,-0.004166666883975267,2.2551405187698492e-17,8.673617379884035e-19,6.071532165918825e-18,-4.336808689942018e-18,-6.505213034913027e-19,3.2959746043559335e-17,-0.04496527835726738,0.0062500000931322575,0.09704861044883728,0.0034722222480922937,0.0078125,8.413998472828142e-18,-0.0062500000931322575,1.2468324983583301e-18,1.3010426069826053e-18,-0.03125,-0.0034722222480922937,-0.0078125,-7.535205098774256e-18,-6.288372600415926e-18,-2.6020852139652106e-17,-0.02152777835726738,0.0027777778450399637,0.0034722222480922937,0.011937830597162247,0.0034722222480922937,-3.1171819551354036e-18,-7.092128285202064e-18,-0.0007936508045531809,-2.6020852139652106e-18,-1.4238936517616334e-17,-0.0009920635493472219,-5.204170427930421e-18,-0.0011574074160307646,-0.0009920635493472219,1.3877787807814457e-17,-0.04496527835726738,0.0062500000931322575,0.0078125,0.0034722222480922937,0.09704861044883728,7.37257477290143e-18,1.9224206831324397e-18,6.971303667487669e-18,-0.0062500000931322575,-3.9653910291436624e-17,2.626971976669634e-18,-0.0078125,-1.5178830414797062e-18,-0.0034722222480922937,-0.03125,0.0034722222480922937,-0.010416666977107525,8.413998472828142e-18,-3.1171819551354036e-18,7.37257477290143e-18,0.0034722222480922937,1.513733489936834e-18,-1.071279956956201e-18,1.5670320455260757e-18,-3.928396947890392e-18,-1.8161613718366075e-19,-1.4875549813083323e-18,7.589415207398531e-19,-0.0,-3.848917712323541e-18,0.0062500000931322575,-0.004166666883975267,-0.0062500000931322575,-7.092128285202064e-18,1.9224206831324397e-18,1.513733489936834e-18,0.004166666883975267,1.0842021724855044e-19,-4.704001401684667e-19,-7.202479969180926e-18,-1.0691685525932653e-19,-1.8151968016941882e-20,8.131516293641283e-19,5.421010862427522e-19,-1.4094628242311558e-18,0.0027777778450399637,-0.0018518518190830946,1.2468324983583301e-18,-0.0007936508045531809,6.971303667487669e-18,-1.071279956956201e-18,1.0842021724855044e-19,0.0005291005363687873,-6.408626256712507e-19,-1.0010669020087452e-19,-5.656779308990156e-20,-7.550757438458748e-19,1.3552527156068805e-19,-1.3552527156068805e-19,-2.1955093992831465e-18,0.0062500000931322575,-0.004166666883975267,1.3010426069826053e-18,-2.6020852139652106e-18,-0.0062500000931322575,1.5670320455260757e-18,-4.704001401684667e-19,-6.408626256712507e-19,0.004166666883975267,-5.421010862427522e-19,-6.867699993699044e-20,6.352625612254784e-19,3.2526065174565133e-19,5.421010862427522e-19,-1.0733601507606494e-17,0.0052083334885537624,2.2551405187698492e-17,-0.03125,-1.4238936517616334e-17,-3.9653910291436624e-17,-3.928396947890392e-18,-7.202479969180926e-18,-1.0010669020087452e-19,-5.421010862427522e-19,0.015625,-3.7129106080560405e-18,-4.764791938876954e-18,2.168404344971009e-18,1.9244588561617704e-18,1.9081958235744878e-17,0.0034722222480922937,8.673617379884035e-19,-0.0034722222480922937,-0.0009920635493472219,2.626971976669634e-18,-1.8161613718366075e-19,-1.0691685525932653e-19,-5.656779308990156e-20,-6.867699993699044e-20,-3.7129106080560405e-18,0.0009920635493472219,8.673617379884035e-19,3.2526065174565133e-19,-2.710505431213761e-20,-1.4907779871675686e-18,0.0078125,6.071532165918825e-18,-0.0078125,-5.204170427930421e-18,-0.0078125,-1.4875549813083323e-18,-1.8151968016941882e-20,-7.550757438458748e-19,6.352625612254784e-19,-4.764791938876954e-18,8.673617379884035e-19,0.0078125,5.421010862427522e-19,1.3010426069826053e-18,-6.1257422745431e-18,0.0011574074160307646,-4.336808689942018e-18,-7.535205098774256e-18,-0.0011574074160307646,-1.5178830414797062e-18,7.589415207398531e-19,8.131516293641283e-19,1.3552527156068805e-19,3.2526065174565133e-19,2.168404344971009e-18,3.2526065174565133e-19,5.421010862427522e-19,0.0001653439103392884,1.0842021724855044e-19,-3.2526065174565133e-19,0.0034722222480922937,-6.505213034913027e-19,-6.288372600415926e-18,-0.0009920635493472219,-0.0034722222480922937,-0.0,5.421010862427522e-19,-1.3552527156068805e-19,5.421010862427522e-19,1.9244588561617704e-18,-2.710505431213761e-20,1.3010426069826053e-18,1.0842021724855044e-19,0.0009920635493472219,-5.935469226959977e-18,0.0052083334885537624,3.2959746043559335e-17,-2.6020852139652106e-17,1.3877787807814457e-17,-0.03125,-3.848917712323541e-18,-1.4094628242311558e-18,-2.1955093992831465e-18,-1.0733601507606494e-17,1.9081958235744878e-17,-1.4907779871675686e-18,-6.1257422745431e-18,-3.2526065174565133e-19,-5.935469226959977e-18,0.015625,4.0,3.0,8.0,4.0,0.08803819119930267,-0.028541667386889458,-0.03489583358168602,-0.01666666753590107,-0.028541667386889458,0.0026041667442768812,0.004687500186264515,0.0020833334419876337,0.0037499999161809683,0.00390625,0.0026041667442768812,0.004687500186264515,0.0008680555620230734,0.0020833334419876337,0.0026041667442768812,-0.028541667386889458,0.03725694492459297,0.004687500186264515,0.0020833334419876337,0.0037499999161809683,-0.0078125,-0.0031250000465661287,-0.0013888889225199819,-0.0024999999441206455,-2.168404344971009e-17,1.734723475976807e-18,1.734723475976807e-18,5.854691731421724e-18,1.3010426069826053e-18,-1.734723475976807e-18,-0.03489583358168602,0.004687500186264515,0.07395832985639572,0.0026041667442768812,0.004687500186264515,8.219376936764828e-18,-0.004687500186264515,-9.86623976961809e-18,-8.239936510889834e-18,-0.0234375,-0.0026041667442768812,-0.004687500186264515,-7.047314121155779e-19,-4.336808689942018e-18,-1.5612511283791264e-17,-0.01666666753590107,0.0020833334419876337,0.0026041667442768812,0.00910218246281147,0.0020833334419876337,1.1748882164273468e-17,4.2759889946331375e-18,-0.0005952381179668009,1.734723475976807e-18,-1.9857223338692853e-17,-0.0007440476329065859,-2.3852447794681098e-18,-0.0008680555620230734,-0.0005952381179668009,-6.071532165918825e-18,-0.028541667386889458,0.0037499999161809683,0.004687500186264515,0.0020833334419876337,0.03725694492459297,7.914675859144182e-18,5.001311827327304e-18,-9.990535237182759e-18,-0.0024999999441206455,-2.770725999604969e-17,-6.780773366734042e-18,-0.0031250000465661287,4.336808689942018e-19,-0.0013888889225199819,-0.0078125,0.0026041667442768812,-0.0078125,8.219376936764828e-18,1.1748882164273468e-17,7.914675859144182e-18,0.0026041667442768812,-1.823246483975854e-18,-2.2375106322588687e-19,3.829295902519229e-19,1.1683035899177256e-18,-1.1221894081412365e-18,-1.6946087317855886e-18,-1.2468324983583301e-18,-6.505213034913027e-19,-1.2197274440461925e-18,0.004687500186264515,-0.0031250000465661287,-0.004687500186264515,4.2759889946331375e-18,5.001311827327304e-18,-1.823246483975854e-18,0.0031250000465661287,5.421010862427522e-20,-5.387315660175175e-19,-1.859428604739842e-18,-2.1768598756654054e-20,-1.391466476029299e-18,-4.336808689942018e-19,-4.336808689942018e-19,-3.7947076036992655e-19,0.0020833334419876337,-0.0013888889225199819,-9.86623976961809e-18,-0.0005952381179668009,-9.990535237182759e-18,-2.2375106322588687e-19,5.421010862427522e-20,0.00039682540227659047,1.0740416028287859e-18,3.211948935988307e-18,4.593688078206712e-19,9.55412322460106e-19,-1.6263032587282567e-19,4.743384504624082e-19,1.748276003132876e-18,0.0037499999161809683,-0.0024999999441206455,-8.239936510889834e-18,1.734723475976807e-18,-0.0024999999441206455,3.829295902519229e-19,-5.387315660175175e-19,1.0740416028287859e-18,0.0016666667070239782,3.7947076036992655e-18,2.019568186390694e-19,7.9662151049681e-19,-3.7947076036992655e-19,-4.0657581468206416e-19,-1.6263032587282567e-19,0.00390625,-2.168404344971009e-17,-0.0234375,-1.9857223338692853e-17,-2.770725999604969e-17,1.1683035899177256e-18,-1.859428604739842e-18,3.211948935988307e-18,3.7947076036992655e-18,0.01171875,6.8810586762484395e-18,3.3121232611289547e-20,6.505213034913027e-19,2.1141942363467336e-18,4.228388472693467e-18,0.0026041667442768812,1.734723475976807e-18,-0.0026041667442768812,-0.0007440476329065859,-6.780773366734042e-18,-1.1221894081412365e-18,-2.1768598756654054e-20,4.593688078206712e-19,2.019568186390694e-19,6.8810586762484395e-18,0.0007440476329065859,1.2468324983583301e-18,0.0,2.710505431213761e-19,1.3010426069826053e-18,0.004687500186264515,1.734723475976807e-18,-0.004687500186264515,-2.3852447794681098e-18,-0.0031250000465661287,-1.6946087317855886e-18,-1.391466476029299e-18,9.55412322460106e-19,7.9662151049681e-19,3.3121232611289547e-20,1.2468324983583301e-18,0.0031250000465661287,0.0,-2.168404344971009e-19,1.599198204416119e-18,0.0008680555620230734,5.854691731421724e-18,-7.047314121155779e-19,-0.0008680555620230734,4.336808689942018e-19,-1.2468324983583301e-18,-4.336808689942018e-19,-1.6263032587282567e-19,-3.7947076036992655e-19,6.505213034913027e-19,0.0,0.0,0.00012400794366840273,5.421010862427522e-20,0.0,0.0020833334419876337,1.3010426069826053e-18,-4.336808689942018e-18,-0.0005952381179668009,-0.0013888889225199819,-6.505213034913027e-19,-4.336808689942018e-19,4.743384504624082e-19,-4.0657581468206416e-19,2.1141942363467336e-18,2.710505431213761e-19,-2.168404344971009e-19,5.421010862427522e-20,0.00039682540227659047,1.012219468015068e-18,0.0026041667442768812,-1.734723475976807e-18,-1.5612511283791264e-17,-6.071532165918825e-18,-0.0078125,-1.2197274440461925e-18,-3.7947076036992655e-19,1.748276003132876e-18,-1.6263032587282567e-19,4.228388472693467e-18,1.3010426069826053e-18,1.599198204416119e-18,0.0,1.012219468015068e-18,0.0026041667442768812,4.0,3.0,8.0,5.0,0.07408729940652847,-0.023333333432674408,-0.028541667386889458,-0.013611110858619213,-0.019771825522184372,0.0020833334419876337,0.0037499999161809683,0.0016666667070239782,0.0024999999441206455,0.0031250000465661287,0.0020833334419876337,0.0031250000465661287,0.0006944444612599909,0.0013888889225199819,0.0014880952658131719,-0.023333333432674408,0.030138889327645302,0.0037499999161809683,0.0016666667070239782,0.0024999999441206455,-0.0062500000931322575,-0.0024999999441206455,-0.0011111111380159855,-0.0016666667070239782,2.7755575615628914e-17,1.734723475976807e-18,5.637851296924623e-18,-4.553649124439119e-18,-1.0842021724855044e-19,4.7704895589362195e-18,-0.028541667386889458,0.0037499999161809683,0.05979166552424431,0.0020833334419876337,0.0031250000465661287,2.0626345798412008e-17,-0.0037499999161809683,1.7076184216646695e-18,3.0357660829594124e-18,-0.01875000074505806,-0.0020833334419876337,-0.0031250000465661287,-5.231275482242559e-18,-9.75781955236954e-19,7.15573433840433e-18,-0.013611110858619213,0.0016666667070239782,0.0020833334419876337,0.007361111231148243,0.0013888889225199819,-5.515324341509593e-18,-5.647462308461877e-18,-0.0004761904710903764,-1.6263032587282567e-18,-1.2064746044260516e-17,-0.0005952381179668009,-1.951563910473908e-18,-0.0006944444612599909,-0.00039682540227659047,2.168404344971009e-18,-0.019771825522184372,0.0024999999441206455,0.0031250000465661287,0.0013888889225199819,0.018814483657479286,8.890457814381136e-18,2.3057911865002475e-18,9.123145581848681e-19,-0.0012499999720603228,9.572866103305746e-18,2.1781545296463245e-18,-0.0015625000232830644,1.6263032587282567e-19,-0.0006944444612599909,-0.0029761905316263437,0.0020833334419876337,-0.0062500000931322575,2.0626345798412008e-17,-5.515324341509593e-18,8.890457814381136e-18,0.0020833334419876337,-2.9593252885776214e-18,6.4025309695737565e-19,-2.0162310296069254e-18,-5.368452219896209e-18,-4.090602775012613e-19,-1.6483578584128752e-18,7.589415207398531e-19,-1.7618285302889447e-19,-7.589415207398531e-19,0.0037499999161809683,-0.0024999999441206455,-0.0037499999161809683,-5.647462308461877e-18,2.3057911865002475e-18,-2.9593252885776214e-18,0.0024999999441206455,2.981555974335137e-19,-2.39966491568917e-19,-3.335580384316248e-18,-7.091340550764972e-20,-1.456118602513714e-19,6.2341624917916505e-19,2.168404344971009e-19,-6.2341624917916505e-19,0.0016666667070239782,-0.0011111111380159855,1.7076184216646695e-18,-0.0004761904710903764,9.123145581848681e-19,6.4025309695737565e-19,2.981555974335137e-19,0.0003174603043589741,-7.732013422496173e-21,-9.255945293291007e-19,-2.4857165148130616e-20,-1.2935782583818975e-19,2.439454888092385e-19,3.3881317890172014e-20,-2.168404344971009e-19,0.0024999999441206455,-0.0016666667070239782,3.0357660829594124e-18,-1.6263032587282567e-18,-0.0012499999720603228,-2.0162310296069254e-18,-2.39966491568917e-19,-7.732013422496173e-21,0.0008333333535119891,-1.2468324983583301e-18,-8.151104318287451e-20,-1.464534260517646e-20,1.8973538018496328e-19,9.486769009248164e-20,-5.149960319306146e-19,0.0031250000465661287,2.7755575615628914e-17,-0.01875000074505806,-1.2064746044260516e-17,9.572866103305746e-18,-5.368452219896209e-18,-3.335580384316248e-18,-9.255945293291007e-19,-1.2468324983583301e-18,0.00937500037252903,3.180034653594786e-18,9.084127472354555e-19,1.4094628242311558e-18,5.421010862427522e-20,-1.9922214919421144e-18,0.0020833334419876337,1.734723475976807e-18,-0.0020833334419876337,-0.0005952381179668009,2.1781545296463245e-18,-4.090602775012613e-19,-7.091340550764972e-20,-2.4857165148130616e-20,-8.151104318287451e-20,3.180034653594786e-18,0.0005952381179668009,-2.981555974335137e-19,1.6263032587282567e-19,6.776263578034403e-21,-4.0657581468206416e-19,0.0031250000465661287,5.637851296924623e-18,-0.0031250000465661287,-1.951563910473908e-18,-0.0015625000232830644,-1.6483578584128752e-18,-1.456118602513714e-19,-1.2935782583818975e-19,-1.464534260517646e-20,9.084127472354555e-19,-2.981555974335137e-19,0.0015625000232830644,2.439454888092385e-19,2.0328790734103208e-19,-3.5236570605778894e-19,0.0006944444612599909,-4.553649124439119e-18,-5.231275482242559e-18,-0.0006944444612599909,1.6263032587282567e-19,7.589415207398531e-19,6.2341624917916505e-19,2.439454888092385e-19,1.8973538018496328e-19,1.4094628242311558e-18,1.6263032587282567e-19,2.439454888092385e-19,9.920635056914762e-05,2.710505431213761e-20,-5.421010862427522e-20,0.0013888889225199819,-1.0842021724855044e-19,-9.75781955236954e-19,-0.00039682540227659047,-0.0006944444612599909,-1.7618285302889447e-19,2.168404344971009e-19,3.3881317890172014e-20,9.486769009248164e-20,5.421010862427522e-20,6.776263578034403e-21,2.0328790734103208e-19,2.710505431213761e-20,0.00019841270113829523,-4.59696888331125e-19,0.0014880952658131719,4.7704895589362195e-18,7.15573433840433e-18,2.168404344971009e-18,-0.0029761905316263437,-7.589415207398531e-19,-6.2341624917916505e-19,-2.168404344971009e-19,-5.149960319306146e-19,-1.9922214919421144e-18,-4.0657581468206416e-19,-3.5236570605778894e-19,-5.421010862427522e-20,-4.59696888331125e-19,0.0007440476329065859,4.0,3.0,8.0,6.0,0.06400462985038757,-0.01974206417798996,-0.02415674552321434,-0.011507936753332615,-0.014521329663693905,0.0017361111240461469,0.0031250000465661287,0.0013888889225199819,0.0017857142956927419,0.0026041667442768812,0.0017361111240461469,0.0022321429569274187,0.0005787037080153823,0.0009920635493472219,0.0009300595265813172,-0.01974206417798996,0.025314154103398323,0.0031250000465661287,0.0013888889225199819,0.0017857142956927419,-0.0052083334885537624,-0.0020833334419876337,-0.0009259259095415473,-0.0011904762359336019,3.829390681600488e-33,2.1353110135495216e-20,-3.965082252960754e-19,1.4230153513872246e-19,-1.880843406070045e-19,-6.195441133342278e-19,-0.02415674552321434,0.0031250000465661287,0.05019841343164444,0.0017361111240461469,0.0022321429569274187,-0.0,-0.0031250000465661287,2.1353110135495216e-20,-3.965082252960754e-19,-0.015625,-0.0017361111240461469,-0.0022321429569274187,1.9667585979410477e-18,1.333552562814741e-18,3.4074925716394644e-18,-0.011507936753332615,0.0013888889225199819,0.0017361111240461469,0.006181500386446714,0.0009920635493472219,-0.0,-0.0,-0.00039682540227659047,-1.762258793454443e-19,1.0160523334604243e-17,-0.0004960317746736109,-2.121405287708374e-33,-0.0005787037080153823,-0.00028344671591185033,-2.95020996502244e-19,-0.014521329663693905,0.0017857142956927419,0.0022321429569274187,0.0009920635493472219,0.010923858731985092,-0.0,-0.0,-1.1858461261560205e-20,-0.0007142857066355646,1.241772882705527e-17,1.1858461261560205e-20,-0.0008928571478463709,-0.0,-0.00039682540227659047,-0.0013950893189758062,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0020833334419876337,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0009259259095415473,2.1353110135495216e-20,-0.00039682540227659047,-1.1858461261560205e-20,-0.0,-0.0,0.00026455026818439364,-0.0,4.81482486096809e-34,-6.1008883793433284e-21,-0.0,-4.0657581468206416e-20,3.3881317890172014e-21,4.938250404621284e-36,0.0017857142956927419,-0.0011904762359336019,-3.965082252960754e-19,-1.762258793454443e-19,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0004761904710903764,-2.205831679707331e-33,-2.1064858408002985e-36,1.5860328753349075e-19,-0.0,7.04903478607686e-20,2.4781765050356993e-19,0.0026041667442768812,3.829390681600488e-33,-0.015625,1.0160523334604243e-17,1.241772882705527e-17,-0.0,-0.0,4.81482486096809e-34,-2.205831679707331e-33,0.0078125,-1.7622588710026254e-18,-1.5860329011843016e-18,-9.63735310386038e-19,-6.608470507765904e-19,-1.7037462858197322e-18,0.0017361111240461469,2.1353110135495216e-20,-0.0017361111240461469,-0.0004960317746736109,1.1858461261560205e-20,-0.0,-0.0,-6.1008883793433284e-21,-2.1064858408002985e-36,-1.7622588710026254e-18,0.0004960317746736109,3.5776005263383236e-34,-1.1225138180377222e-20,-3.3881317890172014e-21,3.83456037718571e-34,0.0022321429569274187,-3.965082252960754e-19,-0.0022321429569274187,-2.121405287708374e-33,-0.0008928571478463709,-0.0,-0.0,-0.0,1.5860328753349075e-19,-1.5860329011843016e-18,3.5776005263383236e-34,0.0008928571478463709,1.9565003739370484e-34,1.5763801687809202e-34,4.284211302781717e-34,0.0005787037080153823,1.4230153513872246e-19,1.9667585979410477e-18,-0.0005787037080153823,-0.0,-0.0,-0.0,-4.0657581468206416e-20,-0.0,-9.63735310386038e-19,-1.1225138180377222e-20,1.9565003739370484e-34,8.26719551696442e-05,-2.2374455543896316e-22,2.119638786022027e-34,0.0009920635493472219,-1.880843406070045e-19,1.333552562814741e-18,-0.00028344671591185033,-0.00039682540227659047,-0.0,-0.0,3.3881317890172014e-21,7.04903478607686e-20,-6.608470507765904e-19,-3.3881317890172014e-21,1.5763801687809202e-34,-2.2374455543896316e-22,0.00011337868636474013,1.1800840377077644e-19,0.0009300595265813172,-6.195441133342278e-19,3.4074925716394644e-18,-2.95020996502244e-19,-0.0013950893189758062,-0.0,-0.0,4.938250404621284e-36,2.4781765050356993e-19,-1.7037462858197322e-18,3.83456037718571e-34,4.284211302781717e-34,2.119638786022027e-34,1.1800840377077644e-19,0.00027901786961592734,4.0,3.0,8.0,7.0,0.0563616082072258,-0.01711309514939785,-0.02094493992626667,-0.00997023843228817,-0.01112351194024086,0.0014880952658131719,0.0026785715017467737,0.0011904762359336019,0.0013392857508733869,0.0022321429569274187,0.0014880952658131719,0.0016741071594879031,0.0004960317746736109,0.0007440476329065859,0.0006200397037900984,-0.01711309514939785,0.02182539738714695,0.0026785715017467737,0.0011904762359336019,0.0013392857508733869,-0.004464285913854837,-0.0017857142956927419,-0.0007936508045531809,-0.0008928571478463709,-8.666684749742561e-34,-1.8674363673821447e-21,-2.2591851472987805e-21,1.4451472149109344e-19,-1.1014587110270091e-19,1.3500078735354115e-20,-0.02094493992626667,0.0026785715017467737,0.04326637089252472,0.0014880952658131719,0.0016741071594879031,-1.4869058513226313e-18,-0.0026785715017467737,-4.773019946435285e-21,1.130662193306223e-21,-0.013392857275903225,-0.0014880952658131719,-0.0016741071594879031,1.6451569796350247e-18,9.036110671771617e-19,2.1496372712334058e-18,-0.00997023843228817,0.0011904762359336019,0.0014880952658131719,0.005328798200935125,0.0007440476329065859,-6.608470507765904e-19,-4.402125783961174e-34,-0.0003401360590942204,-2.0490795349541426e-19,8.564038282597298e-18,-0.00042517005931586027,-1.0842021724855044e-19,-0.0004960317746736109,-0.00021258502965793014,-1.5287395026761291e-19,-0.01112351194024086,0.0013392857508733869,0.0016741071594879031,0.0007440476329065859,0.006932043470442295,-7.434529256613157e-19,-4.952391219970395e-34,-1.22742099922476e-19,-0.00044642857392318547,9.877303310310987e-18,1.5035847786896782e-20,-0.0005580357392318547,-0.0,-0.00024801588733680546,-0.0007440476329065859,0.0014880952658131719,-0.004464285913854837,-1.4869058513226313e-18,-6.608470507765904e-19,-7.434529256613157e-19,0.0014880952658131719,9.912706020142797e-19,4.405647177506564e-19,4.956353010071399e-19,0.0,1.0366354933073361e-36,1.2540997061319164e-36,-6.018531076210112e-35,6.114324108280662e-35,-9.042098557912148e-36,0.0026785715017467737,-0.0017857142956927419,-0.0026785715017467737,-4.402125783961174e-34,-4.952391219970395e-34,9.912706020142797e-19,0.0017857142956927419,2.9347504461112023e-34,3.30159422317651e-34,0.0,0.0,0.0,-0.0,0.0,0.0,0.0011904762359336019,-0.0007936508045531809,-4.773019946435285e-21,-0.0003401360590942204,-1.22742099922476e-19,4.405647177506564e-19,2.9347504461112023e-34,0.00022675737272948027,7.501950421896881e-20,5.7777898331617076e-34,8.1045014755251285e-22,6.454814850816796e-22,-4.0657581468206416e-20,3.3881317890172014e-21,-3.524766082385434e-22,0.0013392857508733869,-0.0008928571478463709,1.130662193306223e-21,-2.0490795349541426e-19,-0.00044642857392318547,4.956353010071399e-19,3.30159422317651e-34,7.501950421896881e-20,0.00029761905898340046,-3.851859888774472e-34,-3.2304634094463516e-22,-1.325924911332034e-34,-7.377302482495005e-22,3.276247210116308e-20,-4.088803447153983e-21,0.0022321429569274187,-8.666684749742561e-34,-0.013392857275903225,8.564038282597298e-18,9.877303310310987e-18,0.0,0.0,5.7777898331617076e-34,-3.851859888774472e-34,0.0066964286379516125,-1.2947207757535922e-18,-1.69932097294015e-18,-8.260588005460409e-19,-4.956353010071399e-19,-1.073876476899005e-18,0.0014880952658131719,-1.8674363673821447e-21,-0.0014880952658131719,-0.00042517005931586027,1.5035847786896782e-20,1.0366354933073361e-36,0.0,8.1045014755251285e-22,-3.2304634094463516e-22,-1.2947207757535922e-18,0.00042517005931586027,8.068518311085505e-22,1.1819063957609882e-21,-3.3881317890172014e-21,-5.384105682410586e-22,0.0016741071594879031,-2.2591851472987805e-21,-0.0016741071594879031,-1.0842021724855044e-19,-0.0005580357392318547,1.2540997061319164e-36,0.0,6.454814850816796e-22,-1.325924911332034e-34,-1.69932097294015e-18,8.068518311085505e-22,0.0005580357392318547,9.413270942207273e-22,3.3172650287412814e-20,5.15607695511342e-35,0.0004960317746736109,1.4451472149109344e-19,1.6451569796350247e-18,-0.0004960317746736109,-0.0,-6.018531076210112e-35,-0.0,-4.0657581468206416e-20,-7.377302482495005e-22,-8.260588005460409e-19,1.1819063957609882e-21,9.413270942207273e-22,7.086167897796258e-05,-3.611876470673909e-21,1.1852617682896915e-21,0.0007440476329065859,-1.1014587110270091e-19,9.036110671771617e-19,-0.00021258502965793014,-0.00024801588733680546,6.114324108280662e-35,0.0,3.3881317890172014e-21,3.276247210116308e-20,-4.956353010071399e-19,-3.3881317890172014e-21,3.3172650287412814e-20,-3.611876470673909e-21,7.086167897796258e-05,4.8322317803479465e-20,0.0006200397037900984,1.3500078735354115e-20,2.1496372712334058e-18,-1.5287395026761291e-19,-0.0007440476329065859,-9.042098557912148e-36,0.0,-3.524766082385434e-22,-4.088803447153983e-21,-1.073876476899005e-18,-5.384105682410586e-22,5.15607695511342e-35,1.1852617682896915e-21,4.8322317803479465e-20,0.00012400794366840273,4.0,3.0,8.0,8.0,0.05036168918013573,-0.015104166232049465,-0.01848958246409893,-0.008796296082437038,-0.008796296082437038,0.0013020833721384406,0.0023437500931322575,0.0010416667209938169,0.0010416667209938169,0.001953125,0.0013020833721384406,0.0013020833721384406,0.0004340277810115367,0.0005787037080153823,0.0004340277810115367,-0.015104166232049465,0.01918402686715126,0.0023437500931322575,0.0010416667209938169,0.0010416667209938169,-0.00390625,-0.0015625000232830644,-0.0006944444612599909,-0.0006944444612599909,-3.370377402677663e-33,6.977140027707644e-21,-1.4222987738698578e-20,1.4160018937685406e-19,2.1353110135495216e-20,1.3252555276805278e-19,-0.01848958246409893,0.0023437500931322575,0.03802083432674408,0.0013020833721384406,0.0013020833721384406,-0.0,-0.0023437500931322575,7.839264982173202e-21,-1.5085113500957704e-20,-0.01171875,-0.0013020833721384406,-0.0013020833721384406,1.4611091899443994e-18,8.06563601074238e-19,1.4195297156835027e-18,-0.008796296082437038,0.0010416667209938169,0.0013020833721384406,0.004683366511017084,0.0005787037080153823,-0.0,-0.0,-0.00029761905898340046,1.8707889934127203e-20,7.400109961132095e-18,-0.00037202381645329297,2.0328790734103208e-20,-0.0004340277810115367,-0.0001653439103392884,2.0713840078072375e-20,-0.008796296082437038,0.0010416667209938169,0.0013020833721384406,0.0005787037080153823,0.004683366511017084,-0.0,-0.0,-4.0647574521499085e-21,-0.00029761905898340046,7.400109961132095e-18,-6.477414289490861e-21,-0.00037202381645329297,-1.3552527156068805e-20,-0.0001653439103392884,-0.0004340277810115367,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023437500931322575,-0.0015625000232830644,-0.0023437500931322575,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0006944444612599909,7.839264982173202e-21,-0.00029761905898340046,-4.0647574521499085e-21,-0.0,-0.0,0.00019841270113829523,1.3740745278599606e-22,4.81482486096809e-34,-2.9153691903231277e-21,6.755791665667282e-22,-4.0657581468206416e-20,-0.0,4.2040510524276263e-22,0.0010416667209938169,-0.0006944444612599909,-1.5085113500957704e-20,1.8707889934127203e-20,-0.00029761905898340046,-0.0,-0.0,1.3740745278599606e-22,0.00019841270113829523,4.81482486096809e-34,9.21900668677627e-22,3.3881317890172014e-21,2.0038586654261518e-22,-6.1008883793433284e-21,-3.8284849424015e-20,0.001953125,-3.370377402677663e-33,-0.01171875,7.400109961132095e-18,7.400109961132095e-18,-0.0,-0.0,4.81482486096809e-34,4.81482486096809e-34,0.005859375,-9.912706020142797e-19,-9.912706020142797e-19,-7.228014310907402e-19,-3.854941086447787e-19,-7.228014310907402e-19,0.0013020833721384406,6.977140027707644e-21,-0.0013020833721384406,-0.00037202381645329297,-6.477414289490861e-21,-0.0,-0.0,-2.9153691903231277e-21,9.21900668677627e-22,-9.912706020142797e-19,0.00037202381645329297,8.444739582084103e-22,-5.415584589920917e-21,-1.6940658945086007e-21,1.3444385003984218e-21,0.0013020833721384406,-1.4222987738698578e-20,-0.0013020833721384406,2.0328790734103208e-20,-0.00037202381645329297,-0.0,-0.0,6.755791665667282e-22,3.3881317890172014e-21,-9.912706020142797e-19,8.444739582084103e-22,0.00037202381645329297,9.85219567422714e-22,-8.470329472543003e-21,6.105029936961062e-21,0.0004340277810115367,1.4160018937685406e-19,1.4611091899443994e-18,-0.0004340277810115367,-1.3552527156068805e-20,-0.0,-0.0,-4.0657581468206416e-20,2.0038586654261518e-22,-7.228014310907402e-19,-5.415584589920917e-21,9.85219567422714e-22,6.200397183420137e-05,-3.164387309308885e-21,2.1923335653370456e-21,0.0005787037080153823,2.1353110135495216e-20,8.06563601074238e-19,-0.0001653439103392884,-0.0001653439103392884,-0.0,-0.0,-0.0,-6.1008883793433284e-21,-3.854941086447787e-19,-1.6940658945086007e-21,-8.470329472543003e-21,-3.164387309308885e-21,4.724111931864172e-05,-1.1225138180377222e-20,0.0004340277810115367,1.3252555276805278e-19,1.4195297156835027e-18,2.0713840078072375e-20,-0.0004340277810115367,-0.0,-0.0,4.2040510524276263e-22,-3.8284849424015e-20,-7.228014310907402e-19,1.3444385003984218e-21,6.105029936961062e-21,2.1923335653370456e-21,-1.1225138180377222e-20,6.200397183420137e-05,4.0,4.0,3.0,3.0,0.1867361068725586,-0.06916666775941849,-0.06916666775941849,-0.08437500149011612,-0.08437500149011612,0.0069444444961845875,0.009999999776482582,0.012500000186264515,0.012500000186264515,0.0069444444961845875,0.012500000186264515,0.012500000186264515,0.010416666977107525,0.015625,0.010416666977107525,-0.06916666775941849,0.094722218811512,0.009999999776482582,0.012500000186264515,0.012500000186264515,-0.02083333395421505,-0.006666666828095913,-0.008333333767950535,-0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.06916666775941849,0.009999999776482582,0.094722218811512,0.012500000186264515,0.012500000186264515,4.336808689942018e-19,-0.006666666828095913,1.3191765256600874e-19,1.3191765256600874e-19,-0.02083333395421505,-0.008333333767950535,-0.008333333767950535,-0.0,-0.0,-0.0,-0.08437500149011612,0.012500000186264515,0.012500000186264515,0.18854166567325592,0.015625,7.547672571761808e-19,1.3191765256600874e-19,-0.012500000186264515,1.699320947090756e-19,-0.0,-0.012500000186264515,-0.0,-0.0625,-0.015625,6.938893903907228e-17,-0.08437500149011612,0.012500000186264515,0.012500000186264515,0.015625,0.18854166567325592,8.673617379884035e-19,1.3191765256600874e-19,1.699320947090756e-19,-0.012500000186264515,-6.057443625725822e-20,-0.0,-0.012500000186264515,8.326672684688674e-17,-0.015625,-0.0625,0.0069444444961845875,-0.02083333395421505,4.336808689942018e-19,7.547672571761808e-19,8.673617379884035e-19,0.0069444444961845875,-4.336808689942018e-19,-4.336808689942018e-19,-4.336808689942018e-19,1.991391700540753e-19,0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.006666666828095913,-0.006666666828095913,1.3191765256600874e-19,1.3191765256600874e-19,-4.336808689942018e-19,0.004444444552063942,-8.794510601890485e-20,-8.794510601890485e-20,-4.336808689942018e-19,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.008333333767950535,1.3191765256600874e-19,-0.012500000186264515,1.699320947090756e-19,-4.336808689942018e-19,-8.794510601890485e-20,0.008333333767950535,-1.1328805883115137e-19,6.018531076210112e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.008333333767950535,1.3191765256600874e-19,1.699320947090756e-19,-0.012500000186264515,-4.336808689942018e-19,-8.794510601890485e-20,-1.1328805883115137e-19,0.008333333767950535,6.018531076210112e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.0069444444961845875,-0.0,-0.02083333395421505,-0.0,-6.057443625725822e-20,1.991391700540753e-19,-4.336808689942018e-19,6.018531076210112e-36,6.018531076210112e-36,0.0069444444961845875,-0.0,0.0,-0.0,0.0,-0.0,0.012500000186264515,-0.0,-0.008333333767950535,-0.012500000186264515,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.008333333767950535,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,0.010416666977107525,-0.0,-0.0,-0.0625,8.326672684688674e-17,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.03125,-1.3877787807814457e-17,-3.469446951953614e-17,0.015625,-0.0,-0.0,-0.015625,-0.015625,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-1.3877787807814457e-17,0.015625,1.5407439555097887e-32,0.010416666977107525,-0.0,-0.0,6.938893903907228e-17,-0.0625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-3.469446951953614e-17,1.5407439555097887e-32,0.03125,4.0,4.0,3.0,4.0,0.1521874964237213,-0.05375000089406967,-0.05375000089406967,-0.06562499701976776,-0.05375000089406967,0.0052083334885537624,0.007499999832361937,0.00937500037252903,0.007499999832361937,0.0052083334885537624,0.00937500037252903,0.007499999832361937,0.0078125,0.00937500037252903,0.0052083334885537624,-0.05375000089406967,0.07229166477918625,0.007499999832361937,0.00937500037252903,0.007499999832361937,-0.015625,-0.004999999888241291,-0.0062500000931322575,-0.004999999888241291,-8.673617379884035e-19,-0.0,-3.4071584940695695e-19,-5.191786039850753e-35,-1.0417600683991628e-20,-2.7404064593939045e-19,-0.05375000089406967,0.007499999832361937,0.07229166477918625,0.00937500037252903,0.007499999832361937,-4.336808689942018e-19,-0.004999999888241291,-2.492337352446467e-20,-3.2526065174565133e-19,-0.015625,-0.0062500000931322575,-0.004999999888241291,-7.2222372914521344e-34,8.131516293641283e-20,-2.843264817601225e-19,-0.06562499701976776,0.00937500037252903,0.00937500037252903,0.14374999701976776,0.00937500037252903,1.6227999226518958e-20,-2.492337352446467e-20,-0.00937500037252903,-1.0417600683991628e-20,-0.0,-0.00937500037252903,8.131516293641283e-20,-0.046875,-0.00937500037252903,2.4578834795233314e-17,-0.05375000089406967,0.007499999832361937,0.007499999832361937,0.00937500037252903,0.07229166477918625,-4.336808689942018e-19,-2.76166732758199e-19,-1.2481856436723045e-36,-0.004999999888241291,-3.06869609144636e-19,-0.0,-0.004999999888241291,4.475586435671264e-17,-0.0062500000931322575,-0.015625,0.0052083334885537624,-0.015625,-4.336808689942018e-19,1.6227999226518958e-20,-4.336808689942018e-19,0.0052083334885537624,2.168404344971009e-19,-0.0,2.168404344971009e-19,6.529966673237617e-20,0.0,2.1881009430669225e-35,0.0,8.19685523388e-37,1.397791286400987e-20,0.007499999832361937,-0.004999999888241291,-0.004999999888241291,-2.492337352446467e-20,-2.76166732758199e-19,2.168404344971009e-19,0.0033333334140479565,1.6615583426701202e-20,9.29943392625507e-20,4.336808689942018e-19,-0.0,1.0842021724855044e-19,0.0,-1.4778599417463204e-36,-7.945437329644791e-21,0.00937500037252903,-0.0062500000931322575,-2.492337352446467e-20,-0.00937500037252903,-1.2481856436723045e-36,-0.0,1.6615583426701202e-20,0.0062500000931322575,4.63546527614742e-37,3.009265538105056e-36,-0.0,3.76158192263132e-37,0.0,-0.0,-3.481073415211031e-39,0.007499999832361937,-0.004999999888241291,-3.2526065174565133e-19,-1.0417600683991628e-20,-0.004999999888241291,2.168404344971009e-19,9.29943392625507e-20,4.63546527614742e-37,0.0033333334140479565,2.352130480956799e-21,-0.0,1.1872368235608753e-19,3.4611908845577857e-35,6.945067391925607e-21,1.6019841487191976e-19,0.0052083334885537624,-8.673617379884035e-19,-0.015625,-0.0,-3.06869609144636e-19,6.529966673237617e-20,4.336808689942018e-19,3.009265538105056e-36,2.352130480956799e-21,0.0052083334885537624,-0.0,2.168404344971009e-19,0.0,-3.009265538105056e-36,1.6150392882955292e-20,0.00937500037252903,-0.0,-0.0062500000931322575,-0.00937500037252903,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-3.4071584940695695e-19,-0.004999999888241291,8.131516293641283e-20,-0.004999999888241291,2.1881009430669225e-35,1.0842021724855044e-19,3.76158192263132e-37,1.1872368235608753e-19,2.168404344971009e-19,-0.0,0.0033333334140479565,4.81482486096809e-34,-5.421010862427522e-20,1.623244629166371e-19,0.0078125,-5.191786039850753e-35,-7.2222372914521344e-34,-0.046875,4.475586435671264e-17,0.0,0.0,0.0,3.4611908845577857e-35,0.0,-0.0,4.81482486096809e-34,0.0234375,-8.326673015560919e-18,-1.214306433183765e-17,0.00937500037252903,-1.0417600683991628e-20,8.131516293641283e-20,-0.00937500037252903,-0.0062500000931322575,8.19685523388e-37,-1.4778599417463204e-36,-0.0,6.945067391925607e-21,-3.009265538105056e-36,-0.0,-5.421010862427522e-20,-8.326673015560919e-18,0.0062500000931322575,-1.9513710222948183e-19,0.0052083334885537624,-2.7404064593939045e-19,-2.843264817601225e-19,2.4578834795233314e-17,-0.015625,1.397791286400987e-20,-7.945437329644791e-21,-3.481073415211031e-39,1.6019841487191976e-19,1.6150392882955292e-20,-0.0,1.623244629166371e-19,-1.214306433183765e-17,-1.9513710222948183e-19,0.0052083334885537624,4.0,4.0,3.0,5.0,0.12861904501914978,-0.04399999976158142,-0.04399999976158142,-0.05375000089406967,-0.03732142969965935,0.004166666883975267,0.006000000052154064,0.007499999832361937,0.004999999888241291,0.004166666883975267,0.007499999832361937,0.004999999888241291,0.0062500000931322575,0.0062500000931322575,0.0029761905316263437,-0.04399999976158142,0.05849999934434891,0.006000000052154064,0.007499999832361937,0.004999999888241291,-0.012500000186264515,-0.004000000189989805,-0.004999999888241291,-0.0033333334140479565,-0.0,0.0,-4.87890977618477e-19,-2.43276931299922e-33,1.0156231482146618e-19,-1.3729924310236928e-18,-0.04399999976158142,0.006000000052154064,0.05849999934434891,0.007499999832361937,0.004999999888241291,-0.0,-0.004000000189989805,-0.0,-4.87890977618477e-19,-0.012500000186264515,-0.004999999888241291,-0.0033333334140479565,-2.339953381084246e-33,5.421010862427522e-20,-1.1328043067493998e-18,-0.05375000089406967,0.007499999832361937,0.007499999832361937,0.11625000089406967,0.0062500000931322575,-0.0,-0.0,-0.007499999832361937,1.0156231482146618e-19,-0.0,-0.007499999832361937,5.421010862427522e-20,-0.03750000149011612,-0.0062500000931322575,-5.78449759823078e-18,-0.03732142969965935,0.004999999888241291,0.004999999888241291,0.0062500000931322575,0.03651785850524902,0.0,-0.0,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0024999999441206455,-1.189524681058105e-17,-0.0031250000465661287,-0.0059523810632526875,0.004166666883975267,-0.012500000186264515,-0.0,-0.0,0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006000000052154064,-0.004000000189989805,-0.004000000189989805,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-4.87890977618477e-19,1.0156231482146618e-19,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,2.439454888092385e-19,1.21638465649961e-33,-5.078115741073309e-20,6.864962155118464e-19,0.004166666883975267,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,0.0,-0.004999999888241291,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-4.87890977618477e-19,-0.0033333334140479565,5.421010862427522e-20,-0.0024999999441206455,-0.0,-0.0,-0.0,2.439454888092385e-19,-0.0,-0.0,0.0016666667070239782,1.169976690542123e-33,-2.710505431213761e-20,5.664021533746999e-19,0.0062500000931322575,-2.43276931299922e-33,-2.339953381084246e-33,-0.03750000149011612,-1.189524681058105e-17,-0.0,-0.0,-0.0,1.21638465649961e-33,-0.0,-0.0,1.169976690542123e-33,0.01875000074505806,-1.925929944387236e-34,2.9738117026452626e-18,0.0062500000931322575,1.0156231482146618e-19,5.421010862427522e-20,-0.0062500000931322575,-0.0031250000465661287,-0.0,-0.0,-0.0,-5.078115741073309e-20,-0.0,-0.0,-2.710505431213761e-20,-1.925929944387236e-34,0.0031250000465661287,-8.156290352987246e-20,0.0029761905316263437,-1.3729924310236928e-18,-1.1328043067493998e-18,-5.78449759823078e-18,-0.0059523810632526875,-0.0,-0.0,-0.0,6.864962155118464e-19,-0.0,-0.0,5.664021533746999e-19,2.9738117026452626e-18,-8.156290352987246e-20,0.0014880952658131719,4.0,4.0,3.0,6.0,0.11144841462373734,-0.037261903285980225,-0.037261903285980225,-0.04553571343421936,-0.02745535783469677,0.0034722222480922937,0.004999999888241291,0.0062500000931322575,0.0035714285913854837,0.0034722222480922937,0.0062500000931322575,0.0035714285913854837,0.0052083334885537624,0.004464285913854837,0.0018601190531626344,-0.037261903285980225,0.04914682358503342,0.004999999888241291,0.0062500000931322575,0.0035714285913854837,-0.010416666977107525,-0.0033333334140479565,-0.004166666883975267,-0.0023809524718672037,-0.0,0.0,-2.0328790734103208e-19,2.5008901289843332e-33,6.358599296015596e-34,-4.859097249550476e-19,-0.037261903285980225,0.004999999888241291,0.04914682358503342,0.0062500000931322575,0.0035714285913854837,-0.0,-0.0033333334140479565,-0.0,-2.0328790734103208e-19,-0.010416666977107525,-0.004166666883975267,-0.0023809524718672037,3.129636159629258e-33,6.358599296015596e-34,-4.859097249550476e-19,-0.04553571343421936,0.0062500000931322575,0.0062500000931322575,0.09761904925107956,0.004464285913854837,-0.0,-0.0,-0.0062500000931322575,2.6365719317699804e-33,-0.0,-0.0062500000931322575,3.139568719551722e-33,-0.03125,-0.004464285913854837,6.814985143278929e-18,-0.02745535783469677,0.0035714285913854837,0.0035714285913854837,0.004464285913854837,0.021212797611951828,-0.0,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0014285714132711291,2.0209527833385313e-17,-0.0017857142956927419,-0.0027901786379516125,0.0034722222480922937,-0.010416666977107525,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-0.0033333334140479565,-0.0,-0.0,-0.0,0.002222222276031971,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.004166666883975267,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0023809524718672037,-2.0328790734103208e-19,2.6365719317699804e-33,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0009523809421807528,-0.0,-0.0,8.131516293641283e-20,-1.0003560699608325e-33,-2.543439626570742e-34,1.9436388222720081e-19,0.0034722222480922937,-0.0,-0.010416666977107525,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,0.0,-0.004166666883975267,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-2.0328790734103208e-19,-0.0023809524718672037,3.139568719551722e-33,-0.0014285714132711291,-0.0,-0.0,-0.0,8.131516293641283e-20,-0.0,-0.0,0.0009523809421807528,-1.2518544638517033e-33,-2.543439626570742e-34,1.9436388222720081e-19,0.0052083334885537624,2.5008901289843332e-33,3.129636159629258e-33,-0.03125,2.0209527833385313e-17,-0.0,-0.0,-0.0,-1.0003560699608325e-33,-0.0,-0.0,-1.2518544638517033e-33,0.015625,-3.1720658023686032e-18,-3.4074925716394644e-18,0.004464285913854837,6.358599296015596e-34,6.358599296015596e-34,-0.004464285913854837,-0.0017857142956927419,-0.0,-0.0,-0.0,-2.543439626570742e-34,-0.0,-0.0,-2.543439626570742e-34,-3.1720658023686032e-18,0.0017857142956927419,1.9499704109827344e-34,0.0018601190531626344,-4.859097249550476e-19,-4.859097249550476e-19,6.814985143278929e-18,-0.0027901786379516125,-0.0,-0.0,-0.0,1.9436388222720081e-19,-0.0,-0.0,1.9436388222720081e-19,-3.4074925716394644e-18,1.9499704109827344e-34,0.0005580357392318547,4.0,4.0,3.0,7.0,0.09835813194513321,-0.03232142701745033,-0.03232142701745033,-0.03950892761349678,-0.02105654776096344,0.0029761905316263437,0.004285714123398066,0.0053571430034935474,0.0026785715017467737,0.0029761905316263437,0.0053571430034935474,0.0026785715017467737,0.004464285913854837,0.0033482143189758062,0.0012400794075801969,-0.03232142701745033,0.04238095134496689,0.004285714123398066,0.0053571430034935474,0.0026785715017467737,-0.008928571827709675,-0.0028571428265422583,-0.0035714285913854837,-0.0017857142956927419,-1.6479873021779667e-17,-3.903127820947816e-18,-8.673617379884035e-18,1.5612511283791264e-17,-8.456776945386935e-18,-3.686287386450715e-18,-0.03232142701745033,0.004285714123398066,0.04238095134496689,0.0053571430034935474,0.0026785715017467737,-2.5181728693415038e-17,-0.0028571428265422583,1.734723475976807e-18,-8.483881999699072e-18,-0.008928571827709675,-0.0035714285913854837,-0.0017857142956927419,5.204170427930421e-18,-7.697835424647081e-18,-2.7647155398380363e-18,-0.03950892761349678,0.0053571430034935474,0.0053571430034935474,0.08415178209543228,0.0033482143189758062,-2.386628321760666e-17,1.2010435846782122e-17,-0.0053571430034935474,-6.207057437479513e-18,-2.2948087922254422e-17,-0.0053571430034935474,-5.177065373618284e-18,-0.02678571455180645,-0.0033482143189758062,-7.697835424647081e-18,-0.02105654776096344,0.0026785715017467737,0.0026785715017467737,0.0033482143189758062,0.01346726156771183,-1.8106176280507924e-17,-2.332466520484164e-18,-3.263128254848188e-18,-0.0008928571478463709,-1.1458113289710052e-17,-5.622865679357306e-18,-0.0008928571478463709,-1.1555444323666717e-17,-0.0011160714784637094,-0.0014880952658131719,0.0029761905316263437,-0.008928571827709675,-2.5181728693415038e-17,-2.386628321760666e-17,-1.8106176280507924e-17,0.0029761905316263437,3.858550230556721e-18,7.415247366341816e-18,4.845969789831683e-18,3.2283037442645522e-18,2.2197706066493268e-18,2.124998249122442e-18,-8.845325825571523e-21,2.6189818255426782e-18,5.421010862427522e-19,0.004285714123398066,-0.0028571428265422583,-0.0028571428265422583,1.2010435846782122e-17,-2.332466520484164e-18,3.858550230556721e-18,0.0019047618843615055,-2.168404344971009e-19,3.6823015132715517e-19,-6.730715006851141e-20,-1.3615796133171455e-18,-1.7794849589578305e-19,-4.763692202252565e-18,-2.6610542477498683e-20,2.710505431213761e-19,0.0053571430034935474,-0.0035714285913854837,1.734723475976807e-18,-0.0053571430034935474,-3.263128254848188e-18,7.415247366341816e-18,-2.168404344971009e-19,0.0035714285913854837,4.52923416487658e-19,4.470253602262135e-19,-3.156559061015378e-18,1.9466326991015672e-19,-8.442061402289616e-18,-1.2100609080103212e-18,5.421010862427522e-19,0.0026785715017467737,-0.0017857142956927419,-8.483881999699072e-18,-6.207057437479513e-18,-0.0008928571478463709,4.845969789831683e-18,3.6823015132715517e-19,4.52923416487658e-19,0.0005952381179668009,1.599198204416119e-18,8.257442651181176e-19,6.997846135585694e-19,1.0508140610355672e-18,6.2266935678481795e-19,5.421010862427522e-20,0.0029761905316263437,-1.6479873021779667e-17,-0.008928571827709675,-2.2948087922254422e-17,-1.1458113289710052e-17,3.2283037442645522e-18,-6.730715006851141e-20,4.470253602262135e-19,1.599198204416119e-18,0.0029761905316263437,5.058659845605299e-18,2.6525763185554475e-18,3.212403678530058e-18,2.3469163318096995e-18,3.2526065174565133e-19,0.0053571430034935474,-3.903127820947816e-18,-0.0035714285913854837,-0.0053571430034935474,-5.622865679357306e-18,2.2197706066493268e-18,-1.3615796133171455e-18,-3.156559061015378e-18,8.257442651181176e-19,5.058659845605299e-18,0.0035714285913854837,4.607859233063394e-19,-8.107648824246678e-18,-9.312654728136111e-19,7.047314121155779e-19,0.0026785715017467737,-8.673617379884035e-18,-0.0017857142956927419,-5.177065373618284e-18,-0.0008928571478463709,2.124998249122442e-18,-1.7794849589578305e-19,1.9466326991015672e-19,6.997846135585694e-19,2.6525763185554475e-18,4.607859233063394e-19,0.0005952381179668009,9.841624322154584e-19,6.333824313919336e-19,1.6263032587282567e-19,0.004464285913854837,1.5612511283791264e-17,5.204170427930421e-18,-0.02678571455180645,-1.1555444323666717e-17,-8.845325825571523e-21,-4.763692202252565e-18,-8.442061402289616e-18,1.0508140610355672e-18,3.212403678530058e-18,-8.107648824246678e-18,9.841624322154584e-19,0.013392857275903225,-3.604972223514302e-18,1.734723475976807e-18,0.0033482143189758062,-8.456776945386935e-18,-7.697835424647081e-18,-0.0033482143189758062,-0.0011160714784637094,2.6189818255426782e-18,-2.6610542477498683e-20,-1.2100609080103212e-18,6.2266935678481795e-19,2.3469163318096995e-18,-9.312654728136111e-19,6.333824313919336e-19,-3.604972223514302e-18,0.0011160714784637094,3.7947076036992655e-19,0.0012400794075801969,-3.686287386450715e-18,-2.7647155398380363e-18,-7.697835424647081e-18,-0.0014880952658131719,5.421010862427522e-19,2.710505431213761e-19,5.421010862427522e-19,5.421010862427522e-20,3.2526065174565133e-19,7.047314121155779e-19,1.6263032587282567e-19,1.734723475976807e-18,3.7947076036992655e-19,0.00024801588733680546,4.0,4.0,3.0,8.0,0.08803819119930267,-0.028541667386889458,-0.028541667386889458,-0.03489583358168602,-0.01666666753590107,0.0026041667442768812,0.0037499999161809683,0.004687500186264515,0.0020833334419876337,0.0026041667442768812,0.004687500186264515,0.0020833334419876337,0.00390625,0.0026041667442768812,0.0008680555620230734,-0.028541667386889458,0.03725694492459297,0.0037499999161809683,0.004687500186264515,0.0020833334419876337,-0.0078125,-0.0024999999441206455,-0.0031250000465661287,-0.0013888889225199819,6.5052130349130266e-18,3.0357660829594124e-18,2.168404344971009e-19,-1.5612511283791264e-17,3.903127820947816e-18,6.071532165918825e-18,-0.028541667386889458,0.0037499999161809683,0.03725694492459297,0.004687500186264515,0.0020833334419876337,9.474028773453622e-18,-0.0024999999441206455,6.071532165918825e-18,-4.20128341838133e-18,-0.0078125,-0.0031250000465661287,-0.0013888889225199819,-1.8214596497756474e-17,2.710505431213761e-18,6.0986372202309624e-18,-0.03489583358168602,0.004687500186264515,0.004687500186264515,0.07395832985639572,0.0026041667442768812,9.705147999684613e-18,-7.143594635734501e-18,-0.004687500186264515,-7.94178091345632e-18,2.2431334958702745e-18,-0.004687500186264515,-5.854691731421724e-18,-0.0234375,-0.0026041667442768812,-9.75781955236954e-19,-0.01666666753590107,0.0020833334419876337,0.0020833334419876337,0.0026041667442768812,0.00910218246281147,1.2034644114589099e-17,5.261592892463546e-18,4.55275039270358e-18,-0.0005952381179668009,8.431888735116439e-18,3.012300209752202e-18,-0.0005952381179668009,-2.254887070630163e-17,-0.0007440476329065859,-0.0008680555620230734,0.0026041667442768812,-0.0078125,9.474028773453622e-18,9.705147999684613e-18,1.2034644114589099e-17,0.0026041667442768812,3.2515771945817676e-19,-1.954788880887099e-18,-2.4562143427845336e-19,-1.8619945189999816e-18,-1.7355171557745517e-18,-5.409514085888801e-19,1.0087059149656724e-18,-1.3250046851597711e-18,-1.3010426069826053e-18,0.0037499999161809683,-0.0024999999441206455,-0.0024999999441206455,-7.143594635734501e-18,5.261592892463546e-18,3.2515771945817676e-19,0.0016666667070239782,8.673617379884035e-19,3.8896211506169556e-19,-1.5649400282087467e-19,8.374274674873932e-19,-2.512086935806024e-20,3.0244146834133472e-18,-2.6869300082741755e-19,-7.047314121155779e-19,0.004687500186264515,-0.0031250000465661287,6.071532165918825e-18,-0.004687500186264515,4.55275039270358e-18,-1.954788880887099e-18,8.673617379884035e-19,0.0031250000465661287,-1.708390465519517e-19,-1.6553829999577115e-18,-1.5535488981438848e-18,-1.387435986795846e-19,-4.3889884837527816e-18,-3.9982982074457037e-19,-3.7947076036992655e-19,0.0020833334419876337,-0.0013888889225199819,-4.20128341838133e-18,-7.94178091345632e-18,-0.0005952381179668009,-2.4562143427845336e-19,3.8896211506169556e-19,-1.708390465519517e-19,0.00039682540227659047,4.607859233063394e-19,5.112570204655101e-19,4.219783829768961e-19,3.173899041401174e-18,2.488033137516093e-19,-1.8973538018496328e-19,0.0026041667442768812,6.5052130349130266e-18,-0.0078125,2.2431334958702745e-18,8.431888735116439e-18,-1.8619945189999816e-18,-1.5649400282087467e-19,-1.6553829999577115e-18,4.607859233063394e-19,0.0026041667442768812,-3.226261073440641e-19,3.065489991090893e-20,2.656003948218714e-18,-9.174998432522334e-19,-1.0842021724855044e-18,0.004687500186264515,3.0357660829594124e-18,-0.0031250000465661287,-0.004687500186264515,3.012300209752202e-18,-1.7355171557745517e-18,8.374274674873932e-19,-1.5535488981438848e-18,5.112570204655101e-19,-3.226261073440641e-19,0.0031250000465661287,-5.421010862427522e-20,-4.29340652320136e-18,-2.366158931001944e-19,-4.336808689942018e-19,0.0020833334419876337,2.168404344971009e-19,-0.0013888889225199819,-5.854691731421724e-18,-0.0005952381179668009,-5.409514085888801e-19,-2.512086935806024e-20,-1.387435986795846e-19,4.219783829768961e-19,3.065489991090893e-20,-5.421010862427522e-20,0.00039682540227659047,2.5941221530033158e-18,2.4189638148618565e-19,-1.6263032587282567e-19,0.00390625,-1.5612511283791264e-17,-1.8214596497756474e-17,-0.0234375,-2.254887070630163e-17,1.0087059149656724e-18,3.0244146834133472e-18,-4.3889884837527816e-18,3.173899041401174e-18,2.656003948218714e-18,-4.29340652320136e-18,2.5941221530033158e-18,0.01171875,6.288372600415926e-18,9.75781955236954e-19,0.0026041667442768812,3.903127820947816e-18,2.710505431213761e-18,-0.0026041667442768812,-0.0007440476329065859,-1.3250046851597711e-18,-2.6869300082741755e-19,-3.9982982074457037e-19,2.488033137516093e-19,-9.174998432522334e-19,-2.366158931001944e-19,2.4189638148618565e-19,6.288372600415926e-18,0.0007440476329065859,2.710505431213761e-20,0.0008680555620230734,6.071532165918825e-18,6.0986372202309624e-18,-9.75781955236954e-19,-0.0008680555620230734,-1.3010426069826053e-18,-7.047314121155779e-19,-3.7947076036992655e-19,-1.8973538018496328e-19,-1.0842021724855044e-18,-4.336808689942018e-19,-1.6263032587282567e-19,9.75781955236954e-19,2.710505431213761e-20,0.00012400794366840273,4.0,4.0,4.0,3.0,0.1521874964237213,-0.05375000089406967,-0.05375000089406967,-0.05375000089406967,-0.06562499701976776,0.0052083334885537624,0.007499999832361937,0.007499999832361937,0.00937500037252903,0.0052083334885537624,0.007499999832361937,0.00937500037252903,0.0052083334885537624,0.00937500037252903,0.0078125,-0.05375000089406967,0.07229166477918625,0.007499999832361937,0.007499999832361937,0.00937500037252903,-0.015625,-0.004999999888241291,-0.004999999888241291,-0.0062500000931322575,-0.0,-3.4071584940695695e-19,-0.0,-4.336808689942018e-19,-0.0,0.0,-0.05375000089406967,0.007499999832361937,0.07229166477918625,0.007499999832361937,0.00937500037252903,-0.0,-0.004999999888241291,-2.4451174563731933e-19,-2.492337352446467e-20,-0.015625,-0.004999999888241291,-0.0062500000931322575,1.122757965565396e-19,-0.0,-0.0,-0.05375000089406967,0.007499999832361937,0.007499999832361937,0.07229166477918625,0.00937500037252903,-3.0077460634922146e-19,-2.7282471628833164e-19,-0.004999999888241291,-2.492337352446467e-20,-0.0,-0.004999999888241291,-7.506845812471289e-21,-0.015625,-0.0062500000931322575,-0.0,-0.06562499701976776,0.00937500037252903,0.00937500037252903,0.00937500037252903,0.14374999701976776,-0.0,-2.492337352446467e-20,-2.492337352446467e-20,-0.00937500037252903,1.4891427221823852e-20,-7.506845812471289e-21,-0.00937500037252903,-0.0,-0.00937500037252903,-0.046875,0.0052083334885537624,-0.015625,-0.0,-3.0077460634922146e-19,-0.0,0.0052083334885537624,2.168404344971009e-19,2.168404344971009e-19,-0.0,-9.075322910215752e-20,2.1650708965179022e-35,-0.0,3.585388515716956e-20,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-0.004999999888241291,-2.7282471628833164e-19,-2.492337352446467e-20,2.168404344971009e-19,0.0033333334140479565,8.609763689485887e-20,1.6615583426701202e-20,2.168404344971009e-19,1.0842021724855044e-19,-0.0,-5.801648522610168e-21,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-2.4451174563731933e-19,-0.004999999888241291,-2.492337352446467e-20,2.168404344971009e-19,8.609763689485887e-20,0.0033333334140479565,1.6615583426701202e-20,-1.9200070476531924e-20,1.1872368235608753e-19,-0.0,2.168404344971009e-19,-0.0,-0.0,0.00937500037252903,-0.0062500000931322575,-2.492337352446467e-20,-2.492337352446467e-20,-0.00937500037252903,-0.0,1.6615583426701202e-20,1.6615583426701202e-20,0.0062500000931322575,3.009265538105056e-36,7.52316384526264e-37,-0.0,3.009265538105056e-36,-0.0,-0.0,0.0052083334885537624,-0.0,-0.015625,-0.0,1.4891427221823852e-20,-9.075322910215752e-20,2.168404344971009e-19,-1.9200070476531924e-20,3.009265538105056e-36,0.0052083334885537624,2.168404344971009e-19,0.0,-1.062428646188092e-19,0.0,-0.0,0.007499999832361937,-3.4071584940695695e-19,-0.004999999888241291,-0.004999999888241291,-7.506845812471289e-21,2.1650708965179022e-35,1.0842021724855044e-19,1.1872368235608753e-19,7.52316384526264e-37,2.168404344971009e-19,0.0033333334140479565,5.0045638749808594e-21,1.623244629166371e-19,-0.0,-0.0,0.00937500037252903,-0.0,-0.0062500000931322575,-7.506845812471289e-21,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,0.0,5.0045638749808594e-21,0.0062500000931322575,3.76158192263132e-37,-0.0,-0.0,0.0052083334885537624,-4.336808689942018e-19,1.122757965565396e-19,-0.015625,-0.0,3.585388515716956e-20,-5.801648522610168e-21,2.168404344971009e-19,3.009265538105056e-36,-1.062428646188092e-19,1.623244629166371e-19,3.76158192263132e-37,0.0052083334885537624,0.0,-0.0,0.00937500037252903,-0.0,-0.0,-0.0062500000931322575,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.0062500000931322575,-0.0,0.0078125,0.0,-0.0,-0.0,-0.046875,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0234375,4.0,4.0,4.0,4.0,0.12359374761581421,-0.041718751192092896,-0.041718751192092896,-0.041718751192092896,-0.041718751192092896,0.00390625,0.005625000223517418,0.005625000223517418,0.005625000223517418,0.00390625,0.005625000223517418,0.005625000223517418,0.00390625,0.005625000223517418,0.00390625,-0.041718751192092896,0.055156249552965164,0.005625000223517418,0.005625000223517418,0.005625000223517418,-0.01171875,-0.0037499999161809683,-0.0037499999161809683,-0.0037499999161809683,1.0842021724855044e-18,4.500019696604856e-19,4.362292573651128e-19,1.3010426069826053e-18,3.8630490074144552e-19,1.3570291893699147e-18,-0.041718751192092896,0.005625000223517418,0.055156249552965164,0.005625000223517418,0.005625000223517418,-2.168404344971009e-19,-0.0037499999161809683,-2.2870697369433055e-20,5.421010862427522e-20,-0.01171875,-0.0037499999161809683,-0.0037499999161809683,1.1774501395410307e-18,2.9202750741359704e-19,1.492990695306148e-18,-0.041718751192092896,0.005625000223517418,0.005625000223517418,0.055156249552965164,0.005625000223517418,-3.506719762054042e-19,-5.441305738756511e-19,-0.0037499999161809683,-1.0887461082348055e-19,-2.168404344971009e-19,-0.0037499999161809683,-0.0,-0.01171875,-0.0037499999161809683,1.351036059036815e-18,-0.041718751192092896,0.005625000223517418,0.005625000223517418,0.005625000223517418,0.055156249552965164,-4.336808689942018e-19,-4.9127088930015695e-19,-4.9127088930015695e-19,-0.0037499999161809683,2.0548921589679468e-19,-4.284692175448114e-19,-0.0037499999161809683,2.168404344971009e-19,-0.0037499999161809683,-0.01171875,0.00390625,-0.01171875,-2.168404344971009e-19,-3.506719762054042e-19,-4.336808689942018e-19,0.00390625,-0.0,-0.0,-0.0,7.95673884632251e-20,-3.170046174271252e-36,7.028363519005962e-36,8.814383616107071e-20,-1.2652945427966772e-35,6.218435591148515e-20,0.005625000223517418,-0.0037499999161809683,-0.0037499999161809683,-5.441305738756511e-19,-4.9127088930015695e-19,-0.0,0.0024999999441206455,3.1982992668090514e-19,3.1264332982025615e-19,-8.673617379884035e-19,-0.0,-0.0,1.970990453954869e-20,-3.218177229554137e-35,6.828346068263266e-21,0.005625000223517418,-0.0037499999161809683,-2.2870697369433055e-20,-0.0037499999161809683,-4.9127088930015695e-19,-0.0,3.1982992668090514e-19,0.0024999999441206455,3.2248711515176103e-19,-3.1308182359440805e-21,-2.9636857711766947e-19,-1.3959983481894712e-21,-1.0842021724855044e-18,-0.0,2.9492591596824017e-21,0.005625000223517418,-0.0037499999161809683,5.421010862427522e-20,-1.0887461082348055e-19,-0.0037499999161809683,-0.0,3.1264332982025615e-19,3.2248711515176103e-19,0.0024999999441206455,-2.55889889612799e-20,-3.632748644753452e-21,-2.8942351699588597e-19,5.172846662021384e-21,-2.575365832613676e-19,-1.0498874119543546e-18,0.00390625,1.0842021724855044e-18,-0.01171875,-2.168404344971009e-19,2.0548921589679468e-19,7.95673884632251e-20,-8.673617379884035e-19,-3.1308182359440805e-21,-2.55889889612799e-20,0.00390625,-2.168404344971009e-19,-2.168404344971009e-19,7.929769527179014e-20,0.0,-1.8137516590029213e-20,0.005625000223517418,4.500019696604856e-19,-0.0037499999161809683,-0.0037499999161809683,-4.284692175448114e-19,-3.170046174271252e-36,-0.0,-2.9636857711766947e-19,-3.632748644753452e-21,-2.168404344971009e-19,0.0024999999441206455,2.5979165855694614e-19,-9.730069710769917e-19,5.421010862427522e-20,-1.1352339009983557e-20,0.005625000223517418,4.362292573651128e-19,-0.0037499999161809683,-0.0,-0.0037499999161809683,7.028363519005962e-36,-0.0,-1.3959983481894712e-21,-2.8942351699588597e-19,-2.168404344971009e-19,2.5979165855694614e-19,0.0024999999441206455,-4.362494812848549e-21,-2.488951307996027e-19,-9.513036129599785e-19,0.00390625,1.3010426069826053e-18,1.1774501395410307e-18,-0.01171875,2.168404344971009e-19,8.814383616107071e-20,1.970990453954869e-20,-1.0842021724855044e-18,5.172846662021384e-21,7.929769527179014e-20,-9.730069710769917e-19,-4.362494812848549e-21,0.00390625,-2.4173283236944743e-19,-1.865691816005289e-20,0.005625000223517418,3.8630490074144552e-19,2.9202750741359704e-19,-0.0037499999161809683,-0.0037499999161809683,-1.2652945427966772e-35,-3.218177229554137e-35,-0.0,-2.575365832613676e-19,0.0,5.421010862427522e-20,-2.488951307996027e-19,-2.4173283236944743e-19,0.0024999999441206455,-8.516569902760483e-19,0.00390625,1.3570291893699147e-18,1.492990695306148e-18,1.351036059036815e-18,-0.01171875,6.218435591148515e-20,6.828346068263266e-21,2.9492591596824017e-21,-1.0498874119543546e-18,-1.8137516590029213e-20,-1.1352339009983557e-20,-9.513036129599785e-19,-1.865691816005289e-20,-8.516569902760483e-19,0.00390625,4.0,4.0,4.0,5.0,0.10421428829431534,-0.03412500023841858,-0.03412500023841858,-0.03412500023841858,-0.028928572311997414,0.0031250000465661287,0.0044999998062849045,0.0044999998062849045,0.0037499999161809683,0.0031250000465661287,0.0044999998062849045,0.0037499999161809683,0.0031250000465661287,0.0037499999161809683,0.0022321429569274187,-0.03412500023841858,0.04462499916553497,0.0044999998062849045,0.0044999998062849045,0.0037499999161809683,-0.00937500037252903,-0.003000000026077032,-0.003000000026077032,-0.0024999999441206455,-0.0,0.0,3.2526065174565133e-19,-0.0,3.383233328827239e-19,8.553801302131495e-19,-0.03412500023841858,0.0044999998062849045,0.04462499916553497,0.0044999998062849045,0.0037499999161809683,-0.0,-0.003000000026077032,-0.0,3.2526065174565133e-19,-0.00937500037252903,-0.003000000026077032,-0.0024999999441206455,0.0,3.2526065174565133e-19,7.552028711662666e-19,-0.03412500023841858,0.0044999998062849045,0.0044999998062849045,0.04462499916553497,0.0037499999161809683,-0.0,-0.0,-0.003000000026077032,3.383233328827239e-19,-0.0,-0.003000000026077032,3.2526065174565133e-19,-0.00937500037252903,-0.0024999999441206455,7.469599129645991e-19,-0.028928572311997414,0.0037499999161809683,0.0037499999161809683,0.0037499999161809683,0.027857143431901932,0.0,-0.0,-0.0,-0.0018749999580904841,-0.0,-0.0,-0.0018749999580904841,-0.0,-0.0018749999580904841,-0.004464285913854837,0.0031250000465661287,-0.00937500037252903,-0.0,-0.0,0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0044999998062849045,-0.003000000026077032,-0.003000000026077032,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0044999998062849045,-0.003000000026077032,-0.0,-0.003000000026077032,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0024999999441206455,3.2526065174565133e-19,3.383233328827239e-19,-0.0018749999580904841,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0,-0.0,-1.6263032587282567e-19,-0.0,-1.6916166644136194e-19,-4.2769006510657476e-19,0.0031250000465661287,-0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,0.0044999998062849045,0.0,-0.003000000026077032,-0.003000000026077032,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,3.2526065174565133e-19,-0.0024999999441206455,3.2526065174565133e-19,-0.0018749999580904841,-0.0,-0.0,-0.0,-1.6263032587282567e-19,-0.0,-0.0,0.0012499999720603228,-0.0,-1.6263032587282567e-19,-3.776014355831333e-19,0.0031250000465661287,-0.0,0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,0.0037499999161809683,3.383233328827239e-19,3.2526065174565133e-19,-0.0024999999441206455,-0.0018749999580904841,-0.0,-0.0,-0.0,-1.6916166644136194e-19,-0.0,-0.0,-1.6263032587282567e-19,-0.0,0.0012499999720603228,-3.7347995648229953e-19,0.0022321429569274187,8.553801302131495e-19,7.552028711662666e-19,7.469599129645991e-19,-0.004464285913854837,-0.0,-0.0,-0.0,-4.2769006510657476e-19,-0.0,-0.0,-3.776014355831333e-19,-0.0,-3.7347995648229953e-19,0.0011160714784637094,4.0,4.0,4.0,6.0,0.09015624970197678,-0.028883928433060646,-0.028883928433060646,-0.028883928433060646,-0.02126116119325161,0.0026041667442768812,0.0037499999161809683,0.0037499999161809683,0.0026785715017467737,0.0026041667442768812,0.0037499999161809683,0.0026785715017467737,0.0026041667442768812,0.0026785715017467737,0.0013950893189758062,-0.028883928433060646,0.037485118955373764,0.0037499999161809683,0.0037499999161809683,0.0026785715017467737,-0.0078125,-0.0024999999441206455,-0.0024999999441206455,-0.0017857142956927419,-0.0,0.0,-1.6940658945086007e-19,-0.0,-1.8228528752512493e-19,-3.093636879384541e-19,-0.028883928433060646,0.0037499999161809683,0.037485118955373764,0.0037499999161809683,0.0026785715017467737,-0.0,-0.0024999999441206455,-0.0,-1.6940658945086007e-19,-0.0078125,-0.0024999999441206455,-0.0017857142956927419,0.0,-1.6940658945086007e-19,-3.5974966304271425e-19,-0.028883928433060646,0.0037499999161809683,0.0037499999161809683,0.037485118955373764,0.0026785715017467737,-0.0,-0.0,-0.0024999999441206455,-1.8228528752512493e-19,-0.0,-0.0024999999441206455,-1.6940658945086007e-19,-0.0078125,-0.0017857142956927419,-3.7712632371879813e-19,-0.02126116119325161,0.0026785715017467737,0.0026785715017467737,0.0026785715017467737,0.016177454963326454,0.0,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0010714285308495164,-0.0020926338620483875,0.0026041667442768812,-0.0078125,-0.0,-0.0,0.0,0.0026041667442768812,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0024999999441206455,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0024999999441206455,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026785715017467737,-0.0017857142956927419,-1.6940658945086007e-19,-1.8228528752512493e-19,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,6.776263578034403e-20,-0.0,7.291410984017115e-20,1.2374547000550281e-19,0.0026041667442768812,-0.0,-0.0078125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026041667442768812,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,0.0,-0.0024999999441206455,-0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,0.0026785715017467737,-1.6940658945086007e-19,-0.0017857142956927419,-1.6940658945086007e-19,-0.0010714285308495164,-0.0,-0.0,-0.0,6.776263578034403e-20,-0.0,-0.0,0.0007142857066355646,-0.0,6.776263578034403e-20,1.4389986780202512e-19,0.0026041667442768812,-0.0,0.0,-0.0078125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026041667442768812,-0.0,-0.0,0.0026785715017467737,-1.8228528752512493e-19,-1.6940658945086007e-19,-0.0017857142956927419,-0.0010714285308495164,-0.0,-0.0,-0.0,7.291410984017115e-20,-0.0,-0.0,6.776263578034403e-20,-0.0,0.0007142857066355646,1.5085052431764042e-19,0.0013950893189758062,-3.093636879384541e-19,-3.5974966304271425e-19,-3.7712632371879813e-19,-0.0020926338620483875,-0.0,-0.0,-0.0,1.2374547000550281e-19,-0.0,-0.0,1.4389986780202512e-19,-0.0,1.5085052431764042e-19,0.0004185267898719758,4.0,4.0,4.0,7.0,0.07947172969579697,-0.025044642388820648,-0.025044642388820648,-0.025044642388820648,-0.01629464328289032,0.0022321429569274187,0.003214285708963871,0.003214285708963871,0.002008928684517741,0.0022321429569274187,0.003214285708963871,0.002008928684517741,0.0022321429569274187,0.002008928684517741,0.0009300595265813172,-0.025044642388820648,0.03232142701745033,0.003214285708963871,0.003214285708963871,0.002008928684517741,-0.0066964286379516125,-0.002142857061699033,-0.002142857061699033,-0.0013392857508733869,-1.3444106938820255e-17,-2.168404344971009e-18,-5.854691731421724e-18,-1.0408340855860843e-17,-5.854691731421724e-18,-1.734723475976807e-18,-0.025044642388820648,0.003214285708963871,0.03232142701745033,0.003214285708963871,0.002008928684517741,-1.1613082268749412e-17,-0.002142857061699033,-2.4936649967166602e-18,-8.375461782450522e-18,-0.0066964286379516125,-0.002142857061699033,-0.0013392857508733869,-2.168404344971009e-17,-9.432558900623889e-18,-2.6834003769016235e-18,-0.025044642388820648,0.003214285708963871,0.003214285708963871,0.03232142701745033,0.002008928684517741,-1.1151103550999771e-17,-2.9586796741095238e-18,-0.002142857061699033,-7.616520261710669e-18,-3.0338513252774747e-17,-0.002142857061699033,-6.640738306473715e-18,-0.0066964286379516125,-0.0013392857508733869,-2.1141942363467336e-18,-0.01629464328289032,0.002008928684517741,0.002008928684517741,0.002008928684517741,0.01026785746216774,-8.890457814381136e-18,-1.6693872711258108e-18,-1.067625162817212e-18,-0.0006696428754366934,-1.62413025525908e-17,-2.9347911116092986e-18,-0.0006696428754366934,-1.1942144642590357e-17,-0.0006696428754366934,-0.0011160714784637094,0.0022321429569274187,-0.0066964286379516125,-1.1613082268749412e-17,-1.1151103550999771e-17,-8.890457814381136e-18,0.0022321429569274187,1.5176893778187922e-18,1.4948591929123287e-18,1.9404604583164556e-18,1.5525863701036028e-18,4.003089651143917e-19,1.2285226487043157e-18,1.4033489255286232e-18,1.2568929791609297e-18,2.710505431213761e-19,0.003214285708963871,-0.002142857061699033,-0.002142857061699033,-2.9586796741095238e-18,-1.6693872711258108e-18,1.5176893778187922e-18,0.0014285714132711291,-1.6263032587282567e-19,2.5790142161029176e-19,6.767587487384487e-19,-9.624091976924477e-20,1.739031561853954e-19,9.119238187430134e-19,2.049308689833214e-19,5.421010862427522e-20,0.003214285708963871,-0.002142857061699033,-2.4936649967166602e-18,-0.002142857061699033,-1.067625162817212e-18,1.4948591929123287e-18,-1.6263032587282567e-19,0.0014285714132711291,2.3238936206156642e-19,9.356204753411263e-19,-1.5614719442436474e-19,1.0955580698261504e-19,6.186783654256144e-20,4.024895747677949e-20,5.421010862427522e-20,0.002008928684517741,-0.0013392857508733869,-8.375461782450522e-18,-7.616520261710669e-18,-0.0006696428754366934,1.9404604583164556e-18,2.5790142161029176e-19,2.3238936206156642e-19,0.00044642857392318547,1.7889335846010823e-18,5.184378270618712e-19,5.391523424553655e-19,1.5252983020809378e-18,5.432867462532704e-19,5.421010862427522e-20,0.0022321429569274187,-1.3444106938820255e-17,-0.0066964286379516125,-3.0338513252774747e-17,-1.62413025525908e-17,1.5525863701036028e-18,6.767587487384487e-19,9.356204753411263e-19,1.7889335846010823e-18,0.0022321429569274187,5.749324637814107e-18,3.8209697609672116e-18,4.000754158383162e-18,2.2597507271958523e-18,4.87890977618477e-19,0.003214285708963871,-2.168404344971009e-18,-0.002142857061699033,-0.002142857061699033,-2.9347911116092986e-18,4.003089651143917e-19,-9.624091976924477e-20,-1.5614719442436474e-19,5.184378270618712e-19,5.749324637814107e-18,0.0014285714132711291,5.692061405548898e-19,1.8721382348517194e-18,4.0021042722392133e-19,5.421010862427522e-20,0.002008928684517741,-5.854691731421724e-18,-0.0013392857508733869,-6.640738306473715e-18,-0.0006696428754366934,1.2285226487043157e-18,1.739031561853954e-19,1.0955580698261504e-19,5.391523424553655e-19,3.8209697609672116e-18,5.692061405548898e-19,0.00044642857392318547,1.3429377540447676e-18,4.678372244380477e-19,0.0,0.0022321429569274187,-1.0408340855860843e-17,-2.168404344971009e-17,-0.0066964286379516125,-1.1942144642590357e-17,1.4033489255286232e-18,9.119238187430134e-19,6.186783654256144e-20,1.5252983020809378e-18,4.000754158383162e-18,1.8721382348517194e-18,1.3429377540447676e-18,0.0022321429569274187,2.7511630126819675e-18,2.710505431213761e-19,0.002008928684517741,-5.854691731421724e-18,-9.432558900623889e-18,-0.0013392857508733869,-0.0006696428754366934,1.2568929791609297e-18,2.049308689833214e-19,4.024895747677949e-20,5.432867462532704e-19,2.2597507271958523e-18,4.0021042722392133e-19,4.678372244380477e-19,2.7511630126819675e-18,0.00044642857392318547,8.131516293641283e-20,0.0009300595265813172,-1.734723475976807e-18,-2.6834003769016235e-18,-2.1141942363467336e-18,-0.0011160714784637094,2.710505431213761e-19,5.421010862427522e-20,5.421010862427522e-20,5.421010862427522e-20,4.87890977618477e-19,5.421010862427522e-20,0.0,2.710505431213761e-19,8.131516293641283e-20,0.00018601190822664648,4.0,4.0,4.0,8.0,0.0710677057504654,-0.022109374403953552,-0.022109374403953552,-0.022109374403953552,-0.012890624813735485,0.001953125,0.002812500111758709,0.002812500111758709,0.0015625000232830644,0.001953125,0.002812500111758709,0.0015625000232830644,0.001953125,0.0015625000232830644,0.0006510416860692203,-0.022109374403953552,0.028411459177732468,0.002812500111758709,0.002812500111758709,0.0015625000232830644,-0.005859375,-0.0018749999580904841,-0.0018749999580904841,-0.0010416667209938169,-1.3010426069826053e-17,-1.452830911130576e-17,-5.312590645178972e-18,-1.3877787807814457e-17,-5.854691731421724e-18,-4.662069341687669e-18,-0.022109374403953552,0.002812500111758709,0.028411459177732468,0.002812500111758709,0.0015625000232830644,-5.963105331225374e-18,-0.0018749999580904841,-2.0166160408230382e-17,-7.250602028496811e-18,-0.005859375,-0.0018749999580904841,-0.0010416667209938169,-2.233456475320139e-17,-7.643625316022806e-18,-5.177065373618284e-18,-0.022109374403953552,0.002812500111758709,0.002812500111758709,0.028411459177732468,0.0015625000232830644,-7.121206165275141e-18,-2.0710001882481946e-17,-0.0018749999580904841,-7.074419175467916e-18,-2.156013013958842e-17,-0.0018749999580904841,-6.884683795282953e-18,-0.005859375,-0.0010416667209938169,-4.824699667560495e-18,-0.012890624813735485,0.0015625000232830644,0.0015625000232830644,0.0015625000232830644,0.006938244216144085,-5.312590645178972e-18,-8.464715397725606e-18,-8.363795227091074e-18,-0.00044642857392318547,-8.977162059008332e-18,-8.038412152614765e-18,-0.00044642857392318547,-8.58856584212072e-18,-0.00044642857392318547,-0.0006510416860692203,0.001953125,-0.005859375,-5.963105331225374e-18,-7.121206165275141e-18,-5.312590645178972e-18,0.001953125,-7.297777689794359e-19,-6.583832416233129e-19,-7.861872991537013e-19,8.294257875306497e-19,1.229110257131958e-18,5.492262132441309e-19,1.0262574467931289e-18,6.227256050664716e-19,5.963111948670274e-19,0.002812500111758709,-0.0018749999580904841,-0.0018749999580904841,-2.0710001882481946e-17,-8.464715397725606e-18,-7.297777689794359e-19,0.0012499999720603228,2.222614453595284e-18,8.80696716643371e-19,1.1505498124305e-18,2.234316784516225e-18,6.142506744017712e-19,3.065705678435616e-18,1.028578205399223e-18,5.692061405548898e-19,0.002812500111758709,-0.0018749999580904841,-2.0166160408230382e-17,-0.0018749999580904841,-8.363795227091074e-18,-6.583832416233129e-19,2.222614453595284e-18,0.0012499999720603228,9.113551320718832e-19,2.9190837789575292e-18,2.416709282403555e-18,9.636414253865132e-19,1.530988270719537e-18,7.553436986655537e-19,5.149960319306146e-19,0.0015625000232830644,-0.0010416667209938169,-7.250602028496811e-18,-7.074419175467916e-18,-0.00044642857392318547,-7.861872991537013e-19,8.80696716643371e-19,9.113551320718832e-19,0.00029761905898340046,1.0842021724855044e-18,8.326692661100467e-19,2.768905157941829e-19,9.751903143038254e-19,3.0636099646549247e-19,1.8973538018496328e-19,0.001953125,-1.3010426069826053e-17,-0.005859375,-2.156013013958842e-17,-8.977162059008332e-18,8.294257875306497e-19,1.1505498124305e-18,2.9190837789575292e-18,1.0842021724855044e-18,0.001953125,1.063929836828208e-18,-5.4439154935891155e-19,3.3902084259450157e-18,1.1312338009588913e-18,7.589415207398531e-19,0.002812500111758709,-1.452830911130576e-17,-0.0018749999580904841,-0.0018749999580904841,-8.038412152614765e-18,1.229110257131958e-18,2.234316784516225e-18,2.416709282403555e-18,8.326692661100467e-19,1.063929836828208e-18,0.0012499999720603228,5.963111948670274e-19,1.437244202091632e-18,8.767352452922779e-19,4.87890977618477e-19,0.0015625000232830644,-5.312590645178972e-18,-0.0010416667209938169,-6.884683795282953e-18,-0.00044642857392318547,5.492262132441309e-19,6.142506744017712e-19,9.636414253865132e-19,2.768905157941829e-19,-5.4439154935891155e-19,5.963111948670274e-19,0.00029761905898340046,1.0620684736548105e-18,2.7296551793822465e-19,1.8973538018496328e-19,0.001953125,-1.3877787807814457e-17,-2.233456475320139e-17,-0.005859375,-8.58856584212072e-18,1.0262574467931289e-18,3.065705678435616e-18,1.530988270719537e-18,9.751903143038254e-19,3.3902084259450157e-18,1.437244202091632e-18,1.0620684736548105e-18,0.001953125,-3.3881317890172014e-19,8.131516293641283e-19,0.0015625000232830644,-5.854691731421724e-18,-7.643625316022806e-18,-0.0010416667209938169,-0.00044642857392318547,6.227256050664716e-19,1.028578205399223e-18,7.553436986655537e-19,3.0636099646549247e-19,1.1312338009588913e-18,8.767352452922779e-19,2.7296551793822465e-19,-3.3881317890172014e-19,0.00029761905898340046,1.6263032587282567e-19,0.0006510416860692203,-4.662069341687669e-18,-5.177065373618284e-18,-4.824699667560495e-18,-0.0006510416860692203,5.963111948670274e-19,5.692061405548898e-19,5.149960319306146e-19,1.8973538018496328e-19,7.589415207398531e-19,4.87890977618477e-19,1.8973538018496328e-19,8.131516293641283e-19,1.6263032587282567e-19,9.300595411332324e-05,4.0,4.0,5.0,3.0,0.12861904501914978,-0.04399999976158142,-0.04399999976158142,-0.03732142969965935,-0.05375000089406967,0.004166666883975267,0.006000000052154064,0.004999999888241291,0.007499999832361937,0.004166666883975267,0.004999999888241291,0.007499999832361937,0.0029761905316263437,0.0062500000931322575,0.0062500000931322575,-0.04399999976158142,0.05849999934434891,0.006000000052154064,0.004999999888241291,0.007499999832361937,-0.012500000186264515,-0.004000000189989805,-0.0033333334140479565,-0.004999999888241291,-0.0,-6.505213034913027e-19,0.0,-1.3010426069826053e-18,-0.0,-0.0,-0.04399999976158142,0.006000000052154064,0.05849999934434891,0.004999999888241291,0.007499999832361937,-0.0,-0.004000000189989805,-6.505213034913027e-19,-0.0,-0.012500000186264515,-0.0033333334140479565,-0.004999999888241291,-1.2935653078354322e-18,0.0,-0.0,-0.03732142969965935,0.004999999888241291,0.004999999888241291,0.03651785850524902,0.0062500000931322575,-0.0,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0024999999441206455,-0.0,-0.0059523810632526875,-0.0031250000465661287,-0.0,-0.05375000089406967,0.007499999832361937,0.007499999832361937,0.0062500000931322575,0.11625000089406967,-0.0,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0062500000931322575,-0.03750000149011612,0.004166666883975267,-0.012500000186264515,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.006000000052154064,-0.004000000189989805,-0.004000000189989805,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-6.505213034913027e-19,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,3.2526065174565133e-19,-0.0,6.505213034913027e-19,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-6.505213034913027e-19,-0.0033333334140479565,-0.0024999999441206455,-0.0,-0.0,-0.0,3.2526065174565133e-19,-0.0,-0.0,0.0016666667070239782,-0.0,6.467826539177161e-19,-0.0,-0.0,0.007499999832361937,0.0,-0.004999999888241291,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,0.0029761905316263437,-1.3010426069826053e-18,-1.2935653078354322e-18,-0.0059523810632526875,-0.0,-0.0,-0.0,6.505213034913027e-19,-0.0,-0.0,6.467826539177161e-19,-0.0,0.0014880952658131719,0.0,-0.0,0.0062500000931322575,-0.0,0.0,-0.0031250000465661287,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0031250000465661287,-0.0,0.0062500000931322575,-0.0,-0.0,-0.0,-0.03750000149011612,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.01875000074505806,4.0,4.0,5.0,4.0,0.10421428829431534,-0.03412500023841858,-0.03412500023841858,-0.028928572311997414,-0.03412500023841858,0.0031250000465661287,0.0044999998062849045,0.0037499999161809683,0.0044999998062849045,0.0031250000465661287,0.0037499999161809683,0.0044999998062849045,0.0022321429569274187,0.0037499999161809683,0.0031250000465661287,-0.03412500023841858,0.04462499916553497,0.0044999998062849045,0.0037499999161809683,0.0044999998062849045,-0.00937500037252903,-0.003000000026077032,-0.0024999999441206455,-0.003000000026077032,-0.0,3.2526065174565133e-19,0.0,8.673617379884035e-19,-0.0,-0.0,-0.03412500023841858,0.0044999998062849045,0.04462499916553497,0.0037499999161809683,0.0044999998062849045,-0.0,-0.003000000026077032,3.2526065174565133e-19,-0.0,-0.00937500037252903,-0.0024999999441206455,-0.003000000026077032,7.552028711662666e-19,0.0,-0.0,-0.028928572311997414,0.0037499999161809683,0.0037499999161809683,0.027857143431901932,0.0037499999161809683,-0.0,-0.0,-0.0018749999580904841,-0.0,-0.0,-0.0018749999580904841,-0.0,-0.004464285913854837,-0.0018749999580904841,-0.0,-0.03412500023841858,0.0044999998062849045,0.0044999998062849045,0.0037499999161809683,0.04462499916553497,-0.0,-0.0,-0.0,-0.003000000026077032,-0.0,-0.0,-0.003000000026077032,1.0842021724855044e-19,-0.0024999999441206455,-0.00937500037252903,0.0031250000465661287,-0.00937500037252903,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0044999998062849045,-0.003000000026077032,-0.003000000026077032,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0024999999441206455,3.2526065174565133e-19,-0.0018749999580904841,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0,-0.0,-1.6263032587282567e-19,-0.0,-4.336808689942018e-19,-0.0,-0.0,0.0044999998062849045,-0.003000000026077032,-0.0,-0.0,-0.003000000026077032,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,3.2526065174565133e-19,-0.0024999999441206455,-0.0018749999580904841,-0.0,-0.0,-0.0,-1.6263032587282567e-19,-0.0,-0.0,0.0012499999720603228,-0.0,-3.776014355831333e-19,-0.0,-0.0,0.0044999998062849045,0.0,-0.003000000026077032,-0.0,-0.003000000026077032,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,0.0022321429569274187,8.673617379884035e-19,7.552028711662666e-19,-0.004464285913854837,1.0842021724855044e-19,-0.0,-0.0,-4.336808689942018e-19,-0.0,-0.0,-3.776014355831333e-19,-0.0,0.0011160714784637094,-5.421010862427522e-20,-0.0,0.0037499999161809683,-0.0,0.0,-0.0018749999580904841,-0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-5.421010862427522e-20,0.0012499999720603228,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.00937500037252903,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,4.0,4.0,5.0,5.0,0.08774285763502121,-0.027899999171495438,-0.027899999171495438,-0.023642856627702713,-0.023642856627702713,0.0024999999441206455,0.003599999938160181,0.003000000026077032,0.003000000026077032,0.0024999999441206455,0.003000000026077032,0.003000000026077032,0.0017857142956927419,0.0024999999441206455,0.0017857142956927419,-0.027899999171495438,0.03610000014305115,0.003599999938160181,0.003000000026077032,0.003000000026077032,-0.007499999832361937,-0.002400000113993883,-0.0020000000949949026,-0.0020000000949949026,-0.0,2.7007160071581374e-19,2.710505431213761e-19,7.5923635892944e-19,-0.0,8.854206417240847e-19,-0.027899999171495438,0.003599999938160181,0.03610000014305115,0.003000000026077032,0.003000000026077032,-0.0,-0.002400000113993883,2.710505431213761e-19,2.7007160071581374e-19,-0.007499999832361937,-0.0020000000949949026,-0.0020000000949949026,7.738960156366227e-19,0.0,7.715652274656014e-19,-0.023642856627702713,0.003000000026077032,0.003000000026077032,0.022535713389515877,0.0024999999441206455,-0.0,-0.0,-0.001500000013038516,-0.0,-0.0,-0.001500000013038516,-0.0,-0.0035714285913854837,-0.0012499999720603228,-0.0,-0.023642856627702713,0.003000000026077032,0.003000000026077032,0.0024999999441206455,0.022535713389515877,-0.0,-0.0,6.844842828487444e-21,-0.001500000013038516,-0.0,-5.803670429908235e-21,-0.001500000013038516,-0.0,-0.0012499999720603228,-0.0035714285913854837,0.0024999999441206455,-0.007499999832361937,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003599999938160181,-0.002400000113993883,-0.002400000113993883,-0.0,-0.0,-0.0,0.0015999999595806003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,-0.0020000000949949026,2.710505431213761e-19,-0.001500000013038516,6.844842828487444e-21,-0.0,-0.0,0.0010000000474974513,-6.192041875408566e-23,-0.0,-1.3552527156068805e-19,-0.0,-3.7947076036992655e-19,-0.0,-1.5521751369389546e-21,0.003000000026077032,-0.0020000000949949026,2.7007160071581374e-19,-0.0,-0.001500000013038516,-0.0,-0.0,-6.192041875408566e-23,0.0010000000474974513,-0.0,4.894662045584875e-22,-1.3552527156068805e-19,-1.4742957086625624e-22,-0.0,-4.411581164425866e-19,0.0024999999441206455,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,2.7007160071581374e-19,-0.0020000000949949026,-0.001500000013038516,-5.803670429908235e-21,-0.0,-0.0,-1.3552527156068805e-19,4.894662045584875e-22,-0.0,0.0010000000474974513,-0.0,-3.8694800781831136e-19,-0.0,1.1653957010977808e-21,0.003000000026077032,2.710505431213761e-19,-0.0020000000949949026,-0.0,-0.001500000013038516,-0.0,-0.0,-0.0,-1.3552527156068805e-19,-0.0,-0.0,0.0010000000474974513,-0.0,-0.0,-3.8694800781831136e-19,0.0017857142956927419,7.5923635892944e-19,7.738960156366227e-19,-0.0035714285913854837,-0.0,-0.0,-0.0,-3.7947076036992655e-19,-1.4742957086625624e-22,-0.0,-3.8694800781831136e-19,-0.0,0.0008928571478463709,0.0,1.3337224624006058e-22,0.0024999999441206455,-0.0,0.0,-0.0012499999720603228,-0.0012499999720603228,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0006249999860301614,0.0,0.0017857142956927419,8.854206417240847e-19,7.715652274656014e-19,-0.0,-0.0035714285913854837,-0.0,-0.0,-1.5521751369389546e-21,-4.411581164425866e-19,-0.0,1.1653957010977808e-21,-3.8694800781831136e-19,1.3337224624006058e-22,0.0,0.0008928571478463709,4.0,4.0,5.0,6.0,0.07582738250494003,-0.02360714226961136,-0.02360714226961136,-0.019999999552965164,-0.0173660721629858,0.0020833334419876337,0.003000000026077032,0.0024999999441206455,0.002142857061699033,0.0020833334419876337,0.0024999999441206455,0.002142857061699033,0.0014880952658131719,0.0017857142956927419,0.0011160714784637094,-0.02360714226961136,0.030321428552269936,0.003000000026077032,0.0024999999441206455,0.002142857061699033,-0.0062500000931322575,-0.0020000000949949026,-0.0016666667070239782,-0.0014285714132711291,-0.0,-2.617196614684424e-19,2.0582448253882008e-19,-6.356560924019005e-19,-5.88861089282492e-20,5.035752009118832e-19,-0.02360714226961136,0.003000000026077032,0.030321428552269936,0.0024999999441206455,0.002142857061699033,-0.0,-0.0020000000949949026,-2.621649172825432e-19,2.0618067426540366e-19,-0.0062500000931322575,-0.0016666667070239782,-0.0014285714132711291,-5.358993512989242e-19,-4.404571325722362e-20,5.593222628130703e-19,-0.019999999552965164,0.0024999999441206455,0.0024999999441206455,0.018928570672869682,0.0017857142956927419,-0.0,-0.0,-0.0012499999720603228,-0.0,-0.0,-0.0012499999720603228,-0.0,-0.0029761905316263437,-0.0008928571478463709,-0.0,-0.0173660721629858,0.002142857061699033,0.002142857061699033,0.0017857142956927419,0.01308482140302658,-0.0,-0.0,-5.3053126900970754e-21,-0.0008571428479626775,-0.0,-7.702887617646357e-21,-0.0008571428479626775,-1.0842021724855044e-19,-0.0007142857066355646,-0.0016741071594879031,0.0020833334419876337,-0.0062500000931322575,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,-0.0020000000949949026,-0.0020000000949949026,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0016666667070239782,-2.621649172825432e-19,-0.0012499999720603228,-5.3053126900970754e-21,-0.0,-0.0,0.0008333333535119891,-2.4973535889384902e-21,-0.0,1.3266781490871483e-19,-1.2682846706423206e-21,3.2526065174565133e-19,1.3552527156068805e-20,-2.9762808642387147e-21,0.002142857061699033,-0.0014285714132711291,2.0618067426540366e-19,-0.0,-0.0008571428479626775,-0.0,-0.0,-2.4973535889384902e-21,0.0005714285653084517,-0.0,-1.4463839670567684e-21,-8.131516293641283e-20,-5.9460803967930356e-21,1.2712421846444637e-20,-1.9904904614139823e-19,0.0020833334419876337,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-2.617196614684424e-19,-0.0016666667070239782,-0.0012499999720603228,-7.702887617646357e-21,-0.0,-0.0,1.3266781490871483e-19,-1.4463839670567684e-21,-0.0,0.0008333333535119891,-1.2682846706423206e-21,2.7172433342908883e-19,1.3552527156068805e-20,-2.8249688102977737e-21,0.002142857061699033,2.0582448253882008e-19,-0.0014285714132711291,-0.0,-0.0008571428479626775,-0.0,-0.0,-1.2682846706423206e-21,-8.131516293641283e-20,-0.0,-1.2682846706423206e-21,0.0005714285653084517,-3.019725213959438e-21,6.776263578034403e-21,-2.214689494640355e-19,0.0014880952658131719,-6.356560924019005e-19,-5.358993512989242e-19,-0.0029761905316263437,-1.0842021724855044e-19,-0.0,-0.0,3.2526065174565133e-19,-5.9460803967930356e-21,-0.0,2.7172433342908883e-19,-3.019725213959438e-21,0.0007440476329065859,7.196859070123475e-20,-1.0481254817066997e-20,0.0017857142956927419,-5.88861089282492e-20,-4.404571325722362e-20,-0.0008928571478463709,-0.0007142857066355646,-0.0,-0.0,1.3552527156068805e-20,1.2712421846444637e-20,-0.0,1.3552527156068805e-20,6.776263578034403e-21,7.196859070123475e-20,0.0003571428533177823,2.171813266135265e-20,0.0011160714784637094,5.035752009118832e-19,5.593222628130703e-19,-0.0,-0.0016741071594879031,-0.0,-0.0,-2.9762808642387147e-21,-1.9904904614139823e-19,-0.0,-2.8249688102977737e-21,-2.214689494640355e-19,-1.0481254817066997e-20,2.171813266135265e-20,0.0003348214377183467,4.0,4.0,5.0,7.0,0.06678911298513412,-0.02046428620815277,-0.02046428620815277,-0.017334183678030968,-0.013303571380674839,0.0017857142956927419,0.0025714286603033543,0.002142857061699033,0.0016071428544819355,0.0017857142956927419,0.002142857061699033,0.0016071428544819355,0.0012755101779475808,0.0013392857508733869,0.0007440476329065859,-0.02046428620815277,0.02614285796880722,0.0025714286603033543,0.002142857061699033,0.0016071428544819355,-0.0053571430034935474,-0.001714285695925355,-0.0014285714132711291,-0.0010714285308495164,-0.0,0.0,2.0328790734103208e-20,-0.0,2.472420434649517e-21,-4.610958704668024e-20,-0.02046428620815277,0.0025714286603033543,0.02614285796880722,0.002142857061699033,0.0016071428544819355,-0.0,-0.001714285695925355,-0.0,2.0328790734103208e-20,-0.0053571430034935474,-0.0014285714132711291,-0.0010714285308495164,0.0,-2.0328790734103208e-20,3.5966323559339953e-20,-0.017334183678030968,0.002142857061699033,0.002142857061699033,0.016320152208209038,0.0013392857508733869,-0.0,-0.0,-0.0010714285308495164,2.472420434649517e-21,-0.0,-0.0010714285308495164,-2.0328790734103208e-20,-0.0025510203558951616,-0.0006696428754366934,-3.653688108037121e-20,-0.013303571380674839,0.0016071428544819355,0.0016071428544819355,0.0013392857508733869,0.008303571492433548,0.0,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.00044642857392318547,-0.0008928571478463709,0.0017857142956927419,-0.0053571430034935474,-0.0,-0.0,0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025714286603033543,-0.001714285695925355,-0.001714285695925355,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0010714285308495164,2.0328790734103208e-20,2.472420434649517e-21,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-6.776263578034403e-21,-0.0,-8.241401785412376e-22,1.5369862348893414e-20,0.0017857142956927419,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,0.0,-0.0014285714132711291,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,2.0328790734103208e-20,-0.0010714285308495164,-2.0328790734103208e-20,-0.0005357142654247582,-0.0,-0.0,-0.0,-6.776263578034403e-21,-0.0,-0.0,0.0003571428533177823,-0.0,6.776263578034403e-21,-1.1988773711986418e-20,0.0012755101779475808,-0.0,0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,0.0013392857508733869,2.472420434649517e-21,-2.0328790734103208e-20,-0.0006696428754366934,-0.00044642857392318547,-0.0,-0.0,-0.0,-8.241401785412376e-22,-0.0,-0.0,6.776263578034403e-21,-0.0,0.00022321428696159273,1.2178959821594691e-20,0.0007440476329065859,-4.610958704668024e-20,3.5966323559339953e-20,-3.653688108037121e-20,-0.0008928571478463709,-0.0,-0.0,-0.0,1.5369862348893414e-20,-0.0,-0.0,-1.1988773711986418e-20,-0.0,1.2178959821594691e-20,0.00014880952949170023,4.0,4.0,5.0,8.0,0.05969047546386719,-0.018062500283122063,-0.018062500283122063,-0.015297618694603443,-0.010520833544433117,0.0015625000232830644,0.0022499999031424522,0.0018749999580904841,0.0012499999720603228,0.0015625000232830644,0.0018749999580904841,0.0012499999720603228,0.0011160714784637094,0.0010416667209938169,0.0005208333604969084,-0.018062500283122063,0.022979166358709335,0.0022499999031424522,0.0018749999580904841,0.0012499999720603228,-0.004687500186264515,-0.001500000013038516,-0.0012499999720603228,-0.0008333333535119891,-8.239936510889834e-18,-2.3852447794681098e-18,-2.927345865710862e-18,6.505213034913027e-19,-7.047314121155779e-19,2.8189256484623115e-18,-0.018062500283122063,0.0022499999031424522,0.022979166358709335,0.0018749999580904841,0.0012499999720603228,-9.037805151256432e-18,-0.001500000013038516,1.6263032587282567e-19,-3.347474207548995e-18,-0.004687500186264515,-0.0012499999720603228,-0.0008333333535119891,2.6020852139652106e-18,4.336808689942018e-19,3.0222135558033436e-18,-0.015297618694603443,0.0018749999580904841,0.0018749999580904841,0.014345237985253334,0.0010416667209938169,-3.964430589734427e-18,-1.6923873640999716e-19,-0.0009374999790452421,5.21772295508649e-19,1.5704148006411113e-18,-0.0009374999790452421,7.724940478959219e-19,-0.0022321429569274187,-0.0005208333604969084,1.3552527156068805e-18,-0.010520833544433117,0.0012499999720603228,0.0012499999720603228,0.0010416667209938169,0.0056101190857589245,1.6263032587282567e-18,6.14961532740684e-19,2.6769810417579057e-18,-0.0003571428533177823,3.041471561234497e-18,2.2765821983000813e-18,-0.0003571428533177823,3.1011700132230615e-18,-0.00029761905898340046,-0.0005208333604969084,0.0015625000232830644,-0.004687500186264515,-9.037805151256432e-18,-3.964430589734427e-18,1.6263032587282567e-18,0.0015625000232830644,1.219831462008221e-18,3.2253542766941295e-19,3.092927572009277e-19,1.1237264131169366e-18,7.568955928922798e-19,4.2268171914211345e-19,2.888776553397834e-19,2.1471137499796596e-19,-5.149960319306146e-19,0.0022499999031424522,-0.001500000013038516,-0.001500000013038516,-1.6923873640999716e-19,6.14961532740684e-19,1.219831462008221e-18,0.0010000000474974513,1.6263032587282567e-19,3.205451277180338e-19,1.2683870673626603e-18,2.5030937700252107e-19,4.914234524243847e-19,-1.8781660550717582e-19,3.790108931857868e-20,-2.981555974335137e-19,0.0018749999580904841,-0.0012499999720603228,1.6263032587282567e-19,-0.0009374999790452421,2.6769810417579057e-18,3.2253542766941295e-19,1.6263032587282567e-19,0.0006249999860301614,-2.22949163320805e-19,1.0347633321073146e-19,-2.0202438895535733e-19,-1.2032055452862115e-19,-3.462608804926003e-19,-2.00748953998983e-19,-2.303929616531697e-19,0.0012499999720603228,-0.0008333333535119891,-3.347474207548995e-18,5.21772295508649e-19,-0.0003571428533177823,3.092927572009277e-19,3.205451277180338e-19,-2.22949163320805e-19,0.0002380952355451882,5.082197683525802e-19,1.0330436365385139e-19,2.4522979010780364e-19,-1.794992268997727e-19,9.646259771106044e-20,-8.131516293641283e-20,0.0015625000232830644,-8.239936510889834e-18,-0.004687500186264515,1.5704148006411113e-18,3.041471561234497e-18,1.1237264131169366e-18,1.2683870673626603e-18,1.0347633321073146e-19,5.082197683525802e-19,0.0015625000232830644,-4.871528740181383e-19,1.5141585056753213e-19,-2.319953914454439e-19,-5.744985842856719e-20,-5.421010862427522e-19,0.0018749999580904841,-2.3852447794681098e-18,-0.0012499999720603228,-0.0009374999790452421,2.2765821983000813e-18,7.568955928922798e-19,2.5030937700252107e-19,-2.0202438895535733e-19,1.0330436365385139e-19,-4.871528740181383e-19,0.0006249999860301614,-1.2874900798265365e-19,-2.0037563704878015e-19,-3.193463879140796e-19,-2.0328790734103208e-19,0.0012499999720603228,-2.927345865710862e-18,-0.0008333333535119891,7.724940478959219e-19,-0.0003571428533177823,4.2268171914211345e-19,4.914234524243847e-19,-1.2032055452862115e-19,2.4522979010780364e-19,1.5141585056753213e-19,-1.2874900798265365e-19,0.0002380952355451882,-1.8607147413453914e-19,9.155835371915865e-20,-6.776263578034403e-20,0.0011160714784637094,6.505213034913027e-19,2.6020852139652106e-18,-0.0022321429569274187,3.1011700132230615e-18,2.888776553397834e-19,-1.8781660550717582e-19,-3.462608804926003e-19,-1.794992268997727e-19,-2.319953914454439e-19,-2.0037563704878015e-19,-1.8607147413453914e-19,0.0005580357392318547,-5.454892180317694e-19,-1.3552527156068805e-19,0.0010416667209938169,-7.047314121155779e-19,4.336808689942018e-19,-0.0005208333604969084,-0.00029761905898340046,2.1471137499796596e-19,3.790108931857868e-20,-2.00748953998983e-19,9.646259771106044e-20,-5.744985842856719e-20,-3.193463879140796e-19,9.155835371915865e-20,-5.454892180317694e-19,0.00014880952949170023,0.0,0.0005208333604969084,2.8189256484623115e-18,3.0222135558033436e-18,1.3552527156068805e-18,-0.0005208333604969084,-5.149960319306146e-19,-2.981555974335137e-19,-2.303929616531697e-19,-8.131516293641283e-20,-5.421010862427522e-19,-2.0328790734103208e-19,-6.776263578034403e-20,-1.3552527156068805e-19,0.0,7.440476474585012e-05,4.0,4.0,6.0,3.0,0.11144841462373734,-0.037261903285980225,-0.037261903285980225,-0.02745535783469677,-0.04553571343421936,0.0034722222480922937,0.004999999888241291,0.0035714285913854837,0.0062500000931322575,0.0034722222480922937,0.0035714285913854837,0.0062500000931322575,0.0018601190531626344,0.004464285913854837,0.0052083334885537624,-0.037261903285980225,0.04914682358503342,0.004999999888241291,0.0035714285913854837,0.0062500000931322575,-0.010416666977107525,-0.0033333334140479565,-0.0023809524718672037,-0.004166666883975267,-0.0,-2.371692252312041e-19,0.0,-5.421010862427522e-19,-0.0,1.925929944387236e-33,-0.037261903285980225,0.004999999888241291,0.04914682358503342,0.0035714285913854837,0.0062500000931322575,-0.0,-0.0033333334140479565,-2.371692252312041e-19,-0.0,-0.010416666977107525,-0.0023809524718672037,-0.004166666883975267,-4.765444894572988e-19,0.0,1.925929944387236e-33,-0.02745535783469677,0.0035714285913854837,0.0035714285913854837,0.021212797611951828,0.004464285913854837,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0027901786379516125,-0.0017857142956927419,1.3852214691996767e-17,-0.04553571343421936,0.0062500000931322575,0.0062500000931322575,0.004464285913854837,0.09761904925107956,-0.0,-0.0,1.5407439555097887e-33,-0.0062500000931322575,-0.0,1.5407439555097887e-33,-0.0062500000931322575,5.095750210681871e-18,-0.004464285913854837,-0.03125,0.0034722222480922937,-0.010416666977107525,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-0.0033333334140479565,-0.0,-0.0,-0.0,0.002222222276031971,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0023809524718672037,-2.371692252312041e-19,-0.0014285714132711291,1.5407439555097887e-33,-0.0,-0.0,0.0009523809421807528,-0.0,-0.0,9.486769009248164e-20,-0.0,2.168404344971009e-19,-0.0,-7.703719777548943e-34,0.0062500000931322575,-0.004166666883975267,-0.0,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.010416666977107525,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-2.371692252312041e-19,-0.0023809524718672037,-0.0014285714132711291,1.5407439555097887e-33,-0.0,-0.0,9.486769009248164e-20,-0.0,-0.0,0.0009523809421807528,-0.0,1.906177880281013e-19,-0.0,-7.703719777548943e-34,0.0062500000931322575,0.0,-0.004166666883975267,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,0.0018601190531626344,-5.421010862427522e-19,-4.765444894572988e-19,-0.0027901786379516125,5.095750210681871e-18,-0.0,-0.0,2.168404344971009e-19,-0.0,-0.0,1.906177880281013e-19,-0.0,0.0005580357392318547,0.0,-2.478176453336911e-18,0.004464285913854837,-0.0,0.0,-0.0017857142956927419,-0.004464285913854837,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0017857142956927419,-1.4613325287097888e-18,0.0052083334885537624,1.925929944387236e-33,1.925929944387236e-33,1.3852214691996767e-17,-0.03125,-0.0,-0.0,-7.703719777548943e-34,-0.0,-0.0,-7.703719777548943e-34,-0.0,-2.478176453336911e-18,-1.4613325287097888e-18,0.015625,4.0,4.0,6.0,4.0,0.09015624970197678,-0.028883928433060646,-0.028883928433060646,-0.02126116119325161,-0.028883928433060646,0.0026041667442768812,0.0037499999161809683,0.0026785715017467737,0.0037499999161809683,0.0026041667442768812,0.0026785715017467737,0.0037499999161809683,0.0013950893189758062,0.0026785715017467737,0.0026041667442768812,-0.028883928433060646,0.037485118955373764,0.0037499999161809683,0.0026785715017467737,0.0037499999161809683,-0.0078125,-0.0024999999441206455,-0.0017857142956927419,-0.0024999999441206455,-0.0,-1.6520606290273922e-19,0.0,-3.3881317890172014e-19,-3.3881317890172014e-20,7.2222372914521344e-34,-0.028883928433060646,0.0037499999161809683,0.037485118955373764,0.0026785715017467737,0.0037499999161809683,-0.0,-0.0024999999441206455,-1.6520606290273922e-19,-0.0,-0.0078125,-0.0017857142956927419,-0.0024999999441206455,-2.8378289485070444e-19,-3.3881317890172014e-20,6.018531076210112e-34,-0.02126116119325161,0.0026785715017467737,0.0026785715017467737,0.016177454963326454,0.0026785715017467737,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0020926338620483875,-0.0010714285308495164,4.950568432650239e-18,-0.028883928433060646,0.0037499999161809683,0.0037499999161809683,0.0026785715017467737,0.037485118955373764,-0.0,-0.0,-3.3881317890172014e-20,-0.0024999999441206455,-0.0,-3.3881317890172014e-20,-0.0024999999441206455,2.4936649967166602e-18,-0.0017857142956927419,-0.0078125,0.0026041667442768812,-0.0078125,-0.0,-0.0,-0.0,0.0026041667442768812,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0024999999441206455,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026785715017467737,-0.0017857142956927419,-1.6520606290273922e-19,-0.0010714285308495164,-3.3881317890172014e-20,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,6.608242516109569e-20,-0.0,1.3552527156068805e-19,1.3552527156068805e-20,-2.8888949165808538e-34,0.0037499999161809683,-0.0024999999441206455,-0.0,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026041667442768812,-0.0,-0.0078125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026041667442768812,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026785715017467737,-1.6520606290273922e-19,-0.0017857142956927419,-0.0010714285308495164,-3.3881317890172014e-20,-0.0,-0.0,6.608242516109569e-20,-0.0,-0.0,0.0007142857066355646,-0.0,1.1351315535534236e-19,1.3552527156068805e-20,-2.407412430484045e-34,0.0037499999161809683,0.0,-0.0024999999441206455,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,0.0013950893189758062,-3.3881317890172014e-19,-2.8378289485070444e-19,-0.0020926338620483875,2.4936649967166602e-18,-0.0,-0.0,1.3552527156068805e-19,-0.0,-0.0,1.1351315535534236e-19,-0.0,0.0004185267898719758,1.9612870760699964e-20,-8.673617379884035e-19,0.0026785715017467737,-3.3881317890172014e-20,-3.3881317890172014e-20,-0.0010714285308495164,-0.0017857142956927419,-0.0,-0.0,1.3552527156068805e-20,-0.0,-0.0,1.3552527156068805e-20,-0.0,1.9612870760699964e-20,0.0007142857066355646,-4.091731101066924e-19,0.0026041667442768812,7.2222372914521344e-34,6.018531076210112e-34,4.950568432650239e-18,-0.0078125,-0.0,-0.0,-2.8888949165808538e-34,-0.0,-0.0,-2.407412430484045e-34,-0.0,-8.673617379884035e-19,-4.091731101066924e-19,0.0026041667442768812,4.0,4.0,6.0,5.0,0.07582738250494003,-0.02360714226961136,-0.02360714226961136,-0.0173660721629858,-0.019999999552965164,0.0020833334419876337,0.003000000026077032,0.002142857061699033,0.0024999999441206455,0.0020833334419876337,0.002142857061699033,0.0024999999441206455,0.0011160714784637094,0.0017857142956927419,0.0014880952658131719,-0.02360714226961136,0.030321428552269936,0.003000000026077032,0.002142857061699033,0.0024999999441206455,-0.0062500000931322575,-0.0020000000949949026,-0.0014285714132711291,-0.0016666667070239782,-0.0,2.3204817590828244e-19,-2.4456220365468506e-19,4.736541136018854e-19,-4.4802938946879094e-20,-6.467621811975554e-19,-0.02360714226961136,0.003000000026077032,0.030321428552269936,0.002142857061699033,0.0024999999441206455,-0.0,-0.0020000000949949026,2.3107515301397866e-19,-2.433459379615024e-19,-0.0062500000931322575,-0.0014285714132711291,-0.0016666667070239782,6.001673040875965e-19,-4.4079243152600425e-20,-5.649746981313748e-19,-0.0173660721629858,0.002142857061699033,0.002142857061699033,0.01308482140302658,0.0017857142956927419,-0.0,-0.0,-0.0008571428479626775,-6.350345049456581e-20,-0.0,-0.0008571428479626775,-8.131516293641283e-20,-0.0016741071594879031,-0.0007142857066355646,2.1699666823529684e-18,-0.019999999552965164,0.0024999999441206455,0.0024999999441206455,0.0017857142956927419,0.018928570672869682,-0.0,-0.0,3.389036113915398e-21,-0.0012499999720603228,-0.0,3.6354865802692596e-20,-0.0012499999720603228,2.2768245622195593e-18,-0.0008928571478463709,-0.0029761905316263437,0.0020833334419876337,-0.0062500000931322575,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,-0.0020000000949949026,-0.0020000000949949026,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,2.3107515301397866e-19,-0.0008571428479626775,3.389036113915398e-21,-0.0,-0.0,0.0005714285653084517,1.7518697341366555e-22,-0.0,-9.262740711270101e-20,2.466808440304451e-22,-1.8973538018496328e-19,-6.776263578034403e-21,2.969843961200503e-21,0.0024999999441206455,-0.0016666667070239782,-2.433459379615024e-19,-6.350345049456581e-20,-0.0012499999720603228,-0.0,-0.0,1.7518697341366555e-22,0.0008333333535119891,-0.0,-2.3981896584537274e-22,1.2197274440461925e-19,3.421620436434997e-22,3.087179894598255e-20,3.1966878155782215e-19,0.0020833334419876337,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,2.3204817590828244e-19,-0.0014285714132711291,-0.0008571428479626775,3.6354865802692596e-20,-0.0,-0.0,-9.262740711270101e-20,-2.3981896584537274e-22,-0.0,0.0005714285653084517,2.466808440304451e-22,-2.4045235678121535e-19,-1.3552527156068805e-20,-5.709975160897503e-22,0.0024999999441206455,-2.4456220365468506e-19,-0.0016666667070239782,-8.131516293641283e-20,-0.0012499999720603228,-0.0,-0.0,2.466808440304451e-22,1.2197274440461925e-19,-0.0,2.466808440304451e-22,0.0008333333535119891,4.817985270468372e-22,3.8980278905799086e-20,2.8320107668734996e-19,0.0011160714784637094,4.736541136018854e-19,6.001673040875965e-19,-0.0016741071594879031,2.2768245622195593e-18,-0.0,-0.0,-1.8973538018496328e-19,3.421620436434997e-22,-0.0,-2.4045235678121535e-19,4.817985270468372e-22,0.0003348214377183467,-2.654314018227268e-19,-4.2010631815432374e-19,0.0017857142956927419,-4.4802938946879094e-20,-4.4079243152600425e-20,-0.0007142857066355646,-0.0008928571478463709,-0.0,-0.0,-6.776263578034403e-21,3.087179894598255e-20,-0.0,-1.3552527156068805e-20,3.8980278905799086e-20,-2.654314018227268e-19,0.0003571428533177823,-3.752446364592563e-20,0.0014880952658131719,-6.467621811975554e-19,-5.649746981313748e-19,2.1699666823529684e-18,-0.0029761905316263437,-0.0,-0.0,2.969843961200503e-21,3.1966878155782215e-19,-0.0,-5.709975160897503e-22,2.8320107668734996e-19,-4.2010631815432374e-19,-3.752446364592563e-20,0.0007440476329065859,4.0,4.0,6.0,6.0,0.06548185646533966,-0.019970238208770752,-0.019970238208770752,-0.014684311114251614,-0.014684311114251614,0.0017361111240461469,0.0024999999441206455,0.0017857142956927419,0.0017857142956927419,0.0017361111240461469,0.0017857142956927419,0.0017857142956927419,0.0009300595265813172,0.0012755101779475808,0.0009300595265813172,-0.019970238208770752,0.025466270744800568,0.0024999999441206455,0.0017857142956927419,0.0017857142956927419,-0.0052083334885537624,-0.0016666667070239782,-0.0011904762359336019,-0.0011904762359336019,-0.0,-1.1334287247143008e-19,-8.013051105226619e-20,-2.654551057171553e-19,-1.5598519627127506e-19,-1.7946237858842287e-19,-0.019970238208770752,0.0024999999441206455,0.025466270744800568,0.0017857142956927419,0.0017857142956927419,-0.0,-0.0016666667070239782,-1.1051139446056985e-19,-8.296199552547495e-20,-0.0052083334885537624,-0.0011904762359336019,-0.0011904762359336019,-2.225042176994339e-19,-1.7733998823297666e-19,-1.764738525834512e-19,-0.014684311114251614,0.0017857142956927419,0.0017857142956927419,0.01098905224353075,0.0012755101779475808,-0.0,-0.0,-0.0007142857066355646,-1.241349816011358e-19,-0.0,-0.0007142857066355646,-1.3552527156068805e-19,-0.0013950893189758062,-0.0005102040595375001,1.1559980375350805e-18,-0.014684311114251614,0.0017857142956927419,0.0017857142956927419,0.0012755101779475808,0.01098905224353075,-0.0,-0.0,-3.537206456726093e-21,-0.0007142857066355646,-0.0,-5.769809339168979e-21,-0.0007142857066355646,1.7618285302889447e-18,-0.0005102040595375001,-0.0013950893189758062,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0016666667070239782,-0.0016666667070239782,-0.0,-0.0,-0.0,0.0011111111380159855,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-1.1051139446056985e-19,-0.0007142857066355646,-3.537206456726093e-21,-0.0,-0.0,0.0004761904710903764,-1.1459475661025689e-21,-0.0,4.603367060725863e-20,-1.8291146405662114e-21,1.0842021724855044e-19,6.776263578034403e-21,-1.6475784854469947e-21,0.0017857142956927419,-0.0011904762359336019,-8.296199552547495e-20,-1.241349816011358e-19,-0.0007142857066355646,-0.0,-0.0,-1.1459475661025689e-21,0.0004761904710903764,-0.0,-6.965209118672239e-22,3.3881317890172014e-20,-2.2381786775387333e-21,5.561781493047562e-20,7.343253236439168e-20,0.0017361111240461469,-0.0,-0.0052083334885537624,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-1.1334287247143008e-19,-0.0011904762359336019,-0.0007142857066355646,-5.769809339168979e-21,-0.0,-0.0,4.603367060725863e-20,-6.965209118672239e-22,-0.0,0.0004761904710903764,-1.8291146405662114e-21,9.257417674781352e-20,6.776263578034403e-21,-1.3603924233456115e-21,0.0017857142956927419,-8.013051105226619e-20,-0.0011904762359336019,-1.3552527156068805e-19,-0.0007142857066355646,-0.0,-0.0,-1.8291146405662114e-21,3.3881317890172014e-20,-0.0,-1.8291146405662114e-21,0.0004761904710903764,-3.572489264143174e-21,6.415972783774714e-20,7.194993390101256e-20,0.0009300595265813172,-2.654551057171553e-19,-2.225042176994339e-19,-0.0013950893189758062,1.7618285302889447e-18,-0.0,-0.0,1.0842021724855044e-19,-2.2381786775387333e-21,-0.0,9.257417674781352e-20,-3.572489264143174e-21,0.00027901786961592734,-2.070340015401316e-19,-2.4432113220491414e-19,0.0012755101779475808,-1.5598519627127506e-19,-1.7733998823297666e-19,-0.0005102040595375001,-0.0005102040595375001,-0.0,-0.0,6.776263578034403e-21,5.561781493047562e-20,-0.0,6.776263578034403e-21,6.415972783774714e-20,-2.070340015401316e-19,0.0002040816325461492,2.82063515936982e-20,0.0009300595265813172,-1.7946237858842287e-19,-1.764738525834512e-19,1.1559980375350805e-18,-0.0013950893189758062,-0.0,-0.0,-1.6475784854469947e-21,7.343253236439168e-20,-0.0,-1.3603924233456115e-21,7.194993390101256e-20,-2.4432113220491414e-19,2.82063515936982e-20,0.00027901786961592734,4.0,4.0,6.0,7.0,0.05764526501297951,-0.0173086728900671,-0.0173086728900671,-0.012723213993012905,-0.011245748028159142,0.0014880952658131719,0.002142857061699033,0.0015306122368201613,0.0013392857508733869,0.0014880952658131719,0.0015306122368201613,0.0013392857508733869,0.0007971939048729837,0.0009566326625645161,0.0006200397037900984,-0.0173086728900671,0.021955782547593117,0.002142857061699033,0.0015306122368201613,0.0013392857508733869,-0.004464285913854837,-0.0014285714132711291,-0.0010204081190750003,-0.0008928571478463709,-1.1895247017376204e-18,-3.472379358923903e-19,-2.568485757868766e-19,-1.9740563213471143e-19,2.028391780145934e-20,-2.7988292567062445e-20,-0.0173086728900671,0.002142857061699033,0.021955782547593117,0.0015306122368201613,0.0013392857508733869,-1.1895247017376204e-18,-0.0014285714132711291,-3.463928674990908e-19,-2.5755281668088894e-19,-0.004464285913854837,-0.0010204081190750003,-0.0008928571478463709,-1.977193274573251e-19,2.6977342149203398e-20,-3.483146407065988e-20,-0.012723213993012905,0.0015306122368201613,0.0015306122368201613,0.009473851881921291,0.0009566326625645161,-8.49660486470075e-19,-5.437826927292842e-19,-0.0006122448830865324,-2.0496112569916493e-19,-8.49660486470075e-19,-0.0006122448830865324,-2.0328790734103208e-19,-0.001195790828205645,-0.00038265305920504034,8.906619682779504e-19,-0.011245748028159142,0.0013392857508733869,0.0013392857508733869,0.0009566326625645161,0.00697278929874301,-7.434529256613157e-19,-4.758098496757752e-19,-1.6055477461956526e-19,-0.00044642857392318547,-7.434529256613157e-19,-1.6584693400701175e-19,-0.00044642857392318547,1.2739375526704677e-18,-0.0003188775444868952,-0.0007440476329065859,0.0014880952658131719,-0.004464285913854837,-1.1895247017376204e-18,-8.49660486470075e-19,-7.434529256613157e-19,0.0014880952658131719,7.930164505921508e-19,5.664403070804539e-19,4.956353010071399e-19,6.60318844635302e-34,1.9275577285566362e-34,1.4257960134038495e-34,9.62964972193618e-35,-1.1259836824490732e-35,2.730170577618709e-35,0.002142857061699033,-0.0014285714132711291,-0.0014285714132711291,-5.437826927292842e-19,-4.758098496757752e-19,7.930164505921508e-19,0.0009523809421807528,1.8126090188466044e-19,1.5860328753349075e-19,7.930164505921508e-19,1.8126090188466044e-19,1.5860328753349075e-19,4.81482486096809e-35,-8.395286091710327e-36,-6.018531076210112e-36,0.0015306122368201613,-0.0010204081190750003,-3.463928674990908e-19,-0.0006122448830865324,-1.6055477461956526e-19,5.664403070804539e-19,1.8126090188466044e-19,0.0004081632650922984,1.3494177318671432e-19,1.978271126245002e-34,3.0465475550634286e-20,-5.540558635585769e-22,8.131516293641283e-20,-1.3552527156068805e-20,-1.0993035460631712e-21,0.0013392857508733869,-0.0008928571478463709,-2.5755281668088894e-19,-2.0496112569916493e-19,-0.00044642857392318547,4.956353010071399e-19,1.5860328753349075e-19,1.3494177318671432e-19,0.00029761905898340046,1.5648180798146291e-34,-2.723656754770109e-22,6.776263578034403e-21,-1.9607585367391435e-21,4.532466696237558e-21,1.0245518036012188e-20,0.0014880952658131719,-1.1895247017376204e-18,-0.004464285913854837,-8.49660486470075e-19,-7.434529256613157e-19,6.60318844635302e-34,7.930164505921508e-19,1.978271126245002e-34,1.5648180798146291e-34,0.0014880952658131719,5.664403070804539e-19,4.956353010071399e-19,9.804161271454104e-35,-1.4975433557350566e-35,1.2037062152420224e-35,0.0015306122368201613,-3.472379358923903e-19,-0.0010204081190750003,-0.0006122448830865324,-1.6584693400701175e-19,1.9275577285566362e-34,1.8126090188466044e-19,3.0465475550634286e-20,-2.723656754770109e-22,5.664403070804539e-19,0.0004081632650922984,1.3539161726827538e-19,8.03862972696526e-20,-1.3552527156068805e-20,-4.539428261197501e-22,0.0013392857508733869,-2.568485757868766e-19,-0.0008928571478463709,-2.0328790734103208e-19,-0.00044642857392318547,1.4257960134038495e-34,1.5860328753349075e-19,-5.540558635585769e-22,6.776263578034403e-21,4.956353010071399e-19,1.3539161726827538e-19,0.00029761905898340046,-1.0821403561462628e-21,2.3013251123572773e-21,1.1988773711986418e-20,0.0007971939048729837,-1.9740563213471143e-19,-1.977193274573251e-19,-0.001195790828205645,1.2739375526704677e-18,9.62964972193618e-35,4.81482486096809e-35,8.131516293641283e-20,-1.9607585367391435e-21,9.804161271454104e-35,8.03862972696526e-20,-1.0821403561462628e-21,0.00023915816564112902,-1.28033083162489e-19,-1.542336025501028e-19,0.0009566326625645161,2.028391780145934e-20,2.6977342149203398e-20,-0.00038265305920504034,-0.0003188775444868952,-1.1259836824490732e-35,-8.395286091710327e-36,-1.3552527156068805e-20,4.532466696237558e-21,-1.4975433557350566e-35,-1.3552527156068805e-20,2.3013251123572773e-21,-1.28033083162489e-19,0.00012755101488437504,-3.893771141599528e-20,0.0006200397037900984,-2.7988292567062445e-20,-3.483146407065988e-20,8.906619682779504e-19,-0.0007440476329065859,2.730170577618709e-35,-6.018531076210112e-36,-1.0993035460631712e-21,1.0245518036012188e-20,1.2037062152420224e-35,-4.539428261197501e-22,1.1988773711986418e-20,-1.542336025501028e-19,-3.893771141599528e-20,0.00012400794366840273,4.0,4.0,6.0,8.0,0.05149677395820618,-0.015275297686457634,-0.015275297686457634,-0.011225818656384945,-0.008891369216144085,0.0013020833721384406,0.0018749999580904841,0.0013392857508733869,0.0010416667209938169,0.0013020833721384406,0.0013392857508733869,0.0010416667209938169,0.0006975446594879031,0.0007440476329065859,0.0004340277810115367,-0.015275297686457634,0.019298115745186806,0.0018749999580904841,0.0013392857508733869,0.0010416667209938169,-0.00390625,-0.0012499999720603228,-0.0008928571478463709,-0.0006944444612599909,-0.0,0.0,8.300922883092143e-20,-3.46870337252662e-34,9.608899641752204e-20,1.1784573353343906e-19,-0.015275297686457634,0.0018749999580904841,0.019298115745186806,0.0013392857508733869,0.0010416667209938169,-0.0,-0.0012499999720603228,-0.0,8.300922883092143e-20,-0.00390625,-0.0008928571478463709,-0.0006944444612599909,-3.5810259903450167e-34,8.893845946170154e-20,1.2585630568176743e-19,-0.011225818656384945,0.0013392857508733869,0.0013392857508733869,0.008326822891831398,0.0007440476329065859,-0.0,-0.0,-0.0005357142654247582,9.608899641752204e-20,-0.0,-0.0005357142654247582,8.893845946170154e-20,-0.0010463169310241938,-0.00029761905898340046,6.575073090534075e-19,-0.008891369216144085,0.0010416667209938169,0.0010416667209938169,0.0007440476329065859,0.0047105299308896065,-0.0,-0.0,-0.0,-0.00029761905898340046,-0.0,-0.0,-0.00029761905898340046,1.0464815991797441e-18,-0.00021258502965793014,-0.0004340277810115367,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0018749999580904841,-0.0012499999720603228,-0.0012499999720603228,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0008928571478463709,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0006944444612599909,8.300922883092143e-20,9.608899641752204e-20,-0.00029761905898340046,-0.0,-0.0,-0.0,0.00019841270113829523,-0.0,-0.0,-2.371692252312041e-20,9.910581392345686e-35,-2.7453998514838545e-20,-3.3670209119386263e-20,0.0013020833721384406,-0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,0.0,-0.0008928571478463709,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,8.300922883092143e-20,-0.0006944444612599909,8.893845946170154e-20,-0.00029761905898340046,-0.0,-0.0,-0.0,-2.371692252312041e-20,-0.0,-0.0,0.00019841270113829523,1.023150282955719e-34,-2.541098841762901e-20,-3.59589467884866e-20,0.0006975446594879031,-3.46870337252662e-34,-3.5810259903450167e-34,-0.0010463169310241938,1.0464815991797441e-18,-0.0,-0.0,-0.0,9.910581392345686e-35,-0.0,-0.0,1.023150282955719e-34,0.0002092633949359879,-1.2947206723560157e-19,-1.0325735006825511e-19,0.0007440476329065859,9.608899641752204e-20,8.893845946170154e-20,-0.00029761905898340046,-0.00021258502965793014,-0.0,-0.0,-0.0,-2.7453998514838545e-20,-0.0,-0.0,-2.541098841762901e-20,-1.2947206723560157e-19,8.50340147735551e-05,-4.0348723213471626e-20,0.0004340277810115367,1.1784573353343906e-19,1.2585630568176743e-19,6.575073090534075e-19,-0.0004340277810115367,-0.0,-0.0,-0.0,-3.3670209119386263e-20,-0.0,-0.0,-3.59589467884866e-20,-1.0325735006825511e-19,-4.0348723213471626e-20,6.200397183420137e-05,4.0,4.0,7.0,3.0,0.09835813194513321,-0.03232142701745033,-0.03232142701745033,-0.02105654776096344,-0.03950892761349678,0.0029761905316263437,0.004285714123398066,0.0026785715017467737,0.0053571430034935474,0.0029761905316263437,0.0026785715017467737,0.0053571430034935474,0.0012400794075801969,0.0033482143189758062,0.004464285913854837,-0.03232142701745033,0.04238095134496689,0.004285714123398066,0.0026785715017467737,0.0053571430034935474,-0.008928571827709675,-0.0028571428265422583,-0.0017857142956927419,-0.0035714285913854837,-1.474514954580286e-17,-9.107298248878237e-18,-3.903127820947816e-18,-2.6020852139652106e-18,-1.0625181290357943e-17,1.5612511283791264e-17,-0.03232142701745033,0.004285714123398066,0.04238095134496689,0.0026785715017467737,0.0053571430034935474,-2.5143721398629452e-17,-0.0028571428265422583,-8.565197162635485e-18,1.5178830414797062e-18,-0.008928571827709675,-0.0017857142956927419,-0.0035714285913854837,-2.0599841277224584e-18,-9.215718466126788e-18,5.204170427930421e-18,-0.02105654776096344,0.0026785715017467737,0.0026785715017467737,0.01346726156771183,0.0033482143189758062,-1.834819940157359e-17,-2.8312806248865567e-18,-0.0008928571478463709,-1.3010426069826053e-18,-1.0924403123601038e-17,-0.0008928571478463709,-2.3852447794681098e-18,-0.0014880952658131719,-0.0011160714784637094,1.0408340855860843e-17,-0.03950892761349678,0.0053571430034935474,0.0053571430034935474,0.0033482143189758062,0.08415178209543228,-2.585822181377928e-17,1.0956292590576182e-17,-5.345421030100895e-18,-0.0053571430034935474,-2.3765158733360827e-17,-2.154323662993825e-18,-0.0053571430034935474,1.5178830414797062e-18,-0.0033482143189758062,-0.02678571455180645,0.0029761905316263437,-0.008928571827709675,-2.5143721398629452e-17,-1.834819940157359e-17,-2.585822181377928e-17,0.0029761905316263437,3.956856510455585e-18,4.961963259178463e-18,7.640831099913602e-18,3.0417712074113943e-18,2.2030675553351966e-18,2.328751238762882e-18,7.589415207398531e-19,2.8731357570865868e-18,2.710505431213761e-19,0.004285714123398066,-0.0028571428265422583,-0.0028571428265422583,-2.8312806248865567e-18,1.0956292590576182e-17,3.956856510455585e-18,0.0019047618843615055,5.421010862427522e-19,2.9937992813766877e-20,-9.32359147755074e-20,-1.079800796144898e-19,-1.3845933289220193e-18,3.2526065174565133e-19,3.2526065174565133e-19,-4.933119884809045e-18,0.0026785715017467737,-0.0017857142956927419,-8.565197162635485e-18,-0.0008928571478463709,-5.345421030100895e-18,4.961963259178463e-18,5.421010862427522e-19,0.0005952381179668009,1.2609995173119492e-18,1.5757460830865922e-18,7.032823984775381e-19,6.479680037355046e-19,1.6263032587282567e-19,7.318364664277155e-19,2.710505431213761e-20,0.0053571430034935474,-0.0035714285913854837,1.5178830414797062e-18,-1.3010426069826053e-18,-0.0053571430034935474,7.640831099913602e-18,2.9937992813766877e-20,1.2609995173119492e-18,0.0035714285913854837,3.2526065174565133e-19,1.3248262823349239e-20,-2.54772187013246e-18,-0.0,-8.673617379884035e-19,-6.451002926288751e-18,0.0029761905316263437,-1.474514954580286e-17,-0.008928571827709675,-1.0924403123601038e-17,-2.3765158733360827e-17,3.0417712074113943e-18,-9.32359147755074e-20,1.5757460830865922e-18,3.2526065174565133e-19,0.0029761905316263437,2.559151024656105e-18,4.9705481531658446e-18,3.2526065174565133e-19,2.4936649967166602e-18,3.577867169202165e-18,0.0026785715017467737,-9.107298248878237e-18,-0.0017857142956927419,-0.0008928571478463709,-2.154323662993825e-18,2.2030675553351966e-18,-1.079800796144898e-19,7.032823984775381e-19,1.3248262823349239e-20,2.559151024656105e-18,0.0005952381179668009,7.589415207398531e-19,1.6263032587282567e-19,6.505213034913027e-19,-5.692061405548898e-19,0.0053571430034935474,-3.903127820947816e-18,-0.0035714285913854837,-2.3852447794681098e-18,-0.0053571430034935474,2.328751238762882e-18,-1.3845933289220193e-18,6.479680037355046e-19,-2.54772187013246e-18,4.9705481531658446e-18,7.589415207398531e-19,0.0035714285913854837,1.6263032587282567e-19,-8.944667923005412e-19,-6.288372600415926e-18,0.0012400794075801969,-2.6020852139652106e-18,-2.0599841277224584e-18,-0.0014880952658131719,1.5178830414797062e-18,7.589415207398531e-19,3.2526065174565133e-19,1.6263032587282567e-19,-0.0,3.2526065174565133e-19,1.6263032587282567e-19,1.6263032587282567e-19,0.00024801588733680546,1.0842021724855044e-19,-8.673617379884035e-19,0.0033482143189758062,-1.0625181290357943e-17,-9.215718466126788e-18,-0.0011160714784637094,-0.0033482143189758062,2.8731357570865868e-18,3.2526065174565133e-19,7.318364664277155e-19,-8.673617379884035e-19,2.4936649967166602e-18,6.505213034913027e-19,-8.944667923005412e-19,1.0842021724855044e-19,0.0011160714784637094,-3.805767835669712e-18,0.004464285913854837,1.5612511283791264e-17,5.204170427930421e-18,1.0408340855860843e-17,-0.02678571455180645,2.710505431213761e-19,-4.933119884809045e-18,2.710505431213761e-20,-6.451002926288751e-18,3.577867169202165e-18,-5.692061405548898e-19,-6.288372600415926e-18,-8.673617379884035e-19,-3.805767835669712e-18,0.013392857275903225,4.0,4.0,7.0,4.0,0.07947172969579697,-0.025044642388820648,-0.025044642388820648,-0.01629464328289032,-0.025044642388820648,0.0022321429569274187,0.003214285708963871,0.002008928684517741,0.003214285708963871,0.0022321429569274187,0.002008928684517741,0.003214285708963871,0.0009300595265813172,0.002008928684517741,0.0022321429569274187,-0.025044642388820648,0.03232142701745033,0.003214285708963871,0.002008928684517741,0.003214285708963871,-0.0066964286379516125,-0.002142857061699033,-0.0013392857508733869,-0.002142857061699033,-1.2576745200831851e-17,-5.5294310796760726e-18,-2.168404344971009e-18,-1.0842021724855044e-18,-4.9873299934333204e-18,-6.071532165918825e-18,-0.025044642388820648,0.003214285708963871,0.03232142701745033,0.002008928684517741,0.003214285708963871,-1.1498818847653787e-17,-0.002142857061699033,-7.860465750519907e-18,-2.6020852139652106e-18,-0.0066964286379516125,-0.0013392857508733869,-0.002142857061699033,-2.2768245622195593e-18,-9.215718466126788e-18,-1.8648277366750676e-17,-0.01629464328289032,0.002008928684517741,0.002008928684517741,0.01026785746216774,0.002008928684517741,-8.740267457740496e-18,-6.41174989750066e-19,-0.0006696428754366934,-1.0842021724855044e-18,-1.6409979568741387e-17,-0.0006696428754366934,-2.3852447794681098e-18,-0.0011160714784637094,-0.0006696428754366934,-6.5052130349130266e-18,-0.025044642388820648,0.003214285708963871,0.003214285708963871,0.002008928684517741,0.03232142701745033,-9.215718466126788e-18,1.6692726032133956e-18,-5.6208229568346064e-18,-0.002142857061699033,-3.018305623717398e-17,-5.29259272668989e-18,-0.002142857061699033,-5.421010862427522e-19,-0.0013392857508733869,-0.0066964286379516125,0.0022321429569274187,-0.0066964286379516125,-1.1498818847653787e-17,-8.740267457740496e-18,-9.215718466126788e-18,0.0022321429569274187,1.3439887904105928e-18,1.9088656744345332e-18,1.43110858989802e-18,1.5668420007803417e-18,1.2500830079729338e-18,3.776403389213174e-19,2.710505431213761e-19,1.1926223897340549e-18,8.673617379884035e-19,0.003214285708963871,-0.002142857061699033,-0.002142857061699033,-6.41174989750066e-19,1.6692726032133956e-18,1.3439887904105928e-18,0.0014285714132711291,8.131516293641283e-20,-4.372054338855019e-19,5.589277493596708e-19,7.453174553854955e-20,-3.523033314697236e-19,1.0842021724855044e-19,-0.0,-8.131516293641283e-20,0.002008928684517741,-0.0013392857508733869,-7.860465750519907e-18,-0.0006696428754366934,-5.6208229568346064e-18,1.9088656744345332e-18,8.131516293641283e-20,0.00044642857392318547,5.876579033827454e-19,1.7770457584277765e-18,5.045262001223778e-19,4.413197785535524e-19,8.131516293641283e-20,4.2012834183813297e-19,9.0801931945661e-19,0.003214285708963871,-0.002142857061699033,-2.6020852139652106e-18,-1.0842021724855044e-18,-0.002142857061699033,1.43110858989802e-18,-4.372054338855019e-19,5.876579033827454e-19,0.0014285714132711291,1.0028870095490916e-18,4.385589792486257e-20,1.4309212593386708e-19,5.421010862427522e-20,-5.421010862427522e-20,6.2341624917916505e-19,0.0022321429569274187,-1.2576745200831851e-17,-0.0066964286379516125,-1.6409979568741387e-17,-3.018305623717398e-17,1.5668420007803417e-18,5.589277493596708e-19,1.7770457584277765e-18,1.0028870095490916e-18,0.0022321429569274187,3.807908579094999e-18,5.755961521458926e-18,4.336808689942018e-19,2.303929616531697e-18,3.8624702394796095e-18,0.002008928684517741,-5.5294310796760726e-18,-0.0013392857508733869,-0.0006696428754366934,-5.29259272668989e-18,1.2500830079729338e-18,7.453174553854955e-20,5.045262001223778e-19,4.385589792486257e-20,3.807908579094999e-18,0.00044642857392318547,6.505213034913027e-19,8.131516293641283e-20,4.472333961502706e-19,9.0801931945661e-19,0.003214285708963871,-2.168404344971009e-18,-0.002142857061699033,-2.3852447794681098e-18,-0.002142857061699033,3.776403389213174e-19,-3.523033314697236e-19,4.413197785535524e-19,1.4309212593386708e-19,5.755961521458926e-18,6.505213034913027e-19,0.0014285714132711291,0.0,4.336808689942018e-19,2.2768245622195593e-18,0.0009300595265813172,-1.0842021724855044e-18,-2.2768245622195593e-18,-0.0011160714784637094,-5.421010862427522e-19,2.710505431213761e-19,1.0842021724855044e-19,8.131516293641283e-20,5.421010862427522e-20,4.336808689942018e-19,8.131516293641283e-20,0.0,0.00018601190822664648,-2.710505431213761e-20,-5.421010862427522e-20,0.002008928684517741,-4.9873299934333204e-18,-9.215718466126788e-18,-0.0006696428754366934,-0.0013392857508733869,1.1926223897340549e-18,-0.0,4.2012834183813297e-19,-5.421010862427522e-20,2.303929616531697e-18,4.472333961502706e-19,4.336808689942018e-19,-2.710505431213761e-20,0.00044642857392318547,2.385207556340545e-18,0.0022321429569274187,-6.071532165918825e-18,-1.8648277366750676e-17,-6.5052130349130266e-18,-0.0066964286379516125,8.673617379884035e-19,-8.131516293641283e-20,9.0801931945661e-19,6.2341624917916505e-19,3.8624702394796095e-18,9.0801931945661e-19,2.2768245622195593e-18,-5.421010862427522e-20,2.385207556340545e-18,0.0022321429569274187,4.0,4.0,7.0,5.0,0.06678911298513412,-0.02046428620815277,-0.02046428620815277,-0.013303571380674839,-0.017334183678030968,0.0017857142956927419,0.0025714286603033543,0.0016071428544819355,0.002142857061699033,0.0017857142956927419,0.0016071428544819355,0.002142857061699033,0.0007440476329065859,0.0013392857508733869,0.0012755101779475808,-0.02046428620815277,0.02614285796880722,0.0025714286603033543,0.0016071428544819355,0.002142857061699033,-0.0053571430034935474,-0.001714285695925355,-0.0010714285308495164,-0.0014285714132711291,-0.0,4.0657581468206416e-20,0.0,4.0657581468206416e-20,-0.0,-0.0,-0.02046428620815277,0.0025714286603033543,0.02614285796880722,0.0016071428544819355,0.002142857061699033,-0.0,-0.001714285695925355,4.0657581468206416e-20,-0.0,-0.0053571430034935474,-0.0010714285308495164,-0.0014285714132711291,7.193264711867991e-20,0.0,-0.0,-0.013303571380674839,0.0016071428544819355,0.0016071428544819355,0.008303571492433548,0.0013392857508733869,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0008928571478463709,-0.00044642857392318547,-0.0,-0.017334183678030968,0.002142857061699033,0.002142857061699033,0.0013392857508733869,0.016320152208209038,-0.0,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0006696428754366934,-0.0025510203558951616,0.0017857142956927419,-0.0053571430034935474,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0025714286603033543,-0.001714285695925355,-0.001714285695925355,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0010714285308495164,4.0657581468206416e-20,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-1.3552527156068805e-20,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,4.0657581468206416e-20,-0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,0.0003571428533177823,-0.0,-2.3977547423972835e-20,-0.0,-0.0,0.002142857061699033,0.0,-0.0014285714132711291,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.0007440476329065859,4.0657581468206416e-20,7.193264711867991e-20,-0.0008928571478463709,-0.0,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,-2.3977547423972835e-20,-0.0,0.00014880952949170023,0.0,-0.0,0.0013392857508733869,-0.0,0.0,-0.00044642857392318547,-0.0006696428754366934,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.00022321428696159273,-0.0,0.0012755101779475808,-0.0,-0.0,-0.0,-0.0025510203558951616,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,4.0,4.0,7.0,6.0,0.05764526501297951,-0.0173086728900671,-0.0173086728900671,-0.011245748028159142,-0.012723213993012905,0.0014880952658131719,0.002142857061699033,0.0013392857508733869,0.0015306122368201613,0.0014880952658131719,0.0013392857508733869,0.0015306122368201613,0.0006200397037900984,0.0009566326625645161,0.0007971939048729837,-0.0173086728900671,0.021955782547593117,0.002142857061699033,0.0013392857508733869,0.0015306122368201613,-0.004464285913854837,-0.0014285714132711291,-0.0008928571478463709,-0.0010204081190750003,-1.1895247017376204e-18,-2.557794448451518e-19,-3.3803658555350355e-19,2.7138317635637326e-21,-7.411966095948183e-20,-1.7729691021763855e-19,-0.0173086728900671,0.002142857061699033,0.021955782547593117,0.0013392857508733869,0.0015306122368201613,-1.1895247017376204e-18,-0.0014285714132711291,-2.568858764626239e-19,-3.3670885727277938e-19,-0.004464285913854837,-0.0008928571478463709,-0.0010204081190750003,6.937656693742442e-21,-6.791890183028266e-20,-1.7880523529053778e-19,-0.011245748028159142,0.0013392857508733869,0.0013392857508733869,0.00697278929874301,0.0009566326625645161,-7.434529256613157e-19,-4.758098496757752e-19,-0.00044642857392318547,-2.24381865991141e-19,-7.434529256613157e-19,-0.00044642857392318547,-2.303929616531697e-19,-0.0007440476329065859,-0.0003188775444868952,-1.1823992386941179e-19,-0.012723213993012905,0.0015306122368201613,0.0015306122368201613,0.0009566326625645161,0.009473851881921291,-8.49660486470075e-19,-5.437826927292842e-19,-1.678450275507248e-19,-0.0006122448830865324,-8.49660486470075e-19,-1.5724570320253223e-19,-0.0006122448830865324,-0.0,-0.00038265305920504034,-0.001195790828205645,0.0014880952658131719,-0.004464285913854837,-1.1895247017376204e-18,-7.434529256613157e-19,-8.49660486470075e-19,0.0014880952658131719,7.930164505921508e-19,4.956353010071399e-19,5.664403070804539e-19,6.60318844635302e-34,1.4198611444646393e-34,1.8764799735372635e-34,-0.0,4.114467852224315e-35,6.983061499230113e-35,0.002142857061699033,-0.0014285714132711291,-0.0014285714132711291,-4.758098496757752e-19,-5.437826927292842e-19,7.930164505921508e-19,0.0009523809421807528,1.5860328753349075e-19,1.8126090188466044e-19,7.930164505921508e-19,1.5860328753349075e-19,1.8126090188466044e-19,-1.2037062152420224e-35,2.5231116673046155e-35,4.81482486096809e-35,0.0013392857508733869,-0.0008928571478463709,-2.568858764626239e-19,-0.00044642857392318547,-1.678450275507248e-19,4.956353010071399e-19,1.5860328753349075e-19,0.00029761905898340046,1.1263674457164536e-19,1.444707352744554e-34,6.776263578034403e-21,-5.391353610190012e-22,-0.0,3.3881317890172014e-21,-1.9285849267612386e-21,0.0015306122368201613,-0.0010204081190750003,-3.3670885727277938e-19,-2.24381865991141e-19,-0.0006122448830865324,5.664403070804539e-19,1.8126090188466044e-19,1.1263674457164536e-19,0.0004081632650922984,1.8055593228630336e-34,-9.817116228840538e-22,2.710505431213761e-20,-1.0855326852306539e-21,2.5582106560089516e-20,7.323306551449276e-20,0.0014880952658131719,-1.1895247017376204e-18,-0.004464285913854837,-7.434529256613157e-19,-8.49660486470075e-19,6.60318844635302e-34,7.930164505921508e-19,1.444707352744554e-34,1.8055593228630336e-34,0.0014880952658131719,4.956353010071399e-19,5.664403070804539e-19,3.0786186465429707e-37,3.770256646201219e-35,7.046265557545298e-35,0.0013392857508733869,-2.557794448451518e-19,-0.0008928571478463709,-0.00044642857392318547,-1.5724570320253223e-19,1.4198611444646393e-34,1.5860328753349075e-19,6.776263578034403e-21,-9.817116228840538e-22,4.956353010071399e-19,0.00029761905898340046,1.1274893094222286e-19,-1.5637531411598003e-21,-0.0,-1.917405467691485e-21,0.0015306122368201613,-3.3803658555350355e-19,-0.0010204081190750003,-2.303929616531697e-19,-0.0006122448830865324,1.8764799735372635e-34,1.8126090188466044e-19,-5.391353610190012e-22,2.710505431213761e-20,5.664403070804539e-19,1.1274893094222286e-19,0.0004081632650922984,-8.98558867715538e-22,2.7167561378347917e-20,7.382298100056232e-20,0.0006200397037900984,2.7138317635637326e-21,6.937656693742442e-21,-0.0007440476329065859,-0.0,-0.0,-1.2037062152420224e-35,-0.0,-1.0855326852306539e-21,3.0786186465429707e-37,-1.5637531411598003e-21,-8.98558867715538e-22,0.00012400794366840273,-7.818765705799002e-22,-1.37630434102732e-21,0.0009566326625645161,-7.411966095948183e-20,-6.791890183028266e-20,-0.0003188775444868952,-0.00038265305920504034,4.114467852224315e-35,2.5231116673046155e-35,3.3881317890172014e-21,2.5582106560089516e-20,3.770256646201219e-35,-0.0,2.7167561378347917e-20,-7.818765705799002e-22,0.00012755101488437504,5.318195220344022e-20,0.0007971939048729837,-1.7729691021763855e-19,-1.7880523529053778e-19,-1.1823992386941179e-19,-0.001195790828205645,6.983061499230113e-35,4.81482486096809e-35,-1.9285849267612386e-21,7.323306551449276e-20,7.046265557545298e-35,-1.917405467691485e-21,7.382298100056232e-20,-1.37630434102732e-21,5.318195220344022e-20,0.00023915816564112902,4.0,4.0,7.0,7.0,0.05072597786784172,-0.014999999664723873,-0.014999999664723873,-0.009741709567606449,-0.009741709567606449,0.0012755101779475808,0.001836734707467258,0.0011479591485112906,0.0011479591485112906,0.0012755101779475808,0.0011479591485112906,0.0011479591485112906,0.0005314626032486558,0.000717474496923387,0.0005314626032486558,-0.014999999664723873,0.018928570672869682,0.001836734707467258,0.0011479591485112906,0.0011479591485112906,-0.0038265306502580643,-0.0012244897661730647,-0.0007653061184100807,-0.0007653061184100807,-3.1939141238879664e-18,3.8965319861408947e-19,3.801051303515723e-19,-1.0142376853121208e-18,6.2219410921116356e-21,-9.974314432165747e-19,-0.014999999664723873,0.001836734707467258,0.018928570672869682,0.0011479591485112906,0.0011479591485112906,1.0287250299579511e-18,-0.0012244897661730647,-1.263681753845729e-18,-1.2728142413986207e-18,-0.0038265306502580643,-0.0007653061184100807,-0.0007653061184100807,-9.90822270122276e-19,1.3470255804656024e-20,-1.0039580016471946e-18,-0.009741709567606449,0.0011479591485112906,0.0011479591485112906,0.00601084204390645,0.000717474496923387,7.349996567889066e-19,-8.780981287490356e-19,-0.00038265305920504034,-7.360132115332254e-19,-2.969476617075934e-20,-0.00038265305920504034,-7.453889935837843e-19,-0.0006377550889737904,-0.00023915816564112902,-5.26363458101048e-19,-0.009741709567606449,0.0011479591485112906,0.0011479591485112906,0.000717474496923387,0.00601084204390645,7.349996567889066e-19,-8.780981287490356e-19,-7.268086558694651e-19,-0.00038265305920504034,-2.969476617075934e-20,-7.151899218891804e-19,-0.00038265305920504034,-1.2197274440461925e-19,-0.00023915816564112902,-0.0006377550889737904,0.0012755101779475808,-0.0038265306502580643,1.0287250299579511e-18,7.349996567889066e-19,7.349996567889066e-19,0.0012755101779475808,-4.781218711866492e-19,-2.9882615656695866e-19,-2.9882615656695866e-19,1.4161007677011348e-19,-8.49660473545378e-20,-8.49660473545378e-20,2.360167946168558e-20,-5.310378040437969e-20,2.360167946168558e-20,0.001836734707467258,-0.0012244897661730647,-0.0012244897661730647,-8.780981287490356e-19,-8.780981287490356e-19,-4.781218711866492e-19,0.0008163265301845968,3.9396502619103844e-20,3.9396502619103844e-20,2.977857701515201e-19,-4.3095702786055e-20,-4.3095702786055e-20,1.8126090188466044e-19,3.1296361596292583e-34,1.8126090188466044e-19,0.0011479591485112906,-0.0007653061184100807,-1.263681753845729e-18,-0.00038265305920504034,-7.268086558694651e-19,-2.9882615656695866e-19,3.9396502619103844e-20,0.00025510202976875007,2.4458662810097525e-20,4.248302432350375e-19,4.432042769347072e-20,3.5118441621046792e-22,1.4230153513872246e-19,4.404571325722362e-20,1.1408459498694872e-19,0.0011479591485112906,-0.0007653061184100807,-1.2728142413986207e-18,-7.360132115332254e-19,-0.00038265305920504034,-2.9882615656695866e-19,3.9396502619103844e-20,2.4458662810097525e-20,0.00025510202976875007,4.248302432350375e-19,2.8190829234464153e-22,4.743384504624082e-20,1.1301448176824653e-19,4.9467109921858713e-20,1.3562934122150488e-19,0.0012755101779475808,-3.1939141238879664e-18,-0.0038265306502580643,-2.969476617075934e-20,-2.969476617075934e-20,1.4161007677011348e-19,2.977857701515201e-19,4.248302432350375e-19,4.248302432350375e-19,0.0012755101779475808,-2.9882615656695866e-19,-2.9882615656695866e-19,2.360167946168558e-20,-5.310378040437969e-20,2.360167946168558e-20,0.0011479591485112906,3.8965319861408947e-19,-0.0007653061184100807,-0.00038265305920504034,-7.151899218891804e-19,-8.49660473545378e-20,-4.3095702786055e-20,4.432042769347072e-20,2.8190829234464153e-22,-2.9882615656695866e-19,0.00025510202976875007,2.4973997947305195e-20,1.3363750323117426e-19,4.0657581468206416e-20,1.1375791034377856e-19,0.0011479591485112906,3.801051303515723e-19,-0.0007653061184100807,-7.453889935837843e-19,-0.00038265305920504034,-8.49660473545378e-20,-4.3095702786055e-20,3.5118441621046792e-22,4.743384504624082e-20,-2.9882615656695866e-19,2.4973997947305195e-20,0.00025510202976875007,1.1387336666271506e-19,5.043913761448802e-20,1.3813152380038658e-19,0.0005314626032486558,-1.0142376853121208e-18,-9.90822270122276e-19,-0.0006377550889737904,-1.2197274440461925e-19,2.360167946168558e-20,1.8126090188466044e-19,1.4230153513872246e-19,1.1301448176824653e-19,2.360167946168558e-20,1.3363750323117426e-19,1.1387336666271506e-19,0.00010629251482896507,-3.102507615972348e-20,-1.721315679578541e-20,0.000717474496923387,6.2219410921116356e-21,1.3470255804656024e-20,-0.00023915816564112902,-0.00023915816564112902,-5.310378040437969e-20,3.1296361596292583e-34,4.404571325722362e-20,4.9467109921858713e-20,-5.310378040437969e-20,4.0657581468206416e-20,5.043913761448802e-20,-3.102507615972348e-20,7.97193861217238e-05,1.1587407099523649e-19,0.0005314626032486558,-9.974314432165747e-19,-1.0039580016471946e-18,-5.26363458101048e-19,-0.0006377550889737904,2.360167946168558e-20,1.8126090188466044e-19,1.1408459498694872e-19,1.3562934122150488e-19,2.360167946168558e-20,1.1375791034377856e-19,1.3813152380038658e-19,-1.721315679578541e-20,1.1587407099523649e-19,0.00010629251482896507,4.0,4.0,7.0,8.0,0.04530134052038193,-0.013236607424914837,-0.013236607424914837,-0.008593750186264515,-0.007700892630964518,0.0011160714784637094,0.0016071428544819355,0.0010044643422588706,0.0008928571478463709,0.0011160714784637094,0.0010044643422588706,0.0008928571478463709,0.0004650297632906586,0.0005580357392318547,0.00037202381645329297,-0.013236607424914837,0.016636904329061508,0.0016071428544819355,0.0010044643422588706,0.0008928571478463709,-0.0033482143189758062,-0.0010714285308495164,-0.0006696428754366934,-0.0005952381179668009,-0.0,8.690136564457632e-21,-4.945447926164594e-20,1.3142219722848361e-20,-1.6507293852290647e-20,-5.590188684740223e-20,-0.013236607424914837,0.0016071428544819355,0.016636904329061508,0.0010044643422588706,0.0008928571478463709,-0.0,-0.0010714285308495164,7.806990397999429e-21,-4.869749591006055e-20,-0.0033482143189758062,-0.0006696428754366934,-0.0005952381179668009,1.4054152420858263e-20,-1.7787691892340307e-20,-6.359632090537049e-20,-0.008593750186264515,0.0010044643422588706,0.0010044643422588706,0.005282738246023655,0.0005580357392318547,-0.0,-0.0,-0.0003348214377183467,-3.7415779868254406e-20,-0.0,-0.0003348214377183467,-2.710505431213761e-20,-0.0005580357392318547,-0.00018601190822664648,-5.498020731221355e-20,-0.007700892630964518,0.0008928571478463709,0.0008928571478463709,0.0005580357392318547,0.004060374107211828,-0.0,-0.0,-4.59724447016455e-21,-0.00025510202976875007,-0.0,-6.293077816997629e-21,-0.00025510202976875007,-1.3552527156068805e-20,-0.0001594387722434476,-0.00037202381645329297,0.0011160714784637094,-0.0033482143189758062,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0010714285308495164,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010044643422588706,-0.0006696428754366934,7.806990397999429e-21,-0.0003348214377183467,-4.59724447016455e-21,-0.0,-0.0,0.00022321428696159273,1.2319836394341036e-21,-0.0,-3.3881317890172014e-21,6.735442840844925e-22,-6.776263578034403e-21,-1.6940658945086007e-21,9.009066187436717e-22,0.0008928571478463709,-0.0005952381179668009,-4.869749591006055e-20,-3.7415779868254406e-20,-0.00025510202976875007,-0.0,-0.0,1.2319836394341036e-21,0.0001700680295471102,-0.0,4.212168620468968e-22,1.3552527156068805e-20,2.0533060320654407e-21,6.1684259799917926e-21,1.519976202632726e-20,0.0011160714784637094,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010044643422588706,8.690136564457632e-21,-0.0006696428754366934,-0.0003348214377183467,-6.293077816997629e-21,-0.0,-0.0,-3.3881317890172014e-21,4.212168620468968e-22,-0.0,0.00022321428696159273,6.735442840844925e-22,-5.994386855993209e-21,-0.0,6.142746020550177e-22,0.0008928571478463709,-4.945447926164594e-20,-0.0005952381179668009,-2.710505431213761e-20,-0.00025510202976875007,-0.0,-0.0,6.735442840844925e-22,1.3552527156068805e-20,-0.0,6.735442840844925e-22,0.0001700680295471102,1.1225737563203896e-21,5.082197683525802e-21,1.7643856169809846e-20,0.0004650297632906586,1.3142219722848361e-20,1.4054152420858263e-20,-0.0005580357392318547,-1.3552527156068805e-20,-0.0,-0.0,-6.776263578034403e-21,2.0533060320654407e-21,-0.0,-5.994386855993209e-21,1.1225737563203896e-21,9.300595411332324e-05,3.909382852899501e-22,2.0114968584726085e-21,0.0005580357392318547,-1.6507293852290647e-20,-1.7787691892340307e-20,-0.00018601190822664648,-0.0001594387722434476,-0.0,-0.0,-1.6940658945086007e-21,6.1684259799917926e-21,-0.0,-0.0,5.082197683525802e-21,3.909382852899501e-22,5.3146257414482534e-05,1.1323630026614285e-20,0.00037202381645329297,-5.590188684740223e-20,-6.359632090537049e-20,-5.498020731221355e-20,-0.00037202381645329297,-0.0,-0.0,9.009066187436717e-22,1.519976202632726e-20,-0.0,6.142746020550177e-22,1.7643856169809846e-20,2.0114968584726085e-21,1.1323630026614285e-20,5.3146257414482534e-05,4.0,4.0,8.0,3.0,0.08803819119930267,-0.028541667386889458,-0.028541667386889458,-0.01666666753590107,-0.03489583358168602,0.0026041667442768812,0.0037499999161809683,0.0020833334419876337,0.004687500186264515,0.0026041667442768812,0.0020833334419876337,0.004687500186264515,0.0008680555620230734,0.0026041667442768812,0.00390625,-0.028541667386889458,0.03725694492459297,0.0037499999161809683,0.0020833334419876337,0.004687500186264515,-0.0078125,-0.0024999999441206455,-0.0013888889225199819,-0.0031250000465661287,5.204170427930421e-18,-5.421010862427522e-19,3.0357660829594124e-18,5.5294310796760726e-18,3.0357660829594124e-18,-1.3010426069826053e-17,-0.028541667386889458,0.0037499999161809683,0.03725694492459297,0.0020833334419876337,0.004687500186264515,9.231793894151143e-18,-0.0024999999441206455,-4.689174395999807e-18,3.469446951953614e-18,-0.0078125,-0.0013888889225199819,-0.0031250000465661287,5.55653613398821e-18,1.5178830414797062e-18,-1.6479873021779667e-17,-0.01666666753590107,0.0020833334419876337,0.0020833334419876337,0.00910218246281147,0.0026041667442768812,1.1635673398458848e-17,4.4882075574575984e-18,-0.0005952381179668009,2.6020852139652106e-18,7.993994208081892e-18,-0.0005952381179668009,1.951563910473908e-18,-0.0008680555620230734,-0.0007440476329065859,-1.1275702593849246e-17,-0.03489583358168602,0.004687500186264515,0.004687500186264515,0.0026041667442768812,0.07395832985639572,9.269928574751063e-18,-9.601416242148013e-18,-9.141316878750093e-18,-0.004687500186264515,7.902486008649718e-19,-6.973986214214178e-18,-0.004687500186264515,1.0842021724855044e-19,-0.0026041667442768812,-0.0234375,0.0026041667442768812,-0.0078125,9.231793894151143e-18,1.1635673398458848e-17,9.269928574751063e-18,0.0026041667442768812,3.1616926472944586e-19,-1.7460876709729727e-19,-1.898912623713989e-18,-1.8429519941183984e-18,-4.592782315435966e-19,-1.7557963156719018e-18,-1.2468324983583301e-18,-1.2197274440461925e-18,9.75781955236954e-19,0.0037499999161809683,-0.0024999999441206455,-0.0024999999441206455,4.4882075574575984e-18,-9.601416242148013e-18,3.1616926472944586e-19,0.0016666667070239782,4.87890977618477e-19,1.3804969237335035e-18,-3.875528901035893e-20,6.904146346969954e-20,1.1940050221279373e-18,-7.047314121155779e-19,-1.0842021724855044e-19,3.2526065174565133e-18,0.0020833334419876337,-0.0013888889225199819,-4.689174395999807e-18,-0.0005952381179668009,-9.141316878750093e-18,-1.7460876709729727e-19,4.87890977618477e-19,0.00039682540227659047,8.237390759157125e-19,4.641446384848227e-19,5.003932438905449e-19,5.184640900463197e-19,-1.3552527156068805e-19,3.3881317890172014e-19,2.8189256484623115e-18,0.004687500186264515,-0.0031250000465661287,3.469446951953614e-18,2.6020852139652106e-18,-0.004687500186264515,-1.898912623713989e-18,1.3804969237335035e-18,8.237390759157125e-19,0.0031250000465661287,-1.3552527156068805e-18,-3.032309062535006e-20,-1.4744463399484748e-18,-4.87890977618477e-19,-4.336808689942018e-19,-6.5052130349130266e-18,0.0026041667442768812,5.204170427930421e-18,-0.0078125,7.993994208081892e-18,7.902486008649718e-19,-1.8429519941183984e-18,-3.875528901035893e-20,4.641446384848227e-19,-1.3552527156068805e-18,0.0026041667442768812,1.0537129413416534e-19,-2.6993826954082785e-19,-1.0842021724855044e-18,-7.860465750519907e-19,2.7376104855258987e-18,0.0020833334419876337,-5.421010862427522e-19,-0.0013888889225199819,-0.0005952381179668009,-6.973986214214178e-18,-4.592782315435966e-19,6.904146346969954e-20,5.003932438905449e-19,-3.032309062535006e-20,1.0537129413416534e-19,0.00039682540227659047,7.047314121155779e-19,-1.0842021724855044e-19,3.3881317890172014e-19,2.290377089375628e-18,0.004687500186264515,3.0357660829594124e-18,-0.0031250000465661287,1.951563910473908e-18,-0.004687500186264515,-1.7557963156719018e-18,1.1940050221279373e-18,5.184640900463197e-19,-1.4744463399484748e-18,-2.6993826954082785e-19,7.047314121155779e-19,0.0031250000465661287,-4.336808689942018e-19,-3.7947076036992655e-19,-6.532318089225164e-18,0.0008680555620230734,5.5294310796760726e-18,5.55653613398821e-18,-0.0008680555620230734,1.0842021724855044e-19,-1.2468324983583301e-18,-7.047314121155779e-19,-1.3552527156068805e-19,-4.87890977618477e-19,-1.0842021724855044e-18,-1.0842021724855044e-19,-4.336808689942018e-19,0.00012400794366840273,2.710505431213761e-20,1.0842021724855044e-19,0.0026041667442768812,3.0357660829594124e-18,1.5178830414797062e-18,-0.0007440476329065859,-0.0026041667442768812,-1.2197274440461925e-18,-1.0842021724855044e-19,3.3881317890172014e-19,-4.336808689942018e-19,-7.860465750519907e-19,3.3881317890172014e-19,-3.7947076036992655e-19,2.710505431213761e-20,0.0007440476329065859,1.758095877774799e-18,0.00390625,-1.3010426069826053e-17,-1.6479873021779667e-17,-1.1275702593849246e-17,-0.0234375,9.75781955236954e-19,3.2526065174565133e-18,2.8189256484623115e-18,-6.5052130349130266e-18,2.7376104855258987e-18,2.290377089375628e-18,-6.532318089225164e-18,1.0842021724855044e-19,1.758095877774799e-18,0.01171875,4.0,4.0,8.0,4.0,0.0710677057504654,-0.022109374403953552,-0.022109374403953552,-0.012890624813735485,-0.022109374403953552,0.001953125,0.002812500111758709,0.0015625000232830644,0.002812500111758709,0.001953125,0.0015625000232830644,0.002812500111758709,0.0006510416860692203,0.0015625000232830644,0.001953125,-0.022109374403953552,0.028411459177732468,0.002812500111758709,0.0015625000232830644,0.002812500111758709,-0.005859375,-0.0018749999580904841,-0.0010416667209938169,-0.0018749999580904841,-1.3444106938820255e-17,-4.9873299934333204e-18,-1.3877787807814457e-17,-4.445228907190568e-18,-6.830473686658678e-18,-1.3877787807814457e-17,-0.022109374403953552,0.002812500111758709,0.028411459177732468,0.0015625000232830644,0.002812500111758709,-5.342927080554048e-18,-0.0018749999580904841,-6.911788849595091e-18,-1.9949319973733282e-17,-0.005859375,-0.0010416667209938169,-0.0018749999580904841,-5.068645156369733e-18,-8.72782748850831e-18,-2.42861286636753e-17,-0.012890624813735485,0.0015625000232830644,0.0015625000232830644,0.006938244216144085,0.0015625000232830644,-5.56969864548546e-18,-8.702220458285507e-18,-0.00044642857392318547,-6.938893903907228e-18,-8.705609417255136e-18,-0.00044642857392318547,-6.5052130349130266e-18,-0.0006510416860692203,-0.00044642857392318547,-4.7704895589362195e-18,-0.022109374403953552,0.002812500111758709,0.002812500111758709,0.0015625000232830644,0.028411459177732468,-7.508100044462118e-18,-2.306317521524015e-17,-5.863551249372473e-18,-0.0018749999580904841,-2.3587961756900942e-17,-5.229435832560241e-18,-0.0018749999580904841,-2.6020852139652106e-18,-0.0010416667209938169,-0.005859375,0.001953125,-0.005859375,-5.342927080554048e-18,-5.56969864548546e-18,-7.508100044462118e-18,0.001953125,-8.249270623717035e-19,-8.444122839773675e-19,-6.889039314798351e-19,7.3991977877116025e-19,4.9787540950351e-19,1.1493762499364403e-18,5.963111948670274e-19,6.776263578034403e-19,1.1655173354219173e-18,0.002812500111758709,-0.0018749999580904841,-0.0018749999580904841,-8.702220458285507e-18,-2.306317521524015e-17,-8.249270623717035e-19,0.0012499999720603228,8.944667923005412e-19,2.3439426175075714e-18,1.1731379436102152e-18,6.13719779544877e-19,2.2496518858923455e-18,5.692061405548898e-19,1.2468324983583301e-18,3.550762114890027e-18,0.0015625000232830644,-0.0010416667209938169,-6.911788849595091e-18,-0.00044642857392318547,-5.863551249372473e-18,-8.444122839773675e-19,8.944667923005412e-19,0.00029761905898340046,8.015365142990236e-19,1.0665737128610806e-18,2.5454428324485115e-19,6.606389114549567e-19,1.8973538018496328e-19,2.981555974335137e-19,7.724940478959219e-19,0.002812500111758709,-0.0018749999580904841,-1.9949319973733282e-17,-6.938893903907228e-18,-0.0018749999580904841,-6.889039314798351e-19,2.3439426175075714e-18,8.015365142990236e-19,0.0012499999720603228,2.9815559743351372e-18,8.095764513590976e-19,2.3550231154030255e-18,3.7947076036992655e-19,9.215718466126788e-19,7.589415207398531e-19,0.001953125,-1.3444106938820255e-17,-0.005859375,-8.705609417255136e-18,-2.3587961756900942e-17,7.3991977877116025e-19,1.1731379436102152e-18,1.0665737128610806e-18,2.9815559743351372e-18,0.001953125,-6.201479551813915e-19,1.1252763427897079e-18,8.673617379884035e-19,1.2468324983583301e-18,3.848917712323541e-18,0.0015625000232830644,-4.9873299934333204e-18,-0.0010416667209938169,-0.00044642857392318547,-5.229435832560241e-18,4.9787540950351e-19,6.13719779544877e-19,2.5454428324485115e-19,8.095764513590976e-19,-6.201479551813915e-19,0.00029761905898340046,3.6591823321385775e-19,1.6263032587282567e-19,2.574980159653073e-19,7.792703114739563e-19,0.002812500111758709,-1.3877787807814457e-17,-0.0018749999580904841,-6.5052130349130266e-18,-0.0018749999580904841,1.1493762499364403e-18,2.2496518858923455e-18,6.606389114549567e-19,2.3550231154030255e-18,1.1252763427897079e-18,3.6591823321385775e-19,0.0012499999720603228,3.7947076036992655e-19,1.0706496453294356e-18,1.8431436932253575e-18,0.0006510416860692203,-4.445228907190568e-18,-5.068645156369733e-18,-0.0006510416860692203,-2.6020852139652106e-18,5.963111948670274e-19,5.692061405548898e-19,1.8973538018496328e-19,3.7947076036992655e-19,8.673617379884035e-19,1.6263032587282567e-19,3.7947076036992655e-19,9.300595411332324e-05,9.486769009248164e-20,3.7947076036992655e-19,0.0015625000232830644,-6.830473686658678e-18,-8.72782748850831e-18,-0.00044642857392318547,-0.0010416667209938169,6.776263578034403e-19,1.2468324983583301e-18,2.981555974335137e-19,9.215718466126788e-19,1.2468324983583301e-18,2.574980159653073e-19,1.0706496453294356e-18,9.486769009248164e-20,0.00029761905898340046,-3.1556348417772148e-19,0.001953125,-1.3877787807814457e-17,-2.42861286636753e-17,-4.7704895589362195e-18,-0.005859375,1.1655173354219173e-18,3.550762114890027e-18,7.724940478959219e-19,7.589415207398531e-19,3.848917712323541e-18,7.792703114739563e-19,1.8431436932253575e-18,3.7947076036992655e-19,-3.1556348417772148e-19,0.001953125,4.0,4.0,8.0,5.0,0.05969047546386719,-0.018062500283122063,-0.018062500283122063,-0.010520833544433117,-0.015297618694603443,0.0015625000232830644,0.0022499999031424522,0.0012499999720603228,0.0018749999580904841,0.0015625000232830644,0.0012499999720603228,0.0018749999580904841,0.0005208333604969084,0.0010416667209938169,0.0011160714784637094,-0.018062500283122063,0.022979166358709335,0.0022499999031424522,0.0012499999720603228,0.0018749999580904841,-0.004687500186264515,-0.001500000013038516,-0.0008333333535119891,-0.0012499999720603228,-7.806255641895632e-18,-3.2526065174565133e-18,-2.3852447794681098e-18,2.8189256484623115e-18,-5.963111948670274e-19,-8.673617379884035e-19,-0.018062500283122063,0.0022499999031424522,0.022979166358709335,0.0012499999720603228,0.0018749999580904841,-8.57214878850338e-18,-0.001500000013038516,-2.9544509200229996e-18,1.0842021724855044e-19,-0.004687500186264515,-0.0008333333535119891,-0.0012499999720603228,2.8866882842426556e-18,4.87890977618477e-19,4.336808689942018e-19,-0.010520833544433117,0.0012499999720603228,0.0012499999720603228,0.0056101190857589245,0.0010416667209938169,1.703133448383407e-18,4.485181627379303e-19,-0.0003571428533177823,2.710505431213761e-18,3.0338035969561304e-18,-0.0003571428533177823,2.4936649967166602e-18,-0.0005208333604969084,-0.00029761905898340046,2.6020852139652106e-18,-0.015297618694603443,0.0018749999580904841,0.0018749999580904841,0.0010416667209938169,0.014345237985253334,-4.472333961502706e-18,-1.555608060881259e-18,1.9326178038324754e-19,-0.0009374999790452421,1.24096323832196e-18,2.9572712440202874e-19,-0.0009374999790452421,1.1926223897340549e-18,-0.0005208333604969084,-0.0022321429569274187,0.0015625000232830644,-0.004687500186264515,-8.57214878850338e-18,1.703133448383407e-18,-4.472333961502706e-18,0.0015625000232830644,1.1473050930801841e-18,2.238192539276342e-19,2.673339947797812e-19,1.068940690183901e-18,4.367367326709141e-19,7.364269052370785e-19,-5.421010862427522e-19,2.0328790734103208e-19,4.607859233063394e-19,0.0022499999031424522,-0.001500000013038516,-0.001500000013038516,4.485181627379303e-19,-1.555608060881259e-18,1.1473050930801841e-18,0.0010000000474974513,2.574980159653073e-19,2.0887239752683364e-19,1.238060764950088e-18,5.439913490388007e-19,3.1975607496184064e-19,-2.981555974335137e-19,9.486769009248164e-20,5.421010862427522e-20,0.0012499999720603228,-0.0008333333535119891,-2.9544509200229996e-18,-0.0003571428533177823,1.9326178038324754e-19,2.238192539276342e-19,2.574980159653073e-19,0.0002380952355451882,-1.337447523674706e-19,4.796384034421886e-19,2.5516487549941906e-19,5.71753637121703e-20,-8.131516293641283e-20,8.809142651444724e-20,-9.486769009248164e-20,0.0018749999580904841,-0.0012499999720603228,1.0842021724855044e-19,2.710505431213761e-18,-0.0009374999790452421,2.673339947797812e-19,2.0887239752683364e-19,-1.337447523674706e-19,0.0006249999860301614,6.776263578034403e-20,-8.794165512478685e-20,-1.546613583243693e-19,-2.574980159653073e-19,-2.439454888092385e-19,-7.453889935837843e-20,0.0015625000232830644,-7.806255641895632e-18,-0.004687500186264515,3.0338035969561304e-18,1.24096323832196e-18,1.068940690183901e-18,1.238060764950088e-18,4.796384034421886e-19,6.776263578034403e-20,0.0015625000232830644,1.9096759495433172e-19,-5.531064657988288e-19,-5.149960319306146e-19,-5.421010862427522e-20,-9.486769009248164e-20,0.0012499999720603228,-3.2526065174565133e-18,-0.0008333333535119891,-0.0003571428533177823,2.9572712440202874e-19,4.367367326709141e-19,5.439913490388007e-19,2.5516487549941906e-19,-8.794165512478685e-20,1.9096759495433172e-19,0.0002380952355451882,-7.453889935837843e-20,-5.421010862427522e-20,9.825582188149884e-20,-1.0842021724855044e-19,0.0018749999580904841,-2.3852447794681098e-18,-0.0012499999720603228,2.4936649967166602e-18,-0.0009374999790452421,7.364269052370785e-19,3.1975607496184064e-19,5.71753637121703e-20,-1.546613583243693e-19,-5.531064657988288e-19,-7.453889935837843e-20,0.0006249999860301614,-2.303929616531697e-19,-3.9979955110402976e-19,1.0164395367051604e-19,0.0005208333604969084,2.8189256484623115e-18,2.8866882842426556e-18,-0.0005208333604969084,1.1926223897340549e-18,-5.421010862427522e-19,-2.981555974335137e-19,-8.131516293641283e-20,-2.574980159653073e-19,-5.149960319306146e-19,-5.421010862427522e-20,-2.303929616531697e-19,7.440476474585012e-05,1.3552527156068805e-20,-1.6263032587282567e-19,0.0010416667209938169,-5.963111948670274e-19,4.87890977618477e-19,-0.00029761905898340046,-0.0005208333604969084,2.0328790734103208e-19,9.486769009248164e-20,8.809142651444724e-20,-2.439454888092385e-19,-5.421010862427522e-20,9.825582188149884e-20,-3.9979955110402976e-19,1.3552527156068805e-20,0.00014880952949170023,-4.086301694321279e-19,0.0011160714784637094,-8.673617379884035e-19,4.336808689942018e-19,2.6020852139652106e-18,-0.0022321429569274187,4.607859233063394e-19,5.421010862427522e-20,-9.486769009248164e-20,-7.453889935837843e-20,-9.486769009248164e-20,-1.0842021724855044e-19,1.0164395367051604e-19,-1.6263032587282567e-19,-4.086301694321279e-19,0.0005580357392318547,4.0,4.0,8.0,6.0,0.05149677395820618,-0.015275297686457634,-0.015275297686457634,-0.008891369216144085,-0.011225818656384945,0.0013020833721384406,0.0018749999580904841,0.0010416667209938169,0.0013392857508733869,0.0013020833721384406,0.0010416667209938169,0.0013392857508733869,0.0004340277810115367,0.0007440476329065859,0.0006975446594879031,-0.015275297686457634,0.019298115745186806,0.0018749999580904841,0.0010416667209938169,0.0013392857508733869,-0.00390625,-0.0012499999720603228,-0.0006944444612599909,-0.0008928571478463709,-0.0,8.537303960295949e-20,0.0,1.1858461261560205e-19,-1.1858461261560205e-20,-0.0,-0.015275297686457634,0.0018749999580904841,0.019298115745186806,0.0010416667209938169,0.0013392857508733869,-0.0,-0.0012499999720603228,8.537303960295949e-20,-0.0,-0.00390625,-0.0006944444612599909,-0.0008928571478463709,1.2930354211049096e-19,-1.1858461261560205e-20,-0.0,-0.008891369216144085,0.0010416667209938169,0.0010416667209938169,0.0047105299308896065,0.0007440476329065859,-0.0,-0.0,-0.00029761905898340046,-0.0,-0.0,-0.00029761905898340046,-0.0,-0.0004340277810115367,-0.00021258502965793014,-0.0,-0.011225818656384945,0.0013392857508733869,0.0013392857508733869,0.0007440476329065859,0.008326822891831398,-0.0,-0.0,-1.1858461261560205e-20,-0.0005357142654247582,-0.0,-1.1858461261560205e-20,-0.0005357142654247582,-0.0,-0.00029761905898340046,-0.0010463169310241938,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0018749999580904841,-0.0012499999720603228,-0.0012499999720603228,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0006944444612599909,8.537303960295949e-20,-0.00029761905898340046,-1.1858461261560205e-20,-0.0,-0.0,0.00019841270113829523,-0.0,-0.0,-2.4392297721811484e-20,-0.0,-3.3881317890172014e-20,3.3881317890172014e-21,-0.0,0.0013392857508733869,-0.0008928571478463709,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,8.537303960295949e-20,-0.0006944444612599909,-0.00029761905898340046,-1.1858461261560205e-20,-0.0,-0.0,-2.4392297721811484e-20,-0.0,-0.0,0.00019841270113829523,-0.0,-3.694386686644437e-20,3.3881317890172014e-21,-0.0,0.0013392857508733869,0.0,-0.0008928571478463709,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.0004340277810115367,1.1858461261560205e-19,1.2930354211049096e-19,-0.0004340277810115367,-0.0,-0.0,-0.0,-3.3881317890172014e-20,-0.0,-0.0,-3.694386686644437e-20,-0.0,6.200397183420137e-05,5.433796295887722e-21,-0.0,0.0007440476329065859,-1.1858461261560205e-20,-1.1858461261560205e-20,-0.00021258502965793014,-0.00029761905898340046,-0.0,-0.0,3.3881317890172014e-21,-0.0,-0.0,3.3881317890172014e-21,-0.0,5.433796295887722e-21,8.50340147735551e-05,-0.0,0.0006975446594879031,-0.0,-0.0,-0.0,-0.0010463169310241938,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002092633949359879,4.0,4.0,8.0,7.0,0.04530134052038193,-0.013236607424914837,-0.013236607424914837,-0.007700892630964518,-0.008593750186264515,0.0011160714784637094,0.0016071428544819355,0.0008928571478463709,0.0010044643422588706,0.0011160714784637094,0.0008928571478463709,0.0010044643422588706,0.00037202381645329297,0.0005580357392318547,0.0004650297632906586,-0.013236607424914837,0.016636904329061508,0.0016071428544819355,0.0008928571478463709,0.0010044643422588706,-0.0033482143189758062,-0.0010714285308495164,-0.0005952381179668009,-0.0006696428754366934,-0.0,-5.969660375688339e-20,1.1008914460725567e-20,-7.265327652857845e-20,-5.656806450854005e-20,-9.915918873652484e-21,-0.013236607424914837,0.0016071428544819355,0.016636904329061508,0.0008928571478463709,0.0010044643422588706,-0.0,-0.0010714285308495164,-5.998671796969075e-20,1.1347381580863208e-20,-0.0033482143189758062,-0.0005952381179668009,-0.0006696428754366934,-8.413378733603581e-20,-6.522153693858113e-20,-3.739859799811126e-22,-0.007700892630964518,0.0008928571478463709,0.0008928571478463709,0.004060374107211828,0.0005580357392318547,-0.0,-0.0,-0.00025510202976875007,-6.629749858270801e-20,-0.0,-0.00025510202976875007,-6.776263578034403e-20,-0.00037202381645329297,-0.0001594387722434476,-1.1814084314166442e-19,-0.008593750186264515,0.0010044643422588706,0.0010044643422588706,0.0005580357392318547,0.005282738246023655,-0.0,-0.0,4.726553640980615e-21,-0.0003348214377183467,-0.0,1.0459786087438265e-20,-0.0003348214377183467,1.3552527156068805e-20,-0.00018601190822664648,-0.0005580357392318547,0.0011160714784637094,-0.0033482143189758062,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0010714285308495164,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0005952381179668009,-5.998671796969075e-20,-0.00025510202976875007,4.726553640980615e-21,-0.0,-0.0,0.0001700680295471102,3.434309106323296e-22,-0.0,1.7345883741183225e-20,-2.4129129583887724e-22,2.0328790734103208e-20,-1.6940658945086007e-21,1.614565275030445e-22,0.0010044643422588706,-0.0006696428754366934,1.1347381580863208e-20,-6.629749858270801e-20,-0.0003348214377183467,-0.0,-0.0,3.434309106323296e-22,0.00022321428696159273,-0.0,-3.3799607551391476e-22,-3.3881317890172014e-21,5.008367572939218e-22,2.0832432251635763e-20,3.1169403424639428e-21,0.0011160714784637094,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-5.969660375688339e-20,-0.0005952381179668009,-0.00025510202976875007,1.0459786087438265e-20,-0.0,-0.0,1.7345883741183225e-20,-3.3799607551391476e-22,-0.0,0.0001700680295471102,-2.4129129583887724e-22,2.433983960757399e-20,-1.6940658945086007e-21,-5.63326758865126e-22,0.0010044643422588706,1.1008914460725567e-20,-0.0006696428754366934,-6.776263578034403e-20,-0.0003348214377183467,-0.0,-0.0,-2.4129129583887724e-22,-3.3881317890172014e-21,-0.0,-2.4129129583887724e-22,0.00022321428696159273,-3.518831324023275e-22,2.371692252312041e-20,7.818765705799002e-22,0.00037202381645329297,-7.265327652857845e-20,-8.413378733603581e-20,-0.00037202381645329297,1.3552527156068805e-20,-0.0,-0.0,2.0328790734103208e-20,5.008367572939218e-22,-0.0,2.433983960757399e-20,-3.518831324023275e-22,5.3146257414482534e-05,6.712336410733405e-22,9.620345793868085e-22,0.0005580357392318547,-5.656806450854005e-20,-6.522153693858113e-20,-0.0001594387722434476,-0.00018601190822664648,-0.0,-0.0,-1.6940658945086007e-21,2.0832432251635763e-20,-0.0,-1.6940658945086007e-21,2.371692252312041e-20,6.712336410733405e-22,5.3146257414482534e-05,3.715322434077698e-20,0.0004650297632906586,-9.915918873652484e-21,-3.739859799811126e-22,-1.1814084314166442e-19,-0.0005580357392318547,-0.0,-0.0,1.614565275030445e-22,3.1169403424639428e-21,-0.0,-5.63326758865126e-22,7.818765705799002e-22,9.620345793868085e-22,3.715322434077698e-20,9.300595411332324e-05,4.0,4.0,8.0,8.0,0.04044704884290695,-0.011679687537252903,-0.011679687537252903,-0.0067925346083939075,-0.0067925346083939075,0.0009765625,0.0014062500558793545,0.0007812500116415322,0.0007812500116415322,0.0009765625,0.0007812500116415322,0.0007812500116415322,0.00032552084303461015,0.0004340277810115367,0.00032552084303461015,-0.011679687537252903,0.014622395858168602,0.0014062500558793545,0.0007812500116415322,0.0007812500116415322,-0.0029296875,-0.0009374999790452421,-0.0005208333604969084,-0.0005208333604969084,-0.0,9.100328967874142e-20,7.051737986469289e-20,1.0832554384250434e-19,2.0171203133889053e-20,9.720124414867616e-20,-0.011679687537252903,0.0014062500558793545,0.014622395858168602,0.0007812500116415322,0.0007812500116415322,-0.0,-0.0009374999790452421,9.092495955214177e-20,7.0595703528944e-20,-0.0029296875,-0.0005208333604969084,-0.0005208333604969084,1.2961564769536487e-19,4.1504614415460717e-20,1.1553770575396004e-19,-0.0067925346083939075,0.0007812500116415322,0.0007812500116415322,0.0035683284513652325,0.0004340277810115367,-0.0,-0.0,-0.00022321428696159273,2.3863254327772735e-20,-0.0,-0.00022321428696159273,2.710505431213761e-20,-0.00032552084303461015,-0.00012400794366840273,3.733635114240371e-20,-0.0067925346083939075,0.0007812500116415322,0.0007812500116415322,0.0004340277810115367,0.0035683284513652325,-0.0,-0.0,4.605057853440838e-21,-0.00022321428696159273,-0.0,9.598031102426368e-21,-0.00022321428696159273,6.776263578034403e-21,-0.00012400794366840273,-0.00032552084303461015,0.0009765625,-0.0029296875,-0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014062500558793545,-0.0009374999790452421,-0.0009374999790452421,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0005208333604969084,9.092495955214177e-20,-0.00022321428696159273,4.605057853440838e-21,-0.0,-0.0,0.00014880952949170023,-3.1335029378638266e-22,-0.0,-2.615952871085268e-20,1.8096846556827069e-22,-3.049318610115481e-20,-0.0,-5.819885573100136e-22,0.0007812500116415322,-0.0005208333604969084,7.0595703528944e-20,2.3863254327772735e-20,-0.00022321428696159273,-0.0,-0.0,-3.1335029378638266e-22,0.00014880952949170023,-0.0,1.5858956715975616e-22,-2.0328790734103208e-20,-4.5696917423121655e-22,-5.763200779997791e-21,-2.718979508848455e-20,0.0009765625,-0.0,-0.0029296875,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,9.100328967874142e-20,-0.0005208333604969084,-0.00022321428696159273,9.598031102426368e-21,-0.0,-0.0,-2.615952871085268e-20,1.5858956715975616e-22,-0.0,0.00014880952949170023,1.8096846556827069e-22,-3.7296953434556603e-20,-3.3881317890172014e-21,2.312764479007196e-22,0.0007812500116415322,7.051737986469289e-20,-0.0005208333604969084,2.710505431213761e-20,-0.00022321428696159273,-0.0,-0.0,1.8096846556827069e-22,-2.0328790734103208e-20,-0.0,1.8096846556827069e-22,0.00014880952949170023,2.639123429908584e-22,-8.470329472543003e-21,-3.324204621716204e-20,0.00032552084303461015,1.0832554384250434e-19,1.2961564769536487e-19,-0.00032552084303461015,6.776263578034403e-21,-0.0,-0.0,-3.049318610115481e-20,-4.5696917423121655e-22,-0.0,-3.7296953434556603e-20,2.639123429908584e-22,4.650297705666162e-05,6.712336410733405e-22,9.959639034389222e-23,0.0004340277810115367,2.0171203133889053e-20,4.1504614415460717e-20,-0.00012400794366840273,-0.00012400794366840273,-0.0,-0.0,-0.0,-5.763200779997791e-21,-0.0,-3.3881317890172014e-21,-8.470329472543003e-21,6.712336410733405e-22,3.543083948898129e-05,-1.0732676525811204e-20,0.00032552084303461015,9.720124414867616e-20,1.1553770575396004e-19,3.733635114240371e-20,-0.00032552084303461015,-0.0,-0.0,-5.819885573100136e-22,-2.718979508848455e-20,-0.0,2.312764479007196e-22,-3.324204621716204e-20,9.959639034389222e-23,-1.0732676525811204e-20,4.650297705666162e-05,4.0,5.0,3.0,3.0,0.1582142859697342,-0.05666666850447655,-0.04809523746371269,-0.06916666775941849,-0.06916666775941849,0.0055555556900799274,0.006666666828095913,0.009999999776482582,0.009999999776482582,0.003968254197388887,0.008333333767950535,0.008333333767950535,0.008333333767950535,0.012500000186264515,0.008333333767950535,-0.05666666850447655,0.07666666805744171,0.006666666828095913,0.009999999776482582,0.009999999776482582,-0.01666666753590107,-0.004444444552063942,-0.006666666828095913,-0.006666666828095913,-4.336808689942018e-19,0.0,-0.0,-0.0,-0.0,-0.0,-0.04809523746371269,0.006666666828095913,0.047857142984867096,0.008333333767950535,0.008333333767950535,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.007936508394777775,-0.004166666883975267,-0.004166666883975267,-0.0,-0.0,-0.0,-0.06916666775941849,0.009999999776482582,0.008333333767950535,0.1525000035762787,0.012500000186264515,-0.0,-0.0,-0.009999999776482582,-0.0,-0.0,-0.008333333767950535,-0.0,-0.05000000074505806,-0.012500000186264515,-2.7755575615628914e-17,-0.06916666775941849,0.009999999776482582,0.008333333767950535,0.012500000186264515,0.1525000035762787,-0.0,-0.0,-0.0,-0.009999999776482582,-0.0,-0.0,-0.008333333767950535,-2.7755575615628914e-17,-0.012500000186264515,-0.05000000074505806,0.0055555556900799274,-0.01666666753590107,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.004444444552063942,-0.0033333334140479565,-0.0,-0.0,-0.0,0.002222222276031971,-0.0,-0.0,2.168404344971009e-19,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.006666666828095913,-0.0,-0.009999999776482582,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.006666666828095913,-0.0,-0.0,-0.009999999776482582,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003968254197388887,-4.336808689942018e-19,-0.007936508394777775,-0.0,-0.0,-0.0,2.168404344971009e-19,-0.0,-0.0,0.0019841270986944437,-0.0,0.0,0.0,0.0,0.0,0.008333333767950535,0.0,-0.004166666883975267,-0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.004166666883975267,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.05000000074505806,-2.7755575615628914e-17,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.02500000037252903,-0.0,1.3877787807814457e-17,0.012500000186264515,-0.0,-0.0,-0.012500000186264515,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,0.008333333767950535,-0.0,-0.0,-2.7755575615628914e-17,-0.05000000074505806,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,1.3877787807814457e-17,-0.0,0.02500000037252903,4.0,5.0,3.0,4.0,0.12861904501914978,-0.04399999976158142,-0.03732142969965935,-0.05375000089406967,-0.04399999976158142,0.004166666883975267,0.004999999888241291,0.007499999832361937,0.006000000052154064,0.0029761905316263437,0.0062500000931322575,0.004999999888241291,0.0062500000931322575,0.007499999832361937,0.004166666883975267,-0.04399999976158142,0.05849999934434891,0.004999999888241291,0.007499999832361937,0.006000000052154064,-0.012500000186264515,-0.0033333334140479565,-0.004999999888241291,-0.004000000189989805,-1.3010426069826053e-18,0.0,-1.0842021724855044e-19,-0.0,-0.0,-0.0,-0.03732142969965935,0.004999999888241291,0.03651785850524902,0.0062500000931322575,0.004999999888241291,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0059523810632526875,-0.0031250000465661287,-0.0024999999441206455,-0.0,-0.0,-0.0,-0.05375000089406967,0.007499999832361937,0.0062500000931322575,0.11625000089406967,0.007499999832361937,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0062500000931322575,-0.0,-0.03750000149011612,-0.007499999832361937,-9.714451300033997e-18,-0.04399999976158142,0.006000000052154064,0.004999999888241291,0.007499999832361937,0.05849999934434891,-0.0,-1.0842021724855044e-19,-0.0,-0.004000000189989805,-1.7945415848108563e-19,-0.0,-0.0033333334140479565,-1.457167653646069e-17,-0.004999999888241291,-0.012500000186264515,0.004166666883975267,-0.012500000186264515,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-0.0024999999441206455,-0.0,-1.0842021724855044e-19,-0.0,0.0016666667070239782,-0.0,-0.0,6.505213034913027e-19,-0.0,5.421010862427522e-20,-0.0,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006000000052154064,-0.004000000189989805,-0.0,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0029761905316263437,-1.3010426069826053e-18,-0.0059523810632526875,-0.0,-1.7945415848108563e-19,-0.0,6.505213034913027e-19,-0.0,-0.0,0.0014880952658131719,-0.0,1.0842021724855044e-19,0.0,0.0,0.0,0.0062500000931322575,0.0,-0.0031250000465661287,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-1.0842021724855044e-19,-0.0024999999441206455,-0.0,-0.0033333334140479565,-0.0,5.421010862427522e-20,-0.0,-0.0,1.0842021724855044e-19,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,-0.0,-0.03750000149011612,-1.457167653646069e-17,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.01875000074505806,-0.0,4.8572256500169986e-18,0.007499999832361937,-0.0,-0.0,-0.007499999832361937,-0.004999999888241291,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,0.004166666883975267,-0.0,-0.0,-9.714451300033997e-18,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,4.8572256500169986e-18,-0.0,0.004166666883975267,4.0,5.0,3.0,5.0,0.10852380841970444,-0.035999998450279236,-0.030523808673024178,-0.04399999976158142,-0.030523808673024178,0.0033333334140479565,0.004000000189989805,0.006000000052154064,0.004000000189989805,0.0023809524718672037,0.004999999888241291,0.0033333334140479565,0.004999999888241291,0.004999999888241291,0.0023809524718672037,-0.035999998450279236,0.047333333641290665,0.004000000189989805,0.006000000052154064,0.004000000189989805,-0.009999999776482582,-0.0026666666381061077,-0.004000000189989805,-0.0026666666381061077,-8.43015910045559e-18,-6.6704820669398964e-18,-4.495102107863228e-18,-3.3306692062243676e-17,-6.661337998858429e-18,-8.620934246670533e-18,-0.030523808673024178,0.004000000189989805,0.029547618702054024,0.004999999888241291,0.0033333334140479565,-2.0900953218167362e-17,-0.0020000000949949026,-1.9009305590915044e-32,-5.421010862427522e-20,-0.004761904943734407,-0.0024999999441206455,-0.0016666667070239782,-6.956336942813081e-32,0.0,-8.972707924054281e-20,-0.04399999976158142,0.006000000052154064,0.004999999888241291,0.09399999678134918,0.004999999888241291,-3.5633716561477854e-17,-1.7140221083965636e-32,-0.006000000052154064,-9.14387340321781e-21,-0.0,-0.004999999888241291,-1.1868081900753643e-32,-0.029999999329447746,-0.004999999888241291,-4.779869787082571e-18,-0.030523808673024178,0.004000000189989805,0.0033333334140479565,0.004999999888241291,0.029547618702054024,-2.0900953218167362e-17,7.053845681444165e-21,-1.9009305590915044e-32,-0.0020000000949949026,1.0029733756060952e-20,-5.421010862427522e-20,-0.0016666667070239782,-9.516197613900963e-18,-0.0024999999441206455,-0.004761904943734407,0.0033333334140479565,-0.009999999776482582,-2.0900953218167362e-17,-3.5633716561477854e-17,-2.0900953218167362e-17,0.0033333334140479565,2.0210994011021063e-18,3.031648998255583e-18,2.0210994011021063e-18,3.1720658023686032e-18,2.2204459996194763e-18,1.4802974020113686e-18,1.1102230411687688e-17,2.2204459996194763e-18,3.1720658023686032e-18,0.004000000189989805,-0.0026666666381061077,-0.0020000000949949026,-1.7140221083965636e-32,7.053845681444165e-21,2.0210994011021063e-18,0.0013333333190530539,1.8381791074273598e-33,-3.8558503732179684e-22,-5.421010862427522e-19,-0.0,-0.0,6.728297503972486e-33,4.631785696865674e-34,-1.4886132942786085e-21,0.006000000052154064,-0.004000000189989805,-1.9009305590915044e-32,-0.006000000052154064,-1.9009305590915044e-32,3.031648998255583e-18,1.8381791074273598e-33,0.004000000189989805,1.8381791074273598e-33,2.8849770306437616e-33,2.0194838663493354e-33,1.3463226081780557e-33,1.0097419331746677e-32,2.0194838663493354e-33,2.8849770306437616e-33,0.004000000189989805,-0.0026666666381061077,-5.421010862427522e-20,-9.14387340321781e-21,-0.0020000000949949026,2.0210994011021063e-18,-3.8558503732179684e-22,1.8381791074273598e-33,0.0013333333190530539,-9.180596102667973e-22,4.571936701608905e-21,2.710505431213761e-20,6.0470537119488456e-33,-0.0,-4.4614296530777255e-19,0.0023809524718672037,-8.43015910045559e-18,-0.004761904943734407,-0.0,1.0029733756060952e-20,3.1720658023686032e-18,-5.421010862427522e-19,2.8849770306437616e-33,-9.180596102667973e-22,0.0011904762359336019,-0.0,0.0,1.0557207334915091e-32,1.0296377002465786e-35,-1.9891135045777013e-21,0.004999999888241291,-6.6704820669398964e-18,-0.0024999999441206455,-0.004999999888241291,-5.421010862427522e-20,2.2204459996194763e-18,-0.0,2.0194838663493354e-33,4.571936701608905e-21,-0.0,0.0024999999441206455,-0.0,7.396257475147866e-33,0.0,1.0885564383052865e-20,0.0033333334140479565,-4.495102107863228e-18,-0.0016666667070239782,-1.1868081900753643e-32,-0.0016666667070239782,1.4802974020113686e-18,-0.0,1.3463226081780557e-33,2.710505431213761e-20,0.0,-0.0,0.0008333333535119891,4.924299017202154e-33,-0.0,4.4863539620271407e-20,0.004999999888241291,-3.3306692062243676e-17,-6.956336942813081e-32,-0.029999999329447746,-9.516197613900963e-18,1.1102230411687688e-17,6.728297503972486e-33,1.0097419331746677e-32,6.0470537119488456e-33,1.0557207334915091e-32,7.396257475147866e-33,4.924299017202154e-33,0.014999999664723873,7.51112678311022e-33,2.3790494034752407e-18,0.004999999888241291,-6.661337998858429e-18,0.0,-0.004999999888241291,-0.0024999999441206455,2.2204459996194763e-18,4.631785696865674e-34,2.0194838663493354e-33,-0.0,1.0296377002465786e-35,0.0,-0.0,7.51112678311022e-33,0.0024999999441206455,1.7001312549186981e-34,0.0023809524718672037,-8.620934246670533e-18,-8.972707924054281e-20,-4.779869787082571e-18,-0.004761904943734407,3.1720658023686032e-18,-1.4886132942786085e-21,2.8849770306437616e-33,-4.4614296530777255e-19,-1.9891135045777013e-21,1.0885564383052865e-20,4.4863539620271407e-20,2.3790494034752407e-18,1.7001312549186981e-34,0.0011904762359336019,4.0,5.0,3.0,6.0,0.09392856806516647,-0.030476190149784088,-0.025833332911133766,-0.037261903285980225,-0.022440476343035698,0.0027777778450399637,0.0033333334140479565,0.004999999888241291,0.0028571428265422583,0.0019841270986944437,0.004166666883975267,0.0023809524718672037,0.004166666883975267,0.0035714285913854837,0.0014880952658131719,-0.030476190149784088,0.03976190462708473,0.0033333334140479565,0.004999999888241291,0.0028571428265422583,-0.008333333767950535,-0.002222222276031971,-0.0033333334140479565,-0.0019047618843615055,-1.0842021724855044e-19,-0.0,-0.0,-1.7870313278421666e-33,-0.0,-8.784667411095045e-19,-0.025833332911133766,0.0033333334140479565,0.024821428582072258,0.004166666883975267,0.0023809524718672037,-0.0,-0.0016666667070239782,-0.0,-0.0,-0.003968254197388887,-0.0020833334419876337,-0.0011904762359336019,7.703719777548943e-34,-0.0,-0.0,-0.037261903285980225,0.004999999888241291,0.004166666883975267,0.07892857491970062,0.0035714285913854837,-0.0,1.2426906703470152e-35,-0.004999999888241291,-1.439566585340622e-33,-0.0,-0.004166666883975267,5.530171488983512e-34,-0.02500000037252903,-0.0035714285913854837,-2.7259939745935103e-18,-0.022440476343035698,0.0028571428265422583,0.0023809524718672037,0.0035714285913854837,0.01716071367263794,-0.0,6.640815983903112e-21,-0.0,-0.0011428571306169033,-2.2899366367020764e-21,-0.0,-0.0009523809421807528,-6.814985143278929e-18,-0.0014285714132711291,-0.0022321429569274187,0.0027777778450399637,-0.008333333767950535,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.002222222276031971,-0.0016666667070239782,1.2426906703470152e-35,6.640815983903112e-21,-0.0,0.0011111111380159855,-0.0,-0.0,5.421010862427522e-20,-0.0,-0.0,-6.213453351735076e-36,-0.0,-1.2237375817285198e-21,0.004999999888241291,-0.0033333334140479565,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0019047618843615055,-0.0,-1.439566585340622e-33,-0.0011428571306169033,-0.0,-0.0,-0.0,0.0007619047537446022,-0.0,0.0,-0.0,7.19783292670311e-34,-0.0,3.5236570605778894e-19,0.0019841270986944437,-1.0842021724855044e-19,-0.003968254197388887,-0.0,-2.2899366367020764e-21,-0.0,5.421010862427522e-20,-0.0,-0.0,0.0009920635493472219,-0.0,0.0,-1.4793936483420198e-35,0.0,4.219784851627823e-22,0.004166666883975267,-0.0,-0.0020833334419876337,-0.004166666883975267,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0020833334419876337,-0.0,-5.4267191038967566e-36,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0011904762359336019,5.530171488983512e-34,-0.0009523809421807528,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0004761904710903764,-2.765085744491756e-34,-0.0,-0.0,0.004166666883975267,-1.7870313278421666e-33,7.703719777548943e-34,-0.02500000037252903,-6.814985143278929e-18,-0.0,-6.213453351735076e-36,-0.0,7.19783292670311e-34,-1.4793936483420198e-35,-5.4267191038967566e-36,-2.765085744491756e-34,0.012500000186264515,-0.0,1.3629969872967551e-18,0.0035714285913854837,-0.0,-0.0,-0.0035714285913854837,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,0.0014880952658131719,-8.784667411095045e-19,-0.0,-2.7259939745935103e-18,-0.0022321429569274187,-0.0,-1.2237375817285198e-21,-0.0,3.5236570605778894e-19,4.219784851627823e-22,-0.0,-0.0,1.3629969872967551e-18,-0.0,0.00044642857392318547,4.0,5.0,3.0,7.0,0.08282596617937088,-0.026428570970892906,-0.022397959604859352,-0.03232142701745033,-0.017202381044626236,0.0023809524718672037,0.0028571428265422583,0.004285714123398066,0.002142857061699033,0.001700680237263441,0.0035714285913854837,0.0017857142956927419,0.0035714285913854837,0.0026785715017467737,0.0009920635493472219,-0.026428570970892906,0.034285712987184525,0.0028571428265422583,0.004285714123398066,0.002142857061699033,-0.0071428571827709675,-0.0019047618843615055,-0.0028571428265422583,-0.0014285714132711291,-1.4576398083397142e-17,-1.813062112197009e-17,-4.916702004011093e-18,-4.1078252440526384e-17,-7.137148417220875e-18,3.6251934807687736e-19,-0.022397959604859352,0.0028571428265422583,0.021403061226010323,0.0035714285913854837,0.0017857142956927419,-2.5985260212255175e-17,-0.0014285714132711291,-1.4025062352795848e-17,9.24430582809662e-19,-0.003401360474526882,-0.0017857142956927419,-0.0008928571478463709,-2.836733192689353e-17,-1.189524624189438e-19,2.0517727057816445e-18,-0.03232142701745033,0.004285714123398066,0.0035714285913854837,0.06803571432828903,0.0026785715017467737,-4.1187006838742406e-17,-1.5130753023234255e-17,-0.004285714123398066,2.474211363070638e-18,-1.6809790700373992e-17,-0.0035714285913854837,7.930164376674537e-20,-0.02142857201397419,-0.0026785715017467737,7.797995416298677e-18,-0.017202381044626236,0.002142857061699033,0.0017857142956927419,0.0026785715017467737,0.010892856866121292,-4.592698253206216e-18,-1.998401358298498e-18,-2.7596972418568302e-18,-0.0007142857066355646,3.34649337813766e-18,6.542385704460547e-18,-0.0005952381179668009,2.6447098309300682e-17,-0.0008928571478463709,-0.0011904762359336019,0.0023809524718672037,-0.0071428571827709675,-2.5985260212255175e-17,-4.1187006838742406e-17,-4.592698253206216e-18,0.0023809524718672037,2.4450081651347597e-18,3.667512454497293e-18,5.946364643193373e-19,3.3986419458803e-18,3.965082408057119e-18,1.05735530192206e-18,1.0309214012794325e-17,1.5860329011843016e-18,-4.4056469836361075e-20,0.0028571428265422583,-0.0019047618843615055,-0.0014285714132711291,-1.5130753023234255e-17,-1.998401358298498e-18,2.4450081651347597e-18,0.0009523809421807528,1.5225915603215112e-18,3.806478900803778e-19,1.812608941298422e-18,1.5860329011843016e-18,4.758098496757752e-19,3.806478797406201e-18,4.758098496757752e-19,-2.597098831469368e-33,0.004285714123398066,-0.0028571428265422583,-1.4025062352795848e-17,-0.004285714123398066,-2.7596972418568302e-18,3.667512454497293e-18,1.5225915603215112e-18,0.0028571428265422583,5.709718609699608e-19,1.812608941298422e-18,2.4288961343682987e-18,4.758098496757752e-19,7.612957594812403e-18,9.516196993515503e-19,-4.208612138673466e-33,0.002142857061699033,-0.0014285714132711291,9.24430582809662e-19,2.474211363070638e-18,-0.0007142857066355646,5.946364643193373e-19,3.806478900803778e-19,5.709718609699608e-19,0.0004761904710903764,-4.531522353246055e-19,1.8915922850317783e-33,-6.797030908634721e-35,-1.9032393987031007e-18,-7.631484386952842e-35,-1.3552527156068805e-19,0.001700680237263441,-1.4576398083397142e-17,-0.003401360474526882,-1.6809790700373992e-17,3.34649337813766e-18,3.3986419458803e-18,1.812608941298422e-18,1.812608941298422e-18,-4.531522353246055e-19,0.0008503401186317205,1.3810354183122756e-18,-1.0609516764302874e-19,5.664403380997269e-18,1.7715467611639754e-33,-3.146890767220705e-19,0.0035714285913854837,-1.813062112197009e-17,-0.0017857142956927419,-0.0035714285913854837,6.542385704460547e-18,3.965082408057119e-18,1.5860329011843016e-18,2.4288961343682987e-18,1.8915922850317783e-33,1.3810354183122756e-18,0.0017857142956927419,-3.965082252960754e-19,5.489436366927597e-32,-5.947623508688102e-19,-7.930164505921508e-19,0.0017857142956927419,-4.916702004011093e-18,-0.0008928571478463709,7.930164376674537e-20,-0.0005952381179668009,1.05735530192206e-18,4.758098496757752e-19,4.758098496757752e-19,-6.797030908634721e-35,-1.0609516764302874e-19,-3.965082252960754e-19,0.00029761905898340046,6.98149604840373e-33,-3.8780628517157505e-34,-1.1732166870246066e-35,0.0035714285913854837,-4.1078252440526384e-17,-2.836733192689353e-17,-0.02142857201397419,2.6447098309300682e-17,1.0309214012794325e-17,3.806478797406201e-18,7.612957594812403e-18,-1.9032393987031007e-18,5.664403380997269e-18,5.489436366927597e-32,6.98149604840373e-33,0.010714286006987095,-2.9738117026452626e-18,-3.105981102460823e-18,0.0026785715017467737,-7.137148417220875e-18,-1.189524624189438e-19,-0.0026785715017467737,-0.0008928571478463709,1.5860329011843016e-18,4.758098496757752e-19,9.516196993515503e-19,-7.631484386952842e-35,1.7715467611639754e-33,-5.947623508688102e-19,-3.8780628517157505e-34,-2.9738117026452626e-18,0.0008928571478463709,8.924644115171257e-35,0.0009920635493472219,3.6251934807687736e-19,2.0517727057816445e-18,7.797995416298677e-18,-0.0011904762359336019,-4.4056469836361075e-20,-2.597098831469368e-33,-4.208612138673466e-33,-1.3552527156068805e-19,-3.146890767220705e-19,-7.930164505921508e-19,-1.1732166870246066e-35,-3.105981102460823e-18,8.924644115171257e-35,0.00019841270113829523,4.0,5.0,3.0,8.0,0.07408729940652847,-0.023333333432674408,-0.019771825522184372,-0.028541667386889458,-0.013611110858619213,0.0020833334419876337,0.0024999999441206455,0.0037499999161809683,0.0016666667070239782,0.0014880952658131719,0.0031250000465661287,0.0013888889225199819,0.0031250000465661287,0.0020833334419876337,0.0006944444612599909,-0.023333333432674408,0.030138889327645302,0.0024999999441206455,0.0037499999161809683,0.0016666667070239782,-0.0062500000931322575,-0.0016666667070239782,-0.0024999999441206455,-0.0011111111380159855,3.0357660829594124e-18,4.7704895589362195e-18,3.2526065174565133e-19,1.9949319973733282e-17,1.1926223897340549e-18,-4.7704895589362195e-18,-0.019771825522184372,0.0024999999441206455,0.018814483657479286,0.0031250000465661287,0.0013888889225199819,9.034715631668547e-18,-0.0012499999720603228,1.1926223897340549e-18,-3.7947076036992655e-19,-0.0029761905316263437,-0.0015625000232830644,-0.0006944444612599909,6.071532165918825e-18,-5.963111948670274e-19,-2.846030702774449e-18,-0.028541667386889458,0.0037499999161809683,0.0031250000465661287,0.05979166552424431,0.0020833334419876337,2.1715195071578836e-17,8.53528744905891e-19,-0.0037499999161809683,-3.7947076036992655e-19,3.661100563979088e-18,-0.0031250000465661287,-3.9302328752599536e-19,-0.01875000074505806,-0.0020833334419876337,-4.9873299934333204e-18,-0.013611110858619213,0.0016666667070239782,0.0013888889225199819,0.0020833334419876337,0.007361111231148243,-5.5294310796760726e-18,-3.385987736869464e-18,-4.290630918655939e-18,-0.0004761904710903764,-2.1882864581743334e-18,-3.982850247614758e-18,-0.00039682540227659047,-1.2527292207910369e-17,-0.0005952381179668009,-0.0006944444612599909,0.0020833334419876337,-0.0062500000931322575,9.034715631668547e-18,2.1715195071578836e-17,-5.5294310796760726e-18,0.0020833334419876337,-2.0337205228884404e-18,-3.144035339746172e-18,6.087065997437111e-19,-7.180415236533804e-19,-1.6981270411235063e-18,-2.462079828809359e-19,-5.5502888524119035e-18,-4.426333413662866e-19,7.047314121155779e-19,0.0024999999441206455,-0.0016666667070239782,-0.0012499999720603228,8.53528744905891e-19,-3.385987736869464e-18,-2.0337205228884404e-18,0.0008333333535119891,-2.168404344971009e-19,1.315847769929415e-19,-2.0320084658156088e-19,7.124731505648265e-20,5.427356888689452e-20,-5.673115867594137e-19,1.412265234598303e-19,3.7947076036992655e-19,0.0037499999161809683,-0.0024999999441206455,1.1926223897340549e-18,-0.0037499999161809683,-4.290630918655939e-18,-3.144035339746172e-18,-2.168404344971009e-19,0.0024999999441206455,1.990313263817137e-19,-3.5236570605778894e-19,8.19714661289883e-20,1.184694018659099e-19,-2.8793772483986056e-18,-4.314844718233262e-19,5.692061405548898e-19,0.0016666667070239782,-0.0011111111380159855,-3.7947076036992655e-19,-3.7947076036992655e-19,-0.0004761904710903764,6.087065997437111e-19,1.315847769929415e-19,1.990313263817137e-19,0.0003174603043589741,-0.0,7.522628644741e-20,3.409116004064479e-20,-1.7157607740243352e-19,6.204498890296704e-20,1.8973538018496328e-19,0.0014880952658131719,3.0357660829594124e-18,-0.0029761905316263437,3.661100563979088e-18,-2.1882864581743334e-18,-7.180415236533804e-19,-2.0320084658156088e-19,-3.5236570605778894e-19,-0.0,0.0007440476329065859,1.5027537529797465e-19,-1.6557688538640733e-19,-1.795170112829426e-18,8.832208065837882e-20,3.2526065174565133e-19,0.0031250000465661287,4.7704895589362195e-18,-0.0015625000232830644,-0.0031250000465661287,-3.982850247614758e-18,-1.6981270411235063e-18,7.124731505648265e-20,8.19714661289883e-20,7.522628644741e-20,1.5027537529797465e-19,0.0015625000232830644,1.6263032587282567e-19,2.486930919349866e-18,-5.54123704081813e-20,4.87890977618477e-19,0.0013888889225199819,3.2526065174565133e-19,-0.0006944444612599909,-3.9302328752599536e-19,-0.00039682540227659047,-2.462079828809359e-19,5.427356888689452e-20,1.184694018659099e-19,3.409116004064479e-20,-1.6557688538640733e-19,1.6263032587282567e-19,0.00019841270113829523,-1.441704204858153e-19,4.886925220943894e-20,1.2197274440461925e-19,0.0031250000465661287,1.9949319973733282e-17,6.071532165918825e-18,-0.01875000074505806,-1.2527292207910369e-17,-5.5502888524119035e-18,-5.673115867594137e-19,-2.8793772483986056e-18,-1.7157607740243352e-19,-1.795170112829426e-18,2.486930919349866e-18,-1.441704204858153e-19,0.00937500037252903,2.6834003769016235e-18,1.1926223897340549e-18,0.0020833334419876337,1.1926223897340549e-18,-5.963111948670274e-19,-0.0020833334419876337,-0.0005952381179668009,-4.426333413662866e-19,1.412265234598303e-19,-4.314844718233262e-19,6.204498890296704e-20,8.832208065837882e-20,-5.54123704081813e-20,4.886925220943894e-20,2.6834003769016235e-18,0.0005952381179668009,2.168404344971009e-19,0.0006944444612599909,-4.7704895589362195e-18,-2.846030702774449e-18,-4.9873299934333204e-18,-0.0006944444612599909,7.047314121155779e-19,3.7947076036992655e-19,5.692061405548898e-19,1.8973538018496328e-19,3.2526065174565133e-19,4.87890977618477e-19,1.2197274440461925e-19,1.1926223897340549e-18,2.168404344971009e-19,9.920635056914762e-05,4.0,5.0,4.0,3.0,0.12861904501914978,-0.04399999976158142,-0.03732142969965935,-0.04399999976158142,-0.05375000089406967,0.004166666883975267,0.004999999888241291,0.006000000052154064,0.007499999832361937,0.0029761905316263437,0.004999999888241291,0.0062500000931322575,0.004166666883975267,0.007499999832361937,0.0062500000931322575,-0.04399999976158142,0.05849999934434891,0.004999999888241291,0.006000000052154064,0.007499999832361937,-0.012500000186264515,-0.0033333334140479565,-0.004000000189989805,-0.004999999888241291,-1.0842021724855044e-18,-1.0842021724855044e-19,-0.0,-0.0,-0.0,-0.0,-0.03732142969965935,0.004999999888241291,0.03651785850524902,0.004999999888241291,0.0062500000931322575,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0059523810632526875,-0.0024999999441206455,-0.0031250000465661287,-0.0,-0.0,-0.0,-0.04399999976158142,0.006000000052154064,0.004999999888241291,0.05849999934434891,0.007499999832361937,-0.0,-1.0842021724855044e-19,-0.004000000189989805,-0.0,-2.168404344971009e-19,-0.0033333334140479565,5.140911997380582e-19,-0.012500000186264515,-0.004999999888241291,-0.0,-0.05375000089406967,0.007499999832361937,0.0062500000931322575,0.007499999832361937,0.11625000089406967,-0.0,-0.0,-0.0,-0.007499999832361937,3.956759975893161e-20,5.140911997380582e-19,-0.0062500000931322575,-0.0,-0.007499999832361937,-0.03750000149011612,0.004166666883975267,-0.012500000186264515,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.004999999888241291,-0.0033333334140479565,-0.0024999999441206455,-1.0842021724855044e-19,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,5.421010862427522e-19,5.421010862427522e-20,-0.0,-0.0,-0.0,-0.0,0.006000000052154064,-0.004000000189989805,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.004999999888241291,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0029761905316263437,-1.0842021724855044e-18,-0.0059523810632526875,-2.168404344971009e-19,3.956759975893161e-20,-0.0,5.421010862427522e-19,-0.0,-0.0,0.0014880952658131719,1.0842021724855044e-19,0.0,0.0,0.0,-0.0,0.004999999888241291,-1.0842021724855044e-19,-0.0024999999441206455,-0.0033333334140479565,5.140911997380582e-19,-0.0,5.421010862427522e-20,-0.0,-0.0,1.0842021724855044e-19,0.0016666667070239782,-2.570455998690291e-19,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,-0.0031250000465661287,5.140911997380582e-19,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,0.0,-2.570455998690291e-19,0.0031250000465661287,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,0.007499999832361937,-0.0,-0.0,-0.004999999888241291,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,0.0062500000931322575,-0.0,-0.0,-0.0,-0.03750000149011612,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.01875000074505806,4.0,5.0,4.0,4.0,0.10421428829431534,-0.03412500023841858,-0.028928572311997414,-0.03412500023841858,-0.03412500023841858,0.0031250000465661287,0.0037499999161809683,0.0044999998062849045,0.0044999998062849045,0.0022321429569274187,0.0037499999161809683,0.0037499999161809683,0.0031250000465661287,0.0044999998062849045,0.0031250000465661287,-0.03412500023841858,0.04462499916553497,0.0037499999161809683,0.0044999998062849045,0.0044999998062849045,-0.00937500037252903,-0.0024999999441206455,-0.003000000026077032,-0.003000000026077032,8.673617379884035e-19,0.0,0.0,-0.0,-0.0,-0.0,-0.028928572311997414,0.0037499999161809683,0.027857143431901932,0.0037499999161809683,0.0037499999161809683,-0.0,-0.0018749999580904841,-0.0,-0.0,-0.004464285913854837,-0.0018749999580904841,-0.0018749999580904841,-0.0,-0.0,-0.0,-0.03412500023841858,0.0044999998062849045,0.0037499999161809683,0.04462499916553497,0.0044999998062849045,-0.0,-0.0,-0.003000000026077032,-0.0,1.0842021724855044e-19,-0.0024999999441206455,-3.330669102826791e-19,-0.00937500037252903,-0.003000000026077032,-0.0,-0.03412500023841858,0.0044999998062849045,0.0037499999161809683,0.0044999998062849045,0.04462499916553497,-0.0,-0.0,-0.0,-0.003000000026077032,1.1485065470705232e-19,-3.330669102826791e-19,-0.0024999999441206455,-0.0,-0.003000000026077032,-0.00937500037252903,0.0031250000465661287,-0.00937500037252903,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0037499999161809683,-0.0024999999441206455,-0.0018749999580904841,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0,-0.0,-4.336808689942018e-19,-0.0,-0.0,-0.0,-0.0,-0.0,0.0044999998062849045,-0.003000000026077032,-0.0,-0.003000000026077032,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0044999998062849045,-0.003000000026077032,-0.0,-0.0,-0.003000000026077032,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0022321429569274187,8.673617379884035e-19,-0.004464285913854837,1.0842021724855044e-19,1.1485065470705232e-19,-0.0,-4.336808689942018e-19,-0.0,-0.0,0.0011160714784637094,-5.421010862427522e-20,-5.421010862427522e-20,0.0,0.0,-0.0,0.0037499999161809683,0.0,-0.0018749999580904841,-0.0024999999441206455,-3.330669102826791e-19,-0.0,-0.0,-0.0,-0.0,-5.421010862427522e-20,0.0012499999720603228,1.6653345514133955e-19,-0.0,-0.0,-0.0,0.0037499999161809683,0.0,-0.0018749999580904841,-3.330669102826791e-19,-0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-5.421010862427522e-20,1.6653345514133955e-19,0.0012499999720603228,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,0.0044999998062849045,-0.0,-0.0,-0.003000000026077032,-0.003000000026077032,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.00937500037252903,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,4.0,5.0,4.0,5.0,0.08774285763502121,-0.027899999171495438,-0.023642856627702713,-0.027899999171495438,-0.023642856627702713,0.0024999999441206455,0.003000000026077032,0.003599999938160181,0.003000000026077032,0.0017857142956927419,0.003000000026077032,0.0024999999441206455,0.0024999999441206455,0.003000000026077032,0.0017857142956927419,-0.027899999171495438,0.03610000014305115,0.003000000026077032,0.003599999938160181,0.003000000026077032,-0.007499999832361937,-0.0020000000949949026,-0.002400000113993883,-0.0020000000949949026,7.589415207398531e-19,1.0842021724855044e-19,-5.421010862427522e-20,-0.0,2.886851549016058e-19,8.918445263611715e-19,-0.023642856627702713,0.003000000026077032,0.022535713389515877,0.003000000026077032,0.0024999999441206455,-0.0,-0.001500000013038516,-0.0,-2.710505431213761e-20,-0.0035714285913854837,-0.001500000013038516,-0.0012499999720603228,-0.0,2.168404344971009e-19,-9.907364501337236e-20,-0.027899999171495438,0.003599999938160181,0.003000000026077032,0.03610000014305115,0.003000000026077032,-0.0,1.0842021724855044e-19,-0.002400000113993883,2.886851549016058e-19,2.168404344971009e-19,-0.0020000000949949026,1.2809086463633268e-20,-0.007499999832361937,-0.0020000000949949026,8.849587647495504e-19,-0.023642856627702713,0.003000000026077032,0.0024999999441206455,0.003000000026077032,0.022535713389515877,-0.0,-2.0260212291443734e-20,-0.0,-0.001500000013038516,-3.107830006226244e-20,-2.0403134884126119e-19,-0.0012499999720603228,-0.0,-0.001500000013038516,-0.0035714285913854837,0.0024999999441206455,-0.007499999832361937,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,-0.0020000000949949026,-0.001500000013038516,1.0842021724855044e-19,-2.0260212291443734e-20,-0.0,0.0010000000474974513,-0.0,-3.806902381252882e-37,-3.7947076036992655e-19,-5.421010862427522e-20,1.3552527156068805e-20,-0.0,-0.0,-1.5735270394230673e-21,0.003599999938160181,-0.002400000113993883,-0.0,-0.002400000113993883,-0.0,-0.0,-0.0,0.0015999999595806003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,-0.0020000000949949026,-2.710505431213761e-20,2.886851549016058e-19,-0.001500000013038516,-0.0,-3.806902381252882e-37,-0.0,0.0010000000474974513,-9.064053160578621e-37,3.009265538105056e-36,1.3552527156068805e-20,-0.0,-1.443425774508029e-19,-4.443487071615685e-19,0.0017857142956927419,7.589415207398531e-19,-0.0035714285913854837,2.168404344971009e-19,-3.107830006226244e-20,-0.0,-3.7947076036992655e-19,-0.0,-9.064053160578621e-37,0.0008928571478463709,-1.0842021724855044e-19,0.0,0.0,-6.018531076210112e-36,5.425955447630157e-22,0.003000000026077032,1.0842021724855044e-19,-0.001500000013038516,-0.0020000000949949026,-2.0403134884126119e-19,-0.0,-5.421010862427522e-20,-0.0,3.009265538105056e-36,-1.0842021724855044e-19,0.0010000000474974513,1.0201567442063059e-19,-0.0,-1.7696898129933497e-35,4.980853465260827e-36,0.0024999999441206455,-5.421010862427522e-20,-0.0012499999720603228,1.2809086463633268e-20,-0.0012499999720603228,-0.0,1.3552527156068805e-20,-0.0,1.3552527156068805e-20,0.0,1.0201567442063059e-19,0.0006249999860301614,-0.0,-1.0842021724855044e-19,4.953682250668618e-20,0.0024999999441206455,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,0.003000000026077032,2.886851549016058e-19,2.168404344971009e-19,-0.0020000000949949026,-0.001500000013038516,-0.0,-0.0,-0.0,-1.443425774508029e-19,-6.018531076210112e-36,-1.7696898129933497e-35,-1.0842021724855044e-19,-0.0,0.0010000000474974513,-4.424793823747752e-19,0.0017857142956927419,8.918445263611715e-19,-9.907364501337236e-20,8.849587647495504e-19,-0.0035714285913854837,-0.0,-1.5735270394230673e-21,-0.0,-4.443487071615685e-19,5.425955447630157e-22,4.980853465260827e-36,4.953682250668618e-20,-0.0,-4.424793823747752e-19,0.0008928571478463709,4.0,5.0,4.0,6.0,0.07582738250494003,-0.02360714226961136,-0.019999999552965164,-0.02360714226961136,-0.0173660721629858,0.0020833334419876337,0.0024999999441206455,0.003000000026077032,0.002142857061699033,0.0014880952658131719,0.0024999999441206455,0.0017857142956927419,0.0020833334419876337,0.002142857061699033,0.0011160714784637094,-0.02360714226961136,0.030321428552269936,0.0024999999441206455,0.003000000026077032,0.002142857061699033,-0.0062500000931322575,-0.0016666667070239782,-0.0020000000949949026,-0.0014285714132711291,-6.641282694714351e-19,-5.421010862427522e-20,-0.0,-0.0,2.4024669900141935e-19,4.781315388600584e-19,-0.019999999552965164,0.0024999999441206455,0.018928570672869682,0.0024999999441206455,0.0017857142956927419,-0.0,-0.0012499999720603228,-0.0,-2.710505431213761e-20,-0.0029761905316263437,-0.0012499999720603228,-0.0008928571478463709,-0.0,1.8634724839594607e-19,-4.671792668842471e-20,-0.02360714226961136,0.003000000026077032,0.0024999999441206455,0.030321428552269936,0.002142857061699033,-0.0,-5.421010862427522e-20,-0.0020000000949949026,2.4024669900141935e-19,-1.0842021724855044e-19,-0.0016666667070239782,3.5014813823311084e-19,-0.0062500000931322575,-0.0014285714132711291,5.4254073273832415e-19,-0.0173660721629858,0.002142857061699033,0.0017857142956927419,0.002142857061699033,0.01308482140302658,-0.0,3.185427100553569e-21,-0.0,-0.0008571428479626775,-3.371380371871044e-21,1.6380088983716477e-19,-0.0007142857066355646,-0.0,-0.0008571428479626775,-0.0016741071594879031,0.0020833334419876337,-0.0062500000931322575,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0016666667070239782,-0.0012499999720603228,-5.421010862427522e-20,3.185427100553569e-21,-0.0,0.0008333333535119891,-0.0,2.2859683508044526e-21,3.2526065174565133e-19,2.710505431213761e-20,-0.0,-0.0,5.64237288394698e-37,-1.2188660816488541e-21,0.003000000026077032,-0.0020000000949949026,-0.0,-0.0020000000949949026,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,-2.710505431213761e-20,2.4024669900141935e-19,-0.0008571428479626775,-0.0,2.2859683508044526e-21,-0.0,0.0005714285653084517,5.4427821915264325e-21,-0.0,-0.0,-0.0,-9.609867701562833e-20,-1.9027753245300643e-19,0.0014880952658131719,-6.641282694714351e-19,-0.0029761905316263437,-1.0842021724855044e-19,-3.371380371871044e-21,-0.0,3.2526065174565133e-19,-0.0,5.4427821915264325e-21,0.0007440476329065859,5.421010862427522e-20,0.0,0.0,-6.018531076210112e-36,1.1160051829307656e-20,0.0024999999441206455,-5.421010862427522e-20,-0.0012499999720603228,-0.0016666667070239782,1.6380088983716477e-19,-0.0,2.710505431213761e-20,-0.0,-0.0,5.421010862427522e-20,0.0008333333535119891,-8.190044491858238e-20,-0.0,1.7093353814253551e-35,-0.0,0.0017857142956927419,-0.0,-0.0008928571478463709,3.5014813823311084e-19,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0,-8.190044491858238e-20,0.0003571428533177823,-0.0,-7.453889935837843e-20,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,0.002142857061699033,2.4024669900141935e-19,1.8634724839594607e-19,-0.0014285714132711291,-0.0008571428479626775,-0.0,5.64237288394698e-37,-0.0,-9.609867701562833e-20,-6.018531076210112e-36,1.7093353814253551e-35,-7.453889935837843e-20,-0.0,0.0005714285653084517,-2.1701631377484497e-19,0.0011160714784637094,4.781315388600584e-19,-4.671792668842471e-20,5.4254073273832415e-19,-0.0016741071594879031,-0.0,-1.2188660816488541e-21,-0.0,-1.9027753245300643e-19,1.1160051829307656e-20,-0.0,-0.0,-0.0,-2.1701631377484497e-19,0.0003348214377183467,4.0,5.0,4.0,7.0,0.06678911298513412,-0.02046428620815277,-0.017334183678030968,-0.02046428620815277,-0.013303571380674839,0.0017857142956927419,0.002142857061699033,0.0025714286603033543,0.0016071428544819355,0.0012755101779475808,0.002142857061699033,0.0013392857508733869,0.0017857142956927419,0.0016071428544819355,0.0007440476329065859,-0.02046428620815277,0.02614285796880722,0.002142857061699033,0.0025714286603033543,0.0016071428544819355,-0.0053571430034935474,-0.0014285714132711291,-0.001714285695925355,-0.0010714285308495164,-0.0,0.0,-2.0328790734103208e-20,-0.0,-0.0,-3.4402567691876865e-20,-0.017334183678030968,0.002142857061699033,0.016320152208209038,0.002142857061699033,0.0013392857508733869,-0.0,-0.0010714285308495164,-0.0,-2.0328790734103208e-20,-0.0025510203558951616,-0.0010714285308495164,-0.0006696428754366934,0.0,0.0,4.691259524453597e-21,-0.02046428620815277,0.0025714286603033543,0.002142857061699033,0.02614285796880722,0.0016071428544819355,-0.0,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0053571430034935474,-0.0010714285308495164,-0.0,-0.013303571380674839,0.0016071428544819355,0.0013392857508733869,0.0016071428544819355,0.008303571492433548,0.0,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.00044642857392318547,-0.0,-0.0005357142654247582,-0.0008928571478463709,0.0017857142956927419,-0.0053571430034935474,-0.0,-0.0,0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025714286603033543,-0.001714285695925355,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0010714285308495164,-2.0328790734103208e-20,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,6.776263578034403e-21,-0.0,-0.0,1.1467523102488e-20,0.0012755101779475808,-0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,0.0,-0.0010714285308495164,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-2.0328790734103208e-20,-0.0006696428754366934,-0.0,-0.00044642857392318547,-0.0,-0.0,-0.0,6.776263578034403e-21,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-1.5637531411598003e-21,0.0017857142956927419,-0.0,0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,0.0016071428544819355,-0.0,0.0,-0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,0.0,0.0007440476329065859,-3.4402567691876865e-20,4.691259524453597e-21,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,1.1467523102488e-20,-0.0,-0.0,-1.5637531411598003e-21,-0.0,0.0,0.00014880952949170023,4.0,5.0,4.0,8.0,0.05969047546386719,-0.018062500283122063,-0.015297618694603443,-0.018062500283122063,-0.010520833544433117,0.0015625000232830644,0.0018749999580904841,0.0022499999031424522,0.0012499999720603228,0.0011160714784637094,0.0018749999580904841,0.0010416667209938169,0.0015625000232830644,0.0012499999720603228,0.0005208333604969084,-0.018062500283122063,0.022979166358709335,0.0018749999580904841,0.0022499999031424522,0.0012499999720603228,-0.004687500186264515,-0.0012499999720603228,-0.001500000013038516,-0.0008333333535119891,-0.0,-2.6020852139652106e-18,-1.6263032587282567e-19,-1.214306433183765e-17,-3.7947076036992655e-18,2.6020852139652106e-18,-0.015297618694603443,0.0018749999580904841,0.014345237985253334,0.0018749999580904841,0.0010416667209938169,-3.451102774304179e-18,-0.0009374999790452421,-3.577867169202165e-18,3.1170812458958252e-19,-0.0022321429569274187,-0.0009374999790452421,-0.0005208333604969084,-8.456776945386935e-18,3.7947076036992655e-19,1.1519648082658485e-18,-0.018062500283122063,0.0022499999031424522,0.0018749999580904841,0.022979166358709335,0.0012499999720603228,-8.614492991240583e-18,-1.8792819734168805e-18,-0.001500000013038516,-4.269046054161674e-18,-1.5032322252653201e-18,-0.0012499999720603228,-3.5914196963582334e-19,-0.004687500186264515,-0.0008333333535119891,2.791820594150174e-18,-0.010520833544433117,0.0012499999720603228,0.0010416667209938169,0.0012499999720603228,0.0056101190857589245,2.168404344971009e-18,2.794590822021614e-18,-7.634497067770554e-20,-0.0003571428533177823,3.1963975268820037e-18,1.9994582883261877e-18,-0.00029761905898340046,1.1279452410361102e-18,-0.0003571428533177823,-0.0005208333604969084,0.0015625000232830644,-0.004687500186264515,-3.451102774304179e-18,-8.614492991240583e-18,2.168404344971009e-18,0.0015625000232830644,1.9509624726203995e-19,1.1793644422736315e-18,2.639270187824343e-19,3.386173955904865e-19,6.615461217917743e-19,1.3705670599195049e-19,1.1525898466162088e-18,4.078016705004736e-19,-5.149960319306146e-19,0.0018749999580904841,-0.0012499999720603228,-0.0009374999790452421,-1.8792819734168805e-18,2.794590822021614e-18,1.9509624726203995e-19,0.0006249999860301614,5.421010862427522e-20,-2.7509108776915037e-19,-4.2855371921426254e-19,-3.6482676839559403e-19,-3.527670954500303e-19,7.903909276291192e-19,6.166194248314712e-22,-2.574980159653073e-19,0.0022499999031424522,-0.001500000013038516,-3.577867169202165e-18,-0.001500000013038516,-7.634497067770554e-20,1.1793644422736315e-18,5.421010862427522e-20,0.0010000000474974513,3.3872498076890667e-19,3.979458910500867e-19,8.99534824516077e-19,9.686874339182398e-20,2.5577348914474144e-18,8.508022542093396e-19,-2.981555974335137e-19,0.0012499999720603228,-0.0008333333535119891,3.1170812458958252e-19,-4.269046054161674e-18,-0.0003571428533177823,2.639270187824343e-19,-2.7509108776915037e-19,3.3872498076890667e-19,0.0002380952355451882,-1.1519648082658485e-19,1.185369334081066e-19,9.219850750274373e-20,7.368854217903743e-19,2.9794572620247253e-19,-5.421010862427522e-20,0.0011160714784637094,-0.0,-0.0022321429569274187,-1.5032322252653201e-18,3.1963975268820037e-18,3.386173955904865e-19,-4.2855371921426254e-19,3.979458910500867e-19,-1.1519648082658485e-19,0.0005580357392318547,-2.0180671120728517e-19,-6.141248395510866e-19,7.671527358855139e-19,-2.677617505540477e-19,-1.8973538018496328e-19,0.0018749999580904841,-2.6020852139652106e-18,-0.0009374999790452421,-0.0012499999720603228,1.9994582883261877e-18,6.615461217917743e-19,-3.6482676839559403e-19,8.99534824516077e-19,1.185369334081066e-19,-2.0180671120728517e-19,0.0006249999860301614,-4.2012834183813297e-19,1.7402089242089525e-18,1.7423601883376556e-19,-2.0328790734103208e-19,0.0010416667209938169,-1.6263032587282567e-19,-0.0005208333604969084,-3.5914196963582334e-19,-0.00029761905898340046,1.3705670599195049e-19,-3.527670954500303e-19,9.686874339182398e-20,9.219850750274373e-20,-6.141248395510866e-19,-4.2012834183813297e-19,0.00014880952949170023,2.6068374699819044e-19,7.498436842998091e-20,1.3552527156068805e-20,0.0015625000232830644,-1.214306433183765e-17,-8.456776945386935e-18,-0.004687500186264515,1.1279452410361102e-18,1.1525898466162088e-18,7.903909276291192e-19,2.5577348914474144e-18,7.368854217903743e-19,7.671527358855139e-19,1.7402089242089525e-18,2.6068374699819044e-19,0.0015625000232830644,4.811147140404426e-19,-4.87890977618477e-19,0.0012499999720603228,-3.7947076036992655e-18,3.7947076036992655e-19,-0.0008333333535119891,-0.0003571428533177823,4.078016705004736e-19,6.166194248314712e-22,8.508022542093396e-19,2.9794572620247253e-19,-2.677617505540477e-19,1.7423601883376556e-19,7.498436842998091e-20,4.811147140404426e-19,0.0002380952355451882,-4.0657581468206416e-20,0.0005208333604969084,2.6020852139652106e-18,1.1519648082658485e-18,2.791820594150174e-18,-0.0005208333604969084,-5.149960319306146e-19,-2.574980159653073e-19,-2.981555974335137e-19,-5.421010862427522e-20,-1.8973538018496328e-19,-2.0328790734103208e-19,1.3552527156068805e-20,-4.87890977618477e-19,-4.0657581468206416e-20,7.440476474585012e-05,4.0,5.0,5.0,3.0,0.10852380841970444,-0.035999998450279236,-0.030523808673024178,-0.030523808673024178,-0.04399999976158142,0.0033333334140479565,0.004000000189989805,0.004000000189989805,0.006000000052154064,0.0023809524718672037,0.0033333334140479565,0.004999999888241291,0.0023809524718672037,0.004999999888241291,0.004999999888241291,-0.035999998450279236,0.047333333641290665,0.004000000189989805,0.004000000189989805,0.006000000052154064,-0.009999999776482582,-0.0026666666381061077,-0.0026666666381061077,-0.004000000189989805,-8.410224047693063e-18,-4.440891999238953e-18,-6.661337998858429e-18,-8.4156892300002e-18,-6.661337998858429e-18,-3.3306692062243676e-17,-0.030523808673024178,0.004000000189989805,0.029547618702054024,0.0033333334140479565,0.004999999888241291,-2.0900953218167362e-17,-0.0020000000949949026,5.421010862427522e-20,-1.9009305590915044e-32,-0.004761904943734407,-0.0016666667070239782,-0.0024999999441206455,8.972707924054281e-20,-0.0,-6.961415666155808e-32,-0.030523808673024178,0.004000000189989805,0.0033333334140479565,0.029547618702054024,0.004999999888241291,-2.0900953218167362e-17,4.232307408866499e-20,-0.0020000000949949026,-1.9009305590915044e-32,-0.0,-0.0016666667070239782,-0.0,-0.004761904943734407,-0.0024999999441206455,-6.961415666155808e-32,-0.04399999976158142,0.006000000052154064,0.004999999888241291,0.004999999888241291,0.09399999678134918,-3.5633716561477854e-17,-1.7146852341472212e-32,-1.7146852341472212e-32,-0.006000000052154064,1.1374889286870736e-32,-1.1880245328548777e-32,-0.004999999888241291,-0.0,-0.004999999888241291,-0.029999999329447746,0.0033333334140479565,-0.009999999776482582,-2.0900953218167362e-17,-2.0900953218167362e-17,-3.5633716561477854e-17,0.0033333334140479565,2.0210994011021063e-18,2.0210994011021063e-18,3.031648998255583e-18,3.1720658023686032e-18,1.4802974020113686e-18,2.2204459996194763e-18,3.1720658023686032e-18,2.2204459996194763e-18,1.1102230411687688e-17,0.004000000189989805,-0.0026666666381061077,-0.0020000000949949026,4.232307408866499e-20,-1.7146852341472212e-32,2.0210994011021063e-18,0.0013333333190530539,-4.571936701608905e-21,1.8381791074273598e-33,-5.421010862427522e-19,-0.0,-0.0,-8.15291183717285e-21,4.631785696865674e-34,6.731613132725774e-33,0.004000000189989805,-0.0026666666381061077,5.421010862427522e-20,-0.0020000000949949026,-1.7146852341472212e-32,2.0210994011021063e-18,-4.571936701608905e-21,0.0013333333190530539,1.8381791074273598e-33,-1.0885564383052865e-20,2.3046078730762027e-34,4.631785696865674e-34,-5.421010862427522e-19,-0.0,6.731613132725774e-33,0.006000000052154064,-0.004000000189989805,-1.9009305590915044e-32,-1.9009305590915044e-32,-0.006000000052154064,3.031648998255583e-18,1.8381791074273598e-33,1.8381791074273598e-33,0.004000000189989805,2.8849770306437616e-33,1.3463226081780557e-33,2.0194838663493354e-33,2.8849770306437616e-33,2.0194838663493354e-33,1.0097419331746677e-32,0.0023809524718672037,-8.410224047693063e-18,-0.004761904943734407,-0.0,1.1374889286870736e-32,3.1720658023686032e-18,-5.421010862427522e-19,-1.0885564383052865e-20,2.8849770306437616e-33,0.0011904762359336019,-0.0,0.0,7.108622971012362e-21,1.0296377002465786e-35,1.0565101514164832e-32,0.0033333334140479565,-4.440891999238953e-18,-0.0016666667070239782,-0.0016666667070239782,-1.1880245328548777e-32,1.4802974020113686e-18,-0.0,2.3046078730762027e-34,1.3463226081780557e-33,-0.0,0.0008333333535119891,-0.0,-5.421010862427522e-20,-0.0,4.930380731099721e-33,0.004999999888241291,-6.661337998858429e-18,-0.0024999999441206455,-0.0,-0.004999999888241291,2.2204459996194763e-18,-0.0,4.631785696865674e-34,2.0194838663493354e-33,0.0,-0.0,0.0024999999441206455,1.0296377002465786e-35,0.0,7.395571280320573e-33,0.0023809524718672037,-8.4156892300002e-18,8.972707924054281e-20,-0.004761904943734407,-0.0,3.1720658023686032e-18,-8.15291183717285e-21,-5.421010862427522e-19,2.8849770306437616e-33,7.108622971012362e-21,-5.421010862427522e-20,1.0296377002465786e-35,0.0011904762359336019,1.7001312549186981e-34,1.0565101514164832e-32,0.004999999888241291,-6.661337998858429e-18,-0.0,-0.0024999999441206455,-0.004999999888241291,2.2204459996194763e-18,4.631785696865674e-34,-0.0,2.0194838663493354e-33,1.0296377002465786e-35,-0.0,0.0,1.7001312549186981e-34,0.0024999999441206455,7.395571280320573e-33,0.004999999888241291,-3.3306692062243676e-17,-6.961415666155808e-32,-6.961415666155808e-32,-0.029999999329447746,1.1102230411687688e-17,6.731613132725774e-33,6.731613132725774e-33,1.0097419331746677e-32,1.0565101514164832e-32,4.930380731099721e-33,7.395571280320573e-33,1.0565101514164832e-32,7.395571280320573e-33,0.014999999664723873,4.0,5.0,5.0,4.0,0.08774285763502121,-0.027899999171495438,-0.023642856627702713,-0.023642856627702713,-0.027899999171495438,0.0024999999441206455,0.003000000026077032,0.003000000026077032,0.003599999938160181,0.0017857142956927419,0.0024999999441206455,0.003000000026077032,0.0017857142956927419,0.003000000026077032,0.0024999999441206455,-0.027899999171495438,0.03610000014305115,0.003000000026077032,0.003000000026077032,0.003599999938160181,-0.007499999832361937,-0.0020000000949949026,-0.0020000000949949026,-0.002400000113993883,7.589415207398531e-19,-6.857905658258533e-21,1.0842021724855044e-19,9.78928963877412e-19,5.421010862427522e-20,-0.0,-0.023642856627702713,0.003000000026077032,0.022535713389515877,0.0024999999441206455,0.003000000026077032,-0.0,-0.001500000013038516,-6.857905658258533e-21,-0.0,-0.0035714285913854837,-0.0012499999720603228,-0.001500000013038516,-1.6328346574579298e-20,5.421010862427522e-20,-0.0,-0.023642856627702713,0.003000000026077032,0.0024999999441206455,0.022535713389515877,0.003000000026077032,-0.0,6.844842828487444e-21,-0.001500000013038516,-0.0,-0.0,-0.0012499999720603228,-0.0,-0.0035714285913854837,-0.001500000013038516,-0.0,-0.027899999171495438,0.003599999938160181,0.003000000026077032,0.003000000026077032,0.03610000014305115,-0.0,1.0842021724855044e-19,5.421010862427522e-20,-0.002400000113993883,1.5452996585394407e-19,5.421010862427522e-20,-0.0020000000949949026,2.168404344971009e-19,-0.0020000000949949026,-0.007499999832361937,0.0024999999441206455,-0.007499999832361937,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.003000000026077032,-0.0020000000949949026,-0.001500000013038516,6.844842828487444e-21,1.0842021724855044e-19,-0.0,0.0010000000474974513,-0.0,-0.0,-3.7947076036992655e-19,-0.0,-5.421010862427522e-20,-1.5735270394230673e-21,-0.0,-0.0,0.003000000026077032,-0.0020000000949949026,-6.857905658258533e-21,-0.001500000013038516,5.421010862427522e-20,-0.0,-0.0,0.0010000000474974513,-0.0,-0.0,3.4289528291292665e-21,-0.0,-4.87890977618477e-19,-2.710505431213761e-20,-0.0,0.003599999938160181,-0.002400000113993883,-0.0,-0.0,-0.002400000113993883,-0.0,-0.0,-0.0,0.0015999999595806003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,7.589415207398531e-19,-0.0035714285913854837,-0.0,1.5452996585394407e-19,-0.0,-3.7947076036992655e-19,-0.0,-0.0,0.0008928571478463709,-0.0,-1.0842021724855044e-19,5.425955447630157e-22,-0.0,-0.0,0.0024999999441206455,-6.857905658258533e-21,-0.0012499999720603228,-0.0012499999720603228,5.421010862427522e-20,-0.0,-0.0,3.4289528291292665e-21,-0.0,-0.0,0.0006249999860301614,-0.0,8.164173287289649e-21,-2.710505431213761e-20,-0.0,0.003000000026077032,1.0842021724855044e-19,-0.001500000013038516,-0.0,-0.0020000000949949026,-0.0,-5.421010862427522e-20,-0.0,-0.0,-1.0842021724855044e-19,-0.0,0.0010000000474974513,-0.0,-0.0,-0.0,0.0017857142956927419,9.78928963877412e-19,-1.6328346574579298e-20,-0.0035714285913854837,2.168404344971009e-19,-0.0,-1.5735270394230673e-21,-4.87890977618477e-19,-0.0,5.425955447630157e-22,8.164173287289649e-21,-0.0,0.0008928571478463709,-8.661155516215012e-20,-0.0,0.003000000026077032,5.421010862427522e-20,5.421010862427522e-20,-0.001500000013038516,-0.0020000000949949026,-0.0,-0.0,-2.710505431213761e-20,-0.0,-0.0,-2.710505431213761e-20,-0.0,-8.661155516215012e-20,0.0010000000474974513,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.007499999832361937,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,4.0,5.0,5.0,5.0,0.07377143204212189,-0.02280000038444996,-0.01931428536772728,-0.01931428536772728,-0.01931428536772728,0.0020000000949949026,0.002400000113993883,0.002400000113993883,0.002400000113993883,0.0014285714132711291,0.0020000000949949026,0.0020000000949949026,0.0014285714132711291,0.0020000000949949026,0.0014285714132711291,-0.02280000038444996,0.029200000688433647,0.002400000113993883,0.002400000113993883,0.002400000113993883,-0.006000000052154064,-0.0015999999595806003,-0.0015999999595806003,-0.0015999999595806003,-5.419922602934132e-19,2.6834086422454005e-20,2.710505431213761e-20,-5.451308937301691e-19,-0.0,-4.524517684421379e-19,-0.01931428536772728,0.002400000113993883,0.018228571861982346,0.0020000000949949026,0.0020000000949949026,-0.0,-0.0012000000569969416,2.710505431213761e-20,2.710505431213761e-20,-0.0028571428265422583,-0.0010000000474974513,-0.0010000000474974513,4.4863539620271407e-20,-0.0,4.4863539620271407e-20,-0.01931428536772728,0.002400000113993883,0.0020000000949949026,0.018228571861982346,0.0020000000949949026,-0.0,-6.826555189925346e-21,-0.0012000000569969416,-0.0,-0.0,-0.0010000000474974513,-0.0,-0.0028571428265422583,-0.0010000000474974513,-0.0,-0.01931428536772728,0.002400000113993883,0.0020000000949949026,0.0020000000949949026,0.018228571861982346,-0.0,-6.826555189925346e-21,-6.826555189925346e-21,-0.0012000000569969416,3.0925829430398105e-21,-1.6064516954698404e-21,-0.0010000000474974513,-0.0,-0.0010000000474974513,-0.0028571428265422583,0.0020000000949949026,-0.006000000052154064,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002400000113993883,-0.0015999999595806003,-0.0012000000569969416,-6.826555189925346e-21,-6.826555189925346e-21,-0.0,0.0007999999797903001,-0.0,-2.2852702467686554e-23,2.710505431213761e-19,-0.0,-0.0,1.569322978778091e-21,-0.0,1.577203206972044e-21,0.002400000113993883,-0.0015999999595806003,2.710505431213761e-20,-0.0012000000569969416,-6.826555189925346e-21,-0.0,-0.0,0.0007999999797903001,-2.2852702467686554e-23,-0.0,-1.3552527156068805e-20,-0.0,2.710505431213761e-19,-0.0,1.577203206972044e-21,0.002400000113993883,-0.0015999999595806003,2.710505431213761e-20,-0.0,-0.0012000000569969416,-0.0,-2.2852702467686554e-23,-2.2852702467686554e-23,0.0007999999797903001,-5.441119499930167e-23,1.3548388173293066e-22,-1.3552527156068805e-20,-5.441119499930167e-23,-0.0,2.2307148265388628e-19,0.0014285714132711291,-5.419922602934132e-19,-0.0028571428265422583,-0.0,3.0925829430398105e-21,-0.0,2.710505431213761e-19,-0.0,-5.441119499930167e-23,0.0007142857066355646,-0.0,0.0,-5.411458582329347e-22,0.0,-6.921761436803052e-22,0.0020000000949949026,2.6834086422454005e-20,-0.0010000000474974513,-0.0010000000474974513,-1.6064516954698404e-21,-0.0,-0.0,-1.3552527156068805e-20,1.3548388173293066e-22,-0.0,0.0005000000237487257,-0.0,-2.2431769810135703e-20,-0.0,3.225806479532906e-22,0.0020000000949949026,2.710505431213761e-20,-0.0010000000474974513,-0.0,-0.0010000000474974513,-0.0,-0.0,-0.0,-1.3552527156068805e-20,0.0,-0.0,0.0005000000237487257,-0.0,-0.0,-2.2431769810135703e-20,0.0014285714132711291,-5.451308937301691e-19,4.4863539620271407e-20,-0.0028571428265422583,-0.0,-0.0,1.569322978778091e-21,2.710505431213761e-19,-5.441119499930167e-23,-5.411458582329347e-22,-2.2431769810135703e-20,-0.0,0.0007142857066355646,0.0,-6.921761436803052e-22,0.0020000000949949026,-0.0,-0.0,-0.0010000000474974513,-0.0010000000474974513,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.0005000000237487257,0.0,0.0014285714132711291,-4.524517684421379e-19,4.4863539620271407e-20,-0.0,-0.0028571428265422583,-0.0,1.577203206972044e-21,1.577203206972044e-21,2.2307148265388628e-19,-6.921761436803052e-22,3.225806479532906e-22,-2.2431769810135703e-20,-6.921761436803052e-22,0.0,0.0007142857066355646,4.0,5.0,5.0,6.0,0.06369047611951828,-0.019285714253783226,-0.016333334147930145,-0.016333334147930145,-0.014178571291267872,0.0016666667070239782,0.0020000000949949026,0.0020000000949949026,0.001714285695925355,0.0011904762359336019,0.0016666667070239782,0.0014285714132711291,0.0011904762359336019,0.0014285714132711291,0.0008928571478463709,-0.019285714253783226,0.024523809552192688,0.0020000000949949026,0.0020000000949949026,0.001714285695925355,-0.004999999888241291,-0.0013333333190530539,-0.0013333333190530539,-0.0011428571306169033,-5.509233397069059e-18,-2.72918523739674e-18,-2.216413080542974e-18,-5.520443762320684e-18,-2.2296618256190827e-18,-4.0559742545353644e-18,-0.016333334147930145,0.0020000000949949026,0.015309523791074753,0.0016666667070239782,0.0014285714132711291,-1.0926286613855821e-17,-0.0010000000474974513,1.7950475624673844e-21,-2.425902360936316e-18,-0.0023809524718672037,-0.0008333333535119891,-0.0007142857066355646,4.2739230755103694e-21,-8.513654672712602e-21,7.423921440738988e-20,-0.016333334147930145,0.0020000000949949026,0.0016666667070239782,0.015309523791074753,0.0014285714132711291,-1.0926286613855821e-17,9.241844222604193e-21,-0.0010000000474974513,-2.4679715261198443e-18,-0.0,-0.0008333333535119891,-2.710505431213761e-20,-0.0023809524718672037,-0.0007142857066355646,-1.2562944493642623e-20,-0.014178571291267872,0.001714285695925355,0.0014285714132711291,0.0014285714132711291,0.010582142509520054,-9.029063506542972e-18,6.172487969943182e-21,-1.5870778370931092e-20,-0.0006857143016532063,-6.143445077025077e-19,-3.1541528960110377e-19,-0.0005714285653084517,-7.047314121155779e-19,-0.0005714285653084517,-0.0013392857508733869,0.0016666667070239782,-0.004999999888241291,-1.0926286613855821e-17,-1.0926286613855821e-17,-9.029063506542972e-18,0.0016666667070239782,1.0105497005510531e-18,1.0105497005510531e-18,6.929483276873366e-19,1.5860329011843016e-18,7.401487010056843e-19,6.34413150133963e-19,1.5860329011843016e-18,6.34413150133963e-19,1.09039765187595e-18,0.0020000000949949026,-0.0013333333190530539,-0.0010000000474974513,9.241844222604193e-21,6.172487969943182e-21,1.0105497005510531e-18,0.0006666666595265269,-3.922213896403974e-22,-1.5627824762149184e-21,-1.6263032587282567e-19,-0.0,6.776263578034403e-21,-1.989313029588737e-21,3.848883500343991e-34,-3.2028576701411365e-21,0.0020000000949949026,-0.0013333333190530539,1.7950475624673844e-21,-0.0010000000474974513,-1.5870778370931092e-20,1.0105497005510531e-18,-3.922213896403974e-22,0.0006666666595265269,6.751887498384035e-22,-9.338604563330508e-22,4.99025246956019e-35,1.1422310088752447e-21,-1.6263032587282567e-19,6.776263578034403e-21,-1.8040414603111178e-22,0.001714285695925355,-0.0011428571306169033,-2.425902360936316e-18,-2.4679715261198443e-18,-0.0006857143016532063,6.929483276873366e-19,-1.5627824762149184e-21,6.751887498384035e-22,0.0004571428580675274,4.3130525797373776e-19,2.034956589217536e-19,1.1893461341228855e-19,4.366337486846512e-19,1.251479418093894e-19,3.1661909588630985e-19,0.0011904762359336019,-5.509233397069059e-18,-0.0023809524718672037,-0.0,-6.143445077025077e-19,1.5860329011843016e-18,-1.6263032587282567e-19,-9.338604563330508e-22,4.3130525797373776e-19,0.0005952381179668009,-0.0,2.710505431213761e-20,-1.8595280683617402e-21,7.233522037220028e-34,-1.308009231961452e-20,0.0016666667070239782,-2.72918523739674e-18,-0.0008333333535119891,-0.0008333333535119891,-3.1541528960110377e-19,7.401487010056843e-19,-0.0,4.99025246956019e-35,2.034956589217536e-19,-0.0,0.00041666667675599456,2.5239019264645726e-21,5.504434820773975e-35,-0.0,9.442284867648067e-22,0.0014285714132711291,-2.216413080542974e-18,-0.0007142857066355646,-2.710505431213761e-20,-0.0005714285653084517,6.34413150133963e-19,6.776263578034403e-21,1.1422310088752447e-21,1.1893461341228855e-19,2.710505431213761e-20,2.5239019264645726e-21,0.0002857142826542258,2.7195975920962037e-21,3.405461788305684e-21,-5.7699914966183255e-21,0.0011904762359336019,-5.520443762320684e-18,4.2739230755103694e-21,-0.0023809524718672037,-7.047314121155779e-19,1.5860329011843016e-18,-1.989313029588737e-21,-1.6263032587282567e-19,4.366337486846512e-19,-1.8595280683617402e-21,5.504434820773975e-35,2.7195975920962037e-21,0.0005952381179668009,2.476841125334309e-20,-2.482587677892789e-22,0.0014285714132711291,-2.2296618256190827e-18,-8.513654672712602e-21,-0.0007142857066355646,-0.0005714285653084517,6.34413150133963e-19,3.848883500343991e-34,6.776263578034403e-21,1.251479418093894e-19,7.233522037220028e-34,-0.0,3.405461788305684e-21,2.476841125334309e-20,0.0002857142826542258,4.8100080060721896e-21,0.0008928571478463709,-4.0559742545353644e-18,7.423921440738988e-20,-1.2562944493642623e-20,-0.0013392857508733869,1.09039765187595e-18,-3.2028576701411365e-21,-1.8040414603111178e-22,3.1661909588630985e-19,-1.308009231961452e-20,9.442284867648067e-22,-5.7699914966183255e-21,-2.482587677892789e-22,4.8100080060721896e-21,0.0002678571327123791,4.0,5.0,5.0,7.0,0.056057821959257126,-0.01671428605914116,-0.01415306143462658,-0.01415306143462658,-0.010857142508029938,0.0014285714132711291,0.001714285695925355,0.001714285695925355,0.0012857143301516771,0.0010204081190750003,0.0014285714132711291,0.0010714285308495164,0.0010204081190750003,0.0010714285308495164,0.0005952381179668009,-0.01671428605914116,0.021142857149243355,0.001714285695925355,0.001714285695925355,0.0012857143301516771,-0.004285714123398066,-0.0011428571306169033,-0.0011428571306169033,-0.0008571428479626775,-0.0,0.0,-1.0164395367051604e-20,-0.0,-0.0,3.1275062823196006e-21,-0.01415306143462658,0.001714285695925355,0.013198979198932648,0.0014285714132711291,0.0010714285308495164,-9.516196993515503e-19,-0.0008571428479626775,-4.226040403627841e-34,-1.0164395367051604e-20,-0.0020408162381500006,-0.0007142857066355646,-0.0005357142654247582,0.0,0.0,-1.7983161779669977e-20,-0.01415306143462658,0.001714285695925355,0.0014285714132711291,0.013198979198932648,0.0010714285308495164,-9.516196993515503e-19,-4.226040403627841e-34,-0.0008571428479626775,-3.1695304175152512e-34,-0.0,-0.0007142857066355646,-0.0,-0.0020408162381500006,-0.0005357142654247582,0.0,-0.010857142508029938,0.0012857143301516771,0.0010714285308495164,0.0010714285308495164,0.00671428581699729,-7.137148003630569e-19,-3.1695304175152512e-34,-3.1695304175152512e-34,-0.00042857142398133874,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0003571428533177823,-0.0007142857066355646,0.0014285714132711291,-0.004285714123398066,-9.516196993515503e-19,-9.516196993515503e-19,-7.137148003630569e-19,0.0014285714132711291,6.34413150133963e-19,6.34413150133963e-19,4.758098496757752e-19,-0.0,-0.0,5.64237288394698e-36,-0.0,-0.0,-1.7361147197247474e-36,0.001714285695925355,-0.0011428571306169033,-0.0008571428479626775,-4.226040403627841e-34,-3.1695304175152512e-34,6.34413150133963e-19,0.0005714285653084517,2.8173603456148077e-34,2.1130202018139207e-34,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.001714285695925355,-0.0011428571306169033,-4.226040403627841e-34,-0.0008571428479626775,-3.1695304175152512e-34,6.34413150133963e-19,2.8173603456148077e-34,0.0005714285653084517,2.1130202018139207e-34,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0012857143301516771,-0.0008571428479626775,-1.0164395367051604e-20,-3.1695304175152512e-34,-0.00042857142398133874,4.758098496757752e-19,2.1130202018139207e-34,2.1130202018139207e-34,0.0002857142826542258,-0.0,-0.0,3.3881317890172014e-21,-0.0,-0.0,-1.0425021277645988e-21,0.0010204081190750003,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,0.0,-0.0007142857066355646,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-1.0164395367051604e-20,-0.0005357142654247582,-0.0,-0.0003571428533177823,5.64237288394698e-36,0.0,0.0,3.3881317890172014e-21,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,5.994386855993209e-21,0.0010204081190750003,-0.0,0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,0.0010714285308495164,-0.0,0.0,-0.0005357142654247582,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,0.0,0.0005952381179668009,3.1275062823196006e-21,-1.7983161779669977e-20,0.0,-0.0007142857066355646,-1.7361147197247474e-36,-0.0,-0.0,-1.0425021277645988e-21,-0.0,-0.0,5.994386855993209e-21,-0.0,0.0,0.0001190476177725941,4.0,5.0,5.0,8.0,0.05007142946124077,-0.014750000089406967,-0.012488095089793205,-0.012488095089793205,-0.00858333334326744,0.0012499999720603228,0.001500000013038516,0.001500000013038516,0.0010000000474974513,0.0008928571478463709,0.0012499999720603228,0.0008333333535119891,0.0008928571478463709,0.0008333333535119891,0.00041666667675599456,-0.014750000089406967,0.018583333119750023,0.001500000013038516,0.001500000013038516,0.0010000000474974513,-0.0037499999161809683,-0.0010000000474974513,-0.0010000000474974513,-0.0006666666595265269,-4.7704895589362195e-18,-3.2526065174565133e-19,-4.87890977618477e-19,-3.469446951953614e-18,-5.963111948670274e-19,-1.8973538018496328e-18,-0.012488095089793205,0.001500000013038516,0.011601190082728863,0.0012499999720603228,0.0008333333535119891,-1.803058727536191e-18,-0.000750000006519258,-5.421010862427522e-19,-1.1655173354219173e-18,-0.0017857142956927419,-0.0006249999860301614,-0.00041666667675599456,2.168404344971009e-18,-4.607859233063394e-19,-1.883801274693564e-18,-0.012488095089793205,0.001500000013038516,0.0012499999720603228,0.011601190082728863,0.0008333333535119891,-1.8337576748147183e-18,-1.1506196057946841e-18,-0.000750000006519258,-9.893344823930228e-19,-2.4679347165825857e-19,-0.0006249999860301614,2.642742795433417e-19,-0.0017857142956927419,-0.00041666667675599456,-1.8431436932253575e-18,-0.00858333334326744,0.0010000000474974513,0.0008333333535119891,0.0008333333535119891,0.004535714164376259,-2.7647155398380363e-18,-2.25177794686176e-18,-2.0171316224988425e-18,-0.0002857142826542258,-3.74840616891161e-18,-9.458890954653595e-19,-0.0002380952355451882,-2.7574117418243462e-18,-0.0002380952355451882,-0.00041666667675599456,0.0012499999720603228,-0.0037499999161809683,-1.803058727536191e-18,-1.8337576748147183e-18,-2.7647155398380363e-18,0.0012499999720603228,-2.346860290323199e-19,-2.4669948326115723e-19,1.6808859346703046e-19,5.074941241602181e-19,5.726006571442602e-20,1.0606936186973907e-20,5.01209360962405e-19,3.0444527847856234e-20,3.5236570605778894e-19,0.001500000013038516,-0.0010000000474974513,-0.000750000006519258,-1.1506196057946841e-18,-2.25177794686176e-18,-2.346860290323199e-19,0.0005000000237487257,6.776263578034403e-20,1.2097093820993803e-19,1.0365135558105973e-18,1.0484732045255275e-19,1.656907002688158e-19,1.2135840770343377e-19,1.0096229222228699e-19,2.0328790734103208e-19,0.001500000013038516,-0.0010000000474974513,-5.421010862427522e-19,-0.000750000006519258,-2.0171316224988425e-18,-2.4669948326115723e-19,6.776263578034403e-20,0.0005000000237487257,1.0542208173130639e-19,1.0020830416924783e-19,-5.193461230732427e-20,4.9200822388101994e-20,5.802323547226451e-19,1.0726056172853938e-19,2.303929616531697e-19,0.0010000000474974513,-0.0006666666595265269,-1.1655173354219173e-18,-9.893344823930228e-19,-0.0002857142826542258,1.6808859346703046e-19,1.2097093820993803e-19,1.0542208173130639e-19,0.00019047618843615055,2.371692252312041e-19,3.951859011543141e-21,1.2315814592119602e-21,1.8664231923008022e-19,1.73505301697803e-20,4.0657581468206416e-20,0.0008928571478463709,-4.7704895589362195e-18,-0.0017857142956927419,-2.4679347165825857e-19,-3.74840616891161e-18,5.074941241602181e-19,1.0365135558105973e-18,1.0020830416924783e-19,2.371692252312041e-19,0.00044642857392318547,2.8022632840945613e-19,5.172360887281965e-19,-2.1915323148979915e-19,1.1867070402279292e-19,2.574980159653073e-19,0.0012499999720603228,-3.2526065174565133e-19,-0.0006249999860301614,-0.0006249999860301614,-9.458890954653595e-19,5.726006571442602e-20,1.0484732045255275e-19,-5.193461230732427e-20,3.951859011543141e-21,2.8022632840945613e-19,0.0003124999930150807,1.0164395367051604e-20,-5.462023511173667e-19,-3.765305791943495e-20,1.3552527156068805e-19,0.0008333333535119891,-4.87890977618477e-19,-0.00041666667675599456,2.642742795433417e-19,-0.0002380952355451882,1.0606936186973907e-20,1.656907002688158e-19,4.9200822388101994e-20,1.2315814592119602e-21,5.172360887281965e-19,1.0164395367051604e-20,0.0001190476177725941,-6.303103342957e-20,-2.3333073560391725e-20,5.421010862427522e-20,0.0008928571478463709,-3.469446951953614e-18,2.168404344971009e-18,-0.0017857142956927419,-2.7574117418243462e-18,5.01209360962405e-19,1.2135840770343377e-19,5.802323547226451e-19,1.8664231923008022e-19,-2.1915323148979915e-19,-5.462023511173667e-19,-6.303103342957e-20,0.00044642857392318547,3.3542504711270293e-19,2.439454888092385e-19,0.0008333333535119891,-5.963111948670274e-19,-4.607859233063394e-19,-0.00041666667675599456,-0.0002380952355451882,3.0444527847856234e-20,1.0096229222228699e-19,1.0726056172853938e-19,1.73505301697803e-20,1.1867070402279292e-19,-3.765305791943495e-20,-2.3333073560391725e-20,3.3542504711270293e-19,0.0001190476177725941,5.421010862427522e-20,0.00041666667675599456,-1.8973538018496328e-18,-1.883801274693564e-18,-1.8431436932253575e-18,-0.00041666667675599456,3.5236570605778894e-19,2.0328790734103208e-19,2.303929616531697e-19,4.0657581468206416e-20,2.574980159653073e-19,1.3552527156068805e-19,5.421010862427522e-20,2.439454888092385e-19,5.421010862427522e-20,5.952380888629705e-05,4.0,5.0,6.0,3.0,0.09392856806516647,-0.030476190149784088,-0.025833332911133766,-0.022440476343035698,-0.037261903285980225,0.0027777778450399637,0.0033333334140479565,0.0028571428265422583,0.004999999888241291,0.0019841270986944437,0.0023809524718672037,0.004166666883975267,0.0014880952658131719,0.0035714285913854837,0.004166666883975267,-0.030476190149784088,0.03976190462708473,0.0033333334140479565,0.0028571428265422583,0.004999999888241291,-0.008333333767950535,-0.002222222276031971,-0.0019047618843615055,-0.0033333334140479565,-7.88460029585479e-20,-6.098637220230962e-20,-4.1434511363417827e-22,-8.627366092921016e-19,7.233457288584972e-20,-7.304193492275434e-33,-0.025833332911133766,0.0033333334140479565,0.024821428582072258,0.0023809524718672037,0.004166666883975267,-0.0,-0.0016666667070239782,2.486477456353125e-20,-0.0,-0.003968254197388887,-0.0011904762359336019,-0.0020833334419876337,9.655248897919023e-20,2.710505431213761e-20,-0.0,-0.022440476343035698,0.0028571428265422583,0.0023809524718672037,0.01716071367263794,0.0035714285913854837,-0.0,3.195558649418601e-20,-0.0011428571306169033,-0.0,1.0842021724855044e-19,-0.0009523809421807528,-2.911031136920234e-20,-0.0022321429569274187,-0.0014285714132711291,-1.8103299346337465e-17,-0.037261903285980225,0.004999999888241291,0.004166666883975267,0.0035714285913854837,0.07892857491970062,-0.0,5.714920977985327e-21,6.743116253690901e-20,-0.004999999888241291,1.3606954671022514e-20,-2.710505431213761e-20,-0.004166666883975267,-9.432558900623889e-18,-0.0035714285913854837,-0.02500000037252903,0.0027777778450399637,-0.008333333767950535,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.002222222276031971,-0.0016666667070239782,3.195558649418601e-20,5.714920977985327e-21,-0.0,0.0011111111380159855,-4.968467619441863e-21,-0.0,5.421010862427522e-20,1.3552527156068805e-20,-0.0,-9.088815001488316e-21,-2.2859683508044526e-21,4.097822094573828e-35,0.0028571428265422583,-0.0019047618843615055,2.486477456353125e-20,-0.0011428571306169033,6.743116253690901e-20,-0.0,-4.968467619441863e-21,0.0007619047537446022,-0.0,-1.1829684423531309e-20,1.3552527156068805e-20,1.657380479780262e-22,3.5236570605778894e-19,-2.710505431213761e-20,2.8888949165808538e-33,0.004999999888241291,-0.0033333334140479565,-0.0,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019841270986944437,-7.88460029585479e-20,-0.003968254197388887,1.0842021724855044e-19,1.3606954671022514e-20,-0.0,5.421010862427522e-20,-1.1829684423531309e-20,-0.0,0.0009920635493472219,5.421010862427522e-20,0.0,-3.25610051543924e-20,-5.4427821915264325e-21,9.756719054138886e-35,0.0023809524718672037,-6.098637220230962e-20,-0.0011904762359336019,-0.0009523809421807528,-2.710505431213761e-20,-0.0,1.3552527156068805e-20,1.3552527156068805e-20,-0.0,5.421010862427522e-20,0.0004761904710903764,1.3552527156068805e-20,2.3358963344212355e-20,-0.0,-1.925929944387236e-34,0.004166666883975267,-4.1434511363417827e-22,-0.0020833334419876337,-2.911031136920234e-20,-0.004166666883975267,-0.0,-0.0,1.657380479780262e-22,-0.0,0.0,1.3552527156068805e-20,0.0020833334419876337,3.2370711608239725e-22,5.266214691683848e-36,-4.402125540023137e-36,0.0014880952658131719,-8.627366092921016e-19,9.655248897919023e-20,-0.0022321429569274187,-9.432558900623889e-18,-0.0,-9.088815001488316e-21,3.5236570605778894e-19,-0.0,-3.25610051543924e-20,2.3358963344212355e-20,3.2370711608239725e-22,0.00044642857392318547,6.038033832652265e-19,3.965082408057119e-18,0.0035714285913854837,7.233457288584972e-20,2.710505431213761e-20,-0.0014285714132711291,-0.0035714285913854837,-0.0,-2.2859683508044526e-21,-2.710505431213761e-20,-0.0,-5.4427821915264325e-21,-0.0,5.266214691683848e-36,6.038033832652265e-19,0.0014285714132711291,-1.722112176960247e-18,0.004166666883975267,-7.304193492275434e-33,-0.0,-1.8103299346337465e-17,-0.02500000037252903,-0.0,4.097822094573828e-35,2.8888949165808538e-33,-0.0,9.756719054138886e-35,-1.925929944387236e-34,-4.402125540023137e-36,3.965082408057119e-18,-1.722112176960247e-18,0.012500000186264515,4.0,5.0,6.0,4.0,0.07582738250494003,-0.02360714226961136,-0.019999999552965164,-0.0173660721629858,-0.02360714226961136,0.0020833334419876337,0.0024999999441206455,0.002142857061699033,0.003000000026077032,0.0014880952658131719,0.0017857142956927419,0.0024999999441206455,0.0011160714784637094,0.002142857061699033,0.0020833334419876337,-0.02360714226961136,0.030321428552269936,0.0024999999441206455,0.002142857061699033,0.003000000026077032,-0.0062500000931322575,-0.0016666667070239782,-0.0014285714132711291,-0.0020000000949949026,-6.471195749209666e-19,-4.676001111767548e-21,-8.131516293641283e-20,5.460727939539256e-19,3.7162616882175125e-37,-9.62964972193618e-34,-0.019999999552965164,0.0024999999441206455,0.018928570672869682,0.0017857142956927419,0.0024999999441206455,-0.0,-0.0012499999720603228,-2.500479103807719e-20,-0.0,-0.0029761905316263437,-0.0008928571478463709,-0.0012499999720603228,-4.2615850789069015e-20,-1.6940658945086007e-20,1.2037062152420224e-34,-0.0173660721629858,0.002142857061699033,0.0017857142956927419,0.01308482140302658,0.002142857061699033,-0.0,3.8738897263298455e-20,-0.0008571428479626775,-0.0,-0.0,-0.0007142857066355646,8.035900030943835e-20,-0.0016741071594879031,-0.0008571428479626775,3.960454746120191e-18,-0.02360714226961136,0.003000000026077032,0.0024999999441206455,0.002142857061699033,0.030321428552269936,-0.0,-8.131516293641283e-20,-1.154053333863289e-33,-0.0020000000949949026,-1.168278231662072e-19,6.341834136435235e-20,-0.0016666667070239782,2.9815559743351372e-18,-0.0014285714132711291,-0.0062500000931322575,0.0020833334419876337,-0.0062500000931322575,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0016666667070239782,-0.0012499999720603228,3.8738897263298455e-20,-8.131516293641283e-20,-0.0,0.0008333333535119891,-5.7149208770111315e-22,-0.0,3.2526065174565133e-19,-1.3552527156068805e-20,4.0657581468206416e-20,-1.985860923780392e-21,-1.8581308441087563e-37,0.0,0.002142857061699033,-0.0014285714132711291,-2.500479103807719e-20,-0.0008571428479626775,-1.154053333863289e-33,-0.0,-5.7149208770111315e-22,0.0005714285653084517,-0.0,-1.3606955478816081e-21,1.2712421846444637e-20,-7.52316384526264e-37,-2.168404344971009e-19,-0.0,3.851859888774472e-34,0.003000000026077032,-0.0020000000949949026,-0.0,-0.0,-0.0020000000949949026,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014880952658131719,-6.471195749209666e-19,-0.0029761905316263437,-0.0,-1.168278231662072e-19,-0.0,3.2526065174565133e-19,-1.3606955478816081e-21,-0.0,0.0007440476329065859,-0.0,5.421010862427522e-20,-2.00015866796695e-21,-2.334774893685197e-37,-0.0,0.0017857142956927419,-4.676001111767548e-21,-0.0008928571478463709,-0.0007142857066355646,6.341834136435235e-20,-0.0,-1.3552527156068805e-20,1.2712421846444637e-20,-0.0,-0.0,0.0003571428533177823,-4.0179500154719176e-20,2.171813266135265e-20,6.776263578034403e-21,-4.81482486096809e-35,0.0024999999441206455,-8.131516293641283e-20,-0.0012499999720603228,8.035900030943835e-20,-0.0016666667070239782,-0.0,4.0657581468206416e-20,-7.52316384526264e-37,-0.0,5.421010862427522e-20,-4.0179500154719176e-20,0.0008333333535119891,-0.0,-1.504632769052528e-36,0.0,0.0011160714784637094,5.460727939539256e-19,-4.2615850789069015e-20,-0.0016741071594879031,2.9815559743351372e-18,-0.0,-1.985860923780392e-21,-2.168404344971009e-19,-0.0,-2.00015866796695e-21,2.171813266135265e-20,-0.0,0.0003348214377183467,-3.8196814788619485e-19,-6.938894007304805e-19,0.002142857061699033,3.7162616882175125e-37,-1.6940658945086007e-20,-0.0008571428479626775,-0.0014285714132711291,-0.0,-1.8581308441087563e-37,-0.0,-0.0,-2.334774893685197e-37,6.776263578034403e-21,-1.504632769052528e-36,-3.8196814788619485e-19,0.0005714285653084517,-3.2733847774559625e-19,0.0020833334419876337,-9.62964972193618e-34,1.2037062152420224e-34,3.960454746120191e-18,-0.0062500000931322575,-0.0,0.0,3.851859888774472e-34,-0.0,-0.0,-4.81482486096809e-35,0.0,-6.938894007304805e-19,-3.2733847774559625e-19,0.0020833334419876337,4.0,5.0,6.0,5.0,0.06369047611951828,-0.019285714253783226,-0.016333334147930145,-0.014178571291267872,-0.016333334147930145,0.0016666667070239782,0.0020000000949949026,0.001714285695925355,0.0020000000949949026,0.0011904762359336019,0.0014285714132711291,0.0016666667070239782,0.0008928571478463709,0.0014285714132711291,0.0011904762359336019,-0.019285714253783226,0.024523809552192688,0.0020000000949949026,0.001714285695925355,0.0020000000949949026,-0.004999999888241291,-0.0013333333190530539,-0.0011428571306169033,-0.0013333333190530539,-5.422128383435081e-18,-2.220529544861344e-18,-2.6993628947723655e-18,-4.159506247954033e-18,-2.2672638019045183e-18,-5.393538539923411e-18,-0.016333334147930145,0.0020000000949949026,0.015309523791074753,0.0014285714132711291,0.0016666667070239782,-1.0926286613855821e-17,-0.0010000000474974513,-2.482421130650227e-18,-0.0,-0.0023809524718672037,-0.0007142857066355646,-0.0008333333535119891,-2.6582125915400645e-20,2.1770847653944433e-20,-8.865638086974195e-34,-0.014178571291267872,0.001714285695925355,0.0014285714132711291,0.010582142509520054,0.0014285714132711291,-9.029063506542972e-18,-1.3421527273317121e-20,-0.0006857143016532063,-4.517381700674461e-19,-7.047314121155779e-19,-0.0005714285653084517,-2.303929616531697e-19,-0.0013392857508733869,-0.0005714285653084517,-3.991701907349688e-18,-0.016333334147930145,0.0020000000949949026,0.0016666667070239782,0.0014285714132711291,0.015309523791074753,-1.0926286613855821e-17,3.526922840722083e-21,-2.8750395132663775e-18,-0.0010000000474974513,8.353403777108225e-21,7.767451487836821e-20,-0.0008333333535119891,-3.415236843329339e-18,-0.0007142857066355646,-0.0023809524718672037,0.0016666667070239782,-0.004999999888241291,-1.0926286613855821e-17,-9.029063506542972e-18,-1.0926286613855821e-17,0.0016666667070239782,1.0105497005510531e-18,6.929483276873366e-19,1.0105497005510531e-18,1.5860329011843016e-18,6.34413150133963e-19,7.401487010056843e-19,1.09039765187595e-18,6.34413150133963e-19,1.5860329011843016e-18,0.0020000000949949026,-0.0013333333190530539,-0.0010000000474974513,-1.3421527273317121e-20,3.526922840722083e-21,1.0105497005510531e-18,0.0006666666595265269,1.7222982796733744e-21,-2.240452376615972e-23,-2.168404344971009e-19,-0.0,-1.3552527156068805e-20,1.9971892188148554e-21,3.8331451921899155e-34,5.427985836760677e-21,0.001714285695925355,-0.0011428571306169033,-2.482421130650227e-18,-0.0006857143016532063,-2.8750395132663775e-18,6.929483276873366e-19,1.7222982796733744e-21,0.0004571428580675274,2.7805094679601824e-19,4.391268710508861e-19,1.2683100878669046e-19,2.0240874359685892e-19,3.5236570605778894e-19,1.3552527156068805e-19,4.291015195749258e-19,0.0020000000949949026,-0.0013333333190530539,-0.0,-4.517381700674461e-19,-0.0010000000474974513,1.0105497005510531e-18,-2.240452376615972e-23,2.7805094679601824e-19,0.0006666666595265269,-5.334410600825283e-23,1.0626145719944282e-22,1.554311525082304e-34,1.7023482019505013e-21,1.2605572567963947e-20,-2.24085011548811e-19,0.0011904762359336019,-5.422128383435081e-18,-0.0023809524718672037,-7.047314121155779e-19,8.353403777108225e-21,1.5860329011843016e-18,-2.168404344971009e-19,4.391268710508861e-19,-5.334410600825283e-23,0.0005952381179668009,2.710505431213761e-20,2.710505431213761e-20,1.3104570484176911e-21,7.289945766059498e-34,-2.017123544563173e-21,0.0014285714132711291,-2.220529544861344e-18,-0.0007142857066355646,-0.0005714285653084517,7.767451487836821e-20,6.34413150133963e-19,-0.0,1.2683100878669046e-19,1.0626145719944282e-22,2.710505431213761e-20,0.0002857142826542258,-3.099690678245693e-20,8.097262938345918e-21,-6.776263578034403e-21,2.530034695224829e-22,0.0016666667070239782,-2.6993628947723655e-18,-0.0008333333535119891,-2.303929616531697e-19,-0.0008333333535119891,7.401487010056843e-19,-1.3552527156068805e-20,2.0240874359685892e-19,1.554311525082304e-34,2.710505431213761e-20,-3.099690678245693e-20,0.00041666667675599456,-1.1786515935313698e-21,-2.415094354429213e-21,9.48099043855858e-36,0.0008928571478463709,-4.159506247954033e-18,-2.6582125915400645e-20,-0.0013392857508733869,-3.415236843329339e-18,1.09039765187595e-18,1.9971892188148554e-21,3.5236570605778894e-19,1.7023482019505013e-21,1.3104570484176911e-21,8.097262938345918e-21,-1.1786515935313698e-21,0.0002678571327123791,3.0384965027638734e-19,6.735707429588811e-19,0.0014285714132711291,-2.2672638019045183e-18,2.1770847653944433e-20,-0.0005714285653084517,-0.0007142857066355646,6.34413150133963e-19,3.8331451921899155e-34,1.3552527156068805e-19,1.2605572567963947e-20,7.289945766059498e-34,-6.776263578034403e-21,-2.415094354429213e-21,3.0384965027638734e-19,0.0002857142826542258,-8.84135067342858e-21,0.0011904762359336019,-5.393538539923411e-18,-8.865638086974195e-34,-3.991701907349688e-18,-0.0023809524718672037,1.5860329011843016e-18,5.427985836760677e-21,4.291015195749258e-19,-2.24085011548811e-19,-2.017123544563173e-21,2.530034695224829e-22,9.48099043855858e-36,6.735707429588811e-19,-8.84135067342858e-21,0.0005952381179668009,4.0,5.0,6.0,6.0,0.05494897812604904,-0.016309523954987526,-0.013809523545205593,-0.011985544115304947,-0.011985544115304947,0.0013888889225199819,0.0016666667070239782,0.0014285714132711291,0.0014285714132711291,0.0009920635493472219,0.0011904762359336019,0.0011904762359336019,0.0007440476329065859,0.0010204081190750003,0.0007440476329065859,-0.016309523954987526,0.020595237612724304,0.0016666667070239782,0.0014285714132711291,0.0014285714132711291,-0.004166666883975267,-0.0011111111380159855,-0.0009523809421807528,-0.0009523809421807528,-2.0930578846902314e-19,-2.6840707098528697e-20,-1.156161408937234e-20,-4.778617745827895e-19,-7.921617920736245e-21,-4.5837924131411635e-19,-0.013809523545205593,0.0016666667070239782,0.012857142835855484,0.0011904762359336019,0.0011904762359336019,-0.0,-0.0008333333535119891,3.711760145226821e-21,-0.0,-0.0019841270986944437,-0.0005952381179668009,-0.0005952381179668009,4.080487666766152e-22,-6.194882915675775e-20,-1.407338060706057e-37,-0.011985544115304947,0.0014285714132711291,0.0011904762359336019,0.008886479772627354,0.0010204081190750003,-0.0,-1.1620028873372495e-20,-0.0005714285653084517,-3.188187048444076e-20,-0.0,-0.0004761904710903764,-6.776263578034403e-20,-0.0011160714784637094,-0.0004081632650922984,-2.0075632107631354e-18,-0.011985544115304947,0.0014285714132711291,0.0011904762359336019,0.0010204081190750003,0.008886479772627354,-0.0,-1.447748956431355e-20,2.7801724564840524e-20,-0.0005714285653084517,1.8316092282699767e-20,-2.3183505734710213e-20,-0.0004761904710903764,-2.222614453595284e-18,-0.0004081632650922984,-0.0011160714784637094,0.0013888889225199819,-0.004166666883975267,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0011111111380159855,-0.0008333333535119891,-1.1620028873372495e-20,-1.447748956431355e-20,-0.0,0.0005555555690079927,-1.426253145523291e-21,1.6043155106255999e-22,1.0842021724855044e-19,6.776263578034403e-21,6.776263578034403e-21,3.8123053774675134e-23,2.585945199885057e-37,1.2610219248996512e-22,0.0014285714132711291,-0.0009523809421807528,3.711760145226821e-21,-0.0005714285653084517,2.7801724564840524e-20,-0.0,-1.426253145523291e-21,0.0003809523768723011,7.059616962583213e-22,-3.3958409669233535e-21,6.076175954646523e-21,-7.963651055095513e-22,1.8973538018496328e-19,-6.776263578034403e-21,-1.9030612753748276e-21,0.0014285714132711291,-0.0009523809421807528,-0.0,-3.188187048444076e-20,-0.0005714285653084517,-0.0,1.6043155106255999e-22,7.059616962583213e-22,0.0003809523768723011,3.819798798760644e-22,-7.609039271754688e-22,2.7839268799004366e-36,1.3788314222273157e-21,9.944910584770187e-21,1.8515388526597348e-19,0.0009920635493472219,-2.0930578846902314e-19,-0.0019841270986944437,-0.0,1.8316092282699767e-20,-0.0,1.0842021724855044e-19,-3.3958409669233535e-21,3.819798798760644e-22,0.0004960317746736109,2.710505431213761e-20,2.710505431213761e-20,-5.1395494111918566e-21,0.0,-6.97818854375754e-21,0.0011904762359336019,-2.6840707098528697e-20,-0.0005952381179668009,-0.0004761904710903764,-2.3183505734710213e-20,-0.0,6.776263578034403e-21,6.076175954646523e-21,-7.609039271754688e-22,2.710505431213761e-20,0.0002380952355451882,1.1959660831833672e-20,1.0312123038987612e-20,3.3881317890172014e-21,-1.4861404362217941e-21,0.0011904762359336019,-1.156161408937234e-20,-0.0005952381179668009,-6.776263578034403e-20,-0.0004761904710903764,-0.0,6.776263578034403e-21,-7.963651055095513e-22,2.7839268799004366e-36,2.710505431213761e-20,1.1959660831833672e-20,0.0002380952355451882,-1.5554006566517713e-21,2.1391401166155606e-20,1.3552527156068805e-20,0.0007440476329065859,-4.778617745827895e-19,4.080487666766152e-22,-0.0011160714784637094,-2.222614453595284e-18,-0.0,3.8123053774675134e-23,1.8973538018496328e-19,1.3788314222273157e-21,-5.1395494111918566e-21,1.0312123038987612e-20,-1.5554006566517713e-21,0.00022321428696159273,1.2259709774603486e-19,3.892945899691536e-19,0.0010204081190750003,-7.921617920736245e-21,-6.194882915675775e-20,-0.0004081632650922984,-0.0004081632650922984,-0.0,2.585945199885057e-37,-6.776263578034403e-21,9.944910584770187e-21,0.0,3.3881317890172014e-21,2.1391401166155606e-20,1.2259709774603486e-19,0.00016326530021615326,2.678953014488838e-20,0.0007440476329065859,-4.5837924131411635e-19,-1.407338060706057e-37,-2.0075632107631354e-18,-0.0011160714784637094,-0.0,1.2610219248996512e-22,-1.9030612753748276e-21,1.8515388526597348e-19,-6.97818854375754e-21,-1.4861404362217941e-21,1.3552527156068805e-20,3.892945899691536e-19,2.678953014488838e-20,0.00022321428696159273,4.0,5.0,6.0,7.0,0.04833900183439255,-0.01413265336304903,-0.011964285746216774,-0.010382653214037418,-0.009175170212984085,0.0011904762359336019,0.0014285714132711291,0.0012244897661730647,0.0010714285308495164,0.0008503401186317205,0.0010204081190750003,0.0008928571478463709,0.0006377550889737904,0.0007653061184100807,0.0004960317746736109,-0.01413265336304903,0.01775510236620903,0.0014285714132711291,0.0012244897661730647,0.0010714285308495164,-0.0035714285913854837,-0.0009523809421807528,-0.0008163265301845968,-0.0007142857066355646,-6.317158072142465e-18,-2.4155826624092577e-18,-2.5137594885422578e-18,1.209988736501876e-18,-3.1539719502520417e-19,3.204286697350743e-20,-0.011964285746216774,0.0014285714132711291,0.011084184050559998,0.0010204081190750003,0.0008928571478463709,-1.2256258208401244e-17,-0.0007142857066355646,-9.31030346724493e-19,4.394771820403023e-19,-0.001700680237263441,-0.0005102040595375001,-0.00044642857392318547,1.5943340722215775e-18,1.1412985210621303e-18,4.761081516841771e-19,-0.010382653214037418,0.0012244897661730647,0.0010204081190750003,0.007660714443773031,0.0007653061184100807,2.108452749865609e-19,-1.8964422229652052e-19,-0.0004897959297522902,5.829441112645354e-19,3.216822270567163e-18,-0.0004081632650922984,-3.3881317890172014e-19,-0.0009566326625645161,-0.0003061224415432662,-3.2590355202736403e-19,-0.009175170212984085,0.0010714285308495164,0.0008928571478463709,0.0007653061184100807,0.005637755151838064,-1.4466885367354562e-18,-6.933229371072465e-19,-1.0393108738470985e-18,-0.0003571428533177823,2.4015272094407567e-18,-4.629101748181638e-19,-0.00029761905898340046,-1.8973538018496328e-19,-0.00025510202976875007,-0.0005952381179668009,0.0011904762359336019,-0.0035714285913854837,-1.2256258208401244e-17,2.108452749865609e-19,-1.4466885367354562e-18,0.0011904762359336019,1.2225040825673799e-18,1.539854483663369e-19,2.9731823215966863e-19,1.69932097294015e-18,4.984674640269449e-19,5.2867765096103e-19,-2.8322015354022696e-19,-2.2657612735582555e-20,-2.2028234918180537e-20,0.0014285714132711291,-0.0009523809421807528,-0.0007142857066355646,-1.8964422229652052e-19,-6.933229371072465e-19,1.2225040825673799e-18,0.0004761904710903764,1.7401046994517708e-19,1.903239450401889e-19,9.06304470649211e-19,2.3563917374252827e-19,2.379049248378876e-19,-8.49660473545378e-20,-2.718913592893392e-20,-3.115103651539737e-34,0.0012244897661730647,-0.0008163265301845968,-9.31030346724493e-19,-0.0004897959297522902,-1.0393108738470985e-18,1.539854483663369e-19,1.7401046994517708e-19,0.00032653060043230653,2.0194928030950266e-20,-2.5894414093355167e-20,1.0589990131967794e-19,1.0919388961522895e-19,5.421010862427522e-20,1.2874900798265365e-19,5.096953810171924e-20,0.0010714285308495164,-0.0007142857066355646,4.394771820403023e-19,5.829441112645354e-19,-0.0003571428533177823,2.9731823215966863e-19,1.903239450401889e-19,2.0194928030950266e-20,0.0002380952355451882,-2.2657611766230274e-19,9.63739225761457e-22,6.776263578034403e-21,-1.4640314898015786e-19,-6.689960125032209e-21,-6.049831625385773e-20,0.0008503401186317205,-6.317158072142465e-18,-0.001700680237263441,3.216822270567163e-18,2.4015272094407567e-18,1.69932097294015e-18,9.06304470649211e-19,-2.5894414093355167e-20,-2.2657611766230274e-19,0.00042517005931586027,-7.27509743137392e-20,-5.304758382151437e-20,-3.540252113123293e-19,-2.9131215128010353e-19,-1.5734453836103525e-19,0.0010204081190750003,-2.4155826624092577e-18,-0.0005102040595375001,-0.0004081632650922984,-4.629101748181638e-19,4.984674640269449e-19,2.3563917374252827e-19,1.0589990131967794e-19,9.63739225761457e-22,-7.27509743137392e-20,0.0002040816325461492,6.553206571041236e-20,-2.1338695867086626e-20,1.0164395367051604e-20,4.69214583555525e-20,0.0008928571478463709,-2.5137594885422578e-18,-0.00044642857392318547,-3.3881317890172014e-19,-0.00029761905898340046,5.2867765096103e-19,2.379049248378876e-19,1.0919388961522895e-19,6.776263578034403e-21,-5.304758382151437e-20,6.553206571041236e-20,0.00014880952949170023,8.541887865670943e-22,1.3107608191885413e-20,1.1988773711986418e-20,0.0006377550889737904,1.209988736501876e-18,1.5943340722215775e-18,-0.0009566326625645161,-1.8973538018496328e-19,-2.8322015354022696e-19,-8.49660473545378e-20,5.421010862427522e-20,-1.4640314898015786e-19,-3.540252113123293e-19,-2.1338695867086626e-20,8.541887865670943e-22,0.00019132652960252017,2.208276744629795e-20,3.690064021708994e-20,0.0007653061184100807,-3.1539719502520417e-19,1.1412985210621303e-18,-0.0003061224415432662,-0.00025510202976875007,-2.2657612735582555e-20,-2.718913592893392e-20,1.2874900798265365e-19,-6.689960125032209e-21,-2.9131215128010353e-19,1.0164395367051604e-20,1.3107608191885413e-20,2.208276744629795e-20,0.0001020408162730746,-3.535615184178565e-20,0.0004960317746736109,3.204286697350743e-20,4.761081516841771e-19,-3.2590355202736403e-19,-0.0005952381179668009,-2.2028234918180537e-20,-3.115103651539737e-34,5.096953810171924e-20,-6.049831625385773e-20,-1.5734453836103525e-19,4.69214583555525e-20,1.1988773711986418e-20,3.690064021708994e-20,-3.535615184178565e-20,9.920635056914762e-05,4.0,5.0,6.0,8.0,0.04315972328186035,-0.012470237910747528,-0.010555555112659931,-0.009159225970506668,-0.0072519839741289616,0.0010416667209938169,0.0012499999720603228,0.0010714285308495164,0.0008333333535119891,0.0007440476329065859,0.0008928571478463709,0.0006944444612599909,0.0005580357392318547,0.0005952381179668009,0.00034722223062999547,-0.012470237910747528,0.015605159103870392,0.0012499999720603228,0.0010714285308495164,0.0008333333535119891,-0.0031250000465661287,-0.0008333333535119891,-0.0007142857066355646,-0.0005555555690079927,-0.0,0.0,1.1858461261560205e-20,-2.5071382028831902e-34,7.75921587086309e-20,8.983213764068558e-20,-0.010555555112659931,0.0012499999720603228,0.009742063470184803,0.0008928571478463709,0.0006944444612599909,-0.0,-0.0006249999860301614,-0.0,1.1858461261560205e-20,-0.0014880952658131719,-0.00044642857392318547,-0.00034722223062999547,-7.899322037525772e-35,7.115076756936123e-20,-2.3493177437566918e-21,-0.009159225970506668,0.0010714285308495164,0.0008928571478463709,0.006732887122780085,0.0005952381179668009,-0.0,-0.0,-0.00042857142398133874,7.75921587086309e-20,-0.0,-0.0003571428533177823,7.115076756936123e-20,-0.0008370535797439516,-0.0002380952355451882,5.448812919803312e-19,-0.0072519839741289616,0.0008333333535119891,0.0006944444612599909,0.0005952381179668009,0.00380810652859509,-0.0,-0.0,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.00019841270113829523,7.853964627893123e-19,-0.0001700680295471102,-0.00034722223062999547,0.0010416667209938169,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0008333333535119891,-0.0006249999860301614,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-0.0,-0.00042857142398133874,-0.0,-0.0,-0.0,0.0002857142826542258,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0005555555690079927,1.1858461261560205e-20,7.75921587086309e-20,-0.0002380952355451882,-0.0,-0.0,-0.0,0.00015873015217948705,-0.0,-0.0,-3.3881317890172014e-21,7.163251926241708e-35,-2.2169188433264134e-20,-2.5666325501792205e-20,0.0007440476329065859,-0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,0.0,-0.00044642857392318547,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,1.1858461261560205e-20,-0.00034722223062999547,7.115076756936123e-20,-0.00019841270113829523,-0.0,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,9.920635056914762e-05,2.256949153578792e-35,-2.0328790734103208e-20,6.712336410733405e-22,0.0005580357392318547,-2.5071382028831902e-34,-7.899322037525772e-35,-0.0008370535797439516,7.853964627893123e-19,-0.0,-0.0,-0.0,7.163251926241708e-35,-0.0,-0.0,2.256949153578792e-35,0.00016741071885917336,-8.286212639120624e-20,-8.26058813470738e-20,0.0005952381179668009,7.75921587086309e-20,7.115076756936123e-20,-0.0002380952355451882,-0.0001700680295471102,-0.0,-0.0,-0.0,-2.2169188433264134e-20,-0.0,-0.0,-2.0328790734103208e-20,-8.286212639120624e-20,6.80272132740356e-05,-3.767196675125003e-20,0.00034722223062999547,8.983213764068558e-20,-2.3493177437566918e-21,5.448812919803312e-19,-0.00034722223062999547,-0.0,-0.0,-0.0,-2.5666325501792205e-20,-0.0,-0.0,6.712336410733405e-22,-8.26058813470738e-20,-3.767196675125003e-20,4.960317528457381e-05,4.0,5.0,7.0,3.0,0.08282596617937088,-0.026428570970892906,-0.022397959604859352,-0.017202381044626236,-0.03232142701745033,0.0023809524718672037,0.0028571428265422583,0.002142857061699033,0.004285714123398066,0.001700680237263441,0.0017857142956927419,0.0035714285913854837,0.0009920635493472219,0.0026785715017467737,0.0035714285913854837,-0.026428570970892906,0.034285712987184525,0.0028571428265422583,0.002142857061699033,0.004285714123398066,-0.0071428571827709675,-0.0019047618843615055,-0.0014285714132711291,-0.0028571428265422583,-1.4576398083397142e-17,-5.399654299782322e-18,-1.9558051963467124e-17,-5.484428215052549e-19,-8.86730254749394e-18,-4.964283087206368e-17,-0.022397959604859352,0.0028571428265422583,0.021403061226010323,0.0017857142956927419,0.0035714285913854837,-2.5985260212255175e-17,-0.0014285714132711291,4.414781836408563e-19,-1.5452491539931656e-17,-0.003401360474526882,-0.0008928571478463709,-0.0017857142956927419,1.2385119919742358e-18,-1.6285103833977013e-18,-3.550447786257257e-17,-0.017202381044626236,0.002142857061699033,0.0017857142956927419,0.010892856866121292,0.0026785715017467737,-4.592698253206216e-18,-1.998401358298498e-18,-0.0007142857066355646,-1.0770976009223477e-17,3.34649337813766e-18,-0.0005952381179668009,-2.0769477409295428e-18,-0.0011904762359336019,-0.0008928571478463709,-2.962526518907232e-17,-0.03232142701745033,0.004285714123398066,0.0035714285913854837,0.0026785715017467737,0.06803571432828903,-4.1187006838742406e-17,-1.5130753023234255e-17,-5.8397921406381125e-18,-0.004285714123398066,-1.6809790700373992e-17,-8.8600647171341e-18,-0.0035714285913854837,-1.0787811616230769e-17,-0.0026785715017467737,-0.02142857201397419,0.0023809524718672037,-0.0071428571827709675,-2.5985260212255175e-17,-4.592698253206216e-18,-4.1187006838742406e-17,0.0023809524718672037,2.4450081651347597e-18,5.946364643193373e-19,3.667512454497293e-18,3.3986419458803e-18,1.05735530192206e-18,3.965082408057119e-18,-4.4056469836361075e-20,1.5860329011843016e-18,1.0309214012794325e-17,0.0028571428265422583,-0.0019047618843615055,-0.0014285714132711291,-1.998401358298498e-18,-1.5130753023234255e-17,2.4450081651347597e-18,0.0009523809421807528,3.806478900803778e-19,1.5225915603215112e-18,1.812608941298422e-18,4.758098496757752e-19,1.5860329011843016e-18,1.3510574626889694e-33,4.758098496757752e-19,3.806478797406201e-18,0.002142857061699033,-0.0014285714132711291,4.414781836408563e-19,-0.0007142857066355646,-5.8397921406381125e-18,5.946364643193373e-19,3.806478900803778e-19,0.0004761904710903764,6.779157676202573e-19,-4.531522353246055e-19,2.380849359797266e-21,4.758098496757752e-19,-1.4907779871675686e-19,3.3881317890172014e-19,9.516196993515503e-19,0.004285714123398066,-0.0028571428265422583,-1.5452491539931656e-17,-1.0770976009223477e-17,-0.004285714123398066,3.667512454497293e-18,1.5225915603215112e-18,6.779157676202573e-19,0.0028571428265422583,1.812608941298422e-18,9.516196993515503e-19,2.4288961343682987e-18,9.516196993515503e-19,1.6653344997146072e-18,7.612957594812403e-18,0.001700680237263441,-1.4576398083397142e-17,-0.003401360474526882,3.34649337813766e-18,-1.6809790700373992e-17,3.3986419458803e-18,1.812608941298422e-18,-4.531522353246055e-19,1.812608941298422e-18,0.0008503401186317205,-1.0609516764302874e-19,1.3810354183122756e-18,-3.146890767220705e-19,3.9481563859938335e-33,5.664403380997269e-18,0.0017857142956927419,-5.399654299782322e-18,-0.0008928571478463709,-0.0005952381179668009,-8.8600647171341e-18,1.05735530192206e-18,4.758098496757752e-19,2.380849359797266e-21,9.516196993515503e-19,-1.0609516764302874e-19,0.00029761905898340046,6.816165219820312e-19,6.748087738419315e-21,3.049318610115481e-19,2.3790494034752407e-18,0.0035714285913854837,-1.9558051963467124e-17,-0.0017857142956927419,-2.0769477409295428e-18,-0.0035714285913854837,3.965082408057119e-18,1.5860329011843016e-18,4.758098496757752e-19,2.4288961343682987e-18,1.3810354183122756e-18,6.816165219820312e-19,0.0017857142956927419,1.925929944387236e-34,5.946308703295591e-33,4.557820653576059e-32,0.0009920635493472219,-5.484428215052549e-19,1.2385119919742358e-18,-0.0011904762359336019,-1.0787811616230769e-17,-4.4056469836361075e-20,1.3510574626889694e-33,-1.4907779871675686e-19,9.516196993515503e-19,-3.146890767220705e-19,6.748087738419315e-21,1.925929944387236e-34,0.00019841270113829523,5.869286919739916e-19,3.436404601999724e-18,0.0026785715017467737,-8.86730254749394e-18,-1.6285103833977013e-18,-0.0008928571478463709,-0.0026785715017467737,1.5860329011843016e-18,4.758098496757752e-19,3.3881317890172014e-19,1.6653344997146072e-18,3.9481563859938335e-33,3.049318610115481e-19,5.946308703295591e-33,5.869286919739916e-19,0.0008928571478463709,2.4248003495652424e-18,0.0035714285913854837,-4.964283087206368e-17,-3.550447786257257e-17,-2.962526518907232e-17,-0.02142857201397419,1.0309214012794325e-17,3.806478797406201e-18,9.516196993515503e-19,7.612957594812403e-18,5.664403380997269e-18,2.3790494034752407e-18,4.557820653576059e-32,3.436404601999724e-18,2.4248003495652424e-18,0.010714286006987095,4.0,5.0,7.0,4.0,0.06678911298513412,-0.02046428620815277,-0.017334183678030968,-0.013303571380674839,-0.02046428620815277,0.0017857142956927419,0.002142857061699033,0.0016071428544819355,0.0025714286603033543,0.0012755101779475808,0.0013392857508733869,0.002142857061699033,0.0007440476329065859,0.0016071428544819355,0.0017857142956927419,-0.02046428620815277,0.02614285796880722,0.002142857061699033,0.0016071428544819355,0.0025714286603033543,-0.0053571430034935474,-0.0014285714132711291,-0.0010714285308495164,-0.001714285695925355,-0.0,-2.0328790734103208e-20,0.0,-4.0657581468206416e-20,-0.0,-0.0,-0.017334183678030968,0.002142857061699033,0.016320152208209038,0.0013392857508733869,0.002142857061699033,-0.0,-0.0010714285308495164,-2.0328790734103208e-20,-0.0,-0.0025510203558951616,-0.0006696428754366934,-0.0010714285308495164,4.691259524453597e-21,0.0,-0.0,-0.013303571380674839,0.0016071428544819355,0.0013392857508733869,0.008303571492433548,0.0016071428544819355,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.00044642857392318547,-0.0,-0.0008928571478463709,-0.0005357142654247582,-0.0,-0.02046428620815277,0.0025714286603033543,0.002142857061699033,0.0016071428544819355,0.02614285796880722,-0.0,-0.0,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0010714285308495164,-0.0053571430034935474,0.0017857142956927419,-0.0053571430034935474,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.002142857061699033,-0.0014285714132711291,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0010714285308495164,-2.0328790734103208e-20,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,6.776263578034403e-21,-0.0,1.3552527156068805e-20,-0.0,-0.0,0.0025714286603033543,-0.001714285695925355,-0.0,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012755101779475808,-0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-2.0328790734103208e-20,-0.0006696428754366934,-0.00044642857392318547,-0.0,-0.0,-0.0,6.776263578034403e-21,-0.0,-0.0,0.00022321428696159273,-0.0,-1.5637531411598003e-21,-0.0,-0.0,0.002142857061699033,0.0,-0.0010714285308495164,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.0007440476329065859,-4.0657581468206416e-20,4.691259524453597e-21,-0.0008928571478463709,-0.0,-0.0,-0.0,1.3552527156068805e-20,-0.0,-0.0,-1.5637531411598003e-21,-0.0,0.00014880952949170023,0.0,-0.0,0.0016071428544819355,-0.0,0.0,-0.0005357142654247582,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0003571428533177823,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0053571430034935474,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,4.0,5.0,7.0,5.0,0.056057821959257126,-0.01671428605914116,-0.01415306143462658,-0.010857142508029938,-0.01415306143462658,0.0014285714132711291,0.001714285695925355,0.0012857143301516771,0.001714285695925355,0.0010204081190750003,0.0010714285308495164,0.0014285714132711291,0.0005952381179668009,0.0010714285308495164,0.0010204081190750003,-0.01671428605914116,0.021142857149243355,0.001714285695925355,0.0012857143301516771,0.001714285695925355,-0.004285714123398066,-0.0011428571306169033,-0.0008571428479626775,-0.0011428571306169033,-0.0,-1.0164395367051604e-20,0.0,-1.2037062152420224e-35,-0.0,-0.0,-0.01415306143462658,0.001714285695925355,0.013198979198932648,0.0010714285308495164,0.0014285714132711291,-9.516196993515503e-19,-0.0008571428479626775,-1.0164395367051604e-20,-4.271179386699417e-34,-0.0020408162381500006,-0.0005357142654247582,-0.0007142857066355646,-1.7983161779669977e-20,0.0,0.0,-0.010857142508029938,0.0012857143301516771,0.0010714285308495164,0.00671428581699729,0.0010714285308495164,-7.137148003630569e-19,-3.1695304175152512e-34,-0.00042857142398133874,-1.903239450401889e-19,-0.0,-0.0003571428533177823,-0.0,-0.0007142857066355646,-0.0003571428533177823,-0.0,-0.01415306143462658,0.001714285695925355,0.0014285714132711291,0.0010714285308495164,0.013198979198932648,-9.516196993515503e-19,-4.226040403627841e-34,-1.903239450401889e-19,-0.0008571428479626775,-0.0,-2.256949153578792e-36,-0.0007142857066355646,-0.0,-0.0005357142654247582,-0.0020408162381500006,0.0014285714132711291,-0.004285714123398066,-9.516196993515503e-19,-7.137148003630569e-19,-9.516196993515503e-19,0.0014285714132711291,6.34413150133963e-19,4.758098496757752e-19,6.34413150133963e-19,-0.0,5.64237288394698e-36,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-0.0011428571306169033,-0.0008571428479626775,-3.1695304175152512e-34,-4.226040403627841e-34,6.34413150133963e-19,0.0005714285653084517,2.1130202018139207e-34,2.8173603456148077e-34,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0012857143301516771,-0.0008571428479626775,-1.0164395367051604e-20,-0.00042857142398133874,-1.903239450401889e-19,4.758098496757752e-19,2.1130202018139207e-34,0.0002857142826542258,1.268826300267926e-19,-0.0,3.3881317890172014e-21,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-0.0011428571306169033,-4.271179386699417e-34,-1.903239450401889e-19,-0.0008571428479626775,6.34413150133963e-19,2.8173603456148077e-34,1.268826300267926e-19,0.0005714285653084517,-0.0,1.504632769052528e-36,-0.0,6.018531076210112e-36,-0.0,-0.0,0.0010204081190750003,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-1.0164395367051604e-20,-0.0005357142654247582,-0.0003571428533177823,-2.256949153578792e-36,5.64237288394698e-36,0.0,3.3881317890172014e-21,1.504632769052528e-36,-0.0,0.00017857142665889114,-0.0,5.994386855993209e-21,-0.0,-0.0,0.0014285714132711291,0.0,-0.0007142857066355646,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.0005952381179668009,-1.2037062152420224e-35,-1.7983161779669977e-20,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,6.018531076210112e-36,-0.0,5.994386855993209e-21,-0.0,0.0001190476177725941,0.0,0.0,0.0010714285308495164,-0.0,0.0,-0.0003571428533177823,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.00017857142665889114,-0.0,0.0010204081190750003,-0.0,0.0,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0005102040595375001,4.0,5.0,7.0,6.0,0.04833900183439255,-0.01413265336304903,-0.011964285746216774,-0.009175170212984085,-0.010382653214037418,0.0011904762359336019,0.0014285714132711291,0.0010714285308495164,0.0012244897661730647,0.0008503401186317205,0.0008928571478463709,0.0010204081190750003,0.0004960317746736109,0.0007653061184100807,0.0006377550889737904,-0.01413265336304903,0.01775510236620903,0.0014285714132711291,0.0010714285308495164,0.0012244897661730647,-0.0035714285913854837,-0.0009523809421807528,-0.0007142857066355646,-0.0008163265301845968,-6.317158072142465e-18,-2.4269214474509815e-18,-2.3229022446515194e-18,2.052152123188865e-19,-6.140873837789744e-20,1.41492480121342e-18,-0.011964285746216774,0.0014285714132711291,0.011084184050559998,0.0008928571478463709,0.0010204081190750003,-1.2256258208401244e-17,-0.0007142857066355646,5.270055570515423e-19,-8.391783503502265e-19,-0.001700680237263441,-0.00044642857392318547,-0.0005102040595375001,6.251163121331147e-19,1.288023197731327e-18,1.7698439104245835e-18,-0.009175170212984085,0.0010714285308495164,0.0008928571478463709,0.005637755151838064,0.0007653061184100807,-1.4466885367354562e-18,-6.933229371072465e-19,-0.0003571428533177823,-3.9186634619236924e-19,2.4015272094407567e-18,-0.00029761905898340046,-6.776263578034403e-21,-0.0005952381179668009,-0.00025510202976875007,8.753889054477713e-19,-0.010382653214037418,0.0012244897661730647,0.0010204081190750003,0.0007653061184100807,0.007660714443773031,2.108452749865609e-19,-1.8964422229652052e-19,1.2900870133596467e-18,-0.0004897959297522902,3.216822270567163e-18,1.5129961876677136e-19,-0.0004081632650922984,2.710505431213761e-19,-0.0003061224415432662,-0.0009566326625645161,0.0011904762359336019,-0.0035714285913854837,-1.2256258208401244e-17,-1.4466885367354562e-18,2.108452749865609e-19,0.0011904762359336019,1.2225040825673799e-18,2.9731823215966863e-19,1.539854483663369e-19,1.69932097294015e-18,5.2867765096103e-19,4.984674640269449e-19,-2.2028234918180537e-20,-2.2657612735582555e-20,-2.8322015354022696e-19,0.0014285714132711291,-0.0009523809421807528,-0.0007142857066355646,-6.933229371072465e-19,-1.8964422229652052e-19,1.2225040825673799e-18,0.0004761904710903764,1.903239450401889e-19,1.7401046994517708e-19,9.06304470649211e-19,2.379049248378876e-19,2.3563917374252827e-19,-3.8473245927967093e-34,-2.718913592893392e-20,-8.49660473545378e-20,0.0010714285308495164,-0.0007142857066355646,5.270055570515423e-19,-0.0003571428533177823,1.2900870133596467e-18,2.9731823215966863e-19,1.903239450401889e-19,0.0002380952355451882,-8.067700601852524e-20,-2.2657611766230274e-19,3.891772953140071e-22,-2.6383114661073483e-20,-7.453889935837843e-20,-5.759824041329242e-20,-2.1060765443090797e-19,0.0012244897661730647,-0.0008163265301845968,-8.391783503502265e-19,-3.9186634619236924e-19,-0.0004897959297522902,1.539854483663369e-19,1.7401046994517708e-19,-8.067700601852524e-20,0.00032653060043230653,-2.5894414093355167e-20,8.212317622320936e-20,1.0164395367051604e-19,-1.4507010178269212e-21,8.82435566613231e-20,4.9281062138693906e-20,0.0008503401186317205,-6.317158072142465e-18,-0.001700680237263441,2.4015272094407567e-18,3.216822270567163e-18,1.69932097294015e-18,9.06304470649211e-19,-2.2657611766230274e-19,-2.5894414093355167e-20,0.00042517005931586027,-5.304758382151437e-20,-7.27509743137392e-20,-1.5734453836103525e-19,-2.9131215128010353e-19,-3.540252113123293e-19,0.0008928571478463709,-2.4269214474509815e-18,-0.00044642857392318547,-0.00029761905898340046,1.5129961876677136e-19,5.2867765096103e-19,2.379049248378876e-19,3.891772953140071e-22,8.212317622320936e-20,-5.304758382151437e-20,0.00014880952949170023,3.1852873926561655e-20,3.0112812468299523e-22,-1.8634724839594607e-20,-5.201829648968564e-20,0.0010204081190750003,-2.3229022446515194e-18,-0.0005102040595375001,-6.776263578034403e-21,-0.0004081632650922984,4.984674640269449e-19,2.3563917374252827e-19,-2.6383114661073483e-20,1.0164395367051604e-19,-7.27509743137392e-20,3.1852873926561655e-20,0.0002040816325461492,1.343368173922218e-21,-1.0434683094551841e-20,-2.8095687106200824e-20,0.0004960317746736109,2.052152123188865e-19,6.251163121331147e-19,-0.0005952381179668009,2.710505431213761e-19,-2.2028234918180537e-20,-3.8473245927967093e-34,-7.453889935837843e-20,-1.4507010178269212e-21,-1.5734453836103525e-19,3.0112812468299523e-22,1.343368173922218e-21,9.920635056914762e-05,9.205931538153286e-22,-6.001871305729036e-20,0.0007653061184100807,-6.140873837789744e-20,1.288023197731327e-18,-0.00025510202976875007,-0.0003061224415432662,-2.2657612735582555e-20,-2.718913592893392e-20,-5.759824041329242e-20,8.82435566613231e-20,-2.9131215128010353e-19,-1.8634724839594607e-20,-1.0434683094551841e-20,9.205931538153286e-22,0.0001020408162730746,-6.625051084650588e-20,0.0006377550889737904,1.41492480121342e-18,1.7698439104245835e-18,8.753889054477713e-19,-0.0009566326625645161,-2.8322015354022696e-19,-8.49660473545378e-20,-2.1060765443090797e-19,4.9281062138693906e-20,-3.540252113123293e-19,-5.201829648968564e-20,-2.8095687106200824e-20,-6.001871305729036e-20,-6.625051084650588e-20,0.00019132652960252017,4.0,5.0,7.0,7.0,0.04250789433717728,-0.01224489789456129,-0.010364431887865067,-0.007946428842842579,-0.007946428842842579,0.0010204081190750003,0.0012244897661730647,0.000918367353733629,0.000918367353733629,0.0007288630004040897,0.0007653061184100807,0.0007653061184100807,0.00042517005931586027,0.0005739795742556453,0.00042517005931586027,-0.01224489789456129,0.015306122601032257,0.0012244897661730647,0.000918367353733629,0.000918367353733629,-0.0030612244736403227,-0.0008163265301845968,-0.0006122448830865324,-0.0006122448830865324,-4.8875707707885064e-18,-1.9028096783748794e-18,-1.9037061353637337e-18,6.157358771916102e-19,-1.341384127908634e-19,5.998577834421368e-19,-0.010364431887865067,0.0012244897661730647,0.00955539382994175,0.0007653061184100807,0.0007653061184100807,-9.484569535999385e-18,-0.0006122448830865324,3.969541531944239e-19,3.953781414829631e-19,-0.0014577260008081794,-0.00038265305920504034,-0.00038265305920504034,5.407496282182054e-19,7.31679043617389e-19,5.381229678818316e-19,-0.007946428842842579,0.000918367353733629,0.0007653061184100807,0.004859693814069033,0.0005739795742556453,-4.43777073659506e-19,-6.525392622944141e-19,-0.0003061224415432662,6.074087016638271e-19,2.036790603731931e-18,-0.00025510202976875007,-2.710505431213761e-20,-0.0005102040595375001,-0.00019132652960252017,3.626957443425043e-19,-0.007946428842842579,0.000918367353733629,0.0007653061184100807,0.0005739795742556453,0.004859693814069033,-4.43777073659506e-19,-6.525392622944141e-19,5.393514344890494e-19,-0.0003061224415432662,2.036790603731931e-18,-4.2065042205162464e-20,-0.00025510202976875007,-4.0657581468206416e-20,-0.00019132652960252017,-0.0005102040595375001,0.0010204081190750003,-0.0030612244736403227,-9.484569535999385e-18,-4.43777073659506e-19,-4.43777073659506e-19,0.0010204081190750003,1.7312265957866333e-19,-3.9331766042648767e-19,-3.9331766042648767e-19,1.4565608339487e-18,4.531522353246055e-19,4.531522353246055e-19,-1.8881344215583318e-20,4.24830236772689e-20,-1.8881344215583318e-20,0.0012244897661730647,-0.0008163265301845968,-0.0006122448830865324,-6.525392622944141e-19,-6.525392622944141e-19,1.7312265957866333e-19,0.0004081632650922984,1.6313481557360351e-19,1.6313481557360351e-19,7.768324551123977e-19,2.0391851623583012e-19,2.0391851623583012e-19,-4.54667944668866e-34,-3.885904225555201e-34,-4.365376432641111e-34,0.000918367353733629,-0.0006122448830865324,3.969541531944239e-19,-0.0003061224415432662,5.393514344890494e-19,-3.9331766042648767e-19,1.6313481557360351e-19,0.0002040816325461492,-5.862274237603056e-20,-1.9420811377809942e-19,-4.120700892706188e-22,1.555351103565149e-22,-1.2197274440461925e-19,-3.3881317890172014e-21,-9.0590533015426e-20,0.000918367353733629,-0.0006122448830865324,3.953781414829631e-19,6.074087016638271e-19,-0.0003061224415432662,-3.9331766042648767e-19,1.6313481557360351e-19,-5.862274237603056e-20,0.0002040816325461492,-1.9420811377809942e-19,2.688001251596078e-22,2.1714896237274948e-35,-8.95663283207205e-20,-2.8368508074327005e-20,-1.1565585040988734e-19,0.0007288630004040897,-4.8875707707885064e-18,-0.0014577260008081794,2.036790603731931e-18,2.036790603731931e-18,1.4565608339487e-18,7.768324551123977e-19,-1.9420811377809942e-19,-1.9420811377809942e-19,0.00036443150020204484,-7.365375794180987e-20,-7.365375794180987e-20,-1.3486674532021635e-19,-1.820701042435875e-19,-1.3486674532021635e-19,0.0007653061184100807,-1.9028096783748794e-18,-0.00038265305920504034,-0.00025510202976875007,-4.2065042205162464e-20,4.531522353246055e-19,2.0391851623583012e-19,-4.120700892706188e-22,2.688001251596078e-22,-7.365375794180987e-20,0.00012755101488437504,1.683382178350882e-20,-6.867834652886654e-22,1.6940658945086007e-21,4.480001917703137e-22,0.0007653061184100807,-1.9037061353637337e-18,-0.00038265305920504034,-2.710505431213761e-20,-0.00025510202976875007,4.531522353246055e-19,2.0391851623583012e-19,1.555351103565149e-22,2.1714896237274948e-35,-7.365375794180987e-20,1.683382178350882e-20,0.00012755101488437504,2.5922517130575033e-22,-2.826951943504627e-21,-1.838233818424196e-35,0.00042517005931586027,6.157358771916102e-19,5.407496282182054e-19,-0.0005102040595375001,-4.0657581468206416e-20,-1.8881344215583318e-20,-4.54667944668866e-34,-1.2197274440461925e-19,-8.95663283207205e-20,-1.3486674532021635e-19,-6.867834652886654e-22,2.5922517130575033e-22,8.50340147735551e-05,1.0120780168991472e-20,1.4367335602350483e-20,0.0005739795742556453,-1.341384127908634e-19,7.31679043617389e-19,-0.00019132652960252017,-0.00019132652960252017,4.24830236772689e-20,-3.885904225555201e-34,-3.3881317890172014e-21,-2.8368508074327005e-20,-1.820701042435875e-19,1.6940658945086007e-21,-2.826951943504627e-21,1.0120780168991472e-20,6.377550744218752e-05,-1.2066773774134614e-19,0.00042517005931586027,5.998577834421368e-19,5.381229678818316e-19,3.626957443425043e-19,-0.0005102040595375001,-1.8881344215583318e-20,-4.365376432641111e-34,-9.0590533015426e-20,-1.1565585040988734e-19,-1.3486674532021635e-19,4.480001917703137e-22,-1.838233818424196e-35,1.4367335602350483e-20,-1.2066773774134614e-19,8.50340147735551e-05,4.0,5.0,7.0,8.0,0.037942178547382355,-0.010803570970892906,-0.009143282659351826,-0.007008928339928389,-0.006279761902987957,0.0008928571478463709,0.0010714285308495164,0.0008035714272409678,0.0007142857066355646,0.0006377550889737904,0.0006696428754366934,0.0005952381179668009,0.00037202381645329297,0.00044642857392318547,0.00029761905898340046,-0.010803570970892906,0.013452380895614624,0.0010714285308495164,0.0008035714272409678,0.0007142857066355646,-0.0026785715017467737,-0.0007142857066355646,-0.0005357142654247582,-0.0004761904710903764,-0.0,-7.600464240118965e-21,-5.293955920339377e-21,-3.7578731217753085e-20,-3.2167554757326994e-20,-9.038088150423502e-20,-0.009143282659351826,0.0010714285308495164,0.00839817151427269,0.0006696428754366934,0.0005952381179668009,-0.0,-0.0005357142654247582,-7.980996402461768e-21,-4.9677858416713606e-21,-0.0012755101779475808,-0.0003348214377183467,-0.00029761905898340046,5.984628305807714e-21,-3.176373552203626e-20,2.576765755021065e-21,-0.007008928339928389,0.0008035714272409678,0.0006696428754366934,0.0042708334513008595,0.00044642857392318547,-0.0,-0.0,-0.0002678571327123791,-3.009921871620656e-20,-0.0,-0.00022321428696159273,-2.371692252312041e-20,-0.00044642857392318547,-0.00014880952949170023,-4.8758471399667924e-20,-0.006279761902987957,0.0007142857066355646,0.0005952381179668009,0.00044642857392318547,0.0032823130022734404,-0.0,-0.0,6.3471874651827445e-21,-0.0002040816325461492,-0.0,-7.098942877777057e-22,-0.0001700680295471102,1.3552527156068805e-20,-0.00012755101488437504,-0.00029761905898340046,0.0008928571478463709,-0.0026785715017467737,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008035714272409678,-0.0005357142654247582,-7.980996402461768e-21,-0.0002678571327123791,6.3471874651827445e-21,-0.0,-0.0,0.00017857142665889114,-5.2780302701670305e-22,-0.0,2.9073833431202964e-21,-2.117582368135751e-22,1.3552527156068805e-20,-1.6940658945086007e-21,-6.573226091242963e-24,0.0007142857066355646,-0.0004761904710903764,-4.9677858416713606e-21,-3.009921871620656e-20,-0.0002040816325461492,-0.0,-0.0,-5.2780302701670305e-22,0.0001360544265480712,-0.0,-3.2048157112603164e-22,1.6940658945086007e-21,-8.796717453525704e-22,1.0642786065474984e-20,2.58287437075367e-20,0.0006377550889737904,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,-7.600464240118965e-21,-0.0003348214377183467,-0.00022321428696159273,-7.098942877777057e-22,-0.0,-0.0,2.9073833431202964e-21,-3.2048157112603164e-22,-0.0,0.00011160714348079637,-1.7646519313738774e-22,-1.5831239299209771e-21,1.6940658945086007e-21,-4.673689610475731e-22,0.0005952381179668009,-5.293955920339377e-21,-0.00029761905898340046,-2.371692252312041e-20,-0.0001700680295471102,-0.0,-0.0,-2.117582368135751e-22,1.6940658945086007e-21,-0.0,-1.7646519313738774e-22,8.50340147735551e-05,-3.529303862747755e-22,7.623296525288703e-21,-3.3561682053667026e-22,0.00037202381645329297,-3.7578731217753085e-20,5.984628305807714e-21,-0.00044642857392318547,1.3552527156068805e-20,-0.0,-0.0,1.3552527156068805e-20,-8.796717453525704e-22,-0.0,-1.5831239299209771e-21,-3.529303862747755e-22,7.440476474585012e-05,3.257818934694205e-21,-1.0800117191231634e-21,0.00044642857392318547,-3.2167554757326994e-20,-3.176373552203626e-20,-0.00014880952949170023,-0.00012755101488437504,-0.0,-0.0,-1.6940658945086007e-21,1.0642786065474984e-20,-0.0,1.6940658945086007e-21,7.623296525288703e-21,3.257818934694205e-21,4.251700738677755e-05,1.6206613699627622e-20,0.00029761905898340046,-9.038088150423502e-20,2.576765755021065e-21,-4.8758471399667924e-20,-0.00029761905898340046,-0.0,-0.0,-6.573226091242963e-24,2.58287437075367e-20,-0.0,-4.673689610475731e-22,-3.3561682053667026e-22,-1.0800117191231634e-21,1.6206613699627622e-20,4.251700738677755e-05,4.0,5.0,8.0,3.0,0.07408729940652847,-0.023333333432674408,-0.019771825522184372,-0.013611110858619213,-0.028541667386889458,0.0020833334419876337,0.0024999999441206455,0.0016666667070239782,0.0037499999161809683,0.0014880952658131719,0.0013888889225199819,0.0031250000465661287,0.0006944444612599909,0.0020833334419876337,0.0031250000465661287,-0.023333333432674408,0.030138889327645302,0.0024999999441206455,0.0016666667070239782,0.0037499999161809683,-0.0062500000931322575,-0.0016666667070239782,-0.0011111111380159855,-0.0024999999441206455,2.6020852139652106e-18,5.421010862427522e-19,6.7220534694101275e-18,-4.336808689942018e-18,9.75781955236954e-19,2.168404344971009e-17,-0.019771825522184372,0.0024999999441206455,0.018814483657479286,0.0013888889225199819,0.0031250000465661287,9.371131641155088e-18,-0.0012499999720603228,-1.3552527156068805e-19,2.6020852139652106e-18,-0.0029761905316263437,-0.0006944444612599909,-0.0015625000232830644,-2.5478751053409354e-18,-8.673617379884035e-19,7.37257477290143e-18,-0.013611110858619213,0.0016666667070239782,0.0013888889225199819,0.007361111231148243,0.0020833334419876337,-5.4492611482977394e-18,-2.9115847663192766e-18,-0.0004761904710903764,-1.3010426069826053e-18,-2.3141002157533427e-18,-0.00039682540227659047,-1.0842021724855044e-18,-0.0006944444612599909,-0.0005952381179668009,4.336808689942018e-18,-0.028541667386889458,0.0037499999161809683,0.0031250000465661287,0.0020833334419876337,0.05979166552424431,2.0274580625478933e-17,-6.404936514192637e-19,2.843960683291535e-18,-0.0037499999161809683,1.8133587805237013e-18,1.2670095014500298e-18,-0.0031250000465661287,-6.505213034913027e-19,-0.0020833334419876337,-0.01875000074505806,0.0020833334419876337,-0.0062500000931322575,9.371131641155088e-18,-5.4492611482977394e-18,2.0274580625478933e-17,0.0020833334419876337,-2.1896324878261104e-18,6.504458232604072e-19,-3.113598815516977e-18,-7.068582485668166e-19,-2.578936150932608e-19,-1.7643555670602942e-18,8.131516293641283e-19,-3.5236570605778894e-19,-4.9873299934333204e-18,0.0024999999441206455,-0.0016666667070239782,-0.0012499999720603228,-2.9115847663192766e-18,-6.404936514192637e-19,-2.1896324878261104e-18,0.0008333333535119891,1.0842021724855044e-19,-1.589951384992936e-19,-1.6941815705473874e-19,3.478449572150335e-20,2.402724611538564e-20,2.981555974335137e-19,2.710505431213761e-19,8.131516293641283e-20,0.0016666667070239782,-0.0011111111380159855,-1.3552527156068805e-19,-0.0004761904710903764,2.843960683291535e-18,6.504458232604072e-19,1.0842021724855044e-19,0.0003174603043589741,-8.533423320000339e-20,5.370731852116223e-21,2.2328724431561764e-20,-1.8876912983192477e-19,2.168404344971009e-19,-0.0,-1.111307226797642e-18,0.0037499999161809683,-0.0024999999441206455,2.6020852139652106e-18,-1.3010426069826053e-18,-0.0037499999161809683,-3.113598815516977e-18,-1.589951384992936e-19,-8.533423320000339e-20,0.0024999999441206455,-3.1170812458958252e-19,-7.26758495120132e-20,-7.988191225892103e-19,2.981555974335137e-19,-5.421010862427522e-19,-3.903127820947816e-18,0.0014880952658131719,2.6020852139652106e-18,-0.0029761905316263437,-2.3141002157533427e-18,1.8133587805237013e-18,-7.068582485668166e-19,-1.6941815705473874e-19,5.370731852116223e-21,-3.1170812458958252e-19,0.0007440476329065859,-1.6233594004763629e-19,2.0770638305586358e-19,3.7947076036992655e-19,1.8973538018496328e-19,-1.1519648082658485e-18,0.0013888889225199819,5.421010862427522e-19,-0.0006944444612599909,-0.00039682540227659047,1.2670095014500298e-18,-2.578936150932608e-19,3.478449572150335e-20,2.2328724431561764e-20,-7.26758495120132e-20,-1.6233594004763629e-19,0.00019841270113829523,1.0842021724855044e-19,1.2197274440461925e-19,-0.0,-6.098637220230962e-19,0.0031250000465661287,6.7220534694101275e-18,-0.0015625000232830644,-1.0842021724855044e-18,-0.0031250000465661287,-1.7643555670602942e-18,2.402724611538564e-20,-1.8876912983192477e-19,-7.988191225892103e-19,2.0770638305586358e-19,1.0842021724855044e-19,0.0015625000232830644,2.168404344971009e-19,-4.2012834183813297e-19,-8.673617379884035e-19,0.0006944444612599909,-4.336808689942018e-18,-2.5478751053409354e-18,-0.0006944444612599909,-6.505213034913027e-19,8.131516293641283e-19,2.981555974335137e-19,2.168404344971009e-19,2.981555974335137e-19,3.7947076036992655e-19,1.2197274440461925e-19,2.168404344971009e-19,9.920635056914762e-05,0.0,0.0,0.0020833334419876337,9.75781955236954e-19,-8.673617379884035e-19,-0.0005952381179668009,-0.0020833334419876337,-3.5236570605778894e-19,2.710505431213761e-19,-0.0,-5.421010862427522e-19,1.8973538018496328e-19,-0.0,-4.2012834183813297e-19,0.0,0.0005952381179668009,-3.2905270616753583e-19,0.0031250000465661287,2.168404344971009e-17,7.37257477290143e-18,4.336808689942018e-18,-0.01875000074505806,-4.9873299934333204e-18,8.131516293641283e-20,-1.111307226797642e-18,-3.903127820947816e-18,-1.1519648082658485e-18,-6.098637220230962e-19,-8.673617379884035e-19,0.0,-3.2905270616753583e-19,0.00937500037252903,4.0,5.0,8.0,4.0,0.05969047546386719,-0.018062500283122063,-0.015297618694603443,-0.010520833544433117,-0.018062500283122063,0.0015625000232830644,0.0018749999580904841,0.0012499999720603228,0.0022499999031424522,0.0011160714784637094,0.0010416667209938169,0.0018749999580904841,0.0005208333604969084,0.0012499999720603228,0.0015625000232830644,-0.018062500283122063,0.022979166358709335,0.0018749999580904841,0.0012499999720603228,0.0022499999031424522,-0.004687500186264515,-0.0012499999720603228,-0.0008333333535119891,-0.001500000013038516,-0.0,-4.336808689942018e-19,-3.469446951953614e-18,1.951563910473908e-18,-3.3610267347050637e-18,-1.0408340855860843e-17,-0.015297618694603443,0.0018749999580904841,0.014345237985253334,0.0010416667209938169,0.0018749999580904841,-3.572184024803619e-18,-0.0009374999790452421,-0.0,-4.0115480381963664e-18,-0.0022321429569274187,-0.0005208333604969084,-0.0009374999790452421,7.318364664277155e-19,8.131516293641283e-19,-7.37257477290143e-18,-0.010520833544433117,0.0012499999720603228,0.0010416667209938169,0.0056101190857589245,0.0012499999720603228,1.9502278069894817e-18,2.652357529283427e-18,-0.0003571428533177823,-2.6020852139652106e-18,3.1347787751013973e-18,-0.00029761905898340046,-5.421010862427522e-19,-0.0005208333604969084,-0.0003571428533177823,-6.5052130349130266e-18,-0.018062500283122063,0.0022499999031424522,0.0018749999580904841,0.0012499999720603228,0.022979166358709335,-7.752045533271357e-18,-4.9082007586631555e-19,-5.8894593733382465e-18,-0.001500000013038516,-1.1290731018013263e-18,-2.4323551968948423e-18,-0.0012499999720603228,-1.0299920638612292e-18,-0.0008333333535119891,-0.004687500186264515,0.0015625000232830644,-0.004687500186264515,-3.572184024803619e-18,1.9502278069894817e-18,-7.752045533271357e-18,0.0015625000232830644,2.3727727569871883e-19,2.7289192471310157e-19,1.1375407429368785e-18,3.4160923031790837e-19,1.5448657764587625e-19,7.02804753372577e-19,-4.0657581468206416e-19,3.5236570605778894e-19,9.215718466126788e-19,0.0018749999580904841,-0.0012499999720603228,-0.0009374999790452421,2.652357529283427e-18,-4.9082007586631555e-19,2.3727727569871883e-19,0.0006249999860301614,-2.846030702774449e-19,-4.246942043360152e-20,-3.873699991776841e-19,-3.3417874442352694e-19,-3.803685615272763e-19,-1.8973538018496328e-19,-9.486769009248164e-20,5.014435047745458e-19,0.0012499999720603228,-0.0008333333535119891,-0.0,-0.0003571428533177823,-5.8894593733382465e-18,2.7289192471310157e-19,-2.846030702774449e-19,0.0002380952355451882,3.8477340168669774e-19,-9.189603727953635e-20,8.878942477977421e-20,2.852003463784965e-19,-5.421010862427522e-20,3.4558944247975454e-19,1.043544591017298e-18,0.0022499999031424522,-0.001500000013038516,-4.0115480381963664e-18,-2.6020852139652106e-18,-0.001500000013038516,1.1375407429368785e-18,-4.246942043360152e-20,3.8477340168669774e-19,0.0010000000474974513,4.2012834183813297e-19,2.582186195258117e-19,8.337676068671523e-19,-0.0,8.131516293641283e-19,1.666960840196463e-18,0.0011160714784637094,-0.0,-0.0022321429569274187,3.1347787751013973e-18,-1.1290731018013263e-18,3.4160923031790837e-19,-3.873699991776841e-19,-9.189603727953635e-20,4.2012834183813297e-19,0.0005580357392318547,-6.024877525009609e-19,-1.7863223822024055e-19,-1.3552527156068805e-19,-3.2526065174565133e-19,6.776263578034403e-19,0.0010416667209938169,-4.336808689942018e-19,-0.0005208333604969084,-0.00029761905898340046,-2.4323551968948423e-18,1.5448657764587625e-19,-3.3417874442352694e-19,8.878942477977421e-20,2.582186195258117e-19,-6.024877525009609e-19,0.00014880952949170023,-1.2197274440461925e-19,0.0,8.809142651444724e-20,6.098637220230962e-19,0.0018749999580904841,-3.469446951953614e-18,-0.0009374999790452421,-5.421010862427522e-19,-0.0012499999720603228,7.02804753372577e-19,-3.803685615272763e-19,2.852003463784965e-19,8.337676068671523e-19,-1.7863223822024055e-19,-1.2197274440461925e-19,0.0006249999860301614,1.3552527156068805e-20,2.236166980751353e-19,1.145188544687814e-18,0.0005208333604969084,1.951563910473908e-18,7.318364664277155e-19,-0.0005208333604969084,-1.0299920638612292e-18,-4.0657581468206416e-19,-1.8973538018496328e-19,-5.421010862427522e-20,-0.0,-1.3552527156068805e-19,0.0,1.3552527156068805e-20,7.440476474585012e-05,9.486769009248164e-20,2.981555974335137e-19,0.0012499999720603228,-3.3610267347050637e-18,8.131516293641283e-19,-0.0003571428533177823,-0.0008333333535119891,3.5236570605778894e-19,-9.486769009248164e-20,3.4558944247975454e-19,8.131516293641283e-19,-3.2526065174565133e-19,8.809142651444724e-20,2.236166980751353e-19,9.486769009248164e-20,0.0002380952355451882,6.856947291970708e-19,0.0015625000232830644,-1.0408340855860843e-17,-7.37257477290143e-18,-6.5052130349130266e-18,-0.004687500186264515,9.215718466126788e-19,5.014435047745458e-19,1.043544591017298e-18,1.666960840196463e-18,6.776263578034403e-19,6.098637220230962e-19,1.145188544687814e-18,2.981555974335137e-19,6.856947291970708e-19,0.0015625000232830644,4.0,5.0,8.0,5.0,0.05007142946124077,-0.014750000089406967,-0.012488095089793205,-0.00858333334326744,-0.012488095089793205,0.0012499999720603228,0.001500000013038516,0.0010000000474974513,0.001500000013038516,0.0008928571478463709,0.0008333333535119891,0.0012499999720603228,0.00041666667675599456,0.0008333333535119891,0.0008928571478463709,-0.014750000089406967,0.018583333119750023,0.001500000013038516,0.0010000000474974513,0.001500000013038516,-0.0037499999161809683,-0.0010000000474974513,-0.0006666666595265269,-0.0010000000474974513,-4.7704895589362195e-18,-3.2526065174565133e-19,1.0842021724855044e-19,-1.8431436932253575e-18,-9.215718466126788e-19,-4.336808689942018e-18,-0.012488095089793205,0.001500000013038516,0.011601190082728863,0.0008333333535119891,0.0012499999720603228,-1.95081283047771e-18,-0.000750000006519258,-8.063753657860939e-19,-3.7947076036992655e-19,-0.0017857142956927419,-0.00041666667675599456,-0.0006249999860301614,-1.7889335846010823e-18,-1.0842021724855044e-18,8.673617379884035e-19,-0.00858333334326744,0.0010000000474974513,0.0008333333535119891,0.004535714164376259,0.0008333333535119891,-2.9710576047957673e-18,-2.3992297152893907e-18,-0.0002857142826542258,-1.2468324983583301e-18,-3.702485650796035e-18,-0.0002380952355451882,-4.336808689942018e-19,-0.00041666667675599456,-0.0002380952355451882,-1.0842021724855044e-18,-0.012488095089793205,0.001500000013038516,0.0012499999720603228,0.0008333333535119891,0.011601190082728863,-2.15485181781494e-18,-1.420809674283852e-18,7.88514894924546e-20,-0.000750000006519258,-5.121808261133669e-19,7.03786358265736e-19,-0.0006249999860301614,-8.131516293641283e-19,-0.00041666667675599456,-0.0017857142956927419,0.0012499999720603228,-0.0037499999161809683,-1.95081283047771e-18,-2.9710576047957673e-18,-2.15485181781494e-18,0.0012499999720603228,-2.1325379228576803e-19,1.5335372794759074e-19,-2.4392754932970375e-19,5.065076595809603e-19,2.516544825384574e-20,6.263942157066296e-20,3.5236570605778894e-19,6.776263578034403e-20,5.285485590866834e-19,0.001500000013038516,-0.0010000000474974513,-0.000750000006519258,-2.3992297152893907e-18,-1.420809674283852e-18,-2.1325379228576803e-19,0.0005000000237487257,9.486769009248164e-20,5.781181457004449e-20,1.034126829550652e-18,1.4461955370903746e-19,7.63703612451018e-20,2.303929616531697e-19,1.6263032587282567e-19,1.3552527156068805e-19,0.0010000000474974513,-0.0006666666595265269,-8.063753657860939e-19,-0.0002857142826542258,7.88514894924546e-20,1.5335372794759074e-19,9.486769009248164e-20,0.00019047618843615055,-4.007469701734356e-20,2.0400119552299421e-19,-1.2981913897281432e-20,-6.924091739490139e-20,4.0657581468206416e-20,6.776263578034403e-21,3.3881317890172014e-20,0.001500000013038516,-0.0010000000474974513,-3.7947076036992655e-19,-1.2468324983583301e-18,-0.000750000006519258,-2.4392754932970375e-19,5.781181457004449e-20,-4.007469701734356e-20,0.0005000000237487257,1.0842021724855044e-19,2.4037873447552386e-20,-9.940330879921742e-20,1.3552527156068805e-19,1.9651164376299768e-19,9.41900637346782e-19,0.0008928571478463709,-4.7704895589362195e-18,-0.0017857142956927419,-3.702485650796035e-18,-5.121808261133669e-19,5.065076595809603e-19,1.034126829550652e-18,2.0400119552299421e-19,1.0842021724855044e-19,0.00044642857392318547,5.1349842143158735e-19,2.4236877916413586e-19,2.574980159653073e-19,1.5246593050577406e-19,-1.6940658945086007e-19,0.0008333333535119891,-3.2526065174565133e-19,-0.00041666667675599456,-0.0002380952355451882,7.03786358265736e-19,2.516544825384574e-20,1.4461955370903746e-19,-1.2981913897281432e-20,2.4037873447552386e-20,5.1349842143158735e-19,0.0001190476177725941,-9.486769009248164e-20,4.0657581468206416e-20,-6.776263578034403e-21,-1.1519648082658485e-19,0.0012499999720603228,1.0842021724855044e-19,-0.0006249999860301614,-4.336808689942018e-19,-0.0006249999860301614,6.263942157066296e-20,7.63703612451018e-20,-6.924091739490139e-20,-9.940330879921742e-20,2.4236877916413586e-19,-9.486769009248164e-20,0.0003124999930150807,6.776263578034403e-20,9.147955830346444e-20,-1.0164395367051604e-20,0.00041666667675599456,-1.8431436932253575e-18,-1.7889335846010823e-18,-0.00041666667675599456,-8.131516293641283e-19,3.5236570605778894e-19,2.303929616531697e-19,4.0657581468206416e-20,1.3552527156068805e-19,2.574980159653073e-19,4.0657581468206416e-20,6.776263578034403e-20,5.952380888629705e-05,2.710505431213761e-20,6.776263578034403e-20,0.0008333333535119891,-9.215718466126788e-19,-1.0842021724855044e-18,-0.0002380952355451882,-0.00041666667675599456,6.776263578034403e-20,1.6263032587282567e-19,6.776263578034403e-21,1.9651164376299768e-19,1.5246593050577406e-19,-6.776263578034403e-21,9.147955830346444e-20,2.710505431213761e-20,0.0001190476177725941,3.960200077889101e-19,0.0008928571478463709,-4.336808689942018e-18,8.673617379884035e-19,-1.0842021724855044e-18,-0.0017857142956927419,5.285485590866834e-19,1.3552527156068805e-19,3.3881317890172014e-20,9.41900637346782e-19,-1.6940658945086007e-19,-1.1519648082658485e-19,-1.0164395367051604e-20,6.776263578034403e-20,3.960200077889101e-19,0.00044642857392318547,4.0,5.0,8.0,6.0,0.04315972328186035,-0.012470237910747528,-0.010555555112659931,-0.0072519839741289616,-0.009159225970506668,0.0010416667209938169,0.0012499999720603228,0.0008333333535119891,0.0010714285308495164,0.0007440476329065859,0.0006944444612599909,0.0008928571478463709,0.00034722223062999547,0.0005952381179668009,0.0005580357392318547,-0.012470237910747528,0.015605159103870392,0.0012499999720603228,0.0008333333535119891,0.0010714285308495164,-0.0031250000465661287,-0.0008333333535119891,-0.0005555555690079927,-0.0007142857066355646,-0.0,1.0676555067747608e-20,0.0,1.1858461261560205e-19,1.88079096131566e-36,-0.0,-0.010555555112659931,0.0012499999720603228,0.009742063470184803,0.0006944444612599909,0.0008928571478463709,-0.0,-0.0006249999860301614,1.0676555067747608e-20,2.1832170883333517e-36,-0.0014880952658131719,-0.00034722223062999547,-0.00044642857392318547,7.785529746306366e-21,5.929230630780102e-21,-0.0,-0.0072519839741289616,0.0008333333535119891,0.0006944444612599909,0.00380810652859509,0.0005952381179668009,-0.0,-0.0,-0.0002380952355451882,-9.063045094233022e-20,-0.0,-0.00019841270113829523,-0.0,-0.00034722223062999547,-0.0001700680295471102,-0.0,-0.009159225970506668,0.0010714285308495164,0.0008928571478463709,0.0005952381179668009,0.006732887122780085,-0.0,-0.0,-9.063045094233022e-20,-0.00042857142398133874,-0.0,5.929230630780102e-21,-0.0003571428533177823,1.3552527156068805e-20,-0.0002380952355451882,-0.0008370535797439516,0.0010416667209938169,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0012499999720603228,-0.0008333333535119891,-0.0006249999860301614,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0005555555690079927,1.0676555067747608e-20,-0.0002380952355451882,-9.063045094233022e-20,-0.0,-0.0,0.00015873015217948705,6.042030278233632e-20,-0.0,-3.0504441896716642e-21,-0.0,-3.3881317890172014e-20,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,2.1832170883333517e-36,-9.063045094233022e-20,-0.00042857142398133874,-0.0,-0.0,6.042030278233632e-20,0.0002857142826542258,-0.0,-6.237763301701937e-37,-0.0,-1.0532429383367696e-35,-7.52316384526264e-37,-0.0,0.0007440476329065859,-0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,1.0676555067747608e-20,-0.00034722223062999547,-0.00019841270113829523,5.929230630780102e-21,-0.0,-0.0,-3.0504441896716642e-21,-6.237763301701937e-37,-0.0,9.920635056914762e-05,-0.0,-2.2244370992230178e-21,-1.6940658945086007e-21,-0.0,0.0008928571478463709,0.0,-0.00044642857392318547,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,0.00034722223062999547,1.1858461261560205e-19,7.785529746306366e-21,-0.00034722223062999547,1.3552527156068805e-20,-0.0,-0.0,-3.3881317890172014e-20,-1.0532429383367696e-35,-0.0,-2.2244370992230178e-21,-0.0,4.960317528457381e-05,-2.940642627652177e-21,-0.0,0.0005952381179668009,1.88079096131566e-36,5.929230630780102e-21,-0.0001700680295471102,-0.0002380952355451882,-0.0,-0.0,-0.0,-7.52316384526264e-37,-0.0,-1.6940658945086007e-21,-0.0,-2.940642627652177e-21,6.80272132740356e-05,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0008370535797439516,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,4.0,5.0,8.0,7.0,0.037942178547382355,-0.010803570970892906,-0.009143282659351826,-0.006279761902987957,-0.007008928339928389,0.0008928571478463709,0.0010714285308495164,0.0007142857066355646,0.0008035714272409678,0.0006377550889737904,0.0005952381179668009,0.0006696428754366934,0.00029761905898340046,0.00044642857392318547,0.00037202381645329297,-0.010803570970892906,0.013452380895614624,0.0010714285308495164,0.0007142857066355646,0.0008035714272409678,-0.0026785715017467737,-0.0007142857066355646,-0.0004761904710903764,-0.0005357142654247582,-0.0,-1.0397062532552018e-21,-4.1730656058125036e-22,-7.275092261495092e-20,-4.8486913820680447e-20,-1.5359921641258573e-20,-0.009143282659351826,0.0010714285308495164,0.00839817151427269,0.0005952381179668009,0.0006696428754366934,-0.0,-0.0005357142654247582,-1.0668351924075268e-21,-3.8565609791213915e-22,-0.0012755101779475808,-0.00029761905898340046,-0.0003348214377183467,-1.5558013222609766e-21,-4.277516383634217e-20,1.9686031008471158e-20,-0.006279761902987957,0.0007142857066355646,0.0005952381179668009,0.0032823130022734404,0.00044642857392318547,-0.0,-0.0,-0.0002040816325461492,-5.3294397067959146e-20,-0.0,-0.0001700680295471102,-4.743384504624082e-20,-0.00029761905898340046,-0.00012755101488437504,-9.50790088895948e-20,-0.007008928339928389,0.0008035714272409678,0.0006696428754366934,0.00044642857392318547,0.0042708334513008595,-0.0,-0.0,-2.2926304262994506e-21,-0.0002678571327123791,-0.0,1.406919212343606e-21,-0.00022321428696159273,-6.776263578034403e-21,-0.00014880952949170023,-0.00044642857392318547,0.0008928571478463709,-0.0026785715017467737,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0004761904710903764,-1.0668351924075268e-21,-0.0002040816325461492,-2.2926304262994506e-21,-0.0,-0.0,0.0001360544265480712,3.6574959055478315e-22,-0.0,2.0261253688812821e-22,1.192304440772466e-22,2.0328790734103208e-20,-0.0,2.316223350086664e-22,0.0008035714272409678,-0.0005357142654247582,-3.8565609791213915e-22,-5.3294397067959146e-20,-0.0002678571327123791,-0.0,-0.0,3.6574959055478315e-22,0.00017857142665889114,-0.0,1.1018746015254675e-22,-0.0,5.333848300772042e-22,1.6162304606893482e-20,4.849747814494897e-21,0.0006377550889737904,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-1.0397062532552018e-21,-0.00029761905898340046,-0.0001700680295471102,1.406919212343606e-21,-0.0,-0.0,2.0261253688812821e-22,1.1018746015254675e-22,-0.0,8.50340147735551e-05,9.93587033977055e-23,2.9547659894024706e-22,-8.470329472543003e-22,1.8364577112816941e-22,0.0006696428754366934,-4.1730656058125036e-22,-0.0003348214377183467,-4.743384504624082e-20,-0.00022321428696159273,-0.0,-0.0,1.192304440772466e-22,-0.0,-0.0,9.93587033977055e-23,0.00011160714348079637,1.7387772936826282e-22,1.5246593050577406e-20,-6.776263578034403e-21,0.00029761905898340046,-7.275092261495092e-20,-1.5558013222609766e-21,-0.00029761905898340046,-6.776263578034403e-21,-0.0,-0.0,2.0328790734103208e-20,5.333848300772042e-22,-0.0,2.9547659894024706e-22,1.7387772936826282e-22,4.251700738677755e-05,2.2374455543896316e-22,1.0326981391909631e-21,0.00044642857392318547,-4.8486913820680447e-20,-4.277516383634217e-20,-0.00012755101488437504,-0.00014880952949170023,-0.0,-0.0,-0.0,1.6162304606893482e-20,-0.0,-8.470329472543003e-22,1.5246593050577406e-20,2.2374455543896316e-22,4.251700738677755e-05,2.8848427925972615e-20,0.00037202381645329297,-1.5359921641258573e-20,1.9686031008471158e-20,-9.50790088895948e-20,-0.00044642857392318547,-0.0,-0.0,2.316223350086664e-22,4.849747814494897e-21,-0.0,1.8364577112816941e-22,-6.776263578034403e-21,1.0326981391909631e-21,2.8848427925972615e-20,7.440476474585012e-05,4.0,5.0,8.0,8.0,0.03385912626981735,-0.009531250223517418,-0.008065476082265377,-0.005538194440305233,-0.005538194440305233,0.0007812500116415322,0.0009374999790452421,0.0006249999860301614,0.0006249999860301614,0.0005580357392318547,0.0005208333604969084,0.0005208333604969084,0.0002604166802484542,0.00034722223062999547,0.0002604166802484542,-0.009531250223517418,0.011822916567325592,0.0009374999790452421,0.0006249999860301614,0.0006249999860301614,-0.0023437500931322575,-0.0006249999860301614,-0.00041666667675599456,-0.00041666667675599456,-0.0,-1.1906495494328317e-21,-1.342336096471409e-20,6.942689732340658e-20,5.4564682340344205e-21,7.035251242885341e-20,-0.008065476082265377,0.0009374999790452421,0.007380952592939138,0.0005208333604969084,0.0005208333604969084,-0.0,-0.00046874998952262104,-1.5648996021796889e-21,-1.3049111012941428e-20,-0.0011160714784637094,-0.0002604166802484542,-0.0002604166802484542,-2.2821452658004874e-21,2.964615315390051e-21,-1.124550750296134e-20,-0.005538194440305233,0.0006249999860301614,0.0005208333604969084,0.0028844245243817568,0.00034722223062999547,-0.0,-0.0,-0.00017857142665889114,5.403000983683419e-22,-0.0,-0.00014880952949170023,-3.3881317890172014e-21,-0.0002604166802484542,-9.920635056914762e-05,7.879376476610901e-22,-0.005538194440305233,0.0006249999860301614,0.0005208333604969084,0.00034722223062999547,0.0028844245243817568,-0.0,-0.0,-4.447470253226683e-21,-0.00017857142665889114,-0.0,-5.011684575273491e-21,-0.00014880952949170023,-6.776263578034403e-21,-9.920635056914762e-05,-0.0002604166802484542,0.0007812500116415322,-0.0023437500931322575,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009374999790452421,-0.0006249999860301614,-0.00046874998952262104,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-0.00041666667675599456,-1.5648996021796889e-21,-0.00017857142665889114,-4.447470253226683e-21,-0.0,-0.0,0.0001190476177725941,3.3773796022572645e-22,-0.0,-0.0,4.471141432015694e-22,-2.0328790734103208e-20,-0.0,4.0238572987553806e-22,0.0006249999860301614,-0.00041666667675599456,-1.3049111012941428e-20,5.403000983683419e-22,-0.00017857142665889114,-0.0,-0.0,3.3773796022572645e-22,0.0001190476177725941,-0.0,3.4018559997712275e-22,3.3881317890172014e-21,4.925345074483372e-22,-1.5589908951600642e-21,-2.050310289232742e-20,0.0005580357392318547,-0.0,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-1.1906495494328317e-21,-0.0002604166802484542,-0.00014880952949170023,-5.011684575273491e-21,-0.0,-0.0,-0.0,3.4018559997712275e-22,-0.0,7.440476474585012e-05,3.7259513616367383e-22,-0.0,-0.0,4.961039957593792e-22,0.0005208333604969084,-1.342336096471409e-20,-0.0002604166802484542,-3.3881317890172014e-21,-0.00014880952949170023,-0.0,-0.0,4.471141432015694e-22,3.3881317890172014e-21,-0.0,3.7259513616367383e-22,7.440476474585012e-05,6.520414756646547e-22,-8.470329472543003e-22,2.716898147943861e-21,0.0002604166802484542,6.942689732340658e-20,-2.2821452658004874e-21,-0.0002604166802484542,-6.776263578034403e-21,-0.0,-0.0,-2.0328790734103208e-20,4.925345074483372e-22,-0.0,-0.0,6.520414756646547e-22,3.720238237292506e-05,-1.6940658945086007e-21,1.0051779250296484e-21,0.00034722223062999547,5.4564682340344205e-21,2.964615315390051e-21,-9.920635056914762e-05,-9.920635056914762e-05,-0.0,-0.0,-0.0,-1.5589908951600642e-21,-0.0,-0.0,-8.470329472543003e-22,-1.6940658945086007e-21,2.8344671591185033e-05,-2.8555304682128372e-21,0.0002604166802484542,7.035251242885341e-20,-1.124550750296134e-20,7.879376476610901e-22,-0.0002604166802484542,-0.0,-0.0,4.0238572987553806e-22,-2.050310289232742e-20,-0.0,4.961039957593792e-22,2.716898147943861e-21,1.0051779250296484e-21,-2.8555304682128372e-21,3.720238237292506e-05,4.0,6.0,3.0,3.0,0.1373346596956253,-0.04801587387919426,-0.03541666641831398,-0.05863095074892044,-0.05863095074892044,0.004629629664123058,0.004761904943734407,0.008333333767950535,0.008333333767950535,0.0024801588151603937,0.0059523810632526875,0.0059523810632526875,0.0069444444961845875,0.010416666977107525,0.0069444444961845875,-0.04801587387919426,0.06441798806190491,0.004761904943734407,0.008333333767950535,0.008333333767950535,-0.013888888992369175,-0.0031746032182127237,-0.0055555556900799274,-0.0055555556900799274,-6.776263578034403e-19,-1.3552527156068805e-19,-1.3552527156068805e-19,2.8888949165808538e-33,6.018531076210112e-34,2.4074124304840448e-33,-0.03541666641831398,0.004761904943734407,0.027807539328932762,0.0059523810632526875,0.0059523810632526875,-0.0,-0.0019047618843615055,-0.0,-0.0,-0.0037202381063252687,-0.0023809524718672037,-0.0023809524718672037,1.8469619589329023e-17,6.125418846923592e-18,1.8469619589329023e-17,-0.05863095074892044,0.008333333767950535,0.0059523810632526875,0.12807539105415344,0.010416666977107525,-0.0,-1.3552527156068805e-19,-0.008333333767950535,-0.0,9.540979117872439e-18,-0.0059523810632526875,5.009554682131395e-19,-0.0416666679084301,-0.010416666977107525,4.625929158980737e-17,-0.05863095074892044,0.008333333767950535,0.0059523810632526875,0.010416666977107525,0.12807539105415344,-0.0,-1.3552527156068805e-19,-0.0,-0.008333333767950535,9.572030650887067e-18,5.009554682131395e-19,-0.0059523810632526875,5.859510554798213e-17,-0.010416666977107525,-0.0416666679084301,0.004629629664123058,-0.013888888992369175,-0.0,-0.0,-0.0,0.004629629664123058,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.0031746032182127237,-0.0019047618843615055,-1.3552527156068805e-19,-1.3552527156068805e-19,-0.0,0.0012698412174358964,-0.0,-0.0,2.710505431213761e-19,5.421010862427522e-20,5.421010862427522e-20,-1.1555579666323415e-33,-2.407412430484045e-34,-9.62964972193618e-34,0.008333333767950535,-0.0055555556900799274,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0055555556900799274,-0.0,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024801588151603937,-6.776263578034403e-19,-0.0037202381063252687,9.540979117872439e-18,9.572030650887067e-18,-0.0,2.710505431213761e-19,-0.0,-0.0,0.0007440476329065859,-8.131516293641283e-19,-8.131516293641283e-19,-3.3042352021841637e-18,-9.912706020142797e-19,-3.3042352021841637e-18,0.0059523810632526875,-1.3552527156068805e-19,-0.0023809524718672037,-0.0059523810632526875,5.009554682131395e-19,-0.0,5.421010862427522e-20,-0.0,-0.0,-8.131516293641283e-19,0.0023809524718672037,3.343100528834212e-20,-1.9484433716130517e-18,-5.845330218236732e-19,5.604454742267315e-33,0.0059523810632526875,-1.3552527156068805e-19,-0.0023809524718672037,5.009554682131395e-19,-0.0059523810632526875,-0.0,5.421010862427522e-20,-0.0,-0.0,-8.131516293641283e-19,3.343100528834212e-20,0.0023809524718672037,6.296680957605497e-33,-5.845330218236732e-19,-1.9484433716130517e-18,0.0069444444961845875,2.8888949165808538e-33,1.8469619589329023e-17,-0.0416666679084301,5.859510554798213e-17,-0.0,-1.1555579666323415e-33,-0.0,-0.0,-3.3042352021841637e-18,-1.9484433716130517e-18,6.296680957605497e-33,0.02083333395421505,-1.2335811476632919e-17,-2.3129645794903686e-17,0.010416666977107525,6.018531076210112e-34,6.125418846923592e-18,-0.010416666977107525,-0.010416666977107525,-0.0,-2.407412430484045e-34,-0.0,-0.0,-9.912706020142797e-19,-5.845330218236732e-19,-5.845330218236732e-19,-1.2335811476632919e-17,0.010416666977107525,1.8229864674243556e-32,0.0069444444961845875,2.4074124304840448e-33,1.8469619589329023e-17,4.625929158980737e-17,-0.0416666679084301,-0.0,-9.62964972193618e-34,-0.0,-0.0,-3.3042352021841637e-18,5.604454742267315e-33,-1.9484433716130517e-18,-2.3129645794903686e-17,1.8229864674243556e-32,0.02083333395421505,4.0,6.0,3.0,4.0,0.11144841462373734,-0.037261903285980225,-0.02745535783469677,-0.04553571343421936,-0.037261903285980225,0.0034722222480922937,0.0035714285913854837,0.0062500000931322575,0.004999999888241291,0.0018601190531626344,0.004464285913854837,0.0035714285913854837,0.0052083334885537624,0.0062500000931322575,0.0034722222480922937,-0.037261903285980225,0.04914682358503342,0.0035714285913854837,0.0062500000931322575,0.004999999888241291,-0.010416666977107525,-0.0023809524718672037,-0.004166666883975267,-0.0033333334140479565,-4.0657581468206416e-19,-0.0,0.0,1.4444474582904269e-33,3.6111186457260672e-34,9.62964972193618e-34,-0.02745535783469677,0.0035714285913854837,0.021212797611951828,0.004464285913854837,0.0035714285913854837,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0027901786379516125,-0.0017857142956927419,-0.0014285714132711291,1.3852214691996767e-17,3.068687871339023e-18,6.600757772336883e-18,-0.04553571343421936,0.0062500000931322575,0.004464285913854837,0.09761904925107956,0.0062500000931322575,-0.0,1.3722250853759055e-33,-0.0062500000931322575,-0.0,5.9631119486702744e-18,-0.004464285913854837,-2.1487847840639875e-19,-0.03125,-0.0062500000931322575,1.6190751890996458e-17,-0.037261903285980225,0.004999999888241291,0.0035714285913854837,0.0062500000931322575,0.04914682358503342,-0.0,1.3000027124613842e-33,-0.0,-0.0033333334140479565,5.187934113276924e-18,3.916849351442787e-19,-0.0023809524718672037,3.168761505334668e-17,-0.004166666883975267,-0.010416666977107525,0.0034722222480922937,-0.010416666977107525,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0023809524718672037,-0.0014285714132711291,1.3722250853759055e-33,1.3000027124613842e-33,-0.0,0.0009523809421807528,-0.0,-0.0,1.6263032587282567e-19,-0.0,-0.0,-5.7777898331617076e-34,-1.4444474582904269e-34,-3.851859888774472e-34,0.0062500000931322575,-0.004166666883975267,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0033333334140479565,-0.0,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.002222222276031971,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0018601190531626344,-4.0657581468206416e-19,-0.0027901786379516125,5.9631119486702744e-18,5.187934113276924e-18,-0.0,1.6263032587282567e-19,-0.0,-0.0,0.0005580357392318547,-0.0,-4.87890977618477e-19,-2.478176453336911e-18,-5.947623508688102e-19,-1.1564823517837303e-18,0.004464285913854837,-0.0,-0.0017857142956927419,-0.004464285913854837,3.916849351442787e-19,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-1.6386047269066273e-20,-1.4613325287097888e-18,-3.507197975845674e-19,8.328345333152252e-34,0.0035714285913854837,0.0,-0.0014285714132711291,-2.1487847840639875e-19,-0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-4.87890977618477e-19,-1.6386047269066273e-20,0.0009523809421807528,2.884790788257553e-33,1.70562406335841e-19,-5.455641295759938e-19,0.0052083334885537624,1.4444474582904269e-33,1.3852214691996767e-17,-0.03125,3.168761505334668e-17,-0.0,-5.7777898331617076e-34,-0.0,-0.0,-2.478176453336911e-18,-1.4613325287097888e-18,2.884790788257553e-33,0.015625,-7.401487216851996e-18,-8.095375945498229e-18,0.0062500000931322575,3.6111186457260672e-34,3.068687871339023e-18,-0.0062500000931322575,-0.004166666883975267,-0.0,-1.4444474582904269e-34,-0.0,-0.0,-5.947623508688102e-19,-3.507197975845674e-19,1.70562406335841e-19,-7.401487216851996e-18,0.004166666883975267,4.8727186924300566e-33,0.0034722222480922937,9.62964972193618e-34,6.600757772336883e-18,1.6190751890996458e-17,-0.010416666977107525,-0.0,-3.851859888774472e-34,-0.0,-0.0,-1.1564823517837303e-18,8.328345333152252e-34,-5.455641295759938e-19,-8.095375945498229e-18,4.8727186924300566e-33,0.0034722222480922937,4.0,6.0,3.0,5.0,0.09392856806516647,-0.030476190149784088,-0.022440476343035698,-0.037261903285980225,-0.025833332911133766,0.0027777778450399637,0.0028571428265422583,0.004999999888241291,0.0033333334140479565,0.0014880952658131719,0.0035714285913854837,0.0023809524718672037,0.004166666883975267,0.004166666883975267,0.0019841270986944437,-0.030476190149784088,0.03976190462708473,0.0028571428265422583,0.004999999888241291,0.0033333334140479565,-0.008333333767950535,-0.0019047618843615055,-0.0033333334140479565,-0.002222222276031971,-8.69819188190722e-19,1.0276540378598481e-19,-2.3143756151985345e-19,-8.611045663382265e-33,2.5969475887182953e-20,-2.6159118997955525e-19,-0.022440476343035698,0.0028571428265422583,0.01716071367263794,0.0035714285913854837,0.0023809524718672037,-0.0,-0.0011428571306169033,-0.0,-2.981555974335137e-19,-0.0022321429569274187,-0.0014285714132711291,-0.0009523809421807528,-1.8103299346337465e-17,-3.848917712323541e-18,-6.5547408876799454e-18,-0.037261903285980225,0.004999999888241291,0.0035714285913854837,0.07892857491970062,0.004166666883975267,-0.0,1.0407691803423324e-19,-0.004999999888241291,2.4330079845698145e-20,-1.1058862159352145e-17,-0.0035714285913854837,2.9783030865762724e-19,-0.02500000037252903,-0.004166666883975267,-3.907153295398805e-18,-0.025833332911133766,0.0033333334140479565,0.0023809524718672037,0.004166666883975267,0.024821428582072258,-0.0,8.264680093800103e-20,-0.0,-0.0016666667070239782,-6.1860731061099614e-18,6.2341624917916505e-19,-0.0011904762359336019,-7.930164816114238e-18,-0.0020833334419876337,-0.003968254197388887,0.0027777778450399637,-0.008333333767950535,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0019047618843615055,-0.0011428571306169033,1.0407691803423324e-19,8.264680093800103e-20,-0.0,0.0007619047537446022,-0.0,-2.8403425355155043e-21,3.5236570605778894e-19,-4.0657581468206416e-20,-4.0657581468206416e-20,3.274080905458301e-33,-1.2164831916005584e-21,5.626240592412394e-21,0.004999999888241291,-0.0033333334140479565,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.002222222276031971,-2.981555974335137e-19,2.4330079845698145e-20,-0.0016666667070239782,-0.0,-2.8403425355155043e-21,-0.0,0.0011111111380159855,-5.547544131430133e-21,-5.60724754811796e-22,1.6654075759518475e-19,2.129215621150123e-34,-1.146413440847466e-20,1.2376278909957814e-19,0.0014880952658131719,-8.69819188190722e-19,-0.0022321429569274187,-1.1058862159352145e-17,-6.1860731061099614e-18,-0.0,3.5236570605778894e-19,-0.0,-5.547544131430133e-21,0.00044642857392318547,5.963111948670274e-19,3.5236570605778894e-19,3.965082408057119e-18,7.906404776801688e-19,1.1437640362754212e-18,0.0035714285913854837,1.0276540378598481e-19,-0.0014285714132711291,-0.0035714285913854837,6.2341624917916505e-19,-0.0,-4.0657581468206416e-20,-0.0,-5.60724754811796e-22,5.963111948670274e-19,0.0014285714132711291,-1.6263032587282567e-19,-1.722112176960247e-18,-2.1019184107673522e-19,-1.3350589063700205e-21,0.0023809524718672037,-2.3143756151985345e-19,-0.0009523809421807528,2.9783030865762724e-19,-0.0011904762359336019,-0.0,-4.0657581468206416e-20,-0.0,1.6654075759518475e-19,3.5236570605778894e-19,-1.6263032587282567e-19,0.0004761904710903764,3.851859888774472e-33,5.437275301221846e-20,4.120864660734983e-19,0.004166666883975267,-8.611045663382265e-33,-1.8103299346337465e-17,-0.02500000037252903,-7.930164816114238e-18,-0.0,3.274080905458301e-33,-0.0,2.129215621150123e-34,3.965082408057119e-18,-1.722112176960247e-18,3.851859888774472e-33,0.012500000186264515,6.740754805355325e-33,1.9825412040285595e-18,0.004166666883975267,2.5969475887182953e-20,-3.848917712323541e-18,-0.004166666883975267,-0.0020833334419876337,-0.0,-1.2164831916005584e-21,-0.0,-1.146413440847466e-20,7.906404776801688e-19,-2.1019184107673522e-19,5.437275301221846e-20,6.740754805355325e-33,0.0020833334419876337,-2.7295557884617694e-20,0.0019841270986944437,-2.6159118997955525e-19,-6.5547408876799454e-18,-3.907153295398805e-18,-0.003968254197388887,-0.0,5.626240592412394e-21,-0.0,1.2376278909957814e-19,1.1437640362754212e-18,-1.3350589063700205e-21,4.120864660734983e-19,1.9825412040285595e-18,-2.7295557884617694e-20,0.0009920635493472219,4.0,6.0,3.0,6.0,0.08123110234737396,-0.02579365111887455,-0.01898384280502796,-0.03154762089252472,-0.01898384280502796,0.002314814832061529,0.0023809524718672037,0.004166666883975267,0.0023809524718672037,0.0012400794075801969,0.0029761905316263437,0.001700680237263441,0.0034722222480922937,0.0029761905316263437,0.0012400794075801969,-0.02579365111887455,0.033399470150470734,0.0023809524718672037,0.004166666883975267,0.0023809524718672037,-0.0069444444961845875,-0.0015873016091063619,-0.0027777778450399637,-0.0015873016091063619,-2.681013081955007e-19,4.555063610556726e-22,1.9615053418917853e-20,1.2177532808988526e-33,3.00242393173226e-20,-2.770378314913998e-19,-0.01898384280502796,0.0023809524718672037,0.01441397424787283,0.0029761905316263437,0.001700680237263441,-0.0,-0.0009523809421807528,-0.0,2.710505431213761e-20,-0.0018601190531626344,-0.0011904762359336019,-0.0006802721181884408,9.234809794664512e-18,1.1655173354219173e-18,1.492335775056159e-18,-0.03154762089252472,0.004166666883975267,0.0029761905316263437,0.06626984477043152,0.0029761905316263437,-0.0,5.1028925469174e-21,-0.004166666883975267,2.5376854292664127e-20,5.204170427930421e-18,-0.0029761905316263437,-1.0366828434928351e-19,-0.02083333395421505,-0.0029761905316263437,4.59288767756649e-18,-0.01898384280502796,0.0023809524718672037,0.001700680237263441,0.0029761905316263437,0.01441397424787283,-0.0,1.9534374228625523e-20,-0.0,-0.0009523809421807528,2.423975650494527e-18,-1.3552527156068805e-19,-0.0006802721181884408,1.4177922021273197e-17,-0.0011904762359336019,-0.0018601190531626344,0.002314814832061529,-0.0069444444961845875,-0.0,-0.0,-0.0,0.002314814832061529,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0015873016091063619,-0.0009523809421807528,5.1028925469174e-21,1.9534374228625523e-20,-0.0,0.0006349206087179482,-0.0,-6.04002244673847e-22,1.0842021724855044e-19,-0.0,-0.0,-2.8888949165808538e-34,-2.04115701876696e-21,-3.056611895503691e-21,0.004166666883975267,-0.0027777778450399637,-0.0,-0.004166666883975267,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0015873016091063619,2.710505431213761e-20,2.5376854292664127e-20,-0.0009523809421807528,-0.0,-6.04002244673847e-22,-0.0,0.0006349206087179482,-1.1796919306714008e-21,-1.8220253432484947e-22,-7.846021367567141e-21,-1.982118344767801e-34,-9.968539354396934e-21,1.138717381508841e-19,0.0012400794075801969,-2.681013081955007e-19,-0.0018601190531626344,5.204170427930421e-18,2.423975650494527e-18,-0.0,1.0842021724855044e-19,-0.0,-1.1796919306714008e-21,0.00037202381645329297,-4.336808689942018e-19,-2.168404344971009e-19,-1.6521176010920818e-18,-2.8720680220121456e-19,-3.2161754153281466e-19,0.0029761905316263437,4.555063610556726e-22,-0.0011904762359336019,-0.0029761905316263437,-1.3552527156068805e-19,-0.0,-0.0,-0.0,-1.8220253432484947e-22,-4.336808689942018e-19,0.0011904762359336019,-6.776263578034403e-21,-9.742216858065258e-19,1.5467039268762202e-19,-3.5586431775347347e-22,0.001700680237263441,1.9615053418917853e-20,-0.0006802721181884408,-1.0366828434928351e-19,-0.0006802721181884408,-0.0,-0.0,-0.0,-7.846021367567141e-21,-2.168404344971009e-19,-6.776263578034403e-21,0.0002721088530961424,9.62964972193618e-34,4.8243577317747806e-20,4.7781196280027735e-20,0.0034722222480922937,1.2177532808988526e-33,9.234809794664512e-18,-0.02083333395421505,1.4177922021273197e-17,-0.0,-2.8888949165808538e-34,-0.0,-1.982118344767801e-34,-1.6521176010920818e-18,-9.742216858065258e-19,9.62964972193618e-34,0.010416666977107525,-2.8196140695271088e-18,-2.2716617144263096e-18,0.0029761905316263437,3.00242393173226e-20,1.1655173354219173e-18,-0.0029761905316263437,-0.0011904762359336019,-0.0,-2.04115701876696e-21,-0.0,-9.968539354396934e-21,-2.8720680220121456e-19,1.5467039268762202e-19,4.8243577317747806e-20,-2.8196140695271088e-18,0.0011904762359336019,-1.9469804057645236e-20,0.0012400794075801969,-2.770378314913998e-19,1.492335775056159e-18,4.59288767756649e-18,-0.0018601190531626344,-0.0,-3.056611895503691e-21,-0.0,1.138717381508841e-19,-3.2161754153281466e-19,-3.5586431775347347e-22,4.7781196280027735e-20,-2.2716617144263096e-18,-1.9469804057645236e-20,0.00037202381645329297,4.0,6.0,3.0,7.0,0.07158683240413666,-0.022363945841789246,-0.01645408198237419,-0.027359694242477417,-0.014547902159392834,0.0019841270986944437,0.0020408162381500006,0.0035714285913854837,0.0017857142956927419,0.0010629252064973116,0.0025510203558951616,0.0012755101779475808,0.0029761905316263437,0.0022321429569274187,0.0008267195662483573,-0.022363945841789246,0.028798185288906097,0.0020408162381500006,0.0035714285913854837,0.0017857142956927419,-0.0059523810632526875,-0.0013605442363768816,-0.0023809524718672037,-0.0011904762359336019,-1.5399114815774527e-19,6.788162700392949e-20,7.53597662564122e-20,-1.6685313953747026e-33,-9.087773755580523e-21,2.655213318649478e-19,-0.01645408198237419,0.0020408162381500006,0.012427721172571182,0.0025510203558951616,0.0012755101779475808,-0.0,-0.0008163265301845968,-0.0,-1.3552527156068805e-20,-0.0015943878097459674,-0.0010204081190750003,-0.0005102040595375001,7.915551016232263e-18,1.0299920638612292e-18,9.135653586686249e-19,-0.027359694242477417,0.0035714285913854837,0.0025510203558951616,0.05712159723043442,0.0022321429569274187,-0.0,6.761395652758616e-20,-0.0035714285913854837,-8.86471691014607e-21,4.391018798566293e-18,-0.0025510203558951616,-1.732962641097229e-19,-0.01785714365541935,-0.0022321429569274187,2.8447260321533e-18,-0.014547902159392834,0.0017857142956927419,0.0012755101779475808,0.0022321429569274187,0.009148242883384228,-0.0,1.7384859780788384e-20,-0.0,-0.0005952381179668009,1.941958482405789e-18,1.0842021724855044e-19,-0.00042517005931586027,1.0101518887149611e-17,-0.0007440476329065859,-0.0009920635493472219,0.0019841270986944437,-0.0059523810632526875,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,-0.0013605442363768816,-0.0008163265301845968,6.761395652758616e-20,1.7384859780788384e-20,-0.0,0.0005442177061922848,-0.0,3.151509464264627e-21,5.421010862427522e-20,-2.710505431213761e-20,-2.0328790734103208e-20,-2.8888949165808538e-34,4.955908196524276e-23,4.409275753897544e-21,0.0035714285913854837,-0.0023809524718672037,-0.0,-0.0035714285913854837,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-1.3552527156068805e-20,-8.86471691014607e-21,-0.0005952381179668009,-0.0,3.151509464264627e-21,-0.0,0.00039682540227659047,6.1552920643868124e-21,-3.9663645480030215e-23,-8.179263678913773e-21,7.969183136163079e-34,2.987958731939274e-21,-9.218150506374664e-20,0.0010629252064973116,-1.5399114815774527e-19,-0.0015943878097459674,4.391018798566293e-18,1.941958482405789e-18,-0.0,5.421010862427522e-20,-0.0,6.1552920643868124e-21,0.0003188775444868952,-3.2526065174565133e-19,-2.303929616531697e-19,-1.4161008452493172e-18,-2.1231832856115298e-19,-1.9160743208283856e-19,0.0025510203558951616,6.788162700392949e-20,-0.0010204081190750003,-0.0025510203558951616,1.0842021724855044e-19,-0.0,-2.710505431213761e-20,-0.0,-3.9663645480030215e-23,-3.2526065174565133e-19,0.0010204081190750003,6.776263578034403e-21,-8.350471518771953e-19,-1.2487168933419083e-19,-6.61060768518649e-23,0.0012755101779475808,7.53597662564122e-20,-0.0005102040595375001,-1.732962641097229e-19,-0.00042517005931586027,-0.0,-2.0328790734103208e-20,-0.0,-8.179263678913773e-21,-2.303929616531697e-19,6.776263578034403e-21,0.0001700680295471102,7.2222372914521344e-34,5.211853720899514e-20,1.0800898731507655e-20,0.0029761905316263437,-1.6685313953747026e-33,7.915551016232263e-18,-0.01785714365541935,1.0101518887149611e-17,-0.0,-2.8888949165808538e-34,-0.0,7.969183136163079e-34,-1.4161008452493172e-18,-8.350471518771953e-19,7.2222372914521344e-34,0.008928571827709675,-1.5105074855478771e-18,-1.4318352680661478e-18,0.0022321429569274187,-9.087773755580523e-21,1.0299920638612292e-18,-0.0022321429569274187,-0.0007440476329065859,-0.0,4.955908196524276e-23,-0.0,2.987958731939274e-21,-2.1231832856115298e-19,-1.2487168933419083e-19,5.211853720899514e-20,-1.5105074855478771e-18,0.0007440476329065859,6.369934124234386e-21,0.0008267195662483573,2.655213318649478e-19,9.135653586686249e-19,2.8447260321533e-18,-0.0009920635493472219,-0.0,4.409275753897544e-21,-0.0,-9.218150506374664e-20,-1.9160743208283856e-19,-6.61060768518649e-23,1.0800898731507655e-20,-1.4318352680661478e-18,6.369934124234386e-21,0.0001653439103392884,4.0,6.0,3.0,8.0,0.06400462985038757,-0.01974206417798996,-0.014521329663693905,-0.02415674552321434,-0.011507936753332615,0.0017361111240461469,0.0017857142956927419,0.0031250000465661287,0.0013888889225199819,0.0009300595265813172,0.0022321429569274187,0.0009920635493472219,0.0026041667442768812,0.0017361111240461469,0.0005787037080153823,-0.01974206417798996,0.025314154103398323,0.0017857142956927419,0.0031250000465661287,0.0013888889225199819,-0.0052083334885537624,-0.0011904762359336019,-0.0020833334419876337,-0.0009259259095415473,-6.195441133342278e-19,-3.965082252960754e-19,-2.3551817272854825e-19,1.5032997768257948e-33,8.978315648985242e-34,1.1444533620690134e-19,-0.014521329663693905,0.0017857142956927419,0.010923858731985092,0.0022321429569274187,0.0009920635493472219,-0.0,-0.0007142857066355646,-0.0,-5.929230630780102e-20,-0.0013950893189758062,-0.0008928571478463709,-0.00039682540227659047,6.1954409265471244e-18,8.260588005460409e-19,6.052612373960629e-19,-0.02415674552321434,0.0031250000465661287,0.0022321429569274187,0.05019841343164444,0.0017361111240461469,-0.0,-3.965082252960754e-19,-0.0031250000465661287,-1.8217149085527772e-34,2.127101355829858e-18,-0.0022321429569274187,1.0028455465906833e-33,-0.015625,-0.0017361111240461469,1.927470620772076e-18,-0.011507936753332615,0.0013888889225199819,0.0009920635493472219,0.0017361111240461469,0.006181500386446714,-0.0,-1.762258793454443e-19,-0.0,-0.00039682540227659047,1.0036333332567676e-18,1.2784131975050982e-33,-0.00028344671591185033,8.508405423319432e-18,-0.0004960317746736109,-0.0005787037080153823,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-0.0007142857066355646,-3.965082252960754e-19,-1.762258793454443e-19,-0.0,0.0004761904710903764,-0.0,1.0532429383367696e-35,2.4781765050356993e-19,1.5860328753349075e-19,7.04903478607686e-20,-1.1005314230314194e-33,-1.4673752230556012e-34,-1.1134282490988707e-34,0.0031250000465661287,-0.0020833334419876337,-0.0,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0009259259095415473,-5.929230630780102e-20,-1.8217149085527772e-34,-0.00039682540227659047,-0.0,1.0532429383367696e-35,-0.0,0.00026455026818439364,6.018531076210112e-35,0.0,1.6940658945086007e-20,3.565796450839656e-34,-1.51710793243937e-34,-3.2698669334071393e-20,0.0009300595265813172,-6.195441133342278e-19,-0.0013950893189758062,2.127101355829858e-18,1.0036333332567676e-18,-0.0,2.4781765050356993e-19,-0.0,6.018531076210112e-35,0.00027901786961592734,3.7172646283065783e-19,5.0125471372442764e-20,-1.2390882266684555e-18,-1.652117626941476e-19,-1.3767647106590584e-19,0.0022321429569274187,-3.965082252960754e-19,-0.0008928571478463709,-0.0022321429569274187,1.2784131975050982e-33,-0.0,1.5860328753349075e-19,-0.0,0.0,3.7172646283065783e-19,0.0008928571478463709,9.025854867543278e-35,-1.650797042711633e-33,-2.201062891980587e-34,-1.834219000120909e-34,0.0009920635493472219,-2.3551817272854825e-19,-0.00039682540227659047,1.0028455465906833e-33,-0.00028344671591185033,-0.0,7.04903478607686e-20,-0.0,1.6940658945086007e-20,5.0125471372442764e-20,9.025854867543278e-35,0.00011337868636474013,-4.81482486096809e-34,-7.586484993835426e-35,2.374888529897734e-20,0.0026041667442768812,1.5032997768257948e-33,6.1954409265471244e-18,-0.015625,8.508405423319432e-18,-0.0,-1.1005314230314194e-33,-0.0,3.565796450839656e-34,-1.2390882266684555e-18,-1.650797042711633e-33,-4.81482486096809e-34,0.0078125,-1.7622588710026254e-18,-9.63735310386038e-19,0.0017361111240461469,8.978315648985242e-34,8.260588005460409e-19,-0.0017361111240461469,-0.0004960317746736109,-0.0,-1.4673752230556012e-34,-0.0,-1.51710793243937e-34,-1.652117626941476e-19,-2.201062891980587e-34,-7.586484993835426e-35,-1.7622588710026254e-18,0.0004960317746736109,7.766485436164344e-35,0.0005787037080153823,1.1444533620690134e-19,6.052612373960629e-19,1.927470620772076e-18,-0.0005787037080153823,-0.0,-1.1134282490988707e-34,-0.0,-3.2698669334071393e-20,-1.3767647106590584e-19,-1.834219000120909e-34,2.374888529897734e-20,-9.63735310386038e-19,7.766485436164344e-35,8.26719551696442e-05,4.0,6.0,4.0,3.0,0.11144841462373734,-0.037261903285980225,-0.02745535783469677,-0.037261903285980225,-0.04553571343421936,0.0034722222480922937,0.0035714285913854837,0.004999999888241291,0.0062500000931322575,0.0018601190531626344,0.0035714285913854837,0.004464285913854837,0.0034722222480922937,0.0062500000931322575,0.0052083334885537624,-0.037261903285980225,0.04914682358503342,0.0035714285913854837,0.004999999888241291,0.0062500000931322575,-0.010416666977107525,-0.0023809524718672037,-0.0033333334140479565,-0.004166666883975267,-4.0657581468206416e-19,0.0,-0.0,9.62964972193618e-34,3.6111186457260672e-34,1.4444474582904269e-33,-0.02745535783469677,0.0035714285913854837,0.021212797611951828,0.0035714285913854837,0.004464285913854837,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0027901786379516125,-0.0014285714132711291,-0.0017857142956927419,6.600757772336883e-18,3.068687871339023e-18,1.3852214691996767e-17,-0.037261903285980225,0.004999999888241291,0.0035714285913854837,0.04914682358503342,0.0062500000931322575,-0.0,1.3000027124613842e-33,-0.0033333334140479565,-0.0,5.204170427930421e-18,-0.0023809524718672037,3.020233388814468e-19,-0.010416666977107525,-0.004166666883975267,-2.2844195749367458e-32,-0.04553571343421936,0.0062500000931322575,0.004464285913854837,0.0062500000931322575,0.09761904925107956,-0.0,1.3722250853759055e-33,-0.0,-0.0062500000931322575,5.8948782335310814e-18,-3.045400875939277e-19,-0.004464285913854837,-1.1966511920219747e-32,-0.0062500000931322575,-0.03125,0.0034722222480922937,-0.010416666977107525,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0023809524718672037,-0.0014285714132711291,1.3000027124613842e-33,1.3722250853759055e-33,-0.0,0.0009523809421807528,-0.0,-0.0,1.6263032587282567e-19,-0.0,-0.0,-3.851859888774472e-34,-1.4444474582904269e-34,-5.7777898331617076e-34,0.004999999888241291,-0.0033333334140479565,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.002222222276031971,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.004166666883975267,-0.0,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0018601190531626344,-4.0657581468206416e-19,-0.0027901786379516125,5.204170427930421e-18,5.8948782335310814e-18,-0.0,1.6263032587282567e-19,-0.0,-0.0,0.0005580357392318547,-4.87890977618477e-19,0.0,-1.1564823517837303e-18,-5.947623508688102e-19,-2.478176453336911e-18,0.0035714285913854837,0.0,-0.0014285714132711291,-0.0023809524718672037,-3.045400875939277e-19,-0.0,-0.0,-0.0,-0.0,-4.87890977618477e-19,0.0009523809421807528,1.9478589620479344e-20,-5.455641295759938e-19,1.70562406335841e-19,1.8864551910476926e-33,0.004464285913854837,-0.0,-0.0017857142956927419,3.020233388814468e-19,-0.004464285913854837,-0.0,-0.0,-0.0,-0.0,0.0,1.9478589620479344e-20,0.0017857142956927419,5.516744795062103e-35,-3.507197975845674e-19,-1.4613325287097888e-18,0.0034722222480922937,9.62964972193618e-34,6.600757772336883e-18,-0.010416666977107525,-1.1966511920219747e-32,-0.0,-3.851859888774472e-34,-0.0,-0.0,-1.1564823517837303e-18,-5.455641295759938e-19,5.516744795062103e-35,0.0034722222480922937,1.0379781340008845e-33,5.135813062585301e-33,0.0062500000931322575,3.6111186457260672e-34,3.068687871339023e-18,-0.004166666883975267,-0.0062500000931322575,-0.0,-1.4444474582904269e-34,-0.0,-0.0,-5.947623508688102e-19,1.70562406335841e-19,-3.507197975845674e-19,1.0379781340008845e-33,0.004166666883975267,2.7206177574728585e-33,0.0052083334885537624,1.4444474582904269e-33,1.3852214691996767e-17,-2.2844195749367458e-32,-0.03125,-0.0,-5.7777898331617076e-34,-0.0,-0.0,-2.478176453336911e-18,1.8864551910476926e-33,-1.4613325287097888e-18,5.135813062585301e-33,2.7206177574728585e-33,0.015625,4.0,6.0,4.0,4.0,0.09015624970197678,-0.028883928433060646,-0.02126116119325161,-0.028883928433060646,-0.028883928433060646,0.0026041667442768812,0.0026785715017467737,0.0037499999161809683,0.0037499999161809683,0.0013950893189758062,0.0026785715017467737,0.0026785715017467737,0.0026041667442768812,0.0037499999161809683,0.0026041667442768812,-0.028883928433060646,0.037485118955373764,0.0026785715017467737,0.0037499999161809683,0.0037499999161809683,-0.0078125,-0.0017857142956927419,-0.0024999999441206455,-0.0024999999441206455,-4.743384504624082e-19,-6.776263578034403e-20,-6.776263578034403e-20,7.2222372914521344e-34,3.009265538105056e-34,7.2222372914521344e-34,-0.02126116119325161,0.0026785715017467737,0.016177454963326454,0.0026785715017467737,0.0026785715017467737,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0020926338620483875,-0.0010714285308495164,-0.0010714285308495164,4.950568432650239e-18,1.4772746772579467e-18,4.950568432650239e-18,-0.028883928433060646,0.0037499999161809683,0.0026785715017467737,0.037485118955373764,0.0037499999161809683,-0.0,-6.776263578034403e-20,-0.0024999999441206455,-0.0,2.8189256484623115e-18,-0.0017857142956927419,5.656052920819919e-22,-0.0078125,-0.0024999999441206455,-6.297652944496833e-33,-0.028883928433060646,0.0037499999161809683,0.0026785715017467737,0.0037499999161809683,0.037485118955373764,-0.0,-6.776263578034403e-20,-0.0,-0.0024999999441206455,2.825245928727676e-18,5.656052920819919e-22,-0.0017857142956927419,-6.297652944496833e-33,-0.0024999999441206455,-0.0078125,0.0026041667442768812,-0.0078125,-0.0,-0.0,-0.0,0.0026041667442768812,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026785715017467737,-0.0017857142956927419,-0.0010714285308495164,-6.776263578034403e-20,-6.776263578034403e-20,-0.0,0.0007142857066355646,-0.0,-0.0,1.8973538018496328e-19,2.710505431213761e-20,2.710505431213761e-20,-2.8888949165808538e-34,-1.2037062152420224e-34,-2.8888949165808538e-34,0.0037499999161809683,-0.0024999999441206455,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0024999999441206455,-0.0,-0.0,-0.0024999999441206455,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013950893189758062,-4.743384504624082e-19,-0.0020926338620483875,2.8189256484623115e-18,2.825245928727676e-18,-0.0,1.8973538018496328e-19,-0.0,-0.0,0.0004185267898719758,5.421010862427522e-20,5.421010862427522e-20,-8.673617379884035e-19,-3.5685740018152845e-19,-8.673617379884035e-19,0.0026785715017467737,-6.776263578034403e-20,-0.0010714285308495164,-0.0017857142956927419,5.656052920819919e-22,-0.0,2.710505431213761e-20,-0.0,-0.0,5.421010862427522e-20,0.0007142857066355646,-6.162870379735119e-20,-4.091731101066924e-19,1.0233744121656519e-19,-1.16524730311309e-35,0.0026785715017467737,-6.776263578034403e-20,-0.0010714285308495164,5.656052920819919e-22,-0.0017857142956927419,-0.0,2.710505431213761e-20,-0.0,-0.0,5.421010862427522e-20,-6.162870379735119e-20,0.0007142857066355646,-1.16524730311309e-35,1.0233744121656519e-19,-4.091731101066924e-19,0.0026041667442768812,7.2222372914521344e-34,4.950568432650239e-18,-0.0078125,-6.297652944496833e-33,-0.0,-2.8888949165808538e-34,-0.0,-0.0,-8.673617379884035e-19,-4.091731101066924e-19,-1.16524730311309e-35,0.0026041667442768812,6.227868712169811e-34,1.797534553537756e-33,0.0037499999161809683,3.009265538105056e-34,1.4772746772579467e-18,-0.0024999999441206455,-0.0024999999441206455,-0.0,-1.2037062152420224e-34,-0.0,-0.0,-3.5685740018152845e-19,1.0233744121656519e-19,1.0233744121656519e-19,6.227868712169811e-34,0.0016666667070239782,6.227868712169811e-34,0.0026041667442768812,7.2222372914521344e-34,4.950568432650239e-18,-6.297652944496833e-33,-0.0078125,-0.0,-2.8888949165808538e-34,-0.0,-0.0,-8.673617379884035e-19,-1.16524730311309e-35,-4.091731101066924e-19,1.797534553537756e-33,6.227868712169811e-34,0.0026041667442768812,4.0,6.0,4.0,5.0,0.07582738250494003,-0.02360714226961136,-0.0173660721629858,-0.02360714226961136,-0.019999999552965164,0.0020833334419876337,0.002142857061699033,0.003000000026077032,0.0024999999441206455,0.0011160714784637094,0.002142857061699033,0.0017857142956927419,0.0020833334419876337,0.0024999999441206455,0.0014880952658131719,-0.02360714226961136,0.030321428552269936,0.002142857061699033,0.003000000026077032,0.0024999999441206455,-0.0062500000931322575,-0.0014285714132711291,-0.0020000000949949026,-0.0016666667070239782,5.302153280209778e-19,-3.3881317890172014e-20,-1.0619705787680194e-20,-8.425943506694157e-34,-2.7382635446195093e-19,-6.592928818031798e-19,-0.0173660721629858,0.002142857061699033,0.01308482140302658,0.002142857061699033,0.0017857142956927419,-0.0,-0.0008571428479626775,-0.0,-8.131516293641283e-20,-0.0016741071594879031,-0.0008571428479626775,-0.0007142857066355646,3.960454746120191e-18,7.891051270656938e-19,2.1722565250836683e-18,-0.02360714226961136,0.003000000026077032,0.002142857061699033,0.030321428552269936,0.0024999999441206455,-0.0,-3.3881317890172014e-20,-0.0020000000949949026,-2.7382635446195093e-19,3.469446951953614e-18,-0.0014285714132711291,-4.963561889109798e-19,-0.0062500000931322575,-0.0016666667070239782,-6.327402807426511e-19,-0.019999999552965164,0.0024999999441206455,0.0017857142956927419,0.0024999999441206455,0.018928570672869682,-0.0,-6.0910223926134296e-21,-0.0,-0.0012499999720603228,2.687767063355291e-18,-4.0888470841624694e-19,-0.0008928571478463709,-5.0961911887809124e-33,-0.0012499999720603228,-0.0029761905316263437,0.0020833334419876337,-0.0062500000931322575,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,-0.0008571428479626775,-3.3881317890172014e-20,-6.0910223926134296e-21,-0.0,0.0005714285653084517,-0.0,3.042752783223985e-21,-2.168404344971009e-19,1.3552527156068805e-20,-1.3552527156068805e-20,3.3703774026776627e-34,1.5648180798146291e-34,8.139818311246217e-21,0.003000000026077032,-0.0020000000949949026,-0.0,-0.0020000000949949026,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0016666667070239782,-8.131516293641283e-20,-2.7382635446195093e-19,-0.0012499999720603228,-0.0,3.042752783223985e-21,-0.0,0.0008333333535119891,5.9428766875065265e-21,3.611118645726067e-35,2.2250512242822887e-20,0.0,1.3691317723097547e-19,3.1947167992748725e-19,0.0011160714784637094,5.302153280209778e-19,-0.0016741071594879031,3.469446951953614e-18,2.687767063355291e-18,-0.0,-2.168404344971009e-19,-0.0,5.9428766875065265e-21,0.0003348214377183467,-3.5236570605778894e-19,-2.710505431213761e-19,-6.938894007304805e-19,-2.379049248378876e-19,-4.0818550815409235e-19,0.002142857061699033,-3.3881317890172014e-20,-0.0008571428479626775,-0.0014285714132711291,-4.0888470841624694e-19,-0.0,1.3552527156068805e-20,-0.0,3.611118645726067e-35,-3.5236570605778894e-19,0.0005714285653084517,1.0096427616328741e-19,-3.2733847774559625e-19,1.0431601846770081e-19,5.206029380921747e-34,0.0017857142956927419,-1.0619705787680194e-20,-0.0007142857066355646,-4.963561889109798e-19,-0.0008928571478463709,-0.0,-1.3552527156068805e-20,-0.0,2.2250512242822887e-20,-2.710505431213761e-19,1.0096427616328741e-19,0.0003571428533177823,3.930862292699345e-34,1.2197274440461925e-19,-7.532024253276866e-20,0.0020833334419876337,-8.425943506694157e-34,3.960454746120191e-18,-0.0062500000931322575,-5.0961911887809124e-33,-0.0,3.3703774026776627e-34,-0.0,0.0,-6.938894007304805e-19,-3.2733847774559625e-19,3.930862292699345e-34,0.0020833334419876337,3.9451675079358755e-34,8.804251567922347e-34,0.0024999999441206455,-2.7382635446195093e-19,7.891051270656938e-19,-0.0016666667070239782,-0.0012499999720603228,-0.0,1.5648180798146291e-34,-0.0,1.3691317723097547e-19,-2.379049248378876e-19,1.0431601846770081e-19,1.2197274440461925e-19,3.9451675079358755e-34,0.0008333333535119891,3.1637014037132553e-19,0.0014880952658131719,-6.592928818031798e-19,2.1722565250836683e-18,-6.327402807426511e-19,-0.0029761905316263437,-0.0,8.139818311246217e-21,-0.0,3.1947167992748725e-19,-4.0818550815409235e-19,5.206029380921747e-34,-7.532024253276866e-20,8.804251567922347e-34,3.1637014037132553e-19,0.0007440476329065859,4.0,6.0,4.0,6.0,0.06548185646533966,-0.019970238208770752,-0.014684311114251614,-0.019970238208770752,-0.014684311114251614,0.0017361111240461469,0.0017857142956927419,0.0024999999441206455,0.0017857142956927419,0.0009300595265813172,0.0017857142956927419,0.0012755101779475808,0.0017361111240461469,0.0017857142956927419,0.0009300595265813172,-0.019970238208770752,0.025466270744800568,0.0017857142956927419,0.0024999999441206455,0.0017857142956927419,-0.0052083334885537624,-0.0011904762359336019,-0.0016666667070239782,-0.0011904762359336019,-2.0290792124714053e-19,-2.0887883644935577e-21,-1.250491454249776e-19,6.031142844897489e-34,-1.2136289257331746e-19,-2.4418382022323034e-19,-0.014684311114251614,0.0017857142956927419,0.01098905224353075,0.0017857142956927419,0.0012755101779475808,-0.0,-0.0007142857066355646,-0.0,-1.0842021724855044e-19,-0.0013950893189758062,-0.0007142857066355646,-0.0005102040595375001,3.3003788861684414e-18,7.995991022080595e-19,1.2361548374211893e-18,-0.019970238208770752,0.0024999999441206455,0.0017857142956927419,0.025466270744800568,0.0017857142956927419,-0.0,-1.8663519045185192e-21,-0.0016666667070239782,-1.215853266099118e-19,2.7647155398380363e-18,-0.0011904762359336019,-1.595580995296213e-19,-0.0052083334885537624,-0.0011904762359336019,-2.3635597744209376e-19,-0.014684311114251614,0.0017857142956927419,0.0012755101779475808,0.0017857142956927419,0.01098905224353075,-0.0,7.658668189998148e-21,-0.0,-0.0007142857066355646,2.015160657894282e-18,1.0842021724855044e-19,-0.0005102040595375001,-4.088532084659108e-33,-0.0007142857066355646,-0.0013950893189758062,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-0.0007142857066355646,-1.8663519045185192e-21,7.658668189998148e-21,-0.0,0.0004761904710903764,-0.0,-7.782015642341758e-23,8.131516293641283e-20,-0.0,6.776263578034403e-21,-2.407412430484045e-34,7.465407012228902e-22,-4.717888439387982e-21,0.0024999999441206455,-0.0016666667070239782,-0.0,-0.0016666667070239782,-0.0,-0.0,-0.0,0.0011111111380159855,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-1.0842021724855044e-19,-1.215853266099118e-19,-0.0007142857066355646,-0.0,-7.782015642341758e-23,-0.0,0.0004761904710903764,-1.5199249380334837e-22,8.355153760896818e-22,4.324339329948693e-20,-5.0446883724501076e-37,4.7798618771679633e-20,1.0239141475153427e-19,0.0009300595265813172,-2.0290792124714053e-19,-0.0013950893189758062,2.7647155398380363e-18,2.015160657894282e-18,-0.0,8.131516293641283e-20,-0.0,-1.5199249380334837e-22,0.00027901786961592734,-2.439454888092385e-19,-2.0328790734103208e-19,-5.782411758918651e-19,-1.6847400793369188e-19,-2.500858831407669e-19,0.0017857142956927419,-2.0887883644935577e-21,-0.0007142857066355646,-0.0011904762359336019,1.0842021724855044e-19,-0.0,-0.0,-0.0,8.355153760896818e-22,-2.439454888092385e-19,0.0004761904710903764,-0.0,-2.727820647879969e-19,-7.901938776975726e-20,1.6318658908279302e-21,0.0012755101779475808,-1.250491454249776e-19,-0.0005102040595375001,-1.595580995296213e-19,-0.0005102040595375001,-0.0,6.776263578034403e-21,-0.0,4.324339329948693e-20,-2.0328790734103208e-19,-0.0,0.0002040816325461492,4.092601131822876e-34,6.382323981184852e-20,8.70378666015189e-21,0.0017361111240461469,6.031142844897489e-34,3.3003788861684414e-18,-0.0052083334885537624,-4.088532084659108e-33,-0.0,-2.407412430484045e-34,-0.0,-5.0446883724501076e-37,-5.782411758918651e-19,-2.727820647879969e-19,4.092601131822876e-34,0.0017361111240461469,3.662895728048683e-34,5.034249248648301e-34,0.0017857142956927419,-1.2136289257331746e-19,7.995991022080595e-19,-0.0011904762359336019,-0.0007142857066355646,-0.0,7.465407012228902e-22,-0.0,4.7798618771679633e-20,-1.6847400793369188e-19,-7.901938776975726e-20,6.382323981184852e-20,3.662895728048683e-34,0.0004761904710903764,9.291052906439289e-20,0.0009300595265813172,-2.4418382022323034e-19,1.2361548374211893e-18,-2.3635597744209376e-19,-0.0013950893189758062,-0.0,-4.717888439387982e-21,-0.0,1.0239141475153427e-19,-2.500858831407669e-19,1.6318658908279302e-21,8.70378666015189e-21,5.034249248648301e-34,9.291052906439289e-20,0.00027901786961592734,4.0,6.0,4.0,7.0,0.05764526501297951,-0.0173086728900671,-0.012723213993012905,-0.0173086728900671,-0.011245748028159142,0.0014880952658131719,0.0015306122368201613,0.002142857061699033,0.0013392857508733869,0.0007971939048729837,0.0015306122368201613,0.0009566326625645161,0.0014880952658131719,0.0013392857508733869,0.0006200397037900984,-0.0173086728900671,0.021955782547593117,0.0015306122368201613,0.002142857061699033,0.0013392857508733869,-0.004464285913854837,-0.0010204081190750003,-0.0014285714132711291,-0.0008928571478463709,-1.3020440642104656e-19,-2.3662491453875006e-19,-7.660808842950556e-21,-1.1895247017376204e-18,-2.7536788308162593e-19,1.753221748327073e-20,-0.012723213993012905,0.0015306122368201613,0.009473851881921291,0.0015306122368201613,0.0009566326625645161,-8.49660486470075e-19,-0.0006122448830865324,-5.981609775118491e-19,-2.168404344971009e-19,-0.001195790828205645,-0.0006122448830865324,-0.00038265305920504034,1.80930352757066e-18,2.303929616531697e-19,8.819462763562088e-19,-0.0173086728900671,0.002142857061699033,0.0015306122368201613,0.021955782547593117,0.0013392857508733869,-1.1895247017376204e-18,-2.9390652572319367e-19,-0.0014285714132711291,-2.729484314886966e-19,2.3310346708438345e-18,-0.0010204081190750003,-1.4770140895155984e-19,-0.004464285913854837,-0.0008928571478463709,-6.466085065493796e-20,-0.011245748028159142,0.0013392857508733869,0.0009566326625645161,0.0013392857508733869,0.00697278929874301,-7.434529256613157e-19,-1.8711118846573e-19,-4.758098496757752e-19,-0.00044642857392318547,1.3991270990797291e-18,-2.981555974335137e-19,-0.0003188775444868952,-7.434529256613157e-19,-0.00044642857392318547,-0.0007440476329065859,0.0014880952658131719,-0.004464285913854837,-8.49660486470075e-19,-1.1895247017376204e-18,-7.434529256613157e-19,0.0014880952658131719,5.664403070804539e-19,7.930164505921508e-19,4.956353010071399e-19,7.222237291452134e-35,1.313532170302994e-34,4.252603002981653e-36,6.60318844635302e-34,1.5285988488961386e-34,3.511535390537522e-36,0.0015306122368201613,-0.0010204081190750003,-0.0006122448830865324,-2.9390652572319367e-19,-1.8711118846573e-19,5.664403070804539e-19,0.0004081632650922984,2.1751308743147135e-19,1.350375839661027e-19,5.421010862427522e-20,-1.3552527156068805e-20,-6.776263578034403e-21,-0.0,5.060739859110224e-22,1.1328696406891977e-22,0.002142857061699033,-0.0014285714132711291,-5.981609775118491e-19,-0.0014285714132711291,-4.758098496757752e-19,7.930164505921508e-19,2.1751308743147135e-19,0.0009523809421807528,1.5860328753349075e-19,-3.851859888774472e-34,1.8126090188466044e-19,2.7083389842945504e-35,7.930164505921508e-19,1.5860328753349075e-19,-3.051847792265001e-36,0.0013392857508733869,-0.0008928571478463709,-2.168404344971009e-19,-2.729484314886966e-19,-0.00044642857392318547,4.956353010071399e-19,1.350375839661027e-19,1.5860328753349075e-19,0.00029761905898340046,-1.7736202322589582e-21,-4.617075903207278e-22,8.200489262678854e-21,1.6105733938597953e-34,1.2065924459978326e-20,-5.938478251534504e-21,0.0007971939048729837,-1.3020440642104656e-19,-0.001195790828205645,2.3310346708438345e-18,1.3991270990797291e-18,7.222237291452134e-35,5.421010862427522e-20,-3.851859888774472e-34,-1.7736202322589582e-21,0.00023915816564112902,-1.7618285302889447e-19,-1.0842021724855044e-19,-4.956353010071399e-19,-1.2646065159211691e-19,-1.5270110829368054e-19,0.0015306122368201613,-2.3662491453875006e-19,-0.0006122448830865324,-0.0010204081190750003,-2.981555974335137e-19,1.313532170302994e-34,-1.3552527156068805e-20,1.8126090188466044e-19,-4.617075903207278e-22,-1.7618285302889447e-19,0.0004081632650922984,1.0164395367051604e-20,4.459151804465908e-19,1.8562599860058812e-19,-7.695126337055136e-22,0.0009566326625645161,-7.660808842950556e-21,-0.00038265305920504034,-1.4770140895155984e-19,-0.0003188775444868952,4.252603002981653e-36,-6.776263578034403e-21,2.7083389842945504e-35,8.200489262678854e-21,-1.0842021724855044e-19,1.0164395367051604e-20,0.00012755101488437504,3.1296361596292583e-34,4.076347674248454e-20,-3.9253103105099534e-20,0.0014880952658131719,-1.1895247017376204e-18,1.80930352757066e-18,-0.004464285913854837,-7.434529256613157e-19,6.60318844635302e-34,-0.0,7.930164505921508e-19,1.6105733938597953e-34,-4.956353010071399e-19,4.459151804465908e-19,3.1296361596292583e-34,0.0014880952658131719,4.956353010071399e-19,3.4647819968406738e-34,0.0013392857508733869,-2.7536788308162593e-19,2.303929616531697e-19,-0.0008928571478463709,-0.00044642857392318547,1.5285988488961386e-34,5.060739859110224e-22,1.5860328753349075e-19,1.2065924459978326e-20,-1.2646065159211691e-19,1.8562599860058812e-19,4.076347674248454e-20,4.956353010071399e-19,0.00029761905898340046,2.219487788428016e-20,0.0006200397037900984,1.753221748327073e-20,8.819462763562088e-19,-6.466085065493796e-20,-0.0007440476329065859,3.511535390537522e-36,1.1328696406891977e-22,-3.051847792265001e-36,-5.938478251534504e-21,-1.5270110829368054e-19,-7.695126337055136e-22,-3.9253103105099534e-20,3.4647819968406738e-34,2.219487788428016e-20,0.00012400794366840273,4.0,6.0,4.0,8.0,0.05149677395820618,-0.015275297686457634,-0.011225818656384945,-0.015275297686457634,-0.008891369216144085,0.0013020833721384406,0.0013392857508733869,0.0018749999580904841,0.0010416667209938169,0.0006975446594879031,0.0013392857508733869,0.0007440476329065859,0.0013020833721384406,0.0010416667209938169,0.0004340277810115367,-0.015275297686457634,0.019298115745186806,0.0013392857508733869,0.0018749999580904841,0.0010416667209938169,-0.00390625,-0.0008928571478463709,-0.0012499999720603228,-0.0006944444612599909,-3.7916745780123706e-34,0.0,9.486769009248164e-20,0.0,8.304862330759427e-20,1.1824119048972476e-19,-0.011225818656384945,0.0013392857508733869,0.008326822891831398,0.0013392857508733869,0.0007440476329065859,-0.0,-0.0005357142654247582,-0.0,9.486769009248164e-20,-0.0010463169310241938,-0.0005357142654247582,-0.00029761905898340046,2.168404344971009e-18,5.549276073149409e-19,6.753691370081479e-19,-0.015275297686457634,0.0018749999580904841,0.0013392857508733869,0.019298115745186806,0.0010416667209938169,-0.0,-0.0,-0.0012499999720603228,8.304862330759427e-20,1.6479872814984514e-18,-0.0008928571478463709,5.929230630780102e-20,-0.00390625,-0.0006944444612599909,1.2998777557343717e-19,-0.008891369216144085,0.0010416667209938169,0.0007440476329065859,0.0010416667209938169,0.0047105299308896065,-0.0,-0.0,-0.0,-0.00029761905898340046,1.1951721739722496e-18,-0.0,-0.00021258502965793014,-2.4768944321932117e-33,-0.00029761905898340046,-0.0004340277810115367,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0008928571478463709,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0018749999580904841,-0.0012499999720603228,-0.0,-0.0012499999720603228,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0006944444612599909,9.486769009248164e-20,8.304862330759427e-20,-0.00029761905898340046,-0.0,-0.0,-0.0,0.00019841270113829523,1.0833355937178202e-34,-0.0,-2.710505431213761e-20,-0.0,-2.372817831868224e-20,-3.378319682118218e-20,0.0006975446594879031,-3.7916745780123706e-34,-0.0010463169310241938,1.6479872814984514e-18,1.1951721739722496e-18,-0.0,-0.0,-0.0,1.0833355937178202e-34,0.0002092633949359879,-0.0,-1.2947206723560157e-19,-4.336808689942018e-19,-9.912705632401885e-20,-1.0325735006825511e-19,0.0013392857508733869,0.0,-0.0005357142654247582,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,9.486769009248164e-20,-0.00029761905898340046,5.929230630780102e-20,-0.00021258502965793014,-0.0,-0.0,-0.0,-2.710505431213761e-20,-1.2947206723560157e-19,-0.0,8.50340147735551e-05,2.6832003947537427e-34,-1.6940658945086007e-20,-4.5452107706671296e-20,0.0013020833721384406,0.0,2.168404344971009e-18,-0.00390625,-2.4768944321932117e-33,-0.0,-0.0,-0.0,-0.0,-4.336808689942018e-19,-0.0,2.6832003947537427e-34,0.0013020833721384406,2.0543253811544638e-34,2.1399222624697022e-34,0.0010416667209938169,8.304862330759427e-20,5.549276073149409e-19,-0.0006944444612599909,-0.00029761905898340046,-0.0,-0.0,-0.0,-2.372817831868224e-20,-9.912705632401885e-20,-0.0,-1.6940658945086007e-20,2.0543253811544638e-34,0.00019841270113829523,-3.713936583434245e-20,0.0004340277810115367,1.1824119048972476e-19,6.753691370081479e-19,1.2998777557343717e-19,-0.0004340277810115367,-0.0,-0.0,-0.0,-3.378319682118218e-20,-1.0325735006825511e-19,-0.0,-4.5452107706671296e-20,2.1399222624697022e-34,-3.713936583434245e-20,6.200397183420137e-05,4.0,6.0,5.0,3.0,0.09392856806516647,-0.030476190149784088,-0.022440476343035698,-0.025833332911133766,-0.037261903285980225,0.0027777778450399637,0.0028571428265422583,0.0033333334140479565,0.004999999888241291,0.0014880952658131719,0.0023809524718672037,0.0035714285913854837,0.0019841270986944437,0.004166666883975267,0.004166666883975267,-0.030476190149784088,0.03976190462708473,0.0028571428265422583,0.0033333334140479565,0.004999999888241291,-0.008333333767950535,-0.0019047618843615055,-0.002222222276031971,-0.0033333334140479565,-8.626596814951341e-19,-2.1772174374098785e-19,4.060360793323733e-20,-2.1551300348440934e-19,-5.598313149319142e-20,-7.222007335369755e-33,-0.022440476343035698,0.0028571428265422583,0.01716071367263794,0.0023809524718672037,0.0035714285913854837,-0.0,-0.0011428571306169033,-2.5946399163679857e-19,-0.0,-0.0022321429569274187,-0.0009523809421807528,-0.0014285714132711291,-6.439697435266683e-18,-3.604972223514302e-18,-1.8103299346337465e-17,-0.025833332911133766,0.0033333334140479565,0.0023809524718672037,0.024821428582072258,0.004166666883975267,-0.0,1.1025424468764243e-19,-0.0016666667070239782,-0.0,-6.179952383167375e-18,-0.0011904762359336019,9.77750438299677e-19,-0.003968254197388887,-0.0020833334419876337,-5.497283379466511e-32,-0.037261903285980225,0.004999999888241291,0.0035714285913854837,0.004166666883975267,0.07892857491970062,-0.0,3.2462900241273906e-20,-4.5807246070443575e-20,-0.004999999888241291,-1.1022301603457914e-17,2.439454888092385e-19,-0.0035714285913854837,-1.0842021724855044e-19,-0.004166666883975267,-0.02500000037252903,0.0027777778450399637,-0.008333333767950535,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0019047618843615055,-0.0011428571306169033,1.1025424468764243e-19,3.2462900241273906e-20,-0.0,0.0007619047537446022,-4.673175853767153e-21,-0.0,3.5236570605778894e-19,-4.0657581468206416e-20,-1.3552527156068805e-20,-5.309736672540653e-22,7.09208622500662e-22,2.8888949165808538e-33,0.0033333334140479565,-0.002222222276031971,-2.5946399163679857e-19,-0.0016666667070239782,-4.5807246070443575e-20,-0.0,-4.673175853767153e-21,0.0011111111380159855,-0.0,-9.127296671430505e-21,1.5968284870575195e-19,-3.361145627377834e-21,1.0842021724855044e-19,2.710505431213761e-20,-1.1487063446511143e-37,0.004999999888241291,-0.0033333334140479565,-0.0,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014880952658131719,-8.626596814951341e-19,-0.0022321429569274187,-6.179952383167375e-18,-1.1022301603457914e-17,-0.0,3.5236570605778894e-19,-9.127296671430505e-21,-0.0,0.00044642857392318547,3.5236570605778894e-19,5.963111948670274e-19,1.1315128710180514e-18,7.944016162266591e-19,3.965082408057119e-18,0.0023809524718672037,-2.1772174374098785e-19,-0.0009523809421807528,-0.0011904762359336019,2.439454888092385e-19,-0.0,-4.0657581468206416e-20,1.5968284870575195e-19,-0.0,3.5236570605778894e-19,0.0004761904710903764,-1.6263032587282567e-19,3.9575812757685466e-19,8.131516293641283e-20,2.8888949165808538e-33,0.0035714285913854837,4.060360793323733e-20,-0.0014285714132711291,9.77750438299677e-19,-0.0035714285913854837,-0.0,-1.3552527156068805e-20,-3.361145627377834e-21,-0.0,5.963111948670274e-19,-1.6263032587282567e-19,0.0014285714132711291,-8.002727664999758e-21,-5.313210100060197e-19,-1.722112176960247e-18,0.0019841270986944437,-2.1551300348440934e-19,-6.439697435266683e-18,-0.003968254197388887,-1.0842021724855044e-19,-0.0,-5.309736672540653e-22,1.0842021724855044e-19,-0.0,1.1315128710180514e-18,3.9575812757685466e-19,-8.002727664999758e-21,0.0009920635493472219,5.234079353100475e-20,1.0061727649835866e-32,0.004166666883975267,-5.598313149319142e-20,-3.604972223514302e-18,-0.0020833334419876337,-0.004166666883975267,-0.0,7.09208622500662e-22,2.710505431213761e-20,-0.0,7.944016162266591e-19,8.131516293641283e-20,-5.313210100060197e-19,5.234079353100475e-20,0.0020833334419876337,7.50395039009845e-33,0.004166666883975267,-7.222007335369755e-33,-1.8103299346337465e-17,-5.497283379466511e-32,-0.02500000037252903,-0.0,2.8888949165808538e-33,-1.1487063446511143e-37,-0.0,3.965082408057119e-18,2.8888949165808538e-33,-1.722112176960247e-18,1.0061727649835866e-32,7.50395039009845e-33,0.012500000186264515,4.0,6.0,5.0,4.0,0.07582738250494003,-0.02360714226961136,-0.0173660721629858,-0.019999999552965164,-0.02360714226961136,0.0020833334419876337,0.002142857061699033,0.0024999999441206455,0.003000000026077032,0.0011160714784637094,0.0017857142956927419,0.002142857061699033,0.0014880952658131719,0.0024999999441206455,0.0020833334419876337,-0.02360714226961136,0.030321428552269936,0.002142857061699033,0.0024999999441206455,0.003000000026077032,-0.0062500000931322575,-0.0014285714132711291,-0.0016666667070239782,-0.0020000000949949026,5.358282137662446e-19,-7.148361729303432e-20,-4.81482486096809e-35,-7.60036656172085e-19,-5.421010862427522e-20,-8.425943506694157e-34,-0.0173660721629858,0.002142857061699033,0.01308482140302658,0.0017857142956927419,0.002142857061699033,-0.0,-0.0008571428479626775,-1.0785350805607212e-19,-0.0,-0.0016741071594879031,-0.0007142857066355646,-0.0008571428479626775,2.1152290392930375e-18,8.356351221963556e-19,3.960454746120191e-18,-0.019999999552965164,0.0024999999441206455,0.0017857142956927419,0.018928570672869682,0.0024999999441206455,-0.0,1.2626344979537971e-20,-0.0012499999720603228,-0.0,2.656295322589486e-18,-0.0008928571478463709,-2.9911042235434134e-19,-0.0029761905316263437,-0.0012499999720603228,-5.1991758815144683e-33,-0.02360714226961136,0.003000000026077032,0.002142857061699033,0.0024999999441206455,0.030321428552269936,-0.0,-1.3361138989186449e-33,-5.421010862427522e-20,-0.0020000000949949026,3.5102344007779914e-18,-1.0785119453529639e-19,-0.0014285714132711291,-1.0842021724855044e-19,-0.0016666667070239782,-0.0062500000931322575,0.0020833334419876337,-0.0062500000931322575,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,-0.0008571428479626775,1.2626344979537971e-20,-1.3361138989186449e-33,-0.0,0.0005714285653084517,1.6058598857078564e-21,-0.0,-2.168404344971009e-19,-6.776263578034403e-21,-0.0,4.380516081481946e-22,1.6250033905767303e-34,3.3703774026776627e-34,0.0024999999441206455,-0.0016666667070239782,-1.0785350805607212e-19,-0.0012499999720603228,-5.421010862427522e-20,-0.0,1.6058598857078564e-21,0.0008333333535119891,-0.0,3.136445123983037e-21,4.4212138119060165e-20,2.407412430484045e-35,3.7947076036992655e-19,2.710505431213761e-20,0.0,0.003000000026077032,-0.0020000000949949026,-0.0,-0.0,-0.0020000000949949026,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,5.358282137662446e-19,-0.0016741071594879031,2.656295322589486e-18,3.5102344007779914e-18,-0.0,-2.168404344971009e-19,3.136445123983037e-21,-0.0,0.0003348214377183467,-2.710505431213761e-19,-3.7947076036992655e-19,-4.1755855016887213e-19,-2.379049248378876e-19,-6.938894007304805e-19,0.0017857142956927419,-7.148361729303432e-20,-0.0007142857066355646,-0.0008928571478463709,-1.0785119453529639e-19,-0.0,-6.776263578034403e-21,4.4212138119060165e-20,-0.0,-2.710505431213761e-19,0.0003571428533177823,1.0614413932023129e-20,-1.5597905704016627e-20,4.0657581468206416e-20,4.448424649349225e-34,0.002142857061699033,-4.81482486096809e-35,-0.0008571428479626775,-2.9911042235434134e-19,-0.0014285714132711291,-0.0,-0.0,2.407412430484045e-35,-0.0,-3.7947076036992655e-19,1.0614413932023129e-20,0.0005714285653084517,5.145844070159646e-34,1.817162518871738e-19,-3.2733847774559625e-19,0.0014880952658131719,-7.60036656172085e-19,2.1152290392930375e-18,-0.0029761905316263437,-1.0842021724855044e-19,-0.0,4.380516081481946e-22,3.7947076036992655e-19,-0.0,-4.1755855016887213e-19,-1.5597905704016627e-20,5.145844070159646e-34,0.0007440476329065859,2.1497112263500468e-20,8.804251567922347e-34,0.0024999999441206455,-5.421010862427522e-20,8.356351221963556e-19,-0.0012499999720603228,-0.0016666667070239782,-0.0,1.6250033905767303e-34,2.710505431213761e-20,-0.0,-2.379049248378876e-19,4.0657581468206416e-20,1.817162518871738e-19,2.1497112263500468e-20,0.0008333333535119891,3.7691289637055837e-34,0.0020833334419876337,-8.425943506694157e-34,3.960454746120191e-18,-5.1991758815144683e-33,-0.0062500000931322575,-0.0,3.3703774026776627e-34,0.0,-0.0,-6.938894007304805e-19,4.448424649349225e-34,-3.2733847774559625e-19,8.804251567922347e-34,3.7691289637055837e-34,0.0020833334419876337,4.0,6.0,5.0,5.0,0.06369047611951828,-0.019285714253783226,-0.014178571291267872,-0.016333334147930145,-0.016333334147930145,0.0016666667070239782,0.001714285695925355,0.0020000000949949026,0.0020000000949949026,0.0008928571478463709,0.0014285714132711291,0.0014285714132711291,0.0011904762359336019,0.0016666667070239782,0.0011904762359336019,-0.019285714253783226,0.024523809552192688,0.001714285695925355,0.0020000000949949026,0.0020000000949949026,-0.004999999888241291,-0.0011428571306169033,-0.0013333333190530539,-0.0013333333190530539,-4.157561959924227e-18,-2.2449435738456937e-18,-2.2359974087257795e-18,-5.429385238949009e-18,-2.7107227729197094e-18,-5.42201299173963e-18,-0.014178571291267872,0.001714285695925355,0.010582142509520054,0.0014285714132711291,0.0014285714132711291,-9.029063506542972e-18,-0.0006857143016532063,-4.454700021806724e-19,-4.336808689942018e-19,-0.0013392857508733869,-0.0005714285653084517,-0.0005714285653084517,-4.0665311471030724e-18,-1.999488687213699e-18,-3.98422626256374e-18,-0.016333334147930145,0.0020000000949949026,0.0014285714132711291,0.015309523791074753,0.0016666667070239782,-1.0926286613855821e-17,-2.897228012812653e-18,-0.0010000000474974513,-8.5723812650296e-21,-4.119968255444917e-18,-0.0007142857066355646,4.0657581468206416e-20,-0.0023809524718672037,-0.0008333333535119891,-2.0410432814327338e-20,-0.016333334147930145,0.0020000000949949026,0.0014285714132711291,0.0016666667070239782,0.015309523791074753,-1.0926286613855821e-17,-2.8905071703356597e-18,-1.410769136288833e-20,-0.0010000000474974513,-4.112098045506781e-18,9.558954734860194e-20,-0.0007142857066355646,-0.0,-0.0008333333535119891,-0.0023809524718672037,0.0016666667070239782,-0.004999999888241291,-9.029063506542972e-18,-1.0926286613855821e-17,-1.0926286613855821e-17,0.0016666667070239782,6.929483276873366e-19,1.0105497005510531e-18,1.0105497005510531e-18,1.09039765187595e-18,6.34413150133963e-19,6.34413150133963e-19,1.5860329011843016e-18,7.401487010056843e-19,1.5860329011843016e-18,0.001714285695925355,-0.0011428571306169033,-0.0006857143016532063,-2.897228012812653e-18,-2.8905071703356597e-18,6.929483276873366e-19,0.0004571428580675274,2.7799221697252697e-19,2.7776293284648493e-19,3.5236570605778894e-19,1.2874900798265365e-19,1.2874900798265365e-19,4.378395195238121e-19,2.0301221062780757e-19,4.36373548683215e-19,0.0020000000949949026,-0.0013333333190530539,-4.454700021806724e-19,-0.0010000000474974513,-1.410769136288833e-20,1.0105497005510531e-18,2.7799221697252697e-19,0.0006666666595265269,2.177366968077056e-21,1.587644847592588e-21,9.912238566161477e-21,2.0796956192229565e-23,-2.168404344971009e-19,-0.0,2.480378816871072e-21,0.0020000000949949026,-0.0013333333190530539,-4.336808689942018e-19,-8.5723812650296e-21,-0.0010000000474974513,1.0105497005510531e-18,2.7776293284648493e-19,2.177366968077056e-21,0.0006666666595265269,1.1398367087428158e-21,3.5335312421210894e-24,5.4219435408799184e-21,5.184207066850133e-21,-8.626901676243507e-21,-2.1599010575209345e-19,0.0008928571478463709,-4.157561959924227e-18,-0.0013392857508733869,-4.119968255444917e-18,-4.112098045506781e-18,1.09039765187595e-18,3.5236570605778894e-19,1.587644847592588e-21,1.1398367087428158e-21,0.0002678571327123791,2.846030702774449e-19,2.846030702774449e-19,6.873830048272915e-19,3.172065750669815e-19,6.797590362177551e-19,0.0014285714132711291,-2.2449435738456937e-18,-0.0005714285653084517,-0.0007142857066355646,9.558954734860194e-20,6.34413150133963e-19,1.2874900798265365e-19,9.912238566161477e-21,3.5335312421210894e-24,2.846030702774449e-19,0.0002857142826542258,-4.9094597534048554e-20,-1.5254050600787454e-20,1.3552527156068805e-20,8.413169999745882e-24,0.0014285714132711291,-2.2359974087257795e-18,-0.0005714285653084517,4.0657581468206416e-20,-0.0007142857066355646,6.34413150133963e-19,1.2874900798265365e-19,2.0796956192229565e-23,5.4219435408799184e-21,2.846030702774449e-19,-4.9094597534048554e-20,0.0002857142826542258,4.9516565517894966e-23,4.091616265133447e-20,-3.4579681278191246e-20,0.0011904762359336019,-5.429385238949009e-18,-4.0665311471030724e-18,-0.0023809524718672037,-0.0,1.5860329011843016e-18,4.378395195238121e-19,-2.168404344971009e-19,5.184207066850133e-21,6.873830048272915e-19,-1.5254050600787454e-20,4.9516565517894966e-23,0.0005952381179668009,-7.788808580394602e-21,8.136106398831903e-22,0.0016666667070239782,-2.7107227729197094e-18,-1.999488687213699e-18,-0.0008333333535119891,-0.0008333333535119891,7.401487010056843e-19,2.0301221062780757e-19,-0.0,-8.626901676243507e-21,3.172065750669815e-19,1.3552527156068805e-20,4.091616265133447e-20,-7.788808580394602e-21,0.00041666667675599456,6.564812302776267e-21,0.0011904762359336019,-5.42201299173963e-18,-3.98422626256374e-18,-2.0410432814327338e-20,-0.0023809524718672037,1.5860329011843016e-18,4.36373548683215e-19,2.480378816871072e-21,-2.1599010575209345e-19,6.797590362177551e-19,8.413169999745882e-24,-3.4579681278191246e-20,8.136106398831903e-22,6.564812302776267e-21,0.0005952381179668009,4.0,6.0,5.0,6.0,0.05494897812604904,-0.016309523954987526,-0.011985544115304947,-0.013809523545205593,-0.011985544115304947,0.0013888889225199819,0.0014285714132711291,0.0016666667070239782,0.0014285714132711291,0.0007440476329065859,0.0011904762359336019,0.0010204081190750003,0.0009920635493472219,0.0011904762359336019,0.0007440476329065859,-0.016309523954987526,0.020595237612724304,0.0014285714132711291,0.0016666667070239782,0.0014285714132711291,-0.004166666883975267,-0.0009523809421807528,-0.0011111111380159855,-0.0009523809421807528,-4.693656474148925e-19,-1.4652451188565587e-19,6.49597609823829e-23,-1.4856052649057565e-19,7.443507526680595e-21,-4.61823052698116e-19,-0.011985544115304947,0.0014285714132711291,0.008886479772627354,0.0011904762359336019,0.0010204081190750003,-0.0,-0.0005714285653084517,-1.3527605755176231e-19,-2.710505431213761e-20,-0.0011160714784637094,-0.0004761904710903764,-0.0004081632650922984,-3.137090744913483e-18,-1.1446436394592948e-18,-2.030825804334811e-18,-0.013809523545205593,0.0016666667070239782,0.0011904762359336019,0.012857142835855484,0.0011904762359336019,-0.0,4.053711359798058e-20,-0.0008333333535119891,-3.2495727760144254e-21,-3.279711571768651e-18,-0.0005952381179668009,8.131516293641283e-20,-0.0019841270986944437,-0.0005952381179668009,1.7647415308265812e-20,-0.011985544115304947,0.0014285714132711291,0.0010204081190750003,0.0011904762359336019,0.008886479772627354,-0.0,2.0775020747245755e-20,1.4750250755715778e-20,-0.0005714285653084517,-2.713624108918239e-18,1.658513025546218e-19,-0.0004081632650922984,5.421010862427522e-20,-0.0004761904710903764,-0.0011160714784637094,0.0013888889225199819,-0.004166666883975267,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0009523809421807528,-0.0005714285653084517,4.053711359798058e-20,2.0775020747245755e-20,-0.0,0.0003809523768723011,-2.1842315978089658e-21,7.289552372188606e-22,1.8973538018496328e-19,-6.776263578034403e-21,-6.776263578034403e-21,-4.6712888479947665e-21,2.1064858766735392e-34,-9.080702330695475e-22,0.0016666667070239782,-0.0011111111380159855,-1.3527605755176231e-19,-0.0008333333535119891,1.4750250755715778e-20,-0.0,-2.1842315978089658e-21,0.0005555555690079927,-4.0178432756494653e-22,-4.266077380491403e-21,8.078030665986634e-20,5.694911199269147e-23,8.131516293641283e-20,-6.776263578034403e-21,-1.3588808143899143e-22,0.0014285714132711291,-0.0009523809421807528,-2.710505431213761e-20,-3.2495727760144254e-21,-0.0005714285653084517,-0.0,7.289552372188606e-22,-4.0178432756494653e-22,0.0003809523768723011,1.4237407055816962e-21,7.618270332740967e-22,6.704720532984235e-21,-9.56629329707783e-22,2.443607851755284e-21,1.8574600441289366e-19,0.0007440476329065859,-4.693656474148925e-19,-0.0011160714784637094,-3.279711571768651e-18,-2.713624108918239e-18,-0.0,1.8973538018496328e-19,-4.266077380491403e-21,1.4237407055816962e-21,0.00022321428696159273,2.168404344971009e-19,1.2197274440461925e-19,5.532825518717261e-19,2.2657611766230274e-19,3.944091252447514e-19,0.0011904762359336019,-1.4652451188565587e-19,-0.0004761904710903764,-0.0005952381179668009,1.658513025546218e-19,-0.0,-6.776263578034403e-21,8.078030665986634e-20,7.618270332740967e-22,2.168404344971009e-19,0.0002380952355451882,-5.376441660164826e-20,1.9148003334380832e-19,-2.0328790734103208e-20,1.4879434314632183e-21,0.0010204081190750003,6.49597609823829e-23,-0.0004081632650922984,8.131516293641283e-20,-0.0004081632650922984,-0.0,-6.776263578034403e-21,5.694911199269147e-23,6.704720532984235e-21,1.2197274440461925e-19,-5.376441660164826e-20,0.00016326530021615326,1.3559313581286015e-22,2.096824819963358e-20,2.201644113210312e-20,0.0009920635493472219,-1.4856052649057565e-19,-3.137090744913483e-18,-0.0019841270986944437,5.421010862427522e-20,-0.0,-4.6712888479947665e-21,8.131516293641283e-20,-9.56629329707783e-22,5.532825518717261e-19,1.9148003334380832e-19,1.3559313581286015e-22,0.0004960317746736109,-1.3085198382751188e-20,-6.7141608125043534e-21,0.0011904762359336019,7.443507526680595e-21,-1.1446436394592948e-18,-0.0005952381179668009,-0.0004761904710903764,-0.0,2.1064858766735392e-34,-6.776263578034403e-21,2.443607851755284e-21,2.2657611766230274e-19,-2.0328790734103208e-20,2.096824819963358e-20,-1.3085198382751188e-20,0.0002380952355451882,3.21726305282049e-21,0.0007440476329065859,-4.61823052698116e-19,-2.030825804334811e-18,1.7647415308265812e-20,-0.0011160714784637094,-0.0,-9.080702330695475e-22,-1.3588808143899143e-22,1.8574600441289366e-19,3.944091252447514e-19,1.4879434314632183e-21,2.201644113210312e-20,-6.7141608125043534e-21,3.21726305282049e-21,0.00022321428696159273,4.0,6.0,5.0,7.0,0.04833900183439255,-0.01413265336304903,-0.010382653214037418,-0.011964285746216774,-0.009175170212984085,0.0011904762359336019,0.0012244897661730647,0.0014285714132711291,0.0010714285308495164,0.0006377550889737904,0.0010204081190750003,0.0007653061184100807,0.0008503401186317205,0.0008928571478463709,0.0004960317746736109,-0.01413265336304903,0.01775510236620903,0.0012244897661730647,0.0014285714132711291,0.0010714285308495164,-0.0035714285913854837,-0.0008163265301845968,-0.0009523809421807528,-0.0007142857066355646,1.5857967411194177e-19,-3.2605941870416316e-18,-6.565138134389431e-19,-7.870822878969684e-18,-2.9130172363450653e-18,5.063959320371288e-20,-0.010382653214037418,0.0012244897661730647,0.007660714443773031,0.0010204081190750003,0.0007653061184100807,2.108452749865609e-19,-0.0004897959297522902,-4.0015478381809066e-18,5.827586677109586e-19,-0.0009566326625645161,-0.0004081632650922984,-0.0003061224415432662,-6.2719059159618326e-18,-2.5755579453109413e-18,-3.334309214509907e-19,-0.011964285746216774,0.0014285714132711291,0.0010204081190750003,0.011084184050559998,0.0008928571478463709,-1.2256258208401244e-17,-4.6563547644258465e-18,-0.0007142857066355646,4.493724335155444e-19,-5.637851296924623e-18,-0.0005102040595375001,-1.0074785857317969e-18,-0.001700680237263441,-0.00044642857392318547,4.90515311509378e-19,-0.009175170212984085,0.0010714285308495164,0.0007653061184100807,0.0008928571478463709,0.005637755151838064,-1.4466885367354562e-18,-1.3775388224654374e-18,-1.101159995428301e-18,-0.0003571428533177823,-7.90074582743606e-19,-1.0560872340430161e-18,-0.00025510202976875007,1.551866619573105e-18,-0.00029761905898340046,-0.0005952381179668009,0.0011904762359336019,-0.0035714285913854837,2.108452749865609e-19,-1.2256258208401244e-17,-1.4466885367354562e-18,0.0011904762359336019,1.539854483663369e-19,1.2225040825673799e-18,2.9731823215966863e-19,-2.8322015354022696e-19,4.984674640269449e-19,-2.2657612735582555e-20,1.69932097294015e-18,5.2867765096103e-19,-2.2028234918180537e-20,0.0012244897661730647,-0.0008163265301845968,-0.0004897959297522902,-4.6563547644258465e-18,-1.3775388224654374e-18,1.539854483663369e-19,0.00032653060043230653,2.5466293196396423e-19,1.9842523240608534e-20,6.776263578034403e-20,2.710505431213761e-19,1.3213713977167085e-19,5.955715403030402e-19,2.718913463646421e-19,5.172204304576948e-20,0.0014285714132711291,-0.0009523809421807528,-4.0015478381809066e-18,-0.0007142857066355646,-1.101159995428301e-18,1.2225040825673799e-18,2.5466293196396423e-19,0.0004761904710903764,1.903239450401889e-19,4.248302432350375e-19,4.531522353246055e-19,1.3594567318232106e-19,9.06304470649211e-19,2.379049248378876e-19,-1.2822022611999548e-34,0.0010714285308495164,-0.0007142857066355646,5.827586677109586e-19,4.493724335155444e-19,-0.0003571428533177823,2.9731823215966863e-19,1.9842523240608534e-20,1.903239450401889e-19,0.0002380952355451882,-1.470914407979844e-19,-9.62964972193618e-35,-4.5644020071132134e-21,-2.2657611766230274e-19,4.280950475646019e-21,-6.732431406622188e-20,0.0006377550889737904,1.5857967411194177e-19,-0.0009566326625645161,-5.637851296924623e-18,-7.90074582743606e-19,-2.8322015354022696e-19,6.776263578034403e-20,4.248302432350375e-19,-1.470914407979844e-19,0.00019132652960252017,2.168404344971009e-19,3.3881317890172014e-20,7.889704517222125e-19,2.9384091996086056e-19,3.296719607159569e-20,0.0010204081190750003,-3.2605941870416316e-18,-0.0004081632650922984,-0.0005102040595375001,-1.0560872340430161e-18,4.984674640269449e-19,2.710505431213761e-19,4.531522353246055e-19,-9.62964972193618e-35,2.168404344971009e-19,0.0002040816325461492,1.3447477803213985e-19,5.792841472467179e-19,2.1267564473638175e-19,4.531522547116511e-20,0.0007653061184100807,-6.565138134389431e-19,-0.0003061224415432662,-1.0074785857317969e-18,-0.00025510202976875007,-2.2657612735582555e-20,1.3213713977167085e-19,1.3594567318232106e-19,-4.5644020071132134e-21,3.3881317890172014e-20,1.3447477803213985e-19,0.0001020408162730746,4.8552028444524855e-20,4.573977915173222e-20,-2.5037291804449707e-20,0.0008503401186317205,-7.870822878969684e-18,-6.2719059159618326e-18,-0.001700680237263441,1.551866619573105e-18,1.69932097294015e-18,5.955715403030402e-19,9.06304470649211e-19,-2.2657611766230274e-19,7.889704517222125e-19,5.792841472467179e-19,4.8552028444524855e-20,0.00042517005931586027,-5.304758382151437e-20,-1.5734453836103525e-19,0.0008928571478463709,-2.9130172363450653e-18,-2.5755579453109413e-18,-0.00044642857392318547,-0.00029761905898340046,5.2867765096103e-19,2.718913463646421e-19,2.379049248378876e-19,4.280950475646019e-21,2.9384091996086056e-19,2.1267564473638175e-19,4.573977915173222e-20,-5.304758382151437e-20,0.00014880952949170023,8.524920161797235e-21,0.0004960317746736109,5.063959320371288e-20,-3.334309214509907e-19,4.90515311509378e-19,-0.0005952381179668009,-2.2028234918180537e-20,5.172204304576948e-20,-1.2822022611999548e-34,-6.732431406622188e-20,3.296719607159569e-20,4.531522547116511e-20,-2.5037291804449707e-20,-1.5734453836103525e-19,8.524920161797235e-21,9.920635056914762e-05,4.0,6.0,5.0,8.0,0.04315972328186035,-0.012470237910747528,-0.009159225970506668,-0.010555555112659931,-0.0072519839741289616,0.0010416667209938169,0.0010714285308495164,0.0012499999720603228,0.0008333333535119891,0.0005580357392318547,0.0008928571478463709,0.0005952381179668009,0.0007440476329065859,0.0006944444612599909,0.00034722223062999547,-0.012470237910747528,0.015605159103870392,0.0010714285308495164,0.0012499999720603228,0.0008333333535119891,-0.0031250000465661287,-0.0007142857066355646,-0.0008333333535119891,-0.0005555555690079927,-2.949080227342955e-34,0.0,8.300922883092143e-20,0.0,6.370001017246721e-35,9.117590547047505e-20,-0.009159225970506668,0.0010714285308495164,0.006732887122780085,0.0008928571478463709,0.0005952381179668009,-0.0,-0.00042857142398133874,-0.0,8.300922883092143e-20,-0.0008370535797439516,-0.0003571428533177823,-0.0002380952355451882,1.0620756080875938e-18,3.304235253882952e-19,5.507441930657422e-19,-0.010555555112659931,0.0012499999720603228,0.0008928571478463709,0.009742063470184803,0.0006944444612599909,-0.0,-0.0,-0.0006249999860301614,6.370001017246721e-35,1.352848308361342e-18,-0.00044642857392318547,-5.551267939160926e-34,-0.0014880952658131719,-0.00034722223062999547,-5.746433980531004e-34,-0.0072519839741289616,0.0008333333535119891,0.0005952381179668009,0.0006944444612599909,0.00380810652859509,-0.0,-0.0,-0.0,-0.0002380952355451882,9.17565914303661e-19,-5.960866649817548e-34,-0.0001700680295471102,-1.1642317374089676e-33,-0.00019841270113829523,-0.00034722223062999547,0.0010416667209938169,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-0.00042857142398133874,-0.0,-0.0,-0.0,0.0002857142826542258,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0008333333535119891,-0.0,-0.0006249999860301614,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0005555555690079927,8.300922883092143e-20,6.370001017246721e-35,-0.0002380952355451882,-0.0,-0.0,-0.0,0.00015873015217948705,8.425943506694157e-35,-0.0,-2.371692252312041e-20,-0.0,-1.820000311140915e-35,-2.6050258475051852e-20,0.0005580357392318547,-2.949080227342955e-34,-0.0008370535797439516,1.352848308361342e-18,9.17565914303661e-19,-0.0,-0.0,-0.0,8.425943506694157e-35,0.00016741071885917336,-1.0875654371573568e-19,-8.286212639120624e-20,-2.1241512161751876e-19,-6.608470637012875e-20,-8.26058813470738e-20,0.0008928571478463709,0.0,-0.0003571428533177823,-0.00044642857392318547,-5.960866649817548e-34,-0.0,-0.0,-0.0,-0.0,-1.0875654371573568e-19,0.00017857142665889114,5.383047235924193e-35,1.3799316447069957e-34,4.2931206086471143e-35,5.366400904301856e-35,0.0005952381179668009,8.300922883092143e-20,-0.0002380952355451882,-5.551267939160926e-34,-0.0001700680295471102,-0.0,-0.0,-0.0,-2.371692252312041e-20,-8.286212639120624e-20,5.383047235924193e-35,6.80272132740356e-05,1.0513764966717286e-34,0.0,-3.93470785775038e-20,0.0007440476329065859,0.0,1.0620756080875938e-18,-0.0014880952658131719,-1.1642317374089676e-33,-0.0,-0.0,-0.0,-0.0,-2.1241512161751876e-19,1.3799316447069957e-34,1.0513764966717286e-34,0.00037202381645329297,8.38500094661952e-35,1.0481251757246252e-34,0.0006944444612599909,6.370001017246721e-35,3.304235253882952e-19,-0.00034722223062999547,-0.00019841270113829523,-0.0,-0.0,-0.0,-1.820000311140915e-35,-6.608470637012875e-20,4.2931206086471143e-35,0.0,8.38500094661952e-35,9.920635056914762e-05,6.066667225493174e-36,0.00034722223062999547,9.117590547047505e-20,5.507441930657422e-19,-5.746433980531004e-34,-0.00034722223062999547,-0.0,-0.0,-0.0,-2.6050258475051852e-20,-8.26058813470738e-20,5.366400904301856e-35,-3.93470785775038e-20,1.0481251757246252e-34,6.066667225493174e-36,4.960317528457381e-05,4.0,6.0,6.0,3.0,0.08123110234737396,-0.02579365111887455,-0.01898384280502796,-0.01898384280502796,-0.03154762089252472,0.002314814832061529,0.0023809524718672037,0.0023809524718672037,0.004166666883975267,0.0012400794075801969,0.001700680237263441,0.0029761905316263437,0.0012400794075801969,0.0029761905316263437,0.0034722222480922937,-0.02579365111887455,0.033399470150470734,0.0023809524718672037,0.0023809524718672037,0.004166666883975267,-0.0069444444961845875,-0.0015873016091063619,-0.0015873016091063619,-0.0027777778450399637,-3.4276524107334536e-19,-1.8605348618739038e-20,-6.952721882207277e-20,-3.232697572582069e-19,-3.2619127517121324e-20,2.4074124304840448e-33,-0.01898384280502796,0.0023809524718672037,0.01441397424787283,0.001700680237263441,0.0029761905316263437,-0.0,-0.0009523809421807528,-1.216323369643338e-20,-0.0,-0.0018601190531626344,-0.0006802721181884408,-0.0011904762359336019,1.4855087432680292e-18,1.0028870095490916e-18,9.234809794664512e-18,-0.01898384280502796,0.0023809524718672037,0.001700680237263441,0.01441397424787283,0.0029761905316263437,-0.0,1.6089740510774695e-20,-0.0009523809421807528,-0.0,2.3852447794681098e-18,-0.0006802721181884408,-3.4315882394855575e-19,-0.0018601190531626344,-0.0011904762359336019,9.234809794664512e-18,-0.03154762089252472,0.004166666883975267,0.0029761905316263437,0.0029761905316263437,0.06626984477043152,-0.0,-6.65004486384676e-20,-3.564590416307503e-20,-0.004166666883975267,5.150120378754675e-18,-2.202285662861181e-19,-0.0029761905316263437,4.336808689942018e-18,-0.0029761905316263437,-0.02083333395421505,0.002314814832061529,-0.0069444444961845875,-0.0,-0.0,-0.0,0.002314814832061529,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0015873016091063619,-0.0009523809421807528,1.6089740510774695e-20,-6.65004486384676e-20,-0.0,0.0006349206087179482,8.093845668635148e-22,-0.0,1.3552527156068805e-19,6.776263578034403e-21,2.710505431213761e-20,-6.217371000006637e-21,-5.048757756157513e-22,-3.851859888774472e-34,0.0023809524718672037,-0.0015873016091063619,-1.216323369643338e-20,-0.0009523809421807528,-3.564590416307503e-20,-0.0,8.093845668635148e-22,0.0006349206087179482,-0.0,1.5808291903456744e-21,6.658756473179815e-22,7.058343173102335e-22,1.3552527156068805e-19,1.3552527156068805e-20,-5.7777898331617076e-34,0.004166666883975267,-0.0027777778450399637,-0.0,-0.0,-0.004166666883975267,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012400794075801969,-3.4276524107334536e-19,-0.0018601190531626344,2.3852447794681098e-18,5.150120378754675e-18,-0.0,1.3552527156068805e-19,1.5808291903456744e-21,-0.0,0.00037202381645329297,-1.8973538018496328e-19,-4.0657581468206416e-19,-3.135441812061147e-19,-2.8420625622796674e-19,-1.6521176010920818e-18,0.001700680237263441,-1.8605348618739038e-20,-0.0006802721181884408,-0.0006802721181884408,-2.202285662861181e-19,-0.0,6.776263578034403e-21,6.658756473179815e-22,-0.0,-1.8973538018496328e-19,0.0002721088530961424,2.710505431213761e-20,3.419012444611852e-20,6.098637220230962e-20,7.703719777548943e-34,0.0029761905316263437,-6.952721882207277e-20,-0.0011904762359336019,-3.4315882394855575e-19,-0.0029761905316263437,-0.0,2.710505431213761e-20,7.058343173102335e-22,-0.0,-4.0657581468206416e-19,2.710505431213761e-20,0.0011904762359336019,1.3785827227828921e-21,2.66856323825426e-19,-9.742216858065258e-19,0.0012400794075801969,-3.232697572582069e-19,1.4855087432680292e-18,-0.0018601190531626344,4.336808689942018e-18,-0.0,-6.217371000006637e-21,1.3552527156068805e-19,-0.0,-3.135441812061147e-19,3.419012444611852e-20,1.3785827227828921e-21,0.00037202381645329297,-4.384176153744101e-19,-1.6521176010920818e-18,0.0029761905316263437,-3.2619127517121324e-20,1.0028870095490916e-18,-0.0011904762359336019,-0.0029761905316263437,-0.0,-5.048757756157513e-22,1.3552527156068805e-20,-0.0,-2.8420625622796674e-19,6.098637220230962e-20,2.66856323825426e-19,-4.384176153744101e-19,0.0011904762359336019,-9.742216858065258e-19,0.0034722222480922937,2.4074124304840448e-33,9.234809794664512e-18,9.234809794664512e-18,-0.02083333395421505,-0.0,-3.851859888774472e-34,-5.7777898331617076e-34,-0.0,-1.6521176010920818e-18,7.703719777548943e-34,-9.742216858065258e-19,-1.6521176010920818e-18,-9.742216858065258e-19,0.010416666977107525,4.0,6.0,6.0,4.0,0.06548185646533966,-0.019970238208770752,-0.014684311114251614,-0.014684311114251614,-0.019970238208770752,0.0017361111240461469,0.0017857142956927419,0.0017857142956927419,0.0024999999441206455,0.0009300595265813172,0.0012755101779475808,0.0017857142956927419,0.0009300595265813172,0.0017857142956927419,0.0017361111240461469,-0.019970238208770752,0.025466270744800568,0.0017857142956927419,0.0017857142956927419,0.0024999999441206455,-0.0052083334885537624,-0.0011904762359336019,-0.0011904762359336019,-0.0016666667070239782,-2.734322545988577e-19,-1.166480923287359e-19,-2.440664655894115e-21,-1.979669517285111e-19,1.2764167486756084e-20,9.62964972193618e-34,-0.014684311114251614,0.0017857142956927419,0.01098905224353075,0.0012755101779475808,0.0017857142956927419,-0.0,-0.0007142857066355646,-1.070734185772978e-19,-0.0,-0.0013950893189758062,-0.0005102040595375001,-0.0007142857066355646,1.22142275071162e-18,7.995991022080595e-19,3.3003788861684414e-18,-0.014684311114251614,0.0017857142956927419,0.0012755101779475808,0.01098905224353075,0.0017857142956927419,-0.0,-8.628185260221385e-21,-0.0007142857066355646,-0.0,1.9786689647860456e-18,-0.0005102040595375001,5.998325415087569e-20,-0.0013950893189758062,-0.0007142857066355646,3.3003788861684414e-18,-0.019970238208770752,0.0024999999441206455,0.0017857142956927419,0.0017857142956927419,0.025466270744800568,-0.0,-4.176491458329923e-21,1.4499994693088675e-20,-0.0016666667070239782,2.755239358740629e-18,-3.3881317890172014e-20,-0.0011904762359336019,2.3852447794681098e-18,-0.0011904762359336019,-0.0052083334885537624,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-0.0007142857066355646,-8.628185260221385e-21,-4.176491458329923e-21,-0.0,0.0004761904710903764,4.877759974938482e-22,-0.0,1.0842021724855044e-19,6.776263578034403e-21,-0.0,-2.1283843856613487e-21,1.67059656313713e-21,-1.925929944387236e-34,0.0017857142956927419,-0.0011904762359336019,-1.070734185772978e-19,-0.0007142857066355646,1.4499994693088675e-20,-0.0,4.877759974938482e-22,0.0004761904710903764,-0.0,9.526874990494768e-22,3.988297529216452e-20,9.762658825524852e-22,8.131516293641283e-20,-6.776263578034403e-21,-1.925929944387236e-34,0.0024999999441206455,-0.0016666667070239782,-0.0,-0.0,-0.0016666667070239782,-0.0,-0.0,-0.0,0.0011111111380159855,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009300595265813172,-2.734322545988577e-19,-0.0013950893189758062,1.9786689647860456e-18,2.755239358740629e-18,-0.0,1.0842021724855044e-19,9.526874990494768e-22,-0.0,0.00027901786961592734,-2.0328790734103208e-19,-2.439454888092385e-19,-2.4513923968012323e-19,-1.6666921615937482e-19,-5.782411758918651e-19,0.0012755101779475808,-1.166480923287359e-19,-0.0005102040595375001,-0.0005102040595375001,-3.3881317890172014e-20,-0.0,6.776263578034403e-21,3.988297529216452e-20,-0.0,-2.0328790734103208e-19,0.0002040816325461492,-1.3552527156068805e-20,2.1404665540421648e-21,2.710505431213761e-20,4.333342374871281e-34,0.0017857142956927419,-2.440664655894115e-21,-0.0007142857066355646,5.998325415087569e-20,-0.0011904762359336019,-0.0,-0.0,9.762658825524852e-22,-0.0,-2.439454888092385e-19,-1.3552527156068805e-20,0.0004761904710903764,1.906769249795503e-21,-2.5275825166833285e-20,-2.727820647879969e-19,0.0009300595265813172,-1.979669517285111e-19,1.22142275071162e-18,-0.0013950893189758062,2.3852447794681098e-18,-0.0,-2.1283843856613487e-21,8.131516293641283e-20,-0.0,-2.4513923968012323e-19,2.1404665540421648e-21,1.906769249795503e-21,0.00027901786961592734,-2.545594051404244e-19,-5.782411758918651e-19,0.0017857142956927419,1.2764167486756084e-20,7.995991022080595e-19,-0.0007142857066355646,-0.0011904762359336019,-0.0,1.67059656313713e-21,-6.776263578034403e-21,-0.0,-1.6666921615937482e-19,2.710505431213761e-20,-2.5275825166833285e-20,-2.545594051404244e-19,0.0004761904710903764,-2.727820647879969e-19,0.0017361111240461469,9.62964972193618e-34,3.3003788861684414e-18,3.3003788861684414e-18,-0.0052083334885537624,-0.0,-1.925929944387236e-34,-1.925929944387236e-34,-0.0,-5.782411758918651e-19,4.333342374871281e-34,-2.727820647879969e-19,-5.782411758918651e-19,-2.727820647879969e-19,0.0017361111240461469,4.0,6.0,6.0,5.0,0.05494897812604904,-0.016309523954987526,-0.011985544115304947,-0.011985544115304947,-0.013809523545205593,0.0013888889225199819,0.0014285714132711291,0.0014285714132711291,0.0016666667070239782,0.0007440476329065859,0.0010204081190750003,0.0011904762359336019,0.0007440476329065859,0.0011904762359336019,0.0009920635493472219,-0.016309523954987526,0.020595237612724304,0.0014285714132711291,0.0014285714132711291,0.0016666667070239782,-0.004166666883975267,-0.0009523809421807528,-0.0009523809421807528,-0.0011111111380159855,-4.690958314388354e-19,-4.1402934208014916e-22,-1.1153265232434313e-19,-4.85404369299566e-19,-1.0774992307139546e-19,-2.1656431126887303e-19,-0.011985544115304947,0.0014285714132711291,0.008886479772627354,0.0010204081190750003,0.0011904762359336019,-0.0,-0.0005714285653084517,-2.1084284514351152e-20,-1.6263032587282567e-19,-0.0011160714784637094,-0.0004081632650922984,-0.0004761904710903764,-2.0797907606948875e-18,-1.2983599568585193e-18,-3.218487178345079e-18,-0.011985544115304947,0.0014285714132711291,0.0010204081190750003,0.008886479772627354,0.0011904762359336019,-0.0,1.3832485788152524e-20,-0.0005714285653084517,-1.424038082666464e-19,-2.710505431213761e-18,-0.0004081632650922984,-1.2197274440461925e-19,-0.0011160714784637094,-0.0004761904710903764,-3.171179685137406e-18,-0.013809523545205593,0.0016666667070239782,0.0011904762359336019,0.0011904762359336019,0.012857142835855484,-0.0,2.9790770820603777e-20,3.4088717272898346e-20,-0.0008333333535119891,-3.3358068250089345e-18,7.021586606906878e-20,-0.0005952381179668009,-2.710505431213761e-18,-0.0005952381179668009,-0.0019841270986944437,0.0013888889225199819,-0.004166666883975267,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0009523809421807528,-0.0005714285653084517,1.3832485788152524e-20,2.9790770820603777e-20,-0.0,0.0003809523768723011,-9.975752749001373e-22,-9.514043694554805e-23,1.8973538018496328e-19,-1.3552527156068805e-20,-2.0328790734103208e-20,3.9702447970236226e-21,1.8055593228630336e-34,4.867567336684949e-21,0.0014285714132711291,-0.0009523809421807528,-2.1084284514351152e-20,-0.0005714285653084517,3.4088717272898346e-20,-0.0,-9.975752749001373e-22,0.0003809523768723011,2.9191794011171197e-22,-1.948389197745278e-21,1.4601123985321818e-20,-1.674452060857969e-21,1.8973538018496328e-19,-1.3552527156068805e-20,8.139895455531861e-22,0.0016666667070239782,-0.0011111111380159855,-1.6263032587282567e-19,-1.424038082666464e-19,-0.0008333333535119891,-0.0,-9.514043694554805e-23,2.9191794011171197e-22,0.0005555555690079927,-1.8582117182573033e-22,-1.1037313655261916e-21,8.327037879759237e-20,5.701522106090389e-22,7.081561724960947e-20,1.0118020907725496e-19,0.0007440476329065859,-4.690958314388354e-19,-0.0011160714784637094,-2.710505431213761e-18,-3.3358068250089345e-18,-0.0,1.8973538018496328e-19,-1.948389197745278e-21,-1.8582117182573033e-22,0.00022321428696159273,1.2197274440461925e-19,2.0328790734103208e-19,3.974489105983072e-19,2.2657611766230274e-19,5.615510492748061e-19,0.0010204081190750003,-4.1402934208014916e-22,-0.0004081632650922984,-0.0004081632650922984,7.021586606906878e-20,-0.0,-1.3552527156068805e-20,1.4601123985321818e-20,-1.1037313655261916e-21,1.2197274440461925e-19,0.00016326530021615326,-1.6075243847422276e-20,3.588369597096415e-20,-6.776263578034403e-21,-2.6279318034482283e-21,0.0011904762359336019,-1.1153265232434313e-19,-0.0004761904710903764,-1.2197274440461925e-19,-0.0005952381179668009,-0.0,-2.0328790734103208e-20,-1.674452060857969e-21,8.327037879759237e-20,2.0328790734103208e-19,-1.6075243847422276e-20,0.0002380952355451882,-3.270414253938424e-21,9.120998789665165e-20,2.0604323303674915e-19,0.0007440476329065859,-4.85404369299566e-19,-2.0797907606948875e-18,-0.0011160714784637094,-2.710505431213761e-18,-0.0,3.9702447970236226e-21,1.8973538018496328e-19,5.701522106090389e-22,3.974489105983072e-19,3.588369597096415e-20,-3.270414253938424e-21,0.00022321428696159273,1.9660321524174671e-19,5.617007172668899e-19,0.0011904762359336019,-1.0774992307139546e-19,-1.2983599568585193e-18,-0.0004761904710903764,-0.0005952381179668009,-0.0,1.8055593228630336e-34,-1.3552527156068805e-20,7.081561724960947e-20,2.2657611766230274e-19,-6.776263578034403e-21,9.120998789665165e-20,1.9660321524174671e-19,0.0002380952355451882,1.850235009219198e-19,0.0009920635493472219,-2.1656431126887303e-19,-3.218487178345079e-18,-3.171179685137406e-18,-0.0019841270986944437,-0.0,4.867567336684949e-21,8.139895455531861e-22,1.0118020907725496e-19,5.615510492748061e-19,-2.6279318034482283e-21,2.0604323303674915e-19,5.617007172668899e-19,1.850235009219198e-19,0.0004960317746736109,4.0,6.0,6.0,6.0,0.04737575724720955,-0.013789682649075985,-0.010129677131772041,-0.010129677131772041,-0.010129677131772041,0.0011574074160307646,0.0011904762359336019,0.0011904762359336019,0.0011904762359336019,0.0006200397037900984,0.0008503401186317205,0.0008503401186317205,0.0006200397037900984,0.0008503401186317205,0.0006200397037900984,-0.013789682649075985,0.017294973134994507,0.0011904762359336019,0.0011904762359336019,0.0011904762359336019,-0.0034722222480922937,-0.0007936508045531809,-0.0007936508045531809,-0.0007936508045531809,-1.812018877178336e-19,-5.115576117608807e-21,-7.649147535018119e-21,-1.6876275859095825e-19,1.8802461558183876e-20,-1.4036201632213582e-19,-0.010129677131772041,0.0011904762359336019,0.007462088949978352,0.0008503401186317205,0.0008503401186317205,-0.0,-0.0004761904710903764,-1.1498723321217734e-20,-1.3552527156068805e-20,-0.0009300595265813172,-0.0003401360590942204,-0.0003401360590942204,7.448679731954525e-19,4.345838917291683e-19,7.26555021614141e-19,-0.010129677131772041,0.0011904762359336019,0.0008503401186317205,0.007462088949978352,0.0008503401186317205,-0.0,-9.26357629293575e-21,-0.0004761904710903764,1.9579374792652968e-20,1.2739375526704677e-18,-0.0003401360590942204,1.3552527156068805e-20,-0.0009300595265813172,-0.0003401360590942204,7.54616503509543e-19,-0.010129677131772041,0.0011904762359336019,0.0008503401186317205,0.0008503401186317205,0.007462088949978352,-0.0,-4.112098598037581e-21,2.950483168884717e-21,-0.0004761904710903764,1.2711747694245406e-18,-2.958069602558372e-20,-0.0003401360590942204,1.0842021724855044e-18,-0.0003401360590942204,-0.0009300595265813172,0.0011574074160307646,-0.0034722222480922937,-0.0,-0.0,-0.0,0.0011574074160307646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0007936508045531809,-0.0004761904710903764,-9.26357629293575e-21,-4.112098598037581e-21,-0.0,0.0003174603043589741,1.1629203186860696e-21,1.2527575656210662e-21,6.776263578034403e-20,3.3881317890172014e-21,3.3881317890172014e-21,-1.7527039072122724e-22,-2.407412430484045e-35,-1.149391997872028e-21,0.0011904762359336019,-0.0007936508045531809,-1.1498723321217734e-20,-0.0004761904710903764,2.950483168884717e-21,-0.0,1.1629203186860696e-21,0.0003174603043589741,-4.2117331061404134e-23,2.2713287079906845e-21,-1.2349664171800529e-21,2.0640604907447847e-22,6.776263578034403e-20,-0.0,-6.271478527733639e-22,0.0011904762359336019,-0.0007936508045531809,-1.3552527156068805e-20,1.9579374792652968e-20,-0.0004761904710903764,-0.0,1.2527575656210662e-21,-4.2117331061404134e-23,0.0003174603043589741,2.4467921739961864e-21,-1.0693482886813948e-22,-5.348789452534672e-22,-8.226041464519147e-23,-7.52098462327355e-21,5.792134491537388e-20,0.0006200397037900984,-1.812018877178336e-19,-0.0009300595265813172,1.2739375526704677e-18,1.2711747694245406e-18,-0.0,6.776263578034403e-20,2.2713287079906845e-21,2.4467921739961864e-21,0.00018601190822664648,-9.486769009248164e-20,-9.486769009248164e-20,-1.6010035519524102e-19,-8.092004848459951e-20,-1.5680446696922055e-19,0.0008503401186317205,-5.115576117608807e-21,-0.0003401360590942204,-0.0003401360590942204,-2.958069602558372e-20,-0.0,3.3881317890172014e-21,-1.2349664171800529e-21,-1.0693482886813948e-22,-9.486769009248164e-20,0.0001360544265480712,8.961666678463832e-21,2.1586715957120422e-20,3.3881317890172014e-21,-2.0885708408321084e-22,0.0008503401186317205,-7.649147535018119e-21,-0.0003401360590942204,1.3552527156068805e-20,-0.0003401360590942204,-0.0,3.3881317890172014e-21,2.0640604907447847e-22,-5.348789452534672e-22,-9.486769009248164e-20,8.961666678463832e-21,0.0001360544265480712,4.0313682643150433e-22,-1.5381596358246876e-20,2.2954074590238986e-20,0.0006200397037900984,-1.6876275859095825e-19,7.448679731954525e-19,-0.0009300595265813172,1.0842021724855044e-18,-0.0,-1.7527039072122724e-22,6.776263578034403e-20,-8.226041464519147e-23,-1.6010035519524102e-19,2.1586715957120422e-20,4.0313682643150433e-22,0.00018601190822664648,-1.0998109413974094e-19,-1.5378697671811246e-19,0.0008503401186317205,1.8802461558183876e-20,4.345838917291683e-19,-0.0003401360590942204,-0.0003401360590942204,-0.0,-2.407412430484045e-35,-0.0,-7.52098462327355e-21,-8.092004848459951e-20,3.3881317890172014e-21,-1.5381596358246876e-20,-1.0998109413974094e-19,0.0001360544265480712,4.866185605788688e-21,0.0006200397037900984,-1.4036201632213582e-19,7.26555021614141e-19,7.54616503509543e-19,-0.0009300595265813172,-0.0,-1.149391997872028e-21,-6.271478527733639e-22,5.792134491537388e-20,-1.5680446696922055e-19,-2.0885708408321084e-22,2.2954074590238986e-20,-1.5378697671811246e-19,4.866185605788688e-21,0.00018601190822664648,4.0,6.0,6.0,7.0,0.04165620729327202,-0.01194727886468172,-0.008773688226938248,-0.008773688226938248,-0.0077522676438093185,0.0009920635493472219,0.0010204081190750003,0.0010204081190750003,0.0008928571478463709,0.0005314626032486558,0.0007288630004040897,0.0006377550889737904,0.0005314626032486558,0.0006377550889737904,0.00041335978312417865,-0.01194727886468172,0.014909297227859497,0.0010204081190750003,0.0010204081190750003,0.0008928571478463709,-0.0029761905316263437,-0.0006802721181884408,-0.0006802721181884408,-0.0005952381179668009,-1.358951763908641e-19,6.581104287331224e-21,5.369603768399982e-21,-6.370289149507059e-20,1.1371864996083784e-20,1.3340416075025188e-19,-0.008773688226938248,0.0010204081190750003,0.006432519294321537,0.0007288630004040897,0.0006377550889737904,-0.0,-0.0004081632650922984,2.2950085705605406e-20,1.3552527156068805e-20,-0.0007971939048729837,-0.0002915451768785715,-0.00025510202976875007,8.801294775383127e-19,2.2808502434657018e-19,4.656439550438633e-19,-0.008773688226938248,0.0010204081190750003,0.0007288630004040897,0.006432519294321537,0.0006377550889737904,-0.0,-8.925464601967566e-21,-0.0004081632650922984,1.1168874550645844e-20,1.2468324983583301e-18,-0.0002915451768785715,-7.453889935837843e-20,-0.0007971939048729837,-0.00025510202976875007,4.746829711875365e-19,-0.0077522676438093185,0.0008928571478463709,0.0006377550889737904,0.0006377550889737904,0.004733560141175985,-0.0,-3.3418207818757773e-21,-2.7700400594357747e-21,-0.00029761905898340046,9.889645258640585e-19,-6.897140514922542e-20,-0.00021258502965793014,8.402566836762659e-19,-0.00021258502965793014,-0.0004960317746736109,0.0009920635493472219,-0.0029761905316263437,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,-0.0006802721181884408,-0.0004081632650922984,-8.925464601967566e-21,-3.3418207818757773e-21,-0.0,0.0002721088530961424,2.614157812415639e-22,-1.5471676498610034e-22,5.421010862427522e-20,6.776263578034403e-21,3.3881317890172014e-21,-1.549260112878433e-21,-1.2037062152420224e-35,-7.532974905136126e-22,0.0010204081190750003,-0.0006802721181884408,2.2950085705605406e-20,-0.0004081632650922984,-2.7700400594357747e-21,-0.0,2.614157812415639e-22,0.0002721088530961424,-3.184490426047371e-23,5.105776874822377e-22,-9.691080035609347e-21,-6.284149274702171e-22,2.710505431213761e-20,-0.0,6.752068747065618e-22,0.0008928571478463709,-0.0005952381179668009,1.3552527156068805e-20,1.1168874550645844e-20,-0.00029761905898340046,-0.0,-1.5471676498610034e-22,-3.184490426047371e-23,0.00019841270113829523,-3.021811845717056e-22,2.353121593176344e-22,-4.0896318394568864e-21,-6.219707542899029e-23,-3.7906217999935224e-21,-4.44029777336641e-20,0.0005314626032486558,-1.358951763908641e-19,-0.0007971939048729837,1.2468324983583301e-18,9.889645258640585e-19,-0.0,5.421010862427522e-20,5.105776874822377e-22,-3.021811845717056e-22,0.0001594387722434476,-1.2874900798265365e-19,-8.809142651444724e-20,-1.4355689804054532e-19,-6.06900347478625e-20,-1.0055187492914144e-19,0.0007288630004040897,6.581104287331224e-21,-0.0002915451768785715,-0.0002915451768785715,-6.897140514922542e-20,-0.0,6.776263578034403e-21,-9.691080035609347e-21,2.353121593176344e-22,-1.2874900798265365e-19,0.00011661807366181165,1.4569225832950242e-20,-6.177174141983751e-20,1.1858461261560205e-20,3.921869574396063e-22,0.0006377550889737904,5.369603768399982e-21,-0.00025510202976875007,-7.453889935837843e-20,-0.00021258502965793014,-0.0,3.3881317890172014e-21,-6.284149274702171e-22,-4.0896318394568864e-21,-8.809142651444724e-20,1.4569225832950242e-20,8.50340147735551e-05,-1.22737285472817e-21,1.5239667028534408e-20,1.2176713347685014e-20,0.0005314626032486558,-6.370289149507059e-20,8.801294775383127e-19,-0.0007971939048729837,8.402566836762659e-19,-0.0,-1.549260112878433e-21,2.710505431213761e-20,-6.219707542899029e-23,-1.4355689804054532e-19,-6.177174141983751e-20,-1.22737285472817e-21,0.0001594387722434476,-9.355447624656835e-20,-9.933390963829393e-20,0.0006377550889737904,1.1371864996083784e-20,2.2808502434657018e-19,-0.00025510202976875007,-0.00021258502965793014,-0.0,-1.2037062152420224e-35,-0.0,-3.7906217999935224e-21,-6.06900347478625e-20,1.1858461261560205e-20,1.5239667028534408e-20,-9.355447624656835e-20,8.50340147735551e-05,6.246300511019685e-21,0.00041335978312417865,1.3340416075025188e-19,4.656439550438633e-19,4.746829711875365e-19,-0.0004960317746736109,-0.0,-7.532974905136126e-22,6.752068747065618e-22,-4.44029777336641e-20,-1.0055187492914144e-19,3.921869574396063e-22,1.2176713347685014e-20,-9.933390963829393e-20,6.246300511019685e-21,8.26719551696442e-05,4.0,6.0,6.0,8.0,0.03717875853180885,-0.010540674440562725,-0.007738980930298567,-0.007738980930298567,-0.00612599216401577,0.0008680555620230734,0.0008928571478463709,0.0008928571478463709,0.0006944444612599909,0.0004650297632906586,0.0006377550889737904,0.0004960317746736109,0.0004650297632906586,0.0004960317746736109,0.00028935185400769114,-0.010540674440562725,0.013103505596518517,0.0008928571478463709,0.0008928571478463709,0.0006944444612599909,-0.0026041667442768812,-0.0005952381179668009,-0.0005952381179668009,-0.00046296295477077365,-3.097720566671139e-19,-2.2657611766230274e-19,-1.2368831699505423e-19,-3.097720566671139e-19,-1.2429897015757443e-19,7.112865341267251e-20,-0.007738980930298567,0.0008928571478463709,0.005653256084769964,0.0006377550889737904,0.0004960317746736109,-0.0,-0.0003571428533177823,-1.1328805883115137e-19,-3.5575383784680614e-20,-0.0006975446594879031,-0.00025510202976875007,-0.00019841270113829523,3.4296190326397985e-19,1.3380987991601207e-19,3.0380526686664504e-19,-0.007738980930298567,0.0008928571478463709,0.0006377550889737904,0.005653256084769964,0.0004960317746736109,-0.0,-1.1328805883115137e-19,-0.0003571428533177823,-3.6186036947200816e-20,7.671178392034218e-19,-0.00025510202976875007,-1.0220691470084373e-19,-0.0006975446594879031,-0.00019841270113829523,3.0087774543184916e-19,-0.00612599216401577,0.0006944444612599909,0.0004960317746736109,0.0004960317746736109,0.0031970427371561527,-0.0,-8.811293967272215e-20,-8.811293967272215e-20,-0.00019841270113829523,5.372191696650408e-19,-1.5105075372466654e-19,-0.00014172335795592517,4.192107917436585e-19,-0.00014172335795592517,-0.00028935185400769114,0.0008680555620230734,-0.0026041667442768812,-0.0,-0.0,-0.0,0.0008680555620230734,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0005952381179668009,-0.0003571428533177823,-1.1328805883115137e-19,-8.811293967272215e-20,-0.0,0.0002380952355451882,2.0124002673667145e-35,6.319457343034692e-36,1.2390882525178497e-19,4.531522547116511e-20,3.52451739303843e-20,-6.092227339961347e-35,-2.3769411258728978e-35,-5.266214691683848e-35,0.0008928571478463709,-0.0005952381179668009,-1.1328805883115137e-19,-0.0003571428533177823,-8.811293967272215e-20,-0.0,2.0124002673667145e-35,0.0002380952355451882,6.427930848223182e-36,-1.3626749514183178e-34,4.531522547116511e-20,1.815559490929825e-35,1.2390882525178497e-19,3.52451739303843e-20,-5.416677968589101e-35,0.0006944444612599909,-0.00046296295477077365,-3.5575383784680614e-20,-3.6186036947200816e-20,-0.00019841270113829523,-0.0,6.319457343034692e-36,6.427930848223182e-36,0.00013227513409219682,2.407412430484045e-35,8.247449596981118e-36,1.0164395367051604e-20,4.2840733773459247e-35,1.0338867468402071e-20,-2.0322472172822554e-20,0.0004650297632906586,-3.097720566671139e-19,-0.0006975446594879031,7.671178392034218e-19,5.372191696650408e-19,-0.0,1.2390882525178497e-19,-1.3626749514183178e-34,2.407412430484045e-35,0.00013950893480796367,2.629901406112835e-21,2.5062735686221382e-20,-1.2169615588729683e-19,-4.720335892337116e-20,-6.883823553295292e-20,0.0006377550889737904,-2.2657611766230274e-19,-0.00025510202976875007,-0.00025510202976875007,-1.5105075372466654e-19,-0.0,4.531522547116511e-20,4.531522547116511e-20,8.247449596981118e-36,2.629901406112835e-21,0.0001020408162730746,3.021015139116816e-20,1.0620756080875938e-19,3.021015139116816e-20,-3.7843051812259875e-35,0.0004960317746736109,-1.2368831699505423e-19,-0.00019841270113829523,-1.0220691470084373e-19,-0.00014172335795592517,-0.0,3.52451739303843e-20,1.815559490929825e-35,1.0164395367051604e-20,2.5062735686221382e-20,3.021015139116816e-20,5.668934318237007e-05,-5.64237288394698e-36,7.623296525288703e-21,1.1538826232848784e-20,0.0004650297632906586,-3.097720566671139e-19,3.4296190326397985e-19,-0.0006975446594879031,4.192107917436585e-19,-0.0,-6.092227339961347e-35,1.2390882525178497e-19,4.2840733773459247e-35,-1.2169615588729683e-19,1.0620756080875938e-19,-5.64237288394698e-36,0.00013950893480796367,2.5062735686221382e-20,-6.883823553295292e-20,0.0004960317746736109,-1.2429897015757443e-19,1.3380987991601207e-19,-0.00019841270113829523,-0.00014172335795592517,-0.0,-2.3769411258728978e-35,3.52451739303843e-20,1.0338867468402071e-20,-4.720335892337116e-20,3.021015139116816e-20,7.623296525288703e-21,2.5062735686221382e-20,5.668934318237007e-05,1.2375266583059717e-20,0.00028935185400769114,7.112865341267251e-20,3.0380526686664504e-19,3.0087774543184916e-19,-0.00028935185400769114,-0.0,-5.266214691683848e-35,-5.416677968589101e-35,-2.0322472172822554e-20,-6.883823553295292e-20,-3.7843051812259875e-35,1.1538826232848784e-20,-6.883823553295292e-20,1.2375266583059717e-20,4.13359775848221e-05,4.0,6.0,7.0,3.0,0.07158683240413666,-0.022363945841789246,-0.01645408198237419,-0.014547902159392834,-0.027359694242477417,0.0019841270986944437,0.0020408162381500006,0.0017857142956927419,0.0035714285913854837,0.0010629252064973116,0.0012755101779475808,0.0025510203558951616,0.0008267195662483573,0.0022321429569274187,0.0029761905316263437,-0.022363945841789246,0.028798185288906097,0.0020408162381500006,0.0017857142956927419,0.0035714285913854837,-0.0059523810632526875,-0.0013605442363768816,-0.0011904762359336019,-0.0023809524718672037,-1.509687723711443e-19,6.656894307059612e-20,6.577775773938622e-20,2.7587763313411173e-19,2.3541437448636992e-20,4.882933738338702e-34,-0.01645408198237419,0.0020408162381500006,0.012427721172571182,0.0012755101779475808,0.0025510203558951616,-0.0,-0.0008163265301845968,-1.6803770247231284e-20,-0.0,-0.0015943878097459674,-0.0005102040595375001,-0.0010204081190750003,9.221291595503864e-19,9.75781955236954e-19,7.915551016232263e-18,-0.014547902159392834,0.0017857142956927419,0.0012755101779475808,0.009148242883384228,0.0022321429569274187,-0.0,2.5467388564473202e-20,-0.0005952381179668009,-0.0,1.9786689647860456e-18,-0.00042517005931586027,6.618128616899285e-20,-0.0009920635493472219,-0.0007440476329065859,-8.784956379166577e-33,-0.027359694242477417,0.0035714285913854837,0.0025510203558951616,0.0022321429569274187,0.05712159723043442,-0.0,7.161781442272398e-20,1.8674725161442655e-20,-0.0035714285913854837,4.3827887650616966e-18,-1.0842021724855044e-19,-0.0025510203558951616,-0.0,-0.0022321429569274187,-0.01785714365541935,0.0019841270986944437,-0.0059523810632526875,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,-0.0013605442363768816,-0.0008163265301845968,2.5467388564473202e-20,7.161781442272398e-20,-0.0,0.0005442177061922848,2.6356902567619642e-21,-0.0,5.421010862427522e-20,-2.0328790734103208e-20,-2.710505431213761e-20,3.4901710607035096e-21,-1.2850586050341568e-21,-1.925929944387236e-34,0.0017857142956927419,-0.0011904762359336019,-1.6803770247231284e-20,-0.0005952381179668009,1.8674725161442655e-20,-0.0,2.6356902567619642e-21,0.00039682540227659047,-0.0,5.147832526427324e-21,-5.2489876680546096e-21,6.616261987719624e-22,-9.486769009248164e-20,-6.776263578034403e-21,-2.27029973883276e-36,0.0035714285913854837,-0.0023809524718672037,-0.0,-0.0,-0.0035714285913854837,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010629252064973116,-1.509687723711443e-19,-0.0015943878097459674,1.9786689647860456e-18,4.3827887650616966e-18,-0.0,5.421010862427522e-20,5.147832526427324e-21,-0.0,0.0003188775444868952,-2.303929616531697e-19,-3.5236570605778894e-19,-1.962309581167037e-19,-2.1492499439115778e-19,-1.4161008452493172e-18,0.0012755101779475808,6.656894307059612e-20,-0.0005102040595375001,-0.00042517005931586027,-1.0842021724855044e-19,-0.0,-2.0328790734103208e-20,-5.2489876680546096e-21,-0.0,-2.303929616531697e-19,0.0001700680295471102,-1.3552527156068805e-20,1.6379693164868673e-20,4.743384504624082e-20,9.62964972193618e-34,0.0025510203558951616,6.577775773938622e-20,-0.0010204081190750003,6.618128616899285e-20,-0.0025510203558951616,-0.0,-2.710505431213761e-20,6.616261987719624e-22,-0.0,-3.5236570605778894e-19,-1.3552527156068805e-20,0.0010204081190750003,1.1027103144575714e-21,-4.046002424229976e-20,-8.350471518771953e-19,0.0008267195662483573,2.7587763313411173e-19,9.221291595503864e-19,-0.0009920635493472219,-0.0,-0.0,3.4901710607035096e-21,-9.486769009248164e-20,-0.0,-1.962309581167037e-19,1.6379693164868673e-20,1.1027103144575714e-21,0.0001653439103392884,-1.668003404423358e-20,9.045913002642255e-34,0.0022321429569274187,2.3541437448636992e-20,9.75781955236954e-19,-0.0007440476329065859,-0.0022321429569274187,-0.0,-1.2850586050341568e-21,-6.776263578034403e-21,-0.0,-2.1492499439115778e-19,4.743384504624082e-20,-4.046002424229976e-20,-1.668003404423358e-20,0.0007440476329065859,9.552934940220601e-34,0.0029761905316263437,4.882933738338702e-34,7.915551016232263e-18,-8.784956379166577e-33,-0.01785714365541935,-0.0,-1.925929944387236e-34,-2.27029973883276e-36,-0.0,-1.4161008452493172e-18,9.62964972193618e-34,-8.350471518771953e-19,9.045913002642255e-34,9.552934940220601e-34,0.008928571827709675,4.0,6.0,7.0,4.0,0.05764526501297951,-0.0173086728900671,-0.012723213993012905,-0.011245748028159142,-0.0173086728900671,0.0014880952658131719,0.0015306122368201613,0.0013392857508733869,0.002142857061699033,0.0007971939048729837,0.0009566326625645161,0.0015306122368201613,0.0006200397037900984,0.0013392857508733869,0.0014880952658131719,-0.0173086728900671,0.021955782547593117,0.0015306122368201613,0.0013392857508733869,0.002142857061699033,-0.004464285913854837,-0.0010204081190750003,-0.0008928571478463709,-0.0014285714132711291,-2.390444953786501e-19,-2.2403760375995407e-20,-2.6602676506861186e-19,3.968751994511906e-21,-2.5954076433740115e-19,-1.1895247017376204e-18,-0.012723213993012905,0.0015306122368201613,0.009473851881921291,0.0009566326625645161,0.0015306122368201613,-8.49660486470075e-19,-0.0006122448830865324,-2.272622122816272e-19,-5.981609775118491e-19,-0.001195790828205645,-0.00038265305920504034,-0.0006122448830865324,8.641489167904593e-19,1.8973538018496328e-19,1.80930352757066e-18,-0.011245748028159142,0.0013392857508733869,0.0009566326625645161,0.00697278929874301,0.0013392857508733869,-7.434529256613157e-19,-1.948640550791569e-19,-0.00044642857392318547,-4.758098496757752e-19,1.3823577699190182e-18,-0.0003188775444868952,-3.7472289875023703e-19,-0.0007440476329065859,-0.00044642857392318547,-7.434529256613157e-19,-0.0173086728900671,0.002142857061699033,0.0015306122368201613,0.0013392857508733869,0.021955782547593117,-1.1895247017376204e-18,-3.2783806898618414e-19,-2.5334657741666265e-19,-0.0014285714132711291,2.2480587360325684e-18,-1.6093625997831706e-19,-0.0010204081190750003,-0.0,-0.0008928571478463709,-0.004464285913854837,0.0014880952658131719,-0.004464285913854837,-8.49660486470075e-19,-7.434529256613157e-19,-1.1895247017376204e-18,0.0014880952658131719,5.664403070804539e-19,4.956353010071399e-19,7.930164505921508e-19,1.2037062152420224e-34,1.2436585303807428e-35,1.476745198728601e-34,-0.0,1.4407406332823798e-34,6.60318844635302e-34,0.0015306122368201613,-0.0010204081190750003,-0.0006122448830865324,-1.948640550791569e-19,-3.2783806898618414e-19,5.664403070804539e-19,0.0004081632650922984,1.3626572745589373e-19,2.1751308743147135e-19,9.486769009248164e-20,-0.0,-0.0,-1.587500757415084e-21,5.228147502795157e-22,-2.407412430484045e-35,0.0013392857508733869,-0.0008928571478463709,-2.272622122816272e-19,-0.00044642857392318547,-2.5334657741666265e-19,4.956353010071399e-19,1.3626572745589373e-19,0.00029761905898340046,1.5860328753349075e-19,6.250892918421971e-22,7.46791985606728e-21,-1.9548592203197345e-21,1.8585423774417592e-36,6.776263578034403e-21,1.4558565263612447e-34,0.002142857061699033,-0.0014285714132711291,-5.981609775118491e-19,-4.758098496757752e-19,-0.0014285714132711291,7.930164505921508e-19,2.1751308743147135e-19,1.5860328753349075e-19,0.0009523809421807528,-3.6111186457260672e-34,2.7083389842945504e-35,1.8126090188466044e-19,-6.018531076210112e-36,1.5860328753349075e-19,7.930164505921508e-19,0.0007971939048729837,-2.390444953786501e-19,-0.001195790828205645,1.3823577699190182e-18,2.2480587360325684e-18,1.2037062152420224e-34,9.486769009248164e-20,6.250892918421971e-22,-3.6111186457260672e-34,0.00023915816564112902,-1.0842021724855044e-19,-1.6263032587282567e-19,-1.4778062441990886e-19,-1.2642795210852693e-19,-4.956353010071399e-19,0.0009566326625645161,-2.2403760375995407e-20,-0.00038265305920504034,-0.0003188775444868952,-1.6093625997831706e-19,1.2436585303807428e-35,-0.0,7.46791985606728e-21,2.7083389842945504e-35,-1.0842021724855044e-19,0.00012755101488437504,2.371692252312041e-20,-4.012655090199298e-20,3.3881317890172014e-20,3.009265538105056e-34,0.0015306122368201613,-2.6602676506861186e-19,-0.0006122448830865324,-3.7472289875023703e-19,-0.0010204081190750003,1.476745198728601e-34,-0.0,-1.9548592203197345e-21,1.8126090188466044e-19,-1.6263032587282567e-19,2.371692252312041e-20,0.0004081632650922984,-3.2580986332167603e-21,2.263603527693971e-19,4.459151804465908e-19,0.0006200397037900984,3.968751994511906e-21,8.641489167904593e-19,-0.0007440476329065859,-0.0,-0.0,-1.587500757415084e-21,1.8585423774417592e-36,-6.018531076210112e-36,-1.4778062441990886e-19,-4.012655090199298e-20,-3.2580986332167603e-21,0.00012400794366840273,-1.0425021277645988e-21,3.187703055083735e-34,0.0013392857508733869,-2.5954076433740115e-19,1.8973538018496328e-19,-0.00044642857392318547,-0.0008928571478463709,1.4407406332823798e-34,5.228147502795157e-22,6.776263578034403e-21,1.5860328753349075e-19,-1.2642795210852693e-19,3.3881317890172014e-20,2.263603527693971e-19,-1.0425021277645988e-21,0.00029761905898340046,4.956353010071399e-19,0.0014880952658131719,-1.1895247017376204e-18,1.80930352757066e-18,-7.434529256613157e-19,-0.004464285913854837,6.60318844635302e-34,-2.407412430484045e-35,1.4558565263612447e-34,7.930164505921508e-19,-4.956353010071399e-19,3.009265538105056e-34,4.459151804465908e-19,3.187703055083735e-34,4.956353010071399e-19,0.0014880952658131719,4.0,6.0,7.0,5.0,0.04833900183439255,-0.01413265336304903,-0.010382653214037418,-0.009175170212984085,-0.011964285746216774,0.0011904762359336019,0.0012244897661730647,0.0010714285308495164,0.0014285714132711291,0.0006377550889737904,0.0007653061184100807,0.0010204081190750003,0.0004960317746736109,0.0008928571478463709,0.0008503401186317205,-0.01413265336304903,0.01775510236620903,0.0012244897661730647,0.0010714285308495164,0.0014285714132711291,-0.0035714285913854837,-0.0008163265301845968,-0.0007142857066355646,-0.0009523809421807528,1.952862015348945e-19,-9.174166082030952e-19,-3.668431038567533e-18,-5.847046101019896e-19,-3.5528060781836456e-18,-9.230280153630171e-18,-0.010382653214037418,0.0012244897661730647,0.007660714443773031,0.0007653061184100807,0.0010204081190750003,2.108452749865609e-19,-0.0004897959297522902,3.2768959006623087e-19,-4.409385103297114e-18,-0.0009566326625645161,-0.0003061224415432662,-0.0004081632650922984,-7.591056643926566e-19,-3.027785857999807e-18,-7.242946471927633e-18,-0.009175170212984085,0.0010714285308495164,0.0007653061184100807,0.005637755151838064,0.0008928571478463709,-1.4466885367354562e-18,-1.382655141349231e-18,-0.0003571428533177823,-3.873545360701082e-18,-7.589415207398531e-19,-0.00025510202976875007,-3.0858475263512823e-18,-0.0005952381179668009,-0.00029761905898340046,-5.67851218711528e-18,-0.011964285746216774,0.0014285714132711291,0.0010204081190750003,0.0008928571478463709,0.011084184050559998,-1.2256258208401244e-17,-4.6563547644258465e-18,-2.2377582694547518e-18,-0.0007142857066355646,-5.667686874438798e-18,-3.008165961050662e-18,-0.0005102040595375001,-4.2825985813177425e-18,-0.00044642857392318547,-0.001700680237263441,0.0011904762359336019,-0.0035714285913854837,2.108452749865609e-19,-1.4466885367354562e-18,-1.2256258208401244e-17,0.0011904762359336019,1.539854483663369e-19,2.9731823215966863e-19,1.2225040825673799e-18,-2.8322015354022696e-19,-2.2657612735582555e-20,4.984674640269449e-19,-2.2028234918180537e-20,5.2867765096103e-19,1.69932097294015e-18,0.0012244897661730647,-0.0008163265301845968,-0.0004897959297522902,-1.382655141349231e-18,-4.6563547644258465e-18,1.539854483663369e-19,0.00032653060043230653,1.9360354491672546e-20,2.5466293196396423e-19,5.421010862427522e-20,1.3213713977167085e-19,2.710505431213761e-19,5.262044520153303e-20,2.718913463646421e-19,5.955715403030402e-19,0.0010714285308495164,-0.0007142857066355646,3.2768959006623087e-19,-0.0003571428533177823,-2.2377582694547518e-18,2.9731823215966863e-19,1.9360354491672546e-20,0.0002380952355451882,2.2597191392362104e-19,-1.4803317300067895e-19,-8.227247424583951e-21,1.3594567318232106e-19,-6.776263578034403e-20,1.1180834903756764e-19,2.2657611766230274e-19,0.0014285714132711291,-0.0009523809421807528,-4.409385103297114e-18,-3.873545360701082e-18,-0.0007142857066355646,1.2225040825673799e-18,2.5466293196396423e-19,2.2597191392362104e-19,0.0004761904710903764,4.248302432350375e-19,2.718913463646421e-19,4.531522353246055e-19,3.172065750669815e-19,3.965082252960754e-19,9.06304470649211e-19,0.0006377550889737904,1.952862015348945e-19,-0.0009566326625645161,-7.589415207398531e-19,-5.667686874438798e-18,-2.8322015354022696e-19,5.421010862427522e-20,-1.4803317300067895e-19,4.248302432350375e-19,0.00019132652960252017,3.3881317890172014e-20,2.168404344971009e-19,3.381585753068095e-20,2.9384091996086056e-19,7.889704517222125e-19,0.0007653061184100807,-9.174166082030952e-19,-0.0003061224415432662,-0.00025510202976875007,-3.008165961050662e-18,-2.2657612735582555e-20,1.3213713977167085e-19,-8.227247424583951e-21,2.718913463646421e-19,3.3881317890172014e-20,0.0001020408162730746,1.9240059489270034e-19,-3.618079598253847e-20,1.2705494208814505e-19,3.7223220622705158e-19,0.0010204081190750003,-3.668431038567533e-18,-0.0004081632650922984,-3.0858475263512823e-18,-0.0005102040595375001,4.984674640269449e-19,2.710505431213761e-19,1.3594567318232106e-19,4.531522353246055e-19,2.168404344971009e-19,1.9240059489270034e-19,0.0002040816325461492,2.718913463646421e-19,3.168168954502866e-19,5.792841472467179e-19,0.0004960317746736109,-5.847046101019896e-19,-7.591056643926566e-19,-0.0005952381179668009,-4.2825985813177425e-18,-2.2028234918180537e-20,5.262044520153303e-20,-6.776263578034403e-20,3.172065750669815e-19,3.381585753068095e-20,-3.618079598253847e-20,2.718913463646421e-19,9.920635056914762e-05,1.9638133696712643e-19,5.664403070804539e-19,0.0008928571478463709,-3.5528060781836456e-18,-3.027785857999807e-18,-0.00029761905898340046,-0.00044642857392318547,5.2867765096103e-19,2.718913463646421e-19,1.1180834903756764e-19,3.965082252960754e-19,2.9384091996086056e-19,1.2705494208814505e-19,3.168168954502866e-19,1.9638133696712643e-19,0.00014880952949170023,4.575095125988051e-19,0.0008503401186317205,-9.230280153630171e-18,-7.242946471927633e-18,-5.67851218711528e-18,-0.001700680237263441,1.69932097294015e-18,5.955715403030402e-19,2.2657611766230274e-19,9.06304470649211e-19,7.889704517222125e-19,3.7223220622705158e-19,5.792841472467179e-19,5.664403070804539e-19,4.575095125988051e-19,0.00042517005931586027,4.0,6.0,7.0,6.0,0.04165620729327202,-0.01194727886468172,-0.008773688226938248,-0.0077522676438093185,-0.008773688226938248,0.0009920635493472219,0.0010204081190750003,0.0008928571478463709,0.0010204081190750003,0.0005314626032486558,0.0006377550889737904,0.0007288630004040897,0.00041335978312417865,0.0006377550889737904,0.0005314626032486558,-0.01194727886468172,0.014909297227859497,0.0010204081190750003,0.0008928571478463709,0.0010204081190750003,-0.0029761905316263437,-0.0006802721181884408,-0.0005952381179668009,-0.0006802721181884408,-1.970945605256032e-19,-1.6189151424142551e-21,1.61939378029751e-20,1.4802380259530238e-19,-2.662626941045356e-21,-1.3374563124687143e-19,-0.008773688226938248,0.0010204081190750003,0.006432519294321537,0.0006377550889737904,0.0007288630004040897,-0.0,-0.0004081632650922984,6.312220908947123e-21,4.0657581468206416e-20,-0.0007971939048729837,-0.00025510202976875007,-0.0002915451768785715,4.734255532588794e-19,1.8942593708768602e-19,9.025957029752529e-19,-0.0077522676438093185,0.0008928571478463709,0.0006377550889737904,0.004733560141175985,0.0006377550889737904,-0.0,4.108276926672358e-21,-0.00029761905898340046,-1.9654956805537867e-20,1.0028870095490916e-18,-0.00021258502965793014,-1.0164395367051604e-19,-0.0004960317746736109,-0.00021258502965793014,-5.6161188582392e-20,-0.008773688226938248,0.0010204081190750003,0.0007288630004040897,0.0006377550889737904,0.006432519294321537,-0.0,4.122416545268186e-21,1.2449935789213967e-20,-0.0004081632650922984,1.2585636772031337e-18,-2.2439443849021693e-20,-0.0002915451768785715,-0.0,-0.00025510202976875007,-0.0007971939048729837,0.0009920635493472219,-0.0029761905316263437,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,-0.0006802721181884408,-0.0004081632650922984,4.108276926672358e-21,4.122416545268186e-21,-0.0,0.0002721088530961424,-5.422417185589188e-23,-1.20332797044025e-21,8.131516293641283e-20,3.3881317890172014e-21,3.3881317890172014e-21,-1.922656933670203e-21,-1.8055593228630336e-35,-1.9879153447695282e-21,0.0008928571478463709,-0.0005952381179668009,6.312220908947123e-21,-0.00029761905898340046,1.2449935789213967e-20,-0.0,-5.422417185589188e-23,0.00019841270113829523,-2.1974983954557086e-22,-1.0590658338806372e-22,-2.0750671829654075e-21,2.2761449246981122e-22,-4.743384504624082e-20,-6.776263578034403e-21,1.4077598225242096e-21,0.0010204081190750003,-0.0006802721181884408,4.0657581468206416e-20,-1.9654956805537867e-20,-0.0004081632650922984,-0.0,-1.20332797044025e-21,-2.1974983954557086e-22,0.0002721088530961424,-2.350249937532948e-21,-2.5048519832107673e-22,-1.0138844048735525e-20,-3.6624974099046775e-22,9.196567393176852e-21,5.379685436012256e-20,0.0005314626032486558,-1.970945605256032e-19,-0.0007971939048729837,1.0028870095490916e-18,1.2585636772031337e-18,-0.0,8.131516293641283e-20,-1.0590658338806372e-22,-2.350249937532948e-21,0.0001594387722434476,-8.809142651444724e-20,-1.2874900798265365e-19,-1.0370497110191994e-19,-6.06900347478625e-20,-1.4481732742362006e-19,0.0006377550889737904,-1.6189151424142551e-21,-0.00025510202976875007,-0.00021258502965793014,-2.2439443849021693e-20,-0.0,3.3881317890172014e-21,-2.0750671829654075e-21,-2.5048519832107673e-22,-8.809142651444724e-20,8.50340147735551e-05,2.0565052984873316e-21,1.5881822524578382e-20,6.776263578034403e-21,-4.89228915198197e-22,0.0007288630004040897,1.61939378029751e-20,-0.0002915451768785715,-1.0164395367051604e-19,-0.0002915451768785715,-0.0,3.3881317890172014e-21,2.2761449246981122e-22,-1.0138844048735525e-20,-1.2874900798265365e-19,2.0565052984873316e-21,0.00011661807366181165,3.79357504278718e-22,3.747817707453961e-20,-6.86448368283289e-20,0.00041335978312417865,1.4802380259530238e-19,4.734255532588794e-19,-0.0004960317746736109,-0.0,-0.0,-1.922656933670203e-21,-4.743384504624082e-20,-3.6624974099046775e-22,-1.0370497110191994e-19,1.5881822524578382e-20,3.79357504278718e-22,8.26719551696442e-05,-1.0425021277645988e-21,4.843314142630953e-22,0.0006377550889737904,-2.662626941045356e-21,1.8942593708768602e-19,-0.00021258502965793014,-0.00025510202976875007,-0.0,-1.8055593228630336e-35,-6.776263578034403e-21,9.196567393176852e-21,-6.06900347478625e-20,6.776263578034403e-21,3.747817707453961e-20,-1.0425021277645988e-21,8.50340147735551e-05,2.0849786888628038e-20,0.0005314626032486558,-1.3374563124687143e-19,9.025957029752529e-19,-5.6161188582392e-20,-0.0007971939048729837,-0.0,-1.9879153447695282e-21,1.4077598225242096e-21,5.379685436012256e-20,-1.4481732742362006e-19,-4.89228915198197e-22,-6.86448368283289e-20,4.843314142630953e-22,2.0849786888628038e-20,0.0001594387722434476,4.0,6.0,7.0,7.0,0.036613721400499344,-0.01034985389560461,-0.007598396390676498,-0.006713131908327341,-0.006713131908327341,0.0008503401186317205,0.0008746355888433754,0.0007653061184100807,0.0007653061184100807,0.0004555393534246832,0.000546647235751152,0.000546647235751152,0.00035430840216577053,0.00047831633128225803,0.00035430840216577053,-0.01034985389560461,0.012852284125983715,0.0008746355888433754,0.0007653061184100807,0.0007653061184100807,-0.0025510203558951616,-0.000583090353757143,-0.0005102040595375001,-0.0005102040595375001,1.636593127054475e-19,3.393365968213587e-20,2.329228160084807e-20,5.690262029222654e-20,2.193784120245211e-20,1.1604238932519396e-19,-0.007598396390676498,0.0008746355888433754,0.005544824991375208,0.000546647235751152,0.000546647235751152,-0.0,-0.0003498542355373502,2.502965169289353e-20,2.0328790734103208e-20,-0.00068330904468894,-0.00021865889721084386,-0.00021865889721084386,5.705918748760693e-19,3.053693878568004e-19,5.597431943472832e-19,-0.006713131908327341,0.0007653061184100807,0.000546647235751152,0.004080114420503378,0.00047831633128225803,-0.0,-9.088538736088421e-21,-0.00025510202976875007,2.898226316414428e-20,8.267041565201971e-19,-0.00018221575010102242,5.759824041329242e-20,-0.00042517005931586027,-0.0001594387722434476,7.95788332824816e-20,-0.006713131908327341,0.0007653061184100807,0.000546647235751152,0.00047831633128225803,0.004080114420503378,-0.0,-8.41470480752308e-21,-9.052460252007897e-21,-0.00025510202976875007,8.310061160909323e-19,4.6716621294020524e-20,-0.00018221575010102242,-0.0,-0.0001594387722434476,-0.00042517005931586027,0.0008503401186317205,-0.0025510203558951616,-0.0,-0.0,-0.0,0.0008503401186317205,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008746355888433754,-0.000583090353757143,-0.0003498542355373502,-9.088538736088421e-21,-8.41470480752308e-21,-0.0,0.0002332361473236233,8.213887831651205e-22,1.5948079065603865e-22,-6.776263578034403e-20,-0.0,-0.0,1.2086854593246297e-21,2.0312542382209128e-35,1.2577666935297003e-21,0.0007653061184100807,-0.0005102040595375001,2.502965169289353e-20,-0.00025510202976875007,-9.052460252007897e-21,-0.0,8.213887831651205e-22,0.0001700680295471102,2.124078038155958e-22,1.6042749947295077e-21,-1.1511332171004199e-20,-1.445350067021724e-22,-2.0328790734103208e-20,3.3881317890172014e-21,-1.6449374296234127e-22,0.0007653061184100807,-0.0005102040595375001,2.0328790734103208e-20,2.898226316414428e-20,-0.00025510202976875007,-0.0,1.5948079065603865e-22,2.124078038155958e-22,0.0001700680295471102,3.1148593147741953e-22,2.0011143130001965e-22,-7.619558864454442e-21,3.540130063593263e-22,-1.070074606169695e-20,-3.9564439670497716e-20,0.0004555393534246832,1.636593127054475e-19,-0.00068330904468894,8.267041565201971e-19,8.310061160909323e-19,-0.0,-6.776263578034403e-20,1.6042749947295077e-21,3.1148593147741953e-22,0.000136661808937788,-6.776263578034403e-20,-6.776263578034403e-20,-8.753873415594257e-20,-4.5517526060896877e-20,-8.796765315294545e-20,0.000546647235751152,3.393365968213587e-20,-0.00021865889721084386,-0.00018221575010102242,4.6716621294020524e-20,-0.0,-0.0,-1.1511332171004199e-20,2.0011143130001965e-22,-6.776263578034403e-20,7.288629421964288e-05,-5.443711154128421e-21,-4.468058730205514e-20,-1.1858461261560205e-20,3.3351905637395758e-22,0.000546647235751152,2.329228160084807e-20,-0.00021865889721084386,5.759824041329242e-20,-0.00018221575010102242,-0.0,-0.0,-1.445350067021724e-22,-7.619558864454442e-21,-6.776263578034403e-20,-5.443711154128421e-21,7.288629421964288e-05,-2.408916652151795e-22,-1.4068788024704196e-20,-4.0887427818571053e-20,0.00035430840216577053,5.690262029222654e-20,5.705918748760693e-19,-0.00042517005931586027,-0.0,-0.0,1.2086854593246297e-21,-2.0328790734103208e-20,3.540130063593263e-22,-8.753873415594257e-20,-4.468058730205514e-20,-2.408916652151795e-22,7.086167897796258e-05,3.7790699480894066e-21,-1.8965781261549082e-21,0.00047831633128225803,2.193784120245211e-20,3.053693878568004e-19,-0.0001594387722434476,-0.0001594387722434476,-0.0,2.0312542382209128e-35,3.3881317890172014e-21,-1.070074606169695e-20,-4.5517526060896877e-20,-1.1858461261560205e-20,-1.4068788024704196e-20,3.7790699480894066e-21,5.3146257414482534e-05,-2.2612710722370277e-20,0.00035430840216577053,1.1604238932519396e-19,5.597431943472832e-19,7.95788332824816e-20,-0.00042517005931586027,-0.0,1.2577666935297003e-21,-1.6449374296234127e-22,-3.9564439670497716e-20,-8.796765315294545e-20,3.3351905637395758e-22,-4.0887427818571053e-20,-1.8965781261549082e-21,-2.2612710722370277e-20,7.086167897796258e-05,4.0,6.0,7.0,8.0,0.032669004052877426,-0.009130527265369892,-0.006701743230223656,-0.005920493043959141,-0.005303996615111828,0.0007440476329065859,0.0007653061184100807,0.0006696428754366934,0.0005952381179668009,0.00039859695243649185,0.00047831633128225803,0.00042517005931586027,0.0003100198518950492,0.00037202381645329297,0.00024801588733680546,-0.009130527265369892,0.011295351199805737,0.0007653061184100807,0.0006696428754366934,0.0005952381179668009,-0.0022321429569274187,-0.0005102040595375001,-0.00044642857392318547,-0.00039682540227659047,-2.6551890202189845e-19,-8.865172505717827e-20,-9.301744215856537e-20,-2.008318433124745e-20,1.8438586099191506e-20,7.736527211389556e-20,-0.006701743230223656,0.0007653061184100807,0.004872980527579784,0.00047831633128225803,0.00042517005931586027,-4.248302432350375e-19,-0.0003061224415432662,-1.0525431916332298e-19,-1.0845733697853876e-19,-0.0005978954141028225,-0.00019132652960252017,-0.0001700680295471102,3.876786667931371e-19,1.9063740771825528e-19,2.629124300623497e-19,-0.005920493043959141,0.0006696428754366934,0.00047831633128225803,0.003585600992664695,0.00037202381645329297,-3.7172646283065783e-19,-1.8692530547245286e-19,-0.00022321428696159273,-3.699510359680864e-20,5.237224772003193e-19,-0.0001594387722434476,-2.710505431213761e-20,-0.00037202381645329297,-0.00012400794366840273,3.660779243085202e-20,-0.005303996615111828,0.0005952381179668009,0.00042517005931586027,0.00037202381645329297,0.00275550689548254,-3.304235253882952e-19,-1.6615582134231495e-19,-7.640395899513823e-20,-0.0001700680295471102,3.4222436835031225e-19,-5.2273446165741303e-20,-0.00012147716188337654,-2.0328790734103208e-20,-0.00010629251482896507,-0.00024801588733680546,0.0007440476329065859,-0.0022321429569274187,-4.248302432350375e-19,-3.7172646283065783e-19,-3.304235253882952e-19,0.0007440476329065859,2.8322015354022696e-19,2.4781765050356993e-19,2.202823588753282e-19,1.4739259637909209e-34,4.921159460053875e-35,5.1635052988089e-35,-0.0,-1.023547141442788e-35,-4.308640233525964e-35,0.0007653061184100807,-0.0005102040595375001,-0.0003061224415432662,-1.8692530547245286e-19,-1.6615582134231495e-19,2.8322015354022696e-19,0.0002040816325461492,6.797283659116053e-20,6.042030278233632e-20,1.0620756080875938e-19,3.3986418295580265e-20,3.021015139116816e-20,-5.416677968589101e-35,-3.667144899058728e-35,-6.018531076210112e-35,0.0006696428754366934,-0.00044642857392318547,-1.0525431916332298e-19,-0.00022321428696159273,-7.640395899513823e-20,2.4781765050356993e-19,6.797283659116053e-20,0.00014880952949170023,4.4014364404477565e-20,1.8055593228630336e-35,1.2133174486116958e-21,-9.854092600714271e-23,6.776263578034403e-21,3.3881317890172014e-21,6.133179599015871e-23,0.0005952381179668009,-0.00039682540227659047,-1.0845733697853876e-19,-3.699510359680864e-20,-0.0001700680295471102,2.202823588753282e-19,6.042030278233632e-20,4.4014364404477565e-20,0.00011337868636474013,8.425943506694157e-35,1.3064936818566723e-23,5.082197683525802e-21,-7.017320386546925e-23,-8.172280303527522e-21,-2.2156932589266424e-20,0.00039859695243649185,-2.6551890202189845e-19,-0.0005978954141028225,5.237224772003193e-19,3.4222436835031225e-19,1.4739259637909209e-34,1.0620756080875938e-19,1.8055593228630336e-35,8.425943506694157e-35,0.00011957908282056451,2.4167639021733776e-20,7.080503838505674e-20,-7.670545986606527e-20,-3.540251919252837e-20,-5.900420188538822e-20,0.00047831633128225803,-8.865172505717827e-20,-0.00019132652960252017,-0.0001594387722434476,-5.2273446165741303e-20,4.921159460053875e-35,3.3986418295580265e-20,1.2133174486116958e-21,1.3064936818566723e-23,2.4167639021733776e-20,6.377550744218752e-05,1.8810957930921017e-20,-1.192185669874576e-21,1.6940658945086007e-21,1.9053032433110147e-23,0.00042517005931586027,-9.301744215856537e-20,-0.0001700680295471102,-2.710505431213761e-20,-0.00012147716188337654,5.1635052988089e-35,3.021015139116816e-20,-9.854092600714271e-23,5.082197683525802e-21,7.080503838505674e-20,1.8810957930921017e-20,4.8590864025754854e-05,-1.6423487036768395e-22,-5.344857416373365e-21,9.15754450154481e-21,0.0003100198518950492,-2.008318433124745e-20,3.876786667931371e-19,-0.00037202381645329297,-2.0328790734103208e-20,-0.0,-5.416677968589101e-35,6.776263578034403e-21,-7.017320386546925e-23,-7.670545986606527e-20,-1.192185669874576e-21,-1.6423487036768395e-22,6.200397183420137e-05,5.3428233921717945e-21,1.6463717428321728e-21,0.00037202381645329297,1.8438586099191506e-20,1.9063740771825528e-19,-0.00012400794366840273,-0.00010629251482896507,-1.023547141442788e-35,-3.667144899058728e-35,3.3881317890172014e-21,-8.172280303527522e-21,-3.540251919252837e-20,1.6940658945086007e-21,-5.344857416373365e-21,5.3428233921717945e-21,3.543083948898129e-05,-1.3556810077560755e-20,0.00024801588733680546,7.736527211389556e-20,2.629124300623497e-19,3.660779243085202e-20,-0.00024801588733680546,-4.308640233525964e-35,-6.018531076210112e-35,6.133179599015871e-23,-2.2156932589266424e-20,-5.900420188538822e-20,1.9053032433110147e-23,9.15754450154481e-21,1.6463717428321728e-21,-1.3556810077560755e-20,3.543083948898129e-05,4.0,6.0,8.0,3.0,0.06400462985038757,-0.01974206417798996,-0.014521329663693905,-0.011507936753332615,-0.02415674552321434,0.0017361111240461469,0.0017857142956927419,0.0013888889225199819,0.0031250000465661287,0.0009300595265813172,0.0009920635493472219,0.0022321429569274187,0.0005787037080153823,0.0017361111240461469,0.0026041667442768812,-0.01974206417798996,0.025314154103398323,0.0017857142956927419,0.0013888889225199819,0.0031250000465661287,-0.0052083334885537624,-0.0011904762359336019,-0.0009259259095415473,-0.0020833334419876337,-6.195441133342278e-19,-2.3551817272854825e-19,-3.965082252960754e-19,1.1858461261560205e-19,3.668438000241818e-34,2.7513284657430523e-33,-0.014521329663693905,0.0017857142956927419,0.010923858731985092,0.0009920635493472219,0.0022321429569274187,-0.0,-0.0007142857066355646,-5.929230630780102e-20,-0.0,-0.0013950893189758062,-0.00039682540227659047,-0.0008928571478463709,6.052612373960629e-19,8.260588005460409e-19,6.1954409265471244e-18,-0.011507936753332615,0.0013888889225199819,0.0009920635493472219,0.006181500386446714,0.0017361111240461469,-0.0,-1.762258793454443e-19,-0.00039682540227659047,-0.0,1.0036333332567676e-18,-0.00028344671591185033,-1.8881343569348464e-19,-0.0005787037080153823,-0.0004960317746736109,-4.457027523122817e-33,-0.02415674552321434,0.0031250000465661287,0.0022321429569274187,0.0017361111240461469,0.05019841343164444,-0.0,-3.965082252960754e-19,-3.009265538105056e-35,-0.0031250000465661287,2.127101355829858e-18,-1.8881343569348464e-19,-0.0022321429569274187,-0.0,-0.0017361111240461469,-0.015625,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-0.0007142857066355646,-1.762258793454443e-19,-3.965082252960754e-19,-0.0,0.0004761904710903764,1.0532429383367696e-35,-0.0,2.4781765050356993e-19,7.04903478607686e-20,1.5860328753349075e-19,-1.0929631679575432e-34,-1.4673752230556012e-34,-1.1005314230314194e-33,0.0013888889225199819,-0.0009259259095415473,-5.929230630780102e-20,-0.00039682540227659047,-3.009265538105056e-35,-0.0,1.0532429383367696e-35,0.00026455026818439364,-0.0,7.222237291452134e-35,1.6940658945086007e-20,1.2037062152420224e-35,-3.3881317890172014e-20,-0.0,-0.0,0.0031250000465661287,-0.0020833334419876337,-0.0,-0.0,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009300595265813172,-6.195441133342278e-19,-0.0013950893189758062,1.0036333332567676e-18,2.127101355829858e-18,-0.0,2.4781765050356993e-19,7.222237291452134e-35,-0.0,0.00027901786961592734,5.0125471372442764e-20,3.7172646283065783e-19,-1.3767647106590584e-19,-1.652117626941476e-19,-1.2390882266684555e-18,0.0009920635493472219,-2.3551817272854825e-19,-0.00039682540227659047,-0.00028344671591185033,-1.8881343569348464e-19,-0.0,7.04903478607686e-20,1.6940658945086007e-20,-0.0,5.0125471372442764e-20,0.00011337868636474013,7.552537686233327e-20,2.374888529897734e-20,-0.0,-2.226018040117819e-34,0.0022321429569274187,-3.965082252960754e-19,-0.0008928571478463709,-1.8881343569348464e-19,-0.0022321429569274187,-0.0,1.5860328753349075e-19,1.2037062152420224e-35,-0.0,3.7172646283065783e-19,7.552537686233327e-20,0.0008928571478463709,-1.6250033905767303e-34,-2.2268564981977415e-34,-1.650797042711633e-33,0.0005787037080153823,1.1858461261560205e-19,6.052612373960629e-19,-0.0005787037080153823,-0.0,-0.0,-1.0929631679575432e-34,-3.3881317890172014e-20,-0.0,-1.3767647106590584e-19,2.374888529897734e-20,-1.6250033905767303e-34,8.26719551696442e-05,6.152516195245366e-36,6.114063410265943e-34,0.0017361111240461469,3.668438000241818e-34,8.260588005460409e-19,-0.0004960317746736109,-0.0017361111240461469,-0.0,-1.4673752230556012e-34,-0.0,-0.0,-1.652117626941476e-19,-0.0,-2.2268564981977415e-34,6.152516195245366e-36,0.0004960317746736109,7.336876000483636e-34,0.0026041667442768812,2.7513284657430523e-33,6.1954409265471244e-18,-4.457027523122817e-33,-0.015625,-0.0,-1.1005314230314194e-33,-0.0,-0.0,-1.2390882266684555e-18,-2.226018040117819e-34,-1.650797042711633e-33,6.114063410265943e-34,7.336876000483636e-34,0.0078125,4.0,6.0,8.0,4.0,0.05149677395820618,-0.015275297686457634,-0.011225818656384945,-0.008891369216144085,-0.015275297686457634,0.0013020833721384406,0.0013392857508733869,0.0010416667209938169,0.0018749999580904841,0.0006975446594879031,0.0007440476329065859,0.0013392857508733869,0.0004340277810115367,0.0010416667209938169,0.0013020833721384406,-0.015275297686457634,0.019298115745186806,0.0013392857508733869,0.0010416667209938169,0.0018749999580904841,-0.00390625,-0.0008928571478463709,-0.0006944444612599909,-0.0012499999720603228,-3.7916745780123706e-34,1.0672615135404184e-19,0.0,1.4230153513872246e-19,-0.0,0.0,-0.011225818656384945,0.0013392857508733869,0.008326822891831398,0.0007440476329065859,0.0013392857508733869,-0.0,-0.0005357142654247582,1.0672615135404184e-19,-0.0,-0.0010463169310241938,-0.00029761905898340046,-0.0005357142654247582,6.730197889721325e-19,4.956353010071399e-19,2.168404344971009e-18,-0.008891369216144085,0.0010416667209938169,0.0007440476329065859,0.0047105299308896065,0.0010416667209938169,-0.0,-0.0,-0.00029761905898340046,-0.0,1.1951721739722496e-18,-0.00021258502965793014,-0.0,-0.0004340277810115367,-0.00029761905898340046,-2.4768944321932117e-33,-0.015275297686457634,0.0018749999580904841,0.0013392857508733869,0.0010416667209938169,0.019298115745186806,-0.0,-0.0,0.0,-0.0012499999720603228,1.6479872814984514e-18,-8.049600725083747e-34,-0.0008928571478463709,-0.0,-0.0006944444612599909,-0.00390625,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0008928571478463709,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0006944444612599909,1.0672615135404184e-19,-0.00029761905898340046,0.0,-0.0,-0.0,0.00019841270113829523,-0.0,1.0833355937178202e-34,-3.049318610115481e-20,-0.0,-4.0657581468206416e-20,-0.0,-0.0,0.0018749999580904841,-0.0012499999720603228,-0.0,-0.0,-0.0012499999720603228,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006975446594879031,-3.7916745780123706e-34,-0.0010463169310241938,1.1951721739722496e-18,1.6479872814984514e-18,-0.0,-0.0,1.0833355937178202e-34,-0.0,0.0002092633949359879,-1.2947206723560157e-19,-0.0,-1.0325735006825511e-19,-9.912705632401885e-20,-4.336808689942018e-19,0.0007440476329065859,1.0672615135404184e-19,-0.00029761905898340046,-0.00021258502965793014,-8.049600725083747e-34,-0.0,-0.0,-3.049318610115481e-20,-0.0,-1.2947206723560157e-19,8.50340147735551e-05,-0.0,-4.478087325780439e-20,-0.0,2.6832003947537427e-34,0.0013392857508733869,0.0,-0.0005357142654247582,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.0004340277810115367,1.4230153513872246e-19,6.730197889721325e-19,-0.0004340277810115367,-0.0,-0.0,-0.0,-4.0657581468206416e-20,-0.0,-1.0325735006825511e-19,-4.478087325780439e-20,-0.0,6.200397183420137e-05,3.691510004133145e-36,2.1399222624697022e-34,0.0010416667209938169,-0.0,4.956353010071399e-19,-0.00029761905898340046,-0.0006944444612599909,-0.0,-0.0,-0.0,-0.0,-9.912705632401885e-20,-0.0,-0.0,3.691510004133145e-36,0.00019841270113829523,2.0543253811544638e-34,0.0013020833721384406,0.0,2.168404344971009e-18,-2.4768944321932117e-33,-0.00390625,-0.0,-0.0,-0.0,-0.0,-4.336808689942018e-19,2.6832003947537427e-34,-0.0,2.1399222624697022e-34,2.0543253811544638e-34,0.0013020833721384406,4.0,6.0,8.0,5.0,0.04315972328186035,-0.012470237910747528,-0.009159225970506668,-0.0072519839741289616,-0.010555555112659931,0.0010416667209938169,0.0010714285308495164,0.0008333333535119891,0.0012499999720603228,0.0005580357392318547,0.0005952381179668009,0.0008928571478463709,0.00034722223062999547,0.0006944444612599909,0.0007440476329065859,-0.012470237910747528,0.015605159103870392,0.0010714285308495164,0.0008333333535119891,0.0012499999720603228,-0.0031250000465661287,-0.0007142857066355646,-0.0005555555690079927,-0.0008333333535119891,-2.949080227342955e-34,8.300922883092143e-20,0.0,9.486769009248164e-20,-0.0,0.0,-0.009159225970506668,0.0010714285308495164,0.006732887122780085,0.0005952381179668009,0.0008928571478463709,-0.0,-0.00042857142398133874,8.300922883092143e-20,3.949661018762886e-35,-0.0008370535797439516,-0.0002380952355451882,-0.0003571428533177823,5.507441930657422e-19,3.304235253882952e-19,1.0620756080875938e-18,-0.0072519839741289616,0.0008333333535119891,0.0005952381179668009,0.00380810652859509,0.0006944444612599909,-0.0,-0.0,-0.0002380952355451882,-1.0573552502232717e-19,9.17565914303661e-19,-0.0001700680295471102,-5.960866649817548e-34,-0.00034722223062999547,-0.00019841270113829523,-1.1642317374089676e-33,-0.010555555112659931,0.0012499999720603228,0.0008928571478463709,0.0006944444612599909,0.009742063470184803,-0.0,-0.0,-1.0573552502232717e-19,-0.0006249999860301614,1.352848308361342e-18,-5.381996752642516e-34,-0.00044642857392318547,1.3552527156068805e-20,-0.00034722223062999547,-0.0014880952658131719,0.0010416667209938169,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-0.00042857142398133874,-0.0,-0.0,-0.0,0.0002857142826542258,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0005555555690079927,8.300922883092143e-20,-0.0002380952355451882,-1.0573552502232717e-19,-0.0,-0.0,0.00015873015217948705,7.04903478607686e-20,8.425943506694157e-35,-2.371692252312041e-20,-0.0,-2.710505431213761e-20,-0.0,-0.0,0.0012499999720603228,-0.0008333333535119891,3.949661018762886e-35,-1.0573552502232717e-19,-0.0006249999860301614,-0.0,-0.0,7.04903478607686e-20,0.00041666667675599456,0.0,-1.128474576789396e-35,-0.0,-1.2037062152420224e-35,-0.0,-0.0,0.0005580357392318547,-2.949080227342955e-34,-0.0008370535797439516,9.17565914303661e-19,1.352848308361342e-18,-0.0,-0.0,8.425943506694157e-35,0.0,0.00016741071885917336,-8.286212639120624e-20,-1.0875654371573568e-19,-8.26058813470738e-20,-6.608470637012875e-20,-2.1241512161751876e-19,0.0005952381179668009,8.300922883092143e-20,-0.0002380952355451882,-0.0001700680295471102,-5.381996752642516e-34,-0.0,-0.0,-2.371692252312041e-20,-1.128474576789396e-35,-8.286212639120624e-20,6.80272132740356e-05,5.383047235924193e-35,-3.93470785775038e-20,-0.0,1.0513764966717286e-34,0.0008928571478463709,0.0,-0.0003571428533177823,-5.960866649817548e-34,-0.00044642857392318547,-0.0,-0.0,-0.0,-0.0,-1.0875654371573568e-19,5.383047235924193e-35,0.00017857142665889114,5.366400904301856e-35,4.2931206086471143e-35,1.3799316447069957e-34,0.00034722223062999547,9.486769009248164e-20,5.507441930657422e-19,-0.00034722223062999547,1.3552527156068805e-20,-0.0,-0.0,-2.710505431213761e-20,-1.2037062152420224e-35,-8.26058813470738e-20,-3.93470785775038e-20,5.366400904301856e-35,4.960317528457381e-05,2.461006549844628e-36,1.0481251757246252e-34,0.0006944444612599909,-0.0,3.304235253882952e-19,-0.00019841270113829523,-0.00034722223062999547,-0.0,-0.0,-0.0,-0.0,-6.608470637012875e-20,-0.0,4.2931206086471143e-35,2.461006549844628e-36,9.920635056914762e-05,8.38500094661952e-35,0.0007440476329065859,0.0,1.0620756080875938e-18,-1.1642317374089676e-33,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-2.1241512161751876e-19,1.0513764966717286e-34,1.3799316447069957e-34,1.0481251757246252e-34,8.38500094661952e-35,0.00037202381645329297,4.0,6.0,8.0,6.0,0.03717875853180885,-0.010540674440562725,-0.007738980930298567,-0.00612599216401577,-0.007738980930298567,0.0008680555620230734,0.0008928571478463709,0.0006944444612599909,0.0008928571478463709,0.0004650297632906586,0.0004960317746736109,0.0006377550889737904,0.00028935185400769114,0.0004960317746736109,0.0004650297632906586,-0.010540674440562725,0.013103505596518517,0.0008928571478463709,0.0006944444612599909,0.0008928571478463709,-0.0026041667442768812,-0.0005952381179668009,-0.00046296295477077365,-0.0005952381179668009,-3.097720566671139e-19,-1.2902660462634762e-19,-2.2657611766230274e-19,7.115076756936123e-20,-9.404217030350225e-20,-3.097720566671139e-19,-0.007738980930298567,0.0008928571478463709,0.005653256084769964,0.0004960317746736109,0.0006377550889737904,-0.0,-0.0003571428533177823,-4.09136617224512e-20,-1.1328805883115137e-19,-0.0006975446594879031,-0.00019841270113829523,-0.00025510202976875007,2.939832725744021e-19,1.5752680243913248e-19,3.4296190326397985e-19,-0.00612599216401577,0.0006944444612599909,0.0004960317746736109,0.0031970427371561527,0.0004960317746736109,-0.0,-8.811293967272215e-20,-0.00019841270113829523,-8.811293967272215e-20,5.372191696650408e-19,-0.00014172335795592517,-1.2947206723560157e-19,-0.00028935185400769114,-0.00014172335795592517,-1.47510498251122e-19,-0.007738980930298567,0.0008928571478463709,0.0006377550889737904,0.0004960317746736109,0.005653256084769964,-0.0,-1.1328805883115137e-19,-5.929230630780102e-21,-0.0003571428533177823,7.671178392034218e-19,-5.691131215100688e-20,-0.00025510202976875007,-1.3552527156068805e-20,-0.00019841270113829523,-0.0006975446594879031,0.0008680555620230734,-0.0026041667442768812,-0.0,-0.0,-0.0,0.0008680555620230734,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0005952381179668009,-0.0003571428533177823,-8.811293967272215e-20,-1.1328805883115137e-19,-0.0,0.0002380952355451882,7.267726282558442e-36,2.0124002673667145e-35,1.2390882525178497e-19,3.52451739303843e-20,4.531522547116511e-20,-5.248616714732573e-35,-2.7982381864132355e-35,-6.092227339961347e-35,0.0006944444612599909,-0.00046296295477077365,-4.09136617224512e-20,-0.00019841270113829523,-5.929230630780102e-21,-0.0,7.267726282558442e-36,0.00013227513409219682,1.504632769052528e-36,3.611118645726067e-35,1.168961786578422e-20,5.266214691683848e-36,-2.0328790734103208e-20,1.6940658945086007e-21,3.5464133281613844e-37,0.0008928571478463709,-0.0005952381179668009,-1.1328805883115137e-19,-8.811293967272215e-20,-0.0003571428533177823,-0.0,2.0124002673667145e-35,1.504632769052528e-36,0.0002380952355451882,-1.3626749514183178e-34,1.010947957088244e-35,4.531522547116511e-20,1.2065451517634877e-36,3.52451739303843e-20,1.2390882525178497e-19,0.0004650297632906586,-3.097720566671139e-19,-0.0006975446594879031,5.372191696650408e-19,7.671178392034218e-19,-0.0,1.2390882525178497e-19,3.611118645726067e-35,-1.3626749514183178e-34,0.00013950893480796367,2.5062735686221382e-20,2.629901406112835e-21,-6.883823553295292e-20,-4.720335892337116e-20,-1.2169615588729683e-19,0.0004960317746736109,-1.2902660462634762e-19,-0.00019841270113829523,-0.00014172335795592517,-5.691131215100688e-20,-0.0,3.52451739303843e-20,1.168961786578422e-20,1.010947957088244e-35,2.5062735686221382e-20,5.668934318237007e-05,2.1578678411129306e-20,1.4345109970149522e-20,8.470329472543003e-22,8.796306054065184e-37,0.0006377550889737904,-2.2657611766230274e-19,-0.00025510202976875007,-1.2947206723560157e-19,-0.00025510202976875007,-0.0,4.531522547116511e-20,5.266214691683848e-36,4.531522547116511e-20,2.629901406112835e-21,2.1578678411129306e-20,0.0001020408162730746,4.513898307157584e-36,3.021015139116816e-20,1.0620756080875938e-19,0.00028935185400769114,7.115076756936123e-20,2.939832725744021e-19,-0.00028935185400769114,-1.3552527156068805e-20,-0.0,-5.248616714732573e-35,-2.0328790734103208e-20,1.2065451517634877e-36,-6.883823553295292e-20,1.4345109970149522e-20,4.513898307157584e-36,4.13359775848221e-05,2.772834217383842e-21,5.978611333973935e-35,0.0004960317746736109,-9.404217030350225e-20,1.5752680243913248e-19,-0.00014172335795592517,-0.00019841270113829523,-0.0,-2.7982381864132355e-35,1.6940658945086007e-21,3.52451739303843e-20,-4.720335892337116e-20,8.470329472543003e-22,3.021015139116816e-20,2.772834217383842e-21,5.668934318237007e-05,5.900420188538822e-20,0.0004650297632906586,-3.097720566671139e-19,3.4296190326397985e-19,-1.47510498251122e-19,-0.0006975446594879031,-0.0,-6.092227339961347e-35,3.5464133281613844e-37,1.2390882525178497e-19,-1.2169615588729683e-19,8.796306054065184e-37,1.0620756080875938e-19,5.978611333973935e-35,5.900420188538822e-20,0.00013950893480796367,4.0,6.0,8.0,7.0,0.032669004052877426,-0.009130527265369892,-0.006701743230223656,-0.005303996615111828,-0.005920493043959141,0.0007440476329065859,0.0007653061184100807,0.0005952381179668009,0.0006696428754366934,0.00039859695243649185,0.00042517005931586027,0.00047831633128225803,0.00024801588733680546,0.00037202381645329297,0.0003100198518950492,-0.009130527265369892,0.011295351199805737,0.0007653061184100807,0.0005952381179668009,0.0006696428754366934,-0.0022321429569274187,-0.0005102040595375001,-0.00039682540227659047,-0.00044642857392318547,-2.6551890202189845e-19,-9.862646988175649e-20,-8.464259388563542e-20,8.226350612165927e-20,-5.77001581120469e-20,6.384095553256522e-21,-0.006701743230223656,0.0007653061184100807,0.004872980527579784,0.00042517005931586027,0.00047831633128225803,-4.248302432350375e-19,-0.0003061224415432662,-1.1336097997202675e-19,-1.0206812930369382e-19,-0.0005978954141028225,-0.0001700680295471102,-0.00019132652960252017,2.5372426291447554e-19,1.4203317965343436e-19,3.8334584304579606e-19,-0.005303996615111828,0.0005952381179668009,0.00042517005931586027,0.00275550689548254,0.00037202381645329297,-3.304235253882952e-19,-1.6615582134231495e-19,-0.0001700680295471102,-1.106304567699892e-19,3.4222436835031225e-19,-0.00012147716188337654,-7.115076756936123e-20,-0.00024801588733680546,-0.00010629251482896507,-8.940575188430864e-20,-0.005920493043959141,0.0006696428754366934,0.00047831633128225803,0.00037202381645329297,0.003585600992664695,-3.7172646283065783e-19,-1.8692530547245286e-19,-6.47591817502552e-20,-0.00022321428696159273,5.237224772003193e-19,-4.3643251115125356e-20,-0.0001594387722434476,-6.776263578034403e-21,-0.00012400794366840273,-0.00037202381645329297,0.0007440476329065859,-0.0022321429569274187,-4.248302432350375e-19,-3.304235253882952e-19,-3.7172646283065783e-19,0.0007440476329065859,2.8322015354022696e-19,2.202823588753282e-19,2.4781765050356993e-19,1.4739259637909209e-34,5.474868956757761e-35,4.698607901537928e-35,-4.2129717533470784e-35,3.2030022747718053e-35,1.2829744542296808e-35,0.0007653061184100807,-0.0005102040595375001,-0.0003061224415432662,-1.6615582134231495e-19,-1.8692530547245286e-19,2.8322015354022696e-19,0.0002040816325461492,6.042030278233632e-20,6.797283659116053e-20,1.0620756080875938e-19,3.021015139116816e-20,3.3986418295580265e-20,-5.717604522399606e-35,-1.6444782841793268e-35,-6.46992090692587e-35,0.0005952381179668009,-0.00039682540227659047,-1.1336097997202675e-19,-0.0001700680295471102,-6.47591817502552e-20,2.202823588753282e-19,6.042030278233632e-20,0.00011337868636474013,3.7933139336140844e-20,6.620384183831123e-35,6.573651179985794e-21,-9.241508660107774e-23,-2.371692252312041e-20,1.6940658945086007e-21,3.3250479582000957e-22,0.0006696428754366934,-0.00044642857392318547,-1.0206812930369382e-19,-1.106304567699892e-19,-0.00022321428696159273,2.4781765050356993e-19,6.797283659116053e-20,3.7933139336140844e-20,0.00014880952949170023,1.8055593228630336e-35,3.110601611587664e-23,6.601859385833466e-36,2.485738325239369e-22,1.725697636561798e-20,-2.515954045559388e-21,0.00039859695243649185,-2.6551890202189845e-19,-0.0005978954141028225,3.4222436835031225e-19,5.237224772003193e-19,1.4739259637909209e-34,1.0620756080875938e-19,6.620384183831123e-35,1.8055593228630336e-35,0.00011957908282056451,7.080503838505674e-20,2.4167639021733776e-20,-5.900420188538822e-20,-3.540251919252837e-20,-7.670545986606527e-20,0.00042517005931586027,-9.862646988175649e-20,-0.0001700680295471102,-0.00012147716188337654,-4.3643251115125356e-20,5.474868956757761e-35,3.021015139116816e-20,6.573651179985794e-21,3.110601611587664e-23,7.080503838505674e-20,4.8590864025754854e-05,1.611799874533361e-20,1.1914583527417367e-20,8.470329472543003e-22,5.1843358089498653e-23,0.00047831633128225803,-8.464259388563542e-20,-0.00019132652960252017,-7.115076756936123e-20,-0.0001594387722434476,4.698607901537928e-35,3.3986418295580265e-20,-9.241508660107774e-23,6.601859385833466e-36,2.4167639021733776e-20,1.611799874533361e-20,6.377550744218752e-05,-1.3477200103028474e-22,1.0671603293182227e-20,-2.7160156066888227e-36,0.00024801588733680546,8.226350612165927e-20,2.5372426291447554e-19,-0.00024801588733680546,-6.776263578034403e-21,-4.2129717533470784e-35,-5.717604522399606e-35,-2.371692252312041e-20,2.485738325239369e-22,-5.900420188538822e-20,1.1914583527417367e-20,-1.3477200103028474e-22,3.543083948898129e-05,-6.1529752114626145e-22,1.5048620618777337e-21,0.00037202381645329297,-5.77001581120469e-20,1.4203317965343436e-19,-0.00010629251482896507,-0.00012400794366840273,3.2030022747718053e-35,-1.6444782841793268e-35,1.6940658945086007e-21,1.725697636561798e-20,-3.540251919252837e-20,8.470329472543003e-22,1.0671603293182227e-20,-6.1529752114626145e-22,3.543083948898129e-05,2.5794475488839703e-20,0.0003100198518950492,6.384095553256522e-21,3.8334584304579606e-19,-8.940575188430864e-20,-0.00037202381645329297,1.2829744542296808e-35,-6.46992090692587e-35,3.3250479582000957e-22,-2.515954045559388e-21,-7.670545986606527e-20,5.1843358089498653e-23,-2.7160156066888227e-36,1.5048620618777337e-21,2.5794475488839703e-20,6.200397183420137e-05,4.0,6.0,8.0,8.0,0.029142897576093674,-0.008054315112531185,-0.0059105283580720425,-0.004677166230976582,-0.004677166230976582,0.0006510416860692203,0.0006696428754366934,0.0005208333604969084,0.0005208333604969084,0.00034877232974395156,0.00037202381645329297,0.00037202381645329297,0.00021701389050576836,0.00028935185400769114,0.00021701389050576836,-0.008054315112531185,0.00992683507502079,0.0006696428754366934,0.0005208333604969084,0.0005208333604969084,-0.001953125,-0.00044642857392318547,-0.00034722223062999547,-0.00034722223062999547,-3.3703774026776627e-34,5.341393435999586e-20,5.960268644561594e-20,7.189471959512464e-20,1.3050216882334578e-20,6.986267933455424e-20,-0.0059105283580720425,0.0006696428754366934,0.0042824591509997845,0.00037202381645329297,0.00037202381645329297,-0.0,-0.0002678571327123791,5.367345581483584e-20,5.934316499077596e-20,-0.0005231584655120969,-0.00014880952949170023,-0.00014880952949170023,3.3696254322689173e-19,1.46570317012076e-19,3.4133863886002696e-19,-0.004677166230976582,0.0005208333604969084,0.00037202381645329297,0.002421402605250478,0.00028935185400769114,-0.0,-0.0,-0.00014880952949170023,1.4914533349012784e-20,6.196143202887182e-19,-0.00010629251482896507,1.0164395367051604e-20,-0.00021701389050576836,-8.26719551696442e-05,2.0794120218342634e-20,-0.004677166230976582,0.0005208333604969084,0.00037202381645329297,0.00028935185400769114,0.002421402605250478,-0.0,-0.0,1.749721861529243e-21,-0.00014880952949170023,6.196143202887182e-19,3.4060211853507945e-22,-0.00010629251482896507,-0.0,-8.26719551696442e-05,-0.00021701389050576836,0.0006510416860692203,-0.001953125,-0.0,-0.0,-0.0,0.0006510416860692203,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,-0.00044642857392318547,-0.0002678571327123791,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-0.00034722223062999547,5.367345581483584e-20,-0.00014880952949170023,1.749721861529243e-21,-0.0,-0.0,9.920635056914762e-05,-1.457532603753233e-22,4.81482486096809e-35,-1.5246593050577406e-20,-8.867981128219453e-23,-2.0328790734103208e-20,-0.0,-1.729386188595898e-22,0.0005208333604969084,-0.00034722223062999547,5.934316499077596e-20,1.4914533349012784e-20,-0.00014880952949170023,-0.0,-0.0,-1.457532603753233e-22,9.920635056914762e-05,4.81482486096809e-35,-1.453118706107468e-23,-1.6940658945086007e-20,-2.125568417286974e-22,-3.728633337253196e-21,-1.97878275381906e-20,0.00034877232974395156,-3.3703774026776627e-34,-0.0005231584655120969,6.196143202887182e-19,6.196143202887182e-19,-0.0,-0.0,4.81482486096809e-35,4.81482486096809e-35,0.00010463169746799394,-6.473603361780078e-20,-6.473603361780078e-20,-5.162867503412756e-20,-2.753529485941602e-20,-5.162867503412756e-20,0.00037202381645329297,5.341393435999586e-20,-0.00014880952949170023,-0.00010629251482896507,3.4060211853507945e-22,-0.0,-0.0,-1.5246593050577406e-20,-1.453118706107468e-23,-6.473603361780078e-20,4.251700738677755e-05,-6.334272234442466e-23,-2.2390436628902194e-20,-0.0,-2.11913156473586e-23,0.00037202381645329297,5.960268644561594e-20,-0.00014880952949170023,1.0164395367051604e-20,-0.00010629251482896507,-0.0,-0.0,-8.867981128219453e-23,-1.6940658945086007e-20,-6.473603361780078e-20,-6.334272234442466e-23,4.251700738677755e-05,-1.2932472084222916e-22,-2.541098841762901e-21,-2.374888529897734e-20,0.00021701389050576836,7.189471959512464e-20,3.3696254322689173e-19,-0.00021701389050576836,-0.0,-0.0,-0.0,-2.0328790734103208e-20,-2.125568417286974e-22,-5.162867503412756e-20,-2.2390436628902194e-20,-1.2932472084222916e-22,3.100198591710068e-05,1.0254194555573294e-36,-3.02040603247508e-22,0.00028935185400769114,1.3050216882334578e-20,1.46570317012076e-19,-8.26719551696442e-05,-8.26719551696442e-05,-0.0,-0.0,-0.0,-3.728633337253196e-21,-2.753529485941602e-20,-0.0,-2.541098841762901e-21,1.0254194555573294e-36,2.362055965932086e-05,-5.1985300545856584e-21,0.00021701389050576836,6.986267933455424e-20,3.4133863886002696e-19,2.0794120218342634e-20,-0.00021701389050576836,-0.0,-0.0,-1.729386188595898e-22,-1.97878275381906e-20,-5.162867503412756e-20,-2.11913156473586e-23,-2.374888529897734e-20,-3.02040603247508e-22,-5.1985300545856584e-21,3.100198591710068e-05,4.0,7.0,3.0,3.0,0.12136243283748627,-0.0416666679084301,-0.02718253992497921,-0.05089285597205162,-0.05089285597205162,0.003968254197388887,0.0035714285913854837,0.0071428571827709675,0.0071428571827709675,0.0016534391324967146,0.004464285913854837,0.004464285913854837,0.0059523810632526875,0.008928571827709675,0.0059523810632526875,-0.0416666679084301,0.0555555559694767,0.0035714285913854837,0.0071428571827709675,0.0071428571827709675,-0.011904762126505375,-0.0023809524718672037,-0.004761904943734407,-0.004761904943734407,-3.415236843329339e-18,-1.1655173354219173e-17,-1.0137290312739466e-17,-5.898059818321144e-17,-4.7704895589362195e-18,-5.377642775528102e-17,-0.02718253992497921,0.0035714285913854837,0.01765873096883297,0.004464285913854837,0.004464285913854837,-1.3837355219472865e-17,-0.0011904762359336019,-4.7704895589362195e-18,-4.7704895589362195e-18,-0.0019841270986944437,-0.0014880952658131719,-0.0014880952658131719,-1.3877787807814457e-17,-8.673617379884035e-19,-1.0408340855860843e-17,-0.05089285597205162,0.0071428571827709675,0.004464285913854837,0.11041666567325592,0.008928571827709675,-3.045022564886126e-17,-9.067603505643043e-18,-0.0071428571827709675,3.903127820947816e-18,-1.0842021724855044e-18,-0.004464285913854837,3.98685876486319e-18,-0.0357142873108387,-0.008928571827709675,2.688821387764051e-17,-0.05089285597205162,0.0071428571827709675,0.004464285913854837,0.008928571827709675,0.11041666567325592,-2.936110009736984e-17,-8.316615326492887e-18,3.04187832730072e-18,-0.0071428571827709675,1.0842021724855044e-18,1.8431436932253575e-18,-0.004464285913854837,2.6237692574149207e-17,-0.008928571827709675,-0.0357142873108387,0.003968254197388887,-0.011904762126505375,-1.3837355219472865e-17,-3.045022564886126e-17,-2.936110009736984e-17,0.003968254197388887,3.144186300207963e-18,-7.3496015891465715e-19,-6.133575778341554e-19,5.421010862427522e-19,2.222614453595284e-18,2.168404344971009e-18,1.1384122811097797e-17,1.1926223897340549e-18,1.0950441942103595e-17,0.0035714285913854837,-0.0023809524718672037,-0.0011904762359336019,-9.067603505643043e-18,-8.316615326492887e-18,3.144186300207963e-18,0.0007936508045531809,1.1188347771670277e-18,1.393812670439229e-18,1.6263032587282567e-19,8.131516293641283e-19,8.673617379884035e-19,2.3852447794681098e-18,1.0842021724855044e-19,1.7889335846010823e-18,0.0071428571827709675,-0.004761904943734407,-4.7704895589362195e-18,-0.0071428571827709675,3.04187832730072e-18,-7.3496015891465715e-19,1.1188347771670277e-18,0.004761904943734407,-4.336808689942018e-19,2.168404344971009e-19,1.7889335846010823e-18,-0.0,1.8865117801247777e-17,1.5178830414797062e-18,-1.8431436932253575e-18,0.0071428571827709675,-0.004761904943734407,-4.7704895589362195e-18,3.903127820947816e-18,-0.0071428571827709675,-6.133575778341554e-19,1.393812670439229e-18,-4.336808689942018e-19,0.004761904943734407,2.168404344971009e-19,2.168404344971009e-19,1.1926223897340549e-18,-1.3010426069826053e-18,-1.3010426069826053e-18,1.6371452804531117e-17,0.0016534391324967146,-3.415236843329339e-18,-0.0019841270986944437,-1.0842021724855044e-18,1.0842021724855044e-18,5.421010862427522e-19,1.6263032587282567e-19,2.168404344971009e-19,2.168404344971009e-19,0.0003306878206785768,2.168404344971009e-19,1.0842021724855044e-19,2.168404344971009e-19,1.0842021724855044e-19,4.336808689942018e-19,0.004464285913854837,-1.1655173354219173e-17,-0.0014880952658131719,-0.004464285913854837,1.8431436932253575e-18,2.222614453595284e-18,8.131516293641283e-19,1.7889335846010823e-18,2.168404344971009e-19,2.168404344971009e-19,0.0014880952658131719,7.262055119559432e-20,8.9867937500609e-18,1.1837149987053542e-18,-1.751970812133997e-18,0.004464285913854837,-1.0137290312739466e-17,-0.0014880952658131719,3.98685876486319e-18,-0.004464285913854837,2.168404344971009e-18,8.673617379884035e-19,-0.0,1.1926223897340549e-18,1.0842021724855044e-19,7.262055119559432e-20,0.0014880952658131719,-1.8265980130227656e-18,-6.157458550577491e-19,7.354455381583456e-18,0.0059523810632526875,-5.898059818321144e-17,-1.3877787807814457e-17,-0.0357142873108387,2.6237692574149207e-17,1.1384122811097797e-17,2.3852447794681098e-18,1.8865117801247777e-17,-1.3010426069826053e-18,2.168404344971009e-19,8.9867937500609e-18,-1.8265980130227656e-18,0.01785714365541935,3.1417945074667658e-18,-1.0909996118872202e-17,0.008928571827709675,-4.7704895589362195e-18,-8.673617379884035e-19,-0.008928571827709675,-0.008928571827709675,1.1926223897340549e-18,1.0842021724855044e-19,1.5178830414797062e-18,-1.3010426069826053e-18,1.0842021724855044e-19,1.1837149987053542e-18,-6.157458550577491e-19,3.1417945074667658e-18,0.008928571827709675,2.835068284911437e-18,0.0059523810632526875,-5.377642775528102e-17,-1.0408340855860843e-17,2.688821387764051e-17,-0.0357142873108387,1.0950441942103595e-17,1.7889335846010823e-18,-1.8431436932253575e-18,1.6371452804531117e-17,4.336808689942018e-19,-1.751970812133997e-18,7.354455381583456e-18,-1.0909996118872202e-17,2.835068284911437e-18,0.01785714365541935,4.0,7.0,3.0,4.0,0.09835813194513321,-0.03232142701745033,-0.02105654776096344,-0.03950892761349678,-0.03232142701745033,0.0029761905316263437,0.0026785715017467737,0.0053571430034935474,0.004285714123398066,0.0012400794075801969,0.0033482143189758062,0.0026785715017467737,0.004464285913854837,0.0053571430034935474,0.0029761905316263437,-0.03232142701745033,0.04238095134496689,0.0026785715017467737,0.0053571430034935474,0.004285714123398066,-0.008928571827709675,-0.0017857142956927419,-0.0035714285913854837,-0.0028571428265422583,-2.303929616531697e-18,-1.1167282376600696e-17,-8.023096076392733e-18,1.1275702593849246e-17,-5.421010862427522e-18,-6.5052130349130266e-18,-0.02105654776096344,0.0026785715017467737,0.01346726156771183,0.0033482143189758062,0.0026785715017467737,-1.8170109070052148e-17,-0.0008928571478463709,-2.168404344971009e-18,-3.2526065174565133e-18,-0.0014880952658131719,-0.0011160714784637094,-0.0008928571478463709,6.938893903907228e-18,-8.673617379884035e-19,-8.673617379884035e-19,-0.03950892761349678,0.0053571430034935474,0.0033482143189758062,0.08415178209543228,0.0053571430034935474,-2.430618779352971e-17,-2.532094360409802e-18,-0.0053571430034935474,7.914675859144182e-18,-4.336808689942018e-19,-0.0033482143189758062,3.3540121397130375e-19,-0.02678571455180645,-0.0053571430034935474,9.974659986866641e-18,-0.03232142701745033,0.004285714123398066,0.0026785715017467737,0.0053571430034935474,0.04238095134496689,-2.2278562971370326e-17,-4.694110596305217e-18,6.297606004003549e-18,-0.0028571428265422583,1.951563910473908e-18,4.336808689942018e-19,-0.0017857142956927419,2.0599841277224584e-17,-0.0035714285913854837,-0.008928571827709675,0.0029761905316263437,-0.008928571827709675,-1.8170109070052148e-17,-2.430618779352971e-17,-2.2278562971370326e-17,0.0029761905316263437,4.9060148304969076e-18,7.552912554147178e-18,4.060845521162689e-18,4.336808689942018e-19,2.8731357570865868e-18,2.0599841277224584e-18,-4.336808689942018e-19,2.2768245622195593e-18,2.1141942363467336e-18,0.0026785715017467737,-0.0017857142956927419,-0.0008928571478463709,-2.532094360409802e-18,-4.694110596305217e-18,4.9060148304969076e-18,0.0005952381179668009,1.0934219275930205e-18,1.0488985175320475e-18,1.6263032587282567e-19,7.047314121155779e-19,5.692061405548898e-19,-9.215718466126788e-19,3.2526065174565133e-19,2.710505431213761e-19,0.0053571430034935474,-0.0035714285913854837,-2.168404344971009e-18,-0.0053571430034935474,6.297606004003549e-18,7.552912554147178e-18,1.0934219275930205e-18,0.0035714285913854837,-2.168404344971009e-19,1.6263032587282567e-19,-3.2526065174565133e-19,-1.6263032587282567e-19,1.8973538018496328e-18,-1.734723475976807e-18,-1.1926223897340549e-18,0.004285714123398066,-0.0028571428265422583,-3.2526065174565133e-18,7.914675859144182e-18,-0.0028571428265422583,4.060845521162689e-18,1.0488985175320475e-18,-2.168404344971009e-19,0.0019047618843615055,5.421010862427522e-20,3.2526065174565133e-19,1.8973538018496328e-19,-4.174178364069192e-18,-1.6263032587282567e-19,8.402566836762659e-19,0.0012400794075801969,-2.303929616531697e-18,-0.0014880952658131719,-4.336808689942018e-19,1.951563910473908e-18,4.336808689942018e-19,1.6263032587282567e-19,1.6263032587282567e-19,5.421010862427522e-20,0.00024801588733680546,0.0,1.0842021724855044e-19,-1.0842021724855044e-18,0.0,-3.2526065174565133e-19,0.0033482143189758062,-1.1167282376600696e-17,-0.0011160714784637094,-0.0033482143189758062,4.336808689942018e-19,2.8731357570865868e-18,7.047314121155779e-19,-3.2526065174565133e-19,3.2526065174565133e-19,0.0,0.0011160714784637094,8.963130077289712e-20,1.452886601065316e-18,-5.807114990924665e-19,-2.4984563887160853e-19,0.0026785715017467737,-8.023096076392733e-18,-0.0008928571478463709,3.3540121397130375e-19,-0.0017857142956927419,2.0599841277224584e-18,5.692061405548898e-19,-1.6263032587282567e-19,1.8973538018496328e-19,1.0842021724855044e-19,8.963130077289712e-20,0.0005952381179668009,-7.55947643910294e-19,7.86047350533815e-19,1.6760433867198719e-18,0.004464285913854837,1.1275702593849246e-17,6.938893903907228e-18,-0.02678571455180645,2.0599841277224584e-17,-4.336808689942018e-19,-9.215718466126788e-19,1.8973538018496328e-18,-4.174178364069192e-18,-1.0842021724855044e-18,1.452886601065316e-18,-7.55947643910294e-19,0.013392857275903225,-9.644071878385842e-19,-3.2893110027773288e-18,0.0053571430034935474,-5.421010862427522e-18,-8.673617379884035e-19,-0.0053571430034935474,-0.0035714285913854837,2.2768245622195593e-18,3.2526065174565133e-19,-1.734723475976807e-18,-1.6263032587282567e-19,0.0,-5.807114990924665e-19,7.86047350533815e-19,-9.644071878385842e-19,0.0035714285913854837,-5.38118314990886e-19,0.0029761905316263437,-6.5052130349130266e-18,-8.673617379884035e-19,9.974659986866641e-18,-0.008928571827709675,2.1141942363467336e-18,2.710505431213761e-19,-1.1926223897340549e-18,8.402566836762659e-19,-3.2526065174565133e-19,-2.4984563887160853e-19,1.6760433867198719e-18,-3.2893110027773288e-18,-5.38118314990886e-19,0.0029761905316263437,4.0,7.0,3.0,5.0,0.08282596617937088,-0.026428570970892906,-0.017202381044626236,-0.03232142701745033,-0.022397959604859352,0.0023809524718672037,0.002142857061699033,0.004285714123398066,0.0028571428265422583,0.0009920635493472219,0.0026785715017467737,0.0017857142956927419,0.0035714285913854837,0.0035714285913854837,0.001700680237263441,-0.026428570970892906,0.034285712987184525,0.002142857061699033,0.004285714123398066,0.0028571428265422583,-0.0071428571827709675,-0.0014285714132711291,-0.0028571428265422583,-0.0019047618843615055,-1.8172690700743926e-18,-9.818921729857607e-18,-6.67744610051698e-18,-4.964283087206368e-17,-2.1054964322057386e-17,-1.7295310978356892e-17,-0.017202381044626236,0.002142857061699033,0.010892856866121292,0.0026785715017467737,0.0017857142956927419,-4.592698253206216e-18,-0.0007142857066355646,-1.0770976009223477e-17,-7.339254283466569e-18,-0.0011904762359336019,-0.0008928571478463709,-0.0005952381179668009,-2.962526518907232e-17,-1.3238291167527261e-17,-1.062874395725621e-17,-0.03232142701745033,0.004285714123398066,0.0026785715017467737,0.06803571432828903,0.0035714285913854837,-4.1187006838742406e-17,-6.791411736592086e-18,-0.004285714123398066,-1.6836116550549105e-17,-1.3660947373317356e-17,-0.0026785715017467737,-1.0531867045455836e-17,-0.02142857201397419,-0.0035714285913854837,-9.516197613900963e-18,-0.022397959604859352,0.0028571428265422583,0.0017857142956927419,0.0035714285913854837,0.021403061226010323,-2.5985260212255175e-17,-4.727079120389437e-18,-1.5244042025568293e-17,-0.0014285714132711291,-8.52697645525186e-18,-9.467685952516565e-18,-0.0008928571478463709,-1.9644149884705318e-17,-0.0017857142956927419,-0.003401360474526882,0.0023809524718672037,-0.0071428571827709675,-4.592698253206216e-18,-4.1187006838742406e-17,-2.5985260212255175e-17,0.0023809524718672037,5.946364643193373e-19,3.667512454497293e-18,2.4450081651347597e-18,-4.4056469836361075e-20,1.5860329011843016e-18,1.05735530192206e-18,1.0309214012794325e-17,3.965082408057119e-18,3.3986419458803e-18,0.002142857061699033,-0.0014285714132711291,-0.0007142857066355646,-6.791411736592086e-18,-4.727079120389437e-18,5.946364643193373e-19,0.0004761904710903764,6.779157676202573e-19,4.519438278472421e-19,-1.4907779871675686e-19,3.3881317890172014e-19,2.168404344971009e-19,9.516196993515503e-19,9.516196993515503e-19,4.531522353246055e-19,0.004285714123398066,-0.0028571428265422583,-1.0770976009223477e-17,-0.004285714123398066,-1.5244042025568293e-17,3.667512454497293e-18,6.779157676202573e-19,0.0028571428265422583,1.5225915603215112e-18,9.516196993515503e-19,1.6653344997146072e-18,9.516196993515503e-19,7.612957594812403e-18,2.2204459996194763e-18,1.812608941298422e-18,0.0028571428265422583,-0.0019047618843615055,-7.339254283466569e-18,-1.6836116550549105e-17,-0.0014285714132711291,2.4450081651347597e-18,4.519438278472421e-19,1.5225915603215112e-18,0.0009523809421807528,6.34413150133963e-19,9.516196993515503e-19,7.930164505921508e-19,3.806478797406201e-18,1.72499955428594e-18,1.812608941298422e-18,0.0009920635493472219,-1.8172690700743926e-18,-0.0011904762359336019,-1.3660947373317356e-17,-8.52697645525186e-18,-4.4056469836361075e-20,-1.4907779871675686e-19,9.516196993515503e-19,6.34413150133963e-19,0.00019841270113829523,5.963111948670274e-19,3.7947076036992655e-19,3.436404601999724e-18,1.3216941015531808e-18,1.1328806141609079e-18,0.0026785715017467737,-9.818921729857607e-18,-0.0008928571478463709,-0.0026785715017467737,-9.467685952516565e-18,1.5860329011843016e-18,3.3881317890172014e-19,1.6653344997146072e-18,9.516196993515503e-19,5.963111948670274e-19,0.0008928571478463709,5.963111948670274e-19,2.4248003495652424e-18,1.3232916975087504e-18,1.1328806141609079e-18,0.0017857142956927419,-6.67744610051698e-18,-0.0005952381179668009,-1.0531867045455836e-17,-0.0008928571478463709,1.05735530192206e-18,2.168404344971009e-19,9.516196993515503e-19,7.930164505921508e-19,3.7947076036992655e-19,5.963111948670274e-19,0.00029761905898340046,2.3790494034752407e-18,1.080448633660892e-18,9.150190251976103e-19,0.0035714285913854837,-4.964283087206368e-17,-2.962526518907232e-17,-0.02142857201397419,-1.9644149884705318e-17,1.0309214012794325e-17,9.516196993515503e-19,7.612957594812403e-18,3.806478797406201e-18,3.436404601999724e-18,2.4248003495652424e-18,2.3790494034752407e-18,0.010714286006987095,6.69360749018537e-32,1.69932097294015e-18,0.0035714285913854837,-2.1054964322057386e-17,-1.3238291167527261e-17,-0.0035714285913854837,-0.0017857142956927419,3.965082408057119e-18,9.516196993515503e-19,2.2204459996194763e-18,1.72499955428594e-18,1.3216941015531808e-18,1.3232916975087504e-18,1.080448633660892e-18,6.69360749018537e-32,0.0017857142956927419,2.377552669921251e-32,0.001700680237263441,-1.7295310978356892e-17,-1.062874395725621e-17,-9.516197613900963e-18,-0.003401360474526882,3.3986419458803e-18,4.531522353246055e-19,1.812608941298422e-18,1.812608941298422e-18,1.1328806141609079e-18,1.1328806141609079e-18,9.150190251976103e-19,1.69932097294015e-18,2.377552669921251e-32,0.0008503401186317205,4.0,7.0,3.0,6.0,0.07158683240413666,-0.022363945841789246,-0.014547902159392834,-0.027359694242477417,-0.01645408198237419,0.0019841270986944437,0.0017857142956927419,0.0035714285913854837,0.0020408162381500006,0.0008267195662483573,0.0022321429569274187,0.0012755101779475808,0.0029761905316263437,0.0025510203558951616,0.0010629252064973116,-0.022363945841789246,0.028798185288906097,0.0017857142956927419,0.0035714285913854837,0.0020408162381500006,-0.0059523810632526875,-0.0011904762359336019,-0.0023809524718672037,-0.0013605442363768816,2.8518008045348894e-19,-3.645705492008557e-20,3.3881317890172014e-21,1.5153678793759164e-33,4.041118152676706e-34,-1.9049804070973717e-19,-0.014547902159392834,0.0017857142956927419,0.009148242883384228,0.0022321429569274187,0.0012755101779475808,-0.0,-0.0005952381179668009,-0.0,-1.3552527156068805e-20,-0.0009920635493472219,-0.0007440476329065859,-0.00042517005931586027,4.81482486096809e-34,2.5256988454229414e-34,-5.0464017656349965e-20,-0.027359694242477417,0.0035714285913854837,0.0022321429569274187,0.05712159723043442,0.0025510203558951616,-0.0,-4.0657581468206416e-20,-0.0035714285913854837,5.040629838261095e-21,-5.421010862427522e-20,-0.0022321429569274187,-2.0328790734103208e-20,-0.01785714365541935,-0.0025510203558951616,3.904122092044105e-18,-0.01645408198237419,0.0020408162381500006,0.0012755101779475808,0.0025510203558951616,0.012427721172571182,-0.0,2.6731294691060086e-20,-0.0,-0.0008163265301845968,2.093629350171232e-20,-0.0,-0.0005102040595375001,1.1807246373933984e-17,-0.0010204081190750003,-0.0015943878097459674,0.0019841270986944437,-0.0059523810632526875,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-0.0005952381179668009,-4.0657581468206416e-20,2.6731294691060086e-20,-0.0,0.00039682540227659047,-0.0,-1.3848013953402835e-22,-9.486769009248164e-20,1.3552527156068805e-20,-6.776263578034403e-21,1.730148174714011e-35,0.0,-1.1415448892143197e-21,0.0035714285913854837,-0.0023809524718672037,-0.0,-0.0035714285913854837,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,-0.0013605442363768816,-1.3552527156068805e-20,5.040629838261095e-21,-0.0008163265301845968,-0.0,-1.3848013953402835e-22,-0.0,0.0005442177061922848,-2.3080025359300473e-22,-1.6802100134031623e-21,6.776263578034403e-21,-6.269089074620325e-34,-1.6164471921940604e-34,7.756906873731331e-20,0.0008267195662483573,2.8518008045348894e-19,-0.0009920635493472219,-5.421010862427522e-20,2.093629350171232e-20,-0.0,-9.486769009248164e-20,-0.0,-2.3080025359300473e-22,0.0001653439103392884,1.3552527156068805e-20,0.0,2.8835803390210057e-35,-0.0,-1.172619496044394e-21,0.0022321429569274187,-3.645705492008557e-20,-0.0007440476329065859,-0.0022321429569274187,-0.0,-0.0,1.3552527156068805e-20,-0.0,-1.6802100134031623e-21,1.3552527156068805e-20,0.0007440476329065859,6.776263578034403e-21,2.3414322138185968e-35,-0.0,-3.2816601540290587e-21,0.0012755101779475808,3.3881317890172014e-21,-0.00042517005931586027,-2.0328790734103208e-20,-0.0005102040595375001,-0.0,-6.776263578034403e-21,-0.0,6.776263578034403e-21,0.0,6.776263578034403e-21,0.0001700680295471102,-2.873126991479267e-34,-1.0102795381691766e-34,2.5232008828174983e-20,0.0029761905316263437,1.5153678793759164e-33,4.81482486096809e-34,-0.01785714365541935,1.1807246373933984e-17,-0.0,1.730148174714011e-35,-0.0,-6.269089074620325e-34,2.8835803390210057e-35,2.3414322138185968e-35,-2.873126991479267e-34,0.008928571827709675,-2.071553075769625e-18,-1.9471384941967493e-18,0.0025510203558951616,4.041118152676706e-34,2.5256988454229414e-34,-0.0025510203558951616,-0.0010204081190750003,-0.0,0.0,-0.0,-1.6164471921940604e-34,-0.0,-0.0,-1.0102795381691766e-34,-2.071553075769625e-18,0.0010204081190750003,1.3605097000076527e-34,0.0010629252064973116,-1.9049804070973717e-19,-5.0464017656349965e-20,3.904122092044105e-18,-0.0015943878097459674,-0.0,-1.1415448892143197e-21,-0.0,7.756906873731331e-20,-1.172619496044394e-21,-3.2816601540290587e-21,2.5232008828174983e-20,-1.9471384941967493e-18,1.3605097000076527e-34,0.0003188775444868952,4.0,7.0,3.0,7.0,0.06305980682373047,-0.019387755542993546,-0.012606292963027954,-0.02372448891401291,-0.012606292963027954,0.001700680237263441,0.0015306122368201613,0.0030612244736403227,0.0015306122368201613,0.0007086168043315411,0.0019132653251290321,0.0009566326625645161,0.0025510203558951616,0.0019132653251290321,0.0007086168043315411,-0.019387755542993546,0.024829931557178497,0.0015306122368201613,0.0030612244736403227,0.0015306122368201613,-0.005102040711790323,-0.0010204081190750003,-0.0020408162381500006,-0.0010204081190750003,1.542053879363965e-19,3.412223941345691e-19,6.098637220230962e-20,2.7189135153452095e-18,3.2541075917743556e-19,1.2900962157439614e-19,-0.012606292963027954,0.0015306122368201613,0.00788690522313118,0.0019132653251290321,0.0009566326625645161,-0.0,-0.0005102040595375001,3.398641894181512e-19,4.0657581468206416e-20,-0.0008503401186317205,-0.0006377550889737904,-0.0003188775444868952,1.69932097294015e-18,1.8973538018496328e-19,1.2614275574295513e-19,-0.02372448891401291,0.0030612244736403227,0.0019132653251290321,0.049234695732593536,0.0019132653251290321,-0.0,3.2022014893292864e-22,-0.0030612244736403227,2.4148268778233257e-19,-0.0,-0.0019132653251290321,-2.283774908542445e-20,-0.015306122601032257,-0.0019132653251290321,2.430130701432534e-18,-0.012606292963027954,0.0015306122368201613,0.0009566326625645161,0.0019132653251290321,0.00788690522313118,-0.0,-1.9203773402242806e-20,5.947623508688102e-19,-0.0005102040595375001,-1.8233724399955735e-21,2.168404344971009e-19,-0.0003188775444868952,1.0857736502132327e-17,-0.0006377550889737904,-0.0008503401186317205,0.001700680237263441,-0.005102040711790323,-0.0,-0.0,-0.0,0.001700680237263441,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015306122368201613,-0.0010204081190750003,-0.0005102040595375001,3.2022014893292864e-22,-1.9203773402242806e-20,-0.0,0.0003401360590942204,-0.0,1.6849888191710208e-21,-5.421010862427522e-20,-0.0,-0.0,-1.8777678515765091e-35,-1.0674004964430955e-22,2.5820047001994955e-21,0.0030612244736403227,-0.0020408162381500006,3.398641894181512e-19,-0.0030612244736403227,5.947623508688102e-19,-0.0,-0.0,0.0020408162381500006,-1.699320947090756e-19,-0.0,-3.398641894181512e-19,6.099471869171548e-36,-2.7189135153452095e-18,-3.398641894181512e-19,4.513898307157584e-34,0.0015306122368201613,-0.0010204081190750003,4.0657581468206416e-20,2.4148268778233257e-19,-0.0005102040595375001,-0.0,1.6849888191710208e-21,-1.699320947090756e-19,0.0003401360590942204,2.8083147322764333e-21,-4.5273774957916e-22,-2.0328790734103208e-20,6.496145451208746e-34,4.9245543455555276e-21,-4.558521269945844e-20,0.0007086168043315411,1.542053879363965e-19,-0.0008503401186317205,-0.0,-1.8233724399955735e-21,-0.0,-5.421010862427522e-20,-0.0,2.8083147322764333e-21,0.00014172335795592517,-0.0,-6.776263578034403e-21,-2.2275922153163372e-35,-1.7790007432599959e-22,-1.5899077550526433e-22,0.0019132653251290321,3.412223941345691e-19,-0.0006377550889737904,-0.0019132653251290321,2.168404344971009e-19,-0.0,-0.0,-3.398641894181512e-19,-4.5273774957916e-22,-0.0,0.0006377550889737904,-0.0,-1.69932097294015e-18,-2.1125666809433531e-19,-7.54562899136234e-22,0.0009566326625645161,6.098637220230962e-20,-0.0003188775444868952,-2.283774908542445e-20,-0.0003188775444868952,-0.0,-0.0,6.099471869171548e-36,-2.0328790734103208e-20,-6.776263578034403e-21,-0.0,0.00010629251482896507,2.9850436964046454e-34,7.612582759210294e-21,-4.2742587137374356e-20,0.0025510203558951616,2.7189135153452095e-18,1.69932097294015e-18,-0.015306122601032257,1.0857736502132327e-17,-0.0,-1.8777678515765091e-35,-2.7189135153452095e-18,6.496145451208746e-34,-2.2275922153163372e-35,-1.69932097294015e-18,2.9850436964046454e-34,0.0076530613005161285,-3.494012148194908e-18,-1.2272873578570443e-18,0.0019132653251290321,3.2541075917743556e-19,1.8973538018496328e-19,-0.0019132653251290321,-0.0006377550889737904,-0.0,-1.0674004964430955e-22,-3.398641894181512e-19,4.9245543455555276e-21,-1.7790007432599959e-22,-2.1125666809433531e-19,7.612582759210294e-21,-3.494012148194908e-18,0.0006377550889737904,8.902591927119481e-21,0.0007086168043315411,1.2900962157439614e-19,1.2614275574295513e-19,2.430130701432534e-18,-0.0008503401186317205,-0.0,2.5820047001994955e-21,4.513898307157584e-34,-4.558521269945844e-20,-1.5899077550526433e-22,-7.54562899136234e-22,-4.2742587137374356e-20,-1.2272873578570443e-18,8.902591927119481e-21,0.00014172335795592517,4.0,7.0,3.0,8.0,0.0563616082072258,-0.01711309514939785,-0.01112351194024086,-0.02094493992626667,-0.00997023843228817,0.0014880952658131719,0.0013392857508733869,0.0026785715017467737,0.0011904762359336019,0.0006200397037900984,0.0016741071594879031,0.0007440476329065859,0.0022321429569274187,0.0014880952658131719,0.0004960317746736109,-0.01711309514939785,0.02182539738714695,0.0013392857508733869,0.0026785715017467737,0.0011904762359336019,-0.004464285913854837,-0.0008928571478463709,-0.0017857142956927419,-0.0007936508045531809,5.103794044538112e-21,-1.749221554583555e-20,4.2641047486009204e-20,-1.7126510044389247e-33,2.714220129468508e-34,1.2585178203779253e-19,-0.01112351194024086,0.0013392857508733869,0.006932043470442295,0.0016741071594879031,0.0007440476329065859,-7.434529256613157e-19,-0.00044642857392318547,-2.973811754344051e-19,-6.776263578034403e-20,-0.0007440476329065859,-0.0005580357392318547,-0.00024801588733680546,-1.2518544638517033e-33,1.6963874661234474e-34,9.473983898905391e-20,-0.02094493992626667,0.0026785715017467737,0.0016741071594879031,0.04326637089252472,0.0014880952658131719,-1.4869058513226313e-18,-3.177099661685083e-19,-0.0026785715017467737,2.4313503921704406e-21,-5.421010862427522e-20,-0.0016741071594879031,-1.0164395367051604e-20,-0.013392857275903225,-0.0014880952658131719,1.6556633107877904e-18,-0.00997023843228817,0.0011904762359336019,0.0007440476329065859,0.0014880952658131719,0.005328798200935125,-6.608470507765904e-19,-1.2973199581839928e-19,-5.28699017680219e-34,-0.0003401360590942204,2.8330986467039132e-21,-0.0,-0.00021258502965793014,7.07713232787709e-18,-0.00042517005931586027,-0.0004960317746736109,0.0014880952658131719,-0.004464285913854837,-7.434529256613157e-19,-1.4869058513226313e-18,-6.608470507765904e-19,0.0014880952658131719,4.956353010071399e-19,9.912706020142797e-19,4.405647177506564e-19,2.407412430484045e-35,9.71013004598016e-36,-2.3670535997818626e-35,0.0,-0.0,-7.488054561109589e-35,0.0013392857508733869,-0.0008928571478463709,-0.00044642857392318547,-3.177099661685083e-19,-1.2973199581839928e-19,4.956353010071399e-19,0.00029761905898340046,1.982541126480377e-19,8.723800230449126e-20,-0.0,6.776263578034403e-21,3.3881317890172014e-21,5.131069790777192e-36,-0.0,-1.4910532347475699e-21,0.0026785715017467737,-0.0017857142956927419,-2.973811754344051e-19,-0.0026785715017467737,-5.28699017680219e-34,9.912706020142797e-19,1.982541126480377e-19,0.0017857142956927419,3.515872149652028e-34,1.2037062152420224e-35,6.018531076210112e-36,4.513898307157584e-36,0.0,-0.0,-1.6144258713996786e-36,0.0011904762359336019,-0.0007936508045531809,-6.776263578034403e-20,2.4313503921704406e-21,-0.0003401360590942204,4.405647177506564e-19,8.723800230449126e-20,3.515872149652028e-34,0.00022675737272948027,-1.4582268265933766e-21,-8.1045014755251285e-22,-1.508727030978145e-20,4.849307712242973e-34,-7.754914163648437e-35,-3.4679605342422505e-20,0.0006200397037900984,5.103794044538112e-21,-0.0007440476329065859,-5.421010862427522e-20,2.8330986467039132e-21,2.407412430484045e-35,-0.0,1.2037062152420224e-35,-1.4582268265933766e-21,0.00012400794366840273,1.3552527156068805e-20,0.0,8.551782386741309e-36,0.0,-1.0638639257199066e-21,0.0016741071594879031,-1.749221554583555e-20,-0.0005580357392318547,-0.0016741071594879031,-0.0,9.71013004598016e-36,6.776263578034403e-21,6.018531076210112e-36,-8.1045014755251285e-22,1.3552527156068805e-20,0.0005580357392318547,3.3881317890172014e-21,6.14733896914946e-36,-0.0,-1.1819063957609882e-21,0.0007440476329065859,4.2641047486009204e-20,-0.00024801588733680546,-1.0164395367051604e-20,-0.00021258502965793014,-2.3670535997818626e-35,3.3881317890172014e-21,4.513898307157584e-36,-1.508727030978145e-20,0.0,3.3881317890172014e-21,7.086167897796258e-05,3.3783540042852055e-34,-4.846821495773236e-35,-2.4116066249245655e-20,0.0022321429569274187,-1.7126510044389247e-33,-1.2518544638517033e-33,-0.013392857275903225,7.07713232787709e-18,0.0,5.131069790777192e-36,0.0,4.849307712242973e-34,8.551782386741309e-36,6.14733896914946e-36,3.3783540042852055e-34,0.0066964286379516125,-1.2947207757535922e-18,-8.260588005460409e-19,0.0014880952658131719,2.714220129468508e-34,1.6963874661234474e-34,-0.0014880952658131719,-0.00042517005931586027,-0.0,-0.0,-0.0,-7.754914163648437e-35,0.0,-0.0,-4.846821495773236e-35,-1.2947207757535922e-18,0.00042517005931586027,4.66218077801501e-35,0.0004960317746736109,1.2585178203779253e-19,9.473983898905391e-20,1.6556633107877904e-18,-0.0004960317746736109,-7.488054561109589e-35,-1.4910532347475699e-21,-1.6144258713996786e-36,-3.4679605342422505e-20,-1.0638639257199066e-21,-1.1819063957609882e-21,-2.4116066249245655e-20,-8.260588005460409e-19,4.66218077801501e-35,7.086167897796258e-05,4.0,7.0,4.0,3.0,0.09835813194513321,-0.03232142701745033,-0.02105654776096344,-0.03232142701745033,-0.03950892761349678,0.0029761905316263437,0.0026785715017467737,0.004285714123398066,0.0053571430034935474,0.0012400794075801969,0.0026785715017467737,0.0033482143189758062,0.0029761905316263437,0.0053571430034935474,0.004464285913854837,-0.03232142701745033,0.04238095134496689,0.0026785715017467737,0.004285714123398066,0.0053571430034935474,-0.008928571827709675,-0.0017857142956927419,-0.0028571428265422583,-0.0035714285913854837,-3.0086610286472748e-18,-8.239936510889834e-18,-1.214306433183765e-17,-3.469446951953614e-18,-4.7704895589362195e-18,9.540979117872439e-18,-0.02105654776096344,0.0026785715017467737,0.01346726156771183,0.0026785715017467737,0.0033482143189758062,-1.832022580761827e-17,-0.0008928571478463709,-3.469446951953614e-18,-2.168404344971009e-18,-0.0014880952658131719,-0.0008928571478463709,-0.0011160714784637094,8.673617379884035e-19,-1.3010426069826053e-18,6.938893903907228e-18,-0.03232142701745033,0.004285714123398066,0.0026785715017467737,0.04238095134496689,0.0053571430034935474,-2.2353206095485886e-17,-4.3897676878898065e-18,-0.0028571428265422583,4.9873299934333204e-18,1.5178830414797062e-18,-0.0017857142956927419,-2.424334440085222e-18,-0.008928571827709675,-0.0035714285913854837,-1.0408340855860843e-17,-0.03950892761349678,0.0053571430034935474,0.0033482143189758062,0.0053571430034935474,0.08415178209543228,-2.2475915030635678e-17,-3.201687140104127e-18,5.0819739311701064e-18,-0.0053571430034935474,6.505213034913027e-19,-2.2768245622195593e-18,-0.0033482143189758062,-1.1817803680091998e-17,-0.0053571430034935474,-0.02678571455180645,0.0029761905316263437,-0.008928571827709675,-1.832022580761827e-17,-2.2353206095485886e-17,-2.2475915030635678e-17,0.0029761905316263437,4.87890977618477e-18,4.162867909963448e-18,7.535644331679521e-18,7.589415207398531e-19,2.168404344971009e-18,2.8189256484623115e-18,2.0599841277224584e-18,2.1141942363467336e-18,-1.0299920638612292e-18,0.0026785715017467737,-0.0017857142956927419,-0.0008928571478463709,-4.3897676878898065e-18,-3.201687140104127e-18,4.87890977618477e-18,0.0005952381179668009,1.1653422833247857e-18,1.1029627321757837e-18,1.0842021724855044e-19,5.963111948670274e-19,7.860465750519907e-19,1.3552527156068805e-19,3.7947076036992655e-19,-7.589415207398531e-19,0.004285714123398066,-0.0028571428265422583,-3.469446951953614e-18,-0.0028571428265422583,5.0819739311701064e-18,4.162867909963448e-18,1.1653422833247857e-18,0.0019047618843615055,2.710505431213761e-19,1.6263032587282567e-19,-8.131516293641283e-20,5.421010862427522e-19,-3.5236570605778894e-19,-7.047314121155779e-19,-3.2526065174565133e-18,0.0053571430034935474,-0.0035714285913854837,-2.168404344971009e-18,4.9873299934333204e-18,-0.0053571430034935474,7.535644331679521e-18,1.1029627321757837e-18,2.710505431213761e-19,0.0035714285913854837,2.168404344971009e-19,-1.3552527156068805e-19,-0.0,-1.0299920638612292e-18,-1.5720931501039814e-18,4.2825985813177425e-18,0.0012400794075801969,-3.0086610286472748e-18,-0.0014880952658131719,1.5178830414797062e-18,6.505213034913027e-19,7.589415207398531e-19,1.0842021724855044e-19,1.6263032587282567e-19,2.168404344971009e-19,0.00024801588733680546,-5.421010862427522e-20,1.6263032587282567e-19,-5.421010862427522e-19,5.421010862427522e-20,-1.3010426069826053e-18,0.0026785715017467737,-8.239936510889834e-18,-0.0008928571478463709,-0.0017857142956927419,-2.2768245622195593e-18,2.168404344971009e-18,5.963111948670274e-19,-8.131516293641283e-20,-1.3552527156068805e-19,-5.421010862427522e-20,0.0005952381179668009,5.650044766334267e-19,1.0188407386258253e-18,7.869428252456919e-19,-1.9112128252720466e-19,0.0033482143189758062,-1.214306433183765e-17,-0.0011160714784637094,-2.424334440085222e-18,-0.0033482143189758062,2.8189256484623115e-18,7.860465750519907e-19,5.421010862427522e-19,-0.0,1.6263032587282567e-19,5.650044766334267e-19,0.0011160714784637094,-2.749520568027561e-20,-2.4420522352158015e-19,3.0255005647624762e-18,0.0029761905316263437,-3.469446951953614e-18,8.673617379884035e-19,-0.008928571827709675,-1.1817803680091998e-17,2.0599841277224584e-18,1.3552527156068805e-19,-3.5236570605778894e-19,-1.0299920638612292e-18,-5.421010862427522e-19,1.0188407386258253e-18,-2.749520568027561e-20,0.0029761905316263437,3.1110180120058116e-18,4.394109972515404e-18,0.0053571430034935474,-4.7704895589362195e-18,-1.3010426069826053e-18,-0.0035714285913854837,-0.0053571430034935474,2.1141942363467336e-18,3.7947076036992655e-19,-7.047314121155779e-19,-1.5720931501039814e-18,5.421010862427522e-20,7.869428252456919e-19,-2.4420522352158015e-19,3.1110180120058116e-18,0.0035714285913854837,4.0735282679046585e-18,0.004464285913854837,9.540979117872439e-18,6.938893903907228e-18,-1.0408340855860843e-17,-0.02678571455180645,-1.0299920638612292e-18,-7.589415207398531e-19,-3.2526065174565133e-18,4.2825985813177425e-18,-1.3010426069826053e-18,-1.9112128252720466e-19,3.0255005647624762e-18,4.394109972515404e-18,4.0735282679046585e-18,0.013392857275903225,4.0,7.0,4.0,4.0,0.07947172969579697,-0.025044642388820648,-0.01629464328289032,-0.025044642388820648,-0.025044642388820648,0.0022321429569274187,0.002008928684517741,0.003214285708963871,0.003214285708963871,0.0009300595265813172,0.002008928684517741,0.002008928684517741,0.0022321429569274187,0.003214285708963871,0.0022321429569274187,-0.025044642388820648,0.03232142701745033,0.002008928684517741,0.003214285708963871,0.003214285708963871,-0.0066964286379516125,-0.0013392857508733869,-0.002142857061699033,-0.002142857061699033,-1.9786689647860456e-18,-8.077306185017008e-18,-7.643625316022806e-18,-1.1275702593849246e-17,-7.589415207398531e-18,-1.1709383462843448e-17,-0.01629464328289032,0.002008928684517741,0.01026785746216774,0.002008928684517741,0.002008928684517741,-1.0201584580211376e-17,-0.0006696428754366934,-3.2526065174565133e-18,-3.0357660829594124e-18,-0.0011160714784637094,-0.0006696428754366934,-0.0006696428754366934,-9.974659986866641e-18,-6.5052130349130266e-18,-1.1275702593849246e-17,-0.025044642388820648,0.003214285708963871,0.002008928684517741,0.03232142701745033,0.003214285708963871,-1.3060074277372098e-17,-7.371846026781771e-18,-0.002142857061699033,-3.74049749507499e-18,-6.505213034913027e-19,-0.0013392857508733869,-9.03542617981473e-18,-0.0066964286379516125,-0.002142857061699033,-2.1250362580715887e-17,-0.025044642388820648,0.003214285708963871,0.002008928684517741,0.003214285708963871,0.03232142701745033,-1.3651309064819888e-17,-7.795817449745825e-18,-5.072953526590216e-18,-0.002142857061699033,-2.2768245622195593e-18,-8.72782748850831e-18,-0.0013392857508733869,-2.3960868011929648e-17,-0.002142857061699033,-0.0066964286379516125,0.0022321429569274187,-0.0066964286379516125,-1.0201584580211376e-17,-1.3060074277372098e-17,-1.3651309064819888e-17,0.0022321429569274187,2.032879073410321e-18,1.6566757798575553e-18,1.7053438817753018e-18,1.6263032587282567e-19,1.4365678785432934e-18,1.463672932855431e-18,1.3823577699190182e-18,9.75781955236954e-19,1.5178830414797062e-18,0.002008928684517741,-0.0013392857508733869,-0.0006696428754366934,-7.371846026781771e-18,-7.795817449745825e-18,2.032879073410321e-18,0.00044642857392318547,7.051464499879264e-19,8.840340802222927e-19,5.421010862427522e-20,5.827586677109586e-19,5.963111948670274e-19,1.0570971181733668e-18,6.776263578034403e-19,1.1384122811097797e-18,0.003214285708963871,-0.002142857061699033,-3.2526065174565133e-18,-0.002142857061699033,-5.072953526590216e-18,1.6566757798575553e-18,7.051464499879264e-19,0.0014285714132711291,8.131516293641283e-20,-0.0,7.860465750519907e-19,3.5236570605778894e-19,2.168404344971009e-18,1.0570971181733668e-18,7.589415207398531e-19,0.003214285708963871,-0.002142857061699033,-3.0357660829594124e-18,-3.74049749507499e-18,-0.002142857061699033,1.7053438817753018e-18,8.840340802222927e-19,8.131516293641283e-20,0.0014285714132711291,-0.0,2.981555974335137e-19,4.87890977618477e-19,5.963111948670274e-19,4.87890977618477e-19,1.2468324983583301e-18,0.0009300595265813172,-1.9786689647860456e-18,-0.0011160714784637094,-6.505213034913027e-19,-2.2768245622195593e-18,1.6263032587282567e-19,5.421010862427522e-20,-0.0,-0.0,0.00018601190822664648,8.131516293641283e-20,1.3552527156068805e-19,5.421010862427522e-20,2.168404344971009e-19,1.6263032587282567e-19,0.002008928684517741,-8.077306185017008e-18,-0.0006696428754366934,-0.0013392857508733869,-8.72782748850831e-18,1.4365678785432934e-18,5.827586677109586e-19,7.860465750519907e-19,2.981555974335137e-19,8.131516293641283e-20,0.00044642857392318547,6.216349674288204e-19,3.3358636936760475e-18,1.2574442950391963e-18,1.379874573720134e-18,0.002008928684517741,-7.643625316022806e-18,-0.0006696428754366934,-9.03542617981473e-18,-0.0013392857508733869,1.463672932855431e-18,5.963111948670274e-19,3.5236570605778894e-19,4.87890977618477e-19,1.3552527156068805e-19,6.216349674288204e-19,0.00044642857392318547,1.3674837183368193e-18,1.4387051064509773e-18,3.702279682823509e-18,0.0022321429569274187,-1.1275702593849246e-17,-9.974659986866641e-18,-0.0066964286379516125,-2.3960868011929648e-17,1.3823577699190182e-18,1.0570971181733668e-18,2.168404344971009e-18,5.963111948670274e-19,5.421010862427522e-20,3.3358636936760475e-18,1.3674837183368193e-18,0.0022321429569274187,5.0998794962997356e-18,3.396039428878055e-18,0.003214285708963871,-7.589415207398531e-18,-6.5052130349130266e-18,-0.002142857061699033,-0.002142857061699033,9.75781955236954e-19,6.776263578034403e-19,1.0570971181733668e-18,4.87890977618477e-19,2.168404344971009e-19,1.2574442950391963e-18,1.4387051064509773e-18,5.0998794962997356e-18,0.0014285714132711291,3.0512738582884034e-18,0.0022321429569274187,-1.1709383462843448e-17,-1.1275702593849246e-17,-2.1250362580715887e-17,-0.0066964286379516125,1.5178830414797062e-18,1.1384122811097797e-18,7.589415207398531e-19,1.2468324983583301e-18,1.6263032587282567e-19,1.379874573720134e-18,3.702279682823509e-18,3.396039428878055e-18,3.0512738582884034e-18,0.0022321429569274187,4.0,7.0,4.0,5.0,0.06678911298513412,-0.02046428620815277,-0.013303571380674839,-0.02046428620815277,-0.017334183678030968,0.0017857142956927419,0.0016071428544819355,0.0025714286603033543,0.002142857061699033,0.0007440476329065859,0.0016071428544819355,0.0013392857508733869,0.0017857142956927419,0.002142857061699033,0.0012755101779475808,-0.02046428620815277,0.02614285796880722,0.0016071428544819355,0.0025714286603033543,0.002142857061699033,-0.0053571430034935474,-0.0010714285308495164,-0.001714285695925355,-0.0014285714132711291,-4.0657581468206416e-20,0.0,-0.0,-0.0,-0.0,-0.0,-0.013303571380674839,0.0016071428544819355,0.008303571492433548,0.0016071428544819355,0.0013392857508733869,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0008928571478463709,-0.0005357142654247582,-0.00044642857392318547,-0.0,-0.0,-0.0,-0.02046428620815277,0.0025714286603033543,0.0016071428544819355,0.02614285796880722,0.002142857061699033,-0.0,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0010714285308495164,-6.79728398223348e-21,-0.0053571430034935474,-0.0014285714132711291,-0.0,-0.017334183678030968,0.002142857061699033,0.0013392857508733869,0.002142857061699033,0.016320152208209038,-0.0,-0.0,-0.0,-0.0010714285308495164,1.568603941529313e-21,-6.79728398223348e-21,-0.0006696428754366934,-0.0,-0.0010714285308495164,-0.0025510203558951616,0.0017857142956927419,-0.0053571430034935474,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0016071428544819355,-0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025714286603033543,-0.001714285695925355,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-4.0657581468206416e-20,-0.0008928571478463709,-0.0,1.568603941529313e-21,-0.0,1.3552527156068805e-20,-0.0,-0.0,0.00014880952949170023,-0.0,0.0,0.0,0.0,-0.0,0.0016071428544819355,0.0,-0.0005357142654247582,-0.0010714285308495164,-6.79728398223348e-21,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,2.2657611927788988e-21,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0,-0.00044642857392318547,-6.79728398223348e-21,-0.0006696428754366934,-0.0,-0.0,-0.0,-0.0,0.0,2.2657611927788988e-21,0.00022321428696159273,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,0.002142857061699033,-0.0,-0.0,-0.0014285714132711291,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,0.0012755101779475808,-0.0,-0.0,-0.0,-0.0025510203558951616,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,4.0,7.0,4.0,6.0,0.05764526501297951,-0.0173086728900671,-0.011245748028159142,-0.0173086728900671,-0.012723213993012905,0.0014880952658131719,0.0013392857508733869,0.002142857061699033,0.0015306122368201613,0.0006200397037900984,0.0013392857508733869,0.0009566326625645161,0.0014880952658131719,0.0015306122368201613,0.0007971939048729837,-0.0173086728900671,0.021955782547593117,0.0013392857508733869,0.002142857061699033,0.0015306122368201613,-0.004464285913854837,-0.0008928571478463709,-0.0014285714132711291,-0.0010204081190750003,-7.723696379930894e-21,-2.567409647590623e-19,-4.8658767055286874e-20,-1.1895247017376204e-18,-3.769253446793419e-19,-1.9960485981424558e-19,-0.011245748028159142,0.0013392857508733869,0.00697278929874301,0.0013392857508733869,0.0009566326625645161,-7.434529256613157e-19,-0.00044642857392318547,-4.758098496757752e-19,-2.303929616531697e-19,-0.0007440476329065859,-0.00044642857392318547,-0.0003188775444868952,-7.434529256613157e-19,-2.303929616531697e-19,-1.2605181757436258e-19,-0.0173086728900671,0.002142857061699033,0.0013392857508733869,0.021955782547593117,0.0015306122368201613,-1.1895247017376204e-18,-2.5883629079884153e-19,-0.0014285714132711291,-3.7441094826172797e-19,-0.0,-0.0008928571478463709,-5.756568956371875e-20,-0.004464285913854837,-0.0010204081190750003,-2.40776585731942e-19,-0.012723213993012905,0.0015306122368201613,0.0009566326625645161,0.0015306122368201613,0.009473851881921291,-8.49660486470075e-19,-2.0593860761395826e-19,-5.437826927292842e-19,-0.0006122448830865324,-5.047090005754035e-20,-1.6263032587282567e-19,-0.00038265305920504034,-8.49660486470075e-19,-0.0006122448830865324,-0.001195790828205645,0.0014880952658131719,-0.004464285913854837,-7.434529256613157e-19,-1.1895247017376204e-18,-8.49660486470075e-19,0.0014880952658131719,4.956353010071399e-19,7.930164505921508e-19,5.664403070804539e-19,2.407412430484045e-35,1.425198738295712e-34,2.701104356098779e-35,6.60318844635302e-34,2.0923558376459303e-34,9.575108620767948e-35,0.0013392857508733869,-0.0008928571478463709,-0.00044642857392318547,-2.5883629079884153e-19,-2.0593860761395826e-19,4.956353010071399e-19,0.00029761905898340046,1.5860328753349075e-19,1.1514174473448856e-19,-0.0,6.776263578034403e-21,3.3881317890172014e-21,1.2157973914605537e-34,2.410273745344265e-22,4.183055588854929e-21,0.002142857061699033,-0.0014285714132711291,-4.758098496757752e-19,-0.0014285714132711291,-5.437826927292842e-19,7.930164505921508e-19,1.5860328753349075e-19,0.0009523809421807528,1.8126090188466044e-19,6.018531076210112e-36,1.5860328753349075e-19,1.504632769052528e-35,7.930164505921508e-19,1.8126090188466044e-19,7.824090399073146e-35,0.0015306122368201613,-0.0010204081190750003,-2.303929616531697e-19,-3.7441094826172797e-19,-0.0006122448830865324,5.664403070804539e-19,1.1514174473448856e-19,1.8126090188466044e-19,0.0004081632650922984,3.089478592362036e-21,-5.970988913378217e-22,1.5397748998411535e-20,2.1098300662661325e-34,4.1724360115064257e-20,7.48222733416632e-20,0.0006200397037900984,-7.723696379930894e-21,-0.0007440476329065859,-0.0,-5.047090005754035e-20,2.407412430484045e-35,-0.0,6.018531076210112e-36,3.089478592362036e-21,0.00012400794366840273,-0.0,0.0,-5.9068515795014505e-36,4.0171230771974347e-22,4.695836078907131e-21,0.0013392857508733869,-2.567409647590623e-19,-0.00044642857392318547,-0.0008928571478463709,-1.6263032587282567e-19,1.425198738295712e-34,6.776263578034403e-21,1.5860328753349075e-19,-5.970988913378217e-22,-0.0,0.00029761905898340046,-0.0,4.956353010071399e-19,1.1323639881695802e-19,-1.1662087453229122e-21,0.0009566326625645161,-4.8658767055286874e-20,-0.0003188775444868952,-5.756568956371875e-20,-0.00038265305920504034,2.701104356098779e-35,3.3881317890172014e-21,1.504632769052528e-35,1.5397748998411535e-20,0.0,-0.0,0.00012755101488437504,2.2923967941380001e-35,2.3026276794839782e-20,3.640144641093699e-20,0.0014880952658131719,-1.1895247017376204e-18,-7.434529256613157e-19,-0.004464285913854837,-8.49660486470075e-19,6.60318844635302e-34,1.2157973914605537e-34,7.930164505921508e-19,2.1098300662661325e-34,-5.9068515795014505e-36,4.956353010071399e-19,2.2923967941380001e-35,0.0014880952658131719,5.664403070804539e-19,1.2160164191188905e-34,0.0015306122368201613,-3.769253446793419e-19,-2.303929616531697e-19,-0.0010204081190750003,-0.0006122448830865324,2.0923558376459303e-34,2.410273745344265e-22,1.8126090188466044e-19,4.1724360115064257e-20,4.0171230771974347e-22,1.1323639881695802e-19,2.3026276794839782e-20,5.664403070804539e-19,0.0004081632650922984,9.771008301001844e-20,0.0007971939048729837,-1.9960485981424558e-19,-1.2605181757436258e-19,-2.40776585731942e-19,-0.001195790828205645,9.575108620767948e-35,4.183055588854929e-21,7.824090399073146e-35,7.48222733416632e-20,4.695836078907131e-21,-1.1662087453229122e-21,3.640144641093699e-20,1.2160164191188905e-34,9.771008301001844e-20,0.00023915816564112902,4.0,7.0,4.0,7.0,0.05072597786784172,-0.014999999664723873,-0.009741709567606449,-0.014999999664723873,-0.009741709567606449,0.0012755101779475808,0.0011479591485112906,0.001836734707467258,0.0011479591485112906,0.0005314626032486558,0.0011479591485112906,0.000717474496923387,0.0012755101779475808,0.0011479591485112906,0.0005314626032486558,-0.014999999664723873,0.018928570672869682,0.0011479591485112906,0.001836734707467258,0.0011479591485112906,-0.0038265306502580643,-0.0007653061184100807,-0.0012244897661730647,-0.0007653061184100807,-1.049958342691881e-18,3.275709413471178e-19,-1.2181527797344014e-20,-3.1939141238879664e-18,4.03596284266254e-19,-9.957977615067824e-19,-0.009741709567606449,0.0011479591485112906,0.00601084204390645,0.0011479591485112906,0.000717474496923387,7.349996567889066e-19,-0.00038265305920504034,-8.703297654238204e-19,-7.318364664277155e-19,-0.0006377550889737904,-0.00038265305920504034,-0.00023915816564112902,-2.027786329173985e-18,2.1006417091906648e-19,-5.430542568023547e-19,-0.014999999664723873,0.001836734707467258,0.0011479591485112906,0.018928570672869682,0.0011479591485112906,1.0287250299579511e-18,-1.3308891446398968e-18,-0.0012244897661730647,-1.2519662914325639e-18,1.8973538018496328e-19,-0.0007653061184100807,-9.22830195119525e-19,-0.0038265306502580643,-0.0007653061184100807,-9.916251523043353e-19,-0.009741709567606449,0.0011479591485112906,0.000717474496923387,0.0011479591485112906,0.00601084204390645,7.349996567889066e-19,-7.284456980004958e-19,-8.780981287490356e-19,-0.00038265305920504034,1.273722304765445e-19,-7.386127300057499e-19,-0.00023915816564112902,-9.855628489925107e-19,-0.00038265305920504034,-0.0006377550889737904,0.0012755101779475808,-0.0038265306502580643,7.349996567889066e-19,1.0287250299579511e-18,7.349996567889066e-19,0.0012755101779475808,-2.9882615656695866e-19,-4.781218711866492e-19,-2.9882615656695866e-19,2.360167946168558e-20,-8.49660473545378e-20,-5.310378040437969e-20,1.4161007677011348e-19,-8.49660473545378e-20,2.360167946168558e-20,0.0011479591485112906,-0.0007653061184100807,-0.00038265305920504034,-1.3308891446398968e-18,-7.284456980004958e-19,-2.9882615656695866e-19,0.00025510202976875007,3.9396502619103844e-20,2.347127411499917e-20,1.5585406229479126e-19,6.776263578034403e-20,4.743384504624082e-20,4.248302432350375e-19,-6.88560813084339e-22,1.1324049594592957e-19,0.001836734707467258,-0.0012244897661730647,-8.703297654238204e-19,-0.0012244897661730647,-8.780981287490356e-19,-4.781218711866492e-19,3.9396502619103844e-20,0.0008163265301845968,3.9396502619103844e-20,1.8126090188466044e-19,-4.827458689719574e-20,4.333342374871281e-34,2.977857701515201e-19,-4.3095702786055e-20,1.8126090188466044e-19,0.0011479591485112906,-0.0007653061184100807,-7.318364664277155e-19,-1.2519662914325639e-18,-0.00038265305920504034,-2.9882615656695866e-19,2.347127411499917e-20,3.9396502619103844e-20,0.00025510202976875007,1.1136883178896642e-19,1.2323433600068844e-22,5.2213469108982673e-20,4.248302432350375e-19,4.064320274271477e-20,1.3592887107612858e-19,0.0005314626032486558,-1.049958342691881e-18,-0.0006377550889737904,1.8973538018496328e-19,1.273722304765445e-19,2.360167946168558e-20,1.5585406229479126e-19,1.8126090188466044e-19,1.1136883178896642e-19,0.00010629251482896507,-4.0657581468206416e-20,-2.0328790734103208e-20,-2.360167946168558e-20,-5.779163265556791e-20,-1.6341726867222196e-20,0.0011479591485112906,3.275709413471178e-19,-0.00038265305920504034,-0.0007653061184100807,-7.386127300057499e-19,-8.49660473545378e-20,6.776263578034403e-20,-4.827458689719574e-20,1.2323433600068844e-22,-4.0657581468206416e-20,0.00025510202976875007,2.879912020664621e-20,5.848029411973069e-19,6.561077711557561e-20,1.1349345811700594e-19,0.000717474496923387,-1.2181527797344014e-20,-0.00023915816564112902,-9.22830195119525e-19,-0.00023915816564112902,-5.310378040437969e-20,4.743384504624082e-20,4.333342374871281e-34,5.2213469108982673e-20,-2.0328790734103208e-20,2.879912020664621e-20,7.97193861217238e-05,2.6551890202189845e-19,5.577505679504312e-20,1.2010383320813225e-19,0.0012755101779475808,-3.1939141238879664e-18,-2.027786329173985e-18,-0.0038265306502580643,-9.855628489925107e-19,1.4161007677011348e-19,4.248302432350375e-19,2.977857701515201e-19,4.248302432350375e-19,-2.360167946168558e-20,5.848029411973069e-19,2.6551890202189845e-19,0.0012755101779475808,-2.9882615656695866e-19,2.360167946168558e-20,0.0011479591485112906,4.03596284266254e-19,2.1006417091906648e-19,-0.0007653061184100807,-0.00038265305920504034,-8.49660473545378e-20,-6.88560813084339e-22,-4.3095702786055e-20,4.064320274271477e-20,-5.779163265556791e-20,6.561077711557561e-20,5.577505679504312e-20,-2.9882615656695866e-19,0.00025510202976875007,1.3428505640383257e-19,0.0005314626032486558,-9.957977615067824e-19,-5.430542568023547e-19,-9.916251523043353e-19,-0.0006377550889737904,2.360167946168558e-20,1.1324049594592957e-19,1.8126090188466044e-19,1.3592887107612858e-19,-1.6341726867222196e-20,1.1349345811700594e-19,1.2010383320813225e-19,2.360167946168558e-20,1.3428505640383257e-19,0.00010629251482896507,4.0,7.0,4.0,8.0,0.04530134052038193,-0.013236607424914837,-0.008593750186264515,-0.013236607424914837,-0.007700892630964518,0.0011160714784637094,0.0010044643422588706,0.0016071428544819355,0.0008928571478463709,0.0004650297632906586,0.0010044643422588706,0.0005580357392318547,0.0011160714784637094,0.0008928571478463709,0.00037202381645329297,-0.013236607424914837,0.016636904329061508,0.0010044643422588706,0.0016071428544819355,0.0008928571478463709,-0.0033482143189758062,-0.0006696428754366934,-0.0010714285308495164,-0.0005952381179668009,-2.366016694710676e-20,-9.540888593294153e-21,-5.251604272976662e-20,-0.0,-8.258138258377545e-20,-1.0784857728413948e-19,-0.008593750186264515,0.0010044643422588706,0.005282738246023655,0.0010044643422588706,0.0005580357392318547,-0.0,-0.0003348214377183467,-0.0,-5.421010862427522e-20,-0.0005580357392318547,-0.0003348214377183467,-0.00018601190822664648,-0.0,-4.0657581468206416e-20,-8.412795183530819e-20,-0.013236607424914837,0.0016071428544819355,0.0010044643422588706,0.016636904329061508,0.0008928571478463709,-0.0,-8.820380352430654e-21,-0.0010714285308495164,-8.319896338392578e-20,-0.0,-0.0006696428754366934,-5.671192931163893e-20,-0.0033482143189758062,-0.0005952381179668009,-1.3020701720985493e-19,-0.007700892630964518,0.0008928571478463709,0.0005580357392318547,0.0008928571478463709,0.004060374107211828,-0.0,-7.710662630728215e-21,-0.0,-0.00025510202976875007,-2.3761918240386453e-20,-6.776263578034403e-21,-0.0001594387722434476,-0.0,-0.00025510202976875007,-0.00037202381645329297,0.0011160714784637094,-0.0033482143189758062,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010044643422588706,-0.0006696428754366934,-0.0003348214377183467,-8.820380352430654e-21,-7.710662630728215e-21,-0.0,0.00022321428696159273,-0.0,5.710930376790417e-22,6.776263578034403e-21,3.3881317890172014e-21,1.6940658945086007e-21,-0.0,-3.8400428628547877e-22,3.1009102344859704e-22,0.0016071428544819355,-0.0010714285308495164,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0005952381179668009,-5.421010862427522e-20,-8.319896338392578e-20,-0.00025510202976875007,-0.0,5.710930376790417e-22,-0.0,0.0001700680295471102,9.51821746294102e-22,-1.7814468431549052e-22,1.3552527156068805e-20,-0.0,2.392382753618377e-20,3.054808698313875e-20,0.0004650297632906586,-2.366016694710676e-20,-0.0005580357392318547,-0.0,-2.3761918240386453e-20,-0.0,6.776263578034403e-21,-0.0,9.51821746294102e-22,9.300595411332324e-05,1.3552527156068805e-20,6.776263578034403e-21,0.0,-6.400071185655823e-22,1.6062383369939707e-21,0.0010044643422588706,-9.540888593294153e-21,-0.0003348214377183467,-0.0006696428754366934,-6.776263578034403e-21,-0.0,3.3881317890172014e-21,-0.0,-1.7814468431549052e-22,1.3552527156068805e-20,0.00022321428696159273,3.3881317890172014e-21,-0.0,-7.69267013974064e-22,-2.597943376043109e-22,0.0005580357392318547,-5.251604272976662e-20,-0.00018601190822664648,-5.671192931163893e-20,-0.0001594387722434476,-0.0,1.6940658945086007e-21,-0.0,1.3552527156068805e-20,6.776263578034403e-21,3.3881317890172014e-21,5.3146257414482534e-05,-0.0,1.329929598973464e-20,2.1031987958827047e-20,0.0011160714784637094,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,0.0008928571478463709,-8.258138258377545e-20,-4.0657581468206416e-20,-0.0005952381179668009,-0.00025510202976875007,-0.0,-3.8400428628547877e-22,-0.0,2.392382753618377e-20,-6.400071185655823e-22,-7.69267013974064e-22,1.329929598973464e-20,-0.0,0.0001700680295471102,3.742468821571069e-20,0.00037202381645329297,-1.0784857728413948e-19,-8.412795183530819e-20,-1.3020701720985493e-19,-0.00037202381645329297,-0.0,3.1009102344859704e-22,-0.0,3.054808698313875e-20,1.6062383369939707e-21,-2.597943376043109e-22,2.1031987958827047e-20,-0.0,3.742468821571069e-20,5.3146257414482534e-05,4.0,7.0,5.0,3.0,0.08282596617937088,-0.026428570970892906,-0.017202381044626236,-0.022397959604859352,-0.03232142701745033,0.0023809524718672037,0.002142857061699033,0.0028571428265422583,0.004285714123398066,0.0009920635493472219,0.0017857142956927419,0.0026785715017467737,0.001700680237263441,0.0035714285913854837,0.0035714285913854837,-0.026428570970892906,0.034285712987184525,0.002142857061699033,0.0028571428265422583,0.004285714123398066,-0.0071428571827709675,-0.0014285714132711291,-0.0019047618843615055,-0.0028571428265422583,-1.8172690700743926e-18,-6.67744610051698e-18,-9.818921729857607e-18,-1.7295310978356892e-17,-2.098548115060293e-17,-4.964283087206368e-17,-0.017202381044626236,0.002142857061699033,0.010892856866121292,0.0017857142956927419,0.0026785715017467737,-4.592698253206216e-18,-0.0007142857066355646,-7.339254283466569e-18,-1.0770976009223477e-17,-0.0011904762359336019,-0.0005952381179668009,-0.0008928571478463709,-1.062874395725621e-17,-1.3238291167527261e-17,-2.962526518907232e-17,-0.022397959604859352,0.0028571428265422583,0.0017857142956927419,0.021403061226010323,0.0035714285913854837,-2.5985260212255175e-17,-4.727079120389437e-18,-0.0014285714132711291,-1.5452491539931656e-17,-8.51098705401121e-18,-0.0008928571478463709,-9.447357161782462e-18,-0.003401360474526882,-0.0017857142956927419,-3.550447786257257e-17,-0.03232142701745033,0.004285714123398066,0.0026785715017467737,0.0035714285913854837,0.06803571432828903,-4.1187006838742406e-17,-6.791411736592086e-18,-1.6558183864731288e-17,-0.004285714123398066,-1.3602862750703882e-17,-1.0511538254721733e-17,-0.0026785715017467737,-2.0208432646254292e-17,-0.0035714285913854837,-0.02142857201397419,0.0023809524718672037,-0.0071428571827709675,-4.592698253206216e-18,-2.5985260212255175e-17,-4.1187006838742406e-17,0.0023809524718672037,5.946364643193373e-19,2.4450081651347597e-18,3.667512454497293e-18,-4.4056469836361075e-20,1.05735530192206e-18,1.5860329011843016e-18,3.3986419458803e-18,3.965082408057119e-18,1.0309214012794325e-17,0.002142857061699033,-0.0014285714132711291,-0.0007142857066355646,-4.727079120389437e-18,-6.791411736592086e-18,5.946364643193373e-19,0.0004761904710903764,4.519438278472421e-19,6.779157676202573e-19,-1.4907779871675686e-19,2.168404344971009e-19,3.3881317890172014e-19,4.531522353246055e-19,9.516196993515503e-19,9.516196993515503e-19,0.0028571428265422583,-0.0019047618843615055,-7.339254283466569e-18,-0.0014285714132711291,-1.6558183864731288e-17,2.4450081651347597e-18,4.519438278472421e-19,0.0009523809421807528,1.5225915603215112e-18,6.34413150133963e-19,7.930164505921508e-19,9.516196993515503e-19,1.812608941298422e-18,1.5860329011843016e-18,3.806478797406201e-18,0.004285714123398066,-0.0028571428265422583,-1.0770976009223477e-17,-1.5452491539931656e-17,-0.004285714123398066,3.667512454497293e-18,6.779157676202573e-19,1.5225915603215112e-18,0.0028571428265422583,9.516196993515503e-19,9.516196993515503e-19,1.6653344997146072e-18,1.812608941298422e-18,2.4288961343682987e-18,7.612957594812403e-18,0.0009920635493472219,-1.8172690700743926e-18,-0.0011904762359336019,-8.51098705401121e-18,-1.3602862750703882e-17,-4.4056469836361075e-20,-1.4907779871675686e-19,6.34413150133963e-19,9.516196993515503e-19,0.00019841270113829523,3.7947076036992655e-19,5.692061405548898e-19,1.1328806141609079e-18,1.3216941015531808e-18,3.436404601999724e-18,0.0017857142956927419,-6.67744610051698e-18,-0.0005952381179668009,-0.0008928571478463709,-1.0511538254721733e-17,1.05735530192206e-18,2.168404344971009e-19,7.930164505921508e-19,9.516196993515503e-19,3.7947076036992655e-19,0.00029761905898340046,5.89534931288993e-19,9.150190251976103e-19,1.080448633660892e-18,2.3790494034752407e-18,0.0026785715017467737,-9.818921729857607e-18,-0.0008928571478463709,-9.447357161782462e-18,-0.0026785715017467737,1.5860329011843016e-18,3.3881317890172014e-19,9.516196993515503e-19,1.6653344997146072e-18,5.692061405548898e-19,5.89534931288993e-19,0.0008928571478463709,1.1328806141609079e-18,1.3232916975087504e-18,2.4248003495652424e-18,0.001700680237263441,-1.7295310978356892e-17,-1.062874395725621e-17,-0.003401360474526882,-2.0208432646254292e-17,3.3986419458803e-18,4.531522353246055e-19,1.812608941298422e-18,1.812608941298422e-18,1.1328806141609079e-18,9.150190251976103e-19,1.1328806141609079e-18,0.0008503401186317205,1.3810354183122756e-18,5.664403380997269e-18,0.0035714285913854837,-2.098548115060293e-17,-1.3238291167527261e-17,-0.0017857142956927419,-0.0035714285913854837,3.965082408057119e-18,9.516196993515503e-19,1.5860329011843016e-18,2.4288961343682987e-18,1.3216941015531808e-18,1.080448633660892e-18,1.3232916975087504e-18,1.3810354183122756e-18,0.0017857142956927419,7.59243161312637e-32,0.0035714285913854837,-4.964283087206368e-17,-2.962526518907232e-17,-3.550447786257257e-17,-0.02142857201397419,1.0309214012794325e-17,9.516196993515503e-19,3.806478797406201e-18,7.612957594812403e-18,3.436404601999724e-18,2.3790494034752407e-18,2.4248003495652424e-18,5.664403380997269e-18,7.59243161312637e-32,0.010714286006987095,4.0,7.0,5.0,4.0,0.06678911298513412,-0.02046428620815277,-0.013303571380674839,-0.017334183678030968,-0.02046428620815277,0.0017857142956927419,0.0016071428544819355,0.002142857061699033,0.0025714286603033543,0.0007440476329065859,0.0013392857508733869,0.0016071428544819355,0.0012755101779475808,0.002142857061699033,0.0017857142956927419,-0.02046428620815277,0.02614285796880722,0.0016071428544819355,0.002142857061699033,0.0025714286603033543,-0.0053571430034935474,-0.0010714285308495164,-0.0014285714132711291,-0.001714285695925355,-4.0657581468206416e-20,0.0,-0.0,-0.0,-0.0,-0.0,-0.013303571380674839,0.0016071428544819355,0.008303571492433548,0.0013392857508733869,0.0016071428544819355,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0008928571478463709,-0.00044642857392318547,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.017334183678030968,0.002142857061699033,0.0013392857508733869,0.016320152208209038,0.002142857061699033,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0006696428754366934,-0.0,-0.0025510203558951616,-0.0010714285308495164,-0.0,-0.02046428620815277,0.0025714286603033543,0.0016071428544819355,0.002142857061699033,0.02614285796880722,-0.0,-0.0,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0014285714132711291,-0.0053571430034935474,0.0017857142956927419,-0.0053571430034935474,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0016071428544819355,-0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0014285714132711291,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025714286603033543,-0.001714285695925355,-0.0,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-4.0657581468206416e-20,-0.0008928571478463709,-0.0,-0.0,-0.0,1.3552527156068805e-20,-0.0,-0.0,0.00014880952949170023,-0.0,0.0,0.0,0.0,-0.0,0.0013392857508733869,0.0,-0.00044642857392318547,-0.0006696428754366934,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0,-0.0005357142654247582,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.0012755101779475808,-0.0,-0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,0.002142857061699033,-0.0,-0.0,-0.0010714285308495164,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0053571430034935474,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,4.0,7.0,5.0,5.0,0.056057821959257126,-0.01671428605914116,-0.010857142508029938,-0.01415306143462658,-0.01415306143462658,0.0014285714132711291,0.0012857143301516771,0.001714285695925355,0.001714285695925355,0.0005952381179668009,0.0010714285308495164,0.0010714285308495164,0.0010204081190750003,0.0014285714132711291,0.0010204081190750003,-0.01671428605914116,0.021142857149243355,0.0012857143301516771,0.001714285695925355,0.001714285695925355,-0.004285714123398066,-0.0008571428479626775,-0.0011428571306169033,-0.0011428571306169033,2.407412430484045e-35,0.0,-0.0,-0.0,-0.0,-0.0,-0.010857142508029938,0.0012857143301516771,0.00671428581699729,0.0010714285308495164,0.0010714285308495164,-7.137148003630569e-19,-0.00042857142398133874,-1.903239450401889e-19,-1.903239450401889e-19,-0.0007142857066355646,-0.0003571428533177823,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.01415306143462658,0.001714285695925355,0.0010714285308495164,0.013198979198932648,0.0014285714132711291,-9.516196993515503e-19,-1.903239450401889e-19,-0.0008571428479626775,-5.071248851695394e-34,2.710505431213761e-20,-0.0005357142654247582,-0.0,-0.0020408162381500006,-0.0007142857066355646,0.0,-0.01415306143462658,0.001714285695925355,0.0010714285308495164,0.0014285714132711291,0.013198979198932648,-9.516196993515503e-19,-1.903239450401889e-19,-5.071248851695394e-34,-0.0008571428479626775,1.6815856454579935e-20,-0.0,-0.0005357142654247582,-0.0,-0.0007142857066355646,-0.0020408162381500006,0.0014285714132711291,-0.004285714123398066,-7.137148003630569e-19,-9.516196993515503e-19,-9.516196993515503e-19,0.0014285714132711291,4.758098496757752e-19,6.34413150133963e-19,6.34413150133963e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012857143301516771,-0.0008571428479626775,-0.00042857142398133874,-1.903239450401889e-19,-1.903239450401889e-19,4.758098496757752e-19,0.0002857142826542258,1.268826300267926e-19,1.268826300267926e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-0.0011428571306169033,-1.903239450401889e-19,-0.0008571428479626775,-5.071248851695394e-34,6.34413150133963e-19,1.268826300267926e-19,0.0005714285653084517,3.3808324147377693e-34,-6.018531076210112e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-0.0011428571306169033,-1.903239450401889e-19,-5.071248851695394e-34,-0.0008571428479626775,6.34413150133963e-19,1.268826300267926e-19,3.3808324147377693e-34,0.0005714285653084517,-6.018531076210112e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,2.407412430484045e-35,-0.0007142857066355646,2.710505431213761e-20,1.6815856454579935e-20,-0.0,-0.0,-6.018531076210112e-36,-6.018531076210112e-36,0.0001190476177725941,-0.0,0.0,0.0,0.0,-0.0,0.0010714285308495164,0.0,-0.0003571428533177823,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0003571428533177823,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,0.0010204081190750003,-0.0,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0007142857066355646,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0010204081190750003,-0.0,-0.0,0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,4.0,7.0,5.0,6.0,0.04833900183439255,-0.01413265336304903,-0.009175170212984085,-0.011964285746216774,-0.010382653214037418,0.0011904762359336019,0.0010714285308495164,0.0014285714132711291,0.0012244897661730647,0.0004960317746736109,0.0008928571478463709,0.0007653061184100807,0.0008503401186317205,0.0010204081190750003,0.0006377550889737904,-0.01413265336304903,0.01775510236620903,0.0010714285308495164,0.0014285714132711291,0.0012244897661730647,-0.0035714285913854837,-0.0007142857066355646,-0.0009523809421807528,-0.0008163265301845968,-4.2226404463156246e-19,-3.0769962802066587e-18,-3.594810619881818e-19,-7.676614933212646e-18,-2.753940064793461e-18,1.4034725890301999e-18,-0.009175170212984085,0.0010714285308495164,0.005637755151838064,0.0008928571478463709,0.0007653061184100807,-1.4466885367354562e-18,-0.0003571428533177823,-3.4657085091751808e-18,-3.6591823321385775e-19,-0.0005952381179668009,-0.00029761905898340046,-0.00025510202976875007,-4.70747163114948e-18,-1.7835194806967696e-18,9.046004785873517e-19,-0.011964285746216774,0.0014285714132711291,0.0008928571478463709,0.011084184050559998,0.0010204081190750003,-1.2256258208401244e-17,-2.169785323003666e-18,-0.0007142857066355646,-8.631298819745823e-19,-4.065758146820642e-18,-0.00044642857392318547,-5.298764941625607e-19,-0.001700680237263441,-0.0005102040595375001,1.700847948350923e-18,-0.010382653214037418,0.0012244897661730647,0.0007653061184100807,0.0010204081190750003,0.007660714443773031,2.108452749865609e-19,1.0196153932694812e-18,-5.974812418434837e-19,-0.0004897959297522902,-8.277434831104759e-20,-3.686074232346618e-19,-0.0003061224415432662,2.3914378807142943e-18,-0.0004081632650922984,-0.0009566326625645161,0.0011904762359336019,-0.0035714285913854837,-1.4466885367354562e-18,-1.2256258208401244e-17,2.108452749865609e-19,0.0011904762359336019,2.9731823215966863e-19,1.2225040825673799e-18,1.539854483663369e-19,-2.2028234918180537e-20,5.2867765096103e-19,-2.2657612735582555e-20,1.69932097294015e-18,4.984674640269449e-19,-2.8322015354022696e-19,0.0010714285308495164,-0.0007142857066355646,-0.0003571428533177823,-2.169785323003666e-18,1.0196153932694812e-18,2.9731823215966863e-19,0.0002380952355451882,2.2597191392362104e-19,-8.234114477696562e-20,-7.453889935837843e-20,1.1180834903756764e-19,-4.743384504624082e-20,2.2657611766230274e-19,1.0875654371573568e-19,-2.1573136624142627e-19,0.0014285714132711291,-0.0009523809421807528,-3.4657085091751808e-18,-0.0007142857066355646,-5.974812418434837e-19,1.2225040825673799e-18,2.2597191392362104e-19,0.0004761904710903764,1.7401046994517708e-19,3.172065750669815e-19,3.965082252960754e-19,1.0875654371573568e-19,9.06304470649211e-19,2.3563917374252827e-19,-8.49660473545378e-20,0.0012244897661730647,-0.0008163265301845968,-3.6591823321385775e-19,-8.631298819745823e-19,-0.0004897959297522902,1.539854483663369e-19,-8.234114477696562e-20,1.7401046994517708e-19,0.00032653060043230653,-4.224263965982345e-21,8.156740778680176e-20,8.651866536429983e-20,-2.5894414093355167e-20,1.1189148068912922e-19,6.001042186411923e-20,0.0004960317746736109,-4.2226404463156246e-19,-0.0005952381179668009,-4.065758146820642e-18,-8.277434831104759e-20,-2.2028234918180537e-20,-7.453889935837843e-20,3.172065750669815e-19,-4.224263965982345e-21,9.920635056914762e-05,1.9651164376299768e-19,6.776263578034403e-21,5.664403070804539e-19,1.8126090188466044e-19,-6.430692721269036e-20,0.0008928571478463709,-3.0769962802066587e-18,-0.00029761905898340046,-0.00044642857392318547,-3.686074232346618e-19,5.2867765096103e-19,1.1180834903756764e-19,3.965082252960754e-19,8.156740778680176e-20,1.9651164376299768e-19,0.00014880952949170023,7.218189990169686e-20,4.575095125988051e-19,1.5894356895797975e-19,-5.310378040437969e-20,0.0007653061184100807,-3.594810619881818e-19,-0.00025510202976875007,-5.298764941625607e-19,-0.0003061224415432662,-2.2657612735582555e-20,-4.743384504624082e-20,1.0875654371573568e-19,8.651866536429983e-20,6.776263578034403e-21,7.218189990169686e-20,0.0001020408162730746,-1.6184008404450196e-20,4.0657581468206416e-20,-6.284317295764096e-20,0.0008503401186317205,-7.676614933212646e-18,-4.70747163114948e-18,-0.001700680237263441,2.3914378807142943e-18,1.69932097294015e-18,2.2657611766230274e-19,9.06304470649211e-19,-2.5894414093355167e-20,5.664403070804539e-19,4.575095125988051e-19,-1.6184008404450196e-20,0.00042517005931586027,-7.27509743137392e-20,-3.540252113123293e-19,0.0010204081190750003,-2.753940064793461e-18,-1.7835194806967696e-18,-0.0005102040595375001,-0.0004081632650922984,4.984674640269449e-19,1.0875654371573568e-19,2.3563917374252827e-19,1.1189148068912922e-19,1.8126090188466044e-19,1.5894356895797975e-19,4.0657581468206416e-20,-7.27509743137392e-20,0.0002040816325461492,8.053228293476149e-22,0.0006377550889737904,1.4034725890301999e-18,9.046004785873517e-19,1.700847948350923e-18,-0.0009566326625645161,-2.8322015354022696e-19,-2.1573136624142627e-19,-8.49660473545378e-20,6.001042186411923e-20,-6.430692721269036e-20,-5.310378040437969e-20,-6.284317295764096e-20,-3.540252113123293e-19,8.053228293476149e-22,0.00019132652960252017,4.0,7.0,5.0,7.0,0.04250789433717728,-0.01224489789456129,-0.007946428842842579,-0.010364431887865067,-0.007946428842842579,0.0010204081190750003,0.000918367353733629,0.0012244897661730647,0.000918367353733629,0.00042517005931586027,0.0007653061184100807,0.0005739795742556453,0.0007288630004040897,0.0007653061184100807,0.00042517005931586027,-0.01224489789456129,0.015306122601032257,0.000918367353733629,0.0012244897661730647,0.000918367353733629,-0.0030612244736403227,-0.0006122448830865324,-0.0008163265301845968,-0.0006122448830865324,1.2560155990249524e-20,-2.51055581802984e-18,-3.4684603322779916e-19,-6.052819272511344e-18,-2.207881126114796e-18,6.027511061284825e-19,-0.007946428842842579,0.000918367353733629,0.004859693814069033,0.0007653061184100807,0.0005739795742556453,-4.43777073659506e-19,-0.0003061224415432662,-2.9358995336301197e-18,6.030874584450618e-19,-0.0005102040595375001,-0.00025510202976875007,-0.00019132652960252017,-3.7055156133798165e-18,-1.3954753034704606e-18,3.49062463679135e-19,-0.010364431887865067,0.0012244897661730647,0.0007653061184100807,0.00955539382994175,0.0007653061184100807,-9.484569535999385e-18,-1.873026213239295e-18,-0.0006122448830865324,3.9742076060808625e-19,-3.3610267347050637e-18,-0.00038265305920504034,3.874116231646017e-20,-0.0014577260008081794,-0.00038265305920504034,5.415273330903701e-19,-0.007946428842842579,0.000918367353733629,0.0005739795742556453,0.0007653061184100807,0.004859693814069033,-4.43777073659506e-19,3.345258500880695e-19,-9.584170560352048e-19,-0.0003061224415432662,-3.363040299111171e-19,-3.933316190993245e-19,-0.00019132652960252017,1.8547204994883434e-18,-0.00025510202976875007,-0.0005102040595375001,0.0010204081190750003,-0.0030612244736403227,-4.43777073659506e-19,-9.484569535999385e-18,-4.43777073659506e-19,0.0010204081190750003,-3.9331766042648767e-19,1.7312265957866333e-19,-3.9331766042648767e-19,-1.8881344215583318e-20,4.531522353246055e-19,4.24830236772689e-20,1.4565608339487e-18,4.531522353246055e-19,-1.8881344215583318e-20,0.000918367353733629,-0.0006122448830865324,-0.0003061224415432662,-1.873026213239295e-18,3.345258500880695e-19,-3.9331766042648767e-19,0.0002040816325461492,1.219996794733155e-19,-5.894141370701662e-20,-1.0164395367051604e-19,1.1180834903756764e-19,-3.3881317890172014e-21,1.9420811377809942e-19,1.0195925811791506e-19,-9.03295898439082e-20,0.0012244897661730647,-0.0008163265301845968,-2.9358995336301197e-18,-0.0006122448830865324,-9.584170560352048e-19,1.7312265957866333e-19,1.219996794733155e-19,0.0004081632650922984,1.6313481557360351e-19,2.718913463646421e-19,3.398641894181512e-19,1.0195925811791506e-19,7.768324551123977e-19,2.0391851623583012e-19,-5.437740898810417e-34,0.000918367353733629,-0.0006122448830865324,6.030874584450618e-19,3.9742076060808625e-19,-0.0003061224415432662,-3.9331766042648767e-19,-5.894141370701662e-20,1.6313481557360351e-19,0.0002040816325461492,-9.009744935981343e-20,-3.069450848867157e-34,-2.5438800750138972e-20,-1.9420811377809942e-19,-4.120700892706188e-22,-1.1688122801450515e-19,0.00042517005931586027,1.2560155990249524e-20,-0.0005102040595375001,-3.3610267347050637e-18,-3.363040299111171e-19,-1.8881344215583318e-20,-1.0164395367051604e-19,2.718913463646421e-19,-9.009744935981343e-20,8.50340147735551e-05,8.809142651444724e-20,6.776263578034403e-21,4.855202779829e-19,1.6049141775452253e-19,1.5692139670362316e-20,0.0007653061184100807,-2.51055581802984e-18,-0.00025510202976875007,-0.00038265305920504034,-3.933316190993245e-19,4.531522353246055e-19,1.1180834903756764e-19,3.398641894181512e-19,-3.069450848867157e-34,8.809142651444724e-20,0.00012755101488437504,6.793065684226886e-20,3.9215099972066405e-19,9.476982428625896e-20,-2.8888949165808538e-34,0.0005739795742556453,-3.4684603322779916e-19,-0.00019132652960252017,3.874116231646017e-20,-0.00019132652960252017,4.24830236772689e-20,-3.3881317890172014e-21,1.0195925811791506e-19,-2.5438800750138972e-20,6.776263578034403e-21,6.793065684226886e-20,6.377550744218752e-05,-1.21380069495725e-19,1.6940658945086007e-21,-1.1882552896900812e-19,0.0007288630004040897,-6.052819272511344e-18,-3.7055156133798165e-18,-0.0014577260008081794,1.8547204994883434e-18,1.4565608339487e-18,1.9420811377809942e-19,7.768324551123977e-19,-1.9420811377809942e-19,4.855202779829e-19,3.9215099972066405e-19,-1.21380069495725e-19,0.00036443150020204484,-7.365375794180987e-20,-1.3486674532021635e-19,0.0007653061184100807,-2.207881126114796e-18,-1.3954753034704606e-18,-0.00038265305920504034,-0.00025510202976875007,4.531522353246055e-19,1.0195925811791506e-19,2.0391851623583012e-19,-4.120700892706188e-22,1.6049141775452253e-19,9.476982428625896e-20,1.6940658945086007e-21,-7.365375794180987e-20,0.00012755101488437504,-6.867834652886654e-22,0.00042517005931586027,6.027511061284825e-19,3.49062463679135e-19,5.415273330903701e-19,-0.0005102040595375001,-1.8881344215583318e-20,-9.03295898439082e-20,-5.437740898810417e-34,-1.1688122801450515e-19,1.5692139670362316e-20,-2.8888949165808538e-34,-1.1882552896900812e-19,-1.3486674532021635e-19,-6.867834652886654e-22,8.50340147735551e-05,4.0,7.0,5.0,8.0,0.037942178547382355,-0.010803570970892906,-0.007008928339928389,-0.009143282659351826,-0.006279761902987957,0.0008928571478463709,0.0008035714272409678,0.0010714285308495164,0.0007142857066355646,0.00037202381645329297,0.0006696428754366934,0.00044642857392318547,0.0006377550889737904,0.0005952381179668009,0.00029761905898340046,-0.010803570970892906,0.013452380895614624,0.0008035714272409678,0.0010714285308495164,0.0007142857066355646,-0.0026785715017467737,-0.0005357142654247582,-0.0007142857066355646,-0.0004761904710903764,2.555473376825417e-22,-9.455251973881473e-22,-3.7269449679189215e-20,-0.0,-0.0,-1.0096575604110206e-19,-0.007008928339928389,0.0008035714272409678,0.0042708334513008595,0.0006696428754366934,0.00044642857392318547,-0.0,-0.0002678571327123791,-0.0,-4.743384504624082e-20,-0.00044642857392318547,-0.00022321428696159273,-0.00014880952949170023,-0.0,-0.0,-7.86941571550076e-20,-0.009143282659351826,0.0010714285308495164,0.0006696428754366934,0.00839817151427269,0.0005952381179668009,-0.0,-0.0,-0.0005357142654247582,-8.1045014755251285e-22,-0.0,-0.0003348214377183467,-0.0,-0.0012755101779475808,-0.00029761905898340046,-1.1819063957609882e-21,-0.006279761902987957,0.0007142857066355646,0.00044642857392318547,0.0005952381179668009,0.0032823130022734404,-0.0,7.262898617602037e-21,-0.0,-0.0002040816325461492,1.2918975469306377e-20,-3.3881317890172014e-21,-0.00012755101488437504,-0.0,-0.0001700680295471102,-0.00029761905898340046,0.0008928571478463709,-0.0026785715017467737,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008035714272409678,-0.0005357142654247582,-0.0002678571327123791,-0.0,7.262898617602037e-21,-0.0,0.00017857142665889114,-0.0,-4.3808115572226053e-23,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,3.918954954232325e-22,0.0010714285308495164,-0.0007142857066355646,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0004761904710903764,-4.743384504624082e-20,-8.1045014755251285e-22,-0.0002040816325461492,-0.0,-4.3808115572226053e-23,-0.0,0.0001360544265480712,-7.301352595371009e-23,2.7015004918417095e-22,1.3552527156068805e-20,-0.0,-0.0,2.851144876158529e-20,0.00037202381645329297,2.555473376825417e-22,-0.00044642857392318547,-0.0,1.2918975469306377e-20,-0.0,-0.0,-0.0,-7.301352595371009e-23,7.440476474585012e-05,-0.0,0.0,0.0,0.0,5.702179448105491e-22,0.0006696428754366934,-9.455251973881473e-22,-0.00022321428696159273,-0.0003348214377183467,-3.3881317890172014e-21,-0.0,-0.0,-0.0,2.7015004918417095e-22,-0.0,0.00011160714348079637,-0.0,-0.0,-0.0,3.9396882383054505e-22,0.00044642857392318547,-3.7269449679189215e-20,-0.00014880952949170023,-0.0,-0.00012755101488437504,-0.0,-3.3881317890172014e-21,-0.0,1.3552527156068805e-20,0.0,-0.0,4.251700738677755e-05,-0.0,-0.0,2.1031987958827047e-20,0.0006377550889737904,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,0.0005952381179668009,-0.0,-0.0,-0.00029761905898340046,-0.0001700680295471102,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,8.50340147735551e-05,0.0,0.00029761905898340046,-1.0096575604110206e-19,-7.86941571550076e-20,-1.1819063957609882e-21,-0.00029761905898340046,-0.0,3.918954954232325e-22,-0.0,2.851144876158529e-20,5.702179448105491e-22,3.9396882383054505e-22,2.1031987958827047e-20,-0.0,0.0,4.251700738677755e-05,4.0,7.0,6.0,3.0,0.07158683240413666,-0.022363945841789246,-0.014547902159392834,-0.01645408198237419,-0.027359694242477417,0.0019841270986944437,0.0017857142956927419,0.0020408162381500006,0.0035714285913854837,0.0008267195662483573,0.0012755101779475808,0.0022321429569274187,0.0010629252064973116,0.0025510203558951616,0.0029761905316263437,-0.022363945841789246,0.028798185288906097,0.0017857142956927419,0.0020408162381500006,0.0035714285913854837,-0.0059523810632526875,-0.0011904762359336019,-0.0013605442363768816,-0.0023809524718672037,2.8653766478444745e-19,-8.123931940036063e-22,-9.44988822459695e-22,-1.9704295221019815e-19,6.199365200620047e-20,7.054755978753844e-34,-0.014547902159392834,0.0017857142956927419,0.009148242883384228,0.0012755101779475808,0.0022321429569274187,-0.0,-0.0005952381179668009,-1.5792806904675166e-20,-0.0,-0.0009920635493472219,-0.00042517005931586027,-0.0007440476329065859,-5.48395607586854e-20,2.710505431213761e-20,2.8888949165808538e-34,-0.01645408198237419,0.0020408162381500006,0.0012755101779475808,0.012427721172571182,0.0025510203558951616,-0.0,3.039866779147356e-20,-0.0008163265301845968,-0.0,2.710505431213761e-20,-0.0005102040595375001,-4.5230933828041395e-20,-0.0015943878097459674,-0.0010204081190750003,7.915551016232263e-18,-0.027359694242477417,0.0035714285913854837,0.0022321429569274187,0.0025510203558951616,0.05712159723043442,-0.0,-4.807484458969049e-21,6.662864870871625e-20,-0.0035714285913854837,-2.7999633584845588e-21,1.0164395367051604e-20,-0.0022321429569274187,3.686287386450715e-18,-0.0025510203558951616,-0.01785714365541935,0.0019841270986944437,-0.0059523810632526875,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-0.0005952381179668009,3.039866779147356e-20,-4.807484458969049e-21,-0.0,0.00039682540227659047,-4.643004562093316e-22,-0.0,-9.486769009248164e-20,-6.776263578034403e-21,-0.0,-2.081649892742453e-21,1.9229937835876197e-21,5.582708151304428e-36,0.0020408162381500006,-0.0013605442363768816,-1.5792806904675166e-20,-0.0008163265301845968,6.662864870871625e-20,-0.0,-4.643004562093316e-22,0.0005442177061922848,-0.0,-7.738340768531868e-22,8.456473389489173e-21,3.7799553908129756e-22,8.131516293641283e-20,-2.710505431213761e-20,-2.8888949165808538e-34,0.0035714285913854837,-0.0023809524718672037,-0.0,-0.0,-0.0035714285913854837,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008267195662483573,2.8653766478444745e-19,-0.0009920635493472219,2.710505431213761e-20,-2.7999633584845588e-21,-0.0,-9.486769009248164e-20,-7.738340768531868e-22,-0.0,0.0001653439103392884,-0.0,0.0,-2.1631392999824305e-21,3.2049894373643078e-21,9.304513465929911e-36,0.0012755101779475808,-8.123931940036063e-22,-0.00042517005931586027,-0.0005102040595375001,1.0164395367051604e-20,-0.0,-6.776263578034403e-21,8.456473389489173e-21,-0.0,-0.0,0.0001700680295471102,1.3552527156068805e-20,2.851366857830726e-20,-2.0328790734103208e-20,-1.4444474582904269e-34,0.0022321429569274187,-9.44988822459695e-22,-0.0007440476329065859,-4.5230933828041395e-20,-0.0022321429569274187,-0.0,-0.0,3.7799553908129756e-22,-0.0,0.0,1.3552527156068805e-20,0.0007440476329065859,7.382725301684112e-22,-6.770847460736376e-36,3.368973697118888e-36,0.0010629252064973116,-1.9704295221019815e-19,-5.48395607586854e-20,-0.0015943878097459674,3.686287386450715e-18,-0.0,-2.081649892742453e-21,8.131516293641283e-20,-0.0,-2.1631392999824305e-21,2.851366857830726e-20,7.382725301684112e-22,0.0003188775444868952,-3.336352350622913e-19,-1.4161008452493172e-18,0.0025510203558951616,6.199365200620047e-20,2.710505431213761e-20,-0.0010204081190750003,-0.0025510203558951616,-0.0,1.9229937835876197e-21,-2.710505431213761e-20,-0.0,3.2049894373643078e-21,-2.0328790734103208e-20,-6.770847460736376e-36,-3.336352350622913e-19,0.0010204081190750003,-8.350471518771953e-19,0.0029761905316263437,7.054755978753844e-34,2.8888949165808538e-34,7.915551016232263e-18,-0.01785714365541935,-0.0,5.582708151304428e-36,-2.8888949165808538e-34,-0.0,9.304513465929911e-36,-1.4444474582904269e-34,3.368973697118888e-36,-1.4161008452493172e-18,-8.350471518771953e-19,0.008928571827709675,4.0,7.0,6.0,4.0,0.05764526501297951,-0.0173086728900671,-0.011245748028159142,-0.012723213993012905,-0.0173086728900671,0.0014880952658131719,0.0013392857508733869,0.0015306122368201613,0.002142857061699033,0.0006200397037900984,0.0009566326625645161,0.0013392857508733869,0.0007971939048729837,0.0015306122368201613,0.0014880952658131719,-0.0173086728900671,0.021955782547593117,0.0013392857508733869,0.0015306122368201613,0.002142857061699033,-0.004464285913854837,-0.0008928571478463709,-0.0010204081190750003,-0.0014285714132711291,-3.628688270389196e-21,-2.3653976017209685e-20,-2.3813599257212545e-19,-2.020961080994051e-19,-2.5721656776188614e-19,-1.1895247017376204e-18,-0.011245748028159142,0.0013392857508733869,0.00697278929874301,0.0009566326625645161,0.0013392857508733869,-7.434529256613157e-19,-0.00044642857392318547,-2.0446561866285153e-19,-4.758098496757752e-19,-0.0007440476329065859,-0.0003188775444868952,-0.00044642857392318547,-8.826536708763065e-20,-1.6263032587282567e-19,-7.434529256613157e-19,-0.012723213993012905,0.0015306122368201613,0.0009566326625645161,0.009473851881921291,0.0015306122368201613,-8.49660486470075e-19,-1.7021552039114864e-19,-0.0006122448830865324,-5.981609775118491e-19,-0.0,-0.00038265305920504034,-1.6120959147197756e-19,-0.001195790828205645,-0.0006122448830865324,1.80930352757066e-18,-0.0173086728900671,0.002142857061699033,0.0013392857508733869,0.0015306122368201613,0.021955782547593117,-1.1895247017376204e-18,-2.3979314553179887e-19,-3.0960623280369114e-19,-0.0014285714132711291,4.4911861831446136e-20,2.710505431213761e-20,-0.0008928571478463709,1.951563910473908e-18,-0.0010204081190750003,-0.004464285913854837,0.0014880952658131719,-0.004464285913854837,-7.434529256613157e-19,-8.49660486470075e-19,-1.1895247017376204e-18,0.0014880952658131719,4.956353010071399e-19,5.664403070804539e-19,7.930164505921508e-19,2.407412430484045e-35,1.3130594757851132e-35,1.3219203097276946e-34,7.222237291452134e-35,1.4278386644271436e-34,6.60318844635302e-34,0.0013392857508733869,-0.0008928571478463709,-0.00044642857392318547,-1.7021552039114864e-19,-2.3979314553179887e-19,4.956353010071399e-19,0.00029761905898340046,1.14158950769199e-19,1.5860328753349075e-19,-0.0,-0.0,-0.0,-3.9726659058050545e-22,7.552872375302952e-22,1.3793822388512305e-34,0.0015306122368201613,-0.0010204081190750003,-2.0446561866285153e-19,-0.0006122448830865324,-3.0960623280369114e-19,5.664403070804539e-19,1.14158950769199e-19,0.0004081632650922984,2.1751308743147135e-19,1.4514752879608393e-21,9.4615907300013e-21,9.242188973752437e-23,8.131516293641283e-20,-6.776263578034403e-21,2.407412430484045e-35,0.002142857061699033,-0.0014285714132711291,-4.758098496757752e-19,-5.981609775118491e-19,-0.0014285714132711291,7.930164505921508e-19,1.5860328753349075e-19,2.1751308743147135e-19,0.0009523809421807528,-6.018531076210112e-36,-3.009265538105056e-36,1.5860328753349075e-19,-3.1296361596292583e-34,1.8126090188466044e-19,7.930164505921508e-19,0.0006200397037900984,-3.628688270389196e-21,-0.0007440476329065859,-0.0,4.4911861831446136e-20,2.407412430484045e-35,-0.0,1.4514752879608393e-21,-6.018531076210112e-36,0.00012400794366840273,-1.3552527156068805e-20,0.0,-1.7227391330125354e-21,1.2588120793795247e-21,0.0,0.0009566326625645161,-2.3653976017209685e-20,-0.0003188775444868952,-0.00038265305920504034,2.710505431213761e-20,1.3130594757851132e-35,-0.0,9.4615907300013e-21,-3.009265538105056e-36,-1.3552527156068805e-20,0.00012755101488437504,-3.3881317890172014e-21,3.991532257775932e-20,-6.776263578034403e-21,-9.62964972193618e-35,0.0013392857508733869,-2.3813599257212545e-19,-0.00044642857392318547,-1.6120959147197756e-19,-0.0008928571478463709,1.3219203097276946e-34,-0.0,9.242188973752437e-23,1.5860328753349075e-19,0.0,-3.3881317890172014e-21,0.00029761905898340046,1.8051150684486874e-22,1.1350384957345114e-19,4.956353010071399e-19,0.0007971939048729837,-2.020961080994051e-19,-8.826536708763065e-20,-0.001195790828205645,1.951563910473908e-18,7.222237291452134e-35,-3.9726659058050545e-22,8.131516293641283e-20,-3.1296361596292583e-34,-1.7227391330125354e-21,3.991532257775932e-20,1.8051150684486874e-22,0.00023915816564112902,-1.84116238886314e-19,-4.956353010071399e-19,0.0015306122368201613,-2.5721656776188614e-19,-1.6263032587282567e-19,-0.0006122448830865324,-0.0010204081190750003,1.4278386644271436e-34,7.552872375302952e-22,-6.776263578034403e-21,1.8126090188466044e-19,1.2588120793795247e-21,-6.776263578034403e-21,1.1350384957345114e-19,-1.84116238886314e-19,0.0004081632650922984,4.459151804465908e-19,0.0014880952658131719,-1.1895247017376204e-18,-7.434529256613157e-19,1.80930352757066e-18,-0.004464285913854837,6.60318844635302e-34,1.3793822388512305e-34,2.407412430484045e-35,7.930164505921508e-19,0.0,-9.62964972193618e-35,4.956353010071399e-19,-4.956353010071399e-19,4.459151804465908e-19,0.0014880952658131719,4.0,7.0,6.0,5.0,0.04833900183439255,-0.01413265336304903,-0.009175170212984085,-0.010382653214037418,-0.011964285746216774,0.0011904762359336019,0.0010714285308495164,0.0012244897661730647,0.0014285714132711291,0.0004960317746736109,0.0007653061184100807,0.0008928571478463709,0.0006377550889737904,0.0010204081190750003,0.0008503401186317205,-0.01413265336304903,0.01775510236620903,0.0010714285308495164,0.0012244897661730647,0.0014285714132711291,-0.0035714285913854837,-0.0007142857066355646,-0.0008163265301845968,-0.0009523809421807528,-4.612365816438159e-19,-6.888113906488057e-19,-3.4746689431606615e-18,3.9353456269273556e-19,-3.586863999134598e-18,-9.230280153630171e-18,-0.009175170212984085,0.0010714285308495164,0.005637755151838064,0.0007653061184100807,0.0008928571478463709,-1.4466885367354562e-18,-0.0003571428533177823,-7.004252649429917e-19,-3.873545360701082e-18,-0.0005952381179668009,-0.00025510202976875007,-0.00029761905898340046,2.3072838339155994e-19,-2.283330337737289e-18,-5.67851218711528e-18,-0.010382653214037418,0.0012244897661730647,0.0007653061184100807,0.007660714443773031,0.0010204081190750003,2.108452749865609e-19,1.02162016888158e-18,-0.0004897959297522902,-4.409385103297114e-18,-8.131516293641283e-20,-0.0003061224415432662,-2.682210477590466e-18,-0.0009566326625645161,-0.0004081632650922984,-7.242946471927633e-18,-0.011964285746216774,0.0014285714132711291,0.0008928571478463709,0.0010204081190750003,0.011084184050559998,-1.2256258208401244e-17,-2.1596209276366145e-18,-4.574787724992911e-18,-0.0007142857066355646,-4.089547861237667e-18,-2.8632619089096944e-18,-0.00044642857392318547,-5.5294310796760726e-18,-0.0005102040595375001,-0.001700680237263441,0.0011904762359336019,-0.0035714285913854837,-1.4466885367354562e-18,2.108452749865609e-19,-1.2256258208401244e-17,0.0011904762359336019,2.9731823215966863e-19,1.539854483663369e-19,1.2225040825673799e-18,-2.2028234918180537e-20,-2.2657612735582555e-20,5.2867765096103e-19,-2.8322015354022696e-19,4.984674640269449e-19,1.69932097294015e-18,0.0010714285308495164,-0.0007142857066355646,-0.0003571428533177823,1.02162016888158e-18,-2.1596209276366145e-18,2.9731823215966863e-19,0.0002380952355451882,-8.274555208597308e-20,2.2597191392362104e-19,-6.098637220230962e-20,-5.082197683525802e-20,1.0842021724855044e-19,-2.1411596005329264e-19,1.0875654371573568e-19,2.2657611766230274e-19,0.0012244897661730647,-0.0008163265301845968,-7.004252649429917e-19,-0.0004897959297522902,-4.574787724992911e-18,1.539854483663369e-19,-8.274555208597308e-20,0.00032653060043230653,2.5466293196396423e-19,-4.89827520523563e-21,9.180870510142665e-20,2.447022298227538e-19,5.421010862427522e-20,2.710505431213761e-19,5.955715403030402e-19,0.0014285714132711291,-0.0009523809421807528,-3.873545360701082e-18,-4.409385103297114e-18,-0.0007142857066355646,1.2225040825673799e-18,2.2597191392362104e-19,2.5466293196396423e-19,0.0004761904710903764,3.172065750669815e-19,2.718913463646421e-19,3.965082252960754e-19,4.248302432350375e-19,4.531522353246055e-19,9.06304470649211e-19,0.0004960317746736109,-4.612365816438159e-19,-0.0005952381179668009,-8.131516293641283e-20,-4.089547861237667e-18,-2.2028234918180537e-20,-6.098637220230962e-20,-4.89827520523563e-21,3.172065750669815e-19,9.920635056914762e-05,-0.0,1.9651164376299768e-19,-6.032666981440444e-20,1.8126090188466044e-19,5.664403070804539e-19,0.0007653061184100807,-6.888113906488057e-19,-0.00025510202976875007,-0.0003061224415432662,-2.8632619089096944e-18,-2.2657612735582555e-20,-5.082197683525802e-20,9.180870510142665e-20,2.718913463646421e-19,-0.0,0.0001020408162730746,1.120324762094783e-19,-5.951041057087653e-20,1.5246593050577406e-19,3.7223220622705158e-19,0.0008928571478463709,-3.4746689431606615e-18,-0.00029761905898340046,-2.682210477590466e-18,-0.00044642857392318547,5.2867765096103e-19,1.0842021724855044e-19,2.447022298227538e-19,3.965082252960754e-19,1.9651164376299768e-19,1.120324762094783e-19,0.00014880952949170023,2.6551890202189845e-19,2.6908859995537104e-19,4.575095125988051e-19,0.0006377550889737904,3.9353456269273556e-19,2.3072838339155994e-19,-0.0009566326625645161,-5.5294310796760726e-18,-2.8322015354022696e-19,-2.1411596005329264e-19,5.421010862427522e-20,4.248302432350375e-19,-6.032666981440444e-20,-5.951041057087653e-20,2.6551890202189845e-19,0.00019132652960252017,2.2026186030577335e-19,7.889704517222125e-19,0.0010204081190750003,-3.586863999134598e-18,-2.283330337737289e-18,-0.0004081632650922984,-0.0005102040595375001,4.984674640269449e-19,1.0875654371573568e-19,2.710505431213761e-19,4.531522353246055e-19,1.8126090188466044e-19,1.5246593050577406e-19,2.6908859995537104e-19,2.2026186030577335e-19,0.0002040816325461492,5.792841472467179e-19,0.0008503401186317205,-9.230280153630171e-18,-5.67851218711528e-18,-7.242946471927633e-18,-0.001700680237263441,1.69932097294015e-18,2.2657611766230274e-19,5.955715403030402e-19,9.06304470649211e-19,5.664403070804539e-19,3.7223220622705158e-19,4.575095125988051e-19,7.889704517222125e-19,5.792841472467179e-19,0.00042517005931586027,4.0,7.0,6.0,6.0,0.04165620729327202,-0.01194727886468172,-0.0077522676438093185,-0.008773688226938248,-0.008773688226938248,0.0009920635493472219,0.0008928571478463709,0.0010204081190750003,0.0010204081190750003,0.00041335978312417865,0.0006377550889737904,0.0006377550889737904,0.0005314626032486558,0.0007288630004040897,0.0005314626032486558,-0.01194727886468172,0.014909297227859497,0.0008928571478463709,0.0010204081190750003,0.0010204081190750003,-0.0029761905316263437,-0.0005952381179668009,-0.0006802721181884408,-0.0006802721181884408,1.413873454654865e-19,-1.3740486178813008e-20,-1.1612026870298325e-20,-1.0565851321482877e-19,2.2152843538230542e-20,-1.589980465561346e-19,-0.0077522676438093185,0.0008928571478463709,0.004733560141175985,0.0006377550889737904,0.0006377550889737904,-0.0,-0.00029761905898340046,-3.4834766330761554e-20,-3.3881317890172014e-20,-0.0004960317746736109,-0.00021258502965793014,-0.00021258502965793014,-9.117370180962442e-20,1.2882435735099127e-20,-8.550246105708136e-20,-0.008773688226938248,0.0010204081190750003,0.0006377550889737904,0.006432519294321537,0.0007288630004040897,-0.0,1.2266793639509465e-20,-0.0004081632650922984,1.407082689566717e-20,2.710505431213761e-20,-0.00025510202976875007,1.3552527156068805e-20,-0.0007971939048729837,-0.0002915451768785715,8.656750133218314e-19,-0.008773688226938248,0.0010204081190750003,0.0006377550889737904,0.0007288630004040897,0.006432519294321537,-0.0,1.5013927500664126e-20,1.2898709544298827e-20,-0.0004081632650922984,2.734444232011502e-20,-9.630767744520435e-21,-0.00025510202976875007,1.0842021724855044e-18,-0.0002915451768785715,-0.0007971939048729837,0.0009920635493472219,-0.0029761905316263437,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0005952381179668009,-0.00029761905898340046,1.2266793639509465e-20,1.5013927500664126e-20,-0.0,0.00019841270113829523,2.3464444220390638e-22,-1.5239956496310414e-23,-4.743384504624082e-20,-6.776263578034403e-21,-6.776263578034403e-21,1.4207672174617668e-21,4.426922020816812e-37,9.836099377663777e-22,0.0010204081190750003,-0.0006802721181884408,-3.4834766330761554e-20,-0.0004081632650922984,1.2898709544298827e-20,-0.0,2.3464444220390638e-22,0.0002721088530961424,-5.0736983825369805e-23,3.9107409558339293e-22,1.3552527156068805e-20,-7.762002051849684e-22,4.0657581468206416e-20,-3.3881317890172014e-21,-3.7291287671452237e-22,0.0010204081190750003,-0.0006802721181884408,-3.3881317890172014e-20,1.407082689566717e-20,-0.0004081632650922984,-0.0,-1.5239956496310414e-23,-5.0736983825369805e-23,0.0002721088530961424,-2.539992644203615e-23,7.518378327816896e-23,1.3552527156068805e-20,-9.909567192835585e-23,-5.4730053839369454e-21,6.279179728678318e-20,0.00041335978312417865,1.413873454654865e-19,-0.0004960317746736109,2.710505431213761e-20,2.734444232011502e-20,-0.0,-4.743384504624082e-20,3.9107409558339293e-22,-2.539992644203615e-23,8.26719551696442e-05,-0.0,0.0,2.691464969436948e-21,3.76158192263132e-37,1.2802880791503594e-21,0.0006377550889737904,-1.3740486178813008e-20,-0.00021258502965793014,-0.00025510202976875007,-9.630767744520435e-21,-0.0,-6.776263578034403e-21,1.3552527156068805e-20,7.518378327816896e-23,-0.0,8.50340147735551e-05,2.9070406366995195e-21,3.013522692224676e-20,-0.0,1.4684332730681943e-22,0.0006377550889737904,-1.1612026870298325e-20,-0.00021258502965793014,1.3552527156068805e-20,-0.00025510202976875007,-0.0,-6.776263578034403e-21,-7.762002051849684e-22,1.3552527156068805e-20,0.0,2.9070406366995195e-21,8.50340147735551e-05,-1.5160159744759325e-21,-5.1529741324809374e-21,3.013522692224676e-20,0.0005314626032486558,-1.0565851321482877e-19,-9.117370180962442e-20,-0.0007971939048729837,1.0842021724855044e-18,-0.0,1.4207672174617668e-21,4.0657581468206416e-20,-9.909567192835585e-23,2.691464969436948e-21,3.013522692224676e-20,-1.5160159744759325e-21,0.0001594387722434476,-1.4136501158894758e-19,-1.4265176857995624e-19,0.0007288630004040897,2.2152843538230542e-20,1.2882435735099127e-20,-0.0002915451768785715,-0.0002915451768785715,-0.0,4.426922020816812e-37,-3.3881317890172014e-21,-5.4730053839369454e-21,3.76158192263132e-37,-0.0,-5.1529741324809374e-21,-1.4136501158894758e-19,0.00011661807366181165,-6.030957690252786e-20,0.0005314626032486558,-1.589980465561346e-19,-8.550246105708136e-20,8.656750133218314e-19,-0.0007971939048729837,-0.0,9.836099377663777e-22,-3.7291287671452237e-22,6.279179728678318e-20,1.2802880791503594e-21,1.4684332730681943e-22,3.013522692224676e-20,-1.4265176857995624e-19,-6.030957690252786e-20,0.0001594387722434476,4.0,7.0,6.0,7.0,0.036613721400499344,-0.01034985389560461,-0.006713131908327341,-0.007598396390676498,-0.006713131908327341,0.0008503401186317205,0.0007653061184100807,0.0008746355888433754,0.0007653061184100807,0.00035430840216577053,0.000546647235751152,0.00047831633128225803,0.0004555393534246832,0.000546647235751152,0.00035430840216577053,-0.01034985389560461,0.012852284125983715,0.0007653061184100807,0.0008746355888433754,0.0007653061184100807,-0.0025510203558951616,-0.0005102040595375001,-0.000583090353757143,-0.0005102040595375001,1.006877975058901e-19,6.75881846816263e-20,3.082064622614924e-20,1.7430879780297316e-19,2.031625700911847e-20,1.1777102878436786e-19,-0.006713131908327341,0.0007653061184100807,0.004080114420503378,0.000546647235751152,0.00047831633128225803,-0.0,-0.00025510202976875007,6.718379675966444e-20,3.3881317890172014e-20,-0.00042517005931586027,-0.00018221575010102242,-0.0001594387722434476,1.344314932216486e-19,1.7416660997931927e-20,8.704892691103753e-20,-0.007598396390676498,0.0008746355888433754,0.000546647235751152,0.005544824991375208,0.000546647235751152,-0.0,4.143660304388524e-21,-0.0003498542355373502,3.386963719519397e-20,-0.0,-0.00021865889721084386,-3.3881317890172014e-21,-0.00068330904468894,-0.00021865889721084386,5.6577003229034455e-19,-0.006713131908327341,0.0007653061184100807,0.00047831633128225803,0.000546647235751152,0.004080114420503378,-0.0,-2.4593388236779966e-21,-3.101293784968976e-21,-0.00025510202976875007,-4.097777629785973e-21,-2.3106745958804706e-20,-0.0001594387722434476,6.911788849595091e-19,-0.00018221575010102242,-0.00042517005931586027,0.0008503401186317205,-0.0025510203558951616,-0.0,-0.0,-0.0,0.0008503401186317205,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007653061184100807,-0.0005102040595375001,-0.00025510202976875007,4.143660304388524e-21,-2.4593388236779966e-21,-0.0,0.0001700680295471102,7.879397050103309e-23,1.2556945263256402e-22,-3.3881317890172014e-20,-0.0,1.6940658945086007e-21,-7.85353415066233e-22,-2.4948464504076693e-37,-4.324942913301915e-22,0.0008746355888433754,-0.000583090353757143,6.718379675966444e-20,-0.0003498542355373502,-3.101293784968976e-21,-0.0,7.879397050103309e-23,0.0002332361473236233,-4.345417450998128e-22,1.3132327785750124e-22,-2.710505431213761e-20,-1.3098355017550238e-22,-6.776263578034403e-20,3.3881317890172014e-21,-6.65272679907354e-22,0.0007653061184100807,-0.0005102040595375001,3.3881317890172014e-20,3.386963719519397e-20,-0.00025510202976875007,-0.0,1.2556945263256402e-22,-4.345417450998128e-22,0.0001700680295471102,2.0928241263975704e-22,5.815040831182375e-23,-1.1858461261560205e-20,-8.487143695638991e-22,-9.595528557955969e-21,-3.8270121731702437e-20,0.00035430840216577053,1.006877975058901e-19,-0.00042517005931586027,-0.0,-4.097777629785973e-21,-0.0,-3.3881317890172014e-20,1.3132327785750124e-22,2.0928241263975704e-22,7.086167897796258e-05,-0.0,0.0,-2.414025643540143e-21,0.0,-2.0826180333324382e-21,0.000546647235751152,6.75881846816263e-20,-0.00018221575010102242,-0.00021865889721084386,-2.3106745958804706e-20,-0.0,-0.0,-2.710505431213761e-20,5.815040831182375e-23,-0.0,7.288629421964288e-05,7.463186185764975e-21,-4.671792668842471e-20,-0.0,9.6917349290002e-23,0.00047831633128225803,3.082064622614924e-20,-0.0001594387722434476,-3.3881317890172014e-21,-0.0001594387722434476,-0.0,1.6940658945086007e-21,-1.3098355017550238e-22,-1.1858461261560205e-20,0.0,7.463186185764975e-21,5.3146257414482534e-05,-2.558272381534886e-22,-5.80555380060957e-21,-2.436848558304504e-20,0.0004555393534246832,1.7430879780297316e-19,1.344314932216486e-19,-0.00068330904468894,6.911788849595091e-19,-0.0,-7.85353415066233e-22,-6.776263578034403e-20,-8.487143695638991e-22,-2.414025643540143e-21,-4.671792668842471e-20,-2.558272381534886e-22,0.000136661808937788,-6.869915933011891e-20,-8.827623029551895e-20,0.000546647235751152,2.031625700911847e-20,1.7416660997931927e-20,-0.00021865889721084386,-0.00018221575010102242,-0.0,-2.4948464504076693e-37,3.3881317890172014e-21,-9.595528557955969e-21,0.0,-0.0,-5.80555380060957e-21,-6.869915933011891e-20,7.288629421964288e-05,-4.1140083028091986e-20,0.00035430840216577053,1.1777102878436786e-19,8.704892691103753e-20,5.6577003229034455e-19,-0.00042517005931586027,-0.0,-4.324942913301915e-22,-6.65272679907354e-22,-3.8270121731702437e-20,-2.0826180333324382e-21,9.6917349290002e-23,-2.436848558304504e-20,-8.827623029551895e-20,-4.1140083028091986e-20,7.086167897796258e-05,4.0,7.0,6.0,8.0,0.032669004052877426,-0.009130527265369892,-0.005920493043959141,-0.006701743230223656,-0.005303996615111828,0.0007440476329065859,0.0006696428754366934,0.0007653061184100807,0.0005952381179668009,0.0003100198518950492,0.00047831633128225803,0.00037202381645329297,0.00039859695243649185,0.00042517005931586027,0.00024801588733680546,-0.009130527265369892,0.011295351199805737,0.0006696428754366934,0.0007653061184100807,0.0005952381179668009,-0.0022321429569274187,-0.00044642857392318547,-0.0005102040595375001,-0.00039682540227659047,-4.614320822273011e-22,-9.00482450380636e-20,2.1320523743004602e-20,-2.6551890202189845e-19,-9.569657676504806e-20,6.568439619009283e-20,-0.005920493043959141,0.0006696428754366934,0.003585600992664695,0.00047831633128225803,0.00037202381645329297,-3.7172646283065783e-19,-0.00022321428696159273,-1.699320947090756e-19,-4.0657581468206416e-20,-0.00037202381645329297,-0.0001594387722434476,-0.00012400794366840273,-1.6594931053251226e-19,-6.202643550032142e-20,4.19361215830521e-20,-0.006701743230223656,0.0007653061184100807,0.00047831633128225803,0.004872980527579784,0.00042517005931586027,-4.248302432350375e-19,-9.00482450380636e-20,-0.0003061224415432662,-1.1080165730739354e-19,-0.0,-0.00019132652960252017,-1.7135077085191512e-20,-0.0005978954141028225,-0.0001700680295471102,2.574566310852855e-19,-0.005303996615111828,0.0005952381179668009,0.00037202381645329297,0.00042517005931586027,0.00275550689548254,-3.304235253882952e-19,-7.548825066999642e-20,-1.6615582134231495e-19,-0.0001700680295471102,-1.7745373202955124e-20,-4.951536104719955e-20,-0.00010629251482896507,2.3601680754155287e-19,-0.00012147716188337654,-0.00024801588733680546,0.0007440476329065859,-0.0022321429569274187,-3.7172646283065783e-19,-4.248302432350375e-19,-3.304235253882952e-19,0.0007440476329065859,2.4781765050356993e-19,2.8322015354022696e-19,2.202823588753282e-19,-0.0,4.998681820163792e-35,-1.1835267998909313e-35,1.4739259637909209e-34,5.312227145118257e-35,-3.6925052713227575e-35,0.0006696428754366934,-0.00044642857392318547,-0.00022321428696159273,-9.00482450380636e-20,-7.548825066999642e-20,2.4781765050356993e-19,0.00014880952949170023,5.664402941557569e-20,4.4135572213610726e-20,-0.0,1.6940658945086007e-21,1.6940658945086007e-21,3.1851241995572483e-35,1.1540177590879648e-35,5.550727241980685e-22,0.0007653061184100807,-0.0005102040595375001,-1.699320947090756e-19,-0.0003061224415432662,-1.6615582134231495e-19,2.8322015354022696e-19,5.664402941557569e-20,0.0002040816325461492,6.042030278233632e-20,-1.504632769052528e-36,3.3986418295580265e-20,-0.0,1.0620756080875938e-19,3.021015139116816e-20,-5.717604522399606e-35,0.0005952381179668009,-0.00039682540227659047,-4.0657581468206416e-20,-1.1080165730739354e-19,-0.0001700680295471102,2.202823588753282e-19,4.4135572213610726e-20,6.042030278233632e-20,0.00011337868636474013,1.3183774138545018e-22,1.2413220344683356e-35,-7.543635154890725e-21,6.947304200857297e-35,5.763200779997791e-21,-1.9242747826260832e-20,0.0003100198518950492,-4.614320822273011e-22,-0.00037202381645329297,-0.0,-1.7745373202955124e-20,-0.0,-0.0,-1.504632769052528e-36,1.3183774138545018e-22,6.200397183420137e-05,-0.0,0.0,4.3461919831444105e-37,1.128474576789396e-36,2.649550580732021e-21,0.00047831633128225803,-9.00482450380636e-20,-0.0001594387722434476,-0.00019132652960252017,-4.951536104719955e-20,4.998681820163792e-35,1.6940658945086007e-21,3.3986418295580265e-20,1.2413220344683356e-35,-0.0,6.377550744218752e-05,7.706671221739737e-22,6.637972550547461e-20,1.8881344215583318e-20,-2.954261241653078e-35,0.00037202381645329297,2.1320523743004602e-20,-0.00012400794366840273,-1.7135077085191512e-20,-0.00010629251482896507,-1.1835267998909313e-35,1.6940658945086007e-21,-0.0,-7.543635154890725e-21,0.0,7.706671221739737e-22,3.543083948898129e-05,2.407412430484045e-35,4.235164736271502e-21,-1.714023080814863e-20,0.00039859695243649185,-2.6551890202189845e-19,-1.6594931053251226e-19,-0.0005978954141028225,2.3601680754155287e-19,1.4739259637909209e-34,3.1851241995572483e-35,1.0620756080875938e-19,6.947304200857297e-35,4.3461919831444105e-37,6.637972550547461e-20,2.407412430484045e-35,0.00011957908282056451,7.080503838505674e-20,-5.900420188538822e-20,0.00042517005931586027,-9.569657676504806e-20,-6.202643550032142e-20,-0.0001700680295471102,-0.00012147716188337654,5.312227145118257e-35,1.1540177590879648e-35,3.021015139116816e-20,5.763200779997791e-21,1.128474576789396e-36,1.8881344215583318e-20,4.235164736271502e-21,7.080503838505674e-20,4.8590864025754854e-05,1.0732676525811204e-20,0.00024801588733680546,6.568439619009283e-20,4.19361215830521e-20,2.574566310852855e-19,-0.00024801588733680546,-3.6925052713227575e-35,5.550727241980685e-22,-5.717604522399606e-35,-1.9242747826260832e-20,2.649550580732021e-21,-2.954261241653078e-35,-1.714023080814863e-20,-5.900420188538822e-20,1.0732676525811204e-20,3.543083948898129e-05,4.0,7.0,7.0,3.0,0.06305980682373047,-0.019387755542993546,-0.012606292963027954,-0.012606292963027954,-0.02372448891401291,0.001700680237263441,0.0015306122368201613,0.0015306122368201613,0.0030612244736403227,0.0007086168043315411,0.0009566326625645161,0.0019132653251290321,0.0007086168043315411,0.0019132653251290321,0.0025510203558951616,-0.019387755542993546,0.024829931557178497,0.0015306122368201613,0.0015306122368201613,0.0030612244736403227,-0.005102040711790323,-0.0010204081190750003,-0.0010204081190750003,-0.0020408162381500006,1.5307313277417627e-19,6.098637220230962e-20,3.3751362646061104e-19,1.1010312912948665e-19,3.409406098890241e-19,2.7189135153452095e-18,-0.012606292963027954,0.0015306122368201613,0.00788690522313118,0.0009566326625645161,0.0019132653251290321,-0.0,-0.0005102040595375001,3.662845255912024e-20,3.398641894181512e-19,-0.0008503401186317205,-0.0003188775444868952,-0.0006377550889737904,1.2081753498040066e-19,2.168404344971009e-19,1.69932097294015e-18,-0.012606292963027954,0.0015306122368201613,0.0009566326625645161,0.00788690522313118,0.0019132653251290321,-0.0,-2.822584203688148e-20,-0.0005102040595375001,3.398641894181512e-19,-2.710505431213761e-20,-0.0003188775444868952,1.1127215505487429e-19,-0.0008503401186317205,-0.0006377550889737904,1.69932097294015e-18,-0.02372448891401291,0.0030612244736403227,0.0019132653251290321,0.0019132653251290321,0.049234695732593536,-0.0,1.076427942963406e-21,-2.350558716623913e-21,-0.0030612244736403227,4.197292788913644e-20,-9.147955830346444e-20,-0.0019132653251290321,5.421010862427522e-20,-0.0019132653251290321,-0.015306122601032257,0.001700680237263441,-0.005102040711790323,-0.0,-0.0,-0.0,0.001700680237263441,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015306122368201613,-0.0010204081190750003,-0.0005102040595375001,-2.822584203688148e-20,1.076427942963406e-21,-0.0,0.0003401360590942204,1.911437892715669e-21,-2.0658201145240415e-36,-5.421010862427522e-20,-0.0,-0.0,3.9565373479861106e-21,-3.58809331150168e-22,-2.8150658931404854e-35,0.0015306122368201613,-0.0010204081190750003,3.662845255912024e-20,-0.0005102040595375001,-2.350558716623913e-21,-0.0,1.911437892715669e-21,0.0003401360590942204,-0.0,3.185729821192782e-21,-2.0328790734103208e-20,7.83519572207971e-22,-4.0657581468206416e-20,-0.0,1.1539114308025694e-35,0.0030612244736403227,-0.0020408162381500006,3.398641894181512e-19,3.398641894181512e-19,-0.0030612244736403227,-0.0,-2.0658201145240415e-36,-0.0,0.0020408162381500006,-4.06031884557679e-36,-1.6250034192753228e-35,-3.398641894181512e-19,-6.018531076210112e-36,-3.398641894181512e-19,-2.7189135153452095e-18,0.0007086168043315411,1.5307313277417627e-19,-0.0008503401186317205,-2.710505431213761e-20,4.197292788913644e-20,-0.0,-5.421010862427522e-20,3.185729821192782e-21,-4.06031884557679e-36,0.00014172335795592517,-6.776263578034403e-21,0.0,2.6083931955735184e-23,-5.98015535087914e-22,-4.81482486096809e-35,0.0009566326625645161,6.098637220230962e-20,-0.0003188775444868952,-0.0003188775444868952,-9.147955830346444e-20,-0.0,-0.0,-2.0328790734103208e-20,-1.6250034192753228e-35,-6.776263578034403e-21,0.00010629251482896507,3.049318610115481e-20,-4.2742587137374356e-20,-0.0,-8.547370695601657e-35,0.0019132653251290321,3.3751362646061104e-19,-0.0006377550889737904,1.1127215505487429e-19,-0.0019132653251290321,-0.0,-0.0,7.83519572207971e-22,-3.398641894181512e-19,0.0,3.049318610115481e-20,0.0006377550889737904,1.3058659536799517e-21,-2.1241512161751876e-19,-1.69932097294015e-18,0.0007086168043315411,1.1010312912948665e-19,1.2081753498040066e-19,-0.0008503401186317205,5.421010862427522e-20,-0.0,3.9565373479861106e-21,-4.0657581468206416e-20,-6.018531076210112e-36,2.6083931955735184e-23,-4.2742587137374356e-20,1.3058659536799517e-21,0.00014172335795592517,-0.0,1.1540823309212009e-35,0.0019132653251290321,3.409406098890241e-19,2.168404344971009e-19,-0.0006377550889737904,-0.0019132653251290321,-0.0,-3.58809331150168e-22,-0.0,-3.398641894181512e-19,-5.98015535087914e-22,-0.0,-2.1241512161751876e-19,-0.0,0.0006377550889737904,-1.69932097294015e-18,0.0025510203558951616,2.7189135153452095e-18,1.69932097294015e-18,1.69932097294015e-18,-0.015306122601032257,-0.0,-2.8150658931404854e-35,1.1539114308025694e-35,-2.7189135153452095e-18,-4.81482486096809e-35,-8.547370695601657e-35,-1.69932097294015e-18,1.1540823309212009e-35,-1.69932097294015e-18,0.0076530613005161285,4.0,7.0,7.0,4.0,0.05072597786784172,-0.014999999664723873,-0.009741709567606449,-0.009741709567606449,-0.014999999664723873,0.0012755101779475808,0.0011479591485112906,0.0011479591485112906,0.001836734707467258,0.0005314626032486558,0.000717474496923387,0.0011479591485112906,0.0005314626032486558,0.0011479591485112906,0.0012755101779475808,-0.014999999664723873,0.018928570672869682,0.0011479591485112906,0.0011479591485112906,0.001836734707467258,-0.0038265306502580643,-0.0007653061184100807,-0.0007653061184100807,-0.0012244897661730647,-9.893851472055417e-19,-9.413858990680461e-23,3.2832775990881553e-19,-1.008018010888758e-18,3.502357935286473e-19,-3.1939141238879664e-18,-0.009741709567606449,0.0011479591485112906,0.00601084204390645,0.000717474496923387,0.0011479591485112906,7.349996567889066e-19,-0.00038265305920504034,-7.203898894124184e-19,-8.703297654238204e-19,-0.0006377550889737904,-0.00023915816564112902,-0.00038265305920504034,-5.08147234952617e-19,2.574980159653073e-19,-2.027786329173985e-18,-0.009741709567606449,0.0011479591485112906,0.000717474496923387,0.00601084204390645,0.0011479591485112906,7.349996567889066e-19,-7.136743202118301e-19,-0.00038265305920504034,-8.703297654238204e-19,1.4907779871675686e-19,-0.00023915816564112902,-6.771074053666398e-19,-0.0006377550889737904,-0.00038265305920504034,-2.027786329173985e-18,-0.014999999664723873,0.001836734707467258,0.0011479591485112906,0.0011479591485112906,0.018928570672869682,1.0287250299579511e-18,-1.3309885097109797e-18,-1.3122389101638168e-18,-0.0012244897661730647,1.4315823575938597e-19,-9.435463131754562e-19,-0.0007653061184100807,-2.710505431213761e-19,-0.0007653061184100807,-0.0038265306502580643,0.0012755101779475808,-0.0038265306502580643,7.349996567889066e-19,7.349996567889066e-19,1.0287250299579511e-18,0.0012755101779475808,-2.9882615656695866e-19,-2.9882615656695866e-19,-4.781218711866492e-19,2.360167946168558e-20,-5.310378040437969e-20,-8.49660473545378e-20,2.360167946168558e-20,-8.49660473545378e-20,1.4161007677011348e-19,0.0011479591485112906,-0.0007653061184100807,-0.00038265305920504034,-7.136743202118301e-19,-1.3309885097109797e-18,-2.9882615656695866e-19,0.00025510202976875007,2.3553916243659178e-20,3.9396502619103844e-20,1.3552527156068805e-19,4.743384504624082e-20,6.776263578034403e-20,1.1094125696045893e-19,-6.5545859391413145e-22,4.248302432350375e-19,0.0011479591485112906,-0.0007653061184100807,-7.203898894124184e-19,-0.00038265305920504034,-1.3122389101638168e-18,-2.9882615656695866e-19,2.3553916243659178e-20,0.00025510202976875007,3.9396502619103844e-20,1.1150657028565357e-19,4.818433696872223e-20,-1.2904628449712235e-22,1.4230153513872246e-19,6.098637220230962e-20,4.248302432350375e-19,0.001836734707467258,-0.0012244897661730647,-8.703297654238204e-19,-8.703297654238204e-19,-0.0012244897661730647,-4.781218711866492e-19,3.9396502619103844e-20,3.9396502619103844e-20,0.0008163265301845968,1.8126090188466044e-19,3.851859888774472e-34,-4.827458689719574e-20,1.8126090188466044e-19,-4.827458689719574e-20,2.977857701515201e-19,0.0005314626032486558,-9.893851472055417e-19,-0.0006377550889737904,1.4907779871675686e-19,1.4315823575938597e-19,2.360167946168558e-20,1.3552527156068805e-19,1.1150657028565357e-19,1.8126090188466044e-19,0.00010629251482896507,-2.0328790734103208e-20,-3.3881317890172014e-20,-1.8145465278727964e-20,-5.773646358611974e-20,-2.360167946168558e-20,0.000717474496923387,-9.413858990680461e-23,-0.00023915816564112902,-0.00023915816564112902,-9.435463131754562e-19,-5.310378040437969e-20,4.743384504624082e-20,4.818433696872223e-20,3.851859888774472e-34,-2.0328790734103208e-20,7.97193861217238e-05,3.049318610115481e-20,1.1373611930451662e-19,6.098637220230962e-20,2.6551890202189845e-19,0.0011479591485112906,3.2832775990881553e-19,-0.00038265305920504034,-6.771074053666398e-19,-0.0007653061184100807,-8.49660473545378e-20,6.776263578034403e-20,-1.2904628449712235e-22,-4.827458689719574e-20,-3.3881317890172014e-20,3.049318610115481e-20,0.00025510202976875007,1.1307299187188758e-19,2.3293412511841795e-20,5.848029411973069e-19,0.0005314626032486558,-1.008018010888758e-18,-5.08147234952617e-19,-0.0006377550889737904,-2.710505431213761e-19,2.360167946168558e-20,1.1094125696045893e-19,1.4230153513872246e-19,1.8126090188466044e-19,-1.8145465278727964e-20,1.1373611930451662e-19,1.1307299187188758e-19,0.00010629251482896507,-4.838911586911739e-20,-2.360167946168558e-20,0.0011479591485112906,3.502357935286473e-19,2.574980159653073e-19,-0.00038265305920504034,-0.0007653061184100807,-8.49660473545378e-20,-6.5545859391413145e-22,6.098637220230962e-20,-4.827458689719574e-20,-5.773646358611974e-20,6.098637220230962e-20,2.3293412511841795e-20,-4.838911586911739e-20,0.00025510202976875007,5.848029411973069e-19,0.0012755101779475808,-3.1939141238879664e-18,-2.027786329173985e-18,-2.027786329173985e-18,-0.0038265306502580643,1.4161007677011348e-19,4.248302432350375e-19,4.248302432350375e-19,2.977857701515201e-19,-2.360167946168558e-20,2.6551890202189845e-19,5.848029411973069e-19,-2.360167946168558e-20,5.848029411973069e-19,0.0012755101779475808,4.0,7.0,7.0,5.0,0.04250789433717728,-0.01224489789456129,-0.007946428842842579,-0.007946428842842579,-0.010364431887865067,0.0010204081190750003,0.000918367353733629,0.000918367353733629,0.0012244897661730647,0.00042517005931586027,0.0005739795742556453,0.0007653061184100807,0.00042517005931586027,0.0007653061184100807,0.0007288630004040897,-0.01224489789456129,0.015306122601032257,0.000918367353733629,0.000918367353733629,0.0012244897661730647,-0.0030612244736403227,-0.0006122448830865324,-0.0006122448830865324,-0.0008163265301845968,1.3436763875576863e-20,-5.389519062531863e-19,-2.8164335600718424e-18,5.4105408884476176e-20,-2.8062691647047908e-18,-7.218068187824488e-18,-0.007946428842842579,0.000918367353733629,0.004859693814069033,0.0005739795742556453,0.0007653061184100807,-4.43777073659506e-19,-0.0003061224415432662,4.0297951772201916e-19,-3.2417772756721222e-18,-0.0005102040595375001,-0.00019132652960252017,-0.00025510202976875007,2.2309067582903692e-20,-1.8021033339286922e-18,-4.4337960303541665e-18,-0.007946428842842579,0.000918367353733629,0.0005739795742556453,0.004859693814069033,0.0007653061184100807,-4.43777073659506e-19,3.4536760297922547e-19,-0.0003061224415432662,-3.2417772756721222e-18,-3.3881317890172014e-19,-0.00019132652960252017,-1.9111304949517034e-18,-0.0005102040595375001,-0.00025510202976875007,-4.4337960303541665e-18,-0.010364431887865067,0.0012244897661730647,0.0007653061184100807,0.0007653061184100807,0.00955539382994175,-9.484569535999385e-18,-1.873026213239295e-18,-1.8628618178722435e-18,-0.0006122448830865324,-3.365674455771846e-18,-1.4101247755163513e-18,-0.00038265305920504034,-3.3203691532368573e-18,-0.00038265305920504034,-0.0014577260008081794,0.0010204081190750003,-0.0030612244736403227,-4.43777073659506e-19,-4.43777073659506e-19,-9.484569535999385e-18,0.0010204081190750003,-3.9331766042648767e-19,-3.9331766042648767e-19,1.7312265957866333e-19,-1.8881344215583318e-20,4.24830236772689e-20,4.531522353246055e-19,-1.8881344215583318e-20,4.531522353246055e-19,1.4565608339487e-18,0.000918367353733629,-0.0006122448830865324,-0.0003061224415432662,3.4536760297922547e-19,-1.873026213239295e-18,-3.9331766042648767e-19,0.0002040816325461492,-5.911673722278664e-20,1.219996794733155e-19,-1.0164395367051604e-19,-6.776263578034403e-21,1.1180834903756764e-19,-9.03933409122116e-20,1.0195925811791506e-19,1.9420811377809942e-19,0.000918367353733629,-0.0006122448830865324,4.0297951772201916e-19,-0.0003061224415432662,-1.8628618178722435e-18,-3.9331766042648767e-19,-5.911673722278664e-20,0.0002040816325461492,1.219996794733155e-19,-9.038965091119779e-20,-2.5988228007046044e-20,1.0195925811791506e-19,-1.1519648082658485e-19,1.0842021724855044e-19,1.9420811377809942e-19,0.0012244897661730647,-0.0008163265301845968,-3.2417772756721222e-18,-3.2417772756721222e-18,-0.0006122448830865324,1.7312265957866333e-19,1.219996794733155e-19,1.219996794733155e-19,0.0004081632650922984,2.718913463646421e-19,2.0391851623583012e-19,3.398641894181512e-19,2.718913463646421e-19,3.398641894181512e-19,7.768324551123977e-19,0.00042517005931586027,1.3436763875576863e-20,-0.0005102040595375001,-3.3881317890172014e-19,-3.365674455771846e-18,-1.8881344215583318e-20,-1.0164395367051604e-19,-9.038965091119779e-20,2.718913463646421e-19,8.50340147735551e-05,6.776263578034403e-21,8.809142651444724e-20,1.363128702884607e-20,1.6049141775452253e-19,4.855202779829e-19,0.0005739795742556453,-5.389519062531863e-19,-0.00019132652960252017,-0.00019132652960252017,-1.4101247755163513e-18,4.24830236772689e-20,-6.776263578034403e-21,-2.5988228007046044e-20,2.0391851623583012e-19,6.776263578034403e-21,6.377550744218752e-05,8.352964175849093e-20,-1.1869873769074022e-19,6.606856988583543e-20,1.21380069495725e-19,0.0007653061184100807,-2.8164335600718424e-18,-0.00025510202976875007,-1.9111304949517034e-18,-0.00038265305920504034,4.531522353246055e-19,1.1180834903756764e-19,1.0195925811791506e-19,3.398641894181512e-19,8.809142651444724e-20,8.352964175849093e-20,0.00012755101488437504,1.699320947090756e-19,2.0152203182959622e-19,3.9215099972066405e-19,0.00042517005931586027,5.4105408884476176e-20,2.2309067582903692e-20,-0.0005102040595375001,-3.3203691532368573e-18,-1.8881344215583318e-20,-9.03933409122116e-20,-1.1519648082658485e-19,2.718913463646421e-19,1.363128702884607e-20,-1.1869873769074022e-19,1.699320947090756e-19,8.50340147735551e-05,8.678830039459797e-20,4.855202779829e-19,0.0007653061184100807,-2.8062691647047908e-18,-1.8021033339286922e-18,-0.00025510202976875007,-0.00038265305920504034,4.531522353246055e-19,1.0195925811791506e-19,1.0842021724855044e-19,3.398641894181512e-19,1.6049141775452253e-19,6.606856988583543e-20,2.0152203182959622e-19,8.678830039459797e-20,0.00012755101488437504,3.9215099972066405e-19,0.0007288630004040897,-7.218068187824488e-18,-4.4337960303541665e-18,-4.4337960303541665e-18,-0.0014577260008081794,1.4565608339487e-18,1.9420811377809942e-19,1.9420811377809942e-19,7.768324551123977e-19,4.855202779829e-19,1.21380069495725e-19,3.9215099972066405e-19,4.855202779829e-19,3.9215099972066405e-19,0.00036443150020204484,4.0,7.0,7.0,6.0,0.036613721400499344,-0.01034985389560461,-0.006713131908327341,-0.006713131908327341,-0.007598396390676498,0.0008503401186317205,0.0007653061184100807,0.0007653061184100807,0.0008746355888433754,0.00035430840216577053,0.00047831633128225803,0.000546647235751152,0.00035430840216577053,0.000546647235751152,0.0004555393534246832,-0.01034985389560461,0.012852284125983715,0.0007653061184100807,0.0007653061184100807,0.0008746355888433754,-0.0025510203558951616,-0.0005102040595375001,-0.0005102040595375001,-0.000583090353757143,1.0140864017329031e-19,1.715839323870785e-20,6.00793621982967e-20,7.90997147620544e-20,5.722338542413812e-20,1.318662122716656e-19,-0.006713131908327341,0.0007653061184100807,0.004080114420503378,0.00047831633128225803,0.000546647235751152,-0.0,-0.00025510202976875007,2.0904314569984048e-20,6.098637220230962e-20,-0.00042517005931586027,-0.0001594387722434476,-0.00018221575010102242,6.472558400021877e-20,3.059031196847017e-20,1.0511533343336846e-19,-0.006713131908327341,0.0007653061184100807,0.00047831633128225803,0.004080114420503378,0.000546647235751152,-0.0,-6.442683205080004e-21,-0.00025510202976875007,6.356210923222318e-20,1.3552527156068805e-20,-0.0001594387722434476,1.6940658945086007e-20,-0.00042517005931586027,-0.00018221575010102242,1.2214319530959346e-19,-0.007598396390676498,0.0008746355888433754,0.000546647235751152,0.000546647235751152,0.005544824991375208,-0.0,-3.4567433512129206e-21,-8.951011073522244e-21,-0.0003498542355373502,-2.2395717175449322e-21,-2.2783032380373773e-20,-0.00021865889721084386,-1.3552527156068805e-20,-0.00021865889721084386,-0.00068330904468894,0.0008503401186317205,-0.0025510203558951616,-0.0,-0.0,-0.0,0.0008503401186317205,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007653061184100807,-0.0005102040595375001,-0.00025510202976875007,-6.442683205080004e-21,-3.4567433512129206e-21,-0.0,0.0001700680295471102,9.004310176593575e-23,-5.1576991316241726e-23,-3.3881317890172014e-20,1.6940658945086007e-21,-0.0,1.8852625791126732e-22,1.379924402796532e-37,6.51248575791599e-22,0.0007653061184100807,-0.0005102040595375001,2.0904314569984048e-20,-0.00025510202976875007,-8.951011073522244e-21,-0.0,9.004310176593575e-23,0.0001700680295471102,3.9596907216359793e-22,1.5007183838018867e-22,-7.119655007756148e-21,-2.6235236739534023e-22,-2.710505431213761e-20,3.3881317890172014e-21,-1.8801241285026808e-22,0.0008746355888433754,-0.000583090353757143,6.098637220230962e-20,6.356210923222318e-20,-0.0003498542355373502,-0.0,-5.1576991316241726e-23,3.9596907216359793e-22,0.0002332361473236233,-8.596164903829259e-23,-3.5264990520220234e-22,-2.371692252312041e-20,6.599484620205129e-22,-2.6955111670241036e-20,-5.330236837487777e-20,0.00035430840216577053,1.0140864017329031e-19,-0.00042517005931586027,1.3552527156068805e-20,-2.2395717175449322e-21,-0.0,-3.3881317890172014e-20,1.5007183838018867e-22,-8.596164903829259e-23,7.086167897796258e-05,-0.0,0.0,-2.471932931231865e-21,0.0,-2.816054202441346e-22,0.00047831633128225803,1.715839323870785e-20,-0.0001594387722434476,-0.0001594387722434476,-2.2783032380373773e-20,-0.0,1.6940658945086007e-21,-7.119655007756148e-21,-3.5264990520220234e-22,-0.0,5.3146257414482534e-05,7.322510551668408e-21,-1.5949224819804383e-20,1.6940658945086007e-21,-6.88769324798807e-22,0.000546647235751152,6.00793621982967e-20,-0.00018221575010102242,1.6940658945086007e-20,-0.00021865889721084386,-0.0,-0.0,-2.6235236739534023e-22,-2.371692252312041e-20,0.0,7.322510551668408e-21,7.288629421964288e-05,-4.37253962487933e-22,-1.4269004507033242e-20,-4.087818342899092e-20,0.00035430840216577053,7.90997147620544e-20,6.472558400021877e-20,-0.00042517005931586027,-1.3552527156068805e-20,-0.0,1.8852625791126732e-22,-2.710505431213761e-20,6.599484620205129e-22,-2.471932931231865e-21,-1.5949224819804383e-20,-4.37253962487933e-22,7.086167897796258e-05,5.212510537848798e-21,-8.733001726190854e-22,0.000546647235751152,5.722338542413812e-20,3.059031196847017e-20,-0.00018221575010102242,-0.00021865889721084386,-0.0,1.379924402796532e-37,3.3881317890172014e-21,-2.6955111670241036e-20,0.0,1.6940658945086007e-21,-1.4269004507033242e-20,5.212510537848798e-21,7.288629421964288e-05,-4.564736433649929e-20,0.0004555393534246832,1.318662122716656e-19,1.0511533343336846e-19,1.2214319530959346e-19,-0.00068330904468894,-0.0,6.51248575791599e-22,-1.8801241285026808e-22,-5.330236837487777e-20,-2.816054202441346e-22,-6.88769324798807e-22,-4.087818342899092e-20,-8.733001726190854e-22,-4.564736433649929e-20,0.000136661808937788,4.0,7.0,7.0,7.0,0.032170187681913376,-0.008965014480054379,-0.005812682211399078,-0.005812682211399078,-0.005812682211399078,0.0007288630004040897,0.0006559766479767859,0.0006559766479767859,0.0006559766479767859,0.00030369291198439896,0.00040998542681336403,0.00040998542681336403,0.00030369291198439896,0.00040998542681336403,0.00030369291198439896,-0.008965014480054379,0.011078717187047005,0.0006559766479767859,0.0006559766479767859,0.0006559766479767859,-0.002186588943004608,-0.0004373177944216877,-0.0004373177944216877,-0.0004373177944216877,-2.1281224585972664e-20,-7.889760158043017e-21,-9.644059987664536e-21,-2.3581108190709725e-20,-1.8349339450328143e-20,-1.2890874754493015e-20,-0.005812682211399078,0.0006559766479767859,0.0035167639143764973,0.00040998542681336403,0.00040998542681336403,-0.0,-0.00021865889721084386,-9.718760697767897e-21,-0.0,-0.00036443150020204484,-0.000136661808937788,-0.000136661808937788,-4.035410311862749e-21,-1.5761039614861435e-20,1.3552527156068805e-20,-0.005812682211399078,0.0006559766479767859,0.00040998542681336403,0.0035167639143764973,0.00040998542681336403,-0.0,-1.0069353607138968e-20,-0.00021865889721084386,-1.108010692336768e-20,-1.3552527156068805e-20,-0.000136661808937788,-1.0164395367051604e-20,-0.00036443150020204484,-0.000136661808937788,-1.9856847036137626e-20,-0.005812682211399078,0.0006559766479767859,0.00040998542681336403,0.00040998542681336403,0.0035167639143764973,-0.0,-5.765510665702474e-21,-5.948652815406976e-21,-0.00021865889721084386,5.974099120559352e-21,-1.006112622965962e-20,-0.000136661808937788,-2.710505431213761e-20,-0.000136661808937788,-0.00036443150020204484,0.0007288630004040897,-0.002186588943004608,-0.0,-0.0,-0.0,0.0007288630004040897,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006559766479767859,-0.0004373177944216877,-0.00021865889721084386,-1.0069353607138968e-20,-5.765510665702474e-21,-0.0,0.00014577258843928576,5.684767962640943e-22,-3.7799011171826964e-22,6.776263578034403e-21,1.6940658945086007e-21,1.6940658945086007e-21,6.360678122621727e-22,3.2456937808862615e-37,1.9235354596613552e-22,0.0006559766479767859,-0.0004373177944216877,-9.718760697767897e-21,-0.00021865889721084386,-5.948652815406976e-21,-0.0,5.684767962640943e-22,0.00014577258843928576,2.6882284435367815e-22,9.474613775939217e-22,1.0759607353591235e-21,-1.73445206400261e-22,6.776263578034403e-21,3.3881317890172014e-21,-6.305601747485369e-22,0.0006559766479767859,-0.0004373177944216877,-0.0,-1.108010692336768e-20,-0.00021865889721084386,-0.0,-3.7799011171826964e-22,2.6882284435367815e-22,0.00014577258843928576,-6.29983561603031e-22,-1.4010650566332992e-22,1.6940658945086007e-21,4.480381075808622e-22,2.728314694425513e-21,4.735164720404263e-21,0.00030369291198439896,-2.1281224585972664e-20,-0.00036443150020204484,-1.3552527156068805e-20,5.974099120559352e-21,-0.0,6.776263578034403e-21,9.474613775939217e-22,-6.29983561603031e-22,6.073858094168827e-05,-0.0,0.0,1.2633654097680093e-21,3.76158192263132e-37,-1.8411861056822654e-21,0.00040998542681336403,-7.889760158043017e-21,-0.000136661808937788,-0.000136661808937788,-1.006112622965962e-20,-0.0,1.6940658945086007e-21,1.0759607353591235e-21,-1.4010650566332992e-22,-0.0,4.5553937525255606e-05,1.3886032000324695e-21,-1.4211134579793992e-21,2.541098841762901e-21,-2.3351083015044206e-22,0.00040998542681336403,-9.644059987664536e-21,-0.000136661808937788,-1.0164395367051604e-20,-0.000136661808937788,-0.0,1.6940658945086007e-21,-1.73445206400261e-22,1.6940658945086007e-21,0.0,1.3886032000324695e-21,4.5553937525255606e-05,-2.8907533979317685e-22,2.712581097173708e-21,-3.909382852899501e-22,0.00030369291198439896,-2.3581108190709725e-20,-4.035410311862749e-21,-0.00036443150020204484,-2.710505431213761e-20,-0.0,6.360678122621727e-22,6.776263578034403e-21,4.480381075808622e-22,1.2633654097680093e-21,-1.4211134579793992e-21,-2.8907533979317685e-22,6.073858094168827e-05,4.8215719748798096e-21,1.0490990749032618e-21,0.00040998542681336403,-1.8349339450328143e-20,-1.5761039614861435e-20,-0.000136661808937788,-0.000136661808937788,-0.0,3.2456937808862615e-37,3.3881317890172014e-21,2.728314694425513e-21,3.76158192263132e-37,2.541098841762901e-21,2.712581097173708e-21,4.8215719748798096e-21,4.5553937525255606e-05,4.894691832972656e-21,0.00030369291198439896,-1.2890874754493015e-20,1.3552527156068805e-20,-1.9856847036137626e-20,-0.00036443150020204484,-0.0,1.9235354596613552e-22,-6.305601747485369e-22,4.735164720404263e-21,-1.8411861056822654e-21,-2.3351083015044206e-22,-3.909382852899501e-22,1.0490990749032618e-21,4.894691832972656e-21,6.073858094168827e-05,4.0,7.0,7.0,8.0,0.028696322813630104,-0.007908163592219353,-0.0051259566098451614,-0.0051259566098451614,-0.004591836594045162,0.0006377550889737904,0.0005739795742556453,0.0005739795742556453,0.0005102040595375001,0.0002657313016243279,0.0003587372484616935,0.0003188775444868952,0.0002657313016243279,0.0003188775444868952,0.00021258502965793014,-0.007908163592219353,0.009736394509673119,0.0005739795742556453,0.0005739795742556453,0.0005102040595375001,-0.0019132653251290321,-0.00038265305920504034,-0.00038265305920504034,-0.0003401360590942204,-5.294343661251511e-19,2.0305684606914276e-20,9.962129027767075e-20,-4.967770170476162e-19,9.125175405523704e-20,-1.6509229971911904e-19,-0.0051259566098451614,0.0005739795742556453,0.003090454963967204,0.0003587372484616935,0.0003188775444868952,4.689870571882847e-19,-0.00019132652960252017,-3.4569966429637723e-19,-2.236166980751353e-19,-0.0003188775444868952,-0.00011957908282056451,-0.00010629251482896507,-2.662677331208062e-19,1.5166772706405453e-19,-9.739596763474997e-20,-0.0051259566098451614,0.0005739795742556453,0.0003587372484616935,0.003090454963967204,0.0003188775444868952,4.689870571882847e-19,-3.475827926596425e-19,-0.00019132652960252017,-2.191142506034326e-19,1.0164395367051604e-19,-0.00011957908282056451,-1.1350241493207625e-19,-0.0003188775444868952,-0.00010629251482896507,-8.98295785506655e-20,-0.004591836594045162,0.0005102040595375001,0.0003188775444868952,0.0003188775444868952,0.002374878618866205,9.920962316631842e-19,-1.429806504216285e-19,-1.4172743301951944e-19,-0.00014577258843928576,2.8290675548564593e-19,-9.886144733685837e-20,-9.110787505051121e-05,1.4230153513872246e-19,-9.110787505051121e-05,-0.00021258502965793014,0.0006377550889737904,-0.0019132653251290321,4.689870571882847e-19,4.689870571882847e-19,9.920962316631842e-19,0.0006377550889737904,-1.4941307828347933e-19,-1.4941307828347933e-19,-1.893639114664416e-19,1.180083973084279e-20,-2.6551890202189845e-20,-4.720335892337116e-20,1.180083973084279e-20,-4.720335892337116e-20,-4.720335892337116e-20,0.0005739795742556453,-0.00038265305920504034,-0.00019132652960252017,-3.475827926596425e-19,-1.429806504216285e-19,-1.4941307828347933e-19,0.00012755101488437504,1.2287115302273133e-20,-9.641742427920967e-21,7.792703114739563e-20,2.371692252312041e-20,1.3552527156068805e-20,5.712144833833803e-20,-6.069003555565607e-21,2.851677696795287e-20,0.0005739795742556453,-0.00038265305920504034,-3.4569966429637723e-19,-0.00019132652960252017,-1.4172743301951944e-19,-1.4941307828347933e-19,1.2287115302273133e-20,0.00012755101488437504,-1.0279100437970847e-20,5.660354280200034e-20,2.418373996311015e-20,-6.045348936544718e-21,6.776263578034403e-20,1.5246593050577406e-20,2.779691980870433e-20,0.0005102040595375001,-0.0003401360590942204,-2.236166980751353e-19,-2.191142506034326e-19,-0.00014577258843928576,-1.893639114664416e-19,-9.641742427920967e-21,-1.0279100437970847e-20,9.718172805150971e-05,3.932671248609395e-20,-5.893562101934804e-21,2.1746082318768993e-20,3.8264451020862474e-20,2.27055972890463e-20,5.0149705179451154e-20,0.0002657313016243279,-5.294343661251511e-19,-0.0003188775444868952,1.0164395367051604e-19,2.8290675548564593e-19,1.180083973084279e-20,7.792703114739563e-20,5.660354280200034e-20,3.932671248609395e-20,5.3146257414482534e-05,-1.0164395367051604e-20,-2.710505431213761e-20,-7.553446615554855e-21,-2.3039734635665108e-20,-2.1905524613012856e-20,0.0003587372484616935,2.0305684606914276e-20,-0.00011957908282056451,-0.00011957908282056451,-9.886144733685837e-20,-2.6551890202189845e-20,2.371692252312041e-20,2.418373996311015e-20,-5.893562101934804e-21,-1.0164395367051604e-20,3.98596930608619e-05,6.623451855336426e-22,5.684692777254699e-20,6.776263578034403e-21,1.7957112052723092e-20,0.0003188775444868952,9.962129027767075e-20,-0.00010629251482896507,-1.1350241493207625e-19,-9.110787505051121e-05,-4.720335892337116e-20,1.3552527156068805e-20,-6.045348936544718e-21,2.1746082318768993e-20,-2.710505431213761e-20,6.623451855336426e-22,3.0369290470844135e-05,2.4203049460534435e-20,3.070833101249781e-21,4.4267491365441595e-20,0.0002657313016243279,-4.967770170476162e-19,-2.662677331208062e-19,-0.0003188775444868952,1.4230153513872246e-19,1.180083973084279e-20,5.712144833833803e-20,6.776263578034403e-20,3.8264451020862474e-20,-7.553446615554855e-21,5.684692777254699e-20,2.4203049460534435e-20,5.3146257414482534e-05,-2.360307371338213e-20,-2.3970316055961532e-20,0.0003188775444868952,9.125175405523704e-20,1.5166772706405453e-19,-0.00010629251482896507,-9.110787505051121e-05,-4.720335892337116e-20,-6.069003555565607e-21,1.5246593050577406e-20,2.27055972890463e-20,-2.3039734635665108e-20,6.776263578034403e-21,3.070833101249781e-21,-2.360307371338213e-20,3.0369290470844135e-05,4.624878603413643e-20,0.00021258502965793014,-1.6509229971911904e-19,-9.739596763474997e-20,-8.98295785506655e-20,-0.00021258502965793014,-4.720335892337116e-20,2.851677696795287e-20,2.779691980870433e-20,5.0149705179451154e-20,-2.1905524613012856e-20,1.7957112052723092e-20,4.4267491365441595e-20,-2.3970316055961532e-20,4.624878603413643e-20,3.0369290470844135e-05,4.0,7.0,8.0,3.0,0.0563616082072258,-0.01711309514939785,-0.01112351194024086,-0.00997023843228817,-0.02094493992626667,0.0014880952658131719,0.0013392857508733869,0.0011904762359336019,0.0026785715017467737,0.0006200397037900984,0.0007440476329065859,0.0016741071594879031,0.0004960317746736109,0.0014880952658131719,0.0022321429569274187,-0.01711309514939785,0.02182539738714695,0.0013392857508733869,0.0011904762359336019,0.0026785715017467737,-0.004464285913854837,-0.0008928571478463709,-0.0007936508045531809,-0.0017857142956927419,4.2996825622286504e-20,6.202431585000175e-20,1.9681825635161636e-21,1.3980904608264412e-19,2.412899256190393e-20,-0.0,-0.01112351194024086,0.0013392857508733869,0.006932043470442295,0.0007440476329065859,0.0016741071594879031,-7.434529256613157e-19,-0.00044642857392318547,-7.480132240771088e-20,-2.973811754344051e-19,-0.0007440476329065859,-0.00024801588733680546,-0.0005580357392318547,9.434433679632846e-20,1.3552527156068805e-20,-0.0,-0.00997023843228817,0.0011904762359336019,0.0007440476329065859,0.005328798200935125,0.0014880952658131719,-6.608470507765904e-19,-1.275567046778409e-19,-0.0003401360590942204,-2.2657611766230274e-19,1.3552527156068805e-20,-0.00021258502965793014,1.2902540262952e-19,-0.0004960317746736109,-0.00042517005931586027,-0.0,-0.02094493992626667,0.0026785715017467737,0.0016741071594879031,0.0014880952658131719,0.04326637089252472,-1.4869058513226313e-18,-2.9690042840214693e-19,-2.0117218612927457e-19,-0.0026785715017467737,5.066263147624219e-20,1.3383120566617945e-19,-0.0016741071594879031,-0.0,-0.0014880952658131719,-0.013392857275903225,0.0014880952658131719,-0.004464285913854837,-7.434529256613157e-19,-6.608470507765904e-19,-1.4869058513226313e-18,0.0014880952658131719,4.956353010071399e-19,4.405647177506564e-19,9.912706020142797e-19,-0.0,-3.443041033671786e-35,-1.0925607993407047e-36,-9.62964972193618e-35,-1.3394281730983647e-35,-0.0,0.0013392857508733869,-0.0008928571478463709,-0.00044642857392318547,-1.275567046778409e-19,-2.9690042840214693e-19,4.956353010071399e-19,0.00029761905898340046,8.771192509669586e-20,1.982541126480377e-19,-1.3552527156068805e-20,-3.3881317890172014e-21,-0.0,8.308290626852386e-22,-1.3735668800902328e-22,-0.0,0.0011904762359336019,-0.0007936508045531809,-7.480132240771088e-20,-0.0003401360590942204,-2.0117218612927457e-19,4.405647177506564e-19,8.771192509669586e-20,0.00022675737272948027,1.5105075372466654e-19,-6.683552201588211e-22,-1.4817119907187594e-20,-5.623378680778899e-22,-4.0657581468206416e-20,-6.776263578034403e-21,-0.0,0.0026785715017467737,-0.0017857142956927419,-2.973811754344051e-19,-2.2657611766230274e-19,-0.0026785715017467737,9.912706020142797e-19,1.982541126480377e-19,1.5105075372466654e-19,0.0017857142956927419,6.018531076210112e-36,-1.504632769052528e-35,-6.018531076210112e-36,-3.009265538105056e-35,-3.009265538105056e-36,-0.0,0.0006200397037900984,4.2996825622286504e-20,-0.0007440476329065859,1.3552527156068805e-20,5.066263147624219e-20,-0.0,-1.3552527156068805e-20,-6.683552201588211e-22,6.018531076210112e-36,0.00012400794366840273,-6.776263578034403e-21,-1.3552527156068805e-20,1.8421172897165628e-21,-2.2892781334837213e-22,0.0,0.0007440476329065859,6.202431585000175e-20,-0.00024801588733680546,-0.00021258502965793014,1.3383120566617945e-19,-3.443041033671786e-35,-3.3881317890172014e-21,-1.4817119907187594e-20,-1.504632769052528e-35,-6.776263578034403e-21,7.086167897796258e-05,-4.0657581468206416e-20,-3.0498362442331804e-20,-3.3881317890172014e-21,-0.0,0.0016741071594879031,1.9681825635161636e-21,-0.0005580357392318547,1.2902540262952e-19,-0.0016741071594879031,-1.0925607993407047e-36,-0.0,-5.623378680778899e-22,-6.018531076210112e-36,-1.3552527156068805e-20,-4.0657581468206416e-20,0.0005580357392318547,-8.200760681317348e-22,1.504632769052528e-36,-0.0,0.0004960317746736109,1.3980904608264412e-19,9.434433679632846e-20,-0.0004960317746736109,-0.0,-9.62964972193618e-35,8.308290626852386e-22,-4.0657581468206416e-20,-3.009265538105056e-35,1.8421172897165628e-21,-3.0498362442331804e-20,-8.200760681317348e-22,7.086167897796258e-05,-4.091329013741041e-21,0.0,0.0014880952658131719,2.412899256190393e-20,1.3552527156068805e-20,-0.00042517005931586027,-0.0014880952658131719,-1.3394281730983647e-35,-1.3735668800902328e-22,-6.776263578034403e-21,-3.009265538105056e-36,-2.2892781334837213e-22,-3.3881317890172014e-21,1.504632769052528e-36,-4.091329013741041e-21,0.00042517005931586027,-0.0,0.0022321429569274187,-0.0,-0.0,-0.0,-0.013392857275903225,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,-0.0,0.0066964286379516125,4.0,7.0,8.0,4.0,0.04530134052038193,-0.013236607424914837,-0.008593750186264515,-0.007700892630964518,-0.013236607424914837,0.0011160714784637094,0.0010044643422588706,0.0008928571478463709,0.0016071428544819355,0.0004650297632906586,0.0005580357392318547,0.0010044643422588706,0.00037202381645329297,0.0008928571478463709,0.0011160714784637094,-0.013236607424914837,0.016636904329061508,0.0010044643422588706,0.0008928571478463709,0.0016071428544819355,-0.0033482143189758062,-0.0006696428754366934,-0.0005952381179668009,-0.0010714285308495164,-2.5834651909685345e-20,-3.614663923935371e-20,9.269500650955735e-21,-4.7560251814770846e-20,1.374658340465632e-20,-0.0,-0.008593750186264515,0.0010044643422588706,0.005282738246023655,0.0005580357392318547,0.0010044643422588706,-0.0,-0.0003348214377183467,-4.308893024478972e-20,-0.0,-0.0005580357392318547,-0.00018601190822664648,-0.0003348214377183467,-6.32535514766953e-20,2.0328790734103208e-20,-0.0,-0.007700892630964518,0.0008928571478463709,0.0005580357392318547,0.004060374107211828,0.0008928571478463709,-0.0,-5.872955691938787e-21,-0.00025510202976875007,-0.0,-1.3552527156068805e-20,-0.0001594387722434476,7.373431111630576e-20,-0.00037202381645329297,-0.00025510202976875007,-0.0,-0.013236607424914837,0.0016071428544819355,0.0010044643422588706,0.0008928571478463709,0.016636904329061508,-0.0,1.2367203995468026e-20,1.1091408763162826e-20,-0.0010714285308495164,3.922293363096122e-21,8.809142651444724e-20,-0.0006696428754366934,1.3552527156068805e-20,-0.0005952381179668009,-0.0033482143189758062,0.0011160714784637094,-0.0033482143189758062,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0010044643422588706,-0.0006696428754366934,-0.0003348214377183467,-5.872955691938787e-21,1.2367203995468026e-20,-0.0,0.00022321428696159273,9.438619504338048e-22,-0.0,6.776263578034403e-21,1.6940658945086007e-21,-3.3881317890172014e-21,4.213552219387853e-23,-6.2937398038257415e-22,-0.0,0.0008928571478463709,-0.0005952381179668009,-4.308893024478972e-20,-0.00025510202976875007,1.1091408763162826e-20,-0.0,9.438619504338048e-22,0.0001700680295471102,-0.0,1.573103351697204e-21,8.875554268640221e-21,2.556842586921391e-22,1.3552527156068805e-20,-3.3881317890172014e-21,-0.0,0.0016071428544819355,-0.0010714285308495164,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004650297632906586,-2.5834651909685345e-20,-0.0005580357392318547,-1.3552527156068805e-20,3.922293363096122e-21,-0.0,6.776263578034403e-21,1.573103351697204e-21,-0.0,9.300595411332324e-05,3.3881317890172014e-21,-6.776263578034403e-21,1.099029300147193e-21,-1.0489566003128916e-21,-0.0,0.0005580357392318547,-3.614663923935371e-20,-0.00018601190822664648,-0.0001594387722434476,8.809142651444724e-20,-0.0,1.6940658945086007e-21,8.875554268640221e-21,-0.0,3.3881317890172014e-21,5.3146257414482534e-05,-2.541098841762901e-20,1.585352874710252e-20,-3.3881317890172014e-21,-0.0,0.0010044643422588706,9.269500650955735e-21,-0.0003348214377183467,7.373431111630576e-20,-0.0006696428754366934,-0.0,-3.3881317890172014e-21,2.556842586921391e-22,-0.0,-6.776263578034403e-21,-2.541098841762901e-20,0.00022321428696159273,3.7287289093295853e-22,-4.720336154870025e-22,-0.0,0.00037202381645329297,-4.7560251814770846e-20,-6.32535514766953e-20,-0.00037202381645329297,1.3552527156068805e-20,-0.0,4.213552219387853e-23,1.3552527156068805e-20,-0.0,1.099029300147193e-21,1.585352874710252e-20,3.7287289093295853e-22,5.3146257414482534e-05,-4.762562654814381e-21,-0.0,0.0008928571478463709,1.374658340465632e-20,2.0328790734103208e-20,-0.00025510202976875007,-0.0005952381179668009,-0.0,-6.2937398038257415e-22,-3.3881317890172014e-21,-0.0,-1.0489566003128916e-21,-3.3881317890172014e-21,-4.720336154870025e-22,-4.762562654814381e-21,0.0001700680295471102,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0033482143189758062,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,4.0,7.0,8.0,5.0,0.037942178547382355,-0.010803570970892906,-0.007008928339928389,-0.006279761902987957,-0.009143282659351826,0.0008928571478463709,0.0008035714272409678,0.0007142857066355646,0.0010714285308495164,0.00037202381645329297,0.00044642857392318547,0.0006696428754366934,0.00029761905898340046,0.0005952381179668009,0.0006377550889737904,-0.010803570970892906,0.013452380895614624,0.0008035714272409678,0.0007142857066355646,0.0010714285308495164,-0.0026785715017467737,-0.0005357142654247582,-0.0004761904710903764,-0.0007142857066355646,-3.2049894373643078e-21,-3.7269449679189215e-20,-1.316553672920962e-36,-9.830316504687043e-20,-0.0,-0.0,-0.007008928339928389,0.0008035714272409678,0.0042708334513008595,0.00044642857392318547,0.0006696428754366934,-0.0,-0.0002678571327123791,-5.421010862427522e-20,-0.0,-0.00044642857392318547,-0.00014880952949170023,-0.00022321428696159273,-8.412795183530819e-20,-0.0,-0.0,-0.006279761902987957,0.0007142857066355646,0.00044642857392318547,0.0032823130022734404,0.0005952381179668009,-0.0,6.69777391220528e-22,-0.0002040816325461492,-0.0,-0.0,-0.00012755101488437504,4.0657581468206416e-20,-0.00029761905898340046,-0.0001700680295471102,-0.0,-0.009143282659351826,0.0010714285308495164,0.0006696428754366934,0.0005952381179668009,0.00839817151427269,-0.0,-0.0,-1.128474576789396e-36,-0.0005357142654247582,-8.34001702211679e-21,4.0657581468206416e-20,-0.0003348214377183467,-0.0,-0.00029761905898340046,-0.0012755101779475808,0.0008928571478463709,-0.0026785715017467737,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0008035714272409678,-0.0005357142654247582,-0.0002678571327123791,6.69777391220528e-22,-0.0,-0.0,0.00017857142665889114,5.494267520360931e-22,-0.0,-0.0,-3.3881317890172014e-21,-0.0,1.1451574430198995e-21,-0.0,-0.0,0.0007142857066355646,-0.0004761904710903764,-5.421010862427522e-20,-0.0002040816325461492,-1.128474576789396e-36,-0.0,5.494267520360931e-22,0.0001360544265480712,-0.0,9.157112533934885e-22,1.3552527156068805e-20,3.76158192263132e-37,2.710505431213761e-20,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-3.2049894373643078e-21,-0.00044642857392318547,-0.0,-8.34001702211679e-21,-0.0,-0.0,9.157112533934885e-22,-0.0,7.440476474585012e-05,-3.3881317890172014e-21,-6.776263578034403e-21,1.3535780787632441e-21,0.0,-0.0,0.00044642857392318547,-3.7269449679189215e-20,-0.00014880952949170023,-0.00012755101488437504,4.0657581468206416e-20,-0.0,-3.3881317890172014e-21,1.3552527156068805e-20,-0.0,-3.3881317890172014e-21,4.251700738677755e-05,-1.3552527156068805e-20,2.1031987958827047e-20,-0.0,-0.0,0.0006696428754366934,-1.316553672920962e-36,-0.00022321428696159273,4.0657581468206416e-20,-0.0003348214377183467,-0.0,-0.0,3.76158192263132e-37,-0.0,-6.776263578034403e-21,-1.3552527156068805e-20,0.00011160714348079637,-7.52316384526264e-37,-0.0,-0.0,0.00029761905898340046,-9.830316504687043e-20,-8.412795183530819e-20,-0.00029761905898340046,-0.0,-0.0,1.1451574430198995e-21,2.710505431213761e-20,-0.0,1.3535780787632441e-21,2.1031987958827047e-20,-7.52316384526264e-37,4.251700738677755e-05,0.0,-0.0,0.0005952381179668009,-0.0,-0.0,-0.0001700680295471102,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,8.50340147735551e-05,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0012755101779475808,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,4.0,7.0,8.0,6.0,0.032669004052877426,-0.009130527265369892,-0.005920493043959141,-0.005303996615111828,-0.006701743230223656,0.0007440476329065859,0.0006696428754366934,0.0005952381179668009,0.0007653061184100807,0.0003100198518950492,0.00037202381645329297,0.00047831633128225803,0.00024801588733680546,0.00042517005931586027,0.00039859695243649185,-0.009130527265369892,0.011295351199805737,0.0006696428754366934,0.0005952381179668009,0.0007653061184100807,-0.0022321429569274187,-0.00044642857392318547,-0.00039682540227659047,-0.0005102040595375001,9.774142620820953e-22,2.699367411953992e-20,-9.51304427215894e-20,6.886012996979143e-20,-8.145460749311337e-20,-2.6551890202189845e-19,-0.005920493043959141,0.0006696428754366934,0.003585600992664695,0.00037202381645329297,0.00047831633128225803,-3.7172646283065783e-19,-0.00022321428696159273,-3.702449758912268e-20,-1.699320947090756e-19,-0.00037202381645329297,-0.00012400794366840273,-0.0001594387722434476,4.422873019892524e-20,-5.016797423876121e-20,-1.6594931053251226e-19,-0.005303996615111828,0.0005952381179668009,0.00037202381645329297,0.00275550689548254,0.00042517005931586027,-3.304235253882952e-19,-7.161450570027377e-20,-0.0001700680295471102,-1.4026141048013405e-19,-1.3552527156068805e-20,-0.00010629251482896507,-1.911046193615057e-20,-0.00024801588733680546,-0.00012147716188337654,-1.2643756808314786e-19,-0.006701743230223656,0.0007653061184100807,0.00047831633128225803,0.00042517005931586027,0.004872980527579784,-4.248302432350375e-19,-9.51304427215894e-20,-7.066526424858089e-20,-0.0003061224415432662,-5.129962113242554e-21,2.5128283287417674e-20,-0.00019132652960252017,-0.0,-0.0001700680295471102,-0.0005978954141028225,0.0007440476329065859,-0.0022321429569274187,-3.7172646283065783e-19,-3.304235253882952e-19,-4.248302432350375e-19,0.0007440476329065859,2.4781765050356993e-19,2.202823588753282e-19,2.8322015354022696e-19,-0.0,-1.4984499442736913e-35,5.280800464361141e-35,-4.2129717533470784e-35,4.5216388915400007e-35,1.4739259637909209e-34,0.0006696428754366934,-0.00044642857392318547,-0.00022321428696159273,-7.161450570027377e-20,-9.51304427215894e-20,2.4781765050356993e-19,0.00014880952949170023,4.38889140635308e-20,5.664402941557569e-20,-0.0,-0.0,3.3881317890172014e-21,7.635465228555378e-22,1.0168457330965841e-35,3.115992446950991e-35,0.0005952381179668009,-0.00039682540227659047,-3.702449758912268e-20,-0.0001700680295471102,-7.066526424858089e-20,2.202823588753282e-19,4.38889140635308e-20,0.00011337868636474013,4.315735682225861e-20,-2.792612033128564e-22,-7.71247855066671e-21,1.0532429383367696e-35,-2.0328790734103208e-20,1.6940658945086007e-21,2.2801957310085973e-35,0.0007653061184100807,-0.0005102040595375001,-1.699320947090756e-19,-1.4026141048013405e-19,-0.0003061224415432662,2.8322015354022696e-19,5.664402941557569e-20,4.315735682225861e-20,0.0002040816325461492,1.504632769052528e-36,-6.770847460736376e-36,3.3986418295580265e-20,-6.018531076210112e-36,3.021015139116816e-20,1.0620756080875938e-19,0.0003100198518950492,9.774142620820953e-22,-0.00037202381645329297,-1.3552527156068805e-20,-5.129962113242554e-21,-0.0,-0.0,-2.792612033128564e-22,1.504632769052528e-36,6.200397183420137e-05,-0.0,-3.3881317890172014e-21,1.4691285056502964e-21,1.504632769052528e-36,0.0,0.00037202381645329297,2.699367411953992e-20,-0.00012400794366840273,-0.00010629251482896507,2.5128283287417674e-20,-1.4984499442736913e-35,-0.0,-7.71247855066671e-21,-6.770847460736376e-36,-0.0,3.543083948898129e-05,-9.36429926500472e-21,-1.5692396548716605e-20,8.470329472543003e-22,-9.586706009003075e-36,0.00047831633128225803,-9.51304427215894e-20,-0.0001594387722434476,-1.911046193615057e-20,-0.00019132652960252017,5.280800464361141e-35,3.3881317890172014e-21,1.0532429383367696e-35,3.3986418295580265e-20,-3.3881317890172014e-21,-9.36429926500472e-21,6.377550744218752e-05,3.76158192263132e-36,1.8881344215583318e-20,6.637972550547461e-20,0.00024801588733680546,6.886012996979143e-20,4.422873019892524e-20,-0.00024801588733680546,-0.0,-4.2129717533470784e-35,7.635465228555378e-22,-2.0328790734103208e-20,-6.018531076210112e-36,1.4691285056502964e-21,-1.5692396548716605e-20,3.76158192263132e-36,3.543083948898129e-05,-6.712336410733405e-22,5.2232070705724605e-37,0.00042517005931586027,-8.145460749311337e-20,-5.016797423876121e-20,-0.00012147716188337654,-0.0001700680295471102,4.5216388915400007e-35,1.0168457330965841e-35,1.6940658945086007e-21,3.021015139116816e-20,1.504632769052528e-36,8.470329472543003e-22,1.8881344215583318e-20,-6.712336410733405e-22,4.8590864025754854e-05,5.0575027879493996e-20,0.00039859695243649185,-2.6551890202189845e-19,-1.6594931053251226e-19,-1.2643756808314786e-19,-0.0005978954141028225,1.4739259637909209e-34,3.115992446950991e-35,2.2801957310085973e-35,1.0620756080875938e-19,0.0,-9.586706009003075e-36,6.637972550547461e-20,5.2232070705724605e-37,5.0575027879493996e-20,0.00011957908282056451,4.0,7.0,8.0,7.0,0.028696322813630104,-0.007908163592219353,-0.0051259566098451614,-0.004591836594045162,-0.0051259566098451614,0.0006377550889737904,0.0005739795742556453,0.0005102040595375001,0.0005739795742556453,0.0002657313016243279,0.0003188775444868952,0.0003587372484616935,0.00021258502965793014,0.0003188775444868952,0.0002657313016243279,-0.007908163592219353,0.009736394509673119,0.0005739795742556453,0.0005102040595375001,0.0005739795742556453,-0.0019132653251290321,-0.00038265305920504034,-0.0003401360590942204,-0.00038265305920504034,-5.064266992785067e-19,7.450625803592526e-20,-5.350568920788459e-21,-2.223257534822756e-19,1.0401004565158716e-19,-5.750664567008866e-19,-0.0051259566098451614,0.0005739795742556453,0.003090454963967204,0.0003188775444868952,0.0003587372484616935,4.689870571882847e-19,-0.00019132652960252017,-2.4337243359049825e-19,-3.6591823321385775e-19,-0.0003188775444868952,-0.00010629251482896507,-0.00011957908282056451,-1.3138742979336224e-19,1.5915135931279248e-19,-3.054084462913494e-19,-0.004591836594045162,0.0005102040595375001,0.0003188775444868952,0.002374878618866205,0.0003188775444868952,9.920962316631842e-19,-1.429348711446025e-19,-0.00014577258843928576,-2.472955444406841e-19,2.913793338554793e-19,-9.110787505051121e-05,-1.9142944607947188e-19,-0.00021258502965793014,-9.110787505051121e-05,-7.838405877558884e-19,-0.0051259566098451614,0.0005739795742556453,0.0003587372484616935,0.0003188775444868952,0.003090454963967204,4.689870571882847e-19,-3.4572848637084587e-19,-3.148529877303267e-19,-0.00019132652960252017,1.0235594292042252e-19,-2.4605151649819265e-19,-0.00011957908282056451,-7.724940478959219e-19,-0.00010629251482896507,-0.0003188775444868952,0.0006377550889737904,-0.0019132653251290321,4.689870571882847e-19,9.920962316631842e-19,4.689870571882847e-19,0.0006377550889737904,-1.4941307828347933e-19,-1.893639114664416e-19,-1.4941307828347933e-19,1.180083973084279e-20,-4.720335892337116e-20,-2.6551890202189845e-20,-4.720335892337116e-20,-4.720335892337116e-20,1.180083973084279e-20,0.0005739795742556453,-0.00038265305920504034,-0.00019132652960252017,-1.429348711446025e-19,-3.4572848637084587e-19,-1.4941307828347933e-19,0.00012755101488437504,-9.923565447557198e-21,1.2080123855298109e-20,7.115076756936123e-20,1.3552527156068805e-20,2.541098841762901e-20,2.85665629010709e-20,-6.069003555565607e-21,5.610205809329153e-20,0.0005102040595375001,-0.0003401360590942204,-2.4337243359049825e-19,-0.00014577258843928576,-3.148529877303267e-19,-1.893639114664416e-19,-9.923565447557198e-21,9.718172805150971e-05,-2.1695543522046563e-20,3.885700960748308e-20,2.351331330781019e-20,-2.11484230711312e-22,5.421010862427522e-20,2.0328790734103208e-20,5.428537559766901e-20,0.0005739795742556453,-0.00038265305920504034,-3.6591823321385775e-19,-2.472955444406841e-19,-0.00019132652960252017,-1.4941307828347933e-19,1.2080123855298109e-20,-2.1695543522046563e-20,0.00012755101488437504,5.625856325012597e-20,2.6455794675569127e-22,2.4412668659982736e-20,4.208781875257608e-20,1.3766770165894307e-20,7.61874315451054e-20,0.0002657313016243279,-5.064266992785067e-19,-0.0003188775444868952,2.913793338554793e-19,1.0235594292042252e-19,1.180083973084279e-20,7.115076756936123e-20,3.885700960748308e-20,5.625856325012597e-20,5.3146257414482534e-05,-2.710505431213761e-20,-1.0164395367051604e-20,-2.1614345728284253e-20,-2.3039734635665108e-20,-8.618953795338322e-21,0.0003188775444868952,7.450625803592526e-20,-0.00010629251482896507,-9.110787505051121e-05,-2.4605151649819265e-19,-4.720335892337116e-20,1.3552527156068805e-20,2.351331330781019e-20,2.6455794675569127e-22,-2.710505431213761e-20,3.0369290470844135e-05,1.458165131359701e-20,4.631464382806243e-20,6.776263578034403e-21,3.471955881224367e-20,0.0003587372484616935,-5.350568920788459e-21,-0.00011957908282056451,-1.9142944607947188e-19,-0.00011957908282056451,-2.6551890202189845e-20,2.541098841762901e-20,-2.11484230711312e-22,2.4412668659982736e-20,-1.0164395367051604e-20,1.458165131359701e-20,3.98596930608619e-05,2.6243476233916875e-20,-4.1283908981369e-23,6.044285637872547e-20,0.00021258502965793014,-2.223257534822756e-19,-1.3138742979336224e-19,-0.00021258502965793014,-7.724940478959219e-19,-4.720335892337116e-20,2.85665629010709e-20,5.421010862427522e-20,4.208781875257608e-20,-2.1614345728284253e-20,4.631464382806243e-20,2.6243476233916875e-20,3.0369290470844135e-05,4.7078406183261637e-20,7.843897839838353e-20,0.0003188775444868952,1.0401004565158716e-19,1.5915135931279248e-19,-9.110787505051121e-05,-0.00010629251482896507,-4.720335892337116e-20,-6.069003555565607e-21,2.0328790734103208e-20,1.3766770165894307e-20,-2.3039734635665108e-20,6.776263578034403e-21,-4.1283908981369e-23,4.7078406183261637e-20,3.0369290470844135e-05,2.3930698628264216e-20,0.0002657313016243279,-5.750664567008866e-19,-3.054084462913494e-19,-7.838405877558884e-19,-0.0003188775444868952,1.180083973084279e-20,5.610205809329153e-20,5.428537559766901e-20,7.61874315451054e-20,-8.618953795338322e-21,3.471955881224367e-20,6.044285637872547e-20,7.843897839838353e-20,2.3930698628264216e-20,5.3146257414482534e-05,4.0,7.0,8.0,8.0,0.0255921371281147,-0.0069754463620483875,-0.004520089365541935,-0.0040488592348992825,-0.0040488592348992825,0.0005580357392318547,0.0005022321711294353,0.00044642857392318547,0.00044642857392318547,0.0002325148816453293,0.00027901786961592734,0.00027901786961592734,0.00018601190822664648,0.00024801588733680546,0.00018601190822664648,-0.0069754463620483875,0.008556547574698925,0.0005022321711294353,0.00044642857392318547,0.00044642857392318547,-0.0016741071594879031,-0.0003348214377183467,-0.00029761905898340046,-0.00029761905898340046,7.365330880858665e-21,-1.4080063207311633e-20,-1.5841751116896443e-20,-3.7327003355247006e-20,-2.033034008216461e-20,-4.331744535135603e-20,-0.004520089365541935,0.0005022321711294353,0.00271577388048172,0.00027901786961592734,0.00027901786961592734,-0.0,-0.00016741071885917336,-2.059324457646296e-20,-2.0328790734103208e-20,-0.00027901786961592734,-9.300595411332324e-05,-9.300595411332324e-05,-3.140358237580038e-20,-1.1193177827900991e-20,-2.9853914428144837e-20,-0.0040488592348992825,0.00044642857392318547,0.00027901786961592734,0.0020868764258921146,0.00024801588733680546,-0.0,1.0666167852218637e-21,-0.00012755101488437504,-2.751027910823483e-20,-0.0,-7.97193861217238e-05,1.6940658945086007e-21,-0.00018601190822664648,-7.086167897796258e-05,-4.265492861066361e-20,-0.0040488592348992825,0.00044642857392318547,0.00027901786961592734,0.00024801588733680546,0.0020868764258921146,-0.0,2.005220908302611e-21,-1.6382313041354672e-21,-0.00012755101488437504,-3.0937243553499057e-21,1.7470597374396932e-20,-7.97193861217238e-05,-6.776263578034403e-21,-7.086167897796258e-05,-0.00018601190822664648,0.0005580357392318547,-0.0016741071594879031,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005022321711294353,-0.0003348214377183467,-0.00016741071885917336,1.0666167852218637e-21,2.005220908302611e-21,-0.0,0.00011160714348079637,3.525142463700533e-22,1.273254443858115e-22,-3.3881317890172014e-21,-8.470329472543003e-22,-8.470329472543003e-22,1.2490518126327e-22,5.032202915236851e-38,4.5551485550990006e-23,0.00044642857392318547,-0.00029761905898340046,-2.059324457646296e-20,-0.00012755101488437504,-1.6382313041354672e-21,-0.0,3.525142463700533e-22,8.50340147735551e-05,2.6976084414619663e-22,5.875237607791215e-22,4.4715461365927344e-21,1.7004514016811154e-22,1.0164395367051604e-20,-8.470329472543003e-22,4.871035598364633e-22,0.00044642857392318547,-0.00029761905898340046,-2.0328790734103208e-20,-2.751027910823483e-20,-0.00012755101488437504,-0.0,1.273254443858115e-22,2.6976084414619663e-22,8.50340147735551e-05,2.1220906135457803e-22,2.773576377723474e-22,5.082197683525802e-21,3.9340122263202043e-22,6.6557015998580155e-21,1.1850265388029967e-20,0.0002325148816453293,7.365330880858665e-21,-0.00027901786961592734,-0.0,-3.0937243553499057e-21,-0.0,-3.3881317890172014e-21,5.875237607791215e-22,2.1220906135457803e-22,4.650297705666162e-05,-0.0,0.0,3.7419242172456534e-22,0.0,3.458050159255848e-22,0.00027901786961592734,-1.4080063207311633e-20,-9.300595411332324e-05,-7.97193861217238e-05,1.7470597374396932e-20,-0.0,-8.470329472543003e-22,4.4715461365927344e-21,2.773576377723474e-22,-0.0,2.6573128707241267e-05,-5.9948363931132144e-21,7.976009892773009e-21,-8.470329472543003e-22,4.044799094542974e-22,0.00027901786961592734,-1.5841751116896443e-20,-9.300595411332324e-05,1.6940658945086007e-21,-7.97193861217238e-05,-0.0,-8.470329472543003e-22,1.7004514016811154e-22,5.082197683525802e-21,0.0,-5.9948363931132144e-21,2.6573128707241267e-05,2.4798250238938324e-22,4.0450840437237145e-21,7.463478607036209e-21,0.00018601190822664648,-3.7327003355247006e-20,-3.140358237580038e-20,-0.00018601190822664648,-6.776263578034403e-21,-0.0,1.2490518126327e-22,1.0164395367051604e-20,3.9340122263202043e-22,3.7419242172456534e-22,7.976009892773009e-21,2.4798250238938324e-22,2.6573128707241267e-05,5.034252308050054e-22,4.624912005677636e-22,0.00024801588733680546,-2.033034008216461e-20,-1.1193177827900991e-20,-7.086167897796258e-05,-7.086167897796258e-05,-0.0,5.032202915236851e-38,-8.470329472543003e-22,6.6557015998580155e-21,0.0,-8.470329472543003e-22,4.0450840437237145e-21,5.034252308050054e-22,2.0246194253559224e-05,1.0631175648537265e-20,0.00018601190822664648,-4.331744535135603e-20,-2.9853914428144837e-20,-4.265492861066361e-20,-0.00018601190822664648,-0.0,4.5551485550990006e-23,4.871035598364633e-22,1.1850265388029967e-20,3.458050159255848e-22,4.044799094542974e-22,7.463478607036209e-21,4.624912005677636e-22,1.0631175648537265e-20,2.6573128707241267e-05,4.0,8.0,3.0,3.0,0.10873842239379883,-0.03680555522441864,-0.02152777835726738,-0.04496527835726738,-0.04496527835726738,0.0034722222480922937,0.0027777778450399637,0.0062500000931322575,0.0062500000931322575,0.0011574074160307646,0.0034722222480922937,0.0034722222480922937,0.0052083334885537624,0.0078125,0.0052083334885537624,-0.03680555522441864,0.048842594027519226,0.0027777778450399637,0.0062500000931322575,0.0062500000931322575,-0.010416666977107525,-0.0018518518190830946,-0.004166666883975267,-0.004166666883975267,-3.604972223514302e-18,-2.710505431213761e-19,-6.505213034913027e-19,3.469446951953614e-17,6.938893903907228e-18,2.7755575615628914e-17,-0.02152777835726738,0.0027777778450399637,0.011937830597162247,0.0034722222480922937,0.0034722222480922937,-4.047003894382533e-18,-0.0007936508045531809,-1.734723475976807e-18,-1.734723475976807e-18,-0.0011574074160307646,-0.0009920635493472219,-0.0009920635493472219,1.214306433183765e-17,4.336808689942018e-19,8.673617379884035e-18,-0.04496527835726738,0.0062500000931322575,0.0034722222480922937,0.09704861044883728,0.0078125,6.786720795338298e-18,5.457211594755293e-18,-0.0062500000931322575,1.5178830414797062e-18,-5.421010862427522e-19,-0.0034722222480922937,1.2097498881000013e-18,-0.03125,-0.0078125,-3.729655473350135e-17,-0.04496527835726738,0.0062500000931322575,0.0034722222480922937,0.0078125,0.09704861044883728,6.983855306102548e-18,5.343148764958212e-18,-1.2502475135172553e-18,-0.0062500000931322575,-8.673617379884035e-19,7.589415207398531e-19,-0.0034722222480922937,-2.2985086056692694e-17,-0.0078125,-0.03125,0.0034722222480922937,-0.010416666977107525,-4.047003894382533e-18,6.786720795338298e-18,6.983855306102548e-18,0.0034722222480922937,-9.215718466126788e-19,1.701090312270401e-18,1.5464248051182719e-18,8.131516293641283e-19,1.6263032587282567e-19,5.421010862427522e-20,-4.065758146820642e-18,-1.4094628242311558e-18,-3.848917712323541e-18,0.0027777778450399637,-0.0018518518190830946,-0.0007936508045531809,5.457211594755293e-18,5.343148764958212e-18,-9.215718466126788e-19,0.0005291005363687873,-5.794714519566729e-19,-6.798178177400347e-19,1.6263032587282567e-19,-0.0,2.710505431213761e-20,-1.6805133673525319e-18,-9.75781955236954e-19,-1.5720931501039814e-18,0.0062500000931322575,-0.004166666883975267,-1.734723475976807e-18,-0.0062500000931322575,-1.2502475135172553e-18,1.701090312270401e-18,-5.794714519566729e-19,0.004166666883975267,-3.2526065174565133e-19,3.7947076036992655e-19,-7.047314121155779e-19,4.87890977618477e-19,-1.4203048459560108e-17,3.2526065174565133e-19,-2.168404344971009e-19,0.0062500000931322575,-0.004166666883975267,-1.734723475976807e-18,1.5178830414797062e-18,-0.0062500000931322575,1.5464248051182719e-18,-6.798178177400347e-19,-3.2526065174565133e-19,0.004166666883975267,2.710505431213761e-19,2.710505431213761e-19,-4.336808689942018e-19,-1.0842021724855044e-18,-0.0,-1.0245710529988017e-17,0.0011574074160307646,-3.604972223514302e-18,-0.0011574074160307646,-5.421010862427522e-19,-8.673617379884035e-19,8.131516293641283e-19,1.6263032587282567e-19,3.7947076036992655e-19,2.710505431213761e-19,0.0001653439103392884,1.6263032587282567e-19,1.6263032587282567e-19,-4.336808689942018e-19,1.6263032587282567e-19,0.0,0.0034722222480922937,-2.710505431213761e-19,-0.0009920635493472219,-0.0034722222480922937,7.589415207398531e-19,1.6263032587282567e-19,-0.0,-7.047314121155779e-19,2.710505431213761e-19,1.6263032587282567e-19,0.0009920635493472219,1.7812463366746856e-19,-6.7759475950404075e-18,-1.2730716755148837e-19,-9.453493601156687e-19,0.0034722222480922937,-6.505213034913027e-19,-0.0009920635493472219,1.2097498881000013e-18,-0.0034722222480922937,5.421010862427522e-20,2.710505431213761e-20,4.87890977618477e-19,-4.336808689942018e-19,1.6263032587282567e-19,1.7812463366746856e-19,0.0009920635493472219,-1.2849223044100188e-18,-3.165687412665207e-19,-5.119211947986019e-18,0.0052083334885537624,3.469446951953614e-17,1.214306433183765e-17,-0.03125,-2.2985086056692694e-17,-4.065758146820642e-18,-1.6805133673525319e-18,-1.4203048459560108e-17,-1.0842021724855044e-18,-4.336808689942018e-19,-6.7759475950404075e-18,-1.2849223044100188e-18,0.015625,-4.048374119067227e-18,1.6569766047668255e-17,0.0078125,6.938893903907228e-18,4.336808689942018e-19,-0.0078125,-0.0078125,-1.4094628242311558e-18,-9.75781955236954e-19,3.2526065174565133e-19,-0.0,1.6263032587282567e-19,-1.2730716755148837e-19,-3.165687412665207e-19,-4.048374119067227e-18,0.0078125,6.8771353586031005e-18,0.0052083334885537624,2.7755575615628914e-17,8.673617379884035e-18,-3.729655473350135e-17,-0.03125,-3.848917712323541e-18,-1.5720931501039814e-18,-2.168404344971009e-19,-1.0245710529988017e-17,0.0,-9.453493601156687e-19,-5.119211947986019e-18,1.6569766047668255e-17,6.8771353586031005e-18,0.015625,4.0,8.0,3.0,4.0,0.08803819119930267,-0.028541667386889458,-0.01666666753590107,-0.03489583358168602,-0.028541667386889458,0.0026041667442768812,0.0020833334419876337,0.004687500186264515,0.0037499999161809683,0.0008680555620230734,0.0026041667442768812,0.0020833334419876337,0.00390625,0.004687500186264515,0.0026041667442768812,-0.028541667386889458,0.03725694492459297,0.0020833334419876337,0.004687500186264515,0.0037499999161809683,-0.0078125,-0.0013888889225199819,-0.0031250000465661287,-0.0024999999441206455,6.207057437479513e-18,2.2768245622195593e-18,1.111307226797642e-18,-2.688821387764051e-17,8.673617379884035e-19,-3.0357660829594124e-18,-0.01666666753590107,0.0020833334419876337,0.00910218246281147,0.0026041667442768812,0.0020833334419876337,1.209751645858803e-17,-0.0005952381179668009,2.6020852139652106e-18,1.734723475976807e-18,-0.0008680555620230734,-0.0007440476329065859,-0.0005952381179668009,-2.0816681711721685e-17,-3.686287386450715e-18,-8.673617379884035e-18,-0.03489583358168602,0.004687500186264515,0.0026041667442768812,0.07395832985639572,0.004687500186264515,8.376432892489659e-18,-1.0126934011470303e-17,-0.004687500186264515,-1.0408340855860843e-17,-5.421010862427522e-19,-0.0026041667442768812,-6.77946393982437e-18,-0.0234375,-0.004687500186264515,-2.0383000842727483e-17,-0.028541667386889458,0.0037499999161809683,0.0020833334419876337,0.004687500186264515,0.03725694492459297,7.177055745873496e-18,-8.899604777594748e-18,6.601080165980625e-19,-0.0024999999441206455,3.2526065174565133e-19,-6.7220534694101275e-18,-0.0013888889225199819,-3.5453411040275995e-17,-0.0031250000465661287,-0.0078125,0.0026041667442768812,-0.0078125,1.209751645858803e-17,8.376432892489659e-18,7.177055745873496e-18,0.0026041667442768812,-3.2526065174565133e-19,-1.833482223670738e-18,4.765500729264336e-19,-1.3010426069826053e-18,-1.1926223897340549e-18,-6.505213034913027e-19,1.1926223897340549e-18,-1.6805133673525319e-18,-1.0570971181733668e-18,0.0020833334419876337,-0.0013888889225199819,-0.0005952381179668009,-1.0126934011470303e-17,-8.899604777594748e-18,-3.2526065174565133e-19,0.00039682540227659047,8.443309100846076e-19,9.37868855643622e-19,-2.168404344971009e-19,3.2526065174565133e-19,3.9302328752599536e-19,3.1170812458958252e-18,8.673617379884035e-19,1.6263032587282567e-18,0.004687500186264515,-0.0031250000465661287,2.6020852139652106e-18,-0.004687500186264515,6.601080165980625e-19,-1.833482223670738e-18,8.443309100846076e-19,0.0031250000465661287,-2.168404344971009e-19,-4.87890977618477e-19,-1.6263032587282567e-19,-2.168404344971009e-19,1.463672932855431e-18,-1.1384122811097797e-18,4.87890977618477e-19,0.0037499999161809683,-0.0024999999441206455,1.734723475976807e-18,-1.0408340855860843e-17,-0.0024999999441206455,4.765500729264336e-19,9.37868855643622e-19,-2.168404344971009e-19,0.0016666667070239782,-4.0657581468206416e-19,1.0842021724855044e-19,-2.168404344971009e-19,4.336808689942018e-18,1.3552527156068805e-18,-1.0842021724855044e-19,0.0008680555620230734,6.207057437479513e-18,-0.0008680555620230734,-5.421010862427522e-19,3.2526065174565133e-19,-1.3010426069826053e-18,-2.168404344971009e-19,-4.87890977618477e-19,-4.0657581468206416e-19,0.00012400794366840273,-2.710505431213761e-20,0.0,9.75781955236954e-19,0.0,2.168404344971009e-19,0.0026041667442768812,2.2768245622195593e-18,-0.0007440476329065859,-0.0026041667442768812,-6.7220534694101275e-18,-1.1926223897340549e-18,3.2526065174565133e-19,-1.6263032587282567e-19,1.0842021724855044e-19,-2.710505431213761e-20,0.0007440476329065859,2.4023372260555992e-19,5.568376397276294e-18,9.022216105432258e-19,1.4741479345424963e-18,0.0020833334419876337,1.111307226797642e-18,-0.0005952381179668009,-6.77946393982437e-18,-0.0013888889225199819,-6.505213034913027e-19,3.9302328752599536e-19,-2.168404344971009e-19,-2.168404344971009e-19,0.0,2.4023372260555992e-19,0.00039682540227659047,2.477911755540894e-18,8.43226210376543e-19,1.9394556406673568e-18,0.00390625,-2.688821387764051e-17,-2.0816681711721685e-17,-0.0234375,-3.5453411040275995e-17,1.1926223897340549e-18,3.1170812458958252e-18,1.463672932855431e-18,4.336808689942018e-18,9.75781955236954e-19,5.568376397276294e-18,2.477911755540894e-18,0.01171875,2.0488318977582595e-19,5.9112940463775025e-18,0.004687500186264515,8.673617379884035e-19,-3.686287386450715e-18,-0.004687500186264515,-0.0031250000465661287,-1.6805133673525319e-18,8.673617379884035e-19,-1.1384122811097797e-18,1.3552527156068805e-18,0.0,9.022216105432258e-19,8.43226210376543e-19,2.0488318977582595e-19,0.0031250000465661287,1.5516783325861727e-18,0.0026041667442768812,-3.0357660829594124e-18,-8.673617379884035e-18,-2.0383000842727483e-17,-0.0078125,-1.0570971181733668e-18,1.6263032587282567e-18,4.87890977618477e-19,-1.0842021724855044e-19,2.168404344971009e-19,1.4741479345424963e-18,1.9394556406673568e-18,5.9112940463775025e-18,1.5516783325861727e-18,0.0026041667442768812,4.0,8.0,3.0,5.0,0.07408729940652847,-0.023333333432674408,-0.013611110858619213,-0.028541667386889458,-0.019771825522184372,0.0020833334419876337,0.0016666667070239782,0.0037499999161809683,0.0024999999441206455,0.0006944444612599909,0.0020833334419876337,0.0013888889225199819,0.0031250000465661287,0.0031250000465661287,0.0014880952658131719,-0.023333333432674408,0.030138889327645302,0.0016666667070239782,0.0037499999161809683,0.0024999999441206455,-0.0062500000931322575,-0.0011111111380159855,-0.0024999999441206455,-0.0016666667070239782,-3.577867169202165e-18,1.8973538018496328e-19,3.2526065174565133e-19,2.949029909160572e-17,4.87890977618477e-18,6.071532165918825e-18,-0.013611110858619213,0.0016666667070239782,0.007361111231148243,0.0020833334419876337,0.0013888889225199819,-5.693976742257265e-18,-0.0004761904710903764,-1.734723475976807e-18,-1.5178830414797062e-18,-0.0006944444612599909,-0.0005952381179668009,-0.00039682540227659047,6.071532165918825e-18,4.336808689942018e-19,3.686287386450715e-18,-0.028541667386889458,0.0037499999161809683,0.0020833334419876337,0.05979166552424431,0.0031250000465661287,2.1549064117353686e-17,3.933020060333951e-18,-0.0037499999161809683,-0.0,-1.0842021724855044e-19,-0.0020833334419876337,1.0943561246973226e-18,-0.01875000074505806,-0.0031250000465661287,2.168404344971009e-19,-0.019771825522184372,0.0024999999441206455,0.0013888889225199819,0.0031250000465661287,0.018814483657479286,9.600989416951936e-18,2.3016228165984397e-18,-7.849757897490408e-19,-0.0012499999720603228,-0.0,8.402566836762659e-19,-0.0006944444612599909,-4.336808689942018e-19,-0.0015625000232830644,-0.0029761905316263437,0.0020833334419876337,-0.0062500000931322575,-5.693976742257265e-18,2.1549064117353686e-17,9.600989416951936e-18,0.0020833334419876337,5.692061405548898e-19,-3.1671306360389587e-18,-2.021794646406957e-18,7.589415207398531e-19,-2.981555974335137e-19,-2.439454888092385e-19,-5.854691731421724e-18,-1.6263032587282567e-18,-8.944667923005412e-19,0.0016666667070239782,-0.0011111111380159855,-0.0004761904710903764,3.933020060333951e-18,2.3016228165984397e-18,5.692061405548898e-19,0.0003174603043589741,-1.0121083414696503e-19,-7.930323996683366e-20,1.8973538018496328e-19,6.776263578034403e-20,-0.0,-1.6534083130403943e-18,-2.710505431213761e-19,-4.336808689942018e-19,0.0037499999161809683,-0.0024999999441206455,-1.734723475976807e-18,-0.0037499999161809683,-7.849757897490408e-19,-3.1671306360389587e-18,-1.0121083414696503e-19,0.0024999999441206455,-2.710505431213761e-20,2.168404344971009e-19,-5.421010862427522e-20,1.6263032587282567e-19,-4.391018798566293e-18,3.7947076036992655e-19,-2.710505431213761e-20,0.0024999999441206455,-0.0016666667070239782,-1.5178830414797062e-18,-0.0,-0.0012499999720603228,-2.021794646406957e-18,-7.930323996683366e-20,-2.710505431213761e-20,0.0008333333535119891,1.8973538018496328e-19,1.3552527156068805e-19,4.0657581468206416e-20,-3.5236570605778894e-19,1.8973538018496328e-19,-6.911788849595091e-19,0.0006944444612599909,-3.577867169202165e-18,-0.0006944444612599909,-1.0842021724855044e-19,-0.0,7.589415207398531e-19,1.8973538018496328e-19,2.168404344971009e-19,1.8973538018496328e-19,9.920635056914762e-05,8.131516293641283e-20,4.0657581468206416e-20,0.0,0.0,-1.8973538018496328e-19,0.0020833334419876337,1.8973538018496328e-19,-0.0005952381179668009,-0.0020833334419876337,8.402566836762659e-19,-2.981555974335137e-19,6.776263578034403e-20,-5.421010862427522e-20,1.3552527156068805e-19,8.131516293641283e-20,0.0005952381179668009,2.710505431213761e-20,-2.1141942363467336e-18,-1.8973538018496328e-19,-2.439454888092385e-19,0.0013888889225199819,3.2526065174565133e-19,-0.00039682540227659047,1.0943561246973226e-18,-0.0006944444612599909,-2.439454888092385e-19,-0.0,1.6263032587282567e-19,4.0657581468206416e-20,4.0657581468206416e-20,2.710505431213761e-20,0.00019841270113829523,-7.453889935837843e-19,2.710505431213761e-20,-8.538092108323347e-19,0.0031250000465661287,2.949029909160572e-17,6.071532165918825e-18,-0.01875000074505806,-4.336808689942018e-19,-5.854691731421724e-18,-1.6534083130403943e-18,-4.391018798566293e-18,-3.5236570605778894e-19,0.0,-2.1141942363467336e-18,-7.453889935837843e-19,0.00937500037252903,2.239860135391249e-18,3.3966835440812925e-19,0.0031250000465661287,4.87890977618477e-18,4.336808689942018e-19,-0.0031250000465661287,-0.0015625000232830644,-1.6263032587282567e-18,-2.710505431213761e-19,3.7947076036992655e-19,1.8973538018496328e-19,0.0,-1.8973538018496328e-19,2.710505431213761e-20,2.239860135391249e-18,0.0015625000232830644,-5.679941012376494e-20,0.0014880952658131719,6.071532165918825e-18,3.686287386450715e-18,2.168404344971009e-19,-0.0029761905316263437,-8.944667923005412e-19,-4.336808689942018e-19,-2.710505431213761e-20,-6.911788849595091e-19,-1.8973538018496328e-19,-2.439454888092385e-19,-8.538092108323347e-19,3.3966835440812925e-19,-5.679941012376494e-20,0.0007440476329065859,4.0,8.0,3.0,6.0,0.06400462985038757,-0.01974206417798996,-0.011507936753332615,-0.02415674552321434,-0.014521329663693905,0.0017361111240461469,0.0013888889225199819,0.0031250000465661287,0.0017857142956927419,0.0005787037080153823,0.0017361111240461469,0.0009920635493472219,0.0026041667442768812,0.0022321429569274187,0.0009300595265813172,-0.01974206417798996,0.025314154103398323,0.0013888889225199819,0.0031250000465661287,0.0017857142956927419,-0.0052083334885537624,-0.0009259259095415473,-0.0020833334419876337,-0.0011904762359336019,1.6601845766184287e-19,-0.0,-1.880843406070045e-19,4.487416623485466e-33,-3.965082252960754e-19,-6.195441133342278e-19,-0.011507936753332615,0.0013888889225199819,0.006181500386446714,0.0017361111240461469,0.0009920635493472219,-0.0,-0.00039682540227659047,-0.0,-1.762258793454443e-19,-0.0005787037080153823,-0.0004960317746736109,-0.00028344671591185033,2.1368650588026027e-33,-1.8881343569348464e-19,-2.95020996502244e-19,-0.02415674552321434,0.0031250000465661287,0.0017361111240461469,0.05019841343164444,0.0022321429569274187,-0.0,4.490774774943334e-36,-0.0031250000465661287,-3.965082252960754e-19,-0.0,-0.0017361111240461469,-1.8881343569348464e-19,-0.015625,-0.0022321429569274187,3.4074925716394644e-18,-0.014521329663693905,0.0017857142956927419,0.0009920635493472219,0.0022321429569274187,0.010923858731985092,-0.0,-1.1858461261560205e-20,-0.0,-0.0007142857066355646,-2.4755736972277703e-20,-1.504632769052528e-35,-0.00039682540227659047,1.0104763916692656e-17,-0.0008928571478463709,-0.0013950893189758062,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0009259259095415473,-0.00039682540227659047,4.490774774943334e-36,-1.1858461261560205e-20,-0.0,0.00026455026818439364,-0.0,-0.0,-4.743384504624082e-20,-0.0,3.3881317890172014e-21,-0.0,-1.7963098382308523e-36,3.638567558062877e-36,0.0031250000465661287,-0.0020833334419876337,-0.0,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0011904762359336019,-1.762258793454443e-19,-3.965082252960754e-19,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0004761904710903764,-3.009265538105056e-36,0.0,7.04903478607686e-20,-1.7949666493941863e-33,1.5860328753349075e-19,2.4781765050356993e-19,0.0005787037080153823,1.6601845766184287e-19,-0.0005787037080153823,-0.0,-2.4755736972277703e-20,-0.0,-4.743384504624082e-20,-0.0,-3.009265538105056e-36,8.26719551696442e-05,-0.0,0.0,0.0,-3.009265538105056e-36,6.018531076210112e-36,0.0017361111240461469,-0.0,-0.0004960317746736109,-0.0017361111240461469,-1.504632769052528e-35,-0.0,-0.0,-0.0,0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,3.009265538105056e-36,0.0009920635493472219,-1.880843406070045e-19,-0.00028344671591185033,-1.8881343569348464e-19,-0.00039682540227659047,-0.0,3.3881317890172014e-21,-0.0,7.04903478607686e-20,0.0,-0.0,0.00011337868636474013,-8.54746023521041e-34,7.552537686233327e-20,1.1800840377077644e-19,0.0026041667442768812,4.487416623485466e-33,2.1368650588026027e-33,-0.015625,1.0104763916692656e-17,-0.0,-0.0,-0.0,-1.7949666493941863e-33,0.0,-0.0,-8.54746023521041e-34,0.0078125,-1.5860329011843016e-18,-1.7037462858197322e-18,0.0022321429569274187,-3.965082252960754e-19,-1.8881343569348464e-19,-0.0022321429569274187,-0.0008928571478463709,-0.0,-1.7963098382308523e-36,-0.0,1.5860328753349075e-19,-3.009265538105056e-36,-0.0,7.552537686233327e-20,-1.5860329011843016e-18,0.0008928571478463709,5.070305241972371e-34,0.0009300595265813172,-6.195441133342278e-19,-2.95020996502244e-19,3.4074925716394644e-18,-0.0013950893189758062,-0.0,3.638567558062877e-36,-0.0,2.4781765050356993e-19,6.018531076210112e-36,3.009265538105056e-36,1.1800840377077644e-19,-1.7037462858197322e-18,5.070305241972371e-34,0.00027901786961592734,4.0,8.0,3.0,7.0,0.0563616082072258,-0.01711309514939785,-0.00997023843228817,-0.02094493992626667,-0.01112351194024086,0.0014880952658131719,0.0011904762359336019,0.0026785715017467737,0.0013392857508733869,0.0004960317746736109,0.0014880952658131719,0.0007440476329065859,0.0022321429569274187,0.0016741071594879031,0.0006200397037900984,-0.01711309514939785,0.02182539738714695,0.0011904762359336019,0.0026785715017467737,0.0013392857508733869,-0.004464285913854837,-0.0007936508045531809,-0.0017857142956927419,-0.0008928571478463709,1.476719147928435e-19,-2.0832432251635763e-20,-1.4193182417900247e-19,4.489099968130042e-34,3.4355666000366724e-34,2.6036396737443053e-20,-0.00997023843228817,0.0011904762359336019,0.005328798200935125,0.0014880952658131719,0.0007440476329065859,-6.608470507765904e-19,-0.0003401360590942204,-2.2657611766230274e-19,-2.0328790734103208e-19,-0.0004960317746736109,-0.00042517005931586027,-0.00021258502965793014,1.1074097180226606e-33,1.9086481111314847e-34,-1.2927026101553277e-19,-0.02094493992626667,0.0026785715017467737,0.0014880952658131719,0.04326637089252472,0.0016741071594879031,-1.4869058513226313e-18,-2.5029304018542315e-19,-0.0026785715017467737,3.3652389193299428e-21,-5.421010862427522e-20,-0.0014880952658131719,-1.1858461261560205e-20,-0.013392857275903225,-0.0016741071594879031,2.1533616519414258e-18,-0.01112351194024086,0.0013392857508733869,0.0007440476329065859,0.0016741071594879031,0.006932043470442295,-7.434529256613157e-19,-1.295183635005104e-19,-5.861490081892543e-34,-0.00044642857392318547,-1.4998283770446644e-20,-0.0,-0.00024801588733680546,8.14257983433418e-18,-0.0005580357392318547,-0.0007440476329065859,0.0014880952658131719,-0.004464285913854837,-6.608470507765904e-19,-1.4869058513226313e-18,-7.434529256613157e-19,0.0014880952658131719,4.405647177506564e-19,9.912706020142797e-19,4.956353010071399e-19,-7.222237291452134e-35,1.1564323151721062e-35,7.878798526050014e-35,-0.0,-0.0,5.72394755707135e-36,0.0011904762359336019,-0.0007936508045531809,-0.0003401360590942204,-2.5029304018542315e-19,-1.295183635005104e-19,4.405647177506564e-19,0.00022675737272948027,1.5105075372466654e-19,7.429786022035018e-20,-4.0657581468206416e-20,6.776263578034403e-21,1.0164395367051604e-20,2.414781942064798e-35,-0.0,-2.692893754308484e-21,0.0026785715017467737,-0.0017857142956927419,-2.2657611766230274e-19,-0.0026785715017467737,-5.861490081892543e-34,9.912706020142797e-19,1.5105075372466654e-19,0.0017857142956927419,3.796517293313522e-34,-1.8055593228630336e-35,6.018531076210112e-36,7.52316384526264e-36,0.0,-0.0,-1.4861036124561275e-36,0.0013392857508733869,-0.0008928571478463709,-2.0328790734103208e-19,3.3652389193299428e-21,-0.00044642857392318547,4.956353010071399e-19,7.429786022035018e-20,3.796517293313522e-34,0.00029761905898340046,-1.790127493799506e-21,-9.614968917938099e-22,3.5452146798107284e-20,-1.7780913259621784e-34,-1.1451888666788908e-34,-5.537089667086714e-21,0.0004960317746736109,1.476719147928435e-19,-0.0004960317746736109,-5.421010862427522e-20,-1.4998283770446644e-20,-7.222237291452134e-35,-4.0657581468206416e-20,-1.8055593228630336e-35,-1.790127493799506e-21,7.086167897796258e-05,1.3552527156068805e-20,6.776263578034403e-21,3.521556939055763e-35,-0.0,-3.1042000242744572e-21,0.0014880952658131719,-2.0832432251635763e-20,-0.00042517005931586027,-0.0014880952658131719,-0.0,1.1564323151721062e-35,6.776263578034403e-21,6.018531076210112e-36,-9.614968917938099e-22,1.3552527156068805e-20,0.00042517005931586027,3.3881317890172014e-21,1.8512410250183106e-35,-0.0,-1.6024947186821539e-21,0.0007440476329065859,-1.4193182417900247e-19,-0.00021258502965793014,-1.1858461261560205e-20,-0.00024801588733680546,7.878798526050014e-35,1.0164395367051604e-20,7.52316384526264e-36,3.5452146798107284e-20,6.776263578034403e-21,3.3881317890172014e-21,7.086167897796258e-05,-4.76258653486602e-34,-6.362160561762233e-35,5.280510681093696e-20,0.0022321429569274187,4.489099968130042e-34,1.1074097180226606e-33,-0.013392857275903225,8.14257983433418e-18,-0.0,2.414781942064798e-35,0.0,-1.7780913259621784e-34,3.521556939055763e-35,1.8512410250183106e-35,-4.76258653486602e-34,0.0066964286379516125,-1.69932097294015e-18,-1.073876476899005e-18,0.0016741071594879031,3.4355666000366724e-34,1.9086481111314847e-34,-0.0016741071594879031,-0.0005580357392318547,-0.0,-0.0,-0.0,-1.1451888666788908e-34,-0.0,-0.0,-6.362160561762233e-35,-1.69932097294015e-18,0.0005580357392318547,8.164772539170446e-35,0.0006200397037900984,2.6036396737443053e-20,-1.2927026101553277e-19,2.1533616519414258e-18,-0.0007440476329065859,5.72394755707135e-36,-2.692893754308484e-21,-1.4861036124561275e-36,-5.537089667086714e-21,-3.1042000242744572e-21,-1.6024947186821539e-21,5.280510681093696e-20,-1.073876476899005e-18,8.164772539170446e-35,0.00012400794366840273,4.0,8.0,3.0,8.0,0.05036168918013573,-0.015104166232049465,-0.008796296082437038,-0.01848958246409893,-0.008796296082437038,0.0013020833721384406,0.0010416667209938169,0.0023437500931322575,0.0010416667209938169,0.0004340277810115367,0.0013020833721384406,0.0005787037080153823,0.001953125,0.0013020833721384406,0.0004340277810115367,-0.015104166232049465,0.01918402686715126,0.0010416667209938169,0.0023437500931322575,0.0010416667209938169,-0.00390625,-0.0006944444612599909,-0.0015625000232830644,-0.0006944444612599909,1.1671840268080292e-19,-1.7383010741313644e-21,-0.0,-1.2004120759948353e-33,-2.1734453322579233e-20,1.142933546940418e-19,-0.008796296082437038,0.0010416667209938169,0.004683366511017084,0.0013020833721384406,0.0005787037080153823,-0.0,-0.00029761905898340046,-0.0,6.776263578034403e-21,-0.0004340277810115367,-0.00037202381645329297,-0.0001653439103392884,-2.1666711874356403e-34,-6.776263578034403e-21,1.2210059873922124e-20,-0.01848958246409893,0.0023437500931322575,0.0013020833721384406,0.03802083432674408,0.0013020833721384406,-0.0,1.2208412631377827e-22,-0.0023437500931322575,-2.359483906576068e-20,-0.0,-0.0013020833721384406,-6.666379823019479e-21,-0.01171875,-0.0013020833721384406,1.426762686357243e-18,-0.008796296082437038,0.0010416667209938169,0.0005787037080153823,0.0013020833721384406,0.004683366511017084,-0.0,-1.6041410221664297e-20,-0.0,-0.00029761905898340046,-2.3032060596779118e-20,-6.776263578034403e-21,-0.0001653439103392884,6.050880774745826e-18,-0.00037202381645329297,-0.0004340277810115367,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0006944444612599909,-0.00029761905898340046,1.2208412631377827e-22,-1.6041410221664297e-20,-0.0,0.00019841270113829523,-0.0,3.6562448352610234e-22,-3.3881317890172014e-20,-0.0,3.3881317890172014e-21,-6.24707088304741e-36,-3.488117939757145e-23,4.84636760231401e-22,0.0023437500931322575,-0.0015625000232830644,-0.0,-0.0023437500931322575,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0006944444612599909,6.776263578034403e-21,-2.359483906576068e-20,-0.00029761905898340046,-0.0,3.6562448352610234e-22,-0.0,0.00019841270113829523,5.332023697052702e-22,4.966574353269333e-22,-3.3881317890172014e-21,3.492219688027797e-34,6.2447249096673564e-21,-3.3139879717988936e-20,0.0004340277810115367,1.1671840268080292e-19,-0.0004340277810115367,-0.0,-2.3032060596779118e-20,-0.0,-3.3881317890172014e-20,-0.0,5.332023697052702e-22,6.200397183420137e-05,-0.0,3.3881317890172014e-21,-9.110311525077937e-36,-5.086838596407428e-23,1.0178129271328434e-21,0.0013020833721384406,-1.7383010741313644e-21,-0.00037202381645329297,-0.0013020833721384406,-6.776263578034403e-21,-0.0,-0.0,-0.0,4.966574353269333e-22,-0.0,0.00037202381645329297,-0.0,-5.0682352985875623e-36,5.473517323109998e-22,7.242920973923692e-22,0.0005787037080153823,-0.0,-0.0001653439103392884,-6.666379823019479e-21,-0.0001653439103392884,-0.0,3.3881317890172014e-21,-0.0,-3.3881317890172014e-21,3.3881317890172014e-21,-0.0,4.724111931864172e-05,8.573829649988476e-35,1.9046798917345963e-21,-6.105029936961062e-21,0.001953125,-1.2004120759948353e-33,-2.1666711874356403e-34,-0.01171875,6.050880774745826e-18,-0.0,-6.24707088304741e-36,-0.0,3.492219688027797e-34,-9.110311525077937e-36,-5.0682352985875623e-36,8.573829649988476e-35,0.005859375,-9.912706020142797e-19,-7.228014310907402e-19,0.0013020833721384406,-2.1734453322579233e-20,-6.776263578034403e-21,-0.0013020833721384406,-0.00037202381645329297,-0.0,-3.488117939757145e-23,-0.0,6.2447249096673564e-21,-5.086838596407428e-23,5.473517323109998e-22,1.9046798917345963e-21,-9.912706020142797e-19,0.00037202381645329297,4.658635973458903e-21,0.0004340277810115367,1.142933546940418e-19,1.2210059873922124e-20,1.426762686357243e-18,-0.0004340277810115367,-0.0,4.84636760231401e-22,-0.0,-3.3139879717988936e-20,1.0178129271328434e-21,7.242920973923692e-22,-6.105029936961062e-21,-7.228014310907402e-19,4.658635973458903e-21,6.200397183420137e-05,4.0,8.0,4.0,3.0,0.08803819119930267,-0.028541667386889458,-0.01666666753590107,-0.028541667386889458,-0.03489583358168602,0.0026041667442768812,0.0020833334419876337,0.0037499999161809683,0.004687500186264515,0.0008680555620230734,0.0020833334419876337,0.0026041667442768812,0.0026041667442768812,0.004687500186264515,0.00390625,-0.028541667386889458,0.03725694492459297,0.0020833334419876337,0.0037499999161809683,0.004687500186264515,-0.0078125,-0.0013888889225199819,-0.0024999999441206455,-0.0031250000465661287,5.8817967857338616e-18,4.336808689942018e-19,3.0899761915836876e-18,-3.903127820947816e-18,6.505213034913027e-19,-1.734723475976807e-17,-0.01666666753590107,0.0020833334419876337,0.00910218246281147,0.0020833334419876337,0.0026041667442768812,1.2355781270981174e-17,-0.0005952381179668009,1.3010426069826053e-18,3.0357660829594124e-18,-0.0008680555620230734,-0.0005952381179668009,-0.0007440476329065859,-6.938893903907228e-18,-3.903127820947816e-18,-1.5612511283791264e-17,-0.028541667386889458,0.0037499999161809683,0.0020833334419876337,0.03725694492459297,0.004687500186264515,6.985742932260394e-18,-9.927940825869646e-18,-0.0024999999441206455,3.2526065174565133e-19,-0.0,-0.0013888889225199819,-4.91251026625698e-18,-0.0078125,-0.0031250000465661287,-1.8648277366750676e-17,-0.03489583358168602,0.004687500186264515,0.0026041667442768812,0.004687500186264515,0.07395832985639572,8.021059557724627e-18,-1.0287249058808592e-17,-1.0967634063954897e-17,-0.004687500186264515,-5.421010862427522e-19,-5.583641188300348e-18,-0.0026041667442768812,-8.131516293641283e-18,-0.004687500186264515,-0.0234375,0.0026041667442768812,-0.0078125,1.2355781270981174e-17,6.985742932260394e-18,8.021059557724627e-18,0.0026041667442768812,-2.981555974335137e-19,4.65561960765644e-19,-1.8189728553410987e-18,-1.4094628242311558e-18,-6.2341624917916505e-19,-1.2197274440461925e-18,-1.0299920638612292e-18,-1.6263032587282567e-18,1.463672932855431e-18,0.0020833334419876337,-0.0013888889225199819,-0.0005952381179668009,-9.927940825869646e-18,-1.0287249058808592e-17,-2.981555974335137e-19,0.00039682540227659047,1.0366692725609104e-18,8.229977152917119e-19,-2.439454888092385e-19,4.472333961502706e-19,2.981555974335137e-19,1.7889335846010823e-18,1.0028870095490916e-18,3.144186300207963e-18,0.0037499999161809683,-0.0024999999441206455,1.3010426069826053e-18,-0.0024999999441206455,-1.0967634063954897e-17,4.65561960765644e-19,1.0366692725609104e-18,0.0016666667070239782,1.3552527156068805e-18,-3.7947076036992655e-19,-5.421010862427522e-20,2.710505431213761e-20,8.131516293641283e-20,1.0299920638612292e-18,3.848917712323541e-18,0.004687500186264515,-0.0031250000465661287,3.0357660829594124e-18,3.2526065174565133e-19,-0.004687500186264515,-1.8189728553410987e-18,8.229977152917119e-19,1.3552527156068805e-18,0.0031250000465661287,-4.336808689942018e-19,-2.710505431213761e-19,-5.149960319306146e-19,-2.710505431213761e-20,-1.463672932855431e-18,-6.0173220572945496e-18,0.0008680555620230734,5.8817967857338616e-18,-0.0008680555620230734,-0.0,-5.421010862427522e-19,-1.4094628242311558e-18,-2.439454888092385e-19,-3.7947076036992655e-19,-4.336808689942018e-19,0.00012400794366840273,-2.710505431213761e-20,-2.710505431213761e-20,2.168404344971009e-19,2.168404344971009e-19,9.75781955236954e-19,0.0020833334419876337,4.336808689942018e-19,-0.0005952381179668009,-0.0013888889225199819,-5.583641188300348e-18,-6.2341624917916505e-19,4.472333961502706e-19,-5.421010862427522e-20,-2.710505431213761e-19,-2.710505431213761e-20,0.00039682540227659047,2.9529727482683673e-19,8.256794865363971e-19,3.9197051925076263e-19,2.1767843049616305e-18,0.0026041667442768812,3.0899761915836876e-18,-0.0007440476329065859,-4.91251026625698e-18,-0.0026041667442768812,-1.2197274440461925e-18,2.981555974335137e-19,2.710505431213761e-20,-5.149960319306146e-19,-2.710505431213761e-20,2.9529727482683673e-19,0.0007440476329065859,9.671772089148711e-19,6.897590811368501e-19,2.083216942792082e-18,0.0026041667442768812,-3.903127820947816e-18,-6.938893903907228e-18,-0.0078125,-8.131516293641283e-18,-1.0299920638612292e-18,1.7889335846010823e-18,8.131516293641283e-20,-2.710505431213761e-20,2.168404344971009e-19,8.256794865363971e-19,9.671772089148711e-19,0.0026041667442768812,-9.290396331828075e-19,3.0686946955790765e-18,0.004687500186264515,6.505213034913027e-19,-3.903127820947816e-18,-0.0031250000465661287,-0.004687500186264515,-1.6263032587282567e-18,1.0028870095490916e-18,1.0299920638612292e-18,-1.463672932855431e-18,2.168404344971009e-19,3.9197051925076263e-19,6.897590811368501e-19,-9.290396331828075e-19,0.0031250000465661287,-5.909865091869317e-18,0.00390625,-1.734723475976807e-17,-1.5612511283791264e-17,-1.8648277366750676e-17,-0.0234375,1.463672932855431e-18,3.144186300207963e-18,3.848917712323541e-18,-6.0173220572945496e-18,9.75781955236954e-19,2.1767843049616305e-18,2.083216942792082e-18,3.0686946955790765e-18,-5.909865091869317e-18,0.01171875,4.0,8.0,4.0,4.0,0.0710677057504654,-0.022109374403953552,-0.012890624813735485,-0.022109374403953552,-0.022109374403953552,0.001953125,0.0015625000232830644,0.002812500111758709,0.002812500111758709,0.0006510416860692203,0.0015625000232830644,0.0015625000232830644,0.001953125,0.002812500111758709,0.001953125,-0.022109374403953552,0.028411459177732468,0.0015625000232830644,0.002812500111758709,0.002812500111758709,-0.005859375,-0.0010416667209938169,-0.0018749999580904841,-0.0018749999580904841,-3.279711571768651e-18,-5.2583805365546965e-18,-5.285485590866834e-18,-1.214306433183765e-17,-1.2034644114589099e-17,-1.3444106938820255e-17,-0.012890624813735485,0.0015625000232830644,0.006938244216144085,0.0015625000232830644,0.0015625000232830644,-4.817316667003153e-18,-0.00044642857392318547,-5.637851296924623e-18,-6.288372600415926e-18,-0.0006510416860692203,-0.00044642857392318547,-0.00044642857392318547,-1.3010426069826053e-18,-2.8189256484623115e-18,-1.734723475976807e-18,-0.022109374403953552,0.002812500111758709,0.0015625000232830644,0.028411459177732468,0.002812500111758709,-6.095551009365527e-18,-4.443116701496414e-18,-0.0018749999580904841,-1.8431436932253575e-17,-1.3010426069826053e-18,-0.0010416667209938169,-4.1397085071731886e-18,-0.005859375,-0.0018749999580904841,-1.6696713456276768e-17,-0.022109374403953552,0.002812500111758709,0.0015625000232830644,0.002812500111758709,0.028411459177732468,-5.996518464888841e-18,-4.181036104937563e-18,-1.5684939218226407e-17,-0.0018749999580904841,-1.5178830414797062e-18,-5.014435047745458e-18,-0.0010416667209938169,-1.6534083130403943e-17,-0.0018749999580904841,-0.005859375,0.001953125,-0.005859375,-4.817316667003153e-18,-6.095551009365527e-18,-5.996518464888841e-18,0.001953125,-8.131516293641283e-19,-8.316330672964592e-19,-8.104897104541444e-19,5.421010862427522e-19,6.2341624917916505e-19,5.963111948670274e-19,8.944667923005412e-19,1.1384122811097797e-18,8.944667923005412e-19,0.0015625000232830644,-0.0010416667209938169,-0.00044642857392318547,-4.443116701496414e-18,-4.181036104937563e-18,-8.131516293641283e-19,0.00029761905898340046,7.336138707689388e-19,6.875130272798272e-19,1.8973538018496328e-19,2.846030702774449e-19,2.168404344971009e-19,5.014435047745458e-19,3.5236570605778894e-19,5.285485590866834e-19,0.002812500111758709,-0.0018749999580904841,-5.637851296924623e-18,-0.0018749999580904841,-1.5684939218226407e-17,-8.316330672964592e-19,7.336138707689388e-19,0.0012499999720603228,1.870248747537495e-18,3.2526065174565133e-19,5.149960319306146e-19,7.589415207398531e-19,1.328147661294743e-18,1.870248747537495e-18,2.1955093992831465e-18,0.002812500111758709,-0.0018749999580904841,-6.288372600415926e-18,-1.8431436932253575e-17,-0.0018749999580904841,-8.104897104541444e-19,6.875130272798272e-19,1.870248747537495e-18,0.0012499999720603228,3.2526065174565133e-19,8.809142651444724e-19,7.047314121155779e-19,2.5478751053409354e-18,2.6291902682773483e-18,2.656295322589486e-18,0.0006510416860692203,-3.279711571768651e-18,-0.0006510416860692203,-1.3010426069826053e-18,-1.5178830414797062e-18,5.421010862427522e-19,1.8973538018496328e-19,3.2526065174565133e-19,3.2526065174565133e-19,9.300595411332324e-05,9.486769009248164e-20,4.0657581468206416e-20,1.6263032587282567e-19,1.0842021724855044e-19,1.0842021724855044e-19,0.0015625000232830644,-5.2583805365546965e-18,-0.00044642857392318547,-0.0010416667209938169,-5.014435047745458e-18,6.2341624917916505e-19,2.846030702774449e-19,5.149960319306146e-19,8.809142651444724e-19,9.486769009248164e-20,0.00029761905898340046,2.1565128481837348e-19,-8.568998160947743e-19,3.9496959180854435e-19,6.806021400570998e-19,0.0015625000232830644,-5.285485590866834e-18,-0.00044642857392318547,-4.1397085071731886e-18,-0.0010416667209938169,5.963111948670274e-19,2.168404344971009e-19,7.589415207398531e-19,7.047314121155779e-19,4.0657581468206416e-20,2.1565128481837348e-19,0.00029761905898340046,5.076369679122483e-19,3.19206930432682e-19,-6.478127522742861e-19,0.001953125,-1.214306433183765e-17,-1.3010426069826053e-18,-0.005859375,-1.6534083130403943e-17,8.944667923005412e-19,5.014435047745458e-19,1.328147661294743e-18,2.5478751053409354e-18,1.6263032587282567e-19,-8.568998160947743e-19,5.076369679122483e-19,0.001953125,2.2387287591084296e-18,2.134419836299421e-18,0.002812500111758709,-1.2034644114589099e-17,-2.8189256484623115e-18,-0.0018749999580904841,-0.0018749999580904841,1.1384122811097797e-18,3.5236570605778894e-19,1.870248747537495e-18,2.6291902682773483e-18,1.0842021724855044e-19,3.9496959180854435e-19,3.19206930432682e-19,2.2387287591084296e-18,0.0012499999720603228,2.5520035637781876e-18,0.001953125,-1.3444106938820255e-17,-1.734723475976807e-18,-1.6696713456276768e-17,-0.005859375,8.944667923005412e-19,5.285485590866834e-19,2.1955093992831465e-18,2.656295322589486e-18,1.0842021724855044e-19,6.806021400570998e-19,-6.478127522742861e-19,2.134419836299421e-18,2.5520035637781876e-18,0.001953125,4.0,8.0,4.0,5.0,0.05969047546386719,-0.018062500283122063,-0.010520833544433117,-0.018062500283122063,-0.015297618694603443,0.0015625000232830644,0.0012499999720603228,0.0022499999031424522,0.0018749999580904841,0.0005208333604969084,0.0012499999720603228,0.0010416667209938169,0.0015625000232830644,0.0018749999580904841,0.0011160714784637094,-0.018062500283122063,0.022979166358709335,0.0012499999720603228,0.0022499999031424522,0.0018749999580904841,-0.004687500186264515,-0.0008333333535119891,-0.001500000013038516,-0.0012499999720603228,2.439454888092385e-18,-3.279711571768651e-18,-6.911788849595091e-19,-1.1058862159352145e-17,-3.903127820947816e-18,4.336808689942018e-19,-0.010520833544433117,0.0012499999720603228,0.0056101190857589245,0.0012499999720603228,0.0010416667209938169,1.5566712981611194e-18,-0.0003571428533177823,-3.0357660829594124e-18,3.0357660829594124e-18,-0.0005208333604969084,-0.0003571428533177823,-0.00029761905898340046,-7.37257477290143e-18,-8.673617379884035e-19,3.0357660829594124e-18,-0.018062500283122063,0.0022499999031424522,0.0012499999720603228,0.022979166358709335,0.0018749999580904841,-8.886169710085661e-18,-5.789747299988348e-18,-0.001500000013038516,1.9786689647860456e-18,-1.5720931501039814e-18,-0.0008333333535119891,-2.3273743966332874e-18,-0.004687500186264515,-0.0012499999720603228,8.131516293641283e-19,-0.015297618694603443,0.0018749999580904841,0.0010416667209938169,0.0018749999580904841,0.014345237985253334,-5.036256072304607e-18,-2.198877420243521e-19,-3.776595243416498e-18,-0.0009374999790452421,1.0299920638612292e-18,-4.607859233063394e-19,-0.0005208333604969084,-2.1412992906588713e-18,-0.0009374999790452421,-0.0022321429569274187,0.0015625000232830644,-0.004687500186264515,1.5566712981611194e-18,-8.886169710085661e-18,-5.036256072304607e-18,0.0015625000232830644,2.710505431213761e-19,1.208270992562333e-18,2.841205913357792e-19,-5.149960319306146e-19,4.0657581468206416e-19,2.574980159653073e-19,1.0842021724855044e-18,8.402566836762659e-19,5.149960319306146e-19,0.0012499999720603228,-0.0008333333535119891,-0.0003571428533177823,-5.789747299988348e-18,-2.198877420243521e-19,2.710505431213761e-19,0.0002380952355451882,4.101971338556389e-19,-1.3508632299875796e-19,-5.421010862427522e-20,3.3203691532368573e-19,8.809142651444724e-20,1.0028870095490916e-18,3.3881317890172014e-19,-1.0164395367051604e-19,0.0022499999031424522,-0.001500000013038516,-3.0357660829594124e-18,-0.001500000013038516,-3.776595243416498e-18,1.208270992562333e-18,4.101971338556389e-19,0.0010000000474974513,2.439454888092385e-19,2.710505431213761e-20,8.673617379884035e-19,2.574980159653073e-19,2.4665599424045226e-18,8.673617379884035e-19,2.710505431213761e-19,0.0018749999580904841,-0.0012499999720603228,3.0357660829594124e-18,1.9786689647860456e-18,-0.0009374999790452421,2.841205913357792e-19,-1.3508632299875796e-19,2.439454888092385e-19,0.0006249999860301614,-2.168404344971009e-19,-2.168404344971009e-19,-4.0657581468206416e-19,-8.131516293641283e-20,-6.911788849595091e-19,-9.622294280808852e-19,0.0005208333604969084,2.439454888092385e-18,-0.0005208333604969084,-1.5720931501039814e-18,1.0299920638612292e-18,-5.149960319306146e-19,-5.421010862427522e-20,2.710505431213761e-20,-2.168404344971009e-19,7.440476474585012e-05,8.131516293641283e-20,2.710505431213761e-20,2.710505431213761e-19,1.3552527156068805e-20,-2.439454888092385e-19,0.0012499999720603228,-3.279711571768651e-18,-0.0003571428533177823,-0.0008333333535119891,-4.607859233063394e-19,4.0657581468206416e-19,3.3203691532368573e-19,8.673617379884035e-19,-2.168404344971009e-19,8.131516293641283e-20,0.0002380952355451882,1.7038432985959482e-19,1.8147978679943904e-18,3.580490314020935e-19,-8.087382976787311e-20,0.0010416667209938169,-6.911788849595091e-19,-0.00029761905898340046,-2.3273743966332874e-18,-0.0005208333604969084,2.574980159653073e-19,8.809142651444724e-20,2.574980159653073e-19,-4.0657581468206416e-19,2.710505431213761e-20,1.7038432985959482e-19,0.00014880952949170023,4.9376008255848215e-19,-1.4499316792727294e-19,-4.2675969371260574e-19,0.0015625000232830644,-1.1058862159352145e-17,-7.37257477290143e-18,-0.004687500186264515,-2.1412992906588713e-18,1.0842021724855044e-18,1.0028870095490916e-18,2.4665599424045226e-18,-8.131516293641283e-20,2.710505431213761e-19,1.8147978679943904e-18,4.9376008255848215e-19,0.0015625000232830644,3.46023738150739e-19,7.712402618071417e-21,0.0018749999580904841,-3.903127820947816e-18,-8.673617379884035e-19,-0.0012499999720603228,-0.0009374999790452421,8.402566836762659e-19,3.3881317890172014e-19,8.673617379884035e-19,-6.911788849595091e-19,1.3552527156068805e-20,3.580490314020935e-19,-1.4499316792727294e-19,3.46023738150739e-19,0.0006249999860301614,-3.946311715404336e-19,0.0011160714784637094,4.336808689942018e-19,3.0357660829594124e-18,8.131516293641283e-19,-0.0022321429569274187,5.149960319306146e-19,-1.0164395367051604e-19,2.710505431213761e-19,-9.622294280808852e-19,-2.439454888092385e-19,-8.087382976787311e-20,-4.2675969371260574e-19,7.712402618071417e-21,-3.946311715404336e-19,0.0005580357392318547,4.0,8.0,4.0,6.0,0.05149677395820618,-0.015275297686457634,-0.008891369216144085,-0.015275297686457634,-0.011225818656384945,0.0013020833721384406,0.0010416667209938169,0.0018749999580904841,0.0013392857508733869,0.0004340277810115367,0.0010416667209938169,0.0007440476329065859,0.0013020833721384406,0.0013392857508733869,0.0006975446594879031,-0.015275297686457634,0.019298115745186806,0.0010416667209938169,0.0018749999580904841,0.0013392857508733869,-0.00390625,-0.0006944444612599909,-0.0012499999720603228,-0.0008928571478463709,1.1858461261560205e-19,0.0,-0.0,-0.0,-0.0,-0.0,-0.008891369216144085,0.0010416667209938169,0.0047105299308896065,0.0010416667209938169,0.0007440476329065859,-0.0,-0.00029761905898340046,-0.0,-0.0,-0.0004340277810115367,-0.00029761905898340046,-0.00021258502965793014,-0.0,-0.0,-0.0,-0.015275297686457634,0.0018749999580904841,0.0010416667209938169,0.019298115745186806,0.0013392857508733869,-0.0,-0.0,-0.0012499999720603228,-0.0,-0.0,-0.0006944444612599909,-6.522153693858113e-20,-0.00390625,-0.0008928571478463709,-0.0,-0.011225818656384945,0.0013392857508733869,0.0007440476329065859,0.0013392857508733869,0.008326822891831398,-0.0,-0.0,-0.0,-0.0005357142654247582,1.2921247792610197e-20,-6.522153693858113e-20,-0.00029761905898340046,-0.0,-0.0005357142654247582,-0.0010463169310241938,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0010416667209938169,-0.0006944444612599909,-0.00029761905898340046,-0.0,-0.0,-0.0,0.00019841270113829523,-0.0,-0.0,-3.3881317890172014e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0018749999580904841,-0.0012499999720603228,-0.0,-0.0012499999720603228,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0008928571478463709,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004340277810115367,1.1858461261560205e-19,-0.0004340277810115367,-0.0,1.2921247792610197e-20,-0.0,-3.3881317890172014e-20,-0.0,-0.0,6.200397183420137e-05,-0.0,3.3881317890172014e-21,0.0,0.0,-0.0,0.0010416667209938169,0.0,-0.00029761905898340046,-0.0006944444612599909,-6.522153693858113e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.00019841270113829523,1.8634724839594607e-20,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,-0.00021258502965793014,-6.522153693858113e-20,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,3.3881317890172014e-21,1.8634724839594607e-20,8.50340147735551e-05,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,0.0013392857508733869,-0.0,-0.0,-0.0008928571478463709,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0006975446594879031,-0.0,-0.0,-0.0,-0.0010463169310241938,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002092633949359879,4.0,8.0,4.0,7.0,0.04530134052038193,-0.013236607424914837,-0.007700892630964518,-0.013236607424914837,-0.008593750186264515,0.0011160714784637094,0.0008928571478463709,0.0016071428544819355,0.0010044643422588706,0.00037202381645329297,0.0008928571478463709,0.0005580357392318547,0.0011160714784637094,0.0010044643422588706,0.0004650297632906586,-0.013236607424914837,0.016636904329061508,0.0008928571478463709,0.0016071428544819355,0.0010044643422588706,-0.0033482143189758062,-0.0005952381179668009,-0.0010714285308495164,-0.0006696428754366934,-7.174172349354501e-20,-0.0,-6.013933925505532e-20,-0.0,1.3024928096927756e-20,-4.9776893908021224e-21,-0.007700892630964518,0.0008928571478463709,0.004060374107211828,0.0008928571478463709,0.0005580357392318547,-0.0,-0.00025510202976875007,-0.0,-6.776263578034403e-20,-0.00037202381645329297,-0.00025510202976875007,-0.0001594387722434476,-0.0,-0.0,-1.1988774519779984e-19,-0.013236607424914837,0.0016071428544819355,0.0008928571478463709,0.016636904329061508,0.0010044643422588706,-0.0,1.2156751960852203e-21,-0.0010714285308495164,1.1606640502793927e-20,-0.0,-0.0005952381179668009,4.2351647362715017e-20,-0.0033482143189758062,-0.0006696428754366934,5.811244832506452e-23,-0.008593750186264515,0.0010044643422588706,0.0005580357392318547,0.0010044643422588706,0.005282738246023655,-0.0,1.1502817219015018e-20,-0.0,-0.0003348214377183467,1.5428923367747127e-20,4.743384504624082e-20,-0.00018601190822664648,-0.0,-0.0003348214377183467,-0.0005580357392318547,0.0011160714784637094,-0.0033482143189758062,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0005952381179668009,-0.00025510202976875007,1.2156751960852203e-21,1.1502817219015018e-20,-0.0,0.0001700680295471102,-0.0,1.3507502459208548e-22,2.0328790734103208e-20,-0.0,-1.6940658945086007e-21,-0.0,-4.0522507377625643e-22,-7.951325639876851e-22,0.0016071428544819355,-0.0010714285308495164,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010044643422588706,-0.0006696428754366934,-6.776263578034403e-20,1.1606640502793927e-20,-0.0003348214377183467,-0.0,1.3507502459208548e-22,-0.0,0.00022321428696159273,1.9698441191527253e-22,-0.0,2.202285662861181e-20,-0.0,-3.8688800329657145e-21,2.5868843791890265e-21,0.00037202381645329297,-7.174172349354501e-20,-0.00037202381645329297,-0.0,1.5428923367747127e-20,-0.0,2.0328790734103208e-20,-0.0,1.9698441191527253e-22,5.3146257414482534e-05,-0.0,0.0,0.0,-5.909531978804941e-22,5.533820122624499e-22,0.0008928571478463709,-0.0,-0.00025510202976875007,-0.0005952381179668009,4.743384504624082e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001700680295471102,-1.3552527156068805e-20,-0.0,-0.0,-1.504632769052528e-36,0.0005580357392318547,-6.013933925505532e-20,-0.0001594387722434476,4.2351647362715017e-20,-0.00018601190822664648,-0.0,-1.6940658945086007e-21,-0.0,2.202285662861181e-20,0.0,-1.3552527156068805e-20,5.3146257414482534e-05,-0.0,1.6940658945086007e-21,3.8963515573697816e-20,0.0011160714784637094,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,0.0010044643422588706,1.3024928096927756e-20,-0.0,-0.0006696428754366934,-0.0003348214377183467,-0.0,-4.0522507377625643e-22,-0.0,-3.8688800329657145e-21,-5.909531978804941e-22,-0.0,1.6940658945086007e-21,-0.0,0.00022321428696159273,-1.937081558244757e-23,0.0004650297632906586,-4.9776893908021224e-21,-1.1988774519779984e-19,5.811244832506452e-23,-0.0005580357392318547,-0.0,-7.951325639876851e-22,-0.0,2.5868843791890265e-21,5.533820122624499e-22,-1.504632769052528e-36,3.8963515573697816e-20,-0.0,-1.937081558244757e-23,9.300595411332324e-05,4.0,8.0,4.0,8.0,0.04044704884290695,-0.011679687537252903,-0.0067925346083939075,-0.011679687537252903,-0.0067925346083939075,0.0009765625,0.0007812500116415322,0.0014062500558793545,0.0007812500116415322,0.00032552084303461015,0.0007812500116415322,0.0004340277810115367,0.0009765625,0.0007812500116415322,0.00032552084303461015,-0.011679687537252903,0.014622395858168602,0.0007812500116415322,0.0014062500558793545,0.0007812500116415322,-0.0029296875,-0.0005208333604969084,-0.0009374999790452421,-0.0005208333604969084,1.196580991802398e-19,2.349149480356697e-20,2.371692252312041e-20,-0.0,8.359059462987843e-20,9.267941609371528e-20,-0.0067925346083939075,0.0007812500116415322,0.0035683284513652325,0.0007812500116415322,0.0004340277810115367,-0.0,-0.00022321428696159273,-0.0,2.0328790734103208e-20,-0.00032552084303461015,-0.00022321428696159273,-0.00012400794366840273,-0.0,4.0657581468206416e-20,2.9853914428144837e-20,-0.011679687537252903,0.0014062500558793545,0.0007812500116415322,0.014622395858168602,0.0007812500116415322,-0.0,2.369790544696736e-20,-0.0009374999790452421,8.338418075530377e-20,2.710505431213761e-20,-0.0005208333604969084,1.3659918464032916e-20,-0.0029296875,-0.0005208333604969084,1.186186691923845e-19,-0.0067925346083939075,0.0007812500116415322,0.0004340277810115367,0.0007812500116415322,0.0035683284513652325,-0.0,3.8171198523700624e-21,-0.0,-0.00022321428696159273,1.1389911104369364e-20,-2.710505431213761e-20,-0.00012400794366840273,-0.0,-0.00022321428696159273,-0.00032552084303461015,0.0009765625,-0.0029296875,-0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0005208333604969084,-0.00022321428696159273,2.369790544696736e-20,3.8171198523700624e-21,-0.0,0.00014880952949170023,-0.0,-2.1031582042559657e-22,-3.3881317890172014e-20,-6.776263578034403e-21,-1.6940658945086007e-21,-0.0,5.433333916112179e-24,3.1954793846748447e-22,0.0014062500558793545,-0.0009374999790452421,-0.0,-0.0009374999790452421,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0005208333604969084,2.0328790734103208e-20,8.338418075530377e-20,-0.00022321428696159273,-0.0,-2.1031582042559657e-22,-0.0,0.00014880952949170023,-3.067105840757695e-22,6.440807584148202e-23,-5.082197683525802e-21,-0.0,-2.3888459102648594e-20,-2.6799380379643723e-20,0.00032552084303461015,1.196580991802398e-19,-0.00032552084303461015,2.710505431213761e-20,1.1389911104369364e-20,-0.0,-3.3881317890172014e-20,-0.0,-3.067105840757695e-22,4.650297705666162e-05,-6.776263578034403e-21,0.0,0.0,7.92361159943568e-24,2.08319547951506e-22,0.0007812500116415322,2.349149480356697e-20,-0.00022321428696159273,-0.0005208333604969084,-2.710505431213761e-20,-0.0,-6.776263578034403e-21,-0.0,6.440807584148202e-23,-6.776263578034403e-21,0.00014880952949170023,7.623296525288703e-21,-0.0,-2.5617877981640404e-22,9.392844367254097e-23,0.0004340277810115367,2.371692252312041e-20,-0.00012400794366840273,1.3659918464032916e-20,-0.00012400794366840273,-0.0,-1.6940658945086007e-21,-0.0,-5.082197683525802e-21,0.0,7.623296525288703e-21,3.543083948898129e-05,-0.0,-1.1526130141357089e-20,-9.15754450154481e-21,0.0009765625,-0.0,-0.0,-0.0029296875,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,0.0007812500116415322,8.359059462987843e-20,4.0657581468206416e-20,-0.0005208333604969084,-0.00022321428696159273,-0.0,5.433333916112179e-24,-0.0,-2.3888459102648594e-20,7.92361159943568e-24,-2.5617877981640404e-22,-1.1526130141357089e-20,-0.0,0.00014880952949170023,-3.398497719185683e-20,0.00032552084303461015,9.267941609371528e-20,2.9853914428144837e-20,1.186186691923845e-19,-0.00032552084303461015,-0.0,3.1954793846748447e-22,-0.0,-2.6799380379643723e-20,2.08319547951506e-22,9.392844367254097e-23,-9.15754450154481e-21,-0.0,-3.398497719185683e-20,4.650297705666162e-05,4.0,8.0,5.0,3.0,0.07408729940652847,-0.023333333432674408,-0.013611110858619213,-0.019771825522184372,-0.028541667386889458,0.0020833334419876337,0.0016666667070239782,0.0024999999441206455,0.0037499999161809683,0.0006944444612599909,0.0013888889225199819,0.0020833334419876337,0.0014880952658131719,0.0031250000465661287,0.0031250000465661287,-0.023333333432674408,0.030138889327645302,0.0016666667070239782,0.0024999999441206455,0.0037499999161809683,-0.0062500000931322575,-0.0011111111380159855,-0.0016666667070239782,-0.0024999999441206455,-3.767602549387128e-18,3.7947076036992655e-19,1.599198204416119e-18,5.421010862427522e-18,6.7220534694101275e-18,3.122502256758253e-17,-0.013611110858619213,0.0016666667070239782,0.007361111231148243,0.0013888889225199819,0.0020833334419876337,-5.530336015266206e-18,-0.0004761904710903764,-8.673617379884035e-19,-1.0842021724855044e-18,-0.0006944444612599909,-0.00039682540227659047,-0.0005952381179668009,3.2526065174565133e-18,8.673617379884035e-19,7.806255641895632e-18,-0.019771825522184372,0.0024999999441206455,0.0013888889225199819,0.018814483657479286,0.0031250000465661287,1.006920590370084e-17,2.644615532340237e-18,-0.0012499999720603228,1.6805133673525319e-18,7.589415207398531e-19,-0.0006944444612599909,1.7036740109137104e-18,-0.0029761905316263437,-0.0015625000232830644,2.168404344971009e-19,-0.028541667386889458,0.0037499999161809683,0.0020833334419876337,0.0031250000465661287,0.05979166552424431,2.141513695873645e-17,4.069712483738951e-18,-7.151795175080381e-20,-0.0037499999161809683,-4.336808689942018e-19,3.5236570605778894e-19,-0.0020833334419876337,-1.0842021724855044e-18,-0.0031250000465661287,-0.01875000074505806,0.0020833334419876337,-0.0062500000931322575,-5.530336015266206e-18,1.006920590370084e-17,2.141513695873645e-17,0.0020833334419876337,6.2341624917916505e-19,-2.191193377641998e-18,-3.146048904152279e-18,7.047314121155779e-19,-2.303929616531697e-19,-3.5236570605778894e-19,-9.215718466126788e-19,-1.6805133673525319e-18,-5.583641188300348e-18,0.0016666667070239782,-0.0011111111380159855,-0.0004761904710903764,2.644615532340237e-18,4.069712483738951e-18,6.2341624917916505e-19,0.0003174603043589741,-1.5938890232026299e-19,-1.344634301481114e-19,2.168404344971009e-19,-1.3552527156068805e-20,-0.0,-4.743384504624082e-19,-3.2526065174565133e-19,-1.5178830414797062e-18,0.0024999999441206455,-0.0016666667070239782,-8.673617379884035e-19,-0.0012499999720603228,-7.151795175080381e-20,-2.191193377641998e-18,-1.5938890232026299e-19,0.0008333333535119891,-1.8973538018496328e-19,1.0842021724855044e-19,2.710505431213761e-20,8.131516293641283e-20,-5.285485590866834e-19,8.131516293641283e-20,-2.710505431213761e-20,0.0037499999161809683,-0.0024999999441206455,-1.0842021724855044e-18,1.6805133673525319e-18,-0.0037499999161809683,-3.146048904152279e-18,-1.344634301481114e-19,-1.8973538018496328e-19,0.0024999999441206455,2.710505431213761e-19,1.0842021724855044e-19,-8.673617379884035e-19,-1.8973538018496328e-19,-9.215718466126788e-19,-8.565197162635485e-18,0.0006944444612599909,-3.767602549387128e-18,-0.0006944444612599909,7.589415207398531e-19,-4.336808689942018e-19,7.047314121155779e-19,2.168404344971009e-19,1.0842021724855044e-19,2.710505431213761e-19,9.920635056914762e-05,2.710505431213761e-20,0.0,-1.0842021724855044e-19,2.710505431213761e-20,-1.0842021724855044e-19,0.0013888889225199819,3.7947076036992655e-19,-0.00039682540227659047,-0.0006944444612599909,3.5236570605778894e-19,-2.303929616531697e-19,-1.3552527156068805e-20,2.710505431213761e-20,1.0842021724855044e-19,2.710505431213761e-20,0.00019841270113829523,2.0328790734103208e-20,-6.301925127571995e-19,1.0842021724855044e-19,-4.0657581468206416e-19,0.0020833334419876337,1.599198204416119e-18,-0.0005952381179668009,1.7036740109137104e-18,-0.0020833334419876337,-3.5236570605778894e-19,-0.0,8.131516293641283e-20,-8.673617379884035e-19,0.0,2.0328790734103208e-20,0.0005952381179668009,-3.049318610115481e-19,-6.776263578034403e-19,-4.404571325722362e-18,0.0014880952658131719,5.421010862427522e-18,3.2526065174565133e-18,-0.0029761905316263437,-1.0842021724855044e-18,-9.215718466126788e-19,-4.743384504624082e-19,-5.285485590866834e-19,-1.8973538018496328e-19,-1.0842021724855044e-19,-6.301925127571995e-19,-3.049318610115481e-19,0.0007440476329065859,5.349337213313451e-19,6.753637603341663e-19,0.0031250000465661287,6.7220534694101275e-18,8.673617379884035e-19,-0.0015625000232830644,-0.0031250000465661287,-1.6805133673525319e-18,-3.2526065174565133e-19,8.131516293641283e-20,-9.215718466126788e-19,2.710505431213761e-20,1.0842021724855044e-19,-6.776263578034403e-19,5.349337213313451e-19,0.0015625000232830644,-1.7109205266699812e-18,0.0031250000465661287,3.122502256758253e-17,7.806255641895632e-18,2.168404344971009e-19,-0.01875000074505806,-5.583641188300348e-18,-1.5178830414797062e-18,-2.710505431213761e-20,-8.565197162635485e-18,-1.0842021724855044e-19,-4.0657581468206416e-19,-4.404571325722362e-18,6.753637603341663e-19,-1.7109205266699812e-18,0.00937500037252903,4.0,8.0,5.0,4.0,0.05969047546386719,-0.018062500283122063,-0.010520833544433117,-0.015297618694603443,-0.018062500283122063,0.0015625000232830644,0.0012499999720603228,0.0018749999580904841,0.0022499999031424522,0.0005208333604969084,0.0010416667209938169,0.0012499999720603228,0.0011160714784637094,0.0018749999580904841,0.0015625000232830644,-0.018062500283122063,0.022979166358709335,0.0012499999720603228,0.0018749999580904841,0.0022499999031424522,-0.004687500186264515,-0.0008333333535119891,-0.0012499999720603228,-0.001500000013038516,2.2632720350634905e-18,-1.1519648082658485e-18,-3.957337929572091e-18,-1.734723475976807e-18,-5.312590645178972e-18,-1.3660947373317356e-17,-0.010520833544433117,0.0012499999720603228,0.0056101190857589245,0.0010416667209938169,0.0012499999720603228,1.2352603449862898e-18,-0.0003571428533177823,2.927345865710862e-18,-3.2526065174565133e-18,-0.0005208333604969084,-0.00029761905898340046,-0.0003571428533177823,1.734723475976807e-18,-1.734723475976807e-18,-8.673617379884035e-18,-0.015297618694603443,0.0018749999580904841,0.0010416667209938169,0.014345237985253334,0.0018749999580904841,-5.7806433501665895e-18,-4.783599441066996e-19,-0.0009374999790452421,-5.908901840045999e-18,9.215718466126788e-19,-0.0005208333604969084,-1.833973775749748e-18,-0.0022321429569274187,-0.0009374999790452421,-1.0299920638612292e-17,-0.018062500283122063,0.0022499999031424522,0.0012499999720603228,0.0018749999580904841,0.022979166358709335,-9.911939016919807e-18,-6.397915715346017e-18,-2.772155719255221e-19,-0.001500000013038516,-1.3010426069826053e-18,-3.943785402416022e-18,-0.0008333333535119891,-4.960224939121183e-18,-0.0012499999720603228,-0.004687500186264515,0.0015625000232830644,-0.004687500186264515,1.2352603449862898e-18,-5.7806433501665895e-18,-9.911939016919807e-18,0.0015625000232830644,2.439454888092385e-19,3.0569889008393206e-19,1.246191329986025e-18,-4.87890977618477e-19,2.710505431213761e-19,4.472333961502706e-19,6.098637220230962e-19,9.486769009248164e-19,1.2468324983583301e-18,0.0012499999720603228,-0.0008333333535119891,-0.0003571428533177823,-4.783599441066996e-19,-6.397915715346017e-18,2.439454888092385e-19,0.0002380952355451882,-1.5917360271645192e-19,3.969738245833662e-19,-8.131516293641283e-20,1.1519648082658485e-19,3.7269449679189215e-19,-6.098637220230962e-20,3.3881317890172014e-19,1.1384122811097797e-18,0.0018749999580904841,-0.0012499999720603228,2.927345865710862e-18,-0.0009374999790452421,-2.772155719255221e-19,3.0569889008393206e-19,-1.5917360271645192e-19,0.0006249999860301614,-2.710505431213761e-20,-2.439454888092385e-19,-3.1170812458958252e-19,-1.0842021724855044e-19,-3.6591823321385775e-19,-2.981555974335137e-19,3.9302328752599536e-19,0.0022499999031424522,-0.001500000013038516,-3.2526065174565133e-18,-5.908901840045999e-18,-0.001500000013038516,1.246191329986025e-18,3.969738245833662e-19,-2.710505431213761e-20,0.0010000000474974513,-0.0,3.5236570605778894e-19,9.215718466126788e-19,6.640738306473715e-19,1.1384122811097797e-18,2.995108501491206e-18,0.0005208333604969084,2.2632720350634905e-18,-0.0005208333604969084,9.215718466126788e-19,-1.3010426069826053e-18,-4.87890977618477e-19,-8.131516293641283e-20,-2.439454888092385e-19,-0.0,7.440476474585012e-05,2.710505431213761e-20,1.0842021724855044e-19,-1.8973538018496328e-19,4.0657581468206416e-20,2.710505431213761e-19,0.0010416667209938169,-1.1519648082658485e-18,-0.00029761905898340046,-0.0005208333604969084,-3.943785402416022e-18,2.710505431213761e-19,1.1519648082658485e-19,-3.1170812458958252e-19,3.5236570605778894e-19,2.710505431213761e-20,0.00014880952949170023,1.7426371645958902e-19,-5.2720320798150273e-20,6.672891850859417e-20,8.051181029538016e-19,0.0012499999720603228,-3.957337929572091e-18,-0.0003571428533177823,-1.833973775749748e-18,-0.0008333333535119891,4.472333961502706e-19,3.7269449679189215e-19,-1.0842021724855044e-19,9.215718466126788e-19,1.0842021724855044e-19,1.7426371645958902e-19,0.0002380952355451882,1.4058067634718538e-19,5.039507409099823e-19,2.110625985979333e-18,0.0011160714784637094,-1.734723475976807e-18,1.734723475976807e-18,-0.0022321429569274187,-4.960224939121183e-18,6.098637220230962e-19,-6.098637220230962e-20,-3.6591823321385775e-19,6.640738306473715e-19,-1.8973538018496328e-19,-5.2720320798150273e-20,1.4058067634718538e-19,0.0005580357392318547,5.040735772309464e-19,7.628756951307319e-19,0.0018749999580904841,-5.312590645178972e-18,-1.734723475976807e-18,-0.0009374999790452421,-0.0012499999720603228,9.486769009248164e-19,3.3881317890172014e-19,-2.981555974335137e-19,1.1384122811097797e-18,4.0657581468206416e-20,6.672891850859417e-20,5.039507409099823e-19,5.040735772309464e-19,0.0006249999860301614,2.3486329383759002e-18,0.0015625000232830644,-1.3660947373317356e-17,-8.673617379884035e-18,-1.0299920638612292e-17,-0.004687500186264515,1.2468324983583301e-18,1.1384122811097797e-18,3.9302328752599536e-19,2.995108501491206e-18,2.710505431213761e-19,8.051181029538016e-19,2.110625985979333e-18,7.628756951307319e-19,2.3486329383759002e-18,0.0015625000232830644,4.0,8.0,5.0,5.0,0.05007142946124077,-0.014750000089406967,-0.00858333334326744,-0.012488095089793205,-0.012488095089793205,0.0012499999720603228,0.0010000000474974513,0.001500000013038516,0.001500000013038516,0.00041666667675599456,0.0008333333535119891,0.0008333333535119891,0.0008928571478463709,0.0012499999720603228,0.0008928571478463709,-0.014750000089406967,0.018583333119750023,0.0010000000474974513,0.001500000013038516,0.001500000013038516,-0.0037499999161809683,-0.0006666666595265269,-0.0010000000474974513,-0.0010000000474974513,-1.802486111757151e-18,-7.453889935837843e-19,-9.215718466126788e-19,-2.710505431213761e-18,2.168404344971009e-19,-3.3610267347050637e-18,-0.00858333334326744,0.0010000000474974513,0.004535714164376259,0.0008333333535119891,0.0008333333535119891,-3.430046064631029e-18,-0.0002857142826542258,-1.3010426069826053e-18,-1.4094628242311558e-18,-0.00041666667675599456,-0.0002380952355451882,-0.0002380952355451882,2.168404344971009e-19,5.421010862427522e-19,-6.505213034913027e-19,-0.012488095089793205,0.001500000013038516,0.0008333333535119891,0.011601190082728863,0.0012499999720603228,-1.3999149886131859e-18,6.225927908793685e-19,-0.000750000006519258,-8.673617379884035e-19,-1.6263032587282567e-19,-0.00041666667675599456,1.95752653852192e-19,-0.0017857142956927419,-0.0006249999860301614,-2.168404344971009e-19,-0.012488095089793205,0.001500000013038516,0.0008333333535119891,0.0012499999720603228,0.011601190082728863,-1.8545155654915834e-18,3.553598672306836e-19,-1.1999618599116613e-18,-0.000750000006519258,-2.710505431213761e-19,1.8973538018496328e-19,-0.00041666667675599456,1.2197274440461925e-19,-0.0006249999860301614,-0.0017857142956927419,0.0012499999720603228,-0.0037499999161809683,-3.430046064631029e-18,-1.3999149886131859e-18,-1.8545155654915834e-18,0.0012499999720603228,1.8973538018496328e-19,-2.557528458185794e-19,-1.9325904034746846e-19,3.7947076036992655e-19,8.131516293641283e-20,9.486769009248164e-20,3.3881317890172014e-19,4.0657581468206416e-20,4.0657581468206416e-19,0.0010000000474974513,-0.0006666666595265269,-0.0002857142826542258,6.225927908793685e-19,3.553598672306836e-19,1.8973538018496328e-19,0.00019047618843615055,-3.426079022735498e-20,-1.3660947593037206e-20,4.0657581468206416e-20,-6.776263578034403e-21,-0.0,-6.776263578034403e-20,-1.0842021724855044e-19,-2.0328790734103208e-20,0.001500000013038516,-0.0010000000474974513,-1.3010426069826053e-18,-0.000750000006519258,-1.1999618599116613e-18,-2.557528458185794e-19,-3.426079022735498e-20,0.0005000000237487257,9.486769009248164e-20,8.131516293641283e-20,1.6263032587282567e-19,1.1519648082658485e-19,9.147955830346444e-19,2.710505431213761e-20,1.4230153513872246e-19,0.001500000013038516,-0.0010000000474974513,-1.4094628242311558e-18,-8.673617379884035e-19,-0.000750000006519258,-1.9325904034746846e-19,-1.3660947593037206e-20,9.486769009248164e-20,0.0005000000237487257,1.0842021724855044e-19,8.809142651444724e-20,1.4907779871675686e-19,1.0842021724855044e-19,-4.0657581468206416e-20,9.283481101907132e-19,0.00041666667675599456,-1.802486111757151e-18,-0.00041666667675599456,-1.6263032587282567e-19,-2.710505431213761e-19,3.7947076036992655e-19,4.0657581468206416e-20,8.131516293641283e-20,1.0842021724855044e-19,5.952380888629705e-05,0.0,1.3552527156068805e-20,-2.710505431213761e-20,0.0,5.421010862427522e-20,0.0008333333535119891,-7.453889935837843e-19,-0.0002380952355451882,-0.00041666667675599456,1.8973538018496328e-19,8.131516293641283e-20,-6.776263578034403e-21,1.6263032587282567e-19,8.809142651444724e-20,0.0,0.0001190476177725941,1.2886288910413461e-20,1.6396178615982914e-20,-7.326467932352878e-20,-5.761868728405897e-20,0.0008333333535119891,-9.215718466126788e-19,-0.0002380952355451882,1.95752653852192e-19,-0.00041666667675599456,9.486769009248164e-20,-0.0,1.1519648082658485e-19,1.4907779871675686e-19,1.3552527156068805e-20,1.2886288910413461e-20,0.0001190476177725941,-7.682491637874529e-20,-5.997389667019618e-20,1.9657693933260108e-19,0.0008928571478463709,-2.710505431213761e-18,2.168404344971009e-19,-0.0017857142956927419,1.2197274440461925e-19,3.3881317890172014e-19,-6.776263578034403e-20,9.147955830346444e-19,1.0842021724855044e-19,-2.710505431213761e-20,1.6396178615982914e-20,-7.682491637874529e-20,0.00044642857392318547,-1.4389482717016737e-19,6.715007622500583e-20,0.0012499999720603228,2.168404344971009e-19,5.421010862427522e-19,-0.0006249999860301614,-0.0006249999860301614,4.0657581468206416e-20,-1.0842021724855044e-19,2.710505431213761e-20,-4.0657581468206416e-20,0.0,-7.326467932352878e-20,-5.997389667019618e-20,-1.4389482717016737e-19,0.0003124999930150807,-8.00547917144749e-20,0.0008928571478463709,-3.3610267347050637e-18,-6.505213034913027e-19,-2.168404344971009e-19,-0.0017857142956927419,4.0657581468206416e-19,-2.0328790734103208e-20,1.4230153513872246e-19,9.283481101907132e-19,5.421010862427522e-20,-5.761868728405897e-20,1.9657693933260108e-19,6.715007622500583e-20,-8.00547917144749e-20,0.00044642857392318547,4.0,8.0,5.0,6.0,0.04315972328186035,-0.012470237910747528,-0.0072519839741289616,-0.010555555112659931,-0.009159225970506668,0.0010416667209938169,0.0008333333535119891,0.0012499999720603228,0.0010714285308495164,0.00034722223062999547,0.0006944444612599909,0.0005952381179668009,0.0007440476329065859,0.0008928571478463709,0.0005580357392318547,-0.012470237910747528,0.015605159103870392,0.0008333333535119891,0.0012499999720603228,0.0010714285308495164,-0.0031250000465661287,-0.0005555555690079927,-0.0008333333535119891,-0.0007142857066355646,1.1858461261560205e-19,0.0,-5.929230630780102e-21,-0.0,-0.0,-0.0,-0.0072519839741289616,0.0008333333535119891,0.00380810652859509,0.0006944444612599909,0.0005952381179668009,-0.0,-0.0002380952355451882,-1.0573552502232717e-19,-9.063045094233022e-20,-0.00034722223062999547,-0.00019841270113829523,-0.0001700680295471102,-0.0,-0.0,-0.0,-0.010555555112659931,0.0012499999720603228,0.0006944444612599909,0.009742063470184803,0.0008928571478463709,-0.0,-1.0573552502232717e-19,-0.0006249999860301614,-4.024800534733429e-35,1.3552527156068805e-20,-0.00034722223062999547,-0.0,-0.0014880952658131719,-0.00044642857392318547,-0.0,-0.009159225970506668,0.0010714285308495164,0.0005952381179668009,0.0008928571478463709,0.006732887122780085,-0.0,-9.655968157311032e-20,-4.024800534733429e-35,-0.00042857142398133874,5.5772212553893905e-21,-0.0,-0.0002380952355451882,-0.0,-0.0003571428533177823,-0.0008370535797439516,0.0010416667209938169,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0008333333535119891,-0.0005555555690079927,-0.0002380952355451882,-1.0573552502232717e-19,-9.655968157311032e-20,-0.0,0.00015873015217948705,7.04903478607686e-20,6.042030278233632e-20,-3.3881317890172014e-20,-0.0,1.6940658945086007e-21,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0008333333535119891,-1.0573552502232717e-19,-0.0006249999860301614,-4.024800534733429e-35,-0.0,7.04903478607686e-20,0.00041666667675599456,2.683200452150928e-35,-1.504632769052528e-35,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-9.063045094233022e-20,-4.024800534733429e-35,-0.00042857142398133874,-0.0,6.042030278233632e-20,2.683200452150928e-35,0.0002857142826542258,-1.3541694921472752e-35,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,1.1858461261560205e-19,-0.00034722223062999547,1.3552527156068805e-20,5.5772212553893905e-21,-0.0,-3.3881317890172014e-20,-1.504632769052528e-35,-1.3541694921472752e-35,4.960317528457381e-05,-0.0,-3.3881317890172014e-21,0.0,0.0,-0.0,0.0006944444612599909,0.0,-0.00019841270113829523,-0.00034722223062999547,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,9.920635056914762e-05,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-5.929230630780102e-21,-0.0001700680295471102,-0.0,-0.0002380952355451882,-0.0,1.6940658945086007e-21,-0.0,-0.0,-3.3881317890172014e-21,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,-0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.00044642857392318547,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0008370535797439516,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,4.0,8.0,5.0,7.0,0.037942178547382355,-0.010803570970892906,-0.006279761902987957,-0.009143282659351826,-0.007008928339928389,0.0008928571478463709,0.0007142857066355646,0.0010714285308495164,0.0008035714272409678,0.00029761905898340046,0.0005952381179668009,0.00044642857392318547,0.0006377550889737904,0.0006696428754366934,0.00037202381645329297,-0.010803570970892906,0.013452380895614624,0.0007142857066355646,0.0010714285308495164,0.0008035714272409678,-0.0026785715017467737,-0.0004761904710903764,-0.0007142857066355646,-0.0005357142654247582,-8.360018475510522e-20,0.0,-4.573977915173222e-20,-0.0,-0.0,-1.3347518842300634e-20,-0.006279761902987957,0.0007142857066355646,0.0032823130022734404,0.0005952381179668009,0.00044642857392318547,-0.0,-0.0002040816325461492,-0.0,-4.743384504624082e-20,-0.00029761905898340046,-0.0001700680295471102,-0.00012755101488437504,-0.0,-0.0,-8.392141517611136e-20,-0.009143282659351826,0.0010714285308495164,0.0005952381179668009,0.00839817151427269,0.0006696428754366934,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.00029761905898340046,-0.0,-0.0012755101779475808,-0.0003348214377183467,2.0328790734103208e-20,-0.007008928339928389,0.0008035714272409678,0.00044642857392318547,0.0006696428754366934,0.0042708334513008595,-0.0,4.776295549349252e-21,-0.0,-0.0002678571327123791,-9.462472638628014e-22,-0.0,-0.00014880952949170023,-0.0,-0.00022321428696159273,-0.00044642857392318547,0.0008928571478463709,-0.0026785715017467737,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0004761904710903764,-0.0002040816325461492,-0.0,4.776295549349252e-21,-0.0,0.0001360544265480712,-0.0,1.3507502459208548e-22,2.371692252312041e-20,-0.0,-0.0,-0.0,-0.0,-7.65985857479324e-22,0.0010714285308495164,-0.0007142857066355646,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008035714272409678,-0.0005357142654247582,-4.743384504624082e-20,-0.0,-0.0002678571327123791,-0.0,1.3507502459208548e-22,-0.0,0.00017857142665889114,1.9698441191527253e-22,-0.0,1.5246593050577406e-20,-0.0,-0.0,5.3428233921717945e-21,0.00029761905898340046,-8.360018475510522e-20,-0.00029761905898340046,-0.0,-9.462472638628014e-22,-0.0,2.371692252312041e-20,-0.0,1.9698441191527253e-22,4.251700738677755e-05,-0.0,0.0,0.0,0.0,-7.948596307362531e-22,0.0005952381179668009,0.0,-0.0001700680295471102,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.50340147735551e-05,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-4.573977915173222e-20,-0.00012755101488437504,-0.0,-0.00014880952949170023,-0.0,-0.0,-0.0,1.5246593050577406e-20,0.0,-0.0,4.251700738677755e-05,-0.0,-0.0,3.036287284293503e-20,0.0006377550889737904,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,0.0006696428754366934,-0.0,-0.0,-0.0003348214377183467,-0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00011160714348079637,-6.776263578034403e-21,0.00037202381645329297,-1.3347518842300634e-20,-8.392141517611136e-20,2.0328790734103208e-20,-0.00044642857392318547,-0.0,-7.65985857479324e-22,-0.0,5.3428233921717945e-21,-7.948596307362531e-22,-0.0,3.036287284293503e-20,-0.0,-6.776263578034403e-21,7.440476474585012e-05,4.0,8.0,5.0,8.0,0.03385912626981735,-0.009531250223517418,-0.005538194440305233,-0.008065476082265377,-0.005538194440305233,0.0007812500116415322,0.0006249999860301614,0.0009374999790452421,0.0006249999860301614,0.0002604166802484542,0.0005208333604969084,0.00034722223062999547,0.0005580357392318547,0.0005208333604969084,0.0002604166802484542,-0.009531250223517418,0.011822916567325592,0.0006249999860301614,0.0009374999790452421,0.0006249999860301614,-0.0023437500931322575,-0.00041666667675599456,-0.0006249999860301614,-0.00041666667675599456,8.391856528040717e-20,-9.455251973881473e-22,1.1858461261560205e-20,-0.0,-0.0,7.655002745908773e-20,-0.005538194440305233,0.0006249999860301614,0.0028844245243817568,0.0005208333604969084,0.00034722223062999547,-0.0,-0.00017857142665889114,-0.0,1.3552527156068805e-20,-0.0002604166802484542,-0.00014880952949170023,-9.920635056914762e-05,-0.0,-0.0,2.442011974784425e-20,-0.008065476082265377,0.0009374999790452421,0.0005208333604969084,0.007380952592939138,0.0005208333604969084,-0.0,-0.0,-0.00046874998952262104,-9.455251973881473e-22,-0.0,-0.0002604166802484542,-0.0,-0.0011160714784637094,-0.0002604166802484542,-1.3788907950544863e-21,-0.005538194440305233,0.0006249999860301614,0.00034722223062999547,0.0005208333604969084,0.0028844245243817568,-0.0,-1.8472760613834737e-21,-0.0,-0.00017857142665889114,1.2609479865447266e-21,-3.3881317890172014e-21,-9.920635056914762e-05,-0.0,-0.00014880952949170023,-0.0002604166802484542,0.0007812500116415322,-0.0023437500931322575,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-0.00041666667675599456,-0.00017857142665889114,-0.0,-1.8472760613834737e-21,-0.0,0.0001190476177725941,-0.0,-1.78155425445576e-22,-2.371692252312041e-20,-0.0,-0.0,-0.0,-0.0,2.7927478434220067e-22,0.0009374999790452421,-0.0006249999860301614,-0.0,-0.00046874998952262104,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-0.00041666667675599456,1.3552527156068805e-20,-9.455251973881473e-22,-0.00017857142665889114,-0.0,-1.78155425445576e-22,-0.0,0.0001190476177725941,-2.598099886046705e-22,2.7015004918417095e-22,-3.3881317890172014e-21,-0.0,-0.0,-2.2150710963213804e-20,0.0002604166802484542,8.391856528040717e-20,-0.0002604166802484542,-0.0,1.2609479865447266e-21,-0.0,-2.371692252312041e-20,-0.0,-2.598099886046705e-22,3.720238237292506e-05,-0.0,0.0,0.0,0.0,-5.625575879280993e-22,0.0005208333604969084,-9.455251973881473e-22,-0.00014880952949170023,-0.0002604166802484542,-3.3881317890172014e-21,-0.0,-0.0,-0.0,2.7015004918417095e-22,-0.0,7.440476474585012e-05,-0.0,-0.0,-0.0,3.9396882383054505e-22,0.00034722223062999547,1.1858461261560205e-20,-9.920635056914762e-05,-0.0,-9.920635056914762e-05,-0.0,-0.0,-0.0,-3.3881317890172014e-21,0.0,-0.0,2.8344671591185033e-05,-0.0,-0.0,-6.105029936961062e-21,0.0005580357392318547,-0.0,-0.0,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,0.0005208333604969084,-0.0,-0.0,-0.0002604166802484542,-0.00014880952949170023,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,7.440476474585012e-05,0.0,0.0002604166802484542,7.655002745908773e-20,2.442011974784425e-20,-1.3788907950544863e-21,-0.0002604166802484542,-0.0,2.7927478434220067e-22,-0.0,-2.2150710963213804e-20,-5.625575879280993e-22,3.9396882383054505e-22,-6.105029936961062e-21,-0.0,0.0,3.720238237292506e-05,4.0,8.0,6.0,3.0,0.06400462985038757,-0.01974206417798996,-0.011507936753332615,-0.014521329663693905,-0.02415674552321434,0.0017361111240461469,0.0013888889225199819,0.0017857142956927419,0.0031250000465661287,0.0005787037080153823,0.0009920635493472219,0.0017361111240461469,0.0009300595265813172,0.0022321429569274187,0.0026041667442768812,-0.01974206417798996,0.025314154103398323,0.0013888889225199819,0.0017857142956927419,0.0031250000465661287,-0.0052083334885537624,-0.0009259259095415473,-0.0011904762359336019,-0.0020833334419876337,1.4230153513872246e-19,-1.999428018685647e-19,2.371692252312041e-20,-6.195441133342278e-19,-3.965082252960754e-19,2.7513284657430523e-33,-0.011507936753332615,0.0013888889225199819,0.006181500386446714,0.0009920635493472219,0.0017361111240461469,-0.0,-0.00039682540227659047,-1.762258793454443e-19,-0.0,-0.0005787037080153823,-0.00028344671591185033,-0.0004960317746736109,-2.95020996502244e-19,-1.8881343569348464e-19,1.3101564122585963e-33,-0.014521329663693905,0.0017857142956927419,0.0009920635493472219,0.010923858731985092,0.0022321429569274187,-0.0,-2.371692252312041e-20,-0.0007142857066355646,-0.0,-2.710505431213761e-20,-0.00039682540227659047,8.300922883092143e-20,-0.0013950893189758062,-0.0008928571478463709,6.1954409265471244e-18,-0.02415674552321434,0.0031250000465661287,0.0017361111240461469,0.0022321429569274187,0.05019841343164444,-0.0,2.371692252312041e-20,-3.965082252960754e-19,-0.0031250000465661287,3.023671810599789e-20,-1.0580421332491174e-19,-0.0017361111240461469,1.5488602316367811e-18,-0.0022321429569274187,-0.015625,0.0017361111240461469,-0.0052083334885537624,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0009259259095415473,-0.00039682540227659047,-2.371692252312041e-20,2.371692252312041e-20,-0.0,0.00026455026818439364,-0.0,-0.0,-4.0657581468206416e-20,6.776263578034403e-21,-6.776263578034403e-21,9.488244007825434e-36,1.1504774289645928e-36,-0.0,0.0017857142956927419,-0.0011904762359336019,-1.762258793454443e-19,-0.0007142857066355646,-3.965082252960754e-19,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,7.04903478607686e-20,-1.47454014237007e-35,2.4781765050356993e-19,1.5860328753349075e-19,-1.1005314230314194e-33,0.0031250000465661287,-0.0020833334419876337,-0.0,-0.0,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005787037080153823,1.4230153513872246e-19,-0.0005787037080153823,-2.710505431213761e-20,3.023671810599789e-20,-0.0,-4.0657581468206416e-20,-0.0,-0.0,8.26719551696442e-05,-0.0,1.3552527156068805e-20,1.3302599772295795e-35,6.78218143176514e-37,-0.0,0.0009920635493472219,-1.999428018685647e-19,-0.00028344671591185033,-0.00039682540227659047,-1.0580421332491174e-19,-0.0,6.776263578034403e-21,7.04903478607686e-20,-0.0,-0.0,0.00011337868636474013,-2.371692252312041e-20,1.1800840377077644e-19,7.552537686233327e-20,-5.240625649034385e-34,0.0017361111240461469,2.371692252312041e-20,-0.0004960317746736109,8.300922883092143e-20,-0.0017361111240461469,-0.0,-6.776263578034403e-21,-1.47454014237007e-35,-0.0,1.3552527156068805e-20,-2.371692252312041e-20,0.0004960317746736109,-2.0326385148325318e-35,-1.30088868967085e-35,0.0,0.0009300595265813172,-6.195441133342278e-19,-2.95020996502244e-19,-0.0013950893189758062,1.5488602316367811e-18,-0.0,9.488244007825434e-36,2.4781765050356993e-19,-0.0,1.3302599772295795e-35,1.1800840377077644e-19,-2.0326385148325318e-35,0.00027901786961592734,3.7172646283065783e-19,-1.2390882266684555e-18,0.0022321429569274187,-3.965082252960754e-19,-1.8881343569348464e-19,-0.0008928571478463709,-0.0022321429569274187,-0.0,1.1504774289645928e-36,1.5860328753349075e-19,-0.0,6.78218143176514e-37,7.552537686233327e-20,-1.30088868967085e-35,3.7172646283065783e-19,0.0008928571478463709,-1.650797042711633e-33,0.0026041667442768812,2.7513284657430523e-33,1.3101564122585963e-33,6.1954409265471244e-18,-0.015625,-0.0,-0.0,-1.1005314230314194e-33,-0.0,-0.0,-5.240625649034385e-34,0.0,-1.2390882266684555e-18,-1.650797042711633e-33,0.0078125,4.0,8.0,6.0,4.0,0.05149677395820618,-0.015275297686457634,-0.008891369216144085,-0.011225818656384945,-0.015275297686457634,0.0013020833721384406,0.0010416667209938169,0.0013392857508733869,0.0018749999580904841,0.0004340277810115367,0.0007440476329065859,0.0010416667209938169,0.0006975446594879031,0.0013392857508733869,0.0013020833721384406,-0.015275297686457634,0.019298115745186806,0.0010416667209938169,0.0013392857508733869,0.0018749999580904841,-0.00390625,-0.0006944444612599909,-0.0008928571478463709,-0.0012499999720603228,1.1858461261560205e-19,-1.1858461261560205e-20,1.1858461261560205e-20,-0.0,-0.0,-0.0,-0.008891369216144085,0.0010416667209938169,0.0047105299308896065,0.0007440476329065859,0.0010416667209938169,-0.0,-0.00029761905898340046,-0.0,-0.0,-0.0004340277810115367,-0.00021258502965793014,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.011225818656384945,0.0013392857508733869,0.0007440476329065859,0.008326822891831398,0.0013392857508733869,-0.0,-1.1858461261560205e-20,-0.0005357142654247582,-0.0,-0.0,-0.00029761905898340046,-1.0672615135404184e-19,-0.0010463169310241938,-0.0005357142654247582,2.168404344971009e-18,-0.015275297686457634,0.0018749999580904841,0.0010416667209938169,0.0013392857508733869,0.019298115745186806,-0.0,1.1858461261560205e-20,-0.0,-0.0012499999720603228,5.785394908249641e-21,-1.0672615135404184e-19,-0.0006944444612599909,1.3010426069826053e-18,-0.0008928571478463709,-0.00390625,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0010416667209938169,-0.0006944444612599909,-0.00029761905898340046,-1.1858461261560205e-20,1.1858461261560205e-20,-0.0,0.00019841270113829523,-0.0,-0.0,-3.3881317890172014e-20,3.3881317890172014e-21,-3.3881317890172014e-21,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0008928571478463709,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0018749999580904841,-0.0012499999720603228,-0.0,-0.0,-0.0012499999720603228,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004340277810115367,1.1858461261560205e-19,-0.0004340277810115367,-0.0,5.785394908249641e-21,-0.0,-3.3881317890172014e-20,-0.0,-0.0,6.200397183420137e-05,-0.0,0.0,-0.0,0.0,-0.0,0.0007440476329065859,-1.1858461261560205e-20,-0.00021258502965793014,-0.00029761905898340046,-1.0672615135404184e-19,-0.0,3.3881317890172014e-21,-0.0,-0.0,-0.0,8.50340147735551e-05,3.049318610115481e-20,-0.0,-0.0,-0.0,0.0010416667209938169,1.1858461261560205e-20,-0.00029761905898340046,-1.0672615135404184e-19,-0.0006944444612599909,-0.0,-3.3881317890172014e-21,-0.0,-0.0,0.0,3.049318610115481e-20,0.00019841270113829523,-0.0,-0.0,-0.0,0.0006975446594879031,-0.0,-0.0,-0.0010463169310241938,1.3010426069826053e-18,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002092633949359879,-0.0,-4.336808689942018e-19,0.0013392857508733869,-0.0,-0.0,-0.0005357142654247582,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0013020833721384406,-0.0,-0.0,2.168404344971009e-18,-0.00390625,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-4.336808689942018e-19,-0.0,0.0013020833721384406,4.0,8.0,6.0,5.0,0.04315972328186035,-0.012470237910747528,-0.0072519839741289616,-0.009159225970506668,-0.010555555112659931,0.0010416667209938169,0.0008333333535119891,0.0010714285308495164,0.0012499999720603228,0.00034722223062999547,0.0005952381179668009,0.0006944444612599909,0.0005580357392318547,0.0008928571478463709,0.0007440476329065859,-0.012470237910747528,0.015605159103870392,0.0008333333535119891,0.0010714285308495164,0.0012499999720603228,-0.0031250000465661287,-0.0005555555690079927,-0.0007142857066355646,-0.0008333333535119891,9.486769009248164e-20,-5.929230630780102e-21,-1.88079096131566e-36,-0.0,-0.0,-0.0,-0.0072519839741289616,0.0008333333535119891,0.00380810652859509,0.0005952381179668009,0.0006944444612599909,-0.0,-0.0002380952355451882,-9.063045094233022e-20,-1.0573552502232717e-19,-0.00034722223062999547,-0.0001700680295471102,-0.00019841270113829523,-0.0,-0.0,-0.0,-0.009159225970506668,0.0010714285308495164,0.0005952381179668009,0.006732887122780085,0.0008928571478463709,-0.0,-9.655968157311032e-20,-0.00042857142398133874,-4.024800534733429e-35,-0.0,-0.0002380952355451882,-7.116168893838634e-20,-0.0008370535797439516,-0.0003571428533177823,1.0620756080875938e-18,-0.010555555112659931,0.0012499999720603228,0.0006944444612599909,0.0008928571478463709,0.009742063470184803,-0.0,-1.0573552502232717e-19,-4.2881112693176213e-35,-0.0006249999860301614,3.7868061870800515e-21,-7.116168893838634e-20,-0.00034722223062999547,1.1215518586841113e-18,-0.00044642857392318547,-0.0014880952658131719,0.0010416667209938169,-0.0031250000465661287,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0005555555690079927,-0.0002380952355451882,-9.655968157311032e-20,-1.0573552502232717e-19,-0.0,0.00015873015217948705,6.042030278233632e-20,7.04903478607686e-20,-2.710505431213761e-20,1.6940658945086007e-21,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-9.063045094233022e-20,-0.00042857142398133874,-4.2881112693176213e-35,-0.0,6.042030278233632e-20,0.0002857142826542258,2.683200452150928e-35,-1.0532429383367696e-35,-0.0,7.52316384526264e-37,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0008333333535119891,-1.0573552502232717e-19,-4.024800534733429e-35,-0.0006249999860301614,-0.0,7.04903478607686e-20,2.683200452150928e-35,0.00041666667675599456,-1.2037062152420224e-35,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,9.486769009248164e-20,-0.00034722223062999547,-0.0,3.7868061870800515e-21,-0.0,-2.710505431213761e-20,-1.0532429383367696e-35,-1.2037062152420224e-35,4.960317528457381e-05,-3.3881317890172014e-21,0.0,-0.0,0.0,-0.0,0.0005952381179668009,-5.929230630780102e-21,-0.0001700680295471102,-0.0002380952355451882,-7.116168893838634e-20,-0.0,1.6940658945086007e-21,-0.0,-0.0,-3.3881317890172014e-21,6.80272132740356e-05,2.0331910432858755e-20,-0.0,-0.0,-0.0,0.0006944444612599909,-1.88079096131566e-36,-0.00019841270113829523,-7.116168893838634e-20,-0.00034722223062999547,-0.0,-0.0,7.52316384526264e-37,-0.0,0.0,2.0331910432858755e-20,9.920635056914762e-05,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0008370535797439516,1.1215518586841113e-18,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,-1.0875654371573568e-19,-2.1241512161751876e-19,0.0008928571478463709,-0.0,-0.0,-0.0003571428533177823,-0.00044642857392318547,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-1.0875654371573568e-19,0.00017857142665889114,1.3799316447069957e-34,0.0007440476329065859,-0.0,-0.0,1.0620756080875938e-18,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-2.1241512161751876e-19,1.3799316447069957e-34,0.00037202381645329297,4.0,8.0,6.0,6.0,0.03717875853180885,-0.010540674440562725,-0.00612599216401577,-0.007738980930298567,-0.007738980930298567,0.0008680555620230734,0.0006944444612599909,0.0008928571478463709,0.0008928571478463709,0.00028935185400769114,0.0004960317746736109,0.0004960317746736109,0.0004650297632906586,0.0006377550889737904,0.0004650297632906586,-0.010540674440562725,0.013103505596518517,0.0006944444612599909,0.0008928571478463709,0.0008928571478463709,-0.0026041667442768812,-0.00046296295477077365,-0.0005952381179668009,-0.0005952381179668009,4.743384504624082e-20,-9.997140093428235e-20,-9.997140093428235e-20,-3.097720566671139e-19,-2.2657611766230274e-19,-3.097720566671139e-19,-0.00612599216401577,0.0006944444612599909,0.0031970427371561527,0.0004960317746736109,0.0004960317746736109,-0.0,-0.00019841270113829523,-8.811293967272215e-20,-8.811293967272215e-20,-0.00028935185400769114,-0.00014172335795592517,-0.00014172335795592517,-1.47510498251122e-19,-1.0789339367123366e-19,-1.47510498251122e-19,-0.007738980930298567,0.0008928571478463709,0.0004960317746736109,0.005653256084769964,0.0006377550889737904,-0.0,-1.1858461261560205e-20,-0.0003571428533177823,-1.1328805883115137e-19,-0.0,-0.00019841270113829523,-3.604438549847538e-20,-0.0006975446594879031,-0.00025510202976875007,3.4296190326397985e-19,-0.007738980930298567,0.0008928571478463709,0.0004960317746736109,0.0006377550889737904,0.005653256084769964,-0.0,-1.1858461261560205e-20,-1.1328805883115137e-19,-0.0003571428533177823,6.982387353744331e-22,-3.604438549847538e-20,-0.00019841270113829523,6.01906037735183e-19,-0.00025510202976875007,-0.0006975446594879031,0.0008680555620230734,-0.0026041667442768812,-0.0,-0.0,-0.0,0.0008680555620230734,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00046296295477077365,-0.00019841270113829523,-1.1858461261560205e-20,-1.1858461261560205e-20,-0.0,0.00013227513409219682,-0.0,2.2833328907482014e-37,-1.3552527156068805e-20,3.3881317890172014e-21,3.3881317890172014e-21,2.497105612581466e-36,3.4441642786475483e-37,1.5343533902290648e-36,0.0008928571478463709,-0.0005952381179668009,-8.811293967272215e-20,-0.0003571428533177823,-1.1328805883115137e-19,-0.0,-0.0,0.0002380952355451882,2.0124002673667145e-35,-0.0,3.52451739303843e-20,6.40276935720552e-36,1.2390882525178497e-19,4.531522547116511e-20,-6.092227339961347e-35,0.0008928571478463709,-0.0005952381179668009,-8.811293967272215e-20,-1.1328805883115137e-19,-0.0003571428533177823,-0.0,2.2833328907482014e-37,2.0124002673667145e-35,0.0002380952355451882,-6.547249372169876e-37,6.40276935720552e-36,3.52451739303843e-20,-1.0691999297660716e-34,4.531522547116511e-20,1.2390882525178497e-19,0.00028935185400769114,4.743384504624082e-20,-0.00028935185400769114,-0.0,6.982387353744331e-22,-0.0,-1.3552527156068805e-20,-0.0,-6.547249372169876e-37,4.13359775848221e-05,-0.0,0.0,7.692853242020975e-37,0.0,0.0,0.0004960317746736109,-9.997140093428235e-20,-0.00014172335795592517,-0.00019841270113829523,-3.604438549847538e-20,-0.0,3.3881317890172014e-21,3.52451739303843e-20,6.40276935720552e-36,-0.0,5.668934318237007e-05,-5.114946038626589e-21,5.900420188538822e-20,2.1578678411129306e-20,-3.4334416414499467e-35,0.0004960317746736109,-9.997140093428235e-20,-0.00014172335795592517,-3.604438549847538e-20,-0.00019841270113829523,-0.0,3.3881317890172014e-21,6.40276935720552e-36,3.52451739303843e-20,0.0,-5.114946038626589e-21,5.668934318237007e-05,-5.623809486342344e-35,2.1578678411129306e-20,5.900420188538822e-20,0.0004650297632906586,-3.097720566671139e-19,-1.47510498251122e-19,-0.0006975446594879031,6.01906037735183e-19,-0.0,2.497105612581466e-36,1.2390882525178497e-19,-1.0691999297660716e-34,7.692853242020975e-37,5.900420188538822e-20,-5.623809486342344e-35,0.00013950893480796367,2.629901406112835e-21,-1.2169615588729683e-19,0.0006377550889737904,-2.2657611766230274e-19,-1.0789339367123366e-19,-0.00025510202976875007,-0.00025510202976875007,-0.0,3.4441642786475483e-37,4.531522547116511e-20,4.531522547116511e-20,0.0,2.1578678411129306e-20,2.1578678411129306e-20,2.629901406112835e-21,0.0001020408162730746,1.0620756080875938e-19,0.0004650297632906586,-3.097720566671139e-19,-1.47510498251122e-19,3.4296190326397985e-19,-0.0006975446594879031,-0.0,1.5343533902290648e-36,-6.092227339961347e-35,1.2390882525178497e-19,0.0,-3.4334416414499467e-35,5.900420188538822e-20,-1.2169615588729683e-19,1.0620756080875938e-19,0.00013950893480796367,4.0,8.0,6.0,7.0,0.032669004052877426,-0.009130527265369892,-0.005303996615111828,-0.006701743230223656,-0.005920493043959141,0.0007440476329065859,0.0005952381179668009,0.0007653061184100807,0.0006696428754366934,0.00024801588733680546,0.00042517005931586027,0.00037202381645329297,0.00039859695243649185,0.00047831633128225803,0.0003100198518950492,-0.009130527265369892,0.011295351199805737,0.0005952381179668009,0.0007653061184100807,0.0006696428754366934,-0.0022321429569274187,-0.00039682540227659047,-0.0005102040595375001,-0.00044642857392318547,6.809412841082465e-20,-7.552537686233327e-20,-4.8943052229715157e-20,-2.6551890202189845e-19,-8.132609723013502e-20,9.773732665585728e-22,-0.005303996615111828,0.0005952381179668009,0.00275550689548254,0.00042517005931586027,0.00037202381645329297,-3.304235253882952e-19,-0.0001700680295471102,-1.4026141048013405e-19,-1.0842021724855044e-19,-0.00024801588733680546,-0.00012147716188337654,-0.00010629251482896507,-1.2643756808314786e-19,-3.5377826558773955e-20,-7.662390502754637e-20,-0.006701743230223656,0.0007653061184100807,0.00042517005931586027,0.004872980527579784,0.00047831633128225803,-4.248302432350375e-19,-6.473603361780078e-20,-0.0003061224415432662,-9.831930799351228e-20,-6.776263578034403e-21,-0.0001700680295471102,1.535775837008629e-20,-0.0005978954141028225,-0.00019132652960252017,3.9011512728741205e-19,-0.005920493043959141,0.0006696428754366934,0.00037202381645329297,0.00047831633128225803,0.003585600992664695,-3.7172646283065783e-19,-6.446652137212481e-20,-1.8692530547245286e-19,-0.00022321428696159273,-4.366818124018845e-21,-3.0184460324565e-20,-0.00012400794366840273,3.9981366487323145e-19,-0.0001594387722434476,-0.00037202381645329297,0.0007440476329065859,-0.0022321429569274187,-3.304235253882952e-19,-4.248302432350375e-19,-3.7172646283065783e-19,0.0007440476329065859,2.202823588753282e-19,2.8322015354022696e-19,2.4781765050356993e-19,-3.009265538105056e-35,4.19250047330976e-35,2.716885138169828e-35,1.4739259637909209e-34,4.514505282390003e-35,4.1183230059079536e-36,0.0005952381179668009,-0.00039682540227659047,-0.0001700680295471102,-6.473603361780078e-20,-6.446652137212481e-20,2.202823588753282e-19,0.00011337868636474013,4.315735682225861e-20,3.8461349087218504e-20,-2.0328790734103208e-20,-0.0,1.6940658945086007e-21,2.3671744208564955e-35,6.527313356756844e-36,1.300410317877188e-22,0.0007653061184100807,-0.0005102040595375001,-1.4026141048013405e-19,-0.0003061224415432662,-1.8692530547245286e-19,2.8322015354022696e-19,4.315735682225861e-20,0.0002040816325461492,6.797283659116053e-20,-1.0532429383367696e-35,3.021015139116816e-20,4.513898307157584e-36,1.0620756080875938e-19,3.3986418295580265e-20,-6.921310737641629e-35,0.0006696428754366934,-0.00044642857392318547,-1.0842021724855044e-19,-9.831930799351228e-20,-0.00022321428696159273,2.4781765050356993e-19,3.8461349087218504e-20,6.797283659116053e-20,0.00014880952949170023,1.0188793156154084e-21,7.899322037525772e-36,1.433794161003644e-20,3.8317304663716016e-35,-1.2133174486116958e-21,-4.775056091094969e-22,0.00024801588733680546,6.809412841082465e-20,-0.00024801588733680546,-6.776263578034403e-21,-4.366818124018845e-21,-3.009265538105056e-35,-2.0328790734103208e-20,-1.0532429383367696e-35,1.0188793156154084e-21,3.543083948898129e-05,-0.0,0.0,-4.195905077026994e-37,-2.82118644197349e-37,6.656532516515816e-22,0.00042517005931586027,-7.552537686233327e-20,-0.00012147716188337654,-0.0001700680295471102,-3.0184460324565e-20,4.19250047330976e-35,-0.0,3.021015139116816e-20,7.899322037525772e-36,-0.0,4.8590864025754854e-05,-2.9358746261232765e-21,5.0575027879493996e-20,1.6184008404450196e-20,-3.4924841168595467e-35,0.00037202381645329297,-4.8943052229715157e-20,-0.00010629251482896507,1.535775837008629e-20,-0.00012400794366840273,2.716885138169828e-35,1.6940658945086007e-21,4.513898307157584e-36,1.433794161003644e-20,0.0,-2.9358746261232765e-21,3.543083948898129e-05,-2.633107345841924e-35,-1.6940658945086007e-21,2.3796297934595688e-20,0.00039859695243649185,-2.6551890202189845e-19,-1.2643756808314786e-19,-0.0005978954141028225,3.9981366487323145e-19,1.4739259637909209e-34,2.3671744208564955e-35,1.0620756080875938e-19,3.8317304663716016e-35,-4.195905077026994e-37,5.0575027879493996e-20,-2.633107345841924e-35,0.00011957908282056451,2.4167639021733776e-20,-7.670545986606527e-20,0.00047831633128225803,-8.132609723013502e-20,-3.5377826558773955e-20,-0.00019132652960252017,-0.0001594387722434476,4.514505282390003e-35,6.527313356756844e-36,3.3986418295580265e-20,-1.2133174486116958e-21,-2.82118644197349e-37,1.6184008404450196e-20,-1.6940658945086007e-21,2.4167639021733776e-20,6.377550744218752e-05,-2.1959462201168212e-21,0.0003100198518950492,9.773732665585728e-22,-7.662390502754637e-20,3.9011512728741205e-19,-0.00037202381645329297,4.1183230059079536e-36,1.300410317877188e-22,-6.921310737641629e-35,-4.775056091094969e-22,6.656532516515816e-22,-3.4924841168595467e-35,2.3796297934595688e-20,-7.670545986606527e-20,-2.1959462201168212e-21,6.200397183420137e-05,4.0,8.0,6.0,8.0,0.029142897576093674,-0.008054315112531185,-0.004677166230976582,-0.0059105283580720425,-0.004677166230976582,0.0006510416860692203,0.0005208333604969084,0.0006696428754366934,0.0005208333604969084,0.00021701389050576836,0.00037202381645329297,0.00028935185400769114,0.00034877232974395156,0.00037202381645329297,0.00021701389050576836,-0.008054315112531185,0.00992683507502079,0.0005208333604969084,0.0006696428754366934,0.0005208333604969084,-0.001953125,-0.00034722223062999547,-0.00044642857392318547,-0.00034722223062999547,5.860285772958661e-20,-5.929230630780102e-21,1.1858461261560205e-20,-1.8627703114933178e-34,5.61208570651815e-20,5.953527122569287e-20,-0.004677166230976582,0.0005208333604969084,0.002421402605250478,0.00037202381645329297,0.00028935185400769114,-0.0,-0.00014880952949170023,-0.0,1.0164395367051604e-20,-0.00021701389050576836,-0.00010629251482896507,-8.26719551696442e-05,-6.846079099189002e-35,3.2610768469290563e-20,1.1538826232848784e-20,-0.0059105283580720425,0.0006696428754366934,0.00037202381645329297,0.0042824591509997845,0.00037202381645329297,-0.0,-5.929230630780102e-21,-0.0002678571327123791,5.61208570651815e-20,6.776263578034403e-21,-0.00014880952949170023,1.7110669198669446e-21,-0.0005231584655120969,-0.00014880952949170023,3.446056920868817e-19,-0.004677166230976582,0.0005208333604969084,0.00028935185400769114,0.00037202381645329297,0.002421402605250478,-0.0,9.617841633810551e-22,-0.0,-0.00014880952949170023,-3.540337464591577e-21,-3.0899700135784876e-20,-8.26719551696442e-05,5.232407995898721e-19,-0.00010629251482896507,-0.00021701389050576836,0.0006510416860692203,-0.001953125,-0.0,-0.0,-0.0,0.0006510416860692203,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-0.00034722223062999547,-0.00014880952949170023,-5.929230630780102e-21,9.617841633810551e-22,-0.0,9.920635056914762e-05,-0.0,1.3507502459208548e-22,-1.6940658945086007e-20,1.6940658945086007e-21,-0.0,0.0,-3.0180134968958167e-37,-1.53788244146219e-22,0.0006696428754366934,-0.00044642857392318547,-0.0,-0.0002678571327123791,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-0.00034722223062999547,1.0164395367051604e-20,5.61208570651815e-20,-0.00014880952949170023,-0.0,1.3507502459208548e-22,-0.0,9.920635056914762e-05,1.9698441191527253e-22,-1.504632769052528e-36,-3.3881317890172014e-21,5.322201053972865e-35,-1.6034531051648182e-20,-1.6856289753779866e-20,0.00021701389050576836,5.860285772958661e-20,-0.00021701389050576836,6.776263578034403e-21,-3.540337464591577e-21,-0.0,-1.6940658945086007e-20,-0.0,1.9698441191527253e-22,3.100198591710068e-05,-0.0,-1.6940658945086007e-21,0.0,0.0,5.455020869910844e-22,0.00037202381645329297,-5.929230630780102e-21,-0.00010629251482896507,-0.00014880952949170023,-3.0899700135784876e-20,-0.0,1.6940658945086007e-21,-0.0,-1.504632769052528e-36,-0.0,4.251700738677755e-05,8.82848656087496e-21,0.0,-3.4824834465673856e-36,-1.9588615362897517e-36,0.00028935185400769114,1.1858461261560205e-20,-8.26719551696442e-05,1.7110669198669446e-21,-8.26719551696442e-05,-0.0,-0.0,-0.0,-3.3881317890172014e-21,-1.6940658945086007e-21,8.82848656087496e-21,2.362055965932086e-05,1.9560225997682864e-35,-9.317362419797304e-21,-4.4109640424524615e-21,0.00034877232974395156,-1.8627703114933178e-34,-6.846079099189002e-35,-0.0005231584655120969,5.232407995898721e-19,-0.0,0.0,-0.0,5.322201053972865e-35,0.0,0.0,1.9560225997682864e-35,0.00010463169746799394,-6.473603361780078e-20,-5.162867503412756e-20,0.00037202381645329297,5.61208570651815e-20,3.2610768469290563e-20,-0.00014880952949170023,-0.00010629251482896507,-0.0,-3.0180134968958167e-37,-0.0,-1.6034531051648182e-20,0.0,-3.4824834465673856e-36,-9.317362419797304e-21,-6.473603361780078e-20,4.251700738677755e-05,-2.470351634934889e-20,0.00021701389050576836,5.953527122569287e-20,1.1538826232848784e-20,3.446056920868817e-19,-0.00021701389050576836,-0.0,-1.53788244146219e-22,-0.0,-1.6856289753779866e-20,5.455020869910844e-22,-1.9588615362897517e-36,-4.4109640424524615e-21,-5.162867503412756e-20,-2.470351634934889e-20,3.100198591710068e-05,4.0,8.0,7.0,3.0,0.0563616082072258,-0.01711309514939785,-0.00997023843228817,-0.01112351194024086,-0.02094493992626667,0.0014880952658131719,0.0011904762359336019,0.0013392857508733869,0.0026785715017467737,0.0004960317746736109,0.0007440476329065859,0.0014880952658131719,0.0006200397037900984,0.0016741071594879031,0.0022321429569274187,-0.01711309514939785,0.02182539738714695,0.0011904762359336019,0.0013392857508733869,0.0026785715017467737,-0.004464285913854837,-0.0007936508045531809,-0.0008928571478463709,-0.0017857142956927419,1.2245226359065565e-19,-1.0974457218333905e-19,-2.091328067468037e-21,4.4574265512773663e-20,-0.0,-0.0,-0.00997023843228817,0.0011904762359336019,0.005328798200935125,0.0007440476329065859,0.0014880952658131719,-6.608470507765904e-19,-0.0003401360590942204,-1.889255574405768e-19,-2.2657611766230274e-19,-0.0004960317746736109,-0.00021258502965793014,-0.00042517005931586027,-1.1903211732699324e-19,-0.0,-0.0,-0.01112351194024086,0.0013392857508733869,0.0007440476329065859,0.006932043470442295,0.0016741071594879031,-7.434529256613157e-19,-1.2840509471828766e-19,-0.00044642857392318547,-2.973811754344051e-19,-0.0,-0.00024801588733680546,-9.160691180605493e-20,-0.0007440476329065859,-0.0005580357392318547,-0.0,-0.02094493992626667,0.0026785715017467737,0.0014880952658131719,0.0016741071594879031,0.04326637089252472,-1.4869058513226313e-18,-2.2657611766230274e-19,-2.998210480487068e-19,-0.0026785715017467737,-3.064204629967168e-20,-8.300922883092143e-20,-0.0014880952658131719,-0.0,-0.0016741071594879031,-0.013392857275903225,0.0014880952658131719,-0.004464285913854837,-6.608470507765904e-19,-7.434529256613157e-19,-1.4869058513226313e-18,0.0014880952658131719,4.405647177506564e-19,4.956353010071399e-19,9.912706020142797e-19,-7.222237291452134e-35,6.092047112800137e-35,1.1609203086946991e-36,-2.407412430484045e-35,-0.0,-0.0,0.0011904762359336019,-0.0007936508045531809,-0.0003401360590942204,-1.2840509471828766e-19,-2.2657611766230274e-19,4.405647177506564e-19,0.00022675737272948027,7.464134050736429e-20,1.5105075372466654e-19,-3.3881317890172014e-20,6.776263578034403e-21,-0.0,-1.1190521802652871e-21,-0.0,-0.0,0.0013392857508733869,-0.0008928571478463709,-1.889255574405768e-19,-0.00044642857392318547,-2.998210480487068e-19,4.956353010071399e-19,7.464134050736429e-20,0.00029761905898340046,1.982541126480377e-19,-1.2892158136522501e-21,2.867588322007288e-20,6.971093389936463e-22,-1.3552527156068805e-20,-0.0,-0.0,0.0026785715017467737,-0.0017857142956927419,-2.2657611766230274e-19,-2.973811754344051e-19,-0.0026785715017467737,9.912706020142797e-19,1.5105075372466654e-19,1.982541126480377e-19,0.0017857142956927419,-3.611118645726067e-35,2.407412430484045e-35,3.009265538105056e-36,-1.2037062152420224e-35,-0.0,-0.0,0.0004960317746736109,1.2245226359065565e-19,-0.0004960317746736109,-0.0,-3.064204629967168e-20,-7.222237291452134e-35,-3.3881317890172014e-20,-1.2892158136522501e-21,-3.611118645726067e-35,7.086167897796258e-05,3.3881317890172014e-21,6.776263578034403e-21,-3.0679737139711827e-21,0.0,0.0,0.0007440476329065859,-1.0974457218333905e-19,-0.00021258502965793014,-0.00024801588733680546,-8.300922883092143e-20,6.092047112800137e-35,6.776263578034403e-21,2.867588322007288e-20,2.407412430484045e-35,3.3881317890172014e-21,7.086167897796258e-05,2.371692252312041e-20,4.7592595869191377e-20,-0.0,-0.0,0.0014880952658131719,-2.091328067468037e-21,-0.00042517005931586027,-9.160691180605493e-20,-0.0014880952658131719,1.1609203086946991e-36,-0.0,6.971093389936463e-22,3.009265538105056e-36,6.776263578034403e-21,2.371692252312041e-20,0.00042517005931586027,1.1618488814937112e-21,-0.0,-0.0,0.0006200397037900984,4.4574265512773663e-20,-1.1903211732699324e-19,-0.0007440476329065859,-0.0,-2.407412430484045e-35,-1.1190521802652871e-21,-1.3552527156068805e-20,-1.2037062152420224e-35,-3.0679737139711827e-21,4.7592595869191377e-20,1.1618488814937112e-21,0.00012400794366840273,0.0,0.0,0.0016741071594879031,-0.0,-0.0,-0.0005580357392318547,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.0005580357392318547,-0.0,0.0022321429569274187,-0.0,-0.0,-0.0,-0.013392857275903225,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,-0.0,0.0066964286379516125,4.0,8.0,7.0,4.0,0.04530134052038193,-0.013236607424914837,-0.007700892630964518,-0.008593750186264515,-0.013236607424914837,0.0011160714784637094,0.0008928571478463709,0.0010044643422588706,0.0016071428544819355,0.00037202381645329297,0.0005580357392318547,0.0008928571478463709,0.0004650297632906586,0.0010044643422588706,0.0011160714784637094,-0.013236607424914837,0.016636904329061508,0.0008928571478463709,0.0010044643422588706,0.0016071428544819355,-0.0033482143189758062,-0.0005952381179668009,-0.0006696428754366934,-0.0010714285308495164,-9.338364406303054e-20,-6.545046563545371e-20,4.1966811983066895e-22,6.075423494938913e-21,1.1667367191982683e-20,-0.0,-0.007700892630964518,0.0008928571478463709,0.004060374107211828,0.0005580357392318547,0.0008928571478463709,-0.0,-0.00025510202976875007,-6.098637220230962e-20,-0.0,-0.00037202381645329297,-0.0001594387722434476,-0.00025510202976875007,-1.0789896421567132e-19,-0.0,-0.0,-0.008593750186264515,0.0010044643422588706,0.0005580357392318547,0.005282738246023655,0.0010044643422588706,-0.0,1.2435874526594132e-20,-0.0003348214377183467,-0.0,1.3552527156068805e-20,-0.00018601190822664648,4.885569743338558e-20,-0.0005580357392318547,-0.0003348214377183467,-0.0,-0.013236607424914837,0.0016071428544819355,0.0008928571478463709,0.0010044643422588706,0.016636904329061508,-0.0,1.2882613045787072e-21,1.0654007933707003e-20,-0.0010714285308495164,-3.4835358443446125e-21,4.2351647362715017e-20,-0.0005952381179668009,2.710505431213761e-20,-0.0006696428754366934,-0.0033482143189758062,0.0011160714784637094,-0.0033482143189758062,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0008928571478463709,-0.0005952381179668009,-0.00025510202976875007,1.2435874526594132e-20,1.2882613045787072e-21,-0.0,0.0001700680295471102,-3.3920998729664334e-22,-0.0,2.710505431213761e-20,-0.0,-0.0,-1.7358352842682608e-21,-4.294204348595691e-22,-0.0,0.0010044643422588706,-0.0006696428754366934,-6.098637220230962e-20,-0.0003348214377183467,1.0654007933707003e-20,-0.0,-3.3920998729664334e-22,0.00022321428696159273,-0.0,-4.946812188524971e-22,2.181682080142648e-20,-1.3988937327688965e-22,-0.0,-3.3881317890172014e-21,-0.0,0.0016071428544819355,-0.0010714285308495164,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-9.338364406303054e-20,-0.00037202381645329297,1.3552527156068805e-20,-3.4835358443446125e-21,-0.0,2.710505431213761e-20,-4.946812188524971e-22,-0.0,5.3146257414482534e-05,3.3881317890172014e-21,0.0,-6.614246037899114e-22,-6.2623812575568855e-22,-0.0,0.0005580357392318547,-6.545046563545371e-20,-0.0001594387722434476,-0.00018601190822664648,4.2351647362715017e-20,-0.0,-0.0,2.181682080142648e-20,-0.0,3.3881317890172014e-21,5.3146257414482534e-05,-1.3552527156068805e-20,3.8620122528388937e-20,1.6940658945086007e-21,-0.0,0.0008928571478463709,4.1966811983066895e-22,-0.00025510202976875007,4.885569743338558e-20,-0.0005952381179668009,-0.0,-0.0,-1.3988937327688965e-22,-0.0,0.0,-1.3552527156068805e-20,0.0001700680295471102,-2.3314896387599907e-22,2.0230011010433724e-22,-0.0,0.0004650297632906586,6.075423494938913e-21,-1.0789896421567132e-19,-0.0005580357392318547,2.710505431213761e-20,-0.0,-1.7358352842682608e-21,-0.0,-0.0,-6.614246037899114e-22,3.8620122528388937e-20,-2.3314896387599907e-22,9.300595411332324e-05,-1.3031276597057485e-22,-0.0,0.0010044643422588706,1.1667367191982683e-20,-0.0,-0.0003348214377183467,-0.0006696428754366934,-0.0,-4.294204348595691e-22,-3.3881317890172014e-21,-0.0,-6.2623812575568855e-22,1.6940658945086007e-21,2.0230011010433724e-22,-1.3031276597057485e-22,0.00022321428696159273,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0033482143189758062,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,4.0,8.0,7.0,5.0,0.037942178547382355,-0.010803570970892906,-0.006279761902987957,-0.007008928339928389,-0.009143282659351826,0.0008928571478463709,0.0007142857066355646,0.0008035714272409678,0.0010714285308495164,0.00029761905898340046,0.00044642857392318547,0.0005952381179668009,0.00037202381645329297,0.0006696428754366934,0.0006377550889737904,-0.010803570970892906,0.013452380895614624,0.0007142857066355646,0.0008035714272409678,0.0010714285308495164,-0.0026785715017467737,-0.0004761904710903764,-0.0005357142654247582,-0.0007142857066355646,-8.478209014112425e-20,-5.590417451878382e-20,5.929230630780102e-21,-2.0304829961320447e-20,-0.0,-0.0,-0.006279761902987957,0.0007142857066355646,0.0032823130022734404,0.00044642857392318547,0.0005952381179668009,-0.0,-0.0002040816325461492,-6.098637220230962e-20,-0.0,-0.00029761905898340046,-0.00012755101488437504,-0.0001700680295471102,-1.0789896421567132e-19,-0.0,-0.0,-0.007008928339928389,0.0008035714272409678,0.00044642857392318547,0.0042708334513008595,0.0006696428754366934,-0.0,-5.633402894073723e-22,-0.0002678571327123791,-0.0,-0.0,-0.00014880952949170023,3.164872833632298e-20,-0.00044642857392318547,-0.00022321428696159273,-0.0,-0.009143282659351826,0.0010714285308495164,0.0005952381179668009,0.0006696428754366934,0.00839817151427269,-0.0,5.929230630780102e-21,1.316553672920962e-35,-0.0005357142654247582,-1.6219414400386236e-22,3.164872833632298e-20,-0.00029761905898340046,-0.0,-0.0003348214377183467,-0.0012755101779475808,0.0008928571478463709,-0.0026785715017467737,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0007142857066355646,-0.0004761904710903764,-0.0002040816325461492,-5.633402894073723e-22,5.929230630780102e-21,-0.0,0.0001360544265480712,4.0522507377625643e-22,-0.0,2.371692252312041e-20,-0.0,-1.6940658945086007e-21,-6.845739668673372e-24,-0.0,-0.0,0.0008035714272409678,-0.0005357142654247582,-6.098637220230962e-20,-0.0002678571327123791,1.316553672920962e-35,-0.0,4.0522507377625643e-22,0.00017857142665889114,-0.0,5.909531978804941e-22,1.8634724839594607e-20,-3.76158192263132e-36,6.776263578034403e-21,-0.0,-0.0,0.0010714285308495164,-0.0007142857066355646,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-8.478209014112425e-20,-0.00029761905898340046,-0.0,-1.6219414400386236e-22,-0.0,2.371692252312041e-20,5.909531978804941e-22,-0.0,4.251700738677755e-05,-0.0,0.0,1.1889234965286592e-21,0.0,-0.0,0.00044642857392318547,-5.590417451878382e-20,-0.00012755101488437504,-0.00014880952949170023,3.164872833632298e-20,-0.0,-0.0,1.8634724839594607e-20,-0.0,-0.0,4.251700738677755e-05,-9.042493694978914e-21,3.2969128313807823e-20,-0.0,-0.0,0.0005952381179668009,5.929230630780102e-21,-0.0001700680295471102,3.164872833632298e-20,-0.00029761905898340046,-0.0,-1.6940658945086007e-21,-3.76158192263132e-36,-0.0,0.0,-9.042493694978914e-21,8.50340147735551e-05,-6.770847460736376e-36,-0.0,-0.0,0.00037202381645329297,-2.0304829961320447e-20,-1.0789896421567132e-19,-0.00044642857392318547,-0.0,-0.0,-6.845739668673372e-24,6.776263578034403e-21,-0.0,1.1889234965286592e-21,3.2969128313807823e-20,-6.770847460736376e-36,7.440476474585012e-05,0.0,-0.0,0.0006696428754366934,-0.0,-0.0,-0.00022321428696159273,-0.0003348214377183467,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.00011160714348079637,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0012755101779475808,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,4.0,8.0,7.0,6.0,0.032669004052877426,-0.009130527265369892,-0.005303996615111828,-0.005920493043959141,-0.006701743230223656,0.0007440476329065859,0.0005952381179668009,0.0006696428754366934,0.0007653061184100807,0.00024801588733680546,0.00037202381645329297,0.00042517005931586027,0.0003100198518950492,0.00047831633128225803,0.00039859695243649185,-0.009130527265369892,0.011295351199805737,0.0005952381179668009,0.0006696428754366934,0.0007653061184100807,-0.0022321429569274187,-0.00039682540227659047,-0.00044642857392318547,-0.0005102040595375001,6.991441043458148e-20,-4.9973228134467526e-20,-8.145460749311337e-20,-1.0564031443355904e-21,-8.49660473545378e-20,-2.6551890202189845e-19,-0.005303996615111828,0.0005952381179668009,0.00275550689548254,0.00037202381645329297,0.00042517005931586027,-3.304235253882952e-19,-0.0001700680295471102,-1.0423225996833128e-19,-1.4026141048013405e-19,-0.00024801588733680546,-0.00010629251482896507,-0.00012147716188337654,-7.753602674925094e-20,-3.5377826558773955e-20,-1.2643756808314786e-19,-0.005920493043959141,0.0006696428754366934,0.00037202381645329297,0.003585600992664695,0.00047831633128225803,-3.7172646283065783e-19,-6.495904926576332e-20,-0.00022321428696159273,-1.699320947090756e-19,-6.776263578034403e-21,-0.00012400794366840273,-6.551765467317804e-20,-0.00037202381645329297,-0.0001594387722434476,-1.6594931053251226e-19,-0.006701743230223656,0.0007653061184100807,0.00042517005931586027,0.00047831633128225803,0.004872980527579784,-4.248302432350375e-19,-7.066526424858089e-20,-8.49660473545378e-20,-0.0003061224415432662,-5.190536129447158e-21,-1.9975435978526747e-20,-0.0001700680295471102,-0.0,-0.00019132652960252017,-0.0005978954141028225,0.0007440476329065859,-0.0022321429569274187,-3.304235253882952e-19,-3.7172646283065783e-19,-4.248302432350375e-19,0.0007440476329065859,2.202823588753282e-19,2.4781765050356993e-19,2.8322015354022696e-19,-3.009265538105056e-35,2.7740713886133346e-35,4.5216388915400007e-35,-1.2037062152420224e-35,4.716563175966443e-35,1.4739259637909209e-34,0.0005952381179668009,-0.00039682540227659047,-0.0001700680295471102,-6.495904926576332e-20,-7.066526424858089e-20,2.202823588753282e-19,0.00011337868636474013,3.8045283701452867e-20,4.315735682225861e-20,-2.0328790734103208e-20,1.6940658945086007e-21,1.6940658945086007e-21,3.018294662039474e-22,7.402400167814882e-36,2.249703045946001e-35,0.0006696428754366934,-0.00044642857392318547,-1.0423225996833128e-19,-0.00022321428696159273,-8.49660473545378e-20,2.4781765050356993e-19,3.8045283701452867e-20,0.00014880952949170023,5.664402941557569e-20,4.1211974333143704e-22,1.4681333039758186e-20,1.2037062152420224e-35,-0.0,-0.0,2.908597189132219e-35,0.0007653061184100807,-0.0005102040595375001,-1.4026141048013405e-19,-1.699320947090756e-19,-0.0003061224415432662,2.8322015354022696e-19,4.315735682225861e-20,5.664402941557569e-20,0.0002040816325461492,-9.027796614315168e-36,1.0156271191104564e-35,3.021015139116816e-20,-3.009265538105056e-36,3.3986418295580265e-20,1.0620756080875938e-19,0.00024801588733680546,6.991441043458148e-20,-0.00024801588733680546,-6.776263578034403e-21,-5.190536129447158e-21,-3.009265538105056e-35,-2.0328790734103208e-20,4.1211974333143704e-22,-9.027796614315168e-36,3.543083948898129e-05,-0.0,0.0,5.253206268983791e-22,0.0,0.0,0.00037202381645329297,-4.9973228134467526e-20,-0.00010629251482896507,-0.00012400794366840273,-1.9975435978526747e-20,2.7740713886133346e-35,1.6940658945086007e-21,1.4681333039758186e-20,1.0156271191104564e-35,-0.0,3.543083948898129e-05,7.159324134241747e-21,2.436861806119002e-20,-1.6940658945086007e-21,6.044458819648842e-36,0.00042517005931586027,-8.145460749311337e-20,-0.00012147716188337654,-6.551765467317804e-20,-0.0001700680295471102,4.5216388915400007e-35,1.6940658945086007e-21,1.2037062152420224e-35,3.021015139116816e-20,0.0,7.159324134241747e-21,4.8590864025754854e-05,3.76158192263132e-36,1.6184008404450196e-20,5.0575027879493996e-20,0.0003100198518950492,-1.0564031443355904e-21,-7.753602674925094e-20,-0.00037202381645329297,-0.0,-1.2037062152420224e-35,3.018294662039474e-22,-0.0,-3.009265538105056e-36,5.253206268983791e-22,2.436861806119002e-20,3.76158192263132e-36,6.200397183420137e-05,-5.864074405566996e-21,-3.9766692642111e-36,0.00047831633128225803,-8.49660473545378e-20,-3.5377826558773955e-20,-0.0001594387722434476,-0.00019132652960252017,4.716563175966443e-35,7.402400167814882e-36,-0.0,3.3986418295580265e-20,0.0,-1.6940658945086007e-21,1.6184008404450196e-20,-5.864074405566996e-21,6.377550744218752e-05,6.637972550547461e-20,0.00039859695243649185,-2.6551890202189845e-19,-1.2643756808314786e-19,-1.6594931053251226e-19,-0.0005978954141028225,1.4739259637909209e-34,2.249703045946001e-35,2.908597189132219e-35,1.0620756080875938e-19,0.0,6.044458819648842e-36,5.0575027879493996e-20,-3.9766692642111e-36,6.637972550547461e-20,0.00011957908282056451,4.0,8.0,7.0,7.0,0.028696322813630104,-0.007908163592219353,-0.004591836594045162,-0.0051259566098451614,-0.0051259566098451614,0.0006377550889737904,0.0005102040595375001,0.0005739795742556453,0.0005739795742556453,0.00021258502965793014,0.0003188775444868952,0.0003188775444868952,0.0002657313016243279,0.0003587372484616935,0.0002657313016243279,-0.007908163592219353,0.009736394509673119,0.0005102040595375001,0.0005739795742556453,0.0005739795742556453,-0.0019132653251290321,-0.0003401360590942204,-0.00038265305920504034,-0.00038265305920504034,-2.7554334876906374e-19,8.118446193728092e-20,7.862399543695691e-20,-5.778340996329125e-19,-2.861469447296383e-20,-5.688597586733832e-19,-0.004591836594045162,0.0005102040595375001,0.002374878618866205,0.0003188775444868952,0.0003188775444868952,9.920962316631842e-19,-0.00014577258843928576,-2.504303780165011e-19,-2.507217523872729e-19,-0.00021258502965793014,-9.110787505051121e-05,-9.110787505051121e-05,-7.800221669519787e-19,-3.4451390088828246e-19,-7.850622301230526e-19,-0.0051259566098451614,0.0005739795742556453,0.0003188775444868952,0.003090454963967204,0.0003587372484616935,4.689870571882847e-19,-3.3425784356960233e-19,-0.00019132652960252017,-3.662452280497576e-19,-7.860465750519907e-19,-0.00010629251482896507,-2.642742795433417e-19,-0.0003188775444868952,-0.00011957908282056451,-3.0527741571244215e-19,-0.0051259566098451614,0.0005739795742556453,0.0003188775444868952,0.0003587372484616935,0.003090454963967204,4.689870571882847e-19,-3.3663291175278935e-19,-3.5935202181262353e-19,-0.00019132652960252017,-7.938043401256076e-19,-2.4648912089162734e-19,-0.00010629251482896507,-8.809142651444724e-20,-0.00011957908282056451,-0.0003188775444868952,0.0006377550889737904,-0.0019132653251290321,9.920962316631842e-19,4.689870571882847e-19,4.689870571882847e-19,0.0006377550889737904,-1.893639114664416e-19,-1.4941307828347933e-19,-1.4941307828347933e-19,-4.720335892337116e-20,-4.720335892337116e-20,-4.720335892337116e-20,1.180083973084279e-20,-2.6551890202189845e-20,1.180083973084279e-20,0.0005102040595375001,-0.0003401360590942204,-0.00014577258843928576,-3.3425784356960233e-19,-3.3663291175278935e-19,-1.893639114664416e-19,9.718172805150971e-05,-2.1543108029202392e-20,-2.1666183457062332e-20,5.759824041329242e-20,2.1175823681357508e-20,2.1175823681357508e-20,5.3880777649379744e-20,6.069003555565607e-21,5.427457701326607e-20,0.0005739795742556453,-0.00038265305920504034,-2.504303780165011e-19,-0.00019132652960252017,-3.5935202181262353e-19,-1.4941307828347933e-19,-2.1543108029202392e-20,0.00012755101488437504,1.1779215097055637e-20,4.231012031102544e-20,1.4718224971960624e-20,-2.792152852972853e-22,7.792703114739563e-20,2.371692252312041e-20,5.59317299729395e-20,0.0005739795742556453,-0.00038265305920504034,-2.507217523872729e-19,-3.662452280497576e-19,-0.00019132652960252017,-1.4941307828347933e-19,-2.1666183457062332e-20,1.1779215097055637e-20,0.00012755101488437504,4.2130635042798505e-20,-4.0013496456253595e-22,1.545079357077863e-20,5.575704622967449e-20,2.6534205985422256e-20,7.430147267318157e-20,0.00021258502965793014,-2.7554334876906374e-19,-0.00021258502965793014,-7.860465750519907e-19,-7.938043401256076e-19,-4.720335892337116e-20,5.759824041329242e-20,4.231012031102544e-20,4.2130635042798505e-20,3.0369290470844135e-05,4.743384504624082e-20,4.743384504624082e-20,7.753905759071412e-20,3.540251919252837e-20,7.92029443175616e-20,0.0003188775444868952,8.118446193728092e-20,-9.110787505051121e-05,-0.00010629251482896507,-2.4648912089162734e-19,-4.720335892337116e-20,2.1175823681357508e-20,1.4718224971960624e-20,-4.0013496456253595e-22,4.743384504624082e-20,3.0369290470844135e-05,7.221537163593685e-21,2.603770697860864e-20,1.6940658945086007e-20,3.361173778983642e-20,0.0003188775444868952,7.862399543695691e-20,-9.110787505051121e-05,-2.642742795433417e-19,-0.00010629251482896507,-4.720335892337116e-20,2.1175823681357508e-20,-2.792152852972853e-22,1.545079357077863e-20,4.743384504624082e-20,7.221537163593685e-21,3.0369290470844135e-05,3.3813272591266724e-20,2.2371930078283454e-20,2.3523022986484884e-20,0.0002657313016243279,-5.778340996329125e-19,-7.800221669519787e-19,-0.0003188775444868952,-8.809142651444724e-20,1.180083973084279e-20,5.3880777649379744e-20,7.792703114739563e-20,5.575704622967449e-20,7.753905759071412e-20,2.603770697860864e-20,3.3813272591266724e-20,5.3146257414482534e-05,-1.0169713879896379e-20,-8.472444276101269e-21,0.0003587372484616935,-2.861469447296383e-20,-3.4451390088828246e-19,-0.00011957908282056451,-0.00011957908282056451,-2.6551890202189845e-20,6.069003555565607e-21,2.371692252312041e-20,2.6534205985422256e-20,3.540251919252837e-20,1.6940658945086007e-20,2.2371930078283454e-20,-1.0169713879896379e-20,3.98596930608619e-05,6.145937087867364e-20,0.0002657313016243279,-5.688597586733832e-19,-7.850622301230526e-19,-3.0527741571244215e-19,-0.0003188775444868952,1.180083973084279e-20,5.427457701326607e-20,5.59317299729395e-20,7.430147267318157e-20,7.92029443175616e-20,3.361173778983642e-20,2.3523022986484884e-20,-8.472444276101269e-21,6.145937087867364e-20,5.3146257414482534e-05,4.0,8.0,7.0,8.0,0.0255921371281147,-0.0069754463620483875,-0.0040488592348992825,-0.004520089365541935,-0.0040488592348992825,0.0005580357392318547,0.00044642857392318547,0.0005022321711294353,0.00044642857392318547,0.00018601190822664648,0.00027901786961592734,0.00024801588733680546,0.0002325148816453293,0.00027901786961592734,0.00018601190822664648,-0.0069754463620483875,0.008556547574698925,0.00044642857392318547,0.0005022321711294353,0.00044642857392318547,-0.0016741071594879031,-0.00029761905898340046,-0.0003348214377183467,-0.00029761905898340046,-4.636149262377105e-20,-3.303082758645118e-20,-2.673699448246846e-20,-1.1329128071579314e-21,-2.5010405203367466e-20,-5.109303681340826e-20,-0.0040488592348992825,0.00044642857392318547,0.0020868764258921146,0.00027901786961592734,0.00024801588733680546,-0.0,-0.00012755101488437504,-3.2986066129319554e-20,-2.371692252312041e-20,-0.00018601190822664648,-7.97193861217238e-05,-7.086167897796258e-05,-5.879928727567381e-20,-1.5093826362370787e-20,-4.2735210366521e-20,-0.004520089365541935,0.0005022321711294353,0.00027901786961592734,0.00271577388048172,0.00027901786961592734,-0.0,3.6352334177653786e-21,-0.00016741071885917336,-2.5686765910210215e-20,-0.0,-9.300595411332324e-05,-5.082197683525802e-21,-0.00027901786961592734,-9.300595411332324e-05,-3.999563987653366e-20,-0.0040488592348992825,0.00044642857392318547,0.00024801588733680546,0.00027901786961592734,0.0020868764258921146,-0.0,-4.632394395539868e-21,-4.67199627321102e-22,-0.00012755101488437504,-9.319325358164983e-21,8.734401228545589e-21,-7.086167897796258e-05,-1.3552527156068805e-20,-7.97193861217238e-05,-0.00018601190822664648,0.0005580357392318547,-0.0016741071594879031,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00029761905898340046,-0.00012755101488437504,3.6352334177653786e-21,-4.632394395539868e-21,-0.0,8.50340147735551e-05,-2.1161595154982218e-22,-2.8708446943856524e-23,1.3552527156068805e-20,-8.470329472543003e-22,8.470329472543003e-22,-5.433754694519024e-23,3.7130934084416127e-37,2.2596020697535207e-22,0.0005022321711294353,-0.0003348214377183467,-3.2986066129319554e-20,-0.00016741071885917336,-4.67199627321102e-22,-0.0,-2.1161595154982218e-22,0.00011160714348079637,2.268161399901786e-22,-3.086066017951373e-22,1.1858461261560205e-20,1.8485508542954236e-23,-0.0,8.470329472543003e-22,-3.273916897331801e-22,0.00044642857392318547,-0.00029761905898340046,-2.371692252312041e-20,-2.5686765910210215e-20,-0.00012755101488437504,-0.0,-2.8708446943856524e-23,2.268161399901786e-22,8.50340147735551e-05,-4.1866482759874714e-23,1.2001726025500129e-22,6.776263578034403e-21,3.7802691681266363e-22,6.419802048399466e-21,1.465267252400293e-20,0.00018601190822664648,-4.636149262377105e-20,-0.00018601190822664648,-0.0,-9.319325358164983e-21,-0.0,1.3552527156068805e-20,-3.086066017951373e-22,-4.1866482759874714e-23,2.6573128707241267e-05,-0.0,3.3881317890172014e-21,1.2072927979716653e-22,3.76158192263132e-37,6.689906507734203e-22,0.00027901786961592734,-3.303082758645118e-20,-7.97193861217238e-05,-9.300595411332324e-05,8.734401228545589e-21,-0.0,-8.470329472543003e-22,1.1858461261560205e-20,1.2001726025500129e-22,-0.0,2.6573128707241267e-05,-2.9256049445582962e-21,1.9286287899519238e-20,-0.0,1.7502516226478662e-22,0.00024801588733680546,-2.673699448246846e-20,-7.086167897796258e-05,-5.082197683525802e-21,-7.086167897796258e-05,-0.0,8.470329472543003e-22,1.8485508542954236e-23,6.776263578034403e-21,3.3881317890172014e-21,-2.9256049445582962e-21,2.0246194253559224e-05,3.0809180379016457e-23,4.312521875519765e-21,1.0515993979413524e-20,0.0002325148816453293,-1.1329128071579314e-21,-5.879928727567381e-20,-0.00027901786961592734,-1.3552527156068805e-20,-0.0,-5.433754694519024e-23,-0.0,3.7802691681266363e-22,1.2072927979716653e-22,1.9286287899519238e-20,3.0809180379016457e-23,4.650297705666162e-05,3.1926627094810987e-21,5.952454594855613e-22,0.00027901786961592734,-2.5010405203367466e-20,-1.5093826362370787e-20,-9.300595411332324e-05,-7.97193861217238e-05,-0.0,3.7130934084416127e-37,8.470329472543003e-22,6.419802048399466e-21,3.76158192263132e-37,-0.0,4.312521875519765e-21,3.1926627094810987e-21,2.6573128707241267e-05,1.0287154947626869e-20,0.00018601190822664648,-5.109303681340826e-20,-4.2735210366521e-20,-3.999563987653366e-20,-0.00018601190822664648,-0.0,2.2596020697535207e-22,-3.273916897331801e-22,1.465267252400293e-20,6.689906507734203e-22,1.7502516226478662e-22,1.0515993979413524e-20,5.952454594855613e-22,1.0287154947626869e-20,2.6573128707241267e-05,4.0,8.0,8.0,3.0,0.05036168918013573,-0.015104166232049465,-0.008796296082437038,-0.008796296082437038,-0.01848958246409893,0.0013020833721384406,0.0010416667209938169,0.0010416667209938169,0.0023437500931322575,0.0004340277810115367,0.0005787037080153823,0.0013020833721384406,0.0004340277810115367,0.0013020833721384406,0.001953125,-0.015104166232049465,0.01918402686715126,0.0010416667209938169,0.0010416667209938169,0.0023437500931322575,-0.00390625,-0.0006944444612599909,-0.0006944444612599909,-0.0015625000232830644,1.2233909494310074e-19,5.929230630780102e-21,1.2180723234951335e-20,1.234559309417151e-19,-0.0,-0.0,-0.008796296082437038,0.0010416667209938169,0.004683366511017084,0.0005787037080153823,0.0013020833721384406,-0.0,-0.00029761905898340046,2.710505431213761e-20,-0.0,-0.0004340277810115367,-0.0001653439103392884,-0.00037202381645329297,4.88402394956885e-20,-0.0,-0.0,-0.008796296082437038,0.0010416667209938169,0.0005787037080153823,0.004683366511017084,0.0013020833721384406,-0.0,-2.171444023695814e-22,-0.00029761905898340046,-0.0,-0.0,-0.0001653439103392884,-2.8491379938208075e-20,-0.0004340277810115367,-0.00037202381645329297,-0.0,-0.01848958246409893,0.0023437500931322575,0.0013020833721384406,0.0013020833721384406,0.03802083432674408,-0.0,1.1858461261560205e-20,3.2226232680081583e-22,-0.0023437500931322575,1.1355036232703591e-20,-2.964615315390051e-20,-0.0013020833721384406,2.710505431213761e-20,-0.0013020833721384406,-0.01171875,0.0013020833721384406,-0.00390625,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0010416667209938169,-0.0006944444612599909,-0.00029761905898340046,-2.171444023695814e-22,1.1858461261560205e-20,-0.0,0.00019841270113829523,-7.355711170192489e-22,-0.0,-3.3881317890172014e-20,3.3881317890172014e-21,-3.3881317890172014e-21,-1.3918061015254116e-21,-0.0,-0.0,0.0010416667209938169,-0.0006944444612599909,2.710505431213761e-20,-0.00029761905898340046,3.2226232680081583e-22,-0.0,-7.355711170192489e-22,0.00019841270113829523,-0.0,-1.0727078516392266e-21,-5.082197683525802e-21,-9.207494871140817e-23,-3.3881317890172014e-20,-0.0,-0.0,0.0023437500931322575,-0.0015625000232830644,-0.0,-0.0,-0.0023437500931322575,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004340277810115367,1.2233909494310074e-19,-0.0004340277810115367,-0.0,1.1355036232703591e-20,-0.0,-3.3881317890172014e-20,-1.0727078516392266e-21,-0.0,6.200397183420137e-05,3.3881317890172014e-21,-6.776263578034403e-21,-1.9239231500863914e-21,0.0,-0.0,0.0005787037080153823,5.929230630780102e-21,-0.0001653439103392884,-0.0001653439103392884,-2.964615315390051e-20,-0.0,3.3881317890172014e-21,-5.082197683525802e-21,-0.0,3.3881317890172014e-21,4.724111931864172e-05,8.470329472543003e-21,-9.15754450154481e-21,-0.0,-0.0,0.0013020833721384406,1.2180723234951335e-20,-0.00037202381645329297,-2.8491379938208075e-20,-0.0013020833721384406,-0.0,-3.3881317890172014e-21,-9.207494871140817e-23,-0.0,-6.776263578034403e-21,8.470329472543003e-21,0.00037202381645329297,-1.3427596529308177e-22,-0.0,-0.0,0.0004340277810115367,1.234559309417151e-19,4.88402394956885e-20,-0.0004340277810115367,2.710505431213761e-20,-0.0,-1.3918061015254116e-21,-3.3881317890172014e-20,-0.0,-1.9239231500863914e-21,-9.15754450154481e-21,-1.3427596529308177e-22,6.200397183420137e-05,0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.00037202381645329297,-0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.00037202381645329297,-0.0,0.001953125,-0.0,-0.0,-0.0,-0.01171875,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.005859375,4.0,8.0,8.0,4.0,0.04044704884290695,-0.011679687537252903,-0.0067925346083939075,-0.0067925346083939075,-0.011679687537252903,0.0009765625,0.0007812500116415322,0.0007812500116415322,0.0014062500558793545,0.00032552084303461015,0.0004340277810115367,0.0007812500116415322,0.00032552084303461015,0.0007812500116415322,0.0009765625,-0.011679687537252903,0.014622395858168602,0.0007812500116415322,0.0007812500116415322,0.0014062500558793545,-0.0029296875,-0.0005208333604969084,-0.0005208333604969084,-0.0009374999790452421,1.2920079076877539e-19,3.486624119930405e-20,2.36428510842057e-20,1.1568303104782795e-19,2.2974846194019444e-20,-0.0,-0.0067925346083939075,0.0007812500116415322,0.0035683284513652325,0.0004340277810115367,0.0007812500116415322,-0.0,-0.00022321428696159273,1.992356593800599e-20,-0.0,-0.00032552084303461015,-0.00012400794366840273,-0.00022321428696159273,2.926296173513532e-20,3.3881317890172014e-21,-0.0,-0.0067925346083939075,0.0007812500116415322,0.0004340277810115367,0.0035683284513652325,0.0007812500116415322,-0.0,4.89846705620778e-21,-0.00022321428696159273,-0.0,1.3552527156068805e-20,-0.00012400794366840273,-9.041262617582888e-21,-0.00032552084303461015,-0.00022321428696159273,-0.0,-0.011679687537252903,0.0014062500558793545,0.0007812500116415322,0.0007812500116415322,0.014622395858168602,-0.0,2.2974846194019444e-20,2.36428510842057e-20,-0.0009374999790452421,2.3923869541449252e-20,-2.964615315390051e-21,-0.0005208333604969084,4.0657581468206416e-20,-0.0005208333604969084,-0.0029296875,0.0009765625,-0.0029296875,-0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0007812500116415322,-0.0005208333604969084,-0.00022321428696159273,4.89846705620778e-21,2.2974846194019444e-20,-0.0,0.00014880952949170023,2.4338613174990974e-22,-0.0,-3.7269449679189215e-20,-3.3881317890172014e-21,-6.776263578034403e-21,8.290221799372735e-22,2.1202182995188925e-22,-0.0,0.0007812500116415322,-0.0005208333604969084,1.992356593800599e-20,-0.00022321428696159273,2.36428510842057e-20,-0.0,2.4338613174990974e-22,0.00014880952949170023,-0.0,3.549381066983226e-22,-6.573651179985794e-21,2.1163454657908005e-23,-3.3881317890172014e-20,-6.776263578034403e-21,-0.0,0.0014062500558793545,-0.0009374999790452421,-0.0,-0.0,-0.0009374999790452421,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00032552084303461015,1.2920079076877539e-19,-0.00032552084303461015,1.3552527156068805e-20,2.3923869541449252e-20,-0.0,-3.7269449679189215e-20,3.549381066983226e-22,-0.0,4.650297705666162e-05,-3.3881317890172014e-21,-6.776263578034403e-21,1.4724103689644076e-21,3.0919851253131723e-22,-0.0,0.0004340277810115367,3.486624119930405e-20,-0.00012400794366840273,-0.00012400794366840273,-2.964615315390051e-21,-0.0,-3.3881317890172014e-21,-6.573651179985794e-21,-0.0,-3.3881317890172014e-21,3.543083948898129e-05,2.541098841762901e-21,-1.1914583527417367e-20,-1.6940658945086007e-21,-0.0,0.0007812500116415322,2.36428510842057e-20,-0.00022321428696159273,-9.041262617582888e-21,-0.0005208333604969084,-0.0,-6.776263578034403e-21,2.1163454657908005e-23,-0.0,-6.776263578034403e-21,2.541098841762901e-21,0.00014880952949170023,3.086337196776152e-23,-7.867226504057559e-23,-0.0,0.00032552084303461015,1.1568303104782795e-19,2.926296173513532e-20,-0.00032552084303461015,4.0657581468206416e-20,-0.0,8.290221799372735e-22,-3.3881317890172014e-20,-0.0,1.4724103689644076e-21,-1.1914583527417367e-20,3.086337196776152e-23,4.650297705666162e-05,-8.03882230495162e-21,-0.0,0.0007812500116415322,2.2974846194019444e-20,3.3881317890172014e-21,-0.00022321428696159273,-0.0005208333604969084,-0.0,2.1202182995188925e-22,-6.776263578034403e-21,-0.0,3.0919851253131723e-22,-1.6940658945086007e-21,-7.867226504057559e-23,-8.03882230495162e-21,0.00014880952949170023,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0029296875,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009765625,4.0,8.0,8.0,5.0,0.03385912626981735,-0.009531250223517418,-0.005538194440305233,-0.005538194440305233,-0.008065476082265377,0.0007812500116415322,0.0006249999860301614,0.0006249999860301614,0.0009374999790452421,0.0002604166802484542,0.00034722223062999547,0.0005208333604969084,0.0002604166802484542,0.0005208333604969084,0.0005580357392318547,-0.009531250223517418,0.011822916567325592,0.0006249999860301614,0.0006249999860301614,0.0009374999790452421,-0.0023437500931322575,-0.00041666667675599456,-0.00041666667675599456,-0.0006249999860301614,8.378113051410119e-20,1.1858461261560205e-20,-3.5457192377700627e-22,8.279971949139824e-20,-0.0,-0.0,-0.005538194440305233,0.0006249999860301614,0.0028844245243817568,0.00034722223062999547,0.0005208333604969084,-0.0,-0.00017857142665889114,1.3552527156068805e-20,-0.0,-0.0002604166802484542,-9.920635056914762e-05,-0.00014880952949170023,2.442011974784425e-20,-0.0,-0.0,-0.005538194440305233,0.0006249999860301614,0.00034722223062999547,0.0028844245243817568,0.0005208333604969084,-0.0,-2.2637574103489905e-22,-0.00017857142665889114,-0.0,-0.0,-9.920635056914762e-05,-1.0164395367051604e-20,-0.0002604166802484542,-0.00014880952949170023,-0.0,-0.008065476082265377,0.0009374999790452421,0.0005208333604969084,0.0005208333604969084,0.007380952592939138,-0.0,-0.0,-3.5457192377700627e-22,-0.00046874998952262104,4.1113061525484065e-21,-8.893845946170154e-21,-0.0002604166802484542,-0.0,-0.0002604166802484542,-0.0011160714784637094,0.0007812500116415322,-0.0023437500931322575,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0006249999860301614,-0.00041666667675599456,-0.00017857142665889114,-2.2637574103489905e-22,-0.0,-0.0,0.0001190476177725941,-1.5123017648986624e-22,-0.0,-2.371692252312041e-20,-0.0,-0.0,5.985937764423283e-23,-0.0,-0.0,0.0006249999860301614,-0.00041666667675599456,1.3552527156068805e-20,-0.00017857142665889114,-3.5457192377700627e-22,-0.0,-1.5123017648986624e-22,0.0001190476177725941,-0.0,-2.2054400159607496e-22,-3.3881317890172014e-21,1.0130626844406411e-22,-2.371692252312041e-20,-0.0,-0.0,0.0009374999790452421,-0.0006249999860301614,-0.0,-0.0,-0.00046874998952262104,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002604166802484542,8.378113051410119e-20,-0.0002604166802484542,-0.0,4.1113061525484065e-21,-0.0,-2.371692252312041e-20,-2.2054400159607496e-22,-0.0,3.720238237292506e-05,-0.0,0.0,-4.540464761318089e-22,0.0,-0.0,0.00034722223062999547,1.1858461261560205e-20,-9.920635056914762e-05,-9.920635056914762e-05,-8.893845946170154e-21,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,2.8344671591185033e-05,2.541098841762901e-21,-6.105029936961062e-21,-0.0,-0.0,0.0005208333604969084,-3.5457192377700627e-22,-0.00014880952949170023,-1.0164395367051604e-20,-0.0002604166802484542,-0.0,-0.0,1.0130626844406411e-22,-0.0,0.0,2.541098841762901e-21,7.440476474585012e-05,1.4773829947012353e-22,-0.0,-0.0,0.0002604166802484542,8.279971949139824e-20,2.442011974784425e-20,-0.0002604166802484542,-0.0,-0.0,5.985937764423283e-23,-2.371692252312041e-20,-0.0,-4.540464761318089e-22,-6.105029936961062e-21,1.4773829947012353e-22,3.720238237292506e-05,0.0,-0.0,0.0005208333604969084,-0.0,-0.0,-0.00014880952949170023,-0.0002604166802484542,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,7.440476474585012e-05,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0011160714784637094,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,4.0,8.0,8.0,6.0,0.029142897576093674,-0.008054315112531185,-0.004677166230976582,-0.004677166230976582,-0.0059105283580720425,0.0006510416860692203,0.0005208333604969084,0.0005208333604969084,0.0006696428754366934,0.00021701389050576836,0.00028935185400769114,0.00037202381645329297,0.00021701389050576836,0.00037202381645329297,0.00034877232974395156,-0.008054315112531185,0.00992683507502079,0.0005208333604969084,0.0005208333604969084,0.0006696428754366934,-0.001953125,-0.00034722223062999547,-0.00034722223062999547,-0.00044642857392318547,5.998175488601544e-20,1.4823076576950256e-20,-5.929230630780102e-21,7.097618076132426e-20,-5.929230630780102e-21,-0.0,-0.004677166230976582,0.0005208333604969084,0.002421402605250478,0.00028935185400769114,0.00037202381645329297,-0.0,-0.00014880952949170023,1.3552527156068805e-20,-0.0,-0.00021701389050576836,-8.26719551696442e-05,-0.00010629251482896507,2.442011974784425e-20,-0.0,-0.0,-0.004677166230976582,0.0005208333604969084,0.00028935185400769114,0.002421402605250478,0.00037202381645329297,-0.0,2.789552313045363e-21,-0.00014880952949170023,-0.0,6.776263578034403e-21,-8.26719551696442e-05,-7.192892803709769e-21,-0.00021701389050576836,-0.00010629251482896507,-0.0,-0.0059105283580720425,0.0006696428754366934,0.00037202381645329297,0.00037202381645329297,0.0042824591509997845,-0.0,-5.929230630780102e-21,-5.929230630780102e-21,-0.0002678571327123791,4.4996755280777225e-21,-7.192892803709769e-21,-0.00014880952949170023,6.776263578034403e-21,-0.00014880952949170023,-0.0005231584655120969,0.0006510416860692203,-0.001953125,-0.0,-0.0,-0.0,0.0006510416860692203,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0005208333604969084,-0.00034722223062999547,-0.00014880952949170023,2.789552313045363e-21,-5.929230630780102e-21,-0.0,9.920635056914762e-05,-1.3507502459208548e-22,-0.0,-1.6940658945086007e-20,-8.470329472543003e-22,1.6940658945086007e-21,4.988168189926746e-23,-0.0,-0.0,0.0005208333604969084,-0.00034722223062999547,1.3552527156068805e-20,-0.00014880952949170023,-5.929230630780102e-21,-0.0,-1.3507502459208548e-22,9.920635056914762e-05,-0.0,-1.9698441191527253e-22,-3.3881317890172014e-21,-2.82118644197349e-37,-2.0328790734103208e-20,1.6940658945086007e-21,-0.0,0.0006696428754366934,-0.00044642857392318547,-0.0,-0.0,-0.0002678571327123791,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00021701389050576836,5.998175488601544e-20,-0.00021701389050576836,6.776263578034403e-21,4.4996755280777225e-21,-0.0,-1.6940658945086007e-20,-1.9698441191527253e-22,-0.0,3.100198591710068e-05,-1.6940658945086007e-21,0.0,-4.130445659913947e-22,-0.0,-0.0,0.00028935185400769114,1.4823076576950256e-20,-8.26719551696442e-05,-8.26719551696442e-05,-7.192892803709769e-21,-0.0,-8.470329472543003e-22,-3.3881317890172014e-21,-0.0,-1.6940658945086007e-21,2.362055965932086e-05,2.0551122584811327e-21,-6.105029936961062e-21,-0.0,-0.0,0.00037202381645329297,-5.929230630780102e-21,-0.00010629251482896507,-7.192892803709769e-21,-0.00014880952949170023,-0.0,1.6940658945086007e-21,-2.82118644197349e-37,-0.0,0.0,2.0551122584811327e-21,4.251700738677755e-05,-5.64237288394698e-37,-0.0,-0.0,0.00021701389050576836,7.097618076132426e-20,2.442011974784425e-20,-0.00021701389050576836,6.776263578034403e-21,-0.0,4.988168189926746e-23,-2.0328790734103208e-20,-0.0,-4.130445659913947e-22,-6.105029936961062e-21,-5.64237288394698e-37,3.100198591710068e-05,-3.3561682053667026e-22,-0.0,0.00037202381645329297,-5.929230630780102e-21,-0.0,-0.00010629251482896507,-0.00014880952949170023,-0.0,-0.0,1.6940658945086007e-21,-0.0,-0.0,-0.0,-0.0,-3.3561682053667026e-22,4.251700738677755e-05,-0.0,0.00034877232974395156,-0.0,-0.0,-0.0,-0.0005231584655120969,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010463169746799394,4.0,8.0,8.0,7.0,0.0255921371281147,-0.0069754463620483875,-0.0040488592348992825,-0.0040488592348992825,-0.004520089365541935,0.0005580357392318547,0.00044642857392318547,0.00044642857392318547,0.0005022321711294353,0.00018601190822664648,0.00024801588733680546,0.00027901786961592734,0.00018601190822664648,0.00027901786961592734,0.0002325148816453293,-0.0069754463620483875,0.008556547574698925,0.00044642857392318547,0.00044642857392318547,0.0005022321711294353,-0.0016741071594879031,-0.00029761905898340046,-0.00029761905898340046,-0.0003348214377183467,-4.472184293510622e-20,-2.9553841736244155e-20,-3.032240561640529e-20,-3.4449031977847617e-20,-3.20163002586777e-20,-4.986928933620854e-21,-0.0040488592348992825,0.00044642857392318547,0.0020868764258921146,0.00024801588733680546,0.00027901786961592734,-0.0,-0.00012755101488437504,-2.2320166666513534e-20,-3.049318610115481e-20,-0.00018601190822664648,-7.086167897796258e-05,-7.97193861217238e-05,-4.1862279557510403e-20,-2.0003487417932525e-20,-5.394948210783566e-20,-0.0040488592348992825,0.00044642857392318547,0.00024801588733680546,0.0020868764258921146,0.00027901786961592734,-0.0,3.7663776431300564e-22,-0.00012755101488437504,-3.534645508780803e-20,-6.776263578034403e-21,-7.086167897796258e-05,-6.776263578034403e-21,-0.00018601190822664648,-7.97193861217238e-05,-6.273326779609651e-20,-0.004520089365541935,0.0005022321711294353,0.00027901786961592734,0.00027901786961592734,0.00271577388048172,-0.0,2.070614220927616e-21,2.070614220927616e-21,-0.00016741071885917336,-3.4249917123995494e-22,1.4512366859360025e-20,-9.300595411332324e-05,-0.0,-9.300595411332324e-05,-0.00027901786961592734,0.0005580357392318547,-0.0016741071594879031,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00029761905898340046,-0.00012755101488437504,3.7663776431300564e-22,2.070614220927616e-21,-0.0,8.50340147735551e-05,-3.6502343462519634e-22,-1.9402541359245024e-22,1.3552527156068805e-20,8.470329472543003e-22,-8.470329472543003e-22,-3.689816231032333e-22,-1.6315222731838271e-37,1.8231370691450046e-22,0.00044642857392318547,-0.00029761905898340046,-2.2320166666513534e-20,-0.00012755101488437504,2.070614220927616e-21,-0.0,-3.6502343462519634e-22,8.50340147735551e-05,3.7733151383660597e-23,-5.323258631980355e-22,7.623296525288703e-21,7.22104655521951e-23,1.0164395367051604e-20,-8.470329472543003e-22,8.994840690287302e-23,0.0005022321711294353,-0.0003348214377183467,-3.049318610115481e-20,-3.534645508780803e-20,-0.00016741071885917336,-0.0,-1.9402541359245024e-22,3.7733151383660597e-23,0.00011160714348079637,-2.8295372868156386e-22,-3.0770523039217007e-23,1.1011428314305904e-20,5.502751624733275e-23,1.1660305460620439e-20,1.3446705391005271e-21,0.00018601190822664648,-4.472184293510622e-20,-0.00018601190822664648,-6.776263578034403e-21,-3.4249917123995494e-22,-0.0,1.3552527156068805e-20,-5.323258631980355e-22,-2.8295372868156386e-22,2.6573128707241267e-05,3.3881317890172014e-21,0.0,-6.34618048423723e-24,0.0,-6.061955051823021e-22,0.00024801588733680546,-2.9553841736244155e-20,-7.086167897796258e-05,-7.086167897796258e-05,1.4512366859360025e-20,-0.0,8.470329472543003e-22,7.623296525288703e-21,-3.0770523039217007e-23,3.3881317890172014e-21,2.0246194253559224e-05,-4.037960920050382e-21,1.2042251261705398e-20,-0.0,-5.128420716899076e-23,0.00027901786961592734,-3.032240561640529e-20,-7.97193861217238e-05,-6.776263578034403e-21,-9.300595411332324e-05,-0.0,-8.470329472543003e-22,7.22104655521951e-23,1.1011428314305904e-20,0.0,-4.037960920050382e-21,2.6573128707241267e-05,1.0530692919323815e-22,6.6678290046785805e-21,1.9481757786848908e-20,0.00018601190822664648,-3.4449031977847617e-20,-4.1862279557510403e-20,-0.00018601190822664648,-0.0,-0.0,-3.689816231032333e-22,1.0164395367051604e-20,5.502751624733275e-23,-6.34618048423723e-24,1.2042251261705398e-20,1.0530692919323815e-22,2.6573128707241267e-05,1.6780841026833513e-22,4.045529579741209e-23,0.00027901786961592734,-3.20163002586777e-20,-2.0003487417932525e-20,-7.97193861217238e-05,-9.300595411332324e-05,-0.0,-1.6315222731838271e-37,-8.470329472543003e-22,1.1660305460620439e-20,0.0,-0.0,6.6678290046785805e-21,1.6780841026833513e-22,2.6573128707241267e-05,2.0823845406019124e-20,0.0002325148816453293,-4.986928933620854e-21,-5.394948210783566e-20,-6.273326779609651e-20,-0.00027901786961592734,-0.0,1.8231370691450046e-22,8.994840690287302e-23,1.3446705391005271e-21,-6.061955051823021e-22,-5.128420716899076e-23,1.9481757786848908e-20,4.045529579741209e-23,2.0823845406019124e-20,4.650297705666162e-05,4.0,8.0,8.0,8.0,0.02281901054084301,-0.006152343936264515,-0.0035698784049600363,-0.0035698784049600363,-0.0035698784049600363,0.00048828125,0.0003906250058207661,0.0003906250058207661,0.0003906250058207661,0.00016276042151730508,0.00021701389050576836,0.00021701389050576836,0.00016276042151730508,0.00021701389050576836,0.00016276042151730508,-0.006152343936264515,0.007519531063735485,0.0003906250058207661,0.0003906250058207661,0.0003906250058207661,-0.00146484375,-0.0002604166802484542,-0.0002604166802484542,-0.0002604166802484542,5.371612993339048e-20,1.1242326411894706e-20,1.1723825499963695e-20,5.786740369214747e-20,1.3226047692464648e-20,5.528125581874311e-20,-0.0035698784049600363,0.0003906250058207661,0.0018337673973292112,0.00021701389050576836,0.00021701389050576836,-0.0,-0.00011160714348079637,7.740031581441682e-21,1.0164395367051604e-20,-0.00016276042151730508,-6.200397183420137e-05,-6.200397183420137e-05,1.139142814068809e-20,8.687302824624784e-21,1.831508900308962e-20,-0.0035698784049600363,0.0003906250058207661,0.00021701389050576836,0.0018337673973292112,0.00021701389050576836,-0.0,9.630348297710798e-22,-0.00011160714348079637,9.21887057356024e-21,6.776263578034403e-21,-6.200397183420137e-05,3.3881317890172014e-21,-0.00016276042151730508,-6.200397183420137e-05,1.3548067327785695e-20,-0.0035698784049600363,0.0003906250058207661,0.00021701389050576836,0.00021701389050576836,0.0018337673973292112,-0.0,1.514591228572231e-21,1.9085599261850312e-21,-0.00011160714348079637,5.612092088087329e-21,1.8693015627282237e-21,-6.200397183420137e-05,6.776263578034403e-21,-6.200397183420137e-05,-0.00016276042151730508,0.00048828125,-0.00146484375,-0.0,-0.0,-0.0,0.00048828125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003906250058207661,-0.0002604166802484542,-0.00011160714348079637,9.630348297710798e-22,1.514591228572231e-21,-0.0,7.440476474585012e-05,1.5296530444989244e-23,-8.446645470031117e-23,-1.5246593050577406e-20,-8.470329472543003e-22,-8.470329472543003e-22,2.613292463557048e-22,9.862361012693492e-38,2.0824654360789323e-22,0.0003906250058207661,-0.0002604166802484542,7.740031581441682e-21,-0.00011160714348079637,1.9085599261850312e-21,-0.0,1.5296530444989244e-23,7.440476474585012e-05,9.99676850838744e-23,2.230743865455417e-23,-2.30471764339006e-21,3.8467315829157204e-23,-1.6940658945086007e-20,-8.470329472543003e-22,1.0189201975429605e-22,0.0003906250058207661,-0.0002604166802484542,1.0164395367051604e-20,9.21887057356024e-21,-0.00011160714348079637,-0.0,-8.446645470031117e-23,9.99676850838744e-23,7.440476474585012e-05,-1.23180239075252e-22,-6.034265907832019e-23,-2.541098841762901e-21,1.4578620320672534e-22,-2.931837879720854e-21,-1.610478324257837e-20,0.00016276042151730508,5.371612993339048e-20,-0.00016276042151730508,6.776263578034403e-21,5.612092088087329e-21,-0.0,-1.5246593050577406e-20,2.230743865455417e-23,-1.23180239075252e-22,2.325148852833081e-05,-0.0,0.0,3.7501624494510575e-22,1.88079096131566e-37,4.801568885704106e-22,0.00021701389050576836,1.1242326411894706e-20,-6.200397183420137e-05,-6.200397183420137e-05,1.8693015627282237e-21,-0.0,-8.470329472543003e-22,-2.30471764339006e-21,-6.034265907832019e-23,-0.0,1.7715419744490646e-05,5.2917461000628e-22,-4.234049577252332e-21,-8.470329472543003e-22,-8.799971220769815e-23,0.00021701389050576836,1.1723825499963695e-20,-6.200397183420137e-05,3.3881317890172014e-21,-6.200397183420137e-05,-0.0,-8.470329472543003e-22,3.8467315829157204e-23,-2.541098841762901e-21,0.0,5.2917461000628e-22,1.7715419744490646e-05,5.609817088967319e-23,-1.6350535452172962e-21,-6.2728381452810056e-21,0.00016276042151730508,5.786740369214747e-20,1.139142814068809e-20,-0.00016276042151730508,6.776263578034403e-21,-0.0,2.613292463557048e-22,-1.6940658945086007e-20,1.4578620320672534e-22,3.7501624494510575e-22,-4.234049577252332e-21,5.609817088967319e-23,2.325148852833081e-05,-2.828770488772215e-21,7.456582372380993e-22,0.00021701389050576836,1.3226047692464648e-20,8.687302824624784e-21,-6.200397183420137e-05,-6.200397183420137e-05,-0.0,9.862361012693492e-38,-8.470329472543003e-22,-2.931837879720854e-21,1.88079096131566e-37,-8.470329472543003e-22,-1.6350535452172962e-21,-2.828770488772215e-21,1.7715419744490646e-05,-5.439601100459798e-21,0.00016276042151730508,5.528125581874311e-20,1.831508900308962e-20,1.3548067327785695e-20,-0.00016276042151730508,-0.0,2.0824654360789323e-22,1.0189201975429605e-22,-1.610478324257837e-20,4.801568885704106e-22,-8.799971220769815e-23,-6.2728381452810056e-21,7.456582372380993e-22,-5.439601100459798e-21,2.325148852833081e-05,5.0,3.0,3.0,3.0,0.19391533732414246,-0.06190476194024086,-0.08888889104127884,-0.08888889104127884,-0.08888889104127884,0.005291005130857229,0.011111111380159855,0.011111111380159855,0.011111111380159855,0.011111111380159855,0.01666666753590107,0.01666666753590107,0.011111111380159855,0.01666666753590107,0.011111111380159855,-0.06190476194024086,0.06269841641187668,0.011111111380159855,0.011111111380159855,0.011111111380159855,-0.010582010261714458,-0.0055555556900799274,-0.0055555556900799274,-0.0055555556900799274,1.3877787807814457e-17,-5.204170427930421e-18,-6.938893903907228e-18,2.0816681711721685e-17,-6.938893903907228e-18,2.7755575615628914e-17,-0.08888889104127884,0.011111111380159855,0.20000000298023224,0.01666666753590107,0.01666666753590107,4.7704895589362195e-18,-0.011111111380159855,-1.1775701841274274e-17,-1.189340633371812e-17,-0.06666667014360428,-0.01666666753590107,-0.01666666753590107,-6.418476861114186e-17,-8.673617379884035e-18,-6.591949208711867e-17,-0.08888889104127884,0.011111111380159855,0.01666666753590107,0.20000000298023224,0.01666666753590107,-0.0,-6.071532165918825e-18,-0.011111111380159855,-1.2131097509915845e-17,-6.765421556309548e-17,-0.01666666753590107,-4.662369401454873e-19,-0.06666667014360428,-0.01666666753590107,-5.724587470723463e-17,-0.08888889104127884,0.011111111380159855,0.01666666753590107,0.01666666753590107,0.20000000298023224,9.540979117872439e-18,-7.37257477290143e-18,-1.1058862159352145e-17,-0.011111111380159855,-6.591949208711867e-17,1.3010426069826053e-18,-0.01666666753590107,-5.833007687972014e-17,-0.01666666753590107,-0.06666667014360428,0.005291005130857229,-0.010582010261714458,4.7704895589362195e-18,-0.0,9.540979117872439e-18,0.0026455025654286146,-0.0,-0.0,-0.0,-1.734723475976807e-18,-2.168404344971009e-19,2.168404344971009e-19,-4.336808689942018e-18,2.168404344971009e-19,-6.071532165918825e-18,0.011111111380159855,-0.0055555556900799274,-0.011111111380159855,-6.071532165918825e-18,-7.37257477290143e-18,-0.0,0.0055555556900799274,-2.0724163679857949e-19,2.3136500227049607e-19,-8.102161308063001e-18,2.3207772176578707e-18,1.9918223772965576e-18,1.766488245474609e-18,6.760024471646338e-19,2.0954430858359222e-18,0.011111111380159855,-0.0055555556900799274,-1.1775701841274274e-17,-0.011111111380159855,-1.1058862159352145e-17,-0.0,-2.0724163679857949e-19,0.0055555556900799274,2.3136500227049607e-19,3.740217908027947e-18,2.9786873119708033e-18,1.0049574426223118e-18,-8.102161308063001e-18,2.649732264814337e-18,3.4112630676666342e-18,0.011111111380159855,-0.0055555556900799274,-1.189340633371812e-17,-1.2131097509915845e-17,-0.011111111380159855,-0.0,2.3136500227049607e-19,2.3136500227049607e-19,0.0055555556900799274,3.4112630676666342e-18,1.3339123863812016e-18,2.9786873119708033e-18,3.4112630676666342e-18,2.9786873119708033e-18,-5.7994761847628905e-18,0.011111111380159855,1.3877787807814457e-17,-0.06666667014360428,-6.765421556309548e-17,-6.591949208711867e-17,-1.734723475976807e-18,-8.102161308063001e-18,3.740217908027947e-18,3.4112630676666342e-18,0.03333333507180214,2.389857758949165e-18,2.5543353859249746e-18,2.7717745337494413e-17,2.0609029185878517e-18,2.7306552200633078e-17,0.01666666753590107,-5.204170427930421e-18,-0.01666666753590107,-0.01666666753590107,1.3010426069826053e-18,-2.168404344971009e-19,2.3207772176578707e-18,2.9786873119708033e-18,1.3339123863812016e-18,2.389857758949165e-18,0.01666666753590107,-5.427756908063804e-20,4.569184403523477e-18,4.391548917941363e-19,-2.33886993240109e-18,0.01666666753590107,-6.938893903907228e-18,-0.01666666753590107,-4.662369401454873e-19,-0.01666666753590107,2.168404344971009e-19,1.9918223772965576e-18,1.0049574426223118e-18,2.9786873119708033e-18,2.5543353859249746e-18,-5.427756908063804e-20,0.01666666753590107,-1.4802974020113686e-18,9.868649346742457e-19,7.401487216851996e-18,0.011111111380159855,2.0816681711721685e-17,-6.418476861114186e-17,-0.06666667014360428,-5.833007687972014e-17,-4.336808689942018e-18,1.766488245474609e-18,-8.102161308063001e-18,3.4112630676666342e-18,2.7717745337494413e-17,4.569184403523477e-18,-1.4802974020113686e-18,0.03333333507180214,9.435250546337136e-18,2.1942941055271836e-17,0.01666666753590107,-6.938893903907228e-18,-8.673617379884035e-18,-0.01666666753590107,-0.01666666753590107,2.168404344971009e-19,6.760024471646338e-19,2.649732264814337e-18,2.9786873119708033e-18,2.0609029185878517e-18,4.391548917941363e-19,9.868649346742457e-19,9.435250546337136e-18,0.01666666753590107,7.401487216851996e-18,0.011111111380159855,2.7755575615628914e-17,-6.591949208711867e-17,-5.724587470723463e-17,-0.06666667014360428,-6.071532165918825e-18,2.0954430858359222e-18,3.4112630676666342e-18,-5.7994761847628905e-18,2.7306552200633078e-17,-2.33886993240109e-18,7.401487216851996e-18,2.1942941055271836e-17,7.401487216851996e-18,0.03333333507180214,5.0,3.0,3.0,4.0,0.1582142859697342,-0.04809523746371269,-0.06916666775941849,-0.06916666775941849,-0.05666666850447655,0.003968254197388887,0.008333333767950535,0.008333333767950535,0.006666666828095913,0.008333333767950535,0.012500000186264515,0.009999999776482582,0.008333333767950535,0.009999999776482582,0.0055555556900799274,-0.04809523746371269,0.047857142984867096,0.008333333767950535,0.008333333767950535,0.006666666828095913,-0.007936508394777775,-0.004166666883975267,-0.004166666883975267,-0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.06916666775941849,0.008333333767950535,0.1525000035762787,0.012500000186264515,0.009999999776482582,-0.0,-0.008333333767950535,-0.0,-0.0,-0.05000000074505806,-0.012500000186264515,-0.009999999776482582,-2.7755575615628914e-17,-6.661337998858429e-18,-1.2952602009105534e-17,-0.06916666775941849,0.008333333767950535,0.012500000186264515,0.1525000035762787,0.009999999776482582,-0.0,-0.0,-0.008333333767950535,-0.0,-3.275157777060424e-17,-0.012500000186264515,-0.0,-0.05000000074505806,-0.009999999776482582,-1.2952602009105534e-17,-0.05666666850447655,0.006666666828095913,0.009999999776482582,0.009999999776482582,0.07666666805744171,-0.0,-0.0,-0.0,-0.004444444552063942,-2.2759571806292362e-17,-0.0,-0.006666666828095913,-1.9428902600067994e-17,-0.006666666828095913,-0.01666666753590107,0.003968254197388887,-0.007936508394777775,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.004166666883975267,-0.008333333767950535,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.004166666883975267,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0033333334140479565,-0.0,-0.0,-0.004444444552063942,-0.0,-0.0,-0.0,0.002222222276031971,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.05000000074505806,-3.275157777060424e-17,-2.2759571806292362e-17,-0.0,-0.0,-0.0,-0.0,0.02500000037252903,-0.0,-0.0,1.3877787807814457e-17,3.3306689994292145e-18,6.476301004552767e-18,0.012500000186264515,-0.0,-0.012500000186264515,-0.012500000186264515,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.009999999776482582,-0.0,-0.006666666828095913,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-2.7755575615628914e-17,-0.05000000074505806,-1.9428902600067994e-17,-0.0,-0.0,-0.0,-0.0,1.3877787807814457e-17,-0.0,-0.0,0.02500000037252903,1.8488928200801433e-33,6.476301004552767e-18,0.009999999776482582,-0.0,-6.661337998858429e-18,-0.009999999776482582,-0.006666666828095913,-0.0,-0.0,-0.0,-0.0,3.3306689994292145e-18,-0.0,-0.0,1.8488928200801433e-33,0.006666666828095913,8.628166187589015e-34,0.0055555556900799274,-0.0,-1.2952602009105534e-17,-1.2952602009105534e-17,-0.01666666753590107,-0.0,-0.0,-0.0,-0.0,6.476301004552767e-18,-0.0,-0.0,6.476301004552767e-18,8.628166187589015e-34,0.0055555556900799274,5.0,3.0,3.0,5.0,0.13380952179431915,-0.03936507925391197,-0.05666666850447655,-0.05666666850447655,-0.03936507925391197,0.0031746032182127237,0.006666666828095913,0.006666666828095913,0.004444444552063942,0.006666666828095913,0.009999999776482582,0.006666666828095913,0.006666666828095913,0.006666666828095913,0.0031746032182127237,-0.03936507925391197,0.038730159401893616,0.006666666828095913,0.006666666828095913,0.004444444552063942,-0.0063492064364254475,-0.0033333334140479565,-0.0033333334140479565,-0.002222222276031971,3.851859888774472e-34,-0.0,5.421010862427522e-20,-3.4152484556891976e-35,-4.669583514995586e-20,2.1511300995945167e-19,-0.05666666850447655,0.006666666828095913,0.12333333492279053,0.009999999776482582,0.006666666828095913,-0.0,-0.006666666828095913,-4.07045239679688e-21,6.205101181180219e-20,-0.03999999910593033,-0.009999999776482582,-0.006666666828095913,-2.2204460823375376e-17,-4.560093275001213e-18,-6.152704640199572e-18,-0.05666666850447655,0.006666666828095913,0.009999999776482582,0.12333333492279053,0.006666666828095913,2.6794173342311187e-20,-1.0780927651152041e-20,-0.006666666828095913,-5.288686521343473e-20,-2.6645351995433716e-17,-0.009999999776482582,-1.1249066964534732e-19,-0.03999999910593033,-0.006666666828095913,-6.461883660066274e-18,-0.03936507925391197,0.004444444552063942,0.006666666828095913,0.006666666828095913,0.038730159401893616,2.168404344971009e-19,-0.0,1.0842021724855044e-19,-0.002222222276031971,-1.4908709622684196e-17,-0.0,-0.0033333334140479565,-1.2688263209474413e-17,-0.0033333334140479565,-0.0063492064364254475,0.0031746032182127237,-0.0063492064364254475,-0.0,2.6794173342311187e-20,2.168404344971009e-19,0.0015873016091063619,-0.0,-0.0,1.0842021724855044e-19,-1.4831968719224403e-34,0.0,8.264225992646444e-22,-2.6871516743731254e-35,-2.1945436885362107e-21,-9.369613738881659e-20,0.006666666828095913,-0.0033333334140479565,-0.006666666828095913,-1.0780927651152041e-20,-0.0,-0.0,0.0033333334140479565,-0.0,-4.124682052813785e-22,-3.13798704828083e-35,-0.0,1.3857997524583823e-21,-7.773200332849046e-36,5.3904638255760204e-21,-1.3681211902457621e-21,0.006666666828095913,-0.0033333334140479565,-4.07045239679688e-21,-0.006666666828095913,1.0842021724855044e-19,-0.0,-0.0,0.0033333334140479565,-0.0,-5.776122100551478e-35,-0.0,2.03522619839844e-21,-1.9309329987249605e-35,-2.03522619839844e-21,-2.4924187780380152e-20,0.004444444552063942,-0.002222222276031971,6.205101181180219e-20,-5.288686521343473e-20,-0.002222222276031971,1.0842021724855044e-19,-4.124682052813785e-22,-0.0,0.0011111111380159855,1.7457287267048427e-34,-0.0,-3.0613036817095503e-20,8.906305714532209e-35,2.6443432606717365e-20,1.0937875155743748e-19,0.006666666828095913,3.851859888774472e-34,-0.03999999910593033,-2.6645351995433716e-17,-1.4908709622684196e-17,-1.4831968719224403e-34,-3.13798704828083e-35,-5.776122100551478e-35,1.7457287267048427e-34,0.019999999552965164,-0.0,-1.925929944387236e-34,1.1102230411687688e-17,2.2204459996194763e-18,3.1720658023686032e-18,0.009999999776482582,-0.0,-0.009999999776482582,-0.009999999776482582,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,5.421010862427522e-20,-0.006666666828095913,-1.1249066964534732e-19,-0.0033333334140479565,8.264225992646444e-22,1.3857997524583823e-21,2.03522619839844e-21,-3.0613036817095503e-20,-1.925929944387236e-34,-0.0,0.0033333334140479565,-1.0881935766702077e-34,5.421010862427522e-20,-9.434526091216905e-20,0.006666666828095913,-3.4152484556891976e-35,-2.2204460823375376e-17,-0.03999999910593033,-1.2688263209474413e-17,-2.6871516743731254e-35,-7.773200332849046e-36,-1.9309329987249605e-35,8.906305714532209e-35,1.1102230411687688e-17,-0.0,-1.0881935766702077e-34,0.019999999552965164,1.1555579666323415e-33,3.1720658023686032e-18,0.006666666828095913,-4.669583514995586e-20,-4.560093275001213e-18,-0.006666666828095913,-0.0033333334140479565,-2.1945436885362107e-21,5.3904638255760204e-21,-2.03522619839844e-21,2.6443432606717365e-20,2.2204459996194763e-18,-0.0,5.421010862427522e-20,1.1555579666323415e-33,0.0033333334140479565,8.38002267540238e-20,0.0031746032182127237,2.1511300995945167e-19,-6.152704640199572e-18,-6.461883660066274e-18,-0.0063492064364254475,-9.369613738881659e-20,-1.3681211902457621e-21,-2.4924187780380152e-20,1.0937875155743748e-19,3.1720658023686032e-18,-0.0,-9.434526091216905e-20,3.1720658023686032e-18,8.38002267540238e-20,0.0015873016091063619,5.0,3.0,3.0,6.0,0.1160052940249443,-0.03333333507180214,-0.04801587387919426,-0.04801587387919426,-0.02896825410425663,0.0026455025654286146,0.0055555556900799274,0.0055555556900799274,0.0031746032182127237,0.0055555556900799274,0.008333333767950535,0.004761904943734407,0.0055555556900799274,0.004761904943734407,0.0019841270986944437,-0.03333333507180214,0.03253968432545662,0.0055555556900799274,0.0055555556900799274,0.0031746032182127237,-0.005291005130857229,-0.0027777778450399637,-0.0027777778450399637,-0.0015873016091063619,-3.851859888774472e-34,-0.0,1.0842021724855044e-19,-3.920376056570545e-34,1.4687103963753682e-34,-1.2839936907748514e-19,-0.04801587387919426,0.0055555556900799274,0.10357142984867096,0.008333333767950535,0.004761904943734407,-0.0,-0.0055555556900799274,6.5876869971082695e-21,4.678519327433146e-20,-0.03333333507180214,-0.008333333767950535,-0.004761904943734407,-1.8503717628539684e-17,-3.1720658023686032e-18,-3.537564034626437e-18,-0.04801587387919426,0.0055555556900799274,0.008333333767950535,0.10357142984867096,0.004761904943734407,-9.356704295861312e-35,-1.0333605534185645e-34,-0.0055555556900799274,2.041410784918506e-34,-2.2468799623006497e-17,-0.008333333767950535,5.270149840024686e-21,-0.03333333507180214,-0.004761904943734407,-3.6556089118923484e-18,-0.02896825410425663,0.0031746032182127237,0.004761904943734407,0.004761904943734407,0.02250000089406967,1.0842021724855044e-19,-5.421010862427522e-20,-5.421010862427522e-20,-0.0012698412174358964,-1.0672679655491963e-17,-0.0,-0.0019047618843615055,-9.086646857705238e-18,-0.0019047618843615055,-0.0029761905316263437,0.0026455025654286146,-0.005291005130857229,-0.0,-9.356704295861312e-35,1.0842021724855044e-19,0.0013227512827143073,-0.0,-0.0,-1.0842021724855044e-19,1.1421337293104548e-34,0.0,-1.2720218669952803e-20,8.440327241279902e-35,0.0,2.269172747350183e-20,0.0055555556900799274,-0.0027777778450399637,-0.0055555556900799274,-1.0333605534185645e-34,-5.421010862427522e-20,-0.0,0.0027777778450399637,-0.0,1.9390173282428606e-22,5.750991317027844e-35,-0.0,-3.279195979753089e-21,5.166802767092823e-35,0.0,1.0522389281083038e-20,0.0055555556900799274,-0.0027777778450399637,6.5876869971082695e-21,-0.0055555556900799274,-5.421010862427522e-20,-0.0,-0.0,0.0027777778450399637,-0.0,3.343579173529725e-35,-0.0,-2.635074920012343e-21,4.480289385423014e-35,0.0,1.047515678343012e-20,0.0031746032182127237,-0.0015873016091063619,4.678519327433146e-20,2.041410784918506e-34,-0.0012698412174358964,-1.0842021724855044e-19,1.9390173282428606e-22,-0.0,0.0006349206087179482,-8.10351481940196e-35,-0.0,-1.8869198231510713e-20,-2.863501655729763e-35,-5.874841815090213e-35,3.4771251945973266e-21,0.0055555556900799274,-3.851859888774472e-34,-0.03333333507180214,-2.2468799623006497e-17,-1.0672679655491963e-17,1.1421337293104548e-34,5.750991317027844e-35,3.343579173529725e-35,-8.10351481940196e-35,0.01666666753590107,-0.0,-1.925929944387236e-34,9.251858814269842e-18,1.5860329011843016e-18,1.817329454259109e-18,0.008333333767950535,-0.0,-0.008333333767950535,-0.008333333767950535,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,1.0842021724855044e-19,-0.004761904943734407,5.270149840024686e-21,-0.0019047618843615055,-1.2720218669952803e-20,-3.279195979753089e-21,-2.635074920012343e-21,-1.8869198231510713e-20,-1.925929944387236e-34,-0.0,0.0019047618843615055,-3.779498339165523e-34,-0.0,-4.7255859042874135e-20,0.0055555556900799274,-3.920376056570545e-34,-1.8503717628539684e-17,-0.03333333507180214,-9.086646857705238e-18,8.440327241279902e-35,5.166802767092823e-35,4.480289385423014e-35,-2.863501655729763e-35,9.251858814269842e-18,-0.0,-3.779498339165523e-34,0.01666666753590107,9.62964972193618e-34,1.817329454259109e-18,0.004761904943734407,1.4687103963753682e-34,-3.1720658023686032e-18,-0.004761904943734407,-0.0019047618843615055,0.0,0.0,0.0,-5.874841815090213e-35,1.5860329011843016e-18,-0.0,-0.0,9.62964972193618e-34,0.0019047618843615055,3.5249049168625725e-35,0.0019841270986944437,-1.2839936907748514e-19,-3.537564034626437e-18,-3.6556089118923484e-18,-0.0029761905316263437,2.269172747350183e-20,1.0522389281083038e-20,1.047515678343012e-20,3.4771251945973266e-21,1.817329454259109e-18,-0.0,-4.7255859042874135e-20,1.817329454259109e-18,3.5249049168625725e-35,0.0005952381179668009,5.0,3.0,3.0,7.0,0.10241874307394028,-0.028911564499139786,-0.0416666679084301,-0.0416666679084301,-0.02222222276031971,0.0022675737272948027,0.004761904943734407,0.004761904943734407,0.0023809524718672037,0.004761904943734407,0.0071428571827709675,0.0035714285913854837,0.004761904943734407,0.0035714285913854837,0.0013227512827143073,-0.028911564499139786,0.02806122414767742,0.004761904943734407,0.004761904943734407,0.0023809524718672037,-0.004535147454589605,-0.0023809524718672037,-0.0023809524718672037,-0.0011904762359336019,2.8888949165808538e-34,0.0,4.0657581468206416e-20,-2.156874865471727e-34,1.1445526762792563e-34,7.506015239125755e-20,-0.0416666679084301,0.004761904943734407,0.0892857164144516,0.0071428571827709675,0.0035714285913854837,-0.0,-0.004761904943734407,-0.0,4.0657581468206416e-20,-0.02857142873108387,-0.0071428571827709675,-0.0035714285913854837,-1.5860329632228476e-17,-2.3790494034752407e-18,-2.2221311733224e-18,-0.0416666679084301,0.004761904943734407,0.0071428571827709675,0.0892857164144516,0.0035714285913854837,-0.0,-0.0,-0.004761904943734407,-2.933638720033025e-35,-1.9428902600067994e-17,-0.0071428571827709675,-3.501690912335311e-35,-0.02857142873108387,-0.0035714285913854837,-2.290936470264867e-18,-0.02222222276031971,0.0023809524718672037,0.0035714285913854837,0.0035714285913854837,0.014285714365541935,0.0,-0.0,-0.0,-0.0007936508045531809,-8.062334215929798e-18,-0.0,-0.0011904762359336019,-6.872809203999448e-18,-0.0011904762359336019,-0.0015873016091063619,0.0022675737272948027,-0.004535147454589605,-0.0,-0.0,0.0,0.0011337868636474013,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.0023809524718672037,-0.004761904943734407,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.0023809524718672037,-0.0,-0.004761904943734407,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,4.0657581468206416e-20,-2.933638720033025e-35,-0.0007936508045531809,-0.0,-0.0,-0.0,0.00039682540227659047,-9.62964972193618e-35,-0.0,-1.3552527156068805e-20,7.189582884905757e-35,-3.815175396273571e-35,-2.5020050258556805e-20,0.004761904943734407,2.8888949165808538e-34,-0.02857142873108387,-1.9428902600067994e-17,-8.062334215929798e-18,-0.0,-0.0,-0.0,-9.62964972193618e-35,0.014285714365541935,-0.0,-9.62964972193618e-35,7.930164816114238e-18,1.1895247017376204e-18,1.1454682351324336e-18,0.0071428571827709675,0.0,-0.0071428571827709675,-0.0071428571827709675,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0071428571827709675,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,4.0657581468206416e-20,-0.0035714285913854837,-3.501690912335311e-35,-0.0011904762359336019,-0.0,-0.0,-0.0,-1.3552527156068805e-20,-9.62964972193618e-35,-0.0,0.0011904762359336019,1.7508454561676554e-35,-0.0,-2.2935046204976e-20,0.004761904943734407,-2.156874865471727e-34,-1.5860329632228476e-17,-0.02857142873108387,-6.872809203999448e-18,-0.0,-0.0,-0.0,7.189582884905757e-35,7.930164816114238e-18,-0.0,1.7508454561676554e-35,0.014285714365541935,8.666684749742561e-34,1.1454682351324336e-18,0.0035714285913854837,1.1445526762792563e-34,-2.3790494034752407e-18,-0.0035714285913854837,-0.0011904762359336019,-0.0,-0.0,-0.0,-3.815175396273571e-35,1.1895247017376204e-18,-0.0,-0.0,8.666684749742561e-34,0.0011904762359336019,1.9075876981367854e-35,0.0013227512827143073,7.506015239125755e-20,-2.2221311733224e-18,-2.290936470264867e-18,-0.0015873016091063619,-0.0,-0.0,-0.0,-2.5020050258556805e-20,1.1454682351324336e-18,-0.0,-2.2935046204976e-20,1.1454682351324336e-18,1.9075876981367854e-35,0.00026455026818439364,5.0,3.0,3.0,8.0,0.09169973433017731,-0.025529099628329277,-0.03680555522441864,-0.03680555522441864,-0.017592592164874077,0.0019841270986944437,0.004166666883975267,0.004166666883975267,0.0018518518190830946,0.004166666883975267,0.0062500000931322575,0.0027777778450399637,0.004166666883975267,0.0027777778450399637,0.0009259259095415473,-0.025529099628329277,0.024669311940670013,0.004166666883975267,0.004166666883975267,0.0018518518190830946,-0.003968254197388887,-0.0020833334419876337,-0.0020833334419876337,-0.0009259259095415473,-1.1275702593849246e-17,0.0,9.75781955236954e-19,8.673617379884035e-19,1.1926223897340549e-18,5.204170427930421e-18,-0.03680555522441864,0.004166666883975267,0.07847221940755844,0.0062500000931322575,0.0027777778450399637,-1.2598787909795165e-18,-0.004166666883975267,-3.2526065174565133e-18,1.1926223897340549e-18,-0.02500000037252903,-0.0062500000931322575,-0.0027777778450399637,2.688821387764051e-17,4.119968255444917e-18,8.40256683676266e-18,-0.03680555522441864,0.004166666883975267,0.0062500000931322575,0.07847221940755844,0.0027777778450399637,6.693435915347937e-19,-3.1765164476544448e-18,-0.004166666883975267,2.656295322589486e-18,2.117933589023841e-17,-0.0062500000931322575,3.0357660829594124e-18,-0.02500000037252903,-0.0027777778450399637,8.782037597132586e-18,-0.017592592164874077,0.0018518518190830946,0.0027777778450399637,0.0027777778450399637,0.009656084701418877,7.48099499014998e-18,6.091609493746712e-18,7.2757863694266e-18,-0.0005291005363687873,9.971395932169507e-18,1.2976274263875576e-17,-0.0007936508045531809,1.6355920006988596e-17,-0.0007936508045531809,-0.0009259259095415473,0.0019841270986944437,-0.003968254197388887,-1.2598787909795165e-18,6.693435915347937e-19,7.48099499014998e-18,0.0009920635493472219,-2.1913508521511127e-19,-2.7446535148514815e-19,-8.665851187907928e-19,1.1356399852868082e-18,1.7235145582912542e-19,-2.304160193127446e-19,2.429886476356678e-19,-1.9773456567517197e-19,-7.318364664277155e-19,0.004166666883975267,-0.0020833334419876337,-0.004166666883975267,-3.1765164476544448e-18,6.091609493746712e-18,-2.1913508521511127e-19,0.0020833334419876337,4.87890977618477e-19,-3.011986656601256e-19,4.467963552736282e-18,9.311441874562955e-19,4.096327381839363e-19,7.314704907054491e-19,-1.2739545615718133e-19,-8.131516293641283e-19,0.004166666883975267,-0.0020833334419876337,-3.2526065174565133e-18,-0.004166666883975267,7.2757863694266e-18,-2.7446535148514815e-19,4.87890977618477e-19,0.0020833334419876337,-2.791384049581899e-19,1.711969495084275e-18,-8.884001462905007e-19,-2.082257103088791e-19,5.142880687238458e-19,-2.4624727396003215e-19,-8.673617379884035e-19,0.0018518518190830946,-0.0009259259095415473,1.1926223897340549e-18,2.656295322589486e-18,-0.0005291005363687873,-8.665851187907928e-19,-3.011986656601256e-19,-2.791384049581899e-19,0.00026455026818439364,-5.421010862427522e-20,-2.998500252195403e-19,-2.731034050689281e-20,-8.124677060939118e-19,-3.307355340379411e-20,-1.3552527156068805e-19,0.004166666883975267,-1.1275702593849246e-17,-0.02500000037252903,2.117933589023841e-17,9.971395932169507e-18,1.1356399852868082e-18,4.467963552736282e-18,1.711969495084275e-18,-5.421010862427522e-20,0.012500000186264515,2.7997462251893508e-18,5.9744587987229705e-18,-1.1815612478649345e-17,-1.2266638704703325e-18,-1.951563910473908e-18,0.0062500000931322575,0.0,-0.0062500000931322575,-0.0062500000931322575,1.2976274263875576e-17,1.7235145582912542e-19,9.311441874562955e-19,-8.884001462905007e-19,-2.998500252195403e-19,2.7997462251893508e-18,0.0062500000931322575,-5.963111948670274e-19,-2.3105987602204057e-19,-1.2182718129632523e-18,-1.3552527156068805e-18,0.0027777778450399637,9.75781955236954e-19,-0.0027777778450399637,3.0357660829594124e-18,-0.0007936508045531809,-2.304160193127446e-19,4.096327381839363e-19,-2.082257103088791e-19,-2.731034050689281e-20,5.9744587987229705e-18,-5.963111948670274e-19,0.0007936508045531809,-9.494665482170748e-19,-2.0081319943694936e-20,-2.710505431213761e-19,0.004166666883975267,8.673617379884035e-19,2.688821387764051e-17,-0.02500000037252903,1.6355920006988596e-17,2.429886476356678e-19,7.314704907054491e-19,5.142880687238458e-19,-8.124677060939118e-19,-1.1815612478649345e-17,-2.3105987602204057e-19,-9.494665482170748e-19,0.012500000186264515,2.927345865710862e-18,-2.168404344971009e-18,0.0027777778450399637,1.1926223897340549e-18,4.119968255444917e-18,-0.0027777778450399637,-0.0007936508045531809,-1.9773456567517197e-19,-1.2739545615718133e-19,-2.4624727396003215e-19,-3.307355340379411e-20,-1.2266638704703325e-18,-1.2182718129632523e-18,-2.0081319943694936e-20,2.927345865710862e-18,0.0007936508045531809,-2.710505431213761e-19,0.0009259259095415473,5.204170427930421e-18,8.40256683676266e-18,8.782037597132586e-18,-0.0009259259095415473,-7.318364664277155e-19,-8.131516293641283e-19,-8.673617379884035e-19,-1.3552527156068805e-19,-1.951563910473908e-18,-1.3552527156068805e-18,-2.710505431213761e-19,-2.168404344971009e-18,-2.710505431213761e-19,0.00013227513409219682,5.0,3.0,4.0,3.0,0.1582142859697342,-0.04809523746371269,-0.06916666775941849,-0.05666666850447655,-0.06916666775941849,0.003968254197388887,0.008333333767950535,0.006666666828095913,0.008333333767950535,0.008333333767950535,0.009999999776482582,0.012500000186264515,0.0055555556900799274,0.009999999776482582,0.008333333767950535,-0.04809523746371269,0.047857142984867096,0.008333333767950535,0.006666666828095913,0.008333333767950535,-0.007936508394777775,-0.004166666883975267,-0.0033333334140479565,-0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.06916666775941849,0.008333333767950535,0.1525000035762787,0.009999999776482582,0.012500000186264515,-0.0,-0.008333333767950535,-0.0,-0.0,-0.05000000074505806,-0.009999999776482582,-0.012500000186264515,-1.2952602009105534e-17,-6.661337998858429e-18,-2.7755575615628914e-17,-0.05666666850447655,0.006666666828095913,0.009999999776482582,0.07666666805744171,0.009999999776482582,-9.074619806695082e-20,-0.0,-0.004444444552063942,3.9474596869981946e-19,-2.2759571806292362e-17,-0.006666666828095913,-0.0,-0.01666666753590107,-0.006666666828095913,-1.263410014130668e-32,-0.06916666775941849,0.008333333767950535,0.012500000186264515,0.009999999776482582,0.1525000035762787,-2.168404344971009e-19,-0.0,3.9474596869981946e-19,-0.008333333767950535,-3.275157777060424e-17,-0.0,-0.012500000186264515,-8.484363371878117e-33,-0.009999999776482582,-0.05000000074505806,0.003968254197388887,-0.007936508394777775,-0.0,-9.074619806695082e-20,-2.168404344971009e-19,0.0019841270986944437,-0.0,-0.0,1.0842021724855044e-19,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.004166666883975267,-0.008333333767950535,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0033333334140479565,-0.0,-0.004444444552063942,3.9474596869981946e-19,-0.0,-0.0,0.002222222276031971,-1.9737298434990973e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.004166666883975267,-0.0,3.9474596869981946e-19,-0.008333333767950535,1.0842021724855044e-19,-0.0,-1.9737298434990973e-19,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.05000000074505806,-2.2759571806292362e-17,-3.275157777060424e-17,-0.0,-0.0,-0.0,-0.0,0.02500000037252903,-0.0,-0.0,6.476301004552767e-18,3.3306689994292145e-18,1.3877787807814457e-17,0.009999999776482582,-0.0,-0.009999999776482582,-0.006666666828095913,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.012500000186264515,-0.0,-0.012500000186264515,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-1.2952602009105534e-17,-0.01666666753590107,-8.484363371878117e-33,-0.0,-0.0,-0.0,-0.0,6.476301004552767e-18,-0.0,-0.0,0.0055555556900799274,8.628166187589015e-34,3.595069107075512e-33,0.009999999776482582,-0.0,-6.661337998858429e-18,-0.006666666828095913,-0.009999999776482582,-0.0,-0.0,-0.0,-0.0,3.3306689994292145e-18,-0.0,-0.0,8.628166187589015e-34,0.006666666828095913,1.8488928200801433e-33,0.008333333767950535,-0.0,-2.7755575615628914e-17,-1.263410014130668e-32,-0.05000000074505806,-0.0,-0.0,-0.0,-0.0,1.3877787807814457e-17,-0.0,-0.0,3.595069107075512e-33,1.8488928200801433e-33,0.02500000037252903,5.0,3.0,4.0,4.0,0.12861904501914978,-0.03732142969965935,-0.05375000089406967,-0.04399999976158142,-0.04399999976158142,0.0029761905316263437,0.0062500000931322575,0.004999999888241291,0.004999999888241291,0.0062500000931322575,0.007499999832361937,0.007499999832361937,0.004166666883975267,0.006000000052154064,0.004166666883975267,-0.03732142969965935,0.03651785850524902,0.0062500000931322575,0.004999999888241291,0.004999999888241291,-0.0059523810632526875,-0.0031250000465661287,-0.0024999999441206455,-0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.05375000089406967,0.0062500000931322575,0.11625000089406967,0.007499999832361937,0.007499999832361937,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.03750000149011612,-0.007499999832361937,-0.007499999832361937,-9.714451300033997e-18,-3.996802716596996e-18,-9.714451300033997e-18,-0.04399999976158142,0.004999999888241291,0.007499999832361937,0.05849999934434891,0.006000000052154064,8.072113739667465e-20,-0.0,-0.0033333334140479565,3.9474596869981946e-19,-1.7569279814679355e-17,-0.004999999888241291,-0.0,-0.012500000186264515,-0.004000000189989805,-4.551357638698444e-33,-0.04399999976158142,0.004999999888241291,0.007499999832361937,0.006000000052154064,0.05849999934434891,-0.0,-0.0,3.9474596869981946e-19,-0.0033333334140479565,-1.7569279814679355e-17,-0.0,-0.004999999888241291,-4.551357638698444e-33,-0.004000000189989805,-0.012500000186264515,0.0029761905316263437,-0.0059523810632526875,-0.0,8.072113739667465e-20,-0.0,0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0031250000465661287,-0.0062500000931322575,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,-0.0,-0.0033333334140479565,3.9474596869981946e-19,-0.0,-0.0,0.0016666667070239782,-1.9737298434990973e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,-0.0,3.9474596869981946e-19,-0.0033333334140479565,-0.0,-0.0,-1.9737298434990973e-19,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,-0.03750000149011612,-1.7569279814679355e-17,-1.7569279814679355e-17,-0.0,-0.0,-0.0,-0.0,0.01875000074505806,-0.0,-0.0,4.8572256500169986e-18,1.998401358298498e-18,4.8572256500169986e-18,0.007499999832361937,-0.0,-0.007499999832361937,-0.004999999888241291,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.0,-0.007499999832361937,-0.0,-0.004999999888241291,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-9.714451300033997e-18,-0.012500000186264515,-4.551357638698444e-33,-0.0,-0.0,-0.0,-0.0,4.8572256500169986e-18,-0.0,-0.0,0.004166666883975267,5.176899620717913e-34,1.2582742242106277e-33,0.006000000052154064,-0.0,-3.996802716596996e-18,-0.004000000189989805,-0.004000000189989805,-0.0,-0.0,-0.0,-0.0,1.998401358298498e-18,-0.0,-0.0,5.176899620717913e-34,0.0026666666381061077,5.176899620717913e-34,0.004166666883975267,-0.0,-9.714451300033997e-18,-4.551357638698444e-33,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,4.8572256500169986e-18,-0.0,-0.0,1.2582742242106277e-33,5.176899620717913e-34,0.004166666883975267,5.0,3.0,4.0,5.0,0.10852380841970444,-0.030523808673024178,-0.04399999976158142,-0.035999998450279236,-0.030523808673024178,0.0023809524718672037,0.004999999888241291,0.004000000189989805,0.0033333334140479565,0.004999999888241291,0.006000000052154064,0.004999999888241291,0.0033333334140479565,0.004000000189989805,0.0023809524718672037,-0.030523808673024178,0.029547618702054024,0.004999999888241291,0.004000000189989805,0.0033333334140479565,-0.004761904943734407,-0.0024999999441206455,-0.0020000000949949026,-0.0016666667070239782,5.7777898331617076e-34,-0.0,-0.0,9.290228483201128e-34,2.9520357077307096e-19,1.1504610197616212e-19,-0.04399999976158142,0.004999999888241291,0.09399999678134918,0.006000000052154064,0.004999999888241291,-0.0,-0.004999999888241291,0.0,5.7777898331617076e-34,-0.029999999329447746,-0.006000000052154064,-0.004999999888241291,-7.77156120546332e-18,-2.230854413267231e-18,-4.7580988069504814e-18,-0.035999998450279236,0.004000000189989805,0.006000000052154064,0.047333333641290665,0.004000000189989805,-1.9570640928607145e-20,-0.0,-0.0026666666381061077,4.2566145635307674e-20,-1.43218762632758e-17,-0.004000000189989805,4.336808689942018e-19,-0.009999999776482582,-0.0026666666381061077,-8.66741766119295e-18,-0.030523808673024178,0.0033333334140479565,0.004999999888241291,0.004000000189989805,0.029547618702054024,-0.0,-0.0,-2.526374251377633e-19,-0.0016666667070239782,-1.1514598972199461e-17,-0.0,-0.0024999999441206455,-1.571991241452515e-17,-0.0020000000949949026,-0.004761904943734407,0.0023809524718672037,-0.004761904943734407,-0.0,-1.9570640928607145e-20,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,0.0,0.0,0.0,-0.0,-9.417867346147625e-37,4.6830008176982845e-36,0.004999999888241291,-0.0024999999441206455,-0.004999999888241291,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004000000189989805,-0.0020000000949949026,0.0,-0.0026666666381061077,-2.526374251377633e-19,-0.0,-0.0,0.0013333333190530539,1.2631871256888164e-19,-0.0,-0.0,0.0,-0.0,-2.2373840316012202e-35,-4.321944901031853e-36,0.0033333334140479565,-0.0016666667070239782,5.7777898331617076e-34,4.2566145635307674e-20,-0.0016666667070239782,-0.0,-0.0,1.2631871256888164e-19,0.0008333333535119891,-2.8888949165808538e-34,-0.0,0.0,-4.645114241600564e-34,-1.4760178538653548e-19,-5.752305098808106e-20,0.004999999888241291,5.7777898331617076e-34,-0.029999999329447746,-1.43218762632758e-17,-1.1514598972199461e-17,0.0,-0.0,-0.0,-2.8888949165808538e-34,0.014999999664723873,-0.0,-1.925929944387236e-34,3.88578060273166e-18,1.3322676411307164e-18,2.3790494034752407e-18,0.006000000052154064,-0.0,-0.006000000052154064,-0.004000000189989805,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.004000000189989805,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.004999999888241291,4.336808689942018e-19,-0.0024999999441206455,0.0,-0.0,0.0,0.0,-1.925929944387236e-34,-0.0,0.0024999999441206455,-6.2592723192585165e-34,-2.168404344971009e-19,-0.0,0.0033333334140479565,9.290228483201128e-34,-7.77156120546332e-18,-0.009999999776482582,-1.571991241452515e-17,-0.0,-0.0,-0.0,-4.645114241600564e-34,3.88578060273166e-18,-0.0,-6.2592723192585165e-34,0.0033333334140479565,2.0210994011021063e-18,3.1720658023686032e-18,0.004000000189989805,2.9520357077307096e-19,-2.230854413267231e-18,-0.0026666666381061077,-0.0020000000949949026,-9.417867346147625e-37,-0.0,-2.2373840316012202e-35,-1.4760178538653548e-19,1.3322676411307164e-18,-0.0,-2.168404344971009e-19,2.0210994011021063e-18,0.0013333333190530539,-4.243898212576413e-19,0.0023809524718672037,1.1504610197616212e-19,-4.7580988069504814e-18,-8.66741766119295e-18,-0.004761904943734407,4.6830008176982845e-36,-0.0,-4.321944901031853e-36,-5.752305098808106e-20,2.3790494034752407e-18,-0.0,-0.0,3.1720658023686032e-18,-4.243898212576413e-19,0.0011904762359336019,5.0,3.0,4.0,6.0,0.09392856806516647,-0.025833332911133766,-0.037261903285980225,-0.030476190149784088,-0.022440476343035698,0.0019841270986944437,0.004166666883975267,0.0033333334140479565,0.0023809524718672037,0.004166666883975267,0.004999999888241291,0.0035714285913854837,0.0027777778450399637,0.0028571428265422583,0.0014880952658131719,-0.025833332911133766,0.024821428582072258,0.004166666883975267,0.0033333334140479565,0.0023809524718672037,-0.003968254197388887,-0.0020833334419876337,-0.0016666667070239782,-0.0011904762359336019,-4.81482486096809e-34,-0.0,-3.3881317890172014e-20,-0.0,-3.9902264756308347e-19,-4.609188021169278e-20,-0.037261903285980225,0.004166666883975267,0.07892857491970062,0.004999999888241291,0.0035714285913854837,-0.0,-0.004166666883975267,3.74486391627409e-36,-3.3881317890172014e-20,-0.02500000037252903,-0.004999999888241291,-0.0035714285913854837,-6.476301004552767e-18,-2.513103120726197e-18,-2.849032334422251e-18,-0.030476190149784088,0.0033333334140479565,0.004999999888241291,0.03976190462708473,0.0028571428265422583,6.040567848760033e-20,-0.0,-0.002222222276031971,-2.93757064526263e-19,-1.2093500496714085e-17,-0.0033333334140479565,-6.098637220230962e-19,-0.008333333767950535,-0.0019047618843615055,-1.095809998021461e-18,-0.022440476343035698,0.0023809524718672037,0.0035714285913854837,0.0028571428265422583,0.01716071367263794,-0.0,-0.0,1.0526558949916901e-19,-0.0009523809421807528,-8.242414744005043e-18,-0.0,-0.0014285714132711291,-2.135214407594659e-33,-0.0011428571306169033,-0.0022321429569274187,0.0019841270986944437,-0.003968254197388887,-0.0,6.040567848760033e-20,-0.0,0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,3.8939355266801425e-36,-9.346570619590949e-21,0.004166666883975267,-0.0020833334419876337,-0.004166666883975267,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,3.74486391627409e-36,-0.002222222276031971,1.0526558949916901e-19,-0.0,-0.0,0.0011111111380159855,-5.2632794749584506e-20,-0.0,-0.0,-1.4979455485730157e-36,-0.0,-1.7641409401239286e-35,-3.8754514806839055e-36,0.0023809524718672037,-0.0011904762359336019,-3.3881317890172014e-20,-2.93757064526263e-19,-0.0009523809421807528,-0.0,-0.0,-5.2632794749584506e-20,0.0004761904710903764,1.925929944387236e-34,-0.0,1.3552527156068805e-20,0.0,1.596090616101728e-19,3.4699784025724824e-20,0.004166666883975267,-4.81482486096809e-34,-0.02500000037252903,-1.2093500496714085e-17,-8.242414744005043e-18,-0.0,-0.0,-0.0,1.925929944387236e-34,0.012500000186264515,-0.0,2.8888949165808538e-34,3.2381505022763835e-18,9.516196993515503e-19,1.3629969872967551e-18,0.004999999888241291,-0.0,-0.004999999888241291,-0.0033333334140479565,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-3.3881317890172014e-20,-0.0035714285913854837,-6.098637220230962e-19,-0.0014285714132711291,-0.0,-0.0,-1.4979455485730157e-36,1.3552527156068805e-20,2.8888949165808538e-34,-0.0,0.0014285714132711291,0.0,2.439454888092385e-19,4.9215320667041547e-20,0.0027777778450399637,-0.0,-6.476301004552767e-18,-0.008333333767950535,-2.135214407594659e-33,-0.0,-0.0,-0.0,0.0,3.2381505022763835e-18,-0.0,0.0,0.0027777778450399637,2.465190273714364e-34,3.5308716412395125e-34,0.0028571428265422583,-3.9902264756308347e-19,-2.513103120726197e-18,-0.0019047618843615055,-0.0011428571306169033,3.8939355266801425e-36,-0.0,-1.7641409401239286e-35,1.596090616101728e-19,9.516196993515503e-19,-0.0,2.439454888092385e-19,2.465190273714364e-34,0.0007619047537446022,4.383239888688268e-19,0.0014880952658131719,-4.609188021169278e-20,-2.849032334422251e-18,-1.095809998021461e-18,-0.0022321429569274187,-9.346570619590949e-21,-0.0,-3.8754514806839055e-36,3.4699784025724824e-20,1.3629969872967551e-18,-0.0,4.9215320667041547e-20,3.5308716412395125e-34,4.383239888688268e-19,0.00044642857392318547,5.0,3.0,4.0,7.0,0.08282596617937088,-0.022397959604859352,-0.03232142701745033,-0.026428570970892906,-0.017202381044626236,0.001700680237263441,0.0035714285913854837,0.0028571428265422583,0.0017857142956927419,0.0035714285913854837,0.004285714123398066,0.0026785715017467737,0.0023809524718672037,0.002142857061699033,0.0009920635493472219,-0.022397959604859352,0.021403061226010323,0.0035714285913854837,0.0028571428265422583,0.0017857142956927419,-0.003401360474526882,-0.0017857142956927419,-0.0014285714132711291,-0.0008928571478463709,-2.2657613523989076e-17,9.516196993515503e-19,6.150911416029134e-19,5.400064167775842e-18,3.501126728643476e-18,2.04708135093755e-18,-0.03232142701745033,0.0035714285913854837,0.06803571432828903,0.004285714123398066,0.0026785715017467737,-1.4090877805414242e-17,-0.0035714285913854837,1.268826300267926e-18,8.13345241326254e-19,-0.02142857201397419,-0.004285714123398066,-0.0026785715017467737,2.2997477222268738e-17,9.788719711332071e-18,7.873055439442964e-18,-0.026428570970892906,0.0028571428265422583,0.004285714123398066,0.034285712987184525,0.002142857061699033,5.5507553822773834e-18,1.284686682012533e-17,-0.0019047618843615055,-3.677865757236736e-19,4.7422383631673284e-17,-0.0028571428265422583,-6.960799171641887e-20,-0.0071428571827709675,-0.0014285714132711291,3.239467787401874e-19,-0.017202381044626236,0.0017857142956927419,0.0026785715017467737,0.002142857061699033,0.010892856866121292,3.686357696802782e-18,7.969814891596355e-18,-1.9837998627281355e-19,-0.0005952381179668009,2.9658815634717474e-17,1.3367990916226468e-19,-0.0008928571478463709,-8.919546447802176e-19,-0.0007142857066355646,-0.0011904762359336019,0.001700680237263441,-0.003401360474526882,-1.4090877805414242e-17,5.5507553822773834e-18,3.686357696802782e-18,0.0008503401186317205,1.3810354183122756e-18,-1.697522733987248e-19,-1.0609516764302874e-19,5.664403380997269e-18,-3.158318589131307e-33,-2.0821964899657044e-33,-7.552537427739386e-19,-6.797283788363024e-19,-3.146890767220705e-19,0.0035714285913854837,-0.0017857142956927419,-0.0035714285913854837,1.284686682012533e-17,7.969814891596355e-18,1.3810354183122756e-18,0.0017857142956927419,-6.34413150133963e-19,-3.965082252960754e-19,4.4751111078106764e-32,-9.516196993515503e-19,-5.947623508688102e-19,-2.3790494034752407e-18,-9.516196993515503e-19,-7.930164505921508e-19,0.0028571428265422583,-0.0014285714132711291,1.268826300267926e-18,-0.0019047618843615055,-1.9837998627281355e-19,-1.697522733987248e-19,-6.34413150133963e-19,0.0009523809421807528,9.918999313640677e-20,-1.1307772600200615e-33,3.3808324147377693e-34,1.7644275816663117e-34,9.959784555299734e-34,4.665156420282084e-34,3.0402313194658287e-34,0.0017857142956927419,-0.0008928571478463709,8.13345241326254e-19,-3.677865757236736e-19,-0.0005952381179668009,-1.0609516764302874e-19,-3.965082252960754e-19,9.918999313640677e-20,0.00029761905898340046,-1.1555579666323415e-33,2.1411067107814e-34,-6.776263578034403e-21,6.636586261240797e-34,5.646886099617051e-20,1.5637531411598003e-21,0.0035714285913854837,-2.2657613523989076e-17,-0.02142857201397419,4.7422383631673284e-17,2.9658815634717474e-17,5.664403380997269e-18,4.4751111078106764e-32,-1.1307772600200615e-33,-1.1555579666323415e-33,0.010714286006987095,-4.7580988069504814e-18,-2.9738117026452626e-18,-9.119689414454282e-18,-4.0443837997922714e-18,-3.105981102460823e-18,0.004285714123398066,9.516196993515503e-19,-0.004285714123398066,-0.0028571428265422583,1.3367990916226468e-19,-3.158318589131307e-33,-9.516196993515503e-19,3.3808324147377693e-34,2.1411067107814e-34,-4.7580988069504814e-18,0.0028571428265422583,-1.3367990916226468e-19,5.3177678331490826e-33,2.2539255617032863e-33,1.740424262529009e-33,0.0026785715017467737,6.150911416029134e-19,-0.0026785715017467737,-6.960799171641887e-20,-0.0008928571478463709,-2.0821964899657044e-33,-5.947623508688102e-19,1.7644275816663117e-34,-6.776263578034403e-21,-2.9738117026452626e-18,-1.3367990916226468e-19,0.0008928571478463709,3.370377402677663e-33,6.776263578034403e-20,-2.5020050258556805e-20,0.0023809524718672037,5.400064167775842e-18,2.2997477222268738e-17,-0.0071428571827709675,-8.919546447802176e-19,-7.552537427739386e-19,-2.3790494034752407e-18,9.959784555299734e-34,6.636586261240797e-34,-9.119689414454282e-18,5.3177678331490826e-33,3.370377402677663e-33,0.0023809524718672037,5.946364643193373e-19,-4.4056469836361075e-20,0.002142857061699033,3.501126728643476e-18,9.788719711332071e-18,-0.0014285714132711291,-0.0007142857066355646,-6.797283788363024e-19,-9.516196993515503e-19,4.665156420282084e-34,5.646886099617051e-20,-4.0443837997922714e-18,2.2539255617032863e-33,6.776263578034403e-20,5.946364643193373e-19,0.0004761904710903764,-1.2266774414022572e-19,0.0009920635493472219,2.04708135093755e-18,7.873055439442964e-18,3.239467787401874e-19,-0.0011904762359336019,-3.146890767220705e-19,-7.930164505921508e-19,3.0402313194658287e-34,1.5637531411598003e-21,-3.105981102460823e-18,1.740424262529009e-33,-2.5020050258556805e-20,-4.4056469836361075e-20,-1.2266774414022572e-19,0.00019841270113829523,5.0,3.0,4.0,8.0,0.07408729940652847,-0.019771825522184372,-0.028541667386889458,-0.023333333432674408,-0.013611110858619213,0.0014880952658131719,0.0031250000465661287,0.0024999999441206455,0.0013888889225199819,0.0031250000465661287,0.0037499999161809683,0.0020833334419876337,0.0020833334419876337,0.0016666667070239782,0.0006944444612599909,-0.019771825522184372,0.018814483657479286,0.0031250000465661287,0.0024999999441206455,0.0013888889225199819,-0.0029761905316263437,-0.0015625000232830644,-0.0012499999720603228,-0.0006944444612599909,-8.673617379884035e-19,-2.3852447794681098e-18,-1.4094628242311558e-18,4.336808689942018e-19,-2.6020852139652106e-18,-3.3610267347050637e-18,-0.028541667386889458,0.0031250000465661287,0.05979166552424431,0.0037499999161809683,0.0020833334419876337,-4.998810433154944e-18,-0.0031250000465661287,1.5178830414797062e-18,-3.5236570605778894e-19,-0.01875000074505806,-0.0037499999161809683,-0.0020833334419876337,1.5612511283791264e-17,-1.951563910473908e-18,-4.662069341687669e-18,-0.023333333432674408,0.0024999999441206455,0.0037499999161809683,0.030138889327645302,0.0016666667070239782,-3.999261097377504e-18,-5.106654312311698e-19,-0.0016666667070239782,-4.0657581468206416e-20,1.8473790233977516e-17,-0.0024999999441206455,2.6291902682773483e-18,-0.0062500000931322575,-0.0011111111380159855,-4.336808689942018e-18,-0.013611110858619213,0.0013888889225199819,0.0020833334419876337,0.0016666667070239782,0.007361111231148243,-4.2825985813177425e-18,-4.277355083414769e-18,-2.464006022263265e-18,-0.00039682540227659047,-9.205168604594286e-18,-3.2461528543173746e-18,-0.0005952381179668009,-3.739608689506802e-18,-0.0004761904710903764,-0.0006944444612599909,0.0014880952658131719,-0.0029761905316263437,-4.998810433154944e-18,-3.999261097377504e-18,-4.2825985813177425e-18,0.0007440476329065859,5.331692416871929e-19,5.421010862427522e-20,-3.328987082749953e-20,8.409030219273996e-19,6.114052764921654e-19,3.402148106002971e-19,3.9638034834325354e-19,5.210088078032626e-19,4.336808689942018e-19,0.0031250000465661287,-0.0015625000232830644,-0.0031250000465661287,-5.106654312311698e-19,-4.277355083414769e-18,5.331692416871929e-19,0.0015625000232830644,-0.0,1.2687782203948213e-19,-1.7860039176665726e-18,-8.834984937003617e-20,4.4249196456737395e-20,-1.8099554492909284e-19,2.975636721570496e-19,4.336808689942018e-19,0.0024999999441206455,-0.0012499999720603228,1.5178830414797062e-18,-0.0016666667070239782,-2.464006022263265e-18,5.421010862427522e-20,-0.0,0.0008333333535119891,-2.3639594060543773e-20,-4.1256897086455813e-19,-4.370500273279185e-19,1.2170556143169357e-22,-1.4956961962946558e-18,4.9691346953694475e-20,3.2526065174565133e-19,0.0013888889225199819,-0.0006944444612599909,-3.5236570605778894e-19,-4.0657581468206416e-20,-0.00039682540227659047,-3.328987082749953e-20,1.2687782203948213e-19,-2.3639594060543773e-20,0.00019841270113829523,1.3552527156068805e-20,1.0218196357314789e-19,-1.384447829144741e-20,-6.155926586233649e-20,3.878286385156021e-20,9.486769009248164e-20,0.0031250000465661287,-8.673617379884035e-19,-0.01875000074505806,1.8473790233977516e-17,-9.205168604594286e-18,8.409030219273996e-19,-1.7860039176665726e-18,-4.1256897086455813e-19,1.3552527156068805e-20,0.00937500037252903,-8.60165183941131e-18,-8.931473358259425e-19,-4.0565441819774135e-18,8.012537736258953e-19,9.75781955236954e-19,0.0037499999161809683,-2.3852447794681098e-18,-0.0037499999161809683,-0.0024999999441206455,-3.2461528543173746e-18,6.114052764921654e-19,-8.834984937003617e-20,-4.370500273279185e-19,1.0218196357314789e-19,-8.60165183941131e-18,0.0024999999441206455,-5.963111948670274e-19,-2.4771360669214725e-18,-9.989497073815216e-20,5.149960319306146e-19,0.0020833334419876337,-1.4094628242311558e-18,-0.0020833334419876337,2.6291902682773483e-18,-0.0005952381179668009,3.402148106002971e-19,4.4249196456737395e-20,1.2170556143169357e-22,-1.384447829144741e-20,-8.931473358259425e-19,-5.963111948670274e-19,0.0005952381179668009,-6.061519558194177e-19,-3.3819676778665474e-20,1.3552527156068805e-19,0.0020833334419876337,4.336808689942018e-19,1.5612511283791264e-17,-0.0062500000931322575,-3.739608689506802e-18,3.9638034834325354e-19,-1.8099554492909284e-19,-1.4956961962946558e-18,-6.155926586233649e-20,-4.0565441819774135e-18,-2.4771360669214725e-18,-6.061519558194177e-19,0.0020833334419876337,-4.1335207826009857e-19,8.131516293641283e-19,0.0016666667070239782,-2.6020852139652106e-18,-1.951563910473908e-18,-0.0011111111380159855,-0.0004761904710903764,5.210088078032626e-19,2.975636721570496e-19,4.9691346953694475e-20,3.878286385156021e-20,8.012537736258953e-19,-9.989497073815216e-20,-3.3819676778665474e-20,-4.1335207826009857e-19,0.0003174603043589741,1.6263032587282567e-19,0.0006944444612599909,-3.3610267347050637e-18,-4.662069341687669e-18,-4.336808689942018e-18,-0.0006944444612599909,4.336808689942018e-19,4.336808689942018e-19,3.2526065174565133e-19,9.486769009248164e-20,9.75781955236954e-19,5.149960319306146e-19,1.3552527156068805e-19,8.131516293641283e-19,1.6263032587282567e-19,9.920635056914762e-05,5.0,3.0,5.0,3.0,0.13380952179431915,-0.03936507925391197,-0.05666666850447655,-0.03936507925391197,-0.05666666850447655,0.0031746032182127237,0.006666666828095913,0.004444444552063942,0.006666666828095913,0.006666666828095913,0.006666666828095913,0.009999999776482582,0.0031746032182127237,0.006666666828095913,0.006666666828095913,-0.03936507925391197,0.038730159401893616,0.006666666828095913,0.004444444552063942,0.006666666828095913,-0.0063492064364254475,-0.0033333334140479565,-0.002222222276031971,-0.0033333334140479565,-3.851859888774472e-34,-0.0,-0.0,-0.0,-0.0,0.0,-0.05666666850447655,0.006666666828095913,0.12333333492279053,0.006666666828095913,0.009999999776482582,-0.0,-0.006666666828095913,-4.305148877550777e-34,1.0842021724855044e-19,-0.03999999910593033,-0.006666666828095913,-0.009999999776482582,-6.3441316047372065e-18,-4.440891999238953e-18,-2.2204460823375376e-17,-0.03936507925391197,0.004444444552063942,0.006666666828095913,0.038730159401893616,0.006666666828095913,-1.087121473812963e-20,-0.0,-0.002222222276031971,4.728978637268588e-20,-1.4908709622684196e-17,-0.0033333334140479565,-0.0,-0.0063492064364254475,-0.0033333334140479565,-8.275995977935327e-33,-0.05666666850447655,0.006666666828095913,0.009999999776482582,0.006666666828095913,0.12333333492279053,2.168404344971009e-19,1.0842021724855044e-19,5.421010862427522e-20,-0.006666666828095913,-2.6645351995433716e-17,0.0,-0.009999999776482582,-0.0,-0.006666666828095913,-0.03999999910593033,0.0031746032182127237,-0.0063492064364254475,-0.0,-1.087121473812963e-20,2.168404344971009e-19,0.0015873016091063619,-0.0,-0.0,-1.0842021724855044e-19,-1.3372502369097928e-35,-0.0,0.0,-3.6571929829602266e-22,-0.0,-0.0,0.006666666828095913,-0.0033333334140479565,-0.006666666828095913,-0.0,1.0842021724855044e-19,-0.0,0.0033333334140479565,-0.0,-5.421010862427522e-20,1.2841490876227266e-35,-0.0,-0.0,0.0,-0.0,0.0,0.004444444552063942,-0.002222222276031971,-4.305148877550777e-34,-0.002222222276031971,5.421010862427522e-20,-0.0,-0.0,0.0011111111380159855,-2.710505431213761e-20,2.1525744387753887e-34,-0.0,-0.0,-0.0,-0.0,0.0,0.006666666828095913,-0.0033333334140479565,1.0842021724855044e-19,4.728978637268588e-20,-0.006666666828095913,-1.0842021724855044e-19,-5.421010862427522e-20,-2.710505431213761e-20,0.0033333334140479565,-0.0,-0.0,-0.0,1.5908789501120535e-21,-0.0,0.0,0.006666666828095913,-3.851859888774472e-34,-0.03999999910593033,-1.4908709622684196e-17,-2.6645351995433716e-17,-1.3372502369097928e-35,1.2841490876227266e-35,2.1525744387753887e-34,-0.0,0.019999999552965164,-0.0,-0.0,3.1720658023686032e-18,2.2204459996194763e-18,1.1102230411687688e-17,0.006666666828095913,-0.0,-0.006666666828095913,-0.0033333334140479565,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.009999999776482582,-0.0,-0.009999999776482582,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.0,-0.0,0.0031746032182127237,-0.0,-6.3441316047372065e-18,-0.0063492064364254475,-0.0,-3.6571929829602266e-22,0.0,-0.0,1.5908789501120535e-21,3.1720658023686032e-18,-0.0,-0.0,0.0015873016091063619,2.8335520915311635e-35,1.7608503135844695e-33,0.006666666828095913,-0.0,-4.440891999238953e-18,-0.0033333334140479565,-0.006666666828095913,-0.0,-0.0,-0.0,-0.0,2.2204459996194763e-18,-0.0,-0.0,2.8335520915311635e-35,0.0033333334140479565,1.2325951827749302e-33,0.006666666828095913,0.0,-2.2204460823375376e-17,-8.275995977935327e-33,-0.03999999910593033,-0.0,0.0,0.0,0.0,1.1102230411687688e-17,-0.0,-0.0,1.7608503135844695e-33,1.2325951827749302e-33,0.019999999552965164,5.0,3.0,5.0,4.0,0.10852380841970444,-0.030523808673024178,-0.04399999976158142,-0.030523808673024178,-0.035999998450279236,0.0023809524718672037,0.004999999888241291,0.0033333334140479565,0.004000000189989805,0.004999999888241291,0.004999999888241291,0.006000000052154064,0.0023809524718672037,0.004000000189989805,0.0033333334140479565,-0.030523808673024178,0.029547618702054024,0.004999999888241291,0.0033333334140479565,0.004000000189989805,-0.004761904943734407,-0.0024999999441206455,-0.0016666667070239782,-0.0020000000949949026,1.925929944387236e-34,-5.6357042979459534e-21,-0.0,1.0842021724855044e-19,-0.0,0.0,-0.04399999976158142,0.004999999888241291,0.09399999678134918,0.004999999888241291,0.006000000052154064,-0.0,-0.004999999888241291,-5.6357042979459534e-21,-0.0,-0.029999999329447746,-0.004999999888241291,-0.006000000052154064,-4.774200704754439e-18,-2.6103251736371576e-18,-7.77156120546332e-18,-0.030523808673024178,0.0033333334140479565,0.004999999888241291,0.029547618702054024,0.004000000189989805,-0.0,-0.0,-0.0016666667070239782,-0.0,-1.1514598972199461e-17,-0.0024999999441206455,-0.0,-0.004761904943734407,-0.0020000000949949026,-2.9828802817039036e-33,-0.035999998450279236,0.004000000189989805,0.006000000052154064,0.004000000189989805,0.047333333641290665,-0.0,-0.0,0.0,-0.0026666666381061077,-1.43218762632758e-17,5.421010862427522e-20,-0.004000000189989805,1.0842021724855044e-19,-0.0026666666381061077,-0.009999999776482582,0.0023809524718672037,-0.004761904943734407,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-5.552261209107863e-38,0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,-0.004999999888241291,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,-5.6357042979459534e-21,-0.0016666667070239782,0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-9.62964972193618e-35,2.8178521489729767e-21,-0.0,-5.421010862427522e-20,-0.0,-0.0,0.004000000189989805,-0.0020000000949949026,-0.0,-0.0,-0.0026666666381061077,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,1.925929944387236e-34,-0.029999999329447746,-1.1514598972199461e-17,-1.43218762632758e-17,-0.0,-0.0,-9.62964972193618e-35,-0.0,0.014999999664723873,-1.0994247134672194e-35,-0.0,2.3790494034752407e-18,1.3322676411307164e-18,3.88578060273166e-18,0.004999999888241291,-5.6357042979459534e-21,-0.004999999888241291,-0.0024999999441206455,5.421010862427522e-20,-5.552261209107863e-38,-0.0,2.8178521489729767e-21,-0.0,-1.0994247134672194e-35,0.0024999999441206455,-0.0,8.051006255321872e-21,-2.710505431213761e-20,-0.0,0.006000000052154064,-0.0,-0.006000000052154064,-0.0,-0.004000000189989805,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004000000189989805,-0.0,-0.0,-0.0,0.0023809524718672037,1.0842021724855044e-19,-4.774200704754439e-18,-0.004761904943734407,1.0842021724855044e-19,-0.0,-0.0,-5.421010862427522e-20,-0.0,2.3790494034752407e-18,8.051006255321872e-21,-0.0,0.0011904762359336019,-4.7979060467489833e-20,6.162975913874651e-34,0.004000000189989805,-0.0,-2.6103251736371576e-18,-0.0020000000949949026,-0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,1.3322676411307164e-18,-2.710505431213761e-20,-0.0,-4.7979060467489833e-20,0.0013333333190530539,3.451266566871102e-34,0.0033333334140479565,0.0,-7.77156120546332e-18,-2.9828802817039036e-33,-0.009999999776482582,-0.0,-0.0,-0.0,-0.0,3.88578060273166e-18,-0.0,-0.0,6.162975913874651e-34,3.451266566871102e-34,0.0033333334140479565,5.0,3.0,5.0,5.0,0.09142857044935226,-0.02495238184928894,-0.035999998450279236,-0.02495238184928894,-0.02495238184928894,0.0019047618843615055,0.004000000189989805,0.0026666666381061077,0.0026666666381061077,0.004000000189989805,0.004000000189989805,0.004000000189989805,0.0019047618843615055,0.0026666666381061077,0.0019047618843615055,-0.02495238184928894,0.02390476129949093,0.004000000189989805,0.0026666666381061077,0.0026666666381061077,-0.003809523768723011,-0.0020000000949949026,-0.0013333333190530539,-0.0013333333190530539,-0.0,1.9430628089132257e-21,1.0170797729886835e-33,1.0842021724855044e-19,2.334791757497793e-20,9.768554547262888e-20,-0.035999998450279236,0.004000000189989805,0.07599999755620956,0.004000000189989805,0.004000000189989805,-0.0,-0.004000000189989805,1.0170797729886835e-33,1.9430628089132257e-21,-0.024000000208616257,-0.004000000189989805,-0.004000000189989805,7.612957594812403e-18,3.606923956169621e-18,7.618509631083859e-18,-0.02495238184928894,0.0026666666381061077,0.004000000189989805,0.02390476129949093,0.0026666666381061077,-1.0734675007095829e-20,-0.0,-0.0013333333190530539,2.334791757497793e-20,2.1507112825407446e-17,-0.0020000000949949026,5.421010862427522e-20,-0.003809523768723011,-0.0013333333190530539,8.52234491590581e-20,-0.02495238184928894,0.0026666666381061077,0.004000000189989805,0.0026666666381061077,0.02390476129949093,-0.0,-0.0,1.6574337689121315e-21,-0.0013333333190530539,2.1507112825407446e-17,1.4017809788281348e-20,-0.0020000000949949026,-0.0,-0.0013333333190530539,-0.003809523768723011,0.0019047618843615055,-0.003809523768723011,-0.0,-1.0734675007095829e-20,-0.0,0.0009523809421807528,-0.0,-0.0,-0.0,-0.0,5.691111670042416e-39,-0.0,-8.845170426284082e-23,-2.3013843054617565e-37,1.894148813220062e-22,0.004000000189989805,-0.0020000000949949026,-0.004000000189989805,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0013333333190530539,1.0170797729886835e-33,-0.0013333333190530539,1.6574337689121315e-21,-0.0,-0.0,0.0006666666595265269,6.733385996475088e-23,-0.0,-2.399386926474798e-34,-2.6860119384686196e-34,-5.421010862427522e-20,-0.0,-4.1197736971526275e-22,0.0026666666381061077,-0.0013333333190530539,1.9430628089132257e-21,2.334791757497793e-20,-0.0013333333190530539,-0.0,-0.0,6.733385996475088e-23,0.0006666666595265269,-0.0,-9.715314044566129e-22,-2.399386926474798e-34,1.923824624514773e-22,-1.1673958787488965e-20,-4.884277273631444e-20,0.004000000189989805,-0.0,-0.024000000208616257,2.1507112825407446e-17,2.1507112825407446e-17,-0.0,-0.0,-0.0,-0.0,0.012000000104308128,-2.728484201827601e-18,-2.728484201827601e-18,-3.806478797406201e-18,-1.776356923772673e-18,-3.806478797406201e-18,0.004000000189989805,1.9430628089132257e-21,-0.004000000189989805,-0.0020000000949949026,1.4017809788281348e-20,5.691111670042416e-39,-0.0,-2.399386926474798e-34,-9.715314044566129e-22,-2.728484201827601e-18,0.0020000000949949026,2.1817175151261656e-34,1.7995400800617283e-34,-0.0,-2.77580407043272e-21,0.004000000189989805,1.0170797729886835e-33,-0.004000000189989805,5.421010862427522e-20,-0.0020000000949949026,-0.0,-0.0,-2.6860119384686196e-34,-2.399386926474798e-34,-2.728484201827601e-18,2.1817175151261656e-34,0.0020000000949949026,9.93434038314546e-35,-2.710505431213761e-20,1.7995400800617283e-34,0.0019047618843615055,1.0842021724855044e-19,7.612957594812403e-18,-0.003809523768723011,-0.0,-8.845170426284082e-23,-0.0,-5.421010862427522e-20,1.923824624514773e-22,-3.806478797406201e-18,1.7995400800617283e-34,9.93434038314546e-35,0.0009523809421807528,4.533683403847047e-35,8.27530740577201e-22,0.0026666666381061077,2.334791757497793e-20,3.606923956169621e-18,-0.0013333333190530539,-0.0013333333190530539,-2.3013843054617565e-37,-0.0,-0.0,-1.1673958787488965e-20,-1.776356923772673e-18,-0.0,-2.710505431213761e-20,4.533683403847047e-35,0.0006666666595265269,-4.261172457952905e-20,0.0019047618843615055,9.768554547262888e-20,7.618509631083859e-18,8.52234491590581e-20,-0.003809523768723011,1.894148813220062e-22,-0.0,-4.1197736971526275e-22,-4.884277273631444e-20,-3.806478797406201e-18,-2.77580407043272e-21,1.7995400800617283e-34,8.27530740577201e-22,-4.261172457952905e-20,0.0009523809421807528,5.0,3.0,5.0,6.0,0.07904762029647827,-0.021111110225319862,-0.030476190149784088,-0.021111110225319862,-0.018333332613110542,0.0015873016091063619,0.0033333334140479565,0.002222222276031971,0.0019047618843615055,0.0033333334140479565,0.0033333334140479565,0.0028571428265422583,0.0015873016091063619,0.0019047618843615055,0.0011904762359336019,-0.021111110225319862,0.020079365000128746,0.0033333334140479565,0.002222222276031971,0.0019047618843615055,-0.0031746032182127237,-0.0016666667070239782,-0.0011111111380159855,-0.0009523809421807528,-1.925929944387236e-34,-2.938837330199087e-20,3.403325174321111e-21,-0.0,-2.710505431213761e-20,9.362429222897239e-21,-0.030476190149784088,0.0033333334140479565,0.06380952149629593,0.0033333334140479565,0.0028571428265422583,-0.0,-0.0033333334140479565,-2.28508983491072e-20,-1.8266553130516434e-21,-0.019999999552965164,-0.0033333334140479565,-0.0028571428265422583,-3.2558691245875756e-18,-1.268826300267926e-18,-2.1850763770121683e-18,-0.021111110225319862,0.002222222276031971,0.0033333334140479565,0.020079365000128746,0.0019047618843615055,1.0583519463158484e-21,-0.0,-0.0011111111380159855,-1.8415324471740937e-21,-7.930164816114238e-18,-0.0016666667070239782,2.710505431213761e-20,-0.0031746032182127237,-0.0009523809421807528,-4.316091515292101e-21,-0.018333332613110542,0.0019047618843615055,0.0028571428265422583,0.0019047618843615055,0.013880952261388302,-0.0,-0.0,-2.3844268755568795e-21,-0.0007619047537446022,-6.720814352852523e-18,-1.0890547661567357e-20,-0.0011428571306169033,-0.0,-0.0007619047537446022,-0.0017857142956927419,0.0015873016091063619,-0.0031746032182127237,-0.0,1.0583519463158484e-21,-0.0,0.0007936508045531809,-0.0,-0.0,-0.0,-0.0,-8.173631570482683e-38,1.3344202339462973e-38,-1.0563385208502347e-22,4.3868321048951274e-38,-1.9111792473129526e-22,0.0033333334140479565,-0.0016666667070239782,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002222222276031971,-0.0011111111380159855,-2.28508983491072e-20,-0.0011111111380159855,-2.3844268755568795e-21,-0.0,-0.0,0.0005555555690079927,6.433101359737279e-23,9.62964972193618e-35,1.3552527156068805e-20,-1.7016625871605556e-21,-0.0,1.3552527156068805e-20,-4.265533331524065e-21,0.0019047618843615055,-0.0009523809421807528,-1.8266553130516434e-21,-1.8415324471740937e-21,-0.0007619047537446022,-0.0,-0.0,6.433101359737279e-23,0.0003809523768723011,-0.0,9.133276565258217e-22,-0.0,1.8380289959871496e-22,-2.2329849678422897e-35,8.229674406220851e-36,0.0033333334140479565,-1.925929944387236e-34,-0.019999999552965164,-7.930164816114238e-18,-6.720814352852523e-18,-0.0,-0.0,9.62964972193618e-35,-0.0,0.009999999776482582,9.753742436119665e-35,1.010080685621402e-36,1.5860329011843016e-18,6.34413150133963e-19,1.09039765187595e-18,0.0033333334140479565,-2.938837330199087e-20,-0.0033333334140479565,-0.0016666667070239782,-1.0890547661567357e-20,-8.173631570482683e-38,-0.0,1.3552527156068805e-20,9.133276565258217e-22,9.753742436119665e-35,0.0016666667070239782,-2.5524939817150292e-21,4.7979060467489833e-20,-0.0,2.1406117549358234e-21,0.0028571428265422583,3.403325174321111e-21,-0.0028571428265422583,2.710505431213761e-20,-0.0011428571306169033,1.3344202339462973e-38,-0.0,-1.7016625871605556e-21,-0.0,1.010080685621402e-36,-2.5524939817150292e-21,0.0011428571306169033,-4.861892990773935e-21,-1.721382333112768e-35,0.0,0.0015873016091063619,-0.0,-3.2558691245875756e-18,-0.0031746032182127237,-0.0,-1.0563385208502347e-22,-0.0,-0.0,1.8380289959871496e-22,1.5860329011843016e-18,4.7979060467489833e-20,-4.861892990773935e-21,0.0007936508045531809,2.0874007770939356e-20,2.461274902909575e-21,0.0019047618843615055,-2.710505431213761e-20,-1.268826300267926e-18,-0.0009523809421807528,-0.0007619047537446022,4.3868321048951274e-38,-0.0,1.3552527156068805e-20,-2.2329849678422897e-35,6.34413150133963e-19,-0.0,-1.721382333112768e-35,2.0874007770939356e-20,0.0003809523768723011,1.6840674186293348e-35,0.0011904762359336019,9.362429222897239e-21,-2.1850763770121683e-18,-4.316091515292101e-21,-0.0017857142956927419,-1.9111792473129526e-22,-0.0,-4.265533331524065e-21,8.229674406220851e-36,1.09039765187595e-18,2.1406117549358234e-21,0.0,2.461274902909575e-21,1.6840674186293348e-35,0.0003571428533177823,5.0,3.0,5.0,7.0,0.06964852660894394,-0.018299318850040436,-0.026428570970892906,-0.018299318850040436,-0.014047618955373764,0.0013605442363768816,0.0028571428265422583,0.0019047618843615055,0.0014285714132711291,0.0028571428265422583,0.0028571428265422583,0.002142857061699033,0.0013605442363768816,0.0014285714132711291,0.0007936508045531809,-0.018299318850040436,0.017312925308942795,0.0028571428265422583,0.0019047618843615055,0.0014285714132711291,-0.002721088472753763,-0.0014285714132711291,-0.0009523809421807528,-0.0007142857066355646,-1.4444474582904269e-34,0.0,0.0,-0.0,4.5782107051170253e-35,-1.4086801728074039e-35,-0.026428570970892906,0.0028571428265422583,0.054999999701976776,0.0028571428265422583,0.002142857061699033,-0.0,-0.0028571428265422583,-0.0,-9.62964972193618e-35,-0.017142856493592262,-0.0028571428265422583,-0.002142857061699033,-2.7189135153452095e-18,-9.516196993515503e-19,-1.374561799440859e-18,-0.018299318850040436,0.0019047618843615055,0.0028571428265422583,0.017312925308942795,0.0014285714132711291,-0.0,-0.0,-0.0009523809421807528,4.5782107051170253e-35,-6.865256631416533e-18,-0.0014285714132711291,-0.0,-0.002721088472753763,-0.0007142857066355646,-4.589111119333498e-34,-0.014047618955373764,0.0014285714132711291,0.002142857061699033,0.0014285714132711291,0.008809523656964302,0.0,-0.0,-0.0,-0.0004761904710903764,-5.075305201071704e-18,-0.0,-0.0007142857066355646,-8.049600725083747e-34,-0.0004761904710903764,-0.0009523809421807528,0.0013605442363768816,-0.002721088472753763,-0.0,-0.0,0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0014285714132711291,-0.0028571428265422583,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0009523809421807528,-0.0,-0.0009523809421807528,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-9.62964972193618e-35,4.5782107051170253e-35,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,4.81482486096809e-35,-0.0,-0.0,0.0,-1.5260701872080208e-35,4.6956005760246795e-36,0.0028571428265422583,-1.4444474582904269e-34,-0.017142856493592262,-6.865256631416533e-18,-5.075305201071704e-18,-0.0,-0.0,-0.0,4.81482486096809e-35,0.008571428246796131,-0.0,-0.0,1.3594567576726047e-18,4.758098496757752e-19,6.872808997204295e-19,0.0028571428265422583,0.0,-0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,0.0,-0.002142857061699033,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,0.0,-0.0,-0.0,0.0013605442363768816,-0.0,-2.7189135153452095e-18,-0.002721088472753763,-8.049600725083747e-34,-0.0,-0.0,-0.0,0.0,1.3594567576726047e-18,-0.0,0.0,0.0006802721181884408,7.546500966751939e-35,1.0900501460194117e-34,0.0014285714132711291,4.5782107051170253e-35,-9.516196993515503e-19,-0.0007142857066355646,-0.0004761904710903764,-0.0,-0.0,-0.0,-1.5260701872080208e-35,4.758098496757752e-19,-0.0,-0.0,7.546500966751939e-35,0.0002380952355451882,7.630350936040104e-36,0.0007936508045531809,-1.4086801728074039e-35,-1.374561799440859e-18,-4.589111119333498e-34,-0.0009523809421807528,-0.0,-0.0,-0.0,4.6956005760246795e-36,6.872808997204295e-19,-0.0,-0.0,1.0900501460194117e-34,7.630350936040104e-36,0.00015873015217948705,5.0,3.0,5.0,8.0,0.062261905521154404,-0.016150793060660362,-0.023333333432674408,-0.016150793060660362,-0.011111111380159855,0.0011904762359336019,0.0024999999441206455,0.0016666667070239782,0.0011111111380159855,0.0024999999441206455,0.0024999999441206455,0.0016666667070239782,0.0011904762359336019,0.0011111111380159855,0.0005555555690079927,-0.016150793060660362,0.015218254178762436,0.0024999999441206455,0.0016666667070239782,0.0011111111380159855,-0.0023809524718672037,-0.0012499999720603228,-0.0008333333535119891,-0.0005555555690079927,2.168404344971009e-18,1.951563910473908e-18,-1.0842021724855044e-19,1.0842021724855044e-18,-3.7947076036992655e-19,-1.7889335846010823e-18,-0.023333333432674408,0.0024999999441206455,0.04833333194255829,0.0024999999441206455,0.0016666667070239782,4.9779609322252385e-18,-0.0024999999441206455,-5.421010862427522e-20,-1.6263032587282567e-19,-0.014999999664723873,-0.0024999999441206455,-0.0016666667070239782,-6.505213034913027e-19,-2.0599841277224584e-18,-3.9302328752599536e-18,-0.016150793060660362,0.0016666667070239782,0.0024999999441206455,0.015218254178762436,0.0011111111380159855,2.253061317582136e-18,-3.749112374359577e-19,-0.0008333333535119891,-4.946672411965114e-19,-5.332183658758209e-18,-0.0012499999720603228,-7.589415207398531e-19,-0.0023809524718672037,-0.0005555555690079927,-2.6020852139652106e-18,-0.011111111380159855,0.0011111111380159855,0.0016666667070239782,0.0011111111380159855,0.0059523810632526875,3.2526065174565133e-19,-2.8597422554032813e-18,-2.021888944996788e-18,-0.0003174603043589741,-9.265064752749251e-18,-2.850363681618155e-18,-0.0004761904710903764,-1.57293222143784e-18,-0.0003174603043589741,-0.0005555555690079927,0.0011904762359336019,-0.0023809524718672037,4.9779609322252385e-18,2.253061317582136e-18,3.2526065174565133e-19,0.0005952381179668009,-4.757015924131073e-19,-2.784544816879734e-19,-6.570407274891393e-19,-1.150339088169452e-18,-5.401280019878718e-19,-7.127935538052201e-20,-2.5804299874200904e-19,1.8429928167740976e-20,1.6263032587282567e-19,0.0024999999441206455,-0.0012499999720603228,-0.0024999999441206455,-3.749112374359577e-19,-2.8597422554032813e-18,-4.757015924131073e-19,0.0012499999720603228,-5.421010862427522e-20,5.853213378721333e-20,1.9695474373762702e-18,1.2522981976533508e-19,2.479455274563918e-19,-7.57743566111246e-21,1.109257731733677e-19,2.981555974335137e-19,0.0016666667070239782,-0.0008333333535119891,-5.421010862427522e-20,-0.0008333333535119891,-2.021888944996788e-18,-2.784544816879734e-19,-5.421010862427522e-20,0.00041666667675599456,6.143999029541546e-20,-1.4230976817075677e-19,5.916786732440008e-20,1.0275538068340614e-19,-2.843061124375384e-19,7.934049540614122e-20,2.168404344971009e-19,0.0011111111380159855,-0.0005555555690079927,-1.6263032587282567e-19,-4.946672411965114e-19,-0.0003174603043589741,-6.570407274891393e-19,5.853213378721333e-20,6.143999029541546e-20,0.00015873015217948705,9.486769009248164e-20,-3.154496886823586e-20,-2.0556661221403094e-20,9.764553707284517e-20,4.490995382304101e-21,6.776263578034403e-20,0.0024999999441206455,2.168404344971009e-18,-0.014999999664723873,-5.332183658758209e-18,-9.265064752749251e-18,-1.150339088169452e-18,1.9695474373762702e-18,-1.4230976817075677e-19,9.486769009248164e-20,0.007499999832361937,7.617627753153301e-19,-2.9239578373194213e-19,5.01998025977686e-19,7.460209078729865e-19,1.0842021724855044e-18,0.0024999999441206455,1.951563910473908e-18,-0.0024999999441206455,-0.0012499999720603228,-2.850363681618155e-18,-5.401280019878718e-19,1.2522981976533508e-19,5.916786732440008e-20,-3.154496886823586e-20,7.617627753153301e-19,0.0012499999720603228,1.7618285302889447e-19,-4.593713410612971e-19,1.0042544554239154e-19,3.5236570605778894e-19,0.0016666667070239782,-1.0842021724855044e-19,-0.0016666667070239782,-7.589415207398531e-19,-0.0004761904710903764,-7.127935538052201e-20,2.479455274563918e-19,1.0275538068340614e-19,-2.0556661221403094e-20,-2.9239578373194213e-19,1.7618285302889447e-19,0.0004761904710903764,8.3054387722488e-20,1.6953561023937273e-20,1.0842021724855044e-19,0.0011904762359336019,1.0842021724855044e-18,-6.505213034913027e-19,-0.0023809524718672037,-1.57293222143784e-18,-2.5804299874200904e-19,-7.57743566111246e-21,-2.843061124375384e-19,9.764553707284517e-20,5.01998025977686e-19,-4.593713410612971e-19,8.3054387722488e-20,0.0005952381179668009,-5.827586677109586e-19,3.5236570605778894e-19,0.0011111111380159855,-3.7947076036992655e-19,-2.0599841277224584e-18,-0.0005555555690079927,-0.0003174603043589741,1.8429928167740976e-20,1.109257731733677e-19,7.934049540614122e-20,4.490995382304101e-21,7.460209078729865e-19,1.0042544554239154e-19,1.6953561023937273e-20,-5.827586677109586e-19,0.00015873015217948705,1.0842021724855044e-19,0.0005555555690079927,-1.7889335846010823e-18,-3.9302328752599536e-18,-2.6020852139652106e-18,-0.0005555555690079927,1.6263032587282567e-19,2.981555974335137e-19,2.168404344971009e-19,6.776263578034403e-20,1.0842021724855044e-18,3.5236570605778894e-19,1.0842021724855044e-19,3.5236570605778894e-19,1.0842021724855044e-19,7.936507608974352e-05,5.0,3.0,6.0,3.0,0.1160052940249443,-0.03333333507180214,-0.04801587387919426,-0.02896825410425663,-0.04801587387919426,0.0026455025654286146,0.0055555556900799274,0.0031746032182127237,0.0055555556900799274,0.0055555556900799274,0.004761904943734407,0.008333333767950535,0.0019841270986944437,0.004761904943734407,0.0055555556900799274,-0.03333333507180214,0.03253968432545662,0.0055555556900799274,0.0031746032182127237,0.0055555556900799274,-0.005291005130857229,-0.0027777778450399637,-0.0015873016091063619,-0.0027777778450399637,2.5271462230649283e-36,-0.0,-0.0,-1.0842021724855044e-19,-5.421010862427522e-20,7.703719777548943e-34,-0.04801587387919426,0.0055555556900799274,0.10357142984867096,0.004761904943734407,0.008333333767950535,-0.0,-0.0055555556900799274,2.4973030947714464e-36,-1.0842021724855044e-19,-0.03333333507180214,-0.004761904943734407,-0.008333333767950535,-3.674617108778511e-18,-3.1720658023686032e-18,-1.8503717628539684e-17,-0.02896825410425663,0.0031746032182127237,0.004761904943734407,0.02250000089406967,0.004761904943734407,6.493816295529636e-20,-1.0842021724855044e-19,-0.0012698412174358964,2.9756713597586467e-19,-1.0672679655491963e-17,-0.0019047618843615055,-0.0,-0.0029761905316263437,-0.0019047618843615055,-2.5942284870710595e-17,-0.04801587387919426,0.0055555556900799274,0.008333333767950535,0.004761904943734407,0.10357142984867096,-0.0,-1.0842021724855044e-19,2.710505431213761e-19,-0.0055555556900799274,-2.2468799623006497e-17,-7.703719777548943e-34,-0.008333333767950535,-1.3118846287074604e-17,-0.004761904943734407,-0.03333333507180214,0.0026455025654286146,-0.005291005130857229,-0.0,6.493816295529636e-20,-0.0,0.0013227512827143073,-0.0,-5.421010862427522e-20,-0.0,-4.8166655886942064e-36,0.0,0.0,2.1454577085439343e-20,1.2462093890190076e-20,-5.326965594307912e-35,0.0055555556900799274,-0.0027777778450399637,-0.0055555556900799274,-1.0842021724855044e-19,-1.0842021724855044e-19,-0.0,0.0027777778450399637,-0.0,5.421010862427522e-20,2.407412430484045e-35,-0.0,-0.0,1.9979155060108968e-20,-0.0,-9.62964972193618e-35,0.0031746032182127237,-0.0015873016091063619,2.4973030947714464e-36,-0.0012698412174358964,2.710505431213761e-19,-5.421010862427522e-20,-0.0,0.0006349206087179482,-1.3552527156068805e-19,-1.2486515473857232e-36,-0.0,-0.0,-0.0,-0.0,-1.925929944387236e-34,0.0055555556900799274,-0.0027777778450399637,-1.0842021724855044e-19,2.9756713597586467e-19,-0.0055555556900799274,-0.0,5.421010862427522e-20,-1.3552527156068805e-19,0.0027777778450399637,-2.5271462230649283e-36,-0.0,-0.0,-4.8863513643939355e-21,-6.620384183831123e-35,3.9130005756825414e-35,0.0055555556900799274,2.5271462230649283e-36,-0.03333333507180214,-1.0672679655491963e-17,-2.2468799623006497e-17,-4.8166655886942064e-36,2.407412430484045e-35,-1.2486515473857232e-36,-2.5271462230649283e-36,0.01666666753590107,-0.0,-0.0,1.817329454259109e-18,1.5860329011843016e-18,9.251858814269842e-18,0.004761904943734407,-0.0,-0.004761904943734407,-0.0019047618843615055,-7.703719777548943e-34,0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0,-0.0,-0.0,3.851859888774472e-34,0.008333333767950535,-0.0,-0.008333333767950535,-0.0,-0.008333333767950535,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,-0.0,-0.0,0.0019841270986944437,-1.0842021724855044e-19,-3.674617108778511e-18,-0.0029761905316263437,-1.3118846287074604e-17,2.1454577085439343e-20,1.9979155060108968e-20,-0.0,-4.8863513643939355e-21,1.817329454259109e-18,-0.0,-0.0,0.0005952381179668009,1.0842021724855044e-18,5.286776406212723e-18,0.004761904943734407,-5.421010862427522e-20,-3.1720658023686032e-18,-0.0019047618843615055,-0.004761904943734407,1.2462093890190076e-20,-0.0,-0.0,-6.620384183831123e-35,1.5860329011843016e-18,-0.0,-0.0,1.0842021724855044e-18,0.0019047618843615055,-4.915965916663497e-19,0.0055555556900799274,7.703719777548943e-34,-1.8503717628539684e-17,-2.5942284870710595e-17,-0.03333333507180214,-5.326965594307912e-35,-9.62964972193618e-35,-1.925929944387236e-34,3.9130005756825414e-35,9.251858814269842e-18,3.851859888774472e-34,-0.0,5.286776406212723e-18,-4.915965916663497e-19,0.01666666753590107,5.0,3.0,6.0,4.0,0.09392856806516647,-0.025833332911133766,-0.037261903285980225,-0.022440476343035698,-0.030476190149784088,0.0019841270986944437,0.004166666883975267,0.0023809524718672037,0.0033333334140479565,0.004166666883975267,0.0035714285913854837,0.004999999888241291,0.0014880952658131719,0.0028571428265422583,0.0027777778450399637,-0.025833332911133766,0.024821428582072258,0.004166666883975267,0.0023809524718672037,0.0033333334140479565,-0.003968254197388887,-0.0020833334419876337,-0.0011904762359336019,-0.0016666667070239782,-0.0,-3.733418948681856e-20,-0.0,-5.421010862427522e-20,-0.0,-0.0,-0.037261903285980225,0.004166666883975267,0.07892857491970062,0.0035714285913854837,0.004999999888241291,-0.0,-0.004166666883975267,-3.733418948681856e-20,-2.04435195300128e-36,-0.02500000037252903,-0.0035714285913854837,-0.004999999888241291,-2.8571250559451635e-18,-1.8693580808129287e-18,-6.476301004552767e-18,-0.022440476343035698,0.0023809524718672037,0.0035714285913854837,0.01716071367263794,0.0028571428265422583,1.5556491743426423e-20,-0.0,-0.0009523809421807528,-4.5113823147879786e-20,-8.242414744005043e-18,-0.0014285714132711291,-0.0,-0.0022321429569274187,-0.0011428571306169033,-9.11757017772492e-18,-0.030476190149784088,0.0033333334140479565,0.004999999888241291,0.0028571428265422583,0.03976190462708473,-0.0,-0.0,-4.5113823147879786e-20,-0.002222222276031971,-1.2093500496714085e-17,3.3881317890172014e-20,-0.0033333334140479565,-7.15573433840433e-18,-0.0019047618843615055,-0.008333333767950535,0.0019841270986944437,-0.003968254197388887,-0.0,1.5556491743426423e-20,-0.0,0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,-2.303160030875749e-37,0.0,-3.115523472547519e-21,-0.0,-0.0,0.004166666883975267,-0.0020833334419876337,-0.004166666883975267,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,-3.733418948681856e-20,-0.0009523809421807528,-4.5113823147879786e-20,-0.0,-0.0,0.0004761904710903764,2.2556911573939893e-20,-0.0,1.4933676440962278e-20,-0.0,2.710505431213761e-20,-0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,-2.04435195300128e-36,-4.5113823147879786e-20,-0.002222222276031971,-0.0,-0.0,2.2556911573939893e-20,0.0011111111380159855,-0.0,8.177407453272714e-37,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.02500000037252903,-8.242414744005043e-18,-1.2093500496714085e-17,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,8.925251377389602e-35,-0.0,1.3629969872967551e-18,9.516196993515503e-19,3.2381505022763835e-18,0.0035714285913854837,-3.733418948681856e-20,-0.0035714285913854837,-0.0014285714132711291,3.3881317890172014e-20,-2.303160030875749e-37,-0.0,1.4933676440962278e-20,8.177407453272714e-37,8.925251377389602e-35,0.0014285714132711291,-0.0,5.245238859669125e-20,-1.3552527156068805e-20,1.925929944387236e-34,0.004999999888241291,-0.0,-0.004999999888241291,-0.0,-0.0033333334140479565,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,0.0014880952658131719,-5.421010862427522e-20,-2.8571250559451635e-18,-0.0022321429569274187,-7.15573433840433e-18,-3.115523472547519e-21,-0.0,2.710505431213761e-20,-0.0,1.3629969872967551e-18,5.245238859669125e-20,-0.0,0.00044642857392318547,6.530187168569651e-19,1.850371804212999e-18,0.0028571428265422583,-0.0,-1.8693580808129287e-18,-0.0011428571306169033,-0.0019047618843615055,-0.0,-0.0,-0.0,-0.0,9.516196993515503e-19,-1.3552527156068805e-20,-0.0,6.530187168569651e-19,0.0007619047537446022,-8.952563491199201e-20,0.0027777778450399637,-0.0,-6.476301004552767e-18,-9.11757017772492e-18,-0.008333333767950535,-0.0,-0.0,-0.0,-0.0,3.2381505022763835e-18,1.925929944387236e-34,-0.0,1.850371804212999e-18,-8.952563491199201e-20,0.0027777778450399637,5.0,3.0,6.0,5.0,0.07904762029647827,-0.021111110225319862,-0.030476190149784088,-0.018333332613110542,-0.021111110225319862,0.0015873016091063619,0.0033333334140479565,0.0019047618843615055,0.002222222276031971,0.0033333334140479565,0.0028571428265422583,0.0033333334140479565,0.0011904762359336019,0.0019047618843615055,0.0015873016091063619,-0.021111110225319862,0.020079365000128746,0.0033333334140479565,0.0019047618843615055,0.002222222276031971,-0.0031746032182127237,-0.0016666667070239782,-0.0009523809421807528,-0.0011111111380159855,1.925929944387236e-34,1.1625385352514916e-20,-3.1903105761728645e-20,-0.0,2.305024887673248e-20,-4.174666491103478e-20,-0.030476190149784088,0.0033333334140479565,0.06380952149629593,0.0028571428265422583,0.0033333334140479565,-0.0,-0.0033333334140479565,5.369221278146033e-21,-2.4082899860973974e-20,-0.019999999552965164,-0.0028571428265422583,-0.0033333334140479565,-2.1682111982979777e-18,-1.2512515039857415e-18,-3.1509689744357445e-18,-0.018333332613110542,0.0019047618843615055,0.0028571428265422583,0.013880952261388302,0.0019047618843615055,-4.251802052576328e-21,-0.0,-0.0007619047537446022,9.247669222015443e-21,-6.720814352852523e-18,-0.0011428571306169033,5.421010862427522e-20,-0.0017857142956927419,-0.0007619047537446022,2.752044994010102e-18,-0.021111110225319862,0.002222222276031971,0.0033333334140479565,0.0019047618843615055,0.020079365000128746,-0.0,-0.0,-6.224874675229358e-20,-0.0011111111380159855,-7.930164816114238e-18,-5.3199316533955296e-20,-0.0016666667070239782,2.3852447794681098e-18,-0.0009523809421807528,-0.0031746032182127237,0.0015873016091063619,-0.0031746032182127237,-0.0,-4.251802052576328e-21,-0.0,0.0007936508045531809,-0.0,-0.0,-0.0,-0.0,1.6155481713397564e-38,7.52316384526264e-37,3.30742720371461e-22,-2.628254772574232e-37,4.75060084767504e-21,0.0033333334140479565,-0.0016666667070239782,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0009523809421807528,5.369221278146033e-21,-0.0007619047537446022,-6.224874675229358e-20,-0.0,-0.0,0.0003809523768723011,1.7927928086736455e-20,0.0,-3.683064894348187e-21,1.91922017593963e-21,-0.0,6.776263578034403e-21,1.73172664423838e-21,0.002222222276031971,-0.0011111111380159855,-2.4082899860973974e-20,9.247669222015443e-21,-0.0011111111380159855,-0.0,-0.0,1.7927928086736455e-20,0.0005555555690079927,-9.62964972193618e-35,-1.2088617602706157e-21,1.3552527156068805e-20,-7.1936541491466155e-22,-1.999545471870281e-20,8.376116508830055e-21,0.0033333334140479565,1.925929944387236e-34,-0.019999999552965164,-6.720814352852523e-18,-7.930164816114238e-18,-0.0,-0.0,0.0,-9.62964972193618e-35,0.009999999776482582,-9.170506822950245e-36,-1.3995851583496195e-36,1.09039765187595e-18,6.34413150133963e-19,1.5860329011843016e-18,0.0028571428265422583,1.1625385352514916e-20,-0.0028571428265422583,-0.0011428571306169033,-5.3199316533955296e-20,1.6155481713397564e-38,-0.0,-3.683064894348187e-21,-1.2088617602706157e-21,-9.170506822950245e-36,0.0011428571306169033,2.878830263909445e-21,-8.632183030584202e-21,2.710505431213761e-20,-3.453891032128033e-21,0.0033333334140479565,-3.1903105761728645e-20,-0.0033333334140479565,5.421010862427522e-20,-0.0016666667070239782,7.52316384526264e-37,-0.0,1.91922017593963e-21,1.3552527156068805e-20,-1.3995851583496195e-36,2.878830263909445e-21,0.0016666667070239782,4.4981722242496354e-21,-4.266872895596132e-20,-6.231046945095038e-21,0.0011904762359336019,-0.0,-2.1682111982979777e-18,-0.0017857142956927419,2.3852447794681098e-18,3.30742720371461e-22,-0.0,-0.0,-7.1936541491466155e-22,1.09039765187595e-18,-8.632183030584202e-21,4.4981722242496354e-21,0.0003571428533177823,-2.2433262289529993e-19,-4.545785531945883e-19,0.0019047618843615055,2.305024887673248e-20,-1.2512515039857415e-18,-0.0007619047537446022,-0.0009523809421807528,-2.628254772574232e-37,-0.0,6.776263578034403e-21,-1.999545471870281e-20,6.34413150133963e-19,2.710505431213761e-20,-4.266872895596132e-20,-2.2433262289529993e-19,0.0003809523768723011,-2.3927664878744193e-19,0.0015873016091063619,-4.174666491103478e-20,-3.1509689744357445e-18,2.752044994010102e-18,-0.0031746032182127237,4.75060084767504e-21,-0.0,1.73172664423838e-21,8.376116508830055e-21,1.5860329011843016e-18,-3.453891032128033e-21,-6.231046945095038e-21,-4.545785531945883e-19,-2.3927664878744193e-19,0.0007936508045531809,5.0,3.0,6.0,6.0,0.06829176098108292,-0.01785714365541935,-0.02579365111887455,-0.015504535287618637,-0.015504535287618637,0.0013227512827143073,0.0027777778450399637,0.0015873016091063619,0.0015873016091063619,0.0027777778450399637,0.0023809524718672037,0.0023809524718672037,0.0009920635493472219,0.0013605442363768816,0.0009920635493472219,-0.01785714365541935,0.01686508022248745,0.0027777778450399637,0.0015873016091063619,0.0015873016091063619,-0.0026455025654286146,-0.0013888889225199819,-0.0007936508045531809,-0.0007936508045531809,-1.2037062152420224e-34,3.412417617931302e-20,1.9629878450355236e-21,-5.421010862427522e-20,1.1313888197755626e-19,-6.657117258084089e-20,-0.02579365111887455,0.0027777778450399637,0.0535714291036129,0.0023809524718672037,0.0023809524718672037,-0.0,-0.0027777778450399637,3.584430472546558e-20,2.42856951232913e-22,-0.01666666753590107,-0.0023809524718672037,-0.0023809524718672037,-1.7574529516436923e-18,-7.835141099078713e-19,-1.8167601472025193e-18,-0.015504535287618637,0.0015873016091063619,0.0023809524718672037,0.01165816280990839,0.0013605442363768816,2.1411618623549138e-20,-0.0,-0.0006349206087179482,1.5139496425706517e-19,-5.6762039396159505e-18,-0.0009523809421807528,1.3552527156068805e-19,-0.0014880952658131719,-0.0005442177061922848,-2.3014238796611207e-18,-0.015504535287618637,0.0015873016091063619,0.0023809524718672037,0.0013605442363768816,0.01165816280990839,-0.0,-0.0,9.43975930106101e-20,-0.0006349206087179482,-5.6762039396159505e-18,2.607612967962044e-21,-0.0009523809421807528,-3.198396408832238e-18,-0.0005442177061922848,-0.0014880952658131719,0.0013227512827143073,-0.0026455025654286146,-0.0,2.1411618623549138e-20,-0.0,0.0006613756413571537,-0.0,-0.0,-0.0,-0.0,8.226177123986303e-37,7.302738027370066e-39,1.0212421117987263e-20,2.1619024194391786e-37,5.150749872894351e-21,0.0027777778450399637,-0.0013888889225199819,-0.0027777778450399637,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015873016091063619,-0.0007936508045531809,3.584430472546558e-20,-0.0006349206087179482,9.43975930106101e-20,-0.0,-0.0,0.0003174603043589741,-3.817095053107557e-20,9.62964972193618e-35,-1.3552527156068805e-20,-7.851951380142094e-22,-0.0,-6.776263578034403e-21,-6.078058416580096e-23,0.0015873016091063619,-0.0007936508045531809,2.42856951232913e-22,1.5139496425706517e-19,-0.0006349206087179482,-0.0,-0.0,-3.817095053107557e-20,0.0003174603043589741,-4.81482486096809e-35,-9.71427804931652e-23,-1.1982882079546264e-37,3.914430300515467e-21,-3.8479291797927516e-20,1.7726945816105944e-20,0.0027777778450399637,-1.2037062152420224e-34,-0.01666666753590107,-5.6762039396159505e-18,-5.6762039396159505e-18,-0.0,-0.0,9.62964972193618e-35,-4.81482486096809e-35,0.008333333767950535,-9.572389716109821e-35,-1.920203886407415e-34,9.086647271295545e-19,4.531522353246055e-19,9.086647271295545e-19,0.0023809524718672037,3.412417617931302e-20,-0.0023809524718672037,-0.0009523809421807528,2.607612967962044e-21,8.226177123986303e-37,-0.0,-1.3552527156068805e-20,-9.71427804931652e-23,-9.572389716109821e-35,0.0009523809421807528,-1.1777927070213141e-21,-2.2110264739316802e-20,-0.0,-2.2767840913579585e-22,0.0023809524718672037,1.9629878450355236e-21,-0.0023809524718672037,1.3552527156068805e-19,-0.0009523809421807528,7.302738027370066e-39,-0.0,-7.851951380142094e-22,-1.1982882079546264e-37,-1.920203886407415e-34,-1.1777927070213141e-21,0.0009523809421807528,-1.8403011678296758e-21,-4.9116155928763217e-20,1.1362906160494421e-37,0.0009920635493472219,-5.421010862427522e-20,-1.7574529516436923e-18,-0.0014880952658131719,-3.198396408832238e-18,1.0212421117987263e-20,-0.0,-0.0,3.914430300515467e-21,9.086647271295545e-19,-2.2110264739316802e-20,-1.8403011678296758e-21,0.00029761905898340046,2.193378220133692e-19,5.228657765796558e-19,0.0013605442363768816,1.1313888197755626e-19,-7.835141099078713e-19,-0.0005442177061922848,-0.0005442177061922848,2.1619024194391786e-37,-0.0,-6.776263578034403e-21,-3.8479291797927516e-20,4.531522353246055e-19,-0.0,-4.9116155928763217e-20,2.193378220133692e-19,0.00021768707665614784,-1.2564163938811285e-19,0.0009920635493472219,-6.657117258084089e-20,-1.8167601472025193e-18,-2.3014238796611207e-18,-0.0014880952658131719,5.150749872894351e-21,-0.0,-6.078058416580096e-23,1.7726945816105944e-20,9.086647271295545e-19,-2.2767840913579585e-22,1.1362906160494421e-37,5.228657765796558e-19,-1.2564163938811285e-19,0.00029761905898340046,5.0,3.0,6.0,7.0,0.06013794243335724,-0.015476190485060215,-0.022363945841789246,-0.01343537401407957,-0.011876417323946953,0.0011337868636474013,0.0023809524718672037,0.0013605442363768816,0.0011904762359336019,0.0023809524718672037,0.0020408162381500006,0.0017857142956927419,0.0008503401186317205,0.0010204081190750003,0.0006613756413571537,-0.015476190485060215,0.01454081665724516,0.0023809524718672037,0.0013605442363768816,0.0011904762359336019,-0.0022675737272948027,-0.0011904762359336019,-0.0006802721181884408,-0.0005952381179668009,1.2037062152420224e-34,-1.4124701879821086e-20,1.8575137139335246e-20,-1.0610044091943376e-19,1.9403207940399048e-20,-1.7336490717586773e-20,-0.022363945841789246,0.0023809524718672037,0.046173468232154846,0.0020408162381500006,0.0017857142956927419,-0.0,-0.0023809524718672037,-1.5592170369691308e-20,1.9798026739766863e-20,-0.014285714365541935,-0.0020408162381500006,-0.0017857142956927419,-1.6160694835873272e-18,-6.708988978815465e-19,-1.1121271695798352e-18,-0.01343537401407957,0.0013605442363768816,0.0020408162381500006,0.010051020421087742,0.0010204081190750003,-0.0,-0.0,-0.0005442177061922848,9.86198492056818e-21,-4.913869737593711e-18,-0.0008163265301845968,-2.574980159653073e-19,-0.0012755101779475808,-0.0004081632650922984,9.679380082832668e-19,-0.011876417323946953,0.0011904762359336019,0.0017857142956927419,0.0010204081190750003,0.007397959008812904,-0.0,-0.0,-1.9509237308409288e-20,-0.00039682540227659047,-4.286064881674646e-18,-2.9306877270843645e-19,-0.0005952381179668009,1.3010426069826053e-18,-0.0003401360590942204,-0.0007936508045531809,0.0011337868636474013,-0.0022675737272948027,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0006802721181884408,-1.5592170369691308e-20,-0.0005442177061922848,-1.9509237308409288e-20,-0.0,-0.0,0.0002721088530961424,6.338118467780834e-22,-4.81482486096809e-35,5.3951142931409304e-21,7.014613773226675e-22,4.0657581468206416e-20,-0.0,2.698484897482103e-21,0.0011904762359336019,-0.0005952381179668009,1.9798026739766863e-20,9.86198492056818e-21,-0.00039682540227659047,-0.0,-0.0,6.338118467780834e-22,0.00019841270113829523,-0.0,2.123053654938874e-22,-6.776263578034403e-21,1.4854964228005462e-21,-6.467736114765277e-21,3.5300930265755635e-21,0.0023809524718672037,1.2037062152420224e-34,-0.014285714365541935,-4.913869737593711e-18,-4.286064881674646e-18,-0.0,-0.0,-4.81482486096809e-35,-0.0,0.0071428571827709675,8.043044589013028e-35,-3.6398975943345777e-35,7.788554286979727e-19,3.398641894181512e-19,5.727341175662168e-19,0.0020408162381500006,-1.4124701879821086e-20,-0.0020408162381500006,-0.0008163265301845968,-2.9306877270843645e-19,-0.0,-0.0,5.3951142931409304e-21,2.123053654938874e-22,8.043044589013028e-35,0.0008163265301845968,2.729435459532037e-19,2.1370590788283935e-20,6.776263578034403e-21,4.246107309877748e-22,0.0017857142956927419,1.8575137139335246e-20,-0.0017857142956927419,-2.574980159653073e-19,-0.0005952381179668009,-0.0,-0.0,7.014613773226675e-22,-6.776263578034403e-21,-3.6398975943345777e-35,2.729435459532037e-19,0.0005952381179668009,1.6440501441207691e-21,-8.590054980480818e-21,-1.1467523102488e-20,0.0008503401186317205,-1.0610044091943376e-19,-1.6160694835873272e-18,-0.0012755101779475808,1.3010426069826053e-18,-0.0,-0.0,4.0657581468206416e-20,1.4854964228005462e-21,7.788554286979727e-19,2.1370590788283935e-20,1.6440501441207691e-21,0.00025510202976875007,-1.232214381627534e-19,-1.5836985457968887e-19,0.0010204081190750003,1.9403207940399048e-20,-6.708988978815465e-19,-0.0004081632650922984,-0.0003401360590942204,-0.0,-0.0,-0.0,-6.467736114765277e-21,3.398641894181512e-19,6.776263578034403e-21,-8.590054980480818e-21,-1.232214381627534e-19,0.0001360544265480712,-6.13860749215832e-20,0.0006613756413571537,-1.7336490717586773e-20,-1.1121271695798352e-18,9.679380082832668e-19,-0.0007936508045531809,-0.0,-0.0,2.698484897482103e-21,3.5300930265755635e-21,5.727341175662168e-19,4.246107309877748e-22,-1.1467523102488e-20,-1.5836985457968887e-19,-6.13860749215832e-20,0.00013227513409219682,5.0,3.0,6.0,8.0,0.05373677238821983,-0.013657407835125923,-0.01974206417798996,-0.01185515895485878,-0.009391534142196178,0.0009920635493472219,0.0020833334419876337,0.0011904762359336019,0.0009259259095415473,0.0020833334419876337,0.0017857142956927419,0.0013888889225199819,0.0007440476329065859,0.0007936508045531809,0.00046296295477077365,-0.013657407835125923,0.012781084515154362,0.0020833334419876337,0.0011904762359336019,0.0009259259095415473,-0.0019841270986944437,-0.0010416667209938169,-0.0005952381179668009,-0.00046296295477077365,-1.6851887013388314e-34,0.0,1.1858461261560205e-20,-3.831195237620556e-35,-4.3545824748603095e-20,-1.0904796332294723e-20,-0.01974206417798996,0.0020833334419876337,0.04057539626955986,0.0017857142956927419,0.0013888889225199819,-0.0,-0.0020833334419876337,-0.0,1.1858461261560205e-20,-0.012500000186264515,-0.0017857142956927419,-0.0013888889225199819,-1.3629969872967551e-18,-5.87969957268831e-19,-7.504037243485987e-19,-0.01185515895485878,0.0011904762359336019,0.0017857142956927419,0.008834325708448887,0.0007936508045531809,-0.0,-0.0,-0.0004761904710903764,-4.3545824748603095e-20,-4.3326785771435405e-18,-0.0007142857066355646,-5.929230630780102e-20,-0.0011160714784637094,-0.0003174603043589741,-1.1650872015033897e-18,-0.009391534142196178,0.0009259259095415473,0.0013888889225199819,0.0007936508045531809,0.004998110234737396,0.0,-0.0,-0.0,-0.00026455026818439364,-3.359305785440647e-18,-0.0,-0.00039682540227659047,-1.9102524427314784e-18,-0.00022675737272948027,-0.00046296295477077365,0.0009920635493472219,-0.0019841270986944437,-0.0,-0.0,0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0010416667209938169,-0.0020833334419876337,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00046296295477077365,1.1858461261560205e-20,-4.3545824748603095e-20,-0.00026455026818439364,-0.0,-0.0,-0.0,0.00013227513409219682,4.81482486096809e-35,-0.0,-3.3881317890172014e-21,1.0946271697507409e-35,1.2441663983088437e-20,3.115655950692498e-21,0.0020833334419876337,-1.6851887013388314e-34,-0.012500000186264515,-4.3326785771435405e-18,-3.359305785440647e-18,-0.0,-0.0,-0.0,4.81482486096809e-35,0.0062500000931322575,-0.0,-0.0,6.814984936483776e-19,2.64338825480515e-19,3.854941086447787e-19,0.0017857142956927419,0.0,-0.0017857142956927419,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,1.1858461261560205e-20,-0.0013888889225199819,-5.929230630780102e-20,-0.00039682540227659047,-0.0,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,0.00039682540227659047,-4.81482486096809e-35,1.6940658945086007e-20,-5.881285255304354e-21,0.0007440476329065859,-3.831195237620556e-35,-1.3629969872967551e-18,-0.0011160714784637094,-1.9102524427314784e-18,-0.0,-0.0,-0.0,1.0946271697507409e-35,6.814984936483776e-19,-0.0,-4.81482486096809e-35,0.00022321428696159273,1.473104497898549e-19,2.202823588753282e-19,0.0007936508045531809,-4.3545824748603095e-20,-5.87969957268831e-19,-0.0003174603043589741,-0.00022675737272948027,-0.0,-0.0,-0.0,1.2441663983088437e-20,2.64338825480515e-19,-0.0,1.6940658945086007e-20,1.473104497898549e-19,9.070294618140906e-05,1.8192999083381353e-20,0.00046296295477077365,-1.0904796332294723e-20,-7.504037243485987e-19,-1.1650872015033897e-18,-0.00046296295477077365,-0.0,-0.0,-0.0,3.115655950692498e-21,3.854941086447787e-19,-0.0,-5.881285255304354e-21,2.202823588753282e-19,1.8192999083381353e-20,6.613756704609841e-05,5.0,3.0,7.0,3.0,0.10241874307394028,-0.028911564499139786,-0.0416666679084301,-0.02222222276031971,-0.0416666679084301,0.0022675737272948027,0.004761904943734407,0.0023809524718672037,0.004761904943734407,0.004761904943734407,0.0035714285913854837,0.0071428571827709675,0.0013227512827143073,0.0035714285913854837,0.004761904943734407,-0.028911564499139786,0.02806122414767742,0.004761904943734407,0.0023809524718672037,0.004761904943734407,-0.004535147454589605,-0.0023809524718672037,-0.0011904762359336019,-0.0023809524718672037,-0.0,4.0657581468206416e-20,1.8055593228630336e-35,8.131516293641283e-20,-0.0,-3.9068863405398977e-35,-0.0416666679084301,0.004761904943734407,0.0892857164144516,0.0035714285913854837,0.0071428571827709675,-0.0,-0.004761904943734407,4.0657581468206416e-20,-0.0,-0.02857142873108387,-0.0035714285913854837,-0.0071428571827709675,-2.2221311733224e-18,-2.3790494034752407e-18,-1.5860329632228476e-17,-0.02222222276031971,0.0023809524718672037,0.0035714285913854837,0.014285714365541935,0.0035714285913854837,-0.0,-0.0,-0.0007936508045531809,-0.0,-8.062334215929798e-18,-0.0011904762359336019,-7.930164505921508e-19,-0.0015873016091063619,-0.0011904762359336019,-3.1720658023686032e-18,-0.0416666679084301,0.004761904943734407,0.0071428571827709675,0.0035714285913854837,0.0892857164144516,-0.0,-0.0,-2.002737881734229e-35,-0.004761904943734407,-1.9428902600067994e-17,-7.930164505921508e-19,-0.0071428571827709675,-1.0842021724855044e-19,-0.0035714285913854837,-0.02857142873108387,0.0022675737272948027,-0.004535147454589605,-0.0,-0.0,-0.0,0.0011337868636474013,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.0023809524718672037,-0.004761904943734407,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,4.0657581468206416e-20,-0.0007936508045531809,-2.002737881734229e-35,-0.0,-0.0,0.00039682540227659047,-0.0,-0.0,-1.3552527156068805e-20,-6.018531076210112e-36,-2.710505431213761e-20,-0.0,1.3022954946776201e-35,0.004761904943734407,-0.0023809524718672037,-0.0,-0.0,-0.004761904943734407,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.0,-0.02857142873108387,-8.062334215929798e-18,-1.9428902600067994e-17,-0.0,-0.0,-0.0,-0.0,0.014285714365541935,-9.62964972193618e-35,-0.0,1.1454682351324336e-18,1.1895247017376204e-18,7.930164816114238e-18,0.0035714285913854837,4.0657581468206416e-20,-0.0035714285913854837,-0.0011904762359336019,-7.930164505921508e-19,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-9.62964972193618e-35,0.0011904762359336019,7.930164505921508e-19,-2.2935046204976e-20,-0.0,4.335426782346734e-36,0.0071428571827709675,1.8055593228630336e-35,-0.0071428571827709675,-7.930164505921508e-19,-0.0071428571827709675,-0.0,-0.0,-6.018531076210112e-36,-0.0,-0.0,7.930164505921508e-19,0.0071428571827709675,-2.407412430484045e-35,-0.0,-0.0,0.0013227512827143073,8.131516293641283e-20,-2.2221311733224e-18,-0.0015873016091063619,-1.0842021724855044e-19,-0.0,-0.0,-2.710505431213761e-20,-0.0,1.1454682351324336e-18,-2.2935046204976e-20,-2.407412430484045e-35,0.00026455026818439364,7.336876258770969e-36,6.02334876633856e-34,0.0035714285913854837,-0.0,-2.3790494034752407e-18,-0.0011904762359336019,-0.0035714285913854837,-0.0,-0.0,-0.0,-0.0,1.1895247017376204e-18,-0.0,-0.0,7.336876258770969e-36,0.0011904762359336019,3.1720658023686032e-18,0.004761904943734407,-3.9068863405398977e-35,-1.5860329632228476e-17,-3.1720658023686032e-18,-0.02857142873108387,-0.0,-0.0,1.3022954946776201e-35,-0.0,7.930164816114238e-18,4.335426782346734e-36,-0.0,6.02334876633856e-34,3.1720658023686032e-18,0.014285714365541935,5.0,3.0,7.0,4.0,0.08282596617937088,-0.022397959604859352,-0.03232142701745033,-0.017202381044626236,-0.026428570970892906,0.001700680237263441,0.0035714285913854837,0.0017857142956927419,0.0028571428265422583,0.0035714285913854837,0.0026785715017467737,0.004285714123398066,0.0009920635493472219,0.002142857061699033,0.0023809524718672037,-0.022397959604859352,0.021403061226010323,0.0035714285913854837,0.0017857142956927419,0.0028571428265422583,-0.003401360474526882,-0.0017857142956927419,-0.0008928571478463709,-0.0014285714132711291,-2.2657613523989076e-17,5.866308035558959e-19,9.516196993515503e-19,2.0517727057816445e-18,3.6908621088284396e-18,5.400064167775842e-18,-0.03232142701745033,0.0035714285913854837,0.06803571432828903,0.0026785715017467737,0.004285714123398066,-1.4090877805414242e-17,-0.0035714285913854837,7.848849549780248e-19,1.268826300267926e-18,-0.02142857201397419,-0.0026785715017467737,-0.004285714123398066,7.781732218275272e-18,1.0073322781609516e-17,2.2997477222268738e-17,-0.017202381044626236,0.0017857142956927419,0.0026785715017467737,0.010892856866121292,0.002142857061699033,3.686357696802782e-18,7.969814891596355e-18,-0.0005952381179668009,-1.9837998627281355e-19,2.9658815634717474e-17,-0.0008928571478463709,1.3367990916226468e-19,-0.0011904762359336019,-0.0007142857066355646,9.154256878662566e-19,-0.026428570970892906,0.0028571428265422583,0.004285714123398066,0.002142857061699033,0.034285712987184525,5.5507553822773834e-18,1.284686682012533e-17,-1.7805119553871034e-19,-0.0019047618843615055,4.7422383631673284e-17,2.149950720986775e-19,-0.0028571428265422583,-4.87890977618477e-19,-0.0014285714132711291,-0.0071428571827709675,0.001700680237263441,-0.003401360474526882,-1.4090877805414242e-17,3.686357696802782e-18,5.5507553822773834e-18,0.0008503401186317205,1.3810354183122756e-18,-1.0609516764302874e-19,-1.697522733987248e-19,5.664403380997269e-18,-2.0056178084554326e-33,-3.164547239822726e-33,-3.146890767220705e-19,-6.797283788363024e-19,-7.552537427739386e-19,0.0035714285913854837,-0.0017857142956927419,-0.0035714285913854837,7.969814891596355e-18,1.284686682012533e-17,1.3810354183122756e-18,0.0017857142956927419,-3.965082252960754e-19,-6.34413150133963e-19,4.4751111078106764e-32,-5.947623508688102e-19,-9.516196993515503e-19,-7.930164505921508e-19,-9.516196993515503e-19,-2.3790494034752407e-18,0.0017857142956927419,-0.0008928571478463709,7.848849549780248e-19,-0.0005952381179668009,-1.7805119553871034e-19,-1.0609516764302874e-19,-3.965082252960754e-19,0.00029761905898340046,9.918999313640677e-20,-1.1555579666323415e-33,2.7105054716034394e-21,2.151624859745115e-34,-1.1147229287045506e-35,-6.776263578034403e-21,6.319457630020618e-34,0.0028571428265422583,-0.0014285714132711291,1.268826300267926e-18,-1.9837998627281355e-19,-0.0019047618843615055,-1.697522733987248e-19,-6.34413150133963e-19,9.918999313640677e-20,0.0009523809421807528,-1.1307772600200615e-33,2.1155195048418604e-34,3.3808324147377693e-34,3.490748024201865e-34,4.7546395502059885e-34,9.959784555299734e-34,0.0035714285913854837,-2.2657613523989076e-17,-0.02142857201397419,2.9658815634717474e-17,4.7422383631673284e-17,5.664403380997269e-18,4.4751111078106764e-32,-1.1555579666323415e-33,-1.1307772600200615e-33,0.010714286006987095,-2.9738117026452626e-18,-4.7580988069504814e-18,-3.105981102460823e-18,-4.0443837997922714e-18,-9.119689414454282e-18,0.0026785715017467737,5.866308035558959e-19,-0.0026785715017467737,-0.0008928571478463709,2.149950720986775e-19,-2.0056178084554326e-33,-5.947623508688102e-19,2.7105054716034394e-21,2.1155195048418604e-34,-2.9738117026452626e-18,0.0008928571478463709,-1.3367990916226468e-19,5.421010943206879e-21,-2.710505431213761e-20,3.3523218094490324e-33,0.004285714123398066,9.516196993515503e-19,-0.004285714123398066,1.3367990916226468e-19,-0.0028571428265422583,-3.164547239822726e-33,-9.516196993515503e-19,2.151624859745115e-34,3.3808324147377693e-34,-4.7580988069504814e-18,-1.3367990916226468e-19,0.0028571428265422583,1.8055593228630336e-33,2.3066020349575254e-33,5.3177678331490826e-33,0.0009920635493472219,2.0517727057816445e-18,7.781732218275272e-18,-0.0011904762359336019,-4.87890977618477e-19,-3.146890767220705e-19,-7.930164505921508e-19,-1.1147229287045506e-35,3.490748024201865e-34,-3.105981102460823e-18,5.421010943206879e-21,1.8055593228630336e-33,0.00019841270113829523,7.468881938205513e-20,4.4056469836361075e-20,0.002142857061699033,3.6908621088284396e-18,1.0073322781609516e-17,-0.0007142857066355646,-0.0014285714132711291,-6.797283788363024e-19,-9.516196993515503e-19,-6.776263578034403e-21,4.7546395502059885e-34,-4.0443837997922714e-18,-2.710505431213761e-20,2.3066020349575254e-33,7.468881938205513e-20,0.0004761904710903764,-9.62735559218191e-19,0.0023809524718672037,5.400064167775842e-18,2.2997477222268738e-17,9.154256878662566e-19,-0.0071428571827709675,-7.552537427739386e-19,-2.3790494034752407e-18,6.319457630020618e-34,9.959784555299734e-34,-9.119689414454282e-18,3.3523218094490324e-33,5.3177678331490826e-33,4.4056469836361075e-20,-9.62735559218191e-19,0.0023809524718672037,5.0,3.0,7.0,5.0,0.06964852660894394,-0.018299318850040436,-0.026428570970892906,-0.014047618955373764,-0.018299318850040436,0.0013605442363768816,0.0028571428265422583,0.0014285714132711291,0.0019047618843615055,0.0028571428265422583,0.002142857061699033,0.0028571428265422583,0.0007936508045531809,0.0014285714132711291,0.0013605442363768816,-0.018299318850040436,0.017312925308942795,0.0028571428265422583,0.0014285714132711291,0.0019047618843615055,-0.002721088472753763,-0.0014285714132711291,-0.0007142857066355646,-0.0009523809421807528,-1.4444474582904269e-34,0.0,0.0,-0.0,-0.0,-0.0,-0.026428570970892906,0.0028571428265422583,0.054999999701976776,0.002142857061699033,0.0028571428265422583,-0.0,-0.0028571428265422583,-9.62964972193618e-35,-0.0,-0.017142856493592262,-0.002142857061699033,-0.0028571428265422583,-1.374561799440859e-18,-9.516196993515503e-19,-2.7189135153452095e-18,-0.014047618955373764,0.0014285714132711291,0.002142857061699033,0.008809523656964302,0.0014285714132711291,-0.0,-0.0,-0.0004761904710903764,-0.0,-5.075305201071704e-18,-0.0007142857066355646,-0.0,-0.0009523809421807528,-0.0004761904710903764,-8.049600725083747e-34,-0.018299318850040436,0.0019047618843615055,0.0028571428265422583,0.0014285714132711291,0.017312925308942795,-0.0,-0.0,-0.0,-0.0009523809421807528,-6.865256631416533e-18,-0.0,-0.0014285714132711291,-0.0,-0.0007142857066355646,-0.002721088472753763,0.0013605442363768816,-0.002721088472753763,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0014285714132711291,-0.0028571428265422583,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-9.62964972193618e-35,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,4.81482486096809e-35,-0.0,-0.0,-0.0,-0.0,0.0,0.0019047618843615055,-0.0009523809421807528,-0.0,-0.0,-0.0009523809421807528,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-1.4444474582904269e-34,-0.017142856493592262,-5.075305201071704e-18,-6.865256631416533e-18,-0.0,-0.0,4.81482486096809e-35,-0.0,0.008571428246796131,-0.0,-0.0,6.872808997204295e-19,4.758098496757752e-19,1.3594567576726047e-18,0.002142857061699033,0.0,-0.002142857061699033,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.0,0.0028571428265422583,0.0,-0.0028571428265422583,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,0.0007936508045531809,-0.0,-1.374561799440859e-18,-0.0009523809421807528,-0.0,-0.0,-0.0,-0.0,-0.0,6.872808997204295e-19,-0.0,-0.0,0.00015873015217948705,2.9347503600154247e-36,1.0900501460194117e-34,0.0014285714132711291,-0.0,-9.516196993515503e-19,-0.0004761904710903764,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,4.758098496757752e-19,-0.0,-0.0,2.9347503600154247e-36,0.0002380952355451882,7.546500966751939e-35,0.0013605442363768816,-0.0,-2.7189135153452095e-18,-8.049600725083747e-34,-0.002721088472753763,-0.0,-0.0,0.0,-0.0,1.3594567576726047e-18,0.0,-0.0,1.0900501460194117e-34,7.546500966751939e-35,0.0006802721181884408,5.0,3.0,7.0,6.0,0.06013794243335724,-0.015476190485060215,-0.022363945841789246,-0.011876417323946953,-0.01343537401407957,0.0011337868636474013,0.0023809524718672037,0.0011904762359336019,0.0013605442363768816,0.0023809524718672037,0.0017857142956927419,0.0020408162381500006,0.0006613756413571537,0.0010204081190750003,0.0008503401186317205,-0.015476190485060215,0.01454081665724516,0.0023809524718672037,0.0011904762359336019,0.0013605442363768816,-0.0022675737272948027,-0.0011904762359336019,-0.0005952381179668009,-0.0006802721181884408,1.4444474582904269e-34,1.4147166416969471e-21,1.081190390911534e-21,-8.389500133621417e-22,-3.539042167606978e-20,-1.0232542447946329e-20,-0.022363945841789246,0.0023809524718672037,0.046173468232154846,0.0017857142956927419,0.0020408162381500006,-0.0,-0.0023809524718672037,9.009919419391804e-22,1.6976599700363366e-21,-0.014285714365541935,-0.0017857142956927419,-0.0020408162381500006,-1.1436662221679868e-18,-7.572543824829746e-19,-1.5537320152519887e-18,-0.011876417323946953,0.0011904762359336019,0.0017857142956927419,0.007397959008812904,0.0010204081190750003,-0.0,-0.0,-0.00039682540227659047,-4.750578067896452e-20,-4.286064881674646e-18,-0.0005952381179668009,-2.981555974335137e-19,-0.0007936508045531809,-0.0003401360590942204,-9.017937255219886e-20,-0.01343537401407957,0.0013605442363768816,0.0020408162381500006,0.0010204081190750003,0.010051020421087742,-0.0,-0.0,7.41240262759176e-21,-0.0005442177061922848,-4.913869737593711e-18,-2.1770638920086734e-19,-0.0008163265301845968,-0.0,-0.0004081632650922984,-0.0012755101779475808,0.0011337868636474013,-0.0022675737272948027,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,9.009919419391804e-22,-0.00039682540227659047,7.41240262759176e-21,-0.0,-0.0,0.00019841270113829523,1.6779000772113813e-22,-4.81482486096809e-35,0.0,-3.603967969705113e-22,-0.0,-3.3881317890172014e-21,5.116970874176336e-22,0.0013605442363768816,-0.0006802721181884408,1.6976599700363366e-21,-4.750578067896452e-20,-0.0005442177061922848,-0.0,-0.0,1.6779000772113813e-22,0.0002721088530961424,-0.0,-5.658866566787789e-22,-0.0,3.3558001544227627e-22,1.82219261710137e-20,3.478980696420602e-21,0.0023809524718672037,1.4444474582904269e-34,-0.014285714365541935,-4.286064881674646e-18,-4.913869737593711e-18,-0.0,-0.0,-4.81482486096809e-35,-0.0,0.0071428571827709675,-1.3593963668082924e-35,1.102473192762184e-34,5.727341175662168e-19,3.398641894181512e-19,7.788554286979727e-19,0.0017857142956927419,1.4147166416969471e-21,-0.0017857142956927419,-0.0005952381179668009,-2.1770638920086734e-19,-0.0,-0.0,0.0,-5.658866566787789e-22,-1.3593963668082924e-35,0.0005952381179668009,2.260355292826052e-19,-0.0,-0.0,-1.3262968705235497e-21,0.0020408162381500006,1.081190390911534e-21,-0.0020408162381500006,-2.981555974335137e-19,-0.0008163265301845968,-0.0,-0.0,-3.603967969705113e-22,-0.0,1.102473192762184e-34,2.260355292826052e-19,0.0008163265301845968,-7.207935939410226e-22,3.1010406628547735e-20,0.0,0.0006613756413571537,-8.389500133621417e-22,-1.1436662221679868e-18,-0.0007936508045531809,-0.0,-0.0,-0.0,-0.0,3.3558001544227627e-22,5.727341175662168e-19,-0.0,-7.207935939410226e-22,0.00013227513409219682,-5.733761551244e-21,-2.148865789602881e-21,0.0010204081190750003,-3.539042167606978e-20,-7.572543824829746e-19,-0.0003401360590942204,-0.0004081632650922984,-0.0,-0.0,-3.3881317890172014e-21,1.82219261710137e-20,3.398641894181512e-19,-0.0,3.1010406628547735e-20,-5.733761551244e-21,0.0001360544265480712,4.1779962161864306e-20,0.0008503401186317205,-1.0232542447946329e-20,-1.5537320152519887e-18,-9.017937255219886e-20,-0.0012755101779475808,-0.0,-0.0,5.116970874176336e-22,3.478980696420602e-21,7.788554286979727e-19,-1.3262968705235497e-21,0.0,-2.148865789602881e-21,4.1779962161864306e-20,0.00025510202976875007,5.0,3.0,7.0,7.0,0.05293569713830948,-0.013411078602075577,-0.019387755542993546,-0.010289115831255913,-0.010289115831255913,0.0009718172950670123,0.0020408162381500006,0.0010204081190750003,0.0010204081190750003,0.0020408162381500006,0.0015306122368201613,0.0015306122368201613,0.0005668934318237007,0.0007653061184100807,0.0005668934318237007,-0.013411078602075577,0.012536442838609219,0.0020408162381500006,0.0010204081190750003,0.0010204081190750003,-0.0019436345901340246,-0.0010204081190750003,-0.0005102040595375001,-0.0005102040595375001,-7.877913471180488e-18,2.009047586372362e-18,1.9882028417311787e-18,1.6185853534204072e-18,2.0978458387202356e-18,1.6460911767393267e-18,-0.019387755542993546,0.0020408162381500006,0.03979591652750969,0.0015306122368201613,0.0015306122368201613,-3.572262193371505e-18,-0.0020408162381500006,2.2715895429178643e-18,2.24771090658499e-18,-0.01224489789456129,-0.0015306122368201613,-0.0015306122368201613,4.6965913109622634e-18,4.402044288951012e-18,4.680109323666838e-18,-0.010289115831255913,0.0010204081190750003,0.0015306122368201613,0.0063775512389838696,0.0007653061184100807,2.622047977278259e-18,5.385171194437131e-18,-0.0003401360590942204,1.062621030303996e-18,1.6001939644375104e-17,-0.0005102040595375001,1.5720931501039814e-18,-0.0006802721181884408,-0.00025510202976875007,1.6614022898776833e-18,-0.010289115831255913,0.0010204081190750003,0.0015306122368201613,0.0007653061184100807,0.0063775512389838696,2.622047977278259e-18,5.385171194437131e-18,9.397636162342512e-19,-0.0003401360590942204,1.6001939644375104e-17,1.3964123957069066e-18,-0.0005102040595375001,1.9109063290057016e-18,-0.00025510202976875007,-0.0006802721181884408,0.0009718172950670123,-0.0019436345901340246,-3.572262193371505e-18,2.622047977278259e-18,2.622047977278259e-18,0.00048590864753350616,-3.4569923131902535e-20,-1.8488670592811885e-19,-1.8488670592811885e-19,2.2657612283218157e-18,-1.21380069495725e-19,-1.21380069495725e-19,-1.7982231847715708e-19,-2.4276013899145e-19,-1.7982231847715708e-19,0.0020408162381500006,-0.0010204081190750003,-0.0020408162381500006,5.385171194437131e-18,5.385171194437131e-18,-3.4569923131902535e-20,0.0010204081190750003,-4.248302432350375e-19,-4.248302432350375e-19,6.10368366820239e-20,-4.429794647538518e-19,-4.429794647538518e-19,-4.342709072648935e-19,-3.823472034018973e-19,-4.342709072648935e-19,0.0010204081190750003,-0.0005102040595375001,2.2715895429178643e-18,-0.0003401360590942204,9.397636162342512e-19,-1.8488670592811885e-19,-4.248302432350375e-19,0.0001700680295471102,-9.03829494557664e-20,-1.699320947090756e-19,-1.7686048197163733e-19,-1.2718376254385311e-19,-8.809142651444724e-20,-8.809142651444724e-20,-4.710389045471166e-20,0.0010204081190750003,-0.0005102040595375001,2.24771090658499e-18,1.062621030303996e-18,-0.0003401360590942204,-1.8488670592811885e-19,-4.248302432350375e-19,-9.03829494557664e-20,0.0001700680295471102,-1.699320947090756e-19,-1.26678135469733e-19,-1.6940658945086007e-19,-4.593768211328553e-20,-1.317392400476387e-19,-9.609383671657518e-20,0.0020408162381500006,-7.877913471180488e-18,-0.01224489789456129,1.6001939644375104e-17,1.6001939644375104e-17,2.2657612283218157e-18,6.10368366820239e-20,-1.699320947090756e-19,-1.699320947090756e-19,0.006122448947280645,-1.5293888136075891e-18,-1.5293888136075891e-18,-1.5482702450648777e-18,-1.2744907297051125e-18,-1.5482702450648777e-18,0.0015306122368201613,2.009047586372362e-18,-0.0015306122368201613,-0.0005102040595375001,1.3964123957069066e-18,-1.21380069495725e-19,-4.429794647538518e-19,-1.7686048197163733e-19,-1.26678135469733e-19,-1.5293888136075891e-18,0.0005102040595375001,-2.0438754056784476e-19,-1.420930339255708e-19,-1.3213713977167085e-19,-6.926316726090936e-20,0.0015306122368201613,1.9882028417311787e-18,-0.0015306122368201613,1.5720931501039814e-18,-0.0005102040595375001,-1.21380069495725e-19,-4.429794647538518e-19,-1.2718376254385311e-19,-1.6940658945086007e-19,-1.5293888136075891e-18,-2.0438754056784476e-19,0.0005102040595375001,-7.027441494680104e-20,-1.8816928171615604e-19,-1.3761027076750746e-19,0.0005668934318237007,1.6185853534204072e-18,4.6965913109622634e-18,-0.0006802721181884408,1.9109063290057016e-18,-1.7982231847715708e-19,-4.342709072648935e-19,-8.809142651444724e-20,-4.593768211328553e-20,-1.5482702450648777e-18,-1.420930339255708e-19,-7.027441494680104e-20,0.00011337868636474013,-1.3552527156068805e-19,-2.2032756946568303e-19,0.0007653061184100807,2.0978458387202356e-18,4.402044288951012e-18,-0.00025510202976875007,-0.00025510202976875007,-2.4276013899145e-19,-3.823472034018973e-19,-8.809142651444724e-20,-1.317392400476387e-19,-1.2744907297051125e-18,-1.3213713977167085e-19,-1.8816928171615604e-19,-1.3552527156068805e-19,8.50340147735551e-05,-5.829811275969471e-20,0.0005668934318237007,1.6460911767393267e-18,4.680109323666838e-18,1.6614022898776833e-18,-0.0006802721181884408,-1.7982231847715708e-19,-4.342709072648935e-19,-4.710389045471166e-20,-9.609383671657518e-20,-1.5482702450648777e-18,-6.926316726090936e-20,-1.3761027076750746e-19,-2.2032756946568303e-19,-5.829811275969471e-20,0.00011337868636474013,5.0,3.0,7.0,8.0,0.04728599637746811,-0.011833900585770607,-0.01711309514939785,-0.00907738134264946,-0.008134921081364155,0.0008503401186317205,0.0017857142956927419,0.0008928571478463709,0.0007936508045531809,0.0017857142956927419,0.0013392857508733869,0.0011904762359336019,0.0004960317746736109,0.0005952381179668009,0.00039682540227659047,-0.011833900585770607,0.01101899053901434,0.0017857142956927419,0.0008928571478463709,0.0007936508045531809,-0.001700680237263441,-0.0008928571478463709,-0.00044642857392318547,-0.00039682540227659047,-1.1328806761994538e-17,3.2573788326030614e-19,-3.156660804230722e-20,1.0500767329170527e-18,9.099569900415154e-19,4.798563655335963e-19,-0.01711309514939785,0.0017857142956927419,0.0349702388048172,0.0013392857508733869,0.0011904762359336019,-7.234251976509088e-18,-0.0017857142956927419,3.6070195472291593e-19,3.1474240402218603e-19,-0.010714286006987095,-0.0013392857508733869,-0.0011904762359336019,3.953299220231301e-18,2.572045736430041e-18,2.4340455404765945e-18,-0.00907738134264946,0.0008928571478463709,0.0013392857508733869,0.0056051588617265224,0.0005952381179668009,1.8998229359781035e-18,4.130293951031416e-18,-0.00029761905898340046,-8.735025652972838e-21,1.5397735492103095e-17,-0.00044642857392318547,6.098637220230962e-20,-0.0005952381179668009,-0.00019841270113829523,-3.69303107979213e-19,-0.008134921081364155,0.0007936508045531809,0.0011904762359336019,0.0005952381179668009,0.004308389965444803,1.1687594698328189e-18,3.2664725460647397e-18,-2.6685802988543937e-19,-0.00022675737272948027,1.1914128035243186e-17,-2.436502628787395e-19,-0.0003401360590942204,-5.014435047745458e-19,-0.0001700680295471102,-0.00039682540227659047,0.0008503401186317205,-0.001700680237263441,-7.234251976509088e-18,1.8998229359781035e-18,1.1687594698328189e-18,0.00042517005931586027,6.905177091561378e-19,-5.304758382151437e-20,-4.0417207952077335e-20,2.8322016904986345e-18,-1.0662511608610606e-33,5.394669683561683e-20,-1.5734453836103525e-19,-1.6184009696919903e-19,-6.293781405194439e-20,0.0017857142956927419,-0.0008928571478463709,-0.0017857142956927419,4.130293951031416e-18,3.2664725460647397e-18,6.905177091561378e-19,0.0008928571478463709,-1.982541126480377e-19,-1.5105075372466654e-19,2.2793127866663922e-32,-2.973811754344051e-19,-2.2657611766230274e-19,-3.965082252960754e-19,-2.4545747157140886e-19,-2.64338825480515e-19,0.0008928571478463709,-0.00044642857392318547,3.6070195472291593e-19,-0.00029761905898340046,-2.6685802988543937e-19,-5.304758382151437e-20,-1.982541126480377e-19,0.00014880952949170023,2.935878543922076e-20,-1.1555579666323415e-33,-9.147955991905157e-21,1.8071469772408548e-20,-6.776263578034403e-21,8.470329472543003e-21,2.1747282700009475e-20,0.0007936508045531809,-0.00039682540227659047,3.1474240402218603e-19,-8.735025652972838e-21,-0.00022675737272948027,-4.0417207952077335e-20,-1.5105075372466654e-19,2.935878543922076e-20,0.00011337868636474013,-9.62964972193618e-35,-2.608109205647639e-22,-3.3881317890172014e-21,-1.1033238336716671e-21,-1.2157179283649118e-20,-8.288042776225898e-21,0.0017857142956927419,-1.1328806761994538e-17,-0.010714286006987095,1.5397735492103095e-17,1.1914128035243186e-17,2.8322016904986345e-18,2.2793127866663922e-32,-1.1555579666323415e-33,-9.62964972193618e-35,0.0053571430034935474,-1.4869058513226313e-18,-1.1328806141609079e-18,-1.5529905512304115e-18,-1.0290332581337037e-18,-9.912706020142797e-19,0.0013392857508733869,3.2573788326030614e-19,-0.0013392857508733869,-0.00044642857392318547,-2.436502628787395e-19,-1.0662511608610606e-33,-2.973811754344051e-19,-9.147955991905157e-21,-2.608109205647639e-22,-1.4869058513226313e-18,0.00044642857392318547,-3.304336131143592e-20,-1.6210907930229508e-20,1.0164395367051604e-20,3.2585933663868366e-20,0.0011904762359336019,-3.156660804230722e-20,-0.0011904762359336019,6.098637220230962e-20,-0.0003401360590942204,5.394669683561683e-20,-2.2657611766230274e-19,1.8071469772408548e-20,-3.3881317890172014e-21,-1.1328806141609079e-18,-3.304336131143592e-20,0.0003401360590942204,-1.6197482805043644e-21,-1.530216763239618e-20,-5.881285255304354e-21,0.0004960317746736109,1.0500767329170527e-18,3.953299220231301e-18,-0.0005952381179668009,-5.014435047745458e-19,-1.5734453836103525e-19,-3.965082252960754e-19,-6.776263578034403e-21,-1.1033238336716671e-21,-1.5529905512304115e-18,-1.6210907930229508e-20,-1.6197482805043644e-21,9.920635056914762e-05,5.0522582689953573e-20,4.552560399656634e-20,0.0005952381179668009,9.099569900415154e-19,2.572045736430041e-18,-0.00019841270113829523,-0.0001700680295471102,-1.6184009696919903e-19,-2.4545747157140886e-19,8.470329472543003e-21,-1.2157179283649118e-20,-1.0290332581337037e-18,1.0164395367051604e-20,-1.530216763239618e-20,5.0522582689953573e-20,5.668934318237007e-05,-7.063444692400188e-21,0.00039682540227659047,4.798563655335963e-19,2.4340455404765945e-18,-3.69303107979213e-19,-0.00039682540227659047,-6.293781405194439e-20,-2.64338825480515e-19,2.1747282700009475e-20,-8.288042776225898e-21,-9.912706020142797e-19,3.2585933663868366e-20,-5.881285255304354e-21,4.552560399656634e-20,-7.063444692400188e-21,5.668934318237007e-05,5.0,3.0,8.0,3.0,0.09169973433017731,-0.025529099628329277,-0.03680555522441864,-0.017592592164874077,-0.03680555522441864,0.0019841270986944437,0.004166666883975267,0.0018518518190830946,0.004166666883975267,0.004166666883975267,0.0027777778450399637,0.0062500000931322575,0.0009259259095415473,0.0027777778450399637,0.004166666883975267,-0.025529099628329277,0.024669311940670013,0.004166666883975267,0.0018518518190830946,0.004166666883975267,-0.003968254197388887,-0.0020833334419876337,-0.0009259259095415473,-0.0020833334419876337,-1.0408340855860843e-17,-2.168404344971009e-19,-8.673617379884035e-19,4.553649124439119e-18,3.469446951953614e-18,-8.673617379884035e-19,-0.03680555522441864,0.004166666883975267,0.07847221940755844,0.0027777778450399637,0.0062500000931322575,-1.4701506876299103e-18,-0.004166666883975267,2.981555974335137e-19,-4.7704895589362195e-18,-0.02500000037252903,-0.0027777778450399637,-0.0062500000931322575,7.37257477290143e-18,6.7220534694101275e-18,2.168404344971009e-17,-0.017592592164874077,0.0018518518190830946,0.0027777778450399637,0.009656084701418877,0.0027777778450399637,7.78654310071788e-18,6.409271250795145e-18,-0.0005291005363687873,3.0357660829594124e-18,1.0261448468322451e-17,-0.0007936508045531809,4.7704895589362195e-18,-0.0009259259095415473,-0.0007936508045531809,-1.5612511283791264e-17,-0.03680555522441864,0.004166666883975267,0.0062500000931322575,0.0027777778450399637,0.07847221940755844,2.710505431213761e-18,-1.9505624532460477e-19,-1.374307648197652e-18,-0.004166666883975267,2.581008155648992e-17,-5.773626377030302e-18,-0.0062500000931322575,8.673617379884035e-19,-0.0027777778450399637,-0.02500000037252903,0.0019841270986944437,-0.003968254197388887,-1.4701506876299103e-18,7.78654310071788e-18,2.710505431213761e-18,0.0009920635493472219,-2.445991424389144e-19,-8.146456209479757e-19,-3.130244791368841e-19,1.1676285071403057e-18,-1.9617328811837228e-19,1.9198523390292508e-19,-6.776263578034403e-19,-5.149960319306146e-19,-1.6263032587282567e-19,0.004166666883975267,-0.0020833334419876337,-0.004166666883975267,6.409271250795145e-18,-1.9505624532460477e-19,-2.445991424389144e-19,0.0020833334419876337,-2.168404344971009e-19,4.101608930050514e-19,4.556610017441752e-18,4.9976903272079705e-19,9.099695011482803e-19,-7.589415207398531e-19,-6.505213034913027e-19,2.710505431213761e-19,0.0018518518190830946,-0.0009259259095415473,2.981555974335137e-19,-0.0005291005363687873,-1.374307648197652e-18,-8.146456209479757e-19,-2.168404344971009e-19,0.00026455026818439364,-1.979560691335772e-19,-1.3062676290311158e-21,-3.6941389363574544e-21,1.6833284439228088e-19,-1.8973538018496328e-19,-5.421010862427522e-20,7.589415207398531e-19,0.004166666883975267,-0.0020833334419876337,-4.7704895589362195e-18,3.0357660829594124e-18,-0.004166666883975267,-3.130244791368841e-19,4.101608930050514e-19,-1.979560691335772e-19,0.0020833334419876337,1.6263032587282567e-18,2.7920587187690126e-19,-7.916179466702651e-19,-3.7947076036992655e-19,-3.5236570605778894e-19,-1.6263032587282567e-19,0.004166666883975267,-1.0408340855860843e-17,-0.02500000037252903,1.0261448468322451e-17,2.581008155648992e-17,1.1676285071403057e-18,4.556610017441752e-18,-1.3062676290311158e-21,1.6263032587282567e-18,0.012500000186264515,6.0239179954990475e-18,2.6337124646861757e-18,-2.0599841277224584e-18,-1.8431436932253575e-18,-1.2739375526704677e-17,0.0027777778450399637,-2.168404344971009e-19,-0.0027777778450399637,-0.0007936508045531809,-5.773626377030302e-18,-1.9617328811837228e-19,4.9976903272079705e-19,-3.6941389363574544e-21,2.7920587187690126e-19,6.0239179954990475e-18,0.0007936508045531809,1.3010426069826053e-18,-2.710505431213761e-19,-4.0657581468206416e-20,1.870248747537495e-18,0.0062500000931322575,-8.673617379884035e-19,-0.0062500000931322575,4.7704895589362195e-18,-0.0062500000931322575,1.9198523390292508e-19,9.099695011482803e-19,1.6833284439228088e-19,-7.916179466702651e-19,2.6337124646861757e-18,1.3010426069826053e-18,0.0062500000931322575,-6.505213034913027e-19,-1.1926223897340549e-18,-8.673617379884035e-19,0.0009259259095415473,4.553649124439119e-18,7.37257477290143e-18,-0.0009259259095415473,8.673617379884035e-19,-6.776263578034403e-19,-7.589415207398531e-19,-1.8973538018496328e-19,-3.7947076036992655e-19,-2.0599841277224584e-18,-2.710505431213761e-19,-6.505213034913027e-19,0.00013227513409219682,-1.6263032587282567e-19,6.505213034913027e-19,0.0027777778450399637,3.469446951953614e-18,6.7220534694101275e-18,-0.0007936508045531809,-0.0027777778450399637,-5.149960319306146e-19,-6.505213034913027e-19,-5.421010862427522e-20,-3.5236570605778894e-19,-1.8431436932253575e-18,-4.0657581468206416e-20,-1.1926223897340549e-18,-1.6263032587282567e-19,0.0007936508045531809,6.3025488217538595e-18,0.004166666883975267,-8.673617379884035e-19,2.168404344971009e-17,-1.5612511283791264e-17,-0.02500000037252903,-1.6263032587282567e-19,2.710505431213761e-19,7.589415207398531e-19,-1.6263032587282567e-19,-1.2739375526704677e-17,1.870248747537495e-18,-8.673617379884035e-19,6.505213034913027e-19,6.3025488217538595e-18,0.012500000186264515,5.0,3.0,8.0,4.0,0.07408729940652847,-0.019771825522184372,-0.028541667386889458,-0.013611110858619213,-0.023333333432674408,0.0014880952658131719,0.0031250000465661287,0.0013888889225199819,0.0024999999441206455,0.0031250000465661287,0.0020833334419876337,0.0037499999161809683,0.0006944444612599909,0.0016666667070239782,0.0020833334419876337,-0.019771825522184372,0.018814483657479286,0.0031250000465661287,0.0013888889225199819,0.0024999999441206455,-0.0029761905316263437,-0.0015625000232830644,-0.0006944444612599909,-0.0012499999720603228,-8.673617379884035e-19,-1.6263032587282567e-18,-8.673617379884035e-19,-3.469446951953614e-18,-3.144186300207963e-18,-3.469446951953614e-18,-0.028541667386889458,0.0031250000465661287,0.05979166552424431,0.0020833334419876337,0.0037499999161809683,-5.012861750220382e-18,-0.0031250000465661287,-4.0657581468206416e-19,2.8189256484623115e-18,-0.01875000074505806,-0.0020833334419876337,-0.0037499999161809683,-4.2825985813177425e-18,-2.6020852139652106e-18,9.107298248878237e-18,-0.013611110858619213,0.0013888889225199819,0.0020833334419876337,0.007361111231148243,0.0016666667070239782,-4.7256431348460446e-18,-5.403932477910446e-18,-0.00039682540227659047,-9.75781955236954e-19,-9.486609363389941e-18,-0.0005952381179668009,-6.505213034913027e-19,-0.0006944444612599909,-0.0004761904710903764,-2.168404344971009e-18,-0.023333333432674408,0.0024999999441206455,0.0037499999161809683,0.0016666667070239782,0.030138889327645302,-5.502326025363935e-18,-4.2189925281154775e-18,-3.6915506849896017e-19,-0.0016666667070239782,1.6770756047267615e-17,3.1000210593522253e-18,-0.0024999999441206455,-2.168404344971009e-18,-0.0011111111380159855,-0.0062500000931322575,0.0014880952658131719,-0.0029761905316263437,-5.012861750220382e-18,-4.7256431348460446e-18,-5.502326025363935e-18,0.0007440476329065859,5.731251155020129e-19,8.361644079284644e-21,5.372053725509174e-20,7.655160039472129e-19,3.9338623886914714e-19,5.51691418264692e-19,4.607859233063394e-19,6.098637220230962e-19,7.724940478959219e-19,0.0031250000465661287,-0.0015625000232830644,-0.0031250000465661287,-5.403932477910446e-18,-4.2189925281154775e-18,5.731251155020129e-19,0.0015625000232830644,1.6263032587282567e-19,8.401908711187797e-20,-1.706224312139788e-18,2.0518929830125886e-19,-3.25771739504284e-20,4.87890977618477e-19,5.149960319306146e-19,6.776263578034403e-19,0.0013888889225199819,-0.0006944444612599909,-4.0657581468206416e-19,-0.00039682540227659047,-3.6915506849896017e-19,8.361644079284644e-21,1.6263032587282567e-19,0.00019841270113829523,-5.973269597345455e-20,4.319244737480676e-20,8.506059797596173e-21,1.7802884873747433e-20,1.3552527156068805e-19,1.0842021724855044e-19,4.0657581468206416e-20,0.0024999999441206455,-0.0012499999720603228,2.8189256484623115e-18,-9.75781955236954e-19,-0.0016666667070239782,5.372053725509174e-20,8.401908711187797e-20,-5.973269597345455e-20,0.0008333333535119891,-5.692061405548898e-19,-1.4286216972357734e-19,-9.186647203498612e-19,2.168404344971009e-19,-1.6263032587282567e-19,-5.827586677109586e-19,0.0031250000465661287,-8.673617379884035e-19,-0.01875000074505806,-9.486609363389941e-18,1.6770756047267615e-17,7.655160039472129e-19,-1.706224312139788e-18,4.319244737480676e-20,-5.692061405548898e-19,0.00937500037252903,-7.932171452882715e-19,-8.701993810797667e-18,9.75781955236954e-19,9.215718466126788e-19,-3.496552006265752e-18,0.0020833334419876337,-1.6263032587282567e-18,-0.0020833334419876337,-0.0005952381179668009,3.1000210593522253e-18,3.9338623886914714e-19,2.0518929830125886e-19,8.506059797596173e-21,-1.4286216972357734e-19,-7.932171452882715e-19,0.0005952381179668009,-8.673617379884035e-19,1.6263032587282567e-19,2.0328790734103208e-20,-6.2341624917916505e-19,0.0037499999161809683,-8.673617379884035e-19,-0.0037499999161809683,-6.505213034913027e-19,-0.0024999999441206455,5.51691418264692e-19,-3.25771739504284e-20,1.7802884873747433e-20,-9.186647203498612e-19,-8.701993810797667e-18,-8.673617379884035e-19,0.0024999999441206455,2.710505431213761e-19,-3.6591823321385775e-19,-8.402566836762659e-19,0.0006944444612599909,-3.469446951953614e-18,-4.2825985813177425e-18,-0.0006944444612599909,-2.168404344971009e-18,4.607859233063394e-19,4.87890977618477e-19,1.3552527156068805e-19,2.168404344971009e-19,9.75781955236954e-19,1.6263032587282567e-19,2.710505431213761e-19,9.920635056914762e-05,1.0842021724855044e-19,3.7947076036992655e-19,0.0016666667070239782,-3.144186300207963e-18,-2.6020852139652106e-18,-0.0004761904710903764,-0.0011111111380159855,6.098637220230962e-19,5.149960319306146e-19,1.0842021724855044e-19,-1.6263032587282567e-19,9.215718466126788e-19,2.0328790734103208e-20,-3.6591823321385775e-19,1.0842021724855044e-19,0.0003174603043589741,-1.6795437048794666e-19,0.0020833334419876337,-3.469446951953614e-18,9.107298248878237e-18,-2.168404344971009e-18,-0.0062500000931322575,7.724940478959219e-19,6.776263578034403e-19,4.0657581468206416e-20,-5.827586677109586e-19,-3.496552006265752e-18,-6.2341624917916505e-19,-8.402566836762659e-19,3.7947076036992655e-19,-1.6795437048794666e-19,0.0020833334419876337,5.0,3.0,8.0,5.0,0.062261905521154404,-0.016150793060660362,-0.023333333432674408,-0.011111111380159855,-0.016150793060660362,0.0011904762359336019,0.0024999999441206455,0.0011111111380159855,0.0016666667070239782,0.0024999999441206455,0.0016666667070239782,0.0024999999441206455,0.0005555555690079927,0.0011111111380159855,0.0011904762359336019,-0.016150793060660362,0.015218254178762436,0.0024999999441206455,0.0011111111380159855,0.0016666667070239782,-0.0023809524718672037,-0.0012499999720603228,-0.0005555555690079927,-0.0008333333535119891,1.3010426069826053e-18,1.0842021724855044e-19,3.2526065174565133e-18,-1.6263032587282567e-18,5.421010862427522e-20,3.2526065174565133e-18,-0.023333333432674408,0.0024999999441206455,0.04833333194255829,0.0016666667070239782,0.0024999999441206455,4.902255294612854e-18,-0.0024999999441206455,2.846030702774449e-19,5.421010862427522e-19,-0.014999999664723873,-0.0016666667070239782,-0.0024999999441206455,-3.74049749507499e-18,-1.463672932855431e-18,2.3852447794681098e-18,-0.011111111380159855,0.0011111111380159855,0.0016666667070239782,0.0059523810632526875,0.0011111111380159855,6.702340773136011e-20,-3.107914843937819e-18,-0.0003174603043589741,-2.168404344971009e-19,-9.216106413834075e-18,-0.0004761904710903764,-4.336808689942018e-19,-0.0005555555690079927,-0.0003174603043589741,2.168404344971009e-18,-0.016150793060660362,0.0016666667070239782,0.0024999999441206455,0.0011111111380159855,0.015218254178762436,2.5478751053409354e-18,-4.408539724711085e-19,1.5162480156014186e-18,-0.0008333333535119891,-4.56981388796963e-18,1.5471852942939378e-18,-0.0012499999720603228,-4.336808689942018e-19,-0.0005555555690079927,-0.0023809524718672037,0.0011904762359336019,-0.0023809524718672037,4.902255294612854e-18,6.702340773136011e-20,2.5478751053409354e-18,0.0005952381179668009,-4.484920548498466e-19,-6.551327320087092e-19,-2.684273983026056e-19,-1.1634492804929581e-18,-6.884264931700272e-20,-5.942523940211712e-19,1.8973538018496328e-19,1.3552527156068805e-20,-3.2526065174565133e-19,0.0024999999441206455,-0.0012499999720603228,-0.0024999999441206455,-3.107914843937819e-18,-4.408539724711085e-19,-4.484920548498466e-19,0.0012499999720603228,4.0657581468206416e-20,-8.98156021063702e-21,2.0091383694445895e-18,3.1804045067261737e-19,8.756013745429238e-20,2.710505431213761e-19,1.4907779871675686e-19,-2.710505431213761e-20,0.0011111111380159855,-0.0005555555690079927,2.846030702774449e-19,-0.0003174603043589741,1.5162480156014186e-18,-6.551327320087092e-19,4.0657581468206416e-20,0.00015873015217948705,-1.610850232416059e-19,1.1270415979156843e-19,-3.981919837446698e-20,-1.8813921887076857e-19,8.131516293641283e-20,-4.0657581468206416e-20,-1.8295911660692887e-19,0.0016666667070239782,-0.0008333333535119891,5.421010862427522e-19,-2.168404344971009e-19,-0.0008333333535119891,-2.684273983026056e-19,-8.98156021063702e-21,-1.610850232416059e-19,0.00041666667675599456,-1.3552527156068805e-19,-4.5288429342962366e-20,-1.1512734662195131e-19,9.486769009248164e-20,-9.486769009248164e-20,-8.131516293641283e-19,0.0024999999441206455,1.3010426069826053e-18,-0.014999999664723873,-9.216106413834075e-18,-4.56981388796963e-18,-1.1634492804929581e-18,2.0091383694445895e-18,1.1270415979156843e-19,-1.3552527156068805e-19,0.007499999832361937,-2.640918345194855e-19,6.595259399407666e-19,1.0842021724855044e-18,7.318364664277155e-19,3.5236570605778894e-19,0.0016666667070239782,1.0842021724855044e-19,-0.0016666667070239782,-0.0004761904710903764,1.5471852942939378e-18,-6.884264931700272e-20,3.1804045067261737e-19,-3.981919837446698e-20,-4.5288429342962366e-20,-2.640918345194855e-19,0.0004761904710903764,-2.981555974335137e-19,5.421010862427522e-20,-2.710505431213761e-20,-2.371692252312041e-19,0.0024999999441206455,3.2526065174565133e-18,-0.0024999999441206455,-4.336808689942018e-19,-0.0012499999720603228,-5.942523940211712e-19,8.756013745429238e-20,-1.8813921887076857e-19,-1.1512734662195131e-19,6.595259399407666e-19,-2.981555974335137e-19,0.0012499999720603228,1.8973538018496328e-19,-1.4907779871675686e-19,-1.2061749168901237e-18,0.0005555555690079927,-1.6263032587282567e-18,-3.74049749507499e-18,-0.0005555555690079927,-4.336808689942018e-19,1.8973538018496328e-19,2.710505431213761e-19,8.131516293641283e-20,9.486769009248164e-20,1.0842021724855044e-18,5.421010862427522e-20,1.8973538018496328e-19,7.936507608974352e-05,2.710505431213761e-20,5.421010862427522e-20,0.0011111111380159855,5.421010862427522e-20,-1.463672932855431e-18,-0.0003174603043589741,-0.0005555555690079927,1.3552527156068805e-20,1.4907779871675686e-19,-4.0657581468206416e-20,-9.486769009248164e-20,7.318364664277155e-19,-2.710505431213761e-20,-1.4907779871675686e-19,2.710505431213761e-20,0.00015873015217948705,-9.20697103114904e-19,0.0011904762359336019,3.2526065174565133e-18,2.3852447794681098e-18,2.168404344971009e-18,-0.0023809524718672037,-3.2526065174565133e-19,-2.710505431213761e-20,-1.8295911660692887e-19,-8.131516293641283e-19,3.5236570605778894e-19,-2.371692252312041e-19,-1.2061749168901237e-18,5.421010862427522e-20,-9.20697103114904e-19,0.0005952381179668009,5.0,3.0,8.0,6.0,0.05373677238821983,-0.013657407835125923,-0.01974206417798996,-0.009391534142196178,-0.01185515895485878,0.0009920635493472219,0.0020833334419876337,0.0009259259095415473,0.0011904762359336019,0.0020833334419876337,0.0013888889225199819,0.0017857142956927419,0.00046296295477077365,0.0007936508045531809,0.0007440476329065859,-0.013657407835125923,0.012781084515154362,0.0020833334419876337,0.0009259259095415473,0.0011904762359336019,-0.0019841270986944437,-0.0010416667209938169,-0.00046296295477077365,-0.0005952381179668009,-0.0,1.1858461261560205e-20,0.0,-2.371692252312041e-20,-1.1858461261560205e-20,-0.0,-0.01974206417798996,0.0020833334419876337,0.04057539626955986,0.0013888889225199819,0.0017857142956927419,-0.0,-0.0020833334419876337,1.1858461261560205e-20,-0.0,-0.012500000186264515,-0.0013888889225199819,-0.0017857142956927419,-7.504037243485987e-19,-5.2867765096103e-19,-1.3629969872967551e-18,-0.009391534142196178,0.0009259259095415473,0.0013888889225199819,0.004998110234737396,0.0007936508045531809,-0.0,-0.0,-0.00026455026818439364,-0.0,-3.359305785440647e-18,-0.00039682540227659047,-0.0,-0.00046296295477077365,-0.00022675737272948027,-3.6629790687614464e-34,-0.01185515895485878,0.0011904762359336019,0.0017857142956927419,0.0007936508045531809,0.008834325708448887,-0.0,-0.0,-1.1858461261560205e-20,-0.0004761904710903764,-4.3326785771435405e-18,-0.0,-0.0007142857066355646,-0.0,-0.0003174603043589741,-0.0011160714784637094,0.0009920635493472219,-0.0019841270986944437,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0010416667209938169,-0.0020833334419876337,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00046296295477077365,1.1858461261560205e-20,-0.00026455026818439364,-1.1858461261560205e-20,-0.0,-0.0,0.00013227513409219682,-0.0,-0.0,-3.3881317890172014e-21,-0.0,6.776263578034403e-21,3.3881317890172014e-21,0.0,0.0011904762359336019,-0.0005952381179668009,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.012500000186264515,-3.359305785440647e-18,-4.3326785771435405e-18,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-4.81482486096809e-35,-0.0,3.854941086447787e-19,2.64338825480515e-19,6.814984936483776e-19,0.0013888889225199819,1.1858461261560205e-20,-0.0013888889225199819,-0.00039682540227659047,-0.0,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-4.81482486096809e-35,0.00039682540227659047,-0.0,-5.881285255304354e-21,-0.0,-0.0,0.0017857142956927419,0.0,-0.0017857142956927419,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.00046296295477077365,-2.371692252312041e-20,-7.504037243485987e-19,-0.00046296295477077365,-0.0,-0.0,-0.0,6.776263578034403e-21,-0.0,3.854941086447787e-19,-5.881285255304354e-21,-0.0,6.613756704609841e-05,2.4931536682355446e-21,4.2034185658592434e-35,0.0007936508045531809,-1.1858461261560205e-20,-5.2867765096103e-19,-0.00022675737272948027,-0.0003174603043589741,-0.0,-0.0,3.3881317890172014e-21,-0.0,2.64338825480515e-19,-0.0,-0.0,2.4931536682355446e-21,9.070294618140906e-05,2.882344003653979e-35,0.0007440476329065859,-0.0,-1.3629969872967551e-18,-3.6629790687614464e-34,-0.0011160714784637094,-0.0,-0.0,0.0,-0.0,6.814984936483776e-19,-0.0,-0.0,4.2034185658592434e-35,2.882344003653979e-35,0.00022321428696159273,5.0,3.0,8.0,7.0,0.04728599637746811,-0.011833900585770607,-0.01711309514939785,-0.008134921081364155,-0.00907738134264946,0.0008503401186317205,0.0017857142956927419,0.0007936508045531809,0.0008928571478463709,0.0017857142956927419,0.0011904762359336019,0.0013392857508733869,0.00039682540227659047,0.0005952381179668009,0.0004960317746736109,-0.011833900585770607,0.01101899053901434,0.0017857142956927419,0.0007936508045531809,0.0008928571478463709,-0.001700680237263441,-0.0008928571478463709,-0.00039682540227659047,-0.00044642857392318547,-1.1328806761994538e-17,1.2406680867084692e-20,3.858991945003824e-19,5.178576632597418e-19,8.866082662885577e-19,1.1336842201260031e-18,-0.01711309514939785,0.0017857142956927419,0.0349702388048172,0.0011904762359336019,0.0013392857508733869,-7.234251976509088e-18,-0.0017857142956927419,3.619102329533086e-19,4.1713630031555796e-19,-0.010714286006987095,-0.0011904762359336019,-0.0013392857508733869,2.5165890666226485e-18,2.5282407327310705e-18,4.066168014814162e-18,-0.008134921081364155,0.0007936508045531809,0.0011904762359336019,0.004308389965444803,0.0005952381179668009,1.1687594698328189e-18,3.2664725460647397e-18,-0.00022675737272948027,-5.862322705217073e-20,1.1914128035243186e-17,-0.0003401360590942204,3.3881317890172014e-20,-0.00039682540227659047,-0.0001700680295471102,9.99893959900145e-19,-0.00907738134264946,0.0008928571478463709,0.0013392857508733869,0.0005952381179668009,0.0056051588617265224,1.8998229359781035e-18,4.130293951031416e-18,1.9789250547338132e-19,-0.00029761905898340046,1.5397735492103095e-17,3.611557408370837e-19,-0.00044642857392318547,1.1384122811097797e-18,-0.00019841270113829523,-0.0005952381179668009,0.0008503401186317205,-0.001700680237263441,-7.234251976509088e-18,1.1687594698328189e-18,1.8998229359781035e-18,0.00042517005931586027,6.905177091561378e-19,-4.0417207952077335e-20,-5.304758382151437e-20,2.8322016904986345e-18,5.394669683561683e-20,-1.0666271353823314e-33,-6.293781405194439e-20,-1.6184009696919903e-19,-1.5734453836103525e-19,0.0017857142956927419,-0.0008928571478463709,-0.0017857142956927419,3.2664725460647397e-18,4.130293951031416e-18,6.905177091561378e-19,0.0008928571478463709,-1.5105075372466654e-19,-1.982541126480377e-19,2.2793127866663922e-32,-2.2657611766230274e-19,-2.973811754344051e-19,-2.64338825480515e-19,-2.4545747157140886e-19,-3.965082252960754e-19,0.0007936508045531809,-0.00039682540227659047,3.619102329533086e-19,-0.00022675737272948027,1.9789250547338132e-19,-4.0417207952077335e-20,-1.5105075372466654e-19,0.00011337868636474013,1.0692419325608867e-20,2.8888949165808538e-34,-3.8880199947151364e-22,-1.9482641513011147e-20,3.269448771819699e-36,-1.0164395367051604e-20,-2.5264511210134635e-20,0.0008928571478463709,-0.00044642857392318547,4.1713630031555796e-19,-5.862322705217073e-20,-0.00029761905898340046,-5.304758382151437e-20,-1.982541126480377e-19,1.0692419325608867e-20,0.00014880952949170023,-5.7777898331617076e-34,-8.551144927512658e-23,-6.776263578034403e-21,-5.891949846949375e-22,1.39283159545865e-20,-6.457360006397852e-21,0.0017857142956927419,-1.1328806761994538e-17,-0.010714286006987095,1.1914128035243186e-17,1.5397735492103095e-17,2.8322016904986345e-18,2.2793127866663922e-32,2.8888949165808538e-34,-5.7777898331617076e-34,0.0053571430034935474,-1.1328806141609079e-18,-1.4869058513226313e-18,-9.912706020142797e-19,-1.0290332581337037e-18,-1.5529905512304115e-18,0.0011904762359336019,1.2406680867084692e-20,-0.0011904762359336019,-0.0003401360590942204,3.611557408370837e-19,5.394669683561683e-20,-2.2657611766230274e-19,-3.8880199947151364e-22,-8.551144927512658e-23,-1.1328806141609079e-18,0.0003401360590942204,-6.105251433957119e-20,-6.324582371953711e-22,-1.5246593050577406e-20,-3.793371125398624e-20,0.0013392857508733869,3.858991945003824e-19,-0.0013392857508733869,3.3881317890172014e-20,-0.00044642857392318547,-1.0666271353823314e-33,-2.973811754344051e-19,-1.9482641513011147e-20,-6.776263578034403e-21,-1.4869058513226313e-18,-6.105251433957119e-20,0.00044642857392318547,-1.0522710782922682e-21,2.470122544679303e-20,-1.1467523102488e-20,0.00039682540227659047,5.178576632597418e-19,2.5165890666226485e-18,-0.00039682540227659047,1.1384122811097797e-18,-6.293781405194439e-20,-2.64338825480515e-19,3.269448771819699e-36,-5.891949846949375e-22,-9.912706020142797e-19,-6.324582371953711e-22,-1.0522710782922682e-21,5.668934318237007e-05,-7.877008975030056e-20,-1.5009975451417198e-19,0.0005952381179668009,8.866082662885577e-19,2.5282407327310705e-18,-0.0001700680295471102,-0.00019841270113829523,-1.6184009696919903e-19,-2.4545747157140886e-19,-1.0164395367051604e-20,1.39283159545865e-20,-1.0290332581337037e-18,-1.5246593050577406e-20,2.470122544679303e-20,-7.877008975030056e-20,5.668934318237007e-05,3.3054240675195555e-20,0.0004960317746736109,1.1336842201260031e-18,4.066168014814162e-18,9.99893959900145e-19,-0.0005952381179668009,-1.5734453836103525e-19,-3.965082252960754e-19,-2.5264511210134635e-20,-6.457360006397852e-21,-1.5529905512304115e-18,-3.793371125398624e-20,-1.1467523102488e-20,-1.5009975451417198e-19,3.3054240675195555e-20,9.920635056914762e-05,5.0,3.0,8.0,8.0,0.04222883656620979,-0.010441468097269535,-0.015104166232049465,-0.007175926119089127,-0.007175926119089127,0.0007440476329065859,0.0015625000232830644,0.0006944444612599909,0.0006944444612599909,0.0015625000232830644,0.0010416667209938169,0.0010416667209938169,0.00034722223062999547,0.00046296295477077365,0.00034722223062999547,-0.010441468097269535,0.009685019962489605,0.0015625000232830644,0.0006944444612599909,0.0006944444612599909,-0.0014880952658131719,-0.0007812500116415322,-0.00034722223062999547,-0.00034722223062999547,-0.0,2.1743191629489675e-21,1.3805373004871538e-20,-1.0155995929542496e-20,4.762824783826855e-21,6.3445112450954514e-21,-0.015104166232049465,0.0015625000232830644,0.03072916716337204,0.0010416667209938169,0.0010416667209938169,-0.0,-0.0015625000232830644,3.307718564756788e-21,1.2671973199166934e-20,-0.00937500037252903,-0.0010416667209938169,-0.0010416667209938169,-5.724526693627956e-19,-2.965368308241416e-19,-5.562330017191261e-19,-0.007175926119089127,0.0006944444612599909,0.0010416667209938169,0.0037863757461309433,0.00046296295477077365,-0.0,-0.0,-0.00019841270113829523,1.5163278837669697e-20,-2.5635357022880956e-18,-0.00029761905898340046,2.710505431213761e-20,-0.00034722223062999547,-0.00013227513409219682,3.3072273858784065e-20,-0.007175926119089127,0.0006944444612599909,0.0010416667209938169,0.00046296295477077365,0.0037863757461309433,-0.0,-0.0,-2.6650129612937237e-21,-0.00019841270113829523,-2.5635357022880956e-18,-1.5502515785076637e-21,-0.00029761905898340046,-0.0,-0.00013227513409219682,-0.00034722223062999547,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0007812500116415322,-0.0015625000232830644,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,3.307718564756788e-21,-0.00019841270113829523,-2.6650129612937237e-21,-0.0,-0.0,9.920635056914762e-05,-2.7795351174571513e-22,2.407412430484045e-35,-3.8880199947151364e-22,-5.562604331769693e-22,3.3881317890172014e-21,1.6940658945086007e-21,-2.8423304649966612e-22,0.0006944444612599909,-0.00034722223062999547,1.2671973199166934e-20,1.5163278837669697e-20,-0.00019841270113829523,-0.0,-0.0,-2.7795351174571513e-22,9.920635056914762e-05,-2.407412430484045e-35,-2.3243202184178525e-22,-3.3881317890172014e-21,-4.864186518658887e-22,-3.0548729179024474e-21,-1.5284844701301407e-21,0.0015625000232830644,-0.0,-0.00937500037252903,-2.5635357022880956e-18,-2.5635357022880956e-18,-0.0,-0.0,2.407412430484045e-35,-2.407412430484045e-35,0.004687500186264515,-4.616957374446126e-37,-7.166427712493221e-35,2.8912058794593256e-19,1.541976460428509e-19,2.8912058794593256e-19,0.0010416667209938169,2.1743191629489675e-21,-0.0010416667209938169,-0.00029761905898340046,-1.5502515785076637e-21,-0.0,-0.0,-3.8880199947151364e-22,-2.3243202184178525e-22,-4.616957374446126e-37,0.00029761905898340046,-8.343906750090029e-22,-6.804035116969234e-22,1.6940658945086007e-21,-4.0675604453401143e-22,0.0010416667209938169,1.3805373004871538e-20,-0.0010416667209938169,2.710505431213761e-20,-0.00029761905898340046,-0.0,-0.0,-5.562604331769693e-22,-3.3881317890172014e-21,-7.166427712493221e-35,-8.343906750090029e-22,0.00029761905898340046,-9.734557706814707e-22,-5.082197683525802e-21,-5.881285255304354e-21,0.00034722223062999547,-1.0155995929542496e-20,-5.724526693627956e-19,-0.00034722223062999547,-0.0,-0.0,-0.0,3.3881317890172014e-21,-4.864186518658887e-22,2.8912058794593256e-19,-6.804035116969234e-22,-9.734557706814707e-22,4.960317528457381e-05,-6.712336410733405e-22,-2.239079064443291e-22,0.00046296295477077365,4.762824783826855e-21,-2.965368308241416e-19,-0.00013227513409219682,-0.00013227513409219682,-0.0,-0.0,1.6940658945086007e-21,-3.0548729179024474e-21,1.541976460428509e-19,1.6940658945086007e-21,-5.082197683525802e-21,-6.712336410733405e-22,3.779289545491338e-05,-8.68621391889654e-21,0.00034722223062999547,6.3445112450954514e-21,-5.562330017191261e-19,3.3072273858784065e-20,-0.00034722223062999547,-0.0,-0.0,-2.8423304649966612e-22,-1.5284844701301407e-21,2.8912058794593256e-19,-4.0675604453401143e-22,-5.881285255304354e-21,-2.239079064443291e-22,-8.68621391889654e-21,4.960317528457381e-05,5.0,4.0,3.0,3.0,0.1582142859697342,-0.04809523746371269,-0.05666666850447655,-0.06916666775941849,-0.06916666775941849,0.003968254197388887,0.006666666828095913,0.008333333767950535,0.008333333767950535,0.0055555556900799274,0.009999999776482582,0.009999999776482582,0.008333333767950535,0.012500000186264515,0.008333333767950535,-0.04809523746371269,0.047857142984867096,0.006666666828095913,0.008333333767950535,0.008333333767950535,-0.007936508394777775,-0.0033333334140479565,-0.004166666883975267,-0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.05666666850447655,0.006666666828095913,0.07666666805744171,0.009999999776482582,0.009999999776482582,-0.0,-0.004444444552063942,3.9474596869981946e-19,3.9474596869981946e-19,-0.01666666753590107,-0.006666666828095913,-0.006666666828095913,0.0,0.0,0.0,-0.06916666775941849,0.008333333767950535,0.009999999776482582,0.1525000035762787,0.012500000186264515,-1.3611930356277477e-19,3.9474596869981946e-19,-0.008333333767950535,-3.5060485066280075e-35,-0.0,-0.009999999776482582,-0.0,-0.05000000074505806,-0.012500000186264515,-2.7755575615628914e-17,-0.06916666775941849,0.008333333767950535,0.009999999776482582,0.012500000186264515,0.1525000035762787,-2.168404344971009e-19,3.9474596869981946e-19,-3.5060485066280075e-35,-0.008333333767950535,-0.0,-0.0,-0.009999999776482582,-2.7755575615628914e-17,-0.012500000186264515,-0.05000000074505806,0.003968254197388887,-0.007936508394777775,-0.0,-1.3611930356277477e-19,-2.168404344971009e-19,0.0019841270986944437,-0.0,1.0842021724855044e-19,1.0842021724855044e-19,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0033333334140479565,-0.004444444552063942,3.9474596869981946e-19,3.9474596869981946e-19,-0.0,0.002222222276031971,-1.9737298434990973e-19,-1.9737298434990973e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.004166666883975267,3.9474596869981946e-19,-0.008333333767950535,-3.5060485066280075e-35,1.0842021724855044e-19,-1.9737298434990973e-19,0.004166666883975267,1.7530242533140038e-35,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008333333767950535,-0.004166666883975267,3.9474596869981946e-19,-3.5060485066280075e-35,-0.008333333767950535,1.0842021724855044e-19,-1.9737298434990973e-19,1.7530242533140038e-35,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.01666666753590107,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0055555556900799274,-0.0,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.006666666828095913,-0.009999999776482582,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,-0.006666666828095913,-0.0,-0.009999999776482582,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.0,0.008333333767950535,-0.0,0.0,-0.05000000074505806,-2.7755575615628914e-17,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.02500000037252903,-0.0,1.3877787807814457e-17,0.012500000186264515,-0.0,0.0,-0.012500000186264515,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.012500000186264515,-0.0,0.008333333767950535,-0.0,0.0,-2.7755575615628914e-17,-0.05000000074505806,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,1.3877787807814457e-17,-0.0,0.02500000037252903,5.0,4.0,3.0,4.0,0.12861904501914978,-0.03732142969965935,-0.04399999976158142,-0.05375000089406967,-0.04399999976158142,0.0029761905316263437,0.004999999888241291,0.0062500000931322575,0.004999999888241291,0.004166666883975267,0.007499999832361937,0.006000000052154064,0.0062500000931322575,0.007499999832361937,0.004166666883975267,-0.03732142969965935,0.03651785850524902,0.004999999888241291,0.0062500000931322575,0.004999999888241291,-0.0059523810632526875,-0.0024999999441206455,-0.0031250000465661287,-0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.04399999976158142,0.004999999888241291,0.05849999934434891,0.007499999832361937,0.006000000052154064,-0.0,-0.0033333334140479565,5.551114999048691e-19,3.9474596869981946e-19,-0.012500000186264515,-0.004999999888241291,-0.004000000189989805,0.0,0.0,0.0,-0.05375000089406967,0.0062500000931322575,0.007499999832361937,0.11625000089406967,0.007499999832361937,2.5422672343781322e-20,5.551114999048691e-19,-0.0062500000931322575,-6.573840806434551e-35,-0.0,-0.007499999832361937,-0.0,-0.03750000149011612,-0.007499999832361937,-9.714451300033997e-18,-0.04399999976158142,0.004999999888241291,0.006000000052154064,0.007499999832361937,0.05849999934434891,-0.0,3.9474596869981946e-19,-6.573840806434551e-35,-0.0033333334140479565,-0.0,-0.0,-0.004000000189989805,-1.457167653646069e-17,-0.004999999888241291,-0.012500000186264515,0.0029761905316263437,-0.0059523810632526875,-0.0,2.5422672343781322e-20,-0.0,0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,-0.0033333334140479565,5.551114999048691e-19,3.9474596869981946e-19,-0.0,0.0016666667070239782,-2.7755574995243454e-19,-1.9737298434990973e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0031250000465661287,5.551114999048691e-19,-0.0062500000931322575,-6.573840806434551e-35,-0.0,-2.7755574995243454e-19,0.0031250000465661287,3.2869204032172757e-35,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,3.9474596869981946e-19,-6.573840806434551e-35,-0.0033333334140479565,-0.0,-1.9737298434990973e-19,3.2869204032172757e-35,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.0,-0.004999999888241291,-0.007499999832361937,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,-0.0,0.006000000052154064,-0.0,-0.004000000189989805,-0.0,-0.004000000189989805,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,0.0,-0.03750000149011612,-1.457167653646069e-17,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.01875000074505806,-0.0,4.8572256500169986e-18,0.007499999832361937,-0.0,0.0,-0.007499999832361937,-0.004999999888241291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,0.004166666883975267,-0.0,0.0,-9.714451300033997e-18,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,4.8572256500169986e-18,-0.0,0.004166666883975267,5.0,4.0,3.0,5.0,0.10852380841970444,-0.030523808673024178,-0.035999998450279236,-0.04399999976158142,-0.030523808673024178,0.0023809524718672037,0.004000000189989805,0.004999999888241291,0.0033333334140479565,0.0033333334140479565,0.006000000052154064,0.004000000189989805,0.004999999888241291,0.004999999888241291,0.0023809524718672037,-0.030523808673024178,0.029547618702054024,0.004000000189989805,0.004999999888241291,0.0033333334140479565,-0.004761904943734407,-0.0020000000949949026,-0.0024999999441206455,-0.0016666667070239782,7.703719777548943e-34,0.0,3.2526065174565133e-19,1.2381169756524217e-35,1.1715756383657299e-33,1.046815870620095e-19,-0.035999998450279236,0.004000000189989805,0.047333333641290665,0.006000000052154064,0.004000000189989805,1.0842021724855044e-19,-0.0026666666381061077,-3.7895612478194786e-19,7.262323307023658e-20,-0.009999999776482582,-0.004000000189989805,-0.0026666666381061077,-3.3306692062243676e-17,-6.661337998858429e-18,-8.581540597178308e-18,-0.04399999976158142,0.004999999888241291,0.006000000052154064,0.09399999678134918,0.004999999888241291,-8.616591160713718e-20,-3.7895612478194786e-19,-0.004999999888241291,1.1480548229252413e-33,-3.1192825389419514e-17,-0.006000000052154064,-1.457868077293765e-32,-0.029999999329447746,-0.004999999888241291,-4.7580988069504814e-18,-0.030523808673024178,0.0033333334140479565,0.004000000189989805,0.004999999888241291,0.029547618702054024,-0.0,-2.526374251377633e-19,-3.5901936409405434e-35,-0.0016666667070239782,-1.794035800055432e-17,-1.631666092557191e-32,-0.0020000000949949026,-9.516197613900963e-18,-0.0024999999441206455,-0.004761904943734407,0.0023809524718672037,-0.004761904943734407,1.0842021724855044e-19,-8.616591160713718e-20,-0.0,0.0011904762359336019,-5.421010862427522e-20,-0.0,-0.0,-0.0,0.0,-3.251390182458007e-36,-0.0,-0.0,5.165726928604628e-36,0.004000000189989805,-0.0020000000949949026,-0.0026666666381061077,-3.7895612478194786e-19,-2.526374251377633e-19,-5.421010862427522e-20,0.0013333333190530539,1.8947806239097393e-19,1.2631871256888164e-19,-0.0,-0.0,-2.4651904459059195e-35,-0.0,-0.0,-3.536405949573215e-36,0.004999999888241291,-0.0024999999441206455,-3.7895612478194786e-19,-0.004999999888241291,-3.5901936409405434e-35,-0.0,1.8947806239097393e-19,0.0024999999441206455,1.7950968204702717e-35,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,7.262323307023658e-20,1.1480548229252413e-33,-0.0016666667070239782,-0.0,1.2631871256888164e-19,1.7950968204702717e-35,0.0008333333535119891,-3.851859888774472e-34,-0.0,-1.6263032587282567e-19,-6.190584878262109e-36,-5.857878191828649e-34,-5.234079353100475e-20,0.0033333334140479565,7.703719777548943e-34,-0.009999999776482582,-3.1192825389419514e-17,-1.794035800055432e-17,-0.0,-0.0,-0.0,-3.851859888774472e-34,0.0033333334140479565,3.031648998255583e-18,2.0210994011021063e-18,1.1102230411687688e-17,2.2204459996194763e-18,3.1720658023686032e-18,0.006000000052154064,0.0,-0.004000000189989805,-0.006000000052154064,-1.631666092557191e-32,0.0,-0.0,-0.0,-0.0,3.031648998255583e-18,0.004000000189989805,1.8381791074273598e-33,1.0097419331746677e-32,2.0194838663493354e-33,2.8849770306437616e-33,0.004000000189989805,3.2526065174565133e-19,-0.0026666666381061077,-1.457868077293765e-32,-0.0020000000949949026,-3.251390182458007e-36,-2.4651904459059195e-35,-0.0,-1.6263032587282567e-19,2.0210994011021063e-18,1.8381791074273598e-33,0.0013333333190530539,5.910706285487045e-33,-0.0,-4.673285083613276e-19,0.004999999888241291,1.2381169756524217e-35,-3.3306692062243676e-17,-0.029999999329447746,-9.516197613900963e-18,-0.0,-0.0,-0.0,-6.190584878262109e-36,1.1102230411687688e-17,1.0097419331746677e-32,5.910706285487045e-33,0.014999999664723873,7.318533788671496e-33,2.3790494034752407e-18,0.004999999888241291,1.1715756383657299e-33,-6.661337998858429e-18,-0.004999999888241291,-0.0024999999441206455,-0.0,-0.0,-0.0,-5.857878191828649e-34,2.2204459996194763e-18,2.0194838663493354e-33,-0.0,7.318533788671496e-33,0.0024999999441206455,4.393408299488376e-34,0.0023809524718672037,1.046815870620095e-19,-8.581540597178308e-18,-4.7580988069504814e-18,-0.004761904943734407,5.165726928604628e-36,-3.536405949573215e-36,-0.0,-5.234079353100475e-20,3.1720658023686032e-18,2.8849770306437616e-33,-4.673285083613276e-19,2.3790494034752407e-18,4.393408299488376e-34,0.0011904762359336019,5.0,4.0,3.0,6.0,0.09392856806516647,-0.025833332911133766,-0.030476190149784088,-0.037261903285980225,-0.022440476343035698,0.0019841270986944437,0.0033333334140479565,0.004166666883975267,0.0023809524718672037,0.0027777778450399637,0.004999999888241291,0.0028571428265422583,0.004166666883975267,0.0035714285913854837,0.0014880952658131719,-0.025833332911133766,0.024821428582072258,0.0033333334140479565,0.004166666883975267,0.0023809524718672037,-0.003968254197388887,-0.0016666667070239782,-0.0020833334419876337,-0.0011904762359336019,-0.0,-0.0,-4.0657581468206416e-19,2.698755261504243e-34,-0.0,-5.024757744802237e-20,-0.030476190149784088,0.0033333334140479565,0.03976190462708473,0.004999999888241291,0.0028571428265422583,1.0842021724855044e-19,-0.002222222276031971,1.9737298434990973e-19,-3.013102316452437e-19,-0.008333333767950535,-0.0033333334140479565,-0.0019047618843615055,-2.6481536735324493e-33,0.0,-1.1376464152601321e-18,-0.037261903285980225,0.004166666883975267,0.004999999888241291,0.07892857491970062,0.0035714285913854837,-6.805965178138738e-20,1.9737298434990973e-19,-0.004166666883975267,2.0655095670540647e-34,-0.0,-0.004999999888241291,-2.1185229388259594e-33,-0.02500000037252903,-0.0035714285913854837,-2.7259939745935103e-18,-0.022440476343035698,0.0023809524718672037,0.0028571428265422583,0.0035714285913854837,0.01716071367263794,-0.0,1.0526558949916901e-19,-9.349462636510366e-36,-0.0009523809421807528,-0.0,-0.0,-0.0011428571306169033,-6.814985143278929e-18,-0.0014285714132711291,-0.0022321429569274187,0.0019841270986944437,-0.003968254197388887,1.0842021724855044e-19,-6.805965178138738e-20,-0.0,0.0009920635493472219,-0.0,5.421010862427522e-20,-0.0,-0.0,0.0,-6.018531076210112e-36,0.0,-0.0,-9.346570619590949e-21,0.0033333334140479565,-0.0016666667070239782,-0.002222222276031971,1.9737298434990973e-19,1.0526558949916901e-19,-0.0,0.0011111111380159855,-9.868649217495487e-20,-5.2632794749584506e-20,-0.0,-0.0,-1.7975346224143781e-35,0.0,-0.0,-4.059181305114614e-36,0.004166666883975267,-0.0020833334419876337,1.9737298434990973e-19,-0.004166666883975267,-9.349462636510366e-36,5.421010862427522e-20,-9.868649217495487e-20,0.0020833334419876337,4.674731318255183e-36,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.0023809524718672037,-0.0011904762359336019,-3.013102316452437e-19,2.0655095670540647e-34,-0.0009523809421807528,-0.0,-5.2632794749584506e-20,4.674731318255183e-36,0.0004761904710903764,-0.0,-0.0,1.6263032587282567e-19,-1.0795021505194452e-34,-0.0,3.6362061627786954e-20,0.0027777778450399637,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0033333334140479565,-0.004999999888241291,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-4.0657581468206416e-19,-0.0019047618843615055,-2.1185229388259594e-33,-0.0011428571306169033,-6.018531076210112e-36,-1.7975346224143781e-35,0.0,1.6263032587282567e-19,-0.0,-0.0,0.0007619047537446022,1.0592614694129797e-33,-0.0,4.550585764438105e-19,0.004166666883975267,2.698755261504243e-34,-2.6481536735324493e-33,-0.02500000037252903,-6.814985143278929e-18,0.0,0.0,-0.0,-1.0795021505194452e-34,-0.0,-0.0,1.0592614694129797e-33,0.012500000186264515,-0.0,1.3629969872967551e-18,0.0035714285913854837,-0.0,0.0,-0.0035714285913854837,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,0.0014880952658131719,-5.024757744802237e-20,-1.1376464152601321e-18,-2.7259939745935103e-18,-0.0022321429569274187,-9.346570619590949e-21,-4.059181305114614e-36,0.0,3.6362061627786954e-20,-0.0,-0.0,4.550585764438105e-19,1.3629969872967551e-18,-0.0,0.00044642857392318547,5.0,4.0,3.0,7.0,0.08282596617937088,-0.022397959604859352,-0.026428570970892906,-0.03232142701745033,-0.017202381044626236,0.001700680237263441,0.0028571428265422583,0.0035714285913854837,0.0017857142956927419,0.0023809524718672037,0.004285714123398066,0.002142857061699033,0.0035714285913854837,0.0026785715017467737,0.0009920635493472219,-0.022397959604859352,0.021403061226010323,0.0028571428265422583,0.0035714285913854837,0.0017857142956927419,-0.003401360474526882,-0.0014285714132711291,-0.0017857142956927419,-0.0008928571478463709,3.0210149710957543e-18,-1.1419437219399217e-18,3.052421778183474e-18,-2.836733192689353e-17,-8.236064168249743e-20,2.0383244033827574e-18,-0.026428570970892906,0.0028571428265422583,0.034285712987184525,0.004285714123398066,0.002142857061699033,5.5507553822773834e-18,-0.0019047618843615055,-7.537432592766285e-19,-3.40681521411536e-19,-0.0071428571827709675,-0.0028571428265422583,-0.0014285714132711291,-4.1078252440526384e-17,-7.096490835752669e-18,3.249892589565515e-19,-0.03232142701745033,0.0035714285913854837,0.004285714123398066,0.06803571432828903,0.0026785715017467737,-1.4090877805414242e-17,-1.2997917444603026e-17,-0.0035714285913854837,8.296082842532942e-19,-3.325684284980878e-17,-0.004285714123398066,3.4664885404928183e-18,-0.02142857201397419,-0.0026785715017467737,7.85866828704883e-18,-0.017202381044626236,0.0017857142956927419,0.002142857061699033,0.0026785715017467737,0.010892856866121292,3.686357696802782e-18,-6.741898359485887e-19,7.256100298028451e-18,-0.0005952381179668009,-2.4779876493620958e-18,-1.8080774391077033e-18,-0.0007142857066355646,2.6447098309300682e-17,-0.0008928571478463709,-0.0011904762359336019,0.001700680237263441,-0.003401360474526882,5.5507553822773834e-18,-1.4090877805414242e-17,3.686357696802782e-18,0.0008503401186317205,-1.697522733987248e-19,1.3810354183122756e-18,-1.0609516764302874e-19,-7.552537427739386e-19,1.6416393907057504e-33,-6.797283788363024e-19,5.664403380997269e-18,-2.75501125280998e-33,-3.146890767220705e-19,0.0028571428265422583,-0.0014285714132711291,-0.0019047618843615055,-1.2997917444603026e-17,-6.741898359485887e-19,-1.697522733987248e-19,0.0009523809421807528,1.0905864558507653e-18,9.918999313640677e-20,6.05837262052131e-33,7.612957801607556e-19,-6.118998190651993e-34,3.806478797406201e-18,4.758098496757752e-19,-1.5533081534101558e-33,0.0035714285913854837,-0.0017857142956927419,-7.537432592766285e-19,-0.0035714285913854837,7.256100298028451e-18,1.3810354183122756e-18,1.0905864558507653e-18,0.0017857142956927419,-3.965082252960754e-19,-2.877277175303891e-33,-3.3264977138471534e-34,-4.758098496757752e-19,3.1175708856124183e-32,-5.947623508688102e-19,-7.930164505921508e-19,0.0017857142956927419,-0.0008928571478463709,-3.40681521411536e-19,8.296082842532942e-19,-0.0005952381179668009,-1.0609516764302874e-19,9.918999313640677e-20,-3.965082252960754e-19,0.00029761905898340046,1.4444474582904269e-34,1.4444474582904269e-34,4.743384504624082e-20,-4.574083617919685e-34,-1.2197274117344498e-20,4.482759119095516e-21,0.0023809524718672037,3.0210149710957543e-18,-0.0071428571827709675,-3.325684284980878e-17,-2.4779876493620958e-18,-7.552537427739386e-19,6.05837262052131e-33,-2.877277175303891e-33,1.4444474582904269e-34,0.0023809524718672037,3.667512454497293e-18,5.946364643193373e-19,1.0309214012794325e-17,1.5860329011843016e-18,-4.4056469836361075e-20,0.004285714123398066,-1.1419437219399217e-18,-0.0028571428265422583,-0.004285714123398066,-1.8080774391077033e-18,1.6416393907057504e-33,7.612957801607556e-19,-3.3264977138471534e-34,1.4444474582904269e-34,3.667512454497293e-18,0.0028571428265422583,5.709718609699608e-19,7.612957594812403e-18,9.516196993515503e-19,-2.423423030884229e-33,0.002142857061699033,3.052421778183474e-18,-0.0014285714132711291,3.4664885404928183e-18,-0.0007142857066355646,-6.797283788363024e-19,-6.118998190651993e-34,-4.758098496757752e-19,4.743384504624082e-20,5.946364643193373e-19,5.709718609699608e-19,0.0004761904710903764,-1.9032393987031007e-18,-1.3552527156068805e-20,-1.2301525047037749e-19,0.0035714285913854837,-2.836733192689353e-17,-4.1078252440526384e-17,-0.02142857201397419,2.6447098309300682e-17,5.664403380997269e-18,3.806478797406201e-18,3.1175708856124183e-32,-4.574083617919685e-34,1.0309214012794325e-17,7.612957594812403e-18,-1.9032393987031007e-18,0.010714286006987095,-2.9738117026452626e-18,-3.105981102460823e-18,0.0026785715017467737,-8.236064168249743e-20,-7.096490835752669e-18,-0.0026785715017467737,-0.0008928571478463709,-2.75501125280998e-33,4.758098496757752e-19,-5.947623508688102e-19,-1.2197274117344498e-20,1.5860329011843016e-18,9.516196993515503e-19,-1.3552527156068805e-20,-2.9738117026452626e-18,0.0008928571478463709,-2.0224540127527384e-20,0.0009920635493472219,2.0383244033827574e-18,3.249892589565515e-19,7.85866828704883e-18,-0.0011904762359336019,-3.146890767220705e-19,-1.5533081534101558e-33,-7.930164505921508e-19,4.482759119095516e-21,-4.4056469836361075e-20,-2.423423030884229e-33,-1.2301525047037749e-19,-3.105981102460823e-18,-2.0224540127527384e-20,0.00019841270113829523,5.0,4.0,3.0,8.0,0.07408729940652847,-0.019771825522184372,-0.023333333432674408,-0.028541667386889458,-0.013611110858619213,0.0014880952658131719,0.0024999999441206455,0.0031250000465661287,0.0013888889225199819,0.0020833334419876337,0.0037499999161809683,0.0016666667070239782,0.0031250000465661287,0.0020833334419876337,0.0006944444612599909,-0.019771825522184372,0.018814483657479286,0.0024999999441206455,0.0031250000465661287,0.0013888889225199819,-0.0029761905316263437,-0.0012499999720603228,-0.0015625000232830644,-0.0006944444612599909,4.336808689942018e-19,-1.0842021724855044e-18,-2.6020852139652106e-18,-8.673617379884035e-19,-1.5178830414797062e-18,-3.469446951953614e-18,-0.023333333432674408,0.0024999999441206455,0.030138889327645302,0.0037499999161809683,0.0016666667070239782,-3.1354508593490966e-18,-0.0016666667070239782,3.686287386450715e-18,-3.3881317890172014e-19,-0.0062500000931322575,-0.0024999999441206455,-0.0011111111380159855,2.3852447794681098e-17,2.0599841277224584e-18,-3.821812658011403e-18,-0.028541667386889458,0.0031250000465661287,0.0037499999161809683,0.05979166552424431,0.0020833334419876337,-4.144283643141219e-18,2.846802048695655e-18,-0.0031250000465661287,-7.182839392716467e-19,2.2043049761725453e-17,-0.0037499999161809683,1.3552527156068805e-20,-0.01875000074505806,-0.0020833334419876337,-4.662069341687669e-18,-0.013611110858619213,0.0013888889225199819,0.0016666667070239782,0.0020833334419876337,0.007361111231148243,-4.174178364069192e-18,-2.575964297786858e-18,-4.38500436833242e-18,-0.00039682540227659047,-5.001815166730043e-18,-3.982479670700334e-18,-0.0004761904710903764,-9.0187791699871e-18,-0.0005952381179668009,-0.0006944444612599909,0.0014880952658131719,-0.0029761905316263437,-3.1354508593490966e-18,-4.144283643141219e-18,-4.174178364069192e-18,0.0007440476329065859,-1.449527394748344e-20,4.0492013513785685e-19,1.7881436335784427e-20,2.8569993761908437e-19,3.7660837940836923e-19,4.881801806401408e-19,8.27686640292757e-19,3.196030206991242e-19,4.336808689942018e-19,0.0024999999441206455,-0.0012499999720603228,-0.0016666667070239782,2.846802048695655e-18,-2.575964297786858e-18,-1.449527394748344e-20,0.0008333333535119891,-4.607859233063394e-19,-6.103217086638121e-20,-2.72365863692912e-19,-1.5791662422749517e-19,1.6811273680115935e-19,-5.682144543980153e-19,-9.166843336411356e-20,3.5236570605778894e-19,0.0031250000465661287,-0.0015625000232830644,3.686287386450715e-18,-0.0031250000465661287,-4.38500436833242e-18,4.0492013513785685e-19,-4.607859233063394e-19,0.0015625000232830644,1.9731429330050968e-19,-8.944667923005412e-19,-4.2105483582298064e-19,1.6102662946023848e-19,-8.72995251550196e-19,2.767572880167736e-19,4.607859233063394e-19,0.0013888889225199819,-0.0006944444612599909,-3.3881317890172014e-19,-7.182839392716467e-19,-0.00039682540227659047,1.7881436335784427e-20,-6.103217086638121e-20,1.9731429330050968e-19,0.00019841270113829523,-0.0,1.1640775758669804e-19,6.443948936820052e-20,-5.2968833642259906e-21,2.3024053746943546e-20,1.4907779871675686e-19,0.0020833334419876337,4.336808689942018e-19,-0.0062500000931322575,2.2043049761725453e-17,-5.001815166730043e-18,2.8569993761908437e-19,-2.72365863692912e-19,-8.944667923005412e-19,-0.0,0.0020833334419876337,-3.8245622063675294e-18,4.973220256737121e-19,-5.755508226483247e-18,-5.971408053226298e-19,5.963111948670274e-19,0.0037499999161809683,-1.0842021724855044e-18,-0.0024999999441206455,-0.0037499999161809683,-3.982479670700334e-18,3.7660837940836923e-19,-1.5791662422749517e-19,-4.2105483582298064e-19,1.1640775758669804e-19,-3.8245622063675294e-18,0.0024999999441206455,6.776263578034403e-20,-4.2274107452094296e-18,-6.163840378250308e-20,5.692061405548898e-19,0.0016666667070239782,-2.6020852139652106e-18,-0.0011111111380159855,1.3552527156068805e-20,-0.0004761904710903764,4.881801806401408e-19,1.6811273680115935e-19,1.6102662946023848e-19,6.443948936820052e-20,4.973220256737121e-19,6.776263578034403e-20,0.0003174603043589741,-1.9203366274285065e-19,-1.893427892802531e-20,1.6263032587282567e-19,0.0031250000465661287,-8.673617379884035e-19,2.3852447794681098e-17,-0.01875000074505806,-9.0187791699871e-18,8.27686640292757e-19,-5.682144543980153e-19,-8.72995251550196e-19,-5.2968833642259906e-21,-5.755508226483247e-18,-4.2274107452094296e-18,-1.9203366274285065e-19,0.00937500037252903,6.369687763352339e-19,1.1926223897340549e-18,0.0020833334419876337,-1.5178830414797062e-18,2.0599841277224584e-18,-0.0020833334419876337,-0.0005952381179668009,3.196030206991242e-19,-9.166843336411356e-20,2.767572880167736e-19,2.3024053746943546e-20,-5.971408053226298e-19,-6.163840378250308e-20,-1.893427892802531e-20,6.369687763352339e-19,0.0005952381179668009,1.0842021724855044e-19,0.0006944444612599909,-3.469446951953614e-18,-3.821812658011403e-18,-4.662069341687669e-18,-0.0006944444612599909,4.336808689942018e-19,3.5236570605778894e-19,4.607859233063394e-19,1.4907779871675686e-19,5.963111948670274e-19,5.692061405548898e-19,1.6263032587282567e-19,1.1926223897340549e-18,1.0842021724855044e-19,9.920635056914762e-05,5.0,4.0,4.0,3.0,0.12861904501914978,-0.03732142969965935,-0.04399999976158142,-0.04399999976158142,-0.05375000089406967,0.0029761905316263437,0.004999999888241291,0.004999999888241291,0.0062500000931322575,0.004166666883975267,0.006000000052154064,0.007499999832361937,0.004166666883975267,0.007499999832361937,0.0062500000931322575,-0.03732142969965935,0.03651785850524902,0.004999999888241291,0.004999999888241291,0.0062500000931322575,-0.0059523810632526875,-0.0024999999441206455,-0.0024999999441206455,-0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.04399999976158142,0.004999999888241291,0.05849999934434891,0.006000000052154064,0.007499999832361937,-0.0,-0.0033333334140479565,3.9474596869981946e-19,5.551114999048691e-19,-0.012500000186264515,-0.004000000189989805,-0.004999999888241291,0.0,0.0,-0.0,-0.04399999976158142,0.004999999888241291,0.006000000052154064,0.05849999934434891,0.007499999832361937,1.6994972399588063e-19,3.9474596869981946e-19,-0.0033333334140479565,5.551114999048691e-19,-0.0,-0.004000000189989805,-0.0,-0.012500000186264515,-0.004999999888241291,-0.0,-0.05375000089406967,0.0062500000931322575,0.007499999832361937,0.007499999832361937,0.11625000089406967,-2.168404344971009e-19,5.551114999048691e-19,5.551114999048691e-19,-0.0062500000931322575,-0.0,-0.0,-0.007499999832361937,-0.0,-0.007499999832361937,-0.03750000149011612,0.0029761905316263437,-0.0059523810632526875,-0.0,1.6994972399588063e-19,-2.168404344971009e-19,0.0014880952658131719,-0.0,-0.0,1.0842021724855044e-19,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,-0.0033333334140479565,3.9474596869981946e-19,5.551114999048691e-19,-0.0,0.0016666667070239782,-1.9737298434990973e-19,-2.7755574995243454e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,3.9474596869981946e-19,-0.0033333334140479565,5.551114999048691e-19,-0.0,-1.9737298434990973e-19,0.0016666667070239782,-2.7755574995243454e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0031250000465661287,5.551114999048691e-19,5.551114999048691e-19,-0.0062500000931322575,1.0842021724855044e-19,-2.7755574995243454e-19,-2.7755574995243454e-19,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,0.006000000052154064,-0.0,-0.004000000189989805,-0.004000000189989805,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,0.007499999832361937,-0.0,-0.004999999888241291,-0.0,-0.007499999832361937,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,0.0,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004166666883975267,-0.0,-0.0,0.007499999832361937,-0.0,0.0,-0.004999999888241291,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,0.0062500000931322575,0.0,-0.0,-0.0,-0.03750000149011612,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.01875000074505806,5.0,4.0,4.0,4.0,0.10421428829431534,-0.028928572311997414,-0.03412500023841858,-0.03412500023841858,-0.03412500023841858,0.0022321429569274187,0.0037499999161809683,0.0037499999161809683,0.0037499999161809683,0.0031250000465661287,0.0044999998062849045,0.0044999998062849045,0.0031250000465661287,0.0044999998062849045,0.0031250000465661287,-0.028928572311997414,0.027857143431901932,0.0037499999161809683,0.0037499999161809683,0.0037499999161809683,-0.004464285913854837,-0.0018749999580904841,-0.0018749999580904841,-0.0018749999580904841,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.03412500023841858,0.0037499999161809683,0.04462499916553497,0.0044999998062849045,0.0044999998062849045,1.0842021724855044e-19,-0.0024999999441206455,-3.330669102826791e-19,-3.330669102826791e-19,-0.00937500037252903,-0.003000000026077032,-0.003000000026077032,0.0,0.0,-0.0,-0.03412500023841858,0.0037499999161809683,0.0044999998062849045,0.04462499916553497,0.0044999998062849045,1.212810921655542e-19,-3.330669102826791e-19,-0.0024999999441206455,-3.330669102826791e-19,-0.0,-0.003000000026077032,-0.0,-0.00937500037252903,-0.003000000026077032,-0.0,-0.03412500023841858,0.0037499999161809683,0.0044999998062849045,0.0044999998062849045,0.04462499916553497,1.0842021724855044e-19,-3.330669102826791e-19,-3.330669102826791e-19,-0.0024999999441206455,-0.0,-0.0,-0.003000000026077032,-0.0,-0.003000000026077032,-0.00937500037252903,0.0022321429569274187,-0.004464285913854837,1.0842021724855044e-19,1.212810921655542e-19,1.0842021724855044e-19,0.0011160714784637094,-5.421010862427522e-20,-5.421010862427522e-20,-5.421010862427522e-20,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0018749999580904841,-0.0024999999441206455,-3.330669102826791e-19,-3.330669102826791e-19,-5.421010862427522e-20,0.0012499999720603228,1.6653345514133955e-19,1.6653345514133955e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0018749999580904841,-3.330669102826791e-19,-0.0024999999441206455,-3.330669102826791e-19,-5.421010862427522e-20,1.6653345514133955e-19,0.0012499999720603228,1.6653345514133955e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0037499999161809683,-0.0018749999580904841,-3.330669102826791e-19,-3.330669102826791e-19,-0.0024999999441206455,-5.421010862427522e-20,1.6653345514133955e-19,1.6653345514133955e-19,0.0012499999720603228,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,0.0044999998062849045,-0.0,-0.003000000026077032,-0.003000000026077032,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,0.0044999998062849045,-0.0,-0.003000000026077032,-0.0,-0.003000000026077032,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0,0.0044999998062849045,-0.0,0.0,-0.003000000026077032,-0.003000000026077032,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,0.0031250000465661287,0.0,-0.0,-0.0,-0.00937500037252903,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,5.0,4.0,4.0,5.0,0.08774285763502121,-0.023642856627702713,-0.027899999171495438,-0.027899999171495438,-0.023642856627702713,0.0017857142956927419,0.003000000026077032,0.003000000026077032,0.0024999999441206455,0.0024999999441206455,0.003599999938160181,0.003000000026077032,0.0024999999441206455,0.003000000026077032,0.0017857142956927419,-0.023642856627702713,0.022535713389515877,0.003000000026077032,0.003000000026077032,0.0024999999441206455,-0.0035714285913854837,-0.001500000013038516,-0.001500000013038516,-0.0012499999720603228,-0.0,-0.0,2.439454888092385e-19,-0.0,2.372363044090033e-19,5.091567442667526e-20,-0.027899999171495438,0.003000000026077032,0.03610000014305115,0.003599999938160181,0.003000000026077032,2.168404344971009e-19,-0.0020000000949949026,-1.8449609573323483e-19,3.098684813696131e-20,-0.007499999832361937,-0.002400000113993883,-0.0020000000949949026,0.0,3.2526065174565133e-19,8.63623088414817e-19,-0.027899999171495438,0.003000000026077032,0.003599999938160181,0.03610000014305115,0.003000000026077032,1.6087741383255216e-19,-1.8449609573323483e-19,-0.0020000000949949026,2.427767504583607e-20,-0.0,-0.002400000113993883,3.2526065174565133e-19,-0.007499999832361937,-0.0020000000949949026,8.629691504418055e-19,-0.023642856627702713,0.0024999999441206455,0.003000000026077032,0.003000000026077032,0.022535713389515877,1.0842021724855044e-19,-2.1295864390345145e-19,-2.1295864390345145e-19,-0.0012499999720603228,-0.0,-0.0,-0.001500000013038516,-0.0,-0.001500000013038516,-0.0035714285913854837,0.0017857142956927419,-0.0035714285913854837,2.168404344971009e-19,1.6087741383255216e-19,1.0842021724855044e-19,0.0008928571478463709,-1.0842021724855044e-19,-1.0842021724855044e-19,-5.421010862427522e-20,-0.0,0.0,7.52316384526264e-36,-0.0,1.6261061626940324e-35,2.0075113903794475e-37,0.003000000026077032,-0.001500000013038516,-0.0020000000949949026,-1.8449609573323483e-19,-2.1295864390345145e-19,-1.0842021724855044e-19,0.0010000000474974513,9.224804786661741e-20,1.0647932195172573e-19,-0.0,-0.0,-2.0780119941038285e-35,-0.0,-2.020860899436195e-35,2.0969824812437773e-36,0.003000000026077032,-0.001500000013038516,-1.8449609573323483e-19,-0.0020000000949949026,-2.1295864390345145e-19,-1.0842021724855044e-19,9.224804786661741e-20,0.0010000000474974513,1.0647932195172573e-19,-0.0,-0.0,-2.0780119941038285e-35,-0.0,-2.020860899436195e-35,2.0969824812437773e-36,0.0024999999441206455,-0.0012499999720603228,3.098684813696131e-20,2.427767504583607e-20,-0.0012499999720603228,-5.421010862427522e-20,1.0647932195172573e-19,1.0647932195172573e-19,0.0006249999860301614,-0.0,-0.0,-1.2197274440461925e-19,-0.0,-1.1861815220450166e-19,-2.545783721333763e-20,0.0024999999441206455,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,0.003599999938160181,-0.0,-0.002400000113993883,-0.002400000113993883,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0015999999595806003,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,2.439454888092385e-19,-0.0020000000949949026,3.2526065174565133e-19,-0.001500000013038516,7.52316384526264e-36,-2.0780119941038285e-35,-2.0780119941038285e-35,-1.2197274440461925e-19,-0.0,-0.0,0.0010000000474974513,-0.0,-1.6263032587282567e-19,-4.318115442074085e-19,0.0024999999441206455,-0.0,0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,0.003000000026077032,2.372363044090033e-19,3.2526065174565133e-19,-0.0020000000949949026,-0.001500000013038516,1.6261061626940324e-35,-2.020860899436195e-35,-2.020860899436195e-35,-1.1861815220450166e-19,-0.0,-0.0,-1.6263032587282567e-19,-0.0,0.0010000000474974513,-4.3148457522090277e-19,0.0017857142956927419,5.091567442667526e-20,8.63623088414817e-19,8.629691504418055e-19,-0.0035714285913854837,2.0075113903794475e-37,2.0969824812437773e-36,2.0969824812437773e-36,-2.545783721333763e-20,-0.0,-0.0,-4.318115442074085e-19,-0.0,-4.3148457522090277e-19,0.0008928571478463709,5.0,4.0,4.0,6.0,0.07582738250494003,-0.019999999552965164,-0.02360714226961136,-0.02360714226961136,-0.0173660721629858,0.0014880952658131719,0.0024999999441206455,0.0024999999441206455,0.0017857142956927419,0.0020833334419876337,0.003000000026077032,0.002142857061699033,0.0020833334419876337,0.002142857061699033,0.0011160714784637094,-0.019999999552965164,0.018928570672869682,0.0024999999441206455,0.0024999999441206455,0.0017857142956927419,-0.0029761905316263437,-0.0012499999720603228,-0.0012499999720603228,-0.0008928571478463709,-0.0,-0.0,2.0328790734103208e-19,-0.0,2.0296419537818828e-19,5.033705189467161e-20,-0.02360714226961136,0.0024999999441206455,0.030321428552269936,0.003000000026077032,0.002142857061699033,-1.0842021724855044e-19,-0.0016666667070239782,1.9737298434990973e-19,3.7246474737675555e-19,-0.0062500000931322575,-0.0020000000949949026,-0.0014285714132711291,0.0,1.6940658945086007e-19,5.34941889739894e-19,-0.02360714226961136,0.0024999999441206455,0.003000000026077032,0.030321428552269936,0.002142857061699033,-6.509337564242369e-20,1.9737298434990973e-19,-0.0016666667070239782,3.7214103541391175e-19,-0.0,-0.0020000000949949026,1.6940658945086007e-19,-0.0062500000931322575,-0.0014285714132711291,4.2047239727416674e-19,-0.0173660721629858,0.0017857142956927419,0.002142857061699033,0.002142857061699033,0.01308482140302658,-0.0,1.6917684003572346e-19,1.6917684003572346e-19,-0.0007142857066355646,-0.0,-0.0,-0.0008571428479626775,-0.0,-0.0008571428479626775,-0.0016741071594879031,0.0014880952658131719,-0.0029761905316263437,-1.0842021724855044e-19,-6.509337564242369e-20,-0.0,0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,0.0,-6.018531076210112e-36,-0.0,-1.3789437853415853e-36,-2.1808663701987458e-20,0.0024999999441206455,-0.0012499999720603228,-0.0016666667070239782,1.9737298434990973e-19,1.6917684003572346e-19,-0.0,0.0008333333535119891,-9.868649217495487e-20,-8.458842001786173e-20,-0.0,-0.0,1.9259299730858284e-35,-0.0,1.9228632414860025e-35,1.3985062706359666e-36,0.0024999999441206455,-0.0012499999720603228,1.9737298434990973e-19,-0.0016666667070239782,1.6917684003572346e-19,-0.0,-9.868649217495487e-20,0.0008333333535119891,-8.458842001786173e-20,-0.0,-0.0,1.9259299730858284e-35,-0.0,1.9228632414860025e-35,1.3985062706359666e-36,0.0017857142956927419,-0.0008928571478463709,3.7246474737675555e-19,3.7214103541391175e-19,-0.0007142857066355646,-0.0,-8.458842001786173e-20,-8.458842001786173e-20,0.0003571428533177823,-0.0,-0.0,-8.131516293641283e-20,-0.0,-8.118568332115414e-20,1.781225527912401e-20,0.0020833334419876337,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,-0.0,-0.0020000000949949026,-0.0020000000949949026,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,2.0328790734103208e-19,-0.0014285714132711291,1.6940658945086007e-19,-0.0008571428479626775,-6.018531076210112e-36,1.9259299730858284e-35,1.9259299730858284e-35,-8.131516293641283e-20,-0.0,-0.0,0.0005714285653084517,-0.0,-6.776263578034403e-20,-2.1397676106583645e-19,0.0020833334419876337,-0.0,0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,0.002142857061699033,2.0296419537818828e-19,1.6940658945086007e-19,-0.0014285714132711291,-0.0008571428479626775,-1.3789437853415853e-36,1.9228632414860025e-35,1.9228632414860025e-35,-8.118568332115414e-20,-0.0,-0.0,-6.776263578034403e-20,-0.0,0.0005714285653084517,-1.6818896666448494e-19,0.0011160714784637094,5.033705189467161e-20,5.34941889739894e-19,4.2047239727416674e-19,-0.0016741071594879031,-2.1808663701987458e-20,1.3985062706359666e-36,1.3985062706359666e-36,1.781225527912401e-20,-0.0,-0.0,-2.1397676106583645e-19,-0.0,-1.6818896666448494e-19,0.0003348214377183467,5.0,4.0,4.0,7.0,0.06678911298513412,-0.017334183678030968,-0.02046428620815277,-0.02046428620815277,-0.013303571380674839,0.0012755101779475808,0.002142857061699033,0.002142857061699033,0.0013392857508733869,0.0017857142956927419,0.0025714286603033543,0.0016071428544819355,0.0017857142956927419,0.0016071428544819355,0.0007440476329065859,-0.017334183678030968,0.016320152208209038,0.002142857061699033,0.002142857061699033,0.0013392857508733869,-0.0025510203558951616,-0.0010714285308495164,-0.0010714285308495164,-0.0006696428754366934,-0.0,0.0,-2.0328790734103208e-20,-0.0,1.8295911983810314e-20,4.1126705966623355e-20,-0.02046428620815277,0.002142857061699033,0.02614285796880722,0.0025714286603033543,0.0016071428544819355,-0.0,-0.0014285714132711291,-0.0,-2.0328790734103208e-20,-0.0053571430034935474,-0.001714285695925355,-0.0010714285308495164,0.0,2.0328790734103208e-20,6.255012564639201e-21,-0.02046428620815277,0.002142857061699033,0.0025714286603033543,0.02614285796880722,0.0016071428544819355,-0.0,-0.0,-0.0014285714132711291,1.8295911983810314e-20,-0.0,-0.001714285695925355,2.0328790734103208e-20,-0.0053571430034935474,-0.0010714285308495164,3.0336810191291077e-20,-0.013303571380674839,0.0013392857508733869,0.0016071428544819355,0.0016071428544819355,0.008303571492433548,0.0,-0.0,-0.0,-0.00044642857392318547,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0005357142654247582,-0.0008928571478463709,0.0012755101779475808,-0.0025510203558951616,-0.0,-0.0,0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0010714285308495164,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0010714285308495164,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0006696428754366934,-2.0328790734103208e-20,1.8295911983810314e-20,-0.00044642857392318547,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,6.776263578034403e-21,-0.0,-6.098637058672249e-21,-1.370890306593254e-20,0.0017857142956927419,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025714286603033543,0.0,-0.001714285695925355,-0.001714285695925355,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-2.0328790734103208e-20,-0.0010714285308495164,2.0328790734103208e-20,-0.0005357142654247582,-0.0,-0.0,-0.0,6.776263578034403e-21,-0.0,-0.0,0.0003571428533177823,-0.0,-6.776263578034403e-21,-2.0850042555291977e-21,0.0017857142956927419,-0.0,0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,0.0016071428544819355,1.8295911983810314e-20,2.0328790734103208e-20,-0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0,-0.0,-6.098637058672249e-21,-0.0,-0.0,-6.776263578034403e-21,-0.0,0.0003571428533177823,-1.0112270063763692e-20,0.0007440476329065859,4.1126705966623355e-20,6.255012564639201e-21,3.0336810191291077e-20,-0.0008928571478463709,-0.0,-0.0,-0.0,-1.370890306593254e-20,-0.0,-0.0,-2.0850042555291977e-21,-0.0,-1.0112270063763692e-20,0.00014880952949170023,5.0,4.0,4.0,8.0,0.05969047546386719,-0.015297618694603443,-0.018062500283122063,-0.018062500283122063,-0.010520833544433117,0.0011160714784637094,0.0018749999580904841,0.0018749999580904841,0.0010416667209938169,0.0015625000232830644,0.0022499999031424522,0.0012499999720603228,0.0015625000232830644,0.0012499999720603228,0.0005208333604969084,-0.015297618694603443,0.014345237985253334,0.0018749999580904841,0.0018749999580904841,0.0010416667209938169,-0.0022321429569274187,-0.0009374999790452421,-0.0009374999790452421,-0.0005208333604969084,-3.0357660829594124e-18,-8.673617379884035e-19,5.421010862427522e-19,-4.553649124439119e-18,8.673617379884035e-19,6.505213034913027e-19,-0.018062500283122063,0.0018749999580904841,0.022979166358709335,0.0022499999031424522,0.0012499999720603228,6.705971966778149e-20,-0.0012499999720603228,-1.5178830414797062e-18,1.7618285302889447e-19,-0.004687500186264515,-0.001500000013038516,-0.0008333333535119891,-2.6020852139652106e-18,-2.222614453595284e-18,3.2390539903004445e-18,-0.018062500283122063,0.0018749999580904841,0.0022499999031424522,0.022979166358709335,0.0012499999720603228,-5.682940705319735e-19,-1.6889534013351401e-18,-0.0012499999720603228,-1.7618285302889447e-19,1.9543078753608995e-18,-0.001500000013038516,-4.2148359455373985e-18,-0.004687500186264515,-0.0008333333535119891,3.1170812458958252e-18,-0.010520833544433117,0.0010416667209938169,0.0012499999720603228,0.0012499999720603228,0.0056101190857589245,1.8973538018496328e-18,1.9437042470885823e-18,1.920602540146048e-18,-0.00029761905898340046,4.909619683606414e-18,8.402178578862642e-19,-0.0003571428533177823,2.2102330073914372e-18,-0.0003571428533177823,-0.0005208333604969084,0.0011160714784637094,-0.0022321429569274187,6.705971966778149e-20,-5.682940705319735e-19,1.8973538018496328e-18,0.0005580357392318547,-7.244222268775525e-20,-5.843955418209274e-20,-2.4041929540610737e-19,4.95315388905235e-19,-1.955738665176069e-19,-2.681591849889853e-19,6.857949214487663e-19,-2.599645393049697e-19,-2.710505431213761e-20,0.0018749999580904841,-0.0009374999790452421,-0.0012499999720603228,-1.6889534013351401e-18,1.9437042470885823e-18,-7.244222268775525e-20,0.0006249999860301614,-1.3552527156068805e-19,-2.449040877416109e-19,2.585674054009735e-19,3.6418252394538593e-19,-1.5355210589176142e-20,4.411790027530535e-19,7.617748599070916e-21,-1.7618285302889447e-19,0.0018749999580904841,-0.0009374999790452421,-1.5178830414797062e-18,-0.0012499999720603228,1.920602540146048e-18,-5.843955418209274e-20,-1.3552527156068805e-19,0.0006249999860301614,-2.8524483318581535e-19,2.5825056937697156e-19,4.29418407297716e-19,7.478375128204266e-20,1.4428874931867588e-20,-1.0096088343030624e-19,-1.6263032587282567e-19,0.0010416667209938169,-0.0005208333604969084,1.7618285302889447e-19,-1.7618285302889447e-19,-0.00029761905898340046,-2.4041929540610737e-19,-2.449040877416109e-19,-2.8524483318581535e-19,0.00014880952949170023,-3.3881317890172014e-20,6.95762034239724e-20,7.668211140080625e-20,1.3684686061030344e-19,6.01937651544219e-20,4.0657581468206416e-20,0.0015625000232830644,-3.0357660829594124e-18,-0.004687500186264515,1.9543078753608995e-18,4.909619683606414e-18,4.95315388905235e-19,2.585674054009735e-19,2.5825056937697156e-19,-3.3881317890172014e-20,0.0015625000232830644,-2.0679205121095984e-19,4.8701240033243344e-21,-7.841508838831723e-19,7.716927069839884e-21,-6.505213034913027e-19,0.0022499999031424522,-8.673617379884035e-19,-0.001500000013038516,-0.001500000013038516,8.402178578862642e-19,-1.955738665176069e-19,3.6418252394538593e-19,4.29418407297716e-19,6.95762034239724e-20,-2.0679205121095984e-19,0.0010000000474974513,4.0657581468206416e-19,9.366900198731573e-19,4.87850290672097e-19,-3.5236570605778894e-19,0.0012499999720603228,5.421010862427522e-19,-0.0008333333535119891,-4.2148359455373985e-18,-0.0003571428533177823,-2.681591849889853e-19,-1.5355210589176142e-20,7.478375128204266e-20,7.668211140080625e-20,4.8701240033243344e-21,4.0657581468206416e-19,0.0002380952355451882,6.497844406618828e-19,3.5125730988636203e-19,-4.0657581468206416e-20,0.0015625000232830644,-4.553649124439119e-18,-2.6020852139652106e-18,-0.004687500186264515,2.2102330073914372e-18,6.857949214487663e-19,4.411790027530535e-19,1.4428874931867588e-20,1.3684686061030344e-19,-7.841508838831723e-19,9.366900198731573e-19,6.497844406618828e-19,0.0015625000232830644,3.2526065174565133e-19,-5.963111948670274e-19,0.0012499999720603228,8.673617379884035e-19,-2.222614453595284e-18,-0.0008333333535119891,-0.0003571428533177823,-2.599645393049697e-19,7.617748599070916e-21,-1.0096088343030624e-19,6.01937651544219e-20,7.716927069839884e-21,4.87850290672097e-19,3.5125730988636203e-19,3.2526065174565133e-19,0.0002380952355451882,-5.421010862427522e-20,0.0005208333604969084,6.505213034913027e-19,3.2390539903004445e-18,3.1170812458958252e-18,-0.0005208333604969084,-2.710505431213761e-20,-1.7618285302889447e-19,-1.6263032587282567e-19,4.0657581468206416e-20,-6.505213034913027e-19,-3.5236570605778894e-19,-4.0657581468206416e-20,-5.963111948670274e-19,-5.421010862427522e-20,7.440476474585012e-05,5.0,4.0,5.0,3.0,0.10852380841970444,-0.030523808673024178,-0.035999998450279236,-0.030523808673024178,-0.04399999976158142,0.0023809524718672037,0.004000000189989805,0.0033333334140479565,0.004999999888241291,0.0033333334140479565,0.004000000189989805,0.006000000052154064,0.0023809524718672037,0.004999999888241291,0.004999999888241291,-0.030523808673024178,0.029547618702054024,0.004000000189989805,0.0033333334140479565,0.004999999888241291,-0.004761904943734407,-0.0020000000949949026,-0.0016666667070239782,-0.0024999999441206455,1.1555579666323415e-33,3.2526065174565133e-19,0.0,1.0842021724855044e-19,-0.0,0.0,-0.035999998450279236,0.004000000189989805,0.047333333641290665,0.004000000189989805,0.006000000052154064,1.0842021724855044e-19,-0.0026666666381061077,7.262323307023658e-20,-3.7895612478194786e-19,-0.009999999776482582,-0.0026666666381061077,-0.004000000189989805,-8.581540597178308e-18,-6.661337998858429e-18,-3.3306692062243676e-17,-0.030523808673024178,0.0033333334140479565,0.004000000189989805,0.029547618702054024,0.004999999888241291,-2.130386703965417e-20,-2.526374251377633e-19,-0.0016666667070239782,-3.5901936409405434e-35,-1.794035800055432e-17,-0.0020000000949949026,-1.631666092557191e-32,-0.004761904943734407,-0.0024999999441206455,-5.975339887277849e-32,-0.04399999976158142,0.004999999888241291,0.006000000052154064,0.004999999888241291,0.09399999678134918,-0.0,-3.7895612478194786e-19,-3.5901936409405434e-35,-0.004999999888241291,-3.1192825389419514e-17,-1.6220495202099077e-32,-0.006000000052154064,-0.0,-0.004999999888241291,-0.029999999329447746,0.0023809524718672037,-0.004761904943734407,1.0842021724855044e-19,-2.130386703965417e-20,-0.0,0.0011904762359336019,-5.421010862427522e-20,-0.0,-0.0,0.0,-3.251390182458007e-36,-0.0,0.0,-0.0,0.0,0.004000000189989805,-0.0020000000949949026,-0.0026666666381061077,-2.526374251377633e-19,-3.7895612478194786e-19,-5.421010862427522e-20,0.0013333333190530539,1.2631871256888164e-19,1.8947806239097393e-19,-0.0,-2.4651904459059195e-35,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,7.262323307023658e-20,-0.0016666667070239782,-3.5901936409405434e-35,-0.0,1.2631871256888164e-19,0.0008333333535119891,1.7950968204702717e-35,-5.7777898331617076e-34,-1.6263032587282567e-19,-0.0,-5.421010862427522e-20,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,-3.7895612478194786e-19,-3.5901936409405434e-35,-0.004999999888241291,-0.0,1.8947806239097393e-19,1.7950968204702717e-35,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,1.1555579666323415e-33,-0.009999999776482582,-1.794035800055432e-17,-3.1192825389419514e-17,0.0,-0.0,-5.7777898331617076e-34,-0.0,0.0033333334140479565,2.0210994011021063e-18,3.031648998255583e-18,3.1720658023686032e-18,2.2204459996194763e-18,1.1102230411687688e-17,0.004000000189989805,3.2526065174565133e-19,-0.0026666666381061077,-0.0020000000949949026,-1.6220495202099077e-32,-3.251390182458007e-36,-2.4651904459059195e-35,-1.6263032587282567e-19,-0.0,2.0210994011021063e-18,0.0013333333190530539,1.8381791074273598e-33,-4.673285083613276e-19,-0.0,6.731613132725774e-33,0.006000000052154064,0.0,-0.004000000189989805,-1.631666092557191e-32,-0.006000000052154064,-0.0,-0.0,-0.0,-0.0,3.031648998255583e-18,1.8381791074273598e-33,0.004000000189989805,2.8849770306437616e-33,2.0194838663493354e-33,1.0097419331746677e-32,0.0023809524718672037,1.0842021724855044e-19,-8.581540597178308e-18,-0.004761904943734407,-0.0,0.0,-0.0,-5.421010862427522e-20,-0.0,3.1720658023686032e-18,-4.673285083613276e-19,2.8849770306437616e-33,0.0011904762359336019,1.7001312549186981e-34,1.0565101514164832e-32,0.004999999888241291,-0.0,-6.661337998858429e-18,-0.0024999999441206455,-0.004999999888241291,-0.0,-0.0,-0.0,-0.0,2.2204459996194763e-18,-0.0,2.0194838663493354e-33,1.7001312549186981e-34,0.0024999999441206455,7.395571280320573e-33,0.004999999888241291,0.0,-3.3306692062243676e-17,-5.975339887277849e-32,-0.029999999329447746,0.0,-0.0,-0.0,-0.0,1.1102230411687688e-17,6.731613132725774e-33,1.0097419331746677e-32,1.0565101514164832e-32,7.395571280320573e-33,0.014999999664723873,5.0,4.0,5.0,4.0,0.08774285763502121,-0.023642856627702713,-0.027899999171495438,-0.023642856627702713,-0.027899999171495438,0.0017857142956927419,0.003000000026077032,0.0024999999441206455,0.003000000026077032,0.0024999999441206455,0.003000000026077032,0.003599999938160181,0.0017857142956927419,0.003000000026077032,0.0024999999441206455,-0.023642856627702713,0.022535713389515877,0.003000000026077032,0.0024999999441206455,0.003000000026077032,-0.0035714285913854837,-0.001500000013038516,-0.0012499999720603228,-0.001500000013038516,-0.0,2.326740672886495e-19,-0.0,1.0842021724855044e-19,5.421010862427522e-20,0.0,-0.027899999171495438,0.003000000026077032,0.03610000014305115,0.003000000026077032,0.003599999938160181,2.168404344971009e-19,-0.0020000000949949026,1.9715437925482272e-20,-1.8449609573323483e-19,-0.007499999832361937,-0.0020000000949949026,-0.002400000113993883,8.314190860117494e-19,1.0842021724855044e-19,-0.0,-0.023642856627702713,0.0024999999441206455,0.003000000026077032,0.022535713389515877,0.003000000026077032,-3.4986201775169846e-20,-2.1295864390345145e-19,-0.0012499999720603228,-1.964501885922924e-35,-0.0,-0.001500000013038516,-0.0,-0.0035714285913854837,-0.001500000013038516,-0.0,-0.027899999171495438,0.003000000026077032,0.003599999938160181,0.003000000026077032,0.03610000014305115,2.168404344971009e-19,-1.8449609573323483e-19,5.421010862427522e-20,-0.0020000000949949026,-0.0,1.0842021724855044e-19,-0.002400000113993883,2.168404344971009e-19,-0.0020000000949949026,-0.007499999832361937,0.0017857142956927419,-0.0035714285913854837,2.168404344971009e-19,-3.4986201775169846e-20,2.168404344971009e-19,0.0008928571478463709,-1.0842021724855044e-19,-0.0,-1.0842021724855044e-19,-0.0,-7.79850818668871e-36,0.0,3.009265538105056e-36,-1.504632769052528e-36,-0.0,0.003000000026077032,-0.001500000013038516,-0.0020000000949949026,-2.1295864390345145e-19,-1.8449609573323483e-19,-1.0842021724855044e-19,0.0010000000474974513,1.0647932195172573e-19,9.224804786661741e-20,-0.0,-1.9819982698565742e-35,-0.0,-6.018531076210112e-36,-4.617804431341841e-36,-0.0,0.0024999999441206455,-0.0012499999720603228,1.9715437925482272e-20,-0.0012499999720603228,5.421010862427522e-20,-0.0,1.0647932195172573e-19,0.0006249999860301614,9.82250942961462e-36,-0.0,-1.1633703364432476e-19,-0.0,-5.421010862427522e-20,-2.710505431213761e-20,-0.0,0.003000000026077032,-0.001500000013038516,-1.8449609573323483e-19,-1.964501885922924e-35,-0.0020000000949949026,-1.0842021724855044e-19,9.224804786661741e-20,9.82250942961462e-36,0.0010000000474974513,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,2.326740672886495e-19,-0.0020000000949949026,-0.001500000013038516,1.0842021724855044e-19,-7.79850818668871e-36,-1.9819982698565742e-35,-1.1633703364432476e-19,-0.0,-0.0,0.0010000000474974513,-0.0,-4.157095430058747e-19,-5.421010862427522e-20,-0.0,0.003599999938160181,-0.0,-0.002400000113993883,-0.0,-0.002400000113993883,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015999999595806003,-0.0,-0.0,-0.0,0.0017857142956927419,1.0842021724855044e-19,8.314190860117494e-19,-0.0035714285913854837,2.168404344971009e-19,3.009265538105056e-36,-6.018531076210112e-36,-5.421010862427522e-20,-0.0,-0.0,-4.157095430058747e-19,-0.0,0.0008928571478463709,-7.726498292697204e-20,-0.0,0.003000000026077032,5.421010862427522e-20,1.0842021724855044e-19,-0.001500000013038516,-0.0020000000949949026,-1.504632769052528e-36,-4.617804431341841e-36,-2.710505431213761e-20,-0.0,-0.0,-5.421010862427522e-20,-0.0,-7.726498292697204e-20,0.0010000000474974513,-0.0,0.0024999999441206455,0.0,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,5.0,4.0,5.0,5.0,0.07377143204212189,-0.01931428536772728,-0.02280000038444996,-0.01931428536772728,-0.01931428536772728,0.0014285714132711291,0.002400000113993883,0.0020000000949949026,0.0020000000949949026,0.0020000000949949026,0.002400000113993883,0.002400000113993883,0.0014285714132711291,0.0020000000949949026,0.0014285714132711291,-0.01931428536772728,0.018228571861982346,0.002400000113993883,0.0020000000949949026,0.0020000000949949026,-0.0028571428265422583,-0.0012000000569969416,-0.0010000000474974513,-0.0010000000474974513,-0.0,-1.8867406868496653e-19,-1.8973538018496328e-19,-0.0,-3.0056021627661287e-36,6.542599272154951e-20,-0.02280000038444996,0.002400000113993883,0.029200000688433647,0.002400000113993883,0.002400000113993883,1.0842021724855044e-19,-0.0015999999595806003,9.379929262731564e-21,1.0441240762728312e-20,-0.006000000052154064,-0.0015999999595806003,-0.0015999999595806003,-5.632866292963072e-19,4.516167020581714e-37,-5.602543402670527e-19,-0.01931428536772728,0.0020000000949949026,0.002400000113993883,0.018228571861982346,0.0020000000949949026,3.97597673861596e-20,1.9911531106328197e-19,-0.0010000000474974513,2.662786712791671e-36,-0.0,-0.0012000000569969416,-0.0,-0.0028571428265422583,-0.0010000000474974513,-1.2242697612543869e-36,-0.01931428536772728,0.0020000000949949026,0.002400000113993883,0.0020000000949949026,0.018228571861982346,-0.0,1.9911531106328197e-19,-2.0181189481860427e-21,-0.0010000000474974513,-0.0,7.656605085228167e-21,-0.0012000000569969416,-0.0,-0.0010000000474974513,-0.0028571428265422583,0.0014285714132711291,-0.0028571428265422583,1.0842021724855044e-19,3.97597673861596e-20,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-2.078741476453193e-36,1.504632769052528e-36,-1.253456347446153e-20,-0.0,-2.016419098085698e-22,0.002400000113993883,-0.0012000000569969416,-0.0015999999595806003,1.9911531106328197e-19,1.9911531106328197e-19,-0.0,0.0007999999797903001,-9.955765553164099e-20,-9.955765553164099e-20,-0.0,-1.8783947723307502e-35,-1.8889608766426153e-35,-6.018531076210112e-36,-0.0,6.513658566421853e-36,0.0020000000949949026,-0.0010000000474974513,9.379929262731564e-21,-0.0010000000474974513,-2.0181189481860427e-21,-0.0,-9.955765553164099e-20,0.0005000000237487257,5.516718880376756e-23,-0.0,9.486769009248164e-20,2.782849270170983e-38,2.710505431213761e-20,-0.0,4.385711708730349e-22,0.0020000000949949026,-0.0010000000474974513,1.0441240762728312e-20,2.662786712791671e-36,-0.0010000000474974513,-0.0,-9.955765553164099e-20,5.516718880376756e-23,0.0005000000237487257,-0.0,-5.306558004854719e-22,9.486769009248164e-20,1.5762053042378267e-22,1.5028010813830643e-36,-3.2712996360774753e-20,0.0020000000949949026,-0.0,-0.006000000052154064,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,0.002400000113993883,-1.8867406868496653e-19,-0.0015999999595806003,-0.0012000000569969416,7.656605085228167e-21,-2.078741476453193e-36,-1.8783947723307502e-35,9.486769009248164e-20,-5.306558004854719e-22,-0.0,0.0007999999797903001,3.339419236309057e-38,2.816433146481536e-19,-0.0,-1.5161594588082614e-21,0.002400000113993883,-1.8973538018496328e-19,-0.0015999999595806003,-0.0,-0.0012000000569969416,1.504632769052528e-36,-1.8889608766426153e-35,2.782849270170983e-38,9.486769009248164e-20,-0.0,3.339419236309057e-38,0.0007999999797903001,7.950997754625841e-38,-2.258083510290857e-37,2.816433146481536e-19,0.0014285714132711291,-0.0,-5.632866292963072e-19,-0.0028571428265422583,-0.0,-1.253456347446153e-20,-6.018531076210112e-36,2.710505431213761e-20,1.5762053042378267e-22,-0.0,2.816433146481536e-19,7.950997754625841e-38,0.0007142857066355646,-0.0,3.2117170451124243e-22,0.0020000000949949026,-3.0056021627661287e-36,4.516167020581714e-37,-0.0010000000474974513,-0.0010000000474974513,-0.0,-0.0,-0.0,1.5028010813830643e-36,-0.0,-0.0,-2.258083510290857e-37,-0.0,0.0005000000237487257,-6.130780778079489e-37,0.0014285714132711291,6.542599272154951e-20,-5.602543402670527e-19,-1.2242697612543869e-36,-0.0028571428265422583,-2.016419098085698e-22,6.513658566421853e-36,4.385711708730349e-22,-3.2712996360774753e-20,-0.0,-1.5161594588082614e-21,2.816433146481536e-19,3.2117170451124243e-22,-6.130780778079489e-37,0.0007142857066355646,5.0,4.0,5.0,6.0,0.06369047611951828,-0.016333334147930145,-0.019285714253783226,-0.016333334147930145,-0.014178571291267872,0.0011904762359336019,0.0020000000949949026,0.0016666667070239782,0.0014285714132711291,0.0016666667070239782,0.0020000000949949026,0.001714285695925355,0.0011904762359336019,0.0014285714132711291,0.0008928571478463709,-0.016333334147930145,0.015309523791074753,0.0020000000949949026,0.0016666667070239782,0.0014285714132711291,-0.0023809524718672037,-0.0010000000474974513,-0.0008333333535119891,-0.0007142857066355646,1.925929944387236e-34,1.1246082651981006e-19,-8.845543122041032e-20,5.421010862427522e-20,1.2555754323103233e-20,1.9822783997006634e-20,-0.019285714253783226,0.0020000000949949026,0.024523809552192688,0.0020000000949949026,0.001714285695925355,-5.421010862427522e-20,-0.0013333333190530539,-1.78922413825359e-20,-2.0432843592813843e-19,-0.004999999888241291,-0.0013333333190530539,-0.0011428571306169033,-5.461813614093232e-18,-2.2197780512748398e-18,-4.054356702847517e-18,-0.016333334147930145,0.0016666667070239782,0.0020000000949949026,0.015309523791074753,0.0014285714132711291,-1.4471922251050157e-20,-1.2631871256888164e-19,-0.0008333333535119891,6.646780731601444e-21,-9.4459890050493e-18,-0.0010000000474974513,-2.0599841277224584e-18,-0.0023809524718672037,-0.0007142857066355646,2.4855173129194526e-20,-0.014178571291267872,0.0014285714132711291,0.001714285695925355,0.0014285714132711291,0.010582142509520054,-5.421010862427522e-20,-1.1910050189919664e-19,-1.9970943030707392e-20,-0.0005714285653084517,-7.76023710287747e-18,-3.4343030074818653e-20,-0.0006857143016532063,-7.589415207398531e-19,-0.0005714285653084517,-0.0013392857508733869,0.0011904762359336019,-0.0023809524718672037,-5.421010862427522e-20,-1.4471922251050157e-20,-5.421010862427522e-20,0.0005952381179668009,2.710505431213761e-20,-0.0,2.710505431213761e-20,-0.0,-1.687075237399643e-37,-3.4589258929823774e-37,-6.276875598502799e-22,-4.561675365301372e-37,-1.6272489466960485e-21,0.0020000000949949026,-0.0010000000474974513,-0.0013333333190530539,-1.2631871256888164e-19,-1.1910050189919664e-19,2.710505431213761e-20,0.0006666666595265269,6.315935628444082e-20,5.955025094959832e-20,-0.0,-8.518573810372803e-36,7.346122227825563e-36,-6.018531076210112e-36,-1.046777665597386e-36,-1.6447717631613848e-36,0.0016666667070239782,-0.0008333333535119891,-1.78922413825359e-20,-0.0008333333535119891,-1.9970943030707392e-20,-0.0,6.315935628444082e-20,0.00041666667675599456,3.8226172410028176e-22,-9.62964972193618e-35,-5.655831928694841e-20,1.876068449438533e-21,-2.710505431213761e-20,-0.0,3.020697191568866e-21,0.0014285714132711291,-0.0007142857066355646,-2.0432843592813843e-19,6.646780731601444e-21,-0.0005714285653084517,2.710505431213761e-20,5.955025094959832e-20,3.8226172410028176e-22,0.0002857142826542258,-0.0,2.623221003801287e-22,3.3881317890172014e-20,1.0921763834220039e-21,-5.02230181002065e-21,-7.514258126241588e-21,0.0016666667070239782,1.925929944387236e-34,-0.004999999888241291,-9.4459890050493e-18,-7.76023710287747e-18,-0.0,-0.0,-9.62964972193618e-35,-0.0,0.0016666667070239782,1.0105497005510531e-18,6.929483276873366e-19,1.5860329011843016e-18,6.34413150133963e-19,1.09039765187595e-18,0.0020000000949949026,1.1246082651981006e-19,-0.0013333333190530539,-0.0010000000474974513,-3.4343030074818653e-20,-1.687075237399643e-37,-8.518573810372803e-36,-5.655831928694841e-20,2.623221003801287e-22,1.0105497005510531e-18,0.0006666666595265269,2.2512820989365613e-21,-1.9862541334549744e-19,1.3552527156068805e-20,6.148174393320057e-22,0.001714285695925355,-8.845543122041032e-20,-0.0011428571306169033,-2.0599841277224584e-18,-0.0006857143016532063,-3.4589258929823774e-37,7.346122227825563e-36,1.876068449438533e-21,3.3881317890172014e-20,6.929483276873366e-19,2.2512820989365613e-21,0.0004571428580675274,4.403863569310746e-19,1.157734263791435e-19,3.127736883149157e-19,0.0011904762359336019,5.421010862427522e-20,-5.461813614093232e-18,-0.0023809524718672037,-7.589415207398531e-19,-6.276875598502799e-22,-6.018531076210112e-36,-2.710505431213761e-20,1.0921763834220039e-21,1.5860329011843016e-18,-1.9862541334549744e-19,4.403863569310746e-19,0.0005952381179668009,2.2431769810135703e-20,2.2242747327160616e-21,0.0014285714132711291,1.2555754323103233e-20,-2.2197780512748398e-18,-0.0007142857066355646,-0.0005714285653084517,-4.561675365301372e-37,-1.046777665597386e-36,-0.0,-5.02230181002065e-21,6.34413150133963e-19,1.3552527156068805e-20,1.157734263791435e-19,2.2431769810135703e-20,0.0002857142826542258,-1.6597755422678697e-20,0.0008928571478463709,1.9822783997006634e-20,-4.054356702847517e-18,2.4855173129194526e-20,-0.0013392857508733869,-1.6272489466960485e-21,-1.6447717631613848e-36,3.020697191568866e-21,-7.514258126241588e-21,1.09039765187595e-18,6.148174393320057e-22,3.127736883149157e-19,2.2242747327160616e-21,-1.6597755422678697e-20,0.0002678571327123791,5.0,4.0,5.0,7.0,0.056057821959257126,-0.01415306143462658,-0.01671428605914116,-0.01415306143462658,-0.010857142508029938,0.0010204081190750003,0.001714285695925355,0.0014285714132711291,0.0010714285308495164,0.0014285714132711291,0.001714285695925355,0.0012857143301516771,0.0010204081190750003,0.0010714285308495164,0.0005952381179668009,-0.01415306143462658,0.013198979198932648,0.001714285695925355,0.0014285714132711291,0.0010714285308495164,-0.0020408162381500006,-0.0008571428479626775,-0.0007142857066355646,-0.0005357142654247582,1.8055593228630336e-35,0.0,1.0164395367051604e-20,-0.0,-0.0,1.7983161779669977e-20,-0.01671428605914116,0.001714285695925355,0.021142857149243355,0.001714285695925355,0.0012857143301516771,-0.0,-0.0011428571306169033,-0.0,1.0164395367051604e-20,-0.004285714123398066,-0.0011428571306169033,-0.0008571428479626775,0.0,0.0,-3.1275062823196006e-21,-0.01415306143462658,0.0014285714132711291,0.001714285695925355,0.013198979198932648,0.0010714285308495164,-0.0,-0.0,-0.0007142857066355646,0.0,-9.516196993515503e-19,-0.0008571428479626775,-3.1695304175152512e-34,-0.0020408162381500006,-0.0005357142654247582,-0.0,-0.010857142508029938,0.0010714285308495164,0.0012857143301516771,0.0010714285308495164,0.00671428581699729,0.0,-0.0,-0.0,-0.0003571428533177823,-7.137148003630569e-19,-3.1695304175152512e-34,-0.00042857142398133874,-0.0,-0.0003571428533177823,-0.0007142857066355646,0.0010204081190750003,-0.0020408162381500006,-0.0,-0.0,0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-0.0008571428479626775,-0.0011428571306169033,-0.0,-0.0,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0005357142654247582,1.0164395367051604e-20,0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-6.018531076210112e-36,-0.0,-3.3881317890172014e-21,-0.0,-0.0,-5.994386855993209e-21,0.0014285714132711291,1.8055593228630336e-35,-0.004285714123398066,-9.516196993515503e-19,-7.137148003630569e-19,-0.0,-0.0,-0.0,-6.018531076210112e-36,0.0014285714132711291,6.34413150133963e-19,4.758098496757752e-19,-0.0,-0.0,1.851855784743959e-36,0.001714285695925355,0.0,-0.0011428571306169033,-0.0008571428479626775,-3.1695304175152512e-34,-0.0,-0.0,-0.0,-0.0,6.34413150133963e-19,0.0005714285653084517,2.1130202018139207e-34,-0.0,-0.0,0.0,0.0012857143301516771,1.0164395367051604e-20,-0.0008571428479626775,-3.1695304175152512e-34,-0.00042857142398133874,-0.0,-0.0,-0.0,-3.3881317890172014e-21,4.758098496757752e-19,2.1130202018139207e-34,0.0002857142826542258,-0.0,-0.0,1.0425021277645988e-21,0.0010204081190750003,-0.0,0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,0.0010714285308495164,-0.0,0.0,-0.0005357142654247582,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,0.0,0.0005952381179668009,1.7983161779669977e-20,-3.1275062823196006e-21,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,-5.994386855993209e-21,1.851855784743959e-36,0.0,1.0425021277645988e-21,-0.0,0.0,0.0001190476177725941,5.0,4.0,5.0,8.0,0.05007142946124077,-0.012488095089793205,-0.014750000089406967,-0.012488095089793205,-0.00858333334326744,0.0008928571478463709,0.001500000013038516,0.0012499999720603228,0.0008333333535119891,0.0012499999720603228,0.001500000013038516,0.0010000000474974513,0.0008928571478463709,0.0008333333535119891,0.00041666667675599456,-0.012488095089793205,0.011601190082728863,0.001500000013038516,0.0012499999720603228,0.0008333333535119891,-0.0017857142956927419,-0.000750000006519258,-0.0006249999860301614,-0.00041666667675599456,-3.686287386450715e-18,6.505213034913027e-19,-8.131516293641283e-19,1.951563910473908e-18,1.0842021724855044e-19,-1.0842021724855044e-18,-0.014750000089406967,0.001500000013038516,0.018583333119750023,0.001500000013038516,0.0010000000474974513,-3.3978412350473488e-18,-0.0010000000474974513,2.168404344971009e-19,-6.640738306473715e-19,-0.0037499999161809683,-0.0010000000474974513,-0.0006666666595265269,-1.1926223897340549e-18,5.421010862427522e-20,-1.6398557858843255e-18,-0.012488095089793205,0.0012499999720603228,0.001500000013038516,0.011601190082728863,0.0008333333535119891,2.1028209165144358e-18,8.560452351244304e-19,-0.0006249999860301614,2.642742795433417e-19,9.151850687808832e-20,-0.000750000006519258,3.3881317890172014e-20,-0.0017857142956927419,-0.00041666667675599456,-1.463672932855431e-18,-0.00858333334326744,0.0008333333535119891,0.0010000000474974513,0.0008333333535119891,0.004535714164376259,-1.81603863891322e-18,-1.7897605584184822e-18,-6.576127228827198e-19,-0.0002380952355451882,-3.611075575664025e-18,-1.0843962497367247e-18,-0.0002857142826542258,-2.1434174934124664e-18,-0.0002380952355451882,-0.00041666667675599456,0.0008928571478463709,-0.0017857142956927419,-3.3978412350473488e-18,2.1028209165144358e-18,-1.81603863891322e-18,0.00044642857392318547,9.659869994109839e-19,-1.3552527156068805e-20,2.957735757633024e-19,4.235926776410816e-19,-1.7773022361164562e-19,1.3434609974809957e-19,-4.2815292435808646e-19,3.0324396827547813e-21,1.6263032587282567e-19,0.001500000013038516,-0.000750000006519258,-0.0010000000474974513,8.560452351244304e-19,-1.7897605584184822e-18,9.659869994109839e-19,0.0005000000237487257,-0.0,2.1050207258053381e-19,9.060185763499973e-19,8.2805761787279e-20,2.428020667087488e-19,-2.212293514297307e-19,-1.1202165339126836e-20,1.3552527156068805e-19,0.0012499999720603228,-0.0006249999860301614,2.168404344971009e-19,-0.0006249999860301614,-6.576127228827198e-19,-1.3552527156068805e-20,-0.0,0.0003124999930150807,6.011802885296571e-21,-1.2528845911594685e-19,1.0680372538586283e-19,-4.030603536242635e-21,1.0396466057782184e-19,7.300354389714204e-21,8.131516293641283e-20,0.0008333333535119891,-0.00041666667675599456,-6.640738306473715e-19,2.642742795433417e-19,-0.0002380952355451882,2.957735757633024e-19,2.1050207258053381e-19,6.011802885296571e-21,0.0001190476177725941,1.2874900798265365e-19,-5.743526644557387e-20,-1.279583541796108e-20,-1.8941192025371236e-20,-2.639774380257088e-20,2.710505431213761e-20,0.0012499999720603228,-3.686287386450715e-18,-0.0037499999161809683,9.151850687808832e-20,-3.611075575664025e-18,4.235926776410816e-19,9.060185763499973e-19,-1.2528845911594685e-19,1.2874900798265365e-19,0.0012499999720603228,3.0608813026092654e-19,8.462559144663833e-19,-1.4902863963144677e-20,-4.8605559308619254e-20,2.981555974335137e-19,0.001500000013038516,6.505213034913027e-19,-0.0010000000474974513,-0.000750000006519258,-1.0843962497367247e-18,-1.7773022361164562e-19,8.2805761787279e-20,1.0680372538586283e-19,-5.743526644557387e-20,3.0608813026092654e-19,0.0005000000237487257,6.776263578034403e-21,8.503391881626748e-19,1.2752796015155467e-19,1.2197274440461925e-19,0.0010000000474974513,-8.131516293641283e-19,-0.0006666666595265269,3.3881317890172014e-20,-0.0002857142826542258,1.3434609974809957e-19,2.428020667087488e-19,-4.030603536242635e-21,-1.279583541796108e-20,8.462559144663833e-19,6.776263578034403e-21,0.00019047618843615055,1.241808287328214e-20,-1.8232823306231807e-20,1.3552527156068805e-20,0.0008928571478463709,1.951563910473908e-18,-1.1926223897340549e-18,-0.0017857142956927419,-2.1434174934124664e-18,-4.2815292435808646e-19,-2.212293514297307e-19,1.0396466057782184e-19,-1.8941192025371236e-20,-1.4902863963144677e-20,8.503391881626748e-19,1.241808287328214e-20,0.00044642857392318547,3.1509625637859973e-19,2.0328790734103208e-19,0.0008333333535119891,1.0842021724855044e-19,5.421010862427522e-20,-0.00041666667675599456,-0.0002380952355451882,3.0324396827547813e-21,-1.1202165339126836e-20,7.300354389714204e-21,-2.639774380257088e-20,-4.8605559308619254e-20,1.2752796015155467e-19,-1.8232823306231807e-20,3.1509625637859973e-19,0.0001190476177725941,4.0657581468206416e-20,0.00041666667675599456,-1.0842021724855044e-18,-1.6398557858843255e-18,-1.463672932855431e-18,-0.00041666667675599456,1.6263032587282567e-19,1.3552527156068805e-19,8.131516293641283e-20,2.710505431213761e-20,2.981555974335137e-19,1.2197274440461925e-19,1.3552527156068805e-20,2.0328790734103208e-19,4.0657581468206416e-20,5.952380888629705e-05,5.0,4.0,6.0,3.0,0.09392856806516647,-0.025833332911133766,-0.030476190149784088,-0.022440476343035698,-0.037261903285980225,0.0019841270986944437,0.0033333334140479565,0.0023809524718672037,0.004166666883975267,0.0027777778450399637,0.0028571428265422583,0.004999999888241291,0.0014880952658131719,0.0035714285913854837,0.004166666883975267,-0.025833332911133766,0.024821428582072258,0.0033333334140479565,0.0023809524718672037,0.004166666883975267,-0.003968254197388887,-0.0016666667070239782,-0.0011904762359336019,-0.0020833334419876337,-0.0,-4.042739002842998e-19,-0.0,5.421010862427522e-20,-3.3881317890172014e-20,-0.0,-0.030476190149784088,0.0033333334140479565,0.03976190462708473,0.0028571428265422583,0.004999999888241291,1.0842021724855044e-19,-0.002222222276031971,-2.990083172474793e-19,1.9737298434990973e-19,-0.008333333767950535,-0.0019047618843615055,-0.0033333334140479565,-1.1322513365099081e-18,-3.3881317890172014e-20,-9.629649721936179e-33,-0.022440476343035698,0.0023809524718672037,0.0028571428265422583,0.01716071367263794,0.0035714285913854837,-2.33347359995525e-20,1.0526558949916901e-19,-0.0009523809421807528,-5.6392282166024e-20,-0.0,-0.0011428571306169033,-0.0,-0.0022321429569274187,-0.0014285714132711291,-1.8103299346337465e-17,-0.037261903285980225,0.004166666883975267,0.004999999888241291,0.0035714285913854837,0.07892857491970062,-1.0842021724855044e-19,1.9737298434990973e-19,-9.027360005619601e-20,-0.004166666883975267,-0.0,-3.3881317890172014e-20,-0.004999999888241291,-9.64939933512099e-18,-0.0035714285913854837,-0.02500000037252903,0.0019841270986944437,-0.003968254197388887,1.0842021724855044e-19,-2.33347359995525e-20,-1.0842021724855044e-19,0.0009920635493472219,-0.0,-0.0,5.421010862427522e-20,-0.0,-1.4400685588800864e-36,0.0,3.115523472547519e-21,-1.7294629464911887e-37,0.0,0.0033333334140479565,-0.0016666667070239782,-0.002222222276031971,1.0526558949916901e-19,1.9737298434990973e-19,-0.0,0.0011111111380159855,-5.2632794749584506e-20,-9.868649217495487e-20,-0.0,-1.7873575275245198e-35,-0.0,-0.0,-1.4979455485730157e-36,-0.0,0.0023809524718672037,-0.0011904762359336019,-2.990083172474793e-19,-0.0009523809421807528,-9.027360005619601e-20,-0.0,-5.2632794749584506e-20,0.0004761904710903764,2.8196141083012e-20,-0.0,1.617095575287805e-19,-0.0,-2.710505431213761e-20,1.3552527156068805e-20,-0.0,0.004166666883975267,-0.0020833334419876337,1.9737298434990973e-19,-5.6392282166024e-20,-0.004166666883975267,5.421010862427522e-20,-9.868649217495487e-20,2.8196141083012e-20,0.0020833334419876337,-0.0,1.0477909232172026e-35,-0.0,-1.504632769052528e-36,7.52316384526264e-37,-0.0,0.0027777778450399637,-0.0,-0.008333333767950535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0027777778450399637,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-4.042739002842998e-19,-0.0019047618843615055,-0.0011428571306169033,-3.3881317890172014e-20,-1.4400685588800864e-36,-1.7873575275245198e-35,1.617095575287805e-19,1.0477909232172026e-35,-0.0,0.0007619047537446022,-0.0,4.529005139244479e-19,1.3552527156068805e-20,3.851859888774472e-33,0.004999999888241291,-0.0,-0.0033333334140479565,-0.0,-0.004999999888241291,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,0.0014880952658131719,5.421010862427522e-20,-1.1322513365099081e-18,-0.0022321429569274187,-9.64939933512099e-18,3.115523472547519e-21,-0.0,-2.710505431213761e-20,-1.504632769052528e-36,-0.0,4.529005139244479e-19,-0.0,0.00044642857392318547,6.959905428839418e-19,3.965082408057119e-18,0.0035714285913854837,-3.3881317890172014e-20,-3.3881317890172014e-20,-0.0014285714132711291,-0.0035714285913854837,-1.7294629464911887e-37,-1.4979455485730157e-36,1.3552527156068805e-20,7.52316384526264e-37,-0.0,1.3552527156068805e-20,-0.0,6.959905428839418e-19,0.0014285714132711291,-1.722112176960247e-18,0.004166666883975267,-0.0,-9.629649721936179e-33,-1.8103299346337465e-17,-0.02500000037252903,0.0,-0.0,-0.0,-0.0,-0.0,3.851859888774472e-33,-0.0,3.965082408057119e-18,-1.722112176960247e-18,0.012500000186264515,5.0,4.0,6.0,4.0,0.07582738250494003,-0.019999999552965164,-0.02360714226961136,-0.0173660721629858,-0.02360714226961136,0.0014880952658131719,0.0024999999441206455,0.0017857142956927419,0.0024999999441206455,0.0020833334419876337,0.002142857061699033,0.003000000026077032,0.0011160714784637094,0.002142857061699033,0.0020833334419876337,-0.019999999552965164,0.018928570672869682,0.0024999999441206455,0.0017857142956927419,0.0024999999441206455,-0.0029761905316263437,-0.0012499999720603228,-0.0008928571478463709,-0.0012499999720603228,-0.0,2.0328790734103208e-19,-0.0,-0.0,1.6940658945086007e-20,-1.2037062152420224e-34,-0.02360714226961136,0.0024999999441206455,0.030321428552269936,0.002142857061699033,0.003000000026077032,-1.0842021724855044e-19,-0.0016666667070239782,3.7246474737675555e-19,1.9737298434990973e-19,-0.0062500000931322575,-0.0014285714132711291,-0.0020000000949949026,5.34941889739894e-19,-3.2098834080538496e-36,-9.62964972193618e-34,-0.0173660721629858,0.0017857142956927419,0.002142857061699033,0.01308482140302658,0.002142857061699033,2.0914954826847865e-20,1.6917684003572346e-19,-0.0007142857066355646,8.458842001786173e-20,-0.0,-0.0008571428479626775,-0.0,-0.0016741071594879031,-0.0008571428479626775,3.960454746120191e-18,-0.02360714226961136,0.0024999999441206455,0.003000000026077032,0.002142857061699033,0.030321428552269936,-1.0842021724855044e-19,1.9737298434990973e-19,1.0152907896294774e-19,-0.0016666667070239782,-0.0,-1.1766228253990769e-33,-0.0020000000949949026,2.927345865710862e-18,-0.0014285714132711291,-0.0062500000931322575,0.0014880952658131719,-0.0029761905316263437,-1.0842021724855044e-19,2.0914954826847865e-20,-1.0842021724855044e-19,0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,-3.6318721764211085e-36,0.0,-1.0376777903154886e-36,-0.0,-0.0,0.0024999999441206455,-0.0012499999720603228,-0.0016666667070239782,1.6917684003572346e-19,1.9737298434990973e-19,-0.0,0.0008333333535119891,-8.458842001786173e-20,-9.868649217495487e-20,-0.0,1.9259299730858284e-35,-0.0,-0.0,1.6049417040269248e-36,-0.0,0.0017857142956927419,-0.0008928571478463709,3.7246474737675555e-19,-0.0007142857066355646,1.0152907896294774e-19,-0.0,-8.458842001786173e-20,0.0003571428533177823,-4.2294210008930866e-20,-0.0,-8.131516293641283e-20,-0.0,-0.0,-6.776263578034403e-21,4.81482486096809e-35,0.0024999999441206455,-0.0012499999720603228,1.9737298434990973e-19,8.458842001786173e-20,-0.0016666667070239782,-0.0,-9.868649217495487e-20,-4.2294210008930866e-20,0.0008333333535119891,-0.0,1.0532429383367696e-35,-0.0,3.009265538105056e-36,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,2.0328790734103208e-19,-0.0014285714132711291,-0.0008571428479626775,-1.1766228253990769e-33,-3.6318721764211085e-36,1.9259299730858284e-35,-8.131516293641283e-20,1.0532429383367696e-35,-0.0,0.0005714285653084517,-0.0,-2.1397676106583645e-19,-0.0,3.851859888774472e-34,0.003000000026077032,-0.0,-0.0020000000949949026,-0.0,-0.0020000000949949026,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,5.34941889739894e-19,-0.0016741071594879031,2.927345865710862e-18,-1.0376777903154886e-36,-0.0,-0.0,3.009265538105056e-36,-0.0,-2.1397676106583645e-19,-0.0,0.0003348214377183467,-3.7697337285365825e-19,-6.938894007304805e-19,0.002142857061699033,1.6940658945086007e-20,-3.2098834080538496e-36,-0.0008571428479626775,-0.0014285714132711291,-0.0,1.6049417040269248e-36,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.0,-3.7697337285365825e-19,0.0005714285653084517,-3.2733847774559625e-19,0.0020833334419876337,-1.2037062152420224e-34,-9.62964972193618e-34,3.960454746120191e-18,-0.0062500000931322575,-0.0,-0.0,4.81482486096809e-35,-0.0,-0.0,3.851859888774472e-34,-0.0,-6.938894007304805e-19,-3.2733847774559625e-19,0.0020833334419876337,5.0,4.0,6.0,5.0,0.06369047611951828,-0.016333334147930145,-0.019285714253783226,-0.014178571291267872,-0.016333334147930145,0.0011904762359336019,0.0020000000949949026,0.0014285714132711291,0.0016666667070239782,0.0016666667070239782,0.001714285695925355,0.0020000000949949026,0.0008928571478463709,0.0014285714132711291,0.0011904762359336019,-0.016333334147930145,0.015309523791074753,0.0020000000949949026,0.0014285714132711291,0.0016666667070239782,-0.0023809524718672037,-0.0010000000474974513,-0.0007142857066355646,-0.0008333333535119891,3.851859888774472e-34,-1.2524872859715016e-19,1.6336912740680623e-19,-0.0,4.157891526774844e-20,2.7730160517157616e-20,-0.019285714253783226,0.0020000000949949026,0.024523809552192688,0.001714285695925355,0.0020000000949949026,-0.0,-0.0013333333190530539,-2.4417965847077343e-19,3.683845303713214e-20,-0.004999999888241291,-0.0011428571306169033,-0.0013333333190530539,-4.1213049793148025e-18,-2.234352973668024e-18,-5.3768303187304524e-18,-0.014178571291267872,0.0014285714132711291,0.001714285695925355,0.010582142509520054,0.0014285714132711291,-6.1222936971770554e-21,-1.1910050189919664e-19,-0.0005714285653084517,1.0264135900584453e-19,-7.76023710287747e-18,-0.0006857143016532063,-4.2012834183813297e-19,-0.0013392857508733869,-0.0005714285653084517,-3.938880634973889e-18,-0.016333334147930145,0.0016666667070239782,0.0020000000949949026,0.0014285714132711291,0.015309523791074753,-0.0,-1.2631871256888164e-19,5.42643535778828e-20,-0.0008333333535119891,-9.4459890050493e-18,-2.474173726352767e-18,-0.0010000000474974513,-3.415236843329339e-18,-0.0007142857066355646,-0.0023809524718672037,0.0011904762359336019,-0.0023809524718672037,-0.0,-6.1222936971770554e-21,-0.0,0.0005952381179668009,2.710505431213761e-20,-0.0,-0.0,-0.0,1.8612059655627478e-36,-2.59419438610562e-36,-2.182438851448422e-22,2.1324354669158478e-37,-1.0909784255622225e-21,0.0020000000949949026,-0.0010000000474974513,-0.0013333333190530539,-1.1910050189919664e-19,-1.2631871256888164e-19,2.710505431213761e-20,0.0006666666595265269,5.955025094959832e-20,6.315935628444082e-20,-0.0,1.0445224405117546e-35,-1.2387546583788688e-35,-3.009265538105056e-36,-3.151316755308718e-36,1.6014996665830345e-36,0.0014285714132711291,-0.0007142857066355646,-2.4417965847077343e-19,-0.0005714285653084517,5.42643535778828e-20,-0.0,5.955025094959832e-20,0.0002857142826542258,-3.1661139276685545e-20,-0.0,5.0268079248751467e-20,-2.9552201208483883e-22,-0.0,-0.0,2.184185351627258e-21,0.0016666667070239782,-0.0008333333535119891,3.683845303713214e-20,1.0264135900584453e-19,-0.0008333333535119891,-0.0,6.315935628444082e-20,-3.1661139276685545e-20,0.00041666667675599456,-1.925929944387236e-34,-2.1073432060214718e-22,-8.131516293641283e-20,4.74680452083298e-22,-2.078945763387422e-20,-1.4222433592311653e-20,0.0016666667070239782,3.851859888774472e-34,-0.004999999888241291,-7.76023710287747e-18,-9.4459890050493e-18,-0.0,-0.0,-0.0,-1.925929944387236e-34,0.0016666667070239782,6.929483276873366e-19,1.0105497005510531e-18,1.09039765187595e-18,6.34413150133963e-19,1.5860329011843016e-18,0.001714285695925355,-1.2524872859715016e-19,-0.0011428571306169033,-0.0006857143016532063,-2.474173726352767e-18,1.8612059655627478e-36,1.0445224405117546e-35,5.0268079248751467e-20,-2.1073432060214718e-22,6.929483276873366e-19,0.0004571428580675274,2.7682470323669666e-19,3.4059901014543384e-19,1.2874900798265365e-19,4.344240907745807e-19,0.0020000000949949026,1.6336912740680623e-19,-0.0013333333190530539,-4.2012834183813297e-19,-0.0010000000474974513,-2.59419438610562e-36,-1.2387546583788688e-35,-2.9552201208483883e-22,-8.131516293641283e-20,1.0105497005510531e-18,2.7682470323669666e-19,0.0006666666595265269,-6.926297197681455e-22,4.620494788505182e-21,-2.336642541806638e-19,0.0008928571478463709,-0.0,-4.1213049793148025e-18,-0.0013392857508733869,-3.415236843329339e-18,-2.182438851448422e-22,-3.009265538105056e-36,-0.0,4.74680452083298e-22,1.09039765187595e-18,3.4059901014543384e-19,-6.926297197681455e-22,0.0002678571327123791,3.032253098596688e-19,6.775049690485481e-19,0.0014285714132711291,4.157891526774844e-20,-2.234352973668024e-18,-0.0005714285653084517,-0.0007142857066355646,2.1324354669158478e-37,-3.151316755308718e-36,-0.0,-2.078945763387422e-20,6.34413150133963e-19,1.2874900798265365e-19,4.620494788505182e-21,3.032253098596688e-19,0.0002857142826542258,-5.1850000777948044e-20,0.0011904762359336019,2.7730160517157616e-20,-5.3768303187304524e-18,-3.938880634973889e-18,-0.0023809524718672037,-1.0909784255622225e-21,1.6014996665830345e-36,2.184185351627258e-21,-1.4222433592311653e-20,1.5860329011843016e-18,4.344240907745807e-19,-2.336642541806638e-19,6.775049690485481e-19,-5.1850000777948044e-20,0.0005952381179668009,5.0,4.0,6.0,6.0,0.05494897812604904,-0.013809523545205593,-0.016309523954987526,-0.011985544115304947,-0.011985544115304947,0.0009920635493472219,0.0016666667070239782,0.0011904762359336019,0.0011904762359336019,0.0013888889225199819,0.0014285714132711291,0.0014285714132711291,0.0007440476329065859,0.0010204081190750003,0.0007440476329065859,-0.013809523545205593,0.012857142835855484,0.0016666667070239782,0.0011904762359336019,0.0011904762359336019,-0.0019841270986944437,-0.0008333333535119891,-0.0005952381179668009,-0.0005952381179668009,-0.0,-1.8726208430403558e-19,-1.866958533253489e-19,-2.710505431213761e-20,-1.9285775758397794e-20,-1.7838582887057925e-20,-0.016309523954987526,0.0016666667070239782,0.020595237612724304,0.0014285714132711291,0.0014285714132711291,-0.0,-0.0011111111380159855,-1.3550176153671565e-19,-1.3319059305584835e-19,-0.004166666883975267,-0.0009523809421807528,-0.0009523809421807528,-5.114930771328174e-19,-4.3436346102061995e-20,-5.060762331927256e-19,-0.011985544115304947,0.0011904762359336019,0.0014285714132711291,0.008886479772627354,0.0010204081190750003,-3.793956614175947e-20,5.2632794749584506e-20,-0.0004761904710903764,-5.989042251416222e-20,-0.0,-0.0005714285653084517,-5.421010862427522e-20,-0.0011160714784637094,-0.0004081632650922984,-2.058502854040529e-18,-0.011985544115304947,0.0011904762359336019,0.0014285714132711291,0.0010204081190750003,0.008886479772627354,-0.0,5.2632794749584506e-20,-4.564887491046948e-21,-0.0004761904710903764,-0.0,1.1303570088966307e-20,-0.0005714285653084517,-2.2497195079074217e-18,-0.0004081632650922984,-0.0011160714784637094,0.0009920635493472219,-0.0019841270986944437,-0.0,-3.793956614175947e-20,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-5.1720714699524804e-36,-5.266214691683848e-36,1.3490755989797988e-20,5.346855853402448e-37,3.955801851943406e-21,0.0016666667070239782,-0.0008333333535119891,-0.0011111111380159855,5.2632794749584506e-20,5.2632794749584506e-20,-0.0,0.0005555555690079927,-2.6316397374792253e-20,-2.6316397374792253e-20,-0.0,-8.279146474987086e-36,-8.254112692706269e-36,-0.0,-8.526540180932102e-37,-5.091440621790578e-37,0.0011904762359336019,-0.0005952381179668009,-1.3550176153671565e-19,-0.0004761904710903764,-4.564887491046948e-21,-0.0,-2.6316397374792253e-20,0.0002380952355451882,9.491169707042174e-21,-0.0,7.511437795781952e-20,1.3944352171503322e-22,-1.3552527156068805e-20,-6.776263578034403e-21,4.264205419874201e-22,0.0011904762359336019,-0.0005952381179668009,-1.3319059305584835e-19,-5.989042251416222e-20,-0.0004761904710903764,-0.0,-2.6316397374792253e-20,9.491169707042174e-21,0.0002380952355451882,-0.0,-2.0954492030546563e-22,7.453889935837843e-20,9.20632735700109e-22,1.4490574204510947e-20,-1.7408268174232648e-22,0.0013888889225199819,-0.0,-0.004166666883975267,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-1.8726208430403558e-19,-0.0009523809421807528,-0.0005714285653084517,1.1303570088966307e-20,-5.1720714699524804e-36,-8.279146474987086e-36,7.511437795781952e-20,-2.0954492030546563e-22,-0.0,0.0003809523768723011,1.6733222858239476e-22,2.04270404038289e-19,-3.3881317890172014e-21,-4.911209191932791e-22,0.0014285714132711291,-1.866958533253489e-19,-0.0009523809421807528,-5.421010862427522e-20,-0.0005714285653084517,-5.266214691683848e-36,-8.254112692706269e-36,1.3944352171503322e-22,7.453889935837843e-20,-0.0,1.6733222858239476e-22,0.0003809523768723011,3.268207563861918e-22,2.0762669583607146e-20,2.0292162142603594e-19,0.0007440476329065859,-2.710505431213761e-20,-5.114930771328174e-19,-0.0011160714784637094,-2.2497195079074217e-18,1.3490755989797988e-20,-0.0,-1.3552527156068805e-20,9.20632735700109e-22,-0.0,2.04270404038289e-19,3.268207563861918e-22,0.00022321428696159273,1.2540665547066243e-19,3.91548734686543e-19,0.0010204081190750003,-1.9285775758397794e-20,-4.3436346102061995e-20,-0.0004081632650922984,-0.0004081632650922984,5.346855853402448e-37,-8.526540180932102e-37,-6.776263578034403e-21,1.4490574204510947e-20,-0.0,-3.3881317890172014e-21,2.0762669583607146e-20,1.2540665547066243e-19,0.00016326530021615326,3.989519236207102e-20,0.0007440476329065859,-1.7838582887057925e-20,-5.060762331927256e-19,-2.058502854040529e-18,-0.0011160714784637094,3.955801851943406e-21,-5.091440621790578e-37,4.264205419874201e-22,-1.7408268174232648e-22,-0.0,-4.911209191932791e-22,2.0292162142603594e-19,3.91548734686543e-19,3.989519236207102e-20,0.00022321428696159273,5.0,4.0,6.0,7.0,0.04833900183439255,-0.011964285746216774,-0.01413265336304903,-0.010382653214037418,-0.009175170212984085,0.0008503401186317205,0.0014285714132711291,0.0010204081190750003,0.0008928571478463709,0.0011904762359336019,0.0012244897661730647,0.0010714285308495164,0.0006377550889737904,0.0007653061184100807,0.0004960317746736109,-0.011964285746216774,0.011084184050559998,0.0014285714132711291,0.0010204081190750003,0.0008928571478463709,-0.001700680237263441,-0.0007142857066355646,-0.0005102040595375001,-0.00044642857392318547,1.5105074855478771e-18,1.9532073115558977e-18,1.2130146665801715e-18,1.5825091117748257e-18,1.1339697008349105e-18,4.828633738553797e-19,-0.01413265336304903,0.0014285714132711291,0.01775510236620903,0.0012244897661730647,0.0010714285308495164,3.940626399656682e-18,-0.0009523809421807528,-1.562437289867891e-19,-1.7894915179242493e-19,-0.0035714285913854837,-0.0008163265301845968,-0.0007142857066355646,1.1763625004331e-18,-3.503164177889771e-19,2.001222612873975e-20,-0.010382653214037418,0.0010204081190750003,0.0012244897661730647,0.007660714443773031,0.0007653061184100807,3.8771299478855806e-18,5.081239187991006e-19,-0.0004081632650922984,-1.4001245496514974e-19,1.207780267663936e-18,-0.0004897959297522902,5.624298769768554e-19,-0.0009566326625645161,-0.0003061224415432662,-3.010237686593589e-19,-0.009175170212984085,0.0008928571478463709,0.0010714285308495164,0.0007653061184100807,0.005637755151838064,2.571459265375741e-18,-3.121715654524624e-20,-5.111924486789426e-19,-0.00029761905898340046,-3.8933331236157873e-19,-8.441826896585957e-19,-0.0003571428533177823,-1.8973538018496328e-19,-0.00025510202976875007,-0.0005952381179668009,0.0008503401186317205,-0.001700680237263441,3.940626399656682e-18,3.8771299478855806e-18,2.571459265375741e-18,0.00042517005931586027,-8.48761366993624e-20,-7.27509743137392e-20,-5.304758382151437e-20,-3.776268713869693e-19,-4.660994730674386e-19,-3.398641894181512e-19,-3.540252113123293e-19,-2.9131215128010353e-19,-1.5734453836103525e-19,0.0014285714132711291,-0.0007142857066355646,-0.0009523809421807528,5.081239187991006e-19,-3.121715654524624e-20,-8.48761366993624e-20,0.0004761904710903764,4.988990584362415e-20,4.9594996568203386e-20,1.82657587615879e-34,-4.350261748629427e-20,1.2478955044889544e-34,-8.49660473545378e-20,-2.718913592893392e-20,1.2410677649383482e-36,0.0010204081190750003,-0.0005102040595375001,-1.562437289867891e-19,-0.0004081632650922984,-5.111924486789426e-19,-7.27509743137392e-20,4.988990584362415e-20,0.0002040816325461492,6.44454088794591e-20,9.62964972193618e-35,-8.675343440866144e-21,2.605075930706336e-20,-1.3552527156068805e-20,2.0328790734103208e-20,4.4985157788536577e-20,0.0008928571478463709,-0.00044642857392318547,-1.7894915179242493e-19,-1.4001245496514974e-19,-0.00029761905898340046,-5.304758382151437e-20,4.9594996568203386e-20,6.44454088794591e-20,0.00014880952949170023,8.425943506694157e-35,-6.224029743353171e-22,2.710505431213761e-20,-1.6926513469986818e-21,7.080229834927766e-21,1.1350612755130993e-20,0.0011904762359336019,1.5105074855478771e-18,-0.0035714285913854837,1.207780267663936e-18,-3.8933331236157873e-19,-3.776268713869693e-19,1.82657587615879e-34,9.62964972193618e-35,8.425943506694157e-35,0.0011904762359336019,1.539854483663369e-19,2.9731823215966863e-19,-2.8322015354022696e-19,-2.2657612735582555e-20,-2.2028234918180537e-20,0.0012244897661730647,1.9532073115558977e-18,-0.0008163265301845968,-0.0004897959297522902,-8.441826896585957e-19,-4.660994730674386e-19,-4.350261748629427e-20,-8.675343440866144e-21,-6.224029743353171e-22,1.539854483663369e-19,0.00032653060043230653,1.765771144507011e-20,7.360717733356548e-20,1.4230153513872246e-19,5.011244974014359e-20,0.0010714285308495164,1.2130146665801715e-18,-0.0007142857066355646,5.624298769768554e-19,-0.0003571428533177823,-3.398641894181512e-19,1.2478955044889544e-34,2.605075930706336e-20,2.710505431213761e-20,2.9731823215966863e-19,1.765771144507011e-20,0.0002380952355451882,-1.5135865878299234e-19,-6.34399708449009e-21,-5.577386126056404e-20,0.0006377550889737904,1.5825091117748257e-18,1.1763625004331e-18,-0.0009566326625645161,-1.8973538018496328e-19,-3.540252113123293e-19,-8.49660473545378e-20,-1.3552527156068805e-20,-1.6926513469986818e-21,-2.8322015354022696e-19,7.360717733356548e-20,-1.5135865878299234e-19,0.00019132652960252017,4.8471901785032316e-20,2.853923686028824e-20,0.0007653061184100807,1.1339697008349105e-18,-3.503164177889771e-19,-0.0003061224415432662,-0.00025510202976875007,-2.9131215128010353e-19,-2.718913592893392e-20,2.0328790734103208e-20,7.080229834927766e-21,-2.2657612735582555e-20,1.4230153513872246e-19,-6.34399708449009e-21,4.8471901785032316e-20,0.0001020408162730746,-2.6805149641298854e-20,0.0004960317746736109,4.828633738553797e-19,2.001222612873975e-20,-3.010237686593589e-19,-0.0005952381179668009,-1.5734453836103525e-19,1.2410677649383482e-36,4.4985157788536577e-20,1.1350612755130993e-20,-2.2028234918180537e-20,5.011244974014359e-20,-5.577386126056404e-20,2.853923686028824e-20,-2.6805149641298854e-20,9.920635056914762e-05,5.0,4.0,6.0,8.0,0.04315972328186035,-0.010555555112659931,-0.012470237910747528,-0.009159225970506668,-0.0072519839741289616,0.0007440476329065859,0.0012499999720603228,0.0008928571478463709,0.0006944444612599909,0.0010416667209938169,0.0010714285308495164,0.0008333333535119891,0.0005580357392318547,0.0005952381179668009,0.00034722223062999547,-0.010555555112659931,0.009742063470184803,0.0012499999720603228,0.0008928571478463709,0.0006944444612599909,-0.0014880952658131719,-0.0006249999860301614,-0.00044642857392318547,-0.00034722223062999547,-0.0,0.0,3.5575383784680614e-20,-2.9870660288244146e-35,6.240272513085062e-20,-2.765262525942784e-20,-0.012470237910747528,0.0012499999720603228,0.015605159103870392,0.0010714285308495164,0.0008333333535119891,-0.0,-0.0008333333535119891,-0.0,3.5575383784680614e-20,-0.0031250000465661287,-0.0007142857066355646,-0.0005555555690079927,-2.317134464340893e-34,8.893845946170154e-20,8.5470420733042e-20,-0.009159225970506668,0.0008928571478463709,0.0010714285308495164,0.006732887122780085,0.0005952381179668009,-0.0,-0.0,-0.0003571428533177823,6.240272513085062e-20,-0.0,-0.00042857142398133874,8.893845946170154e-20,-0.0008370535797439516,-0.0002380952355451882,5.449442094056735e-19,-0.0072519839741289616,0.0006944444612599909,0.0008333333535119891,0.0005952381179668009,0.00380810652859509,-0.0,-0.0,-0.0,-0.00019841270113829523,-0.0,-0.0,-0.0002380952355451882,7.853964627893123e-19,-0.0001700680295471102,-0.00034722223062999547,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0006249999860301614,-0.0008333333535119891,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.00044642857392318547,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,3.5575383784680614e-20,6.240272513085062e-20,-0.00019841270113829523,-0.0,-0.0,-0.0,9.920635056914762e-05,-0.0,-0.0,-1.0164395367051604e-20,8.534474265574783e-36,-1.782934980658773e-20,7.900750189521321e-21,0.0010416667209938169,-0.0,-0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,0.0,-0.0007142857066355646,-0.00042857142398133874,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002857142826542258,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,3.5575383784680614e-20,-0.0005555555690079927,8.893845946170154e-20,-0.0002380952355451882,-0.0,-0.0,-0.0,-1.0164395367051604e-20,-0.0,-0.0,0.00015873015217948705,6.620384183831123e-35,-2.541098841762901e-20,-2.442011974784425e-20,0.0005580357392318547,-2.9870660288244146e-35,-2.317134464340893e-34,-0.0008370535797439516,7.853964627893123e-19,-0.0,-0.0,-0.0,8.534474265574783e-36,-0.0,-0.0,6.620384183831123e-35,0.00016741071885917336,-8.286212639120624e-20,-8.26058813470738e-20,0.0005952381179668009,6.240272513085062e-20,8.893845946170154e-20,-0.0002380952355451882,-0.0001700680295471102,-0.0,-0.0,-0.0,-1.782934980658773e-20,-0.0,-0.0,-2.541098841762901e-20,-8.286212639120624e-20,6.80272132740356e-05,-3.768995469839879e-20,0.00034722223062999547,-2.765262525942784e-20,8.5470420733042e-20,5.449442094056735e-19,-0.00034722223062999547,-0.0,-0.0,-0.0,7.900750189521321e-21,-0.0,-0.0,-2.442011974784425e-20,-8.26058813470738e-20,-3.768995469839879e-20,4.960317528457381e-05,5.0,4.0,7.0,3.0,0.08282596617937088,-0.022397959604859352,-0.026428570970892906,-0.017202381044626236,-0.03232142701745033,0.001700680237263441,0.0028571428265422583,0.0017857142956927419,0.0035714285913854837,0.0023809524718672037,0.002142857061699033,0.004285714123398066,0.0009920635493472219,0.0026785715017467737,0.0035714285913854837,-0.022397959604859352,0.021403061226010323,0.0028571428265422583,0.0017857142956927419,0.0035714285913854837,-0.003401360474526882,-0.0014285714132711291,-0.0008928571478463709,-0.0017857142956927419,3.0210149710957543e-18,2.545441126388498e-18,-2.5693733226660355e-18,1.2180987254200756e-18,-1.6488391741318045e-18,-3.550447786257257e-17,-0.026428570970892906,0.0028571428265422583,0.034285712987184525,0.002142857061699033,0.004285714123398066,5.5507553822773834e-18,-0.0019047618843615055,-8.476622249053001e-19,-2.1811729117015305e-18,-0.0071428571827709675,-0.0014285714132711291,-0.0028571428265422583,-6.576970436064119e-19,-8.907960128962146e-18,-4.964283087206368e-17,-0.017202381044626236,0.0017857142956927419,0.002142857061699033,0.010892856866121292,0.0026785715017467737,3.686357696802782e-18,-6.741898359485887e-19,-0.0005952381179668009,-1.3632330439640624e-18,-2.4779876493620958e-18,-0.0007142857066355646,-9.819355999679197e-18,-0.0011904762359336019,-0.0008928571478463709,-2.962526518907232e-17,-0.03232142701745033,0.0035714285913854837,0.004285714123398066,0.0026785715017467737,0.06803571432828903,-1.4090877805414242e-17,-1.2997917444603026e-17,-8.1666789143003e-18,-0.0035714285913854837,-3.325684284980878e-17,-4.928830126152345e-18,-0.004285714123398066,-1.100465205072787e-17,-0.0026785715017467737,-0.02142857201397419,0.001700680237263441,-0.003401360474526882,5.5507553822773834e-18,3.686357696802782e-18,-1.4090877805414242e-17,0.0008503401186317205,-1.697522733987248e-19,-1.0609516764302874e-19,1.3810354183122756e-18,-7.552537427739386e-19,-6.797283788363024e-19,-6.427223370519655e-34,-3.146890767220705e-19,-1.4444474582904269e-33,5.664403380997269e-18,0.0028571428265422583,-0.0014285714132711291,-0.0019047618843615055,-6.741898359485887e-19,-1.2997917444603026e-17,-1.697522733987248e-19,0.0009523809421807528,9.918999313640677e-20,1.0905864558507653e-18,6.05837262052131e-33,1.0044201580078083e-33,7.612957801607556e-19,1.98558811940139e-33,4.758098496757752e-19,3.806478797406201e-18,0.0017857142956927419,-0.0008928571478463709,-8.476622249053001e-19,-0.0005952381179668009,-8.1666789143003e-18,-1.0609516764302874e-19,9.918999313640677e-20,0.00029761905898340046,6.816165219820312e-19,3.827785764469631e-33,5.782411888165622e-20,4.758098496757752e-19,1.3552527156068805e-20,3.1170812458958252e-19,2.3790494034752407e-18,0.0035714285913854837,-0.0017857142956927419,-2.1811729117015305e-18,-1.3632330439640624e-18,-0.0035714285913854837,1.3810354183122756e-18,1.0905864558507653e-18,6.816165219820312e-19,0.0017857142956927419,-1.2266058553864983e-33,-9.926907447675173e-34,1.9614866281186946e-33,-4.81482486096809e-34,1.2518544638517033e-33,1.9006976642732477e-32,0.0023809524718672037,3.0210149710957543e-18,-0.0071428571827709675,-2.4779876493620958e-18,-3.325684284980878e-17,-7.552537427739386e-19,6.05837262052131e-33,3.827785764469631e-33,-1.2266058553864983e-33,0.0023809524718672037,5.946364643193373e-19,3.667512454497293e-18,-4.4056469836361075e-20,1.5860329011843016e-18,1.0309214012794325e-17,0.002142857061699033,2.545441126388498e-18,-0.0014285714132711291,-0.0007142857066355646,-4.928830126152345e-18,-6.797283788363024e-19,1.0044201580078083e-33,5.782411888165622e-20,-9.926907447675173e-34,5.946364643193373e-19,0.0004761904710903764,6.779157676202573e-19,-1.1265972468303785e-19,3.5236570605778894e-19,9.516196993515503e-19,0.004285714123398066,-2.5693733226660355e-18,-0.0028571428265422583,-9.819355999679197e-18,-0.004285714123398066,-6.427223370519655e-34,7.612957801607556e-19,4.758098496757752e-19,1.9614866281186946e-33,3.667512454497293e-18,6.779157676202573e-19,0.0028571428265422583,9.516196993515503e-19,1.6653344997146072e-18,7.612957594812403e-18,0.0009920635493472219,1.2180987254200756e-18,-6.576970436064119e-19,-0.0011904762359336019,-1.100465205072787e-17,-3.146890767220705e-19,1.98558811940139e-33,1.3552527156068805e-20,-4.81482486096809e-34,-4.4056469836361075e-20,-1.1265972468303785e-19,9.516196993515503e-19,0.00019841270113829523,6.08821215957338e-19,3.436404601999724e-18,0.0026785715017467737,-1.6488391741318045e-18,-8.907960128962146e-18,-0.0008928571478463709,-0.0026785715017467737,-1.4444474582904269e-33,4.758098496757752e-19,3.1170812458958252e-19,1.2518544638517033e-33,1.5860329011843016e-18,3.5236570605778894e-19,1.6653344997146072e-18,6.08821215957338e-19,0.0008928571478463709,2.4248003495652424e-18,0.0035714285913854837,-3.550447786257257e-17,-4.964283087206368e-17,-2.962526518907232e-17,-0.02142857201397419,5.664403380997269e-18,3.806478797406201e-18,2.3790494034752407e-18,1.9006976642732477e-32,1.0309214012794325e-17,9.516196993515503e-19,7.612957594812403e-18,3.436404601999724e-18,2.4248003495652424e-18,0.010714286006987095,5.0,4.0,7.0,4.0,0.06678911298513412,-0.017334183678030968,-0.02046428620815277,-0.013303571380674839,-0.02046428620815277,0.0012755101779475808,0.002142857061699033,0.0013392857508733869,0.002142857061699033,0.0017857142956927419,0.0016071428544819355,0.0025714286603033543,0.0007440476329065859,0.0016071428544819355,0.0017857142956927419,-0.017334183678030968,0.016320152208209038,0.002142857061699033,0.0013392857508733869,0.002142857061699033,-0.0025510203558951616,-0.0010714285308495164,-0.0006696428754366934,-0.0010714285308495164,-0.0,-2.4394548234688996e-20,0.0,4.0657581468206416e-20,2.0328790734103208e-20,-0.0,-0.02046428620815277,0.002142857061699033,0.02614285796880722,0.0016071428544819355,0.0025714286603033543,-0.0,-0.0014285714132711291,-2.4394548234688996e-20,-0.0,-0.0053571430034935474,-0.0010714285308495164,-0.001714285695925355,-1.876503850171117e-21,4.0657581468206416e-20,-0.0,-0.013303571380674839,0.0013392857508733869,0.0016071428544819355,0.008303571492433548,0.0016071428544819355,-0.0,-0.0,-0.00044642857392318547,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0008928571478463709,-0.0005357142654247582,-0.0,-0.02046428620815277,0.002142857061699033,0.0025714286603033543,0.0016071428544819355,0.02614285796880722,-0.0,-0.0,2.0328790734103208e-20,-0.0014285714132711291,-0.0,4.0657581468206416e-20,-0.001714285695925355,5.421010862427522e-20,-0.0010714285308495164,-0.0053571430034935474,0.0012755101779475808,-0.0025510203558951616,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.002142857061699033,-0.0010714285308495164,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0006696428754366934,-2.4394548234688996e-20,-0.00044642857392318547,2.0328790734103208e-20,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,8.13151661675871e-21,-0.0,-1.3552527156068805e-20,-6.776263578034403e-21,-0.0,0.002142857061699033,-0.0010714285308495164,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-2.4394548234688996e-20,-0.0010714285308495164,-0.0005357142654247582,4.0657581468206416e-20,-0.0,-0.0,8.13151661675871e-21,-0.0,-0.0,0.0003571428533177823,-0.0,6.255012665613397e-22,-1.3552527156068805e-20,-0.0,0.0025714286603033543,0.0,-0.001714285695925355,-0.0,-0.001714285695925355,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,0.0007440476329065859,4.0657581468206416e-20,-1.876503850171117e-21,-0.0008928571478463709,5.421010862427522e-20,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,6.255012665613397e-22,-0.0,0.00014880952949170023,-2.189254337039203e-20,-0.0,0.0016071428544819355,2.0328790734103208e-20,4.0657581468206416e-20,-0.0005357142654247582,-0.0010714285308495164,-0.0,-0.0,-6.776263578034403e-21,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-2.189254337039203e-20,0.0003571428533177823,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0053571430034935474,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,5.0,4.0,7.0,5.0,0.056057821959257126,-0.01415306143462658,-0.01671428605914116,-0.010857142508029938,-0.01415306143462658,0.0010204081190750003,0.001714285695925355,0.0010714285308495164,0.0014285714132711291,0.0014285714132711291,0.0012857143301516771,0.001714285695925355,0.0005952381179668009,0.0010714285308495164,0.0010204081190750003,-0.01415306143462658,0.013198979198932648,0.001714285695925355,0.0010714285308495164,0.0014285714132711291,-0.0020408162381500006,-0.0008571428479626775,-0.0005357142654247582,-0.0007142857066355646,-0.0,1.0164395367051604e-20,-4.513898307157584e-36,2.0328790734103208e-20,-0.0,-0.0,-0.01671428605914116,0.001714285695925355,0.021142857149243355,0.0012857143301516771,0.001714285695925355,-0.0,-0.0011428571306169033,1.0164395367051604e-20,-0.0,-0.004285714123398066,-0.0008571428479626775,-0.0011428571306169033,-3.1275062823196006e-21,0.0,-0.0,-0.010857142508029938,0.0010714285308495164,0.0012857143301516771,0.00671428581699729,0.0010714285308495164,-0.0,-0.0,-0.0003571428533177823,-0.0,-7.137148003630569e-19,-0.00042857142398133874,-1.903239450401889e-19,-0.0007142857066355646,-0.0003571428533177823,-0.0,-0.01415306143462658,0.0014285714132711291,0.001714285695925355,0.0010714285308495164,0.013198979198932648,-0.0,-0.0,-2.256949153578792e-36,-0.0007142857066355646,-9.516196993515503e-19,-1.903239450401889e-19,-0.0008571428479626775,2.710505431213761e-20,-0.0005357142654247582,-0.0020408162381500006,0.0010204081190750003,-0.0020408162381500006,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.001714285695925355,-0.0008571428479626775,-0.0011428571306169033,-0.0,-0.0,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0005357142654247582,1.0164395367051604e-20,-0.0003571428533177823,-2.256949153578792e-36,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-3.3881317890172014e-21,1.504632769052528e-36,-6.776263578034403e-21,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.004285714123398066,-7.137148003630569e-19,-9.516196993515503e-19,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,4.758098496757752e-19,6.34413150133963e-19,-0.0,-0.0,-0.0,0.0012857143301516771,1.0164395367051604e-20,-0.0008571428479626775,-0.00042857142398133874,-1.903239450401889e-19,-0.0,-0.0,-3.3881317890172014e-21,-0.0,4.758098496757752e-19,0.0002857142826542258,1.268826300267926e-19,1.0425021277645988e-21,-0.0,-0.0,0.001714285695925355,-4.513898307157584e-36,-0.0011428571306169033,-1.903239450401889e-19,-0.0008571428479626775,-0.0,-0.0,1.504632769052528e-36,-0.0,6.34413150133963e-19,1.268826300267926e-19,0.0005714285653084517,6.018531076210112e-36,-0.0,-0.0,0.0005952381179668009,2.0328790734103208e-20,-3.1275062823196006e-21,-0.0007142857066355646,2.710505431213761e-20,-0.0,-0.0,-6.776263578034403e-21,-0.0,-0.0,1.0425021277645988e-21,6.018531076210112e-36,0.0001190476177725941,0.0,-0.0,0.0010714285308495164,-0.0,0.0,-0.0003571428533177823,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.00017857142665889114,-0.0,0.0010204081190750003,-0.0,-0.0,-0.0,-0.0020408162381500006,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,5.0,4.0,7.0,6.0,0.04833900183439255,-0.011964285746216774,-0.01413265336304903,-0.009175170212984085,-0.010382653214037418,0.0008503401186317205,0.0014285714132711291,0.0008928571478463709,0.0010204081190750003,0.0011904762359336019,0.0010714285308495164,0.0012244897661730647,0.0004960317746736109,0.0007653061184100807,0.0006377550889737904,-0.011964285746216774,0.011084184050559998,0.0014285714132711291,0.0008928571478463709,0.0010204081190750003,-0.001700680237263441,-0.0007142857066355646,-0.00044642857392318547,-0.0005102040595375001,1.5105074855478771e-18,1.282151042562813e-18,2.045599250075008e-18,6.066702878707587e-19,1.2623225927017278e-18,1.7564402757787743e-18,-0.01413265336304903,0.0014285714132711291,0.01775510236620903,0.0010714285308495164,0.0012244897661730647,3.940626399656682e-18,-0.0009523809421807528,-1.0872854882187958e-19,-6.515292618417897e-20,-0.0035714285913854837,-0.0007142857066355646,-0.0008163265301845968,1.713996811368066e-19,-7.537508848479004e-20,1.39728507125315e-18,-0.009175170212984085,0.0008928571478463709,0.0010714285308495164,0.005637755151838064,0.0007653061184100807,2.571459265375741e-18,-3.121715654524624e-20,-0.00029761905898340046,-5.3494067481836936e-20,-3.8933331236157873e-19,-0.0003571428533177823,-1.6263032587282567e-19,-0.0005952381179668009,-0.00025510202976875007,8.834530892395507e-19,-0.010382653214037418,0.0010204081190750003,0.0012244897661730647,0.0007653061184100807,0.007660714443773031,3.8771299478855806e-18,5.081239187991006e-19,3.134698383485615e-19,-0.0004081632650922984,1.207780267663936e-18,1.2423353241630324e-18,-0.0004897959297522902,2.710505431213761e-19,-0.0003061224415432662,-0.0009566326625645161,0.0008503401186317205,-0.001700680237263441,3.940626399656682e-18,2.571459265375741e-18,3.8771299478855806e-18,0.00042517005931586027,-8.48761366993624e-20,-5.304758382151437e-20,-7.27509743137392e-20,-3.776268713869693e-19,-3.398641894181512e-19,-4.660994730674386e-19,-1.5734453836103525e-19,-2.9131215128010353e-19,-3.540252113123293e-19,0.0014285714132711291,-0.0007142857066355646,-0.0009523809421807528,-3.121715654524624e-20,5.081239187991006e-19,-8.48761366993624e-20,0.0004761904710903764,4.9594996568203386e-20,4.988990584362415e-20,1.82657587615879e-34,1.737000566355617e-34,-4.350261748629427e-20,3.734870707615992e-35,-2.718913592893392e-20,-8.49660473545378e-20,0.0008928571478463709,-0.00044642857392318547,-1.0872854882187958e-19,-0.00029761905898340046,3.134698383485615e-19,-5.304758382151437e-20,4.9594996568203386e-20,0.00014880952949170023,3.165700014244851e-20,1.4294011305999016e-34,2.5975676510602832e-20,-2.7355389538534274e-20,6.776263578034403e-21,-1.3552527156068805e-20,-5.437834940605026e-20,0.0010204081190750003,-0.0005102040595375001,-6.515292618417897e-20,-5.3494067481836936e-20,-0.0004081632650922984,-7.27509743137392e-20,4.988990584362415e-20,3.165700014244851e-20,0.0002040816325461492,9.62964972193618e-35,-2.48521628864673e-22,-1.3552527156068805e-20,9.516198988765614e-22,-6.25307264838818e-21,-1.990210447851936e-20,0.0011904762359336019,1.5105074855478771e-18,-0.0035714285913854837,-3.8933331236157873e-19,1.207780267663936e-18,-3.776268713869693e-19,1.82657587615879e-34,1.4294011305999016e-34,9.62964972193618e-35,0.0011904762359336019,2.9731823215966863e-19,1.539854483663369e-19,-2.2028234918180537e-20,-2.2657612735582555e-20,-2.8322015354022696e-19,0.0010714285308495164,1.282151042562813e-18,-0.0007142857066355646,-0.0003571428533177823,1.2423353241630324e-18,-3.398641894181512e-19,1.737000566355617e-34,2.5975676510602832e-20,-2.48521628864673e-22,2.9731823215966863e-19,0.0002380952355451882,-8.181869620960742e-20,-6.168137193791609e-20,-5.421010862427522e-20,-2.129975860157268e-19,0.0012244897661730647,2.045599250075008e-18,-0.0008163265301845968,-1.6263032587282567e-19,-0.0004897959297522902,-4.660994730674386e-19,-4.350261748629427e-20,-2.7355389538534274e-20,-1.3552527156068805e-20,1.539854483663369e-19,-8.181869620960742e-20,0.00032653060043230653,-3.3535202580542526e-21,8.976434114219891e-20,5.92048965815089e-20,0.0004960317746736109,6.066702878707587e-19,1.713996811368066e-19,-0.0005952381179668009,2.710505431213761e-19,-1.5734453836103525e-19,3.734870707615992e-35,6.776263578034403e-21,9.516198988765614e-22,-2.2028234918180537e-20,-6.168137193791609e-20,-3.3535202580542526e-21,9.920635056914762e-05,-1.425036507437274e-21,-6.183350208479196e-20,0.0007653061184100807,1.2623225927017278e-18,-7.537508848479004e-20,-0.00025510202976875007,-0.0003061224415432662,-2.9131215128010353e-19,-2.718913592893392e-20,-1.3552527156068805e-20,-6.25307264838818e-21,-2.2657612735582555e-20,-5.421010862427522e-20,8.976434114219891e-20,-1.425036507437274e-21,0.0001020408162730746,-6.143574453242759e-20,0.0006377550889737904,1.7564402757787743e-18,1.39728507125315e-18,8.834530892395507e-19,-0.0009566326625645161,-3.540252113123293e-19,-8.49660473545378e-20,-5.437834940605026e-20,-1.990210447851936e-20,-2.8322015354022696e-19,-2.129975860157268e-19,5.92048965815089e-20,-6.183350208479196e-20,-6.143574453242759e-20,0.00019132652960252017,5.0,4.0,7.0,7.0,0.04250789433717728,-0.010364431887865067,-0.01224489789456129,-0.007946428842842579,-0.007946428842842579,0.0007288630004040897,0.0012244897661730647,0.0007653061184100807,0.0007653061184100807,0.0010204081190750003,0.000918367353733629,0.000918367353733629,0.00042517005931586027,0.0005739795742556453,0.00042517005931586027,-0.010364431887865067,0.00955539382994175,0.0012244897661730647,0.0007653061184100807,0.0007653061184100807,-0.0014577260008081794,-0.0006122448830865324,-0.00038265305920504034,-0.00038265305920504034,1.2947207757535922e-18,1.1842070677722467e-18,1.1847870247792229e-18,5.592919156243472e-19,7.571186214649394e-19,5.470220354056185e-19,-0.01224489789456129,0.0012244897661730647,0.015306122601032257,0.000918367353733629,0.000918367353733629,3.343021701106775e-18,-0.0008163265301845968,-3.594798987654454e-20,-3.246218292058646e-20,-0.0030612244736403227,-0.0006122448830865324,-0.0006122448830865324,5.663690144514095e-19,-1.3566907174030157e-19,5.936694384844745e-19,-0.007946428842842579,0.0007653061184100807,0.000918367353733629,0.004859693814069033,0.0005739795742556453,2.182446563049709e-18,-5.345347100833648e-20,-0.00025510202976875007,-1.5663020327861035e-20,4.625273969897049e-19,-0.0003061224415432662,6.098637220230962e-19,-0.0005102040595375001,-0.00019132652960252017,3.8571362169983496e-19,-0.007946428842842579,0.0007653061184100807,0.000918367353733629,0.0005739795742556453,0.004859693814069033,2.182446563049709e-18,-5.345347100833648e-20,-2.264544251770294e-20,-0.00025510202976875007,4.625273969897049e-19,5.437179141475637e-19,-0.0003061224415432662,-0.0,-0.00019132652960252017,-0.0005102040595375001,0.0007288630004040897,-0.0014577260008081794,3.343021701106775e-18,2.182446563049709e-18,2.182446563049709e-18,0.00036443150020204484,-1.1784600495207755e-19,-7.365375794180987e-20,-7.365375794180987e-20,-3.2368019393839806e-19,-2.9131215128010353e-19,-2.9131215128010353e-19,-1.3486674532021635e-19,-1.820701042435875e-19,-1.3486674532021635e-19,0.0012244897661730647,-0.0006122448830865324,-0.0008163265301845968,-5.345347100833648e-20,-5.345347100833648e-20,-1.1784600495207755e-19,0.0004081632650922984,2.672673550416824e-20,2.672673550416824e-20,1.0466827844630937e-34,8.674644935755166e-35,8.670593842430896e-35,3.293381891329767e-35,4.919812922091458e-35,3.358202254377332e-35,0.0007653061184100807,-0.00038265305920504034,-3.594798987654454e-20,-0.00025510202976875007,-2.264544251770294e-20,-7.365375794180987e-20,2.672673550416824e-20,0.00012755101488437504,1.6788186293737756e-20,6.921310737641629e-35,-6.098637058672249e-21,2.6347676555343157e-22,-6.776263578034403e-21,-3.3881317890172014e-21,-1.7873049873459488e-22,0.0007653061184100807,-0.00038265305920504034,-3.246218292058646e-20,-1.5663020327861035e-20,-0.00025510202976875007,-7.365375794180987e-20,2.672673550416824e-20,1.6788186293737756e-20,0.00012755101488437504,7.222237291452134e-35,-2.208318285413975e-22,-6.776263578034403e-21,1.6795281599020127e-22,-6.224598732946889e-21,-2.3396185663983674e-21,0.0010204081190750003,1.2947207757535922e-18,-0.0030612244736403227,4.625273969897049e-19,4.625273969897049e-19,-3.2368019393839806e-19,1.0466827844630937e-34,6.921310737641629e-35,7.222237291452134e-35,0.0010204081190750003,-3.9331766042648767e-19,-3.9331766042648767e-19,-1.8881344215583318e-20,4.24830236772689e-20,-1.8881344215583318e-20,0.000918367353733629,1.1842070677722467e-18,-0.0006122448830865324,-0.0003061224415432662,5.437179141475637e-19,-2.9131215128010353e-19,8.674644935755166e-35,-6.098637058672249e-21,-2.208318285413975e-22,-3.9331766042648767e-19,0.0002040816325461492,-5.89450455468936e-20,-1.0497996015624533e-19,-3.3881317890172014e-21,-9.107211369064525e-20,0.000918367353733629,1.1847870247792229e-18,-0.0006122448830865324,6.098637220230962e-19,-0.0003061224415432662,-2.9131215128010353e-19,8.670593842430896e-35,2.6347676555343157e-22,-6.776263578034403e-21,-3.9331766042648767e-19,-5.89450455468936e-20,0.0002040816325461492,-9.010349811804273e-20,-2.7858286270398105e-20,-1.1311148161976544e-19,0.00042517005931586027,5.592919156243472e-19,5.663690144514095e-19,-0.0005102040595375001,-0.0,-1.3486674532021635e-19,3.293381891329767e-35,-6.776263578034403e-21,1.6795281599020127e-22,-1.8881344215583318e-20,-1.0497996015624533e-19,-9.010349811804273e-20,8.50340147735551e-05,8.296401824056658e-21,1.2265688577909882e-20,0.0005739795742556453,7.571186214649394e-19,-1.3566907174030157e-19,-0.00019132652960252017,-0.00019132652960252017,-1.820701042435875e-19,4.919812922091458e-35,-3.3881317890172014e-21,-6.224598732946889e-21,4.24830236772689e-20,-3.3881317890172014e-21,-2.7858286270398105e-20,8.296401824056658e-21,6.377550744218752e-05,-1.2312818647338512e-19,0.00042517005931586027,5.470220354056185e-19,5.936694384844745e-19,3.8571362169983496e-19,-0.0005102040595375001,-1.3486674532021635e-19,3.358202254377332e-35,-1.7873049873459488e-22,-2.3396185663983674e-21,-1.8881344215583318e-20,-9.107211369064525e-20,-1.1311148161976544e-19,1.2265688577909882e-20,-1.2312818647338512e-19,8.50340147735551e-05,5.0,4.0,7.0,8.0,0.037942178547382355,-0.009143282659351826,-0.010803570970892906,-0.007008928339928389,-0.006279761902987957,0.0006377550889737904,0.0010714285308495164,0.0006696428754366934,0.0005952381179668009,0.0008928571478463709,0.0008035714272409678,0.0007142857066355646,0.00037202381645329297,0.00044642857392318547,0.00029761905898340046,-0.009143282659351826,0.00839817151427269,0.0010714285308495164,0.0006696428754366934,0.0005952381179668009,-0.0012755101779475808,-0.0005357142654247582,-0.0003348214377183467,-0.00029761905898340046,-0.0,-9.80316623978455e-21,-4.6072541633700084e-20,4.874611700485505e-21,-3.149296311839586e-20,-1.1592715757286907e-20,-0.010803570970892906,0.0010714285308495164,0.013452380895614624,0.0008035714272409678,0.0007142857066355646,-0.0,-0.0007142857066355646,-9.762054393988385e-21,-4.610778082026455e-20,-0.0026785715017467737,-0.0005357142654247582,-0.0004761904710903764,3.932187622600864e-21,-3.6422416731934915e-20,-1.037343037019229e-19,-0.007008928339928389,0.0006696428754366934,0.0008035714272409678,0.0042708334513008595,0.00044642857392318547,-0.0,-0.0,-0.00022321428696159273,-2.0384334619766437e-20,-0.0,-0.0002678571327123791,-3.3881317890172014e-20,-0.00044642857392318547,-0.00014880952949170023,-4.8889495516226616e-20,-0.006279761902987957,0.0005952381179668009,0.0007142857066355646,0.00044642857392318547,0.0032823130022734404,-0.0,-0.0,7.39119804645942e-21,-0.0001700680295471102,-0.0,1.2639806051537565e-20,-0.0002040816325461492,2.710505431213761e-20,-0.00012755101488437504,-0.00029761905898340046,0.0006377550889737904,-0.0012755101779475808,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0005357142654247582,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,-0.0003348214377183467,-9.762054393988385e-21,-0.00022321428696159273,7.39119804645942e-21,-0.0,-0.0,0.00011160714348079637,-6.963731361315706e-22,-0.0,3.7834138579956604e-21,-4.537676358899186e-22,-0.0,-0.0,-7.023509599882672e-22,0.0005952381179668009,-0.00029761905898340046,-4.610778082026455e-20,-2.0384334619766437e-20,-0.0001700680295471102,-0.0,-0.0,-6.963731361315706e-22,8.50340147735551e-05,-0.0,-4.420214086587564e-22,1.3552527156068805e-20,-1.3927462722631412e-21,8.997989116201573e-21,3.9142198702912774e-21,0.0008928571478463709,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008035714272409678,-9.80316623978455e-21,-0.0005357142654247582,-0.0002678571327123791,1.2639806051537565e-20,-0.0,-0.0,3.7834138579956604e-21,-4.420214086587564e-22,-0.0,0.00017857142665889114,-5.445211731653219e-22,-2.519380150512297e-22,-1.6940658945086007e-21,-7.735374651528237e-22,0.0007142857066355646,-4.6072541633700084e-20,-0.0004761904710903764,-3.3881317890172014e-20,-0.0002040816325461492,-0.0,-0.0,-4.537676358899186e-22,1.3552527156068805e-20,-0.0,-5.445211731653219e-22,0.0001360544265480712,-9.075352717798373e-22,1.1858461261560205e-20,3.0301406214838953e-20,0.00037202381645329297,4.874611700485505e-21,3.932187622600864e-21,-0.00044642857392318547,2.710505431213761e-20,-0.0,-0.0,-0.0,-1.3927462722631412e-21,-0.0,-2.519380150512297e-22,-9.075352717798373e-22,7.440476474585012e-05,-2.9971934279966044e-21,-4.853471641864324e-22,0.00044642857392318547,-3.149296311839586e-20,-3.6422416731934915e-20,-0.00014880952949170023,-0.00012755101488437504,-0.0,-0.0,-0.0,8.997989116201573e-21,-0.0,-1.6940658945086007e-21,1.1858461261560205e-20,-2.9971934279966044e-21,4.251700738677755e-05,1.5602645836667468e-20,0.00029761905898340046,-1.1592715757286907e-20,-1.037343037019229e-19,-4.8889495516226616e-20,-0.00029761905898340046,-0.0,-0.0,-7.023509599882672e-22,3.9142198702912774e-21,-0.0,-7.735374651528237e-22,3.0301406214838953e-20,-4.853471641864324e-22,1.5602645836667468e-20,4.251700738677755e-05,5.0,4.0,8.0,3.0,0.07408729940652847,-0.019771825522184372,-0.023333333432674408,-0.013611110858619213,-0.028541667386889458,0.0014880952658131719,0.0024999999441206455,0.0013888889225199819,0.0031250000465661287,0.0020833334419876337,0.0016666667070239782,0.0037499999161809683,0.0006944444612599909,0.0020833334419876337,0.0031250000465661287,-0.019771825522184372,0.018814483657479286,0.0024999999441206455,0.0013888889225199819,0.0031250000465661287,-0.0029761905316263437,-0.0012499999720603228,-0.0006944444612599909,-0.0015625000232830644,4.336808689942018e-19,-3.0357660829594124e-18,-1.734723475976807e-18,-3.577867169202165e-18,-3.3610267347050637e-18,0.0,-0.023333333432674408,0.0024999999441206455,0.030138889327645302,0.0016666667070239782,0.0037499999161809683,-3.655808262419974e-18,-0.0016666667070239782,-7.724940478959219e-19,3.2526065174565133e-18,-0.0062500000931322575,-0.0011111111380159855,-0.0024999999441206455,-4.065758146820642e-18,9.75781955236954e-19,2.7321894746634712e-17,-0.013611110858619213,0.0013888889225199819,0.0016666667070239782,0.007361111231148243,0.0020833334419876337,-5.0829611712311885e-18,-2.9873975238209867e-18,-0.00039682540227659047,-3.2526065174565133e-18,-5.702881341551398e-18,-0.0004761904710903764,-1.3010426069826053e-18,-0.0006944444612599909,-0.0005952381179668009,9.540979117872439e-18,-0.028541667386889458,0.0031250000465661287,0.0037499999161809683,0.0020833334419876337,0.05979166552424431,-6.3696877633523385e-18,1.3057882455543986e-18,6.11140682093725e-19,-0.0031250000465661287,2.0042513450265956e-17,2.0890698660113543e-18,-0.0037499999161809683,-2.168404344971009e-19,-0.0020833334419876337,-0.01875000074505806,0.0014880952658131719,-0.0029761905316263437,-3.655808262419974e-18,-5.0829611712311885e-18,-6.3696877633523385e-18,0.0007440476329065859,-5.3877756501439365e-20,5.421010862427522e-20,6.152507874611361e-19,3.297805734077942e-19,5.345493925392376e-19,5.329953786621919e-19,4.607859233063394e-19,5.149960319306146e-19,1.1384122811097797e-18,0.0024999999441206455,-0.0012499999720603228,-0.0016666667070239782,-2.9873975238209867e-18,1.3057882455543986e-18,-5.3877756501439365e-20,0.0008333333535119891,-0.0,-2.935362590014996e-19,-2.299880050445367e-19,2.493127019125771e-19,2.0339849428034703e-20,2.981555974335137e-19,1.8973538018496328e-19,-6.2341624917916505e-19,0.0013888889225199819,-0.0006944444612599909,-7.724940478959219e-19,-0.00039682540227659047,6.11140682093725e-19,5.421010862427522e-20,-0.0,0.00019841270113829523,2.3749559968164455e-19,3.54227269563991e-20,1.2901499824837773e-19,8.696112944383327e-20,1.8973538018496328e-19,9.486769009248164e-20,-7.453889935837843e-19,0.0031250000465661287,-0.0015625000232830644,3.2526065174565133e-18,-3.2526065174565133e-18,-0.0031250000465661287,6.152507874611361e-19,-2.935362590014996e-19,2.3749559968164455e-19,0.0015625000232830644,-7.589415207398531e-19,7.929464504328135e-20,-8.940415180681123e-19,2.439454888092385e-19,4.607859233063394e-19,-1.7076184216646695e-18,0.0020833334419876337,4.336808689942018e-19,-0.0062500000931322575,-5.702881341551398e-18,2.0042513450265956e-17,3.297805734077942e-19,-2.299880050445367e-19,3.54227269563991e-20,-7.589415207398531e-19,0.0020833334419876337,5.648098823943236e-19,-3.6407324821658885e-18,7.589415207398531e-19,-3.6591823321385775e-19,-5.421010862427522e-18,0.0016666667070239782,-3.0357660829594124e-18,-0.0011111111380159855,-0.0004761904710903764,2.0890698660113543e-18,5.345493925392376e-19,2.493127019125771e-19,1.2901499824837773e-19,7.929464504328135e-20,5.648098823943236e-19,0.0003174603043589741,4.0657581468206416e-20,1.8973538018496328e-19,1.3552527156068805e-20,-1.111307226797642e-18,0.0037499999161809683,-1.734723475976807e-18,-0.0024999999441206455,-1.3010426069826053e-18,-0.0037499999161809683,5.329953786621919e-19,2.0339849428034703e-20,8.696112944383327e-20,-8.940415180681123e-19,-3.6407324821658885e-18,4.0657581468206416e-20,0.0024999999441206455,1.8973538018496328e-19,-3.7947076036992655e-19,-6.396792817664476e-18,0.0006944444612599909,-3.577867169202165e-18,-4.065758146820642e-18,-0.0006944444612599909,-2.168404344971009e-19,4.607859233063394e-19,2.981555974335137e-19,1.8973538018496328e-19,2.439454888092385e-19,7.589415207398531e-19,1.8973538018496328e-19,1.8973538018496328e-19,9.920635056914762e-05,8.131516293641283e-20,-3.2526065174565133e-19,0.0020833334419876337,-3.3610267347050637e-18,9.75781955236954e-19,-0.0005952381179668009,-0.0020833334419876337,5.149960319306146e-19,1.8973538018496328e-19,9.486769009248164e-20,4.607859233063394e-19,-3.6591823321385775e-19,1.3552527156068805e-20,-3.7947076036992655e-19,8.131516293641283e-20,0.0005952381179668009,-3.781048783834484e-18,0.0031250000465661287,0.0,2.7321894746634712e-17,9.540979117872439e-18,-0.01875000074505806,1.1384122811097797e-18,-6.2341624917916505e-19,-7.453889935837843e-19,-1.7076184216646695e-18,-5.421010862427522e-18,-1.111307226797642e-18,-6.396792817664476e-18,-3.2526065174565133e-19,-3.781048783834484e-18,0.00937500037252903,5.0,4.0,8.0,4.0,0.05969047546386719,-0.015297618694603443,-0.018062500283122063,-0.010520833544433117,-0.018062500283122063,0.0011160714784637094,0.0018749999580904841,0.0010416667209938169,0.0018749999580904841,0.0015625000232830644,0.0012499999720603228,0.0022499999031424522,0.0005208333604969084,0.0012499999720603228,0.0015625000232830644,-0.015297618694603443,0.014345237985253334,0.0018749999580904841,0.0010416667209938169,0.0018749999580904841,-0.0022321429569274187,-0.0009374999790452421,-0.0005208333604969084,-0.0009374999790452421,-2.6020852139652106e-18,4.336808689942018e-19,-1.5178830414797062e-18,1.0842021724855044e-19,5.421010862427522e-19,-5.204170427930421e-18,-0.018062500283122063,0.0018749999580904841,0.022979166358709335,0.0012499999720603228,0.0022499999031424522,1.5478844687066982e-19,-0.0012499999720603228,-2.710505431213761e-19,-2.439454888092385e-18,-0.004687500186264515,-0.0008333333535119891,-0.001500000013038516,2.507217523872729e-18,-2.222614453595284e-18,-2.8189256484623115e-18,-0.010520833544433117,0.0010416667209938169,0.0012499999720603228,0.0056101190857589245,0.0012499999720603228,1.834029196850789e-18,1.7608278485429087e-18,-0.00029761905898340046,-1.0842021724855044e-18,4.5167626593835415e-18,-0.0003571428533177823,-2.168404344971009e-18,-0.0005208333604969084,-0.0003571428533177823,-6.5052130349130266e-18,-0.018062500283122063,0.0018749999580904841,0.0022499999031424522,0.0012499999720603228,0.022979166358709335,-9.486769009248164e-20,-1.828233349093783e-18,-3.0112031614648034e-18,-0.0012499999720603228,2.3713671703313076e-18,-6.299422079038409e-18,-0.001500000013038516,-1.0299920638612292e-18,-0.0008333333535119891,-0.004687500186264515,0.0011160714784637094,-0.0022321429569274187,1.5478844687066982e-19,1.834029196850789e-18,-9.486769009248164e-20,0.0005580357392318547,-4.868919502336661e-20,-2.3893828021811946e-19,-3.558093817324694e-20,4.568953826927728e-19,-2.7397038728611173e-19,-2.6483386722773383e-19,-5.421010862427522e-20,-3.1170812458958252e-19,5.827586677109586e-19,0.0018749999580904841,-0.0009374999790452421,-0.0012499999720603228,1.7608278485429087e-18,-1.828233349093783e-18,-4.868919502336661e-20,0.0006249999860301614,-2.303929616531697e-19,-4.3919619912597565e-20,2.689769305726764e-19,-2.611256116948972e-21,3.7113438245782885e-19,-1.8973538018496328e-19,-1.3552527156068805e-20,4.2012834183813297e-19,0.0010416667209938169,-0.0005208333604969084,-2.710505431213761e-19,-0.00029761905898340046,-3.0112031614648034e-18,-2.3893828021811946e-19,-2.303929616531697e-19,0.00014880952949170023,6.196269735671508e-20,1.3503267904356419e-20,8.925943785111479e-20,2.251455863410747e-19,2.710505431213761e-20,1.3552527156068805e-19,6.369687763352339e-19,0.0018749999580904841,-0.0009374999790452421,-2.439454888092385e-18,-1.0842021724855044e-18,-0.0012499999720603228,-3.558093817324694e-20,-4.3919619912597565e-20,6.196269735671508e-20,0.0006249999860301614,2.846030702774449e-19,1.9911528521388783e-19,5.088511139551113e-19,9.486769009248164e-20,8.131516293641283e-20,-1.6263032587282567e-19,0.0015625000232830644,-2.6020852139652106e-18,-0.004687500186264515,4.5167626593835415e-18,2.3713671703313076e-18,4.568953826927728e-19,2.689769305726764e-19,1.3503267904356419e-20,2.846030702774449e-19,0.0015625000232830644,9.092664945628383e-21,-2.3089283723709314e-19,-6.505213034913027e-19,-3.3881317890172014e-20,-8.673617379884035e-19,0.0012499999720603228,4.336808689942018e-19,-0.0008333333535119891,-0.0003571428533177823,-6.299422079038409e-18,-2.7397038728611173e-19,-2.611256116948972e-21,8.925943785111479e-20,1.9911528521388783e-19,9.092664945628383e-21,0.0002380952355451882,5.963111948670274e-19,-4.0657581468206416e-20,3.9302328752599536e-19,1.07742590890747e-18,0.0022499999031424522,-1.5178830414797062e-18,-0.001500000013038516,-2.168404344971009e-18,-0.001500000013038516,-2.6483386722773383e-19,3.7113438245782885e-19,2.251455863410747e-19,5.088511139551113e-19,-2.3089283723709314e-19,5.963111948670274e-19,0.0010000000474974513,-2.710505431213761e-20,5.421010862427522e-19,4.607859233063394e-19,0.0005208333604969084,1.0842021724855044e-19,2.507217523872729e-18,-0.0005208333604969084,-1.0299920638612292e-18,-5.421010862427522e-20,-1.8973538018496328e-19,2.710505431213761e-20,9.486769009248164e-20,-6.505213034913027e-19,-4.0657581468206416e-20,-2.710505431213761e-20,7.440476474585012e-05,8.131516293641283e-20,3.2526065174565133e-19,0.0012499999720603228,5.421010862427522e-19,-2.222614453595284e-18,-0.0003571428533177823,-0.0008333333535119891,-3.1170812458958252e-19,-1.3552527156068805e-20,1.3552527156068805e-19,8.131516293641283e-20,-3.3881317890172014e-20,3.9302328752599536e-19,5.421010862427522e-19,8.131516293641283e-20,0.0002380952355451882,7.891298907852821e-19,0.0015625000232830644,-5.204170427930421e-18,-2.8189256484623115e-18,-6.5052130349130266e-18,-0.004687500186264515,5.827586677109586e-19,4.2012834183813297e-19,6.369687763352339e-19,-1.6263032587282567e-19,-8.673617379884035e-19,1.07742590890747e-18,4.607859233063394e-19,3.2526065174565133e-19,7.891298907852821e-19,0.0015625000232830644,5.0,4.0,8.0,5.0,0.05007142946124077,-0.012488095089793205,-0.014750000089406967,-0.00858333334326744,-0.012488095089793205,0.0008928571478463709,0.001500000013038516,0.0008333333535119891,0.0012499999720603228,0.0012499999720603228,0.0010000000474974513,0.001500000013038516,0.00041666667675599456,0.0008333333535119891,0.0008928571478463709,-0.012488095089793205,0.011601190082728863,0.001500000013038516,0.0008333333535119891,0.0012499999720603228,-0.0017857142956927419,-0.000750000006519258,-0.00041666667675599456,-0.0006249999860301614,-4.119968255444917e-18,-5.963111948670274e-19,7.589415207398531e-19,-9.75781955236954e-19,-2.710505431213761e-19,1.4094628242311558e-18,-0.014750000089406967,0.001500000013038516,0.018583333119750023,0.0010000000474974513,0.001500000013038516,-3.475591249543658e-18,-0.0010000000474974513,-9.147955830346444e-19,2.710505431213761e-19,-0.0037499999161809683,-0.0006666666595265269,-0.0010000000474974513,-1.6127507315721878e-18,-4.0657581468206416e-19,-1.6263032587282567e-18,-0.00858333334326744,0.0008333333535119891,0.0010000000474974513,0.004535714164376259,0.0008333333535119891,-1.9298034768946286e-18,-1.8573399736931457e-18,-0.0002380952355451882,-5.421010862427522e-20,-4.072693229076286e-18,-0.0002857142826542258,-4.87890977618477e-19,-0.00041666667675599456,-0.0002380952355451882,-4.336808689942018e-19,-0.012488095089793205,0.0012499999720603228,0.001500000013038516,0.0008333333535119891,0.011601190082728863,1.7618285302889447e-18,9.367792002829482e-20,4.905891890778367e-19,-0.0006249999860301614,-9.44234630842677e-19,2.3219564670186416e-19,-0.000750000006519258,-3.7947076036992655e-19,-0.00041666667675599456,-0.0017857142956927419,0.0008928571478463709,-0.0017857142956927419,-3.475591249543658e-18,-1.9298034768946286e-18,1.7618285302889447e-18,0.00044642857392318547,9.81136708932316e-19,3.016538217921829e-19,-4.118233063164328e-20,4.837048750322875e-19,1.1479955045483303e-19,-2.0775752608217408e-19,1.4907779871675686e-19,2.710505431213761e-20,-3.5236570605778894e-19,0.001500000013038516,-0.000750000006519258,-0.0010000000474974513,-1.8573399736931457e-18,9.367792002829482e-20,9.81136708932316e-19,0.0005000000237487257,2.236166980751353e-19,2.1886667479986062e-20,9.343094974678063e-19,2.0349227265112096e-19,6.830671382825078e-20,1.4907779871675686e-19,5.421010862427522e-20,-9.486769009248164e-20,0.0008333333535119891,-0.00041666667675599456,-9.147955830346444e-19,-0.0002380952355451882,4.905891890778367e-19,3.016538217921829e-19,2.236166980751353e-19,0.0001190476177725941,-6.608076433752205e-20,1.9662142613991995e-19,4.7701506636854914e-21,-8.430278421258951e-20,2.710505431213761e-20,-0.0,-4.743384504624082e-20,0.0012499999720603228,-0.0006249999860301614,2.710505431213761e-19,-5.421010862427522e-20,-0.0006249999860301614,-4.118233063164328e-20,2.1886667479986062e-20,-6.608076433752205e-20,0.0003124999930150807,-1.0842021724855044e-19,-6.573077646553262e-20,1.0794599072596467e-19,5.421010862427522e-20,2.0328790734103208e-20,7.453889935837843e-20,0.0012499999720603228,-4.119968255444917e-18,-0.0037499999161809683,-4.072693229076286e-18,-9.44234630842677e-19,4.837048750322875e-19,9.343094974678063e-19,1.9662142613991995e-19,-1.0842021724855044e-19,0.0012499999720603228,8.70252837626853e-19,3.455666174647269e-19,3.2526065174565133e-19,2.710505431213761e-20,1.4230153513872246e-19,0.0010000000474974513,-5.963111948670274e-19,-0.0006666666595265269,-0.0002857142826542258,2.3219564670186416e-19,1.1479955045483303e-19,2.0349227265112096e-19,4.7701506636854914e-21,-6.573077646553262e-20,8.70252837626853e-19,0.00019047618843615055,3.3881317890172014e-20,5.421010862427522e-20,-0.0,-2.0328790734103208e-20,0.001500000013038516,7.589415207398531e-19,-0.0010000000474974513,-4.87890977618477e-19,-0.000750000006519258,-2.0775752608217408e-19,6.830671382825078e-20,-8.430278421258951e-20,1.0794599072596467e-19,3.455666174647269e-19,3.3881317890172014e-20,0.0005000000237487257,6.776263578034403e-20,8.809142651444724e-20,7.047314121155779e-19,0.00041666667675599456,-9.75781955236954e-19,-1.6127507315721878e-18,-0.00041666667675599456,-3.7947076036992655e-19,1.4907779871675686e-19,1.4907779871675686e-19,2.710505431213761e-20,5.421010862427522e-20,3.2526065174565133e-19,5.421010862427522e-20,6.776263578034403e-20,5.952380888629705e-05,2.710505431213761e-20,4.0657581468206416e-20,0.0008333333535119891,-2.710505431213761e-19,-4.0657581468206416e-19,-0.0002380952355451882,-0.00041666667675599456,2.710505431213761e-20,5.421010862427522e-20,-0.0,2.0328790734103208e-20,2.710505431213761e-20,-0.0,8.809142651444724e-20,2.710505431213761e-20,0.0001190476177725941,1.1343281543834815e-19,0.0008928571478463709,1.4094628242311558e-18,-1.6263032587282567e-18,-4.336808689942018e-19,-0.0017857142956927419,-3.5236570605778894e-19,-9.486769009248164e-20,-4.743384504624082e-20,7.453889935837843e-20,1.4230153513872246e-19,-2.0328790734103208e-20,7.047314121155779e-19,4.0657581468206416e-20,1.1343281543834815e-19,0.00044642857392318547,5.0,4.0,8.0,6.0,0.04315972328186035,-0.010555555112659931,-0.012470237910747528,-0.0072519839741289616,-0.009159225970506668,0.0007440476329065859,0.0012499999720603228,0.0006944444612599909,0.0008928571478463709,0.0010416667209938169,0.0008333333535119891,0.0010714285308495164,0.00034722223062999547,0.0005952381179668009,0.0005580357392318547,-0.010555555112659931,0.009742063470184803,0.0012499999720603228,0.0006944444612599909,0.0008928571478463709,-0.0014880952658131719,-0.0006249999860301614,-0.00034722223062999547,-0.00044642857392318547,-0.0,3.363137363586175e-20,1.8431751420893468e-35,-2.371692252312041e-20,-5.929230630780102e-21,-0.0,-0.012470237910747528,0.0012499999720603228,0.015605159103870392,0.0008333333535119891,0.0010714285308495164,-0.0,-0.0008333333535119891,3.363137363586175e-20,-0.0,-0.0031250000465661287,-0.0005555555690079927,-0.0007142857066355646,8.206840135702186e-20,1.1858461261560205e-20,-0.0,-0.0072519839741289616,0.0006944444612599909,0.0008333333535119891,0.00380810652859509,0.0005952381179668009,-0.0,-0.0,-0.00019841270113829523,-0.0,-0.0,-0.0002380952355451882,-9.063045094233022e-20,-0.00034722223062999547,-0.0001700680295471102,-0.0,-0.009159225970506668,0.0008928571478463709,0.0010714285308495164,0.0005952381179668009,0.006732887122780085,-0.0,-0.0,-5.929230630780102e-21,-0.0003571428533177823,-0.0,-7.877198968077001e-20,-0.00042857142398133874,1.3552527156068805e-20,-0.0002380952355451882,-0.0008370535797439516,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0012499999720603228,-0.0006249999860301614,-0.0008333333535119891,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,3.363137363586175e-20,-0.00019841270113829523,-5.929230630780102e-21,-0.0,-0.0,9.920635056914762e-05,-0.0,-0.0,-9.60896378056142e-21,-5.266214691683848e-36,6.776263578034403e-21,1.6940658945086007e-21,-0.0,0.0008928571478463709,-0.00044642857392318547,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0031250000465661287,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,3.363137363586175e-20,-0.0005555555690079927,-0.0002380952355451882,-7.877198968077001e-20,-0.0,-0.0,-9.60896378056142e-21,-0.0,-0.0,0.00015873015217948705,6.042030278233632e-20,-2.3448114673434818e-20,-3.3881317890172014e-21,-0.0,0.0010714285308495164,1.8431751420893468e-35,-0.0007142857066355646,-9.063045094233022e-20,-0.00042857142398133874,-0.0,-0.0,-5.266214691683848e-36,-0.0,-0.0,6.042030278233632e-20,0.0002857142826542258,-1.0532429383367696e-35,-0.0,-0.0,0.00034722223062999547,-2.371692252312041e-20,8.206840135702186e-20,-0.00034722223062999547,1.3552527156068805e-20,-0.0,-0.0,6.776263578034403e-21,-0.0,-0.0,-2.3448114673434818e-20,-1.0532429383367696e-35,4.960317528457381e-05,-3.164387309308885e-21,-0.0,0.0005952381179668009,-5.929230630780102e-21,1.1858461261560205e-20,-0.0001700680295471102,-0.0002380952355451882,-0.0,-0.0,1.6940658945086007e-21,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-3.164387309308885e-21,6.80272132740356e-05,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0008370535797439516,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,5.0,4.0,8.0,7.0,0.037942178547382355,-0.009143282659351826,-0.010803570970892906,-0.006279761902987957,-0.007008928339928389,0.0006377550889737904,0.0010714285308495164,0.0005952381179668009,0.0006696428754366934,0.0008928571478463709,0.0007142857066355646,0.0008035714272409678,0.00029761905898340046,0.00044642857392318547,0.00037202381645329297,-0.009143282659351826,0.00839817151427269,0.0010714285308495164,0.0005952381179668009,0.0006696428754366934,-0.0012755101779475808,-0.0005357142654247582,-0.00029761905898340046,-0.0003348214377183467,-0.0,-4.697009075945694e-20,1.043266401453126e-21,1.2387651674028138e-20,-4.116579994408929e-20,2.4167936289766412e-20,-0.010803570970892906,0.0010714285308495164,0.013452380895614624,0.0007142857066355646,0.0008035714272409678,-0.0,-0.0007142857066355646,-4.5373212124574783e-20,-8.197589586696105e-22,-0.0026785715017467737,-0.0004761904710903764,-0.0005357142654247582,-1.0244880686887867e-19,-5.166900978251232e-20,1.8689273523583358e-20,-0.006279761902987957,0.0005952381179668009,0.0007142857066355646,0.0032823130022734404,0.00044642857392318547,-0.0,-0.0,-0.0001700680295471102,-3.997995575663783e-20,-0.0,-0.0002040816325461492,-4.0657581468206416e-20,-0.00029761905898340046,-0.00012755101488437504,-7.318364793524126e-20,-0.007008928339928389,0.0006696428754366934,0.0008035714272409678,0.00044642857392318547,0.0042708334513008595,-0.0,-0.0,4.3662199528825216e-21,-0.00022321428696159273,-0.0,-8.90594669380301e-21,-0.0002678571327123791,-0.0,-0.00014880952949170023,-0.00044642857392318547,0.0006377550889737904,-0.0012755101779475808,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0005357142654247582,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-4.5373212124574783e-20,-0.0001700680295471102,4.3662199528825216e-21,-0.0,-0.0,8.50340147735551e-05,-1.0079812211424418e-22,-0.0,1.3219268688850835e-20,-2.9807610388222927e-22,-3.3881317890172014e-21,-0.0,-5.71924560182017e-22,0.0006696428754366934,-0.0003348214377183467,-8.197589586696105e-22,-3.997995575663783e-20,-0.00022321428696159273,-0.0,-0.0,-1.0079812211424418e-22,0.00011160714348079637,-0.0,2.3421684172795314e-22,-0.0,-1.7639672001081456e-22,1.372193439175452e-20,-7.388733468286667e-21,0.0008928571478463709,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-4.697009075945694e-20,-0.0004761904710903764,-0.0002040816325461492,-8.90594669380301e-21,-0.0,-0.0,1.3219268688850835e-20,2.3421684172795314e-22,-0.0,0.0001360544265480712,-3.576913448535143e-22,2.971820187772359e-20,1.6940658945086007e-21,4.684336834559063e-22,0.0008035714272409678,1.043266401453126e-21,-0.0005357142654247582,-4.0657581468206416e-20,-0.0002678571327123791,-0.0,-0.0,-2.9807610388222927e-22,-0.0,-0.0,-3.576913448535143e-22,0.00017857142665889114,-5.21633200726563e-22,1.5246593050577406e-20,-6.776263578034403e-21,0.00029761905898340046,1.2387651674028138e-20,-1.0244880686887867e-19,-0.00029761905898340046,-0.0,-0.0,-0.0,-3.3881317890172014e-21,-1.7639672001081456e-22,-0.0,2.971820187772359e-20,-5.21633200726563e-22,4.251700738677755e-05,3.052514968480531e-21,-6.336155024542175e-22,0.00044642857392318547,-4.116579994408929e-20,-5.166900978251232e-20,-0.00012755101488437504,-0.00014880952949170023,-0.0,-0.0,-0.0,1.372193439175452e-20,-0.0,1.6940658945086007e-21,1.5246593050577406e-20,3.052514968480531e-21,4.251700738677755e-05,2.614073943248551e-20,0.00037202381645329297,2.4167936289766412e-20,1.8689273523583358e-20,-7.318364793524126e-20,-0.00044642857392318547,-0.0,-0.0,-5.71924560182017e-22,-7.388733468286667e-21,-0.0,4.684336834559063e-22,-6.776263578034403e-21,-6.336155024542175e-22,2.614073943248551e-20,7.440476474585012e-05,5.0,4.0,8.0,8.0,0.03385912626981735,-0.008065476082265377,-0.009531250223517418,-0.005538194440305233,-0.005538194440305233,0.0005580357392318547,0.0009374999790452421,0.0005208333604969084,0.0005208333604969084,0.0007812500116415322,0.0006249999860301614,0.0006249999860301614,0.0002604166802484542,0.00034722223062999547,0.0002604166802484542,-0.008065476082265377,0.007380952592939138,0.0009374999790452421,0.0005208333604969084,0.0005208333604969084,-0.0011160714784637094,-0.00046874998952262104,-0.0002604166802484542,-0.0002604166802484542,-0.0,4.005792076054522e-20,3.5053749473237897e-20,-1.5368390549014438e-20,8.310643224641922e-21,-2.4761120108607833e-20,-0.009531250223517418,0.0009374999790452421,0.011822916567325592,0.0006249999860301614,0.0006249999860301614,-0.0,-0.0006249999860301614,4.0302578813753385e-20,3.4809094651204e-20,-0.0023437500931322575,-0.00041666667675599456,-0.00041666667675599456,6.994217914623883e-20,8.893845946170154e-21,6.041248980295682e-20,-0.005538194440305233,0.0005208333604969084,0.0006249999860301614,0.0028844245243817568,0.00034722223062999547,-0.0,-0.0,-0.00014880952949170023,-3.721390660131955e-21,-0.0,-0.00017857142665889114,3.3881317890172014e-21,-0.0002604166802484542,-9.920635056914762e-05,3.117751973050332e-22,-0.005538194440305233,0.0005208333604969084,0.0006249999860301614,0.00034722223062999547,0.0028844245243817568,-0.0,-0.0,-5.724294210639389e-21,-0.00014880952949170023,-0.0,-6.424880545580662e-22,-0.00017857142665889114,-6.776263578034403e-21,-9.920635056914762e-05,-0.0002604166802484542,0.0005580357392318547,-0.0011160714784637094,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009374999790452421,-0.00046874998952262104,-0.0006249999860301614,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-0.0002604166802484542,4.0302578813753385e-20,-0.00014880952949170023,-5.724294210639389e-21,-0.0,-0.0,7.440476474585012e-05,5.730497156465774e-22,-0.0,-1.1664060085119605e-20,1.4903805194111464e-22,3.3881317890172014e-21,-8.470329472543003e-22,9.666937307325631e-22,0.0005208333604969084,-0.0002604166802484542,3.4809094651204e-20,-3.721390660131955e-21,-0.00014880952949170023,-0.0,-0.0,5.730497156465774e-22,7.440476474585012e-05,-0.0,2.189400012511582e-22,-1.0164395367051604e-20,1.0028370402468339e-21,-1.5274364589512237e-21,6.107911740511143e-21,0.0007812500116415322,-0.0,-0.0023437500931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,4.005792076054522e-20,-0.00041666667675599456,-0.00017857142665889114,-6.424880545580662e-22,-0.0,-0.0,-1.1664060085119605e-20,2.189400012511582e-22,-0.0,0.0001190476177725941,1.7884567242675715e-22,-2.0244297142587757e-20,-8.470329472543003e-22,3.8314499587863962e-22,0.0006249999860301614,3.5053749473237897e-20,-0.00041666667675599456,3.3881317890172014e-21,-0.00017857142665889114,-0.0,-0.0,1.4903805194111464e-22,-1.0164395367051604e-20,-0.0,1.7884567242675715e-22,0.0001190476177725941,2.608166003632815e-22,-1.6940658945086007e-21,-1.7643856169809846e-20,0.0002604166802484542,-1.5368390549014438e-20,6.994217914623883e-20,-0.0002604166802484542,-6.776263578034403e-21,-0.0,-0.0,3.3881317890172014e-21,1.0028370402468339e-21,-0.0,-2.0244297142587757e-20,2.608166003632815e-22,3.720238237292506e-05,-1.3025129035577534e-21,8.521197243195572e-22,0.00034722223062999547,8.310643224641922e-21,8.893845946170154e-21,-9.920635056914762e-05,-9.920635056914762e-05,-0.0,-0.0,-8.470329472543003e-22,-1.5274364589512237e-21,-0.0,-8.470329472543003e-22,-1.6940658945086007e-21,-1.3025129035577534e-21,2.8344671591185033e-05,-2.649041266888061e-21,0.0002604166802484542,-2.4761120108607833e-20,6.041248980295682e-20,3.117751973050332e-22,-0.0002604166802484542,-0.0,-0.0,9.666937307325631e-22,6.107911740511143e-21,-0.0,3.8314499587863962e-22,-1.7643856169809846e-20,8.521197243195572e-22,-2.649041266888061e-21,3.720238237292506e-05,5.0,5.0,3.0,3.0,0.13380952179431915,-0.03936507925391197,-0.03936507925391197,-0.05666666850447655,-0.05666666850447655,0.0031746032182127237,0.004444444552063942,0.006666666828095913,0.006666666828095913,0.0031746032182127237,0.006666666828095913,0.006666666828095913,0.006666666828095913,0.009999999776482582,0.006666666828095913,-0.03936507925391197,0.038730159401893616,0.004444444552063942,0.006666666828095913,0.006666666828095913,-0.0063492064364254475,-0.002222222276031971,-0.0033333334140479565,-0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.03936507925391197,0.004444444552063942,0.038730159401893616,0.006666666828095913,0.006666666828095913,-0.0,-0.002222222276031971,-0.0,-0.0,-0.0063492064364254475,-0.0033333334140479565,-0.0033333334140479565,-0.0,-0.0,-0.0,-0.05666666850447655,0.006666666828095913,0.006666666828095913,0.12333333492279053,0.009999999776482582,-0.0,-0.0,-0.006666666828095913,-0.0,-0.0,-0.006666666828095913,-0.0,-0.03999999910593033,-0.009999999776482582,-2.2204460823375376e-17,-0.05666666850447655,0.006666666828095913,0.006666666828095913,0.009999999776482582,0.12333333492279053,-0.0,-0.0,-0.0,-0.006666666828095913,-0.0,-0.0,-0.006666666828095913,-2.2204460823375376e-17,-0.009999999776482582,-0.03999999910593033,0.0031746032182127237,-0.0063492064364254475,-0.0,-0.0,-0.0,0.0015873016091063619,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.004444444552063942,-0.002222222276031971,-0.002222222276031971,-0.0,-0.0,-0.0,0.0011111111380159855,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0033333334140479565,-0.0,-0.006666666828095913,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0033333334140479565,-0.0,-0.0,-0.006666666828095913,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031746032182127237,-0.0,-0.0063492064364254475,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015873016091063619,-0.0,0.0,0.0,0.0,0.0,0.006666666828095913,-0.0,-0.0033333334140479565,-0.006666666828095913,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0033333334140479565,-0.0,-0.006666666828095913,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.0,0.006666666828095913,-0.0,-0.0,-0.03999999910593033,-2.2204460823375376e-17,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.019999999552965164,-0.0,1.1102230411687688e-17,0.009999999776482582,-0.0,-0.0,-0.009999999776482582,-0.009999999776482582,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.009999999776482582,-0.0,0.006666666828095913,-0.0,-0.0,-2.2204460823375376e-17,-0.03999999910593033,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,1.1102230411687688e-17,-0.0,0.019999999552965164,5.0,5.0,3.0,4.0,0.10852380841970444,-0.030523808673024178,-0.030523808673024178,-0.04399999976158142,-0.035999998450279236,0.0023809524718672037,0.0033333334140479565,0.004999999888241291,0.004000000189989805,0.0023809524718672037,0.004999999888241291,0.004000000189989805,0.004999999888241291,0.006000000052154064,0.0033333334140479565,-0.030523808673024178,0.029547618702054024,0.0033333334140479565,0.004999999888241291,0.004000000189989805,-0.004761904943734407,-0.0016666667070239782,-0.0024999999441206455,-0.0020000000949949026,1.0842021724855044e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.030523808673024178,0.0033333334140479565,0.029547618702054024,0.004999999888241291,0.004000000189989805,-0.0,-0.0016666667070239782,-0.0,-0.0,-0.004761904943734407,-0.0024999999441206455,-0.0020000000949949026,-0.0,-0.0,-0.0,-0.04399999976158142,0.004999999888241291,0.004999999888241291,0.09399999678134918,0.006000000052154064,-0.0,-0.0,-0.004999999888241291,-0.0,-0.0,-0.004999999888241291,-0.0,-0.029999999329447746,-0.006000000052154064,-7.77156120546332e-18,-0.035999998450279236,0.004000000189989805,0.004000000189989805,0.006000000052154064,0.047333333641290665,-0.0,-0.0,-0.0,-0.0026666666381061077,-0.0,-0.0,-0.0026666666381061077,-1.1657341394604674e-17,-0.004000000189989805,-0.009999999776482582,0.0023809524718672037,-0.004761904943734407,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,-0.0016666667070239782,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-5.421010862427522e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,-0.0,-0.004999999888241291,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004000000189989805,-0.0020000000949949026,-0.0,-0.0,-0.0026666666381061077,-0.0,-0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,1.0842021724855044e-19,-0.004761904943734407,-0.0,-0.0,-0.0,-5.421010862427522e-20,-0.0,-0.0,0.0011904762359336019,-0.0,0.0,0.0,0.0,0.0,0.004999999888241291,-0.0,-0.0024999999441206455,-0.004999999888241291,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,0.004000000189989805,-0.0,-0.0020000000949949026,-0.0,-0.0026666666381061077,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0013333333190530539,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0,-0.029999999329447746,-1.1657341394604674e-17,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.014999999664723873,-0.0,3.88578060273166e-18,0.006000000052154064,-0.0,-0.0,-0.006000000052154064,-0.004000000189989805,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.004000000189989805,-0.0,0.0033333334140479565,-0.0,-0.0,-7.77156120546332e-18,-0.009999999776482582,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,3.88578060273166e-18,-0.0,0.0033333334140479565,5.0,5.0,3.0,5.0,0.09142857044935226,-0.02495238184928894,-0.02495238184928894,-0.035999998450279236,-0.02495238184928894,0.0019047618843615055,0.0026666666381061077,0.004000000189989805,0.0026666666381061077,0.0019047618843615055,0.004000000189989805,0.0026666666381061077,0.004000000189989805,0.004000000189989805,0.0019047618843615055,-0.02495238184928894,0.02390476129949093,0.0026666666381061077,0.004000000189989805,0.0026666666381061077,-0.003809523768723011,-0.0013333333190530539,-0.0020000000949949026,-0.0013333333190530539,1.0842021724855044e-19,-0.0,-5.421010862427522e-20,6.226624800374351e-34,4.214575201109997e-34,-8.349603108375743e-20,-0.02495238184928894,0.0026666666381061077,0.02390476129949093,0.004000000189989805,0.0026666666381061077,-0.0,-0.0013333333190530539,-0.0,-0.0,-0.003809523768723011,-0.0020000000949949026,-0.0013333333190530539,9.14816723583937e-34,4.214575201109997e-34,-0.0,-0.035999998450279236,0.004000000189989805,0.004000000189989805,0.07599999755620956,0.004000000189989805,-4.800551788155215e-34,1.4501724544223235e-35,-0.004000000189989805,1.0296182569501264e-33,-0.0,-0.004000000189989805,1.2443403917205603e-33,-0.024000000208616257,-0.004000000189989805,7.612957594812403e-18,-0.02495238184928894,0.0026666666381061077,0.0026666666381061077,0.004000000189989805,0.02390476129949093,-0.0,7.561505164178712e-21,-0.0,-0.0013333333190530539,-3.4765540845454955e-21,-0.0,-0.0013333333190530539,1.795440021863302e-17,-0.0020000000949949026,-0.003809523768723011,0.0019047618843615055,-0.003809523768723011,-0.0,-4.800551788155215e-34,-0.0,0.0009523809421807528,-0.0,-0.0,-0.0,2.4677412904129804e-21,0.0,-0.0,0.0,-0.0,4.0210002338832873e-22,0.0026666666381061077,-0.0013333333190530539,-0.0013333333190530539,1.4501724544223235e-35,7.561505164178712e-21,-0.0,0.0006666666595265269,-0.0,-1.8785681666314484e-21,-5.421010862427522e-20,-0.0,1.3552527156068805e-20,-7.250862272111618e-36,-0.0,-7.105614747769054e-21,0.004000000189989805,-0.0020000000949949026,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0026666666381061077,-0.0013333333190530539,-0.0,1.0296182569501264e-33,-0.0013333333190530539,-0.0,-1.8785681666314484e-21,-0.0,0.0006666666595265269,-5.367337503547914e-21,0.0,1.3552527156068805e-20,-3.0408036841956334e-34,-2.1072876005549985e-34,4.7979060467489833e-20,0.0019047618843615055,1.0842021724855044e-19,-0.003809523768723011,-0.0,-3.4765540845454955e-21,2.4677412904129804e-21,-5.421010862427522e-20,-0.0,-5.367337503547914e-21,0.0009523809421807528,-0.0,5.421010862427522e-20,-2.071674914390039e-35,0.0,-1.879238998799119e-20,0.004000000189989805,-0.0,-0.0020000000949949026,-0.004000000189989805,-0.0,0.0,-0.0,-0.0,0.0,-0.0,0.0020000000949949026,-0.0,1.2685778052772882e-35,-0.0,0.0,0.0026666666381061077,-5.421010862427522e-20,-0.0013333333190530539,1.2443403917205603e-33,-0.0013333333190530539,-0.0,1.3552527156068805e-20,-0.0,1.3552527156068805e-20,5.421010862427522e-20,-0.0,0.0006666666595265269,-4.114414358047803e-34,-2.1072876005549985e-34,4.7979060467489833e-20,0.004000000189989805,6.226624800374351e-34,9.14816723583937e-34,-0.024000000208616257,1.795440021863302e-17,0.0,-7.250862272111618e-36,-0.0,-3.0408036841956334e-34,-2.071674914390039e-35,1.2685778052772882e-35,-4.114414358047803e-34,0.012000000104308128,-2.728484201827601e-18,-3.806478797406201e-18,0.004000000189989805,4.214575201109997e-34,4.214575201109997e-34,-0.004000000189989805,-0.0020000000949949026,-0.0,-0.0,-0.0,-2.1072876005549985e-34,0.0,-0.0,-2.1072876005549985e-34,-2.728484201827601e-18,0.0020000000949949026,2.634109500693748e-34,0.0019047618843615055,-8.349603108375743e-20,-0.0,7.612957594812403e-18,-0.003809523768723011,4.0210002338832873e-22,-7.105614747769054e-21,-0.0,4.7979060467489833e-20,-1.879238998799119e-20,0.0,4.7979060467489833e-20,-3.806478797406201e-18,2.634109500693748e-34,0.0009523809421807528,5.0,5.0,3.0,6.0,0.07904762029647827,-0.021111110225319862,-0.021111110225319862,-0.030476190149784088,-0.018333332613110542,0.0015873016091063619,0.002222222276031971,0.0033333334140479565,0.0019047618843615055,0.0015873016091063619,0.0033333334140479565,0.0019047618843615055,0.0033333334140479565,0.0028571428265422583,0.0011904762359336019,-0.021111110225319862,0.020079365000128746,0.002222222276031971,0.0033333334140479565,0.0019047618843615055,-0.0031746032182127237,-0.0011111111380159855,-0.0016666667070239782,-0.0009523809421807528,-0.0,-0.0,1.6940658945086007e-20,2.479732424530982e-34,-0.0,4.796662367773313e-20,-0.021111110225319862,0.002222222276031971,0.020079365000128746,0.0033333334140479565,0.0019047618843615055,-0.0,-0.0011111111380159855,-0.0,2.710505431213761e-20,-0.0031746032182127237,-0.0016666667070239782,-0.0009523809421807528,3.851859888774472e-34,-0.0,4.4220529478633604e-20,-0.030476190149784088,0.0033333334140479565,0.0033333334140479565,0.06380952149629593,0.0028571428265422583,-1.1401068051158778e-34,2.9508785385492837e-35,-0.0033333334140479565,1.7477155876642209e-34,-0.0,-0.0033333334140479565,1.3115463424929475e-34,-0.019999999552965164,-0.0028571428265422583,-2.1807953037519e-18,-0.018333332613110542,0.0019047618843615055,0.0019047618843615055,0.0028571428265422583,0.013880952261388302,-0.0,5.934946174163031e-21,-0.0,-0.0007619047537446022,-5.693882236872281e-20,-0.0,-0.0007619047537446022,-5.4519879491870205e-18,-0.0011428571306169033,-0.0017857142956927419,0.0015873016091063619,-0.0031746032182127237,-0.0,-1.1401068051158778e-34,-0.0,0.0007936508045531809,-0.0,-0.0,-0.0,1.1567537235701973e-21,-0.0,-0.0,0.0,-0.0,3.498986915796378e-21,0.002222222276031971,-0.0011111111380159855,-0.0011111111380159855,2.9508785385492837e-35,5.934946174163031e-21,-0.0,0.0005555555690079927,-0.0,-7.044630372432442e-22,-0.0,-0.0,-0.0,-1.4754392692746418e-35,-0.0,-8.340331758685312e-22,0.0033333334140479565,-0.0016666667070239782,-0.0,-0.0033333334140479565,-0.0,-0.0,-0.0,0.0016666667070239782,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0009523809421807528,2.710505431213761e-20,1.7477155876642209e-34,-0.0007619047537446022,-0.0,-7.044630372432442e-22,-0.0,0.0003809523768723011,-2.012751563830468e-21,0.0,-6.776263578034403e-21,-8.738577938321104e-35,-0.0,-2.4607660333520773e-20,0.0015873016091063619,-0.0,-0.0031746032182127237,-0.0,-5.693882236872281e-20,1.1567537235701973e-21,-0.0,-0.0,-2.012751563830468e-21,0.0007936508045531809,-0.0,0.0,-4.215540851352098e-35,0.0,4.3601574621625895e-21,0.0033333334140479565,-0.0,-0.0016666667070239782,-0.0033333334140479565,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0016666667070239782,-0.0,-8.357880346181475e-36,-0.0,-0.0,0.0019047618843615055,1.6940658945086007e-20,-0.0009523809421807528,1.3115463424929475e-34,-0.0007619047537446022,-0.0,-0.0,-0.0,-6.776263578034403e-21,0.0,-0.0,0.0003809523768723011,-6.557731712464738e-35,-0.0,-2.4607660333520773e-20,0.0033333334140479565,2.479732424530982e-34,3.851859888774472e-34,-0.019999999552965164,-5.4519879491870205e-18,0.0,-1.4754392692746418e-35,-0.0,-8.738577938321104e-35,-4.215540851352098e-35,-8.357880346181475e-36,-6.557731712464738e-35,0.009999999776482582,-0.0,1.09039765187595e-18,0.0028571428265422583,-0.0,-0.0,-0.0028571428265422583,-0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,0.0011904762359336019,4.796662367773313e-20,4.4220529478633604e-20,-2.1807953037519e-18,-0.0017857142956927419,3.498986915796378e-21,-8.340331758685312e-22,-0.0,-2.4607660333520773e-20,4.3601574621625895e-21,-0.0,-2.4607660333520773e-20,1.09039765187595e-18,-0.0,0.0003571428533177823,5.0,5.0,3.0,7.0,0.06964852660894394,-0.018299318850040436,-0.018299318850040436,-0.026428570970892906,-0.014047618955373764,0.0013605442363768816,0.0019047618843615055,0.0028571428265422583,0.0014285714132711291,0.0013605442363768816,0.0028571428265422583,0.0014285714132711291,0.0028571428265422583,0.002142857061699033,0.0007936508045531809,-0.018299318850040436,0.017312925308942795,0.0019047618843615055,0.0028571428265422583,0.0014285714132711291,-0.002721088472753763,-0.0009523809421807528,-0.0014285714132711291,-0.0007142857066355646,-0.0,0.0,-0.0,-1.4217894602952167e-34,1.7618284656654593e-20,-2.7105054716034394e-21,-0.018299318850040436,0.0019047618843615055,0.017312925308942795,0.0028571428265422583,0.0014285714132711291,-0.0,-0.0009523809421807528,-0.0,-0.0,-0.002721088472753763,-0.0014285714132711291,-0.0007142857066355646,-1.6143825006516884e-34,2.0328790734103208e-20,-0.0,-0.026428570970892906,0.0028571428265422583,0.0028571428265422583,0.054999999701976776,0.002142857061699033,-0.0,-0.0,-0.0028571428265422583,1.7618284656654593e-20,-0.0,-0.0028571428265422583,2.0328790734103208e-20,-0.017142856493592262,-0.002142857061699033,-1.3455802859091449e-18,-0.014047618955373764,0.0014285714132711291,0.0014285714132711291,0.002142857061699033,0.008809523656964302,0.0,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0004761904710903764,-4.12368560511773e-18,-0.0007142857066355646,-0.0009523809421807528,0.0013605442363768816,-0.002721088472753763,-0.0,-0.0,0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0009523809421807528,-0.0009523809421807528,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0028571428265422583,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0,1.7618284656654593e-20,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,4.7392982009840557e-35,-5.87276182148272e-21,9.035018575258784e-22,0.0013605442363768816,-0.0,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,0.0,-0.0014285714132711291,-0.0028571428265422583,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0007142857066355646,2.0328790734103208e-20,-0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,5.381274810848344e-35,-6.776263578034403e-21,-0.0,0.0028571428265422583,-1.4217894602952167e-34,-1.6143825006516884e-34,-0.017142856493592262,-4.12368560511773e-18,-0.0,-0.0,-0.0,4.7392982009840557e-35,-0.0,-0.0,5.381274810848344e-35,0.008571428246796131,-9.62964972193618e-35,6.872808997204295e-19,0.002142857061699033,1.7618284656654593e-20,2.0328790734103208e-20,-0.002142857061699033,-0.0007142857066355646,-0.0,-0.0,-0.0,-5.87276182148272e-21,-0.0,-0.0,-6.776263578034403e-21,-9.62964972193618e-35,0.0007142857066355646,-9.660519589384634e-21,0.0007936508045531809,-2.7105054716034394e-21,-0.0,-1.3455802859091449e-18,-0.0009523809421807528,-0.0,-0.0,-0.0,9.035018575258784e-22,-0.0,-0.0,-0.0,6.872808997204295e-19,-9.660519589384634e-21,0.00015873015217948705,5.0,5.0,3.0,8.0,0.062261905521154404,-0.016150793060660362,-0.016150793060660362,-0.023333333432674408,-0.011111111380159855,0.0011904762359336019,0.0016666667070239782,0.0024999999441206455,0.0011111111380159855,0.0011904762359336019,0.0024999999441206455,0.0011111111380159855,0.0024999999441206455,0.0016666667070239782,0.0005555555690079927,-0.016150793060660362,0.015218254178762436,0.0016666667070239782,0.0024999999441206455,0.0011111111380159855,-0.0023809524718672037,-0.0008333333535119891,-0.0012499999720603228,-0.0005555555690079927,3.0357660829594124e-18,4.119968255444917e-18,2.710505431213761e-19,6.071532165918825e-18,1.0842021724855044e-19,-1.734723475976807e-18,-0.016150793060660362,0.0016666667070239782,0.015218254178762436,0.0024999999441206455,0.0011111111380159855,2.5017798453209585e-18,-0.0008333333535119891,1.3552527156068805e-18,2.439454888092385e-19,-0.0023809524718672037,-0.0012499999720603228,-0.0005555555690079927,8.239936510889834e-18,-2.168404344971009e-19,-1.81603863891322e-18,-0.023333333432674408,0.0024999999441206455,0.0024999999441206455,0.04833333194255829,0.0016666667070239782,4.810311687985747e-18,3.3868728201248956e-18,-0.0024999999441206455,7.318364664277155e-19,2.6051664617469707e-18,-0.0024999999441206455,1.2332799712022613e-18,-0.014999999664723873,-0.0016666667070239782,-3.469446951953614e-18,-0.011111111380159855,0.0011111111380159855,0.0011111111380159855,0.0016666667070239782,0.0059523810632526875,-5.421010862427522e-20,-1.2413682466293814e-18,-2.4883391943427375e-18,-0.0003174603043589741,-8.149165225985868e-19,-1.3383326327795318e-18,-0.0003174603043589741,-5.013202548632754e-18,-0.0004761904710903764,-0.0005555555690079927,0.0011904762359336019,-0.0023809524718672037,2.5017798453209585e-18,4.810311687985747e-18,-5.421010862427522e-20,0.0005952381179668009,-3.163907940372452e-19,-4.1774575148125054e-19,-6.608451379214239e-19,-2.966662070418237e-19,-5.650007543206702e-19,9.278022065293451e-22,-1.2688256798824666e-18,-2.083910462649874e-20,1.6263032587282567e-19,0.0016666667070239782,-0.0008333333535119891,-0.0008333333535119891,3.3868728201248956e-18,-1.2413682466293814e-18,-3.163907940372452e-19,0.00041666667675599456,-1.8973538018496328e-19,5.637173674444229e-21,-6.452030491404695e-19,-3.936276463610419e-19,-9.578738568666989e-20,-1.0641744754943705e-18,1.212331334614846e-20,2.0328790734103208e-19,0.0024999999441206455,-0.0012499999720603228,1.3552527156068805e-18,-0.0024999999441206455,-2.4883391943427375e-18,-4.1774575148125054e-19,-1.8973538018496328e-19,0.0012499999720603228,4.478703187595879e-20,-2.277334984356293e-19,-1.8209623798106535e-19,3.323092774650659e-20,6.537689179737624e-19,1.4318126756956674e-19,2.710505431213761e-19,0.0011111111380159855,-0.0005555555690079927,2.439454888092385e-19,7.318364664277155e-19,-0.0003174603043589741,-6.608451379214239e-19,5.637173674444229e-21,4.478703187595879e-20,0.00015873015217948705,2.0328790734103208e-20,-1.5408640317515958e-19,-3.77245573436325e-20,-1.3066584395588044e-19,-5.2747831015866197e-20,8.131516293641283e-20,0.0011904762359336019,3.0357660829594124e-18,-0.0023809524718672037,2.6051664617469707e-18,-8.149165225985868e-19,-2.966662070418237e-19,-6.452030491404695e-19,-2.277334984356293e-19,2.0328790734103208e-20,0.0005952381179668009,-5.638461652819111e-19,-6.779968830190757e-19,-7.371092775436465e-19,1.453269740785293e-19,2.981555974335137e-19,0.0024999999441206455,4.119968255444917e-18,-0.0012499999720603228,-0.0024999999441206455,-1.3383326327795318e-18,-5.650007543206702e-19,-3.936276463610419e-19,-1.8209623798106535e-19,-1.5408640317515958e-19,-5.638461652819111e-19,0.0012499999720603228,-1.1519648082658485e-19,-1.653404280534908e-18,-2.242932801174154e-19,2.710505431213761e-19,0.0011111111380159855,2.710505431213761e-19,-0.0005555555690079927,1.2332799712022613e-18,-0.0003174603043589741,9.278022065293451e-22,-9.578738568666989e-20,3.323092774650659e-20,-3.77245573436325e-20,-6.779968830190757e-19,-1.1519648082658485e-19,0.00015873015217948705,-4.342757669509923e-19,-4.0391562121913923e-20,4.0657581468206416e-20,0.0024999999441206455,6.071532165918825e-18,8.239936510889834e-18,-0.014999999664723873,-5.013202548632754e-18,-1.2688256798824666e-18,-1.0641744754943705e-18,6.537689179737624e-19,-1.3066584395588044e-19,-7.371092775436465e-19,-1.653404280534908e-18,-4.342757669509923e-19,0.007499999832361937,-1.0570971181733668e-18,1.0299920638612292e-18,0.0016666667070239782,1.0842021724855044e-19,-2.168404344971009e-19,-0.0016666667070239782,-0.0004761904710903764,-2.083910462649874e-20,1.212331334614846e-20,1.4318126756956674e-19,-5.2747831015866197e-20,1.453269740785293e-19,-2.242932801174154e-19,-4.0391562121913923e-20,-1.0570971181733668e-18,0.0004761904710903764,1.3552527156068805e-19,0.0005555555690079927,-1.734723475976807e-18,-1.81603863891322e-18,-3.469446951953614e-18,-0.0005555555690079927,1.6263032587282567e-19,2.0328790734103208e-19,2.710505431213761e-19,8.131516293641283e-20,2.981555974335137e-19,2.710505431213761e-19,4.0657581468206416e-20,1.0299920638612292e-18,1.3552527156068805e-19,7.936507608974352e-05,5.0,5.0,4.0,3.0,0.10852380841970444,-0.030523808673024178,-0.030523808673024178,-0.035999998450279236,-0.04399999976158142,0.0023809524718672037,0.0033333334140479565,0.004000000189989805,0.004999999888241291,0.0023809524718672037,0.004000000189989805,0.004999999888241291,0.0033333334140479565,0.006000000052154064,0.004999999888241291,-0.030523808673024178,0.029547618702054024,0.0033333334140479565,0.004000000189989805,0.004999999888241291,-0.004761904943734407,-0.0016666667070239782,-0.0020000000949949026,-0.0024999999441206455,1.0842021724855044e-19,5.421010862427522e-20,-0.0,-0.0,-0.0,-0.0,-0.030523808673024178,0.0033333334140479565,0.029547618702054024,0.004000000189989805,0.004999999888241291,-0.0,-0.0016666667070239782,-0.0,-0.0,-0.004761904943734407,-0.0020000000949949026,-0.0024999999441206455,-0.0,-0.0,-0.0,-0.035999998450279236,0.004000000189989805,0.004000000189989805,0.047333333641290665,0.006000000052154064,6.219216242851612e-20,5.421010862427522e-20,-0.0026666666381061077,-3.7895612478194786e-19,1.0842021724855044e-19,-0.0026666666381061077,-4.0264089065875527e-19,-0.009999999776482582,-0.004000000189989805,-3.3306692062243676e-17,-0.04399999976158142,0.004999999888241291,0.004999999888241291,0.006000000052154064,0.09399999678134918,-0.0,-0.0,-3.7895612478194786e-19,-0.004999999888241291,-7.799875029144339e-20,-4.0264089065875527e-19,-0.004999999888241291,-2.6751934217361174e-17,-0.006000000052154064,-0.029999999329447746,0.0023809524718672037,-0.004761904943734407,-0.0,6.219216242851612e-20,-0.0,0.0011904762359336019,-0.0,-5.421010862427522e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,-0.0016666667070239782,5.421010862427522e-20,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-5.421010862427522e-20,-2.710505431213761e-20,-0.0,-0.0,-0.0,-0.0,0.004000000189989805,-0.0020000000949949026,-0.0,-0.0026666666381061077,-3.7895612478194786e-19,-5.421010862427522e-20,-0.0,0.0013333333190530539,1.8947806239097393e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004999999888241291,-0.0024999999441206455,-0.0,-3.7895612478194786e-19,-0.004999999888241291,-0.0,-0.0,1.8947806239097393e-19,0.0024999999441206455,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,1.0842021724855044e-19,-0.004761904943734407,1.0842021724855044e-19,-7.799875029144339e-20,-0.0,-5.421010862427522e-20,-0.0,-0.0,0.0011904762359336019,-5.421010862427522e-20,0.0,0.0,0.0,0.0,0.004000000189989805,5.421010862427522e-20,-0.0020000000949949026,-0.0026666666381061077,-4.0264089065875527e-19,-0.0,-2.710505431213761e-20,-0.0,-0.0,-5.421010862427522e-20,0.0013333333190530539,2.0132044532937763e-19,-0.0,-0.0,-0.0,0.004999999888241291,-0.0,-0.0024999999441206455,-4.0264089065875527e-19,-0.004999999888241291,-0.0,-0.0,-0.0,-0.0,0.0,2.0132044532937763e-19,0.0024999999441206455,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0,-0.0,-0.009999999776482582,-2.6751934217361174e-17,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0033333334140479565,3.031648998255583e-18,1.1102230411687688e-17,0.006000000052154064,-0.0,-0.0,-0.004000000189989805,-0.006000000052154064,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,3.031648998255583e-18,0.004000000189989805,1.0097419331746677e-32,0.004999999888241291,-0.0,-0.0,-3.3306692062243676e-17,-0.029999999329447746,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,1.1102230411687688e-17,1.0097419331746677e-32,0.014999999664723873,5.0,5.0,4.0,4.0,0.08774285763502121,-0.023642856627702713,-0.023642856627702713,-0.027899999171495438,-0.027899999171495438,0.0017857142956927419,0.0024999999441206455,0.003000000026077032,0.003000000026077032,0.0017857142956927419,0.003000000026077032,0.003000000026077032,0.0024999999441206455,0.003599999938160181,0.0024999999441206455,-0.023642856627702713,0.022535713389515877,0.0024999999441206455,0.003000000026077032,0.003000000026077032,-0.0035714285913854837,-0.0012499999720603228,-0.001500000013038516,-0.001500000013038516,1.0842021724855044e-19,5.421010862427522e-20,5.421010862427522e-20,-0.0,-0.0,0.0,-0.023642856627702713,0.0024999999441206455,0.022535713389515877,0.003000000026077032,0.003000000026077032,-0.0,-0.0012499999720603228,-0.0,-0.0,-0.0035714285913854837,-0.001500000013038516,-0.001500000013038516,-0.0,-0.0,-0.0,-0.027899999171495438,0.003000000026077032,0.003000000026077032,0.03610000014305115,0.003599999938160181,1.4711537733696016e-19,5.421010862427522e-20,-0.0020000000949949026,-1.8449609573323483e-19,1.0842021724855044e-19,-0.0020000000949949026,-1.5350537341832644e-19,-0.007499999832361937,-0.002400000113993883,-0.0,-0.027899999171495438,0.003000000026077032,0.003000000026077032,0.003599999938160181,0.03610000014305115,2.168404344971009e-19,5.421010862427522e-20,-1.8449609573323483e-19,-0.0020000000949949026,1.3642891468111395e-19,-1.5350537341832644e-19,-0.0020000000949949026,-0.0,-0.002400000113993883,-0.007499999832361937,0.0017857142956927419,-0.0035714285913854837,-0.0,1.4711537733696016e-19,2.168404344971009e-19,0.0008928571478463709,-0.0,-1.0842021724855044e-19,-1.0842021724855044e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0012499999720603228,-0.0012499999720603228,5.421010862427522e-20,5.421010862427522e-20,-0.0,0.0006249999860301614,-0.0,-0.0,-5.421010862427522e-20,-2.710505431213761e-20,-2.710505431213761e-20,-0.0,-0.0,-0.0,0.003000000026077032,-0.001500000013038516,-0.0,-0.0020000000949949026,-1.8449609573323483e-19,-1.0842021724855044e-19,-0.0,0.0010000000474974513,9.224804786661741e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003000000026077032,-0.001500000013038516,-0.0,-1.8449609573323483e-19,-0.0020000000949949026,-1.0842021724855044e-19,-0.0,9.224804786661741e-20,0.0010000000474974513,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,1.0842021724855044e-19,-0.0035714285913854837,1.0842021724855044e-19,1.3642891468111395e-19,-0.0,-5.421010862427522e-20,-0.0,-0.0,0.0008928571478463709,-5.421010862427522e-20,-5.421010862427522e-20,0.0,0.0,-0.0,0.003000000026077032,5.421010862427522e-20,-0.001500000013038516,-0.0020000000949949026,-1.5350537341832644e-19,-0.0,-2.710505431213761e-20,-0.0,-0.0,-5.421010862427522e-20,0.0010000000474974513,7.675268670916322e-20,-0.0,-0.0,-0.0,0.003000000026077032,5.421010862427522e-20,-0.001500000013038516,-1.5350537341832644e-19,-0.0020000000949949026,-0.0,-2.710505431213761e-20,-0.0,-0.0,-5.421010862427522e-20,7.675268670916322e-20,0.0010000000474974513,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0024999999441206455,-0.0,-0.0,0.003599999938160181,-0.0,-0.0,-0.002400000113993883,-0.002400000113993883,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0015999999595806003,-0.0,0.0024999999441206455,0.0,-0.0,-0.0,-0.007499999832361937,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,5.0,5.0,4.0,5.0,0.07377143204212189,-0.01931428536772728,-0.01931428536772728,-0.02280000038444996,-0.01931428536772728,0.0014285714132711291,0.0020000000949949026,0.002400000113993883,0.0020000000949949026,0.0014285714132711291,0.002400000113993883,0.0020000000949949026,0.0020000000949949026,0.002400000113993883,0.0014285714132711291,-0.01931428536772728,0.018228571861982346,0.0020000000949949026,0.002400000113993883,0.0020000000949949026,-0.0028571428265422583,-0.0010000000474974513,-0.0012000000569969416,-0.0010000000474974513,-1.0842021724855044e-19,2.710505431213761e-20,2.710505431213761e-20,-0.0,-1.6719256299317946e-19,4.519051506912567e-20,-0.01931428536772728,0.0020000000949949026,0.018228571861982346,0.002400000113993883,0.0020000000949949026,-0.0,-0.0010000000474974513,-5.397031127369245e-36,2.710505431213761e-20,-0.0028571428265422583,-0.0012000000569969416,-0.0010000000474974513,-0.0,-1.6263032587282567e-19,4.174801554187871e-20,-0.02280000038444996,0.002400000113993883,0.002400000113993883,0.029200000688433647,0.002400000113993883,8.128099649970527e-20,2.710505431213761e-20,-0.0015999999595806003,3.1922744838928243e-20,1.0842021724855044e-19,-0.0015999999595806003,2.1154014870637092e-20,-0.006000000052154064,-0.0015999999595806003,-4.988785727913837e-19,-0.01931428536772728,0.0020000000949949026,0.0020000000949949026,0.002400000113993883,0.018228571861982346,-0.0,-4.970154696306431e-21,1.9911531106328197e-19,-0.0010000000474974513,4.733143620899763e-20,1.8378434559022416e-19,-0.0010000000474974513,-0.0,-0.0012000000569969416,-0.0028571428265422583,0.0014285714132711291,-0.0028571428265422583,-0.0,8.128099649970527e-20,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,2.05480756773183e-37,6.053120592978853e-38,-0.0,-0.0,2.0553210931722605e-36,-5.25316890853132e-22,0.0020000000949949026,-0.0010000000474974513,-0.0010000000474974513,2.710505431213761e-20,-4.970154696306431e-21,-0.0,0.0005000000237487257,0.0,-1.5642221678896377e-37,5.421010862427522e-20,-1.3552527156068805e-20,-0.0,-0.0,-7.52316384526264e-37,1.14256422372161e-21,0.002400000113993883,-0.0012000000569969416,-5.397031127369245e-36,-0.0015999999595806003,1.9911531106328197e-19,-0.0,0.0,0.0007999999797903001,-9.955765553164099e-20,0.0,-0.0,2.6985155636846224e-36,-0.0,-1.6645299907935732e-35,4.4990614935419654e-36,0.0020000000949949026,-0.0010000000474974513,2.710505431213761e-20,3.1922744838928243e-20,-0.0010000000474974513,-0.0,-1.5642221678896377e-37,-9.955765553164099e-20,0.0005000000237487257,-4.469206258029752e-37,1.504632769052528e-36,-1.3552527156068805e-20,-0.0,8.359628149658973e-20,-2.2595257534562835e-20,0.0014285714132711291,-1.0842021724855044e-19,-0.0028571428265422583,1.0842021724855044e-19,4.733143620899763e-20,2.05480756773183e-37,5.421010862427522e-20,0.0,-4.469206258029752e-37,0.0007142857066355646,-0.0,-2.710505431213761e-20,0.0,0.0,-5.25316890853132e-22,0.002400000113993883,2.710505431213761e-20,-0.0012000000569969416,-0.0015999999595806003,1.8378434559022416e-19,6.053120592978853e-38,-1.3552527156068805e-20,-0.0,1.504632769052528e-36,-0.0,0.0007999999797903001,-9.189217279511208e-20,-0.0,-1.4944453426693518e-35,5.326745763088984e-36,0.0020000000949949026,2.710505431213761e-20,-0.0010000000474974513,2.1154014870637092e-20,-0.0010000000474974513,-0.0,-0.0,2.6985155636846224e-36,-1.3552527156068805e-20,-2.710505431213761e-20,-9.189217279511208e-20,0.0005000000237487257,-0.0,8.131516293641283e-20,-2.0874007770939356e-20,0.0020000000949949026,-0.0,-0.0,-0.006000000052154064,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,0.002400000113993883,-1.6719256299317946e-19,-1.6263032587282567e-19,-0.0015999999595806003,-0.0012000000569969416,2.0553210931722605e-36,-7.52316384526264e-37,-1.6645299907935732e-35,8.359628149658973e-20,0.0,-1.4944453426693518e-35,8.131516293641283e-20,-0.0,0.0007999999797903001,2.4943928639569186e-19,0.0014285714132711291,4.519051506912567e-20,4.174801554187871e-20,-4.988785727913837e-19,-0.0028571428265422583,-5.25316890853132e-22,1.14256422372161e-21,4.4990614935419654e-36,-2.2595257534562835e-20,-5.25316890853132e-22,5.326745763088984e-36,-2.0874007770939356e-20,-0.0,2.4943928639569186e-19,0.0007142857066355646,5.0,5.0,4.0,6.0,0.06369047611951828,-0.016333334147930145,-0.016333334147930145,-0.019285714253783226,-0.014178571291267872,0.0011904762359336019,0.0016666667070239782,0.0020000000949949026,0.0014285714132711291,0.0011904762359336019,0.0020000000949949026,0.0014285714132711291,0.0016666667070239782,0.001714285695925355,0.0008928571478463709,-0.016333334147930145,0.015309523791074753,0.0016666667070239782,0.0020000000949949026,0.0014285714132711291,-0.0023809524718672037,-0.0008333333535119891,-0.0010000000474974513,-0.0007142857066355646,5.421010862427522e-20,-3.76158192263132e-36,-0.0,-1.7384738373027316e-34,-8.783246082158132e-20,2.4278014319134187e-20,-0.016333334147930145,0.0016666667070239782,0.015309523791074753,0.0020000000949949026,0.0014285714132711291,-0.0,-0.0008333333535119891,-0.0,-0.0,-0.0023809524718672037,-0.0010000000474974513,-0.0007142857066355646,-2.7083389842945504e-34,-1.0164395367051604e-19,-0.0,-0.019285714253783226,0.0020000000949949026,0.0020000000949949026,0.024523809552192688,0.001714285695925355,-4.370333803180909e-20,2.104251296637923e-36,-0.0013333333190530539,-2.0693295625842942e-19,-5.421010862427522e-20,-0.0013333333190530539,-2.207444426450156e-19,-0.004999999888241291,-0.0011428571306169033,-4.014513067102063e-18,-0.014178571291267872,0.0014285714132711291,0.0014285714132711291,0.001714285695925355,0.010582142509520054,-0.0,-1.1852614653671039e-21,-1.1910050189919664e-19,-0.0005714285653084517,-1.2596023640209074e-20,-1.1910050189919664e-19,-0.0005714285653084517,-6.491410699211967e-18,-0.0006857143016532063,-0.0013392857508733869,0.0011904762359336019,-0.0023809524718672037,-0.0,-4.370333803180909e-20,-0.0,0.0005952381179668009,-0.0,-0.0,-0.0,2.5685092354570334e-37,-0.0,-0.0,0.0,2.6043289353320238e-36,-7.889229437669533e-21,0.0016666667070239782,-0.0008333333535119891,-0.0008333333535119891,2.104251296637923e-36,-1.1852614653671039e-21,-0.0,0.00041666667675599456,-0.0,-1.5642221678896377e-37,-2.710505431213761e-20,-0.0,-0.0,-0.0,-8.417004827819285e-37,2.1841427910036996e-22,0.0020000000949949026,-0.0010000000474974513,-0.0,-0.0013333333190530539,-1.1910050189919664e-19,-0.0,-0.0,0.0006666666595265269,5.955025094959832e-20,-0.0,0.0,-0.0,0.0,7.322623102781323e-36,9.851990058810962e-37,0.0014285714132711291,-0.0007142857066355646,-0.0,-2.0693295625842942e-19,-0.0005714285653084517,-0.0,-1.5642221678896377e-37,5.955025094959832e-20,0.0002857142826542258,-4.469206258029752e-37,1.504632769052528e-36,-0.0,6.953895119622186e-35,3.5132984328632527e-20,3.841321347635774e-21,0.0011904762359336019,5.421010862427522e-20,-0.0023809524718672037,-5.421010862427522e-20,-1.2596023640209074e-20,2.5685092354570334e-37,-2.710505431213761e-20,-0.0,-4.469206258029752e-37,0.0005952381179668009,-0.0,2.710505431213761e-20,0.0,0.0,-7.889229437669533e-21,0.0020000000949949026,-3.76158192263132e-36,-0.0010000000474974513,-0.0013333333190530539,-1.1910050189919664e-19,-0.0,-0.0,0.0,1.504632769052528e-36,-0.0,0.0006666666595265269,5.955025094959832e-20,0.0,8.47409170938609e-36,2.4547324994147248e-36,0.0014285714132711291,-0.0,-0.0007142857066355646,-2.207444426450156e-19,-0.0005714285653084517,-0.0,-0.0,-0.0,-0.0,2.710505431213761e-20,5.955025094959832e-20,0.0002857142826542258,1.0833355937178202e-34,4.0657581468206416e-20,1.3552527156068805e-20,0.0016666667070239782,-1.7384738373027316e-34,-2.7083389842945504e-34,-0.004999999888241291,-6.491410699211967e-18,0.0,-0.0,0.0,6.953895119622186e-35,0.0,0.0,1.0833355937178202e-34,0.0016666667070239782,6.929483276873366e-19,1.09039765187595e-18,0.001714285695925355,-8.783246082158132e-20,-1.0164395367051604e-19,-0.0011428571306169033,-0.0006857143016532063,2.6043289353320238e-36,-8.417004827819285e-37,7.322623102781323e-36,3.5132984328632527e-20,0.0,8.47409170938609e-36,4.0657581468206416e-20,6.929483276873366e-19,0.0004571428580675274,2.973280032306544e-19,0.0008928571478463709,2.4278014319134187e-20,-0.0,-4.014513067102063e-18,-0.0013392857508733869,-7.889229437669533e-21,2.1841427910036996e-22,9.851990058810962e-37,3.841321347635774e-21,-7.889229437669533e-21,2.4547324994147248e-36,1.3552527156068805e-20,1.09039765187595e-18,2.973280032306544e-19,0.0002678571327123791,5.0,5.0,4.0,7.0,0.056057821959257126,-0.01415306143462658,-0.01415306143462658,-0.01671428605914116,-0.010857142508029938,0.0010204081190750003,0.0014285714132711291,0.001714285695925355,0.0010714285308495164,0.0010204081190750003,0.001714285695925355,0.0010714285308495164,0.0014285714132711291,0.0012857143301516771,0.0005952381179668009,-0.01415306143462658,0.013198979198932648,0.0014285714132711291,0.001714285695925355,0.0010714285308495164,-0.0020408162381500006,-0.0007142857066355646,-0.0008571428479626775,-0.0005357142654247582,-0.0,0.0,0.0,2.0463006233086232e-35,1.1519648405775911e-20,1.7670409959942505e-20,-0.01415306143462658,0.0014285714132711291,0.013198979198932648,0.001714285695925355,0.0010714285308495164,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0020408162381500006,-0.0008571428479626775,-0.0005357142654247582,-1.8055593228630336e-35,-1.0164395367051604e-20,0.0,-0.01671428605914116,0.001714285695925355,0.001714285695925355,0.021142857149243355,0.0012857143301516771,-0.0,-0.0,-0.0011428571306169033,1.1519648405775911e-20,-0.0,-0.0011428571306169033,-1.0164395367051604e-20,-0.004285714123398066,-0.0008571428479626775,-4.1700083595971015e-22,-0.010857142508029938,0.0010714285308495164,0.0010714285308495164,0.0012857143301516771,0.00671428581699729,0.0,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0003571428533177823,-7.137148003630569e-19,-0.00042857142398133874,-0.0007142857066355646,0.0010204081190750003,-0.0020408162381500006,-0.0,-0.0,0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-0.0008571428479626775,-0.0,-0.0011428571306169033,-0.0,-0.0,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0005357142654247582,-0.0,1.1519648405775911e-20,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-6.821001838540473e-36,-3.839882667293043e-21,-5.8901366533141685e-21,0.0010204081190750003,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,0.0,-0.0008571428479626775,-0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,0.0,-0.0005357142654247582,-1.0164395367051604e-20,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,6.018531076210112e-36,3.3881317890172014e-21,-0.0,0.0014285714132711291,2.0463006233086232e-35,-1.8055593228630336e-35,-0.004285714123398066,-7.137148003630569e-19,-0.0,-0.0,-0.0,-6.821001838540473e-36,-0.0,-0.0,6.018531076210112e-36,0.0014285714132711291,4.758098496757752e-19,2.469141031378095e-37,0.0012857143301516771,1.1519648405775911e-20,-1.0164395367051604e-20,-0.0008571428479626775,-0.00042857142398133874,-0.0,-0.0,-0.0,-3.839882667293043e-21,-0.0,-0.0,3.3881317890172014e-21,4.758098496757752e-19,0.0002857142826542258,1.3900028286049488e-22,0.0005952381179668009,1.7670409959942505e-20,0.0,-4.1700083595971015e-22,-0.0007142857066355646,-0.0,-0.0,-0.0,-5.8901366533141685e-21,-0.0,-0.0,-0.0,2.469141031378095e-37,1.3900028286049488e-22,0.0001190476177725941,5.0,5.0,4.0,8.0,0.05007142946124077,-0.012488095089793205,-0.012488095089793205,-0.014750000089406967,-0.00858333334326744,0.0008928571478463709,0.0012499999720603228,0.001500000013038516,0.0008333333535119891,0.0008928571478463709,0.001500000013038516,0.0008333333535119891,0.0012499999720603228,0.0010000000474974513,0.00041666667675599456,-0.012488095089793205,0.011601190082728863,0.0012499999720603228,0.001500000013038516,0.0008333333535119891,-0.0017857142956927419,-0.0006249999860301614,-0.000750000006519258,-0.00041666667675599456,1.951563910473908e-18,2.168404344971009e-19,-5.421010862427522e-19,-1.951563910473908e-18,-9.215718466126788e-19,-1.0842021724855044e-18,-0.012488095089793205,0.0012499999720603228,0.011601190082728863,0.001500000013038516,0.0008333333535119891,2.2820535844618133e-18,-0.0006249999860301614,-5.421010862427522e-19,5.488773498207866e-19,-0.0017857142956927419,-0.000750000006519258,-0.00041666667675599456,-1.4094628242311558e-18,-8.131516293641283e-19,-1.2332799712022613e-18,-0.014750000089406967,0.001500000013038516,0.001500000013038516,0.018583333119750023,0.0010000000474974513,-3.1935243150243007e-18,-1.3722538621342595e-18,-0.0010000000474974513,-6.776263578034403e-19,-3.758308761614788e-18,-0.0010000000474974513,-1.5720931501039814e-18,-0.0037499999161809683,-0.0006666666595265269,-1.8973538018496328e-18,-0.00858333334326744,0.0008333333535119891,0.0008333333535119891,0.0010000000474974513,0.004535714164376259,-1.9786689647860456e-18,-9.9363427061465e-19,-2.271128182931213e-18,-0.0002380952355451882,-1.9361537424571982e-18,-1.5363908974928505e-18,-0.0002380952355451882,-3.074391281662576e-18,-0.0002857142826542258,-0.00041666667675599456,0.0008928571478463709,-0.0017857142956927419,2.2820535844618133e-18,-3.1935243150243007e-18,-1.9786689647860456e-18,0.00044642857392318547,-7.040432269265022e-21,1.014978218755509e-18,3.1281659830919187e-19,-4.822473827929691e-19,-1.7235033138048023e-19,8.920502326085815e-21,3.2078053815048756e-19,1.283805377938525e-19,1.6263032587282567e-19,0.0012499999720603228,-0.0006249999860301614,-0.0006249999860301614,-1.3722538621342595e-18,-9.9363427061465e-19,-7.040432269265022e-21,0.0003124999930150807,6.776263578034403e-20,-8.823761372405108e-22,2.730301155741862e-19,2.994213388670847e-19,1.2400378300116664e-19,1.260421369762563e-19,5.554595361476008e-20,1.0842021724855044e-19,0.001500000013038516,-0.000750000006519258,-5.421010862427522e-19,-0.0010000000474974513,-2.271128182931213e-18,1.014978218755509e-18,6.776263578034403e-20,0.0005000000237487257,2.458996771570009e-19,-4.765426283009206e-20,5.385274075025817e-20,1.1080550886712074e-19,7.188500668527568e-20,1.7502341722873362e-19,1.8973538018496328e-19,0.0008333333535119891,-0.00041666667675599456,5.488773498207866e-19,-6.776263578034403e-19,-0.0002380952355451882,3.1281659830919187e-19,-8.823761372405108e-22,2.458996771570009e-19,0.0001190476177725941,-1.1519648082658485e-19,-3.7473585575905085e-20,-5.623584971061058e-21,8.190290707337444e-20,9.358767090761488e-22,2.710505431213761e-20,0.0008928571478463709,1.951563910473908e-18,-0.0017857142956927419,-3.758308761614788e-18,-1.9361537424571982e-18,-4.822473827929691e-19,2.730301155741862e-19,-4.765426283009206e-20,-1.1519648082658485e-19,0.00044642857392318547,1.2979613592008453e-18,3.622194434060386e-19,2.0083947857726926e-19,1.5834585341722776e-19,1.4907779871675686e-19,0.001500000013038516,2.168404344971009e-19,-0.000750000006519258,-0.0010000000474974513,-1.5363908974928505e-18,-1.7235033138048023e-19,2.994213388670847e-19,5.385274075025817e-20,-3.7473585575905085e-20,1.2979613592008453e-18,0.0005000000237487257,2.981555974335137e-19,-4.3095621360463453e-19,-5.335999959911799e-20,1.3552527156068805e-19,0.0008333333535119891,-5.421010862427522e-19,-0.00041666667675599456,-1.5720931501039814e-18,-0.0002380952355451882,8.920502326085815e-21,1.2400378300116664e-19,1.1080550886712074e-19,-5.623584971061058e-21,3.622194434060386e-19,2.981555974335137e-19,0.0001190476177725941,1.82931341432923e-19,3.5973441836251884e-20,4.0657581468206416e-20,0.0012499999720603228,-1.951563910473908e-18,-1.4094628242311558e-18,-0.0037499999161809683,-3.074391281662576e-18,3.2078053815048756e-19,1.260421369762563e-19,7.188500668527568e-20,8.190290707337444e-20,2.0083947857726926e-19,-4.3095621360463453e-19,1.82931341432923e-19,0.0012499999720603228,6.776263578034403e-20,3.2526065174565133e-19,0.0010000000474974513,-9.215718466126788e-19,-8.131516293641283e-19,-0.0006666666595265269,-0.0002857142826542258,1.283805377938525e-19,5.554595361476008e-20,1.7502341722873362e-19,9.358767090761488e-22,1.5834585341722776e-19,-5.335999959911799e-20,3.5973441836251884e-20,6.776263578034403e-20,0.00019047618843615055,5.421010862427522e-20,0.00041666667675599456,-1.0842021724855044e-18,-1.2332799712022613e-18,-1.8973538018496328e-18,-0.00041666667675599456,1.6263032587282567e-19,1.0842021724855044e-19,1.8973538018496328e-19,2.710505431213761e-20,1.4907779871675686e-19,1.3552527156068805e-19,4.0657581468206416e-20,3.2526065174565133e-19,5.421010862427522e-20,5.952380888629705e-05,5.0,5.0,5.0,3.0,0.09142857044935226,-0.02495238184928894,-0.02495238184928894,-0.02495238184928894,-0.035999998450279236,0.0019047618843615055,0.0026666666381061077,0.0026666666381061077,0.004000000189989805,0.0019047618843615055,0.0026666666381061077,0.004000000189989805,0.0019047618843615055,0.004000000189989805,0.004000000189989805,-0.02495238184928894,0.02390476129949093,0.0026666666381061077,0.0026666666381061077,0.004000000189989805,-0.003809523768723011,-0.0013333333190530539,-0.0013333333190530539,-0.0020000000949949026,1.0842021724855044e-19,2.710505431213761e-20,-0.0,1.0842021724855044e-19,-0.0,0.0,-0.02495238184928894,0.0026666666381061077,0.02390476129949093,0.0026666666381061077,0.004000000189989805,-0.0,-0.0013333333190530539,2.710505431213761e-20,-0.0,-0.003809523768723011,-0.0013333333190530539,-0.0020000000949949026,9.595812093497967e-20,-0.0,-0.0,-0.02495238184928894,0.0026666666381061077,0.0026666666381061077,0.02390476129949093,0.004000000189989805,-7.6203852372734285e-22,1.6574337689121315e-21,-0.0013333333190530539,-0.0,-0.0,-0.0013333333190530539,-0.0,-0.003809523768723011,-0.0020000000949949026,-0.0,-0.035999998450279236,0.004000000189989805,0.004000000189989805,0.004000000189989805,0.07599999755620956,-0.0,-0.0,-0.0,-0.004000000189989805,-0.0,-0.0,-0.004000000189989805,-0.0,-0.004000000189989805,-0.024000000208616257,0.0019047618843615055,-0.003809523768723011,-0.0,-7.6203852372734285e-22,-0.0,0.0009523809421807528,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,1.75181268371599e-22,-0.0,-0.0,0.0026666666381061077,-0.0013333333190530539,-0.0013333333190530539,1.6574337689121315e-21,-0.0,-0.0,0.0006666666595265269,-0.0,-0.0,-5.421010862427522e-20,-0.0,-0.0,-3.8101926186367143e-22,-0.0,-0.0,0.0026666666381061077,-0.0013333333190530539,2.710505431213761e-20,-0.0013333333190530539,-0.0,-0.0,-0.0,0.0006666666595265269,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-5.421010862427522e-20,-0.0,-0.0,0.004000000189989805,-0.0020000000949949026,-0.0,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,1.0842021724855044e-19,-0.003809523768723011,-0.0,-0.0,-0.0,-5.421010862427522e-20,-0.0,-0.0,0.0009523809421807528,-0.0,0.0,1.75181268371599e-22,0.0,-0.0,0.0026666666381061077,2.710505431213761e-20,-0.0013333333190530539,-0.0013333333190530539,-0.0,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,0.0006666666595265269,-0.0,-4.7979060467489833e-20,-0.0,-0.0,0.004000000189989805,-0.0,-0.0020000000949949026,-0.0,-0.004000000189989805,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0020000000949949026,-0.0,-0.0,-0.0,0.0019047618843615055,1.0842021724855044e-19,9.595812093497967e-20,-0.003809523768723011,-0.0,1.75181268371599e-22,-3.8101926186367143e-22,-5.421010862427522e-20,-0.0,1.75181268371599e-22,-4.7979060467489833e-20,-0.0,0.0009523809421807528,0.0,-0.0,0.004000000189989805,-0.0,-0.0,-0.0020000000949949026,-0.004000000189989805,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.0020000000949949026,-0.0,0.004000000189989805,0.0,-0.0,-0.0,-0.024000000208616257,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.012000000104308128,5.0,5.0,5.0,4.0,0.07377143204212189,-0.01931428536772728,-0.01931428536772728,-0.01931428536772728,-0.02280000038444996,0.0014285714132711291,0.0020000000949949026,0.0020000000949949026,0.002400000113993883,0.0014285714132711291,0.0020000000949949026,0.002400000113993883,0.0014285714132711291,0.002400000113993883,0.0020000000949949026,-0.01931428536772728,0.018228571861982346,0.0020000000949949026,0.0020000000949949026,0.002400000113993883,-0.0028571428265422583,-0.0010000000474974513,-0.0010000000474974513,-0.0012000000569969416,-1.0842021724855044e-19,-0.0,2.710505431213761e-20,-0.0,-2.710505431213761e-20,0.0,-0.01931428536772728,0.0020000000949949026,0.018228571861982346,0.0020000000949949026,0.002400000113993883,-0.0,-0.0010000000474974513,-0.0,-0.0,-0.0028571428265422583,-0.0010000000474974513,-0.0012000000569969416,-0.0,-0.0,-0.0,-0.01931428536772728,0.0020000000949949026,0.0020000000949949026,0.018228571861982346,0.002400000113993883,2.28512844744322e-21,-4.970154696306431e-21,-0.0010000000474974513,-0.0,-0.0,-0.0010000000474974513,-0.0,-0.0028571428265422583,-0.0012000000569969416,-0.0,-0.02280000038444996,0.002400000113993883,0.002400000113993883,0.002400000113993883,0.029200000688433647,1.0842021724855044e-19,2.710505431213761e-20,-2.710505431213761e-20,-0.0015999999595806003,9.595812093497967e-20,-0.0,-0.0015999999595806003,1.0842021724855044e-19,-0.0015999999595806003,-0.006000000052154064,0.0014285714132711291,-0.0028571428265422583,-0.0,2.28512844744322e-21,1.0842021724855044e-19,0.0007142857066355646,-0.0,-0.0,-5.421010862427522e-20,-0.0,0.0,-0.0,-5.25316890853132e-22,-0.0,-0.0,0.0020000000949949026,-0.0010000000474974513,-0.0010000000474974513,-4.970154696306431e-21,2.710505431213761e-20,-0.0,0.0005000000237487257,-0.0,-0.0,5.421010862427522e-20,-0.0,-1.3552527156068805e-20,1.14256422372161e-21,-0.0,-0.0,0.0020000000949949026,-0.0010000000474974513,-0.0,-0.0010000000474974513,-2.710505431213761e-20,-0.0,-0.0,0.0005000000237487257,-0.0,-0.0,-0.0,-0.0,-0.0,1.3552527156068805e-20,-0.0,0.002400000113993883,-0.0012000000569969416,-0.0,-0.0,-0.0015999999595806003,-5.421010862427522e-20,-0.0,-0.0,0.0007999999797903001,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-1.0842021724855044e-19,-0.0028571428265422583,-0.0,9.595812093497967e-20,-0.0,5.421010862427522e-20,-0.0,-0.0,0.0007142857066355646,-0.0,0.0,-5.25316890853132e-22,-0.0,-0.0,0.0020000000949949026,-0.0,-0.0010000000474974513,-0.0010000000474974513,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0005000000237487257,-0.0,-0.0,-0.0,-0.0,0.002400000113993883,2.710505431213761e-20,-0.0012000000569969416,-0.0,-0.0015999999595806003,-0.0,-1.3552527156068805e-20,-0.0,-0.0,0.0,-0.0,0.0007999999797903001,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0028571428265422583,1.0842021724855044e-19,-5.25316890853132e-22,1.14256422372161e-21,-0.0,-0.0,-5.25316890853132e-22,-0.0,-0.0,0.0007142857066355646,-6.044115678106061e-20,-0.0,0.002400000113993883,-2.710505431213761e-20,-0.0,-0.0012000000569969416,-0.0015999999595806003,-0.0,-0.0,1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-6.044115678106061e-20,0.0007999999797903001,-0.0,0.0020000000949949026,0.0,-0.0,-0.0,-0.006000000052154064,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020000000949949026,5.0,5.0,5.0,5.0,0.06194285675883293,-0.015771428123116493,-0.015771428123116493,-0.015771428123116493,-0.015771428123116493,0.0011428571306169033,0.0015999999595806003,0.0015999999595806003,0.0015999999595806003,0.0011428571306169033,0.0015999999595806003,0.0015999999595806003,0.0011428571306169033,0.0015999999595806003,0.0011428571306169033,-0.015771428123116493,0.014742856845259666,0.0015999999595806003,0.0015999999595806003,0.0015999999595806003,-0.0022857142612338066,-0.0007999999797903001,-0.0007999999797903001,-0.0007999999797903001,-5.421010862427522e-20,-7.1530645418914805e-22,-1.3552527156068805e-20,5.421010862427522e-20,-1.1673958787488965e-20,-4.261172457952905e-20,-0.015771428123116493,0.0015999999595806003,0.014742856845259666,0.0015999999595806003,0.0015999999595806003,-0.0,-0.0007999999797903001,1.8785681666314484e-21,-1.3552527156068805e-20,-0.0022857142612338066,-0.0007999999797903001,-0.0007999999797903001,5.367337503547914e-21,-1.3552527156068805e-20,-4.7979060467489833e-20,-0.015771428123116493,0.0015999999595806003,0.0015999999595806003,0.014742856845259666,0.0015999999595806003,3.9133442220647076e-21,3.1624352761543593e-21,-0.0007999999797903001,-1.1673958787488965e-20,-0.0,-0.0007999999797903001,-1.3552527156068805e-20,-0.0022857142612338066,-0.0007999999797903001,-4.261172457952905e-20,-0.015771428123116493,0.0015999999595806003,0.0015999999595806003,0.0015999999595806003,0.014742856845259666,-0.0,2.759884882608909e-21,4.235902655694907e-21,-0.0007999999797903001,1.1036967313770087e-21,-5.16042522034245e-21,-0.0007999999797903001,-0.0,-0.0007999999797903001,-0.0022857142612338066,0.0011428571306169033,-0.0022857142612338066,-0.0,3.9133442220647076e-21,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,2.3615564726282016e-22,3.903410759373888e-39,-0.0,3.718530515546888e-22,-1.7461582406029088e-37,7.184552840002027e-22,0.0015999999595806003,-0.0007999999797903001,-0.0007999999797903001,3.1624352761543593e-21,2.759884882608909e-21,-0.0,0.00039999998989515007,-1.3019779422680432e-22,-4.957569537590671e-23,2.710505431213761e-20,-0.0,-0.0,-6.6713555284692805e-22,-0.0,-6.116629044788844e-22,0.0015999999595806003,-0.0007999999797903001,1.8785681666314484e-21,-0.0007999999797903001,4.235902655694907e-21,-0.0,-1.3019779422680432e-22,0.00039999998989515007,-4.957569537590671e-23,-3.7199368336598437e-22,-0.0,-0.0,-2.710505431213761e-20,-0.0,-9.509772990940556e-22,0.0015999999595806003,-0.0007999999797903001,-1.3552527156068805e-20,-1.1673958787488965e-20,-0.0007999999797903001,-0.0,-4.957569537590671e-23,-4.957569537590671e-23,0.00039999998989515007,-1.4164484753738331e-22,3.5765322709457402e-22,6.776263578034403e-21,-1.4164484753738331e-22,5.836979393744483e-21,2.1305862289764526e-20,0.0011428571306169033,-5.421010862427522e-20,-0.0022857142612338066,-0.0,1.1036967313770087e-21,2.3615564726282016e-22,2.710505431213761e-20,-3.7199368336598437e-22,-1.4164484753738331e-22,0.0005714285653084517,-0.0,0.0,-9.271417343141706e-22,0.0,-1.8859931274197803e-22,0.0015999999595806003,-7.1530645418914805e-22,-0.0007999999797903001,-0.0007999999797903001,-5.16042522034245e-21,3.903410759373888e-39,-0.0,-0.0,3.5765322709457402e-22,-0.0,0.00039999998989515007,-0.0,-0.0,-0.0,1.0218663342775841e-21,0.0015999999595806003,-1.3552527156068805e-20,-0.0007999999797903001,-1.3552527156068805e-20,-0.0007999999797903001,-0.0,-0.0,-0.0,6.776263578034403e-21,0.0,-0.0,0.00039999998989515007,-0.0,6.776263578034403e-21,2.3989530233744917e-20,0.0011428571306169033,5.421010862427522e-20,5.367337503547914e-21,-0.0022857142612338066,-0.0,3.718530515546888e-22,-6.6713555284692805e-22,-2.710505431213761e-20,-1.4164484753738331e-22,-9.271417343141706e-22,-0.0,-0.0,0.0005714285653084517,-0.0,-3.259267182341995e-23,0.0015999999595806003,-1.1673958787488965e-20,-1.3552527156068805e-20,-0.0007999999797903001,-0.0007999999797903001,-1.7461582406029088e-37,-0.0,-0.0,5.836979393744483e-21,0.0,-0.0,6.776263578034403e-21,-0.0,0.00039999998989515007,2.1305862289764526e-20,0.0011428571306169033,-4.261172457952905e-20,-4.7979060467489833e-20,-4.261172457952905e-20,-0.0022857142612338066,7.184552840002027e-22,-6.116629044788844e-22,-9.509772990940556e-22,2.1305862289764526e-20,-1.8859931274197803e-22,1.0218663342775841e-21,2.3989530233744917e-20,-3.259267182341995e-23,2.1305862289764526e-20,0.0005714285653084517,5.0,5.0,5.0,6.0,0.05342857167124748,-0.013333333656191826,-0.013333333656191826,-0.013333333656191826,-0.01157142873853445,0.0009523809421807528,0.0013333333190530539,0.0013333333190530539,0.0011428571306169033,0.0009523809421807528,0.0013333333190530539,0.0011428571306169033,0.0009523809421807528,0.0011428571306169033,0.0007142857066355646,-0.013333333656191826,0.012380952015519142,0.0013333333190530539,0.0013333333190530539,0.0011428571306169033,-0.0019047618843615055,-0.0006666666595265269,-0.0006666666595265269,-0.0005714285653084517,5.421010862427522e-20,-1.35085080612252e-20,1.417122917369006e-20,-0.0,2.237173984289844e-21,-6.047323184022335e-21,-0.013333333656191826,0.0013333333190530539,0.012380952015519142,0.0013333333190530539,0.0011428571306169033,-0.0,-0.0006666666595265269,-1.502015882023955e-20,-0.0,-0.0019047618843615055,-0.0006666666595265269,-0.0005714285653084517,-5.2172294255288286e-20,8.470329472543003e-21,-0.0,-0.013333333656191826,0.0013333333190530539,0.0013333333190530539,0.012380952015519142,0.0011428571306169033,-7.389096975391792e-21,1.4325424242871432e-21,-0.0006666666595265269,1.171099450694632e-20,-0.0,-0.0006666666595265269,1.3552527156068805e-20,-0.0019047618843615055,-0.0005714285653084517,1.7794173627921484e-20,-0.01157142873853445,0.0011428571306169033,0.0011428571306169033,0.0011428571306169033,0.008557142689824104,-0.0,7.773714149802643e-21,7.773714149802643e-21,-0.0004571428580675274,-3.9777386979441836e-21,8.778670335498164e-22,-0.0004571428580675274,-0.0,-0.0004571428580675274,-0.0010714285308495164,0.0009523809421807528,-0.0019047618843615055,-0.0,-7.389096975391792e-21,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,-2.0803721147808378e-22,-8.210306914410377e-38,-3.5651375903455697e-37,-2.839389086671018e-22,-8.655760078040736e-37,1.3659710457189428e-21,0.0013333333190530539,-0.0006666666595265269,-0.0006666666595265269,1.4325424242871432e-21,7.773714149802643e-21,-0.0,0.00033333332976326346,1.5531747309909528e-22,2.440684364794971e-24,-2.710505431213761e-20,-0.0,-6.776263578034403e-21,-4.0073040939557125e-22,-0.0,1.0639922639228551e-21,0.0013333333190530539,-0.0006666666595265269,-1.502015882023955e-20,-0.0006666666595265269,7.773714149802643e-21,-0.0,1.5531747309909528e-22,0.00033333332976326346,2.8512331074108787e-22,4.437642232794431e-22,6.776263578034403e-21,-3.093511602719211e-22,-0.0,6.776263578034403e-21,-3.9209677738527634e-21,0.0011428571306169033,-0.0005714285653084517,-0.0,1.171099450694632e-20,-0.0004571428580675274,-0.0,2.440684364794971e-24,2.8512331074108787e-22,0.0002285714290337637,6.973383674025373e-24,-1.760779507853456e-23,-0.0,8.146380018390522e-22,-6.315880617702173e-21,2.3277201710540316e-21,0.0009523809421807528,5.421010862427522e-20,-0.0019047618843615055,-0.0,-3.9777386979441836e-21,-2.0803721147808378e-22,-2.710505431213761e-20,4.437642232794431e-22,6.973383674025373e-24,0.0004761904710903764,-0.0,2.710505431213761e-20,1.6561710865927986e-21,0.0,-4.702179479839969e-22,0.0013333333190530539,-1.35085080612252e-20,-0.0006666666595265269,-0.0006666666595265269,8.778670335498164e-22,-8.210306914410377e-38,-0.0,6.776263578034403e-21,-1.760779507853456e-23,-0.0,0.00033333332976326346,-3.093511602719211e-22,2.3989530233744917e-20,-0.0,-4.1268267447340275e-23,0.0011428571306169033,1.417122917369006e-20,-0.0005714285653084517,1.3552527156068805e-20,-0.0004571428580675274,-3.5651375903455697e-37,-6.776263578034403e-21,-3.093511602719211e-22,-0.0,2.710505431213761e-20,-3.093511602719211e-22,0.0002285714290337637,-8.838604579197746e-22,-3.3881317890172014e-21,-0.0,0.0009523809421807528,-0.0,-5.2172294255288286e-20,-0.0019047618843615055,-0.0,-2.839389086671018e-22,-4.0073040939557125e-22,-0.0,8.146380018390522e-22,1.6561710865927986e-21,2.3989530233744917e-20,-8.838604579197746e-22,0.0004761904710903764,-3.115523472547519e-21,-4.324309199248646e-21,0.0011428571306169033,2.237173984289844e-21,8.470329472543003e-21,-0.0005714285653084517,-0.0004571428580675274,-8.655760078040736e-37,-0.0,6.776263578034403e-21,-6.315880617702173e-21,0.0,-0.0,-3.3881317890172014e-21,-3.115523472547519e-21,0.0002285714290337637,3.5764171603624504e-21,0.0007142857066355646,-6.047323184022335e-21,-0.0,1.7794173627921484e-20,-0.0010714285308495164,1.3659710457189428e-21,1.0639922639228551e-21,-3.9209677738527634e-21,2.3277201710540316e-21,-4.702179479839969e-22,-4.1268267447340275e-23,-0.0,-4.324309199248646e-21,3.5764171603624504e-21,0.00021428571199066937,5.0,5.0,5.0,7.0,0.0469931960105896,-0.011551020666956902,-0.011551020666956902,-0.011551020666956902,-0.008857143111526966,0.0008163265301845968,0.0011428571306169033,0.0011428571306169033,0.0008571428479626775,0.0008163265301845968,0.0011428571306169033,0.0008571428479626775,0.0008163265301845968,0.0008571428479626775,0.0004761904710903764,-0.011551020666956902,0.010673468932509422,0.0011428571306169033,0.0011428571306169033,0.0008571428479626775,-0.0016326530603691936,-0.0005714285653084517,-0.0005714285653084517,-0.00042857142398133874,-3.1073298204495907e-18,-1.4500872150772835e-18,5.17694915474222e-19,-3.1073298204495907e-18,5.075305201071704e-19,1.6161365886145205e-18,-0.011551020666956902,0.0011428571306169033,0.010673468932509422,0.0011428571306169033,0.0008571428479626775,-4.680881496768656e-18,-0.0005714285653084517,3.806478900803778e-19,2.639296554206368e-19,-0.0016326530603691936,-0.0005714285653084517,-0.00042857142398133874,-3.1073298204495907e-18,5.075305201071704e-19,1.6364653793486237e-18,-0.011551020666956902,0.0011428571306169033,0.0011428571306169033,0.010673468932509422,0.0008571428479626775,-4.680881496768656e-18,3.806478900803778e-19,-0.0005714285653084517,2.537652600535852e-19,-3.955837837531226e-18,-0.0005714285653084517,5.075305201071704e-19,-0.0016326530603691936,-0.00042857142398133874,1.619264055113007e-18,-0.008857143111526966,0.0008571428479626775,0.0008571428479626775,0.0008571428479626775,0.005428571254014969,1.2977244753529254e-18,2.410769918810271e-18,2.410769918810271e-18,-0.0002857142826542258,1.2977244753529254e-18,2.1570047621542625e-18,-0.0002857142826542258,1.2977244753529254e-18,-0.0002857142826542258,-0.0005714285653084517,0.0008163265301845968,-0.0016326530603691936,-4.680881496768656e-18,-4.680881496768656e-18,1.2977244753529254e-18,0.0004081632650922984,4.242540860890002e-19,4.242540860890002e-19,-5.976430978249056e-20,7.768324551123977e-19,3.6252180376932087e-19,-6.282090684988893e-34,7.768324551123977e-19,-6.515511261461063e-34,-1.5105075372466654e-19,0.0011428571306169033,-0.0005714285653084517,-0.0005714285653084517,3.806478900803778e-19,2.410769918810271e-18,4.242540860890002e-19,0.0002857142826542258,1.5115761754105453e-33,-1.268826300267926e-19,1.3837625624292263e-33,1.3347158871606318e-33,-1.268826300267926e-19,1.3837625624292263e-33,-1.268826300267926e-19,-2.537652600535852e-19,0.0011428571306169033,-0.0005714285653084517,3.806478900803778e-19,-0.0005714285653084517,2.410769918810271e-18,4.242540860890002e-19,1.5115761754105453e-33,0.0002857142826542258,-1.268826300267926e-19,1.3837625624292263e-33,1.3347158871606318e-33,-1.268826300267926e-19,1.3837625624292263e-33,-1.268826300267926e-19,-2.537652600535852e-19,0.0008571428479626775,-0.00042857142398133874,2.639296554206368e-19,2.537652600535852e-19,-0.0002857142826542258,-5.976430978249056e-20,-1.268826300267926e-19,-1.268826300267926e-19,0.0001428571413271129,-1.3240768367662246e-34,-5.076479686762183e-35,-3.3881317890172014e-21,-1.5885682314478982e-34,-5.898215670777975e-35,1.0425021277645988e-21,0.0008163265301845968,-3.1073298204495907e-18,-0.0016326530603691936,-3.955837837531226e-18,1.2977244753529254e-18,7.768324551123977e-19,1.3837625624292263e-33,1.3837625624292263e-33,-1.3240768367662246e-34,0.0004081632650922984,4.242540860890002e-19,-5.976430978249056e-20,7.768324551123977e-19,-3.021524428898446e-34,-1.5105075372466654e-19,0.0011428571306169033,-1.4500872150772835e-18,-0.0005714285653084517,-0.0005714285653084517,2.1570047621542625e-18,3.6252180376932087e-19,1.3347158871606318e-33,1.3347158871606318e-33,-5.076479686762183e-35,4.242540860890002e-19,0.0002857142826542258,-1.268826300267926e-19,2.073728338864976e-33,-1.268826300267926e-19,-2.537652600535852e-19,0.0008571428479626775,5.17694915474222e-19,-0.00042857142398133874,5.075305201071704e-19,-0.0002857142826542258,-6.282090684988893e-34,-1.268826300267926e-19,-1.268826300267926e-19,-3.3881317890172014e-21,-5.976430978249056e-20,-1.268826300267926e-19,0.0001428571413271129,-1.4745401136714774e-34,-1.0147909138700491e-35,-5.733761551244e-21,0.0008163265301845968,-3.1073298204495907e-18,-3.1073298204495907e-18,-0.0016326530603691936,1.2977244753529254e-18,7.768324551123977e-19,1.3837625624292263e-33,1.3837625624292263e-33,-1.5885682314478982e-34,7.768324551123977e-19,2.073728338864976e-33,-1.4745401136714774e-34,0.0004081632650922984,-5.976430978249056e-20,-1.5105075372466654e-19,0.0008571428479626775,5.075305201071704e-19,5.075305201071704e-19,-0.00042857142398133874,-0.0002857142826542258,-6.515511261461063e-34,-1.268826300267926e-19,-1.268826300267926e-19,-5.898215670777975e-35,-3.021524428898446e-34,-1.268826300267926e-19,-1.0147909138700491e-35,-5.976430978249056e-20,0.0001428571413271129,1.6847340869342568e-35,0.0004761904710903764,1.6161365886145205e-18,1.6364653793486237e-18,1.619264055113007e-18,-0.0005714285653084517,-1.5105075372466654e-19,-2.537652600535852e-19,-2.537652600535852e-19,1.0425021277645988e-21,-1.5105075372466654e-19,-2.537652600535852e-19,-5.733761551244e-21,-1.5105075372466654e-19,1.6847340869342568e-35,9.523809421807528e-05,5.0,5.0,5.0,8.0,0.041952382773160934,-0.010190475732088089,-0.010190475732088089,-0.010190475732088089,-0.007000000216066837,0.0007142857066355646,0.0010000000474974513,0.0010000000474974513,0.0006666666595265269,0.0007142857066355646,0.0010000000474974513,0.0006666666595265269,0.0007142857066355646,0.0006666666595265269,0.00033333332976326346,-0.010190475732088089,0.009380952455103397,0.0010000000474974513,0.0010000000474974513,0.0006666666595265269,-0.0014285714132711291,-0.0005000000237487257,-0.0005000000237487257,-0.00033333332976326346,4.228388472693467e-18,1.951563910473908e-18,1.6805133673525319e-18,3.144186300207963e-18,1.7076184216646695e-18,2.0599841277224584e-18,-0.010190475732088089,0.0010000000474974513,0.009380952455103397,0.0010000000474974513,0.0006666666595265269,4.30449198418049e-18,-0.0005000000237487257,1.599198204416119e-18,8.267041565201971e-19,-0.0014285714132711291,-0.0005000000237487257,-0.00033333332976326346,3.7947076036992655e-19,1.111307226797642e-18,2.087089182034596e-18,-0.010190475732088089,0.0010000000474974513,0.0010000000474974513,0.009380952455103397,0.0006666666595265269,4.358757927496112e-18,1.8506385699605474e-18,-0.0005000000237487257,6.979551485375435e-19,1.4978014743511798e-18,-0.0005000000237487257,5.183841637196318e-19,-0.0014285714132711291,-0.00033333332976326346,1.9786689647860456e-18,-0.007000000216066837,0.0006666666595265269,0.0006666666595265269,0.0006666666595265269,0.003666666569188237,3.821812658011403e-18,2.152581413828635e-18,1.9451431277641182e-18,-0.00019047618843615055,3.4151164885502125e-18,1.803515124439167e-18,-0.00019047618843615055,2.9101247925381205e-18,-0.00019047618843615055,-0.00033333332976326346,0.0007142857066355646,-0.0014285714132711291,4.30449198418049e-18,4.358757927496112e-18,3.821812658011403e-18,0.0003571428533177823,-1.3517528368869863e-19,-1.118699481438087e-19,-1.9396958849365151e-19,-5.90243825073951e-19,-2.977359583690079e-19,-2.6249410931694516e-19,-6.070362635930251e-19,-2.7584224531353094e-19,-3.1170812458958252e-19,0.0010000000474974513,-0.0005000000237487257,-0.0005000000237487257,1.8506385699605474e-18,2.152581413828635e-18,-1.3517528368869863e-19,0.0002500000118743628,-1.0842021724855044e-19,-8.798228391002998e-20,-5.220255161736668e-19,-2.1967802588967576e-19,-1.7930874271433822e-19,-1.7592055922653273e-19,-1.1709986219016058e-19,-1.8295911660692887e-19,0.0010000000474974513,-0.0005000000237487257,1.599198204416119e-18,-0.0005000000237487257,1.9451431277641182e-18,-1.118699481438087e-19,-1.0842021724855044e-19,0.0002500000118743628,-6.952215234082089e-20,-1.7973923852438379e-19,-1.0778474866765365e-19,-1.1211236376207502e-19,1.194616260133e-20,-1.2242271773315102e-19,-1.6940658945086007e-19,0.0006666666595265269,-0.00033333332976326346,8.267041565201971e-19,6.979551485375435e-19,-0.00019047618843615055,-1.9396958849365151e-19,-8.798228391002998e-20,-6.952215234082089e-20,9.523809421807528e-05,-1.1180834903756764e-19,-5.970103692797879e-20,-1.5213452511699867e-20,-7.774619524832476e-20,-2.9222749771372734e-20,-3.3881317890172014e-20,0.0007142857066355646,4.228388472693467e-18,-0.0014285714132711291,1.4978014743511798e-18,3.4151164885502125e-18,-5.90243825073951e-19,-5.220255161736668e-19,-1.7973923852438379e-19,-1.1180834903756764e-19,0.0003571428533177823,-2.374579629637734e-19,-4.124798163041614e-19,-3.128670434018605e-20,-1.447140849434158e-19,-2.574980159653073e-19,0.0010000000474974513,1.951563910473908e-18,-0.0005000000237487257,-0.0005000000237487257,1.803515124439167e-18,-2.977359583690079e-19,-2.1967802588967576e-19,-1.0778474866765365e-19,-5.970103692797879e-20,-2.374579629637734e-19,0.0002500000118743628,-1.0503208545953324e-19,5.666651192613094e-20,-1.122629881817421e-19,-1.6263032587282567e-19,0.0006666666595265269,1.6805133673525319e-18,-0.00033333332976326346,5.183841637196318e-19,-0.00019047618843615055,-2.6249410931694516e-19,-1.7930874271433822e-19,-1.1211236376207502e-19,-1.5213452511699867e-20,-4.124798163041614e-19,-1.0503208545953324e-19,9.523809421807528e-05,-6.704271399761013e-21,-1.401597609688438e-20,-4.743384504624082e-20,0.0007142857066355646,3.144186300207963e-18,3.7947076036992655e-19,-0.0014285714132711291,2.9101247925381205e-18,-6.070362635930251e-19,-1.7592055922653273e-19,1.194616260133e-20,-7.774619524832476e-20,-3.128670434018605e-20,5.666651192613094e-20,-6.704271399761013e-21,0.0003571428533177823,-2.608861477543245e-19,-2.846030702774449e-19,0.0006666666595265269,1.7076184216646695e-18,1.111307226797642e-18,-0.00033333332976326346,-0.00019047618843615055,-2.7584224531353094e-19,-1.1709986219016058e-19,-1.2242271773315102e-19,-2.9222749771372734e-20,-1.447140849434158e-19,-1.122629881817421e-19,-1.401597609688438e-20,-2.608861477543245e-19,9.523809421807528e-05,-7.453889935837843e-20,0.00033333332976326346,2.0599841277224584e-18,2.087089182034596e-18,1.9786689647860456e-18,-0.00033333332976326346,-3.1170812458958252e-19,-1.8295911660692887e-19,-1.6940658945086007e-19,-3.3881317890172014e-20,-2.574980159653073e-19,-1.6263032587282567e-19,-4.743384504624082e-20,-2.846030702774449e-19,-7.453889935837843e-20,4.761904710903764e-05,5.0,5.0,6.0,3.0,0.07904762029647827,-0.021111110225319862,-0.021111110225319862,-0.018333332613110542,-0.030476190149784088,0.0015873016091063619,0.002222222276031971,0.0019047618843615055,0.0033333334140479565,0.0015873016091063619,0.0019047618843615055,0.0033333334140479565,0.0011904762359336019,0.0028571428265422583,0.0033333334140479565,-0.021111110225319862,0.020079365000128746,0.002222222276031971,0.0019047618843615055,0.0033333334140479565,-0.0031746032182127237,-0.0011111111380159855,-0.0009523809421807528,-0.0016666667070239782,-0.0,-4.2894756058341435e-20,-3.603323552387082e-21,-0.0,-2.8244977050895306e-20,-5.255211880889159e-34,-0.021111110225319862,0.002222222276031971,0.020079365000128746,0.0019047618843615055,0.0033333334140479565,-0.0,-0.0011111111380159855,-1.8415324471740937e-21,-1.5265687176338441e-37,-0.0031746032182127237,-0.0009523809421807528,-0.0016666667070239782,-4.316091515292101e-21,2.710505431213761e-20,-1.925929944387236e-34,-0.018333332613110542,0.0019047618843615055,0.0019047618843615055,0.013880952261388302,0.0028571428265422583,1.7145069491614638e-20,-5.710849698407918e-21,-0.0007619047537446022,-6.315935628444082e-20,-0.0,-0.0007619047537446022,-7.204113702589506e-20,-0.0017857142956927419,-0.0011428571306169033,8.865417402877931e-18,-0.030476190149784088,0.0033333334140479565,0.0033333334140479565,0.0028571428265422583,0.06380952149629593,1.0842021724855044e-19,7.045426856889451e-21,-9.992333398587478e-20,-0.0033333334140479565,3.7651969013706706e-20,-7.115076756936123e-20,-0.0033333334140479565,4.0115480381963664e-18,-0.0028571428265422583,-0.019999999552965164,0.0015873016091063619,-0.0031746032182127237,-0.0,1.7145069491614638e-20,1.0842021724855044e-19,0.0007936508045531809,-0.0,-0.0,-0.0,1.751393994212822e-21,-1.1221558865956134e-37,-1.5544255221697272e-37,1.3931065481939993e-21,-1.67757909733281e-36,-0.0,0.002222222276031971,-0.0011111111380159855,-0.0011111111380159855,-5.710849698407918e-21,7.045426856889451e-21,-0.0,0.0005555555690079927,-1.066598912789195e-21,-1.214399440866416e-37,-0.0,1.3552527156068805e-20,-0.0,-3.030006608531139e-21,-2.8181706215867453e-21,2.2019343821405336e-35,0.0019047618843615055,-0.0009523809421807528,-1.8415324471740937e-21,-0.0007619047537446022,-9.992333398587478e-20,-0.0,-1.066598912789195e-21,0.0003809523768723011,3.157967814222041e-20,-3.047425465111986e-21,6.315880617702173e-21,1.4413294007599935e-21,-0.0,1.3552527156068805e-20,1.925929944387236e-34,0.0033333334140479565,-0.0016666667070239782,-1.5265687176338441e-37,-6.315935628444082e-20,-0.0033333334140479565,-0.0,-1.214399440866416e-37,3.157967814222041e-20,0.0016666667070239782,-3.4697127522491184e-37,7.141521890061933e-37,1.194813772490241e-37,-0.0,7.52316384526264e-37,0.0,0.0015873016091063619,-0.0,-0.0031746032182127237,-0.0,3.7651969013706706e-20,1.751393994212822e-21,-0.0,-3.047425465111986e-21,-3.4697127522491184e-37,0.0007936508045531809,2.710505431213761e-20,0.0,3.664145157319954e-21,-8.051915830878253e-21,6.291241173826075e-35,0.0019047618843615055,-4.2894756058341435e-20,-0.0009523809421807528,-0.0007619047537446022,-7.115076756936123e-20,-1.1221558865956134e-37,1.3552527156068805e-20,6.315880617702173e-21,7.141521890061933e-37,2.710505431213761e-20,0.0003809523768723011,2.710505431213761e-20,-3.5764171603624504e-21,6.776263578034403e-21,-4.81482486096809e-35,0.0033333334140479565,-3.603323552387082e-21,-0.0016666667070239782,-7.204113702589506e-20,-0.0033333334140479565,-1.5544255221697272e-37,-0.0,1.4413294007599935e-21,1.194813772490241e-37,0.0,2.710505431213761e-20,0.0016666667070239782,3.3781157546322422e-21,-3.383536857260019e-21,-4.74405635588226e-36,0.0011904762359336019,-0.0,-4.316091515292101e-21,-0.0017857142956927419,4.0115480381963664e-18,1.3931065481939993e-21,-3.030006608531139e-21,-0.0,-0.0,3.664145157319954e-21,-3.5764171603624504e-21,3.3781157546322422e-21,0.0003571428533177823,-3.59857894455988e-19,-1.5860329011843016e-18,0.0028571428265422583,-2.8244977050895306e-20,2.710505431213761e-20,-0.0011428571306169033,-0.0028571428265422583,-1.67757909733281e-36,-2.8181706215867453e-21,1.3552527156068805e-20,7.52316384526264e-37,-8.051915830878253e-21,6.776263578034403e-21,-3.383536857260019e-21,-3.59857894455988e-19,0.0011428571306169033,-9.352527935588464e-19,0.0033333334140479565,-5.255211880889159e-34,-1.925929944387236e-34,8.865417402877931e-18,-0.019999999552965164,-0.0,2.2019343821405336e-35,1.925929944387236e-34,0.0,6.291241173826075e-35,-4.81482486096809e-35,-4.74405635588226e-36,-1.5860329011843016e-18,-9.352527935588464e-19,0.009999999776482582,5.0,5.0,6.0,4.0,0.06369047611951828,-0.016333334147930145,-0.016333334147930145,-0.014178571291267872,-0.019285714253783226,0.0011904762359336019,0.0016666667070239782,0.0014285714132711291,0.0020000000949949026,0.0011904762359336019,0.0014285714132711291,0.0020000000949949026,0.0008928571478463709,0.001714285695925355,0.0016666667070239782,-0.016333334147930145,0.015309523791074753,0.0016666667070239782,0.0014285714132711291,0.0020000000949949026,-0.0023809524718672037,-0.0008333333535119891,-0.0007142857066355646,-0.0010000000474974513,5.421010862427522e-20,-1.5214223146762733e-20,-2.710505431213761e-20,-0.0,1.6940658945086007e-20,1.2037062152420224e-34,-0.016333334147930145,0.0016666667070239782,0.015309523791074753,0.0014285714132711291,0.0020000000949949026,-0.0,-0.0008333333535119891,-1.1826090549951965e-20,1.2756475062490022e-36,-0.0023809524718672037,-0.0007142857066355646,-0.0010000000474974513,9.04112448488294e-21,-1.6940658945086007e-20,-0.0,-0.014178571291267872,0.0014285714132711291,0.0014285714132711291,0.010582142509520054,0.001714285695925355,2.6141144944856116e-20,4.2065769219372716e-21,-0.0005714285653084517,7.579122495638957e-20,-0.0,-0.0005714285653084517,7.849805718869571e-20,-0.0013392857508733869,-0.0006857143016532063,-6.336727511074244e-18,-0.019285714253783226,0.0020000000949949026,0.0020000000949949026,0.001714285695925355,0.024523809552192688,-5.421010862427522e-20,-2.710505431213761e-20,9.273188390147558e-20,-0.0013333333190530539,-2.291571893609324e-20,6.155739824360971e-20,-0.0013333333190530539,-3.903127820947816e-18,-0.0011428571306169033,-0.004999999888241291,0.0011904762359336019,-0.0023809524718672037,-0.0,2.6141144944856116e-20,-5.421010862427522e-20,0.0005952381179668009,-0.0,-2.710505431213761e-20,2.710505431213761e-20,3.8558458293791543e-22,-3.67562649903739e-37,-0.0,3.1660890779189513e-22,-0.0,-0.0,0.0016666667070239782,-0.0008333333535119891,-0.0008333333535119891,4.2065769219372716e-21,-2.710505431213761e-20,-0.0,0.00041666667675599456,-2.3482102082893105e-22,1.5642221678896377e-37,-2.710505431213761e-20,-0.0,1.3552527156068805e-20,-6.8862432585354015e-22,-7.821110839448188e-38,-0.0,0.0014285714132711291,-0.0007142857066355646,-1.1826090549951965e-20,-0.0005714285653084517,9.273188390147558e-20,-2.710505431213761e-20,-2.3482102082893105e-22,0.0002857142826542258,-3.7895612478194786e-20,-6.709171879434893e-22,6.0856889355876666e-21,-0.0,-0.0,-6.776263578034403e-21,-4.81482486096809e-35,0.0020000000949949026,-0.0010000000474974513,1.2756475062490022e-36,7.579122495638957e-20,-0.0013333333190530539,2.710505431213761e-20,1.5642221678896377e-37,-3.7895612478194786e-20,0.0006666666595265269,4.469206258029752e-37,-1.4130386101212567e-36,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,5.421010862427522e-20,-0.0023809524718672037,-0.0,-2.291571893609324e-20,3.8558458293791543e-22,-2.710505431213761e-20,-6.709171879434893e-22,4.469206258029752e-37,0.0005952381179668009,-0.0,0.0,-1.4973951412623087e-20,-2.5941944757887216e-37,0.0,0.0014285714132711291,-1.5214223146762733e-20,-0.0007142857066355646,-0.0005714285653084517,6.155739824360971e-20,-3.67562649903739e-37,-0.0,6.0856889355876666e-21,-1.4130386101212567e-36,-0.0,0.0002857142826542258,-3.924902859434786e-20,2.298912636869592e-20,6.776263578034403e-21,-0.0,0.0020000000949949026,-2.710505431213761e-20,-0.0010000000474974513,7.849805718869571e-20,-0.0013333333190530539,-0.0,1.3552527156068805e-20,-0.0,-0.0,0.0,-3.924902859434786e-20,0.0006666666595265269,-0.0,7.52316384526264e-37,0.0,0.0008928571478463709,-0.0,9.04112448488294e-21,-0.0013392857508733869,-3.903127820947816e-18,3.1660890779189513e-22,-6.8862432585354015e-22,-0.0,-0.0,-1.4973951412623087e-20,2.298912636869592e-20,-0.0,0.0002678571327123791,2.168404344971009e-19,1.1102229998097382e-18,0.001714285695925355,1.6940658945086007e-20,-1.6940658945086007e-20,-0.0006857143016532063,-0.0011428571306169033,-0.0,-7.821110839448188e-38,-6.776263578034403e-21,-0.0,-2.5941944757887216e-37,6.776263578034403e-21,7.52316384526264e-37,2.168404344971009e-19,0.0004571428580675274,5.237415540531963e-19,0.0016666667070239782,1.2037062152420224e-34,-0.0,-6.336727511074244e-18,-0.004999999888241291,-0.0,-0.0,-4.81482486096809e-35,-0.0,0.0,-0.0,0.0,1.1102229998097382e-18,5.237415540531963e-19,0.0016666667070239782,5.0,5.0,6.0,5.0,0.05342857167124748,-0.013333333656191826,-0.013333333656191826,-0.01157142873853445,-0.013333333656191826,0.0009523809421807528,0.0013333333190530539,0.0011428571306169033,0.0013333333190530539,0.0009523809421807528,0.0011428571306169033,0.0013333333190530539,0.0007142857066355646,0.0011428571306169033,0.0009523809421807528,-0.013333333656191826,0.012380952015519142,0.0013333333190530539,0.0011428571306169033,0.0013333333190530539,-0.0019047618843615055,-0.0006666666595265269,-0.0005714285653084517,-0.0006666666595265269,5.421010862427522e-20,3.2919478090009035e-20,-1.2793655183123892e-20,1.3552527156068805e-19,6.709830635088738e-20,1.084501508469672e-19,-0.013333333656191826,0.0013333333190530539,0.012380952015519142,0.0011428571306169033,0.0013333333190530539,-0.0,-0.0006666666595265269,2.411245379641427e-20,-1.3552527156068805e-20,-0.0019047618843615055,-0.0005714285653084517,-0.0006666666595265269,5.009529220478165e-20,6.059746806743899e-20,-4.7979060467489833e-20,-0.01157142873853445,0.0011428571306169033,0.0011428571306169033,0.008557142689824104,0.0011428571306169033,-5.2518850620205326e-20,3.3456608305446484e-21,-0.0004571428580675274,1.1088283732969738e-19,-5.421010862427522e-20,-0.0004571428580675274,1.2197274440461925e-19,-0.0010714285308495164,-0.0004571428580675274,1.430632961045802e-18,-0.013333333656191826,0.0013333333190530539,0.0013333333190530539,0.0011428571306169033,0.012380952015519142,-0.0,2.3047348090033577e-21,6.173908717268727e-20,-0.0006666666595265269,1.0385304289391547e-20,7.441137137237748e-20,-0.0006666666595265269,1.5720931501039814e-18,-0.0005714285653084517,-0.0019047618843615055,0.0009523809421807528,-0.0019047618843615055,-0.0,-5.2518850620205326e-20,-0.0,0.0004761904710903764,-0.0,2.710505431213761e-20,-0.0,4.709692464883549e-22,-1.0216382366227462e-36,1.2106241185957707e-37,-8.665084462565925e-21,5.12310951866881e-37,-4.4365674634536085e-21,0.0013333333190530539,-0.0006666666595265269,-0.0006666666595265269,3.3456608305446484e-21,2.3047348090033577e-21,-0.0,0.00033333332976326346,-4.549790233177505e-22,2.1019843792289968e-22,-2.710505431213761e-20,-6.776263578034403e-21,-0.0,2.0485547922530542e-21,-3.554216654841762e-37,-6.26467034257722e-22,0.0011428571306169033,-0.0005714285653084517,2.411245379641427e-20,-0.0004571428580675274,6.173908717268727e-20,2.710505431213761e-20,-4.549790233177505e-22,0.0002285714290337637,-2.0292049051504222e-20,-1.2999400810470294e-21,-6.776263578034403e-21,-3.0354882956764366e-22,-4.0657581468206416e-20,-0.0,-4.723653662075278e-21,0.0013333333190530539,-0.0006666666595265269,-1.3552527156068805e-20,1.1088283732969738e-19,-0.0006666666595265269,-0.0,2.1019843792289968e-22,-2.0292049051504222e-20,0.00033333332976326346,6.00566951069114e-22,-1.2131452876077403e-21,6.776263578034403e-21,-1.4265479144445795e-22,-3.354915317544369e-20,-3.80445082196286e-20,0.0009523809421807528,5.421010862427522e-20,-0.0019047618843615055,-5.421010862427522e-20,1.0385304289391547e-20,4.709692464883549e-22,-2.710505431213761e-20,-1.2999400810470294e-21,6.00566951069114e-22,0.0004761904710903764,-0.0,0.0,9.800218601058763e-21,0.0,2.2800591389138486e-21,0.0011428571306169033,3.2919478090009035e-20,-0.0005714285653084517,-0.0004571428580675274,7.441137137237748e-20,-1.0216382366227462e-36,-6.776263578034403e-21,-6.776263578034403e-21,-1.2131452876077403e-21,-0.0,0.0002285714290337637,-2.8453710908594235e-20,-3.816018748958958e-20,-0.0,-3.466129508564053e-21,0.0013333333190530539,-1.2793655183123892e-20,-0.0006666666595265269,1.2197274440461925e-19,-0.0006666666595265269,1.2106241185957707e-37,-0.0,-3.0354882956764366e-22,6.776263578034403e-21,0.0,-2.8453710908594235e-20,0.00033333332976326346,-7.1144252512295415e-22,-3.0298734033719495e-20,2.3989530233744917e-20,0.0007142857066355646,1.3552527156068805e-19,5.009529220478165e-20,-0.0010714285308495164,1.5720931501039814e-18,-8.665084462565925e-21,2.0485547922530542e-21,-4.0657581468206416e-20,-1.4265479144445795e-22,9.800218601058763e-21,-3.816018748958958e-20,-7.1144252512295415e-22,0.00021428571199066937,-1.8973538018496328e-19,-2.796488270949234e-19,0.0011428571306169033,6.709830635088738e-20,6.059746806743899e-20,-0.0004571428580675274,-0.0005714285653084517,5.12310951866881e-37,-3.554216654841762e-37,-0.0,-3.354915317544369e-20,0.0,-0.0,-3.0298734033719495e-20,-1.8973538018496328e-19,0.0002285714290337637,-6.3497295915379246e-21,0.0009523809421807528,1.084501508469672e-19,-4.7979060467489833e-20,1.430632961045802e-18,-0.0019047618843615055,-4.4365674634536085e-21,-6.26467034257722e-22,-4.723653662075278e-21,-3.80445082196286e-20,2.2800591389138486e-21,-3.466129508564053e-21,2.3989530233744917e-20,-2.796488270949234e-19,-6.3497295915379246e-21,0.0004761904710903764,5.0,5.0,6.0,6.0,0.0460544228553772,-0.011269841343164444,-0.011269841343164444,-0.009778911247849464,-0.009778911247849464,0.0007936508045531809,0.0011111111380159855,0.0009523809421807528,0.0009523809421807528,0.0007936508045531809,0.0009523809421807528,0.0009523809421807528,0.0005952381179668009,0.0008163265301845968,0.0005952381179668009,-0.011269841343164444,0.010396825149655342,0.0011111111380159855,0.0009523809421807528,0.0009523809421807528,-0.0015873016091063619,-0.0005555555690079927,-0.0004761904710903764,-0.0004761904710903764,-0.0,-1.8979363502583718e-20,-1.1679952615755707e-20,-0.0,2.266626905144595e-20,8.930912361783052e-21,-0.011269841343164444,0.0011111111380159855,0.010396825149655342,0.0009523809421807528,0.0009523809421807528,-0.0,-0.0005555555690079927,-6.604682165963253e-21,1.3552527156068805e-20,-0.0015873016091063619,-0.0004761904710903764,-0.0004761904710903764,-9.500889079239672e-21,2.5907009210650994e-20,2.2110264739316802e-20,-0.009778911247849464,0.0009523809421807528,0.0009523809421807528,0.007185373920947313,0.0008163265301845968,-5.402136038721611e-21,-7.700110423363195e-21,-0.0003809523768723011,1.5559805312638037e-20,-2.710505431213761e-20,-0.0003809523768723011,1.3552527156068805e-20,-0.0008928571478463709,-0.00032653060043230653,9.72898920609477e-19,-0.009778911247849464,0.0009523809421807528,0.0009523809421807528,0.0008163265301845968,0.007185373920947313,-2.710505431213761e-20,-2.4137581023107704e-20,-1.4008419995859164e-20,-0.0003809523768723011,-2.537002359026203e-20,-3.087168262370891e-20,-0.0003809523768723011,7.589415207398531e-19,-0.00032653060043230653,-0.0008928571478463709,0.0007936508045531809,-0.0015873016091063619,-0.0,-5.402136038721611e-21,-2.710505431213761e-20,0.00039682540227659047,-0.0,-0.0,-0.0,1.1951867239499774e-21,-3.867373454662969e-37,1.3702323499939988e-37,1.131369012677301e-21,-1.0427936283282703e-37,2.1630332770767688e-21,0.0011111111380159855,-0.0005555555690079927,-0.0005555555690079927,-7.700110423363195e-21,-2.4137581023107704e-20,-0.0,0.00027777778450399637,1.0019179731160407e-22,-8.280605521829219e-22,-0.0,6.776263578034403e-21,6.776263578034403e-21,-1.1153809604519079e-21,-1.5294593161060534e-37,2.255744754497156e-21,0.0009523809421807528,-0.0004761904710903764,-6.604682165963253e-21,-0.0003809523768723011,-1.4008419995859164e-20,-0.0,1.0019179731160407e-22,0.00019047618843615055,7.115449634446625e-21,2.862622744269332e-22,2.8126529876277185e-21,-7.490298161252394e-22,-0.0,-0.0,2.350576538569484e-22,0.0009523809421807528,-0.0004761904710903764,1.3552527156068805e-20,1.5559805312638037e-20,-0.0003809523768723011,-0.0,-8.280605521829219e-22,7.115449634446625e-21,0.00019047618843615055,-2.3658872054018946e-21,-6.41918610580467e-22,-1.577217069962197e-36,-1.0762772894631706e-21,-9.066506974343527e-21,-9.375696424440765e-21,0.0007936508045531809,-0.0,-0.0015873016091063619,-2.710505431213761e-20,-2.537002359026203e-20,1.1951867239499774e-21,-0.0,2.862622744269332e-22,-2.3658872054018946e-21,0.00039682540227659047,1.3552527156068805e-20,1.3552527156068805e-20,5.198663744420988e-21,-1.504632769052528e-36,2.533518304982285e-21,0.0009523809421807528,-1.8979363502583718e-20,-0.0004761904710903764,-0.0003809523768723011,-3.087168262370891e-20,-3.867373454662969e-37,6.776263578034403e-21,2.8126529876277185e-21,-6.41918610580467e-22,1.3552527156068805e-20,0.00019047618843615055,1.5924797142339926e-20,-2.597475764542043e-21,3.3881317890172014e-21,-1.5044967372370822e-21,0.0009523809421807528,-1.1679952615755707e-20,-0.0004761904710903764,1.3552527156068805e-20,-0.0003809523768723011,1.3702323499939988e-37,6.776263578034403e-21,-7.490298161252394e-22,-1.577217069962197e-36,1.3552527156068805e-20,1.5924797142339926e-20,0.00019047618843615055,-1.755538581056432e-21,-1.3750935796395026e-20,-1.3552527156068805e-20,0.0005952381179668009,-0.0,-9.500889079239672e-21,-0.0008928571478463709,7.589415207398531e-19,1.131369012677301e-21,-1.1153809604519079e-21,-0.0,-1.0762772894631706e-21,5.198663744420988e-21,-2.597475764542043e-21,-1.755538581056432e-21,0.00017857142665889114,2.5856357322829192e-20,-1.58694354949054e-19,0.0008163265301845968,2.266626905144595e-20,2.5907009210650994e-20,-0.00032653060043230653,-0.00032653060043230653,-1.0427936283282703e-37,-1.5294593161060534e-37,-0.0,-9.066506974343527e-21,-1.504632769052528e-36,3.3881317890172014e-21,-1.3750935796395026e-20,2.5856357322829192e-20,0.00013061224308330566,-7.025639791908387e-20,0.0005952381179668009,8.930912361783052e-21,2.2110264739316802e-20,9.72898920609477e-19,-0.0008928571478463709,2.1630332770767688e-21,2.255744754497156e-21,2.350576538569484e-22,-9.375696424440765e-21,2.533518304982285e-21,-1.5044967372370822e-21,-1.3552527156068805e-20,-1.58694354949054e-19,-7.025639791908387e-20,0.00017857142665889114,5.0,5.0,6.0,7.0,0.04048752784729004,-0.009761904366314411,-0.009761904366314411,-0.008469387888908386,-0.007482993416488171,0.0006802721181884408,0.0009523809421807528,0.0008163265301845968,0.0007142857066355646,0.0006802721181884408,0.0008163265301845968,0.0007142857066355646,0.0005102040595375001,0.0006122448830865324,0.00039682540227659047,-0.009761904366314411,0.008962584659457207,0.0009523809421807528,0.0008163265301845968,0.0007142857066355646,-0.0013605442363768816,-0.0004761904710903764,-0.0004081632650922984,-0.0003571428533177823,-0.0,1.873257933670735e-21,9.535889966701889e-22,1.2709245400191012e-21,-1.1323285098761199e-20,2.772883290843034e-21,-0.009761904366314411,0.0009523809421807528,0.008962584659457207,0.0008163265301845968,0.0007142857066355646,-0.0,-0.0004761904710903764,2.0075249375039335e-21,8.41699692176929e-22,-0.0013605442363768816,-0.0004081632650922984,-0.0003571428533177823,4.7051366101401676e-21,-1.7388554628563597e-20,1.683399384353858e-21,-0.008469387888908386,0.0008163265301845968,0.0008163265301845968,0.006193877663463354,0.0006122448830865324,-0.0,-0.0,-0.00032653060043230653,4.808732500029981e-22,-0.0,-0.00032653060043230653,-6.776263578034403e-21,-0.0007653061184100807,-0.0002448979648761451,4.1018914639284893e-19,-0.007482993416488171,0.0007142857066355646,0.0007142857066355646,0.0006122448830865324,0.004557823296636343,-0.0,-0.0,-2.9894097311339014e-21,-0.0002380952355451882,-0.0,1.5779044727623493e-21,-0.0002380952355451882,8.131516293641283e-19,-0.0002040816325461492,-0.0004761904710903764,0.0006802721181884408,-0.0013605442363768816,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009523809421807528,-0.0004761904710903764,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,-0.0004081632650922984,2.0075249375039335e-21,-0.00032653060043230653,-2.9894097311339014e-21,-0.0,-0.0,0.00016326530021615326,-1.807537186972078e-22,-0.0,-3.452873212233681e-22,-3.814355784732364e-22,-0.0,3.3881317890172014e-21,-6.702371267343164e-22,0.0007142857066355646,-0.0003571428533177823,8.41699692176929e-22,4.808732500029981e-22,-0.0002380952355451882,-0.0,-0.0,-1.807537186972078e-22,0.0001190476177725941,-0.0,-3.366798768707716e-22,3.1168980848487475e-38,-4.23641530168733e-22,9.509850741071374e-22,-3.65763499750264e-22,0.0006802721181884408,-0.0,-0.0013605442363768816,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,1.873257933670735e-21,-0.0004081632650922984,-0.00032653060043230653,1.5779044727623493e-21,-0.0,-0.0,-3.452873212233681e-22,-3.366798768707716e-22,-0.0,0.00016326530021615326,-3.814355784732364e-22,-8.0926713387372e-22,1.6940658945086007e-21,-6.733597537415432e-22,0.0007142857066355646,9.535889966701889e-22,-0.0003571428533177823,-6.776263578034403e-21,-0.0002380952355451882,-0.0,-0.0,-3.814355784732364e-22,3.1168980848487475e-38,-0.0,-3.814355784732364e-22,0.0001190476177725941,-8.93989684378302e-22,4.384463162798437e-21,-2.346362735154146e-38,0.0005102040595375001,1.2709245400191012e-21,4.7051366101401676e-21,-0.0007653061184100807,8.131516293641283e-19,-0.0,-0.0,-0.0,-4.23641530168733e-22,-0.0,-8.0926713387372e-22,-8.93989684378302e-22,0.0001530612207716331,-8.31882100359626e-20,-9.565782206088024e-20,0.0006122448830865324,-1.1323285098761199e-20,-1.7388554628563597e-20,-0.0002448979648761451,-0.0002040816325461492,-0.0,-0.0,3.3881317890172014e-21,9.509850741071374e-22,-0.0,1.6940658945086007e-21,4.384463162798437e-21,-8.31882100359626e-20,8.163265010807663e-05,2.3236585849994255e-20,0.00039682540227659047,2.772883290843034e-21,1.683399384353858e-21,4.1018914639284893e-19,-0.0004761904710903764,-0.0,-0.0,-6.702371267343164e-22,-3.65763499750264e-22,-0.0,-6.733597537415432e-22,-2.346362735154146e-38,-9.565782206088024e-20,2.3236585849994255e-20,7.936507608974352e-05,5.0,5.0,6.0,8.0,0.03613095358014107,-0.008611110970377922,-0.008611110970377922,-0.007470238022506237,-0.0059126983396708965,0.0005952381179668009,0.0008333333535119891,0.0007142857066355646,0.0005555555690079927,0.0005952381179668009,0.0007142857066355646,0.0005555555690079927,0.00044642857392318547,0.0004761904710903764,0.00027777778450399637,-0.008611110970377922,0.007876983843743801,0.0008333333535119891,0.0007142857066355646,0.0005555555690079927,-0.0011904762359336019,-0.00041666667675599456,-0.0003571428533177823,-0.00027777778450399637,-1.5002442078305269e-32,-5.9651662040766726e-33,8.903052466387869e-19,-2.309481445104063e-33,8.418789399538473e-19,1.5693658322268175e-18,-0.008611110970377922,0.0008333333535119891,0.007876983843743801,0.0007142857066355646,0.0005555555690079927,5.2867765096103e-19,-0.00041666667675599456,2.1147105004465433e-19,1.350514650907571e-19,-0.0011904762359336019,-0.0003571428533177823,-0.00027777778450399637,-2.287488496813155e-33,8.393517480861329e-19,1.5581180370524746e-18,-0.007470238022506237,0.0007142857066355646,0.0007142857066355646,0.005443452391773462,0.0004761904710903764,4.531522353246055e-19,2.1147105004465433e-19,-0.0002857142826542258,1.945185779264453e-19,4.531522353246055e-19,-0.0002857142826542258,3.1283197869870652e-19,-0.0006696428754366934,-0.00019047618843615055,9.88256976247596e-19,-0.0059126983396708965,0.0005555555690079927,0.0005555555690079927,0.0004761904710903764,0.003078231355175376,2.9293056633771532e-18,1.3670093302555202e-18,1.1717222239918307e-18,-0.00015873015217948705,2.6272042076266084e-18,1.0508816830506434e-18,-0.00015873015217948705,4.081634069221007e-19,-0.0001360544265480712,-0.00027777778450399637,0.0005952381179668009,-0.0011904762359336019,5.2867765096103e-19,4.531522353246055e-19,2.9293056633771532e-18,0.00029761905898340046,1.3008730374584735e-33,1.1150339927491932e-33,-1.5105075372466654e-19,2.5000992416914206e-33,1.0000396966765682e-33,-1.5105075372466654e-19,3.884163483725526e-34,-1.2947206723560157e-19,-2.64338825480515e-19,0.0008333333535119891,-0.00041666667675599456,-0.00041666667675599456,2.1147105004465433e-19,1.3670093302555202e-18,1.3008730374584735e-33,0.00020833333837799728,5.203491966162902e-34,-7.04903478607686e-20,1.1667130406796604e-33,4.6668521627186416e-34,-7.04903478607686e-20,1.8126096486974528e-34,-6.042030278233632e-20,-1.2335811683428072e-19,0.0007142857066355646,-0.0003571428533177823,2.1147105004465433e-19,-0.0002857142826542258,1.1717222239918307e-18,1.1150339927491932e-33,5.203491966162902e-34,0.0001428571413271129,-6.042030278233632e-20,1.0000396966765682e-33,4.0001590622127614e-34,-6.042030278233632e-20,1.5536654623668325e-34,-5.1788828186710334e-20,-1.0573552502232717e-19,0.0005555555690079927,-0.00027777778450399637,1.350514650907571e-19,1.945185779264453e-19,-0.00015873015217948705,-1.5105075372466654e-19,-7.04903478607686e-20,-6.042030278233632e-20,7.936507608974352e-05,4.81482486096809e-35,9.027796614315168e-36,1.6940658945086007e-21,1.3936353123324227e-36,-2.1050851554202378e-20,-2.7299979342706375e-22,0.0005952381179668009,-1.5002442078305269e-32,-0.0011904762359336019,4.531522353246055e-19,2.6272042076266084e-18,2.5000992416914206e-33,1.1667130406796604e-33,1.0000396966765682e-33,4.81482486096809e-35,0.00029761905898340046,1.0000396966765682e-33,-1.5105075372466654e-19,3.884163483725526e-34,-1.2947206723560157e-19,-2.64338825480515e-19,0.0007142857066355646,-5.9651662040766726e-33,-0.0003571428533177823,-0.0002857142826542258,1.0508816830506434e-18,1.0000396966765682e-33,4.6668521627186416e-34,4.0001590622127614e-34,9.027796614315168e-36,1.0000396966765682e-33,0.0001428571413271129,-6.042030278233632e-20,1.5536654623668325e-34,-5.1788828186710334e-20,-1.0573552502232717e-19,0.0005555555690079927,8.903052466387869e-19,-0.00027777778450399637,3.1283197869870652e-19,-0.00015873015217948705,-1.5105075372466654e-19,-7.04903478607686e-20,-6.042030278233632e-20,1.6940658945086007e-21,-1.5105075372466654e-19,-6.042030278233632e-20,7.936507608974352e-05,-4.890056499420716e-36,-2.0328790734103208e-20,2.940642627652177e-21,0.00044642857392318547,-2.309481445104063e-33,-2.287488496813155e-33,-0.0006696428754366934,4.081634069221007e-19,3.884163483725526e-34,1.8126096486974528e-34,1.5536654623668325e-34,1.3936353123324227e-36,3.884163483725526e-34,1.5536654623668325e-34,-4.890056499420716e-36,0.00013392856635618955,1.7051472066599702e-20,-4.9563528162009426e-20,0.0004761904710903764,8.418789399538473e-19,8.393517480861329e-19,-0.00019047618843615055,-0.0001360544265480712,-1.2947206723560157e-19,-6.042030278233632e-20,-5.1788828186710334e-20,-2.1050851554202378e-20,-1.2947206723560157e-19,-5.1788828186710334e-20,-2.0328790734103208e-20,1.7051472066599702e-20,5.442176916403696e-05,-9.071347919631523e-20,0.00027777778450399637,1.5693658322268175e-18,1.5581180370524746e-18,9.88256976247596e-19,-0.00027777778450399637,-2.64338825480515e-19,-1.2335811683428072e-19,-1.0573552502232717e-19,-2.7299979342706375e-22,-2.64338825480515e-19,-1.0573552502232717e-19,2.940642627652177e-21,-4.9563528162009426e-20,-9.071347919631523e-20,3.968253804487176e-05,5.0,5.0,7.0,3.0,0.06964852660894394,-0.018299318850040436,-0.018299318850040436,-0.014047618955373764,-0.026428570970892906,0.0013605442363768816,0.0019047618843615055,0.0014285714132711291,0.0028571428265422583,0.0013605442363768816,0.0014285714132711291,0.0028571428265422583,0.0007936508045531809,0.002142857061699033,0.0028571428265422583,-0.018299318850040436,0.017312925308942795,0.0019047618843615055,0.0014285714132711291,0.0028571428265422583,-0.002721088472753763,-0.0009523809421807528,-0.0007142857066355646,-0.0014285714132711291,-0.0,0.0,0.0,4.0657581468206416e-20,-0.0,-0.0,-0.018299318850040436,0.0019047618843615055,0.017312925308942795,0.0014285714132711291,0.0028571428265422583,-0.0,-0.0009523809421807528,-0.0,-0.0,-0.002721088472753763,-0.0007142857066355646,-0.0014285714132711291,0.0,0.0,-0.0,-0.014047618955373764,0.0014285714132711291,0.0014285714132711291,0.008809523656964302,0.002142857061699033,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0009523809421807528,-0.0007142857066355646,-0.0,-0.026428570970892906,0.0028571428265422583,0.0028571428265422583,0.002142857061699033,0.054999999701976776,-0.0,-0.0,-0.0,-0.0028571428265422583,-0.0,-0.0,-0.0028571428265422583,-0.0,-0.002142857061699033,-0.017142856493592262,0.0013605442363768816,-0.002721088472753763,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0019047618843615055,-0.0009523809421807528,-0.0009523809421807528,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0,-0.0028571428265422583,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,0.0,-0.0007142857066355646,-0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,0.0,-0.0014285714132711291,-0.0,-0.0028571428265422583,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,0.0007936508045531809,4.0657581468206416e-20,0.0,-0.0009523809421807528,-0.0,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,0.00015873015217948705,0.0,-0.0,0.002142857061699033,-0.0,0.0,-0.0007142857066355646,-0.002142857061699033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0007142857066355646,-0.0,0.0028571428265422583,-0.0,-0.0,-0.0,-0.017142856493592262,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008571428246796131,5.0,5.0,7.0,4.0,0.056057821959257126,-0.01415306143462658,-0.01415306143462658,-0.010857142508029938,-0.01671428605914116,0.0010204081190750003,0.0014285714132711291,0.0010714285308495164,0.001714285695925355,0.0010204081190750003,0.0010714285308495164,0.001714285695925355,0.0005952381179668009,0.0012857143301516771,0.0014285714132711291,-0.01415306143462658,0.013198979198932648,0.0014285714132711291,0.0010714285308495164,0.001714285695925355,-0.0020408162381500006,-0.0007142857066355646,-0.0005357142654247582,-0.0008571428479626775,-0.0,1.0164395367051604e-20,0.0,4.0657581468206416e-20,2.0328790734103208e-20,5.146360185648054e-35,-0.01415306143462658,0.0014285714132711291,0.013198979198932648,0.0010714285308495164,0.001714285695925355,-0.0,-0.0007142857066355646,1.0164395367051604e-20,-0.0,-0.0020408162381500006,-0.0005357142654247582,-0.0008571428479626775,1.7201283845938432e-20,0.0,1.282402347787209e-35,-0.010857142508029938,0.0010714285308495164,0.0010714285308495164,0.00671428581699729,0.0012857143301516771,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0007142857066355646,-0.00042857142398133874,-7.137148003630569e-19,-0.01671428605914116,0.001714285695925355,0.001714285695925355,0.0012857143301516771,0.021142857149243355,-0.0,-0.0,2.0328790734103208e-20,-0.0011428571306169033,-0.0,1.282402347787209e-35,-0.0011428571306169033,-0.0,-0.0008571428479626775,-0.004285714123398066,0.0010204081190750003,-0.0020408162381500006,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0005357142654247582,1.0164395367051604e-20,-0.0003571428533177823,2.0328790734103208e-20,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-1.3552527156068805e-20,-6.776263578034403e-21,-1.7154533473850303e-35,0.001714285695925355,-0.0008571428479626775,-0.0,-0.0,-0.0011428571306169033,-0.0,-0.0,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,1.0164395367051604e-20,-0.0005357142654247582,-0.0003571428533177823,1.282402347787209e-35,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,0.00017857142665889114,-0.0,-5.733761551244e-21,-0.0,-4.274674373046561e-36,0.001714285695925355,0.0,-0.0008571428479626775,-0.0,-0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,0.0005952381179668009,4.0657581468206416e-20,1.7201283845938432e-20,-0.0007142857066355646,-0.0,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,-5.733761551244e-21,-0.0,0.0001190476177725941,-1.1467523102488e-20,-1.0612782572646683e-35,0.0012857143301516771,2.0328790734103208e-20,0.0,-0.00042857142398133874,-0.0008571428479626775,-0.0,-0.0,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.0,-1.1467523102488e-20,0.0002857142826542258,4.758098496757752e-19,0.0014285714132711291,5.146360185648054e-35,1.282402347787209e-35,-7.137148003630569e-19,-0.004285714123398066,-0.0,-0.0,-1.7154533473850303e-35,-0.0,-0.0,-4.274674373046561e-36,-0.0,-1.0612782572646683e-35,4.758098496757752e-19,0.0014285714132711291,5.0,5.0,7.0,5.0,0.0469931960105896,-0.011551020666956902,-0.011551020666956902,-0.008857143111526966,-0.011551020666956902,0.0008163265301845968,0.0011428571306169033,0.0008571428479626775,0.0011428571306169033,0.0008163265301845968,0.0008571428479626775,0.0011428571306169033,0.0004761904710903764,0.0008571428479626775,0.0008163265301845968,-0.011551020666956902,0.010673468932509422,0.0011428571306169033,0.0008571428479626775,0.0011428571306169033,-0.0016326530603691936,-0.0005714285653084517,-0.00042857142398133874,-0.0005714285653084517,-3.1073298204495907e-18,2.727387929022027e-19,-1.8307351568564496e-18,1.0914047442717334e-18,-4.1002202359737054e-20,-4.194895102510583e-18,-0.011551020666956902,0.0011428571306169033,0.010673468932509422,0.0008571428479626775,0.0011428571306169033,-4.680881496768656e-18,-0.0005714285653084517,1.89735376953789e-20,-4.8432192943541866e-33,-0.0016326530603691936,-0.00042857142398133874,-0.0005714285653084517,1.1559355853988327e-18,-4.1002202359737054e-20,-4.194895102510583e-18,-0.008857143111526966,0.0008571428479626775,0.0008571428479626775,0.005428571254014969,0.0008571428479626775,1.2977244753529254e-18,2.410769918810271e-18,-0.0002857142826542258,-4.238605032137898e-19,1.2977244753529254e-18,-0.0002857142826542258,-6.776257374179809e-19,-0.0005714285653084517,-0.0002857142826542258,-5.681832076503761e-18,-0.011551020666956902,0.0011428571306169033,0.0011428571306169033,0.0008571428479626775,0.010673468932509422,-4.680881496768656e-18,3.806478900803778e-19,-2.549362996467765e-18,-0.0005714285653084517,-3.955837837531226e-18,-2.2955978398117566e-18,-0.0005714285653084517,-3.0086610286472748e-18,-0.00042857142398133874,-0.0016326530603691936,0.0008163265301845968,-0.0016326530603691936,-4.680881496768656e-18,1.2977244753529254e-18,-4.680881496768656e-18,0.0004081632650922984,4.242540860890002e-19,-5.976430978249056e-20,4.242540860890002e-19,7.768324551123977e-19,6.777198803650663e-34,3.6252180376932087e-19,-1.5105075372466654e-19,2.046300565911438e-34,7.768324551123977e-19,0.0011428571306169033,-0.0005714285653084517,-0.0005714285653084517,2.410769918810271e-18,3.806478900803778e-19,4.242540860890002e-19,0.0002857142826542258,-1.268826300267926e-19,2.527473795974935e-34,1.3837625624292263e-33,-1.268826300267926e-19,7.588703969011343e-35,-2.537652600535852e-19,-1.268826300267926e-19,-1.7157831458708892e-33,0.0008571428479626775,-0.00042857142398133874,1.89735376953789e-20,-0.0002857142826542258,-2.549362996467765e-18,-5.976430978249056e-20,-1.268826300267926e-19,0.0001428571413271129,2.119302516068949e-19,7.462978534500539e-34,-6.3245126997585614e-21,1.268826300267926e-19,6.776263578034403e-21,9.825582188149884e-20,3.6252180376932087e-19,0.0011428571306169033,-0.0005714285653084517,-4.8432192943541866e-33,-4.238605032137898e-19,-0.0005714285653084517,4.242540860890002e-19,2.527473795974935e-34,2.119302516068949e-19,0.0002857142826542258,8.074571714844067e-34,-7.398093226538035e-36,5.650452111721479e-34,-1.5648180798146291e-34,1.4444474582904269e-34,1.3452624592104078e-33,0.0008163265301845968,-3.1073298204495907e-18,-0.0016326530603691936,1.2977244753529254e-18,-3.955837837531226e-18,7.768324551123977e-19,1.3837625624292263e-33,7.462978534500539e-34,8.074571714844067e-34,0.0004081632650922984,-5.976430978249056e-20,4.242540860890002e-19,-1.5105075372466654e-19,3.972230510298674e-34,7.768324551123977e-19,0.0008571428479626775,2.727387929022027e-19,-0.00042857142398133874,-0.0002857142826542258,-2.2955978398117566e-18,6.777198803650663e-34,-1.268826300267926e-19,-6.3245126997585614e-21,-7.398093226538035e-36,-5.976430978249056e-20,0.0001428571413271129,2.119302516068949e-19,-1.4734030260891496e-20,9.825582188149884e-20,3.6252180376932087e-19,0.0011428571306169033,-1.8307351568564496e-18,-0.0005714285653084517,-6.776257374179809e-19,-0.0005714285653084517,3.6252180376932087e-19,7.588703969011343e-35,1.268826300267926e-19,5.650452111721479e-34,4.242540860890002e-19,2.119302516068949e-19,0.0002857142826542258,-3.009265538105056e-34,2.2870418089598426e-34,2.357212393219202e-33,0.0004761904710903764,1.0914047442717334e-18,1.1559355853988327e-18,-0.0005714285653084517,-3.0086610286472748e-18,-1.5105075372466654e-19,-2.537652600535852e-19,6.776263578034403e-21,-1.5648180798146291e-34,-1.5105075372466654e-19,-1.4734030260891496e-20,-3.009265538105056e-34,9.523809421807528e-05,1.902566332178424e-19,5.437826927292842e-19,0.0008571428479626775,-4.1002202359737054e-20,-4.1002202359737054e-20,-0.0002857142826542258,-0.00042857142398133874,2.046300565911438e-34,-1.268826300267926e-19,9.825582188149884e-20,1.4444474582904269e-34,3.972230510298674e-34,9.825582188149884e-20,2.2870418089598426e-34,1.902566332178424e-19,0.0001428571413271129,4.392091238230468e-19,0.0008163265301845968,-4.194895102510583e-18,-4.194895102510583e-18,-5.681832076503761e-18,-0.0016326530603691936,7.768324551123977e-19,-1.7157831458708892e-33,3.6252180376932087e-19,1.3452624592104078e-33,7.768324551123977e-19,3.6252180376932087e-19,2.357212393219202e-33,5.437826927292842e-19,4.392091238230468e-19,0.0004081632650922984,5.0,5.0,7.0,6.0,0.04048752784729004,-0.009761904366314411,-0.009761904366314411,-0.007482993416488171,-0.008469387888908386,0.0006802721181884408,0.0009523809421807528,0.0007142857066355646,0.0008163265301845968,0.0006802721181884408,0.0007142857066355646,0.0008163265301845968,0.00039682540227659047,0.0006122448830865324,0.0005102040595375001,-0.009761904366314411,0.008962584659457207,0.0009523809421807528,0.0007142857066355646,0.0008163265301845968,-0.0013605442363768816,-0.0004761904710903764,-0.0003571428533177823,-0.0004081632650922984,-0.0,3.4819174299332356e-22,9.36718793480012e-21,-5.489181450115045e-22,-5.970592892582022e-20,1.2696672295269884e-20,-0.009761904366314411,0.0009523809421807528,0.008962584659457207,0.0007142857066355646,0.0008163265301845968,-0.0,-0.0004761904710903764,-9.965093534232282e-23,9.904599262398865e-21,-0.0013605442363768816,-0.0003571428533177823,-0.0004081632650922984,-1.9930187068464564e-22,-5.421010862427522e-20,3.412114533784984e-20,-0.007482993416488171,0.0007142857066355646,0.0007142857066355646,0.004557823296636343,0.0006122448830865324,-0.0,-0.0,-0.0002380952355451882,-6.039650841502835e-20,-0.0,-0.0002380952355451882,-5.421010862427522e-20,-0.0004761904710903764,-0.0002040816325461492,-1.2039201517872748e-19,-0.008469387888908386,0.0008163265301845968,0.0008163265301845968,0.0006122448830865324,0.006193877663463354,-0.0,-0.0,-7.006749019328239e-23,-0.00032653060043230653,-0.0,1.2716988303478584e-20,-0.00032653060043230653,-0.0,-0.0002448979648761451,-0.0007653061184100807,0.0006802721181884408,-0.0013605442363768816,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009523809421807528,-0.0004761904710903764,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0003571428533177823,-9.965093534232282e-23,-0.0002380952355451882,-7.006749019328239e-23,-0.0,-0.0,0.0001190476177725941,1.0978362647794601e-22,-0.0,2.8234432416594977e-22,-2.989528123378557e-22,-0.0,-0.0,8.26300685544908e-23,0.0008163265301845968,-0.0004081632650922984,9.904599262398865e-21,-6.039650841502835e-20,-0.00032653060043230653,-0.0,-0.0,1.0978362647794601e-22,0.00016326530021615326,-0.0,-4.780898962938887e-22,-3.3881317890172014e-21,2.1956725295589202e-22,2.388237318591522e-20,-5.177825093774474e-21,0.0006802721181884408,-0.0,-0.0013605442363768816,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,3.4819174299332356e-22,-0.0003571428533177823,-0.0002380952355451882,1.2716988303478584e-20,-0.0,-0.0,2.8234432416594977e-22,-4.780898962938887e-22,-0.0,0.0001190476177725941,-2.989528123378557e-22,5.646886483318995e-22,-1.6940658945086007e-21,-1.1205231723506964e-21,0.0008163265301845968,9.36718793480012e-21,-0.0004081632650922984,-5.421010862427522e-20,-0.00032653060043230653,-0.0,-0.0,-2.989528123378557e-22,-3.3881317890172014e-21,-0.0,-2.989528123378557e-22,0.00016326530021615326,-5.979056246757114e-22,2.371692252312041e-20,-1.2303830166760387e-20,0.00039682540227659047,-5.489181450115045e-22,-1.9930187068464564e-22,-0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,2.1956725295589202e-22,-0.0,5.646886483318995e-22,-5.979056246757114e-22,7.936507608974352e-05,7.297514995326388e-21,-3.0804004063083014e-21,0.0006122448830865324,-5.970592892582022e-20,-5.421010862427522e-20,-0.0002040816325461492,-0.0002448979648761451,-0.0,-0.0,-0.0,2.388237318591522e-20,-0.0,-1.6940658945086007e-21,2.371692252312041e-20,7.297514995326388e-21,8.163265010807663e-05,5.699616278727892e-20,0.0005102040595375001,1.2696672295269884e-20,3.412114533784984e-20,-1.2039201517872748e-19,-0.0007653061184100807,-0.0,-0.0,8.26300685544908e-23,-5.177825093774474e-21,-0.0,-1.1205231723506964e-21,-1.2303830166760387e-20,-3.0804004063083014e-21,5.699616278727892e-20,0.0001530612207716331,5.0,5.0,7.0,7.0,0.03558066114783287,-0.008454810827970505,-0.008454810827970505,-0.006479592062532902,-0.006479592062532902,0.000583090353757143,0.0008163265301845968,0.0006122448830865324,0.0006122448830865324,0.000583090353757143,0.0006122448830865324,0.0006122448830865324,0.0003401360590942204,0.0004591836768668145,0.0003401360590942204,-0.008454810827970505,0.0077259475365281105,0.0008163265301845968,0.0006122448830865324,0.0006122448830865324,-0.001166180707514286,-0.0004081632650922984,-0.0003061224415432662,-0.0003061224415432662,-0.0,-6.61628531275887e-21,-1.4947640364457295e-21,-2.2178455441064142e-20,-5.759824202887956e-21,-2.281788544161324e-20,-0.008454810827970505,0.0008163265301845968,0.0077259475365281105,0.0006122448830865324,0.0006122448830865324,-0.0,-0.0004081632650922984,-6.57696151802314e-21,-1.534087528258872e-21,-0.001166180707514286,-0.0003061224415432662,-0.0003061224415432662,-1.4257749317316587e-21,5.082197683525802e-21,-3.068175056517744e-21,-0.006479592062532902,0.0006122448830865324,0.0006122448830865324,0.0039285714738070965,0.0004591836768668145,-0.0,-0.0,-0.0002040816325461492,-6.3245126997585614e-21,-0.0,-0.0002040816325461492,-3.3881317890172014e-21,-0.0004081632650922984,-0.0001530612207716331,2.9885060120808802e-21,-0.006479592062532902,0.0006122448830865324,0.0006122448830865324,0.0004591836768668145,0.0039285714738070965,-0.0,-0.0,-1.276592766893846e-20,-0.0002040816325461492,-0.0,-8.666947234531304e-21,-0.0002040816325461492,-1.3552527156068805e-20,-0.0001530612207716331,-0.0004081632650922984,0.000583090353757143,-0.001166180707514286,-0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,-0.0004081632650922984,-0.0004081632650922984,-0.0,-0.0,-0.0,0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0003061224415432662,-6.57696151802314e-21,-0.0002040816325461492,-1.276592766893846e-20,-0.0,-0.0,0.0001020408162730746,3.082774259166067e-22,-0.0,1.6940658945086007e-21,4.982546956442758e-22,6.776263578034403e-21,1.6940658945086007e-21,9.339485058318479e-22,0.0006122448830865324,-0.0003061224415432662,-1.534087528258872e-21,-6.3245126997585614e-21,-0.0002040816325461492,-0.0,-0.0,3.082774259166067e-22,0.0001020408162730746,-0.0,5.11362509419624e-22,-0.0,6.165548518332134e-22,2.258754643814696e-22,6.6720133753553624e-21,0.000583090353757143,-0.0,-0.001166180707514286,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-6.61628531275887e-21,-0.0003061224415432662,-0.0002040816325461492,-8.666947234531304e-21,-0.0,-0.0,1.6940658945086007e-21,5.11362509419624e-22,-0.0,0.0001020408162730746,4.982546956442758e-22,-5.212510638822994e-22,-0.0,1.022725018839248e-21,0.0006122448830865324,-1.4947640364457295e-21,-0.0003061224415432662,-3.3881317890172014e-21,-0.0002040816325461492,-0.0,-0.0,4.982546956442758e-22,-0.0,-0.0,4.982546956442758e-22,0.0001020408162730746,9.965093912885516e-22,-1.6940658945086007e-21,-0.0,0.0003401360590942204,-2.2178455441064142e-20,-1.4257749317316587e-21,-0.0004081632650922984,-1.3552527156068805e-20,-0.0,-0.0,6.776263578034403e-21,6.165548518332134e-22,-0.0,-5.212510638822994e-22,9.965093912885516e-22,6.80272132740356e-05,2.866880775622e-21,2.934291704141747e-22,0.0004591836768668145,-5.759824202887956e-21,5.082197683525802e-21,-0.0001530612207716331,-0.0001530612207716331,-0.0,-0.0,1.6940658945086007e-21,2.258754643814696e-22,-0.0,-0.0,-1.6940658945086007e-21,2.866880775622e-21,5.10204081365373e-05,-2.93638091074136e-21,0.0003401360590942204,-2.281788544161324e-20,-3.068175056517744e-21,2.9885060120808802e-21,-0.0004081632650922984,-0.0,-0.0,9.339485058318479e-22,6.6720133753553624e-21,-0.0,1.022725018839248e-21,-0.0,2.934291704141747e-22,-2.93638091074136e-21,6.80272132740356e-05,5.0,5.0,7.0,8.0,0.03174319863319397,-0.007457483094185591,-0.007457483094185591,-0.0057142856530845165,-0.0051190475933253765,0.0005102040595375001,0.0007142857066355646,0.0005357142654247582,0.0004761904710903764,0.0005102040595375001,0.0005357142654247582,0.0004761904710903764,0.00029761905898340046,0.0003571428533177823,0.0002380952355451882,-0.007457483094185591,0.006789966020733118,0.0007142857066355646,0.0005357142654247582,0.0004761904710903764,-0.0010204081190750003,-0.0003571428533177823,-0.0002678571327123791,-0.0002380952355451882,-0.0,-2.336452772922407e-22,6.003968903284326e-21,1.0398422049125188e-20,2.3182319893753936e-20,3.564532497508753e-21,-0.007457483094185591,0.0007142857066355646,0.006789966020733118,0.0005357142654247582,0.0004761904710903764,-0.0,-0.0003571428533177823,8.719456921339337e-23,5.728963257456339e-21,-0.0010204081190750003,-0.0002678571327123791,-0.0002380952355451882,1.7438913842678674e-22,2.668153783851046e-20,9.941781192491837e-21,-0.0057142856530845165,0.0005357142654247582,0.0005357142654247582,0.0034523808863013983,0.0003571428533177823,-0.0,-0.0,-0.00017857142665889114,2.3550292481717857e-20,-0.0,-0.00017857142665889114,2.710505431213761e-20,-0.0003571428533177823,-0.0001190476177725941,4.7605714436718585e-20,-0.0051190475933253765,0.0004761904710903764,0.0004761904710903764,0.0003571428533177823,0.002653061179444194,-0.0,-0.0,6.319534268005471e-21,-0.0001360544265480712,-0.0,-9.682003667091139e-22,-0.0001360544265480712,-0.0,-0.0001020408162730746,-0.0002380952355451882,0.0005102040595375001,-0.0010204081190750003,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0003571428533177823,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005357142654247582,-0.0002678571327123791,8.719456921339337e-23,-0.00017857142665889114,6.319534268005471e-21,-0.0,-0.0,8.928571332944557e-05,-3.343232590460633e-23,-0.0,-0.0,-2.4912733835580705e-23,-3.3881317890172014e-21,-0.0,-8.192435358868008e-22,0.0004761904710903764,-0.0002380952355451882,5.728963257456339e-21,2.3550292481717857e-20,-0.0001360544265480712,-0.0,-0.0,-3.343232590460633e-23,6.80272132740356e-05,-0.0,6.675578900429217e-23,-1.6940658945086007e-21,-6.686465180921267e-23,-6.623519911944441e-21,-3.1622911859768553e-22,0.0005102040595375001,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005357142654247582,-2.336452772922407e-22,-0.0002678571327123791,-0.00017857142665889114,-9.682003667091139e-22,-0.0,-0.0,-0.0,6.675578900429217e-23,-0.0,8.928571332944557e-05,-2.4912733835580705e-23,-0.0,-0.0,1.1682263864612034e-22,0.0004761904710903764,6.003968903284326e-21,-0.0002380952355451882,2.710505431213761e-20,-0.0001360544265480712,-0.0,-0.0,-2.4912733835580705e-23,-1.6940658945086007e-21,-0.0,-2.4912733835580705e-23,6.80272132740356e-05,-4.982546767116141e-23,-7.623296525288703e-21,-2.940642627652177e-21,0.00029761905898340046,1.0398422049125188e-20,1.7438913842678674e-22,-0.0003571428533177823,-0.0,-0.0,-0.0,-3.3881317890172014e-21,-6.686465180921267e-23,-0.0,-0.0,-4.982546767116141e-23,5.952380888629705e-05,0.0,-1.2330964855130989e-23,0.0003571428533177823,2.3182319893753936e-20,2.668153783851046e-20,-0.0001190476177725941,-0.0001020408162730746,-0.0,-0.0,-0.0,-6.623519911944441e-21,-0.0,-0.0,-7.623296525288703e-21,0.0,3.40136066370178e-05,-1.3177349049487723e-20,0.0002380952355451882,3.564532497508753e-21,9.941781192491837e-21,4.7605714436718585e-20,-0.0002380952355451882,-0.0,-0.0,-8.192435358868008e-22,-3.1622911859768553e-22,-0.0,1.1682263864612034e-22,-2.940642627652177e-21,-1.2330964855130989e-23,-1.3177349049487723e-20,3.40136066370178e-05,5.0,5.0,8.0,3.0,0.062261905521154404,-0.016150793060660362,-0.016150793060660362,-0.011111111380159855,-0.023333333432674408,0.0011904762359336019,0.0016666667070239782,0.0011111111380159855,0.0024999999441206455,0.0011904762359336019,0.0011111111380159855,0.0024999999441206455,0.0005555555690079927,0.0016666667070239782,0.0024999999441206455,-0.016150793060660362,0.015218254178762436,0.0016666667070239782,0.0011111111380159855,0.0024999999441206455,-0.0023809524718672037,-0.0008333333535119891,-0.0005555555690079927,-0.0012499999720603228,3.2526065174565133e-18,1.6263032587282567e-19,3.686287386450715e-18,-1.3552527156068805e-18,-7.589415207398531e-19,3.0357660829594124e-18,-0.016150793060660362,0.0016666667070239782,0.015218254178762436,0.0011111111380159855,0.0024999999441206455,2.4944899025825287e-18,-0.0008333333535119891,1.8973538018496328e-19,1.5178830414797062e-18,-0.0023809524718672037,-0.0005555555690079927,-0.0012499999720603228,-1.8295911660692887e-18,-1.2468324983583301e-18,3.469446951953614e-18,-0.011111111380159855,0.0011111111380159855,0.0011111111380159855,0.0059523810632526875,0.0016666667070239782,-1.635649882662223e-19,-1.398119489696063e-18,-0.0003174603043589741,-6.505213034913027e-19,-6.844989362240488e-19,-0.0003174603043589741,-3.2526065174565133e-19,-0.0005555555690079927,-0.0004761904710903764,1.734723475976807e-18,-0.023333333432674408,0.0024999999441206455,0.0024999999441206455,0.0016666667070239782,0.04833333194255829,3.496552006265752e-18,3.0133124720268136e-18,1.826911100884617e-18,-0.0024999999441206455,2.0958283452062188e-18,1.9808016432003604e-18,-0.0024999999441206455,-1.0842021724855044e-18,-0.0016666667070239782,-0.014999999664723873,0.0011904762359336019,-0.0023809524718672037,2.4944899025825287e-18,-1.635649882662223e-19,3.496552006265752e-18,0.0005952381179668009,-3.1185670690711236e-19,-6.461916850688353e-19,-4.1175592987060093e-19,-3.4218481877727456e-19,2.0424979560880908e-20,-4.957410767279701e-19,1.8973538018496328e-19,8.131516293641283e-20,-8.944667923005412e-19,0.0016666667070239782,-0.0008333333535119891,-0.0008333333535119891,-1.398119489696063e-18,3.0133124720268136e-18,-3.1185670690711236e-19,0.00041666667675599456,4.0657581468206416e-20,-2.1706271343733037e-19,-6.854875721524145e-19,-6.84913366635635e-20,-4.1050528448320904e-19,1.7618285302889447e-19,6.776263578034403e-20,-9.215718466126788e-19,0.0011111111380159855,-0.0005555555690079927,1.8973538018496328e-19,-0.0003174603043589741,1.826911100884617e-18,-6.461916850688353e-19,4.0657581468206416e-20,0.00015873015217948705,-2.432381459879291e-19,-4.181098708939001e-21,-1.4317026219001067e-20,-1.6919064361219544e-19,8.131516293641283e-20,-4.743384504624082e-20,-3.3881317890172014e-19,0.0024999999441206455,-0.0012499999720603228,1.5178830414797062e-18,-6.505213034913027e-19,-0.0024999999441206455,-4.1175592987060093e-19,-2.1706271343733037e-19,-2.432381459879291e-19,0.0012499999720603228,-2.574980159653073e-19,-3.483123788846113e-20,1.0546675594673279e-19,1.6263032587282567e-19,2.981555974335137e-19,3.63207727782644e-18,0.0011904762359336019,3.2526065174565133e-18,-0.0023809524718672037,-6.844989362240488e-19,2.0958283452062188e-18,-3.4218481877727456e-19,-6.854875721524145e-19,-4.181098708939001e-21,-2.574980159653073e-19,0.0005952381179668009,-6.710196662509792e-19,-5.439223311564408e-19,2.710505431213761e-19,1.8973538018496328e-19,-5.149960319306146e-19,0.0011111111380159855,1.6263032587282567e-19,-0.0005555555690079927,-0.0003174603043589741,1.9808016432003604e-18,2.0424979560880908e-20,-6.84913366635635e-20,-1.4317026219001067e-20,-3.483123788846113e-20,-6.710196662509792e-19,0.00015873015217948705,-3.3881317890172014e-19,8.131516293641283e-20,-1.3552527156068805e-20,-5.353248226647178e-19,0.0024999999441206455,3.686287386450715e-18,-0.0012499999720603228,-3.2526065174565133e-19,-0.0024999999441206455,-4.957410767279701e-19,-4.1050528448320904e-19,-1.6919064361219544e-19,1.0546675594673279e-19,-5.439223311564408e-19,-3.3881317890172014e-19,0.0012499999720603228,8.131516293641283e-20,3.2526065174565133e-19,1.6534083130403943e-18,0.0005555555690079927,-1.3552527156068805e-18,-1.8295911660692887e-18,-0.0005555555690079927,-1.0842021724855044e-18,1.8973538018496328e-19,1.7618285302889447e-19,8.131516293641283e-20,1.6263032587282567e-19,2.710505431213761e-19,8.131516293641283e-20,8.131516293641283e-20,7.936507608974352e-05,5.421010862427522e-20,1.0842021724855044e-19,0.0016666667070239782,-7.589415207398531e-19,-1.2468324983583301e-18,-0.0004761904710903764,-0.0016666667070239782,8.131516293641283e-20,6.776263578034403e-20,-4.743384504624082e-20,2.981555974335137e-19,1.8973538018496328e-19,-1.3552527156068805e-20,3.2526065174565133e-19,5.421010862427522e-20,0.0004761904710903764,-6.533536733062608e-19,0.0024999999441206455,3.0357660829594124e-18,3.469446951953614e-18,1.734723475976807e-18,-0.014999999664723873,-8.944667923005412e-19,-9.215718466126788e-19,-3.3881317890172014e-19,3.63207727782644e-18,-5.149960319306146e-19,-5.353248226647178e-19,1.6534083130403943e-18,1.0842021724855044e-19,-6.533536733062608e-19,0.007499999832361937,5.0,5.0,8.0,4.0,0.05007142946124077,-0.012488095089793205,-0.012488095089793205,-0.00858333334326744,-0.014750000089406967,0.0008928571478463709,0.0012499999720603228,0.0008333333535119891,0.001500000013038516,0.0008928571478463709,0.0008333333535119891,0.001500000013038516,0.00041666667675599456,0.0010000000474974513,0.0012499999720603228,-0.012488095089793205,0.011601190082728863,0.0012499999720603228,0.0008333333535119891,0.001500000013038516,-0.0017857142956927419,-0.0006249999860301614,-0.00041666667675599456,-0.000750000006519258,1.734723475976807e-18,-3.2526065174565133e-19,1.0842021724855044e-19,-9.75781955236954e-19,-1.2468324983583301e-18,-4.553649124439119e-18,-0.012488095089793205,0.0012499999720603228,0.011601190082728863,0.0008333333535119891,0.001500000013038516,2.3647974951112583e-18,-0.0006249999860301614,5.89534931288993e-19,-3.2526065174565133e-19,-0.0017857142956927419,-0.00041666667675599456,-0.000750000006519258,-1.3010426069826053e-18,-1.328147661294743e-18,-3.0357660829594124e-18,-0.00858333334326744,0.0008333333535119891,0.0008333333535119891,0.004535714164376259,0.0010000000474974513,-2.01301763972231e-18,-1.1818201347171483e-18,-0.0002380952355451882,-9.75781955236954e-19,-2.154232259536138e-18,-0.0002380952355451882,-5.963111948670274e-19,-0.00041666667675599456,-0.0002857142826542258,-1.734723475976807e-18,-0.014750000089406967,0.001500000013038516,0.001500000013038516,0.0010000000474974513,0.018583333119750023,-3.943785402416022e-18,-1.895139025759522e-18,-7.62695679949925e-20,-0.0010000000474974513,-4.2450317602083405e-18,-1.0260603710121881e-18,-0.0010000000474974513,-5.963111948670274e-19,-0.0006666666595265269,-0.0037499999161809683,0.0008928571478463709,-0.0017857142956927419,2.3647974951112583e-18,-2.01301763972231e-18,-3.943785402416022e-18,0.00044642857392318547,-4.609226795260491e-20,3.0720397105786644e-19,9.68181509576087e-19,-4.912591019764281e-19,5.328480613493879e-21,-1.555493625613391e-19,1.6263032587282567e-19,1.7618285302889447e-19,5.421010862427522e-19,0.0012499999720603228,-0.0006249999860301614,-0.0006249999860301614,-1.1818201347171483e-18,-1.895139025759522e-18,-4.609226795260491e-20,0.0003124999930150807,2.0328790734103208e-20,-8.706828002931443e-21,2.9592655247783645e-19,1.3794848424046508e-19,2.5069990964922267e-19,1.2197274440461925e-19,1.0842021724855044e-19,3.2526065174565133e-19,0.0008333333535119891,-0.00041666667675599456,5.89534931288993e-19,-0.0002380952355451882,-7.62695679949925e-20,3.0720397105786644e-19,2.0328790734103208e-20,0.0001190476177725941,6.660800796749364e-20,-1.0803710984031622e-19,-5.61151774686123e-21,-9.7591731558938e-20,2.710505431213761e-20,6.776263578034403e-21,4.743384504624082e-20,0.001500000013038516,-0.000750000006519258,-3.2526065174565133e-19,-9.75781955236954e-19,-0.0010000000474974513,9.68181509576087e-19,-8.706828002931443e-21,6.660800796749364e-20,0.0005000000237487257,-4.0657581468206416e-20,3.89481610335773e-20,2.292274124712942e-19,5.421010862427522e-20,2.236166980751353e-19,8.334804200982315e-19,0.0008928571478463709,1.734723475976807e-18,-0.0017857142956927419,-2.154232259536138e-18,-4.2450317602083405e-18,-4.912591019764281e-19,2.9592655247783645e-19,-1.0803710984031622e-19,-4.0657581468206416e-20,0.00044642857392318547,3.6995135908551317e-19,1.2899219908274424e-18,1.7618285302889447e-19,2.1006417091906648e-19,3.049318610115481e-19,0.0008333333535119891,-3.2526065174565133e-19,-0.00041666667675599456,-0.0002380952355451882,-1.0260603710121881e-18,5.328480613493879e-21,1.3794848424046508e-19,-5.61151774686123e-21,3.89481610335773e-20,3.6995135908551317e-19,0.0001190476177725941,2.0328790734103208e-19,4.0657581468206416e-20,4.743384504624082e-20,1.1519648082658485e-19,0.001500000013038516,1.0842021724855044e-19,-0.000750000006519258,-5.963111948670274e-19,-0.0010000000474974513,-1.555493625613391e-19,2.5069990964922267e-19,-9.7591731558938e-20,2.292274124712942e-19,1.2899219908274424e-18,2.0328790734103208e-19,0.0005000000237487257,2.710505431213761e-20,2.710505431213761e-20,3.3881317890172014e-19,0.00041666667675599456,-9.75781955236954e-19,-1.3010426069826053e-18,-0.00041666667675599456,-5.963111948670274e-19,1.6263032587282567e-19,1.2197274440461925e-19,2.710505431213761e-20,5.421010862427522e-20,1.7618285302889447e-19,4.0657581468206416e-20,2.710505431213761e-20,5.952380888629705e-05,2.710505431213761e-20,8.131516293641283e-20,0.0010000000474974513,-1.2468324983583301e-18,-1.328147661294743e-18,-0.0002857142826542258,-0.0006666666595265269,1.7618285302889447e-19,1.0842021724855044e-19,6.776263578034403e-21,2.236166980751353e-19,2.1006417091906648e-19,4.743384504624082e-20,2.710505431213761e-20,2.710505431213761e-20,0.00019047618843615055,4.820772937795129e-19,0.0012499999720603228,-4.553649124439119e-18,-3.0357660829594124e-18,-1.734723475976807e-18,-0.0037499999161809683,5.421010862427522e-19,3.2526065174565133e-19,4.743384504624082e-20,8.334804200982315e-19,3.049318610115481e-19,1.1519648082658485e-19,3.3881317890172014e-19,8.131516293641283e-20,4.820772937795129e-19,0.0012499999720603228,5.0,5.0,8.0,5.0,0.041952382773160934,-0.010190475732088089,-0.010190475732088089,-0.007000000216066837,-0.010190475732088089,0.0007142857066355646,0.0010000000474974513,0.0006666666595265269,0.0010000000474974513,0.0007142857066355646,0.0006666666595265269,0.0010000000474974513,0.00033333332976326346,0.0006666666595265269,0.0007142857066355646,-0.010190475732088089,0.009380952455103397,0.0010000000474974513,0.0006666666595265269,0.0010000000474974513,-0.0014285714132711291,-0.0005000000237487257,-0.00033333332976326346,-0.0005000000237487257,4.0115480381963664e-18,1.3552527156068805e-18,1.8973538018496328e-18,1.8973538018496328e-18,1.6805133673525319e-18,2.710505431213761e-18,-0.010190475732088089,0.0010000000474974513,0.009380952455103397,0.0006666666595265269,0.0010000000474974513,3.924700277732893e-18,-0.0005000000237487257,6.844026213814747e-19,1.3010426069826053e-18,-0.0014285714132711291,-0.00033333332976326346,-0.0005000000237487257,1.7957098481791167e-18,1.0299920638612292e-18,-5.421010862427522e-19,-0.007000000216066837,0.0006666666595265269,0.0006666666595265269,0.003666666569188237,0.0006666666595265269,3.604972223514302e-18,2.075491075870837e-18,-0.00019047618843615055,8.131516293641283e-19,3.2199744490864495e-18,-0.00019047618843615055,6.505213034913027e-19,-0.00033333332976326346,-0.00019047618843615055,1.0842021724855044e-19,-0.010190475732088089,0.0010000000474974513,0.0010000000474974513,0.0006666666595265269,0.009380952455103397,4.323256162785949e-18,1.886353333678443e-18,-2.4678623382789873e-19,-0.0005000000237487257,1.2050615317856273e-18,-4.512006060668632e-19,-0.0005000000237487257,6.505213034913027e-19,-0.00033333332976326346,-0.0014285714132711291,0.0007142857066355646,-0.0014285714132711291,3.924700277732893e-18,3.604972223514302e-18,4.323256162785949e-18,0.0003571428533177823,-8.832786446031815e-20,-1.8258949612008838e-19,-1.1665801849608655e-19,-5.572092816370918e-19,-2.2106383775903765e-19,-3.0339170240976267e-19,-2.981555974335137e-19,-2.846030702774449e-19,-5.827586677109586e-19,0.0010000000474974513,-0.0005000000237487257,-0.0005000000237487257,2.075491075870837e-18,1.886353333678443e-18,-8.832786446031815e-20,0.0002500000118743628,-9.486769009248164e-20,-1.4410128628118178e-19,-5.068001196262861e-19,-1.568139795462649e-19,-2.1194908289052755e-19,-1.6940658945086007e-19,-1.3552527156068805e-19,-1.5585406229479126e-19,0.0006666666595265269,-0.00033333332976326346,6.844026213814747e-19,-0.00019047618843615055,-2.4678623382789873e-19,-1.8258949612008838e-19,-9.486769009248164e-20,9.523809421807528e-05,8.258800649102441e-20,-1.0031687162464542e-19,-1.1943157609260959e-20,-1.3173264037419675e-20,-3.3881317890172014e-20,-2.371692252312041e-20,4.404571325722362e-20,0.0010000000474974513,-0.0005000000237487257,1.3010426069826053e-18,8.131516293641283e-19,-0.0005000000237487257,-1.1665801849608655e-19,-1.4410128628118178e-19,8.258800649102441e-20,0.0002500000118743628,-1.4907779871675686e-19,-5.0250265785013167e-20,-8.33856024719816e-20,-7.453889935837843e-20,-8.470329472543003e-20,-6.776263578034403e-21,0.0007142857066355646,4.0115480381963664e-18,-0.0014285714132711291,3.2199744490864495e-18,1.2050615317856273e-18,-5.572092816370918e-19,-5.068001196262861e-19,-1.0031687162464542e-19,-1.4907779871675686e-19,0.0003571428533177823,-3.831644836964938e-19,-2.1477550734483296e-19,-2.574980159653073e-19,-1.5246593050577406e-19,1.3552527156068805e-20,0.0006666666595265269,1.3552527156068805e-18,-0.00033333332976326346,-0.00019047618843615055,-4.512006060668632e-19,-2.2106383775903765e-19,-1.568139795462649e-19,-1.1943157609260959e-20,-5.0250265785013167e-20,-3.831644836964938e-19,9.523809421807528e-05,4.404571325722362e-20,-4.0657581468206416e-20,-5.082197683525802e-21,1.1011428314305904e-19,0.0010000000474974513,1.8973538018496328e-18,-0.0005000000237487257,6.505213034913027e-19,-0.0005000000237487257,-3.0339170240976267e-19,-2.1194908289052755e-19,-1.3173264037419675e-20,-8.33856024719816e-20,-2.1477550734483296e-19,4.404571325722362e-20,0.0002500000118743628,-8.131516293641283e-20,-4.0657581468206416e-20,2.1345230270808369e-19,0.00033333332976326346,1.8973538018496328e-18,1.7957098481791167e-18,-0.00033333332976326346,6.505213034913027e-19,-2.981555974335137e-19,-1.6940658945086007e-19,-3.3881317890172014e-20,-7.453889935837843e-20,-2.574980159653073e-19,-4.0657581468206416e-20,-8.131516293641283e-20,4.761904710903764e-05,-2.0328790734103208e-20,-6.776263578034403e-20,0.0006666666595265269,1.6805133673525319e-18,1.0299920638612292e-18,-0.00019047618843615055,-0.00033333332976326346,-2.846030702774449e-19,-1.3552527156068805e-19,-2.371692252312041e-20,-8.470329472543003e-20,-1.5246593050577406e-19,-5.082197683525802e-21,-4.0657581468206416e-20,-2.0328790734103208e-20,9.523809421807528e-05,4.550000986519121e-20,0.0007142857066355646,2.710505431213761e-18,-5.421010862427522e-19,1.0842021724855044e-19,-0.0014285714132711291,-5.827586677109586e-19,-1.5585406229479126e-19,4.404571325722362e-20,-6.776263578034403e-21,1.3552527156068805e-20,1.1011428314305904e-19,2.1345230270808369e-19,-6.776263578034403e-20,4.550000986519121e-20,0.0003571428533177823,5.0,5.0,8.0,6.0,0.03613095358014107,-0.008611110970377922,-0.008611110970377922,-0.0059126983396708965,-0.007470238022506237,0.0005952381179668009,0.0008333333535119891,0.0005555555690079927,0.0007142857066355646,0.0005952381179668009,0.0005555555690079927,0.0007142857066355646,0.00027777778450399637,0.0004761904710903764,0.00044642857392318547,-0.008611110970377922,0.007876983843743801,0.0008333333535119891,0.0005555555690079927,0.0007142857066355646,-0.0011904762359336019,-0.00041666667675599456,-0.00027777778450399637,-0.0003571428533177823,-1.1828266437723354e-32,7.339084504645843e-19,-2.1147105004465433e-19,1.2922130743290612e-18,4.904981475116676e-19,-4.956353010071399e-19,-0.008611110970377922,0.0008333333535119891,0.007876983843743801,0.0005555555690079927,0.0007142857066355646,5.2867765096103e-19,-0.00041666667675599456,-2.134530846522565e-20,-1.3518895324621903e-35,-0.0011904762359336019,-0.00027777778450399637,-0.0003571428533177823,1.2848432052639434e-18,4.904981475116676e-19,-4.956353010071399e-19,-0.0059126983396708965,0.0005555555690079927,0.0005555555690079927,0.003078231355175376,0.0004761904710903764,2.9293056633771532e-18,1.3670093302555202e-18,-0.00015873015217948705,-1.4291415285519747e-19,2.6272042076266084e-18,-0.00015873015217948705,-2.637547584198701e-19,-0.00027777778450399637,-0.0001360544265480712,-1.289326007196098e-18,-0.007470238022506237,0.0007142857066355646,0.0007142857066355646,0.0004761904710903764,0.005443452391773462,4.531522353246055e-19,2.1147105004465433e-19,-1.180456217284625e-18,-0.0002857142826542258,4.531522353246055e-19,-1.059615572945861e-18,-0.0002857142826542258,-5.014435047745458e-19,-0.00019047618843615055,-0.0006696428754366934,0.0005952381179668009,-0.0011904762359336019,5.2867765096103e-19,2.9293056633771532e-18,4.531522353246055e-19,0.00029761905898340046,1.3008730374584735e-33,-1.5105075372466654e-19,-1.3599993242377547e-34,2.5000992416914206e-33,-1.5105075372466654e-19,-2.509942170169634e-34,-2.64338825480515e-19,-1.2947206723560157e-19,-1.2269481262806791e-33,0.0008333333535119891,-0.00041666667675599456,-0.00041666667675599456,1.3670093302555202e-18,2.1147105004465433e-19,1.3008730374584735e-33,0.00020833333837799728,-7.04903478607686e-20,-6.346663321785572e-35,1.1667130406796604e-33,-7.04903478607686e-20,-1.1713064226087427e-34,-1.2335811683428072e-19,-6.042030278233632e-20,-5.725757677748513e-34,0.0005555555690079927,-0.00027777778450399637,-2.134530846522565e-20,-0.00015873015217948705,-1.180456217284625e-18,-1.5105075372466654e-19,-7.04903478607686e-20,7.936507608974352e-05,7.145707642759874e-20,-1.4444474582904269e-34,3.2215023534598244e-21,6.042030278233632e-20,3.3881317890172014e-21,4.2351647362715017e-20,1.4161007677011348e-19,0.0007142857066355646,-0.0003571428533177823,-1.3518895324621903e-35,-1.4291415285519747e-19,-0.0002857142826542258,-1.3599993242377547e-34,-6.346663321785572e-35,7.145707642759874e-20,0.0001428571413271129,-0.0,1.2720665496805526e-36,5.439997296951019e-35,3.009265538105056e-36,3.912045199536573e-35,1.274999258853173e-34,0.0005952381179668009,-1.1828266437723354e-32,-0.0011904762359336019,2.6272042076266084e-18,4.531522353246055e-19,2.5000992416914206e-33,1.1667130406796604e-33,-1.4444474582904269e-34,-0.0,0.00029761905898340046,-1.5105075372466654e-19,-1.3599993242377547e-34,-2.64338825480515e-19,-1.2947206723560157e-19,-9.574302305111681e-34,0.0005555555690079927,7.339084504645843e-19,-0.00027777778450399637,-0.00015873015217948705,-1.059615572945861e-18,-1.5105075372466654e-19,-7.04903478607686e-20,3.2215023534598244e-21,1.2720665496805526e-36,-1.5105075372466654e-19,7.936507608974352e-05,7.145707642759874e-20,5.493793143588742e-21,4.2351647362715017e-20,1.4161007677011348e-19,0.0007142857066355646,-2.1147105004465433e-19,-0.0003571428533177823,-2.637547584198701e-19,-0.0002857142826542258,-2.509942170169634e-34,-1.1713064226087427e-34,6.042030278233632e-20,5.439997296951019e-35,-1.3599993242377547e-34,7.145707642759874e-20,0.0001428571413271129,-0.0,7.071774014546882e-35,2.353070841931217e-34,0.00027777778450399637,1.2922130743290612e-18,1.2848432052639434e-18,-0.00027777778450399637,-5.014435047745458e-19,-2.64338825480515e-19,-1.2335811683428072e-19,3.3881317890172014e-21,3.009265538105056e-36,-2.64338825480515e-19,5.493793143588742e-21,-0.0,3.968253804487176e-05,1.4894994438215486e-20,6.608470637012875e-20,0.0004761904710903764,4.904981475116676e-19,4.904981475116676e-19,-0.0001360544265480712,-0.00019047618843615055,-1.2947206723560157e-19,-6.042030278233632e-20,4.2351647362715017e-20,3.912045199536573e-35,-1.2947206723560157e-19,4.2351647362715017e-20,7.071774014546882e-35,1.4894994438215486e-20,5.442176916403696e-05,8.901205268682461e-20,0.00044642857392318547,-4.956353010071399e-19,-4.956353010071399e-19,-1.289326007196098e-18,-0.0006696428754366934,-1.2269481262806791e-33,-5.725757677748513e-34,1.4161007677011348e-19,1.274999258853173e-34,-9.574302305111681e-34,1.4161007677011348e-19,2.353070841931217e-34,6.608470637012875e-20,8.901205268682461e-20,0.00013392856635618955,5.0,5.0,8.0,7.0,0.03174319863319397,-0.007457483094185591,-0.007457483094185591,-0.0051190475933253765,-0.0057142856530845165,0.0005102040595375001,0.0007142857066355646,0.0004761904710903764,0.0005357142654247582,0.0005102040595375001,0.0004761904710903764,0.0005357142654247582,0.0002380952355451882,0.0003571428533177823,0.00029761905898340046,-0.007457483094185591,0.006789966020733118,0.0007142857066355646,0.0004761904710903764,0.0005357142654247582,-0.0010204081190750003,-0.0003571428533177823,-0.0002380952355451882,-0.0002678571327123791,-0.0,3.840450546170606e-21,4.738474250648042e-21,1.1430861391452141e-20,-2.786738525713619e-20,-6.284188452690168e-21,-0.007457483094185591,0.0007142857066355646,0.006789966020733118,0.0004761904710903764,0.0005357142654247582,-0.0,-0.0003571428533177823,3.885001573078046e-21,4.686498389170015e-21,-0.0010204081190750003,-0.0002380952355451882,-0.0002678571327123791,6.714848244829825e-21,-2.668153783851046e-20,-2.3551520327939616e-21,-0.0051190475933253765,0.0004761904710903764,0.0004761904710903764,0.002653061179444194,0.0003571428533177823,-0.0,-0.0,-0.0001360544265480712,-3.230019122984531e-20,-0.0,-0.0001360544265480712,-3.7269449679189215e-20,-0.0002380952355451882,-0.0001020408162730746,-7.346164524454443e-20,-0.0057142856530845165,0.0005357142654247582,0.0005357142654247582,0.0003571428533177823,0.0034523808863013983,-0.0,-0.0,7.602534009185874e-22,-0.00017857142665889114,-0.0,7.001578206488471e-21,-0.00017857142665889114,1.3552527156068805e-20,-0.0001190476177725941,-0.0003571428533177823,0.0005102040595375001,-0.0010204081190750003,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0003571428533177823,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0002380952355451882,3.885001573078046e-21,-0.0001360544265480712,7.602534009185874e-22,-0.0,-0.0,6.80272132740356e-05,8.144763547732416e-23,-0.0,-1.1941775878364697e-21,9.82067203514804e-23,-3.3881317890172014e-21,-8.470329472543003e-22,2.838543427780621e-22,0.0005357142654247582,-0.0002678571327123791,4.686498389170015e-21,-3.230019122984531e-20,-0.00017857142665889114,-0.0,-0.0,8.144763547732416e-23,8.928571332944557e-05,-0.0,1.1305698271605525e-22,-1.6940658945086007e-21,1.4253336997392633e-22,1.0277332985646369e-20,1.763566029627961e-21,0.0005102040595375001,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,3.840450546170606e-21,-0.0002380952355451882,-0.0001360544265480712,7.001578206488471e-21,-0.0,-0.0,-1.1941775878364697e-21,1.1305698271605525e-22,-0.0,6.80272132740356e-05,9.82067203514804e-23,-2.065838141463046e-21,-2.541098841762901e-21,2.261139654321105e-22,0.0005357142654247582,4.738474250648042e-21,-0.0002678571327123791,-3.7269449679189215e-20,-0.00017857142665889114,-0.0,-0.0,9.82067203514804e-23,-1.6940658945086007e-21,-0.0,9.82067203514804e-23,8.928571332944557e-05,1.7186175430420346e-22,1.1858461261560205e-20,5.212510638822994e-22,0.0002380952355451882,1.1430861391452141e-20,6.714848244829825e-21,-0.0002380952355451882,1.3552527156068805e-20,-0.0,-0.0,-3.3881317890172014e-21,1.4253336997392633e-22,-0.0,-2.065838141463046e-21,1.7186175430420346e-22,3.40136066370178e-05,-5.881285255304354e-21,1.8427080140059413e-22,0.0003571428533177823,-2.786738525713619e-20,-2.668153783851046e-20,-0.0001020408162730746,-0.0001190476177725941,-0.0,-0.0,-8.470329472543003e-22,1.0277332985646369e-20,-0.0,-2.541098841762901e-21,1.1858461261560205e-20,-5.881285255304354e-21,3.40136066370178e-05,2.3682172859457513e-20,0.00029761905898340046,-6.284188452690168e-21,-2.3551520327939616e-21,-7.346164524454443e-20,-0.0003571428533177823,-0.0,-0.0,2.838543427780621e-22,1.763566029627961e-21,-0.0,2.261139654321105e-22,5.212510638822994e-22,1.8427080140059413e-22,2.3682172859457513e-20,5.952380888629705e-05,5.0,5.0,8.0,8.0,0.028313491493463516,-0.006577380932867527,-0.006577380932867527,-0.004513889085501432,-0.004513889085501432,0.00044642857392318547,0.0006249999860301614,0.00041666667675599456,0.00041666667675599456,0.00044642857392318547,0.00041666667675599456,0.00041666667675599456,0.00020833333837799728,0.00027777778450399637,0.00020833333837799728,-0.006577380932867527,0.005967261735349894,0.0006249999860301614,0.00041666667675599456,0.00041666667675599456,-0.0008928571478463709,-0.0003124999930150807,-0.00020833333837799728,-0.00020833333837799728,-0.0,6.595770789281093e-22,8.593087841427918e-22,1.4966482149406318e-21,5.151626732811271e-21,-1.5384324479070846e-21,-0.006577380932867527,0.0006249999860301614,0.005967261735349894,0.00041666667675599456,0.00041666667675599456,-0.0,-0.0003124999930150807,8.593087841427918e-22,6.595770789281093e-22,-0.0008928571478463709,-0.00020833333837799728,-0.00020833333837799728,1.5037904227369835e-21,5.929230630780102e-21,1.1542598628806423e-21,-0.004513889085501432,0.00041666667675599456,0.00041666667675599456,0.0023313493002206087,0.00027777778450399637,-0.0,-0.0,-0.0001190476177725941,1.221949167160979e-20,-0.0,-0.0001190476177725941,1.0164395367051604e-20,-0.00020833333837799728,-7.936507608974352e-05,2.119233013510449e-20,-0.004513889085501432,0.00041666667675599456,0.00041666667675599456,0.00027777778450399637,0.0023313493002206087,-0.0,-0.0,2.803324183619839e-21,-0.0001190476177725941,-0.0,3.3649050986384022e-21,-0.0001190476177725941,6.776263578034403e-21,-7.936507608974352e-05,-0.00020833333837799728,0.00044642857392318547,-0.0008928571478463709,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0003124999930150807,-0.0003124999930150807,-0.0,-0.0,-0.0,0.00015624999650754035,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00041666667675599456,-0.00020833333837799728,8.593087841427918e-22,-0.0001190476177725941,2.803324183619839e-21,-0.0,-0.0,5.952380888629705e-05,-2.443507382430395e-22,-0.0,-0.0,-2.455167882569265e-22,-0.0,8.470329472543003e-22,-6.324043674618753e-22,0.00041666667675599456,-0.00020833333837799728,6.595770789281093e-22,1.221949167160979e-20,-0.0001190476177725941,-0.0,-0.0,-2.443507382430395e-22,5.952380888629705e-05,-0.0,-1.8845059037323852e-22,-0.0,-4.276137540599957e-22,-2.3189263283358623e-21,1.0719565026477706e-21,0.00044642857392318547,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,0.00041666667675599456,6.595770789281093e-22,-0.00020833333837799728,-0.0001190476177725941,3.3649050986384022e-21,-0.0,-0.0,-0.0,-1.8845059037323852e-22,-0.0,5.952380888629705e-05,-2.455167882569265e-22,-0.0,-0.0,-3.2978853946405465e-22,0.00041666667675599456,8.593087841427918e-22,-0.00020833333837799728,1.0164395367051604e-20,-0.0001190476177725941,-0.0,-0.0,-2.455167882569265e-22,-0.0,-0.0,-2.455167882569265e-22,5.952380888629705e-05,-4.296543920713959e-22,-1.6940658945086007e-21,-0.0,0.00020833333837799728,1.4966482149406318e-21,1.5037904227369835e-21,-0.00020833333837799728,6.776263578034403e-21,-0.0,-0.0,-0.0,-4.276137540599957e-22,-0.0,-0.0,-4.296543920713959e-22,2.9761904443148524e-05,-2.2374455543896316e-22,-6.855214393016055e-22,0.00027777778450399637,5.151626732811271e-21,5.929230630780102e-21,-7.936507608974352e-05,-7.936507608974352e-05,-0.0,-0.0,8.470329472543003e-22,-2.3189263283358623e-21,-0.0,-0.0,-1.6940658945086007e-21,-2.2374455543896316e-22,2.2675736545352265e-05,-4.022162093468046e-21,0.00020833333837799728,-1.5384324479070846e-21,1.1542598628806423e-21,2.119233013510449e-20,-0.00020833333837799728,-0.0,-0.0,-6.324043674618753e-22,1.0719565026477706e-21,-0.0,-3.2978853946405465e-22,-0.0,-6.855214393016055e-22,-4.022162093468046e-21,2.9761904443148524e-05,5.0,6.0,3.0,3.0,0.1160052940249443,-0.03333333507180214,-0.02896825410425663,-0.04801587387919426,-0.04801587387919426,0.0026455025654286146,0.0031746032182127237,0.0055555556900799274,0.0055555556900799274,0.0019841270986944437,0.004761904943734407,0.004761904943734407,0.0055555556900799274,0.008333333767950535,0.0055555556900799274,-0.03333333507180214,0.03253968432545662,0.0031746032182127237,0.0055555556900799274,0.0055555556900799274,-0.005291005130857229,-0.0015873016091063619,-0.0027777778450399637,-0.0027777778450399637,-0.0,-0.0,-0.0,-1.5407439555097887e-33,-3.851859888774472e-34,-1.5407439555097887e-33,-0.02896825410425663,0.0031746032182127237,0.02250000089406967,0.004761904943734407,0.004761904943734407,-2.168404344971009e-19,-0.0012698412174358964,3.0460535731413696e-19,3.0460535731413696e-19,-0.0029761905316263437,-0.0019047618843615055,-0.0019047618843615055,-2.5942284870710595e-17,-7.996116753533703e-18,-2.5942284870710595e-17,-0.04801587387919426,0.0055555556900799274,0.004761904943734407,0.10357142984867096,0.008333333767950535,3.1276781404009684e-20,2.710505431213761e-19,-0.0055555556900799274,1.2957554236035312e-19,-1.474514954580286e-17,-0.004761904943734407,-7.248721226579018e-19,-0.03333333507180214,-0.008333333767950535,-1.8503717628539684e-17,-0.04801587387919426,0.0055555556900799274,0.004761904943734407,0.008333333767950535,0.10357142984867096,-0.0,2.710505431213761e-19,1.2957554236035312e-19,-0.0055555556900799274,-1.4675443035583017e-17,-7.248721226579018e-19,-0.004761904943734407,-1.8503717628539684e-17,-0.008333333767950535,-0.03333333507180214,0.0026455025654286146,-0.005291005130857229,-2.168404344971009e-19,3.1276781404009684e-20,-0.0,0.0013227512827143073,-0.0,-0.0,-0.0,3.399814099582379e-20,3.0438548037611124e-35,3.0438548037611124e-35,2.255175810147981e-34,2.780844543440912e-35,2.255175810147981e-34,0.0031746032182127237,-0.0015873016091063619,-0.0012698412174358964,2.710505431213761e-19,2.710505431213761e-19,-0.0,0.0006349206087179482,-1.3552527156068805e-19,-1.3552527156068805e-19,-5.421010862427522e-20,-0.0,-0.0,1.925929944387236e-34,9.62964972193618e-35,1.925929944387236e-34,0.0055555556900799274,-0.0027777778450399637,3.0460535731413696e-19,-0.0055555556900799274,1.2957554236035312e-19,-0.0,-1.3552527156068805e-19,0.0027777778450399637,-6.478777118017656e-20,-6.183318866088798e-21,-6.620384183831123e-35,-6.620384183831123e-35,3.9130005756825414e-35,1.1739001440061699e-35,3.9130005756825414e-35,0.0055555556900799274,-0.0027777778450399637,3.0460535731413696e-19,1.2957554236035312e-19,-0.0055555556900799274,-0.0,-1.3552527156068805e-19,-6.478777118017656e-20,0.0027777778450399637,-6.183318866088798e-21,-6.620384183831123e-35,-6.620384183831123e-35,3.9130005756825414e-35,1.1739001440061699e-35,3.9130005756825414e-35,0.0019841270986944437,-0.0,-0.0029761905316263437,-1.474514954580286e-17,-1.4675443035583017e-17,3.399814099582379e-20,-5.421010862427522e-20,-6.183318866088798e-21,-6.183318866088798e-21,0.0005952381179668009,1.0299920638612292e-18,1.0299920638612292e-18,5.286776406212723e-18,1.5860329011843016e-18,5.286776406212723e-18,0.004761904943734407,-0.0,-0.0019047618843615055,-0.004761904943734407,-7.248721226579018e-19,3.0438548037611124e-35,-0.0,-6.620384183831123e-35,-6.620384183831123e-35,1.0299920638612292e-18,0.0019047618843615055,2.767583219925393e-19,-4.915965916663497e-19,3.2976320907727913e-20,9.835982775968077e-33,0.004761904943734407,-0.0,-0.0019047618843615055,-7.248721226579018e-19,-0.004761904943734407,3.0438548037611124e-35,-0.0,-6.620384183831123e-35,-6.620384183831123e-35,1.0299920638612292e-18,2.767583219925393e-19,0.0019047618843615055,9.835982775968077e-33,3.2976320907727913e-20,-4.915965916663497e-19,0.0055555556900799274,-1.5407439555097887e-33,-2.5942284870710595e-17,-0.03333333507180214,-1.8503717628539684e-17,2.255175810147981e-34,1.925929944387236e-34,3.9130005756825414e-35,3.9130005756825414e-35,5.286776406212723e-18,-4.915965916663497e-19,9.835982775968077e-33,0.01666666753590107,1.2970729397287535e-32,9.251858814269842e-18,0.008333333767950535,-3.851859888774472e-34,-7.996116753533703e-18,-0.008333333767950535,-0.008333333767950535,2.780844543440912e-35,9.62964972193618e-35,1.1739001440061699e-35,1.1739001440061699e-35,1.5860329011843016e-18,3.2976320907727913e-20,3.2976320907727913e-20,1.2970729397287535e-32,0.008333333767950535,1.2970729397287535e-32,0.0055555556900799274,-1.5407439555097887e-33,-2.5942284870710595e-17,-1.8503717628539684e-17,-0.03333333507180214,2.255175810147981e-34,1.925929944387236e-34,3.9130005756825414e-35,3.9130005756825414e-35,5.286776406212723e-18,9.835982775968077e-33,-4.915965916663497e-19,9.251858814269842e-18,1.2970729397287535e-32,0.01666666753590107,5.0,6.0,3.0,4.0,0.09392856806516647,-0.025833332911133766,-0.022440476343035698,-0.037261903285980225,-0.030476190149784088,0.0019841270986944437,0.0023809524718672037,0.004166666883975267,0.0033333334140479565,0.0014880952658131719,0.0035714285913854837,0.0028571428265422583,0.004166666883975267,0.004999999888241291,0.0027777778450399637,-0.025833332911133766,0.024821428582072258,0.0023809524718672037,0.004166666883975267,0.0033333334140479565,-0.003968254197388887,-0.0011904762359336019,-0.0020833334419876337,-0.0016666667070239782,-0.0,-6.776263578034403e-20,-7.52316384526264e-37,-4.81482486096809e-34,-0.0,2.407412430484045e-34,-0.022440476343035698,0.0023809524718672037,0.01716071367263794,0.0035714285913854837,0.0028571428265422583,-1.0842021724855044e-19,-0.0009523809421807528,-5.6392282166024e-20,-4.5113823147879786e-20,-0.0022321429569274187,-0.0014285714132711291,-0.0011428571306169033,-1.8103299346337465e-17,-4.585081160535521e-18,-9.11757017772492e-18,-0.037261903285980225,0.004166666883975267,0.0035714285913854837,0.07892857491970062,0.004999999888241291,7.135340097004258e-20,-1.241549114840195e-19,-0.004166666883975267,-4.5520660003186217e-36,-1.1167282376600696e-17,-0.0035714285913854837,5.903305239419042e-19,-0.02500000037252903,-0.004999999888241291,-6.476301004552767e-18,-0.030476190149784088,0.0033333334140479565,0.0028571428265422583,0.004999999888241291,0.03976190462708473,-0.0,-4.5113823147879786e-20,-4.5520660003186217e-36,-0.002222222276031971,-8.187268266927357e-18,3.7774130665483717e-19,-0.0019047618843615055,-9.714451300033997e-18,-0.0033333334140479565,-0.008333333767950535,0.0019841270986944437,-0.003968254197388887,-1.0842021724855044e-19,7.135340097004258e-20,-0.0,0.0009920635493472219,-0.0,-0.0,-0.0,1.5577617160789203e-20,-7.782582978950656e-37,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,-0.0009523809421807528,-1.241549114840195e-19,-4.5113823147879786e-20,-0.0,0.0004761904710903764,2.8196141083012e-20,2.2556911573939893e-20,-2.710505431213761e-20,2.710505431213761e-20,-0.0,1.925929944387236e-34,-0.0,-9.62964972193618e-35,0.004166666883975267,-0.0020833334419876337,-5.6392282166024e-20,-0.004166666883975267,-4.5520660003186217e-36,-0.0,2.8196141083012e-20,0.0020833334419876337,1.3356375195014808e-36,1.504632769052528e-36,2.256949153578792e-36,7.52316384526264e-37,0.0,0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,-4.5113823147879786e-20,-4.5520660003186217e-36,-0.002222222276031971,-0.0,2.2556911573939893e-20,1.3356375195014808e-36,0.0011111111380159855,-1.504632769052528e-36,7.52316384526264e-37,-0.0,0.0,-0.0,0.0,0.0014880952658131719,-0.0,-0.0022321429569274187,-1.1167282376600696e-17,-8.187268266927357e-18,1.5577617160789203e-20,-2.710505431213761e-20,1.504632769052528e-36,-1.504632769052528e-36,0.00044642857392318547,7.047314121155779e-19,6.776263578034403e-19,3.965082408057119e-18,9.516196993515503e-19,1.850371804212999e-18,0.0035714285913854837,-6.776263578034403e-20,-0.0014285714132711291,-0.0035714285913854837,3.7774130665483717e-19,-7.782582978950656e-37,2.710505431213761e-20,2.256949153578792e-36,7.52316384526264e-37,7.047314121155779e-19,0.0014285714132711291,-1.5901084200623504e-19,-1.722112176960247e-18,1.9785793513989028e-20,2.2671842196256e-33,0.0028571428265422583,-7.52316384526264e-37,-0.0011428571306169033,5.903305239419042e-19,-0.0019047618843615055,-0.0,-0.0,7.52316384526264e-37,-0.0,6.776263578034403e-19,-1.5901084200623504e-19,0.0007619047537446022,5.9556612302243205e-33,-1.2853560830931204e-19,-8.952563491199201e-20,0.004166666883975267,-4.81482486096809e-34,-1.8103299346337465e-17,-0.02500000037252903,-9.714451300033997e-18,-0.0,1.925929944387236e-34,0.0,0.0,3.965082408057119e-18,-1.722112176960247e-18,5.9556612302243205e-33,0.012500000186264515,7.763692764643927e-33,3.2381505022763835e-18,0.004999999888241291,-0.0,-4.585081160535521e-18,-0.004999999888241291,-0.0033333334140479565,-0.0,-0.0,0.0,-0.0,9.516196993515503e-19,1.9785793513989028e-20,-1.2853560830931204e-19,7.763692764643927e-33,0.0033333334140479565,3.649290620717113e-33,0.0027777778450399637,2.407412430484045e-34,-9.11757017772492e-18,-6.476301004552767e-18,-0.008333333767950535,-0.0,-9.62964972193618e-35,-0.0,0.0,1.850371804212999e-18,2.2671842196256e-33,-8.952563491199201e-20,3.2381505022763835e-18,3.649290620717113e-33,0.0027777778450399637,5.0,6.0,3.0,5.0,0.07904762029647827,-0.021111110225319862,-0.018333332613110542,-0.030476190149784088,-0.021111110225319862,0.0015873016091063619,0.0019047618843615055,0.0033333334140479565,0.002222222276031971,0.0011904762359336019,0.0028571428265422583,0.0019047618843615055,0.0033333334140479565,0.0033333334140479565,0.0015873016091063619,-0.021111110225319862,0.020079365000128746,0.0019047618843615055,0.0033333334140479565,0.002222222276031971,-0.0031746032182127237,-0.0009523809421807528,-0.0016666667070239782,-0.0011111111380159855,-0.0,-3.0176311303061647e-20,5.606977866235635e-20,-5.972700571852467e-35,3.023960071734154e-21,1.1133447794415133e-19,-0.018333332613110542,0.0019047618843615055,0.013880952261388302,0.0028571428265422583,0.0019047618843615055,-0.0,-0.0007619047537446022,-6.315935628444082e-20,5.421010862427522e-20,-0.0017857142956927419,-0.0011428571306169033,-0.0007619047537446022,8.865417402877931e-18,2.032879073410321e-18,2.8195447931508075e-18,-0.030476190149784088,0.0033333334140479565,0.0028571428265422583,0.06380952149629593,0.0033333334140479565,5.2250860257609484e-20,-9.969494812627918e-20,-0.0033333334140479565,1.0973059735463088e-20,4.662069341687669e-18,-0.0028571428265422583,2.762685276723313e-19,-0.019999999552965164,-0.0033333334140479565,-3.1036840218997633e-18,-0.021111110225319862,0.002222222276031971,0.0019047618843615055,0.0033333334140479565,0.020079365000128746,-0.0,-7.330411903664136e-20,-4.6015337642959746e-36,-0.0011111111380159855,2.731657887042814e-18,2.168404344971009e-19,-0.0009523809421807528,-6.3441316047372065e-18,-0.0016666667070239782,-0.0031746032182127237,0.0015873016091063619,-0.0031746032182127237,-0.0,5.2250860257609484e-20,-0.0,0.0007936508045531809,-0.0,-0.0,-0.0,1.1579822766113268e-21,-4.775464185251395e-37,1.136325973612294e-36,0.0,5.418217482165636e-38,-1.3388004648082416e-20,0.0019047618843615055,-0.0009523809421807528,-0.0007619047537446022,-9.969494812627918e-20,-7.330411903664136e-20,-0.0,0.0003809523768723011,3.157967814222041e-20,1.7160249548324693e-20,-0.0,1.3552527156068805e-20,6.776263578034403e-21,9.62964972193618e-35,1.3271364709621945e-21,4.762258924433209e-21,0.0033333334140479565,-0.0016666667070239782,-6.315935628444082e-20,-0.0033333334140479565,-4.6015337642959746e-36,-0.0,3.157967814222041e-20,0.0016666667070239782,1.4225272616490963e-36,-0.0,7.52316384526264e-37,1.504632769052528e-36,-0.0,1.1001516891738908e-37,-4.862339757468939e-37,0.002222222276031971,-0.0011111111380159855,5.421010862427522e-20,1.0973059735463088e-20,-0.0011111111380159855,-0.0,1.7160249548324693e-20,1.4225272616490963e-36,0.0005555555690079927,-2.5186114844462495e-21,-1.852503495503575e-21,-3.650521880372118e-20,-9.050711866493991e-35,-3.170900750787565e-21,-3.2501154113430216e-20,0.0011904762359336019,-0.0,-0.0017857142956927419,4.662069341687669e-18,2.731657887042814e-18,1.1579822766113268e-21,-0.0,-0.0,-2.5186114844462495e-21,0.0003571428533177823,-3.5236570605778894e-19,-2.168404344971009e-19,-1.5860329011843016e-18,-3.1409609162044655e-19,-4.569880269213787e-19,0.0028571428265422583,-3.0176311303061647e-20,-0.0011428571306169033,-0.0028571428265422583,2.168404344971009e-19,-4.775464185251395e-37,1.3552527156068805e-20,7.52316384526264e-37,-1.852503495503575e-21,-3.5236570605778894e-19,0.0011428571306169033,-0.0,-9.352527935588464e-19,-1.9011145009564227e-19,-5.2928670146111335e-21,0.0019047618843615055,5.606977866235635e-20,-0.0007619047537446022,2.762685276723313e-19,-0.0009523809421807528,1.136325973612294e-36,6.776263578034403e-21,1.504632769052528e-36,-3.650521880372118e-20,-2.168404344971009e-19,-0.0,0.0003809523768723011,6.2592723192585165e-34,-1.3813426383616566e-19,-2.685999171591112e-19,0.0033333334140479565,-5.972700571852467e-35,8.865417402877931e-18,-0.019999999552965164,-6.3441316047372065e-18,0.0,9.62964972193618e-35,-0.0,-9.050711866493991e-35,-1.5860329011843016e-18,-9.352527935588464e-19,6.2592723192585165e-34,0.009999999776482582,1.3481509610710651e-33,1.5860329011843016e-18,0.0033333334140479565,3.023960071734154e-21,2.032879073410321e-18,-0.0033333334140479565,-0.0016666667070239782,5.418217482165636e-38,1.3271364709621945e-21,1.1001516891738908e-37,-3.170900750787565e-21,-3.1409609162044655e-19,-1.9011145009564227e-19,-1.3813426383616566e-19,1.3481509610710651e-33,0.0016666667070239782,-2.7574828276582375e-20,0.0015873016091063619,1.1133447794415133e-19,2.8195447931508075e-18,-3.1036840218997633e-18,-0.0031746032182127237,-1.3388004648082416e-20,4.762258924433209e-21,-4.862339757468939e-37,-3.2501154113430216e-20,-4.569880269213787e-19,-5.2928670146111335e-21,-2.685999171591112e-19,1.5860329011843016e-18,-2.7574828276582375e-20,0.0007936508045531809,5.0,6.0,3.0,6.0,0.06829176098108292,-0.01785714365541935,-0.015504535287618637,-0.02579365111887455,-0.015504535287618637,0.0013227512827143073,0.0015873016091063619,0.0027777778450399637,0.0015873016091063619,0.0009920635493472219,0.0023809524718672037,0.0013605442363768816,0.0027777778450399637,0.0023809524718672037,0.0009920635493472219,-0.01785714365541935,0.01686508022248745,0.0015873016091063619,0.0027777778450399637,0.0015873016091063619,-0.0026455025654286146,-0.0007936508045531809,-0.0013888889225199819,-0.0007936508045531809,-0.0,-3.450195538117967e-20,1.0454067555219139e-19,2.2468674528105677e-34,2.454440363488034e-20,-9.280594241569322e-20,-0.015504535287618637,0.0015873016091063619,0.01165816280990839,0.0023809524718672037,0.0013605442363768816,-0.0,-0.0006349206087179482,1.4054857139966067e-19,2.0328790734103208e-19,-0.0014880952658131719,-0.0009523809421807528,-0.0005442177061922848,-1.2971142435355297e-17,-2.019326546254252e-18,-2.265438421087767e-18,-0.02579365111887455,0.0027777778450399637,0.0023809524718672037,0.0535714291036129,0.0023809524718672037,3.336790368606654e-20,1.105320610511866e-19,-0.0027777778450399637,2.005895860217473e-20,-7.752045533271357e-18,-0.0023809524718672037,-9.16814485340642e-20,-0.01666666753590107,-0.0023809524718672037,-1.7944498453110453e-18,-0.015504535287618637,0.0015873016091063619,0.0013605442363768816,0.0023809524718672037,0.01165816280990839,-0.0,8.525022266904097e-20,-1.7943173666966308e-35,-0.0006349206087179482,-3.591573551952168e-18,-2.710505431213761e-20,-0.0005442177061922848,-4.543323428852619e-18,-0.0009523809421807528,-0.0014880952658131719,0.0013227512827143073,-0.0026455025654286146,-0.0,3.336790368606654e-20,-0.0,0.0006613756413571537,-0.0,-0.0,-0.0,1.767449699149447e-21,-2.059188945983102e-36,5.21616578120737e-36,0.0,2.492171651898966e-37,9.535290583875215e-21,0.0015873016091063619,-0.0007936508045531809,-0.0006349206087179482,1.105320610511866e-19,8.525022266904097e-20,-0.0,0.0003174603043589741,-7.027428569983033e-20,-4.115326298793028e-20,-0.0,1.3552527156068805e-20,-0.0,-0.0,-1.5459230166791819e-21,-2.575754044065563e-22,0.0027777778450399637,-0.0013888889225199819,1.4054857139966067e-19,-0.0027777778450399637,-1.7943173666966308e-35,-0.0,-7.027428569983033e-20,0.0013888889225199819,9.10985091266752e-36,-0.0,-3.009265538105056e-36,1.504632769052528e-36,-0.0,3.422117257544756e-37,-8.07184506156595e-37,0.0015873016091063619,-0.0007936508045531809,2.0328790734103208e-19,2.005895860217473e-20,-0.0006349206087179482,-0.0,-4.115326298793028e-20,9.10985091266752e-36,0.0003174603043589741,-3.075362399779649e-21,2.482547035778952e-22,-4.181626763593714e-20,-8.987469926036641e-35,-8.271838437272955e-21,2.0788546442730704e-20,0.0009920635493472219,-0.0,-0.0014880952658131719,-7.752045533271357e-18,-3.591573551952168e-18,1.767449699149447e-21,-0.0,-0.0,-3.075362399779649e-21,0.00029761905898340046,5.421010862427522e-19,2.303929616531697e-19,2.6433882031063616e-18,4.495289774464701e-19,5.260044617152e-19,0.0023809524718672037,-3.450195538117967e-20,-0.0009523809421807528,-0.0023809524718672037,-2.710505431213761e-20,-2.059188945983102e-36,1.3552527156068805e-20,-3.009265538105056e-36,2.482547035778952e-22,5.421010862427522e-19,0.0009523809421807528,6.776263578034403e-20,-2.4579829583317485e-19,-1.4595552794649303e-19,5.818469410003083e-22,0.0013605442363768816,1.0454067555219139e-19,-0.0005442177061922848,-9.16814485340642e-20,-0.0005442177061922848,5.21616578120737e-36,-0.0,1.504632769052528e-36,-4.181626763593714e-20,2.303929616531697e-19,6.776263578034403e-20,0.00021768707665614784,1.6370404527291505e-33,-3.109005507424864e-20,-1.4701521093465881e-19,0.0027777778450399637,2.2468674528105677e-34,-1.2971142435355297e-17,-0.01666666753590107,-4.543323428852619e-18,0.0,-0.0,-0.0,-8.987469926036641e-35,2.6433882031063616e-18,-2.4579829583317485e-19,1.6370404527291505e-33,0.008333333767950535,3.659266894335748e-33,9.086647271295545e-19,0.0023809524718672037,2.454440363488034e-20,-2.019326546254252e-18,-0.0023809524718672037,-0.0009523809421807528,2.492171651898966e-37,-1.5459230166791819e-21,3.422117257544756e-37,-8.271838437272955e-21,4.495289774464701e-19,-1.4595552794649303e-19,-3.109005507424864e-20,3.659266894335748e-33,0.0009523809421807528,-9.733650756587418e-21,0.0009920635493472219,-9.280594241569322e-20,-2.265438421087767e-18,-1.7944498453110453e-18,-0.0014880952658131719,9.535290583875215e-21,-2.575754044065563e-22,-8.07184506156595e-37,2.0788546442730704e-20,5.260044617152e-19,5.818469410003083e-22,-1.4701521093465881e-19,9.086647271295545e-19,-9.733650756587418e-21,0.00029761905898340046,5.0,6.0,3.0,7.0,0.06013794243335724,-0.015476190485060215,-0.01343537401407957,-0.022363945841789246,-0.011876417323946953,0.0011337868636474013,0.0013605442363768816,0.0023809524718672037,0.0011904762359336019,0.0008503401186317205,0.0020408162381500006,0.0010204081190750003,0.0023809524718672037,0.0017857142956927419,0.0006613756413571537,-0.015476190485060215,0.01454081665724516,0.0013605442363768816,0.0023809524718672037,0.0011904762359336019,-0.0022675737272948027,-0.0006802721181884408,-0.0011904762359336019,-0.0005952381179668009,-5.164770665056481e-20,-1.9553362224210163e-20,1.942715255731047e-20,4.872619693765198e-34,-2.334912118739268e-20,-4.899870920647776e-20,-0.01343537401407957,0.0013605442363768816,0.010051020421087742,0.0020408162381500006,0.0010204081190750003,-0.0,-0.0005442177061922848,-0.0,-2.710505431213761e-20,-0.0012755101779475808,-0.0008163265301845968,-0.0004081632650922984,4.1573100834277045e-18,5.692061405548898e-19,9.47120043614415e-19,-0.022363945841789246,0.0023809524718672037,0.0020408162381500006,0.046173468232154846,0.0017857142956927419,-0.0,-1.7275785031030757e-20,-0.0023809524718672037,-2.5247103258766942e-20,3.7947076036992655e-18,-0.0020408162381500006,-2.5799233392949016e-19,-0.014285714365541935,-0.0017857142956927419,-1.224109950329075e-18,-0.011876417323946953,0.0011904762359336019,0.0010204081190750003,0.0017857142956927419,0.007397959008812904,-0.0,-1.6652982653263683e-20,-0.0,-0.00039682540227659047,1.4197053881660936e-18,-3.3881317890172014e-19,-0.0003401360590942204,-3.436404601999724e-18,-0.0005952381179668009,-0.0007936508045531809,0.0011337868636474013,-0.0022675737272948027,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0006802721181884408,-0.0005442177061922848,-1.7275785031030757e-20,-1.6652982653263683e-20,-0.0,0.0002721088530961424,-0.0,2.5267754501305924e-21,1.3552527156068805e-20,6.776263578034403e-21,-3.3881317890172014e-21,-4.81482486096809e-35,1.1170887622701772e-22,3.070469594144655e-21,0.0023809524718672037,-0.0011904762359336019,-0.0,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,-2.710505431213761e-20,-2.5247103258766942e-20,-0.00039682540227659047,-0.0,2.5267754501305924e-21,-0.0,0.00019841270113829523,5.922130125326644e-21,8.709012276736466e-22,-3.652274630853678e-21,-1.2229712360373054e-34,7.689949995878144e-21,1.377417924849034e-20,0.0008503401186317205,-5.164770665056481e-20,-0.0012755101779475808,3.7947076036992655e-18,1.4197053881660936e-18,-0.0,1.3552527156068805e-20,-0.0,5.922130125326644e-21,0.00025510202976875007,-3.5236570605778894e-19,-1.3552527156068805e-19,-1.1328806141609079e-18,-1.6967027912050549e-19,-1.6119612393762943e-19,0.0020408162381500006,-1.9553362224210163e-20,-0.0008163265301845968,-0.0020408162381500006,-3.3881317890172014e-19,-0.0,6.776263578034403e-21,-0.0,8.709012276736466e-22,-3.5236570605778894e-19,0.0008163265301845968,6.098637220230962e-20,1.5070930907744114e-18,1.732837271535639e-19,1.7418024553472932e-21,0.0010204081190750003,1.942715255731047e-20,-0.0004081632650922984,-2.5799233392949016e-19,-0.0003401360590942204,-0.0,-3.3881317890172014e-21,-0.0,-3.652274630853678e-21,-1.3552527156068805e-19,6.098637220230962e-20,0.0001360544265480712,3.851859888774472e-34,3.51754645767311e-20,-5.0021388786928865e-20,0.0023809524718672037,4.872619693765198e-34,4.1573100834277045e-18,-0.014285714365541935,-3.436404601999724e-18,-0.0,-4.81482486096809e-35,-0.0,-1.2229712360373054e-34,-1.1328806141609079e-18,1.5070930907744114e-18,3.851859888774472e-34,0.0071428571827709675,1.0111132208032988e-33,5.727341175662168e-19,0.0017857142956927419,-2.334912118739268e-20,5.692061405548898e-19,-0.0017857142956927419,-0.0005952381179668009,-0.0,1.1170887622701772e-22,-0.0,7.689949995878144e-21,-1.6967027912050549e-19,1.732837271535639e-19,3.51754645767311e-20,1.0111132208032988e-33,0.0005952381179668009,2.4762419040663482e-20,0.0006613756413571537,-4.899870920647776e-20,9.47120043614415e-19,-1.224109950329075e-18,-0.0007936508045531809,-0.0,3.070469594144655e-21,-0.0,1.377417924849034e-20,-1.6119612393762943e-19,1.7418024553472932e-21,-5.0021388786928865e-20,5.727341175662168e-19,2.4762419040663482e-20,0.00013227513409219682,5.0,6.0,3.0,8.0,0.05373677238821983,-0.013657407835125923,-0.01185515895485878,-0.01974206417798996,-0.009391534142196178,0.0009920635493472219,0.0011904762359336019,0.0020833334419876337,0.0009259259095415473,0.0007440476329065859,0.0017857142956927419,0.0007936508045531809,0.0020833334419876337,0.0013888889225199819,0.00046296295477077365,-0.013657407835125923,0.012781084515154362,0.0011904762359336019,0.0020833334419876337,0.0009259259095415473,-0.0019841270986944437,-0.0005952381179668009,-0.0010416667209938169,-0.00046296295477077365,-8.425943506694157e-35,-0.0,-4.743384504624082e-20,2.2459791165767945e-35,4.190973019419912e-34,-3.1771726216000496e-20,-0.01185515895485878,0.0011904762359336019,0.008834325708448887,0.0017857142956927419,0.0007936508045531809,-0.0,-0.0004761904710903764,-0.0,-4.743384504624082e-20,-0.0011160714784637094,-0.0007142857066355646,-0.0003174603043589741,-9.912705813347644e-18,-1.3216941015531808e-18,-1.160032817767961e-18,-0.01974206417798996,0.0020833334419876337,0.0017857142956927419,0.04057539626955986,0.0013888889225199819,-0.0,-0.0,-0.0020833334419876337,4.319314962010628e-34,-5.615311866003472e-18,-0.0017857142956927419,-3.2792975289820595e-33,-0.012500000186264515,-0.0013888889225199819,-7.709882172895574e-19,-0.009391534142196178,0.0009259259095415473,0.0007936508045531809,0.0013888889225199819,0.004998110234737396,0.0,-0.0,-0.0,-0.00026455026818439364,-2.1745914491577524e-18,-2.825398936182257e-33,-0.00022675737272948027,-2.698458786362845e-18,-0.00039682540227659047,-0.00046296295477077365,0.0009920635493472219,-0.0019841270986944437,-0.0,-0.0,0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0010416667209938169,-0.0,-0.0020833334419876337,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00046296295477077365,-4.743384504624082e-20,4.319314962010628e-34,-0.00026455026818439364,-0.0,-0.0,-0.0,0.00013227513409219682,2.407412430484045e-35,0.0,1.3552527156068805e-20,-6.417083497704333e-36,-1.1974208790905993e-34,9.077635946315346e-21,0.0007440476329065859,-8.425943506694157e-35,-0.0011160714784637094,-5.615311866003472e-18,-2.1745914491577524e-18,-0.0,-0.0,-0.0,2.407412430484045e-35,0.00022321428696159273,2.9001743267569904e-19,1.473104497898549e-19,1.9825412040285595e-18,2.64338825480515e-19,2.202823588753282e-19,0.0017857142956927419,-0.0,-0.0007142857066355646,-0.0017857142956927419,-2.825398936182257e-33,-0.0,-0.0,-0.0,0.0,2.9001743267569904e-19,0.0007142857066355646,1.9139725036099846e-34,2.5758723422293945e-33,3.4344964869176914e-34,2.8620803292351627e-34,0.0007936508045531809,-4.743384504624082e-20,-0.0003174603043589741,-3.2792975289820595e-33,-0.00022675737272948027,-0.0,-0.0,-0.0,1.3552527156068805e-20,1.473104497898549e-19,1.9139725036099846e-34,9.070294618140906e-05,1.4004022359780927e-33,-0.0,1.6748877443183014e-20,0.0020833334419876337,2.2459791165767945e-35,-9.912705813347644e-18,-0.012500000186264515,-2.698458786362845e-18,-0.0,-0.0,-0.0,-6.417083497704333e-36,1.9825412040285595e-18,2.5758723422293945e-33,1.4004022359780927e-33,0.0062500000931322575,2.359264181874364e-33,3.854941086447787e-19,0.0013888889225199819,4.190973019419912e-34,-1.3216941015531808e-18,-0.0013888889225199819,-0.00039682540227659047,-0.0,-0.0,-0.0,-1.1974208790905993e-34,2.64338825480515e-19,3.4344964869176914e-34,-0.0,2.359264181874364e-33,0.00039682540227659047,5.131803685535161e-35,0.00046296295477077365,-3.1771726216000496e-20,-1.160032817767961e-18,-7.709882172895574e-19,-0.00046296295477077365,-0.0,-0.0,-0.0,9.077635946315346e-21,2.202823588753282e-19,2.8620803292351627e-34,1.6748877443183014e-20,3.854941086447787e-19,5.131803685535161e-35,6.613756704609841e-05,5.0,6.0,4.0,3.0,0.09392856806516647,-0.025833332911133766,-0.022440476343035698,-0.030476190149784088,-0.037261903285980225,0.0019841270986944437,0.0023809524718672037,0.0033333334140479565,0.004166666883975267,0.0014880952658131719,0.0028571428265422583,0.0035714285913854837,0.0027777778450399637,0.004999999888241291,0.004166666883975267,-0.025833332911133766,0.024821428582072258,0.0023809524718672037,0.0033333334140479565,0.004166666883975267,-0.003968254197388887,-0.0011904762359336019,-0.0016666667070239782,-0.0020833334419876337,-0.0,-1.504632769052528e-36,-6.776263578034403e-20,-0.0,-0.0,-0.0,-0.022440476343035698,0.0023809524718672037,0.01716071367263794,0.0028571428265422583,0.0035714285913854837,-1.0842021724855044e-19,-0.0009523809421807528,-4.5113823147879786e-20,-5.6392282166024e-20,-0.0022321429569274187,-0.0011428571306169033,-0.0014285714132711291,-9.11757017772492e-18,-4.585081160535521e-18,-1.8103299346337465e-17,-0.030476190149784088,0.0033333334140479565,0.0028571428265422583,0.03976190462708473,0.004999999888241291,-1.9445613871489462e-20,-4.5113823147879786e-20,-0.002222222276031971,1.9737298434990973e-19,-8.239936510889834e-18,-0.0019047618843615055,3.9867673097067145e-19,-0.008333333767950535,-0.0033333334140479565,-7.224279712886688e-32,-0.037261903285980225,0.004166666883975267,0.0035714285913854837,0.004999999888241291,0.07892857491970062,-0.0,-1.241549114840195e-19,1.9737298434990973e-19,-0.004166666883975267,-1.1046626503731261e-17,6.112659482577385e-19,-0.0035714285913854837,-4.512885324900763e-32,-0.004999999888241291,-0.02500000037252903,0.0019841270986944437,-0.003968254197388887,-1.0842021724855044e-19,-1.9445613871489462e-20,-0.0,0.0009920635493472219,-0.0,-0.0,5.421010862427522e-20,1.5577617160789203e-20,-0.0,-7.782582978950656e-37,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,-0.0009523809421807528,-4.5113823147879786e-20,-1.241549114840195e-19,-0.0,0.0004761904710903764,2.2556911573939893e-20,2.8196141083012e-20,-2.710505431213761e-20,-0.0,2.710505431213761e-20,-0.0,-0.0,-0.0,0.0033333334140479565,-0.0016666667070239782,-4.5113823147879786e-20,-0.002222222276031971,1.9737298434990973e-19,-0.0,2.2556911573939893e-20,0.0011111111380159855,-9.868649217495487e-20,-1.504632769052528e-36,-0.0,7.52316384526264e-37,-0.0,-0.0,-0.0,0.004166666883975267,-0.0020833334419876337,-5.6392282166024e-20,1.9737298434990973e-19,-0.004166666883975267,5.421010862427522e-20,2.8196141083012e-20,-9.868649217495487e-20,0.0020833334419876337,1.504632769052528e-36,1.504632769052528e-36,2.256949153578792e-36,0.0,0.0,0.0,0.0014880952658131719,-0.0,-0.0022321429569274187,-8.239936510889834e-18,-1.1046626503731261e-17,1.5577617160789203e-20,-2.710505431213761e-20,-1.504632769052528e-36,1.504632769052528e-36,0.00044642857392318547,6.776263578034403e-19,7.047314121155779e-19,1.850371804212999e-18,9.516196993515503e-19,3.965082408057119e-18,0.0028571428265422583,-1.504632769052528e-36,-0.0011428571306169033,-0.0019047618843615055,6.112659482577385e-19,-0.0,-0.0,-0.0,1.504632769052528e-36,6.776263578034403e-19,0.0007619047537446022,-1.6738501173256875e-19,-8.952563491199201e-20,-1.2853560830931204e-19,6.070119482505871e-33,0.0035714285913854837,-6.776263578034403e-20,-0.0014285714132711291,3.9867673097067145e-19,-0.0035714285913854837,-7.782582978950656e-37,2.710505431213761e-20,7.52316384526264e-37,2.256949153578792e-36,7.047314121155779e-19,-1.6738501173256875e-19,0.0014285714132711291,2.7142849653287957e-33,1.9785793513989028e-20,-1.722112176960247e-18,0.0027777778450399637,-0.0,-9.11757017772492e-18,-0.008333333767950535,-4.512885324900763e-32,-0.0,-0.0,-0.0,0.0,1.850371804212999e-18,-8.952563491199201e-20,2.7142849653287957e-33,0.0027777778450399637,3.649290620717113e-33,1.6434602681893725e-32,0.004999999888241291,-0.0,-4.585081160535521e-18,-0.0033333334140479565,-0.004999999888241291,-0.0,-0.0,-0.0,0.0,9.516196993515503e-19,-1.2853560830931204e-19,1.9785793513989028e-20,3.649290620717113e-33,0.0033333334140479565,7.763692764643927e-33,0.004166666883975267,-0.0,-1.8103299346337465e-17,-7.224279712886688e-32,-0.02500000037252903,-0.0,-0.0,-0.0,0.0,3.965082408057119e-18,6.070119482505871e-33,-1.722112176960247e-18,1.6434602681893725e-32,7.763692764643927e-33,0.012500000186264515,5.0,6.0,4.0,4.0,0.07582738250494003,-0.019999999552965164,-0.0173660721629858,-0.02360714226961136,-0.02360714226961136,0.0014880952658131719,0.0017857142956927419,0.0024999999441206455,0.0024999999441206455,0.0011160714784637094,0.002142857061699033,0.002142857061699033,0.0020833334419876337,0.003000000026077032,0.0020833334419876337,-0.019999999552965164,0.018928570672869682,0.0017857142956927419,0.0024999999441206455,0.0024999999441206455,-0.0029761905316263437,-0.0008928571478463709,-0.0012499999720603228,-0.0012499999720603228,-0.0,1.6940658945086007e-20,1.6940658945086007e-20,-0.0,-3.009265538105056e-35,-0.0,-0.0173660721629858,0.0017857142956927419,0.01308482140302658,0.002142857061699033,0.002142857061699033,-0.0,-0.0007142857066355646,8.458842001786173e-20,8.458842001786173e-20,-0.0016741071594879031,-0.0008571428479626775,-0.0008571428479626775,3.960454746120191e-18,1.8314587330972803e-18,3.960454746120191e-18,-0.02360714226961136,0.0024999999441206455,0.002142857061699033,0.030321428552269936,0.003000000026077032,-1.7989477109776363e-20,1.0152907896294774e-19,-0.0016666667070239782,1.9737298434990973e-19,3.3068166260807885e-18,-0.0014285714132711291,-8.55644737536287e-20,-0.0062500000931322575,-0.0020000000949949026,-7.036608366358064e-33,-0.02360714226961136,0.0024999999441206455,0.002142857061699033,0.003000000026077032,0.030321428552269936,-1.0842021724855044e-19,1.0152907896294774e-19,1.9737298434990973e-19,-0.0016666667070239782,3.348298286234251e-18,-8.55644737536287e-20,-0.0014285714132711291,-7.036608366358064e-33,-0.0020000000949949026,-0.0062500000931322575,0.0014880952658131719,-0.0029761905316263437,-0.0,-1.7989477109776363e-20,-1.0842021724855044e-19,0.0007440476329065859,-0.0,-0.0,-0.0,-2.0753555806309773e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0008928571478463709,-0.0007142857066355646,1.0152907896294774e-19,1.0152907896294774e-19,-0.0,0.0003571428533177823,-4.2294210008930866e-20,-4.2294210008930866e-20,-0.0,-6.776263578034403e-21,-6.776263578034403e-21,-0.0,1.2037062152420224e-35,-0.0,0.0024999999441206455,-0.0012499999720603228,8.458842001786173e-20,-0.0016666667070239782,1.9737298434990973e-19,-0.0,-4.2294210008930866e-20,0.0008333333535119891,-9.868649217495487e-20,3.009265538105056e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.0024999999441206455,-0.0012499999720603228,8.458842001786173e-20,1.9737298434990973e-19,-0.0016666667070239782,-0.0,-4.2294210008930866e-20,-9.868649217495487e-20,0.0008333333535119891,3.009265538105056e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0016741071594879031,3.3068166260807885e-18,3.348298286234251e-18,-2.0753555806309773e-36,-0.0,3.009265538105056e-36,3.009265538105056e-36,0.0003348214377183467,-3.5236570605778894e-19,-3.5236570605778894e-19,-6.938894007304805e-19,-2.854859304849804e-19,-6.938894007304805e-19,0.002142857061699033,1.6940658945086007e-20,-0.0008571428479626775,-0.0014285714132711291,-8.55644737536287e-20,-0.0,-6.776263578034403e-21,-0.0,-0.0,-3.5236570605778894e-19,0.0005714285653084517,1.1503162631544244e-19,-3.2733847774559625e-19,-1.3467640330644965e-19,7.156443586939665e-34,0.002142857061699033,1.6940658945086007e-20,-0.0008571428479626775,-8.55644737536287e-20,-0.0014285714132711291,-0.0,-6.776263578034403e-21,-0.0,-0.0,-3.5236570605778894e-19,1.1503162631544244e-19,0.0005714285653084517,7.156443586939665e-34,-1.3467640330644965e-19,-3.2733847774559625e-19,0.0020833334419876337,-0.0,3.960454746120191e-18,-0.0062500000931322575,-7.036608366358064e-33,-0.0,-0.0,-0.0,-0.0,-6.938894007304805e-19,-3.2733847774559625e-19,7.156443586939665e-34,0.0020833334419876337,6.2227644952933495e-34,1.4380276979315025e-33,0.003000000026077032,-3.009265538105056e-35,1.8314587330972803e-18,-0.0020000000949949026,-0.0020000000949949026,-0.0,1.2037062152420224e-35,-0.0,-0.0,-2.854859304849804e-19,-1.3467640330644965e-19,-1.3467640330644965e-19,6.2227644952933495e-34,0.0013333333190530539,6.2227644952933495e-34,0.0020833334419876337,-0.0,3.960454746120191e-18,-7.036608366358064e-33,-0.0062500000931322575,-0.0,-0.0,-0.0,-0.0,-6.938894007304805e-19,7.156443586939665e-34,-3.2733847774559625e-19,1.4380276979315025e-33,6.2227644952933495e-34,0.0020833334419876337,5.0,6.0,4.0,5.0,0.06369047611951828,-0.016333334147930145,-0.014178571291267872,-0.019285714253783226,-0.016333334147930145,0.0011904762359336019,0.0014285714132711291,0.0020000000949949026,0.0016666667070239782,0.0008928571478463709,0.001714285695925355,0.0014285714132711291,0.0016666667070239782,0.0020000000949949026,0.0011904762359336019,-0.016333334147930145,0.015309523791074753,0.0014285714132711291,0.0020000000949949026,0.0016666667070239782,-0.0023809524718672037,-0.0007142857066355646,-0.0010000000474974513,-0.0008333333535119891,-0.0,1.2149909610099164e-34,4.0618219303276256e-20,2.4257478464694686e-34,1.3680000858342055e-19,3.836394210774185e-20,-0.014178571291267872,0.0014285714132711291,0.010582142509520054,0.001714285695925355,0.0014285714132711291,5.421010862427522e-20,-0.0005714285653084517,7.579122495638957e-20,9.486769009248164e-20,-0.0013392857508733869,-0.0006857143016532063,-0.0005714285653084517,-6.336727511074244e-18,-2.231398904905444e-18,-3.9037448976847805e-18,-0.019285714253783226,0.0020000000949949026,0.001714285695925355,0.024523809552192688,0.0020000000949949026,-4.837716698667512e-20,7.579122495638957e-20,-0.0013333333190530539,1.0481305708061715e-20,-4.7704895589362195e-18,-0.0011428571306169033,-6.699010724935632e-20,-0.004999999888241291,-0.0013333333190530539,-5.452136428106974e-18,-0.016333334147930145,0.0016666667070239782,0.0014285714132711291,0.0020000000949949026,0.015309523791074753,-0.0,5.788948553709352e-20,-1.2631871256888164e-19,-0.0008333333535119891,-4.007710747334733e-18,-2.4334098521758475e-18,-0.0007142857066355646,-7.859956207262574e-18,-0.0010000000474974513,-0.0023809524718672037,0.0011904762359336019,-0.0023809524718672037,5.421010862427522e-20,-4.837716698667512e-20,-0.0,0.0005952381179668009,-2.710505431213761e-20,2.710505431213761e-20,-0.0,-6.938916447810095e-22,0.0,8.216205259906413e-37,-0.0,-1.3357533003857972e-36,-7.068698076888628e-22,0.0014285714132711291,-0.0007142857066355646,-0.0005714285653084517,7.579122495638957e-20,5.788948553709352e-20,-2.710505431213761e-20,0.0002857142826542258,-3.7895612478194786e-20,-3.1219738253486203e-20,-0.0,-0.0,-0.0,-4.81482486096809e-35,4.81482486096809e-35,1.0459746303605093e-21,0.0020000000949949026,-0.0010000000474974513,7.579122495638957e-20,-0.0013333333190530539,-1.2631871256888164e-19,2.710505431213761e-20,-3.7895612478194786e-20,0.0006666666595265269,6.315935628444082e-20,3.009265538105056e-36,-7.52316384526264e-37,-2.256949153578792e-36,-0.0,-1.0368240430603855e-35,-1.3183240890953328e-35,0.0016666667070239782,-0.0008333333535119891,9.486769009248164e-20,1.0481305708061715e-20,-0.0008333333535119891,-0.0,-3.1219738253486203e-20,6.315935628444082e-20,0.00041666667675599456,1.5092143526422446e-21,-6.018531076210112e-35,-2.0309109651638128e-20,-6.110208156137231e-35,-6.840000429171028e-20,-1.895199707212271e-20,0.0008928571478463709,-0.0,-0.0013392857508733869,-4.7704895589362195e-18,-4.007710747334733e-18,-6.938916447810095e-22,-0.0,3.009265538105056e-36,1.5092143526422446e-21,0.0002678571327123791,2.439454888092385e-19,2.846030702774449e-19,1.1102229998097382e-18,3.806478900803778e-19,6.707776125242309e-19,0.001714285695925355,1.2149909610099164e-34,-0.0006857143016532063,-0.0011428571306169033,-2.4334098521758475e-18,0.0,-0.0,-7.52316384526264e-37,-6.018531076210112e-35,2.439454888092385e-19,0.0004571428580675274,8.642715850903615e-20,5.237415540531963e-19,3.181582205123296e-19,4.350261748629427e-19,0.0014285714132711291,4.0618219303276256e-20,-0.0005714285653084517,-6.699010724935632e-20,-0.0007142857066355646,8.216205259906413e-37,-0.0,-2.256949153578792e-36,-2.0309109651638128e-20,2.846030702774449e-19,8.642715850903615e-20,0.0002857142826542258,1.3842621475283258e-33,-7.453889935837843e-20,-5.047757566357759e-20,0.0016666667070239782,2.4257478464694686e-34,-6.336727511074244e-18,-0.004999999888241291,-7.859956207262574e-18,-0.0,-4.81482486096809e-35,-0.0,-6.110208156137231e-35,1.1102229998097382e-18,5.237415540531963e-19,1.3842621475283258e-33,0.0016666667070239782,1.0105497005510531e-18,1.5860329011843016e-18,0.0020000000949949026,1.3680000858342055e-19,-2.231398904905444e-18,-0.0013333333190530539,-0.0010000000474974513,-1.3357533003857972e-36,4.81482486096809e-35,-1.0368240430603855e-35,-6.840000429171028e-20,3.806478900803778e-19,3.181582205123296e-19,-7.453889935837843e-20,1.0105497005510531e-18,0.0006666666595265269,-1.967638175275527e-19,0.0011904762359336019,3.836394210774185e-20,-3.9037448976847805e-18,-5.452136428106974e-18,-0.0023809524718672037,-7.068698076888628e-22,1.0459746303605093e-21,-1.3183240890953328e-35,-1.895199707212271e-20,6.707776125242309e-19,4.350261748629427e-19,-5.047757566357759e-20,1.5860329011843016e-18,-1.967638175275527e-19,0.0005952381179668009,5.0,6.0,4.0,6.0,0.05494897812604904,-0.013809523545205593,-0.011985544115304947,-0.016309523954987526,-0.011985544115304947,0.0009920635493472219,0.0011904762359336019,0.0016666667070239782,0.0011904762359336019,0.0007440476329065859,0.0014285714132711291,0.0010204081190750003,0.0013888889225199819,0.0014285714132711291,0.0007440476329065859,-0.013809523545205593,0.012857142835855484,0.0011904762359336019,0.0016666667070239782,0.0011904762359336019,-0.0019841270986944437,-0.0005952381179668009,-0.0008333333535119891,-0.0005952381179668009,-0.0,1.396706076328312e-21,-3.3045955944372954e-20,1.091440765019984e-34,-1.817964625571973e-19,-1.8827159038699693e-20,-0.011985544115304947,0.0011904762359336019,0.008886479772627354,0.0014285714132711291,0.0010204081190750003,-5.421010862427522e-20,-0.0004761904710903764,-2.2556911573939893e-20,-6.776263578034403e-20,-0.0011160714784637094,-0.0005714285653084517,-0.0004081632650922984,-4.55878508886246e-18,-1.4772254600114998e-18,-2.065146768720555e-18,-0.016309523954987526,0.0016666667070239782,0.0014285714132711291,0.020595237612724304,0.0014285714132711291,3.218291899097031e-20,-2.22653804912161e-20,-0.0011111111380159855,-1.2805849311693087e-19,-4.228388472693467e-18,-0.0009523809421807528,1.0710759470752816e-20,-0.004166666883975267,-0.0009523809421807528,-4.81981030635727e-19,-0.011985544115304947,0.0011904762359336019,0.0010204081190750003,0.0014285714132711291,0.008886479772627354,-0.0,-1.384201290548109e-20,5.2632794749584506e-20,-0.0004761904710903764,-2.6557574483961733e-18,1.4907779871675686e-19,-0.0004081632650922984,-1.0900507521336863e-32,-0.0005714285653084517,-0.0011160714784637094,0.0009920635493472219,-0.0019841270986944437,-5.421010862427522e-20,3.218291899097031e-20,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,6.2002982829692264e-21,5.8531227919953295e-39,-2.5155601079956873e-37,0.0,-5.553012282663965e-36,4.513107519508906e-21,0.0011904762359336019,-0.0005952381179668009,-0.0004761904710903764,-2.22653804912161e-20,-1.384201290548109e-20,-0.0,0.0002380952355451882,1.1278455786969946e-20,1.027767629791232e-20,-1.3552527156068805e-20,-0.0,-0.0,-4.81482486096809e-35,-1.166129909719488e-22,-1.2048685337466125e-21,0.0016666667070239782,-0.0008333333535119891,-2.2556911573939893e-20,-0.0011111111380159855,5.2632794749584506e-20,-0.0,1.1278455786969946e-20,0.0005555555690079927,-2.6316397374792253e-20,7.52316384526264e-37,3.76158192263132e-37,-1.504632769052528e-36,-0.0,-8.055915907771422e-36,-8.934128017978861e-38,0.0011904762359336019,-0.0005952381179668009,-6.776263578034403e-20,-1.2805849311693087e-19,-0.0004761904710903764,-0.0,1.027767629791232e-20,-2.6316397374792253e-20,0.0002380952355451882,2.764007860974603e-21,-5.58682450726164e-22,1.3218382539307895e-20,4.4906172914167195e-36,7.283519810220329e-20,8.829257397886219e-22,0.0007440476329065859,-0.0,-0.0011160714784637094,-4.228388472693467e-18,-2.6557574483961733e-18,6.2002982829692264e-21,-1.3552527156068805e-20,7.52316384526264e-37,2.764007860974603e-21,0.00022321428696159273,3.3881317890172014e-19,1.2197274440461925e-19,9.251859021064995e-19,2.7161804072037577e-19,3.9074055337868457e-19,0.0014285714132711291,1.396706076328312e-21,-0.0005714285653084517,-0.0009523809421807528,1.4907779871675686e-19,5.8531227919953295e-39,-0.0,3.76158192263132e-37,-5.58682450726164e-22,3.3881317890172014e-19,0.0003809523768723011,-5.421010862427522e-20,-4.4762817455996005e-20,-3.552946718274825e-21,-1.3094119654904543e-21,0.0010204081190750003,-3.3045955944372954e-20,-0.0004081632650922984,1.0710759470752816e-20,-0.0004081632650922984,-2.5155601079956873e-37,-0.0,-1.504632769052528e-36,1.3218382539307895e-20,1.2197274440461925e-19,-5.421010862427522e-20,0.00016326530021615326,4.81482486096809e-34,4.992580418973924e-20,4.610312792931894e-20,0.0013888889225199819,1.091440765019984e-34,-4.55878508886246e-18,-0.004166666883975267,-1.0900507521336863e-32,0.0,-4.81482486096809e-35,-0.0,4.4906172914167195e-36,9.251859021064995e-19,-4.4762817455996005e-20,4.81482486096809e-34,0.0013888889225199819,1.0400942075033569e-33,1.6246375179600368e-33,0.0014285714132711291,-1.817964625571973e-19,-1.4772254600114998e-18,-0.0009523809421807528,-0.0005714285653084517,-5.553012282663965e-36,-1.166129909719488e-22,-8.055915907771422e-36,7.283519810220329e-20,2.7161804072037577e-19,-3.552946718274825e-21,4.992580418973924e-20,1.0400942075033569e-33,0.0003809523768723011,1.9410183399408343e-19,0.0007440476329065859,-1.8827159038699693e-20,-2.065146768720555e-18,-4.81981030635727e-19,-0.0011160714784637094,4.513107519508906e-21,-1.2048685337466125e-21,-8.934128017978861e-38,8.829257397886219e-22,3.9074055337868457e-19,-1.3094119654904543e-21,4.610312792931894e-20,1.6246375179600368e-33,1.9410183399408343e-19,0.00022321428696159273,5.0,6.0,4.0,7.0,0.04833900183439255,-0.011964285746216774,-0.010382653214037418,-0.01413265336304903,-0.009175170212984085,0.0008503401186317205,0.0010204081190750003,0.0014285714132711291,0.0008928571478463709,0.0006377550889737904,0.0012244897661730647,0.0007653061184100807,0.0011904762359336019,0.0010714285308495164,0.0004960317746736109,-0.011964285746216774,0.011084184050559998,0.0010204081190750003,0.0014285714132711291,0.0008928571478463709,-0.001700680237263441,-0.0005102040595375001,-0.0007142857066355646,-0.00044642857392318547,1.4884455446353222e-18,1.7989699737683413e-18,1.1052536088822493e-18,1.1706433736779084e-18,1.1542527898401701e-18,4.756102923529968e-19,-0.010382653214037418,0.0010204081190750003,0.007660714443773031,0.0012244897661730647,0.0007653061184100807,3.8771299478855806e-18,-0.0004081632650922984,-2.0853635540298397e-19,-1.2874900798265365e-19,-0.0009566326625645161,-0.0004897959297522902,-0.0003061224415432662,-2.6872960356952302e-19,-1.2061749168901237e-18,-2.874579032159127e-19,-0.01413265336304903,0.0014285714132711291,0.0012244897661730647,0.01775510236620903,0.0010714285308495164,3.940626399656682e-18,-8.806188582682144e-19,-0.0009523809421807528,-1.6892272756660776e-19,-8.944667923005412e-19,-0.0008163265301845968,-9.634816761307139e-19,-0.0035714285913854837,-0.0007142857066355646,4.944758070458422e-20,-0.009175170212984085,0.0008928571478463709,0.0007653061184100807,0.0010714285308495164,0.005637755151838064,2.571459265375741e-18,-5.533811414609847e-19,-9.918999313640677e-20,-0.00029761905898340046,-6.057662828588148e-19,-9.622294280808852e-19,-0.00025510202976875007,-5.875874379343135e-19,-0.0003571428533177823,-0.0005952381179668009,0.0008503401186317205,-0.001700680237263441,3.8771299478855806e-18,3.940626399656682e-18,2.571459265375741e-18,0.00042517005931586027,-7.27509743137392e-20,-8.48761366993624e-20,-5.304758382151437e-20,-3.540252113123293e-19,-4.660994730674386e-19,-2.9131215128010353e-19,-3.776268713869693e-19,-3.398641894181512e-19,-1.5734453836103525e-19,0.0010204081190750003,-0.0005102040595375001,-0.0004081632650922984,-8.806188582682144e-19,-5.533811414609847e-19,-7.27509743137392e-20,0.0002040816325461492,1.0426817770149199e-19,6.451593248902779e-20,-2.710505431213761e-20,2.710505431213761e-20,2.0328790734103208e-20,1.3594567318232106e-19,5.341022820311071e-20,4.514029938983002e-20,0.0014285714132711291,-0.0007142857066355646,-2.0853635540298397e-19,-0.0009523809421807528,-9.918999313640677e-20,-8.48761366993624e-20,1.0426817770149199e-19,0.0004761904710903764,4.9594996568203386e-20,7.222237291452134e-35,1.1134282490988707e-34,6.319457630020618e-35,1.4484171624062263e-34,9.092931513937074e-35,3.56973097048099e-35,0.0008928571478463709,-0.00044642857392318547,-1.2874900798265365e-19,-1.6892272756660776e-19,-0.00029761905898340046,-5.304758382151437e-20,6.451593248902779e-20,4.9594996568203386e-20,0.00014880952949170023,-1.5273727442336308e-21,-7.782705800970518e-22,3.057698377851234e-21,1.2187525429325477e-34,2.3892805032038765e-20,1.3639028922391685e-20,0.0006377550889737904,1.4884455446353222e-18,-0.0009566326625645161,-8.944667923005412e-19,-6.057662828588148e-19,-3.540252113123293e-19,-2.710505431213761e-20,7.222237291452134e-35,-1.5273727442336308e-21,0.00019132652960252017,6.776263578034403e-20,4.743384504624082e-20,4.9563528162009426e-20,1.1668362232098448e-19,3.368566059473481e-20,0.0012244897661730647,1.7989699737683413e-18,-0.0004897959297522902,-0.0008163265301845968,-9.622294280808852e-19,-4.660994730674386e-19,2.710505431213761e-20,1.1134282490988707e-34,-7.782705800970518e-22,6.776263578034403e-20,0.00032653060043230653,1.5585406229479126e-19,-4.0144825131181866e-19,7.532665964486448e-20,4.980071574031047e-20,0.0007653061184100807,1.1052536088822493e-18,-0.0003061224415432662,-9.634816761307139e-19,-0.00025510202976875007,-2.9131215128010353e-19,2.0328790734103208e-20,6.319457630020618e-35,3.057698377851234e-21,4.743384504624082e-20,1.5585406229479126e-19,0.0001020408162730746,5.664402941557569e-20,8.02598678829027e-20,-4.0583972087212e-20,0.0011904762359336019,1.1706433736779084e-18,-2.6872960356952302e-19,-0.0035714285913854837,-5.875874379343135e-19,-3.776268713869693e-19,1.3594567318232106e-19,1.4484171624062263e-34,1.2187525429325477e-34,4.9563528162009426e-20,-4.0144825131181866e-19,5.664402941557569e-20,0.0011904762359336019,2.9731823215966863e-19,-2.2028234918180537e-20,0.0010714285308495164,1.1542527898401701e-18,-1.2061749168901237e-18,-0.0007142857066355646,-0.0003571428533177823,-3.398641894181512e-19,5.341022820311071e-20,9.092931513937074e-35,2.3892805032038765e-20,1.1668362232098448e-19,7.532665964486448e-20,8.02598678829027e-20,2.9731823215966863e-19,0.0002380952355451882,-6.532586509333938e-20,0.0004960317746736109,4.756102923529968e-19,-2.874579032159127e-19,4.944758070458422e-20,-0.0005952381179668009,-1.5734453836103525e-19,4.514029938983002e-20,3.56973097048099e-35,1.3639028922391685e-20,3.368566059473481e-20,4.980071574031047e-20,-4.0583972087212e-20,-2.2028234918180537e-20,-6.532586509333938e-20,9.920635056914762e-05,5.0,6.0,4.0,8.0,0.04315972328186035,-0.010555555112659931,-0.009159225970506668,-0.012470237910747528,-0.0072519839741289616,0.0007440476329065859,0.0008928571478463709,0.0012499999720603228,0.0006944444612599909,0.0005580357392318547,0.0010714285308495164,0.0005952381179668009,0.0010416667209938169,0.0008333333535119891,0.00034722223062999547,-0.010555555112659931,0.009742063470184803,0.0008928571478463709,0.0012499999720603228,0.0006944444612599909,-0.0014880952658131719,-0.00044642857392318547,-0.0006249999860301614,-0.00034722223062999547,-8.425943506694157e-35,0.0,5.929230630780102e-20,0.0,3.868579937655594e-20,-2.724181699419589e-20,-0.009159225970506668,0.0008928571478463709,0.006732887122780085,0.0010714285308495164,0.0005952381179668009,-0.0,-0.0003571428533177823,-0.0,5.929230630780102e-20,-0.0008370535797439516,-0.00042857142398133874,-0.0002380952355451882,1.734723475976807e-18,4.498712751237022e-19,5.396688133503283e-19,-0.012470237910747528,0.0012499999720603228,0.0010714285308495164,0.015605159103870392,0.0008333333535119891,-0.0,-0.0,-0.0008333333535119891,3.868579937655594e-20,1.7534161034592804e-18,-0.0007142857066355646,5.336307567702092e-20,-0.0031250000465661287,-0.0005555555690079927,1.1446275869855324e-19,-0.0072519839741289616,0.0006944444612599909,0.0005952381179668009,0.0008333333535119891,0.00380810652859509,-0.0,-0.0,-0.0,-0.00019841270113829523,9.04348912283559e-19,-9.400006798598468e-34,-0.0001700680295471102,-1.8741874381289235e-33,-0.0002380952355451882,-0.00034722223062999547,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.00044642857392318547,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0006249999860301614,-0.0,-0.0008333333535119891,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,5.929230630780102e-20,3.868579937655594e-20,-0.00019841270113829523,-0.0,-0.0,-0.0,9.920635056914762e-05,2.407412430484045e-35,-0.0,-1.6940658945086007e-20,-0.0,-1.1053085420759759e-20,7.783376168656888e-21,0.0005580357392318547,-8.425943506694157e-35,-0.0008370535797439516,1.7534161034592804e-18,9.04348912283559e-19,-0.0,-0.0,-0.0,2.407412430484045e-35,0.00016741071885917336,-1.7401046994517708e-19,-8.286212639120624e-20,-3.4694470036524025e-19,-7.930164376674537e-20,-8.26058813470738e-20,0.0010714285308495164,0.0,-0.00042857142398133874,-0.0007142857066355646,-9.400006798598468e-34,-0.0,-0.0,-0.0,-0.0,-1.7401046994517708e-19,0.0002857142826542258,8.61287580706745e-35,3.606221288304702e-34,8.242791384931467e-35,8.586241217294229e-35,0.0005952381179668009,5.929230630780102e-20,-0.0002380952355451882,5.336307567702092e-20,-0.0001700680295471102,-0.0,-0.0,-0.0,-1.6940658945086007e-20,-8.286212639120624e-20,8.61287580706745e-35,6.80272132740356e-05,1.7172482434588457e-34,-1.5246593050577406e-20,-3.618268945065939e-20,0.0010416667209938169,0.0,1.734723475976807e-18,-0.0031250000465661287,-1.8741874381289235e-33,-0.0,-0.0,-0.0,-0.0,-3.4694470036524025e-19,3.606221288304702e-34,1.7172482434588457e-34,0.0010416667209938169,1.643460259005823e-34,1.7119377410991397e-34,0.0008333333535119891,3.868579937655594e-20,4.498712751237022e-19,-0.0005555555690079927,-0.0002380952355451882,-0.0,-0.0,-0.0,-1.1053085420759759e-20,-7.930164376674537e-20,8.242791384931467e-35,-1.5246593050577406e-20,1.643460259005823e-34,0.00015873015217948705,-3.270364534244378e-20,0.00034722223062999547,-2.724181699419589e-20,5.396688133503283e-19,1.1446275869855324e-19,-0.00034722223062999547,-0.0,-0.0,-0.0,7.783376168656888e-21,-8.26058813470738e-20,8.586241217294229e-35,-3.618268945065939e-20,1.7119377410991397e-34,-3.270364534244378e-20,4.960317528457381e-05,5.0,6.0,5.0,3.0,0.07904762029647827,-0.021111110225319862,-0.018333332613110542,-0.021111110225319862,-0.030476190149784088,0.0015873016091063619,0.0019047618843615055,0.002222222276031971,0.0033333334140479565,0.0011904762359336019,0.0019047618843615055,0.0028571428265422583,0.0015873016091063619,0.0033333334140479565,0.0033333334140479565,-0.021111110225319862,0.020079365000128746,0.0019047618843615055,0.002222222276031971,0.0033333334140479565,-0.0031746032182127237,-0.0009523809421807528,-0.0011111111380159855,-0.0016666667070239782,5.421010862427522e-20,3.7284099823319353e-20,-3.275345389378169e-20,-1.0842021724855044e-19,2.8204290104515354e-20,-2.0989964623731146e-34,-0.018333332613110542,0.0019047618843615055,0.013880952261388302,0.0019047618843615055,0.0028571428265422583,-5.421010862427522e-20,-0.0007619047537446022,6.61323338788359e-20,-6.315935628444082e-20,-0.0017857142956927419,-0.0007619047537446022,-0.0011428571306169033,2.7739253687782017e-18,1.9244588561617704e-18,8.865417402877931e-18,-0.021111110225319862,0.002222222276031971,0.0019047618843615055,0.020079365000128746,0.0033333334140479565,1.2313329011314108e-20,-2.1425192786648104e-20,-0.0011111111380159855,-3.6003941251833296e-36,2.7647155398380363e-18,-0.0009523809421807528,6.904039718219117e-20,-0.0031746032182127237,-0.0016666667070239782,-1.2265149198782027e-32,-0.030476190149784088,0.0033333334140479565,0.0028571428265422583,0.0033333334140479565,0.06380952149629593,1.0842021724855044e-19,-9.616128424824093e-20,2.8514883499831945e-20,-0.0033333334140479565,4.738594301696787e-18,2.710505431213761e-19,-0.0028571428265422583,-0.0,-0.0033333334140479565,-0.019999999552965164,0.0015873016091063619,-0.0031746032182127237,-5.421010862427522e-20,1.2313329011314108e-20,1.0842021724855044e-19,0.0007936508045531809,-0.0,-0.0,-0.0,-8.961591553662106e-21,5.019041695852158e-37,2.352418474493695e-37,2.823354838751015e-20,7.606954767196635e-37,-0.0,0.0019047618843615055,-0.0009523809421807528,-0.0007619047537446022,-2.1425192786648104e-20,-9.616128424824093e-20,-0.0,0.0003809523768723011,1.498639143355406e-20,3.157967814222041e-20,-0.0,6.776263578034403e-21,1.3552527156068805e-20,-5.758288587317191e-21,-4.396948117246572e-22,9.62964972193618e-35,0.002222222276031971,-0.0011111111380159855,6.61323338788359e-20,-0.0011111111380159855,2.8514883499831945e-20,-0.0,1.498639143355406e-20,0.0005555555690079927,1.4237853361999794e-36,-7.61359169337541e-21,-2.711237938420268e-20,-5.639319477080626e-22,5.638646999486156e-37,-1.3552527156068805e-20,-1.542079840554651e-35,0.0033333334140479565,-0.0016666667070239782,-6.315935628444082e-20,-3.6003941251833296e-36,-0.0033333334140479565,-0.0,3.157967814222041e-20,1.4237853361999794e-36,0.0016666667070239782,-0.0,7.52316384526264e-37,7.52316384526264e-37,-2.5092374493246538e-37,-3.644922480229753e-38,0.0,0.0011904762359336019,5.421010862427522e-20,-0.0017857142956927419,2.7647155398380363e-18,4.738594301696787e-18,-8.961591553662106e-21,-0.0,-7.61359169337541e-21,-0.0,0.0003571428533177823,-2.168404344971009e-19,-3.5236570605778894e-19,-4.55273229812768e-19,-3.1823711286325186e-19,-1.5860329011843016e-18,0.0019047618843615055,3.7284099823319353e-20,-0.0007619047537446022,-0.0009523809421807528,2.710505431213761e-19,5.019041695852158e-37,6.776263578034403e-21,-2.711237938420268e-20,7.52316384526264e-37,-2.168404344971009e-19,0.0003809523768723011,-0.0,-2.4176323125695876e-19,-1.3552527156068805e-19,1.2037062152420224e-33,0.0028571428265422583,-3.275345389378169e-20,-0.0011428571306169033,6.904039718219117e-20,-0.0028571428265422583,2.352418474493695e-37,1.3552527156068805e-20,-5.639319477080626e-22,7.52316384526264e-37,-3.5236570605778894e-19,-0.0,0.0011428571306169033,-1.6112341363087502e-21,-6.090366060340286e-20,-9.352527935588464e-19,0.0015873016091063619,-1.0842021724855044e-19,2.7739253687782017e-18,-0.0031746032182127237,-0.0,2.823354838751015e-20,-5.758288587317191e-21,5.638646999486156e-37,-2.5092374493246538e-37,-4.55273229812768e-19,-2.4176323125695876e-19,-1.6112341363087502e-21,0.0007936508045531809,-2.430108328781904e-20,1.9683408622099424e-33,0.0033333334140479565,2.8204290104515354e-20,1.9244588561617704e-18,-0.0016666667070239782,-0.0033333334140479565,7.606954767196635e-37,-4.396948117246572e-22,-1.3552527156068805e-20,-3.644922480229753e-38,-3.1823711286325186e-19,-1.3552527156068805e-19,-6.090366060340286e-20,-2.430108328781904e-20,0.0016666667070239782,1.4287827103687737e-33,0.0033333334140479565,-2.0989964623731146e-34,8.865417402877931e-18,-1.2265149198782027e-32,-0.019999999552965164,-0.0,9.62964972193618e-35,-1.542079840554651e-35,0.0,-1.5860329011843016e-18,1.2037062152420224e-33,-9.352527935588464e-19,1.9683408622099424e-33,1.4287827103687737e-33,0.009999999776482582,5.0,6.0,5.0,4.0,0.06369047611951828,-0.016333334147930145,-0.014178571291267872,-0.016333334147930145,-0.019285714253783226,0.0011904762359336019,0.0014285714132711291,0.0016666667070239782,0.0020000000949949026,0.0008928571478463709,0.0014285714132711291,0.001714285695925355,0.0011904762359336019,0.0020000000949949026,0.0016666667070239782,-0.016333334147930145,0.015309523791074753,0.0014285714132711291,0.0016666667070239782,0.0020000000949949026,-0.0023809524718672037,-0.0007142857066355646,-0.0008333333535119891,-0.0010000000474974513,-0.0,3.49825150053303e-20,-0.0,5.421010862427522e-20,2.710505431213761e-20,1.2037062152420224e-34,-0.014178571291267872,0.0014285714132711291,0.010582142509520054,0.0014285714132711291,0.001714285695925355,5.421010862427522e-20,-0.0005714285653084517,8.498147944284074e-20,7.579122495638957e-20,-0.0013392857508733869,-0.0005714285653084517,-0.0006857143016532063,-3.919830665466793e-18,-2.3925212805215856e-18,-6.336727511074244e-18,-0.016333334147930145,0.0016666667070239782,0.0014285714132711291,0.015309523791074753,0.0020000000949949026,-4.3135100493902107e-20,7.505507944765713e-20,-0.0008333333535119891,-7.166510651425689e-36,-4.065758146820642e-18,-0.0007142857066355646,-2.151623745474452e-18,-0.0023809524718672037,-0.0010000000474974513,-1.912445260941778e-32,-0.019285714253783226,0.0020000000949949026,0.001714285695925355,0.0020000000949949026,0.024523809552192688,-5.421010862427522e-20,7.579122495638957e-20,2.710505431213761e-20,-0.0013333333190530539,-4.641020076640032e-18,1.8618284624920116e-19,-0.0011428571306169033,-9.75781955236954e-19,-0.0013333333190530539,-0.004999999888241291,0.0011904762359336019,-0.0023809524718672037,5.421010862427522e-20,-4.3135100493902107e-20,-5.421010862427522e-20,0.0005952381179668009,-2.710505431213761e-20,-0.0,2.710505431213761e-20,1.4572539402161856e-20,-1.288992015472829e-37,-0.0,1.4205146809979002e-20,0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0005714285653084517,7.505507944765713e-20,7.579122495638957e-20,-2.710505431213761e-20,0.0002857142826542258,-3.0930955284477163e-20,-3.7895612478194786e-20,-2.710505431213761e-20,-0.0,-0.0,-3.032911434197878e-21,1.8055593228630336e-35,-4.81482486096809e-35,0.0016666667070239782,-0.0008333333535119891,8.498147944284074e-20,-0.0008333333535119891,2.710505431213761e-20,-0.0,-3.0930955284477163e-20,0.00041666667675599456,4.267453448428732e-36,2.1860465080055024e-21,-1.749125750266515e-20,-0.0,-5.421010862427522e-20,-1.3552527156068805e-20,-0.0,0.0020000000949949026,-0.0010000000474974513,7.579122495638957e-20,-7.166510651425689e-36,-0.0013333333190530539,2.710505431213761e-20,-3.7895612478194786e-20,4.267453448428732e-36,0.0006666666595265269,-0.0,-7.52316384526264e-37,-0.0,1.1779179245423066e-37,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0013392857508733869,-4.065758146820642e-18,-4.641020076640032e-18,1.4572539402161856e-20,-2.710505431213761e-20,2.1860465080055024e-21,-0.0,0.0002678571327123791,2.846030702774449e-19,2.168404344971009e-19,6.722778079626724e-19,3.806478900803778e-19,1.1102229998097382e-18,0.0014285714132711291,3.49825150053303e-20,-0.0005714285653084517,-0.0007142857066355646,1.8618284624920116e-19,-1.288992015472829e-37,-0.0,-1.749125750266515e-20,-7.52316384526264e-37,2.846030702774449e-19,0.0002857142826542258,-5.2789093111265815e-20,-4.242657183163642e-20,-2.710505431213761e-20,1.1719569393457778e-33,0.001714285695925355,-0.0,-0.0006857143016532063,-2.151623745474452e-18,-0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,2.168404344971009e-19,-5.2789093111265815e-20,0.0004571428580675274,4.350261748629427e-19,3.6232793331325376e-19,5.237415540531963e-19,0.0011904762359336019,5.421010862427522e-20,-3.919830665466793e-18,-0.0023809524718672037,-9.75781955236954e-19,1.4205146809979002e-20,-3.032911434197878e-21,-5.421010862427522e-20,1.1779179245423066e-37,6.722778079626724e-19,-4.242657183163642e-20,4.350261748629427e-19,0.0005952381179668009,-3.240144330670063e-20,3.31576320045449e-33,0.0020000000949949026,2.710505431213761e-20,-2.3925212805215856e-18,-0.0010000000474974513,-0.0013333333190530539,0.0,1.8055593228630336e-35,-1.3552527156068805e-20,-0.0,3.806478900803778e-19,-2.710505431213761e-20,3.6232793331325376e-19,-3.240144330670063e-20,0.0006666666595265269,1.9543381530977565e-33,0.0016666667070239782,1.2037062152420224e-34,-6.336727511074244e-18,-1.912445260941778e-32,-0.004999999888241291,-0.0,-4.81482486096809e-35,-0.0,-0.0,1.1102229998097382e-18,1.1719569393457778e-33,5.237415540531963e-19,3.31576320045449e-33,1.9543381530977565e-33,0.0016666667070239782,5.0,6.0,5.0,5.0,0.05342857167124748,-0.013333333656191826,-0.01157142873853445,-0.013333333656191826,-0.013333333656191826,0.0009523809421807528,0.0011428571306169033,0.0013333333190530539,0.0013333333190530539,0.0007142857066355646,0.0011428571306169033,0.0011428571306169033,0.0009523809421807528,0.0013333333190530539,0.0009523809421807528,-0.013333333656191826,0.012380952015519142,0.0011428571306169033,0.0013333333190530539,0.0013333333190530539,-0.0019047618843615055,-0.0005714285653084517,-0.0006666666595265269,-0.0006666666595265269,5.421010862427522e-20,7.839394875378767e-20,7.487462482714985e-20,5.421010862427522e-20,-1.1199264552427931e-20,9.203797630277162e-20,-0.01157142873853445,0.0011428571306169033,0.008557142689824104,0.0011428571306169033,0.0011428571306169033,-1.0842021724855044e-19,-0.0004571428580675274,1.2092324607774552e-19,1.2197274440461925e-19,-0.0010714285308495164,-0.0004571428580675274,-0.0004571428580675274,1.4540413452004401e-18,5.290615144640429e-19,1.498813633228215e-18,-0.013333333656191826,0.0013333333190530539,0.0011428571306169033,0.012380952015519142,0.0013333333190530539,-1.6776920804653122e-20,3.064102201742879e-20,-0.0006666666595265269,-1.8114764680319386e-21,1.7889335846010823e-18,-0.0005714285653084517,-6.776263578034403e-20,-0.0019047618843615055,-0.0006666666595265269,-1.4433203089799286e-20,-0.013333333656191826,0.0013333333190530539,0.0011428571306169033,0.0013333333190530539,0.012380952015519142,-0.0,4.9718146313071486e-20,5.256770355175354e-21,-0.0006666666595265269,1.8478923303268713e-18,2.2320856522219706e-20,-0.0005714285653084517,5.421010862427522e-20,-0.0006666666595265269,-0.0019047618843615055,0.0009523809421807528,-0.0019047618843615055,-1.0842021724855044e-19,-1.6776920804653122e-20,-0.0,0.0004761904710903764,2.710505431213761e-20,-0.0,-0.0,-4.036146211802237e-21,1.080911233476999e-36,6.58459879671085e-37,-6.252257584679131e-22,-2.582797323014798e-37,-3.372656079861644e-21,0.0011428571306169033,-0.0005714285653084517,-0.0004571428580675274,3.064102201742879e-20,4.9718146313071486e-20,2.710505431213761e-20,0.0002285714290337637,-2.0483084152151356e-20,-2.0570545577231768e-20,-1.3552527156068805e-20,-0.0,-0.0,2.373596989153222e-21,-4.513898307157584e-36,-1.9717368552107274e-21,0.0013333333190530539,-0.0006666666595265269,1.2092324607774552e-19,-0.0006666666595265269,5.256770355175354e-21,-0.0,-2.0483084152151356e-20,0.00033333332976326346,-5.624955392847382e-22,-5.903952649612239e-22,-3.868826153134799e-20,3.116661956605934e-22,-2.710505431213761e-20,-0.0,-1.1289528011443688e-21,0.0013333333190530539,-0.0006666666595265269,1.2197274440461925e-19,-1.8114764680319386e-21,-0.0006666666595265269,-0.0,-2.0570545577231768e-20,-5.624955392847382e-22,0.00033333332976326346,-7.953817178159901e-22,-5.087123911619628e-22,-3.774897855874842e-20,-1.6071301410918795e-21,5.599632276213966e-21,-3.508983522746052e-20,0.0007142857066355646,5.421010862427522e-20,-0.0010714285308495164,1.7889335846010823e-18,1.8478923303268713e-18,-4.036146211802237e-21,-1.3552527156068805e-20,-5.903952649612239e-22,-7.953817178159901e-22,0.00021428571199066937,-1.8973538018496328e-19,-1.8973538018496328e-19,-2.827722352385295e-19,-1.268826300267926e-19,-2.895464050156384e-19,0.0011428571306169033,7.839394875378767e-20,-0.0004571428580675274,-0.0005714285653084517,2.2320856522219706e-20,1.080911233476999e-36,-0.0,-3.868826153134799e-20,-5.087123911619628e-22,-1.8973538018496328e-19,0.0002285714290337637,-1.1413356504856414e-20,-2.1032895918796295e-20,6.776263578034403e-21,-1.4534639747484652e-21,0.0011428571306169033,7.487462482714985e-20,-0.0004571428580675274,-6.776263578034403e-20,-0.0005714285653084517,6.58459879671085e-37,-0.0,3.116661956605934e-22,-3.774897855874842e-20,-1.8973538018496328e-19,-1.1413356504856414e-20,0.0002285714290337637,8.90474772620127e-22,4.589956395044847e-20,-1.8349227974815905e-20,0.0009523809421807528,5.421010862427522e-20,1.4540413452004401e-18,-0.0019047618843615055,5.421010862427522e-20,-6.252257584679131e-22,2.373596989153222e-21,-2.710505431213761e-20,-1.6071301410918795e-21,-2.827722352385295e-19,-2.1032895918796295e-20,8.90474772620127e-22,0.0004761904710903764,-3.894404290197301e-21,-6.939825619469693e-21,0.0013333333190530539,-1.1199264552427931e-20,5.290615144640429e-19,-0.0006666666595265269,-0.0006666666595265269,-2.582797323014798e-37,-4.513898307157584e-36,-0.0,5.599632276213966e-21,-1.268826300267926e-19,6.776263578034403e-21,4.589956395044847e-20,-3.894404290197301e-21,0.00033333332976326346,2.5256504360299063e-20,0.0009523809421807528,9.203797630277162e-20,1.498813633228215e-18,-1.4433203089799286e-20,-0.0019047618843615055,-3.372656079861644e-21,-1.9717368552107274e-21,-1.1289528011443688e-21,-3.508983522746052e-20,-2.895464050156384e-19,-1.4534639747484652e-21,-1.8349227974815905e-20,-6.939825619469693e-21,2.5256504360299063e-20,0.0004761904710903764,5.0,6.0,5.0,6.0,0.0460544228553772,-0.011269841343164444,-0.009778911247849464,-0.011269841343164444,-0.009778911247849464,0.0007936508045531809,0.0009523809421807528,0.0011111111380159855,0.0009523809421807528,0.0005952381179668009,0.0009523809421807528,0.0008163265301845968,0.0007936508045531809,0.0009523809421807528,0.0005952381179668009,-0.011269841343164444,0.010396825149655342,0.0009523809421807528,0.0011111111380159855,0.0009523809421807528,-0.0015873016091063619,-0.0004761904710903764,-0.0005555555690079927,-0.0004761904710903764,2.710505431213761e-20,5.232085395459825e-20,1.902161110613501e-20,5.421010862427522e-20,-1.6594907142561645e-20,9.389747185744229e-21,-0.009778911247849464,0.0009523809421807528,0.007185373920947313,0.0009523809421807528,0.0008163265301845968,-0.0,-0.0003809523768723011,1.998660130120908e-20,1.3552527156068805e-20,-0.0008928571478463709,-0.0003809523768723011,-0.00032653060043230653,1.3852875402511044e-18,3.0394467264925437e-19,9.611578155973227e-19,-0.011269841343164444,0.0011111111380159855,0.0009523809421807528,0.010396825149655342,0.0009523809421807528,9.579326642383726e-21,-6.827340365272418e-21,-0.0005555555690079927,-9.840688250969207e-21,1.4907779871675686e-18,-0.0004761904710903764,-1.0164395367051604e-19,-0.0015873016091063619,-0.0004761904710903764,-3.086222820780137e-20,-0.009778911247849464,0.0009523809421807528,0.0008163265301845968,0.0009523809421807528,0.007185373920947313,-0.0,-3.924250646908833e-21,-1.1874595726369607e-22,-0.0003809523768723011,9.497845991626015e-19,-5.3560565048267957e-20,-0.00032653060043230653,-0.0,-0.0003809523768723011,-0.0008928571478463709,0.0007936508045531809,-0.0015873016091063619,-0.0,9.579326642383726e-21,-0.0,0.00039682540227659047,-0.0,-0.0,-0.0,2.0315323603651863e-21,-5.435221061939508e-37,2.3096584684261474e-37,1.3763163569566284e-21,-2.4176442656971136e-38,-1.829487639245749e-21,0.0009523809421807528,-0.0004761904710903764,-0.0003809523768723011,-6.827340365272418e-21,-3.924250646908833e-21,-0.0,0.00019047618843615055,9.572327918919703e-21,6.85901475882595e-21,-1.3552527156068805e-20,-3.3881317890172014e-21,-0.0,-8.843647230539409e-22,3.009265538105056e-36,-1.80475037489676e-21,0.0011111111380159855,-0.0005555555690079927,1.998660130120908e-20,-0.0005555555690079927,-1.1874595726369607e-22,-0.0,9.572327918919703e-21,0.00027777778450399637,-5.286489888296876e-22,1.0661701763535383e-21,-2.2361978061538676e-20,-7.722081777295411e-23,-2.710505431213761e-20,-0.0,2.5229041499481e-22,0.0009523809421807528,-0.0004761904710903764,1.3552527156068805e-20,-9.840688250969207e-21,-0.0003809523768723011,-0.0,6.85901475882595e-21,-5.286489888296876e-22,0.00019047618843615055,-1.6772971098007538e-21,3.4937266145755217e-22,-7.546867944745644e-21,-1.5104256390958806e-21,6.637962453127874e-21,1.0303275679945633e-21,0.0005952381179668009,2.710505431213761e-20,-0.0008928571478463709,1.4907779871675686e-18,9.497845991626015e-19,2.0315323603651863e-21,-1.3552527156068805e-20,1.0661701763535383e-21,-1.6772971098007538e-21,0.00017857142665889114,-1.3552527156068805e-19,1.3552527156068805e-20,-2.238322044740995e-19,-9.063045094233022e-20,-1.6028600554397089e-19,0.0009523809421807528,5.232085395459825e-20,-0.0003809523768723011,-0.0004761904710903764,-5.3560565048267957e-20,-5.435221061939508e-37,-3.3881317890172014e-21,-2.2361978061538676e-20,3.4937266145755217e-22,-1.3552527156068805e-19,0.00019047618843615055,3.937571061853582e-22,-1.3248848473685275e-19,2.371692252312041e-20,8.188421634582243e-22,0.0008163265301845968,1.902161110613501e-20,-0.00032653060043230653,-1.0164395367051604e-19,-0.00032653060043230653,2.3096584684261474e-37,-0.0,-7.722081777295411e-23,-7.546867944745644e-21,1.3552527156068805e-20,3.937571061853582e-22,0.00013061224308330566,-2.206309151351686e-22,4.070949997634119e-20,-6.233184609211248e-20,0.0007936508045531809,5.421010862427522e-20,1.3852875402511044e-18,-0.0015873016091063619,-0.0,1.3763163569566284e-21,-8.843647230539409e-22,-2.710505431213761e-20,-1.5104256390958806e-21,-2.238322044740995e-19,-1.3248848473685275e-19,-2.206309151351686e-22,0.00039682540227659047,-7.788808681368797e-23,3.1149206565981853e-21,0.0009523809421807528,-1.6594907142561645e-20,3.0394467264925437e-19,-0.0004761904710903764,-0.0003809523768723011,-2.4176442656971136e-38,3.009265538105056e-36,-0.0,6.637962453127874e-21,-9.063045094233022e-20,2.371692252312041e-20,4.070949997634119e-20,-7.788808681368797e-23,0.00019047618843615055,5.904254865380473e-21,0.0005952381179668009,9.389747185744229e-21,9.611578155973227e-19,-3.086222820780137e-20,-0.0008928571478463709,-1.829487639245749e-21,-1.80475037489676e-21,2.5229041499481e-22,1.0303275679945633e-21,-1.6028600554397089e-19,8.188421634582243e-22,-6.233184609211248e-20,3.1149206565981853e-21,5.904254865380473e-21,0.00017857142665889114,5.0,6.0,5.0,7.0,0.04048752784729004,-0.009761904366314411,-0.008469387888908386,-0.009761904366314411,-0.007482993416488171,0.0006802721181884408,0.0008163265301845968,0.0009523809421807528,0.0007142857066355646,0.0005102040595375001,0.0008163265301845968,0.0006122448830865324,0.0006802721181884408,0.0007142857066355646,0.00039682540227659047,-0.009761904366314411,0.008962584659457207,0.0008163265301845968,0.0009523809421807528,0.0007142857066355646,-0.0013605442363768816,-0.0004081632650922984,-0.0004761904710903764,-0.0003571428533177823,2.2006722163802407e-21,8.470329472543003e-21,-1.3077070363880574e-20,0.0,-2.541098841762901e-21,5.837687424805911e-21,-0.008469387888908386,0.0008163265301845968,0.006193877663463354,0.0008163265301845968,0.0006122448830865324,-0.0,-0.00032653060043230653,-0.0,-0.0,-0.0007653061184100807,-0.00032653060043230653,-0.0002448979648761451,1.1237348917182153e-18,2.768584108466582e-19,4.141902190157679e-19,-0.009761904366314411,0.0009523809421807528,0.0008163265301845968,0.008962584659457207,0.0007142857066355646,-0.0,8.470329472543003e-21,-0.0004761904710903764,-2.541098841762901e-21,1.1926223897340549e-18,-0.0004081632650922984,-6.14639785331795e-20,-0.0013605442363768816,-0.0003571428533177823,-1.9546914012062014e-21,-0.007482993416488171,0.0007142857066355646,0.0006122448830865324,0.0007142857066355646,0.004557823296636343,-0.0,6.940073612094745e-22,-0.0,-0.0002380952355451882,9.662393928953891e-19,-3.299019880120805e-20,-0.0002040816325461492,-1.193299508652895e-33,-0.0002380952355451882,-0.0004761904710903764,0.0006802721181884408,-0.0013605442363768816,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,-0.0004081632650922984,-0.00032653060043230653,8.470329472543003e-21,6.940073612094745e-22,-0.0,0.00016326530021615326,-0.0,-3.129844895183008e-22,-0.0,-3.3881317890172014e-21,3.3881317890172014e-21,-0.0,-0.0,-1.31359502350269e-21,0.0009523809421807528,-0.0004761904710903764,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0003571428533177823,-0.0,-2.541098841762901e-21,-0.0002380952355451882,-0.0,-3.129844895183008e-22,-0.0,0.0001190476177725941,-7.335574391181455e-22,3.009265538105056e-36,1.535580229796393e-21,-0.0,8.470329472543003e-22,-8.512332718540294e-22,0.0005102040595375001,2.2006722163802407e-21,-0.0007653061184100807,1.1926223897340549e-18,9.662393928953891e-19,-0.0,-0.0,-0.0,-7.335574391181455e-22,0.0001530612207716331,-1.0164395367051604e-19,-8.809142651444724e-20,-1.9420811377809942e-19,-6.797283659116053e-20,-9.705253904652414e-20,0.0008163265301845968,8.470329472543003e-21,-0.00032653060043230653,-0.0004081632650922984,-3.299019880120805e-20,-0.0,-3.3881317890172014e-21,-0.0,3.009265538105056e-36,-1.0164395367051604e-19,0.00016326530021615326,6.289680237255053e-21,-7.634716787620763e-20,8.632998094293251e-21,6.846079099189002e-35,0.0006122448830865324,-1.3077070363880574e-20,-0.0002448979648761451,-6.14639785331795e-20,-0.0002040816325461492,-0.0,3.3881317890172014e-21,-0.0,1.535580229796393e-21,-8.809142651444724e-20,6.289680237255053e-21,8.163265010807663e-05,1.1799246099513192e-34,1.5246593050577406e-20,2.4405774949682416e-20,0.0006802721181884408,0.0,1.1237348917182153e-18,-0.0013605442363768816,-1.193299508652895e-33,-0.0,-0.0,-0.0,-0.0,-1.9420811377809942e-19,-7.634716787620763e-20,1.1799246099513192e-34,0.0003401360590942204,7.542771871636073e-35,1.2457715790515605e-34,0.0007142857066355646,-2.541098841762901e-21,2.768584108466582e-19,-0.0003571428533177823,-0.0002380952355451882,-0.0,-0.0,-0.0,8.470329472543003e-22,-6.797283659116053e-20,8.632998094293251e-21,1.5246593050577406e-20,7.542771871636073e-35,0.0001190476177725941,6.515638172310998e-22,0.00039682540227659047,5.837687424805911e-21,4.141902190157679e-19,-1.9546914012062014e-21,-0.0004761904710903764,-0.0,-1.31359502350269e-21,-0.0,-8.512332718540294e-22,-9.705253904652414e-20,6.846079099189002e-35,2.4405774949682416e-20,1.2457715790515605e-34,6.515638172310998e-22,7.936507608974352e-05,5.0,6.0,5.0,8.0,0.03613095358014107,-0.008611110970377922,-0.007470238022506237,-0.008611110970377922,-0.0059126983396708965,0.0005952381179668009,0.0007142857066355646,0.0008333333535119891,0.0005555555690079927,0.00044642857392318547,0.0007142857066355646,0.0004761904710903764,0.0005952381179668009,0.0005555555690079927,0.00027777778450399637,-0.008611110970377922,0.007876983843743801,0.0007142857066355646,0.0008333333535119891,0.0005555555690079927,-0.0011904762359336019,-0.0003571428533177823,-0.00041666667675599456,-0.00027777778450399637,-2.3148791682262452e-33,-6.020043423160842e-33,8.45280978716913e-19,-1.504457179583874e-32,8.98664423716518e-19,1.5660343623097602e-18,-0.007470238022506237,0.0007142857066355646,0.005443452391773462,0.0007142857066355646,0.0004761904710903764,4.531522353246055e-19,-0.0002857142826542258,2.1147105004465433e-19,1.9792060376481398e-19,-0.0006696428754366934,-0.0002857142826542258,-0.00019047618843615055,-1.2461686859167563e-18,3.9825897891193803e-19,1.0061528220050275e-18,-0.008611110970377922,0.0008333333535119891,0.0007142857066355646,0.007876983843743801,0.0005555555690079927,5.2867765096103e-19,2.1147105004465433e-19,-0.00041666667675599456,1.434107197166707e-19,-1.7140861468742216e-18,-0.0003571428533177823,9.342194381786146e-19,-0.0011904762359336019,-0.00027777778450399637,1.5722432833851598e-18,-0.0059126983396708965,0.0005555555690079927,0.0004761904710903764,0.0005555555690079927,0.003078231355175376,2.9293056633771532e-18,1.1717222239918307e-18,1.3670093302555202e-18,-0.00015873015217948705,4.0438714648003714e-19,1.0508816830506434e-18,-0.0001360544265480712,2.6272042076266084e-18,-0.00015873015217948705,-0.00027777778450399637,0.0005952381179668009,-0.0011904762359336019,4.531522353246055e-19,5.2867765096103e-19,2.9293056633771532e-18,0.00029761905898340046,1.1150339927491932e-33,1.3008730374584735e-33,-1.5105075372466654e-19,3.848227794901423e-34,1.0000396966765682e-33,-1.2947206723560157e-19,2.5000992416914206e-33,-1.5105075372466654e-19,-2.64338825480515e-19,0.0007142857066355646,-0.0003571428533177823,-0.0002857142826542258,2.1147105004465433e-19,1.1717222239918307e-18,1.1150339927491932e-33,0.0001428571413271129,5.203491966162902e-34,-6.042030278233632e-20,1.5392911409194433e-34,4.0001590622127614e-34,-5.1788828186710334e-20,1.0000396966765682e-33,-6.042030278233632e-20,-1.0573552502232717e-19,0.0008333333535119891,-0.00041666667675599456,2.1147105004465433e-19,-0.00041666667675599456,1.3670093302555202e-18,1.3008730374584735e-33,5.203491966162902e-34,0.00020833333837799728,-7.04903478607686e-20,1.7958396835384122e-34,4.6668521627186416e-34,-6.042030278233632e-20,1.1667130406796604e-33,-7.04903478607686e-20,-1.2335811683428072e-19,0.0005555555690079927,-0.00027777778450399637,1.9792060376481398e-19,1.434107197166707e-19,-0.00015873015217948705,-1.5105075372466654e-19,-6.042030278233632e-20,-7.04903478607686e-20,7.936507608974352e-05,9.027796614315168e-36,2.4706939749991126e-35,-2.202285662861181e-20,6.018531076210112e-35,-6.942892811643388e-22,6.788315454156458e-22,0.00044642857392318547,-2.3148791682262452e-33,-0.0006696428754366934,-1.7140861468742216e-18,4.0438714648003714e-19,3.848227794901423e-34,1.5392911409194433e-34,1.7958396835384122e-34,9.027796614315168e-36,0.00013392856635618955,1.3920837078626284e-19,1.7051472066599702e-20,3.398641894181512e-19,1.88813446194801e-21,-4.9563528162009426e-20,0.0007142857066355646,-6.020043423160842e-33,-0.0002857142826542258,-0.0003571428533177823,1.0508816830506434e-18,1.0000396966765682e-33,4.0001590622127614e-34,4.6668521627186416e-34,2.4706939749991126e-35,1.3920837078626284e-19,0.0001428571413271129,-5.1788828186710334e-20,1.3533021977215591e-33,-6.042030278233632e-20,-1.0573552502232717e-19,0.0004761904710903764,8.45280978716913e-19,-0.00019047618843615055,9.342194381786146e-19,-0.0001360544265480712,-1.2947206723560157e-19,-5.1788828186710334e-20,-6.042030278233632e-20,-2.202285662861181e-20,1.7051472066599702e-20,-5.1788828186710334e-20,5.442176916403696e-05,-1.2947206723560157e-19,-4.743384504624082e-20,-9.58265927552352e-20,0.0005952381179668009,-1.504457179583874e-32,-1.2461686859167563e-18,-0.0011904762359336019,2.6272042076266084e-18,2.5000992416914206e-33,1.0000396966765682e-33,1.1667130406796604e-33,6.018531076210112e-35,3.398641894181512e-19,1.3533021977215591e-33,-1.2947206723560157e-19,0.00029761905898340046,-1.5105075372466654e-19,-2.64338825480515e-19,0.0005555555690079927,8.98664423716518e-19,3.9825897891193803e-19,-0.00027777778450399637,-0.00015873015217948705,-1.5105075372466654e-19,-6.042030278233632e-20,-7.04903478607686e-20,-6.942892811643388e-22,1.88813446194801e-21,-6.042030278233632e-20,-4.743384504624082e-20,-1.5105075372466654e-19,7.936507608974352e-05,-1.09514310627081e-21,0.00027777778450399637,1.5660343623097602e-18,1.0061528220050275e-18,1.5722432833851598e-18,-0.00027777778450399637,-2.64338825480515e-19,-1.0573552502232717e-19,-1.2335811683428072e-19,6.788315454156458e-22,-4.9563528162009426e-20,-1.0573552502232717e-19,-9.58265927552352e-20,-2.64338825480515e-19,-1.09514310627081e-21,3.968253804487176e-05,5.0,6.0,6.0,3.0,0.06829176098108292,-0.01785714365541935,-0.015504535287618637,-0.015504535287618637,-0.02579365111887455,0.0013227512827143073,0.0015873016091063619,0.0015873016091063619,0.0027777778450399637,0.0009920635493472219,0.0013605442363768816,0.0023809524718672037,0.0009920635493472219,0.0023809524718672037,0.0027777778450399637,-0.01785714365541935,0.01686508022248745,0.0015873016091063619,0.0015873016091063619,0.0027777778450399637,-0.0026455025654286146,-0.0007936508045531809,-0.0007936508045531809,-0.0013888889225199819,-0.0,8.184522415034593e-20,-1.8187313125437814e-22,-0.0,-2.973837409867737e-20,-4.81482486096809e-34,-0.015504535287618637,0.0015873016091063619,0.01165816280990839,0.0013605442363768816,0.0023809524718672037,-0.0,-0.0006349206087179482,1.8351940222496284e-19,1.4054857139966067e-19,-0.0014880952658131719,-0.0005442177061922848,-0.0009523809421807528,-2.2458257619689815e-18,-1.8295911660692887e-18,-1.2971142435355297e-17,-0.015504535287618637,0.0015873016091063619,0.0013605442363768816,0.01165816280990839,0.0023809524718672037,3.521479442991858e-20,7.115800539972107e-20,-0.0006349206087179482,1.4054857139966067e-19,-3.63207727782644e-18,-0.0005442177061922848,2.0741984252179638e-19,-0.0014880952658131719,-0.0009523809421807528,-1.2971142435355297e-17,-0.02579365111887455,0.0027777778450399637,0.0023809524718672037,0.0023809524718672037,0.0535714291036129,-0.0,1.4469151842232958e-19,1.0648538363465209e-19,-0.0027777778450399637,-7.663329585394432e-18,-3.3881317890172014e-20,-0.0023809524718672037,-6.5052130349130266e-18,-0.0023809524718672037,-0.01666666753590107,0.0013227512827143073,-0.0026455025654286146,-0.0,3.521479442991858e-20,-0.0,0.0006613756413571537,-0.0,-0.0,-0.0,4.689269424027229e-22,2.0124367863257335e-36,-1.1837735024092114e-39,8.430913185443858e-21,-1.504632769052528e-36,-0.0,0.0015873016091063619,-0.0007936508045531809,-0.0006349206087179482,7.115800539972107e-20,1.4469151842232958e-19,-0.0,0.0003174603043589741,-4.018923891396228e-20,-7.027428569983033e-20,-0.0,6.776263578034403e-21,-0.0,-1.1172620087467382e-21,-1.6571777993256054e-21,-0.0,0.0015873016091063619,-0.0007936508045531809,1.8351940222496284e-19,-0.0006349206087179482,1.0648538363465209e-19,-0.0,-4.018923891396228e-20,0.0003174603043589741,-7.027428569983033e-20,-8.159328949268672e-22,-3.9514353238172776e-20,7.274925123957381e-23,-1.3552527156068805e-20,1.3552527156068805e-20,1.925929944387236e-34,0.0027777778450399637,-0.0013888889225199819,1.4054857139966067e-19,1.4054857139966067e-19,-0.0027777778450399637,-0.0,-7.027428569983033e-20,-7.027428569983033e-20,0.0013888889225199819,6.018531076210112e-36,4.513898307157584e-36,-3.009265538105056e-36,-3.009265538105056e-36,-0.0,-0.0,0.0009920635493472219,-0.0,-0.0014880952658131719,-3.63207727782644e-18,-7.663329585394432e-18,4.689269424027229e-22,-0.0,-8.159328949268672e-22,6.018531076210112e-36,0.00029761905898340046,2.303929616531697e-19,5.149960319306146e-19,5.202974841752552e-19,4.49268260457151e-19,2.6433882031063616e-18,0.0013605442363768816,8.184522415034593e-20,-0.0005442177061922848,-0.0005442177061922848,-3.3881317890172014e-20,2.0124367863257335e-36,6.776263578034403e-21,-3.9514353238172776e-20,4.513898307157584e-36,2.303929616531697e-19,0.00021768707665614784,4.743384504624082e-20,-1.4162009341034362e-19,-3.3881317890172014e-20,7.703719777548943e-34,0.0023809524718672037,-1.8187313125437814e-22,-0.0009523809421807528,2.0741984252179638e-19,-0.0023809524718672037,-1.1837735024092114e-39,-0.0,7.274925123957381e-23,-3.009265538105056e-36,5.149960319306146e-19,4.743384504624082e-20,0.0009523809421807528,1.7050606212870132e-22,-3.2707522751565125e-19,-2.4579829583317485e-19,0.0009920635493472219,-0.0,-2.2458257619689815e-18,-0.0014880952658131719,-6.5052130349130266e-18,8.430913185443858e-21,-1.1172620087467382e-21,-1.3552527156068805e-20,-3.009265538105056e-36,5.202974841752552e-19,-1.4162009341034362e-19,1.7050606212870132e-22,0.00029761905898340046,4.985048939496629e-19,2.6433882031063616e-18,0.0023809524718672037,-2.973837409867737e-20,-1.8295911660692887e-18,-0.0009523809421807528,-0.0023809524718672037,-1.504632769052528e-36,-1.6571777993256054e-21,1.3552527156068805e-20,-0.0,4.49268260457151e-19,-3.3881317890172014e-20,-3.2707522751565125e-19,4.985048939496629e-19,0.0009523809421807528,-2.4579829583317485e-19,0.0027777778450399637,-4.81482486096809e-34,-1.2971142435355297e-17,-1.2971142435355297e-17,-0.01666666753590107,-0.0,-0.0,1.925929944387236e-34,-0.0,2.6433882031063616e-18,7.703719777548943e-34,-2.4579829583317485e-19,2.6433882031063616e-18,-2.4579829583317485e-19,0.008333333767950535,5.0,6.0,6.0,4.0,0.05494897812604904,-0.013809523545205593,-0.011985544115304947,-0.011985544115304947,-0.016309523954987526,0.0009920635493472219,0.0011904762359336019,0.0011904762359336019,0.0016666667070239782,0.0007440476329065859,0.0010204081190750003,0.0014285714132711291,0.0007440476329065859,0.0014285714132711291,0.0013888889225199819,-0.013809523545205593,0.012857142835855484,0.0011904762359336019,0.0011904762359336019,0.0016666667070239782,-0.0019841270986944437,-0.0005952381179668009,-0.0005952381179668009,-0.0008333333535119891,-0.0,-3.4772394973870495e-20,2.1550533873514937e-22,-0.0,-1.5566645708562938e-20,-1.2037062152420224e-34,-0.011985544115304947,0.0011904762359336019,0.008886479772627354,0.0010204081190750003,0.0014285714132711291,-5.421010862427522e-20,-0.0004761904710903764,-6.668532996772174e-20,-2.2556911573939893e-20,-0.0011160714784637094,-0.0004081632650922984,-0.0005714285653084517,-2.0723901825495287e-18,-1.395910297075087e-18,-4.55878508886246e-18,-0.011985544115304947,0.0011904762359336019,0.0010204081190750003,0.008886479772627354,0.0014285714132711291,1.0205725317110845e-20,-4.223814428862339e-21,-0.0004761904710903764,-2.2556911573939893e-20,-2.6291902682773483e-18,-0.0004081632650922984,-5.174458048628728e-20,-0.0011160714784637094,-0.0005714285653084517,-4.55878508886246e-18,-0.016309523954987526,0.0016666667070239782,0.0014285714132711291,0.0014285714132711291,0.020595237612724304,-5.421010862427522e-20,-2.1182898337416824e-20,-3.928206735123596e-20,-0.0011111111380159855,-4.287883438251344e-18,2.541098841762901e-20,-0.0009523809421807528,-3.686287386450715e-18,-0.0009523809421807528,-0.004166666883975267,0.0009920635493472219,-0.0019841270986944437,-5.421010862427522e-20,1.0205725317110845e-20,-5.421010862427522e-20,0.0004960317746736109,-0.0,-0.0,2.710505431213761e-20,7.296901072215508e-21,-1.7384034549013353e-37,3.4254320570880856e-40,5.727955635955769e-22,-2.5941944757887216e-37,-0.0,0.0011904762359336019,-0.0005952381179668009,-0.0004761904710903764,-4.223814428862339e-21,-2.1182898337416824e-20,-0.0,0.0002380952355451882,9.463558515130382e-21,1.1278455786969946e-20,-1.3552527156068805e-20,-3.3881317890172014e-21,-0.0,-9.966642857050136e-22,-5.496055773369759e-22,-0.0,0.0011904762359336019,-0.0005952381179668009,-6.668532996772174e-20,-0.0004761904710903764,-3.928206735123596e-20,-0.0,9.463558515130382e-21,0.0002380952355451882,1.1278455786969946e-20,8.559194842842768e-22,1.72970897785654e-20,-8.620213801841465e-23,-4.784226672704634e-37,6.776263578034403e-21,4.81482486096809e-35,0.0016666667070239782,-0.0008333333535119891,-2.2556911573939893e-20,-2.2556911573939893e-20,-0.0011111111380159855,2.710505431213761e-20,1.1278455786969946e-20,1.1278455786969946e-20,0.0005555555690079927,-7.52316384526264e-37,9.4039548065783e-37,-3.76158192263132e-37,-7.52316384526264e-37,7.52316384526264e-37,0.0,0.0007440476329065859,-0.0,-0.0011160714784637094,-2.6291902682773483e-18,-4.287883438251344e-18,7.296901072215508e-21,-1.3552527156068805e-20,8.559194842842768e-22,-7.52316384526264e-37,0.00022321428696159273,1.2197274440461925e-19,3.3881317890172014e-19,3.8527862809520864e-19,2.706032193557439e-19,9.251859021064995e-19,0.0010204081190750003,-3.4772394973870495e-20,-0.0004081632650922984,-0.0004081632650922984,2.541098841762901e-20,-1.7384034549013353e-37,-3.3881317890172014e-21,1.72970897785654e-20,9.4039548065783e-37,1.2197274440461925e-19,0.00016326530021615326,-3.3881317890172014e-21,6.002549206090418e-20,-6.776263578034403e-21,8.666684749742561e-34,0.0014285714132711291,2.1550533873514937e-22,-0.0005714285653084517,-5.174458048628728e-20,-0.0009523809421807528,3.4254320570880856e-40,-0.0,-8.620213801841465e-23,-3.76158192263132e-37,3.3881317890172014e-19,-3.3881317890172014e-21,0.0003809523768723011,-2.020362645305334e-22,4.098913225982386e-20,-4.4762817455996005e-20,0.0007440476329065859,-0.0,-2.0723901825495287e-18,-0.0011160714784637094,-3.686287386450715e-18,5.727955635955769e-22,-9.966642857050136e-22,-4.784226672704634e-37,-7.52316384526264e-37,3.8527862809520864e-19,6.002549206090418e-20,-2.020362645305334e-22,0.00022321428696159273,3.529900464745075e-19,9.251859021064995e-19,0.0014285714132711291,-1.5566645708562938e-20,-1.395910297075087e-18,-0.0005714285653084517,-0.0009523809421807528,-2.5941944757887216e-37,-5.496055773369759e-22,6.776263578034403e-21,7.52316384526264e-37,2.706032193557439e-19,-6.776263578034403e-21,4.098913225982386e-20,3.529900464745075e-19,0.0003809523768723011,-4.4762817455996005e-20,0.0013888889225199819,-1.2037062152420224e-34,-4.55878508886246e-18,-4.55878508886246e-18,-0.004166666883975267,-0.0,-0.0,4.81482486096809e-35,0.0,9.251859021064995e-19,8.666684749742561e-34,-4.4762817455996005e-20,9.251859021064995e-19,-4.4762817455996005e-20,0.0013888889225199819,5.0,6.0,6.0,5.0,0.0460544228553772,-0.011269841343164444,-0.009778911247849464,-0.009778911247849464,-0.011269841343164444,0.0007936508045531809,0.0009523809421807528,0.0009523809421807528,0.0011111111380159855,0.0005952381179668009,0.0008163265301845968,0.0009523809421807528,0.0005952381179668009,0.0009523809421807528,0.0007936508045531809,-0.011269841343164444,0.010396825149655342,0.0009523809421807528,0.0009523809421807528,0.0011111111380159855,-0.0015873016091063619,-0.0004761904710903764,-0.0004761904710903764,-0.0005555555690079927,2.710505431213761e-20,8.556291834711554e-22,4.561257428315805e-20,-0.0,2.0164878110259863e-20,1.6406973969211584e-20,-0.009778911247849464,0.0009523809421807528,0.007185373920947313,0.0008163265301845968,0.0009523809421807528,-0.0,-0.0003809523768723011,-1.2939524929855924e-20,1.3552527156068805e-20,-0.0008928571478463709,-0.00032653060043230653,-0.0003809523768723011,9.10428172797941e-19,3.108709661108906e-19,1.3888983904200515e-18,-0.009778911247849464,0.0009523809421807528,0.0008163265301845968,0.007185373920947313,0.0009523809421807528,3.449640826275545e-21,-6.168618234860726e-21,-0.0003809523768723011,2.078035319452956e-22,9.486769009248164e-19,-0.00032653060043230653,-1.1519648082658485e-19,-0.0008928571478463709,-0.0003809523768723011,1.3374614047993603e-18,-0.011269841343164444,0.0011111111380159855,0.0009523809421807528,0.0009523809421807528,0.010396825149655342,-0.0,-1.6725577445538015e-20,-2.4950510541552664e-20,-0.0005555555690079927,1.4671097649030122e-18,-7.474793048411e-20,-0.0004761904710903764,1.2197274440461925e-18,-0.0004761904710903764,-0.0015873016091063619,0.0007936508045531809,-0.0015873016091063619,-0.0,3.449640826275545e-21,-0.0,0.00039682540227659047,-0.0,-0.0,-0.0,1.289649093926721e-21,5.0809260628414245e-40,-1.1785946059655352e-36,1.380706412070394e-21,2.4836694696484603e-37,-7.021450231157938e-22,0.0009523809421807528,-0.0004761904710903764,-0.0003809523768723011,-6.168618234860726e-21,-1.6725577445538015e-20,-0.0,0.00019047618843615055,7.483739685282357e-21,9.479888869879769e-21,-1.3552527156068805e-20,-0.0,-3.3881317890172014e-21,-1.6214118303812945e-21,-0.0,1.4335925559241735e-21,0.0009523809421807528,-0.0004761904710903764,-1.2939524929855924e-20,-0.0003809523768723011,-2.4950510541552664e-20,-0.0,7.483739685282357e-21,0.00019047618843615055,8.700886681246553e-21,-2.1309705367659274e-22,-1.447709833979166e-22,-2.548105037317418e-22,1.8916726604624665e-37,-3.3881317890172014e-21,3.828986743765287e-21,0.0011111111380159855,-0.0005555555690079927,1.3552527156068805e-20,2.078035319452956e-22,-0.0005555555690079927,-0.0,9.479888869879769e-21,8.700886681246553e-21,0.00027777778450399637,8.49516306627485e-22,-2.468508845762873e-22,-1.825260940186059e-20,-9.762715371074538e-22,-5.8472747227552135e-21,-1.3254545841712948e-20,0.0005952381179668009,2.710505431213761e-20,-0.0008928571478463709,9.486769009248164e-19,1.4671097649030122e-18,1.289649093926721e-21,-1.3552527156068805e-20,-2.1309705367659274e-22,8.49516306627485e-22,0.00017857142665889114,6.776263578034403e-21,-1.2197274440461925e-19,-1.5826210138020677e-19,-9.063045094233022e-20,-2.244609909866105e-19,0.0008163265301845968,8.556291834711554e-22,-0.00032653060043230653,-0.00032653060043230653,-7.474793048411e-20,5.0809260628414245e-40,-0.0,-1.447709833979166e-22,-2.468508845762873e-22,6.776263578034403e-21,0.00013061224308330566,1.0995064032226706e-20,-4.5447018607199534e-20,2.0328790734103208e-20,-7.052881983718798e-22,0.0009523809421807528,4.561257428315805e-20,-0.0003809523768723011,-1.1519648082658485e-19,-0.0004761904710903764,-1.1785946059655352e-36,-3.3881317890172014e-21,-2.548105037317418e-22,-1.825260940186059e-20,-1.2197274440461925e-19,1.0995064032226706e-20,0.00019047618843615055,-5.97212133898488e-22,4.572965588275125e-20,-1.342999585795556e-19,0.0005952381179668009,-0.0,9.10428172797941e-19,-0.0008928571478463709,1.2197274440461925e-18,1.380706412070394e-21,-1.6214118303812945e-21,1.8916726604624665e-37,-9.762715371074538e-22,-1.5826210138020677e-19,-4.5447018607199534e-20,-5.97212133898488e-22,0.00017857142665889114,-1.3008927321953684e-19,-2.240563187213131e-19,0.0009523809421807528,2.0164878110259863e-20,3.108709661108906e-19,-0.0003809523768723011,-0.0004761904710903764,2.4836694696484603e-37,-0.0,-3.3881317890172014e-21,-5.8472747227552135e-21,-9.063045094233022e-20,2.0328790734103208e-20,4.572965588275125e-20,-1.3008927321953684e-19,0.00019047618843615055,-1.1207485629117457e-19,0.0007936508045531809,1.6406973969211584e-20,1.3888983904200515e-18,1.3374614047993603e-18,-0.0015873016091063619,-7.021450231157938e-22,1.4335925559241735e-21,3.828986743765287e-21,-1.3254545841712948e-20,-2.244609909866105e-19,-7.052881983718798e-22,-1.342999585795556e-19,-2.240563187213131e-19,-1.1207485629117457e-19,0.00039682540227659047,5.0,6.0,6.0,6.0,0.0396730899810791,-0.009523809887468815,-0.008262471295893192,-0.008262471295893192,-0.008262471295893192,0.0006613756413571537,0.0007936508045531809,0.0007936508045531809,0.0007936508045531809,0.0004960317746736109,0.0006802721181884408,0.0006802721181884408,0.0004960317746736109,0.0006802721181884408,0.0004960317746736109,-0.009523809887468815,0.008730159141123295,0.0007936508045531809,0.0007936508045531809,0.0007936508045531809,-0.0013227512827143073,-0.00039682540227659047,-0.00039682540227659047,-0.00039682540227659047,-0.0,4.873688715555912e-20,5.291686343533685e-20,-2.710505431213761e-20,6.195011516411633e-20,1.2922749278902758e-21,-0.008262471295893192,0.0007936508045531809,0.0060331630520522594,0.0006802721181884408,0.0006802721181884408,-0.0,-0.0003174603043589741,9.070619612951564e-20,9.486769009248164e-20,-0.0007440476329065859,-0.0002721088530961424,-0.0002721088530961424,-1.132916803312707e-18,-6.37540358138508e-19,-1.1573267997915703e-18,-0.008262471295893192,0.0007936508045531809,0.0006802721181884408,0.0060331630520522594,0.0006802721181884408,9.959994514045776e-21,4.761458077890939e-20,-0.0003174603043589741,7.65434100141873e-20,-1.9244588561617704e-18,-0.0002721088530961424,-2.0328790734103208e-20,-0.0007440476329065859,-0.0002721088530961424,-1.178223036425885e-18,-0.008262471295893192,0.0007936508045531809,0.0006802721181884408,0.0006802721181884408,0.0060331630520522594,2.710505431213761e-20,4.4161705951088573e-20,5.158958751901016e-20,-0.0003174603043589741,-1.9054572767205085e-18,-3.936460042776443e-21,-0.0002721088530961424,-1.5720931501039814e-18,-0.0002721088530961424,-0.0007440476329065859,0.0006613756413571537,-0.0013227512827143073,-0.0,9.959994514045776e-21,2.710505431213761e-20,0.0003306878206785768,-0.0,-0.0,-0.0,3.8783229378149252e-22,1.7869402858620926e-36,1.553110610953131e-36,2.4478255439167025e-21,-1.853922980238531e-36,-2.910486280159329e-21,0.0007936508045531809,-0.00039682540227659047,-0.0003174603043589741,4.761458077890939e-20,4.4161705951088573e-20,-0.0,0.00015873015217948705,-1.9976646053290033e-20,-2.0152386390540606e-20,-0.0,-0.0,-0.0,-1.4117850578683031e-21,9.027796614315168e-36,-7.107368669551286e-22,0.0007936508045531809,-0.00039682540227659047,9.070619612951564e-20,-0.0003174603043589741,5.158958751901016e-20,-0.0,-1.9976646053290033e-20,0.00015873015217948705,-1.9400734476497058e-20,-1.3146777193178877e-22,-1.9757176619086388e-20,-2.5861069283679386e-22,6.776263578034403e-21,-6.776263578034403e-21,8.84348567182602e-22,0.0007936508045531809,-0.00039682540227659047,9.486769009248164e-20,7.65434100141873e-20,-0.0003174603043589741,-0.0,-2.0152386390540606e-20,-1.9400734476497058e-20,0.00015873015217948705,-5.43360424296718e-22,2.6242256970501766e-22,-2.090813381796857e-20,1.2183268794429175e-21,-1.8003781518259848e-20,4.373724355119453e-21,0.0004960317746736109,-0.0,-0.0007440476329065859,-1.9244588561617704e-18,-1.9054572767205085e-18,3.8783229378149252e-22,-0.0,-1.3146777193178877e-22,-5.43360424296718e-22,0.00014880952949170023,1.1519648082658485e-19,1.1519648082658485e-19,2.5947986316480193e-19,1.2947206723560157e-19,2.6439980420129663e-19,0.0006802721181884408,4.873688715555912e-20,-0.0002721088530961424,-0.0002721088530961424,-3.936460042776443e-21,1.7869402858620926e-36,-0.0,-1.9757176619086388e-20,2.6242256970501766e-22,1.1519648082658485e-19,0.00010884353832807392,6.805834477139607e-21,-6.40337831271374e-20,-6.776263578034403e-21,6.150528606696726e-22,0.0006802721181884408,5.291686343533685e-20,-0.0002721088530961424,-2.0328790734103208e-20,-0.0002721088530961424,1.553110610953131e-36,-0.0,-2.5861069283679386e-22,-2.090813381796857e-20,1.1519648082658485e-19,6.805834477139607e-21,0.00010884353832807392,-6.061188152805401e-22,2.848252046226259e-21,-6.6731341889295e-20,0.0004960317746736109,-2.710505431213761e-20,-1.132916803312707e-18,-0.0007440476329065859,-1.5720931501039814e-18,2.4478255439167025e-21,-1.4117850578683031e-21,6.776263578034403e-21,1.2183268794429175e-21,2.5947986316480193e-19,-6.40337831271374e-20,-6.061188152805401e-22,0.00014880952949170023,1.0048682492878239e-19,2.656384554698065e-19,0.0006802721181884408,6.195011516411633e-20,-6.37540358138508e-19,-0.0002721088530961424,-0.0002721088530961424,-1.853922980238531e-36,9.027796614315168e-36,-6.776263578034403e-21,-1.8003781518259848e-20,1.2947206723560157e-19,-6.776263578034403e-21,2.848252046226259e-21,1.0048682492878239e-19,0.00010884353832807392,-6.233762989405182e-20,0.0004960317746736109,1.2922749278902758e-21,-1.1573267997915703e-18,-1.178223036425885e-18,-0.0007440476329065859,-2.910486280159329e-21,-7.107368669551286e-22,8.84348567182602e-22,4.373724355119453e-21,2.6439980420129663e-19,6.150528606696726e-22,-6.6731341889295e-20,2.656384554698065e-19,-6.233762989405182e-20,0.00014880952949170023,5.0,6.0,6.0,7.0,0.0348612442612648,-0.008248299360275269,-0.0071550048887729645,-0.0071550048887729645,-0.006320861633867025,0.0005668934318237007,0.0006802721181884408,0.0006802721181884408,0.0005952381179668009,0.00042517005931586027,0.000583090353757143,0.0005102040595375001,0.00042517005931586027,0.0005102040595375001,0.0003306878206785768,-0.008248299360275269,0.0075255101546645164,0.0006802721181884408,0.0006802721181884408,0.0005952381179668009,-0.0011337868636474013,-0.0003401360590942204,-0.0003401360590942204,-0.00029761905898340046,-6.908598743552249e-21,3.2236427236844837e-20,2.5967745997259337e-22,-1.6541148480681367e-20,3.671300188839181e-21,1.299384985502663e-20,-0.0071550048887729645,0.0006802721181884408,0.005200437270104885,0.000583090353757143,0.0005102040595375001,-0.0,-0.0002721088530961424,2.2986342712064224e-20,-1.3552527156068805e-20,-0.0006377550889737904,-0.0002332361473236233,-0.0002040816325461492,7.310174542237114e-19,2.5021466482238375e-19,4.600074946511387e-19,-0.0071550048887729645,0.0006802721181884408,0.000583090353757143,0.005200437270104885,0.0005102040595375001,-0.0,1.0803290608259383e-20,-0.0002721088530961424,5.1888696513185474e-21,9.622294280808852e-19,-0.0002332361473236233,3.049318610115481e-20,-0.0006377550889737904,-0.0002040816325461492,4.778684437264782e-19,-0.006320861633867025,0.0005952381179668009,0.0005102040595375001,0.0005102040595375001,0.0038265306502580643,-0.0,-5.8922409555560636e-21,-1.1224983891805935e-20,-0.00019841270113829523,7.587956784581023e-19,5.591428930593234e-22,-0.0001700680295471102,6.369687763352339e-19,-0.0001700680295471102,-0.00039682540227659047,0.0005668934318237007,-0.0011337868636474013,-0.0,-0.0,-0.0,0.00028344671591185033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0003401360590942204,-0.0002721088530961424,1.0803290608259383e-20,-5.8922409555560636e-21,-0.0,0.0001360544265480712,1.280306734133046e-22,8.758640084263772e-22,-0.0,-3.3881317890172014e-21,-0.0,-4.770926246483956e-22,-0.0,6.370019750352482e-22,0.0006802721181884408,-0.0003401360590942204,2.2986342712064224e-20,-0.0002721088530961424,-1.1224983891805935e-20,-0.0,1.280306734133046e-22,0.0001360544265480712,1.12813773743532e-22,3.00071884107115e-22,-1.0013854957915489e-20,5.46147211128487e-23,6.776263578034403e-21,1.6940658945086007e-21,1.0196391464393172e-21,0.0005952381179668009,-0.00029761905898340046,-1.3552527156068805e-20,5.1888696513185474e-21,-0.00019841270113829523,-0.0,8.758640084263772e-22,1.12813773743532e-22,9.920635056914762e-05,2.0528062097958927e-21,4.2284714092628825e-22,-1.3207142091823837e-22,2.644072680119068e-22,-2.6354883083702276e-21,-5.7118174351011196e-21,0.00042517005931586027,-6.908598743552249e-21,-0.0006377550889737904,9.622294280808852e-19,7.587956784581023e-19,-0.0,-0.0,3.00071884107115e-22,2.0528062097958927e-21,0.00012755101488437504,-8.809142651444724e-20,-6.776263578034403e-20,-1.1473505621644804e-19,-4.8552028444524855e-20,-7.771058124554523e-20,0.000583090353757143,3.2236427236844837e-20,-0.0002332361473236233,-0.0002332361473236233,5.591428930593234e-22,-0.0,-3.3881317890172014e-21,-1.0013854957915489e-20,4.2284714092628825e-22,-8.809142651444724e-20,9.329446038464084e-05,-6.148871721116723e-21,-6.211657233769555e-20,3.3881317890172014e-21,8.456942818525765e-22,0.0005102040595375001,2.5967745997259337e-22,-0.0002040816325461492,3.049318610115481e-20,-0.0001700680295471102,-0.0,-0.0,5.46147211128487e-23,-1.3207142091823837e-22,-6.776263578034403e-20,-6.148871721116723e-21,6.80272132740356e-05,1.2800325891912637e-22,-5.308289005494489e-21,-2.5531945810756418e-20,0.00042517005931586027,-1.6541148480681367e-20,7.310174542237114e-19,-0.0006377550889737904,6.369687763352339e-19,-0.0,-4.770926246483956e-22,6.776263578034403e-21,2.644072680119068e-22,-1.1473505621644804e-19,-6.211657233769555e-20,1.2800325891912637e-22,0.00012755101488437504,-6.317158951021866e-20,-7.895135216437477e-20,0.0005102040595375001,3.671300188839181e-21,2.5021466482238375e-19,-0.0002040816325461492,-0.0001700680295471102,-0.0,-0.0,1.6940658945086007e-21,-2.6354883083702276e-21,-4.8552028444524855e-20,3.3881317890172014e-21,-5.308289005494489e-21,-6.317158951021866e-20,6.80272132740356e-05,-2.949627836666356e-20,0.0003306878206785768,1.299384985502663e-20,4.600074946511387e-19,4.778684437264782e-19,-0.00039682540227659047,-0.0,6.370019750352482e-22,1.0196391464393172e-21,-5.7118174351011196e-21,-7.771058124554523e-20,8.456942818525765e-22,-2.5531945810756418e-20,-7.895135216437477e-20,-2.949627836666356e-20,6.613756704609841e-05,5.0,6.0,6.0,8.0,0.031098827719688416,-0.007275132462382317,-0.006310232449322939,-0.006310232449322939,-0.004993386100977659,0.0004960317746736109,0.0005952381179668009,0.0005952381179668009,0.00046296295477077365,0.00037202381645329297,0.0005102040595375001,0.00039682540227659047,0.00037202381645329297,0.00039682540227659047,0.00023148147738538682,-0.007275132462382317,0.006613756529986858,0.0005952381179668009,0.0005952381179668009,0.00046296295477077365,-0.0009920635493472219,-0.00029761905898340046,-0.00029761905898340046,-0.00023148147738538682,-1.2638915260041235e-34,-0.0,-2.371692252312041e-20,-7.90905143437186e-35,-2.1772912374301547e-20,3.1617672308744947e-21,-0.006310232449322939,0.0005952381179668009,0.004570223856717348,0.0005102040595375001,0.00039682540227659047,-0.0,-0.0002380952355451882,-0.0,-2.371692252312041e-20,-0.0005580357392318547,-0.0002040816325461492,-0.00015873015217948705,-9.735692470983746e-19,-3.894853326485295e-19,-5.859456395147606e-19,-0.006310232449322939,0.0005952381179668009,0.0005102040595375001,0.004570223856717348,0.00039682540227659047,-0.0,-0.0,-0.0002380952355451882,-2.1772912374301547e-20,-1.4036323382859992e-18,-0.0002040816325461492,-1.1858461261560205e-20,-0.0005580357392318547,-0.00015873015217948705,-5.766143701209147e-19,-0.004993386100977659,0.00046296295477077365,0.00039682540227659047,0.00039682540227659047,0.0025840892922133207,0.0,-0.0,-0.0,-0.00013227513409219682,-1.1439397087580121e-18,-6.79449556017454e-34,-0.00011337868636474013,-9.551262213657392e-19,-0.00011337868636474013,-0.00023148147738538682,0.0004960317746736109,-0.0009920635493472219,-0.0,-0.0,0.0,0.00024801588733680546,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-0.0002380952355451882,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-0.00023148147738538682,-2.371692252312041e-20,-2.1772912374301547e-20,-0.00013227513409219682,-0.0,-0.0,-0.0,6.613756704609841e-05,3.611118645726067e-35,0.0,6.776263578034403e-21,2.259729042746087e-35,6.220831991544218e-21,-9.033621092387967e-22,0.00037202381645329297,-1.2638915260041235e-34,-0.0005580357392318547,-1.4036323382859992e-18,-1.1439397087580121e-18,-0.0,-0.0,-0.0,3.611118645726067e-35,0.00011160714348079637,6.628969852802558e-20,7.365522489492744e-20,1.9471385717449317e-19,7.552537686233327e-20,1.101411794376641e-19,0.0005102040595375001,-0.0,-0.0002040816325461492,-0.0002040816325461492,-6.79449556017454e-34,-0.0,-0.0,-0.0,0.0,6.628969852802558e-20,8.163265010807663e-05,4.374794220169298e-35,1.1565141348594645e-34,4.48587298358942e-35,6.541898124983398e-35,0.00039682540227659047,-2.371692252312041e-20,-0.00015873015217948705,-1.1858461261560205e-20,-0.00011337868636474013,-0.0,-0.0,-0.0,6.776263578034403e-21,7.365522489492744e-20,4.374794220169298e-35,4.535147309070453e-05,1.6851887013388314e-34,3.3881317890172014e-21,1.0068504616100108e-20,0.00037202381645329297,-7.90905143437186e-35,-9.735692470983746e-19,-0.0005580357392318547,-9.551262213657392e-19,-0.0,-0.0,-0.0,2.259729042746087e-35,1.9471385717449317e-19,1.1565141348594645e-34,1.6851887013388314e-34,0.00011160714348079637,7.365522489492744e-20,1.101411794376641e-19,0.00039682540227659047,-2.1772912374301547e-20,-3.894853326485295e-19,-0.00015873015217948705,-0.00011337868636474013,-0.0,-0.0,-0.0,6.220831991544218e-21,7.552537686233327e-20,4.48587298358942e-35,3.3881317890172014e-21,7.365522489492744e-20,4.535147309070453e-05,7.402433647182076e-21,0.00023148147738538682,3.1617672308744947e-21,-5.859456395147606e-19,-5.766143701209147e-19,-0.00023148147738538682,-0.0,-0.0,-0.0,-9.033621092387967e-22,1.101411794376641e-19,6.541898124983398e-35,1.0068504616100108e-20,1.101411794376641e-19,7.402433647182076e-21,3.3068783523049206e-05,5.0,6.0,7.0,3.0,0.06013794243335724,-0.015476190485060215,-0.01343537401407957,-0.011876417323946953,-0.022363945841789246,0.0011337868636474013,0.0013605442363768816,0.0011904762359336019,0.0023809524718672037,0.0008503401186317205,0.0010204081190750003,0.0020408162381500006,0.0006613756413571537,0.0017857142956927419,0.0023809524718672037,-0.015476190485060215,0.01454081665724516,0.0013605442363768816,0.0011904762359336019,0.0023809524718672037,-0.0022675737272948027,-0.0006802721181884408,-0.0005952381179668009,-0.0011904762359336019,-1.0642803675374744e-19,6.213439468716309e-21,-2.072721067719247e-20,-3.0937673703573456e-21,-2.2750530402310905e-21,7.153938085015734e-35,-0.01343537401407957,0.0013605442363768816,0.010051020421087742,0.0010204081190750003,0.0020408162381500006,-0.0,-0.0005442177061922848,-5.063431023378505e-21,-0.0,-0.0012755101779475808,-0.0004081632650922984,-0.0008163265301845968,9.721815482232404e-19,5.149960319306146e-19,4.1573100834277045e-18,-0.011876417323946953,0.0011904762359336019,0.0010204081190750003,0.007397959008812904,0.0017857142956927419,-0.0,-1.0314623160077311e-20,-0.00039682540227659047,-0.0,1.463672932855431e-18,-0.0003401360590942204,-2.927689972845684e-19,-0.0007936508045531809,-0.0005952381179668009,-1.5860329011843016e-18,-0.022363945841789246,0.0023809524718672037,0.0020408162381500006,0.0017857142956927419,0.046173468232154846,-0.0,-1.9670723320377526e-20,-3.155459776755386e-21,-0.0023809524718672037,3.881153767975345e-18,-1.1519648082658485e-19,-0.0020408162381500006,-5.421010862427522e-20,-0.0017857142956927419,-0.014285714365541935,0.0011337868636474013,-0.0022675737272948027,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0006802721181884408,-0.0005442177061922848,-1.0314623160077311e-20,-1.9670723320377526e-20,-0.0,0.0002721088530961424,6.804033097485316e-22,-0.0,4.0657581468206416e-20,-0.0,6.776263578034403e-21,1.237506927948099e-21,9.100212564821145e-22,-4.81482486096809e-35,0.0011904762359336019,-0.0005952381179668009,-5.063431023378505e-21,-0.00039682540227659047,-3.155459776755386e-21,-0.0,6.804033097485316e-22,0.00019841270113829523,-0.0,1.5946952698448955e-21,-2.0711465568882336e-21,1.2621839107021545e-21,1.2373455630898884e-38,-0.0,1.6277079746371756e-35,0.0023809524718672037,-0.0011904762359336019,-0.0,-0.0,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008503401186317205,-1.0642803675374744e-19,-0.0012755101779475808,1.463672932855431e-18,3.881153767975345e-18,-0.0,4.0657581468206416e-20,1.5946952698448955e-21,-0.0,0.00025510202976875007,-1.2197274440461925e-19,-4.0657581468206416e-19,-1.6645486005844994e-19,-1.6779923534900175e-19,-1.1328806141609079e-18,0.0010204081190750003,6.213439468716309e-21,-0.0004081632650922984,-0.0003401360590942204,-1.1519648082658485e-19,-0.0,-0.0,-2.0711465568882336e-21,-0.0,-1.2197274440461925e-19,0.0001360544265480712,1.3552527156068805e-20,-4.790163506968516e-20,2.710505431213761e-20,6.2592723192585165e-34,0.0020408162381500006,-2.072721067719247e-20,-0.0008163265301845968,-2.927689972845684e-19,-0.0020408162381500006,-0.0,6.776263578034403e-21,1.2621839107021545e-21,-0.0,-4.0657581468206416e-19,1.3552527156068805e-20,0.0008163265301845968,2.524367821404309e-21,2.3995491104034127e-19,1.5070930907744114e-18,0.0006613756413571537,-3.0937673703573456e-21,9.721815482232404e-19,-0.0007936508045531809,-5.421010862427522e-20,-0.0,1.237506927948099e-21,1.2373455630898884e-38,-0.0,-1.6645486005844994e-19,-4.790163506968516e-20,2.524367821404309e-21,0.00013227513409219682,1.668003404423358e-20,7.410518425675248e-34,0.0017857142956927419,-2.2750530402310905e-21,5.149960319306146e-19,-0.0005952381179668009,-0.0017857142956927419,-0.0,9.100212564821145e-22,-0.0,-0.0,-1.6779923534900175e-19,2.710505431213761e-20,2.3995491104034127e-19,1.668003404423358e-20,0.0005952381179668009,1.5860329011843016e-18,0.0023809524718672037,7.153938085015734e-35,4.1573100834277045e-18,-1.5860329011843016e-18,-0.014285714365541935,-0.0,-4.81482486096809e-35,1.6277079746371756e-35,-0.0,-1.1328806141609079e-18,6.2592723192585165e-34,1.5070930907744114e-18,7.410518425675248e-34,1.5860329011843016e-18,0.0071428571827709675,5.0,6.0,7.0,4.0,0.04833900183439255,-0.011964285746216774,-0.010382653214037418,-0.009175170212984085,-0.01413265336304903,0.0008503401186317205,0.0010204081190750003,0.0008928571478463709,0.0014285714132711291,0.0006377550889737904,0.0007653061184100807,0.0012244897661730647,0.0004960317746736109,0.0010714285308495164,0.0011904762359336019,-0.011964285746216774,0.011084184050559998,0.0010204081190750003,0.0008928571478463709,0.0014285714132711291,-0.001700680237263441,-0.0005102040595375001,-0.00044642857392318547,-0.0007142857066355646,1.4399567341153466e-18,1.1313421616191358e-18,1.796709495949387e-18,4.9184898515075495e-19,1.2242622549593613e-18,1.1706433736779084e-18,-0.010382653214037418,0.0010204081190750003,0.007660714443773031,0.0007653061184100807,0.0012244897661730647,3.8771299478855806e-18,-0.0004081632650922984,-1.513098163527605e-19,-2.0853635540298397e-19,-0.0009566326625645161,-0.0003061224415432662,-0.0004897959297522902,-3.0869080235953636e-19,-1.1722935989999517e-18,-2.6872960356952302e-19,-0.009175170212984085,0.0008928571478463709,0.0007653061184100807,0.005637755151838064,0.0010714285308495164,2.571459265375741e-18,-5.5290577110270815e-19,-0.00029761905898340046,-9.918999313640677e-20,-5.692061405548898e-19,-0.00025510202976875007,-9.774816046005973e-19,-0.0005952381179668009,-0.0003571428533177823,3.1610275423831776e-19,-0.01413265336304903,0.0014285714132711291,0.0012244897661730647,0.0010714285308495164,0.01775510236620903,3.940626399656682e-18,-8.826215659287818e-19,-9.91281549232699e-20,-0.0009523809421807528,-8.713620868282866e-19,-9.158255262948495e-19,-0.0008163265301845968,-3.7947076036992655e-19,-0.0007142857066355646,-0.0035714285913854837,0.0008503401186317205,-0.001700680237263441,3.8771299478855806e-18,2.571459265375741e-18,3.940626399656682e-18,0.00042517005931586027,-7.27509743137392e-20,-5.304758382151437e-20,-8.48761366993624e-20,-3.540252113123293e-19,-2.9131215128010353e-19,-4.660994730674386e-19,-1.5734453836103525e-19,-3.398641894181512e-19,-3.776268713869693e-19,0.0010204081190750003,-0.0005102040595375001,-0.0004081632650922984,-5.5290577110270815e-19,-8.826215659287818e-19,-7.27509743137392e-20,0.0002040816325461492,6.6593448296243e-20,1.0426817770149199e-19,-1.3552527156068805e-20,1.3552527156068805e-20,2.710505431213761e-20,4.6880138099016065e-20,5.407778557566088e-20,1.3594567318232106e-19,0.0008928571478463709,-0.00044642857392318547,-1.513098163527605e-19,-0.00029761905898340046,-9.91281549232699e-20,-5.304758382151437e-20,6.6593448296243e-20,0.00014880952949170023,4.9594996568203386e-20,3.3418090688690566e-21,8.379671021405672e-24,-2.4735347416989087e-23,6.776263578034403e-21,-0.0,8.726870060504662e-35,0.0014285714132711291,-0.0007142857066355646,-2.0853635540298397e-19,-9.918999313640677e-20,-0.0009523809421807528,-8.48761366993624e-20,1.0426817770149199e-19,4.9594996568203386e-20,0.0004761904710903764,7.222237291452134e-35,7.071774014546882e-35,1.0833355937178202e-34,5.416677968589101e-35,9.479186445030926e-35,1.4484171624062263e-34,0.0006377550889737904,1.4399567341153466e-18,-0.0009566326625645161,-5.692061405548898e-19,-8.713620868282866e-19,-3.540252113123293e-19,-1.3552527156068805e-20,3.3418090688690566e-21,7.222237291452134e-35,0.00019132652960252017,3.3881317890172014e-20,6.776263578034403e-20,3.6742277135051513e-20,1.182482086002344e-19,4.9563528162009426e-20,0.0007653061184100807,1.1313421616191358e-18,-0.0003061224415432662,-0.00025510202976875007,-9.158255262948495e-19,-2.9131215128010353e-19,1.3552527156068805e-20,8.379671021405672e-24,7.071774014546882e-35,3.3881317890172014e-20,0.0001020408162730746,1.5585406229479126e-19,-4.0948849210227383e-20,6.437450399132683e-20,5.664402941557569e-20,0.0012244897661730647,1.796709495949387e-18,-0.0004897959297522902,-9.774816046005973e-19,-0.0008163265301845968,-4.660994730674386e-19,2.710505431213761e-20,-2.4735347416989087e-23,1.0833355937178202e-34,6.776263578034403e-20,1.5585406229479126e-19,0.00032653060043230653,5.1307783886419535e-20,7.795945274999859e-20,-4.0144825131181866e-19,0.0004960317746736109,4.9184898515075495e-19,-3.0869080235953636e-19,-0.0005952381179668009,-3.7947076036992655e-19,-1.5734453836103525e-19,4.6880138099016065e-20,6.776263578034403e-21,5.416677968589101e-35,3.6742277135051513e-20,-4.0948849210227383e-20,5.1307783886419535e-20,9.920635056914762e-05,4.333879695091756e-20,2.2028234918180537e-20,0.0010714285308495164,1.2242622549593613e-18,-1.1722935989999517e-18,-0.0003571428533177823,-0.0007142857066355646,-3.398641894181512e-19,5.407778557566088e-20,-0.0,9.479186445030926e-35,1.182482086002344e-19,6.437450399132683e-20,7.795945274999859e-20,4.333879695091756e-20,0.0002380952355451882,-4.813677796090955e-19,0.0011904762359336019,1.1706433736779084e-18,-2.6872960356952302e-19,3.1610275423831776e-19,-0.0035714285913854837,-3.776268713869693e-19,1.3594567318232106e-19,8.726870060504662e-35,1.4484171624062263e-34,4.9563528162009426e-20,5.664402941557569e-20,-4.0144825131181866e-19,2.2028234918180537e-20,-4.813677796090955e-19,0.0011904762359336019,5.0,6.0,7.0,5.0,0.04048752784729004,-0.009761904366314411,-0.008469387888908386,-0.007482993416488171,-0.009761904366314411,0.0006802721181884408,0.0008163265301845968,0.0007142857066355646,0.0009523809421807528,0.0005102040595375001,0.0006122448830865324,0.0008163265301845968,0.00039682540227659047,0.0007142857066355646,0.0006802721181884408,-0.009761904366314411,0.008962584659457207,0.0008163265301845968,0.0007142857066355646,0.0009523809421807528,-0.0013605442363768816,-0.0004081632650922984,-0.0003571428533177823,-0.0004761904710903764,-3.290074535719155e-21,-1.206063018094056e-20,8.470329472543003e-21,1.1711249769713475e-21,3.76158192263132e-36,0.0,-0.008469387888908386,0.0008163265301845968,0.006193877663463354,0.0006122448830865324,0.0008163265301845968,-0.0,-0.00032653060043230653,-1.0477523618581272e-20,-0.0,-0.0007653061184100807,-0.0002448979648761451,-0.00032653060043230653,4.124716995944007e-19,3.1193875288411997e-19,1.1237348917182153e-18,-0.007482993416488171,0.0007142857066355646,0.0006122448830865324,0.004557823296636343,0.0007142857066355646,-0.0,-6.361247920009012e-21,-0.0002380952355451882,-0.0,9.486769009248164e-19,-0.0002040816325461492,5.192226922162133e-20,-0.0004761904710903764,-0.0002380952355451882,-1.2420481777364568e-33,-0.009761904366314411,0.0009523809421807528,0.0008163265301845968,0.0007142857066355646,0.008962584659457207,-0.0,8.470329472543003e-21,-7.52316384526264e-36,-0.0004761904710903764,1.2570087844466872e-18,-1.1631847701050487e-20,-0.0004081632650922984,-1.3552527156068805e-20,-0.0003571428533177823,-0.0013605442363768816,0.0006802721181884408,-0.0013605442363768816,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,-0.0004081632650922984,-0.00032653060043230653,-6.361247920009012e-21,8.470329472543003e-21,-0.0,0.00016326530021615326,4.679216937957561e-22,-0.0,-0.0,3.3881317890172014e-21,-3.3881317890172014e-21,-4.68449990788539e-22,-1.504632769052528e-36,-0.0,0.0007142857066355646,-0.0003571428533177823,-1.0477523618581272e-20,-0.0002380952355451882,-7.52316384526264e-36,-0.0,4.679216937957561e-22,0.0001190476177725941,-0.0,1.0966915455644503e-21,1.1967669701153162e-21,3.009265538105056e-36,8.509376516821666e-39,-0.0,-0.0,0.0009523809421807528,-0.0004761904710903764,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-3.290074535719155e-21,-0.0007653061184100807,9.486769009248164e-19,1.2570087844466872e-18,-0.0,-0.0,1.0966915455644503e-21,-0.0,0.0001530612207716331,-8.809142651444724e-20,-1.0164395367051604e-19,-9.825760548969466e-20,-6.797283659116053e-20,-1.9420811377809942e-19,0.0006122448830865324,-1.206063018094056e-20,-0.0002448979648761451,-0.0002040816325461492,-1.1631847701050487e-20,-0.0,3.3881317890172014e-21,1.1967669701153162e-21,-0.0,-8.809142651444724e-20,8.163265010807663e-05,-1.364317290339012e-20,2.6595029609839046e-20,1.5246593050577406e-20,1.2731359166361273e-34,0.0008163265301845968,8.470329472543003e-21,-0.00032653060043230653,5.192226922162133e-20,-0.0004081632650922984,-0.0,-3.3881317890172014e-21,3.009265538105056e-36,-0.0,-1.0164395367051604e-19,-1.364317290339012e-20,0.00016326530021615326,6.281841810794304e-35,-8.907169693263366e-21,-7.634716787620763e-20,0.00039682540227659047,1.1711249769713475e-21,4.124716995944007e-19,-0.0004761904710903764,-1.3552527156068805e-20,-0.0,-4.68449990788539e-22,8.509376516821666e-39,-0.0,-9.825760548969466e-20,2.6595029609839046e-20,6.281841810794304e-35,7.936507608974352e-05,9.121893744157985e-22,1.2457715790515605e-34,0.0007142857066355646,3.76158192263132e-36,3.1193875288411997e-19,-0.0002380952355451882,-0.0003571428533177823,-0.0,-1.504632769052528e-36,-0.0,-0.0,-6.797283659116053e-20,1.5246593050577406e-20,-8.907169693263366e-21,9.121893744157985e-22,0.0001190476177725941,8.815062557324436e-35,0.0006802721181884408,0.0,1.1237348917182153e-18,-1.2420481777364568e-33,-0.0013605442363768816,-0.0,-0.0,-0.0,-0.0,-1.9420811377809942e-19,1.2731359166361273e-34,-7.634716787620763e-20,1.2457715790515605e-34,8.815062557324436e-35,0.0003401360590942204,5.0,6.0,7.0,6.0,0.0348612442612648,-0.008248299360275269,-0.0071550048887729645,-0.006320861633867025,-0.0071550048887729645,0.0005668934318237007,0.0006802721181884408,0.0005952381179668009,0.0006802721181884408,0.00042517005931586027,0.0005102040595375001,0.000583090353757143,0.0003306878206785768,0.0005102040595375001,0.00042517005931586027,-0.008248299360275269,0.0075255101546645164,0.0006802721181884408,0.0005952381179668009,0.0006802721181884408,-0.0011337868636474013,-0.0003401360590942204,-0.00029761905898340046,-0.0003401360590942204,-7.153973309654295e-21,6.6062771543611886e-21,2.3491467338585693e-20,9.272216049031025e-22,-2.291759786392996e-20,4.57983571100329e-21,-0.0071550048887729645,0.0006802721181884408,0.005200437270104885,0.0005102040595375001,0.000583090353757143,-0.0,-0.0002721088530961424,-1.4986446767413396e-21,6.776263578034403e-21,-0.0006377550889737904,-0.0002040816325461492,-0.0002332361473236233,4.9753941907844865e-19,1.7811594827103675e-19,7.0890841571502925e-19,-0.006320861633867025,0.0005952381179668009,0.0005102040595375001,0.0038265306502580643,0.0005102040595375001,-0.0,-2.309884896889424e-21,-0.00019841270113829523,-2.352269825347097e-20,7.724940478959219e-19,-0.0001700680295471102,-6.098637220230962e-20,-0.00039682540227659047,-0.0001700680295471102,-5.810270426467613e-20,-0.0071550048887729645,0.0006802721181884408,0.000583090353757143,0.0005102040595375001,0.005200437270104885,-0.0,3.7249009270771205e-21,1.447446821442478e-21,-0.0002721088530961424,9.2647154757356e-19,-5.769504397097457e-21,-0.0002332361473236233,-0.0,-0.0002040816325461492,-0.0006377550889737904,0.0005668934318237007,-0.0011337868636474013,-0.0,-0.0,-0.0,0.00028344671591185033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0003401360590942204,-0.0002721088530961424,-2.309884896889424e-21,3.7249009270771205e-21,-0.0,0.0001360544265480712,5.419489564997731e-22,5.70605988645271e-22,-0.0,-0.0,-3.3881317890172014e-21,1.8861338602052717e-22,-1.504632769052528e-36,6.6416766879486935e-22,0.0005952381179668009,-0.00029761905898340046,-1.4986446767413396e-21,-0.00019841270113829523,1.447446821442478e-21,-0.0,5.419489564997731e-22,9.920635056914762e-05,-2.797510038934645e-22,1.2701927800216437e-21,-2.108481563862142e-21,-6.108855546319924e-23,9.855596945006196e-39,-1.6940658945086007e-21,8.010395039588821e-22,0.0006802721181884408,-0.0003401360590942204,6.776263578034403e-21,-2.352269825347097e-20,-0.0002721088530961424,-0.0,5.70605988645271e-22,-2.797510038934645e-22,0.0001360544265480712,1.3373577858873538e-21,-1.123328588921603e-22,-5.9351489303483346e-21,-5.59502007786929e-22,1.1199918057423591e-20,-3.457349600284914e-21,0.00042517005931586027,-7.153973309654295e-21,-0.0006377550889737904,7.724940478959219e-19,9.2647154757356e-19,-0.0,-0.0,1.2701927800216437e-21,1.3373577858873538e-21,0.00012755101488437504,-6.098637220230962e-20,-9.486769009248164e-20,-8.211858149340057e-20,-4.8552028444524855e-20,-1.110355943243812e-19,0.0005102040595375001,6.6062771543611886e-21,-0.0002040816325461492,-0.0001700680295471102,-5.769504397097457e-21,-0.0,-0.0,-2.108481563862142e-21,-1.123328588921603e-22,-6.098637220230962e-20,6.80272132740356e-05,9.362824233951475e-22,-2.896351589104259e-20,1.6940658945086007e-21,-2.6328014355052704e-22,0.000583090353757143,2.3491467338585693e-20,-0.0002332361473236233,-6.098637220230962e-20,-0.0002332361473236233,-0.0,-3.3881317890172014e-21,-6.108855546319924e-23,-5.9351489303483346e-21,-9.486769009248164e-20,9.362824233951475e-22,9.329446038464084e-05,-1.2217711092639848e-22,2.3824798507224688e-20,-6.174673859335339e-20,0.0003306878206785768,9.272216049031025e-22,4.9753941907844865e-19,-0.00039682540227659047,-0.0,-0.0,1.8861338602052717e-22,9.855596945006196e-39,-5.59502007786929e-22,-8.211858149340057e-20,-2.896351589104259e-20,-1.2217711092639848e-22,6.613756704609841e-05,-1.3031276597057485e-22,-1.0348153661299294e-21,0.0005102040595375001,-2.291759786392996e-20,1.7811594827103675e-19,-0.0001700680295471102,-0.0002040816325461492,-0.0,-1.504632769052528e-36,-1.6940658945086007e-21,1.1199918057423591e-20,-4.8552028444524855e-20,1.6940658945086007e-21,2.3824798507224688e-20,-1.3031276597057485e-22,6.80272132740356e-05,2.5554050273922337e-20,0.00042517005931586027,4.57983571100329e-21,7.0890841571502925e-19,-5.810270426467613e-20,-0.0006377550889737904,-0.0,6.6416766879486935e-22,8.010395039588821e-22,-3.457349600284914e-21,-1.110355943243812e-19,-2.6328014355052704e-22,-6.174673859335339e-20,-1.0348153661299294e-21,2.5554050273922337e-20,0.00012755101488437504,5.0,6.0,7.0,7.0,0.030622368678450584,-0.0071428571827709675,-0.006195335183292627,-0.005472545977681875,-0.005472545977681875,0.00048590864753350616,0.000583090353757143,0.0005102040595375001,0.0005102040595375001,0.00036443150020204484,0.0004373177944216877,0.0004373177944216877,0.00028344671591185033,0.00038265305920504034,0.00028344671591185033,-0.0071428571827709675,0.0064868805930018425,0.000583090353757143,0.0005102040595375001,0.0005102040595375001,-0.0009718172950670123,-0.0002915451768785715,-0.00025510202976875007,-0.00025510202976875007,7.535773578650233e-19,9.11562754405634e-19,9.12028767283231e-19,6.627384509459812e-19,9.420064130676122e-19,6.676071326338917e-19,-0.006195335183292627,0.000583090353757143,0.004482507240027189,0.0004373177944216877,0.0004373177944216877,1.7378636603772115e-18,-0.0002332361473236233,5.427656741661503e-19,5.488773498207866e-19,-0.000546647235751152,-0.0001749271177686751,-0.0001749271177686751,7.938520581071942e-19,4.2879587633858744e-19,8.054183178173701e-19,-0.005472545977681875,0.0005102040595375001,0.0004373177944216877,0.0032981049735099077,0.00038265305920504034,1.5971341819926461e-18,4.885092951263604e-19,-0.0001700680295471102,5.581895423617555e-19,7.182839392716467e-19,-0.00014577258843928576,5.488773498207866e-19,-0.0003401360590942204,-0.00012755101488437504,9.238171249878774e-19,-0.005472545977681875,0.0005102040595375001,0.0004373177944216877,0.00038265305920504034,0.0032981049735099077,1.5971341819926461e-18,4.898257013724502e-19,5.06159519940652e-19,-0.0001700680295471102,7.197801539033903e-19,5.403618873060712e-19,-0.00014577258843928576,1.07742590890747e-18,-0.00012755101488437504,-0.0003401360590942204,0.00048590864753350616,-0.0009718172950670123,1.7378636603772115e-18,1.5971341819926461e-18,1.5971341819926461e-18,0.00024295432376675308,-7.129142704758646e-20,-9.244335296405943e-20,-9.244335296405943e-20,-1.156000674173283e-19,-1.3872007573091513e-19,-1.3872007573091513e-19,-8.991115923857854e-20,-1.21380069495725e-19,-8.991115923857854e-20,0.000583090353757143,-0.0002915451768785715,-0.0002332361473236233,4.885092951263604e-19,4.898257013724502e-19,-7.129142704758646e-20,0.00011661807366181165,-5.191751616427342e-20,-5.2226293639651513e-20,-2.710505431213761e-20,-2.710505431213761e-20,-2.710505431213761e-20,-2.6554496144236814e-20,-3.641401891001294e-20,-2.66620102368231e-20,0.0005102040595375001,-0.00025510202976875007,5.427656741661503e-19,-0.0001700680295471102,5.06159519940652e-19,-9.244335296405943e-20,-5.191751616427342e-20,8.50340147735551e-05,-4.5890636215946577e-20,-3.013055141308127e-20,-4.348629682506769e-20,-3.645282531296904e-20,-4.404571325722362e-20,-4.573977915173222e-20,-2.3899175292107703e-20,0.0005102040595375001,-0.00025510202976875007,5.488773498207866e-19,5.581895423617555e-19,-0.0001700680295471102,-9.244335296405943e-20,-5.2226293639651513e-20,-4.5890636215946577e-20,8.50340147735551e-05,-3.0854253669708477e-20,-3.663628815671962e-20,-4.3825108065264846e-20,-2.436716564835665e-20,-6.191625892013847e-20,-4.604701212581031e-20,0.00036443150020204484,7.535773578650233e-19,-0.000546647235751152,7.182839392716467e-19,7.197801539033903e-19,-1.156000674173283e-19,-2.710505431213761e-20,-3.013055141308127e-20,-3.0854253669708477e-20,0.00010932944860542193,-4.743384504624082e-20,-4.743384504624082e-20,-7.00708380432335e-20,-3.641401891001294e-20,-7.072064657553073e-20,0.0004373177944216877,9.11562754405634e-19,-0.0001749271177686751,-0.00014577258843928576,5.403618873060712e-19,-1.3872007573091513e-19,-2.710505431213761e-20,-4.348629682506769e-20,-3.663628815671962e-20,-4.743384504624082e-20,5.8309036830905825e-05,-1.850291070092744e-20,-7.395596320872729e-20,-2.710505431213761e-20,-5.654909751558815e-20,0.0004373177944216877,9.12028767283231e-19,-0.0001749271177686751,5.488773498207866e-19,-0.00014577258843928576,-1.3872007573091513e-19,-2.710505431213761e-20,-3.645282531296904e-20,-4.3825108065264846e-20,-4.743384504624082e-20,-1.850291070092744e-20,5.8309036830905825e-05,-5.6182171828087e-20,-3.08608614210861e-20,-7.619734478775897e-20,0.00028344671591185033,6.627384509459812e-19,7.938520581071942e-19,-0.0003401360590942204,1.07742590890747e-18,-8.991115923857854e-20,-2.6554496144236814e-20,-4.404571325722362e-20,-2.436716564835665e-20,-7.00708380432335e-20,-7.395596320872729e-20,-5.6182171828087e-20,5.668934318237007e-05,-7.036888802004255e-20,-1.108882915518614e-19,0.00038265305920504034,9.420064130676122e-19,4.2879587633858744e-19,-0.00012755101488437504,-0.00012755101488437504,-1.21380069495725e-19,-3.641401891001294e-20,-4.573977915173222e-20,-6.191625892013847e-20,-3.641401891001294e-20,-2.710505431213761e-20,-3.08608614210861e-20,-7.036888802004255e-20,4.251700738677755e-05,-2.2806080346425886e-20,0.00028344671591185033,6.676071326338917e-19,8.054183178173701e-19,9.238171249878774e-19,-0.0003401360590942204,-8.991115923857854e-20,-2.66620102368231e-20,-2.3899175292107703e-20,-4.604701212581031e-20,-7.072064657553073e-20,-5.654909751558815e-20,-7.619734478775897e-20,-1.108882915518614e-19,-2.2806080346425886e-20,5.668934318237007e-05,5.0,6.0,7.0,8.0,0.027310090139508247,-0.0062996032647788525,-0.005463435314595699,-0.004825680050998926,-0.004322562366724014,0.00042517005931586027,0.0005102040595375001,0.00044642857392318547,0.00039682540227659047,0.0003188775444868952,0.00038265305920504034,0.0003401360590942204,0.00024801588733680546,0.00029761905898340046,0.00019841270113829523,-0.0062996032647788525,0.005700821988284588,0.0005102040595375001,0.00044642857392318547,0.00039682540227659047,-0.0008503401186317205,-0.00025510202976875007,-0.00022321428696159273,-0.00019841270113829523,7.080504226246586e-19,5.4442168975248145e-19,4.211322030596485e-19,2.6967747500332637e-19,2.817969375975412e-19,3.228108206522563e-20,-0.005463435314595699,0.0005102040595375001,0.003939200658351183,0.00038265305920504034,0.0003401360590942204,1.988195810695972e-18,-0.0002040816325461492,-9.760706671201291e-20,-8.261424362607883e-20,-0.00047831633128225803,-0.0001530612207716331,-0.0001360544265480712,-7.739894094976588e-20,-3.451008889304654e-19,-1.5656131464322117e-19,-0.004825680050998926,0.00044642857392318547,0.00038265305920504034,0.0028982425574213266,0.00029761905898340046,1.3140516764762268e-18,-3.084672051002056e-19,-0.00014880952949170023,-4.718252754286675e-21,-4.45886332522728e-19,-0.00012755101488437504,1.0164395367051604e-20,-0.00029761905898340046,-9.920635056914762e-05,-2.13104085519593e-19,-0.004322562366724014,0.00039682540227659047,0.0003401360590942204,0.00029761905898340046,0.0022270812187343836,8.9649989884862e-19,-4.275969297394801e-19,-1.3897486028427853e-19,-0.00011337868636474013,-5.253768384254254e-19,-3.6918575172980706e-19,-9.718172805150971e-05,-2.0328790734103208e-19,-8.50340147735551e-05,-0.00019841270113829523,0.00042517005931586027,-0.0008503401186317205,1.988195810695972e-18,1.3140516764762268e-18,8.9649989884862e-19,0.00021258502965793014,-3.63754871568696e-20,-2.6523791910757184e-20,-2.0208603976038667e-20,-1.7701260565616466e-19,-1.4565607564005176e-19,-1.1405873266810937e-19,-7.867226918051762e-20,-8.092004848459951e-20,-3.1468907025972196e-20,0.0005102040595375001,-0.00025510202976875007,-0.0002040816325461492,-3.084672051002056e-19,-4.275969297394801e-19,-3.63754871568696e-20,0.0001020408162730746,3.2583804320025895e-20,5.0185842632462064e-20,1.442272449358295e-34,9.710405688904971e-21,1.4796808745740296e-20,2.2657612735582555e-20,2.0499744086676057e-20,3.021015139116816e-20,0.00044642857392318547,-0.00022321428696159273,-9.760706671201291e-20,-0.00014880952949170023,-1.3897486028427853e-19,-2.6523791910757184e-20,3.2583804320025895e-20,7.440476474585012e-05,1.4745502545129267e-20,6.319457630020618e-35,4.630446805249961e-21,5.299461841291683e-21,-3.3881317890172014e-21,4.235164736271502e-21,1.1032224959686937e-20,0.00039682540227659047,-0.00019841270113829523,-8.261424362607883e-20,-4.718252754286675e-21,-0.00011337868636474013,-2.0208603976038667e-20,5.0185842632462064e-20,1.4745502545129267e-20,5.668934318237007e-05,-6.018531076210112e-36,1.0083179858628807e-23,-5.082197683525802e-21,-4.194400696093004e-22,-6.306171746821045e-21,-4.2935734618199055e-21,0.0003188775444868952,7.080504226246586e-19,-0.00047831633128225803,-4.45886332522728e-19,-5.253768384254254e-19,-1.7701260565616466e-19,1.442272449358295e-34,6.319457630020618e-35,-6.018531076210112e-36,9.566326480126008e-05,5.468171789570409e-20,3.327300086664742e-20,1.6521176592532187e-20,4.231444039102147e-20,3.540251919252837e-20,0.00038265305920504034,5.4442168975248145e-19,-0.0001530612207716331,-0.00012755101488437504,-3.6918575172980706e-19,-1.4565607564005176e-19,9.710405688904971e-21,4.630446805249961e-21,1.0083179858628807e-23,5.468171789570409e-20,5.10204081365373e-05,3.542720859510852e-20,-4.031008240819675e-21,2.371692252312041e-20,2.267525817825893e-20,0.0003401360590942204,4.211322030596485e-19,-0.0001360544265480712,1.0164395367051604e-20,-9.718172805150971e-05,-1.1405873266810937e-19,1.4796808745740296e-20,5.299461841291683e-21,-5.082197683525802e-21,3.327300086664742e-20,3.542720859510852e-20,3.887269122060388e-05,-2.176909474190416e-20,-6.839084068148684e-21,-5.1173573832032806e-20,0.00024801588733680546,2.6967747500332637e-19,-7.739894094976588e-20,-0.00029761905898340046,-2.0328790734103208e-19,-7.867226918051762e-20,2.2657612735582555e-20,-3.3881317890172014e-21,-4.194400696093004e-22,1.6521176592532187e-20,-4.031008240819675e-21,-2.176909474190416e-20,4.960317528457381e-05,2.0309406919670764e-20,2.1084675486437554e-20,0.00029761905898340046,2.817969375975412e-19,-3.451008889304654e-19,-9.920635056914762e-05,-8.50340147735551e-05,-8.092004848459951e-20,2.0499744086676057e-20,4.235164736271502e-21,-6.306171746821045e-21,4.231444039102147e-20,2.371692252312041e-20,-6.839084068148684e-21,2.0309406919670764e-20,2.8344671591185033e-05,-3.918004787049204e-21,0.00019841270113829523,3.228108206522563e-20,-1.5656131464322117e-19,-2.13104085519593e-19,-0.00019841270113829523,-3.1468907025972196e-20,3.021015139116816e-20,1.1032224959686937e-20,-4.2935734618199055e-21,3.540251919252837e-20,2.267525817825893e-20,-5.1173573832032806e-20,2.1084675486437554e-20,-3.918004787049204e-21,2.8344671591185033e-05,5.0,6.0,8.0,3.0,0.05373677238821983,-0.013657407835125923,-0.01185515895485878,-0.009391534142196178,-0.01974206417798996,0.0009920635493472219,0.0011904762359336019,0.0009259259095415473,0.0020833334419876337,0.0007440476329065859,0.0007936508045531809,0.0017857142956927419,0.00046296295477077365,0.0013888889225199819,0.0020833334419876337,-0.013657407835125923,0.012781084515154362,0.0011904762359336019,0.0009259259095415473,0.0020833334419876337,-0.0019841270986944437,-0.0005952381179668009,-0.00046296295477077365,-0.0010416667209938169,-8.425943506694157e-35,-4.743384504624082e-20,-0.0,-2.371692252312041e-20,-0.0,-0.0,-0.01185515895485878,0.0011904762359336019,0.008834325708448887,0.0007936508045531809,0.0017857142956927419,-0.0,-0.0004761904710903764,-4.743384504624082e-20,-0.0,-0.0011160714784637094,-0.0003174603043589741,-0.0007142857066355646,-1.160032817767961e-18,-1.3216941015531808e-18,-9.912705813347644e-18,-0.009391534142196178,0.0009259259095415473,0.0007936508045531809,0.004998110234737396,0.0013888889225199819,-0.0,-0.0,-0.00026455026818439364,-0.0,-2.1745914491577524e-18,-0.00022675737272948027,-2.825398936182257e-33,-0.00046296295477077365,-0.00039682540227659047,-1.9314250866037423e-32,-0.01974206417798996,0.0020833334419876337,0.0017857142956927419,0.0013888889225199819,0.04057539626955986,-0.0,-0.0,-0.0,-0.0020833334419876337,-5.615311866003472e-18,-3.095252215183737e-33,-0.0017857142956927419,-0.0,-0.0013888889225199819,-0.012500000186264515,0.0009920635493472219,-0.0019841270986944437,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00046296295477077365,-4.743384504624082e-20,-0.00026455026818439364,-0.0,-0.0,-0.0,0.00013227513409219682,-0.0,2.407412430484045e-35,1.3552527156068805e-20,0.0,6.776263578034403e-21,-0.0,0.0,0.0020833334419876337,-0.0010416667209938169,-0.0,-0.0,-0.0020833334419876337,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-8.425943506694157e-35,-0.0011160714784637094,-2.1745914491577524e-18,-5.615311866003472e-18,-0.0,-0.0,2.407412430484045e-35,-0.0,0.00022321428696159273,1.473104497898549e-19,2.9001743267569904e-19,2.202823588753282e-19,2.64338825480515e-19,1.9825412040285595e-18,0.0007936508045531809,-4.743384504624082e-20,-0.0003174603043589741,-0.00022675737272948027,-3.095252215183737e-33,-0.0,-0.0,1.3552527156068805e-20,-0.0,1.473104497898549e-19,9.070294618140906e-05,1.9139725036099846e-34,1.6748877443183014e-20,-0.0,1.3083795790789315e-33,0.0017857142956927419,-0.0,-0.0007142857066355646,-2.825398936182257e-33,-0.0017857142956927419,-0.0,-0.0,0.0,-0.0,2.9001743267569904e-19,1.9139725036099846e-34,0.0007142857066355646,2.8620803292351627e-34,3.4344964869176914e-34,2.5758723422293945e-33,0.00046296295477077365,-2.371692252312041e-20,-1.160032817767961e-18,-0.00046296295477077365,-0.0,-0.0,-0.0,6.776263578034403e-21,-0.0,2.202823588753282e-19,1.6748877443183014e-20,2.8620803292351627e-34,6.613756704609841e-05,1.9688052398757023e-35,1.9565003280193003e-33,0.0013888889225199819,-0.0,-1.3216941015531808e-18,-0.00039682540227659047,-0.0013888889225199819,-0.0,-0.0,-0.0,-0.0,2.64338825480515e-19,-0.0,3.4344964869176914e-34,1.9688052398757023e-35,0.00039682540227659047,2.347800356888962e-33,0.0020833334419876337,-0.0,-9.912705813347644e-18,-1.9314250866037423e-32,-0.012500000186264515,-0.0,-0.0,0.0,-0.0,1.9825412040285595e-18,1.3083795790789315e-33,2.5758723422293945e-33,1.9565003280193003e-33,2.347800356888962e-33,0.0062500000931322575,5.0,6.0,8.0,4.0,0.04315972328186035,-0.010555555112659931,-0.009159225970506668,-0.0072519839741289616,-0.012470237910747528,0.0007440476329065859,0.0008928571478463709,0.0006944444612599909,0.0012499999720603228,0.0005580357392318547,0.0005952381179668009,0.0010714285308495164,0.00034722223062999547,0.0008333333535119891,0.0010416667209938169,-0.010555555112659931,0.009742063470184803,0.0008928571478463709,0.0006944444612599909,0.0012499999720603228,-0.0014880952658131719,-0.00044642857392318547,-0.00034722223062999547,-0.0006249999860301614,-4.2129717533470784e-35,6.34719271584093e-20,0.0,-1.1858461261560205e-20,-0.0,-7.491920405018952e-36,-0.009159225970506668,0.0008928571478463709,0.006732887122780085,0.0005952381179668009,0.0010714285308495164,-0.0,-0.0003571428533177823,6.34719271584093e-20,-0.0,-0.0008370535797439516,-0.0002380952355451882,-0.00042857142398133874,5.468992507834426e-19,4.142959171884157e-19,1.734723475976807e-18,-0.0072519839741289616,0.0006944444612599909,0.0005952381179668009,0.00380810652859509,0.0008333333535119891,-0.0,-0.0,-0.00019841270113829523,-0.0,9.04348912283559e-19,-0.0001700680295471102,-9.400006798598468e-34,-0.00034722223062999547,-0.0002380952355451882,-3.965082252960754e-19,-0.012470237910747528,0.0012499999720603228,0.0010714285308495164,0.0008333333535119891,0.015605159103870392,-0.0,-0.0,-6.42164585645487e-36,-0.0008333333535119891,1.7534161034592804e-18,1.7787691892340307e-20,-0.0007142857066355646,1.3552527156068805e-20,-0.0005555555690079927,-0.0031250000465661287,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.00044642857392318547,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,6.34719271584093e-20,-0.00019841270113829523,-6.42164585645487e-36,-0.0,-0.0,9.920635056914762e-05,-0.0,1.2037062152420224e-35,-1.8134836330974085e-20,-0.0,3.3881317890172014e-21,-0.0,2.1405485590295553e-36,0.0012499999720603228,-0.0006249999860301614,-0.0,-0.0,-0.0008333333535119891,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005580357392318547,-4.2129717533470784e-35,-0.0008370535797439516,9.04348912283559e-19,1.7534161034592804e-18,-0.0,-0.0,1.2037062152420224e-35,-0.0,0.00016741071885917336,-8.286212639120624e-20,-1.7401046994517708e-19,-8.26058813470738e-20,-7.930164376674537e-20,-3.4694470036524025e-19,0.0005952381179668009,6.34719271584093e-20,-0.0002380952355451882,-0.0001700680295471102,1.7787691892340307e-20,-0.0,-0.0,-1.8134836330974085e-20,-0.0,-8.286212639120624e-20,6.80272132740356e-05,8.61287580706745e-35,-3.824852779407083e-20,-5.082197683525802e-21,1.6489035784518475e-34,0.0010714285308495164,0.0,-0.00042857142398133874,-9.400006798598468e-34,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-1.7401046994517708e-19,8.61287580706745e-35,0.0002857142826542258,8.586241217294229e-35,8.242791384931467e-35,3.606221288304702e-34,0.00034722223062999547,-1.1858461261560205e-20,5.468992507834426e-19,-0.00034722223062999547,1.3552527156068805e-20,-0.0,-0.0,3.3881317890172014e-21,-0.0,-8.26058813470738e-20,-3.824852779407083e-20,8.586241217294229e-35,4.960317528457381e-05,-5.0981794753510514e-21,1.6415033593770663e-34,0.0008333333535119891,-0.0,4.142959171884157e-19,-0.0002380952355451882,-0.0005555555690079927,-0.0,-0.0,-0.0,-0.0,-7.930164376674537e-20,-5.082197683525802e-21,8.242791384931467e-35,-5.0981794753510514e-21,0.00015873015217948705,2.64338825480515e-19,0.0010416667209938169,-7.491920405018952e-36,1.734723475976807e-18,-3.965082252960754e-19,-0.0031250000465661287,-0.0,-0.0,2.1405485590295553e-36,-0.0,-3.4694470036524025e-19,1.6489035784518475e-34,3.606221288304702e-34,1.6415033593770663e-34,2.64338825480515e-19,0.0010416667209938169,5.0,6.0,8.0,5.0,0.03613095358014107,-0.008611110970377922,-0.007470238022506237,-0.0059126983396708965,-0.008611110970377922,0.0005952381179668009,0.0007142857066355646,0.0005555555690079927,0.0008333333535119891,0.00044642857392318547,0.0004761904710903764,0.0007142857066355646,0.00027777778450399637,0.0005555555690079927,0.0005952381179668009,-0.008611110970377922,0.007876983843743801,0.0007142857066355646,0.0005555555690079927,0.0008333333535119891,-0.0011904762359336019,-0.0003571428533177823,-0.00027777778450399637,-0.00041666667675599456,-2.9773569276229773e-33,7.264815576359886e-19,-2.1147105004465433e-19,1.3216941015531808e-18,5.951645157428758e-19,-7.049035173817772e-19,-0.007470238022506237,0.0007142857066355646,0.005443452391773462,0.0004761904710903764,0.0007142857066355646,4.531522353246055e-19,-0.0002857142826542258,7.912120853328371e-20,1.0065088874912997e-34,-0.0006696428754366934,-0.00019047618843615055,-0.0002857142826542258,7.981699926035093e-19,1.410460817640201e-19,-1.850371804212999e-18,-0.0059126983396708965,0.0005555555690079927,0.0004761904710903764,0.003078231355175376,0.0005555555690079927,2.9293056633771532e-18,1.1717222239918307e-18,-0.00015873015217948705,-1.9079388702569559e-19,4.0438714648003714e-19,-0.0001360544265480712,-1.8126090188466044e-19,-0.00027777778450399637,-0.00015873015217948705,-1.8236621422336618e-18,-0.008611110970377922,0.0008333333535119891,0.0007142857066355646,0.0005555555690079927,0.007876983843743801,5.2867765096103e-19,2.1147105004465433e-19,-1.378028203195339e-18,-0.00041666667675599456,-1.7140861468742216e-18,-2.638238796998066e-19,-0.0003571428533177823,-6.098637220230962e-19,-0.00027777778450399637,-0.0011904762359336019,0.0005952381179668009,-0.0011904762359336019,4.531522353246055e-19,2.9293056633771532e-18,5.2867765096103e-19,0.00029761905898340046,1.1150339927491932e-33,-1.5105075372466654e-19,-1.8156322992591229e-34,3.848227794901423e-34,-1.2947206723560157e-19,-1.7249145558837446e-34,-2.64338825480515e-19,-1.5105075372466654e-19,-1.73543281964183e-33,0.0007142857066355646,-0.0003571428533177823,-0.0002857142826542258,1.1717222239918307e-18,2.1147105004465433e-19,1.1150339927491932e-33,0.0001428571413271129,-6.042030278233632e-20,-7.262528967447751e-35,1.5392911409194433e-34,-5.1788828186710334e-20,-6.899658223534978e-35,-1.0573552502232717e-19,-6.042030278233632e-20,-6.94173127856732e-34,0.0005555555690079927,-0.00027777778450399637,7.912120853328371e-20,-0.00015873015217948705,-1.378028203195339e-18,-1.5105075372466654e-19,-6.042030278233632e-20,7.936507608974352e-05,9.539694351284779e-20,3.009265538105056e-34,-2.260605935014004e-20,6.042030278233632e-20,-0.0,4.573977915173222e-20,2.0140100496622206e-19,0.0008333333535119891,-0.00041666667675599456,1.0065088874912997e-34,-1.9079388702569559e-19,-0.00041666667675599456,-1.8156322992591229e-34,-7.262528967447751e-35,9.539694351284779e-20,0.00020833333837799728,0.0,-2.875739596550592e-35,7.262528967447751e-35,-3.009265538105056e-36,5.266214691683848e-35,2.4208429126196702e-34,0.00044642857392318547,-2.9773569276229773e-33,-0.0006696428754366934,4.0438714648003714e-19,-1.7140861468742216e-18,3.848227794901423e-34,1.5392911409194433e-34,3.009265538105056e-34,0.0,0.00013392856635618955,1.7051472066599702e-20,1.3920837078626284e-19,-4.9563528162009426e-20,1.88813446194801e-21,3.398641894181512e-19,0.0004761904710903764,7.264815576359886e-19,-0.00019047618843615055,-0.0001360544265480712,-2.638238796998066e-19,-1.2947206723560157e-19,-5.1788828186710334e-20,-2.260605935014004e-20,-2.875739596550592e-35,1.7051472066599702e-20,5.442176916403696e-05,2.4168120466699676e-20,-9.682322907108796e-20,-8.470329472543003e-21,4.315735682225861e-20,0.0007142857066355646,-2.1147105004465433e-19,-0.0002857142826542258,-1.8126090188466044e-19,-0.0003571428533177823,-1.7249145558837446e-34,-6.899658223534978e-35,6.042030278233632e-20,7.262528967447751e-35,1.3920837078626284e-19,2.4168120466699676e-20,0.0001428571413271129,-9.930576275746685e-35,3.3101920919155616e-35,5.257539451539283e-34,0.00027777778450399637,1.3216941015531808e-18,7.981699926035093e-19,-0.00027777778450399637,-6.098637220230962e-19,-2.64338825480515e-19,-1.0573552502232717e-19,-0.0,-3.009265538105056e-36,-4.9563528162009426e-20,-9.682322907108796e-20,-9.930576275746685e-35,3.968253804487176e-05,3.1372181824266044e-20,8.811293967272215e-20,0.0005555555690079927,5.951645157428758e-19,1.410460817640201e-19,-0.00015873015217948705,-0.00027777778450399637,-1.5105075372466654e-19,-6.042030278233632e-20,4.573977915173222e-20,5.266214691683848e-35,1.88813446194801e-21,-8.470329472543003e-21,3.3101920919155616e-35,3.1372181824266044e-20,7.936507608974352e-05,3.2291293222146684e-19,0.0005952381179668009,-7.049035173817772e-19,-1.850371804212999e-18,-1.8236621422336618e-18,-0.0011904762359336019,-1.73543281964183e-33,-6.94173127856732e-34,2.0140100496622206e-19,2.4208429126196702e-34,3.398641894181512e-19,4.315735682225861e-20,5.257539451539283e-34,8.811293967272215e-20,3.2291293222146684e-19,0.00029761905898340046,5.0,6.0,8.0,6.0,0.031098827719688416,-0.007275132462382317,-0.006310232449322939,-0.004993386100977659,-0.006310232449322939,0.0004960317746736109,0.0005952381179668009,0.00046296295477077365,0.0005952381179668009,0.00037202381645329297,0.00039682540227659047,0.0005102040595375001,0.00023148147738538682,0.00039682540227659047,0.00037202381645329297,-0.007275132462382317,0.006613756529986858,0.0005952381179668009,0.00046296295477077365,0.0005952381179668009,-0.0009920635493472219,-0.00029761905898340046,-0.00023148147738538682,-0.00029761905898340046,-4.2129717533470784e-35,-2.4202925060325125e-20,-0.0,-1.1858461261560205e-20,-2.964615315390051e-21,-0.0,-0.006310232449322939,0.0005952381179668009,0.004570223856717348,0.00039682540227659047,0.0005102040595375001,-0.0,-0.0002380952355451882,-2.4202925060325125e-20,-0.0,-0.0005580357392318547,-0.00015873015217948705,-0.0002040816325461492,-5.808669056500499e-19,-3.7466225607157923e-19,-9.735692470983746e-19,-0.004993386100977659,0.00046296295477077365,0.00039682540227659047,0.0025840892922133207,0.00039682540227659047,-0.0,-0.0,-0.00013227513409219682,-0.0,-1.1439397087580121e-18,-0.00011337868636474013,-6.79449556017454e-34,-0.00023148147738538682,-0.00011337868636474013,-1.995758533258903e-33,-0.006310232449322939,0.0005952381179668009,0.0005102040595375001,0.00039682540227659047,0.004570223856717348,-0.0,-0.0,-2.964615315390051e-21,-0.0002380952355451882,-1.4036323382859992e-18,2.964615315390051e-21,-0.0002040816325461492,-6.776263578034403e-21,-0.00015873015217948705,-0.0005580357392318547,0.0004960317746736109,-0.0009920635493472219,-0.0,-0.0,-0.0,0.00024801588733680546,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-0.0002380952355451882,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-0.00023148147738538682,-2.4202925060325125e-20,-0.00013227513409219682,-2.964615315390051e-21,-0.0,-0.0,6.613756704609841e-05,-0.0,1.2037062152420224e-35,6.91512167660534e-21,0.0,3.3881317890172014e-21,8.470329472543003e-22,0.0,0.0005952381179668009,-0.00029761905898340046,-0.0,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-4.2129717533470784e-35,-0.0005580357392318547,-1.1439397087580121e-18,-1.4036323382859992e-18,-0.0,-0.0,1.2037062152420224e-35,-0.0,0.00011160714348079637,7.365522489492744e-20,6.628969852802558e-20,1.101411794376641e-19,7.552537686233327e-20,1.9471385717449317e-19,0.00039682540227659047,-2.4202925060325125e-20,-0.00015873015217948705,-0.00011337868636474013,2.964615315390051e-21,-0.0,-0.0,6.91512167660534e-21,-0.0,7.365522489492744e-20,4.535147309070453e-05,4.374794220169298e-35,8.617439990193865e-21,-8.470329472543003e-22,1.2850156416247549e-34,0.0005102040595375001,-0.0,-0.0002040816325461492,-6.79449556017454e-34,-0.0002040816325461492,-0.0,-0.0,0.0,-0.0,6.628969852802558e-20,4.374794220169298e-35,8.163265010807663e-05,6.541898124983398e-35,4.48587298358942e-35,1.1565141348594645e-34,0.00023148147738538682,-1.1858461261560205e-20,-5.808669056500499e-19,-0.00023148147738538682,-6.776263578034403e-21,-0.0,-0.0,3.3881317890172014e-21,-0.0,1.101411794376641e-19,8.617439990193865e-21,6.541898124983398e-35,3.3068783523049206e-05,5.593613885974079e-23,1.9215627073674426e-34,0.00039682540227659047,-2.964615315390051e-21,-3.7466225607157923e-19,-0.00011337868636474013,-0.00015873015217948705,-0.0,-0.0,8.470329472543003e-22,-0.0,7.552537686233327e-20,-8.470329472543003e-22,4.48587298358942e-35,5.593613885974079e-23,4.535147309070453e-05,1.3176430714941362e-34,0.00037202381645329297,-0.0,-9.735692470983746e-19,-1.995758533258903e-33,-0.0005580357392318547,-0.0,-0.0,0.0,-0.0,1.9471385717449317e-19,1.2850156416247549e-34,1.1565141348594645e-34,1.9215627073674426e-34,1.3176430714941362e-34,0.00011160714348079637,5.0,6.0,8.0,7.0,0.027310090139508247,-0.0062996032647788525,-0.005463435314595699,-0.004322562366724014,-0.004825680050998926,0.00042517005931586027,0.0005102040595375001,0.00039682540227659047,0.00044642857392318547,0.0003188775444868952,0.0003401360590942204,0.00038265305920504034,0.00019841270113829523,0.00029761905898340046,0.00024801588733680546,-0.0062996032647788525,0.005700821988284588,0.0005102040595375001,0.00039682540227659047,0.00044642857392318547,-0.0008503401186317205,-0.00025510202976875007,-0.00019841270113829523,-0.00022321428696159273,7.080504226246586e-19,4.398632168924231e-19,5.621761393239548e-19,4.879904848612277e-20,2.774720237648077e-19,3.0551161122337123e-19,-0.005463435314595699,0.0005102040595375001,0.003939200658351183,0.0003401360590942204,0.00038265305920504034,1.988195810695972e-18,-0.0002040816325461492,-6.326985598205054e-20,-8.056822530562598e-20,-0.00047831633128225803,-0.0001360544265480712,-0.0001530612207716331,-1.2275059144845173e-19,-3.7174799537597835e-19,-3.784811421645834e-20,-0.004322562366724014,0.00039682540227659047,0.0003401360590942204,0.0022270812187343836,0.00029761905898340046,8.9649989884862e-19,-4.275969297394801e-19,-0.00011337868636474013,-3.432070266062826e-20,-5.253768384254254e-19,-9.718172805150971e-05,-2.185345003916095e-19,-0.00019841270113829523,-8.50340147735551e-05,5.528174695723181e-19,-0.004825680050998926,0.00044642857392318547,0.00038265305920504034,0.00029761905898340046,0.0028982425574213266,1.3140516764762268e-18,-3.084672051002056e-19,1.0318427383101488e-19,-0.00014880952949170023,-4.45886332522728e-19,1.351572020374961e-19,-0.00012755101488437504,5.421010862427522e-19,-9.920635056914762e-05,-0.00029761905898340046,0.00042517005931586027,-0.0008503401186317205,1.988195810695972e-18,8.9649989884862e-19,1.3140516764762268e-18,0.00021258502965793014,-3.63754871568696e-20,-2.0208603976038667e-20,-2.6523791910757184e-20,-1.7701260565616466e-19,-1.1405873266810937e-19,-1.4565607564005176e-19,-3.1468907025972196e-20,-8.092004848459951e-20,-7.867226918051762e-20,0.0005102040595375001,-0.00025510202976875007,-0.0002040816325461492,-4.275969297394801e-19,-3.084672051002056e-19,-3.63754871568696e-20,0.0001020408162730746,5.0185842632462064e-20,3.2583804320025895e-20,1.442272449358295e-34,1.4796808745740296e-20,9.710405688904971e-21,3.021015139116816e-20,2.0499744086676057e-20,2.2657612735582555e-20,0.00039682540227659047,-0.00019841270113829523,-6.326985598205054e-20,-0.00011337868636474013,1.0318427383101488e-19,-2.0208603976038667e-20,5.0185842632462064e-20,5.668934318237007e-05,5.8100184756540824e-21,-1.8055593228630336e-35,-5.929230630780102e-21,-5.4498390761272755e-21,1.7530929864431595e-36,-6.776263578034403e-21,-1.1917352643764859e-20,0.00044642857392318547,-0.00022321428696159273,-8.056822530562598e-20,-3.432070266062826e-20,-0.00014880952949170023,-2.6523791910757184e-20,3.2583804320025895e-20,5.8100184756540824e-21,7.440476474585012e-05,4.2129717533470784e-35,4.4005750472532884e-23,5.082197683525802e-21,5.170675009990844e-22,6.2252368898647765e-21,-1.9186102917965855e-21,0.0003188775444868952,7.080504226246586e-19,-0.00047831633128225803,-5.253768384254254e-19,-4.45886332522728e-19,-1.7701260565616466e-19,1.442272449358295e-34,-1.8055593228630336e-35,4.2129717533470784e-35,9.566326480126008e-05,3.327300086664742e-20,5.468171789570409e-20,3.540251919252837e-20,4.231444039102147e-20,1.6521176592532187e-20,0.0003401360590942204,4.398632168924231e-19,-0.0001360544265480712,-9.718172805150971e-05,1.351572020374961e-19,-1.1405873266810937e-19,1.4796808745740296e-20,-5.929230630780102e-21,4.4005750472532884e-23,3.327300086664742e-20,3.887269122060388e-05,7.38810823606585e-21,-5.2643897064368616e-20,-0.0,-3.2280006084194457e-20,0.00038265305920504034,5.621761393239548e-19,-0.0001530612207716331,-2.185345003916095e-19,-0.00012755101488437504,-1.4565607564005176e-19,9.710405688904971e-21,-5.4498390761272755e-21,5.082197683525802e-21,5.468171789570409e-20,7.38810823606585e-21,5.10204081365373e-05,1.3120394756256606e-20,2.462036369515457e-20,-4.951884829202806e-21,0.00019841270113829523,4.879904848612277e-20,-1.2275059144845173e-19,-0.00019841270113829523,5.421010862427522e-19,-3.1468907025972196e-20,3.021015139116816e-20,1.7530929864431595e-36,5.170675009990844e-22,3.540251919252837e-20,-5.2643897064368616e-20,1.3120394756256606e-20,2.8344671591185033e-05,-4.1638472271852257e-20,-7.384404825678828e-20,0.00029761905898340046,2.774720237648077e-19,-3.7174799537597835e-19,-8.50340147735551e-05,-9.920635056914762e-05,-8.092004848459951e-20,2.0499744086676057e-20,-6.776263578034403e-21,6.2252368898647765e-21,4.231444039102147e-20,-0.0,2.462036369515457e-20,-4.1638472271852257e-20,2.8344671591185033e-05,1.596146773910502e-20,0.00024801588733680546,3.0551161122337123e-19,-3.784811421645834e-20,5.528174695723181e-19,-0.00029761905898340046,-7.867226918051762e-20,2.2657612735582555e-20,-1.1917352643764859e-20,-1.9186102917965855e-21,1.6521176592532187e-20,-3.2280006084194457e-20,-4.951884829202806e-21,-7.384404825678828e-20,1.596146773910502e-20,4.960317528457381e-05,5.0,6.0,8.0,8.0,0.024351025000214577,-0.0055555556900799274,-0.004817708395421505,-0.003811177331954241,-0.003811177331954241,0.00037202381645329297,0.00044642857392318547,0.00034722223062999547,0.00034722223062999547,0.00027901786961592734,0.00029761905898340046,0.00029761905898340046,0.00017361111531499773,0.00023148147738538682,0.00017361111531499773,-0.0055555556900799274,0.005009920801967382,0.00044642857392318547,0.00034722223062999547,0.00034722223062999547,-0.0007440476329065859,-0.00022321428696159273,-0.00017361111531499773,-0.00017361111531499773,-5.266214691683848e-35,3.4190147064338394e-20,3.2440317564316355e-20,6.259709884230994e-21,-9.720049734352351e-22,-1.1313090743946337e-20,-0.004817708395421505,0.00044642857392318547,0.0034616815391927958,0.00029761905898340046,0.00029761905898340046,-0.0,-0.00017857142665889114,3.4384327713135217e-20,3.224613691551953e-20,-0.0004185267898719758,-0.0001190476177725941,-0.0001190476177725941,2.780423130983747e-19,1.2051733304152927e-19,2.743424376160016e-19,-0.003811177331954241,0.00034722223062999547,0.00029761905898340046,0.0019569634459912777,0.00023148147738538682,-0.0,-0.0,-9.920635056914762e-05,2.5549846112303165e-21,4.697970738031272e-19,-8.50340147735551e-05,5.082197683525802e-21,-0.00017361111531499773,-6.613756704609841e-05,1.1199541625621394e-20,-0.003811177331954241,0.00034722223062999547,0.00029761905898340046,0.00023148147738538682,0.0019569634459912777,-0.0,-0.0,-2.165653557459551e-21,-9.920635056914762e-05,4.697970738031272e-19,2.7538126983661736e-21,-8.50340147735551e-05,6.776263578034403e-21,-6.613756704609841e-05,-0.00017361111531499773,0.00037202381645329297,-0.0007440476329065859,-0.0,-0.0,-0.0,0.00018601190822664648,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00022321428696159273,-0.00017857142665889114,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-0.00017361111531499773,3.4384327713135217e-20,-9.920635056914762e-05,-2.165653557459551e-21,-0.0,-0.0,4.960317528457381e-05,-5.395578244327396e-23,9.027796614315168e-36,-9.872794006287488e-21,4.8700047149336905e-23,-1.6940658945086007e-21,8.470329472543003e-22,-1.0735096877286166e-22,0.00034722223062999547,-0.00017361111531499773,3.224613691551953e-20,2.5549846112303165e-21,-9.920635056914762e-05,-0.0,-0.0,-5.395578244327396e-23,4.960317528457381e-05,6.018531076210112e-36,1.0418052417300393e-22,-9.317362419797304e-21,-9.442261138712038e-23,-5.693172044963061e-22,3.3396625594132885e-21,0.00027901786961592734,-5.266214691683848e-35,-0.0004185267898719758,4.697970738031272e-19,4.697970738031272e-19,-0.0,-0.0,9.027796614315168e-36,6.018531076210112e-36,8.370535942958668e-05,-4.143106319560312e-20,-4.143106319560312e-20,-4.13029406735369e-20,-2.2028234918180537e-20,-4.13029406735369e-20,0.00029761905898340046,3.4190147064338394e-20,-0.0001190476177725941,-8.50340147735551e-05,2.7538126983661736e-21,-0.0,-0.0,-9.872794006287488e-21,1.0418052417300393e-22,-4.143106319560312e-20,3.40136066370178e-05,4.174289665501917e-23,-2.0521685375541453e-20,-1.2705494208814505e-21,1.8231591572503507e-22,0.00029761905898340046,3.2440317564316355e-20,-0.0001190476177725941,5.082197683525802e-21,-8.50340147735551e-05,-0.0,-0.0,4.8700047149336905e-23,-9.317362419797304e-21,-4.143106319560312e-20,4.174289665501917e-23,3.40136066370178e-05,8.522508014475687e-23,-1.6940658945086007e-21,-1.956166634207837e-20,0.00017361111531499773,6.259709884230994e-21,2.780423130983747e-19,-0.00017361111531499773,6.776263578034403e-21,-0.0,-0.0,-1.6940658945086007e-21,-9.442261138712038e-23,-4.13029406735369e-20,-2.0521685375541453e-20,8.522508014475687e-23,2.4801587642286904e-05,1.9577648285364914e-22,-2.7290525633618207e-22,0.00023148147738538682,-9.720049734352351e-22,1.2051733304152927e-19,-6.613756704609841e-05,-6.613756704609841e-05,-0.0,-0.0,8.470329472543003e-22,-5.693172044963061e-22,-2.2028234918180537e-20,-1.2705494208814505e-21,-1.6940658945086007e-21,1.9577648285364914e-22,1.889644772745669e-05,-2.6783847721041696e-21,0.00017361111531499773,-1.1313090743946337e-20,2.743424376160016e-19,1.1199541625621394e-20,-0.00017361111531499773,-0.0,-0.0,-1.0735096877286166e-22,3.3396625594132885e-21,-4.13029406735369e-20,1.8231591572503507e-22,-1.956166634207837e-20,-2.7290525633618207e-22,-2.6783847721041696e-21,2.4801587642286904e-05,5.0,7.0,3.0,3.0,0.10241874307394028,-0.028911564499139786,-0.02222222276031971,-0.0416666679084301,-0.0416666679084301,0.0022675737272948027,0.0023809524718672037,0.004761904943734407,0.004761904943734407,0.0013227512827143073,0.0035714285913854837,0.0035714285913854837,0.004761904943734407,0.0071428571827709675,0.004761904943734407,-0.028911564499139786,0.02806122414767742,0.0023809524718672037,0.004761904943734407,0.004761904943734407,-0.004535147454589605,-0.0011904762359336019,-0.0023809524718672037,-0.0023809524718672037,-0.0,0.0,-0.0,-5.282550504534802e-35,7.084670875052644e-36,-4.388368941431077e-35,-0.02222222276031971,0.0023809524718672037,0.014285714365541935,0.0035714285913854837,0.0035714285913854837,-0.0,-0.0007936508045531809,-0.0,-0.0,-0.0015873016091063619,-0.0011904762359336019,-0.0011904762359336019,-3.1720658023686032e-18,-1.5860329011843016e-18,-3.1720658023686032e-18,-0.0416666679084301,0.004761904943734407,0.0035714285913854837,0.0892857164144516,0.0071428571827709675,-0.0,-3.285544879676384e-35,-0.004761904943734407,-0.0,-0.0,-0.0035714285913854837,-7.930164505921508e-19,-0.02857142873108387,-0.0071428571827709675,-1.5860329632228476e-17,-0.0416666679084301,0.004761904943734407,0.0035714285913854837,0.0071428571827709675,0.0892857164144516,-0.0,-2.689423741945259e-35,-0.0,-0.004761904943734407,1.3582313736056384e-20,-7.930164505921508e-19,-0.0035714285913854837,-1.5860329632228476e-17,-0.0071428571827709675,-0.02857142873108387,0.0022675737272948027,-0.004535147454589605,-0.0,-0.0,-0.0,0.0011337868636474013,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,-0.0007936508045531809,-3.285544879676384e-35,-2.689423741945259e-35,-0.0,0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,-0.0,1.7608502160092548e-35,-2.3615569583508813e-36,1.4627896471436923e-35,0.004761904943734407,-0.0023809524718672037,-0.0,-0.004761904943734407,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-0.0023809524718672037,-0.0,-0.0,-0.004761904943734407,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013227512827143073,-0.0,-0.0015873016091063619,-0.0,1.3582313736056384e-20,-0.0,-0.0,-0.0,-0.0,0.00026455026818439364,-0.0,0.0,5.756625998688988e-35,0.0,0.0,0.0035714285913854837,0.0,-0.0011904762359336019,-0.0035714285913854837,-7.930164505921508e-19,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,8.804251223539237e-35,3.1720658023686032e-18,7.930164505921508e-19,1.7608503135844695e-33,0.0035714285913854837,-0.0,-0.0011904762359336019,-7.930164505921508e-19,-0.0035714285913854837,-0.0,-0.0,-0.0,-0.0,0.0,8.804251223539237e-35,0.0011904762359336019,1.7608503135844695e-33,7.930164505921508e-19,3.1720658023686032e-18,0.004761904943734407,-5.282550504534802e-35,-3.1720658023686032e-18,-0.02857142873108387,-1.5860329632228476e-17,-0.0,1.7608502160092548e-35,-0.0,-0.0,5.756625998688988e-35,3.1720658023686032e-18,1.7608503135844695e-33,0.014285714365541935,2.113020339567165e-33,7.930164816114238e-18,0.0071428571827709675,7.084670875052644e-36,-1.5860329011843016e-18,-0.0071428571827709675,-0.0071428571827709675,-0.0,-2.3615569583508813e-36,-0.0,-0.0,0.0,7.930164505921508e-19,7.930164505921508e-19,2.113020339567165e-33,0.0071428571827709675,2.113020339567165e-33,0.004761904943734407,-4.388368941431077e-35,-3.1720658023686032e-18,-1.5860329632228476e-17,-0.02857142873108387,-0.0,1.4627896471436923e-35,-0.0,-0.0,0.0,1.7608503135844695e-33,3.1720658023686032e-18,7.930164816114238e-18,2.113020339567165e-33,0.014285714365541935,5.0,7.0,3.0,4.0,0.08282596617937088,-0.022397959604859352,-0.017202381044626236,-0.03232142701745033,-0.026428570970892906,0.001700680237263441,0.0017857142956927419,0.0035714285913854837,0.0028571428265422583,0.0009920635493472219,0.0026785715017467737,0.002142857061699033,0.0035714285913854837,0.004285714123398066,0.0023809524718672037,-0.022397959604859352,0.021403061226010323,0.0017857142956927419,0.0035714285913854837,0.0028571428265422583,-0.003401360474526882,-0.0008928571478463709,-0.0017857142956927419,-0.0014285714132711291,1.2180987254200756e-18,-9.147955830346444e-19,3.2150521040562996e-18,-2.979476111402934e-17,-4.758098496757752e-19,5.400064167775842e-18,-0.017202381044626236,0.0017857142956927419,0.010892856866121292,0.0026785715017467737,0.002142857061699033,3.686357696802782e-18,-0.0005952381179668009,-6.495182436010055e-19,-1.9837998627281355e-19,-0.0011904762359336019,-0.0008928571478463709,-0.0007142857066355646,-2.5342975973303675e-17,-7.387427627980432e-18,9.154256878662566e-19,-0.03232142701745033,0.0035714285913854837,0.0026785715017467737,0.06803571432828903,0.004285714123398066,-1.4090877805414242e-17,-8.146350123566197e-18,-0.0035714285913854837,1.268826300267926e-18,-1.0787811616230769e-17,-0.0026785715017467737,3.059649268785656e-18,-0.02142857201397419,-0.004285714123398066,2.2997477222268738e-17,-0.026428570970892906,0.0028571428265422583,0.002142857061699033,0.004285714123398066,0.034285712987184525,5.5507553822773834e-18,-6.538610452144855e-19,1.141943680580891e-17,-0.0019047618843615055,-1.3436116994488452e-18,-1.5335717625676932e-18,-0.0014285714132711291,4.09989489808397e-17,-0.0028571428265422583,-0.0071428571827709675,0.001700680237263441,-0.003401360474526882,3.686357696802782e-18,-1.4090877805414242e-17,5.5507553822773834e-18,0.0008503401186317205,-1.0609516764302874e-19,1.3810354183122756e-18,-1.697522733987248e-19,-3.146890767220705e-19,-5.7777898331617076e-34,-6.797283788363024e-19,5.664403380997269e-18,-5.3177050176697105e-33,-7.552537427739386e-19,0.0017857142956927419,-0.0008928571478463709,-0.0005952381179668009,-8.146350123566197e-18,-6.538610452144855e-19,-1.0609516764302874e-19,0.00029761905898340046,6.816165219820312e-19,9.918999313640677e-20,1.3552527156068805e-20,3.049318610115481e-19,-6.776263578034403e-21,2.3790494034752407e-18,4.758098496757752e-19,-2.846765199047383e-33,0.0035714285913854837,-0.0017857142956927419,-6.495182436010055e-19,-0.0035714285913854837,1.141943680580891e-17,1.3810354183122756e-18,6.816165219820312e-19,0.0017857142956927419,-6.34413150133963e-19,-1.0111132208032988e-33,1.6851887013388314e-34,-4.758098496757752e-19,2.830351183679676e-32,-9.516196993515503e-19,-2.3790494034752407e-18,0.0028571428265422583,-0.0014285714132711291,-1.9837998627281355e-19,1.268826300267926e-18,-0.0019047618843615055,-1.697522733987248e-19,9.918999313640677e-20,-6.34413150133963e-19,0.0009523809421807528,6.018531076210112e-35,9.930576275746685e-35,3.009265538105056e-34,-3.378915807932952e-34,4.966603681355806e-34,9.959784555299734e-34,0.0009920635493472219,1.2180987254200756e-18,-0.0011904762359336019,-1.0787811616230769e-17,-1.3436116994488452e-18,-3.146890767220705e-19,1.3552527156068805e-20,-1.0111132208032988e-33,6.018531076210112e-35,0.00019841270113829523,5.963111948670274e-19,8.131516293641283e-20,3.436404601999724e-18,8.987520014638721e-19,4.4056469836361075e-20,0.0026785715017467737,-9.147955830346444e-19,-0.0008928571478463709,-0.0026785715017467737,-1.5335717625676932e-18,-5.7777898331617076e-34,3.049318610115481e-19,1.6851887013388314e-34,9.930576275746685e-35,5.963111948670274e-19,0.0008928571478463709,3.647875548646802e-19,2.4248003495652424e-18,4.392091238230468e-19,-2.531429839560681e-33,0.002142857061699033,3.2150521040562996e-18,-0.0007142857066355646,3.059649268785656e-18,-0.0014285714132711291,-6.797283788363024e-19,-6.776263578034403e-21,-4.758098496757752e-19,3.009265538105056e-34,8.131516293641283e-20,3.647875548646802e-19,0.0004761904710903764,-1.9032393987031007e-18,8.55179642312182e-20,-9.62735559218191e-19,0.0035714285913854837,-2.979476111402934e-17,-2.5342975973303675e-17,-0.02142857201397419,4.09989489808397e-17,5.664403380997269e-18,2.3790494034752407e-18,2.830351183679676e-32,-3.378915807932952e-34,3.436404601999724e-18,2.4248003495652424e-18,-1.9032393987031007e-18,0.010714286006987095,-4.7580988069504814e-18,-9.119689414454282e-18,0.004285714123398066,-4.758098496757752e-19,-7.387427627980432e-18,-0.004285714123398066,-0.0028571428265422583,-5.3177050176697105e-33,4.758098496757752e-19,-9.516196993515503e-19,4.966603681355806e-34,8.987520014638721e-19,4.392091238230468e-19,8.55179642312182e-20,-4.7580988069504814e-18,0.0028571428265422583,5.545804186317006e-33,0.0023809524718672037,5.400064167775842e-18,9.154256878662566e-19,2.2997477222268738e-17,-0.0071428571827709675,-7.552537427739386e-19,-2.846765199047383e-33,-2.3790494034752407e-18,9.959784555299734e-34,4.4056469836361075e-20,-2.531429839560681e-33,-9.62735559218191e-19,-9.119689414454282e-18,5.545804186317006e-33,0.0023809524718672037,5.0,7.0,3.0,5.0,0.06964852660894394,-0.018299318850040436,-0.014047618955373764,-0.026428570970892906,-0.018299318850040436,0.0013605442363768816,0.0014285714132711291,0.0028571428265422583,0.0019047618843615055,0.0007936508045531809,0.002142857061699033,0.0014285714132711291,0.0028571428265422583,0.0028571428265422583,0.0013605442363768816,-0.018299318850040436,0.017312925308942795,0.0014285714132711291,0.0028571428265422583,0.0019047618843615055,-0.002721088472753763,-0.0007142857066355646,-0.0014285714132711291,-0.0009523809421807528,-0.0,2.0328790734103208e-20,-0.0,-0.0,-0.0,-0.0,-0.014047618955373764,0.0014285714132711291,0.008809523656964302,0.002142857061699033,0.0014285714132711291,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0009523809421807528,-0.0007142857066355646,-0.0004761904710903764,-0.0,-0.0,-0.0,-0.026428570970892906,0.0028571428265422583,0.002142857061699033,0.054999999701976776,0.0028571428265422583,-0.0,2.0328790734103208e-20,-0.0028571428265422583,-0.0,-0.0,-0.002142857061699033,2.0328790734103208e-20,-0.017142856493592262,-0.0028571428265422583,-2.7189135153452095e-18,-0.018299318850040436,0.0019047618843615055,0.0014285714132711291,0.0028571428265422583,0.017312925308942795,-0.0,-0.0,-0.0,-0.0009523809421807528,-3.1275062823196006e-21,2.0328790734103208e-20,-0.0007142857066355646,-5.437827030690419e-18,-0.0014285714132711291,-0.002721088472753763,0.0013605442363768816,-0.002721088472753763,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0004761904710903764,2.0328790734103208e-20,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0028571428265422583,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0009523809421807528,-0.0,-0.0,-0.0009523809421807528,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,-0.0,-0.0009523809421807528,-0.0,-3.1275062823196006e-21,-0.0,-0.0,-0.0,-0.0,0.00015873015217948705,-1.3552527156068805e-20,0.0,0.0,0.0,0.0,0.002142857061699033,2.0328790734103208e-20,-0.0007142857066355646,-0.002142857061699033,2.0328790734103208e-20,-0.0,-6.776263578034403e-21,-0.0,-0.0,-1.3552527156068805e-20,0.0007142857066355646,-6.776263578034403e-21,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0004761904710903764,2.0328790734103208e-20,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0,-6.776263578034403e-21,0.0002380952355451882,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0,-0.0,-0.017142856493592262,-5.437827030690419e-18,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.008571428246796131,-0.0,1.3594567576726047e-18,0.0028571428265422583,-0.0,-0.0,-0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,0.0013605442363768816,-0.0,-0.0,-2.7189135153452095e-18,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,1.3594567576726047e-18,-0.0,0.0006802721181884408,5.0,7.0,3.0,6.0,0.06013794243335724,-0.015476190485060215,-0.011876417323946953,-0.022363945841789246,-0.01343537401407957,0.0011337868636474013,0.0011904762359336019,0.0023809524718672037,0.0013605442363768816,0.0006613756413571537,0.0017857142956927419,0.0010204081190750003,0.0023809524718672037,0.0020408162381500006,0.0008503401186317205,-0.015476190485060215,0.01454081665724516,0.0011904762359336019,0.0023809524718672037,0.0013605442363768816,-0.0022675737272948027,-0.0005952381179668009,-0.0011904762359336019,-0.0006802721181884408,1.98440588561793e-21,2.057614399054749e-21,-3.3881317890172014e-20,-7.315061167137526e-35,4.2710902242504454e-20,9.524063868881795e-21,-0.011876417323946953,0.0011904762359336019,0.007397959008812904,0.0017857142956927419,0.0010204081190750003,-0.0,-0.00039682540227659047,-0.0,-2.710505431213761e-20,-0.0007936508045531809,-0.0005952381179668009,-0.0003401360590942204,-1.5860329011843016e-18,-1.8973538018496328e-19,-7.132558702194548e-20,-0.022363945841789246,0.0023809524718672037,0.0017857142956927419,0.046173468232154846,0.0020408162381500006,-0.0,-3.3344557240291443e-22,-0.0023809524718672037,4.5580175298774965e-20,-0.0,-0.0017857142956927419,4.79961953846319e-20,-0.014285714365541935,-0.0020408162381500006,-1.5209641858638897e-18,-0.01343537401407957,0.0013605442363768816,0.0010204081190750003,0.0020408162381500006,0.010051020421087742,-0.0,-1.6226155437702403e-21,-0.0,-0.0005442177061922848,4.669274614735586e-21,-2.0328790734103208e-19,-0.0004081632650922984,-3.8942769883934986e-18,-0.0008163265301845968,-0.0012755101779475808,0.0011337868636474013,-0.0022675737272948027,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,-0.00039682540227659047,-3.3344557240291443e-22,-1.6226155437702403e-21,-0.0,0.00019841270113829523,-0.0,-3.9688119731842516e-22,-0.0,-0.0,-0.0,3.8154460240013113e-35,1.3337822896116577e-22,4.2070017708663874e-22,0.0023809524718672037,-0.0011904762359336019,-0.0,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0006802721181884408,-2.710505431213761e-20,4.5580175298774965e-20,-0.0005442177061922848,-0.0,-3.9688119731842516e-22,-0.0,0.0002721088530961424,-7.937623946368503e-22,-8.230457192322212e-22,1.3552527156068805e-20,-1.6525108767409334e-35,-1.7244415175651964e-20,-4.314465426841838e-21,0.0006613756413571537,1.98440588561793e-21,-0.0007936508045531809,-0.0,4.669274614735586e-21,-0.0,-0.0,-0.0,-7.937623946368503e-22,0.00013227513409219682,-0.0,6.776263578034403e-21,5.577355648554526e-35,2.6675645792233154e-22,-2.5759666452349635e-21,0.0017857142956927419,2.057614399054749e-21,-0.0005952381179668009,-0.0017857142956927419,-2.0328790734103208e-19,-0.0,-0.0,-0.0,-8.230457192322212e-22,-0.0,0.0005952381179668009,-3.3881317890172014e-21,1.5860329011843016e-18,2.2556651787528763e-19,-1.9290134612485037e-21,0.0010204081190750003,-3.3881317890172014e-20,-0.0003401360590942204,4.79961953846319e-20,-0.0004081632650922984,-0.0,-0.0,-0.0,1.3552527156068805e-20,6.776263578034403e-21,-3.3881317890172014e-21,0.0001360544265480712,1.0866125138094777e-34,-1.5132720007032118e-20,3.566279351097274e-20,0.0023809524718672037,-7.315061167137526e-35,-1.5860329011843016e-18,-0.014285714365541935,-3.8942769883934986e-18,-0.0,3.8154460240013113e-35,-0.0,-1.6525108767409334e-35,5.577355648554526e-35,1.5860329011843016e-18,1.0866125138094777e-34,0.0071428571827709675,6.2592723192585165e-34,7.788554286979727e-19,0.0020408162381500006,4.2710902242504454e-20,-1.8973538018496328e-19,-0.0020408162381500006,-0.0008163265301845968,-0.0,1.3337822896116577e-22,-0.0,-1.7244415175651964e-20,2.6675645792233154e-22,2.2556651787528763e-19,-1.5132720007032118e-20,6.2592723192585165e-34,0.0008163265301845968,-1.2383864737786294e-20,0.0008503401186317205,9.524063868881795e-21,-7.132558702194548e-20,-1.5209641858638897e-18,-0.0012755101779475808,-0.0,4.2070017708663874e-22,-0.0,-4.314465426841838e-21,-2.5759666452349635e-21,-1.9290134612485037e-21,3.566279351097274e-20,7.788554286979727e-19,-1.2383864737786294e-20,0.00025510202976875007,5.0,7.0,3.0,7.0,0.05293569713830948,-0.013411078602075577,-0.010289115831255913,-0.019387755542993546,-0.010289115831255913,0.0009718172950670123,0.0010204081190750003,0.0020408162381500006,0.0010204081190750003,0.0005668934318237007,0.0015306122368201613,0.0007653061184100807,0.0020408162381500006,0.0015306122368201613,0.0005668934318237007,-0.013411078602075577,0.012536442838609219,0.0010204081190750003,0.0020408162381500006,0.0010204081190750003,-0.0019436345901340246,-0.0005102040595375001,-0.0010204081190750003,-0.0005102040595375001,1.2598228528905926e-18,1.2924845963651317e-18,1.95720859097397e-18,-1.0936690891600513e-17,1.611718099974992e-18,1.593770762224429e-18,-0.010289115831255913,0.0010204081190750003,0.0063775512389838696,0.0015306122368201613,0.0007653061184100807,2.622047977278259e-18,-0.0003401360590942204,1.859080154906804e-18,1.043544591017298e-18,-0.0006802721181884408,-0.0005102040595375001,-0.00025510202976875007,-2.5730083678678998e-18,4.2012834183813297e-19,1.6096521129975642e-18,-0.019387755542993546,0.0020408162381500006,0.0015306122368201613,0.03979591652750969,0.0015306122368201613,-3.572262193371505e-18,-1.5951329218981506e-18,-0.0020408162381500006,2.2538043325673617e-18,1.8973538018496328e-19,-0.0015306122368201613,7.236091212601099e-19,-0.01224489789456129,-0.0015306122368201613,4.6391283145791234e-18,-0.010289115831255913,0.0010204081190750003,0.0007653061184100807,0.0015306122368201613,0.0063775512389838696,2.622047977278259e-18,8.203335216350434e-19,5.002823913487051e-18,-0.0003401360590942204,1.858552000085689e-18,8.131516293641283e-19,-0.00025510202976875007,1.2178466834874307e-17,-0.0005102040595375001,-0.0006802721181884408,0.0009718172950670123,-0.0019436345901340246,2.622047977278259e-18,-3.572262193371505e-18,2.622047977278259e-18,0.00048590864753350616,-1.8488670592811885e-19,-3.4569923131902535e-20,-1.8488670592811885e-19,-1.7982231847715708e-19,-1.21380069495725e-19,-2.4276013899145e-19,2.2657612283218157e-18,-1.21380069495725e-19,-1.7982231847715708e-19,0.0010204081190750003,-0.0005102040595375001,-0.0003401360590942204,-1.5951329218981506e-18,8.203335216350434e-19,-1.8488670592811885e-19,0.0001700680295471102,-5.1557627974327495e-20,-9.062135195559213e-20,-8.131516293641283e-20,-0.0,-9.147955830346444e-20,8.49660486470075e-19,-3.5760458277571448e-22,-4.6604644949770426e-20,0.0020408162381500006,-0.0010204081190750003,1.859080154906804e-18,-0.0020408162381500006,5.002823913487051e-18,-3.4569923131902535e-20,-5.1557627974327495e-20,0.0010204081190750003,-4.248302432350375e-19,-9.440671784674232e-20,-2.5489813560126485e-19,-2.5489813560126485e-19,6.10368366820239e-20,-4.429794647538518e-19,-4.342709072648935e-19,0.0010204081190750003,-0.0005102040595375001,1.043544591017298e-18,2.2538043325673617e-18,-0.0003401360590942204,-1.8488670592811885e-19,-9.062135195559213e-20,-4.248302432350375e-19,0.0001700680295471102,-4.6414500037634066e-20,-1.2737803366552944e-19,-1.239550698179055e-19,-1.699320947090756e-19,-1.7073780739979345e-19,-7.915293866459336e-20,0.0005668934318237007,1.2598228528905926e-18,-0.0006802721181884408,1.8973538018496328e-19,1.858552000085689e-18,-1.7982231847715708e-19,-8.131516293641283e-20,-9.440671784674232e-20,-4.6414500037634066e-20,0.00011337868636474013,-4.0657581468206416e-20,-1.4230153513872246e-19,-3.7762688431166636e-20,-4.319823440792036e-20,-2.166027105438714e-19,0.0015306122368201613,1.2924845963651317e-18,-0.0005102040595375001,-0.0015306122368201613,8.131516293641283e-19,-1.21380069495725e-19,-0.0,-2.5489813560126485e-19,-1.2737803366552944e-19,-4.0657581468206416e-20,0.0005102040595375001,-1.0164395367051604e-20,1.1002636418370231e-18,2.3453534968269028e-20,-7.066297657719929e-20,0.0007653061184100807,1.95720859097397e-18,-0.00025510202976875007,7.236091212601099e-19,-0.00025510202976875007,-2.4276013899145e-19,-9.147955830346444e-20,-2.5489813560126485e-19,-1.239550698179055e-19,-1.4230153513872246e-19,-1.0164395367051604e-20,8.50340147735551e-05,-6.98149604840373e-34,-6.110655249802563e-20,-4.898478607655787e-20,0.0020408162381500006,-1.0936690891600513e-17,-2.5730083678678998e-18,-0.01224489789456129,1.2178466834874307e-17,2.2657612283218157e-18,8.49660486470075e-19,6.10368366820239e-20,-1.699320947090756e-19,-3.7762688431166636e-20,1.1002636418370231e-18,-6.98149604840373e-34,0.006122448947280645,-1.5293888136075891e-18,-1.5482702450648777e-18,0.0015306122368201613,1.611718099974992e-18,4.2012834183813297e-19,-0.0015306122368201613,-0.0005102040595375001,-1.21380069495725e-19,-3.5760458277571448e-22,-4.429794647538518e-19,-1.7073780739979345e-19,-4.319823440792036e-20,2.3453534968269028e-20,-6.110655249802563e-20,-1.5293888136075891e-18,0.0005102040595375001,-1.2255016817096955e-19,0.0005668934318237007,1.593770762224429e-18,1.6096521129975642e-18,4.6391283145791234e-18,-0.0006802721181884408,-1.7982231847715708e-19,-4.6604644949770426e-20,-4.342709072648935e-19,-7.915293866459336e-20,-2.166027105438714e-19,-7.066297657719929e-20,-4.898478607655787e-20,-1.5482702450648777e-18,-1.2255016817096955e-19,0.00011337868636474013,5.0,7.0,3.0,8.0,0.04728599637746811,-0.011833900585770607,-0.00907738134264946,-0.01711309514939785,-0.008134921081364155,0.0008503401186317205,0.0008928571478463709,0.0017857142956927419,0.0007936508045531809,0.0004960317746736109,0.0013392857508733869,0.0005952381179668009,0.0017857142956927419,0.0011904762359336019,0.00039682540227659047,-0.011833900585770607,0.01101899053901434,0.0008928571478463709,0.0017857142956927419,0.0007936508045531809,-0.001700680237263441,-0.00044642857392318547,-0.0008928571478463709,-0.00039682540227659047,5.862712384833768e-19,-4.488938578323942e-19,7.770643758766422e-19,-1.489738055701467e-17,-4.257893333058986e-19,4.871246464797349e-19,-0.00907738134264946,0.0008928571478463709,0.0056051588617265224,0.0013392857508733869,0.0005952381179668009,1.8998229359781035e-18,-0.00029761905898340046,-2.851082966859558e-19,-1.3552527156068805e-20,-0.0005952381179668009,-0.00044642857392318547,-0.00019841270113829523,-1.5222356658629602e-17,-2.55465136891897e-18,-3.416275316889611e-19,-0.01711309514939785,0.0017857142956927419,0.0013392857508733869,0.0349702388048172,0.0011904762359336019,-7.234251976509088e-18,-4.232817197693076e-18,-0.0017857142956927419,3.1552561481530303e-19,-5.692061405548898e-18,-0.0013392857508733869,-1.2148267091095455e-18,-0.010714286006987095,-0.0011904762359336019,2.4125382241647563e-18,-0.008134921081364155,0.0007936508045531809,0.0005952381179668009,0.0011904762359336019,0.004308389965444803,1.1687594698328189e-18,-4.1237659967335127e-19,2.8699643466180584e-18,-0.00022675737272948027,-8.040785437189756e-19,-7.589415207398531e-19,-0.0001700680295471102,7.864079702616151e-18,-0.0003401360590942204,-0.00039682540227659047,0.0008503401186317205,-0.001700680237263441,1.8998229359781035e-18,-7.234251976509088e-18,1.1687594698328189e-18,0.00042517005931586027,-5.304758382151437e-20,6.905177091561378e-19,-4.0417207952077335e-20,-1.5734453836103525e-19,-3.851859888774472e-34,-1.6184009696919903e-19,2.8322016904986345e-18,5.394669683561683e-20,-6.293781405194439e-20,0.0008928571478463709,-0.00044642857392318547,-0.00029761905898340046,-4.232817197693076e-18,-4.1237659967335127e-19,-5.304758382151437e-20,0.00014880952949170023,3.408082609910156e-19,3.0260350914592474e-20,1.3552527156068805e-20,1.4907779871675686e-19,1.1858461261560205e-20,1.1895247017376204e-18,1.5047534621105934e-19,2.1898797308187327e-20,0.0017857142956927419,-0.0008928571478463709,-2.851082966859558e-19,-0.0017857142956927419,2.8699643466180584e-18,6.905177091561378e-19,3.408082609910156e-19,0.0008928571478463709,-1.5105075372466654e-19,-7.824090399073146e-34,-1.5648180798146291e-34,-1.1328805883115137e-19,1.2562588942474406e-32,-2.2657611766230274e-19,-2.64338825480515e-19,0.0007936508045531809,-0.00039682540227659047,-1.3552527156068805e-20,3.1552561481530303e-19,-0.00022675737272948027,-4.0417207952077335e-20,3.0260350914592474e-20,-1.5105075372466654e-19,0.00011337868636474013,6.998061578168966e-22,4.744193832998805e-22,-1.485466615217926e-20,4.81482486096809e-35,-4.242104086908354e-21,-1.0494569678430974e-20,0.0004960317746736109,5.862712384833768e-19,-0.0005952381179668009,-5.692061405548898e-18,-8.040785437189756e-19,-1.5734453836103525e-19,1.3552527156068805e-20,-7.824090399073146e-34,6.998061578168966e-22,9.920635056914762e-05,2.981555974335137e-19,4.743384504624082e-20,1.718202300999862e-18,2.7577555387664386e-19,4.355220954895624e-20,0.0013392857508733869,-4.488938578323942e-19,-0.00044642857392318547,-0.0013392857508733869,-7.589415207398531e-19,-3.851859888774472e-34,1.4907779871675686e-19,-1.5648180798146291e-34,4.744193832998805e-22,2.981555974335137e-19,0.00044642857392318547,1.1689054672109345e-19,1.2124001747826212e-18,1.5085718053663206e-19,3.387258725730046e-20,0.0005952381179668009,7.770643758766422e-19,-0.00019841270113829523,-1.2148267091095455e-18,-0.0001700680295471102,-1.6184009696919903e-19,1.1858461261560205e-20,-1.1328805883115137e-19,-1.485466615217926e-20,4.743384504624082e-20,1.1689054672109345e-19,5.668934318237007e-05,3.2098283550904506e-19,9.04560386177037e-20,-1.1760073620693277e-20,0.0017857142956927419,-1.489738055701467e-17,-1.5222356658629602e-17,-0.010714286006987095,7.864079702616151e-18,2.8322016904986345e-18,1.1895247017376204e-18,1.2562588942474406e-32,4.81482486096809e-35,1.718202300999862e-18,1.2124001747826212e-18,3.2098283550904506e-19,0.0053571430034935474,-1.1328806141609079e-18,-9.912706020142797e-19,0.0011904762359336019,-4.257893333058986e-19,-2.55465136891897e-18,-0.0011904762359336019,-0.0003401360590942204,5.394669683561683e-20,1.5047534621105934e-19,-2.2657611766230274e-19,-4.242104086908354e-21,2.7577555387664386e-19,1.5085718053663206e-19,9.04560386177037e-20,-1.1328806141609079e-18,0.0003401360590942204,-8.391993186517405e-22,0.00039682540227659047,4.871246464797349e-19,-3.416275316889611e-19,2.4125382241647563e-18,-0.00039682540227659047,-6.293781405194439e-20,2.1898797308187327e-20,-2.64338825480515e-19,-1.0494569678430974e-20,4.355220954895624e-20,3.387258725730046e-20,-1.1760073620693277e-20,-9.912706020142797e-19,-8.391993186517405e-22,5.668934318237007e-05,5.0,7.0,4.0,3.0,0.08282596617937088,-0.022397959604859352,-0.017202381044626236,-0.026428570970892906,-0.03232142701745033,0.001700680237263441,0.0017857142956927419,0.0028571428265422583,0.0035714285913854837,0.0009920635493472219,0.002142857061699033,0.0026785715017467737,0.0023809524718672037,0.004285714123398066,0.0035714285913854837,-0.022397959604859352,0.021403061226010323,0.0017857142956927419,0.0028571428265422583,0.0035714285913854837,-0.003401360474526882,-0.0008928571478463709,-0.0014285714132711291,-0.0017857142956927419,1.2180987254200756e-18,2.7189135153452095e-18,-1.6285103833977013e-18,3.0210149710957543e-18,-2.5693733226660355e-18,-3.550447786257257e-17,-0.017202381044626236,0.0017857142956927419,0.010892856866121292,0.002142857061699033,0.0026785715017467737,3.686357696802782e-18,-0.0005952381179668009,-6.741898359485887e-19,-1.3632330439640624e-18,-0.0011904762359336019,-0.0007142857066355646,-0.0008928571478463709,-8.688613130413856e-19,-9.351842616450964e-18,-2.962526518907232e-17,-0.026428570970892906,0.0028571428265422583,0.002142857061699033,0.034285712987184525,0.004285714123398066,5.5507553822773834e-18,-6.741898359485887e-19,-0.0019047618843615055,-2.1811729117015305e-18,-1.5178830414797062e-18,-0.0014285714132711291,-9.156725599200731e-18,-0.0071428571827709675,-0.0028571428265422583,-4.964283087206368e-17,-0.03232142701745033,0.0035714285913854837,0.0026785715017467737,0.004285714123398066,0.06803571432828903,-1.4090877805414242e-17,-8.146350123566197e-18,-1.2997917444603026e-17,-0.0035714285913854837,-1.0838002454258649e-17,-4.668862562468261e-18,-0.0026785715017467737,-3.385160556256911e-17,-0.004285714123398066,-0.02142857201397419,0.001700680237263441,-0.003401360474526882,3.686357696802782e-18,5.5507553822773834e-18,-1.4090877805414242e-17,0.0008503401186317205,-1.0609516764302874e-19,-1.697522733987248e-19,1.3810354183122756e-18,-3.146890767220705e-19,-6.797283788363024e-19,-1.3000027124613842e-33,-7.552537427739386e-19,-5.177470837504016e-34,5.664403380997269e-18,0.0017857142956927419,-0.0008928571478463709,-0.0005952381179668009,-6.741898359485887e-19,-8.146350123566197e-18,-1.0609516764302874e-19,0.00029761905898340046,9.918999313640677e-20,6.816165219820312e-19,1.3552527156068805e-20,-0.0,3.049318610115481e-19,3.875934013079312e-33,4.758098496757752e-19,2.3790494034752407e-18,0.0028571428265422583,-0.0014285714132711291,-6.741898359485887e-19,-0.0019047618843615055,-1.2997917444603026e-17,-1.697522733987248e-19,9.918999313640677e-20,0.0009523809421807528,1.0905864558507653e-18,1.9981523173017572e-33,9.599557066555129e-34,4.758098496757752e-19,6.164023481379325e-33,7.612957801607556e-19,3.806478797406201e-18,0.0035714285913854837,-0.0017857142956927419,-1.3632330439640624e-18,-2.1811729117015305e-18,-0.0035714285913854837,1.3810354183122756e-18,6.816165219820312e-19,1.0905864558507653e-18,0.0017857142956927419,-5.296307347064899e-34,-1.1074097180226606e-33,1.2277803395468629e-33,-1.2266058553864983e-33,1.9614866281186946e-33,1.9006976642732477e-32,0.0009920635493472219,1.2180987254200756e-18,-0.0011904762359336019,-1.5178830414797062e-18,-1.0838002454258649e-17,-3.146890767220705e-19,1.3552527156068805e-20,1.9981523173017572e-33,-5.296307347064899e-34,0.00019841270113829523,9.486769009248164e-20,5.963111948670274e-19,4.4056469836361075e-20,8.987520014638721e-19,3.436404601999724e-18,0.002142857061699033,2.7189135153452095e-18,-0.0007142857066355646,-0.0014285714132711291,-4.668862562468261e-18,-6.797283788363024e-19,-0.0,9.599557066555129e-34,-1.1074097180226606e-33,9.486769009248164e-20,0.0004761904710903764,2.764228744047549e-19,-9.62735559218191e-19,6.56489825201179e-19,9.516196993515503e-19,0.0026785715017467737,-1.6285103833977013e-18,-0.0008928571478463709,-9.156725599200731e-18,-0.0026785715017467737,-1.3000027124613842e-33,3.049318610115481e-19,4.758098496757752e-19,1.2277803395468629e-33,5.963111948670274e-19,2.764228744047549e-19,0.0008928571478463709,1.784287104305219e-18,1.5471663725374256e-18,2.4248003495652424e-18,0.0023809524718672037,3.0210149710957543e-18,-8.688613130413856e-19,-0.0071428571827709675,-3.385160556256911e-17,-7.552537427739386e-19,3.875934013079312e-33,6.164023481379325e-33,-1.2266058553864983e-33,4.4056469836361075e-20,-9.62735559218191e-19,1.784287104305219e-18,0.0023809524718672037,3.667512454497293e-18,1.0309214012794325e-17,0.004285714123398066,-2.5693733226660355e-18,-9.351842616450964e-18,-0.0028571428265422583,-0.004285714123398066,-5.177470837504016e-34,4.758098496757752e-19,7.612957801607556e-19,1.9614866281186946e-33,8.987520014638721e-19,6.56489825201179e-19,1.5471663725374256e-18,3.667512454497293e-18,0.0028571428265422583,7.612957594812403e-18,0.0035714285913854837,-3.550447786257257e-17,-2.962526518907232e-17,-4.964283087206368e-17,-0.02142857201397419,5.664403380997269e-18,2.3790494034752407e-18,3.806478797406201e-18,1.9006976642732477e-32,3.436404601999724e-18,9.516196993515503e-19,2.4248003495652424e-18,1.0309214012794325e-17,7.612957594812403e-18,0.010714286006987095,5.0,7.0,4.0,4.0,0.06678911298513412,-0.017334183678030968,-0.013303571380674839,-0.02046428620815277,-0.02046428620815277,0.0012755101779475808,0.0013392857508733869,0.002142857061699033,0.002142857061699033,0.0007440476329065859,0.0016071428544819355,0.0016071428544819355,0.0017857142956927419,0.0025714286603033543,0.0017857142956927419,-0.017334183678030968,0.016320152208209038,0.0013392857508733869,0.002142857061699033,0.002142857061699033,-0.0025510203558951616,-0.0006696428754366934,-0.0010714285308495164,-0.0010714285308495164,4.0657581468206416e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.013303571380674839,0.0013392857508733869,0.008303571492433548,0.0016071428544819355,0.0016071428544819355,-0.0,-0.00044642857392318547,-0.0,-0.0,-0.0008928571478463709,-0.0005357142654247582,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.02046428620815277,0.002142857061699033,0.0016071428544819355,0.02614285796880722,0.0025714286603033543,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0010714285308495164,3.5345876707614095e-20,-0.0053571430034935474,-0.001714285695925355,-0.0,-0.02046428620815277,0.002142857061699033,0.0016071428544819355,0.0025714286603033543,0.02614285796880722,-0.0,-0.0,-0.0,-0.0014285714132711291,-8.156740778680176e-21,3.5345876707614095e-20,-0.0010714285308495164,-0.0,-0.001714285695925355,-0.0053571430034935474,0.0012755101779475808,-0.0025510203558951616,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0013392857508733869,-0.0006696428754366934,-0.00044642857392318547,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0010714285308495164,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0010714285308495164,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,4.0657581468206416e-20,-0.0008928571478463709,-0.0,-8.156740778680176e-21,-0.0,-1.3552527156068805e-20,-0.0,-0.0,0.00014880952949170023,-0.0,0.0,0.0,0.0,-0.0,0.0016071428544819355,-0.0,-0.0005357142654247582,-0.0010714285308495164,3.5345876707614095e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-1.1781958364008987e-20,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0,-0.0005357142654247582,3.5345876707614095e-20,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,0.0,-1.1781958364008987e-20,0.0003571428533177823,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,0.0025714286603033543,-0.0,-0.0,-0.001714285695925355,-0.001714285695925355,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0053571430034935474,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,5.0,7.0,4.0,5.0,0.056057821959257126,-0.01415306143462658,-0.010857142508029938,-0.01671428605914116,-0.01415306143462658,0.0010204081190750003,0.0010714285308495164,0.001714285695925355,0.0014285714132711291,0.0005952381179668009,0.0012857143301516771,0.0010714285308495164,0.0014285714132711291,0.001714285695925355,0.0010204081190750003,-0.01415306143462658,0.013198979198932648,0.0010714285308495164,0.001714285695925355,0.0014285714132711291,-0.0020408162381500006,-0.0005357142654247582,-0.0008571428479626775,-0.0007142857066355646,2.0328790734103208e-20,3.049318610115481e-20,-0.0,5.057814122168072e-35,1.1441204037289814e-35,-0.0,-0.010857142508029938,0.0010714285308495164,0.00671428581699729,0.0012857143301516771,0.0010714285308495164,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0007142857066355646,-0.00042857142398133874,-0.0003571428533177823,-7.137148003630569e-19,-1.903239450401889e-19,-0.0,-0.01671428605914116,0.001714285695925355,0.0012857143301516771,0.021142857149243355,0.001714285695925355,-0.0,3.049318610115481e-20,-0.0011428571306169033,-0.0,-0.0,-0.0008571428479626775,3.987739990096546e-21,-0.004285714123398066,-0.0011428571306169033,-0.0,-0.01415306143462658,0.0014285714132711291,0.0010714285308495164,0.001714285695925355,0.013198979198932648,-0.0,5.720602018644907e-36,-0.0,-0.0007142857066355646,1.5895608329591888e-20,-1.8633621070464732e-19,-0.0005357142654247582,-9.516196993515503e-19,-0.0008571428479626775,-0.0020408162381500006,0.0010204081190750003,-0.0020408162381500006,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0010714285308495164,-0.0005357142654247582,-0.0003571428533177823,3.049318610115481e-20,5.720602018644907e-36,-0.0,0.00017857142665889114,-0.0,-0.0,-6.776263578034403e-21,-1.0164395367051604e-20,-0.0,-1.6859381363846657e-35,-3.8137347986740736e-36,-0.0,0.001714285695925355,-0.0008571428479626775,-0.0,-0.0011428571306169033,-0.0,-0.0,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0007142857066355646,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,2.0328790734103208e-20,-0.0007142857066355646,-0.0,1.5895608329591888e-20,-0.0,-6.776263578034403e-21,-0.0,-0.0,0.0001190476177725941,-1.3552527156068805e-20,0.0,-1.6525265174738728e-35,-1.4437681661921073e-36,-0.0,0.0012857143301516771,3.049318610115481e-20,-0.00042857142398133874,-0.0008571428479626775,-1.8633621070464732e-19,-0.0,-1.0164395367051604e-20,-0.0,-0.0,-1.3552527156068805e-20,0.0002857142826542258,-1.32924662970745e-21,4.758098496757752e-19,1.268826300267926e-19,-0.0,0.0010714285308495164,-0.0,-0.0003571428533177823,3.987739990096546e-21,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,0.0,-1.32924662970745e-21,0.00017857142665889114,-2.2136402869287378e-36,-5.9030408548264025e-37,-0.0,0.0014285714132711291,5.057814122168072e-35,-7.137148003630569e-19,-0.004285714123398066,-9.516196993515503e-19,-0.0,-1.6859381363846657e-35,-0.0,-0.0,-1.6525265174738728e-35,4.758098496757752e-19,-2.2136402869287378e-36,0.0014285714132711291,6.34413150133963e-19,-0.0,0.001714285695925355,1.1441204037289814e-35,-1.903239450401889e-19,-0.0011428571306169033,-0.0008571428479626775,-0.0,-3.8137347986740736e-36,-0.0,-0.0,-1.4437681661921073e-36,1.268826300267926e-19,-5.9030408548264025e-37,6.34413150133963e-19,0.0005714285653084517,-0.0,0.0010204081190750003,-0.0,-0.0,-0.0,-0.0020408162381500006,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,5.0,7.0,4.0,6.0,0.04833900183439255,-0.011964285746216774,-0.009175170212984085,-0.01413265336304903,-0.010382653214037418,0.0008503401186317205,0.0008928571478463709,0.0014285714132711291,0.0010204081190750003,0.0004960317746736109,0.0010714285308495164,0.0007653061184100807,0.0011904762359336019,0.0012244897661730647,0.0006377550889737904,-0.011964285746216774,0.011084184050559998,0.0008928571478463709,0.0014285714132711291,0.0010204081190750003,-0.001700680237263441,-0.00044642857392318547,-0.0007142857066355646,-0.0005102040595375001,6.145602984448075e-19,1.3502101191951807e-18,1.2445349008093875e-18,1.5105074855478771e-18,2.0445601044304884e-18,1.7589733096095648e-18,-0.009175170212984085,0.0008928571478463709,0.005637755151838064,0.0010714285308495164,0.0007653061184100807,2.571459265375741e-18,-0.00029761905898340046,-3.121715654524624e-20,-2.710505431213761e-20,-0.0005952381179668009,-0.0003571428533177823,-0.00025510202976875007,5.710008639901885e-19,-3.4558944247975454e-19,9.468901908017018e-19,-0.01413265336304903,0.0014285714132711291,0.0010714285308495164,0.01775510236620903,0.0012244897661730647,3.940626399656682e-18,-4.101112040071614e-20,-0.0009523809421807528,-6.578211336229919e-20,-3.2526065174565133e-19,-0.0007142857066355646,7.413957145531992e-20,-0.0035714285913854837,-0.0008163265301845968,1.3981296226585667e-18,-0.010382653214037418,0.0010204081190750003,0.0007653061184100807,0.0012244897661730647,0.007660714443773031,3.8771299478855806e-18,3.0290053807166517e-19,5.081239187991006e-19,-0.0004081632650922984,2.1008266616057529e-19,1.328147661294743e-18,-0.0003061224415432662,1.275753110717445e-18,-0.0004897959297522902,-0.0009566326625645161,0.0008503401186317205,-0.001700680237263441,2.571459265375741e-18,3.940626399656682e-18,3.8771299478855806e-18,0.00042517005931586027,-5.304758382151437e-20,-8.48761366993624e-20,-7.27509743137392e-20,-1.5734453836103525e-19,-3.398641894181512e-19,-2.9131215128010353e-19,-3.776268713869693e-19,-4.660994730674386e-19,-3.540252113123293e-19,0.0008928571478463709,-0.00044642857392318547,-0.00029761905898340046,-4.101112040071614e-20,3.0290053807166517e-19,-5.304758382151437e-20,0.00014880952949170023,4.9594996568203386e-20,3.007899802763876e-20,6.776263578034403e-21,3.3881317890172014e-21,-6.776263578034403e-21,1.0532429383367696e-34,-2.733730788733175e-20,-5.560020503071619e-20,0.0014285714132711291,-0.0007142857066355646,-3.121715654524624e-20,-0.0009523809421807528,5.081239187991006e-19,-8.48761366993624e-20,4.9594996568203386e-20,0.0004761904710903764,4.988990584362415e-20,6.018531076210112e-35,1.8506983059346095e-34,-2.718913592893392e-20,1.8869478425668321e-34,-4.350261748629427e-20,-8.49660473545378e-20,0.0010204081190750003,-0.0005102040595375001,-2.710505431213761e-20,-6.578211336229919e-20,-0.0004081632650922984,-7.27509743137392e-20,3.007899802763876e-20,4.988990584362415e-20,0.0002040816325461492,-2.2043860473042763e-21,-3.671048914552763e-22,-7.269510407947493e-21,8.57640678359941e-35,-1.3158552500978449e-20,-1.94490906150016e-20,0.0004960317746736109,6.145602984448075e-19,-0.0005952381179668009,-3.2526065174565133e-19,2.1008266616057529e-19,-1.5734453836103525e-19,6.776263578034403e-21,6.018531076210112e-35,-2.2043860473042763e-21,9.920635056914762e-05,4.743384504624082e-20,1.3552527156068805e-20,2.2028234918180537e-20,2.085076270325691e-20,-7.041510027442042e-20,0.0010714285308495164,1.3502101191951807e-18,-0.0003571428533177823,-0.0007142857066355646,1.328147661294743e-18,-3.398641894181512e-19,3.3881317890172014e-21,1.8506983059346095e-34,-3.671048914552763e-22,4.743384504624082e-20,0.0002380952355451882,-8.809142651444724e-20,-4.813677796090955e-19,-7.01006682440737e-20,-2.1327551870154462e-19,0.0007653061184100807,1.2445349008093875e-18,-0.00025510202976875007,7.413957145531992e-20,-0.0003061224415432662,-2.9131215128010353e-19,-6.776263578034403e-21,-2.718913592893392e-20,-7.269510407947493e-21,1.3552527156068805e-20,-8.809142651444724e-20,0.0001020408162730746,-4.531522547116511e-20,9.780518939341644e-20,-6.335417670574267e-20,0.0011904762359336019,1.5105074855478771e-18,5.710008639901885e-19,-0.0035714285913854837,1.275753110717445e-18,-3.776268713869693e-19,1.0532429383367696e-34,1.8869478425668321e-34,8.57640678359941e-35,2.2028234918180537e-20,-4.813677796090955e-19,-4.531522547116511e-20,0.0011904762359336019,1.539854483663369e-19,-2.8322015354022696e-19,0.0012244897661730647,2.0445601044304884e-18,-3.4558944247975454e-19,-0.0008163265301845968,-0.0004897959297522902,-4.660994730674386e-19,-2.733730788733175e-20,-4.350261748629427e-20,-1.3158552500978449e-20,2.085076270325691e-20,-7.01006682440737e-20,9.780518939341644e-20,1.539854483663369e-19,0.00032653060043230653,5.920059911973274e-20,0.0006377550889737904,1.7589733096095648e-18,9.468901908017018e-19,1.3981296226585667e-18,-0.0009566326625645161,-3.540252113123293e-19,-5.560020503071619e-20,-8.49660473545378e-20,-1.94490906150016e-20,-7.041510027442042e-20,-2.1327551870154462e-19,-6.335417670574267e-20,-2.8322015354022696e-19,5.920059911973274e-20,0.00019132652960252017,5.0,7.0,4.0,7.0,0.04250789433717728,-0.010364431887865067,-0.007946428842842579,-0.01224489789456129,-0.007946428842842579,0.0007288630004040897,0.0007653061184100807,0.0012244897661730647,0.0007653061184100807,0.00042517005931586027,0.000918367353733629,0.0005739795742556453,0.0010204081190750003,0.000918367353733629,0.00042517005931586027,-0.010364431887865067,0.00955539382994175,0.0007653061184100807,0.0012244897661730647,0.0007653061184100807,-0.0014577260008081794,-0.00038265305920504034,-0.0006122448830865324,-0.00038265305920504034,5.589472915016423e-19,1.1754690419739662e-18,7.603938947991314e-19,1.2947207757535922e-18,1.186843809372336e-18,5.426255187511108e-19,-0.007946428842842579,0.0007653061184100807,0.004859693814069033,0.000918367353733629,0.0005739795742556453,2.182446563049709e-18,-0.00025510202976875007,-5.345347100833648e-20,-1.3552527156068805e-20,-0.0005102040595375001,-0.0003061224415432662,-0.00019132652960252017,1.799790743731147e-18,-1.6940658945086007e-19,3.7637870754141505e-19,-0.01224489789456129,0.0012244897661730647,0.000918367353733629,0.015306122601032257,0.000918367353733629,3.343021701106775e-18,-4.3392127482207353e-20,-0.0008163265301845968,-3.16993382188793e-20,-3.2526065174565133e-19,-0.0006122448830865324,5.386035598177249e-19,-0.0030612244736403227,-0.0006122448830865324,5.889400850309908e-19,-0.007946428842842579,0.0007653061184100807,0.0005739795742556453,0.000918367353733629,0.004859693814069033,2.182446563049709e-18,-2.798237305580386e-20,-5.345347100833648e-20,-0.00025510202976875007,-2.1213439719713357e-19,4.607859233063394e-19,-0.00019132652960252017,1.2272218037934995e-18,-0.0003061224415432662,-0.0005102040595375001,0.0007288630004040897,-0.0014577260008081794,2.182446563049709e-18,3.343021701106775e-18,2.182446563049709e-18,0.00036443150020204484,-7.365375794180987e-20,-1.1784600495207755e-19,-7.365375794180987e-20,-1.3486674532021635e-19,-2.9131215128010353e-19,-1.820701042435875e-19,-3.2368019393839806e-19,-2.9131215128010353e-19,-1.3486674532021635e-19,0.0007653061184100807,-0.00038265305920504034,-0.00025510202976875007,-4.3392127482207353e-20,-2.798237305580386e-20,-7.365375794180987e-20,0.00012755101488437504,2.672673550416824e-20,1.684562041634764e-20,-6.776263578034403e-21,-3.3881317890172014e-21,-3.3881317890172014e-21,9.328723168125674e-35,3.43508786980893e-23,6.775386213246503e-22,0.0012244897661730647,-0.0006122448830865324,-5.345347100833648e-20,-0.0008163265301845968,-5.345347100833648e-20,-1.1784600495207755e-19,2.672673550416824e-20,0.0004081632650922984,2.672673550416824e-20,3.912045199536573e-35,9.479186445030926e-35,5.679988703173293e-35,1.0466827844630937e-34,9.151525430345128e-35,4.02399037346576e-35,0.0007653061184100807,-0.00038265305920504034,-1.3552527156068805e-20,-3.16993382188793e-20,-0.00025510202976875007,-7.365375794180987e-20,1.684562041634764e-20,2.672673550416824e-20,0.00012755101488437504,2.8282233600919025e-22,-1.864956636769124e-23,-7.316361627036812e-21,8.425943506694157e-35,-7.232727527876592e-21,-1.730390351730259e-21,0.00042517005931586027,5.589472915016423e-19,-0.0005102040595375001,-3.2526065174565133e-19,-2.1213439719713357e-19,-1.3486674532021635e-19,-6.776263578034403e-21,3.912045199536573e-35,2.8282233600919025e-22,8.50340147735551e-05,2.0328790734103208e-20,1.0164395367051604e-20,1.8881344215583318e-20,4.538392669844676e-20,1.459340470999608e-20,0.000918367353733629,1.1754690419739662e-18,-0.0003061224415432662,-0.0006122448830865324,4.607859233063394e-19,-2.9131215128010353e-19,-3.3881317890172014e-21,9.479186445030926e-35,-1.864956636769124e-23,2.0328790734103208e-20,0.0002040816325461492,3.049318610115481e-20,-9.260810149268585e-19,-7.34415279535532e-20,-9.066775161807753e-20,0.0005739795742556453,7.603938947991314e-19,-0.00019132652960252017,5.386035598177249e-19,-0.00019132652960252017,-1.820701042435875e-19,-3.3881317890172014e-21,5.679988703173293e-35,-7.316361627036812e-21,1.0164395367051604e-20,3.049318610115481e-20,6.377550744218752e-05,-2.1241512161751876e-19,-3.15989973331675e-20,-1.2583296367885695e-19,0.0010204081190750003,1.2947207757535922e-18,1.799790743731147e-18,-0.0030612244736403227,1.2272218037934995e-18,-3.2368019393839806e-19,9.328723168125674e-35,1.0466827844630937e-34,8.425943506694157e-35,1.8881344215583318e-20,-9.260810149268585e-19,-2.1241512161751876e-19,0.0010204081190750003,-3.9331766042648767e-19,-1.8881344215583318e-20,0.000918367353733629,1.186843809372336e-18,-1.6940658945086007e-19,-0.0006122448830865324,-0.0003061224415432662,-2.9131215128010353e-19,3.43508786980893e-23,9.151525430345128e-35,-7.232727527876592e-21,4.538392669844676e-20,-7.34415279535532e-20,-3.15989973331675e-20,-3.9331766042648767e-19,0.0002040816325461492,-1.1193940546586902e-19,0.00042517005931586027,5.426255187511108e-19,3.7637870754141505e-19,5.889400850309908e-19,-0.0005102040595375001,-1.3486674532021635e-19,6.775386213246503e-22,4.02399037346576e-35,-1.730390351730259e-21,1.459340470999608e-20,-9.066775161807753e-20,-1.2583296367885695e-19,-1.8881344215583318e-20,-1.1193940546586902e-19,8.50340147735551e-05,5.0,7.0,4.0,8.0,0.037942178547382355,-0.009143282659351826,-0.007008928339928389,-0.010803570970892906,-0.006279761902987957,0.0006377550889737904,0.0006696428754366934,0.0010714285308495164,0.0005952381179668009,0.00037202381645329297,0.0008035714272409678,0.00044642857392318547,0.0008928571478463709,0.0007142857066355646,0.00029761905898340046,-0.009143282659351826,0.00839817151427269,0.0006696428754366934,0.0010714285308495164,0.0005952381179668009,-0.0012755101779475808,-0.0003348214377183467,-0.0005357142654247582,-0.00029761905898340046,2.104466870224097e-20,1.2514239388317161e-20,-2.456395547037471e-20,-0.0,-4.544428503376899e-20,-1.5155309146338205e-20,-0.007008928339928389,0.0006696428754366934,0.0042708334513008595,0.0008035714272409678,0.00044642857392318547,-0.0,-0.00022321428696159273,-0.0,-2.710505431213761e-20,-0.00044642857392318547,-0.0002678571327123791,-0.00014880952949170023,-0.0,-4.0657581468206416e-20,-6.060281242967791e-20,-0.010803570970892906,0.0010714285308495164,0.0008035714272409678,0.013452380895614624,0.0007142857066355646,-0.0,1.0126269126278872e-20,-0.0007142857066355646,-4.3397452457400663e-20,5.421010862427522e-20,-0.0005357142654247582,-3.0255578470198955e-20,-0.0026785715017467737,-0.0004761904710903764,-9.890733001146092e-20,-0.006279761902987957,0.0005952381179668009,0.00044642857392318547,0.0007142857066355646,0.0032823130022734404,-0.0,4.45481713571806e-21,-0.0,-0.0001700680295471102,7.490555039606683e-21,2.0328790734103208e-20,-0.00012755101488437504,-0.0,-0.0002040816325461492,-0.00029761905898340046,0.0006377550889737904,-0.0012755101779475808,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,-0.0003348214377183467,-0.00022321428696159273,1.0126269126278872e-20,4.45481713571806e-21,-0.0,0.00011160714348079637,-0.0,-1.0226819912100337e-22,-6.776263578034403e-21,-3.3881317890172014e-21,-1.6940658945086007e-21,-0.0,1.089321063510233e-23,1.0771774491757874e-22,0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-2.710505431213761e-20,-4.3397452457400663e-20,-0.0001700680295471102,-0.0,-1.0226819912100337e-22,-0.0,8.50340147735551e-05,-2.0453639824200673e-22,-6.713838906767925e-22,8.470329472543003e-21,-0.0,1.2974744729374783e-20,4.23775896531175e-21,0.00037202381645329297,2.104466870224097e-20,-0.00044642857392318547,5.421010862427522e-20,7.490555039606683e-21,-0.0,-6.776263578034403e-21,-0.0,-2.0453639824200673e-22,7.440476474585012e-05,-6.776263578034403e-21,-6.776263578034403e-21,0.0,2.178642127020466e-23,1.6443861862446188e-21,0.0008035714272409678,1.2514239388317161e-20,-0.0002678571327123791,-0.0005357142654247582,2.0328790734103208e-20,-0.0,-3.3881317890172014e-21,-0.0,-6.713838906767925e-22,-6.776263578034403e-21,0.00017857142665889114,-3.3881317890172014e-21,-0.0,4.947272062878278e-23,-1.174921808684387e-21,0.00044642857392318547,-2.456395547037471e-20,-0.00014880952949170023,-3.0255578470198955e-20,-0.00012755101488437504,-0.0,-1.6940658945086007e-21,-0.0,8.470329472543003e-21,-6.776263578034403e-21,-3.3881317890172014e-21,4.251700738677755e-05,-0.0,1.1548564184298322e-20,1.4703212936312494e-20,0.0008928571478463709,-0.0,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,0.0007142857066355646,-4.544428503376899e-20,-4.0657581468206416e-20,-0.0004761904710903764,-0.0002040816325461492,-0.0,1.089321063510233e-23,-0.0,1.2974744729374783e-20,2.178642127020466e-23,4.947272062878278e-23,1.1548564184298322e-20,-0.0,0.0001360544265480712,2.9266312462851015e-20,0.00029761905898340046,-1.5155309146338205e-20,-6.060281242967791e-20,-9.890733001146092e-20,-0.00029761905898340046,-0.0,1.0771774491757874e-22,-0.0,4.23775896531175e-21,1.6443861862446188e-21,-1.174921808684387e-21,1.4703212936312494e-20,-0.0,2.9266312462851015e-20,4.251700738677755e-05,5.0,7.0,5.0,3.0,0.06964852660894394,-0.018299318850040436,-0.014047618955373764,-0.018299318850040436,-0.026428570970892906,0.0013605442363768816,0.0014285714132711291,0.0019047618843615055,0.0028571428265422583,0.0007936508045531809,0.0014285714132711291,0.002142857061699033,0.0013605442363768816,0.0028571428265422583,0.0028571428265422583,-0.018299318850040436,0.017312925308942795,0.0014285714132711291,0.0019047618843615055,0.0028571428265422583,-0.002721088472753763,-0.0007142857066355646,-0.0009523809421807528,-0.0014285714132711291,4.0657581468206416e-20,0.0,-0.0,-0.0,-0.0,-0.0,-0.014047618955373764,0.0014285714132711291,0.008809523656964302,0.0014285714132711291,0.002142857061699033,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0009523809421807528,-0.0004761904710903764,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.018299318850040436,0.0019047618843615055,0.0014285714132711291,0.017312925308942795,0.0028571428265422583,-0.0,-0.0,-0.0009523809421807528,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.002721088472753763,-0.0014285714132711291,-0.0,-0.026428570970892906,0.0028571428265422583,0.002142857061699033,0.0028571428265422583,0.054999999701976776,-0.0,-0.0,-0.0,-0.0028571428265422583,-0.0,-0.0,-0.002142857061699033,-0.0,-0.0028571428265422583,-0.017142856493592262,0.0013605442363768816,-0.002721088472753763,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0014285714132711291,-0.0007142857066355646,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0009523809421807528,-0.0,-0.0009523809421807528,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0,-0.0028571428265422583,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,4.0657581468206416e-20,-0.0009523809421807528,-0.0,-0.0,-0.0,-1.3552527156068805e-20,-0.0,-0.0,0.00015873015217948705,-0.0,0.0,0.0,0.0,-0.0,0.0014285714132711291,0.0,-0.0004761904710903764,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0,-0.0007142857066355646,-0.0,-0.002142857061699033,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0,-0.0,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,0.0028571428265422583,-0.0,-0.0,-0.0014285714132711291,-0.0028571428265422583,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,0.0028571428265422583,-0.0,-0.0,-0.0,-0.017142856493592262,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008571428246796131,5.0,7.0,5.0,4.0,0.056057821959257126,-0.01415306143462658,-0.010857142508029938,-0.01415306143462658,-0.01671428605914116,0.0010204081190750003,0.0010714285308495164,0.0014285714132711291,0.001714285695925355,0.0005952381179668009,0.0010714285308495164,0.0012857143301516771,0.0010204081190750003,0.001714285695925355,0.0014285714132711291,-0.01415306143462658,0.013198979198932648,0.0010714285308495164,0.0014285714132711291,0.001714285695925355,-0.0020408162381500006,-0.0005357142654247582,-0.0007142857066355646,-0.0008571428479626775,2.0328790734103208e-20,0.0,3.049318610115481e-20,-0.0,1.438566456609432e-35,4.0630244771358633e-35,-0.010857142508029938,0.0010714285308495164,0.00671428581699729,0.0010714285308495164,0.0012857143301516771,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0007142857066355646,-0.0003571428533177823,-0.00042857142398133874,-0.0,-1.903239450401889e-19,-7.137148003630569e-19,-0.01415306143462658,0.0014285714132711291,0.0010714285308495164,0.013198979198932648,0.001714285695925355,-0.0,7.19283228304716e-36,-0.0007142857066355646,-0.0,2.710505431213761e-20,-0.0005357142654247582,-1.903239450401889e-19,-0.0020408162381500006,-0.0008571428479626775,-3.1695304175152512e-34,-0.01671428605914116,0.001714285695925355,0.0012857143301516771,0.001714285695925355,0.021142857149243355,-0.0,3.049318610115481e-20,-0.0,-0.0011428571306169033,-9.382519048907194e-21,-0.0,-0.0008571428479626775,-0.0,-0.0011428571306169033,-0.004285714123398066,0.0010204081190750003,-0.0020408162381500006,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0005357142654247582,-0.0003571428533177823,7.19283228304716e-36,3.049318610115481e-20,-0.0,0.00017857142665889114,-0.0,-0.0,-6.776263578034403e-21,-0.0,-1.0164395367051604e-20,-0.0,-4.7952216416089086e-36,-1.354341396716646e-35,0.0014285714132711291,-0.0007142857066355646,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-0.0008571428479626775,-0.0,-0.0,-0.0011428571306169033,-0.0,-0.0,-0.0,0.0005714285653084517,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,2.0328790734103208e-20,-0.0007142857066355646,2.710505431213761e-20,-9.382519048907194e-21,-0.0,-6.776263578034403e-21,-0.0,-0.0,0.0001190476177725941,-0.0,-1.3552527156068805e-20,0.0,-6.018531076210112e-36,-2.407412430484045e-35,0.0010714285308495164,0.0,-0.0003571428533177823,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0012857143301516771,3.049318610115481e-20,-0.00042857142398133874,-1.903239450401889e-19,-0.0008571428479626775,-0.0,-1.0164395367051604e-20,-0.0,-0.0,-1.3552527156068805e-20,-0.0,0.0002857142826542258,-0.0,1.268826300267926e-19,4.758098496757752e-19,0.0010204081190750003,-0.0,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,0.001714285695925355,1.438566456609432e-35,-1.903239450401889e-19,-0.0008571428479626775,-0.0011428571306169033,-0.0,-4.7952216416089086e-36,-0.0,-0.0,-6.018531076210112e-36,-0.0,1.268826300267926e-19,-0.0,0.0005714285653084517,2.1130202018139207e-34,0.0014285714132711291,4.0630244771358633e-35,-7.137148003630569e-19,-3.1695304175152512e-34,-0.004285714123398066,-0.0,-1.354341396716646e-35,-0.0,-0.0,-2.407412430484045e-35,-0.0,4.758098496757752e-19,-0.0,2.1130202018139207e-34,0.0014285714132711291,5.0,7.0,5.0,5.0,0.0469931960105896,-0.011551020666956902,-0.008857143111526966,-0.011551020666956902,-0.011551020666956902,0.0008163265301845968,0.0008571428479626775,0.0011428571306169033,0.0011428571306169033,0.0004761904710903764,0.0008571428479626775,0.0008571428479626775,0.0008163265301845968,0.0011428571306169033,0.0008163265301845968,-0.011551020666956902,0.010673468932509422,0.0008571428479626775,0.0011428571306169033,0.0011428571306169033,-0.0016326530603691936,-0.00042857142398133874,-0.0005714285653084517,-0.0005714285653084517,6.042030148986662e-19,-2.947674656444965e-19,-2.947674656444965e-19,-4.194895102510583e-18,-2.211382995238039e-18,-4.194895102510583e-18,-0.008857143111526966,0.0008571428479626775,0.005428571254014969,0.0008571428479626775,0.0008571428479626775,1.2977244753529254e-18,-0.0002857142826542258,-4.238605032137898e-19,-4.238605032137898e-19,-0.0005714285653084517,-0.0002857142826542258,-0.0002857142826542258,-5.681832076503761e-18,-4.5426658202656395e-18,-5.681832076503761e-18,-0.011551020666956902,0.0011428571306169033,0.0008571428479626775,0.010673468932509422,0.0011428571306169033,-4.680881496768656e-18,-2.803128359918927e-18,-0.0005714285653084517,-9.019930353056259e-33,-3.876022766635678e-18,-0.00042857142398133874,-2.846437468840672e-18,-0.0016326530603691936,-0.0005714285653084517,-4.194895102510583e-18,-0.011551020666956902,0.0011428571306169033,0.0008571428479626775,0.0011428571306169033,0.010673468932509422,-4.680881496768656e-18,-2.803128359918927e-18,-9.019930353056259e-33,-0.0005714285653084517,-3.875543415470704e-18,-2.846437468840672e-18,-0.00042857142398133874,-5.043403326387371e-18,-0.0005714285653084517,-0.0016326530603691936,0.0008163265301845968,-0.0016326530603691936,1.2977244753529254e-18,-4.680881496768656e-18,-4.680881496768656e-18,0.0004081632650922984,-5.976430978249056e-20,4.242540860890002e-19,4.242540860890002e-19,-1.5105075372466654e-19,1.504632769052528e-33,1.5166698312049482e-33,7.768324551123977e-19,3.6252180376932087e-19,7.768324551123977e-19,0.0008571428479626775,-0.00042857142398133874,-0.0002857142826542258,-2.803128359918927e-18,-2.803128359918927e-18,-5.976430978249056e-20,0.0001428571413271129,2.119302516068949e-19,2.119302516068949e-19,-4.4234475180901e-36,9.825582188149884e-20,9.825582188149884e-20,3.6252180376932087e-19,2.537652600535852e-19,3.6252180376932087e-19,0.0011428571306169033,-0.0005714285653084517,-4.238605032137898e-19,-0.0005714285653084517,-9.019930353056259e-33,4.242540860890002e-19,2.119302516068949e-19,0.0002857142826542258,7.55380246266835e-34,-1.4444474582904269e-34,1.4444474582904269e-34,1.4444474582904269e-34,1.3452624592104078e-33,7.5327707565157275e-34,1.3452624592104078e-33,0.0011428571306169033,-0.0005714285653084517,-4.238605032137898e-19,-9.019930353056259e-33,-0.0005714285653084517,4.242540860890002e-19,2.119302516068949e-19,7.55380246266835e-34,0.0002857142826542258,-1.5648180798146291e-34,1.4444474582904269e-34,1.4444474582904269e-34,1.3452624592104078e-33,7.5327707565157275e-34,1.3452624592104078e-33,0.0004761904710903764,6.042030148986662e-19,-0.0005714285653084517,-3.876022766635678e-18,-3.875543415470704e-18,-1.5105075372466654e-19,-4.4234475180901e-36,-1.4444474582904269e-34,-1.5648180798146291e-34,9.523809421807528e-05,1.9651164376299768e-19,1.9651164376299768e-19,5.437826927292842e-19,4.2294210008930866e-19,5.437826927292842e-19,0.0008571428479626775,-2.947674656444965e-19,-0.0002857142826542258,-0.00042857142398133874,-2.846437468840672e-18,1.504632769052528e-33,9.825582188149884e-20,1.4444474582904269e-34,1.4444474582904269e-34,1.9651164376299768e-19,0.0001428571413271129,1.9472254257092498e-19,4.392091238230468e-19,3.426500303236532e-19,3.6252180376932087e-19,0.0008571428479626775,-2.947674656444965e-19,-0.0002857142826542258,-2.846437468840672e-18,-0.00042857142398133874,1.5166698312049482e-33,9.825582188149884e-20,1.4444474582904269e-34,1.4444474582904269e-34,1.9651164376299768e-19,1.9472254257092498e-19,0.0001428571413271129,3.6252180376932087e-19,3.426500303236532e-19,4.392091238230468e-19,0.0008163265301845968,-4.194895102510583e-18,-5.681832076503761e-18,-0.0016326530603691936,-5.043403326387371e-18,7.768324551123977e-19,3.6252180376932087e-19,1.3452624592104078e-33,1.3452624592104078e-33,5.437826927292842e-19,4.392091238230468e-19,3.6252180376932087e-19,0.0004081632650922984,4.242540860890002e-19,7.768324551123977e-19,0.0011428571306169033,-2.211382995238039e-18,-4.5426658202656395e-18,-0.0005714285653084517,-0.0005714285653084517,3.6252180376932087e-19,2.537652600535852e-19,7.5327707565157275e-34,7.5327707565157275e-34,4.2294210008930866e-19,3.426500303236532e-19,3.426500303236532e-19,4.242540860890002e-19,0.0002857142826542258,6.469975273539596e-33,0.0008163265301845968,-4.194895102510583e-18,-5.681832076503761e-18,-4.194895102510583e-18,-0.0016326530603691936,7.768324551123977e-19,3.6252180376932087e-19,1.3452624592104078e-33,1.3452624592104078e-33,5.437826927292842e-19,3.6252180376932087e-19,4.392091238230468e-19,7.768324551123977e-19,6.469975273539596e-33,0.0004081632650922984,5.0,7.0,5.0,6.0,0.04048752784729004,-0.009761904366314411,-0.007482993416488171,-0.009761904366314411,-0.008469387888908386,0.0006802721181884408,0.0007142857066355646,0.0009523809421807528,0.0008163265301845968,0.00039682540227659047,0.0007142857066355646,0.0006122448830865324,0.0006802721181884408,0.0008163265301845968,0.0005102040595375001,-0.009761904366314411,0.008962584659457207,0.0007142857066355646,0.0009523809421807528,0.0008163265301845968,-0.0013605442363768816,-0.0003571428533177823,-0.0004761904710903764,-0.0004081632650922984,1.6940658945086007e-21,0.0,-5.421010862427522e-20,-0.0,-0.0,-1.8285344428367522e-21,-0.007482993416488171,0.0007142857066355646,0.004557823296636343,0.0007142857066355646,0.0006122448830865324,-0.0,-0.0002380952355451882,-0.0,-5.421010862427522e-20,-0.0004761904710903764,-0.0002380952355451882,-0.0002040816325461492,-0.0,-0.0,-1.5620370119995977e-19,-0.009761904366314411,0.0009523809421807528,0.0007142857066355646,0.008962584659457207,0.0008163265301845968,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0013605442363768816,-0.0004081632650922984,-0.0,-0.008469387888908386,0.0008163265301845968,0.0006122448830865324,0.0008163265301845968,0.006193877663463354,-0.0,4.447441576555056e-21,-0.0,-0.00032653060043230653,-1.4920971463741346e-20,-0.0,-0.0002448979648761451,-0.0,-0.00032653060043230653,-0.0007653061184100807,0.0006802721181884408,-0.0013605442363768816,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0003571428533177823,-0.0002380952355451882,-0.0,4.447441576555056e-21,-0.0,0.0001190476177725941,-0.0,-3.3881318395042993e-22,-0.0,-0.0,-1.6940658945086007e-21,-0.0,-0.0,2.418395352353441e-22,0.0009523809421807528,-0.0004761904710903764,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,-0.0004081632650922984,-5.421010862427522e-20,-0.0,-0.00032653060043230653,-0.0,-3.3881318395042993e-22,-0.0,0.00016326530021615326,-6.776263679008599e-22,-0.0,2.371692252312041e-20,-0.0,-0.0,4.412063449497075e-22,0.00039682540227659047,1.6940658945086007e-21,-0.0004761904710903764,-0.0,-1.4920971463741346e-20,-0.0,-0.0,-0.0,-6.776263679008599e-22,7.936507608974352e-05,-0.0,0.0,0.0,0.0,1.2562508689013255e-21,0.0007142857066355646,0.0,-0.0002380952355451882,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-5.421010862427522e-20,-0.0002040816325461492,-0.0,-0.0002448979648761451,-0.0,-1.6940658945086007e-21,-0.0,2.371692252312041e-20,0.0,-0.0,8.163265010807663e-05,-0.0,-0.0,5.902175362401083e-20,0.0006802721181884408,-0.0,-0.0,-0.0013605442363768816,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,0.0008163265301845968,-0.0,-0.0,-0.0004081632650922984,-0.00032653060043230653,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00016326530021615326,0.0,0.0005102040595375001,-1.8285344428367522e-21,-1.5620370119995977e-19,-0.0,-0.0007653061184100807,-0.0,2.418395352353441e-22,-0.0,4.412063449497075e-22,1.2562508689013255e-21,-0.0,5.902175362401083e-20,-0.0,0.0,0.0001530612207716331,5.0,7.0,5.0,7.0,0.03558066114783287,-0.008454810827970505,-0.006479592062532902,-0.008454810827970505,-0.006479592062532902,0.000583090353757143,0.0006122448830865324,0.0008163265301845968,0.0006122448830865324,0.0003401360590942204,0.0006122448830865324,0.0004591836768668145,0.000583090353757143,0.0006122448830865324,0.0003401360590942204,-0.008454810827970505,0.0077259475365281105,0.0006122448830865324,0.0008163265301845968,0.0006122448830865324,-0.001166180707514286,-0.0003061224415432662,-0.0004081632650922984,-0.0003061224415432662,-0.0,0.0,-5.082197683525802e-21,-0.0,-0.0,-1.0443317801937322e-21,-0.006479592062532902,0.0006122448830865324,0.0039285714738070965,0.0006122448830865324,0.0004591836768668145,-0.0,-0.0002040816325461492,-0.0,-0.0,-0.0004081632650922984,-0.0002040816325461492,-0.0001530612207716331,-0.0,-0.0,-0.0,-0.008454810827970505,0.0008163265301845968,0.0006122448830865324,0.0077259475365281105,0.0006122448830865324,-0.0,-0.0,-0.0004081632650922984,-0.0,-0.0,-0.0003061224415432662,-0.0,-0.001166180707514286,-0.0003061224415432662,-0.0,-0.006479592062532902,0.0006122448830865324,0.0004591836768668145,0.0006122448830865324,0.0039285714738070965,-0.0,-7.344916321834797e-21,-0.0,-0.0002040816325461492,2.259974361613687e-21,-0.0,-0.0001530612207716331,-0.0,-0.0002040816325461492,-0.0004081632650922984,0.000583090353757143,-0.001166180707514286,-0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0003061224415432662,-0.0002040816325461492,-0.0,-7.344916321834797e-21,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,1.6940658945086007e-21,-0.0,-0.0,3.481105849833944e-22,0.0008163265301845968,-0.0004081632650922984,-0.0,-0.0004081632650922984,-0.0,-0.0,-0.0,0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0003061224415432662,-0.0,-0.0,-0.0002040816325461492,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0004081632650922984,-0.0,2.259974361613687e-21,-0.0,-0.0,-0.0,-0.0,6.80272132740356e-05,-0.0,3.3881317890172014e-21,0.0,0.0,-1.0711095310928274e-22,0.0006122448830865324,0.0,-0.0002040816325461492,-0.0003061224415432662,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,0.0004591836768668145,-5.082197683525802e-21,-0.0001530612207716331,-0.0,-0.0001530612207716331,-0.0,1.6940658945086007e-21,-0.0,-0.0,3.3881317890172014e-21,-0.0,5.10204081365373e-05,-0.0,-0.0,-0.0,0.000583090353757143,-0.0,-0.0,-0.001166180707514286,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,0.0006122448830865324,-0.0,-0.0,-0.0003061224415432662,-0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0001020408162730746,0.0,0.0003401360590942204,-1.0443317801937322e-21,-0.0,-0.0,-0.0004081632650922984,-0.0,3.481105849833944e-22,-0.0,-0.0,-1.0711095310928274e-22,-0.0,-0.0,-0.0,0.0,6.80272132740356e-05,5.0,7.0,5.0,8.0,0.03174319863319397,-0.007457483094185591,-0.0057142856530845165,-0.007457483094185591,-0.0051190475933253765,0.0005102040595375001,0.0005357142654247582,0.0007142857066355646,0.0004761904710903764,0.00029761905898340046,0.0005357142654247582,0.0003571428533177823,0.0005102040595375001,0.0004761904710903764,0.0002380952355451882,-0.007457483094185591,0.006789966020733118,0.0005357142654247582,0.0007142857066355646,0.0004761904710903764,-0.0010204081190750003,-0.0002678571327123791,-0.0003571428533177823,-0.0002380952355451882,-1.9764102186745504e-22,0.0,2.0752307207730358e-20,-0.0,-0.0,4.551228913520236e-21,-0.0057142856530845165,0.0005357142654247582,0.0034523808863013983,0.0005357142654247582,0.0003571428533177823,-0.0,-0.00017857142665889114,-0.0,2.0328790734103208e-20,-0.0003571428533177823,-0.00017857142665889114,-0.0001190476177725941,-0.0,-0.0,4.2063975917654095e-20,-0.007457483094185591,0.0007142857066355646,0.0005357142654247582,0.006789966020733118,0.0004761904710903764,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0002678571327123791,-0.0,-0.0010204081190750003,-0.0002380952355451882,-0.0,-0.0051190475933253765,0.0004761904710903764,0.0003571428533177823,0.0004761904710903764,0.002653061179444194,-0.0,2.2537759596261163e-21,-0.0,-0.0001360544265480712,-6.9346957264228e-22,-0.0,-0.0001020408162730746,-0.0,-0.0001360544265480712,-0.0002380952355451882,0.0005102040595375001,-0.0010204081190750003,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005357142654247582,-0.0002678571327123791,-0.00017857142665889114,-0.0,2.2537759596261163e-21,-0.0,8.928571332944557e-05,-0.0,2.82344330476837e-23,-0.0,-0.0,-0.0,-0.0,-0.0,-3.0512667759583052e-22,0.0007142857066355646,-0.0003571428533177823,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0002380952355451882,2.0328790734103208e-20,-0.0,-0.0001360544265480712,-0.0,2.82344330476837e-23,-0.0,6.80272132740356e-05,5.64688660953674e-23,-0.0,-5.929230630780102e-21,-0.0,-0.0,-1.0388139442863137e-21,0.00029761905898340046,-1.9764102186745504e-22,-0.0003571428533177823,-0.0,-6.9346957264228e-22,-0.0,-0.0,-0.0,5.64688660953674e-23,5.952380888629705e-05,-0.0,-3.3881317890172014e-21,0.0,0.0,9.888633222548172e-22,0.0005357142654247582,0.0,-0.00017857142665889114,-0.0002678571327123791,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,2.0752307207730358e-20,-0.0001190476177725941,-0.0,-0.0001020408162730746,-0.0,-0.0,-0.0,-5.929230630780102e-21,-3.3881317890172014e-21,-0.0,3.40136066370178e-05,-0.0,-0.0,-1.36803814906708e-20,0.0005102040595375001,-0.0,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0002380952355451882,-0.0001360544265480712,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,6.80272132740356e-05,0.0,0.0002380952355451882,4.551228913520236e-21,4.2063975917654095e-20,-0.0,-0.0002380952355451882,-0.0,-3.0512667759583052e-22,-0.0,-1.0388139442863137e-21,9.888633222548172e-22,-0.0,-1.36803814906708e-20,-0.0,0.0,3.40136066370178e-05,5.0,7.0,6.0,3.0,0.06013794243335724,-0.015476190485060215,-0.011876417323946953,-0.01343537401407957,-0.022363945841789246,0.0011337868636474013,0.0011904762359336019,0.0013605442363768816,0.0023809524718672037,0.0006613756413571537,0.0010204081190750003,0.0017857142956927419,0.0008503401186317205,0.0020408162381500006,0.0023809524718672037,-0.015476190485060215,0.01454081665724516,0.0011904762359336019,0.0013605442363768816,0.0023809524718672037,-0.0022675737272948027,-0.0005952381179668009,-0.0006802721181884408,-0.0011904762359336019,8.59424888312169e-20,-4.0657581468206416e-20,1.8587981057049692e-20,3.246364987370403e-20,-3.2149281255152318e-21,1.8984166324087452e-35,-0.011876417323946953,0.0011904762359336019,0.007397959008812904,0.0010204081190750003,0.0017857142956927419,-0.0,-0.00039682540227659047,-3.7636317205553554e-20,-0.0,-0.0007936508045531809,-0.0003401360590942204,-0.0005952381179668009,-7.670129165125983e-20,-2.439454888092385e-19,-1.5860329011843016e-18,-0.01343537401407957,0.0013605442363768816,0.0010204081190750003,0.010051020421087742,0.0020408162381500006,-0.0,8.379280636231783e-21,-0.0005442177061922848,-0.0,2.710505431213761e-20,-0.0004081632650922984,-2.1779107181607745e-19,-0.0012755101779475808,-0.0008163265301845968,4.1573100834277045e-18,-0.022363945841789246,0.0023809524718672037,0.0017857142956927419,0.0020408162381500006,0.046173468232154846,-0.0,1.7649683592601797e-20,-2.0889717336332545e-21,-0.0023809524718672037,-1.3249437355195579e-20,2.0328790734103208e-20,-0.0017857142956927419,3.3068166260807885e-18,-0.0020408162381500006,-0.014285714365541935,0.0011337868636474013,-0.0022675737272948027,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,-0.00039682540227659047,8.379280636231783e-21,1.7649683592601797e-20,-0.0,0.00019841270113829523,-9.25465562662757e-22,-0.0,-2.710505431213761e-20,-3.3881317890172014e-21,-6.776263578034403e-21,4.725559045151313e-22,1.071642674847012e-21,-6.328055441362484e-36,0.0013605442363768816,-0.0006802721181884408,-3.7636317205553554e-20,-0.0005442177061922848,-2.0889717336332545e-21,-0.0,-9.25465562662757e-22,0.0002721088530961424,-0.0,-1.850931125325514e-21,2.0328790734103208e-20,6.963238607239869e-22,-1.3552527156068805e-20,-0.0,-0.0,0.0023809524718672037,-0.0011904762359336019,-0.0,-0.0,-0.0023809524718672037,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006613756413571537,8.59424888312169e-20,-0.0007936508045531809,2.710505431213761e-20,-1.3249437355195579e-20,-0.0,-2.710505431213761e-20,-1.850931125325514e-21,-0.0,0.00013227513409219682,-0.0,-1.3552527156068805e-20,-6.564714155857883e-21,2.143285349694024e-21,0.0,0.0010204081190750003,-4.0657581468206416e-20,-0.0003401360590942204,-0.0004081632650922984,2.0328790734103208e-20,-0.0,-3.3881317890172014e-21,2.0328790734103208e-20,-0.0,-0.0,0.0001360544265480712,-6.776263578034403e-21,4.671792668842471e-20,-0.0,-1.925929944387236e-34,0.0017857142956927419,1.8587981057049692e-20,-0.0005952381179668009,-2.1779107181607745e-19,-0.0017857142956927419,-0.0,-6.776263578034403e-21,6.963238607239869e-22,-0.0,-1.3552527156068805e-20,-6.776263578034403e-21,0.0005952381179668009,1.6320090722376714e-21,2.2787083626670723e-19,1.5860329011843016e-18,0.0008503401186317205,3.246364987370403e-20,-7.670129165125983e-20,-0.0012755101779475808,3.3068166260807885e-18,-0.0,4.725559045151313e-22,-1.3552527156068805e-20,-0.0,-6.564714155857883e-21,4.671792668842471e-20,1.6320090722376714e-21,0.00025510202976875007,-4.0657581468206416e-19,-1.1328806141609079e-18,0.0020408162381500006,-3.2149281255152318e-21,-2.439454888092385e-19,-0.0008163265301845968,-0.0020408162381500006,-0.0,1.071642674847012e-21,-0.0,-0.0,2.143285349694024e-21,-0.0,2.2787083626670723e-19,-4.0657581468206416e-19,0.0008163265301845968,1.5070930907744114e-18,0.0023809524718672037,1.8984166324087452e-35,-1.5860329011843016e-18,4.1573100834277045e-18,-0.014285714365541935,-0.0,-6.328055441362484e-36,-0.0,-0.0,0.0,-1.925929944387236e-34,1.5860329011843016e-18,-1.1328806141609079e-18,1.5070930907744114e-18,0.0071428571827709675,5.0,7.0,6.0,4.0,0.04833900183439255,-0.011964285746216774,-0.009175170212984085,-0.010382653214037418,-0.01413265336304903,0.0008503401186317205,0.0008928571478463709,0.0010204081190750003,0.0014285714132711291,0.0004960317746736109,0.0007653061184100807,0.0010714285308495164,0.0006377550889737904,0.0012244897661730647,0.0011904762359336019,-0.011964285746216774,0.011084184050559998,0.0008928571478463709,0.0010204081190750003,0.0014285714132711291,-0.001700680237263441,-0.00044642857392318547,-0.0005102040595375001,-0.0007142857066355646,6.059913793830058e-19,1.2314713407929141e-18,1.2807898134672804e-18,1.6038427201580277e-18,1.8959910217904516e-18,1.1706433736779084e-18,-0.009175170212984085,0.0008928571478463709,0.005637755151838064,0.0007653061184100807,0.0010714285308495164,2.571459265375741e-18,-0.00029761905898340046,-8.707279882652793e-20,-9.918999313640677e-20,-0.0005952381179668009,-0.00025510202976875007,-0.0003571428533177823,7.934984383953278e-19,-4.675621868843738e-19,3.1610275423831776e-19,-0.010382653214037418,0.0010204081190750003,0.0007653061184100807,0.007660714443773031,0.0012244897661730647,3.8771299478855806e-18,2.965963361294571e-19,-0.0004081632650922984,-2.0853635540298397e-19,2.0328790734103208e-19,-0.0003061224415432662,5.373805732820652e-19,-0.0009566326625645161,-0.0004897959297522902,-2.6872960356952302e-19,-0.01413265336304903,0.0014285714132711291,0.0010714285308495164,0.0012244897661730647,0.01775510236620903,3.940626399656682e-18,-4.067505242747233e-20,-7.856506657313075e-19,-0.0009523809421807528,-3.522066805850256e-19,-7.260901978086745e-19,-0.0007142857066355646,-0.0,-0.0008163265301845968,-0.0035714285913854837,0.0008503401186317205,-0.001700680237263441,2.571459265375741e-18,3.8771299478855806e-18,3.940626399656682e-18,0.00042517005931586027,-5.304758382151437e-20,-7.27509743137392e-20,-8.48761366993624e-20,-1.5734453836103525e-19,-2.9131215128010353e-19,-3.398641894181512e-19,-3.540252113123293e-19,-4.660994730674386e-19,-3.776268713869693e-19,0.0008928571478463709,-0.00044642857392318547,-0.00029761905898340046,2.965963361294571e-19,-4.067505242747233e-20,-5.304758382151437e-20,0.00014880952949170023,3.179278700987792e-20,4.9594996568203386e-20,6.776263578034403e-21,-1.3552527156068805e-20,3.3881317890172014e-21,-5.1286865264209893e-20,-2.747173443039442e-20,5.717604522399606e-35,0.0010204081190750003,-0.0005102040595375001,-8.707279882652793e-20,-0.0004081632650922984,-7.856506657313075e-19,-7.27509743137392e-20,3.179278700987792e-20,0.0002040816325461492,1.0426817770149199e-19,1.223191513277264e-21,-1.0226032439590309e-20,2.740104279976381e-20,-1.3552527156068805e-20,2.0328790734103208e-20,1.3594567318232106e-19,0.0014285714132711291,-0.0007142857066355646,-9.918999313640677e-20,-2.0853635540298397e-19,-0.0009523809421807528,-8.48761366993624e-20,4.9594996568203386e-20,1.0426817770149199e-19,0.0004761904710903764,3.009265538105056e-35,4.890056499420716e-35,8.275480229788904e-35,6.018531076210112e-35,9.62964972193618e-35,1.4484171624062263e-34,0.0004960317746736109,6.059913793830058e-19,-0.0005952381179668009,2.0328790734103208e-19,-3.522066805850256e-19,-1.5734453836103525e-19,6.776263578034403e-21,1.223191513277264e-21,3.009265538105056e-35,9.920635056914762e-05,6.776263578034403e-21,5.421010862427522e-20,-6.03188503726764e-20,2.05819063859573e-20,2.2028234918180537e-20,0.0007653061184100807,1.2314713407929141e-18,-0.00025510202976875007,-0.0003061224415432662,-7.260901978086745e-19,-2.9131215128010353e-19,-1.3552527156068805e-20,-1.0226032439590309e-20,4.890056499420716e-35,6.776263578034403e-21,0.0001020408162730746,2.371692252312041e-20,-7.074736838672531e-20,1.2874900798265365e-19,5.664402941557569e-20,0.0010714285308495164,1.2807898134672804e-18,-0.0003571428533177823,5.373805732820652e-19,-0.0007142857066355646,-3.398641894181512e-19,3.3881317890172014e-21,2.740104279976381e-20,8.275480229788904e-35,5.421010862427522e-20,2.371692252312041e-20,0.0002380952355451882,-1.481939303828498e-19,-3.901425147205058e-20,-4.813677796090955e-19,0.0006377550889737904,1.6038427201580277e-18,7.934984383953278e-19,-0.0009566326625645161,-0.0,-3.540252113123293e-19,-5.1286865264209893e-20,-1.3552527156068805e-20,6.018531076210112e-35,-6.03188503726764e-20,-7.074736838672531e-20,-1.481939303828498e-19,0.00019132652960252017,4.94144030072026e-20,4.9563528162009426e-20,0.0012244897661730647,1.8959910217904516e-18,-4.675621868843738e-19,-0.0004897959297522902,-0.0008163265301845968,-4.660994730674386e-19,-2.747173443039442e-20,2.0328790734103208e-20,9.62964972193618e-35,2.05819063859573e-20,1.2874900798265365e-19,-3.901425147205058e-20,4.94144030072026e-20,0.00032653060043230653,-4.0144825131181866e-19,0.0011904762359336019,1.1706433736779084e-18,3.1610275423831776e-19,-2.6872960356952302e-19,-0.0035714285913854837,-3.776268713869693e-19,5.717604522399606e-35,1.3594567318232106e-19,1.4484171624062263e-34,2.2028234918180537e-20,5.664402941557569e-20,-4.813677796090955e-19,4.9563528162009426e-20,-4.0144825131181866e-19,0.0011904762359336019,5.0,7.0,6.0,5.0,0.04048752784729004,-0.009761904366314411,-0.007482993416488171,-0.008469387888908386,-0.009761904366314411,0.0006802721181884408,0.0007142857066355646,0.0008163265301845968,0.0009523809421807528,0.00039682540227659047,0.0006122448830865324,0.0007142857066355646,0.0005102040595375001,0.0008163265301845968,0.0006802721181884408,-0.009761904366314411,0.008962584659457207,0.0007142857066355646,0.0008163265301845968,0.0009523809421807528,-0.0013605442363768816,-0.0003571428533177823,-0.0004081632650922984,-0.0004761904710903764,1.6940658945086007e-21,-5.59365444225985e-20,1.2930437859045163e-36,1.5848673907765173e-20,1.6940658945086007e-20,-0.0,-0.007482993416488171,0.0007142857066355646,0.004557823296636343,0.0006122448830865324,0.0007142857066355646,-0.0,-0.0002380952355451882,-5.59365444225985e-20,-0.0,-0.0004761904710903764,-0.0002040816325461492,-0.0002380952355451882,-1.602500361120219e-19,1.2705494208814505e-20,1.504632769052528e-34,-0.008469387888908386,0.0008163265301845968,0.0006122448830865324,0.006193877663463354,0.0008163265301845968,-0.0,3.784544365092602e-21,-0.00032653060043230653,-0.0,-1.3552527156068805e-20,-0.0002448979648761451,4.971727470381275e-21,-0.0007653061184100807,-0.00032653060043230653,1.1237348917182153e-18,-0.009761904366314411,0.0009523809421807528,0.0007142857066355646,0.0008163265301845968,0.008962584659457207,-0.0,-2.1942560467990186e-37,1.6940658945086007e-20,-0.0004761904710903764,-6.798931073316483e-21,1.7677221275298997e-20,-0.0003571428533177823,1.0299920638612292e-18,-0.0004081632650922984,-0.0013605442363768816,0.0006802721181884408,-0.0013605442363768816,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0003571428533177823,-0.0002380952355451882,3.784544365092602e-21,-2.1942560467990186e-37,-0.0,0.0001190476177725941,-3.3881318395042993e-22,-0.0,-0.0,-1.6940658945086007e-21,-0.0,3.6399498719672885e-22,8.777024523507706e-38,0.0,0.0008163265301845968,-0.0004081632650922984,-5.59365444225985e-20,-0.00032653060043230653,1.6940658945086007e-20,-0.0,-3.3881318395042993e-22,0.00016326530021615326,-0.0,-6.776263679008599e-22,2.4407497165567146e-20,-5.172175143618065e-37,-6.776263578034403e-21,-6.776263578034403e-21,-0.0,0.0009523809421807528,-0.0004761904710903764,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00039682540227659047,1.6940658945086007e-21,-0.0004761904710903764,-1.3552527156068805e-20,-6.798931073316483e-21,-0.0,-0.0,-6.776263679008599e-22,-0.0,7.936507608974352e-05,-0.0,0.0,1.218664537153901e-21,-1.0850716998279671e-37,0.0,0.0006122448830865324,-5.59365444225985e-20,-0.0002040816325461492,-0.0002448979648761451,1.7677221275298997e-20,-0.0,-1.6940658945086007e-21,2.4407497165567146e-20,-0.0,-0.0,8.163265010807663e-05,-1.657242523785157e-21,6.064028758883568e-20,-5.082197683525802e-21,-6.018531076210112e-35,0.0007142857066355646,1.2930437859045163e-36,-0.0002380952355451882,4.971727470381275e-21,-0.0003571428533177823,-0.0,-0.0,-5.172175143618065e-37,-0.0,0.0,-1.657242523785157e-21,0.0001190476177725941,-1.316553672920962e-36,4.70197740328915e-38,0.0,0.0005102040595375001,1.5848673907765173e-20,-1.602500361120219e-19,-0.0007653061184100807,1.0299920638612292e-18,-0.0,3.6399498719672885e-22,-6.776263578034403e-21,-0.0,1.218664537153901e-21,6.064028758883568e-20,-1.316553672920962e-36,0.0001530612207716331,-1.0311325262060896e-19,-1.9420811377809942e-19,0.0008163265301845968,1.6940658945086007e-20,1.2705494208814505e-20,-0.00032653060043230653,-0.0004081632650922984,-0.0,8.777024523507706e-38,-6.776263578034403e-21,-0.0,-1.0850716998279671e-37,-5.082197683525802e-21,4.70197740328915e-38,-1.0311325262060896e-19,0.00016326530021615326,-7.634716787620763e-20,0.0006802721181884408,-0.0,1.504632769052528e-34,1.1237348917182153e-18,-0.0013605442363768816,-0.0,0.0,-0.0,-0.0,0.0,-6.018531076210112e-35,0.0,-1.9420811377809942e-19,-7.634716787620763e-20,0.0003401360590942204,5.0,7.0,6.0,6.0,0.0348612442612648,-0.008248299360275269,-0.006320861633867025,-0.0071550048887729645,-0.0071550048887729645,0.0005668934318237007,0.0005952381179668009,0.0006802721181884408,0.0006802721181884408,0.0003306878206785768,0.0005102040595375001,0.0005102040595375001,0.00042517005931586027,0.000583090353757143,0.00042517005931586027,-0.008248299360275269,0.0075255101546645164,0.0005952381179668009,0.0006802721181884408,0.0006802721181884408,-0.0011337868636474013,-0.00029761905898340046,-0.0003401360590942204,-0.0003401360590942204,2.4929941290060727e-21,-2.6053347477651855e-20,-2.0948148680100823e-20,-2.979513452145242e-21,2.9031858457980516e-20,-1.288165581041024e-21,-0.006320861633867025,0.0005952381179668009,0.0038265306502580643,0.0005102040595375001,0.0005102040595375001,-0.0,-0.00019841270113829523,-2.93581198173216e-20,-2.0328790734103208e-20,-0.00039682540227659047,-0.0001700680295471102,-0.0001700680295471102,-6.510194471658186e-20,1.7711029051662834e-20,-6.027045384449351e-20,-0.0071550048887729645,0.0006802721181884408,0.0005102040595375001,0.005200437270104885,0.000583090353757143,-0.0,-1.3759963697299218e-21,-0.0002721088530961424,2.142262561869235e-20,-0.0,-0.0002040816325461492,3.3881317890172014e-21,-0.0006377550889737904,-0.0002332361473236233,7.210046397039102e-19,-0.0071550048887729645,0.0006802721181884408,0.0005102040595375001,0.000583090353757143,0.005200437270104885,-0.0,-3.0700622642385225e-21,5.96090219705615e-21,-0.0002721088530961424,3.536835679478864e-21,-6.739722228240019e-21,-0.0002040816325461492,7.995991022080595e-19,-0.0002332361473236233,-0.0006377550889737904,0.0005668934318237007,-0.0011337868636474013,-0.0,-0.0,-0.0,0.00028344671591185033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-0.00019841270113829523,-1.3759963697299218e-21,-3.0700622642385225e-21,-0.0,9.920635056914762e-05,-1.0844944180616382e-22,-3.9014937389763113e-22,-0.0,-1.6940658945086007e-21,-1.6940658945086007e-21,1.2300540225510606e-21,2.536092381510483e-37,1.6460489283279819e-21,0.0006802721181884408,-0.0003401360590942204,-2.93581198173216e-20,-0.0002721088530961424,5.96090219705615e-21,-0.0,-1.0844944180616382e-22,0.0001360544265480712,-1.2128400678571794e-22,-2.1689888361232764e-22,1.214620056128075e-20,2.477434207371161e-22,-0.0,-3.3881317890172014e-21,3.70165545549789e-22,0.0006802721181884408,-0.0003401360590942204,-2.0328790734103208e-20,2.142262561869235e-20,-0.0002721088530961424,-0.0,-3.9014937389763113e-22,-1.2128400678571794e-22,0.0001360544265480712,-7.802987477952623e-22,3.080172406574031e-22,1.0164395367051604e-20,-2.842593755212388e-22,-8.224611594175005e-21,-1.8301581079063143e-21,0.0003306878206785768,2.4929941290060727e-21,-0.00039682540227659047,-0.0,3.536835679478864e-21,-0.0,-0.0,-2.1689888361232764e-22,-7.802987477952623e-22,6.613756704609841e-05,-0.0,0.0,-2.195838379675634e-21,-3.76158192263132e-37,2.1102797123421644e-21,0.0005102040595375001,-2.6053347477651855e-20,-0.0001700680295471102,-0.0002040816325461492,-6.739722228240019e-21,-0.0,-1.6940658945086007e-21,1.214620056128075e-20,3.080172406574031e-22,-0.0,6.80272132740356e-05,2.147086220374898e-21,3.018526811813195e-20,-1.6940658945086007e-21,7.219153667700214e-22,0.0005102040595375001,-2.0948148680100823e-20,-0.0001700680295471102,3.3881317890172014e-21,-0.0002040816325461492,-0.0,-1.6940658945086007e-21,2.477434207371161e-22,1.0164395367051604e-20,0.0,2.147086220374898e-21,6.80272132740356e-05,5.806486297308414e-22,-5.390345483818463e-21,1.6582699766177952e-20,0.00042517005931586027,-2.979513452145242e-21,-6.510194471658186e-20,-0.0006377550889737904,7.995991022080595e-19,-0.0,1.2300540225510606e-21,-0.0,-2.842593755212388e-22,-2.195838379675634e-21,3.018526811813195e-20,5.806486297308414e-22,0.00012755101488437504,-9.26824727845726e-20,-1.1234070438523087e-19,0.000583090353757143,2.9031858457980516e-20,1.7711029051662834e-20,-0.0002332361473236233,-0.0002332361473236233,-0.0,2.536092381510483e-37,-3.3881317890172014e-21,-8.224611594175005e-21,-3.76158192263132e-37,-1.6940658945086007e-21,-5.390345483818463e-21,-9.26824727845726e-20,9.329446038464084e-05,-6.46993016287246e-20,0.00042517005931586027,-1.288165581041024e-21,-6.027045384449351e-20,7.210046397039102e-19,-0.0006377550889737904,-0.0,1.6460489283279819e-21,3.70165545549789e-22,-1.8301581079063143e-21,2.1102797123421644e-21,7.219153667700214e-22,1.6582699766177952e-20,-1.1234070438523087e-19,-6.46993016287246e-20,0.00012755101488437504,5.0,7.0,6.0,7.0,0.030622368678450584,-0.0071428571827709675,-0.005472545977681875,-0.006195335183292627,-0.005472545977681875,0.00048590864753350616,0.0005102040595375001,0.000583090353757143,0.0005102040595375001,0.00028344671591185033,0.0004373177944216877,0.00038265305920504034,0.00036443150020204484,0.0004373177944216877,0.00028344671591185033,-0.0071428571827709675,0.0064868805930018425,0.0005102040595375001,0.000583090353757143,0.0005102040595375001,-0.0009718172950670123,-0.00025510202976875007,-0.0002915451768785715,-0.00025510202976875007,6.636424042591368e-19,9.207620367929894e-19,9.415279924808268e-19,7.68208476841073e-19,9.095954087162532e-19,6.477140592874508e-19,-0.005472545977681875,0.0005102040595375001,0.0032981049735099077,0.0004373177944216877,0.00038265305920504034,1.5971341819926461e-18,-0.0001700680295471102,4.778552605354657e-19,5.55653613398821e-19,-0.0003401360590942204,-0.00014577258843928576,-0.00012755101488437504,1.2598975059408755e-18,5.660028836327782e-19,9.231500038238534e-19,-0.006195335183292627,0.000583090353757143,0.0004373177944216877,0.004482507240027189,0.0004373177944216877,1.7378636603772115e-18,5.318691205594127e-19,-0.0002332361473236233,5.352161001129554e-19,1.1248597539537109e-18,-0.0001749271177686751,1.9989977555201488e-19,-0.000546647235751152,-0.0001749271177686751,7.797459403261743e-19,-0.005472545977681875,0.0005102040595375001,0.00038265305920504034,0.0004373177944216877,0.0032981049735099077,1.5971341819926461e-18,5.039751427380526e-19,4.897186848807012e-19,-0.0001700680295471102,1.0817613692930136e-18,5.72826813493611e-19,-0.00012755101488437504,5.963111948670274e-19,-0.00014577258843928576,-0.0003401360590942204,0.00048590864753350616,-0.0009718172950670123,1.5971341819926461e-18,1.7378636603772115e-18,1.5971341819926461e-18,0.00024295432376675308,-9.244335296405943e-20,-7.129142704758646e-20,-9.244335296405943e-20,-8.991115923857854e-20,-1.3872007573091513e-19,-1.21380069495725e-19,-1.156000674173283e-19,-1.3872007573091513e-19,-8.991115923857854e-20,0.0005102040595375001,-0.00025510202976875007,-0.0001700680295471102,5.318691205594127e-19,5.039751427380526e-19,-9.244335296405943e-20,8.50340147735551e-05,-4.304335776291688e-20,-4.582232272957706e-20,-4.404571325722362e-20,-4.573977915173222e-20,-4.573977915173222e-20,-3.0168831134631724e-20,-3.641401891001294e-20,-2.3599067057290076e-20,0.000583090353757143,-0.0002915451768785715,4.778552605354657e-19,-0.0002332361473236233,4.897186848807012e-19,-7.129142704758646e-20,-4.304335776291688e-20,0.00011661807366181165,-5.188149503353615e-20,-2.708004017654355e-20,-2.889422982121847e-20,-3.61491175500171e-20,-3.3881317890172014e-20,-2.879912020664621e-20,-2.6222334660682756e-20,0.0005102040595375001,-0.00025510202976875007,5.55653613398821e-19,5.352161001129554e-19,-0.0001700680295471102,-9.244335296405943e-20,-4.582232272957706e-20,-5.188149503353615e-20,8.50340147735551e-05,-2.4230540291204752e-20,-3.5958265010716097e-20,-6.197753490895275e-20,-3.0046133754161114e-20,-4.164105398009222e-20,-4.008248737850319e-20,0.00028344671591185033,6.636424042591368e-19,-0.0003401360590942204,1.1248597539537109e-18,1.0817613692930136e-18,-8.991115923857854e-20,-4.404571325722362e-20,-2.708004017654355e-20,-2.4230540291204752e-20,5.668934318237007e-05,-5.082197683525802e-20,-6.776263578034403e-20,-1.473528169468541e-19,-6.473603361780078e-20,-1.1062125438567455e-19,0.0004373177944216877,9.207620367929894e-19,-0.00014577258843928576,-0.0001749271177686751,5.72826813493611e-19,-1.3872007573091513e-19,-4.573977915173222e-20,-2.889422982121847e-20,-3.5958265010716097e-20,-5.082197683525802e-20,5.8309036830905825e-05,-3.2736645325240674e-20,-1.271223185339769e-19,-2.879912020664621e-20,-5.51930512235811e-20,0.00038265305920504034,9.415279924808268e-19,-0.00012755101488437504,1.9989977555201488e-19,-0.00012755101488437504,-1.21380069495725e-19,-4.573977915173222e-20,-3.61491175500171e-20,-6.197753490895275e-20,-6.776263578034403e-20,-3.2736645325240674e-20,4.251700738677755e-05,6.208649858709493e-22,-1.0920277696005249e-20,-2.4492393038278936e-20,0.00036443150020204484,7.68208476841073e-19,1.2598975059408755e-18,-0.000546647235751152,5.963111948670274e-19,-1.156000674173283e-19,-3.0168831134631724e-20,-3.3881317890172014e-20,-3.0046133754161114e-20,-1.473528169468541e-19,-1.271223185339769e-19,6.208649858709493e-22,0.00010932944860542193,-5.478034625905397e-20,-6.744332467685295e-20,0.0004373177944216877,9.095954087162532e-19,5.660028836327782e-19,-0.0001749271177686751,-0.00014577258843928576,-1.3872007573091513e-19,-3.641401891001294e-20,-2.879912020664621e-20,-4.164105398009222e-20,-6.473603361780078e-20,-2.879912020664621e-20,-1.0920277696005249e-20,-5.478034625905397e-20,5.8309036830905825e-05,-7.521736194408237e-20,0.00028344671591185033,6.477140592874508e-19,9.231500038238534e-19,7.797459403261743e-19,-0.0003401360590942204,-8.991115923857854e-20,-2.3599067057290076e-20,-2.6222334660682756e-20,-4.008248737850319e-20,-1.1062125438567455e-19,-5.51930512235811e-20,-2.4492393038278936e-20,-6.744332467685295e-20,-7.521736194408237e-20,5.668934318237007e-05,5.0,7.0,6.0,8.0,0.027310090139508247,-0.0062996032647788525,-0.004825680050998926,-0.005463435314595699,-0.004322562366724014,0.00042517005931586027,0.00044642857392318547,0.0005102040595375001,0.00039682540227659047,0.00024801588733680546,0.00038265305920504034,0.00029761905898340046,0.0003188775444868952,0.0003401360590942204,0.00019841270113829523,-0.0062996032647788525,0.005700821988284588,0.00044642857392318547,0.0005102040595375001,0.00039682540227659047,-0.0008503401186317205,-0.00022321428696159273,-0.00025510202976875007,-0.00019841270113829523,3.045727870775177e-19,6.080352909778361e-19,2.9655551993610646e-19,7.877060544571369e-19,4.4744081168886825e-19,3.2152484560542043e-20,-0.004825680050998926,0.00044642857392318547,0.0028982425574213266,0.00038265305920504034,0.00029761905898340046,1.3140516764762268e-18,-0.00014880952949170023,-7.649641581563663e-20,-6.776263578034403e-21,-0.00029761905898340046,-0.00012755101488437504,-9.920635056914762e-05,7.136933065918276e-20,-2.777657762798406e-19,-2.250238615440587e-19,-0.005463435314595699,0.0005102040595375001,0.00038265305920504034,0.003939200658351183,0.0003401360590942204,1.988195810695972e-18,1.458705868373415e-19,-0.0002040816325461492,-7.864736975161007e-20,7.453889935837843e-20,-0.0001530612207716331,-3.695037509765454e-19,-0.00047831633128225803,-0.0001360544265480712,-1.5542266175595072e-19,-0.004322562366724014,0.00039682540227659047,0.00029761905898340046,0.0003401360590942204,0.0022270812187343836,8.9649989884862e-19,-1.2190401086559492e-19,-4.0493931538831042e-19,-0.00011337868636474013,-2.9428532274495467e-19,-3.36307286934779e-19,-8.50340147735551e-05,-5.248710691796375e-19,-9.718172805150971e-05,-0.00019841270113829523,0.00042517005931586027,-0.0008503401186317205,1.3140516764762268e-18,1.988195810695972e-18,8.9649989884862e-19,0.00021258502965793014,-2.6523791910757184e-20,-3.63754871568696e-20,-2.0208603976038667e-20,-7.867226918051762e-20,-1.4565607564005176e-19,-8.092004848459951e-20,-1.7701260565616466e-19,-1.1405873266810937e-19,-3.1468907025972196e-20,0.00044642857392318547,-0.00022321428696159273,-0.00014880952949170023,1.458705868373415e-19,-1.2190401086559492e-19,-2.6523791910757184e-20,7.440476474585012e-05,1.5590595172235763e-20,1.4948347587725157e-20,3.3881317890172014e-21,-8.470329472543003e-21,5.929230630780102e-21,-2.6551890202189845e-20,-2.1578678411129306e-21,1.0515094905173512e-20,0.0005102040595375001,-0.00025510202976875007,-7.649641581563663e-20,-0.0002040816325461492,-4.0493931538831042e-19,-3.63754871568696e-20,1.5590595172235763e-20,0.0001020408162730746,5.0185842632462064e-20,5.717604522399606e-35,7.447932206810014e-35,1.2947207046677583e-20,1.0464148544030528e-34,1.4796808745740296e-20,3.021015139116816e-20,0.00039682540227659047,-0.00019841270113829523,-6.776263578034403e-21,-7.864736975161007e-20,-0.00011337868636474013,-2.0208603976038667e-20,1.4948347587725157e-20,5.0185842632462064e-20,5.668934318237007e-05,-1.3750997314923858e-23,-3.009265538105056e-36,-6.580300128835329e-21,-1.3541694921472752e-35,-6.2069464240251946e-21,-3.813577273682219e-21,0.00024801588733680546,3.045727870775177e-19,-0.00029761905898340046,7.453889935837843e-20,-2.9428532274495467e-19,-7.867226918051762e-20,3.3881317890172014e-21,5.717604522399606e-35,-1.3750997314923858e-23,4.960317528457381e-05,-3.3881317890172014e-21,2.710505431213761e-20,-2.950210094269411e-20,1.3666497134842127e-20,2.3349159961483894e-20,0.00038265305920504034,6.080352909778361e-19,-0.00012755101488437504,-0.0001530612207716331,-3.36307286934779e-19,-1.4565607564005176e-19,-8.470329472543003e-21,7.447932206810014e-35,-3.009265538105056e-36,-3.3881317890172014e-21,5.10204081365373e-05,9.96527344500577e-21,-9.6663882096485e-21,3.8839318928366953e-20,2.2657612735582555e-20,0.00029761905898340046,2.9655551993610646e-19,-9.920635056914762e-05,-3.695037509765454e-19,-8.50340147735551e-05,-8.092004848459951e-20,5.929230630780102e-21,1.2947207046677583e-20,-6.580300128835329e-21,2.710505431213761e-20,9.96527344500577e-21,2.8344671591185033e-05,4.214585710477404e-20,1.8634724839594607e-20,-4.409715597494746e-21,0.0003188775444868952,7.877060544571369e-19,7.136933065918276e-20,-0.00047831633128225803,-5.248710691796375e-19,-1.7701260565616466e-19,-2.6551890202189845e-20,1.0464148544030528e-34,-1.3541694921472752e-35,-2.950210094269411e-20,-9.6663882096485e-21,4.214585710477404e-20,9.566326480126008e-05,3.327300086664742e-20,3.540251919252837e-20,0.0003401360590942204,4.4744081168886825e-19,-2.777657762798406e-19,-0.0001360544265480712,-9.718172805150971e-05,-1.1405873266810937e-19,-2.1578678411129306e-21,1.4796808745740296e-20,-6.2069464240251946e-21,1.3666497134842127e-20,3.8839318928366953e-20,1.8634724839594607e-20,3.327300086664742e-20,3.887269122060388e-05,-5.148377948643726e-20,0.00019841270113829523,3.2152484560542043e-20,-2.250238615440587e-19,-1.5542266175595072e-19,-0.00019841270113829523,-3.1468907025972196e-20,1.0515094905173512e-20,3.021015139116816e-20,-3.813577273682219e-21,2.3349159961483894e-20,2.2657612735582555e-20,-4.409715597494746e-21,3.540251919252837e-20,-5.148377948643726e-20,2.8344671591185033e-05,5.0,7.0,7.0,3.0,0.05293569713830948,-0.013411078602075577,-0.010289115831255913,-0.010289115831255913,-0.019387755542993546,0.0009718172950670123,0.0010204081190750003,0.0010204081190750003,0.0020408162381500006,0.0005668934318237007,0.0007653061184100807,0.0015306122368201613,0.0005668934318237007,0.0015306122368201613,0.0020408162381500006,-0.013411078602075577,0.012536442838609219,0.0010204081190750003,0.0010204081190750003,0.0020408162381500006,-0.0019436345901340246,-0.0005102040595375001,-0.0005102040595375001,-0.0010204081190750003,1.279904420019119e-18,1.8372134286188117e-18,8.707274325033052e-19,1.2799570493855927e-18,8.915102419961235e-19,-1.399546913920115e-17,-0.010289115831255913,0.0010204081190750003,0.0063775512389838696,0.0007653061184100807,0.0015306122368201613,2.622047977278259e-18,-0.0003401360590942204,9.233473897975238e-19,1.4767330807518776e-18,-0.0006802721181884408,-0.00025510202976875007,-0.0005102040595375001,1.3741158456931164e-18,-2.710505431213761e-19,-4.867091846773225e-18,-0.010289115831255913,0.0010204081190750003,0.0007653061184100807,0.0063775512389838696,0.0015306122368201613,2.622047977278259e-18,8.187322550655056e-19,-0.0003401360590942204,1.4767330807518776e-18,1.8566962203814263e-18,-0.00025510202976875007,-1.683599371422814e-18,-0.0006802721181884408,-0.0005102040595375001,-4.867091846773225e-18,-0.019387755542993546,0.0020408162381500006,0.0015306122368201613,0.0015306122368201613,0.03979591652750969,-3.572262193371505e-18,-1.6353747417109726e-18,-1.6154999697355844e-18,-0.0020408162381500006,1.976405514286765e-19,-1.9813103592770805e-18,-0.0015306122368201613,-4.607859233063394e-19,-0.0015306122368201613,-0.01224489789456129,0.0009718172950670123,-0.0019436345901340246,2.622047977278259e-18,2.622047977278259e-18,-3.572262193371505e-18,0.00048590864753350616,-1.8488670592811885e-19,-1.8488670592811885e-19,-3.4569923131902535e-20,-1.7982231847715708e-19,-2.4276013899145e-19,-1.21380069495725e-19,-1.7982231847715708e-19,-1.21380069495725e-19,2.2657612283218157e-18,0.0010204081190750003,-0.0005102040595375001,-0.0003401360590942204,8.187322550655056e-19,-1.6353747417109726e-18,-1.8488670592811885e-19,0.0001700680295471102,-9.058016740837494e-20,-5.1557627974327495e-20,-8.809142651444724e-20,-9.147955830346444e-20,1.3552527156068805e-20,-4.6349650370079616e-20,-4.961696289866936e-22,8.49660486470075e-19,0.0010204081190750003,-0.0005102040595375001,9.233473897975238e-19,-0.0003401360590942204,-1.6154999697355844e-18,-1.8488670592811885e-19,-9.058016740837494e-20,0.0001700680295471102,-5.1557627974327495e-20,-4.633212124967688e-20,-1.264397006581646e-19,-3.4483212954839383e-22,-8.809142651444724e-20,6.776263578034403e-21,8.49660486470075e-19,0.0020408162381500006,-0.0010204081190750003,1.4767330807518776e-18,1.4767330807518776e-18,-0.0020408162381500006,-3.4569923131902535e-20,-5.1557627974327495e-20,-5.1557627974327495e-20,0.0010204081190750003,-9.440671784674232e-20,-1.2744906780063243e-19,-2.5489813560126485e-19,-9.440671784674232e-20,-2.5489813560126485e-19,6.10368366820239e-20,0.0005668934318237007,1.279904420019119e-18,-0.0006802721181884408,1.8566962203814263e-18,1.976405514286765e-19,-1.7982231847715708e-19,-8.809142651444724e-20,-4.633212124967688e-20,-9.440671784674232e-20,0.00011337868636474013,-1.3552527156068805e-19,-2.710505431213761e-20,-2.19884821042814e-19,-4.34753625313455e-20,-3.7762688431166636e-20,0.0007653061184100807,1.8372134286188117e-18,-0.00025510202976875007,-0.00025510202976875007,-1.9813103592770805e-18,-2.4276013899145e-19,-9.147955830346444e-20,-1.264397006581646e-19,-1.2744906780063243e-19,-1.3552527156068805e-19,8.50340147735551e-05,1.0503208545953324e-19,-4.822028378245134e-20,8.809142651444724e-20,7.646944068037946e-19,0.0015306122368201613,8.707274325033052e-19,-0.0005102040595375001,-1.683599371422814e-18,-0.0015306122368201613,-1.21380069495725e-19,1.3552527156068805e-20,-3.4483212954839383e-22,-2.5489813560126485e-19,-2.710505431213761e-20,1.0503208545953324e-19,0.0005102040595375001,1.8340344184284056e-19,2.691169567407451e-19,1.1002636418370231e-18,0.0005668934318237007,1.2799570493855927e-18,1.3741158456931164e-18,-0.0006802721181884408,-4.607859233063394e-19,-1.7982231847715708e-19,-4.6349650370079616e-20,-8.809142651444724e-20,-9.440671784674232e-20,-2.19884821042814e-19,-4.822028378245134e-20,1.8340344184284056e-19,0.00011337868636474013,-2.85815781678933e-20,-3.7762688431166636e-20,0.0015306122368201613,8.915102419961235e-19,-2.710505431213761e-19,-0.0005102040595375001,-0.0015306122368201613,-1.21380069495725e-19,-4.961696289866936e-22,6.776263578034403e-21,-2.5489813560126485e-19,-4.34753625313455e-20,8.809142651444724e-20,2.691169567407451e-19,-2.85815781678933e-20,0.0005102040595375001,1.1002636418370231e-18,0.0020408162381500006,-1.399546913920115e-17,-4.867091846773225e-18,-4.867091846773225e-18,-0.01224489789456129,2.2657612283218157e-18,8.49660486470075e-19,8.49660486470075e-19,6.10368366820239e-20,-3.7762688431166636e-20,7.646944068037946e-19,1.1002636418370231e-18,-3.7762688431166636e-20,1.1002636418370231e-18,0.006122448947280645,5.0,7.0,7.0,4.0,0.04250789433717728,-0.010364431887865067,-0.007946428842842579,-0.007946428842842579,-0.01224489789456129,0.0007288630004040897,0.0007653061184100807,0.0007653061184100807,0.0012244897661730647,0.00042517005931586027,0.0005739795742556453,0.000918367353733629,0.00042517005931586027,0.000918367353733629,0.0010204081190750003,-0.010364431887865067,0.00955539382994175,0.0007653061184100807,0.0007653061184100807,0.0012244897661730647,-0.0014577260008081794,-0.00038265305920504034,-0.00038265305920504034,-0.0006122448830865324,5.74658656658898e-19,7.70558290166183e-19,1.1845025780460812e-18,5.355941733516804e-19,1.1756768711028701e-18,1.2947207757535922e-18,-0.007946428842842579,0.0007653061184100807,0.004859693814069033,0.0005739795742556453,0.000918367353733629,2.182446563049709e-18,-0.00025510202976875007,-2.0579255207470583e-20,-5.345347100833648e-20,-0.0005102040595375001,-0.00019132652960252017,-0.0003061224415432662,3.7351847207957153e-19,-2.642742795433417e-19,1.799790743731147e-18,-0.007946428842842579,0.0007653061184100807,0.0005739795742556453,0.004859693814069033,0.000918367353733629,2.182446563049709e-18,-2.824290263701539e-20,-0.00025510202976875007,-5.345347100833648e-20,-2.0328790734103208e-19,-0.00019132652960252017,4.633912320431517e-19,-0.0005102040595375001,-0.0003061224415432662,1.799790743731147e-18,-0.01224489789456129,0.0012244897661730647,0.000918367353733629,0.000918367353733629,0.015306122601032257,3.343021701106775e-18,-3.2860841970571536e-20,-4.436391929911511e-20,-0.0008163265301845968,-2.7836561147091224e-19,4.539709373358798e-19,-0.0006122448830865324,1.0842021724855044e-19,-0.0006122448830865324,-0.0030612244736403227,0.0007288630004040897,-0.0014577260008081794,2.182446563049709e-18,2.182446563049709e-18,3.343021701106775e-18,0.00036443150020204484,-7.365375794180987e-20,-7.365375794180987e-20,-1.1784600495207755e-19,-1.3486674532021635e-19,-1.820701042435875e-19,-2.9131215128010353e-19,-1.3486674532021635e-19,-2.9131215128010353e-19,-3.2368019393839806e-19,0.0007653061184100807,-0.00038265305920504034,-0.00025510202976875007,-2.824290263701539e-20,-3.2860841970571536e-20,-7.365375794180987e-20,0.00012755101488437504,1.7615189191706055e-20,2.672673550416824e-20,-1.3552527156068805e-20,-5.082197683525802e-21,-6.776263578034403e-21,1.290928537962568e-21,-8.794545751008066e-23,1.2638915260041235e-34,0.0007653061184100807,-0.00038265305920504034,-2.0579255207470583e-20,-0.00025510202976875007,-4.436391929911511e-20,-7.365375794180987e-20,1.7615189191706055e-20,0.00012755101488437504,2.672673550416824e-20,1.8219596090469844e-21,-9.010427521545413e-21,3.5828100891383615e-22,-5.770914238708025e-36,-3.3881317890172014e-21,8.726870060504662e-35,0.0012244897661730647,-0.0006122448830865324,-5.345347100833648e-20,-5.345347100833648e-20,-0.0008163265301845968,-1.1784600495207755e-19,2.672673550416824e-20,2.672673550416824e-20,0.0004081632650922984,4.2129717533470784e-35,5.679988703173293e-35,9.328723168125674e-35,4.513898307157584e-35,9.4039548065783e-35,1.0466827844630937e-34,0.00042517005931586027,5.74658656658898e-19,-0.0005102040595375001,-2.0328790734103208e-19,-2.7836561147091224e-19,-1.3486674532021635e-19,-1.3552527156068805e-20,1.8219596090469844e-21,4.2129717533470784e-35,8.50340147735551e-05,6.776263578034403e-21,1.3552527156068805e-20,1.5993913575514987e-20,4.513933326872395e-20,1.8881344215583318e-20,0.0005739795742556453,7.70558290166183e-19,-0.00019132652960252017,-0.00019132652960252017,4.539709373358798e-19,-1.820701042435875e-19,-5.082197683525802e-21,-9.010427521545413e-21,5.679988703173293e-35,6.776263578034403e-21,6.377550744218752e-05,2.710505431213761e-20,-1.2869984243499503e-19,-0.0,-2.1241512161751876e-19,0.000918367353733629,1.1845025780460812e-18,-0.0003061224415432662,4.633912320431517e-19,-0.0006122448830865324,-2.9131215128010353e-19,-6.776263578034403e-21,3.5828100891383615e-22,9.328723168125674e-35,1.3552527156068805e-20,2.710505431213761e-20,0.0002040816325461492,-8.991388634966055e-20,-7.217143089706924e-20,-9.260810149268585e-19,0.00042517005931586027,5.355941733516804e-19,3.7351847207957153e-19,-0.0005102040595375001,1.0842021724855044e-19,-1.3486674532021635e-19,1.290928537962568e-21,-5.770914238708025e-36,4.513898307157584e-35,1.5993913575514987e-20,-1.2869984243499503e-19,-8.991388634966055e-20,8.50340147735551e-05,1.6818749971136737e-20,1.8881344215583318e-20,0.000918367353733629,1.1756768711028701e-18,-2.642742795433417e-19,-0.0003061224415432662,-0.0006122448830865324,-2.9131215128010353e-19,-8.794545751008066e-23,-3.3881317890172014e-21,9.4039548065783e-35,4.513933326872395e-20,-0.0,-7.217143089706924e-20,1.6818749971136737e-20,0.0002040816325461492,-9.260810149268585e-19,0.0010204081190750003,1.2947207757535922e-18,1.799790743731147e-18,1.799790743731147e-18,-0.0030612244736403227,-3.2368019393839806e-19,1.2638915260041235e-34,8.726870060504662e-35,1.0466827844630937e-34,1.8881344215583318e-20,-2.1241512161751876e-19,-9.260810149268585e-19,1.8881344215583318e-20,-9.260810149268585e-19,0.0010204081190750003,5.0,7.0,7.0,5.0,0.03558066114783287,-0.008454810827970505,-0.006479592062532902,-0.006479592062532902,-0.008454810827970505,0.000583090353757143,0.0006122448830865324,0.0006122448830865324,0.0008163265301845968,0.0003401360590942204,0.0004591836768668145,0.0006122448830865324,0.0003401360590942204,0.0006122448830865324,0.000583090353757143,-0.008454810827970505,0.0077259475365281105,0.0006122448830865324,0.0006122448830865324,0.0008163265301845968,-0.001166180707514286,-0.0003061224415432662,-0.0003061224415432662,-0.0004081632650922984,-3.5264830524668625e-38,-5.759824202887956e-21,-7.052966104933725e-38,-2.12035277695295e-20,5.082197683525802e-21,-0.0,-0.006479592062532902,0.0006122448830865324,0.0039285714738070965,0.0004591836768668145,0.0006122448830865324,-0.0,-0.0002040816325461492,-6.776263679008599e-22,-0.0,-0.0004081632650922984,-0.0001530612207716331,-0.0002040816325461492,-1.3552527358017197e-21,5.082197683525802e-21,-0.0,-0.006479592062532902,0.0006122448830865324,0.0004591836768668145,0.0039285714738070965,0.0006122448830865324,-0.0,-6.977462337340856e-21,-0.0002040816325461492,-0.0,-0.0,-0.0001530612207716331,-2.7559054895497398e-21,-0.0004081632650922984,-0.0002040816325461492,-0.0,-0.008454810827970505,0.0008163265301845968,0.0006122448830865324,0.0006122448830865324,0.0077259475365281105,-0.0,1.3165536505001866e-37,5.082197683525802e-21,-0.0004081632650922984,-1.0736732659259233e-21,2.3262921939760623e-21,-0.0003061224415432662,1.3552527156068805e-20,-0.0003061224415432662,-0.001166180707514286,0.000583090353757143,-0.001166180707514286,-0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0006122448830865324,-0.0003061224415432662,-0.0002040816325461492,-6.977462337340856e-21,1.3165536505001866e-37,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,1.6940658945086007e-21,-0.0,2.9157919692812282e-22,-4.388512261753853e-38,-0.0,0.0006122448830865324,-0.0003061224415432662,-6.776263679008599e-22,-0.0002040816325461492,5.082197683525802e-21,-0.0,-0.0,0.0001020408162730746,-0.0,1.1754943508222875e-38,2.258754643814696e-22,2.350988701644575e-38,6.776263578034403e-21,-1.6940658945086007e-21,-0.0,0.0008163265301845968,-0.0004081632650922984,-0.0,-0.0,-0.0004081632650922984,-0.0,-0.0,-0.0,0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003401360590942204,-3.5264830524668625e-38,-0.0004081632650922984,-0.0,-1.0736732659259233e-21,-0.0,-0.0,1.1754943508222875e-38,-0.0,6.80272132740356e-05,3.3881317890172014e-21,0.0,-8.971667743424254e-23,-8.680573710727614e-38,-0.0,0.0004591836768668145,-5.759824202887956e-21,-0.0001530612207716331,-0.0001530612207716331,2.3262921939760623e-21,-0.0,1.6940658945086007e-21,2.258754643814696e-22,-0.0,3.3881317890172014e-21,5.10204081365373e-05,9.186351631832466e-22,4.517509287629392e-22,-1.6940658945086007e-21,-0.0,0.0006122448830865324,-7.052966104933725e-38,-0.0002040816325461492,-2.7559054895497398e-21,-0.0003061224415432662,-0.0,-0.0,2.350988701644575e-38,-0.0,0.0,9.186351631832466e-22,0.0001020408162730746,9.4039548065783e-38,-2.350988701644575e-38,-0.0,0.0003401360590942204,-2.12035277695295e-20,-1.3552527358017197e-21,-0.0004081632650922984,1.3552527156068805e-20,-0.0,2.9157919692812282e-22,6.776263578034403e-21,-0.0,-8.971667743424254e-23,4.517509287629392e-22,9.4039548065783e-38,6.80272132740356e-05,-5.473135842598007e-21,-0.0,0.0006122448830865324,5.082197683525802e-21,5.082197683525802e-21,-0.0002040816325461492,-0.0003061224415432662,-0.0,-4.388512261753853e-38,-1.6940658945086007e-21,-0.0,-8.680573710727614e-38,-1.6940658945086007e-21,-2.350988701644575e-38,-5.473135842598007e-21,0.0001020408162730746,-0.0,0.000583090353757143,-0.0,-0.0,-0.0,-0.001166180707514286,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002915451768785715,5.0,7.0,7.0,6.0,0.030622368678450584,-0.0071428571827709675,-0.005472545977681875,-0.005472545977681875,-0.006195335183292627,0.00048590864753350616,0.0005102040595375001,0.0005102040595375001,0.000583090353757143,0.00028344671591185033,0.00038265305920504034,0.0004373177944216877,0.00028344671591185033,0.0004373177944216877,0.00036443150020204484,-0.0071428571827709675,0.0064868805930018425,0.0005102040595375001,0.0005102040595375001,0.000583090353757143,-0.0009718172950670123,-0.00025510202976875007,-0.00025510202976875007,-0.0002915451768785715,6.593677933474042e-19,9.384952381624777e-19,9.248761229670984e-19,6.706126416908149e-19,9.19692802453688e-19,7.585704785363348e-19,-0.005472545977681875,0.0005102040595375001,0.0032981049735099077,0.00038265305920504034,0.0004373177944216877,1.5971341819926461e-18,-0.0001700680295471102,5.45469882684951e-19,4.777265822514254e-19,-0.0003401360590942204,-0.00012755101488437504,-0.00014577258843928576,9.015707227987231e-19,5.655247732387226e-19,1.263717529407222e-18,-0.005472545977681875,0.0005102040595375001,0.00038265305920504034,0.0032981049735099077,0.0004373177944216877,1.5971341819926461e-18,4.992317789129439e-19,-0.0001700680295471102,4.76929128442136e-19,1.0706496453294356e-18,-0.00012755101488437504,4.87890977618477e-19,-0.0003401360590942204,-0.00014577258843928576,1.2532306369988512e-18,-0.006195335183292627,0.000583090353757143,0.0004373177944216877,0.0004373177944216877,0.004482507240027189,1.7378636603772115e-18,5.334502246015195e-19,5.342024419710599e-19,-0.0002332361473236233,1.1318001094857605e-18,8.194565550893724e-20,-0.0001749271177686751,1.111307226797642e-18,-0.0001749271177686751,-0.000546647235751152,0.00048590864753350616,-0.0009718172950670123,1.5971341819926461e-18,1.5971341819926461e-18,1.7378636603772115e-18,0.00024295432376675308,-9.244335296405943e-20,-9.244335296405943e-20,-7.129142704758646e-20,-8.991115923857854e-20,-1.21380069495725e-19,-1.3872007573091513e-19,-8.991115923857854e-20,-1.3872007573091513e-19,-1.156000674173283e-19,0.0005102040595375001,-0.00025510202976875007,-0.0001700680295471102,4.992317789129439e-19,5.334502246015195e-19,-9.244335296405943e-20,8.50340147735551e-05,-4.525012377201777e-20,-4.2875074975876355e-20,-4.404571325722362e-20,-4.573977915173222e-20,-4.573977915173222e-20,-2.304537626593666e-20,-3.641401891001294e-20,-3.0522214970776595e-20,0.0005102040595375001,-0.00025510202976875007,5.45469882684951e-19,-0.0001700680295471102,5.342024419710599e-19,-9.244335296405943e-20,-4.525012377201777e-20,8.50340147735551e-05,-4.31156229754159e-20,-2.3086143991673307e-20,-6.084816195417938e-20,-3.6673210785077603e-20,-4.743384504624082e-20,-4.573977915173222e-20,-3.042888250205162e-20,0.000583090353757143,-0.0002915451768785715,4.777265822514254e-19,4.76929128442136e-19,-0.0002332361473236233,-7.129142704758646e-20,-4.2875074975876355e-20,-4.31156229754159e-20,0.00011661807366181165,-2.6743471371288235e-20,-3.6291240750185636e-20,-2.9681919021870627e-20,-2.722456898595445e-20,-2.791964626974335e-20,-2.9142755590025174e-20,0.00028344671591185033,6.593677933474042e-19,-0.0003401360590942204,1.0706496453294356e-18,1.1318001094857605e-18,-8.991115923857854e-20,-4.404571325722362e-20,-2.3086143991673307e-20,-2.6743471371288235e-20,5.668934318237007e-05,-7.115076756936123e-20,-4.743384504624082e-20,-1.079642727099718e-19,-6.473603361780078e-20,-1.4948505592146851e-19,0.00038265305920504034,9.384952381624777e-19,-0.00012755101488437504,-0.00012755101488437504,8.194565550893724e-20,-1.21380069495725e-19,-4.573977915173222e-20,-6.084816195417938e-20,-3.6291240750185636e-20,-7.115076756936123e-20,4.251700738677755e-05,3.13467322879394e-21,-2.223363743520938e-20,-6.776263578034403e-21,2.877641898598271e-22,0.0004373177944216877,9.248761229670984e-19,-0.00014577258843928576,4.87890977618477e-19,-0.0001749271177686751,-1.3872007573091513e-19,-4.573977915173222e-20,-3.6673210785077603e-20,-2.9681919021870627e-20,-4.743384504624082e-20,3.13467322879394e-21,5.8309036830905825e-05,-5.662294923465265e-20,-3.358067974277447e-20,-1.224241136004347e-19,0.00028344671591185033,6.706126416908149e-19,9.015707227987231e-19,-0.0003401360590942204,1.111307226797642e-18,-8.991115923857854e-20,-2.304537626593666e-20,-4.743384504624082e-20,-2.722456898595445e-20,-1.079642727099718e-19,-2.223363743520938e-20,-5.662294923465265e-20,5.668934318237007e-05,-4.378508674078406e-20,-1.4957817836386609e-19,0.0004373177944216877,9.19692802453688e-19,5.655247732387226e-19,-0.00014577258843928576,-0.0001749271177686751,-1.3872007573091513e-19,-3.641401891001294e-20,-4.573977915173222e-20,-2.791964626974335e-20,-6.473603361780078e-20,-6.776263578034403e-21,-3.358067974277447e-20,-4.378508674078406e-20,5.8309036830905825e-05,-1.1806187324255975e-19,0.00036443150020204484,7.585704785363348e-19,1.263717529407222e-18,1.2532306369988512e-18,-0.000546647235751152,-1.156000674173283e-19,-3.0522214970776595e-20,-3.042888250205162e-20,-2.9142755590025174e-20,-1.4948505592146851e-19,2.877641898598271e-22,-1.224241136004347e-19,-1.4957817836386609e-19,-1.1806187324255975e-19,0.00010932944860542193,5.0,7.0,7.0,7.0,0.02688983827829361,-0.006184922996908426,-0.0047376095317304134,-0.0047376095317304134,-0.0047376095317304134,0.00041649313061498106,0.0004373177944216877,0.0004373177944216877,0.0004373177944216877,0.00024295432376675308,0.00032798832398839295,0.00032798832398839295,0.00024295432376675308,0.00032798832398839295,0.00024295432376675308,-0.006184922996908426,0.005591420456767082,0.0004373177944216877,0.0004373177944216877,0.0004373177944216877,-0.0008329862612299621,-0.00021865889721084386,-0.00021865889721084386,-0.00021865889721084386,-1.1568608571920136e-21,5.1165341607792056e-21,1.473100805272206e-22,1.8534786235079143e-20,9.656175275581597e-21,-2.229842449876239e-21,-0.0047376095317304134,0.0004373177944216877,0.002842565532773733,0.00032798832398839295,0.00032798832398839295,-0.0,-0.00014577258843928576,2.3716922119223626e-21,-0.0,-0.0002915451768785715,-0.00010932944860542193,-0.00010932944860542193,3.700882397054322e-21,5.082197683525802e-21,-0.0,-0.0047376095317304134,0.0004373177944216877,0.00032798832398839295,0.002842565532773733,0.00032798832398839295,-0.0,-2.1150634658456205e-21,-0.00014577258843928576,2.7105054716034394e-21,-0.0,-0.00010932944860542193,3.3881317890172014e-21,-0.0002915451768785715,-0.00010932944860542193,1.1154772090554095e-20,-0.0047376095317304134,0.0004373177944216877,0.00032798832398839295,0.00032798832398839295,0.002842565532773733,-0.0,5.95441955270721e-22,3.98357379477502e-21,-0.00014577258843928576,-2.659072851299184e-21,5.364363207634418e-21,-0.00010932944860542193,1.3552527156068805e-20,-0.00010932944860542193,-0.0002915451768785715,0.00041649313061498106,-0.0008329862612299621,-0.0,-0.0,-0.0,0.00020824656530749053,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004373177944216877,-0.00021865889721084386,-0.00014577258843928576,-2.1150634658456205e-21,5.95441955270721e-22,-0.0,7.288629421964288e-05,1.5663971757221604e-22,3.6170421085861393e-23,-0.0,-0.0,-0.0,2.771975431847982e-22,-0.0,-1.0273581062206942e-22,0.0004373177944216877,-0.00021865889721084386,2.3716922119223626e-21,-0.00014577258843928576,3.98357379477502e-21,-0.0,1.5663971757221604e-22,7.288629421964288e-05,1.6040191513607264e-22,3.132794351444321e-22,-1.5246592646680623e-21,-4.91033601757402e-23,-6.776263578034403e-21,-1.6940658945086007e-21,1.4232772340226607e-22,0.0004373177944216877,-0.00021865889721084386,-0.0,2.7105054716034394e-21,-0.00014577258843928576,-0.0,3.6170421085861393e-23,1.6040191513607264e-22,7.288629421964288e-05,7.234084217172279e-23,-1.8085210542930697e-22,-0.0,3.208038302721453e-22,-1.5246592646680623e-21,7.036889185706199e-22,0.00024295432376675308,-1.1568608571920136e-21,-0.0002915451768785715,-0.0,-2.659072851299184e-21,-0.0,-0.0,3.132794351444321e-22,7.234084217172279e-23,4.8590864025754854e-05,-0.0,0.0,2.1212216801032357e-21,0.0,1.985514304609525e-22,0.00032798832398839295,5.1165341607792056e-21,-0.00010932944860542193,-0.00010932944860542193,5.364363207634418e-21,-0.0,-0.0,-1.5246592646680623e-21,-1.8085210542930697e-22,-0.0,3.644314710982144e-05,-3.682752013180515e-23,-5.9161993049581244e-21,-8.470329472543003e-22,-3.6170421085861393e-22,0.00032798832398839295,1.473100805272206e-22,-0.00010932944860542193,3.3881317890172014e-21,-0.00010932944860542193,-0.0,-0.0,-4.91033601757402e-23,-0.0,0.0,-3.682752013180515e-23,3.644314710982144e-05,-9.82067203514804e-23,-8.470329472543003e-22,-0.0,0.00024295432376675308,1.8534786235079143e-20,3.700882397054322e-21,-0.0002915451768785715,1.3552527156068805e-20,-0.0,2.771975431847982e-22,-6.776263578034403e-21,3.208038302721453e-22,2.1212216801032357e-21,-5.9161993049581244e-21,-9.82067203514804e-23,4.8590864025754854e-05,-5.864074405566996e-21,-4.261711357236254e-22,0.00032798832398839295,9.656175275581597e-21,5.082197683525802e-21,-0.00010932944860542193,-0.00010932944860542193,-0.0,-0.0,-1.6940658945086007e-21,-1.5246592646680623e-21,0.0,-8.470329472543003e-22,-8.470329472543003e-22,-5.864074405566996e-21,3.644314710982144e-05,-2.528067515940923e-21,0.00024295432376675308,-2.229842449876239e-21,-0.0,1.1154772090554095e-20,-0.0002915451768785715,-0.0,-1.0273581062206942e-22,1.4232772340226607e-22,7.036889185706199e-22,1.985514304609525e-22,-3.6170421085861393e-22,-0.0,-4.261711357236254e-22,-2.528067515940923e-21,4.8590864025754854e-05,5.0,7.0,7.0,8.0,0.023975037038326263,-0.005454324651509523,-0.004177296068519354,-0.004177296068519354,-0.0037414967082440853,0.00036443150020204484,0.00038265305920504034,0.00038265305920504034,0.0003401360590942204,0.00021258502965793014,0.00028698978712782264,0.00025510202976875007,0.00021258502965793014,0.00025510202976875007,0.0001700680295471102,-0.005454324651509523,0.004913751035928726,0.00038265305920504034,0.00038265305920504034,0.0003401360590942204,-0.0007288630004040897,-0.00019132652960252017,-0.00019132652960252017,-0.0001700680295471102,2.602333471546553e-19,3.773595369527498e-19,2.7235249955614043e-19,2.789622671865044e-19,2.750791194996625e-19,5.002414174740502e-20,-0.004177296068519354,0.00038265305920504034,0.0024978742003440857,0.00028698978712782264,0.00025510202976875007,1.1154993781420608e-18,-0.00012755101488437504,-1.742051740442053e-20,-4.404571325722362e-20,-0.00025510202976875007,-9.566326480126008e-05,-8.50340147735551e-05,2.699690367822057e-20,-2.3842829752108637e-19,-1.808410560250015e-19,-0.004177296068519354,0.00038265305920504034,0.00028698978712782264,0.0024978742003440857,0.00025510202976875007,1.1154993781420608e-18,-2.694317732808297e-20,-0.00012755101488437504,-4.118671856629893e-20,-1.4907779871675686e-19,-9.566326480126008e-05,-3.1001405869507392e-19,-0.00025510202976875007,-8.50340147735551e-05,-1.7456113958859012e-19,-0.0037414967082440853,0.0003401360590942204,0.00025510202976875007,0.00025510202976875007,0.0019193391781300306,6.247278991367327e-19,-1.6373662824332706e-19,-1.614970496595368e-19,-9.718172805150971e-05,-1.8977721742938256e-19,4.7770026110584e-20,-7.288629421964288e-05,-2.1006417091906648e-19,-7.288629421964288e-05,-0.0001700680295471102,0.00036443150020204484,-0.0007288630004040897,1.1154993781420608e-18,1.1154993781420608e-18,6.247278991367327e-19,0.00018221575010102242,-3.6826878970904935e-20,-3.6826878970904935e-20,3.6362904964270846e-20,-6.743337266010817e-20,-9.103505212179375e-20,-6.936003786545756e-20,-6.743337266010817e-20,-6.936003786545756e-20,-2.6973348417808416e-20,0.00038265305920504034,-0.00019132652960252017,-0.00012755101488437504,-2.694317732808297e-20,-1.6373662824332706e-19,-3.6826878970904935e-20,6.377550744218752e-05,8.018936042920536e-21,3.1799039332086085e-20,3.3881317890172014e-21,-1.6940658945086007e-21,5.082197683525802e-21,2.809991459285924e-22,4.046002101112549e-21,9.609012248175436e-21,0.00038265305920504034,-0.00019132652960252017,-1.742051740442053e-20,-0.00012755101488437504,-1.614970496595368e-19,-3.6826878970904935e-20,8.018936042920536e-21,6.377550744218752e-05,3.162159293482212e-20,-6.663372508543934e-22,-2.8111478662641057e-21,4.0420802633450246e-21,-3.3881317890172014e-21,4.235164736271502e-21,9.697262079777188e-21,0.0003401360590942204,-0.0001700680295471102,-4.404571325722362e-20,-4.118671856629893e-20,-9.718172805150971e-05,3.6362904964270846e-20,3.1799039332086085e-20,3.162159293482212e-20,4.8590864025754854e-05,3.8135856040533785e-22,8.466331651693088e-23,-6.367196511836005e-21,2.6461666956147593e-23,-6.42355869238255e-21,-1.4162681733253358e-23,0.00021258502965793014,2.602333471546553e-19,-0.00025510202976875007,-1.4907779871675686e-19,-1.8977721742938256e-19,-6.743337266010817e-20,3.3881317890172014e-21,-6.663372508543934e-22,3.8135856040533785e-22,4.251700738677755e-05,6.776263578034403e-21,-1.1858461261560205e-20,6.2281102115824046e-21,1.8431787708532086e-20,1.9432283662047714e-20,0.00028698978712782264,3.773595369527498e-19,-9.566326480126008e-05,-9.566326480126008e-05,4.7770026110584e-20,-9.103505212179375e-20,-1.6940658945086007e-21,-2.8111478662641057e-21,8.466331651693088e-23,6.776263578034403e-21,3.188775372109376e-05,5.899299051847257e-21,-6.14830359990109e-20,-0.0,-1.401284670460603e-20,0.00025510202976875007,2.7235249955614043e-19,-8.50340147735551e-05,-3.1001405869507392e-19,-7.288629421964288e-05,-6.936003786545756e-20,5.082197683525802e-21,4.0420802633450246e-21,-6.367196511836005e-21,-1.1858461261560205e-20,5.899299051847257e-21,2.4295432012877427e-05,2.7415059633737465e-20,2.612101311358068e-20,1.940315947278503e-20,0.00021258502965793014,2.789622671865044e-19,2.699690367822057e-20,-0.00025510202976875007,-2.1006417091906648e-19,-6.743337266010817e-20,2.809991459285924e-22,-3.3881317890172014e-21,2.6461666956147593e-23,6.2281102115824046e-21,-6.14830359990109e-20,2.7415059633737465e-20,4.251700738677755e-05,-1.0776726316810353e-20,2.0355202352568085e-20,0.00025510202976875007,2.750791194996625e-19,-2.3842829752108637e-19,-8.50340147735551e-05,-7.288629421964288e-05,-6.936003786545756e-20,4.046002101112549e-21,4.235164736271502e-21,-6.42355869238255e-21,1.8431787708532086e-20,-0.0,2.612101311358068e-20,-1.0776726316810353e-20,2.4295432012877427e-05,1.584447661239132e-20,0.0001700680295471102,5.002414174740502e-20,-1.808410560250015e-19,-1.7456113958859012e-19,-0.0001700680295471102,-2.6973348417808416e-20,9.609012248175436e-21,9.697262079777188e-21,-1.4162681733253358e-23,1.9432283662047714e-20,-1.401284670460603e-20,1.940315947278503e-20,2.0355202352568085e-20,1.584447661239132e-20,2.4295432012877427e-05,5.0,7.0,8.0,3.0,0.04728599637746811,-0.011833900585770607,-0.00907738134264946,-0.008134921081364155,-0.01711309514939785,0.0008503401186317205,0.0008928571478463709,0.0007936508045531809,0.0017857142956927419,0.0004960317746736109,0.0005952381179668009,0.0013392857508733869,0.00039682540227659047,0.0011904762359336019,0.0017857142956927419,-0.011833900585770607,0.01101899053901434,0.0008928571478463709,0.0007936508045531809,0.0017857142956927419,-0.001700680237263441,-0.00044642857392318547,-0.00039682540227659047,-0.0008928571478463709,6.319835138797416e-19,6.556808942608905e-19,-8.745781650498927e-19,2.1192110092136853e-19,-1.0252245050032033e-18,-1.806944615258812e-17,-0.00907738134264946,0.0008928571478463709,0.0056051588617265224,0.0005952381179668009,0.0013392857508733869,1.8998229359781035e-18,-0.00029761905898340046,-1.186459920019929e-19,-6.816165219820312e-19,-0.0005952381179668009,-0.00019841270113829523,-0.00044642857392318547,-5.595462736627073e-19,-3.0560948736935156e-18,-1.7601407509670915e-17,-0.008134921081364155,0.0007936508045531809,0.0005952381179668009,0.004308389965444803,0.0011904762359336019,1.1687594698328189e-18,-4.113427531546307e-19,-0.00022675737272948027,-5.193268911240008e-19,-8.131516293641283e-19,-0.0001700680295471102,-2.8886435324155778e-18,-0.00039682540227659047,-0.0003401360590942204,-7.871362200729068e-18,-0.01711309514939785,0.0017857142956927419,0.0013392857508733869,0.0011904762359336019,0.0349702388048172,-7.234251976509088e-18,-4.265944540454906e-18,-3.1788989346137507e-18,-0.0017857142956927419,-5.7585022067103826e-18,-3.3725867905606454e-18,-0.0013392857508733869,-1.6534083130403943e-18,-0.0011904762359336019,-0.010714286006987095,0.0008503401186317205,-0.001700680237263441,1.8998229359781035e-18,1.1687594698328189e-18,-7.234251976509088e-18,0.00042517005931586027,-5.304758382151437e-20,-4.0417207952077335e-20,6.905177091561378e-19,-1.5734453836103525e-19,-1.6184009696919903e-19,-9.388908478887775e-34,-6.293781405194439e-20,5.394669683561683e-20,2.8322016904986345e-18,0.0008928571478463709,-0.00044642857392318547,-0.00029761905898340046,-4.113427531546307e-19,-4.265944540454906e-18,-5.304758382151437e-20,0.00014880952949170023,2.953824808922782e-20,3.408082609910156e-19,-1.9149049782790988e-35,1.3552527156068805e-20,1.5924219408380846e-19,2.1182358731314104e-20,1.5122795132151189e-19,1.1895247017376204e-18,0.0007936508045531809,-0.00039682540227659047,-1.186459920019929e-19,-0.00022675737272948027,-3.1788989346137507e-18,-4.0417207952077335e-20,2.953824808922782e-20,0.00011337868636474013,2.596634455620004e-19,-7.443945451768076e-22,-1.399374723350915e-20,1.133861702066184e-19,-6.776263578034403e-21,1.0164395367051604e-19,9.06304470649211e-19,0.0017857142956927419,-0.0008928571478463709,-6.816165219820312e-19,-5.193268911240008e-19,-0.0017857142956927419,6.905177091561378e-19,3.408082609910156e-19,2.596634455620004e-19,0.0008928571478463709,-2.1666711874356403e-34,-2.6481536735324493e-34,6.138901697734314e-34,-4.81482486096809e-35,6.680569494593224e-34,9.399706129184047e-33,0.0004960317746736109,6.319835138797416e-19,-0.0005952381179668009,-8.131516293641283e-19,-5.7585022067103826e-18,-1.5734453836103525e-19,-1.9149049782790988e-35,-7.443945451768076e-22,-2.1666711874356403e-34,9.920635056914762e-05,4.743384504624082e-20,3.1170812458958252e-19,4.61784078274098e-20,2.772807899469431e-19,1.718202300999862e-18,0.0005952381179668009,6.556808942608905e-19,-0.00019841270113829523,-0.0001700680295471102,-3.3725867905606454e-18,-1.6184009696919903e-19,1.3552527156068805e-20,-1.399374723350915e-20,-2.6481536735324493e-34,4.743384504624082e-20,5.668934318237007e-05,1.7957098481791167e-19,-1.04212745291341e-20,1.6771252355635147e-19,1.0007112143453474e-18,0.0013392857508733869,-8.745781650498927e-19,-0.00044642857392318547,-2.8886435324155778e-18,-0.0013392857508733869,-9.388908478887775e-34,1.5924219408380846e-19,1.133861702066184e-19,6.138901697734314e-34,3.1170812458958252e-19,1.7957098481791167e-19,0.00044642857392318547,2.3146814135312377e-19,3.7061380150919743e-19,1.2124001747826212e-18,0.00039682540227659047,2.1192110092136853e-19,-5.595462736627073e-19,-0.00039682540227659047,-1.6534083130403943e-18,-6.293781405194439e-20,2.1182358731314104e-20,-6.776263578034403e-21,-4.81482486096809e-35,4.61784078274098e-20,-1.04212745291341e-20,2.3146814135312377e-19,5.668934318237007e-05,4.222379302811302e-20,2.64338825480515e-19,0.0011904762359336019,-1.0252245050032033e-18,-3.0560948736935156e-18,-0.0003401360590942204,-0.0011904762359336019,5.394669683561683e-20,1.5122795132151189e-19,1.0164395367051604e-19,6.680569494593224e-34,2.772807899469431e-19,1.6771252355635147e-19,3.7061380150919743e-19,4.222379302811302e-20,0.0003401360590942204,1.0551973944990622e-18,0.0017857142956927419,-1.806944615258812e-17,-1.7601407509670915e-17,-7.871362200729068e-18,-0.010714286006987095,2.8322016904986345e-18,1.1895247017376204e-18,9.06304470649211e-19,9.399706129184047e-33,1.718202300999862e-18,1.0007112143453474e-18,1.2124001747826212e-18,2.64338825480515e-19,1.0551973944990622e-18,0.0053571430034935474,5.0,7.0,8.0,4.0,0.037942178547382355,-0.009143282659351826,-0.007008928339928389,-0.006279761902987957,-0.010803570970892906,0.0006377550889737904,0.0006696428754366934,0.0005952381179668009,0.0010714285308495164,0.00037202381645329297,0.00044642857392318547,0.0008035714272409678,0.00029761905898340046,0.0007142857066355646,0.0008928571478463709,-0.009143282659351826,0.00839817151427269,0.0006696428754366934,0.0005952381179668009,0.0010714285308495164,-0.0012755101779475808,-0.0003348214377183467,-0.00029761905898340046,-0.0005357142654247582,2.3589391305945193e-20,-3.525601128887845e-20,1.8734915879599743e-21,2.101774049979003e-21,-6.280991205752195e-21,-0.0,-0.007008928339928389,0.0006696428754366934,0.0042708334513008595,0.00044642857392318547,0.0008035714272409678,-0.0,-0.00022321428696159273,-3.254828402130013e-20,-0.0,-0.00044642857392318547,-0.00014880952949170023,-0.0002678571327123791,-7.003256801520585e-20,-1.3552527156068805e-20,-0.0,-0.006279761902987957,0.0005952381179668009,0.00044642857392318547,0.0032823130022734404,0.0007142857066355646,-0.0,1.1142395077521344e-20,-0.0001700680295471102,-0.0,4.0657581468206416e-20,-0.00012755101488437504,6.41319785131354e-20,-0.00029761905898340046,-0.0002040816325461492,-0.0,-0.010803570970892906,0.0010714285308495164,0.0008035714272409678,0.0007142857066355646,0.013452380895614624,-0.0,-4.1038712710453306e-22,-4.323380640543441e-21,-0.0007142857066355646,-2.3590649848322495e-20,4.404571325722362e-20,-0.0005357142654247582,-1.3552527156068805e-20,-0.0004761904710903764,-0.0026785715017467737,0.0006377550889737904,-0.0012755101779475808,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0006696428754366934,-0.0003348214377183467,-0.00022321428696159273,1.1142395077521344e-20,-4.1038712710453306e-22,-0.0,0.00011160714348079637,-4.658000744792695e-22,-0.0,-6.776263578034403e-21,-1.6940658945086007e-21,-0.0,-7.0059138365106635e-22,1.1725345767456688e-22,-0.0,0.0005952381179668009,-0.00029761905898340046,-3.254828402130013e-20,-0.0001700680295471102,-4.323380640543441e-21,-0.0,-4.658000744792695e-22,8.50340147735551e-05,-0.0,-9.31600148958539e-22,1.1525202794342234e-20,-5.352833469079197e-22,-0.0,1.6940658945086007e-21,-0.0,0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,2.3589391305945193e-20,-0.00044642857392318547,4.0657581468206416e-20,-2.3590649848322495e-20,-0.0,-6.776263578034403e-21,-9.31600148958539e-22,-0.0,7.440476474585012e-05,-6.776263578034403e-21,0.0,4.360515617635334e-22,2.3450691534913377e-22,-0.0,0.00044642857392318547,-3.525601128887845e-20,-0.00014880952949170023,-0.00012755101488437504,4.404571325722362e-20,-0.0,-1.6940658945086007e-21,1.1525202794342234e-20,-0.0,-6.776263578034403e-21,4.251700738677755e-05,-1.8634724839594607e-20,2.0001295066191833e-20,3.3881317890172014e-21,-0.0,0.0008035714272409678,1.8734915879599743e-21,-0.0002678571327123791,6.41319785131354e-20,-0.0005357142654247582,-0.0,-0.0,-5.352833469079197e-22,-0.0,0.0,-1.8634724839594607e-20,0.00017857142665889114,-9.367457939799871e-22,-4.3157358967960274e-23,-0.0,0.00029761905898340046,2.101774049979003e-21,-7.003256801520585e-20,-0.00029761905898340046,-1.3552527156068805e-20,-0.0,-7.0059138365106635e-22,-0.0,-0.0,4.360515617635334e-22,2.0001295066191833e-20,-9.367457939799871e-22,4.251700738677755e-05,4.986307336471089e-21,-0.0,0.0007142857066355646,-6.280991205752195e-21,-1.3552527156068805e-20,-0.0002040816325461492,-0.0004761904710903764,-0.0,1.1725345767456688e-22,1.6940658945086007e-21,-0.0,2.3450691534913377e-22,3.3881317890172014e-21,-4.3157358967960274e-23,4.986307336471089e-21,0.0001360544265480712,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0026785715017467737,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,5.0,7.0,8.0,5.0,0.03174319863319397,-0.007457483094185591,-0.0057142856530845165,-0.0051190475933253765,-0.007457483094185591,0.0005102040595375001,0.0005357142654247582,0.0004761904710903764,0.0007142857066355646,0.00029761905898340046,0.0003571428533177823,0.0005357142654247582,0.0002380952355451882,0.0004761904710903764,0.0005102040595375001,-0.007457483094185591,0.006789966020733118,0.0005357142654247582,0.0004761904710903764,0.0007142857066355646,-0.0010204081190750003,-0.0002678571327123791,-0.0002380952355451882,-0.0003571428533177823,8.333785702541367e-21,2.583450489125616e-20,-4.8877965070852024e-21,-1.3609456609647739e-21,-0.0,-0.0,-0.0057142856530845165,0.0005357142654247582,0.0034523808863013983,0.0003571428533177823,0.0005357142654247582,-0.0,-0.00017857142665889114,1.6940658945086007e-20,-0.0,-0.0003571428533177823,-0.0001190476177725941,-0.00017857142665889114,3.618268945065939e-20,-0.0,-0.0,-0.0051190475933253765,0.0004761904710903764,0.0003571428533177823,0.002653061179444194,0.0004761904710903764,-0.0,1.124398763936513e-21,-0.0001360544265480712,-0.0,-6.776263578034403e-21,-0.0001020408162730746,3.3881317890172014e-20,-0.0002380952355451882,-0.0001360544265480712,-0.0,-0.007457483094185591,0.0007142857066355646,0.0005357142654247582,0.0004761904710903764,0.006789966020733118,-0.0,-5.082197683525802e-21,1.6662943555737698e-22,-0.0003571428533177823,1.0881115863879692e-20,3.3034284942917713e-20,-0.0002678571327123791,-0.0,-0.0002380952355451882,-0.0010204081190750003,0.0005102040595375001,-0.0010204081190750003,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0005357142654247582,-0.0002678571327123791,-0.00017857142665889114,1.124398763936513e-21,-5.082197683525802e-21,-0.0,8.928571332944557e-05,2.6151564472127765e-22,-0.0,-3.3881317890172014e-21,-1.6940658945086007e-21,1.6940658945086007e-21,4.53648536825892e-22,-0.0,-0.0,0.0004761904710903764,-0.0002380952355451882,1.6940658945086007e-20,-0.0001360544265480712,1.6662943555737698e-22,-0.0,2.6151564472127765e-22,6.80272132740356e-05,-0.0,5.230312894425553e-22,-5.929230630780102e-21,-5.554314097853417e-23,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0003571428533177823,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,8.333785702541367e-21,-0.0003571428533177823,-6.776263578034403e-21,1.0881115863879692e-20,-0.0,-3.3881317890172014e-21,5.230312894425553e-22,-0.0,5.952380888629705e-05,-3.3881317890172014e-21,3.3881317890172014e-21,1.6901149761726662e-21,0.0,-0.0,0.0003571428533177823,2.583450489125616e-20,-0.0001190476177725941,-0.0001020408162730746,3.3034284942917713e-20,-0.0,-1.6940658945086007e-21,-5.929230630780102e-21,-0.0,-3.3881317890172014e-21,3.40136066370178e-05,-1.1011428314305904e-20,-1.36803814906708e-20,-0.0,-0.0,0.0005357142654247582,-4.8877965070852024e-21,-0.00017857142665889114,3.3881317890172014e-20,-0.0002678571327123791,-0.0,1.6940658945086007e-21,-5.554314097853417e-23,-0.0,3.3881317890172014e-21,-1.1011428314305904e-20,8.928571332944557e-05,-9.720049986787841e-23,-0.0,-0.0,0.0002380952355451882,-1.3609456609647739e-21,3.618268945065939e-20,-0.0002380952355451882,-0.0,-0.0,4.53648536825892e-22,-0.0,-0.0,1.6901149761726662e-21,-1.36803814906708e-20,-9.720049986787841e-23,3.40136066370178e-05,0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0001360544265480712,-0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,6.80272132740356e-05,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0010204081190750003,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,5.0,7.0,8.0,6.0,0.027310090139508247,-0.0062996032647788525,-0.004825680050998926,-0.004322562366724014,-0.005463435314595699,0.00042517005931586027,0.00044642857392318547,0.00039682540227659047,0.0005102040595375001,0.00024801588733680546,0.00029761905898340046,0.00038265305920504034,0.00019841270113829523,0.0003401360590942204,0.0003188775444868952,-0.0062996032647788525,0.005700821988284588,0.00044642857392318547,0.00039682540227659047,0.0005102040595375001,-0.0008503401186317205,-0.00022321428696159273,-0.00019841270113829523,-0.00025510202976875007,3.055688159326081e-19,3.287777461620444e-19,6.533505196801754e-19,9.462794342416051e-20,5.071777792747048e-19,9.293161183025534e-19,-0.004825680050998926,0.00044642857392318547,0.0028982425574213266,0.00029761905898340046,0.00038265305920504034,1.3140516764762268e-18,-0.00014880952949170023,2.758025988052652e-20,-3.1181190344471525e-20,-0.00029761905898340046,-9.920635056914762e-05,-0.00012755101488437504,-1.5598881518645498e-19,-2.3801744725058894e-19,1.775768850055936e-19,-0.004322562366724014,0.00039682540227659047,0.00029761905898340046,0.0022270812187343836,0.0003401360590942204,8.9649989884862e-19,-1.2086835488928439e-19,-0.00011337868636474013,-6.494154599475473e-21,-2.913793338554793e-19,-8.50340147735551e-05,-1.0650265749228767e-19,-0.00019841270113829523,-9.718172805150971e-05,1.1042493082210333e-18,-0.005463435314595699,0.0005102040595375001,0.00038265305920504034,0.0003401360590942204,0.003939200658351183,1.988195810695972e-18,1.458705868373415e-19,2.9637974405593894e-19,-0.0002040816325461492,8.180073088067853e-20,-1.6260870285462565e-19,-0.0001530612207716331,8.673617379884035e-19,-0.0001360544265480712,-0.00047831633128225803,0.00042517005931586027,-0.0008503401186317205,1.3140516764762268e-18,8.9649989884862e-19,1.988195810695972e-18,0.00021258502965793014,-2.6523791910757184e-20,-2.0208603976038667e-20,-3.63754871568696e-20,-7.867226918051762e-20,-8.092004848459951e-20,-1.4565607564005176e-19,-3.1468907025972196e-20,-1.1405873266810937e-19,-1.7701260565616466e-19,0.00044642857392318547,-0.00022321428696159273,-0.00014880952949170023,-1.2086835488928439e-19,1.458705868373415e-19,-2.6523791910757184e-20,7.440476474585012e-05,1.48060612132561e-20,1.5590595172235763e-20,3.3881317890172014e-21,5.929230630780102e-21,-8.470329472543003e-21,1.0415895431771804e-20,-2.1578678411129306e-21,-2.6551890202189845e-20,0.00039682540227659047,-0.00019841270113829523,2.758025988052652e-20,-0.00011337868636474013,2.9637974405593894e-19,-2.0208603976038667e-20,1.48060612132561e-20,5.668934318237007e-05,3.2470772997377365e-21,-2.983249295443977e-22,-6.538642618484691e-21,-1.2947207046677583e-20,7.467173608663629e-36,-1.2705494208814505e-20,-4.046002424229976e-20,0.0005102040595375001,-0.00025510202976875007,-3.1181190344471525e-20,-6.494154599475473e-21,-0.0002040816325461492,-3.63754871568696e-20,1.5590595172235763e-20,3.2470772997377365e-21,0.0001020408162730746,1.2037062152420224e-35,1.4858248594393714e-35,2.256949153578792e-35,6.770847460736376e-36,1.8384731646860577e-35,2.2407571206765107e-35,0.00024801588733680546,3.055688159326081e-19,-0.00029761905898340046,-2.913793338554793e-19,8.180073088067853e-20,-7.867226918051762e-20,3.3881317890172014e-21,-2.983249295443977e-22,1.2037062152420224e-35,4.960317528457381e-05,2.710505431213761e-20,0.0,2.145348010177543e-20,1.3666497134842127e-20,-2.950210094269411e-20,0.00029761905898340046,3.287777461620444e-19,-9.920635056914762e-05,-8.50340147735551e-05,-1.6260870285462565e-19,-8.092004848459951e-20,5.929230630780102e-21,-6.538642618484691e-21,1.4858248594393714e-35,2.710505431213761e-20,2.8344671591185033e-05,8.47531679002533e-21,-4.372774389884724e-21,1.5246593050577406e-20,1.180083973084279e-20,0.00038265305920504034,6.533505196801754e-19,-0.00012755101488437504,-1.0650265749228767e-19,-0.0001530612207716331,-1.4565607564005176e-19,-8.470329472543003e-21,-1.2947207046677583e-20,2.256949153578792e-35,0.0,8.47531679002533e-21,5.10204081365373e-05,-1.3541694921472752e-35,2.7683373113760085e-20,-9.6663882096485e-21,0.00019841270113829523,9.462794342416051e-20,-1.5598881518645498e-19,-0.00019841270113829523,8.673617379884035e-19,-3.1468907025972196e-20,1.0415895431771804e-20,7.467173608663629e-36,6.770847460736376e-36,2.145348010177543e-20,-4.372774389884724e-21,-1.3541694921472752e-35,2.8344671591185033e-05,-6.238912834953178e-20,-1.2980923380809642e-19,0.0003401360590942204,5.071777792747048e-19,-2.3801744725058894e-19,-9.718172805150971e-05,-0.0001360544265480712,-1.1405873266810937e-19,-2.1578678411129306e-21,-1.2705494208814505e-20,1.8384731646860577e-35,1.3666497134842127e-20,1.5246593050577406e-20,2.7683373113760085e-20,-6.238912834953178e-20,3.887269122060388e-05,-7.081616654923499e-20,0.0003188775444868952,9.293161183025534e-19,1.775768850055936e-19,1.1042493082210333e-18,-0.00047831633128225803,-1.7701260565616466e-19,-2.6551890202189845e-20,-4.046002424229976e-20,2.2407571206765107e-35,-2.950210094269411e-20,1.180083973084279e-20,-9.6663882096485e-21,-1.2980923380809642e-19,-7.081616654923499e-20,9.566326480126008e-05,5.0,7.0,8.0,7.0,0.023975037038326263,-0.005454324651509523,-0.004177296068519354,-0.0037414967082440853,-0.004177296068519354,0.00036443150020204484,0.00038265305920504034,0.0003401360590942204,0.00038265305920504034,0.00021258502965793014,0.00025510202976875007,0.00028698978712782264,0.0001700680295471102,0.00025510202976875007,0.00021258502965793014,-0.005454324651509523,0.004913751035928726,0.00038265305920504034,0.0003401360590942204,0.00038265305920504034,-0.0007288630004040897,-0.00019132652960252017,-0.0001700680295471102,-0.00019132652960252017,2.61980843746856e-19,2.8570500410033626e-19,3.92897866265617e-19,7.466326725594548e-20,3.0492454563300586e-19,3.10377242682773e-19,-0.004177296068519354,0.00038265305920504034,0.0024978742003440857,0.00025510202976875007,0.00028698978712782264,1.1154993781420608e-18,-0.00012755101488437504,-2.565777743026678e-20,-3.3881317890172014e-21,-0.00025510202976875007,-8.50340147735551e-05,-9.566326480126008e-05,-1.493968319392609e-19,-2.3064507079423937e-19,7.195037334071298e-20,-0.0037414967082440853,0.0003401360590942204,0.00025510202976875007,0.0019193391781300306,0.00025510202976875007,6.247278991367327e-19,-1.6170375433979556e-19,-9.718172805150971e-05,2.857840192358807e-20,-1.9651164376299768e-19,-7.288629421964288e-05,5.759824041329242e-20,-0.0001700680295471102,-7.288629421964288e-05,3.762096266543304e-19,-0.004177296068519354,0.00038265305920504034,0.00028698978712782264,0.00025510202976875007,0.0024978742003440857,1.1154993781420608e-18,-2.4063265630535776e-20,9.513481126919945e-20,-0.00012755101488437504,-1.290553620773309e-19,-3.2459433191284572e-19,-9.566326480126008e-05,5.014435047745458e-19,-8.50340147735551e-05,-0.00025510202976875007,0.00036443150020204484,-0.0007288630004040897,1.1154993781420608e-18,6.247278991367327e-19,1.1154993781420608e-18,0.00018221575010102242,-3.6826878970904935e-20,3.6362904964270846e-20,-3.6826878970904935e-20,-6.743337266010817e-20,-6.936003786545756e-20,-9.103505212179375e-20,-2.6973348417808416e-20,-6.936003786545756e-20,-6.743337266010817e-20,0.00038265305920504034,-0.00019132652960252017,-0.00012755101488437504,-1.6170375433979556e-19,-2.4063265630535776e-20,-3.6826878970904935e-20,6.377550744218752e-05,3.153884256182414e-20,8.031250048055065e-21,3.3881317890172014e-21,5.082197683525802e-21,-1.6940658945086007e-21,9.409249745831014e-21,4.046002101112549e-21,-1.6585325953551192e-22,0.0003401360590942204,-0.0001700680295471102,-2.565777743026678e-20,-9.718172805150971e-05,9.513481126919945e-20,3.6362904964270846e-20,3.153884256182414e-20,4.8590864025754854e-05,7.922950881095903e-22,-1.3903427329917904e-22,-6.700455382950759e-21,-4.354864394815174e-21,1.6940658945086007e-21,-3.3881317890172014e-21,-1.1045591519839198e-20,0.00038265305920504034,-0.00019132652960252017,-3.3881317890172014e-21,2.857840192358807e-20,-0.00012755101488437504,-3.6826878970904935e-20,8.031250048055065e-21,7.922950881095903e-22,6.377550744218752e-05,-6.417086347401589e-22,-1.9948343806603493e-23,-2.8111478662641057e-21,-3.0895125196918476e-22,-9.254647750640293e-21,-4.955386412367126e-22,0.00021258502965793014,2.61980843746856e-19,-0.00025510202976875007,-1.9651164376299768e-19,-1.290553620773309e-19,-6.743337266010817e-20,3.3881317890172014e-21,-1.3903427329917904e-22,-6.417086347401589e-22,4.251700738677755e-05,-8.470329472543003e-21,6.776263578034403e-21,1.8594705130700953e-20,1.8431787708532086e-20,4.606053459012099e-21,0.00025510202976875007,2.8570500410033626e-19,-8.50340147735551e-05,-7.288629421964288e-05,-3.2459433191284572e-19,-6.936003786545756e-20,5.082197683525802e-21,-6.700455382950759e-21,-1.9948343806603493e-23,-8.470329472543003e-21,2.4295432012877427e-05,2.942738650010011e-20,1.874803888999157e-20,2.752857078576476e-20,1.929100379836307e-20,0.00028698978712782264,3.92897866265617e-19,-9.566326480126008e-05,5.759824041329242e-20,-9.566326480126008e-05,-9.103505212179375e-20,-1.6940658945086007e-21,-4.354864394815174e-21,-2.8111478662641057e-21,6.776263578034403e-21,2.942738650010011e-20,3.188775372109376e-05,-2.1782021054562434e-20,-4.236559795761618e-21,-6.31771018935195e-20,0.0001700680295471102,7.466326725594548e-20,-1.493968319392609e-19,-0.0001700680295471102,5.014435047745458e-19,-2.6973348417808416e-20,9.409249745831014e-21,1.6940658945086007e-21,-3.0895125196918476e-22,1.8594705130700953e-20,1.874803888999157e-20,-2.1782021054562434e-20,2.4295432012877427e-05,-1.916384416622865e-20,-6.237328913327109e-20,0.00025510202976875007,3.0492454563300586e-19,-2.3064507079423937e-19,-7.288629421964288e-05,-8.50340147735551e-05,-6.936003786545756e-20,4.046002101112549e-21,-3.3881317890172014e-21,-9.254647750640293e-21,1.8431787708532086e-20,2.752857078576476e-20,-4.236559795761618e-21,-1.916384416622865e-20,2.4295432012877427e-05,2.105584412234289e-21,0.00021258502965793014,3.10377242682773e-19,7.195037334071298e-20,3.762096266543304e-19,-0.00025510202976875007,-6.743337266010817e-20,-1.6585325953551192e-22,-1.1045591519839198e-20,-4.955386412367126e-22,4.606053459012099e-21,1.929100379836307e-20,-6.31771018935195e-20,-6.237328913327109e-20,2.105584412234289e-21,4.251700738677755e-05,5.0,7.0,8.0,8.0,0.021371882408857346,-0.0048097362741827965,-0.0036830357275903225,-0.0032986111473292112,-0.0032986111473292112,0.0003188775444868952,0.0003348214377183467,0.00029761905898340046,0.00029761905898340046,0.00018601190822664648,0.00022321428696159273,0.00022321428696159273,0.00014880952949170023,0.00019841270113829523,0.00014880952949170023,-0.0048097362741827965,0.00431813346222043,0.0003348214377183467,0.00029761905898340046,0.00029761905898340046,-0.0006377550889737904,-0.00016741071885917336,-0.00014880952949170023,-0.00014880952949170023,1.2746981678619301e-20,-1.5210636543325492e-20,-1.4844870847386468e-20,1.1748200266949517e-21,-1.6763832933281458e-20,2.9618074249513458e-21,-0.0036830357275903225,0.0003348214377183467,0.0021949405781924725,0.00022321428696159273,0.00022321428696159273,-0.0,-0.00011160714348079637,-1.2662933181359238e-20,-1.1858461261560205e-20,-0.00022321428696159273,-7.440476474585012e-05,-7.440476474585012e-05,-2.872064467720451e-20,-1.1257373990459781e-20,-2.73607629813416e-20,-0.0032986111473292112,0.00029761905898340046,0.00022321428696159273,0.0016865079523995519,0.00019841270113829523,-0.0,2.7356282554322533e-21,-8.50340147735551e-05,-1.624637006781845e-20,6.776263578034403e-21,-6.377550744218752e-05,5.082197683525802e-21,-0.00014880952949170023,-5.668934318237007e-05,-3.499165599733387e-20,-0.0032986111473292112,0.00029761905898340046,0.00022321428696159273,0.00019841270113829523,0.0016865079523995519,-0.0,2.001533128721109e-21,1.2739784035989418e-21,-8.50340147735551e-05,9.378346795133916e-21,1.9192806796777943e-20,-6.377550744218752e-05,-3.3881317890172014e-21,-5.668934318237007e-05,-0.00014880952949170023,0.0003188775444868952,-0.0006377550889737904,-0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003348214377183467,-0.00016741071885917336,-0.00011160714348079637,2.7356282554322533e-21,2.001533128721109e-21,-0.0,5.5803571740398183e-05,-1.6814266010020813e-22,-2.0079820729321782e-22,-3.3881317890172014e-21,-0.0,-0.0,-3.168943618436148e-22,-6.003018007165998e-38,-2.1131238525171865e-22,0.00029761905898340046,-0.00014880952949170023,-1.2662933181359238e-20,-8.50340147735551e-05,1.2739784035989418e-21,-0.0,-1.6814266010020813e-22,4.251700738677755e-05,-3.659379642280627e-23,-3.3628532020041627e-22,4.3323653244918015e-21,6.227131512878064e-24,-0.0,-0.0,-1.6106236210769816e-22,0.00029761905898340046,-0.00014880952949170023,-1.1858461261560205e-20,-1.624637006781845e-20,-8.50340147735551e-05,-0.0,-2.0079820729321782e-22,-3.659379642280627e-23,4.251700738677755e-05,-4.0159641458643564e-22,1.353081361450219e-23,4.235164736271502e-21,-6.403914137332825e-23,4.789666552366131e-21,-5.04043445319209e-22,0.00018601190822664648,1.2746981678619301e-20,-0.00022321428696159273,6.776263578034403e-21,9.378346795133916e-21,-0.0,-3.3881317890172014e-21,-3.3628532020041627e-22,-4.0159641458643564e-22,3.720238237292506e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,4.600483318471221e-22,-3.76158192263132e-37,3.030596095886618e-22,0.00022321428696159273,-1.5210636543325492e-20,-7.440476474585012e-05,-6.377550744218752e-05,1.9192806796777943e-20,-0.0,-0.0,4.3323653244918015e-21,1.353081361450219e-23,-1.6940658945086007e-21,2.1258503693388775e-05,-5.972281181136939e-21,7.521707598515967e-21,-4.235164736271502e-22,2.3678925403100644e-23,0.00022321428696159273,-1.4844870847386468e-20,-7.440476474585012e-05,5.082197683525802e-21,-6.377550744218752e-05,-0.0,-0.0,6.227131512878064e-24,4.235164736271502e-21,-1.6940658945086007e-21,-5.972281181136939e-21,2.1258503693388775e-05,1.0897479950321386e-23,3.639909330827647e-21,7.351606468156247e-21,0.00014880952949170023,1.1748200266949517e-21,-2.872064467720451e-20,-0.00014880952949170023,-3.3881317890172014e-21,-0.0,-3.168943618436148e-22,-0.0,-6.403914137332825e-23,4.600483318471221e-22,7.521707598515967e-21,1.0897479950321386e-23,2.1258503693388775e-05,1.0148413575226355e-21,3.2952266178455896e-23,0.00019841270113829523,-1.6763832933281458e-20,-1.1257373990459781e-20,-5.668934318237007e-05,-5.668934318237007e-05,-0.0,-6.003018007165998e-38,-0.0,4.789666552366131e-21,-3.76158192263132e-37,-4.235164736271502e-22,3.639909330827647e-21,1.0148413575226355e-21,1.6196954675251618e-05,9.998071479410925e-21,0.00014880952949170023,2.9618074249513458e-21,-2.73607629813416e-20,-3.499165599733387e-20,-0.00014880952949170023,-0.0,-2.1131238525171865e-22,-1.6106236210769816e-22,-5.04043445319209e-22,3.030596095886618e-22,2.3678925403100644e-23,7.351606468156247e-21,3.2952266178455896e-23,9.998071479410925e-21,2.1258503693388775e-05,5.0,8.0,3.0,3.0,0.09169973433017731,-0.025529099628329277,-0.017592592164874077,-0.03680555522441864,-0.03680555522441864,0.0019841270986944437,0.0018518518190830946,0.004166666883975267,0.004166666883975267,0.0009259259095415473,0.0027777778450399637,0.0027777778450399637,0.004166666883975267,0.0062500000931322575,0.004166666883975267,-0.025529099628329277,0.024669311940670013,0.0018518518190830946,0.004166666883975267,0.004166666883975267,-0.003968254197388887,-0.0009259259095415473,-0.0020833334419876337,-0.0020833334419876337,4.336808689942018e-18,2.032879073410321e-18,2.1412992906588713e-18,-1.1275702593849246e-17,-5.204170427930421e-18,-1.734723475976807e-17,-0.017592592164874077,0.0018518518190830946,0.009656084701418877,0.0027777778450399637,0.0027777778450399637,7.788077520754167e-18,-0.0005291005363687873,3.0357660829594124e-18,3.2526065174565133e-18,-0.0009259259095415473,-0.0007936508045531809,-0.0007936508045531809,-1.734723475976807e-17,-3.0357660829594124e-18,-2.0816681711721685e-17,-0.03680555522441864,0.004166666883975267,0.0027777778450399637,0.07847221940755844,0.0062500000931322575,-5.179891332783495e-19,-3.020357776099081e-18,-0.004166666883975267,-3.686287386450715e-18,-4.336808689942018e-19,-0.0027777778450399637,-5.126824077573038e-18,-0.02500000037252903,-0.0062500000931322575,3.903127820947816e-18,-0.03680555522441864,0.004166666883975267,0.0027777778450399637,0.0062500000931322575,0.07847221940755844,-7.652086546508611e-19,-2.8498423510370935e-18,-3.5271258424766305e-18,-0.004166666883975267,3.2526065174565133e-19,-4.7704895589362195e-18,-0.0027777778450399637,1.7997756063259374e-17,-0.0062500000931322575,-0.02500000037252903,0.0019841270986944437,-0.003968254197388887,7.788077520754167e-18,-5.179891332783495e-19,-7.652086546508611e-19,0.0009920635493472219,-8.809142651444724e-19,-2.184153605340077e-19,-1.9792800961623574e-19,-6.776263578034403e-19,-3.5236570605778894e-19,-4.336808689942018e-19,9.75781955236954e-19,1.0842021724855044e-19,1.1926223897340549e-18,0.0018518518190830946,-0.0009259259095415473,-0.0005291005363687873,-3.020357776099081e-18,-2.8498423510370935e-18,-8.809142651444724e-19,0.00026455026818439364,-1.517215713520529e-19,-2.698184834483725e-19,-2.439454888092385e-19,-2.710505431213761e-20,-1.3552527156068805e-20,1.3010426069826053e-18,6.505213034913027e-19,1.328147661294743e-18,0.004166666883975267,-0.0020833334419876337,3.0357660829594124e-18,-0.004166666883975267,-3.5271258424766305e-18,-2.184153605340077e-19,-1.517215713520529e-19,0.0020833334419876337,3.2526065174565133e-19,-3.2526065174565133e-19,-8.131516293641283e-20,-1.8973538018496328e-19,8.131516293641283e-19,4.87890977618477e-19,1.3552527156068805e-18,0.004166666883975267,-0.0020833334419876337,3.2526065174565133e-18,-3.686287386450715e-18,-0.004166666883975267,-1.9792800961623574e-19,-2.698184834483725e-19,3.2526065174565133e-19,0.0020833334419876337,-2.168404344971009e-19,-1.8973538018496328e-19,1.6263032587282567e-19,1.1926223897340549e-18,1.1384122811097797e-18,5.204170427930421e-18,0.0009259259095415473,4.336808689942018e-18,-0.0009259259095415473,-4.336808689942018e-19,3.2526065174565133e-19,-6.776263578034403e-19,-2.439454888092385e-19,-3.2526065174565133e-19,-2.168404344971009e-19,0.00013227513409219682,-1.0842021724855044e-19,-2.710505431213761e-20,4.336808689942018e-19,-5.421010862427522e-20,3.2526065174565133e-19,0.0027777778450399637,2.032879073410321e-18,-0.0007936508045531809,-0.0027777778450399637,-4.7704895589362195e-18,-3.5236570605778894e-19,-2.710505431213761e-20,-8.131516293641283e-20,-1.8973538018496328e-19,-1.0842021724855044e-19,0.0007936508045531809,3.053317834506719e-20,8.365549677170299e-18,1.0077318063968147e-18,1.990578297655278e-18,0.0027777778450399637,2.1412992906588713e-18,-0.0007936508045531809,-5.126824077573038e-18,-0.0027777778450399637,-4.336808689942018e-19,-1.3552527156068805e-20,-1.8973538018496328e-19,1.6263032587282567e-19,-2.710505431213761e-20,3.053317834506719e-20,0.0007936508045531809,1.8323620143261882e-18,1.7110131708985871e-18,1.2903752858031215e-17,0.004166666883975267,-1.1275702593849246e-17,-1.734723475976807e-17,-0.02500000037252903,1.7997756063259374e-17,9.75781955236954e-19,1.3010426069826053e-18,8.131516293641283e-19,1.1926223897340549e-18,4.336808689942018e-19,8.365549677170299e-18,1.8323620143261882e-18,0.012500000186264515,-1.572622371212605e-20,-1.3433389159623405e-17,0.0062500000931322575,-5.204170427930421e-18,-3.0357660829594124e-18,-0.0062500000931322575,-0.0062500000931322575,1.0842021724855044e-19,6.505213034913027e-19,4.87890977618477e-19,1.1384122811097797e-18,-5.421010862427522e-20,1.0077318063968147e-18,1.7110131708985871e-18,-1.572622371212605e-20,0.0062500000931322575,1.2761177526109737e-17,0.004166666883975267,-1.734723475976807e-17,-2.0816681711721685e-17,3.903127820947816e-18,-0.02500000037252903,1.1926223897340549e-18,1.328147661294743e-18,1.3552527156068805e-18,5.204170427930421e-18,3.2526065174565133e-19,1.990578297655278e-18,1.2903752858031215e-17,-1.3433389159623405e-17,1.2761177526109737e-17,0.012500000186264515,5.0,8.0,3.0,4.0,0.07408729940652847,-0.019771825522184372,-0.013611110858619213,-0.028541667386889458,-0.023333333432674408,0.0014880952658131719,0.0013888889225199819,0.0031250000465661287,0.0024999999441206455,0.0006944444612599909,0.0020833334419876337,0.0016666667070239782,0.0031250000465661287,0.0037499999161809683,0.0020833334419876337,-0.019771825522184372,0.018814483657479286,0.0013888889225199819,0.0031250000465661287,0.0024999999441206455,-0.0029761905316263437,-0.0006944444612599909,-0.0015625000232830644,-0.0012499999720603228,-3.482999479109683e-18,-2.4123498337802474e-18,-3.3068166260807885e-18,2.6020852139652106e-18,-1.734723475976807e-18,-3.686287386450715e-18,-0.013611110858619213,0.0013888889225199819,0.007361111231148243,0.0020833334419876337,0.0016666667070239782,-4.92677913182352e-18,-0.00039682540227659047,-3.0357660829594124e-18,-1.734723475976807e-18,-0.0006944444612599909,-0.0005952381179668009,-0.0004761904710903764,7.806255641895632e-18,1.5178830414797062e-18,-2.6020852139652106e-18,-0.028541667386889458,0.0031250000465661287,0.0020833334419876337,0.05979166552424431,0.0037499999161809683,-4.357303330388938e-18,3.8215954326277285e-20,-0.0031250000465661287,2.3310346708438345e-18,6.505213034913027e-19,-0.0020833334419876337,2.1080972948467584e-18,-0.01875000074505806,-0.0037499999161809683,7.806255641895632e-18,-0.023333333432674408,0.0024999999441206455,0.0016666667070239782,0.0037499999161809683,0.030138889327645302,-5.34034875858472e-18,-6.716945422332459e-19,-7.247467530963118e-19,-0.0016666667070239782,-2.0599841277224584e-18,1.951563910473908e-18,-0.0011111111380159855,2.677979366039196e-17,-0.0024999999441206455,-0.0062500000931322575,0.0014880952658131719,-0.0029761905316263437,-4.92677913182352e-18,-4.357303330388938e-18,-5.34034875858472e-18,0.0007440476329065859,2.710505431213761e-20,4.906639455256962e-19,6.427873420746198e-22,4.607859233063394e-19,4.472333961502706e-19,6.098637220230962e-19,4.607859233063394e-19,4.87890977618477e-19,7.860465750519907e-19,0.0013888889225199819,-0.0006944444612599909,-0.00039682540227659047,3.8215954326277285e-20,-6.716945422332459e-19,2.710505431213761e-20,0.00019841270113829523,2.8650563738510516e-19,-3.006671310307264e-20,1.7618285302889447e-19,9.486769009248164e-20,1.0842021724855044e-19,-4.0657581468206416e-19,-5.421010862427522e-20,1.3552527156068805e-19,0.0031250000465661287,-0.0015625000232830644,-3.0357660829594124e-18,-0.0031250000465661287,-7.247467530963118e-19,4.906639455256962e-19,2.8650563738510516e-19,0.0015625000232830644,-1.3552527156068805e-19,2.439454888092385e-19,2.710505431213761e-19,1.6263032587282567e-19,-1.3823577699190182e-18,-3.2526065174565133e-19,2.168404344971009e-19,0.0024999999441206455,-0.0012499999720603228,-1.734723475976807e-18,2.3310346708438345e-18,-0.0016666667070239782,6.427873420746198e-22,-3.006671310307264e-20,-1.3552527156068805e-19,0.0008333333535119891,2.168404344971009e-19,-4.0657581468206416e-20,1.0842021724855044e-19,-1.0028870095490916e-18,1.8973538018496328e-19,-4.2012834183813297e-19,0.0006944444612599909,-3.482999479109683e-18,-0.0006944444612599909,6.505213034913027e-19,-2.0599841277224584e-18,4.607859233063394e-19,1.7618285302889447e-19,2.439454888092385e-19,2.168404344971009e-19,9.920635056914762e-05,0.0,1.3552527156068805e-19,-4.336808689942018e-19,-5.421010862427522e-20,3.7947076036992655e-19,0.0020833334419876337,-2.4123498337802474e-18,-0.0005952381179668009,-0.0020833334419876337,1.951563910473908e-18,4.472333961502706e-19,9.486769009248164e-20,2.710505431213761e-19,-4.0657581468206416e-20,0.0,0.0005952381179668009,-3.734031417764315e-21,-2.5763588629390458e-18,-6.90773359664205e-19,-3.8156014104905307e-19,0.0016666667070239782,-3.3068166260807885e-18,-0.0004761904710903764,2.1080972948467584e-18,-0.0011111111380159855,6.098637220230962e-19,1.0842021724855044e-19,1.6263032587282567e-19,1.0842021724855044e-19,1.3552527156068805e-19,-3.734031417764315e-21,0.0003174603043589741,-1.1486771789212565e-18,-7.733695410261269e-20,-7.409821242469227e-20,0.0031250000465661287,2.6020852139652106e-18,7.806255641895632e-18,-0.01875000074505806,2.677979366039196e-17,4.607859233063394e-19,-4.0657581468206416e-19,-1.3823577699190182e-18,-1.0028870095490916e-18,-4.336808689942018e-19,-2.5763588629390458e-18,-1.1486771789212565e-18,0.00937500037252903,-6.548335614606641e-18,-4.696145460612097e-18,0.0037499999161809683,-1.734723475976807e-18,1.5178830414797062e-18,-0.0037499999161809683,-0.0024999999441206455,4.87890977618477e-19,-5.421010862427522e-20,-3.2526065174565133e-19,1.8973538018496328e-19,-5.421010862427522e-20,-6.90773359664205e-19,-7.733695410261269e-20,-6.548335614606641e-18,0.0024999999441206455,1.6005715310281102e-18,0.0020833334419876337,-3.686287386450715e-18,-2.6020852139652106e-18,7.806255641895632e-18,-0.0062500000931322575,7.860465750519907e-19,1.3552527156068805e-19,2.168404344971009e-19,-4.2012834183813297e-19,3.7947076036992655e-19,-3.8156014104905307e-19,-7.409821242469227e-20,-4.696145460612097e-18,1.6005715310281102e-18,0.0020833334419876337,5.0,8.0,3.0,5.0,0.062261905521154404,-0.016150793060660362,-0.011111111380159855,-0.023333333432674408,-0.016150793060660362,0.0011904762359336019,0.0011111111380159855,0.0024999999441206455,0.0016666667070239782,0.0005555555690079927,0.0016666667070239782,0.0011111111380159855,0.0024999999441206455,0.0024999999441206455,0.0011904762359336019,-0.016150793060660362,0.015218254178762436,0.0011111111380159855,0.0024999999441206455,0.0016666667070239782,-0.0023809524718672037,-0.0005555555690079927,-0.0012499999720603228,-0.0008333333535119891,-1.179069862577986e-18,-3.5236570605778894e-19,-1.4907779871675686e-19,4.336808689942018e-19,2.2768245622195593e-18,1.0842021724855044e-18,-0.011111111380159855,0.0011111111380159855,0.0059523810632526875,0.0016666667070239782,0.0011111111380159855,-3.0708873445878014e-20,-0.0003174603043589741,-6.505213034913027e-19,-5.421010862427522e-19,-0.0005555555690079927,-0.0004761904710903764,-0.0003174603043589741,0.0,6.505213034913027e-19,1.734723475976807e-18,-0.023333333432674408,0.0024999999441206455,0.0016666667070239782,0.04833333194255829,0.0024999999441206455,3.630185102175225e-18,2.172229228123454e-18,-0.0024999999441206455,4.336808689942018e-19,-3.2526065174565133e-19,-0.0016666667070239782,1.2616074950621757e-18,-0.014999999664723873,-0.0024999999441206455,9.75781955236954e-19,-0.016150793060660362,0.0016666667070239782,0.0011111111380159855,0.0024999999441206455,0.015218254178762436,1.8953755994147122e-18,1.1734061569238355e-18,1.5788564889849447e-18,-0.0008333333535119891,-1.0842021724855044e-19,2.981555974335137e-19,-0.0005555555690079927,1.734723475976807e-18,-0.0012499999720603228,-0.0023809524718672037,0.0011904762359336019,-0.0023809524718672037,-3.0708873445878014e-20,3.630185102175225e-18,1.8953755994147122e-18,0.0005952381179668009,-6.369687763352339e-19,-4.919705807008002e-19,-2.57107715963153e-19,1.3552527156068805e-19,4.0657581468206416e-20,5.421010862427522e-20,-7.860465750519907e-19,-4.607859233063394e-19,-2.303929616531697e-19,0.0011111111380159855,-0.0005555555690079927,-0.0003174603043589741,2.172229228123454e-18,1.1734061569238355e-18,-6.369687763352339e-19,0.00015873015217948705,-3.365388458075056e-19,-1.4070326709890515e-19,6.776263578034403e-20,-4.0657581468206416e-20,-2.0328790734103208e-20,-3.6591823321385775e-19,-2.574980159653073e-19,-1.2197274440461925e-19,0.0024999999441206455,-0.0012499999720603228,-6.505213034913027e-19,-0.0024999999441206455,1.5788564889849447e-18,-4.919705807008002e-19,-3.365388458075056e-19,0.0012499999720603228,-1.0842021724855044e-19,1.3552527156068805e-19,2.168404344971009e-19,-0.0,3.7947076036992655e-18,-0.0,-2.981555974335137e-19,0.0016666667070239782,-0.0008333333535119891,-5.421010862427522e-19,4.336808689942018e-19,-0.0008333333535119891,-2.57107715963153e-19,-1.4070326709890515e-19,-1.0842021724855044e-19,0.00041666667675599456,8.131516293641283e-20,5.421010862427522e-20,-5.421010862427522e-20,-2.981555974335137e-19,8.131516293641283e-20,1.2197274440461925e-19,0.0005555555690079927,-1.179069862577986e-18,-0.0005555555690079927,-3.2526065174565133e-19,-1.0842021724855044e-19,1.3552527156068805e-19,6.776263578034403e-20,1.3552527156068805e-19,8.131516293641283e-20,7.936507608974352e-05,5.421010862427522e-20,2.710505431213761e-20,2.710505431213761e-19,2.710505431213761e-20,0.0,0.0016666667070239782,-3.5236570605778894e-19,-0.0004761904710903764,-0.0016666667070239782,2.981555974335137e-19,4.0657581468206416e-20,-4.0657581468206416e-20,2.168404344971009e-19,5.421010862427522e-20,5.421010862427522e-20,0.0004761904710903764,1.3552527156068805e-20,3.9302328752599536e-19,4.0657581468206416e-20,-1.3552527156068805e-19,0.0011111111380159855,-1.4907779871675686e-19,-0.0003174603043589741,1.2616074950621757e-18,-0.0005555555690079927,5.421010862427522e-20,-2.0328790734103208e-20,-0.0,-5.421010862427522e-20,2.710505431213761e-20,1.3552527156068805e-20,0.00015873015217948705,-4.946672411965114e-19,-1.7618285302889447e-19,-5.929230630780102e-19,0.0024999999441206455,4.336808689942018e-19,0.0,-0.014999999664723873,1.734723475976807e-18,-7.860465750519907e-19,-3.6591823321385775e-19,3.7947076036992655e-18,-2.981555974335137e-19,2.710505431213761e-19,3.9302328752599536e-19,-4.946672411965114e-19,0.007499999832361937,2.872213037113284e-18,-5.778132133224455e-19,0.0024999999441206455,2.2768245622195593e-18,6.505213034913027e-19,-0.0024999999441206455,-0.0012499999720603228,-4.607859233063394e-19,-2.574980159653073e-19,-0.0,8.131516293641283e-20,2.710505431213761e-20,4.0657581468206416e-20,-1.7618285302889447e-19,2.872213037113284e-18,0.0012499999720603228,6.216853220486096e-19,0.0011904762359336019,1.0842021724855044e-18,1.734723475976807e-18,9.75781955236954e-19,-0.0023809524718672037,-2.303929616531697e-19,-1.2197274440461925e-19,-2.981555974335137e-19,1.2197274440461925e-19,0.0,-1.3552527156068805e-19,-5.929230630780102e-19,-5.778132133224455e-19,6.216853220486096e-19,0.0005952381179668009,5.0,8.0,3.0,6.0,0.05373677238821983,-0.013657407835125923,-0.009391534142196178,-0.01974206417798996,-0.01185515895485878,0.0009920635493472219,0.0009259259095415473,0.0020833334419876337,0.0011904762359336019,0.00046296295477077365,0.0013888889225199819,0.0007936508045531809,0.0020833334419876337,0.0017857142956927419,0.0007440476329065859,-0.013657407835125923,0.012781084515154362,0.0009259259095415473,0.0020833334419876337,0.0011904762359336019,-0.0019841270986944437,-0.00046296295477077365,-0.0010416667209938169,-0.0005952381179668009,-4.743384504624082e-20,-1.1858461261560205e-20,-5.929230630780102e-21,-0.0,-0.0,-0.0,-0.009391534142196178,0.0009259259095415473,0.004998110234737396,0.0013888889225199819,0.0007936508045531809,-0.0,-0.00026455026818439364,-0.0,-0.0,-0.00046296295477077365,-0.00039682540227659047,-0.00022675737272948027,-0.0,-0.0,-0.0,-0.01974206417798996,0.0020833334419876337,0.0013888889225199819,0.04057539626955986,0.0017857142956927419,-0.0,-1.1858461261560205e-20,-0.0020833334419876337,-0.0,-2.710505431213761e-20,-0.0013888889225199819,-1.1858461261560205e-20,-0.012500000186264515,-0.0017857142956927419,-1.3629969872967551e-18,-0.01185515895485878,0.0011904762359336019,0.0007936508045531809,0.0017857142956927419,0.008834325708448887,-0.0,-5.929230630780102e-21,-0.0,-0.0004761904710903764,3.1324237256583863e-21,-1.1858461261560205e-20,-0.0003174603043589741,-3.4074925716394644e-18,-0.0007142857066355646,-0.0011160714784637094,0.0009920635493472219,-0.0019841270986944437,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00046296295477077365,-0.00026455026818439364,-1.1858461261560205e-20,-5.929230630780102e-21,-0.0,0.00013227513409219682,-0.0,-0.0,1.3552527156068805e-20,3.3881317890172014e-21,1.6940658945086007e-21,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0010416667209938169,-0.0,-0.0020833334419876337,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-4.743384504624082e-20,-0.00046296295477077365,-2.710505431213761e-20,3.1324237256583863e-21,-0.0,1.3552527156068805e-20,-0.0,-0.0,6.613756704609841e-05,6.776263578034403e-21,3.3881317890172014e-21,0.0,0.0,0.0,0.0013888889225199819,-1.1858461261560205e-20,-0.00039682540227659047,-0.0013888889225199819,-1.1858461261560205e-20,-0.0,3.3881317890172014e-21,-0.0,-0.0,6.776263578034403e-21,0.00039682540227659047,3.3881317890172014e-21,-0.0,-0.0,-0.0,0.0007936508045531809,-5.929230630780102e-21,-0.00022675737272948027,-1.1858461261560205e-20,-0.0003174603043589741,-0.0,1.6940658945086007e-21,-0.0,-0.0,3.3881317890172014e-21,3.3881317890172014e-21,9.070294618140906e-05,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.012500000186264515,-3.4074925716394644e-18,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0062500000931322575,-0.0,6.814984936483776e-19,0.0017857142956927419,-0.0,-0.0,-0.0017857142956927419,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,0.0007440476329065859,-0.0,-0.0,-1.3629969872967551e-18,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,6.814984936483776e-19,-0.0,0.00022321428696159273,5.0,8.0,3.0,7.0,0.04728599637746811,-0.011833900585770607,-0.008134921081364155,-0.01711309514939785,-0.00907738134264946,0.0008503401186317205,0.0007936508045531809,0.0017857142956927419,0.0008928571478463709,0.00039682540227659047,0.0011904762359336019,0.0005952381179668009,0.0017857142956927419,0.0013392857508733869,0.0004960317746736109,-0.011833900585770607,0.01101899053901434,0.0007936508045531809,0.0017857142956927419,0.0008928571478463709,-0.001700680237263441,-0.00039682540227659047,-0.0008928571478463709,-0.00044642857392318547,2.8624336943213757e-19,-5.624266716519818e-19,7.793913900361188e-19,-1.4500871530387375e-17,-4.45287350361663e-20,1.1159770749458102e-18,-0.008134921081364155,0.0007936508045531809,0.004308389965444803,0.0011904762359336019,0.0005952381179668009,1.1687594698328189e-18,-0.00022675737272948027,-1.2281865290322836e-19,-6.776263578034403e-20,-0.00039682540227659047,-0.0003401360590942204,-0.0001700680295471102,-5.492313417639287e-18,-8.402566836762659e-19,9.66296054767349e-19,-0.01711309514939785,0.0017857142956927419,0.0011904762359336019,0.0349702388048172,0.0013392857508733869,-7.234251976509088e-18,-3.1086098824475166e-18,-0.0017857142956927419,3.8007904831288273e-19,-1.0299920638612292e-18,-0.0011904762359336019,-6.587559898868446e-19,-0.010714286006987095,-0.0013392857508733869,4.017073604688221e-18,-0.00907738134264946,0.0008928571478463709,0.0005952381179668009,0.0013392857508733869,0.0056051588617265224,1.8998229359781035e-18,8.476691654676273e-20,3.733785751584735e-18,-0.00029761905898340046,1.1022682106539688e-18,-6.776263578034403e-20,-0.00019841270113829523,1.1069187854938645e-17,-0.00044642857392318547,-0.0005952381179668009,0.0008503401186317205,-0.001700680237263441,1.1687594698328189e-18,-7.234251976509088e-18,1.8998229359781035e-18,0.00042517005931586027,-4.0417207952077335e-20,6.905177091561378e-19,-5.304758382151437e-20,-6.293781405194439e-20,5.394669683561683e-20,-1.6184009696919903e-19,2.8322016904986345e-18,-1.3682375881327256e-33,-1.5734453836103525e-19,0.0007936508045531809,-0.00039682540227659047,-0.00022675737272948027,-3.1086098824475166e-18,8.476691654676273e-20,-4.0417207952077335e-20,0.00011337868636474013,2.596634455620004e-19,1.1235437548355787e-20,-1.0164395367051604e-20,9.825582188149884e-20,-1.1858461261560205e-20,9.06304470649211e-19,9.390931734230799e-20,-2.4560383407221673e-20,0.0017857142956927419,-0.0008928571478463709,-1.2281865290322836e-19,-0.0017857142956927419,3.733785751584735e-18,6.905177091561378e-19,2.596634455620004e-19,0.0008928571478463709,-1.982541126480377e-19,6.138901697734314e-34,2.587968362770348e-34,-1.321694127402575e-19,1.404897950857011e-32,-2.973811754344051e-19,-3.965082252960754e-19,0.0008928571478463709,-0.00044642857392318547,-6.776263578034403e-20,3.8007904831288273e-19,-0.00029761905898340046,-5.304758382151437e-20,1.1235437548355787e-20,-1.982541126480377e-19,0.00014880952949170023,3.6108637499764483e-22,9.148275272312493e-22,1.3880997023021918e-20,-3.611118645726067e-35,4.409096827622465e-21,-1.376442372753072e-21,0.00039682540227659047,2.8624336943213757e-19,-0.00039682540227659047,-1.0299920638612292e-18,1.1022682106539688e-18,-6.293781405194439e-20,-1.0164395367051604e-20,6.138901697734314e-34,3.6108637499764483e-22,5.668934318237007e-05,3.3881317890172014e-20,-7.792703114739563e-20,2.64338825480515e-19,3.21718974555429e-20,-1.4493910391942435e-19,0.0011904762359336019,-5.624266716519818e-19,-0.0003401360590942204,-0.0011904762359336019,-6.776263578034403e-20,5.394669683561683e-20,9.825582188149884e-20,2.587968362770348e-34,9.148275272312493e-22,3.3881317890172014e-20,0.0003401360590942204,5.421010862427522e-20,1.0551973944990622e-18,1.0976231779241773e-19,-3.593303277085896e-20,0.0005952381179668009,7.793913900361188e-19,-0.0001700680295471102,-6.587559898868446e-19,-0.00019841270113829523,-1.6184009696919903e-19,-1.1858461261560205e-20,-1.321694127402575e-19,1.3880997023021918e-20,-7.792703114739563e-20,5.421010862427522e-20,5.668934318237007e-05,2.0769478960259076e-19,6.822725925300594e-20,3.009272405592831e-20,0.0017857142956927419,-1.4500871530387375e-17,-5.492313417639287e-18,-0.010714286006987095,1.1069187854938645e-17,2.8322016904986345e-18,9.06304470649211e-19,1.404897950857011e-32,-3.611118645726067e-35,2.64338825480515e-19,1.0551973944990622e-18,2.0769478960259076e-19,0.0053571430034935474,-1.4869058513226313e-18,-1.5529905512304115e-18,0.0013392857508733869,-4.45287350361663e-20,-8.402566836762659e-19,-0.0013392857508733869,-0.00044642857392318547,-1.3682375881327256e-33,9.390931734230799e-20,-2.973811754344051e-19,4.409096827622465e-21,3.21718974555429e-20,1.0976231779241773e-19,6.822725925300594e-20,-1.4869058513226313e-18,0.00044642857392318547,2.5631808886573373e-21,0.0004960317746736109,1.1159770749458102e-18,9.66296054767349e-19,4.017073604688221e-18,-0.0005952381179668009,-1.5734453836103525e-19,-2.4560383407221673e-20,-3.965082252960754e-19,-1.376442372753072e-21,-1.4493910391942435e-19,-3.593303277085896e-20,3.009272405592831e-20,-1.5529905512304115e-18,2.5631808886573373e-21,9.920635056914762e-05,5.0,8.0,3.0,8.0,0.04222883656620979,-0.010441468097269535,-0.007175926119089127,-0.015104166232049465,-0.007175926119089127,0.0007440476329065859,0.0006944444612599909,0.0015625000232830644,0.0006944444612599909,0.00034722223062999547,0.0010416667209938169,0.00046296295477077365,0.0015625000232830644,0.0010416667209938169,0.00034722223062999547,-0.010441468097269535,0.009685019962489605,0.0006944444612599909,0.0015625000232830644,0.0006944444612599909,-0.0014880952658131719,-0.00034722223062999547,-0.0007812500116415322,-0.00034722223062999547,2.018902305997589e-21,1.2052862438000804e-20,5.929230630780102e-21,-1.168033520320042e-34,-0.0,-3.2248508597432086e-21,-0.007175926119089127,0.0006944444612599909,0.0037863757461309433,0.0010416667209938169,0.00046296295477077365,-0.0,-0.00019841270113829523,-0.0,1.6940658945086007e-20,-0.00034722223062999547,-0.00029761905898340046,-0.00013227513409219682,1.4444474582904269e-34,-0.0,4.9735216606728196e-20,-0.015104166232049465,0.0015625000232830644,0.0010416667209938169,0.03072916716337204,0.0010416667209938169,-0.0,1.1858461261560205e-20,-0.0015625000232830644,1.9440099973575682e-22,2.710505431213761e-20,-0.0010416667209938169,5.929230630780102e-21,-0.00937500037252903,-0.0010416667209938169,-5.779009461661644e-19,-0.007175926119089127,0.0006944444612599909,0.00046296295477077365,0.0010416667209938169,0.0037863757461309433,-0.0,-3.8774404233430364e-22,-0.0,-0.00019841270113829523,1.2759971806969365e-20,6.776263578034403e-21,-0.00013227513409219682,-2.0238439863745572e-18,-0.00029761905898340046,-0.00034722223062999547,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,-0.00019841270113829523,1.1858461261560205e-20,-3.8774404233430364e-22,-0.0,9.920635056914762e-05,-0.0,-3.2961668138268682e-22,-0.0,-3.3881317890172014e-21,1.6940658945086007e-21,-1.0302607511749805e-37,-0.0,-6.448259101150047e-22,0.0015625000232830644,-0.0007812500116415322,-0.0,-0.0015625000232830644,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,1.6940658945086007e-20,1.9440099973575682e-22,-0.00019841270113829523,-0.0,-3.2961668138268682e-22,-0.0,9.920635056914762e-05,-5.768292302850254e-22,-5.554314097853417e-23,-3.3881317890172014e-21,3.347541301217091e-35,-0.0,1.5662118628291932e-21,0.00034722223062999547,2.018902305997589e-21,-0.00034722223062999547,2.710505431213761e-20,1.2759971806969365e-20,-0.0,-0.0,-0.0,-5.768292302850254e-22,4.960317528457381e-05,-6.776263578034403e-21,0.0,-1.8029563425821852e-37,0.0,-2.100713820922386e-21,0.0010416667209938169,1.2052862438000804e-20,-0.00029761905898340046,-0.0010416667209938169,6.776263578034403e-21,-0.0,-3.3881317890172014e-21,-0.0,-5.554314097853417e-23,-6.776263578034403e-21,0.00029761905898340046,-1.6940658945086007e-21,4.9606826594875005e-37,-0.0,-9.720049986787841e-23,0.00046296295477077365,5.929230630780102e-21,-0.00013227513409219682,5.929230630780102e-21,-0.00013227513409219682,-0.0,1.6940658945086007e-21,-0.0,-3.3881317890172014e-21,0.0,-1.6940658945086007e-21,3.779289545491338e-05,-4.0962761013931935e-35,-0.0,-9.269417448218339e-21,0.0015625000232830644,-1.168033520320042e-34,1.4444474582904269e-34,-0.00937500037252903,-2.0238439863745572e-18,-0.0,-1.0302607511749805e-37,-0.0,3.347541301217091e-35,-1.8029563425821852e-37,4.9606826594875005e-37,-4.0962761013931935e-35,0.004687500186264515,-0.0,2.8912058794593256e-19,0.0010416667209938169,-0.0,-0.0,-0.0010416667209938169,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-0.0,0.00034722223062999547,-3.2248508597432086e-21,4.9735216606728196e-20,-5.779009461661644e-19,-0.00034722223062999547,-0.0,-6.448259101150047e-22,-0.0,1.5662118628291932e-21,-2.100713820922386e-21,-9.720049986787841e-23,-9.269417448218339e-21,2.8912058794593256e-19,-0.0,4.960317528457381e-05,5.0,8.0,4.0,3.0,0.07408729940652847,-0.019771825522184372,-0.013611110858619213,-0.023333333432674408,-0.028541667386889458,0.0014880952658131719,0.0013888889225199819,0.0024999999441206455,0.0031250000465661287,0.0006944444612599909,0.0016666667070239782,0.0020833334419876337,0.0020833334419876337,0.0037499999161809683,0.0031250000465661287,-0.019771825522184372,0.018814483657479286,0.0013888889225199819,0.0024999999441206455,0.0031250000465661287,-0.0029761905316263437,-0.0006944444612599909,-0.0012499999720603228,-0.0015625000232830644,-2.9544509200229996e-18,-3.0086610286472748e-18,-2.4665599424045226e-18,-1.0842021724855044e-18,-9.75781955236954e-19,2.168404344971009e-18,-0.013611110858619213,0.0013888889225199819,0.007361111231148243,0.0016666667070239782,0.0020833334419876337,-4.812820940373927e-18,-0.00039682540227659047,-1.5178830414797062e-18,-2.8189256484623115e-18,-0.0006944444612599909,-0.0004761904710903764,-0.0005952381179668009,-1.734723475976807e-18,1.0842021724855044e-18,7.806255641895632e-18,-0.023333333432674408,0.0024999999441206455,0.0016666667070239782,0.030138889327645302,0.0037499999161809683,-5.0632296048993486e-18,-7.189447531835e-19,-0.0016666667070239782,-3.2526065174565133e-19,-2.0057740190981832e-18,-0.0011111111380159855,1.690907305339567e-18,-0.0062500000931322575,-0.0024999999441206455,1.9949319973733282e-17,-0.028541667386889458,0.0031250000465661287,0.0020833334419876337,0.0037499999161809683,0.05979166552424431,-4.11929699837783e-18,1.3923264336736244e-19,2.7140348040923717e-18,-0.0031250000465661287,-1.0842021724855044e-19,9.486769009248164e-19,-0.0020833334419876337,1.0733601507606494e-17,-0.0037499999161809683,-0.01875000074505806,0.0014880952658131719,-0.0029761905316263437,-4.812820940373927e-18,-5.0632296048993486e-18,-4.11929699837783e-18,0.0007440476329065859,1.3552527156068805e-20,-4.025307076162238e-20,4.920781141804321e-19,4.336808689942018e-19,5.827586677109586e-19,4.336808689942018e-19,7.453889935837843e-19,4.336808689942018e-19,3.7947076036992655e-19,0.0013888889225199819,-0.0006944444612599909,-0.00039682540227659047,-7.189447531835e-19,1.3923264336736244e-19,1.3552527156068805e-20,0.00019841270113829523,-4.038902888128798e-20,2.517902887929324e-19,1.8973538018496328e-19,1.0842021724855044e-19,9.486769009248164e-20,1.3552527156068805e-19,2.710505431213761e-20,-4.607859233063394e-19,0.0024999999441206455,-0.0012499999720603228,-1.5178830414797062e-18,-0.0016666667070239782,2.7140348040923717e-18,-4.025307076162238e-20,-4.038902888128798e-20,0.0008333333535119891,-2.981555974335137e-19,1.8973538018496328e-19,-1.3552527156068805e-20,6.776263578034403e-20,-1.8431436932253575e-18,-4.607859233063394e-19,-8.131516293641283e-19,0.0031250000465661287,-0.0015625000232830644,-2.8189256484623115e-18,-3.2526065174565133e-19,-0.0031250000465661287,4.920781141804321e-19,2.517902887929324e-19,-2.981555974335137e-19,0.0015625000232830644,2.710505431213761e-19,2.168404344971009e-19,8.131516293641283e-20,1.8973538018496328e-19,-4.87890977618477e-19,-1.4094628242311558e-18,0.0006944444612599909,-2.9544509200229996e-18,-0.0006944444612599909,-2.0057740190981832e-18,-1.0842021724855044e-19,4.336808689942018e-19,1.8973538018496328e-19,1.8973538018496328e-19,2.710505431213761e-19,9.920635056914762e-05,1.0842021724855044e-19,5.421010862427522e-20,4.336808689942018e-19,5.421010862427522e-20,-3.2526065174565133e-19,0.0016666667070239782,-3.0086610286472748e-18,-0.0004761904710903764,-0.0011111111380159855,9.486769009248164e-19,5.827586677109586e-19,1.0842021724855044e-19,-1.3552527156068805e-20,2.168404344971009e-19,1.0842021724855044e-19,0.0003174603043589741,4.128767983747015e-20,-8.5528247120208e-19,-1.3322591625294378e-19,-6.808920151630113e-19,0.0020833334419876337,-2.4665599424045226e-18,-0.0005952381179668009,1.690907305339567e-18,-0.0020833334419876337,4.336808689942018e-19,9.486769009248164e-20,6.776263578034403e-20,8.131516293641283e-20,5.421010862427522e-20,4.128767983747015e-20,0.0005952381179668009,-2.976954782177811e-19,-1.1041803420374617e-18,-2.9982387597242598e-18,0.0020833334419876337,-1.0842021724855044e-18,-1.734723475976807e-18,-0.0062500000931322575,1.0733601507606494e-17,7.453889935837843e-19,1.3552527156068805e-19,-1.8431436932253575e-18,1.8973538018496328e-19,4.336808689942018e-19,-8.5528247120208e-19,-2.976954782177811e-19,0.0020833334419876337,-3.346446849228204e-18,-2.489947853839e-18,0.0037499999161809683,-9.75781955236954e-19,1.0842021724855044e-18,-0.0024999999441206455,-0.0037499999161809683,4.336808689942018e-19,2.710505431213761e-20,-4.607859233063394e-19,-4.87890977618477e-19,5.421010862427522e-20,-1.3322591625294378e-19,-1.1041803420374617e-18,-3.346446849228204e-18,0.0024999999441206455,-8.921435728321247e-18,0.0031250000465661287,2.168404344971009e-18,7.806255641895632e-18,1.9949319973733282e-17,-0.01875000074505806,3.7947076036992655e-19,-4.607859233063394e-19,-8.131516293641283e-19,-1.4094628242311558e-18,-3.2526065174565133e-19,-6.808920151630113e-19,-2.9982387597242598e-18,-2.489947853839e-18,-8.921435728321247e-18,0.00937500037252903,5.0,8.0,4.0,4.0,0.05969047546386719,-0.015297618694603443,-0.010520833544433117,-0.018062500283122063,-0.018062500283122063,0.0011160714784637094,0.0010416667209938169,0.0018749999580904841,0.0018749999580904841,0.0005208333604969084,0.0012499999720603228,0.0012499999720603228,0.0015625000232830644,0.0022499999031424522,0.0015625000232830644,-0.015297618694603443,0.014345237985253334,0.0010416667209938169,0.0018749999580904841,0.0018749999580904841,-0.0022321429569274187,-0.0005208333604969084,-0.0009374999790452421,-0.0009374999790452421,-3.3881317890172014e-19,2.846030702774449e-19,5.692061405548898e-19,-6.5052130349130266e-18,-2.168404344971009e-18,-7.806255641895632e-18,-0.010520833544433117,0.0010416667209938169,0.0056101190857589245,0.0012499999720603228,0.0012499999720603228,2.173328344362384e-18,-0.00029761905898340046,-9.75781955236954e-19,-1.3010426069826053e-18,-0.0005208333604969084,-0.0003571428533177823,-0.0003571428533177823,-7.806255641895632e-18,-5.312590645178972e-18,-8.239936510889834e-18,-0.018062500283122063,0.0018749999580904841,0.0012499999720603228,0.022979166358709335,0.0022499999031424522,2.2872906200162513e-19,-3.5112232952002986e-18,-0.0012499999720603228,-1.9244588561617704e-18,-1.7889335846010823e-18,-0.0008333333535119891,-6.232043668652596e-18,-0.004687500186264515,-0.001500000013038516,-3.7947076036992655e-18,-0.018062500283122063,0.0018749999580904841,0.0012499999720603228,0.0022499999031424522,0.022979166358709335,8.513075323166388e-20,-3.402325794738305e-18,-2.3529340707660228e-18,-0.0012499999720603228,-1.734723475976807e-18,-6.261267546103788e-18,-0.0008333333535119891,-3.2526065174565133e-18,-0.001500000013038516,-0.004687500186264515,0.0011160714784637094,-0.0022321429569274187,2.173328344362384e-18,2.2872906200162513e-19,8.513075323166388e-20,0.0005580357392318547,-2.574980159653073e-19,-7.829046070433905e-20,-9.735049855045369e-20,-0.0,-3.3881317890172014e-19,-3.6591823321385775e-19,5.827586677109586e-19,-2.981555974335137e-19,6.640738306473715e-19,0.0010416667209938169,-0.0005208333604969084,-0.00029761905898340046,-3.5112232952002986e-18,-3.402325794738305e-18,-2.574980159653073e-19,0.00014880952949170023,3.725644097158711e-20,4.740039269904644e-20,2.710505431213761e-20,1.4230153513872246e-19,1.1519648082658485e-19,6.776263578034403e-19,4.743384504624082e-19,6.708500942254059e-19,0.0018749999580904841,-0.0009374999790452421,-9.75781955236954e-19,-0.0012499999720603228,-2.3529340707660228e-18,-7.829046070433905e-20,3.725644097158711e-20,0.0006249999860301614,-1.7618285302889447e-19,5.421010862427522e-20,2.0328790734103208e-19,1.0842021724855044e-19,8.402566836762659e-19,5.421010862427522e-19,4.743384504624082e-19,0.0018749999580904841,-0.0009374999790452421,-1.3010426069826053e-18,-1.9244588561617704e-18,-0.0012499999720603228,-9.735049855045369e-20,4.740039269904644e-20,-1.7618285302889447e-19,0.0006249999860301614,8.131516293641283e-20,1.0842021724855044e-19,2.303929616531697e-19,4.0657581468206416e-19,3.9302328752599536e-19,1.2468324983583301e-18,0.0005208333604969084,-3.3881317890172014e-19,-0.0005208333604969084,-1.7889335846010823e-18,-1.734723475976807e-18,-0.0,2.710505431213761e-20,5.421010862427522e-20,8.131516293641283e-20,7.440476474585012e-05,6.776263578034403e-20,6.776263578034403e-20,3.7947076036992655e-19,2.168404344971009e-19,3.7947076036992655e-19,0.0012499999720603228,2.846030702774449e-19,-0.0003571428533177823,-0.0008333333535119891,-6.261267546103788e-18,-3.3881317890172014e-19,1.4230153513872246e-19,2.0328790734103208e-19,1.0842021724855044e-19,6.776263578034403e-20,0.0002380952355451882,4.1234601984008095e-19,1.0309089935702442e-18,7.715870960530458e-19,1.0401608019264967e-18,0.0012499999720603228,5.692061405548898e-19,-0.0003571428533177823,-6.232043668652596e-18,-0.0008333333535119891,-3.6591823321385775e-19,1.1519648082658485e-19,1.0842021724855044e-19,2.303929616531697e-19,6.776263578034403e-20,4.1234601984008095e-19,0.0002380952355451882,1.020335350595132e-18,8.121895666129409e-19,1.4102351007305506e-18,0.0015625000232830644,-6.5052130349130266e-18,-7.806255641895632e-18,-0.004687500186264515,-3.2526065174565133e-18,5.827586677109586e-19,6.776263578034403e-19,8.402566836762659e-19,4.0657581468206416e-19,3.7947076036992655e-19,1.0309089935702442e-18,1.020335350595132e-18,0.0015625000232830644,6.340367829552514e-19,-7.846041788588514e-19,0.0022499999031424522,-2.168404344971009e-18,-5.312590645178972e-18,-0.001500000013038516,-0.001500000013038516,-2.981555974335137e-19,4.743384504624082e-19,5.421010862427522e-19,3.9302328752599536e-19,2.168404344971009e-19,7.715870960530458e-19,8.121895666129409e-19,6.340367829552514e-19,0.0010000000474974513,7.295266162659494e-19,0.0015625000232830644,-7.806255641895632e-18,-8.239936510889834e-18,-3.7947076036992655e-18,-0.004687500186264515,6.640738306473715e-19,6.708500942254059e-19,4.743384504624082e-19,1.2468324983583301e-18,3.7947076036992655e-19,1.0401608019264967e-18,1.4102351007305506e-18,-7.846041788588514e-19,7.295266162659494e-19,0.0015625000232830644,5.0,8.0,4.0,5.0,0.05007142946124077,-0.012488095089793205,-0.00858333334326744,-0.014750000089406967,-0.012488095089793205,0.0008928571478463709,0.0008333333535119891,0.001500000013038516,0.0012499999720603228,0.00041666667675599456,0.0010000000474974513,0.0008333333535119891,0.0012499999720603228,0.001500000013038516,0.0008928571478463709,-0.012488095089793205,0.011601190082728863,0.0008333333535119891,0.001500000013038516,0.0012499999720603228,-0.0017857142956927419,-0.00041666667675599456,-0.000750000006519258,-0.0006249999860301614,-8.673617379884035e-19,-7.860465750519907e-19,-3.1170812458958252e-19,-2.3852447794681098e-18,-2.168404344971009e-19,1.4094628242311558e-18,-0.00858333334326744,0.0008333333535119891,0.004535714164376259,0.0010000000474974513,0.0008333333535119891,-2.100153052243799e-18,-0.0002380952355451882,-1.0842021724855044e-18,-2.168404344971009e-19,-0.00041666667675599456,-0.0002857142826542258,-0.0002380952355451882,2.168404344971009e-19,-3.2526065174565133e-19,-2.168404344971009e-19,-0.014750000089406967,0.001500000013038516,0.0010000000474974513,0.018583333119750023,0.001500000013038516,-3.5068226943415165e-18,1.6488094214791467e-19,-0.0010000000474974513,-2.710505431213761e-19,-1.6263032587282567e-19,-0.0006666666595265269,-6.008908803284273e-20,-0.0037499999161809683,-0.0010000000474974513,-3.3610267347050637e-18,-0.012488095089793205,0.0012499999720603228,0.0008333333535119891,0.001500000013038516,0.011601190082728863,1.4383763021574874e-18,6.235738270858564e-19,-1.036397233536957e-18,-0.0006249999860301614,-1.0842021724855044e-19,-2.574980159653073e-19,-0.00041666667675599456,-2.087089182034596e-18,-0.000750000006519258,-0.0017857142956927419,0.0008928571478463709,-0.0017857142956927419,-2.100153052243799e-18,-3.5068226943415165e-18,1.4383763021574874e-18,0.00044642857392318547,3.1170812458958252e-19,9.832836562121974e-19,-1.4353842218608212e-20,1.7618285302889447e-19,1.4907779871675686e-19,4.0657581468206416e-20,3.6591823321385775e-19,-9.486769009248164e-20,-3.3881317890172014e-19,0.0008333333535119891,-0.00041666667675599456,-0.0002380952355451882,1.6488094214791467e-19,6.235738270858564e-19,3.1170812458958252e-19,0.0001190476177725941,9.276756252774046e-20,-6.19271092033297e-20,2.710505431213761e-20,-6.776263578034403e-21,-6.776263578034403e-21,-5.421010862427522e-20,-6.098637220230962e-20,-8.131516293641283e-20,0.001500000013038516,-0.000750000006519258,-1.0842021724855044e-18,-0.0010000000474974513,-1.036397233536957e-18,9.832836562121974e-19,9.276756252774046e-20,0.0005000000237487257,6.776263578034403e-20,8.131516293641283e-20,1.1519648082658485e-19,4.0657581468206416e-20,6.369687763352339e-19,2.981555974335137e-19,7.453889935837843e-20,0.0012499999720603228,-0.0006249999860301614,-2.168404344971009e-19,-2.710505431213761e-19,-0.0006249999860301614,-1.4353842218608212e-20,-6.19271092033297e-20,6.776263578034403e-20,0.0003124999930150807,2.710505431213761e-20,6.776263578034403e-21,2.0328790734103208e-20,-5.421010862427522e-20,1.4907779871675686e-19,4.743384504624082e-20,0.00041666667675599456,-8.673617379884035e-19,-0.00041666667675599456,-1.6263032587282567e-19,-1.0842021724855044e-19,1.7618285302889447e-19,2.710505431213761e-20,8.131516293641283e-20,2.710505431213761e-20,5.952380888629705e-05,0.0,1.3552527156068805e-20,2.710505431213761e-20,2.710505431213761e-20,1.3552527156068805e-20,0.0010000000474974513,-7.860465750519907e-19,-0.0002857142826542258,-0.0006666666595265269,-2.574980159653073e-19,1.4907779871675686e-19,-6.776263578034403e-21,1.1519648082658485e-19,6.776263578034403e-21,0.0,0.00019047618843615055,9.360984080205972e-21,1.1778313922552352e-19,6.233417253758529e-20,2.975253956666734e-20,0.0008333333535119891,-3.1170812458958252e-19,-0.0002380952355451882,-6.008908803284273e-20,-0.00041666667675599456,4.0657581468206416e-20,-6.776263578034403e-21,4.0657581468206416e-20,2.0328790734103208e-20,1.3552527156068805e-20,9.360984080205972e-21,0.0001190476177725941,-1.1327307910724592e-19,1.4955822263158824e-19,8.826749320029885e-20,0.0012499999720603228,-2.3852447794681098e-18,2.168404344971009e-19,-0.0037499999161809683,-2.087089182034596e-18,3.6591823321385775e-19,-5.421010862427522e-20,6.369687763352339e-19,-5.421010862427522e-20,2.710505431213761e-20,1.1778313922552352e-19,-1.1327307910724592e-19,0.0012499999720603228,2.7464950256901776e-19,5.428080671725436e-19,0.001500000013038516,-2.168404344971009e-19,-3.2526065174565133e-19,-0.0010000000474974513,-0.000750000006519258,-9.486769009248164e-20,-6.098637220230962e-20,2.981555974335137e-19,1.4907779871675686e-19,2.710505431213761e-20,6.233417253758529e-20,1.4955822263158824e-19,2.7464950256901776e-19,0.0005000000237487257,6.4994692995346115e-19,0.0008928571478463709,1.4094628242311558e-18,-2.168404344971009e-19,-3.3610267347050637e-18,-0.0017857142956927419,-3.3881317890172014e-19,-8.131516293641283e-20,7.453889935837843e-20,4.743384504624082e-20,1.3552527156068805e-20,2.975253956666734e-20,8.826749320029885e-20,5.428080671725436e-19,6.4994692995346115e-19,0.00044642857392318547,5.0,8.0,4.0,6.0,0.04315972328186035,-0.010555555112659931,-0.0072519839741289616,-0.012470237910747528,-0.009159225970506668,0.0007440476329065859,0.0006944444612599909,0.0012499999720603228,0.0008928571478463709,0.00034722223062999547,0.0008333333535119891,0.0005952381179668009,0.0010416667209938169,0.0010714285308495164,0.0005580357392318547,-0.010555555112659931,0.009742063470184803,0.0006944444612599909,0.0012499999720603228,0.0008928571478463709,-0.0014880952658131719,-0.00034722223062999547,-0.0006249999860301614,-0.00044642857392318547,-2.371692252312041e-20,-1.1858461261560205e-20,5.929230630780102e-21,-1.0333891802646325e-35,-5.2748163773357086e-36,-0.0,-0.0072519839741289616,0.0006944444612599909,0.00380810652859509,0.0008333333535119891,0.0005952381179668009,-0.0,-0.00019841270113829523,-0.0,-0.0,-0.00034722223062999547,-0.0002380952355451882,-0.0001700680295471102,-3.965082252960754e-19,-9.063045094233022e-20,-0.0,-0.012470237910747528,0.0012499999720603228,0.0008333333535119891,0.015605159103870392,0.0010714285308495164,-0.0,-1.1858461261560205e-20,-0.0008333333535119891,-0.0,-2.710505431213761e-20,-0.0005555555690079927,-4.743384504624082e-20,-0.0031250000465661287,-0.0007142857066355646,-0.0,-0.009159225970506668,0.0008928571478463709,0.0005952381179668009,0.0010714285308495164,0.006732887122780085,-0.0,5.929230630780102e-21,-0.0,-0.0003571428533177823,2.578614875275162e-20,-1.3806430245091957e-19,-0.0002380952355451882,-2.1680018837749696e-34,-0.00042857142398133874,-0.0008370535797439516,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0006944444612599909,-0.00034722223062999547,-0.00019841270113829523,-1.1858461261560205e-20,5.929230630780102e-21,-0.0,9.920635056914762e-05,-0.0,-0.0,6.776263578034403e-21,3.3881317890172014e-21,-1.6940658945086007e-21,2.952540438170577e-36,1.507090444771975e-36,-0.0,0.0012499999720603228,-0.0006249999860301614,-0.0,-0.0008333333535119891,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.00044642857392318547,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-2.371692252312041e-20,-0.00034722223062999547,-2.710505431213761e-20,2.578614875275162e-20,-0.0,6.776263578034403e-21,-0.0,-0.0,4.960317528457381e-05,-0.0,-1.0164395367051604e-20,-2.5597880022305844e-36,-9.342432198800583e-37,-0.0,0.0008333333535119891,-1.1858461261560205e-20,-0.0002380952355451882,-0.0005555555690079927,-1.3806430245091957e-19,-0.0,3.3881317890172014e-21,-0.0,-0.0,-0.0,0.00015873015217948705,1.3552527156068805e-20,2.64338825480515e-19,6.042030278233632e-20,-0.0,0.0005952381179668009,5.929230630780102e-21,-0.0001700680295471102,-4.743384504624082e-20,-0.0002380952355451882,-0.0,-1.6940658945086007e-21,-0.0,-0.0,-1.0164395367051604e-20,1.3552527156068805e-20,6.80272132740356e-05,1.8820047682875357e-35,4.4182910984737916e-36,-0.0,0.0010416667209938169,-1.0333891802646325e-35,-3.965082252960754e-19,-0.0031250000465661287,-2.1680018837749696e-34,-0.0,2.952540438170577e-36,-0.0,-0.0,-2.5597880022305844e-36,2.64338825480515e-19,1.8820047682875357e-35,0.0010416667209938169,1.0062000906354684e-34,-0.0,0.0010714285308495164,-5.2748163773357086e-36,-9.063045094233022e-20,-0.0007142857066355646,-0.00042857142398133874,-0.0,1.507090444771975e-36,-0.0,-0.0,-9.342432198800583e-37,6.042030278233632e-20,4.4182910984737916e-36,1.0062000906354684e-34,0.0002857142826542258,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0008370535797439516,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,5.0,8.0,4.0,7.0,0.037942178547382355,-0.009143282659351826,-0.006279761902987957,-0.010803570970892906,-0.007008928339928389,0.0006377550889737904,0.0005952381179668009,0.0010714285308495164,0.0006696428754366934,0.00029761905898340046,0.0007142857066355646,0.00044642857392318547,0.0008928571478463709,0.0008035714272409678,0.00037202381645329297,-0.009143282659351826,0.00839817151427269,0.0005952381179668009,0.0010714285308495164,0.0006696428754366934,-0.0012755101779475808,-0.00029761905898340046,-0.0005357142654247582,-0.0003348214377183467,2.4176662075876566e-20,-5.21196648888146e-21,-2.371692252312041e-20,-0.0,7.745181265430965e-21,1.3240037061457025e-20,-0.006279761902987957,0.0005952381179668009,0.0032823130022734404,0.0007142857066355646,0.00044642857392318547,-0.0,-0.0001700680295471102,-0.0,-3.3881317890172014e-20,-0.00029761905898340046,-0.0002040816325461492,-0.00012755101488437504,-0.0,1.3552527156068805e-20,-7.089014105292167e-20,-0.010803570970892906,0.0010714285308495164,0.0007142857066355646,0.013452380895614624,0.0008035714272409678,-0.0,-5.677763685596147e-21,-0.0007142857066355646,8.288611462897028e-21,-2.710505431213761e-20,-0.0004761904710903764,4.12715465843511e-20,-0.0026785715017467737,-0.0005357142654247582,1.3449716845422847e-20,-0.007008928339928389,0.0006696428754366934,0.00044642857392318547,0.0008035714272409678,0.0042708334513008595,-0.0,4.3662199528825216e-21,-0.0,-0.00022321428696159273,5.686849343740376e-21,3.3881317890172014e-20,-0.00014880952949170023,-0.0,-0.0002678571327123791,-0.00044642857392318547,0.0006377550889737904,-0.0012755101779475808,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-0.0001700680295471102,-5.677763685596147e-21,4.3662199528825216e-21,-0.0,8.50340147735551e-05,-0.0,-8.756942960466715e-23,-6.776263578034403e-21,1.6940658945086007e-21,-3.3881317890172014e-21,-0.0,-8.382225195244596e-23,1.198940540655577e-21,0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,-0.0003348214377183467,-3.3881317890172014e-20,8.288611462897028e-21,-0.00022321428696159273,-0.0,-8.756942960466715e-23,-0.0,0.00011160714348079637,-1.5324650496361114e-22,-2.3908806412858013e-22,1.1858461261560205e-20,-0.0,-2.483934522204378e-21,-5.812109449302123e-21,0.00029761905898340046,2.4176662075876566e-20,-0.00029761905898340046,-2.710505431213761e-20,5.686849343740376e-21,-0.0,-6.776263578034403e-21,-0.0,-1.5324650496361114e-22,4.251700738677755e-05,6.776263578034403e-21,-3.3881317890172014e-21,0.0,-1.466889503831113e-22,-1.5312378345030772e-22,0.0007142857066355646,-5.21196648888146e-21,-0.0002040816325461492,-0.0004761904710903764,3.3881317890172014e-20,-0.0,1.6940658945086007e-21,-0.0,-2.3908806412858013e-22,6.776263578034403e-21,0.0001360544265480712,-8.470329472543003e-21,-0.0,-4.325626003736964e-22,-4.7817612825716025e-22,0.00044642857392318547,-2.371692252312041e-20,-0.00012755101488437504,4.12715465843511e-20,-0.00014880952949170023,-0.0,-3.3881317890172014e-21,-0.0,1.1858461261560205e-20,-3.3881317890172014e-21,-8.470329472543003e-21,4.251700738677755e-05,-0.0,-3.8751311434835286e-21,2.3456297622267984e-20,0.0008928571478463709,-0.0,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,0.0008035714272409678,7.745181265430965e-21,1.3552527156068805e-20,-0.0005357142654247582,-0.0002678571327123791,-0.0,-8.382225195244596e-23,-0.0,-2.483934522204378e-21,-1.466889503831113e-22,-4.325626003736964e-22,-3.8751311434835286e-21,-0.0,0.00017857142665889114,-3.925367017618353e-21,0.00037202381645329297,1.3240037061457025e-20,-7.089014105292167e-20,1.3449716845422847e-20,-0.00044642857392318547,-0.0,1.198940540655577e-21,-0.0,-5.812109449302123e-21,-1.5312378345030772e-22,-4.7817612825716025e-22,2.3456297622267984e-20,-0.0,-3.925367017618353e-21,7.440476474585012e-05,5.0,8.0,4.0,8.0,0.03385912626981735,-0.008065476082265377,-0.005538194440305233,-0.009531250223517418,-0.005538194440305233,0.0005580357392318547,0.0005208333604969084,0.0009374999790452421,0.0005208333604969084,0.0002604166802484542,0.0006249999860301614,0.00034722223062999547,0.0007812500116415322,0.0006249999860301614,0.0002604166802484542,-0.008065476082265377,0.007380952592939138,0.0005208333604969084,0.0009374999790452421,0.0005208333604969084,-0.0011160714784637094,-0.0002604166802484542,-0.00046874998952262104,-0.0002604166802484542,-1.2555180789670702e-20,9.47868253116173e-23,1.4823076576950256e-20,-0.0,3.974583779389118e-20,-3.457515601862921e-21,-0.005538194440305233,0.0005208333604969084,0.0028844245243817568,0.0006249999860301614,0.00034722223062999547,-0.0,-0.00014880952949170023,-0.0,1.0164395367051604e-20,-0.0002604166802484542,-0.00017857142665889114,-9.920635056914762e-05,-0.0,1.6940658945086007e-20,1.7643856169809846e-20,-0.009531250223517418,0.0009374999790452421,0.0006249999860301614,0.011822916567325592,0.0006249999860301614,-0.0,-1.7554002464080923e-21,-0.0006249999860301614,4.159602433549636e-20,-0.0,-0.00041666667675599456,-3.7969318794417235e-21,-0.0023437500931322575,-0.00041666667675599456,7.212180652266459e-20,-0.005538194440305233,0.0005208333604969084,0.00034722223062999547,0.0006249999860301614,0.0028844245243817568,-0.0,-1.5030151428611068e-21,-0.0,-0.00014880952949170023,-7.114401118396729e-21,-3.049318610115481e-20,-9.920635056914762e-05,-0.0,-0.00017857142665889114,-0.0002604166802484542,0.0005580357392318547,-0.0011160714784637094,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-0.0002604166802484542,-0.00014880952949170023,-1.7554002464080923e-21,-1.5030151428611068e-21,-0.0,7.440476474585012e-05,-0.0,1.1375008221826968e-22,3.3881317890172014e-21,-0.0,-8.470329472543003e-22,-0.0,5.015429203327267e-22,4.606549343288009e-22,0.0009374999790452421,-0.00046874998952262104,-0.0,-0.0006249999860301614,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-0.0002604166802484542,1.0164395367051604e-20,4.159602433549636e-20,-0.00014880952949170023,-0.0,1.1375008221826968e-22,-0.0,7.440476474585012e-05,1.9906265019285918e-22,-2.7081948285922874e-23,-3.3881317890172014e-21,-0.0,-1.1857495948247704e-20,5.272066734159049e-22,0.0002604166802484542,-1.2555180789670702e-20,-0.0002604166802484542,-0.0,-7.114401118396729e-21,-0.0,3.3881317890172014e-21,-0.0,1.9906265019285918e-22,3.720238237292506e-05,-0.0,-1.6940658945086007e-21,0.0,8.777001232040462e-22,2.760935923013702e-22,0.0006249999860301614,9.47868253116173e-23,-0.00017857142665889114,-0.00041666667675599456,-3.049318610115481e-20,-0.0,-0.0,-0.0,-2.7081948285922874e-23,-0.0,0.0001190476177725941,8.470329472543003e-21,-0.0,8.400218039641857e-22,-4.739341265580865e-23,0.00034722223062999547,1.4823076576950256e-20,-9.920635056914762e-05,-3.7969318794417235e-21,-9.920635056914762e-05,-0.0,-8.470329472543003e-22,-0.0,-3.3881317890172014e-21,-1.6940658945086007e-21,8.470329472543003e-21,2.8344671591185033e-05,-0.0,-7.385491792702511e-21,-5.881285255304354e-21,0.0007812500116415322,-0.0,-0.0,-0.0023437500931322575,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,0.0006249999860301614,3.974583779389118e-20,1.6940658945086007e-20,-0.00041666667675599456,-0.00017857142665889114,-0.0,5.015429203327267e-22,-0.0,-1.1857495948247704e-20,8.777001232040462e-22,8.400218039641857e-22,-7.385491792702511e-21,-0.0,0.0001190476177725941,-2.0558837417272448e-20,0.0002604166802484542,-3.457515601862921e-21,1.7643856169809846e-20,7.212180652266459e-20,-0.0002604166802484542,-0.0,4.606549343288009e-22,-0.0,5.272066734159049e-22,2.760935923013702e-22,-4.739341265580865e-23,-5.881285255304354e-21,-0.0,-2.0558837417272448e-20,3.720238237292506e-05,5.0,8.0,5.0,3.0,0.062261905521154404,-0.016150793060660362,-0.011111111380159855,-0.016150793060660362,-0.023333333432674408,0.0011904762359336019,0.0011111111380159855,0.0016666667070239782,0.0024999999441206455,0.0005555555690079927,0.0011111111380159855,0.0016666667070239782,0.0011904762359336019,0.0024999999441206455,0.0024999999441206455,-0.016150793060660362,0.015218254178762436,0.0011111111380159855,0.0016666667070239782,0.0024999999441206455,-0.0023809524718672037,-0.0005555555690079927,-0.0008333333535119891,-0.0012499999720603228,-1.463672932855431e-18,-6.776263578034403e-20,-3.2526065174565133e-19,1.8431436932253575e-18,3.7947076036992655e-18,3.469446951953614e-18,-0.011111111380159855,0.0011111111380159855,0.0059523810632526875,0.0011111111380159855,0.0016666667070239782,-2.478733300985524e-19,-0.0003174603043589741,-3.2526065174565133e-19,-4.336808689942018e-19,-0.0005555555690079927,-0.0003174603043589741,-0.0004761904710903764,2.3852447794681098e-18,1.3010426069826053e-18,2.6020852139652106e-18,-0.016150793060660362,0.0016666667070239782,0.0011111111380159855,0.015218254178762436,0.0024999999441206455,1.978337472155565e-18,1.6034390560191018e-18,-0.0008333333535119891,1.0299920638612292e-18,-2.710505431213761e-19,-0.0005555555690079927,1.1784371728069596e-18,-0.0023809524718672037,-0.0012499999720603228,5.854691731421724e-18,-0.023333333432674408,0.0024999999441206455,0.0016666667070239782,0.0024999999441206455,0.04833333194255829,3.1217587454646595e-18,2.380390056453036e-18,1.4825431456756618e-19,-0.0024999999441206455,-5.421010862427522e-19,1.951563910473908e-18,-0.0016666667070239782,2.222614453595284e-18,-0.0024999999441206455,-0.014999999664723873,0.0011904762359336019,-0.0023809524718672037,-2.478733300985524e-19,1.978337472155565e-18,3.1217587454646595e-18,0.0005952381179668009,-6.2341624917916505e-19,-2.662853882570054e-19,-3.518360002730253e-19,2.168404344971009e-19,4.0657581468206416e-20,8.131516293641283e-20,-2.439454888092385e-19,-4.87890977618477e-19,-7.860465750519907e-19,0.0011111111380159855,-0.0005555555690079927,-0.0003174603043589741,1.6034390560191018e-18,2.380390056453036e-18,-6.2341624917916505e-19,0.00015873015217948705,-1.915423820824795e-19,-2.512171301766156e-19,8.131516293641283e-20,-3.3881317890172014e-20,-5.421010862427522e-20,-1.7618285302889447e-19,-3.1170812458958252e-19,-4.743384504624082e-19,0.0016666667070239782,-0.0008333333535119891,-3.2526065174565133e-19,-0.0008333333535119891,1.4825431456756618e-19,-2.662853882570054e-19,-1.915423820824795e-19,0.00041666667675599456,-4.0657581468206416e-20,1.2197274440461925e-19,-5.421010862427522e-20,6.776263578034403e-20,-8.131516293641283e-20,-5.421010862427522e-20,-9.486769009248164e-20,0.0024999999441206455,-0.0012499999720603228,-4.336808689942018e-19,1.0299920638612292e-18,-0.0024999999441206455,-3.518360002730253e-19,-2.512171301766156e-19,-4.0657581468206416e-20,0.0012499999720603228,1.3552527156068805e-19,2.710505431213761e-20,-1.3552527156068805e-19,-1.4907779871675686e-19,-4.0657581468206416e-19,1.4365678785432934e-18,0.0005555555690079927,-1.463672932855431e-18,-0.0005555555690079927,-2.710505431213761e-19,-5.421010862427522e-19,2.168404344971009e-19,8.131516293641283e-20,1.2197274440461925e-19,1.3552527156068805e-19,7.936507608974352e-05,1.3552527156068805e-20,2.710505431213761e-20,0.0,8.131516293641283e-20,1.0842021724855044e-19,0.0011111111380159855,-6.776263578034403e-20,-0.0003174603043589741,-0.0005555555690079927,1.951563910473908e-18,4.0657581468206416e-20,-3.3881317890172014e-20,-5.421010862427522e-20,2.710505431213761e-20,1.3552527156068805e-20,0.00015873015217948705,-6.776263578034403e-21,-8.876905287225068e-19,-3.1848438816761693e-19,-6.708500942254059e-19,0.0016666667070239782,-3.2526065174565133e-19,-0.0004761904710903764,1.1784371728069596e-18,-0.0016666667070239782,8.131516293641283e-20,-5.421010862427522e-20,6.776263578034403e-20,-1.3552527156068805e-19,2.710505431213761e-20,-6.776263578034403e-21,0.0004761904710903764,-2.168404344971009e-19,-3.7947076036992655e-19,-1.0706496453294356e-18,0.0011904762359336019,1.8431436932253575e-18,2.3852447794681098e-18,-0.0023809524718672037,2.222614453595284e-18,-2.439454888092385e-19,-1.7618285302889447e-19,-8.131516293641283e-20,-1.4907779871675686e-19,0.0,-8.876905287225068e-19,-2.168404344971009e-19,0.0005952381179668009,-3.888226123438582e-20,-5.702032550845342e-19,0.0024999999441206455,3.7947076036992655e-18,1.3010426069826053e-18,-0.0012499999720603228,-0.0024999999441206455,-4.87890977618477e-19,-3.1170812458958252e-19,-5.421010862427522e-20,-4.0657581468206416e-19,8.131516293641283e-20,-3.1848438816761693e-19,-3.7947076036992655e-19,-3.888226123438582e-20,0.0012499999720603228,-1.0217964617496304e-18,0.0024999999441206455,3.469446951953614e-18,2.6020852139652106e-18,5.854691731421724e-18,-0.014999999664723873,-7.860465750519907e-19,-4.743384504624082e-19,-9.486769009248164e-20,1.4365678785432934e-18,1.0842021724855044e-19,-6.708500942254059e-19,-1.0706496453294356e-18,-5.702032550845342e-19,-1.0217964617496304e-18,0.007499999832361937,5.0,8.0,5.0,4.0,0.05007142946124077,-0.012488095089793205,-0.00858333334326744,-0.012488095089793205,-0.014750000089406967,0.0008928571478463709,0.0008333333535119891,0.0012499999720603228,0.001500000013038516,0.00041666667675599456,0.0008333333535119891,0.0010000000474974513,0.0008928571478463709,0.001500000013038516,0.0012499999720603228,-0.012488095089793205,0.011601190082728863,0.0008333333535119891,0.0012499999720603228,0.001500000013038516,-0.0017857142956927419,-0.00041666667675599456,-0.0006249999860301614,-0.000750000006519258,-7.047314121155779e-19,-3.6591823321385775e-19,-1.179069862577986e-18,7.589415207398531e-19,-3.7947076036992655e-19,-3.0357660829594124e-18,-0.00858333334326744,0.0008333333535119891,0.004535714164376259,0.0008333333535119891,0.0010000000474974513,-2.084057358294436e-18,-0.0002380952355451882,-2.168404344971009e-19,-9.75781955236954e-19,-0.00041666667675599456,-0.0002380952355451882,-0.0002857142826542258,-4.336808689942018e-19,-5.421010862427522e-19,-6.505213034913027e-19,-0.012488095089793205,0.0012499999720603228,0.0008333333535119891,0.011601190082728863,0.001500000013038516,1.5902519358986283e-18,4.811337391945313e-19,-0.0006249999860301614,-1.6805133673525319e-18,-2.981555974335137e-19,-0.00041666667675599456,-1.0985939777705849e-18,-0.0017857142956927419,-0.000750000006519258,-2.9815559743351372e-18,-0.014750000089406967,0.001500000013038516,0.0010000000474974513,0.001500000013038516,0.018583333119750023,-3.526179961446176e-18,-2.6364394206718216e-19,-1.3606797442082644e-18,-0.0010000000474974513,-1.6263032587282567e-19,-8.673617379884035e-19,-0.0006666666595265269,-4.662069341687669e-18,-0.0010000000474974513,-0.0037499999161809683,0.0008928571478463709,-0.0017857142956927419,-2.084057358294436e-18,1.5902519358986283e-18,-3.526179961446176e-18,0.00044642857392318547,3.5914196963582334e-19,-1.783006066492664e-20,9.633764173977665e-19,1.3552527156068805e-19,4.0657581468206416e-20,1.6940658945086007e-19,-3.5914196963582334e-19,-1.0842021724855044e-19,3.9302328752599536e-19,0.0008333333535119891,-0.00041666667675599456,-0.0002380952355451882,4.811337391945313e-19,-2.6364394206718216e-19,3.5914196963582334e-19,0.0001190476177725941,-6.620453769902383e-20,9.813087883491212e-20,2.710505431213761e-20,-6.776263578034403e-21,1.3552527156068805e-20,-6.098637220230962e-20,-4.743384504624082e-20,3.3881317890172014e-20,0.0012499999720603228,-0.0006249999860301614,-2.168404344971009e-19,-0.0006249999860301614,-1.3606797442082644e-18,-1.783006066492664e-20,-6.620453769902383e-20,0.0003124999930150807,6.776263578034403e-20,2.710505431213761e-20,3.3881317890172014e-20,6.776263578034403e-20,2.168404344971009e-19,2.439454888092385e-19,1.5585406229479126e-19,0.001500000013038516,-0.000750000006519258,-9.75781955236954e-19,-1.6805133673525319e-18,-0.0010000000474974513,9.633764173977665e-19,9.813087883491212e-20,6.776263578034403e-20,0.0005000000237487257,5.421010862427522e-20,7.453889935837843e-20,1.2874900798265365e-19,1.9651164376299768e-19,3.1170812458958252e-19,7.182839392716467e-19,0.00041666667675599456,-7.047314121155779e-19,-0.00041666667675599456,-2.981555974335137e-19,-1.6263032587282567e-19,1.3552527156068805e-19,2.710505431213761e-20,2.710505431213761e-20,5.421010862427522e-20,5.952380888629705e-05,2.710505431213761e-20,1.3552527156068805e-20,1.3552527156068805e-20,0.0,-2.710505431213761e-20,0.0008333333535119891,-3.6591823321385775e-19,-0.0002380952355451882,-0.00041666667675599456,-8.673617379884035e-19,4.0657581468206416e-20,-6.776263578034403e-21,3.3881317890172014e-20,7.453889935837843e-20,2.710505431213761e-20,0.0001190476177725941,2.5605156141728762e-20,1.1464305822269566e-19,1.8075796314753112e-19,7.326847918446769e-20,0.0010000000474974513,-1.179069862577986e-18,-0.0002857142826542258,-1.0985939777705849e-18,-0.0006666666595265269,1.6940658945086007e-19,1.3552527156068805e-20,6.776263578034403e-20,1.2874900798265365e-19,1.3552527156068805e-20,2.5605156141728762e-20,0.00019047618843615055,1.3992628600977644e-19,1.8702993089524375e-19,3.483674251694373e-19,0.0008928571478463709,7.589415207398531e-19,-4.336808689942018e-19,-0.0017857142956927419,-4.662069341687669e-18,-3.5914196963582334e-19,-6.098637220230962e-20,2.168404344971009e-19,1.9651164376299768e-19,1.3552527156068805e-20,1.1464305822269566e-19,1.3992628600977644e-19,0.00044642857392318547,1.258514149763957e-18,3.205083181807752e-19,0.001500000013038516,-3.7947076036992655e-19,-5.421010862427522e-19,-0.000750000006519258,-0.0010000000474974513,-1.0842021724855044e-19,-4.743384504624082e-20,2.439454888092385e-19,3.1170812458958252e-19,0.0,1.8075796314753112e-19,1.8702993089524375e-19,1.258514149763957e-18,0.0005000000237487257,6.631703943220987e-19,0.0012499999720603228,-3.0357660829594124e-18,-6.505213034913027e-19,-2.9815559743351372e-18,-0.0037499999161809683,3.9302328752599536e-19,3.3881317890172014e-20,1.5585406229479126e-19,7.182839392716467e-19,-2.710505431213761e-20,7.326847918446769e-20,3.483674251694373e-19,3.205083181807752e-19,6.631703943220987e-19,0.0012499999720603228,5.0,8.0,5.0,5.0,0.041952382773160934,-0.010190475732088089,-0.007000000216066837,-0.010190475732088089,-0.010190475732088089,0.0007142857066355646,0.0006666666595265269,0.0010000000474974513,0.0010000000474974513,0.00033333332976326346,0.0006666666595265269,0.0006666666595265269,0.0007142857066355646,0.0010000000474974513,0.0007142857066355646,-0.010190475732088089,0.009380952455103397,0.0006666666595265269,0.0010000000474974513,0.0010000000474974513,-0.0014285714132711291,-0.00033333332976326346,-0.0005000000237487257,-0.0005000000237487257,1.6805133673525319e-18,1.4704491964334654e-18,1.4230153513872246e-18,2.4936649967166602e-18,1.4907779871675686e-18,2.6020852139652106e-18,-0.007000000216066837,0.0006666666595265269,0.003666666569188237,0.0006666666595265269,0.0006666666595265269,3.650410495332759e-18,-0.00019047618843615055,7.047314121155779e-19,5.421010862427522e-19,-0.00033333332976326346,-0.00019047618843615055,-0.00019047618843615055,-4.336808689942018e-19,-5.421010862427522e-19,-1.0842021724855044e-19,-0.010190475732088089,0.0010000000474974513,0.0006666666595265269,0.009380952455103397,0.0010000000474974513,4.443179567222968e-18,-4.722955728433436e-19,-0.0005000000237487257,1.2468324983583301e-18,5.963111948670274e-19,-0.00033333332976326346,-3.4937508625189175e-19,-0.0014285714132711291,-0.0005000000237487257,3.2526065174565133e-19,-0.010190475732088089,0.0010000000474974513,0.0006666666595265269,0.0010000000474974513,0.009380952455103397,4.6203645495639705e-18,-3.825684742157552e-19,1.840154469286744e-18,-0.0005000000237487257,3.2526065174565133e-19,-1.6263032587282567e-19,-0.00033333332976326346,-2.439454888092385e-19,-0.0005000000237487257,-0.0014285714132711291,0.0007142857066355646,-0.0014285714132711291,3.650410495332759e-18,4.443179567222968e-18,4.6203645495639705e-18,0.0003571428533177823,-1.7618285302889447e-19,-1.112635084325337e-19,-1.0779230315309173e-19,-2.710505431213761e-19,-2.846030702774449e-19,-2.846030702774449e-19,-6.098637220230962e-19,-3.3203691532368573e-19,-6.505213034913027e-19,0.0006666666595265269,-0.00033333332976326346,-0.00019047618843615055,-4.722955728433436e-19,-3.825684742157552e-19,-1.7618285302889447e-19,9.523809421807528e-05,7.779077899087166e-20,1.0742103476737467e-19,-4.0657581468206416e-20,-1.3552527156068805e-20,-1.6940658945086007e-20,5.421010862427522e-20,5.421010862427522e-20,2.371692252312041e-20,0.0010000000474974513,-0.0005000000237487257,7.047314121155779e-19,-0.0005000000237487257,1.840154469286744e-18,-1.112635084325337e-19,7.779077899087166e-20,0.0002500000118743628,-1.2874900798265365e-19,-7.453889935837843e-20,-2.710505431213761e-20,-1.1519648082658485e-19,8.809142651444724e-20,-1.0164395367051604e-19,-2.303929616531697e-19,0.0010000000474974513,-0.0005000000237487257,5.421010862427522e-19,1.2468324983583301e-18,-0.0005000000237487257,-1.0779230315309173e-19,1.0742103476737467e-19,-1.2874900798265365e-19,0.0002500000118743628,-8.809142651444724e-20,-8.809142651444724e-20,6.776263578034403e-21,-1.4568966692773966e-19,-2.710505431213761e-20,1.4568966692773966e-19,0.00033333332976326346,1.6805133673525319e-18,-0.00033333332976326346,5.963111948670274e-19,3.2526065174565133e-19,-2.710505431213761e-19,-4.0657581468206416e-20,-7.453889935837843e-20,-8.809142651444724e-20,4.761904710903764e-05,-1.3552527156068805e-20,-6.776263578034403e-21,-8.131516293641283e-20,-6.776263578034403e-21,-5.421010862427522e-20,0.0006666666595265269,1.4704491964334654e-18,-0.00019047618843615055,-0.00033333332976326346,-1.6263032587282567e-19,-2.846030702774449e-19,-1.3552527156068805e-20,-2.710505431213761e-20,-8.809142651444724e-20,-1.3552527156068805e-20,9.523809421807528e-05,-4.215110857075276e-21,3.5600310355452017e-19,1.0659079100161578e-19,3.456711201028956e-20,0.0006666666595265269,1.4230153513872246e-18,-0.00019047618843615055,-3.4937508625189175e-19,-0.00033333332976326346,-2.846030702774449e-19,-1.6940658945086007e-20,-1.1519648082658485e-19,6.776263578034403e-21,-6.776263578034403e-21,-4.215110857075276e-21,9.523809421807528e-05,8.918706600986493e-20,1.0659079100161578e-19,2.897824616829457e-19,0.0007142857066355646,2.4936649967166602e-18,-4.336808689942018e-19,-0.0014285714132711291,-2.439454888092385e-19,-6.098637220230962e-19,5.421010862427522e-20,8.809142651444724e-20,-1.4568966692773966e-19,-8.131516293641283e-20,3.5600310355452017e-19,8.918706600986493e-20,0.0003571428533177823,1.322124002827161e-19,-1.0693890317694276e-20,0.0010000000474974513,1.4907779871675686e-18,-5.421010862427522e-19,-0.0005000000237487257,-0.0005000000237487257,-3.3203691532368573e-19,5.421010862427522e-20,-1.0164395367051604e-19,-2.710505431213761e-20,-6.776263578034403e-21,1.0659079100161578e-19,1.0659079100161578e-19,1.322124002827161e-19,0.0002500000118743628,2.521118067884484e-20,0.0007142857066355646,2.6020852139652106e-18,-1.0842021724855044e-19,3.2526065174565133e-19,-0.0014285714132711291,-6.505213034913027e-19,2.371692252312041e-20,-2.303929616531697e-19,1.4568966692773966e-19,-5.421010862427522e-20,3.456711201028956e-20,2.897824616829457e-19,-1.0693890317694276e-20,2.521118067884484e-20,0.0003571428533177823,5.0,8.0,5.0,6.0,0.03613095358014107,-0.008611110970377922,-0.0059126983396708965,-0.008611110970377922,-0.007470238022506237,0.0005952381179668009,0.0005555555690079927,0.0008333333535119891,0.0007142857066355646,0.00027777778450399637,0.0005555555690079927,0.0004761904710903764,0.0005952381179668009,0.0007142857066355646,0.00044642857392318547,-0.008611110970377922,0.007876983843743801,0.0005555555690079927,0.0008333333535119891,0.0007142857066355646,-0.0011904762359336019,-0.00027777778450399637,-0.00041666667675599456,-0.0003571428533177823,1.05735530192206e-18,4.381845572368233e-19,3.7558675965307795e-19,-7.049035173817772e-19,-4.2294210008930866e-19,-4.956353010071399e-19,-0.0059126983396708965,0.0005555555690079927,0.003078231355175376,0.0005555555690079927,0.0004761904710903764,2.9293056633771532e-18,-0.00015873015217948705,-1.9079388702569559e-19,-1.4291415285519747e-19,-0.00027777778450399637,-0.00015873015217948705,-0.0001360544265480712,-1.8236621422336618e-18,-1.4958973045810827e-18,-1.289326007196098e-18,-0.008611110970377922,0.0008333333535119891,0.0005555555690079927,0.007876983843743801,0.0007142857066355646,5.2867765096103e-19,-1.5350081617013915e-18,-0.00041666667675599456,-1.3853026436997958e-33,-8.402566836762659e-19,-0.00027777778450399637,-7.260684326188067e-19,-0.0011904762359336019,-0.0003571428533177823,-4.956353010071399e-19,-0.007470238022506237,0.0007142857066355646,0.0004761904710903764,0.0007142857066355646,0.005443452391773462,4.531522353246055e-19,-1.2953676309926087e-18,-1.5545058719510483e-33,-0.0002857142826542258,-6.874507819387326e-19,-1.3353517840446204e-18,-0.00019047618843615055,-1.5105075372466654e-19,-0.0002857142826542258,-0.0006696428754366934,0.0005952381179668009,-0.0011904762359336019,2.9293056633771532e-18,5.2867765096103e-19,4.531522353246055e-19,0.00029761905898340046,-1.5105075372466654e-19,-1.8156322992591229e-34,-1.3599993242377547e-34,-2.64338825480515e-19,-1.5105075372466654e-19,-1.2947206723560157e-19,-1.73543281964183e-33,-1.4235254037202172e-33,-1.2269481262806791e-33,0.0005555555690079927,-0.00027777778450399637,-0.00015873015217948705,-1.5350081617013915e-18,-1.2953676309926087e-18,-1.5105075372466654e-19,7.936507608974352e-05,9.539694351284779e-20,7.145707642759874e-20,-0.0,4.743384504624082e-20,4.0657581468206416e-20,2.0140100496622206e-19,1.2084060556467265e-19,1.4161007677011348e-19,0.0008333333535119891,-0.00041666667675599456,-1.9079388702569559e-19,-0.00041666667675599456,-1.5545058719510483e-33,-1.8156322992591229e-34,9.539694351284779e-20,0.00020833333837799728,8.589150680606884e-35,-0.0,5.416677968589101e-35,4.81482486096809e-35,2.4208429126196702e-34,1.4525057934895502e-34,1.70215519445965e-34,0.0007142857066355646,-0.0003571428533177823,-1.4291415285519747e-19,-1.3853026436997958e-33,-0.0002857142826542258,-1.3599993242377547e-34,7.145707642759874e-20,8.589150680606884e-35,0.0001428571413271129,-0.0,4.363435030252331e-35,3.76158192263132e-35,1.8133323940522162e-34,1.0879994593902038e-34,1.274999258853173e-34,0.00027777778450399637,1.05735530192206e-18,-0.00027777778450399637,-8.402566836762659e-19,-6.874507819387326e-19,-2.64338825480515e-19,-0.0,-0.0,-0.0,3.968253804487176e-05,3.3881317890172014e-20,1.0164395367051604e-20,8.811293967272215e-20,1.0573552502232717e-19,6.608470637012875e-20,0.0005555555690079927,4.381845572368233e-19,-0.00015873015217948705,-0.00027777778450399637,-1.3353517840446204e-18,-1.5105075372466654e-19,4.743384504624082e-20,5.416677968589101e-35,4.363435030252331e-35,3.3881317890172014e-20,7.936507608974352e-05,8.660752265666392e-20,3.2291293222146684e-19,1.3187737920993506e-19,1.4161007677011348e-19,0.0004761904710903764,3.7558675965307795e-19,-0.0001360544265480712,-7.260684326188067e-19,-0.00019047618843615055,-1.2947206723560157e-19,4.0657581468206416e-20,4.81482486096809e-35,3.76158192263132e-35,1.0164395367051604e-20,8.660752265666392e-20,5.442176916403696e-05,4.315735682225861e-20,7.595695188458428e-20,8.901205268682461e-20,0.0005952381179668009,-7.049035173817772e-19,-1.8236621422336618e-18,-0.0011904762359336019,-1.5105075372466654e-19,-1.73543281964183e-33,2.0140100496622206e-19,2.4208429126196702e-34,1.8133323940522162e-34,8.811293967272215e-20,3.2291293222146684e-19,4.315735682225861e-20,0.00029761905898340046,1.1574022070661863e-33,1.16483068851491e-33,0.0007142857066355646,-4.2294210008930866e-19,-1.4958973045810827e-18,-0.0003571428533177823,-0.0002857142826542258,-1.4235254037202172e-33,1.2084060556467265e-19,1.4525057934895502e-34,1.0879994593902038e-34,1.0573552502232717e-19,1.3187737920993506e-19,7.595695188458428e-20,1.1574022070661863e-33,0.0001428571413271129,7.656156337378797e-34,0.00044642857392318547,-4.956353010071399e-19,-1.289326007196098e-18,-4.956353010071399e-19,-0.0006696428754366934,-1.2269481262806791e-33,1.4161007677011348e-19,1.70215519445965e-34,1.274999258853173e-34,6.608470637012875e-20,1.4161007677011348e-19,8.901205268682461e-20,1.16483068851491e-33,7.656156337378797e-34,0.00013392856635618955,5.0,8.0,5.0,7.0,0.03174319863319397,-0.007457483094185591,-0.0051190475933253765,-0.007457483094185591,-0.0057142856530845165,0.0005102040595375001,0.0004761904710903764,0.0007142857066355646,0.0005357142654247582,0.0002380952355451882,0.0004761904710903764,0.0003571428533177823,0.0005102040595375001,0.0005357142654247582,0.00029761905898340046,-0.007457483094185591,0.006789966020733118,0.0004761904710903764,0.0007142857066355646,0.0005357142654247582,-0.0010204081190750003,-0.0002380952355451882,-0.0003571428533177823,-0.0002678571327123791,-1.1275258540031973e-20,0.0,-2.837560373301906e-20,-0.0,-0.0,2.468652845063601e-20,-0.0051190475933253765,0.0004761904710903764,0.002653061179444194,0.0004761904710903764,0.0003571428533177823,-0.0,-0.0001360544265480712,-0.0,-2.371692252312041e-20,-0.0002380952355451882,-0.0001360544265480712,-0.0001020408162730746,-0.0,-0.0,-6.04651191694305e-20,-0.007457483094185591,0.0007142857066355646,0.0004761904710903764,0.006789966020733118,0.0005357142654247582,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0002380952355451882,-0.0,-0.0010204081190750003,-0.0002678571327123791,-0.0,-0.0057142856530845165,0.0005357142654247582,0.0003571428533177823,0.0005357142654247582,0.0034523808863013983,-0.0,-1.1837566469260788e-21,-0.0,-0.00017857142665889114,7.088954005450786e-21,-0.0,-0.0001190476177725941,-0.0,-0.00017857142665889114,-0.0003571428533177823,0.0005102040595375001,-0.0010204081190750003,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0002380952355451882,-0.0001360544265480712,-0.0,-1.1837566469260788e-21,-0.0,6.80272132740356e-05,-0.0,-1.1108628195706833e-22,3.3881317890172014e-21,-0.0,8.470329472543003e-22,-0.0,-0.0,-2.3979786223843627e-22,0.0007142857066355646,-0.0003571428533177823,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005357142654247582,-0.0002678571327123791,-2.371692252312041e-20,-0.0,-0.00017857142665889114,-0.0,-1.1108628195706833e-22,-0.0,8.928571332944557e-05,-1.9440099973575682e-22,-0.0,8.470329472543003e-21,-0.0,-0.0,-7.949078055251018e-21,0.0002380952355451882,-1.1275258540031973e-20,-0.0002380952355451882,-0.0,7.088954005450786e-21,-0.0,3.3881317890172014e-21,-0.0,-1.9440099973575682e-22,3.40136066370178e-05,-0.0,0.0,0.0,0.0,-3.1530179682638012e-22,0.0004761904710903764,0.0,-0.0001360544265480712,-0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-2.837560373301906e-20,-0.0001020408162730746,-0.0,-0.0001190476177725941,-0.0,8.470329472543003e-22,-0.0,8.470329472543003e-21,0.0,-0.0,3.40136066370178e-05,-0.0,-0.0,2.111066705224762e-20,0.0005102040595375001,-0.0,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,0.0005357142654247582,-0.0,-0.0,-0.0002678571327123791,-0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,8.928571332944557e-05,0.0,0.00029761905898340046,2.468652845063601e-20,-6.04651191694305e-20,-0.0,-0.0003571428533177823,-0.0,-2.3979786223843627e-22,-0.0,-7.949078055251018e-21,-3.1530179682638012e-22,-0.0,2.111066705224762e-20,-0.0,0.0,5.952380888629705e-05,5.0,8.0,5.0,8.0,0.028313491493463516,-0.006577380932867527,-0.004513889085501432,-0.006577380932867527,-0.004513889085501432,0.00044642857392318547,0.00041666667675599456,0.0006249999860301614,0.00041666667675599456,0.00020833333837799728,0.00041666667675599456,0.00027777778450399637,0.00044642857392318547,0.00041666667675599456,0.00020833333837799728,-0.006577380932867527,0.005967261735349894,0.00041666667675599456,0.0006249999860301614,0.00041666667675599456,-0.0008928571478463709,-0.00020833333837799728,-0.0003124999930150807,-0.00020833333837799728,-6.943462306108085e-22,5.248826917134787e-21,8.893845946170154e-21,-0.0,-0.0,-2.9673789791309663e-21,-0.004513889085501432,0.00041666667675599456,0.0023313493002206087,0.00041666667675599456,0.00027777778450399637,-0.0,-0.0001190476177725941,-0.0,6.776263578034403e-21,-0.00020833333837799728,-0.0001190476177725941,-7.936507608974352e-05,-0.0,-0.0,1.1762570510608708e-20,-0.006577380932867527,0.0006249999860301614,0.00041666667675599456,0.005967261735349894,0.00041666667675599456,-0.0,5.929230630780102e-21,-0.0003124999930150807,-6.804035116969234e-22,6.776263578034403e-21,-0.00020833333837799728,2.964615315390051e-21,-0.0008928571478463709,-0.00020833333837799728,-1.1907061959567138e-21,-0.004513889085501432,0.00041666667675599456,0.00027777778450399637,0.00041666667675599456,0.0023313493002206087,-0.0,2.2478927990780462e-21,-0.0,-0.0001190476177725941,6.1824807802630915e-21,-0.0,-7.936507608974352e-05,-0.0,-0.0001190476177725941,-0.00020833333837799728,0.00044642857392318547,-0.0008928571478463709,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00041666667675599456,-0.00020833333837799728,-0.0001190476177725941,5.929230630780102e-21,2.2478927990780462e-21,-0.0,5.952380888629705e-05,-0.0,1.1336264422872305e-22,-0.0,-1.6940658945086007e-21,-0.0,-0.0,-0.0,-3.2683635689945347e-22,0.0006249999860301614,-0.0003124999930150807,-0.0,-0.0003124999930150807,-0.0,-0.0,-0.0,0.00015624999650754035,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00041666667675599456,-0.00020833333837799728,6.776263578034403e-21,-6.804035116969234e-22,-0.0001190476177725941,-0.0,1.1336264422872305e-22,-0.0,5.952380888629705e-05,1.9838463371115258e-22,1.9440099973575682e-22,-2.541098841762901e-21,-0.0,-0.0,1.1746588718783459e-21,0.00020833333837799728,-6.943462306108085e-22,-0.00020833333837799728,6.776263578034403e-21,6.1824807802630915e-21,-0.0,-0.0,-0.0,1.9838463371115258e-22,2.9761904443148524e-05,-3.3881317890172014e-21,-1.6940658945086007e-21,0.0,0.0,4.819529670794178e-22,0.00041666667675599456,5.248826917134787e-21,-0.0001190476177725941,-0.00020833333837799728,-0.0,-0.0,-1.6940658945086007e-21,-0.0,1.9440099973575682e-22,-3.3881317890172014e-21,5.952380888629705e-05,-8.470329472543003e-22,-0.0,-0.0,3.402017558484617e-22,0.00027777778450399637,8.893845946170154e-21,-7.936507608974352e-05,2.964615315390051e-21,-7.936507608974352e-05,-0.0,-0.0,-0.0,-2.541098841762901e-21,-1.6940658945086007e-21,-8.470329472543003e-22,2.2675736545352265e-05,-0.0,-0.0,-4.4109640424524615e-21,0.00044642857392318547,-0.0,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.00020833333837799728,-0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,5.952380888629705e-05,0.0,0.00020833333837799728,-2.9673789791309663e-21,1.1762570510608708e-20,-1.1907061959567138e-21,-0.00020833333837799728,-0.0,-3.2683635689945347e-22,-0.0,1.1746588718783459e-21,4.819529670794178e-22,3.402017558484617e-22,-4.4109640424524615e-21,-0.0,0.0,2.9761904443148524e-05,5.0,8.0,6.0,3.0,0.05373677238821983,-0.013657407835125923,-0.009391534142196178,-0.01185515895485878,-0.01974206417798996,0.0009920635493472219,0.0009259259095415473,0.0011904762359336019,0.0020833334419876337,0.00046296295477077365,0.0007936508045531809,0.0013888889225199819,0.0007440476329065859,0.0017857142956927419,0.0020833334419876337,-0.013657407835125923,0.012781084515154362,0.0009259259095415473,0.0011904762359336019,0.0020833334419876337,-0.0019841270986944437,-0.00046296295477077365,-0.0005952381179668009,-0.0010416667209938169,-2.371692252312041e-20,-5.929230630780102e-21,-1.1858461261560205e-20,-0.0,-0.0,-0.0,-0.009391534142196178,0.0009259259095415473,0.004998110234737396,0.0007936508045531809,0.0013888889225199819,-0.0,-0.00026455026818439364,-0.0,-0.0,-0.00046296295477077365,-0.00022675737272948027,-0.00039682540227659047,-0.0,-0.0,-0.0,-0.01185515895485878,0.0011904762359336019,0.0007936508045531809,0.008834325708448887,0.0017857142956927419,-0.0,-5.929230630780102e-21,-0.0004761904710903764,-0.0,-0.0,-0.0003174603043589741,5.929230630780102e-20,-0.0011160714784637094,-0.0007142857066355646,-9.912705813347644e-18,-0.01974206417798996,0.0020833334419876337,0.0013888889225199819,0.0017857142956927419,0.04057539626955986,-0.0,-1.1858461261560205e-20,-0.0,-0.0020833334419876337,-1.6445224610193626e-20,5.929230630780102e-20,-0.0013888889225199819,-4.690125653704243e-18,-0.0017857142956927419,-0.012500000186264515,0.0009920635493472219,-0.0019841270986944437,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00046296295477077365,-0.00026455026818439364,-5.929230630780102e-21,-1.1858461261560205e-20,-0.0,0.00013227513409219682,-0.0,-0.0,6.776263578034403e-21,1.6940658945086007e-21,3.3881317890172014e-21,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0005952381179668009,-0.0,-0.0004761904710903764,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0010416667209938169,-0.0,-0.0,-0.0020833334419876337,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-2.371692252312041e-20,-0.00046296295477077365,-0.0,-1.6445224610193626e-20,-0.0,6.776263578034403e-21,-0.0,-0.0,6.613756704609841e-05,3.3881317890172014e-21,6.776263578034403e-21,0.0,0.0,0.0,0.0007936508045531809,-5.929230630780102e-21,-0.00022675737272948027,-0.0003174603043589741,5.929230630780102e-20,-0.0,1.6940658945086007e-21,-0.0,-0.0,3.3881317890172014e-21,9.070294618140906e-05,-1.6940658945086007e-20,-0.0,-0.0,-0.0,0.0013888889225199819,-1.1858461261560205e-20,-0.00039682540227659047,5.929230630780102e-20,-0.0013888889225199819,-0.0,3.3881317890172014e-21,-0.0,-0.0,6.776263578034403e-21,-1.6940658945086007e-20,0.00039682540227659047,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,-0.0,-0.0011160714784637094,-4.690125653704243e-18,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00022321428696159273,2.9001743267569904e-19,1.9825412040285595e-18,0.0017857142956927419,-0.0,-0.0,-0.0007142857066355646,-0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,2.9001743267569904e-19,0.0007142857066355646,2.5758723422293945e-33,0.0020833334419876337,-0.0,-0.0,-9.912705813347644e-18,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,1.9825412040285595e-18,2.5758723422293945e-33,0.0062500000931322575,5.0,8.0,6.0,4.0,0.04315972328186035,-0.010555555112659931,-0.0072519839741289616,-0.009159225970506668,-0.012470237910747528,0.0007440476329065859,0.0006944444612599909,0.0008928571478463709,0.0012499999720603228,0.00034722223062999547,0.0005952381179668009,0.0008333333535119891,0.0005580357392318547,0.0010714285308495164,0.0010416667209938169,-0.010555555112659931,0.009742063470184803,0.0006944444612599909,0.0008928571478463709,0.0012499999720603228,-0.0014880952658131719,-0.00034722223062999547,-0.00044642857392318547,-0.0006249999860301614,-1.1858461261560205e-20,-5.929230630780102e-21,-1.1858461261560205e-20,0.0,-3.665994802962312e-36,-1.0599850269379123e-35,-0.0072519839741289616,0.0006944444612599909,0.00380810652859509,0.0005952381179668009,0.0008333333535119891,-0.0,-0.00019841270113829523,-0.0,-0.0,-0.00034722223062999547,-0.0001700680295471102,-0.0002380952355451882,1.8726103701122764e-34,-9.063045094233022e-20,-3.965082252960754e-19,-0.009159225970506668,0.0008928571478463709,0.0005952381179668009,0.006732887122780085,0.0010714285308495164,-0.0,-5.929230630780102e-21,-0.0003571428533177823,-0.0,-0.0,-0.0002380952355451882,-1.6771045560482008e-19,-0.0008370535797439516,-0.00042857142398133874,1.734723475976807e-18,-0.012470237910747528,0.0012499999720603228,0.0008333333535119891,0.0010714285308495164,0.015605159103870392,-0.0,-1.1858461261560205e-20,-0.0,-0.0008333333535119891,-2.5626742001424702e-20,-7.707999820014133e-20,-0.0005555555690079927,1.4758603018080576e-18,-0.0007142857066355646,-0.0031250000465661287,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,-0.00019841270113829523,-5.929230630780102e-21,-1.1858461261560205e-20,-0.0,9.920635056914762e-05,-0.0,-0.0,3.3881317890172014e-21,1.6940658945086007e-21,3.3881317890172014e-21,-0.0,1.0474270609369173e-36,3.0285287508890084e-36,0.0008928571478463709,-0.00044642857392318547,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012499999720603228,-0.0006249999860301614,-0.0,-0.0,-0.0008333333535119891,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-1.1858461261560205e-20,-0.00034722223062999547,-0.0,-2.5626742001424702e-20,-0.0,3.3881317890172014e-21,-0.0,-0.0,4.960317528457381e-05,-3.3881317890172014e-21,0.0,0.0,0.0,0.0,0.0005952381179668009,-5.929230630780102e-21,-0.0001700680295471102,-0.0002380952355451882,-7.707999820014133e-20,-0.0,1.6940658945086007e-21,-0.0,-0.0,-3.3881317890172014e-21,6.80272132740356e-05,2.202285662861181e-20,-0.0,7.975174570028204e-36,3.579934468075994e-35,0.0008333333535119891,-1.1858461261560205e-20,-0.0002380952355451882,-1.6771045560482008e-19,-0.0005555555690079927,-0.0,3.3881317890172014e-21,-0.0,-0.0,0.0,2.202285662861181e-20,0.00015873015217948705,-1.2484069134081842e-34,6.042030278233632e-20,2.64338825480515e-19,0.0005580357392318547,0.0,1.8726103701122764e-34,-0.0008370535797439516,1.4758603018080576e-18,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-1.2484069134081842e-34,0.00016741071885917336,-1.7401046994517708e-19,-3.4694470036524025e-19,0.0010714285308495164,-3.665994802962312e-36,-9.063045094233022e-20,-0.00042857142398133874,-0.0007142857066355646,-0.0,1.0474270609369173e-36,-0.0,-0.0,0.0,7.975174570028204e-36,6.042030278233632e-20,-1.7401046994517708e-19,0.0002857142826542258,4.6124212641458e-34,0.0010416667209938169,-1.0599850269379123e-35,-3.965082252960754e-19,1.734723475976807e-18,-0.0031250000465661287,-0.0,3.0285287508890084e-36,-0.0,-0.0,0.0,3.579934468075994e-35,2.64338825480515e-19,-3.4694470036524025e-19,4.6124212641458e-34,0.0010416667209938169,5.0,8.0,6.0,5.0,0.03613095358014107,-0.008611110970377922,-0.0059126983396708965,-0.007470238022506237,-0.008611110970377922,0.0005952381179668009,0.0005555555690079927,0.0007142857066355646,0.0008333333535119891,0.00027777778450399637,0.0004761904710903764,0.0005555555690079927,0.00044642857392318547,0.0007142857066355646,0.0005952381179668009,-0.008611110970377922,0.007876983843743801,0.0005555555690079927,0.0007142857066355646,0.0008333333535119891,-0.0011904762359336019,-0.00027777778450399637,-0.0003571428533177823,-0.00041666667675599456,1.0454968406604997e-18,3.7558675965307795e-19,4.381845572368233e-19,-4.956353010071399e-19,-4.2294210008930866e-19,-7.049035173817772e-19,-0.0059126983396708965,0.0005555555690079927,0.003078231355175376,0.0004761904710903764,0.0005555555690079927,2.9293056633771532e-18,-0.00015873015217948705,-1.4291415285519747e-19,-1.9079388702569559e-19,-0.00027777778450399637,-0.0001360544265480712,-0.00015873015217948705,-1.289326007196098e-18,-1.4958973045810827e-18,-1.8236621422336618e-18,-0.007470238022506237,0.0007142857066355646,0.0004761904710903764,0.005443452391773462,0.0007142857066355646,4.531522353246055e-19,-1.2953676309926087e-18,-0.0002857142826542258,-1.5545058719510483e-33,-7.047314121155779e-19,-0.00019047618843615055,-1.227760918757731e-18,-0.0006696428754366934,-0.0002857142826542258,-1.850371804212999e-18,-0.008611110970377922,0.0008333333535119891,0.0005555555690079927,0.0007142857066355646,0.007876983843743801,5.2867765096103e-19,-1.5350081617013915e-18,-1.3853026436997958e-33,-0.00041666667675599456,-8.539847799173491e-19,-6.184776190307055e-19,-0.00027777778450399637,-2.203113050268887e-18,-0.0003571428533177823,-0.0011904762359336019,0.0005952381179668009,-0.0011904762359336019,2.9293056633771532e-18,4.531522353246055e-19,5.2867765096103e-19,0.00029761905898340046,-1.5105075372466654e-19,-1.3599993242377547e-34,-1.8156322992591229e-34,-2.64338825480515e-19,-1.2947206723560157e-19,-1.5105075372466654e-19,-1.2269481262806791e-33,-1.4235254037202172e-33,-1.73543281964183e-33,0.0005555555690079927,-0.00027777778450399637,-0.00015873015217948705,-1.2953676309926087e-18,-1.5350081617013915e-18,-1.5105075372466654e-19,7.936507608974352e-05,7.145707642759874e-20,9.539694351284779e-20,3.3881317890172014e-21,4.0657581468206416e-20,4.743384504624082e-20,1.4161007677011348e-19,1.2084060556467265e-19,2.0140100496622206e-19,0.0007142857066355646,-0.0003571428533177823,-1.4291415285519747e-19,-0.0002857142826542258,-1.3853026436997958e-33,-1.3599993242377547e-34,7.145707642759874e-20,0.0001428571413271129,8.589150680606884e-35,-0.0,3.912045199536573e-35,4.363435030252331e-35,1.274999258853173e-34,1.0879994593902038e-34,1.8133323940522162e-34,0.0008333333535119891,-0.00041666667675599456,-1.9079388702569559e-19,-1.5545058719510483e-33,-0.00041666667675599456,-1.8156322992591229e-34,9.539694351284779e-20,8.589150680606884e-35,0.00020833333837799728,6.018531076210112e-36,4.81482486096809e-35,5.416677968589101e-35,1.70215519445965e-34,1.4525057934895502e-34,2.4208429126196702e-34,0.00027777778450399637,1.0454968406604997e-18,-0.00027777778450399637,-7.047314121155779e-19,-8.539847799173491e-19,-2.64338825480515e-19,3.3881317890172014e-21,-0.0,6.018531076210112e-36,3.968253804487176e-05,1.3552527156068805e-20,3.3881317890172014e-20,6.608470637012875e-20,1.0573552502232717e-19,8.811293967272215e-20,0.0004761904710903764,3.7558675965307795e-19,-0.0001360544265480712,-0.00019047618843615055,-6.184776190307055e-19,-1.2947206723560157e-19,4.0657581468206416e-20,3.912045199536573e-35,4.81482486096809e-35,1.3552527156068805e-20,5.442176916403696e-05,5.586728743334279e-20,8.901205268682461e-20,7.595695188458428e-20,4.315735682225861e-20,0.0005555555690079927,4.381845572368233e-19,-0.00015873015217948705,-1.227760918757731e-18,-0.00027777778450399637,-1.5105075372466654e-19,4.743384504624082e-20,4.363435030252331e-35,5.416677968589101e-35,3.3881317890172014e-20,5.586728743334279e-20,7.936507608974352e-05,1.4161007677011348e-19,1.3187737920993506e-19,3.2291293222146684e-19,0.00044642857392318547,-4.956353010071399e-19,-1.289326007196098e-18,-0.0006696428754366934,-2.203113050268887e-18,-1.2269481262806791e-33,1.4161007677011348e-19,1.274999258853173e-34,1.70215519445965e-34,6.608470637012875e-20,8.901205268682461e-20,1.4161007677011348e-19,0.00013392856635618955,1.3920837078626284e-19,3.398641894181512e-19,0.0007142857066355646,-4.2294210008930866e-19,-1.4958973045810827e-18,-0.0002857142826542258,-0.0003571428533177823,-1.4235254037202172e-33,1.2084060556467265e-19,1.0879994593902038e-34,1.4525057934895502e-34,1.0573552502232717e-19,7.595695188458428e-20,1.3187737920993506e-19,1.3920837078626284e-19,0.0001428571413271129,1.5106647081111772e-33,0.0005952381179668009,-7.049035173817772e-19,-1.8236621422336618e-18,-1.850371804212999e-18,-0.0011904762359336019,-1.73543281964183e-33,2.0140100496622206e-19,1.8133323940522162e-34,2.4208429126196702e-34,8.811293967272215e-20,4.315735682225861e-20,3.2291293222146684e-19,3.398641894181512e-19,1.5106647081111772e-33,0.00029761905898340046,5.0,8.0,6.0,6.0,0.031098827719688416,-0.007275132462382317,-0.004993386100977659,-0.006310232449322939,-0.006310232449322939,0.0004960317746736109,0.00046296295477077365,0.0005952381179668009,0.0005952381179668009,0.00023148147738538682,0.00039682540227659047,0.00039682540227659047,0.00037202381645329297,0.0005102040595375001,0.00037202381645329297,-0.007275132462382317,0.006613756529986858,0.00046296295477077365,0.0005952381179668009,0.0005952381179668009,-0.0009920635493472219,-0.00023148147738538682,-0.00029761905898340046,-0.00029761905898340046,-2.371692252312041e-20,-2.964615315390051e-21,-2.964615315390051e-21,-0.0,-0.0,-0.0,-0.004993386100977659,0.00046296295477077365,0.0025840892922133207,0.00039682540227659047,0.00039682540227659047,-0.0,-0.00013227513409219682,-0.0,-0.0,-0.00023148147738538682,-0.00011337868636474013,-0.00011337868636474013,-0.0,-0.0,-0.0,-0.006310232449322939,0.0005952381179668009,0.00039682540227659047,0.004570223856717348,0.0005102040595375001,-0.0,-2.964615315390051e-21,-0.0002380952355451882,-0.0,-6.776263578034403e-21,-0.00015873015217948705,1.8004610314459535e-20,-0.0005580357392318547,-0.0002040816325461492,-9.735692470983746e-19,-0.006310232449322939,0.0005952381179668009,0.00039682540227659047,0.0005102040595375001,0.004570223856717348,-0.0,-2.964615315390051e-21,-0.0,-0.0002380952355451882,-5.1618126057936805e-21,1.8004610314459535e-20,-0.00015873015217948705,-1.1392935386548783e-18,-0.0002040816325461492,-0.0005580357392318547,0.0004960317746736109,-0.0009920635493472219,-0.0,-0.0,-0.0,0.00024801588733680546,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-0.00023148147738538682,-0.00013227513409219682,-2.964615315390051e-21,-2.964615315390051e-21,-0.0,6.613756704609841e-05,-0.0,-0.0,6.776263578034403e-21,8.470329472543003e-22,8.470329472543003e-22,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.00029761905898340046,-0.0,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00023148147738538682,-2.371692252312041e-20,-0.00023148147738538682,-6.776263578034403e-21,-5.1618126057936805e-21,-0.0,6.776263578034403e-21,-0.0,-0.0,3.3068783523049206e-05,-0.0,0.0,0.0,0.0,0.0,0.00039682540227659047,-2.964615315390051e-21,-0.00011337868636474013,-0.00015873015217948705,1.8004610314459535e-20,-0.0,8.470329472543003e-22,-0.0,-0.0,-0.0,4.535147309070453e-05,-5.144174433259408e-21,-0.0,-0.0,-0.0,0.00039682540227659047,-2.964615315390051e-21,-0.00011337868636474013,1.8004610314459535e-20,-0.00015873015217948705,-0.0,8.470329472543003e-22,-0.0,-0.0,0.0,-5.144174433259408e-21,4.535147309070453e-05,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0005580357392318547,-1.1392935386548783e-18,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00011160714348079637,6.628969852802558e-20,1.9471385717449317e-19,0.0005102040595375001,-0.0,-0.0,-0.0002040816325461492,-0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,6.628969852802558e-20,8.163265010807663e-05,1.1565141348594645e-34,0.00037202381645329297,-0.0,-0.0,-9.735692470983746e-19,-0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,1.9471385717449317e-19,1.1565141348594645e-34,0.00011160714348079637,5.0,8.0,6.0,7.0,0.027310090139508247,-0.0062996032647788525,-0.004322562366724014,-0.005463435314595699,-0.004825680050998926,0.00042517005931586027,0.00039682540227659047,0.0005102040595375001,0.00044642857392318547,0.00019841270113829523,0.0003401360590942204,0.00029761905898340046,0.0003188775444868952,0.00038265305920504034,0.00024801588733680546,-0.0062996032647788525,0.005700821988284588,0.00039682540227659047,0.0005102040595375001,0.00044642857392318547,-0.0008503401186317205,-0.00019841270113829523,-0.00025510202976875007,-0.00022321428696159273,1.2517653123931077e-19,5.036687757186783e-19,3.0472964120117305e-19,8.49660486470075e-19,6.000138103851796e-19,2.895341782522091e-19,-0.004322562366724014,0.00039682540227659047,0.0022270812187343836,0.0003401360590942204,0.00029761905898340046,8.9649989884862e-19,-0.00011337868636474013,-2.915176733505803e-20,-3.3881317890172014e-20,-0.00019841270113829523,-9.718172805150971e-05,-8.50340147735551e-05,1.0511454502684712e-18,2.873798897443913e-19,5.509106631640185e-19,-0.005463435314595699,0.0005102040595375001,0.0003401360590942204,0.003939200658351183,0.00038265305920504034,1.988195810695972e-18,3.1552838070047626e-19,-0.0002040816325461492,-8.769868374454647e-20,1.0164395367051604e-18,-0.0001360544265480712,-2.3458550073850057e-19,-0.00047831633128225803,-0.0001530612207716331,-5.601842237854417e-20,-0.004825680050998926,0.00044642857392318547,0.00029761905898340046,0.00038265305920504034,0.0028982425574213266,1.3140516764762268e-18,1.3350647265226703e-19,-2.6315197639786624e-19,-0.00014880952949170023,6.868644142820091e-19,1.791346211953958e-19,-9.920635056914762e-05,-4.0104311375742667e-19,-0.00012755101488437504,-0.00029761905898340046,0.00042517005931586027,-0.0008503401186317205,8.9649989884862e-19,1.988195810695972e-18,1.3140516764762268e-18,0.00021258502965793014,-2.0208603976038667e-20,-3.63754871568696e-20,-2.6523791910757184e-20,-3.1468907025972196e-20,-1.1405873266810937e-19,-8.092004848459951e-20,-1.7701260565616466e-19,-1.4565607564005176e-19,-7.867226918051762e-20,0.00039682540227659047,-0.00019841270113829523,-0.00011337868636474013,3.1552838070047626e-19,1.3350647265226703e-19,-2.0208603976038667e-20,5.668934318237007e-05,3.2470772997377365e-21,5.647712957112177e-21,1.141274723038267e-35,-1.3552527156068805e-20,-5.929230630780102e-21,-4.046002424229976e-20,-1.8341877053356693e-20,-1.2029984108597751e-20,0.0005102040595375001,-0.00025510202976875007,-2.915176733505803e-20,-0.0002040816325461492,-2.6315197639786624e-19,-3.63754871568696e-20,3.2470772997377365e-21,0.0001020408162730746,3.2583804320025895e-20,-4.81482486096809e-35,5.172175143618065e-36,7.55253784779204e-21,5.850243677444295e-35,9.710405688904971e-21,2.2657612735582555e-20,0.00044642857392318547,-0.00022321428696159273,-3.3881317890172014e-20,-8.769868374454647e-20,-0.00014880952949170023,-2.6523791910757184e-20,5.647712957112177e-21,3.2583804320025895e-20,7.440476474585012e-05,2.3303329793463195e-22,4.513898307157584e-36,6.940498511510959e-21,3.76158192263132e-35,7.510358906693939e-21,3.53860393959691e-21,0.00019841270113829523,1.2517653123931077e-19,-0.00019841270113829523,1.0164395367051604e-18,6.868644142820091e-19,-3.1468907025972196e-20,1.141274723038267e-35,-4.81482486096809e-35,2.3303329793463195e-22,2.8344671591185033e-05,-6.268043809681823e-20,-4.0657581468206416e-20,-1.2980923380809642e-19,-4.720335892337116e-20,-7.451327614643489e-20,0.0003401360590942204,5.036687757186783e-19,-9.718172805150971e-05,-0.0001360544265480712,1.791346211953958e-19,-1.1405873266810937e-19,-1.3552527156068805e-20,5.172175143618065e-36,4.513898307157584e-36,-6.268043809681823e-20,3.887269122060388e-05,-4.657789405800743e-21,-7.081616654923499e-20,-3.4179232157661815e-21,-3.236801680890039e-20,0.00029761905898340046,3.0472964120117305e-19,-8.50340147735551e-05,-2.3458550073850057e-19,-9.920635056914762e-05,-8.092004848459951e-20,-5.929230630780102e-21,7.55253784779204e-21,6.940498511510959e-21,-4.0657581468206416e-20,-4.657789405800743e-21,2.8344671591185033e-05,2.950210094269411e-20,1.8634724839594607e-20,1.8434493816981356e-20,0.0003188775444868952,8.49660486470075e-19,1.0511454502684712e-18,-0.00047831633128225803,-4.0104311375742667e-19,-1.7701260565616466e-19,-4.046002424229976e-20,5.850243677444295e-35,3.76158192263132e-35,-1.2980923380809642e-19,-7.081616654923499e-20,2.950210094269411e-20,9.566326480126008e-05,5.468171789570409e-20,1.6521176592532187e-20,0.00038265305920504034,6.000138103851796e-19,2.873798897443913e-19,-0.0001530612207716331,-0.00012755101488437504,-1.4565607564005176e-19,-1.8341877053356693e-20,9.710405688904971e-21,7.510358906693939e-21,-4.720335892337116e-20,-3.4179232157661815e-21,1.8634724839594607e-20,5.468171789570409e-20,5.10204081365373e-05,1.2075649486730793e-21,0.00024801588733680546,2.895341782522091e-19,5.509106631640185e-19,-5.601842237854417e-20,-0.00029761905898340046,-7.867226918051762e-20,-1.2029984108597751e-20,2.2657612735582555e-20,3.53860393959691e-21,-7.451327614643489e-20,-3.236801680890039e-20,1.8434493816981356e-20,1.6521176592532187e-20,1.2075649486730793e-21,4.960317528457381e-05,5.0,8.0,6.0,8.0,0.024351025000214577,-0.0055555556900799274,-0.003811177331954241,-0.004817708395421505,-0.003811177331954241,0.00037202381645329297,0.00034722223062999547,0.00044642857392318547,0.00034722223062999547,0.00017361111531499773,0.00029761905898340046,0.00023148147738538682,0.00027901786961592734,0.00029761905898340046,0.00017361111531499773,-0.0055555556900799274,0.005009920801967382,0.00034722223062999547,0.00044642857392318547,0.00034722223062999547,-0.0007440476329065859,-0.00017361111531499773,-0.00022321428696159273,-0.00017361111531499773,1.7010087792423084e-22,0.0,-0.0,-2.538142842138275e-35,3.3096769390908145e-20,3.1880541840727976e-23,-0.003811177331954241,0.00034722223062999547,0.0019569634459912777,0.00029761905898340046,0.00023148147738538682,-0.0,-9.920635056914762e-05,-0.0,3.3881317890172014e-21,-0.00017361111531499773,-8.50340147735551e-05,-6.613756704609841e-05,-5.002903957099656e-35,2.371692252312041e-20,5.881285255304354e-21,-0.004817708395421505,0.00044642857392318547,0.00029761905898340046,0.0034616815391927958,0.00029761905898340046,-0.0,4.316569206231847e-37,-0.00017857142665889114,3.3096769390908145e-20,1.3552527156068805e-20,-0.0001190476177725941,4.545308190571303e-21,-0.0004185267898719758,-0.0001190476177725941,2.757471453924815e-19,-0.003811177331954241,0.00034722223062999547,0.00023148147738538682,0.00029761905898340046,0.0019569634459912777,-0.0,-1.8879379661628504e-21,-0.0,-9.920635056914762e-05,5.2687082692955976e-23,-1.9171615140342673e-20,-6.613756704609841e-05,3.9269823139465616e-19,-8.50340147735551e-05,-0.00017361111531499773,0.00037202381645329297,-0.0007440476329065859,-0.0,-0.0,-0.0,0.00018601190822664648,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-0.00017361111531499773,-9.920635056914762e-05,4.316569206231847e-37,-1.8879379661628504e-21,-0.0,4.960317528457381e-05,-0.0,-2.777157048926708e-23,-0.0,-0.0,8.470329472543003e-22,0.0,-1.2333055355393321e-37,-1.348667905566561e-22,0.00044642857392318547,-0.00022321428696159273,-0.0,-0.00017857142665889114,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-0.00017361111531499773,3.3881317890172014e-21,3.3096769390908145e-20,-9.920635056914762e-05,-0.0,-2.777157048926708e-23,-0.0,4.960317528457381e-05,-4.8600249933939205e-23,-0.0,-8.470329472543003e-22,7.251836589328669e-36,-9.456220518368242e-21,1.257580598086715e-22,0.00017361111531499773,1.7010087792423084e-22,-0.00017361111531499773,1.3552527156068805e-20,5.2687082692955976e-23,-0.0,-0.0,-0.0,-4.8600249933939205e-23,2.4801587642286904e-05,-3.3881317890172014e-21,1.6940658945086007e-21,0.0,0.0,7.216344060700179e-22,0.00029761905898340046,0.0,-8.50340147735551e-05,-0.0001190476177725941,-1.9171615140342673e-20,-0.0,-0.0,-0.0,-0.0,-3.3881317890172014e-21,3.40136066370178e-05,5.477604152713571e-21,0.0,-1.96426817175985e-36,-3.76158192263132e-37,0.00023148147738538682,-0.0,-6.613756704609841e-05,4.545308190571303e-21,-6.613756704609841e-05,-0.0,8.470329472543003e-22,-0.0,-8.470329472543003e-22,1.6940658945086007e-21,5.477604152713571e-21,1.889644772745669e-05,1.4294011305999016e-35,-6.776263578034403e-21,-3.164387309308885e-21,0.00027901786961592734,-2.538142842138275e-35,-5.002903957099656e-35,-0.0004185267898719758,3.9269823139465616e-19,-0.0,0.0,-0.0,7.251836589328669e-36,0.0,0.0,1.4294011305999016e-35,8.370535942958668e-05,-4.143106319560312e-20,-4.13029406735369e-20,0.00029761905898340046,3.3096769390908145e-20,2.371692252312041e-20,-0.0001190476177725941,-8.50340147735551e-05,-0.0,-1.2333055355393321e-37,-0.0,-9.456220518368242e-21,0.0,-1.96426817175985e-36,-6.776263578034403e-21,-4.143106319560312e-20,3.40136066370178e-05,-1.9780694720994463e-20,0.00017361111531499773,3.1880541840727976e-23,5.881285255304354e-21,2.757471453924815e-19,-0.00017361111531499773,-0.0,-1.348667905566561e-22,-0.0,1.257580598086715e-22,7.216344060700179e-22,-3.76158192263132e-37,-3.164387309308885e-21,-4.13029406735369e-20,-1.9780694720994463e-20,2.4801587642286904e-05,5.0,8.0,7.0,3.0,0.04728599637746811,-0.011833900585770607,-0.008134921081364155,-0.00907738134264946,-0.01711309514939785,0.0008503401186317205,0.0007936508045531809,0.0008928571478463709,0.0017857142956927419,0.00039682540227659047,0.0005952381179668009,0.0011904762359336019,0.0004960317746736109,0.0013392857508733869,0.0017857142956927419,-0.011833900585770607,0.01101899053901434,0.0007936508045531809,0.0008928571478463709,0.0017857142956927419,-0.001700680237263441,-0.00039682540227659047,-0.00044642857392318547,-0.0008928571478463709,2.585166630402722e-19,6.565393526403556e-19,-9.671809312276276e-19,6.914709314145286e-19,-7.870256984033121e-19,-1.806944615258812e-17,-0.008134921081364155,0.0007936508045531809,0.004308389965444803,0.0005952381179668009,0.0011904762359336019,1.1687594698328189e-18,-0.00022675737272948027,-2.0698726583552236e-19,-5.193268911240008e-19,-0.00039682540227659047,-0.0001700680295471102,-0.0003401360590942204,6.816508499774522e-19,-1.3213713977167085e-18,-7.871362200729068e-18,-0.00907738134264946,0.0008928571478463709,0.0005952381179668009,0.0056051588617265224,0.0013392857508733869,1.8998229359781035e-18,8.232471102463966e-20,-0.00029761905898340046,-6.816165219820312e-19,1.0977546996415732e-18,-0.00019841270113829523,-2.715613478291429e-18,-0.0005952381179668009,-0.00044642857392318547,-1.7601407509670915e-17,-0.01711309514939785,0.0017857142956927419,0.0011904762359336019,0.0013392857508733869,0.0349702388048172,-7.234251976509088e-18,-3.1212787739142256e-18,-4.177898195283843e-18,-0.0017857142956927419,-1.0218485741282212e-18,-3.4547489864443126e-18,-0.0011904762359336019,-5.55653613398821e-18,-0.0013392857508733869,-0.010714286006987095,0.0008503401186317205,-0.001700680237263441,1.1687594698328189e-18,1.8998229359781035e-18,-7.234251976509088e-18,0.00042517005931586027,-4.0417207952077335e-20,-5.304758382151437e-20,6.905177091561378e-19,-6.293781405194439e-20,-1.6184009696919903e-19,5.394669683561683e-20,-1.5734453836103525e-19,-6.2592723192585165e-34,2.8322016904986345e-18,0.0007936508045531809,-0.00039682540227659047,-0.00022675737272948027,8.232471102463966e-20,-3.1212787739142256e-18,-4.0417207952077335e-20,0.00011337868636474013,1.1999206365903529e-20,2.596634455620004e-19,-3.3881317890172014e-21,-1.3552527156068805e-20,1.0164395367051604e-19,-2.3549029092579153e-20,9.417941119935216e-20,9.06304470649211e-19,0.0008928571478463709,-0.00044642857392318547,-2.0698726583552236e-19,-0.00029761905898340046,-4.177898195283843e-18,-5.304758382151437e-20,1.1999206365903529e-20,0.00014880952949170023,3.408082609910156e-19,1.6976823863078193e-21,1.2751620837074274e-20,1.3188010632101707e-19,6.776263578034403e-21,1.5246593050577406e-19,1.1895247017376204e-18,0.0017857142956927419,-0.0008928571478463709,-5.193268911240008e-19,-6.816165219820312e-19,-0.0017857142956927419,6.905177091561378e-19,2.596634455620004e-19,3.408082609910156e-19,0.0008928571478463709,-1.2037062152420224e-34,-2.798616950437702e-34,6.199087008496415e-34,-2.8888949165808538e-34,5.657419211637505e-34,9.399706129184047e-33,0.00039682540227659047,2.585166630402722e-19,-0.00039682540227659047,1.0977546996415732e-18,-1.0218485741282212e-18,-6.293781405194439e-20,-3.3881317890172014e-21,1.6976823863078193e-21,-1.2037062152420224e-34,5.668934318237007e-05,-8.470329472543003e-20,4.0657581468206416e-20,-1.4275696268941825e-19,3.2644556858608794e-20,2.64338825480515e-19,0.0005952381179668009,6.565393526403556e-19,-0.0001700680295471102,-0.00019841270113829523,-3.4547489864443126e-18,-1.6184009696919903e-19,-1.3552527156068805e-20,1.2751620837074274e-20,-2.798616950437702e-34,-8.470329472543003e-20,5.668934318237007e-05,1.9989977555201488e-19,3.1482726758315514e-20,1.6940658945086007e-19,1.0007112143453474e-18,0.0011904762359336019,-9.671809312276276e-19,-0.0003401360590942204,-2.715613478291429e-18,-0.0011904762359336019,5.394669683561683e-20,1.0164395367051604e-19,1.3188010632101707e-19,6.199087008496415e-34,4.0657581468206416e-20,1.9989977555201488e-19,0.0003401360590942204,2.2599753067321604e-19,2.8322015354022696e-19,1.0551973944990622e-18,0.0004960317746736109,6.914709314145286e-19,6.816508499774522e-19,-0.0005952381179668009,-5.55653613398821e-18,-1.5734453836103525e-19,-2.3549029092579153e-20,6.776263578034403e-21,-2.8888949165808538e-34,-1.4275696268941825e-19,3.1482726758315514e-20,2.2599753067321604e-19,9.920635056914762e-05,2.9554933226911813e-19,1.718202300999862e-18,0.0013392857508733869,-7.870256984033121e-19,-1.3213713977167085e-18,-0.00044642857392318547,-0.0013392857508733869,-6.2592723192585165e-34,9.417941119935216e-20,1.5246593050577406e-19,5.657419211637505e-34,3.2644556858608794e-20,1.6940658945086007e-19,2.8322015354022696e-19,2.9554933226911813e-19,0.00044642857392318547,1.2124001747826212e-18,0.0017857142956927419,-1.806944615258812e-17,-7.871362200729068e-18,-1.7601407509670915e-17,-0.010714286006987095,2.8322016904986345e-18,9.06304470649211e-19,1.1895247017376204e-18,9.399706129184047e-33,2.64338825480515e-19,1.0007112143453474e-18,1.0551973944990622e-18,1.718202300999862e-18,1.2124001747826212e-18,0.0053571430034935474,5.0,8.0,7.0,4.0,0.037942178547382355,-0.009143282659351826,-0.006279761902987957,-0.007008928339928389,-0.010803570970892906,0.0006377550889737904,0.0005952381179668009,0.0006696428754366934,0.0010714285308495164,0.00029761905898340046,0.00044642857392318547,0.0007142857066355646,0.00037202381645329297,0.0008035714272409678,0.0008928571478463709,-0.009143282659351826,0.00839817151427269,0.0005952381179668009,0.0006696428754366934,0.0010714285308495164,-0.0012755101779475808,-0.00029761905898340046,-0.0003348214377183467,-0.0005357142654247582,2.252199388921507e-20,-3.4728350837426314e-20,1.6570741493135466e-22,1.885098087098894e-20,1.485745046514323e-23,-0.0,-0.006279761902987957,0.0005952381179668009,0.0032823130022734404,0.00044642857392318547,0.0007142857066355646,-0.0,-0.0001700680295471102,-4.404571325722362e-20,-0.0,-0.00029761905898340046,-0.00012755101488437504,-0.0002040816325461492,-8.131516293641283e-20,-0.0,-0.0,-0.007008928339928389,0.0006696428754366934,0.00044642857392318547,0.0042708334513008595,0.0008035714272409678,-0.0,2.7358841240445836e-21,-0.00022321428696159273,-0.0,-0.0,-0.00014880952949170023,3.6339184913971034e-20,-0.00044642857392318547,-0.0002678571327123791,-0.0,-0.010803570970892906,0.0010714285308495164,0.0007142857066355646,0.0008035714272409678,0.013452380895614624,-0.0,1.2734957879634584e-23,1.9332532162717193e-22,-0.0007142857066355646,-1.4099270922746482e-20,3.5575383784680614e-20,-0.0004761904710903764,-2.710505431213761e-20,-0.0005357142654247582,-0.0026785715017467737,0.0006377550889737904,-0.0012755101779475808,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0005952381179668009,-0.00029761905898340046,-0.0001700680295471102,2.7358841240445836e-21,1.2734957879634584e-23,-0.0,8.50340147735551e-05,2.276056067405748e-22,-0.0,-6.776263578034403e-21,-1.6940658945086007e-21,-0.0,4.222311983314917e-22,-4.244985959878195e-24,-0.0,0.0006696428754366934,-0.0003348214377183467,-4.404571325722362e-20,-0.00022321428696159273,1.9332532162717193e-22,-0.0,2.276056067405748e-22,0.00011160714348079637,-0.0,3.983098054851187e-22,1.3552527156068805e-20,-5.52358070807473e-23,-6.776263578034403e-21,-0.0,-0.0,0.0010714285308495164,-0.0005357142654247582,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,2.252199388921507e-20,-0.00029761905898340046,-0.0,-1.4099270922746482e-20,-0.0,-6.776263578034403e-21,3.983098054851187e-22,-0.0,4.251700738677755e-05,-0.0,0.0,-1.1223140506886164e-21,-7.428725232571614e-24,-0.0,0.00044642857392318547,-3.4728350837426314e-20,-0.00012755101488437504,-0.00014880952949170023,3.5575383784680614e-20,-0.0,-1.6940658945086007e-21,1.3552527156068805e-20,-0.0,-0.0,4.251700738677755e-05,-1.0164395367051604e-20,2.97113097830104e-20,-0.0,-0.0,0.0007142857066355646,1.6570741493135466e-22,-0.0002040816325461492,3.6339184913971034e-20,-0.0004761904710903764,-0.0,-0.0,-5.52358070807473e-23,-0.0,0.0,-1.0164395367051604e-20,0.0001360544265480712,-1.104716141614946e-22,4.3157358967960274e-23,-0.0,0.00037202381645329297,1.885098087098894e-20,-8.131516293641283e-20,-0.00044642857392318547,-2.710505431213761e-20,-0.0,4.222311983314917e-22,-6.776263578034403e-21,-0.0,-1.1223140506886164e-21,2.97113097830104e-20,-1.104716141614946e-22,7.440476474585012e-05,-0.0,-0.0,0.0008035714272409678,1.485745046514323e-23,-0.0,-0.0002678571327123791,-0.0005357142654247582,-0.0,-4.244985959878195e-24,-0.0,-0.0,-7.428725232571614e-24,-0.0,4.3157358967960274e-23,-0.0,0.00017857142665889114,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0026785715017467737,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,5.0,8.0,7.0,5.0,0.03174319863319397,-0.007457483094185591,-0.0051190475933253765,-0.0057142856530845165,-0.007457483094185591,0.0005102040595375001,0.0004761904710903764,0.0005357142654247582,0.0007142857066355646,0.0002380952355451882,0.0003571428533177823,0.0004761904710903764,0.00029761905898340046,0.0005357142654247582,0.0005102040595375001,-0.007457483094185591,0.006789966020733118,0.0004761904710903764,0.0005357142654247582,0.0007142857066355646,-0.0010204081190750003,-0.0002380952355451882,-0.0002678571327123791,-0.0003571428533177823,1.2441663983088437e-20,-2.837560373301906e-20,-4.513898307157584e-36,1.0804739789918484e-20,-0.0,-0.0,-0.0051190475933253765,0.0004761904710903764,0.002653061179444194,0.0003571428533177823,0.0004761904710903764,-0.0,-0.0001360544265480712,-2.371692252312041e-20,-0.0,-0.0002380952355451882,-0.0001020408162730746,-0.0001360544265480712,-6.04651191694305e-20,-0.0,-0.0,-0.0057142856530845165,0.0005357142654247582,0.0003571428533177823,0.0034523808863013983,0.0005357142654247582,-0.0,-1.5532317309245204e-21,-0.00017857142665889114,-0.0,6.776263578034403e-21,-0.0001190476177725941,-2.301725697187126e-20,-0.0003571428533177823,-0.00017857142665889114,-0.0,-0.007457483094185591,0.0007142857066355646,0.0004761904710903764,0.0005357142654247582,0.006789966020733118,-0.0,-0.0,-5.266214691683848e-36,-0.0003571428533177823,-4.432481643591994e-21,-2.301725697187126e-20,-0.0002380952355451882,-0.0,-0.0002678571327123791,-0.0010204081190750003,0.0005102040595375001,-0.0010204081190750003,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0004761904710903764,-0.0002380952355451882,-0.0001360544265480712,-1.5532317309245204e-21,-0.0,-0.0,6.80272132740356e-05,-1.1108628195706833e-22,-0.0,-3.3881317890172014e-21,8.470329472543003e-22,-0.0,-1.8295553676876275e-22,-0.0,-0.0,0.0005357142654247582,-0.0002678571327123791,-2.371692252312041e-20,-0.00017857142665889114,-5.266214691683848e-36,-0.0,-1.1108628195706833e-22,8.928571332944557e-05,-0.0,-1.9440099973575682e-22,8.470329472543003e-21,1.504632769052528e-36,-3.3881317890172014e-21,-0.0,-0.0,0.0007142857066355646,-0.0003571428533177823,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,1.2441663983088437e-20,-0.0002380952355451882,6.776263578034403e-21,-4.432481643591994e-21,-0.0,-3.3881317890172014e-21,-1.9440099973575682e-22,-0.0,3.40136066370178e-05,-0.0,0.0,-3.3031673548264168e-22,0.0,-0.0,0.0003571428533177823,-2.837560373301906e-20,-0.0001020408162730746,-0.0001190476177725941,-2.301725697187126e-20,-0.0,8.470329472543003e-22,8.470329472543003e-21,-0.0,-0.0,3.40136066370178e-05,6.576359307918981e-21,2.111066705224762e-20,-0.0,-0.0,0.0004761904710903764,-4.513898307157584e-36,-0.0001360544265480712,-2.301725697187126e-20,-0.0002380952355451882,-0.0,-0.0,1.504632769052528e-36,-0.0,0.0,6.576359307918981e-21,6.80272132740356e-05,3.76158192263132e-36,-0.0,-0.0,0.00029761905898340046,1.0804739789918484e-20,-6.04651191694305e-20,-0.0003571428533177823,-0.0,-0.0,-1.8295553676876275e-22,-3.3881317890172014e-21,-0.0,-3.3031673548264168e-22,2.111066705224762e-20,3.76158192263132e-36,5.952380888629705e-05,0.0,-0.0,0.0005357142654247582,-0.0,-0.0,-0.00017857142665889114,-0.0002678571327123791,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,8.928571332944557e-05,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0010204081190750003,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,5.0,8.0,7.0,6.0,0.027310090139508247,-0.0062996032647788525,-0.004322562366724014,-0.004825680050998926,-0.005463435314595699,0.00042517005931586027,0.00039682540227659047,0.00044642857392318547,0.0005102040595375001,0.00019841270113829523,0.00029761905898340046,0.0003401360590942204,0.00024801588733680546,0.00038265305920504034,0.0003188775444868952,-0.0062996032647788525,0.005700821988284588,0.00039682540227659047,0.00044642857392318547,0.0005102040595375001,-0.0008503401186317205,-0.00019841270113829523,-0.00022321428696159273,-0.00025510202976875007,1.2034953169945464e-19,3.257285774784149e-19,5.26326390069848e-19,3.596034071706572e-19,6.722318994386757e-19,9.293161183025534e-19,-0.004322562366724014,0.00039682540227659047,0.0022270812187343836,0.00029761905898340046,0.0003401360590942204,8.9649989884862e-19,-0.00011337868636474013,-9.680645766105102e-21,-6.494154599475473e-21,-0.00019841270113829523,-8.50340147735551e-05,-9.718172805150971e-05,5.993513421121012e-19,3.4836556401305907e-19,1.1042493082210333e-18,-0.004825680050998926,0.00044642857392318547,0.00029761905898340046,0.0028982425574213266,0.00038265305920504034,1.3140516764762268e-18,1.3914381192439249e-19,-0.00014880952949170023,-3.1181190344471525e-20,6.979551485375435e-19,-9.920635056914762e-05,2.312417782086198e-19,-0.00029761905898340046,-0.00012755101488437504,1.775768850055936e-19,-0.005463435314595699,0.0005102040595375001,0.0003401360590942204,0.00038265305920504034,0.003939200658351183,1.988195810695972e-18,3.1552838070047626e-19,1.647519407464476e-19,-0.0002040816325461492,1.017386555108957e-18,-1.5919083133764775e-19,-0.0001360544265480712,3.049318610115481e-19,-0.0001530612207716331,-0.00047831633128225803,0.00042517005931586027,-0.0008503401186317205,8.9649989884862e-19,1.3140516764762268e-18,1.988195810695972e-18,0.00021258502965793014,-2.0208603976038667e-20,-2.6523791910757184e-20,-3.63754871568696e-20,-3.1468907025972196e-20,-8.092004848459951e-20,-1.1405873266810937e-19,-7.867226918051762e-20,-1.4565607564005176e-19,-1.7701260565616466e-19,0.00039682540227659047,-0.00019841270113829523,-0.00011337868636474013,1.3914381192439249e-19,3.1552838070047626e-19,-2.0208603976038667e-20,5.668934318237007e-05,5.437762562301428e-21,3.2470772997377365e-21,1.6940658945086007e-21,-5.929230630780102e-21,-1.3552527156068805e-20,-1.2832666765645998e-20,-1.8341877053356693e-20,-4.046002424229976e-20,0.00044642857392318547,-0.00022321428696159273,-9.680645766105102e-21,-0.00014880952949170023,1.647519407464476e-19,-2.6523791910757184e-20,5.437762562301428e-21,7.440476474585012e-05,1.5590595172235763e-20,-1.343801327978944e-22,6.234637991396898e-21,-7.55253784779204e-21,4.5363667939968944e-36,-8.470329472543003e-21,-2.6551890202189845e-20,0.0005102040595375001,-0.00025510202976875007,-6.494154599475473e-21,-3.1181190344471525e-20,-0.0002040816325461492,-3.63754871568696e-20,3.2470772997377365e-21,1.5590595172235763e-20,0.0001020408162730746,5.266214691683848e-36,1.4858248594393714e-35,1.7350296618136964e-35,1.0532429383367696e-35,2.1817175151261656e-35,2.2407571206765107e-35,0.00019841270113829523,1.2034953169945464e-19,-0.00019841270113829523,6.979551485375435e-19,1.017386555108957e-18,-3.1468907025972196e-20,1.6940658945086007e-21,-1.343801327978944e-22,5.266214691683848e-36,2.8344671591185033e-05,-3.8963515573697816e-20,-6.268043809681823e-20,-7.380972026136733e-20,-4.720335892337116e-20,-1.2980923380809642e-19,0.00029761905898340046,3.257285774784149e-19,-8.50340147735551e-05,-9.920635056914762e-05,-1.5919083133764775e-19,-8.092004848459951e-20,-5.929230630780102e-21,6.234637991396898e-21,1.4858248594393714e-35,-3.8963515573697816e-20,2.8344671591185033e-05,1.7904471377139468e-20,1.3634640987736032e-20,4.235164736271502e-21,1.180083973084279e-20,0.0003401360590942204,5.26326390069848e-19,-9.718172805150971e-05,2.312417782086198e-19,-0.0001360544265480712,-1.1405873266810937e-19,-1.3552527156068805e-20,-7.55253784779204e-21,1.7350296618136964e-35,-6.268043809681823e-20,1.7904471377139468e-20,3.887269122060388e-05,-4.7473094120071607e-20,-1.0532721768597848e-20,-7.081616654923499e-20,0.00024801588733680546,3.596034071706572e-19,5.993513421121012e-19,-0.00029761905898340046,3.049318610115481e-19,-7.867226918051762e-20,-1.2832666765645998e-20,4.5363667939968944e-36,1.0532429383367696e-35,-7.380972026136733e-20,1.3634640987736032e-20,-4.7473094120071607e-20,4.960317528457381e-05,-1.9504894610193384e-21,-2.950210094269411e-20,0.00038265305920504034,6.722318994386757e-19,3.4836556401305907e-19,-0.00012755101488437504,-0.0001530612207716331,-1.4565607564005176e-19,-1.8341877053356693e-20,-8.470329472543003e-21,2.1817175151261656e-35,-4.720335892337116e-20,4.235164736271502e-21,-1.0532721768597848e-20,-1.9504894610193384e-21,5.10204081365373e-05,-9.6663882096485e-21,0.0003188775444868952,9.293161183025534e-19,1.1042493082210333e-18,1.775768850055936e-19,-0.00047831633128225803,-1.7701260565616466e-19,-4.046002424229976e-20,-2.6551890202189845e-20,2.2407571206765107e-35,-1.2980923380809642e-19,1.180083973084279e-20,-7.081616654923499e-20,-2.950210094269411e-20,-9.6663882096485e-21,9.566326480126008e-05,5.0,8.0,7.0,7.0,0.023975037038326263,-0.005454324651509523,-0.0037414967082440853,-0.004177296068519354,-0.004177296068519354,0.00036443150020204484,0.0003401360590942204,0.00038265305920504034,0.00038265305920504034,0.0001700680295471102,0.00025510202976875007,0.00025510202976875007,0.00021258502965793014,0.00028698978712782264,0.00021258502965793014,-0.005454324651509523,0.004913751035928726,0.0003401360590942204,0.00038265305920504034,0.00038265305920504034,-0.0007288630004040897,-0.0001700680295471102,-0.00019132652960252017,-0.00019132652960252017,1.0135532579787185e-19,3.217961349969437e-19,3.198836417219328e-19,3.073619108560758e-19,3.978664817112816e-19,2.989723090414391e-19,-0.0037414967082440853,0.0003401360590942204,0.0019193391781300306,0.00025510202976875007,0.00025510202976875007,6.247278991367327e-19,-9.718172805150971e-05,3.033359517289463e-20,2.710505431213761e-20,-0.0001700680295471102,-7.288629421964288e-05,-7.288629421964288e-05,3.886461320677003e-19,6.59250217378148e-20,3.8426665016393244e-19,-0.004177296068519354,0.00038265305920504034,0.00025510202976875007,0.0024978742003440857,0.00028698978712782264,1.1154993781420608e-18,1.0278033181110198e-19,-0.00012755101488437504,-1.1969973124509309e-20,5.149960319306146e-19,-8.50340147735551e-05,-2.879912020664621e-19,-0.00025510202976875007,-9.566326480126008e-05,4.355877206389411e-20,-0.004177296068519354,0.00038265305920504034,0.00025510202976875007,0.00028698978712782264,0.0024978742003440857,1.1154993781420608e-18,1.0300250735375489e-19,-1.4555598355475858e-20,-0.00012755101488437504,5.160414331285168e-19,-2.8632882752917195e-19,-8.50340147735551e-05,-1.4907779871675686e-19,-9.566326480126008e-05,-0.00025510202976875007,0.00036443150020204484,-0.0007288630004040897,6.247278991367327e-19,1.1154993781420608e-18,1.1154993781420608e-18,0.00018221575010102242,3.6362904964270846e-20,-3.6826878970904935e-20,-3.6826878970904935e-20,-2.6973348417808416e-20,-6.936003786545756e-20,-6.936003786545756e-20,-6.743337266010817e-20,-9.103505212179375e-20,-6.743337266010817e-20,0.0003401360590942204,-0.0001700680295471102,-9.718172805150971e-05,1.0278033181110198e-19,1.0300250735375489e-19,3.6362904964270846e-20,4.8590864025754854e-05,9.915688248589121e-22,1.06207809609178e-21,1.6940658945086007e-21,-3.3881317890172014e-21,-3.3881317890172014e-21,-1.0558307014243739e-20,-8.092004202225098e-21,-1.0614182903062982e-20,0.00038265305920504034,-0.00019132652960252017,3.033359517289463e-20,-0.00012755101488437504,-1.4555598355475858e-20,-3.6826878970904935e-20,9.915688248589121e-22,6.377550744218752e-05,8.239713294909067e-21,3.9777758943135866e-23,-1.077958671383091e-20,-9.304972835477167e-23,-3.1910112135933824e-36,-8.470329472543003e-22,1.4506844075717009e-22,0.00038265305920504034,-0.00019132652960252017,2.710505431213761e-20,-1.1969973124509309e-20,-0.00012755101488437504,-3.6826878970904935e-20,1.06207809609178e-21,8.239713294909067e-21,6.377550744218752e-05,1.6316911297384312e-22,-5.29178970829364e-23,-1.0101960194468756e-20,-2.247827973644299e-22,-9.543841684626517e-22,2.491870084257667e-21,0.0001700680295471102,1.0135532579787185e-19,-0.0001700680295471102,5.149960319306146e-19,5.160414331285168e-19,-2.6973348417808416e-20,1.6940658945086007e-21,3.9777758943135866e-23,1.6316911297384312e-22,2.4295432012877427e-05,-2.0328790734103208e-20,-2.0328790734103208e-20,-6.246512556831009e-20,-2.832201470778784e-20,-6.21825658409408e-20,0.00025510202976875007,3.217961349969437e-19,-7.288629421964288e-05,-8.50340147735551e-05,-2.8632882752917195e-19,-6.936003786545756e-20,-3.3881317890172014e-21,-1.077958671383091e-20,-5.29178970829364e-23,-2.0328790734103208e-20,2.4295432012877427e-05,2.4535663308485982e-20,-1.9867943292469984e-21,2.0328790734103208e-20,1.9225063609493243e-20,0.00025510202976875007,3.198836417219328e-19,-7.288629421964288e-05,-2.879912020664621e-19,-8.50340147735551e-05,-6.936003786545756e-20,-3.3881317890172014e-21,-9.304972835477167e-23,-1.0101960194468756e-20,-2.0328790734103208e-20,2.4535663308485982e-20,2.4295432012877427e-05,1.9144799625094323e-20,2.108357042483797e-20,-1.2831053601892806e-21,0.00021258502965793014,3.073619108560758e-19,3.886461320677003e-19,-0.00025510202976875007,-1.4907779871675686e-19,-6.743337266010817e-20,-1.0558307014243739e-20,-3.1910112135933824e-36,-2.247827973644299e-22,-6.246512556831009e-20,-1.9867943292469984e-21,1.9144799625094323e-20,4.251700738677755e-05,6.102892515182922e-21,6.598450038594262e-21,0.00028698978712782264,3.978664817112816e-19,6.59250217378148e-20,-9.566326480126008e-05,-9.566326480126008e-05,-9.103505212179375e-20,-8.092004202225098e-21,-8.470329472543003e-22,-9.543841684626517e-22,-2.832201470778784e-20,2.0328790734103208e-20,2.108357042483797e-20,6.102892515182922e-21,3.188775372109376e-05,-5.816045181118999e-20,0.00021258502965793014,2.989723090414391e-19,3.8426665016393244e-19,4.355877206389411e-20,-0.00025510202976875007,-6.743337266010817e-20,-1.0614182903062982e-20,1.4506844075717009e-22,2.491870084257667e-21,-6.21825658409408e-20,1.9225063609493243e-20,-1.2831053601892806e-21,6.598450038594262e-21,-5.816045181118999e-20,4.251700738677755e-05,5.0,8.0,7.0,8.0,0.021371882408857346,-0.0048097362741827965,-0.0032986111473292112,-0.0036830357275903225,-0.0032986111473292112,0.0003188775444868952,0.00029761905898340046,0.0003348214377183467,0.00029761905898340046,0.00014880952949170023,0.00022321428696159273,0.00019841270113829523,0.00018601190822664648,0.00022321428696159273,0.00014880952949170023,-0.0048097362741827965,0.00431813346222043,0.00029761905898340046,0.0003348214377183467,0.00029761905898340046,-0.0006377550889737904,-0.00014880952949170023,-0.00016741071885917336,-0.00014880952949170023,1.0925060641715138e-20,-1.603474592473699e-20,-1.4783232967054196e-20,9.945317712727928e-21,-1.280398847843227e-20,2.0463016540464492e-21,-0.0032986111473292112,0.00029761905898340046,0.0016865079523995519,0.00022321428696159273,0.00019841270113829523,-0.0,-8.50340147735551e-05,-2.0428926440249007e-20,-2.0328790734103208e-20,-0.00014880952949170023,-6.377550744218752e-05,-5.668934318237007e-05,-3.7469721091480813e-20,-6.831127301514263e-21,-4.2063975917654095e-20,-0.0036830357275903225,0.0003348214377183467,0.00022321428696159273,0.0021949405781924725,0.00022321428696159273,-0.0,4.89044182906856e-22,-0.00011160714348079637,-1.3552527156068805e-20,-0.0,-7.440476474585012e-05,-0.0,-0.00022321428696159273,-7.440476474585012e-05,-3.0301406214838953e-20,-0.0032986111473292112,0.00029761905898340046,0.00019841270113829523,0.00022321428696159273,0.0016865079523995519,-0.0,2.5514707092141e-21,2.22740856785903e-21,-8.50340147735551e-05,-2.377733700009554e-21,1.2850965713318032e-20,-5.668934318237007e-05,6.776263578034403e-21,-6.377550744218752e-05,-0.00014880952949170023,0.0003188775444868952,-0.0006377550889737904,-0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-0.00014880952949170023,-8.50340147735551e-05,4.89044182906856e-22,2.5514707092141e-21,-0.0,4.251700738677755e-05,1.1792357292544679e-22,5.1314565692067284e-23,-3.3881317890172014e-21,-8.470329472543003e-22,-1.2705494208814505e-21,3.4457292878759993e-22,-1.4124251104431876e-37,2.3678797292089636e-22,0.0003348214377183467,-0.00016741071885917336,-2.0428926440249007e-20,-0.00011160714348079637,2.22740856785903e-21,-0.0,1.1792357292544679e-22,5.5803571740398183e-05,-1.4098967646749192e-22,2.0636625261953188e-22,6.225692081539751e-21,-1.328117227015776e-23,-3.3881317890172014e-21,-8.470329472543003e-22,8.481275832681595e-23,0.00029761905898340046,-0.00014880952949170023,-2.0328790734103208e-20,-1.3552527156068805e-20,-8.50340147735551e-05,-0.0,5.1314565692067284e-23,-1.4098967646749192e-22,4.251700738677755e-05,8.980048601681322e-23,9.208135426195856e-23,5.505714157152952e-21,-2.8197935293498384e-22,4.384310893711068e-21,-8.94142256388259e-22,0.00014880952949170023,1.0925060641715138e-20,-0.00014880952949170023,-0.0,-2.377733700009554e-21,-0.0,-3.3881317890172014e-21,2.0636625261953188e-22,8.980048601681322e-23,2.1258503693388775e-05,-0.0,-8.470329472543003e-22,-1.1843258700226245e-23,-1.88079096131566e-37,2.282173841497918e-22,0.00022321428696159273,-1.603474592473699e-20,-6.377550744218752e-05,-7.440476474585012e-05,1.2850965713318032e-20,-0.0,-8.470329472543003e-22,6.225692081539751e-21,9.208135426195856e-23,-0.0,2.1258503693388775e-05,-2.9838737198712266e-21,1.2321071712653289e-20,-1.2705494208814505e-21,1.611423715361493e-22,0.00019841270113829523,-1.4783232967054196e-20,-5.668934318237007e-05,-0.0,-5.668934318237007e-05,-0.0,-1.2705494208814505e-21,-1.328117227015776e-23,5.505714157152952e-21,-8.470329472543003e-22,-2.9838737198712266e-21,1.6196954675251618e-05,-2.656234454031552e-23,3.040793076030573e-21,1.1251154787787862e-20,0.00018601190822664648,9.945317712727928e-21,-3.7469721091480813e-20,-0.00022321428696159273,6.776263578034403e-21,-0.0,3.4457292878759993e-22,-3.3881317890172014e-21,-2.8197935293498384e-22,-1.1843258700226245e-23,1.2321071712653289e-20,-2.656234454031552e-23,3.720238237292506e-05,-2.4433643019948497e-21,4.562446843758616e-22,0.00022321428696159273,-1.280398847843227e-20,-6.831127301514263e-21,-7.440476474585012e-05,-6.377550744218752e-05,-0.0,-1.4124251104431876e-37,-8.470329472543003e-22,4.384310893711068e-21,-1.88079096131566e-37,-1.2705494208814505e-21,3.040793076030573e-21,-2.4433643019948497e-21,2.1258503693388775e-05,7.600625798832355e-21,0.00014880952949170023,2.0463016540464492e-21,-4.2063975917654095e-20,-3.0301406214838953e-20,-0.00014880952949170023,-0.0,2.3678797292089636e-22,8.481275832681595e-23,-8.94142256388259e-22,2.282173841497918e-22,1.611423715361493e-22,1.1251154787787862e-20,4.562446843758616e-22,7.600625798832355e-21,2.1258503693388775e-05,5.0,8.0,8.0,3.0,0.04222883656620979,-0.010441468097269535,-0.007175926119089127,-0.007175926119089127,-0.015104166232049465,0.0007440476329065859,0.0006944444612599909,0.0006944444612599909,0.0015625000232830644,0.00034722223062999547,0.00046296295477077365,0.0010416667209938169,0.00034722223062999547,0.0010416667209938169,0.0015625000232830644,-0.010441468097269535,0.009685019962489605,0.0006944444612599909,0.0006944444612599909,0.0015625000232830644,-0.0014880952658131719,-0.00034722223062999547,-0.00034722223062999547,-0.0007812500116415322,-2.794615482343626e-20,1.1858461261560205e-20,-1.3543726245156925e-20,-3.4327991381982814e-21,-0.0,-0.0,-0.007175926119089127,0.0006944444612599909,0.0037863757461309433,0.00046296295477077365,0.0010416667209938169,-0.0,-0.00019841270113829523,6.776263578034403e-21,-0.0,-0.00034722223062999547,-0.00013227513409219682,-0.00029761905898340046,2.531509847447108e-20,-0.0,-0.0,-0.007175926119089127,0.0006944444612599909,0.00046296295477077365,0.0037863757461309433,0.0010416667209938169,-0.0,-1.4736259771136268e-20,-0.00019841270113829523,-0.0,-2.710505431213761e-20,-0.00013227513409219682,-3.1059862981890456e-20,-0.00034722223062999547,-0.00029761905898340046,-0.0,-0.015104166232049465,0.0015625000232830644,0.0010416667209938169,0.0010416667209938169,0.03072916716337204,-0.0,-1.1858461261560205e-20,-1.6852647816483288e-21,-0.0015625000232830644,-1.300914784959746e-20,-2.371692252312041e-20,-0.0010416667209938169,-2.710505431213761e-20,-0.0010416667209938169,-0.00937500037252903,0.0007440476329065859,-0.0014880952658131719,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0006944444612599909,-0.00034722223062999547,-0.00019841270113829523,-1.4736259771136268e-20,-1.1858461261560205e-20,-0.0,9.920635056914762e-05,6.904868453834287e-22,-0.0,6.776263578034403e-21,1.6940658945086007e-21,3.3881317890172014e-21,9.807997249211673e-22,-0.0,-0.0,0.0006944444612599909,-0.00034722223062999547,6.776263578034403e-21,-0.00019841270113829523,-1.6852647816483288e-21,-0.0,6.904868453834287e-22,9.920635056914762e-05,-0.0,1.2083519415556767e-21,-5.082197683525802e-21,4.815042377529791e-22,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0007812500116415322,-0.0,-0.0,-0.0015625000232830644,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-2.794615482343626e-20,-0.00034722223062999547,-2.710505431213761e-20,-1.300914784959746e-20,-0.0,6.776263578034403e-21,1.2083519415556767e-21,-0.0,4.960317528457381e-05,-0.0,6.776263578034403e-21,1.9303992311126e-21,0.0,-0.0,0.00046296295477077365,1.1858461261560205e-20,-0.00013227513409219682,-0.00013227513409219682,-2.371692252312041e-20,-0.0,1.6940658945086007e-21,-5.082197683525802e-21,-0.0,-0.0,3.779289545491338e-05,6.776263578034403e-21,-1.2210059873922124e-20,-0.0,-0.0,0.0010416667209938169,-1.3543726245156925e-20,-0.00029761905898340046,-3.1059862981890456e-20,-0.0010416667209938169,-0.0,3.3881317890172014e-21,4.815042377529791e-22,-0.0,6.776263578034403e-21,6.776263578034403e-21,0.00029761905898340046,8.426323908241644e-22,-0.0,-0.0,0.00034722223062999547,-3.4327991381982814e-21,2.531509847447108e-20,-0.00034722223062999547,-2.710505431213761e-20,-0.0,9.807997249211673e-22,-0.0,-0.0,1.9303992311126e-21,-1.2210059873922124e-20,8.426323908241644e-22,4.960317528457381e-05,0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.00029761905898340046,-0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.00029761905898340046,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0,-0.00937500037252903,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004687500186264515,5.0,8.0,8.0,4.0,0.03385912626981735,-0.008065476082265377,-0.005538194440305233,-0.005538194440305233,-0.009531250223517418,0.0005580357392318547,0.0005208333604969084,0.0005208333604969084,0.0009374999790452421,0.0002604166802484542,0.00034722223062999547,0.0006249999860301614,0.0002604166802484542,0.0006249999860301614,0.0007812500116415322,-0.008065476082265377,0.007380952592939138,0.0005208333604969084,0.0005208333604969084,0.0009374999790452421,-0.0011160714784637094,-0.0002604166802484542,-0.0002604166802484542,-0.00046874998952262104,-1.2698933309463767e-20,2.964615315390051e-21,-2.68882747295377e-22,-1.212599037402932e-20,-7.776039989430273e-22,-0.0,-0.005538194440305233,0.0005208333604969084,0.0028844245243817568,0.00034722223062999547,0.0006249999860301614,-0.0,-0.00014880952949170023,3.721390660131955e-21,-0.0,-0.0002604166802484542,-9.920635056914762e-05,-0.00017857142665889114,1.3240751958763772e-20,-3.3881317890172014e-21,-0.0,-0.005538194440305233,0.0005208333604969084,0.00034722223062999547,0.0028844245243817568,0.0006249999860301614,-0.0,-4.151051211629299e-21,-0.00014880952949170023,-0.0,-6.776263578034403e-21,-9.920635056914762e-05,-1.599463735855097e-20,-0.0002604166802484542,-0.00017857142665889114,-0.0,-0.009531250223517418,0.0009374999790452421,0.0006249999860301614,0.0006249999860301614,0.011822916567325592,-0.0,-7.776039989430273e-22,-2.68882747295377e-22,-0.0006249999860301614,-6.4949454293775134e-21,-1.4823076576950256e-20,-0.00041666667675599456,-0.0,-0.00041666667675599456,-0.0023437500931322575,0.0005580357392318547,-0.0011160714784637094,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0005208333604969084,-0.0002604166802484542,-0.00014880952949170023,-4.151051211629299e-21,-7.776039989430273e-22,-0.0,7.440476474585012e-05,1.3721996894781762e-22,-0.0,3.3881317890172014e-21,8.470329472543003e-22,-0.0,7.643695509042858e-23,2.2217256391413666e-22,-0.0,0.0005208333604969084,-0.0002604166802484542,3.721390660131955e-21,-0.00014880952949170023,-2.68882747295377e-22,-0.0,1.3721996894781762e-22,7.440476474585012e-05,-0.0,2.401349393477936e-22,-1.6940658945086007e-21,7.682364208439343e-23,3.3881317890172014e-21,-0.0,-0.0,0.0009374999790452421,-0.00046874998952262104,-0.0,-0.0,-0.0006249999860301614,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002604166802484542,-1.2698933309463767e-20,-0.0002604166802484542,-6.776263578034403e-21,-6.4949454293775134e-21,-0.0,3.3881317890172014e-21,2.401349393477936e-22,-0.0,3.720238237292506e-05,1.6940658945086007e-21,0.0,-4.362503799551981e-22,3.8880199947151364e-22,-0.0,0.00034722223062999547,2.964615315390051e-21,-9.920635056914762e-05,-9.920635056914762e-05,-1.4823076576950256e-20,-0.0,8.470329472543003e-22,-1.6940658945086007e-21,-0.0,1.6940658945086007e-21,2.8344671591185033e-05,4.235164736271502e-21,-2.940642627652177e-21,-0.0,-0.0,0.0006249999860301614,-2.68882747295377e-22,-0.00017857142665889114,-1.599463735855097e-20,-0.00041666667675599456,-0.0,-0.0,7.682364208439343e-23,-0.0,0.0,4.235164736271502e-21,0.0001190476177725941,1.344413736476885e-22,3.76158192263132e-37,-0.0,0.0002604166802484542,-1.212599037402932e-20,1.3240751958763772e-20,-0.0002604166802484542,-0.0,-0.0,7.643695509042858e-23,3.3881317890172014e-21,-0.0,-4.362503799551981e-22,-2.940642627652177e-21,1.344413736476885e-22,3.720238237292506e-05,-0.0,-0.0,0.0006249999860301614,-7.776039989430273e-22,-3.3881317890172014e-21,-0.00017857142665889114,-0.00041666667675599456,-0.0,2.2217256391413666e-22,-0.0,-0.0,3.8880199947151364e-22,-0.0,3.76158192263132e-37,-0.0,0.0001190476177725941,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0023437500931322575,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,5.0,8.0,8.0,5.0,0.028313491493463516,-0.006577380932867527,-0.004513889085501432,-0.004513889085501432,-0.006577380932867527,0.00044642857392318547,0.00041666667675599456,0.00041666667675599456,0.0006249999860301614,0.00020833333837799728,0.00027777778450399637,0.00041666667675599456,0.00020833333837799728,0.00041666667675599456,0.00044642857392318547,-0.006577380932867527,0.005967261735349894,0.00041666667675599456,0.00041666667675599456,0.0006249999860301614,-0.0008928571478463709,-0.00020833333837799728,-0.00020833333837799728,-0.0003124999930150807,-7.389628402584647e-22,8.893845946170154e-21,5.443228093575387e-21,1.4587690580251893e-21,-0.0,-0.0,-0.004513889085501432,0.00041666667675599456,0.0023313493002206087,0.00027777778450399637,0.00041666667675599456,-0.0,-0.0001190476177725941,6.776263578034403e-21,-0.0,-0.00020833333837799728,-7.936507608974352e-05,-0.0001190476177725941,1.1762570510608708e-20,-0.0,-0.0,-0.004513889085501432,0.00041666667675599456,0.00027777778450399637,0.0023313493002206087,0.00041666667675599456,-0.0,2.914410541307554e-21,-0.0001190476177725941,-0.0,6.776263578034403e-21,-7.936507608974352e-05,-5.082197683525802e-21,-0.00020833333837799728,-0.0001190476177725941,-0.0,-0.006577380932867527,0.0006249999860301614,0.00041666667675599456,0.00041666667675599456,0.005967261735349894,-0.0,5.929230630780102e-21,-4.860024867176176e-22,-0.0003124999930150807,6.580487133046077e-21,-2.964615315390051e-21,-0.00020833333837799728,-0.0,-0.00020833333837799728,-0.0008928571478463709,0.00044642857392318547,-0.0008928571478463709,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.00041666667675599456,-0.00020833333837799728,-0.0001190476177725941,2.914410541307554e-21,5.929230630780102e-21,-0.0,5.952380888629705e-05,1.2064699844930836e-22,-0.0,-0.0,-0.0,-1.6940658945086007e-21,-4.1679116304198965e-22,-0.0,-0.0,0.00041666667675599456,-0.00020833333837799728,6.776263578034403e-21,-0.0001190476177725941,-4.860024867176176e-22,-0.0,1.2064699844930836e-22,5.952380888629705e-05,-0.0,2.1113223466451514e-22,-2.541098841762901e-21,1.3885785875722266e-22,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0003124999930150807,-0.0,-0.0,-0.0003124999930150807,-0.0,-0.0,-0.0,0.00015624999650754035,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00020833333837799728,-7.389628402584647e-22,-0.00020833333837799728,6.776263578034403e-21,6.580487133046077e-21,-0.0,-0.0,2.1113223466451514e-22,-0.0,2.9761904443148524e-05,-1.6940658945086007e-21,-3.3881317890172014e-21,5.313902362991199e-22,0.0,-0.0,0.00027777778450399637,8.893845946170154e-21,-7.936507608974352e-05,-7.936507608974352e-05,-2.964615315390051e-21,-0.0,-0.0,-2.541098841762901e-21,-0.0,-1.6940658945086007e-21,2.2675736545352265e-05,8.470329472543003e-22,-4.4109640424524615e-21,-0.0,-0.0,0.00041666667675599456,5.443228093575387e-21,-0.0001190476177725941,-5.082197683525802e-21,-0.00020833333837799728,-0.0,-1.6940658945086007e-21,1.3885785875722266e-22,-0.0,-3.3881317890172014e-21,8.470329472543003e-22,5.952380888629705e-05,2.430012433588088e-22,-0.0,-0.0,0.00020833333837799728,1.4587690580251893e-21,1.1762570510608708e-20,-0.00020833333837799728,-0.0,-0.0,-4.1679116304198965e-22,-0.0,-0.0,5.313902362991199e-22,-4.4109640424524615e-21,2.430012433588088e-22,2.9761904443148524e-05,0.0,-0.0,0.00041666667675599456,-0.0,-0.0,-0.0001190476177725941,-0.00020833333837799728,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,5.952380888629705e-05,-0.0,0.00044642857392318547,-0.0,-0.0,-0.0,-0.0008928571478463709,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,5.0,8.0,8.0,6.0,0.024351025000214577,-0.0055555556900799274,-0.003811177331954241,-0.003811177331954241,-0.004817708395421505,0.00037202381645329297,0.00034722223062999547,0.00034722223062999547,0.00044642857392318547,0.00017361111531499773,0.00023148147738538682,0.00029761905898340046,0.00017361111531499773,0.00029761905898340046,0.00027901786961592734,-0.0055555556900799274,0.005009920801967382,0.00034722223062999547,0.00034722223062999547,0.00044642857392318547,-0.0007440476329065859,-0.00017361111531499773,-0.00017361111531499773,-0.00022321428696159273,-5.07872619067185e-21,-0.0,1.6456920911512025e-37,1.3341518551685357e-21,-0.0,-0.0,-0.003811177331954241,0.00034722223062999547,0.0019569634459912777,0.00023148147738538682,0.00029761905898340046,-0.0,-9.920635056914762e-05,5.082197683525802e-21,-0.0,-0.00017361111531499773,-6.613756704609841e-05,-8.50340147735551e-05,1.8986323451956527e-20,-0.0,-0.0,-0.003811177331954241,0.00034722223062999547,0.00023148147738538682,0.0019569634459912777,0.00029761905898340046,-0.0,1.9922486523852158e-22,-9.920635056914762e-05,-0.0,6.776263578034403e-21,-6.613756704609841e-05,-4.091956669342558e-21,-0.00017361111531499773,-8.50340147735551e-05,-0.0,-0.004817708395421505,0.00044642857392318547,0.00029761905898340046,0.00029761905898340046,0.0034616815391927958,-0.0,-0.0,1.6456920911512025e-37,-0.00017857142665889114,8.667828537312842e-21,-4.091956669342558e-21,-0.0001190476177725941,6.776263578034403e-21,-0.0001190476177725941,-0.0004185267898719758,0.00037202381645329297,-0.0007440476329065859,-0.0,-0.0,-0.0,0.00018601190822664648,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.00034722223062999547,-0.00017361111531499773,-9.920635056914762e-05,1.9922486523852158e-22,-0.0,-0.0,4.960317528457381e-05,-1.3885785875722266e-22,-0.0,1.6940658945086007e-21,8.470329472543003e-22,-0.0,-3.811862479400886e-22,-0.0,-0.0,0.00034722223062999547,-0.00017361111531499773,5.082197683525802e-21,-9.920635056914762e-05,1.6456920911512025e-37,-0.0,-1.3885785875722266e-22,4.960317528457381e-05,-0.0,-2.430012433588088e-22,-8.470329472543003e-22,-4.70197740328915e-38,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00022321428696159273,-0.0,-0.0,-0.00017857142665889114,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017361111531499773,-5.07872619067185e-21,-0.00017361111531499773,6.776263578034403e-21,8.667828537312842e-21,-0.0,1.6940658945086007e-21,-2.430012433588088e-22,-0.0,2.4801587642286904e-05,-0.0,-3.3881317890172014e-21,-9.441541697566477e-22,0.0,-0.0,0.00023148147738538682,-0.0,-6.613756704609841e-05,-6.613756704609841e-05,-4.091956669342558e-21,-0.0,8.470329472543003e-22,-8.470329472543003e-22,-0.0,-0.0,1.889644772745669e-05,1.169130534654557e-21,-3.164387309308885e-21,-0.0,-0.0,0.00029761905898340046,1.6456920911512025e-37,-8.50340147735551e-05,-4.091956669342558e-21,-0.0001190476177725941,-0.0,-0.0,-4.70197740328915e-38,-0.0,-3.3881317890172014e-21,1.169130534654557e-21,3.40136066370178e-05,-1.88079096131566e-37,-0.0,-0.0,0.00017361111531499773,1.3341518551685357e-21,1.8986323451956527e-20,-0.00017361111531499773,6.776263578034403e-21,-0.0,-3.811862479400886e-22,-0.0,-0.0,-9.441541697566477e-22,-3.164387309308885e-21,-1.88079096131566e-37,2.4801587642286904e-05,-3.3881317890172014e-21,-0.0,0.00029761905898340046,-0.0,-0.0,-8.50340147735551e-05,-0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-3.3881317890172014e-21,3.40136066370178e-05,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0,-0.0004185267898719758,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.370535942958668e-05,5.0,8.0,8.0,7.0,0.021371882408857346,-0.0048097362741827965,-0.0032986111473292112,-0.0032986111473292112,-0.0036830357275903225,0.0003188775444868952,0.00029761905898340046,0.00029761905898340046,0.0003348214377183467,0.00014880952949170023,0.00019841270113829523,0.00022321428696159273,0.00014880952949170023,0.00022321428696159273,0.00018601190822664648,-0.0048097362741827965,0.00431813346222043,0.00029761905898340046,0.00029761905898340046,0.0003348214377183467,-0.0006377550889737904,-0.00014880952949170023,-0.00014880952949170023,-0.00016741071885917336,1.185038090251004e-20,-1.4382593207242965e-20,-1.9846673683955504e-20,2.9557896153130854e-22,-1.9542973998939234e-20,1.3265132784201346e-20,-0.0032986111473292112,0.00029761905898340046,0.0016865079523995519,0.00019841270113829523,0.00022321428696159273,-0.0,-8.50340147735551e-05,-2.0977489358039447e-20,-2.0328790734103208e-20,-0.00014880952949170023,-5.668934318237007e-05,-6.377550744218752e-05,-4.3151253134066765e-20,-1.392544828742384e-20,-4.117883126991127e-20,-0.0032986111473292112,0.00029761905898340046,0.00019841270113829523,0.0016865079523995519,0.00022321428696159273,-0.0,2.357069734721892e-21,-8.50340147735551e-05,-1.903000731246985e-20,-0.0,-5.668934318237007e-05,1.6940658945086007e-21,-0.00014880952949170023,-6.377550744218752e-05,-3.571438567050647e-20,-0.0036830357275903225,0.0003348214377183467,0.00022321428696159273,0.00022321428696159273,0.0021949405781924725,-0.0,7.389882857558235e-22,4.127119923311731e-21,-0.00011160714348079637,5.050690402266432e-22,1.3143978289443604e-20,-7.440476474585012e-05,3.3881317890172014e-21,-7.440476474585012e-05,-0.00022321428696159273,0.0003188775444868952,-0.0006377550889737904,-0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-0.00014880952949170023,-8.50340147735551e-05,2.357069734721892e-21,7.389882857558235e-22,-0.0,4.251700738677755e-05,1.3438169789793035e-22,-1.552395588852084e-22,-3.3881317890172014e-21,-1.2705494208814505e-21,-8.470329472543003e-22,2.405213171082836e-22,-8.92327636267113e-38,3.9017017458198e-22,0.00029761905898340046,-0.00014880952949170023,-2.0977489358039447e-20,-8.50340147735551e-05,4.127119923311731e-21,-0.0,1.3438169789793035e-22,4.251700738677755e-05,-2.166482909017315e-22,2.351679681659345e-22,5.4223995403484596e-21,-1.674294951320085e-23,-0.0,-8.470329472543003e-22,-1.0317044142640998e-22,0.0003348214377183467,-0.00016741071885917336,-2.0328790734103208e-20,-1.903000731246985e-20,-0.00011160714348079637,-0.0,-1.552395588852084e-22,-2.166482909017315e-22,5.5803571740398183e-05,-2.7166923120455833e-22,-4.9627324744431617e-23,7.623296525288703e-21,-3.791345027671429e-22,7.502529771443095e-21,-4.756543784947064e-21,0.00014880952949170023,1.185038090251004e-20,-0.00014880952949170023,-0.0,5.050690402266432e-22,-0.0,-3.3881317890172014e-21,2.351679681659345e-22,-2.7166923120455833e-22,2.1258503693388775e-05,-8.470329472543003e-22,0.0,5.136908734021509e-22,1.88079096131566e-37,-4.014043364223452e-22,0.00019841270113829523,-1.4382593207242965e-20,-5.668934318237007e-05,-5.668934318237007e-05,1.3143978289443604e-20,-0.0,-1.2705494208814505e-21,5.4223995403484596e-21,-4.9627324744431617e-23,-8.470329472543003e-22,1.6196954675251618e-05,-3.966250257835073e-21,1.110535370350902e-20,4.235164736271502e-22,-9.925464948886323e-23,0.00022321428696159273,-1.9846673683955504e-20,-6.377550744218752e-05,1.6940658945086007e-21,-7.440476474585012e-05,-0.0,-8.470329472543003e-22,-1.674294951320085e-23,7.623296525288703e-21,0.0,-3.966250257835073e-21,2.1258503693388775e-05,-2.930016204253194e-23,4.147713408610677e-21,1.4595029990652775e-20,0.00014880952949170023,2.9557896153130854e-22,-4.3151253134066765e-20,-0.00014880952949170023,3.3881317890172014e-21,-0.0,2.405213171082836e-22,-0.0,-3.791345027671429e-22,5.136908734021509e-22,1.110535370350902e-20,-2.930016204253194e-23,2.1258503693388775e-05,2.7968069429870395e-23,-7.938387816160247e-22,0.00022321428696159273,-1.9542973998939234e-20,-1.392544828742384e-20,-6.377550744218752e-05,-7.440476474585012e-05,-0.0,-8.92327636267113e-38,-8.470329472543003e-22,7.502529771443095e-21,1.88079096131566e-37,4.235164736271502e-22,4.147713408610677e-21,2.7968069429870395e-23,2.1258503693388775e-05,1.4092869966522e-20,0.00018601190822664648,1.3265132784201346e-20,-4.117883126991127e-20,-3.571438567050647e-20,-0.00022321428696159273,-0.0,3.9017017458198e-22,-1.0317044142640998e-22,-4.756543784947064e-21,-4.014043364223452e-22,-9.925464948886323e-23,1.4595029990652775e-20,-7.938387816160247e-22,1.4092869966522e-20,3.720238237292506e-05,5.0,8.0,8.0,8.0,0.01904761977493763,-0.00424107164144516,-0.0029079860541969538,-0.0029079860541969538,-0.0029079860541969538,0.00027901786961592734,0.0002604166802484542,0.0002604166802484542,0.0002604166802484542,0.0001302083401242271,0.00017361111531499773,0.00017361111531499773,0.0001302083401242271,0.00017361111531499773,0.0001302083401242271,-0.00424107164144516,0.0037946428637951612,0.0002604166802484542,0.0002604166802484542,0.0002604166802484542,-0.0005580357392318547,-0.0001302083401242271,-0.0001302083401242271,-0.0001302083401242271,-7.87943978743171e-21,1.682471027597045e-21,4.424470350891804e-21,-6.51385628067651e-21,5.316381481448157e-21,6.903297169128831e-23,-0.0029079860541969538,0.0002604166802484542,0.0014818948693573475,0.00017361111531499773,0.00017361111531499773,-0.0,-7.440476474585012e-05,-4.427482714077143e-22,1.6940658945086007e-21,-0.0001302083401242271,-4.960317528457381e-05,-4.960317528457381e-05,2.613322250944829e-21,1.929117464670248e-21,6.32877461861777e-21,-0.0029079860541969538,0.0002604166802484542,0.00017361111531499773,0.0014818948693573475,0.00017361111531499773,-0.0,-1.306939006459444e-21,-7.440476474585012e-05,5.082197683525802e-21,-0.0,-4.960317528457381e-05,-0.0,-0.0001302083401242271,-4.960317528457381e-05,8.821928084904923e-21,-0.0029079860541969538,0.0002604166802484542,0.00017361111531499773,0.00017361111531499773,0.0014818948693573475,-0.0,-2.7232892086971484e-21,-6.126496748080073e-22,-7.440476474585012e-05,-1.1975664837982013e-21,-3.1826085068501014e-21,-4.960317528457381e-05,-3.3881317890172014e-21,-4.960317528457381e-05,-0.0001302083401242271,0.00027901786961592734,-0.0005580357392318547,-0.0,-0.0,-0.0,0.00013950893480796367,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002604166802484542,-0.0001302083401242271,-7.440476474585012e-05,-1.306939006459444e-21,-2.7232892086971484e-21,-0.0,3.720238237292506e-05,1.359150163057393e-22,1.8248653687250352e-22,1.6940658945086007e-21,-0.0,-0.0,1.3671249788293256e-22,-1.5771446060160097e-39,3.1147570784008786e-22,0.0002604166802484542,-0.0001302083401242271,-4.427482714077143e-22,-7.440476474585012e-05,-6.126496748080073e-22,-0.0,1.359150163057393e-22,3.720238237292506e-05,1.7327629550323508e-23,2.378512816904874e-22,-4.721167172502021e-22,6.415064212911581e-24,1.6940658945086007e-21,-0.0,7.337343585310812e-23,0.0002604166802484542,-0.0001302083401242271,1.6940658945086007e-21,5.082197683525802e-21,-7.440476474585012e-05,-0.0,1.8248653687250352e-22,1.7327629550323508e-23,3.720238237292506e-05,3.1935144268232478e-22,-8.589297396332767e-24,-1.2705494208814505e-21,3.0323352501927045e-23,-1.5189661375566164e-21,-4.045728562015942e-22,0.0001302083401242271,-7.87943978743171e-21,-0.0001302083401242271,-0.0,-1.1975664837982013e-21,-0.0,1.6940658945086007e-21,2.378512816904874e-22,3.1935144268232478e-22,1.860119118646253e-05,-0.0,0.0,-7.303868272797759e-24,0.0,1.0831120813202013e-22,0.00017361111531499773,1.682471027597045e-21,-4.960317528457381e-05,-4.960317528457381e-05,-3.1826085068501014e-21,-0.0,-0.0,-4.721167172502021e-22,-8.589297396332767e-24,-0.0,1.4172335795592517e-05,7.349832957380016e-22,-8.202111211187087e-22,2.117582368135751e-22,-1.5031269654721437e-23,0.00017361111531499773,4.424470350891804e-21,-4.960317528457381e-05,-0.0,-4.960317528457381e-05,-0.0,-0.0,6.415064212911581e-24,-1.2705494208814505e-21,0.0,7.349832957380016e-22,1.4172335795592517e-05,1.1226362372595267e-23,-7.629346697156739e-22,-2.2054820212262308e-21,0.0001302083401242271,-6.51385628067651e-21,2.613322250944829e-21,-0.0001302083401242271,-3.3881317890172014e-21,-0.0,1.3671249788293256e-22,1.6940658945086007e-21,3.0323352501927045e-23,-7.303868272797759e-24,-8.202111211187087e-22,1.1226362372595267e-23,1.860119118646253e-05,-9.788824142682457e-23,4.01110463647045e-23,0.00017361111531499773,5.316381481448157e-21,1.929117464670248e-21,-4.960317528457381e-05,-4.960317528457381e-05,-0.0,-1.5771446060160097e-39,-0.0,-1.5189661375566164e-21,0.0,2.117582368135751e-22,-7.629346697156739e-22,-9.788824142682457e-23,1.4172335795592517e-05,-2.6342180529862046e-21,0.0001302083401242271,6.903297169128831e-23,6.32877461861777e-21,8.821928084904923e-21,-0.0001302083401242271,-0.0,3.1147570784008786e-22,7.337343585310812e-23,-4.045728562015942e-22,1.0831120813202013e-22,-1.5031269654721437e-23,-2.2054820212262308e-21,4.01110463647045e-23,-2.6342180529862046e-21,1.860119118646253e-05,6.0,3.0,3.0,3.0,0.1686507910490036,-0.0456349216401577,-0.075396828353405,-0.075396828353405,-0.075396828353405,0.003306878264993429,0.007936508394777775,0.007936508394777775,0.007936508394777775,0.009259259328246117,0.013888888992369175,0.013888888992369175,0.009259259328246117,0.013888888992369175,0.009259259328246117,-0.0456349216401577,0.03644179925322533,0.007936508394777775,0.007936508394777775,0.007936508394777775,-0.004960317630320787,-0.0031746032182127237,-0.0031746032182127237,-0.0031746032182127237,2.7755575615628914e-17,-3.469446951953614e-18,3.469446951953614e-18,2.0816681711721685e-17,-1.734723475976807e-18,2.0816681711721685e-17,-0.075396828353405,0.007936508394777775,0.16798941791057587,0.013888888992369175,0.013888888992369175,-1.3010426069826053e-18,-0.007936508394777775,3.284400496769696e-19,2.123725424954876e-18,-0.0555555559694767,-0.013888888992369175,-0.013888888992369175,-2.949029909160572e-17,-8.239936510889834e-18,-3.122502256758253e-17,-0.075396828353405,0.007936508394777775,0.013888888992369175,0.16798941791057587,0.013888888992369175,6.938893903907228e-18,8.673617379884035e-19,-0.007936508394777775,1.778250340194807e-18,-2.5153490401663703e-17,-0.013888888992369175,-2.9784108268510574e-18,-0.0555555559694767,-0.013888888992369175,-1.5612511283791264e-17,-0.075396828353405,0.007936508394777775,0.013888888992369175,0.013888888992369175,0.16798941791057587,4.7704895589362195e-18,4.119968255444917e-18,6.288372600415926e-18,-0.007936508394777775,-2.2768245622195593e-17,-9.107298248878237e-18,-0.013888888992369175,-2.233456475320139e-17,-0.013888888992369175,-0.0555555559694767,0.003306878264993429,-0.004960317630320787,-1.3010426069826053e-18,6.938893903907228e-18,4.7704895589362195e-18,0.0009920635493472219,1.0842021724855044e-19,-0.0,3.2526065174565133e-19,-3.903127820947816e-18,5.421010862427522e-19,-2.168404344971009e-19,-8.673617379884035e-19,4.336808689942018e-19,-1.3010426069826053e-18,0.007936508394777775,-0.0031746032182127237,-0.007936508394777775,8.673617379884035e-19,4.119968255444917e-18,1.0842021724855044e-19,0.0031746032182127237,7.160924534856582e-20,-2.506323651823289e-19,-6.579099288768101e-18,-7.832261088830351e-20,-7.83226095958338e-19,-5.090969933921927e-19,-3.91613047979169e-19,-1.2923230893505307e-18,0.007936508394777775,-0.0031746032182127237,3.284400496769696e-19,-0.007936508394777775,6.288372600415926e-18,-0.0,7.160924534856582e-20,0.0031746032182127237,-2.506323651823289e-19,-3.1329044355321404e-19,2.3496783912725907e-19,-4.699356782545181e-19,-1.0534391600685348e-17,-7.832261088830351e-20,-2.5454849669609634e-18,0.007936508394777775,-0.0031746032182127237,2.123725424954876e-18,1.778250340194807e-18,-0.007936508394777775,3.2526065174565133e-19,-2.506323651823289e-19,-2.506323651823289e-19,0.0031746032182127237,-6.942231681076456e-19,-1.0146338272773513e-19,-1.7978600007838717e-19,-7.333844832453202e-19,2.118270608254789e-19,-6.372612673998326e-18,0.009259259328246117,2.7755575615628914e-17,-0.0555555559694767,-2.5153490401663703e-17,-2.2768245622195593e-17,-3.903127820947816e-18,-6.579099288768101e-18,-3.1329044355321404e-19,-6.942231681076456e-19,0.02777777798473835,-8.637274372490906e-18,-9.094156003305995e-18,1.6552883291366048e-17,1.64256831790804e-18,1.621022206825473e-17,0.013888888992369175,-3.469446951953614e-18,-0.013888888992369175,-0.013888888992369175,-9.107298248878237e-18,5.421010862427522e-19,-7.832261088830351e-20,2.3496783912725907e-19,-1.0146338272773513e-19,-8.637274372490906e-18,0.013888888992369175,3.4793758510416286e-33,-2.7412914392517597e-18,4.1119371588776395e-18,2.7412914392517597e-18,0.013888888992369175,3.469446951953614e-18,-0.013888888992369175,-2.9784108268510574e-18,-0.013888888992369175,-2.168404344971009e-19,-7.83226095958338e-19,-4.699356782545181e-19,-1.7978600007838717e-19,-9.094156003305995e-18,3.4793758510416286e-33,0.013888888992369175,8.800168775774289e-19,2.6906708808956583e-18,-4.906288420484509e-19,0.009259259328246117,2.0816681711721685e-17,-2.949029909160572e-17,-0.0555555559694767,-2.233456475320139e-17,-8.673617379884035e-19,-5.090969933921927e-19,-1.0534391600685348e-17,-7.333844832453202e-19,1.6552883291366048e-17,-2.7412914392517597e-18,8.800168775774289e-19,0.02777777798473835,-9.604903325417807e-20,1.1852970436654078e-17,0.013888888992369175,-1.734723475976807e-18,-8.239936510889834e-18,-0.013888888992369175,-0.013888888992369175,4.336808689942018e-19,-3.91613047979169e-19,-7.832261088830351e-20,2.118270608254789e-19,1.64256831790804e-18,4.1119371588776395e-18,2.6906708808956583e-18,-9.604903325417807e-20,0.013888888992369175,1.4311059647505786e-33,0.009259259328246117,2.0816681711721685e-17,-3.122502256758253e-17,-1.5612511283791264e-17,-0.0555555559694767,-1.3010426069826053e-18,-1.2923230893505307e-18,-2.5454849669609634e-18,-6.372612673998326e-18,1.621022206825473e-17,2.7412914392517597e-18,-4.906288420484509e-19,1.1852970436654078e-17,1.4311059647505786e-33,0.02777777798473835,6.0,3.0,3.0,4.0,0.1373346596956253,-0.03541666641831398,-0.05863095074892044,-0.05863095074892044,-0.04801587387919426,0.0024801588151603937,0.0059523810632526875,0.0059523810632526875,0.004761904943734407,0.0069444444961845875,0.010416666977107525,0.008333333767950535,0.0069444444961845875,0.008333333767950535,0.004629629664123058,-0.03541666641831398,0.027807539328932762,0.0059523810632526875,0.0059523810632526875,0.004761904943734407,-0.0037202381063252687,-0.0023809524718672037,-0.0023809524718672037,-0.0019047618843615055,1.8469619589329023e-17,6.125418846923592e-18,4.99386017077912e-18,1.8469619589329023e-17,4.99386017077912e-18,6.7959517173840836e-18,-0.05863095074892044,0.0059523810632526875,0.12807539105415344,0.010416666977107525,0.008333333767950535,1.0408340855860843e-17,-0.0059523810632526875,5.451929839748989e-19,5.296796768755614e-19,-0.0416666679084301,-0.010416666977107525,-0.008333333767950535,4.625929158980737e-17,1.1102230411687688e-17,2.158767029090276e-17,-0.05863095074892044,0.0059523810632526875,0.010416666977107525,0.12807539105415344,0.008333333767950535,1.0542147246108645e-17,5.451929839748989e-19,-0.0059523810632526875,5.296796768755614e-19,6.692177690918182e-17,-0.010416666977107525,-3.2737358978663346e-32,-0.0416666679084301,-0.008333333767950535,2.158767029090276e-17,-0.04801587387919426,0.004761904943734407,0.008333333767950535,0.008333333767950535,0.06441798806190491,8.565197162635485e-18,4.3615439751967675e-19,4.3615439751967675e-19,-0.0031746032182127237,4.451172034455639e-17,-3.7484789809762917e-32,-0.0055555556900799274,3.896060389794163e-17,-0.0055555556900799274,-0.013888888992369175,0.0024801588151603937,-0.0037202381063252687,1.0408340855860843e-17,1.0542147246108645e-17,8.565197162635485e-18,0.0007440476329065859,-8.131516293641283e-19,-8.131516293641283e-19,-8.673617379884035e-19,-3.3042352021841637e-18,-9.912706020142797e-19,-7.930164505921508e-19,-3.3042352021841637e-18,-7.930164505921508e-19,-1.5419764345791148e-18,0.0059523810632526875,-0.0023809524718672037,-0.0059523810632526875,5.451929839748989e-19,4.3615439751967675e-19,-8.131516293641283e-19,0.0023809524718672037,1.5735999629873233e-20,1.2588799542339873e-20,-1.9484433716130517e-18,-5.845330218236732e-19,-4.676263967794232e-19,5.7081792617579195e-33,1.3746020635229628e-33,2.6689103323740785e-33,0.0059523810632526875,-0.0023809524718672037,5.451929839748989e-19,-0.0059523810632526875,4.3615439751967675e-19,-8.131516293641283e-19,1.5735999629873233e-20,0.0023809524718672037,1.2588799542339873e-20,6.867658236734223e-33,-5.845330218236732e-19,8.554324020193259e-34,-1.9484433716130517e-18,-4.676263967794232e-19,2.6689103323740785e-33,0.004761904943734407,-0.0019047618843615055,5.296796768755614e-19,5.296796768755614e-19,-0.0031746032182127237,-8.673617379884035e-19,1.2588799542339873e-20,1.2588799542339873e-20,0.0012698412174358964,3.181031344041101e-33,1.1156353315780357e-33,-3.7410111742353857e-19,2.8072292832673985e-33,-3.7410111742353857e-19,6.092870737385702e-19,0.0069444444961845875,1.8469619589329023e-17,-0.0416666679084301,6.692177690918182e-17,4.451172034455639e-17,-3.3042352021841637e-18,-1.9484433716130517e-18,6.867658236734223e-33,3.181031344041101e-33,0.02083333395421505,-1.2335811476632919e-17,-6.579099288768101e-18,-2.3129645794903686e-17,-5.551115205843844e-18,-1.079383514545138e-17,0.010416666977107525,6.125418846923592e-18,-0.010416666977107525,-0.010416666977107525,-3.7484789809762917e-32,-9.912706020142797e-19,-5.845330218236732e-19,-5.845330218236732e-19,1.1156353315780357e-33,-1.2335811476632919e-17,0.010416666977107525,4.983856540512519e-33,1.8229864674243556e-32,4.3751675658994916e-33,8.445559568673504e-33,0.008333333767950535,4.99386017077912e-18,-0.008333333767950535,-3.2737358978663346e-32,-0.0055555556900799274,-7.930164505921508e-19,-4.676263967794232e-19,8.554324020193259e-34,-3.7410111742353857e-19,-6.579099288768101e-18,4.983856540512519e-33,0.0055555556900799274,1.0825967955183284e-32,2.6419905933852865e-33,4.743404028264035e-33,0.0069444444961845875,1.8469619589329023e-17,4.625929158980737e-17,-0.0416666679084301,3.896060389794163e-17,-3.3042352021841637e-18,5.7081792617579195e-33,-1.9484433716130517e-18,2.8072292832673985e-33,-2.3129645794903686e-17,1.8229864674243556e-32,1.0825967955183284e-32,0.02083333395421505,-6.579099288768101e-18,-1.079383514545138e-17,0.008333333767950535,4.99386017077912e-18,1.1102230411687688e-17,-0.008333333767950535,-0.0055555556900799274,-7.930164505921508e-19,1.3746020635229628e-33,-4.676263967794232e-19,-3.7410111742353857e-19,-5.551115205843844e-18,4.3751675658994916e-33,2.6419905933852865e-33,-6.579099288768101e-18,0.0055555556900799274,7.619459607798033e-33,0.004629629664123058,6.7959517173840836e-18,2.158767029090276e-17,2.158767029090276e-17,-0.013888888992369175,-1.5419764345791148e-18,2.6689103323740785e-33,2.6689103323740785e-33,6.092870737385702e-19,-1.079383514545138e-17,8.445559568673504e-33,4.743404028264035e-33,-1.079383514545138e-17,7.619459607798033e-33,0.004629629664123058,6.0,3.0,3.0,5.0,0.1160052940249443,-0.02896825410425663,-0.04801587387919426,-0.04801587387919426,-0.03333333507180214,0.0019841270986944437,0.004761904943734407,0.004761904943734407,0.0031746032182127237,0.0055555556900799274,0.008333333767950535,0.0055555556900799274,0.0055555556900799274,0.0055555556900799274,0.0026455025654286146,-0.02896825410425663,0.02250000089406967,0.004761904943734407,0.004761904943734407,0.0031746032182127237,-0.0029761905316263437,-0.0019047618843615055,-0.0019047618843615055,-0.0012698412174358964,-2.5942284870710595e-17,-7.996116753533703e-18,-5.366800753803247e-18,-2.5942284870710595e-17,-5.366800753803247e-18,-7.41470142713753e-18,-0.04801587387919426,0.004761904943734407,0.10357142984867096,0.008333333767950535,0.0055555556900799274,-1.6696713456276768e-17,-0.004761904943734407,-5.842842472544478e-19,-3.7230437773549683e-19,-0.03333333507180214,-0.008333333767950535,-0.0055555556900799274,-1.8503717628539684e-17,-3.705060664042912e-18,-5.276126455826103e-18,-0.04801587387919426,0.004761904943734407,0.008333333767950535,0.10357142984867096,0.0055555556900799274,-1.675709433227069e-17,-5.78531102696565e-19,-0.004761904943734407,-3.758629345800941e-19,-2.2204460823375376e-17,-0.008333333767950535,-1.1508531550707596e-20,-0.03333333507180214,-0.0055555556900799274,-5.2718751610678866e-18,-0.03333333507180214,0.0031746032182127237,0.0055555556900799274,0.0055555556900799274,0.03253968432545662,-9.974659986866641e-18,-3.7947076036992655e-19,-3.7947076036992655e-19,-0.0015873016091063619,-1.2423924409843292e-17,-2.596417522290471e-32,-0.0027777778450399637,-1.0573552812425446e-17,-0.0027777778450399637,-0.005291005130857229,0.0019841270986944437,-0.0029761905316263437,-1.6696713456276768e-17,-1.675709433227069e-17,-9.974659986866641e-18,0.0005952381179668009,9.75781955236954e-19,9.75781955236954e-19,6.505213034913027e-19,5.286776406212723e-18,1.5860329011843016e-18,1.0603872290597965e-18,5.286776406212723e-18,1.060698352367693e-18,1.5093409540890242e-18,0.004761904943734407,-0.0019047618843615055,-0.004761904943734407,-5.78531102696565e-19,-3.7947076036992655e-19,9.75781955236954e-19,0.0019047618843615055,2.168404344971009e-19,1.3492299360186995e-19,-4.915965916663497e-19,3.2976320907727913e-20,2.3970479230262055e-20,9.244463733058732e-33,1.72684474381654e-21,3.7852774377546056e-21,0.004761904943734407,-0.0019047618843615055,-5.842842472544478e-19,-0.004761904943734407,-3.7947076036992655e-19,9.75781955236954e-19,2.168404344971009e-19,0.0019047618843615055,1.3625582713793723e-19,8.859277744181285e-33,3.2976320907727913e-20,4.603412781841752e-21,-4.915965916663497e-19,2.4932202708151393e-20,2.1369104448120754e-21,0.0031746032182127237,-0.0012698412174358964,-3.7230437773549683e-19,-3.758629345800941e-19,-0.0015873016091063619,6.505213034913027e-19,1.3492299360186995e-19,1.3625582713793723e-19,0.0006349206087179482,6.933347799794049e-33,1.7333369499485123e-33,1.7498443634236706e-20,6.355568816477878e-33,1.7611670442928437e-20,-6.871358975439884e-20,0.0055555556900799274,-2.5942284870710595e-17,-0.03333333507180214,-2.2204460823375376e-17,-1.2423924409843292e-17,5.286776406212723e-18,-4.915965916663497e-19,8.859277744181285e-33,6.933347799794049e-33,0.01666666753590107,1.2970729397287535e-32,8.859277744181285e-33,9.251858814269842e-18,1.850371804212999e-18,2.6433882031063616e-18,0.008333333767950535,-7.996116753533703e-18,-0.008333333767950535,-0.008333333767950535,-2.596417522290471e-32,1.5860329011843016e-18,3.2976320907727913e-20,3.2976320907727913e-20,1.7333369499485123e-33,1.2970729397287535e-32,0.008333333767950535,2.6272217925641507e-33,1.2970729397287535e-32,2.6272217925641507e-33,4.0885214317415536e-33,0.0055555556900799274,-5.366800753803247e-18,-0.0055555556900799274,-1.1508531550707596e-20,-0.0027777778450399637,1.0603872290597965e-18,2.3970479230262055e-20,4.603412781841752e-21,1.7498443634236706e-20,8.859277744181285e-33,2.6272217925641507e-33,0.0027777778450399637,9.693847141854431e-33,-0.0,-1.0056576736290578e-20,0.0055555556900799274,-2.5942284870710595e-17,-1.8503717628539684e-17,-0.03333333507180214,-1.0573552812425446e-17,5.286776406212723e-18,9.244463733058732e-33,-4.915965916663497e-19,6.355568816477878e-33,9.251858814269842e-18,1.2970729397287535e-32,9.693847141854431e-33,0.01666666753590107,9.629649721936179e-33,2.6433882031063616e-18,0.0055555556900799274,-5.366800753803247e-18,-3.705060664042912e-18,-0.0055555556900799274,-0.0027777778450399637,1.060698352367693e-18,1.72684474381654e-21,2.4932202708151393e-20,1.7611670442928437e-20,1.850371804212999e-18,2.6272217925641507e-33,-0.0,9.629649721936179e-33,0.0027777778450399637,-1.0121649354869506e-20,0.0026455025654286146,-7.41470142713753e-18,-5.276126455826103e-18,-5.2718751610678866e-18,-0.005291005130857229,1.5093409540890242e-18,3.7852774377546056e-21,2.1369104448120754e-21,-6.871358975439884e-20,2.6433882031063616e-18,4.0885214317415536e-33,-1.0056576736290578e-20,2.6433882031063616e-18,-1.0121649354869506e-20,0.0013227512827143073,6.0,3.0,3.0,6.0,0.10048186033964157,-0.02451813966035843,-0.0406746044754982,-0.0406746044754982,-0.02451813966035843,0.0016534391324967146,0.003968254197388887,0.003968254197388887,0.0022675737272948027,0.004629629664123058,0.0069444444961845875,0.003968254197388887,0.004629629664123058,0.003968254197388887,0.0016534391324967146,-0.02451813966035843,0.018901171162724495,0.003968254197388887,0.003968254197388887,0.0022675737272948027,-0.0024801588151603937,-0.0015873016091063619,-0.0015873016091063619,-0.0009070294909179211,1.2313079726219349e-17,4.0836124267522925e-18,2.4665599424045226e-18,1.2313079726219349e-17,2.439454888092385e-18,2.0252708729312112e-18,-0.0406746044754982,0.003968254197388887,0.08697090297937393,0.0069444444961845875,0.003968254197388887,7.697835424647081e-18,-0.003968254197388887,5.18546808107575e-19,4.532060537632097e-19,-0.02777777798473835,-0.0069444444961845875,-0.003968254197388887,3.0839529932353215e-17,5.2634734875861855e-18,6.122606019250605e-18,-0.0406746044754982,0.003968254197388887,0.0069444444961845875,0.08697090297937393,0.003968254197388887,7.675298888858074e-18,5.019112237121563e-19,-0.003968254197388887,4.774931105235323e-19,4.293058114727353e-17,-0.0069444444961845875,-6.667125012584987e-21,-0.02777777798473835,-0.003968254197388887,6.257254479361987e-18,-0.02451813966035843,0.0022675737272948027,0.003968254197388887,0.003968254197388887,0.018901171162724495,3.577867169202165e-18,2.168404344971009e-19,2.439454888092385e-19,-0.0009070294909179211,2.2800446109081057e-17,-1.3964326282895643e-32,-0.0015873016091063619,2.015705811276985e-17,-0.0015873016091063619,-0.0024801588151603937,0.0016534391324967146,-0.0024801588151603937,7.697835424647081e-18,7.675298888858074e-18,3.577867169202165e-18,0.0004960317746736109,-7.047314121155779e-19,-7.047314121155779e-19,-3.2526065174565133e-19,-2.2028235370544935e-18,-6.608470507765904e-19,-3.7935777266813064e-19,-2.2028235370544935e-18,-3.7013194295299115e-19,-4.0743654780821387e-19,0.003968254197388887,-0.0015873016091063619,-0.003968254197388887,5.019112237121563e-19,2.168404344971009e-19,-7.047314121155779e-19,0.0015873016091063619,-5.421010862427522e-20,-4.082930545584213e-20,-1.2989622477420345e-18,-3.896886639828527e-19,-2.205665988133167e-19,4.4296388720906425e-33,9.321092810489462e-21,1.777856220944668e-20,0.003968254197388887,-0.0015873016091063619,5.18546808107575e-19,-0.003968254197388887,2.439454888092385e-19,-7.047314121155779e-19,-5.421010862427522e-20,0.0015873016091063619,-3.792501616403163e-20,5.007417855406813e-33,-3.896886639828527e-19,2.6668500858133514e-21,-1.2989622477420345e-18,-2.1863352942056857e-19,1.231579682066113e-20,0.0022675737272948027,-0.0009070294909179211,4.532060537632097e-19,4.774931105235323e-19,-0.0009070294909179211,-3.2526065174565133e-19,-4.082930545584213e-20,-3.792501616403163e-20,0.00036281178472563624,1.7333369499485123e-33,4.333342374871281e-34,-1.4045310958709322e-19,1.7333369499485123e-33,-1.5307221512068422e-19,-1.158421292220123e-20,0.004629629664123058,1.2313079726219349e-17,-0.02777777798473835,4.293058114727353e-17,2.2800446109081057e-17,-2.2028235370544935e-18,-1.2989622477420345e-18,5.007417855406813e-33,1.7333369499485123e-33,0.013888888992369175,-5.482582878503519e-18,-5.012647096851425e-18,-1.5419764966176608e-17,-2.6433882031063616e-18,-3.028882285901746e-18,0.0069444444961845875,4.0836124267522925e-18,-0.0069444444961845875,-0.0069444444961845875,-1.3964326282895643e-32,-6.608470507765904e-19,-3.896886639828527e-19,-3.896886639828527e-19,4.333342374871281e-34,-5.482582878503519e-18,0.0069444444961845875,2.4881661373206512e-33,9.109798365544562e-33,1.547153705799632e-33,1.769367872182131e-33,0.003968254197388887,2.4665599424045226e-18,-0.003968254197388887,-6.667125012584987e-21,-0.0015873016091063619,-3.7935777266813064e-19,-2.205665988133167e-19,2.6668500858133514e-21,-1.4045310958709322e-19,-5.012647096851425e-18,2.4881661373206512e-33,0.0015873016091063619,8.185202263645752e-33,-5.0109184408493635e-34,-4.371515766728065e-20,0.004629629664123058,1.2313079726219349e-17,3.0839529932353215e-17,-0.02777777798473835,2.015705811276985e-17,-2.2028235370544935e-18,4.4296388720906425e-33,-1.2989622477420345e-18,1.7333369499485123e-33,-1.5419764966176608e-17,9.109798365544562e-33,8.185202263645752e-33,0.013888888992369175,-5.012647096851425e-18,-3.028882285901746e-18,0.003968254197388887,2.439454888092385e-18,5.2634734875861855e-18,-0.003968254197388887,-0.0015873016091063619,-3.7013194295299115e-19,9.321092810489462e-21,-2.1863352942056857e-19,-1.5307221512068422e-19,-2.6433882031063616e-18,1.547153705799632e-33,-5.0109184408493635e-34,-5.012647096851425e-18,0.0015873016091063619,-9.211179571009344e-20,0.0016534391324967146,2.0252708729312112e-18,6.122606019250605e-18,6.257254479361987e-18,-0.0024801588151603937,-4.0743654780821387e-19,1.777856220944668e-20,1.231579682066113e-20,-1.158421292220123e-20,-3.028882285901746e-18,1.769367872182131e-33,-4.371515766728065e-20,-3.028882285901746e-18,-9.211179571009344e-20,0.0004960317746736109,6.0,3.0,3.0,7.0,0.08865582942962646,-0.021258503198623657,-0.03528911620378494,-0.03528911620378494,-0.018801964819431305,0.0014172336086630821,0.003401360474526882,0.003401360474526882,0.001700680237263441,0.003968254197388887,0.0059523810632526875,0.0029761905316263437,0.003968254197388887,0.0029761905316263437,0.001102292793802917,-0.021258503198623657,0.016298186033964157,0.003401360474526882,0.003401360474526882,0.001700680237263441,-0.002125850412994623,-0.0013605442363768816,-0.0013605442363768816,-0.0006802721181884408,1.055406857309676e-17,3.500239163846207e-18,1.1926223897340549e-18,1.055406857309676e-17,1.2197274440461925e-18,1.553626859916618e-18,-0.03528911620378494,0.003401360474526882,0.07497165352106094,0.0059523810632526875,0.0029761905316263437,6.5052130349130266e-18,-0.003401360474526882,6.041994993810628e-19,-4.908513665579248e-20,-0.02380952425301075,-0.0059523810632526875,-0.0029761905316263437,2.643388161747331e-17,3.958996013109954e-18,3.687530225321076e-18,-0.03528911620378494,0.003401360474526882,0.0059523810632526875,0.07497165352106094,0.0029761905316263437,6.722447620972009e-18,5.977657402754137e-19,-0.003401360474526882,2.542088711999837e-20,3.640952594926889e-17,-0.0059523810632526875,-7.249368176329882e-22,-0.02380952425301075,-0.0029761905316263437,3.8208183869151144e-18,-0.018801964819431305,0.001700680237263441,0.0029761905316263437,0.0029761905316263437,0.01199924387037754,2.222614453595284e-18,-1.0842021724855044e-19,-1.0842021724855044e-19,-0.0005668934318237007,1.6122569047464937e-17,-8.3480067618667e-33,-0.0009920635493472219,1.4140028877412143e-17,-0.0009920635493472219,-0.0013227512827143073,0.0014172336086630821,-0.002125850412994623,6.5052130349130266e-18,6.722447620972009e-18,2.222614453595284e-18,0.00042517005931586027,-5.421010862427522e-19,-6.505213034913027e-19,-0.0,-1.888134460332423e-18,-5.664403070804539e-19,-2.84193590024837e-19,-1.888134460332423e-18,-2.8518450069988727e-19,-2.718050093882069e-19,0.003401360474526882,-0.0013605442363768816,-0.003401360474526882,5.977657402754137e-19,-1.0842021724855044e-19,-5.421010862427522e-19,0.0013605442363768816,-1.0842021724855044e-19,-1.578334117965769e-20,-1.1133961680370681e-18,-3.3401886592075693e-19,1.3992737168433041e-19,3.851859888774472e-33,2.434550062489115e-21,8.487158841768371e-22,0.003401360474526882,-0.0013605442363768816,6.041994993810628e-19,-0.003401360474526882,-1.0842021724855044e-19,-6.505213034913027e-19,-1.0842021724855044e-19,0.0013605442363768816,-3.589262370546604e-20,3.851859888774472e-33,-3.3401886592075693e-19,2.8997474219932467e-22,-1.1133961680370681e-18,1.4028800950670646e-19,8.857506544767507e-21,0.001700680237263441,-0.0006802721181884408,-4.908513665579248e-20,2.542088711999837e-20,-0.0005668934318237007,-0.0,-1.578334117965769e-20,-3.589262370546604e-20,0.00022675737272948027,7.703719777548943e-34,7.222237291452134e-35,2.9514495727185333e-20,5.296307347064899e-34,2.143689125308462e-20,-6.823431613760678e-20,0.003968254197388887,1.055406857309676e-17,-0.02380952425301075,3.640952594926889e-17,1.6122569047464937e-17,-1.888134460332423e-18,-1.1133961680370681e-18,3.851859888774472e-33,7.703719777548943e-34,0.011904762126505375,-4.028020099324441e-18,-2.6853467328829607e-18,-1.3216940808736655e-17,-1.9825412040285595e-18,-1.909113621823146e-18,0.0059523810632526875,3.500239163846207e-18,-0.0059523810632526875,-0.0059523810632526875,-8.3480067618667e-33,-5.664403070804539e-19,-3.3401886592075693e-19,-3.3401886592075693e-19,7.222237291452134e-35,-4.028020099324441e-18,0.0059523810632526875,1.2157599914547434e-33,7.063065070775227e-33,9.779631780841564e-34,9.966739257423779e-34,0.0029761905316263437,1.1926223897340549e-18,-0.0029761905316263437,-7.249368176329882e-22,-0.0009920635493472219,-2.84193590024837e-19,1.3992737168433041e-19,2.8997474219932467e-22,2.9514495727185333e-20,-2.6853467328829607e-18,1.2157599914547434e-33,0.0009920635493472219,3.9481563859938335e-33,-2.3287670370504855e-34,4.285837949843471e-20,0.003968254197388887,1.055406857309676e-17,2.643388161747331e-17,-0.02380952425301075,1.4140028877412143e-17,-1.888134460332423e-18,3.851859888774472e-33,-1.1133961680370681e-18,5.296307347064899e-34,-1.3216940808736655e-17,7.063065070775227e-33,3.9481563859938335e-33,0.011904762126505375,-2.6853467328829607e-18,-1.909113621823146e-18,0.0029761905316263437,1.2197274440461925e-18,3.958996013109954e-18,-0.0029761905316263437,-0.0009920635493472219,-2.8518450069988727e-19,2.434550062489115e-21,1.4028800950670646e-19,2.143689125308462e-20,-1.9825412040285595e-18,9.779631780841564e-34,-2.3287670370504855e-34,-2.6853467328829607e-18,0.0009920635493472219,-8.244958298539249e-21,0.001102292793802917,1.553626859916618e-18,3.687530225321076e-18,3.8208183869151144e-18,-0.0013227512827143073,-2.718050093882069e-19,8.487158841768371e-22,8.857506544767507e-21,-6.823431613760678e-20,-1.909113621823146e-18,9.966739257423779e-34,4.285837949843471e-20,-1.909113621823146e-18,-8.244958298539249e-21,0.00022045854711905122,6.0,3.0,3.0,8.0,0.07933752238750458,-0.018766533583402634,-0.031167328357696533,-0.031167328357696533,-0.014880952425301075,0.0012400794075801969,0.0029761905316263437,0.0029761905316263437,0.0013227512827143073,0.0034722222480922937,0.0052083334885537624,0.002314814832061529,0.0034722222480922937,0.002314814832061529,0.0007716049440205097,-0.018766533583402634,0.014327050186693668,0.0029761905316263437,0.0029761905316263437,0.0013227512827143073,-0.0018601190531626344,-0.0011904762359336019,-0.0011904762359336019,-0.0005291005363687873,8.260587902062833e-18,2.478176453336911e-18,1.1014117685272467e-18,8.260587902062833e-18,1.1014117685272467e-18,8.466923556370816e-19,-0.031167328357696533,0.0029761905316263437,0.06588955223560333,0.0052083334885537624,0.002314814832061529,5.577863745311971e-18,-0.0029761905316263437,-6.0393303467219585e-33,-2.1035105902690126e-33,-0.02083333395421505,-0.0052083334885537624,-0.002314814832061529,2.3129645794903686e-17,3.0839528691582296e-18,2.569960620900948e-18,-0.031167328357696533,0.0029761905316263437,0.0052083334885537624,0.06588955223560333,0.002314814832061529,5.577863745311971e-18,-6.0393303467219585e-33,-0.0029761905316263437,-1.6987213963816806e-33,3.469446951953614e-17,-0.0052083334885537624,-7.367273457876435e-33,-0.02083333395421505,-0.002314814832061529,2.569960620900948e-18,-0.014880952425301075,0.0013227512827143073,0.002314814832061529,0.002314814832061529,0.008109725080430508,2.2370396562975963e-18,-2.422114007721993e-33,-2.422114007721993e-33,-0.0003779289545491338,1.2103291006444262e-17,-1.0146923806963619e-32,-0.0006613756413571537,1.0561314675262724e-17,-0.0006613756413571537,-0.0007716049440205097,0.0012400794075801969,-0.0018601190531626344,5.577863745311971e-18,5.577863745311971e-18,2.2370396562975963e-18,0.00037202381645329297,-4.028020099324441e-19,-4.028020099324441e-19,-2.045978383138893e-19,-1.6521176010920818e-18,-4.956353010071399e-19,-2.202823588753282e-19,-1.6521176010920818e-18,-2.202823588753282e-19,-1.8356861947140974e-19,0.0029761905316263437,-0.0011904762359336019,-0.0029761905316263437,-6.0393303467219585e-33,-2.422114007721993e-33,-4.028020099324441e-19,0.0011904762359336019,4.361265416655599e-34,2.215245966007227e-34,1.7888002631691618e-33,5.366400789507485e-34,2.3850670175588824e-34,1.7888002631691618e-33,2.3850670175588824e-34,1.9875559244953155e-34,0.0029761905316263437,-0.0011904762359336019,-6.0393303467219585e-33,-0.0029761905316263437,-2.422114007721993e-33,-4.028020099324441e-19,4.361265416655599e-34,0.0011904762359336019,2.215245966007227e-34,1.7888002631691618e-33,5.366400789507485e-34,2.3850670175588824e-34,1.7888002631691618e-33,2.3850670175588824e-34,1.9875559244953155e-34,0.0013227512827143073,-0.0005291005363687873,-2.1035105902690126e-33,-1.6987213963816806e-33,-0.0003779289545491338,-2.045978383138893e-19,2.215245966007227e-34,2.215245966007227e-34,0.0001511715818196535,7.703719777548943e-34,2.7257909428069343e-34,-7.532114362306938e-35,6.860256663085873e-34,-1.4277725428699098e-34,2.0328790734103208e-20,0.0034722222480922937,8.260587902062833e-18,-0.02083333395421505,3.469446951953614e-17,1.2103291006444262e-17,-1.6521176010920818e-18,1.7888002631691618e-33,1.7888002631691618e-33,7.703719777548943e-34,0.010416666977107525,-6.167905738316459e-18,-1.566452191916676e-18,-1.1564822897451843e-17,-1.5419764345791148e-18,-1.284980310450474e-18,0.0052083334885537624,2.478176453336911e-18,-0.0052083334885537624,-0.0052083334885537624,-1.0146923806963619e-32,-4.956353010071399e-19,5.366400789507485e-34,5.366400789507485e-34,2.7257909428069343e-34,-6.167905738316459e-18,0.0052083334885537624,1.22100104322048e-33,9.048813718623901e-33,1.2065084835717874e-33,1.0054237363098228e-33,0.002314814832061529,1.1014117685272467e-18,-0.002314814832061529,-7.367273457876435e-33,-0.0006613756413571537,-2.202823588753282e-19,2.3850670175588824e-34,2.3850670175588824e-34,-7.532114362306938e-35,-1.566452191916676e-18,1.22100104322048e-33,0.0006613756413571537,2.9851914138002156e-33,-1.2010776537532403e-34,4.765728743764251e-35,0.0034722222480922937,8.260587902062833e-18,2.3129645794903686e-17,-0.02083333395421505,1.0561314675262724e-17,-1.6521176010920818e-18,1.7888002631691618e-33,1.7888002631691618e-33,6.860256663085873e-34,-1.1564822897451843e-17,9.048813718623901e-33,2.9851914138002156e-33,0.010416666977107525,-1.566452191916676e-18,-1.284980310450474e-18,0.002314814832061529,1.1014117685272467e-18,3.0839528691582296e-18,-0.002314814832061529,-0.0006613756413571537,-2.202823588753282e-19,2.3850670175588824e-34,2.3850670175588824e-34,-1.4277725428699098e-34,-1.5419764345791148e-18,1.2065084835717874e-33,-1.2010776537532403e-34,-1.566452191916676e-18,0.0006613756413571537,1.0014969652884773e-34,0.0007716049440205097,8.466923556370816e-19,2.569960620900948e-18,2.569960620900948e-18,-0.0007716049440205097,-1.8356861947140974e-19,1.9875559244953155e-34,1.9875559244953155e-34,2.0328790734103208e-20,-1.284980310450474e-18,1.0054237363098228e-33,4.765728743764251e-35,-1.284980310450474e-18,1.0014969652884773e-34,0.00011022927355952561,6.0,3.0,4.0,3.0,0.1373346596956253,-0.03541666641831398,-0.05863095074892044,-0.04801587387919426,-0.05863095074892044,0.0024801588151603937,0.0059523810632526875,0.004761904943734407,0.0059523810632526875,0.0069444444961845875,0.008333333767950535,0.010416666977107525,0.004629629664123058,0.008333333767950535,0.0069444444961845875,-0.03541666641831398,0.027807539328932762,0.0059523810632526875,0.004761904943734407,0.0059523810632526875,-0.0037202381063252687,-0.0023809524718672037,-0.0019047618843615055,-0.0023809524718672037,1.8469619589329023e-17,4.99386017077912e-18,6.125418846923592e-18,6.7959517173840836e-18,4.99386017077912e-18,1.8469619589329023e-17,-0.05863095074892044,0.0059523810632526875,0.12807539105415344,0.008333333767950535,0.010416666977107525,1.0625181290357943e-17,-0.0059523810632526875,5.296796768755614e-19,5.451929839748989e-19,-0.0416666679084301,-0.008333333767950535,-0.010416666977107525,2.158767029090276e-17,1.1102230411687688e-17,4.625929158980737e-17,-0.04801587387919426,0.004761904943734407,0.008333333767950535,0.06441798806190491,0.008333333767950535,8.44780369010196e-18,4.3615439751967675e-19,-0.0031746032182127237,7.479053287059589e-19,4.451172034455639e-17,-0.0055555556900799274,-3.7561326246944956e-32,-0.013888888992369175,-0.0055555556900799274,-8.682734361861513e-32,-0.05863095074892044,0.0059523810632526875,0.010416666977107525,0.008333333767950535,0.12807539105415344,1.0625181290357943e-17,5.451929839748989e-19,8.414306080618435e-19,-0.0059523810632526875,6.692177690918182e-17,-3.282920329102897e-32,-0.010416666977107525,-5.642334092633403e-32,-0.008333333767950535,-0.0416666679084301,0.0024801588151603937,-0.0037202381063252687,1.0625181290357943e-17,8.44780369010196e-18,1.0625181290357943e-17,0.0007440476329065859,-8.131516293641283e-19,-8.673617379884035e-19,-7.589415207398531e-19,-3.3042352021841637e-18,-7.930164505921508e-19,-9.912706020142797e-19,-1.5419764345791148e-18,-7.930164505921508e-19,-3.3042352021841637e-18,0.0059523810632526875,-0.0023809524718672037,-0.0059523810632526875,4.3615439751967675e-19,5.451929839748989e-19,-8.131516293641283e-19,0.0023809524718672037,1.2588799542339873e-20,1.5735999629873233e-20,-1.9484433716130517e-18,-4.676263967794232e-19,-5.845330218236732e-19,2.6689103323740785e-33,1.3746020635229628e-33,5.7081792617579195e-33,0.004761904943734407,-0.0019047618843615055,5.296796768755614e-19,-0.0031746032182127237,8.414306080618435e-19,-8.673617379884035e-19,1.2588799542339873e-20,0.0012698412174358964,-1.1211157535555369e-19,3.181031344041101e-33,-3.7410111742353857e-19,1.146249796248256e-33,6.092870737385702e-19,-3.7410111742353857e-19,3.88678602998931e-33,0.0059523810632526875,-0.0023809524718672037,5.451929839748989e-19,7.479053287059589e-19,-0.0059523810632526875,-7.589415207398531e-19,1.5735999629873233e-20,-1.1211157535555369e-19,0.0023809524718672037,6.867658236734223e-33,8.921697228893918e-34,-5.845330218236732e-19,1.5995809375172982e-33,-4.676263967794232e-19,-1.9484433716130517e-18,0.0069444444961845875,1.8469619589329023e-17,-0.0416666679084301,4.451172034455639e-17,6.692177690918182e-17,-3.3042352021841637e-18,-1.9484433716130517e-18,3.181031344041101e-33,6.867658236734223e-33,0.02083333395421505,-6.579099288768101e-18,-1.2335811476632919e-17,-1.079383514545138e-17,-5.551115205843844e-18,-2.3129645794903686e-17,0.008333333767950535,4.99386017077912e-18,-0.008333333767950535,-0.0055555556900799274,-3.282920329102897e-32,-7.930164505921508e-19,-4.676263967794232e-19,-3.7410111742353857e-19,8.921697228893918e-34,-6.579099288768101e-18,0.0055555556900799274,4.983856540512519e-33,4.743404028264035e-33,2.6419905933852865e-33,1.0825967955183284e-32,0.010416666977107525,6.125418846923592e-18,-0.010416666977107525,-3.7561326246944956e-32,-0.010416666977107525,-9.912706020142797e-19,-5.845330218236732e-19,1.146249796248256e-33,-5.845330218236732e-19,-1.2335811476632919e-17,4.983856540512519e-33,0.010416666977107525,8.445559568673504e-33,4.3751675658994916e-33,1.8229864674243556e-32,0.004629629664123058,6.7959517173840836e-18,2.158767029090276e-17,-0.013888888992369175,-5.642334092633403e-32,-1.5419764345791148e-18,2.6689103323740785e-33,6.092870737385702e-19,1.5995809375172982e-33,-1.079383514545138e-17,4.743404028264035e-33,8.445559568673504e-33,0.004629629664123058,4.210801129559888e-33,1.883131517504941e-32,0.008333333767950535,4.99386017077912e-18,1.1102230411687688e-17,-0.0055555556900799274,-0.008333333767950535,-7.930164505921508e-19,1.3746020635229628e-33,-3.7410111742353857e-19,-4.676263967794232e-19,-5.551115205843844e-18,2.6419905933852865e-33,4.3751675658994916e-33,4.210801129559888e-33,0.0055555556900799274,9.7904661653363e-33,0.0069444444961845875,1.8469619589329023e-17,4.625929158980737e-17,-8.682734361861513e-32,-0.0416666679084301,-3.3042352021841637e-18,5.7081792617579195e-33,3.88678602998931e-33,-1.9484433716130517e-18,-2.3129645794903686e-17,1.0825967955183284e-32,1.8229864674243556e-32,1.883131517504941e-32,9.7904661653363e-33,0.02083333395421505,6.0,3.0,4.0,4.0,0.11144841462373734,-0.02745535783469677,-0.04553571343421936,-0.037261903285980225,-0.037261903285980225,0.0018601190531626344,0.004464285913854837,0.0035714285913854837,0.0035714285913854837,0.0052083334885537624,0.0062500000931322575,0.0062500000931322575,0.0034722222480922937,0.004999999888241291,0.0034722222480922937,-0.02745535783469677,0.021212797611951828,0.004464285913854837,0.0035714285913854837,0.0035714285913854837,-0.0027901786379516125,-0.0017857142956927419,-0.0014285714132711291,-0.0014285714132711291,1.3852214691996767e-17,3.068687871339023e-18,3.068687871339023e-18,6.600757772336883e-18,3.0524312907605183e-18,6.600757772336883e-18,-0.04553571343421936,0.004464285913854837,0.09761904925107956,0.0062500000931322575,0.0062500000931322575,6.613633252161577e-18,-0.004464285913854837,-2.5584360304141296e-19,-2.5584360304141296e-19,-0.03125,-0.0062500000931322575,-0.0062500000931322575,1.6190751890996458e-17,6.661337998858429e-18,1.6190751890996458e-17,-0.037261903285980225,0.0035714285913854837,0.0062500000931322575,0.04914682358503342,0.004999999888241291,6.133628614503181e-18,3.507197975845674e-19,-0.0023809524718672037,3.053377740477644e-19,3.668362051704446e-17,-0.004166666883975267,-2.3641172103017337e-32,-0.010416666977107525,-0.0033333334140479565,-3.1395981803788894e-32,-0.037261903285980225,0.0035714285913854837,0.0062500000931322575,0.004999999888241291,0.04914682358503342,6.179952383167375e-18,3.507197975845674e-19,3.053377740477644e-19,-0.0023809524718672037,3.668362051704446e-17,-2.3641172103017337e-32,-0.004166666883975267,-3.1395981803788894e-32,-0.0033333334140479565,-0.010416666977107525,0.0018601190531626344,-0.0027901786379516125,6.613633252161577e-18,6.133628614503181e-18,6.179952383167375e-18,0.0005580357392318547,-0.0,-4.87890977618477e-19,-4.87890977618477e-19,-2.478176453336911e-18,-5.947623508688102e-19,-5.947623508688102e-19,-1.1564823517837303e-18,-4.758098496757752e-19,-1.1564823517837303e-18,0.004464285913854837,-0.0017857142956927419,-0.004464285913854837,3.507197975845674e-19,3.507197975845674e-19,-0.0,0.0017857142956927419,-1.4356706251282375e-35,-1.4356706251282375e-35,-1.4613325287097888e-18,-3.507197975845674e-19,-3.507197975845674e-19,7.57122319711204e-34,3.115017555762089e-34,7.57122319711204e-34,0.0035714285913854837,-0.0014285714132711291,-2.5584360304141296e-19,-0.0023809524718672037,3.053377740477644e-19,-4.87890977618477e-19,-1.4356706251282375e-35,0.0009523809421807528,1.2541294818254894e-20,3.302941495822896e-33,1.70562406335841e-19,5.092016989974043e-34,-5.455641295759938e-19,-2.244606807938808e-19,9.646500617126209e-34,0.0035714285913854837,-0.0014285714132711291,-2.5584360304141296e-19,3.053377740477644e-19,-0.0023809524718672037,-4.87890977618477e-19,-1.4356706251282375e-35,1.2541294818254894e-20,0.0009523809421807528,3.302941495822896e-33,5.092016989974043e-34,1.70562406335841e-19,9.646500617126209e-34,-2.244606807938808e-19,-5.455641295759938e-19,0.0052083334885537624,1.3852214691996767e-17,-0.03125,3.668362051704446e-17,3.668362051704446e-17,-2.478176453336911e-18,-1.4613325287097888e-18,3.302941495822896e-33,3.302941495822896e-33,0.015625,-7.401487216851996e-18,-7.401487216851996e-18,-8.095375945498229e-18,-3.3306689994292145e-18,-8.095375945498229e-18,0.0062500000931322575,3.068687871339023e-18,-0.0062500000931322575,-0.004166666883975267,-2.3641172103017337e-32,-5.947623508688102e-19,-3.507197975845674e-19,1.70562406335841e-19,5.092016989974043e-34,-7.401487216851996e-18,0.004166666883975267,4.158996726177165e-33,4.8727186924300566e-33,2.004775676955664e-33,5.067335741204102e-33,0.0062500000931322575,3.068687871339023e-18,-0.0062500000931322575,-2.3641172103017337e-32,-0.004166666883975267,-5.947623508688102e-19,-3.507197975845674e-19,5.092016989974043e-34,1.70562406335841e-19,-7.401487216851996e-18,4.158996726177165e-33,0.004166666883975267,5.067335741204102e-33,2.004775676955664e-33,4.8727186924300566e-33,0.0034722222480922937,6.600757772336883e-18,1.6190751890996458e-17,-0.010416666977107525,-3.1395981803788894e-32,-1.1564823517837303e-18,7.57122319711204e-34,-5.455641295759938e-19,9.646500617126209e-34,-8.095375945498229e-18,4.8727186924300566e-33,5.067335741204102e-33,0.0034722222480922937,2.762760699317776e-33,6.590960090862103e-33,0.004999999888241291,3.0524312907605183e-18,6.661337998858429e-18,-0.0033333334140479565,-0.0033333334140479565,-4.758098496757752e-19,3.115017555762089e-34,-2.244606807938808e-19,-2.244606807938808e-19,-3.3306689994292145e-18,2.004775676955664e-33,2.004775676955664e-33,2.762760699317776e-33,0.002222222276031971,2.762760699317776e-33,0.0034722222480922937,6.600757772336883e-18,1.6190751890996458e-17,-3.1395981803788894e-32,-0.010416666977107525,-1.1564823517837303e-18,7.57122319711204e-34,9.646500617126209e-34,-5.455641295759938e-19,-8.095375945498229e-18,5.067335741204102e-33,4.8727186924300566e-33,6.590960090862103e-33,2.762760699317776e-33,0.0034722222480922937,6.0,3.0,4.0,5.0,0.09392856806516647,-0.022440476343035698,-0.037261903285980225,-0.030476190149784088,-0.025833332911133766,0.0014880952658131719,0.0035714285913854837,0.0028571428265422583,0.0023809524718672037,0.004166666883975267,0.004999999888241291,0.004166666883975267,0.0027777778450399637,0.0033333334140479565,0.0019841270986944437,-0.022440476343035698,0.01716071367263794,0.0035714285913854837,0.0028571428265422583,0.0023809524718672037,-0.0022321429569274187,-0.0014285714132711291,-0.0011428571306169033,-0.0009523809421807528,-1.8103299346337465e-17,-4.585081160535521e-18,-3.918631667168897e-18,-9.11757017772492e-18,-3.2380487590610394e-18,-6.478445883881117e-18,-0.037261903285980225,0.0035714285913854837,0.07892857491970062,0.004999999888241291,0.004166666883975267,-1.2576745200831851e-17,-0.0035714285913854837,6.794911330968645e-19,2.4294279081045937e-19,-0.02500000037252903,-0.004999999888241291,-0.004166666883975267,-6.476301004552767e-18,-2.599916759989403e-18,-3.980036592761159e-18,-0.030476190149784088,0.0028571428265422583,0.004999999888241291,0.03976190462708473,0.0033333334140479565,-9.438594010373075e-18,4.669019416591916e-19,-0.0019047618843615055,1.6075471968325582e-19,-1.193489771324378e-17,-0.0033333334140479565,-3.7947076036992655e-19,-0.008333333767950535,-0.002222222276031971,-4.514943068831078e-19,-0.025833332911133766,0.0023809524718672037,0.004166666883975267,0.0033333334140479565,0.024821428582072258,-7.15573433840433e-18,6.146540800467557e-19,4.838089446931044e-19,-0.0011904762359336019,-9.595498592045809e-18,-1.523259652535658e-32,-0.0020833334419876337,-3.222214568216969e-32,-0.0016666667070239782,-0.003968254197388887,0.0014880952658131719,-0.0022321429569274187,-1.2576745200831851e-17,-9.438594010373075e-18,-7.15573433840433e-18,0.00044642857392318547,6.505213034913027e-19,6.505213034913027e-19,3.7947076036992655e-19,3.965082408057119e-18,9.516196993515503e-19,7.930164505921508e-19,1.850371804212999e-18,6.34413150133963e-19,1.1091194374750159e-18,0.0035714285913854837,-0.0014285714132711291,-0.0035714285913854837,4.669019416591916e-19,6.146540800467557e-19,6.505213034913027e-19,0.0014285714132711291,-1.9467509600797682e-19,-1.6222924667331402e-19,-1.722112176960247e-18,1.9785793513989028e-20,-2.0908096336347064e-19,2.1579616926510088e-33,7.046106452548204e-34,1.0833355937178202e-33,0.0028571428265422583,-0.0011428571306169033,6.794911330968645e-19,-0.0019047618843615055,4.838089446931044e-19,6.505213034913027e-19,-1.9467509600797682e-19,0.0007619047537446022,-1.421093448932746e-19,5.62975689082678e-33,-1.2853560830931204e-19,1.0915795743724269e-33,-8.952563491199201e-20,-8.569040553954136e-20,1.4384289272142168e-33,0.0023809524718672037,-0.0009523809421807528,2.4294279081045937e-19,1.6075471968325582e-19,-0.0011904762359336019,3.7947076036992655e-19,-1.6222924667331402e-19,-1.421093448932746e-19,0.0004761904710903764,4.4296388720906425e-33,8.51106674643796e-34,8.131516293641283e-20,1.6071195297259154e-33,9.725931481261679e-20,4.714935695406852e-19,0.004166666883975267,-1.8103299346337465e-17,-0.02500000037252903,-1.193489771324378e-17,-9.595498592045809e-18,3.965082408057119e-18,-1.722112176960247e-18,5.62975689082678e-33,4.4296388720906425e-33,0.012500000186264515,7.763692764643927e-33,7.029644297013411e-33,3.2381505022763835e-18,1.1102229998097382e-18,1.9825412040285595e-18,0.004999999888241291,-4.585081160535521e-18,-0.004999999888241291,-0.0033333334140479565,-1.523259652535658e-32,9.516196993515503e-19,1.9785793513989028e-20,-1.2853560830931204e-19,8.51106674643796e-34,7.763692764643927e-33,0.0033333334140479565,1.5546129521395685e-33,3.649290620717113e-33,1.2604633069325457e-33,2.4148803093606203e-33,0.004166666883975267,-3.918631667168897e-18,-0.004166666883975267,-3.7947076036992655e-19,-0.0020833334419876337,7.930164505921508e-19,-2.0908096336347064e-19,1.0915795743724269e-33,8.131516293641283e-20,7.029644297013411e-33,1.5546129521395685e-33,0.0020833334419876337,3.286920609847142e-33,1.8973538018496328e-19,7.477256334114046e-21,0.0027777778450399637,-9.11757017772492e-18,-6.476301004552767e-18,-0.008333333767950535,-3.222214568216969e-32,1.850371804212999e-18,2.1579616926510088e-33,-8.952563491199201e-20,1.6071195297259154e-33,3.2381505022763835e-18,3.649290620717113e-33,3.286920609847142e-33,0.0027777778450399637,2.720465861562213e-33,5.2091819098338584e-33,0.0033333334140479565,-3.2380487590610394e-18,-2.599916759989403e-18,-0.002222222276031971,-0.0016666667070239782,6.34413150133963e-19,7.046106452548204e-34,-8.569040553954136e-20,9.725931481261679e-20,1.1102229998097382e-18,1.2604633069325457e-33,1.8973538018496328e-19,2.720465861562213e-33,0.0011111111380159855,2.257471534415539e-19,0.0019841270986944437,-6.478445883881117e-18,-3.980036592761159e-18,-4.514943068831078e-19,-0.003968254197388887,1.1091194374750159e-18,1.0833355937178202e-33,1.4384289272142168e-33,4.714935695406852e-19,1.9825412040285595e-18,2.4148803093606203e-33,7.477256334114046e-21,5.2091819098338584e-33,2.257471534415539e-19,0.0009920635493472219,6.0,3.0,4.0,6.0,0.08123110234737396,-0.01898384280502796,-0.03154762089252472,-0.02579365111887455,-0.01898384280502796,0.0012400794075801969,0.0029761905316263437,0.0023809524718672037,0.001700680237263441,0.0034722222480922937,0.004166666883975267,0.0029761905316263437,0.002314814832061529,0.0023809524718672037,0.0012400794075801969,-0.01898384280502796,0.01441397424787283,0.0029761905316263437,0.0023809524718672037,0.001700680237263441,-0.0018601190531626344,-0.0011904762359336019,-0.0009523809421807528,-0.0006802721181884408,9.234809794664512e-18,2.49693008538956e-18,1.1384122811097797e-18,3.3979758586920418e-18,1.0939727264834042e-18,1.549301325698425e-18,-0.03154762089252472,0.0029761905316263437,0.06626984477043152,0.004166666883975267,0.0029761905316263437,5.637851296924623e-18,-0.0029761905316263437,3.448224651061589e-19,-4.1274645280473904e-20,-0.02083333395421505,-0.004166666883975267,-0.0029761905316263437,1.079383514545138e-17,2.994646314323942e-18,4.642531749209473e-18,-0.02579365111887455,0.0023809524718672037,0.004166666883975267,0.033399470150470734,0.0023809524718672037,4.337622222074464e-18,2.935629097268603e-19,-0.0015873016091063619,2.255535931782165e-19,2.3445383943437627e-17,-0.0027777778450399637,-1.7292259819269914e-19,-0.0069444444961845875,-0.0015873016091063619,-2.9043769212566426e-19,-0.01898384280502796,0.001700680237263441,0.0029761905316263437,0.0023809524718672037,0.01441397424787283,2.7647155398380363e-18,-1.3552527156068805e-19,-0.0,-0.0006802721181884408,1.6556971217953285e-17,-8.064309281819403e-33,-0.0011904762359336019,-1.4199569151118076e-32,-0.0009523809421807528,-0.0018601190531626344,0.0012400794075801969,-0.0018601190531626344,5.637851296924623e-18,4.337622222074464e-18,2.7647155398380363e-18,0.00037202381645329297,-4.607859233063394e-19,-4.607859233063394e-19,-1.8973538018496328e-19,-1.6521176010920818e-18,-3.965082252960754e-19,-2.78177169387615e-19,-7.709882172895574e-19,-2.2384050212961917e-19,-3.22816488131922e-19,0.0029761905316263437,-0.0011904762359336019,-0.0029761905316263437,2.935629097268603e-19,-1.3552527156068805e-19,-4.607859233063394e-19,0.0011904762359336019,-2.710505431213761e-20,-1.9694667937288948e-20,-9.742216858065258e-19,-2.338131983897116e-19,1.5770093688277196e-19,1.3481509610710651e-33,3.2051695753297368e-21,4.1007212295439255e-21,0.0023809524718672037,-0.0009523809421807528,3.448224651061589e-19,-0.0015873016091063619,-0.0,-4.607859233063394e-19,-2.710505431213761e-20,0.0006349206087179482,-5.284382597218783e-20,1.5407439555097887e-33,-1.8705055871176929e-19,1.4064049507640489e-21,3.046435368692851e-19,7.620100893937863e-20,3.0224157723825444e-21,0.001700680237263441,-0.0006802721181884408,-4.1274645280473904e-20,2.255535931782165e-19,-0.0006802721181884408,-1.8973538018496328e-19,-1.9694667937288948e-20,-5.284382597218783e-20,0.0002721088530961424,8.185202263645752e-34,2.1666711874356403e-34,3.6204525726361083e-20,3.851859888774472e-34,-3.737761000662906e-20,2.2167453292682333e-20,0.0034722222480922937,9.234809794664512e-18,-0.02083333395421505,2.3445383943437627e-17,1.6556971217953285e-17,-1.6521176010920818e-18,-9.742216858065258e-19,1.5407439555097887e-33,8.185202263645752e-34,0.010416666977107525,-3.2895496443840503e-18,-2.8196140695271088e-18,-5.39691757272569e-18,-1.5860329011843016e-18,-2.2716617144263096e-18,0.004166666883975267,2.49693008538956e-18,-0.004166666883975267,-0.0027777778450399637,-8.064309281819403e-33,-3.965082252960754e-19,-2.338131983897116e-19,-1.8705055871176929e-19,2.1666711874356403e-34,-3.2895496443840503e-18,0.0027777778450399637,1.138031805039062e-33,2.3717020141320176e-33,6.980786160018429e-34,1.0671655668963057e-33,0.0029761905316263437,1.1384122811097797e-18,-0.0029761905316263437,-1.7292259819269914e-19,-0.0011904762359336019,-2.78177169387615e-19,1.5770093688277196e-19,1.4064049507640489e-21,3.6204525726361083e-20,-2.8196140695271088e-18,1.138031805039062e-33,0.0011904762359336019,2.0359453790356553e-33,6.776263578034403e-20,-4.3784043071495564e-20,0.002314814832061529,3.3979758586920418e-18,1.079383514545138e-17,-0.0069444444961845875,-1.4199569151118076e-32,-7.709882172895574e-19,1.3481509610710651e-33,3.046435368692851e-19,3.851859888774472e-34,-5.39691757272569e-18,2.3717020141320176e-33,2.0359453790356553e-33,0.002314814832061529,1.2897213613245125e-33,1.8529234800065176e-33,0.0023809524718672037,1.0939727264834042e-18,2.994646314323942e-18,-0.0015873016091063619,-0.0009523809421807528,-2.2384050212961917e-19,3.2051695753297368e-21,7.620100893937863e-20,-3.737761000662906e-20,-1.5860329011843016e-18,6.980786160018429e-34,6.776263578034403e-20,1.2897213613245125e-33,0.0006349206087179482,1.131526597046341e-19,0.0012400794075801969,1.549301325698425e-18,4.642531749209473e-18,-2.9043769212566426e-19,-0.0018601190531626344,-3.22816488131922e-19,4.1007212295439255e-21,3.0224157723825444e-21,2.2167453292682333e-20,-2.2716617144263096e-18,1.0671655668963057e-33,-4.3784043071495564e-20,1.8529234800065176e-33,1.131526597046341e-19,0.00037202381645329297,6.0,3.0,4.0,7.0,0.07158683240413666,-0.01645408198237419,-0.027359694242477417,-0.022363945841789246,-0.014547902159392834,0.0010629252064973116,0.0025510203558951616,0.0020408162381500006,0.0012755101779475808,0.0029761905316263437,0.0035714285913854837,0.0022321429569274187,0.0019841270986944437,0.0017857142956927419,0.0008267195662483573,-0.01645408198237419,0.012427721172571182,0.0025510203558951616,0.0020408162381500006,0.0012755101779475808,-0.0015943878097459674,-0.0010204081190750003,-0.0008163265301845968,-0.0005102040595375001,7.915551016232263e-18,1.6982945451975483e-18,1.0299920638612292e-18,3.7718617023611634e-18,1.0366404246370476e-18,8.968053352898051e-19,-0.027359694242477417,0.0025510203558951616,0.05712159723043442,0.0035714285913854837,0.0022321429569274187,4.87890977618477e-18,-0.0025510203558951616,-2.371210419605229e-19,-2.1282449847255008e-19,-0.01785714365541935,-0.0035714285913854837,-0.0022321429569274187,9.251858814269842e-18,2.499789855562309e-18,2.795482522721946e-18,-0.022363945841789246,0.0020408162381500006,0.0035714285913854837,0.028798185288906097,0.0017857142956927419,3.680574877140424e-18,1.6505144475167716e-19,-0.0013605442363768816,8.949341364219365e-20,1.986317407601956e-17,-0.0023809524718672037,1.2047111432480287e-19,-0.0059523810632526875,-0.0011904762359336019,2.8402096777075486e-19,-0.014547902159392834,0.0012755101779475808,0.0022321429569274187,0.0017857142956927419,0.009148242883384228,2.1955093992831465e-18,5.421010862427522e-20,1.4907779871675686e-19,-0.00042517005931586027,1.1885806198249983e-17,-5.503339452893551e-33,-0.0007440476329065859,-1.0771308937237986e-32,-0.0005952381179668009,-0.0009920635493472219,0.0010629252064973116,-0.0015943878097459674,4.87890977618477e-18,3.680574877140424e-18,2.1955093992831465e-18,0.0003188775444868952,-3.5236570605778894e-19,-3.5236570605778894e-19,-2.168404344971009e-19,-1.4161008452493172e-18,-3.398641894181512e-19,-2.1360082040212817e-19,-6.608470507765904e-19,-1.7264659128674492e-19,-1.9977370805678297e-19,0.0025510203558951616,-0.0010204081190750003,-0.0025510203558951616,1.6505144475167716e-19,5.421010862427522e-20,-3.5236570605778894e-19,0.0010204081190750003,1.3552527156068805e-20,1.8909528133134075e-20,-8.350471518771953e-19,-2.0041132213739357e-19,-1.2793373101610314e-19,1.1074097180226606e-33,4.928520208072451e-22,3.955465809819556e-21,0.0020408162381500006,-0.0008163265301845968,-2.371210419605229e-19,-0.0013605442363768816,1.4907779871675686e-19,-3.5236570605778894e-19,1.3552527156068805e-20,0.0005442177061922848,-1.4148147280308136e-20,2.2148194360453212e-33,1.3429184186979492e-19,6.006505577032929e-22,-3.1175093118628214e-19,-7.907941652530417e-20,6.632367371960617e-22,0.0012755101779475808,-0.0005102040595375001,-2.1282449847255008e-19,8.949341364219365e-20,-0.00042517005931586027,-2.168404344971009e-19,1.8909528133134075e-20,-1.4148147280308136e-20,0.0001700680295471102,5.296307347064899e-34,2.1666711874356403e-34,5.518355803358235e-20,4.333342374871281e-34,-1.8041015954934672e-20,3.1691964679200216e-20,0.0029761905316263437,7.915551016232263e-18,-0.01785714365541935,1.986317407601956e-17,1.1885806198249983e-17,-1.4161008452493172e-18,-8.350471518771953e-19,2.2148194360453212e-33,5.296307347064899e-34,0.008928571827709675,-2.4168120595946647e-18,-1.5105074855478771e-18,-4.625929407134921e-18,-1.1895247017376204e-18,-1.4318352680661478e-18,0.0035714285913854837,1.6982945451975483e-18,-0.0035714285913854837,-0.0023809524718672037,-5.503339452893551e-33,-3.398641894181512e-19,-2.0041132213739357e-19,1.3429184186979492e-19,2.1666711874356403e-34,-2.4168120595946647e-18,0.0023809524718672037,6.414143240801872e-34,1.8241940307304362e-33,4.68575420371536e-34,6.031055141998658e-34,0.0022321429569274187,1.0299920638612292e-18,-0.0022321429569274187,1.2047111432480287e-19,-0.0007440476329065859,-2.1360082040212817e-19,-1.2793373101610314e-19,6.006505577032929e-22,5.518355803358235e-20,-1.5105074855478771e-18,6.414143240801872e-34,0.0007440476329065859,1.2174985292325103e-33,-4.0657581468206416e-20,1.9433135076467275e-20,0.0019841270986944437,3.7718617023611634e-18,9.251858814269842e-18,-0.0059523810632526875,-1.0771308937237986e-32,-6.608470507765904e-19,1.1074097180226606e-33,-3.1175093118628214e-19,4.333342374871281e-34,-4.625929407134921e-18,1.8241940307304362e-33,1.2174985292325103e-33,0.0019841270986944437,9.89509838687093e-34,1.1644744586253132e-33,0.0017857142956927419,1.0366404246370476e-18,2.499789855562309e-18,-0.0011904762359336019,-0.0005952381179668009,-1.7264659128674492e-19,4.928520208072451e-22,-7.907941652530417e-20,-1.8041015954934672e-20,-1.1895247017376204e-18,4.68575420371536e-34,-4.0657581468206416e-20,9.89509838687093e-34,0.00039682540227659047,-9.52263504362058e-20,0.0008267195662483573,8.968053352898051e-19,2.795482522721946e-18,2.8402096777075486e-19,-0.0009920635493472219,-1.9977370805678297e-19,3.955465809819556e-21,6.632367371960617e-22,3.1691964679200216e-20,-1.4318352680661478e-18,6.031055141998658e-34,1.9433135076467275e-20,1.1644744586253132e-33,-9.52263504362058e-20,0.0001653439103392884,6.0,3.0,4.0,8.0,0.06400462985038757,-0.014521329663693905,-0.02415674552321434,-0.01974206417798996,-0.011507936753332615,0.0009300595265813172,0.0022321429569274187,0.0017857142956927419,0.0009920635493472219,0.0026041667442768812,0.0031250000465661287,0.0017361111240461469,0.0017361111240461469,0.0013888889225199819,0.0005787037080153823,-0.014521329663693905,0.010923858731985092,0.0022321429569274187,0.0017857142956927419,0.0009920635493472219,-0.0013950893189758062,-0.0008928571478463709,-0.0007142857066355646,-0.00039682540227659047,6.1954409265471244e-18,1.4869058513226313e-18,8.142003392844807e-19,2.8912057243629608e-18,7.148566714998981e-19,5.843808205909634e-19,-0.02415674552321434,0.0022321429569274187,0.05019841343164444,0.0031250000465661287,0.0017361111240461469,2.573173183604951e-18,-0.0022321429569274187,5.063064472277794e-34,-1.1858461261560205e-20,-0.015625,-0.0031250000465661287,-0.0017361111240461469,8.095375945498229e-18,1.9452394943054807e-18,1.9313860802015957e-18,-0.01974206417798996,0.0017857142956927419,0.0031250000465661287,0.025314154103398323,0.0013888889225199819,2.3554476658524183e-18,3.138086494643732e-33,-0.0011904762359336019,-1.222162198480454e-19,1.9081958235744878e-17,-0.0020833334419876337,9.486769009248164e-20,-0.0052083334885537624,-0.0009259259095415473,1.3565538448610323e-19,-0.011507936753332615,0.0009920635493472219,0.0017361111240461469,0.0013888889225199819,0.006181500386446714,1.2018874329801082e-18,1.6012358131580652e-33,-1.762258793454443e-19,-0.00028344671591185033,9.896184534973123e-18,-5.968763216790189e-33,-0.0004960317746736109,-7.6180644429404e-33,-0.00039682540227659047,-0.0005787037080153823,0.0009300595265813172,-0.0013950893189758062,2.573173183604951e-18,2.3554476658524183e-18,1.2018874329801082e-18,0.00027901786961592734,3.7172646283065783e-19,5.569996430505979e-20,5.0125471372442764e-20,-1.2390882266684555e-18,-2.973811754344051e-19,-1.652117626941476e-19,-5.782411758918651e-19,-1.321694127402575e-19,-1.3767647106590584e-19,0.0022321429569274187,-0.0008928571478463709,-0.0022321429569274187,3.138086494643732e-33,1.6012358131580652e-33,3.7172646283065783e-19,0.0008928571478463709,7.420725941073209e-35,6.678054579530938e-35,-1.650797042711633e-33,-3.961913251482804e-34,-2.201062891980587e-34,-7.703719777548943e-34,-1.7608502447078474e-34,-1.834219000120909e-34,0.0017857142956927419,-0.0007142857066355646,5.063064472277794e-34,-0.0011904762359336019,-1.762258793454443e-19,5.569996430505979e-20,7.420725941073209e-35,0.0004761904710903764,7.04903478607686e-20,-2.4735753136910696e-34,-5.936580523269827e-35,-3.087451983646566e-35,-1.1543351081243757e-34,-3.5978845767578497e-35,-8.924219089015601e-36,0.0009920635493472219,-0.00039682540227659047,-1.1858461261560205e-20,-1.222162198480454e-19,-0.00028344671591185033,5.0125471372442764e-20,6.678054579530938e-35,7.04903478607686e-20,0.00011337868636474013,-5.7777898331617076e-34,-5.34244331924164e-35,3.3881317890172014e-21,-1.038808464639397e-34,-1.5431328976989493e-20,2.971471544068865e-20,0.0026041667442768812,6.1954409265471244e-18,-0.015625,1.9081958235744878e-17,9.896184534973123e-18,-1.2390882266684555e-18,-1.650797042711633e-33,-2.4735753136910696e-34,-5.7777898331617076e-34,0.0078125,-3.700743608425998e-18,-1.7622588710026254e-18,-4.0476879727491145e-18,-9.251859021064995e-19,-9.63735310386038e-19,0.0031250000465661287,1.4869058513226313e-18,-0.0031250000465661287,-0.0020833334419876337,-5.968763216790189e-33,-2.973811754344051e-19,-3.961913251482804e-34,-5.936580523269827e-35,-5.34244331924164e-35,-3.700743608425998e-18,0.0020833334419876337,1.0108584691369566e-33,2.533667870602051e-33,5.7912409782839685e-34,6.032542417858937e-34,0.0017361111240461469,8.142003392844807e-19,-0.0017361111240461469,9.486769009248164e-20,-0.0004960317746736109,-1.652117626941476e-19,-2.201062891980587e-34,-3.087451983646566e-35,3.3881317890172014e-21,-1.7622588710026254e-18,1.0108584691369566e-33,0.0004960317746736109,1.255420987180495e-33,-2.710505431213761e-20,-1.1187228024383648e-21,0.0017361111240461469,2.8912057243629608e-18,8.095375945498229e-18,-0.0052083334885537624,-7.6180644429404e-33,-5.782411758918651e-19,-7.703719777548943e-34,-1.1543351081243757e-34,-1.038808464639397e-34,-4.0476879727491145e-18,2.533667870602051e-33,1.255420987180495e-33,0.0017361111240461469,7.5325260149184665e-34,7.846381629055575e-34,0.0013888889225199819,7.148566714998981e-19,1.9452394943054807e-18,-0.0009259259095415473,-0.00039682540227659047,-1.321694127402575e-19,-1.7608502447078474e-34,-3.5978845767578497e-35,-1.5431328976989493e-20,-9.251859021064995e-19,5.7912409782839685e-34,-2.710505431213761e-20,7.5325260149184665e-34,0.00026455026818439364,-3.8758681743340104e-20,0.0005787037080153823,5.843808205909634e-19,1.9313860802015957e-18,1.3565538448610323e-19,-0.0005787037080153823,-1.3767647106590584e-19,-1.834219000120909e-34,-8.924219089015601e-36,2.971471544068865e-20,-9.63735310386038e-19,6.032542417858937e-34,-1.1187228024383648e-21,7.846381629055575e-34,-3.8758681743340104e-20,8.26719551696442e-05,6.0,3.0,5.0,3.0,0.1160052940249443,-0.02896825410425663,-0.04801587387919426,-0.03333333507180214,-0.04801587387919426,0.0019841270986944437,0.004761904943734407,0.0031746032182127237,0.004761904943734407,0.0055555556900799274,0.0055555556900799274,0.008333333767950535,0.0026455025654286146,0.0055555556900799274,0.0055555556900799274,-0.02896825410425663,0.02250000089406967,0.004761904943734407,0.0031746032182127237,0.004761904943734407,-0.0029761905316263437,-0.0019047618843615055,-0.0012698412174358964,-0.0019047618843615055,-2.5942284870710595e-17,-5.2583805365546965e-18,-7.996116753533703e-18,-7.15573433840433e-18,-5.583641188300348e-18,-2.5942284870710595e-17,-0.04801587387919426,0.004761904943734407,0.10357142984867096,0.0055555556900799274,0.008333333767950535,-1.6696713456276768e-17,-0.004761904943734407,-2.5266601456768465e-19,-6.42840052624347e-19,-0.03333333507180214,-0.0055555556900799274,-0.008333333767950535,-4.90613229014389e-18,-3.717684267371084e-18,-1.8503717628539684e-17,-0.03333333507180214,0.0031746032182127237,0.0055555556900799274,0.03253968432545662,0.0055555556900799274,-9.814962016265316e-18,-3.7947076036992655e-19,-0.0015873016091063619,-5.744274596776894e-19,-1.2423924409843292e-17,-0.0027777778450399637,-2.6131756636293813e-32,-0.005291005130857229,-0.0027777778450399637,-9.528429078881223e-32,-0.04801587387919426,0.004761904943734407,0.008333333767950535,0.0055555556900799274,0.10357142984867096,-1.713039432527097e-17,-6.563925797804158e-19,-3.7269449679189215e-19,-0.004761904943734407,-2.2204460823375376e-17,-2.546344107807731e-32,-0.008333333767950535,-0.0,-0.0055555556900799274,-0.03333333507180214,0.0019841270986944437,-0.0029761905316263437,-1.6696713456276768e-17,-9.814962016265316e-18,-1.713039432527097e-17,0.0005952381179668009,9.75781955236954e-19,6.776263578034403e-19,1.0299920638612292e-18,5.286776406212723e-18,1.0628849009194004e-18,1.5860329011843016e-18,1.4590925236109952e-18,1.075306465382956e-18,5.286776406212723e-18,0.004761904943734407,-0.0019047618843615055,-0.004761904943734407,-3.7947076036992655e-19,-6.563925797804158e-19,9.75781955236954e-19,0.0019047618843615055,1.3552527156068805e-19,2.439454888092385e-19,-4.915965916663497e-19,2.774411918999445e-20,3.2976320907727913e-20,1.410850541685542e-21,6.776263578034403e-21,8.859277744181285e-33,0.0031746032182127237,-0.0012698412174358964,-2.5266601456768465e-19,-0.0015873016091063619,-3.7269449679189215e-19,6.776263578034403e-19,1.3552527156068805e-19,0.0006349206087179482,1.4907779871675686e-19,6.355568816477878e-33,-4.307358216701774e-20,1.925929944387236e-33,-6.064229737923024e-20,-0.0,5.970382827600431e-33,0.004761904943734407,-0.0019047618843615055,-6.42840052624347e-19,-5.744274596776894e-19,-0.004761904943734407,1.0299920638612292e-18,2.439454888092385e-19,1.4907779871675686e-19,0.0019047618843615055,9.240489827468983e-33,1.5467624865859988e-33,3.2976320907727913e-20,2.0826032910998415e-21,1.926736291183282e-19,-4.915965916663497e-19,0.0055555556900799274,-2.5942284870710595e-17,-0.03333333507180214,-1.2423924409843292e-17,-2.2204460823375376e-17,5.286776406212723e-18,-4.915965916663497e-19,6.355568816477878e-33,9.240489827468983e-33,0.01666666753590107,8.281498760865114e-33,1.2970729397287535e-32,2.6433882031063616e-18,1.850371804212999e-18,9.251858814269842e-18,0.0055555556900799274,-5.2583805365546965e-18,-0.0055555556900799274,-0.0027777778450399637,-2.546344107807731e-32,1.0628849009194004e-18,2.774411918999445e-20,-4.307358216701774e-20,1.5467624865859988e-33,8.281498760865114e-33,0.0027777778450399637,2.6207126762674646e-33,-1.92085503702803e-19,-0.0,9.487910817165936e-33,0.008333333767950535,-7.996116753533703e-18,-0.008333333767950535,-2.6131756636293813e-32,-0.008333333767950535,1.5860329011843016e-18,3.2976320907727913e-20,1.925929944387236e-33,3.2976320907727913e-20,1.2970729397287535e-32,2.6207126762674646e-33,0.008333333767950535,3.9866707237145565e-33,2.7628802691337737e-33,1.2970729397287535e-32,0.0026455025654286146,-7.15573433840433e-18,-4.90613229014389e-18,-0.005291005130857229,-0.0,1.4590925236109952e-18,1.410850541685542e-21,-6.064229737923024e-20,2.0826032910998415e-21,2.6433882031063616e-18,-1.92085503702803e-19,3.9866707237145565e-33,0.0013227512827143073,2.2619374281413537e-34,1.513411213927675e-32,0.0055555556900799274,-5.583641188300348e-18,-3.717684267371084e-18,-0.0027777778450399637,-0.0055555556900799274,1.075306465382956e-18,6.776263578034403e-21,-0.0,1.926736291183282e-19,1.850371804212999e-18,-0.0,2.7628802691337737e-33,2.2619374281413537e-34,0.0027777778450399637,1.0246218549461547e-32,0.0055555556900799274,-2.5942284870710595e-17,-1.8503717628539684e-17,-9.528429078881223e-32,-0.03333333507180214,5.286776406212723e-18,8.859277744181285e-33,5.970382827600431e-33,-4.915965916663497e-19,9.251858814269842e-18,9.487910817165936e-33,1.2970729397287535e-32,1.513411213927675e-32,1.0246218549461547e-32,0.01666666753590107,6.0,3.0,5.0,4.0,0.09392856806516647,-0.022440476343035698,-0.037261903285980225,-0.025833332911133766,-0.030476190149784088,0.0014880952658131719,0.0035714285913854837,0.0023809524718672037,0.0028571428265422583,0.004166666883975267,0.004166666883975267,0.004999999888241291,0.0019841270986944437,0.0033333334140479565,0.0027777778450399637,-0.022440476343035698,0.01716071367263794,0.0035714285913854837,0.0023809524718672037,0.0028571428265422583,-0.0022321429569274187,-0.0014285714132711291,-0.0009523809421807528,-0.0011428571306169033,-1.8103299346337465e-17,-3.9632750184186905e-18,-4.585081160535521e-18,-6.396792817664476e-18,-3.36559628720396e-18,-9.11757017772492e-18,-0.037261903285980225,0.0035714285913854837,0.07892857491970062,0.004166666883975267,0.004999999888241291,-1.2576745200831851e-17,-0.0035714285913854837,1.9829918106672477e-19,6.794911330968645e-19,-0.02500000037252903,-0.004166666883975267,-0.004999999888241291,-4.02541323962398e-18,-2.3288662168680268e-18,-6.476301004552767e-18,-0.025833332911133766,0.0023809524718672037,0.004166666883975267,0.024821428582072258,0.0033333334140479565,-7.20725031977352e-18,6.146540800467557e-19,-0.0011904762359336019,2.2326868768179775e-19,-9.595498592045809e-18,-0.0020833334419876337,-1.5298634328617837e-32,-0.003968254197388887,-0.0016666667070239782,-3.2405405251462886e-32,-0.030476190149784088,0.0028571428265422583,0.004999999888241291,0.0033333334140479565,0.03976190462708473,-9.324138683375338e-18,4.669019416591916e-19,3.08378981117998e-19,-0.0019047618843615055,-1.193489771324378e-17,-1.0842021724855044e-19,-0.0033333334140479565,-1.0842021724855044e-19,-0.002222222276031971,-0.008333333767950535,0.0014880952658131719,-0.0022321429569274187,-1.2576745200831851e-17,-7.20725031977352e-18,-9.324138683375338e-18,0.00044642857392318547,6.505213034913027e-19,3.7947076036992655e-19,6.505213034913027e-19,3.965082408057119e-18,7.930164505921508e-19,9.516196993515503e-19,1.1147813853703648e-18,6.34413150133963e-19,1.850371804212999e-18,0.0035714285913854837,-0.0014285714132711291,-0.0035714285913854837,6.146540800467557e-19,4.669019416591916e-19,6.505213034913027e-19,0.0014285714132711291,-1.6222924667331402e-19,-1.9467509600797682e-19,-1.722112176960247e-18,-2.0908096336347064e-19,1.9785793513989028e-20,1.0833355937178202e-33,6.964852701435017e-34,2.1579616926510088e-33,0.0023809524718672037,-0.0009523809421807528,1.9829918106672477e-19,-0.0011904762359336019,3.08378981117998e-19,3.7947076036992655e-19,-1.6222924667331402e-19,0.0004761904710903764,-1.450356384818487e-19,4.237045877651919e-33,1.0363697427062867e-19,8.516002904356453e-34,4.1530419865632957e-19,2.710505431213761e-20,1.607463361823531e-33,0.0028571428265422583,-0.0011428571306169033,6.794911330968645e-19,2.2326868768179775e-19,-0.0019047618843615055,6.505213034913027e-19,-1.9467509600797682e-19,-1.450356384818487e-19,0.0007619047537446022,5.80818481099611e-33,1.1133981270561309e-33,-1.2853560830931204e-19,1.4685215825952673e-33,9.288027881089788e-20,-8.952563491199201e-20,0.004166666883975267,-1.8103299346337465e-17,-0.02500000037252903,-9.595498592045809e-18,-1.193489771324378e-17,3.965082408057119e-18,-1.722112176960247e-18,4.237045877651919e-33,5.80818481099611e-33,0.012500000186264515,6.955652070416933e-33,7.763692764643927e-33,1.9825412040285595e-18,1.1102229998097382e-18,3.2381505022763835e-18,0.004166666883975267,-3.9632750184186905e-18,-0.004166666883975267,-0.0020833334419876337,-1.0842021724855044e-19,7.930164505921508e-19,-2.0908096336347064e-19,1.0363697427062867e-19,1.1133981270561309e-33,6.955652070416933e-33,0.0020833334419876337,1.5546129521395685e-33,3.016559672918967e-20,5.421010862427522e-20,3.286920609847142e-33,0.004999999888241291,-4.585081160535521e-18,-0.004999999888241291,-1.5298634328617837e-32,-0.0033333334140479565,9.516196993515503e-19,1.9785793513989028e-20,8.516002904356453e-34,-1.2853560830931204e-19,7.763692764643927e-33,1.5546129521395685e-33,0.0033333334140479565,2.4148803093606203e-33,1.3036661222386226e-33,3.649290620717113e-33,0.0019841270986944437,-6.396792817664476e-18,-4.02541323962398e-18,-0.003968254197388887,-1.0842021724855044e-19,1.1147813853703648e-18,1.0833355937178202e-33,4.1530419865632957e-19,1.4685215825952673e-33,1.9825412040285595e-18,3.016559672918967e-20,2.4148803093606203e-33,0.0009920635493472219,2.6170396765502376e-20,5.2091819098338584e-33,0.0033333334140479565,-3.36559628720396e-18,-2.3288662168680268e-18,-0.0016666667070239782,-0.002222222276031971,6.34413150133963e-19,6.964852701435017e-34,2.710505431213761e-20,9.288027881089788e-20,1.1102229998097382e-18,5.421010862427522e-20,1.3036661222386226e-33,2.6170396765502376e-20,0.0011111111380159855,2.8420659767089786e-33,0.0027777778450399637,-9.11757017772492e-18,-6.476301004552767e-18,-3.2405405251462886e-32,-0.008333333767950535,1.850371804212999e-18,2.1579616926510088e-33,1.607463361823531e-33,-8.952563491199201e-20,3.2381505022763835e-18,3.286920609847142e-33,3.649290620717113e-33,5.2091819098338584e-33,2.8420659767089786e-33,0.0027777778450399637,6.0,3.0,5.0,5.0,0.07904762029647827,-0.018333332613110542,-0.030476190149784088,-0.021111110225319862,-0.021111110225319862,0.0011904762359336019,0.0028571428265422583,0.0019047618843615055,0.0019047618843615055,0.0033333334140479565,0.0033333334140479565,0.0033333334140479565,0.0015873016091063619,0.002222222276031971,0.0015873016091063619,-0.018333332613110542,0.013880952261388302,0.0028571428265422583,0.0019047618843615055,0.0019047618843615055,-0.0017857142956927419,-0.0011428571306169033,-0.0007619047537446022,-0.0007619047537446022,8.865417402877931e-18,1.9982435735966536e-18,2.0470538471821826e-18,2.710505431213761e-18,1.2481920730926376e-18,2.765868009226476e-18,-0.030476190149784088,0.0028571428265422583,0.06380952149629593,0.0033333334140479565,0.0033333334140479565,5.421010862427522e-18,-0.0028571428265422583,2.5395688161236193e-19,3.0081139003708593e-19,-0.019999999552965164,-0.0033333334140479565,-0.0033333334140479565,-3.2656947894937867e-18,-1.5347767579250298e-18,-3.1045283665100268e-18,-0.021111110225319862,0.0019047618843615055,0.0033333334140479565,0.020079365000128746,0.002222222276031971,3.2429649002365952e-18,2.1486943111844895e-19,-0.0009523809421807528,7.89065551643262e-20,-7.824428799953422e-18,-0.0016666667070239782,2.710505431213761e-20,-0.0031746032182127237,-0.0011111111380159855,5.684057528393653e-20,-0.021111110225319862,0.0019047618843615055,0.0033333334140479565,0.002222222276031971,0.020079365000128746,3.198396408832238e-18,2.1486943111844895e-19,1.607737189879504e-19,-0.0009523809421807528,-7.824428799953422e-18,-3.514842934163254e-20,-0.0016666667070239782,-1.0842021724855044e-19,-0.0011111111380159855,-0.0031746032182127237,0.0011904762359336019,-0.0017857142956927419,5.421010862427522e-18,3.2429649002365952e-18,3.198396408832238e-18,0.0003571428533177823,-3.7947076036992655e-19,-2.710505431213761e-19,-2.710505431213761e-19,-1.5860329011843016e-18,-3.172065750669815e-19,-3.172065750669815e-19,-4.489435403679357e-19,-2.1147105004465433e-19,-4.552362134803563e-19,0.0028571428265422583,-0.0011428571306169033,-0.0028571428265422583,2.1486943111844895e-19,2.1486943111844895e-19,-3.7947076036992655e-19,0.0011428571306169033,-1.1127548639554437e-20,-1.1127548639554437e-20,-9.352527935588464e-19,-1.8705055871176929e-19,-1.8705055871176929e-19,3.76158192263132e-34,1.840750799785146e-34,3.881952544155522e-34,0.0019047618843615055,-0.0007619047537446022,2.5395688161236193e-19,-0.0009523809421807528,1.607737189879504e-19,-2.710505431213761e-19,-1.1127548639554437e-20,0.0003809523768723011,-4.494540384372645e-21,7.703719777548943e-34,-1.1160905020873065e-19,-1.4599633808139194e-21,-2.3117382015141975e-19,-6.776263578034403e-20,-2.885547673263779e-21,0.0019047618843615055,-0.0007619047537446022,3.0081139003708593e-19,7.89065551643262e-20,-0.0009523809421807528,-2.710505431213761e-19,-1.1127548639554437e-20,-4.494540384372645e-21,0.0003809523768723011,6.7407548053553255e-34,-9.709849321085737e-22,-1.3552527156068805e-19,-2.6178586176684078e-21,-2.7655769191990396e-20,-2.415133968625736e-19,0.0033333334140479565,8.865417402877931e-18,-0.019999999552965164,-7.824428799953422e-18,-7.824428799953422e-18,-1.5860329011843016e-18,-9.352527935588464e-19,7.703719777548943e-34,6.7407548053553255e-34,0.009999999776482582,1.6316689945588696e-33,1.4454485570340452e-33,1.5860329011843016e-18,7.401487010056843e-19,1.5860329011843016e-18,0.0033333334140479565,1.9982435735966536e-18,-0.0033333334140479565,-0.0016666667070239782,-3.514842934163254e-20,-3.172065750669815e-19,-1.8705055871176929e-19,-1.1160905020873065e-19,-9.709849321085737e-22,1.6316689945588696e-33,0.0016666667070239782,-2.554935941667908e-21,5.168103621313702e-20,2.710505431213761e-20,-3.2366165749941734e-21,0.0033333334140479565,2.0470538471821826e-18,-0.0033333334140479565,2.710505431213761e-20,-0.0016666667070239782,-3.172065750669815e-19,-1.8705055871176929e-19,-1.4599633808139194e-21,-1.3552527156068805e-19,1.4454485570340452e-33,-2.554935941667908e-21,0.0016666667070239782,-4.866544670029195e-21,1.3462960217056148e-22,-3.053213144460443e-20,0.0015873016091063619,2.710505431213761e-18,-3.2656947894937867e-18,-0.0031746032182127237,-1.0842021724855044e-19,-4.489435403679357e-19,3.76158192263132e-34,-2.3117382015141975e-19,-2.6178586176684078e-21,1.5860329011843016e-18,5.168103621313702e-20,-4.866544670029195e-21,0.0007936508045531809,8.692310498504997e-20,-1.795780029284213e-20,0.002222222276031971,1.2481920730926376e-18,-1.5347767579250298e-18,-0.0011111111380159855,-0.0011111111380159855,-2.1147105004465433e-19,1.840750799785146e-34,-6.776263578034403e-20,-2.7655769191990396e-20,7.401487010056843e-19,2.710505431213761e-20,1.3462960217056148e-22,8.692310498504997e-20,0.0005555555690079927,1.5863170571117592e-20,0.0015873016091063619,2.765868009226476e-18,-3.1045283665100268e-18,5.684057528393653e-20,-0.0031746032182127237,-4.552362134803563e-19,3.881952544155522e-34,-2.885547673263779e-21,-2.415133968625736e-19,1.5860329011843016e-18,-3.2366165749941734e-21,-3.053213144460443e-20,-1.795780029284213e-20,1.5863170571117592e-20,0.0007936508045531809,6.0,3.0,5.0,6.0,0.06829176098108292,-0.015504535287618637,-0.02579365111887455,-0.01785714365541935,-0.015504535287618637,0.0009920635493472219,0.0023809524718672037,0.0015873016091063619,0.0013605442363768816,0.0027777778450399637,0.0027777778450399637,0.0023809524718672037,0.0013227512827143073,0.0015873016091063619,0.0009920635493472219,-0.015504535287618637,0.01165816280990839,0.0023809524718672037,0.0015873016091063619,0.0013605442363768816,-0.0014880952658131719,-0.0009523809421807528,-0.0006349206087179482,-0.0005442177061922848,-1.2971142435355297e-17,-2.6315018244991277e-18,-2.018179453539794e-18,-3.63207727782644e-18,-1.449238320973651e-18,-2.2297048390109355e-18,-0.02579365111887455,0.0023809524718672037,0.0535714291036129,0.0027777778450399637,0.0023809524718672037,-8.782037597132586e-18,-0.0023809524718672037,-1.941530804179705e-19,-6.710037430241876e-20,-0.01666666753590107,-0.0027777778450399637,-0.0023809524718672037,-2.5609836433032164e-18,-1.0095546022741519e-18,-1.796918979439516e-18,-0.01785714365541935,0.0015873016091063619,0.0027777778450399637,0.01686508022248745,0.0015873016091063619,-5.161769976911566e-18,-2.291187933171083e-19,-0.0007936508045531809,-1.7843400567891193e-20,-6.608470404368327e-18,-0.0013888889225199819,2.710505431213761e-20,-0.0026455025654286146,-0.0007936508045531809,5.743555725125797e-20,-0.015504535287618637,0.0013605442363768816,0.0023809524718672037,0.0015873016091063619,0.01165816280990839,-4.228388472693467e-18,-2.3297763287993368e-20,-1.4135273312673e-19,-0.0005442177061922848,-5.6006786273771025e-18,2.6035267442036462e-20,-0.0009523809421807528,-0.0,-0.0006349206087179482,-0.0014880952658131719,0.0009920635493472219,-0.0014880952658131719,-8.782037597132586e-18,-5.161769976911566e-18,-4.228388472693467e-18,0.00029761905898340046,5.692061405548898e-19,3.6591823321385775e-19,2.439454888092385e-19,2.6433882031063616e-18,5.2867765096103e-19,4.531522353246055e-19,7.401466847529412e-19,3.021015074493331e-19,5.176089403893048e-19,0.0023809524718672037,-0.0009523809421807528,-0.0023809524718672037,-2.291187933171083e-19,-2.3297763287993368e-20,5.692061405548898e-19,0.0009523809421807528,8.725067496996951e-20,6.742077108046381e-20,-2.4579829583317485e-19,1.0992107507771682e-20,-1.4525416925992756e-19,1.3000027124613842e-33,5.194593106585192e-34,8.63659209436151e-34,0.0015873016091063619,-0.0006349206087179482,-1.941530804179705e-19,-0.0007936508045531809,-1.4135273312673e-19,3.6591823321385775e-19,8.725067496996951e-20,0.0003174603043589741,4.8961133880917683e-20,3.370377402677663e-33,-1.155950817154331e-20,-3.4183824464089905e-22,-3.032114868961512e-20,2.0328790734103208e-20,-3.937194731025581e-21,0.0013605442363768816,-0.0005442177061922848,-6.710037430241876e-20,-1.7843400567891193e-20,-0.0005442177061922848,2.439454888092385e-19,6.742077108046381e-20,4.8961133880917683e-20,0.00021768707665614784,1.4925957069001078e-33,9.620212381711794e-23,-4.0657581468206416e-20,-6.273182972159896e-22,-4.077072103519292e-20,-1.3990835945493877e-19,0.0027777778450399637,-1.2971142435355297e-17,-0.01666666753590107,-6.608470404368327e-18,-5.6006786273771025e-18,2.6433882031063616e-18,-2.4579829583317485e-19,3.370377402677663e-33,1.4925957069001078e-33,0.008333333767950535,4.241091414928671e-33,3.5632047613025815e-33,1.3216941015531808e-18,5.2867765096103e-19,9.086647271295545e-19,0.0027777778450399637,-2.6315018244991277e-18,-0.0027777778450399637,-0.0013888889225199819,2.6035267442036462e-20,5.2867765096103e-19,1.0992107507771682e-20,-1.155950817154331e-20,9.620212381711794e-23,4.241091414928671e-33,0.0013888889225199819,-5.982169281215733e-22,-3.977790396732468e-20,-1.3552527156068805e-20,2.6305267393078475e-22,0.0023809524718672037,-2.018179453539794e-18,-0.0023809524718672037,2.710505431213761e-20,-0.0009523809421807528,4.531522353246055e-19,-1.4525416925992756e-19,-3.4183824464089905e-22,-4.0657581468206416e-20,3.5632047613025815e-33,-5.982169281215733e-22,0.0009523809421807528,-1.1394607818115982e-21,-8.278234546736036e-21,-8.374596241337062e-21,0.0013227512827143073,-3.63207727782644e-18,-2.5609836433032164e-18,-0.0026455025654286146,-0.0,7.401466847529412e-19,1.3000027124613842e-33,-3.032114868961512e-20,-6.273182972159896e-22,1.3216941015531808e-18,-3.977790396732468e-20,-1.1394607818115982e-21,0.0006613756413571537,-8.567689599992775e-21,6.938381284571993e-22,0.0015873016091063619,-1.449238320973651e-18,-1.0095546022741519e-18,-0.0007936508045531809,-0.0006349206087179482,3.021015074493331e-19,5.194593106585192e-34,2.0328790734103208e-20,-4.077072103519292e-20,5.2867765096103e-19,-1.3552527156068805e-20,-8.278234546736036e-21,-8.567689599992775e-21,0.0003174603043589741,-2.0349528410553854e-20,0.0009920635493472219,-2.2297048390109355e-18,-1.796918979439516e-18,5.743555725125797e-20,-0.0014880952658131719,5.176089403893048e-19,8.63659209436151e-34,-3.937194731025581e-21,-1.3990835945493877e-19,9.086647271295545e-19,2.6305267393078475e-22,-8.374596241337062e-21,6.938381284571993e-22,-2.0349528410553854e-20,0.00029761905898340046,6.0,3.0,5.0,7.0,0.06013794243335724,-0.01343537401407957,-0.022363945841789246,-0.015476190485060215,-0.011876417323946953,0.0008503401186317205,0.0020408162381500006,0.0013605442363768816,0.0010204081190750003,0.0023809524718672037,0.0023809524718672037,0.0017857142956927419,0.0011337868636474013,0.0011904762359336019,0.0006613756413571537,-0.01343537401407957,0.010051020421087742,0.0020408162381500006,0.0013605442363768816,0.0010204081190750003,-0.0012755101779475808,-0.0008163265301845968,-0.0005442177061922848,-0.0004081632650922984,4.1573100834277045e-18,7.874888678475535e-19,6.169884354341686e-19,1.872891382799449e-18,6.12553041290871e-19,9.636125774626504e-19,-0.022363945841789246,0.0020408162381500006,0.046173468232154846,0.0023809524718672037,0.0017857142956927419,4.2825985813177425e-18,-0.0020408162381500006,-2.9275948470752404e-19,-1.9319785483153368e-19,-0.014285714365541935,-0.0023809524718672037,-0.0017857142956927419,-2.2657612283218157e-18,-7.523588691239444e-19,-1.1220118745022673e-18,-0.015476190485060215,0.0013605442363768816,0.0023809524718672037,0.01454081665724516,0.0011904762359336019,2.4893680002296004e-18,-4.0519623251669057e-19,-0.0006802721181884408,-1.3109994575640885e-19,-5.721047054983675e-18,-0.0011904762359336019,4.0657581468206416e-20,-0.0022675737272948027,-0.0005952381179668009,5.092524516485644e-20,-0.011876417323946953,0.0010204081190750003,0.0017857142956927419,0.0011904762359336019,0.007397959008812904,1.7076184216646695e-18,-3.03897187312215e-19,9.307083448606304e-22,-0.0003401360590942204,-4.22942120768824e-18,-1.5940612568562183e-33,-0.0005952381179668009,-2.873166434824867e-33,-0.00039682540227659047,-0.0007936508045531809,0.0008503401186317205,-0.0012755101779475808,4.2825985813177425e-18,2.4893680002296004e-18,1.7076184216646695e-18,0.00025510202976875007,-4.336808689942018e-19,-2.574980159653073e-19,-1.3552527156068805e-19,-1.1328806141609079e-18,-2.2657611766230274e-19,-1.699320947090756e-19,-3.2368019393839806e-19,-1.1328805883115137e-19,-1.6174279984964748e-19,0.0020408162381500006,-0.0008163265301845968,-0.0020408162381500006,-4.0519623251669057e-19,-3.03897187312215e-19,-4.336808689942018e-19,0.0008163265301845968,7.051279159723263e-20,5.2884593697924476e-20,1.5070930907744114e-18,2.2891424706126044e-19,1.7168569175829387e-19,7.423411670158349e-34,2.6147650421942884e-34,3.701396611869219e-34,0.0013605442363768816,-0.0005442177061922848,-2.9275948470752404e-19,-0.0006802721181884408,9.307083448606304e-22,-2.574980159653073e-19,7.051279159723263e-20,0.0002721088530961424,3.525639579861632e-20,9.728046864294659e-34,5.823874962604696e-20,2.108395136638664e-34,-1.2724528410191175e-19,-4.4535846850729697e-20,1.7077581928746193e-34,0.0010204081190750003,-0.0004081632650922984,-1.9319785483153368e-19,-1.3109994575640885e-19,-0.0003401360590942204,-1.3552527156068805e-19,5.2884593697924476e-20,3.525639579861632e-20,0.0001360544265480712,5.296307347064899e-34,1.4738391792470516e-34,2.0328790734103208e-20,1.7377826603997725e-34,1.4319651548093642e-20,-5.190245566101127e-20,0.0023809524718672037,4.1573100834277045e-18,-0.014285714365541935,-5.721047054983675e-18,-4.22942120768824e-18,-1.1328806141609079e-18,1.5070930907744114e-18,9.728046864294659e-34,5.296307347064899e-34,0.0071428571827709675,1.349707572730943e-33,9.14816723583937e-34,1.1328806141609079e-18,3.965082252960754e-19,5.727341175662168e-19,0.0023809524718672037,7.874888678475535e-19,-0.0023809524718672037,-0.0011904762359336019,-1.5940612568562183e-33,-2.2657611766230274e-19,2.2891424706126044e-19,5.823874962604696e-20,1.4738391792470516e-34,1.349707572730943e-33,0.0011904762359336019,1.8720738212259733e-34,2.3764847608541777e-34,8.317696433400882e-35,1.4534001564277589e-34,0.0017857142956927419,6.169884354341686e-19,-0.0017857142956927419,4.0657581468206416e-20,-0.0005952381179668009,-1.699320947090756e-19,1.7168569175829387e-19,2.108395136638664e-34,2.0328790734103208e-20,9.14816723583937e-34,1.8720738212259733e-34,0.0005952381179668009,2.1561431661560882e-34,-1.3552527156068805e-20,-7.818765604824806e-21,0.0011337868636474013,1.872891382799449e-18,-2.2657612283218157e-18,-0.0022675737272948027,-2.873166434824867e-33,-3.2368019393839806e-19,7.423411670158349e-34,-1.2724528410191175e-19,1.7377826603997725e-34,1.1328806141609079e-18,2.3764847608541777e-34,2.1561431661560882e-34,0.0005668934318237007,2.161548833048688e-34,2.9846612015631474e-34,0.0011904762359336019,6.12553041290871e-19,-7.523588691239444e-19,-0.0005952381179668009,-0.00039682540227659047,-1.1328805883115137e-19,2.6147650421942884e-34,-4.4535846850729697e-20,1.4319651548093642e-20,3.965082252960754e-19,8.317696433400882e-35,-1.3552527156068805e-20,2.161548833048688e-34,0.00019841270113829523,-1.6975080644560723e-20,0.0006613756413571537,9.636125774626504e-19,-1.1220118745022673e-18,5.092524516485644e-20,-0.0007936508045531809,-1.6174279984964748e-19,3.701396611869219e-34,1.7077581928746193e-34,-5.190245566101127e-20,5.727341175662168e-19,1.4534001564277589e-34,-7.818765604824806e-21,2.9846612015631474e-34,-1.6975080644560723e-20,0.00013227513409219682,6.0,3.0,5.0,8.0,0.05373677238821983,-0.01185515895485878,-0.01974206417798996,-0.013657407835125923,-0.009391534142196178,0.0007440476329065859,0.0017857142956927419,0.0011904762359336019,0.0007936508045531809,0.0020833334419876337,0.0020833334419876337,0.0013888889225199819,0.0009920635493472219,0.0009259259095415473,0.00046296295477077365,-0.01185515895485878,0.008834325708448887,0.0017857142956927419,0.0011904762359336019,0.0007936508045531809,-0.0011160714784637094,-0.0007142857066355646,-0.0004761904710903764,-0.0003174603043589741,-9.912705813347644e-18,-1.9825412040285595e-18,-1.333552562814741e-18,-2.8322016904986345e-18,-8.69931271163723e-19,-1.1739542674772284e-18,-0.01974206417798996,0.0017857142956927419,0.04057539626955986,0.0020833334419876337,0.0013888889225199819,-6.4083282648968344e-18,-0.0017857142956927419,-5.550800404649985e-33,-1.1858461261560205e-20,-0.012500000186264515,-0.0020833334419876337,-0.0013888889225199819,-1.9825412040285595e-18,-6.049321229098434e-19,-7.907896286843698e-19,-0.013657407835125923,0.0011904762359336019,0.0020833334419876337,0.012781084515154362,0.0009259259095415473,-3.7624223308010146e-18,-4.8884332151906274e-33,-0.0005952381179668009,1.1198129602466372e-20,-5.044465839884196e-18,-0.0010416667209938169,1.1858461261560205e-20,-0.0019841270986944437,-0.00046296295477077365,4.217013614822218e-20,-0.009391534142196178,0.0007936508045531809,0.0013888889225199819,0.0009259259095415473,0.004998110234737396,-2.527043181999247e-18,-3.2833320459992724e-33,-2.1888878469951893e-33,-0.00022675737272948027,-3.3152493188354604e-18,-4.488930439804134e-33,-0.00039682540227659047,-6.9385669947117e-33,-0.00026455026818439364,-0.00046296295477077365,0.0007440476329065859,-0.0011160714784637094,-6.4083282648968344e-18,-3.7624223308010146e-18,-2.527043181999247e-18,0.00022321428696159273,2.9001743267569904e-19,1.933449637335974e-19,1.473104497898549e-19,1.9825412040285595e-18,3.965082252960754e-19,2.64338825480515e-19,5.664403070804539e-19,1.762258793454443e-19,2.202823588753282e-19,0.0017857142956927419,-0.0007142857066355646,-0.0017857142956927419,-4.8884332151906274e-33,-3.2833320459992724e-33,2.9001743267569904e-19,0.0007142857066355646,2.512088824892327e-34,1.9139725036099846e-34,2.5758723422293945e-33,5.151744500787797e-34,3.4344964869176914e-34,7.35963513231899e-34,2.2896644011413744e-34,2.8620803292351627e-34,0.0011904762359336019,-0.0004761904710903764,-5.550800404649985e-33,-0.0005952381179668009,-2.1888878469951893e-33,1.933449637335974e-19,2.512088824892327e-34,0.0002380952355451882,1.275981669073323e-34,1.7172482893765938e-33,3.4344964869176914e-34,2.2896644011413744e-34,4.906423421545993e-34,1.5264428958294595e-34,1.9080535910882319e-34,0.0007936508045531809,-0.0003174603043589741,-1.1858461261560205e-20,1.1198129602466372e-20,-0.00022675737272948027,1.473104497898549e-19,1.9139725036099846e-34,1.275981669073323e-34,9.070294618140906e-05,1.396299209680746e-33,2.616759249993359e-34,3.3881317890172014e-21,3.7382274671921217e-34,-3.199465543005137e-21,2.072644327330387e-20,0.0020833334419876337,-9.912705813347644e-18,-0.012500000186264515,-5.044465839884196e-18,-3.3152493188354604e-18,1.9825412040285595e-18,2.5758723422293945e-33,1.7172482893765938e-33,1.396299209680746e-33,0.0062500000931322575,3.521700627168939e-33,2.4074124304840448e-33,9.912706020142797e-19,3.083952920857018e-19,3.854941086447787e-19,0.0020833334419876337,-1.9825412040285595e-18,-0.0020833334419876337,-0.0010416667209938169,-4.488930439804134e-33,3.965082252960754e-19,5.151744500787797e-34,3.4344964869176914e-34,2.616759249993359e-34,3.521700627168939e-33,0.0010416667209938169,4.69560080561342e-34,1.0062001135943425e-33,3.130400460546033e-34,3.913000747874097e-34,0.0013888889225199819,-1.333552562814741e-18,-0.0013888889225199819,1.1858461261560205e-20,-0.00039682540227659047,2.64338825480515e-19,3.4344964869176914e-34,2.2896644011413744e-34,3.3881317890172014e-21,2.4074124304840448e-33,4.69560080561342e-34,0.00039682540227659047,6.708000757295616e-34,-3.3881317890172014e-21,5.65754097754443e-21,0.0009920635493472219,-2.8322016904986345e-18,-1.9825412040285595e-18,-0.0019841270986944437,-6.9385669947117e-33,5.664403070804539e-19,7.35963513231899e-34,4.906423421545993e-34,3.7382274671921217e-34,9.912706020142797e-19,1.0062001135943425e-33,6.708000757295616e-34,0.0004960317746736109,4.9611256940099815e-34,6.201407232306847e-34,0.0009259259095415473,-8.69931271163723e-19,-6.049321229098434e-19,-0.00046296295477077365,-0.00026455026818439364,1.762258793454443e-19,2.2896644011413744e-34,1.5264428958294595e-34,-3.199465543005137e-21,3.083952920857018e-19,3.130400460546033e-34,-3.3881317890172014e-21,4.9611256940099815e-34,0.00013227513409219682,-1.2048611020457966e-20,0.00046296295477077365,-1.1739542674772284e-18,-7.907896286843698e-19,4.217013614822218e-20,-0.00046296295477077365,2.202823588753282e-19,2.8620803292351627e-34,1.9080535910882319e-34,2.072644327330387e-20,3.854941086447787e-19,3.913000747874097e-34,5.65754097754443e-21,6.201407232306847e-34,-1.2048611020457966e-20,6.613756704609841e-05,6.0,3.0,6.0,3.0,0.10048186033964157,-0.02451813966035843,-0.0406746044754982,-0.02451813966035843,-0.0406746044754982,0.0016534391324967146,0.003968254197388887,0.0022675737272948027,0.003968254197388887,0.004629629664123058,0.003968254197388887,0.0069444444961845875,0.0016534391324967146,0.003968254197388887,0.004629629664123058,-0.02451813966035843,0.018901171162724495,0.003968254197388887,0.0022675737272948027,0.003968254197388887,-0.0024801588151603937,-0.0015873016091063619,-0.0009070294909179211,-0.0015873016091063619,1.2313079726219349e-17,2.3846773335678984e-18,4.0836124267522925e-18,2.1141942363467336e-18,2.3310346708438345e-18,1.2313079726219349e-17,-0.0406746044754982,0.003968254197388887,0.08697090297937393,0.003968254197388887,0.0069444444961845875,7.697835424647081e-18,-0.003968254197388887,4.1235542901954874e-19,5.817876093706097e-19,-0.02777777798473835,-0.003968254197388887,-0.0069444444961845875,6.055169292631607e-18,5.202073111487293e-18,3.0839529932353215e-17,-0.02451813966035843,0.0022675737272948027,0.003968254197388887,0.018901171162724495,0.003968254197388887,3.644152460408489e-18,2.981555974335137e-19,-0.0009070294909179211,4.2634543132208152e-19,2.2800446109081057e-17,-0.0015873016091063619,-1.40847218836748e-32,-0.0024801588151603937,-0.0015873016091063619,1.2313079726219349e-17,-0.0406746044754982,0.003968254197388887,0.0069444444961845875,0.003968254197388887,0.08697090297937393,7.589415207398531e-18,5.760359123787988e-19,7.792703114739563e-19,-0.003968254197388887,4.293058114727353e-17,-7.895157834657352e-20,-0.0069444444961845875,6.396792817664476e-18,-0.003968254197388887,-0.02777777798473835,0.0016534391324967146,-0.0024801588151603937,7.697835424647081e-18,3.644152460408489e-18,7.589415207398531e-18,0.0004960317746736109,-7.047314121155779e-19,-2.710505431213761e-19,-7.589415207398531e-19,-2.2028235370544935e-18,-3.7224820700202565e-19,-6.608470507765904e-19,-4.328265723671935e-19,-3.794416798015165e-19,-2.2028235370544935e-18,0.003968254197388887,-0.0015873016091063619,-0.003968254197388887,2.981555974335137e-19,5.760359123787988e-19,-7.047314121155779e-19,0.0015873016091063619,-4.0657581468206416e-20,-8.131516293641283e-20,-1.2989622477420345e-18,-2.194953740706664e-19,-3.896886639828527e-19,2.986631729057173e-21,6.776263578034403e-21,4.622231866529366e-33,0.0022675737272948027,-0.0009070294909179211,4.1235542901954874e-19,-0.0009070294909179211,7.792703114739563e-19,-2.710505431213761e-19,-4.0657581468206416e-20,0.00036281178472563624,-1.6263032587282567e-19,1.4444474582904269e-33,-1.2428459789443132e-19,5.055566104016494e-34,1.564151524752179e-20,-1.4907779871675686e-19,1.5407439555097887e-33,0.003968254197388887,-0.0015873016091063619,5.817876093706097e-19,4.2634543132208152e-19,-0.003968254197388887,-7.589415207398531e-19,-8.131516293641283e-20,-1.6263032587282567e-19,0.0015873016091063619,5.0320271969832624e-33,4.4755778342853635e-21,-3.896886639828527e-19,7.903281006766564e-21,-6.713366832207402e-20,-1.2989622477420345e-18,0.004629629664123058,1.2313079726219349e-17,-0.02777777798473835,2.2800446109081057e-17,4.293058114727353e-17,-2.2028235370544935e-18,-1.2989622477420345e-18,1.4444474582904269e-33,5.0320271969832624e-33,0.013888888992369175,-5.012647096851425e-18,-5.482582878503519e-18,-3.028882285901746e-18,-2.6433882031063616e-18,-1.5419764966176608e-17,0.003968254197388887,2.3846773335678984e-18,-0.003968254197388887,-0.0015873016091063619,-7.895157834657352e-20,-3.7224820700202565e-19,-2.194953740706664e-19,-1.2428459789443132e-19,4.4755778342853635e-21,-5.012647096851425e-18,0.0015873016091063619,2.4807120337684994e-33,-1.9484822959538686e-21,2.710505431213761e-20,7.318533788671496e-33,0.0069444444961845875,4.0836124267522925e-18,-0.0069444444961845875,-1.40847218836748e-32,-0.0069444444961845875,-6.608470507765904e-19,-3.896886639828527e-19,5.055566104016494e-34,-3.896886639828527e-19,-5.482582878503519e-18,2.4807120337684994e-33,0.0069444444961845875,1.7601433639350453e-33,1.544506639458374e-33,9.109798365544562e-33,0.0016534391324967146,2.1141942363467336e-18,6.055169292631607e-18,-0.0024801588151603937,6.396792817664476e-18,-4.328265723671935e-19,2.986631729057173e-21,1.564151524752179e-20,7.903281006766564e-21,-3.028882285901746e-18,-1.9484822959538686e-21,1.7601433639350453e-33,0.0004960317746736109,-7.494680796782247e-19,-2.2028235370544935e-18,0.003968254197388887,2.3310346708438345e-18,5.202073111487293e-18,-0.0015873016091063619,-0.003968254197388887,-3.794416798015165e-19,6.776263578034403e-21,-1.4907779871675686e-19,-6.713366832207402e-20,-2.6433882031063616e-18,2.710505431213761e-20,1.544506639458374e-33,-7.494680796782247e-19,0.0015873016091063619,-1.2989622477420345e-18,0.004629629664123058,1.2313079726219349e-17,3.0839529932353215e-17,1.2313079726219349e-17,-0.02777777798473835,-2.2028235370544935e-18,4.622231866529366e-33,1.5407439555097887e-33,-1.2989622477420345e-18,-1.5419764966176608e-17,7.318533788671496e-33,9.109798365544562e-33,-2.2028235370544935e-18,-1.2989622477420345e-18,0.013888888992369175,6.0,3.0,6.0,4.0,0.08123110234737396,-0.01898384280502796,-0.03154762089252472,-0.01898384280502796,-0.02579365111887455,0.0012400794075801969,0.0029761905316263437,0.001700680237263441,0.0023809524718672037,0.0034722222480922937,0.0029761905316263437,0.004166666883975267,0.0012400794075801969,0.0023809524718672037,0.002314814832061529,-0.01898384280502796,0.01441397424787283,0.0029761905316263437,0.001700680237263441,0.0023809524718672037,-0.0018601190531626344,-0.0011904762359336019,-0.0006802721181884408,-0.0009523809421807528,9.234809794664512e-18,1.082188194489091e-18,2.49693008538956e-18,1.6263032587282567e-18,1.111307226797642e-18,3.3979758586920418e-18,-0.03154762089252472,0.0029761905316263437,0.06626984477043152,0.0029761905316263437,0.004166666883975267,5.7462715141731735e-18,-0.0029761905316263437,-8.000472790036984e-20,3.449818007716519e-19,-0.02083333395421505,-0.0029761905316263437,-0.004166666883975267,4.4584666921235606e-18,3.1678306376323317e-18,1.079383514545138e-17,-0.01898384280502796,0.001700680237263441,0.0029761905316263437,0.01441397424787283,0.0023809524718672037,2.7957269545929556e-18,-1.3552527156068805e-19,-0.0006802721181884408,-2.6421805711108224e-19,1.6556971217953285e-17,-0.0011904762359336019,-8.041048452668538e-33,-0.0018601190531626344,-0.0009523809421807528,3.3979758586920418e-18,-0.02579365111887455,0.0023809524718672037,0.004166666883975267,0.0023809524718672037,0.033399470150470734,4.391018798566293e-18,2.9734066943378413e-19,1.6940658945086007e-19,-0.0015873016091063619,2.3445383943437627e-17,-3.3566833757140226e-21,-0.0027777778450399637,3.415236843329339e-18,-0.0015873016091063619,-0.0069444444961845875,0.0012400794075801969,-0.0018601190531626344,5.7462715141731735e-18,2.7957269545929556e-18,4.391018798566293e-18,0.00037202381645329297,-4.607859233063394e-19,-2.168404344971009e-19,-4.336808689942018e-19,-1.6521176010920818e-18,-2.7619775203116975e-19,-3.965082252960754e-19,-3.471390102610078e-19,-2.268702837676419e-19,-7.709882172895574e-19,0.0029761905316263437,-0.0011904762359336019,-0.0029761905316263437,-1.3552527156068805e-19,2.9734066943378413e-19,-4.607859233063394e-19,0.0011904762359336019,-2.0328790734103208e-20,-2.710505431213761e-20,-9.742216858065258e-19,1.629636021115021e-19,-2.338131983897116e-19,3.840764777868148e-21,1.6940658945086007e-21,1.5407439555097887e-33,0.001700680237263441,-0.0006802721181884408,-8.000472790036984e-20,-0.0006802721181884408,1.6940658945086007e-19,-2.168404344971009e-19,-2.0328790734103208e-20,0.0002721088530961424,1.3552527156068805e-20,1.2518544638517033e-33,5.233068318672085e-20,2.407412430484045e-34,4.561245472971014e-20,-8.131516293641283e-20,2.8888949165808538e-34,0.0023809524718672037,-0.0009523809421807528,3.449818007716519e-19,-2.6421805711108224e-19,-0.0015873016091063619,-4.336808689942018e-19,-2.710505431213761e-20,1.3552527156068805e-20,0.0006349206087179482,1.4021359064745633e-33,1.3426733704804482e-21,-1.8705055871176929e-19,7.795848097433755e-22,1.4984234624730314e-19,3.046435368692851e-19,0.0034722222480922937,9.234809794664512e-18,-0.02083333395421505,1.6556971217953285e-17,2.3445383943437627e-17,-1.6521176010920818e-18,-9.742216858065258e-19,1.2518544638517033e-33,1.4021359064745633e-33,0.010416666977107525,-2.8196140695271088e-18,-3.2895496443840503e-18,-2.2716617144263096e-18,-1.5860329011843016e-18,-5.39691757272569e-18,0.0029761905316263437,1.082188194489091e-18,-0.0029761905316263437,-0.0011904762359336019,-3.3566833757140226e-21,-2.7619775203116975e-19,1.629636021115021e-19,5.233068318672085e-20,1.3426733704804482e-21,-2.8196140695271088e-18,0.0011904762359336019,1.131709298470569e-33,3.0101994294902586e-20,-0.0,2.0222264416065976e-33,0.004166666883975267,2.49693008538956e-18,-0.004166666883975267,-8.041048452668538e-33,-0.0027777778450399637,-3.965082252960754e-19,-2.338131983897116e-19,2.407412430484045e-34,-1.8705055871176929e-19,-3.2895496443840503e-18,1.131709298470569e-33,0.0027777778450399637,1.0558015670952274e-33,6.87775086592649e-34,2.3717020141320176e-33,0.0012400794075801969,1.6263032587282567e-18,4.4584666921235606e-18,-0.0018601190531626344,3.415236843329339e-18,-3.471390102610078e-19,3.840764777868148e-21,4.561245472971014e-20,7.795848097433755e-22,-2.2716617144263096e-18,3.0101994294902586e-20,1.0558015670952274e-33,0.00037202381645329297,-4.504300356274818e-19,-7.709882172895574e-19,0.0023809524718672037,1.111307226797642e-18,3.1678306376323317e-18,-0.0009523809421807528,-0.0015873016091063619,-2.268702837676419e-19,1.6940658945086007e-21,-8.131516293641283e-20,1.4984234624730314e-19,-1.5860329011843016e-18,-0.0,6.87775086592649e-34,-4.504300356274818e-19,0.0006349206087179482,3.046435368692851e-19,0.002314814832061529,3.3979758586920418e-18,1.079383514545138e-17,3.3979758586920418e-18,-0.0069444444961845875,-7.709882172895574e-19,1.5407439555097887e-33,2.8888949165808538e-34,3.046435368692851e-19,-5.39691757272569e-18,2.0222264416065976e-33,2.3717020141320176e-33,-7.709882172895574e-19,3.046435368692851e-19,0.002314814832061529,6.0,3.0,6.0,5.0,0.06829176098108292,-0.015504535287618637,-0.02579365111887455,-0.015504535287618637,-0.01785714365541935,0.0009920635493472219,0.0023809524718672037,0.0013605442363768816,0.0015873016091063619,0.0027777778450399637,0.0023809524718672037,0.0027777778450399637,0.0009920635493472219,0.0015873016091063619,0.0013227512827143073,-0.015504535287618637,0.01165816280990839,0.0023809524718672037,0.0013605442363768816,0.0015873016091063619,-0.0014880952658131719,-0.0009523809421807528,-0.0005442177061922848,-0.0006349206087179482,-1.2971142435355297e-17,-2.0170058910457345e-18,-2.625323405708816e-18,-2.222614453595284e-18,-1.5509980799299244e-18,-3.666057443799812e-18,-0.02579365111887455,0.0023809524718672037,0.0535714291036129,0.0023809524718672037,0.0027777778450399637,-8.944667923005412e-18,-0.0023809524718672037,-6.534661569448709e-20,-1.8869994392850295e-19,-0.01666666753590107,-0.0023809524718672037,-0.0027777778450399637,-1.792123606633393e-18,-1.09936232516207e-18,-2.5428065561375167e-18,-0.015504535287618637,0.0013605442363768816,0.0023809524718672037,0.01165816280990839,0.0015873016091063619,-4.182361661869179e-18,-2.3297763287993368e-20,-0.0005442177061922848,-1.75401555090944e-19,-5.6006786273771025e-18,-0.0009523809421807528,-2.710505431213761e-20,-0.0014880952658131719,-0.0006349206087179482,-3.709067113339813e-18,-0.01785714365541935,0.0015873016091063619,0.0027777778450399637,0.0015873016091063619,0.01686508022248745,-5.312590645178972e-18,-2.291187933171083e-19,-2.0356969804892563e-20,-0.0007936508045531809,-6.608470404368327e-18,1.715364502812134e-20,-0.0013888889225199819,-3.848917712323541e-18,-0.0007936508045531809,-0.0026455025654286146,0.0009920635493472219,-0.0014880952658131719,-8.944667923005412e-18,-4.182361661869179e-18,-5.312590645178972e-18,0.00029761905898340046,5.692061405548898e-19,2.439454888092385e-19,3.7947076036992655e-19,2.6433882031063616e-18,4.531522353246055e-19,5.2867765096103e-19,5.004089086233951e-19,3.021015074493331e-19,7.562703477467662e-19,0.0023809524718672037,-0.0009523809421807528,-0.0023809524718672037,-2.3297763287993368e-20,-2.291187933171083e-19,5.692061405548898e-19,0.0009523809421807528,6.742077108046381e-20,8.725067496996951e-20,-2.4579829583317485e-19,-1.4525416925992756e-19,1.0992107507771682e-20,8.726870060504662e-34,5.393945928225113e-34,1.3000027124613842e-33,0.0013605442363768816,-0.0005442177061922848,-6.534661569448709e-20,-0.0005442177061922848,-2.0356969804892563e-20,2.439454888092385e-19,6.742077108046381e-20,0.00021768707665614784,3.4935491726211224e-20,1.5888922041194696e-33,-4.0657581468206416e-20,-7.806793195394898e-22,-1.0821649817331512e-19,-2.0328790734103208e-20,-3.53542688749811e-21,0.0015873016091063619,-0.0006349206087179482,-1.8869994392850295e-19,-1.75401555090944e-19,-0.0007936508045531809,3.7947076036992655e-19,8.725067496996951e-20,3.4935491726211224e-20,0.0003174603043589741,3.322229154067982e-33,-9.28673916762276e-22,-1.3552527156068805e-20,-4.27708568829916e-22,4.565626299043277e-20,-5.3444856697738566e-20,0.0027777778450399637,-1.2971142435355297e-17,-0.01666666753590107,-5.6006786273771025e-18,-6.608470404368327e-18,2.6433882031063616e-18,-2.4579829583317485e-19,1.5888922041194696e-33,3.322229154067982e-33,0.008333333767950535,3.563505614387995e-33,4.237703787146395e-33,9.086647271295545e-19,5.2867765096103e-19,1.3216941015531808e-18,0.0023809524718672037,-2.0170058910457345e-18,-0.0023809524718672037,-0.0009523809421807528,1.715364502812134e-20,4.531522353246055e-19,-1.4525416925992756e-19,-4.0657581468206416e-20,-9.28673916762276e-22,3.563505614387995e-33,0.0009523809421807528,-1.3661888470594307e-21,-8.374596241337062e-21,-0.0,-3.0955796552247896e-21,0.0027777778450399637,-2.625323405708816e-18,-0.0027777778450399637,-2.710505431213761e-20,-0.0013888889225199819,5.2867765096103e-19,1.0992107507771682e-20,-7.806793195394898e-22,-1.3552527156068805e-20,4.237703787146395e-33,-1.3661888470594307e-21,0.0013888889225199819,-2.1346700293541497e-21,2.10035423161606e-20,-4.6421298428293486e-20,0.0009920635493472219,-2.222614453595284e-18,-1.792123606633393e-18,-0.0014880952658131719,-3.848917712323541e-18,5.004089086233951e-19,8.726870060504662e-34,-1.0821649817331512e-19,-4.27708568829916e-22,9.086647271295545e-19,-8.374596241337062e-21,-2.1346700293541497e-21,0.00029761905898340046,3.4817841439946895e-19,7.477150254662834e-19,0.0015873016091063619,-1.5509980799299244e-18,-1.09936232516207e-18,-0.0006349206087179482,-0.0007936508045531809,3.021015074493331e-19,5.393945928225113e-34,-2.0328790734103208e-20,4.565626299043277e-20,5.2867765096103e-19,-0.0,2.10035423161606e-20,3.4817841439946895e-19,0.0003174603043589741,-7.178672405757246e-21,0.0013227512827143073,-3.666057443799812e-18,-2.5428065561375167e-18,-3.709067113339813e-18,-0.0026455025654286146,7.562703477467662e-19,1.3000027124613842e-33,-3.53542688749811e-21,-5.3444856697738566e-20,1.3216941015531808e-18,-3.0955796552247896e-21,-4.6421298428293486e-20,7.477150254662834e-19,-7.178672405757246e-21,0.0006613756413571537,6.0,3.0,6.0,6.0,0.05895691737532616,-0.013109410181641579,-0.02182539738714695,-0.013109410181641579,-0.013109410181641579,0.0008267195662483573,0.0019841270986944437,0.0011337868636474013,0.0011337868636474013,0.002314814832061529,0.0019841270986944437,0.0019841270986944437,0.0008267195662483573,0.0011337868636474013,0.0008267195662483573,-0.013109410181641579,0.009790722280740738,0.0019841270986944437,0.0011337868636474013,0.0011337868636474013,-0.0012400794075801969,-0.0007936508045531809,-0.00045351474545896053,-0.00045351474545896053,6.156539863109674e-18,1.1726026543563168e-18,1.1901308183314686e-18,1.0299920638612292e-18,2.644876404425921e-19,9.465461870644563e-19,-0.02182539738714695,0.0019841270986944437,0.04497354477643967,0.0019841270986944437,0.0019841270986944437,4.065758146820642e-18,-0.0019841270986944437,1.8401688673992813e-19,2.0037000188085713e-19,-0.013888888992369175,-0.0019841270986944437,-0.0019841270986944437,2.972060768083641e-18,1.3404425637270014e-18,3.0304125700349692e-18,-0.013109410181641579,0.0011337868636474013,0.0019841270986944437,0.009790722280740738,0.0011337868636474013,1.9310731991348975e-18,1.7757314976814004e-19,-0.00045351474545896053,-1.0388937421738245e-19,1.1966663930307654e-17,-0.0007936508045531809,-1.7618285302889447e-19,-0.0012400794075801969,-0.00045351474545896053,1.0317486852895621e-18,-0.013109410181641579,0.0011337868636474013,0.0019841270986944437,0.0011337868636474013,0.009790722280740738,1.9244588561617704e-18,1.7757314976814004e-19,5.619175549096525e-20,-0.00045351474545896053,1.1966663930307654e-17,-1.0192716609508742e-20,-0.0007936508045531809,1.4094628242311558e-18,-0.00045351474545896053,-0.0012400794075801969,0.0008267195662483573,-0.0012400794075801969,4.065758146820642e-18,1.9310731991348975e-18,1.9244588561617704e-18,0.00024801588733680546,-4.0657581468206416e-19,-1.4907779871675686e-19,-1.6263032587282567e-19,-1.1014117685272467e-18,-1.8881343569348464e-19,-1.8881343569348464e-19,-2.1691586302920807e-19,-1.0789339367123366e-19,-2.062679935188163e-19,0.0019841270986944437,-0.0007936508045531809,-0.0019841270986944437,1.7757314976814004e-19,1.7757314976814004e-19,-4.0657581468206416e-19,0.0007936508045531809,-2.64934091791172e-20,-2.64934091791172e-20,-6.494811238710172e-19,-1.1133962197358564e-19,-1.1133962197358564e-19,4.55903729022916e-34,2.18803258301947e-34,4.513898307157584e-34,0.0011337868636474013,-0.00045351474545896053,1.8401688673992813e-19,-0.00045351474545896053,5.619175549096525e-20,-1.4907779871675686e-19,-2.64934091791172e-20,0.00018140589236281812,-4.6153337146266054e-20,5.7777898331617076e-34,-4.743384504624082e-20,3.205002261087183e-22,2.1373285587623268e-20,2.371692252312041e-20,-7.76198236188149e-23,0.0011337868636474013,-0.00045351474545896053,2.0037000188085713e-19,-1.0388937421738245e-19,-0.00045351474545896053,-1.6263032587282567e-19,-2.64934091791172e-20,-4.6153337146266054e-20,0.00018140589236281812,4.81482486096809e-34,5.5551620286632205e-22,-5.421010862427522e-20,5.583866973064658e-22,8.627480864231008e-20,3.227467787782688e-20,0.002314814832061529,6.156539863109674e-18,-0.013888888992369175,1.1966663930307654e-17,1.1966663930307654e-17,-1.1014117685272467e-18,-6.494811238710172e-19,5.7777898331617076e-34,4.81482486096809e-34,0.0069444444961845875,-2.5063235484257123e-18,-2.5063235484257123e-18,-1.514441142950873e-18,-7.552537427739386e-19,-1.514441142950873e-18,0.0019841270986944437,1.1726026543563168e-18,-0.0019841270986944437,-0.0007936508045531809,-1.0192716609508742e-20,-1.8881343569348464e-19,-1.1133962197358564e-19,-4.743384504624082e-20,5.5551620286632205e-22,-2.5063235484257123e-18,0.0007936508045531809,5.608754083120315e-22,2.1852200544071596e-20,-0.0,1.5189896645442537e-21,0.0019841270986944437,1.1901308183314686e-18,-0.0019841270986944437,-1.7618285302889447e-19,-0.0007936508045531809,-1.8881343569348464e-19,-1.1133962197358564e-19,3.205002261087183e-22,-5.421010862427522e-20,-2.5063235484257123e-18,5.608754083120315e-22,0.0007936508045531809,8.7636786966376e-22,6.80259894078656e-20,-2.1311098811562256e-21,0.0008267195662483573,1.0299920638612292e-18,2.972060768083641e-18,-0.0012400794075801969,1.4094628242311558e-18,-2.1691586302920807e-19,4.55903729022916e-34,2.1373285587623268e-20,5.583866973064658e-22,-1.514441142950873e-18,2.1852200544071596e-20,8.7636786966376e-22,0.00024801588733680546,-1.3289884386886148e-19,-2.1811504227286268e-19,0.0011337868636474013,2.644876404425921e-19,1.3404425637270014e-18,-0.00045351474545896053,-0.00045351474545896053,-1.0789339367123366e-19,2.18803258301947e-34,2.371692252312041e-20,8.627480864231008e-20,-7.552537427739386e-19,-0.0,6.80259894078656e-20,-1.3289884386886148e-19,0.00018140589236281812,2.3302126988842012e-20,0.0008267195662483573,9.465461870644563e-19,3.0304125700349692e-18,1.0317486852895621e-18,-0.0012400794075801969,-2.062679935188163e-19,4.513898307157584e-34,-7.76198236188149e-23,3.227467787782688e-20,-1.514441142950873e-18,1.5189896645442537e-21,-2.1311098811562256e-21,-2.1811504227286268e-19,2.3302126988842012e-20,0.00024801588733680546,6.0,3.0,6.0,7.0,0.051889870315790176,-0.011358114890754223,-0.018920067697763443,-0.011358114890754223,-0.010038738138973713,0.0007086168043315411,0.001700680237263441,0.0009718172950670123,0.0008503401186317205,0.0019841270986944437,0.001700680237263441,0.0014880952658131719,0.0007086168043315411,0.0008503401186317205,0.0005511463969014585,-0.011358114890754223,0.008440637961030006,0.001700680237263441,0.0009718172950670123,0.0008503401186317205,-0.0010629252064973116,-0.0006802721181884408,-0.00038872691220603883,-0.0003401360590942204,5.27703428654838e-18,7.906772872174274e-19,5.765613271641348e-19,7.047314121155779e-19,3.346818770311123e-19,7.903268728304346e-19,-0.018920067697763443,0.001700680237263441,0.038761336356401443,0.001700680237263441,0.0014880952658131719,3.415236843329339e-18,-0.001700680237263441,-8.269459000542158e-20,-3.4531042411938275e-20,-0.011904762126505375,-0.001700680237263441,-0.0014880952658131719,2.5892333087879743e-18,1.1066557834181032e-18,1.895210783677661e-18,-0.011358114890754223,0.0009718172950670123,0.001700680237263441,0.008440637961030006,0.0008503401186317205,1.6663461416037596e-18,1.290636468081535e-19,-0.00038872691220603883,-1.5668757600890915e-19,1.0031163867329526e-17,-0.0006802721181884408,-1.3552527156068805e-20,-0.0010629252064973116,-0.0003401360590942204,8.062689696798043e-19,-0.010038738138973713,0.0008503401186317205,0.0014880952658131719,0.0008503401186317205,0.006212207023054361,1.1926223897340549e-18,-4.4901929201746964e-20,4.365898693380947e-20,-0.00028344671591185033,8.486115387352965e-18,-7.342578567252055e-21,-0.0004960317746736109,7.860465750519907e-19,-0.00028344671591185033,-0.0006613756413571537,0.0007086168043315411,-0.0010629252064973116,3.415236843329339e-18,1.6663461416037596e-18,1.1926223897340549e-18,0.00021258502965793014,-2.710505431213761e-19,-1.2197274440461925e-19,1.3552527156068805e-20,-9.440672301662115e-19,-1.6184009696919903e-19,-1.4161007677011348e-19,-1.9242849931367694e-19,-8.092004848459951e-20,-1.3558335514932576e-19,0.001700680237263441,-0.0006802721181884408,-0.001700680237263441,1.290636468081535e-19,-4.4901929201746964e-20,-2.710505431213761e-19,0.0006802721181884408,-1.345187446204016e-20,-1.0016694352303305e-20,-5.566980840185341e-19,-9.543395984525954e-20,6.994366548640201e-20,3.6863502841786936e-34,1.5677506167956942e-34,2.655676837377712e-34,0.0009718172950670123,-0.00038872691220603883,-8.269459000542158e-20,-0.00038872691220603883,4.365898693380947e-20,-1.2197274440461925e-19,-1.345187446204016e-20,0.00015549076488241553,1.0041956480522417e-20,-0.0,4.626138115143226e-20,2.2360781113420853e-22,1.0350727493551977e-19,-2.371692252312041e-20,-1.491566082688385e-21,0.0008503401186317205,-0.0003401360590942204,-3.4531042411938275e-20,-1.5668757600890915e-19,-0.00028344671591185033,1.3552527156068805e-20,-1.0016694352303305e-20,1.0041956480522417e-20,0.00011337868636474013,1.925929944387236e-34,-5.654373719942629e-22,2.0328790734103208e-20,5.413001468042214e-22,4.3070221745779246e-20,-3.633827049165325e-20,0.0019841270986944437,5.27703428654838e-18,-0.011904762126505375,1.0031163867329526e-17,8.486115387352965e-18,-9.440672301662115e-19,-5.566980840185341e-19,-0.0,1.925929944387236e-34,0.0059523810632526875,-1.8413805577497008e-18,-1.3426733664414804e-18,-1.2980923639303584e-18,-5.664403070804539e-19,-9.54556810911573e-19,0.001700680237263441,7.906772872174274e-19,-0.001700680237263441,-0.0006802721181884408,-7.342578567252055e-21,-1.6184009696919903e-19,-9.543395984525954e-20,4.626138115143226e-20,-5.654373719942629e-22,-1.8413805577497008e-18,0.0006802721181884408,3.9131365686309044e-22,2.04690063297634e-21,6.776263578034403e-21,-1.319353884815646e-21,0.0014880952658131719,5.765613271641348e-19,-0.0014880952658131719,-1.3552527156068805e-20,-0.0004960317746736109,-1.4161007677011348e-19,6.994366548640201e-20,2.2360781113420853e-22,2.0328790734103208e-20,-1.3426733664414804e-18,3.9131365686309044e-22,0.0004960317746736109,6.114275841154134e-22,3.094726827166486e-21,5.733761551244e-21,0.0007086168043315411,7.047314121155779e-19,2.5892333087879743e-18,-0.0010629252064973116,7.860465750519907e-19,-1.9242849931367694e-19,3.6863502841786936e-34,1.0350727493551977e-19,5.413001468042214e-22,-1.2980923639303584e-18,2.04690063297634e-21,6.114275841154134e-22,0.00021258502965793014,9.67740328272738e-21,-1.3599763046454705e-19,0.0008503401186317205,3.346818770311123e-19,1.1066557834181032e-18,-0.0003401360590942204,-0.00028344671591185033,-8.092004848459951e-20,1.5677506167956942e-34,-2.371692252312041e-20,4.3070221745779246e-20,-5.664403070804539e-19,6.776263578034403e-21,3.094726827166486e-21,9.67740328272738e-21,0.00011337868636474013,-4.04631390942939e-20,0.0005511463969014585,7.903268728304346e-19,1.895210783677661e-18,8.062689696798043e-19,-0.0006613756413571537,-1.3558335514932576e-19,2.655676837377712e-34,-1.491566082688385e-21,-3.633827049165325e-20,-9.54556810911573e-19,-1.319353884815646e-21,5.733761551244e-21,-1.3599763046454705e-19,-4.04631390942939e-20,0.00011022927355952561,6.0,3.0,6.0,8.0,0.046347472816705704,-0.010021022520959377,-0.016699735075235367,-0.010021022520959377,-0.007936508394777775,0.0006200397037900984,0.0014880952658131719,0.0008503401186317205,0.0006613756413571537,0.0017361111240461469,0.0014880952658131719,0.0011574074160307646,0.0006200397037900984,0.0006613756413571537,0.00038580247201025486,-0.010021022520959377,0.007418627385050058,0.0014880952658131719,0.0008503401186317205,0.0006613756413571537,-0.0009300595265813172,-0.0005952381179668009,-0.0003401360590942204,-0.00026455026818439364,4.130293951031416e-18,7.080504226246586e-19,5.388474230020632e-19,8.113077403811711e-19,3.041512610072395e-19,4.2839185030814357e-19,-0.016699735075235367,0.0014880952658131719,0.034060847014188766,0.0014880952658131719,0.0011574074160307646,2.8951393817659567e-18,-0.0014880952658131719,-1.432987214889375e-33,-1.1858461261560205e-20,-0.010416666977107525,-0.0014880952658131719,-0.0011574074160307646,2.2716617144263096e-18,8.57412461279404e-19,1.26517895075445e-18,-0.010021022520959377,0.0008503401186317205,0.0014880952658131719,0.007418627385050058,0.0006613756413571537,1.4033727069712341e-18,-1.5194763239675364e-33,-0.0003401360590942204,-1.0537797135578972e-20,8.630937341818137e-18,-0.0005952381179668009,-2.371692252312041e-20,-0.0009300595265813172,-0.00026455026818439364,4.2995806509922445e-19,-0.007936508394777775,0.0006613756413571537,0.0011574074160307646,0.0006613756413571537,0.004196586087346077,1.1657231999968664e-18,-1.2621655696893302e-33,-5.769899786509294e-34,-0.0001889644772745669,6.382069002761032e-18,-2.6149773658614057e-33,-0.0003306878206785768,8.982374951228641e-19,-0.0001889644772745669,-0.00038580247201025486,0.0006200397037900984,-0.0009300595265813172,2.8951393817659567e-18,1.4033727069712341e-18,1.1657231999968664e-18,0.00018601190822664648,-2.0140100496622206e-19,-9.206902788748504e-20,-1.0229891915694465e-19,-8.260588005460409e-19,-1.4161007677011348e-19,-1.101411794376641e-19,-1.622615454912948e-19,-6.293781405194439e-20,-9.178430973570487e-20,0.0014880952658131719,-0.0005952381179668009,-0.0014880952658131719,-1.5194763239675364e-33,-1.2621655696893302e-33,-2.0140100496622206e-19,0.0005952381179668009,9.96860650264941e-35,1.1076229830036135e-34,8.944001315845809e-34,1.5332573192331229e-34,1.1925335087794412e-34,1.7568573521292681e-34,6.814477357017336e-35,9.937779622476577e-35,0.0008503401186317205,-0.0003401360590942204,-1.432987214889375e-33,-0.0003401360590942204,-5.769899786509294e-34,-9.206902788748504e-20,9.96860650264941e-35,0.0001360544265480712,5.063418957292964e-35,4.088686184621661e-34,7.009176644478191e-35,5.451581770819498e-35,8.031348190633606e-35,3.1151894603314596e-35,4.5429846176922983e-35,0.0006613756413571537,-0.00026455026818439364,-1.1858461261560205e-20,-1.0537797135578972e-20,-0.0001889644772745669,-1.0229891915694465e-19,1.1076229830036135e-34,5.063418957292964e-35,7.558579090982676e-05,3.3703774026776627e-34,7.787973794321612e-35,3.3881317890172014e-21,7.173905991739737e-35,3.010799296993073e-21,8.72277465573653e-21,0.0017361111240461469,4.130293951031416e-18,-0.010416666977107525,8.630937341818137e-18,6.382069002761032e-18,-8.260588005460409e-19,8.944001315845809e-34,4.088686184621661e-34,3.3703774026776627e-34,0.0052083334885537624,-1.4098070347635544e-18,-7.83226095958338e-19,-1.1358308572131548e-18,-4.405647177506564e-19,-6.42490155225237e-19,0.0014880952658131719,7.080504226246586e-19,-0.0014880952658131719,-0.0005952381179668009,-2.6149773658614057e-33,-1.4161007677011348e-19,1.5332573192331229e-34,7.009176644478191e-35,7.787973794321612e-35,-1.4098070347635544e-18,0.0005952381179668009,2.958559716845123e-34,4.309790702704083e-34,1.6716763708172551e-34,2.4378614075901884e-34,0.0011574074160307646,5.388474230020632e-19,-0.0011574074160307646,-2.371692252312041e-20,-0.0003306878206785768,-1.101411794376641e-19,1.1925335087794412e-34,5.451581770819498e-35,3.3881317890172014e-21,-7.83226095958338e-19,2.958559716845123e-34,0.0003306878206785768,2.7083389842945504e-34,6.776263578034403e-21,5.65754097754443e-21,0.0006200397037900984,8.113077403811711e-19,2.2716617144263096e-18,-0.0009300595265813172,8.982374951228641e-19,-1.622615454912948e-19,1.7568573521292681e-34,8.031348190633606e-35,7.173905991739737e-35,-1.1358308572131548e-18,4.309790702704083e-34,2.7083389842945504e-34,0.00018601190822664648,-1.0229891915694465e-19,-9.178430973570487e-20,0.0006613756413571537,3.041512610072395e-19,8.57412461279404e-19,-0.00026455026818439364,-0.0001889644772745669,-6.293781405194439e-20,6.814477357017336e-35,3.1151894603314596e-35,3.010799296993073e-21,-4.405647177506564e-19,1.6716763708172551e-34,6.776263578034403e-21,-1.0229891915694465e-19,7.558579090982676e-05,8.275285292423115e-21,0.00038580247201025486,4.2839185030814357e-19,1.26517895075445e-18,4.2995806509922445e-19,-0.00038580247201025486,-9.178430973570487e-20,9.937779622476577e-35,4.5429846176922983e-35,8.72277465573653e-21,-6.42490155225237e-19,2.4378614075901884e-34,5.65754097754443e-21,-9.178430973570487e-20,8.275285292423115e-21,5.5114636779762805e-05,6.0,3.0,7.0,3.0,0.08865582942962646,-0.021258503198623657,-0.03528911620378494,-0.018801964819431305,-0.03528911620378494,0.0014172336086630821,0.003401360474526882,0.001700680237263441,0.003401360474526882,0.003968254197388887,0.0029761905316263437,0.0059523810632526875,0.001102292793802917,0.0029761905316263437,0.003968254197388887,-0.021258503198623657,0.016298186033964157,0.003401360474526882,0.001700680237263441,0.003401360474526882,-0.002125850412994623,-0.0013605442363768816,-0.0006802721181884408,-0.0013605442363768816,1.055406857309676e-17,1.2219326041616823e-18,3.500239163846207e-18,1.5720931501039814e-18,1.0842021724855044e-18,1.055406857309676e-17,-0.03528911620378494,0.003401360474526882,0.07497165352106094,0.0029761905316263437,0.0059523810632526875,6.613633252161577e-18,-0.003401360474526882,-9.136142818782134e-21,4.623512592180194e-19,-0.02380952425301075,-0.0029761905316263437,-0.0059523810632526875,3.8571394740220116e-18,3.883767245120706e-18,2.643388161747331e-17,-0.018801964819431305,0.001700680237263441,0.0029761905316263437,0.01199924387037754,0.0029761905316263437,2.1721711186854222e-18,-8.131516293641283e-20,-0.0005668934318237007,-2.6357805276930705e-21,1.6122569047464937e-17,-0.0009920635493472219,-8.373607559459672e-33,-0.0013227512827143073,-0.0009920635493472219,-2.7525243475740217e-32,-0.03528911620378494,0.003401360474526882,0.0059523810632526875,0.0029761905316263437,0.07497165352106094,6.613633252161577e-18,4.695441116320508e-19,1.8973538018496328e-19,-0.003401360474526882,3.640952594926889e-17,-8.730924323474739e-20,-0.0059523810632526875,-1.0842021724855044e-19,-0.0029761905316263437,-0.02380952425301075,0.0014172336086630821,-0.002125850412994623,6.613633252161577e-18,2.1721711186854222e-18,6.613633252161577e-18,0.00042517005931586027,-5.421010862427522e-19,2.710505431213761e-20,-5.421010862427522e-19,-1.888134460332423e-18,-2.8488095126447445e-19,-5.664403070804539e-19,-2.779922945207094e-19,-2.8387716759114135e-19,-1.888134460332423e-18,0.003401360474526882,-0.0013605442363768816,-0.003401360474526882,-8.131516293641283e-20,4.695441116320508e-19,-5.421010862427522e-19,0.0013605442363768816,-2.0328790734103208e-20,-5.421010862427522e-20,-1.1133961680370681e-18,1.4082499189592116e-19,-3.3401886592075693e-19,-1.3365918966116929e-21,-0.0,3.659266894335748e-33,0.001700680237263441,-0.0006802721181884408,-9.136142818782134e-21,-0.0005668934318237007,1.8973538018496328e-19,2.710505431213761e-20,-2.0328790734103208e-20,0.00022675737272948027,-1.0842021724855044e-19,7.703719777548943e-34,1.9986039076886485e-20,7.222237291452134e-35,-6.039564246032459e-20,2.710505431213761e-20,-4.81482486096809e-35,0.003401360474526882,-0.0013605442363768816,4.623512592180194e-19,-2.6357805276930705e-21,-0.003401360474526882,-5.421010862427522e-19,-5.421010862427522e-20,-1.0842021724855044e-19,0.0013605442363768816,3.42245657786489e-33,2.397631069202184e-21,-3.3401886592075693e-19,2.6368936672283225e-21,2.541488909120508e-19,-1.1133961680370681e-18,0.003968254197388887,1.055406857309676e-17,-0.02380952425301075,1.6122569047464937e-17,3.640952594926889e-17,-1.888134460332423e-18,-1.1133961680370681e-18,7.703719777548943e-34,3.42245657786489e-33,0.011904762126505375,-2.6853467328829607e-18,-4.028020099324441e-18,-1.909113621823146e-18,-1.9825412040285595e-18,-1.3216940808736655e-17,0.0029761905316263437,1.2219326041616823e-18,-0.0029761905316263437,-0.0009920635493472219,-8.730924323474739e-20,-2.8488095126447445e-19,1.4082499189592116e-19,1.9986039076886485e-20,2.397631069202184e-21,-2.6853467328829607e-18,0.0009920635493472219,1.2191658026652586e-33,-1.185694664862218e-20,2.710505431213761e-20,4.226008720381667e-33,0.0059523810632526875,3.500239163846207e-18,-0.0059523810632526875,-8.373607559459672e-33,-0.0059523810632526875,-5.664403070804539e-19,-3.3401886592075693e-19,7.222237291452134e-35,-3.3401886592075693e-19,-4.028020099324441e-18,1.2191658026652586e-33,0.0059523810632526875,1.0015559925536328e-33,9.684249597821951e-34,7.063065070775227e-33,0.001102292793802917,1.5720931501039814e-18,3.8571394740220116e-18,-0.0013227512827143073,-1.0842021724855044e-19,-2.779922945207094e-19,-1.3365918966116929e-21,-6.039564246032459e-20,2.6368936672283225e-21,-1.909113621823146e-18,-1.185694664862218e-20,1.0015559925536328e-33,0.00022045854711905122,1.2510025129278402e-20,3.3643559328655756e-33,0.0029761905316263437,1.0842021724855044e-18,3.883767245120706e-18,-0.0009920635493472219,-0.0029761905316263437,-2.8387716759114135e-19,-0.0,2.710505431213761e-20,2.541488909120508e-19,-1.9825412040285595e-18,2.710505431213761e-20,9.684249597821951e-34,1.2510025129278402e-20,0.0009920635493472219,3.2166458841351394e-33,0.003968254197388887,1.055406857309676e-17,2.643388161747331e-17,-2.7525243475740217e-32,-0.02380952425301075,-1.888134460332423e-18,3.659266894335748e-33,-4.81482486096809e-35,-1.1133961680370681e-18,-1.3216940808736655e-17,4.226008720381667e-33,7.063065070775227e-33,3.3643559328655756e-33,3.2166458841351394e-33,0.011904762126505375,6.0,3.0,7.0,4.0,0.07158683240413666,-0.01645408198237419,-0.027359694242477417,-0.014547902159392834,-0.022363945841789246,0.0010629252064973116,0.0025510203558951616,0.0012755101779475808,0.0020408162381500006,0.0029761905316263437,0.0022321429569274187,0.0035714285913854837,0.0008267195662483573,0.0017857142956927419,0.0019841270986944437,-0.01645408198237419,0.012427721172571182,0.0025510203558951616,0.0012755101779475808,0.0020408162381500006,-0.0015943878097459674,-0.0010204081190750003,-0.0005102040595375001,-0.0008163265301845968,7.915551016232263e-18,1.008065056786097e-18,1.6982945451975483e-18,1.0028870095490916e-18,8.538092108323347e-19,3.7718617023611634e-18,-0.027359694242477417,0.0025510203558951616,0.05712159723043442,0.0022321429569274187,0.0035714285913854837,4.662069341687669e-18,-0.0025510203558951616,-2.859182616020101e-19,-2.692003985850364e-19,-0.01785714365541935,-0.0022321429569274187,-0.0035714285913854837,2.8282860242739616e-18,2.3138278665366596e-18,9.251858814269842e-18,-0.014547902159392834,0.0012755101779475808,0.0022321429569274187,0.009148242883384228,0.0017857142956927419,2.2042012063647006e-18,2.710505431213761e-20,-0.00042517005931586027,6.582015074577956e-20,1.1885806198249983e-17,-0.0007440476329065859,-5.491126066588507e-33,-0.0009920635493472219,-0.0005952381179668009,-1.0788876700311025e-32,-0.022363945841789246,0.0020408162381500006,0.0035714285913854837,0.0017857142956927419,0.028798185288906097,3.686287386450715e-18,1.2756648867352374e-19,-2.371692252312041e-20,-0.0013605442363768816,1.986317407601956e-17,-6.098637220230962e-20,-0.0023809524718672037,1.0842021724855044e-19,-0.0011904762359336019,-0.0059523810632526875,0.0010629252064973116,-0.0015943878097459674,4.662069341687669e-18,2.2042012063647006e-18,3.686287386450715e-18,0.0003188775444868952,-2.981555974335137e-19,-1.8973538018496328e-19,-2.981555974335137e-19,-1.4161008452493172e-18,-2.1301163516144313e-19,-3.398641894181512e-19,-2.1279216088047808e-19,-1.712108642372943e-19,-6.608470507765904e-19,0.0025510203558951616,-0.0010204081190750003,-0.0025510203558951616,2.710505431213761e-20,1.2756648867352374e-19,-2.981555974335137e-19,0.0010204081190750003,4.0657581468206416e-20,2.710505431213761e-20,-8.350471518771953e-19,-1.2702667577565047e-19,-2.0041132213739357e-19,-6.559121700019718e-22,1.6940658945086007e-21,1.0111132208032988e-33,0.0012755101779475808,-0.0005102040595375001,-2.859182616020101e-19,-0.00042517005931586027,-2.371692252312041e-20,-1.8973538018496328e-19,4.0657581468206416e-20,0.0001700680295471102,-6.776263578034403e-21,4.333342374871281e-34,6.142476500226566e-20,1.8055593228630336e-34,2.2465903935100587e-20,1.3552527156068805e-20,3.851859888774472e-34,0.0020408162381500006,-0.0008163265301845968,-2.692003985850364e-19,6.582015074577956e-20,-0.0013605442363768816,-2.981555974335137e-19,2.710505431213761e-20,-6.776263578034403e-21,0.0005442177061922848,1.9908106203969027e-33,1.4733798869718914e-34,1.3429184186979492e-19,-1.433627392021748e-21,-2.637394135732724e-20,-3.1175093118628214e-19,0.0029761905316263437,7.915551016232263e-18,-0.01785714365541935,1.1885806198249983e-17,1.986317407601956e-17,-1.4161008452493172e-18,-8.350471518771953e-19,4.333342374871281e-34,1.9908106203969027e-33,0.008928571827709675,-1.5105074855478771e-18,-2.4168120595946647e-18,-1.4318352680661478e-18,-1.1895247017376204e-18,-4.625929407134921e-18,0.0022321429569274187,1.008065056786097e-18,-0.0022321429569274187,-0.0007440476329065859,-6.098637220230962e-20,-2.1301163516144313e-19,-1.2702667577565047e-19,6.142476500226566e-20,1.4733798869718914e-34,-1.5105074855478771e-18,0.0007440476329065859,6.39869788788054e-34,1.2341411954668997e-20,2.0328790734103208e-20,1.2251329976991164e-33,0.0035714285913854837,1.6982945451975483e-18,-0.0035714285913854837,-5.491126066588507e-33,-0.0023809524718672037,-3.398641894181512e-19,-2.0041132213739357e-19,1.8055593228630336e-34,1.3429184186979492e-19,-2.4168120595946647e-18,6.39869788788054e-34,0.0023809524718672037,6.100320687443381e-34,4.916331094048998e-34,1.8241940307304362e-33,0.0008267195662483573,1.0028870095490916e-18,2.8282860242739616e-18,-0.0009920635493472219,1.0842021724855044e-19,-2.1279216088047808e-19,-6.559121700019718e-22,2.2465903935100587e-20,-1.433627392021748e-21,-1.4318352680661478e-18,1.2341411954668997e-20,6.100320687443381e-34,0.0001653439103392884,-8.34001702211679e-21,1.1874688730018241e-33,0.0017857142956927419,8.538092108323347e-19,2.3138278665366596e-18,-0.0005952381179668009,-0.0011904762359336019,-1.712108642372943e-19,1.6940658945086007e-21,1.3552527156068805e-20,-2.637394135732724e-20,-1.1895247017376204e-18,2.0328790734103208e-20,4.916331094048998e-34,-8.34001702211679e-21,0.00039682540227659047,9.767365313619741e-34,0.0019841270986944437,3.7718617023611634e-18,9.251858814269842e-18,-1.0788876700311025e-32,-0.0059523810632526875,-6.608470507765904e-19,1.0111132208032988e-33,3.851859888774472e-34,-3.1175093118628214e-19,-4.625929407134921e-18,1.2251329976991164e-33,1.8241940307304362e-33,1.1874688730018241e-33,9.767365313619741e-34,0.0019841270986944437,6.0,3.0,7.0,5.0,0.06013794243335724,-0.01343537401407957,-0.022363945841789246,-0.011876417323946953,-0.015476190485060215,0.0008503401186317205,0.0020408162381500006,0.0010204081190750003,0.0013605442363768816,0.0023809524718672037,0.0017857142956927419,0.0023809524718672037,0.0006613756413571537,0.0011904762359336019,0.0011337868636474013,-0.01343537401407957,0.010051020421087742,0.0020408162381500006,0.0010204081190750003,0.0013605442363768816,-0.0012755101779475808,-0.0008163265301845968,-0.0004081632650922984,-0.0005442177061922848,4.1573100834277045e-18,6.146870638736812e-19,7.874888678475535e-19,9.486769009248164e-19,5.554732880252845e-19,1.872891382799449e-18,-0.022363945841789246,0.0020408162381500006,0.046173468232154846,0.0017857142956927419,0.0023809524718672037,4.2825985813177425e-18,-0.0020408162381500006,-1.9549922639202106e-19,-2.9275948470752404e-19,-0.014285714365541935,-0.0017857142956927419,-0.0023809524718672037,-1.1273817242438085e-18,-7.726876598580476e-19,-2.2657612283218157e-18,-0.011876417323946953,0.0010204081190750003,0.0017857142956927419,0.007397959008812904,0.0011904762359336019,1.7124693189694101e-18,-3.03897187312215e-19,-0.0003401360590942204,1.677052469519004e-20,-4.22942120768824e-18,-0.0005952381179668009,-2.64338825480515e-19,-0.0007936508045531809,-0.00039682540227659047,-2.895642437825566e-33,-0.015476190485060215,0.0013605442363768816,0.0023809524718672037,0.0011904762359336019,0.01454081665724516,2.4936649967166602e-18,-4.0519623251669057e-19,-5.3577622417227595e-20,-0.0006802721181884408,-5.721047054983675e-18,-2.440100347464118e-19,-0.0011904762359336019,2.710505431213761e-20,-0.0005952381179668009,-0.0022675737272948027,0.0008503401186317205,-0.0012755101779475808,4.2825985813177425e-18,1.7124693189694101e-18,2.4936649967166602e-18,0.00025510202976875007,-4.336808689942018e-19,-1.3552527156068805e-19,-2.710505431213761e-19,-1.1328806141609079e-18,-1.699320947090756e-19,-2.2657611766230274e-19,-1.5940916824527054e-19,-1.1328805883115137e-19,-3.2368019393839806e-19,0.0020408162381500006,-0.0008163265301845968,-0.0020408162381500006,-3.03897187312215e-19,-4.0519623251669057e-19,-4.336808689942018e-19,0.0008163265301845968,5.2884593697924476e-20,7.051279159723263e-20,1.5070930907744114e-18,1.7168569175829387e-19,2.2891424706126044e-19,3.7314892672502695e-34,2.708266663841326e-34,7.423411670158349e-34,0.0010204081190750003,-0.0004081632650922984,-1.9549922639202106e-19,-0.0003401360590942204,-5.3577622417227595e-20,-1.3552527156068805e-19,5.2884593697924476e-20,0.0001360544265480712,5.168016460387828e-21,5.296307347064899e-34,2.1095915126128045e-20,1.4745401136714774e-34,-5.114516534787044e-20,1.3552527156068805e-20,1.878483938857801e-34,0.0013605442363768816,-0.0005442177061922848,-2.9275948470752404e-19,1.677052469519004e-20,-0.0006802721181884408,-2.710505431213761e-19,7.051279159723263e-20,5.168016460387828e-21,0.0002721088530961424,1.0321383148001978e-33,2.165931682102828e-34,5.823874962604696e-20,1.7905129951725083e-34,-1.484528282210561e-20,-1.2724528410191175e-19,0.0023809524718672037,4.1573100834277045e-18,-0.014285714365541935,-4.22942120768824e-18,-5.721047054983675e-18,-1.1328806141609079e-18,1.5070930907744114e-18,5.296307347064899e-34,1.0321383148001978e-33,0.0071428571827709675,9.090253016897256e-34,1.349707572730943e-33,5.727341175662168e-19,3.965082252960754e-19,1.1328806141609079e-18,0.0017857142956927419,6.146870638736812e-19,-0.0017857142956927419,-0.0005952381179668009,-2.440100347464118e-19,-1.699320947090756e-19,1.7168569175829387e-19,2.1095915126128045e-20,2.165931682102828e-34,9.090253016897256e-34,0.0005952381179668009,2.64338825480515e-19,-6.028809363261492e-21,-6.776263578034403e-21,2.1561431661560882e-34,0.0023809524718672037,7.874888678475535e-19,-0.0023809524718672037,-2.64338825480515e-19,-0.0011904762359336019,-2.2657611766230274e-19,2.2891424706126044e-19,1.4745401136714774e-34,5.823874962604696e-20,1.349707572730943e-33,2.64338825480515e-19,0.0011904762359336019,1.3842621475283258e-34,8.425943506694157e-35,2.3764847608541777e-34,0.0006613756413571537,9.486769009248164e-19,-1.1273817242438085e-18,-0.0007936508045531809,2.710505431213761e-20,-1.5940916824527054e-19,3.7314892672502695e-34,-5.114516534787044e-20,1.7905129951725083e-34,5.727341175662168e-19,-6.028809363261492e-21,1.3842621475283258e-34,0.00013227513409219682,-1.7722535263230417e-20,2.9846612015631474e-34,0.0011904762359336019,5.554732880252845e-19,-7.726876598580476e-19,-0.00039682540227659047,-0.0005952381179668009,-1.1328805883115137e-19,2.708266663841326e-34,1.3552527156068805e-20,-1.484528282210561e-20,3.965082252960754e-19,-6.776263578034403e-21,8.425943506694157e-35,-1.7722535263230417e-20,0.00019841270113829523,2.09805216388387e-34,0.0011337868636474013,1.872891382799449e-18,-2.2657612283218157e-18,-2.895642437825566e-33,-0.0022675737272948027,-3.2368019393839806e-19,7.423411670158349e-34,1.878483938857801e-34,-1.2724528410191175e-19,1.1328806141609079e-18,2.1561431661560882e-34,2.3764847608541777e-34,2.9846612015631474e-34,2.09805216388387e-34,0.0005668934318237007,6.0,3.0,7.0,6.0,0.051889870315790176,-0.011358114890754223,-0.018920067697763443,-0.010038738138973713,-0.011358114890754223,0.0007086168043315411,0.001700680237263441,0.0008503401186317205,0.0009718172950670123,0.0019841270986944437,0.0014880952658131719,0.001700680237263441,0.0005511463969014585,0.0008503401186317205,0.0007086168043315411,-0.011358114890754223,0.008440637961030006,0.001700680237263441,0.0008503401186317205,0.0009718172950670123,-0.0010629252064973116,-0.0006802721181884408,-0.0003401360590942204,-0.00038872691220603883,5.27703428654838e-18,5.749622836424932e-19,7.981219127304047e-19,8.131516293641283e-19,3.068269317949071e-19,6.986569595885064e-19,-0.018920067697763443,0.001700680237263441,0.038761336356401443,0.0014880952658131719,0.001700680237263441,3.469446951953614e-18,-0.001700680237263441,-4.144012340824999e-20,-6.887790142826425e-20,-0.011904762126505375,-0.0014880952658131719,-0.001700680237263441,1.879089653924462e-18,1.0390301494267133e-18,2.6406494080981985e-18,-0.010038738138973713,0.0008503401186317205,0.0014880952658131719,0.006212207023054361,0.0008503401186317205,1.1727297299779203e-18,-4.4901929201746964e-20,-0.00028344671591185033,4.8439221688487936e-20,8.486115387352965e-18,-0.0004960317746736109,-1.3552527156068805e-19,-0.0006613756413571537,-0.00028344671591185033,-1.870767958468237e-19,-0.011358114890754223,0.0009718172950670123,0.001700680237263441,0.0008503401186317205,0.008440637961030006,1.6534083130403943e-18,1.290636468081535e-19,3.111288614772803e-21,-0.00038872691220603883,1.0031163867329526e-17,2.3330247494597763e-21,-0.0006802721181884408,-0.0,-0.0003401360590942204,-0.0010629252064973116,0.0007086168043315411,-0.0010629252064973116,3.469446951953614e-18,1.1727297299779203e-18,1.6534083130403943e-18,0.00021258502965793014,-2.710505431213761e-19,1.3552527156068805e-20,-1.3552527156068805e-19,-9.440672301662115e-19,-1.4161007677011348e-19,-1.6184009696919903e-19,-1.4792109002767802e-19,-8.092004848459951e-20,-1.8522846076807396e-19,0.001700680237263441,-0.0006802721181884408,-0.001700680237263441,-4.4901929201746964e-20,1.290636468081535e-19,-2.710505431213761e-19,0.0006802721181884408,-1.0016694352303305e-20,-1.345187446204016e-20,-5.566980840185341e-19,6.994366548640201e-20,-9.543395984525954e-20,2.6707231650682372e-34,1.4971147709539243e-34,3.716442939559744e-34,0.0008503401186317205,-0.0003401360590942204,-4.144012340824999e-20,-0.00028344671591185033,3.111288614772803e-21,1.3552527156068805e-20,-1.0016694352303305e-20,0.00011337868636474013,-3.1854767394682577e-20,2.407412430484045e-34,2.0808243681067123e-20,1.6228517224143763e-21,-2.342155765212789e-20,2.371692252312041e-20,6.914022269560727e-22,0.0009718172950670123,-0.00038872691220603883,-6.887790142826425e-20,4.8439221688487936e-20,-0.00038872691220603883,-1.3552527156068805e-19,-1.345187446204016e-20,-3.1854767394682577e-20,0.00015549076488241553,-9.62964972193618e-35,2.87877735343081e-22,4.0657581468206416e-20,6.595822790991965e-22,1.0649013346082574e-20,9.012804211778082e-20,0.0019841270986944437,5.27703428654838e-18,-0.011904762126505375,8.486115387352965e-18,1.0031163867329526e-17,-9.440672301662115e-19,-5.566980840185341e-19,2.407412430484045e-34,-9.62964972193618e-35,0.0059523810632526875,-1.3426733664414804e-18,-1.8413805577497008e-18,-9.54556810911573e-19,-5.664403070804539e-19,-1.2980923639303584e-18,0.0014880952658131719,5.749622836424932e-19,-0.0014880952658131719,-0.0004960317746736109,2.3330247494597763e-21,-1.4161007677011348e-19,6.994366548640201e-20,2.0808243681067123e-20,2.87877735343081e-22,-1.3426733664414804e-18,0.0004960317746736109,2.8399903375203157e-21,6.852484555630756e-21,-3.3881317890172014e-21,7.87165699933677e-22,0.001700680237263441,7.981219127304047e-19,-0.001700680237263441,-1.3552527156068805e-19,-0.0006802721181884408,-1.6184009696919903e-19,-9.543395984525954e-20,1.6228517224143763e-21,4.0657581468206416e-20,-1.8413805577497008e-18,2.8399903375203157e-21,0.0006802721181884408,3.786653917992682e-21,4.16059601963698e-20,-1.873045807080055e-20,0.0005511463969014585,8.131516293641283e-19,1.879089653924462e-18,-0.0006613756413571537,-0.0,-1.4792109002767802e-19,2.6707231650682372e-34,-2.342155765212789e-20,6.595822790991965e-22,-9.54556810911573e-19,6.852484555630756e-21,3.786653917992682e-21,0.00011022927355952561,-1.824378748831597e-21,1.9546568680312145e-21,0.0008503401186317205,3.068269317949071e-19,1.0390301494267133e-18,-0.00028344671591185033,-0.0003401360590942204,-8.092004848459951e-20,1.4971147709539243e-34,2.371692252312041e-20,1.0649013346082574e-20,-5.664403070804539e-19,-3.3881317890172014e-21,4.16059601963698e-20,-1.824378748831597e-21,0.00011337868636474013,6.874234720538213e-20,0.0007086168043315411,6.986569595885064e-19,2.6406494080981985e-18,-1.870767958468237e-19,-0.0010629252064973116,-1.8522846076807396e-19,3.716442939559744e-34,6.914022269560727e-22,9.012804211778082e-20,-1.2980923639303584e-18,7.87165699933677e-22,-1.873045807080055e-20,1.9546568680312145e-21,6.874234720538213e-20,0.00021258502965793014,6.0,3.0,7.0,7.0,0.045651793479919434,-0.009839650243520737,-0.01639941707253456,-0.00869574025273323,-0.00869574025273323,0.0006073858239687979,0.0014577260008081794,0.0007288630004040897,0.0007288630004040897,0.001700680237263441,0.0012755101779475808,0.0012755101779475808,0.0004724111931864172,0.0006377550889737904,0.0004724111931864172,-0.009839650243520737,0.007276481948792934,0.0014577260008081794,0.0007288630004040897,0.0007288630004040897,-0.0009110787068493664,-0.000583090353757143,-0.0002915451768785715,-0.0002915451768785715,4.5231720683599086e-18,7.84904962409091e-19,7.726149196629312e-19,5.149960319306146e-19,2.5205850210655274e-19,5.277431953627865e-19,-0.01639941707253456,0.0014577260008081794,0.03340622037649155,0.0012755101779475808,0.0012755101779475808,2.927345865710862e-18,-0.0014577260008081794,8.98527977689538e-20,7.49099157125026e-20,-0.010204081423580647,-0.0012755101779475808,-0.0012755101779475808,-8.023674172243331e-19,-4.1493830048224557e-19,-8.096078325235863e-19,-0.00869574025273323,0.0007288630004040897,0.0012755101779475808,0.005355118308216333,0.0006377550889737904,1.3381269749997358e-18,5.3672715875928515e-20,-0.00024295432376675308,-1.6998075296237417e-20,-3.0918199771690683e-18,-0.00042517005931586027,4.743384504624082e-20,-0.0005668934318237007,-0.00021258502965793014,8.055537169438873e-20,-0.00869574025273323,0.0007288630004040897,0.0012755101779475808,0.0006377550889737904,0.005355118308216333,1.328147661294743e-18,5.3672715875928515e-20,-5.5803498398741736e-21,-0.00024295432376675308,-3.0918199771690683e-18,-1.0926832133007451e-20,-0.00042517005931586027,1.3552527156068805e-20,-0.00021258502965793014,-0.0005668934318237007,0.0006073858239687979,-0.0009110787068493664,2.927345865710862e-18,1.3381269749997358e-18,1.328147661294743e-18,0.00018221575010102242,-1.8973538018496328e-19,-1.2197274440461925e-19,-1.2197274440461925e-19,-8.092004460719039e-19,-1.21380069495725e-19,-1.21380069495725e-19,-1.210144427402795e-19,-6.06900347478625e-20,-1.1954834265271168e-19,0.0014577260008081794,-0.000583090353757143,-0.0014577260008081794,5.3672715875928515e-20,5.3672715875928515e-20,-1.8973538018496328e-19,0.000583090353757143,7.161102087882596e-21,7.161102087882596e-21,-4.771697863016006e-19,-7.157547311511892e-20,-7.157547311511892e-20,7.52316384526264e-35,4.5721894534142415e-35,7.673627122167893e-35,0.0007288630004040897,-0.0002915451768785715,8.98527977689538e-20,-0.00024295432376675308,-5.5803498398741736e-21,-1.2197274440461925e-19,7.161102087882596e-21,9.718172805150971e-05,-3.842395309183029e-21,6.500013562306921e-34,-3.50320036704157e-20,-8.865125451742553e-22,3.123037527917575e-20,6.776263578034403e-21,-6.547600039400167e-22,0.0007288630004040897,-0.0002915451768785715,7.49099157125026e-20,-1.6998075296237417e-20,-0.00024295432376675308,-1.2197274440461925e-19,7.161102087882596e-21,-3.842395309183029e-21,9.718172805150971e-05,5.7777898331617076e-34,-4.443713811191991e-22,-3.049318610115481e-20,-6.176060436993002e-22,1.0354291478769344e-20,2.4366466099127674e-20,0.001700680237263441,4.5231720683599086e-18,-0.010204081423580647,-3.0918199771690683e-18,-3.0918199771690683e-18,-8.092004460719039e-19,-4.771697863016006e-19,6.500013562306921e-34,5.7777898331617076e-34,0.005102040711790323,5.757278834272301e-34,5.305179115171241e-34,4.090957945688128e-19,2.1241512161751876e-19,4.090957945688128e-19,0.0012755101779475808,7.84904962409091e-19,-0.0012755101779475808,-0.00042517005931586027,-1.0926832133007451e-20,-1.21380069495725e-19,-7.157547311511892e-20,-3.50320036704157e-20,-4.443713811191991e-22,5.757278834272301e-34,0.00042517005931586027,-1.5513970297855936e-21,-3.2061855776885635e-21,6.776263578034403e-21,-1.0368666569189937e-21,0.0012755101779475808,7.726149196629312e-19,-0.0012755101779475808,4.743384504624082e-20,-0.00042517005931586027,-1.21380069495725e-19,-7.157547311511892e-20,-8.865125451742553e-22,-3.049318610115481e-20,5.305179115171241e-34,-1.5513970297855936e-21,0.00042517005931586027,-2.0685293057313275e-21,-1.007357513631983e-20,-1.824378748831597e-21,0.0004724111931864172,5.149960319306146e-19,-8.023674172243331e-19,-0.0005668934318237007,1.3552527156068805e-20,-1.210144427402795e-19,7.52316384526264e-35,3.123037527917575e-20,-6.176060436993002e-22,4.090957945688128e-19,-3.2061855776885635e-21,-2.0685293057313275e-21,9.448223863728344e-05,3.1275062823196006e-21,-1.4765098203424643e-21,0.0006377550889737904,2.5205850210655274e-19,-4.1493830048224557e-19,-0.00021258502965793014,-0.00021258502965793014,-6.06900347478625e-20,4.5721894534142415e-35,6.776263578034403e-21,1.0354291478769344e-20,2.1241512161751876e-19,6.776263578034403e-21,-1.007357513631983e-20,3.1275062823196006e-21,7.086167897796258e-05,-2.2761430364806495e-20,0.0004724111931864172,5.277431953627865e-19,-8.096078325235863e-19,8.055537169438873e-20,-0.0005668934318237007,-1.1954834265271168e-19,7.673627122167893e-35,-6.547600039400167e-22,2.4366466099127674e-20,4.090957945688128e-19,-1.0368666569189937e-21,-1.824378748831597e-21,-1.4765098203424643e-21,-2.2761430364806495e-20,9.448223863728344e-05,6.0,3.0,7.0,8.0,0.04076318070292473,-0.0086805559694767,-0.014473497867584229,-0.007670776452869177,-0.0068735829554498196,0.0005314626032486558,0.0012755101779475808,0.0006377550889737904,0.0005668934318237007,0.0014880952658131719,0.0011160714784637094,0.0009920635493472219,0.00041335978312417865,0.0004960317746736109,0.0003306878206785768,-0.0086805559694767,0.006395266391336918,0.0012755101779475808,0.0006377550889737904,0.0005668934318237007,-0.0007971939048729837,-0.0005102040595375001,-0.00025510202976875007,-0.00022675737272948027,3.540251958026928e-18,5.38547983620319e-19,4.709866112227668e-19,5.702658106183585e-19,2.740330462175126e-19,3.546997771018663e-19,-0.014473497867584229,0.0012755101779475808,0.02935444936156273,0.0011160714784637094,0.0009920635493472219,2.4350671085330974e-18,-0.0012755101779475808,1.1313678817663074e-19,9.38577219516e-20,-0.008928571827709675,-0.0011160714784637094,-0.0009920635493472219,1.4407059529551665e-18,7.184452911898828e-19,1.1002908353996608e-18,-0.007670776452869177,0.0006377550889737904,0.0011160714784637094,0.004706396255642176,0.0004960317746736109,1.1316764459841838e-18,1.0620756080875938e-19,-0.00021258502965793014,2.822918953342291e-20,6.207241898756112e-18,-0.00037202381645329297,4.0657581468206416e-20,-0.0004960317746736109,-0.0001653439103392884,6.662433185989449e-20,-0.0068735829554498196,0.0005668934318237007,0.0009920635493472219,0.0004960317746736109,0.0036173199769109488,9.746186291029747e-19,9.440671784674232e-20,-6.900058548014101e-22,-0.0001619695540284738,5.9970743302604766e-18,6.267283756714683e-21,-0.00028344671591185033,1.3552527156068805e-20,-0.00014172335795592517,-0.0003306878206785768,0.0005314626032486558,-0.0007971939048729837,2.4350671085330974e-18,1.1316764459841838e-18,9.746186291029747e-19,0.0001594387722434476,-1.479680842262287e-19,-9.864539163826864e-20,-7.515839301369529e-20,-7.080504226246586e-19,-1.0620756080875938e-19,-9.440671784674232e-20,-1.022739486422032e-19,-4.720335892337116e-20,-7.867226918051762e-20,0.0012755101779475808,-0.0005102040595375001,-0.0012755101779475808,1.0620756080875938e-19,9.440671784674232e-20,-1.479680842262287e-19,0.0005102040595375001,-4.24830236772689e-20,-3.7762688431166636e-20,6.571102960705341e-34,9.981724055331878e-35,8.744034688708442e-35,1.035977176292846e-34,5.013832955114308e-35,6.437346856438631e-35,0.0006377550889737904,-0.00025510202976875007,1.1313678817663074e-19,-0.00021258502965793014,-6.900058548014101e-22,-9.864539163826864e-20,-4.24830236772689e-20,8.50340147735551e-05,2.5595461710157644e-22,6.2592723192585165e-34,-2.716898147943861e-21,3.4899211495687356e-22,-2.0328790734103208e-20,-1.6940658945086007e-21,6.31759899656746e-22,0.0005668934318237007,-0.00022675737272948027,9.38577219516e-20,2.822918953342291e-20,-0.0001619695540284738,-7.515839301369529e-20,-3.7762688431166636e-20,2.5595461710157644e-22,6.478781870100647e-05,1.4444474582904269e-34,1.8300001590204274e-22,-5.533798072726791e-35,5.9722748197626e-22,-9.409730383003347e-21,1.0504646903178629e-20,0.0014880952658131719,3.540251958026928e-18,-0.008928571827709675,6.207241898756112e-18,5.9970743302604766e-18,-7.080504226246586e-19,6.571102960705341e-34,6.2592723192585165e-34,1.4444474582904269e-34,0.004464285913854837,-7.552537427739386e-19,-1.1508629002923513e-18,-7.159176340330739e-19,-3.304235253882952e-19,-5.507058842636234e-19,0.0011160714784637094,5.38547983620319e-19,-0.0011160714784637094,-0.00037202381645329297,6.267283756714683e-21,-1.0620756080875938e-19,9.981724055331878e-35,-2.716898147943861e-21,1.8300001590204274e-22,-7.552537427739386e-19,0.00037202381645329297,6.107362137963032e-22,-3.906924282691402e-21,-3.3881317890172014e-21,3.736250477179814e-22,0.0009920635493472219,4.709866112227668e-19,-0.0009920635493472219,4.0657581468206416e-20,-0.00028344671591185033,-9.440671784674232e-20,8.744034688708442e-35,3.4899211495687356e-22,-5.533798072726791e-35,-1.1508629002923513e-18,6.107362137963032e-22,0.00028344671591185033,8.143149348993716e-22,-1.3552527156068805e-20,3.250228391685127e-35,0.00041335978312417865,5.702658106183585e-19,1.4407059529551665e-18,-0.0004960317746736109,1.3552527156068805e-20,-1.022739486422032e-19,1.035977176292846e-34,-2.0328790734103208e-20,5.9722748197626e-22,-7.159176340330739e-19,-3.906924282691402e-21,8.143149348993716e-22,8.26719551696442e-05,-8.991580889834988e-21,1.4078509012488828e-21,0.0004960317746736109,2.740330462175126e-19,7.184452911898828e-19,-0.0001653439103392884,-0.00014172335795592517,-4.720335892337116e-20,5.013832955114308e-35,-1.6940658945086007e-21,-9.409730383003347e-21,-3.304235253882952e-19,-3.3881317890172014e-21,-1.3552527156068805e-20,-8.991580889834988e-21,4.724111931864172e-05,-2.2208111158493875e-20,0.0003306878206785768,3.546997771018663e-19,1.1002908353996608e-18,6.662433185989449e-20,-0.0003306878206785768,-7.867226918051762e-20,6.437346856438631e-35,6.31759899656746e-22,1.0504646903178629e-20,-5.507058842636234e-19,3.736250477179814e-22,3.250228391685127e-35,1.4078509012488828e-21,-2.2208111158493875e-20,4.724111931864172e-05,6.0,3.0,8.0,3.0,0.07933752238750458,-0.018766533583402634,-0.031167328357696533,-0.014880952425301075,-0.031167328357696533,0.0012400794075801969,0.0029761905316263437,0.0013227512827143073,0.0029761905316263437,0.0034722222480922937,0.002314814832061529,0.0052083334885537624,0.0007716049440205097,0.002314814832061529,0.0034722222480922937,-0.018766533583402634,0.014327050186693668,0.0029761905316263437,0.0013227512827143073,0.0029761905316263437,-0.0018601190531626344,-0.0011904762359336019,-0.0005291005363687873,-0.0011904762359336019,8.260587902062833e-18,1.0776948460041263e-18,2.478176453336911e-18,7.992585105908408e-19,1.1014117685272467e-18,8.260587902062833e-18,-0.031167328357696533,0.0029761905316263437,0.06588955223560333,0.002314814832061529,0.0052083334885537624,5.577863745311971e-18,-0.0029761905316263437,-2.371692252312041e-20,-6.0393303467219585e-33,-0.02083333395421505,-0.002314814832061529,-0.0052083334885537624,2.482924056462659e-18,3.0839528691582296e-18,2.3129645794903686e-17,-0.014880952425301075,0.0013227512827143073,0.002314814832061529,0.008109725080430508,0.002314814832061529,2.2370396562975963e-18,-2.422114007721993e-33,-0.0003779289545491338,-2.422114007721993e-33,1.2103291006444262e-17,-0.0006613756413571537,-1.0146923806963619e-32,-0.0007716049440205097,-0.0006613756413571537,-2.3371804633790533e-32,-0.031167328357696533,0.0029761905316263437,0.0052083334885537624,0.002314814832061529,0.06588955223560333,5.577863745311971e-18,-6.0393303467219585e-33,-2.6435844902566046e-33,-0.0029761905316263437,3.469446951953614e-17,-7.251990522839385e-33,-0.0052083334885537624,-0.0,-0.002314814832061529,-0.02083333395421505,0.0012400794075801969,-0.0018601190531626344,5.577863745311971e-18,2.2370396562975963e-18,5.577863745311971e-18,0.00037202381645329297,-4.028020099324441e-19,-2.045978383138893e-19,-4.028020099324441e-19,-1.6521176010920818e-18,-2.202823588753282e-19,-4.956353010071399e-19,-1.8356861947140974e-19,-2.202823588753282e-19,-1.6521176010920818e-18,0.0029761905316263437,-0.0011904762359336019,-0.0029761905316263437,-2.422114007721993e-33,-6.0393303467219585e-33,-4.028020099324441e-19,0.0011904762359336019,2.215245966007227e-34,4.361265416655599e-34,1.7888002631691618e-33,2.3850670175588824e-34,5.366400789507485e-34,1.9875559244953155e-34,2.3850670175588824e-34,1.7888002631691618e-33,0.0013227512827143073,-0.0005291005363687873,-2.371692252312041e-20,-0.0003779289545491338,-2.6435844902566046e-33,-2.045978383138893e-19,2.215245966007227e-34,0.0001511715818196535,2.215245966007227e-34,5.7777898331617076e-34,6.776263578034403e-21,2.7257909428069343e-34,3.3881317890172014e-20,-0.0,9.085969809356448e-34,0.0029761905316263437,-0.0011904762359336019,-6.0393303467219585e-33,-2.422114007721993e-33,-0.0029761905316263437,-4.028020099324441e-19,4.361265416655599e-34,2.215245966007227e-34,0.0011904762359336019,1.7888002631691618e-33,2.3850670175588824e-34,5.366400789507485e-34,1.9875559244953155e-34,2.3850670175588824e-34,1.7888002631691618e-33,0.0034722222480922937,8.260587902062833e-18,-0.02083333395421505,1.2103291006444262e-17,3.469446951953614e-17,-1.6521176010920818e-18,1.7888002631691618e-33,5.7777898331617076e-34,1.7888002631691618e-33,0.010416666977107525,-1.566452191916676e-18,-6.167905738316459e-18,-1.284980310450474e-18,-1.5419764345791148e-18,-1.1564822897451843e-17,0.002314814832061529,1.0776948460041263e-18,-0.002314814832061529,-0.0006613756413571537,-7.251990522839385e-33,-2.202823588753282e-19,2.3850670175588824e-34,6.776263578034403e-21,2.3850670175588824e-34,-1.566452191916676e-18,0.0006613756413571537,1.22100104322048e-33,2.4867608303364098e-20,-0.0,2.7173614544500884e-33,0.0052083334885537624,2.478176453336911e-18,-0.0052083334885537624,-1.0146923806963619e-32,-0.0052083334885537624,-4.956353010071399e-19,5.366400789507485e-34,2.7257909428069343e-34,5.366400789507485e-34,-6.167905738316459e-18,1.22100104322048e-33,0.0052083334885537624,1.0054237363098228e-33,1.2065084835717874e-33,9.048813718623901e-33,0.0007716049440205097,7.992585105908408e-19,2.482924056462659e-18,-0.0007716049440205097,-0.0,-1.8356861947140974e-19,1.9875559244953155e-34,3.3881317890172014e-20,1.9875559244953155e-34,-1.284980310450474e-18,2.4867608303364098e-20,1.0054237363098228e-33,0.00011022927355952561,2.2559227484162637e-35,2.241823296348594e-33,0.002314814832061529,1.1014117685272467e-18,3.0839528691582296e-18,-0.0006613756413571537,-0.002314814832061529,-2.202823588753282e-19,2.3850670175588824e-34,-0.0,2.3850670175588824e-34,-1.5419764345791148e-18,-0.0,1.2065084835717874e-33,2.2559227484162637e-35,0.0006613756413571537,2.6901878821499158e-33,0.0034722222480922937,8.260587902062833e-18,2.3129645794903686e-17,-2.3371804633790533e-32,-0.02083333395421505,-1.6521176010920818e-18,1.7888002631691618e-33,9.085969809356448e-34,1.7888002631691618e-33,-1.1564822897451843e-17,2.7173614544500884e-33,9.048813718623901e-33,2.241823296348594e-33,2.6901878821499158e-33,0.010416666977107525,6.0,3.0,8.0,4.0,0.06400462985038757,-0.014521329663693905,-0.02415674552321434,-0.011507936753332615,-0.01974206417798996,0.0009300595265813172,0.0022321429569274187,0.0009920635493472219,0.0017857142956927419,0.0026041667442768812,0.0017361111240461469,0.0031250000465661287,0.0005787037080153823,0.0013888889225199819,0.0017361111240461469,-0.014521329663693905,0.010923858731985092,0.0022321429569274187,0.0009920635493472219,0.0017857142956927419,-0.0013950893189758062,-0.0008928571478463709,-0.00039682540227659047,-0.0007142857066355646,6.1954409265471244e-18,8.280397947155288e-19,1.4869058513226313e-18,6.172315748354709e-19,6.3713012825347e-19,2.8912057243629608e-18,-0.02415674552321434,0.0022321429569274187,0.05019841343164444,0.0017361111240461469,0.0031250000465661287,2.573173183604951e-18,-0.0022321429569274187,1.980995785075066e-21,5.151580574427155e-34,-0.015625,-0.0017361111240461469,-0.0031250000465661287,1.931515120377154e-18,1.8266548816898786e-18,8.095375945498229e-18,-0.011507936753332615,0.0009920635493472219,0.0017361111240461469,0.006181500386446714,0.0013888889225199819,1.2018874329801082e-18,1.6012358131580652e-33,-0.00028344671591185033,-1.5105075372466654e-19,9.896184534973123e-18,-0.0004960317746736109,-5.968763216790189e-33,-0.0005787037080153823,-0.00039682540227659047,-7.6180644429404e-33,-0.01974206417798996,0.0017857142956927419,0.0031250000465661287,0.0013888889225199819,0.025314154103398323,2.3554476658524183e-18,3.138086494643732e-33,-1.7476767624778695e-19,-0.0011904762359336019,1.9081958235744878e-17,-2.371692252312041e-20,-0.0020833334419876337,-2.710505431213761e-20,-0.0009259259095415473,-0.0052083334885537624,0.0009300595265813172,-0.0013950893189758062,2.573173183604951e-18,1.2018874329801082e-18,2.3554476658524183e-18,0.00027901786961592734,3.7172646283065783e-19,5.0125471372442764e-20,5.569996430505979e-20,-1.2390882266684555e-18,-1.652117626941476e-19,-2.973811754344051e-19,-1.3767647106590584e-19,-1.321694127402575e-19,-5.782411758918651e-19,0.0022321429569274187,-0.0008928571478463709,-0.0022321429569274187,1.6012358131580652e-33,3.138086494643732e-33,3.7172646283065783e-19,0.0008928571478463709,6.678054579530938e-35,7.420725941073209e-35,-1.650797042711633e-33,-2.201062891980587e-34,-3.961913251482804e-34,-1.834219000120909e-34,-1.7608502447078474e-34,-7.703719777548943e-34,0.0009920635493472219,-0.00039682540227659047,1.980995785075066e-21,-0.00028344671591185033,-1.7476767624778695e-19,5.0125471372442764e-20,6.678054579530938e-35,0.00011337868636474013,6.042030278233632e-20,-5.7777898331617076e-34,-5.659988390103885e-22,-5.34244331924164e-35,2.0328790734103208e-20,6.776263578034403e-21,-1.038808464639397e-34,0.0017857142956927419,-0.0007142857066355646,5.151580574427155e-34,-1.5105075372466654e-19,-0.0011904762359336019,5.569996430505979e-20,7.420725941073209e-35,6.042030278233632e-20,0.0004761904710903764,-2.4735753136910696e-34,-3.3403545996708774e-35,-5.936580523269827e-35,-1.8055593228630336e-35,-2.407412430484045e-35,-1.1543351081243757e-34,0.0026041667442768812,6.1954409265471244e-18,-0.015625,9.896184534973123e-18,1.9081958235744878e-17,-1.2390882266684555e-18,-1.650797042711633e-33,-5.7777898331617076e-34,-2.4735753136910696e-34,0.0078125,-1.7622588710026254e-18,-3.700743608425998e-18,-9.63735310386038e-19,-9.251859021064995e-19,-4.0476879727491145e-18,0.0017361111240461469,8.280397947155288e-19,-0.0017361111240461469,-0.0004960317746736109,-2.371692252312041e-20,-1.652117626941476e-19,-2.201062891980587e-34,-5.659988390103885e-22,-3.3403545996708774e-35,-1.7622588710026254e-18,0.0004960317746736109,1.0108584691369566e-33,-1.1555809082851871e-21,6.776263578034403e-21,1.255420987180495e-33,0.0031250000465661287,1.4869058513226313e-18,-0.0031250000465661287,-5.968763216790189e-33,-0.0020833334419876337,-2.973811754344051e-19,-3.961913251482804e-34,-5.34244331924164e-35,-5.936580523269827e-35,-3.700743608425998e-18,1.0108584691369566e-33,0.0020833334419876337,6.032542417858937e-34,5.7912409782839685e-34,2.533667870602051e-33,0.0005787037080153823,6.172315748354709e-19,1.931515120377154e-18,-0.0005787037080153823,-2.710505431213761e-20,-1.3767647106590584e-19,-1.834219000120909e-34,2.0328790734103208e-20,-1.8055593228630336e-35,-9.63735310386038e-19,-1.1555809082851871e-21,6.032542417858937e-34,8.26719551696442e-05,-3.1324237256583863e-21,7.846381629055575e-34,0.0013888889225199819,6.3713012825347e-19,1.8266548816898786e-18,-0.00039682540227659047,-0.0009259259095415473,-1.321694127402575e-19,-1.7608502447078474e-34,6.776263578034403e-21,-2.407412430484045e-35,-9.251859021064995e-19,6.776263578034403e-21,5.7912409782839685e-34,-3.1324237256583863e-21,0.00026455026818439364,7.5325260149184665e-34,0.0017361111240461469,2.8912057243629608e-18,8.095375945498229e-18,-7.6180644429404e-33,-0.0052083334885537624,-5.782411758918651e-19,-7.703719777548943e-34,-1.038808464639397e-34,-1.1543351081243757e-34,-4.0476879727491145e-18,1.255420987180495e-33,2.533667870602051e-33,7.846381629055575e-34,7.5325260149184665e-34,0.0017361111240461469,6.0,3.0,8.0,5.0,0.05373677238821983,-0.01185515895485878,-0.01974206417798996,-0.009391534142196178,-0.013657407835125923,0.0007440476329065859,0.0017857142956927419,0.0007936508045531809,0.0011904762359336019,0.0020833334419876337,0.0013888889225199819,0.0020833334419876337,0.00046296295477077365,0.0009259259095415473,0.0009920635493472219,-0.01185515895485878,0.008834325708448887,0.0017857142956927419,0.0007936508045531809,0.0011904762359336019,-0.0011160714784637094,-0.0007142857066355646,-0.0003174603043589741,-0.0004761904710903764,-9.912705813347644e-18,-1.3348731566626819e-18,-1.9825412040285595e-18,-1.1607040748350478e-18,-8.692709742397525e-19,-2.8322016904986345e-18,-0.01974206417798996,0.0017857142956927419,0.04057539626955986,0.0013888889225199819,0.0020833334419876337,-6.4083282648968344e-18,-0.0017857142956927419,-1.3179125387541438e-20,-5.550800404649985e-33,-0.012500000186264515,-0.0013888889225199819,-0.0020833334419876337,-7.934859789873512e-19,-6.049321229098434e-19,-1.9825412040285595e-18,-0.009391534142196178,0.0007936508045531809,0.0013888889225199819,0.004998110234737396,0.0009259259095415473,-2.527043181999247e-18,-3.2833320459992724e-33,-0.00022675737272948027,-2.1888878469951893e-33,-3.3152493188354604e-18,-0.00039682540227659047,-4.488930439804134e-33,-0.00046296295477077365,-0.00026455026818439364,-6.9385669947117e-33,-0.013657407835125923,0.0011904762359336019,0.0020833334419876337,0.0009259259095415473,0.012781084515154362,-3.7624223308010146e-18,-4.8884332151906274e-33,1.1858461261560205e-20,-0.0005952381179668009,-5.044465839884196e-18,1.1858461261560205e-20,-0.0010416667209938169,2.710505431213761e-20,-0.00046296295477077365,-0.0019841270986944437,0.0007440476329065859,-0.0011160714784637094,-6.4083282648968344e-18,-2.527043181999247e-18,-3.7624223308010146e-18,0.00022321428696159273,2.9001743267569904e-19,1.473104497898549e-19,1.933449637335974e-19,1.9825412040285595e-18,2.64338825480515e-19,3.965082252960754e-19,2.202823588753282e-19,1.762258793454443e-19,5.664403070804539e-19,0.0017857142956927419,-0.0007142857066355646,-0.0017857142956927419,-3.2833320459992724e-33,-4.8884332151906274e-33,2.9001743267569904e-19,0.0007142857066355646,1.9139725036099846e-34,2.512088824892327e-34,2.5758723422293945e-33,3.4344964869176914e-34,5.151744500787797e-34,2.8620803292351627e-34,2.2896644011413744e-34,7.35963513231899e-34,0.0007936508045531809,-0.0003174603043589741,-1.3179125387541438e-20,-0.00022675737272948027,1.1858461261560205e-20,1.473104497898549e-19,1.9139725036099846e-34,9.070294618140906e-05,1.275981669073323e-34,1.396299209680746e-33,3.76546428104133e-21,2.616759249993359e-34,1.6940658945086007e-20,-3.3881317890172014e-21,3.7382274671921217e-34,0.0011904762359336019,-0.0004761904710903764,-5.550800404649985e-33,-2.1888878469951893e-33,-0.0005952381179668009,1.933449637335974e-19,2.512088824892327e-34,1.275981669073323e-34,0.0002380952355451882,1.7172482893765938e-33,2.2896644011413744e-34,3.4344964869176914e-34,1.9080535910882319e-34,1.5264428958294595e-34,4.906423421545993e-34,0.0020833334419876337,-9.912705813347644e-18,-0.012500000186264515,-3.3152493188354604e-18,-5.044465839884196e-18,1.9825412040285595e-18,2.5758723422293945e-33,1.396299209680746e-33,1.7172482893765938e-33,0.0062500000931322575,2.4040034968666602e-33,3.521700627168939e-33,3.854941086447787e-19,3.083952920857018e-19,9.912706020142797e-19,0.0013888889225199819,-1.3348731566626819e-18,-0.0013888889225199819,-0.00039682540227659047,1.1858461261560205e-20,2.64338825480515e-19,3.4344964869176914e-34,3.76546428104133e-21,2.2896644011413744e-34,2.4040034968666602e-33,0.00039682540227659047,4.69560080561342e-34,6.427928047786163e-21,-3.3881317890172014e-21,6.708000757295616e-34,0.0020833334419876337,-1.9825412040285595e-18,-0.0020833334419876337,-4.488930439804134e-33,-0.0010416667209938169,3.965082252960754e-19,5.151744500787797e-34,2.616759249993359e-34,3.4344964869176914e-34,3.521700627168939e-33,4.69560080561342e-34,0.0010416667209938169,3.913000747874097e-34,3.130400460546033e-34,1.0062001135943425e-33,0.00046296295477077365,-1.1607040748350478e-18,-7.934859789873512e-19,-0.00046296295477077365,2.710505431213761e-20,2.202823588753282e-19,2.8620803292351627e-34,1.6940658945086007e-20,1.9080535910882319e-34,3.854941086447787e-19,6.427928047786163e-21,3.913000747874097e-34,6.613756704609841e-05,-1.19863155961622e-20,6.201407232306847e-34,0.0009259259095415473,-8.692709742397525e-19,-6.049321229098434e-19,-0.00026455026818439364,-0.00046296295477077365,1.762258793454443e-19,2.2896644011413744e-34,-3.3881317890172014e-21,1.5264428958294595e-34,3.083952920857018e-19,-3.3881317890172014e-21,3.130400460546033e-34,-1.19863155961622e-20,0.00013227513409219682,4.9611256940099815e-34,0.0009920635493472219,-2.8322016904986345e-18,-1.9825412040285595e-18,-6.9385669947117e-33,-0.0019841270986944437,5.664403070804539e-19,7.35963513231899e-34,3.7382274671921217e-34,4.906423421545993e-34,9.912706020142797e-19,6.708000757295616e-34,1.0062001135943425e-33,6.201407232306847e-34,4.9611256940099815e-34,0.0004960317746736109,6.0,3.0,8.0,6.0,0.046347472816705704,-0.010021022520959377,-0.016699735075235367,-0.007936508394777775,-0.010021022520959377,0.0006200397037900984,0.0014880952658131719,0.0006613756413571537,0.0008503401186317205,0.0017361111240461469,0.0011574074160307646,0.0014880952658131719,0.00038580247201025486,0.0006613756413571537,0.0006200397037900984,-0.010021022520959377,0.007418627385050058,0.0014880952658131719,0.0006613756413571537,0.0008503401186317205,-0.0009300595265813172,-0.0005952381179668009,-0.00026455026818439364,-0.0003401360590942204,4.130293951031416e-18,5.371965772945605e-19,7.080504226246586e-19,4.233461778185408e-19,3.206183073528506e-19,8.113077403811711e-19,-0.016699735075235367,0.0014880952658131719,0.034060847014188766,0.0011574074160307646,0.0014880952658131719,2.8951393817659567e-18,-0.0014880952658131719,-1.3509290813191571e-20,-1.432987214889375e-33,-0.010416666977107525,-0.0011574074160307646,-0.0014880952658131719,1.261808499951026e-18,8.92987896762873e-19,2.2716617144263096e-18,-0.007936508394777775,0.0006613756413571537,0.0011574074160307646,0.004196586087346077,0.0006613756413571537,1.1657231999968664e-18,-1.2621655696893302e-33,-0.0001889644772745669,-5.769899786509294e-34,6.382069002761032e-18,-0.0003306878206785768,-2.6149773658614057e-33,-0.00038580247201025486,-0.0001889644772745669,-2.4086799440020174e-33,-0.010021022520959377,0.0008503401186317205,0.0014880952658131719,0.0006613756413571537,0.007418627385050058,1.4033727069712341e-18,-1.5194763239675364e-33,5.929230630780102e-21,-0.0003401360590942204,8.630937341818137e-18,1.1858461261560205e-20,-0.0005952381179668009,-0.0,-0.00026455026818439364,-0.0009300595265813172,0.0006200397037900984,-0.0009300595265813172,2.8951393817659567e-18,1.1657231999968664e-18,1.4033727069712341e-18,0.00018601190822664648,-2.0140100496622206e-19,-1.0229891915694465e-19,-9.206902788748504e-20,-8.260588005460409e-19,-1.101411794376641e-19,-1.4161007677011348e-19,-9.178430973570487e-20,-6.293781405194439e-20,-1.622615454912948e-19,0.0014880952658131719,-0.0005952381179668009,-0.0014880952658131719,-1.2621655696893302e-33,-1.5194763239675364e-33,-2.0140100496622206e-19,0.0005952381179668009,1.1076229830036135e-34,9.96860650264941e-35,8.944001315845809e-34,1.1925335087794412e-34,1.5332573192331229e-34,9.937779622476577e-35,6.814477357017336e-35,1.7568573521292681e-34,0.0006613756413571537,-0.00026455026818439364,-1.3509290813191571e-20,-0.0001889644772745669,5.929230630780102e-21,-1.0229891915694465e-19,1.1076229830036135e-34,7.558579090982676e-05,5.063418957292964e-35,3.851859888774472e-34,3.859797605995754e-21,7.787973794321612e-35,1.0164395367051604e-20,-1.6940658945086007e-21,8.923720020491168e-35,0.0008503401186317205,-0.0003401360590942204,-1.432987214889375e-33,-5.769899786509294e-34,-0.0003401360590942204,-9.206902788748504e-20,9.96860650264941e-35,5.063418957292964e-35,0.0001360544265480712,4.088686184621661e-34,5.451581770819498e-35,7.009176644478191e-35,4.5429846176922983e-35,3.1151894603314596e-35,8.031348190633606e-35,0.0017361111240461469,4.130293951031416e-18,-0.010416666977107525,6.382069002761032e-18,8.630937341818137e-18,-8.260588005460409e-19,8.944001315845809e-34,3.851859888774472e-34,4.088686184621661e-34,0.0052083334885537624,-7.83226095958338e-19,-1.4098070347635544e-18,-6.42490155225237e-19,-4.405647177506564e-19,-1.1358308572131548e-18,0.0011574074160307646,5.371965772945605e-19,-0.0011574074160307646,-0.0003306878206785768,1.1858461261560205e-20,-1.101411794376641e-19,1.1925335087794412e-34,3.859797605995754e-21,5.451581770819498e-35,-7.83226095958338e-19,0.0003306878206785768,2.958559716845123e-34,6.620525017294988e-21,-3.3881317890172014e-21,2.6688370935658925e-34,0.0014880952658131719,7.080504226246586e-19,-0.0014880952658131719,-2.6149773658614057e-33,-0.0005952381179668009,-1.4161007677011348e-19,1.5332573192331229e-34,7.787973794321612e-35,7.009176644478191e-35,-1.4098070347635544e-18,2.958559716845123e-34,0.0005952381179668009,2.4378614075901884e-34,1.6716763708172551e-34,4.309790702704083e-34,0.00038580247201025486,4.233461778185408e-19,1.261808499951026e-18,-0.00038580247201025486,-0.0,-9.178430973570487e-20,9.937779622476577e-35,1.0164395367051604e-20,4.5429846176922983e-35,-6.42490155225237e-19,6.620525017294988e-21,2.4378614075901884e-34,5.5114636779762805e-05,1.0068504616100108e-21,2.201790688287639e-34,0.0006613756413571537,3.206183073528506e-19,8.92987896762873e-19,-0.0001889644772745669,-0.00026455026818439364,-6.293781405194439e-20,6.814477357017336e-35,-1.6940658945086007e-21,3.1151894603314596e-35,-4.405647177506564e-19,-3.3881317890172014e-21,1.6716763708172551e-34,1.0068504616100108e-21,7.558579090982676e-05,1.5097993192720064e-34,0.0006200397037900984,8.113077403811711e-19,2.2716617144263096e-18,-2.4086799440020174e-33,-0.0009300595265813172,-1.622615454912948e-19,1.7568573521292681e-34,8.923720020491168e-35,8.031348190633606e-35,-1.1358308572131548e-18,2.6688370935658925e-34,4.309790702704083e-34,2.201790688287639e-34,1.5097993192720064e-34,0.00018601190822664648,6.0,3.0,8.0,7.0,0.04076318070292473,-0.0086805559694767,-0.014473497867584229,-0.0068735829554498196,-0.007670776452869177,0.0005314626032486558,0.0012755101779475808,0.0005668934318237007,0.0006377550889737904,0.0014880952658131719,0.0009920635493472219,0.0011160714784637094,0.0003306878206785768,0.0004960317746736109,0.00041335978312417865,-0.0086805559694767,0.006395266391336918,0.0012755101779475808,0.0005668934318237007,0.0006377550889737904,-0.0007971939048729837,-0.0005102040595375001,-0.00022675737272948027,-0.00025510202976875007,3.540251958026928e-18,4.818464586898223e-19,5.307236305073916e-19,3.7112771331414015e-19,2.8628449581821794e-19,5.716809615500719e-19,-0.014473497867584229,0.0012755101779475808,0.02935444936156273,0.0009920635493472219,0.0011160714784637094,2.4350671085330974e-18,-0.0012755101779475808,1.040148859506403e-19,1.0613217751309195e-19,-0.008928571827709675,-0.0009920635493472219,-0.0011160714784637094,1.1166187603059982e-18,7.422372803535924e-19,1.4113305980543005e-18,-0.0068735829554498196,0.0005668934318237007,0.0009920635493472219,0.0036173199769109488,0.0004960317746736109,9.746186291029747e-19,9.440671784674232e-20,-0.0001619695540284738,9.668339031112675e-20,5.9970743302604766e-18,-0.00028344671591185033,6.776263578034403e-20,-0.0003306878206785768,-0.00014172335795592517,1.0146685947124727e-19,-0.007670776452869177,0.0006377550889737904,0.0011160714784637094,0.0004960317746736109,0.004706396255642176,1.1316764459841838e-18,1.0620756080875938e-19,6.572270499221169e-20,-0.00021258502965793014,6.207241898756112e-18,1.1320868180408896e-20,-0.00037202381645329297,2.710505431213761e-20,-0.0001653439103392884,-0.0004960317746736109,0.0005314626032486558,-0.0007971939048729837,2.4350671085330974e-18,9.746186291029747e-19,1.1316764459841838e-18,0.0001594387722434476,-1.479680842262287e-19,-7.515839301369529e-20,-9.864539163826864e-20,-7.080504226246586e-19,-9.440671784674232e-20,-1.0620756080875938e-19,-7.867226918051762e-20,-4.720335892337116e-20,-1.022739486422032e-19,0.0012755101779475808,-0.0005102040595375001,-0.0012755101779475808,9.440671784674232e-20,1.0620756080875938e-19,-1.479680842262287e-19,0.0005102040595375001,-3.7762688431166636e-20,-4.24830236772689e-20,6.571102960705341e-34,8.924887479236076e-35,9.85142211366441e-35,6.720030288937352e-35,5.217860433097411e-35,1.0548450085672458e-34,0.0005668934318237007,-0.00022675737272948027,1.040148859506403e-19,-0.0001619695540284738,6.572270499221169e-20,-7.515839301369529e-20,-3.7762688431166636e-20,6.478781870100647e-05,-2.182085007573841e-20,1.925929944387236e-34,-2.8221330509810087e-21,8.976551739060658e-23,6.776263578034403e-21,-3.3881317890172014e-21,9.201834005284951e-23,0.0006377550889737904,-0.00025510202976875007,1.0613217751309195e-19,9.668339031112675e-20,-0.00021258502965793014,-9.864539163826864e-20,-4.24830236772689e-20,-2.182085007573841e-20,8.50340147735551e-05,6.7407548053553255e-34,2.1537914307841936e-23,-4.113146569023342e-35,-4.944336806113259e-22,-1.2803078095082321e-20,-2.0211088749050594e-20,0.0014880952658131719,3.540251958026928e-18,-0.008928571827709675,5.9970743302604766e-18,6.207241898756112e-18,-7.080504226246586e-19,6.571102960705341e-34,1.925929944387236e-34,6.7407548053553255e-34,0.004464285913854837,-1.1508629002923513e-18,-7.552537427739386e-19,-5.507058842636234e-19,-3.304235253882952e-19,-7.159176340330739e-19,0.0009920635493472219,4.818464586898223e-19,-0.0009920635493472219,-0.00028344671591185033,1.1320868180408896e-20,-9.440671784674232e-20,8.924887479236076e-35,-2.8221330509810087e-21,2.1537914307841936e-23,-1.1508629002923513e-18,0.00028344671591185033,1.5708965858900514e-22,-4.501959968285047e-21,-3.3881317890172014e-21,5.0255131807242707e-23,0.0011160714784637094,5.307236305073916e-19,-0.0011160714784637094,6.776263578034403e-20,-0.00037202381645329297,-1.0620756080875938e-19,9.85142211366441e-35,8.976551739060658e-23,-4.113146569023342e-35,-7.552537427739386e-19,1.5708965858900514e-22,0.00037202381645329297,1.8327127045746841e-22,-2.3177255028089182e-20,6.776263578034403e-21,0.0003306878206785768,3.7112771331414015e-19,1.1166187603059982e-18,-0.0003306878206785768,2.710505431213761e-20,-7.867226918051762e-20,6.720030288937352e-35,6.776263578034403e-21,-4.944336806113259e-22,-5.507058842636234e-19,-4.501959968285047e-21,1.8327127045746841e-22,4.724111931864172e-05,-5.210051614231014e-21,-6.926554681880919e-22,0.0004960317746736109,2.8628449581821794e-19,7.422372803535924e-19,-0.00014172335795592517,-0.0001653439103392884,-4.720335892337116e-20,5.217860433097411e-35,-3.3881317890172014e-21,-1.2803078095082321e-20,-3.304235253882952e-19,-3.3881317890172014e-21,-2.3177255028089182e-20,-5.210051614231014e-21,4.724111931864172e-05,-3.216759030024394e-20,0.00041335978312417865,5.716809615500719e-19,1.4113305980543005e-18,1.0146685947124727e-19,-0.0004960317746736109,-1.022739486422032e-19,1.0548450085672458e-34,9.201834005284951e-23,-2.0211088749050594e-20,-7.159176340330739e-19,5.0255131807242707e-23,6.776263578034403e-21,-6.926554681880919e-22,-3.216759030024394e-20,8.26719551696442e-05,6.0,3.0,8.0,8.0,0.036389440298080444,-0.0076574902050197124,-0.0127728171646595,-0.006062610074877739,-0.006062610074877739,0.0004650297632906586,0.0011160714784637094,0.0004960317746736109,0.0004960317746736109,0.0013020833721384406,0.0008680555620230734,0.0008680555620230734,0.00028935185400769114,0.00038580247201025486,0.00028935185400769114,-0.0076574902050197124,0.0056206597946584225,0.0011160714784637094,0.0004960317746736109,0.0004960317746736109,-0.0006975446594879031,-0.00044642857392318547,-0.00019841270113829523,-0.00019841270113829523,3.0977204632735622e-18,3.93346611747927e-19,4.153581463419045e-19,2.8631830682575604e-19,1.776919406589209e-19,3.08828812274862e-19,-0.0127728171646595,0.0011160714784637094,0.02579365111887455,0.0008680555620230734,0.0008680555620230734,1.3526712917102557e-18,-0.0011160714784637094,-1.9077020898066126e-20,1.722984702256887e-21,-0.0078125,-0.0008680555620230734,-0.0008680555620230734,9.098886442434032e-19,5.093494385753862e-19,9.672529993384963e-19,-0.006062610074877739,0.0004960317746736109,0.0008680555620230734,0.003178933635354042,0.00038580247201025486,6.303147286927042e-19,8.397479094659987e-34,-0.00014172335795592517,-3.48818833139344e-20,5.153689249507535e-18,-0.00024801588733680546,2.0328790734103208e-20,-0.00028935185400769114,-0.00011022927355952561,1.5608932086205444e-20,-0.006062610074877739,0.0004960317746736109,0.0008680555620230734,0.00038580247201025486,0.003178933635354042,6.303147286927042e-19,8.397479094659987e-34,-4.6212422398926776e-20,-0.00014172335795592517,5.153689249507535e-18,-1.8535390868564002e-21,-0.00024801588733680546,-6.776263578034403e-21,-0.00011022927355952561,-0.00028935185400769114,0.0004650297632906586,-0.0006975446594879031,1.3526712917102557e-18,6.303147286927042e-19,6.303147286927042e-19,0.00013950893480796367,1.8586323141532891e-19,2.5062735686221382e-20,2.5062735686221382e-20,-6.195441133342278e-19,-8.26058813470738e-20,-8.26058813470738e-20,-6.883823553295292e-20,-3.6713723248047095e-20,-6.883823553295292e-20,0.0011160714784637094,-0.00044642857392318547,-0.0011160714784637094,8.397479094659987e-34,8.397479094659987e-34,1.8586323141532891e-19,0.00044642857392318547,3.339027289765469e-35,3.339027289765469e-35,-8.253985213558165e-34,-1.1005314459902934e-34,-1.1005314459902934e-34,-9.171095000604545e-35,-4.891250934842621e-35,-9.171095000604545e-35,0.0004960317746736109,-0.00019841270113829523,-1.9077020898066126e-20,-0.00014172335795592517,-4.6212422398926776e-20,2.5062735686221382e-20,3.339027289765469e-35,5.668934318237007e-05,1.6584779026819272e-20,-3.851859888774472e-34,6.115931515043786e-21,-6.653542670576156e-22,1.6940658945086007e-20,2.541098841762901e-21,-4.593604451377694e-22,0.0004960317746736109,-0.00019841270113829523,1.722984702256887e-21,-3.48818833139344e-20,-0.00014172335795592517,2.5062735686221382e-20,3.339027289765469e-35,1.6584779026819272e-20,5.668934318237007e-05,-3.3703774026776627e-34,-4.922813146521975e-22,-4.2351617920921785e-35,-4.0555387100155254e-22,-8.620457906959976e-22,1.0562888011561891e-20,0.0013020833721384406,3.0977204632735622e-18,-0.0078125,5.153689249507535e-18,5.153689249507535e-18,-6.195441133342278e-19,-8.253985213558165e-34,-3.851859888774472e-34,-3.3703774026776627e-34,0.00390625,-8.811294355013127e-19,-8.811294355013127e-19,-4.81867655193019e-19,-2.5699607242985247e-19,-4.81867655193019e-19,0.0008680555620230734,3.93346611747927e-19,-0.0008680555620230734,-0.00024801588733680546,-1.8535390868564002e-21,-8.26058813470738e-20,-1.1005314459902934e-34,6.115931515043786e-21,-4.922813146521975e-22,-8.811294355013127e-19,0.00024801588733680546,-1.1643699042419548e-21,1.6743167958251838e-20,3.3881317890172014e-21,-1.0050744264788834e-21,0.0008680555620230734,4.153581463419045e-19,-0.0008680555620230734,2.0328790734103208e-20,-0.00024801588733680546,-8.26058813470738e-20,-1.1005314459902934e-34,-6.653542670576156e-22,-4.2351617920921785e-35,-8.811294355013127e-19,-1.1643699042419548e-21,0.00024801588733680546,-1.3584316054360452e-21,-2.0616479142829036e-21,2.5263637918123104e-35,0.00028935185400769114,2.8631830682575604e-19,9.098886442434032e-19,-0.00028935185400769114,-6.776263578034403e-21,-6.883823553295292e-20,-9.171095000604545e-35,1.6940658945086007e-20,-4.0555387100155254e-22,-4.81867655193019e-19,1.6743167958251838e-20,-1.3584316054360452e-21,4.13359775848221e-05,2.1016005763105015e-21,3.1473293345040715e-22,0.00038580247201025486,1.776919406589209e-19,5.093494385753862e-19,-0.00011022927355952561,-0.00011022927355952561,-3.6713723248047095e-20,-4.891250934842621e-35,2.541098841762901e-21,-8.620457906959976e-22,-2.5699607242985247e-19,3.3881317890172014e-21,-2.0616479142829036e-21,2.1016005763105015e-21,3.149408075842075e-05,-4.525266832175365e-21,0.00028935185400769114,3.08828812274862e-19,9.672529993384963e-19,1.5608932086205444e-20,-0.00028935185400769114,-6.883823553295292e-20,-9.171095000604545e-35,-4.593604451377694e-22,1.0562888011561891e-20,-4.81867655193019e-19,-1.0050744264788834e-21,2.5263637918123104e-35,3.1473293345040715e-22,-4.525266832175365e-21,4.13359775848221e-05,6.0,4.0,3.0,3.0,0.1373346596956253,-0.03541666641831398,-0.04801587387919426,-0.05863095074892044,-0.05863095074892044,0.0024801588151603937,0.004761904943734407,0.0059523810632526875,0.0059523810632526875,0.004629629664123058,0.008333333767950535,0.008333333767950535,0.0069444444961845875,0.010416666977107525,0.0069444444961845875,-0.03541666641831398,0.027807539328932762,0.004761904943734407,0.0059523810632526875,0.0059523810632526875,-0.0037202381063252687,-0.0019047618843615055,-0.0023809524718672037,-0.0023809524718672037,6.7959517173840836e-18,4.99386017077912e-18,4.99386017077912e-18,1.8469619589329023e-17,6.125418846923592e-18,1.8469619589329023e-17,-0.04801587387919426,0.004761904943734407,0.06441798806190491,0.008333333767950535,0.008333333767950535,8.348356728138384e-18,-0.0031746032182127237,7.479053287059589e-19,7.479053287059589e-19,-0.013888888992369175,-0.0055555556900799274,-0.0055555556900799274,-3.740940829578056e-32,-1.1281630707864281e-32,-3.740940829578056e-32,-0.05863095074892044,0.0059523810632526875,0.008333333767950535,0.12807539105415344,0.010416666977107525,1.0471563097258883e-17,8.414306080618435e-19,-0.0059523810632526875,5.451929839748989e-19,-2.1750897841026419e-32,-0.008333333767950535,-1.1695521534104839e-32,-0.0416666679084301,-0.010416666977107525,4.625929158980737e-17,-0.05863095074892044,0.0059523810632526875,0.008333333767950535,0.010416666977107525,0.12807539105415344,1.0625181290357943e-17,8.414306080618435e-19,5.451929839748989e-19,-0.0059523810632526875,-2.1750897841026419e-32,-1.1695521534104839e-32,-0.008333333767950535,5.859510554798213e-17,-0.010416666977107525,-0.0416666679084301,0.0024801588151603937,-0.0037202381063252687,8.348356728138384e-18,1.0471563097258883e-17,1.0625181290357943e-17,0.0007440476329065859,-9.215718466126788e-19,-7.589415207398531e-19,-7.589415207398531e-19,-1.5419764345791148e-18,-7.930164505921508e-19,-7.930164505921508e-19,-3.3042352021841637e-18,-9.912706020142797e-19,-3.3042352021841637e-18,0.004761904943734407,-0.0019047618843615055,-0.0031746032182127237,8.414306080618435e-19,8.414306080618435e-19,-9.215718466126788e-19,0.0012698412174358964,-1.1211157535555369e-19,-1.1211157535555369e-19,6.092870737385702e-19,-3.7410111742353857e-19,-3.7410111742353857e-19,3.88678602998931e-33,1.1768641690829801e-33,3.88678602998931e-33,0.0059523810632526875,-0.0023809524718672037,7.479053287059589e-19,-0.0059523810632526875,5.451929839748989e-19,-7.589415207398531e-19,-1.1211157535555369e-19,0.0023809524718672037,1.5735999629873233e-20,1.5995809375172982e-33,-4.676263967794232e-19,8.921697228893918e-34,-1.9484433716130517e-18,-5.845330218236732e-19,5.7081792617579195e-33,0.0059523810632526875,-0.0023809524718672037,7.479053287059589e-19,5.451929839748989e-19,-0.0059523810632526875,-7.589415207398531e-19,-1.1211157535555369e-19,1.5735999629873233e-20,0.0023809524718672037,1.5995809375172982e-33,8.921697228893918e-34,-4.676263967794232e-19,6.400405109754117e-33,-5.845330218236732e-19,-1.9484433716130517e-18,0.004629629664123058,6.7959517173840836e-18,-0.013888888992369175,-2.1750897841026419e-32,-2.1750897841026419e-32,-1.5419764345791148e-18,6.092870737385702e-19,1.5995809375172982e-33,1.5995809375172982e-33,0.004629629664123058,1.3347459173678754e-33,1.3347459173678754e-33,6.847751239903047e-33,2.0543253352367157e-33,6.847751239903047e-33,0.008333333767950535,4.99386017077912e-18,-0.0055555556900799274,-0.008333333767950535,-1.1695521534104839e-32,-7.930164505921508e-19,-3.7410111742353857e-19,-4.676263967794232e-19,8.921697228893918e-34,1.3347459173678754e-33,0.0055555556900799274,8.889663171124087e-34,3.6274903432971446e-33,1.0882470478878457e-33,3.521700627168939e-33,0.008333333767950535,4.99386017077912e-18,-0.0055555556900799274,-1.1695521534104839e-32,-0.008333333767950535,-7.930164505921508e-19,-3.7410111742353857e-19,8.921697228893918e-34,-4.676263967794232e-19,1.3347459173678754e-33,8.889663171124087e-34,0.0055555556900799274,3.521700627168939e-33,1.0882470478878457e-33,3.6274903432971446e-33,0.0069444444961845875,1.8469619589329023e-17,-3.740940829578056e-32,-0.0416666679084301,5.859510554798213e-17,-3.3042352021841637e-18,3.88678602998931e-33,-1.9484433716130517e-18,6.400405109754117e-33,6.847751239903047e-33,3.6274903432971446e-33,3.521700627168939e-33,0.02083333395421505,-1.2335811476632919e-17,-2.3129645794903686e-17,0.010416666977107525,6.125418846923592e-18,-1.1281630707864281e-32,-0.010416666977107525,-0.010416666977107525,-9.912706020142797e-19,1.1768641690829801e-33,-5.845330218236732e-19,-5.845330218236732e-19,2.0543253352367157e-33,1.0882470478878457e-33,1.0882470478878457e-33,-1.2335811476632919e-17,0.010416666977107525,1.8229864674243556e-32,0.0069444444961845875,1.8469619589329023e-17,-3.740940829578056e-32,4.625929158980737e-17,-0.0416666679084301,-3.3042352021841637e-18,3.88678602998931e-33,5.7081792617579195e-33,-1.9484433716130517e-18,6.847751239903047e-33,3.521700627168939e-33,3.6274903432971446e-33,-2.3129645794903686e-17,1.8229864674243556e-32,0.02083333395421505,6.0,4.0,3.0,4.0,0.11144841462373734,-0.02745535783469677,-0.037261903285980225,-0.04553571343421936,-0.037261903285980225,0.0018601190531626344,0.0035714285913854837,0.004464285913854837,0.0035714285913854837,0.0034722222480922937,0.0062500000931322575,0.004999999888241291,0.0052083334885537624,0.0062500000931322575,0.0034722222480922937,-0.02745535783469677,0.021212797611951828,0.0035714285913854837,0.004464285913854837,0.0035714285913854837,-0.0027901786379516125,-0.0014285714132711291,-0.0017857142956927419,-0.0014285714132711291,6.600757772336883e-18,3.068687871339023e-18,3.0524312907605183e-18,1.3852214691996767e-17,3.068687871339023e-18,6.600757772336883e-18,-0.037261903285980225,0.0035714285913854837,0.04914682358503342,0.0062500000931322575,0.004999999888241291,5.854691731421724e-18,-0.0023809524718672037,3.4173839974043735e-19,3.053377740477644e-19,-0.010416666977107525,-0.004166666883975267,-0.0033333334140479565,-2.628407131680161e-32,-6.262554887233188e-33,-1.239004988166071e-32,-0.04553571343421936,0.004464285913854837,0.0062500000931322575,0.09761904925107956,0.0062500000931322575,6.5668640467375226e-18,-2.6482500088554303e-19,-0.004464285913854837,-2.5584360304141296e-19,-1.367234083299108e-32,-0.0062500000931322575,-5.5050854293465066e-33,-0.03125,-0.0062500000931322575,1.6190751890996458e-17,-0.037261903285980225,0.0035714285913854837,0.004999999888241291,0.0062500000931322575,0.04914682358503342,6.071532165918825e-18,3.053377740477644e-19,3.507197975845674e-19,-0.0023809524718672037,-1.239004988166071e-32,-6.26431886344339e-33,-0.0033333334140479565,3.168761505334668e-17,-0.004166666883975267,-0.010416666977107525,0.0018601190531626344,-0.0027901786379516125,5.854691731421724e-18,6.5668640467375226e-18,6.071532165918825e-18,0.0005580357392318547,-4.87890977618477e-19,-0.0,-4.87890977618477e-19,-1.1564823517837303e-18,-5.947623508688102e-19,-4.758098496757752e-19,-2.478176453336911e-18,-5.947623508688102e-19,-1.1564823517837303e-18,0.0035714285913854837,-0.0014285714132711291,-0.0023809524718672037,-2.6482500088554303e-19,3.053377740477644e-19,-4.87890977618477e-19,0.0009523809421807528,3.592558491417172e-21,1.2541294818254894e-20,-5.455641295759938e-19,1.70562406335841e-19,-2.244606807938808e-19,1.9945938754966274e-33,5.084960809626744e-34,9.646500617126209e-34,0.004464285913854837,-0.0017857142956927419,3.4173839974043735e-19,-0.004464285913854837,3.507197975845674e-19,-0.0,3.592558491417172e-21,0.0017857142956927419,-1.430939949132399e-35,-2.0579696145321607e-36,-3.507197975845674e-19,-8.467074903507768e-37,-1.4613325287097888e-18,-3.507197975845674e-19,7.57122319711204e-34,0.0035714285913854837,-0.0014285714132711291,3.053377740477644e-19,-2.5584360304141296e-19,-0.0023809524718672037,-4.87890977618477e-19,1.2541294818254894e-20,-1.430939949132399e-35,0.0009523809421807528,9.646500617126209e-34,5.092016989974043e-34,-2.244606807938808e-19,2.9665197880633574e-33,1.70562406335841e-19,-5.455641295759938e-19,0.0034722222480922937,6.600757772336883e-18,-0.010416666977107525,-1.367234083299108e-32,-1.239004988166071e-32,-1.1564823517837303e-18,-5.455641295759938e-19,-2.0579696145321607e-36,9.646500617126209e-34,0.0034722222480922937,1.0379781340008845e-33,1.0371273699644768e-33,5.135813062585301e-33,1.2325951827749302e-33,2.3967128604976696e-33,0.0062500000931322575,3.068687871339023e-18,-0.004166666883975267,-0.0062500000931322575,-6.26431886344339e-33,-5.947623508688102e-19,1.70562406335841e-19,-3.507197975845674e-19,5.092016989974043e-34,1.0379781340008845e-33,0.004166666883975267,4.270538834113715e-34,2.7206177574728585e-33,6.529482654669059e-34,1.2325951827749302e-33,0.004999999888241291,3.0524312907605183e-18,-0.0033333334140479565,-5.5050854293465066e-33,-0.0033333334140479565,-4.758098496757752e-19,-2.244606807938808e-19,-8.467074903507768e-37,-2.244606807938808e-19,1.0371273699644768e-33,4.270538834113715e-34,0.002222222276031971,2.113020339567165e-33,4.270538834113715e-34,1.0371273699644768e-33,0.0052083334885537624,1.3852214691996767e-17,-2.628407131680161e-32,-0.03125,3.168761505334668e-17,-2.478176453336911e-18,1.9945938754966274e-33,-1.4613325287097888e-18,2.9665197880633574e-33,5.135813062585301e-33,2.7206177574728585e-33,2.113020339567165e-33,0.015625,-7.401487216851996e-18,-8.095375945498229e-18,0.0062500000931322575,3.068687871339023e-18,-6.262554887233188e-33,-0.0062500000931322575,-0.004166666883975267,-5.947623508688102e-19,5.084960809626744e-34,-3.507197975845674e-19,1.70562406335841e-19,1.2325951827749302e-33,6.529482654669059e-34,4.270538834113715e-34,-7.401487216851996e-18,0.004166666883975267,4.8727186924300566e-33,0.0034722222480922937,6.600757772336883e-18,-1.239004988166071e-32,1.6190751890996458e-17,-0.010416666977107525,-1.1564823517837303e-18,9.646500617126209e-34,7.57122319711204e-34,-5.455641295759938e-19,2.3967128604976696e-33,1.2325951827749302e-33,1.0371273699644768e-33,-8.095375945498229e-18,4.8727186924300566e-33,0.0034722222480922937,6.0,4.0,3.0,5.0,0.09392856806516647,-0.022440476343035698,-0.030476190149784088,-0.037261903285980225,-0.025833332911133766,0.0014880952658131719,0.0028571428265422583,0.0035714285913854837,0.0023809524718672037,0.0027777778450399637,0.004999999888241291,0.0033333334140479565,0.004166666883975267,0.004166666883975267,0.0019841270986944437,-0.022440476343035698,0.01716071367263794,0.0028571428265422583,0.0035714285913854837,0.0023809524718672037,-0.0022321429569274187,-0.0011428571306169033,-0.0014285714132711291,-0.0009523809421807528,-9.11757017772492e-18,-4.585081160535521e-18,-3.2332655871689515e-18,-1.8103299346337465e-17,-3.923414839060985e-18,-6.489745998229204e-18,-0.030476190149784088,0.0028571428265422583,0.03976190462708473,0.004999999888241291,0.0033333334140479565,-9.540979117872439e-18,-0.0019047618843615055,4.74455238025143e-19,1.6553796912352613e-19,-0.008333333767950535,-0.0033333334140479565,-0.002222222276031971,-8.355563133427374e-32,5.421010862427522e-20,-4.3305776934840206e-19,-0.037261903285980225,0.0035714285913854837,0.004999999888241291,0.07892857491970062,0.004166666883975267,-1.2505956738370788e-17,6.870444294628159e-19,-0.0035714285913854837,2.3815954137018907e-19,-5.142806592757121e-32,-0.004999999888241291,5.421010862427522e-20,-0.02500000037252903,-0.004166666883975267,-3.887560695409874e-18,-0.025833332911133766,0.0023809524718672037,0.0033333334140479565,0.004166666883975267,0.024821428582072258,-7.101524229780054e-18,4.838089446931044e-19,6.146540800467557e-19,-0.0011904762359336019,-2.9736413001826235e-32,-1.523259652535658e-32,-0.0016666667070239782,-7.930164816114238e-18,-0.0020833334419876337,-0.003968254197388887,0.0014880952658131719,-0.0022321429569274187,-9.540979117872439e-18,-1.2505956738370788e-17,-7.101524229780054e-18,0.00044642857392318547,6.505213034913027e-19,6.505213034913027e-19,3.7947076036992655e-19,1.850371804212999e-18,9.516196993515503e-19,6.34413150133963e-19,3.965082408057119e-18,7.930164505921508e-19,1.1111003282469272e-18,0.0028571428265422583,-0.0011428571306169033,-0.0019047618843615055,6.870444294628159e-19,4.838089446931044e-19,6.505213034913027e-19,0.0007619047537446022,-1.9769641196941797e-19,-1.421093448932746e-19,-8.952563491199201e-20,-1.2853560830931204e-19,-8.569040553954136e-20,5.8233839529522424e-33,1.1080310769896656e-33,1.4324103961380067e-33,0.0035714285913854837,-0.0014285714132711291,4.74455238025143e-19,-0.0035714285913854837,6.146540800467557e-19,6.505213034913027e-19,-1.9769641196941797e-19,0.0014285714132711291,-1.6222924667331402e-19,2.604433365205522e-33,1.9785793513989028e-20,8.804813601158834e-34,-1.722112176960247e-18,-2.0908096336347064e-19,1.0833355937178202e-33,0.0023809524718672037,-0.0009523809421807528,1.6553796912352613e-19,2.3815954137018907e-19,-0.0011904762359336019,3.7947076036992655e-19,-1.421093448932746e-19,-1.6222924667331402e-19,0.0004761904710903764,1.6071195297259154e-33,8.51106674643796e-34,9.486769009248164e-20,4.282851219083617e-33,8.370678765654799e-20,4.717685036967825e-19,0.0027777778450399637,-9.11757017772492e-18,-0.008333333767950535,-5.142806592757121e-32,-2.9736413001826235e-32,1.850371804212999e-18,-8.952563491199201e-20,2.604433365205522e-33,1.6071195297259154e-33,0.0027777778450399637,3.649290620717113e-33,2.4328602301404165e-33,1.6434602681893725e-32,3.286920609847142e-33,4.695600713777924e-33,0.004999999888241291,-4.585081160535521e-18,-0.0033333334140479565,-0.004999999888241291,-1.523259652535658e-32,9.516196993515503e-19,-1.2853560830931204e-19,1.9785793513989028e-20,8.51106674643796e-34,3.649290620717113e-33,0.0033333334140479565,1.2604633069325457e-33,7.763692764643927e-33,1.5546129521395685e-33,2.4148803093606203e-33,0.0033333334140479565,-3.2332655871689515e-18,-0.002222222276031971,5.421010862427522e-20,-0.0016666667070239782,6.34413150133963e-19,-8.569040553954136e-20,8.804813601158834e-34,9.486769009248164e-20,2.4328602301404165e-33,1.2604633069325457e-33,0.0011111111380159855,5.9648370656584424e-33,-2.710505431213761e-20,2.1652888467420103e-19,0.004166666883975267,-1.8103299346337465e-17,-8.355563133427374e-32,-0.02500000037252903,-7.930164816114238e-18,3.965082408057119e-18,5.8233839529522424e-33,-1.722112176960247e-18,4.282851219083617e-33,1.6434602681893725e-32,7.763692764643927e-33,5.9648370656584424e-33,0.012500000186264515,6.644458308135964e-33,1.9825412040285595e-18,0.004166666883975267,-3.923414839060985e-18,5.421010862427522e-20,-0.004166666883975267,-0.0020833334419876337,7.930164505921508e-19,1.1080310769896656e-33,-2.0908096336347064e-19,8.370678765654799e-20,3.286920609847142e-33,1.5546129521395685e-33,-2.710505431213761e-20,6.644458308135964e-33,0.0020833334419876337,-3.8760778775439897e-20,0.0019841270986944437,-6.489745998229204e-18,-4.3305776934840206e-19,-3.887560695409874e-18,-0.003968254197388887,1.1111003282469272e-18,1.4324103961380067e-33,1.0833355937178202e-33,4.717685036967825e-19,4.695600713777924e-33,2.4148803093606203e-33,2.1652888467420103e-19,1.9825412040285595e-18,-3.8760778775439897e-20,0.0009920635493472219,6.0,4.0,3.0,6.0,0.08123110234737396,-0.01898384280502796,-0.02579365111887455,-0.03154762089252472,-0.01898384280502796,0.0012400794075801969,0.0023809524718672037,0.0029761905316263437,0.001700680237263441,0.002314814832061529,0.004166666883975267,0.0023809524718672037,0.0034722222480922937,0.0029761905316263437,0.0012400794075801969,-0.01898384280502796,0.01441397424787283,0.0023809524718672037,0.0029761905316263437,0.001700680237263441,-0.0018601190531626344,-0.0009523809421807528,-0.0011904762359336019,-0.0006802721181884408,3.3979758586920418e-18,2.49693008538956e-18,1.111307226797642e-18,9.234809794664512e-18,1.1838289428347333e-18,1.647570072276995e-18,-0.02579365111887455,0.0023809524718672037,0.033399470150470734,0.004166666883975267,0.0023809524718672037,4.2825985813177425e-18,-0.0015873016091063619,4.587763397069301e-19,1.9127754211479476e-19,-0.0069444444961845875,-0.0027777778450399637,-0.0015873016091063619,-1.8585385593810064e-32,9.973091755822817e-20,-1.5853596278644717e-19,-0.03154762089252472,0.0029761905316263437,0.004166666883975267,0.06626984477043152,0.0029761905316263437,5.805841339576486e-18,5.158320530359643e-19,-0.0029761905316263437,-8.721073442484542e-21,-1.143724852749789e-32,-0.004166666883975267,8.943785683183335e-20,-0.02083333395421505,-0.0029761905316263437,4.736715360935373e-18,-0.01898384280502796,0.001700680237263441,0.0023809524718672037,0.0029761905316263437,0.01441397424787283,2.656295322589486e-18,2.710505431213761e-20,-1.3552527156068805e-19,-0.0006802721181884408,-5.662788282084886e-33,-2.8356712874405053e-33,-0.0009523809421807528,1.4177922021273197e-17,-0.0011904762359336019,-0.0018601190531626344,0.0012400794075801969,-0.0018601190531626344,4.2825985813177425e-18,5.805841339576486e-18,2.656295322589486e-18,0.00037202381645329297,-3.7947076036992655e-19,-4.336808689942018e-19,-1.8973538018496328e-19,-7.709882172895574e-19,-3.965082252960754e-19,-2.2521853333134423e-19,-1.6521176010920818e-18,-2.7759480838698353e-19,-3.2636343859854937e-19,0.0023809524718672037,-0.0009523809421807528,-0.0015873016091063619,5.158320530359643e-19,2.710505431213761e-20,-3.7947076036992655e-19,0.0006349206087179482,-9.486769009248164e-20,-3.485700650324672e-20,3.046435368692851e-19,-1.8705055871176929e-19,7.563914650830199e-20,2.1185229388259594e-33,7.652143641357923e-22,-9.98522190714151e-21,0.0029761905316263437,-0.0011904762359336019,4.587763397069301e-19,-0.0029761905316263437,-1.3552527156068805e-19,-4.336808689942018e-19,-9.486769009248164e-20,0.0011904762359336019,-1.3155806810644398e-20,8.666684749742561e-34,-2.338131983897116e-19,4.882438816252431e-21,-9.742216858065258e-19,1.5898650480165008e-19,3.8783133452663178e-22,0.001700680237263441,-0.0006802721181884408,1.9127754211479476e-19,-8.721073442484542e-21,-0.0006802721181884408,-1.8973538018496328e-19,-3.485700650324672e-20,-1.3155806810644398e-20,0.0002721088530961424,4.333342374871281e-34,2.2870418089598426e-34,-4.1654010988906036e-20,9.14816723583937e-34,1.6644235864520788e-20,-1.510731237499676e-22,0.002314814832061529,3.3979758586920418e-18,-0.0069444444961845875,-1.143724852749789e-32,-5.662788282084886e-33,-7.709882172895574e-19,3.046435368692851e-19,8.666684749742561e-34,4.333342374871281e-34,0.002314814832061529,6.673729586839377e-34,4.633536540599926e-34,3.4238756199515236e-33,5.6870687607495936e-34,6.638824751459648e-34,0.004166666883975267,2.49693008538956e-18,-0.0027777778450399637,-0.004166666883975267,-2.8356712874405053e-33,-3.965082252960754e-19,-1.8705055871176929e-19,-2.338131983897116e-19,2.2870418089598426e-34,6.673729586839377e-34,0.0027777778450399637,1.9721454690625237e-34,1.8137451716485723e-33,2.4760681882342783e-34,3.442367707293393e-34,0.0023809524718672037,1.111307226797642e-18,-0.0015873016091063619,8.943785683183335e-20,-0.0009523809421807528,-2.2521853333134423e-19,7.563914650830199e-20,4.882438816252431e-21,-4.1654010988906036e-20,4.633536540599926e-34,1.9721454690625237e-34,0.0006349206087179482,4.81482486096809e-34,-4.0657581468206416e-20,7.339960669860295e-20,0.0034722222480922937,9.234809794664512e-18,-1.8585385593810064e-32,-0.02083333395421505,1.4177922021273197e-17,-1.6521176010920818e-18,2.1185229388259594e-33,-9.742216858065258e-19,9.14816723583937e-34,3.4238756199515236e-33,1.8137451716485723e-33,4.81482486096809e-34,0.010416666977107525,-2.8196140695271088e-18,-2.2716617144263096e-18,0.0029761905316263437,1.1838289428347333e-18,9.973091755822817e-20,-0.0029761905316263437,-0.0011904762359336019,-2.7759480838698353e-19,7.652143641357923e-22,1.5898650480165008e-19,1.6644235864520788e-20,5.6870687607495936e-34,2.4760681882342783e-34,-4.0657581468206416e-20,-2.8196140695271088e-18,0.0011904762359336019,-7.774468952111597e-20,0.0012400794075801969,1.647570072276995e-18,-1.5853596278644717e-19,4.736715360935373e-18,-0.0018601190531626344,-3.2636343859854937e-19,-9.98522190714151e-21,3.8783133452663178e-22,-1.510731237499676e-22,6.638824751459648e-34,3.442367707293393e-34,7.339960669860295e-20,-2.2716617144263096e-18,-7.774468952111597e-20,0.00037202381645329297,6.0,4.0,3.0,7.0,0.07158683240413666,-0.01645408198237419,-0.022363945841789246,-0.027359694242477417,-0.014547902159392834,0.0010629252064973116,0.0020408162381500006,0.0025510203558951616,0.0012755101779475808,0.0019841270986944437,0.0035714285913854837,0.0017857142956927419,0.0029761905316263437,0.0022321429569274187,0.0008267195662483573,-0.01645408198237419,0.012427721172571182,0.0020408162381500006,0.0025510203558951616,0.0012755101779475808,-0.0015943878097459674,-0.0008163265301845968,-0.0010204081190750003,-0.0005102040595375001,3.7718617023611634e-18,1.6982945451975483e-18,1.0299920638612292e-18,7.915551016232263e-18,1.0299920638612292e-18,9.001953282352006e-19,-0.022363945841789246,0.0020408162381500006,0.028798185288906097,0.0035714285913854837,0.0017857142956927419,3.74049749507499e-18,-0.0013605442363768816,1.9942941997620191e-19,8.454295739591399e-20,-0.0059523810632526875,-0.0023809524718672037,-0.0011904762359336019,-1.8327424827890052e-32,-1.3695247568118803e-22,2.220062808200711e-19,-0.027359694242477417,0.0025510203558951616,0.0035714285913854837,0.05712159723043442,0.0022321429569274187,4.640225569661675e-18,-2.0160210032795194e-19,-0.0025510203558951616,-2.669202235277457e-19,-9.988954998628366e-33,-0.0035714285913854837,-8.182418718637873e-22,-0.01785714365541935,-0.0022321429569274187,2.847540927777818e-18,-0.014547902159392834,0.0012755101779475808,0.0017857142956927419,0.0022321429569274187,0.009148242883384228,2.222614453595284e-18,1.4907779871675686e-19,2.710505431213761e-20,-0.00042517005931586027,-4.6761007318657205e-33,-2.2860542100341595e-33,-0.0005952381179668009,1.0101518887149611e-17,-0.0007440476329065859,-0.0009920635493472219,0.0010629252064973116,-0.0015943878097459674,3.74049749507499e-18,4.640225569661675e-18,2.222614453595284e-18,0.0003188775444868952,-3.5236570605778894e-19,-2.981555974335137e-19,-2.303929616531697e-19,-6.608470507765904e-19,-3.398641894181512e-19,-1.7184311456862037e-19,-1.4161008452493172e-18,-2.139337864480749e-19,-1.9949882559947394e-19,0.0020408162381500006,-0.0008163265301845968,-0.0013605442363768816,-2.0160210032795194e-19,1.4907779871675686e-19,-3.5236570605778894e-19,0.0005442177061922848,-0.0,-1.4354418983215012e-20,-3.1175093118628214e-19,1.3429184186979492e-19,-8.108768826796075e-20,1.5407439555097887e-33,5.478098774812032e-23,1.2900002821799509e-21,0.0025510203558951616,-0.0010204081190750003,1.9942941997620191e-19,-0.0025510203558951616,2.710505431213761e-20,-2.981555974335137e-19,-0.0,0.0010204081190750003,4.0657581468206416e-20,7.703719777548943e-34,-2.0041132213739357e-19,3.2729674874551494e-22,-8.350471518771953e-19,-1.2503358408970395e-19,-6.471344326680435e-22,0.0012755101779475808,-0.0005102040595375001,8.454295739591399e-20,-2.669202235277457e-19,-0.00042517005931586027,-2.303929616531697e-19,-1.4354418983215012e-20,4.0657581468206416e-20,0.0001700680295471102,4.574083617919685e-34,2.046300565911438e-34,-1.6218969710027632e-20,6.2592723192585165e-34,5.509208995240989e-20,3.1285563735669525e-20,0.0019841270986944437,3.7718617023611634e-18,-0.0059523810632526875,-9.988954998628366e-33,-4.6761007318657205e-33,-6.608470507765904e-19,-3.1175093118628214e-19,7.703719777548943e-34,4.574083617919685e-34,0.0019841270986944437,5.720339383475191e-34,3.769389546925932e-34,2.9347504001934543e-33,4.451577361932329e-34,4.206104294944384e-34,0.0035714285913854837,1.6982945451975483e-18,-0.0023809524718672037,-0.0035714285913854837,-2.2860542100341595e-33,-3.398641894181512e-19,1.3429184186979492e-19,-2.0041132213739357e-19,2.046300565911438e-34,5.720339383475191e-34,0.0023809524718672037,1.465913775928617e-34,1.5546386660784928e-33,2.3254568265914707e-34,2.201617578377381e-34,0.0017857142956927419,1.0299920638612292e-18,-0.0011904762359336019,-8.182418718637873e-22,-0.0005952381179668009,-1.7184311456862037e-19,-8.108768826796075e-20,3.2729674874551494e-22,-1.6218969710027632e-20,3.769389546925932e-34,1.465913775928617e-34,0.00039682540227659047,1.3722250853759055e-33,-1.0293897013590632e-34,-7.507709666911781e-20,0.0029761905316263437,7.915551016232263e-18,-1.8327424827890052e-32,-0.01785714365541935,1.0101518887149611e-17,-1.4161008452493172e-18,1.5407439555097887e-33,-8.350471518771953e-19,6.2592723192585165e-34,2.9347504001934543e-33,1.5546386660784928e-33,1.3722250853759055e-33,0.008928571827709675,-1.5105074855478771e-18,-1.4318352680661478e-18,0.0022321429569274187,1.0299920638612292e-18,-1.3695247568118803e-22,-0.0022321429569274187,-0.0007440476329065859,-2.139337864480749e-19,5.478098774812032e-23,-1.2503358408970395e-19,5.509208995240989e-20,4.451577361932329e-34,2.3254568265914707e-34,-1.0293897013590632e-34,-1.5105074855478771e-18,0.0007440476329065859,5.9157897536196826e-21,0.0008267195662483573,9.001953282352006e-19,2.220062808200711e-19,2.847540927777818e-18,-0.0009920635493472219,-1.9949882559947394e-19,1.2900002821799509e-21,-6.471344326680435e-22,3.1285563735669525e-20,4.206104294944384e-34,2.201617578377381e-34,-7.507709666911781e-20,-1.4318352680661478e-18,5.9157897536196826e-21,0.0001653439103392884,6.0,4.0,3.0,8.0,0.06400462985038757,-0.014521329663693905,-0.01974206417798996,-0.02415674552321434,-0.011507936753332615,0.0009300595265813172,0.0017857142956927419,0.0022321429569274187,0.0009920635493472219,0.0017361111240461469,0.0031250000465661287,0.0013888889225199819,0.0026041667442768812,0.0017361111240461469,0.0005787037080153823,-0.014521329663693905,0.010923858731985092,0.0017857142956927419,0.0022321429569274187,0.0009920635493472219,-0.0013950893189758062,-0.0007142857066355646,-0.0008928571478463709,-0.00039682540227659047,2.8912057243629608e-18,1.4869058513226313e-18,7.201393570843914e-19,6.1954409265471244e-18,8.260588005460409e-19,5.817680672286381e-19,-0.01974206417798996,0.0017857142956927419,0.025314154103398323,0.0031250000465661287,0.0013888889225199819,2.3554476658524183e-18,-0.0011904762359336019,-3.965082252960754e-19,-1.1693357303764328e-19,-0.0052083334885537624,-0.0020833334419876337,-0.0009259259095415473,-1.1860600613894629e-32,-7.490573723563573e-34,1.7015773407054357e-19,-0.02415674552321434,0.0022321429569274187,0.0031250000465661287,0.05019841343164444,0.0017361111240461469,2.573173183604951e-18,-3.965082252960754e-19,-0.0022321429569274187,1.4163893264912605e-33,-5.332685958486971e-33,-0.0031250000465661287,-1.3734298752500022e-33,-0.015625,-0.0017361111240461469,1.927470620772076e-18,-0.011507936753332615,0.0009920635493472219,0.0013888889225199819,0.0017361111240461469,0.006181500386446714,1.2018874329801082e-18,-1.762258793454443e-19,1.542540808827616e-33,-0.00028344671591185033,-2.4908111832809937e-33,-1.2809886321593529e-33,-0.00039682540227659047,8.508405423319432e-18,-0.0004960317746736109,-0.0005787037080153823,0.0009300595265813172,-0.0013950893189758062,2.3554476658524183e-18,2.573173183604951e-18,1.2018874329801082e-18,0.00027901786961592734,5.569996430505979e-20,3.7172646283065783e-19,5.0125471372442764e-20,-5.782411758918651e-19,-2.973811754344051e-19,-1.321694127402575e-19,-1.2390882266684555e-18,-1.652117626941476e-19,-1.3767647106590584e-19,0.0017857142956927419,-0.0007142857066355646,-0.0011904762359336019,-3.965082252960754e-19,-1.762258793454443e-19,5.569996430505979e-20,0.0004761904710903764,1.5860328753349075e-19,7.04903478607686e-20,-1.1543351081243757e-34,-5.936580523269827e-35,-3.691723234675787e-35,-2.4735753136910696e-34,-3.2981005139167346e-35,-8.460096840729388e-36,0.0022321429569274187,-0.0008928571478463709,-3.965082252960754e-19,-0.0022321429569274187,1.542540808827616e-33,3.7172646283065783e-19,1.5860328753349075e-19,0.0008928571478463709,9.025854867543278e-35,-7.703719777548943e-34,-3.961913251482804e-34,-1.7608502447078474e-34,-1.650797042711633e-33,-2.201062891980587e-34,-1.834219000120909e-34,0.0009920635493472219,-0.00039682540227659047,-1.1693357303764328e-19,1.4163893264912605e-33,-0.00028344671591185033,5.0125471372442764e-20,7.04903478607686e-20,9.025854867543278e-35,0.00011337868636474013,-1.038808464639397e-34,-5.34244331924164e-35,-1.6940658945086007e-20,-6.481860439781371e-34,-7.586484993835426e-35,3.046122332529788e-20,0.0017361111240461469,2.8912057243629608e-18,-0.0052083334885537624,-5.332685958486971e-33,-2.4908111832809937e-33,-5.782411758918651e-19,-1.1543351081243757e-34,-7.703719777548943e-34,-1.038808464639397e-34,0.0017361111240461469,6.162975913874651e-34,2.7391004316763715e-34,2.5679065312926504e-33,3.4238754821982793e-34,2.853229453704196e-34,0.0031250000465661287,1.4869058513226313e-18,-0.0020833334419876337,-0.0031250000465661287,-1.2809886321593529e-33,-2.973811754344051e-19,-5.936580523269827e-35,-3.961913251482804e-34,-5.34244331924164e-35,6.162975913874651e-34,0.0020833334419876337,1.4086801728074039e-34,1.320637689270604e-33,1.7608502447078474e-34,1.4673752230556012e-34,0.0013888889225199819,7.201393570843914e-19,-0.0009259259095415473,-1.3734298752500022e-33,-0.00039682540227659047,-1.321694127402575e-19,-3.691723234675787e-35,-1.7608502447078474e-34,-1.6940658945086007e-20,2.7391004316763715e-34,1.4086801728074039e-34,0.00026455026818439364,9.870390964984584e-34,-1.0621079335752707e-34,-4.861649360234144e-20,0.0026041667442768812,6.1954409265471244e-18,-1.1860600613894629e-32,-0.015625,8.508405423319432e-18,-1.2390882266684555e-18,-2.4735753136910696e-34,-1.650797042711633e-33,-6.481860439781371e-34,2.5679065312926504e-33,1.320637689270604e-33,9.870390964984584e-34,0.0078125,-1.7622588710026254e-18,-9.63735310386038e-19,0.0017361111240461469,8.260588005460409e-19,-7.490573723563573e-34,-0.0017361111240461469,-0.0004960317746736109,-1.652117626941476e-19,-3.2981005139167346e-35,-2.201062891980587e-34,-7.586484993835426e-35,3.4238754821982793e-34,1.7608502447078474e-34,-1.0621079335752707e-34,-1.7622588710026254e-18,0.0004960317746736109,6.865070105822624e-35,0.0005787037080153823,5.817680672286381e-19,1.7015773407054357e-19,1.927470620772076e-18,-0.0005787037080153823,-1.3767647106590584e-19,-8.460096840729388e-36,-1.834219000120909e-34,3.046122332529788e-20,2.853229453704196e-34,1.4673752230556012e-34,-4.861649360234144e-20,-9.63735310386038e-19,6.865070105822624e-35,8.26719551696442e-05,6.0,4.0,4.0,3.0,0.11144841462373734,-0.02745535783469677,-0.037261903285980225,-0.037261903285980225,-0.04553571343421936,0.0018601190531626344,0.0035714285913854837,0.0035714285913854837,0.004464285913854837,0.0034722222480922937,0.004999999888241291,0.0062500000931322575,0.0034722222480922937,0.0062500000931322575,0.0052083334885537624,-0.02745535783469677,0.021212797611951828,0.0035714285913854837,0.0035714285913854837,0.004464285913854837,-0.0027901786379516125,-0.0014285714132711291,-0.0014285714132711291,-0.0017857142956927419,6.600757772336883e-18,3.0524312907605183e-18,3.068687871339023e-18,6.600757772336883e-18,3.068687871339023e-18,1.3852214691996767e-17,-0.037261903285980225,0.0035714285913854837,0.04914682358503342,0.004999999888241291,0.0062500000931322575,6.179952383167375e-18,-0.0023809524718672037,3.053377740477644e-19,3.4173839974043735e-19,-0.010416666977107525,-0.0033333334140479565,-0.004166666883975267,-1.239004988166071e-32,-6.262554887233188e-33,-2.628407131680161e-32,-0.037261903285980225,0.0035714285913854837,0.004999999888241291,0.04914682358503342,0.0062500000931322575,5.8193752551687724e-18,3.053377740477644e-19,-0.0023809524718672037,3.4173839974043735e-19,-1.239004988166071e-32,-0.0033333334140479565,-6.262554887233188e-33,-0.010416666977107525,-0.004166666883975267,-2.628407131680161e-32,-0.04553571343421936,0.004464285913854837,0.0062500000931322575,0.0062500000931322575,0.09761904925107956,6.938893903907228e-18,-2.6482500088554303e-19,-2.6482500088554303e-19,-0.004464285913854837,-1.367234083299108e-32,-5.5029684374890725e-33,-0.0062500000931322575,-1.367234083299108e-32,-0.0062500000931322575,-0.03125,0.0018601190531626344,-0.0027901786379516125,6.179952383167375e-18,5.8193752551687724e-18,6.938893903907228e-18,0.0005580357392318547,-4.87890977618477e-19,-4.87890977618477e-19,-0.0,-1.1564823517837303e-18,-4.758098496757752e-19,-5.947623508688102e-19,-1.1564823517837303e-18,-5.947623508688102e-19,-2.478176453336911e-18,0.0035714285913854837,-0.0014285714132711291,-0.0023809524718672037,3.053377740477644e-19,-2.6482500088554303e-19,-4.87890977618477e-19,0.0009523809421807528,1.2541294818254894e-20,3.592558491417172e-21,-5.455641295759938e-19,-2.244606807938808e-19,1.70562406335841e-19,9.646500617126209e-34,5.084960809626744e-34,1.9945938754966274e-33,0.0035714285913854837,-0.0014285714132711291,3.053377740477644e-19,-0.0023809524718672037,-2.6482500088554303e-19,-4.87890977618477e-19,1.2541294818254894e-20,0.0009523809421807528,3.592558491417172e-21,9.646500617126209e-34,-2.244606807938808e-19,5.084960809626744e-34,-5.455641295759938e-19,1.70562406335841e-19,1.9945938754966274e-33,0.004464285913854837,-0.0017857142956927419,3.4173839974043735e-19,3.4173839974043735e-19,-0.004464285913854837,-0.0,3.592558491417172e-21,3.592558491417172e-21,0.0017857142956927419,-2.0579696145321607e-36,-1.6934149807015536e-36,-3.507197975845674e-19,-2.0579696145321607e-36,-3.507197975845674e-19,-1.4613325287097888e-18,0.0034722222480922937,6.600757772336883e-18,-0.010416666977107525,-1.239004988166071e-32,-1.367234083299108e-32,-1.1564823517837303e-18,-5.455641295759938e-19,9.646500617126209e-34,-2.0579696145321607e-36,0.0034722222480922937,1.0371273699644768e-33,1.0379781340008845e-33,2.3967128604976696e-33,1.2325951827749302e-33,5.135813062585301e-33,0.004999999888241291,3.0524312907605183e-18,-0.0033333334140479565,-0.0033333334140479565,-5.5029684374890725e-33,-4.758098496757752e-19,-2.244606807938808e-19,-2.244606807938808e-19,-1.6934149807015536e-36,1.0371273699644768e-33,0.002222222276031971,4.270538834113715e-34,1.0371273699644768e-33,4.270538834113715e-34,2.113020339567165e-33,0.0062500000931322575,3.068687871339023e-18,-0.004166666883975267,-6.262554887233188e-33,-0.0062500000931322575,-5.947623508688102e-19,1.70562406335841e-19,5.084960809626744e-34,-3.507197975845674e-19,1.0379781340008845e-33,4.270538834113715e-34,0.004166666883975267,1.2325951827749302e-33,6.529482654669059e-34,2.7206177574728585e-33,0.0034722222480922937,6.600757772336883e-18,-1.239004988166071e-32,-0.010416666977107525,-1.367234083299108e-32,-1.1564823517837303e-18,9.646500617126209e-34,-5.455641295759938e-19,-2.0579696145321607e-36,2.3967128604976696e-33,1.0371273699644768e-33,1.2325951827749302e-33,0.0034722222480922937,1.0379781340008845e-33,5.135813062585301e-33,0.0062500000931322575,3.068687871339023e-18,-6.262554887233188e-33,-0.004166666883975267,-0.0062500000931322575,-5.947623508688102e-19,5.084960809626744e-34,1.70562406335841e-19,-3.507197975845674e-19,1.2325951827749302e-33,4.270538834113715e-34,6.529482654669059e-34,1.0379781340008845e-33,0.004166666883975267,2.7206177574728585e-33,0.0052083334885537624,1.3852214691996767e-17,-2.628407131680161e-32,-2.628407131680161e-32,-0.03125,-2.478176453336911e-18,1.9945938754966274e-33,1.9945938754966274e-33,-1.4613325287097888e-18,5.135813062585301e-33,2.113020339567165e-33,2.7206177574728585e-33,5.135813062585301e-33,2.7206177574728585e-33,0.015625,6.0,4.0,4.0,4.0,0.09015624970197678,-0.02126116119325161,-0.028883928433060646,-0.028883928433060646,-0.028883928433060646,0.0013950893189758062,0.0026785715017467737,0.0026785715017467737,0.0026785715017467737,0.0026041667442768812,0.0037499999161809683,0.0037499999161809683,0.0026041667442768812,0.0037499999161809683,0.0026041667442768812,-0.02126116119325161,0.016177454963326454,0.0026785715017467737,0.0026785715017467737,0.0026785715017467737,-0.0020926338620483875,-0.0010714285308495164,-0.0010714285308495164,-0.0010714285308495164,4.950568432650239e-18,1.4772746772579467e-18,1.4772746772579467e-18,4.950568432650239e-18,1.4772746772579467e-18,4.950568432650239e-18,-0.028883928433060646,0.0026785715017467737,0.037485118955373764,0.0037499999161809683,0.0037499999161809683,3.686287386450715e-18,-0.0017857142956927419,4.703876290617018e-20,4.703876290617018e-20,-0.0078125,-0.0024999999441206455,-0.0024999999441206455,-7.585035255734202e-33,-3.1085477909755064e-33,-7.585035255734202e-33,-0.028883928433060646,0.0026785715017467737,0.0037499999161809683,0.037485118955373764,0.0037499999161809683,3.6901155783256105e-18,4.703876290617018e-20,-0.0017857142956927419,4.703876290617018e-20,-7.585035255734202e-33,-0.0024999999441206455,-3.1085477909755064e-33,-0.0078125,-0.0024999999441206455,-7.585035255734202e-33,-0.028883928433060646,0.0026785715017467737,0.0037499999161809683,0.0037499999161809683,0.037485118955373764,3.469446951953614e-18,4.703876290617018e-20,4.703876290617018e-20,-0.0017857142956927419,-7.585035255734202e-33,-3.1085477909755064e-33,-0.0024999999441206455,-7.585035255734202e-33,-0.0024999999441206455,-0.0078125,0.0013950893189758062,-0.0020926338620483875,3.686287386450715e-18,3.6901155783256105e-18,3.469446951953614e-18,0.0004185267898719758,-2.710505431213761e-20,-2.710505431213761e-20,-0.0,-8.673617379884035e-19,-3.5685740018152845e-19,-3.5685740018152845e-19,-8.673617379884035e-19,-3.5685740018152845e-19,-8.673617379884035e-19,0.0026785715017467737,-0.0010714285308495164,-0.0017857142956927419,4.703876290617018e-20,4.703876290617018e-20,-2.710505431213761e-20,0.0007142857066355646,-8.02179724773466e-20,-8.02179724773466e-20,-4.091731101066924e-19,1.0233744121656519e-19,1.0233744121656519e-19,5.956602957319673e-35,1.934096085849271e-36,5.956602957319673e-35,0.0026785715017467737,-0.0010714285308495164,4.703876290617018e-20,-0.0017857142956927419,4.703876290617018e-20,-2.710505431213761e-20,-8.02179724773466e-20,0.0007142857066355646,-8.02179724773466e-20,5.956602957319673e-35,1.0233744121656519e-19,1.934096085849271e-36,-4.091731101066924e-19,1.0233744121656519e-19,5.956602957319673e-35,0.0026785715017467737,-0.0010714285308495164,4.703876290617018e-20,4.703876290617018e-20,-0.0017857142956927419,-0.0,-8.02179724773466e-20,-8.02179724773466e-20,0.0007142857066355646,5.956602957319673e-35,1.934096085849271e-36,1.0233744121656519e-19,5.956602957319673e-35,1.0233744121656519e-19,-4.091731101066924e-19,0.0026041667442768812,4.950568432650239e-18,-0.0078125,-7.585035255734202e-33,-7.585035255734202e-33,-8.673617379884035e-19,-4.091731101066924e-19,5.956602957319673e-35,5.956602957319673e-35,0.0026041667442768812,6.227868712169811e-34,6.227868712169811e-34,1.797534553537756e-33,7.395570821143093e-34,1.797534553537756e-33,0.0037499999161809683,1.4772746772579467e-18,-0.0024999999441206455,-0.0024999999441206455,-3.1085477909755064e-33,-3.5685740018152845e-19,1.0233744121656519e-19,1.0233744121656519e-19,1.934096085849271e-36,6.227868712169811e-34,0.0016666667070239782,2.9501372539037334e-34,6.227868712169811e-34,2.9501372539037334e-34,7.395570821143093e-34,0.0037499999161809683,1.4772746772579467e-18,-0.0024999999441206455,-3.1085477909755064e-33,-0.0024999999441206455,-3.5685740018152845e-19,1.0233744121656519e-19,1.934096085849271e-36,1.0233744121656519e-19,6.227868712169811e-34,2.9501372539037334e-34,0.0016666667070239782,7.395570821143093e-34,2.9501372539037334e-34,6.227868712169811e-34,0.0026041667442768812,4.950568432650239e-18,-7.585035255734202e-33,-0.0078125,-7.585035255734202e-33,-8.673617379884035e-19,5.956602957319673e-35,-4.091731101066924e-19,5.956602957319673e-35,1.797534553537756e-33,6.227868712169811e-34,7.395570821143093e-34,0.0026041667442768812,6.227868712169811e-34,1.797534553537756e-33,0.0037499999161809683,1.4772746772579467e-18,-3.1085477909755064e-33,-0.0024999999441206455,-0.0024999999441206455,-3.5685740018152845e-19,1.934096085849271e-36,1.0233744121656519e-19,1.0233744121656519e-19,7.395570821143093e-34,2.9501372539037334e-34,2.9501372539037334e-34,6.227868712169811e-34,0.0016666667070239782,6.227868712169811e-34,0.0026041667442768812,4.950568432650239e-18,-7.585035255734202e-33,-7.585035255734202e-33,-0.0078125,-8.673617379884035e-19,5.956602957319673e-35,5.956602957319673e-35,-4.091731101066924e-19,1.797534553537756e-33,7.395570821143093e-34,6.227868712169811e-34,1.797534553537756e-33,6.227868712169811e-34,0.0026041667442768812,6.0,4.0,4.0,5.0,0.07582738250494003,-0.0173660721629858,-0.02360714226961136,-0.02360714226961136,-0.019999999552965164,0.0011160714784637094,0.002142857061699033,0.002142857061699033,0.0017857142956927419,0.0020833334419876337,0.003000000026077032,0.0024999999441206455,0.0020833334419876337,0.0024999999441206455,0.0014880952658131719,-0.0173660721629858,0.01308482140302658,0.002142857061699033,0.002142857061699033,0.0017857142956927419,-0.0016741071594879031,-0.0008571428479626775,-0.0008571428479626775,-0.0007142857066355646,3.960454746120191e-18,1.8314587330972803e-18,8.162101813778314e-19,3.960454746120191e-18,8.082381248267751e-19,2.318112041724225e-18,-0.02360714226961136,0.002142857061699033,0.030321428552269936,0.003000000026077032,0.0024999999441206455,3.848917712323541e-18,-0.0014285714132711291,-8.6634696832256e-20,-4.622151363084662e-19,-0.0062500000931322575,-0.0020000000949949026,-0.0016666667070239782,-7.989566208206338e-33,-2.168404344971009e-19,-5.259003403555949e-19,-0.02360714226961136,0.002142857061699033,0.003000000026077032,0.030321428552269936,0.0024999999441206455,4.026650288230053e-18,-8.6634696832256e-20,-0.0014285714132711291,-4.701871928595225e-19,-7.989566208206338e-33,-0.0020000000949949026,-2.168404344971009e-19,-0.0062500000931322575,-0.0016666667070239782,-6.633865986547048e-19,-0.019999999552965164,0.0017857142956927419,0.0024999999441206455,0.0024999999441206455,0.018928570672869682,3.0899761915836876e-18,-4.0184873597526503e-19,-4.0184873597526503e-19,-0.0008928571478463709,-5.849647068143505e-33,-2.2880793663954356e-33,-0.0012499999720603228,-5.849647068143505e-33,-0.0012499999720603228,-0.0029761905316263437,0.0011160714784637094,-0.0016741071594879031,3.848917712323541e-18,4.026650288230053e-18,3.0899761915836876e-18,0.0003348214377183467,-3.5236570605778894e-19,-3.5236570605778894e-19,-2.168404344971009e-19,-6.938894007304805e-19,-2.854859304849804e-19,-2.379049248378876e-19,-6.938894007304805e-19,-2.379049248378876e-19,-4.475351619774876e-19,0.002142857061699033,-0.0008571428479626775,-0.0014285714132711291,-8.6634696832256e-20,-4.0184873597526503e-19,-3.5236570605778894e-19,0.0005714285653084517,1.1545971813183278e-19,9.814988460195523e-20,-3.2733847774559625e-19,-1.3467640330644965e-19,1.0431601846770081e-19,7.02396950619932e-34,3.4621185378633516e-34,5.145844070159646e-34,0.002142857061699033,-0.0008571428479626775,-8.6634696832256e-20,-0.0014285714132711291,-4.0184873597526503e-19,-3.5236570605778894e-19,1.1545971813183278e-19,0.0005714285653084517,9.814988460195523e-20,7.02396950619932e-34,-1.3467640330644965e-19,3.451164170292886e-34,-3.2733847774559625e-19,1.0431601846770081e-19,5.085658759397545e-34,0.0017857142956927419,-0.0007142857066355646,-4.622151363084662e-19,-4.701871928595225e-19,-0.0008928571478463709,-2.168404344971009e-19,9.814988460195523e-20,9.814988460195523e-20,0.0003571428533177823,3.986457206185989e-34,1.408819188789713e-34,1.0842021724855044e-19,3.986457206185989e-34,1.124062584487757e-19,-3.53744919869296e-20,0.0020833334419876337,3.960454746120191e-18,-0.0062500000931322575,-7.989566208206338e-33,-5.849647068143505e-33,-6.938894007304805e-19,-3.2733847774559625e-19,7.02396950619932e-34,3.986457206185989e-34,0.0020833334419876337,6.2227644952933495e-34,3.9451675079358755e-34,1.4380276979315025e-33,4.930380547428728e-34,8.804251567922347e-34,0.003000000026077032,1.8314587330972803e-18,-0.0020000000949949026,-0.0020000000949949026,-2.2880793663954356e-33,-2.854859304849804e-19,-1.3467640330644965e-19,-1.3467640330644965e-19,1.408819188789713e-34,6.2227644952933495e-34,0.0013333333190530539,1.6231547420390699e-34,6.2227644952933495e-34,1.6231547420390699e-34,3.6223205099586786e-34,0.0024999999441206455,8.162101813778314e-19,-0.0016666667070239782,-2.168404344971009e-19,-0.0012499999720603228,-2.379049248378876e-19,1.0431601846770081e-19,3.451164170292886e-34,1.0842021724855044e-19,3.9451675079358755e-34,1.6231547420390699e-34,0.0008333333535119891,4.930380547428728e-34,1.0842021724855044e-19,2.6295017017779745e-19,0.0020833334419876337,3.960454746120191e-18,-7.989566208206338e-33,-0.0062500000931322575,-5.849647068143505e-33,-6.938894007304805e-19,7.02396950619932e-34,-3.2733847774559625e-19,3.986457206185989e-34,1.4380276979315025e-33,6.2227644952933495e-34,4.930380547428728e-34,0.0020833334419876337,3.9451675079358755e-34,8.804251567922347e-34,0.0024999999441206455,8.082381248267751e-19,-2.168404344971009e-19,-0.0016666667070239782,-0.0012499999720603228,-2.379049248378876e-19,3.4621185378633516e-34,1.0431601846770081e-19,1.124062584487757e-19,4.930380547428728e-34,1.6231547420390699e-34,1.0842021724855044e-19,3.9451675079358755e-34,0.0008333333535119891,3.316932993273524e-19,0.0014880952658131719,2.318112041724225e-18,-5.259003403555949e-19,-6.633865986547048e-19,-0.0029761905316263437,-4.475351619774876e-19,5.145844070159646e-34,5.085658759397545e-34,-3.53744919869296e-20,8.804251567922347e-34,3.6223205099586786e-34,2.6295017017779745e-19,8.804251567922347e-34,3.316932993273524e-19,0.0007440476329065859,6.0,4.0,4.0,6.0,0.06548185646533966,-0.014684311114251614,-0.019970238208770752,-0.019970238208770752,-0.014684311114251614,0.0009300595265813172,0.0017857142956927419,0.0017857142956927419,0.0012755101779475808,0.0017361111240461469,0.0024999999441206455,0.0017857142956927419,0.0017361111240461469,0.0017857142956927419,0.0009300595265813172,-0.014684311114251614,0.01098905224353075,0.0017857142956927419,0.0017857142956927419,0.0012755101779475808,-0.0013950893189758062,-0.0007142857066355646,-0.0007142857066355646,-0.0005102040595375001,3.3003788861684414e-18,1.5262156453802591e-18,8.131516293641283e-19,3.3003788861684414e-18,8.475845733252966e-19,1.1299686282119915e-18,-0.019970238208770752,0.0017857142956927419,0.025466270744800568,0.0024999999441206455,0.0017857142956927419,3.144186300207963e-18,-0.0011904762359336019,1.904993719535355e-19,-2.0138125602909735e-19,-0.0052083334885537624,-0.0016666667070239782,-0.0011904762359336019,-6.506705063898977e-33,-8.035189172604923e-20,-3.0886443273999007e-19,-0.019970238208770752,0.0017857142956927419,0.0024999999441206455,0.025466270744800568,0.0017857142956927419,3.166434149963189e-18,1.8963756607752888e-19,-0.0011904762359336019,-1.5812821444324682e-19,-6.604534846562192e-33,-0.0016666667070239782,-7.949009231239115e-20,-0.0052083334885537624,-0.0011904762359336019,-2.324295837188518e-19,-0.014684311114251614,0.0012755101779475808,0.0017857142956927419,0.0017857142956927419,0.01098905224353075,2.2768245622195593e-18,1.3552527156068805e-19,1.4907779871675686e-19,-0.0005102040595375001,-4.701831935863236e-33,-1.9690628728807365e-33,-0.0007142857066355646,-4.687620209161794e-33,-0.0007142857066355646,-0.0013950893189758062,0.0009300595265813172,-0.0013950893189758062,3.144186300207963e-18,3.166434149963189e-18,2.2768245622195593e-18,0.00027901786961592734,-2.168404344971009e-19,-2.439454888092385e-19,-2.168404344971009e-19,-5.782411758918651e-19,-2.379049248378876e-19,-1.7408544611288677e-19,-5.782411758918651e-19,-1.7512567743196049e-19,-2.4187484894086513e-19,0.0017857142956927419,-0.0007142857066355646,-0.0011904762359336019,1.8963756607752888e-19,1.3552527156068805e-19,-2.168404344971009e-19,0.0004761904710903764,-6.776263578034403e-21,6.803528226505975e-21,-2.727820647879969e-19,-1.122303403969404e-19,-8.146455950985815e-20,5.055566104016494e-34,-1.7405608766348967e-21,-5.109289060277264e-21,0.0017857142956927419,-0.0007142857066355646,1.904993719535355e-19,-0.0011904762359336019,1.4907779871675686e-19,-2.439454888092385e-19,-6.776263578034403e-21,0.0004761904710903764,5.123559945327721e-22,5.296307347064899e-34,-1.122303403969404e-19,-2.0852803189807016e-21,-2.727820647879969e-19,-8.2651156560914e-20,-4.285142116464903e-21,0.0012755101779475808,-0.0005102040595375001,-2.0138125602909735e-19,-1.5812821444324682e-19,-0.0005102040595375001,-2.168404344971009e-19,6.803528226505975e-21,5.123559945327721e-22,0.0002040816325461492,4.333342374871281e-34,1.8055593228630336e-34,7.374897418513297e-20,4.333342374871281e-34,6.273892881341367e-20,3.713992159631651e-20,0.0017361111240461469,3.3003788861684414e-18,-0.0052083334885537624,-6.604534846562192e-33,-4.701831935863236e-33,-5.782411758918651e-19,-2.727820647879969e-19,5.296307347064899e-34,4.333342374871281e-34,0.0017361111240461469,5.185636849822384e-34,3.7308585869804045e-34,1.1983564302488348e-33,3.6301733632351484e-34,5.029895327775451e-34,0.0024999999441206455,1.5262156453802591e-18,-0.0016666667070239782,-0.0016666667070239782,-1.9690628728807365e-33,-2.379049248378876e-19,-1.122303403969404e-19,-1.122303403969404e-19,1.8055593228630336e-34,5.185636849822384e-34,0.0011111111380159855,1.5414337778391794e-34,5.185636849822384e-34,1.5672537867614795e-34,2.100581313448061e-34,0.0017857142956927419,8.131516293641283e-19,-0.0011904762359336019,-7.949009231239115e-20,-0.0007142857066355646,-1.7408544611288677e-19,-8.146455950985815e-20,-2.0852803189807016e-21,7.374897418513297e-20,3.7308585869804045e-34,1.5414337778391794e-34,0.0004761904710903764,3.4795955215484385e-34,3.3881317890172014e-20,1.2865505835964353e-19,0.0017361111240461469,3.3003788861684414e-18,-6.506705063898977e-33,-0.0052083334885537624,-4.687620209161794e-33,-5.782411758918651e-19,5.055566104016494e-34,-2.727820647879969e-19,4.333342374871281e-34,1.1983564302488348e-33,5.185636849822384e-34,3.4795955215484385e-34,0.0017361111240461469,3.7866931911120207e-34,5.029895327775451e-34,0.0017857142956927419,8.475845733252966e-19,-8.035189172604923e-20,-0.0011904762359336019,-0.0007142857066355646,-1.7512567743196049e-19,-1.7405608766348967e-21,-8.2651156560914e-20,6.273892881341367e-20,3.6301733632351484e-34,1.5672537867614795e-34,3.3881317890172014e-20,3.7866931911120207e-34,0.0004761904710903764,9.725697544244692e-20,0.0009300595265813172,1.1299686282119915e-18,-3.0886443273999007e-19,-2.324295837188518e-19,-0.0013950893189758062,-2.4187484894086513e-19,-5.109289060277264e-21,-4.285142116464903e-21,3.713992159631651e-20,5.029895327775451e-34,2.100581313448061e-34,1.2865505835964353e-19,5.029895327775451e-34,9.725697544244692e-20,0.00027901786961592734,6.0,4.0,4.0,7.0,0.05764526501297951,-0.012723213993012905,-0.0173086728900671,-0.0173086728900671,-0.011245748028159142,0.0007971939048729837,0.0015306122368201613,0.0015306122368201613,0.0009566326625645161,0.0014880952658131719,0.002142857061699033,0.0013392857508733869,0.0014880952658131719,0.0013392857508733869,0.0006200397037900984,-0.012723213993012905,0.009473851881921291,0.0015306122368201613,0.0015306122368201613,0.0009566326625645161,-0.001195790828205645,-0.0006122448830865324,-0.0006122448830865324,-0.00038265305920504034,1.80930352757066e-18,1.2532800868898454e-19,2.439454888092385e-19,1.80930352757066e-18,2.6095007330603837e-19,9.099553356802903e-19,-0.0173086728900671,0.0015306122368201613,0.021955782547593117,0.002142857061699033,0.0013392857508733869,2.6020852139652106e-18,-0.0010204081190750003,-5.201381485097622e-19,-1.5252455693168876e-19,-0.004464285913854837,-0.0014285714132711291,-0.0008928571478463709,-1.1895247017376204e-18,-2.7780250826891677e-19,-3.4832866400292096e-20,-0.0173086728900671,0.0015306122368201613,0.002142857061699033,0.021955782547593117,0.0013392857508733869,2.684737100771509e-18,-5.13982890776602e-19,-0.0010204081190750003,-1.2784325813660516e-19,-1.1895247017376204e-18,-0.0014285714132711291,-2.8293190694614638e-19,-0.004464285913854837,-0.0008928571478463709,7.018245411155274e-21,-0.011245748028159142,0.0009566326625645161,0.0013392857508733869,0.0013392857508733869,0.00697278929874301,1.6263032587282567e-18,-3.1170812458958252e-19,-3.1170812458958252e-19,-0.0003188775444868952,-7.434529256613157e-19,-4.758098496757752e-19,-0.00044642857392318547,-7.434529256613157e-19,-0.00044642857392318547,-0.0007440476329065859,0.0007971939048729837,-0.001195790828205645,2.6020852139652106e-18,2.684737100771509e-18,1.6263032587282567e-18,0.00023915816564112902,-1.7618285302889447e-19,-1.7618285302889447e-19,-1.0842021724855044e-19,-4.956353010071399e-19,-2.0391851623583012e-19,-1.2992710704538523e-19,-4.956353010071399e-19,-1.279067442486186e-19,-1.572089970628502e-19,0.0015306122368201613,-0.0006122448830865324,-0.0010204081190750003,-5.13982890776602e-19,-3.1170812458958252e-19,-1.7618285302889447e-19,0.0004081632650922984,2.710505431213761e-20,1.1556943426968256e-20,4.459151804465908e-19,2.9808818221359065e-19,1.8699570629739936e-19,6.2592723192585165e-34,-3.040061921878291e-22,4.274191262974596e-22,0.0015306122368201613,-0.0006122448830865324,-5.201381485097622e-19,-0.0010204081190750003,-3.1170812458958252e-19,-1.7618285302889447e-19,2.710505431213761e-20,0.0004081632650922984,1.1765668398937948e-20,6.500013562306921e-34,2.9808818221359065e-19,1.7477514510710694e-21,4.459151804465908e-19,1.872038973178213e-19,-1.7438643736704727e-22,0.0009566326625645161,-0.00038265305920504034,-1.5252455693168876e-19,-1.2784325813660516e-19,-0.0003188775444868952,-1.0842021724855044e-19,1.1556943426968256e-20,1.1765668398937948e-20,0.00012755101488437504,3.1296361596292583e-34,1.5648180798146291e-34,4.121073265345711e-20,2.8888949165808538e-34,3.280969571308676e-20,-4.0889789806960804e-20,0.0014880952658131719,1.80930352757066e-18,-0.004464285913854837,-1.1895247017376204e-18,-7.434529256613157e-19,-4.956353010071399e-19,4.459151804465908e-19,6.500013562306921e-34,3.1296361596292583e-34,0.0014880952658131719,7.930164505921508e-19,4.956353010071399e-19,1.6874814663359118e-33,4.162437434876221e-34,3.595711404535641e-34,0.002142857061699033,1.2532800868898454e-19,-0.0014285714132711291,-0.0014285714132711291,-4.758098496757752e-19,-2.0391851623583012e-19,2.9808818221359065e-19,2.9808818221359065e-19,1.5648180798146291e-34,7.930164505921508e-19,0.0009523809421807528,1.5860328753349075e-19,7.930164505921508e-19,1.5860328753349075e-19,1.4167856884926784e-34,0.0013392857508733869,2.439454888092385e-19,-0.0008928571478463709,-2.8293190694614638e-19,-0.00044642857392318547,-1.2992710704538523e-19,1.8699570629739936e-19,1.7477514510710694e-21,4.121073265345711e-20,4.956353010071399e-19,1.5860328753349075e-19,0.00029761905898340046,4.152786442584977e-34,1.3552527156068805e-20,1.1254772895174214e-20,0.0014880952658131719,1.80930352757066e-18,-1.1895247017376204e-18,-0.004464285913854837,-7.434529256613157e-19,-4.956353010071399e-19,6.2592723192585165e-34,4.459151804465908e-19,2.8888949165808538e-34,1.6874814663359118e-33,7.930164505921508e-19,4.152786442584977e-34,0.0014880952658131719,4.956353010071399e-19,3.211451484801451e-34,0.0013392857508733869,2.6095007330603837e-19,-2.7780250826891677e-19,-0.0008928571478463709,-0.00044642857392318547,-1.279067442486186e-19,-3.040061921878291e-22,1.872038973178213e-19,3.280969571308676e-20,4.162437434876221e-34,1.5860328753349075e-19,1.3552527156068805e-20,4.956353010071399e-19,0.00029761905898340046,-2.1940931416742464e-21,0.0006200397037900984,9.099553356802903e-19,-3.4832866400292096e-20,7.018245411155274e-21,-0.0007440476329065859,-1.572089970628502e-19,4.274191262974596e-22,-1.7438643736704727e-22,-4.0889789806960804e-20,3.595711404535641e-34,1.4167856884926784e-34,1.1254772895174214e-20,3.211451484801451e-34,-2.1940931416742464e-21,0.00012400794366840273,6.0,4.0,4.0,8.0,0.05149677395820618,-0.011225818656384945,-0.015275297686457634,-0.015275297686457634,-0.008891369216144085,0.0006975446594879031,0.0013392857508733869,0.0013392857508733869,0.0007440476329065859,0.0013020833721384406,0.0018749999580904841,0.0010416667209938169,0.0013020833721384406,0.0010416667209938169,0.0004340277810115367,-0.011225818656384945,0.008326822891831398,0.0013392857508733869,0.0013392857508733869,0.0007440476329065859,-0.0010463169310241938,-0.0005357142654247582,-0.0005357142654247582,-0.00029761905898340046,2.168404344971009e-18,8.921435521526094e-19,5.312106847918205e-19,2.168404344971009e-18,5.588620401997611e-19,6.864481356387417e-19,-0.015275297686457634,0.0013392857508733869,0.019298115745186806,0.0018749999580904841,0.0010416667209938169,1.915630357483992e-18,-0.0008928571478463709,-0.0,3.5575383784680614e-20,-0.00390625,-0.0012499999720603228,-0.0006944444612599909,-3.96998347937868e-33,9.486769009248164e-20,1.068380210695411e-19,-0.015275297686457634,0.0013392857508733869,0.0018749999580904841,0.019298115745186806,0.0010416667209938169,1.915630357483992e-18,-0.0,-0.0008928571478463709,6.322678442906096e-20,-3.96998347937868e-33,-0.0012499999720603228,9.486769009248164e-20,-0.00390625,-0.0006944444612599909,1.5006406942555856e-19,-0.008891369216144085,0.0007440476329065859,0.0010416667209938169,0.0010416667209938169,0.0047105299308896065,1.343862748764755e-18,-0.0,-0.0,-0.00021258502965793014,-2.785043113092574e-33,-1.145846362913634e-33,-0.00029761905898340046,-2.785043113092574e-33,-0.00029761905898340046,-0.0004340277810115367,0.0006975446594879031,-0.0010463169310241938,1.915630357483992e-18,1.915630357483992e-18,1.343862748764755e-18,0.0002092633949359879,-0.0,-0.0,-1.2947206723560157e-19,-4.336808689942018e-19,-1.7842870009076423e-19,-9.912705632401885e-20,-4.336808689942018e-19,-9.912705632401885e-20,-1.0325735006825511e-19,0.0013392857508733869,-0.0005357142654247582,-0.0008928571478463709,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0005357142654247582,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-0.00029761905898340046,3.5575383784680614e-20,6.322678442906096e-20,-0.00021258502965793014,-1.2947206723560157e-19,-0.0,-0.0,8.50340147735551e-05,2.6832003947537427e-34,1.1039453157655966e-34,-1.0164395367051604e-20,2.6832003947537427e-34,-1.8064795781958437e-20,-4.8617534040455666e-20,0.0013020833721384406,2.168404344971009e-18,-0.00390625,-3.96998347937868e-33,-2.785043113092574e-33,-4.336808689942018e-19,-0.0,-0.0,2.6832003947537427e-34,0.0013020833721384406,3.6977854105715463e-34,2.0543253811544638e-34,8.98767276768878e-34,2.0543253811544638e-34,2.1399222624697022e-34,0.0018749999580904841,8.921435521526094e-19,-0.0012499999720603228,-0.0012499999720603228,-1.145846362913634e-33,-1.7842870009076423e-19,-0.0,-0.0,1.1039453157655966e-34,3.6977854105715463e-34,0.0008333333535119891,8.452081036844423e-35,3.6977854105715463e-34,8.452081036844423e-35,8.804251223539237e-35,0.0010416667209938169,5.312106847918205e-19,-0.0006944444612599909,9.486769009248164e-20,-0.00029761905898340046,-9.912705632401885e-20,-0.0,-0.0,-1.0164395367051604e-20,2.0543253811544638e-34,8.452081036844423e-35,0.00019841270113829523,2.0543253811544638e-34,-2.710505431213761e-20,-3.0525148877011744e-20,0.0013020833721384406,2.168404344971009e-18,-3.96998347937868e-33,-0.00390625,-2.785043113092574e-33,-4.336808689942018e-19,-0.0,-0.0,2.6832003947537427e-34,8.98767276768878e-34,3.6977854105715463e-34,2.0543253811544638e-34,0.0013020833721384406,2.0543253811544638e-34,2.1399222624697022e-34,0.0010416667209938169,5.588620401997611e-19,9.486769009248164e-20,-0.0006944444612599909,-0.00029761905898340046,-9.912705632401885e-20,-0.0,-0.0,-1.8064795781958437e-20,2.0543253811544638e-34,8.452081036844423e-35,-2.710505431213761e-20,2.0543253811544638e-34,0.00019841270113829523,-4.287544979209142e-20,0.0004340277810115367,6.864481356387417e-19,1.068380210695411e-19,1.5006406942555856e-19,-0.0004340277810115367,-1.0325735006825511e-19,-0.0,-0.0,-4.8617534040455666e-20,2.1399222624697022e-34,8.804251223539237e-35,-3.0525148877011744e-20,2.1399222624697022e-34,-4.287544979209142e-20,6.200397183420137e-05,6.0,4.0,5.0,3.0,0.09392856806516647,-0.022440476343035698,-0.030476190149784088,-0.025833332911133766,-0.037261903285980225,0.0014880952658131719,0.0028571428265422583,0.0023809524718672037,0.0035714285913854837,0.0027777778450399637,0.0033333334140479565,0.004999999888241291,0.0019841270986944437,0.004166666883975267,0.004166666883975267,-0.022440476343035698,0.01716071367263794,0.0028571428265422583,0.0023809524718672037,0.0035714285913854837,-0.0022321429569274187,-0.0011428571306169033,-0.0009523809421807528,-0.0014285714132711291,-9.11757017772492e-18,-3.206160532856814e-18,-4.585081160535521e-18,-6.5052130349130266e-18,-3.650340598570998e-18,-1.8103299346337465e-17,-0.030476190149784088,0.0028571428265422583,0.03976190462708473,0.0033333334140479565,0.004999999888241291,-9.432558900623889e-18,-0.0019047618843615055,1.9264302343566374e-19,4.74455238025143e-19,-0.008333333767950535,-0.002222222276031971,-0.0033333334140479565,-3.402151724918151e-19,-1.4360557510567004e-32,-8.289540317719089e-32,-0.025833332911133766,0.0023809524718672037,0.0033333334140479565,0.024821428582072258,0.004166666883975267,-7.245590141165352e-18,4.838089446931044e-19,-0.0011904762359336019,9.525941181131378e-19,-2.9736413001826235e-32,-0.0016666667070239782,-1.5319575760477736e-32,-0.003968254197388887,-0.0020833334419876337,-6.452454824114177e-32,-0.037261903285980225,0.0035714285913854837,0.004999999888241291,0.004166666883975267,0.07892857491970062,-1.235990476633475e-17,6.870444294628159e-19,2.041717885996362e-19,-0.0035714285913854837,-5.142806592757121e-32,-1.535690064485222e-32,-0.004999999888241291,-1.0842021724855044e-19,-0.004166666883975267,-0.02500000037252903,0.0014880952658131719,-0.0022321429569274187,-9.432558900623889e-18,-7.245590141165352e-18,-1.235990476633475e-17,0.00044642857392318547,6.505213034913027e-19,3.7947076036992655e-19,5.963111948670274e-19,1.850371804212999e-18,6.34413150133963e-19,9.516196993515503e-19,1.1347604855005112e-18,7.930164505921508e-19,3.965082408057119e-18,0.0028571428265422583,-0.0011428571306169033,-0.0019047618843615055,4.838089446931044e-19,6.870444294628159e-19,6.505213034913027e-19,0.0007619047537446022,-1.421093448932746e-19,-1.9769641196941797e-19,-8.952563491199201e-20,-8.569040553954136e-20,-1.2853560830931204e-19,1.4444474582904269e-33,1.1431955313170335e-33,5.8233839529522424e-33,0.0023809524718672037,-0.0009523809421807528,1.9264302343566374e-19,-0.0011904762359336019,2.041717885996362e-19,3.7947076036992655e-19,-1.421093448932746e-19,0.0004761904710903764,-1.6840488665375542e-19,1.6071195297259154e-33,8.131516293641283e-20,8.510210839613768e-34,4.1530419865632957e-19,1.0842021724855044e-19,3.3248460983665e-33,0.0035714285913854837,-0.0014285714132711291,4.74455238025143e-19,9.525941181131378e-19,-0.0035714285913854837,5.963111948670274e-19,-1.9769641196941797e-19,-1.6840488665375542e-19,0.0014285714132711291,2.604433365205522e-33,8.787055371266764e-34,1.9785793513989028e-20,1.396299209680746e-33,-5.315819337904919e-19,-1.722112176960247e-18,0.0027777778450399637,-9.11757017772492e-18,-0.008333333767950535,-2.9736413001826235e-32,-5.142806592757121e-32,1.850371804212999e-18,-8.952563491199201e-20,1.6071195297259154e-33,2.604433365205522e-33,0.0027777778450399637,2.4328602301404165e-33,3.649290620717113e-33,4.695600713777924e-33,3.286920609847142e-33,1.6434602681893725e-32,0.0033333334140479565,-3.206160532856814e-18,-0.002222222276031971,-0.0016666667070239782,-1.535690064485222e-32,6.34413150133963e-19,-8.569040553954136e-20,8.131516293641283e-20,8.787055371266764e-34,2.4328602301404165e-33,0.0011111111380159855,1.2604633069325457e-33,1.7010758624590755e-19,-0.0,5.6347207830651116e-33,0.004999999888241291,-4.585081160535521e-18,-0.0033333334140479565,-1.5319575760477736e-32,-0.004999999888241291,9.516196993515503e-19,-1.2853560830931204e-19,8.510210839613768e-34,1.9785793513989028e-20,3.649290620717113e-33,1.2604633069325457e-33,0.0033333334140479565,2.4148803093606203e-33,1.6418067149797502e-33,7.763692764643927e-33,0.0019841270986944437,-6.5052130349130266e-18,-3.402151724918151e-19,-0.003968254197388887,-1.0842021724855044e-19,1.1347604855005112e-18,1.4444474582904269e-33,4.1530419865632957e-19,1.396299209680746e-33,4.695600713777924e-33,1.7010758624590755e-19,2.4148803093606203e-33,0.0009920635493472219,4.610974860539363e-20,1.0062001686956401e-32,0.004166666883975267,-3.650340598570998e-18,-1.4360557510567004e-32,-0.0020833334419876337,-0.004166666883975267,7.930164505921508e-19,1.1431955313170335e-33,1.0842021724855044e-19,-5.315819337904919e-19,3.286920609847142e-33,-0.0,1.6418067149797502e-33,4.610974860539363e-20,0.0020833334419876337,7.512348562551106e-33,0.004166666883975267,-1.8103299346337465e-17,-8.289540317719089e-32,-6.452454824114177e-32,-0.02500000037252903,3.965082408057119e-18,5.8233839529522424e-33,3.3248460983665e-33,-1.722112176960247e-18,1.6434602681893725e-32,5.6347207830651116e-33,7.763692764643927e-33,1.0062001686956401e-32,7.512348562551106e-33,0.012500000186264515,6.0,4.0,5.0,4.0,0.07582738250494003,-0.0173660721629858,-0.02360714226961136,-0.019999999552965164,-0.02360714226961136,0.0011160714784637094,0.002142857061699033,0.0017857142956927419,0.002142857061699033,0.0020833334419876337,0.0024999999441206455,0.003000000026077032,0.0014880952658131719,0.0024999999441206455,0.0020833334419876337,-0.0173660721629858,0.01308482140302658,0.002142857061699033,0.0017857142956927419,0.002142857061699033,-0.0016741071594879031,-0.0008571428479626775,-0.0007142857066355646,-0.0008571428479626775,3.960454746120191e-18,8.209934566674959e-19,1.8314587330972803e-18,2.168404344971009e-18,8.08530067884218e-19,3.960454746120191e-18,-0.02360714226961136,0.002142857061699033,0.030321428552269936,0.0024999999441206455,0.003000000026077032,4.0115480381963664e-18,-0.0014285714132711291,-4.5743191271759e-19,-8.6634696832256e-20,-0.0062500000931322575,-0.0016666667070239782,-0.0020000000949949026,-6.183764445020326e-19,-5.421010862427522e-20,-7.989566208206338e-33,-0.019999999552965164,0.0017857142956927419,0.0024999999441206455,0.018928570672869682,0.0024999999441206455,3.0624796740466593e-18,-4.0184873597526503e-19,-0.0008928571478463709,-2.8664770565531114e-19,-5.849647068143505e-33,-0.0012499999720603228,-2.3317293287323057e-33,-0.0029761905316263437,-0.0012499999720603228,-5.955740576093001e-33,-0.02360714226961136,0.002142857061699033,0.003000000026077032,0.0024999999441206455,0.030321428552269936,3.848917712323541e-18,-8.6634696832256e-20,-1.2249354507310088e-19,-0.0014285714132711291,-7.989566208206338e-33,-5.421010862427522e-20,-0.0020000000949949026,-1.0842021724855044e-19,-0.0016666667070239782,-0.0062500000931322575,0.0011160714784637094,-0.0016741071594879031,4.0115480381963664e-18,3.0624796740466593e-18,3.848917712323541e-18,0.0003348214377183467,-3.5236570605778894e-19,-2.168404344971009e-19,-3.7947076036992655e-19,-6.938894007304805e-19,-2.379049248378876e-19,-2.854859304849804e-19,-4.2803259542835414e-19,-2.379049248378876e-19,-6.938894007304805e-19,0.002142857061699033,-0.0008571428479626775,-0.0014285714132711291,-4.0184873597526503e-19,-8.6634696832256e-20,-3.5236570605778894e-19,0.0005714285653084517,9.814988460195523e-20,1.1545971813183278e-19,-3.2733847774559625e-19,1.0431601846770081e-19,-1.3467640330644965e-19,5.266214691683848e-34,3.356785060480059e-34,7.02396950619932e-34,0.0017857142956927419,-0.0007142857066355646,-4.5743191271759e-19,-0.0008928571478463709,-1.2249354507310088e-19,-2.168404344971009e-19,9.814988460195523e-20,0.0003571428533177823,5.6293312105995304e-21,3.986457206185989e-34,1.0602859252841529e-19,1.6268749979884301e-34,-1.3437540165194698e-20,5.421010862427522e-20,4.516454089015661e-34,0.002142857061699033,-0.0008571428479626775,-8.6634696832256e-20,-2.8664770565531114e-19,-0.0014285714132711291,-3.7947076036992655e-19,1.1545971813183278e-19,5.6293312105995304e-21,0.0005714285653084517,7.02396950619932e-34,3.0943247225902895e-34,-1.3467640330644965e-19,4.9652881378733424e-34,1.817162518871738e-19,-3.2733847774559625e-19,0.0020833334419876337,3.960454746120191e-18,-0.0062500000931322575,-5.849647068143505e-33,-7.989566208206338e-33,-6.938894007304805e-19,-3.2733847774559625e-19,3.986457206185989e-34,7.02396950619932e-34,0.0020833334419876337,3.9451675079358755e-34,6.2227644952933495e-34,8.804251567922347e-34,4.930380547428728e-34,1.4380276979315025e-33,0.0024999999441206455,8.209934566674959e-19,-0.0016666667070239782,-0.0012499999720603228,-5.421010862427522e-20,-2.379049248378876e-19,1.0431601846770081e-19,1.0602859252841529e-19,3.0943247225902895e-34,3.9451675079358755e-34,0.0008333333535119891,1.6231547420390699e-34,3.091882222510163e-19,2.710505431213761e-20,4.930380547428728e-34,0.003000000026077032,1.8314587330972803e-18,-0.0020000000949949026,-2.3317293287323057e-33,-0.0020000000949949026,-2.854859304849804e-19,-1.3467640330644965e-19,1.6268749979884301e-34,-1.3467640330644965e-19,6.2227644952933495e-34,1.6231547420390699e-34,0.0013333333190530539,3.6223205099586786e-34,1.5507273004616277e-34,6.2227644952933495e-34,0.0014880952658131719,2.168404344971009e-18,-6.183764445020326e-19,-0.0029761905316263437,-1.0842021724855044e-19,-4.2803259542835414e-19,5.266214691683848e-34,-1.3437540165194698e-20,4.9652881378733424e-34,8.804251567922347e-34,3.091882222510163e-19,3.6223205099586786e-34,0.0007440476329065859,6.791841069179395e-20,8.804251567922347e-34,0.0024999999441206455,8.08530067884218e-19,-5.421010862427522e-20,-0.0012499999720603228,-0.0016666667070239782,-2.379049248378876e-19,3.356785060480059e-34,5.421010862427522e-20,1.817162518871738e-19,4.930380547428728e-34,2.710505431213761e-20,1.5507273004616277e-34,6.791841069179395e-20,0.0008333333535119891,3.7691289637055837e-34,0.0020833334419876337,3.960454746120191e-18,-7.989566208206338e-33,-5.955740576093001e-33,-0.0062500000931322575,-6.938894007304805e-19,7.02396950619932e-34,4.516454089015661e-34,-3.2733847774559625e-19,1.4380276979315025e-33,4.930380547428728e-34,6.2227644952933495e-34,8.804251567922347e-34,3.7691289637055837e-34,0.0020833334419876337,6.0,4.0,5.0,5.0,0.06369047611951828,-0.014178571291267872,-0.019285714253783226,-0.016333334147930145,-0.016333334147930145,0.0008928571478463709,0.001714285695925355,0.0014285714132711291,0.0014285714132711291,0.0016666667070239782,0.0020000000949949026,0.0020000000949949026,0.0011904762359336019,0.0016666667070239782,0.0011904762359336019,-0.014178571291267872,0.010582142509520054,0.001714285695925355,0.0014285714132711291,0.0014285714132711291,-0.0013392857508733869,-0.0006857143016532063,-0.0005714285653084517,-0.0005714285653084517,-6.336727511074244e-18,-2.24968249157501e-18,-2.2232673058937416e-18,-4.0115480381963664e-18,-2.029038473826237e-18,-4.022419672987151e-18,-0.019285714253783226,0.001714285695925355,0.024523809552192688,0.0020000000949949026,0.0020000000949949026,-5.5294310796760726e-18,-0.0011428571306169033,-7.384727943105607e-20,-4.60522789398668e-20,-0.004999999888241291,-0.0013333333190530539,-0.0013333333190530539,-5.507940513771639e-18,-2.7033126821973062e-18,-5.4127981997157894e-18,-0.016333334147930145,0.0014285714132711291,0.0020000000949949026,0.015309523791074753,0.0016666667070239782,-4.692958747302237e-18,-2.8273180161621214e-18,-0.0007142857066355646,3.155909556213462e-20,-9.340253816069096e-18,-0.0010000000474974513,-2.710505431213761e-20,-0.0023809524718672037,-0.0008333333535119891,-6.300095119713692e-20,-0.016333334147930145,0.0014285714132711291,0.0020000000949949026,0.0016666667070239782,0.015309523791074753,-4.716279450311944e-18,-2.8273180161621214e-18,5.363611959617158e-20,-0.0007142857066355646,-9.340253816069096e-18,-4.5904339626016254e-20,-0.0010000000474974513,-1.0842021724855044e-19,-0.0008333333535119891,-0.0023809524718672037,0.0008928571478463709,-0.0013392857508733869,-5.5294310796760726e-18,-4.692958747302237e-18,-4.716279450311944e-18,0.0002678571327123791,2.710505431213761e-19,2.981555974335137e-19,2.981555974335137e-19,1.1102229998097382e-18,3.806478900803778e-19,3.806478900803778e-19,6.652477550329491e-19,3.172065750669815e-19,6.734138888352257e-19,0.001714285695925355,-0.0006857143016532063,-0.0011428571306169033,-2.8273180161621214e-18,-2.8273180161621214e-18,2.710505431213761e-19,0.0004571428580675274,8.158068791304235e-20,8.158068791304235e-20,5.237415540531963e-19,3.181582205123296e-19,3.181582205123296e-19,4.350261748629427e-19,2.0301221062780757e-19,4.350261748629427e-19,0.0014285714132711291,-0.0005714285653084517,-7.384727943105607e-20,-0.0007142857066355646,5.363611959617158e-20,2.981555974335137e-19,8.158068791304235e-20,0.0002857142826542258,-4.422867526896269e-20,1.5407439555097887e-33,-6.776263578034403e-20,2.71041136365289e-21,2.150006394119409e-20,2.710505431213761e-20,-3.080819903605036e-22,0.0014285714132711291,-0.0005714285653084517,-4.60522789398668e-20,3.155909556213462e-20,-0.0007142857066355646,2.981555974335137e-19,8.158068791304235e-20,-4.422867526896269e-20,0.0002857142826542258,1.5407439555097887e-33,2.365439889714198e-21,-8.131516293641283e-20,-2.0259052703778382e-21,4.213856111327738e-20,3.0606708562292046e-21,0.0016666667070239782,-6.336727511074244e-18,-0.004999999888241291,-9.340253816069096e-18,-9.340253816069096e-18,1.1102229998097382e-18,5.237415540531963e-19,1.5407439555097887e-33,1.5407439555097887e-33,0.0016666667070239782,1.0105497005510531e-18,1.0105497005510531e-18,1.5860329011843016e-18,7.401487010056843e-19,1.5860329011843016e-18,0.0020000000949949026,-2.24968249157501e-18,-0.0013333333190530539,-0.0010000000474974513,-4.5904339626016254e-20,3.806478900803778e-19,3.181582205123296e-19,-6.776263578034403e-20,2.365439889714198e-21,1.0105497005510531e-18,0.0006666666595265269,3.7945759495037246e-21,-1.7789639644188928e-19,-0.0,7.884799497748399e-21,0.0020000000949949026,-2.2232673058937416e-18,-0.0013333333190530539,-2.710505431213761e-20,-0.0010000000474974513,3.806478900803778e-19,3.181582205123296e-19,2.71041136365289e-21,-8.131516293641283e-20,1.0105497005510531e-18,3.7945759495037246e-21,0.0006666666595265269,9.03470414161285e-21,-1.2331900993211771e-20,-2.243176819454857e-19,0.0011904762359336019,-4.0115480381963664e-18,-5.507940513771639e-18,-0.0023809524718672037,-1.0842021724855044e-19,6.652477550329491e-19,4.350261748629427e-19,2.150006394119409e-20,-2.0259052703778382e-21,1.5860329011843016e-18,-1.7789639644188928e-19,9.03470414161285e-21,0.0005952381179668009,1.1527437151348408e-20,8.658440360477792e-21,0.0016666667070239782,-2.029038473826237e-18,-2.7033126821973062e-18,-0.0008333333535119891,-0.0008333333535119891,3.172065750669815e-19,2.0301221062780757e-19,2.710505431213761e-20,4.213856111327738e-20,7.401487010056843e-19,-0.0,-1.2331900993211771e-20,1.1527437151348408e-20,0.00041666667675599456,7.13987004176898e-21,0.0011904762359336019,-4.022419672987151e-18,-5.4127981997157894e-18,-6.300095119713692e-20,-0.0023809524718672037,6.734138888352257e-19,4.350261748629427e-19,-3.080819903605036e-22,3.0606708562292046e-21,1.5860329011843016e-18,7.884799497748399e-21,-2.243176819454857e-19,8.658440360477792e-21,7.13987004176898e-21,0.0005952381179668009,6.0,4.0,5.0,6.0,0.05494897812604904,-0.011985544115304947,-0.016309523954987526,-0.013809523545205593,-0.011985544115304947,0.0007440476329065859,0.0014285714132711291,0.0011904762359336019,0.0010204081190750003,0.0013888889225199819,0.0016666667070239782,0.0014285714132711291,0.0009920635493472219,0.0011904762359336019,0.0007440476329065859,-0.011985544115304947,0.008886479772627354,0.0014285714132711291,0.0011904762359336019,0.0010204081190750003,-0.0011160714784637094,-0.0005714285653084517,-0.0004761904710903764,-0.0004081632650922984,-4.55878508886246e-18,-1.603072098019858e-18,-1.4735324087691802e-18,-3.2526065174565133e-18,-1.1865276195831876e-18,-2.0664580567866047e-18,-0.016309523954987526,0.0014285714132711291,0.020595237612724304,0.0016666667070239782,0.0014285714132711291,-4.933119884809045e-18,-0.0009523809421807528,9.696282226180482e-20,2.103924840740676e-20,-0.004166666883975267,-0.0011111111380159855,-0.0009523809421807528,-1.6796988012443203e-19,-1.677799517009716e-20,-4.579310645184775e-19,-0.013809523545205593,0.0011904762359336019,0.0016666667070239782,0.012857142835855484,0.0011904762359336019,-3.783201521378653e-18,2.419044723465522e-19,-0.0005952381179668009,6.8018887286825e-20,-1.5572546552878508e-32,-0.0008333333535119891,-1.3552527156068805e-20,-0.0019841270986944437,-0.0005952381179668009,-2.7589391179007283e-20,-0.011985544115304947,0.0010204081190750003,0.0014285714132711291,0.0011904762359336019,0.008886479772627354,-3.0899761915836876e-18,1.4680209560465277e-19,1.4469695971979653e-19,-0.0004081632650922984,-1.2802088569614754e-32,-2.845356873692645e-20,-0.0005714285653084517,-5.421010862427522e-20,-0.0004761904710903764,-0.0011160714784637094,0.0007440476329065859,-0.0011160714784637094,-4.933119884809045e-18,-3.783201521378653e-18,-3.0899761915836876e-18,0.00022321428696159273,3.3881317890172014e-19,1.8973538018496328e-19,1.0842021724855044e-19,9.251859021064995e-19,3.172065750669815e-19,2.718913463646421e-19,5.673394007075108e-19,2.2657611766230274e-19,3.8572029084352367e-19,0.0014285714132711291,-0.0005714285653084517,-0.0009523809421807528,2.419044723465522e-19,1.4680209560465277e-19,3.3881317890172014e-19,0.0003809523768723011,-7.10546724466373e-20,-5.648468728773412e-20,-4.4762817455996005e-20,-4.284520276977068e-20,-3.7269179876137855e-21,7.2824226022142356e-34,3.3194098502536796e-34,5.356492657827e-34,0.0011904762359336019,-0.0004761904710903764,9.696282226180482e-20,-0.0005952381179668009,1.4469695971979653e-19,1.8973538018496328e-19,-7.10546724466373e-20,0.0002380952355451882,-5.471804921917107e-20,8.035597648629577e-34,3.96610711681501e-20,5.406837498255435e-22,2.0765209932816478e-19,-6.776263578034403e-21,8.91830149251267e-22,0.0010204081190750003,-0.0004081632650922984,2.103924840740676e-20,6.8018887286825e-20,-0.0004081632650922984,1.0842021724855044e-19,-5.648468728773412e-20,-5.471804921917107e-20,0.00016326530021615326,5.180476154115786e-34,7.939310215439504e-22,4.743384504624082e-20,8.868414055084238e-23,2.6879823694214505e-20,5.506193017179438e-20,0.0013888889225199819,-4.55878508886246e-18,-0.004166666883975267,-1.5572546552878508e-32,-1.2802088569614754e-32,9.251859021064995e-19,-4.4762817455996005e-20,8.035597648629577e-34,5.180476154115786e-34,0.0013888889225199819,1.2164301150702082e-33,1.038777102817459e-33,2.347800356888962e-33,9.39120161122684e-34,1.6141128027583464e-33,0.0016666667070239782,-1.603072098019858e-18,-0.0011111111380159855,-0.0008333333535119891,-2.845356873692645e-20,3.172065750669815e-19,-4.284520276977068e-20,3.96610711681501e-20,7.939310215439504e-22,1.2164301150702082e-33,0.0005555555690079927,7.569572497557609e-22,8.173209427688224e-20,6.776263578034403e-21,2.1709052253866606e-21,0.0014285714132711291,-1.4735324087691802e-18,-0.0009523809421807528,-1.3552527156068805e-20,-0.0005714285653084517,2.718913463646421e-19,-3.7269179876137855e-21,5.406837498255435e-22,4.743384504624082e-20,1.038777102817459e-33,7.569572497557609e-22,0.0003809523768723011,1.8022791324270796e-21,1.2901870844423072e-21,1.8143570841254762e-19,0.0009920635493472219,-3.2526065174565133e-18,-1.6796988012443203e-19,-0.0019841270986944437,-5.421010862427522e-20,5.673394007075108e-19,7.2824226022142356e-34,2.0765209932816478e-19,8.868414055084238e-23,2.347800356888962e-33,8.173209427688224e-20,1.8022791324270796e-21,0.0004960317746736109,2.866281635133396e-20,-3.1746184187310437e-21,0.0011904762359336019,-1.1865276195831876e-18,-1.677799517009716e-20,-0.0005952381179668009,-0.0004761904710903764,2.2657611766230274e-19,3.3194098502536796e-34,-6.776263578034403e-21,2.6879823694214505e-20,9.39120161122684e-34,6.776263578034403e-21,1.2901870844423072e-21,2.866281635133396e-20,0.0002380952355451882,1.4365219183205084e-20,0.0007440476329065859,-2.0664580567866047e-18,-4.579310645184775e-19,-2.7589391179007283e-20,-0.0011160714784637094,3.8572029084352367e-19,5.356492657827e-34,8.91830149251267e-22,5.506193017179438e-20,1.6141128027583464e-33,2.1709052253866606e-21,1.8143570841254762e-19,-3.1746184187310437e-21,1.4365219183205084e-20,0.00022321428696159273,6.0,4.0,5.0,7.0,0.04833900183439255,-0.010382653214037418,-0.01413265336304903,-0.011964285746216774,-0.009175170212984085,0.0006377550889737904,0.0012244897661730647,0.0010204081190750003,0.0007653061184100807,0.0011904762359336019,0.0014285714132711291,0.0010714285308495164,0.0008503401186317205,0.0008928571478463709,0.0004960317746736109,-0.010382653214037418,0.007660714443773031,0.0012244897661730647,0.0010204081190750003,0.0007653061184100807,-0.0009566326625645161,-0.0004897959297522902,-0.0004081632650922984,-0.0003061224415432662,-1.6281863353927336e-18,-4.463949658813868e-18,-1.4858303097311592e-18,-6.2719059159618326e-18,-2.5696127914533696e-18,-3.2328689540652324e-19,-0.01413265336304903,0.0012244897661730647,0.01775510236620903,0.0014285714132711291,0.0010714285308495164,-1.8431436932253575e-18,-0.0008163265301845968,-5.085135001880978e-18,-1.2137868396819898e-18,-0.0035714285913854837,-0.0009523809421807528,-0.0007142857066355646,-7.870822878969684e-18,-2.9103388255216186e-18,4.11383866616014e-20,-0.011964285746216774,0.0010204081190750003,0.0014285714132711291,0.011084184050559998,0.0008928571478463709,-5.697227562064598e-18,-4.807643203329651e-18,-0.0005102040595375001,-1.0074860303573099e-18,-1.3049274607294606e-17,-0.0007142857066355646,-2.3758963331518564e-20,-0.001700680237263441,-0.00044642857392318547,4.876105633908215e-19,-0.009175170212984085,0.0007653061184100807,0.0010714285308495164,0.0008928571478463709,0.005637755151838064,-1.1921708525171775e-18,-1.5036127283470945e-18,-1.3475258147098696e-18,-0.00025510202976875007,-1.6449426364587969e-18,-1.101159995428301e-18,-0.0003571428533177823,1.551866619573105e-18,-0.00029761905898340046,-0.0005952381179668009,0.0006377550889737904,-0.0009566326625645161,-1.8431436932253575e-18,-5.697227562064598e-18,-1.1921708525171775e-18,0.00019132652960252017,5.421010862427522e-20,2.303929616531697e-19,4.0657581468206416e-20,4.9563528162009426e-20,4.701454719373769e-19,1.189524624189438e-19,7.889704517222125e-19,2.9384091996086056e-19,3.418147136142939e-20,0.0012244897661730647,-0.0004897959297522902,-0.0008163265301845968,-4.807643203329651e-18,-1.5036127283470945e-18,5.421010862427522e-20,0.00032653060043230653,3.1453289468266283e-19,1.5001898808217442e-19,-4.0144825131181866e-19,2.8305117605071886e-19,7.566946138528235e-20,5.955715403030402e-19,2.718913463646421e-19,5.1357256395633595e-20,0.0010204081190750003,-0.0004081632650922984,-5.085135001880978e-18,-0.0005102040595375001,-1.3475258147098696e-18,2.303929616531697e-19,3.1453289468266283e-19,0.0002040816325461492,1.3685584327476788e-19,8.156740649433205e-19,5.316477463479782e-19,1.903239450401889e-19,5.792841472467179e-19,2.1267564473638175e-19,4.531522547116511e-20,0.0007653061184100807,-0.0003061224415432662,-1.2137868396819898e-18,-1.0074860303573099e-18,-0.00025510202976875007,4.0657581468206416e-20,1.5001898808217442e-19,1.3685584327476788e-19,0.0001020408162730746,5.664402941557569e-20,1.3594567318232106e-19,7.792703114739563e-20,4.8552028444524855e-20,4.3758041812162696e-20,-3.043273406177882e-20,0.0011904762359336019,-1.6281863353927336e-18,-0.0035714285913854837,-1.3049274607294606e-17,-1.6449426364587969e-18,4.9563528162009426e-20,-4.0144825131181866e-19,8.156740649433205e-19,5.664402941557569e-20,0.0011904762359336019,1.2225040825673799e-18,2.9731823215966863e-19,1.69932097294015e-18,5.2867765096103e-19,-2.2028234918180537e-20,0.0014285714132711291,-4.463949658813868e-18,-0.0009523809421807528,-0.0007142857066355646,-1.101159995428301e-18,4.701454719373769e-19,2.8305117605071886e-19,5.316477463479782e-19,1.3594567318232106e-19,1.2225040825673799e-18,0.0004761904710903764,1.903239450401889e-19,9.06304470649211e-19,2.379049248378876e-19,-1.5648180798146291e-34,0.0010714285308495164,-1.4858303097311592e-18,-0.0007142857066355646,-2.3758963331518564e-20,-0.0003571428533177823,1.189524624189438e-19,7.566946138528235e-20,1.903239450401889e-19,7.792703114739563e-20,2.9731823215966863e-19,1.903239450401889e-19,0.0002380952355451882,-2.2657611766230274e-19,3.3881317890172014e-21,-6.385325095844771e-20,0.0008503401186317205,-6.2719059159618326e-18,-7.870822878969684e-18,-0.001700680237263441,1.551866619573105e-18,7.889704517222125e-19,5.955715403030402e-19,5.792841472467179e-19,4.8552028444524855e-20,1.69932097294015e-18,9.06304470649211e-19,-2.2657611766230274e-19,0.00042517005931586027,-5.304758382151437e-20,-1.5734453836103525e-19,0.0008928571478463709,-2.5696127914533696e-18,-2.9103388255216186e-18,-0.00044642857392318547,-0.00029761905898340046,2.9384091996086056e-19,2.718913463646421e-19,2.1267564473638175e-19,4.3758041812162696e-20,5.2867765096103e-19,2.379049248378876e-19,3.3881317890172014e-21,-5.304758382151437e-20,0.00014880952949170023,9.493161725978264e-21,0.0004960317746736109,-3.2328689540652324e-19,4.11383866616014e-20,4.876105633908215e-19,-0.0005952381179668009,3.418147136142939e-20,5.1357256395633595e-20,4.531522547116511e-20,-3.043273406177882e-20,-2.2028234918180537e-20,-1.5648180798146291e-34,-6.385325095844771e-20,-1.5734453836103525e-19,9.493161725978264e-21,9.920635056914762e-05,6.0,4.0,5.0,8.0,0.04315972328186035,-0.009159225970506668,-0.012470237910747528,-0.010555555112659931,-0.0072519839741289616,0.0005580357392318547,0.0010714285308495164,0.0008928571478463709,0.0005952381179668009,0.0010416667209938169,0.0012499999720603228,0.0008333333535119891,0.0007440476329065859,0.0006944444612599909,0.00034722223062999547,-0.009159225970506668,0.006732887122780085,0.0010714285308495164,0.0008928571478463709,0.0005952381179668009,-0.0008370535797439516,-0.00042857142398133874,-0.0003571428533177823,-0.0002380952355451882,1.734723475976807e-18,5.947623508688102e-19,4.558005057544823e-19,1.0620756080875938e-18,3.304235253882952e-19,5.435843244786364e-19,-0.012470237910747528,0.0010714285308495164,0.015605159103870392,0.0012499999720603228,0.0008333333535119891,1.9913208990501973e-18,-0.0007142857066355646,-1.2936398901100778e-33,5.929230630780102e-20,-0.0031250000465661287,-0.0008333333535119891,-0.0005555555690079927,-2.5266404347650493e-33,-6.765019120972709e-34,1.2272388902430275e-19,-0.010555555112659931,0.0008928571478463709,0.0012499999720603228,0.009742063470184803,0.0006944444612599909,1.531276956753318e-18,-1.5916437792553553e-33,-0.00044642857392318547,-6.434424191773403e-34,-3.173443528006543e-33,-0.0006249999860301614,-6.157944706217635e-34,-0.0014880952658131719,-0.00034722223062999547,-6.500661002554835e-34,-0.0072519839741289616,0.0005952381179668009,0.0008333333535119891,0.0006944444612599909,0.00380810652859509,1.0365183120991195e-18,-1.0773805209694552e-33,-6.733628370853465e-34,-0.0001700680295471102,-2.1480974583376866e-33,-7.364906030620978e-34,-0.0002380952355451882,-1.3151617223056953e-33,-0.00019841270113829523,-0.00034722223062999547,0.0005580357392318547,-0.0008370535797439516,1.9913208990501973e-18,1.531276956753318e-18,1.0365183120991195e-18,0.00016741071885917336,-1.7401046994517708e-19,-1.0875654371573568e-19,-8.286212639120624e-20,-3.4694470036524025e-19,-1.189524624189438e-19,-7.930164376674537e-20,-2.1241512161751876e-19,-6.608470637012875e-20,-8.26058813470738e-20,0.0010714285308495164,-0.00042857142398133874,-0.0007142857066355646,-1.5916437792553553e-33,-1.0773805209694552e-33,-1.7401046994517708e-19,0.0002857142826542258,1.1304399712015472e-34,8.61287580706745e-35,3.606221288304702e-34,1.23641870773972e-34,8.242791384931467e-35,2.207890631531193e-34,6.868992629452272e-35,8.586241217294229e-35,0.0008928571478463709,-0.0003571428533177823,-1.2936398901100778e-33,-0.00044642857392318547,-6.733628370853465e-34,-1.0875654371573568e-19,1.1304399712015472e-34,0.00017857142665889114,5.383047235924193e-35,2.253888276491846e-34,7.727617210359176e-35,5.151744615582167e-35,1.3799316447069957e-34,4.2931206086471143e-35,5.366400904301856e-35,0.0005952381179668009,-0.0002380952355451882,5.929230630780102e-20,-6.434424191773403e-34,-0.0001700680295471102,-8.286212639120624e-20,8.61287580706745e-35,5.383047235924193e-35,6.80272132740356e-05,1.7172482434588457e-34,5.887707968101948e-35,-1.6940658945086007e-20,1.0513764966717286e-34,0.0,-3.7301412455046147e-20,0.0010416667209938169,1.734723475976807e-18,-0.0031250000465661287,-3.173443528006543e-33,-2.1480974583376866e-33,-3.4694470036524025e-19,3.606221288304702e-34,2.253888276491846e-34,1.7172482434588457e-34,0.0010416667209938169,2.465190273714364e-34,1.643460259005823e-34,4.402125783961174e-34,1.3695502158381858e-34,1.7119377410991397e-34,0.0012499999720603228,5.947623508688102e-19,-0.0008333333535119891,-0.0006249999860301614,-7.364906030620978e-34,-1.189524624189438e-19,1.23641870773972e-34,7.727617210359176e-35,5.887707968101948e-35,2.465190273714364e-34,0.00041666667675599456,5.634720691229615e-35,1.5093001933503877e-34,4.6956005760246795e-35,5.869501007016775e-35,0.0008333333535119891,4.558005057544823e-19,-0.0005555555690079927,-6.157944706217635e-34,-0.0002380952355451882,-7.930164376674537e-20,8.242791384931467e-35,5.151744615582167e-35,-1.6940658945086007e-20,1.643460259005823e-34,5.634720691229615e-35,0.00015873015217948705,1.0062000906354684e-34,0.0,-3.5063966446272634e-20,0.0007440476329065859,1.0620756080875938e-18,-2.5266404347650493e-33,-0.0014880952658131719,-1.3151617223056953e-33,-2.1241512161751876e-19,2.207890631531193e-34,1.3799316447069957e-34,1.0513764966717286e-34,4.402125783961174e-34,1.5093001933503877e-34,1.0062000906354684e-34,0.00037202381645329297,8.38500094661952e-35,1.0481251757246252e-34,0.0006944444612599909,3.304235253882952e-19,-6.765019120972709e-34,-0.00034722223062999547,-0.00019841270113829523,-6.608470637012875e-20,6.868992629452272e-35,4.2931206086471143e-35,0.0,1.3695502158381858e-34,4.6956005760246795e-35,0.0,8.38500094661952e-35,9.920635056914762e-05,2.461006549844628e-36,0.00034722223062999547,5.435843244786364e-19,1.2272388902430275e-19,-6.500661002554835e-34,-0.00034722223062999547,-8.26058813470738e-20,8.586241217294229e-35,5.366400904301856e-35,-3.7301412455046147e-20,1.7119377410991397e-34,5.869501007016775e-35,-3.5063966446272634e-20,1.0481251757246252e-34,2.461006549844628e-36,4.960317528457381e-05,6.0,4.0,6.0,3.0,0.08123110234737396,-0.01898384280502796,-0.02579365111887455,-0.01898384280502796,-0.03154762089252472,0.0012400794075801969,0.0023809524718672037,0.001700680237263441,0.0029761905316263437,0.002314814832061529,0.0023809524718672037,0.004166666883975267,0.0012400794075801969,0.0029761905316263437,0.0034722222480922937,-0.01898384280502796,0.01441397424787283,0.0023809524718672037,0.001700680237263441,0.0029761905316263437,-0.0018601190531626344,-0.0009523809421807528,-0.0006802721181884408,-0.0011904762359336019,3.3979758586920418e-18,1.0829194221505878e-18,2.49693008538956e-18,1.5720931501039814e-18,1.0570971181733668e-18,9.234809794664512e-18,-0.02579365111887455,0.0023809524718672037,0.033399470150470734,0.0023809524718672037,0.004166666883975267,4.336808689942018e-18,-0.0015873016091063619,1.9991737898942577e-19,4.387794551936138e-19,-0.0069444444961845875,-0.0015873016091063619,-0.0027777778450399637,-3.1667306942127894e-19,3.3881317890172014e-20,-1.834464435076166e-32,-0.01898384280502796,0.001700680237263441,0.0023809524718672037,0.01441397424787283,0.0029761905316263437,2.7056401616458773e-18,-0.0,-0.0006802721181884408,-3.1299374420724893e-19,-5.6519303877031345e-33,-0.0009523809421807528,-2.8278026384586963e-33,-0.0018601190531626344,-0.0011904762359336019,9.234809794664512e-18,-0.03154762089252472,0.0029761905316263437,0.004166666883975267,0.0029761905316263437,0.06626984477043152,5.7462715141731735e-18,4.83863745408686e-19,-1.5246593050577406e-19,-0.0029761905316263437,-1.1466650579947832e-32,3.555966089069357e-20,-0.004166666883975267,4.553649124439119e-18,-0.0029761905316263437,-0.02083333395421505,0.0012400794075801969,-0.0018601190531626344,4.336808689942018e-18,2.7056401616458773e-18,5.7462715141731735e-18,0.00037202381645329297,-4.336808689942018e-19,-2.168404344971009e-19,-4.0657581468206416e-19,-7.709882172895574e-19,-2.2334639096058945e-19,-3.965082252960754e-19,-3.2382551923226597e-19,-2.8497015752365946e-19,-1.6521176010920818e-18,0.0023809524718672037,-0.0009523809421807528,-0.0015873016091063619,-0.0,4.83863745408686e-19,-4.336808689942018e-19,0.0006349206087179482,-4.743384504624082e-20,-8.131516293641283e-20,3.046435368692851e-19,7.629240593471721e-20,-1.8705055871176929e-19,7.64004844730584e-22,-0.0,2.2148194360453212e-33,0.001700680237263441,-0.0006802721181884408,1.9991737898942577e-19,-0.0006802721181884408,-1.5246593050577406e-19,-2.168404344971009e-19,-4.743384504624082e-20,0.0002721088530961424,2.0328790734103208e-20,4.092601131822876e-34,-3.2533107195764344e-20,2.527783052008247e-34,1.850740041757253e-20,4.0657581468206416e-20,6.7407548053553255e-34,0.0029761905316263437,-0.0011904762359336019,4.387794551936138e-19,-3.1299374420724893e-19,-0.0029761905316263437,-4.0657581468206416e-19,-8.131516293641283e-20,2.0328790734103208e-20,0.0011904762359336019,8.667139335448543e-34,-6.713366852402241e-22,-2.338131983897116e-19,-6.776836707570151e-22,2.66856323825426e-19,-9.742216858065258e-19,0.002314814832061529,3.3979758586920418e-18,-0.0069444444961845875,-5.6519303877031345e-33,-1.1466650579947832e-32,-7.709882172895574e-19,3.046435368692851e-19,4.092601131822876e-34,8.667139335448543e-34,0.002314814832061529,4.6275722843019456e-34,6.673729586839377e-34,6.709782825098562e-34,5.804220548133458e-34,3.4238756199515236e-33,0.0023809524718672037,1.0829194221505878e-18,-0.0015873016091063619,-0.0009523809421807528,3.555966089069357e-20,-2.2334639096058945e-19,7.629240593471721e-20,-3.2533107195764344e-20,-6.713366852402241e-22,4.6275722843019456e-34,0.0006349206087179482,1.9822652815616536e-34,1.259052256601817e-19,-1.3552527156068805e-20,2.8888949165808538e-34,0.004166666883975267,2.49693008538956e-18,-0.0027777778450399637,-2.8278026384586963e-33,-0.004166666883975267,-3.965082252960754e-19,-1.8705055871176929e-19,2.527783052008247e-34,-2.338131983897116e-19,6.673729586839377e-34,1.9822652815616536e-34,0.0027777778450399637,3.3284074329897588e-34,2.3987741541266838e-34,1.8137451716485723e-33,0.0012400794075801969,1.5720931501039814e-18,-3.1667306942127894e-19,-0.0018601190531626344,4.553649124439119e-18,-3.2382551923226597e-19,7.64004844730584e-22,1.850740041757253e-20,-6.776836707570151e-22,6.709782825098562e-34,1.259052256601817e-19,3.3284074329897588e-34,0.00037202381645329297,-4.2156019147846226e-19,-1.6521176010920818e-18,0.0029761905316263437,1.0570971181733668e-18,3.3881317890172014e-20,-0.0011904762359336019,-0.0029761905316263437,-2.8497015752365946e-19,-0.0,4.0657581468206416e-20,2.66856323825426e-19,5.804220548133458e-34,-1.3552527156068805e-20,2.3987741541266838e-34,-4.2156019147846226e-19,0.0011904762359336019,-9.742216858065258e-19,0.0034722222480922937,9.234809794664512e-18,-1.834464435076166e-32,9.234809794664512e-18,-0.02083333395421505,-1.6521176010920818e-18,2.2148194360453212e-33,6.7407548053553255e-34,-9.742216858065258e-19,3.4238756199515236e-33,2.8888949165808538e-34,1.8137451716485723e-33,-1.6521176010920818e-18,-9.742216858065258e-19,0.010416666977107525,6.0,4.0,6.0,4.0,0.06548185646533966,-0.014684311114251614,-0.019970238208770752,-0.014684311114251614,-0.019970238208770752,0.0009300595265813172,0.0017857142956927419,0.0012755101779475808,0.0017857142956927419,0.0017361111240461469,0.0017857142956927419,0.0024999999441206455,0.0009300595265813172,0.0017857142956927419,0.0017361111240461469,-0.014684311114251614,0.01098905224353075,0.0017857142956927419,0.0012755101779475808,0.0017857142956927419,-0.0013950893189758062,-0.0007142857066355646,-0.0005102040595375001,-0.0007142857066355646,3.3003788861684414e-18,8.145111007008592e-19,1.5262156453802591e-18,1.1655173354219173e-18,8.267041565201971e-19,3.3003788861684414e-18,-0.019970238208770752,0.0017857142956927419,0.025466270744800568,0.0017857142956927419,0.0024999999441206455,3.0899761915836876e-18,-0.0011904762359336019,-1.8402165595314738e-19,1.367299438005979e-19,-0.0052083334885537624,-0.0011904762359336019,-0.0016666667070239782,-2.6112729675227785e-19,2.117582368135751e-21,-6.118288669608676e-33,-0.014684311114251614,0.0012755101779475808,0.0017857142956927419,0.01098905224353075,0.0017857142956927419,2.2307487409439774e-18,1.0842021724855044e-19,-0.0005102040595375001,8.469426682452584e-20,-4.7237200080175314e-33,-0.0007142857066355646,-1.9345825011642495e-33,-0.0013950893189758062,-0.0007142857066355646,3.3003788861684414e-18,-0.019970238208770752,0.0017857142956927419,0.0024999999441206455,0.0017857142956927419,0.025466270744800568,3.144186300207963e-18,1.3658177507337434e-19,-5.082197683525802e-20,-0.0011904762359336019,-6.455499795293189e-33,2.2657611927788988e-21,-0.0016666667070239782,2.439454888092385e-18,-0.0011904762359336019,-0.0052083334885537624,0.0009300595265813172,-0.0013950893189758062,3.0899761915836876e-18,2.2307487409439774e-18,3.144186300207963e-18,0.00027901786961592734,-2.168404344971009e-19,-1.8973538018496328e-19,-2.439454888092385e-19,-5.782411758918651e-19,-1.7141201129781246e-19,-2.379049248378876e-19,-2.4908248720834594e-19,-1.7381149423376687e-19,-5.782411758918651e-19,0.0017857142956927419,-0.0007142857066355646,-0.0011904762359336019,1.0842021724855044e-19,1.3658177507337434e-19,-2.168404344971009e-19,0.0004761904710903764,6.776263578034403e-21,1.3552527156068805e-20,-2.727820647879969e-19,-8.169409566749308e-20,-1.122303403969404e-19,-2.8547568544111923e-22,-8.470329472543003e-22,4.81482486096809e-34,0.0012755101779475808,-0.0005102040595375001,-1.8402165595314738e-19,-0.0005102040595375001,-5.082197683525802e-20,-1.8973538018496328e-19,6.776263578034403e-21,0.0002040816325461492,-1.3552527156068805e-20,4.333342374871281e-34,6.683240009569426e-20,1.8055593228630336e-34,3.420934023948904e-20,3.3881317890172014e-20,2.8888949165808538e-34,0.0017857142956927419,-0.0007142857066355646,1.367299438005979e-19,8.469426682452584e-20,-0.0011904762359336019,-2.439454888092385e-19,1.3552527156068805e-20,-1.3552527156068805e-20,0.0004761904710903764,4.778429076308235e-34,-9.063044973063987e-22,-1.122303403969404e-19,-1.8481416121904567e-21,-2.6282830320911366e-20,-2.727820647879969e-19,0.0017361111240461469,3.3003788861684414e-18,-0.0052083334885537624,-4.7237200080175314e-33,-6.455499795293189e-33,-5.782411758918651e-19,-2.727820647879969e-19,4.333342374871281e-34,4.778429076308235e-34,0.0017361111240461469,3.7779984359245225e-34,5.185636849822384e-34,5.07883216779064e-34,3.5519111534093083e-34,1.1983564302488348e-33,0.0017857142956927419,8.145111007008592e-19,-0.0011904762359336019,-0.0007142857066355646,2.2657611927788988e-21,-1.7141201129781246e-19,-8.169409566749308e-20,6.683240009569426e-20,-9.063044973063987e-22,3.7779984359245225e-34,0.0004761904710903764,1.5378146557299632e-34,1.0473638777759114e-19,-0.0,2.1666711874356403e-34,0.0024999999441206455,1.5262156453802591e-18,-0.0016666667070239782,-1.9345825011642495e-33,-0.0016666667070239782,-2.379049248378876e-19,-1.122303403969404e-19,1.8055593228630336e-34,-1.122303403969404e-19,5.185636849822384e-34,1.5378146557299632e-34,0.0011111111380159855,2.0638714513913466e-34,1.4738119729813148e-34,5.185636849822384e-34,0.0009300595265813172,1.1655173354219173e-18,-2.6112729675227785e-19,-0.0013950893189758062,2.439454888092385e-18,-2.4908248720834594e-19,-2.8547568544111923e-22,3.420934023948904e-20,-1.8481416121904567e-21,5.07883216779064e-34,1.0473638777759114e-19,2.0638714513913466e-34,0.00027901786961592734,-2.5955420602235513e-19,-5.782411758918651e-19,0.0017857142956927419,8.267041565201971e-19,2.117582368135751e-21,-0.0007142857066355646,-0.0011904762359336019,-1.7381149423376687e-19,-8.470329472543003e-22,3.3881317890172014e-20,-2.6282830320911366e-20,3.5519111534093083e-34,-0.0,1.4738119729813148e-34,-2.5955420602235513e-19,0.0004761904710903764,-2.727820647879969e-19,0.0017361111240461469,3.3003788861684414e-18,-6.118288669608676e-33,3.3003788861684414e-18,-0.0052083334885537624,-5.782411758918651e-19,4.81482486096809e-34,2.8888949165808538e-34,-2.727820647879969e-19,1.1983564302488348e-33,2.1666711874356403e-34,5.185636849822384e-34,-5.782411758918651e-19,-2.727820647879969e-19,0.0017361111240461469,6.0,4.0,6.0,5.0,0.05494897812604904,-0.011985544115304947,-0.016309523954987526,-0.011985544115304947,-0.013809523545205593,0.0007440476329065859,0.0014285714132711291,0.0010204081190750003,0.0011904762359336019,0.0013888889225199819,0.0014285714132711291,0.0016666667070239782,0.0007440476329065859,0.0011904762359336019,0.0009920635493472219,-0.011985544115304947,0.008886479772627354,0.0014285714132711291,0.0010204081190750003,0.0011904762359336019,-0.0011160714784637094,-0.0005714285653084517,-0.0004081632650922984,-0.0004761904710903764,-4.55878508886246e-18,-1.4727396595496247e-18,-1.6154393787557149e-18,-2.0057740190981832e-18,-1.3291712973027773e-18,-3.2192279185836204e-18,-0.016309523954987526,0.0014285714132711291,0.020595237612724304,0.0014285714132711291,0.0016666667070239782,-4.933119884809045e-18,-0.0009523809421807528,2.1627768026192633e-20,8.48508107554515e-20,-0.004166666883975267,-0.0009523809421807528,-0.0011111111380159855,-4.563218363355438e-19,-1.2786420907055748e-19,-2.0958945972034054e-19,-0.011985544115304947,0.0010204081190750003,0.0014285714132711291,0.008886479772627354,0.0011904762359336019,-3.0747358023877044e-18,1.4680209560465277e-19,-0.0004081632650922984,-1.390330989692811e-19,-1.2802088569614754e-32,-0.0005714285653084517,-1.3552527156068805e-19,-0.0011160714784637094,-0.0004761904710903764,-3.2179567487772795e-18,-0.013809523545205593,0.0011904762359336019,0.0016666667070239782,0.0011904762359336019,0.012857142835855484,-3.767602549387128e-18,2.419044723465522e-19,1.8428102554279677e-20,-0.0005952381179668009,-1.5572546552878508e-32,3.209957408190706e-20,-0.0008333333535119891,-2.791820594150174e-18,-0.0005952381179668009,-0.0019841270986944437,0.0007440476329065859,-0.0011160714784637094,-4.933119884809045e-18,-3.0747358023877044e-18,-3.767602549387128e-18,0.00022321428696159273,3.3881317890172014e-19,1.0842021724855044e-19,1.7618285302889447e-19,9.251859021064995e-19,2.718913463646421e-19,3.172065750669815e-19,3.7760453751043035e-19,2.2657611766230274e-19,5.57149000849952e-19,0.0014285714132711291,-0.0005714285653084517,-0.0009523809421807528,1.4680209560465277e-19,2.419044723465522e-19,3.3881317890172014e-19,0.0003809523768723011,-5.648468728773412e-20,-7.10546724466373e-20,-4.4762817455996005e-20,-3.7269179876137855e-21,-4.284520276977068e-20,5.476863279351202e-34,3.034127702802428e-34,8.155109608264702e-34,0.0010204081190750003,-0.0004081632650922984,2.1627768026192633e-20,-0.0004081632650922984,1.8428102554279677e-20,1.0842021724855044e-19,-5.648468728773412e-20,0.00016326530021615326,-1.0590012911746382e-20,5.180476154115786e-34,4.821548548866368e-20,-4.773812593872851e-22,5.0974766141684514e-20,6.776263578034403e-21,-1.8799214228044752e-21,0.0011904762359336019,-0.0004761904710903764,8.48508107554515e-20,-1.390330989692811e-19,-0.0005952381179668009,1.7618285302889447e-19,-7.10546724466373e-20,-1.0590012911746382e-20,0.0002380952355451882,8.035597648629577e-34,-8.327303563063406e-22,4.743384504624082e-20,-2.320533433637302e-21,8.967499271134612e-20,2.210734020348703e-19,0.0013888889225199819,-4.55878508886246e-18,-0.004166666883975267,-1.2802088569614754e-32,-1.5572546552878508e-32,9.251859021064995e-19,-4.4762817455996005e-20,5.180476154115786e-34,8.035597648629577e-34,0.0013888889225199819,1.038777102817459e-33,1.2164301150702082e-33,1.6141128027583464e-33,9.39120161122684e-34,2.347800356888962e-33,0.0014285714132711291,-1.4727396595496247e-18,-0.0009523809421807528,-0.0005714285653084517,3.209957408190706e-20,2.718913463646421e-19,-3.7269179876137855e-21,4.821548548866368e-20,-8.327303563063406e-22,1.038777102817459e-33,0.0003809523768723011,-6.683337631421991e-22,1.8357301386841393e-19,-6.776263578034403e-21,-2.7757677197222075e-21,0.0016666667070239782,-1.6154393787557149e-18,-0.0011111111380159855,-1.3552527156068805e-19,-0.0008333333535119891,3.172065750669815e-19,-4.284520276977068e-20,-4.773812593872851e-22,4.743384504624082e-20,1.2164301150702082e-33,-6.683337631421991e-22,0.0005555555690079927,-1.3053393732484986e-21,7.240243400782174e-20,1.0826444233710052e-19,0.0007440476329065859,-2.0057740190981832e-18,-4.563218363355438e-19,-0.0011160714784637094,-2.791820594150174e-18,3.7760453751043035e-19,5.476863279351202e-34,5.0974766141684514e-20,-2.320533433637302e-21,1.6141128027583464e-33,1.8357301386841393e-19,-1.3053393732484986e-21,0.00022321428696159273,2.0203921358289793e-19,5.708447853483574e-19,0.0011904762359336019,-1.3291712973027773e-18,-1.2786420907055748e-19,-0.0004761904710903764,-0.0005952381179668009,2.2657611766230274e-19,3.034127702802428e-34,6.776263578034403e-21,8.967499271134612e-20,9.39120161122684e-34,-6.776263578034403e-21,7.240243400782174e-20,2.0203921358289793e-19,0.0002380952355451882,1.8535849614530671e-19,0.0009920635493472219,-3.2192279185836204e-18,-2.0958945972034054e-19,-3.2179567487772795e-18,-0.0019841270986944437,5.57149000849952e-19,8.155109608264702e-34,-1.8799214228044752e-21,2.210734020348703e-19,2.347800356888962e-33,-2.7757677197222075e-21,1.0826444233710052e-19,5.708447853483574e-19,1.8535849614530671e-19,0.0004960317746736109,6.0,4.0,6.0,6.0,0.04737575724720955,-0.010129677131772041,-0.013789682649075985,-0.010129677131772041,-0.010129677131772041,0.0006200397037900984,0.0011904762359336019,0.0008503401186317205,0.0008503401186317205,0.0011574074160307646,0.0011904762359336019,0.0011904762359336019,0.0006200397037900984,0.0008503401186317205,0.0006200397037900984,-0.010129677131772041,0.007462088949978352,0.0011904762359336019,0.0008503401186317205,0.0008503401186317205,-0.0009300595265813172,-0.0004761904710903764,-0.0003401360590942204,-0.0003401360590942204,1.6989879293460209e-18,5.71374491133121e-19,5.4142910539262945e-19,8.131516293641283e-19,4.487942342673699e-19,7.463958791844145e-19,-0.013789682649075985,0.0011904762359336019,0.017294973134994507,0.0011904762359336019,0.0011904762359336019,2.2768245622195593e-18,-0.0007936508045531809,9.406951896250479e-20,6.830768964287965e-20,-0.0034722222480922937,-0.0007936508045531809,-0.0007936508045531809,-9.268449549966424e-20,2.235105184575216e-20,-1.8358123397575118e-19,-0.010129677131772041,0.0008503401186317205,0.0011904762359336019,0.007462088949978352,0.0008503401186317205,1.4558225752519965e-18,-2.3423310564168164e-20,-0.0003401360590942204,2.2051248956902838e-20,-2.9324220030238646e-33,-0.0004761904710903764,2.710505431213761e-20,-0.0009300595265813172,-0.0003401360590942204,7.75726101043108e-19,-0.010129677131772041,0.0008503401186317205,0.0011904762359336019,0.0008503401186317205,0.007462088949978352,1.4365678785432934e-18,-2.3423310564168164e-20,-3.2153693019718195e-20,-0.0003401360590942204,-2.9324220030238646e-33,-1.4619858333726437e-20,-0.0004761904710903764,1.0842021724855044e-18,-0.0003401360590942204,-0.0009300595265813172,0.0006200397037900984,-0.0009300595265813172,2.2768245622195593e-18,1.4558225752519965e-18,1.4365678785432934e-18,0.00018601190822664648,-2.303929616531697e-19,-9.486769009248164e-20,-9.486769009248164e-20,-3.854941086447787e-19,-1.1328805883115137e-19,-1.1328805883115137e-19,-1.727518887937835e-19,-8.092004848459951e-20,-1.6042785409432666e-19,0.0011904762359336019,-0.0004761904710903764,-0.0007936508045531809,-2.3423310564168164e-20,-2.3423310564168164e-20,-2.303929616531697e-19,0.0003174603043589741,-1.3560765034864524e-20,-1.3560765034864524e-20,1.5232176843464255e-19,3.8216817049806783e-20,3.8216817049806783e-20,1.775466667481983e-34,9.280770115863077e-35,1.925929944387236e-34,0.0008503401186317205,-0.0003401360590942204,9.406951896250479e-20,-0.0003401360590942204,-3.2153693019718195e-20,-9.486769009248164e-20,-1.3560765034864524e-20,0.0001360544265480712,1.0660369308046705e-20,1.9192724448876325e-34,-2.469397469173612e-20,6.2693262627487065e-22,2.280622736485507e-20,-0.0,8.407313496385521e-22,0.0008503401186317205,-0.0003401360590942204,6.830768964287965e-20,2.2051248956902838e-20,-0.0003401360590942204,-9.486769009248164e-20,-1.3560765034864524e-20,1.0660369308046705e-20,0.0001360544265480712,1.9192724448876325e-34,-2.0978462042468247e-22,-1.3552527156068805e-20,-7.72752188831556e-22,-1.7677610631798265e-20,2.1143654110347438e-20,0.0011574074160307646,1.6989879293460209e-18,-0.0034722222480922937,-2.9324220030238646e-33,-2.9324220030238646e-33,-3.854941086447787e-19,1.5232176843464255e-19,1.9192724448876325e-34,1.9192724448876325e-34,0.0011574074160307646,2.346576235642924e-34,2.346576235642924e-34,3.3627348526873947e-34,1.677000189323904e-34,3.3627348526873947e-34,0.0011904762359336019,5.71374491133121e-19,-0.0007936508045531809,-0.0004761904710903764,-1.4619858333726437e-20,-1.1328805883115137e-19,3.8216817049806783e-20,-2.469397469173612e-20,-2.0978462042468247e-22,2.346576235642924e-34,0.0003174603043589741,8.77705676784819e-22,3.535952841889549e-20,6.776263578034403e-21,-5.736298124018407e-22,0.0011904762359336019,5.4142910539262945e-19,-0.0007936508045531809,2.710505431213761e-20,-0.0004761904710903764,-1.1328805883115137e-19,3.8216817049806783e-20,6.2693262627487065e-22,-1.3552527156068805e-20,2.346576235642924e-34,8.77705676784819e-22,0.0003174603043589741,1.7142690135663198e-21,-1.5716683670100413e-20,7.400612395806039e-20,0.0006200397037900984,8.131516293641283e-19,-9.268449549966424e-20,-0.0009300595265813172,1.0842021724855044e-18,-1.727518887937835e-19,1.775466667481983e-34,2.280622736485507e-20,-7.72752188831556e-22,3.3627348526873947e-34,3.535952841889549e-20,1.7142690135663198e-21,0.00018601190822664648,-9.67407371920314e-20,-1.5970621655805657e-19,0.0008503401186317205,4.487942342673699e-19,2.235105184575216e-20,-0.0003401360590942204,-0.0003401360590942204,-8.092004848459951e-20,9.280770115863077e-35,-0.0,-1.7677610631798265e-20,1.677000189323904e-34,6.776263578034403e-21,-1.5716683670100413e-20,-9.67407371920314e-20,0.0001360544265480712,8.189327978964357e-21,0.0006200397037900984,7.463958791844145e-19,-1.8358123397575118e-19,7.75726101043108e-19,-0.0009300595265813172,-1.6042785409432666e-19,1.925929944387236e-34,8.407313496385521e-22,2.1143654110347438e-20,3.3627348526873947e-34,-5.736298124018407e-22,7.400612395806039e-20,-1.5970621655805657e-19,8.189327978964357e-21,0.00018601190822664648,6.0,4.0,6.0,7.0,0.04165620729327202,-0.008773688226938248,-0.01194727886468172,-0.008773688226938248,-0.0077522676438093185,0.0005314626032486558,0.0010204081190750003,0.0007288630004040897,0.0006377550889737904,0.0009920635493472219,0.0010204081190750003,0.0008928571478463709,0.0005314626032486558,0.0006377550889737904,0.00041335978312417865,-0.008773688226938248,0.006432519294321537,0.0010204081190750003,0.0007288630004040897,0.0006377550889737904,-0.0007971939048729837,-0.0004081632650922984,-0.0002915451768785715,-0.00025510202976875007,1.8859308511805817e-18,3.535590433383674e-19,5.266693598313278e-19,8.131516293641283e-19,2.1000493703238944e-19,4.798930199744901e-19,-0.01194727886468172,0.0010204081190750003,0.014909297227859497,0.0010204081190750003,0.0008928571478463709,1.8431436932253575e-18,-0.0006802721181884408,-9.430516203950583e-20,5.28816727163864e-20,-0.0029761905316263437,-0.0006802721181884408,-0.0005952381179668009,-1.1910834719031883e-19,1.2101139412735784e-20,1.5084893457990067e-19,-0.008773688226938248,0.0007288630004040897,0.0010204081190750003,0.006432519294321537,0.0006377550889737904,1.3638302683663257e-18,-2.6231432031833706e-20,-0.0002915451768785715,-7.890248388474879e-20,-2.857023407639223e-33,-0.0004081632650922984,2.0328790734103208e-20,-0.0007971939048729837,-0.00025510202976875007,4.742474088962391e-19,-0.0077522676438093185,0.0006377550889737904,0.0008928571478463709,0.0006377550889737904,0.004733560141175985,1.1655173354219173e-18,7.069485534252526e-20,-7.831884980145581e-20,-0.00021258502965793014,-2.41066359071903e-33,1.256747136879179e-20,-0.00029761905898340046,8.538092108323347e-19,-0.00021258502965793014,-0.0004960317746736109,0.0005314626032486558,-0.0007971939048729837,1.8431436932253575e-18,1.3638302683663257e-18,1.1655173354219173e-18,0.0001594387722434476,-1.4907779871675686e-19,-1.4907779871675686e-19,-1.0842021724855044e-19,-3.304235253882952e-19,-9.710405688904971e-20,-8.49660473545378e-20,-1.3410928052366505e-19,-6.06900347478625e-20,-1.047913371271891e-19,0.0010204081190750003,-0.0004081632650922984,-0.0006802721181884408,-2.6231432031833706e-20,7.069485534252526e-20,-1.4907779871675686e-19,0.0002721088530961424,-2.4275975852067998e-21,-4.228582834288023e-21,-1.5587546559314107e-19,2.1533618070377906e-20,-4.0082264427478714e-20,1.3616926559925378e-34,6.350724746603159e-35,1.0682892660272949e-34,0.0007288630004040897,-0.0002915451768785715,-9.430516203950583e-20,-0.0002915451768785715,-7.831884980145581e-20,-1.4907779871675686e-19,-2.4275975852067998e-21,0.00011661807366181165,1.3206730924898261e-20,3.1156108130672694e-34,4.0657581468206416e-20,-4.2326487117459536e-22,-5.789481697463536e-20,1.8634724839594607e-20,-9.998345599109158e-23,0.0006377550889737904,-0.00025510202976875007,5.28816727163864e-20,-7.890248388474879e-20,-0.00021258502965793014,-1.0842021724855044e-19,-4.228582834288023e-21,1.3206730924898261e-20,8.50340147735551e-05,2.1867953292974813e-34,-6.610536750813892e-22,-1.3552527156068805e-20,3.466622426722959e-24,1.5619473792254093e-20,1.5129231954410044e-20,0.0009920635493472219,1.8859308511805817e-18,-0.0029761905316263437,-2.857023407639223e-33,-2.41066359071903e-33,-3.304235253882952e-19,-1.5587546559314107e-19,3.1156108130672694e-34,2.1867953292974813e-34,0.0009920635493472219,1.7308234812952902e-34,1.8520131606508515e-34,2.882344061051164e-34,1.257750141992928e-34,2.1195418995735804e-34,0.0010204081190750003,3.535590433383674e-19,-0.0006802721181884408,-0.0004081632650922984,1.256747136879179e-20,-9.710405688904971e-20,2.1533618070377906e-20,4.0657581468206416e-20,-6.610536750813892e-22,1.7308234812952902e-34,0.0002721088530961424,-5.925708044983041e-22,4.903217770954348e-20,-0.0,-1.5424585920189409e-21,0.0008928571478463709,5.266693598313278e-19,-0.0005952381179668009,2.0328790734103208e-20,-0.00029761905898340046,-8.49660473545378e-20,-4.0082264427478714e-20,-4.2326487117459536e-22,-1.3552527156068805e-20,1.8520131606508515e-34,-5.925708044983041e-22,0.00019841270113829523,-1.1573648194035922e-21,-4.033713137578595e-21,-4.899759768252964e-20,0.0005314626032486558,8.131516293641283e-19,-1.1910834719031883e-19,-0.0007971939048729837,8.538092108323347e-19,-1.3410928052366505e-19,1.3616926559925378e-34,-5.789481697463536e-20,3.466622426722959e-24,2.882344061051164e-34,4.903217770954348e-20,-1.1573648194035922e-21,0.0001594387722434476,-9.667621710425226e-20,-1.0211027027849427e-19,0.0006377550889737904,2.1000493703238944e-19,1.2101139412735784e-20,-0.00025510202976875007,-0.00021258502965793014,-6.06900347478625e-20,6.350724746603159e-35,1.8634724839594607e-20,1.5619473792254093e-20,1.257750141992928e-34,-0.0,-4.033713137578595e-21,-9.667621710425226e-20,8.50340147735551e-05,1.293258194414802e-20,0.00041335978312417865,4.798930199744901e-19,1.5084893457990067e-19,4.742474088962391e-19,-0.0004960317746736109,-1.047913371271891e-19,1.0682892660272949e-34,-9.998345599109158e-23,1.5129231954410044e-20,2.1195418995735804e-34,-1.5424585920189409e-21,-4.899759768252964e-20,-1.0211027027849427e-19,1.293258194414802e-20,8.26719551696442e-05,6.0,4.0,6.0,8.0,0.03717875853180885,-0.007738980930298567,-0.010540674440562725,-0.007738980930298567,-0.00612599216401577,0.0004650297632906586,0.0008928571478463709,0.0006377550889737904,0.0004960317746736109,0.0008680555620230734,0.0008928571478463709,0.0006944444612599909,0.0004650297632906586,0.0004960317746736109,0.00028935185400769114,-0.007738980930298567,0.005653256084769964,0.0008928571478463709,0.0006377550889737904,0.0004960317746736109,-0.0006975446594879031,-0.0003571428533177823,-0.00025510202976875007,-0.00019841270113829523,1.4456028621814804e-18,2.888845571280194e-19,3.659989091729758e-19,3.4296190326397985e-19,1.3875550232558713e-19,3.0874477589450545e-19,-0.010540674440562725,0.0008928571478463709,0.013103505596518517,0.0008928571478463709,0.0006944444612599909,1.2414483797512224e-18,-0.0005952381179668009,-2.4923373201347243e-19,-5.2537555888041535e-20,-0.0026041667442768812,-0.0005952381179668009,-0.00046296295477077365,-3.097720566671139e-19,-1.1182985573349402e-19,9.49795598079809e-20,-0.007738980930298567,0.0006377550889737904,0.0008928571478463709,0.005653256084769964,0.0004960317746736109,8.9456688115466e-19,-1.1328805883115137e-19,-0.00025510202976875007,-9.726130521596575e-20,-1.8539149360230393e-33,-0.0003571428533177823,-2.371692252312041e-20,-0.0006975446594879031,-0.00019841270113829523,3.086329255660518e-19,-0.00612599216401577,0.0004960317746736109,0.0006944444612599909,0.0004960317746736109,0.0031970427371561527,6.363462712254994e-19,-8.811293967272215e-20,-1.5105075372466654e-19,-0.00014172335795592517,-1.3187743470535584e-33,-8.811293967272215e-20,-0.00019841270113829523,4.192107917436585e-19,-0.00014172335795592517,-0.00028935185400769114,0.0004650297632906586,-0.0006975446594879031,1.2414483797512224e-18,8.9456688115466e-19,6.363462712254994e-19,0.00013950893480796367,2.7849982152529897e-20,2.629901406112835e-21,2.5062735686221382e-20,-2.8912058794593256e-19,-8.49660473545378e-20,-6.608470637012875e-20,-1.2169615588729683e-19,-4.720335892337116e-20,-6.883823553295292e-20,0.0008928571478463709,-0.0003571428533177823,-0.0005952381179668009,-1.1328805883115137e-19,-8.811293967272215e-20,2.7849982152529897e-20,0.0002380952355451882,4.531522547116511e-20,3.52451739303843e-20,-5.771675540621879e-35,7.18714350453906e-36,-1.951185882472978e-35,2.2871587270258887e-35,7.853933778479312e-36,-8.792658283585955e-36,0.0006377550889737904,-0.00025510202976875007,-2.4923373201347243e-19,-0.00025510202976875007,-1.5105075372466654e-19,2.629901406112835e-21,4.531522547116511e-20,0.0001020408162730746,3.021015139116816e-20,-5.450250873590021e-36,5.437827185786784e-20,-3.051330858866705e-36,1.0620756080875938e-19,3.021015139116816e-20,-4.6741552657562356e-35,0.0004960317746736109,-0.00019841270113829523,-5.2537555888041535e-20,-9.726130521596575e-20,-0.00014172335795592517,2.5062735686221382e-20,3.52451739303843e-20,3.021015139116816e-20,5.668934318237007e-05,-5.194042323196985e-35,3.009265538105056e-36,-1.0164395367051604e-20,-4.5330991005027415e-36,6.21026483999821e-21,1.0127537362178978e-20,0.0008680555620230734,1.4456028621814804e-18,-0.0026041667442768812,-1.8539149360230393e-33,-1.3187743470535584e-33,-2.8912058794593256e-19,-5.771675540621879e-35,-5.450250873590021e-36,-5.194042323196985e-35,0.0008680555620230734,1.7608502447078474e-34,1.3695502158381858e-34,2.522051139515546e-34,9.782501869685242e-35,1.426614726852098e-34,0.0008928571478463709,2.888845571280194e-19,-0.0005952381179668009,-0.0003571428533177823,-8.811293967272215e-20,-8.49660473545378e-20,7.18714350453906e-36,5.437827185786784e-20,3.009265538105056e-36,1.7608502447078474e-34,0.0002380952355451882,4.4460975952737666e-35,1.2390882525178497e-19,3.52451739303843e-20,-1.4380434247602196e-35,0.0006944444612599909,3.659989091729758e-19,-0.00046296295477077365,-2.371692252312041e-20,-0.00019841270113829523,-6.608470637012875e-20,-1.951185882472978e-35,-3.051330858866705e-36,-1.0164395367051604e-20,1.3695502158381858e-34,4.4460975952737666e-35,0.00013227513409219682,9.930576275746685e-35,6.776263578034403e-21,-2.713701708799454e-20,0.0004650297632906586,3.4296190326397985e-19,-3.097720566671139e-19,-0.0006975446594879031,4.192107917436585e-19,-1.2169615588729683e-19,2.2871587270258887e-35,1.0620756080875938e-19,-4.5330991005027415e-36,2.522051139515546e-34,1.2390882525178497e-19,9.930576275746685e-35,0.00013950893480796367,2.5062735686221382e-20,-6.883823553295292e-20,0.0004960317746736109,1.3875550232558713e-19,-1.1182985573349402e-19,-0.00019841270113829523,-0.00014172335795592517,-4.720335892337116e-20,7.853933778479312e-36,3.021015139116816e-20,6.21026483999821e-21,9.782501869685242e-35,3.52451739303843e-20,6.776263578034403e-21,2.5062735686221382e-20,5.668934318237007e-05,1.0159500945829476e-20,0.00028935185400769114,3.0874477589450545e-19,9.49795598079809e-20,3.086329255660518e-19,-0.00028935185400769114,-6.883823553295292e-20,-8.792658283585955e-36,-4.6741552657562356e-35,1.0127537362178978e-20,1.426614726852098e-34,-1.4380434247602196e-35,-2.713701708799454e-20,-6.883823553295292e-20,1.0159500945829476e-20,4.13359775848221e-05,6.0,4.0,7.0,3.0,0.07158683240413666,-0.01645408198237419,-0.022363945841789246,-0.014547902159392834,-0.027359694242477417,0.0010629252064973116,0.0020408162381500006,0.0012755101779475808,0.0025510203558951616,0.0019841270986944437,0.0017857142956927419,0.0035714285913854837,0.0008267195662483573,0.0022321429569274187,0.0029761905316263437,-0.01645408198237419,0.012427721172571182,0.0020408162381500006,0.0012755101779475808,0.0025510203558951616,-0.0015943878097459674,-0.0008163265301845968,-0.0005102040595375001,-0.0010204081190750003,3.7718617023611634e-18,1.043616348935437e-18,1.6982945451975483e-18,9.75781955236954e-19,9.215718466126788e-19,7.915551016232263e-18,-0.022363945841789246,0.0020408162381500006,0.028798185288906097,0.0017857142956927419,0.0035714285913854837,3.577867169202165e-18,-0.0013605442363768816,7.880059203538845e-20,2.3105584351655437e-19,-0.0059523810632526875,-0.0011904762359336019,-0.0023809524718672037,3.044963245696448e-19,-2.456395547037471e-20,-1.6728977324066335e-32,-0.014547902159392834,0.0012755101779475808,0.0017857142956927419,0.009148242883384228,0.0022321429569274187,2.2125199549899932e-18,1.3552527156068805e-19,-0.00042517005931586027,4.262001577270019e-20,-4.637990470328093e-33,-0.0005952381179668009,-2.2739523120214518e-33,-0.0009920635493472219,-0.0007440476329065859,-9.807316142171368e-33,-0.027359694242477417,0.0025510203558951616,0.0035714285913854837,0.0022321429569274187,0.05712159723043442,4.7704895589362195e-18,-1.7263864259804617e-19,-1.6601845766184287e-19,-0.0025510203558951616,-9.765863803257558e-33,-2.3026124929649196e-20,-0.0035714285913854837,-5.421010862427522e-20,-0.0022321429569274187,-0.01785714365541935,0.0010629252064973116,-0.0015943878097459674,3.577867169202165e-18,2.2125199549899932e-18,4.7704895589362195e-18,0.0003188775444868952,-3.2526065174565133e-19,-1.8973538018496328e-19,-2.981555974335137e-19,-6.608470507765904e-19,-1.7226084077795965e-19,-3.398641894181512e-19,-2.0869867667350043e-19,-2.132510780993831e-19,-1.4161008452493172e-18,0.0020408162381500006,-0.0008163265301845968,-0.0013605442363768816,1.3552527156068805e-19,-1.7263864259804617e-19,-3.2526065174565133e-19,0.0005442177061922848,-6.776263578034403e-21,-1.3552527156068805e-20,-3.1175093118628214e-19,-8.035836053693333e-20,1.3429184186979492e-19,3.9825081131118264e-23,1.6940658945086007e-21,1.6370404527291505e-33,0.0012755101779475808,-0.0005102040595375001,7.880059203538845e-20,-0.00042517005931586027,-1.6601845766184287e-19,-1.8973538018496328e-19,-6.776263578034403e-21,0.0001700680295471102,-6.776263578034403e-21,4.333342374871281e-34,-2.061997769676748e-20,2.046300565911438e-34,2.2465903935100587e-20,6.098637220230962e-20,9.62964972193618e-34,0.0025510203558951616,-0.0010204081190750003,2.3105584351655437e-19,4.262001577270019e-20,-0.0025510203558951616,-2.981555974335137e-19,-1.3552527156068805e-20,-6.776263578034403e-21,0.0010204081190750003,6.879024624258201e-34,1.0789339205564653e-21,-2.0041132213739357e-19,2.024963988923954e-21,-4.046002424229976e-20,-8.350471518771953e-19,0.0019841270986944437,3.7718617023611634e-18,-0.0059523810632526875,-4.637990470328093e-33,-9.765863803257558e-33,-6.608470507765904e-19,-3.1175093118628214e-19,4.333342374871281e-34,6.879024624258201e-34,0.0019841270986944437,3.748686382260815e-34,5.720339383475191e-34,4.2535194207882355e-34,4.395186693871476e-34,2.9347504001934543e-33,0.0017857142956927419,1.043616348935437e-18,-0.0011904762359336019,-0.0005952381179668009,-2.3026124929649196e-20,-1.7226084077795965e-19,-8.035836053693333e-20,-2.061997769676748e-20,1.0789339205564653e-21,3.748686382260815e-34,0.00039682540227659047,1.4612975499198653e-34,-1.015319611703946e-19,6.776263578034403e-21,7.591623075051095e-34,0.0035714285913854837,1.6982945451975483e-18,-0.0023809524718672037,-2.2739523120214518e-33,-0.0035714285913854837,-3.398641894181512e-19,1.3429184186979492e-19,2.046300565911438e-34,-2.0041132213739357e-19,5.720339383475191e-34,1.4612975499198653e-34,0.0023809524718672037,2.1945646122724474e-34,2.2572058337905536e-34,1.5546386660784928e-33,0.0008267195662483573,9.75781955236954e-19,3.044963245696448e-19,-0.0009920635493472219,-5.421010862427522e-20,-2.0869867667350043e-19,3.9825081131118264e-23,2.2465903935100587e-20,2.024963988923954e-21,4.2535194207882355e-34,-1.015319611703946e-19,2.1945646122724474e-34,0.0001653439103392884,1.563753120964961e-20,8.879868915458837e-34,0.0022321429569274187,9.215718466126788e-19,-2.456395547037471e-20,-0.0007440476329065859,-0.0022321429569274187,-2.132510780993831e-19,1.6940658945086007e-21,6.098637220230962e-20,-4.046002424229976e-20,4.395186693871476e-34,6.776263578034403e-21,2.2572058337905536e-34,1.563753120964961e-20,0.0007440476329065859,9.434336743772248e-34,0.0029761905316263437,7.915551016232263e-18,-1.6728977324066335e-32,-9.807316142171368e-33,-0.01785714365541935,-1.4161008452493172e-18,1.6370404527291505e-33,9.62964972193618e-34,-8.350471518771953e-19,2.9347504001934543e-33,7.591623075051095e-34,1.5546386660784928e-33,8.879868915458837e-34,9.434336743772248e-34,0.008928571827709675,6.0,4.0,7.0,4.0,0.05764526501297951,-0.012723213993012905,-0.0173086728900671,-0.011245748028159142,-0.0173086728900671,0.0007971939048729837,0.0015306122368201613,0.0009566326625645161,0.0015306122368201613,0.0014880952658131719,0.0013392857508733869,0.002142857061699033,0.0006200397037900984,0.0013392857508733869,0.0014880952658131719,-0.012723213993012905,0.009473851881921291,0.0015306122368201613,0.0009566326625645161,0.0015306122368201613,-0.001195790828205645,-0.0006122448830865324,-0.00038265305920504034,-0.0006122448830865324,1.80930352757066e-18,2.7137422923482577e-19,1.2532800868898454e-19,9.215718466126788e-19,2.168404344971009e-19,1.80930352757066e-18,-0.0173086728900671,0.0015306122368201613,0.021955782547593117,0.0013392857508733869,0.002142857061699033,2.710505431213761e-18,-0.0010204081190750003,-1.256720253509271e-19,-5.142475368738307e-19,-0.004464285913854837,-0.0008928571478463709,-0.0014285714132711291,-5.35816864266629e-21,-2.3578734246975184e-19,-1.1895247017376204e-18,-0.011245748028159142,0.0009566326625645161,0.0013392857508733869,0.00697278929874301,0.0013392857508733869,1.6285821413158402e-18,-3.1170812458958252e-19,-0.0003188775444868952,-3.609375461011287e-19,-7.434529256613157e-19,-0.00044642857392318547,-4.758098496757752e-19,-0.0007440476329065859,-0.00044642857392318547,-7.434529256613157e-19,-0.0173086728900671,0.0015306122368201613,0.002142857061699033,0.0013392857508733869,0.021955782547593117,2.710505431213761e-18,-5.123538102589671e-19,-1.1858461261560205e-19,-0.0010204081190750003,-1.1895247017376204e-18,-2.373654738315323e-19,-0.0014285714132711291,-0.0,-0.0008928571478463709,-0.004464285913854837,0.0007971939048729837,-0.001195790828205645,2.710505431213761e-18,1.6285821413158402e-18,2.710505431213761e-18,0.00023915816564112902,-1.7618285302889447e-19,-1.0842021724855044e-19,-1.7618285302889447e-19,-4.956353010071399e-19,-1.2987253897435087e-19,-2.0391851623583012e-19,-1.5803480765751368e-19,-1.3110374561734777e-19,-4.956353010071399e-19,0.0015306122368201613,-0.0006122448830865324,-0.0010204081190750003,-3.1170812458958252e-19,-5.123538102589671e-19,-1.7618285302889447e-19,0.0004081632650922984,1.0164395367051604e-20,2.710505431213761e-20,4.459151804465908e-19,1.860567529045751e-19,2.9808818221359065e-19,1.3050098944473804e-21,-8.470329472543003e-22,6.98149604840373e-34,0.0009566326625645161,-0.00038265305920504034,-1.256720253509271e-19,-0.0003188775444868952,-1.1858461261560205e-19,-1.0842021724855044e-19,1.0164395367051604e-20,0.00012755101488437504,6.776263578034403e-21,3.3703774026776627e-34,3.3420345644432697e-20,1.5648180798146291e-34,-4.4136945462674535e-20,3.3881317890172014e-20,3.1296361596292583e-34,0.0015306122368201613,-0.0006122448830865324,-5.142475368738307e-19,-3.609375461011287e-19,-0.0010204081190750003,-1.7618285302889447e-19,2.710505431213761e-20,6.776263578034403e-21,0.0004081632650922984,6.613402849413193e-34,-2.1578677906258326e-22,2.9808818221359065e-19,6.855955543613729e-22,2.2657611766230274e-19,4.459151804465908e-19,0.0014880952658131719,1.80930352757066e-18,-0.004464285913854837,-7.434529256613157e-19,-1.1895247017376204e-18,-4.956353010071399e-19,4.459151804465908e-19,3.3703774026776627e-34,6.613402849413193e-34,0.0014880952658131719,4.956353010071399e-19,7.930164505921508e-19,3.331536497932602e-34,3.956482100240021e-34,1.6874814663359118e-33,0.0013392857508733869,2.7137422923482577e-19,-0.0008928571478463709,-0.00044642857392318547,-2.373654738315323e-19,-1.2987253897435087e-19,1.860567529045751e-19,3.3420345644432697e-20,-2.1578677906258326e-22,4.956353010071399e-19,0.00029761905898340046,1.5860328753349075e-19,6.985479688492798e-22,-0.0,4.146937439834675e-34,0.002142857061699033,1.2532800868898454e-19,-0.0014285714132711291,-4.758098496757752e-19,-0.0014285714132711291,-2.0391851623583012e-19,2.9808818221359065e-19,1.5648180798146291e-34,2.9808818221359065e-19,7.930164505921508e-19,1.5860328753349075e-19,0.0009523809421807528,1.4444474582904269e-34,1.5860328753349075e-19,7.930164505921508e-19,0.0006200397037900984,9.215718466126788e-19,-5.35816864266629e-21,-0.0007440476329065859,-0.0,-1.5803480765751368e-19,1.3050098944473804e-21,-4.4136945462674535e-20,6.855955543613729e-22,3.331536497932602e-34,6.985479688492798e-22,1.4444474582904269e-34,0.00012400794366840273,5.212510638822994e-22,3.2240931000250793e-34,0.0013392857508733869,2.168404344971009e-19,-2.3578734246975184e-19,-0.00044642857392318547,-0.0008928571478463709,-1.3110374561734777e-19,-8.470329472543003e-22,3.3881317890172014e-20,2.2657611766230274e-19,3.956482100240021e-34,-0.0,1.5860328753349075e-19,5.212510638822994e-22,0.00029761905898340046,4.956353010071399e-19,0.0014880952658131719,1.80930352757066e-18,-1.1895247017376204e-18,-7.434529256613157e-19,-0.004464285913854837,-4.956353010071399e-19,6.98149604840373e-34,3.1296361596292583e-34,4.459151804465908e-19,1.6874814663359118e-33,4.146937439834675e-34,7.930164505921508e-19,3.2240931000250793e-34,4.956353010071399e-19,0.0014880952658131719,6.0,4.0,7.0,5.0,0.04833900183439255,-0.010382653214037418,-0.01413265336304903,-0.009175170212984085,-0.011964285746216774,0.0006377550889737904,0.0012244897661730647,0.0007653061184100807,0.0010204081190750003,0.0011904762359336019,0.0010714285308495164,0.0014285714132711291,0.0004960317746736109,0.0008928571478463709,0.0008503401186317205,-0.010382653214037418,0.007660714443773031,0.0012244897661730647,0.0007653061184100807,0.0010204081190750003,-0.0009566326625645161,-0.0004897959297522902,-0.0003061224415432662,-0.0004081632650922984,-1.6281863353927336e-18,-1.7627080300752417e-18,-4.871786923930076e-18,-7.589415207398531e-19,-3.0227036603162813e-18,-7.242946471927633e-18,-0.01413265336304903,0.0012244897661730647,0.01775510236620903,0.0010714285308495164,0.0014285714132711291,-1.7889335846010823e-18,-0.0008163265301845968,-1.4906644566284957e-18,-5.492971853406879e-18,-0.0035714285913854837,-0.0007142857066355646,-0.0009523809421807528,-5.757194123969207e-19,-3.532477287449542e-18,-9.230280153630171e-18,-0.009175170212984085,0.0007653061184100807,0.0010714285308495164,0.005637755151838064,0.0008928571478463709,-1.1896659428272138e-18,-1.5036127283470945e-18,-0.00025510202976875007,-3.377049223170216e-18,-1.6449426364587969e-18,-0.0003571428533177823,-3.873545360701082e-18,-0.0005952381179668009,-0.00029761905898340046,-5.67851218711528e-18,-0.011964285746216774,0.0010204081190750003,0.0014285714132711291,0.0008928571478463709,0.011084184050559998,-5.71781195160798e-18,-4.807643203329651e-18,-3.0087995813998774e-18,-0.0005102040595375001,-1.3049274607294606e-17,-2.6932392766976355e-18,-0.0007142857066355646,-4.255493527005605e-18,-0.00044642857392318547,-0.001700680237263441,0.0006377550889737904,-0.0009566326625645161,-1.7889335846010823e-18,-1.1896659428272138e-18,-5.71781195160798e-18,0.00019132652960252017,5.421010862427522e-20,3.3881317890172014e-20,2.168404344971009e-19,4.9563528162009426e-20,1.189524624189438e-19,4.701454719373769e-19,3.604884451896492e-20,2.9384091996086056e-19,7.889704517222125e-19,0.0012244897661730647,-0.0004897959297522902,-0.0008163265301845968,-1.5036127283470945e-18,-4.807643203329651e-18,5.421010862427522e-20,0.00032653060043230653,1.5001898808217442e-19,3.1453289468266283e-19,-4.0144825131181866e-19,7.566946138528235e-20,2.8305117605071886e-19,5.1357256395633595e-20,2.718913463646421e-19,5.955715403030402e-19,0.0007653061184100807,-0.0003061224415432662,-1.4906644566284957e-18,-0.00025510202976875007,-3.0087995813998774e-18,3.3881317890172014e-20,1.5001898808217442e-19,0.0001020408162730746,1.9468690918109984e-19,5.664402941557569e-20,7.95891342660473e-20,2.718913463646421e-19,-3.964314461331243e-20,1.2536087619363645e-19,3.7223220622705158e-19,0.0010204081190750003,-0.0004081632650922984,-5.492971853406879e-18,-3.377049223170216e-18,-0.0005102040595375001,2.168404344971009e-19,3.1453289468266283e-19,1.9468690918109984e-19,0.0002040816325461492,8.156740649433205e-19,3.2626963114720703e-19,5.316477463479782e-19,2.718913463646421e-19,3.168168954502866e-19,5.792841472467179e-19,0.0011904762359336019,-1.6281863353927336e-18,-0.0035714285913854837,-1.6449426364587969e-18,-1.3049274607294606e-17,4.9563528162009426e-20,-4.0144825131181866e-19,5.664402941557569e-20,8.156740649433205e-19,0.0011904762359336019,2.9731823215966863e-19,1.2225040825673799e-18,-2.2028234918180537e-20,5.2867765096103e-19,1.69932097294015e-18,0.0010714285308495164,-1.7627080300752417e-18,-0.0007142857066355646,-0.0003571428533177823,-2.6932392766976355e-18,1.189524624189438e-19,7.566946138528235e-20,7.95891342660473e-20,3.2626963114720703e-19,2.9731823215966863e-19,0.0002380952355451882,2.2597191392362104e-19,-6.9705030342029e-20,1.0503208545953324e-19,2.2657611766230274e-19,0.0014285714132711291,-4.871786923930076e-18,-0.0009523809421807528,-3.873545360701082e-18,-0.0007142857066355646,4.701454719373769e-19,2.8305117605071886e-19,2.718913463646421e-19,5.316477463479782e-19,1.2225040825673799e-18,2.2597191392362104e-19,0.0004761904710903764,3.172065750669815e-19,3.965082252960754e-19,9.06304470649211e-19,0.0004960317746736109,-7.589415207398531e-19,-5.757194123969207e-19,-0.0005952381179668009,-4.255493527005605e-18,3.604884451896492e-20,5.1357256395633595e-20,-3.964314461331243e-20,2.718913463646421e-19,-2.2028234918180537e-20,-6.9705030342029e-20,3.172065750669815e-19,9.920635056914762e-05,1.9182037939178268e-19,5.664403070804539e-19,0.0008928571478463709,-3.0227036603162813e-18,-3.532477287449542e-18,-0.00029761905898340046,-0.00044642857392318547,2.9384091996086056e-19,2.718913463646421e-19,1.2536087619363645e-19,3.168168954502866e-19,5.2867765096103e-19,1.0503208545953324e-19,3.965082252960754e-19,1.9182037939178268e-19,0.00014880952949170023,4.575095125988051e-19,0.0008503401186317205,-7.242946471927633e-18,-9.230280153630171e-18,-5.67851218711528e-18,-0.001700680237263441,7.889704517222125e-19,5.955715403030402e-19,3.7223220622705158e-19,5.792841472467179e-19,1.69932097294015e-18,2.2657611766230274e-19,9.06304470649211e-19,5.664403070804539e-19,4.575095125988051e-19,0.00042517005931586027,6.0,4.0,7.0,6.0,0.04165620729327202,-0.008773688226938248,-0.01194727886468172,-0.0077522676438093185,-0.008773688226938248,0.0005314626032486558,0.0010204081190750003,0.0006377550889737904,0.0007288630004040897,0.0009920635493472219,0.0008928571478463709,0.0010204081190750003,0.00041335978312417865,0.0006377550889737904,0.0005314626032486558,-0.008773688226938248,0.006432519294321537,0.0010204081190750003,0.0006377550889737904,0.0007288630004040897,-0.0007971939048729837,-0.0004081632650922984,-0.00025510202976875007,-0.0002915451768785715,1.8859308511805817e-18,5.25998826547277e-19,3.6186605633871946e-19,4.743384504624082e-19,1.843900098196749e-19,8.72552503127327e-19,-0.01194727886468172,0.0010204081190750003,0.014909297227859497,0.0008928571478463709,0.0010204081190750003,1.8431436932253575e-18,-0.0006802721181884408,5.202637765652937e-20,-8.577649694673223e-20,-0.0029761905316263437,-0.0005952381179668009,-0.0006802721181884408,1.4885325795453993e-19,-2.0460940914894224e-20,-1.2285100341999743e-19,-0.0077522676438093185,0.0006377550889737904,0.0008928571478463709,0.004733560141175985,0.0006377550889737904,1.1361383616058714e-18,7.069485534252526e-20,-0.00021258502965793014,-8.750930462071158e-20,-2.41066359071903e-33,-0.00029761905898340046,-1.3552527156068805e-20,-0.0004960317746736109,-0.00021258502965793014,-5.0807116664800476e-20,-0.008773688226938248,0.0007288630004040897,0.0010204081190750003,0.0006377550889737904,0.006432519294321537,1.4094628242311558e-18,-2.6231432031833706e-20,-1.0153697756844534e-20,-0.0002915451768785715,-2.857023407639223e-33,1.4032041495343808e-20,-0.0004081632650922984,1.3552527156068805e-20,-0.00025510202976875007,-0.0007971939048729837,0.0005314626032486558,-0.0007971939048729837,1.8431436932253575e-18,1.1361383616058714e-18,1.4094628242311558e-18,0.0001594387722434476,-1.4907779871675686e-19,-1.0164395367051604e-19,-1.4230153513872246e-19,-3.304235253882952e-19,-8.49660473545378e-20,-9.710405688904971e-20,-1.0511663882777265e-19,-6.06900347478625e-20,-1.4245243097702803e-19,0.0010204081190750003,-0.0004081632650922984,-0.0006802721181884408,7.069485534252526e-20,-2.6231432031833706e-20,-1.4907779871675686e-19,0.0002721088530961424,-4.228582834288023e-21,-2.4275975852067998e-21,-1.5587546559314107e-19,-4.0082264427478714e-20,2.1533618070377906e-20,1.0833355937178202e-34,6.06361886099258e-35,1.2714146898493862e-34,0.0006377550889737904,-0.00025510202976875007,5.202637765652937e-20,-0.00021258502965793014,-1.0153697756844534e-20,-1.0164395367051604e-19,-4.228582834288023e-21,8.50340147735551e-05,-2.590377480520894e-21,2.1867953292974813e-34,-1.3312800682586848e-20,-6.066076818498365e-22,1.800921473779113e-20,6.776263578034403e-21,-5.139873841283181e-22,0.0007288630004040897,-0.0002915451768785715,-8.577649694673223e-20,-8.750930462071158e-20,-0.0002915451768785715,-1.4230153513872246e-19,-2.4275975852067998e-21,-2.590377480520894e-21,0.00011661807366181165,3.1156108130672694e-34,-4.427113148520265e-22,3.7269449679189215e-20,-6.280085063318473e-22,3.9492546043039494e-20,-6.292400401312388e-20,0.0009920635493472219,1.8859308511805817e-18,-0.0029761905316263437,-2.41066359071903e-33,-2.857023407639223e-33,-3.304235253882952e-19,-1.5587546559314107e-19,2.1867953292974813e-34,3.1156108130672694e-34,0.0009920635493472219,1.8520131606508515e-34,1.7308234812952902e-34,2.1195418995735804e-34,1.257750141992928e-34,2.882344061051164e-34,0.0008928571478463709,5.25998826547277e-19,-0.0005952381179668009,-0.00029761905898340046,1.4032041495343808e-20,-8.49660473545378e-20,-4.0082264427478714e-20,-1.3312800682586848e-20,-4.427113148520265e-22,1.8520131606508515e-34,0.00019841270113829523,-8.492507444923514e-22,-4.843823618033626e-20,-1.6940658945086007e-21,-1.2105386387414004e-21,0.0010204081190750003,3.6186605633871946e-19,-0.0006802721181884408,-1.3552527156068805e-20,-0.0004081632650922984,-9.710405688904971e-20,2.1533618070377906e-20,-6.066076818498365e-22,3.7269449679189215e-20,1.7308234812952902e-34,-8.492507444923514e-22,0.0002721088530961424,-1.4154179074872524e-21,1.0217255762485437e-20,5.0593048138385434e-20,0.00041335978312417865,4.743384504624082e-19,1.4885325795453993e-19,-0.0004960317746736109,1.3552527156068805e-20,-1.0511663882777265e-19,1.0833355937178202e-34,1.800921473779113e-20,-6.280085063318473e-22,2.1195418995735804e-34,-4.843823618033626e-20,-1.4154179074872524e-21,8.26719551696442e-05,-2.215316907903802e-21,-1.8664488397465528e-21,0.0006377550889737904,1.843900098196749e-19,-2.0460940914894224e-20,-0.00021258502965793014,-0.00025510202976875007,-6.06900347478625e-20,6.06361886099258e-35,6.776263578034403e-21,3.9492546043039494e-20,1.257750141992928e-34,-1.6940658945086007e-21,1.0217255762485437e-20,-2.215316907903802e-21,8.50340147735551e-05,2.6415924004588575e-20,0.0005314626032486558,8.72552503127327e-19,-1.2285100341999743e-19,-5.0807116664800476e-20,-0.0007971939048729837,-1.4245243097702803e-19,1.2714146898493862e-34,-5.139873841283181e-22,-6.292400401312388e-20,2.882344061051164e-34,-1.2105386387414004e-21,5.0593048138385434e-20,-1.8664488397465528e-21,2.6415924004588575e-20,0.0001594387722434476,6.0,4.0,7.0,7.0,0.036613721400499344,-0.007598396390676498,-0.01034985389560461,-0.006713131908327341,-0.006713131908327341,0.0004555393534246832,0.0008746355888433754,0.000546647235751152,0.000546647235751152,0.0008503401186317205,0.0007653061184100807,0.0007653061184100807,0.00035430840216577053,0.00047831633128225803,0.00035430840216577053,-0.007598396390676498,0.005544824991375208,0.0008746355888433754,0.000546647235751152,0.000546647235751152,-0.00068330904468894,-0.0003498542355373502,-0.00021865889721084386,-0.00021865889721084386,1.6165121286126196e-18,5.28517229620983e-19,5.22169445600251e-19,5.827586677109586e-19,2.9665710805508563e-19,5.595277654965014e-19,-0.01034985389560461,0.0008746355888433754,0.012852284125983715,0.0007653061184100807,0.0007653061184100807,1.5178830414797062e-18,-0.000583090353757143,1.2442356423734023e-19,1.1715485677619828e-19,-0.0025510203558951616,-0.0005102040595375001,-0.0005102040595375001,1.0278617377417813e-19,2.5240514894434927e-20,7.931021930325208e-20,-0.006713131908327341,0.000546647235751152,0.0007653061184100807,0.004080114420503378,0.00047831633128225803,9.435262540456018e-19,6.265475672373787e-20,-0.00018221575010102242,4.3817304779408145e-20,-1.9830145214570586e-33,-0.00025510202976875007,3.3881317890172014e-20,-0.00042517005931586027,-0.0001594387722434476,7.019611713194407e-20,-0.006713131908327341,0.000546647235751152,0.0007653061184100807,0.00047831633128225803,0.004080114420503378,9.486769009248164e-19,6.265475672373787e-20,3.876716680696731e-20,-0.00018221575010102242,-1.9830145214570586e-33,-1.4399711968513692e-20,-0.00025510202976875007,-0.0,-0.0001594387722434476,-0.00042517005931586027,0.0004555393534246832,-0.00068330904468894,1.5178830414797062e-18,9.435262540456018e-19,9.486769009248164e-19,0.000136661808937788,-9.486769009248164e-20,-6.776263578034403e-20,-6.776263578034403e-20,-2.8322015354022696e-19,-7.282803782002588e-20,-7.282803782002588e-20,-9.269919734258266e-20,-4.5517526060896877e-20,-8.850721401922584e-20,0.0008746355888433754,-0.0003498542355373502,-0.000583090353757143,6.265475672373787e-20,6.265475672373787e-20,-9.486769009248164e-20,0.0002332361473236233,-4.448168590765308e-21,-4.448168590765308e-21,-1.3360754378336336e-19,-3.435622619052829e-20,-3.435622619052829e-20,7.335084749131074e-35,3.864553907628095e-35,6.69561582228375e-35,0.000546647235751152,-0.00021865889721084386,1.2442356423734023e-19,-0.00018221575010102242,3.876716680696731e-20,-6.776263578034403e-20,-4.448168590765308e-21,7.288629421964288e-05,-2.8058020903864468e-21,1.4874183200920828e-34,-3.784479256931106e-20,7.707884805356329e-23,-3.9257655829642844e-20,-1.0164395367051604e-20,-2.1155312035644314e-22,0.000546647235751152,-0.00021865889721084386,1.1715485677619828e-19,4.3817304779408145e-20,-0.00018221575010102242,-6.776263578034403e-20,-4.448168590765308e-21,-2.8058020903864468e-21,7.288629421964288e-05,1.4874183200920828e-34,2.305726577555176e-22,-3.5575383784680614e-20,2.1963432506549753e-22,-1.2858760921239064e-20,-3.866566916086764e-20,0.0008503401186317205,1.6165121286126196e-18,-0.0025510203558951616,-1.9830145214570586e-33,-1.9830145214570586e-33,-2.8322015354022696e-19,-1.3360754378336336e-19,1.4874183200920828e-34,1.4874183200920828e-34,0.0008503401186317205,1.587439917583227e-34,1.587439917583227e-34,1.8167502816304762e-34,9.433126351932886e-35,1.8167502816304762e-34,0.0007653061184100807,5.28517229620983e-19,-0.0005102040595375001,-0.00025510202976875007,-1.4399711968513692e-20,-7.282803782002588e-20,-3.435622619052829e-20,-3.784479256931106e-20,2.305726577555176e-22,1.587439917583227e-34,0.0001700680295471102,1.0791039106152096e-22,-3.444190723858715e-20,3.3881317890172014e-21,5.380028344381424e-22,0.0007653061184100807,5.22169445600251e-19,-0.0005102040595375001,3.3881317890172014e-20,-0.00025510202976875007,-7.282803782002588e-20,-3.435622619052829e-20,7.707884805356329e-23,-3.5575383784680614e-20,1.587439917583227e-34,1.0791039106152096e-22,0.0001700680295471102,1.7985064335468527e-22,-1.1801636215299799e-20,-2.697474105391783e-20,0.00035430840216577053,5.827586677109586e-19,1.0278617377417813e-19,-0.00042517005931586027,-0.0,-9.269919734258266e-20,7.335084749131074e-35,-3.9257655829642844e-20,2.1963432506549753e-22,1.8167502816304762e-34,-3.444190723858715e-20,1.7985064335468527e-22,7.086167897796258e-05,3.1275062823196006e-21,-3.0801128317984685e-22,0.00047831633128225803,2.9665710805508563e-19,2.5240514894434927e-20,-0.0001594387722434476,-0.0001594387722434476,-4.5517526060896877e-20,3.864553907628095e-35,-1.0164395367051604e-20,-1.2858760921239064e-20,9.433126351932886e-35,3.3881317890172014e-21,-1.1801636215299799e-20,3.1275062823196006e-21,5.3146257414482534e-05,-2.282405375329044e-20,0.00035430840216577053,5.595277654965014e-19,7.931021930325208e-20,7.019611713194407e-20,-0.00042517005931586027,-8.850721401922584e-20,6.69561582228375e-35,-2.1155312035644314e-22,-3.866566916086764e-20,1.8167502816304762e-34,5.380028344381424e-22,-2.697474105391783e-20,-3.0801128317984685e-22,-2.282405375329044e-20,7.086167897796258e-05,6.0,4.0,7.0,8.0,0.032669004052877426,-0.006701743230223656,-0.009130527265369892,-0.005920493043959141,-0.005303996615111828,0.00039859695243649185,0.0007653061184100807,0.00047831633128225803,0.00042517005931586027,0.0007440476329065859,0.0006696428754366934,0.0005952381179668009,0.0003100198518950492,0.00037202381645329297,0.00024801588733680546,-0.006701743230223656,0.004872980527579784,0.0007653061184100807,0.00047831633128225803,0.00042517005931586027,-0.0005978954141028225,-0.0003061224415432662,-0.00019132652960252017,-0.0001700680295471102,7.292919037671375e-19,2.1240688858548444e-19,2.2833217040396454e-19,3.854151128962799e-19,1.9794044317481818e-19,2.547203951671425e-19,-0.009130527265369892,0.0007653061184100807,0.011295351199805737,0.0006696428754366934,0.0005952381179668009,1.0362100839233669e-18,-0.0005102040595375001,-8.884648085499476e-20,-4.010529623765949e-20,-0.0022321429569274187,-0.00044642857392318547,-0.00039682540227659047,4.758805606934514e-21,2.940852613589905e-20,8.280402341552293e-20,-0.005920493043959141,0.00047831633128225803,0.0006696428754366934,0.003585600992664695,0.00037202381645329297,6.193092974378393e-19,-1.8692530547245286e-19,-0.0001594387722434476,-1.9728202679427158e-20,-3.7172646283065783e-19,-0.00022321428696159273,-3.049318610115481e-20,-0.00037202381645329297,-0.00012400794366840273,5.3212712982469534e-20,-0.005303996615111828,0.00042517005931586027,0.0005952381179668009,0.00037202381645329297,0.00275550689548254,4.2719039631780444e-19,-1.6615582134231495e-19,-4.9680422353495093e-20,-0.00012147716188337654,-3.304235253882952e-19,-7.197962193018497e-20,-0.0001700680295471102,-1.3552527156068805e-20,-0.00010629251482896507,-0.00024801588733680546,0.00039859695243649185,-0.0005978954141028225,1.0362100839233669e-18,6.193092974378393e-19,4.2719039631780444e-19,0.00011957908282056451,3.866822178853919e-20,2.4167639021733776e-20,7.080503838505674e-20,-2.4781765050356993e-19,-6.372453390031621e-20,-5.664402941557569e-20,-7.670545986606527e-20,-3.540251919252837e-20,-5.900420188538822e-20,0.0007653061184100807,-0.0003061224415432662,-0.0005102040595375001,-1.8692530547245286e-19,-1.6615582134231495e-19,3.866822178853919e-20,0.0002040816325461492,3.3986418295580265e-20,3.021015139116816e-20,3.398641894181512e-19,6.797283659116053e-20,6.042030278233632e-20,-2.1468241878820486e-35,-1.9643344296353984e-35,-2.852340199115461e-35,0.00047831633128225803,-0.00019132652960252017,-8.884648085499476e-20,-0.0001594387722434476,-4.9680422353495093e-20,2.4167639021733776e-20,3.3986418295580265e-20,6.377550744218752e-05,1.8650182777291692e-20,6.506038372635181e-36,1.3584490739719304e-21,-5.568933899237697e-23,-1.1925097463448103e-36,8.470329472543003e-22,7.890230950231252e-23,0.00042517005931586027,-0.0001700680295471102,-4.010529623765949e-20,-1.9728202679427158e-20,-0.00012147716188337654,7.080503838505674e-20,3.021015139116816e-20,1.8650182777291692e-20,4.8590864025754854e-05,-1.2037062152420224e-34,5.176802502849367e-23,-1.0164395367051604e-20,-5.393779010374768e-22,-6.705413619864675e-21,1.1446826623509268e-20,0.0007440476329065859,7.292919037671375e-19,-0.0022321429569274187,-3.7172646283065783e-19,-3.304235253882952e-19,-2.4781765050356993e-19,3.398641894181512e-19,6.506038372635181e-36,-1.2037062152420224e-34,0.0007440476329065859,2.4781765050356993e-19,2.202823588753282e-19,1.5956587353118865e-34,5.704375045206197e-35,7.304791662779659e-35,0.0006696428754366934,2.1240688858548444e-19,-0.00044642857392318547,-0.00022321428696159273,-7.197962193018497e-20,-6.372453390031621e-20,6.797283659116053e-20,1.3584490739719304e-21,5.176802502849367e-23,2.4781765050356993e-19,0.00014880952949170023,4.3978504832453684e-20,-1.4346697486456964e-21,1.6940658945086007e-21,1.0569304820735125e-22,0.0005952381179668009,2.2833217040396454e-19,-0.00039682540227659047,-3.049318610115481e-20,-0.0001700680295471102,-5.664402941557569e-20,6.042030278233632e-20,-5.568933899237697e-23,-1.0164395367051604e-20,2.202823588753282e-19,4.3978504832453684e-20,0.00011337868636474013,-1.2994179939672924e-22,-9.854492635234752e-21,-2.374888529897734e-20,0.0003100198518950492,3.854151128962799e-19,4.758805606934514e-21,-0.00037202381645329297,-1.3552527156068805e-20,-7.670545986606527e-20,-2.1468241878820486e-35,-1.1925097463448103e-36,-5.393779010374768e-22,1.5956587353118865e-34,-1.4346697486456964e-21,-1.2994179939672924e-22,6.200397183420137e-05,2.6714116960858973e-21,-4.50649401260212e-22,0.00037202381645329297,1.9794044317481818e-19,2.940852613589905e-20,-0.00012400794366840273,-0.00010629251482896507,-3.540251919252837e-20,-1.9643344296353984e-35,8.470329472543003e-22,-6.705413619864675e-21,5.704375045206197e-35,1.6940658945086007e-21,-9.854492635234752e-21,2.6714116960858973e-21,3.543083948898129e-05,-1.4468367959355593e-20,0.00024801588733680546,2.547203951671425e-19,8.280402341552293e-20,5.3212712982469534e-20,-0.00024801588733680546,-5.900420188538822e-20,-2.852340199115461e-35,7.890230950231252e-23,1.1446826623509268e-20,7.304791662779659e-35,1.0569304820735125e-22,-2.374888529897734e-20,-4.50649401260212e-22,-1.4468367959355593e-20,3.543083948898129e-05,6.0,4.0,8.0,3.0,0.06400462985038757,-0.014521329663693905,-0.01974206417798996,-0.011507936753332615,-0.02415674552321434,0.0009300595265813172,0.0017857142956927419,0.0009920635493472219,0.0022321429569274187,0.0017361111240461469,0.0013888889225199819,0.0031250000465661287,0.0005787037080153823,0.0017361111240461469,0.0026041667442768812,-0.014521329663693905,0.010923858731985092,0.0017857142956927419,0.0009920635493472219,0.0022321429569274187,-0.0013950893189758062,-0.0007142857066355646,-0.00039682540227659047,-0.0008928571478463709,2.8912057243629608e-18,7.319978183459516e-19,1.4869058513226313e-18,5.935146523123505e-19,8.260588005460409e-19,6.1954409265471244e-18,-0.01974206417798996,0.0017857142956927419,0.025314154103398323,0.0013888889225199819,0.0031250000465661287,2.3554476658524183e-18,-0.0011904762359336019,-1.0507511177608307e-19,-3.965082252960754e-19,-0.0052083334885537624,-0.0009259259095415473,-0.0020833334419876337,1.899591196159618e-19,-1.1207951089296725e-33,-1.0460288560373763e-32,-0.011507936753332615,0.0009920635493472219,0.0013888889225199819,0.006181500386446714,0.0017361111240461469,1.2018874329801082e-18,-1.762258793454443e-19,-0.00028344671591185033,-1.8881343569348464e-19,-2.4908111832809937e-33,-0.00039682540227659047,-1.2809886321593529e-33,-0.0005787037080153823,-0.0004960317746736109,-5.337452588079556e-33,-0.02415674552321434,0.0022321429569274187,0.0031250000465661287,0.0017361111240461469,0.05019841343164444,2.573173183604951e-18,-3.965082252960754e-19,-1.8881343569348464e-19,-0.0022321429569274187,-5.332685958486971e-33,-9.0371968957019e-34,-0.0031250000465661287,-0.0,-0.0017361111240461469,-0.015625,0.0009300595265813172,-0.0013950893189758062,2.3554476658524183e-18,1.2018874329801082e-18,2.573173183604951e-18,0.00027901786961592734,5.569996430505979e-20,5.0125471372442764e-20,3.7172646283065783e-19,-5.782411758918651e-19,-1.321694127402575e-19,-2.973811754344051e-19,-1.3767647106590584e-19,-1.652117626941476e-19,-1.2390882266684555e-18,0.0017857142956927419,-0.0007142857066355646,-0.0011904762359336019,-1.762258793454443e-19,-3.965082252960754e-19,5.569996430505979e-20,0.0004761904710903764,7.04903478607686e-20,1.5860328753349075e-19,-1.1543351081243757e-34,-3.902371764945956e-35,-5.936580523269827e-35,-1.4111339024703752e-35,-3.2981005139167346e-35,-2.4735753136910696e-34,0.0009920635493472219,-0.00039682540227659047,-1.0507511177608307e-19,-0.00028344671591185033,-1.8881343569348464e-19,5.0125471372442764e-20,7.04903478607686e-20,0.00011337868636474013,7.552537686233327e-20,-1.038808464639397e-34,-2.0328790734103208e-20,-5.34244331924164e-35,2.710505431213761e-20,-0.0,-2.226018040117819e-34,0.0022321429569274187,-0.0008928571478463709,-3.965082252960754e-19,-1.8881343569348464e-19,-0.0022321429569274187,3.7172646283065783e-19,1.5860328753349075e-19,7.552537686233327e-20,0.0008928571478463709,-7.703719777548943e-34,-1.925929944387236e-34,-3.961913251482804e-34,-1.6550960459577808e-34,-2.196763842816691e-34,-1.650797042711633e-33,0.0017361111240461469,2.8912057243629608e-18,-0.0052083334885537624,-2.4908111832809937e-33,-5.332685958486971e-33,-5.782411758918651e-19,-1.1543351081243757e-34,-1.038808464639397e-34,-7.703719777548943e-34,0.0017361111240461469,2.7391004316763715e-34,6.162975913874651e-34,2.853229453704196e-34,3.4238754821982793e-34,2.5679065312926504e-33,0.0013888889225199819,7.319978183459516e-19,-0.0009259259095415473,-0.00039682540227659047,-9.0371968957019e-34,-1.321694127402575e-19,-3.902371764945956e-35,-2.0328790734103208e-20,-1.925929944387236e-34,2.7391004316763715e-34,0.00026455026818439364,1.4086801728074039e-34,-5.427403417598909e-20,-0.0,5.869500892222405e-34,0.0031250000465661287,1.4869058513226313e-18,-0.0020833334419876337,-1.2809886321593529e-33,-0.0031250000465661287,-2.973811754344051e-19,-5.936580523269827e-35,-5.34244331924164e-35,-3.961913251482804e-34,6.162975913874651e-34,1.4086801728074039e-34,0.0020833334419876337,1.4673752230556012e-34,1.7608502447078474e-34,1.320637689270604e-33,0.0005787037080153823,5.935146523123505e-19,1.899591196159618e-19,-0.0005787037080153823,-0.0,-1.3767647106590584e-19,-1.4111339024703752e-35,2.710505431213761e-20,-1.6550960459577808e-34,2.853229453704196e-34,-5.427403417598909e-20,1.4673752230556012e-34,8.26719551696442e-05,6.152516195245366e-36,6.114063410265943e-34,0.0017361111240461469,8.260588005460409e-19,-1.1207951089296725e-33,-0.0004960317746736109,-0.0017361111240461469,-1.652117626941476e-19,-3.2981005139167346e-35,-0.0,-2.196763842816691e-34,3.4238754821982793e-34,-0.0,1.7608502447078474e-34,6.152516195245366e-36,0.0004960317746736109,7.336876000483636e-34,0.0026041667442768812,6.1954409265471244e-18,-1.0460288560373763e-32,-5.337452588079556e-33,-0.015625,-1.2390882266684555e-18,-2.4735753136910696e-34,-2.226018040117819e-34,-1.650797042711633e-33,2.5679065312926504e-33,5.869500892222405e-34,1.320637689270604e-33,6.114063410265943e-34,7.336876000483636e-34,0.0078125,6.0,4.0,8.0,4.0,0.05149677395820618,-0.011225818656384945,-0.015275297686457634,-0.008891369216144085,-0.015275297686457634,0.0006975446594879031,0.0013392857508733869,0.0007440476329065859,0.0013392857508733869,0.0013020833721384406,0.0010416667209938169,0.0018749999580904841,0.0004340277810115367,0.0010416667209938169,0.0013020833721384406,-0.011225818656384945,0.008326822891831398,0.0013392857508733869,0.0007440476329065859,0.0013392857508733869,-0.0010463169310241938,-0.0005357142654247582,-0.00029761905898340046,-0.0005357142654247582,2.168404344971009e-18,5.420786489686367e-19,8.921435521526094e-19,6.823052015407699e-19,4.956353010071399e-19,2.168404344971009e-18,-0.015275297686457634,0.0013392857508733869,0.019298115745186806,0.0010416667209938169,0.0018749999580904841,1.915630357483992e-18,-0.0008928571478463709,4.644334796149685e-20,-0.0,-0.00390625,-0.0006944444612599909,-0.0012499999720603228,1.2461715035007178e-19,1.1858461261560205e-20,-3.96998347937868e-33,-0.008891369216144085,0.0007440476329065859,0.0010416667209938169,0.0047105299308896065,0.0010416667209938169,1.343862748764755e-18,-0.0,-0.00021258502965793014,-0.0,-2.785043113092574e-33,-0.00029761905898340046,-1.145846362913634e-33,-0.0004340277810115367,-0.00029761905898340046,-2.785043113092574e-33,-0.015275297686457634,0.0013392857508733869,0.0018749999580904841,0.0010416667209938169,0.019298115745186806,1.915630357483992e-18,-0.0,-9.705518698732142e-34,-0.0008928571478463709,-3.96998347937868e-33,1.1858461261560205e-20,-0.0012499999720603228,2.710505431213761e-20,-0.0006944444612599909,-0.00390625,0.0006975446594879031,-0.0010463169310241938,1.915630357483992e-18,1.343862748764755e-18,1.915630357483992e-18,0.0002092633949359879,-0.0,-1.2947206723560157e-19,-0.0,-4.336808689942018e-19,-9.912705632401885e-20,-1.7842870009076423e-19,-1.0325735006825511e-19,-9.912705632401885e-20,-4.336808689942018e-19,0.0013392857508733869,-0.0005357142654247582,-0.0008928571478463709,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-0.00029761905898340046,4.644334796149685e-20,-0.00021258502965793014,-9.705518698732142e-34,-1.2947206723560157e-19,-0.0,8.50340147735551e-05,-0.0,2.6832003947537427e-34,-1.3269527988999101e-20,1.1039453157655966e-34,-4.743384504624082e-20,-0.0,2.6832003947537427e-34,0.0013392857508733869,-0.0005357142654247582,-0.0,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,2.168404344971009e-18,-0.00390625,-2.785043113092574e-33,-3.96998347937868e-33,-4.336808689942018e-19,-0.0,2.6832003947537427e-34,-0.0,0.0013020833721384406,2.0543253811544638e-34,3.6977854105715463e-34,2.1399222624697022e-34,2.0543253811544638e-34,8.98767276768878e-34,0.0010416667209938169,5.420786489686367e-19,-0.0006944444612599909,-0.00029761905898340046,1.1858461261560205e-20,-9.912705632401885e-20,-0.0,-1.3269527988999101e-20,-0.0,2.0543253811544638e-34,0.00019841270113829523,8.452081036844423e-35,-3.560490056161683e-20,-3.3881317890172014e-21,2.0543253811544638e-34,0.0018749999580904841,8.921435521526094e-19,-0.0012499999720603228,-1.145846362913634e-33,-0.0012499999720603228,-1.7842870009076423e-19,-0.0,1.1039453157655966e-34,-0.0,3.6977854105715463e-34,8.452081036844423e-35,0.0008333333535119891,8.804251223539237e-35,8.452081036844423e-35,3.6977854105715463e-34,0.0004340277810115367,6.823052015407699e-19,1.2461715035007178e-19,-0.0004340277810115367,2.710505431213761e-20,-1.0325735006825511e-19,-0.0,-4.743384504624082e-20,-0.0,2.1399222624697022e-34,-3.560490056161683e-20,8.804251223539237e-35,6.200397183420137e-05,-6.105029936961062e-21,2.1399222624697022e-34,0.0010416667209938169,4.956353010071399e-19,1.1858461261560205e-20,-0.00029761905898340046,-0.0006944444612599909,-9.912705632401885e-20,-0.0,-0.0,-0.0,2.0543253811544638e-34,-3.3881317890172014e-21,8.452081036844423e-35,-6.105029936961062e-21,0.00019841270113829523,2.0543253811544638e-34,0.0013020833721384406,2.168404344971009e-18,-3.96998347937868e-33,-2.785043113092574e-33,-0.00390625,-4.336808689942018e-19,-0.0,2.6832003947537427e-34,-0.0,8.98767276768878e-34,2.0543253811544638e-34,3.6977854105715463e-34,2.1399222624697022e-34,2.0543253811544638e-34,0.0013020833721384406,6.0,4.0,8.0,5.0,0.04315972328186035,-0.009159225970506668,-0.012470237910747528,-0.0072519839741289616,-0.010555555112659931,0.0005580357392318547,0.0010714285308495164,0.0005952381179668009,0.0008928571478463709,0.0010416667209938169,0.0008333333535119891,0.0012499999720603228,0.00034722223062999547,0.0006944444612599909,0.0007440476329065859,-0.009159225970506668,0.006732887122780085,0.0010714285308495164,0.0005952381179668009,0.0008928571478463709,-0.0008370535797439516,-0.00042857142398133874,-0.0002380952355451882,-0.0003571428533177823,1.734723475976807e-18,4.571212029999998e-19,5.947623508688102e-19,5.434724483007886e-19,3.244942947575151e-19,1.0620756080875938e-18,-0.012470237910747528,0.0010714285308495164,0.015605159103870392,0.0008333333535119891,0.0012499999720603228,1.9913208990501973e-18,-0.0007142857066355646,6.061297124157582e-20,-1.2936398901100778e-33,-0.0031250000465661287,-0.0005555555690079927,-0.0008333333535119891,1.254202393272842e-19,-1.1858461261560205e-20,-2.5266404347650493e-33,-0.0072519839741289616,0.0005952381179668009,0.0008333333535119891,0.00380810652859509,0.0006944444612599909,1.0365183120991195e-18,-1.0773805209694552e-33,-0.0001700680295471102,-6.733628370853465e-34,-2.1480974583376866e-33,-0.0002380952355451882,-1.0573552502232717e-19,-0.00034722223062999547,-0.00019841270113829523,-1.3151617223056953e-33,-0.010555555112659931,0.0008928571478463709,0.0012499999720603228,0.0006944444612599909,0.009742063470184803,1.531276956753318e-18,-1.5916437792553553e-33,-5.929230630780102e-21,-0.00044642857392318547,-3.173443528006543e-33,-1.1759398628388737e-19,-0.0006249999860301614,-0.0,-0.00034722223062999547,-0.0014880952658131719,0.0005580357392318547,-0.0008370535797439516,1.9913208990501973e-18,1.0365183120991195e-18,1.531276956753318e-18,0.00016741071885917336,-1.7401046994517708e-19,-8.286212639120624e-20,-1.0875654371573568e-19,-3.4694470036524025e-19,-7.930164376674537e-20,-1.189524624189438e-19,-8.26058813470738e-20,-6.608470637012875e-20,-2.1241512161751876e-19,0.0010714285308495164,-0.00042857142398133874,-0.0007142857066355646,-1.0773805209694552e-33,-1.5916437792553553e-33,-1.7401046994517708e-19,0.0002857142826542258,8.61287580706745e-35,1.1304399712015472e-34,3.606221288304702e-34,8.242791384931467e-35,1.23641870773972e-34,8.586241217294229e-35,6.868992629452272e-35,2.207890631531193e-34,0.0005952381179668009,-0.0002380952355451882,6.061297124157582e-20,-0.0001700680295471102,-5.929230630780102e-21,-8.286212639120624e-20,8.61287580706745e-35,6.80272132740356e-05,5.383047235924193e-35,1.7172482434588457e-34,-1.7317992244903702e-20,5.190983053231222e-35,-3.7269449679189215e-20,1.6940658945086007e-21,1.0513764966717286e-34,0.0008928571478463709,-0.0003571428533177823,-1.2936398901100778e-33,-6.733628370853465e-34,-0.00044642857392318547,-1.0875654371573568e-19,1.1304399712015472e-34,5.383047235924193e-35,0.00017857142665889114,2.253888276491846e-34,5.151744615582167e-35,7.727617210359176e-35,5.366400904301856e-35,4.2931206086471143e-35,1.3799316447069957e-34,0.0010416667209938169,1.734723475976807e-18,-0.0031250000465661287,-2.1480974583376866e-33,-3.173443528006543e-33,-3.4694470036524025e-19,3.606221288304702e-34,1.7172482434588457e-34,2.253888276491846e-34,0.0010416667209938169,1.643460259005823e-34,2.465190273714364e-34,1.7119377410991397e-34,1.3695502158381858e-34,4.402125783961174e-34,0.0008333333535119891,4.571212029999998e-19,-0.0005555555690079927,-0.0002380952355451882,-1.1759398628388737e-19,-7.930164376674537e-20,8.242791384931467e-35,-1.7317992244903702e-20,5.151744615582167e-35,1.643460259005823e-34,0.00015873015217948705,7.04903478607686e-20,-3.583435593989507e-20,3.3881317890172014e-21,1.0062000906354684e-34,0.0012499999720603228,5.947623508688102e-19,-0.0008333333535119891,-1.0573552502232717e-19,-0.0006249999860301614,-1.189524624189438e-19,1.23641870773972e-34,5.190983053231222e-35,7.727617210359176e-35,2.465190273714364e-34,7.04903478607686e-20,0.00041666667675599456,4.513898307157584e-35,4.739593222515463e-35,1.5093001933503877e-34,0.00034722223062999547,5.434724483007886e-19,1.254202393272842e-19,-0.00034722223062999547,-0.0,-8.26058813470738e-20,8.586241217294229e-35,-3.7269449679189215e-20,5.366400904301856e-35,1.7119377410991397e-34,-3.583435593989507e-20,4.513898307157584e-35,4.960317528457381e-05,2.1575368476988743e-21,1.0481251757246252e-34,0.0006944444612599909,3.244942947575151e-19,-1.1858461261560205e-20,-0.00019841270113829523,-0.00034722223062999547,-6.608470637012875e-20,6.868992629452272e-35,1.6940658945086007e-21,4.2931206086471143e-35,1.3695502158381858e-34,3.3881317890172014e-21,4.739593222515463e-35,2.1575368476988743e-21,9.920635056914762e-05,8.38500094661952e-35,0.0007440476329065859,1.0620756080875938e-18,-2.5266404347650493e-33,-1.3151617223056953e-33,-0.0014880952658131719,-2.1241512161751876e-19,2.207890631531193e-34,1.0513764966717286e-34,1.3799316447069957e-34,4.402125783961174e-34,1.0062000906354684e-34,1.5093001933503877e-34,1.0481251757246252e-34,8.38500094661952e-35,0.00037202381645329297,6.0,4.0,8.0,6.0,0.03717875853180885,-0.007738980930298567,-0.010540674440562725,-0.00612599216401577,-0.007738980930298567,0.0004650297632906586,0.0008928571478463709,0.0004960317746736109,0.0006377550889737904,0.0008680555620230734,0.0006944444612599909,0.0008928571478463709,0.00028935185400769114,0.0004960317746736109,0.0004650297632906586,-0.007738980930298567,0.005653256084769964,0.0008928571478463709,0.0004960317746736109,0.0006377550889737904,-0.0006975446594879031,-0.0003571428533177823,-0.00019841270113829523,-0.00025510202976875007,1.4456028621814804e-18,3.600696785421957e-19,2.888845571280194e-19,3.0861578741773546e-19,1.6049141775452253e-19,3.4296190326397985e-19,-0.010540674440562725,0.0008928571478463709,0.013103505596518517,0.0006944444612599909,0.0008928571478463709,1.2414483797512224e-18,-0.0005952381179668009,-5.846678651882164e-20,-2.4923373201347243e-19,-0.0026041667442768812,-0.00046296295477077365,-0.0005952381179668009,8.507886703527179e-20,-8.811293967272215e-20,-3.097720566671139e-19,-0.00612599216401577,0.0004960317746736109,0.0006944444612599909,0.0031970427371561527,0.0004960317746736109,6.363462712254994e-19,-8.811293967272215e-20,-0.00014172335795592517,-1.2947206723560157e-19,-1.3187743470535584e-33,-0.00019841270113829523,-8.811293967272215e-20,-0.00028935185400769114,-0.00014172335795592517,-1.47510498251122e-19,-0.007738980930298567,0.0006377550889737904,0.0008928571478463709,0.0004960317746736109,0.005653256084769964,8.9456688115466e-19,-1.1328805883115137e-19,-5.394669683561683e-20,-0.00025510202976875007,-1.8539149360230393e-33,-3.3233247974548948e-34,-0.0003571428533177823,-0.0,-0.00019841270113829523,-0.0006975446594879031,0.0004650297632906586,-0.0006975446594879031,1.2414483797512224e-18,6.363462712254994e-19,8.9456688115466e-19,0.00013950893480796367,2.7849982152529897e-20,2.5062735686221382e-20,2.629901406112835e-21,-2.8912058794593256e-19,-6.608470637012875e-20,-8.49660473545378e-20,-6.883823553295292e-20,-4.720335892337116e-20,-1.2169615588729683e-19,0.0008928571478463709,-0.0003571428533177823,-0.0005952381179668009,-8.811293967272215e-20,-1.1328805883115137e-19,2.7849982152529897e-20,0.0002380952355451882,3.52451739303843e-20,4.531522547116511e-20,-5.771675540621879e-35,-1.8458616173378935e-35,7.18714350453906e-36,-7.055669512351876e-36,3.992857781535794e-36,2.2871587270258887e-35,0.0004960317746736109,-0.00019841270113829523,-5.846678651882164e-20,-0.00014172335795592517,-5.394669683561683e-20,2.5062735686221382e-20,3.52451739303843e-20,5.668934318237007e-05,2.1578678411129306e-20,-5.194042323196985e-35,-8.470329472543003e-21,-3.964287973920487e-36,1.0164395367051604e-20,-0.0,-9.810046617384546e-38,0.0006377550889737904,-0.00025510202976875007,-2.4923373201347243e-19,-1.2947206723560157e-19,-0.00025510202976875007,2.629901406112835e-21,4.531522547116511e-20,2.1578678411129306e-20,0.0001020408162730746,-5.450250873590021e-36,-4.513898307157584e-36,5.437827185786784e-20,4.513898307157584e-36,3.021015139116816e-20,1.0620756080875938e-19,0.0008680555620230734,1.4456028621814804e-18,-0.0026041667442768812,-1.3187743470535584e-33,-1.8539149360230393e-33,-2.8912058794593256e-19,-5.771675540621879e-35,-5.194042323196985e-35,-5.450250873590021e-36,0.0008680555620230734,1.3695502158381858e-34,1.7608502447078474e-34,1.426614726852098e-34,9.782501869685242e-35,2.522051139515546e-34,0.0006944444612599909,3.600696785421957e-19,-0.00046296295477077365,-0.00019841270113829523,-3.3233247974548948e-34,-6.608470637012875e-20,-1.8458616173378935e-35,-8.470329472543003e-21,-4.513898307157584e-36,1.3695502158381858e-34,0.00013227513409219682,3.987276837989199e-35,-2.430824680117072e-20,-0.0,5.676161458870909e-35,0.0008928571478463709,2.888845571280194e-19,-0.0005952381179668009,-8.811293967272215e-20,-0.0003571428533177823,-8.49660473545378e-20,7.18714350453906e-36,-3.964287973920487e-36,5.437827185786784e-20,1.7608502447078474e-34,3.987276837989199e-35,0.0002380952355451882,4.171277577133574e-35,3.52451739303843e-20,1.2390882525178497e-19,0.00028935185400769114,3.0861578741773546e-19,8.507886703527179e-20,-0.00028935185400769114,-0.0,-6.883823553295292e-20,-7.055669512351876e-36,1.0164395367051604e-20,4.513898307157584e-36,1.426614726852098e-34,-2.430824680117072e-20,4.171277577133574e-35,4.13359775848221e-05,1.757861795693848e-36,5.904056982305474e-35,0.0004960317746736109,1.6049141775452253e-19,-8.811293967272215e-20,-0.00014172335795592517,-0.00019841270113829523,-4.720335892337116e-20,3.992857781535794e-36,-0.0,3.021015139116816e-20,9.782501869685242e-35,-0.0,3.52451739303843e-20,1.757861795693848e-36,5.668934318237007e-05,5.900420188538822e-20,0.0004650297632906586,3.4296190326397985e-19,-3.097720566671139e-19,-1.47510498251122e-19,-0.0006975446594879031,-1.2169615588729683e-19,2.2871587270258887e-35,-9.810046617384546e-38,1.0620756080875938e-19,2.522051139515546e-34,5.676161458870909e-35,1.2390882525178497e-19,5.904056982305474e-35,5.900420188538822e-20,0.00013950893480796367,6.0,4.0,8.0,7.0,0.032669004052877426,-0.006701743230223656,-0.009130527265369892,-0.005303996615111828,-0.005920493043959141,0.00039859695243649185,0.0007653061184100807,0.00042517005931586027,0.00047831633128225803,0.0007440476329065859,0.0005952381179668009,0.0006696428754366934,0.00024801588733680546,0.00037202381645329297,0.0003100198518950492,-0.006701743230223656,0.004872980527579784,0.0007653061184100807,0.00042517005931586027,0.00047831633128225803,-0.0005978954141028225,-0.0003061224415432662,-0.0001700680295471102,-0.00019132652960252017,7.292919037671375e-19,2.2103718703367696e-19,2.1063359429792975e-19,2.588393151779562e-19,1.4495367005302353e-19,3.805347214328229e-19,-0.009130527265369892,0.0007653061184100807,0.011295351199805737,0.0005952381179668009,0.0006696428754366934,1.0362100839233669e-18,-0.0005102040595375001,-4.768197014943832e-20,-9.029110655837887e-20,-0.0022321429569274187,-0.00039682540227659047,-0.00044642857392318547,6.953979455232299e-20,-4.041616428278884e-20,-1.8940771972716424e-20,-0.005303996615111828,0.00042517005931586027,0.0005952381179668009,0.00275550689548254,0.00037202381645329297,4.2719039631780444e-19,-1.6615582134231495e-19,-0.00012147716188337654,-7.143604148311545e-20,-3.304235253882952e-19,-0.0001700680295471102,-1.0842021724855044e-19,-0.00024801588733680546,-0.00010629251482896507,-6.947729717963549e-20,-0.005920493043959141,0.00047831633128225803,0.0006696428754366934,0.00037202381645329297,0.003585600992664695,6.193092974378393e-19,-1.8692530547245286e-19,-4.315478803871572e-20,-0.0001594387722434476,-3.7172646283065783e-19,-5.2509237876758665e-20,-0.00022321428696159273,-0.0,-0.00012400794366840273,-0.00037202381645329297,0.00039859695243649185,-0.0005978954141028225,1.0362100839233669e-18,4.2719039631780444e-19,6.193092974378393e-19,0.00011957908282056451,3.866822178853919e-20,7.080503838505674e-20,2.4167639021733776e-20,-2.4781765050356993e-19,-5.664402941557569e-20,-6.372453390031621e-20,-5.900420188538822e-20,-3.540251919252837e-20,-7.670545986606527e-20,0.0007653061184100807,-0.0003061224415432662,-0.0005102040595375001,-1.6615582134231495e-19,-1.8692530547245286e-19,3.866822178853919e-20,0.0002040816325461492,3.021015139116816e-20,3.3986418295580265e-20,3.398641894181512e-19,6.042030278233632e-20,6.797283659116053e-20,-2.100023814589197e-35,4.004466182855812e-37,-1.3945078033557846e-35,0.00042517005931586027,-0.0001700680295471102,-4.768197014943832e-20,-0.00012147716188337654,-4.315478803871572e-20,7.080503838505674e-20,3.021015139116816e-20,4.8590864025754854e-05,1.6282995428143797e-20,-1.135703867046953e-34,-8.187330305473299e-21,2.707498359076286e-22,1.0164395367051604e-20,8.470329472543003e-22,-1.42067500277739e-22,0.00047831633128225803,-0.00019132652960252017,-9.029110655837887e-20,-7.143604148311545e-20,-0.0001594387722434476,2.4167639021733776e-20,3.3986418295580265e-20,1.6282995428143797e-20,6.377550744218752e-05,9.027796614315168e-36,6.938850183494056e-23,1.6940658945086007e-21,2.0209649563836884e-22,9.698102992880379e-21,1.1632698913521657e-21,0.0007440476329065859,7.292919037671375e-19,-0.0022321429569274187,-3.304235253882952e-19,-3.7172646283065783e-19,-2.4781765050356993e-19,3.398641894181512e-19,-1.135703867046953e-34,9.027796614315168e-36,0.0007440476329065859,2.202823588753282e-19,2.4781765050356993e-19,8.700916775318563e-35,9.580423600108092e-35,1.652377026505283e-34,0.0005952381179668009,2.2103718703367696e-19,-0.00039682540227659047,-0.0001700680295471102,-5.2509237876758665e-20,-5.664402941557569e-20,6.042030278233632e-20,-8.187330305473299e-21,6.938850183494056e-23,2.202823588753282e-19,0.00011337868636474013,3.8141737484520525e-20,-2.0342324507523827e-20,-1.6940658945086007e-21,1.6190650638515706e-22,0.0006696428754366934,2.1063359429792975e-19,-0.00044642857392318547,-1.0842021724855044e-19,-0.00022321428696159273,-6.372453390031621e-20,6.797283659116053e-20,2.707498359076286e-22,1.6940658945086007e-21,2.4781765050356993e-19,3.8141737484520525e-20,0.00014880952949170023,5.527809633615439e-22,1.5448465509718692e-20,6.124699710316205e-21,0.00024801588733680546,2.588393151779562e-19,6.953979455232299e-20,-0.00024801588733680546,-0.0,-5.900420188538822e-20,-2.100023814589197e-35,1.0164395367051604e-20,2.0209649563836884e-22,8.700916775318563e-35,-2.0342324507523827e-20,5.527809633615439e-22,3.543083948898129e-05,-1.6381297240944237e-21,-6.266527127877188e-25,0.00037202381645329297,1.4495367005302353e-19,-4.041616428278884e-20,-0.00010629251482896507,-0.00012400794366840273,-3.540251919252837e-20,4.004466182855812e-37,8.470329472543003e-22,9.698102992880379e-21,9.580423600108092e-35,-1.6940658945086007e-21,1.5448465509718692e-20,-1.6381297240944237e-21,3.543083948898129e-05,2.3198115489162004e-20,0.0003100198518950492,3.805347214328229e-19,-1.8940771972716424e-20,-6.947729717963549e-20,-0.00037202381645329297,-7.670545986606527e-20,-1.3945078033557846e-35,-1.42067500277739e-22,1.1632698913521657e-21,1.652377026505283e-34,1.6190650638515706e-22,6.124699710316205e-21,-6.266527127877188e-25,2.3198115489162004e-20,6.200397183420137e-05,6.0,4.0,8.0,8.0,0.029142897576093674,-0.0059105283580720425,-0.008054315112531185,-0.004677166230976582,-0.004677166230976582,0.00034877232974395156,0.0006696428754366934,0.00037202381645329297,0.00037202381645329297,0.0006510416860692203,0.0005208333604969084,0.0005208333604969084,0.00021701389050576836,0.00028935185400769114,0.00021701389050576836,-0.0059105283580720425,0.0042824591509997845,0.0006696428754366934,0.00037202381645329297,0.00037202381645329297,-0.0005231584655120969,-0.0002678571327123791,-0.00014880952949170023,-0.00014880952949170023,1.0842021724855044e-18,2.6544993583832684e-19,2.6590093021792723e-19,3.4772612755016144e-19,1.5150905055811213e-19,3.3783844994740296e-19,-0.008054315112531185,0.0006696428754366934,0.00992683507502079,0.0005208333604969084,0.0005208333604969084,9.974659780071488e-19,-0.00044642857392318547,1.808329102346724e-20,1.763230310621538e-20,-0.001953125,-0.00034722223062999547,-0.00034722223062999547,5.4022526033333216e-20,1.1858461261560205e-20,5.3101760920462324e-20,-0.004677166230976582,0.00037202381645329297,0.0005208333604969084,0.002421402605250478,0.00028935185400769114,6.939596076849709e-19,-0.0,-0.00010629251482896507,1.242052967999642e-20,-1.438173257192913e-33,-0.00014880952949170023,1.3552527156068805e-20,-0.00021701389050576836,-8.26719551696442e-05,2.7095265469693355e-20,-0.004677166230976582,0.00037202381645329297,0.0005208333604969084,0.00028935185400769114,0.002421402605250478,6.939596076849709e-19,-0.0,1.812086352174983e-21,-0.00010629251482896507,-1.438173257192913e-33,-6.199319843011263e-22,-0.00014880952949170023,6.776263578034403e-21,-8.26719551696442e-05,-0.00021701389050576836,0.00034877232974395156,-0.0005231584655120969,9.974659780071488e-19,6.939596076849709e-19,6.939596076849709e-19,0.00010463169746799394,-0.0,-6.473603361780078e-20,-6.473603361780078e-20,-2.168404344971009e-19,-4.9563528162009426e-20,-4.9563528162009426e-20,-5.162867503412756e-20,-2.753529485941602e-20,-5.162867503412756e-20,0.0006696428754366934,-0.0002678571327123791,-0.00044642857392318547,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.00014880952949170023,1.808329102346724e-20,-0.00010629251482896507,1.812086352174983e-21,-6.473603361780078e-20,-0.0,4.251700738677755e-05,-9.016211247754102e-23,1.3416001973768713e-34,-5.082197683525802e-21,-8.445696312589955e-23,-2.541098841762901e-20,-8.470329472543003e-22,1.9872336427296724e-22,0.00037202381645329297,-0.00014880952949170023,1.763230310621538e-20,1.242052967999642e-20,-0.00010629251482896507,-6.473603361780078e-20,-0.0,-9.016211247754102e-23,4.251700738677755e-05,1.3416001973768713e-34,4.439674780248387e-23,-5.082197683525802e-21,-1.8408098253413623e-22,-3.105132419999105e-21,-2.2968747352589e-20,0.0006510416860692203,1.0842021724855044e-18,-0.001953125,-1.438173257192913e-33,-1.438173257192913e-33,-2.168404344971009e-19,-0.0,1.3416001973768713e-34,1.3416001973768713e-34,0.0006510416860692203,1.0271626905772319e-34,1.0271626905772319e-34,1.0699611312348511e-34,5.706459136997132e-35,1.0699611312348511e-34,0.0005208333604969084,2.6544993583832684e-19,-0.00034722223062999547,-0.00014880952949170023,-6.199319843011263e-22,-4.9563528162009426e-20,-0.0,-5.082197683525802e-21,4.439674780248387e-23,1.0271626905772319e-34,9.920635056914762e-05,-1.1823974837625937e-22,-1.5262574438505872e-20,-0.0,9.064336180593653e-23,0.0005208333604969084,2.6590093021792723e-19,-0.00034722223062999547,1.3552527156068805e-20,-0.00014880952949170023,-4.9563528162009426e-20,-0.0,-8.445696312589955e-23,-5.082197683525802e-21,1.0271626905772319e-34,-1.1823974837625937e-22,9.920635056914762e-05,-1.7243296533023037e-22,-3.3881317890172014e-21,-1.5262574438505872e-20,0.00021701389050576836,3.4772612755016144e-19,5.4022526033333216e-20,-0.00021701389050576836,6.776263578034403e-21,-5.162867503412756e-20,-0.0,-2.541098841762901e-20,-1.8408098253413623e-22,1.0699611312348511e-34,-1.5262574438505872e-20,-1.7243296533023037e-22,3.100198591710068e-05,-1.4143852443861074e-21,-5.309013192427256e-22,0.00028935185400769114,1.5150905055811213e-19,1.1858461261560205e-20,-8.26719551696442e-05,-8.26719551696442e-05,-2.753529485941602e-20,-0.0,-8.470329472543003e-22,-3.105132419999105e-21,5.706459136997132e-35,-0.0,-3.3881317890172014e-21,-1.4143852443861074e-21,2.362055965932086e-05,-6.773816367423339e-21,0.00021701389050576836,3.3783844994740296e-19,5.3101760920462324e-20,2.7095265469693355e-20,-0.00021701389050576836,-5.162867503412756e-20,-0.0,1.9872336427296724e-22,-2.2968747352589e-20,1.0699611312348511e-34,9.064336180593653e-23,-1.5262574438505872e-20,-5.309013192427256e-22,-6.773816367423339e-21,3.100198591710068e-05,6.0,5.0,3.0,3.0,0.1160052940249443,-0.02896825410425663,-0.03333333507180214,-0.04801587387919426,-0.04801587387919426,0.0019841270986944437,0.0031746032182127237,0.004761904943734407,0.004761904943734407,0.0026455025654286146,0.0055555556900799274,0.0055555556900799274,0.0055555556900799274,0.008333333767950535,0.0055555556900799274,-0.02896825410425663,0.02250000089406967,0.0031746032182127237,0.004761904943734407,0.004761904943734407,-0.0029761905316263437,-0.0012698412174358964,-0.0019047618843615055,-0.0019047618843615055,-7.26415455565288e-18,-5.4752209710517974e-18,-5.4752209710517974e-18,-2.5942284870710595e-17,-7.996116753533703e-18,-2.5942284870710595e-17,-0.03333333507180214,0.0031746032182127237,0.03253968432545662,0.0055555556900799274,0.0055555556900799274,-9.86623976961809e-18,-0.0015873016091063619,-5.521387678797184e-19,-5.521387678797184e-19,-0.005291005130857229,-0.0027777778450399637,-0.0027777778450399637,-8.820234874813073e-32,-2.6101011581548056e-32,-8.820234874813073e-32,-0.04801587387919426,0.004761904943734407,0.0055555556900799274,0.10357142984867096,0.008333333767950535,-1.6715397811953116e-17,-2.846030702774449e-19,-0.004761904943734407,-6.245383196800932e-19,2.168404344971009e-19,-0.0055555556900799274,6.349314951100011e-20,-0.03333333507180214,-0.008333333767950535,-1.8503717628539684e-17,-0.04801587387919426,0.004761904943734407,0.0055555556900799274,0.008333333767950535,0.10357142984867096,-1.680513367352532e-17,-2.846030702774449e-19,-6.245383196800932e-19,-0.004761904943734407,1.1129562630475548e-19,6.349314951100011e-20,-0.0055555556900799274,-1.8503717628539684e-17,-0.008333333767950535,-0.03333333507180214,0.0019841270986944437,-0.0029761905316263437,-9.86623976961809e-18,-1.6715397811953116e-17,-1.680513367352532e-17,0.0005952381179668009,7.318364664277155e-19,9.75781955236954e-19,9.75781955236954e-19,1.4779656832621582e-18,1.0665655444525316e-18,1.0665655444525316e-18,5.286776406212723e-18,1.5860329011843016e-18,5.286776406212723e-18,0.0031746032182127237,-0.0012698412174358964,-0.0015873016091063619,-2.846030702774449e-19,-2.846030702774449e-19,7.318364664277155e-19,0.0006349206087179482,1.3552527156068805e-19,1.3552527156068805e-19,-6.064229737923024e-20,-2.710505431213761e-20,-2.710505431213761e-20,5.970382827600431e-33,2.0222264416065976e-33,5.970382827600431e-33,0.004761904943734407,-0.0019047618843615055,-5.521387678797184e-19,-0.004761904943734407,-6.245383196800932e-19,9.75781955236954e-19,1.3552527156068805e-19,0.0019047618843615055,2.3662478529177935e-19,4.747580911425011e-21,1.926736291183282e-19,1.61898485950052e-33,-4.915965916663497e-19,3.2976320907727913e-20,8.802822423931137e-33,0.004761904943734407,-0.0019047618843615055,-5.521387678797184e-19,-6.245383196800932e-19,-0.004761904943734407,9.75781955236954e-19,1.3552527156068805e-19,2.3662478529177935e-19,0.0019047618843615055,4.747580911425011e-21,1.61898485950052e-33,1.926736291183282e-19,8.802822423931137e-33,3.2976320907727913e-20,-4.915965916663497e-19,0.0026455025654286146,-7.26415455565288e-18,-0.005291005130857229,2.168404344971009e-19,1.1129562630475548e-19,1.4779656832621582e-18,-6.064229737923024e-20,4.747580911425011e-21,4.747580911425011e-21,0.0013227512827143073,-1.0842021724855044e-19,-1.0842021724855044e-19,1.36506603090581e-32,3.891515558041446e-33,1.36506603090581e-32,0.0055555556900799274,-5.4752209710517974e-18,-0.0027777778450399637,-0.0055555556900799274,6.349314951100011e-20,1.0665655444525316e-18,-2.710505431213761e-20,1.926736291183282e-19,1.61898485950052e-33,-1.0842021724855044e-19,0.0027777778450399637,-3.1746574755500055e-20,9.16138199639452e-33,2.7630161856680875e-33,9.430236656210779e-33,0.0055555556900799274,-5.4752209710517974e-18,-0.0027777778450399637,6.349314951100011e-20,-0.0055555556900799274,1.0665655444525316e-18,-2.710505431213761e-20,1.61898485950052e-33,1.926736291183282e-19,-1.0842021724855044e-19,-3.1746574755500055e-20,0.0027777778450399637,9.430236656210779e-33,2.7630161856680875e-33,9.16138199639452e-33,0.0055555556900799274,-2.5942284870710595e-17,-8.820234874813073e-32,-0.03333333507180214,-1.8503717628539684e-17,5.286776406212723e-18,5.970382827600431e-33,-4.915965916663497e-19,8.802822423931137e-33,1.36506603090581e-32,9.16138199639452e-33,9.430236656210779e-33,0.01666666753590107,1.2970729397287535e-32,9.251858814269842e-18,0.008333333767950535,-7.996116753533703e-18,-2.6101011581548056e-32,-0.008333333767950535,-0.008333333767950535,1.5860329011843016e-18,2.0222264416065976e-33,3.2976320907727913e-20,3.2976320907727913e-20,3.891515558041446e-33,2.7630161856680875e-33,2.7630161856680875e-33,1.2970729397287535e-32,0.008333333767950535,1.2970729397287535e-32,0.0055555556900799274,-2.5942284870710595e-17,-8.820234874813073e-32,-1.8503717628539684e-17,-0.03333333507180214,5.286776406212723e-18,5.970382827600431e-33,8.802822423931137e-33,-4.915965916663497e-19,1.36506603090581e-32,9.430236656210779e-33,9.16138199639452e-33,9.251858814269842e-18,1.2970729397287535e-32,0.01666666753590107,6.0,5.0,3.0,4.0,0.09392856806516647,-0.022440476343035698,-0.025833332911133766,-0.037261903285980225,-0.030476190149784088,0.0014880952658131719,0.0023809524718672037,0.0035714285913854837,0.0028571428265422583,0.0019841270986944437,0.004166666883975267,0.0033333334140479565,0.004166666883975267,0.004999999888241291,0.0027777778450399637,-0.022440476343035698,0.01716071367263794,0.0023809524718672037,0.0035714285913854837,0.0028571428265422583,-0.0022321429569274187,-0.0009523809421807528,-0.0014285714132711291,-0.0011428571306169033,-6.396792817664476e-18,-3.650340598570998e-18,-3.3927013415160974e-18,-1.8103299346337465e-17,-4.585081160535521e-18,-9.11757017772492e-18,-0.025833332911133766,0.0023809524718672037,0.024821428582072258,0.004166666883975267,0.0033333334140479565,-7.209944447028604e-18,-0.0011904762359336019,9.525941181131378e-19,2.2326868768179775e-19,-0.003968254197388887,-0.0020833334419876337,-0.0016666667070239782,-6.452454824114177e-32,-1.5385613563738994e-32,-2.991967257111943e-32,-0.037261903285980225,0.0035714285913854837,0.004166666883975267,0.07892857491970062,0.004999999888241291,-1.228697225172595e-17,2.041717885996362e-19,-0.0035714285913854837,6.794911330968645e-19,-1.0842021724855044e-19,-0.004166666883975267,-7.61917742433213e-20,-0.02500000037252903,-0.004999999888241291,-6.476301004552767e-18,-0.030476190149784088,0.0028571428265422583,0.0033333334140479565,0.004999999888241291,0.03976190462708473,-9.324138683375338e-18,2.812739268058604e-19,4.669019416591916e-19,-0.0019047618843615055,-3.663601673808113e-20,-7.61917742433213e-20,-0.002222222276031971,-9.714451300033997e-18,-0.0033333334140479565,-0.008333333767950535,0.0014880952658131719,-0.0022321429569274187,-7.209944447028604e-18,-1.228697225172595e-17,-9.324138683375338e-18,0.00044642857392318547,3.7947076036992655e-19,5.963111948670274e-19,6.505213034913027e-19,1.0948021818426418e-18,7.930164505921508e-19,6.34413150133963e-19,3.965082408057119e-18,9.516196993515503e-19,1.850371804212999e-18,0.0023809524718672037,-0.0009523809421807528,-0.0011904762359336019,2.041717885996362e-19,2.812739268058604e-19,3.7947076036992655e-19,0.0004761904710903764,-1.6840488665375542e-19,-1.450356384818487e-19,4.695143331299989e-19,1.0842021724855044e-19,4.0657581468206416e-20,3.3248460983665e-33,8.515147915887222e-34,1.607463361823531e-33,0.0035714285913854837,-0.0014285714132711291,9.525941181131378e-19,-0.0035714285913854837,4.669019416591916e-19,5.963111948670274e-19,-1.6840488665375542e-19,0.0014285714132711291,-1.9467509600797682e-19,1.3000027124613842e-33,-5.315819337904919e-19,8.60649943898046e-34,-1.722112176960247e-18,1.9785793513989028e-20,2.1579616926510088e-33,0.0028571428265422583,-0.0011428571306169033,2.2326868768179775e-19,6.794911330968645e-19,-0.0019047618843615055,6.505213034913027e-19,-1.450356384818487e-19,-1.9467509600797682e-19,0.0007619047537446022,1.4444474582904269e-33,1.1495394355561314e-33,9.288027881089788e-20,5.7153787973147214e-33,-1.2853560830931204e-19,-8.952563491199201e-20,0.0019841270986944437,-6.396792817664476e-18,-0.003968254197388887,-1.0842021724855044e-19,-3.663601673808113e-20,1.0948021818426418e-18,4.695143331299989e-19,1.3000027124613842e-33,1.4444474582904269e-33,0.0009920635493472219,5.421010862427522e-20,5.421010862427522e-20,1.0062001686956401e-32,2.4148803093606203e-33,4.695600713777924e-33,0.004166666883975267,-3.650340598570998e-18,-0.0020833334419876337,-0.004166666883975267,-7.61917742433213e-20,7.930164505921508e-19,1.0842021724855044e-19,-5.315819337904919e-19,1.1495394355561314e-33,5.421010862427522e-20,0.0020833334419876337,3.809588712166065e-20,7.512348562551106e-33,1.6418067149797502e-33,3.286920609847142e-33,0.0033333334140479565,-3.3927013415160974e-18,-0.0016666667070239782,-7.61917742433213e-20,-0.002222222276031971,6.34413150133963e-19,4.0657581468206416e-20,8.60649943898046e-34,9.288027881089788e-20,5.421010862427522e-20,3.809588712166065e-20,0.0011111111380159855,5.6347207830651116e-33,1.3036661222386226e-33,2.5544605289581742e-33,0.004166666883975267,-1.8103299346337465e-17,-6.452454824114177e-32,-0.02500000037252903,-9.714451300033997e-18,3.965082408057119e-18,3.3248460983665e-33,-1.722112176960247e-18,5.7153787973147214e-33,1.0062001686956401e-32,7.512348562551106e-33,5.6347207830651116e-33,0.012500000186264515,7.763692764643927e-33,3.2381505022763835e-18,0.004999999888241291,-4.585081160535521e-18,-1.5385613563738994e-32,-0.004999999888241291,-0.0033333334140479565,9.516196993515503e-19,8.515147915887222e-34,1.9785793513989028e-20,-1.2853560830931204e-19,2.4148803093606203e-33,1.6418067149797502e-33,1.3036661222386226e-33,7.763692764643927e-33,0.0033333334140479565,3.649290620717113e-33,0.0027777778450399637,-9.11757017772492e-18,-2.991967257111943e-32,-6.476301004552767e-18,-0.008333333767950535,1.850371804212999e-18,1.607463361823531e-33,2.1579616926510088e-33,-8.952563491199201e-20,4.695600713777924e-33,3.286920609847142e-33,2.5544605289581742e-33,3.2381505022763835e-18,3.649290620717113e-33,0.0027777778450399637,6.0,5.0,3.0,5.0,0.07904762029647827,-0.018333332613110542,-0.021111110225319862,-0.030476190149784088,-0.021111110225319862,0.0011904762359336019,0.0019047618843615055,0.0028571428265422583,0.0019047618843615055,0.0015873016091063619,0.0033333334140479565,0.002222222276031971,0.0033333334140479565,0.0033333334140479565,0.0015873016091063619,-0.018333332613110542,0.013880952261388302,0.0019047618843615055,0.0028571428265422583,0.0019047618843615055,-0.0017857142956927419,-0.0007619047537446022,-0.0011428571306169033,-0.0007619047537446022,2.927345865710862e-18,1.936259621575605e-18,1.2752813075755601e-18,8.865417402877931e-18,2.092279119992907e-18,2.9128137499143772e-18,-0.021111110225319862,0.0019047618843615055,0.020079365000128746,0.0033333334140479565,0.002222222276031971,3.144186300207963e-18,-0.0009523809421807528,7.195960803677031e-20,8.131516293641283e-20,-0.0031746032182127237,-0.0016666667070239782,-0.0011111111380159855,-1.4462737357012232e-32,0.0,6.168736253500857e-20,-0.030476190149784088,0.0028571428265422583,0.0033333334140479565,0.06380952149629593,0.0033333334140479565,5.371171162569671e-18,3.092318818777226e-19,-0.0028571428265422583,3.438687000104911e-19,-1.0842021724855044e-19,-0.0033333334140479565,2.7469931435152994e-20,-0.019999999552965164,-0.0033333334140479565,-3.0644392649177974e-18,-0.021111110225319862,0.0019047618843615055,0.002222222276031971,0.0033333334140479565,0.020079365000128746,3.198396408832238e-18,1.894731897801781e-19,2.1486943111844895e-19,-0.0009523809421807528,-2.3843767115763722e-20,-5.421010862427522e-20,-0.0011111111380159855,-6.3441316047372065e-18,-0.0016666667070239782,-0.0031746032182127237,0.0011904762359336019,-0.0017857142956927419,3.144186300207963e-18,5.371171162569671e-18,3.198396408832238e-18,0.0003571428533177823,-2.710505431213761e-19,-3.7947076036992655e-19,-2.710505431213761e-19,-4.484821286824959e-19,-3.172065750669815e-19,-2.1147105004465433e-19,-1.5860329011843016e-18,-3.172065750669815e-19,-4.641944244179407e-19,0.0019047618843615055,-0.0007619047537446022,-0.0009523809421807528,3.092318818777226e-19,1.894731897801781e-19,-2.710505431213761e-19,0.0003809523768723011,-5.563774319777219e-21,-4.870126426705035e-21,-3.395940373999702e-19,-1.4907779871675686e-19,-8.131516293641283e-20,1.2115045182337744e-33,1.4165763844364493e-21,-3.697499357595951e-21,0.0028571428265422583,-0.0011428571306169033,7.195960803677031e-20,-0.0028571428265422583,2.1486943111844895e-19,-3.7947076036992655e-19,-5.563774319777219e-21,0.0011428571306169033,-1.1127548639554437e-20,5.296307347064899e-34,-5.805017183343048e-20,2.567279662195876e-34,-9.352527935588464e-19,-1.8705055871176929e-19,3.972230510298674e-34,0.0019047618843615055,-0.0007619047537446022,8.131516293641283e-20,3.438687000104911e-19,-0.0009523809421807528,-2.710505431213761e-19,-4.870126426705035e-21,-1.1127548639554437e-20,0.0003809523768723011,-3.86981101505162e-21,2.989528072891459e-21,-2.7647849583860054e-20,7.16825822352039e-34,-1.610144414709004e-19,-2.898675578884621e-19,0.0015873016091063619,2.927345865710862e-18,-0.0031746032182127237,-1.0842021724855044e-19,-2.3843767115763722e-20,-4.484821286824959e-19,-3.395940373999702e-19,5.296307347064899e-34,-3.86981101505162e-21,0.0007936508045531809,-0.0,5.421010862427522e-20,2.0185993068503416e-33,4.7219213487709616e-21,-2.165237826500322e-20,0.0033333334140479565,1.936259621575605e-18,-0.0016666667070239782,-0.0033333334140479565,-5.421010862427522e-20,-3.172065750669815e-19,-1.4907779871675686e-19,-5.805017183343048e-20,2.989528072891459e-21,-0.0,0.0016666667070239782,-0.0,1.4360120006263308e-33,3.3881317890172014e-21,9.965093307040341e-21,0.002222222276031971,1.2752813075755601e-18,-0.0011111111380159855,2.7469931435152994e-20,-0.0011111111380159855,-2.1147105004465433e-19,-8.131516293641283e-20,2.567279662195876e-34,-2.7647849583860054e-20,5.421010862427522e-20,-0.0,0.0005555555690079927,9.606988394904233e-34,-1.3734965717576497e-20,1.5889567649298264e-20,0.0033333334140479565,8.865417402877931e-18,-1.4462737357012232e-32,-0.019999999552965164,-6.3441316047372065e-18,-1.5860329011843016e-18,1.2115045182337744e-33,-9.352527935588464e-19,7.16825822352039e-34,2.0185993068503416e-33,1.4360120006263308e-33,9.606988394904233e-34,0.009999999776482582,1.4444474582904269e-33,1.5860329011843016e-18,0.0033333334140479565,2.092279119992907e-18,0.0,-0.0033333334140479565,-0.0016666667070239782,-3.172065750669815e-19,1.4165763844364493e-21,-1.8705055871176929e-19,-1.610144414709004e-19,4.7219213487709616e-21,3.3881317890172014e-21,-1.3734965717576497e-20,1.4444474582904269e-33,0.0016666667070239782,-6.377835880126898e-20,0.0015873016091063619,2.9128137499143772e-18,6.168736253500857e-20,-3.0644392649177974e-18,-0.0031746032182127237,-4.641944244179407e-19,-3.697499357595951e-21,3.972230510298674e-34,-2.898675578884621e-19,-2.165237826500322e-20,9.965093307040341e-21,1.5889567649298264e-20,1.5860329011843016e-18,-6.377835880126898e-20,0.0007936508045531809,6.0,5.0,3.0,6.0,0.06829176098108292,-0.015504535287618637,-0.01785714365541935,-0.02579365111887455,-0.015504535287618637,0.0009920635493472219,0.0015873016091063619,0.0023809524718672037,0.0013605442363768816,0.0013227512827143073,0.0027777778450399637,0.0015873016091063619,0.0027777778450399637,0.0023809524718672037,0.0009920635493472219,-0.015504535287618637,0.01165816280990839,0.0015873016091063619,0.0023809524718672037,0.0013605442363768816,-0.0014880952658131719,-0.0006349206087179482,-0.0009523809421807528,-0.0005442177061922848,-3.686287386450715e-18,-2.790522540973925e-18,-1.4344921721936681e-18,-1.2971142435355297e-17,-2.0373386108877473e-18,-2.185423172483981e-18,-0.01785714365541935,0.0015873016091063619,0.01686508022248745,0.0027777778450399637,0.0015873016091063619,-5.204170427930421e-18,-0.0007936508045531809,-3.2466826118009265e-19,-2.710505431213761e-20,-0.0026455025654286146,-0.0013888889225199819,-0.0007936508045531809,-4.615411942179483e-32,2.710505431213761e-20,6.669707851735941e-20,-0.02579365111887455,0.0023809524718672037,0.0027777778450399637,0.0535714291036129,0.0023809524718672037,-8.922094991269452e-18,-2.811648682119741e-19,-0.0023809524718672037,-8.309309719021607e-20,-2.168404344971009e-19,-0.0027777778450399637,-7.119642890852644e-21,-0.01666666753590107,-0.0023809524718672037,-1.8542851956909874e-18,-0.015504535287618637,0.0013605442363768816,0.0015873016091063619,0.0023809524718672037,0.01165816280990839,-4.228388472693467e-18,-1.5251363556266364e-19,-2.3297763287993368e-20,-0.0005442177061922848,3.0421929015027344e-20,-0.0,-0.0006349206087179482,-4.543323428852619e-18,-0.0009523809421807528,-0.0014880952658131719,0.0009920635493472219,-0.0014880952658131719,-5.204170427930421e-18,-8.922094991269452e-18,-4.228388472693467e-18,0.00029761905898340046,3.5236570605778894e-19,5.692061405548898e-19,2.439454888092385e-19,7.490449250961155e-19,5.2867765096103e-19,3.021015074493331e-19,2.6433882031063616e-18,4.531522353246055e-19,5.084607364047746e-19,0.0015873016091063619,-0.0006349206087179482,-0.0007936508045531809,-2.811648682119741e-19,-1.5251363556266364e-19,3.5236570605778894e-19,0.0003174603043589741,9.116718776230056e-20,4.967183389229132e-20,-3.032114868961512e-20,2.710505431213761e-20,1.3552527156068805e-20,3.348793122344658e-33,-3.8529049559244904e-22,2.9747364134258113e-22,0.0023809524718672037,-0.0009523809421807528,-3.2466826118009265e-19,-0.0023809524718672037,-2.3297763287993368e-20,5.692061405548898e-19,9.116718776230056e-20,0.0009523809421807528,6.742077108046381e-20,1.3511602266091702e-33,9.675028854316697e-20,5.3414463301364744e-34,-2.4579829583317485e-19,-1.4525416925992756e-19,8.456036162075207e-34,0.0013605442363768816,-0.0005442177061922848,-2.710505431213761e-20,-8.309309719021607e-20,-0.0005442177061922848,2.439454888092385e-19,4.967183389229132e-20,6.742077108046381e-20,0.00021768707665614784,1.741681488260643e-21,-1.5304256990457085e-21,-4.1248165807349404e-20,1.4680934455121788e-33,-3.2959192452934384e-20,-1.411510173795407e-19,0.0013227512827143073,-3.686287386450715e-18,-0.0026455025654286146,-2.168404344971009e-19,3.0421929015027344e-20,7.490449250961155e-19,-3.032114868961512e-20,1.3511602266091702e-33,1.741681488260643e-21,0.0006613756413571537,5.421010862427522e-20,0.0,6.720745687452422e-33,-1.284301702461928e-21,-2.0961810892698586e-21,0.0027777778450399637,-2.790522540973925e-18,-0.0013888889225199819,-0.0027777778450399637,-0.0,5.2867765096103e-19,2.710505431213761e-20,9.675028854316697e-20,-1.5304256990457085e-21,5.421010862427522e-20,0.0013888889225199819,1.3552527156068805e-20,4.5626647923274005e-33,-5.697046929729506e-22,-4.184757609900485e-21,0.0015873016091063619,-1.4344921721936681e-18,-0.0007936508045531809,-7.119642890852644e-21,-0.0006349206087179482,3.021015074493331e-19,1.3552527156068805e-20,5.3414463301364744e-34,-4.1248165807349404e-20,0.0,1.3552527156068805e-20,0.0003174603043589741,2.5328114127648817e-33,-7.99416424539656e-21,-2.165504721494841e-20,0.0027777778450399637,-1.2971142435355297e-17,-4.615411942179483e-32,-0.01666666753590107,-4.543323428852619e-18,2.6433882031063616e-18,3.348793122344658e-33,-2.4579829583317485e-19,1.4680934455121788e-33,6.720745687452422e-33,4.5626647923274005e-33,2.5328114127648817e-33,0.008333333767950535,3.707415142945429e-33,9.086647271295545e-19,0.0023809524718672037,-2.0373386108877473e-18,2.710505431213761e-20,-0.0023809524718672037,-0.0009523809421807528,4.531522353246055e-19,-3.8529049559244904e-22,-1.4525416925992756e-19,-3.2959192452934384e-20,-1.284301702461928e-21,-5.697046929729506e-22,-7.99416424539656e-21,3.707415142945429e-33,0.0009523809421807528,1.8130154359460064e-20,0.0009920635493472219,-2.185423172483981e-18,6.669707851735941e-20,-1.8542851956909874e-18,-0.0014880952658131719,5.084607364047746e-19,2.9747364134258113e-22,8.456036162075207e-34,-1.411510173795407e-19,-2.0961810892698586e-21,-4.184757609900485e-21,-2.165504721494841e-20,9.086647271295545e-19,1.8130154359460064e-20,0.00029761905898340046,6.0,5.0,3.0,7.0,0.06013794243335724,-0.01343537401407957,-0.015476190485060215,-0.022363945841789246,-0.011876417323946953,0.0008503401186317205,0.0013605442363768816,0.0020408162381500006,0.0010204081190750003,0.0011337868636474013,0.0023809524718672037,0.0011904762359336019,0.0023809524718672037,0.0017857142956927419,0.0006613756413571537,-0.01343537401407957,0.010051020421087742,0.0013605442363768816,0.0020408162381500006,0.0010204081190750003,-0.0012755101779475808,-0.0005442177061922848,-0.0008163265301845968,-0.0004081632650922984,1.872891382799449e-18,7.874888678475535e-19,6.148544128513584e-19,4.1573100834277045e-18,6.327144313485088e-19,9.35854257261749e-19,-0.015476190485060215,0.0013605442363768816,0.01454081665724516,0.0023809524718672037,0.0011904762359336019,2.5478751053409354e-18,-0.0006802721181884408,-4.0519623251669057e-19,-1.2879857419592148e-19,-0.0022675737272948027,-0.0011904762359336019,-0.0005952381179668009,-1.1593360054758843e-32,4.0657581468206416e-20,5.629511429344316e-20,-0.022363945841789246,0.0020408162381500006,0.0023809524718672037,0.046173468232154846,0.0017857142956927419,4.2686973975334826e-18,-2.9275948470752404e-19,-0.0020408162381500006,-1.7747180721840523e-19,-5.255275614723493e-33,-0.0023809524718672037,4.0657581468206416e-20,-0.014285714365541935,-0.0017857142956927419,-1.099912813859724e-18,-0.011876417323946953,0.0010204081190750003,0.0011904762359336019,0.0017857142956927419,0.007397959008812904,1.6805133673525319e-18,9.307083448606304e-22,-3.03897187312215e-19,-0.0003401360590942204,-2.2023663590953053e-33,-1.5940612568562183e-33,-0.00039682540227659047,-3.436404601999724e-18,-0.0005952381179668009,-0.0007936508045531809,0.0008503401186317205,-0.0012755101779475808,2.5478751053409354e-18,4.2686973975334826e-18,1.6805133673525319e-18,0.00025510202976875007,-2.574980159653073e-19,-4.336808689942018e-19,-1.3552527156068805e-19,-3.2368019393839806e-19,-2.2657611766230274e-19,-1.1328805883115137e-19,-1.1328806141609079e-18,-1.699320947090756e-19,-1.6469613190449442e-19,0.0013605442363768816,-0.0005442177061922848,-0.0006802721181884408,-2.9275948470752404e-19,9.307083448606304e-22,-2.574980159653073e-19,0.0002721088530961424,7.051279159723263e-20,3.525639579861632e-20,-1.2724528410191175e-19,5.823874962604696e-20,-4.4535846850729697e-20,1.3160923832237604e-33,2.094811059635714e-34,1.7002350290293567e-34,0.0020408162381500006,-0.0008163265301845968,-4.0519623251669057e-19,-0.0020408162381500006,-3.03897187312215e-19,-4.336808689942018e-19,7.051279159723263e-20,0.0008163265301845968,5.2884593697924476e-20,5.033112325205865e-34,2.2891424706126044e-19,1.7751784188184172e-34,1.5070930907744114e-18,1.7168569175829387e-19,3.6863502841786936e-34,0.0010204081190750003,-0.0004081632650922984,-1.2879857419592148e-19,-1.7747180721840523e-19,-0.0003401360590942204,-1.3552527156068805e-19,3.525639579861632e-20,5.2884593697924476e-20,0.0001360544265480712,1.7377826603997725e-34,1.4738391792470516e-34,1.3552527156068805e-20,5.259968959590143e-34,1.508677594011848e-20,-3.7307425670358495e-20,0.0011337868636474013,1.872891382799449e-18,-0.0022675737272948027,-5.255275614723493e-33,-2.2023663590953053e-33,-3.2368019393839806e-19,-1.2724528410191175e-19,5.033112325205865e-34,1.7377826603997725e-34,0.0005668934318237007,2.3764847608541777e-34,1.5326735898606687e-34,1.4374287468255601e-33,2.1561431661560882e-34,2.076286003350724e-34,0.0023809524718672037,7.874888678475535e-19,-0.0011904762359336019,-0.0023809524718672037,-1.5940612568562183e-33,-2.2657611766230274e-19,5.823874962604696e-20,2.2891424706126044e-19,1.4738391792470516e-34,2.3764847608541777e-34,0.0011904762359336019,8.317696433400882e-35,1.349707572730943e-33,1.8720738212259733e-34,1.4534001564277589e-34,0.0011904762359336019,6.148544128513584e-19,-0.0005952381179668009,4.0657581468206416e-20,-0.00039682540227659047,-1.1328805883115137e-19,-4.4535846850729697e-20,1.7751784188184172e-34,1.3552527156068805e-20,1.5326735898606687e-34,8.317696433400882e-35,0.00019841270113829523,4.012353897747581e-34,-1.3552527156068805e-20,-1.8765038097814387e-20,0.0023809524718672037,4.1573100834277045e-18,-1.1593360054758843e-32,-0.014285714365541935,-3.436404601999724e-18,-1.1328806141609079e-18,1.3160923832237604e-33,1.5070930907744114e-18,5.259968959590143e-34,1.4374287468255601e-33,1.349707572730943e-33,4.012353897747581e-34,0.0071428571827709675,9.62964972193618e-34,5.727341175662168e-19,0.0017857142956927419,6.327144313485088e-19,4.0657581468206416e-20,-0.0017857142956927419,-0.0005952381179668009,-1.699320947090756e-19,2.094811059635714e-34,1.7168569175829387e-19,1.508677594011848e-20,2.1561431661560882e-34,1.8720738212259733e-34,-1.3552527156068805e-20,9.62964972193618e-34,0.0005952381179668009,-1.5185124806894193e-20,0.0006613756413571537,9.35854257261749e-19,5.629511429344316e-20,-1.099912813859724e-18,-0.0007936508045531809,-1.6469613190449442e-19,1.7002350290293567e-34,3.6863502841786936e-34,-3.7307425670358495e-20,2.076286003350724e-34,1.4534001564277589e-34,-1.8765038097814387e-20,5.727341175662168e-19,-1.5185124806894193e-20,0.00013227513409219682,6.0,5.0,3.0,8.0,0.05373677238821983,-0.01185515895485878,-0.013657407835125923,-0.01974206417798996,-0.009391534142196178,0.0007440476329065859,0.0011904762359336019,0.0017857142956927419,0.0007936508045531809,0.0009920635493472219,0.0020833334419876337,0.0009259259095415473,0.0020833334419876337,0.0013888889225199819,0.00046296295477077365,-0.01185515895485878,0.008834325708448887,0.0011904762359336019,0.0017857142956927419,0.0007936508045531809,-0.0011160714784637094,-0.0004761904710903764,-0.0007142857066355646,-0.0003174603043589741,-2.8322016904986345e-18,-1.9825412040285595e-18,-8.692709742397525e-19,-9.912705813347644e-18,-1.3111562341395615e-18,-1.1770866970593902e-18,-0.013657407835125923,0.0011904762359336019,0.012781084515154362,0.0020833334419876337,0.0009259259095415473,-3.7624223308010146e-18,-0.0005952381179668009,-4.8884332151906274e-33,1.1858461261560205e-20,-0.0019841270986944437,-0.0010416667209938169,-0.00046296295477077365,-3.336222532693758e-32,1.1858461261560205e-20,4.351831453088717e-20,-0.01974206417798996,0.0017857142956927419,0.0020833334419876337,0.04057539626955986,0.0013888889225199819,-6.4083282648968344e-18,-5.550800404649985e-33,-0.0017857142956927419,1.0537797135578972e-20,-1.6262110640854063e-32,-0.0020833334419876337,1.1858461261560205e-20,-0.012500000186264515,-0.0013888889225199819,-7.538831561977265e-19,-0.009391534142196178,0.0007936508045531809,0.0009259259095415473,0.0013888889225199819,0.004998110234737396,-2.527043181999247e-18,-2.1888878469951893e-33,-3.2833320459992724e-33,-0.00022675737272948027,-6.412757351329352e-33,-4.488930439804134e-33,-0.00026455026818439364,-2.698458786362845e-18,-0.00039682540227659047,-0.00046296295477077365,0.0007440476329065859,-0.0011160714784637094,-3.7624223308010146e-18,-6.4083282648968344e-18,-2.527043181999247e-18,0.00022321428696159273,1.933449637335974e-19,2.9001743267569904e-19,1.473104497898549e-19,5.664403070804539e-19,3.965082252960754e-19,1.762258793454443e-19,1.9825412040285595e-18,2.64338825480515e-19,2.202823588753282e-19,0.0011904762359336019,-0.0004761904710903764,-0.0005952381179668009,-5.550800404649985e-33,-2.1888878469951893e-33,1.933449637335974e-19,0.0002380952355451882,2.512088824892327e-34,1.275981669073323e-34,4.906423421545993e-34,3.4344964869176914e-34,1.5264428958294595e-34,1.7172482893765938e-33,2.2896644011413744e-34,1.9080535910882319e-34,0.0017857142956927419,-0.0007142857066355646,-4.8884332151906274e-33,-0.0017857142956927419,-3.2833320459992724e-33,2.9001743267569904e-19,2.512088824892327e-34,0.0007142857066355646,1.9139725036099846e-34,7.35963513231899e-34,5.151744500787797e-34,2.2896644011413744e-34,2.5758723422293945e-33,3.4344964869176914e-34,2.8620803292351627e-34,0.0007936508045531809,-0.0003174603043589741,1.1858461261560205e-20,1.0537797135578972e-20,-0.00022675737272948027,1.473104497898549e-19,1.275981669073323e-34,1.9139725036099846e-34,9.070294618140906e-05,3.7382274671921217e-34,2.616759249993359e-34,-3.3881317890172014e-21,1.4053175472389569e-33,-3.010799296993073e-21,2.1621421999930703e-20,0.0009920635493472219,-2.8322016904986345e-18,-0.0019841270986944437,-1.6262110640854063e-32,-6.412757351329352e-33,5.664403070804539e-19,4.906423421545993e-34,7.35963513231899e-34,3.7382274671921217e-34,0.0004960317746736109,1.0062001135943425e-33,4.4720006579229045e-34,5.031000843478201e-33,6.708000757295616e-34,5.590000937198001e-34,0.0020833334419876337,-1.9825412040285595e-18,-0.0010416667209938169,-0.0020833334419876337,-4.488930439804134e-33,3.965082252960754e-19,3.4344964869176914e-34,5.151744500787797e-34,2.616759249993359e-34,1.0062001135943425e-33,0.0010416667209938169,3.130400460546033e-34,3.521700627168939e-33,4.69560080561342e-34,3.913000747874097e-34,0.0009259259095415473,-8.692709742397525e-19,-0.00046296295477077365,1.1858461261560205e-20,-0.00026455026818439364,1.762258793454443e-19,1.5264428958294595e-34,2.2896644011413744e-34,-3.3881317890172014e-21,4.4720006579229045e-34,3.130400460546033e-34,0.00013227513409219682,1.5495430817386705e-33,-3.3881317890172014e-21,-1.2433804151682049e-20,0.0020833334419876337,-9.912705813347644e-18,-3.336222532693758e-32,-0.012500000186264515,-2.698458786362845e-18,1.9825412040285595e-18,1.7172482893765938e-33,2.5758723422293945e-33,1.4053175472389569e-33,5.031000843478201e-33,3.521700627168939e-33,1.5495430817386705e-33,0.0062500000931322575,2.359264181874364e-33,3.854941086447787e-19,0.0013888889225199819,-1.3111562341395615e-18,1.1858461261560205e-20,-0.0013888889225199819,-0.00039682540227659047,2.64338825480515e-19,2.2896644011413744e-34,3.4344964869176914e-34,-3.010799296993073e-21,6.708000757295616e-34,4.69560080561342e-34,-3.3881317890172014e-21,2.359264181874364e-33,0.00039682540227659047,-4.887153503405913e-21,0.00046296295477077365,-1.1770866970593902e-18,4.351831453088717e-20,-7.538831561977265e-19,-0.00046296295477077365,2.202823588753282e-19,1.9080535910882319e-34,2.8620803292351627e-34,2.1621421999930703e-20,5.590000937198001e-34,3.913000747874097e-34,-1.2433804151682049e-20,3.854941086447787e-19,-4.887153503405913e-21,6.613756704609841e-05,6.0,5.0,4.0,3.0,0.09392856806516647,-0.022440476343035698,-0.025833332911133766,-0.030476190149784088,-0.037261903285980225,0.0014880952658131719,0.0023809524718672037,0.0028571428265422583,0.0035714285913854837,0.0019841270986944437,0.0033333334140479565,0.004166666883975267,0.0027777778450399637,0.004999999888241291,0.004166666883975267,-0.022440476343035698,0.01716071367263794,0.0023809524718672037,0.0028571428265422583,0.0035714285913854837,-0.0022321429569274187,-0.0009523809421807528,-0.0011428571306169033,-0.0014285714132711291,-6.613633252161577e-18,-3.3927013415160974e-18,-3.650340598570998e-18,-9.11757017772492e-18,-4.585081160535521e-18,-1.8103299346337465e-17,-0.025833332911133766,0.0023809524718672037,0.024821428582072258,0.0033333334140479565,0.004166666883975267,-7.15573433840433e-18,-0.0011904762359336019,2.2326868768179775e-19,9.525941181131378e-19,-0.003968254197388887,-0.0016666667070239782,-0.0020833334419876337,-2.991967257111943e-32,-1.5385613563738994e-32,-6.452454824114177e-32,-0.030476190149784088,0.0028571428265422583,0.0033333334140479565,0.03976190462708473,0.004999999888241291,-9.400922550916185e-18,2.812739268058604e-19,-0.0019047618843615055,4.74455238025143e-19,-0.0,-0.002222222276031971,1.9592170888988252e-19,-0.008333333767950535,-0.0033333334140479565,-8.289540317719089e-32,-0.037261903285980225,0.0035714285913854837,0.004166666883975267,0.004999999888241291,0.07892857491970062,-1.22514845490862e-17,2.041717885996362e-19,6.870444294628159e-19,-0.0035714285913854837,-1.589441247199538e-19,1.9592170888988252e-19,-0.004166666883975267,-5.142806592757121e-32,-0.004999999888241291,-0.02500000037252903,0.0014880952658131719,-0.0022321429569274187,-7.15573433840433e-18,-9.400922550916185e-18,-1.22514845490862e-17,0.00044642857392318547,3.5236570605778894e-19,6.505213034913027e-19,5.963111948670274e-19,1.1347604855005112e-18,6.34413150133963e-19,7.930164505921508e-19,1.850371804212999e-18,9.516196993515503e-19,3.965082408057119e-18,0.0023809524718672037,-0.0009523809421807528,-0.0011904762359336019,2.812739268058604e-19,2.041717885996362e-19,3.5236570605778894e-19,0.0004761904710903764,-1.450356384818487e-19,-1.6840488665375542e-19,4.695143331299989e-19,4.0657581468206416e-20,1.0842021724855044e-19,1.607463361823531e-33,8.515147915887222e-34,3.3248460983665e-33,0.0028571428265422583,-0.0011428571306169033,2.2326868768179775e-19,-0.0019047618843615055,6.870444294628159e-19,6.505213034913027e-19,-1.450356384818487e-19,0.0007619047537446022,-1.9769641196941797e-19,1.4685215825952673e-33,9.288027881089788e-20,1.131483842327501e-33,-8.952563491199201e-20,-1.2853560830931204e-19,5.8233839529522424e-33,0.0035714285913854837,-0.0014285714132711291,9.525941181131378e-19,4.74455238025143e-19,-0.0035714285913854837,5.963111948670274e-19,-1.6840488665375542e-19,-1.9769641196941797e-19,0.0014285714132711291,1.3000027124613842e-33,8.847240682028865e-34,-5.315819337904919e-19,2.604433365205522e-33,1.9785793513989028e-20,-1.722112176960247e-18,0.0019841270986944437,-6.613633252161577e-18,-0.003968254197388887,-0.0,-1.589441247199538e-19,1.1347604855005112e-18,4.695143331299989e-19,1.4685215825952673e-33,1.3000027124613842e-33,0.0009920635493472219,5.421010862427522e-20,1.0842021724855044e-19,4.695600713777924e-33,2.4148803093606203e-33,1.0062001686956401e-32,0.0033333334140479565,-3.3927013415160974e-18,-0.0016666667070239782,-0.002222222276031971,1.9592170888988252e-19,6.34413150133963e-19,4.0657581468206416e-20,9.288027881089788e-20,8.847240682028865e-34,5.421010862427522e-20,0.0011111111380159855,-9.796085444494126e-20,2.5544605289581742e-33,1.3036661222386226e-33,5.6347207830651116e-33,0.004166666883975267,-3.650340598570998e-18,-0.0020833334419876337,1.9592170888988252e-19,-0.004166666883975267,7.930164505921508e-19,1.0842021724855044e-19,1.131483842327501e-33,-5.315819337904919e-19,1.0842021724855044e-19,-9.796085444494126e-20,0.0020833334419876337,3.286920609847142e-33,1.6418067149797502e-33,7.512348562551106e-33,0.0027777778450399637,-9.11757017772492e-18,-2.991967257111943e-32,-0.008333333767950535,-5.142806592757121e-32,1.850371804212999e-18,1.607463361823531e-33,-8.952563491199201e-20,2.604433365205522e-33,4.695600713777924e-33,2.5544605289581742e-33,3.286920609847142e-33,0.0027777778450399637,3.649290620717113e-33,1.6434602681893725e-32,0.004999999888241291,-4.585081160535521e-18,-1.5385613563738994e-32,-0.0033333334140479565,-0.004999999888241291,9.516196993515503e-19,8.515147915887222e-34,-1.2853560830931204e-19,1.9785793513989028e-20,2.4148803093606203e-33,1.3036661222386226e-33,1.6418067149797502e-33,3.649290620717113e-33,0.0033333334140479565,7.763692764643927e-33,0.004166666883975267,-1.8103299346337465e-17,-6.452454824114177e-32,-8.289540317719089e-32,-0.02500000037252903,3.965082408057119e-18,3.3248460983665e-33,5.8233839529522424e-33,-1.722112176960247e-18,1.0062001686956401e-32,5.6347207830651116e-33,7.512348562551106e-33,1.6434602681893725e-32,7.763692764643927e-33,0.012500000186264515,6.0,5.0,4.0,4.0,0.07582738250494003,-0.0173660721629858,-0.019999999552965164,-0.02360714226961136,-0.02360714226961136,0.0011160714784637094,0.0017857142956927419,0.002142857061699033,0.002142857061699033,0.0014880952658131719,0.0024999999441206455,0.0024999999441206455,0.0020833334419876337,0.003000000026077032,0.0020833334419876337,-0.0173660721629858,0.01308482140302658,0.0017857142956927419,0.002142857061699033,0.002142857061699033,-0.0016741071594879031,-0.0007142857066355646,-0.0008571428479626775,-0.0008571428479626775,2.1141942363467336e-18,8.356351221963556e-19,8.356351221963556e-19,3.960454746120191e-18,1.8314587330972803e-18,3.960454746120191e-18,-0.019999999552965164,0.0017857142956927419,0.018928570672869682,0.0024999999441206455,0.0024999999441206455,2.927345865710862e-18,-0.0008928571478463709,-2.8664770565531114e-19,-2.8664770565531114e-19,-0.0029761905316263437,-0.0012499999720603228,-0.0012499999720603228,-5.955740576093001e-33,-2.3753791073981836e-33,-5.955740576093001e-33,-0.02360714226961136,0.002142857061699033,0.0024999999441206455,0.030321428552269936,0.003000000026077032,3.8922590812891755e-18,-9.538849076096327e-20,-0.0014285714132711291,-8.6634696832256e-20,-1.0842021724855044e-19,-0.0016666667070239782,1.9650222165883282e-19,-0.0062500000931322575,-0.0020000000949949026,-7.989566208206338e-33,-0.02360714226961136,0.002142857061699033,0.0024999999441206455,0.003000000026077032,0.030321428552269936,3.903127820947816e-18,-9.538849076096327e-20,-8.6634696832256e-20,-0.0014285714132711291,-1.6167124872666164e-19,1.9650222165883282e-19,-0.0016666667070239782,-7.989566208206338e-33,-0.0020000000949949026,-0.0062500000931322575,0.0011160714784637094,-0.0016741071594879031,2.927345865710862e-18,3.8922590812891755e-18,3.903127820947816e-18,0.0003348214377183467,-2.168404344971009e-19,-3.7947076036992655e-19,-3.7947076036992655e-19,-4.180430195138868e-19,-2.379049248378876e-19,-2.379049248378876e-19,-6.938894007304805e-19,-2.854859304849804e-19,-6.938894007304805e-19,0.0017857142956927419,-0.0007142857066355646,-0.0008928571478463709,-9.538849076096327e-20,-9.538849076096327e-20,-2.168404344971009e-19,0.0003571428533177823,5.6293312105995304e-21,5.6293312105995304e-21,-1.3437540165194698e-20,4.0657581468206416e-20,4.0657581468206416e-20,4.516454089015661e-34,1.8449309219815174e-34,4.516454089015661e-34,0.002142857061699033,-0.0008571428479626775,-2.8664770565531114e-19,-0.0014285714132711291,-8.6634696832256e-20,-3.7947076036992655e-19,5.6293312105995304e-21,0.0005714285653084517,1.1545971813183278e-19,4.905102827111241e-34,1.817162518871738e-19,2.96412655503348e-34,-3.2733847774559625e-19,-1.3467640330644965e-19,7.02396950619932e-34,0.002142857061699033,-0.0008571428479626775,-2.8664770565531114e-19,-8.6634696832256e-20,-0.0014285714132711291,-3.7947076036992655e-19,5.6293312105995304e-21,1.1545971813183278e-19,0.0005714285653084517,4.875010171730191e-34,2.9678881369561115e-34,1.817162518871738e-19,7.02396950619932e-34,-1.3467640330644965e-19,-3.2733847774559625e-19,0.0014880952658131719,2.1141942363467336e-18,-0.0029761905316263437,-1.0842021724855044e-19,-1.6167124872666164e-19,-4.180430195138868e-19,-1.3437540165194698e-20,4.905102827111241e-34,4.875010171730191e-34,0.0007440476329065859,5.421010862427522e-20,5.421010862427522e-20,8.804251567922347e-34,3.6223205099586786e-34,8.804251567922347e-34,0.0024999999441206455,8.356351221963556e-19,-0.0012499999720603228,-0.0016666667070239782,1.9650222165883282e-19,-2.379049248378876e-19,4.0657581468206416e-20,1.817162518871738e-19,2.9678881369561115e-34,5.421010862427522e-20,0.0008333333535119891,-9.825111082941641e-20,3.7691289637055837e-34,1.5507273004616277e-34,4.930380547428728e-34,0.0024999999441206455,8.356351221963556e-19,-0.0012499999720603228,1.9650222165883282e-19,-0.0016666667070239782,-2.379049248378876e-19,4.0657581468206416e-20,2.96412655503348e-34,1.817162518871738e-19,5.421010862427522e-20,-9.825111082941641e-20,0.0008333333535119891,4.930380547428728e-34,1.5507273004616277e-34,3.7691289637055837e-34,0.0020833334419876337,3.960454746120191e-18,-5.955740576093001e-33,-0.0062500000931322575,-7.989566208206338e-33,-6.938894007304805e-19,4.516454089015661e-34,-3.2733847774559625e-19,7.02396950619932e-34,8.804251567922347e-34,3.7691289637055837e-34,4.930380547428728e-34,0.0020833334419876337,6.2227644952933495e-34,1.4380276979315025e-33,0.003000000026077032,1.8314587330972803e-18,-2.3753791073981836e-33,-0.0020000000949949026,-0.0020000000949949026,-2.854859304849804e-19,1.8449309219815174e-34,-1.3467640330644965e-19,-1.3467640330644965e-19,3.6223205099586786e-34,1.5507273004616277e-34,1.5507273004616277e-34,6.2227644952933495e-34,0.0013333333190530539,6.2227644952933495e-34,0.0020833334419876337,3.960454746120191e-18,-5.955740576093001e-33,-7.989566208206338e-33,-0.0062500000931322575,-6.938894007304805e-19,4.516454089015661e-34,7.02396950619932e-34,-3.2733847774559625e-19,8.804251567922347e-34,4.930380547428728e-34,3.7691289637055837e-34,1.4380276979315025e-33,6.2227644952933495e-34,0.0020833334419876337,6.0,5.0,4.0,5.0,0.06369047611951828,-0.014178571291267872,-0.016333334147930145,-0.019285714253783226,-0.016333334147930145,0.0008928571478463709,0.0014285714132711291,0.001714285695925355,0.0014285714132711291,0.0011904762359336019,0.0020000000949949026,0.0016666667070239782,0.0016666667070239782,0.0020000000949949026,0.0011904762359336019,-0.014178571291267872,0.010582142509520054,0.0014285714132711291,0.001714285695925355,0.0014285714132711291,-0.0013392857508733869,-0.0005714285653084517,-0.0006857143016532063,-0.0005714285653084517,-4.065758146820642e-18,-2.433178861989792e-18,-2.040414688790679e-18,-6.336727511074244e-18,-2.2577067639022337e-18,-4.007906789139908e-18,-0.016333334147930145,0.0014285714132711291,0.015309523791074753,0.0020000000949949026,0.0016666667070239782,-4.662069341687669e-18,-0.0007142857066355646,-2.5525178633240424e-18,2.710505431213761e-20,-0.0023809524718672037,-0.0010000000474974513,-0.0008333333535119891,-2.205484247658266e-32,1.0842021724855044e-19,-1.5577617160789203e-20,-0.019285714253783226,0.001714285695925355,0.0020000000949949026,0.024523809552192688,0.0020000000949949026,-5.443081695531662e-18,1.5065561988580762e-19,-0.0011428571306169033,-8.118177360029012e-20,-1.1926223897340549e-18,-0.0013333333190530539,-5.412188464206761e-19,-0.004999999888241291,-0.0013333333190530539,-5.532389077546562e-18,-0.016333334147930145,0.0014285714132711291,0.0016666667070239782,0.0020000000949949026,0.015309523791074753,-4.716279450311944e-18,5.363611959617158e-20,-2.8273180161621214e-18,-0.0007142857066355646,-3.649246535888623e-20,-1.4210854356205618e-19,-0.0008333333535119891,-7.859956207262574e-18,-0.0010000000474974513,-0.0023809524718672037,0.0008928571478463709,-0.0013392857508733869,-4.662069341687669e-18,-5.443081695531662e-18,-4.716279450311944e-18,0.0002678571327123791,2.981555974335137e-19,2.710505431213761e-19,2.981555974335137e-19,6.654916182172874e-19,3.806478900803778e-19,3.172065750669815e-19,1.1102229998097382e-18,3.806478900803778e-19,6.738497096204646e-19,0.0014285714132711291,-0.0005714285653084517,-0.0007142857066355646,1.5065561988580762e-19,5.363611959617158e-20,2.981555974335137e-19,0.0002857142826542258,-5.484123450695611e-20,-4.442715337953567e-20,4.8605119868918835e-20,-6.776263578034403e-21,2.710505431213761e-20,1.1981846060355232e-33,4.014427084073348e-34,7.406098303672724e-22,0.001714285695925355,-0.0006857143016532063,-2.5525178633240424e-18,-0.0011428571306169033,-2.8273180161621214e-18,2.710505431213761e-19,-5.484123450695611e-20,0.0004571428580675274,8.158068791304235e-20,4.350261748629427e-19,3.6232793331325376e-19,2.0301221062780757e-19,5.237415540531963e-19,3.181582205123296e-19,4.350261748629427e-19,0.0014285714132711291,-0.0005714285653084517,2.710505431213761e-20,-8.118177360029012e-20,-0.0007142857066355646,2.981555974335137e-19,-4.442715337953567e-20,8.158068791304235e-20,0.0002857142826542258,-2.687495269900582e-21,4.9652881378733424e-34,4.7826713831938026e-20,1.3842621475283258e-33,-6.138497632233215e-20,-6.427050783972459e-21,0.0011904762359336019,-4.065758146820642e-18,-0.0023809524718672037,-1.1926223897340549e-18,-3.649246535888623e-20,6.654916182172874e-19,4.8605119868918835e-20,4.350261748629427e-19,-2.687495269900582e-21,0.0005952381179668009,2.710505431213761e-20,2.710505431213761e-20,3.31576320045449e-33,1.2669007915422286e-33,-9.131238704037203e-21,0.0020000000949949026,-2.433178861989792e-18,-0.0010000000474974513,-0.0013333333190530539,-1.4210854356205618e-19,3.806478900803778e-19,-6.776263578034403e-21,3.6232793331325376e-19,4.9652881378733424e-34,2.710505431213761e-20,0.0006666666595265269,7.105427178102809e-20,1.9543381530977565e-33,7.705883421838426e-34,1.3108005464286485e-33,0.0016666667070239782,-2.040414688790679e-18,-0.0008333333535119891,-5.412188464206761e-19,-0.0008333333535119891,3.172065750669815e-19,2.710505431213761e-20,2.0301221062780757e-19,4.7826713831938026e-20,2.710505431213761e-20,7.105427178102809e-20,0.00041666667675599456,1.4324103961380067e-33,-5.421010862427522e-20,2.6723491405203385e-20,0.0016666667070239782,-6.336727511074244e-18,-2.205484247658266e-32,-0.004999999888241291,-7.859956207262574e-18,1.1102229998097382e-18,1.1981846060355232e-33,5.237415540531963e-19,1.3842621475283258e-33,3.31576320045449e-33,1.9543381530977565e-33,1.4324103961380067e-33,0.0016666667070239782,1.0105497005510531e-18,1.5860329011843016e-18,0.0020000000949949026,-2.2577067639022337e-18,1.0842021724855044e-19,-0.0013333333190530539,-0.0010000000474974513,3.806478900803778e-19,4.014427084073348e-34,3.181582205123296e-19,-6.138497632233215e-20,1.2669007915422286e-33,7.705883421838426e-34,-5.421010862427522e-20,1.0105497005510531e-18,0.0006666666595265269,-1.5663751865715262e-19,0.0011904762359336019,-4.007906789139908e-18,-1.5577617160789203e-20,-5.532389077546562e-18,-0.0023809524718672037,6.738497096204646e-19,7.406098303672724e-22,4.350261748629427e-19,-6.427050783972459e-21,-9.131238704037203e-21,1.3108005464286485e-33,2.6723491405203385e-20,1.5860329011843016e-18,-1.5663751865715262e-19,0.0005952381179668009,6.0,5.0,4.0,6.0,0.05494897812604904,-0.011985544115304947,-0.013809523545205593,-0.016309523954987526,-0.011985544115304947,0.0007440476329065859,0.0011904762359336019,0.0014285714132711291,0.0010204081190750003,0.0009920635493472219,0.0016666667070239782,0.0011904762359336019,0.0013888889225199819,0.0014285714132711291,0.0007440476329065859,-0.011985544115304947,0.008886479772627354,0.0011904762359336019,0.0014285714132711291,0.0010204081190750003,-0.0011160714784637094,-0.0004761904710903764,-0.0005714285653084517,-0.0004081632650922984,-3.198396408832238e-18,-1.6963506707580487e-18,-1.2088295462709595e-18,-4.55878508886246e-18,-1.4659424062635468e-18,-2.035638961524104e-18,-0.013809523545205593,0.0011904762359336019,0.012857142835855484,0.0016666667070239782,0.0011904762359336019,-3.74049749507499e-18,-0.0005952381179668009,1.1163434384089887e-19,6.776263578034403e-20,-0.0019841270986944437,-0.0008333333535119891,-0.0005952381179668009,-1.5664176337525106e-32,-2.0328790734103208e-19,-3.1217431195059005e-20,-0.016309523954987526,0.0014285714132711291,0.0016666667070239782,0.020595237612724304,0.0014285714132711291,-4.887009115152583e-18,1.406369634029302e-19,-0.0009523809421807528,2.91357019365986e-20,-0.0,-0.0011111111380159855,-1.6892731583406802e-19,-0.004166666883975267,-0.0009523809421807528,-4.833097928922169e-19,-0.011985544115304947,0.0010204081190750003,0.0011904762359336019,0.0014285714132711291,0.008886479772627354,-3.1170812458958252e-18,1.4948019623536977e-19,1.4680209560465277e-19,-0.0004081632650922984,-5.936367002267933e-20,3.4360591506964066e-20,-0.0004761904710903764,-1.2802088569614754e-32,-0.0005714285653084517,-0.0011160714784637094,0.0007440476329065859,-0.0011160714784637094,-3.74049749507499e-18,-4.887009115152583e-18,-3.1170812458958252e-18,0.00022321428696159273,1.7618285302889447e-19,3.3881317890172014e-19,1.0842021724855044e-19,5.480198737182988e-19,3.172065750669815e-19,2.2657611766230274e-19,9.251859021064995e-19,2.718913463646421e-19,3.876645271745413e-19,0.0011904762359336019,-0.0004761904710903764,-0.0005952381179668009,1.406369634029302e-19,1.4948019623536977e-19,1.7618285302889447e-19,0.0002380952355451882,-7.251781924092435e-20,-5.514758860163337e-20,2.3475716656499947e-19,2.0328790734103208e-20,-0.0,8.037316809117654e-34,2.2032866885200526e-34,-2.139660578010744e-21,0.0014285714132711291,-0.0005714285653084517,1.1163434384089887e-19,-0.0009523809421807528,1.4680209560465277e-19,3.3881317890172014e-19,-7.251781924092435e-20,0.0003809523768723011,-5.648468728773412e-20,7.342607912976337e-34,4.644013940544894e-20,3.2650531088439858e-34,-4.4762817455996005e-20,-3.7269179876137855e-21,5.356492657827e-34,0.0010204081190750003,-0.0004081632650922984,6.776263578034403e-20,2.91357019365986e-20,-0.0004081632650922984,1.0842021724855044e-19,-5.514758860163337e-20,-5.648468728773412e-20,0.00016326530021615326,-1.343125129032763e-21,1.5798644075051544e-34,3.0379571551550947e-20,5.180476154115786e-34,4.4830407159329537e-20,4.093919446151524e-20,0.0009920635493472219,-3.198396408832238e-18,-0.0019841270986944437,-0.0,-5.936367002267933e-20,5.480198737182988e-19,2.3475716656499947e-19,7.342607912976337e-34,-1.343125129032763e-21,0.0004960317746736109,2.710505431213761e-20,2.710505431213761e-20,2.347800356888962e-33,6.98149604840373e-34,8.718862309543418e-22,0.0016666667070239782,-1.6963506707580487e-18,-0.0008333333535119891,-0.0011111111380159855,3.4360591506964066e-20,3.172065750669815e-19,2.0328790734103208e-20,4.644013940544894e-20,1.5798644075051544e-34,2.710505431213761e-20,0.0005555555690079927,-1.7180295753482033e-20,1.2772302644790871e-33,3.709492599621767e-34,5.534647091888772e-34,0.0011904762359336019,-1.2088295462709595e-18,-0.0005952381179668009,-1.6892731583406802e-19,-0.0004761904710903764,2.2657611766230274e-19,-0.0,3.2650531088439858e-34,3.0379571551550947e-20,2.710505431213761e-20,-1.7180295753482033e-20,0.0002380952355451882,9.39120161122684e-34,8.131516293641283e-20,1.3109550935413919e-20,0.0013888889225199819,-4.55878508886246e-18,-1.5664176337525106e-32,-0.004166666883975267,-1.2802088569614754e-32,9.251859021064995e-19,8.037316809117654e-34,-4.4762817455996005e-20,5.180476154115786e-34,2.347800356888962e-33,1.2772302644790871e-33,9.39120161122684e-34,0.0013888889225199819,1.038777102817459e-33,1.6141128027583464e-33,0.0014285714132711291,-1.4659424062635468e-18,-2.0328790734103208e-19,-0.0009523809421807528,-0.0005714285653084517,2.718913463646421e-19,2.2032866885200526e-34,-3.7269179876137855e-21,4.4830407159329537e-20,6.98149604840373e-34,3.709492599621767e-34,8.131516293641283e-20,1.038777102817459e-33,0.0003809523768723011,1.933239223267656e-19,0.0007440476329065859,-2.035638961524104e-18,-3.1217431195059005e-20,-4.833097928922169e-19,-0.0011160714784637094,3.876645271745413e-19,-2.139660578010744e-21,5.356492657827e-34,4.093919446151524e-20,8.718862309543418e-22,5.534647091888772e-34,1.3109550935413919e-20,1.6141128027583464e-33,1.933239223267656e-19,0.00022321428696159273,6.0,5.0,4.0,7.0,0.04833900183439255,-0.010382653214037418,-0.011964285746216774,-0.01413265336304903,-0.009175170212984085,0.0006377550889737904,0.0010204081190750003,0.0012244897661730647,0.0007653061184100807,0.0008503401186317205,0.0014285714132711291,0.0008928571478463709,0.0011904762359336019,0.0010714285308495164,0.0004960317746736109,-0.010382653214037418,0.007660714443773031,0.0010204081190750003,0.0012244897661730647,0.0007653061184100807,-0.0009566326625645161,-0.0004081632650922984,-0.0004897959297522902,-0.0003061224415432662,-5.495073719343376e-18,-3.7549466860150666e-18,-2.3665571150693118e-18,-2.6872960356952302e-19,-1.2250622420092767e-18,-3.1781791323844647e-19,-0.011964285746216774,0.0010204081190750003,0.011084184050559998,0.0014285714132711291,0.0008928571478463709,-5.719166459861036e-18,-0.0005102040595375001,-1.5798900511603297e-18,-1.0083490899289324e-18,-0.001700680237263441,-0.0007142857066355646,-0.00044642857392318547,1.1706433736779084e-18,1.1421959086291738e-18,4.855968955871377e-19,-0.01413265336304903,0.0012244897661730647,0.0014285714132711291,0.01775510236620903,0.0010714285308495164,-1.8305331179918335e-18,-1.833285768275257e-18,-0.0008163265301845968,-1.2249101441741435e-18,2.581169538586501e-18,-0.0009523809421807528,-5.203693454909708e-19,-0.0035714285913854837,-0.0007142857066355646,2.977904812036025e-20,-0.009175170212984085,0.0007653061184100807,0.0008928571478463709,0.0010714285308495164,0.005637755151838064,-1.1650657982050399e-18,-1.1436072855493424e-18,-1.2317213561330583e-18,-0.00025510202976875007,1.721798778905666e-18,-4.39054182554558e-19,-0.00029761905898340046,-5.875874379343135e-19,-0.0003571428533177823,-0.0005952381179668009,0.0006377550889737904,-0.0009566326625645161,-5.719166459861036e-18,-1.8305331179918335e-18,-1.1650657982050399e-18,0.00019132652960252017,2.168404344971009e-19,5.421010862427522e-20,4.0657581468206416e-20,7.889704517222125e-19,4.701454719373769e-19,2.9384091996086056e-19,4.9563528162009426e-20,1.189524624189438e-19,3.369562553617666e-20,0.0010204081190750003,-0.0004081632650922984,-0.0005102040595375001,-1.833285768275257e-18,-1.1436072855493424e-18,2.168404344971009e-19,0.0002040816325461492,2.181999058338318e-19,1.3685584327476788e-19,5.792841472467179e-19,3.4028103674808963e-19,2.1267564473638175e-19,1.3594567318232106e-19,5.437827185786784e-20,4.531522547116511e-20,0.0012244897661730647,-0.0004897959297522902,-1.5798900511603297e-18,-0.0008163265301845968,-1.2317213561330583e-18,5.421010862427522e-20,2.181999058338318e-19,0.00032653060043230653,1.5001898808217442e-19,7.768324551123977e-20,6.553810800629312e-20,1.3594567318232106e-19,-4.0144825131181866e-19,7.566946138528235e-20,5.1357256395633595e-20,0.0007653061184100807,-0.0003061224415432662,-1.0083490899289324e-18,-1.2249101441741435e-18,-0.00025510202976875007,4.0657581468206416e-20,1.3685584327476788e-19,1.5001898808217442e-19,0.0001020408162730746,4.8552028444524855e-20,1.3594567318232106e-19,4.404571325722362e-20,5.664402941557569e-20,8.163479715733069e-20,-3.137688964517421e-20,0.0008503401186317205,-5.495073719343376e-18,-0.001700680237263441,2.581169538586501e-18,1.721798778905666e-18,7.889704517222125e-19,5.792841472467179e-19,7.768324551123977e-20,4.8552028444524855e-20,0.00042517005931586027,-8.48761366993624e-20,-5.304758382151437e-20,-3.776268713869693e-19,-3.398641894181512e-19,-1.5734453836103525e-19,0.0014285714132711291,-3.7549466860150666e-18,-0.0007142857066355646,-0.0009523809421807528,-4.39054182554558e-19,4.701454719373769e-19,3.4028103674808963e-19,6.553810800629312e-20,1.3594567318232106e-19,-8.48761366993624e-20,0.0004761904710903764,4.9594996568203386e-20,5.09220708945109e-34,6.579561009901492e-34,1.8657446336251347e-34,0.0008928571478463709,-2.3665571150693118e-18,-0.00044642857392318547,-5.203693454909708e-19,-0.00029761905898340046,2.9384091996086056e-19,2.1267564473638175e-19,1.3594567318232106e-19,4.404571325722362e-20,-5.304758382151437e-20,4.9594996568203386e-20,0.00014880952949170023,2.0763932212924887e-34,2.710505431213761e-20,1.0164395367051604e-20,0.0011904762359336019,-2.6872960356952302e-19,1.1706433736779084e-18,-0.0035714285913854837,-5.875874379343135e-19,4.9563528162009426e-20,1.3594567318232106e-19,-4.0144825131181866e-19,5.664402941557569e-20,-3.776268713869693e-19,5.09220708945109e-34,2.0763932212924887e-34,0.0011904762359336019,2.9731823215966863e-19,-2.2028234918180537e-20,0.0010714285308495164,-1.2250622420092767e-18,1.1421959086291738e-18,-0.0007142857066355646,-0.0003571428533177823,1.189524624189438e-19,5.437827185786784e-20,7.566946138528235e-20,8.163479715733069e-20,-3.398641894181512e-19,6.579561009901492e-34,2.710505431213761e-20,2.9731823215966863e-19,0.0002380952355451882,-6.006680585509208e-20,0.0004960317746736109,-3.1781791323844647e-19,4.855968955871377e-19,2.977904812036025e-20,-0.0005952381179668009,3.369562553617666e-20,4.531522547116511e-20,5.1357256395633595e-20,-3.137688964517421e-20,-1.5734453836103525e-19,1.8657446336251347e-34,1.0164395367051604e-20,-2.2028234918180537e-20,-6.006680585509208e-20,9.920635056914762e-05,6.0,5.0,4.0,8.0,0.04315972328186035,-0.009159225970506668,-0.010555555112659931,-0.012470237910747528,-0.0072519839741289616,0.0005580357392318547,0.0008928571478463709,0.0010714285308495164,0.0005952381179668009,0.0007440476329065859,0.0012499999720603228,0.0006944444612599909,0.0010416667209938169,0.0008333333535119891,0.00034722223062999547,-0.009159225970506668,0.006732887122780085,0.0008928571478463709,0.0010714285308495164,0.0005952381179668009,-0.0008370535797439516,-0.0003571428533177823,-0.00042857142398133874,-0.0002380952355451882,1.0620756080875938e-18,5.947623508688102e-19,3.304235253882952e-19,1.734723475976807e-18,4.452489898607559e-19,5.456747649829227e-19,-0.010555555112659931,0.0008928571478463709,0.009742063470184803,0.0012499999720603228,0.0006944444612599909,1.531276956753318e-18,-0.00044642857392318547,-1.5916437792553553e-33,-6.434424191773403e-34,-0.0014880952658131719,-0.0006249999860301614,-0.00034722223062999547,-3.173443528006543e-33,4.1504614415460717e-20,-6.500661002554835e-34,-0.012470237910747528,0.0010714285308495164,0.0012499999720603228,0.015605159103870392,0.0008333333535119891,1.9913208990501973e-18,-1.2936398901100778e-33,-0.0007142857066355646,4.874075163998339e-20,-2.5266404347650493e-33,-0.0008333333535119891,4.1504614415460717e-20,-0.0031250000465661287,-0.0005555555690079927,9.152748308020423e-20,-0.0072519839741289616,0.0005952381179668009,0.0006944444612599909,0.0008333333535119891,0.00380810652859509,1.0365183120991195e-18,-6.733628370853465e-34,-1.0773805209694552e-33,-0.0001700680295471102,-1.3151617223056953e-33,-7.364906030620978e-34,-0.00019841270113829523,-2.1480974583376866e-33,-0.0002380952355451882,-0.00034722223062999547,0.0005580357392318547,-0.0008370535797439516,1.531276956753318e-18,1.9913208990501973e-18,1.0365183120991195e-18,0.00016741071885917336,-1.0875654371573568e-19,-1.7401046994517708e-19,-8.286212639120624e-20,-2.1241512161751876e-19,-1.189524624189438e-19,-6.608470637012875e-20,-3.4694470036524025e-19,-7.930164376674537e-20,-8.26058813470738e-20,0.0008928571478463709,-0.0003571428533177823,-0.00044642857392318547,-1.2936398901100778e-33,-6.733628370853465e-34,-1.0875654371573568e-19,0.00017857142665889114,1.1304399712015472e-34,5.383047235924193e-35,1.3799316447069957e-34,7.727617210359176e-35,4.2931206086471143e-35,2.253888276491846e-34,5.151744615582167e-35,5.366400904301856e-35,0.0010714285308495164,-0.00042857142398133874,-1.5916437792553553e-33,-0.0007142857066355646,-1.0773805209694552e-33,-1.7401046994517708e-19,1.1304399712015472e-34,0.0002857142826542258,8.61287580706745e-35,2.207890631531193e-34,1.23641870773972e-34,6.868992629452272e-35,3.606221288304702e-34,8.242791384931467e-35,8.586241217294229e-35,0.0005952381179668009,-0.0002380952355451882,-6.434424191773403e-34,4.874075163998339e-20,-0.0001700680295471102,-8.286212639120624e-20,5.383047235924193e-35,8.61287580706745e-35,6.80272132740356e-05,1.0513764966717286e-34,5.887707968101948e-35,0.0,1.7172482434588457e-34,-1.392592973238974e-20,-3.789867240022638e-20,0.0007440476329065859,1.0620756080875938e-18,-0.0014880952658131719,-2.5266404347650493e-33,-1.3151617223056953e-33,-2.1241512161751876e-19,1.3799316447069957e-34,2.207890631531193e-34,1.0513764966717286e-34,0.00037202381645329297,1.5093001933503877e-34,8.38500094661952e-35,4.402125783961174e-34,1.0062000906354684e-34,1.0481251757246252e-34,0.0012499999720603228,5.947623508688102e-19,-0.0006249999860301614,-0.0008333333535119891,-7.364906030620978e-34,-1.189524624189438e-19,7.727617210359176e-35,1.23641870773972e-34,5.887707968101948e-35,1.5093001933503877e-34,0.00041666667675599456,4.6956005760246795e-35,2.465190273714364e-34,5.634720691229615e-35,5.869501007016775e-35,0.0006944444612599909,3.304235253882952e-19,-0.00034722223062999547,4.1504614415460717e-20,-0.00019841270113829523,-6.608470637012875e-20,4.2931206086471143e-35,6.868992629452272e-35,0.0,8.38500094661952e-35,4.6956005760246795e-35,9.920635056914762e-05,1.3695502158381858e-34,-1.1858461261560205e-20,2.461006549844628e-36,0.0010416667209938169,1.734723475976807e-18,-3.173443528006543e-33,-0.0031250000465661287,-2.1480974583376866e-33,-3.4694470036524025e-19,2.253888276491846e-34,3.606221288304702e-34,1.7172482434588457e-34,4.402125783961174e-34,2.465190273714364e-34,1.3695502158381858e-34,0.0010416667209938169,1.643460259005823e-34,1.7119377410991397e-34,0.0008333333535119891,4.452489898607559e-19,4.1504614415460717e-20,-0.0005555555690079927,-0.0002380952355451882,-7.930164376674537e-20,5.151744615582167e-35,8.242791384931467e-35,-1.392592973238974e-20,1.0062000906354684e-34,5.634720691229615e-35,-1.1858461261560205e-20,1.643460259005823e-34,0.00015873015217948705,-2.615070922068876e-20,0.00034722223062999547,5.456747649829227e-19,-6.500661002554835e-34,9.152748308020423e-20,-0.00034722223062999547,-8.26058813470738e-20,5.366400904301856e-35,8.586241217294229e-35,-3.789867240022638e-20,1.0481251757246252e-34,5.869501007016775e-35,2.461006549844628e-36,1.7119377410991397e-34,-2.615070922068876e-20,4.960317528457381e-05,6.0,5.0,5.0,3.0,0.07904762029647827,-0.018333332613110542,-0.021111110225319862,-0.021111110225319862,-0.030476190149784088,0.0011904762359336019,0.0019047618843615055,0.0019047618843615055,0.0028571428265422583,0.0015873016091063619,0.002222222276031971,0.0033333334140479565,0.0015873016091063619,0.0033333334140479565,0.0033333334140479565,-0.018333332613110542,0.013880952261388302,0.0019047618843615055,0.0019047618843615055,0.0028571428265422583,-0.0017857142956927419,-0.0007619047537446022,-0.0007619047537446022,-0.0011428571306169033,2.8731357570865868e-18,1.2226655895819808e-18,1.8879930124476764e-18,2.7647155398380363e-18,1.9183224167875457e-18,8.865417402877931e-18,-0.021111110225319862,0.0019047618843615055,0.020079365000128746,0.002222222276031971,0.0033333334140479565,3.2526065174565133e-18,-0.0009523809421807528,6.320498692745048e-20,7.195960803677031e-20,-0.0031746032182127237,-0.0011111111380159855,-0.0016666667070239782,-3.632470279090282e-20,-0.0,-1.437376565896643e-32,-0.021111110225319862,0.0019047618843615055,0.002222222276031971,0.020079365000128746,0.0033333334140479565,3.1378389297775372e-18,1.639803363313005e-19,-0.0009523809421807528,7.195960803677031e-20,-1.0842021724855044e-19,-0.0011111111380159855,-5.451254007339139e-20,-0.0031746032182127237,-0.0016666667070239782,-1.437376565896643e-32,-0.030476190149784088,0.0028571428265422583,0.0033333334140479565,0.0033333334140479565,0.06380952149629593,5.421010862427522e-18,2.6104375151041e-19,2.849244040960276e-19,-0.0028571428265422583,-1.6638902165156955e-19,-8.131516293641283e-20,-0.0033333334140479565,-1.0842021724855044e-19,-0.0033333334140479565,-0.019999999552965164,0.0011904762359336019,-0.0017857142956927419,3.2526065174565133e-18,3.1378389297775372e-18,5.421010862427522e-18,0.0003571428533177823,-2.710505431213761e-19,-2.710505431213761e-19,-3.7947076036992655e-19,-4.58151714946876e-19,-2.1147105004465433e-19,-3.172065750669815e-19,-4.487193744219338e-19,-3.172065750669815e-19,-1.5860329011843016e-18,0.0019047618843615055,-0.0007619047537446022,-0.0009523809421807528,1.639803363313005e-19,2.6104375151041e-19,-2.710505431213761e-19,0.0003809523768723011,-5.130639448148439e-21,-5.563774319777219e-21,-2.8538392877569497e-19,-6.776263578034403e-20,-1.2197274440461925e-19,-3.226219060097224e-21,-1.5944149654771651e-21,1.209644849436575e-33,0.0019047618843615055,-0.0007619047537446022,6.320498692745048e-20,-0.0009523809421807528,2.849244040960276e-19,-2.710505431213761e-19,-5.130639448148439e-21,0.0003809523768723011,-5.563774319777219e-21,-4.7381878878285596e-21,-1.4892529052249166e-20,1.7789958838768197e-23,-2.5827887446355736e-19,-1.3552527156068805e-19,1.209644849436575e-33,0.0028571428265422583,-0.0011428571306169033,7.195960803677031e-20,7.195960803677031e-20,-0.0028571428265422583,-3.7947076036992655e-19,-5.563774319777219e-21,-5.563774319777219e-21,0.0011428571306169033,5.266214691683848e-34,2.533425424892194e-34,-5.805017183343048e-20,5.296307347064899e-34,-5.805017183343048e-20,-9.352527935588464e-19,0.0015873016091063619,2.8731357570865868e-18,-0.0031746032182127237,-1.0842021724855044e-19,-1.6638902165156955e-19,-4.58151714946876e-19,-2.8538392877569497e-19,-4.7381878878285596e-21,5.266214691683848e-34,0.0007936508045531809,1.0842021724855044e-19,5.421010862427522e-20,-1.7235878413236475e-20,-5.314716618906681e-21,2.012400227188685e-33,0.002222222276031971,1.2226655895819808e-18,-0.0011111111380159855,-0.0011111111380159855,-8.131516293641283e-20,-2.1147105004465433e-19,-6.776263578034403e-20,-1.4892529052249166e-20,2.533425424892194e-34,1.0842021724855044e-19,0.0005555555690079927,2.710505431213761e-20,5.96535128168482e-20,1.3552527156068805e-20,9.39120161122684e-34,0.0033333334140479565,1.8879930124476764e-18,-0.0016666667070239782,-5.451254007339139e-20,-0.0033333334140479565,-3.172065750669815e-19,-1.2197274440461925e-19,1.7789958838768197e-23,-5.805017183343048e-20,5.421010862427522e-20,2.710505431213761e-20,0.0016666667070239782,5.929986069226491e-23,-7.52316384526264e-37,1.4218127635523668e-33,0.0015873016091063619,2.7647155398380363e-18,-3.632470279090282e-20,-0.0031746032182127237,-1.0842021724855044e-19,-4.487193744219338e-19,-3.226219060097224e-21,-2.5827887446355736e-19,5.296307347064899e-34,-1.7235878413236475e-20,5.96535128168482e-20,5.929986069226491e-23,0.0007936508045531809,1.7446932254059673e-20,2.012400227188685e-33,0.0033333334140479565,1.9183224167875457e-18,-0.0,-0.0016666667070239782,-0.0033333334140479565,-3.172065750669815e-19,-1.5944149654771651e-21,-1.3552527156068805e-19,-5.805017183343048e-20,-5.314716618906681e-21,1.3552527156068805e-20,-7.52316384526264e-37,1.7446932254059673e-20,0.0016666667070239782,1.4218127635523668e-33,0.0033333334140479565,8.865417402877931e-18,-1.437376565896643e-32,-1.437376565896643e-32,-0.019999999552965164,-1.5860329011843016e-18,1.209644849436575e-33,1.209644849436575e-33,-9.352527935588464e-19,2.012400227188685e-33,9.39120161122684e-34,1.4218127635523668e-33,2.012400227188685e-33,1.4218127635523668e-33,0.009999999776482582,6.0,5.0,5.0,4.0,0.06369047611951828,-0.014178571291267872,-0.016333334147930145,-0.016333334147930145,-0.019285714253783226,0.0008928571478463709,0.0014285714132711291,0.0014285714132711291,0.001714285695925355,0.0011904762359336019,0.0016666667070239782,0.0020000000949949026,0.0011904762359336019,0.0020000000949949026,0.0016666667070239782,-0.014178571291267872,0.010582142509520054,0.0014285714132711291,0.0014285714132711291,0.001714285695925355,-0.0013392857508733869,-0.0005714285653084517,-0.0005714285653084517,-0.0006857143016532063,-4.065758146820642e-18,-2.029253747580654e-18,-2.4196263348337232e-18,-4.0115480381963664e-18,-2.3925212805215856e-18,-6.336727511074244e-18,-0.016333334147930145,0.0014285714132711291,0.015309523791074753,0.0016666667070239782,0.0020000000949949026,-4.716279450311944e-18,-0.0007142857066355646,2.207516449324585e-20,-2.5525178633240424e-18,-0.0023809524718672037,-0.0008333333535119891,-0.0010000000474974513,-2.2033446802274475e-20,2.710505431213761e-20,-2.2284733906772975e-32,-0.016333334147930145,0.0014285714132711291,0.0016666667070239782,0.015309523791074753,0.0020000000949949026,-4.669104099207126e-18,4.137949365428927e-20,-0.0007142857066355646,-2.5525178633240424e-18,-5.421010862427522e-20,-0.0008333333535119891,-1.468687127245317e-20,-0.0023809524718672037,-0.0010000000474974513,-2.2284733906772975e-32,-0.019285714253783226,0.001714285695925355,0.0020000000949949026,0.0020000000949949026,0.024523809552192688,-5.366800753803247e-18,1.6420814704187642e-19,1.9131320135401403e-19,-0.0011428571306169033,-1.0823621092128802e-18,-4.951123677636415e-19,-0.0013333333190530539,-9.75781955236954e-19,-0.0013333333190530539,-0.004999999888241291,0.0008928571478463709,-0.0013392857508733869,-4.716279450311944e-18,-4.669104099207126e-18,-5.366800753803247e-18,0.0002678571327123791,2.981555974335137e-19,2.981555974335137e-19,2.439454888092385e-19,6.743111730046926e-19,3.172065750669815e-19,3.806478900803778e-19,6.73381060104665e-19,3.806478900803778e-19,1.1102229998097382e-18,0.0014285714132711291,-0.0005714285653084517,-0.0007142857066355646,4.137949365428927e-20,1.6420814704187642e-19,2.981555974335137e-19,0.0002857142826542258,-4.347475183940889e-20,-5.484123450695611e-20,2.150006394119409e-20,2.710505431213761e-20,-1.3552527156068805e-20,3.010868969188222e-21,3.9284635495396985e-34,1.1981846060355232e-33,0.0014285714132711291,-0.0005714285653084517,2.207516449324585e-20,-0.0007142857066355646,1.9131320135401403e-19,2.981555974335137e-19,-4.347475183940889e-20,0.0002857142826542258,-5.484123450695611e-20,4.871705562154219e-22,4.22462626139712e-20,3.851859888774472e-34,-5.6049895631499536e-21,-2.710505431213761e-20,1.1981846060355232e-33,0.001714285695925355,-0.0006857143016532063,-2.5525178633240424e-18,-2.5525178633240424e-18,-0.0011428571306169033,2.439454888092385e-19,-5.484123450695611e-20,-5.484123450695611e-20,0.0004571428580675274,4.350261748629427e-19,2.0301221062780757e-19,3.6232793331325376e-19,4.350261748629427e-19,3.6232793331325376e-19,5.237415540531963e-19,0.0011904762359336019,-4.065758146820642e-18,-0.0023809524718672037,-5.421010862427522e-20,-1.0823621092128802e-18,6.743111730046926e-19,2.150006394119409e-20,4.871705562154219e-22,4.350261748629427e-19,0.0005952381179668009,2.710505431213761e-20,0.0,-1.129845084869708e-22,1.3100565870742726e-33,3.31576320045449e-33,0.0016666667070239782,-2.029253747580654e-18,-0.0008333333535119891,-0.0008333333535119891,-4.951123677636415e-19,3.172065750669815e-19,2.710505431213761e-20,4.22462626139712e-20,2.0301221062780757e-19,2.710505431213761e-20,0.00041666667675599456,7.343435636226585e-21,7.498878544520498e-21,-1.3552527156068805e-20,1.547356111233164e-33,0.0020000000949949026,-2.4196263348337232e-18,-0.0010000000474974513,-1.468687127245317e-20,-0.0013333333190530539,3.806478900803778e-19,-1.3552527156068805e-20,3.851859888774472e-34,3.6232793331325376e-19,0.0,7.343435636226585e-21,0.0006666666595265269,1.310911300037015e-33,8.241625992485222e-34,1.9543381530977565e-33,0.0011904762359336019,-4.0115480381963664e-18,-2.2033446802274475e-20,-0.0023809524718672037,-9.75781955236954e-19,6.73381060104665e-19,3.010868969188222e-21,-5.6049895631499536e-21,4.350261748629427e-19,-1.129845084869708e-22,7.498878544520498e-21,1.310911300037015e-33,0.0005952381179668009,-3.240144330670063e-20,3.31576320045449e-33,0.0020000000949949026,-2.3925212805215856e-18,2.710505431213761e-20,-0.0010000000474974513,-0.0013333333190530539,3.806478900803778e-19,3.9284635495396985e-34,-2.710505431213761e-20,3.6232793331325376e-19,1.3100565870742726e-33,-1.3552527156068805e-20,8.241625992485222e-34,-3.240144330670063e-20,0.0006666666595265269,1.9543381530977565e-33,0.0016666667070239782,-6.336727511074244e-18,-2.2284733906772975e-32,-2.2284733906772975e-32,-0.004999999888241291,1.1102229998097382e-18,1.1981846060355232e-33,1.1981846060355232e-33,5.237415540531963e-19,3.31576320045449e-33,1.547356111233164e-33,1.9543381530977565e-33,3.31576320045449e-33,1.9543381530977565e-33,0.0016666667070239782,6.0,5.0,5.0,5.0,0.05342857167124748,-0.01157142873853445,-0.013333333656191826,-0.013333333656191826,-0.013333333656191826,0.0007142857066355646,0.0011428571306169033,0.0011428571306169033,0.0011428571306169033,0.0009523809421807528,0.0013333333190530539,0.0013333333190530539,0.0009523809421807528,0.0013333333190530539,0.0009523809421807528,-0.01157142873853445,0.008557142689824104,0.0011428571306169033,0.0011428571306169033,0.0011428571306169033,-0.0010714285308495164,-0.0004571428580675274,-0.0004571428580675274,-0.0004571428580675274,1.4094628242311558e-18,5.010229868306392e-19,5.017600047564239e-19,1.5178830414797062e-18,5.045661115869335e-19,1.4700366401029546e-18,-0.013333333656191826,0.0011428571306169033,0.012380952015519142,0.0013333333190530539,0.0013333333190530539,2.032879073410321e-18,-0.0005714285653084517,-6.051142189668787e-20,-6.776263578034403e-20,-0.0019047618843615055,-0.0006666666595265269,-0.0006666666595265269,3.4498229837248915e-20,6.056260107176049e-22,3.894404451756014e-20,-0.013333333656191826,0.0011428571306169033,0.0013333333190530539,0.012380952015519142,0.0013333333190530539,2.0800035529074668e-18,7.974200435183049e-21,-0.0005714285653084517,-7.032326383938142e-20,-0.0,-0.0006666666595265269,-1.3552527156068805e-20,-0.0019047618843615055,-0.0006666666595265269,-6.177349917863919e-20,-0.013333333656191826,0.0011428571306169033,0.0013333333190530539,0.0013333333190530539,0.012380952015519142,2.087089182034596e-18,1.9135106102290967e-20,5.582578138428595e-21,-0.0005714285653084517,1.2409528339408178e-20,2.023473932910365e-20,-0.0006666666595265269,-0.0,-0.0006666666595265269,-0.0019047618843615055,0.0007142857066355646,-0.0010714285308495164,2.032879073410321e-18,2.0800035529074668e-18,2.087089182034596e-18,0.00021428571199066937,-1.7618285302889447e-19,-1.8973538018496328e-19,-1.8973538018496328e-19,-2.789866690145747e-19,-1.268826300267926e-19,-1.268826300267926e-19,-2.869742610515106e-19,-1.268826300267926e-19,-2.705947149050711e-19,0.0011428571306169033,-0.0004571428580675274,-0.0005714285653084517,7.974200435183049e-21,1.9135106102290967e-20,-1.7618285302889447e-19,0.0002285714290337637,-1.4054787346601882e-20,-1.3484021414830356e-20,-8.600025576477636e-21,2.0328790734103208e-20,2.0328790734103208e-20,-3.102256069055601e-21,1.089267363209035e-34,-5.9960076937852865e-21,0.0011428571306169033,-0.0004571428580675274,-6.051142189668787e-20,-0.0005714285653084517,5.582578138428595e-21,-1.8973538018496328e-19,-1.4054787346601882e-20,0.0002285714290337637,-1.4041006388349778e-20,4.7319436435560645e-22,4.615353101672212e-20,6.414678617701109e-22,-3.5705079888615247e-20,1.3552527156068805e-20,2.6021749521564595e-22,0.0011428571306169033,-0.0004571428580675274,-6.776263578034403e-20,-7.032326383938142e-20,-0.0005714285653084517,-1.8973538018496328e-19,-1.3484021414830356e-20,-1.4041006388349778e-20,0.0002285714290337637,2.375747537576825e-21,2.1277146238201544e-22,4.535632277667707e-20,5.191333825594517e-22,5.137100504214302e-20,-5.3072360465799746e-20,0.0009523809421807528,1.4094628242311558e-18,-0.0019047618843615055,-0.0,1.2409528339408178e-20,-2.789866690145747e-19,-8.600025576477636e-21,4.7319436435560645e-22,2.375747537576825e-21,0.0004761904710903764,-0.0,0.0,3.632171072353085e-21,1.609957062886205e-34,-6.310093180691786e-21,0.0013333333190530539,5.010229868306392e-19,-0.0006666666595265269,-0.0006666666595265269,2.023473932910365e-20,-1.268826300267926e-19,2.0328790734103208e-20,4.615353101672212e-20,2.1277146238201544e-22,-0.0,0.00033333332976326346,-5.1496637944435914e-21,-2.3409494062999114e-20,-6.776263578034403e-21,7.0923820794005145e-22,0.0013333333190530539,5.017600047564239e-19,-0.0006666666595265269,-1.3552527156068805e-20,-0.0006666666595265269,-1.268826300267926e-19,2.0328790734103208e-20,6.414678617701109e-22,4.535632277667707e-20,0.0,-5.1496637944435914e-21,0.00033333332976326346,2.138226138584239e-21,6.4734504464578554e-21,1.0382023435819395e-21,0.0009523809421807528,1.5178830414797062e-18,3.4498229837248915e-20,-0.0019047618843615055,-0.0,-2.869742610515106e-19,-3.102256069055601e-21,-3.5705079888615247e-20,5.191333825594517e-22,3.632171072353085e-21,-2.3409494062999114e-20,2.138226138584239e-21,0.0004761904710903764,-4.673285309795474e-21,3.743446251787074e-21,0.0013333333190530539,5.045661115869335e-19,6.056260107176049e-22,-0.0006666666595265269,-0.0006666666595265269,-1.268826300267926e-19,1.089267363209035e-34,1.3552527156068805e-20,5.137100504214302e-20,1.609957062886205e-34,-6.776263578034403e-21,6.4734504464578554e-21,-4.673285309795474e-21,0.00033333332976326346,2.1710243749377852e-20,0.0009523809421807528,1.4700366401029546e-18,3.894404451756014e-20,-6.177349917863919e-20,-0.0019047618843615055,-2.705947149050711e-19,-5.9960076937852865e-21,2.6021749521564595e-22,-5.3072360465799746e-20,-6.310093180691786e-21,7.0923820794005145e-22,1.0382023435819395e-21,3.743446251787074e-21,2.1710243749377852e-20,0.0004761904710903764,6.0,5.0,5.0,6.0,0.0460544228553772,-0.009778911247849464,-0.011269841343164444,-0.011269841343164444,-0.009778911247849464,0.0005952381179668009,0.0009523809421807528,0.0009523809421807528,0.0008163265301845968,0.0007936508045531809,0.0011111111380159855,0.0009523809421807528,0.0007936508045531809,0.0009523809421807528,0.0005952381179668009,-0.009778911247849464,0.007185373920947313,0.0009523809421807528,0.0009523809421807528,0.0008163265301845968,-0.0008928571478463709,-0.0003809523768723011,-0.0003809523768723011,-0.00032653060043230653,1.3823577699190182e-18,6.500136213903482e-19,3.119254404461367e-19,1.328147661294743e-18,3.068646460609607e-19,9.91540262893972e-19,-0.011269841343164444,0.0009523809421807528,0.010396825149655342,0.0011111111380159855,0.0009523809421807528,1.7076184216646695e-18,-0.0004761904710903764,3.292954966020172e-20,-1.0164395367051604e-19,-0.0015873016091063619,-0.0005555555690079927,-0.0004761904710903764,-1.3738823739652233e-20,-9.023998453470111e-21,-3.448901775941146e-20,-0.011269841343164444,0.0009523809421807528,0.0011111111380159855,0.010396825149655342,0.0009523809421807528,1.6700236832095938e-18,9.692891431903868e-20,-0.0004761904710903764,-9.935055664812156e-20,-0.0,-0.0005555555690079927,-2.0328790734103208e-20,-0.0015873016091063619,-0.0004761904710903764,-2.8053374879164176e-20,-0.009778911247849464,0.0008163265301845968,0.0009523809421807528,0.0009523809421807528,0.007185373920947313,1.1384122811097797e-18,-5.3289143178599727e-20,-5.687657702762819e-20,-0.00032653060043230653,2.1591338151910488e-20,-1.375161434299126e-20,-0.0003809523768723011,-5.421010862427522e-20,-0.0003809523768723011,-0.0008928571478463709,0.0005952381179668009,-0.0008928571478463709,1.7076184216646695e-18,1.6700236832095938e-18,1.1384122811097797e-18,0.00017857142665889114,-1.3552527156068805e-19,-1.3552527156068805e-19,6.776263578034403e-21,-2.305659199493757e-19,-1.0573552502232717e-19,-9.063045094233022e-20,-2.2080748931732864e-19,-9.063045094233022e-20,-1.5907753344312213e-19,0.0009523809421807528,-0.0003809523768723011,-0.0004761904710903764,9.692891431903868e-20,-5.3289143178599727e-20,-1.3552527156068805e-19,0.00019047618843615055,-1.9421451554211747e-21,2.9632988138243204e-22,-1.1558691007570988e-19,-4.743384504624082e-20,2.371692252312041e-20,6.423307872480013e-22,6.996090660247528e-35,9.424707279631315e-22,0.0009523809421807528,-0.0003809523768723011,3.292954966020172e-20,-0.0004761904710903764,-5.687657702762819e-20,-1.3552527156068805e-19,-1.9421451554211747e-21,0.00019047618843615055,2.226546652123098e-22,-2.9184579404876408e-22,-1.3823924791930027e-20,3.3727605376672696e-22,-1.1558691007570988e-19,2.710505431213761e-20,2.644865579992124e-22,0.0008163265301845968,-0.00032653060043230653,-1.0164395367051604e-19,-9.935055664812156e-20,-0.00032653060043230653,6.776263578034403e-21,2.9632988138243204e-22,2.226546652123098e-22,0.00013061224308330566,1.572664820764548e-21,4.718110178722109e-22,3.72473646030689e-20,1.3270807332060752e-21,3.683099871809636e-20,-7.886232685094875e-20,0.0007936508045531809,1.3823577699190182e-18,-0.0015873016091063619,-0.0,2.1591338151910488e-20,-2.305659199493757e-19,-1.1558691007570988e-19,-2.9184579404876408e-22,1.572664820764548e-21,0.00039682540227659047,-0.0,0.0,-1.5097024619050719e-21,1.151044068325184e-34,1.0778208819954091e-21,0.0011111111380159855,6.500136213903482e-19,-0.0005555555690079927,-0.0005555555690079927,-1.375161434299126e-20,-1.0573552502232717e-19,-4.743384504624082e-20,-1.3823924791930027e-20,4.718110178722109e-22,-0.0,0.00027777778450399637,2.785549695921144e-21,7.944783824649132e-21,-0.0,1.29010832456953e-21,0.0009523809421807528,3.119254404461367e-19,-0.0004761904710903764,-2.0328790734103208e-20,-0.0003809523768723011,-9.063045094233022e-20,2.371692252312041e-20,3.3727605376672696e-22,3.72473646030689e-20,0.0,2.785549695921144e-21,0.00019047618843615055,1.1242535630428545e-21,3.609599300608688e-21,9.945640830154707e-21,0.0007936508045531809,1.328147661294743e-18,-1.3738823739652233e-20,-0.0015873016091063619,-5.421010862427522e-20,-2.2080748931732864e-19,6.423307872480013e-22,-1.1558691007570988e-19,1.3270807332060752e-21,-1.5097024619050719e-21,7.944783824649132e-21,1.1242535630428545e-21,0.00039682540227659047,1.1527437151348408e-20,6.423212451864918e-22,0.0009523809421807528,3.068646460609607e-19,-9.023998453470111e-21,-0.0004761904710903764,-0.0003809523768723011,-9.063045094233022e-20,6.996090660247528e-35,2.710505431213761e-20,3.683099871809636e-20,1.151044068325184e-34,-0.0,3.609599300608688e-21,1.1527437151348408e-20,0.00019047618843615055,8.807137384694136e-21,0.0005952381179668009,9.91540262893972e-19,-3.448901775941146e-20,-2.8053374879164176e-20,-0.0008928571478463709,-1.5907753344312213e-19,9.424707279631315e-22,2.644865579992124e-22,-7.886232685094875e-20,1.0778208819954091e-21,1.29010832456953e-21,9.945640830154707e-21,6.423212451864918e-22,8.807137384694136e-21,0.00017857142665889114,6.0,5.0,5.0,7.0,0.04048752784729004,-0.008469387888908386,-0.009761904366314411,-0.009761904366314411,-0.007482993416488171,0.0005102040595375001,0.0008163265301845968,0.0008163265301845968,0.0006122448830865324,0.0006802721181884408,0.0009523809421807528,0.0007142857066355646,0.0006802721181884408,0.0007142857066355646,0.00039682540227659047,-0.008469387888908386,0.006193877663463354,0.0008163265301845968,0.0008163265301845968,0.0006122448830865324,-0.0007653061184100807,-0.00032653060043230653,-0.00032653060043230653,-0.0002448979648761451,1.1237348917182153e-18,3.128309188735467e-19,2.768584108466582e-19,1.1237348917182153e-18,2.768584108466582e-19,4.221078625921548e-19,-0.009761904366314411,0.0008163265301845968,0.008962584659457207,0.0009523809421807528,0.0007142857066355646,1.4094628242311558e-18,-0.0004081632650922984,-9.82913324867018e-20,-6.49437851985223e-20,-0.0013605442363768816,-0.0004761904710903764,-0.0003571428533177823,-1.692668886171892e-33,-5.267474674691136e-34,-2.306535946319578e-20,-0.009761904366314411,0.0008163265301845968,0.0009523809421807528,0.008962584659457207,0.0007142857066355646,1.42139469777208e-18,-9.82913324867018e-20,-0.0004081632650922984,-6.49437851985223e-20,-1.692668886171892e-33,-0.0004761904710903764,-5.267474674691136e-34,-0.0013605442363768816,-0.0003571428533177823,-2.7365679212990036e-21,-0.007482993416488171,0.0006122448830865324,0.0007142857066355646,0.0007142857066355646,0.004557823296636343,1.0706496453294356e-18,-3.646999900420232e-20,-3.646999900420232e-20,-0.0002040816325461492,-1.3473902876563885e-33,-6.4935524759747255e-34,-0.0002380952355451882,-1.3473902876563885e-33,-0.0002380952355451882,-0.0004761904710903764,0.0005102040595375001,-0.0007653061184100807,1.4094628242311558e-18,1.42139469777208e-18,1.0706496453294356e-18,0.0001530612207716331,-1.0164395367051604e-19,-1.0164395367051604e-19,-7.453889935837843e-20,-1.9420811377809942e-19,-9.063045094233022e-20,-6.797283659116053e-20,-1.9420811377809942e-19,-6.797283659116053e-20,-1.015621726497984e-19,0.0008163265301845968,-0.00032653060043230653,-0.0004081632650922984,-9.82913324867018e-20,-3.646999900420232e-20,-1.0164395367051604e-19,0.00016326530021615326,1.1252263888355279e-20,7.681601449363754e-21,-7.634716787620763e-20,3.5080335575113234e-20,8.632998094293251e-21,1.0766768314801446e-34,4.155502534781035e-35,6.319457630020618e-35,0.0008163265301845968,-0.00032653060043230653,-9.82913324867018e-20,-0.0004081632650922984,-3.646999900420232e-20,-1.0164395367051604e-19,1.1252263888355279e-20,0.00016326530021615326,7.681601449363754e-21,1.0766768314801446e-34,3.5080335575113234e-20,4.155502534781035e-35,-7.634716787620763e-20,8.632998094293251e-21,6.319457630020618e-35,0.0006122448830865324,-0.0002448979648761451,-6.49437851985223e-20,-6.49437851985223e-20,-0.0002040816325461492,-7.453889935837843e-20,7.681601449363754e-21,7.681601449363754e-21,8.163265010807663e-05,1.1063216740230548e-34,5.791409266830678e-35,1.5246593050577406e-20,1.1063216740230548e-34,1.5246593050577406e-20,2.90482695920866e-20,0.0006802721181884408,1.1237348917182153e-18,-0.0013605442363768816,-1.692668886171892e-33,-1.3473902876563885e-33,-1.9420811377809942e-19,-7.634716787620763e-20,1.0766768314801446e-34,1.1063216740230548e-34,0.0003401360590942204,8.954848809857621e-35,7.542771871636073e-35,2.464163552867318e-34,8.624572779418723e-35,1.2457715790515605e-34,0.0009523809421807528,3.128309188735467e-19,-0.0004761904710903764,-0.0004761904710903764,-6.4935524759747255e-34,-9.063045094233022e-20,3.5080335575113234e-20,3.5080335575113234e-20,5.791409266830678e-35,8.954848809857621e-35,0.0002380952355451882,3.893849143916569e-35,8.954848809857621e-35,3.893849143916569e-35,5.813600740505406e-35,0.0007142857066355646,2.768584108466582e-19,-0.0003571428533177823,-5.267474674691136e-34,-0.0002380952355451882,-6.797283659116053e-20,8.632998094293251e-21,4.155502534781035e-35,1.5246593050577406e-20,7.542771871636073e-35,3.893849143916569e-35,0.0001190476177725941,8.624572779418723e-35,0.0,7.688453154398593e-21,0.0006802721181884408,1.1237348917182153e-18,-1.692668886171892e-33,-0.0013605442363768816,-1.3473902876563885e-33,-1.9420811377809942e-19,1.0766768314801446e-34,-7.634716787620763e-20,1.1063216740230548e-34,2.464163552867318e-34,8.954848809857621e-35,8.624572779418723e-35,0.0003401360590942204,7.542771871636073e-35,1.2457715790515605e-34,0.0007142857066355646,2.768584108466582e-19,-5.267474674691136e-34,-0.0003571428533177823,-0.0002380952355451882,-6.797283659116053e-20,4.155502534781035e-35,8.632998094293251e-21,1.5246593050577406e-20,8.624572779418723e-35,3.893849143916569e-35,0.0,7.542771871636073e-35,0.0001190476177725941,9.121893744157985e-22,0.00039682540227659047,4.221078625921548e-19,-2.306535946319578e-20,-2.7365679212990036e-21,-0.0004761904710903764,-1.015621726497984e-19,6.319457630020618e-35,6.319457630020618e-35,2.90482695920866e-20,1.2457715790515605e-34,5.813600740505406e-35,7.688453154398593e-21,1.2457715790515605e-34,9.121893744157985e-22,7.936507608974352e-05,6.0,5.0,5.0,8.0,0.03613095358014107,-0.007470238022506237,-0.008611110970377922,-0.008611110970377922,-0.0059126983396708965,0.00044642857392318547,0.0007142857066355646,0.0007142857066355646,0.0004761904710903764,0.0005952381179668009,0.0008333333535119891,0.0005555555690079927,0.0005952381179668009,0.0005555555690079927,0.00027777778450399637,-0.007470238022506237,0.005443452391773462,0.0007142857066355646,0.0007142857066355646,0.0004761904710903764,-0.0006696428754366934,-0.0002857142826542258,-0.0002857142826542258,-0.00019047618843615055,-1.2461686859167563e-18,-5.815454005474965e-19,3.9825897891193803e-19,-1.2461686859167563e-18,3.9891932753469677e-19,9.979236156810437e-19,-0.008611110970377922,0.0007142857066355646,0.007876983843743801,0.0008333333535119891,0.0005555555690079927,-2.0312927477905972e-18,-0.0003571428533177823,2.1147105004465433e-19,9.342194381786146e-19,-0.0011904762359336019,-0.00041666667675599456,-0.00027777778450399637,-2.02667759790278e-32,8.903052466387869e-19,1.5610267142789407e-18,-0.008611110970377922,0.0007142857066355646,0.0008333333535119891,0.007876983843743801,0.0005555555690079927,-2.0312927477905972e-18,2.1147105004465433e-19,-0.0003571428533177823,9.34879735102585e-19,5.2867765096103e-19,-0.00041666667675599456,2.861022317401207e-19,-0.0011904762359336019,-0.00027777778450399637,1.5623749152798256e-18,-0.0059126983396708965,0.0004761904710903764,0.0005555555690079927,0.0005555555690079927,0.003078231355175376,4.0061086018857943e-19,1.1717222239918307e-18,1.1717222239918307e-18,-0.0001360544265480712,2.9293056633771532e-18,1.3670093302555202e-18,-0.00015873015217948705,2.6272042076266084e-18,-0.00015873015217948705,-0.00027777778450399637,0.00044642857392318547,-0.0006696428754366934,-2.0312927477905972e-18,-2.0312927477905972e-18,4.0061086018857943e-19,0.00013392856635618955,1.3920837078626284e-19,1.3920837078626284e-19,1.7051472066599702e-20,3.398641894181512e-19,1.5860328753349075e-19,1.88813446194801e-21,3.398641894181512e-19,1.88813446194801e-21,-4.9563528162009426e-20,0.0007142857066355646,-0.0002857142826542258,-0.0003571428533177823,2.1147105004465433e-19,1.1717222239918307e-18,1.3920837078626284e-19,0.0001428571413271129,5.907099262704448e-34,-5.1788828186710334e-20,1.4682964937941841e-33,6.852050243149195e-34,-6.042030278233632e-20,1.3533021977215591e-33,-6.042030278233632e-20,-1.0573552502232717e-19,0.0007142857066355646,-0.0002857142826542258,2.1147105004465433e-19,-0.0003571428533177823,1.1717222239918307e-18,1.3920837078626284e-19,5.907099262704448e-34,0.0001428571413271129,-5.1788828186710334e-20,1.4682964937941841e-33,6.852050243149195e-34,-6.042030278233632e-20,1.3533021977215591e-33,-6.042030278233632e-20,-1.0573552502232717e-19,0.0004761904710903764,-0.00019047618843615055,9.342194381786146e-19,9.34879735102585e-19,-0.0001360544265480712,1.7051472066599702e-20,-5.1788828186710334e-20,-5.1788828186710334e-20,5.442176916403696e-05,-1.2947206723560157e-19,-6.042030278233632e-20,-4.743384504624082e-20,-1.2947206723560157e-19,-4.762251008056253e-20,-9.34753835628415e-20,0.0005952381179668009,-1.2461686859167563e-18,-0.0011904762359336019,5.2867765096103e-19,2.9293056633771532e-18,3.398641894181512e-19,1.4682964937941841e-33,1.4682964937941841e-33,-1.2947206723560157e-19,0.00029761905898340046,1.7033530277949128e-33,-1.5105075372466654e-19,3.362556691824848e-33,-1.5105075372466654e-19,-2.64338825480515e-19,0.0008333333535119891,-5.815454005474965e-19,-0.00041666667675599456,-0.00041666667675599456,1.3670093302555202e-18,1.5860328753349075e-19,6.852050243149195e-34,6.852050243149195e-34,-6.042030278233632e-20,1.7033530277949128e-33,0.00020833333837799728,-7.04903478607686e-20,1.569193122851596e-33,-7.04903478607686e-20,-1.2335811683428072e-19,0.0005555555690079927,3.9825897891193803e-19,-0.00027777778450399637,2.861022317401207e-19,-0.00015873015217948705,1.88813446194801e-21,-6.042030278233632e-20,-6.042030278233632e-20,-4.743384504624082e-20,-1.5105075372466654e-19,-7.04903478607686e-20,7.936507608974352e-05,8.425943506694157e-35,1.6940658945086007e-21,2.109591472223126e-21,0.0005952381179668009,-1.2461686859167563e-18,-2.02667759790278e-32,-0.0011904762359336019,2.6272042076266084e-18,3.398641894181512e-19,1.3533021977215591e-33,1.3533021977215591e-33,-1.2947206723560157e-19,3.362556691824848e-33,1.569193122851596e-33,8.425943506694157e-35,0.00029761905898340046,-1.5105075372466654e-19,-2.64338825480515e-19,0.0005555555690079927,3.9891932753469677e-19,8.903052466387869e-19,-0.00027777778450399637,-0.00015873015217948705,1.88813446194801e-21,-6.042030278233632e-20,-6.042030278233632e-20,-4.762251008056253e-20,-1.5105075372466654e-19,-7.04903478607686e-20,1.6940658945086007e-21,-1.5105075372466654e-19,7.936507608974352e-05,1.7243979371022596e-21,0.00027777778450399637,9.979236156810437e-19,1.5610267142789407e-18,1.5623749152798256e-18,-0.00027777778450399637,-4.9563528162009426e-20,-1.0573552502232717e-19,-1.0573552502232717e-19,-9.34753835628415e-20,-2.64338825480515e-19,-1.2335811683428072e-19,2.109591472223126e-21,-2.64338825480515e-19,1.7243979371022596e-21,3.968253804487176e-05,6.0,5.0,6.0,3.0,0.06829176098108292,-0.015504535287618637,-0.01785714365541935,-0.015504535287618637,-0.02579365111887455,0.0009920635493472219,0.0015873016091063619,0.0013605442363768816,0.0023809524718672037,0.0013227512827143073,0.0015873016091063619,0.0027777778450399637,0.0009920635493472219,0.0023809524718672037,0.0027777778450399637,-0.015504535287618637,0.01165816280990839,0.0015873016091063619,0.0013605442363768816,0.0023809524718672037,-0.0014880952658131719,-0.0006349206087179482,-0.0005442177061922848,-0.0009523809421807528,-3.577867169202165e-18,-1.406930100593095e-18,-2.7366294493194108e-18,-2.2768245622195593e-18,-1.804032525912319e-18,-1.2971142435355297e-17,-0.01785714365541935,0.0015873016091063619,0.01686508022248745,0.0015873016091063619,0.0027777778450399637,-5.149960319306146e-18,-0.0007936508045531809,-2.8879602295308207e-20,-3.2466826118009265e-19,-0.0026455025654286146,-0.0007936508045531809,-0.0013888889225199819,3.3149079275026104e-21,5.421010862427522e-20,-4.5451946687538766e-32,-0.015504535287618637,0.0013605442363768816,0.0015873016091063619,0.01165816280990839,0.0023809524718672037,-4.240407406993863e-18,-1.6351168681550092e-19,-0.0005442177061922848,2.0346846535911592e-19,-1.0842021724855044e-19,-0.0006349206087179482,1.0565161142659278e-19,-0.0014880952658131719,-0.0009523809421807528,-1.2971142435355297e-17,-0.02579365111887455,0.0023809524718672037,0.0027777778450399637,0.0023809524718672037,0.0535714291036129,-8.782037597132586e-18,-2.274197126401361e-19,1.599603968818319e-20,-0.0023809524718672037,-7.249672613530425e-20,1.3213713977167085e-19,-0.0027777778450399637,-6.5052130349130266e-18,-0.0023809524718672037,-0.01666666753590107,0.0009920635493472219,-0.0014880952658131719,-5.149960319306146e-18,-4.240407406993863e-18,-8.782037597132586e-18,0.00029761905898340046,3.6591823321385775e-19,2.439454888092385e-19,5.421010862427522e-19,7.2765144951608e-19,3.021015074493331e-19,5.2867765096103e-19,5.211198568004978e-19,4.531522353246055e-19,2.6433882031063616e-18,0.0015873016091063619,-0.0006349206087179482,-0.0007936508045531809,-1.6351168681550092e-19,-2.274197126401361e-19,3.6591823321385775e-19,0.0003174603043589741,5.059284780558083e-20,9.116718776230056e-20,-3.032114868961512e-20,6.776263578034403e-21,-0.0,4.362962121427027e-21,-1.9930187068464564e-22,3.3270104773399515e-33,0.0013605442363768816,-0.0005442177061922848,-2.8879602295308207e-20,-0.0005442177061922848,1.599603968818319e-20,2.439454888092385e-19,5.059284780558083e-20,0.00021768707665614784,4.8934576859610756e-20,4.811726586885868e-21,-4.6851968721749513e-20,-1.4036040275448584e-21,-1.3532155248545273e-19,-5.421010862427522e-20,6.7407548053553255e-34,0.0023809524718672037,-0.0009523809421807528,-3.2466826118009265e-19,2.0346846535911592e-19,-0.0023809524718672037,5.421010862427522e-19,9.116718776230056e-20,4.8934576859610756e-20,0.0009523809421807528,1.33912316445675e-33,5.416677968589101e-34,9.675028854316697e-20,6.479324861732449e-34,-3.258049107393171e-19,-2.4579829583317485e-19,0.0013227512827143073,-3.577867169202165e-18,-0.0026455025654286146,-1.0842021724855044e-19,-7.249672613530425e-20,7.2765144951608e-19,-3.032114868961512e-20,4.811726586885868e-21,1.33912316445675e-33,0.0006613756413571537,-2.710505431213761e-20,0.0,1.4210428164319697e-20,-6.643395773633351e-22,6.648136136086099e-33,0.0015873016091063619,-1.406930100593095e-18,-0.0007936508045531809,-0.0006349206087179482,1.3213713977167085e-19,3.021015074493331e-19,6.776263578034403e-21,-4.6851968721749513e-20,5.416677968589101e-34,-2.710505431213761e-20,0.0003174603043589741,-4.0657581468206416e-20,-2.8879880176295236e-20,-2.0328790734103208e-20,2.4074124304840448e-33,0.0027777778450399637,-2.7366294493194108e-18,-0.0013888889225199819,1.0565161142659278e-19,-0.0027777778450399637,5.2867765096103e-19,-0.0,-1.4036040275448584e-21,9.675028854316697e-20,0.0,-4.0657581468206416e-20,0.0013888889225199819,-3.837979505649317e-21,-2.256949153578792e-35,4.544298060437787e-33,0.0009920635493472219,-2.2768245622195593e-18,3.3149079275026104e-21,-0.0014880952658131719,-6.5052130349130266e-18,5.211198568004978e-19,4.362962121427027e-21,-1.3532155248545273e-19,6.479324861732449e-34,1.4210428164319697e-20,-2.8879880176295236e-20,-3.837979505649317e-21,0.00029761905898340046,4.661469842538721e-19,2.6433882031063616e-18,0.0023809524718672037,-1.804032525912319e-18,5.421010862427522e-20,-0.0009523809421807528,-0.0023809524718672037,4.531522353246055e-19,-1.9930187068464564e-22,-5.421010862427522e-20,-3.258049107393171e-19,-6.643395773633351e-22,-2.0328790734103208e-20,-2.256949153578792e-35,4.661469842538721e-19,0.0009523809421807528,-2.4579829583317485e-19,0.0027777778450399637,-1.2971142435355297e-17,-4.5451946687538766e-32,-1.2971142435355297e-17,-0.01666666753590107,2.6433882031063616e-18,3.3270104773399515e-33,6.7407548053553255e-34,-2.4579829583317485e-19,6.648136136086099e-33,2.4074124304840448e-33,4.544298060437787e-33,2.6433882031063616e-18,-2.4579829583317485e-19,0.008333333767950535,6.0,5.0,6.0,4.0,0.05494897812604904,-0.011985544115304947,-0.013809523545205593,-0.011985544115304947,-0.016309523954987526,0.0007440476329065859,0.0011904762359336019,0.0010204081190750003,0.0014285714132711291,0.0009920635493472219,0.0011904762359336019,0.0016666667070239782,0.0007440476329065859,0.0014285714132711291,0.0013888889225199819,-0.011985544115304947,0.008886479772627354,0.0011904762359336019,0.0010204081190750003,0.0014285714132711291,-0.0011160714784637094,-0.0004761904710903764,-0.0004081632650922984,-0.0005714285653084517,-3.198396408832238e-18,-1.2088295462709595e-18,-1.6963506707580487e-18,-1.951563910473908e-18,-1.3540924914001984e-18,-4.55878508886246e-18,-0.013809523545205593,0.0011904762359336019,0.012857142835855484,0.0011904762359336019,0.0016666667070239782,-3.767602549387128e-18,-0.0005952381179668009,6.658995862803379e-20,1.1163434384089887e-19,-0.0019841270986944437,-0.0005952381179668009,-0.0008333333535119891,-3.067719178218238e-20,-3.9421378549176234e-33,-1.5844159216315383e-32,-0.011985544115304947,0.0010204081190750003,0.0011904762359336019,0.008886479772627354,0.0014285714132711291,-3.0785954271258768e-18,1.5127896510085168e-19,-0.0004081632650922984,-4.308691076087236e-20,-5.421010862427522e-20,-0.0004761904710903764,-4.749114669070572e-20,-0.0011160714784637094,-0.0005714285653084517,-4.55878508886246e-18,-0.016309523954987526,0.0014285714132711291,0.0016666667070239782,0.0014285714132711291,0.020595237612724304,-4.824699667560495e-18,1.406369634029302e-19,8.707405898449237e-20,-0.0009523809421807528,-5.399203021059386e-20,-4.749114669070572e-20,-0.0011111111380159855,-3.63207727782644e-18,-0.0009523809421807528,-0.004166666883975267,0.0007440476329065859,-0.0011160714784637094,-3.767602549387128e-18,-3.0785954271258768e-18,-4.824699667560495e-18,0.00022321428696159273,1.8973538018496328e-19,1.0842021724855044e-19,3.1170812458958252e-19,5.479139429011038e-19,2.2657611766230274e-19,3.172065750669815e-19,3.739256775854949e-19,2.718913463646421e-19,9.251859021064995e-19,0.0011904762359336019,-0.0004761904710903764,-0.0005952381179668009,1.5127896510085168e-19,1.406369634029302e-19,1.8973538018496328e-19,0.0002380952355451882,-5.507860949336469e-20,-7.251781924092435e-20,2.3475716656499947e-19,-0.0,2.0328790734103208e-20,-2.5029083814015966e-21,2.4234760658832602e-34,8.037316809117654e-34,0.0010204081190750003,-0.0004081632650922984,6.658995862803379e-20,-0.0004081632650922984,8.707405898449237e-20,1.0842021724855044e-19,-5.507860949336469e-20,0.00016326530021615326,-7.724568796983196e-21,-1.113188204814432e-21,3.0379571551550947e-20,1.715281356719882e-34,3.742223898561571e-20,-2.710505431213761e-20,7.703719777548943e-34,0.0014285714132711291,-0.0005714285653084517,1.1163434384089887e-19,-4.308691076087236e-20,-0.0009523809421807528,3.1170812458958252e-19,-7.251781924092435e-20,-7.724568796983196e-21,0.0003809523768723011,7.2222372914521344e-34,3.430562713439764e-34,4.644013940544894e-20,5.476863279351202e-34,4.159889038707189e-20,-4.4762817455996005e-20,0.0009920635493472219,-3.198396408832238e-18,-0.0019841270986944437,-5.421010862427522e-20,-5.399203021059386e-20,5.479139429011038e-19,2.3475716656499947e-19,-1.113188204814432e-21,7.2222372914521344e-34,0.0004960317746736109,2.710505431213761e-20,2.710505431213761e-20,9.564565628586524e-22,6.887421143671926e-34,2.347800356888962e-33,0.0011904762359336019,-1.2088295462709595e-18,-0.0005952381179668009,-0.0004761904710903764,-4.749114669070572e-20,2.2657611766230274e-19,-0.0,3.0379571551550947e-20,3.430562713439764e-34,2.710505431213761e-20,0.0002380952355451882,2.374557334535286e-20,1.3109550935413919e-20,-0.0,1.0111132208032988e-33,0.0016666667070239782,-1.6963506707580487e-18,-0.0008333333535119891,-4.749114669070572e-20,-0.0011111111380159855,3.172065750669815e-19,2.0328790734103208e-20,1.715281356719882e-34,4.644013940544894e-20,2.710505431213761e-20,2.374557334535286e-20,0.0005555555690079927,5.5069559347322525e-34,3.878190962232891e-34,1.2772302644790871e-33,0.0007440476329065859,-1.951563910473908e-18,-3.067719178218238e-20,-0.0011160714784637094,-3.63207727782644e-18,3.739256775854949e-19,-2.5029083814015966e-21,3.742223898561571e-20,5.476863279351202e-34,9.564565628586524e-22,1.3109550935413919e-20,5.5069559347322525e-34,0.00022321428696159273,3.37747615176387e-19,9.251859021064995e-19,0.0014285714132711291,-1.3540924914001984e-18,-3.9421378549176234e-33,-0.0005714285653084517,-0.0009523809421807528,2.718913463646421e-19,2.4234760658832602e-34,-2.710505431213761e-20,4.159889038707189e-20,6.887421143671926e-34,-0.0,3.878190962232891e-34,3.37747615176387e-19,0.0003809523768723011,-4.4762817455996005e-20,0.0013888889225199819,-4.55878508886246e-18,-1.5844159216315383e-32,-4.55878508886246e-18,-0.004166666883975267,9.251859021064995e-19,8.037316809117654e-34,7.703719777548943e-34,-4.4762817455996005e-20,2.347800356888962e-33,1.0111132208032988e-33,1.2772302644790871e-33,9.251859021064995e-19,-4.4762817455996005e-20,0.0013888889225199819,6.0,5.0,6.0,5.0,0.0460544228553772,-0.009778911247849464,-0.011269841343164444,-0.009778911247849464,-0.011269841343164444,0.0005952381179668009,0.0009523809421807528,0.0008163265301845968,0.0009523809421807528,0.0007936508045531809,0.0009523809421807528,0.0011111111380159855,0.0005952381179668009,0.0009523809421807528,0.0007936508045531809,-0.009778911247849464,0.007185373920947313,0.0009523809421807528,0.0008163265301845968,0.0009523809421807528,-0.0008928571478463709,-0.0003809523768723011,-0.00032653060043230653,-0.0003809523768723011,1.3552527156068805e-18,3.0559283001976628e-19,6.528567445532696e-19,9.486769009248164e-19,3.1606147275587254e-19,1.3031656694222992e-18,-0.011269841343164444,0.0009523809421807528,0.010396825149655342,0.0009523809421807528,0.0011111111380159855,1.6805133673525319e-18,-0.0004761904710903764,-1.0100832353090586e-19,-0.0,-0.0015873016091063619,-0.0004761904710903764,-0.0005555555690079927,-3.85987321547362e-20,1.0356488677271438e-20,-5.421010862427522e-20,-0.009778911247849464,0.0008163265301845968,0.0009523809421807528,0.007185373920947313,0.0009523809421807528,1.1358988928185373e-18,-5.209333404970642e-20,-0.00032653060043230653,-1.0398742743171266e-19,-0.0,-0.0003809523768723011,-0.0,-0.0008928571478463709,-0.0003809523768723011,1.3582200192592614e-18,-0.011269841343164444,0.0009523809421807528,0.0011111111380159855,0.0009523809421807528,0.010396825149655342,1.6805133673525319e-18,8.03868594939752e-20,-4.759703873380958e-20,-0.0004761904710903764,-4.4171958467040256e-20,-3.4702747012528383e-20,-0.0005555555690079927,1.2197274440461925e-18,-0.0004761904710903764,-0.0015873016091063619,0.0005952381179668009,-0.0008928571478463709,1.6805133673525319e-18,1.1358988928185373e-18,1.6805133673525319e-18,0.00017857142665889114,-1.3552527156068805e-19,6.776263578034403e-21,-1.3552527156068805e-19,-2.2752678083067345e-19,-9.063045094233022e-20,-1.0573552502232717e-19,-1.5360030531831397e-19,-9.063045094233022e-20,-2.224789111425686e-19,0.0009523809421807528,-0.0003809523768723011,-0.0004761904710903764,-5.209333404970642e-20,8.03868594939752e-20,-1.3552527156068805e-19,0.00019047618843615055,-4.804894975716007e-23,8.022932500618807e-23,-1.1558691007570988e-19,2.371692252312041e-20,-4.743384504624082e-20,8.807635793324942e-22,7.114561320150592e-35,3.2828179241588845e-21,0.0008163265301845968,-0.00032653060043230653,-1.0100832353090586e-19,-0.00032653060043230653,-4.759703873380958e-20,6.776263578034403e-21,-4.804894975716007e-23,0.00013061224308330566,7.843654532415989e-21,4.247353331454763e-22,4.024467617087467e-20,-6.654226770753163e-22,-7.188951094220497e-20,1.6940658945086007e-20,-2.996069181299807e-21,0.0009523809421807528,-0.0003809523768723011,-0.0,-1.0398742743171266e-19,-0.0004761904710903764,-1.3552527156068805e-19,8.022932500618807e-23,7.843654532415989e-21,0.00019047618843615055,6.449402835866647e-21,-2.4305056925349044e-22,-1.3823924791930027e-20,-1.8196713318202173e-21,4.7369570527706035e-20,-9.579738940220296e-20,0.0007936508045531809,1.3552527156068805e-18,-0.0015873016091063619,-0.0,-4.4171958467040256e-20,-2.2752678083067345e-19,-1.1558691007570988e-19,4.247353331454763e-22,6.449402835866647e-21,0.00039682540227659047,-0.0,0.0,-2.7898301940323925e-21,1.1435209044799213e-34,7.388256870082168e-21,0.0009523809421807528,3.0559283001976628e-19,-0.0004761904710903764,-0.0003809523768723011,-3.4702747012528383e-20,-9.063045094233022e-20,2.371692252312041e-20,4.024467617087467e-20,-2.4305056925349044e-22,-0.0,0.00019047618843615055,1.518213920187076e-20,2.0868645637241967e-20,3.3881317890172014e-21,-8.101685810073341e-22,0.0011111111380159855,6.528567445532696e-19,-0.0005555555690079927,-0.0,-0.0005555555690079927,-1.0573552502232717e-19,-4.743384504624082e-20,-6.654226770753163e-22,-1.3823924791930027e-20,0.0,1.518213920187076e-20,0.00027777778450399637,-1.819515225713405e-21,-9.41340907490722e-21,7.944783824649132e-21,0.0005952381179668009,9.486769009248164e-19,-3.85987321547362e-20,-0.0008928571478463709,1.2197274440461925e-18,-1.5360030531831397e-19,8.807635793324942e-22,-7.188951094220497e-20,-1.8196713318202173e-21,-2.7898301940323925e-21,2.0868645637241967e-20,-1.819515225713405e-21,0.00017857142665889114,-1.1747326961324291e-19,-2.253734229010448e-19,0.0009523809421807528,3.1606147275587254e-19,1.0356488677271438e-20,-0.0003809523768723011,-0.0004761904710903764,-9.063045094233022e-20,7.114561320150592e-35,1.6940658945086007e-20,4.7369570527706035e-20,1.1435209044799213e-34,3.3881317890172014e-21,-9.41340907490722e-21,-1.1747326961324291e-19,0.00019047618843615055,-1.1137773690524844e-19,0.0007936508045531809,1.3031656694222992e-18,-5.421010862427522e-20,1.3582200192592614e-18,-0.0015873016091063619,-2.224789111425686e-19,3.2828179241588845e-21,-2.996069181299807e-21,-9.579738940220296e-20,7.388256870082168e-21,-8.101685810073341e-22,7.944783824649132e-21,-2.253734229010448e-19,-1.1137773690524844e-19,0.00039682540227659047,6.0,5.0,6.0,6.0,0.0396730899810791,-0.008262471295893192,-0.009523809887468815,-0.008262471295893192,-0.008262471295893192,0.0004960317746736109,0.0007936508045531809,0.0006802721181884408,0.0006802721181884408,0.0006613756413571537,0.0007936508045531809,0.0007936508045531809,0.0004960317746736109,0.0006802721181884408,0.0004960317746736109,-0.008262471295893192,0.0060331630520522594,0.0007936508045531809,0.0006802721181884408,0.0006802721181884408,-0.0007440476329065859,-0.0003174603043589741,-0.0002721088530961424,-0.0002721088530961424,-1.81603863891322e-18,-7.129638237644353e-19,-7.1958788610976e-19,-1.111307226797642e-18,-6.443907060801542e-19,-1.1823461181891555e-18,-0.009523809887468815,0.0007936508045531809,0.008730159141123295,0.0007936508045531809,0.0007936508045531809,-2.710505431213761e-18,-0.00039682540227659047,-1.2832561752482294e-20,-2.0328790734103208e-20,-0.0013227512827143073,-0.00039682540227659047,-0.00039682540227659047,8.442342656622581e-21,5.33430876330004e-20,-1.7739825276737336e-20,-0.008262471295893192,0.0006802721181884408,0.0007936508045531809,0.0060331630520522594,0.0006802721181884408,-2.2225900517672138e-18,-6.808544301439285e-20,-0.0002721088530961424,-4.2176417550998754e-20,-0.0,-0.0003174603043589741,7.453889935837843e-20,-0.0007440476329065859,-0.0002721088530961424,-1.1403142795307688e-18,-0.008262471295893192,0.0006802721181884408,0.0007936508045531809,0.0006802721181884408,0.0060331630520522594,-2.1955093992831465e-18,-7.0676366563365e-20,-2.4911728372403572e-20,-0.0002721088530961424,1.9682328082760276e-20,3.3802170276482614e-20,-0.0003174603043589741,-1.5720931501039814e-18,-0.0002721088530961424,-0.0007440476329065859,0.0004960317746736109,-0.0007440476329065859,-2.710505431213761e-18,-2.2225900517672138e-18,-2.1955093992831465e-18,0.00014880952949170023,1.7618285302889447e-19,1.2197274440461925e-19,1.0842021724855044e-19,3.6976658761618414e-19,1.5105075372466654e-19,1.5105075372466654e-19,2.6208884251558246e-19,1.2947206723560157e-19,2.6653403357926e-19,0.0007936508045531809,-0.0003174603043589741,-0.00039682540227659047,-6.808544301439285e-20,-7.0676366563365e-20,1.7618285302889447e-19,0.00015873015217948705,2.463860852065762e-20,2.461638773521806e-20,-1.516057434480756e-20,3.3881317890172014e-21,3.3881317890172014e-21,-5.294990905847027e-23,1.5720875481017553e-34,4.3472955710412785e-22,0.0006802721181884408,-0.0002721088530961424,-1.2832561752482294e-20,-0.0002721088530961424,-2.4911728372403572e-20,1.2197274440461925e-19,2.463860852065762e-20,0.00010884353832807392,1.1703311582331094e-20,2.131452183680219e-22,-2.0135556819366846e-20,2.5910165462065445e-22,-8.121330339879517e-20,-3.3881317890172014e-21,6.644182867490144e-22,0.0006802721181884408,-0.0002721088530961424,-2.0328790734103208e-20,-4.2176417550998754e-20,-0.0002721088530961424,1.0842021724855044e-19,2.461638773521806e-20,1.1703311582331094e-20,0.00010884353832807392,1.390790679768211e-22,5.090823606156242e-22,-1.72359511146575e-20,1.179232599054396e-21,2.2002685215451592e-21,-6.23220944081723e-20,0.0006613756413571537,-1.81603863891322e-18,-0.0013227512827143073,-0.0,1.9682328082760276e-20,3.6976658761618414e-19,-1.516057434480756e-20,2.131452183680219e-22,1.390790679768211e-22,0.0003306878206785768,-1.3552527156068805e-20,-1.3552527156068805e-20,3.1374954575684588e-21,3.2951457642250363e-34,6.253626390878321e-21,0.0007936508045531809,-7.129638237644353e-19,-0.00039682540227659047,-0.0003174603043589741,3.3802170276482614e-20,1.5105075372466654e-19,3.3881317890172014e-21,-2.0135556819366846e-20,5.090823606156242e-22,-1.3552527156068805e-20,0.00015873015217948705,-1.7079292477045334e-20,-9.491710120938461e-21,-3.3881317890172014e-21,1.3920220853303739e-21,0.0007936508045531809,-7.1958788610976e-19,-0.00039682540227659047,7.453889935837843e-20,-0.0003174603043589741,1.5105075372466654e-19,3.3881317890172014e-21,2.5910165462065445e-22,-1.72359511146575e-20,-1.3552527156068805e-20,-1.7079292477045334e-20,0.00015873015217948705,7.08481103419431e-22,-1.7949103587300386e-20,-5.6121316699721095e-21,0.0004960317746736109,-1.111307226797642e-18,8.442342656622581e-21,-0.0007440476329065859,-1.5720931501039814e-18,2.6208884251558246e-19,-5.294990905847027e-23,-8.121330339879517e-20,1.179232599054396e-21,3.1374954575684588e-21,-9.491710120938461e-21,7.08481103419431e-22,0.00014880952949170023,1.0445352431984068e-19,2.6455820928860053e-19,0.0006802721181884408,-6.443907060801542e-19,5.33430876330004e-20,-0.0002721088530961424,-0.0002721088530961424,1.2947206723560157e-19,1.5720875481017553e-34,-3.3881317890172014e-21,2.2002685215451592e-21,3.2951457642250363e-34,-3.3881317890172014e-21,-1.7949103587300386e-20,1.0445352431984068e-19,0.00010884353832807392,-7.561179138695092e-20,0.0004960317746736109,-1.1823461181891555e-18,-1.7739825276737336e-20,-1.1403142795307688e-18,-0.0007440476329065859,2.6653403357926e-19,4.3472955710412785e-22,6.644182867490144e-22,-6.23220944081723e-20,6.253626390878321e-21,1.3920220853303739e-21,-5.6121316699721095e-21,2.6455820928860053e-19,-7.561179138695092e-20,0.00014880952949170023,6.0,5.0,6.0,7.0,0.0348612442612648,-0.0071550048887729645,-0.008248299360275269,-0.0071550048887729645,-0.006320861633867025,0.00042517005931586027,0.0006802721181884408,0.000583090353757143,0.0005102040595375001,0.0005668934318237007,0.0006802721181884408,0.0005952381179668009,0.00042517005931586027,0.0005102040595375001,0.0003306878206785768,-0.0071550048887729645,0.005200437270104885,0.0006802721181884408,0.000583090353757143,0.0005102040595375001,-0.0006377550889737904,-0.0002721088530961424,-0.0002332361473236233,-0.0002040816325461492,9.364456913997245e-19,3.582917313636954e-19,3.0729506432282384e-19,6.911788849595091e-19,2.372262748440761e-19,5.0141052094762025e-19,-0.008248299360275269,0.0006802721181884408,0.0075255101546645164,0.0006802721181884408,0.0005952381179668009,1.3010426069826053e-18,-0.0003401360590942204,-2.5777116812879593e-21,-6.481546234365148e-20,-0.0011337868636474013,-0.0003401360590942204,-0.00029761905898340046,1.2038304382337298e-20,-3.1952042299911036e-21,2.71764697258042e-20,-0.0071550048887729645,0.000583090353757143,0.0006802721181884408,0.005200437270104885,0.0005102040595375001,1.0575966318657723e-18,-7.041768521383464e-20,-0.0002332361473236233,2.1002072131868758e-20,-1.2933846792662547e-33,-0.0002721088530961424,-0.0,-0.0006377550889737904,-0.0002040816325461492,4.695629299909864e-19,-0.006320861633867025,0.0005102040595375001,0.0005952381179668009,0.0005102040595375001,0.0038265306502580643,9.215718466126788e-19,4.653541724303152e-22,-1.3728627769250236e-20,-0.0001700680295471102,-1.1473862605132111e-33,-7.299523170133816e-21,-0.00019841270113829523,6.505213034913027e-19,-0.0001700680295471102,-0.00039682540227659047,0.00042517005931586027,-0.0006377550889737904,1.3010426069826053e-18,1.0575966318657723e-18,9.215718466126788e-19,0.00012755101488437504,-1.2874900798265365e-19,-8.131516293641283e-20,-6.776263578034403e-20,-1.6184009696919903e-19,-6.473603361780078e-20,-5.664402941557569e-20,-1.1322644680021324e-19,-4.8552028444524855e-20,-8.474108007731751e-20,0.0006802721181884408,-0.0002721088530961424,-0.0003401360590942204,-7.041768521383464e-20,4.653541724303152e-22,-1.2874900798265365e-19,0.0001360544265480712,2.1589552928127537e-20,1.762819789930816e-20,-6.362264205095587e-20,8.221903062345034e-21,-2.2267923425364848e-20,1.1585672321704466e-34,5.208129888307621e-35,8.651638422052036e-35,0.000583090353757143,-0.0002332361473236233,-2.5777116812879593e-21,-0.0002332361473236233,-1.3728627769250236e-20,-8.131516293641283e-20,2.1589552928127537e-20,9.329446038464084e-05,-3.5392849095738456e-21,1.0360814095809854e-34,-2.0621906707805348e-20,5.286534948031782e-23,-5.038161301899864e-20,8.470329472543003e-21,1.9927478435660397e-22,0.0005102040595375001,-0.0002040816325461492,-6.481546234365148e-20,2.1002072131868758e-20,-0.0001700680295471102,-6.776263578034403e-20,1.762819789930816e-20,-3.5392849095738456e-21,6.80272132740356e-05,8.688913301998863e-35,1.664720294077928e-22,6.776263578034403e-21,5.814189113840226e-22,-5.2139900117666605e-21,-2.5652206885829117e-20,0.0005668934318237007,9.364456913997245e-19,-0.0011337868636474013,-1.2933846792662547e-33,-1.1473862605132111e-33,-1.6184009696919903e-19,-6.362264205095587e-20,1.0360814095809854e-34,8.688913301998863e-35,0.00028344671591185033,7.183592340697001e-35,7.663367949303343e-35,1.4117603353485429e-34,6.160408882168295e-35,1.038143001675362e-34,0.0006802721181884408,3.582917313636954e-19,-0.0003401360590942204,-0.0002721088530961424,-7.299523170133816e-21,-6.473603361780078e-20,8.221903062345034e-21,-2.0621906707805348e-20,1.664720294077928e-22,7.183592340697001e-35,0.0001360544265480712,6.167624421581441e-23,-4.988786051031264e-21,1.6940658945086007e-21,3.884347310775917e-22,0.0005952381179668009,3.0729506432282384e-19,-0.00029761905898340046,-0.0,-0.00019841270113829523,-5.664402941557569e-20,-2.2267923425364848e-20,5.286534948031782e-23,6.776263578034403e-21,7.663367949303343e-35,6.167624421581441e-23,9.920635056914762e-05,1.4455368692840803e-22,-3.46653527337015e-22,-9.382519048907194e-21,0.00042517005931586027,6.911788849595091e-19,1.2038304382337298e-20,-0.0006377550889737904,6.505213034913027e-19,-1.1322644680021324e-19,1.1585672321704466e-34,-5.038161301899864e-20,5.814189113840226e-22,1.4117603353485429e-34,-4.988786051031264e-21,1.4455368692840803e-22,0.00012755101488437504,-5.873663480662146e-20,-7.835408252567174e-20,0.0005102040595375001,2.372262748440761e-19,-3.1952042299911036e-21,-0.0002040816325461492,-0.0001700680295471102,-4.8552028444524855e-20,5.208129888307621e-35,8.470329472543003e-21,-5.2139900117666605e-21,6.160408882168295e-35,1.6940658945086007e-21,-3.46653527337015e-22,-5.873663480662146e-20,6.80272132740356e-05,-2.6848671943098787e-20,0.0003306878206785768,5.0141052094762025e-19,2.71764697258042e-20,4.695629299909864e-19,-0.00039682540227659047,-8.474108007731751e-20,8.651638422052036e-35,1.9927478435660397e-22,-2.5652206885829117e-20,1.038143001675362e-34,3.884347310775917e-22,-9.382519048907194e-21,-7.835408252567174e-20,-2.6848671943098787e-20,6.613756704609841e-05,6.0,5.0,6.0,8.0,0.031098827719688416,-0.006310232449322939,-0.007275132462382317,-0.006310232449322939,-0.004993386100977659,0.00037202381645329297,0.0005952381179668009,0.0005102040595375001,0.00039682540227659047,0.0004960317746736109,0.0005952381179668009,0.00046296295477077365,0.00037202381645329297,0.00039682540227659047,0.00023148147738538682,-0.006310232449322939,0.004570223856717348,0.0005952381179668009,0.0005102040595375001,0.00039682540227659047,-0.0005580357392318547,-0.0002380952355451882,-0.0002040816325461492,-0.00015873015217948705,-1.4161008452493172e-18,-5.664403070804539e-19,-4.435293330660464e-19,-9.735692470983746e-19,-3.9343356910982166e-19,-5.802789353308895e-19,-0.007275132462382317,0.0005952381179668009,0.006613756529986858,0.0005952381179668009,0.00046296295477077365,-1.966177296765576e-18,-0.00029761905898340046,-1.1678222298022566e-33,-2.964615315390051e-21,-0.0009920635493472219,-0.00029761905898340046,-0.00023148147738538682,-3.445178883666285e-33,-1.7787691892340307e-20,-1.0879578632721793e-20,-0.006310232449322939,0.0005102040595375001,0.0005952381179668009,0.004570223856717348,0.00039682540227659047,-1.630208481797696e-18,-1.4120628644317613e-33,-0.0002040816325461492,-1.580669610726524e-20,-4.136902942511476e-33,-0.0002380952355451882,-1.7787691892340307e-20,-0.0005580357392318547,-0.00015873015217948705,-5.763634242025815e-19,-0.004993386100977659,0.00039682540227659047,0.00046296295477077365,0.00039682540227659047,0.0025840892922133207,-1.3201655751787594e-18,-1.1435082311814515e-33,-7.84119935200738e-34,-0.00011337868636474013,-3.3501217983030716e-33,-1.3400486825870302e-33,-0.00013227513409219682,-9.551262213657392e-19,-0.00011337868636474013,-0.00023148147738538682,0.00037202381645329297,-0.0005580357392318547,-1.966177296765576e-18,-1.630208481797696e-18,-1.3201655751787594e-18,0.00011160714348079637,9.66724818667987e-20,6.628969852802558e-20,7.365522489492744e-20,2.8322015354022696e-19,1.1328805883115137e-19,8.811293967272215e-20,1.9471385717449317e-19,7.552537686233327e-20,1.101411794376641e-19,0.0005952381179668009,-0.0002380952355451882,-0.00029761905898340046,-1.4120628644317613e-33,-1.1435082311814515e-33,9.66724818667987e-20,0.0001190476177725941,5.741917396035584e-35,6.379908345366615e-35,2.4532117107729966e-34,9.812846613503246e-35,7.632214479147298e-35,1.6865831085536203e-34,6.541898124983398e-35,9.540267955441159e-35,0.0005102040595375001,-0.0002040816325461492,-1.1678222298022566e-33,-0.0002040816325461492,-7.84119935200738e-34,6.628969852802558e-20,5.741917396035584e-35,8.163265010807663e-05,4.374794220169298e-35,1.6822023257981437e-34,6.728809188398205e-35,5.233518385192348e-35,1.1565141348594645e-34,4.48587298358942e-35,6.541898124983398e-35,0.00039682540227659047,-0.00015873015217948705,-2.964615315390051e-21,-1.580669610726524e-20,-0.00011337868636474013,7.365522489492744e-20,6.379908345366615e-35,4.374794220169298e-35,4.535147309070453e-05,1.8691137335960608e-34,7.476454590001133e-35,8.470329472543003e-22,1.734935874813245e-34,4.516198945489609e-21,8.449452855598843e-21,0.0004960317746736109,-1.4161008452493172e-18,-0.0009920635493472219,-4.136902942511476e-33,-3.3501217983030716e-33,2.8322015354022696e-19,2.4532117107729966e-34,1.6822023257981437e-34,1.8691137335960608e-34,0.00024801588733680546,2.8748576314043644e-34,2.2360003289614522e-34,4.941161575500196e-34,1.9165716777399962e-34,2.7950004685990004e-34,0.0005952381179668009,-5.664403070804539e-19,-0.00029761905898340046,-0.0002380952355451882,-1.3400486825870302e-33,1.1328805883115137e-19,9.812846613503246e-35,6.728809188398205e-35,7.476454590001133e-35,2.8748576314043644e-34,0.0001190476177725941,8.944001315845809e-35,1.976464492446834e-34,7.666286596165614e-35,1.1180001644807261e-34,0.00046296295477077365,-4.435293330660464e-19,-0.00023148147738538682,-1.7787691892340307e-20,-0.00013227513409219682,8.811293967272215e-20,7.632214479147298e-35,5.233518385192348e-35,8.470329472543003e-22,2.2360003289614522e-34,8.944001315845809e-35,6.613756704609841e-05,1.5798644075051544e-34,5.082197683525802e-21,3.1084510379205122e-21,0.00037202381645329297,-9.735692470983746e-19,-3.445178883666285e-33,-0.0005580357392318547,-9.551262213657392e-19,1.9471385717449317e-19,1.6865831085536203e-34,1.1565141348594645e-34,1.734935874813245e-34,4.941161575500196e-34,1.976464492446834e-34,1.5798644075051544e-34,0.00011160714348079637,7.365522489492744e-20,1.101411794376641e-19,0.00039682540227659047,-3.9343356910982166e-19,-1.7787691892340307e-20,-0.00015873015217948705,-0.00011337868636474013,7.552537686233327e-20,6.541898124983398e-35,4.48587298358942e-35,4.516198945489609e-21,1.9165716777399962e-34,7.666286596165614e-35,5.082197683525802e-21,7.365522489492744e-20,4.535147309070453e-05,7.330730659005653e-21,0.00023148147738538682,-5.802789353308895e-19,-1.0879578632721793e-20,-5.763634242025815e-19,-0.00023148147738538682,1.101411794376641e-19,9.540267955441159e-35,6.541898124983398e-35,8.449452855598843e-21,2.7950004685990004e-34,1.1180001644807261e-34,3.1084510379205122e-21,1.101411794376641e-19,7.330730659005653e-21,3.3068783523049206e-05,6.0,5.0,7.0,3.0,0.06013794243335724,-0.01343537401407957,-0.015476190485060215,-0.011876417323946953,-0.022363945841789246,0.0008503401186317205,0.0013605442363768816,0.0010204081190750003,0.0020408162381500006,0.0011337868636474013,0.0011904762359336019,0.0023809524718672037,0.0006613756413571537,0.0017857142956927419,0.0023809524718672037,-0.01343537401407957,0.010051020421087742,0.0013605442363768816,0.0010204081190750003,0.0020408162381500006,-0.0012755101779475808,-0.0005442177061922848,-0.0004081632650922984,-0.0008163265301845968,1.872891382799449e-18,6.035393575534572e-19,7.874888678475535e-19,9.486769009248164e-19,5.501846570801384e-19,4.1573100834277045e-18,-0.015476190485060215,0.0013605442363768816,0.01454081665724516,0.0011904762359336019,0.0023809524718672037,2.4936649967166602e-18,-0.0006802721181884408,-1.4011365534321677e-19,-4.0519623251669057e-19,-0.0022675737272948027,-0.0005952381179668009,-0.0011904762359336019,1.6861979851665436e-20,2.0328790734103208e-20,-1.185218480902671e-32,-0.011876417323946953,0.0010204081190750003,0.0011904762359336019,0.007397959008812904,0.0017857142956927419,1.7142788799569465e-18,9.307083448606304e-22,-0.0003401360590942204,-2.578695234579202e-19,-2.2023663590953053e-33,-0.00039682540227659047,-1.5890654058652236e-33,-0.0007936508045531809,-0.0005952381179668009,-1.5860329011843016e-18,-0.022363945841789246,0.0020408162381500006,0.0023809524718672037,0.0017857142956927419,0.046173468232154846,4.174178364069192e-18,-2.9275948470752404e-19,-8.036643201025426e-20,-0.0020408162381500006,-5.255275614723493e-33,2.0328790734103208e-20,-0.0023809524718672037,1.0842021724855044e-19,-0.0017857142956927419,-0.014285714365541935,0.0008503401186317205,-0.0012755101779475808,2.4936649967166602e-18,1.7142788799569465e-18,4.174178364069192e-18,0.00025510202976875007,-2.574980159653073e-19,-1.3552527156068805e-19,-4.0657581468206416e-19,-3.2368019393839806e-19,-1.1328805883115137e-19,-2.2657611766230274e-19,-1.6690135664346958e-19,-1.699320947090756e-19,-1.1328806141609079e-18,0.0013605442363768816,-0.0005442177061922848,-0.0006802721181884408,9.307083448606304e-22,-2.9275948470752404e-19,-2.574980159653073e-19,0.0002721088530961424,3.525639579861632e-20,7.051279159723263e-20,-1.2724528410191175e-19,-4.4535846850729697e-20,5.823874962604696e-20,1.7002350290293567e-34,2.1508887982434088e-34,1.3160923832237604e-33,0.0010204081190750003,-0.0004081632650922984,-1.4011365534321677e-19,-0.0003401360590942204,-8.036643201025426e-20,-1.3552527156068805e-19,3.525639579861632e-20,0.0001360544265480712,7.752024892530134e-21,1.7377826603997725e-34,1.7324220333304858e-20,1.3472785008986901e-34,-3.759263819180163e-20,2.0328790734103208e-20,6.831063995567171e-34,0.0020408162381500006,-0.0008163265301845968,-4.0519623251669057e-19,-2.578695234579202e-19,-0.0020408162381500006,-4.0657581468206416e-19,7.051279159723263e-20,7.752024892530134e-21,0.0008163265301845968,5.033112325205865e-34,1.7410121704165385e-34,2.2891424706126044e-19,2.527783052008247e-34,2.38489457187627e-19,1.5070930907744114e-18,0.0011337868636474013,1.872891382799449e-18,-0.0022675737272948027,-2.2023663590953053e-33,-5.255275614723493e-33,-3.2368019393839806e-19,-1.2724528410191175e-19,1.7377826603997725e-34,5.033112325205865e-34,0.0005668934318237007,1.5326735898606687e-34,2.3764847608541777e-34,2.076286003350724e-34,2.1561431661560882e-34,1.4374287468255601e-33,0.0011904762359336019,6.035393575534572e-19,-0.0005952381179668009,-0.00039682540227659047,2.0328790734103208e-20,-1.1328805883115137e-19,-4.4535846850729697e-20,1.7324220333304858e-20,1.7410121704165385e-34,1.5326735898606687e-34,0.00019841270113829523,8.317696433400882e-35,-5.620659950555145e-21,-6.776263578034403e-21,4.875103384758791e-34,0.0023809524718672037,7.874888678475535e-19,-0.0011904762359336019,-1.5890654058652236e-33,-0.0023809524718672037,-2.2657611766230274e-19,5.823874962604696e-20,1.3472785008986901e-34,2.2891424706126044e-19,2.3764847608541777e-34,8.317696433400882e-35,0.0011904762359336019,1.4534001564277589e-34,2.1385164906122638e-34,1.349707572730943e-33,0.0006613756413571537,9.486769009248164e-19,1.6861979851665436e-20,-0.0007936508045531809,1.0842021724855044e-19,-1.6690135664346958e-19,1.7002350290293567e-34,-3.759263819180163e-20,2.527783052008247e-34,2.076286003350724e-34,-5.620659950555145e-21,1.4534001564277589e-34,0.00013227513409219682,-5.733761551244e-21,7.073986331649328e-34,0.0017857142956927419,5.501846570801384e-19,2.0328790734103208e-20,-0.0005952381179668009,-0.0017857142956927419,-1.699320947090756e-19,2.1508887982434088e-34,2.0328790734103208e-20,2.38489457187627e-19,2.1561431661560882e-34,-6.776263578034403e-21,2.1385164906122638e-34,-5.733761551244e-21,0.0005952381179668009,1.5860329011843016e-18,0.0023809524718672037,4.1573100834277045e-18,-1.185218480902671e-32,-1.5860329011843016e-18,-0.014285714365541935,-1.1328806141609079e-18,1.3160923832237604e-33,6.831063995567171e-34,1.5070930907744114e-18,1.4374287468255601e-33,4.875103384758791e-34,1.349707572730943e-33,7.073986331649328e-34,1.5860329011843016e-18,0.0071428571827709675,6.0,5.0,7.0,4.0,0.04833900183439255,-0.010382653214037418,-0.011964285746216774,-0.009175170212984085,-0.01413265336304903,0.0006377550889737904,0.0010204081190750003,0.0007653061184100807,0.0012244897661730647,0.0008503401186317205,0.0008928571478463709,0.0014285714132711291,0.0004960317746736109,0.0010714285308495164,0.0011904762359336019,-0.010382653214037418,0.007660714443773031,0.0010204081190750003,0.0007653061184100807,0.0012244897661730647,-0.0009566326625645161,-0.0004081632650922984,-0.0003061224415432662,-0.0004897959297522902,-5.495073719343376e-18,-2.365694158895266e-18,-3.7549466860150666e-18,-2.7549798308234403e-19,-1.1770364458371776e-18,-2.6872960356952302e-19,-0.011964285746216774,0.0010204081190750003,0.011084184050559998,0.0008928571478463709,0.0014285714132711291,-5.719166459861036e-18,-0.0005102040595375001,-1.0074860303573099e-18,-1.5798900511603297e-18,-0.001700680237263441,-0.00044642857392318547,-0.0007142857066355646,5.079393541249247e-19,1.213346676198535e-18,1.1706433736779084e-18,-0.009175170212984085,0.0007653061184100807,0.0008928571478463709,0.005637755151838064,0.0010714285308495164,-1.1654394770467607e-18,-1.1436072855493424e-18,-0.00025510202976875007,-1.2448067330381877e-18,1.721798778905666e-18,-0.00029761905898340046,-4.39054182554558e-19,-0.0005952381179668009,-0.0003571428533177823,3.1610275423831776e-19,-0.01413265336304903,0.0012244897661730647,0.0014285714132711291,0.0010714285308495164,0.01775510236620903,-1.8422406187916028e-18,-1.833285768275257e-18,-1.1824595453306518e-18,-0.0008163265301845968,2.581169538586501e-18,-4.492185779216096e-19,-0.0009523809421807528,-4.0657581468206416e-19,-0.0007142857066355646,-0.0035714285913854837,0.0006377550889737904,-0.0009566326625645161,-5.719166459861036e-18,-1.1654394770467607e-18,-1.8422406187916028e-18,0.00019132652960252017,2.168404344971009e-19,4.0657581468206416e-20,5.421010862427522e-20,7.889704517222125e-19,2.9384091996086056e-19,4.701454719373769e-19,2.672082083967106e-20,1.189524624189438e-19,4.9563528162009426e-20,0.0010204081190750003,-0.0004081632650922984,-0.0005102040595375001,-1.1436072855493424e-18,-1.833285768275257e-18,2.168404344971009e-19,0.0002040816325461492,1.3685584327476788e-19,2.181999058338318e-19,5.792841472467179e-19,2.1267564473638175e-19,3.4028103674808963e-19,4.531522547116511e-20,5.437827185786784e-20,1.3594567318232106e-19,0.0007653061184100807,-0.0003061224415432662,-1.0074860303573099e-18,-0.00025510202976875007,-1.1824595453306518e-18,4.0657581468206416e-20,1.3685584327476788e-19,0.0001020408162730746,1.5375112360843711e-19,4.8552028444524855e-20,4.3758041812162696e-20,1.3594567318232106e-19,-3.2866881035278026e-20,6.437450399132683e-20,5.664402941557569e-20,0.0012244897661730647,-0.0004897959297522902,-1.5798900511603297e-18,-1.2448067330381877e-18,-0.0008163265301845968,5.421010862427522e-20,2.181999058338318e-19,1.5375112360843711e-19,0.00032653060043230653,7.768324551123977e-20,1.3594567318232106e-19,6.553810800629312e-20,5.1357256395633595e-20,7.817280072455191e-20,-4.0144825131181866e-19,0.0008503401186317205,-5.495073719343376e-18,-0.001700680237263441,1.721798778905666e-18,2.581169538586501e-18,7.889704517222125e-19,5.792841472467179e-19,4.8552028444524855e-20,7.768324551123977e-20,0.00042517005931586027,-5.304758382151437e-20,-8.48761366993624e-20,-1.5734453836103525e-19,-3.398641894181512e-19,-3.776268713869693e-19,0.0008928571478463709,-2.365694158895266e-18,-0.00044642857392318547,-0.00029761905898340046,-4.492185779216096e-19,2.9384091996086056e-19,2.1267564473638175e-19,4.3758041812162696e-20,1.3594567318232106e-19,-5.304758382151437e-20,0.00014880952949170023,4.9594996568203386e-20,2.716898147943861e-21,3.3881317890172014e-21,1.6851887013388314e-34,0.0014285714132711291,-3.7549466860150666e-18,-0.0007142857066355646,-4.39054182554558e-19,-0.0009523809421807528,4.701454719373769e-19,3.4028103674808963e-19,1.3594567318232106e-19,6.553810800629312e-20,-8.48761366993624e-20,4.9594996568203386e-20,0.0004761904710903764,1.925929944387236e-34,6.379642940782719e-34,5.09220708945109e-34,0.0004960317746736109,-2.7549798308234403e-19,5.079393541249247e-19,-0.0005952381179668009,-4.0657581468206416e-19,2.672082083967106e-20,4.531522547116511e-20,-3.2866881035278026e-20,5.1357256395633595e-20,-1.5734453836103525e-19,2.716898147943861e-21,1.925929944387236e-34,9.920635056914762e-05,4.229629411633359e-20,2.2028234918180537e-20,0.0010714285308495164,-1.1770364458371776e-18,1.213346676198535e-18,-0.0003571428533177823,-0.0007142857066355646,1.189524624189438e-19,5.437827185786784e-20,6.437450399132683e-20,7.817280072455191e-20,-3.398641894181512e-19,3.3881317890172014e-21,6.379642940782719e-34,4.229629411633359e-20,0.0002380952355451882,-4.813677796090955e-19,0.0011904762359336019,-2.6872960356952302e-19,1.1706433736779084e-18,3.1610275423831776e-19,-0.0035714285913854837,4.9563528162009426e-20,1.3594567318232106e-19,5.664402941557569e-20,-4.0144825131181866e-19,-3.776268713869693e-19,1.6851887013388314e-34,5.09220708945109e-34,2.2028234918180537e-20,-4.813677796090955e-19,0.0011904762359336019,6.0,5.0,7.0,5.0,0.04048752784729004,-0.008469387888908386,-0.009761904366314411,-0.007482993416488171,-0.009761904366314411,0.0005102040595375001,0.0008163265301845968,0.0006122448830865324,0.0008163265301845968,0.0006802721181884408,0.0007142857066355646,0.0009523809421807528,0.00039682540227659047,0.0007142857066355646,0.0006802721181884408,-0.008469387888908386,0.006193877663463354,0.0008163265301845968,0.0006122448830865324,0.0008163265301845968,-0.0007653061184100807,-0.00032653060043230653,-0.0002448979648761451,-0.00032653060043230653,1.1237348917182153e-18,2.768584108466582e-19,3.128309188735467e-19,4.2012834183813297e-19,3.1193875288411997e-19,1.1237348917182153e-18,-0.009761904366314411,0.0008163265301845968,0.008962584659457207,0.0007142857066355646,0.0009523809421807528,1.4094628242311558e-18,-0.0004081632650922984,-6.49437851985223e-20,-9.82913324867018e-20,-0.0013605442363768816,-0.0003571428533177823,-0.0004761904710903764,-2.306535946319578e-20,-5.204069611433735e-34,-1.692668886171892e-33,-0.007482993416488171,0.0006122448830865324,0.0007142857066355646,0.004557823296636343,0.0007142857066355646,1.0810743957942883e-18,-3.646999900420232e-20,-0.0002040816325461492,5.2542557745808067e-20,-1.3473902876563885e-33,-0.0002380952355451882,-6.3444864761435166e-34,-0.0004761904710903764,-0.0002380952355451882,-1.3980562063932407e-33,-0.009761904366314411,0.0008163265301845968,0.0009523809421807528,0.0007142857066355646,0.008962584659457207,1.3823577699190182e-18,-9.82913324867018e-20,-1.1011560792450884e-20,-0.0004081632650922984,-1.692668886171892e-33,-5.168994421208633e-34,-0.0004761904710903764,-1.3552527156068805e-20,-0.0003571428533177823,-0.0013605442363768816,0.0005102040595375001,-0.0007653061184100807,1.4094628242311558e-18,1.0810743957942883e-18,1.3823577699190182e-18,0.0001530612207716331,-1.0164395367051604e-19,-7.453889935837843e-20,-8.809142651444724e-20,-1.9420811377809942e-19,-6.797283659116053e-20,-9.063045094233022e-20,-9.889211118065965e-20,-6.797283659116053e-20,-1.9420811377809942e-19,0.0008163265301845968,-0.00032653060043230653,-0.0004081632650922984,-3.646999900420232e-20,-9.82913324867018e-20,-1.0164395367051604e-19,0.00016326530021615326,7.681601449363754e-21,1.1252263888355279e-20,-7.634716787620763e-20,8.632998094293251e-21,3.5080335575113234e-20,6.206610172341678e-35,4.034615453385314e-35,1.0766768314801446e-34,0.0006122448830865324,-0.0002448979648761451,-6.49437851985223e-20,-0.0002040816325461492,-1.1011560792450884e-20,-7.453889935837843e-20,7.681601449363754e-21,8.163265010807663e-05,-1.389128669747768e-20,1.1063216740230548e-34,1.5246593050577406e-20,5.327878783522833e-35,2.4878261484924986e-20,1.5246593050577406e-20,1.2072021629920167e-34,0.0008163265301845968,-0.00032653060043230653,-9.82913324867018e-20,5.2542557745808067e-20,-0.0004081632650922984,-8.809142651444724e-20,1.1252263888355279e-20,-1.389128669747768e-20,0.00016326530021615326,1.0766768314801446e-34,3.76158192263132e-35,3.5080335575113234e-20,5.416677968589101e-35,-8.907169693263366e-21,-7.634716787620763e-20,0.0006802721181884408,1.1237348917182153e-18,-0.0013605442363768816,-1.3473902876563885e-33,-1.692668886171892e-33,-1.9420811377809942e-19,-7.634716787620763e-20,1.1063216740230548e-34,1.0766768314801446e-34,0.0003401360590942204,7.542771871636073e-35,8.954848809857621e-35,1.2457715790515605e-34,8.624572779418723e-35,2.464163552867318e-34,0.0007142857066355646,2.768584108466582e-19,-0.0003571428533177823,-0.0002380952355451882,-5.168994421208633e-34,-6.797283659116053e-20,8.632998094293251e-21,1.5246593050577406e-20,3.76158192263132e-35,7.542771871636073e-35,0.0001190476177725941,3.893849143916569e-35,7.688453154398593e-21,-0.0,8.624572779418723e-35,0.0009523809421807528,3.128309188735467e-19,-0.0004761904710903764,-6.3444864761435166e-34,-0.0004761904710903764,-9.063045094233022e-20,3.5080335575113234e-20,5.327878783522833e-35,3.5080335575113234e-20,8.954848809857621e-35,3.893849143916569e-35,0.0002380952355451882,5.813600740505406e-35,3.727932822867181e-35,8.954848809857621e-35,0.00039682540227659047,4.2012834183813297e-19,-2.306535946319578e-20,-0.0004761904710903764,-1.3552527156068805e-20,-9.889211118065965e-20,6.206610172341678e-35,2.4878261484924986e-20,5.416677968589101e-35,1.2457715790515605e-34,7.688453154398593e-21,5.813600740505406e-35,7.936507608974352e-05,9.121893744157985e-22,1.2457715790515605e-34,0.0007142857066355646,3.1193875288411997e-19,-5.204069611433735e-34,-0.0002380952355451882,-0.0003571428533177823,-6.797283659116053e-20,4.034615453385314e-35,1.5246593050577406e-20,-8.907169693263366e-21,8.624572779418723e-35,-0.0,3.727932822867181e-35,9.121893744157985e-22,0.0001190476177725941,8.815062557324436e-35,0.0006802721181884408,1.1237348917182153e-18,-1.692668886171892e-33,-1.3980562063932407e-33,-0.0013605442363768816,-1.9420811377809942e-19,1.0766768314801446e-34,1.2072021629920167e-34,-7.634716787620763e-20,2.464163552867318e-34,8.624572779418723e-35,8.954848809857621e-35,1.2457715790515605e-34,8.815062557324436e-35,0.0003401360590942204,6.0,5.0,7.0,6.0,0.0348612442612648,-0.0071550048887729645,-0.008248299360275269,-0.006320861633867025,-0.0071550048887729645,0.00042517005931586027,0.0006802721181884408,0.0005102040595375001,0.000583090353757143,0.0005668934318237007,0.0005952381179668009,0.0006802721181884408,0.0003306878206785768,0.0005102040595375001,0.00042517005931586027,-0.0071550048887729645,0.005200437270104885,0.0006802721181884408,0.0005102040595375001,0.000583090353757143,-0.0006377550889737904,-0.0002721088530961424,-0.0002040816325461492,-0.0002332361473236233,9.364456913997245e-19,3.0190370788535634e-19,3.583070859038159e-19,4.607859233063394e-19,1.6837349256456962e-19,7.137670161392243e-19,-0.008248299360275269,0.0006802721181884408,0.0075255101546645164,0.0005952381179668009,0.0006802721181884408,1.328147661294743e-18,-0.0003401360590942204,-6.927419202751104e-20,-3.6814824267505395e-21,-0.0011337868636474013,-0.00029761905898340046,-0.0003401360590942204,1.0257129260743474e-20,-2.5375227396420297e-20,-7.920478124013284e-21,-0.006320861633867025,0.0005102040595375001,0.0005952381179668009,0.0038265306502580643,0.0005102040595375001,8.81471784877333e-19,4.653541724303152e-22,-0.0001700680295471102,-7.497318210466584e-20,-1.1473862605132111e-33,-0.00019841270113829523,-2.371692252312041e-20,-0.00039682540227659047,-0.0001700680295471102,-6.514009195998733e-20,-0.0071550048887729645,0.000583090353757143,0.0006802721181884408,0.0005102040595375001,0.005200437270104885,1.0570971181733668e-18,-7.041768521383464e-20,-8.346415554960572e-21,-0.0002332361473236233,-1.2933846792662547e-33,-2.867232569720405e-21,-0.0002721088530961424,-0.0,-0.0002040816325461492,-0.0006377550889737904,0.00042517005931586027,-0.0006377550889737904,1.328147661294743e-18,8.81471784877333e-19,1.0570971181733668e-18,0.00012755101488437504,-1.2874900798265365e-19,-6.776263578034403e-20,-8.131516293641283e-20,-1.6184009696919903e-19,-5.664402941557569e-20,-6.473603361780078e-20,-8.115931047678048e-20,-4.8552028444524855e-20,-1.1668461752265896e-19,0.0006802721181884408,-0.0002721088530961424,-0.0003401360590942204,4.653541724303152e-22,-7.041768521383464e-20,-1.2874900798265365e-19,0.0001360544265480712,1.762819789930816e-20,2.1589552928127537e-20,-6.362264205095587e-20,-2.2267923425364848e-20,8.221903062345034e-21,8.501175145146783e-35,5.875964504030745e-35,1.1435209044799213e-34,0.0005102040595375001,-0.0002040816325461492,-6.927419202751104e-20,-0.0001700680295471102,-8.346415554960572e-21,-6.776263578034403e-20,1.762819789930816e-20,6.80272132740356e-05,9.634905263170334e-22,8.688913301998863e-35,8.470329472543003e-21,-8.291524492717181e-23,-1.8796319095900816e-20,1.6940658945086007e-21,1.8820426382241783e-22,0.000583090353757143,-0.0002332361473236233,-3.6814824267505395e-21,-7.497318210466584e-20,-0.0002332361473236233,-8.131516293641283e-20,2.1589552928127537e-20,9.634905263170334e-22,9.329446038464084e-05,1.0360814095809854e-34,1.7652587862910458e-22,-2.0328790734103208e-20,4.472240536137721e-22,2.772177885110698e-20,-5.143847196085438e-20,0.0005668934318237007,9.364456913997245e-19,-0.0011337868636474013,-1.1473862605132111e-33,-1.2933846792662547e-33,-1.6184009696919903e-19,-6.362264205095587e-20,8.688913301998863e-35,1.0360814095809854e-34,0.00028344671591185033,7.663367949303343e-35,7.183592340697001e-35,1.038143001675362e-34,6.160408882168295e-35,1.4117603353485429e-34,0.0005952381179668009,3.0190370788535634e-19,-0.00029761905898340046,-0.00019841270113829523,-2.867232569720405e-21,-5.664402941557569e-20,-2.2267923425364848e-20,8.470329472543003e-21,1.7652587862910458e-22,7.663367949303343e-35,9.920635056914762e-05,-9.673445346684832e-23,-3.257818934694205e-21,-0.0,4.82687958251143e-22,0.0006802721181884408,3.583070859038159e-19,-0.0003401360590942204,-2.371692252312041e-20,-0.0002721088530961424,-6.473603361780078e-20,8.221903062345034e-21,-8.291524492717181e-23,-2.0328790734103208e-20,7.183592340697001e-35,-9.673445346684832e-23,0.0001360544265480712,-1.9346890693369664e-22,1.0150090958568119e-20,2.5889656593142637e-21,0.0003306878206785768,4.607859233063394e-19,1.0257129260743474e-20,-0.00039682540227659047,-0.0,-8.115931047678048e-20,8.501175145146783e-35,-1.8796319095900816e-20,4.472240536137721e-22,1.038143001675362e-34,-3.257818934694205e-21,-1.9346890693369664e-22,6.613756704609841e-05,2.7365679212990036e-21,-2.0924046543443846e-21,0.0005102040595375001,1.6837349256456962e-19,-2.5375227396420297e-20,-0.0001700680295471102,-0.0002040816325461492,-4.8552028444524855e-20,5.875964504030745e-35,1.6940658945086007e-21,2.772177885110698e-20,6.160408882168295e-35,-0.0,1.0150090958568119e-20,2.7365679212990036e-21,6.80272132740356e-05,3.0921933845921507e-20,0.00042517005931586027,7.137670161392243e-19,-7.920478124013284e-21,-6.514009195998733e-20,-0.0006377550889737904,-1.1668461752265896e-19,1.1435209044799213e-34,1.8820426382241783e-22,-5.143847196085438e-20,1.4117603353485429e-34,4.82687958251143e-22,2.5889656593142637e-21,-2.0924046543443846e-21,3.0921933845921507e-20,0.00012755101488437504,6.0,5.0,7.0,7.0,0.030622368678450584,-0.006195335183292627,-0.0071428571827709675,-0.005472545977681875,-0.005472545977681875,0.00036443150020204484,0.000583090353757143,0.0004373177944216877,0.0004373177944216877,0.00048590864753350616,0.0005102040595375001,0.0005102040595375001,0.00028344671591185033,0.00038265305920504034,0.00028344671591185033,-0.006195335183292627,0.004482507240027189,0.000583090353757143,0.0004373177944216877,0.0004373177944216877,-0.000546647235751152,-0.0002332361473236233,-0.0001749271177686751,-0.0001749271177686751,-5.388213151139795e-19,3.905676080071756e-20,4.2983681205365154e-20,7.995991022080595e-19,4.411951844737866e-19,8.114545649398992e-19,-0.0071428571827709675,0.000583090353757143,0.0064868805930018425,0.0005102040595375001,0.0005102040595375001,-1.0299920638612292e-18,-0.0002915451768785715,6.797197451386588e-19,6.843270894517909e-19,-0.0009718172950670123,-0.00025510202976875007,-0.00025510202976875007,6.609001454321586e-19,9.469173843643395e-19,6.760812361179795e-19,-0.005472545977681875,0.0004373177944216877,0.0005102040595375001,0.0032981049735099077,0.00038265305920504034,5.813365891416151e-19,3.1226507563577214e-19,-0.00014577258843928576,5.552497941635303e-19,1.5277741570518856e-18,-0.0001700680295471102,5.488773498207866e-19,-0.0003401360590942204,-0.00012755101488437504,9.174551754991555e-19,-0.005472545977681875,0.0004373177944216877,0.0005102040595375001,0.00038265305920504034,0.0032981049735099077,5.831890084246393e-19,3.1226507563577214e-19,5.440479075131841e-19,-0.00014577258843928576,1.5277741570518856e-18,5.126870606482494e-19,-0.0001700680295471102,1.043544591017298e-18,-0.00012755101488437504,-0.0003401360590942204,0.00036443150020204484,-0.000546647235751152,-1.0299920638612292e-18,5.813365891416151e-19,5.831890084246393e-19,0.00010932944860542193,-0.0,-4.0657581468206416e-20,-4.0657581468206416e-20,1.7918010320438915e-19,3.4896769333786085e-20,3.4896769333786085e-20,-7.208710371102858e-20,-3.641401891001294e-20,-7.419664691758608e-20,0.000583090353757143,-0.0002332361473236233,-0.0002915451768785715,3.1226507563577214e-19,3.1226507563577214e-19,-0.0,0.00011661807366181165,-3.049199379785e-21,-3.049199379785e-21,1.5438859551737993e-19,7.496045612481217e-21,7.496045612481217e-21,-2.6973348417808416e-20,-3.641401891001294e-20,-2.6973348417808416e-20,0.0004373177944216877,-0.0001749271177686751,6.797197451386588e-19,-0.00014577258843928576,5.440479075131841e-19,-4.0657581468206416e-20,-3.049199379785e-21,5.8309036830905825e-05,-1.8448097060648732e-20,-1.1097606316967152e-19,-3.754113973632167e-20,-3.852302574164199e-20,-7.274133248972413e-20,-2.879912020664621e-20,-5.577484999988998e-20,0.0004373177944216877,-0.0001749271177686751,6.843270894517909e-19,5.552497941635303e-19,-0.00014577258843928576,-4.0657581468206416e-20,-3.049199379785e-21,-1.8448097060648732e-20,5.8309036830905825e-05,-1.1097606316967152e-19,-3.863642703374418e-20,-3.8963515573697816e-20,-5.538604926259592e-20,-3.32998939300782e-20,-7.248842847978458e-20,0.00048590864753350616,-5.388213151139795e-19,-0.0009718172950670123,1.5277741570518856e-18,1.5277741570518856e-18,1.7918010320438915e-19,1.5438859551737993e-19,-1.1097606316967152e-19,-1.1097606316967152e-19,0.00024295432376675308,-9.244335296405943e-20,-9.244335296405943e-20,-8.991115923857854e-20,-1.21380069495725e-19,-8.991115923857854e-20,0.0005102040595375001,3.905676080071756e-20,-0.00025510202976875007,-0.0001700680295471102,5.126870606482494e-19,3.4896769333786085e-20,7.496045612481217e-21,-3.754113973632167e-20,-3.863642703374418e-20,-9.244335296405943e-20,8.50340147735551e-05,-4.513619579850993e-20,-4.459278014132807e-20,-4.828087799349512e-20,-2.3122893752207963e-20,0.0005102040595375001,4.2983681205365154e-20,-0.00025510202976875007,5.488773498207866e-19,-0.0001700680295471102,3.4896769333786085e-20,7.496045612481217e-21,-3.852302574164199e-20,-3.8963515573697816e-20,-9.244335296405943e-20,-4.513619579850993e-20,8.50340147735551e-05,-2.2858286429070492e-20,-6.101211819887534e-20,-4.938853745718898e-20,0.00028344671591185033,7.995991022080595e-19,6.609001454321586e-19,-0.0003401360590942204,1.043544591017298e-18,-7.208710371102858e-20,-2.6973348417808416e-20,-7.274133248972413e-20,-5.538604926259592e-20,-8.991115923857854e-20,-4.459278014132807e-20,-2.2858286429070492e-20,5.668934318237007e-05,-7.232358043099071e-20,-1.076232287283556e-19,0.00038265305920504034,4.411951844737866e-19,9.469173843643395e-19,-0.00012755101488437504,-0.00012755101488437504,-3.641401891001294e-20,-3.641401891001294e-20,-2.879912020664621e-20,-3.32998939300782e-20,-1.21380069495725e-19,-4.828087799349512e-20,-6.101211819887534e-20,-7.232358043099071e-20,4.251700738677755e-05,-2.892245089727331e-20,0.00028344671591185033,8.114545649398992e-19,6.760812361179795e-19,9.174551754991555e-19,-0.0003401360590942204,-7.419664691758608e-20,-2.6973348417808416e-20,-5.577484999988998e-20,-7.248842847978458e-20,-8.991115923857854e-20,-2.3122893752207963e-20,-4.938853745718898e-20,-1.076232287283556e-19,-2.892245089727331e-20,5.668934318237007e-05,6.0,5.0,7.0,8.0,0.027310090139508247,-0.005463435314595699,-0.0062996032647788525,-0.004825680050998926,-0.004322562366724014,0.0003188775444868952,0.0005102040595375001,0.00038265305920504034,0.0003401360590942204,0.00042517005931586027,0.00044642857392318547,0.00039682540227659047,0.00024801588733680546,0.00029761905898340046,0.00019841270113829523,-0.005463435314595699,0.003939200658351183,0.0005102040595375001,0.00038265305920504034,0.0003401360590942204,-0.00047831633128225803,-0.0002040816325461492,-0.0001530612207716331,-0.0001360544265480712,-2.7141932091796756e-18,-1.1579353979272562e-18,-1.1800869845386966e-18,-7.887166494458265e-20,-3.4906427313672495e-19,-1.6155678760939962e-19,-0.0062996032647788525,0.0005102040595375001,0.005700821988284588,0.00044642857392318547,0.00039682540227659047,-3.1327207497373653e-18,-0.00025510202976875007,-5.703153897563234e-19,-1.2737502221111186e-19,-0.0008503401186317205,-0.00022321428696159273,-0.00019841270113829523,2.5561452571052406e-19,2.743135379933505e-19,1.3888344713306862e-20,-0.004825680050998926,0.00038265305920504034,0.00044642857392318547,0.0028982425574213266,0.00029761905898340046,-7.397272007848002e-19,-6.15531822074251e-19,-0.00012755101488437504,-5.332136283281095e-21,8.892214332411893e-19,-0.00014880952949170023,-1.2536087619363645e-19,-0.00029761905898340046,-9.920635056914762e-05,-2.3032955308933867e-19,-0.004322562366724014,0.0003401360590942204,0.00039682540227659047,0.00029761905898340046,0.0022270812187343836,-8.112943503950054e-19,-6.724840861279278e-19,-4.546833983372294e-19,-9.718172805150971e-05,7.346598406535121e-19,-1.5651663396544624e-19,-0.00011337868636474013,-2.0328790734103208e-19,-8.50340147735551e-05,-0.00019841270113829523,0.0003188775444868952,-0.00047831633128225803,-3.1327207497373653e-18,-7.397272007848002e-19,-8.112943503950054e-19,9.566326480126008e-05,1.60499133798674e-19,5.468171789570409e-20,3.327300086664742e-20,3.9448522586110626e-19,1.4692045998043028e-19,1.429587430600929e-19,1.6521176592532187e-20,4.231444039102147e-20,3.540251919252837e-20,0.0005102040595375001,-0.0002040816325461492,-0.00025510202976875007,-6.15531822074251e-19,-6.724840861279278e-19,1.60499133798674e-19,0.0001020408162730746,6.797283659116053e-20,6.65856353168635e-20,3.8841622755619884e-19,1.1328805883115137e-19,1.0789339367123366e-19,2.2657612735582555e-20,2.0499744086676057e-20,3.021015139116816e-20,0.00038265305920504034,-0.0001530612207716331,-5.703153897563234e-19,-0.00012755101488437504,-4.546833983372294e-19,5.468171789570409e-20,6.797283659116053e-20,5.10204081365373e-05,3.537138359728399e-20,2.4276014222262428e-20,2.7960077953356144e-20,4.326461888325201e-20,-3.3881317890172014e-21,2.456395547037471e-20,2.2224493212031547e-20,0.0003401360590942204,-0.0001360544265480712,-1.2737502221111186e-19,-5.332136283281095e-21,-9.718172805150971e-05,3.327300086664742e-20,6.65856353168635e-20,3.537138359728399e-20,3.887269122060388e-05,-4.932269581913432e-20,1.2829702163255305e-20,1.6940658945086007e-20,-2.1899353070161387e-20,-6.43271422467032e-21,-4.935992540904774e-20,0.00042517005931586027,-2.7141932091796756e-18,-0.0008503401186317205,8.892214332411893e-19,7.346598406535121e-19,3.9448522586110626e-19,3.8841622755619884e-19,2.4276014222262428e-20,-4.932269581913432e-20,0.00021258502965793014,-2.6523791910757184e-20,-2.0208603976038667e-20,-7.867226918051762e-20,-8.092004848459951e-20,-3.1468907025972196e-20,0.00044642857392318547,-1.1579353979272562e-18,-0.00022321428696159273,-0.00014880952949170023,-1.5651663396544624e-19,1.4692045998043028e-19,1.1328805883115137e-19,2.7960077953356144e-20,1.2829702163255305e-20,-2.6523791910757184e-20,7.440476474585012e-05,1.5080362059196925e-20,5.181776113084604e-22,4.235164736271502e-21,1.0774210039849315e-20,0.00039682540227659047,-1.1800869845386966e-18,-0.00019841270113829523,-1.2536087619363645e-19,-0.00011337868636474013,1.429587430600929e-19,1.0789339367123366e-19,4.326461888325201e-20,1.6940658945086007e-20,-2.0208603976038667e-20,1.5080362059196925e-20,5.668934318237007e-05,2.5027918571795646e-22,-4.168061324665271e-21,1.1826497677909706e-21,0.00024801588733680546,-7.887166494458265e-20,2.5561452571052406e-19,-0.00029761905898340046,-2.0328790734103208e-19,1.6521176592532187e-20,2.2657612735582555e-20,-3.3881317890172014e-21,-2.1899353070161387e-20,-7.867226918051762e-20,5.181776113084604e-22,2.5027918571795646e-22,4.960317528457381e-05,2.3371755563138516e-20,2.1627304352685206e-20,0.00029761905898340046,-3.4906427313672495e-19,2.743135379933505e-19,-9.920635056914762e-05,-8.50340147735551e-05,4.231444039102147e-20,2.0499744086676057e-20,2.456395547037471e-20,-6.43271422467032e-21,-8.092004848459951e-20,4.235164736271502e-21,-4.168061324665271e-21,2.3371755563138516e-20,2.8344671591185033e-05,4.652304285532786e-22,0.00019841270113829523,-1.6155678760939962e-19,1.3888344713306862e-20,-2.3032955308933867e-19,-0.00019841270113829523,3.540251919252837e-20,3.021015139116816e-20,2.2224493212031547e-20,-4.935992540904774e-20,-3.1468907025972196e-20,1.0774210039849315e-20,1.1826497677909706e-21,2.1627304352685206e-20,4.652304285532786e-22,2.8344671591185033e-05,6.0,5.0,8.0,3.0,0.05373677238821983,-0.01185515895485878,-0.013657407835125923,-0.009391534142196178,-0.01974206417798996,0.0007440476329065859,0.0011904762359336019,0.0007936508045531809,0.0017857142956927419,0.0009920635493472219,0.0009259259095415473,0.0020833334419876337,0.00046296295477077365,0.0013888889225199819,0.0020833334419876337,-0.01185515895485878,0.008834325708448887,0.0011904762359336019,0.0007936508045531809,0.0017857142956927419,-0.0011160714784637094,-0.0004761904710903764,-0.0003174603043589741,-0.0007142857066355646,-2.8322016904986345e-18,-8.692709742397525e-19,-1.9825412040285595e-18,-1.1607040748350478e-18,-1.3216941015531808e-18,-9.912705813347644e-18,-0.013657407835125923,0.0011904762359336019,0.012781084515154362,0.0009259259095415473,0.0020833334419876337,-3.7624223308010146e-18,-0.0005952381179668009,1.1858461261560205e-20,-4.8884332151906274e-33,-0.0019841270986944437,-0.00046296295477077365,-0.0010416667209938169,4.351831453088717e-20,-3.725176495244369e-33,-3.341702393483704e-32,-0.009391534142196178,0.0007936508045531809,0.0009259259095415473,0.004998110234737396,0.0013888889225199819,-2.527043181999247e-18,-2.1888878469951893e-33,-0.00022675737272948027,-3.2833320459992724e-33,-6.412757351329352e-33,-0.00026455026818439364,-4.488930439804134e-33,-0.00046296295477077365,-0.00039682540227659047,-2.2444651096994716e-32,-0.01974206417798996,0.0017857142956927419,0.0020833334419876337,0.0013888889225199819,0.04057539626955986,-6.4083282648968344e-18,-5.550800404649985e-33,-3.6186043406888974e-33,-0.0017857142956927419,-1.6262110640854063e-32,-4.32889643483128e-33,-0.0020833334419876337,-0.0,-0.0013888889225199819,-0.012500000186264515,0.0007440476329065859,-0.0011160714784637094,-3.7624223308010146e-18,-2.527043181999247e-18,-6.4083282648968344e-18,0.00022321428696159273,1.933449637335974e-19,1.473104497898549e-19,2.9001743267569904e-19,5.664403070804539e-19,1.762258793454443e-19,3.965082252960754e-19,2.202823588753282e-19,2.64338825480515e-19,1.9825412040285595e-18,0.0011904762359336019,-0.0004761904710903764,-0.0005952381179668009,-2.1888878469951893e-33,-5.550800404649985e-33,1.933449637335974e-19,0.0002380952355451882,1.275981669073323e-34,2.512088824892327e-34,4.906423421545993e-34,1.5264428958294595e-34,3.4344964869176914e-34,1.9080535910882319e-34,2.2896644011413744e-34,1.7172482893765938e-33,0.0007936508045531809,-0.0003174603043589741,1.1858461261560205e-20,-0.00022675737272948027,-3.6186043406888974e-33,1.473104497898549e-19,1.275981669073323e-34,9.070294618140906e-05,1.9139725036099846e-34,3.7382274671921217e-34,-3.3881317890172014e-21,2.616759249993359e-34,1.6940658945086007e-20,-0.0,1.3083795790789315e-33,0.0017857142956927419,-0.0007142857066355646,-4.8884332151906274e-33,-3.2833320459992724e-33,-0.0017857142956927419,2.9001743267569904e-19,2.512088824892327e-34,1.9139725036099846e-34,0.0007142857066355646,7.35963513231899e-34,2.2896644011413744e-34,5.151744500787797e-34,2.8620803292351627e-34,3.4344964869176914e-34,2.5758723422293945e-33,0.0009920635493472219,-2.8322016904986345e-18,-0.0019841270986944437,-6.412757351329352e-33,-1.6262110640854063e-32,5.664403070804539e-19,4.906423421545993e-34,3.7382274671921217e-34,7.35963513231899e-34,0.0004960317746736109,4.4720006579229045e-34,1.0062001135943425e-33,5.590000937198001e-34,6.708000757295616e-34,5.031000843478201e-33,0.0009259259095415473,-8.692709742397525e-19,-0.00046296295477077365,-0.00026455026818439364,-4.32889643483128e-33,1.762258793454443e-19,1.5264428958294595e-34,-3.3881317890172014e-21,2.2896644011413744e-34,4.4720006579229045e-34,0.00013227513409219682,3.130400460546033e-34,-1.2433804151682049e-20,-0.0,1.5652002991496387e-33,0.0020833334419876337,-1.9825412040285595e-18,-0.0010416667209938169,-4.488930439804134e-33,-0.0020833334419876337,3.965082252960754e-19,3.4344964869176914e-34,2.616759249993359e-34,5.151744500787797e-34,1.0062001135943425e-33,3.130400460546033e-34,0.0010416667209938169,3.913000747874097e-34,4.69560080561342e-34,3.521700627168939e-33,0.00046296295477077365,-1.1607040748350478e-18,4.351831453088717e-20,-0.00046296295477077365,-0.0,2.202823588753282e-19,1.9080535910882319e-34,1.6940658945086007e-20,2.8620803292351627e-34,5.590000937198001e-34,-1.2433804151682049e-20,3.913000747874097e-34,6.613756704609841e-05,1.9688052398757023e-35,1.9565003280193003e-33,0.0013888889225199819,-1.3216941015531808e-18,-3.725176495244369e-33,-0.00039682540227659047,-0.0013888889225199819,2.64338825480515e-19,2.2896644011413744e-34,-0.0,3.4344964869176914e-34,6.708000757295616e-34,-0.0,4.69560080561342e-34,1.9688052398757023e-35,0.00039682540227659047,2.347800356888962e-33,0.0020833334419876337,-9.912705813347644e-18,-3.341702393483704e-32,-2.2444651096994716e-32,-0.012500000186264515,1.9825412040285595e-18,1.7172482893765938e-33,1.3083795790789315e-33,2.5758723422293945e-33,5.031000843478201e-33,1.5652002991496387e-33,3.521700627168939e-33,1.9565003280193003e-33,2.347800356888962e-33,0.0062500000931322575,6.0,5.0,8.0,4.0,0.04315972328186035,-0.009159225970506668,-0.010555555112659931,-0.0072519839741289616,-0.012470237910747528,0.0005580357392318547,0.0008928571478463709,0.0005952381179668009,0.0010714285308495164,0.0007440476329065859,0.0006944444612599909,0.0012499999720603228,0.00034722223062999547,0.0008333333535119891,0.0010416667209938169,-0.009159225970506668,0.006732887122780085,0.0008928571478463709,0.0005952381179668009,0.0010714285308495164,-0.0008370535797439516,-0.0003571428533177823,-0.0002380952355451882,-0.00042857142398133874,1.0620756080875938e-18,3.368480045614473e-19,5.947623508688102e-19,5.434724483007886e-19,4.083666865576356e-19,1.734723475976807e-18,-0.010555555112659931,0.0008928571478463709,0.009742063470184803,0.0006944444612599909,0.0012499999720603228,1.531276956753318e-18,-0.00044642857392318547,6.424479577048869e-21,-1.5916437792553553e-33,-0.0014880952658131719,-0.00034722223062999547,-0.0006249999860301614,1.0911829790882124e-20,-5.929230630780102e-21,-3.171348944010172e-33,-0.0072519839741289616,0.0005952381179668009,0.0006944444612599909,0.00380810652859509,0.0008333333535119891,1.0365183120991195e-18,-6.733628370853465e-34,-0.0001700680295471102,-1.0773805209694552e-33,-1.3151617223056953e-33,-0.00019841270113829523,-7.364906030620978e-34,-0.00034722223062999547,-0.0002380952355451882,-3.965082252960754e-19,-0.012470237910747528,0.0010714285308495164,0.0012499999720603228,0.0008333333535119891,0.015605159103870392,1.9913208990501973e-18,-1.2936398901100778e-33,1.1858461261560205e-20,-0.0007142857066355646,-2.5266404347650493e-33,-5.929230630780102e-21,-0.0008333333535119891,1.3552527156068805e-20,-0.0005555555690079927,-0.0031250000465661287,0.0005580357392318547,-0.0008370535797439516,1.531276956753318e-18,1.0365183120991195e-18,1.9913208990501973e-18,0.00016741071885917336,-1.0875654371573568e-19,-8.286212639120624e-20,-1.7401046994517708e-19,-2.1241512161751876e-19,-6.608470637012875e-20,-1.189524624189438e-19,-8.26058813470738e-20,-7.930164376674537e-20,-3.4694470036524025e-19,0.0008928571478463709,-0.0003571428533177823,-0.00044642857392318547,-6.733628370853465e-34,-1.2936398901100778e-33,-1.0875654371573568e-19,0.00017857142665889114,5.383047235924193e-35,1.1304399712015472e-34,1.3799316447069957e-34,4.2931206086471143e-35,7.727617210359176e-35,5.366400904301856e-35,5.151744615582167e-35,2.253888276491846e-34,0.0005952381179668009,-0.0002380952355451882,6.424479577048869e-21,-0.0001700680295471102,1.1858461261560205e-20,-8.286212639120624e-20,5.383047235924193e-35,6.80272132740356e-05,8.61287580706745e-35,1.0513764966717286e-34,-1.8355656799918447e-21,5.887707968101948e-35,-3.7269449679189215e-20,-3.3881317890172014e-21,1.6679736784065351e-34,0.0010714285308495164,-0.00042857142398133874,-1.5916437792553553e-33,-1.0773805209694552e-33,-0.0007142857066355646,-1.7401046994517708e-19,1.1304399712015472e-34,8.61287580706745e-35,0.0002857142826542258,2.207890631531193e-34,6.868992629452272e-35,1.23641870773972e-34,8.586241217294229e-35,8.242791384931467e-35,3.606221288304702e-34,0.0007440476329065859,1.0620756080875938e-18,-0.0014880952658131719,-1.3151617223056953e-33,-2.5266404347650493e-33,-2.1241512161751876e-19,1.3799316447069957e-34,1.0513764966717286e-34,2.207890631531193e-34,0.00037202381645329297,8.38500094661952e-35,1.5093001933503877e-34,1.0481251757246252e-34,1.0062000906354684e-34,4.402125783961174e-34,0.0006944444612599909,3.368480045614473e-19,-0.00034722223062999547,-0.00019841270113829523,-5.929230630780102e-21,-6.608470637012875e-20,4.2931206086471143e-35,-1.8355656799918447e-21,6.868992629452272e-35,8.38500094661952e-35,9.920635056914762e-05,4.6956005760246795e-35,-3.117665539138669e-21,1.6940658945086007e-21,1.3635663297029013e-34,0.0012499999720603228,5.947623508688102e-19,-0.0006249999860301614,-7.364906030620978e-34,-0.0008333333535119891,-1.189524624189438e-19,7.727617210359176e-35,5.887707968101948e-35,1.23641870773972e-34,1.5093001933503877e-34,4.6956005760246795e-35,0.00041666667675599456,5.869501007016775e-35,5.634720691229615e-35,2.465190273714364e-34,0.00034722223062999547,5.434724483007886e-19,1.0911829790882124e-20,-0.00034722223062999547,1.3552527156068805e-20,-8.26058813470738e-20,5.366400904301856e-35,-3.7269449679189215e-20,8.586241217294229e-35,1.0481251757246252e-34,-3.117665539138669e-21,5.869501007016775e-35,4.960317528457381e-05,-6.105029936961062e-21,1.5816000983825404e-34,0.0008333333535119891,4.083666865576356e-19,-5.929230630780102e-21,-0.0002380952355451882,-0.0005555555690079927,-7.930164376674537e-20,5.151744615582167e-35,-3.3881317890172014e-21,8.242791384931467e-35,1.0062000906354684e-34,1.6940658945086007e-21,5.634720691229615e-35,-6.105029936961062e-21,0.00015873015217948705,2.64338825480515e-19,0.0010416667209938169,1.734723475976807e-18,-3.171348944010172e-33,-3.965082252960754e-19,-0.0031250000465661287,-3.4694470036524025e-19,2.253888276491846e-34,1.6679736784065351e-34,3.606221288304702e-34,4.402125783961174e-34,1.3635663297029013e-34,2.465190273714364e-34,1.5816000983825404e-34,2.64338825480515e-19,0.0010416667209938169,6.0,5.0,8.0,5.0,0.03613095358014107,-0.007470238022506237,-0.008611110970377922,-0.0059126983396708965,-0.008611110970377922,0.00044642857392318547,0.0007142857066355646,0.0004761904710903764,0.0007142857066355646,0.0005952381179668009,0.0005555555690079927,0.0008333333535119891,0.00027777778450399637,0.0005555555690079927,0.0005952381179668009,-0.007470238022506237,0.005443452391773462,0.0007142857066355646,0.0004761904710903764,0.0007142857066355646,-0.0006696428754366934,-0.0002857142826542258,-0.00019047618843615055,-0.0002857142826542258,-1.2461686859167563e-18,2.774596677544077e-19,-7.930164505921508e-19,7.913255900225159e-19,1.410460817640201e-19,-1.850371804212999e-18,-0.008611110970377922,0.0007142857066355646,0.007876983843743801,0.0005555555690079927,0.0008333333535119891,-2.0312927477905972e-18,-0.0003571428533177823,8.134201011716901e-19,-1.748537561272583e-33,-0.0011904762359336019,-0.00027777778450399637,-0.00041666667675599456,1.3210091960059869e-18,5.951645157428758e-19,-7.049035173817772e-19,-0.0059126983396708965,0.0004761904710903764,0.0005555555690079927,0.003078231355175376,0.0005555555690079927,4.0061086018857943e-19,1.1717222239918307e-18,-0.0001360544265480712,-6.042030278233632e-20,2.9293056633771532e-18,-0.00015873015217948705,-1.9079388702569559e-19,-0.00027777778450399637,-0.00015873015217948705,-1.8236621422336618e-18,-0.008611110970377922,0.0007142857066355646,0.0008333333535119891,0.0005555555690079927,0.007876983843743801,-2.0312927477905972e-18,2.1147105004465433e-19,-2.638238796998066e-19,-0.0003571428533177823,5.2867765096103e-19,-1.2269774753200666e-18,-0.00041666667675599456,-6.098637220230962e-19,-0.00027777778450399637,-0.0011904762359336019,0.00044642857392318547,-0.0006696428754366934,-2.0312927477905972e-18,4.0061086018857943e-19,-2.0312927477905972e-18,0.00013392856635618955,1.3920837078626284e-19,1.7051472066599702e-20,1.3920837078626284e-19,3.398641894181512e-19,1.88813446194801e-21,1.5860328753349075e-19,-4.9563528162009426e-20,1.88813446194801e-21,3.398641894181512e-19,0.0007142857066355646,-0.0002857142826542258,-0.0003571428533177823,1.1717222239918307e-18,2.1147105004465433e-19,1.3920837078626284e-19,0.0001428571413271129,-5.1788828186710334e-20,1.216974607726929e-34,1.4682964937941841e-33,-6.042030278233632e-20,9.223053802415183e-35,-1.0573552502232717e-19,-6.042030278233632e-20,-3.409106497706151e-34,0.0004761904710903764,-0.00019047618843615055,8.134201011716901e-19,-0.0001360544265480712,-2.638238796998066e-19,1.7051472066599702e-20,-5.1788828186710334e-20,5.442176916403696e-05,2.4168120466699676e-20,-1.2947206723560157e-19,-4.744563560114397e-20,-3.611118645726067e-35,-9.486769009248164e-20,-8.470329472543003e-21,4.315735682225861e-20,0.0007142857066355646,-0.0002857142826542258,-1.748537561272583e-33,-6.042030278233632e-20,-0.0003571428533177823,1.3920837078626284e-19,1.216974607726929e-34,2.4168120466699676e-20,0.0001428571413271129,2.957653530086784e-34,-1.9565462055893497e-35,1.6485582769862934e-34,-9.62964972193618e-35,-2.256949153578792e-36,3.7242820175117903e-34,0.0005952381179668009,-1.2461686859167563e-18,-0.0011904762359336019,2.9293056633771532e-18,5.2867765096103e-19,3.398641894181512e-19,1.4682964937941841e-33,-1.2947206723560157e-19,2.957653530086784e-34,0.00029761905898340046,-1.5105075372466654e-19,2.209168292871491e-34,-2.64338825480515e-19,-1.5105075372466654e-19,-8.729755531793947e-34,0.0005555555690079927,2.774596677544077e-19,-0.00027777778450399637,-0.00015873015217948705,-1.2269774753200666e-18,1.88813446194801e-21,-6.042030278233632e-20,-4.744563560114397e-20,-1.9565462055893497e-35,-1.5105075372466654e-19,7.936507608974352e-05,9.539694351284779e-20,1.9567451153759666e-22,4.573977915173222e-20,2.0140100496622206e-19,0.0008333333535119891,-7.930164505921508e-19,-0.00041666667675599456,-1.9079388702569559e-19,-0.00041666667675599456,1.5860328753349075e-19,9.223053802415183e-35,-3.611118645726067e-35,1.6485582769862934e-34,2.209168292871491e-34,9.539694351284779e-20,0.00020833333837799728,-5.717604522399606e-35,5.868067799304859e-35,6.445643734339025e-34,0.00027777778450399637,7.913255900225159e-19,1.3210091960059869e-18,-0.00027777778450399637,-6.098637220230962e-19,-4.9563528162009426e-20,-1.0573552502232717e-19,-9.486769009248164e-20,-9.62964972193618e-35,-2.64338825480515e-19,1.9567451153759666e-22,-5.717604522399606e-35,3.968253804487176e-05,3.1372181824266044e-20,8.811293967272215e-20,0.0005555555690079927,1.410460817640201e-19,5.951645157428758e-19,-0.00015873015217948705,-0.00027777778450399637,1.88813446194801e-21,-6.042030278233632e-20,-8.470329472543003e-21,-2.256949153578792e-36,-1.5105075372466654e-19,4.573977915173222e-20,5.868067799304859e-35,3.1372181824266044e-20,7.936507608974352e-05,3.2291293222146684e-19,0.0005952381179668009,-1.850371804212999e-18,-7.049035173817772e-19,-1.8236621422336618e-18,-0.0011904762359336019,3.398641894181512e-19,-3.409106497706151e-34,4.315735682225861e-20,3.7242820175117903e-34,-8.729755531793947e-34,2.0140100496622206e-19,6.445643734339025e-34,8.811293967272215e-20,3.2291293222146684e-19,0.00029761905898340046,6.0,5.0,8.0,6.0,0.031098827719688416,-0.006310232449322939,-0.007275132462382317,-0.004993386100977659,-0.006310232449322939,0.00037202381645329297,0.0005952381179668009,0.00039682540227659047,0.0005102040595375001,0.0004960317746736109,0.00046296295477077365,0.0005952381179668009,0.00023148147738538682,0.00039682540227659047,0.00037202381645329297,-0.006310232449322939,0.004570223856717348,0.0005952381179668009,0.00039682540227659047,0.0005102040595375001,-0.0005580357392318547,-0.0002380952355451882,-0.00015873015217948705,-0.0002040816325461492,-1.4161008452493172e-18,-4.409773774787437e-19,-5.664403070804539e-19,-5.86281268048304e-19,-3.7466225607157923e-19,-9.735692470983746e-19,-0.007275132462382317,0.0005952381179668009,0.006613756529986858,0.00046296295477077365,0.0005952381179668009,-1.966177296765576e-18,-0.00029761905898340046,-4.127074636384884e-22,-1.1678222298022566e-33,-0.0009920635493472219,-0.00023148147738538682,-0.00029761905898340046,-8.426110852688362e-22,2.964615315390051e-21,-3.430264064406258e-33,-0.004993386100977659,0.00039682540227659047,0.00046296295477077365,0.0025840892922133207,0.00039682540227659047,-1.3201655751787594e-18,-1.1435082311814515e-33,-0.00011337868636474013,-7.84119935200738e-34,-3.3501217983030716e-33,-0.00013227513409219682,-1.3400486825870302e-33,-0.00023148147738538682,-0.00011337868636474013,-2.3032087133744877e-33,-0.006310232449322939,0.0005102040595375001,0.0005952381179668009,0.00039682540227659047,0.004570223856717348,-1.630208481797696e-18,-1.4120628644317613e-33,2.964615315390051e-21,-0.0002040816325461492,-4.136902942511476e-33,2.964615315390051e-21,-0.0002380952355451882,-0.0,-0.00015873015217948705,-0.0005580357392318547,0.00037202381645329297,-0.0005580357392318547,-1.966177296765576e-18,-1.3201655751787594e-18,-1.630208481797696e-18,0.00011160714348079637,9.66724818667987e-20,7.365522489492744e-20,6.628969852802558e-20,2.8322015354022696e-19,8.811293967272215e-20,1.1328805883115137e-19,1.101411794376641e-19,7.552537686233327e-20,1.9471385717449317e-19,0.0005952381179668009,-0.0002380952355451882,-0.00029761905898340046,-1.1435082311814515e-33,-1.4120628644317613e-33,9.66724818667987e-20,0.0001190476177725941,6.379908345366615e-35,5.741917396035584e-35,2.4532117107729966e-34,7.632214479147298e-35,9.812846613503246e-35,9.540267955441159e-35,6.541898124983398e-35,1.6865831085536203e-34,0.00039682540227659047,-0.00015873015217948705,-4.127074636384884e-22,-0.00011337868636474013,2.964615315390051e-21,7.365522489492744e-20,6.379908345366615e-35,4.535147309070453e-05,4.374794220169298e-35,1.8691137335960608e-34,1.1791641637931462e-22,7.476454590001133e-35,1.0164395367051604e-20,-8.470329472543003e-22,1.2850156416247549e-34,0.0005102040595375001,-0.0002040816325461492,-1.1678222298022566e-33,-7.84119935200738e-34,-0.0002040816325461492,6.628969852802558e-20,5.741917396035584e-35,4.374794220169298e-35,8.163265010807663e-05,1.6822023257981437e-34,5.233518385192348e-35,6.728809188398205e-35,6.541898124983398e-35,4.48587298358942e-35,1.1565141348594645e-34,0.0004960317746736109,-1.4161008452493172e-18,-0.0009920635493472219,-3.3501217983030716e-33,-4.136902942511476e-33,2.8322015354022696e-19,2.4532117107729966e-34,1.8691137335960608e-34,1.6822023257981437e-34,0.00024801588733680546,2.2360003289614522e-34,2.8748576314043644e-34,2.7950004685990004e-34,1.9165716777399962e-34,4.941161575500196e-34,0.00046296295477077365,-4.409773774787437e-19,-0.00023148147738538682,-0.00013227513409219682,2.964615315390051e-21,8.811293967272215e-20,7.632214479147298e-35,1.1791641637931462e-22,5.233518385192348e-35,2.2360003289614522e-34,6.613756704609841e-05,8.944001315845809e-35,2.4074603518118847e-22,-8.470329472543003e-22,1.5372502118117021e-34,0.0005952381179668009,-5.664403070804539e-19,-0.00029761905898340046,-1.3400486825870302e-33,-0.0002380952355451882,1.1328805883115137e-19,9.812846613503246e-35,7.476454590001133e-35,6.728809188398205e-35,2.8748576314043644e-34,8.944001315845809e-35,0.0001190476177725941,1.1180001644807261e-34,7.666286596165614e-35,1.976464492446834e-34,0.00023148147738538682,-5.86281268048304e-19,-8.426110852688362e-22,-0.00023148147738538682,-0.0,1.101411794376641e-19,9.540267955441159e-35,1.0164395367051604e-20,6.541898124983398e-35,2.7950004685990004e-34,2.4074603518118847e-22,1.1180001644807261e-34,3.3068783523049206e-05,-1.1906406637035953e-21,1.9215627073674426e-34,0.00039682540227659047,-3.7466225607157923e-19,2.964615315390051e-21,-0.00011337868636474013,-0.00015873015217948705,7.552537686233327e-20,6.541898124983398e-35,-8.470329472543003e-22,4.48587298358942e-35,1.9165716777399962e-34,-8.470329472543003e-22,7.666286596165614e-35,-1.1906406637035953e-21,4.535147309070453e-05,1.3176430714941362e-34,0.00037202381645329297,-9.735692470983746e-19,-3.430264064406258e-33,-2.3032087133744877e-33,-0.0005580357392318547,1.9471385717449317e-19,1.6865831085536203e-34,1.2850156416247549e-34,1.1565141348594645e-34,4.941161575500196e-34,1.5372502118117021e-34,1.976464492446834e-34,1.9215627073674426e-34,1.3176430714941362e-34,0.00011160714348079637,6.0,5.0,8.0,7.0,0.027310090139508247,-0.005463435314595699,-0.0062996032647788525,-0.004322562366724014,-0.004825680050998926,0.0003188775444868952,0.0005102040595375001,0.0003401360590942204,0.00038265305920504034,0.00042517005931586027,0.00039682540227659047,0.00044642857392318547,0.00019841270113829523,0.00029761905898340046,0.00024801588733680546,-0.005463435314595699,0.003939200658351183,0.0005102040595375001,0.0003401360590942204,0.00038265305920504034,-0.00047831633128225803,-0.0002040816325461492,-0.0001360544265480712,-0.0001530612207716331,-2.7141932091796756e-18,-1.162219469717245e-18,-1.1414849468926844e-18,-1.3436204882428536e-19,-3.8562343316367254e-19,-5.510306302022329e-20,-0.0062996032647788525,0.0005102040595375001,0.005700821988284588,0.00039682540227659047,0.00044642857392318547,-3.1327207497373653e-18,-0.00025510202976875007,-1.0963820192644356e-19,-5.537123755975239e-19,-0.0008503401186317205,-0.00019841270113829523,-0.00022321428696159273,4.8998625195946796e-20,2.541404381601663e-19,2.9435488346459155e-19,-0.004322562366724014,0.0003401360590942204,0.00039682540227659047,0.0022270812187343836,0.00029761905898340046,-8.112943503950054e-19,-6.724840861279278e-19,-9.718172805150971e-05,-3.0798296839973825e-19,7.346598406535121e-19,-0.00011337868636474013,-5.421010862427522e-20,-0.00019841270113829523,-8.50340147735551e-05,5.391304221691329e-19,-0.004825680050998926,0.00038265305920504034,0.00044642857392318547,0.00029761905898340046,0.0028982425574213266,-7.397272007848002e-19,-6.15531822074251e-19,1.1128277915586676e-19,-0.00012755101488437504,8.892214332411893e-19,-1.5080730413063453e-20,-0.00014880952949170023,5.21772295508649e-19,-9.920635056914762e-05,-0.00029761905898340046,0.0003188775444868952,-0.00047831633128225803,-3.1327207497373653e-18,-8.112943503950054e-19,-7.397272007848002e-19,9.566326480126008e-05,1.60499133798674e-19,3.327300086664742e-20,5.468171789570409e-20,3.9448522586110626e-19,1.429587430600929e-19,1.4692045998043028e-19,3.540251919252837e-20,4.231444039102147e-20,1.6521176592532187e-20,0.0005102040595375001,-0.0002040816325461492,-0.00025510202976875007,-6.724840861279278e-19,-6.15531822074251e-19,1.60499133798674e-19,0.0001020408162730746,6.65856353168635e-20,6.797283659116053e-20,3.8841622755619884e-19,1.0789339367123366e-19,1.1328805883115137e-19,3.021015139116816e-20,2.0499744086676057e-20,2.2657612735582555e-20,0.0003401360590942204,-0.0001360544265480712,-1.0963820192644356e-19,-9.718172805150971e-05,1.1128277915586676e-19,3.327300086664742e-20,6.65856353168635e-20,3.887269122060388e-05,7.274721484247863e-21,-4.932269581913432e-20,1.6518124748436263e-20,7.410382335880828e-21,-4.912791094074942e-20,2.541098841762901e-21,-3.219827029991656e-20,0.00038265305920504034,-0.0001530612207716331,-5.537123755975239e-19,-3.0798296839973825e-19,-0.00012755101488437504,5.468171789570409e-20,6.797283659116053e-20,7.274721484247863e-21,5.10204081365373e-05,2.4276014222262428e-20,3.780172101632148e-20,2.879912020664621e-20,1.288889727584113e-20,2.6280891616350695e-20,7.044052295161096e-22,0.00042517005931586027,-2.7141932091796756e-18,-0.0008503401186317205,7.346598406535121e-19,8.892214332411893e-19,3.9448522586110626e-19,3.8841622755619884e-19,-4.932269581913432e-20,2.4276014222262428e-20,0.00021258502965793014,-2.0208603976038667e-20,-2.6523791910757184e-20,-3.1468907025972196e-20,-8.092004848459951e-20,-7.867226918051762e-20,0.00039682540227659047,-1.162219469717245e-18,-0.00019841270113829523,-0.00011337868636474013,-1.5080730413063453e-20,1.429587430600929e-19,1.0789339367123366e-19,1.6518124748436263e-20,3.780172101632148e-20,-2.0208603976038667e-20,5.668934318237007e-05,5.34870372544238e-21,6.349502298623025e-22,-2.541098841762901e-21,-1.2496482470128547e-20,0.00044642857392318547,-1.1414849468926844e-18,-0.00022321428696159273,-5.421010862427522e-20,-0.00014880952949170023,1.4692045998043028e-19,1.1328805883115137e-19,7.410382335880828e-21,2.879912020664621e-20,-2.6523791910757184e-20,5.34870372544238e-21,7.440476474585012e-05,-2.902332361407475e-22,9.061408181348962e-21,2.475942414601403e-21,0.00019841270113829523,-1.3436204882428536e-19,4.8998625195946796e-20,-0.00019841270113829523,5.21772295508649e-19,3.540251919252837e-20,3.021015139116816e-20,-4.912791094074942e-20,1.288889727584113e-20,-3.1468907025972196e-20,6.349502298623025e-22,-2.902332361407475e-22,2.8344671591185033e-05,-3.681997395149468e-20,-7.265397446222029e-20,0.00029761905898340046,-3.8562343316367254e-19,2.541404381601663e-19,-8.50340147735551e-05,-9.920635056914762e-05,4.231444039102147e-20,2.0499744086676057e-20,2.541098841762901e-21,2.6280891616350695e-20,-8.092004848459951e-20,-2.541098841762901e-21,9.061408181348962e-21,-3.681997395149468e-20,2.8344671591185033e-05,1.7838266231979682e-20,0.00024801588733680546,-5.510306302022329e-20,2.9435488346459155e-19,5.391304221691329e-19,-0.00029761905898340046,1.6521176592532187e-20,2.2657612735582555e-20,-3.219827029991656e-20,7.044052295161096e-22,-7.867226918051762e-20,-1.2496482470128547e-20,2.475942414601403e-21,-7.265397446222029e-20,1.7838266231979682e-20,4.960317528457381e-05,6.0,5.0,8.0,8.0,0.024351025000214577,-0.004817708395421505,-0.0055555556900799274,-0.003811177331954241,-0.003811177331954241,0.00027901786961592734,0.00044642857392318547,0.00029761905898340046,0.00029761905898340046,0.00037202381645329297,0.00034722223062999547,0.00034722223062999547,0.00017361111531499773,0.00023148147738538682,0.00017361111531499773,-0.004817708395421505,0.0034616815391927958,0.00044642857392318547,0.00029761905898340046,0.00029761905898340046,-0.0004185267898719758,-0.00017857142665889114,-0.0001190476177725941,-0.0001190476177725941,5.310378040437969e-19,1.6747485130191025e-19,1.6499261153060933e-19,2.8340776844291165e-19,1.1870485107245487e-19,2.6894169784846045e-19,-0.0055555556900799274,0.00044642857392318547,0.005009920801967382,0.00034722223062999547,0.00034722223062999547,7.920723790192864e-19,-0.00022321428696159273,2.4565699092788963e-21,-4.12628829983456e-22,-0.0007440476329065859,-0.00017361111531499773,-0.00017361111531499773,3.9130889592975525e-21,4.446922973085077e-21,-8.424504858103077e-22,-0.003811177331954241,0.00029761905898340046,0.00034722223062999547,0.0019569634459912777,0.00023148147738538682,5.358817737109074e-19,-3.481297233292246e-34,-8.50340147735551e-05,4.893531437513738e-21,-6.799408759218992e-34,-9.920635056914762e-05,1.6940658945086007e-21,-0.00017361111531499773,-6.613756704609841e-05,1.1489249518264588e-20,-0.003811177331954241,0.00029761905898340046,0.00034722223062999547,0.00023148147738538682,0.0019569634459912777,5.358817737109074e-19,-3.481297233292246e-34,2.3277532905902764e-21,-8.50340147735551e-05,-6.799408759218992e-34,-7.809713369139409e-22,-9.920635056914762e-05,6.776263578034403e-21,-6.613756704609841e-05,-0.00017361111531499773,0.00027901786961592734,-0.0004185267898719758,7.920723790192864e-19,5.358817737109074e-19,5.358817737109074e-19,8.370535942958668e-05,-5.437827185786784e-20,-4.143106319560312e-20,-4.143106319560312e-20,-1.0620756080875938e-19,-3.3042353185064373e-20,-3.3042353185064373e-20,-4.13029406735369e-20,-2.2028234918180537e-20,-4.13029406735369e-20,0.00044642857392318547,-0.00017857142665889114,-0.00022321428696159273,-3.481297233292246e-34,-3.481297233292246e-34,-5.437827185786784e-20,8.928571332944557e-05,2.691523617962097e-35,2.691523617962097e-35,6.899658223534978e-35,2.1465603043235571e-35,2.1465603043235571e-35,2.683200452150928e-35,1.431040250713359e-35,2.683200452150928e-35,0.00029761905898340046,-0.0001190476177725941,2.4565699092788963e-21,-8.50340147735551e-05,2.3277532905902764e-21,-4.143106319560312e-20,2.691523617962097e-35,3.40136066370178e-05,2.615751374553058e-23,5.256882483358643e-35,-7.644914393804733e-22,6.261434498252875e-23,-2.202285662861181e-20,-8.470329472543003e-22,5.893729390933809e-23,0.00029761905898340046,-0.0001190476177725941,-4.12628829983456e-22,4.893531437513738e-21,-8.50340147735551e-05,-4.143106319560312e-20,2.691523617962097e-35,2.615751374553058e-23,3.40136066370178e-05,5.256882483358643e-35,1.1789394962073393e-22,0.0,5.340492402860175e-23,-1.5997327715025686e-21,-1.78952253719722e-20,0.00037202381645329297,5.310378040437969e-19,-0.0007440476329065859,-6.799408759218992e-34,-6.799408759218992e-34,-1.0620756080875938e-19,6.899658223534978e-35,5.256882483358643e-35,5.256882483358643e-35,0.00018601190822664648,4.19250047330976e-35,4.19250047330976e-35,5.240625878623126e-35,2.7950004112018153e-35,5.240625878623126e-35,0.00034722223062999547,1.6747485130191025e-19,-0.00017361111531499773,-9.920635056914762e-05,-7.809713369139409e-22,-3.3042353185064373e-20,2.1465603043235571e-35,-7.644914393804733e-22,1.1789394962073393e-22,4.19250047330976e-35,4.960317528457381e-05,7.305007230172717e-23,-1.2458629465529835e-21,-4.235164736271502e-22,2.4070014240916634e-22,0.00034722223062999547,1.6499261153060933e-19,-0.00017361111531499773,1.6940658945086007e-21,-9.920635056914762e-05,-3.3042353185064373e-20,2.1465603043235571e-35,6.261434498252875e-23,0.0,4.19250047330976e-35,7.305007230172717e-23,4.960317528457381e-05,1.2783762337257892e-22,-8.470329472543003e-22,1.230503274922314e-36,0.00017361111531499773,2.8340776844291165e-19,3.9130889592975525e-21,-0.00017361111531499773,6.776263578034403e-21,-4.13029406735369e-20,2.683200452150928e-35,-2.202285662861181e-20,5.340492402860175e-23,5.240625878623126e-35,-1.2458629465529835e-21,1.2783762337257892e-22,2.4801587642286904e-05,3.915529657072983e-22,-3.818810766254073e-22,0.00023148147738538682,1.1870485107245487e-19,4.446922973085077e-21,-6.613756704609841e-05,-6.613756704609841e-05,-2.2028234918180537e-20,1.431040250713359e-35,-8.470329472543003e-22,-1.5997327715025686e-21,2.7950004112018153e-35,-4.235164736271502e-22,-8.470329472543003e-22,3.915529657072983e-22,1.889644772745669e-05,-2.63617351926339e-21,0.00017361111531499773,2.6894169784846045e-19,-8.424504858103077e-22,1.1489249518264588e-20,-0.00017361111531499773,-4.13029406735369e-20,2.683200452150928e-35,5.893729390933809e-23,-1.78952253719722e-20,5.240625878623126e-35,2.4070014240916634e-22,1.230503274922314e-36,-3.818810766254073e-22,-2.63617351926339e-21,2.4801587642286904e-05,6.0,6.0,3.0,3.0,0.10048186033964157,-0.02451813966035843,-0.02451813966035843,-0.0406746044754982,-0.0406746044754982,0.0016534391324967146,0.0022675737272948027,0.003968254197388887,0.003968254197388887,0.0016534391324967146,0.003968254197388887,0.003968254197388887,0.004629629664123058,0.0069444444961845875,0.004629629664123058,-0.02451813966035843,0.018901171162724495,0.0022675737272948027,0.003968254197388887,0.003968254197388887,-0.0024801588151603937,-0.0009070294909179211,-0.0015873016091063619,-0.0015873016091063619,2.0599841277224584e-18,2.303929616531697e-18,2.303929616531697e-18,1.2313079726219349e-17,4.0836124267522925e-18,1.2313079726219349e-17,-0.02451813966035843,0.0022675737272948027,0.018901171162724495,0.003968254197388887,0.003968254197388887,3.74049749507499e-18,-0.0009070294909179211,4.1182269885567044e-19,4.1182269885567044e-19,-0.0024801588151603937,-0.0015873016091063619,-0.0015873016091063619,1.2313079726219349e-17,4.0836124267522925e-18,1.2313079726219349e-17,-0.0406746044754982,0.003968254197388887,0.003968254197388887,0.08697090297937393,0.0069444444961845875,7.885621140128257e-18,7.115076756936123e-19,-0.003968254197388887,6.614453091546194e-19,7.15573433840433e-18,-0.003968254197388887,7.743645100560574e-19,-0.02777777798473835,-0.0069444444961845875,3.0839529932353215e-17,-0.0406746044754982,0.003968254197388887,0.003968254197388887,0.0069444444961845875,0.08697090297937393,7.589415207398531e-18,7.453889935837843e-19,6.614453091546194e-19,-0.003968254197388887,7.18272358743071e-18,7.743645100560574e-19,-0.003968254197388887,3.6322112810856734e-17,-0.0069444444961845875,-0.02777777798473835,0.0016534391324967146,-0.0024801588151603937,3.74049749507499e-18,7.885621140128257e-18,7.589415207398531e-18,0.0004960317746736109,-2.981555974335137e-19,-7.047314121155779e-19,-7.589415207398531e-19,-4.337647244287993e-19,-3.740229488556523e-19,-3.740229488556523e-19,-2.2028235370544935e-18,-6.608470507765904e-19,-2.2028235370544935e-18,0.0022675737272948027,-0.0009070294909179211,-0.0009070294909179211,7.115076756936123e-19,7.453889935837843e-19,-2.981555974335137e-19,0.00036281178472563624,-1.3552527156068805e-19,-1.4907779871675686e-19,4.2746571175246535e-20,-1.4907779871675686e-19,-1.4907779871675686e-19,1.5407439555097887e-33,4.333342374871281e-34,1.5407439555097887e-33,0.003968254197388887,-0.0015873016091063619,4.1182269885567044e-19,-0.003968254197388887,6.614453091546194e-19,-7.047314121155779e-19,-1.3552527156068805e-19,0.0015873016091063619,-1.1317822475544081e-19,-1.9075118140319184e-21,-6.713366832207402e-20,4.4755778342853635e-21,-1.2989622477420345e-18,-3.896886639828527e-19,4.705219563645512e-33,0.003968254197388887,-0.0015873016091063619,4.1182269885567044e-19,6.614453091546194e-19,-0.003968254197388887,-7.589415207398531e-19,-1.4907779871675686e-19,-1.1317822475544081e-19,0.0015873016091063619,4.335974142252134e-21,4.4755778342853635e-21,-6.713366832207402e-20,5.01287545527249e-33,-3.896886639828527e-19,-1.2989622477420345e-18,0.0016534391324967146,2.0599841277224584e-18,-0.0024801588151603937,7.15573433840433e-18,7.18272358743071e-18,-4.337647244287993e-19,4.2746571175246535e-20,-1.9075118140319184e-21,4.335974142252134e-21,0.0004960317746736109,-7.589415207398531e-19,-7.589415207398531e-19,-2.2028235370544935e-18,-6.608470507765904e-19,-2.2028235370544935e-18,0.003968254197388887,2.303929616531697e-18,-0.0015873016091063619,-0.003968254197388887,7.743645100560574e-19,-3.740229488556523e-19,-1.4907779871675686e-19,-6.713366832207402e-20,4.4755778342853635e-21,-7.589415207398531e-19,0.0015873016091063619,-1.5834591804071312e-19,-1.2989622477420345e-18,-3.896886639828527e-19,6.481603116721136e-33,0.003968254197388887,2.303929616531697e-18,-0.0015873016091063619,7.743645100560574e-19,-0.003968254197388887,-3.740229488556523e-19,-1.4907779871675686e-19,4.4755778342853635e-21,-6.713366832207402e-20,-7.589415207398531e-19,-1.5834591804071312e-19,0.0015873016091063619,6.7892593756901e-33,-3.896886639828527e-19,-1.2989622477420345e-18,0.004629629664123058,1.2313079726219349e-17,1.2313079726219349e-17,-0.02777777798473835,3.6322112810856734e-17,-2.2028235370544935e-18,1.5407439555097887e-33,-1.2989622477420345e-18,5.01287545527249e-33,-2.2028235370544935e-18,-1.2989622477420345e-18,6.7892593756901e-33,0.013888888992369175,-5.482582878503519e-18,-1.5419764966176608e-17,0.0069444444961845875,4.0836124267522925e-18,4.0836124267522925e-18,-0.0069444444961845875,-0.0069444444961845875,-6.608470507765904e-19,4.333342374871281e-34,-3.896886639828527e-19,-3.896886639828527e-19,-6.608470507765904e-19,-3.896886639828527e-19,-3.896886639828527e-19,-5.482582878503519e-18,0.0069444444961845875,1.2132706984958849e-32,0.004629629664123058,1.2313079726219349e-17,1.2313079726219349e-17,3.0839529932353215e-17,-0.02777777798473835,-2.2028235370544935e-18,1.5407439555097887e-33,4.705219563645512e-33,-1.2989622477420345e-18,-2.2028235370544935e-18,6.481603116721136e-33,-1.2989622477420345e-18,-1.5419764966176608e-17,1.2132706984958849e-32,0.013888888992369175,6.0,6.0,3.0,4.0,0.08123110234737396,-0.01898384280502796,-0.01898384280502796,-0.03154762089252472,-0.02579365111887455,0.0012400794075801969,0.001700680237263441,0.0029761905316263437,0.0023809524718672037,0.0012400794075801969,0.0029761905316263437,0.0023809524718672037,0.0034722222480922937,0.004166666883975267,0.002314814832061529,-0.01898384280502796,0.01441397424787283,0.001700680237263441,0.0029761905316263437,0.0023809524718672037,-0.0018601190531626344,-0.0006802721181884408,-0.0011904762359336019,-0.0009523809421807528,1.5178830414797062e-18,1.0028870095490916e-18,1.111307226797642e-18,9.234809794664512e-18,2.49693008538956e-18,3.3979758586920418e-18,-0.01898384280502796,0.001700680237263441,0.01441397424787283,0.0029761905316263437,0.0023809524718672037,2.710505431213761e-18,-0.0006802721181884408,-3.026538056045771e-19,-2.7880078602129756e-19,-0.0018601190531626344,-0.0011904762359336019,-0.0009523809421807528,9.234809794664512e-18,2.49693008538956e-18,3.3979758586920418e-18,-0.03154762089252472,0.0029761905316263437,0.0029761905316263437,0.06626984477043152,0.004166666883975267,5.627267520987007e-18,-1.6940658945086007e-19,-0.0029761905316263437,2.8518589656717095e-19,5.095750210681871e-18,-0.0029761905316263437,2.81331079816309e-19,-0.02083333395421505,-0.004166666883975267,1.079383514545138e-17,-0.02579365111887455,0.0023809524718672037,0.0023809524718672037,0.004166666883975267,0.033399470150470734,4.391018798566293e-18,1.3552527156068805e-19,2.4345827942844476e-19,-0.0015873016091063619,3.7875280895726115e-18,2.2953341759915053e-19,-0.0015873016091063619,1.9480301948970814e-17,-0.0027777778450399637,-0.0069444444961845875,0.0012400794075801969,-0.0018601190531626344,2.710505431213761e-18,5.627267520987007e-18,4.391018798566293e-18,0.00037202381645329297,-2.168404344971009e-19,-4.336808689942018e-19,-4.0657581468206416e-19,-3.2655436222368427e-19,-2.8140961027571324e-19,-2.292344952052892e-19,-1.6521176010920818e-18,-3.965082252960754e-19,-7.709882172895574e-19,0.001700680237263441,-0.0006802721181884408,-0.0006802721181884408,-1.6940658945086007e-19,1.3552527156068805e-19,-2.168404344971009e-19,0.0002721088530961424,1.3552527156068805e-20,2.0328790734103208e-20,4.561245472971014e-20,5.421010862427522e-20,-7.453889935837843e-20,7.703719777548943e-34,1.4444474582904269e-34,2.407412430484045e-34,0.0029761905316263437,-0.0011904762359336019,-3.026538056045771e-19,-0.0029761905316263437,2.4345827942844476e-19,-4.336808689942018e-19,1.3552527156068805e-20,0.0011904762359336019,-2.5153584997521567e-21,7.2423317894908005e-22,2.66856323825426e-19,-1.3426733704804482e-21,-9.742216858065258e-19,-2.338131983897116e-19,1.4424160571154121e-33,0.0023809524718672037,-0.0009523809421807528,-2.7880078602129756e-19,2.8518589656717095e-19,-0.0015873016091063619,-4.0657581468206416e-19,2.0328790734103208e-20,-2.5153584997521567e-21,0.0006349206087179482,6.667229217955123e-22,6.713366852402241e-22,1.4912625340607657e-19,1.478587855000137e-33,-1.8705055871176929e-19,3.046435368692851e-19,0.0012400794075801969,1.5178830414797062e-18,-0.0018601190531626344,5.095750210681871e-18,3.7875280895726115e-18,-3.2655436222368427e-19,4.561245472971014e-20,7.2423317894908005e-22,6.667229217955123e-22,0.00037202381645329297,-4.0657581468206416e-19,-4.336808689942018e-19,-1.6521176010920818e-18,-3.965082252960754e-19,-7.709882172895574e-19,0.0029761905316263437,1.0028870095490916e-18,-0.0011904762359336019,-0.0029761905316263437,2.2953341759915053e-19,-2.8140961027571324e-19,5.421010862427522e-20,2.66856323825426e-19,6.713366852402241e-22,-4.0657581468206416e-19,0.0011904762359336019,1.0405819014817716e-21,-9.742216858065258e-19,-2.338131983897116e-19,1.918411372316781e-33,0.0023809524718672037,1.111307226797642e-18,-0.0009523809421807528,2.81331079816309e-19,-0.0015873016091063619,-2.292344952052892e-19,-7.453889935837843e-20,-1.3426733704804482e-21,1.4912625340607657e-19,-4.336808689942018e-19,1.0405819014817716e-21,0.0006349206087179482,2.441065731722133e-33,-1.8705055871176929e-19,3.046435368692851e-19,0.0034722222480922937,9.234809794664512e-18,9.234809794664512e-18,-0.02083333395421505,1.9480301948970814e-17,-1.6521176010920818e-18,7.703719777548943e-34,-9.742216858065258e-19,1.478587855000137e-33,-1.6521176010920818e-18,-9.742216858065258e-19,2.441065731722133e-33,0.010416666977107525,-3.2895496443840503e-18,-5.39691757272569e-18,0.004166666883975267,2.49693008538956e-18,2.49693008538956e-18,-0.004166666883975267,-0.0027777778450399637,-3.965082252960754e-19,1.4444474582904269e-34,-2.338131983897116e-19,-1.8705055871176929e-19,-3.965082252960754e-19,-2.338131983897116e-19,-1.8705055871176929e-19,-3.2895496443840503e-18,0.0027777778450399637,3.0390749728159553e-33,0.002314814832061529,3.3979758586920418e-18,3.3979758586920418e-18,1.079383514545138e-17,-0.0069444444961845875,-7.709882172895574e-19,2.407412430484045e-34,1.4424160571154121e-33,3.046435368692851e-19,-7.709882172895574e-19,1.918411372316781e-33,3.046435368692851e-19,-5.39691757272569e-18,3.0390749728159553e-33,0.002314814832061529,6.0,6.0,3.0,5.0,0.06829176098108292,-0.015504535287618637,-0.015504535287618637,-0.02579365111887455,-0.01785714365541935,0.0009920635493472219,0.0013605442363768816,0.0023809524718672037,0.0015873016091063619,0.0009920635493472219,0.0023809524718672037,0.0015873016091063619,0.0027777778450399637,0.0027777778450399637,0.0013227512827143073,-0.015504535287618637,0.01165816280990839,0.0013605442363768816,0.0023809524718672037,0.0015873016091063619,-0.0014880952658131719,-0.0005442177061922848,-0.0009523809421807528,-0.0006349206087179482,-2.168404344971009e-18,-1.835341312097451e-18,-1.5365284162696874e-18,-1.2971142435355297e-17,-2.6530054184982093e-18,-3.5689075623972965e-18,-0.015504535287618637,0.0013605442363768816,0.01165816280990839,0.0023809524718672037,0.0015873016091063619,-4.228388472693467e-18,-0.0005442177061922848,2.0346846535911592e-19,-1.4907779871675686e-19,-0.0014880952658131719,-0.0009523809421807528,-0.0006349206087179482,-1.2971142435355297e-17,-2.656295322589486e-18,-3.603630122970435e-18,-0.02579365111887455,0.0023809524718672037,0.0023809524718672037,0.0535714291036129,0.0027777778450399637,-8.710838025907084e-18,-2.0415536454083305e-20,-0.0023809524718672037,-2.1338421540391291e-19,-7.697835424647081e-18,-0.0023809524718672037,-1.594605051420371e-19,-0.01666666753590107,-0.0027777778450399637,-2.6275799544198606e-18,-0.01785714365541935,0.0015873016091063619,0.0015873016091063619,0.0027777778450399637,0.01686508022248745,-5.204170427930421e-18,8.985869385419894e-22,-2.291187933171083e-19,-0.0007936508045531809,-4.347020648194291e-18,-1.3552527156068805e-19,-0.0007936508045531809,-5.286776406212723e-18,-0.0013888889225199819,-0.0026455025654286146,0.0009920635493472219,-0.0014880952658131719,-4.228388472693467e-18,-8.710838025907084e-18,-5.204170427930421e-18,0.00029761905898340046,2.439454888092385e-19,5.421010862427522e-19,3.7947076036992655e-19,4.920605365924154e-19,4.531522353246055e-19,3.021015074493331e-19,2.6433882031063616e-18,5.2867765096103e-19,7.498177702821815e-19,0.0013605442363768816,-0.0005442177061922848,-0.0005442177061922848,-2.0415536454083305e-20,8.985869385419894e-22,2.439454888092385e-19,0.00021768707665614784,4.8934576859610756e-20,3.3306873266496614e-20,-1.0821649817331512e-19,-4.0657581468206416e-20,-2.710505431213761e-20,7.703719777548943e-34,-1.3847472479277491e-22,-3.739002175478519e-21,0.0023809524718672037,-0.0009523809421807528,2.0346846535911592e-19,-0.0023809524718672037,-2.291187933171083e-19,5.421010862427522e-19,4.8934576859610756e-20,0.0009523809421807528,8.725067496996951e-20,6.4473514153900825e-34,-3.258049107393171e-19,5.3414463301364744e-34,-2.4579829583317485e-19,1.0992107507771682e-20,1.2819471192327539e-33,0.0015873016091063619,-0.0006349206087179482,-1.4907779871675686e-19,-2.1338421540391291e-19,-0.0007936508045531809,3.7947076036992655e-19,3.3306873266496614e-20,8.725067496996951e-20,0.0003174603043589741,-4.880966208579888e-21,-1.4855415582660993e-21,4.6891767095205824e-20,3.298376904321859e-33,-5.143067150227516e-22,-8.425726342950496e-20,0.0009920635493472219,-2.168404344971009e-18,-0.0014880952658131719,-7.697835424647081e-18,-4.347020648194291e-18,4.920605365924154e-19,-1.0821649817331512e-19,6.4473514153900825e-34,-4.880966208579888e-21,0.00029761905898340046,4.87890977618477e-19,3.2526065174565133e-19,2.6433882031063616e-18,5.282990090356338e-19,7.371931846770323e-19,0.0023809524718672037,-1.835341312097451e-18,-0.0009523809421807528,-0.0023809524718672037,-1.3552527156068805e-19,4.531522353246055e-19,-4.0657581468206416e-20,-3.258049107393171e-19,-1.4855415582660993e-21,4.87890977618477e-19,0.0009523809421807528,6.098637220230962e-20,-2.4579829583317485e-19,8.313547242515094e-21,-4.9518052615364616e-21,0.0015873016091063619,-1.5365284162696874e-18,-0.0006349206087179482,-1.594605051420371e-19,-0.0007936508045531809,3.021015074493331e-19,-2.710505431213761e-20,5.3414463301364744e-34,4.6891767095205824e-20,3.2526065174565133e-19,6.098637220230962e-20,0.0003174603043589741,5.970382827600431e-33,3.497285702544389e-21,-3.0165383471688e-20,0.0027777778450399637,-1.2971142435355297e-17,-1.2971142435355297e-17,-0.01666666753590107,-5.286776406212723e-18,2.6433882031063616e-18,7.703719777548943e-34,-2.4579829583317485e-19,3.298376904321859e-33,2.6433882031063616e-18,-2.4579829583317485e-19,5.970382827600431e-33,0.008333333767950535,8.666684749742561e-33,1.3216941015531808e-18,0.0027777778450399637,-2.6530054184982093e-18,-2.656295322589486e-18,-0.0027777778450399637,-0.0013888889225199819,5.2867765096103e-19,-1.3847472479277491e-22,1.0992107507771682e-20,-5.143067150227516e-22,5.282990090356338e-19,8.313547242515094e-21,3.497285702544389e-21,8.666684749742561e-33,0.0013888889225199819,-1.7143556494263748e-21,0.0013227512827143073,-3.5689075623972965e-18,-3.603630122970435e-18,-2.6275799544198606e-18,-0.0026455025654286146,7.498177702821815e-19,-3.739002175478519e-21,1.2819471192327539e-33,-8.425726342950496e-20,7.371931846770323e-19,-4.9518052615364616e-21,-3.0165383471688e-20,1.3216941015531808e-18,-1.7143556494263748e-21,0.0006613756413571537,6.0,6.0,3.0,6.0,0.05895691737532616,-0.013109410181641579,-0.013109410181641579,-0.02182539738714695,-0.013109410181641579,0.0008267195662483573,0.0011337868636474013,0.0019841270986944437,0.0011337868636474013,0.0008267195662483573,0.0019841270986944437,0.0011337868636474013,0.002314814832061529,0.0019841270986944437,0.0008267195662483573,-0.013109410181641579,0.009790722280740738,0.0011337868636474013,0.0019841270986944437,0.0011337868636474013,-0.0012400794075801969,-0.00045351474545896053,-0.0007936508045531809,-0.00045351474545896053,1.0570971181733668e-18,1.1474132469452754e-18,2.9703078689680646e-19,6.156539863109674e-18,1.2332568101451098e-18,9.8366963936553e-19,-0.013109410181641579,0.0011337868636474013,0.009790722280740738,0.0019841270986944437,0.0011337868636474013,1.951563910473908e-18,-0.00045351474545896053,2.297743339525566e-19,-6.776263578034403e-20,-0.0012400794075801969,-0.0007936508045531809,-0.00045351474545896053,6.156539863109674e-18,1.2332799712022613e-18,1.0739851477519791e-18,-0.02182539738714695,0.0019841270986944437,0.0019841270986944437,0.04497354477643967,0.0019841270986944437,4.10577797203657e-18,3.6303325988182007e-19,-0.0019841270986944437,2.419503291717606e-19,3.469446951953614e-18,-0.0019841270986944437,2.2698443469217423e-19,-0.013888888992369175,-0.0019841270986944437,3.063128183646901e-18,-0.013109410181641579,0.0011337868636474013,0.0011337868636474013,0.0019841270986944437,0.009790722280740738,1.9244588561617704e-18,5.158031728003588e-20,1.7757314976814004e-19,-0.00045351474545896053,1.6457911169721231e-18,1.4907779871675686e-19,-0.00045351474545896053,1.0078529056384924e-17,-0.0007936508045531809,-0.0012400794075801969,0.0008267195662483573,-0.0012400794075801969,1.951563910473908e-18,4.10577797203657e-18,1.9244588561617704e-18,0.00024801588733680546,-1.4907779871675686e-19,-3.7947076036992655e-19,-1.6263032587282567e-19,-2.2101216482014723e-19,-1.8881343569348464e-19,-1.0789339367123366e-19,-1.1014117685272467e-18,-1.8881343569348464e-19,-2.0539195755133435e-19,0.0011337868636474013,-0.00045351474545896053,-0.00045351474545896053,3.6303325988182007e-19,5.158031728003588e-20,-1.4907779871675686e-19,0.00018140589236281812,-7.746567116074418e-20,-4.6866586554136974e-20,2.1373285587623268e-20,-6.776263578034403e-20,2.0328790734103208e-20,5.296307347064899e-34,1.5006855987426657e-23,2.7179044567798842e-21,0.0019841270986944437,-0.0007936508045531809,2.297743339525566e-19,-0.0019841270986944437,1.7757314976814004e-19,-3.7947076036992655e-19,-7.746567116074418e-20,0.0007936508045531809,-2.64934091791172e-20,4.4838056517765335e-34,-3.6110146357173343e-20,1.609957062886205e-34,-6.494811238710172e-19,-1.1133962197358564e-19,4.694454239443887e-34,0.0011337868636474013,-0.00045351474545896053,-6.776263578034403e-20,2.419503291717606e-19,-0.00045351474545896053,-1.6263032587282567e-19,-4.6866586554136974e-20,-2.64934091791172e-20,0.00018140589236281812,-1.391900108501765e-21,8.682787258585554e-22,7.664567667976271e-20,8.121619039525806e-34,-7.115499394530349e-20,1.2728170589825822e-20,0.0008267195662483573,1.0570971181733668e-18,-0.0012400794075801969,3.469446951953614e-18,1.6457911169721231e-18,-2.2101216482014723e-19,2.1373285587623268e-20,4.4838056517765335e-34,-1.391900108501765e-21,0.00024801588733680546,-3.5236570605778894e-19,-1.3552527156068805e-19,-1.1014117685272467e-18,-1.8877239978028377e-19,-2.1643176850040848e-19,0.0019841270986944437,1.1474132469452754e-18,-0.0007936508045531809,-0.0019841270986944437,1.4907779871675686e-19,-1.8881343569348464e-19,-6.776263578034403e-20,-3.6110146357173343e-20,8.682787258585554e-22,-3.5236570605778894e-19,0.0007936508045531809,-2.0328790734103208e-20,-6.494811238710172e-19,-1.1331050902996394e-19,2.374199603154164e-21,0.0011337868636474013,2.9703078689680646e-19,-0.00045351474545896053,2.2698443469217423e-19,-0.00045351474545896053,-1.0789339367123366e-19,2.0328790734103208e-20,1.609957062886205e-34,7.664567667976271e-20,-1.3552527156068805e-19,-2.0328790734103208e-20,0.00018140589236281812,1.3481509610710651e-33,-7.046498314276648e-20,-3.8392948964988933e-22,0.002314814832061529,6.156539863109674e-18,6.156539863109674e-18,-0.013888888992369175,1.0078529056384924e-17,-1.1014117685272467e-18,5.296307347064899e-34,-6.494811238710172e-19,8.121619039525806e-34,-1.1014117685272467e-18,-6.494811238710172e-19,1.3481509610710651e-33,0.0069444444961845875,-2.5063235484257123e-18,-1.514441142950873e-18,0.0019841270986944437,1.2332568101451098e-18,1.2332799712022613e-18,-0.0019841270986944437,-0.0007936508045531809,-1.8881343569348464e-19,1.5006855987426657e-23,-1.1133962197358564e-19,-7.115499394530349e-20,-1.8877239978028377e-19,-1.1331050902996394e-19,-7.046498314276648e-20,-2.5063235484257123e-18,0.0007936508045531809,-1.6072542585734408e-20,0.0008267195662483573,9.8366963936553e-19,1.0739851477519791e-18,3.063128183646901e-18,-0.0012400794075801969,-2.0539195755133435e-19,2.7179044567798842e-21,4.694454239443887e-34,1.2728170589825822e-20,-2.1643176850040848e-19,2.374199603154164e-21,-3.8392948964988933e-22,-1.514441142950873e-18,-1.6072542585734408e-20,0.00024801588733680546,6.0,6.0,3.0,7.0,0.051889870315790176,-0.011358114890754223,-0.011358114890754223,-0.018920067697763443,-0.010038738138973713,0.0007086168043315411,0.0009718172950670123,0.001700680237263441,0.0008503401186317205,0.0007086168043315411,0.001700680237263441,0.0008503401186317205,0.0019841270986944437,0.0014880952658131719,0.0005511463969014585,-0.011358114890754223,0.008440637961030006,0.0009718172950670123,0.001700680237263441,0.0008503401186317205,-0.0010629252064973116,-0.00038872691220603883,-0.0006802721181884408,-0.0003401360590942204,7.318364664277155e-19,7.539786438596881e-19,3.3415635884819973e-19,5.27703428654838e-18,6.187121247343643e-19,7.772631060188081e-19,-0.011358114890754223,0.0009718172950670123,0.008440637961030006,0.001700680237263441,0.0008503401186317205,1.6805133673525319e-18,-0.00038872691220603883,-2.508484338056157e-20,-1.4907779871675686e-19,-0.0010629252064973116,-0.0006802721181884408,-0.0003401360590942204,5.27703428654838e-18,6.2341624917916505e-19,8.074426355714405e-19,-0.018920067697763443,0.001700680237263441,0.001700680237263441,0.038761336356401443,0.0014880952658131719,3.3868428348276906e-18,-1.4134545652227894e-19,-0.001700680237263441,4.9269094676999596e-21,3.0357660829594124e-18,-0.001700680237263441,1.524202901692416e-20,-0.011904762126505375,-0.0014880952658131719,1.9580893315311857e-18,-0.010038738138973713,0.0008503401186317205,0.0008503401186317205,0.0014880952658131719,0.006212207023054361,1.1655173354219173e-18,3.682298863708652e-20,-4.4901929201746964e-20,-0.00028344671591185033,9.681799586124385e-19,-5.421010862427522e-20,-0.00028344671591185033,7.070014438706072e-18,-0.0004960317746736109,-0.0006613756413571537,0.0007086168043315411,-0.0010629252064973116,1.6805133673525319e-18,3.3868428348276906e-18,1.1655173354219173e-18,0.00021258502965793014,-1.0842021724855044e-19,-2.710505431213761e-19,-0.0,-2.0286548946665598e-19,-1.6184009696919903e-19,-8.092004848459951e-20,-9.440672301662115e-19,-1.4161007677011348e-19,-1.3116609435601895e-19,0.0009718172950670123,-0.00038872691220603883,-0.00038872691220603883,-1.4134545652227894e-19,3.682298863708652e-20,-1.0842021724855044e-19,0.00015549076488241553,2.2414558960398345e-20,9.511879918511544e-21,1.1705979562924004e-19,3.3881317890172014e-20,-2.371692252312041e-20,9.62964972193618e-35,2.0192254234243674e-22,-2.3266209154707115e-22,0.001700680237263441,-0.0006802721181884408,-2.508484338056157e-20,-0.001700680237263441,-4.4901929201746964e-20,-2.710505431213761e-19,2.2414558960398345e-20,0.0006802721181884408,-1.0016694352303305e-20,3.5208406795829155e-34,-3.0951554020434294e-20,9.968192094972998e-35,-5.566980840185341e-19,6.994366548640201e-20,2.6180610181513987e-34,0.0008503401186317205,-0.0003401360590942204,-1.4907779871675686e-19,4.9269094676999596e-21,-0.00028344671591185033,-0.0,9.511879918511544e-21,-1.0016694352303305e-20,0.00011337868636474013,-9.081269805676254e-22,4.900160595420883e-22,4.3245396627532957e-20,3.0382869324234236e-34,6.29659575798168e-21,-4.1023108057249624e-20,0.0007086168043315411,7.318364664277155e-19,-0.0010629252064973116,3.0357660829594124e-18,9.681799586124385e-19,-2.0286548946665598e-19,1.1705979562924004e-19,3.5208406795829155e-34,-9.081269805676254e-22,0.00021258502965793014,-2.710505431213761e-19,1.3552527156068805e-20,-9.440672301662115e-19,-1.410579466359314e-19,-1.374736567194655e-19,0.001700680237263441,7.539786438596881e-19,-0.0006802721181884408,-0.001700680237263441,-5.421010862427522e-20,-1.6184009696919903e-19,3.3881317890172014e-20,-3.0951554020434294e-20,4.900160595420883e-22,-2.710505431213761e-19,0.0006802721181884408,-1.0164395367051604e-20,-5.566980840185341e-19,7.096414786835102e-20,1.143370805598206e-21,0.0008503401186317205,3.3415635884819973e-19,-0.0003401360590942204,1.524202901692416e-20,-0.00028344671591185033,-8.092004848459951e-20,-2.371692252312041e-20,9.968192094972998e-35,4.3245396627532957e-20,1.3552527156068805e-20,-1.0164395367051604e-20,0.00011337868636474013,7.703719777548943e-34,3.389653268200545e-21,-4.00544020117676e-20,0.0019841270986944437,5.27703428654838e-18,5.27703428654838e-18,-0.011904762126505375,7.070014438706072e-18,-9.440672301662115e-19,9.62964972193618e-35,-5.566980840185341e-19,3.0382869324234236e-34,-9.440672301662115e-19,-5.566980840185341e-19,7.703719777548943e-34,0.0059523810632526875,-1.3426733664414804e-18,-9.54556810911573e-19,0.0014880952658131719,6.187121247343643e-19,6.2341624917916505e-19,-0.0014880952658131719,-0.0004960317746736109,-1.4161007677011348e-19,2.0192254234243674e-22,6.994366548640201e-20,6.29659575798168e-21,-1.410579466359314e-19,7.096414786835102e-20,3.389653268200545e-21,-1.3426733664414804e-18,0.0004960317746736109,-1.7278008078926993e-20,0.0005511463969014585,7.772631060188081e-19,8.074426355714405e-19,1.9580893315311857e-18,-0.0006613756413571537,-1.3116609435601895e-19,-2.3266209154707115e-22,2.6180610181513987e-34,-4.1023108057249624e-20,-1.374736567194655e-19,1.143370805598206e-21,-4.00544020117676e-20,-9.54556810911573e-19,-1.7278008078926993e-20,0.00011022927355952561,6.0,6.0,3.0,8.0,0.046347472816705704,-0.010021022520959377,-0.010021022520959377,-0.016699735075235367,-0.007936508394777775,0.0006200397037900984,0.0008503401186317205,0.0014880952658131719,0.0006613756413571537,0.0006200397037900984,0.0014880952658131719,0.0006613756413571537,0.0017361111240461469,0.0011574074160307646,0.00038580247201025486,-0.010021022520959377,0.007418627385050058,0.0008503401186317205,0.0014880952658131719,0.0006613756413571537,-0.0009300595265813172,-0.0003401360590942204,-0.0005952381179668009,-0.00026455026818439364,8.113077403811711e-19,7.080504226246586e-19,3.087598460912904e-19,4.130293951031416e-18,5.507058842636234e-19,4.371624204936492e-19,-0.010021022520959377,0.0008503401186317205,0.007418627385050058,0.0014880952658131719,0.0006613756413571537,1.4033727069712341e-18,-0.0003401360590942204,-1.5194763239675364e-33,-5.929230630780102e-21,-0.0009300595265813172,-0.0005952381179668009,-0.00026455026818439364,4.130293951031416e-18,5.507058842636234e-19,4.371624204936492e-19,-0.016699735075235367,0.0014880952658131719,0.0014880952658131719,0.034060847014188766,0.0011574074160307646,2.8951393817659567e-18,-1.432987214889375e-33,-0.0014880952658131719,-1.0415775344373008e-33,2.5411141446042332e-18,-0.0014880952658131719,-1.703203152265183e-33,-0.010416666977107525,-0.0011574074160307646,1.284980310450474e-18,-0.007936508394777775,0.0006613756413571537,0.0006613756413571537,0.0011574074160307646,0.004196586087346077,1.1657231999968664e-18,-5.769899786509294e-34,-1.2621655696893302e-33,-0.0001889644772745669,1.0083786616358312e-18,-1.979263776122974e-33,-0.0001889644772745669,5.280657337631362e-18,-0.0003306878206785768,-0.00038580247201025486,0.0006200397037900984,-0.0009300595265813172,1.4033727069712341e-18,2.8951393817659567e-18,1.1657231999968664e-18,0.00018601190822664648,-9.206902788748504e-20,-2.0140100496622206e-19,-1.0229891915694465e-19,-1.622615454912948e-19,-1.4161007677011348e-19,-6.293781405194439e-20,-8.260588005460409e-19,-1.101411794376641e-19,-9.178430973570487e-20,0.0008503401186317205,-0.0003401360590942204,-0.0003401360590942204,-1.432987214889375e-33,-5.769899786509294e-34,-9.206902788748504e-20,0.0001360544265480712,9.96860650264941e-35,5.063418957292964e-35,8.031348190633606e-35,7.009176644478191e-35,3.1151894603314596e-35,4.088686184621661e-34,5.451581770819498e-35,4.5429846176922983e-35,0.0014880952658131719,-0.0005952381179668009,-1.5194763239675364e-33,-0.0014880952658131719,-1.2621655696893302e-33,-2.0140100496622206e-19,9.96860650264941e-35,0.0005952381179668009,1.1076229830036135e-34,1.7568573521292681e-34,1.5332573192331229e-34,6.814477357017336e-35,8.944001315845809e-34,1.1925335087794412e-34,9.937779622476577e-35,0.0006613756413571537,-0.00026455026818439364,-5.929230630780102e-21,-1.0415775344373008e-33,-0.0001889644772745669,-1.0229891915694465e-19,5.063418957292964e-35,1.1076229830036135e-34,7.558579090982676e-05,8.425943506694157e-35,7.787973794321612e-35,1.6940658945086007e-21,3.7991065951276964e-34,-5.424253249078433e-35,6.2169020758410245e-21,0.0006200397037900984,8.113077403811711e-19,-0.0009300595265813172,2.5411141446042332e-18,1.0083786616358312e-18,-1.622615454912948e-19,8.031348190633606e-35,1.7568573521292681e-34,8.425943506694157e-35,0.00018601190822664648,-2.0140100496622206e-19,-1.0229891915694465e-19,-8.260588005460409e-19,-1.101411794376641e-19,-9.178430973570487e-20,0.0014880952658131719,7.080504226246586e-19,-0.0005952381179668009,-0.0014880952658131719,-1.979263776122974e-33,-1.4161007677011348e-19,7.009176644478191e-35,1.5332573192331229e-34,7.787973794321612e-35,-2.0140100496622206e-19,0.0005952381179668009,1.5867658450414275e-34,1.5232751911016079e-33,2.0310336034413932e-34,1.6925279646030376e-34,0.0006613756413571537,3.087598460912904e-19,-0.00026455026818439364,-1.703203152265183e-33,-0.0001889644772745669,-6.293781405194439e-20,3.1151894603314596e-35,6.814477357017336e-35,1.6940658945086007e-21,-1.0229891915694465e-19,1.5867658450414275e-34,7.558579090982676e-05,6.2592723192585165e-34,-3.3058465510317357e-35,6.2169020758410245e-21,0.0017361111240461469,4.130293951031416e-18,4.130293951031416e-18,-0.010416666977107525,5.280657337631362e-18,-8.260588005460409e-19,4.088686184621661e-34,8.944001315845809e-34,3.7991065951276964e-34,-8.260588005460409e-19,1.5232751911016079e-33,6.2592723192585165e-34,0.0052083334885537624,-7.83226095958338e-19,-6.42490155225237e-19,0.0011574074160307646,5.507058842636234e-19,5.507058842636234e-19,-0.0011574074160307646,-0.0003306878206785768,-1.101411794376641e-19,5.451581770819498e-35,1.1925335087794412e-34,-5.424253249078433e-35,-1.101411794376641e-19,2.0310336034413932e-34,-3.3058465510317357e-35,-7.83226095958338e-19,0.0003306878206785768,4.432102726617065e-35,0.00038580247201025486,4.371624204936492e-19,4.371624204936492e-19,1.284980310450474e-18,-0.00038580247201025486,-9.178430973570487e-20,4.5429846176922983e-35,9.937779622476577e-35,6.2169020758410245e-21,-9.178430973570487e-20,1.6925279646030376e-34,6.2169020758410245e-21,-6.42490155225237e-19,4.432102726617065e-35,5.5114636779762805e-05,6.0,6.0,4.0,3.0,0.08123110234737396,-0.01898384280502796,-0.01898384280502796,-0.02579365111887455,-0.03154762089252472,0.0012400794075801969,0.001700680237263441,0.0023809524718672037,0.0029761905316263437,0.0012400794075801969,0.0023809524718672037,0.0029761905316263437,0.002314814832061529,0.004166666883975267,0.0034722222480922937,-0.01898384280502796,0.01441397424787283,0.001700680237263441,0.0023809524718672037,0.0029761905316263437,-0.0018601190531626344,-0.0006802721181884408,-0.0009523809421807528,-0.0011904762359336019,1.5178830414797062e-18,1.111307226797642e-18,1.0028870095490916e-18,3.3979758586920418e-18,2.49693008538956e-18,9.234809794664512e-18,-0.01898384280502796,0.001700680237263441,0.01441397424787283,0.0023809524718672037,0.0029761905316263437,2.710505431213761e-18,-0.0006802721181884408,-2.7880078602129756e-19,-3.026538056045771e-19,-0.0018601190531626344,-0.0009523809421807528,-0.0011904762359336019,3.3979758586920418e-18,2.49693008538956e-18,9.234809794664512e-18,-0.02579365111887455,0.0023809524718672037,0.0023809524718672037,0.033399470150470734,0.004166666883975267,4.361432202416496e-18,1.5246593050577406e-19,-0.0015873016091063619,4.195779048392672e-19,3.7947076036992655e-18,-0.0015873016091063619,3.8037342121337504e-19,-0.0069444444961845875,-0.0027777778450399637,-3.6681215994069047e-32,-0.03154762089252472,0.0029761905316263437,0.0029761905316263437,0.004166666883975267,0.06626984477043152,5.7462715141731735e-18,-1.6940658945086007e-19,4.613055478273875e-19,-0.0029761905316263437,5.059673555445983e-18,4.321710834305335e-19,-0.0029761905316263437,-2.1419069010100734e-32,-0.004166666883975267,-0.02083333395421505,0.0012400794075801969,-0.0018601190531626344,2.710505431213761e-18,4.361432202416496e-18,5.7462715141731735e-18,0.00037202381645329297,-2.168404344971009e-19,-4.336808689942018e-19,-4.336808689942018e-19,-3.1464265121019096e-19,-2.261127414229082e-19,-2.845313640580942e-19,-7.709882172895574e-19,-3.965082252960754e-19,-1.6521176010920818e-18,0.001700680237263441,-0.0006802721181884408,-0.0006802721181884408,1.5246593050577406e-19,-1.6940658945086007e-19,-2.168404344971009e-19,0.0002721088530961424,2.0328790734103208e-20,6.776263578034403e-21,1.850740041757253e-20,-8.131516293641283e-20,6.098637220230962e-20,2.8888949165808538e-34,1.4444474582904269e-34,6.7407548053553255e-34,0.0023809524718672037,-0.0009523809421807528,-2.7880078602129756e-19,-0.0015873016091063619,4.613055478273875e-19,-4.336808689942018e-19,2.0328790734103208e-20,0.0006349206087179482,-7.296321076434441e-20,6.667229217955123e-22,1.4912625340607657e-19,6.713366852402241e-22,3.046435368692851e-19,-1.8705055871176929e-19,2.024992894092861e-33,0.0029761905316263437,-0.0011904762359336019,-3.026538056045771e-19,4.195779048392672e-19,-0.0029761905316263437,-4.336808689942018e-19,6.776263578034403e-21,-7.296321076434441e-20,0.0011904762359336019,3.845976258065302e-21,-1.3426733704804482e-21,2.66856323825426e-19,9.038660753510658e-34,-2.338131983897116e-19,-9.742216858065258e-19,0.0012400794075801969,1.5178830414797062e-18,-0.0018601190531626344,3.7947076036992655e-18,5.059673555445983e-18,-3.1464265121019096e-19,1.850740041757253e-20,6.667229217955123e-22,3.845976258065302e-21,0.00037202381645329297,-4.336808689942018e-19,-4.0657581468206416e-19,-7.709882172895574e-19,-3.965082252960754e-19,-1.6521176010920818e-18,0.0023809524718672037,1.111307226797642e-18,-0.0009523809421807528,-0.0015873016091063619,4.321710834305335e-19,-2.261127414229082e-19,-8.131516293641283e-20,1.4912625340607657e-19,-1.3426733704804482e-21,-4.336808689942018e-19,0.0006349206087179482,-5.929542115979517e-20,3.046435368692851e-19,-1.8705055871176929e-19,2.979195841598045e-33,0.0029761905316263437,1.0028870095490916e-18,-0.0011904762359336019,3.8037342121337504e-19,-0.0029761905316263437,-2.845313640580942e-19,6.098637220230962e-20,6.713366852402241e-22,2.66856323825426e-19,-4.0657581468206416e-19,-5.929542115979517e-20,0.0011904762359336019,1.3847130598144615e-33,-2.338131983897116e-19,-9.742216858065258e-19,0.002314814832061529,3.3979758586920418e-18,3.3979758586920418e-18,-0.0069444444961845875,-2.1419069010100734e-32,-7.709882172895574e-19,2.8888949165808538e-34,3.046435368692851e-19,9.038660753510658e-34,-7.709882172895574e-19,3.046435368692851e-19,1.3847130598144615e-33,0.002314814832061529,1.3347459173678754e-33,6.847751239903047e-33,0.004166666883975267,2.49693008538956e-18,2.49693008538956e-18,-0.0027777778450399637,-0.004166666883975267,-3.965082252960754e-19,1.4444474582904269e-34,-1.8705055871176929e-19,-2.338131983897116e-19,-3.965082252960754e-19,-1.8705055871176929e-19,-2.338131983897116e-19,1.3347459173678754e-33,0.0027777778450399637,3.6274903432971446e-33,0.0034722222480922937,9.234809794664512e-18,9.234809794664512e-18,-3.6681215994069047e-32,-0.02083333395421505,-1.6521176010920818e-18,6.7407548053553255e-34,2.024992894092861e-33,-9.742216858065258e-19,-1.6521176010920818e-18,2.979195841598045e-33,-9.742216858065258e-19,6.847751239903047e-33,3.6274903432971446e-33,0.010416666977107525,6.0,6.0,4.0,4.0,0.06548185646533966,-0.014684311114251614,-0.014684311114251614,-0.019970238208770752,-0.019970238208770752,0.0009300595265813172,0.0012755101779475808,0.0017857142956927419,0.0017857142956927419,0.0009300595265813172,0.0017857142956927419,0.0017857142956927419,0.0017361111240461469,0.0024999999441206455,0.0017361111240461469,-0.014684311114251614,0.01098905224353075,0.0012755101779475808,0.0017857142956927419,0.0017857142956927419,-0.0013950893189758062,-0.0005102040595375001,-0.0007142857066355646,-0.0007142857066355646,1.1655173354219173e-18,7.995991022080595e-19,7.995991022080595e-19,3.3003788861684414e-18,1.5262156453802591e-18,3.3003788861684414e-18,-0.014684311114251614,0.0012755101779475808,0.01098905224353075,0.0017857142956927419,0.0017857142956927419,2.2768245622195593e-18,-0.0005102040595375001,7.524124032192131e-20,7.524124032192131e-20,-0.0013950893189758062,-0.0007142857066355646,-0.0007142857066355646,3.3003788861684414e-18,1.5262156453802591e-18,3.3003788861684414e-18,-0.019970238208770752,0.0017857142956927419,0.0017857142956927419,0.025466270744800568,0.0024999999441206455,3.1376648082585948e-18,-5.082197683525802e-20,-0.0011904762359336019,1.342092659802074e-19,2.7647155398380363e-18,-0.0011904762359336019,1.8561674451748518e-19,-0.0052083334885537624,-0.0016666667070239782,-1.2268680089938309e-32,-0.019970238208770752,0.0017857142956927419,0.0017857142956927419,0.0024999999441206455,0.025466270744800568,3.144186300207963e-18,-6.776263578034403e-20,1.342092659802074e-19,-0.0011904762359336019,2.7500281208815447e-18,1.8561674451748518e-19,-0.0011904762359336019,-1.2268680089938309e-32,-0.0016666667070239782,-0.0052083334885537624,0.0009300595265813172,-0.0013950893189758062,2.2768245622195593e-18,3.1376648082585948e-18,3.144186300207963e-18,0.00027901786961592734,-2.168404344971009e-19,-2.439454888092385e-19,-2.439454888092385e-19,-2.4401753107071304e-19,-1.7231175115972287e-19,-1.7231175115972287e-19,-5.782411758918651e-19,-2.379049248378876e-19,-5.782411758918651e-19,0.0012755101779475808,-0.0005102040595375001,-0.0005102040595375001,-5.082197683525802e-20,-6.776263578034403e-20,-2.168404344971009e-19,0.0002040816325461492,-2.0328790734103208e-20,-1.3552527156068805e-20,2.0656813083420233e-20,4.0657581468206416e-20,4.0657581468206416e-20,2.8888949165808538e-34,1.2037062152420224e-34,3.3703774026776627e-34,0.0017857142956927419,-0.0007142857066355646,7.524124032192131e-20,-0.0011904762359336019,1.342092659802074e-19,-2.439454888092385e-19,-2.0328790734103208e-20,0.0004761904710903764,1.365449493802444e-20,2.6258717279041235e-21,-2.5779327743872325e-20,9.62964972193618e-35,-2.727820647879969e-19,-1.122303403969404e-19,5.033158242953944e-34,0.0017857142956927419,-0.0007142857066355646,7.524124032192131e-20,1.342092659802074e-19,-0.0011904762359336019,-2.439454888092385e-19,-1.3552527156068805e-20,1.365449493802444e-20,0.0004761904710903764,-4.9587135121209865e-22,9.62964972193618e-35,-2.5779327743872325e-20,5.033158242953944e-34,-1.122303403969404e-19,-2.727820647879969e-19,0.0009300595265813172,1.1655173354219173e-18,-0.0013950893189758062,2.7647155398380363e-18,2.7500281208815447e-18,-2.4401753107071304e-19,2.0656813083420233e-20,2.6258717279041235e-21,-4.9587135121209865e-22,0.00027901786961592734,-2.710505431213761e-19,-2.710505431213761e-19,-5.782411758918651e-19,-2.379049248378876e-19,-5.782411758918651e-19,0.0017857142956927419,7.995991022080595e-19,-0.0007142857066355646,-0.0011904762359336019,1.8561674451748518e-19,-1.7231175115972287e-19,4.0657581468206416e-20,-2.5779327743872325e-20,9.62964972193618e-35,-2.710505431213761e-19,0.0004761904710903764,-6.908496153769247e-21,-2.727820647879969e-19,-1.122303403969404e-19,9.058243754711388e-34,0.0017857142956927419,7.995991022080595e-19,-0.0007142857066355646,1.8561674451748518e-19,-0.0011904762359336019,-1.7231175115972287e-19,4.0657581468206416e-20,9.62964972193618e-35,-2.5779327743872325e-20,-2.710505431213761e-19,-6.908496153769247e-21,0.0004761904710903764,9.058243754711388e-34,-1.122303403969404e-19,-2.727820647879969e-19,0.0017361111240461469,3.3003788861684414e-18,3.3003788861684414e-18,-0.0052083334885537624,-1.2268680089938309e-32,-5.782411758918651e-19,2.8888949165808538e-34,-2.727820647879969e-19,5.033158242953944e-34,-5.782411758918651e-19,-2.727820647879969e-19,9.058243754711388e-34,0.0017361111240461469,1.0371273699644768e-33,2.3967128604976696e-33,0.0024999999441206455,1.5262156453802591e-18,1.5262156453802591e-18,-0.0016666667070239782,-0.0016666667070239782,-2.379049248378876e-19,1.2037062152420224e-34,-1.122303403969404e-19,-1.122303403969404e-19,-2.379049248378876e-19,-1.122303403969404e-19,-1.122303403969404e-19,1.0371273699644768e-33,0.0011111111380159855,1.0371273699644768e-33,0.0017361111240461469,3.3003788861684414e-18,3.3003788861684414e-18,-1.2268680089938309e-32,-0.0052083334885537624,-5.782411758918651e-19,3.3703774026776627e-34,5.033158242953944e-34,-2.727820647879969e-19,-5.782411758918651e-19,9.058243754711388e-34,-2.727820647879969e-19,2.3967128604976696e-33,1.0371273699644768e-33,0.0017361111240461469,6.0,6.0,4.0,5.0,0.05494897812604904,-0.011985544115304947,-0.011985544115304947,-0.016309523954987526,-0.013809523545205593,0.0007440476329065859,0.0010204081190750003,0.0014285714132711291,0.0011904762359336019,0.0007440476329065859,0.0014285714132711291,0.0011904762359336019,0.0013888889225199819,0.0016666667070239782,0.0009920635493472219,-0.011985544115304947,0.008886479772627354,0.0010204081190750003,0.0014285714132711291,0.0011904762359336019,-0.0011160714784637094,-0.0004081632650922984,-0.0005714285653084517,-0.0004761904710903764,-2.0057740190981832e-18,-1.3540924914001984e-18,-1.3114549497382697e-18,-4.55878508886246e-18,-1.6202201725035417e-18,-3.2022696820505176e-18,-0.011985544115304947,0.0010204081190750003,0.008886479772627354,0.0014285714132711291,0.0011904762359336019,-3.1170812458958252e-18,-0.0004081632650922984,-4.308691076087236e-20,-1.6263032587282567e-19,-0.0011160714784637094,-0.0005714285653084517,-0.0004761904710903764,-4.55878508886246e-18,-1.5895277392723382e-18,-3.174958039380395e-18,-0.016309523954987526,0.0014285714132711291,0.0014285714132711291,0.020595237612724304,0.0016666667070239782,-4.8946142137043955e-18,8.707405898449237e-20,-0.0009523809421807528,7.918154748156033e-20,-4.228388472693467e-18,-0.0009523809421807528,9.502309665006504e-20,-0.004166666883975267,-0.0011111111380159855,-2.2973320756647623e-19,-0.013809523545205593,0.0011904762359336019,0.0011904762359336019,0.0016666667070239782,0.012857142835855484,-3.74049749507499e-18,2.244595789634555e-20,2.419044723465522e-19,-0.0005952381179668009,-3.20270870816063e-18,2.2705353012271655e-19,-0.0005952381179668009,-2.865213407389188e-32,-0.0008333333535119891,-0.0019841270986944437,0.0007440476329065859,-0.0011160714784637094,-3.1170812458958252e-18,-4.8946142137043955e-18,-3.74049749507499e-18,0.00022321428696159273,1.0842021724855044e-19,3.2526065174565133e-19,1.7618285302889447e-19,3.825040316761585e-19,2.718913463646421e-19,2.2657611766230274e-19,9.251859021064995e-19,3.172065750669815e-19,5.532302326979821e-19,0.0010204081190750003,-0.0004081632650922984,-0.0004081632650922984,8.707405898449237e-20,2.244595789634555e-20,1.0842021724855044e-19,0.00016326530021615326,-7.724568796983196e-21,-9.256349771685848e-21,3.742223898561571e-20,-2.710505431213761e-20,-0.0,7.703719777548943e-34,2.6481536735324493e-34,1.5975127528322084e-22,0.0014285714132711291,-0.0005714285653084517,-4.308691076087236e-20,-0.0009523809421807528,2.419044723465522e-19,3.2526065174565133e-19,-7.724568796983196e-21,0.0003809523768723011,-7.10546724466373e-20,5.38658531320805e-34,4.159889038707189e-20,3.014907910989003e-34,-4.4762817455996005e-20,-4.284520276977068e-20,8.125016952883651e-34,0.0011904762359336019,-0.0004761904710903764,-1.6263032587282567e-19,7.918154748156033e-20,-0.0005952381179668009,1.7618285302889447e-19,-9.256349771685848e-21,-7.10546724466373e-20,0.0002380952355451882,1.3262002382181037e-21,2.046300565911438e-34,8.928717425102946e-20,7.877002338539534e-34,4.922756035516792e-20,2.2067777705752267e-19,0.0007440476329065859,-2.0057740190981832e-18,-0.0011160714784637094,-4.228388472693467e-18,-3.20270870816063e-18,3.825040316761585e-19,3.742223898561571e-20,5.38658531320805e-34,1.3262002382181037e-21,0.00022321428696159273,3.3881317890172014e-19,1.7618285302889447e-19,9.251859021064995e-19,3.172065750669815e-19,5.519307836544496e-19,0.0014285714132711291,-1.3540924914001984e-18,-0.0005714285653084517,-0.0009523809421807528,2.2705353012271655e-19,2.718913463646421e-19,-2.710505431213761e-20,4.159889038707189e-20,2.046300565911438e-34,3.3881317890172014e-19,0.0003809523768723011,-6.511429426463333e-20,-4.4762817455996005e-20,-4.284520276977068e-20,1.4143548029093763e-33,0.0011904762359336019,-1.3114549497382697e-18,-0.0004761904710903764,9.502309665006504e-20,-0.0005952381179668009,2.2657611766230274e-19,-0.0,3.014907910989003e-34,8.928717425102946e-20,1.7618285302889447e-19,-6.511429426463333e-20,0.0002380952355451882,1.70047637271326e-33,3.3881317890172014e-20,2.1054773553528616e-19,0.0013888889225199819,-4.55878508886246e-18,-4.55878508886246e-18,-0.004166666883975267,-2.865213407389188e-32,9.251859021064995e-19,7.703719777548943e-34,-4.4762817455996005e-20,7.877002338539534e-34,9.251859021064995e-19,-4.4762817455996005e-20,1.70047637271326e-33,0.0013888889225199819,2.4328602301404165e-33,4.695600713777924e-33,0.0016666667070239782,-1.6202201725035417e-18,-1.5895277392723382e-18,-0.0011111111380159855,-0.0008333333535119891,3.172065750669815e-19,2.6481536735324493e-34,-4.284520276977068e-20,4.922756035516792e-20,3.172065750669815e-19,-4.284520276977068e-20,3.3881317890172014e-20,2.4328602301404165e-33,0.0005555555690079927,1.1486660378323811e-19,0.0009920635493472219,-3.2022696820505176e-18,-3.174958039380395e-18,-2.2973320756647623e-19,-0.0019841270986944437,5.532302326979821e-19,1.5975127528322084e-22,8.125016952883651e-34,2.2067777705752267e-19,5.519307836544496e-19,1.4143548029093763e-33,2.1054773553528616e-19,4.695600713777924e-33,1.1486660378323811e-19,0.0004960317746736109,6.0,6.0,4.0,6.0,0.04737575724720955,-0.010129677131772041,-0.010129677131772041,-0.013789682649075985,-0.010129677131772041,0.0006200397037900984,0.0008503401186317205,0.0011904762359336019,0.0008503401186317205,0.0006200397037900984,0.0011904762359336019,0.0008503401186317205,0.0011574074160307646,0.0011904762359336019,0.0006200397037900984,-0.010129677131772041,0.007462088949978352,0.0008503401186317205,0.0011904762359336019,0.0008503401186317205,-0.0009300595265813172,-0.0003401360590942204,-0.0004761904710903764,-0.0003401360590942204,7.318364664277155e-19,5.487087083734024e-19,4.437231518233252e-19,1.6989879293460209e-18,5.565510526646528e-19,7.406608292024312e-19,-0.010129677131772041,0.0008503401186317205,0.007462088949978352,0.0011904762359336019,0.0008503401186317205,1.4094628242311558e-18,-0.0003401360590942204,-1.4852918410017814e-19,1.3552527156068805e-20,-0.0009300595265813172,-0.0004761904710903764,-0.0003401360590942204,1.6989879293460209e-18,5.55653613398821e-19,7.690560267762101e-19,-0.013789682649075985,0.0011904762359336019,0.0011904762359336019,0.017294973134994507,0.0011904762359336019,2.2451030129087633e-18,5.77428871605641e-20,-0.0007936508045531809,8.031504987704794e-20,1.870248747537495e-18,-0.0007936508045531809,6.004670148879792e-20,-0.0034722222480922937,-0.0007936508045531809,-1.3711245021041832e-19,-0.010129677131772041,0.0008503401186317205,0.0008503401186317205,0.0011904762359336019,0.007462088949978352,1.4094628242311558e-18,-2.7718137317707187e-20,-2.3423310564168164e-20,-0.0003401360590942204,1.2388202201499883e-18,-2.710505431213761e-20,-0.0003401360590942204,-5.3968128487441734e-33,-0.0004761904710903764,-0.0009300595265813172,0.0006200397037900984,-0.0009300595265813172,1.4094628242311558e-18,2.2451030129087633e-18,1.4094628242311558e-18,0.00018601190822664648,-8.131516293641283e-20,-2.303929616531697e-19,-9.486769009248164e-20,-1.5801919462345174e-19,-1.1328805883115137e-19,-8.092004848459951e-20,-3.854941086447787e-19,-1.1328805883115137e-19,-1.5929181199586457e-19,0.0008503401186317205,-0.0003401360590942204,-0.0003401360590942204,5.77428871605641e-20,-2.7718137317707187e-20,-8.131516293641283e-20,0.0001360544265480712,1.4815497857705166e-20,1.0860159275372403e-20,2.280622736485507e-20,-3.7269449679189215e-20,-0.0,1.2037062152420224e-34,-6.432032043003033e-22,2.8241018458520486e-22,0.0011904762359336019,-0.0004761904710903764,-1.4852918410017814e-19,-0.0007936508045531809,-2.3423310564168164e-20,-2.303929616531697e-19,1.4815497857705166e-20,0.0003174603043589741,-1.3560765034864524e-20,7.071774014546882e-35,7.432696017580586e-20,8.952564975862542e-35,1.5232176843464255e-19,3.8216817049806783e-20,1.940976272077761e-34,0.0008503401186317205,-0.0003401360590942204,1.3552527156068805e-20,8.031504987704794e-20,-0.0003401360590942204,-9.486769009248164e-20,1.0860159275372403e-20,-1.3560765034864524e-20,0.0001360544265480712,-2.2645318824313003e-22,-2.340787090280053e-22,-1.564916828377504e-20,1.8467700425864514e-34,-1.8331177019768922e-20,2.1530055700747673e-20,0.0006200397037900984,7.318364664277155e-19,-0.0009300595265813172,1.870248747537495e-18,1.2388202201499883e-18,-1.5801919462345174e-19,2.280622736485507e-20,7.071774014546882e-35,-2.2645318824313003e-22,0.00018601190822664648,-1.8973538018496328e-19,-1.0842021724855044e-19,-3.854941086447787e-19,-1.150468257591981e-19,-1.6201313281358747e-19,0.0011904762359336019,5.487087083734024e-19,-0.0004761904710903764,-0.0007936508045531809,-2.710505431213761e-20,-1.1328805883115137e-19,-3.7269449679189215e-20,7.432696017580586e-20,-2.340787090280053e-22,-1.8973538018496328e-19,0.0003174603043589741,-1.0164395367051604e-20,1.5232176843464255e-19,3.771641801565195e-20,-6.400590193022586e-22,0.0008503401186317205,4.437231518233252e-19,-0.0003401360590942204,6.004670148879792e-20,-0.0003401360590942204,-8.092004848459951e-20,-0.0,8.952564975862542e-35,-1.564916828377504e-20,-1.0842021724855044e-19,-1.0164395367051604e-20,0.0001360544265480712,3.490748024201865e-34,-1.385428652093727e-20,1.6463083310371675e-20,0.0011574074160307646,1.6989879293460209e-18,1.6989879293460209e-18,-0.0034722222480922937,-5.3968128487441734e-33,-3.854941086447787e-19,1.2037062152420224e-34,1.5232176843464255e-19,1.8467700425864514e-34,-3.854941086447787e-19,1.5232176843464255e-19,3.490748024201865e-34,0.0011574074160307646,4.690254143027102e-34,6.718394239573297e-34,0.0011904762359336019,5.565510526646528e-19,5.55653613398821e-19,-0.0007936508045531809,-0.0004761904710903764,-1.1328805883115137e-19,-6.432032043003033e-22,3.8216817049806783e-20,-1.8331177019768922e-20,-1.150468257591981e-19,3.771641801565195e-20,-1.385428652093727e-20,4.690254143027102e-34,0.0003174603043589741,5.548503951746379e-20,0.0006200397037900984,7.406608292024312e-19,7.690560267762101e-19,-1.3711245021041832e-19,-0.0009300595265813172,-1.5929181199586457e-19,2.8241018458520486e-22,1.940976272077761e-34,2.1530055700747673e-20,-1.6201313281358747e-19,-6.400590193022586e-22,1.6463083310371675e-20,6.718394239573297e-34,5.548503951746379e-20,0.00018601190822664648,6.0,6.0,4.0,7.0,0.04165620729327202,-0.008773688226938248,-0.008773688226938248,-0.01194727886468172,-0.0077522676438093185,0.0005314626032486558,0.0007288630004040897,0.0010204081190750003,0.0006377550889737904,0.0005314626032486558,0.0010204081190750003,0.0006377550889737904,0.0009920635493472219,0.0008928571478463709,0.00041335978312417865,-0.008773688226938248,0.006432519294321537,0.0007288630004040897,0.0010204081190750003,0.0006377550889737904,-0.0007971939048729837,-0.0002915451768785715,-0.0004081632650922984,-0.00025510202976875007,8.944667923005412e-19,3.396858027491753e-19,2.237378800348743e-19,1.8859308511805817e-18,5.044686076722288e-19,4.533919109070927e-19,-0.008773688226938248,0.0007288630004040897,0.006432519294321537,0.0010204081190750003,0.0006377550889737904,1.4094628242311558e-18,-0.0002915451768785715,-1.2887520472485627e-19,-8.131516293641283e-20,-0.0007971939048729837,-0.0004081632650922984,-0.00025510202976875007,1.8859308511805817e-18,5.014435047745458e-19,4.718811036576663e-19,-0.01194727886468172,0.0010204081190750003,0.0010204081190750003,0.014909297227859497,0.0008928571478463709,1.896238141998452e-18,-1.1702303779076971e-19,-0.0006802721181884408,2.989382589270052e-20,1.6534083130403943e-18,-0.0006802721181884408,2.791531326505025e-20,-0.0029761905316263437,-0.0005952381179668009,9.147686996647364e-20,-0.0077522676438093185,0.0006377550889737904,0.0006377550889737904,0.0008928571478463709,0.004733560141175985,1.1655173354219173e-18,-7.493094419463735e-20,7.069485534252526e-20,-0.00021258502965793014,9.873545221993006e-19,8.131516293641283e-20,-0.00021258502965793014,-4.508834865241417e-33,-0.00029761905898340046,-0.0004960317746736109,0.0005314626032486558,-0.0007971939048729837,1.4094628242311558e-18,1.896238141998452e-18,1.1655173354219173e-18,0.0001594387722434476,-1.4907779871675686e-19,-1.4907779871675686e-19,-1.0842021724855044e-19,-1.4621397018912757e-19,-9.710405688904971e-20,-6.06900347478625e-20,-3.304235253882952e-19,-8.49660473545378e-20,-1.0341466948100504e-19,0.0007288630004040897,-0.0002915451768785715,-0.0002915451768785715,-1.1702303779076971e-19,-7.493094419463735e-20,-1.4907779871675686e-19,0.00011661807366181165,2.0058981220394603e-20,1.3366866306022565e-20,-6.467108055266976e-20,2.710505431213761e-20,1.3552527156068805e-20,4.2129717533470784e-34,-2.956831921449936e-22,1.2424596112812428e-21,0.0010204081190750003,-0.0004081632650922984,-1.2887520472485627e-19,-0.0006802721181884408,7.069485534252526e-20,-1.4907779871675686e-19,2.0058981220394603e-20,0.0002721088530961424,-4.228582834288023e-21,1.5648180798146291e-34,5.24851720908122e-20,6.507536726152184e-35,-1.5587546559314107e-19,-4.0082264427478714e-20,1.023150282955719e-34,0.0006377550889737904,-0.00025510202976875007,-8.131516293641283e-20,2.989382589270052e-20,-0.00021258502965793014,-1.0842021724855044e-19,1.3366866306022565e-20,-4.228582834288023e-21,8.50340147735551e-05,4.413365006881818e-22,-2.186382651103548e-22,1.5276988706914462e-20,2.2010422289939513e-34,-6.2585910901407734e-21,2.0354003586914737e-20,0.0005314626032486558,8.944667923005412e-19,-0.0007971939048729837,1.6534083130403943e-18,9.873545221993006e-19,-1.4621397018912757e-19,-6.467108055266976e-20,1.5648180798146291e-34,4.413365006881818e-22,0.0001594387722434476,-1.4907779871675686e-19,-1.0842021724855044e-19,-3.304235253882952e-19,-8.577455824217156e-20,-1.0213622307021313e-19,0.0010204081190750003,3.396858027491753e-19,-0.0004081632650922984,-0.0006802721181884408,8.131516293641283e-20,-9.710405688904971e-20,2.710505431213761e-20,5.24851720908122e-20,-2.186382651103548e-22,-1.4907779871675686e-19,0.0002721088530961424,-6.776263578034403e-21,-1.5587546559314107e-19,-4.034126243208731e-20,-5.101559182660959e-22,0.0006377550889737904,2.237378800348743e-19,-0.00025510202976875007,2.791531326505025e-20,-0.00021258502965793014,-6.06900347478625e-20,1.3552527156068805e-20,6.507536726152184e-35,1.5276988706914462e-20,-1.0842021724855044e-19,-6.776263578034403e-21,8.50340147735551e-05,3.490748024201865e-34,-3.658218375919269e-21,1.213345034762007e-20,0.0009920635493472219,1.8859308511805817e-18,1.8859308511805817e-18,-0.0029761905316263437,-4.508834865241417e-33,-3.304235253882952e-19,4.2129717533470784e-34,-1.5587546559314107e-19,2.2010422289939513e-34,-3.304235253882952e-19,-1.5587546559314107e-19,3.490748024201865e-34,0.0009920635493472219,3.708146291248091e-34,4.217876228019396e-34,0.0008928571478463709,5.044686076722288e-19,5.014435047745458e-19,-0.0005952381179668009,-0.00029761905898340046,-8.49660473545378e-20,-2.956831921449936e-22,-4.0082264427478714e-20,-6.2585910901407734e-21,-8.577455824217156e-20,-4.034126243208731e-20,-3.658218375919269e-21,3.708146291248091e-34,0.00019841270113829523,-3.006715900512159e-20,0.00041335978312417865,4.533919109070927e-19,4.718811036576663e-19,9.147686996647364e-20,-0.0004960317746736109,-1.0341466948100504e-19,1.2424596112812428e-21,1.023150282955719e-34,2.0354003586914737e-20,-1.0213622307021313e-19,-5.101559182660959e-22,1.213345034762007e-20,4.217876228019396e-34,-3.006715900512159e-20,8.26719551696442e-05,6.0,6.0,4.0,8.0,0.03717875853180885,-0.007738980930298567,-0.007738980930298567,-0.010540674440562725,-0.00612599216401577,0.0004650297632906586,0.0006377550889737904,0.0008928571478463709,0.0004960317746736109,0.0004650297632906586,0.0008928571478463709,0.0004960317746736109,0.0008680555620230734,0.0006944444612599909,0.00028935185400769114,-0.007738980930298567,0.005653256084769964,0.0006377550889737904,0.0008928571478463709,0.0004960317746736109,-0.0006975446594879031,-0.00025510202976875007,-0.0003571428533177823,-0.00019841270113829523,3.4296190326397985e-19,2.888845571280194e-19,1.4270372586218222e-19,1.4456028621814804e-18,3.559425901228331e-19,3.0943340375445584e-19,-0.007738980930298567,0.0006377550889737904,0.005653256084769964,0.0008928571478463709,0.0004960317746736109,8.9456688115466e-19,-0.00025510202976875007,-1.3594567318232106e-19,-9.331306875467358e-20,-0.0006975446594879031,-0.0003571428533177823,-0.00019841270113829523,1.4456028621814804e-18,3.600696785421957e-19,3.0263061869803146e-19,-0.010540674440562725,0.0008928571478463709,0.0008928571478463709,0.013103505596518517,0.0006944444612599909,1.2414483797512224e-18,-2.718913463646421e-19,-0.0005952381179668009,-6.259386201348719e-20,1.0290332581337037e-18,-0.0005952381179668009,-5.846678651882164e-20,-0.0026041667442768812,-0.00046296295477077365,7.665275295140916e-20,-0.00612599216401577,0.0004960317746736109,0.0004960317746736109,0.0006944444612599909,0.0031970427371561527,6.363462712254994e-19,-1.5105075372466654e-19,-8.811293967272215e-20,-0.00014172335795592517,5.183378416053288e-19,-8.811293967272215e-20,-0.00014172335795592517,-2.3929861760635783e-33,-0.00019841270113829523,-0.00028935185400769114,0.0004650297632906586,-0.0006975446594879031,8.9456688115466e-19,1.2414483797512224e-18,6.363462712254994e-19,0.00013950893480796367,2.629901406112835e-21,2.7849982152529897e-20,2.5062735686221382e-20,-1.2169615588729683e-19,-8.49660473545378e-20,-4.720335892337116e-20,-2.8912058794593256e-19,-6.608470637012875e-20,-6.883823553295292e-20,0.0006377550889737904,-0.00025510202976875007,-0.00025510202976875007,-2.718913463646421e-19,-1.5105075372466654e-19,2.629901406112835e-21,0.0001020408162730746,5.437827185786784e-20,3.021015139116816e-20,1.0620756080875938e-19,5.437827185786784e-20,3.021015139116816e-20,-2.255565192651691e-34,-5.995518822788472e-35,-4.0723021581352244e-35,0.0008928571478463709,-0.0003571428533177823,-1.3594567318232106e-19,-0.0005952381179668009,-8.811293967272215e-20,2.7849982152529897e-20,5.437827185786784e-20,0.0002380952355451882,3.52451739303843e-20,3.2304714196163624e-35,1.2016904261013545e-35,9.835786833457587e-36,-5.771675540621879e-35,-1.772550058219783e-35,-6.791679051603152e-36,0.0004960317746736109,-0.00019841270113829523,-9.331306875467358e-20,-6.259386201348719e-20,-0.00014172335795592517,2.5062735686221382e-20,3.021015139116816e-20,3.52451739303843e-20,5.668934318237007e-05,6.018531076210112e-36,4.604227127206733e-36,5.082197683525802e-21,-5.194042323196985e-35,-7.291164930096623e-21,9.930787122045698e-21,0.0004650297632906586,3.4296190326397985e-19,-0.0006975446594879031,1.0290332581337037e-18,5.183378416053288e-19,-1.2169615588729683e-19,1.0620756080875938e-19,3.2304714196163624e-35,6.018531076210112e-36,0.00013950893480796367,2.7849982152529897e-20,2.5062735686221382e-20,-2.8912058794593256e-19,-6.608470637012875e-20,-6.883823553295292e-20,0.0008928571478463709,2.888845571280194e-19,-0.0003571428533177823,-0.0005952381179668009,-8.811293967272215e-20,-8.49660473545378e-20,5.437827185786784e-20,1.2016904261013545e-35,4.604227127206733e-36,2.7849982152529897e-20,0.0002380952355451882,3.52451739303843e-20,1.1836826332484744e-34,2.1789389173955354e-35,3.521330220174623e-35,0.0004960317746736109,1.4270372586218222e-19,-0.00019841270113829523,-5.846678651882164e-20,-0.00014172335795592517,-4.720335892337116e-20,3.021015139116816e-20,9.835786833457587e-36,5.082197683525802e-21,2.5062735686221382e-20,3.52451739303843e-20,5.668934318237007e-05,4.588458972516406e-35,-8.470329472543003e-21,1.187444264948867e-20,0.0008680555620230734,1.4456028621814804e-18,1.4456028621814804e-18,-0.0026041667442768812,-2.3929861760635783e-33,-2.8912058794593256e-19,-2.255565192651691e-34,-5.771675540621879e-35,-5.194042323196985e-35,-2.8912058794593256e-19,1.1836826332484744e-34,4.588458972516406e-35,0.0008680555620230734,2.7391004316763715e-34,2.853229453704196e-34,0.0006944444612599909,3.559425901228331e-19,3.600696785421957e-19,-0.00046296295477077365,-0.00019841270113829523,-6.608470637012875e-20,-5.995518822788472e-35,-1.772550058219783e-35,-7.291164930096623e-21,-6.608470637012875e-20,2.1789389173955354e-35,-8.470329472543003e-21,2.7391004316763715e-34,0.00013227513409219682,-2.1900787711536283e-20,0.00028935185400769114,3.0943340375445584e-19,3.0263061869803146e-19,7.665275295140916e-20,-0.00028935185400769114,-6.883823553295292e-20,-4.0723021581352244e-35,-6.791679051603152e-36,9.930787122045698e-21,-6.883823553295292e-20,3.521330220174623e-35,1.187444264948867e-20,2.853229453704196e-34,-2.1900787711536283e-20,4.13359775848221e-05,6.0,6.0,5.0,3.0,0.06829176098108292,-0.015504535287618637,-0.015504535287618637,-0.01785714365541935,-0.02579365111887455,0.0009920635493472219,0.0013605442363768816,0.0015873016091063619,0.0023809524718672037,0.0009920635493472219,0.0015873016091063619,0.0023809524718672037,0.0013227512827143073,0.0027777778450399637,0.0027777778450399637,-0.015504535287618637,0.01165816280990839,0.0013605442363768816,0.0015873016091063619,0.0023809524718672037,-0.0014880952658131719,-0.0005442177061922848,-0.0006349206087179482,-0.0009523809421807528,-2.2768245622195593e-18,-1.5383221574280087e-18,-1.8226531886815002e-18,-3.63207727782644e-18,-2.7088202575108374e-18,-1.2971142435355297e-17,-0.015504535287618637,0.0013605442363768816,0.01165816280990839,0.0015873016091063619,0.0023809524718672037,-4.228388472693467e-18,-0.0005442177061922848,-1.6258671794490764e-19,2.0346846535911592e-19,-0.0014880952658131719,-0.0006349206087179482,-0.0009523809421807528,-3.6403871342601476e-18,-2.7376104855258987e-18,-1.2971142435355297e-17,-0.01785714365541935,0.0015873016091063619,0.0015873016091063619,0.01686508022248745,0.0027777778450399637,-5.213022914845964e-18,-2.4711867319243982e-20,-0.0007936508045531809,-3.2466826118009265e-19,-4.391018798566293e-18,-0.0007936508045531809,-2.427546330704977e-19,-0.0026455025654286146,-0.0013888889225199819,-8.509380095715523e-32,-0.02579365111887455,0.0023809524718672037,0.0023809524718672037,0.0027777778450399637,0.0535714291036129,-8.782037597132586e-18,-3.8135558166655973e-22,-2.0241476650569408e-19,-0.0023809524718672037,-7.66794608039309e-18,-1.6263032587282567e-19,-0.0023809524718672037,-0.0,-0.0027777778450399637,-0.01666666753590107,0.0009920635493472219,-0.0014880952658131719,-4.228388472693467e-18,-5.213022914845964e-18,-8.782037597132586e-18,0.00029761905898340046,2.168404344971009e-19,3.6591823321385775e-19,5.421010862427522e-19,5.10497772060763e-19,3.021015074493331e-19,4.531522353246055e-19,7.608825000472088e-19,5.2867765096103e-19,2.6433882031063616e-18,0.0013605442363768816,-0.0005442177061922848,-0.0005442177061922848,-2.4711867319243982e-20,-3.8135558166655973e-22,2.168404344971009e-19,0.00021768707665614784,3.4836966760437916e-20,4.8934576859610756e-20,-1.0821649817331512e-19,-2.0328790734103208e-20,-4.743384504624082e-20,-2.2697325079023986e-21,-1.6852360040025064e-21,7.703719777548943e-34,0.0015873016091063619,-0.0006349206087179482,-1.6258671794490764e-19,-0.0007936508045531809,-2.0241476650569408e-19,3.6591823321385775e-19,3.4836966760437916e-20,0.0003174603043589741,9.116718776230056e-20,-6.97117265468022e-22,3.931829527712637e-20,6.407380707694729e-22,-8.453125408271608e-20,-1.3552527156068805e-20,3.329675176096472e-33,0.0023809524718672037,-0.0009523809421807528,2.0346846535911592e-19,-3.2466826118009265e-19,-0.0023809524718672037,5.421010862427522e-19,4.8934576859610756e-20,9.116718776230056e-20,0.0009523809421807528,6.851721472072949e-34,5.4016316408985756e-34,-3.258049107393171e-19,1.342132429994855e-33,9.675028854316697e-20,-2.4579829583317485e-19,0.0009920635493472219,-2.2768245622195593e-18,-0.0014880952658131719,-4.391018798566293e-18,-7.66794608039309e-18,5.10497772060763e-19,-1.0821649817331512e-19,-6.97117265468022e-22,6.851721472072949e-34,0.00029761905898340046,3.2526065174565133e-19,4.607859233063394e-19,7.515173679470365e-19,5.240695828648619e-19,2.6433882031063616e-18,0.0015873016091063619,-1.5383221574280087e-18,-0.0006349206087179482,-0.0007936508045531809,-1.6263032587282567e-19,3.021015074493331e-19,-2.0328790734103208e-20,3.931829527712637e-20,5.4016316408985756e-34,3.2526065174565133e-19,0.0003174603043589741,5.421010862427522e-20,-5.603339564010109e-20,1.3552527156068805e-20,5.7777898331617076e-33,0.0023809524718672037,-1.8226531886815002e-18,-0.0009523809421807528,-2.427546330704977e-19,-0.0023809524718672037,4.531522353246055e-19,-4.743384504624082e-20,6.407380707694729e-22,-3.258049107393171e-19,4.607859233063394e-19,5.421010862427522e-20,0.0009523809421807528,2.135793670205772e-21,9.63368145591641e-20,-2.4579829583317485e-19,0.0013227512827143073,-3.63207727782644e-18,-3.6403871342601476e-18,-0.0026455025654286146,-0.0,7.608825000472088e-19,-2.2697325079023986e-21,-8.453125408271608e-20,1.342132429994855e-33,7.515173679470365e-19,-5.603339564010109e-20,2.135793670205772e-21,0.0006613756413571537,1.9799611289630496e-34,1.3325257024127598e-32,0.0027777778450399637,-2.7088202575108374e-18,-2.7376104855258987e-18,-0.0013888889225199819,-0.0027777778450399637,5.2867765096103e-19,-1.6852360040025064e-21,-1.3552527156068805e-20,9.675028854316697e-20,5.240695828648619e-19,1.3552527156068805e-20,9.63368145591641e-20,1.9799611289630496e-34,0.0013888889225199819,9.055872562200589e-33,0.0027777778450399637,-1.2971142435355297e-17,-1.2971142435355297e-17,-8.509380095715523e-32,-0.01666666753590107,2.6433882031063616e-18,7.703719777548943e-34,3.329675176096472e-33,-2.4579829583317485e-19,2.6433882031063616e-18,5.7777898331617076e-33,-2.4579829583317485e-19,1.3325257024127598e-32,9.055872562200589e-33,0.008333333767950535,6.0,6.0,5.0,4.0,0.05494897812604904,-0.011985544115304947,-0.011985544115304947,-0.013809523545205593,-0.016309523954987526,0.0007440476329065859,0.0010204081190750003,0.0011904762359336019,0.0014285714132711291,0.0007440476329065859,0.0011904762359336019,0.0014285714132711291,0.0009920635493472219,0.0016666667070239782,0.0013888889225199819,-0.011985544115304947,0.008886479772627354,0.0010204081190750003,0.0011904762359336019,0.0014285714132711291,-0.0011160714784637094,-0.0004081632650922984,-0.0004761904710903764,-0.0005714285653084517,-1.951563910473908e-18,-1.296706629609179e-18,-1.3540924914001984e-18,-3.144186300207963e-18,-1.6963506707580487e-18,-4.55878508886246e-18,-0.011985544115304947,0.0010204081190750003,0.008886479772627354,0.0011904762359336019,0.0014285714132711291,-3.06287113727155e-18,-0.0004081632650922984,-1.437146827423898e-19,-4.308691076087236e-20,-0.0011160714784637094,-0.0004761904710903764,-0.0005714285653084517,-3.129172144909513e-18,-1.6692456164459111e-18,-4.55878508886246e-18,-0.013809523545205593,0.0011904762359336019,0.0011904762359336019,0.012857142835855484,0.0016666667070239782,-3.7357937325217075e-18,2.780728864692965e-20,-0.0005952381179668009,1.1163434384089887e-19,-3.198396408832238e-18,-0.0005952381179668009,1.0677602129769084e-19,-0.0019841270986944437,-0.0008333333535119891,-2.8836630850989315e-32,-0.016309523954987526,0.0014285714132711291,0.0014285714132711291,0.0016666667070239782,0.020595237612724304,-4.824699667560495e-18,8.707405898449237e-20,1.406369634029302e-19,-0.0009523809421807528,-4.185388315730511e-18,1.6288370163420831e-19,-0.0009523809421807528,-0.0,-0.0011111111380159855,-0.004166666883975267,0.0007440476329065859,-0.0011160714784637094,-3.06287113727155e-18,-3.7357937325217075e-18,-4.824699667560495e-18,0.00022321428696159273,1.0842021724855044e-19,1.7618285302889447e-19,3.1170812458958252e-19,3.7275666458480434e-19,2.2657611766230274e-19,2.718913463646421e-19,5.478316384301547e-19,3.172065750669815e-19,9.251859021064995e-19,0.0010204081190750003,-0.0004081632650922984,-0.0004081632650922984,2.780728864692965e-20,8.707405898449237e-20,1.0842021724855044e-19,0.00016326530021615326,-9.496699054007921e-21,-7.724568796983196e-21,3.742223898561571e-20,-0.0,-2.710505431213761e-20,-9.346067566147133e-22,2.3472271197219437e-34,7.703719777548943e-34,0.0011904762359336019,-0.0004761904710903764,-1.437146827423898e-19,-0.0005952381179668009,1.406369634029302e-19,1.7618285302889447e-19,-9.496699054007921e-21,0.0002380952355451882,-7.251781924092435e-20,6.689955985090178e-22,8.191300772413553e-20,2.1064858766735392e-34,2.0765209932816478e-19,2.0328790734103208e-20,7.878721499027611e-34,0.0014285714132711291,-0.0005714285653084517,-4.308691076087236e-20,1.1163434384089887e-19,-0.0009523809421807528,3.1170812458958252e-19,-7.724568796983196e-21,-7.251781924092435e-20,0.0003809523768723011,5.837975143923809e-34,3.058166103099263e-34,4.159889038707189e-20,8.425943506694157e-34,4.644013940544894e-20,-4.4762817455996005e-20,0.0007440476329065859,-1.951563910473908e-18,-0.0011160714784637094,-3.198396408832238e-18,-4.185388315730511e-18,3.7275666458480434e-19,3.742223898561571e-20,6.689955985090178e-22,5.837975143923809e-34,0.00022321428696159273,1.7618285302889447e-19,3.3881317890172014e-19,5.5328658437721225e-19,3.172065750669815e-19,9.251859021064995e-19,0.0011904762359336019,-1.296706629609179e-18,-0.0004761904710903764,-0.0005952381179668009,1.6288370163420831e-19,2.2657611766230274e-19,-0.0,8.191300772413553e-20,3.058166103099263e-34,1.7618285302889447e-19,0.0002380952355451882,-7.057449410105026e-20,1.8534407218337532e-19,6.776263578034403e-21,1.701143098415367e-33,0.0014285714132711291,-1.3540924914001984e-18,-0.0005714285653084517,1.0677602129769084e-19,-0.0009523809421807528,2.718913463646421e-19,-2.710505431213761e-20,2.1064858766735392e-34,4.159889038707189e-20,3.3881317890172014e-19,-7.057449410105026e-20,0.0003809523768723011,1.4203733339855864e-33,4.644013940544894e-20,-4.4762817455996005e-20,0.0009920635493472219,-3.144186300207963e-18,-3.129172144909513e-18,-0.0019841270986944437,-0.0,5.478316384301547e-19,-9.346067566147133e-22,2.0765209932816478e-19,8.425943506694157e-34,5.5328658437721225e-19,1.8534407218337532e-19,1.4203733339855864e-33,0.0004960317746736109,1.1527437151348408e-20,4.695600713777924e-33,0.0016666667070239782,-1.6963506707580487e-18,-1.6692456164459111e-18,-0.0008333333535119891,-0.0011111111380159855,3.172065750669815e-19,2.3472271197219437e-34,2.0328790734103208e-20,4.644013940544894e-20,3.172065750669815e-19,6.776263578034403e-21,4.644013940544894e-20,1.1527437151348408e-20,0.0005555555690079927,2.5544605289581742e-33,0.0013888889225199819,-4.55878508886246e-18,-4.55878508886246e-18,-2.8836630850989315e-32,-0.004166666883975267,9.251859021064995e-19,7.703719777548943e-34,7.878721499027611e-34,-4.4762817455996005e-20,9.251859021064995e-19,1.701143098415367e-33,-4.4762817455996005e-20,4.695600713777924e-33,2.5544605289581742e-33,0.0013888889225199819,6.0,6.0,5.0,5.0,0.0460544228553772,-0.009778911247849464,-0.009778911247849464,-0.011269841343164444,-0.011269841343164444,0.0005952381179668009,0.0008163265301845968,0.0009523809421807528,0.0009523809421807528,0.0005952381179668009,0.0009523809421807528,0.0009523809421807528,0.0007936508045531809,0.0011111111380159855,0.0007936508045531809,-0.009778911247849464,0.007185373920947313,0.0008163265301845968,0.0009523809421807528,0.0009523809421807528,-0.0008928571478463709,-0.00032653060043230653,-0.0003809523768723011,-0.0003809523768723011,9.75781955236954e-19,3.2645628962230845e-19,3.243531312161041e-19,1.3010426069826053e-18,6.338517529919809e-19,1.3388765040322854e-18,-0.009778911247849464,0.0008163265301845968,0.007185373920947313,0.0009523809421807528,0.0009523809421807528,1.111307226797642e-18,-0.00032653060043230653,-1.183924999183366e-19,-1.0842021724855044e-19,-0.0008928571478463709,-0.0003809523768723011,-0.0003809523768723011,1.3511280828799614e-18,6.222048431720811e-19,1.3479958600929528e-18,-0.011269841343164444,0.0009523809421807528,0.0009523809421807528,0.010396825149655342,0.0011111111380159855,1.653018400779152e-18,-6.15744200696524e-20,-0.0004761904710903764,2.5526979495906832e-20,1.4365678785432934e-18,-0.0004761904710903764,6.776263578034403e-21,-0.0015873016091063619,-0.0005555555690079927,-1.8565081725013898e-20,-0.011269841343164444,0.0009523809421807528,0.0009523809421807528,0.0011111111380159855,0.010396825149655342,1.6805133673525319e-18,-6.026964605092657e-20,8.03868594939752e-20,-0.0004761904710903764,1.4192353427830104e-18,6.241606341822803e-20,-0.0004761904710903764,-5.421010862427522e-20,-0.0005555555690079927,-0.0015873016091063619,0.0005952381179668009,-0.0008928571478463709,1.111307226797642e-18,1.653018400779152e-18,1.6805133673525319e-18,0.00017857142665889114,6.776263578034403e-21,-1.3552527156068805e-19,-1.3552527156068805e-19,-1.5298854063184565e-19,-9.063045094233022e-20,-9.063045094233022e-20,-2.1589961994789839e-19,-1.0573552502232717e-19,-2.198273319902416e-19,0.0008163265301845968,-0.00032653060043230653,-0.00032653060043230653,-6.15744200696524e-20,-6.026964605092657e-20,6.776263578034403e-21,0.00013061224308330566,8.664863127128582e-21,8.642064769288656e-21,-8.544203809827378e-20,1.3552527156068805e-20,1.6940658945086007e-20,1.386423167143673e-21,3.912045199536573e-35,-8.476237472743257e-22,0.0009523809421807528,-0.0003809523768723011,-1.183924999183366e-19,-0.0004761904710903764,8.03868594939752e-20,-1.3552527156068805e-19,8.664863127128582e-21,0.00019047618843615055,-1.6134052834683102e-21,4.258206038026687e-22,4.68600143456763e-20,3.4976489572140254e-22,-1.1558691007570988e-19,-4.0657581468206416e-20,9.396332520850367e-22,0.0009523809421807528,-0.0003809523768723011,-1.0842021724855044e-19,2.5526979495906832e-20,-0.0004761904710903764,-1.3552527156068805e-19,8.642064769288656e-21,-1.6134052834683102e-21,0.00019047618843615055,3.6347996831070264e-22,-4.526920587555296e-22,4.287397637662531e-20,8.039540231484244e-22,-1.192946793168192e-20,-1.211897791807466e-19,0.0005952381179668009,9.75781955236954e-19,-0.0008928571478463709,1.4365678785432934e-18,1.4192353427830104e-18,-1.5298854063184565e-19,-8.544203809827378e-20,4.258206038026687e-22,3.6347996831070264e-22,0.00017857142665889114,-1.0842021724855044e-19,-1.2197274440461925e-19,-2.310677859366481e-19,-1.0573552502232717e-19,-2.235787253151403e-19,0.0009523809421807528,3.2645628962230845e-19,-0.0003809523768723011,-0.0004761904710903764,6.241606341822803e-20,-9.063045094233022e-20,1.3552527156068805e-20,4.68600143456763e-20,-4.526920587555296e-22,-1.0842021724855044e-19,0.00019047618843615055,5.216934015421396e-21,-9.98352780247291e-20,-3.3881317890172014e-20,-1.5089734282109028e-21,0.0009523809421807528,3.243531312161041e-19,-0.0003809523768723011,6.776263578034403e-21,-0.0004761904710903764,-9.063045094233022e-20,1.6940658945086007e-20,3.4976489572140254e-22,4.287397637662531e-20,-1.2197274440461925e-19,5.216934015421396e-21,0.00019047618843615055,1.1658830025670411e-21,-1.2882300833573447e-20,-1.131220669466667e-19,0.0007936508045531809,1.3010426069826053e-18,1.3511280828799614e-18,-0.0015873016091063619,-5.421010862427522e-20,-2.1589961994789839e-19,1.386423167143673e-21,-1.1558691007570988e-19,8.039540231484244e-22,-2.310677859366481e-19,-9.98352780247291e-20,1.1658830025670411e-21,0.00039682540227659047,1.5733393687826265e-20,-1.961113158115033e-21,0.0011111111380159855,6.338517529919809e-19,6.222048431720811e-19,-0.0005555555690079927,-0.0005555555690079927,-1.0573552502232717e-19,3.912045199536573e-35,-4.0657581468206416e-20,-1.192946793168192e-20,-1.0573552502232717e-19,-3.3881317890172014e-20,-1.2882300833573447e-20,1.5733393687826265e-20,0.00027777778450399637,1.4259637332830933e-20,0.0007936508045531809,1.3388765040322854e-18,1.3479958600929528e-18,-1.8565081725013898e-20,-0.0015873016091063619,-2.198273319902416e-19,-8.476237472743257e-22,9.396332520850367e-22,-1.211897791807466e-19,-2.235787253151403e-19,-1.5089734282109028e-21,-1.131220669466667e-19,-1.961113158115033e-21,1.4259637332830933e-20,0.00039682540227659047,6.0,6.0,5.0,6.0,0.0396730899810791,-0.008262471295893192,-0.008262471295893192,-0.009523809887468815,-0.008262471295893192,0.0004960317746736109,0.0006802721181884408,0.0007936508045531809,0.0006802721181884408,0.0004960317746736109,0.0007936508045531809,0.0006802721181884408,0.0006613756413571537,0.0007936508045531809,0.0004960317746736109,-0.008262471295893192,0.0060331630520522594,0.0006802721181884408,0.0007936508045531809,0.0006802721181884408,-0.0007440476329065859,-0.0002721088530961424,-0.0003174603043589741,-0.0002721088530961424,-1.111307226797642e-18,-7.79658310880032e-19,-6.564208073188191e-19,-1.870248747537495e-18,-7.236030208030924e-19,-1.156651096628691e-18,-0.008262471295893192,0.0006802721181884408,0.0060331630520522594,0.0007936508045531809,0.0006802721181884408,-2.2497195079074217e-18,-0.0002721088530961424,-9.662396901634218e-20,-2.710505431213761e-20,-0.0007440476329065859,-0.0003174603043589741,-0.0002721088530961424,-1.8750341941762676e-18,-7.197455157152396e-19,-1.081624987889519e-18,-0.009523809887468815,0.0007936508045531809,0.0007936508045531809,0.008730159141123295,0.0007936508045531809,-2.711151252477012e-18,-5.332345905711717e-21,-0.00039682540227659047,-2.1327060408548332e-20,-2.2768245622195593e-18,-0.00039682540227659047,1.3552527156068805e-20,-0.0013227512827143073,-0.00039682540227659047,3.58163389121779e-21,-0.008262471295893192,0.0006802721181884408,0.0006802721181884408,0.0007936508045531809,0.0060331630520522594,-2.222614453595284e-18,-1.1249764575059147e-20,-9.10051572974682e-20,-0.0002721088530961424,-1.844248186138269e-18,-6.61203979210907e-20,-0.0002721088530961424,-2.710505431213761e-20,-0.0003174603043589741,-0.0007440476329065859,0.0004960317746736109,-0.0007440476329065859,-2.2497195079074217e-18,-2.711151252477012e-18,-2.222614453595284e-18,0.00014880952949170023,1.0842021724855044e-19,1.8295911660692887e-19,1.0842021724855044e-19,2.6054845126924973e-19,1.5105075372466654e-19,1.2947206723560157e-19,3.743423181202802e-19,1.5105075372466654e-19,2.6275490385444665e-19,0.0006802721181884408,-0.0002721088530961424,-0.0002721088530961424,-5.332345905711717e-21,-1.1249764575059147e-20,1.0842021724855044e-19,0.00010884353832807392,1.7255990857466305e-20,1.0664450281146918e-20,-7.443703982076077e-20,-1.3552527156068805e-20,-0.0,-9.026004608793622e-22,3.611118645726067e-35,-2.8399313685899286e-21,0.0007936508045531809,-0.0003174603043589741,-9.662396901634218e-20,-0.00039682540227659047,-9.10051572974682e-20,1.8295911660692887e-19,1.7255990857466305e-20,0.00015873015217948705,2.5224008440687946e-20,-7.928750838906577e-22,2.8727381675552843e-20,1.327574648485165e-22,-1.6080467848419718e-21,1.0164395367051604e-20,1.3423436897309382e-21,0.0006802721181884408,-0.0002721088530961424,-2.710505431213761e-20,-2.1327060408548332e-20,-0.0002721088530961424,1.0842021724855044e-19,1.0664450281146918e-20,2.5224008440687946e-20,0.00010884353832807392,-1.6614025596807347e-21,3.3243832955557927e-22,3.517972084103534e-21,2.164479631458386e-21,-2.0791816391089703e-20,-6.161862899598424e-20,0.0004960317746736109,-1.111307226797642e-18,-0.0007440476329065859,-2.2768245622195593e-18,-1.844248186138269e-18,2.6054845126924973e-19,-7.443703982076077e-20,-7.928750838906577e-22,-1.6614025596807347e-21,0.00014880952949170023,1.6263032587282567e-19,1.0842021724855044e-19,3.7426557126907177e-19,1.5105075372466654e-19,2.526193305618637e-19,0.0007936508045531809,-7.79658310880032e-19,-0.0003174603043589741,-0.00039682540227659047,-6.61203979210907e-20,1.5105075372466654e-19,-1.3552527156068805e-20,2.8727381675552843e-20,3.3243832955557927e-22,1.6263032587282567e-19,0.00015873015217948705,1.601104364589565e-20,3.145410824782574e-21,1.0164395367051604e-20,9.090110096524523e-22,0.0006802721181884408,-6.564208073188191e-19,-0.0002721088530961424,1.3552527156068805e-20,-0.0002721088530961424,1.2947206723560157e-19,-0.0,1.327574648485165e-22,3.517972084103534e-21,1.0842021724855044e-19,1.601104364589565e-20,0.00010884353832807392,4.425248659993557e-22,-2.2334805501533735e-20,-6.928146216961356e-20,0.0006613756413571537,-1.870248747537495e-18,-1.8750341941762676e-18,-0.0013227512827143073,-2.710505431213761e-20,3.743423181202802e-19,-9.026004608793622e-22,-1.6080467848419718e-21,2.164479631458386e-21,3.7426557126907177e-19,3.145410824782574e-21,4.425248659993557e-22,0.0003306878206785768,1.8693140835285114e-21,5.936433322119779e-21,0.0007936508045531809,-7.236030208030924e-19,-7.197455157152396e-19,-0.00039682540227659047,-0.0003174603043589741,1.5105075372466654e-19,3.611118645726067e-35,1.0164395367051604e-20,-2.0791816391089703e-20,1.5105075372466654e-19,1.0164395367051604e-20,-2.2334805501533735e-20,1.8693140835285114e-21,0.00015873015217948705,-1.401340246658009e-20,0.0004960317746736109,-1.156651096628691e-18,-1.081624987889519e-18,3.58163389121779e-21,-0.0007440476329065859,2.6275490385444665e-19,-2.8399313685899286e-21,1.3423436897309382e-21,-6.161862899598424e-20,2.526193305618637e-19,9.090110096524523e-22,-6.928146216961356e-20,5.936433322119779e-21,-1.401340246658009e-20,0.00014880952949170023,6.0,6.0,5.0,7.0,0.0348612442612648,-0.0071550048887729645,-0.0071550048887729645,-0.008248299360275269,-0.006320861633867025,0.00042517005931586027,0.000583090353757143,0.0006802721181884408,0.0005102040595375001,0.00042517005931586027,0.0006802721181884408,0.0005102040595375001,0.0005668934318237007,0.0005952381179668009,0.0003306878206785768,-0.0071550048887729645,0.005200437270104885,0.000583090353757143,0.0006802721181884408,0.0005102040595375001,-0.0006377550889737904,-0.0002332361473236233,-0.0002721088530961424,-0.0002040816325461492,6.911788849595091e-19,3.9947997504424873e-19,2.466613812541915e-19,9.364456913997245e-19,3.045025542736331e-19,5.09598109747035e-19,-0.0071550048887729645,0.000583090353757143,0.005200437270104885,0.0006802721181884408,0.0005102040595375001,1.043544591017298e-18,-0.0002332361473236233,2.2078450597476188e-20,2.710505431213761e-20,-0.0006377550889737904,-0.0002721088530961424,-0.0002040816325461492,9.364456913997245e-19,3.12509404109205e-19,4.992691054380853e-19,-0.008248299360275269,0.0006802721181884408,0.0006802721181884408,0.0075255101546645164,0.0005952381179668009,1.2906867193037477e-18,6.486325787342056e-20,-0.0003401360590942204,-6.732394571235536e-20,1.1926223897340549e-18,-0.0003401360590942204,-6.437188674016992e-20,-0.0011337868636474013,-0.00029761905898340046,1.480770911213267e-20,-0.006320861633867025,0.0005102040595375001,0.0005102040595375001,0.0005952381179668009,0.0038265306502580643,9.215718466126788e-19,-1.10659123748093e-20,4.653541724303152e-22,-0.0001700680295471102,7.572227945233328e-19,-4.589446838862817e-21,-0.0001700680295471102,-2.1306661628119383e-33,-0.00019841270113829523,-0.00039682540227659047,0.00042517005931586027,-0.0006377550889737904,1.043544591017298e-18,1.2906867193037477e-18,9.215718466126788e-19,0.00012755101488437504,-8.809142651444724e-20,-1.3552527156068805e-19,-6.776263578034403e-20,-1.1005499755759372e-19,-6.473603361780078e-20,-4.8552028444524855e-20,-1.6184009696919903e-19,-5.664402941557569e-20,-8.657733702665427e-20,0.000583090353757143,-0.0002332361473236233,-0.0002332361473236233,6.486325787342056e-20,-1.10659123748093e-20,-8.809142651444724e-20,9.329446038464084e-05,-2.2283817571588084e-21,-3.572165742819612e-21,-5.715787659703304e-20,-2.371692252312041e-20,6.776263578034403e-21,2.1064858766735392e-34,7.222237291452134e-35,4.701027869136091e-22,0.0006802721181884408,-0.0002721088530961424,2.2078450597476188e-20,-0.0003401360590942204,4.653541724303152e-22,-1.3552527156068805e-19,-2.2283817571588084e-21,0.0001360544265480712,1.762819789930816e-20,1.8394135601667155e-34,-8.253747900341192e-21,4.706679380692439e-35,-6.362264205095587e-20,-2.2267923425364848e-20,8.538790964373096e-35,0.0005102040595375001,-0.0002040816325461492,2.710505431213761e-20,-6.732394571235536e-20,-0.0001700680295471102,-6.776263578034403e-20,-3.572165742819612e-21,1.762819789930816e-20,6.80272132740356e-05,4.915097708215679e-22,2.7083389842945504e-35,-6.947300133344647e-21,8.817118524494673e-35,7.751150859890698e-21,-2.528551384287524e-20,0.00042517005931586027,6.911788849595091e-19,-0.0006377550889737904,1.1926223897340549e-18,7.572227945233328e-19,-1.1005499755759372e-19,-5.715787659703304e-20,1.8394135601667155e-34,4.915097708215679e-22,0.00012755101488437504,-1.3552527156068805e-19,-6.776263578034403e-20,-1.6184009696919903e-19,-5.664402941557569e-20,-8.224633566160026e-20,0.0006802721181884408,3.9947997504424873e-19,-0.0002721088530961424,-0.0003401360590942204,-4.589446838862817e-21,-6.473603361780078e-20,-2.371692252312041e-20,-8.253747900341192e-21,2.7083389842945504e-35,-1.3552527156068805e-19,0.0001360544265480712,1.965011812207186e-20,-6.362264205095587e-20,-2.2267923425364848e-20,1.2262757067778103e-34,0.0005102040595375001,2.466613812541915e-19,-0.0002040816325461492,-6.437188674016992e-20,-0.0001700680295471102,-4.8552028444524855e-20,6.776263578034403e-21,4.706679380692439e-35,-6.947300133344647e-21,-6.776263578034403e-20,1.965011812207186e-20,6.80272132740356e-05,1.431727553306324e-34,5.082197683525802e-21,-2.967680730417899e-20,0.0005668934318237007,9.364456913997245e-19,9.364456913997245e-19,-0.0011337868636474013,-2.1306661628119383e-33,-1.6184009696919903e-19,2.1064858766735392e-34,-6.362264205095587e-20,8.817118524494673e-35,-1.6184009696919903e-19,-6.362264205095587e-20,1.431727553306324e-34,0.00028344671591185033,1.5326735898606687e-34,2.076286003350724e-34,0.0005952381179668009,3.045025542736331e-19,3.12509404109205e-19,-0.00029761905898340046,-0.00019841270113829523,-5.664402941557569e-20,7.222237291452134e-35,-2.2267923425364848e-20,7.751150859890698e-21,-5.664402941557569e-20,-2.2267923425364848e-20,5.082197683525802e-21,1.5326735898606687e-34,9.920635056914762e-05,-4.9359030373775564e-21,0.0003306878206785768,5.09598109747035e-19,4.992691054380853e-19,1.480770911213267e-20,-0.00039682540227659047,-8.657733702665427e-20,4.701027869136091e-22,8.538790964373096e-35,-2.528551384287524e-20,-8.224633566160026e-20,1.2262757067778103e-34,-2.967680730417899e-20,2.076286003350724e-34,-4.9359030373775564e-21,6.613756704609841e-05,6.0,6.0,5.0,8.0,0.031098827719688416,-0.006310232449322939,-0.006310232449322939,-0.007275132462382317,-0.004993386100977659,0.00037202381645329297,0.0005102040595375001,0.0005952381179668009,0.00039682540227659047,0.00037202381645329297,0.0005952381179668009,0.00039682540227659047,0.0004960317746736109,0.00046296295477077365,0.00023148147738538682,-0.006310232449322939,0.004570223856717348,0.0005102040595375001,0.0005952381179668009,0.00039682540227659047,-0.0005580357392318547,-0.0002040816325461492,-0.0002380952355451882,-0.00015873015217948705,-9.735692470983746e-19,-5.664403070804539e-19,-3.9244994796391954e-19,-1.4161008452493172e-18,-4.405647177506564e-19,-5.873160709946078e-19,-0.006310232449322939,0.0005102040595375001,0.004570223856717348,0.0005952381179668009,0.00039682540227659047,-1.630208481797696e-18,-0.0002040816325461492,-1.4120628644317613e-33,-1.4823076576950256e-20,-0.0005580357392318547,-0.0002380952355451882,-0.00015873015217948705,-1.4161008452493172e-18,-4.405647177506564e-19,-5.813868403638277e-19,-0.007275132462382317,0.0005952381179668009,0.0005952381179668009,0.006613756529986858,0.00046296295477077365,-1.966177296765576e-18,-1.1678222298022566e-33,-0.00029761905898340046,-9.754237429443956e-34,-1.6829571690747432e-18,-0.00029761905898340046,-2.0289765342452023e-33,-0.0009920635493472219,-0.00023148147738538682,-3.0776231059992645e-33,-0.004993386100977659,0.00039682540227659047,0.00039682540227659047,0.00046296295477077365,0.0025840892922133207,-1.3201655751787594e-18,-7.84119935200738e-34,-1.1435082311814515e-33,-0.00011337868636474013,-1.131352191184063e-18,-2.3200094663836152e-33,-0.00011337868636474013,-6.22110034426747e-33,-0.00013227513409219682,-0.00023148147738538682,0.00037202381645329297,-0.0005580357392318547,-1.630208481797696e-18,-1.966177296765576e-18,-1.3201655751787594e-18,0.00011160714348079637,6.628969852802558e-20,9.66724818667987e-20,7.365522489492744e-20,1.9471385717449317e-19,1.1328805883115137e-19,7.552537686233327e-20,2.8322015354022696e-19,8.811293967272215e-20,1.101411794376641e-19,0.0005102040595375001,-0.0002040816325461492,-0.0002040816325461492,-1.1678222298022566e-33,-7.84119935200738e-34,6.628969852802558e-20,8.163265010807663e-05,5.741917396035584e-35,4.374794220169298e-35,1.1565141348594645e-34,6.728809188398205e-35,4.48587298358942e-35,1.6822023257981437e-34,5.233518385192348e-35,6.541898124983398e-35,0.0005952381179668009,-0.0002380952355451882,-1.4120628644317613e-33,-0.00029761905898340046,-1.1435082311814515e-33,9.66724818667987e-20,5.741917396035584e-35,0.0001190476177725941,6.379908345366615e-35,1.6865831085536203e-34,9.812846613503246e-35,6.541898124983398e-35,2.4532117107729966e-34,7.632214479147298e-35,9.540267955441159e-35,0.00039682540227659047,-0.00015873015217948705,-1.4823076576950256e-20,-9.754237429443956e-34,-0.00011337868636474013,7.365522489492744e-20,4.374794220169298e-35,6.379908345366615e-35,4.535147309070453e-05,1.6851887013388314e-34,7.476454590001133e-35,4.235164736271502e-21,1.8691137335960608e-34,-3.389451290846567e-35,1.0460057506076759e-20,0.00037202381645329297,-9.735692470983746e-19,-0.0005580357392318547,-1.6829571690747432e-18,-1.131352191184063e-18,1.9471385717449317e-19,1.1565141348594645e-34,1.6865831085536203e-34,1.6851887013388314e-34,0.00011160714348079637,9.66724818667987e-20,7.365522489492744e-20,2.8322015354022696e-19,8.811293967272215e-20,1.101411794376641e-19,0.0005952381179668009,-5.664403070804539e-19,-0.0002380952355451882,-0.00029761905898340046,-2.3200094663836152e-33,1.1328805883115137e-19,6.728809188398205e-35,9.812846613503246e-35,7.476454590001133e-35,9.66724818667987e-20,0.0001190476177725941,1.4046194367560379e-34,5.328069112588621e-34,1.6576215221021256e-34,2.072026902627657e-34,0.00039682540227659047,-3.9244994796391954e-19,-0.00015873015217948705,-2.0289765342452023e-33,-0.00011337868636474013,7.552537686233327e-20,4.48587298358942e-35,6.541898124983398e-35,4.235164736271502e-21,7.365522489492744e-20,1.4046194367560379e-34,4.535147309070453e-05,3.785685296541687e-34,0.0,8.765991611568158e-21,0.0004960317746736109,-1.4161008452493172e-18,-1.4161008452493172e-18,-0.0009920635493472219,-6.22110034426747e-33,2.8322015354022696e-19,1.6822023257981437e-34,2.4532117107729966e-34,1.8691137335960608e-34,2.8322015354022696e-19,5.328069112588621e-34,3.785685296541687e-34,0.00024801588733680546,4.4720006579229045e-34,5.590000937198001e-34,0.00046296295477077365,-4.405647177506564e-19,-4.405647177506564e-19,-0.00023148147738538682,-0.00013227513409219682,8.811293967272215e-20,5.233518385192348e-35,7.632214479147298e-35,-3.389451290846567e-35,8.811293967272215e-20,1.6576215221021256e-34,0.0,4.4720006579229045e-34,6.613756704609841e-05,2.4316954575837707e-35,0.00023148147738538682,-5.873160709946078e-19,-5.813868403638277e-19,-3.0776231059992645e-33,-0.00023148147738538682,1.101411794376641e-19,6.541898124983398e-35,9.540267955441159e-35,1.0460057506076759e-20,1.101411794376641e-19,2.072026902627657e-34,8.765991611568158e-21,5.590000937198001e-34,2.4316954575837707e-35,3.3068783523049206e-05,6.0,6.0,6.0,3.0,0.05895691737532616,-0.013109410181641579,-0.013109410181641579,-0.013109410181641579,-0.02182539738714695,0.0008267195662483573,0.0011337868636474013,0.0011337868636474013,0.0019841270986944437,0.0008267195662483573,0.0011337868636474013,0.0019841270986944437,0.0008267195662483573,0.0019841270986944437,0.002314814832061529,-0.013109410181641579,0.009790722280740738,0.0011337868636474013,0.0011337868636474013,0.0019841270986944437,-0.0012400794075801969,-0.00045351474545896053,-0.00045351474545896053,-0.0007936508045531809,1.0299920638612292e-18,2.8726028459769495e-19,1.150386857849827e-18,1.0570971181733668e-18,1.1687046691172372e-18,6.156539863109674e-18,-0.013109410181641579,0.0011337868636474013,0.009790722280740738,0.0011337868636474013,0.0019841270986944437,1.9244588561617704e-18,-0.00045351474545896053,-6.671791312903809e-20,2.297743339525566e-19,-0.0012400794075801969,-0.00045351474545896053,-0.0007936508045531809,1.0808580880641057e-18,1.1655173354219173e-18,6.156539863109674e-18,-0.013109410181641579,0.0011337868636474013,0.0011337868636474013,0.009790722280740738,0.0019841270986944437,1.9573064050814042e-18,6.744117917713914e-20,-0.00045351474545896053,2.297743339525566e-19,1.6534083130403943e-18,-0.00045351474545896053,1.949579271539846e-19,-0.0012400794075801969,-0.0007936508045531809,6.156539863109674e-18,-0.02182539738714695,0.0019841270986944437,0.0019841270986944437,0.0019841270986944437,0.04497354477643967,4.065758146820642e-18,3.6525087940528645e-19,3.8081433432925995e-19,-0.0019841270986944437,3.5720665651566365e-18,3.2187251995663413e-19,-0.0019841270986944437,3.0357660829594124e-18,-0.0019841270986944437,-0.013888888992369175,0.0008267195662483573,-0.0012400794075801969,1.9244588561617704e-18,1.9573064050814042e-18,4.065758146820642e-18,0.00024801588733680546,-1.4907779871675686e-19,-1.4907779871675686e-19,-3.7947076036992655e-19,-2.159334309554365e-19,-1.0789339367123366e-19,-1.8881343569348464e-19,-2.1468591334473581e-19,-1.8881343569348464e-19,-1.1014117685272467e-18,0.0011337868636474013,-0.00045351474545896053,-0.00045351474545896053,6.744117917713914e-20,3.6525087940528645e-19,-1.4907779871675686e-19,0.00018140589236281812,-4.6933226292235777e-20,-7.746567116074418e-20,2.1373285587623268e-20,2.371692252312041e-20,-6.776263578034403e-20,-1.5715668273586762e-21,-8.720474867451434e-22,7.2222372914521344e-34,0.0011337868636474013,-0.00045351474545896053,-6.671791312903809e-20,-0.00045351474545896053,3.8081433432925995e-19,-1.4907779871675686e-19,-4.6933226292235777e-20,0.00018140589236281812,-7.746567116074418e-20,-1.5741238978948447e-21,7.716575356520835e-20,-3.2116218769328184e-22,7.820757623760895e-21,-7.453889935837843e-20,8.185202263645752e-34,0.0019841270986944437,-0.0007936508045531809,2.297743339525566e-19,2.297743339525566e-19,-0.0019841270986944437,-3.7947076036992655e-19,-7.746567116074418e-20,-7.746567116074418e-20,0.0007936508045531809,4.453712996395483e-34,1.33912316445675e-34,-3.6110146357173343e-20,4.30324971949023e-34,-3.6110146357173343e-20,-6.494811238710172e-19,0.0008267195662483573,1.0299920638612292e-18,-0.0012400794075801969,1.6534083130403943e-18,3.5720665651566365e-18,-2.159334309554365e-19,2.1373285587623268e-20,-1.5741238978948447e-21,4.453712996395483e-34,0.00024801588733680546,-1.3552527156068805e-19,-3.5236570605778894e-19,-2.1452157582147626e-19,-1.911979389055336e-19,-1.1014117685272467e-18,0.0011337868636474013,2.8726028459769495e-19,-0.00045351474545896053,-0.00045351474545896053,3.2187251995663413e-19,-1.0789339367123366e-19,2.371692252312041e-20,7.716575356520835e-20,1.33912316445675e-34,-1.3552527156068805e-19,0.00018140589236281812,-6.098637220230962e-20,-1.6890775672843154e-21,-6.776263578034403e-20,1.3481509610710651e-33,0.0019841270986944437,1.150386857849827e-18,-0.0007936508045531809,1.949579271539846e-19,-0.0019841270986944437,-1.8881343569348464e-19,-6.776263578034403e-20,-3.2116218769328184e-22,-3.6110146357173343e-20,-3.5236570605778894e-19,-6.098637220230962e-20,0.0007936508045531809,-8.78177832124699e-22,-3.6923516930905857e-20,-6.494811238710172e-19,0.0008267195662483573,1.0570971181733668e-18,1.0808580880641057e-18,-0.0012400794075801969,3.0357660829594124e-18,-2.1468591334473581e-19,-1.5715668273586762e-21,7.820757623760895e-21,4.30324971949023e-34,-2.1452157582147626e-19,-1.6890775672843154e-21,-8.78177832124699e-22,0.00024801588733680546,-3.4101921789661078e-19,-1.1014117685272467e-18,0.0019841270986944437,1.1687046691172372e-18,1.1655173354219173e-18,-0.0007936508045531809,-0.0019841270986944437,-1.8881343569348464e-19,-8.720474867451434e-22,-7.453889935837843e-20,-3.6110146357173343e-20,-1.911979389055336e-19,-6.776263578034403e-20,-3.6923516930905857e-20,-3.4101921789661078e-19,0.0007936508045531809,-6.494811238710172e-19,0.002314814832061529,6.156539863109674e-18,6.156539863109674e-18,6.156539863109674e-18,-0.013888888992369175,-1.1014117685272467e-18,7.2222372914521344e-34,8.185202263645752e-34,-6.494811238710172e-19,-1.1014117685272467e-18,1.3481509610710651e-33,-6.494811238710172e-19,-1.1014117685272467e-18,-6.494811238710172e-19,0.0069444444961845875,6.0,6.0,6.0,4.0,0.04737575724720955,-0.010129677131772041,-0.010129677131772041,-0.010129677131772041,-0.013789682649075985,0.0006200397037900984,0.0008503401186317205,0.0008503401186317205,0.0011904762359336019,0.0006200397037900984,0.0008503401186317205,0.0011904762359336019,0.0006200397037900984,0.0011904762359336019,0.0011574074160307646,-0.010129677131772041,0.007462088949978352,0.0008503401186317205,0.0008503401186317205,0.0011904762359336019,-0.0009300595265813172,-0.0003401360590942204,-0.0003401360590942204,-0.0004761904710903764,7.589415207398531e-19,4.3419687460007e-19,5.655344926109201e-19,7.589415207398531e-19,5.749468774035844e-19,1.6989879293460209e-18,-0.010129677131772041,0.0008503401186317205,0.007462088949978352,0.0008503401186317205,0.0011904762359336019,1.4365678785432934e-18,-0.0003401360590942204,1.4828645505800784e-20,-1.4852918410017814e-19,-0.0009300595265813172,-0.0003401360590942204,-0.0004761904710903764,7.758568472786797e-19,5.759824041329242e-19,1.6989879293460209e-18,-0.010129677131772041,0.0008503401186317205,0.0008503401186317205,0.007462088949978352,0.0011904762359336019,1.4085599565925541e-18,-3.0113665296357826e-20,-0.0003401360590942204,-1.4852918410017814e-19,1.2468324983583301e-18,-0.0003401360590942204,-1.409872356182552e-19,-0.0009300595265813172,-0.0004761904710903764,1.6989879293460209e-18,-0.013789682649075985,0.0011904762359336019,0.0011904762359336019,0.0011904762359336019,0.017294973134994507,2.222614453595284e-18,7.448793081547839e-20,8.201618558085445e-20,-0.0007936508045531809,2.012220237611809e-18,7.623296525288703e-20,-0.0007936508045531809,1.7076184216646695e-18,-0.0007936508045531809,-0.0034722222480922937,0.0006200397037900984,-0.0009300595265813172,1.4365678785432934e-18,1.4085599565925541e-18,2.222614453595284e-18,0.00018601190822664648,-9.486769009248164e-20,-9.486769009248164e-20,-2.303929616531697e-19,-1.628395508690133e-19,-8.092004848459951e-20,-1.1328805883115137e-19,-1.627521282180241e-19,-1.1328805883115137e-19,-3.854941086447787e-19,0.0008503401186317205,-0.0003401360590942204,-0.0003401360590942204,-3.0113665296357826e-20,7.448793081547839e-20,-9.486769009248164e-20,0.0001360544265480712,1.0721682455365064e-20,1.4815497857705166e-20,2.280622736485507e-20,3.3881317890172014e-21,-4.404571325722362e-20,-7.948588229426861e-22,-5.649581989477699e-22,9.62964972193618e-35,0.0008503401186317205,-0.0003401360590942204,1.4828645505800784e-20,-0.0003401360590942204,8.201618558085445e-20,-9.486769009248164e-20,1.0721682455365064e-20,0.0001360544265480712,1.4815497857705166e-20,-6.050991778506621e-22,-1.522679726142582e-20,-1.8812581949400265e-22,2.280622736485507e-20,-4.743384504624082e-20,1.2037062152420224e-34,0.0011904762359336019,-0.0004761904710903764,-1.4852918410017814e-19,-1.4852918410017814e-19,-0.0007936508045531809,-2.303929616531697e-19,1.4815497857705166e-20,1.4815497857705166e-20,0.0003174603043589741,5.115751414778595e-35,8.46355932592047e-35,7.432696017580586e-20,8.125016952883651e-35,7.432696017580586e-20,1.5232176843464255e-19,0.0006200397037900984,7.589415207398531e-19,-0.0009300595265813172,1.2468324983583301e-18,2.012220237611809e-18,-1.628395508690133e-19,2.280622736485507e-20,-6.050991778506621e-22,5.115751414778595e-35,0.00018601190822664648,-9.486769009248164e-20,-2.0328790734103208e-19,-1.6208045756063104e-19,-1.1483287032388243e-19,-3.854941086447787e-19,0.0008503401186317205,4.3419687460007e-19,-0.0003401360590942204,-0.0003401360590942204,7.623296525288703e-20,-8.092004848459951e-20,3.3881317890172014e-21,-1.522679726142582e-20,8.46355932592047e-35,-9.486769009248164e-20,0.0001360544265480712,1.3552527156068805e-20,1.4890772909034625e-20,-4.404571325722362e-20,2.8888949165808538e-34,0.0011904762359336019,5.655344926109201e-19,-0.0004761904710903764,-1.409872356182552e-19,-0.0007936508045531809,-1.1328805883115137e-19,-4.404571325722362e-20,-1.8812581949400265e-22,7.432696017580586e-20,-2.0328790734103208e-19,1.3552527156068805e-20,0.0003174603043589741,-5.144065280153674e-22,7.357849743076462e-20,1.5232176843464255e-19,0.0006200397037900984,7.589415207398531e-19,7.758568472786797e-19,-0.0009300595265813172,1.7076184216646695e-18,-1.627521282180241e-19,-7.948588229426861e-22,2.280622736485507e-20,8.125016952883651e-35,-1.6208045756063104e-19,1.4890772909034625e-20,-5.144065280153674e-22,0.00018601190822664648,-2.153544820748318e-19,-3.854941086447787e-19,0.0011904762359336019,5.749468774035844e-19,5.759824041329242e-19,-0.0004761904710903764,-0.0007936508045531809,-1.1328805883115137e-19,-5.649581989477699e-22,-4.743384504624082e-20,7.432696017580586e-20,-1.1483287032388243e-19,-4.404571325722362e-20,7.357849743076462e-20,-2.153544820748318e-19,0.0003174603043589741,1.5232176843464255e-19,0.0011574074160307646,1.6989879293460209e-18,1.6989879293460209e-18,1.6989879293460209e-18,-0.0034722222480922937,-3.854941086447787e-19,9.62964972193618e-35,1.2037062152420224e-34,1.5232176843464255e-19,-3.854941086447787e-19,2.8888949165808538e-34,1.5232176843464255e-19,-3.854941086447787e-19,1.5232176843464255e-19,0.0011574074160307646,6.0,6.0,6.0,5.0,0.0396730899810791,-0.008262471295893192,-0.008262471295893192,-0.008262471295893192,-0.009523809887468815,0.0004960317746736109,0.0006802721181884408,0.0006802721181884408,0.0007936508045531809,0.0004960317746736109,0.0006802721181884408,0.0007936508045531809,0.0004960317746736109,0.0007936508045531809,0.0006613756413571537,-0.008262471295893192,0.0060331630520522594,0.0006802721181884408,0.0006802721181884408,0.0007936508045531809,-0.0007440476329065859,-0.0002721088530961424,-0.0002721088530961424,-0.0003174603043589741,-1.111307226797642e-18,-6.6861551749938215e-19,-7.68470279504946e-19,-1.111307226797642e-18,-7.864020042214471e-19,-1.882778465866142e-18,-0.008262471295893192,0.0006802721181884408,0.0060331630520522594,0.0006802721181884408,0.0007936508045531809,-2.222614453595284e-18,-0.0002721088530961424,-3.535337949426389e-20,-8.131516293641283e-20,-0.0007440476329065859,-0.0002721088530961424,-0.0003174603043589741,-1.1114315106846781e-18,-7.938694289000578e-19,-1.85213059699044e-18,-0.008262471295893192,0.0006802721181884408,0.0006802721181884408,0.0060331630520522594,0.0007936508045531809,-2.2247791852583354e-18,-1.8032135072459664e-20,-0.0002721088530961424,-9.692901771661525e-20,-1.870248747537495e-18,-0.0002721088530961424,-1.0842021724855044e-19,-0.0007440476329065859,-0.0003174603043589741,-1.8907766820040705e-18,-0.009523809887468815,0.0007936508045531809,0.0007936508045531809,0.0007936508045531809,0.008730159141123295,-2.7647155398380363e-18,-3.378241770428686e-21,-1.0069152466540799e-20,-0.00039682540227659047,-2.292051923320895e-18,-1.3073811724631513e-21,-0.00039682540227659047,-1.9244588561617704e-18,-0.00039682540227659047,-0.0013227512827143073,0.0004960317746736109,-0.0007440476329065859,-2.222614453595284e-18,-2.2247791852583354e-18,-2.7647155398380363e-18,0.00014880952949170023,1.2197274440461925e-19,1.2197274440461925e-19,1.8973538018496328e-19,2.60459296708853e-19,1.2947206723560157e-19,1.5105075372466654e-19,2.549673085799896e-19,1.5105075372466654e-19,3.796076846106982e-19,0.0006802721181884408,-0.0002721088530961424,-0.0002721088530961424,-1.8032135072459664e-20,-3.378241770428686e-21,1.2197274440461925e-19,0.00010884353832807392,1.0943605966425092e-20,1.6995527515327268e-20,-7.443703982076077e-20,3.3881317890172014e-21,-1.3552527156068805e-20,-3.2795841245620067e-21,1.8055593228630336e-35,-1.2021286999159223e-21,0.0006802721181884408,-0.0002721088530961424,-3.535337949426389e-20,-0.0002721088530961424,-1.0069152466540799e-20,1.2197274440461925e-19,1.0943605966425092e-20,0.00010884353832807392,1.733848596769713e-20,-8.980861065304827e-22,5.081255392329959e-21,8.241911452666021e-23,-6.088451266469196e-20,-1.0164395367051604e-20,-1.855659746918026e-21,0.0007936508045531809,-0.0003174603043589741,-8.131516293641283e-20,-9.692901771661525e-20,-0.00039682540227659047,1.8973538018496328e-19,1.6995527515327268e-20,1.733848596769713e-20,0.00015873015217948705,-1.5050774398375207e-21,4.0852231672257576e-23,2.3445883547602912e-20,-5.673030217242234e-22,2.827961847022023e-20,-4.230292529372465e-21,0.0004960317746736109,-1.111307226797642e-18,-0.0007440476329065859,-1.870248747537495e-18,-2.292051923320895e-18,2.60459296708853e-19,-7.443703982076077e-20,-8.980861065304827e-22,-1.5050774398375207e-21,0.00014880952949170023,1.0842021724855044e-19,1.6263032587282567e-19,2.565971904288429e-19,1.5105075372466654e-19,3.770421063926826e-19,0.0006802721181884408,-6.6861551749938215e-19,-0.0002721088530961424,-0.0002721088530961424,-1.3073811724631513e-21,1.2947206723560157e-19,3.3881317890172014e-21,5.081255392329959e-21,4.0852231672257576e-23,1.0842021724855044e-19,0.00010884353832807392,1.3797684425701343e-20,-6.500685772022947e-20,-1.3552527156068805e-20,1.3617410347056284e-22,0.0007936508045531809,-7.68470279504946e-19,-0.0003174603043589741,-1.0842021724855044e-19,-0.00039682540227659047,1.5105075372466654e-19,-1.3552527156068805e-20,8.241911452666021e-23,2.3445883547602912e-20,1.6263032587282567e-19,1.3797684425701343e-20,0.00015873015217948705,2.2536476214231677e-22,3.624848908344857e-20,-1.5082691735844e-20,0.0004960317746736109,-1.111307226797642e-18,-1.1114315106846781e-18,-0.0007440476329065859,-1.9244588561617704e-18,2.549673085799896e-19,-3.2795841245620067e-21,-6.088451266469196e-20,-5.673030217242234e-22,2.565971904288429e-19,-6.500685772022947e-20,2.2536476214231677e-22,0.00014880952949170023,1.735564253370679e-19,3.7818196127678065e-19,0.0007936508045531809,-7.864020042214471e-19,-7.938694289000578e-19,-0.0003174603043589741,-0.00039682540227659047,1.5105075372466654e-19,1.8055593228630336e-35,-1.0164395367051604e-20,2.827961847022023e-20,1.5105075372466654e-19,-1.3552527156068805e-20,3.624848908344857e-20,1.735564253370679e-19,0.00015873015217948705,1.9644152162683177e-21,0.0006613756413571537,-1.882778465866142e-18,-1.85213059699044e-18,-1.8907766820040705e-18,-0.0013227512827143073,3.796076846106982e-19,-1.2021286999159223e-21,-1.855659746918026e-21,-4.230292529372465e-21,3.770421063926826e-19,1.3617410347056284e-22,-1.5082691735844e-20,3.7818196127678065e-19,1.9644152162683177e-21,0.0003306878206785768,6.0,6.0,6.0,6.0,0.03415532782673836,-0.0069798752665519714,-0.0069798752665519714,-0.0069798752665519714,-0.0069798752665519714,0.00041335978312417865,0.0005668934318237007,0.0005668934318237007,0.0005668934318237007,0.00041335978312417865,0.0005668934318237007,0.0005668934318237007,0.00041335978312417865,0.0005668934318237007,0.00041335978312417865,-0.0069798752665519714,0.005065429024398327,0.0005668934318237007,0.0005668934318237007,0.0005668934318237007,-0.0006200397037900984,-0.00022675737272948027,-0.00022675737272948027,-0.00022675737272948027,4.87890977618477e-19,1.4210734156522856e-19,1.3995270409058985e-19,5.149960319306146e-19,1.2805577893054593e-19,5.432504020051064e-19,-0.0069798752665519714,0.0005668934318237007,0.005065429024398327,0.0005668934318237007,0.0005668934318237007,1.0164395367051604e-18,-0.00022675737272948027,-5.3820141433070486e-20,-4.0657581468206416e-20,-0.0006200397037900984,-0.00022675737272948027,-0.00022675737272948027,5.140591464893217e-19,1.3429676617937903e-19,5.265617746529076e-19,-0.0069798752665519714,0.0005668934318237007,0.0005668934318237007,0.005065429024398327,0.0005668934318237007,1.0248724362549854e-18,2.542170460708812e-20,-0.00022675737272948027,-4.6072829208209917e-20,8.538092108323347e-19,-0.00022675737272948027,-4.404571325722362e-20,-0.0006200397037900984,-0.00022675737272948027,5.150780779076222e-19,-0.0069798752665519714,0.0005668934318237007,0.0005668934318237007,0.0005668934318237007,0.005065429024398327,1.0164395367051604e-18,3.366354643804609e-20,2.0212326288795156e-20,-0.00022675737272948027,8.561233002947401e-19,8.651944892405977e-21,-0.00022675737272948027,6.911788849595091e-19,-0.00022675737272948027,-0.0006200397037900984,0.00041335978312417865,-0.0006200397037900984,1.0164395367051604e-18,1.0248724362549854e-18,1.0164395367051604e-18,0.00012400794366840273,-7.453889935837843e-20,-7.453889935837843e-20,-7.453889935837843e-20,-1.0673137293165858e-19,-5.394669683561683e-20,-5.394669683561683e-20,-1.0886698525220858e-19,-5.394669683561683e-20,-1.1142364542924513e-19,0.0005668934318237007,-0.00022675737272948027,-0.00022675737272948027,2.542170460708812e-20,3.366354643804609e-20,-7.453889935837843e-20,9.070294618140906e-05,-2.2644201746784112e-20,-2.3494950544446365e-20,1.746290556405247e-20,1.0164395367051604e-20,1.0164395367051604e-20,1.0647070602554068e-21,2.858802261199803e-35,-6.212982030365477e-23,0.0005668934318237007,-0.00022675737272948027,-5.3820141433070486e-20,-0.00022675737272948027,2.0212326288795156e-20,-7.453889935837843e-20,-2.2644201746784112e-20,9.070294618140906e-05,-2.314131952347001e-20,1.4617205337704194e-21,4.096240721745501e-20,3.6943823472783694e-23,1.0686642793811634e-20,1.5246593050577406e-20,-1.0464424185664181e-22,0.0005668934318237007,-0.00022675737272948027,-4.0657581468206416e-20,-4.6072829208209917e-20,-0.00022675737272948027,-7.453889935837843e-20,-2.3494950544446365e-20,-2.314131952347001e-20,9.070294618140906e-05,-8.645474263986345e-22,-7.634349716126523e-23,4.1710970128898555e-20,1.0241312864651057e-22,4.1424490987142445e-20,6.268454249593188e-21,0.00041335978312417865,4.87890977618477e-19,-0.0006200397037900984,8.538092108323347e-19,8.561233002947401e-19,-1.0673137293165858e-19,1.746290556405247e-20,1.4617205337704194e-21,-8.645474263986345e-22,0.00012400794366840273,-7.453889935837843e-20,-7.453889935837843e-20,-1.0889171019770567e-19,-5.394669683561683e-20,-1.077268201753808e-19,0.0005668934318237007,1.4210734156522856e-19,-0.00022675737272948027,-0.00022675737272948027,8.651944892405977e-21,-5.394669683561683e-20,1.0164395367051604e-20,4.096240721745501e-20,-7.634349716126523e-23,-7.453889935837843e-20,9.070294618140906e-05,-1.9871962469362326e-20,1.1116451171531729e-20,1.6940658945086007e-20,-2.0875175537514573e-22,0.0005668934318237007,1.3995270409058985e-19,-0.00022675737272948027,-4.404571325722362e-20,-0.00022675737272948027,-5.394669683561683e-20,1.0164395367051604e-20,3.6943823472783694e-23,4.1710970128898555e-20,-7.453889935837843e-20,-1.9871962469362326e-20,9.070294618140906e-05,1.0101827110478602e-22,3.7234026315691485e-20,5.02342747035619e-21,0.00041335978312417865,5.149960319306146e-19,5.140591464893217e-19,-0.0006200397037900984,6.911788849595091e-19,-1.0886698525220858e-19,1.0647070602554068e-21,1.0686642793811634e-20,1.0241312864651057e-22,-1.0889171019770567e-19,1.1116451171531729e-20,1.0101827110478602e-22,0.00012400794366840273,-6.226212381376221e-20,-1.0711479699497105e-19,0.0005668934318237007,1.2805577893054593e-19,1.3429676617937903e-19,-0.00022675737272948027,-0.00022675737272948027,-5.394669683561683e-20,2.858802261199803e-35,1.5246593050577406e-20,4.1424490987142445e-20,-5.394669683561683e-20,1.6940658945086007e-20,3.7234026315691485e-20,-6.226212381376221e-20,9.070294618140906e-05,8.330928536695078e-21,0.00041335978312417865,5.432504020051064e-19,5.265617746529076e-19,5.150780779076222e-19,-0.0006200397037900984,-1.1142364542924513e-19,-6.212982030365477e-23,-1.0464424185664181e-22,6.268454249593188e-21,-1.077268201753808e-19,-2.0875175537514573e-22,5.02342747035619e-21,-1.0711479699497105e-19,8.330928536695078e-21,0.00012400794366840273,6.0,6.0,6.0,7.0,0.02999923564493656,-0.006043488625437021,-0.006043488625437021,-0.006043488625437021,-0.005338246468454599,0.00035430840216577053,0.00048590864753350616,0.00048590864753350616,0.00042517005931586027,0.00035430840216577053,0.00048590864753350616,0.00042517005931586027,0.00035430840216577053,0.00042517005931586027,0.00027557319845072925,-0.006043488625437021,0.004366091452538967,0.00048590864753350616,0.00048590864753350616,0.00042517005931586027,-0.0005314626032486558,-0.00019436345610301942,-0.00019436345610301942,-0.0001700680295471102,3.2526065174565133e-19,1.5750552838775338e-19,1.7623594768446272e-19,3.6591823321385775e-19,1.790199274335865e-19,4.0008810789084006e-19,-0.006043488625437021,0.00048590864753350616,0.004366091452538967,0.00048590864753350616,0.00042517005931586027,8.673617379884035e-19,-0.00019436345610301942,-7.676306524091135e-20,-7.453889935837843e-20,-0.0005314626032486558,-0.00019436345610301942,-0.0001700680295471102,3.1961741881166144e-19,1.7573580068190077e-19,3.9016879062965143e-19,-0.006043488625437021,0.00048590864753350616,0.00048590864753350616,0.004366091452538967,0.00042517005931586027,8.558249982863382e-19,-2.399653703514461e-20,-0.00019436345610301942,-7.287855399852844e-20,7.589415207398531e-19,-0.00019436345610301942,-7.453889935837843e-20,-0.0005314626032486558,-0.0001700680295471102,4.1378076461255417e-19,-0.005338246468454599,0.00042517005931586027,0.00042517005931586027,0.00042517005931586027,0.003212396055459976,6.2341624917916505e-19,2.112686654443916e-20,2.5375366336913812e-20,-0.00014172335795592517,5.102544258643075e-19,1.790243412176363e-20,-0.00014172335795592517,4.0657581468206416e-19,-0.00014172335795592517,-0.0003306878206785768,0.00035430840216577053,-0.0005314626032486558,8.673617379884035e-19,8.558249982863382e-19,6.2341624917916505e-19,0.00010629251482896507,-5.421010862427522e-20,-6.098637220230962e-20,6.776263578034403e-21,-9.436943655804061e-20,-4.6240026320696465e-20,-4.046002424229976e-20,-9.252282692634987e-20,-4.046002424229976e-20,-6.78138628171855e-20,0.00048590864753350616,-0.00019436345610301942,-0.00019436345610301942,-2.399653703514461e-20,2.112686654443916e-20,-5.421010862427522e-20,7.774538244120777e-05,4.735833977374478e-21,5.0387634312246656e-21,5.852989781462002e-20,3.3881317890172014e-21,-1.3552527156068805e-20,6.793528751889138e-22,-1.504632769052528e-36,2.423725906371073e-23,0.00048590864753350616,-0.00019436345610301942,-7.676306524091135e-20,-0.00019436345610301942,2.5375366336913812e-20,-6.098637220230962e-20,4.735833977374478e-21,7.774538244120777e-05,4.8501024358707865e-21,2.919922689527846e-24,2.5886452479959344e-20,6.383514825412534e-23,3.820111031169108e-20,-1.5246593050577406e-20,7.019572742203512e-23,0.00042517005931586027,-0.0001700680295471102,-7.453889935837843e-20,-7.287855399852844e-20,-0.00014172335795592517,6.776263578034403e-21,5.0387634312246656e-21,4.8501024358707865e-21,5.668934318237007e-05,3.1928240157589983e-22,1.6938244652062796e-22,1.9928632419257878e-20,-1.9658851733682193e-22,2.046555503174862e-20,-2.0470741066448416e-20,0.00035430840216577053,3.2526065174565133e-19,-0.0005314626032486558,7.589415207398531e-19,5.102544258643075e-19,-9.436943655804061e-20,5.852989781462002e-20,2.919922689527846e-24,3.1928240157589983e-22,0.00010629251482896507,-6.098637220230962e-20,0.0,-9.464046745562244e-20,-4.046002424229976e-20,-6.486807232307956e-20,0.00048590864753350616,1.5750552838775338e-19,-0.00019436345610301942,-0.00019436345610301942,1.790243412176363e-20,-4.6240026320696465e-20,3.3881317890172014e-21,2.5886452479959344e-20,1.6938244652062796e-22,-6.098637220230962e-20,7.774538244120777e-05,5.194583983011126e-21,6.087277057740283e-20,-1.3552527156068805e-20,3.952257001336156e-22,0.00042517005931586027,1.7623594768446272e-19,-0.0001700680295471102,-7.453889935837843e-20,-0.00014172335795592517,-4.046002424229976e-20,-1.3552527156068805e-20,6.383514825412534e-23,1.9928632419257878e-20,0.0,5.194583983011126e-21,5.668934318237007e-05,1.745492456361104e-22,2.0148542908749075e-20,-2.2763769734976372e-20,0.00035430840216577053,3.6591823321385775e-19,3.1961741881166144e-19,-0.0005314626032486558,4.0657581468206416e-19,-9.252282692634987e-20,6.793528751889138e-22,3.820111031169108e-20,-1.9658851733682193e-22,-9.464046745562244e-20,6.087277057740283e-20,1.745492456361104e-22,0.00010629251482896507,-2.8511919604260623e-22,-7.046123498061585e-20,0.00042517005931586027,1.790199274335865e-19,1.7573580068190077e-19,-0.0001700680295471102,-0.00014172335795592517,-4.046002424229976e-20,-1.504632769052528e-36,-1.5246593050577406e-20,2.046555503174862e-20,-4.046002424229976e-20,-1.3552527156068805e-20,2.0148542908749075e-20,-2.8511919604260623e-22,5.668934318237007e-05,-2.0555321899669097e-20,0.00027557319845072925,4.0008810789084006e-19,3.9016879062965143e-19,4.1378076461255417e-19,-0.0003306878206785768,-6.78138628171855e-20,2.423725906371073e-23,7.019572742203512e-23,-2.0470741066448416e-20,-6.486807232307956e-20,3.952257001336156e-22,-2.2763769734976372e-20,-7.046123498061585e-20,-2.0555321899669097e-20,5.5114636779762805e-05,6.0,6.0,6.0,8.0,0.026752252131700516,-0.0053293886594474316,-0.0053293886594474316,-0.0053293886594474316,-0.004216270055621862,0.0003100198518950492,0.00042517005931586027,0.00042517005931586027,0.0003306878206785768,0.0003100198518950492,0.00042517005931586027,0.0003306878206785768,0.0003100198518950492,0.0003306878206785768,0.00019290123600512743,-0.0053293886594474316,0.0038368646055459976,0.00042517005931586027,0.00042517005931586027,0.0003306878206785768,-0.0004650297632906586,-0.0001700680295471102,-0.0001700680295471102,-0.00013227513409219682,4.0565387019058553e-19,2.0230011151797598e-19,1.5141530773025515e-19,4.0565387019058553e-19,1.5224071765930943e-19,2.1531606987513637e-19,-0.0053293886594474316,0.00042517005931586027,0.0038368646055459976,0.00042517005931586027,0.0003306878206785768,7.320313708595483e-19,-0.0001700680295471102,-3.6232852418458183e-34,-5.929230630780102e-21,-0.0004650297632906586,-0.0001700680295471102,-0.00013227513409219682,4.0565387019058553e-19,1.5141530773025515e-19,2.1363084447342443e-19,-0.0053293886594474316,0.00042517005931586027,0.00042517005931586027,0.0038368646055459976,0.0003306878206785768,7.320313708595483e-19,-3.6232852418458183e-34,-0.0001700680295471102,-5.103815854964419e-21,6.30881347412303e-19,-0.0001700680295471102,-5.929230630780102e-21,-0.0004650297632906586,-0.00013227513409219682,2.1531606987513637e-19,-0.004216270055621862,0.0003306878206785768,0.0003306878206785768,0.0003306878206785768,0.0021691545844078064,6.064632859224673e-19,-3.00176946573116e-34,-3.00176946573116e-34,-9.448223863728344e-05,5.277910167419497e-19,-5.250644442487741e-34,-9.448223863728344e-05,4.491187475614321e-19,-9.448223863728344e-05,-0.00019290123600512743,0.0003100198518950492,-0.0004650297632906586,7.320313708595483e-19,7.320313708595483e-19,6.064632859224673e-19,9.300595411332324e-05,-4.603451394374252e-20,-4.603451394374252e-20,-5.1149459578472325e-20,-8.11307727456474e-20,-4.046002424229976e-20,-3.1468907025972196e-20,-8.11307727456474e-20,-3.1468907025972196e-20,-4.5892154867852436e-20,0.00042517005931586027,-0.0001700680295471102,-0.0001700680295471102,-3.6232852418458183e-34,-3.00176946573116e-34,-4.603451394374252e-20,6.80272132740356e-05,2.2785386742747965e-35,2.531709478646482e-35,4.015674095316803e-35,2.0026217959273669e-35,1.5575947301657298e-35,4.015674095316803e-35,1.5575947301657298e-35,2.2714923088461492e-35,0.00042517005931586027,-0.0001700680295471102,-3.6232852418458183e-34,-0.0001700680295471102,-3.00176946573116e-34,-4.603451394374252e-20,2.2785386742747965e-35,6.80272132740356e-05,2.531709478646482e-35,4.015674095316803e-35,2.0026217959273669e-35,1.5575947301657298e-35,4.015674095316803e-35,1.5575947301657298e-35,2.2714923088461492e-35,0.0003306878206785768,-0.00013227513409219682,-5.929230630780102e-21,-5.103815854964419e-21,-9.448223863728344e-05,-5.1149459578472325e-20,2.531709478646482e-35,2.531709478646482e-35,3.779289545491338e-05,3.611118645726067e-35,2.2251353288081854e-35,1.6940658945086007e-21,3.298378029306687e-35,1.4582330869935204e-21,4.0413443634055365e-21,0.0003100198518950492,4.0565387019058553e-19,-0.0004650297632906586,6.30881347412303e-19,5.277910167419497e-19,-8.11307727456474e-20,4.015674095316803e-35,4.015674095316803e-35,3.611118645726067e-35,9.300595411332324e-05,-4.603451394374252e-20,-5.1149459578472325e-20,-8.11307727456474e-20,-3.1468907025972196e-20,-4.5892154867852436e-20,0.00042517005931586027,2.0230011151797598e-19,-0.0001700680295471102,-0.0001700680295471102,-5.250644442487741e-34,-4.046002424229976e-20,2.0026217959273669e-35,2.0026217959273669e-35,2.2251353288081854e-35,-4.603451394374252e-20,6.80272132740356e-05,3.9006894534507117e-35,7.545075220674086e-35,2.926574561476997e-35,4.267921235487287e-35,0.0003306878206785768,1.5141530773025515e-19,-0.00013227513409219682,-5.929230630780102e-21,-9.448223863728344e-05,-3.1468907025972196e-20,1.5575947301657298e-35,1.5575947301657298e-35,1.6940658945086007e-21,-5.1149459578472325e-20,3.9006894534507117e-35,3.779289545491338e-05,6.168994353115365e-35,1.6940658945086007e-21,4.522836181332424e-21,0.0003100198518950492,4.0565387019058553e-19,4.0565387019058553e-19,-0.0004650297632906586,4.491187475614321e-19,-8.11307727456474e-20,4.015674095316803e-35,4.015674095316803e-35,3.298378029306687e-35,-8.11307727456474e-20,7.545075220674086e-35,6.168994353115365e-35,9.300595411332324e-05,-5.1149459578472325e-20,-4.5892154867852436e-20,0.0003306878206785768,1.5224071765930943e-19,1.5141530773025515e-19,-0.00013227513409219682,-9.448223863728344e-05,-3.1468907025972196e-20,1.5575947301657298e-35,1.5575947301657298e-35,1.4582330869935204e-21,-3.1468907025972196e-20,2.926574561476997e-35,1.6940658945086007e-21,-5.1149459578472325e-20,3.779289545491338e-05,4.0413443634055365e-21,0.00019290123600512743,2.1531606987513637e-19,2.1363084447342443e-19,2.1531606987513637e-19,-0.00019290123600512743,-4.5892154867852436e-20,2.2714923088461492e-35,2.2714923088461492e-35,4.0413443634055365e-21,-4.5892154867852436e-20,4.267921235487287e-35,4.522836181332424e-21,-4.5892154867852436e-20,4.0413443634055365e-21,2.7557318389881402e-05,6.0,6.0,7.0,3.0,0.051889870315790176,-0.011358114890754223,-0.011358114890754223,-0.010038738138973713,-0.018920067697763443,0.0007086168043315411,0.0009718172950670123,0.0008503401186317205,0.001700680237263441,0.0007086168043315411,0.0008503401186317205,0.001700680237263441,0.0005511463969014585,0.0014880952658131719,0.0019841270986944437,-0.011358114890754223,0.008440637961030006,0.0009718172950670123,0.0008503401186317205,0.001700680237263441,-0.0010629252064973116,-0.00038872691220603883,-0.0003401360590942204,-0.0006802721181884408,7.318364664277155e-19,3.336129787339348e-19,7.563246831732533e-19,8.131516293641283e-19,5.389323641112147e-19,5.27703428654838e-18,-0.011358114890754223,0.0009718172950670123,0.008440637961030006,0.0008503401186317205,0.001700680237263441,1.7076184216646695e-18,-0.00038872691220603883,-1.5900236340495637e-19,-2.508484338056157e-20,-0.0010629252064973116,-0.0003401360590942204,-0.0006802721181884408,7.984225928830677e-19,5.421010862427522e-19,5.27703428654838e-18,-0.010038738138973713,0.0008503401186317205,0.0008503401186317205,0.006212207023054361,0.0014880952658131719,1.1417707377943215e-18,4.5837153819466195e-20,-0.00028344671591185033,8.411484942365232e-21,9.75781955236954e-19,-0.00028344671591185033,6.337840081922825e-21,-0.0006613756413571537,-0.0004960317746736109,-9.058404283158673e-33,-0.018920067697763443,0.001700680237263441,0.001700680237263441,0.0014880952658131719,0.038761336356401443,3.469446951953614e-18,-1.441560482226722e-19,9.409735875999602e-20,-0.001700680237263441,3.0617145319800478e-18,1.0672615135404184e-19,-0.001700680237263441,-0.0,-0.0014880952658131719,-0.011904762126505375,0.0007086168043315411,-0.0010629252064973116,1.7076184216646695e-18,1.1417707377943215e-18,3.469446951953614e-18,0.00021258502965793014,-1.2197274440461925e-19,1.3552527156068805e-20,-2.710505431213761e-19,-1.967695948671435e-19,-8.092004848459951e-20,-1.6184009696919903e-19,-1.3989561570362662e-19,-1.4161007677011348e-19,-9.440672301662115e-19,0.0009718172950670123,-0.00038872691220603883,-0.00038872691220603883,4.5837153819466195e-20,-1.441560482226722e-19,-1.2197274440461925e-19,0.00015549076488241553,9.609515503567644e-21,2.2414558960398345e-20,1.0350727493551977e-19,-2.710505431213761e-20,3.3881317890172014e-20,-4.980143265710114e-22,1.1387863751573939e-21,9.62964972193618e-35,0.0008503401186317205,-0.0003401360590942204,-1.5900236340495637e-19,-0.00028344671591185033,9.409735875999602e-20,1.3552527156068805e-20,9.609515503567644e-21,0.00011337868636474013,-5.360998585869373e-20,-6.411540339693523e-22,4.624996541274417e-20,-2.9199192895373446e-22,-3.6974084808196696e-20,1.3552527156068805e-20,9.29065491558782e-36,0.001700680237263441,-0.0006802721181884408,-2.508484338056157e-20,8.411484942365232e-21,-0.001700680237263441,-2.710505431213761e-19,2.2414558960398345e-20,-5.360998585869373e-20,0.0006802721181884408,3.3101920919155616e-34,8.275480229788904e-35,-3.0951554020434294e-20,1.925929944387236e-34,1.2561347647319483e-19,-5.566980840185341e-19,0.0007086168043315411,7.318364664277155e-19,-0.0010629252064973116,9.75781955236954e-19,3.0617145319800478e-18,-1.967695948671435e-19,1.0350727493551977e-19,-6.411540339693523e-22,3.3101920919155616e-34,0.00021258502965793014,-0.0,-2.710505431213761e-19,-1.3788391245389766e-19,-1.384962070529459e-19,-9.440672301662115e-19,0.0008503401186317205,3.336129787339348e-19,-0.0003401360590942204,-0.00028344671591185033,1.0672615135404184e-19,-8.092004848459951e-20,-2.710505431213761e-20,4.624996541274417e-20,8.275480229788904e-35,-0.0,0.00011337868636474013,-5.082197683525802e-20,-3.5476244895796427e-20,6.776263578034403e-21,3.1296361596292583e-34,0.001700680237263441,7.563246831732533e-19,-0.0006802721181884408,6.337840081922825e-21,-0.001700680237263441,-1.6184009696919903e-19,3.3881317890172014e-20,-2.9199192895373446e-22,-3.0951554020434294e-20,-2.710505431213761e-19,-5.082197683525802e-20,0.0006802721181884408,-6.813145008920471e-22,1.2587562810388879e-19,-5.566980840185341e-19,0.0005511463969014585,8.131516293641283e-19,7.984225928830677e-19,-0.0006613756413571537,-0.0,-1.3989561570362662e-19,-4.980143265710114e-22,-3.6974084808196696e-20,1.925929944387236e-34,-1.3788391245389766e-19,-3.5476244895796427e-20,-6.813145008920471e-22,0.00011022927355952561,-7.818765604824806e-21,1.206995395372417e-33,0.0014880952658131719,5.389323641112147e-19,5.421010862427522e-19,-0.0004960317746736109,-0.0014880952658131719,-1.4161007677011348e-19,1.1387863751573939e-21,1.3552527156068805e-20,1.2561347647319483e-19,-1.384962070529459e-19,6.776263578034403e-21,1.2587562810388879e-19,-7.818765604824806e-21,0.0004960317746736109,1.0128823398012864e-33,0.0019841270986944437,5.27703428654838e-18,5.27703428654838e-18,-9.058404283158673e-33,-0.011904762126505375,-9.440672301662115e-19,9.62964972193618e-35,9.29065491558782e-36,-5.566980840185341e-19,-9.440672301662115e-19,3.1296361596292583e-34,-5.566980840185341e-19,1.206995395372417e-33,1.0128823398012864e-33,0.0059523810632526875,6.0,6.0,7.0,4.0,0.04165620729327202,-0.008773688226938248,-0.008773688226938248,-0.0077522676438093185,-0.01194727886468172,0.0005314626032486558,0.0007288630004040897,0.0006377550889737904,0.0010204081190750003,0.0005314626032486558,0.0006377550889737904,0.0010204081190750003,0.00041335978312417865,0.0008928571478463709,0.0009920635493472219,-0.008773688226938248,0.006432519294321537,0.0007288630004040897,0.0006377550889737904,0.0010204081190750003,-0.0007971939048729837,-0.0002915451768785715,-0.00025510202976875007,-0.0004081632650922984,8.944667923005412e-19,2.1573103019930242e-19,3.393109348353239e-19,5.014435047745458e-19,4.265579908901135e-19,1.8859308511805817e-18,-0.008773688226938248,0.0007288630004040897,0.006432519294321537,0.0006377550889737904,0.0010204081190750003,1.4094628242311558e-18,-0.0002915451768785715,-7.968561066733483e-20,-1.2887520472485627e-19,-0.0007971939048729837,-0.00025510202976875007,-0.0004081632650922984,4.7830648755961335e-19,4.336808689942018e-19,1.8859308511805817e-18,-0.0077522676438093185,0.0006377550889737904,0.0006377550889737904,0.004733560141175985,0.0008928571478463709,1.1632202548608575e-18,-6.21385637097621e-20,-0.00021258502965793014,3.5399436652276903e-20,1.043544591017298e-18,-0.00021258502965793014,3.887974738080548e-20,-0.0004960317746736109,-0.00029761905898340046,-4.502379197203495e-33,-0.01194727886468172,0.0010204081190750003,0.0010204081190750003,0.0008928571478463709,0.014909297227859497,1.8973538018496328e-18,-1.1549160335950728e-19,-4.736270993694196e-21,-0.0006802721181884408,1.6679175779724572e-18,-8.470329472543003e-21,-0.0006802721181884408,-0.0,-0.0005952381179668009,-0.0029761905316263437,0.0005314626032486558,-0.0007971939048729837,1.4094628242311558e-18,1.1632202548608575e-18,1.8973538018496328e-18,0.0001594387722434476,-1.4907779871675686e-19,-9.486769009248164e-20,-1.4907779871675686e-19,-1.4535748928831426e-19,-6.06900347478625e-20,-9.710405688904971e-20,-1.139672258128457e-19,-8.49660473545378e-20,-3.304235253882952e-19,0.0007288630004040897,-0.0002915451768785715,-0.0002915451768785715,-6.21385637097621e-20,-1.1549160335950728e-19,-1.4907779871675686e-19,0.00011661807366181165,1.2800276666992151e-20,2.0058981220394603e-20,-6.467108055266976e-20,1.3552527156068805e-20,2.710505431213761e-20,-3.8987722319621712e-22,-8.061612685830073e-22,4.092601131822876e-34,0.0006377550889737904,-0.00025510202976875007,-7.968561066733483e-20,-0.00021258502965793014,-4.736270993694196e-21,-9.486769009248164e-20,1.2800276666992151e-20,8.50340147735551e-05,-6.143321371518235e-21,-1.1079322959710959e-21,1.7945941883279358e-20,-9.368660416254918e-23,2.4785478315825532e-20,6.776263578034403e-21,2.2323285162363154e-34,0.0010204081190750003,-0.0004081632650922984,-1.2887520472485627e-19,3.5399436652276903e-20,-0.0006802721181884408,-1.4907779871675686e-19,2.0058981220394603e-20,-6.143321371518235e-21,0.0002721088530961424,1.4444474582904269e-34,6.281841810794304e-35,5.24851720908122e-20,9.723689270001962e-35,-1.3360754539895049e-20,-1.5587546559314107e-19,0.0005314626032486558,8.944667923005412e-19,-0.0007971939048729837,1.043544591017298e-18,1.6679175779724572e-18,-1.4535748928831426e-19,-6.467108055266976e-20,-1.1079322959710959e-21,1.4444474582904269e-34,0.0001594387722434476,-1.0842021724855044e-19,-1.4907779871675686e-19,-1.0849294451896975e-19,-8.717039321411212e-20,-3.304235253882952e-19,0.0006377550889737904,2.1573103019930242e-19,-0.00025510202976875007,-0.00021258502965793014,-8.470329472543003e-21,-6.06900347478625e-20,1.3552527156068805e-20,1.7945941883279358e-20,6.281841810794304e-35,-1.0842021724855044e-19,8.50340147735551e-05,-6.776263578034403e-21,2.2704765261672345e-20,8.470329472543003e-21,3.3703774026776627e-34,0.0010204081190750003,3.393109348353239e-19,-0.0004081632650922984,3.887974738080548e-20,-0.0006802721181884408,-9.710405688904971e-20,2.710505431213761e-20,-9.368660416254918e-23,5.24851720908122e-20,-1.4907779871675686e-19,-6.776263578034403e-21,0.0002721088530961424,-2.18602091104685e-22,-1.3522638794091792e-20,-1.5587546559314107e-19,0.00041335978312417865,5.014435047745458e-19,4.7830648755961335e-19,-0.0004960317746736109,-0.0,-1.139672258128457e-19,-3.8987722319621712e-22,2.4785478315825532e-20,9.723689270001962e-35,-1.0849294451896975e-19,2.2704765261672345e-20,-2.18602091104685e-22,8.26719551696442e-05,9.121893744157985e-22,4.2652849253785165e-34,0.0008928571478463709,4.265579908901135e-19,4.336808689942018e-19,-0.00029761905898340046,-0.0005952381179668009,-8.49660473545378e-20,-8.061612685830073e-22,6.776263578034403e-21,-1.3360754539895049e-20,-8.717039321411212e-20,8.470329472543003e-21,-1.3522638794091792e-20,9.121893744157985e-22,0.00019841270113829523,3.608144782771731e-34,0.0009920635493472219,1.8859308511805817e-18,1.8859308511805817e-18,-4.502379197203495e-33,-0.0029761905316263437,-3.304235253882952e-19,4.092601131822876e-34,2.2323285162363154e-34,-1.5587546559314107e-19,-3.304235253882952e-19,3.3703774026776627e-34,-1.5587546559314107e-19,4.2652849253785165e-34,3.608144782771731e-34,0.0009920635493472219,6.0,6.0,7.0,5.0,0.0348612442612648,-0.0071550048887729645,-0.0071550048887729645,-0.006320861633867025,-0.008248299360275269,0.00042517005931586027,0.000583090353757143,0.0005102040595375001,0.0006802721181884408,0.00042517005931586027,0.0005102040595375001,0.0006802721181884408,0.0003306878206785768,0.0005952381179668009,0.0005668934318237007,-0.0071550048887729645,0.005200437270104885,0.000583090353757143,0.0005102040595375001,0.0006802721181884408,-0.0006377550889737904,-0.0002332361473236233,-0.0002040816325461492,-0.0002721088530961424,7.047314121155779e-19,2.4415223226358847e-19,3.9947997504424873e-19,4.87890977618477e-19,2.7773664401264223e-19,9.364456913997245e-19,-0.0071550048887729645,0.000583090353757143,0.005200437270104885,0.0005102040595375001,0.0006802721181884408,1.043544591017298e-18,-0.0002332361473236233,2.734553445701753e-20,2.2078450597476188e-20,-0.0006377550889737904,-0.0002040816325461492,-0.0002721088530961424,4.951507799633369e-19,2.8281884169616803e-19,9.364456913997245e-19,-0.006320861633867025,0.0005102040595375001,0.0005102040595375001,0.0038265306502580643,0.0005952381179668009,9.04130536601845e-19,-1.144057510909467e-20,-0.0001700680295471102,8.38526234759502e-21,7.453889935837843e-19,-0.0001700680295471102,3.2480539221601746e-21,-0.00039682540227659047,-0.00019841270113829523,-2.155592520521125e-33,-0.008248299360275269,0.0006802721181884408,0.0006802721181884408,0.0005952381179668009,0.0075255101546645164,1.3010426069826053e-18,6.486325787342056e-20,-2.6788811208613798e-20,-0.0003401360590942204,1.1927760385328366e-18,-2.6843821950522842e-20,-0.0003401360590942204,-0.0,-0.00029761905898340046,-0.0011337868636474013,0.00042517005931586027,-0.0006377550889737904,1.043544591017298e-18,9.04130536601845e-19,1.3010426069826053e-18,0.00012755101488437504,-8.809142651444724e-20,-6.776263578034403e-20,-1.3552527156068805e-19,-1.12681916387909e-19,-4.8552028444524855e-20,-6.473603361780078e-20,-8.212975489401857e-20,-5.664402941557569e-20,-1.6184009696919903e-19,0.000583090353757143,-0.0002332361473236233,-0.0002332361473236233,-1.144057510909467e-20,6.486325787342056e-20,-8.809142651444724e-20,9.329446038464084e-05,-3.4864867142446674e-21,-2.2283817571588084e-21,-5.715787659703304e-20,8.470329472543003e-21,-2.371692252312041e-20,-1.567740637398188e-22,6.620384183831123e-35,2.1064858766735392e-34,0.0005102040595375001,-0.0002040816325461492,2.734553445701753e-20,-0.0001700680295471102,-2.6788811208613798e-20,-6.776263578034403e-20,-3.4864867142446674e-21,6.80272132740356e-05,2.584008230193914e-21,7.257882825396476e-22,-7.522643023466491e-21,3.159728815010309e-35,-2.557258267393522e-20,6.776263578034403e-21,9.520624342812965e-35,0.0006802721181884408,-0.0002721088530961424,2.2078450597476188e-20,8.38526234759502e-21,-0.0003401360590942204,-1.3552527156068805e-19,-2.2283817571588084e-21,2.584008230193914e-21,0.0001360544265480712,1.7604203397914578e-34,5.021711866712812e-35,-8.253747900341192e-21,8.952564975862542e-35,-7.422641411052805e-21,-6.362264205095587e-20,0.00042517005931586027,7.047314121155779e-19,-0.0006377550889737904,7.453889935837843e-19,1.1927760385328366e-18,-1.12681916387909e-19,-5.715787659703304e-20,7.257882825396476e-22,1.7604203397914578e-34,0.00012755101488437504,-6.098637220230962e-20,-1.3552527156068805e-19,-8.045649129944597e-20,-5.664402941557569e-20,-1.6184009696919903e-19,0.0005102040595375001,2.4415223226358847e-19,-0.0002040816325461492,-0.0001700680295471102,-2.6843821950522842e-20,-4.8552028444524855e-20,8.470329472543003e-21,-7.522643023466491e-21,5.021711866712812e-35,-6.098637220230962e-20,6.80272132740356e-05,4.6388914791988175e-21,-3.1019276201912806e-20,5.082197683525802e-21,1.5118792784656147e-34,0.0006802721181884408,3.9947997504424873e-19,-0.0002721088530961424,3.2480539221601746e-21,-0.0003401360590942204,-6.473603361780078e-20,-2.371692252312041e-20,3.159728815010309e-35,-8.253747900341192e-21,-1.3552527156068805e-19,4.6388914791988175e-21,0.0001360544265480712,1.2789378536946488e-34,-7.422641411052805e-21,-6.362264205095587e-20,0.0003306878206785768,4.87890977618477e-19,4.951507799633369e-19,-0.00039682540227659047,-0.0,-8.212975489401857e-20,-1.567740637398188e-22,-2.557258267393522e-20,8.952564975862542e-35,-8.045649129944597e-20,-3.1019276201912806e-20,1.2789378536946488e-34,6.613756704609841e-05,-4.5609466701306006e-21,2.076286003350724e-34,0.0005952381179668009,2.7773664401264223e-19,2.8281884169616803e-19,-0.00019841270113829523,-0.00029761905898340046,-5.664402941557569e-20,6.620384183831123e-35,6.776263578034403e-21,-7.422641411052805e-21,-5.664402941557569e-20,5.082197683525802e-21,-7.422641411052805e-21,-4.5609466701306006e-21,9.920635056914762e-05,1.469177035490221e-34,0.0005668934318237007,9.364456913997245e-19,9.364456913997245e-19,-2.155592520521125e-33,-0.0011337868636474013,-1.6184009696919903e-19,2.1064858766735392e-34,9.520624342812965e-35,-6.362264205095587e-20,-1.6184009696919903e-19,1.5118792784656147e-34,-6.362264205095587e-20,2.076286003350724e-34,1.469177035490221e-34,0.00028344671591185033,6.0,6.0,7.0,6.0,0.02999923564493656,-0.006043488625437021,-0.006043488625437021,-0.005338246468454599,-0.006043488625437021,0.00035430840216577053,0.00048590864753350616,0.00042517005931586027,0.00048590864753350616,0.00035430840216577053,0.00042517005931586027,0.00048590864753350616,0.00027557319845072925,0.00042517005931586027,0.00035430840216577053,-0.006043488625437021,0.004366091452538967,0.00048590864753350616,0.00042517005931586027,0.00048590864753350616,-0.0005314626032486558,-0.00019436345610301942,-0.0001700680295471102,-0.00019436345610301942,3.6591823321385775e-19,1.7479781664135685e-19,1.6348037027449754e-19,3.9302328752599536e-19,1.5138215588226767e-19,3.431060394857172e-19,-0.006043488625437021,0.00048590864753350616,0.004366091452538967,0.00042517005931586027,0.00048590864753350616,8.809142651444724e-19,-0.00019436345610301942,-7.100261822918327e-20,-6.776263578034403e-20,-0.0005314626032486558,-0.0001700680295471102,-0.00019436345610301942,4.0931124926898874e-19,1.4413489049356674e-19,3.36784363353069e-19,-0.005338246468454599,0.00042517005931586027,0.00042517005931586027,0.003212396055459976,0.00042517005931586027,6.173504303497371e-19,2.353794616484065e-20,-0.00014172335795592517,1.7874841509103877e-20,5.014435047745458e-19,-0.00014172335795592517,6.776263578034403e-21,-0.0003306878206785768,-0.00014172335795592517,-1.0622415611979872e-19,-0.006043488625437021,0.00048590864753350616,0.00048590864753350616,0.00042517005931586027,0.004366091452538967,8.673617379884035e-19,-2.282101968065299e-20,2.450622529142254e-21,-0.00019436345610301942,7.410759704723562e-19,8.100359211088024e-21,-0.00019436345610301942,1.3552527156068805e-20,-0.0001700680295471102,-0.0005314626032486558,0.00035430840216577053,-0.0005314626032486558,8.809142651444724e-19,6.173504303497371e-19,8.673617379884035e-19,0.00010629251482896507,-6.098637220230962e-20,-0.0,-6.776263578034403e-20,-9.808637264054764e-20,-4.046002424229976e-20,-4.6240026320696465e-20,-6.753735831039404e-20,-4.046002424229976e-20,-9.446348311627877e-20,0.00048590864753350616,-0.00019436345610301942,-0.00019436345610301942,2.353794616484065e-20,-2.282101968065299e-20,-6.098637220230962e-20,7.774538244120777e-05,4.775234512499068e-21,4.533289837882276e-21,5.1753637467759885e-20,-1.3552527156068805e-20,3.3881317890172014e-21,-2.4534066401578325e-22,3.76158192263132e-36,5.560441969365173e-22,0.00042517005931586027,-0.0001700680295471102,-7.100261822918327e-20,-0.00014172335795592517,2.450622529142254e-21,-0.0,4.775234512499068e-21,5.668934318237007e-05,-1.5989409318585694e-20,-4.013053564668453e-22,2.0304203113512496e-20,1.318691569821397e-22,-1.8487042404098348e-20,1.0164395367051604e-20,1.2346517815857273e-21,0.00048590864753350616,-0.00019436345610301942,-6.776263578034403e-20,1.7874841509103877e-20,-0.00019436345610301942,-6.776263578034403e-20,4.533289837882276e-21,-1.5989409318585694e-20,7.774538244120777e-05,-5.509121329444136e-22,1.8840358688506183e-22,2.3541526305929356e-20,1.8506233812200565e-22,8.1699078138214e-21,4.994433174299072e-20,0.00035430840216577053,3.6591823321385775e-19,-0.0005314626032486558,5.014435047745458e-19,7.410759704723562e-19,-9.808637264054764e-20,5.1753637467759885e-20,-4.013053564668453e-22,-5.509121329444136e-22,0.00010629251482896507,6.776263578034403e-21,-6.776263578034403e-20,-6.991616819338316e-20,-4.046002424229976e-20,-9.185977704190326e-20,0.00042517005931586027,1.7479781664135685e-19,-0.0001700680295471102,-0.00014172335795592517,8.100359211088024e-21,-4.046002424229976e-20,-1.3552527156068805e-20,2.0304203113512496e-20,1.8840358688506183e-22,6.776263578034403e-21,5.668934318237007e-05,-1.572763573528107e-20,-1.971555747893018e-20,9.317362419797304e-21,5.151660559166887e-22,0.00048590864753350616,1.6348037027449754e-19,-0.00019436345610301942,6.776263578034403e-21,-0.00019436345610301942,-4.6240026320696465e-20,3.3881317890172014e-21,1.318691569821397e-22,2.3541526305929356e-20,-6.776263578034403e-20,-1.572763573528107e-20,7.774538244120777e-05,3.076947038322508e-22,1.2085254960035352e-20,4.7684600325292294e-20,0.00027557319845072925,3.9302328752599536e-19,4.0931124926898874e-19,-0.0003306878206785768,1.3552527156068805e-20,-6.753735831039404e-20,-2.4534066401578325e-22,-1.8487042404098348e-20,1.8506233812200565e-22,-6.991616819338316e-20,-1.971555747893018e-20,3.076947038322508e-22,5.5114636779762805e-05,-7.49298407486249e-21,1.0143499161113445e-21,0.00042517005931586027,1.5138215588226767e-19,1.4413489049356674e-19,-0.00014172335795592517,-0.0001700680295471102,-4.046002424229976e-20,3.76158192263132e-36,1.0164395367051604e-20,8.1699078138214e-21,-4.046002424229976e-20,9.317362419797304e-21,1.2085254960035352e-20,-7.49298407486249e-21,5.668934318237007e-05,3.8102536878303754e-20,0.00035430840216577053,3.431060394857172e-19,3.36784363353069e-19,-1.0622415611979872e-19,-0.0005314626032486558,-9.446348311627877e-20,5.560441969365173e-22,1.2346517815857273e-21,4.994433174299072e-20,-9.185977704190326e-20,5.151660559166887e-22,4.7684600325292294e-20,1.0143499161113445e-21,3.8102536878303754e-20,0.00010629251482896507,6.0,6.0,7.0,7.0,0.026340056210756302,-0.005232194904237986,-0.005232194904237986,-0.004621193744242191,-0.004621193744242191,0.00030369291198439896,0.00041649313061498106,0.00036443150020204484,0.00036443150020204484,0.00030369291198439896,0.00036443150020204484,0.00036443150020204484,0.0002362055965932086,0.0003188775444868952,0.0002362055965932086,-0.005232194904237986,0.0037631888408213854,0.00041649313061498106,0.00036443150020204484,0.00036443150020204484,-0.0004555393534246832,-0.00016659725224599242,-0.00014577258843928576,-0.00014577258843928576,3.5236570605778894e-19,1.8439949654732512e-19,1.7725195812122512e-19,2.507217523872729e-19,1.2641862047724156e-19,2.463206086912138e-19,-0.005232194904237986,0.00041649313061498106,0.0037631888408213854,0.00036443150020204484,0.00036443150020204484,7.047314121155779e-19,-0.00016659725224599242,-4.729928925620744e-20,-5.082197683525802e-20,-0.0004555393534246832,-0.00014577258843928576,-0.00014577258843928576,2.695090145017011e-19,1.2943728687578313e-19,2.5970534742990506e-19,-0.004621193744242191,0.00036443150020204484,0.00036443150020204484,0.002768666949123144,0.0003188775444868952,6.745906049553707e-19,8.16614107241873e-21,-0.00012147716188337654,-1.2657464418911011e-20,6.098637220230962e-19,-0.00012147716188337654,-1.0164395367051604e-20,-0.00028344671591185033,-0.00010629251482896507,3.588269107576687e-20,-0.004621193744242191,0.00036443150020204484,0.00036443150020204484,0.0003188775444868952,0.002768666949123144,7.047314121155779e-19,1.2399015713927939e-20,-1.703415701149221e-21,-0.00012147716188337654,6.127802057665934e-19,1.4160968579802708e-21,-0.00012147716188337654,6.776263578034403e-21,-0.00010629251482896507,-0.00028344671591185033,0.00030369291198439896,-0.0004555393534246832,7.047314121155779e-19,6.745906049553707e-19,7.047314121155779e-19,9.110787505051121e-05,-4.0657581468206416e-20,-5.759824041329242e-20,-6.437450399132683e-20,-7.755851572215472e-20,-3.468001893272878e-20,-3.468001893272878e-20,-5.814534930266236e-20,-3.034501737393125e-20,-5.705177775877604e-20,0.00041649313061498106,-0.00016659725224599242,-0.00016659725224599242,8.16614107241873e-21,1.2399015713927939e-20,-4.0657581468206416e-20,6.663890235358849e-05,6.934389976557711e-21,6.814241184790817e-21,1.1446979296493421e-20,-1.3552527156068805e-20,-1.3552527156068805e-20,1.289107872236867e-21,1.2413220344683356e-35,6.841075481239598e-22,0.00036443150020204484,-0.00014577258843928576,-4.729928925620744e-20,-0.00012147716188337654,-1.703415701149221e-21,-5.759824041329242e-20,6.934389976557711e-21,4.8590864025754854e-05,-1.7925114945639565e-21,1.162882453362619e-21,7.822882928635531e-21,6.136302857111822e-23,1.2227055850570675e-20,2.541098841762901e-21,-2.4492459984170796e-22,0.00036443150020204484,-0.00014577258843928576,-5.082197683525802e-20,-1.2657464418911011e-20,-0.00012147716188337654,-6.437450399132683e-20,6.814241184790817e-21,-1.7925114945639565e-21,4.8590864025754854e-05,8.34349982408068e-22,-1.9557765204021e-22,9.948455990735515e-21,-8.535151561520207e-24,5.8943884747537904e-21,1.245650315091324e-20,0.00030369291198439896,3.5236570605778894e-19,-0.0004555393534246832,6.098637220230962e-19,6.127802057665934e-19,-7.755851572215472e-20,1.1446979296493421e-20,1.162882453362619e-21,8.34349982408068e-22,9.110787505051121e-05,-6.776263578034403e-20,-6.776263578034403e-20,-5.750650091348146e-20,-3.034501737393125e-20,-5.715923369022551e-20,0.00036443150020204484,1.8439949654732512e-19,-0.00014577258843928576,-0.00012147716188337654,1.4160968579802708e-21,-3.468001893272878e-20,-1.3552527156068805e-20,7.822882928635531e-21,-1.9557765204021e-22,-6.776263578034403e-20,4.8590864025754854e-05,-2.2336752284030076e-21,4.657307960834843e-21,2.541098841762901e-21,-4.56347829516941e-22,0.00036443150020204484,1.7725195812122512e-19,-0.00014577258843928576,-1.0164395367051604e-20,-0.00012147716188337654,-3.468001893272878e-20,-1.3552527156068805e-20,6.136302857111822e-23,9.948455990735515e-21,-6.776263578034403e-20,-2.2336752284030076e-21,4.8590864025754854e-05,1.4318039999927584e-22,4.888167688229214e-21,8.400725939847074e-21,0.0002362055965932086,2.507217523872729e-19,2.695090145017011e-19,-0.00028344671591185033,6.776263578034403e-21,-5.814534930266236e-20,1.289107872236867e-21,1.2227055850570675e-20,-8.535151561520207e-24,-5.750650091348146e-20,4.657307960834843e-21,1.4318039999927584e-22,4.724111931864172e-05,-1.9546914012062014e-21,-2.0912457734984042e-22,0.0003188775444868952,1.2641862047724156e-19,1.2943728687578313e-19,-0.00010629251482896507,-0.00010629251482896507,-3.034501737393125e-20,1.2413220344683356e-35,2.541098841762901e-21,5.8943884747537904e-21,-3.034501737393125e-20,2.541098841762901e-21,4.888167688229214e-21,-1.9546914012062014e-21,3.543083948898129e-05,-1.0923400625935064e-20,0.0002362055965932086,2.463206086912138e-19,2.5970534742990506e-19,3.588269107576687e-20,-0.00028344671591185033,-5.705177775877604e-20,6.841075481239598e-22,-2.4492459984170796e-22,1.245650315091324e-20,-5.715923369022551e-20,-4.56347829516941e-22,8.400725939847074e-21,-2.0912457734984042e-22,-1.0923400625935064e-20,4.724111931864172e-05,6.0,6.0,7.0,8.0,0.02348305471241474,-0.004613601602613926,-0.004613601602613926,-0.004074546508491039,-0.003649376332759857,0.0002657313016243279,0.00036443150020204484,0.0003188775444868952,0.00028344671591185033,0.0002657313016243279,0.0003188775444868952,0.00028344671591185033,0.00020667989156208932,0.00024801588733680546,0.0001653439103392884,-0.004613601602613926,0.003306962549686432,0.00036443150020204484,0.0003188775444868952,0.00028344671591185033,-0.00039859695243649185,-0.00014577258843928576,-0.00012755101488437504,-0.00011337868636474013,3.4770332838452794e-19,1.6985156092162531e-19,1.3199663538981048e-19,2.87199977961161e-19,1.335261957399976e-19,1.7936067414717006e-19,-0.004613601602613926,0.00036443150020204484,0.003306962549686432,0.0003188775444868952,0.00028344671591185033,7.022514729403556e-19,-0.00014577258843928576,1.7897946020705676e-20,-2.67422625082153e-21,-0.00039859695243649185,-0.00012755101488437504,-0.00011337868636474013,2.9992268786647427e-19,1.3431378800542172e-19,1.8639397117585825e-19,-0.004074546508491039,0.0003188775444868952,0.0003188775444868952,0.0024329177103936672,0.00024801588733680546,5.885970118719345e-19,-4.994293460979882e-34,-0.00010629251482896507,1.7970461649210447e-20,5.127344684371063e-19,-0.00010629251482896507,1.6940658945086007e-20,-0.00024801588733680546,-8.26719551696442e-05,3.590658884065141e-20,-0.003649376332759857,0.00028344671591185033,0.00028344671591185033,0.00024801588733680546,0.0018693985184654593,5.075393089011788e-19,-4.3065126346687235e-34,-3.4500292740070504e-22,-8.09847770142369e-05,4.401059427034191e-19,1.817054888456878e-21,-8.09847770142369e-05,6.776263578034403e-21,-7.086167897796258e-05,-0.0001653439103392884,0.0002657313016243279,-0.00039859695243649185,7.022514729403556e-19,5.885970118719345e-19,5.075393089011788e-19,7.97193861217238e-05,-6.764255241985606e-20,-4.932269581913432e-20,-3.7579196506847646e-20,-6.95406669693753e-20,-3.034501737393125e-20,-2.6973348417808416e-20,-5.11369743211016e-20,-2.360167946168558e-20,-3.933613459025881e-20,0.00036443150020204484,-0.00014577258843928576,-0.00014577258843928576,-4.994293460979882e-34,-4.3065126346687235e-34,-6.764255241985606e-20,5.8309036830905825e-05,4.1850709816705787e-35,3.188625427848272e-35,5.900582156719596e-35,2.574799554401588e-35,2.2887107469109588e-35,4.339013962922443e-35,2.0026217959273669e-35,3.337703136705241e-35,0.0003188775444868952,-0.00012755101488437504,1.7897946020705676e-20,-0.00010629251482896507,-3.4500292740070504e-22,-4.932269581913432e-20,4.1850709816705787e-35,4.251700738677755e-05,-1.2513229747332674e-22,6.319457630020618e-35,-5.929230630780102e-21,-3.1501225963061505e-23,-1.0164395367051604e-20,-0.0,9.728504051336914e-23,0.00028344671591185033,-0.00011337868636474013,-2.67422625082153e-21,1.7970461649210447e-20,-8.09847770142369e-05,-3.7579196506847646e-20,3.188625427848272e-35,-1.2513229747332674e-22,3.2393909350503236e-05,2.7083389842945504e-35,-9.679638220335179e-23,8.470329472543003e-22,-2.9197536918561206e-22,-4.4336573871286844e-21,4.865183133972107e-21,0.0002657313016243279,3.4770332838452794e-19,-0.00039859695243649185,5.127344684371063e-19,4.401059427034191e-19,-6.95406669693753e-20,5.900582156719596e-35,6.319457630020618e-35,2.7083389842945504e-35,7.97193861217238e-05,-4.932269581913432e-20,-3.7579196506847646e-20,-5.11369743211016e-20,-2.360167946168558e-20,-3.933613459025881e-20,0.0003188775444868952,1.6985156092162531e-19,-0.00012755101488437504,-0.00010629251482896507,1.817054888456878e-21,-3.034501737393125e-20,2.574799554401588e-35,-5.929230630780102e-21,-9.679638220335179e-23,-4.932269581913432e-20,4.251700738677755e-05,-3.1501225963061505e-23,-1.466018500417553e-20,-0.0,-1.976259514687217e-22,0.00028344671591185033,1.3199663538981048e-19,-0.00011337868636474013,1.6940658945086007e-20,-8.09847770142369e-05,-2.6973348417808416e-20,2.2887107469109588e-35,-3.1501225963061505e-23,8.470329472543003e-22,-3.7579196506847646e-20,-3.1501225963061505e-23,3.2393909350503236e-05,-7.35028595286623e-23,-4.658681209898652e-21,3.1084510379205122e-21,0.00020667989156208932,2.87199977961161e-19,2.9992268786647427e-19,-0.00024801588733680546,6.776263578034403e-21,-5.11369743211016e-20,4.339013962922443e-35,-1.0164395367051604e-20,-2.9197536918561206e-22,-5.11369743211016e-20,-1.466018500417553e-20,-7.35028595286623e-23,4.13359775848221e-05,2.329167009334846e-36,1.9545443827770172e-22,0.00024801588733680546,1.335261957399976e-19,1.3431378800542172e-19,-8.26719551696442e-05,-7.086167897796258e-05,-2.360167946168558e-20,2.0026217959273669e-35,-0.0,-4.4336573871286844e-21,-2.360167946168558e-20,-0.0,-4.658681209898652e-21,2.329167009334846e-36,2.362055965932086e-05,-1.0550339746292947e-20,0.0001653439103392884,1.7936067414717006e-19,1.8639397117585825e-19,3.590658884065141e-20,-0.0001653439103392884,-3.933613459025881e-20,3.337703136705241e-35,9.728504051336914e-23,4.865183133972107e-21,-3.933613459025881e-20,-1.976259514687217e-22,3.1084510379205122e-21,1.9545443827770172e-22,-1.0550339746292947e-20,2.362055965932086e-05,6.0,6.0,8.0,3.0,0.046347472816705704,-0.010021022520959377,-0.010021022520959377,-0.007936508394777775,-0.016699735075235367,0.0006200397037900984,0.0008503401186317205,0.0006613756413571537,0.0014880952658131719,0.0006200397037900984,0.0006613756413571537,0.0014880952658131719,0.00038580247201025486,0.0011574074160307646,0.0017361111240461469,-0.010021022520959377,0.007418627385050058,0.0008503401186317205,0.0006613756413571537,0.0014880952658131719,-0.0009300595265813172,-0.0003401360590942204,-0.00026455026818439364,-0.0005952381179668009,8.113077403811711e-19,3.028306154605103e-19,7.080504226246586e-19,4.35204639080101e-19,5.507058842636234e-19,4.130293951031416e-18,-0.010021022520959377,0.0008503401186317205,0.007418627385050058,0.0006613756413571537,0.0014880952658131719,1.4033727069712341e-18,-0.0003401360590942204,-1.1858461261560205e-20,-1.5194763239675364e-33,-0.0009300595265813172,-0.00026455026818439364,-0.0005952381179668009,4.2726168894684886e-19,5.507058842636234e-19,4.130293951031416e-18,-0.007936508394777775,0.0006613756413571537,0.0006613756413571537,0.004196586087346077,0.0011574074160307646,1.1657231999968664e-18,-5.769899786509294e-34,-0.0001889644772745669,-1.2621655696893302e-33,1.0083786616358312e-18,-0.0001889644772745669,-1.979263776122974e-33,-0.00038580247201025486,-0.0003306878206785768,-9.65495150315366e-33,-0.016699735075235367,0.0014880952658131719,0.0014880952658131719,0.0011574074160307646,0.034060847014188766,2.8951393817659567e-18,-1.432987214889375e-33,-1.3802020084076848e-33,-0.0014880952658131719,2.5411141446042332e-18,-2.0346504985398276e-33,-0.0014880952658131719,-0.0,-0.0011574074160307646,-0.010416666977107525,0.0006200397037900984,-0.0009300595265813172,1.4033727069712341e-18,1.1657231999968664e-18,2.8951393817659567e-18,0.00018601190822664648,-9.206902788748504e-20,-1.0229891915694465e-19,-2.0140100496622206e-19,-1.622615454912948e-19,-6.293781405194439e-20,-1.4161007677011348e-19,-9.178430973570487e-20,-1.101411794376641e-19,-8.260588005460409e-19,0.0008503401186317205,-0.0003401360590942204,-0.0003401360590942204,-5.769899786509294e-34,-1.432987214889375e-33,-9.206902788748504e-20,0.0001360544265480712,5.063418957292964e-35,9.96860650264941e-35,8.031348190633606e-35,3.1151894603314596e-35,7.009176644478191e-35,4.5429846176922983e-35,5.451581770819498e-35,4.088686184621661e-34,0.0006613756413571537,-0.00026455026818439364,-1.1858461261560205e-20,-0.0001889644772745669,-1.3802020084076848e-33,-1.0229891915694465e-19,5.063418957292964e-35,7.558579090982676e-05,1.1076229830036135e-34,7.824090399073146e-35,3.3881317890172014e-21,7.787973794321612e-35,6.776263578034403e-21,-0.0,4.542984904678224e-34,0.0014880952658131719,-0.0005952381179668009,-1.5194763239675364e-33,-1.2621655696893302e-33,-0.0014880952658131719,-2.0140100496622206e-19,9.96860650264941e-35,1.1076229830036135e-34,0.0005952381179668009,1.7568573521292681e-34,6.814477357017336e-35,1.5332573192331229e-34,9.937779622476577e-35,1.1925335087794412e-34,8.944001315845809e-34,0.0006200397037900984,8.113077403811711e-19,-0.0009300595265813172,1.0083786616358312e-18,2.5411141446042332e-18,-1.622615454912948e-19,8.031348190633606e-35,7.824090399073146e-35,1.7568573521292681e-34,0.00018601190822664648,-1.0229891915694465e-19,-2.0140100496622206e-19,-9.178430973570487e-20,-1.101411794376641e-19,-8.260588005460409e-19,0.0006613756413571537,3.028306154605103e-19,-0.00026455026818439364,-0.0001889644772745669,-2.0346504985398276e-33,-6.293781405194439e-20,3.1151894603314596e-35,3.3881317890172014e-21,6.814477357017336e-35,-1.0229891915694465e-19,7.558579090982676e-05,1.5867658450414275e-34,9.045672362664848e-21,-0.0,7.337984914099743e-34,0.0014880952658131719,7.080504226246586e-19,-0.0005952381179668009,-1.979263776122974e-33,-0.0014880952658131719,-1.4161007677011348e-19,7.009176644478191e-35,7.787973794321612e-35,1.5332573192331229e-34,-2.0140100496622206e-19,1.5867658450414275e-34,0.0005952381179668009,1.6925279646030376e-34,2.0310336034413932e-34,1.5232751911016079e-33,0.00038580247201025486,4.35204639080101e-19,4.2726168894684886e-19,-0.00038580247201025486,-0.0,-9.178430973570487e-20,4.5429846176922983e-35,6.776263578034403e-21,9.937779622476577e-35,-9.178430973570487e-20,9.045672362664848e-21,1.6925279646030376e-34,5.5114636779762805e-05,8.203355644458635e-36,8.152084547021258e-34,0.0011574074160307646,5.507058842636234e-19,5.507058842636234e-19,-0.0003306878206785768,-0.0011574074160307646,-1.101411794376641e-19,5.451581770819498e-35,-0.0,1.1925335087794412e-34,-1.101411794376641e-19,-0.0,2.0310336034413932e-34,8.203355644458635e-36,0.0003306878206785768,9.782501640096501e-34,0.0017361111240461469,4.130293951031416e-18,4.130293951031416e-18,-9.65495150315366e-33,-0.010416666977107525,-8.260588005460409e-19,4.088686184621661e-34,4.542984904678224e-34,8.944001315845809e-34,-8.260588005460409e-19,7.337984914099743e-34,1.5232751911016079e-33,8.152084547021258e-34,9.782501640096501e-34,0.0052083334885537624,6.0,6.0,8.0,4.0,0.03717875853180885,-0.007738980930298567,-0.007738980930298567,-0.00612599216401577,-0.010540674440562725,0.0004650297632906586,0.0006377550889737904,0.0004960317746736109,0.0008928571478463709,0.0004650297632906586,0.0004960317746736109,0.0008928571478463709,0.00028935185400769114,0.0006944444612599909,0.0008680555620230734,-0.007738980930298567,0.005653256084769964,0.0006377550889737904,0.0004960317746736109,0.0008928571478463709,-0.0006975446594879031,-0.00025510202976875007,-0.00019841270113829523,-0.0003571428533177823,3.4296190326397985e-19,1.491282050353343e-19,2.888845571280194e-19,3.0861578741773546e-19,3.18565064126735e-19,1.4456028621814804e-18,-0.007738980930298567,0.0006377550889737904,0.005653256084769964,0.0004960317746736109,0.0008928571478463709,8.9456688115466e-19,-0.00025510202976875007,-8.688858958152149e-20,-1.3594567318232106e-19,-0.0006975446594879031,-0.00019841270113829523,-0.0003571428533177823,3.1354244929670715e-19,3.244942947575151e-19,1.4456028621814804e-18,-0.00612599216401577,0.0004960317746736109,0.0004960317746736109,0.0031970427371561527,0.0006944444612599909,6.363462712254994e-19,-1.5105075372466654e-19,-0.00014172335795592517,-7.552537686233327e-20,5.183378416053288e-19,-0.00014172335795592517,-7.552537686233327e-20,-0.00028935185400769114,-0.00019841270113829523,-2.3929861760635783e-33,-0.010540674440562725,0.0008928571478463709,0.0008928571478463709,0.0006944444612599909,0.013103505596518517,1.2414483797512224e-18,-2.718913463646421e-19,-8.738383812389348e-20,-0.0005952381179668009,1.0290332581337037e-18,-8.145460749311337e-20,-0.0005952381179668009,1.3552527156068805e-20,-0.00046296295477077365,-0.0026041667442768812,0.0004650297632906586,-0.0006975446594879031,8.9456688115466e-19,6.363462712254994e-19,1.2414483797512224e-18,0.00013950893480796367,2.629901406112835e-21,2.5062735686221382e-20,2.7849982152529897e-20,-1.2169615588729683e-19,-4.720335892337116e-20,-8.49660473545378e-20,-6.883823553295292e-20,-6.608470637012875e-20,-2.8912058794593256e-19,0.0006377550889737904,-0.00025510202976875007,-0.00025510202976875007,-1.5105075372466654e-19,-2.718913463646421e-19,2.629901406112835e-21,0.0001020408162730746,3.021015139116816e-20,5.437827185786784e-20,1.0620756080875938e-19,3.021015139116816e-20,5.437827185786784e-20,-4.37322871194573e-35,-4.884743815967976e-35,-2.255565192651691e-34,0.0004960317746736109,-0.00019841270113829523,-8.688858958152149e-20,-0.00014172335795592517,-8.738383812389348e-20,2.5062735686221382e-20,3.021015139116816e-20,5.668934318237007e-05,3.021015139116816e-20,-6.018531076210112e-36,3.2466320035339573e-21,3.76158192263132e-36,1.0164395367051604e-20,3.3881317890172014e-21,-5.194042323196985e-35,0.0008928571478463709,-0.0003571428533177823,-1.3594567318232106e-19,-7.552537686233327e-20,-0.0005952381179668009,2.7849982152529897e-20,5.437827185786784e-20,3.021015139116816e-20,0.0002380952355451882,3.2304714196163624e-35,8.200073960400615e-36,1.2016904261013545e-35,-9.027796614315168e-36,-1.2789378536946488e-35,-5.771675540621879e-35,0.0004650297632906586,3.4296190326397985e-19,-0.0006975446594879031,5.183378416053288e-19,1.0290332581337037e-18,-1.2169615588729683e-19,1.0620756080875938e-19,-6.018531076210112e-36,3.2304714196163624e-35,0.00013950893480796367,2.5062735686221382e-20,2.7849982152529897e-20,-6.883823553295292e-20,-6.608470637012875e-20,-2.8912058794593256e-19,0.0004960317746736109,1.491282050353343e-19,-0.00019841270113829523,-0.00014172335795592517,-8.145460749311337e-20,-4.720335892337116e-20,3.021015139116816e-20,3.2466320035339573e-21,8.200073960400615e-36,2.5062735686221382e-20,5.668934318237007e-05,3.021015139116816e-20,8.756777110350002e-21,1.6940658945086007e-21,4.588458972516406e-35,0.0008928571478463709,2.888845571280194e-19,-0.0003571428533177823,-7.552537686233327e-20,-0.0005952381179668009,-8.49660473545378e-20,5.437827185786784e-20,3.76158192263132e-36,1.2016904261013545e-35,2.7849982152529897e-20,3.021015139116816e-20,0.0002380952355451882,3.4606553688208144e-35,2.7083389842945504e-35,1.1836826332484744e-34,0.00028935185400769114,3.0861578741773546e-19,3.1354244929670715e-19,-0.00028935185400769114,1.3552527156068805e-20,-6.883823553295292e-20,-4.37322871194573e-35,1.0164395367051604e-20,-9.027796614315168e-36,-6.883823553295292e-20,8.756777110350002e-21,3.4606553688208144e-35,4.13359775848221e-05,-1.6780841026833513e-21,2.853229453704196e-34,0.0006944444612599909,3.18565064126735e-19,3.244942947575151e-19,-0.00019841270113829523,-0.00046296295477077365,-6.608470637012875e-20,-4.884743815967976e-35,3.3881317890172014e-21,-1.2789378536946488e-35,-6.608470637012875e-20,1.6940658945086007e-21,2.7083389842945504e-35,-1.6780841026833513e-21,0.00013227513409219682,2.7391004316763715e-34,0.0008680555620230734,1.4456028621814804e-18,1.4456028621814804e-18,-2.3929861760635783e-33,-0.0026041667442768812,-2.8912058794593256e-19,-2.255565192651691e-34,-5.194042323196985e-35,-5.771675540621879e-35,-2.8912058794593256e-19,4.588458972516406e-35,1.1836826332484744e-34,2.853229453704196e-34,2.7391004316763715e-34,0.0008680555620230734,6.0,6.0,8.0,5.0,0.031098827719688416,-0.006310232449322939,-0.006310232449322939,-0.004993386100977659,-0.007275132462382317,0.00037202381645329297,0.0005102040595375001,0.00039682540227659047,0.0005952381179668009,0.00037202381645329297,0.00039682540227659047,0.0005952381179668009,0.00023148147738538682,0.00046296295477077365,0.0004960317746736109,-0.006310232449322939,0.004570223856717348,0.0005102040595375001,0.00039682540227659047,0.0005952381179668009,-0.0005580357392318547,-0.0002040816325461492,-0.00015873015217948705,-0.0002380952355451882,-9.735692470983746e-19,-3.9244994796391954e-19,-5.664403070804539e-19,-5.803520374175239e-19,-4.405647177506564e-19,-1.4161008452493172e-18,-0.006310232449322939,0.0005102040595375001,0.004570223856717348,0.00039682540227659047,0.0005952381179668009,-1.630208481797696e-18,-0.0002040816325461492,-1.4823076576950256e-20,-1.4120628644317613e-33,-0.0005580357392318547,-0.00015873015217948705,-0.0002380952355451882,-5.813868403638277e-19,-4.405647177506564e-19,-1.4161008452493172e-18,-0.004993386100977659,0.00039682540227659047,0.00039682540227659047,0.0025840892922133207,0.00046296295477077365,-1.3201655751787594e-18,-7.84119935200738e-34,-0.00011337868636474013,-1.1435082311814515e-33,-1.131352191184063e-18,-0.00011337868636474013,-2.3200094663836152e-33,-0.00023148147738538682,-0.00013227513409219682,-6.22110034426747e-33,-0.007275132462382317,0.0005952381179668009,0.0005952381179668009,0.00046296295477077365,0.006613756529986858,-1.966177296765576e-18,-1.1678222298022566e-33,-1.0940545409938847e-33,-0.00029761905898340046,-1.6829571690747432e-18,-2.0289765342452023e-33,-0.00029761905898340046,-0.0,-0.00023148147738538682,-0.0009920635493472219,0.00037202381645329297,-0.0005580357392318547,-1.630208481797696e-18,-1.3201655751787594e-18,-1.966177296765576e-18,0.00011160714348079637,6.628969852802558e-20,7.365522489492744e-20,9.66724818667987e-20,1.9471385717449317e-19,7.552537686233327e-20,1.1328805883115137e-19,1.101411794376641e-19,8.811293967272215e-20,2.8322015354022696e-19,0.0005102040595375001,-0.0002040816325461492,-0.0002040816325461492,-7.84119935200738e-34,-1.1678222298022566e-33,6.628969852802558e-20,8.163265010807663e-05,4.374794220169298e-35,5.741917396035584e-35,1.1565141348594645e-34,4.48587298358942e-35,6.728809188398205e-35,6.541898124983398e-35,5.233518385192348e-35,1.6822023257981437e-34,0.00039682540227659047,-0.00015873015217948705,-1.4823076576950256e-20,-0.00011337868636474013,-1.0940545409938847e-33,7.365522489492744e-20,4.374794220169298e-35,4.535147309070453e-05,6.379908345366615e-35,1.8657446336251347e-34,4.235164736271502e-21,7.476454590001133e-35,8.470329472543003e-21,-0.0,1.8691137335960608e-34,0.0005952381179668009,-0.0002380952355451882,-1.4120628644317613e-33,-1.1435082311814515e-33,-0.00029761905898340046,9.66724818667987e-20,5.741917396035584e-35,6.379908345366615e-35,0.0001190476177725941,1.6865831085536203e-34,6.541898124983398e-35,9.812846613503246e-35,9.540267955441159e-35,7.632214479147298e-35,2.4532117107729966e-34,0.00037202381645329297,-9.735692470983746e-19,-0.0005580357392318547,-1.131352191184063e-18,-1.6829571690747432e-18,1.9471385717449317e-19,1.1565141348594645e-34,1.8657446336251347e-34,1.6865831085536203e-34,0.00011160714348079637,7.365522489492744e-20,9.66724818667987e-20,1.101411794376641e-19,8.811293967272215e-20,2.8322015354022696e-19,0.00039682540227659047,-3.9244994796391954e-19,-0.00015873015217948705,-0.00011337868636474013,-2.0289765342452023e-33,7.552537686233327e-20,4.48587298358942e-35,4.235164736271502e-21,6.541898124983398e-35,7.365522489492744e-20,4.535147309070453e-05,1.4046194367560379e-34,8.765991611568158e-21,-0.0,3.785685296541687e-34,0.0005952381179668009,-5.664403070804539e-19,-0.0002380952355451882,-2.3200094663836152e-33,-0.00029761905898340046,1.1328805883115137e-19,6.728809188398205e-35,7.476454590001133e-35,9.812846613503246e-35,9.66724818667987e-20,1.4046194367560379e-34,0.0001190476177725941,2.072026902627657e-34,1.6576215221021256e-34,5.328069112588621e-34,0.00023148147738538682,-5.803520374175239e-19,-5.813868403638277e-19,-0.00023148147738538682,-0.0,1.101411794376641e-19,6.541898124983398e-35,8.470329472543003e-21,9.540267955441159e-35,1.101411794376641e-19,8.765991611568158e-21,2.072026902627657e-34,3.3068783523049206e-05,1.312536874414789e-35,5.590000937198001e-34,0.00046296295477077365,-4.405647177506564e-19,-4.405647177506564e-19,-0.00013227513409219682,-0.00023148147738538682,8.811293967272215e-20,5.233518385192348e-35,-0.0,7.632214479147298e-35,8.811293967272215e-20,-0.0,1.6576215221021256e-34,1.312536874414789e-35,6.613756704609841e-05,4.4720006579229045e-34,0.0004960317746736109,-1.4161008452493172e-18,-1.4161008452493172e-18,-6.22110034426747e-33,-0.0009920635493472219,2.8322015354022696e-19,1.6822023257981437e-34,1.8691137335960608e-34,2.4532117107729966e-34,2.8322015354022696e-19,3.785685296541687e-34,5.328069112588621e-34,5.590000937198001e-34,4.4720006579229045e-34,0.00024801588733680546,6.0,6.0,8.0,6.0,0.026752252131700516,-0.0053293886594474316,-0.0053293886594474316,-0.004216270055621862,-0.0053293886594474316,0.0003100198518950492,0.00042517005931586027,0.0003306878206785768,0.00042517005931586027,0.0003100198518950492,0.0003306878206785768,0.00042517005931586027,0.00019290123600512743,0.0003306878206785768,0.0003100198518950492,-0.0053293886594474316,0.0038368646055459976,0.00042517005931586027,0.0003306878206785768,0.00042517005931586027,-0.0004650297632906586,-0.0001700680295471102,-0.00013227513409219682,-0.0001700680295471102,4.0565387019058553e-19,1.5100259630337947e-19,2.0230011151797598e-19,2.235315501708306e-19,1.6327376899181535e-19,4.0565387019058553e-19,-0.0053293886594474316,0.00042517005931586027,0.0038368646055459976,0.0003306878206785768,0.00042517005931586027,7.320313708595483e-19,-0.0001700680295471102,-6.341938018687944e-21,-3.6232852418458183e-34,-0.0004650297632906586,-0.00013227513409219682,-0.0001700680295471102,2.1278824469726553e-19,1.603091536764253e-19,4.0565387019058553e-19,-0.004216270055621862,0.0003306878206785768,0.0003306878206785768,0.0021691545844078064,0.0003306878206785768,6.064632859224673e-19,-3.00176946573116e-34,-9.448223863728344e-05,-3.00176946573116e-34,5.277910167419497e-19,-9.448223863728344e-05,-5.250644442487741e-34,-0.00019290123600512743,-9.448223863728344e-05,-9.894304928184125e-34,-0.0053293886594474316,0.00042517005931586027,0.00042517005931586027,0.0003306878206785768,0.0038368646055459976,7.320313708595483e-19,-3.6232852418458183e-34,5.929230630780102e-21,-0.0001700680295471102,6.30881347412303e-19,2.964615315390051e-21,-0.0001700680295471102,1.3552527156068805e-20,-0.00013227513409219682,-0.0004650297632906586,0.0003100198518950492,-0.0004650297632906586,7.320313708595483e-19,6.064632859224673e-19,7.320313708595483e-19,9.300595411332324e-05,-4.603451394374252e-20,-5.1149459578472325e-20,-4.603451394374252e-20,-8.11307727456474e-20,-3.1468907025972196e-20,-4.046002424229976e-20,-4.5892154867852436e-20,-3.1468907025972196e-20,-8.11307727456474e-20,0.00042517005931586027,-0.0001700680295471102,-0.0001700680295471102,-3.00176946573116e-34,-3.6232852418458183e-34,-4.603451394374252e-20,6.80272132740356e-05,2.531709478646482e-35,2.2785386742747965e-35,4.015674095316803e-35,1.5575947301657298e-35,2.0026217959273669e-35,2.2714923088461492e-35,1.5575947301657298e-35,4.015674095316803e-35,0.0003306878206785768,-0.00013227513409219682,-6.341938018687944e-21,-9.448223863728344e-05,5.929230630780102e-21,-5.1149459578472325e-20,2.531709478646482e-35,3.779289545491338e-05,2.531709478646482e-35,4.513898307157584e-35,1.8119823487532387e-21,2.2251353288081854e-35,1.6940658945086007e-21,-1.6940658945086007e-21,4.461860010245584e-35,0.00042517005931586027,-0.0001700680295471102,-3.6232852418458183e-34,-3.00176946573116e-34,-0.0001700680295471102,-4.603451394374252e-20,2.2785386742747965e-35,2.531709478646482e-35,6.80272132740356e-05,4.015674095316803e-35,1.5575947301657298e-35,2.0026217959273669e-35,2.2714923088461492e-35,1.5575947301657298e-35,4.015674095316803e-35,0.0003100198518950492,4.0565387019058553e-19,-0.0004650297632906586,5.277910167419497e-19,6.30881347412303e-19,-8.11307727456474e-20,4.015674095316803e-35,4.513898307157584e-35,4.015674095316803e-35,9.300595411332324e-05,-5.1149459578472325e-20,-4.603451394374252e-20,-4.5892154867852436e-20,-3.1468907025972196e-20,-8.11307727456474e-20,0.0003306878206785768,1.5100259630337947e-19,-0.00013227513409219682,-9.448223863728344e-05,2.964615315390051e-21,-3.1468907025972196e-20,1.5575947301657298e-35,1.8119823487532387e-21,1.5575947301657298e-35,-5.1149459578472325e-20,3.779289545491338e-05,3.9006894534507117e-35,4.763582494192651e-21,-8.470329472543003e-22,7.206949551201084e-35,0.00042517005931586027,2.0230011151797598e-19,-0.0001700680295471102,-5.250644442487741e-34,-0.0001700680295471102,-4.046002424229976e-20,2.0026217959273669e-35,2.2251353288081854e-35,2.0026217959273669e-35,-4.603451394374252e-20,3.9006894534507117e-35,6.80272132740356e-05,4.267921235487287e-35,2.926574561476997e-35,7.545075220674086e-35,0.00019290123600512743,2.235315501708306e-19,2.1278824469726553e-19,-0.00019290123600512743,1.3552527156068805e-20,-4.5892154867852436e-20,2.2714923088461492e-35,1.6940658945086007e-21,2.2714923088461492e-35,-4.5892154867852436e-20,4.763582494192651e-21,4.267921235487287e-35,2.7557318389881402e-05,-8.55023843166925e-22,8.006511280697677e-35,0.0003306878206785768,1.6327376899181535e-19,1.603091536764253e-19,-9.448223863728344e-05,-0.00013227513409219682,-3.1468907025972196e-20,1.5575947301657298e-35,-1.6940658945086007e-21,1.5575947301657298e-35,-3.1468907025972196e-20,-8.470329472543003e-22,2.926574561476997e-35,-8.55023843166925e-22,3.779289545491338e-05,5.490179081911e-35,0.0003100198518950492,4.0565387019058553e-19,4.0565387019058553e-19,-9.894304928184125e-34,-0.0004650297632906586,-8.11307727456474e-20,4.015674095316803e-35,4.461860010245584e-35,4.015674095316803e-35,-8.11307727456474e-20,7.206949551201084e-35,7.545075220674086e-35,8.006511280697677e-35,5.490179081911e-35,9.300595411332324e-05,6.0,6.0,8.0,7.0,0.02348305471241474,-0.004613601602613926,-0.004613601602613926,-0.003649376332759857,-0.004074546508491039,0.0002657313016243279,0.00036443150020204484,0.00028344671591185033,0.0003188775444868952,0.0002657313016243279,0.00028344671591185033,0.0003188775444868952,0.0001653439103392884,0.00024801588733680546,0.00020667989156208932,-0.004613601602613926,0.003306962549686432,0.00036443150020204484,0.00028344671591185033,0.0003188775444868952,-0.00039859695243649185,-0.00014577258843928576,-0.00011337868636474013,-0.00012755101488437504,3.4770332838452794e-19,1.3064344545585615e-19,1.668387364861599e-19,1.8546962269072438e-19,1.4004316404539077e-19,2.816928162379361e-19,-0.004613601602613926,0.00036443150020204484,0.003306962549686432,0.00028344671591185033,0.0003188775444868952,7.022514729403556e-19,-0.00014577258843928576,-4.069064203552083e-21,1.4933707137117822e-20,-0.00039859695243649185,-0.00011337868636474013,-0.00012755101488437504,1.8354616927259717e-19,1.4178708049650276e-19,2.8974831463328374e-19,-0.003649376332759857,0.00028344671591185033,0.00028344671591185033,0.0018693985184654593,0.00024801588733680546,5.075393089011788e-19,-4.3065126346687235e-34,-8.09847770142369e-05,4.475360214698428e-20,4.401059427034191e-19,-8.09847770142369e-05,4.404571325722362e-20,-0.0001653439103392884,-7.086167897796258e-05,4.71615798400887e-20,-0.004074546508491039,0.0003188775444868952,0.0003188775444868952,0.00024801588733680546,0.0024329177103936672,5.885970118719345e-19,-4.994293460979882e-34,3.2861352496105846e-20,-0.00010629251482896507,5.127344684371063e-19,3.1228287940598763e-20,-0.00010629251482896507,6.776263578034403e-21,-8.26719551696442e-05,-0.00024801588733680546,0.0002657313016243279,-0.00039859695243649185,7.022514729403556e-19,5.075393089011788e-19,5.885970118719345e-19,7.97193861217238e-05,-6.764255241985606e-20,-3.7579196506847646e-20,-4.932269581913432e-20,-6.95406669693753e-20,-2.6973348417808416e-20,-3.034501737393125e-20,-3.933613459025881e-20,-2.360167946168558e-20,-5.11369743211016e-20,0.00036443150020204484,-0.00014577258843928576,-0.00014577258843928576,-4.3065126346687235e-34,-4.994293460979882e-34,-6.764255241985606e-20,5.8309036830905825e-05,3.188625427848272e-35,4.1850709816705787e-35,5.900582156719596e-35,2.2887107469109588e-35,2.574799554401588e-35,3.337703136705241e-35,2.0026217959273669e-35,4.339013962922443e-35,0.00028344671591185033,-0.00011337868636474013,-4.069064203552083e-21,-8.09847770142369e-05,3.2861352496105846e-20,-3.7579196506847646e-20,3.188625427848272e-35,3.2393909350503236e-05,-1.0895039801593145e-20,2.7083389842945504e-35,1.1300323162723967e-21,3.798369676260241e-23,3.3881317890172014e-21,-1.6940658945086007e-21,3.2387779402785086e-23,0.0003188775444868952,-0.00012755101488437504,1.4933707137117822e-20,4.475360214698428e-20,-0.00010629251482896507,-4.932269581913432e-20,4.1850709816705787e-35,-1.0895039801593145e-20,4.251700738677755e-05,6.620384183831123e-35,8.939615378212038e-23,-5.082197683525802e-21,-2.1580573696785754e-22,-5.368510823703904e-21,-8.707099421569937e-21,0.0002657313016243279,3.4770332838452794e-19,-0.00039859695243649185,4.401059427034191e-19,5.127344684371063e-19,-6.95406669693753e-20,5.900582156719596e-35,2.7083389842945504e-35,6.620384183831123e-35,7.97193861217238e-05,-3.7579196506847646e-20,-4.932269581913432e-20,-3.933613459025881e-20,-2.360167946168558e-20,-5.11369743211016e-20,0.00028344671591185033,1.3064344545585615e-19,-0.00011337868636474013,-8.09847770142369e-05,3.1228287940598763e-20,-2.6973348417808416e-20,2.2887107469109588e-35,1.1300323162723967e-21,8.939615378212038e-23,-3.7579196506847646e-20,3.2393909350503236e-05,-1.075135594425327e-20,3.686241542550204e-21,-1.6940658945086007e-21,2.0859102969887238e-22,0.0003188775444868952,1.668387364861599e-19,-0.00012755101488437504,4.404571325722362e-20,-0.00010629251482896507,-3.034501737393125e-20,2.574799554401588e-35,3.798369676260241e-23,-5.082197683525802e-21,-4.932269581913432e-20,-1.075135594425327e-20,4.251700738677755e-05,7.755004413858267e-23,-5.949816038143379e-21,-1.1597835552914212e-20,0.0001653439103392884,1.8546962269072438e-19,1.8354616927259717e-19,-0.0001653439103392884,6.776263578034403e-21,-3.933613459025881e-20,3.337703136705241e-35,3.3881317890172014e-21,-2.1580573696785754e-22,-3.933613459025881e-20,3.686241542550204e-21,7.755004413858267e-23,2.362055965932086e-05,-2.2694089865788366e-21,-6.497401727666205e-22,0.00024801588733680546,1.4004316404539077e-19,1.4178708049650276e-19,-7.086167897796258e-05,-8.26719551696442e-05,-2.360167946168558e-20,2.0026217959273669e-35,-1.6940658945086007e-21,-5.368510823703904e-21,-2.360167946168558e-20,-1.6940658945086007e-21,-5.949816038143379e-21,-2.2694089865788366e-21,2.362055965932086e-05,-1.4281522076146642e-20,0.00020667989156208932,2.816928162379361e-19,2.8974831463328374e-19,4.71615798400887e-20,-0.00024801588733680546,-5.11369743211016e-20,4.339013962922443e-35,3.2387779402785086e-23,-8.707099421569937e-21,-5.11369743211016e-20,2.0859102969887238e-22,-1.1597835552914212e-20,-6.497401727666205e-22,-1.4281522076146642e-20,4.13359775848221e-05,6.0,6.0,8.0,8.0,0.020931752398610115,-0.004067903384566307,-0.004067903384566307,-0.0032173169311136007,-0.0032173169311136007,0.0002325148816453293,0.0003188775444868952,0.00024801588733680546,0.00024801588733680546,0.0002325148816453293,0.00024801588733680546,0.00024801588733680546,0.00014467592700384557,0.00019290123600512743,0.00014467592700384557,-0.004067903384566307,0.0029059930238872766,0.0003188775444868952,0.00024801588733680546,0.00024801588733680546,-0.00034877232974395156,-0.00012755101488437504,-9.920635056914762e-05,-9.920635056914762e-05,1.7148095163198992e-19,7.268315196585839e-20,7.164286894799639e-20,1.4270031374215544e-19,9.168606265091859e-20,1.4997558694940953e-19,-0.004067903384566307,0.0003188775444868952,0.0029059930238872766,0.00024801588733680546,0.00024801588733680546,4.66164768637042e-19,-0.00012755101488437504,-4.549884664245481e-20,-4.619193029172048e-20,-0.00034877232974395156,-9.920635056914762e-05,-9.920635056914762e-05,1.5367892625059772e-19,8.967501856074026e-20,1.5226386579176384e-19,-0.0032173169311136007,0.00024801588733680546,0.00024801588733680546,0.0016426130896434188,0.00019290123600512743,3.328586158646806e-19,-7.552537686233327e-20,-7.086167897796258e-05,-1.715055279434707e-20,2.738544010545953e-19,-7.086167897796258e-05,-1.6940658945086007e-20,-0.00014467592700384557,-5.5114636779762805e-05,1.1256532269563023e-20,-0.0032173169311136007,0.00024801588733680546,0.00024801588733680546,0.00019290123600512743,0.0016426130896434188,3.328586158646806e-19,-7.552537686233327e-20,-2.368007098059632e-20,-7.086167897796258e-05,2.738544010545953e-19,-2.2834482368239718e-20,-7.086167897796258e-05,-3.3881317890172014e-21,-5.5114636779762805e-05,-0.00014467592700384557,0.0002325148816453293,-0.00034877232974395156,4.66164768637042e-19,3.328586158646806e-19,3.328586158646806e-19,6.975446740398183e-05,1.3149507030564176e-21,1.2531367843110691e-20,1.2531367843110691e-20,-6.084807794364842e-20,-2.360167946168558e-20,-2.360167946168558e-20,-3.441911776647646e-20,-1.8356861624023548e-20,-3.441911776647646e-20,0.0003188775444868952,-0.00012755101488437504,-0.00012755101488437504,-7.552537686233327e-20,-7.552537686233327e-20,1.3149507030564176e-21,5.10204081365373e-05,1.510507569558408e-20,1.510507569558408e-20,5.310378040437969e-20,1.510507569558408e-20,1.510507569558408e-20,-2.0361510790676122e-35,-1.398493176903116e-35,-2.1113827175202386e-35,0.00024801588733680546,-9.920635056914762e-05,-4.549884664245481e-20,-7.086167897796258e-05,-2.368007098059632e-20,1.2531367843110691e-20,1.510507569558408e-20,2.8344671591185033e-05,8.356599408459065e-21,-6.018531076210112e-36,2.2934743686285178e-21,-8.314354758403001e-23,8.470329472543003e-21,8.470329472543003e-22,4.202005662318133e-24,0.00024801588733680546,-9.920635056914762e-05,-4.619193029172048e-20,-1.715055279434707e-20,-7.086167897796258e-05,1.2531367843110691e-20,1.510507569558408e-20,8.356599408459065e-21,2.8344671591185033e-05,-0.0,-1.327435808965846e-22,2.541098841762901e-21,-7.168018694081829e-23,-8.189617673932303e-22,6.3157982227583446e-21,0.0002325148816453293,1.7148095163198992e-19,-0.00034877232974395156,2.738544010545953e-19,2.738544010545953e-19,-6.084807794364842e-20,5.310378040437969e-20,-6.018531076210112e-36,-0.0,6.975446740398183e-05,1.2531367843110691e-20,1.2531367843110691e-20,-3.441911776647646e-20,-1.8356861624023548e-20,-3.441911776647646e-20,0.00024801588733680546,7.268315196585839e-20,-9.920635056914762e-05,-7.086167897796258e-05,-2.2834482368239718e-20,-2.360167946168558e-20,1.510507569558408e-20,2.2934743686285178e-21,-1.327435808965846e-22,1.2531367843110691e-20,2.8344671591185033e-05,8.308564771794169e-21,5.431654835141747e-21,1.2705494208814505e-21,-2.7101812434605064e-22,0.00024801588733680546,7.164286894799639e-20,-9.920635056914762e-05,-1.6940658945086007e-20,-7.086167897796258e-05,-2.360167946168558e-20,1.510507569558408e-20,-8.314354758403001e-23,2.541098841762901e-21,1.2531367843110691e-20,8.308564771794169e-21,2.8344671591185033e-05,-1.697514062323307e-22,-6.67895333183739e-22,5.937221324744335e-21,0.00014467592700384557,1.4270031374215544e-19,1.5367892625059772e-19,-0.00014467592700384557,-3.3881317890172014e-21,-3.441911776647646e-20,-2.0361510790676122e-35,8.470329472543003e-21,-7.168018694081829e-23,-3.441911776647646e-20,5.431654835141747e-21,-1.697514062323307e-22,2.066798879241105e-05,1.4783122097387132e-22,-5.934579764049774e-23,0.00019290123600512743,9.168606265091859e-20,8.967501856074026e-20,-5.5114636779762805e-05,-5.5114636779762805e-05,-1.8356861624023548e-20,-1.398493176903116e-35,8.470329472543003e-22,-8.189617673932303e-22,-1.8356861624023548e-20,1.2705494208814505e-21,-6.67895333183739e-22,1.4783122097387132e-22,1.5747040379210375e-05,-2.8971883824602587e-21,0.00014467592700384557,1.4997558694940953e-19,1.5226386579176384e-19,1.1256532269563023e-20,-0.00014467592700384557,-3.441911776647646e-20,-2.1113827175202386e-35,4.202005662318133e-24,6.3157982227583446e-21,-3.441911776647646e-20,-2.7101812434605064e-22,5.937221324744335e-21,-5.934579764049774e-23,-2.8971883824602587e-21,2.066798879241105e-05,6.0,7.0,3.0,3.0,0.08865582942962646,-0.021258503198623657,-0.018801964819431305,-0.03528911620378494,-0.03528911620378494,0.0014172336086630821,0.001700680237263441,0.003401360474526882,0.003401360474526882,0.001102292793802917,0.0029761905316263437,0.0029761905316263437,0.003968254197388887,0.0059523810632526875,0.003968254197388887,-0.021258503198623657,0.016298186033964157,0.001700680237263441,0.003401360474526882,0.003401360474526882,-0.002125850412994623,-0.0006802721181884408,-0.0013605442363768816,-0.0013605442363768816,1.734723475976807e-18,1.1655173354219173e-18,1.1655173354219173e-18,1.055406857309676e-17,3.500239163846207e-18,1.055406857309676e-17,-0.018801964819431305,0.001700680237263441,0.01199924387037754,0.0029761905316263437,0.0029761905316263437,2.2768245622195593e-18,-0.0005668934318237007,1.1467183021396315e-20,1.1467183021396315e-20,-0.0013227512827143073,-0.0009920635493472219,-0.0009920635493472219,-9.66023094215679e-33,-2.9637942942083806e-33,-9.66023094215679e-33,-0.03528911620378494,0.003401360474526882,0.0029761905316263437,0.07497165352106094,0.0059523810632526875,6.5197573516235465e-18,2.879912020664621e-19,-0.003401360474526882,4.424687324243886e-19,5.421010862427522e-20,-0.0029761905316263437,2.6736553427180906e-20,-0.02380952425301075,-0.0059523810632526875,2.643388161747331e-17,-0.03528911620378494,0.003401360474526882,0.0029761905316263437,0.0059523810632526875,0.07497165352106094,6.5052130349130266e-18,2.879912020664621e-19,4.424687324243886e-19,-0.003401360474526882,7.10335987280628e-20,2.6736553427180906e-20,-0.0029761905316263437,3.0461902130388057e-17,-0.0059523810632526875,-0.02380952425301075,0.0014172336086630821,-0.002125850412994623,2.2768245622195593e-18,6.5197573516235465e-18,6.5052130349130266e-18,0.00042517005931586027,2.710505431213761e-20,-5.421010862427522e-19,-5.421010862427522e-19,-3.0149789824671665e-19,-2.8387716759114135e-19,-2.8387716759114135e-19,-1.888134460332423e-18,-5.664403070804539e-19,-1.888134460332423e-18,0.001700680237263441,-0.0006802721181884408,-0.0005668934318237007,2.879912020664621e-19,2.879912020664621e-19,2.710505431213761e-20,0.00022675737272948027,-1.1519648082658485e-19,-1.1519648082658485e-19,-7.394816961639339e-20,-0.0,-0.0,-1.4444474582904269e-34,4.81482486096809e-35,-4.81482486096809e-35,0.003401360474526882,-0.0013605442363768816,1.1467183021396315e-20,-0.003401360474526882,4.424687324243886e-19,-5.421010862427522e-19,-1.1519648082658485e-19,0.0013605442363768816,-4.625710630787598e-20,3.4423282750107636e-21,2.5175125620777757e-19,2.397631069202184e-21,-1.1133961680370681e-18,-3.3401886592075693e-19,3.624686421928449e-33,0.003401360474526882,-0.0013605442363768816,1.1467183021396315e-20,4.424687324243886e-19,-0.003401360474526882,-5.421010862427522e-19,-1.1519648082658485e-19,-4.625710630787598e-20,0.0013605442363768816,3.4423282750107636e-21,2.397631069202184e-21,2.5175125620777757e-19,3.8507192919121895e-33,-3.3401886592075693e-19,-1.1133961680370681e-18,0.001102292793802917,1.734723475976807e-18,-0.0013227512827143073,5.421010862427522e-20,7.10335987280628e-20,-3.0149789824671665e-19,-7.394816961639339e-20,3.4423282750107636e-21,3.4423282750107636e-21,0.00022045854711905122,-2.710505431213761e-20,-2.710505431213761e-20,1.2828149646714469e-33,3.7137657052579983e-34,1.2457778009064252e-33,0.0029761905316263437,1.1655173354219173e-18,-0.0009920635493472219,-0.0029761905316263437,2.6736553427180906e-20,-2.8387716759114135e-19,-0.0,2.5175125620777757e-19,2.397631069202184e-21,-2.710505431213761e-20,0.0009920635493472219,-1.0910210164780397e-20,1.0329691505339392e-33,3.0557547325588947e-34,1.2556601268124905e-33,0.0029761905316263437,1.1655173354219173e-18,-0.0009920635493472219,2.6736553427180906e-20,-0.0029761905316263437,-2.8387716759114135e-19,-0.0,2.397631069202184e-21,2.5175125620777757e-19,-2.710505431213761e-20,-1.0910210164780397e-20,0.0009920635493472219,1.2556601268124905e-33,3.0557547325588947e-34,1.0329691505339392e-33,0.003968254197388887,1.055406857309676e-17,-9.66023094215679e-33,-0.02380952425301075,3.0461902130388057e-17,-1.888134460332423e-18,-1.4444474582904269e-34,-1.1133961680370681e-18,3.8507192919121895e-33,1.2828149646714469e-33,1.0329691505339392e-33,1.2556601268124905e-33,0.011904762126505375,-4.028020099324441e-18,-1.3216940808736655e-17,0.0059523810632526875,3.500239163846207e-18,-2.9637942942083806e-33,-0.0059523810632526875,-0.0059523810632526875,-5.664403070804539e-19,4.81482486096809e-35,-3.3401886592075693e-19,-3.3401886592075693e-19,3.7137657052579983e-34,3.0557547325588947e-34,3.0557547325588947e-34,-4.028020099324441e-18,0.0059523810632526875,7.063065070775227e-33,0.003968254197388887,1.055406857309676e-17,-9.66023094215679e-33,2.643388161747331e-17,-0.02380952425301075,-1.888134460332423e-18,-4.81482486096809e-35,3.624686421928449e-33,-1.1133961680370681e-18,1.2457778009064252e-33,1.2556601268124905e-33,1.0329691505339392e-33,-1.3216940808736655e-17,7.063065070775227e-33,0.011904762126505375,6.0,7.0,3.0,4.0,0.07158683240413666,-0.01645408198237419,-0.014547902159392834,-0.027359694242477417,-0.022363945841789246,0.0010629252064973116,0.0012755101779475808,0.0025510203558951616,0.0020408162381500006,0.0008267195662483573,0.0022321429569274187,0.0017857142956927419,0.0029761905316263437,0.0035714285913854837,0.0019841270986944437,-0.01645408198237419,0.012427721172571182,0.0012755101779475808,0.0025510203558951616,0.0020408162381500006,-0.0015943878097459674,-0.0005102040595375001,-0.0010204081190750003,-0.0008163265301845968,9.486769009248164e-19,9.215718466126788e-19,8.538092108323347e-19,7.915551016232263e-18,1.6982945451975483e-18,3.7718617023611634e-18,-0.014547902159392834,0.0012755101779475808,0.009148242883384228,0.0022321429569274187,0.0017857142956927419,2.222614453595284e-18,-0.00042517005931586027,5.1755081802657585e-20,5.76398773249071e-20,-0.0009920635493472219,-0.0007440476329065859,-0.0005952381179668009,-9.920273802445697e-33,-2.3554969061509708e-33,-4.607947773456952e-33,-0.027359694242477417,0.0025510203558951616,0.0022321429569274187,0.05712159723043442,0.0035714285913854837,4.842389752140554e-18,-1.8634724839594607e-19,-0.0025510203558951616,-2.7340012380193884e-19,-1.0842021724855044e-19,-0.0022321429569274187,-5.517661100890661e-20,-0.01785714365541935,-0.0035714285913854837,9.251858814269842e-18,-0.022363945841789246,0.0020408162381500006,0.0017857142956927419,0.0035714285913854837,0.028798185288906097,3.63207727782644e-18,-2.371692252312041e-20,1.2844894821545004e-19,-0.0013605442363768816,5.3264108040372926e-20,-5.517661100890661e-20,-0.0011904762359336019,1.6294599453818815e-17,-0.0023809524718672037,-0.0059523810632526875,0.0010629252064973116,-0.0015943878097459674,2.222614453595284e-18,4.842389752140554e-18,3.63207727782644e-18,0.0003188775444868952,-2.168404344971009e-19,-2.981555974335137e-19,-2.981555974335137e-19,-2.0333960612931665e-19,-2.1672771821394347e-19,-1.711637924905612e-19,-1.4161008452493172e-18,-3.398641894181512e-19,-6.608470507765904e-19,0.0012755101779475808,-0.0005102040595375001,-0.00042517005931586027,-1.8634724839594607e-19,-2.371692252312041e-20,-2.168404344971009e-19,0.0001700680295471102,-6.776263578034403e-21,-6.776263578034403e-21,2.2465903935100587e-20,6.776263578034403e-20,1.3552527156068805e-20,9.14816723583937e-34,2.1666711874356403e-34,3.851859888774472e-34,0.0025510203558951616,-0.0010204081190750003,5.1755081802657585e-20,-0.0025510203558951616,1.2844894821545004e-19,-2.981555974335137e-19,-6.776263578034403e-21,0.0010204081190750003,2.792180146297996e-20,7.025639650544513e-22,-4.046002424229976e-20,7.192892803709769e-22,-8.350471518771953e-19,-2.0041132213739357e-19,1.0958108030224102e-33,0.0020408162381500006,-0.0008163265301845968,5.76398773249071e-20,-2.7340012380193884e-19,-0.0013605442363768816,-2.981555974335137e-19,-6.776263578034403e-21,2.792180146297996e-20,0.0005442177061922848,-3.9644362564062992e-22,7.192892803709769e-22,-2.5894414093355167e-20,1.9903901974954915e-33,1.3429184186979492e-19,-3.1175093118628214e-19,0.0008267195662483573,9.486769009248164e-19,-0.0009920635493472219,-1.0842021724855044e-19,5.3264108040372926e-20,-2.0333960612931665e-19,2.2465903935100587e-20,7.025639650544513e-22,-3.9644362564062992e-22,0.0001653439103392884,2.710505431213761e-20,-1.3552527156068805e-20,9.206612263949277e-34,2.207063882477031e-34,4.422888412110053e-34,0.0022321429569274187,9.215718466126788e-19,-0.0007440476329065859,-0.0022321429569274187,-5.517661100890661e-20,-2.1672771821394347e-19,6.776263578034403e-20,-4.046002424229976e-20,7.192892803709769e-22,2.710505431213761e-20,0.0007440476329065859,1.7792797147683408e-20,9.553740337521907e-34,2.3086477165521928e-34,4.427881508036163e-34,0.0017857142956927419,8.538092108323347e-19,-0.0005952381179668009,-5.517661100890661e-20,-0.0011904762359336019,-1.711637924905612e-19,1.3552527156068805e-20,7.192892803709769e-22,-2.5894414093355167e-20,-1.3552527156068805e-20,1.7792797147683408e-20,0.00039682540227659047,7.651647214517439e-34,1.7158525735059846e-34,3.595142942814423e-34,0.0029761905316263437,7.915551016232263e-18,-9.920273802445697e-33,-0.01785714365541935,1.6294599453818815e-17,-1.4161008452493172e-18,9.14816723583937e-34,-8.350471518771953e-19,1.9903901974954915e-33,9.206612263949277e-34,9.553740337521907e-34,7.651647214517439e-34,0.008928571827709675,-2.4168120595946647e-18,-4.625929407134921e-18,0.0035714285913854837,1.6982945451975483e-18,-2.3554969061509708e-33,-0.0035714285913854837,-0.0023809524718672037,-3.398641894181512e-19,2.1666711874356403e-34,-2.0041132213739357e-19,1.3429184186979492e-19,2.207063882477031e-34,2.3086477165521928e-34,1.7158525735059846e-34,-2.4168120595946647e-18,0.0023809524718672037,1.8241940307304362e-33,0.0019841270986944437,3.7718617023611634e-18,-4.607947773456952e-33,9.251858814269842e-18,-0.0059523810632526875,-6.608470507765904e-19,3.851859888774472e-34,1.0958108030224102e-33,-3.1175093118628214e-19,4.422888412110053e-34,4.427881508036163e-34,3.595142942814423e-34,-4.625929407134921e-18,1.8241940307304362e-33,0.0019841270986944437,6.0,7.0,3.0,5.0,0.06013794243335724,-0.01343537401407957,-0.011876417323946953,-0.022363945841789246,-0.015476190485060215,0.0008503401186317205,0.0010204081190750003,0.0020408162381500006,0.0013605442363768816,0.0006613756413571537,0.0017857142956927419,0.0011904762359336019,0.0023809524718672037,0.0023809524718672037,0.0011337868636474013,-0.01343537401407957,0.010051020421087742,0.0010204081190750003,0.0020408162381500006,0.0013605442363768816,-0.0012755101779475808,-0.0004081632650922984,-0.0008163265301845968,-0.0005442177061922848,9.75781955236954e-19,5.705134478142416e-19,5.554732880252845e-19,4.1573100834277045e-18,7.874888678475535e-19,1.872891382799449e-18,-0.011876417323946953,0.0010204081190750003,0.007397959008812904,0.0017857142956927419,0.0011904762359336019,1.7076184216646695e-18,-0.0003401360590942204,-2.578695234579202e-19,1.677052469519004e-20,-0.0007936508045531809,-0.0005952381179668009,-0.00039682540227659047,-1.5860329011843016e-18,-2.64338825480515e-19,-2.4763922757002198e-33,-0.022363945841789246,0.0020408162381500006,0.0017857142956927419,0.046173468232154846,0.0023809524718672037,4.370860820628682e-18,-6.003764127615105e-20,-0.0020408162381500006,-2.9275948470752404e-19,-0.0,-0.0017857142956927419,4.0657581468206416e-20,-0.014285714365541935,-0.0023809524718672037,-2.2657612283218157e-18,-0.015476190485060215,0.0013605442363768816,0.0011904762359336019,0.0023809524718672037,0.01454081665724516,2.4936649967166602e-18,-5.3577622417227595e-20,-4.0519623251669057e-19,-0.0006802721181884408,1.5543151840461872e-20,-2.2368124401230857e-19,-0.0005952381179668009,-4.5315224566436314e-18,-0.0011904762359336019,-0.0022675737272948027,0.0008503401186317205,-0.0012755101779475808,1.7076184216646695e-18,4.370860820628682e-18,2.4936649967166602e-18,0.00025510202976875007,-1.3552527156068805e-19,-4.336808689942018e-19,-2.710505431213761e-19,-1.644039562025042e-19,-1.699320947090756e-19,-1.1328805883115137e-19,-1.1328806141609079e-18,-2.2657611766230274e-19,-3.2368019393839806e-19,0.0010204081190750003,-0.0004081632650922984,-0.0003401360590942204,-6.003764127615105e-20,-5.3577622417227595e-20,-1.3552527156068805e-19,0.0001360544265480712,7.752024892530134e-21,5.168016460387828e-21,-5.114516534787044e-20,1.3552527156068805e-20,1.3552527156068805e-20,6.74843592625398e-34,1.3751295666128943e-34,1.878483938857801e-34,0.0020408162381500006,-0.0008163265301845968,-2.578695234579202e-19,-0.0020408162381500006,-4.0519623251669057e-19,-4.336808689942018e-19,7.752024892530134e-21,0.0008163265301845968,7.051279159723263e-20,2.6030146904608735e-34,2.38489457187627e-19,1.7905129951725083e-34,1.5070930907744114e-18,2.2891424706126044e-19,7.423411670158349e-34,0.0013605442363768816,-0.0005442177061922848,1.677052469519004e-20,-2.9275948470752404e-19,-0.0006802721181884408,-2.710505431213761e-19,5.168016460387828e-21,7.051279159723263e-20,0.0002721088530961424,1.775466667481983e-34,2.2268564981977415e-34,-1.484528282210561e-20,1.06180522082106e-33,5.823874962604696e-20,-1.2724528410191175e-19,0.0006613756413571537,9.75781955236954e-19,-0.0007936508045531809,-0.0,1.5543151840461872e-20,-1.644039562025042e-19,-5.114516534787044e-20,2.6030146904608735e-34,1.775466667481983e-34,0.00013227513409219682,-1.3552527156068805e-20,-1.3552527156068805e-20,7.0728259901553714e-34,1.3937257954074068e-34,2.076286003350724e-34,0.0017857142956927419,5.705134478142416e-19,-0.0005952381179668009,-0.0017857142956927419,-2.2368124401230857e-19,-1.699320947090756e-19,1.3552527156068805e-20,2.38489457187627e-19,2.2268564981977415e-34,-1.3552527156068805e-20,0.0005952381179668009,-1.3552527156068805e-20,1.5860329011843016e-18,2.64338825480515e-19,4.671643679730685e-34,0.0011904762359336019,5.554732880252845e-19,-0.00039682540227659047,4.0657581468206416e-20,-0.0005952381179668009,-1.1328805883115137e-19,1.3552527156068805e-20,1.7905129951725083e-34,-1.484528282210561e-20,-1.3552527156068805e-20,-1.3552527156068805e-20,0.00019841270113829523,4.882669252109767e-34,9.02453702817341e-35,1.469177035490221e-34,0.0023809524718672037,4.1573100834277045e-18,-1.5860329011843016e-18,-0.014285714365541935,-4.5315224566436314e-18,-1.1328806141609079e-18,6.74843592625398e-34,1.5070930907744114e-18,1.06180522082106e-33,7.0728259901553714e-34,1.5860329011843016e-18,4.882669252109767e-34,0.0071428571827709675,2.054047624696334e-33,1.1328806141609079e-18,0.0023809524718672037,7.874888678475535e-19,-2.64338825480515e-19,-0.0023809524718672037,-0.0011904762359336019,-2.2657611766230274e-19,1.3751295666128943e-34,2.2891424706126044e-19,5.823874962604696e-20,1.3937257954074068e-34,2.64338825480515e-19,9.02453702817341e-35,2.054047624696334e-33,0.0011904762359336019,2.3764847608541777e-34,0.0011337868636474013,1.872891382799449e-18,-2.4763922757002198e-33,-2.2657612283218157e-18,-0.0022675737272948027,-3.2368019393839806e-19,1.878483938857801e-34,7.423411670158349e-34,-1.2724528410191175e-19,2.076286003350724e-34,4.671643679730685e-34,1.469177035490221e-34,1.1328806141609079e-18,2.3764847608541777e-34,0.0005668934318237007,6.0,7.0,3.0,6.0,0.051889870315790176,-0.011358114890754223,-0.010038738138973713,-0.018920067697763443,-0.011358114890754223,0.0007086168043315411,0.0008503401186317205,0.001700680237263441,0.0009718172950670123,0.0005511463969014585,0.0014880952658131719,0.0008503401186317205,0.0019841270986944437,0.001700680237263441,0.0007086168043315411,-0.011358114890754223,0.008440637961030006,0.0008503401186317205,0.001700680237263441,0.0009718172950670123,-0.0010629252064973116,-0.0003401360590942204,-0.0006802721181884408,-0.00038872691220603883,8.402566836762659e-19,5.625603647184857e-19,2.754168935329197e-19,5.27703428654838e-18,8.076539285191595e-19,7.185635780174779e-19,-0.010038738138973713,0.0008503401186317205,0.006212207023054361,0.0014880952658131719,0.0008503401186317205,1.1655173354219173e-18,-0.00028344671591185033,8.411484942365232e-21,3.3881317890172014e-20,-0.0006613756413571537,-0.0004960317746736109,-0.00028344671591185033,-3.827785764469631e-33,1.3552527156068805e-20,-2.0534409739807991e-19,-0.018920067697763443,0.001700680237263441,0.0014880952658131719,0.038761336356401443,0.001700680237263441,3.4005419797473344e-18,1.1657100943540363e-19,-0.001700680237263441,-6.625787792383643e-20,2.710505431213761e-20,-0.0014880952658131719,3.149862575130015e-21,-0.011904762126505375,-0.001700680237263441,2.5800509836031762e-18,-0.011358114890754223,0.0009718172950670123,0.0008503401186317205,0.001700680237263441,0.008440637961030006,1.6263032587282567e-18,2.6125013307324198e-20,1.290636468081535e-19,-0.00038872691220603883,3.324054372112752e-20,1.3552527156068805e-20,-0.0003401360590942204,8.331842894389375e-18,-0.0006802721181884408,-0.0010629252064973116,0.0007086168043315411,-0.0010629252064973116,1.1655173354219173e-18,3.4005419797473344e-18,1.6263032587282567e-18,0.00021258502965793014,-0.0,-2.710505431213761e-19,-1.3552527156068805e-19,-1.481729277501092e-19,-1.4161007677011348e-19,-8.092004848459951e-20,-9.440672301662115e-19,-1.6184009696919903e-19,-1.8391235179001674e-19,0.0008503401186317205,-0.0003401360590942204,-0.00028344671591185033,1.1657100943540363e-19,2.6125013307324198e-20,-0.0,0.00011337868636474013,-5.360998585869373e-20,-3.278212733423402e-20,-3.0197821230162293e-20,6.776263578034403e-21,2.371692252312041e-20,4.2036814449669956e-35,-1.1499325127425109e-21,-2.6112773215301044e-21,0.001700680237263441,-0.0006802721181884408,8.411484942365232e-21,-0.001700680237263441,1.290636468081535e-19,-2.710505431213761e-19,-5.360998585869373e-20,0.0006802721181884408,-1.345187446204016e-20,1.8958372890061853e-34,1.2561347647319483e-19,9.328723168125674e-35,-5.566980840185341e-19,-9.543395984525954e-20,3.6713039564881683e-34,0.0009718172950670123,-0.00038872691220603883,3.3881317890172014e-20,-6.625787792383643e-20,-0.00038872691220603883,-1.3552527156068805e-19,-3.278212733423402e-20,-1.345187446204016e-20,0.00015549076488241553,-1.5042582361864413e-21,-1.8090020701186372e-22,2.32130305895821e-20,3.8872909415471863e-35,4.0172107227994484e-20,8.327179405192166e-20,0.0005511463969014585,8.402566836762659e-19,-0.0006613756413571537,2.710505431213761e-20,3.324054372112752e-20,-1.481729277501092e-19,-3.0197821230162293e-20,1.8958372890061853e-34,-1.5042582361864413e-21,0.00011022927355952561,-1.3552527156068805e-20,-6.776263578034403e-21,6.025171700937296e-34,-2.6831757957497282e-21,2.9732654718275e-22,0.0014880952658131719,5.625603647184857e-19,-0.0004960317746736109,-0.0014880952658131719,1.3552527156068805e-20,-1.4161007677011348e-19,6.776263578034403e-21,1.2561347647319483e-19,-1.8090020701186372e-22,-1.3552527156068805e-20,0.0004960317746736109,-3.3881317890172014e-21,4.968692020538438e-34,-2.5158599376088386e-22,-4.946490080840151e-22,0.0008503401186317205,2.754168935329197e-19,-0.00028344671591185033,3.149862575130015e-21,-0.0003401360590942204,-8.092004848459951e-20,2.371692252312041e-20,9.328723168125674e-35,2.32130305895821e-20,-6.776263578034403e-21,-3.3881317890172014e-21,0.00011337868636474013,-1.5509815699916152e-34,2.8058131975479923e-21,8.417372464998564e-20,0.0019841270986944437,5.27703428654838e-18,-3.827785764469631e-33,-0.011904762126505375,8.331842894389375e-18,-9.440672301662115e-19,4.2036814449669956e-35,-5.566980840185341e-19,3.8872909415471863e-35,6.025171700937296e-34,4.968692020538438e-34,-1.5509815699916152e-34,0.0059523810632526875,-1.8413805577497008e-18,-1.2980923639303584e-18,0.001700680237263441,8.076539285191595e-19,1.3552527156068805e-20,-0.001700680237263441,-0.0006802721181884408,-1.6184009696919903e-19,-1.1499325127425109e-21,-9.543395984525954e-20,4.0172107227994484e-20,-2.6831757957497282e-21,-2.5158599376088386e-22,2.8058131975479923e-21,-1.8413805577497008e-18,0.0006802721181884408,7.047123223380038e-21,0.0007086168043315411,7.185635780174779e-19,-2.0534409739807991e-19,2.5800509836031762e-18,-0.0010629252064973116,-1.8391235179001674e-19,-2.6112773215301044e-21,3.6713039564881683e-34,8.327179405192166e-20,2.9732654718275e-22,-4.946490080840151e-22,8.417372464998564e-20,-1.2980923639303584e-18,7.047123223380038e-21,0.00021258502965793014,6.0,7.0,3.0,7.0,0.045651793479919434,-0.009839650243520737,-0.00869574025273323,-0.01639941707253456,-0.00869574025273323,0.0006073858239687979,0.0007288630004040897,0.0014577260008081794,0.0007288630004040897,0.0004724111931864172,0.0012755101779475808,0.0006377550889737904,0.001700680237263441,0.0012755101779475808,0.0004724111931864172,-0.009839650243520737,0.007276481948792934,0.0007288630004040897,0.0014577260008081794,0.0007288630004040897,-0.0009110787068493664,-0.0002915451768785715,-0.000583090353757143,-0.0002915451768785715,5.285485590866834e-19,7.426089429425701e-19,2.486869139297866e-19,4.5231720683599086e-18,7.919942621501884e-19,5.425213456927174e-19,-0.00869574025273323,0.0007288630004040897,0.005355118308216333,0.0012755101779475808,0.0006377550889737904,1.3010426069826053e-18,-0.00024295432376675308,4.979971084511319e-20,-6.776263578034403e-21,-0.0005668934318237007,-0.00042517005931586027,-0.00021258502965793014,-5.4172712258942815e-33,-1.3552527156068805e-20,9.747394233218016e-20,-0.01639941707253456,0.0014577260008081794,0.0012755101779475808,0.03340622037649155,0.0012755101779475808,2.8999779747590856e-18,1.3747479409280776e-19,-0.0014577260008081794,9.593219399265496e-20,-0.0,-0.0012755101779475808,-1.1688619432935474e-20,-0.010204081423580647,-0.0012755101779475808,-8.158084817928604e-19,-0.00869574025273323,0.0007288630004040897,0.0006377550889737904,0.0012755101779475808,0.005355118308216333,1.3010426069826053e-18,-8.009576946653896e-21,5.3672715875928515e-20,-0.00024295432376675308,-3.546752153306697e-21,-0.0,-0.00021258502965793014,-2.4545747157140886e-18,-0.00042517005931586027,-0.0005668934318237007,0.0006073858239687979,-0.0009110787068493664,1.3010426069826053e-18,2.8999779747590856e-18,1.3010426069826053e-18,0.00018221575010102242,-1.2197274440461925e-19,-1.8973538018496328e-19,-1.2197274440461925e-19,-1.1911287083429372e-19,-1.21380069495725e-19,-6.06900347478625e-20,-8.092004460719039e-19,-1.21380069495725e-19,-1.1910237598027196e-19,0.0007288630004040897,-0.0002915451768785715,-0.00024295432376675308,1.3747479409280776e-19,-8.009576946653896e-21,-1.2197274440461925e-19,9.718172805150971e-05,-1.0376488030401895e-20,-4.34852725428248e-21,2.445411170114135e-20,-3.7269449679189215e-20,8.470329472543003e-21,5.282628449912166e-34,9.15905628720535e-23,-1.0187206851536993e-21,0.0014577260008081794,-0.000583090353757143,4.979971084511319e-20,-0.0014577260008081794,5.3672715875928515e-20,-1.8973538018496328e-19,-1.0376488030401895e-20,0.000583090353757143,7.161102087882596e-21,1.1247129948667647e-34,-2.3858489961314885e-20,6.281841810794304e-35,-4.771697863016006e-19,-7.157547311511892e-20,7.673627122167893e-35,0.0007288630004040897,-0.0002915451768785715,-6.776263578034403e-21,9.593219399265496e-20,-0.00024295432376675308,-1.2197274440461925e-19,-4.34852725428248e-21,7.161102087882596e-21,9.718172805150971e-05,-1.7985802456840324e-21,-1.3913641500918706e-23,9.78408857911398e-21,5.906197438132176e-34,-3.7931068153435193e-20,1.899766325804932e-20,0.0004724111931864172,5.285485590866834e-19,-0.0005668934318237007,-0.0,-3.546752153306697e-21,-1.1911287083429372e-19,2.445411170114135e-20,1.1247129948667647e-34,-1.7985802456840324e-21,9.448223863728344e-05,-0.0,6.776263578034403e-21,5.110573270327727e-34,2.137113049536085e-22,-3.479841804362967e-21,0.0012755101779475808,7.426089429425701e-19,-0.00042517005931586027,-0.0012755101779475808,-0.0,-1.21380069495725e-19,-3.7269449679189215e-20,-2.3858489961314885e-20,-1.3913641500918706e-23,-0.0,0.00042517005931586027,-0.0,5.389071759266528e-34,2.458076444281251e-22,-3.2465163502143647e-23,0.0006377550889737904,2.486869139297866e-19,-0.00021258502965793014,-1.1688619432935474e-20,-0.00021258502965793014,-6.06900347478625e-20,8.470329472543003e-21,6.281841810794304e-35,9.78408857911398e-21,6.776263578034403e-21,-0.0,7.086167897796258e-05,1.6512334449893757e-34,3.896206477645158e-21,-2.4091901912484023e-20,0.001700680237263441,4.5231720683599086e-18,-5.4172712258942815e-33,-0.010204081423580647,-2.4545747157140886e-18,-8.092004460719039e-19,5.282628449912166e-34,-4.771697863016006e-19,5.906197438132176e-34,5.110573270327727e-34,5.389071759266528e-34,1.6512334449893757e-34,0.005102040711790323,5.537048590113303e-34,4.090957945688128e-19,0.0012755101779475808,7.919942621501884e-19,-1.3552527156068805e-20,-0.0012755101779475808,-0.00042517005931586027,-1.21380069495725e-19,9.15905628720535e-23,-7.157547311511892e-20,-3.7931068153435193e-20,2.137113049536085e-22,2.458076444281251e-22,3.896206477645158e-21,5.537048590113303e-34,0.00042517005931586027,-7.6190336976617315e-22,0.0004724111931864172,5.425213456927174e-19,9.747394233218016e-20,-8.158084817928604e-19,-0.0005668934318237007,-1.1910237598027196e-19,-1.0187206851536993e-21,7.673627122167893e-35,1.899766325804932e-20,-3.479841804362967e-21,-3.2465163502143647e-23,-2.4091901912484023e-20,4.090957945688128e-19,-7.6190336976617315e-22,9.448223863728344e-05,6.0,7.0,3.0,8.0,0.04076318070292473,-0.0086805559694767,-0.007670776452869177,-0.014473497867584229,-0.0068735829554498196,0.0005314626032486558,0.0006377550889737904,0.0012755101779475808,0.0005668934318237007,0.00041335978312417865,0.0011160714784637094,0.0004960317746736109,0.0014880952658131719,0.0009920635493472219,0.0003306878206785768,-0.0086805559694767,0.006395266391336918,0.0006377550889737904,0.0012755101779475808,0.0005668934318237007,-0.0007971939048729837,-0.00025510202976875007,-0.0005102040595375001,-0.00022675737272948027,5.743138774398282e-19,5.310378040437969e-19,2.605807630119276e-19,3.540251958026928e-18,4.720336150831057e-19,3.594006703723993e-19,-0.007670776452869177,0.0006377550889737904,0.004706396255642176,0.0011160714784637094,0.0004960317746736109,1.1316764459841838e-18,-0.00021258502965793014,-1.0700072326539224e-33,3.3881317890172014e-20,-0.0004960317746736109,-0.00037202381645329297,-0.0001653439103392884,-5.464826217198782e-33,1.4785967171255163e-34,7.012793289254527e-20,-0.014473497867584229,0.0012755101779475808,0.0011160714784637094,0.02935444936156273,0.0009920635493472219,2.4350671085330974e-18,-1.2013222575972571e-33,-0.0012755101779475808,9.440671784674232e-20,-0.0,-0.0011160714784637094,-6.856623191680382e-34,-0.008928571827709675,-0.0009920635493472219,1.1014117685272467e-18,-0.0068735829554498196,0.0005668934318237007,0.0004960317746736109,0.0009920635493472219,0.0036173199769109488,9.746186291029747e-19,-6.900058548014101e-22,9.440671784674232e-20,-0.0001619695540284738,1.3817914807791946e-20,-0.0,-0.00014172335795592517,5.0058038316437734e-18,-0.00028344671591185033,-0.0003306878206785768,0.0005314626032486558,-0.0007971939048729837,1.1316764459841838e-18,2.4350671085330974e-18,9.746186291029747e-19,0.0001594387722434476,-9.864539163826864e-20,-1.479680842262287e-19,-7.515839301369529e-20,-1.022739486422032e-19,-1.0620756080875938e-19,-4.720335892337116e-20,-7.080504226246586e-19,-9.440671784674232e-20,-7.867226918051762e-20,0.0006377550889737904,-0.00025510202976875007,-0.00021258502965793014,-1.2013222575972571e-33,-6.900058548014101e-22,-9.864539163826864e-20,8.50340147735551e-05,9.168815758384273e-35,-2.397262967771146e-22,-2.0328790734103208e-20,-0.0,1.6940658945086007e-21,4.3429070417961355e-34,2.9577280316330423e-35,-5.009459103996554e-22,0.0012755101779475808,-0.0005102040595375001,-1.0700072326539224e-33,-0.0012755101779475808,9.440671784674232e-20,-1.479680842262287e-19,9.168815758384273e-35,0.0005102040595375001,-3.7762688431166636e-20,9.52419616964166e-35,9.856654441058012e-35,4.874442743158305e-35,6.571102960705341e-34,8.761470805597739e-35,6.640737225667138e-35,0.0005668934318237007,-0.00022675737272948027,3.3881317890172014e-20,9.440671784674232e-20,-0.0001619695540284738,-7.515839301369529e-20,-2.397262967771146e-22,-3.7762688431166636e-20,6.478781870100647e-05,-5.593614012191824e-22,2.26683682316279e-35,-8.470329472543003e-21,1.5722444720058153e-34,-4.828070983345178e-35,1.0132431783401105e-20,0.00041335978312417865,5.743138774398282e-19,-0.0004960317746736109,-0.0,1.3817914807791946e-20,-1.022739486422032e-19,-2.0328790734103208e-20,9.52419616964166e-35,-5.593614012191824e-22,8.26719551696442e-05,-0.0,-3.3881317890172014e-21,4.453610140639786e-34,-6.717543412399986e-36,6.6843599951551575e-22,0.0011160714784637094,5.310378040437969e-19,-0.00037202381645329297,-0.0011160714784637094,-0.0,-1.0620756080875938e-19,-0.0,9.856654441058012e-35,2.26683682316279e-35,-0.0,0.00037202381645329297,-0.0,4.6594020080928245e-34,-0.0,-3.529649224689872e-36,0.0004960317746736109,2.605807630119276e-19,-0.0001653439103392884,-6.856623191680382e-34,-0.00014172335795592517,-4.720335892337116e-20,1.6940658945086007e-21,4.874442743158305e-35,-8.470329472543003e-21,-3.3881317890172014e-21,-0.0,4.724111931864172e-05,3.5583045110630873e-34,-4.224561966934068e-35,-2.0920115012153518e-20,0.0014880952658131719,3.540251958026928e-18,-5.464826217198782e-33,-0.008928571827709675,5.0058038316437734e-18,-7.080504226246586e-19,4.3429070417961355e-34,6.571102960705341e-34,1.5722444720058153e-34,4.453610140639786e-34,4.6594020080928245e-34,3.5583045110630873e-34,0.004464285913854837,-1.1508629002923513e-18,-5.507058842636234e-19,0.0009920635493472219,4.720336150831057e-19,1.4785967171255163e-34,-0.0009920635493472219,-0.00028344671591185033,-9.440671784674232e-20,2.9577280316330423e-35,8.761470805597739e-35,-4.828070983345178e-35,-6.717543412399986e-36,-0.0,-4.224561966934068e-35,-1.1508629002923513e-18,0.00028344671591185033,4.6910882963181417e-35,0.0003306878206785768,3.594006703723993e-19,7.012793289254527e-20,1.1014117685272467e-18,-0.0003306878206785768,-7.867226918051762e-20,-5.009459103996554e-22,6.640737225667138e-35,1.0132431783401105e-20,6.6843599951551575e-22,-3.529649224689872e-36,-2.0920115012153518e-20,-5.507058842636234e-19,4.6910882963181417e-35,4.724111931864172e-05,6.0,7.0,4.0,3.0,0.07158683240413666,-0.01645408198237419,-0.014547902159392834,-0.022363945841789246,-0.027359694242477417,0.0010629252064973116,0.0012755101779475808,0.0020408162381500006,0.0025510203558951616,0.0008267195662483573,0.0017857142956927419,0.0022321429569274187,0.0019841270986944437,0.0035714285913854837,0.0029761905316263437,-0.01645408198237419,0.012427721172571182,0.0012755101779475808,0.0020408162381500006,0.0025510203558951616,-0.0015943878097459674,-0.0005102040595375001,-0.0008163265301845968,-0.0010204081190750003,1.0028870095490916e-18,8.538092108323347e-19,9.215718466126788e-19,3.7718617023611634e-18,1.6982945451975483e-18,7.915551016232263e-18,-0.014547902159392834,0.0012755101779475808,0.009148242883384228,0.0017857142956927419,0.0022321429569274187,2.2497195079074217e-18,-0.00042517005931586027,5.76398773249071e-20,5.1755081802657585e-20,-0.0009920635493472219,-0.0005952381179668009,-0.0007440476329065859,-4.607947773456952e-33,-2.3554969061509708e-33,-9.920273802445697e-33,-0.022363945841789246,0.0020408162381500006,0.0017857142956927419,0.028798185288906097,0.0035714285913854837,3.64076226066794e-18,-3.3881317890172014e-20,-0.0013605442363768816,2.3537041759163097e-19,-0.0,-0.0011904762359336019,-2.0319923099442698e-19,-0.0059523810632526875,-0.0023809524718672037,-1.624155124465818e-32,-0.027359694242477417,0.0025510203558951616,0.0022321429569274187,0.0035714285913854837,0.05712159723043442,4.824699667560495e-18,-1.6601845766184287e-19,-1.6647865442575791e-19,-0.0025510203558951616,-1.2929081128387588e-19,-2.0319923099442698e-19,-0.0022321429569274187,-9.775088495175636e-33,-0.0035714285913854837,-0.01785714365541935,0.0010629252064973116,-0.0015943878097459674,2.2497195079074217e-18,3.64076226066794e-18,4.824699667560495e-18,0.0003188775444868952,-1.7618285302889447e-19,-2.981555974335137e-19,-2.981555974335137e-19,-2.2082137044198304e-19,-1.7303683959011095e-19,-2.1298163693954101e-19,-6.608470507765904e-19,-3.398641894181512e-19,-1.4161008452493172e-18,0.0012755101779475808,-0.0005102040595375001,-0.00042517005931586027,-3.3881317890172014e-20,-1.6601845766184287e-19,-1.7618285302889447e-19,0.0001700680295471102,-6.776263578034403e-21,-6.776263578034403e-21,3.601842947558226e-20,1.6940658945086007e-20,6.098637220230962e-20,3.6111186457260672e-34,2.1666711874356403e-34,9.14816723583937e-34,0.0020408162381500006,-0.0008163265301845968,5.76398773249071e-20,-0.0013605442363768816,-1.6647865442575791e-19,-2.981555974335137e-19,-6.776263578034403e-21,0.0005442177061922848,-1.4846791780488666e-20,-3.9644362564062992e-22,-2.5894414093355167e-20,7.192892803709769e-22,-3.1175093118628214e-19,1.3429184186979492e-19,1.4348666283182483e-33,0.0025510203558951616,-0.0010204081190750003,5.1755081802657585e-20,2.3537041759163097e-19,-0.0025510203558951616,-2.981555974335137e-19,-6.776263578034403e-21,-1.4846791780488666e-20,0.0010204081190750003,7.025639650544513e-22,7.192892803709769e-22,-4.046002424229976e-20,6.8766910843008264e-34,-2.0041132213739357e-19,-8.350471518771953e-19,0.0008267195662483573,1.0028870095490916e-18,-0.0009920635493472219,-0.0,-1.2929081128387588e-19,-2.2082137044198304e-19,3.601842947558226e-20,-3.9644362564062992e-22,7.025639650544513e-22,0.0001653439103392884,-1.3552527156068805e-20,4.0657581468206416e-20,4.515481091933867e-34,2.207063882477031e-34,9.206612263949277e-34,0.0017857142956927419,8.538092108323347e-19,-0.0005952381179668009,-0.0011904762359336019,-2.0319923099442698e-19,-1.7303683959011095e-19,1.6940658945086007e-20,-2.5894414093355167e-20,7.192892803709769e-22,-1.3552527156068805e-20,0.00039682540227659047,6.713366832207402e-20,3.595142942814423e-34,1.7158525735059846e-34,7.651647214517439e-34,0.0022321429569274187,9.215718466126788e-19,-0.0007440476329065859,-2.0319923099442698e-19,-0.0022321429569274187,-2.1298163693954101e-19,6.098637220230962e-20,7.192892803709769e-22,-4.046002424229976e-20,4.0657581468206416e-20,6.713366832207402e-20,0.0007440476329065859,4.427881508036163e-34,2.3086477165521928e-34,9.553740337521907e-34,0.0019841270986944437,3.7718617023611634e-18,-4.607947773456952e-33,-0.0059523810632526875,-9.775088495175636e-33,-6.608470507765904e-19,3.6111186457260672e-34,-3.1175093118628214e-19,6.8766910843008264e-34,4.515481091933867e-34,3.595142942814423e-34,4.427881508036163e-34,0.0019841270986944437,5.720339383475191e-34,2.9347504001934543e-33,0.0035714285913854837,1.6982945451975483e-18,-2.3554969061509708e-33,-0.0023809524718672037,-0.0035714285913854837,-3.398641894181512e-19,2.1666711874356403e-34,1.3429184186979492e-19,-2.0041132213739357e-19,2.207063882477031e-34,1.7158525735059846e-34,2.3086477165521928e-34,5.720339383475191e-34,0.0023809524718672037,1.5546386660784928e-33,0.0029761905316263437,7.915551016232263e-18,-9.920273802445697e-33,-1.624155124465818e-32,-0.01785714365541935,-1.4161008452493172e-18,9.14816723583937e-34,1.4348666283182483e-33,-8.350471518771953e-19,9.206612263949277e-34,7.651647214517439e-34,9.553740337521907e-34,2.9347504001934543e-33,1.5546386660784928e-33,0.008928571827709675,6.0,7.0,4.0,4.0,0.05764526501297951,-0.012723213993012905,-0.011245748028159142,-0.0173086728900671,-0.0173086728900671,0.0007971939048729837,0.0009566326625645161,0.0015306122368201613,0.0015306122368201613,0.0006200397037900984,0.0013392857508733869,0.0013392857508733869,0.0014880952658131719,0.002142857061699033,0.0014880952658131719,-0.012723213993012905,0.009473851881921291,0.0009566326625645161,0.0015306122368201613,0.0015306122368201613,-0.001195790828205645,-0.00038265305920504034,-0.0006122448830865324,-0.0006122448830865324,9.215718466126788e-19,2.0328790734103208e-19,2.0328790734103208e-19,1.80930352757066e-18,1.2532800868898454e-19,1.80930352757066e-18,-0.011245748028159142,0.0009566326625645161,0.00697278929874301,0.0013392857508733869,0.0013392857508733869,1.6805133673525319e-18,-0.0003188775444868952,-3.5393016309006814e-19,-3.5393016309006814e-19,-0.0007440476329065859,-0.00044642857392318547,-0.00044642857392318547,-7.434529256613157e-19,-4.758098496757752e-19,-7.434529256613157e-19,-0.0173086728900671,0.0015306122368201613,0.0013392857508733869,0.021955782547593117,0.002142857061699033,2.6393753431597137e-18,-1.4738373282224826e-19,-0.0010204081190750003,-4.851621604764528e-19,-0.0,-0.0008928571478463709,-2.688530344265524e-19,-0.004464285913854837,-0.0014285714132711291,-1.1895247017376204e-18,-0.0173086728900671,0.0015306122368201613,0.0013392857508733869,0.002142857061699033,0.021955782547593117,2.6020852139652106e-18,-1.3044307387716225e-19,-4.851621604764528e-19,-0.0010204081190750003,-1.0124248834567939e-20,-2.688530344265524e-19,-0.0008928571478463709,-1.1895247017376204e-18,-0.0014285714132711291,-0.004464285913854837,0.0007971939048729837,-0.001195790828205645,1.6805133673525319e-18,2.6393753431597137e-18,2.6020852139652106e-18,0.00023915816564112902,-1.0842021724855044e-19,-1.6263032587282567e-19,-1.8973538018496328e-19,-1.6104124729262594e-19,-1.32467275308959e-19,-1.32467275308959e-19,-4.956353010071399e-19,-2.0391851623583012e-19,-4.956353010071399e-19,0.0009566326625645161,-0.00038265305920504034,-0.0003188775444868952,-1.4738373282224826e-19,-1.3044307387716225e-19,-1.0842021724855044e-19,0.00012755101488437504,1.0164395367051604e-20,3.3881317890172014e-21,-3.736068188464013e-20,4.0657581468206416e-20,4.0657581468206416e-20,3.3703774026776627e-34,1.6851887013388314e-34,3.1296361596292583e-34,0.0015306122368201613,-0.0006122448830865324,-3.5393016309006814e-19,-0.0010204081190750003,-4.851621604764528e-19,-1.6263032587282567e-19,1.0164395367051604e-20,0.0004081632650922984,1.5729841011718835e-20,-1.6457925548446723e-21,2.2657611766230274e-19,-4.315735581251665e-22,4.459151804465908e-19,2.9808818221359065e-19,6.801477353769951e-34,0.0015306122368201613,-0.0006122448830865324,-3.5393016309006814e-19,-4.851621604764528e-19,-0.0010204081190750003,-1.8973538018496328e-19,3.3881317890172014e-21,1.5729841011718835e-20,0.0004081632650922984,9.60462613105531e-22,-4.315735581251665e-22,2.2657611766230274e-19,6.801477353769951e-34,2.9808818221359065e-19,4.459151804465908e-19,0.0006200397037900984,9.215718466126788e-19,-0.0007440476329065859,-0.0,-1.0124248834567939e-20,-1.6104124729262594e-19,-3.736068188464013e-20,-1.6457925548446723e-21,9.60462613105531e-22,0.00012400794366840273,1.3552527156068805e-20,1.3552527156068805e-20,3.454219307661322e-34,1.4444474582904269e-34,3.3703774026776627e-34,0.0013392857508733869,2.0328790734103208e-19,-0.00044642857392318547,-0.0008928571478463709,-2.688530344265524e-19,-1.32467275308959e-19,4.0657581468206416e-20,2.2657611766230274e-19,-4.315735581251665e-22,1.3552527156068805e-20,0.00029761905898340046,1.0675677803933905e-20,4.956353010071399e-19,1.5860328753349075e-19,4.179453174781854e-34,0.0013392857508733869,2.0328790734103208e-19,-0.00044642857392318547,-2.688530344265524e-19,-0.0008928571478463709,-1.32467275308959e-19,4.0657581468206416e-20,-4.315735581251665e-22,2.2657611766230274e-19,1.3552527156068805e-20,1.0675677803933905e-20,0.00029761905898340046,4.179453174781854e-34,1.5860328753349075e-19,4.956353010071399e-19,0.0014880952658131719,1.80930352757066e-18,-7.434529256613157e-19,-0.004464285913854837,-1.1895247017376204e-18,-4.956353010071399e-19,3.3703774026776627e-34,4.459151804465908e-19,6.801477353769951e-34,3.454219307661322e-34,4.956353010071399e-19,4.179453174781854e-34,0.0014880952658131719,7.930164505921508e-19,1.6874814663359118e-33,0.002142857061699033,1.2532800868898454e-19,-4.758098496757752e-19,-0.0014285714132711291,-0.0014285714132711291,-2.0391851623583012e-19,1.6851887013388314e-34,2.9808818221359065e-19,2.9808818221359065e-19,1.4444474582904269e-34,1.5860328753349075e-19,1.5860328753349075e-19,7.930164505921508e-19,0.0009523809421807528,7.930164505921508e-19,0.0014880952658131719,1.80930352757066e-18,-7.434529256613157e-19,-1.1895247017376204e-18,-0.004464285913854837,-4.956353010071399e-19,3.1296361596292583e-34,6.801477353769951e-34,4.459151804465908e-19,3.3703774026776627e-34,4.179453174781854e-34,4.956353010071399e-19,1.6874814663359118e-33,7.930164505921508e-19,0.0014880952658131719,6.0,7.0,4.0,5.0,0.04833900183439255,-0.010382653214037418,-0.009175170212984085,-0.01413265336304903,-0.011964285746216774,0.0006377550889737904,0.0007653061184100807,0.0012244897661730647,0.0010204081190750003,0.0004960317746736109,0.0010714285308495164,0.0008928571478463709,0.0011904762359336019,0.0014285714132711291,0.0008503401186317205,-0.010382653214037418,0.007660714443773031,0.0007653061184100807,0.0012244897661730647,0.0010204081190750003,-0.0009566326625645161,-0.0003061224415432662,-0.0004897959297522902,-0.0004081632650922984,-7.498364335447522e-19,-1.710654691500622e-18,-3.032868055683333e-18,-1.6281863353927336e-18,-4.871786923930076e-18,-7.242946471927633e-18,-0.009175170212984085,0.0007653061184100807,0.005637755151838064,0.0010714285308495164,0.0008928571478463709,-1.1926223897340549e-18,-0.00025510202976875007,-1.516698105252224e-18,-3.377049223170216e-18,-0.0005952381179668009,-0.0003571428533177823,-0.00029761905898340046,-8.734219733486967e-19,-3.6814165334136966e-18,-5.67851218711528e-18,-0.01413265336304903,0.0012244897661730647,0.0010714285308495164,0.01775510236620903,0.0014285714132711291,-1.8295500138338142e-18,-1.4441865221776365e-18,-0.0008163265301845968,-5.492971853406879e-18,-1.0028870095490916e-18,-0.0007142857066355646,-3.615479898835563e-18,-0.0035714285913854837,-0.0009523809421807528,-9.230280153630171e-18,-0.011964285746216774,0.0010204081190750003,0.0008928571478463709,0.0014285714132711291,0.011084184050559998,-5.690706897295843e-18,-3.018963976766929e-18,-4.807643203329651e-18,-0.0005102040595375001,-4.27391938874053e-18,-2.64295517405569e-18,-0.00044642857392318547,-1.324752829342764e-17,-0.0007142857066355646,-0.001700680237263441,0.0006377550889737904,-0.0009566326625645161,-1.1926223897340549e-18,-1.8295500138338142e-18,-5.690706897295843e-18,0.00019132652960252017,3.3881317890172014e-20,5.421010862427522e-20,2.168404344971009e-19,3.0624911382529614e-20,1.189524624189438e-19,2.9384091996086056e-19,4.9563528162009426e-20,4.701454719373769e-19,7.889704517222125e-19,0.0007653061184100807,-0.0003061224415432662,-0.00025510202976875007,-1.4441865221776365e-18,-3.018963976766929e-18,3.3881317890172014e-20,0.0001020408162730746,1.5375112360843711e-19,1.9468690918109984e-19,-3.2866881035278026e-20,6.098637220230962e-20,1.2874900798265365e-19,5.664402941557569e-20,2.718913463646421e-19,3.7223220622705158e-19,0.0012244897661730647,-0.0004897959297522902,-1.516698105252224e-18,-0.0008163265301845968,-4.807643203329651e-18,5.421010862427522e-20,1.5375112360843711e-19,0.00032653060043230653,3.1453289468266283e-19,5.1357256395633595e-20,7.817280072455191e-20,2.718913463646421e-19,-4.0144825131181866e-19,2.8305117605071886e-19,5.955715403030402e-19,0.0010204081190750003,-0.0004081632650922984,-3.377049223170216e-18,-5.492971853406879e-18,-0.0005102040595375001,2.168404344971009e-19,1.9468690918109984e-19,3.1453289468266283e-19,0.0002040816325461492,2.718913463646421e-19,3.2626963114720703e-19,3.168168954502866e-19,8.156740649433205e-19,5.316477463479782e-19,5.792841472467179e-19,0.0004960317746736109,-7.498364335447522e-19,-0.0005952381179668009,-1.0028870095490916e-18,-4.27391938874053e-18,3.0624911382529614e-20,-3.2866881035278026e-20,5.1357256395633595e-20,2.718913463646421e-19,9.920635056914762e-05,3.3881317890172014e-20,2.0328790734103208e-19,2.2028234918180537e-20,2.9958398325502794e-19,5.664403070804539e-19,0.0010714285308495164,-1.710654691500622e-18,-0.0003571428533177823,-0.0007142857066355646,-2.64295517405569e-18,1.189524624189438e-19,6.098637220230962e-20,7.817280072455191e-20,3.2626963114720703e-19,3.3881317890172014e-20,0.0002380952355451882,9.184170831539781e-20,-4.813677796090955e-19,2.1882993311726163e-19,2.2657611766230274e-19,0.0008928571478463709,-3.032868055683333e-18,-0.00029761905898340046,-3.615479898835563e-18,-0.00044642857392318547,2.9384091996086056e-19,1.2874900798265365e-19,2.718913463646421e-19,3.168168954502866e-19,2.0328790734103208e-19,9.184170831539781e-20,0.00014880952949170023,5.947623508688102e-19,3.586680726930129e-19,4.575095125988051e-19,0.0011904762359336019,-1.6281863353927336e-18,-8.734219733486967e-19,-0.0035714285913854837,-1.324752829342764e-17,4.9563528162009426e-20,5.664402941557569e-20,-4.0144825131181866e-19,8.156740649433205e-19,2.2028234918180537e-20,-4.813677796090955e-19,5.947623508688102e-19,0.0011904762359336019,1.2225040825673799e-18,1.69932097294015e-18,0.0014285714132711291,-4.871786923930076e-18,-3.6814165334136966e-18,-0.0009523809421807528,-0.0007142857066355646,4.701454719373769e-19,2.718913463646421e-19,2.8305117605071886e-19,5.316477463479782e-19,2.9958398325502794e-19,2.1882993311726163e-19,3.586680726930129e-19,1.2225040825673799e-18,0.0004761904710903764,9.06304470649211e-19,0.0008503401186317205,-7.242946471927633e-18,-5.67851218711528e-18,-9.230280153630171e-18,-0.001700680237263441,7.889704517222125e-19,3.7223220622705158e-19,5.955715403030402e-19,5.792841472467179e-19,5.664403070804539e-19,2.2657611766230274e-19,4.575095125988051e-19,1.69932097294015e-18,9.06304470649211e-19,0.00042517005931586027,6.0,7.0,4.0,6.0,0.04165620729327202,-0.008773688226938248,-0.0077522676438093185,-0.01194727886468172,-0.008773688226938248,0.0005314626032486558,0.0006377550889737904,0.0010204081190750003,0.0007288630004040897,0.00041335978312417865,0.0008928571478463709,0.0006377550889737904,0.0009920635493472219,0.0010204081190750003,0.0005314626032486558,-0.008773688226938248,0.006432519294321537,0.0006377550889737904,0.0010204081190750003,0.0007288630004040897,-0.0007971939048729837,-0.00025510202976875007,-0.0004081632650922984,-0.0002915451768785715,4.743384504624082e-19,4.247887808068333e-19,2.0081493457753116e-19,1.8859308511805817e-18,3.6205550654838825e-19,8.653544291356788e-19,-0.0077522676438093185,0.0006377550889737904,0.004733560141175985,0.0008928571478463709,0.0006377550889737904,1.1248597539537109e-18,-0.00021258502965793014,3.5399436652276903e-20,-9.486769009248164e-20,-0.0004960317746736109,-0.00029761905898340046,-0.00021258502965793014,-2.404289288930704e-33,-6.776263578034403e-21,-6.471581292923298e-20,-0.01194727886468172,0.0010204081190750003,0.0008928571478463709,0.014909297227859497,0.0010204081190750003,1.8474113248006717e-18,-4.6241221855175546e-21,-0.0006802721181884408,-8.52155457067991e-20,2.710505431213761e-20,-0.0005952381179668009,-4.4785913889662134e-20,-0.0029761905316263437,-0.0006802721181884408,-8.743584710490775e-20,-0.008773688226938248,0.0007288630004040897,0.0006377550889737904,0.0010204081190750003,0.006432519294321537,1.3552527156068805e-18,-1.7824939253712202e-20,-2.6231432031833706e-20,-0.0002915451768785715,-5.505374076061268e-21,-3.3881317890172014e-20,-0.00025510202976875007,-2.857023407639223e-33,-0.0004081632650922984,-0.0007971939048729837,0.0005314626032486558,-0.0007971939048729837,1.1248597539537109e-18,1.8474113248006717e-18,1.3552527156068805e-18,0.0001594387722434476,-1.0164395367051604e-19,-1.4907779871675686e-19,-1.4230153513872246e-19,-1.0591387291721184e-19,-8.49660473545378e-20,-6.06900347478625e-20,-3.304235253882952e-19,-9.710405688904971e-20,-1.4340150440765899e-19,0.0006377550889737904,-0.00025510202976875007,-0.00021258502965793014,-4.6241221855175546e-21,-1.7824939253712202e-20,-1.0164395367051604e-19,8.50340147735551e-05,-6.143321371518235e-21,-1.8487228196618746e-21,1.800921473779113e-20,6.776263578034403e-21,3.3881317890172014e-21,2.197763701781111e-34,-1.385461135492538e-22,2.3016284388416656e-21,0.0010204081190750003,-0.0004081632650922984,3.5399436652276903e-20,-0.0006802721181884408,-2.6231432031833706e-20,-1.4907779871675686e-19,-6.143321371518235e-21,0.0002721088530961424,-2.4275975852067998e-21,9.930576275746685e-35,-1.3360754539895049e-20,5.886875708918016e-35,-1.5587546559314107e-19,2.1533618070377906e-20,1.2714146898493862e-34,0.0007288630004040897,-0.0002915451768785715,-9.486769009248164e-20,-8.52155457067991e-20,-0.0002915451768785715,-1.4230153513872246e-19,-1.8487228196618746e-21,-2.4275975852067998e-21,0.00011661807366181165,1.102518968356401e-21,-9.847691467784946e-23,3.698833428671763e-20,3.1156108130672694e-34,3.66319874637692e-20,-6.136341146526895e-20,0.00041335978312417865,4.743384504624082e-19,-0.0004960317746736109,2.710505431213761e-20,-5.505374076061268e-21,-1.0591387291721184e-19,1.800921473779113e-20,9.930576275746685e-35,1.102518968356401e-21,8.26719551696442e-05,-1.3552527156068805e-20,0.0,2.1195418995735804e-34,-3.2327426494825886e-22,2.6557784671847852e-21,0.0008928571478463709,4.247887808068333e-19,-0.00029761905898340046,-0.0005952381179668009,-3.3881317890172014e-20,-8.49660473545378e-20,6.776263578034403e-21,-1.3360754539895049e-20,-9.847691467784946e-23,-1.3552527156068805e-20,0.00019841270113829523,1.1858461261560205e-20,1.7912379216203055e-34,8.920115683268061e-24,-2.692728106140162e-22,0.0006377550889737904,2.0081493457753116e-19,-0.00021258502965793014,-4.4785913889662134e-20,-0.00025510202976875007,-6.06900347478625e-20,3.3881317890172014e-21,5.886875708918016e-35,3.698833428671763e-20,0.0,1.1858461261560205e-20,8.50340147735551e-05,1.257750141992928e-34,3.684212769006818e-21,1.6841237328453388e-20,0.0009920635493472219,1.8859308511805817e-18,-2.404289288930704e-33,-0.0029761905316263437,-2.857023407639223e-33,-3.304235253882952e-19,2.197763701781111e-34,-1.5587546559314107e-19,3.1156108130672694e-34,2.1195418995735804e-34,1.7912379216203055e-34,1.257750141992928e-34,0.0009920635493472219,1.7308234812952902e-34,2.882344061051164e-34,0.0010204081190750003,3.6205550654838825e-19,-6.776263578034403e-21,-0.0006802721181884408,-0.0004081632650922984,-9.710405688904971e-20,-1.385461135492538e-22,2.1533618070377906e-20,3.66319874637692e-20,-3.2327426494825886e-22,8.920115683268061e-24,3.684212769006818e-21,1.7308234812952902e-34,0.0002721088530961424,3.529746402355987e-20,0.0005314626032486558,8.653544291356788e-19,-6.471581292923298e-20,-8.743584710490775e-20,-0.0007971939048729837,-1.4340150440765899e-19,2.3016284388416656e-21,1.2714146898493862e-34,-6.136341146526895e-20,2.6557784671847852e-21,-2.692728106140162e-22,1.6841237328453388e-20,2.882344061051164e-34,3.529746402355987e-20,0.0001594387722434476,6.0,7.0,4.0,7.0,0.036613721400499344,-0.007598396390676498,-0.006713131908327341,-0.01034985389560461,-0.006713131908327341,0.0004555393534246832,0.000546647235751152,0.0008746355888433754,0.000546647235751152,0.00035430840216577053,0.0007653061184100807,0.00047831633128225803,0.0008503401186317205,0.0007653061184100807,0.00035430840216577053,-0.007598396390676498,0.005544824991375208,0.000546647235751152,0.0008746355888433754,0.000546647235751152,-0.00068330904468894,-0.00021865889721084386,-0.0003498542355373502,-0.00021865889721084386,5.692061405548898e-19,4.417910647075545e-19,2.945809881151541e-19,1.6165121286126196e-18,5.205489470814714e-19,5.620528377138961e-19,-0.006713131908327341,0.000546647235751152,0.004080114420503378,0.0007653061184100807,0.00047831633128225803,9.215718466126788e-19,-0.00018221575010102242,3.360944688728056e-20,4.743384504624082e-20,-0.00042517005931586027,-0.00025510202976875007,-0.0001594387722434476,-1.9782427490766893e-33,4.0657581468206416e-20,7.662390502754637e-20,-0.01034985389560461,0.0008746355888433754,0.0007653061184100807,0.012852284125983715,0.0007653061184100807,1.5223305848382507e-18,7.728980480769716e-20,-0.000583090353757143,1.1560907593118688e-19,-0.0,-0.0005102040595375001,-5.659677995425786e-21,-0.0025510203558951616,-0.0005102040595375001,8.221904516373455e-20,-0.006713131908327341,0.000546647235751152,0.00047831633128225803,0.0007653061184100807,0.004080114420503378,9.486769009248164e-19,3.998178137009913e-20,6.265475672373787e-20,-0.00018221575010102242,-9.401855203519188e-21,-4.743384504624082e-20,-0.0001594387722434476,-1.9830145214570586e-33,-0.00025510202976875007,-0.00042517005931586027,0.0004555393534246832,-0.00068330904468894,9.215718466126788e-19,1.5223305848382507e-18,9.486769009248164e-19,0.000136661808937788,-6.776263578034403e-20,-9.486769009248164e-20,-6.776263578034403e-20,-8.791961205393202e-20,-7.282803782002588e-20,-4.5517526060896877e-20,-2.8322015354022696e-19,-7.282803782002588e-20,-8.869117769498793e-20,0.000546647235751152,-0.00021865889721084386,-0.00018221575010102242,7.728980480769716e-20,3.998178137009913e-20,-6.776263578034403e-20,7.288629421964288e-05,-6.572534001482707e-21,-3.122988090951278e-21,-4.2645787618660045e-20,-2.0328790734103208e-20,-1.0164395367051604e-20,1.4995875564823484e-34,4.263423059182839e-23,-2.6847334741822904e-22,0.0008746355888433754,-0.0003498542355373502,3.360944688728056e-20,-0.000583090353757143,6.265475672373787e-20,-9.486769009248164e-20,-6.572534001482707e-21,0.0002332361473236233,-4.448168590765308e-21,6.441709042506136e-35,-1.1452074858313718e-20,3.8650254255036813e-35,-1.3360754378336336e-19,-3.435622619052829e-20,6.846079099189002e-35,0.000546647235751152,-0.00021865889721084386,4.743384504624082e-20,1.1560907593118688e-19,-0.00018221575010102242,-6.776263578034403e-20,-3.122988090951278e-21,-4.448168590765308e-21,7.288629421964288e-05,-5.204662924320111e-22,1.7121232614170207e-22,-1.2166720941261888e-20,1.4874183200920828e-34,-3.5000764677594754e-20,-3.911767489801385e-20,0.00035430840216577053,5.692061405548898e-19,-0.00042517005931586027,-0.0,-9.401855203519188e-21,-8.791961205393202e-20,-4.2645787618660045e-20,6.441709042506136e-35,-5.204662924320111e-22,7.086167897796258e-05,6.776263578034403e-21,3.3881317890172014e-21,1.8167502816304762e-34,9.947987243274745e-23,-1.426972990565636e-21,0.0007653061184100807,4.417910647075545e-19,-0.00025510202976875007,-0.0005102040595375001,-4.743384504624082e-20,-7.282803782002588e-20,-2.0328790734103208e-20,-1.1452074858313718e-20,1.7121232614170207e-22,6.776263578034403e-21,0.0001700680295471102,1.5246593050577406e-20,1.5353468063594576e-34,-8.871234390592584e-22,3.9949541924945517e-22,0.00047831633128225803,2.945809881151541e-19,-0.0001594387722434476,-5.659677995425786e-21,-0.0001594387722434476,-4.5517526060896877e-20,-1.0164395367051604e-20,3.8650254255036813e-35,-1.2166720941261888e-20,3.3881317890172014e-21,1.5246593050577406e-20,5.3146257414482534e-05,9.433126351932886e-35,-1.3360033988033333e-20,-2.242554656849595e-20,0.0008503401186317205,1.6165121286126196e-18,-1.9782427490766893e-33,-0.0025510203558951616,-1.9830145214570586e-33,-2.8322015354022696e-19,1.4995875564823484e-34,-1.3360754378336336e-19,1.4874183200920828e-34,1.8167502816304762e-34,1.5353468063594576e-34,9.433126351932886e-35,0.0008503401186317205,1.587439917583227e-34,1.8167502816304762e-34,0.0007653061184100807,5.205489470814714e-19,4.0657581468206416e-20,-0.0005102040595375001,-0.00025510202976875007,-7.282803782002588e-20,4.263423059182839e-23,-3.435622619052829e-20,-3.5000764677594754e-20,9.947987243274745e-23,-8.871234390592584e-22,-1.3360033988033333e-20,1.587439917583227e-34,0.0001700680295471102,-2.780584431203195e-20,0.00035430840216577053,5.620528377138961e-19,7.662390502754637e-20,8.221904516373455e-20,-0.00042517005931586027,-8.869117769498793e-20,-2.6847334741822904e-22,6.846079099189002e-35,-3.911767489801385e-20,-1.426972990565636e-21,3.9949541924945517e-22,-2.242554656849595e-20,1.8167502816304762e-34,-2.780584431203195e-20,7.086167897796258e-05,6.0,7.0,4.0,8.0,0.032669004052877426,-0.006701743230223656,-0.005920493043959141,-0.009130527265369892,-0.005303996615111828,0.00039859695243649185,0.00047831633128225803,0.0007653061184100807,0.00042517005931586027,0.0003100198518950492,0.0006696428754366934,0.00037202381645329297,0.0007440476329065859,0.0005952381179668009,0.00024801588733680546,-0.006701743230223656,0.004872980527579784,0.00047831633128225803,0.0007653061184100807,0.00042517005931586027,-0.0005978954141028225,-0.00019132652960252017,-0.0003061224415432662,-0.0001700680295471102,3.8024474292933476e-19,2.0650479981855373e-19,1.9997431228002415e-19,7.292919037671375e-19,2.3510166144073366e-19,2.5588547905992346e-19,-0.005920493043959141,0.00047831633128225803,0.003585600992664695,0.0006696428754366934,0.00037202381645329297,6.193092974378393e-19,-0.0001594387722434476,-1.8692530547245286e-19,-3.3881317890172014e-20,-0.00037202381645329297,-0.00022321428696159273,-0.00012400794366840273,-3.7172646283065783e-19,-2.710505431213761e-20,3.829228112483091e-20,-0.009130527265369892,0.0007653061184100807,0.0006696428754366934,0.011295351199805737,0.0005952381179668009,1.0362100839233669e-18,-9.419413889166473e-20,-0.0005102040595375001,-3.3811007538105006e-20,-1.3552527156068805e-20,-0.00044642857392318547,2.9184861021908684e-20,-0.0022321429569274187,-0.00039682540227659047,9.124523354556465e-20,-0.005303996615111828,0.00042517005931586027,0.00037202381645329297,0.0005952381179668009,0.00275550689548254,4.2719039631780444e-19,-4.290415877546069e-20,-1.6615582134231495e-19,-0.00012147716188337654,-7.736573417181585e-21,-7.115076756936123e-20,-0.00010629251482896507,-3.304235253882952e-19,-0.0001700680295471102,-0.00024801588733680546,0.00039859695243649185,-0.0005978954141028225,6.193092974378393e-19,1.0362100839233669e-18,4.2719039631780444e-19,0.00011957908282056451,2.4167639021733776e-20,3.866822178853919e-20,7.080503838505674e-20,-7.670545986606527e-20,-6.372453390031621e-20,-3.540251919252837e-20,-2.4781765050356993e-19,-5.664402941557569e-20,-5.900420188538822e-20,0.00047831633128225803,-0.00019132652960252017,-0.0001594387722434476,-9.419413889166473e-20,-4.290415877546069e-20,2.4167639021733776e-20,6.377550744218752e-05,3.3986418295580265e-20,1.9283289369798734e-20,-1.1925097463448103e-36,3.3881317890172014e-21,-8.470329472543003e-22,1.5158460266263815e-35,-2.6751490035104723e-22,-3.1192188756808087e-22,0.0007653061184100807,-0.0003061224415432662,-1.8692530547245286e-19,-0.0005102040595375001,-1.6615582134231495e-19,3.866822178853919e-20,3.3986418295580265e-20,0.0002040816325461492,3.021015139116816e-20,-2.256949153578792e-35,6.797283659116053e-20,-2.0312542382209128e-35,3.398641894181512e-19,6.042030278233632e-20,-2.7018769222102083e-35,0.00042517005931586027,-0.0001700680295471102,-3.3881317890172014e-20,-3.3811007538105006e-20,-0.00012147716188337654,7.080503838505674e-20,1.9283289369798734e-20,3.021015139116816e-20,4.8590864025754854e-05,9.378740796446194e-22,-1.6505550698459771e-24,-5.834460693402744e-21,-1.1500328447181142e-34,-1.1916976211962662e-20,1.1448941427067533e-20,0.0003100198518950492,3.8024474292933476e-19,-0.00037202381645329297,-1.3552527156068805e-20,-7.736573417181585e-21,-7.670545986606527e-20,-1.1925097463448103e-36,-2.256949153578792e-35,9.378740796446194e-22,6.200397183420137e-05,6.776263578034403e-21,0.0,1.7766467536076132e-34,-6.242014257379272e-22,4.898103751051046e-22,0.0006696428754366934,2.0650479981855373e-19,-0.00022321428696159273,-0.00044642857392318547,-7.115076756936123e-20,-6.372453390031621e-20,3.3881317890172014e-21,6.797283659116053e-20,-1.6505550698459771e-24,6.776263578034403e-21,0.00014880952949170023,1.6940658945086007e-21,2.4781765050356993e-19,4.406547511904539e-20,-3.369883230624348e-24,0.00037202381645329297,1.9997431228002415e-19,-0.00012400794366840273,2.9184861021908684e-20,-0.00010629251482896507,-3.540251919252837e-20,-8.470329472543003e-22,-2.0312542382209128e-35,-5.834460693402744e-21,0.0,1.6940658945086007e-21,3.543083948898129e-05,5.793949666243148e-35,-9.790588893947196e-21,-1.1626054205588348e-20,0.0007440476329065859,7.292919037671375e-19,-3.7172646283065783e-19,-0.0022321429569274187,-3.304235253882952e-19,-2.4781765050356993e-19,1.5158460266263815e-35,3.398641894181512e-19,-1.1500328447181142e-34,1.7766467536076132e-34,2.4781765050356993e-19,5.793949666243148e-35,0.0007440476329065859,2.202823588753282e-19,7.841117848004539e-35,0.0005952381179668009,2.3510166144073366e-19,-2.710505431213761e-20,-0.00039682540227659047,-0.0001700680295471102,-5.664402941557569e-20,-2.6751490035104723e-22,6.042030278233632e-20,-1.1916976211962662e-20,-6.242014257379272e-22,4.406547511904539e-20,-9.790588893947196e-21,2.202823588753282e-19,0.00011337868636474013,-2.6067176903517976e-20,0.00024801588733680546,2.5588547905992346e-19,3.829228112483091e-20,9.124523354556465e-20,-0.00024801588733680546,-5.900420188538822e-20,-3.1192188756808087e-22,-2.7018769222102083e-35,1.1448941427067533e-20,4.898103751051046e-22,-3.369883230624348e-24,-1.1626054205588348e-20,7.841117848004539e-35,-2.6067176903517976e-20,3.543083948898129e-05,6.0,7.0,5.0,3.0,0.06013794243335724,-0.01343537401407957,-0.011876417323946953,-0.015476190485060215,-0.022363945841789246,0.0008503401186317205,0.0010204081190750003,0.0013605442363768816,0.0020408162381500006,0.0006613756413571537,0.0011904762359336019,0.0017857142956927419,0.0011337868636474013,0.0023809524718672037,0.0023809524718672037,-0.01343537401407957,0.010051020421087742,0.0010204081190750003,0.0013605442363768816,0.0020408162381500006,-0.0012755101779475808,-0.0004081632650922984,-0.0005442177061922848,-0.0008163265301845968,9.486769009248164e-19,5.453088926582329e-19,5.501846570801384e-19,1.872891382799449e-18,7.874888678475535e-19,4.1573100834277045e-18,-0.011876417323946953,0.0010204081190750003,0.007397959008812904,0.0011904762359336019,0.0017857142956927419,1.734723475976807e-18,-0.0003401360590942204,1.677052469519004e-20,-2.578695234579202e-19,-0.0007936508045531809,-0.00039682540227659047,-0.0005952381179668009,-2.2248423620960044e-33,-2.64338825480515e-19,-1.5860329011843016e-18,-0.015476190485060215,0.0013605442363768816,0.0011904762359336019,0.01454081665724516,0.0023809524718672037,2.5694583154739753e-18,-6.374202101545347e-20,-0.0006802721181884408,-4.0519623251669057e-19,-0.0,-0.0005952381179668009,-2.440100347464118e-19,-0.0022675737272948027,-0.0011904762359336019,-1.256271530811712e-32,-0.022363945841789246,0.0020408162381500006,0.0017857142956927419,0.0023809524718672037,0.046173468232154846,4.228388472693467e-18,-8.036643201025426e-20,-2.9275948470752404e-19,-0.0020408162381500006,6.098551028657369e-21,2.0328790734103208e-20,-0.0017857142956927419,-5.255275614723493e-33,-0.0023809524718672037,-0.014285714365541935,0.0008503401186317205,-0.0012755101779475808,1.734723475976807e-18,2.5694583154739753e-18,4.228388472693467e-18,0.00025510202976875007,-1.3552527156068805e-19,-2.710505431213761e-19,-4.0657581468206416e-19,-1.6690135664346958e-19,-1.1328805883115137e-19,-1.699320947090756e-19,-3.2368019393839806e-19,-2.2657611766230274e-19,-1.1328806141609079e-18,0.0010204081190750003,-0.0004081632650922984,-0.0003401360590942204,-6.374202101545347e-20,-8.036643201025426e-20,-1.3552527156068805e-19,0.0001360544265480712,5.168016460387828e-21,7.752024892530134e-21,-3.759263819180163e-20,1.6940658945086007e-20,2.0328790734103208e-20,1.878483938857801e-34,1.3597625034520373e-34,6.710693374042969e-34,0.0013605442363768816,-0.0005442177061922848,1.677052469519004e-20,-0.0006802721181884408,-2.9275948470752404e-19,-2.710505431213761e-19,5.168016460387828e-21,0.0002721088530961424,7.051279159723263e-20,1.775466667481983e-34,-1.484528282210561e-20,2.22309491627511e-34,-1.2724528410191175e-19,5.823874962604696e-20,1.3160923832237604e-33,0.0020408162381500006,-0.0008163265301845968,-2.578695234579202e-19,-4.0519623251669057e-19,-0.0020408162381500006,-4.0657581468206416e-19,7.752024892530134e-21,7.051279159723263e-20,0.0008163265301845968,2.693292656604025e-34,1.8206056505535589e-34,2.38489457187627e-19,5.033112325205865e-34,2.2891424706126044e-19,1.5070930907744114e-18,0.0006613756413571537,9.486769009248164e-19,-0.0007936508045531809,-0.0,6.098551028657369e-21,-1.6690135664346958e-19,-3.759263819180163e-20,1.775466667481983e-34,2.693292656604025e-34,0.00013227513409219682,-0.0,0.0,2.076286003350724e-34,1.3842621475283258e-34,7.2222372914521344e-34,0.0011904762359336019,5.453088926582329e-19,-0.00039682540227659047,-0.0005952381179668009,2.0328790734103208e-20,-1.1328805883115137e-19,1.6940658945086007e-20,-1.484528282210561e-20,1.8206056505535589e-34,-0.0,0.00019841270113829523,-6.776263578034403e-21,1.469177035490221e-34,9.333869973713478e-35,4.895738361568011e-34,0.0017857142956927419,5.501846570801384e-19,-0.0005952381179668009,-2.440100347464118e-19,-0.0017857142956927419,-1.699320947090756e-19,2.0328790734103208e-20,2.22309491627511e-34,2.38489457187627e-19,0.0,-6.776263578034403e-21,0.0005952381179668009,2.1561431661560882e-34,2.64338825480515e-19,1.5860329011843016e-18,0.0011337868636474013,1.872891382799449e-18,-2.2248423620960044e-33,-0.0022675737272948027,-5.255275614723493e-33,-3.2368019393839806e-19,1.878483938857801e-34,-1.2724528410191175e-19,5.033112325205865e-34,2.076286003350724e-34,1.469177035490221e-34,2.1561431661560882e-34,0.0005668934318237007,2.3764847608541777e-34,1.4374287468255601e-33,0.0023809524718672037,7.874888678475535e-19,-2.64338825480515e-19,-0.0011904762359336019,-0.0023809524718672037,-2.2657611766230274e-19,1.3597625034520373e-34,5.823874962604696e-20,2.2891424706126044e-19,1.3842621475283258e-34,9.333869973713478e-35,2.64338825480515e-19,2.3764847608541777e-34,0.0011904762359336019,2.054047624696334e-33,0.0023809524718672037,4.1573100834277045e-18,-1.5860329011843016e-18,-1.256271530811712e-32,-0.014285714365541935,-1.1328806141609079e-18,6.710693374042969e-34,1.3160923832237604e-33,1.5070930907744114e-18,7.2222372914521344e-34,4.895738361568011e-34,1.5860329011843016e-18,1.4374287468255601e-33,2.054047624696334e-33,0.0071428571827709675,6.0,7.0,5.0,4.0,0.04833900183439255,-0.010382653214037418,-0.009175170212984085,-0.011964285746216774,-0.01413265336304903,0.0006377550889737904,0.0007653061184100807,0.0010204081190750003,0.0012244897661730647,0.0004960317746736109,0.0008928571478463709,0.0010714285308495164,0.0008503401186317205,0.0014285714132711291,0.0011904762359336019,-0.010382653214037418,0.007660714443773031,0.0007653061184100807,0.0010204081190750003,0.0012244897661730647,-0.0009566326625645161,-0.0003061224415432662,-0.0004081632650922984,-0.0004897959297522902,-7.498364335447522e-19,-2.8187852345533307e-18,-1.4489277146536373e-18,-6.46611386171887e-18,-4.162783537540968e-18,-2.6872960356952302e-19,-0.009175170212984085,0.0007653061184100807,0.005637755151838064,0.0008928571478463709,0.0010714285308495164,-1.1655173354219173e-18,-0.00025510202976875007,-3.1731307974072653e-18,-1.2448067330381877e-18,-0.0005952381179668009,-0.00029761905898340046,-0.0003571428533177823,-4.998783963375342e-18,-3.0324019394081593e-18,3.1610275423831776e-19,-0.011964285746216774,0.0010204081190750003,0.0008928571478463709,0.011084184050559998,0.0014285714132711291,-5.6807943784253135e-18,-3.0087995813998774e-18,-0.0005102040595375001,-1.5798900511603297e-18,-4.228388472693467e-18,-0.00044642857392318547,-1.3946708444753587e-19,-0.001700680237263441,-0.0007142857066355646,1.1706433736779084e-18,-0.01413265336304903,0.0012244897661730647,0.0010714285308495164,0.0014285714132711291,0.01775510236620903,-1.8422406187916028e-18,-1.454350917544688e-18,-2.2411228265963112e-18,-0.0008163265301845968,-1.022613922989986e-18,-1.0622710295073094e-18,-0.0007142857066355646,2.2413054267165323e-18,-0.0009523809421807528,-0.0035714285913854837,0.0006377550889737904,-0.0009566326625645161,-1.1655173354219173e-18,-5.6807943784253135e-18,-1.8422406187916028e-18,0.00019132652960252017,3.3881317890172014e-20,2.303929616531697e-19,5.421010862427522e-20,3.0624911382529614e-20,2.9384091996086056e-19,1.189524624189438e-19,7.889704517222125e-19,4.701454719373769e-19,4.9563528162009426e-20,0.0007653061184100807,-0.0003061224415432662,-0.00025510202976875007,-3.0087995813998774e-18,-1.454350917544688e-18,3.3881317890172014e-20,0.0001020408162730746,1.9468690918109984e-19,1.5375112360843711e-19,-3.2866881035278026e-20,1.2536087619363645e-19,6.437450399132683e-20,3.7223220622705158e-19,2.718913463646421e-19,5.664402941557569e-20,0.0010204081190750003,-0.0004081632650922984,-3.1731307974072653e-18,-0.0005102040595375001,-2.2411228265963112e-18,2.303929616531697e-19,1.9468690918109984e-19,0.0002040816325461492,2.181999058338318e-19,2.718913463646421e-19,3.168168954502866e-19,1.903239450401889e-19,5.792841472467179e-19,3.4028103674808963e-19,1.3594567318232106e-19,0.0012244897661730647,-0.0004897959297522902,-1.2448067330381877e-18,-1.5798900511603297e-18,-0.0008163265301845968,5.421010862427522e-20,1.5375112360843711e-19,2.181999058338318e-19,0.00032653060043230653,5.1357256395633595e-20,1.3594567318232106e-19,7.817280072455191e-20,7.768324551123977e-20,6.553810800629312e-20,-4.0144825131181866e-19,0.0004960317746736109,-7.498364335447522e-19,-0.0005952381179668009,-4.228388472693467e-18,-1.022613922989986e-18,3.0624911382529614e-20,-3.2866881035278026e-20,2.718913463646421e-19,5.1357256395633595e-20,9.920635056914762e-05,1.9651164376299768e-19,4.0657581468206416e-20,5.664403070804539e-19,2.9958398325502794e-19,2.2028234918180537e-20,0.0008928571478463709,-2.8187852345533307e-18,-0.00029761905898340046,-0.00044642857392318547,-1.0622710295073094e-18,2.9384091996086056e-19,1.2536087619363645e-19,3.168168954502866e-19,1.3594567318232106e-19,1.9651164376299768e-19,0.00014880952949170023,1.2286648720708865e-19,4.575095125988051e-19,1.76903663384552e-19,-3.1811668932334303e-34,0.0010714285308495164,-1.4489277146536373e-18,-0.0003571428533177823,-1.3946708444753587e-19,-0.0007142857066355646,1.189524624189438e-19,6.437450399132683e-20,1.903239450401889e-19,7.817280072455191e-20,4.0657581468206416e-20,1.2286648720708865e-19,0.0002380952355451882,-2.2657611766230274e-19,2.850598807707273e-20,-4.813677796090955e-19,0.0008503401186317205,-6.46611386171887e-18,-4.998783963375342e-18,-0.001700680237263441,2.2413054267165323e-18,7.889704517222125e-19,3.7223220622705158e-19,5.792841472467179e-19,7.768324551123977e-20,5.664403070804539e-19,4.575095125988051e-19,-2.2657611766230274e-19,0.00042517005931586027,-8.48761366993624e-20,-3.776268713869693e-19,0.0014285714132711291,-4.162783537540968e-18,-3.0324019394081593e-18,-0.0007142857066355646,-0.0009523809421807528,4.701454719373769e-19,2.718913463646421e-19,3.4028103674808963e-19,6.553810800629312e-20,2.9958398325502794e-19,1.76903663384552e-19,2.850598807707273e-20,-8.48761366993624e-20,0.0004761904710903764,6.606978956456941e-34,0.0011904762359336019,-2.6872960356952302e-19,3.1610275423831776e-19,1.1706433736779084e-18,-0.0035714285913854837,4.9563528162009426e-20,5.664402941557569e-20,1.3594567318232106e-19,-4.0144825131181866e-19,2.2028234918180537e-20,-3.1811668932334303e-34,-4.813677796090955e-19,-3.776268713869693e-19,6.606978956456941e-34,0.0011904762359336019,6.0,7.0,5.0,5.0,0.04048752784729004,-0.008469387888908386,-0.007482993416488171,-0.009761904366314411,-0.009761904366314411,0.0005102040595375001,0.0006122448830865324,0.0008163265301845968,0.0008163265301845968,0.00039682540227659047,0.0007142857066355646,0.0007142857066355646,0.0006802721181884408,0.0009523809421807528,0.0006802721181884408,-0.008469387888908386,0.006193877663463354,0.0006122448830865324,0.0008163265301845968,0.0008163265301845968,-0.0007653061184100807,-0.0002448979648761451,-0.00032653060043230653,-0.00032653060043230653,4.0657581468206416e-19,3.1193875288411997e-19,3.1193875288411997e-19,1.1237348917182153e-18,3.128309188735467e-19,1.1237348917182153e-18,-0.007482993416488171,0.0006122448830865324,0.004557823296636343,0.0007142857066355646,0.0007142857066355646,1.0706496453294356e-18,-0.0002040816325461492,5.2542557745808067e-20,5.2542557745808067e-20,-0.0004761904710903764,-0.0002380952355451882,-0.0002380952355451882,-1.3980562063932407e-33,-6.195420476312308e-34,-1.3980562063932407e-33,-0.009761904366314411,0.0008163265301845968,0.0007142857066355646,0.008962584659457207,0.0009523809421807528,1.4204659807393361e-18,-1.1011560792450884e-20,-0.0004081632650922984,-9.82913324867018e-20,-0.0,-0.0003571428533177823,-8.06554007717837e-22,-0.0013605442363768816,-0.0004761904710903764,-1.692668886171892e-33,-0.009761904366314411,0.0008163265301845968,0.0007142857066355646,0.0009523809421807528,0.008962584659457207,1.3552527156068805e-18,-1.1011560792450884e-20,-9.82913324867018e-20,-0.0004081632650922984,1.0613271711919467e-20,-8.06554007717837e-22,-0.0003571428533177823,-1.692668886171892e-33,-0.0004761904710903764,-0.0013605442363768816,0.0005102040595375001,-0.0007653061184100807,1.0706496453294356e-18,1.4204659807393361e-18,1.3552527156068805e-18,0.0001530612207716331,-8.131516293641283e-20,-9.486769009248164e-20,-8.809142651444724e-20,-9.639471720204281e-20,-6.797283659116053e-20,-6.797283659116053e-20,-1.9420811377809942e-19,-9.063045094233022e-20,-1.9420811377809942e-19,0.0006122448830865324,-0.0002448979648761451,-0.0002040816325461492,-1.1011560792450884e-20,-1.1011560792450884e-20,-8.131516293641283e-20,8.163265010807663e-05,-1.389128669747768e-20,-1.389128669747768e-20,2.4878261484924986e-20,1.5246593050577406e-20,1.5246593050577406e-20,1.2072021629920167e-34,4.864348300214988e-35,1.2072021629920167e-34,0.0008163265301845968,-0.00032653060043230653,5.2542557745808067e-20,-0.0004081632650922984,-9.82913324867018e-20,-9.486769009248164e-20,-1.389128669747768e-20,0.00016326530021615326,1.1252263888355279e-20,5.679988703173293e-35,-8.907169693263366e-21,3.573502826499754e-35,-7.634716787620763e-20,3.5080335575113234e-20,1.0766768314801446e-34,0.0008163265301845968,-0.00032653060043230653,5.2542557745808067e-20,-9.82913324867018e-20,-0.0004081632650922984,-8.809142651444724e-20,-1.389128669747768e-20,1.1252263888355279e-20,0.00016326530021615326,5.679988703173293e-35,3.611118645726067e-35,-8.907169693263366e-21,1.0766768314801446e-34,3.5080335575113234e-20,-7.634716787620763e-20,0.00039682540227659047,4.0657581468206416e-19,-0.0004761904710903764,-0.0,1.0613271711919467e-20,-9.639471720204281e-20,2.4878261484924986e-20,5.679988703173293e-35,5.679988703173293e-35,7.936507608974352e-05,6.776263578034403e-21,6.776263578034403e-21,1.2457715790515605e-34,5.813600740505406e-35,1.2457715790515605e-34,0.0007142857066355646,3.1193875288411997e-19,-0.0002380952355451882,-0.0003571428533177823,-8.06554007717837e-22,-6.797283659116053e-20,1.5246593050577406e-20,-8.907169693263366e-21,3.611118645726067e-35,6.776263578034403e-21,0.0001190476177725941,2.68851344320462e-22,8.815062557324436e-35,3.727932822867181e-35,8.624572779418723e-35,0.0007142857066355646,3.1193875288411997e-19,-0.0002380952355451882,-8.06554007717837e-22,-0.0003571428533177823,-6.797283659116053e-20,1.5246593050577406e-20,3.573502826499754e-35,-8.907169693263366e-21,6.776263578034403e-21,2.68851344320462e-22,0.0001190476177725941,8.624572779418723e-35,3.727932822867181e-35,8.815062557324436e-35,0.0006802721181884408,1.1237348917182153e-18,-1.3980562063932407e-33,-0.0013605442363768816,-1.692668886171892e-33,-1.9420811377809942e-19,1.2072021629920167e-34,-7.634716787620763e-20,1.0766768314801446e-34,1.2457715790515605e-34,8.815062557324436e-35,8.624572779418723e-35,0.0003401360590942204,8.954848809857621e-35,2.464163552867318e-34,0.0009523809421807528,3.128309188735467e-19,-6.195420476312308e-34,-0.0004761904710903764,-0.0004761904710903764,-9.063045094233022e-20,4.864348300214988e-35,3.5080335575113234e-20,3.5080335575113234e-20,5.813600740505406e-35,3.727932822867181e-35,3.727932822867181e-35,8.954848809857621e-35,0.0002380952355451882,8.954848809857621e-35,0.0006802721181884408,1.1237348917182153e-18,-1.3980562063932407e-33,-1.692668886171892e-33,-0.0013605442363768816,-1.9420811377809942e-19,1.2072021629920167e-34,1.0766768314801446e-34,-7.634716787620763e-20,1.2457715790515605e-34,8.624572779418723e-35,8.815062557324436e-35,2.464163552867318e-34,8.954848809857621e-35,0.0003401360590942204,6.0,7.0,5.0,6.0,0.0348612442612648,-0.0071550048887729645,-0.006320861633867025,-0.008248299360275269,-0.0071550048887729645,0.00042517005931586027,0.0005102040595375001,0.0006802721181884408,0.000583090353757143,0.0003306878206785768,0.0005952381179668009,0.0005102040595375001,0.0005668934318237007,0.0006802721181884408,0.00042517005931586027,-0.0071550048887729645,0.005200437270104885,0.0005102040595375001,0.0006802721181884408,0.000583090353757143,-0.0006377550889737904,-0.0002040816325461492,-0.0002721088530961424,-0.0002332361473236233,4.743384504624082e-19,2.7773664401264223e-19,1.7984602237158555e-19,9.364456913997245e-19,3.580583630333789e-19,7.083761249908514e-19,-0.006320861633867025,0.0005102040595375001,0.0038265306502580643,0.0005952381179668009,0.0005102040595375001,8.673617379884035e-19,-0.0001700680295471102,8.38526234759502e-21,-7.115076756936123e-20,-0.00039682540227659047,-0.00019841270113829523,-0.0001700680295471102,-1.1586242620135607e-33,-3.96407322235244e-34,-6.208938523740641e-20,-0.008248299360275269,0.0006802721181884408,0.0005952381179668009,0.0075255101546645164,0.0006802721181884408,1.300247893209095e-18,-2.6788811208613798e-20,-0.0003401360590942204,-3.151904879215647e-21,-0.0,-0.00029761905898340046,4.603451555932965e-21,-0.0011337868636474013,-0.0003401360590942204,1.0468245301671327e-20,-0.0071550048887729645,0.000583090353757143,0.0005102040595375001,0.0006802721181884408,0.005200437270104885,1.0570971181733668e-18,-2.0176409363428022e-21,-7.041768521383464e-20,-0.0002332361473236233,7.610209461710606e-21,4.603451555932965e-21,-0.0002040816325461492,-1.2933846792662547e-33,-0.0002721088530961424,-0.0006377550889737904,0.00042517005931586027,-0.0006377550889737904,8.673617379884035e-19,1.300247893209095e-18,1.0570971181733668e-18,0.00012755101488437504,-6.776263578034403e-20,-1.3552527156068805e-19,-8.131516293641283e-20,-7.9779114388296e-20,-5.664402941557569e-20,-4.8552028444524855e-20,-1.6184009696919903e-19,-6.473603361780078e-20,-1.131077334576148e-19,0.0005102040595375001,-0.0002040816325461492,-0.0001700680295471102,-2.6788811208613798e-20,-2.0176409363428022e-21,-6.776263578034403e-20,6.80272132740356e-05,2.584008230193914e-21,8.411567539257452e-22,-2.557258267393522e-20,6.776263578034403e-21,-1.6940658945086007e-21,9.392419694289005e-35,3.687167907080425e-35,9.208132775623215e-22,0.0006802721181884408,-0.0002721088530961424,8.38526234759502e-21,-0.0003401360590942204,-7.041768521383464e-20,-1.3552527156068805e-19,2.584008230193914e-21,0.0001360544265480712,2.1589552928127537e-20,8.877333337409915e-35,-7.422641411052805e-21,5.764624296432498e-35,-6.362264205095587e-20,8.221903062345034e-21,1.1134282490988707e-34,0.000583090353757143,-0.0002332361473236233,-7.115076756936123e-20,-3.151904879215647e-21,-0.0002332361473236233,-8.131516293641283e-20,8.411567539257452e-22,2.1589552928127537e-20,9.329446038464084e-05,1.6177843323947262e-22,3.7098601711951394e-35,2.71985257213561e-20,1.0360814095809854e-34,-2.0328790734103208e-20,-5.792546789373957e-20,0.0003306878206785768,4.743384504624082e-19,-0.00039682540227659047,-0.0,7.610209461710606e-21,-7.9779114388296e-20,-2.557258267393522e-20,8.877333337409915e-35,1.6177843323947262e-22,6.613756704609841e-05,-6.776263578034403e-21,-6.776263578034403e-21,1.038143001675362e-34,4.1523109643036193e-35,-1.620233057618728e-21,0.0005952381179668009,2.7773664401264223e-19,-0.00019841270113829523,-0.00029761905898340046,4.603451555932965e-21,-5.664402941557569e-20,6.776263578034403e-21,-7.422641411052805e-21,3.7098601711951394e-35,-6.776263578034403e-21,9.920635056914762e-05,-1.5344838519776551e-21,7.345885177451105e-35,2.7545394135101573e-35,4.894642534510106e-35,0.0005102040595375001,1.7984602237158555e-19,-0.0001700680295471102,4.603451555932965e-21,-0.0002040816325461492,-4.8552028444524855e-20,-1.6940658945086007e-21,5.764624296432498e-35,2.71985257213561e-20,-6.776263578034403e-21,-1.5344838519776551e-21,6.80272132740356e-05,6.160408882168295e-35,0.0,2.8127546484481187e-20,0.0005668934318237007,9.364456913997245e-19,-1.1586242620135607e-33,-0.0011337868636474013,-1.2933846792662547e-33,-1.6184009696919903e-19,9.392419694289005e-35,-6.362264205095587e-20,1.0360814095809854e-34,1.038143001675362e-34,7.345885177451105e-35,6.160408882168295e-35,0.00028344671591185033,7.183592340697001e-35,1.4117603353485429e-34,0.0006802721181884408,3.580583630333789e-19,-3.96407322235244e-34,-0.0003401360590942204,-0.0002721088530961424,-6.473603361780078e-20,3.687167907080425e-35,8.221903062345034e-21,-2.0328790734103208e-20,4.1523109643036193e-35,2.7545394135101573e-35,0.0,7.183592340697001e-35,0.0001360544265480712,-4.187298120668531e-21,0.00042517005931586027,7.083761249908514e-19,-6.208938523740641e-20,1.0468245301671327e-20,-0.0006377550889737904,-1.131077334576148e-19,9.208132775623215e-22,1.1134282490988707e-34,-5.792546789373957e-20,-1.620233057618728e-21,4.894642534510106e-35,2.8127546484481187e-20,1.4117603353485429e-34,-4.187298120668531e-21,0.00012755101488437504,6.0,7.0,5.0,7.0,0.030622368678450584,-0.006195335183292627,-0.005472545977681875,-0.0071428571827709675,-0.005472545977681875,0.00036443150020204484,0.0004373177944216877,0.000583090353757143,0.0004373177944216877,0.00028344671591185033,0.0005102040595375001,0.00038265305920504034,0.00048590864753350616,0.0005102040595375001,0.00028344671591185033,-0.006195335183292627,0.004482507240027189,0.0004373177944216877,0.000583090353757143,0.0004373177944216877,-0.000546647235751152,-0.0001749271177686751,-0.0002332361473236233,-0.0001749271177686751,6.261794460153984e-19,-1.80214544259175e-19,3.6113614699632384e-19,-9.54981568156119e-19,-7.230259718529571e-20,7.992748474079387e-19,-0.005472545977681875,0.0004373177944216877,0.0032981049735099077,0.0005102040595375001,0.00038265305920504034,5.692061405548898e-19,-0.00014577258843928576,-5.309193104210487e-19,5.55653613398821e-19,-0.0003401360590942204,-0.0001700680295471102,-0.00012755101488437504,-2.8838757667623987e-19,2.419844503720284e-19,9.20412966574492e-19,-0.0071428571827709675,0.000583090353757143,0.0005102040595375001,0.0064868805930018425,0.0005102040595375001,-1.0577063366945121e-18,-1.6045360009089237e-19,-0.0002915451768785715,6.779426509901652e-19,-2.574980159653073e-19,-0.00025510202976875007,8.189071262168781e-20,-0.0009718172950670123,-0.00025510202976875007,6.575354848930226e-19,-0.005472545977681875,0.0004373177944216877,0.00038265305920504034,0.0005102040595375001,0.0032981049735099077,5.831890084246393e-19,4.755973676559256e-19,2.0302302859925612e-19,-0.00014577258843928576,1.037910250274893e-18,3.717357427631549e-19,-0.00012755101488437504,1.1636339485647106e-18,-0.0001700680295471102,-0.0003401360590942204,0.00036443150020204484,-0.000546647235751152,5.692061405548898e-19,-1.0577063366945121e-18,5.831890084246393e-19,0.00010932944860542193,-4.0657581468206416e-20,-0.0,-4.0657581468206416e-20,-7.182985700287312e-20,3.4896769333786085e-20,-3.641401891001294e-20,1.7918010320438915e-19,3.4896769333786085e-20,-7.255162378611392e-20,0.0004373177944216877,-0.0001749271177686751,-0.00014577258843928576,-1.6045360009089237e-19,4.755973676559256e-19,-4.0657581468206416e-20,5.8309036830905825e-05,-7.824323325539592e-22,-1.8713190675513505e-20,-7.951759606775853e-20,3.3881317890172014e-21,-2.795208725939191e-20,2.774401579241788e-20,-2.4276014222262428e-21,-5.663926666470497e-20,0.000583090353757143,-0.0002332361473236233,-5.309193104210487e-19,-0.0002915451768785715,2.0302302859925612e-19,-0.0,-7.824323325539592e-22,0.00011661807366181165,-3.049199379785e-21,7.013070524006703e-20,5.604558362943918e-20,-7.222237291452134e-35,1.5438859551737993e-19,7.496045612481217e-21,-2.6973348417808416e-20,0.0004373177944216877,-0.0001749271177686751,5.55653613398821e-19,6.779426509901652e-19,-0.00014577258843928576,-4.0657581468206416e-20,-1.8713190675513505e-20,-3.049199379785e-21,5.8309036830905825e-05,-5.600459941502659e-20,-3.8841622755619884e-20,-3.1736596889361134e-20,-1.1097606316967152e-19,-3.663017800617924e-20,-7.053977190236864e-20,0.00028344671591185033,6.261794460153984e-19,-0.0003401360590942204,-2.574980159653073e-19,1.037910250274893e-18,-7.182985700287312e-20,-7.951759606775853e-20,7.013070524006703e-20,-5.600459941502659e-20,5.668934318237007e-05,-1.0164395367051604e-20,-7.115076756936123e-20,1.7982232817067988e-20,-1.416100735389392e-20,-1.096028011811657e-19,0.0005102040595375001,-1.80214544259175e-19,-0.0001700680295471102,-0.00025510202976875007,3.717357427631549e-19,3.4896769333786085e-20,3.3881317890172014e-21,5.604558362943918e-20,-3.8841622755619884e-20,-1.0164395367051604e-20,8.50340147735551e-05,-3.5799819533733845e-21,5.556707256977432e-20,-3.9899312109262445e-20,-2.360167946168558e-20,0.00038265305920504034,3.6113614699632384e-19,-0.00012755101488437504,8.189071262168781e-20,-0.00012755101488437504,-3.641401891001294e-20,-2.795208725939191e-20,-7.222237291452134e-35,-3.1736596889361134e-20,-7.115076756936123e-20,-3.5799819533733845e-21,4.251700738677755e-05,6.921310737641629e-35,-2.371692252312041e-20,-2.457975591254418e-20,0.00048590864753350616,-9.54981568156119e-19,-2.8838757667623987e-19,-0.0009718172950670123,1.1636339485647106e-18,1.7918010320438915e-19,2.774401579241788e-20,1.5438859551737993e-19,-1.1097606316967152e-19,1.7982232817067988e-20,5.556707256977432e-20,6.921310737641629e-35,0.00024295432376675308,-9.244335296405943e-20,-8.991115923857854e-20,0.0005102040595375001,-7.230259718529571e-20,2.419844503720284e-19,-0.00025510202976875007,-0.0001700680295471102,3.4896769333786085e-20,-2.4276014222262428e-21,7.496045612481217e-21,-3.663017800617924e-20,-1.416100735389392e-20,-3.9899312109262445e-20,-2.371692252312041e-20,-9.244335296405943e-20,8.50340147735551e-05,-4.272783359566765e-20,0.00028344671591185033,7.992748474079387e-19,9.20412966574492e-19,6.575354848930226e-19,-0.0003401360590942204,-7.255162378611392e-20,-5.663926666470497e-20,-2.6973348417808416e-20,-7.053977190236864e-20,-1.096028011811657e-19,-2.360167946168558e-20,-2.457975591254418e-20,-8.991115923857854e-20,-4.272783359566765e-20,5.668934318237007e-05,6.0,7.0,5.0,8.0,0.027310090139508247,-0.005463435314595699,-0.004825680050998926,-0.0062996032647788525,-0.004322562366724014,0.0003188775444868952,0.00038265305920504034,0.0005102040595375001,0.0003401360590942204,0.00024801588733680546,0.00044642857392318547,0.00029761905898340046,0.00042517005931586027,0.00039682540227659047,0.00019841270113829523,-0.005463435314595699,0.003939200658351183,0.00038265305920504034,0.0005102040595375001,0.0003401360590942204,-0.00047831633128225803,-0.0001530612207716331,-0.0002040816325461492,-0.0001360544265480712,-3.0699231621862943e-19,-1.3908956180090608e-18,-4.2847069096027753e-19,-3.1997134871625756e-18,-1.2934254109143342e-18,-1.613104299585266e-19,-0.004825680050998926,0.00038265305920504034,0.0028982425574213266,0.00044642857392318547,0.00029761905898340046,-7.397272007848002e-19,-0.00012755101488437504,-1.671391943340333e-18,-1.0164395367051604e-20,-0.00029761905898340046,-0.00014880952949170023,-9.920635056914762e-05,-2.873871947831759e-18,-1.0232158002831948e-18,-2.3154599972828033e-19,-0.0062996032647788525,0.0005102040595375001,0.00044642857392318547,0.005700821988284588,0.00039682540227659047,-3.1327207497373653e-18,-1.6002987682211208e-18,-0.00025510202976875007,-1.2733341761123986e-19,-2.236166980751353e-18,-0.00022321428696159273,-6.509980180180746e-19,-0.0008503401186317205,-0.00019841270113829523,1.465850802473055e-20,-0.004322562366724014,0.0003401360590942204,0.00029761905898340046,0.00039682540227659047,0.0022270812187343836,-8.112943503950054e-19,-5.339743986159367e-19,-7.857721578837762e-19,-9.718172805150971e-05,-3.917632588085298e-19,-3.4558944247975454e-19,-8.50340147735551e-05,3.1657292886837173e-19,-0.00011337868636474013,-0.00019841270113829523,0.0003188775444868952,-0.00047831633128225803,-7.397272007848002e-19,-3.1327207497373653e-18,-8.112943503950054e-19,9.566326480126008e-05,5.468171789570409e-20,1.60499133798674e-19,3.327300086664742e-20,1.6521176592532187e-20,1.4692045998043028e-19,4.231444039102147e-20,3.9448522586110626e-19,1.429587430600929e-19,3.540251919252837e-20,0.00038265305920504034,-0.0001530612207716331,-0.00012755101488437504,-1.6002987682211208e-18,-5.339743986159367e-19,5.468171789570409e-20,5.10204081365373e-05,9.758495255532419e-20,3.5560510689526e-20,-3.3881317890172014e-21,6.776263578034403e-20,2.541098841762901e-20,1.8611610311352579e-19,8.113349339438087e-20,2.2295726064352007e-20,0.0005102040595375001,-0.0002040816325461492,-1.671391943340333e-18,-0.00025510202976875007,-7.857721578837762e-19,1.60499133798674e-19,9.758495255532419e-20,0.0001020408162730746,6.65856353168635e-20,1.3594567318232106e-19,1.699320947090756e-19,5.826243413342983e-20,3.8841622755619884e-19,1.0789339367123366e-19,3.021015139116816e-20,0.0003401360590942204,-0.0001360544265480712,-1.0164395367051604e-20,-1.2733341761123986e-19,-9.718172805150971e-05,3.327300086664742e-20,3.5560510689526e-20,6.65856353168635e-20,3.887269122060388e-05,-2.1458058675712882e-20,1.2905246209842557e-20,-6.049873792209968e-21,-4.932269581913432e-20,1.6864018722628408e-20,-4.949137280943551e-20,0.00024801588733680546,-3.0699231621862943e-19,-0.00029761905898340046,-2.236166980751353e-18,-3.917632588085298e-19,1.6521176592532187e-20,-3.3881317890172014e-21,1.3594567318232106e-19,-2.1458058675712882e-20,4.960317528457381e-05,1.0164395367051604e-19,2.371692252312041e-20,2.8322015354022696e-19,9.280684068213966e-20,2.148831862273069e-20,0.00044642857392318547,-1.3908956180090608e-18,-0.00014880952949170023,-0.00022321428696159273,-3.4558944247975454e-19,1.4692045998043028e-19,6.776263578034403e-20,1.699320947090756e-19,1.2905246209842557e-20,1.0164395367051604e-19,7.440476474585012e-05,3.9810548520952116e-20,2.2875475629940256e-19,5.557536376294546e-20,1.0928446912347777e-20,0.00029761905898340046,-4.2847069096027753e-19,-9.920635056914762e-05,-6.509980180180746e-19,-8.50340147735551e-05,4.231444039102147e-20,2.541098841762901e-20,5.826243413342983e-20,-6.049873792209968e-21,2.371692252312041e-20,3.9810548520952116e-20,2.8344671591185033e-05,5.844225544378061e-20,3.0881376146512266e-20,9.318894400297017e-22,0.00042517005931586027,-3.1997134871625756e-18,-2.873871947831759e-18,-0.0008503401186317205,3.1657292886837173e-19,3.9448522586110626e-19,1.8611610311352579e-19,3.8841622755619884e-19,-4.932269581913432e-20,2.8322015354022696e-19,2.2875475629940256e-19,5.844225544378061e-20,0.00021258502965793014,-2.0208603976038667e-20,-3.1468907025972196e-20,0.00039682540227659047,-1.2934254109143342e-18,-1.0232158002831948e-18,-0.00019841270113829523,-0.00011337868636474013,1.429587430600929e-19,8.113349339438087e-20,1.0789339367123366e-19,1.6864018722628408e-20,9.280684068213966e-20,5.557536376294546e-20,3.0881376146512266e-20,-2.0208603976038667e-20,5.668934318237007e-05,8.30400225275386e-22,0.00019841270113829523,-1.613104299585266e-19,-2.3154599972828033e-19,1.465850802473055e-20,-0.00019841270113829523,3.540251919252837e-20,2.2295726064352007e-20,3.021015139116816e-20,-4.949137280943551e-20,2.148831862273069e-20,1.0928446912347777e-20,9.318894400297017e-22,-3.1468907025972196e-20,8.30400225275386e-22,2.8344671591185033e-05,6.0,7.0,6.0,3.0,0.051889870315790176,-0.011358114890754223,-0.010038738138973713,-0.011358114890754223,-0.018920067697763443,0.0007086168043315411,0.0008503401186317205,0.0009718172950670123,0.001700680237263441,0.0005511463969014585,0.0008503401186317205,0.0014880952658131719,0.0007086168043315411,0.001700680237263441,0.0019841270986944437,-0.011358114890754223,0.008440637961030006,0.0008503401186317205,0.0009718172950670123,0.001700680237263441,-0.0010629252064973116,-0.0003401360590942204,-0.00038872691220603883,-0.0006802721181884408,8.402566836762659e-19,2.8242163990577773e-19,5.417793646832574e-19,7.318364664277155e-19,7.726770616064493e-19,5.27703428654838e-18,-0.010038738138973713,0.0008503401186317205,0.006212207023054361,0.0008503401186317205,0.0014880952658131719,1.1926223897340549e-18,-0.00028344671591185033,3.6268263869967415e-20,8.411484942365232e-21,-0.0006613756413571537,-0.00028344671591185033,-0.0004960317746736109,-2.1143851858212627e-19,2.710505431213761e-20,-4.140749380432557e-33,-0.011358114890754223,0.0009718172950670123,0.0008503401186317205,0.008440637961030006,0.001700680237263441,1.6585016776621895e-18,1.8453772618250097e-20,-0.00038872691220603883,-2.508484338056157e-20,2.710505431213761e-20,-0.0003401360590942204,0.0,-0.0010629252064973116,-0.0006802721181884408,5.27703428654838e-18,-0.018920067697763443,0.001700680237263441,0.0014880952658131719,0.001700680237263441,0.038761336356401443,3.469446951953614e-18,9.360710561304204e-20,-1.2379902995016562e-19,-0.001700680237263441,-7.029918028197648e-21,2.541098841762901e-20,-0.0014880952658131719,2.656295322589486e-18,-0.001700680237263441,-0.011904762126505375,0.0007086168043315411,-0.0010629252064973116,1.1926223897340549e-18,1.6585016776621895e-18,3.469446951953614e-18,0.00021258502965793014,1.3552527156068805e-20,-1.3552527156068805e-19,-2.710505431213761e-19,-1.484428988225312e-19,-8.092004848459951e-20,-1.4161007677011348e-19,-1.9629060559368702e-19,-1.6184009696919903e-19,-9.440672301662115e-19,0.0008503401186317205,-0.0003401360590942204,-0.00028344671591185033,1.8453772618250097e-20,9.360710561304204e-20,1.3552527156068805e-20,0.00011337868636474013,-3.253098108309614e-20,-5.360998585869373e-20,-3.0197821230162293e-20,2.371692252312041e-20,1.3552527156068805e-20,-1.5075912934178577e-21,-9.589052375955564e-23,-1.3896449299838605e-37,0.0009718172950670123,-0.00038872691220603883,3.6268263869967415e-20,-0.00038872691220603883,-1.2379902995016562e-19,-1.3552527156068805e-19,-3.253098108309614e-20,0.00015549076488241553,2.2414558960398345e-20,-9.182519661099264e-22,2.041113074796918e-20,3.76158192263132e-35,1.0350727493551977e-19,2.710505431213761e-20,9.62964972193618e-35,0.001700680237263441,-0.0006802721181884408,8.411484942365232e-21,-2.508484338056157e-20,-0.001700680237263441,-2.710505431213761e-19,-5.360998585869373e-20,2.2414558960398345e-20,0.0006802721181884408,1.9560225997682864e-34,9.930576275746685e-35,1.2561347647319483e-19,3.7314892672502695e-34,-3.0951554020434294e-20,-5.566980840185341e-19,0.0005511463969014585,8.402566836762659e-19,-0.0006613756413571537,2.710505431213761e-20,-7.029918028197648e-21,-1.484428988225312e-19,-3.0197821230162293e-20,-9.182519661099264e-22,1.9560225997682864e-34,0.00011022927355952561,-6.776263578034403e-21,0.0,-4.825283180474753e-22,-2.2374455543896316e-22,6.233603838904877e-34,0.0008503401186317205,2.8242163990577773e-19,-0.00028344671591185033,-0.0003401360590942204,2.541098841762901e-20,-8.092004848459951e-20,2.371692252312041e-20,2.041113074796918e-20,9.930576275746685e-35,-6.776263578034403e-21,0.00011337868636474013,-0.0,8.733757417072733e-20,-1.0164395367051604e-20,-4.81482486096809e-35,0.0014880952658131719,5.417793646832574e-19,-0.0004960317746736109,0.0,-0.0014880952658131719,-1.4161007677011348e-19,1.3552527156068805e-20,3.76158192263132e-35,1.2561347647319483e-19,0.0,-0.0,0.0004960317746736109,-7.616798743173477e-36,-0.0,5.1241672196465135e-34,0.0007086168043315411,7.318364664277155e-19,-2.1143851858212627e-19,-0.0010629252064973116,2.656295322589486e-18,-1.9629060559368702e-19,-1.5075912934178577e-21,1.0350727493551977e-19,3.7314892672502695e-34,-4.825283180474753e-22,8.733757417072733e-20,-7.616798743173477e-36,0.00021258502965793014,-2.7791836525346247e-19,-9.440672301662115e-19,0.001700680237263441,7.726770616064493e-19,2.710505431213761e-20,-0.0006802721181884408,-0.001700680237263441,-1.6184009696919903e-19,-9.589052375955564e-23,2.710505431213761e-20,-3.0951554020434294e-20,-2.2374455543896316e-22,-1.0164395367051604e-20,-0.0,-2.7791836525346247e-19,0.0006802721181884408,-5.566980840185341e-19,0.0019841270986944437,5.27703428654838e-18,-4.140749380432557e-33,5.27703428654838e-18,-0.011904762126505375,-9.440672301662115e-19,-1.3896449299838605e-37,9.62964972193618e-35,-5.566980840185341e-19,6.233603838904877e-34,-4.81482486096809e-35,5.1241672196465135e-34,-9.440672301662115e-19,-5.566980840185341e-19,0.0059523810632526875,6.0,7.0,6.0,4.0,0.04165620729327202,-0.008773688226938248,-0.0077522676438093185,-0.008773688226938248,-0.01194727886468172,0.0005314626032486558,0.0006377550889737904,0.0007288630004040897,0.0010204081190750003,0.00041335978312417865,0.0006377550889737904,0.0008928571478463709,0.0005314626032486558,0.0010204081190750003,0.0009920635493472219,-0.008773688226938248,0.006432519294321537,0.0006377550889737904,0.0007288630004040897,0.0010204081190750003,-0.0007971939048729837,-0.00025510202976875007,-0.0002915451768785715,-0.0004081632650922984,4.607859233063394e-19,1.993493514778462e-19,4.246571556918608e-19,8.402566836762659e-19,3.4697372923486203e-19,1.8859308511805817e-18,-0.0077522676438093185,0.0006377550889737904,0.004733560141175985,0.0006377550889737904,0.0008928571478463709,1.1248597539537109e-18,-0.00021258502965793014,-9.714728353840414e-20,3.5399436652276903e-20,-0.0004960317746736109,-0.00021258502965793014,-0.00029761905898340046,-6.741172379251401e-20,1.3552527156068805e-20,-2.3833383061792044e-33,-0.008773688226938248,0.0007288630004040897,0.0006377550889737904,0.006432519294321537,0.0010204081190750003,1.3563851258654656e-18,-8.934175847793515e-21,-0.0002915451768785715,-1.2887520472485627e-19,-0.0,-0.00025510202976875007,-2.4904107647893e-20,-0.0007971939048729837,-0.0004081632650922984,1.8859308511805817e-18,-0.01194727886468172,0.0010204081190750003,0.0008928571478463709,0.0010204081190750003,0.014909297227859497,1.8973538018496328e-18,-5.4092256389619156e-21,-1.0930227612486754e-19,-0.0006802721181884408,2.3165042804944088e-20,-8.470329472543003e-21,-0.0005952381179668009,1.4094628242311558e-18,-0.0006802721181884408,-0.0029761905316263437,0.0005314626032486558,-0.0007971939048729837,1.1248597539537109e-18,1.3563851258654656e-18,1.8973538018496328e-18,0.0001594387722434476,-1.0164395367051604e-19,-1.4907779871675686e-19,-1.4907779871675686e-19,-1.0346119839046115e-19,-6.06900347478625e-20,-8.49660473545378e-20,-1.39410241629817e-19,-9.710405688904971e-20,-3.304235253882952e-19,0.0006377550889737904,-0.00025510202976875007,-0.00021258502965793014,-8.934175847793515e-21,-5.4092256389619156e-21,-1.0164395367051604e-19,8.50340147735551e-05,-1.8071166042027376e-21,-6.143321371518235e-21,1.800921473779113e-20,3.3881317890172014e-21,6.776263578034403e-21,5.573087977655718e-22,1.7549524763365144e-22,2.3377423496787464e-34,0.0007288630004040897,-0.0002915451768785715,-9.714728353840414e-20,-0.0002915451768785715,-1.0930227612486754e-19,-1.4907779871675686e-19,-1.8071166042027376e-21,0.00011661807366181165,2.0058981220394603e-20,1.1996002050771845e-21,3.757456623412191e-20,-4.5828350485173614e-23,-5.789481697463536e-20,2.371692252312041e-20,4.092601131822876e-34,0.0010204081190750003,-0.0004081632650922984,3.5399436652276903e-20,-1.2887520472485627e-19,-0.0006802721181884408,-1.4907779871675686e-19,-6.143321371518235e-21,2.0058981220394603e-20,0.0002721088530961424,9.855344637294058e-35,6.488728816539027e-35,-1.3360754539895049e-20,1.3541694921472752e-34,5.24851720908122e-20,-1.5587546559314107e-19,0.00041335978312417865,4.607859233063394e-19,-0.0004960317746736109,-0.0,2.3165042804944088e-20,-1.0346119839046115e-19,1.800921473779113e-20,1.1996002050771845e-21,9.855344637294058e-35,8.26719551696442e-05,-6.776263578034403e-21,-6.776263578034403e-21,3.091674983070563e-21,4.094889111451867e-22,2.148025137884462e-34,0.0006377550889737904,1.993493514778462e-19,-0.00021258502965793014,-0.00025510202976875007,-8.470329472543003e-21,-6.06900347478625e-20,3.3881317890172014e-21,3.757456623412191e-20,6.488728816539027e-35,-6.776263578034403e-21,8.50340147735551e-05,8.470329472543003e-21,1.8444213189178854e-20,-6.776263578034403e-21,9.62964972193618e-35,0.0008928571478463709,4.246571556918608e-19,-0.00029761905898340046,-2.4904107647893e-20,-0.0005952381179668009,-8.49660473545378e-20,6.776263578034403e-21,-4.5828350485173614e-23,-1.3360754539895049e-20,-6.776263578034403e-21,8.470329472543003e-21,0.00019841270113829523,-1.2531190532422746e-22,1.9181048149720689e-22,1.7861487428063402e-34,0.0005314626032486558,8.402566836762659e-19,-6.741172379251401e-20,-0.0007971939048729837,1.4094628242311558e-18,-1.39410241629817e-19,5.573087977655718e-22,-5.789481697463536e-20,1.3541694921472752e-34,3.091674983070563e-21,1.8444213189178854e-20,-1.2531190532422746e-22,0.0001594387722434476,-1.5625780398189957e-19,-3.304235253882952e-19,0.0010204081190750003,3.4697372923486203e-19,1.3552527156068805e-20,-0.0004081632650922984,-0.0006802721181884408,-9.710405688904971e-20,1.7549524763365144e-22,2.371692252312041e-20,5.24851720908122e-20,4.094889111451867e-22,-6.776263578034403e-21,1.9181048149720689e-22,-1.5625780398189957e-19,0.0002721088530961424,-1.5587546559314107e-19,0.0009920635493472219,1.8859308511805817e-18,-2.3833383061792044e-33,1.8859308511805817e-18,-0.0029761905316263437,-3.304235253882952e-19,2.3377423496787464e-34,4.092601131822876e-34,-1.5587546559314107e-19,2.148025137884462e-34,9.62964972193618e-35,1.7861487428063402e-34,-3.304235253882952e-19,-1.5587546559314107e-19,0.0009920635493472219,6.0,7.0,6.0,5.0,0.0348612442612648,-0.0071550048887729645,-0.006320861633867025,-0.0071550048887729645,-0.008248299360275269,0.00042517005931586027,0.0005102040595375001,0.000583090353757143,0.0006802721181884408,0.0003306878206785768,0.0005102040595375001,0.0005952381179668009,0.00042517005931586027,0.0006802721181884408,0.0005668934318237007,-0.0071550048887729645,0.005200437270104885,0.0005102040595375001,0.000583090353757143,0.0006802721181884408,-0.0006377550889737904,-0.0002040816325461492,-0.0002332361473236233,-0.0002721088530961424,4.607859233063394e-19,1.8033455007148054e-19,2.7773664401264223e-19,6.640738306473715e-19,3.9947997504424873e-19,9.364456913997245e-19,-0.006320861633867025,0.0005102040595375001,0.0038265306502580643,0.0005102040595375001,0.0005952381179668009,8.809142651444724e-19,-0.0001700680295471102,-6.915912991183521e-20,8.38526234759502e-21,-0.00039682540227659047,-0.0001700680295471102,-0.00019841270113829523,-6.144603905364476e-20,-4.235164736271502e-21,-1.1546333668570229e-33,-0.0071550048887729645,0.000583090353757143,0.0005102040595375001,0.005200437270104885,0.0006802721181884408,1.0244715638506269e-18,-2.9557643212770204e-21,-0.0002332361473236233,2.2078450597476188e-20,-0.0,-0.0002040816325461492,8.286755153280185e-21,-0.0006377550889737904,-0.0002721088530961424,9.364456913997245e-19,-0.008248299360275269,0.0006802721181884408,0.0005952381179668009,0.0006802721181884408,0.0075255101546645164,1.2739375526704677e-18,-2.6788811208613798e-20,6.486325787342056e-20,-0.0003401360590942204,2.5595504624190888e-21,4.051590820905467e-21,-0.00029761905898340046,1.0028870095490916e-18,-0.0003401360590942204,-0.0011337868636474013,0.00042517005931586027,-0.0006377550889737904,8.809142651444724e-19,1.0244715638506269e-18,1.2739375526704677e-18,0.00012755101488437504,-6.776263578034403e-20,-8.809142651444724e-20,-1.3552527156068805e-19,-7.719025879085524e-20,-4.8552028444524855e-20,-5.664402941557569e-20,-1.0541477927746119e-19,-6.473603361780078e-20,-1.6184009696919903e-19,0.0005102040595375001,-0.0002040816325461492,-0.0001700680295471102,-2.9557643212770204e-21,-2.6788811208613798e-20,-6.776263578034403e-20,6.80272132740356e-05,7.560749372322637e-22,2.584008230193914e-21,-2.557258267393522e-20,-1.6940658945086007e-21,6.776263578034403e-21,1.1328823129507791e-21,3.582781655442817e-35,9.976518130643422e-35,0.000583090353757143,-0.0002332361473236233,-6.915912991183521e-20,-0.0002332361473236233,6.486325787342056e-20,-8.809142651444724e-20,7.560749372322637e-22,9.329446038464084e-05,-2.2283817571588084e-21,-3.674577520936253e-23,2.7003115610750387e-20,3.8086016966642115e-35,-5.715787659703304e-20,-2.371692252312041e-20,2.1064858766735392e-34,0.0006802721181884408,-0.0002721088530961424,8.38526234759502e-21,2.2078450597476188e-20,-0.0003401360590942204,-1.3552527156068805e-19,2.584008230193914e-21,-2.2283817571588084e-21,0.0001360544265480712,8.877333337409915e-35,5.073433618148993e-35,-7.422641411052805e-21,1.7190429386425133e-34,-8.253747900341192e-21,-6.362264205095587e-20,0.0003306878206785768,4.607859233063394e-19,-0.00039682540227659047,-0.0,2.5595504624190888e-21,-7.719025879085524e-20,-2.557258267393522e-20,-3.674577520936253e-23,8.877333337409915e-35,6.613756704609841e-05,-6.776263578034403e-21,-6.776263578034403e-21,-1.5952648652837885e-21,4.1368131503551073e-35,1.038143001675362e-34,0.0005102040595375001,1.8033455007148054e-19,-0.0001700680295471102,-0.0002040816325461492,4.051590820905467e-21,-4.8552028444524855e-20,-1.6940658945086007e-21,2.7003115610750387e-20,5.073433618148993e-35,-6.776263578034403e-21,6.80272132740356e-05,-2.7622519197084535e-21,2.7593223351688876e-20,1.6940658945086007e-21,5.416677968589101e-35,0.0005952381179668009,2.7773664401264223e-19,-0.00019841270113829523,8.286755153280185e-21,-0.00029761905898340046,-5.664402941557569e-20,6.776263578034403e-21,3.8086016966642115e-35,-7.422641411052805e-21,-6.776263578034403e-21,-2.7622519197084535e-21,9.920635056914762e-05,4.852440680194403e-35,2.8964180804261164e-35,7.345885177451105e-35,0.00042517005931586027,6.640738306473715e-19,-6.144603905364476e-20,-0.0006377550889737904,1.0028870095490916e-18,-1.0541477927746119e-19,1.1328823129507791e-21,-5.715787659703304e-20,1.7190429386425133e-34,-1.5952648652837885e-21,2.7593223351688876e-20,4.852440680194403e-35,0.00012755101488437504,-1.390882228022895e-19,-1.6184009696919903e-19,0.0006802721181884408,3.9947997504424873e-19,-4.235164736271502e-21,-0.0002721088530961424,-0.0003401360590942204,-6.473603361780078e-20,3.582781655442817e-35,-2.371692252312041e-20,-8.253747900341192e-21,4.1368131503551073e-35,1.6940658945086007e-21,2.8964180804261164e-35,-1.390882228022895e-19,0.0001360544265480712,-6.362264205095587e-20,0.0005668934318237007,9.364456913997245e-19,-1.1546333668570229e-33,9.364456913997245e-19,-0.0011337868636474013,-1.6184009696919903e-19,9.976518130643422e-35,2.1064858766735392e-34,-6.362264205095587e-20,1.038143001675362e-34,5.416677968589101e-35,7.345885177451105e-35,-1.6184009696919903e-19,-6.362264205095587e-20,0.00028344671591185033,6.0,7.0,6.0,6.0,0.02999923564493656,-0.006043488625437021,-0.005338246468454599,-0.006043488625437021,-0.006043488625437021,0.00035430840216577053,0.00042517005931586027,0.00048590864753350616,0.00048590864753350616,0.00027557319845072925,0.00042517005931586027,0.00042517005931586027,0.00035430840216577053,0.00048590864753350616,0.00035430840216577053,-0.006043488625437021,0.004366091452538967,0.00042517005931586027,0.00048590864753350616,0.00048590864753350616,-0.0005314626032486558,-0.0001700680295471102,-0.00019436345610301942,-0.00019436345610301942,4.2012834183813297e-19,1.397520869426516e-19,1.3744338707892489e-19,3.5236570605778894e-19,1.7032265320517133e-19,3.356842906865559e-19,-0.005338246468454599,0.00042517005931586027,0.003212396055459976,0.00042517005931586027,0.00042517005931586027,6.098637220230962e-19,-0.00014172335795592517,1.4918675714424085e-20,2.0328790734103208e-20,-0.0003306878206785768,-0.00014172335795592517,-0.00014172335795592517,-1.1525809285752298e-19,-7.592902964166211e-23,-1.0423291912788191e-19,-0.006043488625437021,0.00048590864753350616,0.00042517005931586027,0.004366091452538967,0.00048590864753350616,8.593844598597304e-19,4.336469319708672e-21,-0.00019436345610301942,-6.455853229057427e-20,-0.0,-0.0001700680295471102,-1.0164395367051604e-20,-0.0005314626032486558,-0.00019436345610301942,3.6158422039438616e-19,-0.006043488625437021,0.00048590864753350616,0.00042517005931586027,0.00048590864753350616,0.004366091452538967,8.673617379884035e-19,2.450622529142254e-21,-1.9285124676782836e-20,-0.00019436345610301942,-8.742583369585188e-21,8.792672225290828e-21,-0.0001700680295471102,6.505213034913027e-19,-0.00019436345610301942,-0.0005314626032486558,0.00035430840216577053,-0.0005314626032486558,6.098637220230962e-19,8.593844598597304e-19,8.673617379884035e-19,0.00010629251482896507,-0.0,-6.776263578034403e-20,-6.776263578034403e-20,-7.219023633130775e-20,-4.046002424229976e-20,-4.046002424229976e-20,-9.29720829341942e-20,-4.6240026320696465e-20,-9.201180379120256e-20,0.00042517005931586027,-0.0001700680295471102,-0.00014172335795592517,4.336469319708672e-21,2.450622529142254e-21,-0.0,5.668934318237007e-05,-1.6112759396258397e-20,-1.636858923449743e-20,-1.8487042404098348e-20,1.1858461261560205e-20,1.3552527156068805e-20,6.819025367434605e-23,-8.568707381697301e-36,-4.0296002061453896e-22,0.00048590864753350616,-0.00019436345610301942,1.4918675714424085e-20,-0.00019436345610301942,-1.9285124676782836e-20,-6.776263578034403e-20,-1.6112759396258397e-20,7.774538244120777e-05,4.728018978511056e-21,-1.0275321604908221e-22,1.0645238526744233e-20,-2.3279111132584186e-22,4.497737388972548e-20,3.3881317890172014e-21,-5.65501692557031e-23,0.00048590864753350616,-0.00019436345610301942,2.0328790734103208e-20,-6.455853229057427e-20,-0.00019436345610301942,-6.776263578034403e-20,-1.636858923449743e-20,4.728018978511056e-21,7.774538244120777e-05,-6.99690087978746e-22,1.4381783747601787e-22,9.91244940028245e-21,-1.8449129433449064e-23,2.0962858600954916e-20,5.016896944043569e-20,0.00027557319845072925,4.2012834183813297e-19,-0.0003306878206785768,-0.0,-8.742583369585188e-21,-7.219023633130775e-20,-1.8487042404098348e-20,-1.0275321604908221e-22,-6.99690087978746e-22,5.5114636779762805e-05,-3.3881317890172014e-21,0.0,6.925253124496177e-22,2.9340338996524296e-35,-4.478549908766551e-22,0.00042517005931586027,1.397520869426516e-19,-0.00014172335795592517,-0.0001700680295471102,8.792672225290828e-21,-4.046002424229976e-20,1.1858461261560205e-20,1.0645238526744233e-20,1.4381783747601787e-22,-3.3881317890172014e-21,5.668934318237007e-05,4.730768303916158e-22,4.487101978870133e-20,-5.082197683525802e-21,3.9325188179633123e-22,0.00042517005931586027,1.3744338707892489e-19,-0.00014172335795592517,-1.0164395367051604e-20,-0.0001700680295471102,-4.046002424229976e-20,1.3552527156068805e-20,-2.3279111132584186e-22,9.91244940028245e-21,0.0,4.730768303916158e-22,5.668934318237007e-05,-6.365382005536252e-22,5.11256910605585e-21,4.2867297539413796e-20,0.00035430840216577053,3.5236570605778894e-19,-1.1525809285752298e-19,-0.0005314626032486558,6.505213034913027e-19,-9.29720829341942e-20,6.819025367434605e-23,4.497737388972548e-20,-1.8449129433449064e-23,6.925253124496177e-22,4.487101978870133e-20,-6.365382005536252e-22,0.00010629251482896507,-6.651393555986134e-20,-9.532537300281635e-20,0.00048590864753350616,1.7032265320517133e-19,-7.592902964166211e-23,-0.00019436345610301942,-0.00019436345610301942,-4.6240026320696465e-20,-8.568707381697301e-36,3.3881317890172014e-21,2.0962858600954916e-20,2.9340338996524296e-35,-5.082197683525802e-21,5.11256910605585e-21,-6.651393555986134e-20,7.774538244120777e-05,4.6046204332243366e-20,0.00035430840216577053,3.356842906865559e-19,-1.0423291912788191e-19,3.6158422039438616e-19,-0.0005314626032486558,-9.201180379120256e-20,-4.0296002061453896e-22,-5.65501692557031e-23,5.016896944043569e-20,-4.478549908766551e-22,3.9325188179633123e-22,4.2867297539413796e-20,-9.532537300281635e-20,4.6046204332243366e-20,0.00010629251482896507,6.0,7.0,6.0,7.0,0.026340056210756302,-0.005232194904237986,-0.004621193744242191,-0.005232194904237986,-0.004621193744242191,0.00030369291198439896,0.00036443150020204484,0.00041649313061498106,0.00036443150020204484,0.0002362055965932086,0.00036443150020204484,0.0003188775444868952,0.00030369291198439896,0.00036443150020204484,0.0002362055965932086,-0.005232194904237986,0.0037631888408213854,0.00036443150020204484,0.00041649313061498106,0.00036443150020204484,-0.0004555393534246832,-0.00014577258843928576,-0.00016659725224599242,-0.00014577258843928576,2.507217523872729e-19,1.492847360415629e-19,1.2924712580777543e-19,3.6591823321385775e-19,1.698049415392897e-19,2.608234112747412e-19,-0.004621193744242191,0.00036443150020204484,0.002768666949123144,0.00036443150020204484,0.0003188775444868952,6.776263578034403e-19,-0.00012147716188337654,-2.5900973781015554e-21,-1.0164395367051604e-20,-0.00028344671591185033,-0.00012147716188337654,-0.00010629251482896507,-5.738675359511734e-20,7.904610634977758e-21,3.7790699480894066e-20,-0.005232194904237986,0.00041649313061498106,0.00036443150020204484,0.0037631888408213854,0.00036443150020204484,7.013840706705172e-19,-1.8524595111438548e-20,-0.00016659725224599242,-5.119810490707383e-20,6.776263578034403e-21,-0.00014577258843928576,3.3881317890172014e-21,-0.0004555393534246832,-0.00014577258843928576,2.6108609281801506e-19,-0.004621193744242191,0.00036443150020204484,0.0003188775444868952,0.00036443150020204484,0.002768666949123144,6.776263578034403e-19,-6.3061608416078915e-21,8.640436257457693e-21,-0.00012147716188337654,-3.558944181612618e-21,-1.0674435417427941e-20,-0.00010629251482896507,5.014435047745458e-19,-0.00012147716188337654,-0.00028344671591185033,0.00030369291198439896,-0.0004555393534246832,6.776263578034403e-19,7.013840706705172e-19,6.776263578034403e-19,9.110787505051121e-05,-6.098637220230962e-20,-4.0657581468206416e-20,-6.437450399132683e-20,-5.96514965641051e-20,-3.468001893272878e-20,-3.034501737393125e-20,-8.281857662442503e-20,-3.468001893272878e-20,-6.009904004958751e-20,0.00036443150020204484,-0.00014577258843928576,-0.00012147716188337654,-1.8524595111438548e-20,-6.3061608416078915e-21,-6.098637220230962e-20,4.8590864025754854e-05,-1.804569631086156e-21,-1.8164145101066814e-21,1.5615187639587876e-20,6.776263578034403e-21,2.541098841762901e-21,4.988750306165927e-22,2.302310579441218e-35,4.959846947469608e-22,0.00041649313061498106,-0.00016659725224599242,-2.5900973781015554e-21,-0.00016659725224599242,8.640436257457693e-21,-4.0657581468206416e-20,-1.804569631086156e-21,6.663890235358849e-05,6.819538695002851e-21,5.596133823249717e-22,1.2999193813368764e-21,7.141197423304315e-23,1.8223242874527824e-20,-1.0164395367051604e-20,-7.577377550462738e-23,0.00036443150020204484,-0.00014577258843928576,-1.0164395367051604e-20,-5.119810490707383e-20,-0.00012147716188337654,-6.437450399132683e-20,-1.8164145101066814e-21,6.819538695002851e-21,4.8590864025754854e-05,-6.430906433154592e-23,1.789229050648219e-22,4.89204428955699e-21,8.488342259343948e-22,9.668717078502006e-21,1.3026714936297842e-20,0.0002362055965932086,2.507217523872729e-19,-0.00028344671591185033,6.776263578034403e-21,-3.558944181612618e-21,-5.96514965641051e-20,1.5615187639587876e-20,5.596133823249717e-22,-6.430906433154592e-23,4.724111931864172e-05,-3.3881317890172014e-21,0.0,2.4415251579913047e-21,2.2381412439656354e-35,9.581336432778289e-22,0.00036443150020204484,1.492847360415629e-19,-0.00012147716188337654,-0.00014577258843928576,-1.0674435417427941e-20,-3.468001893272878e-20,6.776263578034403e-21,1.2999193813368764e-21,1.789229050648219e-22,-3.3881317890172014e-21,4.8590864025754854e-05,1.798627299659307e-21,1.587354102493005e-20,8.470329472543003e-22,4.174867742773263e-22,0.0003188775444868952,1.2924712580777543e-19,-0.00010629251482896507,3.3881317890172014e-21,-0.00010629251482896507,-3.034501737393125e-20,2.541098841762901e-21,7.141197423304315e-23,4.89204428955699e-21,0.0,1.798627299659307e-21,3.543083948898129e-05,1.9526711852259156e-22,-3.3407310683539667e-21,-1.5434081937465646e-20,0.00030369291198439896,3.6591823321385775e-19,-5.738675359511734e-20,-0.0004555393534246832,5.014435047745458e-19,-8.281857662442503e-20,4.988750306165927e-22,1.8223242874527824e-20,8.488342259343948e-22,2.4415251579913047e-21,1.587354102493005e-20,1.9526711852259156e-22,9.110787505051121e-05,-6.354827980635706e-20,-5.845855348678732e-20,0.00036443150020204484,1.698049415392897e-19,7.904610634977758e-21,-0.00014577258843928576,-0.00012147716188337654,-3.468001893272878e-20,2.302310579441218e-35,-1.0164395367051604e-20,9.668717078502006e-21,2.2381412439656354e-35,8.470329472543003e-22,-3.3407310683539667e-21,-6.354827980635706e-20,4.8590864025754854e-05,1.0050194359318136e-20,0.0002362055965932086,2.608234112747412e-19,3.7790699480894066e-20,2.6108609281801506e-19,-0.00028344671591185033,-6.009904004958751e-20,4.959846947469608e-22,-7.577377550462738e-23,1.3026714936297842e-20,9.581336432778289e-22,4.174867742773263e-22,-1.5434081937465646e-20,-5.845855348678732e-20,1.0050194359318136e-20,4.724111931864172e-05,6.0,7.0,6.0,8.0,0.02348305471241474,-0.004613601602613926,-0.004074546508491039,-0.004613601602613926,-0.003649376332759857,0.0002657313016243279,0.0003188775444868952,0.00036443150020204484,0.00028344671591185033,0.00020667989156208932,0.0003188775444868952,0.00024801588733680546,0.0002657313016243279,0.00028344671591185033,0.0001653439103392884,-0.004613601602613926,0.003306962549686432,0.0003188775444868952,0.00036443150020204484,0.00028344671591185033,-0.00039859695243649185,-0.00012755101488437504,-0.00014577258843928576,-0.00011337868636474013,2.8637383132437367e-19,1.5680728455318206e-19,1.328314803477267e-19,3.4770332838452794e-19,1.2943276323180823e-19,1.812539354729391e-19,-0.004074546508491039,0.0003188775444868952,0.0024329177103936672,0.0003188775444868952,0.00024801588733680546,5.885970118719345e-19,-0.00010629251482896507,-4.994293460979882e-34,1.5246593050577406e-20,-0.00024801588733680546,-0.00010629251482896507,-8.26719551696442e-05,-5.651412711011292e-34,-2.964615315390051e-21,3.562332794846601e-20,-0.004613601602613926,0.00036443150020204484,0.0003188775444868952,0.003306962549686432,0.00028344671591185033,7.022514729403556e-19,5.082197683525802e-21,-0.00014577258843928576,-5.433981684511336e-21,6.776263578034403e-21,-0.00012755101488437504,-1.0403895658334816e-20,-0.00039859695243649185,-0.00011337868636474013,1.8186187444907435e-19,-0.003649376332759857,0.00028344671591185033,0.00024801588733680546,0.00028344671591185033,0.0018693985184654593,5.075393089011788e-19,1.3490629166207977e-21,-4.3065126346687235e-34,-8.09847770142369e-05,9.118654895851313e-21,-7.439280342944765e-21,-7.086167897796258e-05,3.6930091078071093e-19,-8.09847770142369e-05,-0.0001653439103392884,0.0002657313016243279,-0.00039859695243649185,5.885970118719345e-19,7.022514729403556e-19,5.075393089011788e-19,7.97193861217238e-05,-4.932269581913432e-20,-6.764255241985606e-20,-3.7579196506847646e-20,-5.11369743211016e-20,-3.034501737393125e-20,-2.360167946168558e-20,-6.95406669693753e-20,-2.6973348417808416e-20,-3.933613459025881e-20,0.0003188775444868952,-0.00012755101488437504,-0.00010629251482896507,5.082197683525802e-21,1.3490629166207977e-21,-4.932269581913432e-20,4.251700738677755e-05,4.1850709816705787e-35,-2.397263093988891e-23,-1.0164395367051604e-20,-1.6940658945086007e-21,-0.0,4.302507918270014e-35,1.6696855494521052e-35,-1.7026263858601184e-22,0.00036443150020204484,-0.00014577258843928576,-4.994293460979882e-34,-0.00014577258843928576,-4.3065126346687235e-34,-6.764255241985606e-20,4.1850709816705787e-35,5.8309036830905825e-05,3.188625427848272e-35,4.339013962922443e-35,2.574799554401588e-35,2.0026217959273669e-35,5.900582156719596e-35,2.2887107469109588e-35,3.337703136705241e-35,0.00028344671591185033,-0.00011337868636474013,1.5246593050577406e-20,-5.433981684511336e-21,-8.09847770142369e-05,-3.7579196506847646e-20,-2.397263093988891e-23,3.188625427848272e-35,3.2393909350503236e-05,-5.593613885974079e-23,1.3801090020089508e-35,-4.235164736271502e-21,1.8919623189443914e-35,1.5525662099995525e-21,4.553575957728999e-21,0.00020667989156208932,2.8637383132437367e-19,-0.00024801588733680546,6.776263578034403e-21,9.118654895851313e-21,-5.11369743211016e-20,-1.0164395367051604e-20,4.339013962922443e-35,-5.593613885974079e-23,4.13359775848221e-05,-0.0,-5.082197683525802e-21,4.4607706116724096e-35,1.720923729603829e-35,2.173122972137614e-22,0.0003188775444868952,1.5680728455318206e-19,-0.00010629251482896507,-0.00012755101488437504,-7.439280342944765e-21,-3.034501737393125e-20,-1.6940658945086007e-21,2.574799554401588e-35,1.3801090020089508e-35,-0.0,4.251700738677755e-05,2.479760046998791e-21,2.647050844017962e-35,1.0356272400045953e-35,1.4064446959407705e-35,0.00024801588733680546,1.328314803477267e-19,-8.26719551696442e-05,-1.0403895658334816e-20,-7.086167897796258e-05,-2.360167946168558e-20,-0.0,2.0026217959273669e-35,-4.235164736271502e-21,-5.082197683525802e-21,2.479760046998791e-21,2.362055965932086e-05,3.535887007273441e-35,8.470329472543003e-22,-1.0460057506076759e-20,0.0002657313016243279,3.4770332838452794e-19,-5.651412711011292e-34,-0.00039859695243649185,3.6930091078071093e-19,-6.95406669693753e-20,4.302507918270014e-35,5.900582156719596e-35,1.8919623189443914e-35,4.4607706116724096e-35,2.647050844017962e-35,3.535887007273441e-35,7.97193861217238e-05,-3.7579196506847646e-20,-3.933613459025881e-20,0.00028344671591185033,1.2943276323180823e-19,-2.964615315390051e-21,-0.00011337868636474013,-8.09847770142369e-05,-2.6973348417808416e-20,1.6696855494521052e-35,2.2887107469109588e-35,1.5525662099995525e-21,1.720923729603829e-35,1.0356272400045953e-35,8.470329472543003e-22,-3.7579196506847646e-20,3.2393909350503236e-05,4.233940929017578e-21,0.0001653439103392884,1.812539354729391e-19,3.562332794846601e-20,1.8186187444907435e-19,-0.0001653439103392884,-3.933613459025881e-20,-1.7026263858601184e-22,3.337703136705241e-35,4.553575957728999e-21,2.173122972137614e-22,1.4064446959407705e-35,-1.0460057506076759e-20,-3.933613459025881e-20,4.233940929017578e-21,2.362055965932086e-05,6.0,7.0,7.0,3.0,0.045651793479919434,-0.009839650243520737,-0.00869574025273323,-0.00869574025273323,-0.01639941707253456,0.0006073858239687979,0.0007288630004040897,0.0007288630004040897,0.0014577260008081794,0.0004724111931864172,0.0006377550889737904,0.0012755101779475808,0.0004724111931864172,0.0012755101779475808,0.001700680237263441,-0.009839650243520737,0.007276481948792934,0.0007288630004040897,0.0007288630004040897,0.0014577260008081794,-0.0009110787068493664,-0.0002915451768785715,-0.0002915451768785715,-0.000583090353757143,5.149960319306146e-19,2.645088627951829e-19,7.520900354248647e-19,5.014435047745458e-19,7.319365035830461e-19,4.5231720683599086e-18,-0.00869574025273323,0.0007288630004040897,0.005355118308216333,0.0006377550889737904,0.0012755101779475808,1.328147661294743e-18,-0.00024295432376675308,-3.1070968527848834e-20,4.979971084511319e-20,-0.0005668934318237007,-0.00021258502965793014,-0.00042517005931586027,5.469295591980744e-20,-1.3552527156068805e-20,-5.796659456228282e-33,-0.00869574025273323,0.0007288630004040897,0.0006377550889737904,0.005355118308216333,0.0012755101779475808,1.2901967181883866e-18,-1.8435191750623198e-20,-0.00024295432376675308,4.979971084511319e-20,-1.3552527156068805e-20,-0.00021258502965793014,-5.524210044896609e-20,-0.0005668934318237007,-0.00042517005931586027,-5.796659456228282e-33,-0.01639941707253456,0.0014577260008081794,0.0012755101779475808,0.0012755101779475808,0.03340622037649155,2.927345865710862e-18,1.474476712986592e-19,1.2694364752166546e-19,-0.0014577260008081794,1.2392302949386615e-20,-6.098637220230962e-20,-0.0012755101779475808,2.710505431213761e-20,-0.0012755101779475808,-0.010204081423580647,0.0006073858239687979,-0.0009110787068493664,1.328147661294743e-18,1.2901967181883866e-18,2.927345865710862e-18,0.00018221575010102242,-1.2197274440461925e-19,-1.2197274440461925e-19,-2.168404344971009e-19,-1.1841473039729897e-19,-6.06900347478625e-20,-1.21380069495725e-19,-1.2017671557491642e-19,-1.21380069495725e-19,-8.092004460719039e-19,0.0007288630004040897,-0.0002915451768785715,-0.00024295432376675308,-1.8435191750623198e-20,1.474476712986592e-19,-1.2197274440461925e-19,9.718172805150971e-05,-2.9536804158226906e-21,-1.0376488030401895e-20,2.445411170114135e-20,3.3881317890172014e-21,-4.0657581468206416e-20,2.38454905433388e-21,1.5542882239358903e-22,5.316974466297774e-34,0.0007288630004040897,-0.0002915451768785715,-3.1070968527848834e-20,-0.00024295432376675308,1.2694364752166546e-19,-1.2197274440461925e-19,-2.9536804158226906e-21,9.718172805150971e-05,-1.0376488030401895e-20,1.4560619398339604e-21,9.592307885004554e-21,2.138434044453532e-22,3.123037527917575e-20,-3.3881317890172014e-20,5.316974466297774e-34,0.0014577260008081794,-0.000583090353757143,4.979971084511319e-20,4.979971084511319e-20,-0.0014577260008081794,-2.168404344971009e-19,-1.0376488030401895e-20,-1.0376488030401895e-20,0.000583090353757143,1.1209514129441334e-34,6.131378533889052e-35,-2.3858489961314885e-20,1.128474576789396e-34,-2.3858489961314885e-20,-4.771697863016006e-19,0.0004724111931864172,5.149960319306146e-19,-0.0005668934318237007,-1.3552527156068805e-20,1.2392302949386615e-20,-1.1841473039729897e-19,2.445411170114135e-20,1.4560619398339604e-21,1.1209514129441334e-34,9.448223863728344e-05,-0.0,-1.3552527156068805e-20,1.9176728473621443e-21,3.6266725225170774e-22,5.19071489358244e-34,0.0006377550889737904,2.645088627951829e-19,-0.00021258502965793014,-0.00021258502965793014,-6.098637220230962e-20,-6.06900347478625e-20,3.3881317890172014e-21,9.592307885004554e-21,6.131378533889052e-35,-0.0,7.086167897796258e-05,1.6940658945086007e-20,-2.4539390468003872e-20,3.3881317890172014e-21,2.6951789576951103e-34,0.0012755101779475808,7.520900354248647e-19,-0.00042517005931586027,-5.524210044896609e-20,-0.0012755101779475808,-1.21380069495725e-19,-4.0657581468206416e-20,2.138434044453532e-22,-2.3858489961314885e-20,-1.3552527156068805e-20,1.6940658945086007e-20,0.00042517005931586027,4.989679268767915e-22,6.422225933971285e-22,5.444332391547157e-34,0.0004724111931864172,5.014435047745458e-19,5.469295591980744e-20,-0.0005668934318237007,2.710505431213761e-20,-1.2017671557491642e-19,2.38454905433388e-21,3.123037527917575e-20,1.128474576789396e-34,1.9176728473621443e-21,-2.4539390468003872e-20,4.989679268767915e-22,9.448223863728344e-05,-2.0850042555291977e-21,5.19071489358244e-34,0.0012755101779475808,7.319365035830461e-19,-1.3552527156068805e-20,-0.00042517005931586027,-0.0012755101779475808,-1.21380069495725e-19,1.5542882239358903e-22,-3.3881317890172014e-20,-2.3858489961314885e-20,3.6266725225170774e-22,3.3881317890172014e-21,6.422225933971285e-22,-2.0850042555291977e-21,0.00042517005931586027,5.444332391547157e-34,0.001700680237263441,4.5231720683599086e-18,-5.796659456228282e-33,-5.796659456228282e-33,-0.010204081423580647,-8.092004460719039e-19,5.316974466297774e-34,5.316974466297774e-34,-4.771697863016006e-19,5.19071489358244e-34,2.6951789576951103e-34,5.444332391547157e-34,5.19071489358244e-34,5.444332391547157e-34,0.005102040711790323,6.0,7.0,7.0,4.0,0.036613721400499344,-0.007598396390676498,-0.006713131908327341,-0.006713131908327341,-0.01034985389560461,0.0004555393534246832,0.000546647235751152,0.000546647235751152,0.0008746355888433754,0.00035430840216577053,0.00047831633128225803,0.0007653061184100807,0.00035430840216577053,0.0007653061184100807,0.0008503401186317205,-0.007598396390676498,0.005544824991375208,0.000546647235751152,0.000546647235751152,0.0008746355888433754,-0.00068330904468894,-0.00021865889721084386,-0.00021865889721084386,-0.0003498542355373502,5.692061405548898e-19,2.996631857986799e-19,4.471024948183341e-19,5.285485590866834e-19,4.462230984296136e-19,1.6165121286126196e-18,-0.006713131908327341,0.000546647235751152,0.004080114420503378,0.00047831633128225803,0.0007653061184100807,9.215718466126788e-19,-0.00018221575010102242,4.499348129345039e-20,3.360944688728056e-20,-0.00042517005931586027,-0.0001594387722434476,-0.00025510202976875007,7.912625562748999e-20,-6.776263578034403e-21,-1.9782427490766893e-33,-0.006713131908327341,0.000546647235751152,0.00047831633128225803,0.004080114420503378,0.0007653061184100807,9.050095194002592e-19,3.383660813182867e-20,-0.00018221575010102242,3.360944688728056e-20,-2.710505431213761e-20,-0.0001594387722434476,-4.7337514047795337e-20,-0.00042517005931586027,-0.00025510202976875007,-1.9782427490766893e-33,-0.01034985389560461,0.0008746355888433754,0.0007653061184100807,0.0007653061184100807,0.012852284125983715,1.5449880957918438e-18,8.133613325741076e-20,8.221550379673705e-20,-0.000583090353757143,8.97976367774413e-21,-4.573977915173222e-20,-0.0005102040595375001,-2.710505431213761e-20,-0.0005102040595375001,-0.0025510203558951616,0.0004555393534246832,-0.00068330904468894,9.215718466126788e-19,9.050095194002592e-19,1.5449880957918438e-18,0.000136661808937788,-6.776263578034403e-20,-6.776263578034403e-20,-1.0842021724855044e-19,-9.035028228391909e-20,-4.5517526060896877e-20,-7.282803782002588e-20,-8.282646068963843e-20,-7.282803782002588e-20,-2.8322015354022696e-19,0.000546647235751152,-0.00021865889721084386,-0.00018221575010102242,3.383660813182867e-20,8.133613325741076e-20,-6.776263578034403e-20,7.288629421964288e-05,-2.6906947382708645e-21,-6.572534001482707e-21,-3.9257655829642844e-20,-1.0164395367051604e-20,-2.202285662861181e-20,4.309888165568933e-22,3.8792435700457544e-22,1.4995875564823484e-34,0.000546647235751152,-0.00021865889721084386,4.499348129345039e-20,-0.00018221575010102242,8.221550379673705e-20,-6.776263578034403e-20,-2.6906947382708645e-21,7.288629421964288e-05,-6.572534001482707e-21,4.882179615491637e-22,-1.386078602797692e-20,9.480006555305053e-23,-3.9257655829642844e-20,-2.202285662861181e-20,1.4995875564823484e-34,0.0008746355888433754,-0.0003498542355373502,3.360944688728056e-20,3.360944688728056e-20,-0.000583090353757143,-1.0842021724855044e-19,-6.572534001482707e-21,-6.572534001482707e-21,0.0002332361473236233,6.46992090692587e-35,3.6487344649523804e-35,-1.1452074858313718e-20,6.460516952119292e-35,-1.1452074858313718e-20,-1.3360754378336336e-19,0.00035430840216577053,5.692061405548898e-19,-0.00042517005931586027,-2.710505431213761e-20,8.97976367774413e-21,-9.035028228391909e-20,-3.9257655829642844e-20,4.882179615491637e-22,6.46992090692587e-35,7.086167897796258e-05,3.3881317890172014e-21,6.776263578034403e-21,-7.767981743729004e-22,9.051568245961597e-22,1.8167502816304762e-34,0.00047831633128225803,2.996631857986799e-19,-0.0001594387722434476,-0.0001594387722434476,-4.573977915173222e-20,-4.5517526060896877e-20,-1.0164395367051604e-20,-1.386078602797692e-20,3.6487344649523804e-35,3.3881317890172014e-21,5.3146257414482534e-05,1.5246593050577406e-20,-2.5162113682001386e-20,-0.0,9.433126351932886e-35,0.0007653061184100807,4.471024948183341e-19,-0.00025510202976875007,-4.7337514047795337e-20,-0.0005102040595375001,-7.282803782002588e-20,-2.202285662861181e-20,9.480006555305053e-23,-1.1452074858313718e-20,6.776263578034403e-21,1.5246593050577406e-20,0.0001700680295471102,2.2120015716437607e-22,-5.137780709311704e-23,1.5353468063594576e-34,0.00035430840216577053,5.285485590866834e-19,7.912625562748999e-20,-0.00042517005931586027,-2.710505431213761e-20,-8.282646068963843e-20,4.309888165568933e-22,-3.9257655829642844e-20,6.460516952119292e-35,-7.767981743729004e-22,-2.5162113682001386e-20,2.2120015716437607e-22,7.086167897796258e-05,1.6940658945086007e-21,1.8167502816304762e-34,0.0007653061184100807,4.462230984296136e-19,-6.776263578034403e-21,-0.00025510202976875007,-0.0005102040595375001,-7.282803782002588e-20,3.8792435700457544e-22,-2.202285662861181e-20,-1.1452074858313718e-20,9.051568245961597e-22,-0.0,-5.137780709311704e-23,1.6940658945086007e-21,0.0001700680295471102,1.5353468063594576e-34,0.0008503401186317205,1.6165121286126196e-18,-1.9782427490766893e-33,-1.9782427490766893e-33,-0.0025510203558951616,-2.8322015354022696e-19,1.4995875564823484e-34,1.4995875564823484e-34,-1.3360754378336336e-19,1.8167502816304762e-34,9.433126351932886e-35,1.5353468063594576e-34,1.8167502816304762e-34,1.5353468063594576e-34,0.0008503401186317205,6.0,7.0,7.0,5.0,0.030622368678450584,-0.006195335183292627,-0.005472545977681875,-0.005472545977681875,-0.0071428571827709675,0.00036443150020204484,0.0004373177944216877,0.0004373177944216877,0.000583090353757143,0.00028344671591185033,0.00038265305920504034,0.0005102040595375001,0.00028344671591185033,0.0005102040595375001,0.00048590864753350616,-0.006195335183292627,0.004482507240027189,0.0004373177944216877,0.0004373177944216877,0.000583090353757143,-0.000546647235751152,-0.0001749271177686751,-0.0001749271177686751,-0.0002332361473236233,6.126269188593296e-19,2.884998922937881e-19,-2.945388019039139e-19,5.85521864547192e-19,-2.945388019039139e-19,-1.3711418211982585e-18,-0.005472545977681875,0.0004373177944216877,0.0032981049735099077,0.00038265305920504034,0.0005102040595375001,5.55653613398821e-19,-0.00014577258843928576,4.908614348969432e-19,-6.401613833069588e-19,-0.0003401360590942204,-0.00012755101488437504,-0.0001700680295471102,7.59073766240285e-19,2.2794070071672528e-20,-6.525277851634149e-19,-0.005472545977681875,0.0004373177944216877,0.00038265305920504034,0.0032981049735099077,0.0005102040595375001,5.839700737180425e-19,4.762278860778442e-19,-0.00014577258843928576,-6.401613833069588e-19,1.043544591017298e-18,-0.00012755101488437504,-4.415091512150388e-19,-0.0003401360590942204,-0.0001700680295471102,-6.525277851634149e-19,-0.0071428571827709675,0.000583090353757143,0.0005102040595375001,0.0005102040595375001,0.0064868805930018425,-1.0299920638612292e-18,-1.6553579777441817e-19,-1.6553579777441817e-19,-0.0002915451768785715,-2.704917567682024e-19,-8.13148475738043e-19,-0.00025510202976875007,-4.87890977618477e-19,-0.00025510202976875007,-0.0009718172950670123,0.00036443150020204484,-0.000546647235751152,5.55653613398821e-19,5.839700737180425e-19,-1.0299920638612292e-18,0.00010932944860542193,-4.0657581468206416e-20,-4.0657581468206416e-20,-0.0,-7.250582512204233e-20,-3.641401891001294e-20,3.4896769333786085e-20,-6.964673349588961e-20,3.4896769333786085e-20,1.7918010320438915e-19,0.0004373177944216877,-0.0001749271177686751,-0.00014577258843928576,4.762278860778442e-19,-1.6553579777441817e-19,-4.0657581468206416e-20,5.8309036830905825e-05,-1.9157192793998414e-20,-7.824323325539592e-22,-7.274133248972413e-20,-2.795208725939191e-20,5.082197683525802e-21,-5.656549895617143e-20,-2.4276014222262428e-21,2.774401579241788e-20,0.0004373177944216877,-0.0001749271177686751,4.908614348969432e-19,-0.00014577258843928576,-1.6553579777441817e-19,-4.0657581468206416e-20,-1.9157192793998414e-20,5.8309036830905825e-05,-7.824323325539592e-22,-5.704060435815804e-20,-3.1800525672249266e-20,-2.4276014222262428e-21,-6.935320070070693e-20,5.082197683525802e-21,2.774401579241788e-20,0.000583090353757143,-0.0002332361473236233,-6.401613833069588e-19,-6.401613833069588e-19,-0.0002915451768785715,-0.0,-7.824323325539592e-22,-7.824323325539592e-22,0.00011661807366181165,7.013070524006703e-20,3.641401891001294e-20,5.604558362943918e-20,7.013070524006703e-20,5.604558362943918e-20,1.5438859551737993e-19,0.00028344671591185033,6.126269188593296e-19,-0.0003401360590942204,1.043544591017298e-18,-2.704917567682024e-19,-7.250582512204233e-20,-7.274133248972413e-20,-5.704060435815804e-20,7.013070524006703e-20,5.668934318237007e-05,-6.776263578034403e-20,-1.3552527156068805e-20,-1.1132537895741325e-19,-1.416100735389392e-20,1.7982232817067988e-20,0.00038265305920504034,2.884998922937881e-19,-0.00012755101488437504,-0.00012755101488437504,-8.13148475738043e-19,-3.641401891001294e-20,-2.795208725939191e-20,-3.1800525672249266e-20,3.641401891001294e-20,-6.776263578034403e-20,4.251700738677755e-05,3.421018357597293e-20,-2.3773291973809057e-20,3.049318610115481e-20,1.21380069495725e-19,0.0005102040595375001,-2.945388019039139e-19,-0.0001700680295471102,-4.415091512150388e-19,-0.00025510202976875007,3.4896769333786085e-20,5.082197683525802e-21,-2.4276014222262428e-21,5.604558362943918e-20,-1.3552527156068805e-20,3.421018357597293e-20,8.50340147735551e-05,6.136436789285222e-20,-1.1619288934465173e-20,5.556707256977432e-20,0.00028344671591185033,5.85521864547192e-19,7.59073766240285e-19,-0.0003401360590942204,-4.87890977618477e-19,-6.964673349588961e-20,-5.656549895617143e-20,-6.935320070070693e-20,7.013070524006703e-20,-1.1132537895741325e-19,-2.3773291973809057e-20,6.136436789285222e-20,5.668934318237007e-05,-7.920001525808786e-21,1.7982232817067988e-20,0.0005102040595375001,-2.945388019039139e-19,2.2794070071672528e-20,-0.0001700680295471102,-0.00025510202976875007,3.4896769333786085e-20,-2.4276014222262428e-21,5.082197683525802e-21,5.604558362943918e-20,-1.416100735389392e-20,3.049318610115481e-20,-1.1619288934465173e-20,-7.920001525808786e-21,8.50340147735551e-05,5.556707256977432e-20,0.00048590864753350616,-1.3711418211982585e-18,-6.525277851634149e-19,-6.525277851634149e-19,-0.0009718172950670123,1.7918010320438915e-19,2.774401579241788e-20,2.774401579241788e-20,1.5438859551737993e-19,1.7982232817067988e-20,1.21380069495725e-19,5.556707256977432e-20,1.7982232817067988e-20,5.556707256977432e-20,0.00024295432376675308,6.0,7.0,7.0,6.0,0.026340056210756302,-0.005232194904237986,-0.004621193744242191,-0.004621193744242191,-0.005232194904237986,0.00030369291198439896,0.00036443150020204484,0.00036443150020204484,0.00041649313061498106,0.0002362055965932086,0.0003188775444868952,0.00036443150020204484,0.0002362055965932086,0.00036443150020204484,0.00030369291198439896,-0.005232194904237986,0.0037631888408213854,0.00036443150020204484,0.00036443150020204484,0.00041649313061498106,-0.0004555393534246832,-0.00014577258843928576,-0.00014577258843928576,-0.00016659725224599242,2.507217523872729e-19,1.3125683865415544e-19,1.449719584993792e-19,2.710505431213761e-19,1.4412533914243117e-19,3.5655227393307295e-19,-0.004621193744242191,0.00036443150020204484,0.002768666949123144,0.0003188775444868952,0.00036443150020204484,6.911788849595091e-19,-0.00012147716188337654,-3.545725043786325e-21,-6.776263578034403e-21,-0.00028344671591185033,-0.00010629251482896507,-0.00012147716188337654,4.802506915788883e-20,-1.5609744726533792e-20,-5.108836453541704e-20,-0.004621193744242191,0.00036443150020204484,0.0003188775444868952,0.002768666949123144,0.00036443150020204484,6.889007778537498e-19,-1.9910873481585346e-21,-0.00012147716188337654,-5.538234310571077e-21,-0.0,-0.00010629251482896507,-3.049318610115481e-20,-0.00028344671591185033,-0.00012147716188337654,-6.190635213983344e-20,-0.005232194904237986,0.00041649313061498106,0.00036443150020204484,0.00036443150020204484,0.0037631888408213854,7.047314121155779e-19,-1.7054273494689872e-20,-1.7501763665796855e-20,-0.00016659725224599242,7.743290220690744e-21,-1.0770535386913277e-20,-0.00014577258843928576,-0.0,-0.00014577258843928576,-0.0004555393534246832,0.00030369291198439896,-0.0004555393534246832,6.911788849595091e-19,6.889007778537498e-19,7.047314121155779e-19,9.110787505051121e-05,-6.098637220230962e-20,-6.098637220230962e-20,-4.0657581468206416e-20,-5.930726664466087e-20,-3.034501737393125e-20,-3.468001893272878e-20,-5.946499964771707e-20,-3.468001893272878e-20,-7.896032190414215e-20,0.00036443150020204484,-0.00014577258843928576,-0.00012147716188337654,-1.9910873481585346e-21,-1.7054273494689872e-20,-6.098637220230962e-20,4.8590864025754854e-05,-2.053952872764173e-21,-1.8397518682041523e-21,1.5615187639587876e-20,2.541098841762901e-21,6.776263578034403e-21,-7.651180852400319e-23,2.3540657647377187e-35,2.4413934876398924e-22,0.00036443150020204484,-0.00014577258843928576,-3.545725043786325e-21,-0.00012147716188337654,-1.7501763665796855e-20,-6.098637220230962e-20,-2.053952872764173e-21,4.8590864025754854e-05,-1.9717883520506202e-21,-6.185655005084407e-22,4.164874579043668e-21,8.266360460929355e-23,8.838924061553474e-21,6.776263578034403e-21,3.417295711625958e-22,0.00041649313061498106,-0.00016659725224599242,-6.776263578034403e-21,-5.538234310571077e-21,-0.00016659725224599242,-4.0657581468206416e-20,-1.8397518682041523e-21,-1.9717883520506202e-21,6.663890235358849e-05,4.775215125453461e-22,1.4013185018649286e-22,3.1405430607481555e-21,1.6943625314525127e-22,3.578389792252933e-21,1.450884487940814e-20,0.0002362055965932086,2.507217523872729e-19,-0.00028344671591185033,-0.0,7.743290220690744e-21,-5.930726664466087e-20,1.5615187639587876e-20,-6.185655005084407e-22,4.775215125453461e-22,4.724111931864172e-05,-0.0,-3.3881317890172014e-21,-5.892514292704279e-22,2.1817175151261656e-35,-9.764280471110497e-22,0.0003188775444868952,1.3125683865415544e-19,-0.00010629251482896507,-0.00010629251482896507,-1.0770535386913277e-20,-3.034501737393125e-20,2.541098841762901e-21,4.164874579043668e-21,1.4013185018649286e-22,-0.0,3.543083948898129e-05,3.627317444706088e-21,-1.4828619656406642e-20,-8.470329472543003e-22,3.8317304146154204e-22,0.00036443150020204484,1.449719584993792e-19,-0.00012147716188337654,-3.049318610115481e-20,-0.00014577258843928576,-3.468001893272878e-20,6.776263578034403e-21,8.266360460929355e-23,3.1405430607481555e-21,-3.3881317890172014e-21,3.627317444706088e-21,4.8590864025754854e-05,1.9288175460649702e-22,7.26033710420125e-21,2.2270112545931273e-20,0.0002362055965932086,2.710505431213761e-19,4.802506915788883e-20,-0.00028344671591185033,-0.0,-5.946499964771707e-20,-7.651180852400319e-23,8.838924061553474e-21,1.6943625314525127e-22,-5.892514292704279e-22,-1.4828619656406642e-20,1.9288175460649702e-22,4.724111931864172e-05,-2.215316907903802e-21,9.685271192069436e-22,0.00036443150020204484,1.4412533914243117e-19,-1.5609744726533792e-20,-0.00012147716188337654,-0.00014577258843928576,-3.468001893272878e-20,2.3540657647377187e-35,6.776263578034403e-21,3.578389792252933e-21,2.1817175151261656e-35,-8.470329472543003e-22,7.26033710420125e-21,-2.215316907903802e-21,4.8590864025754854e-05,2.1442833382563078e-20,0.00030369291198439896,3.5655227393307295e-19,-5.108836453541704e-20,-6.190635213983344e-20,-0.0004555393534246832,-7.896032190414215e-20,2.4413934876398924e-22,3.417295711625958e-22,1.450884487940814e-20,-9.764280471110497e-22,3.8317304146154204e-22,2.2270112545931273e-20,9.685271192069436e-22,2.1442833382563078e-20,9.110787505051121e-05,6.0,7.0,7.0,7.0,0.02311970666050911,-0.004529362544417381,-0.004000069573521614,-0.004000069573521614,-0.004000069573521614,0.00026030821027234197,0.0003123698406852782,0.0003123698406852782,0.0003123698406852782,0.00020246193162165582,0.000273323617875576,0.000273323617875576,0.00020246193162165582,0.000273323617875576,0.00020246193162165582,-0.004529362544417381,0.0032434402965009212,0.0003123698406852782,0.0003123698406852782,0.0003123698406852782,-0.00039046231540851295,-0.00012494793918449432,-0.00012494793918449432,-0.00012494793918449432,1.9651164376299768e-19,1.3307496871584992e-19,1.327036163196019e-19,1.9651164376299768e-19,1.289076198651107e-19,2.170478758850927e-19,-0.004000069573521614,0.0003123698406852782,0.0023861585650593042,0.000273323617875576,0.000273323617875576,5.759824041329242e-19,-0.00010412328265374526,1.1863111729125115e-20,1.3552527156068805e-20,-0.00024295432376675308,-9.110787505051121e-05,-9.110787505051121e-05,-2.2507505707695106e-21,-5.009299968663866e-21,-5.212510537848798e-21,-0.004000069573521614,0.0003123698406852782,0.000273323617875576,0.0023861585650593042,0.000273323617875576,5.692278023471811e-19,-2.604233765523116e-21,-0.00010412328265374526,7.378938971287442e-21,-0.0,-9.110787505051121e-05,-6.776263578034403e-21,-0.00024295432376675308,-9.110787505051121e-05,-6.4868105442615805e-21,-0.004000069573521614,0.0003123698406852782,0.000273323617875576,0.000273323617875576,0.0023861585650593042,5.89534931288993e-19,-3.7549201516119795e-21,-2.54030680017051e-21,-0.00010412328265374526,-1.589894249753946e-21,4.198952360407257e-22,-9.110787505051121e-05,6.776263578034403e-21,-9.110787505051121e-05,-0.00024295432376675308,0.00026030821027234197,-0.00039046231540851295,5.759824041329242e-19,5.692278023471811e-19,5.89534931288993e-19,7.809246017131954e-05,-4.743384504624082e-20,-4.743384504624082e-20,-4.743384504624082e-20,-5.0689369443308113e-20,-2.6010014199546586e-20,-2.6010014199546586e-20,-4.9098403857336005e-20,-2.6010014199546586e-20,-5.219818242352178e-20,0.0003123698406852782,-0.00012494793918449432,-0.00010412328265374526,-2.604233765523116e-21,-3.7549201516119795e-21,-4.743384504624082e-20,4.1649313061498106e-05,-1.708905466230188e-21,-1.7835128761765663e-21,1.919267270304583e-20,1.6940658945086007e-21,1.6940658945086007e-21,2.760461344293121e-22,1.527924833751524e-35,4.817699008623085e-22,0.0003123698406852782,-0.00012494793918449432,1.1863111729125115e-20,-0.00010412328265374526,-2.54030680017051e-21,-4.743384504624082e-20,-1.708905466230188e-21,4.1649313061498106e-05,-1.6735868129735735e-21,2.229052389902442e-23,-2.7237692400243062e-21,1.4519041758577898e-22,1.5804540914028628e-20,1.6940658945086007e-21,1.856161184774708e-22,0.0003123698406852782,-0.00012494793918449432,1.3552527156068805e-20,7.378938971287442e-21,-0.00010412328265374526,-4.743384504624082e-20,-1.7835128761765663e-21,-1.6735868129735735e-21,4.1649313061498106e-05,-1.517931454971554e-22,2.1405953655616565e-23,-2.7237692400243062e-21,1.0470091993496013e-22,-1.3132485810366658e-21,1.4279647995071327e-20,0.00020246193162165582,1.9651164376299768e-19,-0.00024295432376675308,-0.0,-1.589894249753946e-21,-5.0689369443308113e-20,1.919267270304583e-20,2.229052389902442e-23,-1.517931454971554e-22,4.049238850711845e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-3.9977049820254936e-22,1.664500000764359e-35,1.100666823925138e-22,0.000273323617875576,1.3307496871584992e-19,-9.110787505051121e-05,-9.110787505051121e-05,4.198952360407257e-22,-2.6010014199546586e-20,1.6940658945086007e-21,-2.7237692400243062e-21,2.1405953655616565e-23,-1.6940658945086007e-21,3.0369290470844135e-05,-2.660223755183691e-22,1.0476035460882566e-21,-0.0,4.994722677416046e-23,0.000273323617875576,1.327036163196019e-19,-9.110787505051121e-05,-6.776263578034403e-21,-9.110787505051121e-05,-2.6010014199546586e-20,1.6940658945086007e-21,1.4519041758577898e-22,-2.7237692400243062e-21,-1.6940658945086007e-21,-2.660223755183691e-22,3.0369290470844135e-05,3.387776410334843e-22,1.6697666562212885e-21,1.0476035460882566e-21,0.00020246193162165582,1.9651164376299768e-19,-2.2507505707695106e-21,-0.00024295432376675308,6.776263578034403e-21,-4.9098403857336005e-20,2.760461344293121e-22,1.5804540914028628e-20,1.0470091993496013e-22,-3.9977049820254936e-22,1.0476035460882566e-21,3.387776410334843e-22,4.049238850711845e-05,-6.515638172310998e-22,-5.376567453818039e-22,0.000273323617875576,1.289076198651107e-19,-5.009299968663866e-21,-9.110787505051121e-05,-9.110787505051121e-05,-2.6010014199546586e-20,1.527924833751524e-35,1.6940658945086007e-21,-1.3132485810366658e-21,1.664500000764359e-35,-0.0,1.6697666562212885e-21,-6.515638172310998e-22,3.0369290470844135e-05,3.122565816864157e-21,0.00020246193162165582,2.170478758850927e-19,-5.212510537848798e-21,-6.4868105442615805e-21,-0.00024295432376675308,-5.219818242352178e-20,4.817699008623085e-22,1.856161184774708e-22,1.4279647995071327e-20,1.100666823925138e-22,4.994722677416046e-23,1.0476035460882566e-21,-5.376567453818039e-22,3.122565816864157e-21,4.049238850711845e-05,6.0,7.0,7.0,8.0,0.02060682885348797,-0.003993561491370201,-0.0035266338381916285,-0.0035266338381916285,-0.0031584061216562986,0.0002277696767123416,0.000273323617875576,0.000273323617875576,0.00024295432376675308,0.00017715420108288527,0.00023915816564112902,0.00021258502965793014,0.00017715420108288527,0.00021258502965793014,0.00014172335795592517,-0.003993561491370201,0.002850157907232642,0.000273323617875576,0.000273323617875576,0.00024295432376675308,-0.00034165452234447,-0.00010932944860542193,-0.00010932944860542193,-9.718172805150971e-05,2.405510497680506e-19,1.1873102358402393e-19,1.089125706587785e-19,2.440759507014746e-19,1.1190135515769158e-19,2.1830656043406284e-19,-0.0035266338381916285,0.000273323617875576,0.002096746349707246,0.00023915816564112902,0.00021258502965793014,4.92664171644426e-19,-9.110787505051121e-05,8.349117624442008e-21,1.1858461261560205e-20,-0.00021258502965793014,-7.97193861217238e-05,-7.086167897796258e-05,3.2512550465072694e-20,9.162829087059773e-21,2.3189525412371097e-20,-0.0035266338381916285,0.000273323617875576,0.00023915816564112902,0.002096746349707246,0.00021258502965793014,4.92664171644426e-19,-2.4673870729338745e-21,-9.110787505051121e-05,1.214146042862991e-20,-0.0,-7.97193861217238e-05,-1.6940658945086007e-21,-0.00021258502965793014,-7.086167897796258e-05,2.3767314301413655e-20,-0.0031584061216562986,0.00024295432376675308,0.00021258502965793014,0.00021258502965793014,0.0016110185533761978,4.264198775772113e-19,-1.9304218493324746e-21,-3.624487743841075e-21,-6.941552419448271e-05,5.899543005504475e-21,-1.11736583041493e-20,-6.073858094168827e-05,-0.0,-6.073858094168827e-05,-0.00014172335795592517,0.0002277696767123416,-0.00034165452234447,4.92664171644426e-19,4.92664171644426e-19,4.264198775772113e-19,6.8330904468894e-05,-3.623708303828329e-20,-3.623708303828329e-20,-2.760920473961734e-20,-4.3831689967248325e-20,-2.2758763030448438e-20,-2.023001212114988e-20,-4.3831689967248325e-20,-2.023001212114988e-20,-3.3716686330054087e-20,0.000273323617875576,-0.00010932944860542193,-9.110787505051121e-05,-2.4673870729338745e-21,-1.9304218493324746e-21,-3.623708303828329e-20,3.644314710982144e-05,-4.587477021628044e-23,-9.093897007522818e-23,-6.776263578034403e-21,8.470329472543003e-22,8.470329472543003e-22,6.303871901737964e-24,1.0719928767929765e-35,-5.062842709848053e-23,0.000273323617875576,-0.00010932944860542193,8.349117624442008e-21,-9.110787505051121e-05,-3.624487743841075e-21,-3.623708303828329e-20,-4.587477021628044e-23,3.644314710982144e-05,5.811247356861348e-23,-1.0704112945283982e-22,-2.541098841762901e-21,2.4180855508987427e-23,-8.470329472543003e-21,8.470329472543003e-22,1.1431993009265237e-22,0.00024295432376675308,-9.718172805150971e-05,1.1858461261560205e-20,1.214146042862991e-20,-6.941552419448271e-05,-2.760920473961734e-20,-9.093897007522818e-23,5.811247356861348e-23,2.7766209313995205e-05,-2.121909112428707e-22,4.1426919997154704e-23,-2.964615315390051e-21,1.3559576114195273e-22,-3.7978273186106835e-21,-1.426120122117654e-20,0.00017715420108288527,2.405510497680506e-19,-0.00021258502965793014,-0.0,5.899543005504475e-21,-4.3831689967248325e-20,-6.776263578034403e-21,-1.0704112945283982e-22,-2.121909112428707e-22,3.543083948898129e-05,-0.0,0.0,-7.945597878616222e-22,1.316553672920962e-35,-4.65516841859859e-22,0.00023915816564112902,1.1873102358402393e-19,-7.97193861217238e-05,-7.97193861217238e-05,-1.11736583041493e-20,-2.2758763030448438e-20,8.470329472543003e-22,-2.541098841762901e-21,4.1426919997154704e-23,-0.0,2.6573128707241267e-05,3.476566605345783e-21,-9.187049969371091e-21,-0.0,8.457996231824161e-23,0.00021258502965793014,1.089125706587785e-19,-7.086167897796258e-05,-1.6940658945086007e-21,-6.073858094168827e-05,-2.023001212114988e-20,8.470329472543003e-22,2.4180855508987427e-23,-2.964615315390051e-21,0.0,3.476566605345783e-21,2.0246194253559224e-05,5.642199513582279e-23,-2.617951311980215e-21,-5.797381353092774e-21,0.00017715420108288527,2.440759507014746e-19,3.2512550465072694e-20,-0.00021258502965793014,-0.0,-4.3831689967248325e-20,6.303871901737964e-24,-8.470329472543003e-21,1.3559576114195273e-22,-7.945597878616222e-22,-9.187049969371091e-21,5.642199513582279e-23,3.543083948898129e-05,-3.257819086155499e-22,4.998423634130109e-22,0.00021258502965793014,1.1190135515769158e-19,9.162829087059773e-21,-7.086167897796258e-05,-6.073858094168827e-05,-2.023001212114988e-20,1.0719928767929765e-35,8.470329472543003e-22,-3.7978273186106835e-21,1.316553672920962e-35,-0.0,-2.617951311980215e-21,-3.257819086155499e-22,2.0246194253559224e-05,-7.873094568963347e-21,0.00014172335795592517,2.1830656043406284e-19,2.3189525412371097e-20,2.3767314301413655e-20,-0.00014172335795592517,-3.3716686330054087e-20,-5.062842709848053e-23,1.1431993009265237e-22,-1.426120122117654e-20,-4.65516841859859e-22,8.457996231824161e-23,-5.797381353092774e-21,4.998423634130109e-22,-7.873094568963347e-21,2.0246194253559224e-05,6.0,7.0,8.0,3.0,0.04076318070292473,-0.0086805559694767,-0.007670776452869177,-0.0068735829554498196,-0.014473497867584229,0.0005314626032486558,0.0006377550889737904,0.0005668934318237007,0.0012755101779475808,0.00041335978312417865,0.0004960317746736109,0.0011160714784637094,0.0003306878206785768,0.0009920635493472219,0.0014880952658131719,-0.0086805559694767,0.006395266391336918,0.0006377550889737904,0.0005668934318237007,0.0012755101779475808,-0.0007971939048729837,-0.00025510202976875007,-0.00022675737272948027,-0.0005102040595375001,5.726556388056008e-19,2.656629606954534e-19,5.31734548613508e-19,3.416494778245879e-19,4.720336150831057e-19,3.540251958026928e-18,-0.007670776452869177,0.0006377550889737904,0.004706396255642176,0.0004960317746736109,0.0011160714784637094,1.1316764459841838e-18,-0.00021258502965793014,3.049318610115481e-20,-1.0711094422788106e-33,-0.0004960317746736109,-0.0001653439103392884,-0.00037202381645329297,5.769412874086322e-20,-0.0,-5.0256530788659286e-33,-0.0068735829554498196,0.0005668934318237007,0.0004960317746736109,0.0036173199769109488,0.0009920635493472219,9.746186291029747e-19,-1.070515823015961e-20,-0.0001619695540284738,1.0789339367123366e-19,-1.3552527156068805e-20,-0.00014172335795592517,-6.249361806300342e-20,-0.0003306878206785768,-0.00028344671591185033,-4.328176077199417e-33,-0.014473497867584229,0.0012755101779475808,0.0011160714784637094,0.0009920635493472219,0.02935444936156273,2.4350671085330974e-18,-1.2083068980930493e-33,1.0849060514879988e-19,-0.0012755101779475808,-1.8634724839594607e-20,-6.606856988583543e-20,-0.0011160714784637094,-0.0,-0.0009920635493472219,-0.008928571827709675,0.0005314626032486558,-0.0007971939048729837,1.1316764459841838e-18,9.746186291029747e-19,2.4350671085330974e-18,0.0001594387722434476,-9.864539163826864e-20,-7.515839301369529e-20,-1.479680842262287e-19,-1.022739486422032e-19,-4.720335892337116e-20,-1.0620756080875938e-19,-7.867226918051762e-20,-9.440671784674232e-20,-7.080504226246586e-19,0.0006377550889737904,-0.00025510202976875007,-0.00021258502965793014,-1.070515823015961e-20,-1.2083068980930493e-33,-9.864539163826864e-20,8.50340147735551e-05,-3.667718217593175e-23,9.145575064165941e-35,-2.0328790734103208e-20,-0.0,-0.0,1.425999296394878e-21,2.9577280316330423e-35,4.380735460196054e-34,0.0005668934318237007,-0.00022675737272948027,3.049318610115481e-20,-0.0001619695540284738,1.0849060514879988e-19,-7.515839301369529e-20,-3.667718217593175e-23,6.478781870100647e-05,-4.315735682225861e-20,-8.558009279565529e-23,-8.470329472543003e-21,-1.990693775986589e-22,1.3552527156068805e-20,-0.0,3.3377030219108707e-34,0.0012755101779475808,-0.0005102040595375001,-1.0711094422788106e-33,1.0789339367123366e-19,-0.0012755101779475808,-1.479680842262287e-19,9.145575064165941e-35,-4.315735682225861e-20,0.0005102040595375001,9.469969031075919e-35,5.019454435422879e-35,9.869915486703226e-35,6.319457630020618e-35,8.726870060504662e-35,6.571102960705341e-34,0.00041335978312417865,5.726556388056008e-19,-0.0004960317746736109,-1.3552527156068805e-20,-1.8634724839594607e-20,-1.022739486422032e-19,-2.0328790734103208e-20,-8.558009279565529e-23,9.469969031075919e-35,8.26719551696442e-05,-0.0,6.776263578034403e-21,1.902724425457411e-21,-6.717543412399986e-36,4.541875531884635e-34,0.0004960317746736109,2.656629606954534e-19,-0.0001653439103392884,-0.00014172335795592517,-6.606856988583543e-20,-4.720335892337116e-20,-0.0,-8.470329472543003e-21,5.019454435422879e-35,-0.0,4.724111931864172e-05,2.202285662861181e-20,-2.0920115012153518e-20,-0.0,2.0962503514492503e-34,0.0011160714784637094,5.31734548613508e-19,-0.00037202381645329297,-6.249361806300342e-20,-0.0011160714784637094,-1.0620756080875938e-19,-0.0,-1.990693775986589e-22,9.869915486703226e-35,6.776263578034403e-21,2.202285662861181e-20,0.00037202381645329297,-4.064333057604674e-22,-0.0,4.716563175966443e-34,0.0003306878206785768,3.416494778245879e-19,5.769412874086322e-20,-0.0003306878206785768,-0.0,-7.867226918051762e-20,1.425999296394878e-21,1.3552527156068805e-20,6.319457630020618e-35,1.902724425457411e-21,-2.0920115012153518e-20,-4.064333057604674e-22,4.724111931864172e-05,3.515723591387696e-36,3.49375035616001e-34,0.0009920635493472219,4.720336150831057e-19,-0.0,-0.00028344671591185033,-0.0009920635493472219,-9.440671784674232e-20,2.9577280316330423e-35,-0.0,8.726870060504662e-35,-6.717543412399986e-36,-0.0,-0.0,3.515723591387696e-36,0.00028344671591185033,4.192500702898501e-34,0.0014880952658131719,3.540251958026928e-18,-5.0256530788659286e-33,-4.328176077199417e-33,-0.008928571827709675,-7.080504226246586e-19,4.380735460196054e-34,3.3377030219108707e-34,6.571102960705341e-34,4.541875531884635e-34,2.0962503514492503e-34,4.716563175966443e-34,3.49375035616001e-34,4.192500702898501e-34,0.004464285913854837,6.0,7.0,8.0,4.0,0.032669004052877426,-0.006701743230223656,-0.005920493043959141,-0.005303996615111828,-0.009130527265369892,0.00039859695243649185,0.00047831633128225803,0.00042517005931586027,0.0007653061184100807,0.0003100198518950492,0.00037202381645329297,0.0006696428754366934,0.00024801588733680546,0.0005952381179668009,0.0007440476329065859,-0.006701743230223656,0.004872980527579784,0.00047831633128225803,0.00042517005931586027,0.0007653061184100807,-0.0005978954141028225,-0.00019132652960252017,-0.0001700680295471102,-0.0003061224415432662,3.94478815211359e-19,1.9379745737805806e-19,2.1644217288155075e-19,2.5978255957020805e-19,1.9833645589307794e-19,7.292919037671375e-19,-0.005920493043959141,0.00047831633128225803,0.003585600992664695,0.00037202381645329297,0.0006696428754366934,6.193092974378393e-19,-0.0001594387722434476,-3.1351667098839876e-20,-1.8692530547245286e-19,-0.00037202381645329297,-0.00012400794366840273,-0.00022321428696159273,2.988167021510511e-20,-6.437450399132683e-20,-3.7172646283065783e-19,-0.005303996615111828,0.00042517005931586027,0.00037202381645329297,0.00275550689548254,0.0005952381179668009,4.2719039631780444e-19,-4.366214055989483e-20,-0.00012147716188337654,-1.5536649102247954e-19,-0.0,-0.00010629251482896507,-2.4201083290992487e-20,-0.00024801588733680546,-0.0001700680295471102,-2.8322015354022696e-19,-0.009130527265369892,0.0007653061184100807,0.0006696428754366934,0.0005952381179668009,0.011295351199805737,1.0362100839233669e-18,-8.51789365023451e-20,-5.899645352949407e-20,-0.0005102040595375001,7.903970862472736e-21,4.616329562535937e-20,-0.00044642857392318547,-0.0,-0.00039682540227659047,-0.0022321429569274187,0.00039859695243649185,-0.0005978954141028225,6.193092974378393e-19,4.2719039631780444e-19,1.0362100839233669e-18,0.00011957908282056451,2.4167639021733776e-20,7.080503838505674e-20,3.866822178853919e-20,-7.670545986606527e-20,-3.540251919252837e-20,-6.372453390031621e-20,-5.900420188538822e-20,-5.664402941557569e-20,-2.4781765050356993e-19,0.00047831633128225803,-0.00019132652960252017,-0.0001594387722434476,-4.366214055989483e-20,-8.51789365023451e-20,2.4167639021733776e-20,6.377550744218752e-05,1.878496151834955e-20,3.3986418295580265e-20,-3.3881317890172014e-21,-8.470329472543003e-22,-0.0,-1.123175991668097e-22,6.082602886482893e-23,4.493388499259768e-36,0.00042517005931586027,-0.0001700680295471102,-3.1351667098839876e-20,-0.00012147716188337654,-5.899645352949407e-20,7.080503838505674e-20,1.878496151834955e-20,4.8590864025754854e-05,2.5894414093355167e-20,-2.248924805846918e-22,-4.069645007126717e-21,6.321504047374921e-23,1.0164395367051604e-20,-1.6940658945086007e-21,-1.0190342160179179e-34,0.0007653061184100807,-0.0003061224415432662,-1.8692530547245286e-19,-1.5536649102247954e-19,-0.0005102040595375001,3.866822178853919e-20,3.3986418295580265e-20,2.5894414093355167e-20,0.0002040816325461492,-3.3101920919155616e-35,-2.0312542382209128e-35,6.797283659116053e-20,-1.504632769052528e-35,6.042030278233632e-20,3.398641894181512e-19,0.0003100198518950492,3.94478815211359e-19,-0.00037202381645329297,-0.0,7.903970862472736e-21,-7.670545986606527e-20,-3.3881317890172014e-21,-2.248924805846918e-22,-3.3101920919155616e-35,6.200397183420137e-05,-0.0,0.0,9.876440588397076e-22,1.4192739858097176e-22,1.4444474582904269e-34,0.00037202381645329297,1.9379745737805806e-19,-0.00012400794366840273,-0.00010629251482896507,4.616329562535937e-20,-3.540251919252837e-20,-8.470329472543003e-22,-4.069645007126717e-21,-2.0312542382209128e-35,-0.0,3.543083948898129e-05,-1.4399560103323106e-20,-1.0346901783218919e-20,-8.470329472543003e-22,4.782706544130534e-35,0.0006696428754366934,2.1644217288155075e-19,-0.00022321428696159273,-2.4201083290992487e-20,-0.00044642857392318547,-6.372453390031621e-20,-0.0,6.321504047374921e-23,6.797283659116053e-20,0.0,-1.4399560103323106e-20,0.00014880952949170023,1.290640307120462e-22,4.4176349632870176e-20,2.4781765050356993e-19,0.00024801588733680546,2.5978255957020805e-19,2.988167021510511e-20,-0.00024801588733680546,-0.0,-5.900420188538822e-20,-1.123175991668097e-22,1.0164395367051604e-20,-1.504632769052528e-35,9.876440588397076e-22,-1.0346901783218919e-20,1.290640307120462e-22,3.543083948898129e-05,-2.4931536682355446e-21,1.1906894520165887e-34,0.0005952381179668009,1.9833645589307794e-19,-6.437450399132683e-20,-0.0001700680295471102,-0.00039682540227659047,-5.664402941557569e-20,6.082602886482893e-23,-1.6940658945086007e-21,6.042030278233632e-20,1.4192739858097176e-22,-8.470329472543003e-22,4.4176349632870176e-20,-2.4931536682355446e-21,0.00011337868636474013,1.8881343569348464e-19,0.0007440476329065859,7.292919037671375e-19,-3.7172646283065783e-19,-2.8322015354022696e-19,-0.0022321429569274187,-2.4781765050356993e-19,4.493388499259768e-36,-1.0190342160179179e-34,3.398641894181512e-19,1.4444474582904269e-34,4.782706544130534e-35,2.4781765050356993e-19,1.1906894520165887e-34,1.8881343569348464e-19,0.0007440476329065859,6.0,7.0,8.0,5.0,0.027310090139508247,-0.005463435314595699,-0.004825680050998926,-0.004322562366724014,-0.0062996032647788525,0.0003188775444868952,0.00038265305920504034,0.0003401360590942204,0.0005102040595375001,0.00024801588733680546,0.00029761905898340046,0.00044642857392318547,0.00019841270113829523,0.00039682540227659047,0.00042517005931586027,-0.005463435314595699,0.003939200658351183,0.00038265305920504034,0.0003401360590942204,0.0005102040595375001,-0.00047831633128225803,-0.0001530612207716331,-0.0001360544265480712,-0.0002040816325461492,-3.0702889311134076e-19,-4.9094079253696e-19,-1.5031889016807377e-18,-3.2064113236787824e-19,-1.4623455147674365e-18,-3.6312869067511454e-18,-0.004825680050998926,0.00038265305920504034,0.0028982425574213266,0.00029761905898340046,0.00044642857392318547,-7.397272007848002e-19,-0.00012755101488437504,-7.468629906612626e-20,-1.7846800150961815e-18,-0.00029761905898340046,-9.920635056914762e-05,-0.00014880952949170023,-3.683323856809879e-19,-1.2197274440461925e-18,-3.2514989226163048e-18,-0.004322562366724014,0.0003401360590942204,0.00029761905898340046,0.0022270812187343836,0.00039682540227659047,-8.112943503950054e-19,-5.337186964090813e-19,-9.718172805150971e-05,-1.5072399153331395e-18,-3.9302328752599536e-19,-8.50340147735551e-05,-1.0808140406964872e-18,-0.00019841270113829523,-0.00011337868636474013,-1.551652586589607e-18,-0.0062996032647788525,0.0005102040595375001,0.00044642857392318547,0.00039682540227659047,0.005700821988284588,-3.1327207497373653e-18,-1.5995147043979971e-18,-8.094605943745519e-19,-0.00025510202976875007,-2.217062003733522e-18,-1.3646435937036185e-18,-0.00022321428696159273,-9.012430558785756e-19,-0.00019841270113829523,-0.0008503401186317205,0.0003188775444868952,-0.00047831633128225803,-7.397272007848002e-19,-8.112943503950054e-19,-3.1327207497373653e-18,9.566326480126008e-05,5.468171789570409e-20,3.327300086664742e-20,1.60499133798674e-19,1.6521176592532187e-20,4.231444039102147e-20,1.4692045998043028e-19,3.540251919252837e-20,1.429587430600929e-19,3.9448522586110626e-19,0.00038265305920504034,-0.0001530612207716331,-0.00012755101488437504,-5.337186964090813e-19,-1.5995147043979971e-18,5.468171789570409e-20,5.10204081365373e-05,3.556498909706115e-20,9.758495255532419e-20,-3.3881317890172014e-21,2.456395547037471e-20,6.776263578034403e-20,2.265526528747701e-20,8.090947608239532e-20,1.8611610311352579e-19,0.0003401360590942204,-0.0001360544265480712,-7.468629906612626e-20,-9.718172805150971e-05,-8.094605943745519e-19,3.327300086664742e-20,3.556498909706115e-20,3.887269122060388e-05,5.307121986128322e-20,-2.144760744254373e-20,-5.9712629573458035e-21,4.498906104705206e-20,-4.743384504624082e-20,4.0657581468206416e-20,7.398404211311434e-20,0.0005102040595375001,-0.0002040816325461492,-1.7846800150961815e-18,-1.5072399153331395e-18,-0.00025510202976875007,1.60499133798674e-19,9.758495255532419e-20,5.307121986128322e-20,0.0001020408162730746,1.3594567318232106e-19,9.063045094233022e-20,1.699320947090756e-19,1.0573552502232717e-19,1.5105075372466654e-19,3.8841622755619884e-19,0.00024801588733680546,-3.0702889311134076e-19,-0.00029761905898340046,-3.9302328752599536e-19,-2.217062003733522e-18,1.6521176592532187e-20,-3.3881317890172014e-21,-2.144760744254373e-20,1.3594567318232106e-19,4.960317528457381e-05,2.710505431213761e-20,9.825582188149884e-20,2.1684885493724274e-20,9.228413362084004e-20,2.8322015354022696e-19,0.00029761905898340046,-4.9094079253696e-19,-9.920635056914762e-05,-8.50340147735551e-05,-1.3646435937036185e-18,4.231444039102147e-20,2.456395547037471e-20,-5.9712629573458035e-21,9.063045094233022e-20,2.710505431213761e-20,2.8344671591185033e-05,6.013933925505532e-20,1.9607286483771664e-21,6.013933925505532e-20,1.663356555773628e-19,0.00044642857392318547,-1.5031889016807377e-18,-0.00014880952949170023,-1.0808140406964872e-18,-0.00022321428696159273,1.4692045998043028e-19,6.776263578034403e-20,4.498906104705206e-20,1.699320947090756e-19,9.825582188149884e-20,6.013933925505532e-20,7.440476474585012e-05,7.643289739188051e-20,1.0460856898590609e-19,2.2875475629940256e-19,0.00019841270113829523,-3.2064113236787824e-19,-3.683323856809879e-19,-0.00019841270113829523,-9.012430558785756e-19,3.540251919252837e-20,2.265526528747701e-20,-4.743384504624082e-20,1.0573552502232717e-19,2.1684885493724274e-20,1.9607286483771664e-21,7.643289739188051e-20,2.8344671591185033e-05,1.8650706227523073e-20,6.293781405194439e-20,0.00039682540227659047,-1.4623455147674365e-18,-1.2197274440461925e-18,-0.00011337868636474013,-0.00019841270113829523,1.429587430600929e-19,8.090947608239532e-20,4.0657581468206416e-20,1.5105075372466654e-19,9.228413362084004e-20,6.013933925505532e-20,1.0460856898590609e-19,1.8650706227523073e-20,5.668934318237007e-05,1.9557818336642866e-19,0.00042517005931586027,-3.6312869067511454e-18,-3.2514989226163048e-18,-1.551652586589607e-18,-0.0008503401186317205,3.9448522586110626e-19,1.8611610311352579e-19,7.398404211311434e-20,3.8841622755619884e-19,2.8322015354022696e-19,1.663356555773628e-19,2.2875475629940256e-19,6.293781405194439e-20,1.9557818336642866e-19,0.00021258502965793014,6.0,7.0,8.0,6.0,0.02348305471241474,-0.004613601602613926,-0.004074546508491039,-0.003649376332759857,-0.004613601602613926,0.0002657313016243279,0.0003188775444868952,0.00028344671591185033,0.00036443150020204484,0.00020667989156208932,0.00024801588733680546,0.0003188775444868952,0.0001653439103392884,0.00028344671591185033,0.0002657313016243279,-0.004613601602613926,0.003306962549686432,0.0003188775444868952,0.00028344671591185033,0.00036443150020204484,-0.00039859695243649185,-0.00012755101488437504,-0.00011337868636474013,-0.00014577258843928576,2.848076165332928e-19,1.3241876892085102e-19,1.5680728455318206e-19,1.7806576167230951e-19,1.3486674532021635e-19,3.4770332838452794e-19,-0.004074546508491039,0.0003188775444868952,0.0024329177103936672,0.00024801588733680546,0.0003188775444868952,5.885970118719345e-19,-0.00010629251482896507,1.1445753873652363e-20,-5.034732303358092e-34,-0.00024801588733680546,-8.26719551696442e-05,-0.00010629251482896507,2.234691432710226e-20,2.964615315390051e-21,-5.1732234458067085e-34,-0.003649376332759857,0.00028344671591185033,0.00024801588733680546,0.0018693985184654593,0.00028344671591185033,5.075393089011788e-19,-2.5072636004177876e-21,-8.09847770142369e-05,3.082668529085573e-20,-0.0,-7.086167897796258e-05,-1.363208351330308e-20,-0.0001653439103392884,-8.09847770142369e-05,8.429171420954808e-20,-0.004613601602613926,0.00036443150020204484,0.0003188775444868952,0.00028344671591185033,0.003306962549686432,7.022514729403556e-19,5.082197683525802e-21,3.082668529085573e-20,-0.00014577258843928576,3.789329734183192e-21,-1.0667468197913029e-20,-0.00012755101488437504,-0.0,-0.00011337868636474013,-0.00039859695243649185,0.0002657313016243279,-0.00039859695243649185,5.885970118719345e-19,5.075393089011788e-19,7.022514729403556e-19,7.97193861217238e-05,-4.932269581913432e-20,-3.7579196506847646e-20,-6.764255241985606e-20,-5.11369743211016e-20,-2.360167946168558e-20,-3.034501737393125e-20,-3.933613459025881e-20,-2.6973348417808416e-20,-6.95406669693753e-20,0.0003188775444868952,-0.00012755101488437504,-0.00010629251482896507,-2.5072636004177876e-21,5.082197683525802e-21,-4.932269581913432e-20,4.251700738677755e-05,1.6780841026833513e-22,4.1792156078327303e-35,-1.0164395367051604e-20,-0.0,-1.6940658945086007e-21,2.75739576770656e-22,1.6679112589677402e-35,4.302507918270014e-35,0.00028344671591185033,-0.00011337868636474013,1.1445753873652363e-20,-8.09847770142369e-05,3.082668529085573e-20,-3.7579196506847646e-20,1.6780841026833513e-22,3.2393909350503236e-05,-1.233067395478358e-20,3.915529657072983e-22,-4.1172482820268636e-21,1.344765537340697e-35,5.082197683525802e-21,-0.0,3.2865123092312236e-35,0.00036443150020204484,-0.00014577258843928576,-5.034732303358092e-34,3.082668529085573e-20,-0.00014577258843928576,-6.764255241985606e-20,4.1792156078327303e-35,-1.233067395478358e-20,5.8309036830905825e-05,4.325351710953389e-35,2.1477165706173713e-35,2.574799554401588e-35,3.0844971765576824e-35,2.256949153578792e-35,5.900582156719596e-35,0.00020667989156208932,2.848076165332928e-19,-0.00024801588733680546,-0.0,3.789329734183192e-21,-5.11369743211016e-20,-1.0164395367051604e-20,3.915529657072983e-22,4.325351710953389e-35,4.13359775848221e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,1.0464766740623664e-21,1.741901826785569e-35,4.4607706116724096e-35,0.00024801588733680546,1.3241876892085102e-19,-8.26719551696442e-05,-7.086167897796258e-05,-1.0667468197913029e-20,-2.360167946168558e-20,-0.0,-4.1172482820268636e-21,2.1477165706173713e-35,-3.3881317890172014e-21,2.362055965932086e-05,4.5440278377676934e-21,-8.525245702604715e-21,-8.470329472543003e-22,2.169631963831774e-35,0.0003188775444868952,1.5680728455318206e-19,-0.00010629251482896507,-1.363208351330308e-20,-0.00012755101488437504,-3.034501737393125e-20,-1.6940658945086007e-21,1.344765537340697e-35,2.574799554401588e-35,-3.3881317890172014e-21,4.5440278377676934e-21,4.251700738677755e-05,1.2789378536946488e-35,9.968192094972998e-36,2.647050844017962e-35,0.0001653439103392884,1.7806576167230951e-19,2.234691432710226e-20,-0.0001653439103392884,-0.0,-3.933613459025881e-20,2.75739576770656e-22,5.082197683525802e-21,3.0844971765576824e-35,1.0464766740623664e-21,-8.525245702604715e-21,1.2789378536946488e-35,2.362055965932086e-05,3.3561682053667026e-22,3.4010816824631255e-35,0.00028344671591185033,1.3486674532021635e-19,2.964615315390051e-21,-8.09847770142369e-05,-0.00011337868636474013,-2.6973348417808416e-20,1.6679112589677402e-35,-0.0,2.256949153578792e-35,1.741901826785569e-35,-8.470329472543003e-22,9.968192094972998e-36,3.3561682053667026e-22,3.2393909350503236e-05,-3.3716686330054087e-20,0.0002657313016243279,3.4770332838452794e-19,-5.1732234458067085e-34,8.429171420954808e-20,-0.00039859695243649185,-6.95406669693753e-20,4.302507918270014e-35,3.2865123092312236e-35,5.900582156719596e-35,4.4607706116724096e-35,2.169631963831774e-35,2.647050844017962e-35,3.4010816824631255e-35,-3.3716686330054087e-20,7.97193861217238e-05,6.0,7.0,8.0,7.0,0.02060682885348797,-0.003993561491370201,-0.0035266338381916285,-0.0031584061216562986,-0.0035266338381916285,0.0002277696767123416,0.000273323617875576,0.00024295432376675308,0.000273323617875576,0.00017715420108288527,0.00021258502965793014,0.00023915816564112902,0.00014172335795592517,0.00021258502965793014,0.00017715420108288527,-0.003993561491370201,0.002850157907232642,0.000273323617875576,0.00024295432376675308,0.000273323617875576,-0.00034165452234447,-0.00010932944860542193,-9.718172805150971e-05,-0.00010932944860542193,2.3890304749390353e-19,1.1008561616495525e-19,1.2085372413219986e-19,2.1627315661795143e-19,1.149082600818984e-19,2.440076566021507e-19,-0.0035266338381916285,0.000273323617875576,0.002096746349707246,0.00021258502965793014,0.00023915816564112902,4.92664171644426e-19,-9.110787505051121e-05,9.729988220554884e-21,1.0164395367051604e-20,-0.00021258502965793014,-7.086167897796258e-05,-7.97193861217238e-05,1.884389167464542e-20,1.2741275424862392e-20,2.997193629944996e-20,-0.0031584061216562986,0.00024295432376675308,0.00021258502965793014,0.0016110185533761978,0.00021258502965793014,4.264198775772113e-19,-2.4098745943479976e-21,-6.941552419448271e-05,1.102740970223437e-20,-6.776263578034403e-21,-6.073858094168827e-05,-5.082197683525802e-21,-0.00014172335795592517,-6.073858094168827e-05,3.1985636414876416e-20,-0.0035266338381916285,0.000273323617875576,0.00023915816564112902,0.00021258502965793014,0.002096746349707246,4.92664171644426e-19,-4.017617042963622e-21,3.403390605600034e-21,-9.110787505051121e-05,-5.137418047865469e-21,-1.275833279382203e-20,-7.97193861217238e-05,3.3881317890172014e-21,-7.086167897796258e-05,-0.00021258502965793014,0.0002277696767123416,-0.00034165452234447,4.92664171644426e-19,4.264198775772113e-19,4.92664171644426e-19,6.8330904468894e-05,-3.623708303828329e-20,-2.760920473961734e-20,-3.623708303828329e-20,-4.3831689967248325e-20,-2.023001212114988e-20,-2.2758763030448438e-20,-3.3716686330054087e-20,-2.023001212114988e-20,-4.3831689967248325e-20,0.000273323617875576,-0.00010932944860542193,-9.110787505051121e-05,-2.4098745943479976e-21,-4.017617042963622e-21,-3.623708303828329e-20,3.644314710982144e-05,7.912923007486478e-23,-8.860825686492555e-24,-6.776263578034403e-21,8.470329472543003e-22,8.470329472543003e-22,-4.345909195332007e-23,1.0449753043021837e-35,2.30564680794044e-22,0.00024295432376675308,-9.718172805150971e-05,9.729988220554884e-21,-6.941552419448271e-05,3.403390605600034e-21,-2.760920473961734e-20,7.912923007486478e-23,2.7766209313995205e-05,-2.0491559736825923e-23,1.8463487648557173e-22,-3.3173819972497752e-21,1.6096623467323155e-22,-1.3552527156068805e-20,-8.470329472543003e-22,-1.339146165113926e-22,0.000273323617875576,-0.00010932944860542193,1.0164395367051604e-20,1.102740970223437e-20,-9.110787505051121e-05,-3.623708303828329e-20,-8.860825686492555e-24,-2.0491559736825923e-23,3.644314710982144e-05,-2.067526019810293e-23,4.4726071986864673e-23,-3.3881317890172014e-21,-4.1836935185808756e-23,-3.5978644834616586e-21,-8.35739670070964e-21,0.00017715420108288527,2.3890304749390353e-19,-0.00021258502965793014,-6.776263578034403e-21,-5.137418047865469e-21,-4.3831689967248325e-20,-6.776263578034403e-21,1.8463487648557173e-22,-2.067526019810293e-23,3.543083948898129e-05,-1.6940658945086007e-21,0.0,8.467528953220596e-22,1.2789378536946488e-35,8.976290973199828e-22,0.00021258502965793014,1.1008561616495525e-19,-7.086167897796258e-05,-6.073858094168827e-05,-1.275833279382203e-20,-2.023001212114988e-20,8.470329472543003e-22,-3.3173819972497752e-21,4.4726071986864673e-23,-1.6940658945086007e-21,2.0246194253559224e-05,4.4834934034478704e-21,-7.207159245895607e-21,-4.235164736271502e-22,1.0436083884327573e-22,0.00023915816564112902,1.2085372413219986e-19,-7.97193861217238e-05,-5.082197683525802e-21,-7.97193861217238e-05,-2.2758763030448438e-20,8.470329472543003e-22,1.6096623467323155e-22,-3.3881317890172014e-21,0.0,4.4834934034478704e-21,2.6573128707241267e-05,3.286394026279756e-22,-3.752989121090194e-21,-1.224939942063241e-20,0.00014172335795592517,2.1627315661795143e-19,1.884389167464542e-20,-0.00014172335795592517,3.3881317890172014e-21,-3.3716686330054087e-20,-4.345909195332007e-23,-1.3552527156068805e-20,-4.1836935185808756e-23,8.467528953220596e-22,-7.207159245895607e-21,3.286394026279756e-22,2.0246194253559224e-05,-1.2465768341177723e-21,-8.640106980604966e-23,0.00021258502965793014,1.149082600818984e-19,1.2741275424862392e-20,-6.073858094168827e-05,-7.086167897796258e-05,-2.023001212114988e-20,1.0449753043021837e-35,-8.470329472543003e-22,-3.5978644834616586e-21,1.2789378536946488e-35,-4.235164736271502e-22,-3.752989121090194e-21,-1.2465768341177723e-21,2.0246194253559224e-05,-1.0436583832814866e-20,0.00017715420108288527,2.440076566021507e-19,2.997193629944996e-20,3.1985636414876416e-20,-0.00021258502965793014,-4.3831689967248325e-20,2.30564680794044e-22,-1.339146165113926e-22,-8.35739670070964e-21,8.976290973199828e-22,1.0436083884327573e-22,-1.224939942063241e-20,-8.640106980604966e-23,-1.0436583832814866e-20,3.543083948898129e-05,6.0,7.0,8.0,8.0,0.018363509327173233,-0.0035209397319704294,-0.0031090560369193554,-0.0027842733543366194,-0.0027842733543366194,0.00019929847621824592,0.00023915816564112902,0.00021258502965793014,0.00021258502965793014,0.0001550099259475246,0.00018601190822664648,0.00018601190822664648,0.00012400794366840273,0.0001653439103392884,0.00012400794366840273,-0.0035209397319704294,0.002504517324268818,0.00023915816564112902,0.00021258502965793014,0.00021258502965793014,-0.00029894770705141127,-9.566326480126008e-05,-8.50340147735551e-05,-8.50340147735551e-05,1.9673544781748156e-19,1.0214112153040309e-19,1.01289131961822e-19,1.2913703323812345e-19,8.416085165170278e-20,1.289007180768747e-19,-0.0031090560369193554,0.00023915816564112902,0.0018424036679789424,0.00018601190822664648,0.00018601190822664648,3.238156447637036e-19,-7.97193861217238e-05,-1.001308755402689e-20,-1.3552527156068805e-20,-0.00018601190822664648,-6.200397183420137e-05,-6.200397183420137e-05,2.9498853612554985e-20,9.303210684297971e-21,2.8191814540667436e-20,-0.0027842733543366194,0.00021258502965793014,0.00018601190822664648,0.0014155464014038444,0.0001653439103392884,2.2618276743163964e-19,-2.1571943028368107e-20,-6.073858094168827e-05,-1.623850862082493e-20,-0.0,-5.3146257414482534e-05,1.9481757786848908e-20,-0.00012400794366840273,-4.724111931864172e-05,7.806979896683059e-21,-0.0027842733543366194,0.00021258502965793014,0.00018601190822664648,0.0001653439103392884,0.0014155464014038444,2.2618276743163964e-19,-2.2794546669877026e-20,-1.7291932824434014e-20,-6.073858094168827e-05,2.3882664193547712e-22,1.583828406690711e-20,-5.3146257414482534e-05,-0.0,-4.724111931864172e-05,-0.00012400794366840273,0.00019929847621824592,-0.00029894770705141127,3.238156447637036e-19,2.2618276743163964e-19,2.2618276743163964e-19,5.9789541410282254e-05,1.2083819510866888e-20,3.540251919252837e-20,3.540251919252837e-20,-3.8352729933032635e-20,-1.7701259596264185e-20,-1.7701259596264185e-20,-2.950210094269411e-20,-1.5734453512986098e-20,-2.950210094269411e-20,0.00023915816564112902,-9.566326480126008e-05,-7.97193861217238e-05,-2.1571943028368107e-20,-2.2794546669877026e-20,1.2083819510866888e-20,3.188775372109376e-05,9.374344178009697e-21,9.5205176551229e-21,-1.6940658945086007e-21,-4.235164736271502e-22,-4.235164736271502e-22,-7.836931089853452e-23,-3.810235005312678e-36,3.4841859414611616e-23,0.00021258502965793014,-8.50340147735551e-05,-1.001308755402689e-20,-6.073858094168827e-05,-1.7291932824434014e-20,3.540251919252837e-20,9.374344178009697e-21,2.4295432012877427e-05,7.30776751127807e-21,-1.5476534619608747e-22,-3.599180379182214e-21,5.1523875733771385e-23,5.082197683525802e-21,-4.235164736271502e-22,4.625940617189172e-23,0.00021258502965793014,-8.50340147735551e-05,-1.3552527156068805e-20,-1.623850862082493e-20,-6.073858094168827e-05,3.540251919252837e-20,9.5205176551229e-21,7.30776751127807e-21,2.4295432012877427e-05,1.8630626448445607e-22,6.653047770798656e-23,-3.3407468203285222e-21,2.345363240836804e-22,-1.1446507545050324e-21,5.2409549688248954e-21,0.0001550099259475246,1.9673544781748156e-19,-0.00018601190822664648,-0.0,2.3882664193547712e-22,-3.8352729933032635e-20,-1.6940658945086007e-21,-1.5476534619608747e-22,1.8630626448445607e-22,3.100198591710068e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-3.9849357852159897e-22,9.968192094972998e-36,-4.567614703103155e-22,0.00018601190822664648,1.0214112153040309e-19,-6.200397183420137e-05,-5.3146257414482534e-05,1.583828406690711e-20,-1.7701259596264185e-20,-4.235164736271502e-22,-3.599180379182214e-21,6.653047770798656e-23,-1.6940658945086007e-21,1.7715419744490646e-05,-4.689481570812748e-21,-7.737400597794138e-21,-8.470329472543003e-22,1.358330631240177e-22,0.00018601190822664648,1.01289131961822e-19,-6.200397183420137e-05,1.9481757786848908e-20,-5.3146257414482534e-05,-1.7701259596264185e-20,-4.235164736271502e-22,5.1523875733771385e-23,-3.3407468203285222e-21,-1.6940658945086007e-21,-4.689481570812748e-21,1.7715419744490646e-05,1.0519457646767296e-22,-1.8110273348087165e-21,-7.36725262175443e-21,0.00012400794366840273,1.2913703323812345e-19,2.9498853612554985e-20,-0.00012400794366840273,-0.0,-2.950210094269411e-20,-7.836931089853452e-23,5.082197683525802e-21,2.345363240836804e-22,-3.9849357852159897e-22,-7.737400597794138e-21,1.0519457646767296e-22,1.7715419744490646e-05,-1.2186086984235859e-21,3.5113617578839185e-22,0.0001653439103392884,8.416085165170278e-20,9.303210684297971e-21,-4.724111931864172e-05,-4.724111931864172e-05,-1.5734453512986098e-20,-3.810235005312678e-36,-4.235164736271502e-22,-1.1446507545050324e-21,9.968192094972998e-36,-8.470329472543003e-22,-1.8110273348087165e-21,-1.2186086984235859e-21,1.3497462532541249e-05,-3.139637120262825e-21,0.00012400794366840273,1.289007180768747e-19,2.8191814540667436e-20,7.806979896683059e-21,-0.00012400794366840273,-2.950210094269411e-20,3.4841859414611616e-23,4.625940617189172e-23,5.2409549688248954e-21,-4.567614703103155e-22,1.358330631240177e-22,-7.36725262175443e-21,3.5113617578839185e-22,-3.139637120262825e-21,1.7715419744490646e-05,6.0,8.0,3.0,3.0,0.07933752238750458,-0.018766533583402634,-0.014880952425301075,-0.031167328357696533,-0.031167328357696533,0.0012400794075801969,0.0013227512827143073,0.0029761905316263437,0.0029761905316263437,0.0007716049440205097,0.002314814832061529,0.002314814832061529,0.0034722222480922937,0.0052083334885537624,0.0034722222480922937,-0.018766533583402634,0.014327050186693668,0.0013227512827143073,0.0029761905316263437,0.0029761905316263437,-0.0018601190531626344,-0.0005291005363687873,-0.0011904762359336019,-0.0011904762359336019,8.229754331139612e-19,1.1014117685272467e-18,1.1014117685272467e-18,8.260587902062833e-18,2.478176453336911e-18,8.260587902062833e-18,-0.014880952425301075,0.0013227512827143073,0.008109725080430508,0.002314814832061529,0.002314814832061529,2.2370396562975963e-18,-0.0003779289545491338,-2.422114007721993e-33,-2.422114007721993e-33,-0.0007716049440205097,-0.0006613756413571537,-0.0006613756413571537,-9.934451733684552e-33,-2.9803355201053656e-33,-9.934451733684552e-33,-0.031167328357696533,0.0029761905316263437,0.002314814832061529,0.06588955223560333,0.0052083334885537624,5.577863745311971e-18,-2.6435844902566046e-33,-0.0029761905316263437,-6.0393303467219585e-33,-0.0,-0.002314814832061529,-2.846242104061267e-33,-0.02083333395421505,-0.0052083334885537624,2.3129645794903686e-17,-0.031167328357696533,0.0029761905316263437,0.002314814832061529,0.0052083334885537624,0.06588955223560333,5.577863745311971e-18,-2.6435844902566046e-33,-6.0393303467219585e-33,-0.0029761905316263437,1.2488003825914731e-33,-2.846242104061267e-33,-0.002314814832061529,2.9297552773991064e-17,-0.0052083334885537624,-0.02083333395421505,0.0012400794075801969,-0.0018601190531626344,2.2370396562975963e-18,5.577863745311971e-18,5.577863745311971e-18,0.00037202381645329297,-2.045978383138893e-19,-4.028020099324441e-19,-4.028020099324441e-19,-1.8356861947140974e-19,-2.202823588753282e-19,-2.202823588753282e-19,-1.6521176010920818e-18,-4.956353010071399e-19,-1.6521176010920818e-18,0.0013227512827143073,-0.0005291005363687873,-0.0003779289545491338,-2.6435844902566046e-33,-2.6435844902566046e-33,-2.045978383138893e-19,0.0001511715818196535,2.215245966007227e-34,2.215245966007227e-34,2.710505431213761e-20,-0.0,-0.0,9.085969809356448e-34,2.7257909428069343e-34,9.085969809356448e-34,0.0029761905316263437,-0.0011904762359336019,-2.422114007721993e-33,-0.0029761905316263437,-6.0393303467219585e-33,-4.028020099324441e-19,2.215245966007227e-34,0.0011904762359336019,4.361265416655599e-34,1.9875559244953155e-34,2.3850670175588824e-34,2.3850670175588824e-34,1.7888002631691618e-33,5.366400789507485e-34,1.7888002631691618e-33,0.0029761905316263437,-0.0011904762359336019,-2.422114007721993e-33,-6.0393303467219585e-33,-0.0029761905316263437,-4.028020099324441e-19,2.215245966007227e-34,4.361265416655599e-34,0.0011904762359336019,1.9875559244953155e-34,2.3850670175588824e-34,2.3850670175588824e-34,1.7888002631691618e-33,5.366400789507485e-34,1.7888002631691618e-33,0.0007716049440205097,8.229754331139612e-19,-0.0007716049440205097,-0.0,1.2488003825914731e-33,-1.8356861947140974e-19,2.710505431213761e-20,1.9875559244953155e-34,1.9875559244953155e-34,0.00011022927355952561,-0.0,0.0,8.152084547021258e-34,2.4456254100241254e-34,8.152084547021258e-34,0.002314814832061529,1.1014117685272467e-18,-0.0006613756413571537,-0.002314814832061529,-2.846242104061267e-33,-2.202823588753282e-19,-0.0,2.3850670175588824e-34,2.3850670175588824e-34,-0.0,0.0006613756413571537,0.0,9.782501640096501e-34,2.9347504461112023e-34,9.782501640096501e-34,0.002314814832061529,1.1014117685272467e-18,-0.0006613756413571537,-2.846242104061267e-33,-0.002314814832061529,-2.202823588753282e-19,-0.0,2.3850670175588824e-34,2.3850670175588824e-34,0.0,0.0,0.0006613756413571537,9.782501640096501e-34,2.9347504461112023e-34,9.782501640096501e-34,0.0034722222480922937,8.260587902062833e-18,-9.934451733684552e-33,-0.02083333395421505,2.9297552773991064e-17,-1.6521176010920818e-18,9.085969809356448e-34,1.7888002631691618e-33,1.7888002631691618e-33,8.152084547021258e-34,9.782501640096501e-34,9.782501640096501e-34,0.010416666977107525,-6.167905738316459e-18,-1.1564822897451843e-17,0.0052083334885537624,2.478176453336911e-18,-2.9803355201053656e-33,-0.0052083334885537624,-0.0052083334885537624,-4.956353010071399e-19,2.7257909428069343e-34,5.366400789507485e-34,5.366400789507485e-34,2.4456254100241254e-34,2.9347504461112023e-34,2.9347504461112023e-34,-6.167905738316459e-18,0.0052083334885537624,9.048813718623901e-33,0.0034722222480922937,8.260587902062833e-18,-9.934451733684552e-33,2.3129645794903686e-17,-0.02083333395421505,-1.6521176010920818e-18,9.085969809356448e-34,1.7888002631691618e-33,1.7888002631691618e-33,8.152084547021258e-34,9.782501640096501e-34,9.782501640096501e-34,-1.1564822897451843e-17,9.048813718623901e-33,0.010416666977107525,6.0,8.0,3.0,4.0,0.06400462985038757,-0.014521329663693905,-0.011507936753332615,-0.02415674552321434,-0.01974206417798996,0.0009300595265813172,0.0009920635493472219,0.0022321429569274187,0.0017857142956927419,0.0005787037080153823,0.0017361111240461469,0.0013888889225199819,0.0026041667442768812,0.0031250000465661287,0.0017361111240461469,-0.014521329663693905,0.010923858731985092,0.0009920635493472219,0.0022321429569274187,0.0017857142956927419,-0.0013950893189758062,-0.00039682540227659047,-0.0008928571478463709,-0.0007142857066355646,6.172315748354709e-19,8.260588005460409e-19,6.3713012825347e-19,6.1954409265471244e-18,1.4869058513226313e-18,2.8912057243629608e-18,-0.011507936753332615,0.0009920635493472219,0.006181500386446714,0.0017361111240461469,0.0013888889225199819,1.2018874329801082e-18,-0.00028344671591185033,-1.8881343569348464e-19,-1.5105075372466654e-19,-0.0005787037080153823,-0.0004960317746736109,-0.00039682540227659047,-5.337452588079556e-33,-1.2809886321593529e-33,-2.4908111832809937e-33,-0.02415674552321434,0.0022321429569274187,0.0017361111240461469,0.05019841343164444,0.0031250000465661287,2.573173183604951e-18,-1.8881343569348464e-19,-0.0022321429569274187,4.240147713370151e-34,-0.0,-0.0017361111240461469,-9.563818364870285e-34,-0.015625,-0.0031250000465661287,8.095375945498229e-18,-0.01974206417798996,0.0017857142956927419,0.0013888889225199819,0.0031250000465661287,0.025314154103398323,2.3554476658524183e-18,-1.7476767624778695e-19,3.021517495318486e-33,-0.0011904762359336019,-2.360885589973433e-20,-1.1129697144665539e-33,-0.0009259259095415473,1.584380752667334e-17,-0.0020833334419876337,-0.0052083334885537624,0.0009300595265813172,-0.0013950893189758062,1.2018874329801082e-18,2.573173183604951e-18,2.3554476658524183e-18,0.00027901786961592734,5.0125471372442764e-20,3.7172646283065783e-19,5.569996430505979e-20,-1.3767647106590584e-19,-1.652117626941476e-19,-1.321694127402575e-19,-1.2390882266684555e-18,-2.973811754344051e-19,-5.782411758918651e-19,0.0009920635493472219,-0.00039682540227659047,-0.00028344671591185033,-1.8881343569348464e-19,-1.7476767624778695e-19,5.0125471372442764e-20,0.00011337868636474013,7.552537686233327e-20,6.042030278233632e-20,2.0328790734103208e-20,-0.0,6.776263578034403e-21,-2.226018040117819e-34,-5.34244331924164e-35,-1.038808464639397e-34,0.0022321429569274187,-0.0008928571478463709,-1.8881343569348464e-19,-0.0022321429569274187,3.021517495318486e-33,3.7172646283065783e-19,7.552537686233327e-20,0.0008928571478463709,1.1445526762792563e-34,-1.6550960459577808e-34,-2.2268564981977415e-34,-1.715281356719882e-34,-1.650797042711633e-33,-3.961913251482804e-34,-7.703719777548943e-34,0.0017857142956927419,-0.0007142857066355646,-1.5105075372466654e-19,4.240147713370151e-34,-0.0011904762359336019,5.569996430505979e-20,6.042030278233632e-20,1.1445526762792563e-34,0.0004761904710903764,-1.504632769052528e-35,-3.611118645726067e-35,-2.407412430484045e-35,-2.4735753136910696e-34,-5.936580523269827e-35,-1.1543351081243757e-34,0.0005787037080153823,6.172315748354709e-19,-0.0005787037080153823,-0.0,-2.360885589973433e-20,-1.3767647106590584e-19,2.0328790734103208e-20,-1.6550960459577808e-34,-1.504632769052528e-35,8.26719551696442e-05,-0.0,0.0,6.114063410265943e-34,1.4673752230556012e-34,2.853229453704196e-34,0.0017361111240461469,8.260588005460409e-19,-0.0004960317746736109,-0.0017361111240461469,-1.1129697144665539e-33,-1.652117626941476e-19,-0.0,-2.2268564981977415e-34,-3.611118645726067e-35,-0.0,0.0004960317746736109,0.0,7.336876000483636e-34,1.7608502447078474e-34,3.4238754821982793e-34,0.0013888889225199819,6.3713012825347e-19,-0.00039682540227659047,-9.563818364870285e-34,-0.0009259259095415473,-1.321694127402575e-19,6.776263578034403e-21,-1.715281356719882e-34,-2.407412430484045e-35,0.0,0.0,0.00026455026818439364,5.869500892222405e-34,1.4086801728074039e-34,2.7391004316763715e-34,0.0026041667442768812,6.1954409265471244e-18,-5.337452588079556e-33,-0.015625,1.584380752667334e-17,-1.2390882266684555e-18,-2.226018040117819e-34,-1.650797042711633e-33,-2.4735753136910696e-34,6.114063410265943e-34,7.336876000483636e-34,5.869500892222405e-34,0.0078125,-3.700743608425998e-18,-4.0476879727491145e-18,0.0031250000465661287,1.4869058513226313e-18,-1.2809886321593529e-33,-0.0031250000465661287,-0.0020833334419876337,-2.973811754344051e-19,-5.34244331924164e-35,-3.961913251482804e-34,-5.936580523269827e-35,1.4673752230556012e-34,1.7608502447078474e-34,1.4086801728074039e-34,-3.700743608425998e-18,0.0020833334419876337,2.533667870602051e-33,0.0017361111240461469,2.8912057243629608e-18,-2.4908111832809937e-33,8.095375945498229e-18,-0.0052083334885537624,-5.782411758918651e-19,-1.038808464639397e-34,-7.703719777548943e-34,-1.1543351081243757e-34,2.853229453704196e-34,3.4238754821982793e-34,2.7391004316763715e-34,-4.0476879727491145e-18,2.533667870602051e-33,0.0017361111240461469,6.0,8.0,3.0,5.0,0.05373677238821983,-0.01185515895485878,-0.009391534142196178,-0.01974206417798996,-0.013657407835125923,0.0007440476329065859,0.0007936508045531809,0.0017857142956927419,0.0011904762359336019,0.00046296295477077365,0.0013888889225199819,0.0009259259095415473,0.0020833334419876337,0.0020833334419876337,0.0009920635493472219,-0.01185515895485878,0.008834325708448887,0.0007936508045531809,0.0017857142956927419,0.0011904762359336019,-0.0011160714784637094,-0.0003174603043589741,-0.0007142857066355646,-0.0004761904710903764,-1.172562536096608e-18,-1.3216941015531808e-18,-8.692709742397525e-19,-9.912705813347644e-18,-1.9825412040285595e-18,-2.8322016904986345e-18,-0.009391534142196178,0.0007936508045531809,0.004998110234737396,0.0013888889225199819,0.0009259259095415473,-2.527043181999247e-18,-0.00022675737272948027,-3.2833320459992724e-33,-2.1888878469951893e-33,-0.00046296295477077365,-0.00039682540227659047,-0.00026455026818439364,-2.2444651096994716e-32,-4.488930439804134e-33,-6.412757351329352e-33,-0.01974206417798996,0.0017857142956927419,0.0013888889225199819,0.04057539626955986,0.0020833334419876337,-6.4083282648968344e-18,-3.6186043406888974e-33,-0.0017857142956927419,-5.550800404649985e-33,-0.0,-0.0013888889225199819,-4.32889643483128e-33,-0.012500000186264515,-0.0020833334419876337,-1.9825412040285595e-18,-0.013657407835125923,0.0011904762359336019,0.0009259259095415473,0.0020833334419876337,0.012781084515154362,-3.7624223308010146e-18,1.1858461261560205e-20,-4.8884332151906274e-33,-0.0005952381179668009,2.3189525412371097e-20,-3.725176495244369e-33,-0.00046296295477077365,-3.965082408057119e-18,-0.0010416667209938169,-0.0019841270986944437,0.0007440476329065859,-0.0011160714784637094,-2.527043181999247e-18,-6.4083282648968344e-18,-3.7624223308010146e-18,0.00022321428696159273,1.473104497898549e-19,2.9001743267569904e-19,1.933449637335974e-19,2.202823588753282e-19,2.64338825480515e-19,1.762258793454443e-19,1.9825412040285595e-18,3.965082252960754e-19,5.664403070804539e-19,0.0007936508045531809,-0.0003174603043589741,-0.00022675737272948027,-3.6186043406888974e-33,1.1858461261560205e-20,1.473104497898549e-19,9.070294618140906e-05,1.9139725036099846e-34,1.275981669073323e-34,2.0328790734103208e-20,-0.0,-3.3881317890172014e-21,1.3083795790789315e-33,2.616759249993359e-34,3.7382274671921217e-34,0.0017857142956927419,-0.0007142857066355646,-3.2833320459992724e-33,-0.0017857142956927419,-4.8884332151906274e-33,2.9001743267569904e-19,1.9139725036099846e-34,0.0007142857066355646,2.512088824892327e-34,2.8620803292351627e-34,3.4344964869176914e-34,2.2896644011413744e-34,2.5758723422293945e-33,5.151744500787797e-34,7.35963513231899e-34,0.0011904762359336019,-0.0004761904710903764,-2.1888878469951893e-33,-5.550800404649985e-33,-0.0005952381179668009,1.933449637335974e-19,1.275981669073323e-34,2.512088824892327e-34,0.0002380952355451882,1.9080535910882319e-34,2.2896644011413744e-34,1.5264428958294595e-34,1.7172482893765938e-33,3.4344964869176914e-34,4.906423421545993e-34,0.00046296295477077365,-1.172562536096608e-18,-0.00046296295477077365,-0.0,2.3189525412371097e-20,2.202823588753282e-19,2.0328790734103208e-20,2.8620803292351627e-34,1.9080535910882319e-34,6.613756704609841e-05,-0.0,-6.776263578034403e-21,1.9565003280193003e-33,3.913000747874097e-34,5.590000937198001e-34,0.0013888889225199819,-1.3216941015531808e-18,-0.00039682540227659047,-0.0013888889225199819,-3.725176495244369e-33,2.64338825480515e-19,-0.0,3.4344964869176914e-34,2.2896644011413744e-34,-0.0,0.00039682540227659047,-0.0,2.347800356888962e-33,4.69560080561342e-34,6.708000757295616e-34,0.0009259259095415473,-8.692709742397525e-19,-0.00026455026818439364,-4.32889643483128e-33,-0.00046296295477077365,1.762258793454443e-19,-3.3881317890172014e-21,2.2896644011413744e-34,1.5264428958294595e-34,-6.776263578034403e-21,-0.0,0.00013227513409219682,1.5652002991496387e-33,3.130400460546033e-34,4.4720006579229045e-34,0.0020833334419876337,-9.912705813347644e-18,-2.2444651096994716e-32,-0.012500000186264515,-3.965082408057119e-18,1.9825412040285595e-18,1.3083795790789315e-33,2.5758723422293945e-33,1.7172482893765938e-33,1.9565003280193003e-33,2.347800356888962e-33,1.5652002991496387e-33,0.0062500000931322575,3.521700627168939e-33,9.912706020142797e-19,0.0020833334419876337,-1.9825412040285595e-18,-4.488930439804134e-33,-0.0020833334419876337,-0.0010416667209938169,3.965082252960754e-19,2.616759249993359e-34,5.151744500787797e-34,3.4344964869176914e-34,3.913000747874097e-34,4.69560080561342e-34,3.130400460546033e-34,3.521700627168939e-33,0.0010416667209938169,1.0062001135943425e-33,0.0009920635493472219,-2.8322016904986345e-18,-6.412757351329352e-33,-1.9825412040285595e-18,-0.0019841270986944437,5.664403070804539e-19,3.7382274671921217e-34,7.35963513231899e-34,4.906423421545993e-34,5.590000937198001e-34,6.708000757295616e-34,4.4720006579229045e-34,9.912706020142797e-19,1.0062001135943425e-33,0.0004960317746736109,6.0,8.0,3.0,6.0,0.046347472816705704,-0.010021022520959377,-0.007936508394777775,-0.016699735075235367,-0.010021022520959377,0.0006200397037900984,0.0006613756413571537,0.0014880952658131719,0.0008503401186317205,0.00038580247201025486,0.0011574074160307646,0.0006613756413571537,0.0017361111240461469,0.0014880952658131719,0.0006200397037900984,-0.010021022520959377,0.007418627385050058,0.0006613756413571537,0.0014880952658131719,0.0008503401186317205,-0.0009300595265813172,-0.00026455026818439364,-0.0005952381179668009,-0.0003401360590942204,4.233461778185408e-19,5.507058842636234e-19,3.146890767220705e-19,4.130293951031416e-18,7.080504226246586e-19,8.113077403811711e-19,-0.007936508394777775,0.0006613756413571537,0.004196586087346077,0.0011574074160307646,0.0006613756413571537,1.1657231999968664e-18,-0.0001889644772745669,-1.2621655696893302e-33,-5.769899786509294e-34,-0.00038580247201025486,-0.0003306878206785768,-0.0001889644772745669,-5.176851039740445e-33,-8.874601231399215e-34,-1.0168814083169823e-33,-0.016699735075235367,0.0014880952658131719,0.0011574074160307646,0.034060847014188766,0.0014880952658131719,2.8951393817659567e-18,-1.3802020084076848e-33,-0.0014880952658131719,-1.432987214889375e-33,-0.0,-0.0011574074160307646,-8.4914773167525e-34,-0.010416666977107525,-0.0014880952658131719,2.2716617144263096e-18,-0.010021022520959377,0.0008503401186317205,0.0006613756413571537,0.0014880952658131719,0.007418627385050058,1.4033727069712341e-18,-6.506512301192541e-34,-1.5194763239675364e-33,-0.0003401360590942204,-1.3552527156068805e-20,-7.005302564072766e-34,-0.00026455026818439364,7.088961010636599e-18,-0.0005952381179668009,-0.0009300595265813172,0.0006200397037900984,-0.0009300595265813172,1.1657231999968664e-18,2.8951393817659567e-18,1.4033727069712341e-18,0.00018601190822664648,-1.0229891915694465e-19,-2.0140100496622206e-19,-9.206902788748504e-20,-9.178430973570487e-20,-1.101411794376641e-19,-6.293781405194439e-20,-8.260588005460409e-19,-1.4161007677011348e-19,-1.622615454912948e-19,0.0006613756413571537,-0.00026455026818439364,-0.0001889644772745669,-1.3802020084076848e-33,-6.506512301192541e-34,-1.0229891915694465e-19,7.558579090982676e-05,1.1076229830036135e-34,5.063418957292964e-35,1.0164395367051604e-20,-0.0,-0.0,4.542984904678224e-34,7.787973794321612e-35,8.923720020491168e-35,0.0014880952658131719,-0.0005952381179668009,-1.2621655696893302e-33,-0.0014880952658131719,-1.5194763239675364e-33,-2.0140100496622206e-19,1.1076229830036135e-34,0.0005952381179668009,9.96860650264941e-35,9.937779622476577e-35,1.1925335087794412e-34,6.814477357017336e-35,8.944001315845809e-34,1.5332573192331229e-34,1.7568573521292681e-34,0.0008503401186317205,-0.0003401360590942204,-5.769899786509294e-34,-1.432987214889375e-33,-0.0003401360590942204,-9.206902788748504e-20,5.063418957292964e-35,9.96860650264941e-35,0.0001360544265480712,4.5429846176922983e-35,5.451581770819498e-35,3.1151894603314596e-35,4.088686184621661e-34,7.009176644478191e-35,8.031348190633606e-35,0.00038580247201025486,4.233461778185408e-19,-0.00038580247201025486,-0.0,-1.3552527156068805e-20,-9.178430973570487e-20,1.0164395367051604e-20,9.937779622476577e-35,4.5429846176922983e-35,5.5114636779762805e-05,-0.0,3.3881317890172014e-21,4.076042273510629e-34,6.987501171497501e-35,8.006511280697677e-35,0.0011574074160307646,5.507058842636234e-19,-0.0003306878206785768,-0.0011574074160307646,-7.005302564072766e-34,-1.101411794376641e-19,-0.0,1.1925335087794412e-34,5.451581770819498e-35,-0.0,0.0003306878206785768,-0.0,4.891250820048251e-34,8.38500094661952e-35,9.607813536837213e-35,0.0006613756413571537,3.146890767220705e-19,-0.0001889644772745669,-8.4914773167525e-34,-0.00026455026818439364,-6.293781405194439e-20,-0.0,6.814477357017336e-35,3.1151894603314596e-35,3.3881317890172014e-21,-0.0,7.558579090982676e-05,2.7950004685990004e-34,4.7914291943499904e-35,5.490179081911e-35,0.0017361111240461469,4.130293951031416e-18,-5.176851039740445e-33,-0.010416666977107525,7.088961010636599e-18,-8.260588005460409e-19,4.542984904678224e-34,8.944001315845809e-34,4.088686184621661e-34,4.076042273510629e-34,4.891250820048251e-34,2.7950004685990004e-34,0.0052083334885537624,-1.4098070347635544e-18,-1.1358308572131548e-18,0.0014880952658131719,7.080504226246586e-19,-8.874601231399215e-34,-0.0014880952658131719,-0.0005952381179668009,-1.4161007677011348e-19,7.787973794321612e-35,1.5332573192331229e-34,7.009176644478191e-35,6.987501171497501e-35,8.38500094661952e-35,4.7914291943499904e-35,-1.4098070347635544e-18,0.0005952381179668009,4.309790702704083e-34,0.0006200397037900984,8.113077403811711e-19,-1.0168814083169823e-33,2.2716617144263096e-18,-0.0009300595265813172,-1.622615454912948e-19,8.923720020491168e-35,1.7568573521292681e-34,8.031348190633606e-35,8.006511280697677e-35,9.607813536837213e-35,5.490179081911e-35,-1.1358308572131548e-18,4.309790702704083e-34,0.00018601190822664648,6.0,8.0,3.0,7.0,0.04076318070292473,-0.0086805559694767,-0.0068735829554498196,-0.014473497867584229,-0.007670776452869177,0.0005314626032486558,0.0005668934318237007,0.0012755101779475808,0.0006377550889737904,0.0003306878206785768,0.0009920635493472219,0.0004960317746736109,0.0014880952658131719,0.0011160714784637094,0.00041335978312417865,-0.0086805559694767,0.006395266391336918,0.0005668934318237007,0.0012755101779475808,0.0006377550889737904,-0.0007971939048729837,-0.00022675737272948027,-0.0005102040595375001,-0.00025510202976875007,3.603200299244637e-19,4.708829034534679e-19,2.732795880770534e-19,3.540251958026928e-18,5.310378040437969e-19,5.765799387279172e-19,-0.0068735829554498196,0.0005668934318237007,0.0036173199769109488,0.0009920635493472219,0.0004960317746736109,9.746186291029747e-19,-0.0001619695540284738,1.0789339367123366e-19,9.825582188149884e-20,-0.0003306878206785768,-0.00028344671591185033,-0.00014172335795592517,-4.899084296035031e-33,8.316458950090153e-35,1.1128709600468853e-19,-0.014473497867584229,0.0012755101779475808,0.0009920635493472219,0.02935444936156273,0.0011160714784637094,2.4350671085330974e-18,1.0789339367123366e-19,-0.0012755101779475808,1.0486509191102556e-19,-0.0,-0.0009920635493472219,-8.965702961942904e-34,-0.008928571827709675,-0.0011160714784637094,1.428702838483986e-18,-0.007670776452869177,0.0006377550889737904,0.0004960317746736109,0.0011160714784637094,0.004706396255642176,1.1316764459841838e-18,6.233457320319449e-20,1.0620756080875938e-19,-0.00021258502965793014,2.0970390468173123e-20,-6.776263578034403e-21,-0.0001653439103392884,5.0507594435748054e-18,-0.00037202381645329297,-0.0004960317746736109,0.0005314626032486558,-0.0007971939048729837,9.746186291029747e-19,2.4350671085330974e-18,1.1316764459841838e-18,0.0001594387722434476,-7.515839301369529e-20,-1.479680842262287e-19,-9.864539163826864e-20,-7.867226918051762e-20,-9.440671784674232e-20,-4.720335892337116e-20,-7.080504226246586e-19,-1.0620756080875938e-19,-1.022739486422032e-19,0.0005668934318237007,-0.00022675737272948027,-0.0001619695540284738,1.0789339367123366e-19,6.233457320319449e-20,-7.515839301369529e-20,6.478781870100647e-05,-4.315735682225861e-20,-2.1992407657899334e-20,1.0164395367051604e-20,-0.0,-0.0,3.295590248026441e-34,2.26683682316279e-35,-1.131315395379295e-21,0.0012755101779475808,-0.0005102040595375001,1.0789339367123366e-19,-0.0012755101779475808,1.0620756080875938e-19,-1.479680842262287e-19,-4.315735682225861e-20,0.0005102040595375001,-4.24830236772689e-20,6.620384183831123e-35,8.726870060504662e-35,5.040519776325969e-35,6.571102960705341e-34,9.856654441058012e-35,1.0944062479852958e-34,0.0006377550889737904,-0.00025510202976875007,9.825582188149884e-20,1.0486509191102556e-19,-0.00021258502965793014,-9.864539163826864e-20,-2.1992407657899334e-20,-4.24830236772689e-20,8.50340147735551e-05,-8.446975150780627e-22,3.8356209503822256e-22,-1.242093196119276e-20,5.473789545294794e-34,-3.564196733893769e-35,-2.0416859619945963e-20,0.0003306878206785768,3.603200299244637e-19,-0.0003306878206785768,-0.0,2.0970390468173123e-20,-7.867226918051762e-20,1.0164395367051604e-20,6.620384183831123e-35,-8.446975150780627e-22,4.724111931864172e-05,-0.0,0.0,3.4077702912370524e-34,-3.529649224689872e-36,-1.5686978475314704e-21,0.0009920635493472219,4.708829034534679e-19,-0.00028344671591185033,-0.0009920635493472219,-6.776263578034403e-21,-9.440671784674232e-20,-0.0,8.726870060504662e-35,3.8356209503822256e-22,-0.0,0.00028344671591185033,-0.0,4.140779410639801e-34,-0.0,8.949782217558526e-22,0.0004960317746736109,2.732795880770534e-19,-0.00014172335795592517,-8.965702961942904e-34,-0.0001653439103392884,-4.720335892337116e-20,-0.0,5.040519776325969e-35,-1.242093196119276e-20,0.0,-0.0,4.724111931864172e-05,4.268609370339436e-34,-2.772152887701409e-35,-3.2492168217791505e-20,0.0014880952658131719,3.540251958026928e-18,-4.899084296035031e-33,-0.008928571827709675,5.0507594435748054e-18,-7.080504226246586e-19,3.295590248026441e-34,6.571102960705341e-34,5.473789545294794e-34,3.4077702912370524e-34,4.140779410639801e-34,4.268609370339436e-34,0.004464285913854837,-7.552537427739386e-19,-7.159176340330739e-19,0.0011160714784637094,5.310378040437969e-19,8.316458950090153e-35,-0.0011160714784637094,-0.00037202381645329297,-1.0620756080875938e-19,2.26683682316279e-35,9.856654441058012e-35,-3.564196733893769e-35,-3.529649224689872e-36,-0.0,-2.772152887701409e-35,-7.552537427739386e-19,0.00037202381645329297,4.319271914121804e-35,0.00041335978312417865,5.765799387279172e-19,1.1128709600468853e-19,1.428702838483986e-18,-0.0004960317746736109,-1.022739486422032e-19,-1.131315395379295e-21,1.0944062479852958e-34,-2.0416859619945963e-20,-1.5686978475314704e-21,8.949782217558526e-22,-3.2492168217791505e-20,-7.159176340330739e-19,4.319271914121804e-35,8.26719551696442e-05,6.0,8.0,3.0,8.0,0.036389440298080444,-0.0076574902050197124,-0.006062610074877739,-0.0127728171646595,-0.006062610074877739,0.0004650297632906586,0.0004960317746736109,0.0011160714784637094,0.0004960317746736109,0.00028935185400769114,0.0008680555620230734,0.00038580247201025486,0.0013020833721384406,0.0008680555620230734,0.00028935185400769114,-0.0076574902050197124,0.0056206597946584225,0.0004960317746736109,0.0011160714784637094,0.0004960317746736109,-0.0006975446594879031,-0.00019841270113829523,-0.00044642857392318547,-0.00019841270113829523,3.102820652135411e-19,4.250529357655733e-19,1.7809374364146853e-19,3.0977204632735622e-18,4.1302940027302046e-19,3.0925594766366907e-19,-0.006062610074877739,0.0004960317746736109,0.003178933635354042,0.0008680555620230734,0.00038580247201025486,6.303147286927042e-19,-0.00014172335795592517,-9.440671784674232e-20,-3.7269449679189215e-20,-0.00028935185400769114,-0.00024801588733680546,-0.00011022927355952561,-2.961117289495375e-33,1.0015365693461954e-34,1.230595062487362e-20,-0.0127728171646595,0.0011160714784637094,0.0008680555620230734,0.02579365111887455,0.0008680555620230734,1.3526712917102557e-18,-8.254825658518212e-20,-0.0011160714784637094,1.6508299050410516e-22,2.710505431213761e-20,-0.0008680555620230734,5.929230630780102e-21,-0.0078125,-0.0008680555620230734,9.640722830880768e-19,-0.006062610074877739,0.0004960317746736109,0.00038580247201025486,0.0008680555620230734,0.003178933635354042,6.303147286927042e-19,-4.5465617246284906e-20,8.098834652929008e-34,-0.00014172335795592517,5.647270690134274e-22,6.776263578034403e-21,-0.00011022927355952561,4.254202711659716e-18,-0.00024801588733680546,-0.00028935185400769114,0.0004650297632906586,-0.0006975446594879031,6.303147286927042e-19,1.3526712917102557e-18,6.303147286927042e-19,0.00013950893480796367,2.5062735686221382e-20,1.8586323141532891e-19,2.5062735686221382e-20,-6.883823553295292e-20,-8.26058813470738e-20,-3.6713723248047095e-20,-6.195441133342278e-19,-8.26058813470738e-20,-6.883823553295292e-20,0.0004960317746736109,-0.00019841270113829523,-0.00014172335795592517,-8.254825658518212e-20,-4.5465617246284906e-20,2.5062735686221382e-20,5.668934318237007e-05,3.7762688431166636e-20,1.655023454272238e-20,1.0164395367051604e-20,-3.3881317890172014e-21,1.6940658945086007e-21,-1.0748944192940882e-34,-2.8662263001064003e-35,-2.4291286569387506e-22,0.0011160714784637094,-0.00044642857392318547,-9.440671784674232e-20,-0.0011160714784637094,8.098834652929008e-34,1.8586323141532891e-19,3.7762688431166636e-20,0.00044642857392318547,4.4414943410288473e-35,-8.275480229788904e-35,-1.128474576789396e-34,-4.81482486096809e-35,-8.253985213558165e-34,-1.1005314459902934e-34,-9.176010495536401e-35,0.0004960317746736109,-0.00019841270113829523,-3.7269449679189215e-20,1.6508299050410516e-22,-0.00014172335795592517,2.5062735686221382e-20,1.655023454272238e-20,4.4414943410288473e-35,5.668934318237007e-05,-4.760816205122643e-22,-4.7166567813903297e-23,-1.298145719099352e-22,-3.195840368809554e-34,-3.6791139340673694e-35,1.0224403927759345e-20,0.00028935185400769114,3.102820652135411e-19,-0.00028935185400769114,2.710505431213761e-20,5.647270690134274e-22,-6.883823553295292e-20,1.0164395367051604e-20,-8.275480229788904e-35,-4.760816205122643e-22,4.13359775848221e-05,-6.776263578034403e-21,0.0,3.1348492015686666e-34,1.2540213051643956e-35,1.4009234087691578e-23,0.0008680555620230734,4.250529357655733e-19,-0.00024801588733680546,-0.0008680555620230734,6.776263578034403e-21,-8.26058813470738e-20,-3.3881317890172014e-21,-1.128474576789396e-34,-4.7166567813903297e-23,-6.776263578034403e-21,0.00024801588733680546,-1.6940658945086007e-21,3.716942754247584e-34,-0.0,-9.62984090237656e-23,0.00038580247201025486,1.7809374364146853e-19,-0.00011022927355952561,5.929230630780102e-21,-0.00011022927355952561,-3.6713723248047095e-20,1.6940658945086007e-21,-4.81482486096809e-35,-1.298145719099352e-22,0.0,-1.6940658945086007e-21,3.149408075842075e-05,1.8837300415758263e-34,-2.8615332192668015e-35,-3.3452684448195042e-21,0.0013020833721384406,3.0977204632735622e-18,-2.961117289495375e-33,-0.0078125,4.254202711659716e-18,-6.195441133342278e-19,-1.0748944192940882e-34,-8.253985213558165e-34,-3.195840368809554e-34,3.1348492015686666e-34,3.716942754247584e-34,1.8837300415758263e-34,0.00390625,-8.811294355013127e-19,-4.81867655193019e-19,0.0008680555620230734,4.1302940027302046e-19,1.0015365693461954e-34,-0.0008680555620230734,-0.00024801588733680546,-8.26058813470738e-20,-2.8662263001064003e-35,-1.1005314459902934e-34,-3.6791139340673694e-35,1.2540213051643956e-35,-0.0,-2.8615332192668015e-35,-8.811294355013127e-19,0.00024801588733680546,3.6655472484115047e-35,0.00028935185400769114,3.0925594766366907e-19,1.230595062487362e-20,9.640722830880768e-19,-0.00028935185400769114,-6.883823553295292e-20,-2.4291286569387506e-22,-9.176010495536401e-35,1.0224403927759345e-20,1.4009234087691578e-23,-9.62984090237656e-23,-3.3452684448195042e-21,-4.81867655193019e-19,3.6655472484115047e-35,4.13359775848221e-05,6.0,8.0,4.0,3.0,0.06400462985038757,-0.014521329663693905,-0.011507936753332615,-0.01974206417798996,-0.02415674552321434,0.0009300595265813172,0.0009920635493472219,0.0017857142956927419,0.0022321429569274187,0.0005787037080153823,0.0013888889225199819,0.0017361111240461469,0.0017361111240461469,0.0031250000465661287,0.0026041667442768812,-0.014521329663693905,0.010923858731985092,0.0009920635493472219,0.0017857142956927419,0.0022321429569274187,-0.0013950893189758062,-0.00039682540227659047,-0.0007142857066355646,-0.0008928571478463709,5.935146523123505e-19,6.3713012825347e-19,8.142003392844807e-19,2.8912057243629608e-18,1.4869058513226313e-18,6.1954409265471244e-18,-0.011507936753332615,0.0009920635493472219,0.006181500386446714,0.0013888889225199819,0.0017361111240461469,1.2018874329801082e-18,-0.00028344671591185033,-1.5105075372466654e-19,-1.8881343569348464e-19,-0.0005787037080153823,-0.00039682540227659047,-0.0004960317746736109,-2.4908111832809937e-33,-1.2809886321593529e-33,-5.337452588079556e-33,-0.01974206417798996,0.0017857142956927419,0.0013888889225199819,0.025314154103398323,0.0031250000465661287,2.3554476658524183e-18,-1.7476767624778695e-19,-0.0011904762359336019,-3.965082252960754e-19,-2.710505431213761e-20,-0.0009259259095415473,-1.4404576178256416e-19,-0.0052083334885537624,-0.0020833334419876337,-1.0460288560373763e-32,-0.02415674552321434,0.0022321429569274187,0.0017361111240461469,0.0031250000465661287,0.05019841343164444,2.573173183604951e-18,-2.0067189695504485e-19,-3.965082252960754e-19,-0.0022321429569274187,-1.362325917637776e-20,-1.4404576178256416e-19,-0.0017361111240461469,-5.332685958486971e-33,-0.0031250000465661287,-0.015625,0.0009300595265813172,-0.0013950893189758062,1.2018874329801082e-18,2.3554476658524183e-18,2.573173183604951e-18,0.00027901786961592734,5.0125471372442764e-20,5.569996430505979e-20,3.7172646283065783e-19,-1.3767647106590584e-19,-1.321694127402575e-19,-1.652117626941476e-19,-5.782411758918651e-19,-2.973811754344051e-19,-1.2390882266684555e-18,0.0009920635493472219,-0.00039682540227659047,-0.00028344671591185033,-1.7476767624778695e-19,-2.0067189695504485e-19,5.0125471372442764e-20,0.00011337868636474013,6.042030278233632e-20,7.552537686233327e-20,2.710505431213761e-20,6.776263578034403e-21,3.3881317890172014e-21,-1.038808464639397e-34,-5.34244331924164e-35,-2.226018040117819e-34,0.0017857142956927419,-0.0007142857066355646,-1.5105075372466654e-19,-0.0011904762359336019,-3.965082252960754e-19,5.569996430505979e-20,6.042030278233632e-20,0.0004761904710903764,1.5860328753349075e-19,-6.018531076210112e-36,-2.407412430484045e-35,-3.611118645726067e-35,-1.1543351081243757e-34,-5.936580523269827e-35,-2.4735753136910696e-34,0.0022321429569274187,-0.0008928571478463709,-1.8881343569348464e-19,-3.965082252960754e-19,-0.0022321429569274187,3.7172646283065783e-19,7.552537686233327e-20,1.5860328753349075e-19,0.0008928571478463709,-1.6250033905767303e-34,-1.715281356719882e-34,-2.196763842816691e-34,-7.703719777548943e-34,-3.961913251482804e-34,-1.650797042711633e-33,0.0005787037080153823,5.935146523123505e-19,-0.0005787037080153823,-2.710505431213761e-20,-1.362325917637776e-20,-1.3767647106590584e-19,2.710505431213761e-20,-6.018531076210112e-36,-1.6250033905767303e-34,8.26719551696442e-05,-0.0,0.0,2.853229453704196e-34,1.4673752230556012e-34,6.114063410265943e-34,0.0013888889225199819,6.3713012825347e-19,-0.00039682540227659047,-0.0009259259095415473,-1.4404576178256416e-19,-1.321694127402575e-19,6.776263578034403e-21,-2.407412430484045e-35,-1.715281356719882e-34,-0.0,0.00026455026818439364,4.1155931937875473e-20,2.7391004316763715e-34,1.4086801728074039e-34,5.869500892222405e-34,0.0017361111240461469,8.142003392844807e-19,-0.0004960317746736109,-1.4404576178256416e-19,-0.0017361111240461469,-1.652117626941476e-19,3.3881317890172014e-21,-3.611118645726067e-35,-2.196763842816691e-34,0.0,4.1155931937875473e-20,0.0004960317746736109,3.4238754821982793e-34,1.7608502447078474e-34,7.336876000483636e-34,0.0017361111240461469,2.8912057243629608e-18,-2.4908111832809937e-33,-0.0052083334885537624,-5.332685958486971e-33,-5.782411758918651e-19,-1.038808464639397e-34,-1.1543351081243757e-34,-7.703719777548943e-34,2.853229453704196e-34,2.7391004316763715e-34,3.4238754821982793e-34,0.0017361111240461469,6.162975913874651e-34,2.5679065312926504e-33,0.0031250000465661287,1.4869058513226313e-18,-1.2809886321593529e-33,-0.0020833334419876337,-0.0031250000465661287,-2.973811754344051e-19,-5.34244331924164e-35,-5.936580523269827e-35,-3.961913251482804e-34,1.4673752230556012e-34,1.4086801728074039e-34,1.7608502447078474e-34,6.162975913874651e-34,0.0020833334419876337,1.320637689270604e-33,0.0026041667442768812,6.1954409265471244e-18,-5.337452588079556e-33,-1.0460288560373763e-32,-0.015625,-1.2390882266684555e-18,-2.226018040117819e-34,-2.4735753136910696e-34,-1.650797042711633e-33,6.114063410265943e-34,5.869500892222405e-34,7.336876000483636e-34,2.5679065312926504e-33,1.320637689270604e-33,0.0078125,6.0,8.0,4.0,4.0,0.05149677395820618,-0.011225818656384945,-0.008891369216144085,-0.015275297686457634,-0.015275297686457634,0.0006975446594879031,0.0007440476329065859,0.0013392857508733869,0.0013392857508733869,0.0004340277810115367,0.0010416667209938169,0.0010416667209938169,0.0013020833721384406,0.0018749999580904841,0.0013020833721384406,-0.011225818656384945,0.008326822891831398,0.0007440476329065859,0.0013392857508733869,0.0013392857508733869,-0.0010463169310241938,-0.00029761905898340046,-0.0005357142654247582,-0.0005357142654247582,6.823052015407699e-19,4.837768397455797e-19,4.837768397455797e-19,2.168404344971009e-18,8.921435521526094e-19,2.168404344971009e-18,-0.008891369216144085,0.0007440476329065859,0.0047105299308896065,0.0010416667209938169,0.0010416667209938169,1.343862748764755e-18,-0.00021258502965793014,-0.0,-0.0,-0.0004340277810115367,-0.00029761905898340046,-0.00029761905898340046,-2.785043113092574e-33,-1.145846362913634e-33,-2.785043113092574e-33,-0.015275297686457634,0.0013392857508733869,0.0010416667209938169,0.019298115745186806,0.0018749999580904841,1.915630357483992e-18,-1.1858461261560205e-20,-0.0008928571478463709,-0.0,-0.0,-0.0006944444612599909,-7.04903478607686e-20,-0.00390625,-0.0012499999720603228,-3.96998347937868e-33,-0.015275297686457634,0.0013392857508733869,0.0010416667209938169,0.0018749999580904841,0.019298115745186806,1.915630357483992e-18,-1.1858461261560205e-20,-0.0,-0.0008928571478463709,-9.22445485048854e-21,-7.04903478607686e-20,-0.0006944444612599909,-3.96998347937868e-33,-0.0012499999720603228,-0.00390625,0.0006975446594879031,-0.0010463169310241938,1.343862748764755e-18,1.915630357483992e-18,1.915630357483992e-18,0.0002092633949359879,-1.2947206723560157e-19,-0.0,-0.0,-1.0325735006825511e-19,-9.912705632401885e-20,-9.912705632401885e-20,-4.336808689942018e-19,-1.7842870009076423e-19,-4.336808689942018e-19,0.0007440476329065859,-0.00029761905898340046,-0.00021258502965793014,-1.1858461261560205e-20,-1.1858461261560205e-20,-1.2947206723560157e-19,8.50340147735551e-05,-0.0,-0.0,-4.743384504624082e-20,3.3881317890172014e-21,3.3881317890172014e-21,2.6832003947537427e-34,1.1039453157655966e-34,2.6832003947537427e-34,0.0013392857508733869,-0.0005357142654247582,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0005357142654247582,-0.0,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004340277810115367,6.823052015407699e-19,-0.0004340277810115367,-0.0,-9.22445485048854e-21,-1.0325735006825511e-19,-4.743384504624082e-20,-0.0,-0.0,6.200397183420137e-05,-0.0,0.0,2.1399222624697022e-34,8.804251223539237e-35,2.1399222624697022e-34,0.0010416667209938169,4.837768397455797e-19,-0.00029761905898340046,-0.0006944444612599909,-7.04903478607686e-20,-9.912705632401885e-20,3.3881317890172014e-21,-0.0,-0.0,-0.0,0.00019841270113829523,2.0140099850387352e-20,2.0543253811544638e-34,8.452081036844423e-35,2.0543253811544638e-34,0.0010416667209938169,4.837768397455797e-19,-0.00029761905898340046,-7.04903478607686e-20,-0.0006944444612599909,-9.912705632401885e-20,3.3881317890172014e-21,-0.0,-0.0,0.0,2.0140099850387352e-20,0.00019841270113829523,2.0543253811544638e-34,8.452081036844423e-35,2.0543253811544638e-34,0.0013020833721384406,2.168404344971009e-18,-2.785043113092574e-33,-0.00390625,-3.96998347937868e-33,-4.336808689942018e-19,2.6832003947537427e-34,-0.0,-0.0,2.1399222624697022e-34,2.0543253811544638e-34,2.0543253811544638e-34,0.0013020833721384406,3.6977854105715463e-34,8.98767276768878e-34,0.0018749999580904841,8.921435521526094e-19,-1.145846362913634e-33,-0.0012499999720603228,-0.0012499999720603228,-1.7842870009076423e-19,1.1039453157655966e-34,-0.0,-0.0,8.804251223539237e-35,8.452081036844423e-35,8.452081036844423e-35,3.6977854105715463e-34,0.0008333333535119891,3.6977854105715463e-34,0.0013020833721384406,2.168404344971009e-18,-2.785043113092574e-33,-3.96998347937868e-33,-0.00390625,-4.336808689942018e-19,2.6832003947537427e-34,-0.0,-0.0,2.1399222624697022e-34,2.0543253811544638e-34,2.0543253811544638e-34,8.98767276768878e-34,3.6977854105715463e-34,0.0013020833721384406,6.0,8.0,4.0,5.0,0.04315972328186035,-0.009159225970506668,-0.0072519839741289616,-0.012470237910747528,-0.010555555112659931,0.0005580357392318547,0.0005952381179668009,0.0010714285308495164,0.0008928571478463709,0.00034722223062999547,0.0008333333535119891,0.0006944444612599909,0.0010416667209938169,0.0012499999720603228,0.0007440476329065859,-0.009159225970506668,0.006732887122780085,0.0005952381179668009,0.0010714285308495164,0.0008928571478463709,-0.0008370535797439516,-0.0002380952355451882,-0.00042857142398133874,-0.0003571428533177823,5.553309095623488e-19,4.142959171884157e-19,3.304235253882952e-19,1.734723475976807e-18,5.947623508688102e-19,1.0620756080875938e-18,-0.0072519839741289616,0.0005952381179668009,0.00380810652859509,0.0008333333535119891,0.0006944444612599909,1.0365183120991195e-18,-0.0001700680295471102,-1.0773805209694552e-33,-6.733628370853465e-34,-0.00034722223062999547,-0.0002380952355451882,-0.00019841270113829523,-3.965082252960754e-19,-1.0573552502232717e-19,-1.3151617223056953e-33,-0.012470237910747528,0.0010714285308495164,0.0008333333535119891,0.015605159103870392,0.0012499999720603228,1.9913208990501973e-18,1.7787691892340307e-20,-0.0007142857066355646,-1.2936398901100778e-33,1.3552527156068805e-20,-0.0005555555690079927,-4.34972181940928e-20,-0.0031250000465661287,-0.0008333333535119891,-2.5266404347650493e-33,-0.010555555112659931,0.0008928571478463709,0.0006944444612599909,0.0012499999720603228,0.009742063470184803,1.531276956753318e-18,-6.399223186918564e-34,-1.5916437792553553e-33,-0.00044642857392318547,2.4599230603752905e-21,-1.492327399852457e-19,-0.00034722223062999547,-3.421965808973422e-33,-0.0006249999860301614,-0.0014880952658131719,0.0005580357392318547,-0.0008370535797439516,1.0365183120991195e-18,1.9913208990501973e-18,1.531276956753318e-18,0.00016741071885917336,-8.286212639120624e-20,-1.7401046994517708e-19,-1.0875654371573568e-19,-8.26058813470738e-20,-7.930164376674537e-20,-6.608470637012875e-20,-3.4694470036524025e-19,-1.189524624189438e-19,-2.1241512161751876e-19,0.0005952381179668009,-0.0002380952355451882,-0.0001700680295471102,1.7787691892340307e-20,-6.399223186918564e-34,-8.286212639120624e-20,6.80272132740356e-05,8.61287580706745e-35,5.383047235924193e-35,-4.0657581468206416e-20,-5.082197683525802e-21,-0.0,1.6729549505125148e-34,5.653035559022774e-35,1.0513764966717286e-34,0.0010714285308495164,-0.00042857142398133874,-1.0773805209694552e-33,-0.0007142857066355646,-1.5916437792553553e-33,-1.7401046994517708e-19,8.61287580706745e-35,0.0002857142826542258,1.1304399712015472e-34,8.586241217294229e-35,8.242791384931467e-35,6.868992629452272e-35,3.606221288304702e-34,1.23641870773972e-34,2.207890631531193e-34,0.0008928571478463709,-0.0003571428533177823,-6.733628370853465e-34,-1.2936398901100778e-33,-0.00044642857392318547,-1.0875654371573568e-19,5.383047235924193e-35,1.1304399712015472e-34,0.00017857142665889114,5.366400904301856e-35,5.151744615582167e-35,4.2931206086471143e-35,2.253888276491846e-34,7.727617210359176e-35,1.3799316447069957e-34,0.00034722223062999547,5.553309095623488e-19,-0.00034722223062999547,1.3552527156068805e-20,2.4599230603752905e-21,-8.26058813470738e-20,-4.0657581468206416e-20,8.586241217294229e-35,5.366400904301856e-35,4.960317528457381e-05,-6.776263578034403e-21,0.0,1.5857810241395032e-34,5.283628423670956e-35,1.0481251757246252e-34,0.0008333333535119891,4.142959171884157e-19,-0.0002380952355451882,-0.0005555555690079927,-1.492327399852457e-19,-7.930164376674537e-20,-5.082197683525802e-21,8.242791384931467e-35,5.151744615582167e-35,-6.776263578034403e-21,0.00015873015217948705,1.2427776396085496e-20,2.64338825480515e-19,7.04903478607686e-20,1.0062000906354684e-34,0.0006944444612599909,3.304235253882952e-19,-0.00019841270113829523,-4.34972181940928e-20,-0.00034722223062999547,-6.608470637012875e-20,-0.0,6.868992629452272e-35,4.2931206086471143e-35,0.0,1.2427776396085496e-20,9.920635056914762e-05,1.5765142486053109e-34,5.24750493125721e-35,8.38500094661952e-35,0.0010416667209938169,1.734723475976807e-18,-3.965082252960754e-19,-0.0031250000465661287,-3.421965808973422e-33,-3.4694470036524025e-19,1.6729549505125148e-34,3.606221288304702e-34,2.253888276491846e-34,1.5857810241395032e-34,2.64338825480515e-19,1.5765142486053109e-34,0.0010416667209938169,3.6390905899120894e-34,4.402125783961174e-34,0.0012499999720603228,5.947623508688102e-19,-1.0573552502232717e-19,-0.0008333333535119891,-0.0006249999860301614,-1.189524624189438e-19,5.653035559022774e-35,1.23641870773972e-34,7.727617210359176e-35,5.283628423670956e-35,7.04903478607686e-20,5.24750493125721e-35,3.6390905899120894e-34,0.00041666667675599456,1.5093001933503877e-34,0.0007440476329065859,1.0620756080875938e-18,-1.3151617223056953e-33,-2.5266404347650493e-33,-0.0014880952658131719,-2.1241512161751876e-19,1.0513764966717286e-34,2.207890631531193e-34,1.3799316447069957e-34,1.0481251757246252e-34,1.0062000906354684e-34,8.38500094661952e-35,4.402125783961174e-34,1.5093001933503877e-34,0.00037202381645329297,6.0,8.0,4.0,6.0,0.03717875853180885,-0.007738980930298567,-0.00612599216401577,-0.010540674440562725,-0.007738980930298567,0.0004650297632906586,0.0004960317746736109,0.0008928571478463709,0.0006377550889737904,0.00028935185400769114,0.0006944444612599909,0.0004960317746736109,0.0008680555620230734,0.0008928571478463709,0.0004650297632906586,-0.007738980930298567,0.005653256084769964,0.0004960317746736109,0.0008928571478463709,0.0006377550889737904,-0.0006975446594879031,-0.00019841270113829523,-0.0003571428533177823,-0.00025510202976875007,3.0861578741773546e-19,3.18565064126735e-19,1.6049141775452253e-19,1.4456028621814804e-18,2.888845571280194e-19,3.4296190326397985e-19,-0.00612599216401577,0.0004960317746736109,0.0031970427371561527,0.0006944444612599909,0.0004960317746736109,6.363462712254994e-19,-0.00014172335795592517,-7.552537686233327e-20,-1.2947206723560157e-19,-0.00028935185400769114,-0.00019841270113829523,-0.00014172335795592517,-1.3187743470535584e-33,-7.552537686233327e-20,-1.47510498251122e-19,-0.010540674440562725,0.0008928571478463709,0.0006944444612599909,0.013103505596518517,0.0008928571478463709,1.2414483797512224e-18,-8.738383812389348e-20,-0.0005952381179668009,-2.4923373201347243e-19,-0.0,-0.00046296295477077365,-1.1702999127779399e-19,-0.0026041667442768812,-0.0005952381179668009,-3.097720566671139e-19,-0.007738980930298567,0.0006377550889737904,0.0004960317746736109,0.0008928571478463709,0.005653256084769964,8.9456688115466e-19,-5.394669683561683e-20,-1.1328805883115137e-19,-0.00025510202976875007,-1.0698534120962259e-21,-4.1504614415460717e-20,-0.00019841270113829523,-1.8539149360230393e-33,-0.0003571428533177823,-0.0006975446594879031,0.0004650297632906586,-0.0006975446594879031,6.363462712254994e-19,1.2414483797512224e-18,8.9456688115466e-19,0.00013950893480796367,2.5062735686221382e-20,2.7849982152529897e-20,2.629901406112835e-21,-6.883823553295292e-20,-6.608470637012875e-20,-4.720335892337116e-20,-2.8912058794593256e-19,-8.49660473545378e-20,-1.2169615588729683e-19,0.0004960317746736109,-0.00019841270113829523,-0.00014172335795592517,-8.738383812389348e-20,-5.394669683561683e-20,2.5062735686221382e-20,5.668934318237007e-05,3.021015139116816e-20,2.1578678411129306e-20,1.0164395367051604e-20,3.3881317890172014e-21,-0.0,-5.194042323196985e-35,-3.6119087179789514e-36,3.0822252524785114e-36,0.0008928571478463709,-0.0003571428533177823,-7.552537686233327e-20,-0.0005952381179668009,-1.1328805883115137e-19,2.7849982152529897e-20,3.021015139116816e-20,0.0002380952355451882,4.531522547116511e-20,-9.027796614315168e-36,-1.2789378536946488e-35,3.76158192263132e-36,-5.771675540621879e-35,7.18714350453906e-36,2.2871587270258887e-35,0.0006377550889737904,-0.00025510202976875007,-1.2947206723560157e-19,-2.4923373201347243e-19,-0.00025510202976875007,2.629901406112835e-21,2.1578678411129306e-20,4.531522547116511e-20,0.0001020408162730746,1.504632769052528e-36,6.018531076210112e-36,3.021015139116816e-20,-5.450250873590021e-36,5.437827185786784e-20,1.0620756080875938e-19,0.00028935185400769114,3.0861578741773546e-19,-0.00028935185400769114,-0.0,-1.0698534120962259e-21,-6.883823553295292e-20,1.0164395367051604e-20,-9.027796614315168e-36,1.504632769052528e-36,4.13359775848221e-05,-0.0,0.0,1.426614726852098e-34,4.0625084764418256e-35,6.620384183831123e-35,0.0006944444612599909,3.18565064126735e-19,-0.00019841270113829523,-0.00046296295477077365,-4.1504614415460717e-20,-6.608470637012875e-20,3.3881317890172014e-21,-1.2789378536946488e-35,6.018531076210112e-36,-0.0,0.00013227513409219682,1.1858461261560205e-20,1.3695502158381858e-34,4.513898307157584e-35,7.071774014546882e-35,0.0004960317746736109,1.6049141775452253e-19,-0.00014172335795592517,-1.1702999127779399e-19,-0.00019841270113829523,-4.720335892337116e-20,-0.0,3.76158192263132e-36,3.021015139116816e-20,0.0,1.1858461261560205e-20,5.668934318237007e-05,9.782501869685242e-35,3.021015139116816e-20,5.900420188538822e-20,0.0008680555620230734,1.4456028621814804e-18,-1.3187743470535584e-33,-0.0026041667442768812,-1.8539149360230393e-33,-2.8912058794593256e-19,-5.194042323196985e-35,-5.771675540621879e-35,-5.450250873590021e-36,1.426614726852098e-34,1.3695502158381858e-34,9.782501869685242e-35,0.0008680555620230734,1.7608502447078474e-34,2.522051139515546e-34,0.0008928571478463709,2.888845571280194e-19,-7.552537686233327e-20,-0.0005952381179668009,-0.0003571428533177823,-8.49660473545378e-20,-3.6119087179789514e-36,7.18714350453906e-36,5.437827185786784e-20,4.0625084764418256e-35,4.513898307157584e-35,3.021015139116816e-20,1.7608502447078474e-34,0.0002380952355451882,1.2390882525178497e-19,0.0004650297632906586,3.4296190326397985e-19,-1.47510498251122e-19,-3.097720566671139e-19,-0.0006975446594879031,-1.2169615588729683e-19,3.0822252524785114e-36,2.2871587270258887e-35,1.0620756080875938e-19,6.620384183831123e-35,7.071774014546882e-35,5.900420188538822e-20,2.522051139515546e-34,1.2390882525178497e-19,0.00013950893480796367,6.0,8.0,4.0,7.0,0.032669004052877426,-0.006701743230223656,-0.005303996615111828,-0.009130527265369892,-0.005920493043959141,0.00039859695243649185,0.00042517005931586027,0.0007653061184100807,0.00047831633128225803,0.00024801588733680546,0.0005952381179668009,0.00037202381645329297,0.0007440476329065859,0.0006696428754366934,0.0003100198518950492,-0.006701743230223656,0.004872980527579784,0.00042517005931586027,0.0007653061184100807,0.00047831633128225803,-0.0005978954141028225,-0.0001700680295471102,-0.0003061224415432662,-0.00019132652960252017,2.6116457157863103e-19,1.922691636481839e-19,1.414422108045535e-19,7.292919037671375e-19,2.0931559831410014e-19,3.8342923319129907e-19,-0.005303996615111828,0.00042517005931586027,0.00275550689548254,0.0005952381179668009,0.00037202381645329297,4.2719039631780444e-19,-0.00012147716188337654,-1.5536649102247954e-19,-7.115076756936123e-20,-0.00024801588733680546,-0.0001700680295471102,-0.00010629251482896507,-2.8322015354022696e-19,-6.437450399132683e-20,-7.427827284193887e-20,-0.009130527265369892,0.0007653061184100807,0.0005952381179668009,0.011295351199805737,0.0006696428754366934,1.0362100839233669e-18,-6.419708021228274e-20,-0.0005102040595375001,-9.331662304636814e-20,-0.0,-0.00039682540227659047,-4.068930513716753e-20,-0.0022321429569274187,-0.00044642857392318547,-1.2187161349679897e-20,-0.005920493043959141,0.00047831633128225803,0.00037202381645329297,0.0006696428754366934,0.003585600992664695,6.193092974378393e-19,-4.090651759614513e-20,-1.8692530547245286e-19,-0.0001594387722434476,3.853889403847108e-21,-8.809142651444724e-20,-0.00012400794366840273,-3.7172646283065783e-19,-0.00022321428696159273,-0.00037202381645329297,0.00039859695243649185,-0.0005978954141028225,4.2719039631780444e-19,1.0362100839233669e-18,6.193092974378393e-19,0.00011957908282056451,7.080503838505674e-20,3.866822178853919e-20,2.4167639021733776e-20,-5.900420188538822e-20,-5.664402941557569e-20,-3.540251919252837e-20,-2.4781765050356993e-19,-6.372453390031621e-20,-7.670545986606527e-20,0.00042517005931586027,-0.0001700680295471102,-0.00012147716188337654,-6.419708021228274e-20,-4.090651759614513e-20,7.080503838505674e-20,4.8590864025754854e-05,2.5894414093355167e-20,1.5903363147834573e-20,1.0164395367051604e-20,-0.0,-0.0,-1.0212266736943197e-34,-1.7965147175333507e-22,2.1808984900904515e-22,0.0007653061184100807,-0.0003061224415432662,-1.5536649102247954e-19,-0.0005102040595375001,-1.8692530547245286e-19,3.866822178853919e-20,2.5894414093355167e-20,0.0002040816325461492,3.3986418295580265e-20,-1.504632769052528e-35,6.042030278233632e-20,1.504632769052528e-36,3.398641894181512e-19,6.797283659116053e-20,-1.6954343571662902e-35,0.00047831633128225803,-0.00019132652960252017,-7.115076756936123e-20,-9.331662304636814e-20,-0.0001594387722434476,2.4167639021733776e-20,1.5903363147834573e-20,3.3986418295580265e-20,6.377550744218752e-05,-5.729843853418506e-22,1.068497959734439e-22,1.1856798014605862e-20,1.1988792554681807e-35,2.6588670658880044e-21,-2.217507946979948e-22,0.00024801588733680546,2.6116457157863103e-19,-0.00024801588733680546,-0.0,3.853889403847108e-21,-5.900420188538822e-20,1.0164395367051604e-20,-1.504632769052528e-35,-5.729843853418506e-22,3.543083948898129e-05,-0.0,0.0,1.1912074042149198e-34,-3.667884383254251e-22,-5.863573573555489e-22,0.0005952381179668009,1.922691636481839e-19,-0.0001700680295471102,-0.00039682540227659047,-8.809142651444724e-20,-5.664402941557569e-20,-0.0,6.042030278233632e-20,1.068497959734439e-22,-0.0,0.00011337868636474013,8.470329472543003e-21,1.8881343569348464e-19,3.7705063669274953e-20,2.493161695684116e-22,0.00037202381645329297,1.414422108045535e-19,-0.00010629251482896507,-4.068930513716753e-20,-0.00012400794366840273,-3.540251919252837e-20,-0.0,1.504632769052528e-36,1.1856798014605862e-20,0.0,8.470329472543003e-21,3.543083948898129e-05,9.1381404067801e-35,3.681050257192223e-21,2.5932879607426017e-20,0.0007440476329065859,7.292919037671375e-19,-2.8322015354022696e-19,-0.0022321429569274187,-3.7172646283065783e-19,-2.4781765050356993e-19,-1.0212266736943197e-34,3.398641894181512e-19,1.1988792554681807e-35,1.1912074042149198e-34,1.8881343569348464e-19,9.1381404067801e-35,0.0007440476329065859,2.4781765050356993e-19,1.7507880589825567e-34,0.0006696428754366934,2.0931559831410014e-19,-6.437450399132683e-20,-0.00044642857392318547,-0.00022321428696159273,-6.372453390031621e-20,-1.7965147175333507e-22,6.797283659116053e-20,2.6588670658880044e-21,-3.667884383254251e-22,3.7705063669274953e-20,3.681050257192223e-21,2.4781765050356993e-19,0.00014880952949170023,3.771518289928809e-21,0.0003100198518950492,3.8342923319129907e-19,-7.427827284193887e-20,-1.2187161349679897e-20,-0.00037202381645329297,-7.670545986606527e-20,2.1808984900904515e-22,-1.6954343571662902e-35,-2.217507946979948e-22,-5.863573573555489e-22,2.493161695684116e-22,2.5932879607426017e-20,1.7507880589825567e-34,3.771518289928809e-21,6.200397183420137e-05,6.0,8.0,4.0,8.0,0.029142897576093674,-0.0059105283580720425,-0.004677166230976582,-0.008054315112531185,-0.004677166230976582,0.00034877232974395156,0.00037202381645329297,0.0006696428754366934,0.00037202381645329297,0.00021701389050576836,0.0005208333604969084,0.00028935185400769114,0.0006510416860692203,0.0005208333604969084,0.00021701389050576836,-0.0059105283580720425,0.0042824591509997845,0.00037202381645329297,0.0006696428754366934,0.00037202381645329297,-0.0005231584655120969,-0.00014880952949170023,-0.0002678571327123791,-0.00014880952949170023,3.4740120066579295e-19,2.538505372048606e-19,1.524995476428561e-19,1.0842021724855044e-18,2.733812795936091e-19,3.3751737462276168e-19,-0.004677166230976582,0.00037202381645329297,0.002421402605250478,0.0005208333604969084,0.00028935185400769114,6.939596076849709e-19,-0.00010629251482896507,-0.0,6.776263578034403e-21,-0.00021701389050576836,-0.00014880952949170023,-8.26719551696442e-05,-1.438173257192913e-33,2.710505431213761e-20,1.8091344725329695e-20,-0.008054315112531185,0.0006696428754366934,0.0005208333604969084,0.00992683507502079,0.0005208333604969084,9.974659780071488e-19,6.4986006952679455e-21,-0.00044642857392318547,2.509795063897884e-20,1.3552527156068805e-20,-0.00034722223062999547,6.080833288456752e-21,-0.001953125,-0.00034722223062999547,6.393448914188836e-20,-0.004677166230976582,0.00037202381645329297,0.00028935185400769114,0.0005208333604969084,0.002421402605250478,6.939596076849709e-19,5.200217939243793e-21,-0.0,-0.00010629251482896507,1.5191642085392316e-20,-1.6940658945086007e-20,-8.26719551696442e-05,-1.438173257192913e-33,-0.00014880952949170023,-0.00021701389050576836,0.00034877232974395156,-0.0005231584655120969,6.939596076849709e-19,9.974659780071488e-19,6.939596076849709e-19,0.00010463169746799394,-6.473603361780078e-20,-0.0,-6.473603361780078e-20,-5.162867503412756e-20,-4.9563528162009426e-20,-2.753529485941602e-20,-2.168404344971009e-19,-4.9563528162009426e-20,-5.162867503412756e-20,0.00037202381645329297,-0.00014880952949170023,-0.00010629251482896507,6.4986006952679455e-21,5.200217939243793e-21,-6.473603361780078e-20,4.251700738677755e-05,-0.0,-4.4692561175610885e-23,-2.541098841762901e-20,-1.6940658945086007e-21,-2.541098841762901e-21,1.3416001973768713e-34,-1.6267714144802384e-22,5.348231065231521e-22,0.0006696428754366934,-0.0002678571327123791,-0.0,-0.00044642857392318547,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.00014880952949170023,6.776263578034403e-21,2.509795063897884e-20,-0.00010629251482896507,-6.473603361780078e-20,-4.4692561175610885e-23,-0.0,4.251700738677755e-05,-9.124731371497373e-23,-2.961935409744609e-23,-1.6940658945086007e-21,1.3416001973768713e-34,-7.141223903787181e-21,-2.3213111368938796e-20,0.00021701389050576836,3.4740120066579295e-19,-0.00021701389050576836,1.3552527156068805e-20,1.5191642085392316e-20,-5.162867503412756e-20,-2.541098841762901e-20,-0.0,-9.124731371497373e-23,3.100198591710068e-05,-3.3881317890172014e-21,-5.082197683525802e-21,1.0699611312348511e-34,-3.321325039598432e-22,-4.632899569441797e-22,0.0005208333604969084,2.538505372048606e-19,-0.00014880952949170023,-0.00034722223062999547,-1.6940658945086007e-20,-4.9563528162009426e-20,-1.6940658945086007e-21,-0.0,-2.961935409744609e-23,-3.3881317890172014e-21,9.920635056914762e-05,5.082197683525802e-21,1.0271626905772319e-34,-2.100791369104813e-22,-6.047284637123062e-23,0.00028935185400769114,1.524995476428561e-19,-8.26719551696442e-05,6.080833288456752e-21,-8.26719551696442e-05,-2.753529485941602e-20,-2.541098841762901e-21,-0.0,-1.6940658945086007e-21,-5.082197683525802e-21,5.082197683525802e-21,2.362055965932086e-05,5.706459136997132e-35,-6.819578276887631e-21,-4.522836181332424e-21,0.0006510416860692203,1.0842021724855044e-18,-1.438173257192913e-33,-0.001953125,-1.438173257192913e-33,-2.168404344971009e-19,1.3416001973768713e-34,-0.0,1.3416001973768713e-34,1.0699611312348511e-34,1.0271626905772319e-34,5.706459136997132e-35,0.0006510416860692203,1.0271626905772319e-34,1.0699611312348511e-34,0.0005208333604969084,2.733812795936091e-19,2.710505431213761e-20,-0.00034722223062999547,-0.00014880952949170023,-4.9563528162009426e-20,-1.6267714144802384e-22,-0.0,-7.141223903787181e-21,-3.321325039598432e-22,-2.100791369104813e-22,-6.819578276887631e-21,1.0271626905772319e-34,9.920635056914762e-05,-1.8206524778866303e-20,0.00021701389050576836,3.3751737462276168e-19,1.8091344725329695e-20,6.393448914188836e-20,-0.00021701389050576836,-5.162867503412756e-20,5.348231065231521e-22,-0.0,-2.3213111368938796e-20,-4.632899569441797e-22,-6.047284637123062e-23,-4.522836181332424e-21,1.0699611312348511e-34,-1.8206524778866303e-20,3.100198591710068e-05,6.0,8.0,5.0,3.0,0.05373677238821983,-0.01185515895485878,-0.009391534142196178,-0.013657407835125923,-0.01974206417798996,0.0007440476329065859,0.0007936508045531809,0.0011904762359336019,0.0017857142956927419,0.00046296295477077365,0.0009259259095415473,0.0013888889225199819,0.0009920635493472219,0.0020833334419876337,0.0020833334419876337,-0.01185515895485878,0.008834325708448887,0.0007936508045531809,0.0011904762359336019,0.0017857142956927419,-0.0011160714784637094,-0.0003174603043589741,-0.0004761904710903764,-0.0007142857066355646,-1.1607040748350478e-18,-8.692709742397525e-19,-1.3216941015531808e-18,-2.8322016904986345e-18,-1.9825412040285595e-18,-9.912705813347644e-18,-0.009391534142196178,0.0007936508045531809,0.004998110234737396,0.0009259259095415473,0.0013888889225199819,-2.527043181999247e-18,-0.00022675737272948027,-2.1888878469951893e-33,-3.2833320459992724e-33,-0.00046296295477077365,-0.00026455026818439364,-0.00039682540227659047,-6.412757351329352e-33,-4.488930439804134e-33,-2.2444651096994716e-32,-0.013657407835125923,0.0011904762359336019,0.0009259259095415473,0.012781084515154362,0.0020833334419876337,-3.7624223308010146e-18,1.1858461261560205e-20,-0.0005952381179668009,-4.8884332151906274e-33,2.710505431213761e-20,-0.00046296295477077365,-3.725176495244369e-33,-0.0019841270986944437,-0.0010416667209938169,-3.341702393483704e-32,-0.01974206417798996,0.0017857142956927419,0.0013888889225199819,0.0020833334419876337,0.04057539626955986,-6.4083282648968344e-18,-3.6186043406888974e-33,-5.550800404649985e-33,-0.0017857142956927419,2.338304199244241e-33,-4.32889643483128e-33,-0.0013888889225199819,-1.6262110640854063e-32,-0.0020833334419876337,-0.012500000186264515,0.0007440476329065859,-0.0011160714784637094,-2.527043181999247e-18,-3.7624223308010146e-18,-6.4083282648968344e-18,0.00022321428696159273,1.473104497898549e-19,1.933449637335974e-19,2.9001743267569904e-19,2.202823588753282e-19,1.762258793454443e-19,2.64338825480515e-19,5.664403070804539e-19,3.965082252960754e-19,1.9825412040285595e-18,0.0007936508045531809,-0.0003174603043589741,-0.00022675737272948027,1.1858461261560205e-20,-3.6186043406888974e-33,1.473104497898549e-19,9.070294618140906e-05,1.275981669073323e-34,1.9139725036099846e-34,1.6940658945086007e-20,-3.3881317890172014e-21,-0.0,3.7382274671921217e-34,2.616759249993359e-34,1.3083795790789315e-33,0.0011904762359336019,-0.0004761904710903764,-2.1888878469951893e-33,-0.0005952381179668009,-5.550800404649985e-33,1.933449637335974e-19,1.275981669073323e-34,0.0002380952355451882,2.512088824892327e-34,1.9080535910882319e-34,1.5264428958294595e-34,2.2896644011413744e-34,4.906423421545993e-34,3.4344964869176914e-34,1.7172482893765938e-33,0.0017857142956927419,-0.0007142857066355646,-3.2833320459992724e-33,-4.8884332151906274e-33,-0.0017857142956927419,2.9001743267569904e-19,1.9139725036099846e-34,2.512088824892327e-34,0.0007142857066355646,2.8620803292351627e-34,2.2896644011413744e-34,3.4344964869176914e-34,7.35963513231899e-34,5.151744500787797e-34,2.5758723422293945e-33,0.00046296295477077365,-1.1607040748350478e-18,-0.00046296295477077365,2.710505431213761e-20,2.338304199244241e-33,2.202823588753282e-19,1.6940658945086007e-20,1.9080535910882319e-34,2.8620803292351627e-34,6.613756704609841e-05,-6.776263578034403e-21,0.0,5.590000937198001e-34,3.913000747874097e-34,1.9565003280193003e-33,0.0009259259095415473,-8.692709742397525e-19,-0.00026455026818439364,-0.00046296295477077365,-4.32889643483128e-33,1.762258793454443e-19,-3.3881317890172014e-21,1.5264428958294595e-34,2.2896644011413744e-34,-6.776263578034403e-21,0.00013227513409219682,-0.0,4.4720006579229045e-34,3.130400460546033e-34,1.5652002991496387e-33,0.0013888889225199819,-1.3216941015531808e-18,-0.00039682540227659047,-3.725176495244369e-33,-0.0013888889225199819,2.64338825480515e-19,-0.0,2.2896644011413744e-34,3.4344964869176914e-34,0.0,-0.0,0.00039682540227659047,6.708000757295616e-34,4.69560080561342e-34,2.347800356888962e-33,0.0009920635493472219,-2.8322016904986345e-18,-6.412757351329352e-33,-0.0019841270986944437,-1.6262110640854063e-32,5.664403070804539e-19,3.7382274671921217e-34,4.906423421545993e-34,7.35963513231899e-34,5.590000937198001e-34,4.4720006579229045e-34,6.708000757295616e-34,0.0004960317746736109,1.0062001135943425e-33,5.031000843478201e-33,0.0020833334419876337,-1.9825412040285595e-18,-4.488930439804134e-33,-0.0010416667209938169,-0.0020833334419876337,3.965082252960754e-19,2.616759249993359e-34,3.4344964869176914e-34,5.151744500787797e-34,3.913000747874097e-34,3.130400460546033e-34,4.69560080561342e-34,1.0062001135943425e-33,0.0010416667209938169,3.521700627168939e-33,0.0020833334419876337,-9.912705813347644e-18,-2.2444651096994716e-32,-3.341702393483704e-32,-0.012500000186264515,1.9825412040285595e-18,1.3083795790789315e-33,1.7172482893765938e-33,2.5758723422293945e-33,1.9565003280193003e-33,1.5652002991496387e-33,2.347800356888962e-33,5.031000843478201e-33,3.521700627168939e-33,0.0062500000931322575,6.0,8.0,5.0,4.0,0.04315972328186035,-0.009159225970506668,-0.0072519839741289616,-0.010555555112659931,-0.012470237910747528,0.0005580357392318547,0.0005952381179668009,0.0008928571478463709,0.0010714285308495164,0.00034722223062999547,0.0006944444612599909,0.0008333333535119891,0.0007440476329065859,0.0012499999720603228,0.0010416667209938169,-0.009159225970506668,0.006732887122780085,0.0005952381179668009,0.0008928571478463709,0.0010714285308495164,-0.0008370535797439516,-0.0002380952355451882,-0.0003571428533177823,-0.00042857142398133874,5.434724483007886e-19,3.304235253882952e-19,4.142959171884157e-19,1.0620756080875938e-18,5.947623508688102e-19,1.734723475976807e-18,-0.0072519839741289616,0.0005952381179668009,0.00380810652859509,0.0006944444612599909,0.0008333333535119891,1.0365183120991195e-18,-0.0001700680295471102,-6.733628370853465e-34,-1.0773805209694552e-33,-0.00034722223062999547,-0.00019841270113829523,-0.0002380952355451882,-1.3151617223056953e-33,-1.0573552502232717e-19,-3.965082252960754e-19,-0.010555555112659931,0.0008928571478463709,0.0006944444612599909,0.009742063470184803,0.0012499999720603228,1.531276956753318e-18,-6.396606334455542e-34,-0.00044642857392318547,-1.5916437792553553e-33,1.3552527156068805e-20,-0.00034722223062999547,-1.0573552502232717e-19,-0.0014880952658131719,-0.0006249999860301614,-3.349528540997891e-33,-0.012470237910747528,0.0010714285308495164,0.0008333333535119891,0.0012499999720603228,0.015605159103870392,1.9913208990501973e-18,1.7787691892340307e-20,-1.2936398901100778e-33,-0.0007142857066355646,7.679232998625468e-21,-6.765019120972709e-34,-0.0005555555690079927,-2.5266404347650493e-33,-0.0008333333535119891,-0.0031250000465661287,0.0005580357392318547,-0.0008370535797439516,1.0365183120991195e-18,1.531276956753318e-18,1.9913208990501973e-18,0.00016741071885917336,-8.286212639120624e-20,-1.0875654371573568e-19,-1.7401046994517708e-19,-8.26058813470738e-20,-6.608470637012875e-20,-7.930164376674537e-20,-2.1241512161751876e-19,-1.189524624189438e-19,-3.4694470036524025e-19,0.0005952381179668009,-0.0002380952355451882,-0.0001700680295471102,-6.396606334455542e-34,1.7787691892340307e-20,-8.286212639120624e-20,6.80272132740356e-05,5.383047235924193e-35,8.61287580706745e-35,-3.7269449679189215e-20,-0.0,-5.082197683525802e-21,1.0513764966717286e-34,5.635591406527563e-35,1.6378810230254846e-34,0.0008928571478463709,-0.0003571428533177823,-6.733628370853465e-34,-0.00044642857392318547,-1.2936398901100778e-33,-1.0875654371573568e-19,5.383047235924193e-35,0.00017857142665889114,1.1304399712015472e-34,5.366400904301856e-35,4.2931206086471143e-35,5.151744615582167e-35,1.3799316447069957e-34,7.727617210359176e-35,2.253888276491846e-34,0.0010714285308495164,-0.00042857142398133874,-1.0773805209694552e-33,-1.5916437792553553e-33,-0.0007142857066355646,-1.7401046994517708e-19,8.61287580706745e-35,1.1304399712015472e-34,0.0002857142826542258,8.586241217294229e-35,6.868992629452272e-35,8.242791384931467e-35,2.207890631531193e-34,1.23641870773972e-34,3.606221288304702e-34,0.00034722223062999547,5.434724483007886e-19,-0.00034722223062999547,1.3552527156068805e-20,7.679232998625468e-21,-8.26058813470738e-20,-3.7269449679189215e-20,5.366400904301856e-35,8.586241217294229e-35,4.960317528457381e-05,-0.0,-1.3552527156068805e-20,1.0481251757246252e-34,5.416677968589101e-35,1.504632769052528e-34,0.0006944444612599909,3.304235253882952e-19,-0.00019841270113829523,-0.00034722223062999547,-6.765019120972709e-34,-6.608470637012875e-20,-0.0,4.2931206086471143e-35,6.868992629452272e-35,-0.0,9.920635056914762e-05,0.0,8.38500094661952e-35,4.6956005760246795e-35,1.3695502158381858e-34,0.0008333333535119891,4.142959171884157e-19,-0.0002380952355451882,-1.0573552502232717e-19,-0.0005555555690079927,-7.930164376674537e-20,-5.082197683525802e-21,5.151744615582167e-35,8.242791384931467e-35,-1.3552527156068805e-20,0.0,0.00015873015217948705,1.0062000906354684e-34,7.04903478607686e-20,2.64338825480515e-19,0.0007440476329065859,1.0620756080875938e-18,-1.3151617223056953e-33,-0.0014880952658131719,-2.5266404347650493e-33,-2.1241512161751876e-19,1.0513764966717286e-34,1.3799316447069957e-34,2.207890631531193e-34,1.0481251757246252e-34,8.38500094661952e-35,1.0062000906354684e-34,0.00037202381645329297,1.5093001933503877e-34,4.402125783961174e-34,0.0012499999720603228,5.947623508688102e-19,-1.0573552502232717e-19,-0.0006249999860301614,-0.0008333333535119891,-1.189524624189438e-19,5.635591406527563e-35,7.727617210359176e-35,1.23641870773972e-34,5.416677968589101e-35,4.6956005760246795e-35,7.04903478607686e-20,1.5093001933503877e-34,0.00041666667675599456,3.6390905899120894e-34,0.0010416667209938169,1.734723475976807e-18,-3.965082252960754e-19,-3.349528540997891e-33,-0.0031250000465661287,-3.4694470036524025e-19,1.6378810230254846e-34,2.253888276491846e-34,3.606221288304702e-34,1.504632769052528e-34,1.3695502158381858e-34,2.64338825480515e-19,4.402125783961174e-34,3.6390905899120894e-34,0.0010416667209938169,6.0,8.0,5.0,5.0,0.03613095358014107,-0.007470238022506237,-0.0059126983396708965,-0.008611110970377922,-0.008611110970377922,0.00044642857392318547,0.0004761904710903764,0.0007142857066355646,0.0007142857066355646,0.00027777778450399637,0.0005555555690079927,0.0005555555690079927,0.0005952381179668009,0.0008333333535119891,0.0005952381179668009,-0.007470238022506237,0.005443452391773462,0.0004761904710903764,0.0007142857066355646,0.0007142857066355646,-0.0006696428754366934,-0.00019047618843615055,-0.0002857142826542258,-0.0002857142826542258,5.679960787163013e-19,2.6134711676888955e-20,2.6134711676888955e-20,-1.850371804212999e-18,-1.0044875006368051e-18,-1.850371804212999e-18,-0.0059126983396708965,0.0004761904710903764,0.003078231355175376,0.0005555555690079927,0.0005555555690079927,4.0061086018857943e-19,-0.0001360544265480712,-6.042030278233632e-20,-6.042030278233632e-20,-0.00027777778450399637,-0.00015873015217948705,-0.00015873015217948705,-1.8236621422336618e-18,-1.7485971560056996e-18,-1.8236621422336618e-18,-0.008611110970377922,0.0007142857066355646,0.0005555555690079927,0.007876983843743801,0.0008333333535119891,-2.0312927477905972e-18,-3.7873524170900206e-19,-0.0003571428533177823,-2.28059403877459e-33,-8.402566836762659e-19,-0.00027777778450399637,-1.562714369523702e-18,-0.0011904762359336019,-0.00041666667675599456,-7.049035173817772e-19,-0.008611110970377922,0.0007142857066355646,0.0005555555690079927,0.0008333333535119891,0.007876983843743801,-2.0312927477905972e-18,-3.7873524170900206e-19,-2.28059403877459e-33,-0.0003571428533177823,-8.309586566032871e-19,-1.562714369523702e-18,-0.00027777778450399637,-7.049035173817772e-19,-0.00041666667675599456,-0.0011904762359336019,0.00044642857392318547,-0.0006696428754366934,4.0061086018857943e-19,-2.0312927477905972e-18,-2.0312927477905972e-18,0.00013392856635618955,1.7051472066599702e-20,1.3920837078626284e-19,1.3920837078626284e-19,-4.9563528162009426e-20,1.88813446194801e-21,1.88813446194801e-21,3.398641894181512e-19,1.5860328753349075e-19,3.398641894181512e-19,0.0004761904710903764,-0.00019047618843615055,-0.0001360544265480712,-3.7873524170900206e-19,-3.7873524170900206e-19,1.7051472066599702e-20,5.442176916403696e-05,2.4168120466699676e-20,2.4168120466699676e-20,-9.147955830346444e-20,-1.0164395367051604e-20,-1.0164395367051604e-20,4.315735682225861e-20,6.042030278233632e-20,4.315735682225861e-20,0.0007142857066355646,-0.0002857142826542258,-6.042030278233632e-20,-0.0003571428533177823,-2.28059403877459e-33,1.3920837078626284e-19,2.4168120466699676e-20,0.0001428571413271129,1.554291206478779e-34,-9.479186445030926e-35,-2.256949153578792e-36,-2.256949153578792e-36,3.7242820175117903e-34,1.9168782935027936e-34,3.7242820175117903e-34,0.0007142857066355646,-0.0002857142826542258,-6.042030278233632e-20,-2.28059403877459e-33,-0.0003571428533177823,1.3920837078626284e-19,2.4168120466699676e-20,1.554291206478779e-34,0.0001428571413271129,-9.479186445030926e-35,-2.256949153578792e-36,-2.256949153578792e-36,3.7242820175117903e-34,1.9168782935027936e-34,3.7242820175117903e-34,0.00027777778450399637,5.679960787163013e-19,-0.00027777778450399637,-8.402566836762659e-19,-8.309586566032871e-19,-4.9563528162009426e-20,-9.147955830346444e-20,-9.479186445030926e-35,-9.479186445030926e-35,3.968253804487176e-05,3.3881317890172014e-20,3.3881317890172014e-20,8.811293967272215e-20,1.2335811683428072e-19,8.811293967272215e-20,0.0005555555690079927,2.6134711676888955e-20,-0.00015873015217948705,-0.00027777778450399637,-1.562714369523702e-18,1.88813446194801e-21,-1.0164395367051604e-20,-2.256949153578792e-36,-2.256949153578792e-36,3.3881317890172014e-20,7.936507608974352e-05,1.0138439990393339e-19,3.2291293222146684e-19,1.6588729783596493e-19,2.0140100496622206e-19,0.0005555555690079927,2.6134711676888955e-20,-0.00015873015217948705,-1.562714369523702e-18,-0.00027777778450399637,1.88813446194801e-21,-1.0164395367051604e-20,-2.256949153578792e-36,-2.256949153578792e-36,3.3881317890172014e-20,1.0138439990393339e-19,7.936507608974352e-05,2.0140100496622206e-19,1.6588729783596493e-19,3.2291293222146684e-19,0.0005952381179668009,-1.850371804212999e-18,-1.8236621422336618e-18,-0.0011904762359336019,-7.049035173817772e-19,3.398641894181512e-19,4.315735682225861e-20,3.7242820175117903e-34,3.7242820175117903e-34,8.811293967272215e-20,3.2291293222146684e-19,2.0140100496622206e-19,0.00029761905898340046,1.8425749052864582e-33,2.747185031827396e-33,0.0008333333535119891,-1.0044875006368051e-18,-1.7485971560056996e-18,-0.00041666667675599456,-0.00041666667675599456,1.5860328753349075e-19,6.042030278233632e-20,1.9168782935027936e-34,1.9168782935027936e-34,1.2335811683428072e-19,1.6588729783596493e-19,1.6588729783596493e-19,1.8425749052864582e-33,0.00020833333837799728,1.8425749052864582e-33,0.0005952381179668009,-1.850371804212999e-18,-1.8236621422336618e-18,-7.049035173817772e-19,-0.0011904762359336019,3.398641894181512e-19,4.315735682225861e-20,3.7242820175117903e-34,3.7242820175117903e-34,8.811293967272215e-20,2.0140100496622206e-19,3.2291293222146684e-19,2.747185031827396e-33,1.8425749052864582e-33,0.00029761905898340046,6.0,8.0,5.0,6.0,0.031098827719688416,-0.006310232449322939,-0.004993386100977659,-0.007275132462382317,-0.006310232449322939,0.00037202381645329297,0.00039682540227659047,0.0005952381179668009,0.0005102040595375001,0.00023148147738538682,0.00046296295477077365,0.00039682540227659047,0.0004960317746736109,0.0005952381179668009,0.00037202381645329297,-0.006310232449322939,0.004570223856717348,0.00039682540227659047,0.0005952381179668009,0.0005102040595375001,-0.0005580357392318547,-0.00015873015217948705,-0.0002380952355451882,-0.0002040816325461492,-5.86281268048304e-19,-4.405647177506564e-19,-3.7466225607157923e-19,-1.4161008452493172e-18,-5.664403070804539e-19,-9.735692470983746e-19,-0.004993386100977659,0.00039682540227659047,0.0025840892922133207,0.00046296295477077365,0.00039682540227659047,-1.3201655751787594e-18,-0.00011337868636474013,-1.1435082311814515e-33,-7.84119935200738e-34,-0.00023148147738538682,-0.00013227513409219682,-0.00011337868636474013,-3.3501217983030716e-33,-1.3400486825870302e-33,-2.3032087133744877e-33,-0.007275132462382317,0.0005952381179668009,0.00046296295477077365,0.006613756529986858,0.0005952381179668009,-1.966177296765576e-18,-1.0940545409938847e-33,-0.00029761905898340046,-1.1678222298022566e-33,-0.0,-0.00023148147738538682,-1.1218333092137386e-33,-0.0009920635493472219,-0.00029761905898340046,-3.430264064406258e-33,-0.006310232449322939,0.0005102040595375001,0.00039682540227659047,0.0005952381179668009,0.004570223856717348,-1.630208481797696e-18,2.964615315390051e-21,-1.4120628644317613e-33,-0.0002040816325461492,5.797381353092774e-21,-1.0783430488046871e-33,-0.00015873015217948705,-4.136902942511476e-33,-0.0002380952355451882,-0.0005580357392318547,0.00037202381645329297,-0.0005580357392318547,-1.3201655751787594e-18,-1.966177296765576e-18,-1.630208481797696e-18,0.00011160714348079637,7.365522489492744e-20,9.66724818667987e-20,6.628969852802558e-20,1.101411794376641e-19,8.811293967272215e-20,7.552537686233327e-20,2.8322015354022696e-19,1.1328805883115137e-19,1.9471385717449317e-19,0.00039682540227659047,-0.00015873015217948705,-0.00011337868636474013,-1.0940545409938847e-33,2.964615315390051e-21,7.365522489492744e-20,4.535147309070453e-05,6.379908345366615e-35,4.374794220169298e-35,1.0164395367051604e-20,-0.0,-8.470329472543003e-22,1.8691137335960608e-34,7.476454590001133e-35,1.2850156416247549e-34,0.0005952381179668009,-0.0002380952355451882,-1.1435082311814515e-33,-0.00029761905898340046,-1.4120628644317613e-33,9.66724818667987e-20,6.379908345366615e-35,0.0001190476177725941,5.741917396035584e-35,9.540267955441159e-35,7.632214479147298e-35,6.541898124983398e-35,2.4532117107729966e-34,9.812846613503246e-35,1.6865831085536203e-34,0.0005102040595375001,-0.0002040816325461492,-7.84119935200738e-34,-1.1678222298022566e-33,-0.0002040816325461492,6.628969852802558e-20,4.374794220169298e-35,5.741917396035584e-35,8.163265010807663e-05,6.541898124983398e-35,5.233518385192348e-35,4.48587298358942e-35,1.6822023257981437e-34,6.728809188398205e-35,1.1565141348594645e-34,0.00023148147738538682,-5.86281268048304e-19,-0.00023148147738538682,-0.0,5.797381353092774e-21,1.101411794376641e-19,1.0164395367051604e-20,9.540267955441159e-35,6.541898124983398e-35,3.3068783523049206e-05,-0.0,0.0,2.7950004685990004e-34,1.1180001644807261e-34,1.9215627073674426e-34,0.00046296295477077365,-4.405647177506564e-19,-0.00013227513409219682,-0.00023148147738538682,-1.0783430488046871e-33,8.811293967272215e-20,-0.0,7.632214479147298e-35,5.233518385192348e-35,-0.0,6.613756704609841e-05,0.0,2.2360003289614522e-34,8.944001315845809e-35,1.5372502118117021e-34,0.00039682540227659047,-3.7466225607157923e-19,-0.00011337868636474013,-1.1218333092137386e-33,-0.00015873015217948705,7.552537686233327e-20,-8.470329472543003e-22,6.541898124983398e-35,4.48587298358942e-35,0.0,0.0,4.535147309070453e-05,1.9165716777399962e-34,7.666286596165614e-35,1.3176430714941362e-34,0.0004960317746736109,-1.4161008452493172e-18,-3.3501217983030716e-33,-0.0009920635493472219,-4.136902942511476e-33,2.8322015354022696e-19,1.8691137335960608e-34,2.4532117107729966e-34,1.6822023257981437e-34,2.7950004685990004e-34,2.2360003289614522e-34,1.9165716777399962e-34,0.00024801588733680546,2.8748576314043644e-34,4.941161575500196e-34,0.0005952381179668009,-5.664403070804539e-19,-1.3400486825870302e-33,-0.00029761905898340046,-0.0002380952355451882,1.1328805883115137e-19,7.476454590001133e-35,9.812846613503246e-35,6.728809188398205e-35,1.1180001644807261e-34,8.944001315845809e-35,7.666286596165614e-35,2.8748576314043644e-34,0.0001190476177725941,1.976464492446834e-34,0.00037202381645329297,-9.735692470983746e-19,-2.3032087133744877e-33,-3.430264064406258e-33,-0.0005580357392318547,1.9471385717449317e-19,1.2850156416247549e-34,1.6865831085536203e-34,1.1565141348594645e-34,1.9215627073674426e-34,1.5372502118117021e-34,1.3176430714941362e-34,4.941161575500196e-34,1.976464492446834e-34,0.00011160714348079637,6.0,8.0,5.0,7.0,0.027310090139508247,-0.005463435314595699,-0.004322562366724014,-0.0062996032647788525,-0.004825680050998926,0.0003188775444868952,0.0003401360590942204,0.0005102040595375001,0.00038265305920504034,0.00019841270113829523,0.00039682540227659047,0.00029761905898340046,0.00042517005931586027,0.00044642857392318547,0.00024801588733680546,-0.005463435314595699,0.003939200658351183,0.0003401360590942204,0.0005102040595375001,0.00038265305920504034,-0.00047831633128225803,-0.0001360544265480712,-0.0002040816325461492,-0.0001530612207716331,-2.9245624546484093e-19,-1.326975856559485e-18,-4.479312263945356e-19,-3.1457668355633986e-18,-1.2523458639361492e-18,-5.431361606076945e-20,-0.004322562366724014,0.0003401360590942204,0.0022270812187343836,0.00039682540227659047,0.00029761905898340046,-8.112943503950054e-19,-9.718172805150971e-05,-1.3939518435772911e-18,-3.1170812458958252e-19,-0.00019841270113829523,-0.00011337868636474013,-8.50340147735551e-05,-1.1740257152026377e-18,-3.6728595050732004e-19,5.3905111622790435e-19,-0.0062996032647788525,0.0005102040595375001,0.00039682540227659047,0.005700821988284588,0.00044642857392318547,-3.1327207497373653e-18,-7.883258195310923e-19,-0.00025510202976875007,-5.506510835480417e-19,-6.911788849595091e-19,-0.00019841270113829523,-4.639939365169732e-19,-0.0008503401186317205,-0.00022321428696159273,2.9863099364118443e-19,-0.004825680050998926,0.00038265305920504034,0.00029761905898340046,0.00044642857392318547,0.0028982425574213266,-7.397272007848002e-19,5.137325717060767e-20,-7.288198938300995e-19,-0.00012755101488437504,5.110104172453927e-19,-1.6529521746313596e-19,-9.920635056914762e-05,4.643911383073635e-19,-0.00014880952949170023,-0.00029761905898340046,0.0003188775444868952,-0.00047831633128225803,-8.112943503950054e-19,-3.1327207497373653e-18,-7.397272007848002e-19,9.566326480126008e-05,3.327300086664742e-20,1.60499133798674e-19,5.468171789570409e-20,3.540251919252837e-20,1.429587430600929e-19,4.231444039102147e-20,3.9448522586110626e-19,1.4692045998043028e-19,1.6521176592532187e-20,0.0003401360590942204,-0.0001360544265480712,-9.718172805150971e-05,-7.883258195310923e-19,5.137325717060767e-20,3.327300086664742e-20,3.887269122060388e-05,5.307121986128322e-20,7.45663497993704e-21,-4.743384504624082e-20,3.8963515573697816e-20,1.6940658945086007e-21,7.398404211311434e-20,3.9920557080073133e-20,-3.2598422152413356e-20,0.0005102040595375001,-0.0002040816325461492,-1.3939518435772911e-18,-0.00025510202976875007,-7.288198938300995e-19,1.60499133798674e-19,5.307121986128322e-20,0.0001020408162730746,6.797283659116053e-20,1.0573552502232717e-19,1.5105075372466654e-19,5.286776251116358e-20,3.8841622755619884e-19,1.1328805883115137e-19,2.2657612735582555e-20,0.00038265305920504034,-0.0001530612207716331,-3.1170812458958252e-19,-5.506510835480417e-19,-0.00012755101488437504,5.468171789570409e-20,7.45663497993704e-21,6.797283659116053e-20,5.10204081365373e-05,1.3260302986464574e-20,3.7762688431166636e-20,2.645967895093579e-20,2.4276014222262428e-20,2.7824232924789916e-20,9.081006263025038e-22,0.00019841270113829523,-2.9245624546484093e-19,-0.00019841270113829523,-6.911788849595091e-19,5.110104172453927e-19,3.540251919252837e-20,-4.743384504624082e-20,1.0573552502232717e-19,1.3260302986464574e-20,2.8344671591185033e-05,1.5246593050577406e-20,-4.0657581468206416e-20,6.293781405194439e-20,1.1014117459090269e-20,-7.356479725186921e-20,0.00039682540227659047,-1.326975856559485e-18,-0.00011337868636474013,-0.00019841270113829523,-1.6529521746313596e-19,1.429587430600929e-19,3.8963515573697816e-20,1.5105075372466654e-19,3.7762688431166636e-20,1.5246593050577406e-20,5.668934318237007e-05,1.8900907360187624e-20,1.9557818336642866e-19,4.327723984994198e-20,-1.2587562810388879e-20,0.00029761905898340046,-4.479312263945356e-19,-8.50340147735551e-05,-4.639939365169732e-19,-9.920635056914762e-05,4.231444039102147e-20,1.6940658945086007e-21,5.286776251116358e-20,2.645967895093579e-20,-4.0657581468206416e-20,1.8900907360187624e-20,2.8344671591185033e-05,4.046002424229976e-20,2.202285662861181e-20,2.0557627342509162e-20,0.00042517005931586027,-3.1457668355633986e-18,-1.1740257152026377e-18,-0.0008503401186317205,4.643911383073635e-19,3.9448522586110626e-19,7.398404211311434e-20,3.8841622755619884e-19,2.4276014222262428e-20,6.293781405194439e-20,1.9557818336642866e-19,4.046002424229976e-20,0.00021258502965793014,-2.6523791910757184e-20,-7.867226918051762e-20,0.00044642857392318547,-1.2523458639361492e-18,-3.6728595050732004e-19,-0.00022321428696159273,-0.00014880952949170023,1.4692045998043028e-19,3.9920557080073133e-20,1.1328805883115137e-19,2.7824232924789916e-20,1.1014117459090269e-20,4.327723984994198e-20,2.202285662861181e-20,-2.6523791910757184e-20,7.440476474585012e-05,1.1568330892881498e-21,0.00024801588733680546,-5.431361606076945e-20,5.3905111622790435e-19,2.9863099364118443e-19,-0.00029761905898340046,1.6521176592532187e-20,-3.2598422152413356e-20,2.2657612735582555e-20,9.081006263025038e-22,-7.356479725186921e-20,-1.2587562810388879e-20,2.0557627342509162e-20,-7.867226918051762e-20,1.1568330892881498e-21,4.960317528457381e-05,6.0,8.0,5.0,8.0,0.024351025000214577,-0.004817708395421505,-0.003811177331954241,-0.0055555556900799274,-0.003811177331954241,0.00027901786961592734,0.00029761905898340046,0.00044642857392318547,0.00029761905898340046,0.00017361111531499773,0.00034722223062999547,0.00023148147738538682,0.00037202381645329297,0.00034722223062999547,0.00017361111531499773,-0.004817708395421505,0.0034616815391927958,0.00029761905898340046,0.00044642857392318547,0.00029761905898340046,-0.0004185267898719758,-0.0001190476177725941,-0.00017857142665889114,-0.0001190476177725941,2.840157978919264e-19,1.685478079539681e-19,1.219996406992243e-19,5.310378040437969e-19,1.652117626941476e-19,2.7431997449249195e-19,-0.003811177331954241,0.00029761905898340046,0.0019569634459912777,0.00034722223062999547,0.00023148147738538682,5.358817737109074e-19,-8.50340147735551e-05,-3.481297233292246e-34,1.0164395367051604e-20,-0.00017361111531499773,-9.920635056914762e-05,-6.613756704609841e-05,-6.799408759218992e-34,-0.0,2.374888529897734e-20,-0.0055555556900799274,0.00044642857392318547,0.00034722223062999547,0.005009920801967382,0.00034722223062999547,7.920723790192864e-19,2.964615315390051e-21,-0.00022321428696159273,3.714367097015749e-22,6.776263578034403e-21,-0.00017361111531499773,1.4823076576950256e-21,-0.0007440476329065859,-0.00017361111531499773,7.583499868393722e-22,-0.003811177331954241,0.00029761905898340046,0.00023148147738538682,0.00034722223062999547,0.0019569634459912777,5.358817737109074e-19,4.768623126050396e-21,-3.481297233292246e-34,-8.50340147735551e-05,1.108300367109875e-20,3.3881317890172014e-21,-6.613756704609841e-05,-6.799408759218992e-34,-9.920635056914762e-05,-0.00017361111531499773,0.00027901786961592734,-0.0004185267898719758,5.358817737109074e-19,7.920723790192864e-19,5.358817737109074e-19,8.370535942958668e-05,-4.143106319560312e-20,-5.437827185786784e-20,-4.143106319560312e-20,-4.13029406735369e-20,-3.3042353185064373e-20,-2.2028234918180537e-20,-1.0620756080875938e-19,-3.3042353185064373e-20,-4.13029406735369e-20,0.00029761905898340046,-0.0001190476177725941,-8.50340147735551e-05,2.964615315390051e-21,4.768623126050396e-21,-4.143106319560312e-20,3.40136066370178e-05,2.691523617962097e-35,-5.893085049346425e-23,-2.202285662861181e-20,-8.470329472543003e-22,-8.470329472543003e-22,5.256882483358643e-35,7.722761121513897e-36,-2.1880689201745484e-22,0.00044642857392318547,-0.00017857142665889114,-3.481297233292246e-34,-0.00022321428696159273,-3.481297233292246e-34,-5.437827185786784e-20,2.691523617962097e-35,8.928571332944557e-05,2.691523617962097e-35,2.683200452150928e-35,2.1465603043235571e-35,1.431040250713359e-35,6.899658223534978e-35,2.1465603043235571e-35,2.683200452150928e-35,0.00029761905898340046,-0.0001190476177725941,1.0164395367051604e-20,3.714367097015749e-22,-8.50340147735551e-05,-4.143106319560312e-20,-5.893085049346425e-23,2.691523617962097e-35,3.40136066370178e-05,-1.203171536167301e-22,-1.061247760035606e-22,-2.541098841762901e-21,5.256882483358643e-35,0.0,-1.9154131256379687e-20,0.00017361111531499773,2.840157978919264e-19,-0.00017361111531499773,6.776263578034403e-21,1.108300367109875e-20,-4.13029406735369e-20,-2.202285662861181e-20,2.683200452150928e-35,-1.203171536167301e-22,2.4801587642286904e-05,-1.6940658945086007e-21,0.0,5.240625878623126e-35,-1.3194649657688924e-36,-1.045705029257541e-21,0.00034722223062999547,1.685478079539681e-19,-9.920635056914762e-05,-0.00017361111531499773,3.3881317890172014e-21,-3.3042353185064373e-20,-8.470329472543003e-22,2.1465603043235571e-35,-1.061247760035606e-22,-1.6940658945086007e-21,4.960317528457381e-05,-4.235164736271502e-22,4.19250047330976e-35,0.0,-2.1667141399258535e-22,0.00023148147738538682,1.219996406992243e-19,-6.613756704609841e-05,1.4823076576950256e-21,-6.613756704609841e-05,-2.2028234918180537e-20,-8.470329472543003e-22,1.431040250713359e-35,-2.541098841762901e-21,0.0,-4.235164736271502e-22,1.889644772745669e-05,2.7950004112018153e-35,0.0,-4.243155430235735e-21,0.00037202381645329297,5.310378040437969e-19,-6.799408759218992e-34,-0.0007440476329065859,-6.799408759218992e-34,-1.0620756080875938e-19,5.256882483358643e-35,6.899658223534978e-35,5.256882483358643e-35,5.240625878623126e-35,4.19250047330976e-35,2.7950004112018153e-35,0.00018601190822664648,4.19250047330976e-35,5.240625878623126e-35,0.00034722223062999547,1.652117626941476e-19,-0.0,-0.00017361111531499773,-9.920635056914762e-05,-3.3042353185064373e-20,7.722761121513897e-36,2.1465603043235571e-35,0.0,-1.3194649657688924e-36,0.0,0.0,4.19250047330976e-35,4.960317528457381e-05,1.230503274922314e-36,0.00017361111531499773,2.7431997449249195e-19,2.374888529897734e-20,7.583499868393722e-22,-0.00017361111531499773,-4.13029406735369e-20,-2.1880689201745484e-22,2.683200452150928e-35,-1.9154131256379687e-20,-1.045705029257541e-21,-2.1667141399258535e-22,-4.243155430235735e-21,5.240625878623126e-35,1.230503274922314e-36,2.4801587642286904e-05,6.0,8.0,6.0,3.0,0.046347472816705704,-0.010021022520959377,-0.007936508394777775,-0.010021022520959377,-0.016699735075235367,0.0006200397037900984,0.0006613756413571537,0.0008503401186317205,0.0014880952658131719,0.00038580247201025486,0.0006613756413571537,0.0011574074160307646,0.0006200397037900984,0.0014880952658131719,0.0017361111240461469,-0.010021022520959377,0.007418627385050058,0.0006613756413571537,0.0008503401186317205,0.0014880952658131719,-0.0009300595265813172,-0.00026455026818439364,-0.0003401360590942204,-0.0005952381179668009,4.233461778185408e-19,3.206183073528506e-19,5.507058842636234e-19,8.113077403811711e-19,7.080504226246586e-19,4.130293951031416e-18,-0.007936508394777775,0.0006613756413571537,0.004196586087346077,0.0006613756413571537,0.0011574074160307646,1.1657231999968664e-18,-0.0001889644772745669,-5.769899786509294e-34,-1.2621655696893302e-33,-0.00038580247201025486,-0.0001889644772745669,-0.0003306878206785768,-1.0168814083169823e-33,-8.874601231399215e-34,-5.176851039740445e-33,-0.010021022520959377,0.0008503401186317205,0.0006613756413571537,0.007418627385050058,0.0014880952658131719,1.4033727069712341e-18,5.929230630780102e-21,-0.0003401360590942204,-1.5194763239675364e-33,-0.0,-0.00026455026818439364,2.371692252312041e-20,-0.0009300595265813172,-0.0005952381179668009,4.130293951031416e-18,-0.016699735075235367,0.0014880952658131719,0.0011574074160307646,0.0014880952658131719,0.034060847014188766,2.8951393817659567e-18,-1.3802020084076848e-33,-1.432987214889375e-33,-0.0014880952658131719,-7.831059415120162e-21,2.371692252312041e-20,-0.0011574074160307646,2.1556200618088487e-18,-0.0014880952658131719,-0.010416666977107525,0.0006200397037900984,-0.0009300595265813172,1.1657231999968664e-18,1.4033727069712341e-18,2.8951393817659567e-18,0.00018601190822664648,-1.0229891915694465e-19,-9.206902788748504e-20,-2.0140100496622206e-19,-9.178430973570487e-20,-6.293781405194439e-20,-1.101411794376641e-19,-1.622615454912948e-19,-1.4161007677011348e-19,-8.260588005460409e-19,0.0006613756413571537,-0.00026455026818439364,-0.0001889644772745669,5.929230630780102e-21,-1.3802020084076848e-33,-1.0229891915694465e-19,7.558579090982676e-05,5.063418957292964e-35,1.1076229830036135e-34,1.0164395367051604e-20,-1.6940658945086007e-21,-0.0,8.923720020491168e-35,7.787973794321612e-35,4.542984904678224e-34,0.0008503401186317205,-0.0003401360590942204,-5.769899786509294e-34,-0.0003401360590942204,-1.432987214889375e-33,-9.206902788748504e-20,5.063418957292964e-35,0.0001360544265480712,9.96860650264941e-35,4.5429846176922983e-35,3.1151894603314596e-35,5.451581770819498e-35,8.031348190633606e-35,7.009176644478191e-35,4.088686184621661e-34,0.0014880952658131719,-0.0005952381179668009,-1.2621655696893302e-33,-1.5194763239675364e-33,-0.0014880952658131719,-2.0140100496622206e-19,1.1076229830036135e-34,9.96860650264941e-35,0.0005952381179668009,9.937779622476577e-35,6.814477357017336e-35,1.1925335087794412e-34,1.7568573521292681e-34,1.5332573192331229e-34,8.944001315845809e-34,0.00038580247201025486,4.233461778185408e-19,-0.00038580247201025486,-0.0,-7.831059415120162e-21,-9.178430973570487e-20,1.0164395367051604e-20,4.5429846176922983e-35,9.937779622476577e-35,5.5114636779762805e-05,-0.0,0.0,8.006511280697677e-35,6.987501171497501e-35,4.076042273510629e-34,0.0006613756413571537,3.206183073528506e-19,-0.0001889644772745669,-0.00026455026818439364,2.371692252312041e-20,-6.293781405194439e-20,-1.6940658945086007e-21,3.1151894603314596e-35,6.814477357017336e-35,-0.0,7.558579090982676e-05,-6.776263578034403e-21,5.490179081911e-35,4.7914291943499904e-35,2.7950004685990004e-34,0.0011574074160307646,5.507058842636234e-19,-0.0003306878206785768,2.371692252312041e-20,-0.0011574074160307646,-1.101411794376641e-19,-0.0,5.451581770819498e-35,1.1925335087794412e-34,0.0,-6.776263578034403e-21,0.0003306878206785768,9.607813536837213e-35,8.38500094661952e-35,4.891250820048251e-34,0.0006200397037900984,8.113077403811711e-19,-1.0168814083169823e-33,-0.0009300595265813172,2.1556200618088487e-18,-1.622615454912948e-19,8.923720020491168e-35,8.031348190633606e-35,1.7568573521292681e-34,8.006511280697677e-35,5.490179081911e-35,9.607813536837213e-35,0.00018601190822664648,-2.0140100496622206e-19,-8.260588005460409e-19,0.0014880952658131719,7.080504226246586e-19,-8.874601231399215e-34,-0.0005952381179668009,-0.0014880952658131719,-1.4161007677011348e-19,7.787973794321612e-35,7.009176644478191e-35,1.5332573192331229e-34,6.987501171497501e-35,4.7914291943499904e-35,8.38500094661952e-35,-2.0140100496622206e-19,0.0005952381179668009,1.5232751911016079e-33,0.0017361111240461469,4.130293951031416e-18,-5.176851039740445e-33,4.130293951031416e-18,-0.010416666977107525,-8.260588005460409e-19,4.542984904678224e-34,4.088686184621661e-34,8.944001315845809e-34,4.076042273510629e-34,2.7950004685990004e-34,4.891250820048251e-34,-8.260588005460409e-19,1.5232751911016079e-33,0.0052083334885537624,6.0,8.0,6.0,4.0,0.03717875853180885,-0.007738980930298567,-0.00612599216401577,-0.007738980930298567,-0.010540674440562725,0.0004650297632906586,0.0004960317746736109,0.0006377550889737904,0.0008928571478463709,0.00028935185400769114,0.0004960317746736109,0.0006944444612599909,0.0004650297632906586,0.0008928571478463709,0.0008680555620230734,-0.007738980930298567,0.005653256084769964,0.0004960317746736109,0.0006377550889737904,0.0008928571478463709,-0.0006975446594879031,-0.00019841270113829523,-0.00025510202976875007,-0.0003571428533177823,3.0861578741773546e-19,1.6642064838530263e-19,3.244942947575151e-19,3.4296190326397985e-19,2.888845571280194e-19,1.4456028621814804e-18,-0.00612599216401577,0.0004960317746736109,0.0031970427371561527,0.0004960317746736109,0.0006944444612599909,6.363462712254994e-19,-0.00014172335795592517,-1.2947206723560157e-19,-7.552537686233327e-20,-0.00028935185400769114,-0.00014172335795592517,-0.00019841270113829523,-1.47510498251122e-19,-7.552537686233327e-20,-1.0130711535813872e-33,-0.007738980930298567,0.0006377550889737904,0.0004960317746736109,0.005653256084769964,0.0008928571478463709,8.9456688115466e-19,-4.801746620483673e-20,-0.00025510202976875007,-1.3594567318232106e-19,1.3552527156068805e-20,-0.00019841270113829523,2.371692252312041e-20,-0.0006975446594879031,-0.0003571428533177823,1.4456028621814804e-18,-0.010540674440562725,0.0008928571478463709,0.0006944444612599909,0.0008928571478463709,0.013103505596518517,1.2414483797512224e-18,-8.145460749311337e-20,-2.718913463646421e-19,-0.0005952381179668009,1.689689915197739e-20,-5.180845433921286e-20,-0.00046296295477077365,7.977367567576847e-19,-0.0005952381179668009,-0.0026041667442768812,0.0004650297632906586,-0.0006975446594879031,6.363462712254994e-19,8.9456688115466e-19,1.2414483797512224e-18,0.00013950893480796367,2.5062735686221382e-20,2.629901406112835e-21,2.7849982152529897e-20,-6.883823553295292e-20,-4.720335892337116e-20,-6.608470637012875e-20,-1.2169615588729683e-19,-8.49660473545378e-20,-2.8912058794593256e-19,0.0004960317746736109,-0.00019841270113829523,-0.00014172335795592517,-4.801746620483673e-20,-8.145460749311337e-20,2.5062735686221382e-20,5.668934318237007e-05,2.1578678411129306e-20,3.021015139116816e-20,1.0164395367051604e-20,-1.6940658945086007e-21,1.6940658945086007e-21,-1.2286480902802005e-36,-3.915538750954089e-36,-5.194042323196985e-35,0.0006377550889737904,-0.00025510202976875007,-1.2947206723560157e-19,-0.00025510202976875007,-2.718913463646421e-19,2.629901406112835e-21,2.1578678411129306e-20,0.0001020408162730746,5.437827185786784e-20,3.009265538105056e-36,3.021015139116816e-20,-4.513898307157584e-36,1.0620756080875938e-19,5.437827185786784e-20,-2.255565192651691e-34,0.0008928571478463709,-0.0003571428533177823,-7.552537686233327e-20,-1.3594567318232106e-19,-0.0005952381179668009,2.7849982152529897e-20,3.021015139116816e-20,5.437827185786784e-20,0.0002380952355451882,-7.52316384526264e-36,4.513898307157584e-36,-1.3541694921472752e-35,3.2304714196163624e-35,1.2016904261013545e-35,-5.771675540621879e-35,0.00028935185400769114,3.0861578741773546e-19,-0.00028935185400769114,1.3552527156068805e-20,1.689689915197739e-20,-6.883823553295292e-20,1.0164395367051604e-20,3.009265538105056e-36,-7.52316384526264e-36,4.13359775848221e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,5.646188648812345e-35,4.1367250456759807e-35,1.426614726852098e-34,0.0004960317746736109,1.6642064838530263e-19,-0.00014172335795592517,-0.00019841270113829523,-5.180845433921286e-20,-4.720335892337116e-20,-1.6940658945086007e-21,3.021015139116816e-20,4.513898307157584e-36,-3.3881317890172014e-21,5.668934318237007e-05,-6.776263578034403e-21,5.900420188538822e-20,3.021015139116816e-20,-2.4456254674213105e-35,0.0006944444612599909,3.244942947575151e-19,-0.00019841270113829523,2.371692252312041e-20,-0.00046296295477077365,-6.608470637012875e-20,1.6940658945086007e-21,-4.513898307157584e-36,-1.3541694921472752e-35,-3.3881317890172014e-21,-6.776263578034403e-21,0.00013227513409219682,5.161073380076266e-35,3.6799737439001486e-35,1.3695502158381858e-34,0.0004650297632906586,3.4296190326397985e-19,-1.47510498251122e-19,-0.0006975446594879031,7.977367567576847e-19,-1.2169615588729683e-19,-1.2286480902802005e-36,1.0620756080875938e-19,3.2304714196163624e-35,5.646188648812345e-35,5.900420188538822e-20,5.161073380076266e-35,0.00013950893480796367,2.7849982152529897e-20,-2.8912058794593256e-19,0.0008928571478463709,2.888845571280194e-19,-7.552537686233327e-20,-0.0003571428533177823,-0.0005952381179668009,-8.49660473545378e-20,-3.915538750954089e-36,5.437827185786784e-20,1.2016904261013545e-35,4.1367250456759807e-35,3.021015139116816e-20,3.6799737439001486e-35,2.7849982152529897e-20,0.0002380952355451882,1.1836826332484744e-34,0.0008680555620230734,1.4456028621814804e-18,-1.0130711535813872e-33,1.4456028621814804e-18,-0.0026041667442768812,-2.8912058794593256e-19,-5.194042323196985e-35,-2.255565192651691e-34,-5.771675540621879e-35,1.426614726852098e-34,-2.4456254674213105e-35,1.3695502158381858e-34,-2.8912058794593256e-19,1.1836826332484744e-34,0.0008680555620230734,6.0,8.0,6.0,5.0,0.031098827719688416,-0.006310232449322939,-0.004993386100977659,-0.006310232449322939,-0.007275132462382317,0.00037202381645329297,0.00039682540227659047,0.0005102040595375001,0.0005952381179668009,0.00023148147738538682,0.00039682540227659047,0.00046296295477077365,0.00037202381645329297,0.0005952381179668009,0.0004960317746736109,-0.006310232449322939,0.004570223856717348,0.00039682540227659047,0.0005102040595375001,0.0005952381179668009,-0.0005580357392318547,-0.00015873015217948705,-0.0002040816325461492,-0.0002380952355451882,-5.86281268048304e-19,-3.7466225607157923e-19,-4.376001024352663e-19,-9.735692470983746e-19,-5.664403070804539e-19,-1.4161008452493172e-18,-0.004993386100977659,0.00039682540227659047,0.0025840892922133207,0.00039682540227659047,0.00046296295477077365,-1.3201655751787594e-18,-0.00011337868636474013,-7.84119935200738e-34,-1.1435082311814515e-33,-0.00023148147738538682,-0.00011337868636474013,-0.00013227513409219682,-2.3032087133744877e-33,-1.3400486825870302e-33,-3.3501217983030716e-33,-0.006310232449322939,0.0005102040595375001,0.00039682540227659047,0.004570223856717348,0.0005952381179668009,-1.630208481797696e-18,2.964615315390051e-21,-0.0002040816325461492,-1.4120628644317613e-33,6.776263578034403e-21,-0.00015873015217948705,2.009475678188752e-20,-0.0005580357392318547,-0.0002380952355451882,-1.4161008452493172e-18,-0.007275132462382317,0.0005952381179668009,0.00046296295477077365,0.0005952381179668009,0.006613756529986858,-1.966177296765576e-18,2.964615315390051e-21,-1.1678222298022566e-33,-0.00029761905898340046,5.93858366859499e-21,2.009475678188752e-20,-0.00023148147738538682,-1.374561799440859e-18,-0.00029761905898340046,-0.0009920635493472219,0.00037202381645329297,-0.0005580357392318547,-1.3201655751787594e-18,-1.630208481797696e-18,-1.966177296765576e-18,0.00011160714348079637,7.365522489492744e-20,6.628969852802558e-20,9.66724818667987e-20,1.101411794376641e-19,7.552537686233327e-20,8.811293967272215e-20,1.9471385717449317e-19,1.1328805883115137e-19,2.8322015354022696e-19,0.00039682540227659047,-0.00015873015217948705,-0.00011337868636474013,2.964615315390051e-21,2.964615315390051e-21,7.365522489492744e-20,4.535147309070453e-05,4.374794220169298e-35,6.379908345366615e-35,1.0164395367051604e-20,-8.470329472543003e-22,-8.470329472543003e-22,1.2850156416247549e-34,7.476454590001133e-35,1.8691137335960608e-34,0.0005102040595375001,-0.0002040816325461492,-7.84119935200738e-34,-0.0002040816325461492,-1.1678222298022566e-33,6.628969852802558e-20,4.374794220169298e-35,8.163265010807663e-05,5.741917396035584e-35,6.541898124983398e-35,4.48587298358942e-35,5.233518385192348e-35,1.1565141348594645e-34,6.728809188398205e-35,1.6822023257981437e-34,0.0005952381179668009,-0.0002380952355451882,-1.1435082311814515e-33,-1.4120628644317613e-33,-0.00029761905898340046,9.66724818667987e-20,6.379908345366615e-35,5.741917396035584e-35,0.0001190476177725941,9.540267955441159e-35,6.541898124983398e-35,7.632214479147298e-35,1.6865831085536203e-34,9.812846613503246e-35,2.4532117107729966e-34,0.00023148147738538682,-5.86281268048304e-19,-0.00023148147738538682,6.776263578034403e-21,5.93858366859499e-21,1.101411794376641e-19,1.0164395367051604e-20,6.541898124983398e-35,9.540267955441159e-35,3.3068783523049206e-05,-0.0,0.0,1.9215627073674426e-34,1.1180001644807261e-34,2.7950004685990004e-34,0.00039682540227659047,-3.7466225607157923e-19,-0.00011337868636474013,-0.00015873015217948705,2.009475678188752e-20,7.552537686233327e-20,-8.470329472543003e-22,4.48587298358942e-35,6.541898124983398e-35,-0.0,4.535147309070453e-05,-5.74135884974113e-21,1.3176430714941362e-34,7.666286596165614e-35,1.9165716777399962e-34,0.00046296295477077365,-4.376001024352663e-19,-0.00013227513409219682,2.009475678188752e-20,-0.00023148147738538682,8.811293967272215e-20,-8.470329472543003e-22,5.233518385192348e-35,7.632214479147298e-35,0.0,-5.74135884974113e-21,6.613756704609841e-05,1.5372502118117021e-34,8.944001315845809e-35,2.2360003289614522e-34,0.00037202381645329297,-9.735692470983746e-19,-2.3032087133744877e-33,-0.0005580357392318547,-1.374561799440859e-18,1.9471385717449317e-19,1.2850156416247549e-34,1.1565141348594645e-34,1.6865831085536203e-34,1.9215627073674426e-34,1.3176430714941362e-34,1.5372502118117021e-34,0.00011160714348079637,9.66724818667987e-20,2.8322015354022696e-19,0.0005952381179668009,-5.664403070804539e-19,-1.3400486825870302e-33,-0.0002380952355451882,-0.00029761905898340046,1.1328805883115137e-19,7.476454590001133e-35,6.728809188398205e-35,9.812846613503246e-35,1.1180001644807261e-34,7.666286596165614e-35,8.944001315845809e-35,9.66724818667987e-20,0.0001190476177725941,5.328069112588621e-34,0.0004960317746736109,-1.4161008452493172e-18,-3.3501217983030716e-33,-1.4161008452493172e-18,-0.0009920635493472219,2.8322015354022696e-19,1.8691137335960608e-34,1.6822023257981437e-34,2.4532117107729966e-34,2.7950004685990004e-34,1.9165716777399962e-34,2.2360003289614522e-34,2.8322015354022696e-19,5.328069112588621e-34,0.00024801588733680546,6.0,8.0,6.0,6.0,0.026752252131700516,-0.0053293886594474316,-0.004216270055621862,-0.0053293886594474316,-0.0053293886594474316,0.0003100198518950492,0.0003306878206785768,0.00042517005931586027,0.00042517005931586027,0.00019290123600512743,0.0003306878206785768,0.0003306878206785768,0.0003100198518950492,0.00042517005931586027,0.0003100198518950492,-0.0053293886594474316,0.0038368646055459976,0.0003306878206785768,0.00042517005931586027,0.00042517005931586027,-0.0004650297632906586,-0.00013227513409219682,-0.0001700680295471102,-0.0001700680295471102,2.235315501708306e-19,1.5734453836103525e-19,1.5734453836103525e-19,4.0565387019058553e-19,2.0230011151797598e-19,4.0565387019058553e-19,-0.004216270055621862,0.0003306878206785768,0.0021691545844078064,0.0003306878206785768,0.0003306878206785768,6.064632859224673e-19,-9.448223863728344e-05,-3.00176946573116e-34,-3.00176946573116e-34,-0.00019290123600512743,-9.448223863728344e-05,-9.448223863728344e-05,-5.290288907824185e-34,-2.6382740108557726e-34,-5.290288907824185e-34,-0.0053293886594474316,0.00042517005931586027,0.0003306878206785768,0.0038368646055459976,0.00042517005931586027,7.320313708595483e-19,-3.420141221335755e-34,-0.0001700680295471102,-3.6232852418458183e-34,-0.0,-0.00013227513409219682,8.524910468274432e-21,-0.0004650297632906586,-0.0001700680295471102,4.0565387019058553e-19,-0.0053293886594474316,0.00042517005931586027,0.0003306878206785768,0.00042517005931586027,0.0038368646055459976,7.320313708595483e-19,-3.420141221335755e-34,-3.6232852418458183e-34,-0.0001700680295471102,-2.8148287796002884e-21,8.524910468274432e-21,-0.00013227513409219682,5.20740180899336e-19,-0.0001700680295471102,-0.0004650297632906586,0.0003100198518950492,-0.0004650297632906586,6.064632859224673e-19,7.320313708595483e-19,7.320313708595483e-19,9.300595411332324e-05,-5.1149459578472325e-20,-4.603451394374252e-20,-4.603451394374252e-20,-4.5892154867852436e-20,-3.1468907025972196e-20,-3.1468907025972196e-20,-8.11307727456474e-20,-4.046002424229976e-20,-8.11307727456474e-20,0.0003306878206785768,-0.00013227513409219682,-9.448223863728344e-05,-3.420141221335755e-34,-3.420141221335755e-34,-5.1149459578472325e-20,3.779289545491338e-05,2.531709478646482e-35,2.531709478646482e-35,1.6940658945086007e-21,-0.0,-0.0,4.461860010245584e-35,2.2251353288081854e-35,4.461860010245584e-35,0.00042517005931586027,-0.0001700680295471102,-3.00176946573116e-34,-0.0001700680295471102,-3.6232852418458183e-34,-4.603451394374252e-20,2.531709478646482e-35,6.80272132740356e-05,2.2785386742747965e-35,2.2714923088461492e-35,1.5575947301657298e-35,1.5575947301657298e-35,4.015674095316803e-35,2.0026217959273669e-35,4.015674095316803e-35,0.00042517005931586027,-0.0001700680295471102,-3.00176946573116e-34,-3.6232852418458183e-34,-0.0001700680295471102,-4.603451394374252e-20,2.531709478646482e-35,2.2785386742747965e-35,6.80272132740356e-05,2.2714923088461492e-35,1.5575947301657298e-35,1.5575947301657298e-35,4.015674095316803e-35,2.0026217959273669e-35,4.015674095316803e-35,0.00019290123600512743,2.235315501708306e-19,-0.00019290123600512743,-0.0,-2.8148287796002884e-21,-4.5892154867852436e-20,1.6940658945086007e-21,2.2714923088461492e-35,2.2714923088461492e-35,2.7557318389881402e-05,1.6940658945086007e-21,1.6940658945086007e-21,4.0032556403488387e-35,1.996428783148175e-35,4.0032556403488387e-35,0.0003306878206785768,1.5734453836103525e-19,-9.448223863728344e-05,-0.00013227513409219682,8.524910468274432e-21,-3.1468907025972196e-20,-0.0,1.5575947301657298e-35,1.5575947301657298e-35,1.6940658945086007e-21,3.779289545491338e-05,-2.4356886475217258e-21,2.7450895409555e-35,1.368979831311267e-35,2.7450895409555e-35,0.0003306878206785768,1.5734453836103525e-19,-9.448223863728344e-05,8.524910468274432e-21,-0.00013227513409219682,-3.1468907025972196e-20,-0.0,1.5575947301657298e-35,1.5575947301657298e-35,1.6940658945086007e-21,-2.4356886475217258e-21,3.779289545491338e-05,2.7450895409555e-35,1.368979831311267e-35,2.7450895409555e-35,0.0003100198518950492,4.0565387019058553e-19,-5.290288907824185e-34,-0.0004650297632906586,5.20740180899336e-19,-8.11307727456474e-20,4.461860010245584e-35,4.015674095316803e-35,4.015674095316803e-35,4.0032556403488387e-35,2.7450895409555e-35,2.7450895409555e-35,9.300595411332324e-05,-4.603451394374252e-20,-8.11307727456474e-20,0.00042517005931586027,2.0230011151797598e-19,-2.6382740108557726e-34,-0.0001700680295471102,-0.0001700680295471102,-4.046002424229976e-20,2.2251353288081854e-35,2.0026217959273669e-35,2.0026217959273669e-35,1.996428783148175e-35,1.368979831311267e-35,1.368979831311267e-35,-4.603451394374252e-20,6.80272132740356e-05,7.545075220674086e-35,0.0003100198518950492,4.0565387019058553e-19,-5.290288907824185e-34,4.0565387019058553e-19,-0.0004650297632906586,-8.11307727456474e-20,4.461860010245584e-35,4.015674095316803e-35,4.015674095316803e-35,4.0032556403488387e-35,2.7450895409555e-35,2.7450895409555e-35,-8.11307727456474e-20,7.545075220674086e-35,9.300595411332324e-05,6.0,8.0,6.0,7.0,0.02348305471241474,-0.004613601602613926,-0.003649376332759857,-0.004613601602613926,-0.004074546508491039,0.0002657313016243279,0.00028344671591185033,0.00036443150020204484,0.0003188775444868952,0.0001653439103392884,0.00028344671591185033,0.00024801588733680546,0.0002657313016243279,0.0003188775444868952,0.00020667989156208932,-0.004613601602613926,0.003306962549686432,0.00028344671591185033,0.00036443150020204484,0.0003188775444868952,-0.00039859695243649185,-0.00011337868636474013,-0.00014577258843928576,-0.00012755101488437504,1.7922792458355237e-19,1.3486674532021635e-19,1.400279258275439e-19,3.4770332838452794e-19,1.6699565523330063e-19,2.9035624068472193e-19,-0.003649376332759857,0.00028344671591185033,0.0018693985184654593,0.00028344671591185033,0.00024801588733680546,5.075393089011788e-19,-8.09847770142369e-05,3.082668529085573e-20,4.404571325722362e-20,-0.0001653439103392884,-8.09847770142369e-05,-7.086167897796258e-05,8.429171420954808e-20,3.967884262662292e-20,4.404571325722362e-20,-0.004613601602613926,0.00036443150020204484,0.00028344671591185033,0.003306962549686432,0.0003188775444868952,7.022514729403556e-19,3.082668529085573e-20,-0.00014577258843928576,1.5270565132470105e-20,-0.0,-0.00011337868636474013,2.3057170052014077e-20,-0.00039859695243649185,-0.00012755101488437504,2.9379211630471993e-19,-0.004074546508491039,0.0003188775444868952,0.00024801588733680546,0.0003188775444868952,0.0024329177103936672,5.885970118719345e-19,3.004314814913768e-20,-5.115627436858782e-34,-0.00010629251482896507,4.8608460903111725e-21,3.732502587659512e-20,-8.26719551696442e-05,4.3012856770298694e-19,-0.00010629251482896507,-0.00024801588733680546,0.0002657313016243279,-0.00039859695243649185,5.075393089011788e-19,7.022514729403556e-19,5.885970118719345e-19,7.97193861217238e-05,-3.7579196506847646e-20,-6.764255241985606e-20,-4.932269581913432e-20,-3.933613459025881e-20,-2.6973348417808416e-20,-2.360167946168558e-20,-6.95406669693753e-20,-3.034501737393125e-20,-5.11369743211016e-20,0.00028344671591185033,-0.00011337868636474013,-8.09847770142369e-05,3.082668529085573e-20,3.004314814913768e-20,-3.7579196506847646e-20,3.2393909350503236e-05,-1.233067395478358e-20,-1.0844025214459785e-20,5.082197683525802e-21,-0.0,-1.6940658945086007e-21,3.34690706232175e-35,1.5938396176259595e-35,4.609453361161181e-22,0.00036443150020204484,-0.00014577258843928576,3.082668529085573e-20,-0.00014577258843928576,-5.115627436858782e-34,-6.764255241985606e-20,-1.233067395478358e-20,5.8309036830905825e-05,4.597846569125231e-35,3.0844971765576824e-35,2.2945649728051052e-35,2.0500621478340694e-35,5.900582156719596e-35,2.574799554401588e-35,4.341376431061107e-35,0.0003188775444868952,-0.00012755101488437504,4.404571325722362e-20,1.5270565132470105e-20,-0.00010629251482896507,-4.932269581913432e-20,-1.0844025214459785e-20,4.597846569125231e-35,4.251700738677755e-05,-1.1165013448857134e-22,1.9184067805419732e-35,-5.363433033342079e-21,5.440098889968644e-35,-5.090188377490035e-21,-1.2094891937289021e-20,0.0001653439103392884,1.7922792458355237e-19,-0.0001653439103392884,-0.0,4.8608460903111725e-21,-3.933613459025881e-20,5.082197683525802e-21,3.0844971765576824e-35,-1.1165013448857134e-22,2.362055965932086e-05,-0.0,-1.6940658945086007e-21,3.4843695898162117e-35,1.5422485882788412e-35,-7.457990709977866e-23,0.00028344671591185033,1.3486674532021635e-19,-8.09847770142369e-05,-0.00011337868636474013,3.732502587659512e-20,-2.6973348417808416e-20,-0.0,2.2945649728051052e-35,1.9184067805419732e-35,-0.0,3.2393909350503236e-05,-2.9576218425842135e-21,-3.3716686330054087e-20,-1.0789339205564653e-20,4.2853031120366653e-35,0.00024801588733680546,1.400279258275439e-19,-7.086167897796258e-05,2.3057170052014077e-20,-8.26719551696442e-05,-2.360167946168558e-20,-1.6940658945086007e-21,2.0500621478340694e-35,-5.363433033342079e-21,-1.6940658945086007e-21,-2.9576218425842135e-21,2.362055965932086e-05,4.4386666687049576e-35,-4.235164736271502e-21,-1.4877799744349467e-20,0.0002657313016243279,3.4770332838452794e-19,8.429171420954808e-20,-0.00039859695243649185,4.3012856770298694e-19,-6.95406669693753e-20,3.34690706232175e-35,5.900582156719596e-35,5.440098889968644e-35,3.4843695898162117e-35,-3.3716686330054087e-20,4.4386666687049576e-35,7.97193861217238e-05,-4.932269581913432e-20,-5.11369743211016e-20,0.0003188775444868952,1.6699565523330063e-19,3.967884262662292e-20,-0.00012755101488437504,-0.00010629251482896507,-3.034501737393125e-20,1.5938396176259595e-35,2.574799554401588e-35,-5.090188377490035e-21,1.5422485882788412e-35,-1.0789339205564653e-20,-4.235164736271502e-21,-4.932269581913432e-20,4.251700738677755e-05,-1.2702420554292274e-20,0.00020667989156208932,2.9035624068472193e-19,4.404571325722362e-20,2.9379211630471993e-19,-0.00024801588733680546,-5.11369743211016e-20,4.609453361161181e-22,4.341376431061107e-35,-1.2094891937289021e-20,-7.457990709977866e-23,4.2853031120366653e-35,-1.4877799744349467e-20,-5.11369743211016e-20,-1.2702420554292274e-20,4.13359775848221e-05,6.0,8.0,6.0,8.0,0.020931752398610115,-0.004067903384566307,-0.0032173169311136007,-0.004067903384566307,-0.0032173169311136007,0.0002325148816453293,0.00024801588733680546,0.0003188775444868952,0.00024801588733680546,0.00014467592700384557,0.00024801588733680546,0.00019290123600512743,0.0002325148816453293,0.00024801588733680546,0.00014467592700384557,-0.004067903384566307,0.0029059930238872766,0.00024801588733680546,0.0003188775444868952,0.00024801588733680546,-0.00034877232974395156,-9.920635056914762e-05,-0.00012755101488437504,-9.920635056914762e-05,1.4736744770393862e-19,7.728109356187121e-20,9.201148713612432e-20,1.7148095163198992e-19,7.221855434259062e-20,1.4949396103775053e-19,-0.0032173169311136007,0.00024801588733680546,0.0016426130896434188,0.00024801588733680546,0.00019290123600512743,3.328586158646806e-19,-7.086167897796258e-05,-6.473603361780078e-20,-2.0328790734103208e-20,-0.00014467592700384557,-7.086167897796258e-05,-5.5114636779762805e-05,-7.3755249125561e-20,-2.5426194323733208e-20,6.712336410733405e-21,-0.004067903384566307,0.0003188775444868952,0.00024801588733680546,0.0029059930238872766,0.00024801588733680546,4.66164768637042e-19,-2.9937963733198467e-20,-0.00012755101488437504,-4.578984942818582e-20,-1.3552527156068805e-20,-9.920635056914762e-05,1.5915550733275875e-21,-0.00034877232974395156,-9.920635056914762e-05,1.5901402148171454e-19,-0.0032173169311136007,0.00024801588733680546,0.00019290123600512743,0.00024801588733680546,0.0016426130896434188,3.328586158646806e-19,-2.4426874517651054e-20,-7.552537686233327e-20,-7.086167897796258e-05,-3.941900532449827e-21,-1.4940793102287075e-20,-5.5114636779762805e-05,2.0960539587182926e-19,-7.086167897796258e-05,-0.00014467592700384557,0.0002325148816453293,-0.00034877232974395156,3.328586158646806e-19,4.66164768637042e-19,3.328586158646806e-19,6.975446740398183e-05,1.2531367843110691e-20,1.3149507030564176e-21,1.2531367843110691e-20,-3.441911776647646e-20,-2.360167946168558e-20,-1.8356861624023548e-20,-6.084807794364842e-20,-2.360167946168558e-20,-3.441911776647646e-20,0.00024801588733680546,-9.920635056914762e-05,-7.086167897796258e-05,-2.9937963733198467e-20,-2.4426874517651054e-20,1.2531367843110691e-20,2.8344671591185033e-05,1.0789339205564653e-20,8.533220240697609e-21,6.776263578034403e-21,8.470329472543003e-22,8.470329472543003e-22,-4.55592062487196e-38,-3.3767970231309484e-37,1.7065462672525978e-23,0.0003188775444868952,-0.00012755101488437504,-6.473603361780078e-20,-0.00012755101488437504,-7.552537686233327e-20,1.3149507030564176e-21,1.0789339205564653e-20,5.10204081365373e-05,1.510507569558408e-20,1.504632769052528e-36,1.510507569558408e-20,-7.52316384526264e-37,5.310378040437969e-20,1.510507569558408e-20,-2.4875409097833706e-35,0.00024801588733680546,-9.920635056914762e-05,-2.0328790734103208e-20,-4.578984942818582e-20,-7.086167897796258e-05,1.2531367843110691e-20,8.533220240697609e-21,1.510507569558408e-20,2.8344671591185033e-05,2.889192841734624e-22,9.4039548065783e-37,-9.119402710745914e-22,-4.134248931110821e-36,2.2934743686285178e-21,6.4405417443340294e-21,0.00014467592700384557,1.4736744770393862e-19,-0.00014467592700384557,-1.3552527156068805e-20,-3.941900532449827e-21,-3.441911776647646e-20,6.776263578034403e-21,1.504632769052528e-36,2.889192841734624e-22,2.066798879241105e-05,1.6940658945086007e-21,0.0,3.024534337285024e-35,1.1754943508222875e-35,5.348486025076088e-22,0.00024801588733680546,7.728109356187121e-20,-7.086167897796258e-05,-9.920635056914762e-05,-1.4940793102287075e-20,-2.360167946168558e-20,8.470329472543003e-22,1.510507569558408e-20,9.4039548065783e-37,1.6940658945086007e-21,2.8344671591185033e-05,-1.7252794418321898e-21,2.950210094269411e-20,8.391708540259252e-21,-1.312367983197636e-36,0.00019290123600512743,9.201148713612432e-20,-5.5114636779762805e-05,1.5915550733275875e-21,-5.5114636779762805e-05,-1.8356861624023548e-20,8.470329472543003e-22,-7.52316384526264e-37,-9.119402710745914e-22,0.0,-1.7252794418321898e-21,1.5747040379210375e-05,1.5422485882788412e-35,1.2705494208814505e-21,-3.0870194667958595e-21,0.0002325148816453293,1.7148095163198992e-19,-7.3755249125561e-20,-0.00034877232974395156,2.0960539587182926e-19,-6.084807794364842e-20,-4.55592062487196e-38,5.310378040437969e-20,-4.134248931110821e-36,3.024534337285024e-35,2.950210094269411e-20,1.5422485882788412e-35,6.975446740398183e-05,1.2531367843110691e-20,-3.441911776647646e-20,0.00024801588733680546,7.221855434259062e-20,-2.5426194323733208e-20,-9.920635056914762e-05,-7.086167897796258e-05,-2.360167946168558e-20,-3.3767970231309484e-37,1.510507569558408e-20,2.2934743686285178e-21,1.1754943508222875e-35,8.391708540259252e-21,1.2705494208814505e-21,1.2531367843110691e-20,2.8344671591185033e-05,3.737588940633146e-21,0.00014467592700384557,1.4949396103775053e-19,6.712336410733405e-21,1.5901402148171454e-19,-0.00014467592700384557,-3.441911776647646e-20,1.7065462672525978e-23,-2.4875409097833706e-35,6.4405417443340294e-21,5.348486025076088e-22,-1.312367983197636e-36,-3.0870194667958595e-21,-3.441911776647646e-20,3.737588940633146e-21,2.066798879241105e-05,6.0,8.0,7.0,3.0,0.04076318070292473,-0.0086805559694767,-0.0068735829554498196,-0.007670776452869177,-0.014473497867584229,0.0005314626032486558,0.0005668934318237007,0.0006377550889737904,0.0012755101779475808,0.0003306878206785768,0.0004960317746736109,0.0009920635493472219,0.00041335978312417865,0.0011160714784637094,0.0014880952658131719,-0.0086805559694767,0.006395266391336918,0.0005668934318237007,0.0006377550889737904,0.0012755101779475808,-0.0007971939048729837,-0.00022675737272948027,-0.00025510202976875007,-0.0005102040595375001,3.5933759785069213e-19,2.681973903935276e-19,4.710588861287886e-19,5.769153604663075e-19,5.310378040437969e-19,3.540251958026928e-18,-0.0068735829554498196,0.0005668934318237007,0.0036173199769109488,0.0004960317746736109,0.0009920635493472219,9.746186291029747e-19,-0.0001619695540284738,9.035178801112788e-20,1.0789339367123366e-19,-0.0003306878206785768,-0.00014172335795592517,-0.00028344671591185033,1.0077458038437427e-19,-0.0,-4.328176077199417e-33,-0.007670776452869177,0.0006377550889737904,0.0004960317746736109,0.004706396255642176,0.0011160714784637094,1.1316764459841838e-18,6.304725392439428e-20,-0.00021258502965793014,-1.0917502047242884e-33,1.3552527156068805e-20,-0.0001653439103392884,-5.3173787026065525e-20,-0.0004960317746736109,-0.00037202381645329297,-5.0256530788659286e-33,-0.014473497867584229,0.0012755101779475808,0.0009920635493472219,0.0011160714784637094,0.02935444936156273,2.4350671085330974e-18,1.0789339367123366e-19,-1.1371584691716053e-21,-0.0012755101779475808,-1.683063423009365e-20,-4.743384504624082e-20,-0.0009920635493472219,-0.0,-0.0011160714784637094,-0.008928571827709675,0.0005314626032486558,-0.0007971939048729837,9.746186291029747e-19,1.1316764459841838e-18,2.4350671085330974e-18,0.0001594387722434476,-7.515839301369529e-20,-9.864539163826864e-20,-1.479680842262287e-19,-7.867226918051762e-20,-4.720335892337116e-20,-9.440671784674232e-20,-1.022739486422032e-19,-1.0620756080875938e-19,-7.080504226246586e-19,0.0005668934318237007,-0.00022675737272948027,-0.0001619695540284738,6.304725392439428e-20,1.0789339367123366e-19,-7.515839301369529e-20,6.478781870100647e-05,-2.1832008936072206e-20,-4.315735682225861e-20,1.0164395367051604e-20,-0.0,-0.0,-1.3026503294383302e-21,2.26683682316279e-35,3.3377030219108707e-34,0.0006377550889737904,-0.00025510202976875007,9.035178801112788e-20,-0.00021258502965793014,-1.1371584691716053e-21,-9.864539163826864e-20,-2.1832008936072206e-20,8.50340147735551e-05,1.058243266308202e-34,-5.172168418347736e-22,-1.0726866066684159e-20,3.249024233695371e-22,-2.0328790734103208e-20,-0.0,4.380735460196054e-34,0.0012755101779475808,-0.0005102040595375001,1.0789339367123366e-19,-1.0917502047242884e-33,-0.0012755101779475808,-1.479680842262287e-19,-4.315735682225861e-20,1.058243266308202e-34,0.0005102040595375001,6.620384183831123e-35,4.5891299456102104e-35,8.726870060504662e-35,9.468635120494224e-35,9.856654441058012e-35,6.571102960705341e-34,0.0003306878206785768,3.5933759785069213e-19,-0.0003306878206785768,1.3552527156068805e-20,-1.683063423009365e-20,-7.867226918051762e-20,1.0164395367051604e-20,-5.172168418347736e-22,6.620384183831123e-35,4.724111931864172e-05,-3.3881317890172014e-21,0.0,-1.1899025423317981e-21,-3.529649224689872e-36,3.49375035616001e-34,0.0004960317746736109,2.681973903935276e-19,-0.00014172335795592517,-0.0001653439103392884,-4.743384504624082e-20,-4.720335892337116e-20,-0.0,-1.0726866066684159e-20,4.5891299456102104e-35,-3.3881317890172014e-21,4.724111931864172e-05,1.3552527156068805e-20,-2.9755599488698934e-20,-0.0,2.0962503514492503e-34,0.0009920635493472219,4.710588861287886e-19,-0.00028344671591185033,-5.3173787026065525e-20,-0.0009920635493472219,-9.440671784674232e-20,-0.0,3.249024233695371e-22,8.726870060504662e-35,0.0,1.3552527156068805e-20,0.00028344671591185033,7.581056292853709e-22,-0.0,4.192500702898501e-34,0.00041335978312417865,5.769153604663075e-19,1.0077458038437427e-19,-0.0004960317746736109,-0.0,-1.022739486422032e-19,-1.3026503294383302e-21,-2.0328790734103208e-20,9.468635120494224e-35,-1.1899025423317981e-21,-2.9755599488698934e-20,7.581056292853709e-22,8.26719551696442e-05,5.2406255916372e-36,4.541875531884635e-34,0.0011160714784637094,5.310378040437969e-19,-0.0,-0.00037202381645329297,-0.0011160714784637094,-1.0620756080875938e-19,2.26683682316279e-35,-0.0,9.856654441058012e-35,-3.529649224689872e-36,-0.0,-0.0,5.2406255916372e-36,0.00037202381645329297,4.716563175966443e-34,0.0014880952658131719,3.540251958026928e-18,-4.328176077199417e-33,-5.0256530788659286e-33,-0.008928571827709675,-7.080504226246586e-19,3.3377030219108707e-34,4.380735460196054e-34,6.571102960705341e-34,3.49375035616001e-34,2.0962503514492503e-34,4.192500702898501e-34,4.541875531884635e-34,4.716563175966443e-34,0.004464285913854837,6.0,8.0,7.0,4.0,0.032669004052877426,-0.006701743230223656,-0.005303996615111828,-0.005920493043959141,-0.009130527265369892,0.00039859695243649185,0.00042517005931586027,0.00047831633128225803,0.0007653061184100807,0.00024801588733680546,0.00037202381645329297,0.0005952381179668009,0.0003100198518950492,0.0006696428754366934,0.0007440476329065859,-0.006701743230223656,0.004872980527579784,0.00042517005931586027,0.00047831633128225803,0.0007653061184100807,-0.0005978954141028225,-0.0001700680295471102,-0.00019132652960252017,-0.0003061224415432662,2.6019876066529294e-19,1.4717166439270498e-19,1.9767453045727652e-19,3.8437358910749906e-19,2.1222943249469767e-19,7.292919037671375e-19,-0.005303996615111828,0.00042517005931586027,0.00275550689548254,0.00037202381645329297,0.0005952381179668009,4.2719039631780444e-19,-0.00012147716188337654,-6.851498239685515e-20,-1.5536649102247954e-19,-0.00024801588733680546,-0.00010629251482896507,-0.0001700680295471102,-6.79945242328459e-20,-6.098637220230962e-20,-2.8322015354022696e-19,-0.005920493043959141,0.00047831633128225803,0.00037202381645329297,0.003585600992664695,0.0006696428754366934,6.193092974378393e-19,-3.830311848332506e-20,-0.0001594387722434476,-1.8692530547245286e-19,-0.0,-0.00012400794366840273,-8.537855198626033e-20,-0.00037202381645329297,-0.00022321428696159273,-3.7172646283065783e-19,-0.009130527265369892,0.0007653061184100807,0.0005952381179668009,0.0006696428754366934,0.011295351199805737,1.0362100839233669e-18,-5.8251202571675e-20,-9.103339129822011e-20,-0.0005102040595375001,-2.2558399529690208e-20,-3.134021904840911e-20,-0.00039682540227659047,-1.3552527156068805e-20,-0.00044642857392318547,-0.0022321429569274187,0.00039859695243649185,-0.0005978954141028225,4.2719039631780444e-19,6.193092974378393e-19,1.0362100839233669e-18,0.00011957908282056451,7.080503838505674e-20,2.4167639021733776e-20,3.866822178853919e-20,-5.900420188538822e-20,-3.540251919252837e-20,-5.664402941557569e-20,-7.670545986606527e-20,-6.372453390031621e-20,-2.4781765050356993e-19,0.00042517005931586027,-0.0001700680295471102,-0.00012147716188337654,-3.830311848332506e-20,-5.8251202571675e-20,7.080503838505674e-20,4.8590864025754854e-05,1.6061047683276762e-20,2.5894414093355167e-20,1.0164395367051604e-20,-0.0,-1.6940658945086007e-21,-2.417996756715251e-22,-1.8520158153810802e-22,-1.0491268713989684e-34,0.00047831633128225803,-0.00019132652960252017,-6.851498239685515e-20,-0.0001594387722434476,-9.103339129822011e-20,2.4167639021733776e-20,1.6061047683276762e-20,6.377550744218752e-05,3.3986418295580265e-20,-2.5104575656943954e-22,9.94697853630157e-21,2.8147029152651385e-22,-1.1925097463448103e-36,1.6940658945086007e-21,1.1590712942499837e-35,0.0007653061184100807,-0.0003061224415432662,-1.5536649102247954e-19,-1.8692530547245286e-19,-0.0005102040595375001,3.866822178853919e-20,2.5894414093355167e-20,3.3986418295580265e-20,0.0002040816325461492,-1.2037062152420224e-35,-7.52316384526264e-37,6.042030278233632e-20,-2.256949153578792e-35,6.797283659116053e-20,3.398641894181512e-19,0.00024801588733680546,2.6019876066529294e-19,-0.00024801588733680546,-0.0,-2.2558399529690208e-20,-5.900420188538822e-20,1.0164395367051604e-20,-2.5104575656943954e-22,-1.2037062152420224e-35,3.543083948898129e-05,-1.6940658945086007e-21,-3.3881317890172014e-21,-6.138644827367242e-23,-3.7811988880350936e-22,1.2037062152420224e-34,0.00037202381645329297,1.4717166439270498e-19,-0.00010629251482896507,-0.00012400794366840273,-3.134021904840911e-20,-3.540251919252837e-20,-0.0,9.94697853630157e-21,-7.52316384526264e-37,-1.6940658945086007e-21,3.543083948898129e-05,6.776263578034403e-21,2.2692885849476832e-20,2.541098841762901e-21,9.110875021942644e-35,0.0005952381179668009,1.9767453045727652e-19,-0.0001700680295471102,-8.537855198626033e-20,-0.00039682540227659047,-5.664402941557569e-20,-1.6940658945086007e-21,2.8147029152651385e-22,6.042030278233632e-20,-3.3881317890172014e-21,6.776263578034403e-21,0.00011337868636474013,6.567640388054146e-22,3.7792657572500344e-20,1.8881343569348464e-19,0.0003100198518950492,3.8437358910749906e-19,-6.79945242328459e-20,-0.00037202381645329297,-1.3552527156068805e-20,-7.670545986606527e-20,-2.417996756715251e-22,-1.1925097463448103e-36,-2.256949153578792e-35,-6.138644827367242e-23,2.2692885849476832e-20,6.567640388054146e-22,6.200397183420137e-05,4.756415749666703e-21,1.6757446832970541e-34,0.0006696428754366934,2.1222943249469767e-19,-6.098637220230962e-20,-0.00022321428696159273,-0.00044642857392318547,-6.372453390031621e-20,-1.8520158153810802e-22,1.6940658945086007e-21,6.797283659116053e-20,-3.7811988880350936e-22,2.541098841762901e-21,3.7792657572500344e-20,4.756415749666703e-21,0.00014880952949170023,2.4781765050356993e-19,0.0007440476329065859,7.292919037671375e-19,-2.8322015354022696e-19,-3.7172646283065783e-19,-0.0022321429569274187,-2.4781765050356993e-19,-1.0491268713989684e-34,1.1590712942499837e-35,3.398641894181512e-19,1.2037062152420224e-34,9.110875021942644e-35,1.8881343569348464e-19,1.6757446832970541e-34,2.4781765050356993e-19,0.0007440476329065859,6.0,8.0,7.0,5.0,0.027310090139508247,-0.005463435314595699,-0.004322562366724014,-0.004825680050998926,-0.0062996032647788525,0.0003188775444868952,0.0003401360590942204,0.00038265305920504034,0.0005102040595375001,0.00019841270113829523,0.00029761905898340046,0.00039682540227659047,0.00024801588733680546,0.00044642857392318547,0.00042517005931586027,-0.005463435314595699,0.003939200658351183,0.0003401360590942204,0.00038265305920504034,0.0005102040595375001,-0.00047831633128225803,-0.0001360544265480712,-0.0001530612207716331,-0.0002040816325461492,-2.876207802484032e-19,-5.192933386104042e-19,-1.4432285436307235e-18,-2.700709544809602e-19,-1.4854491862639254e-18,-3.6312869067511454e-18,-0.004322562366724014,0.0003401360590942204,0.0022270812187343836,0.00029761905898340046,0.00039682540227659047,-8.112943503950054e-19,-9.718172805150971e-05,-3.892417279581326e-19,-1.5072399153331395e-18,-0.00019841270113829523,-8.50340147735551e-05,-0.00011337868636474013,3.5689314989362723e-19,-5.460137539377046e-19,-1.551652586589607e-18,-0.004825680050998926,0.00038265305920504034,0.00029761905898340046,0.0028982425574213266,0.00044642857392318547,-7.397272007848002e-19,5.0047331885124913e-20,-0.00012755101488437504,-1.7846800150961815e-18,5.014435047745458e-19,-9.920635056914762e-05,-1.0729317332418929e-18,-0.00029761905898340046,-0.00014880952949170023,-3.2514989226163048e-18,-0.0062996032647788525,0.0005102040595375001,0.00039682540227659047,0.00044642857392318547,0.005700821988284588,-3.1327207497373653e-18,-7.9129043484648235e-19,-1.580670392670697e-18,-0.00025510202976875007,-6.805777382290295e-19,-1.371015469359691e-18,-0.00019841270113829523,-2.168404344971009e-18,-0.00022321428696159273,-0.0008503401186317205,0.0003188775444868952,-0.00047831633128225803,-8.112943503950054e-19,-7.397272007848002e-19,-3.1327207497373653e-18,9.566326480126008e-05,3.327300086664742e-20,5.468171789570409e-20,1.60499133798674e-19,3.540251919252837e-20,4.231444039102147e-20,1.429587430600929e-19,1.6521176592532187e-20,1.4692045998043028e-19,3.9448522586110626e-19,0.0003401360590942204,-0.0001360544265480712,-9.718172805150971e-05,5.0047331885124913e-20,-7.9129043484648235e-19,3.327300086664742e-20,3.887269122060388e-05,7.63520663363976e-21,5.307121986128322e-20,-4.912791094074942e-20,8.470329472543003e-22,3.9810548520952116e-20,-3.200702032618062e-20,3.9920557080073133e-20,7.398404211311434e-20,0.00038265305920504034,-0.0001530612207716331,-3.892417279581326e-19,-0.00012755101488437504,-1.580670392670697e-18,5.468171789570409e-20,7.63520663363976e-21,5.10204081365373e-05,9.758495255532419e-20,1.3624887688208723e-20,2.6060134559201338e-20,7.552537686233327e-20,-3.3881317890172014e-21,6.776263578034403e-20,1.8611610311352579e-19,0.0005102040595375001,-0.0002040816325461492,-1.5072399153331395e-18,-1.7846800150961815e-18,-0.00025510202976875007,1.60499133798674e-19,5.307121986128322e-20,9.758495255532419e-20,0.0001020408162730746,1.0573552502232717e-19,9.063045094233022e-20,1.5105075372466654e-19,1.3594567318232106e-19,1.699320947090756e-19,3.8841622755619884e-19,0.00019841270113829523,-2.876207802484032e-19,-0.00019841270113829523,5.014435047745458e-19,-6.805777382290295e-19,3.540251919252837e-20,-4.912791094074942e-20,1.3624887688208723e-20,1.0573552502232717e-19,2.8344671591185033e-05,-3.8963515573697816e-20,1.5246593050577406e-20,-7.29342142064653e-20,1.1014117459090269e-20,6.293781405194439e-20,0.00029761905898340046,-5.192933386104042e-19,-8.50340147735551e-05,-9.920635056914762e-05,-1.371015469359691e-18,4.231444039102147e-20,8.470329472543003e-22,2.6060134559201338e-20,9.063045094233022e-20,-3.8963515573697816e-20,2.8344671591185033e-05,6.559000712738229e-20,2.0450672243071202e-20,5.590417451878382e-20,1.663356555773628e-19,0.00039682540227659047,-1.4432285436307235e-18,-0.00011337868636474013,-1.0729317332418929e-18,-0.00019841270113829523,1.429587430600929e-19,3.9810548520952116e-20,7.552537686233327e-20,1.5105075372466654e-19,1.5246593050577406e-20,6.559000712738229e-20,5.668934318237007e-05,7.552537686233327e-20,8.181915503635344e-20,1.9557818336642866e-19,0.00024801588733680546,-2.700709544809602e-19,3.5689314989362723e-19,-0.00029761905898340046,-2.168404344971009e-18,1.6521176592532187e-20,-3.200702032618062e-20,-3.3881317890172014e-21,1.3594567318232106e-19,-7.29342142064653e-20,2.0450672243071202e-20,7.552537686233327e-20,4.960317528457381e-05,9.968926125956788e-20,2.8322015354022696e-19,0.00044642857392318547,-1.4854491862639254e-18,-5.460137539377046e-19,-0.00014880952949170023,-0.00022321428696159273,1.4692045998043028e-19,3.9920557080073133e-20,6.776263578034403e-20,1.699320947090756e-19,1.1014117459090269e-20,5.590417451878382e-20,8.181915503635344e-20,9.968926125956788e-20,7.440476474585012e-05,2.2875475629940256e-19,0.00042517005931586027,-3.6312869067511454e-18,-1.551652586589607e-18,-3.2514989226163048e-18,-0.0008503401186317205,3.9448522586110626e-19,7.398404211311434e-20,1.8611610311352579e-19,3.8841622755619884e-19,6.293781405194439e-20,1.663356555773628e-19,1.9557818336642866e-19,2.8322015354022696e-19,2.2875475629940256e-19,0.00021258502965793014,6.0,8.0,7.0,6.0,0.02348305471241474,-0.004613601602613926,-0.003649376332759857,-0.004074546508491039,-0.004613601602613926,0.0002657313016243279,0.00028344671591185033,0.0003188775444868952,0.00036443150020204484,0.0001653439103392884,0.00024801588733680546,0.00028344671591185033,0.00020667989156208932,0.0003188775444868952,0.0002657313016243279,-0.004613601602613926,0.003306962549686432,0.00028344671591185033,0.0003188775444868952,0.00036443150020204484,-0.00039859695243649185,-0.00011337868636474013,-0.00012755101488437504,-0.00014577258843928576,1.7975601478118213e-19,1.359206251193972e-19,1.378313606356064e-19,2.882034514417644e-19,1.5934838339494496e-19,3.4770332838452794e-19,-0.003649376332759857,0.00028344671591185033,0.0018693985184654593,0.00024801588733680546,0.00028344671591185033,5.075393089011788e-19,-8.09847770142369e-05,4.7415996039585573e-20,3.082668529085573e-20,-0.0001653439103392884,-7.086167897796258e-05,-8.09847770142369e-05,5.0749184941353354e-20,3.205554610133422e-20,8.429171420954808e-20,-0.004074546508491039,0.0003188775444868952,0.00024801588733680546,0.0024329177103936672,0.0003188775444868952,5.885970118719345e-19,3.108706300687667e-20,-0.00010629251482896507,-5.109184717625818e-34,-0.0,-8.26719551696442e-05,1.6839288930369914e-20,-0.00024801588733680546,-0.00010629251482896507,-5.309707064309311e-34,-0.004613601602613926,0.00036443150020204484,0.00028344671591185033,0.0003188775444868952,0.003306962549686432,7.022514729403556e-19,3.3791300606245784e-20,7.623296525288703e-21,-0.00014577258843928576,4.396703658718375e-21,-5.0518618039127e-21,-0.00011337868636474013,2.710505431213761e-20,-0.00012755101488437504,-0.00039859695243649185,0.0002657313016243279,-0.00039859695243649185,5.075393089011788e-19,5.885970118719345e-19,7.022514729403556e-19,7.97193861217238e-05,-3.7579196506847646e-20,-4.932269581913432e-20,-6.764255241985606e-20,-3.933613459025881e-20,-2.360167946168558e-20,-2.6973348417808416e-20,-5.11369743211016e-20,-3.034501737393125e-20,-6.95406669693753e-20,0.00028344671591185033,-0.00011337868636474013,-8.09847770142369e-05,3.108706300687667e-20,3.3791300606245784e-20,-3.7579196506847646e-20,3.2393909350503236e-05,-1.09302450608278e-20,-1.233067395478358e-20,5.082197683525802e-21,-0.0,-8.470329472543003e-22,-5.786848835695949e-22,1.519113074402202e-35,3.277959267693734e-35,0.0003188775444868952,-0.00012755101488437504,4.7415996039585573e-20,-0.00010629251482896507,7.623296525288703e-21,-4.932269581913432e-20,-1.09302450608278e-20,4.251700738677755e-05,4.600734221507549e-35,-2.876821735692331e-22,-5.970739911011206e-21,1.6550960459577808e-35,-1.0164395367051604e-20,-2.541098841762901e-21,4.302507918270014e-35,0.00036443150020204484,-0.00014577258843928576,3.082668529085573e-20,-5.109184717625818e-34,-0.00014577258843928576,-6.764255241985606e-20,-1.233067395478358e-20,4.600734221507549e-35,5.8309036830905825e-05,3.0844971765576824e-35,2.0124463286077562e-35,2.256949153578792e-35,4.350609055270166e-35,2.574799554401588e-35,5.900582156719596e-35,0.0001653439103392884,1.7975601478118213e-19,-0.0001653439103392884,-0.0,4.396703658718375e-21,-3.933613459025881e-20,5.082197683525802e-21,-2.876821735692331e-22,3.0844971765576824e-35,2.362055965932086e-05,-1.6940658945086007e-21,0.0,-2.9615345421870117e-22,1.5798644075051544e-35,3.159728815010309e-35,0.00024801588733680546,1.359206251193972e-19,-7.086167897796258e-05,-8.26719551696442e-05,-5.0518618039127e-21,-2.360167946168558e-20,-0.0,-5.970739911011206e-21,2.0124463286077562e-35,-1.6940658945086007e-21,2.362055965932086e-05,2.895445567839572e-21,-1.5686722606702374e-20,-1.6940658945086007e-21,1.7574494327921542e-35,0.00028344671591185033,1.378313606356064e-19,-8.09847770142369e-05,1.6839288930369914e-20,-0.00011337868636474013,-2.6973348417808416e-20,-8.470329472543003e-22,1.6550960459577808e-35,2.256949153578792e-35,0.0,2.895445567839572e-21,3.2393909350503236e-05,1.7115197747972506e-35,-1.0789339205564653e-20,-3.3716686330054087e-20,0.00020667989156208932,2.882034514417644e-19,5.0749184941353354e-20,-0.00024801588733680546,2.710505431213761e-20,-5.11369743211016e-20,-5.786848835695949e-22,-1.0164395367051604e-20,4.350609055270166e-35,-2.9615345421870117e-22,-1.5686722606702374e-20,1.7115197747972506e-35,4.13359775848221e-05,-4.8867286039896994e-21,4.4607706116724096e-35,0.0003188775444868952,1.5934838339494496e-19,3.205554610133422e-20,-0.00010629251482896507,-0.00012755101488437504,-3.034501737393125e-20,1.519113074402202e-35,-2.541098841762901e-21,2.574799554401588e-35,1.5798644075051544e-35,-1.6940658945086007e-21,-1.0789339205564653e-20,-4.8867286039896994e-21,4.251700738677755e-05,3.7700419807289495e-35,0.0002657313016243279,3.4770332838452794e-19,8.429171420954808e-20,-5.309707064309311e-34,-0.00039859695243649185,-6.95406669693753e-20,3.277959267693734e-35,4.302507918270014e-35,5.900582156719596e-35,3.159728815010309e-35,1.7574494327921542e-35,-3.3716686330054087e-20,4.4607706116724096e-35,3.7700419807289495e-35,7.97193861217238e-05,6.0,8.0,7.0,7.0,0.02060682885348797,-0.003993561491370201,-0.0031584061216562986,-0.0035266338381916285,-0.0035266338381916285,0.0002277696767123416,0.00024295432376675308,0.000273323617875576,0.000273323617875576,0.00014172335795592517,0.00021258502965793014,0.00021258502965793014,0.00017715420108288527,0.00023915816564112902,0.00017715420108288527,-0.003993561491370201,0.002850157907232642,0.00024295432376675308,0.000273323617875576,0.000273323617875576,-0.00034165452234447,-9.718172805150971e-05,-0.00010932944860542193,-0.00010932944860542193,2.236008782459202e-19,1.1423766217436225e-19,1.115578425589348e-19,2.371506912156041e-19,1.2218963374617007e-19,2.329555154920707e-19,-0.0031584061216562986,0.00024295432376675308,0.0016110185533761978,0.00021258502965793014,0.00021258502965793014,4.264198775772113e-19,-6.941552419448271e-05,1.2252356752881e-20,1.0164395367051604e-20,-0.00014172335795592517,-6.073858094168827e-05,-6.073858094168827e-05,3.2411340393482857e-20,7.656558233201285e-21,2.3195671105828425e-20,-0.0035266338381916285,0.000273323617875576,0.00021258502965793014,0.002096746349707246,0.00023915816564112902,4.92664171644426e-19,1.1328175916466712e-23,-9.110787505051121e-05,9.141563113616344e-21,-0.0,-7.086167897796258e-05,-3.3881317890172014e-21,-0.00021258502965793014,-7.97193861217238e-05,3.21897109192812e-20,-0.0035266338381916285,0.000273323617875576,0.00021258502965793014,0.00023915816564112902,0.002096746349707246,4.92664171644426e-19,1.1393952495584797e-21,-5.711682937472223e-21,-9.110787505051121e-05,1.798460288339341e-21,-1.403946673381118e-20,-7.086167897796258e-05,-6.776263578034403e-21,-7.97193861217238e-05,-0.00021258502965793014,0.0002277696767123416,-0.00034165452234447,4.264198775772113e-19,4.92664171644426e-19,4.92664171644426e-19,6.8330904468894e-05,-2.760920473961734e-20,-3.623708303828329e-20,-3.623708303828329e-20,-3.3716686330054087e-20,-2.023001212114988e-20,-2.023001212114988e-20,-4.3831689967248325e-20,-2.2758763030448438e-20,-4.3831689967248325e-20,0.00024295432376675308,-9.718172805150971e-05,-6.941552419448271e-05,1.1328175916466712e-23,1.1393952495584797e-21,-2.760920473961734e-20,2.7766209313995205e-05,-1.1428282207567077e-22,-1.5581956728805035e-22,-1.5246593050577406e-20,-8.470329472543003e-22,-8.470329472543003e-22,4.983067983293439e-22,9.272782149612884e-36,3.4073368791229583e-22,0.000273323617875576,-0.00010932944860542193,1.2252356752881e-20,-9.110787505051121e-05,-5.711682937472223e-21,-3.623708303828329e-20,-1.1428282207567077e-22,3.644314710982144e-05,8.464144298175091e-23,-2.3332743576719628e-22,-3.460049650282432e-21,6.004041175565019e-23,-6.776263578034403e-21,8.470329472543003e-22,4.2289833484359347e-22,0.000273323617875576,-0.00010932944860542193,1.0164395367051604e-20,9.141563113616344e-21,-9.110787505051121e-05,-3.623708303828329e-20,-1.5581956728805035e-22,8.464144298175091e-23,3.644314710982144e-05,-3.1813159866558894e-22,8.572027022306944e-23,-2.541098841762901e-21,1.974967044980103e-22,-3.645638606701214e-21,-5.419443015893436e-21,0.00014172335795592517,2.236008782459202e-19,-0.00014172335795592517,-0.0,1.798460288339341e-21,-3.3716686330054087e-20,-1.5246593050577406e-20,-2.3332743576719628e-22,-3.1813159866558894e-22,2.0246194253559224e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,4.192383988966025e-22,1.1472824864025526e-35,1.0560489268564844e-21,0.00021258502965793014,1.1423766217436225e-19,-6.073858094168827e-05,-7.086167897796258e-05,-1.403946673381118e-20,-2.023001212114988e-20,-8.470329472543003e-22,-3.460049650282432e-21,8.572027022306944e-23,-1.6940658945086007e-21,2.0246194253559224e-05,3.2155786012850153e-21,-1.2417208032849137e-20,4.235164736271502e-22,2.0001396595745778e-22,0.00021258502965793014,1.115578425589348e-19,-6.073858094168827e-05,-3.3881317890172014e-21,-7.086167897796258e-05,-2.023001212114988e-20,-8.470329472543003e-22,6.004041175565019e-23,-2.541098841762901e-21,-1.6940658945086007e-21,3.2155786012850153e-21,2.0246194253559224e-05,1.4009430040740434e-22,-2.975702484044781e-21,-1.0881115863879692e-20,0.00017715420108288527,2.371506912156041e-19,3.2411340393482857e-20,-0.00021258502965793014,-6.776263578034403e-21,-4.3831689967248325e-20,4.983067983293439e-22,-6.776263578034403e-21,1.974967044980103e-22,4.192383988966025e-22,-1.2417208032849137e-20,1.4009430040740434e-22,3.543083948898129e-05,-5.538292269759505e-22,4.27594367014389e-22,0.00023915816564112902,1.2218963374617007e-19,7.656558233201285e-21,-7.97193861217238e-05,-7.97193861217238e-05,-2.2758763030448438e-20,9.272782149612884e-36,8.470329472543003e-22,-3.645638606701214e-21,1.1472824864025526e-35,4.235164736271502e-22,-2.975702484044781e-21,-5.538292269759505e-22,2.6573128707241267e-05,-1.2242122816181358e-20,0.00017715420108288527,2.329555154920707e-19,2.3195671105828425e-20,3.21897109192812e-20,-0.00021258502965793014,-4.3831689967248325e-20,3.4073368791229583e-22,4.2289833484359347e-22,-5.419443015893436e-21,1.0560489268564844e-21,2.0001396595745778e-22,-1.0881115863879692e-20,4.27594367014389e-22,-1.2242122816181358e-20,3.543083948898129e-05,6.0,8.0,7.0,8.0,0.018363509327173233,-0.0035209397319704294,-0.0027842733543366194,-0.0031090560369193554,-0.0027842733543366194,0.00019929847621824592,0.00021258502965793014,0.00023915816564112902,0.00021258502965793014,0.00012400794366840273,0.00018601190822664648,0.0001653439103392884,0.0001550099259475246,0.00018601190822664648,0.00012400794366840273,-0.0035209397319704294,0.002504517324268818,0.00021258502965793014,0.00023915816564112902,0.00021258502965793014,-0.00029894770705141127,-8.50340147735551e-05,-9.566326480126008e-05,-8.50340147735551e-05,1.2944767833222832e-19,7.432192600629665e-20,8.646359969242823e-20,1.9175337776216588e-19,1.0071040926341606e-19,1.3372218584638438e-19,-0.0027842733543366194,0.00021258502965793014,0.0014155464014038444,0.00018601190822664648,0.0001653439103392884,2.2618276743163964e-19,-6.073858094168827e-05,-3.6240191427928897e-20,-1.3552527156068805e-20,-0.00012400794366840273,-5.3146257414482534e-05,-4.724111931864172e-05,-3.427980245674663e-20,1.4041403822784716e-20,1.1251154787787862e-20,-0.0031090560369193554,0.00023915816564112902,0.00018601190822664648,0.0018424036679789424,0.00018601190822664648,3.238156447637036e-19,-1.8460470842507216e-20,-7.97193861217238e-05,-1.2941545221566857e-20,3.3881317890172014e-21,-6.200397183420137e-05,4.235164736271502e-21,-0.00018601190822664648,-6.200397183420137e-05,2.2644177512977103e-20,-0.0027842733543366194,0.00021258502965793014,0.0001653439103392884,0.00018601190822664648,0.0014155464014038444,2.2618276743163964e-19,-1.7865792605566945e-20,-2.2442948057515107e-20,-6.073858094168827e-05,2.7388818964586193e-22,-2.905079111970582e-21,-4.724111931864172e-05,-0.0,-5.3146257414482534e-05,-0.00012400794366840273,0.00019929847621824592,-0.00029894770705141127,2.2618276743163964e-19,3.238156447637036e-19,2.2618276743163964e-19,5.9789541410282254e-05,3.540251919252837e-20,1.2083819510866888e-20,3.540251919252837e-20,-2.950210094269411e-20,-1.7701259596264185e-20,-1.5734453512986098e-20,-3.8352729933032635e-20,-1.7701259596264185e-20,-2.950210094269411e-20,0.00021258502965793014,-8.50340147735551e-05,-6.073858094168827e-05,-1.8460470842507216e-20,-1.7865792605566945e-20,3.540251919252837e-20,2.4295432012877427e-05,8.091139863108465e-21,7.232137030779155e-21,5.082197683525802e-21,-4.235164736271502e-22,-8.470329472543003e-22,-4.385724898484684e-23,-1.1354177707778284e-35,3.6321640041593743e-22,0.00023915816564112902,-9.566326480126008e-05,-3.6240191427928897e-20,-7.97193861217238e-05,-2.2442948057515107e-20,1.2083819510866888e-20,8.091139863108465e-21,3.188775372109376e-05,9.460724775297534e-21,-1.7648376450081846e-24,5.249174268368574e-21,7.948035521922227e-23,-5.962548731724052e-37,-4.235164736271502e-22,-2.8593847542433257e-23,0.00021258502965793014,-8.50340147735551e-05,-1.3552527156068805e-20,-1.2941545221566857e-20,-6.073858094168827e-05,3.540251919252837e-20,7.232137030779155e-21,9.460724775297534e-21,2.4295432012877427e-05,8.012255741583184e-23,-2.3098456305490056e-23,-1.4471889333462304e-21,4.679076078954325e-23,-3.1238750482877852e-21,3.600811314393879e-21,0.00012400794366840273,1.2944767833222832e-19,-0.00012400794366840273,3.3881317890172014e-21,2.7388818964586193e-22,-2.950210094269411e-20,5.082197683525802e-21,-1.7648376450081846e-24,8.012255741583184e-23,1.7715419744490646e-05,-1.6940658945086007e-21,-8.470329472543003e-22,-2.943658827856959e-22,9.215875710446734e-36,-2.419246564824611e-22,0.00018601190822664648,7.432192600629665e-20,-5.3146257414482534e-05,-6.200397183420137e-05,-2.905079111970582e-21,-1.7701259596264185e-20,-4.235164736271502e-22,5.249174268368574e-21,-2.3098456305490056e-23,-1.6940658945086007e-21,1.7715419744490646e-05,1.6745678782606298e-21,1.1989708329143374e-20,-8.470329472543003e-22,-4.7159348158898714e-23,0.0001653439103392884,8.646359969242823e-20,-4.724111931864172e-05,4.235164736271502e-21,-4.724111931864172e-05,-1.5734453512986098e-20,-8.470329472543003e-22,7.948035521922227e-23,-1.4471889333462304e-21,-8.470329472543003e-22,1.6745678782606298e-21,1.3497462532541249e-05,1.8545415586729806e-22,-3.2858015096984007e-21,-2.9102863512515098e-21,0.0001550099259475246,1.9175337776216588e-19,-3.427980245674663e-20,-0.00018601190822664648,-0.0,-3.8352729933032635e-20,-4.385724898484684e-23,-5.962548731724052e-37,4.679076078954325e-23,-2.943658827856959e-22,1.1989708329143374e-20,1.8545415586729806e-22,3.100198591710068e-05,-1.075080240371152e-21,1.9643315591470408e-22,0.00018601190822664648,1.0071040926341606e-19,1.4041403822784716e-20,-6.200397183420137e-05,-5.3146257414482534e-05,-1.7701259596264185e-20,-1.1354177707778284e-35,-4.235164736271502e-22,-3.1238750482877852e-21,9.215875710446734e-36,-8.470329472543003e-22,-3.2858015096984007e-21,-1.075080240371152e-21,1.7715419744490646e-05,-6.766986068918024e-21,0.00012400794366840273,1.3372218584638438e-19,1.1251154787787862e-20,2.2644177512977103e-20,-0.00012400794366840273,-2.950210094269411e-20,3.6321640041593743e-22,-2.8593847542433257e-23,3.600811314393879e-21,-2.419246564824611e-22,-4.7159348158898714e-23,-2.9102863512515098e-21,1.9643315591470408e-22,-6.766986068918024e-21,1.7715419744490646e-05,6.0,8.0,8.0,3.0,0.036389440298080444,-0.0076574902050197124,-0.006062610074877739,-0.006062610074877739,-0.0127728171646595,0.0004650297632906586,0.0004960317746736109,0.0004960317746736109,0.0011160714784637094,0.00028935185400769114,0.00038580247201025486,0.0008680555620230734,0.00028935185400769114,0.0008680555620230734,0.0013020833721384406,-0.0076574902050197124,0.0056206597946584225,0.0004960317746736109,0.0004960317746736109,0.0011160714784637094,-0.0006975446594879031,-0.00019841270113829523,-0.00019841270113829523,-0.00044642857392318547,2.9717195043821746e-19,1.8105835895685858e-19,4.061092589671901e-19,3.0918561146220792e-19,4.1302940027302046e-19,3.0977204632735622e-18,-0.006062610074877739,0.0004960317746736109,0.003178933635354042,0.00038580247201025486,0.0008680555620230734,6.303147286927042e-19,-0.00014172335795592517,-3.4816061062925345e-20,-9.440671784674232e-20,-0.00028935185400769114,-0.00011022927355952561,-0.00024801588733680546,1.8272133772373682e-20,-0.0,-2.7991595145490035e-33,-0.006062610074877739,0.0004960317746736109,0.00038580247201025486,0.003178933635354042,0.0008680555620230734,6.303147286927042e-19,-4.947466117612253e-20,-0.00014172335795592517,-9.440671784674232e-20,-1.3552527156068805e-20,-0.00011022927355952561,-2.2871975298855965e-20,-0.00028935185400769114,-0.00024801588733680546,-2.7991595145490035e-33,-0.0127728171646595,0.0011160714784637094,0.0008680555620230734,0.0008680555620230734,0.02579365111887455,1.3526712917102557e-18,-1.0033594847752242e-19,-9.539762205944403e-20,-0.0011160714784637094,6.94825757066987e-22,-1.7787691892340307e-20,-0.0008680555620230734,-0.0,-0.0008680555620230734,-0.0078125,0.0004650297632906586,-0.0006975446594879031,6.303147286927042e-19,6.303147286927042e-19,1.3526712917102557e-18,0.00013950893480796367,2.5062735686221382e-20,2.5062735686221382e-20,1.8586323141532891e-19,-6.883823553295292e-20,-3.6713723248047095e-20,-8.26058813470738e-20,-6.883823553295292e-20,-8.26058813470738e-20,-6.195441133342278e-19,0.0004960317746736109,-0.00019841270113829523,-0.00014172335795592517,-4.947466117612253e-20,-1.0033594847752242e-19,2.5062735686221382e-20,5.668934318237007e-05,1.672539326860475e-20,3.7762688431166636e-20,1.3552527156068805e-20,2.541098841762901e-21,1.6940658945086007e-21,-1.6280516410661035e-22,-2.8662263001064003e-35,-1.1130090200589095e-34,0.0004960317746736109,-0.00019841270113829523,-3.4816061062925345e-20,-0.00014172335795592517,-9.539762205944403e-20,2.5062735686221382e-20,1.672539326860475e-20,5.668934318237007e-05,3.7762688431166636e-20,-1.184656528959657e-22,-1.8238805421491828e-21,2.831155398304428e-22,1.0164395367051604e-20,-0.0,-1.1130090200589095e-34,0.0011160714784637094,-0.00044642857392318547,-9.440671784674232e-20,-9.440671784674232e-20,-0.0011160714784637094,1.8586323141532891e-19,3.7762688431166636e-20,3.7762688431166636e-20,0.00044642857392318547,-8.425943506694157e-35,-4.890056499420716e-35,-1.0833355937178202e-34,-8.275480229788904e-35,-1.0983819214083454e-34,-8.253985213558165e-34,0.00028935185400769114,2.9717195043821746e-19,-0.00028935185400769114,-1.3552527156068805e-20,6.94825757066987e-22,-6.883823553295292e-20,1.3552527156068805e-20,-1.184656528959657e-22,-8.425943506694157e-35,4.13359775848221e-05,1.6940658945086007e-21,6.776263578034403e-21,4.1814941743771194e-22,1.2540213051643956e-35,3.0570317051329716e-34,0.00038580247201025486,1.8105835895685858e-19,-0.00011022927355952561,-0.00011022927355952561,-1.7787691892340307e-20,-3.6713723248047095e-20,2.541098841762901e-21,-1.8238805421491828e-21,-4.890056499420716e-35,1.6940658945086007e-21,3.149408075842075e-05,5.082197683525802e-21,-6.174038933591719e-21,-0.0,1.6304168634865034e-34,0.0008680555620230734,4.061092589671901e-19,-0.00024801588733680546,-2.2871975298855965e-20,-0.0008680555620230734,-8.26058813470738e-20,1.6940658945086007e-21,2.831155398304428e-22,-1.0833355937178202e-34,6.776263578034403e-21,5.082197683525802e-21,0.00024801588733680546,5.780275415544923e-22,-0.0,3.668438000241818e-34,0.00028935185400769114,3.0918561146220792e-19,1.8272133772373682e-20,-0.00028935185400769114,-0.0,-6.883823553295292e-20,-1.6280516410661035e-22,1.0164395367051604e-20,-8.275480229788904e-35,4.1814941743771194e-22,-6.174038933591719e-21,5.780275415544923e-22,4.13359775848221e-05,3.076258097622683e-36,3.0570317051329716e-34,0.0008680555620230734,4.1302940027302046e-19,-0.0,-0.00024801588733680546,-0.0008680555620230734,-8.26058813470738e-20,-2.8662263001064003e-35,-0.0,-1.0983819214083454e-34,1.2540213051643956e-35,-0.0,-0.0,3.076258097622683e-36,0.00024801588733680546,3.668438000241818e-34,0.0013020833721384406,3.0977204632735622e-18,-2.7991595145490035e-33,-2.7991595145490035e-33,-0.0078125,-6.195441133342278e-19,-1.1130090200589095e-34,-1.1130090200589095e-34,-8.253985213558165e-34,3.0570317051329716e-34,1.6304168634865034e-34,3.668438000241818e-34,3.0570317051329716e-34,3.668438000241818e-34,0.00390625,6.0,8.0,8.0,4.0,0.029142897576093674,-0.0059105283580720425,-0.004677166230976582,-0.004677166230976582,-0.008054315112531185,0.00034877232974395156,0.00037202381645329297,0.00037202381645329297,0.0006696428754366934,0.00021701389050576836,0.00028935185400769114,0.0005208333604969084,0.00021701389050576836,0.0005208333604969084,0.0006510416860692203,-0.0059105283580720425,0.0042824591509997845,0.00037202381645329297,0.00037202381645329297,0.0006696428754366934,-0.0005231584655120969,-0.00014880952949170023,-0.00014880952949170023,-0.0002678571327123791,3.477065337094016e-19,1.5200429910048412e-19,2.416850109902842e-19,3.4230292465911065e-19,2.4142894689191076e-19,1.0842021724855044e-18,-0.004677166230976582,0.00037202381645329297,0.002421402605250478,0.00028935185400769114,0.0005208333604969084,6.939596076849709e-19,-0.00010629251482896507,9.8813961999819e-21,-0.0,-0.00021701389050576836,-8.26719551696442e-05,-0.00014880952949170023,2.317109479434765e-20,3.3881317890172014e-21,-1.438173257192913e-33,-0.004677166230976582,0.00037202381645329297,0.00028935185400769114,0.002421402605250478,0.0005208333604969084,6.939596076849709e-19,8.439293235907359e-21,-0.00010629251482896507,-0.0,2.0328790734103208e-20,-8.26719551696442e-05,-7.156366801993157e-21,-0.00021701389050576836,-0.00014880952949170023,-1.438173257192913e-33,-0.008054315112531185,0.0006696428754366934,0.0005208333604969084,0.0005208333604969084,0.00992683507502079,9.974659780071488e-19,-6.3887028038656e-21,-6.132617298962629e-21,-0.00044642857392318547,2.109477371381795e-21,-1.7119377410991397e-34,-0.00034722223062999547,1.3552527156068805e-20,-0.00034722223062999547,-0.001953125,0.00034877232974395156,-0.0005231584655120969,6.939596076849709e-19,6.939596076849709e-19,9.974659780071488e-19,0.00010463169746799394,-6.473603361780078e-20,-6.473603361780078e-20,-0.0,-5.162867503412756e-20,-2.753529485941602e-20,-4.9563528162009426e-20,-5.162867503412756e-20,-4.9563528162009426e-20,-2.168404344971009e-19,0.00037202381645329297,-0.00014880952949170023,-0.00010629251482896507,8.439293235907359e-21,-6.3887028038656e-21,-6.473603361780078e-20,4.251700738677755e-05,-8.742262574564915e-23,-0.0,-2.541098841762901e-20,-1.6940658945086007e-21,1.6940658945086007e-21,-3.286596227106982e-22,1.3127778898226258e-22,1.3416001973768713e-34,0.00037202381645329297,-0.00014880952949170023,9.8813961999819e-21,-0.00010629251482896507,-6.132617298962629e-21,-6.473603361780078e-20,-8.742262574564915e-23,4.251700738677755e-05,-0.0,-1.7848787036369787e-22,-2.399599056279657e-21,5.811047301735784e-23,-2.371692252312041e-20,1.6940658945086007e-21,1.3416001973768713e-34,0.0006696428754366934,-0.0002678571327123791,-0.0,-0.0,-0.00044642857392318547,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00021701389050576836,3.477065337094016e-19,-0.00021701389050576836,2.0328790734103208e-20,2.109477371381795e-21,-5.162867503412756e-20,-2.541098841762901e-20,-1.7848787036369787e-22,-0.0,3.100198591710068e-05,-3.3881317890172014e-21,0.0,-1.1474054315425152e-21,2.6802547637245524e-22,1.0699611312348511e-34,0.00028935185400769114,1.5200429910048412e-19,-8.26719551696442e-05,-8.26719551696442e-05,-1.7119377410991397e-34,-2.753529485941602e-20,-1.6940658945086007e-21,-2.399599056279657e-21,-0.0,-3.3881317890172014e-21,2.362055965932086e-05,1.6940658945086007e-21,-3.954260581817672e-21,-1.6940658945086007e-21,5.706459136997132e-35,0.0005208333604969084,2.416850109902842e-19,-0.00014880952949170023,-7.156366801993157e-21,-0.00034722223062999547,-4.9563528162009426e-20,1.6940658945086007e-21,5.811047301735784e-23,-0.0,0.0,1.6940658945086007e-21,9.920635056914762e-05,1.1864221889921589e-22,1.2237908456168403e-22,1.0271626905772319e-34,0.00021701389050576836,3.4230292465911065e-19,2.317109479434765e-20,-0.00021701389050576836,1.3552527156068805e-20,-5.162867503412756e-20,-3.286596227106982e-22,-2.371692252312041e-20,-0.0,-1.1474054315425152e-21,-3.954260581817672e-21,1.1864221889921589e-22,3.100198591710068e-05,-3.164387309308885e-21,1.0699611312348511e-34,0.0005208333604969084,2.4142894689191076e-19,3.3881317890172014e-21,-0.00014880952949170023,-0.00034722223062999547,-4.9563528162009426e-20,1.3127778898226258e-22,1.6940658945086007e-21,-0.0,2.6802547637245524e-22,-1.6940658945086007e-21,1.2237908456168403e-22,-3.164387309308885e-21,9.920635056914762e-05,1.0271626905772319e-34,0.0006510416860692203,1.0842021724855044e-18,-1.438173257192913e-33,-1.438173257192913e-33,-0.001953125,-2.168404344971009e-19,1.3416001973768713e-34,1.3416001973768713e-34,-0.0,1.0699611312348511e-34,5.706459136997132e-35,1.0271626905772319e-34,1.0699611312348511e-34,1.0271626905772319e-34,0.0006510416860692203,6.0,8.0,8.0,5.0,0.024351025000214577,-0.004817708395421505,-0.003811177331954241,-0.003811177331954241,-0.0055555556900799274,0.00027901786961592734,0.00029761905898340046,0.00029761905898340046,0.00044642857392318547,0.00017361111531499773,0.00023148147738538682,0.00034722223062999547,0.00017361111531499773,0.00034722223062999547,0.00037202381645329297,-0.004817708395421505,0.0034616815391927958,0.00029761905898340046,0.00029761905898340046,0.00044642857392318547,-0.0004185267898719758,-0.0001190476177725941,-0.0001190476177725941,-0.00017857142665889114,2.7811471725136725e-19,1.219996406992243e-19,1.6842400228072364e-19,2.725847305131147e-19,1.652117626941476e-19,5.310378040437969e-19,-0.003811177331954241,0.00029761905898340046,0.0019569634459912777,0.00023148147738538682,0.00034722223062999547,5.358817737109074e-19,-8.50340147735551e-05,1.0164395367051604e-20,-3.481297233292246e-34,-0.00017361111531499773,-6.613756704609841e-05,-9.920635056914762e-05,2.374888529897734e-20,-0.0,-6.799408759218992e-34,-0.003811177331954241,0.00029761905898340046,0.00023148147738538682,0.0019569634459912777,0.00034722223062999547,5.358817737109074e-19,4.95728937206246e-21,-8.50340147735551e-05,-3.481297233292246e-34,1.3552527156068805e-20,-6.613756704609841e-05,-1.6940658945086007e-21,-0.00017361111531499773,-9.920635056914762e-05,-6.799408759218992e-34,-0.0055555556900799274,0.00044642857392318547,0.00034722223062999547,0.00034722223062999547,0.005009920801967382,7.920723790192864e-19,2.964615315390051e-21,2.4762447313438326e-22,-0.00022321428696159273,7.167816468011054e-21,-2.964615315390051e-21,-0.00017361111531499773,-0.0,-0.00017361111531499773,-0.0007440476329065859,0.00027901786961592734,-0.0004185267898719758,5.358817737109074e-19,5.358817737109074e-19,7.920723790192864e-19,8.370535942958668e-05,-4.143106319560312e-20,-4.143106319560312e-20,-5.437827185786784e-20,-4.13029406735369e-20,-2.2028234918180537e-20,-3.3042353185064373e-20,-4.13029406735369e-20,-3.3042353185064373e-20,-1.0620756080875938e-19,0.00029761905898340046,-0.0001190476177725941,-8.50340147735551e-05,4.95728937206246e-21,2.964615315390051e-21,-4.143106319560312e-20,3.40136066370178e-05,-6.28705165174466e-23,2.691523617962097e-35,-2.0328790734103208e-20,-8.470329472543003e-22,-8.470329472543003e-22,-2.424242515600684e-22,7.722761121513897e-36,5.256882483358643e-35,0.00029761905898340046,-0.0001190476177725941,1.0164395367051604e-20,-8.50340147735551e-05,2.4762447313438326e-22,-4.143106319560312e-20,-6.28705165174466e-23,3.40136066370178e-05,2.691523617962097e-35,-1.283606444636277e-22,-2.541098841762901e-21,-7.074985487629857e-23,-1.8634724839594607e-20,-0.0,5.256882483358643e-35,0.00044642857392318547,-0.00017857142665889114,-3.481297233292246e-34,-3.481297233292246e-34,-0.00022321428696159273,-5.437827185786784e-20,2.691523617962097e-35,2.691523617962097e-35,8.928571332944557e-05,2.683200452150928e-35,1.431040250713359e-35,2.1465603043235571e-35,2.683200452150928e-35,2.1465603043235571e-35,6.899658223534978e-35,0.00017361111531499773,2.7811471725136725e-19,-0.00017361111531499773,1.3552527156068805e-20,7.167816468011054e-21,-4.13029406735369e-20,-2.0328790734103208e-20,-1.283606444636277e-22,2.683200452150928e-35,2.4801587642286904e-05,-0.0,-1.6940658945086007e-21,-1.0569848566779876e-21,-1.3194649657688924e-36,5.240625878623126e-35,0.00023148147738538682,1.219996406992243e-19,-6.613756704609841e-05,-6.613756704609841e-05,-2.964615315390051e-21,-2.2028234918180537e-20,-8.470329472543003e-22,-2.541098841762901e-21,1.431040250713359e-35,-0.0,1.889644772745669e-05,8.470329472543003e-22,-4.243155430235735e-21,-0.0,2.7950004112018153e-35,0.00034722223062999547,1.6842400228072364e-19,-9.920635056914762e-05,-1.6940658945086007e-21,-0.00017361111531499773,-3.3042353185064373e-20,-8.470329472543003e-22,-7.074985487629857e-23,2.1465603043235571e-35,-1.6940658945086007e-21,8.470329472543003e-22,4.960317528457381e-05,-1.444476135356484e-22,-0.0,4.19250047330976e-35,0.00017361111531499773,2.725847305131147e-19,2.374888529897734e-20,-0.00017361111531499773,-0.0,-4.13029406735369e-20,-2.424242515600684e-22,-1.8634724839594607e-20,2.683200452150928e-35,-1.0569848566779876e-21,-4.243155430235735e-21,-1.444476135356484e-22,2.4801587642286904e-05,1.230503274922314e-36,5.240625878623126e-35,0.00034722223062999547,1.652117626941476e-19,-0.0,-9.920635056914762e-05,-0.00017361111531499773,-3.3042353185064373e-20,7.722761121513897e-36,-0.0,2.1465603043235571e-35,-1.3194649657688924e-36,-0.0,-0.0,1.230503274922314e-36,4.960317528457381e-05,4.19250047330976e-35,0.00037202381645329297,5.310378040437969e-19,-6.799408759218992e-34,-6.799408759218992e-34,-0.0007440476329065859,-1.0620756080875938e-19,5.256882483358643e-35,5.256882483358643e-35,6.899658223534978e-35,5.240625878623126e-35,2.7950004112018153e-35,4.19250047330976e-35,5.240625878623126e-35,4.19250047330976e-35,0.00018601190822664648,6.0,8.0,8.0,6.0,0.020931752398610115,-0.004067903384566307,-0.0032173169311136007,-0.0032173169311136007,-0.004067903384566307,0.0002325148816453293,0.00024801588733680546,0.00024801588733680546,0.0003188775444868952,0.00014467592700384557,0.00019290123600512743,0.00024801588733680546,0.00014467592700384557,0.00024801588733680546,0.0002325148816453293,-0.004067903384566307,0.0029059930238872766,0.00024801588733680546,0.00024801588733680546,0.0003188775444868952,-0.00034877232974395156,-9.920635056914762e-05,-9.920635056914762e-05,-0.00012755101488437504,1.484278544751404e-19,9.456339102463869e-20,7.728109356187121e-20,1.5443587405926617e-19,8.024570887726127e-20,1.7148095163198992e-19,-0.0032173169311136007,0.00024801588733680546,0.0016426130896434188,0.00019290123600512743,0.00024801588733680546,3.328586158646806e-19,-7.086167897796258e-05,-1.6594256060946686e-20,-6.473603361780078e-20,-0.00014467592700384557,-5.5114636779762805e-05,-7.086167897796258e-05,1.1427471081851667e-20,-1.801465603525808e-20,-7.3755249125561e-20,-0.0032173169311136007,0.00024801588733680546,0.00019290123600512743,0.0016426130896434188,0.00024801588733680546,3.328586158646806e-19,-2.2167496913534948e-20,-7.086167897796258e-05,-6.473603361780078e-20,-0.0,-5.5114636779762805e-05,-2.5716636500728756e-20,-0.00014467592700384557,-7.086167897796258e-05,-7.3755249125561e-20,-0.004067903384566307,0.0003188775444868952,0.00024801588733680546,0.00024801588733680546,0.0029059930238872766,4.66164768637042e-19,-2.9937963733198467e-20,-2.6973348417808416e-20,-0.00012755101488437504,-2.8478713735078357e-21,-1.7727508444325322e-21,-9.920635056914762e-05,-6.776263578034403e-21,-9.920635056914762e-05,-0.00034877232974395156,0.0002325148816453293,-0.00034877232974395156,3.328586158646806e-19,3.328586158646806e-19,4.66164768637042e-19,6.975446740398183e-05,1.2531367843110691e-20,1.2531367843110691e-20,1.3149507030564176e-21,-3.441911776647646e-20,-1.8356861624023548e-20,-2.360167946168558e-20,-3.441911776647646e-20,-2.360167946168558e-20,-6.084807794364842e-20,0.00024801588733680546,-9.920635056914762e-05,-7.086167897796258e-05,-2.2167496913534948e-20,-2.9937963733198467e-20,1.2531367843110691e-20,2.8344671591185033e-05,8.384824523481736e-21,1.0789339205564653e-20,6.776263578034403e-21,4.235164736271502e-22,8.470329472543003e-22,-3.656803222564175e-23,-1.0436488015446907e-36,-4.905023308692273e-38,0.00024801588733680546,-9.920635056914762e-05,-1.6594256060946686e-20,-7.086167897796258e-05,-2.6973348417808416e-20,1.2531367843110691e-20,8.384824523481736e-21,2.8344671591185033e-05,1.0789339205564653e-20,-1.4054696141659464e-23,-1.2175402904571035e-21,-9.4039548065783e-37,5.082197683525802e-21,-0.0,1.5411126262392557e-36,0.0003188775444868952,-0.00012755101488437504,-6.473603361780078e-20,-6.473603361780078e-20,-0.00012755101488437504,1.3149507030564176e-21,1.0789339205564653e-20,1.0789339205564653e-20,5.10204081365373e-05,1.504632769052528e-36,-5.64237288394698e-37,1.510507569558408e-20,-0.0,1.510507569558408e-20,5.310378040437969e-20,0.00014467592700384557,1.484278544751404e-19,-0.00014467592700384557,-0.0,-2.8478713735078357e-21,-3.441911776647646e-20,6.776263578034403e-21,-1.4054696141659464e-23,1.504632769052528e-36,2.066798879241105e-05,-8.470329472543003e-22,1.6940658945086007e-21,1.4542570008392658e-22,1.1660903960157092e-35,3.159728815010309e-35,0.00019290123600512743,9.456339102463869e-20,-5.5114636779762805e-05,-5.5114636779762805e-05,-1.7727508444325322e-21,-1.8356861624023548e-20,4.235164736271502e-22,-1.2175402904571035e-21,-5.64237288394698e-37,-8.470329472543003e-22,1.5747040379210375e-05,1.3535331452460827e-21,-3.553466129538372e-21,-8.470329472543003e-22,1.7796958642716138e-35,0.00024801588733680546,7.728109356187121e-20,-7.086167897796258e-05,-2.5716636500728756e-20,-9.920635056914762e-05,-2.360167946168558e-20,8.470329472543003e-22,-9.4039548065783e-37,1.510507569558408e-20,1.6940658945086007e-21,1.3535331452460827e-21,2.8344671591185033e-05,1.1566864412091309e-35,8.391708540259252e-21,2.950210094269411e-20,0.00014467592700384557,1.5443587405926617e-19,1.1427471081851667e-20,-0.00014467592700384557,-6.776263578034403e-21,-3.441911776647646e-20,-3.656803222564175e-23,5.082197683525802e-21,-0.0,1.4542570008392658e-22,-3.553466129538372e-21,1.1566864412091309e-35,2.066798879241105e-05,3.915529657072983e-22,3.1387464130396863e-35,0.00024801588733680546,8.024570887726127e-20,-1.801465603525808e-20,-7.086167897796258e-05,-9.920635056914762e-05,-2.360167946168558e-20,-1.0436488015446907e-36,-0.0,1.510507569558408e-20,1.1660903960157092e-35,-8.470329472543003e-22,8.391708540259252e-21,3.915529657072983e-22,2.8344671591185033e-05,2.950210094269411e-20,0.0002325148816453293,1.7148095163198992e-19,-7.3755249125561e-20,-7.3755249125561e-20,-0.00034877232974395156,-6.084807794364842e-20,-4.905023308692273e-38,1.5411126262392557e-36,5.310378040437969e-20,3.159728815010309e-35,1.7796958642716138e-35,2.950210094269411e-20,3.1387464130396863e-35,2.950210094269411e-20,6.975446740398183e-05,6.0,8.0,8.0,7.0,0.018363509327173233,-0.0035209397319704294,-0.0027842733543366194,-0.0027842733543366194,-0.0031090560369193554,0.00019929847621824592,0.00021258502965793014,0.00021258502965793014,0.00023915816564112902,0.00012400794366840273,0.0001653439103392884,0.00018601190822664648,0.00012400794366840273,0.00018601190822664648,0.0001550099259475246,-0.0035209397319704294,0.002504517324268818,0.00021258502965793014,0.00021258502965793014,0.00023915816564112902,-0.00029894770705141127,-8.50340147735551e-05,-8.50340147735551e-05,-9.566326480126008e-05,1.29385665635681e-19,8.401296726781478e-20,7.356974741084745e-20,1.2928621009171856e-19,7.022600549392109e-20,1.9027308635721396e-19,-0.0027842733543366194,0.00021258502965793014,0.0014155464014038444,0.0001653439103392884,0.00018601190822664648,2.2618276743163964e-19,-6.073858094168827e-05,-1.5921491651063982e-20,-3.7269449679189215e-20,-0.00012400794366840273,-4.724111931864172e-05,-5.3146257414482534e-05,9.772610640321239e-21,-1.1396298328103209e-20,-3.6487573361044804e-20,-0.0027842733543366194,0.00021258502965793014,0.0001653439103392884,0.0014155464014038444,0.00018601190822664648,2.2618276743163964e-19,-1.6863503350332696e-20,-6.073858094168827e-05,-3.550782962426403e-20,3.3881317890172014e-21,-4.724111931864172e-05,-1.2705494208814505e-20,-0.00012400794366840273,-5.3146257414482534e-05,-3.0323698086112404e-20,-0.0031090560369193554,0.00023915816564112902,0.00018601190822664648,0.00018601190822664648,0.0018424036679789424,3.238156447637036e-19,-1.818926223034066e-20,-2.0453258798072564e-20,-7.97193861217238e-05,6.088199961890519e-21,-1.7806081262404742e-22,-6.200397183420137e-05,3.3881317890172014e-21,-6.200397183420137e-05,-0.00018601190822664648,0.00019929847621824592,-0.00029894770705141127,2.2618276743163964e-19,2.2618276743163964e-19,3.238156447637036e-19,5.9789541410282254e-05,3.540251919252837e-20,3.540251919252837e-20,1.2083819510866888e-20,-2.950210094269411e-20,-1.5734453512986098e-20,-1.7701259596264185e-20,-2.950210094269411e-20,-1.7701259596264185e-20,-3.8352729933032635e-20,0.00021258502965793014,-8.50340147735551e-05,-6.073858094168827e-05,-1.6863503350332696e-20,-1.818926223034066e-20,3.540251919252837e-20,2.4295432012877427e-05,7.199681500846385e-21,8.139127647746478e-21,5.082197683525802e-21,-8.470329472543003e-22,-4.235164736271502e-22,2.4155486373364244e-22,-9.137378602640877e-36,-1.0403830832901069e-22,0.00021258502965793014,-8.50340147735551e-05,-1.5921491651063982e-20,-6.073858094168827e-05,-2.0453258798072564e-20,3.540251919252837e-20,7.199681500846385e-21,2.4295432012877427e-05,8.025255411994757e-21,1.3859994226198246e-23,-6.0015598609193e-22,-2.736846887758639e-23,5.082197683525802e-21,4.235164736271502e-22,-1.5329198121707532e-22,0.00023915816564112902,-9.566326480126008e-05,-3.7269449679189215e-20,-3.550782962426403e-20,-7.97193861217238e-05,1.2083819510866888e-20,8.139127647746478e-21,8.025255411994757e-21,3.188775372109376e-05,9.620993038463601e-23,-9.184681013761825e-23,5.504882533675781e-21,-1.3627997491493074e-22,5.599329757523144e-21,7.970723792645108e-22,0.00012400794366840273,1.29385665635681e-19,-0.00012400794366840273,3.3881317890172014e-21,6.088199961890519e-21,-2.950210094269411e-20,5.082197683525802e-21,1.3859994226198246e-23,9.620993038463601e-23,1.7715419744490646e-05,-8.470329472543003e-22,-1.6940658945086007e-21,-2.652863746046851e-22,8.275480229788904e-36,-2.496544078810214e-22,0.0001653439103392884,8.401296726781478e-20,-4.724111931864172e-05,-4.724111931864172e-05,-1.7806081262404742e-22,-1.5734453512986098e-20,-8.470329472543003e-22,-6.0015598609193e-22,-9.184681013761825e-23,-8.470329472543003e-22,1.3497462532541249e-05,5.144822586622686e-22,-2.3429341550938985e-21,-0.0,-2.143092236544426e-22,0.00018601190822664648,7.356974741084745e-20,-5.3146257414482534e-05,-1.2705494208814505e-20,-6.200397183420137e-05,-1.7701259596264185e-20,-4.235164736271502e-22,-2.736846887758639e-23,5.504882533675781e-21,-1.6940658945086007e-21,5.144822586622686e-22,1.7715419744490646e-05,-5.58772898362113e-23,3.798765974735475e-21,1.3129330568694166e-20,0.00012400794366840273,1.2928621009171856e-19,9.772610640321239e-21,-0.00012400794366840273,3.3881317890172014e-21,-2.950210094269411e-20,2.4155486373364244e-22,5.082197683525802e-21,-1.3627997491493074e-22,-2.652863746046851e-22,-2.3429341550938985e-21,-5.58772898362113e-23,1.7715419744490646e-05,-1.398403503047956e-22,-8.938513497299625e-22,0.00018601190822664648,7.022600549392109e-20,-1.1396298328103209e-20,-5.3146257414482534e-05,-6.200397183420137e-05,-1.7701259596264185e-20,-9.137378602640877e-36,4.235164736271502e-22,5.599329757523144e-21,8.275480229788904e-36,-0.0,3.798765974735475e-21,-1.398403503047956e-22,1.7715419744490646e-05,1.2741580770830698e-20,0.0001550099259475246,1.9027308635721396e-19,-3.6487573361044804e-20,-3.0323698086112404e-20,-0.00018601190822664648,-3.8352729933032635e-20,-1.0403830832901069e-22,-1.5329198121707532e-22,7.970723792645108e-22,-2.496544078810214e-22,-2.143092236544426e-22,1.3129330568694166e-20,-8.938513497299625e-22,1.2741580770830698e-20,3.100198591710068e-05,6.0,8.0,8.0,8.0,0.01636129803955555,-0.0031040736939758062,-0.0024543236941099167,-0.0024543236941099167,-0.0024543236941099167,0.00017438616487197578,0.00018601190822664648,0.00018601190822664648,0.00018601190822664648,0.00010850694525288418,0.00014467592700384557,0.00014467592700384557,0.00010850694525288418,0.00014467592700384557,0.00010850694525288418,-0.0031040736939758062,0.002200753428041935,0.00018601190822664648,0.00018601190822664648,0.00018601190822664648,-0.00026157923275604844,-7.440476474585012e-05,-7.440476474585012e-05,-7.440476474585012e-05,1.7682611520212516e-19,7.568692265102546e-20,7.615124885565474e-20,1.6999589101381874e-19,7.661565907081498e-20,1.7065299553761263e-19,-0.0024543236941099167,0.00018601190822664648,0.0012437701225280762,0.00014467592700384557,0.00014467592700384557,3.579939463431763e-19,-5.3146257414482534e-05,5.226503541912226e-21,6.776263578034403e-21,-0.00010850694525288418,-4.13359775848221e-05,-4.13359775848221e-05,1.1539120269707152e-20,7.951744581815508e-21,1.4703212936312494e-20,-0.0024543236941099167,0.00018601190822664648,0.00014467592700384557,0.0012437701225280762,0.00014467592700384557,3.579939463431763e-19,2.4571118882752194e-22,-5.3146257414482534e-05,6.115931515043786e-21,3.3881317890172014e-21,-4.13359775848221e-05,3.3881317890172014e-21,-0.00010850694525288418,-4.13359775848221e-05,1.3355035361441069e-20,-0.0024543236941099167,0.00018601190822664648,0.00014467592700384557,0.00014467592700384557,0.0012437701225280762,3.579939463431763e-19,1.279445146563251e-21,1.279445146563251e-21,-5.3146257414482534e-05,3.093095488058038e-21,-2.756474125733772e-22,-4.13359775848221e-05,3.3881317890172014e-21,-4.13359775848221e-05,-0.00010850694525288418,0.00017438616487197578,-0.00026157923275604844,3.579939463431763e-19,3.579939463431763e-19,3.579939463431763e-19,5.231584873399697e-05,-3.236801680890039e-20,-3.236801680890039e-20,-3.236801680890039e-20,-2.581433751706378e-20,-1.376764742970801e-20,-1.376764742970801e-20,-2.581433751706378e-20,-1.376764742970801e-20,-2.581433751706378e-20,0.00018601190822664648,-7.440476474585012e-05,-5.3146257414482534e-05,2.4571118882752194e-22,1.279445146563251e-21,-3.236801680890039e-20,2.1258503693388775e-05,9.514211564155436e-24,-5.437798079974825e-23,-1.3552527156068805e-20,-4.235164736271502e-22,-4.235164736271502e-22,1.6018257393909775e-22,8.603947100953489e-36,4.474815693676724e-23,0.00018601190822664648,-7.440476474585012e-05,5.226503541912226e-21,-5.3146257414482534e-05,1.279445146563251e-21,-3.236801680890039e-20,9.514211564155436e-24,2.1258503693388775e-05,2.766660820709245e-24,1.9424847821289777e-23,-1.570253657941409e-21,2.814993973384729e-23,-1.1858461261560205e-20,-4.235164736271502e-22,1.286693430907806e-23,0.00018601190822664648,-7.440476474585012e-05,6.776263578034403e-21,6.115931515043786e-21,-5.3146257414482534e-05,-3.236801680890039e-20,-5.437798079974825e-23,2.766660820709245e-24,2.1258503693388775e-05,-1.1102170895881056e-22,3.700141031886483e-23,-1.6940658945086007e-21,5.648599068789794e-24,-1.7986060950781747e-21,-1.1937990153813203e-20,0.00010850694525288418,1.7682611520212516e-19,-0.00010850694525288418,3.3881317890172014e-21,3.093095488058038e-21,-2.581433751706378e-20,-1.3552527156068805e-20,1.9424847821289777e-23,-1.1102170895881056e-22,1.550099295855034e-05,-8.470329472543003e-22,-8.470329472543003e-22,-2.1153377748704712e-23,6.958926556867942e-36,-2.9243858830915784e-22,0.00014467592700384557,7.568692265102546e-20,-4.13359775848221e-05,-4.13359775848221e-05,-2.756474125733772e-22,-1.376764742970801e-20,-4.235164736271502e-22,-1.570253657941409e-21,3.700141031886483e-23,-8.470329472543003e-22,1.181027982966043e-05,5.241786592302067e-22,-3.423019989276829e-21,-6.352747104407253e-22,7.554454514734463e-23,0.00014467592700384557,7.615124885565474e-20,-4.13359775848221e-05,3.3881317890172014e-21,-4.13359775848221e-05,-1.376764742970801e-20,-4.235164736271502e-22,2.814993973384729e-23,-1.6940658945086007e-21,-8.470329472543003e-22,5.241786592302067e-22,1.181027982966043e-05,5.747278941601339e-23,-1.6366522696604789e-21,-3.6758032340781234e-21,0.00010850694525288418,1.6999589101381874e-19,1.1539120269707152e-20,-0.00010850694525288418,3.3881317890172014e-21,-2.581433751706378e-20,1.6018257393909775e-22,-1.1858461261560205e-20,5.648599068789794e-24,-2.1153377748704712e-23,-3.423019989276829e-21,5.747278941601339e-23,1.550099295855034e-05,-1.2605608514777676e-21,-7.798722454136891e-23,0.00014467592700384557,7.661565907081498e-20,7.951744581815508e-21,-4.13359775848221e-05,-4.13359775848221e-05,-1.376764742970801e-20,8.603947100953489e-36,-4.235164736271502e-22,-1.7986060950781747e-21,6.958926556867942e-36,-6.352747104407253e-22,-1.6366522696604789e-21,-1.2605608514777676e-21,1.181027982966043e-05,-3.731752632111959e-21,0.00010850694525288418,1.7065299553761263e-19,1.4703212936312494e-20,1.3355035361441069e-20,-0.00010850694525288418,-2.581433751706378e-20,4.474815693676724e-23,1.286693430907806e-23,-1.1937990153813203e-20,-2.9243858830915784e-22,7.554454514734463e-23,-3.6758032340781234e-21,-7.798722454136891e-23,-3.731752632111959e-21,1.550099295855034e-05,7.0,3.0,3.0,3.0,0.14925044775009155,-0.035052910447120667,-0.065476194024086,-0.065476194024086,-0.065476194024086,0.002204585587605834,0.0059523810632526875,0.0059523810632526875,0.0059523810632526875,0.007936508394777775,0.011904762126505375,0.011904762126505375,0.007936508394777775,0.011904762126505375,0.007936508394777775,-0.035052910447120667,0.023148147389292717,0.0059523810632526875,0.0059523810632526875,0.0059523810632526875,-0.0026455025654286146,-0.0019841270986944437,-0.0019841270986944437,-0.0019841270986944437,-1.3877787807814457e-17,-5.204170427930421e-18,-2.6020852139652106e-18,-1.0408340855860843e-17,-4.336808689942018e-18,-1.0408340855860843e-17,-0.065476194024086,0.0059523810632526875,0.144841268658638,0.011904762126505375,0.011904762126505375,1.0842021724855044e-18,-0.0059523810632526875,-7.165277521131354e-18,-6.626953755155825e-18,-0.0476190485060215,-0.011904762126505375,-0.011904762126505375,-1.5612511283791264e-17,-1.474514954580286e-17,0.0,-0.065476194024086,0.0059523810632526875,0.011904762126505375,0.144841268658638,0.011904762126505375,3.2526065174565133e-18,-6.071532165918825e-18,-0.0059523810632526875,-5.9290259035784955e-18,-5.2258544713801314e-17,-0.011904762126505375,-2.4718881229227063e-19,-0.0476190485060215,-0.011904762126505375,-1.0408340855860843e-17,-0.065476194024086,0.0059523810632526875,0.011904762126505375,0.011904762126505375,0.144841268658638,1.3010426069826053e-18,-7.15573433840433e-18,-7.37257477290143e-18,-0.0059523810632526875,-5.2692225582795515e-17,1.951563910473908e-18,-0.011904762126505375,-4.640385298237959e-17,-0.011904762126505375,-0.0476190485060215,0.002204585587605834,-0.0026455025654286146,1.0842021724855044e-18,3.2526065174565133e-18,1.3010426069826053e-18,0.00044091709423810244,-2.710505431213761e-19,-5.421010862427522e-20,-1.0842021724855044e-19,4.336808689942018e-19,3.2526065174565133e-19,-5.421010862427522e-20,4.336808689942018e-19,2.710505431213761e-19,8.673617379884035e-19,0.0059523810632526875,-0.0019841270986944437,-0.0059523810632526875,-6.071532165918825e-18,-7.15573433840433e-18,-2.710505431213761e-19,0.0019841270986944437,1.1082270194539962e-20,3.905463145687509e-20,5.9495788602586006e-18,8.893077702176245e-19,1.1410589488772196e-18,2.2572274127372593e-18,8.893077702176245e-19,2.425061531843656e-18,0.0059523810632526875,-0.0019841270986944437,-7.165277521131354e-18,-0.0059523810632526875,-7.37257477290143e-18,-5.421010862427522e-20,1.1082270194539962e-20,0.0019841270986944437,3.905463145687509e-20,2.425061531843656e-18,1.5606444534383647e-18,8.053906589656378e-19,2.425061531843656e-18,1.5606444534383647e-18,2.425061531843656e-18,0.0059523810632526875,-0.0019841270986944437,-6.626953755155825e-18,-5.9290259035784955e-18,-0.0059523810632526875,-1.0842021724855044e-19,3.905463145687509e-20,3.905463145687509e-20,0.0019841270986944437,2.4584860392405456e-18,6.87693404352152e-19,9.394446347105355e-19,2.290651920134149e-18,6.87693404352152e-19,-1.2338656150759488e-18,0.007936508394777775,-1.3877787807814457e-17,-0.0476190485060215,-5.2258544713801314e-17,-5.2692225582795515e-17,4.336808689942018e-19,5.9495788602586006e-18,2.425061531843656e-18,2.4584860392405456e-18,0.02380952425301075,2.2911496760677526e-17,2.3079331706964536e-17,7.134374880626985e-18,7.302919547879565e-18,7.302208999733382e-18,0.011904762126505375,-5.204170427930421e-18,-0.011904762126505375,-0.011904762126505375,1.951563910473908e-18,3.2526065174565133e-19,8.893077702176245e-19,1.5606444534383647e-18,6.87693404352152e-19,2.2911496760677526e-17,0.011904762126505375,2.548318350569937e-32,-7.049035484010502e-18,-5.035025124155551e-19,-2.0140100496622206e-18,0.011904762126505375,-2.6020852139652106e-18,-0.011904762126505375,-2.4718881229227063e-19,-0.011904762126505375,-5.421010862427522e-20,1.1410589488772196e-18,8.053906589656378e-19,9.394446347105355e-19,2.3079331706964536e-17,2.548318350569937e-32,0.011904762126505375,5.013690326700219e-20,-2.3164316243098234e-18,-2.0341714603993737e-17,0.007936508394777775,-1.0408340855860843e-17,-1.5612511283791264e-17,-0.0476190485060215,-4.640385298237959e-17,4.336808689942018e-19,2.2572274127372593e-18,2.425061531843656e-18,2.290651920134149e-18,7.134374880626985e-18,-7.049035484010502e-18,5.013690326700219e-20,0.02380952425301075,2.1549800308098858e-17,8.911923151276887e-18,0.011904762126505375,-4.336808689942018e-18,-1.474514954580286e-17,-0.011904762126505375,-0.011904762126505375,2.710505431213761e-19,8.893077702176245e-19,1.5606444534383647e-18,6.87693404352152e-19,7.302919547879565e-18,-5.035025124155551e-19,-2.3164316243098234e-18,2.1549800308098858e-17,0.011904762126505375,-1.1077055169744637e-17,0.007936508394777775,-1.0408340855860843e-17,0.0,-1.0408340855860843e-17,-0.0476190485060215,8.673617379884035e-19,2.425061531843656e-18,2.425061531843656e-18,-1.2338656150759488e-18,7.302208999733382e-18,-2.0140100496622206e-18,-2.0341714603993737e-17,8.911923151276887e-18,-1.1077055169744637e-17,0.02380952425301075,7.0,3.0,3.0,4.0,0.12136243283748627,-0.02718253992497921,-0.05089285597205162,-0.05089285597205162,-0.0416666679084301,0.0016534391324967146,0.004464285913854837,0.004464285913854837,0.0035714285913854837,0.0059523810632526875,0.008928571827709675,0.0071428571827709675,0.0059523810632526875,0.0071428571827709675,0.003968254197388887,-0.02718253992497921,0.01765873096883297,0.004464285913854837,0.004464285913854837,0.0035714285913854837,-0.0019841270986944437,-0.0014880952658131719,-0.0014880952658131719,-0.0011904762359336019,-0.0,8.673617379884035e-19,-3.469446951953614e-18,-6.938893903907228e-18,-1.734723475976807e-18,0.0,-0.05089285597205162,0.004464285913854837,0.11041666567325592,0.008928571827709675,0.0071428571827709675,4.336808689942018e-19,-0.004464285913854837,4.367176971770677e-18,-7.00407325463457e-18,-0.0357142873108387,-0.008928571827709675,-0.0071428571827709675,2.6020852139652106e-18,-1.235990476633475e-17,-2.42861286636753e-17,-0.05089285597205162,0.004464285913854837,0.008928571827709675,0.11041666567325592,0.0071428571827709675,-8.673617379884035e-19,3.686287386450715e-18,-0.004464285913854837,-4.446638009364052e-18,-9.540979117872439e-18,-0.008928571827709675,5.025056046810639e-18,-0.0357142873108387,-0.0071428571827709675,-1.8648277366750676e-17,-0.0416666679084301,0.0035714285913854837,0.0071428571827709675,0.0071428571827709675,0.0555555559694767,-1.951563910473908e-18,-1.3010426069826053e-18,-1.0842021724855044e-18,-0.0023809524718672037,-7.43762690325056e-17,1.0842021724855044e-18,-0.004761904943734407,-6.516055056637882e-17,-0.004761904943734407,-0.011904762126505375,0.0016534391324967146,-0.0019841270986944437,4.336808689942018e-19,-8.673617379884035e-19,-1.951563910473908e-18,0.0003306878206785768,-5.421010862427522e-20,1.6263032587282567e-19,1.3552527156068805e-19,-2.168404344971009e-19,2.168404344971009e-19,1.6263032587282567e-19,1.3010426069826053e-18,0.0,1.0842021724855044e-19,0.004464285913854837,-0.0014880952658131719,-0.004464285913854837,3.686287386450715e-18,-1.3010426069826053e-18,-5.421010862427522e-20,0.0014880952658131719,3.1287754471823083e-20,1.0894728639511158e-19,3.406716210935795e-19,-4.566614456757851e-19,1.1074156522083098e-18,-1.5474628133894493e-18,-5.0640097266898656e-20,-3.512647674365721e-20,0.004464285913854837,-0.0014880952658131719,4.367176971770677e-18,-0.004464285913854837,-1.0842021724855044e-18,1.6263032587282567e-19,3.1287754471823083e-20,0.0014880952658131719,5.0253635899774467e-20,-1.5508788625241402e-18,-9.810224546102071e-19,-2.183776462679541e-19,-7.012183243552769e-19,1.24177966558655e-18,-1.003416482689308e-19,0.0035714285913854837,-0.0011904762359336019,-7.00407325463457e-18,-4.446638009364052e-18,-0.0023809524718672037,1.3552527156068805e-19,1.0894728639511158e-19,5.0253635899774467e-20,0.0007936508045531809,2.56256273109258e-18,-1.6562582273238329e-21,9.888965936562525e-19,1.908009542500541e-18,3.309866544396848e-19,-2.0213711816321182e-19,0.0059523810632526875,-0.0,-0.0357142873108387,-9.540979117872439e-18,-7.43762690325056e-17,-2.168404344971009e-19,3.406716210935795e-19,-1.5508788625241402e-18,2.56256273109258e-18,0.01785714365541935,-4.008248414732892e-18,1.8141907174247765e-17,3.9520390105680765e-18,7.064852004503128e-18,1.2862087770576919e-17,0.008928571827709675,8.673617379884035e-19,-0.008928571827709675,-0.008928571827709675,1.0842021724855044e-18,2.168404344971009e-19,-4.566614456757851e-19,-9.810224546102071e-19,-1.6562582273238329e-21,-4.008248414732892e-18,0.008928571827709675,-3.521619094343712e-19,-5.391431297312932e-18,-5.006040521621237e-20,-1.9564550811347223e-19,0.0071428571827709675,-3.469446951953614e-18,-0.0071428571827709675,5.025056046810639e-18,-0.004761904943734407,1.6263032587282567e-19,1.1074156522083098e-18,-2.183776462679541e-19,9.888965936562525e-19,1.8141907174247765e-17,-3.521619094343712e-19,0.004761904943734407,-1.2784657461387361e-18,-7.7890511123351415e-19,-1.3390295324456077e-18,0.0059523810632526875,-6.938893903907228e-18,2.6020852139652106e-18,-0.0357142873108387,-6.516055056637882e-17,1.3010426069826053e-18,-1.5474628133894493e-18,-7.012183243552769e-19,1.908009542500541e-18,3.9520390105680765e-18,-5.391431297312932e-18,-1.2784657461387361e-18,0.01785714365541935,2.1742675665889072e-17,1.2372973392832476e-17,0.0071428571827709675,-1.734723475976807e-18,-1.235990476633475e-17,-0.0071428571827709675,-0.004761904943734407,0.0,-5.0640097266898656e-20,1.24177966558655e-18,3.309866544396848e-19,7.064852004503128e-18,-5.006040521621237e-20,-7.7890511123351415e-19,2.1742675665889072e-17,0.004761904943734407,-3.8302627215589386e-18,0.003968254197388887,0.0,-2.42861286636753e-17,-1.8648277366750676e-17,-0.011904762126505375,1.0842021724855044e-19,-3.512647674365721e-20,-1.003416482689308e-19,-2.0213711816321182e-19,1.2862087770576919e-17,-1.9564550811347223e-19,-1.3390295324456077e-18,1.2372973392832476e-17,-3.8302627215589386e-18,0.003968254197388887,7.0,3.0,3.0,5.0,0.10241874307394028,-0.02222222276031971,-0.0416666679084301,-0.0416666679084301,-0.028911564499139786,0.0013227512827143073,0.0035714285913854837,0.0035714285913854837,0.0023809524718672037,0.004761904943734407,0.0071428571827709675,0.004761904943734407,0.004761904943734407,0.004761904943734407,0.0022675737272948027,-0.02222222276031971,0.014285714365541935,0.0035714285913854837,0.0035714285913854837,0.0023809524718672037,-0.0015873016091063619,-0.0011904762359336019,-0.0011904762359336019,-0.0007936508045531809,-3.1720658023686032e-18,-1.5860329011843016e-18,-5.2867765096103e-19,-3.1720658023686032e-18,-5.2867765096103e-19,-1.0062001135943425e-33,-0.0416666679084301,0.0035714285913854837,0.0892857164144516,0.0071428571827709675,0.004761904943734407,-0.0,-0.0035714285913854837,-7.930164505921508e-19,4.0657581468206416e-20,-0.02857142873108387,-0.0071428571827709675,-0.004761904943734407,-1.5860329632228476e-17,-3.1720658023686032e-18,-4.5315224566436314e-18,-0.0416666679084301,0.0035714285913854837,0.0071428571827709675,0.0892857164144516,0.004761904943734407,-9.483790512808119e-20,-7.930164505921508e-19,-0.0035714285913854837,-2.664967375346535e-35,-1.9032395227801926e-17,-0.0071428571827709675,-3.3411445571293914e-34,-0.02857142873108387,-0.004761904943734407,-4.5315224566436314e-18,-0.028911564499139786,0.0023809524718672037,0.004761904943734407,0.004761904943734407,0.02806122414767742,-0.0,-4.880200694928236e-19,-5.2867765096103e-19,-0.0011904762359336019,-1.0649077711073988e-17,-7.422396428748323e-34,-0.0023809524718672037,-9.063044913287263e-18,-0.0023809524718672037,-0.004535147454589605,0.0013227512827143073,-0.0015873016091063619,-0.0,-9.483790512808119e-20,-0.0,0.00026455026818439364,-2.710505431213761e-20,-0.0,-0.0,-8.197547766791456e-36,2.082191226643831e-35,-1.815641712397479e-35,3.674081635863837e-35,-7.539110218212699e-36,-0.0,0.0035714285913854837,-0.0011904762359336019,-0.0035714285913854837,-7.930164505921508e-19,-4.880200694928236e-19,-2.710505431213761e-20,0.0011904762359336019,-0.0,-1.3552527156068805e-20,3.1720658023686032e-18,7.930164505921508e-19,5.2867765096103e-19,1.7748570634584863e-33,3.469800347528227e-34,5.031000567971712e-34,0.0035714285913854837,-0.0011904762359336019,-7.930164505921508e-19,-0.0035714285913854837,-5.2867765096103e-19,-0.0,-0.0,0.0011904762359336019,-0.0,2.1666711874356403e-33,7.930164505921508e-19,-6.018531076210112e-36,3.1720658023686032e-18,5.2867765096103e-19,5.031000567971712e-34,0.0023809524718672037,-0.0007936508045531809,4.0657581468206416e-20,-2.664967375346535e-35,-0.0011904762359336019,-0.0,-1.3552527156068805e-20,-0.0,0.00039682540227659047,1.082189199739843e-35,1.2633183577137275e-35,-3.813646909234391e-36,9.216950472737708e-36,-2.2087053845736698e-36,-0.0,0.004761904943734407,-3.1720658023686032e-18,-0.02857142873108387,-1.9032395227801926e-17,-1.0649077711073988e-17,-8.197547766791456e-36,3.1720658023686032e-18,2.1666711874356403e-33,1.082189199739843e-35,0.014285714365541935,2.113020339567165e-33,1.4086801957662779e-33,7.930164816114238e-18,1.5860329011843016e-18,2.2657612283218157e-18,0.0071428571827709675,-1.5860329011843016e-18,-0.0071428571827709675,-0.0071428571827709675,-7.422396428748323e-34,2.082191226643831e-35,7.930164505921508e-19,7.930164505921508e-19,1.2633183577137275e-35,2.113020339567165e-33,0.0071428571827709675,3.5217004894156947e-34,2.113020339567165e-33,3.5217004894156947e-34,0.0,0.004761904943734407,-5.2867765096103e-19,-0.004761904943734407,-3.3411445571293914e-34,-0.0023809524718672037,-1.815641712397479e-35,5.2867765096103e-19,-6.018531076210112e-36,-3.813646909234391e-36,1.4086801957662779e-33,3.5217004894156947e-34,0.0023809524718672037,0.0,0.0,0.0,0.004761904943734407,-3.1720658023686032e-18,-1.5860329632228476e-17,-0.02857142873108387,-9.063044913287263e-18,3.674081635863837e-35,1.7748570634584863e-33,3.1720658023686032e-18,9.216950472737708e-36,7.930164816114238e-18,2.113020339567165e-33,0.0,0.014285714365541935,2.2891053525585126e-33,2.2657612283218157e-18,0.004761904943734407,-5.2867765096103e-19,-3.1720658023686032e-18,-0.004761904943734407,-0.0023809524718672037,-7.539110218212699e-36,3.469800347528227e-34,5.2867765096103e-19,-2.2087053845736698e-36,1.5860329011843016e-18,3.5217004894156947e-34,0.0,2.2891053525585126e-33,0.0023809524718672037,2.515500283985856e-34,0.0022675737272948027,-1.0062001135943425e-33,-4.5315224566436314e-18,-4.5315224566436314e-18,-0.004535147454589605,-0.0,5.031000567971712e-34,5.031000567971712e-34,-0.0,2.2657612283218157e-18,0.0,0.0,2.2657612283218157e-18,2.515500283985856e-34,0.0011337868636474013,7.0,3.0,3.0,6.0,0.08865582942962646,-0.018801964819431305,-0.03528911620378494,-0.03528911620378494,-0.021258503198623657,0.001102292793802917,0.0029761905316263437,0.0029761905316263437,0.001700680237263441,0.003968254197388887,0.0059523810632526875,0.003401360474526882,0.003968254197388887,0.003401360474526882,0.0014172336086630821,-0.018801964819431305,0.01199924387037754,0.0029761905316263437,0.0029761905316263437,0.001700680237263441,-0.0013227512827143073,-0.0009920635493472219,-0.0009920635493472219,-0.0005668934318237007,2.311115933264683e-33,-0.0,2.710505431213761e-20,2.155431624731856e-33,7.66659803329196e-34,-3.844655612518573e-19,-0.03528911620378494,0.0029761905316263437,0.07497165352106094,0.0059523810632526875,0.003401360474526882,-0.0,-0.0029761905316263437,-2.7666463167126415e-21,4.0937863217716913e-20,-0.02380952425301075,-0.0059523810632526875,-0.003401360474526882,2.643388161747331e-17,4.5315224566436314e-18,5.350656256197743e-18,-0.03528911620378494,0.0029761905316263437,0.0059523810632526875,0.07497165352106094,0.003401360474526882,-9.318446776105594e-34,-3.3527980224143597e-35,-0.0029761905316263437,2.436207450304383e-33,3.612630592497563e-17,-0.0059523810632526875,-3.319975620444848e-21,-0.02380952425301075,-0.003401360474526882,5.177997192578325e-18,-0.021258503198623657,0.001700680237263441,0.003401360474526882,0.003401360474526882,0.016298186033964157,-0.0,8.131516293641283e-20,-2.710505431213761e-20,-0.0006802721181884408,1.89294459831248e-17,-6.404847743716256e-33,-0.0013605442363768816,1.666368578877875e-17,-0.0013605442363768816,-0.002125850412994623,0.001102292793802917,-0.0013227512827143073,-0.0,-9.318446776105594e-34,-0.0,0.00022045854711905122,-0.0,-0.0,-1.3552527156068805e-20,-1.266717992987126e-35,-0.0,-1.3081164665574641e-21,-1.468512720469888e-35,-0.0,-1.3396412163527193e-20,0.0029761905316263437,-0.0009920635493472219,-0.0029761905316263437,-3.3527980224143597e-35,8.131516293641283e-20,-0.0,0.0009920635493472219,-0.0,-6.811214382295469e-21,-1.9637854255599289e-35,-0.0,7.952638304423138e-22,1.6763990112071798e-35,0.0,-1.1365500390569814e-20,0.0029761905316263437,-0.0009920635493472219,-2.7666463167126415e-21,-0.0029761905316263437,-2.710505431213761e-20,-0.0,-0.0,0.0009920635493472219,-0.0,-1.9371142809544477e-36,-0.0,1.1066585064902174e-21,1.019231160109288e-35,-0.0,4.790859259567727e-21,0.001700680237263441,-0.0005668934318237007,4.0937863217716913e-20,2.436207450304383e-33,-0.0006802721181884408,-1.3552527156068805e-20,-6.811214382295469e-21,-0.0,0.00022675737272948027,-8.82881756314461e-34,0.0,-8.201688028332203e-21,-8.347738234875935e-34,-3.06663907556354e-34,1.9124674256167423e-19,0.003968254197388887,2.311115933264683e-33,-0.02380952425301075,3.612630592497563e-17,1.89294459831248e-17,-1.266717992987126e-35,-1.9637854255599289e-35,-1.9371142809544477e-36,-8.82881756314461e-34,0.011904762126505375,-4.028020099324441e-18,-3.6827611154994015e-18,-1.3216940808736655e-17,-2.2657612283218157e-18,-2.5961847278607168e-18,0.0059523810632526875,-0.0,-0.0059523810632526875,-0.0059523810632526875,-6.404847743716256e-33,-0.0,-0.0,-0.0,0.0,-4.028020099324441e-18,0.0059523810632526875,1.2460758070914579e-33,4.4720007497584006e-33,7.666286710959985e-34,8.7842865310576e-34,0.003401360474526882,2.710505431213761e-20,-0.003401360474526882,-3.319975620444848e-21,-0.0013605442363768816,-1.3081164665574641e-21,7.952638304423138e-22,1.1066585064902174e-21,-8.201688028332203e-21,-3.6827611154994015e-18,1.2460758070914579e-33,0.0013605442363768816,4.333342374871281e-33,-3.657539881912749e-34,-4.967600533827103e-20,0.003968254197388887,2.155431624731856e-33,2.643388161747331e-17,-0.02380952425301075,1.666368578877875e-17,-1.468512720469888e-35,1.6763990112071798e-35,1.019231160109288e-35,-8.347738234875935e-34,-1.3216940808736655e-17,4.4720007497584006e-33,4.333342374871281e-33,0.011904762126505375,-3.6827611154994015e-18,-2.5961847278607168e-18,0.003401360474526882,7.66659803329196e-34,4.5315224566436314e-18,-0.003401360474526882,-0.0013605442363768816,-0.0,0.0,-0.0,-3.06663907556354e-34,-2.2657612283218157e-18,7.666286710959985e-34,-3.657539881912749e-34,-3.6827611154994015e-18,0.0013605442363768816,3.3892619949301113e-34,0.0014172336086630821,-3.844655612518573e-19,5.350656256197743e-18,5.177997192578325e-18,-0.002125850412994623,-1.3396412163527193e-20,-1.1365500390569814e-20,4.790859259567727e-21,1.9124674256167423e-19,-2.5961847278607168e-18,8.7842865310576e-34,-4.967600533827103e-20,-2.5961847278607168e-18,3.3892619949301113e-34,0.00042517005931586027,7.0,3.0,3.0,7.0,0.07818405330181122,-0.016298186033964157,-0.030612245202064514,-0.030612245202064514,-0.016298186033964157,0.0009448223863728344,0.0025510203558951616,0.0025510203558951616,0.0012755101779475808,0.003401360474526882,0.005102040711790323,0.0025510203558951616,0.003401360474526882,0.0025510203558951616,0.0009448223863728344,-0.016298186033964157,0.010345805436372757,0.0025510203558951616,0.0025510203558951616,0.0012755101779475808,-0.0011337868636474013,-0.0008503401186317205,-0.0008503401186317205,-0.00042517005931586027,4.81482486096809e-34,-0.0,-0.0,6.722727956636993e-34,6.031014963969089e-35,2.168404344971009e-19,-0.030612245202064514,0.0025510203558951616,0.06462585180997849,0.005102040711790323,0.0025510203558951616,-5.421010862427522e-20,-0.0025510203558951616,-3.975644437471162e-35,-2.0328790734103208e-20,-0.020408162847161293,-0.005102040711790323,-0.0025510203558951616,-1.1328806761994538e-17,-1.69932097294015e-18,-1.6144906025931166e-18,-0.030612245202064514,0.0025510203558951616,0.005102040711790323,0.06462585180997849,0.0025510203558951616,-1.8427706067287709e-34,1.037102921633484e-35,-0.0025510203558951616,3.958099782504844e-34,-1.3877787807814457e-17,-0.005102040711790323,1.0348280846471692e-34,-0.020408162847161293,-0.0025510203558951616,-1.6363831782752513e-18,-0.016298186033964157,0.0012755101779475808,0.0025510203558951616,0.0025510203558951616,0.010345805436372757,8.131516293641283e-20,2.710505431213761e-20,-0.0,-0.00042517005931586027,-5.758809917898252e-18,-0.0,-0.0008503401186317205,-4.909149431428177e-18,-0.0008503401186317205,-0.0011337868636474013,0.0009448223863728344,-0.0011337868636474013,-5.421010862427522e-20,-1.8427706067287709e-34,8.131516293641283e-20,0.0001889644772745669,2.710505431213761e-20,-0.0,-1.3552527156068805e-20,-4.5307165433492927e-35,0.0,-0.0,-2.457719628293467e-35,0.0,-7.217322096761359e-21,0.0025510203558951616,-0.0008503401186317205,-0.0025510203558951616,1.037102921633484e-35,2.710505431213761e-20,2.710505431213761e-20,0.0008503401186317205,-0.0,6.776263578034403e-21,2.3424524846569677e-36,-0.0,-0.0,-5.18551460816742e-36,-0.0,-7.297514995326388e-21,0.0025510203558951616,-0.0008503401186317205,-3.975644437471162e-35,-0.0025510203558951616,-0.0,-0.0,-0.0,0.0008503401186317205,-0.0,1.987822218735581e-35,-0.0,-0.0,-4.0857730622384556e-36,0.0,0.0,0.0012755101779475808,-0.00042517005931586027,-2.0328790734103208e-20,3.958099782504844e-34,-0.00042517005931586027,-1.3552527156068805e-20,6.776263578034403e-21,-0.0,0.00014172335795592517,-6.973552507574804e-35,-0.0,-0.0,-1.6774990856567824e-34,-2.0103384169850048e-35,-5.421010862427522e-20,0.003401360474526882,4.81482486096809e-34,-0.020408162847161293,-1.3877787807814457e-17,-5.758809917898252e-18,-4.5307165433492927e-35,2.3424524846569677e-36,1.987822218735581e-35,-6.973552507574804e-35,0.010204081423580647,-0.0,-0.0,5.664403380997269e-18,8.49660486470075e-19,8.181915891376256e-19,0.005102040711790323,-0.0,-0.005102040711790323,-0.005102040711790323,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.005102040711790323,-0.0,-0.0,-0.0,-0.0,0.0025510203558951616,-0.0,-0.0025510203558951616,1.0348280846471692e-34,-0.0008503401186317205,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008503401186317205,-5.174140423235846e-35,-0.0,-0.0,0.003401360474526882,6.722727956636993e-34,-1.1328806761994538e-17,-0.020408162847161293,-4.909149431428177e-18,-2.457719628293467e-35,-5.18551460816742e-36,-4.0857730622384556e-36,-1.6774990856567824e-34,5.664403380997269e-18,-0.0,-5.174140423235846e-35,0.010204081423580647,5.7777898331617076e-34,8.181915891376256e-19,0.0025510203558951616,6.031014963969089e-35,-1.69932097294015e-18,-0.0025510203558951616,-0.0008503401186317205,0.0,-0.0,0.0,-2.0103384169850048e-35,8.49660486470075e-19,-0.0,-0.0,5.7777898331617076e-34,0.0008503401186317205,1.4519110151589645e-35,0.0009448223863728344,2.168404344971009e-19,-1.6144906025931166e-18,-1.6363831782752513e-18,-0.0011337868636474013,-7.217322096761359e-21,-7.297514995326388e-21,0.0,-5.421010862427522e-20,8.181915891376256e-19,-0.0,-0.0,8.181915891376256e-19,1.4519110151589645e-35,0.0001889644772745669,7.0,3.0,3.0,8.0,0.0699404776096344,-0.014384920708835125,-0.02703372947871685,-0.02703372947871685,-0.012896825559437275,0.0008267195662483573,0.0022321429569274187,0.0022321429569274187,0.0009920635493472219,0.0029761905316263437,0.004464285913854837,0.0019841270986944437,0.0029761905316263437,0.0019841270986944437,0.0006613756413571537,-0.014384920708835125,0.009093915112316608,0.0022321429569274187,0.0022321429569274187,0.0009920635493472219,-0.0009920635493472219,-0.0007440476329065859,-0.0007440476329065859,-0.0003306878206785768,-1.1555579666323415e-33,0.0,3.3660218746836296e-34,-1.2926898519023234e-33,5.001852899846127e-34,1.3552527156068805e-19,-0.02703372947871685,0.0022321429569274187,0.056795634329319,0.004464285913854837,0.0019841270986944437,-0.0,-0.0022321429569274187,-5.754197846646626e-38,-3.2834408710622196e-34,-0.01785714365541935,-0.004464285913854837,-0.0019841270986944437,1.9825411626695288e-17,2.6433882031063616e-18,2.2081933867960346e-18,-0.02703372947871685,0.0022321429569274187,0.004464285913854837,0.056795634329319,0.0019841270986944437,1.1336512289134518e-34,-2.606874536364394e-35,-0.0022321429569274187,-2.030870136258232e-34,2.898286349047384e-17,-0.004464285913854837,-5.128475773784262e-33,-0.01785714365541935,-0.0019841270986944437,2.2081933867960346e-18,-0.012896825559437275,0.0009920635493472219,0.0019841270986944437,0.0019841270986944437,0.00699168536812067,-0.0,1.3552527156068805e-20,1.3552527156068805e-20,-0.00028344671591185033,1.1333301661443151e-17,-5.7519965483687895e-33,-0.0005668934318237007,1.0011607663287547e-17,-0.0005668934318237007,-0.0006613756413571537,0.0008267195662483573,-0.0009920635493472219,-0.0,1.1336512289134518e-34,-0.0,0.0001653439103392884,-0.0,-0.0,-0.0,-2.601945337854595e-36,0.0,0.0,6.280976835214866e-36,0.0,1.5932579021667104e-21,0.0022321429569274187,-0.0007440476329065859,-0.0022321429569274187,-2.606874536364394e-35,1.3552527156068805e-20,-0.0,0.0007440476329065859,-0.0,0.0,8.785851694898058e-36,-0.0,-0.0,1.303437268182197e-35,-0.0,-1.7899564435117053e-21,0.0022321429569274187,-0.0007440476329065859,-5.754197846646626e-38,-0.0022321429569274187,1.3552527156068805e-20,-0.0,-0.0,0.0007440476329065859,-0.0,2.877098923323313e-38,-0.0,-0.0,8.102629324328849e-36,-0.0,-1.7899564435117053e-21,0.0009920635493472219,-0.0003306878206785768,-3.2834408710622196e-34,-2.030870136258232e-34,-0.00028344671591185033,-0.0,0.0,-0.0,9.448223863728344e-05,3.324731487667295e-34,-0.0,-9.61720543823492e-35,3.5163614032578095e-34,-1.429100828527465e-34,-4.0657581468206416e-20,0.0029761905316263437,-1.1555579666323415e-33,-0.01785714365541935,2.898286349047384e-17,1.1333301661443151e-17,-2.601945337854595e-36,8.785851694898058e-36,2.877098923323313e-38,3.324731487667295e-34,0.008928571827709675,-4.5315224566436314e-18,-2.3017258005847025e-18,-9.912705813347644e-18,-1.3216941015531808e-18,-1.1014117685272467e-18,0.004464285913854837,0.0,-0.004464285913854837,-0.004464285913854837,-5.7519965483687895e-33,0.0,-0.0,-0.0,-0.0,-4.5315224566436314e-18,0.004464285913854837,1.1681960921071158e-33,5.031000843478201e-33,6.708000757295616e-34,5.590000937198001e-34,0.0019841270986944437,3.3660218746836296e-34,-0.0019841270986944437,-5.128475773784262e-33,-0.0005668934318237007,0.0,-0.0,-0.0,-9.61720543823492e-35,-2.3017258005847025e-18,1.1681960921071158e-33,0.0005668934318237007,2.2870418089598426e-33,-1.7537257617102806e-34,5.953508101099148e-35,0.0029761905316263437,-1.2926898519023234e-33,1.9825411626695288e-17,-0.01785714365541935,1.0011607663287547e-17,6.280976835214866e-36,1.303437268182197e-35,8.102629324328849e-36,3.5163614032578095e-34,-9.912705813347644e-18,5.031000843478201e-33,2.2870418089598426e-33,0.008928571827709675,-2.3017258005847025e-18,-1.1014117685272467e-18,0.0019841270986944437,5.001852899846127e-34,2.6433882031063616e-18,-0.0019841270986944437,-0.0005668934318237007,0.0,-0.0,-0.0,-1.429100828527465e-34,-1.3216941015531808e-18,6.708000757295616e-34,-1.7537257617102806e-34,-2.3017258005847025e-18,0.0005668934318237007,1.1352136950862098e-34,0.0006613756413571537,1.3552527156068805e-19,2.2081933867960346e-18,2.2081933867960346e-18,-0.0006613756413571537,1.5932579021667104e-21,-1.7899564435117053e-21,-1.7899564435117053e-21,-4.0657581468206416e-20,-1.1014117685272467e-18,5.590000937198001e-34,5.953508101099148e-35,-1.1014117685272467e-18,1.1352136950862098e-34,9.448223863728344e-05,7.0,3.0,4.0,3.0,0.12136243283748627,-0.02718253992497921,-0.05089285597205162,-0.0416666679084301,-0.05089285597205162,0.0016534391324967146,0.004464285913854837,0.0035714285913854837,0.004464285913854837,0.0059523810632526875,0.0071428571827709675,0.008928571827709675,0.003968254197388887,0.0071428571827709675,0.0059523810632526875,-0.02718253992497921,0.01765873096883297,0.004464285913854837,0.0035714285913854837,0.004464285913854837,-0.0019841270986944437,-0.0014880952658131719,-0.0011904762359336019,-0.0014880952658131719,-3.469446951953614e-18,-3.469446951953614e-18,0.0,-3.469446951953614e-18,-4.336808689942018e-18,0.0,-0.05089285597205162,0.004464285913854837,0.11041666567325592,0.0071428571827709675,0.008928571827709675,9.75781955236954e-19,-0.004464285913854837,-6.953485369912664e-18,3.8136181932731466e-18,-0.0357142873108387,-0.0071428571827709675,-0.008928571827709675,-2.7755575615628914e-17,-1.5829351718288365e-17,0.0,-0.0416666679084301,0.0035714285913854837,0.0071428571827709675,0.0555555559694767,0.0071428571827709675,8.673617379884035e-19,1.0842021724855044e-19,-0.0023809524718672037,-3.351399179555559e-18,-7.48099499014998e-17,-0.004761904943734407,-2.336201654540147e-18,-0.011904762126505375,-0.004761904943734407,-8.760353553682876e-17,-0.05089285597205162,0.004464285913854837,0.008928571827709675,0.0071428571827709675,0.11041666567325592,-8.673617379884035e-19,2.927345865710862e-18,-7.37257477290143e-18,-0.004464285913854837,-1.22514845490862e-17,2.168404344971009e-19,-0.008928571827709675,-5.3017486234541167e-17,-0.0071428571827709675,-0.0357142873108387,0.0016534391324967146,-0.0019841270986944437,9.75781955236954e-19,8.673617379884035e-19,-8.673617379884035e-19,0.0003306878206785768,5.421010862427522e-20,5.421010862427522e-20,5.421010862427522e-20,2.168404344971009e-19,1.6263032587282567e-19,5.421010862427522e-20,6.505213034913027e-19,2.710505431213761e-19,-4.336808689942018e-19,0.004464285913854837,-0.0014880952658131719,-0.004464285913854837,1.0842021724855044e-19,2.927345865710862e-18,5.421010862427522e-20,0.0014880952658131719,4.181361807303756e-20,-3.165005958012131e-20,3.406716210935795e-19,1.006715201423987e-18,-3.1505138183036872e-19,-4.1275335459297503e-19,-1.009903452772799e-19,-1.2170392104529717e-18,0.0035714285913854837,-0.0011904762359336019,-6.953485369912664e-18,-0.0023809524718672037,-7.37257477290143e-18,5.421010862427522e-20,4.181361807303756e-20,0.0007936508045531809,6.264520537260229e-19,2.56256273109258e-18,1.0963104422920557e-18,1.1163181060027293e-19,8.384347149795413e-19,8.814827450204494e-19,2.0212975108588127e-18,0.004464285913854837,-0.0014880952658131719,3.8136181932731466e-18,-3.351399179555559e-18,-0.004464285913854837,5.421010862427522e-20,-3.165005958012131e-20,6.264520537260229e-19,0.0014880952658131719,-1.4530560696933129e-18,-2.016908412980424e-19,-3.1505138183036872e-19,-7.708501944495347e-20,1.8123192212888752e-18,3.878749670922536e-19,0.0059523810632526875,-3.469446951953614e-18,-0.0357142873108387,-7.48099499014998e-17,-1.22514845490862e-17,2.168404344971009e-19,3.406716210935795e-19,2.56256273109258e-18,-1.4530560696933129e-18,0.01785714365541935,1.8317989111241928e-17,-3.5993337468688345e-18,1.2875993503854548e-17,7.291283598202781e-18,4.570806918295e-18,0.0071428571827709675,-3.469446951953614e-18,-0.0071428571827709675,-0.004761904943734407,2.168404344971009e-19,1.6263032587282567e-19,1.006715201423987e-18,1.0963104422920557e-18,-2.016908412980424e-19,1.8317989111241928e-17,0.004761904943734407,-1.3465379801127223e-19,1.652062386786194e-18,1.3395816496550927e-19,1.0931304078194066e-20,0.008928571827709675,0.0,-0.008928571827709675,-2.336201654540147e-18,-0.008928571827709675,5.421010862427522e-20,-3.1505138183036872e-19,1.1163181060027293e-19,-3.1505138183036872e-19,-3.5993337468688345e-18,-1.3465379801127223e-19,0.008928571827709675,3.776268713869693e-19,9.06304470649211e-19,-5.09796291882045e-18,0.003968254197388887,-3.469446951953614e-18,-2.7755575615628914e-17,-0.011904762126505375,-5.3017486234541167e-17,6.505213034913027e-19,-4.1275335459297503e-19,8.384347149795413e-19,-7.708501944495347e-20,1.2875993503854548e-17,1.652062386786194e-18,3.776268713869693e-19,0.003968254197388887,5.270186058257053e-18,2.246196711114681e-17,0.0071428571827709675,-4.336808689942018e-18,-1.5829351718288365e-17,-0.004761904943734407,-0.0071428571827709675,2.710505431213761e-19,-1.009903452772799e-19,8.814827450204494e-19,1.8123192212888752e-18,7.291283598202781e-18,1.3395816496550927e-19,9.06304470649211e-19,5.270186058257053e-18,0.004761904943734407,1.0131331303606634e-17,0.0059523810632526875,0.0,0.0,-8.760353553682876e-17,-0.0357142873108387,-4.336808689942018e-19,-1.2170392104529717e-18,2.0212975108588127e-18,3.878749670922536e-19,4.570806918295e-18,1.0931304078194066e-20,-5.09796291882045e-18,2.246196711114681e-17,1.0131331303606634e-17,0.01785714365541935,7.0,3.0,4.0,4.0,0.09835813194513321,-0.02105654776096344,-0.03950892761349678,-0.03232142701745033,-0.03232142701745033,0.0012400794075801969,0.0033482143189758062,0.0026785715017467737,0.0026785715017467737,0.004464285913854837,0.0053571430034935474,0.0053571430034935474,0.0029761905316263437,0.004285714123398066,0.0029761905316263437,-0.02105654776096344,0.01346726156771183,0.0033482143189758062,0.0026785715017467737,0.0026785715017467737,-0.0014880952658131719,-0.0011160714784637094,-0.0008928571478463709,-0.0008928571478463709,5.204170427930421e-18,-2.168404344971009e-18,-2.168404344971009e-18,-4.336808689942018e-18,-1.3010426069826053e-18,-3.469446951953614e-18,-0.03950892761349678,0.0033482143189758062,0.08415178209543228,0.0053571430034935474,0.0053571430034935474,1.3010426069826053e-18,-0.0033482143189758062,-1.916889739966604e-18,-3.489395653196249e-18,-0.02678571455180645,-0.0053571430034935474,-0.0053571430034935474,4.336808689942018e-19,-6.071532165918825e-18,-8.673617379884035e-19,-0.03232142701745033,0.0026785715017467737,0.0053571430034935474,0.04238095134496689,0.004285714123398066,-2.168404344971009e-19,-1.734723475976807e-18,-0.0017857142956927419,-5.96454421190091e-18,7.15573433840433e-18,-0.0035714285913854837,-3.100041325277233e-18,-0.008928571827709675,-0.0028571428265422583,-7.806255641895632e-18,-0.03232142701745033,0.0026785715017467737,0.0053571430034935474,0.004285714123398066,0.04238095134496689,-1.0842021724855044e-18,-2.8189256484623115e-18,-4.9873299934333204e-18,-0.0017857142956927419,6.5052130349130266e-18,-3.903127820947816e-18,-0.0035714285913854837,-1.3823577699190182e-17,-0.0028571428265422583,-0.008928571827709675,0.0012400794075801969,-0.0014880952658131719,1.3010426069826053e-18,-2.168404344971009e-19,-1.0842021724855044e-18,0.00024801588733680546,1.6263032587282567e-19,1.0842021724855044e-19,1.8973538018496328e-19,1.0842021724855044e-19,1.3552527156068805e-19,8.131516293641283e-20,3.7947076036992655e-19,5.421010862427522e-20,5.421010862427522e-20,0.0033482143189758062,-0.0011160714784637094,-0.0033482143189758062,-1.734723475976807e-18,-2.8189256484623115e-18,1.6263032587282567e-19,0.0011160714784637094,1.9988285712354876e-19,3.5093359792351823e-19,-4.856281423347769e-18,-4.498947463735834e-19,-2.5164064665024274e-19,2.3782652362545404e-19,3.8023287805742346e-19,3.7943658747087045e-19,0.0026785715017467737,-0.0008928571478463709,-1.916889739966604e-18,-0.0017857142956927419,-4.9873299934333204e-18,1.0842021724855044e-19,1.9988285712354876e-19,0.0005952381179668009,6.050716579394234e-19,-5.632733233206725e-21,3.7936420916727207e-19,4.473370522207811e-19,1.394283749798078e-19,1.750193976479445e-20,8.065691845433728e-19,0.0026785715017467737,-0.0008928571478463709,-3.489395653196249e-18,-5.96454421190091e-18,-0.0017857142956927419,1.8973538018496328e-19,3.5093359792351823e-19,6.050716579394234e-19,0.0005952381179668009,1.4638319324788002e-19,5.617833319305687e-19,7.505967676240533e-19,9.456757862648974e-19,2.9233387443297137e-19,9.582634072364231e-19,0.004464285913854837,5.204170427930421e-18,-0.02678571455180645,7.15573433840433e-18,6.5052130349130266e-18,1.0842021724855044e-19,-4.856281423347769e-18,-5.632733233206725e-21,1.4638319324788002e-19,0.013392857275903225,-6.091947810617246e-18,-6.1485918981939586e-18,-1.2759987833593733e-18,1.6820442718712144e-18,-1.157990405437991e-18,0.0053571430034935474,-2.168404344971009e-18,-0.0053571430034935474,-0.0035714285913854837,-3.903127820947816e-18,1.3552527156068805e-19,-4.498947463735834e-19,3.7936420916727207e-19,5.617833319305687e-19,-6.091947810617246e-18,0.0035714285913854837,-4.949928401651276e-19,2.285064987180601e-19,5.828146057998825e-19,4.550826163803628e-19,0.0053571430034935474,-2.168404344971009e-18,-0.0053571430034935474,-3.100041325277233e-18,-0.0035714285913854837,8.131516293641283e-20,-2.5164064665024274e-19,4.473370522207811e-19,7.505967676240533e-19,-6.1485918981939586e-18,-4.949928401651276e-19,0.0035714285913854837,3.800398347819689e-19,4.0224862610264614e-19,5.310905885066354e-19,0.0029761905316263437,-4.336808689942018e-18,4.336808689942018e-19,-0.008928571827709675,-1.3823577699190182e-17,3.7947076036992655e-19,2.3782652362545404e-19,1.394283749798078e-19,9.456757862648974e-19,-1.2759987833593733e-18,2.285064987180601e-19,3.800398347819689e-19,0.0029761905316263437,-2.203828871691475e-19,3.46238407029333e-18,0.004285714123398066,-1.3010426069826053e-18,-6.071532165918825e-18,-0.0028571428265422583,-0.0028571428265422583,5.421010862427522e-20,3.8023287805742346e-19,1.750193976479445e-20,2.9233387443297137e-19,1.6820442718712144e-18,5.828146057998825e-19,4.0224862610264614e-19,-2.203828871691475e-19,0.0019047618843615055,-3.947974245037991e-18,0.0029761905316263437,-3.469446951953614e-18,-8.673617379884035e-19,-7.806255641895632e-18,-0.008928571827709675,5.421010862427522e-20,3.7943658747087045e-19,8.065691845433728e-19,9.582634072364231e-19,-1.157990405437991e-18,4.550826163803628e-19,5.310905885066354e-19,3.46238407029333e-18,-3.947974245037991e-18,0.0029761905316263437,7.0,3.0,4.0,5.0,0.08282596617937088,-0.017202381044626236,-0.03232142701745033,-0.026428570970892906,-0.022397959604859352,0.0009920635493472219,0.0026785715017467737,0.002142857061699033,0.0017857142956927419,0.0035714285913854837,0.004285714123398066,0.0035714285913854837,0.0023809524718672037,0.0028571428265422583,0.001700680237263441,-0.017202381044626236,0.010892856866121292,0.0026785715017467737,0.002142857061699033,0.0017857142956927419,-0.0011904762359336019,-0.0008928571478463709,-0.0007142857066355646,-0.0005952381179668009,-2.5342975973303675e-17,-8.339047637524712e-18,-1.2524576573959357e-17,-1.463623715608984e-18,-6.479186624119658e-18,-1.062874395725621e-17,-0.03232142701745033,0.0026785715017467737,0.06803571432828903,0.004285714123398066,0.0035714285913854837,-1.3444106938820255e-17,-0.0026785715017467737,1.1527495958720081e-18,-1.0564256956701575e-17,-0.02142857201397419,-0.004285714123398066,-0.0035714285913854837,1.8239378828908563e-17,1.8715188833680703e-18,-9.516197613900963e-18,-0.026428570970892906,0.002142857061699033,0.004285714123398066,0.034285712987184525,0.0028571428265422583,-2.5617297602157392e-18,-2.488851632732214e-18,-0.0014285714132711291,-6.841650137505188e-18,4.543984346162049e-17,-0.0028571428265422583,-2.58749933142891e-18,-0.0071428571827709675,-0.0019047618843615055,-1.7295310978356892e-17,-0.022397959604859352,0.0017857142956927419,0.0035714285913854837,0.0028571428265422583,0.021403061226010323,-8.458119459521108e-18,-8.786360443013788e-18,-4.148899310959265e-18,-0.0008928571478463709,-1.0603763102757108e-17,-1.3041721621121384e-17,-0.0017857142956927419,-2.2416687244415656e-17,-0.0014285714132711291,-0.003401360474526882,0.0009920635493472219,-0.0011904762359336019,-1.3444106938820255e-17,-2.5617297602157392e-18,-8.458119459521108e-18,0.00019841270113829523,5.963111948670274e-19,9.486769009248164e-20,3.9302328752599536e-19,3.436404601999724e-18,8.987520014638721e-19,1.3216941015531808e-18,4.4056469836361075e-20,5.991679665100559e-19,1.1328806141609079e-18,0.0026785715017467737,-0.0008928571478463709,-0.0026785715017467737,-2.488851632732214e-18,-8.786360443013788e-18,5.963111948670274e-19,0.0008928571478463709,3.660075945694076e-19,6.07107814716011e-19,2.4248003495652424e-18,4.392091238230468e-19,1.3232916975087504e-18,6.166148187418436e-33,4.758098496757752e-19,1.1328806141609079e-18,0.002142857061699033,-0.0007142857066355646,1.1527495958720081e-18,-0.0014285714132711291,-4.148899310959265e-18,9.486769009248164e-20,3.660075945694076e-19,0.0004761904710903764,1.8985917293351066e-19,-1.9032393987031007e-18,8.55179642312182e-20,4.758098496757752e-19,-9.62735559218191e-19,4.376598662345233e-19,4.531522353246055e-19,0.0017857142956927419,-0.0005952381179668009,-1.0564256956701575e-17,-6.841650137505188e-18,-0.0008928571478463709,3.9302328752599536e-19,6.07107814716011e-19,1.8985917293351066e-19,0.00029761905898340046,2.3790494034752407e-18,9.516196993515503e-19,1.080448633660892e-18,1.1895247017376204e-18,7.173361453860258e-19,9.150190251976103e-19,0.0035714285913854837,-2.5342975973303675e-17,-0.02142857201397419,4.543984346162049e-17,-1.0603763102757108e-17,3.436404601999724e-18,2.4248003495652424e-18,-1.9032393987031007e-18,2.3790494034752407e-18,0.010714286006987095,-4.7580988069504814e-18,3.101020219026428e-32,-9.119689414454282e-18,-2.2204459996194763e-18,1.69932097294015e-18,0.004285714123398066,-8.339047637524712e-18,-0.004285714123398066,-0.0028571428265422583,-1.3041721621121384e-17,8.987520014638721e-19,4.392091238230468e-19,8.55179642312182e-20,9.516196993515503e-19,-4.7580988069504814e-18,0.0028571428265422583,1.1600697307027962e-18,1.8125720282864517e-32,7.612957801607556e-19,1.812608941298422e-18,0.0035714285913854837,-1.2524576573959357e-17,-0.0035714285913854837,-2.58749933142891e-18,-0.0017857142956927419,1.3216941015531808e-18,1.3232916975087504e-18,4.758098496757752e-19,1.080448633660892e-18,3.101020219026428e-32,1.1600697307027962e-18,0.0017857142956927419,3.925264000853554e-33,8.26554362910461e-33,1.3707057589274677e-32,0.0023809524718672037,-1.463623715608984e-18,1.8239378828908563e-17,-0.0071428571827709675,-2.2416687244415656e-17,4.4056469836361075e-20,6.166148187418436e-33,-9.62735559218191e-19,1.1895247017376204e-18,-9.119689414454282e-18,1.8125720282864517e-32,3.925264000853554e-33,0.0023809524718672037,2.4450081651347597e-18,3.3986419458803e-18,0.0028571428265422583,-6.479186624119658e-18,1.8715188833680703e-18,-0.0019047618843615055,-0.0014285714132711291,5.991679665100559e-19,4.758098496757752e-19,4.376598662345233e-19,7.173361453860258e-19,-2.2204459996194763e-18,7.612957801607556e-19,8.26554362910461e-33,2.4450081651347597e-18,0.0009523809421807528,1.812608941298422e-18,0.001700680237263441,-1.062874395725621e-17,-9.516197613900963e-18,-1.7295310978356892e-17,-0.003401360474526882,1.1328806141609079e-18,1.1328806141609079e-18,4.531522353246055e-19,9.150190251976103e-19,1.69932097294015e-18,1.812608941298422e-18,1.3707057589274677e-32,3.3986419458803e-18,1.812608941298422e-18,0.0008503401186317205,7.0,3.0,4.0,6.0,0.07158683240413666,-0.014547902159392834,-0.027359694242477417,-0.022363945841789246,-0.01645408198237419,0.0008267195662483573,0.0022321429569274187,0.0017857142956927419,0.0012755101779475808,0.0029761905316263437,0.0035714285913854837,0.0025510203558951616,0.0019841270986944437,0.0020408162381500006,0.0010629252064973116,-0.014547902159392834,0.009148242883384228,0.0022321429569274187,0.0017857142956927419,0.0012755101779475808,-0.0009920635493472219,-0.0007440476329065859,-0.0005952381179668009,-0.00042517005931586027,5.7777898331617076e-34,-0.0,2.829415361606727e-34,-0.0,-2.3709849482648228e-20,-1.289715712662187e-19,-0.027359694242477417,0.0022321429569274187,0.05712159723043442,0.0035714285913854837,0.0025510203558951616,-0.0,-0.0022321429569274187,-2.0328790734103208e-20,-1.927623248519789e-20,-0.01785714365541935,-0.0035714285913854837,-0.0025510203558951616,9.251858814269842e-18,2.6579147354337116e-18,3.903064128040649e-18,-0.022363945841789246,0.0017857142956927419,0.0035714285913854837,0.028798185288906097,0.0020408162381500006,9.54344251343541e-20,-1.4692214019104953e-20,-0.0011904762359336019,-1.0130634119597223e-19,1.9693241399699115e-17,-0.0023809524718672037,-6.776263578034403e-20,-0.0059523810632526875,-0.0013605442363768816,-1.5180408261815507e-19,-0.01645408198237419,0.0012755101779475808,0.0025510203558951616,0.0020408162381500006,0.012427721172571182,2.710505431213761e-20,-0.0,-2.710505431213761e-20,-0.0005102040595375001,1.3846431045153797e-17,-3.74799284059383e-33,-0.0010204081190750003,-7.17389288222266e-33,-0.0008163265301845968,-0.0015943878097459674,0.0008267195662483573,-0.0009920635493472219,-0.0,9.54344251343541e-20,2.710505431213761e-20,0.0001653439103392884,1.3552527156068805e-20,-2.710505431213761e-20,-0.0,6.253342386477225e-35,-0.0,0.0,-0.0,-3.362854514668709e-21,2.4420994992174035e-21,0.0022321429569274187,-0.0007440476329065859,-0.0022321429569274187,-1.4692214019104953e-20,-0.0,1.3552527156068805e-20,0.0007440476329065859,6.776263578034403e-21,6.4254105591347745e-21,4.183133252701645e-35,-0.0,-0.0,-0.0,-2.2546304032715537e-21,-2.9289225527377447e-21,0.0017857142956927419,-0.0005952381179668009,-2.0328790734103208e-20,-0.0011904762359336019,-2.710505431213761e-20,-2.710505431213761e-20,6.776263578034403e-21,0.00039682540227659047,1.6607668665332262e-20,9.886339404233306e-36,-0.0,-0.0,-0.0,-2.4402030018706053e-21,-3.511851432246782e-21,0.0012755101779475808,-0.00042517005931586027,-1.927623248519789e-20,-1.0130634119597223e-19,-0.0005102040595375001,-0.0,6.4254105591347745e-21,1.6607668665332262e-20,0.0001700680295471102,-4.16362854126139e-34,0.0,-1.1317661905604388e-34,0.0,2.0593335049342457e-20,4.851784908312022e-20,0.0029761905316263437,5.7777898331617076e-34,-0.01785714365541935,1.9693241399699115e-17,1.3846431045153797e-17,6.253342386477225e-35,4.183133252701645e-35,9.886339404233306e-36,-4.16362854126139e-34,0.008928571827709675,-2.4168120595946647e-18,-2.071553075769625e-18,-4.625929407134921e-18,-1.3594567576726047e-18,-1.9471384941967493e-18,0.0035714285913854837,-0.0,-0.0035714285913854837,-0.0023809524718672037,-3.74799284059383e-33,-0.0,-0.0,-0.0,0.0,-2.4168120595946647e-18,0.0023809524718672037,5.607341315582553e-34,1.2521601842184133e-33,3.679817566159495e-34,5.270572285976545e-34,0.0025510203558951616,2.829415361606727e-34,-0.0025510203558951616,-6.776263578034403e-20,-0.0010204081190750003,0.0,-0.0,-0.0,-1.1317661905604388e-34,-2.071553075769625e-18,5.607341315582553e-34,0.0010204081190750003,1.073280157901497e-33,2.710505431213761e-20,9.80864054777921e-35,0.0019841270986944437,-0.0,9.251858814269842e-18,-0.0059523810632526875,-7.17389288222266e-33,-0.0,-0.0,-0.0,0.0,-4.625929407134921e-18,1.2521601842184133e-33,1.073280157901497e-33,0.0019841270986944437,7.0434009788313895e-34,1.0088204558062184e-33,0.0020408162381500006,-2.3709849482648228e-20,2.6579147354337116e-18,-0.0013605442363768816,-0.0008163265301845968,-3.362854514668709e-21,-2.2546304032715537e-21,-2.4402030018706053e-21,2.0593335049342457e-20,-1.3594567576726047e-18,3.679817566159495e-34,2.710505431213761e-20,7.0434009788313895e-34,0.0005442177061922848,6.493584943452062e-20,0.0010629252064973116,-1.289715712662187e-19,3.903064128040649e-18,-1.5180408261815507e-19,-0.0015943878097459674,2.4420994992174035e-21,-2.9289225527377447e-21,-3.511851432246782e-21,4.851784908312022e-20,-1.9471384941967493e-18,5.270572285976545e-34,9.80864054777921e-35,1.0088204558062184e-33,6.493584943452062e-20,0.0003188775444868952,7.0,3.0,4.0,7.0,0.06305980682373047,-0.012606292963027954,-0.02372448891401291,-0.019387755542993546,-0.012606292963027954,0.0007086168043315411,0.0019132653251290321,0.0015306122368201613,0.0009566326625645161,0.0025510203558951616,0.0030612244736403227,0.0019132653251290321,0.001700680237263441,0.0015306122368201613,0.0007086168043315411,-0.012606292963027954,0.00788690522313118,0.0019132653251290321,0.0015306122368201613,0.0009566326625645161,-0.0008503401186317205,-0.0006377550889737904,-0.0005102040595375001,-0.0003188775444868952,1.69932097294015e-18,3.398641894181512e-19,2.168404344971009e-19,-1.021921983194606e-33,7.3316953260833e-20,1.1235096659470536e-19,-0.02372448891401291,0.0019132653251290321,0.049234695732593536,0.0030612244736403227,0.0019132653251290321,5.421010862427522e-20,-0.0019132653251290321,3.7766859877146346e-20,2.1202960698445503e-20,-0.015306122601032257,-0.0030612244736403227,-0.0019132653251290321,9.204654925433891e-18,2.461100963951979e-18,2.4517730549793715e-18,-0.019387755542993546,0.0015306122368201613,0.0030612244736403227,0.024829931557178497,0.0015306122368201613,7.609006333971996e-20,3.849090334577623e-19,-0.0010204081190750003,4.732701959767035e-22,2.0544443337240683e-17,-0.0020408162381500006,4.996038033934396e-19,-0.005102040711790323,-0.0010204081190750003,2.220895934173917e-19,-0.012606292963027954,0.0009566326625645161,0.0019132653251290321,0.0015306122368201613,0.00788690522313118,2.710505431213761e-20,2.303929616531697e-19,-8.131516293641283e-20,-0.0003188775444868952,1.2387124798752033e-17,5.947623508688102e-19,-0.0006377550889737904,-6.665439412930203e-33,-0.0005102040595375001,-0.0008503401186317205,0.0007086168043315411,-0.0008503401186317205,5.421010862427522e-20,7.609006333971996e-20,2.710505431213761e-20,0.00014172335795592517,-1.3552527156068805e-20,-2.710505431213761e-20,-0.0,-1.1979292603083151e-35,1.336324312694428e-36,-6.996964493530857e-22,0.0,2.9582756000153627e-22,-4.675019642583708e-21,0.0019132653251290321,-0.0006377550889737904,-0.0019132653251290321,3.849090334577623e-19,2.303929616531697e-19,-1.3552527156068805e-20,0.0006377550889737904,-1.3552527156068805e-20,-6.843980104957945e-21,-1.69932097294015e-18,-3.398641894181512e-19,-2.1306674606975448e-19,1.021921983194606e-33,-1.4624217995607247e-21,8.306705836848234e-22,0.0015306122368201613,-0.0005102040595375001,3.7766859877146346e-20,-0.0010204081190750003,-8.131516293641283e-20,-2.710505431213761e-20,-1.3552527156068805e-20,0.0003401360590942204,2.4297745484800417e-20,-0.0,6.018531076210112e-36,9.635733251576454e-22,-0.0,-2.7393471350660824e-22,1.2106548600408448e-21,0.0009566326625645161,-0.0003188775444868952,2.1202960698445503e-20,4.732701959767035e-22,-0.0003188775444868952,-0.0,-6.843980104957945e-21,2.4297745484800417e-20,0.00010629251482896507,3.1631855030856956e-34,1.6056862531373776e-35,-2.236734443615229e-22,-0.0,-2.4455501106076497e-20,-2.820333044575782e-20,0.0025510203558951616,1.69932097294015e-18,-0.015306122601032257,2.0544443337240683e-17,1.2387124798752033e-17,-1.1979292603083151e-35,-1.69932097294015e-18,-0.0,3.1631855030856956e-34,0.0076530613005161285,-5.590419106239607e-18,-3.494012148194908e-18,-3.965082408057119e-18,-1.0195925424050594e-18,-1.2272873578570443e-18,0.0030612244736403227,3.398641894181512e-19,-0.0030612244736403227,-0.0020408162381500006,5.947623508688102e-19,1.336324312694428e-36,-3.398641894181512e-19,6.018531076210112e-36,1.6056862531373776e-35,-5.590419106239607e-18,0.0020408162381500006,-3.398641894181512e-19,-8.49660486470075e-19,-1.699320947090756e-19,9.402569927296238e-34,0.0019132653251290321,2.168404344971009e-19,-0.0019132653251290321,4.996038033934396e-19,-0.0006377550889737904,-6.996964493530857e-22,-2.1306674606975448e-19,9.635733251576454e-22,-2.236734443615229e-22,-3.494012148194908e-18,-3.398641894181512e-19,0.0006377550889737904,1.951758677681671e-33,-5.421010862427522e-20,1.0323389739762596e-22,0.001700680237263441,-1.021921983194606e-33,9.204654925433891e-18,-0.005102040711790323,-6.665439412930203e-33,0.0,1.021921983194606e-33,-0.0,-0.0,-3.965082408057119e-18,-8.49660486470075e-19,1.951758677681671e-33,0.001700680237263441,5.990034980929768e-34,6.358625928309482e-34,0.0015306122368201613,7.3316953260833e-20,2.461100963951979e-18,-0.0010204081190750003,-0.0005102040595375001,2.9582756000153627e-22,-1.4624217995607247e-21,-2.7393471350660824e-22,-2.4455501106076497e-20,-1.0195925424050594e-18,-1.699320947090756e-19,-5.421010862427522e-20,5.990034980929768e-34,0.0003401360590942204,-7.524051653888532e-20,0.0007086168043315411,1.1235096659470536e-19,2.4517730549793715e-18,2.220895934173917e-19,-0.0008503401186317205,-4.675019642583708e-21,8.306705836848234e-22,1.2106548600408448e-21,-2.820333044575782e-20,-1.2272873578570443e-18,9.402569927296238e-34,1.0323389739762596e-22,6.358625928309482e-34,-7.524051653888532e-20,0.00014172335795592517,7.0,3.0,4.0,8.0,0.0563616082072258,-0.01112351194024086,-0.02094493992626667,-0.01711309514939785,-0.00997023843228817,0.0006200397037900984,0.0016741071594879031,0.0013392857508733869,0.0007440476329065859,0.0022321429569274187,0.0026785715017467737,0.0014880952658131719,0.0014880952658131719,0.0011904762359336019,0.0004960317746736109,-0.01112351194024086,0.006932043470442295,0.0016741071594879031,0.0013392857508733869,0.0007440476329065859,-0.0007440476329065859,-0.0005580357392318547,-0.00044642857392318547,-0.00024801588733680546,9.62964972193618e-34,-2.973811754344051e-19,1.8933873475574305e-34,-7.434529256613157e-19,-7.970306547072941e-20,1.1065792175126538e-19,-0.02094493992626667,0.0016741071594879031,0.04326637089252472,0.0026785715017467737,0.0014880952658131719,-0.0,-0.0016741071594879031,-2.973811754344051e-19,2.222861134363584e-20,-0.013392857275903225,-0.0026785715017467737,-0.0014880952658131719,6.938893903907228e-18,1.6929739127024541e-18,1.6673200433774642e-18,-0.01711309514939785,0.0013392857508733869,0.0026785715017467737,0.02182539738714695,0.0011904762359336019,1.8690895573065786e-20,2.50668971357557e-22,-0.0008928571478463709,6.589263244695452e-20,1.5902811974127974e-17,-0.0017857142956927419,1.0672615135404184e-19,-0.004464285913854837,-0.0007936508045531809,1.2947515623820157e-19,-0.00997023843228817,0.0007440476329065859,0.0014880952658131719,0.0011904762359336019,0.005328798200935125,1.3552527156068805e-20,-0.0,-1.2197274440461925e-19,-0.00021258502965793014,8.266656926217134e-18,-3.4384381582482886e-33,-0.00042517005931586027,-6.608470507765904e-19,-0.0003401360590942204,-0.0004960317746736109,0.0006200397037900984,-0.0007440476329065859,-0.0,1.8690895573065786e-20,1.3552527156068805e-20,0.00012400794366840273,-1.3552527156068805e-20,-0.0,6.776263578034403e-21,8.765008194115374e-35,-5.6043483250162824e-36,1.7114003366617017e-21,-3.5249570048080497e-36,6.600781128880078e-22,-4.592630757206936e-21,0.0016741071594879031,-0.0005580357392318547,-0.0016741071594879031,2.50668971357557e-22,-0.0,-1.3552527156068805e-20,0.0005580357392318547,-0.0,-3.419158736026826e-21,3.05479872504389e-35,-5.758992484630609e-36,8.470329472543003e-22,-9.610845112661166e-36,-7.161970339749319e-23,1.2570774436687033e-21,0.0013392857508733869,-0.00044642857392318547,-2.973811754344051e-19,-0.0008928571478463709,-1.2197274440461925e-19,-0.0,-0.0,0.00029761905898340046,-3.3881317890172014e-21,-1.7483524209123285e-33,1.982541126480377e-19,0.0,4.956353010071399e-19,8.747494431354795e-20,1.2213304831167646e-22,0.0007440476329065859,-0.00024801588733680546,2.222861134363584e-20,6.589263244695452e-20,-0.00021258502965793014,6.776263578034403e-21,-3.419158736026826e-21,-3.3881317890172014e-21,7.086167897796258e-05,3.0265434683522205e-34,-2.0465988734316925e-36,-3.4203243821439294e-21,-3.9636665058988307e-35,-1.592235437459348e-20,-2.3498884499117394e-20,0.0022321429569274187,9.62964972193618e-34,-0.013392857275903225,1.5902811974127974e-17,8.266656926217134e-18,8.765008194115374e-35,3.05479872504389e-35,-1.7483524209123285e-33,3.0265434683522205e-34,0.0066964286379516125,-2.7189135153452095e-18,-1.2947207757535922e-18,-3.469446951953614e-18,-7.930164505921508e-19,-8.260588005460409e-19,0.0026785715017467737,-2.973811754344051e-19,-0.0026785715017467737,-0.0017857142956927419,-3.4384381582482886e-33,-5.6043483250162824e-36,-5.758992484630609e-36,1.982541126480377e-19,-2.0465988734316925e-36,-2.7189135153452095e-18,0.0017857142956927419,5.256882368564273e-34,1.7388395492073068e-33,3.8075889807303293e-34,3.353935634623017e-34,0.0014880952658131719,1.8933873475574305e-34,-0.0014880952658131719,1.0672615135404184e-19,-0.00042517005931586027,1.7114003366617017e-21,8.470329472543003e-22,0.0,-3.4203243821439294e-21,-1.2947207757535922e-18,5.256882368564273e-34,0.00042517005931586027,6.138901697734314e-34,-3.049318610115481e-20,-5.421040831568856e-21,0.0014880952658131719,-7.434529256613157e-19,6.938893903907228e-18,-0.004464285913854837,-6.608470507765904e-19,-3.5249570048080497e-36,-9.610845112661166e-36,4.956353010071399e-19,-3.9636665058988307e-35,-3.469446951953614e-18,1.7388395492073068e-33,6.138901697734314e-34,0.0014880952658131719,4.405647177506564e-19,3.5211196299024954e-34,0.0011904762359336019,-7.970306547072941e-20,1.6929739127024541e-18,-0.0007936508045531809,-0.0003401360590942204,6.600781128880078e-22,-7.161970339749319e-23,8.747494431354795e-20,-1.592235437459348e-20,-7.930164505921508e-19,3.8075889807303293e-34,-3.049318610115481e-20,4.405647177506564e-19,0.00022675737272948027,-3.7097586751059984e-20,0.0004960317746736109,1.1065792175126538e-19,1.6673200433774642e-18,1.2947515623820157e-19,-0.0004960317746736109,-4.592630757206936e-21,1.2570774436687033e-21,1.2213304831167646e-22,-2.3498884499117394e-20,-8.260588005460409e-19,3.353935634623017e-34,-5.421040831568856e-21,3.5211196299024954e-34,-3.7097586751059984e-20,7.086167897796258e-05,7.0,3.0,5.0,3.0,0.10241874307394028,-0.02222222276031971,-0.0416666679084301,-0.028911564499139786,-0.0416666679084301,0.0013227512827143073,0.0035714285913854837,0.0023809524718672037,0.0035714285913854837,0.004761904943734407,0.004761904943734407,0.0071428571827709675,0.0022675737272948027,0.004761904943734407,0.004761904943734407,-0.02222222276031971,0.014285714365541935,0.0035714285913854837,0.0023809524718672037,0.0035714285913854837,-0.0015873016091063619,-0.0011904762359336019,-0.0007936508045531809,-0.0011904762359336019,-3.1720658023686032e-18,-5.2867765096103e-19,-1.5860329011843016e-18,-5.031000567971712e-34,-5.2867765096103e-19,-3.1720658023686032e-18,-0.0416666679084301,0.0035714285913854837,0.0892857164144516,0.004761904943734407,0.0071428571827709675,-0.0,-0.0035714285913854837,4.0657581468206416e-20,-7.930164505921508e-19,-0.02857142873108387,-0.004761904943734407,-0.0071428571827709675,-4.5315224566436314e-18,-3.1720658023686032e-18,-1.5860329632228476e-17,-0.028911564499139786,0.0023809524718672037,0.004761904943734407,0.02806122414767742,0.004761904943734407,-6.2152982017138525e-21,-4.880200694928236e-19,-0.0011904762359336019,-5.2867765096103e-19,-1.0649077711073988e-17,-0.0023809524718672037,-7.034458956570486e-34,-0.004535147454589605,-0.0023809524718672037,-7.316529570803344e-33,-0.0416666679084301,0.0035714285913854837,0.0071428571827709675,0.004761904943734407,0.0892857164144516,-0.0,-7.930164505921508e-19,-4.944748842171682e-36,-0.0035714285913854837,-1.9032395227801926e-17,-3.5217004894156947e-34,-0.0071428571827709675,-3.0186004326185235e-33,-0.004761904943734407,-0.02857142873108387,0.0013227512827143073,-0.0015873016091063619,-0.0,-6.2152982017138525e-21,-0.0,0.00026455026818439364,-2.710505431213761e-20,-0.0,-0.0,6.857157042898986e-36,-1.9082344209198855e-35,9.894200666197393e-36,-0.0,-5.4409284945327645e-36,3.957680266478957e-35,0.0035714285913854837,-0.0011904762359336019,-0.0035714285913854837,-4.880200694928236e-19,-7.930164505921508e-19,-2.710505431213761e-20,0.0011904762359336019,-1.3552527156068805e-20,-0.0,3.1720658023686032e-18,5.2867765096103e-19,7.930164505921508e-19,5.031000567971712e-34,3.5242016291535576e-34,1.7943664125912976e-33,0.0023809524718672037,-0.0007936508045531809,4.0657581468206416e-20,-0.0011904762359336019,-4.944748842171682e-36,-0.0,-1.3552527156068805e-20,0.00039682540227659047,-0.0,-1.1280446718730064e-35,-3.813646909234391e-36,-2.980605778338727e-37,-0.0,3.813646909234391e-36,-1.1922423113354909e-36,0.0035714285913854837,-0.0011904762359336019,-7.930164505921508e-19,-5.2867765096103e-19,-0.0035714285913854837,-0.0,-0.0,-0.0,0.0011904762359336019,2.113020339567165e-33,0.0,7.930164505921508e-19,0.0,5.2867765096103e-19,3.1720658023686032e-18,0.004761904943734407,-3.1720658023686032e-18,-0.02857142873108387,-1.0649077711073988e-17,-1.9032395227801926e-17,6.857157042898986e-36,3.1720658023686032e-18,-1.1280446718730064e-35,2.113020339567165e-33,0.014285714365541935,1.4086801957662779e-33,2.113020339567165e-33,2.2657612283218157e-18,1.5860329011843016e-18,7.930164816114238e-18,0.004761904943734407,-5.2867765096103e-19,-0.004761904943734407,-0.0023809524718672037,-3.5217004894156947e-34,-1.9082344209198855e-35,5.2867765096103e-19,-3.813646909234391e-36,0.0,1.4086801957662779e-33,0.0023809524718672037,3.5217004894156947e-34,0.0,0.0,0.0,0.0071428571827709675,-1.5860329011843016e-18,-0.0071428571827709675,-7.034458956570486e-34,-0.0071428571827709675,9.894200666197393e-36,7.930164505921508e-19,-2.980605778338727e-37,7.930164505921508e-19,2.113020339567165e-33,3.5217004894156947e-34,0.0071428571827709675,0.0,3.5217004894156947e-34,2.113020339567165e-33,0.0022675737272948027,-5.031000567971712e-34,-4.5315224566436314e-18,-0.004535147454589605,-3.0186004326185235e-33,-0.0,5.031000567971712e-34,-0.0,0.0,2.2657612283218157e-18,0.0,0.0,0.0011337868636474013,2.515500283985856e-34,1.2577502108695502e-33,0.004761904943734407,-5.2867765096103e-19,-3.1720658023686032e-18,-0.0023809524718672037,-0.004761904943734407,-5.4409284945327645e-36,3.5242016291535576e-34,3.813646909234391e-36,5.2867765096103e-19,1.5860329011843016e-18,0.0,3.5217004894156947e-34,2.515500283985856e-34,0.0023809524718672037,2.2891053525585126e-33,0.004761904943734407,-3.1720658023686032e-18,-1.5860329632228476e-17,-7.316529570803344e-33,-0.02857142873108387,3.957680266478957e-35,1.7943664125912976e-33,-1.1922423113354909e-36,3.1720658023686032e-18,7.930164816114238e-18,0.0,2.113020339567165e-33,1.2577502108695502e-33,2.2891053525585126e-33,0.014285714365541935,7.0,3.0,5.0,4.0,0.08282596617937088,-0.017202381044626236,-0.03232142701745033,-0.022397959604859352,-0.026428570970892906,0.0009920635493472219,0.0026785715017467737,0.0017857142956927419,0.002142857061699033,0.0035714285913854837,0.0035714285913854837,0.004285714123398066,0.001700680237263441,0.0028571428265422583,0.0023809524718672037,-0.017202381044626236,0.010892856866121292,0.0026785715017467737,0.0017857142956927419,0.002142857061699033,-0.0011904762359336019,-0.0008928571478463709,-0.0005952381179668009,-0.0007142857066355646,-2.5342975973303675e-17,-1.1810861980391453e-17,-7.387427627980432e-18,-9.269287509776334e-18,-5.181157022518277e-18,9.154256878662566e-19,-0.03232142701745033,0.0026785715017467737,0.06803571432828903,0.0035714285913854837,0.004285714123398066,-1.3444106938820255e-17,-0.0026785715017467737,-9.850542363133672e-18,2.104369398621135e-18,-0.02142857201397419,-0.0035714285913854837,-0.004285714123398066,-6.7972838917606e-18,4.2822888021783414e-18,2.2997477222268738e-17,-0.022397959604859352,0.0017857142956927419,0.0035714285913854837,0.021403061226010323,0.0028571428265422583,-8.457427936529014e-18,-8.786360443013788e-18,-0.0008928571478463709,6.778692904095894e-19,-1.0603763102757108e-17,-0.0017857142956927419,-4.758098496757752e-19,-0.003401360474526882,-0.0014285714132711291,5.400064167775842e-18,-0.026428570970892906,0.002142857061699033,0.004285714123398066,0.0028571428265422583,0.034285712987184525,-2.6020852139652106e-18,-2.488851632732214e-18,-1.9154396923527984e-18,-0.0014285714132711291,4.543984346162049e-17,9.992007618673103e-18,-0.0028571428265422583,4.871027158537446e-18,-0.0019047618843615055,-0.0071428571827709675,0.0009920635493472219,-0.0011904762359336019,-1.3444106938820255e-17,-8.457427936529014e-18,-2.6020852139652106e-18,0.00019841270113829523,5.963111948670274e-19,3.9302328752599536e-19,8.131516293641283e-20,3.436404601999724e-18,1.3216941015531808e-18,8.987520014638721e-19,1.1328806141609079e-18,5.991679665100559e-19,4.4056469836361075e-20,0.0026785715017467737,-0.0008928571478463709,-0.0026785715017467737,-8.786360443013788e-18,-2.488851632732214e-18,5.963111948670274e-19,0.0008928571478463709,6.07107814716011e-19,3.660075945694076e-19,2.4248003495652424e-18,1.3232916975087504e-18,4.392091238230468e-19,1.1328806141609079e-18,4.758098496757752e-19,-5.3021723291915325e-33,0.0017857142956927419,-0.0005952381179668009,-9.850542363133672e-18,-0.0008928571478463709,-1.9154396923527984e-18,3.9302328752599536e-19,6.07107814716011e-19,0.00029761905898340046,2.4400507166273646e-19,2.3790494034752407e-18,1.080448633660892e-18,4.758098496757752e-19,9.150190251976103e-19,3.53807326769104e-19,-4.5898403850084887e-33,0.002142857061699033,-0.0007142857066355646,2.104369398621135e-18,6.778692904095894e-19,-0.0014285714132711291,8.131516293641283e-20,3.660075945694076e-19,2.4400507166273646e-19,0.0004761904710903764,-1.9032393987031007e-18,2.9914261256343816e-33,8.55179642312182e-20,-4.531522353246055e-19,5.701197615414546e-20,-9.62735559218191e-19,0.0035714285913854837,-2.5342975973303675e-17,-0.02142857201397419,-1.0603763102757108e-17,4.543984346162049e-17,3.436404601999724e-18,2.4248003495652424e-18,2.3790494034752407e-18,-1.9032393987031007e-18,0.010714286006987095,4.8076613983941786e-32,-4.7580988069504814e-18,1.69932097294015e-18,-2.2204459996194763e-18,-9.119689414454282e-18,0.0035714285913854837,-1.1810861980391453e-17,-0.0035714285913854837,-0.0017857142956927419,9.992007618673103e-18,1.3216941015531808e-18,1.3232916975087504e-18,1.080448633660892e-18,2.9914261256343816e-33,4.8076613983941786e-32,0.0017857142956927419,-9.516196993515503e-19,1.368789115388452e-32,-6.34413150133963e-19,-2.3790494034752407e-18,0.004285714123398066,-7.387427627980432e-18,-0.004285714123398066,-4.758098496757752e-19,-0.0028571428265422583,8.987520014638721e-19,4.392091238230468e-19,4.758098496757752e-19,8.55179642312182e-20,-4.7580988069504814e-18,-9.516196993515503e-19,0.0028571428265422583,6.482140170702668e-33,5.1009919811780675e-33,5.545804186317006e-33,0.001700680237263441,-9.269287509776334e-18,-6.7972838917606e-18,-0.003401360474526882,4.871027158537446e-18,1.1328806141609079e-18,1.1328806141609079e-18,9.150190251976103e-19,-4.531522353246055e-19,1.69932097294015e-18,1.368789115388452e-32,6.482140170702668e-33,0.0008503401186317205,-1.697522733987248e-19,-7.552537427739386e-19,0.0028571428265422583,-5.181157022518277e-18,4.2822888021783414e-18,-0.0014285714132711291,-0.0019047618843615055,5.991679665100559e-19,4.758098496757752e-19,3.53807326769104e-19,5.701197615414546e-20,-2.2204459996194763e-18,-6.34413150133963e-19,5.1009919811780675e-33,-1.697522733987248e-19,0.0009523809421807528,3.0379821304116752e-33,0.0023809524718672037,9.154256878662566e-19,2.2997477222268738e-17,5.400064167775842e-18,-0.0071428571827709675,4.4056469836361075e-20,-5.3021723291915325e-33,-4.5898403850084887e-33,-9.62735559218191e-19,-9.119689414454282e-18,-2.3790494034752407e-18,5.545804186317006e-33,-7.552537427739386e-19,3.0379821304116752e-33,0.0023809524718672037,7.0,3.0,5.0,5.0,0.06964852660894394,-0.014047618955373764,-0.026428570970892906,-0.018299318850040436,-0.018299318850040436,0.0007936508045531809,0.002142857061699033,0.0014285714132711291,0.0014285714132711291,0.0028571428265422583,0.0028571428265422583,0.0028571428265422583,0.0013605442363768816,0.0019047618843615055,0.0013605442363768816,-0.014047618955373764,0.008809523656964302,0.002142857061699033,0.0014285714132711291,0.0014285714132711291,-0.0009523809421807528,-0.0007142857066355646,-0.0004761904710903764,-0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.026428570970892906,0.002142857061699033,0.054999999701976776,0.0028571428265422583,0.0028571428265422583,-0.0,-0.002142857061699033,-0.0,-0.0,-0.017142856493592262,-0.0028571428265422583,-0.0028571428265422583,-2.7189135153452095e-18,-1.268826300267926e-18,-2.7189135153452095e-18,-0.018299318850040436,0.0014285714132711291,0.0028571428265422583,0.017312925308942795,0.0019047618843615055,-0.0,-0.0,-0.0007142857066355646,-0.0,-6.7066534343559215e-18,-0.0014285714132711291,-0.0,-0.002721088472753763,-0.0009523809421807528,-1.063697307548403e-33,-0.018299318850040436,0.0014285714132711291,0.0028571428265422583,0.0019047618843615055,0.017312925308942795,-0.0,-0.0,-0.0,-0.0007142857066355646,-6.7066534343559215e-18,-0.0,-0.0014285714132711291,-1.063697307548403e-33,-0.0009523809421807528,-0.002721088472753763,0.0007936508045531809,-0.0009523809421807528,-0.0,-0.0,-0.0,0.00015873015217948705,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0007142857066355646,-0.002142857061699033,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0004761904710903764,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0004761904710903764,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0,-0.017142856493592262,-6.7066534343559215e-18,-6.7066534343559215e-18,-0.0,-0.0,-0.0,-0.0,0.008571428246796131,-0.0,-0.0,1.3594567576726047e-18,6.34413150133963e-19,1.3594567576726047e-18,0.0028571428265422583,-0.0,-0.0028571428265422583,-0.0014285714132711291,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0,-0.0028571428265422583,-0.0,-0.0014285714132711291,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0,-2.7189135153452095e-18,-0.002721088472753763,-1.063697307548403e-33,-0.0,-0.0,-0.0,-0.0,1.3594567576726047e-18,-0.0,-0.0,0.0006802721181884408,1.0062000906354684e-34,2.1561431661560882e-34,0.0019047618843615055,-0.0,-1.268826300267926e-18,-0.0009523809421807528,-0.0009523809421807528,-0.0,-0.0,-0.0,-0.0,6.34413150133963e-19,-0.0,-0.0,1.0062000906354684e-34,0.0004761904710903764,1.0062000906354684e-34,0.0013605442363768816,-0.0,-2.7189135153452095e-18,-1.063697307548403e-33,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,1.3594567576726047e-18,-0.0,-0.0,2.1561431661560882e-34,1.0062000906354684e-34,0.0006802721181884408,7.0,3.0,5.0,6.0,0.06013794243335724,-0.011876417323946953,-0.022363945841789246,-0.015476190485060215,-0.01343537401407957,0.0006613756413571537,0.0017857142956927419,0.0011904762359336019,0.0010204081190750003,0.0023809524718672037,0.0023809524718672037,0.0020408162381500006,0.0011337868636474013,0.0013605442363768816,0.0008503401186317205,-0.011876417323946953,0.007397959008812904,0.0017857142956927419,0.0011904762359336019,0.0010204081190750003,-0.0007936508045531809,-0.0005952381179668009,-0.00039682540227659047,-0.0003401360590942204,-1.5860329011843016e-18,-2.64338825480515e-19,-2.096354716419138e-19,-2.515500283985856e-34,7.621528265170658e-21,-7.259852104943656e-20,-0.022363945841789246,0.0017857142956927419,0.046173468232154846,0.0023809524718672037,0.0020408162381500006,-0.0,-0.0017857142956927419,-0.0,1.6940658945086007e-20,-0.014285714365541935,-0.0023809524718672037,-0.0020408162381500006,-2.2657612283218157e-18,-8.89363811704125e-19,-1.4993134571133502e-18,-0.015476190485060215,0.0011904762359336019,0.0023809524718672037,0.01454081665724516,0.0013605442363768816,-1.6473956211782773e-20,-2.64338825480515e-19,-0.0005952381179668009,7.621528265170658e-21,-5.664403380997269e-18,-0.0011904762359336019,1.6940658945086007e-20,-0.0022675737272948027,-0.0006802721181884408,6.042751476330202e-20,-0.01343537401407957,0.0010204081190750003,0.0020408162381500006,0.0013605442363768816,0.010051020421087742,-0.0,-2.2657611766230274e-19,-0.0,-0.0004081632650922984,-4.800581562440286e-18,-1.0062000906354684e-34,-0.0008163265301845968,-7.613880325899946e-34,-0.0005442177061922848,-0.0012755101779475808,0.0006613756413571537,-0.0007936508045531809,-0.0,-1.6473956211782773e-20,-0.0,0.00013227513409219682,-0.0,-0.0,-6.776263578034403e-21,-1.7248713645019578e-35,-2.7204642472663823e-36,-3.76158192263132e-37,-0.0,-5.065178270699342e-38,-1.684271044099691e-22,0.0017857142956927419,-0.0005952381179668009,-0.0017857142956927419,-2.64338825480515e-19,-2.2657611766230274e-19,-0.0,0.0005952381179668009,-0.0,-1.88079096131566e-36,1.5860329011843016e-18,2.64338825480515e-19,2.2657611766230274e-19,2.515500283985856e-34,9.873921810223118e-35,1.6851887013388314e-34,0.0011904762359336019,-0.00039682540227659047,-0.0,-0.0005952381179668009,-0.0,-0.0,-0.0,0.00019841270113829523,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,-0.0003401360590942204,1.6940658945086007e-20,7.621528265170658e-21,-0.0004081632650922984,-6.776263578034403e-21,-1.88079096131566e-36,-0.0,0.0001360544265480712,9.62964972193618e-35,-0.0,-6.776263578034403e-21,0.0,-3.048611306068263e-21,2.9477317836060196e-20,0.0023809524718672037,-1.5860329011843016e-18,-0.014285714365541935,-5.664403380997269e-18,-4.800581562440286e-18,-1.7248713645019578e-35,1.5860329011843016e-18,-0.0,9.62964972193618e-35,0.0071428571827709675,7.0434009788313895e-34,5.7777898331617076e-34,1.1328806141609079e-18,4.531522353246055e-19,7.788554286979727e-19,0.0023809524718672037,-2.64338825480515e-19,-0.0023809524718672037,-0.0011904762359336019,-1.0062000906354684e-34,-2.7204642472663823e-36,2.64338825480515e-19,-0.0,-0.0,7.0434009788313895e-34,0.0011904762359336019,1.0062000906354684e-34,0.0,0.0,0.0,0.0020408162381500006,-2.096354716419138e-19,-0.0020408162381500006,1.6940658945086007e-20,-0.0008163265301845968,-3.76158192263132e-37,2.2657611766230274e-19,-0.0,-6.776263578034403e-21,5.7777898331617076e-34,1.0062000906354684e-34,0.0008163265301845968,0.0,-6.776263578034403e-21,-2.3358963344212355e-20,0.0011337868636474013,-2.515500283985856e-34,-2.2657612283218157e-18,-0.0022675737272948027,-7.613880325899946e-34,-0.0,2.515500283985856e-34,-0.0,0.0,1.1328806141609079e-18,0.0,0.0,0.0005668934318237007,7.187144078510911e-35,1.235290393875049e-34,0.0013605442363768816,7.621528265170658e-21,-8.89363811704125e-19,-0.0006802721181884408,-0.0005442177061922848,-5.065178270699342e-38,9.873921810223118e-35,-0.0,-3.048611306068263e-21,4.531522353246055e-19,0.0,-6.776263578034403e-21,7.187144078510911e-35,0.0002721088530961424,-2.4171007520907942e-20,0.0008503401186317205,-7.259852104943656e-20,-1.4993134571133502e-18,6.042751476330202e-20,-0.0012755101779475808,-1.684271044099691e-22,1.6851887013388314e-34,-0.0,2.9477317836060196e-20,7.788554286979727e-19,0.0,-2.3358963344212355e-20,1.235290393875049e-34,-2.4171007520907942e-20,0.00025510202976875007,7.0,3.0,5.0,7.0,0.05293569713830948,-0.010289115831255913,-0.019387755542993546,-0.013411078602075577,-0.010289115831255913,0.0005668934318237007,0.0015306122368201613,0.0010204081190750003,0.0007653061184100807,0.0020408162381500006,0.0020408162381500006,0.0015306122368201613,0.0009718172950670123,0.0010204081190750003,0.0005668934318237007,-0.010289115831255913,0.0063775512389838696,0.0015306122368201613,0.0010204081190750003,0.0007653061184100807,-0.0006802721181884408,-0.0005102040595375001,-0.0003401360590942204,-0.00025510202976875007,-2.5730083678678998e-18,-1.3182023653924413e-18,4.445568464832021e-19,-8.021953119581338e-19,4.651656895534428e-19,1.6205170269458717e-18,-0.019387755542993546,0.0015306122368201613,0.03979591652750969,0.0020408162381500006,0.0015306122368201613,-3.7947076036992655e-19,-0.0015306122368201613,-2.081625240498377e-18,2.4966957864810545e-19,-0.01224489789456129,-0.0020408162381500006,-0.0015306122368201613,-8.209806353680013e-19,3.1220577712560974e-18,4.701936138490275e-18,-0.013411078602075577,0.0010204081190750003,0.0020408162381500006,0.012536442838609219,0.0010204081190750003,-3.9544803824472385e-19,-1.9505820470868075e-18,-0.0005102040595375001,1.5978120565046333e-19,-7.2828041697435e-19,-0.0010204081190750003,1.7141259549412007e-18,-0.0019436345901340246,-0.0005102040595375001,1.6582974674484655e-18,-0.010289115831255913,0.0007653061184100807,0.0015306122368201613,0.0010204081190750003,0.0063775512389838696,1.8236538704275362e-18,5.647029693001511e-19,5.519283021126119e-19,-0.00025510202976875007,1.3537923282354182e-17,4.159213426017189e-18,-0.0005102040595375001,1.893767560303909e-18,-0.0003401360590942204,-0.0006802721181884408,0.0005668934318237007,-0.0006802721181884408,-3.7947076036992655e-19,-3.9544803824472385e-19,1.8236538704275362e-18,0.00011337868636474013,-4.0657581468206416e-20,-1.3552527156068805e-20,-1.4230153513872246e-19,-3.7762688431166636e-20,1.8881343569348464e-19,-4.24830236772689e-20,3.5964465634135977e-20,-2.832201470778784e-20,-2.181928747986251e-19,0.0015306122368201613,-0.0005102040595375001,-0.0015306122368201613,-1.9505820470868075e-18,5.647029693001511e-19,-4.0657581468206416e-20,0.0005102040595375001,1.1516730978529528e-19,-1.2072426390398677e-20,1.1002636418370231e-18,1.4851941302919235e-19,2.3793606366430623e-20,3.64140208487175e-19,-2.6990002326902443e-34,-7.080503838505674e-20,0.0010204081190750003,-0.0003401360590942204,-2.081625240498377e-18,-0.0005102040595375001,5.519283021126119e-19,-1.3552527156068805e-20,1.1516730978529528e-19,0.0001700680295471102,-8.048283991001262e-21,8.49660486470075e-19,1.840115940764775e-20,-2.1829188382102823e-35,1.1113414513954864e-19,-7.979862421852489e-20,-4.720335892337116e-20,0.0007653061184100807,-0.00025510202976875007,2.4966957864810545e-19,1.5978120565046333e-19,-0.00025510202976875007,-1.4230153513872246e-19,-1.2072426390398677e-20,-8.048283991001262e-21,8.50340147735551e-05,1.1555579666323415e-33,1.6444826176668018e-34,-7.115076756936123e-20,1.9108836166967106e-34,-4.521211870028008e-20,-4.8714585590762864e-20,0.0020408162381500006,-2.5730083678678998e-18,-0.01224489789456129,-7.2828041697435e-19,1.3537923282354182e-17,-3.7762688431166636e-20,1.1002636418370231e-18,8.49660486470075e-19,1.1555579666323415e-33,0.006122448947280645,-3.398641894181512e-19,-1.5293888136075891e-18,3.2368019393839806e-19,-8.49660486470075e-19,-1.5482702450648777e-18,0.0020408162381500006,-1.3182023653924413e-18,-0.0020408162381500006,-0.0010204081190750003,4.159213426017189e-18,1.8881343569348464e-19,1.4851941302919235e-19,1.840115940764775e-20,1.6444826176668018e-34,-3.398641894181512e-19,0.0010204081190750003,-5.097962712025297e-19,-1.964100168699273e-19,-3.5196367043069403e-19,-4.342709072648935e-19,0.0015306122368201613,4.445568464832021e-19,-0.0015306122368201613,1.7141259549412007e-18,-0.0005102040595375001,-4.24830236772689e-20,2.3793606366430623e-20,-2.1829188382102823e-35,-7.115076756936123e-20,-1.5293888136075891e-18,-5.097962712025297e-19,0.0005102040595375001,-1.21380069495725e-19,-1.8295911660692887e-19,-1.433440412044807e-19,0.0009718172950670123,-8.021953119581338e-19,-8.209806353680013e-19,-0.0019436345901340246,1.893767560303909e-18,3.5964465634135977e-20,3.64140208487175e-19,1.1113414513954864e-19,1.9108836166967106e-34,3.2368019393839806e-19,-1.964100168699273e-19,-1.21380069495725e-19,0.00048590864753350616,-1.8488670592811885e-19,-1.7982231847715708e-19,0.0010204081190750003,4.651656895534428e-19,3.1220577712560974e-18,-0.0005102040595375001,-0.0003401360590942204,-2.832201470778784e-20,-2.6990002326902443e-34,-7.979862421852489e-20,-4.521211870028008e-20,-8.49660486470075e-19,-3.5196367043069403e-19,-1.8295911660692887e-19,-1.8488670592811885e-19,0.0001700680295471102,-1.0006310812235064e-19,0.0005668934318237007,1.6205170269458717e-18,4.701936138490275e-18,1.6582974674484655e-18,-0.0006802721181884408,-2.181928747986251e-19,-7.080503838505674e-20,-4.720335892337116e-20,-4.8714585590762864e-20,-1.5482702450648777e-18,-4.342709072648935e-19,-1.433440412044807e-19,-1.7982231847715708e-19,-1.0006310812235064e-19,0.00011337868636474013,7.0,3.0,5.0,8.0,0.04728599637746811,-0.00907738134264946,-0.01711309514939785,-0.011833900585770607,-0.008134921081364155,0.0004960317746736109,0.0013392857508733869,0.0008928571478463709,0.0005952381179668009,0.0017857142956927419,0.0017857142956927419,0.0011904762359336019,0.0008503401186317205,0.0007936508045531809,0.00039682540227659047,-0.00907738134264946,0.0056051588617265224,0.0013392857508733869,0.0008928571478463709,0.0005952381179668009,-0.0005952381179668009,-0.00044642857392318547,-0.00029761905898340046,-0.00019841270113829523,-1.5222356658629602e-17,-6.5001932893657486e-18,-2.55465136891897e-18,-5.383603687176343e-18,-1.775954913994972e-18,-3.593821363567993e-19,-0.01711309514939785,0.0013392857508733869,0.0349702388048172,0.0017857142956927419,0.0011904762359336019,-7.101524229780054e-18,-0.0013392857508733869,-5.100469689666792e-18,-1.7747112479439987e-18,-0.010714286006987095,-0.0017857142956927419,-0.0011904762359336019,-3.3986419458803e-18,8.4244907419104945e-19,2.420061225040773e-18,-0.011833900585770607,0.0008928571478463709,0.0017857142956927419,0.01101899053901434,0.0007936508045531809,-4.447177331123437e-18,-4.569354389139357e-18,-0.00044642857392318547,-1.1550630132501658e-18,-5.249013543298146e-18,-0.0008928571478463709,-2.140701161527813e-19,-0.001700680237263441,-0.00039682540227659047,4.692520134782431e-19,-0.008134921081364155,0.0005952381179668009,0.0011904762359336019,0.0007936508045531809,0.004308389965444803,-1.1248597539537109e-18,-1.043544591017298e-18,-7.657177843178875e-19,-0.0001700680295471102,8.845910002492093e-18,2.0203038601479834e-18,-0.0003401360590942204,3.865323754098976e-19,-0.00022675737272948027,-0.00039682540227659047,0.0004960317746736109,-0.0005952381179668009,-7.101524229780054e-18,-4.447177331123437e-18,-1.1248597539537109e-18,9.920635056914762e-05,2.981555974335137e-19,1.9651164376299768e-19,4.0657581468206416e-20,1.718202300999862e-18,6.608470507765904e-19,2.769285919517545e-19,5.664403070804539e-19,1.8510664549817846e-19,4.312215317861109e-20,0.0013392857508733869,-0.00044642857392318547,-0.0013392857508733869,-4.569354389139357e-18,-1.043544591017298e-18,2.981555974335137e-19,0.00044642857392318547,3.049318610115481e-19,1.1709956492212794e-19,1.2124001747826212e-18,6.616458487543752e-19,1.4982612575247886e-19,5.664403070804539e-19,1.5111358067712936e-19,3.172354940766782e-20,0.0008928571478463709,-0.00029761905898340046,-5.100469689666792e-18,-0.00044642857392318547,-7.657177843178875e-19,1.9651164376299768e-19,3.049318610115481e-19,0.00014880952949170023,7.480798508905105e-20,1.1895247017376204e-18,5.40224316830446e-19,1.5083489835888142e-19,4.575095125988051e-19,1.1039399943707268e-19,2.2409369694524282e-20,0.0005952381179668009,-0.00019841270113829523,-1.7747112479439987e-18,-1.1550630132501658e-18,-0.0001700680295471102,4.0657581468206416e-20,1.1709956492212794e-19,7.480798508905105e-20,5.668934318237007e-05,3.2098283550904506e-19,1.699320947090756e-19,8.840380998030818e-20,1.1688451088756122e-19,5.858741917893513e-20,-5.5663948021083925e-21,0.0017857142956927419,-1.5222356658629602e-17,-0.010714286006987095,-5.249013543298146e-18,8.845910002492093e-18,1.718202300999862e-18,1.2124001747826212e-18,1.1895247017376204e-18,3.2098283550904506e-19,0.0053571430034935474,2.4918102800107957e-32,-1.1328806141609079e-18,8.49660486470075e-19,-4.909149431428177e-19,-9.912706020142797e-19,0.0017857142956927419,-6.5001932893657486e-18,-0.0017857142956927419,-0.0008928571478463709,2.0203038601479834e-18,6.608470507765904e-19,6.616458487543752e-19,5.40224316830446e-19,1.699320947090756e-19,2.4918102800107957e-32,0.0008928571478463709,-2.2657611766230274e-19,7.100589789189351e-33,-1.5105075372466654e-19,-2.64338825480515e-19,0.0011904762359336019,-2.55465136891897e-18,-0.0011904762359336019,-2.140701161527813e-19,-0.0003401360590942204,2.769285919517545e-19,1.4982612575247886e-19,1.5083489835888142e-19,8.840380998030818e-20,-1.1328806141609079e-18,-2.2657611766230274e-19,0.0003401360590942204,2.3066020349575254e-33,-3.3881317890172014e-21,-1.146606826627393e-21,0.0008503401186317205,-5.383603687176343e-18,-3.3986419458803e-18,-0.001700680237263441,3.865323754098976e-19,5.664403070804539e-19,5.664403070804539e-19,4.575095125988051e-19,1.1688451088756122e-19,8.49660486470075e-19,7.100589789189351e-33,2.3066020349575254e-33,0.00042517005931586027,-4.0417207952077335e-20,-6.293781405194439e-20,0.0007936508045531809,-1.775954913994972e-18,8.4244907419104945e-19,-0.00039682540227659047,-0.00022675737272948027,1.8510664549817846e-19,1.5111358067712936e-19,1.1039399943707268e-19,5.858741917893513e-20,-4.909149431428177e-19,-1.5105075372466654e-19,-3.3881317890172014e-21,-4.0417207952077335e-20,0.00011337868636474013,-5.8257345033958065e-21,0.00039682540227659047,-3.593821363567993e-19,2.420061225040773e-18,4.692520134782431e-19,-0.00039682540227659047,4.312215317861109e-20,3.172354940766782e-20,2.2409369694524282e-20,-5.5663948021083925e-21,-9.912706020142797e-19,-2.64338825480515e-19,-1.146606826627393e-21,-6.293781405194439e-20,-5.8257345033958065e-21,5.668934318237007e-05,7.0,3.0,6.0,3.0,0.08865582942962646,-0.018801964819431305,-0.03528911620378494,-0.021258503198623657,-0.03528911620378494,0.001102292793802917,0.0029761905316263437,0.001700680237263441,0.0029761905316263437,0.003968254197388887,0.003401360474526882,0.0059523810632526875,0.0014172336086630821,0.003401360474526882,0.003968254197388887,-0.018801964819431305,0.01199924387037754,0.0029761905316263437,0.001700680237263441,0.0029761905316263437,-0.0013227512827143073,-0.0009920635493472219,-0.0005668934318237007,-0.0009920635493472219,2.311115933264683e-33,5.760531668493887e-20,-0.0,-3.7947076036992655e-19,-2.710505431213761e-20,1.925929944387236e-33,-0.03528911620378494,0.0029761905316263437,0.07497165352106094,0.003401360474526882,0.0059523810632526875,-0.0,-0.0029761905316263437,6.109738242545365e-20,-0.0,-0.02380952425301075,-0.003401360474526882,-0.0059523810632526875,5.32445489670482e-18,4.453595425496236e-18,2.643388161747331e-17,-0.021258503198623657,0.001700680237263441,0.003401360474526882,0.016298186033964157,0.003401360474526882,-4.170008511058395e-21,2.710505431213761e-20,-0.0006802721181884408,-0.0,1.89294459831248e-17,-0.0013605442363768816,-6.404847743716256e-33,-0.002125850412994623,-0.0013605442363768816,1.055406857309676e-17,-0.03528911620378494,0.0029761905316263437,0.0059523810632526875,0.003401360474526882,0.07497165352106094,-0.0,-8.470329472543003e-21,1.3481509610710651e-33,-0.0029761905316263437,3.612630592497563e-17,-6.776263578034403e-20,-0.0059523810632526875,5.095750210681871e-18,-0.003401360474526882,-0.02380952425301075,0.001102292793802917,-0.0013227512827143073,-0.0,-4.170008511058395e-21,-0.0,0.00022045854711905122,-0.0,-0.0,-0.0,-1.1751849799946053e-34,2.612495777151647e-22,0.0,-3.2546671261443723e-21,3.648757497663194e-21,-3.3333403766658853e-35,0.0029761905316263437,-0.0009920635493472219,-0.0029761905316263437,2.710505431213761e-20,-8.470329472543003e-21,-0.0,0.0009920635493472219,-0.0,-0.0,-6.79641388889491e-35,1.7939481554227705e-21,-0.0,-5.949717487328211e-21,3.3881317890172014e-21,-2.407412430484045e-35,0.001700680237263441,-0.0005668934318237007,6.109738242545365e-20,-0.0006802721181884408,1.3481509610710651e-33,-0.0,-0.0,0.00022675737272948027,-0.0,-5.917126321352458e-34,-2.443895426265117e-20,0.0,1.6263032587282567e-19,-0.0,-6.7407548053553255e-34,0.0029761905316263437,-0.0009920635493472219,-0.0,-0.0,-0.0029761905316263437,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.003968254197388887,2.311115933264683e-33,-0.02380952425301075,1.89294459831248e-17,3.612630592497563e-17,-1.1751849799946053e-34,-6.79641388889491e-35,-5.917126321352458e-34,-0.0,0.011904762126505375,-3.6827611154994015e-18,-4.028020099324441e-18,-2.5961847278607168e-18,-2.2657612283218157e-18,-1.3216940808736655e-17,0.003401360474526882,5.760531668493887e-20,-0.003401360474526882,-0.0013605442363768816,-6.776263578034403e-20,2.612495777151647e-22,1.7939481554227705e-21,-2.443895426265117e-20,-0.0,-3.6827611154994015e-18,0.0013605442363768816,1.2460758070914579e-33,-4.569441992736105e-20,2.710505431213761e-20,4.140749380432557e-33,0.0059523810632526875,-0.0,-0.0059523810632526875,-6.404847743716256e-33,-0.0059523810632526875,0.0,-0.0,0.0,-0.0,-4.028020099324441e-18,1.2460758070914579e-33,0.0059523810632526875,8.7842865310576e-34,7.666286710959985e-34,4.4720007497584006e-33,0.0014172336086630821,-3.7947076036992655e-19,5.32445489670482e-18,-0.002125850412994623,5.095750210681871e-18,-3.2546671261443723e-21,-5.949717487328211e-21,1.6263032587282567e-19,-0.0,-2.5961847278607168e-18,-4.569441992736105e-20,8.7842865310576e-34,0.00042517005931586027,-5.470958612752888e-19,-1.888134460332423e-18,0.003401360474526882,-2.710505431213761e-20,4.453595425496236e-18,-0.0013605442363768816,-0.003401360474526882,3.648757497663194e-21,3.3881317890172014e-21,-0.0,-0.0,-2.2657612283218157e-18,2.710505431213761e-20,7.666286710959985e-34,-5.470958612752888e-19,0.0013605442363768816,-1.1133961680370681e-18,0.003968254197388887,1.925929944387236e-33,2.643388161747331e-17,1.055406857309676e-17,-0.02380952425301075,-3.3333403766658853e-35,-2.407412430484045e-35,-6.7407548053553255e-34,-0.0,-1.3216940808736655e-17,4.140749380432557e-33,4.4720007497584006e-33,-1.888134460332423e-18,-1.1133961680370681e-18,0.011904762126505375,7.0,3.0,6.0,4.0,0.07158683240413666,-0.014547902159392834,-0.027359694242477417,-0.01645408198237419,-0.022363945841789246,0.0008267195662483573,0.0022321429569274187,0.0012755101779475808,0.0017857142956927419,0.0029761905316263437,0.0025510203558951616,0.0035714285913854837,0.0010629252064973116,0.0020408162381500006,0.0019841270986944437,-0.014547902159392834,0.009148242883384228,0.0022321429569274187,0.0012755101779475808,0.0017857142956927419,-0.0009920635493472219,-0.0007440476329065859,-0.00042517005931586027,-0.0005952381179668009,9.638746027830628e-34,2.829415361606727e-34,-0.0,-1.8973538018496328e-19,-4.0657581468206416e-20,4.333342374871281e-34,-0.027359694242477417,0.0022321429569274187,0.05712159723043442,0.0025510203558951616,0.0035714285913854837,-0.0,-0.0022321429569274187,-2.0328790734103208e-20,-4.0657581468206416e-20,-0.01785714365541935,-0.0025510203558951616,-0.0035714285913854837,3.9069204440563716e-18,2.7138313176616837e-18,9.251858814269842e-18,-0.01645408198237419,0.0012755101779475808,0.0025510203558951616,0.012427721172571182,0.0020408162381500006,6.507656707388267e-20,-0.0,-0.0005102040595375001,-4.708797369026855e-20,1.3846431045153797e-17,-0.0010204081190750003,-3.74799284059383e-33,-0.0015943878097459674,-0.0008163265301845968,3.7718617023611634e-18,-0.022363945841789246,0.0017857142956927419,0.0035714285913854837,0.0020408162381500006,0.028798185288906097,5.421010862427522e-20,-4.489274620447792e-20,-8.470329472543003e-20,-0.0011904762359336019,1.9693241399699115e-17,-3.738518356126202e-33,-0.0023809524718672037,2.710505431213761e-18,-0.0013605442363768816,-0.0059523810632526875,0.0008267195662483573,-0.0009920635493472219,-0.0,6.507656707388267e-20,5.421010862427522e-20,0.0001653439103392884,1.3552527156068805e-20,-0.0,-0.0,-1.9888407317851583e-35,0.0,-0.0,3.953009713479256e-21,7.1548063467702085e-22,-1.0380088644537863e-35,0.0022321429569274187,-0.0007440476329065859,-0.0022321429569274187,-0.0,-4.489274620447792e-20,1.3552527156068805e-20,0.0007440476329065859,6.776263578034403e-21,1.3552527156068805e-20,7.792795731841757e-36,-0.0,-0.0,-4.21435314670948e-21,1.6940658945086007e-21,-6.018531076210112e-36,0.0012755101779475808,-0.00042517005931586027,-2.0328790734103208e-20,-0.0005102040595375001,-8.470329472543003e-20,-0.0,6.776263578034403e-21,0.0001700680295471102,1.6940658945086007e-20,-3.365932564663616e-34,-1.1317661905604388e-34,0.0,6.776263578034403e-20,1.3552527156068805e-20,-1.4444474582904269e-34,0.0017857142956927419,-0.0005952381179668009,-4.0657581468206416e-20,-4.708797369026855e-20,-0.0011904762359336019,-0.0,1.3552527156068805e-20,1.6940658945086007e-20,0.00039682540227659047,-6.064152511321035e-37,-0.0,0.0,-7.676124003134683e-22,2.8771572224581033e-22,8.444899859777275e-37,0.0029761905316263437,9.638746027830628e-34,-0.01785714365541935,1.3846431045153797e-17,1.9693241399699115e-17,-1.9888407317851583e-35,7.792795731841757e-36,-3.365932564663616e-34,-6.064152511321035e-37,0.008928571827709675,-2.071553075769625e-18,-2.4168120595946647e-18,-1.9471384941967493e-18,-1.3594567576726047e-18,-4.625929407134921e-18,0.0025510203558951616,2.829415361606727e-34,-0.0025510203558951616,-0.0010204081190750003,-3.738518356126202e-33,0.0,-0.0,-1.1317661905604388e-34,-0.0,-2.071553075769625e-18,0.0010204081190750003,5.607341315582553e-34,9.80864054777921e-35,-0.0,1.0592614694129797e-33,0.0035714285913854837,-0.0,-0.0035714285913854837,-3.74799284059383e-33,-0.0023809524718672037,-0.0,-0.0,0.0,0.0,-2.4168120595946647e-18,5.607341315582553e-34,0.0023809524718672037,5.270572285976545e-34,3.679817566159495e-34,1.2521601842184133e-33,0.0010629252064973116,-1.8973538018496328e-19,3.9069204440563716e-18,-0.0015943878097459674,2.710505431213761e-18,3.953009713479256e-21,-4.21435314670948e-21,6.776263578034403e-20,-7.676124003134683e-22,-1.9471384941967493e-18,9.80864054777921e-35,5.270572285976545e-34,0.0003188775444868952,-2.7854273151957516e-19,-6.608470507765904e-19,0.0020408162381500006,-4.0657581468206416e-20,2.7138313176616837e-18,-0.0008163265301845968,-0.0013605442363768816,7.1548063467702085e-22,1.6940658945086007e-21,1.3552527156068805e-20,2.8771572224581033e-22,-1.3594567576726047e-18,-0.0,3.679817566159495e-34,-2.7854273151957516e-19,0.0005442177061922848,-3.1175093118628214e-19,0.0019841270986944437,4.333342374871281e-34,9.251858814269842e-18,3.7718617023611634e-18,-0.0059523810632526875,-1.0380088644537863e-35,-6.018531076210112e-36,-1.4444474582904269e-34,8.444899859777275e-37,-4.625929407134921e-18,1.0592614694129797e-33,1.2521601842184133e-33,-6.608470507765904e-19,-3.1175093118628214e-19,0.0019841270986944437,7.0,3.0,6.0,5.0,0.06013794243335724,-0.011876417323946953,-0.022363945841789246,-0.01343537401407957,-0.015476190485060215,0.0006613756413571537,0.0017857142956927419,0.0010204081190750003,0.0011904762359336019,0.0023809524718672037,0.0020408162381500006,0.0023809524718672037,0.0008503401186317205,0.0013605442363768816,0.0011337868636474013,-0.011876417323946953,0.007397959008812904,0.0017857142956927419,0.0010204081190750003,0.0011904762359336019,-0.0007936508045531809,-0.0005952381179668009,-0.0003401360590942204,-0.00039682540227659047,-1.5860329011843016e-18,-2.1133306597872283e-19,-2.64338825480515e-19,-1.3552527156068805e-19,8.470329472543003e-21,-1.913647176364845e-34,-0.022363945841789246,0.0017857142956927419,0.046173468232154846,0.0020408162381500006,0.0023809524718672037,5.421010862427522e-20,-0.0017857142956927419,1.5243056530341315e-20,-9.573168042118458e-39,-0.014285714365541935,-0.0020408162381500006,-0.0023809524718672037,-1.5046184765743824e-18,-8.89363811704125e-19,-2.2657612283218157e-18,-0.01343537401407957,0.0010204081190750003,0.0020408162381500006,0.010051020421087742,0.0013605442363768816,-1.8644019312375892e-20,-2.2657611766230274e-19,-0.0004081632650922984,-2.3017257779664826e-21,-4.800581562440286e-18,-0.0008163265301845968,-3.6252180376932087e-19,-0.0012755101779475808,-0.0005442177061922848,1.872891382799449e-18,-0.015476190485060215,0.0011904762359336019,0.0023809524718672037,0.0013605442363768816,0.01454081665724516,-0.0,-2.64338825480515e-19,6.168603694576521e-21,-0.0005952381179668009,-5.664403380997269e-18,-3.4558114482423487e-19,-0.0011904762359336019,1.951563910473908e-18,-0.0006802721181884408,-0.0022675737272948027,0.0006613756413571537,-0.0007936508045531809,5.421010862427522e-20,-1.8644019312375892e-20,-0.0,0.00013227513409219682,-0.0,-6.776263578034403e-21,-0.0,-1.7248713645019578e-35,3.315468803476203e-37,-6.371265566917548e-37,-2.7141260554821313e-35,-0.0,-0.0,0.0017857142956927419,-0.0005952381179668009,-0.0017857142956927419,-2.2657611766230274e-19,-2.64338825480515e-19,-0.0,0.0005952381179668009,-1.692319232564778e-36,0.0,1.5860329011843016e-18,2.2657611766230274e-19,2.64338825480515e-19,1.7073546906633751e-34,9.873921810223118e-35,2.515500283985856e-34,0.0010204081190750003,-0.0003401360590942204,1.5243056530341315e-20,-0.0004081632650922984,6.168603694576521e-21,-6.776263578034403e-21,-1.692319232564778e-36,0.0001360544265480712,7.6724192598882755e-22,9.62964972193618e-35,-6.097222612136526e-21,3.009265538105056e-36,5.421010862427522e-20,-3.3881317890172014e-21,-2.407412430484045e-35,0.0011904762359336019,-0.00039682540227659047,-9.573168042118458e-39,-2.3017257779664826e-21,-0.0005952381179668009,-0.0,0.0,7.6724192598882755e-22,0.00019841270113829523,0.0,3.829266656327997e-39,0.0,1.88079096131566e-37,-0.0,-0.0,0.0023809524718672037,-1.5860329011843016e-18,-0.014285714365541935,-4.800581562440286e-18,-5.664403380997269e-18,-1.7248713645019578e-35,1.5860329011843016e-18,9.62964972193618e-35,0.0,0.0071428571827709675,5.729729562957346e-34,7.0434009788313895e-34,7.788554286979727e-19,4.531522353246055e-19,1.1328806141609079e-18,0.0020408162381500006,-2.1133306597872283e-19,-0.0020408162381500006,-0.0008163265301845968,-3.4558114482423487e-19,3.315468803476203e-37,2.2657611766230274e-19,-6.097222612136526e-21,3.829266656327997e-39,5.729729562957346e-34,0.0008163265301845968,3.6252180376932087e-19,-2.123695911409114e-20,-6.776263578034403e-21,2.407412430484045e-35,0.0023809524718672037,-2.64338825480515e-19,-0.0023809524718672037,-3.6252180376932087e-19,-0.0011904762359336019,-6.371265566917548e-37,2.64338825480515e-19,3.009265538105056e-36,0.0,7.0434009788313895e-34,3.6252180376932087e-19,0.0011904762359336019,-0.0,-0.0,0.0,0.0008503401186317205,-1.3552527156068805e-19,-1.5046184765743824e-18,-0.0012755101779475808,1.951563910473908e-18,-2.7141260554821313e-35,1.7073546906633751e-34,5.421010862427522e-20,1.88079096131566e-37,7.788554286979727e-19,-2.123695911409114e-20,-0.0,0.00025510202976875007,-2.6792878933899512e-19,-3.2368019393839806e-19,0.0013605442363768816,8.470329472543003e-21,-8.89363811704125e-19,-0.0005442177061922848,-0.0006802721181884408,-0.0,9.873921810223118e-35,-3.3881317890172014e-21,-0.0,4.531522353246055e-19,-6.776263578034403e-21,-0.0,-2.6792878933899512e-19,0.0002721088530961424,-1.2724528410191175e-19,0.0011337868636474013,-1.913647176364845e-34,-2.2657612283218157e-18,1.872891382799449e-18,-0.0022675737272948027,-0.0,2.515500283985856e-34,-2.407412430484045e-35,-0.0,1.1328806141609079e-18,2.407412430484045e-35,0.0,-3.2368019393839806e-19,-1.2724528410191175e-19,0.0005668934318237007,7.0,3.0,6.0,6.0,0.051889870315790176,-0.010038738138973713,-0.018920067697763443,-0.011358114890754223,-0.011358114890754223,0.0005511463969014585,0.0014880952658131719,0.0008503401186317205,0.0008503401186317205,0.0019841270986944437,0.001700680237263441,0.001700680237263441,0.0007086168043315411,0.0009718172950670123,0.0007086168043315411,-0.010038738138973713,0.006212207023054361,0.0014880952658131719,0.0008503401186317205,0.0008503401186317205,-0.0006613756413571537,-0.0004960317746736109,-0.00028344671591185033,-0.00028344671591185033,2.1666711874356403e-33,-1.4264228831465456e-20,1.2401077203110786e-21,-2.439454888092385e-19,-3.136561930932817e-20,-1.862612086875435e-19,-0.018920067697763443,0.0014880952658131719,0.038761336356401443,0.001700680237263441,0.001700680237263441,5.421010862427522e-20,-0.0014880952658131719,-2.6854648807700623e-21,1.1447510824660471e-20,-0.011904762126505375,-0.001700680237263441,-0.001700680237263441,2.5482940723211935e-18,1.2397827481902704e-18,2.5979174644488622e-18,-0.011358114890754223,0.0008503401186317205,0.001700680237263441,0.008440637961030006,0.0009718172950670123,7.088428131838704e-21,1.0893083325574001e-20,-0.0003401360590942204,-2.2787145665216664e-20,9.9502432695453e-18,-0.0006802721181884408,-2.710505431213761e-20,-0.0010629252064973116,-0.00038872691220603883,7.550395029952873e-19,-0.011358114890754223,0.0008503401186317205,0.001700680237263441,0.0009718172950670123,0.008440637961030006,-0.0,1.0893083325574001e-20,2.7911105468360024e-21,-0.0003401360590942204,9.9502432695453e-18,-1.1522392480522828e-20,-0.0006802721181884408,1.2468324983583301e-18,-0.00038872691220603883,-0.0010629252064973116,0.0005511463969014585,-0.0006613756413571537,5.421010862427522e-20,7.088428131838704e-21,-0.0,0.00011022927355952561,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-4.428571741472892e-37,-6.885940016036686e-39,1.0437995452073105e-21,2.0956360239961523e-37,-2.244383491387742e-22,0.0014880952658131719,-0.0004960317746736109,-0.0014880952658131719,1.0893083325574001e-20,1.0893083325574001e-20,-1.3552527156068805e-20,0.0004960317746736109,-3.6310276405590726e-21,-3.6310276405590726e-21,0.0,-1.8272855744159155e-37,1.5886110109600404e-38,-3.385423730368188e-36,-4.018019093187253e-37,-2.9647604782443033e-36,0.0008503401186317205,-0.00028344671591185033,-2.6854648807700623e-21,-0.0003401360590942204,2.7911105468360024e-21,-0.0,-3.6310276405590726e-21,0.00011337868636474013,4.397710219989888e-23,-3.851859888774472e-34,5.927462370662057e-21,-4.960431083192706e-22,9.486769009248164e-20,3.3881317890172014e-21,-2.00810715471731e-21,0.0008503401186317205,-0.00028344671591185033,1.1447510824660471e-20,-2.2787145665216664e-20,-0.0003401360590942204,-0.0,-3.6310276405590726e-21,4.397710219989888e-23,0.00011337868636474013,-4.81482486096809e-34,-2.2177101478071744e-22,-1.0056746768030745e-34,-3.373300576065766e-24,9.158116419390208e-21,7.709612822208611e-20,0.0019841270986944437,2.1666711874356403e-33,-0.011904762126505375,9.9502432695453e-18,9.9502432695453e-18,-0.0,0.0,-3.851859888774472e-34,-4.81482486096809e-34,0.0059523810632526875,-1.8413805577497008e-18,-1.8413805577497008e-18,-1.2980923639303584e-18,-6.473603878767961e-19,-1.2980923639303584e-18,0.001700680237263441,-1.4264228831465456e-20,-0.001700680237263441,-0.0006802721181884408,-1.1522392480522828e-20,-4.428571741472892e-37,-1.8272855744159155e-37,5.927462370662057e-21,-2.2177101478071744e-22,-1.8413805577497008e-18,0.0006802721181884408,-9.920862166385412e-22,2.070645846045762e-20,6.776263578034403e-21,-6.930344748322836e-22,0.001700680237263441,1.2401077203110786e-21,-0.001700680237263441,-2.710505431213761e-20,-0.0006802721181884408,-6.885940016036686e-39,1.5886110109600404e-38,-4.960431083192706e-22,-1.0056746768030745e-34,-1.8413805577497008e-18,-9.920862166385412e-22,0.0006802721181884408,-1.5501346503888482e-21,1.5198933230127573e-20,8.713778910527341e-35,0.0007086168043315411,-2.439454888092385e-19,2.5482940723211935e-18,-0.0010629252064973116,1.2468324983583301e-18,1.0437995452073105e-21,-3.385423730368188e-36,9.486769009248164e-20,-3.373300576065766e-24,-1.2980923639303584e-18,2.070645846045762e-20,-1.5501346503888482e-21,0.00021258502965793014,-1.2509448526230316e-19,-1.9029578212527088e-19,0.0009718172950670123,-3.136561930932817e-20,1.2397827481902704e-18,-0.00038872691220603883,-0.00038872691220603883,2.0956360239961523e-37,-4.018019093187253e-37,3.3881317890172014e-21,9.158116419390208e-21,-6.473603878767961e-19,6.776263578034403e-21,1.5198933230127573e-20,-1.2509448526230316e-19,0.00015549076488241553,8.209111651212439e-20,0.0007086168043315411,-1.862612086875435e-19,2.5979174644488622e-18,7.550395029952873e-19,-0.0010629252064973116,-2.244383491387742e-22,-2.9647604782443033e-36,-2.00810715471731e-21,7.709612822208611e-20,-1.2980923639303584e-18,-6.930344748322836e-22,8.713778910527341e-35,-1.9029578212527088e-19,8.209111651212439e-20,0.00021258502965793014,7.0,3.0,6.0,7.0,0.045651793479919434,-0.00869574025273323,-0.01639941707253456,-0.009839650243520737,-0.00869574025273323,0.0004724111931864172,0.0012755101779475808,0.0007288630004040897,0.0006377550889737904,0.001700680237263441,0.0014577260008081794,0.0012755101779475808,0.0006073858239687979,0.0007288630004040897,0.0004724111931864172,-0.00869574025273323,0.005355118308216333,0.0012755101779475808,0.0007288630004040897,0.0006377550889737904,-0.0005668934318237007,-0.00042517005931586027,-0.00024295432376675308,-0.00021258502965793014,4.333342374871281e-34,1.739823037990848e-20,9.9700749699677e-22,-8.131516293641283e-20,7.83113373212832e-21,8.507497023910484e-20,-0.01639941707253456,0.0012755101779475808,0.03340622037649155,0.0014577260008081794,0.0012755101779475808,-0.0,-0.0012755101779475808,2.6200794037426566e-20,9.612123061201747e-21,-0.010204081423580647,-0.0014577260008081794,-0.0012755101779475808,-1.0544931536050499e-18,-4.587019451505886e-19,-8.143454060844072e-19,-0.009839650243520737,0.0007288630004040897,0.0014577260008081794,0.007276481948792934,0.0007288630004040897,2.1152313657385103e-20,9.33692798778231e-21,-0.0002915451768785715,9.785293807115863e-21,-3.5099068372554204e-18,-0.000583090353757143,2.710505431213761e-20,-0.0009110787068493664,-0.0002915451768785715,5.201600687959949e-19,-0.00869574025273323,0.0006377550889737904,0.0012755101779475808,0.0007288630004040897,0.005355118308216333,1.3552527156068805e-20,8.169812494180501e-21,-1.533111713630001e-21,-0.00021258502965793014,-3.0614750631927137e-18,2.0998729482088734e-20,-0.00042517005931586027,1.0570971181733668e-18,-0.00024295432376675308,-0.0005668934318237007,0.0004724111931864172,-0.0005668934318237007,-0.0,2.1152313657385103e-20,1.3552527156068805e-20,9.448223863728344e-05,-0.0,-6.776263578034403e-21,-0.0,0.0,6.157138641674053e-37,1.848197767970359e-38,9.713800315152318e-23,3.1260000228419843e-37,-8.073908313660954e-22,0.0012755101779475808,-0.00042517005931586027,-0.0012755101779475808,9.33692798778231e-21,8.169812494180501e-21,-0.0,0.00042517005931586027,-3.1123094638930313e-21,-2.7232708313935003e-21,0.0,2.22875937810701e-37,1.2771931664811218e-38,-1.128474576789396e-36,1.0031890100907508e-37,1.00302728903758e-36,0.0007288630004040897,-0.00024295432376675308,2.6200794037426566e-20,-0.0002915451768785715,-1.533111713630001e-21,-6.776263578034403e-21,-3.1123094638930313e-21,9.718172805150971e-05,1.964548502206864e-21,0.0,-6.266982853610995e-21,-3.9880301394483734e-22,3.3881317890172014e-20,-0.0,-6.094970584646076e-22,0.0006377550889737904,-0.00021258502965793014,9.612123061201747e-21,9.785293807115863e-21,-0.00021258502965793014,-0.0,-2.7232708313935003e-21,1.964548502206864e-21,7.086167897796258e-05,-1.4444474582904269e-34,-5.769242974904354e-22,2.447791240339212e-38,-1.3398429627960642e-21,-2.6103780453417014e-21,-2.610106222806424e-20,0.001700680237263441,4.333342374871281e-34,-0.010204081423580647,-3.5099068372554204e-18,-3.0614750631927137e-18,0.0,0.0,0.0,-1.4444474582904269e-34,0.005102040711790323,-4.648995783640052e-35,3.812914736391975e-37,5.563253357550024e-19,2.4276013899145e-19,4.090957945688128e-19,0.0014577260008081794,1.739823037990848e-20,-0.0014577260008081794,-0.000583090353757143,2.0998729482088734e-20,6.157138641674053e-37,2.22875937810701e-37,-6.266982853610995e-21,-5.769242974904354e-22,-4.648995783640052e-35,0.000583090353757143,-7.976060278896747e-22,-2.176745976772466e-20,-3.3881317890172014e-21,-1.5384647596497624e-21,0.0012755101779475808,9.9700749699677e-22,-0.0012755101779475808,2.710505431213761e-20,-0.00042517005931586027,1.848197767970359e-38,1.2771931664811218e-38,-3.9880301394483734e-22,2.447791240339212e-38,3.812914736391975e-37,-7.976060278896747e-22,0.00042517005931586027,-1.2462593712459624e-21,-6.1160017930841105e-21,-2.942854853761755e-38,0.0006073858239687979,-8.131516293641283e-20,-1.0544931536050499e-18,-0.0009110787068493664,1.0570971181733668e-18,9.713800315152318e-23,-1.128474576789396e-36,3.3881317890172014e-20,-1.3398429627960642e-21,5.563253357550024e-19,-2.176745976772466e-20,-1.2462593712459624e-21,0.00018221575010102242,-1.3490091821927244e-19,-1.153810584254578e-19,0.0007288630004040897,7.83113373212832e-21,-4.587019451505886e-19,-0.0002915451768785715,-0.00024295432376675308,3.1260000228419843e-37,1.0031890100907508e-37,-0.0,-2.6103780453417014e-21,2.4276013899145e-19,-3.3881317890172014e-21,-6.1160017930841105e-21,-1.3490091821927244e-19,9.718172805150971e-05,1.9823561094418036e-20,0.0004724111931864172,8.507497023910484e-20,-8.143454060844072e-19,5.201600687959949e-19,-0.0005668934318237007,-8.073908313660954e-22,1.00302728903758e-36,-6.094970584646076e-22,-2.610106222806424e-20,4.090957945688128e-19,-1.5384647596497624e-21,-2.942854853761755e-38,-1.153810584254578e-19,1.9823561094418036e-20,9.448223863728344e-05,7.0,3.0,6.0,8.0,0.04076318070292473,-0.007670776452869177,-0.014473497867584229,-0.0086805559694767,-0.0068735829554498196,0.00041335978312417865,0.0011160714784637094,0.0006377550889737904,0.0004960317746736109,0.0014880952658131719,0.0012755101779475808,0.0009920635493472219,0.0005314626032486558,0.0005668934318237007,0.0003306878206785768,-0.007670776452869177,0.004706396255642176,0.0011160714784637094,0.0006377550889737904,0.0004960317746736109,-0.0004960317746736109,-0.00037202381645329297,-0.00021258502965793014,-0.0001653439103392884,-6.7407548053553255e-34,1.383869270970973e-36,5.929230630780102e-21,-7.693850446365584e-35,-4.494739505486897e-21,6.846363903774004e-20,-0.014473497867584229,0.0011160714784637094,0.02935444936156273,0.0012755101779475808,0.0009920635493472219,-0.0,-0.0011160714784637094,5.5941475896608115e-37,5.929230630780102e-21,-0.008928571827709675,-0.0012755101779475808,-0.0009920635493472219,2.2790372703581387e-18,8.200143333161745e-19,1.099062368792443e-18,-0.0086805559694767,0.0006377550889737904,0.0012755101779475808,0.006395266391336918,0.0005668934318237007,2.3172757233508425e-20,-0.0,-0.00025510202976875007,-1.7866143187975e-20,7.22531677153229e-18,-0.0005102040595375001,-2.964615315390051e-20,-0.0007971939048729837,-0.00022675737272948027,3.6348241895443636e-19,-0.0068735829554498196,0.0004960317746736109,0.0009920635493472219,0.0005668934318237007,0.0036173199769109488,-1.3552527156068805e-20,-0.0,-1.3371403682488102e-20,-0.00014172335795592517,5.949871268605138e-18,9.440671784674232e-20,-0.00028344671591185033,7.386018215614219e-19,-0.0001619695540284738,-0.0003306878206785768,0.00041335978312417865,-0.0004960317746736109,-0.0,2.3172757233508425e-20,-1.3552527156068805e-20,8.26719551696442e-05,-0.0,-0.0,-3.3881317890172014e-21,-0.0,0.0,-2.8935246636624357e-38,-0.0,-1.7734505460654233e-38,2.3456297622267984e-21,0.0011160714784637094,-0.00037202381645329297,-0.0011160714784637094,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,-0.00021258502965793014,5.5941475896608115e-37,-0.00025510202976875007,-1.3371403682488102e-20,-0.0,-0.0,8.50340147735551e-05,4.457134695461629e-21,0.0,-0.0,-1.5983278667453923e-37,0.0,1.2116356318792589e-37,-1.8996877289459976e-36,0.0004960317746736109,-0.0001653439103392884,5.929230630780102e-21,-1.7866143187975e-20,-0.00014172335795592517,-3.3881317890172014e-21,-0.0,4.457134695461629e-21,4.724111931864172e-05,1.925929944387236e-34,-3.953912266833567e-37,-1.6940658945086007e-21,2.1982430256738706e-35,1.28421122958243e-21,-2.3917210091283347e-20,0.0014880952658131719,-6.7407548053553255e-34,-0.008928571827709675,7.22531677153229e-18,5.949871268605138e-18,-0.0,-0.0,0.0,1.925929944387236e-34,0.004464285913854837,-1.0357765378848125e-18,-1.1508629002923513e-18,-9.735692470983746e-19,-3.776268713869693e-19,-5.507058842636234e-19,0.0012755101779475808,1.383869270970973e-36,-0.0012755101779475808,-0.0005102040595375001,9.440671784674232e-20,0.0,-0.0,-0.0,-3.953912266833567e-37,-1.0357765378848125e-18,0.0005102040595375001,2.6207917466296566e-34,-1.3275945101094922e-19,-3.7762688431166636e-20,1.8885108827114411e-34,0.0009920635493472219,5.929230630780102e-21,-0.0009920635493472219,-2.964615315390051e-20,-0.00028344671591185033,-2.8935246636624357e-38,-0.0,-1.5983278667453923e-37,-1.6940658945086007e-21,-1.1508629002923513e-18,2.6207917466296566e-34,0.00028344671591185033,2.2870418089598426e-34,8.470329472543003e-21,6.712336410733405e-22,0.0005314626032486558,-7.693850446365584e-35,2.2790372703581387e-18,-0.0007971939048729837,7.386018215614219e-19,-0.0,-0.0,0.0,2.1982430256738706e-35,-9.735692470983746e-19,-1.3275945101094922e-19,2.2870418089598426e-34,0.0001594387722434476,-7.515839301369529e-20,-7.867226918051762e-20,0.0005668934318237007,-4.494739505486897e-21,8.200143333161745e-19,-0.00022675737272948027,-0.0001619695540284738,-1.7734505460654233e-38,-0.0,1.2116356318792589e-37,1.28421122958243e-21,-3.776268713869693e-19,-3.7762688431166636e-20,8.470329472543003e-21,-7.515839301369529e-20,6.478781870100647e-05,8.536834309116127e-21,0.0003306878206785768,6.846363903774004e-20,1.099062368792443e-18,3.6348241895443636e-19,-0.0003306878206785768,2.3456297622267984e-21,-0.0,-1.8996877289459976e-36,-2.3917210091283347e-20,-5.507058842636234e-19,1.8885108827114411e-34,6.712336410733405e-22,-7.867226918051762e-20,8.536834309116127e-21,4.724111931864172e-05,7.0,3.0,7.0,3.0,0.07818405330181122,-0.016298186033964157,-0.030612245202064514,-0.016298186033964157,-0.030612245202064514,0.0009448223863728344,0.0025510203558951616,0.0012755101779475808,0.0025510203558951616,0.003401360474526882,0.0025510203558951616,0.005102040711790323,0.0009448223863728344,0.0025510203558951616,0.003401360474526882,-0.016298186033964157,0.010345805436372757,0.0025510203558951616,0.0012755101779475808,0.0025510203558951616,-0.0011337868636474013,-0.0008503401186317205,-0.00042517005931586027,-0.0008503401186317205,8.769358671157119e-34,-0.0,-0.0,2.168404344971009e-19,-0.0,0.0,-0.030612245202064514,0.0025510203558951616,0.06462585180997849,0.0025510203558951616,0.005102040711790323,-5.421010862427522e-20,-0.0025510203558951616,-2.0328790734103208e-20,-4.0657581468206416e-20,-0.020408162847161293,-0.0025510203558951616,-0.005102040711790323,-1.6395106447737377e-18,-1.69932097294015e-18,-1.1328806761994538e-17,-0.016298186033964157,0.0012755101779475808,0.0025510203558951616,0.010345805436372757,0.0025510203558951616,4.7309984443033806e-20,-2.710505431213761e-20,-0.00042517005931586027,-1.0422698669192626e-19,-5.758809917898252e-18,-0.0008503401186317205,-0.0,-0.0011337868636474013,-0.0008503401186317205,-3.196781498974181e-33,-0.030612245202064514,0.0025510203558951616,0.005102040711790323,0.0025510203558951616,0.06462585180997849,-5.421010862427522e-20,-4.0657581468206416e-20,-1.2197274440461925e-19,-0.0025510203558951616,-1.3877787807814457e-17,-0.0,-0.005102040711790323,-0.0,-0.0025510203558951616,-0.020408162847161293,0.0009448223863728344,-0.0011337868636474013,-5.421010862427522e-20,4.7309984443033806e-20,-5.421010862427522e-20,0.0001889644772745669,2.710505431213761e-20,-0.0,2.710505431213761e-20,-2.79824363914582e-35,0.0,0.0,-1.8253711232285905e-21,-0.0,-0.0,0.0025510203558951616,-0.0008503401186317205,-0.0025510203558951616,-2.710505431213761e-20,-4.0657581468206416e-20,2.710505431213761e-20,0.0008503401186317205,6.776263578034403e-21,1.3552527156068805e-20,5.078041607661683e-36,-0.0,-0.0,1.0425021277645988e-21,-0.0,-0.0,0.0012755101779475808,-0.00042517005931586027,-2.0328790734103208e-20,-0.00042517005931586027,-1.2197274440461925e-19,-0.0,6.776263578034403e-21,0.00014172335795592517,4.0657581468206416e-20,-2.2995355690346565e-34,-0.0,-0.0,-6.776263578034403e-20,-0.0,-0.0,0.0025510203558951616,-0.0008503401186317205,-4.0657581468206416e-20,-1.0422698669192626e-19,-0.0025510203558951616,2.710505431213761e-20,1.3552527156068805e-20,4.0657581468206416e-20,0.0008503401186317205,-1.0267348376102096e-35,-0.0,-0.0,-2.7301166799249786e-21,-0.0,-0.0,0.003401360474526882,8.769358671157119e-34,-0.020408162847161293,-5.758809917898252e-18,-1.3877787807814457e-17,-2.79824363914582e-35,5.078041607661683e-36,-2.2995355690346565e-34,-1.0267348376102096e-35,0.010204081423580647,-0.0,-0.0,8.181915891376256e-19,8.49660486470075e-19,5.664403380997269e-18,0.0025510203558951616,-0.0,-0.0025510203558951616,-0.0008503401186317205,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0008503401186317205,-0.0,-0.0,-0.0,-0.0,0.005102040711790323,-0.0,-0.005102040711790323,-0.0,-0.005102040711790323,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.005102040711790323,-0.0,-0.0,-0.0,0.0009448223863728344,2.168404344971009e-19,-1.6395106447737377e-18,-0.0011337868636474013,-0.0,-1.8253711232285905e-21,1.0425021277645988e-21,-6.776263578034403e-20,-2.7301166799249786e-21,8.181915891376256e-19,-0.0,-0.0,0.0001889644772745669,5.2406255916372e-36,4.541875531884635e-34,0.0025510203558951616,-0.0,-1.69932097294015e-18,-0.0008503401186317205,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,8.49660486470075e-19,-0.0,-0.0,5.2406255916372e-36,0.0008503401186317205,4.716563175966443e-34,0.003401360474526882,0.0,-1.1328806761994538e-17,-3.196781498974181e-33,-0.020408162847161293,-0.0,-0.0,-0.0,-0.0,5.664403380997269e-18,-0.0,-0.0,4.541875531884635e-34,4.716563175966443e-34,0.010204081423580647,7.0,3.0,7.0,4.0,0.06305980682373047,-0.012606292963027954,-0.02372448891401291,-0.012606292963027954,-0.019387755542993546,0.0007086168043315411,0.0019132653251290321,0.0009566326625645161,0.0015306122368201613,0.0025510203558951616,0.0019132653251290321,0.0030612244736403227,0.0007086168043315411,0.0015306122368201613,0.001700680237263441,-0.012606292963027954,0.00788690522313118,0.0019132653251290321,0.0009566326625645161,0.0015306122368201613,-0.0008503401186317205,-0.0006377550889737904,-0.0003188775444868952,-0.0005102040595375001,1.69932097294015e-18,2.04443905171772e-19,3.398641894181512e-19,8.131516293641283e-20,-2.710505431213761e-20,-1.021921983194606e-33,-0.02372448891401291,0.0019132653251290321,0.049234695732593536,0.0019132653251290321,0.0030612244736403227,5.421010862427522e-20,-0.0019132653251290321,1.9247686676129142e-20,2.2640791242344464e-20,-0.015306122601032257,-0.0019132653251290321,-0.0030612244736403227,2.4543203576757286e-18,2.294083272110172e-18,9.204654925433891e-18,-0.012606292963027954,0.0009566326625645161,0.0019132653251290321,0.00788690522313118,0.0015306122368201613,-1.602182607442725e-20,2.303929616531697e-19,-0.0003188775444868952,-8.416739801076931e-20,1.2387124798752033e-17,-0.0006377550889737904,5.947623508688102e-19,-0.0008503401186317205,-0.0005102040595375001,-6.665439412930203e-33,-0.019387755542993546,0.0015306122368201613,0.0030612244736403227,0.0015306122368201613,0.024829931557178497,-0.0,3.601929801522544e-19,-1.0164395367051604e-19,-0.0010204081190750003,2.0544443337240683e-17,3.4217618507963104e-19,-0.0020408162381500006,-2.710505431213761e-20,-0.0010204081190750003,-0.005102040711790323,0.0007086168043315411,-0.0008503401186317205,5.421010862427522e-20,-1.602182607442725e-20,-0.0,0.00014172335795592517,-1.3552527156068805e-20,-6.776263578034403e-21,-0.0,6.307709574174607e-36,1.1273053061645818e-21,-9.17574503355532e-36,2.9657197711444585e-21,1.0187892466326939e-21,0.0,0.0019132653251290321,-0.0006377550889737904,-0.0019132653251290321,2.303929616531697e-19,3.601929801522544e-19,-1.3552527156068805e-20,0.0006377550889737904,-6.776263578034403e-21,-6.776263578034403e-21,-1.69932097294015e-18,-2.1169649553566624e-19,-3.398641894181512e-19,2.5112693982291765e-22,-0.0,1.021921983194606e-33,0.0009566326625645161,-0.0003188775444868952,1.9247686676129142e-20,-0.0003188775444868952,-1.0164395367051604e-19,-6.776263578034403e-21,-6.776263578034403e-21,0.00010629251482896507,2.710505431213761e-20,1.6232799826969553e-34,3.6036809505533576e-22,-0.0,-3.3881317890172014e-20,6.776263578034403e-21,-0.0,0.0015306122368201613,-0.0005102040595375001,2.2640791242344464e-20,-8.416739801076931e-20,-0.0010204081190750003,-0.0,-6.776263578034403e-21,2.710505431213761e-20,0.0003401360590942204,2.0095019965051534e-35,-7.706671221739737e-22,5.4436509147684793e-36,5.336564506640899e-22,1.0275561418623408e-22,-0.0,0.0025510203558951616,1.69932097294015e-18,-0.015306122601032257,1.2387124798752033e-17,2.0544443337240683e-17,6.307709574174607e-36,-1.69932097294015e-18,1.6232799826969553e-34,2.0095019965051534e-35,0.0076530613005161285,-3.494012148194908e-18,-5.590419106239607e-18,-1.2272873578570443e-18,-1.0195925424050594e-18,-3.965082408057119e-18,0.0019132653251290321,2.04443905171772e-19,-0.0019132653251290321,-0.0006377550889737904,3.4217618507963104e-19,1.1273053061645818e-21,-2.1169649553566624e-19,3.6036809505533576e-22,-7.706671221739737e-22,-3.494012148194908e-18,0.0006377550889737904,-3.398641894181512e-19,-1.6632373617938573e-22,-0.0,1.951758677681671e-33,0.0030612244736403227,3.398641894181512e-19,-0.0030612244736403227,5.947623508688102e-19,-0.0020408162381500006,-9.17574503355532e-36,-3.398641894181512e-19,-0.0,5.4436509147684793e-36,-5.590419106239607e-18,-3.398641894181512e-19,0.0020408162381500006,9.027796614315168e-34,-1.699320947090756e-19,-8.49660486470075e-19,0.0007086168043315411,8.131516293641283e-20,2.4543203576757286e-18,-0.0008503401186317205,-2.710505431213761e-20,2.9657197711444585e-21,2.5112693982291765e-22,-3.3881317890172014e-20,5.336564506640899e-22,-1.2272873578570443e-18,-1.6632373617938573e-22,9.027796614315168e-34,0.00014172335795592517,1.0425021075697597e-20,6.358625928309482e-34,0.0015306122368201613,-2.710505431213761e-20,2.294083272110172e-18,-0.0005102040595375001,-0.0010204081190750003,1.0187892466326939e-21,-0.0,6.776263578034403e-21,1.0275561418623408e-22,-1.0195925424050594e-18,-0.0,-1.699320947090756e-19,1.0425021075697597e-20,0.0003401360590942204,5.990034980929768e-34,0.001700680237263441,-1.021921983194606e-33,9.204654925433891e-18,-6.665439412930203e-33,-0.005102040711790323,0.0,1.021921983194606e-33,-0.0,-0.0,-3.965082408057119e-18,1.951758677681671e-33,-8.49660486470075e-19,6.358625928309482e-34,5.990034980929768e-34,0.001700680237263441,7.0,3.0,7.0,5.0,0.05293569713830948,-0.010289115831255913,-0.019387755542993546,-0.010289115831255913,-0.013411078602075577,0.0005668934318237007,0.0015306122368201613,0.0007653061184100807,0.0010204081190750003,0.0020408162381500006,0.0015306122368201613,0.0020408162381500006,0.0005668934318237007,0.0010204081190750003,0.0009718172950670123,-0.010289115831255913,0.0063775512389838696,0.0015306122368201613,0.0007653061184100807,0.0010204081190750003,-0.0006802721181884408,-0.0005102040595375001,-0.00025510202976875007,-0.0003401360590942204,-2.5730083678678998e-18,1.896586979572402e-19,-1.7005495429449444e-18,1.2821612789228933e-18,3.345013384000741e-20,-1.5304757289324838e-18,-0.019387755542993546,0.0015306122368201613,0.03979591652750969,0.0015306122368201613,0.0020408162381500006,-3.2526065174565133e-19,-0.0015306122368201613,-5.228562607714372e-21,-2.4639723146533036e-18,-0.01224489789456129,-0.0015306122368201613,-0.0020408162381500006,4.062865496218544e-18,2.3224053158985282e-18,-2.2775415210154896e-18,-0.010289115831255913,0.0007653061184100807,0.0015306122368201613,0.0063775512389838696,0.0010204081190750003,1.81803131700886e-18,5.647029693001511e-19,-0.00025510202976875007,-1.0253458937580954e-18,1.3537923282354182e-17,-0.0005102040595375001,8.8451394837515e-19,-0.0006802721181884408,-0.0003401360590942204,-1.5304757289324838e-18,-0.013411078602075577,0.0010204081190750003,0.0020408162381500006,0.0010204081190750003,0.012536442838609219,-3.9835211427903267e-19,-1.9505820470868075e-18,-1.5744163902519132e-18,-0.0005102040595375001,-7.2828041697435e-19,-1.761571690708747e-18,-0.0010204081190750003,-5.421010862427522e-19,-0.0005102040595375001,-0.0019436345901340246,0.0005668934318237007,-0.0006802721181884408,-3.2526065174565133e-19,1.81803131700886e-18,-3.9835211427903267e-19,0.00011337868636474013,-4.0657581468206416e-20,-1.3552527156068805e-19,-2.0328790734103208e-20,-3.7762688431166636e-20,-4.24830236772689e-20,1.8881343569348464e-19,-2.194621834485877e-19,-2.832201470778784e-20,3.5964465634135977e-20,0.0015306122368201613,-0.0005102040595375001,-0.0015306122368201613,5.647029693001511e-19,-1.9505820470868075e-18,-4.0657581468206416e-20,0.0005102040595375001,-1.2072426390398677e-20,1.1516730978529528e-19,1.1002636418370231e-18,2.3793606366430623e-20,1.4851941302919235e-19,-7.080503838505674e-20,-1.1435209044799213e-34,3.64140208487175e-19,0.0007653061184100807,-0.00025510202976875007,-5.228562607714372e-21,-0.00025510202976875007,-1.5744163902519132e-18,-1.3552527156068805e-19,-1.2072426390398677e-20,8.50340147735551e-05,6.933385889153997e-20,1.0773196340355025e-33,-7.115076756936123e-20,1.2744906780063243e-19,-4.6467226339335786e-20,6.098637220230962e-20,2.4276013899145e-19,0.0010204081190750003,-0.0003401360590942204,-2.4639723146533036e-18,-1.0253458937580954e-18,-0.0005102040595375001,-2.0328790734103208e-20,1.1516730978529528e-19,6.933385889153997e-20,0.0001700680295471102,8.49660486470075e-19,1.2744906780063243e-19,1.840115940764775e-20,1.2272873578570443e-19,-2.3238577868930345e-20,1.1113414513954864e-19,0.0020408162381500006,-2.5730083678678998e-18,-0.01224489789456129,1.3537923282354182e-17,-7.2828041697435e-19,-3.7762688431166636e-20,1.1002636418370231e-18,1.0773196340355025e-33,8.49660486470075e-19,0.006122448947280645,-1.5293888136075891e-18,-3.398641894181512e-19,-1.5482702450648777e-18,-8.49660486470075e-19,3.2368019393839806e-19,0.0015306122368201613,1.896586979572402e-19,-0.0015306122368201613,-0.0005102040595375001,-1.761571690708747e-18,-4.24830236772689e-20,2.3793606366430623e-20,-7.115076756936123e-20,1.2744906780063243e-19,-1.5293888136075891e-18,0.0005102040595375001,-7.733644357707838e-20,-1.568965683605495e-19,-0.0,3.64140208487175e-19,0.0020408162381500006,-1.7005495429449444e-18,-0.0020408162381500006,8.8451394837515e-19,-0.0010204081190750003,1.8881343569348464e-19,1.4851941302919235e-19,1.2744906780063243e-19,1.840115940764775e-20,-3.398641894181512e-19,-7.733644357707838e-20,0.0010204081190750003,-9.440671784674232e-20,-2.2657611766230274e-19,-1.964100168699273e-19,0.0005668934318237007,1.2821612789228933e-18,4.062865496218544e-18,-0.0006802721181884408,-5.421010862427522e-19,-2.194621834485877e-19,-7.080503838505674e-20,-4.6467226339335786e-20,1.2272873578570443e-19,-1.5482702450648777e-18,-1.568965683605495e-19,-9.440671784674232e-20,0.00011337868636474013,-1.8706885038929922e-20,3.5964465634135977e-20,0.0010204081190750003,3.345013384000741e-20,2.3224053158985282e-18,-0.0003401360590942204,-0.0005102040595375001,-2.832201470778784e-20,-1.1435209044799213e-34,6.098637220230962e-20,-2.3238577868930345e-20,-8.49660486470075e-19,-0.0,-2.2657611766230274e-19,-1.8706885038929922e-20,0.0001700680295471102,1.1113414513954864e-19,0.0009718172950670123,-1.5304757289324838e-18,-2.2775415210154896e-18,-1.5304757289324838e-18,-0.0019436345901340246,3.5964465634135977e-20,3.64140208487175e-19,2.4276013899145e-19,1.1113414513954864e-19,3.2368019393839806e-19,3.64140208487175e-19,-1.964100168699273e-19,3.5964465634135977e-20,1.1113414513954864e-19,0.00048590864753350616,7.0,3.0,7.0,6.0,0.045651793479919434,-0.00869574025273323,-0.01639941707253456,-0.00869574025273323,-0.009839650243520737,0.0004724111931864172,0.0012755101779475808,0.0006377550889737904,0.0007288630004040897,0.001700680237263441,0.0012755101779475808,0.0014577260008081794,0.0004724111931864172,0.0007288630004040897,0.0006073858239687979,-0.00869574025273323,0.005355118308216333,0.0012755101779475808,0.0006377550889737904,0.0007288630004040897,-0.0005668934318237007,-0.00042517005931586027,-0.00021258502965793014,-0.00024295432376675308,4.81482486096809e-35,1.3184719761889324e-21,8.594774918292485e-21,1.0842021724855044e-19,-2.594931174416484e-20,-9.56585781556589e-20,-0.01639941707253456,0.0012755101779475808,0.03340622037649155,0.0012755101779475808,0.0014577260008081794,-0.0,-0.0012755101779475808,9.523237496062809e-21,1.7889759840698242e-20,-0.010204081423580647,-0.0012755101779475808,-0.0014577260008081794,-8.145824450286919e-19,-5.372686971042174e-19,-1.083194149511532e-18,-0.00869574025273323,0.0006377550889737904,0.0012755101779475808,0.005355118308216333,0.0007288630004040897,3.1656279590586796e-20,8.169812494180501e-21,-0.00021258502965793014,-5.033768197365383e-20,-3.0614750631927137e-18,-0.00042517005931586027,-4.0657581468206416e-20,-0.0005668934318237007,-0.00024295432376675308,-7.310007684397926e-20,-0.009839650243520737,0.0007288630004040897,0.0014577260008081794,0.0007288630004040897,0.007276481948792934,2.710505431213761e-20,9.33692798778231e-21,-2.323607694004708e-20,-0.0002915451768785715,-3.5099068372554204e-18,-9.532568319554606e-21,-0.000583090353757143,1.3552527156068805e-20,-0.0002915451768785715,-0.0009110787068493664,0.0004724111931864172,-0.0005668934318237007,-0.0,3.1656279590586796e-20,2.710505431213761e-20,9.448223863728344e-05,-0.0,-0.0,-1.3552527156068805e-20,0.0,6.416486813607836e-38,1.88079096131566e-37,-4.2938969831434675e-21,-9.185720843691685e-37,9.64772595681973e-22,0.0012755101779475808,-0.00042517005931586027,-0.0012755101779475808,8.169812494180501e-21,9.33692798778231e-21,-0.0,0.00042517005931586027,-2.7232708313935003e-21,-3.1123094638930313e-21,0.0,1.688997650736881e-38,1.101013431677512e-37,1.316553672920962e-36,-3.324175687406377e-37,-9.649945689446262e-37,0.0006377550889737904,-0.00021258502965793014,9.523237496062809e-21,-0.00021258502965793014,-2.323607694004708e-20,-0.0,-2.7232708313935003e-21,7.086167897796258e-05,7.440717407700363e-21,-9.62964972193618e-35,-4.1657358889344245e-22,-4.1481707964744114e-23,-2.710505431213761e-20,-0.0,1.7605785060948058e-22,0.0007288630004040897,-0.00024295432376675308,1.7889759840698242e-20,-5.033768197365383e-20,-0.0002915451768785715,-1.3552527156068805e-20,-3.1123094638930313e-21,7.440717407700363e-21,9.718172805150971e-05,9.62964972193618e-35,-2.7500486327796934e-23,-3.3881317890172014e-21,3.221103353924851e-22,1.0379724859224649e-20,3.5543753819773264e-20,0.001700680237263441,4.81482486096809e-35,-0.010204081423580647,-3.0614750631927137e-18,-3.5099068372554204e-18,0.0,0.0,-9.62964972193618e-35,9.62964972193618e-35,0.005102040711790323,-1.1657092966432739e-36,4.711092009020504e-38,4.090957945688128e-19,2.4276013899145e-19,5.563253357550024e-19,0.0012755101779475808,1.3184719761889324e-21,-0.0012755101779475808,-0.00042517005931586027,-9.532568319554606e-21,6.416486813607836e-38,1.688997650736881e-38,-4.1657358889344245e-22,-2.7500486327796934e-23,-1.1657092966432739e-36,0.00042517005931586027,-8.296341592948823e-23,-1.1108628700577812e-21,3.3881317890172014e-21,-8.593901819664361e-23,0.0014577260008081794,8.594774918292485e-21,-0.0014577260008081794,-4.0657581468206416e-20,-0.000583090353757143,1.88079096131566e-37,1.101013431677512e-37,-4.1481707964744114e-23,-3.3881317890172014e-21,4.711092009020504e-38,-8.296341592948823e-23,0.000583090353757143,-1.106178879059843e-22,1.6633602070005507e-20,-1.1679481672106177e-20,0.0004724111931864172,1.0842021724855044e-19,-8.145824450286919e-19,-0.0005668934318237007,1.3552527156068805e-20,-4.2938969831434675e-21,1.316553672920962e-36,-2.710505431213761e-20,3.221103353924851e-22,4.090957945688128e-19,-1.1108628700577812e-21,-1.106178879059843e-22,9.448223863728344e-05,-5.212510638822994e-22,-1.0735026195349059e-21,0.0007288630004040897,-2.594931174416484e-20,-5.372686971042174e-19,-0.00024295432376675308,-0.0002915451768785715,-9.185720843691685e-37,-3.324175687406377e-37,-0.0,1.0379724859224649e-20,2.4276013899145e-19,3.3881317890172014e-21,1.6633602070005507e-20,-5.212510638822994e-22,9.718172805150971e-05,3.1854243944451196e-20,0.0006073858239687979,-9.56585781556589e-20,-1.083194149511532e-18,-7.310007684397926e-20,-0.0009110787068493664,9.64772595681973e-22,-9.649945689446262e-37,1.7605785060948058e-22,3.5543753819773264e-20,5.563253357550024e-19,-8.593901819664361e-23,-1.1679481672106177e-20,-1.0735026195349059e-21,3.1854243944451196e-20,0.00018221575010102242,7.0,3.0,7.0,7.0,0.04014820232987404,-0.007531584240496159,-0.014212828129529953,-0.007531584240496159,-0.007531584240496159,0.00040492386324331164,0.001093294471502304,0.000546647235751152,0.000546647235751152,0.0014577260008081794,0.001093294471502304,0.001093294471502304,0.00040492386324331164,0.000546647235751152,0.00040492386324331164,-0.007531584240496159,0.004616132006049156,0.001093294471502304,0.000546647235751152,0.000546647235751152,-0.00048590864753350616,-0.00036443150020204484,-0.00018221575010102242,-0.00018221575010102242,-0.0,-1.011779718929713e-21,-9.163438567306034e-22,-0.0,-1.0324879714996829e-20,4.90630507718786e-21,-0.014212828129529953,0.001093294471502304,0.02879008837044239,0.001093294471502304,0.001093294471502304,-0.0,-0.001093294471502304,-9.163438567306034e-22,-1.011779718929713e-21,-0.008746355772018433,-0.001093294471502304,-0.001093294471502304,1.4001705874224648e-18,7.283258085104639e-19,1.3999160225889516e-18,-0.007531584240496159,0.000546647235751152,0.001093294471502304,0.004616132006049156,0.000546647235751152,1.3612486845265746e-21,-0.0,-0.00018221575010102242,-2.9493720488333825e-21,6.749746235547484e-18,-0.00036443150020204484,-6.776263578034403e-21,-0.00048590864753350616,-0.00018221575010102242,-1.114877664670022e-20,-0.007531584240496159,0.000546647235751152,0.001093294471502304,0.000546647235751152,0.004616132006049156,-0.0,-0.0,-4.4502526981680295e-21,-0.00018221575010102242,6.749746235547484e-18,-7.468513584338986e-21,-0.00036443150020204484,-1.3552527156068805e-20,-0.00018221575010102242,-0.00048590864753350616,0.00040492386324331164,-0.00048590864753350616,-0.0,1.3612486845265746e-21,-0.0,8.09847770142369e-05,-0.0,-0.0,-0.0,-0.0,-3.215419456239725e-39,-5.531726581411647e-39,2.353877385032418e-22,2.756468145021911e-38,-2.6739254486920383e-22,0.001093294471502304,-0.00036443150020204484,-0.001093294471502304,-0.0,-0.0,-0.0,0.00036443150020204484,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.000546647235751152,-0.00018221575010102242,-9.163438567306034e-22,-0.00018221575010102242,-4.4502526981680295e-21,-0.0,-0.0,6.073858094168827e-05,2.2815811229681713e-22,-0.0,-6.858898760480807e-35,3.0544795224353445e-22,-0.0,1.6940658945086007e-21,-2.495180422295013e-22,0.000546647235751152,-0.00018221575010102242,-1.011779718929713e-21,-2.9493720488333825e-21,-0.00018221575010102242,-0.0,-0.0,2.2815811229681713e-22,6.073858094168827e-05,-0.0,3.3725989789538803e-22,-6.859114573896778e-35,-5.100067793787984e-22,1.7475606098408783e-21,-8.065664780310267e-22,0.0014577260008081794,-0.0,-0.008746355772018433,6.749746235547484e-18,6.749746235547484e-18,-0.0,-0.0,-0.0,-0.0,0.004373177886009216,-1.4494832698325432e-18,-1.4494832698325432e-18,-7.013070394759732e-19,-3.64140208487175e-19,-7.013070394759732e-19,0.001093294471502304,-1.011779718929713e-21,-0.001093294471502304,-0.00036443150020204484,-7.468513584338986e-21,-3.215419456239725e-39,-0.0,-6.858898760480807e-35,3.3725989789538803e-22,-1.4494832698325432e-18,0.00036443150020204484,6.108959044870689e-22,4.953700794145608e-35,-0.0,8.993596940629695e-22,0.001093294471502304,-9.163438567306034e-22,-0.001093294471502304,-6.776263578034403e-21,-0.00036443150020204484,-5.531726581411647e-39,-0.0,3.0544795224353445e-22,-6.859114573896778e-35,-1.4494832698325432e-18,6.108959044870689e-22,0.00036443150020204484,8.145278894784579e-22,-1.5135782680610548e-23,4.95380066524768e-35,0.00040492386324331164,-0.0,1.4001705874224648e-18,-0.00048590864753350616,-1.3552527156068805e-20,2.353877385032418e-22,-0.0,-0.0,-5.100067793787984e-22,-7.013070394759732e-19,4.953700794145608e-35,8.145278894784579e-22,8.09847770142369e-05,5.994386855993209e-21,-1.0643240651304783e-21,0.000546647235751152,-1.0324879714996829e-20,7.283258085104639e-19,-0.00018221575010102242,-0.00018221575010102242,2.756468145021911e-38,-0.0,1.6940658945086007e-21,1.7475606098408783e-21,-3.64140208487175e-19,-0.0,-1.5135782680610548e-23,5.994386855993209e-21,6.073858094168827e-05,5.972025514473001e-21,0.00040492386324331164,4.90630507718786e-21,1.3999160225889516e-18,-1.114877664670022e-20,-0.00048590864753350616,-2.6739254486920383e-22,-0.0,-2.495180422295013e-22,-8.065664780310267e-22,-7.013070394759732e-19,8.993596940629695e-22,4.95380066524768e-35,-1.0643240651304783e-21,5.972025514473001e-21,8.09847770142369e-05,7.0,3.0,7.0,8.0,0.0358382947742939,-0.006643282249569893,-0.01254251692444086,-0.006643282249569893,-0.0059523810632526875,0.00035430840216577053,0.0009566326625645161,0.00047831633128225803,0.00042517005931586027,0.0012755101779475808,0.0009566326625645161,0.0008503401186317205,0.00035430840216577053,0.00042517005931586027,0.00028344671591185033,-0.006643282249569893,0.004056830890476704,0.0009566326625645161,0.00047831633128225803,0.00042517005931586027,-0.00042517005931586027,-0.0003188775444868952,-0.0001594387722434476,-0.00014172335795592517,8.49660486470075e-19,9.901318328047356e-20,9.514209433599903e-20,6.776263578034403e-20,1.930893358437501e-20,6.109851979879592e-20,-0.01254251692444086,0.0009566326625645161,0.0252976194024086,0.0009566326625645161,0.0008503401186317205,-0.0,-0.0009566326625645161,-7.556853081026668e-21,1.0460657090851825e-21,-0.0076530613005161285,-0.0009566326625645161,-0.0008503401186317205,1.218603305593733e-18,5.986963184645358e-19,9.465080333587023e-19,-0.006643282249569893,0.00047831633128225803,0.0009566326625645161,0.004056830890476704,0.00042517005931586027,-5.514554246052829e-21,1.0620756080875938e-19,-0.0001594387722434476,5.065277235575761e-21,6.4201387496828665e-18,-0.0003188775444868952,1.4230153513872246e-19,-0.00042517005931586027,-0.00014172335795592517,6.05136255575385e-20,-0.0059523810632526875,0.00042517005931586027,0.0008503401186317205,0.00042517005931586027,0.003117913845926523,-0.0,9.440671784674232e-20,-2.1020192557162497e-20,-0.00012147716188337654,5.565867972068727e-18,9.193880510214476e-20,-0.00024295432376675308,1.3552527156068805e-20,-0.00012147716188337654,-0.00028344671591185033,0.00035430840216577053,-0.00042517005931586027,-0.0,-5.514554246052829e-21,-0.0,7.086167897796258e-05,-0.0,-0.0,3.3881317890172014e-21,4.043848364580298e-36,1.9188772222203388e-36,1.4277677143317134e-36,-7.520624751239476e-22,-3.046217711346975e-37,3.313172635459516e-22,0.0009566326625645161,-0.0003188775444868952,-0.0009566326625645161,1.0620756080875938e-19,9.440671784674232e-20,-0.0,0.0003188775444868952,-8.38979228426536e-37,1.1613662354972104e-37,-8.49660486470075e-19,-1.0620756080875938e-19,-9.440671784674232e-20,1.3757799915144333e-34,6.646864375176429e-35,1.0532429383367696e-34,0.00047831633128225803,-0.0001594387722434476,-7.556853081026668e-21,-0.0001594387722434476,-2.1020192557162497e-20,-0.0,-8.38979228426536e-37,5.3146257414482534e-05,6.879821097729787e-21,1.925929944387236e-34,2.8049288655405778e-21,-2.4512379668660713e-22,-2.0328790734103208e-20,8.470329472543003e-22,-2.529571728536773e-22,0.00042517005931586027,-0.00014172335795592517,1.0460657090851825e-21,5.065277235575761e-21,-0.00012147716188337654,3.3881317890172014e-21,1.1613662354972104e-37,6.879821097729787e-21,4.049238850711845e-05,1.925929944387236e-34,-3.486885865240935e-22,-5.84642159888857e-35,-5.393877965086719e-22,-6.242866176669813e-21,-1.785520243190428e-20,0.0012755101779475808,8.49660486470075e-19,-0.0076530613005161285,6.4201387496828665e-18,5.565867972068727e-18,4.043848364580298e-36,-8.49660486470075e-19,1.925929944387236e-34,1.925929944387236e-34,0.0038265306502580643,-1.747006074097454e-18,-1.411972180016912e-18,-6.136436789285222e-19,-2.8322015354022696e-19,-4.720336150831057e-19,0.0009566326625645161,9.901318328047356e-20,-0.0009566326625645161,-0.0003188775444868952,9.193880510214476e-20,1.9188772222203388e-36,-1.0620756080875938e-19,2.8049288655405778e-21,-3.486885865240935e-22,-1.747006074097454e-18,0.0003188775444868952,-9.489696453134777e-20,3.657302338014352e-21,3.3881317890172014e-21,-8.1360670188955145e-22,0.0008503401186317205,9.514209433599903e-20,-0.0008503401186317205,1.4230153513872246e-19,-0.00024295432376675308,1.4277677143317134e-36,-9.440671784674232e-20,-2.4512379668660713e-22,-5.84642159888857e-35,-1.411972180016912e-18,-9.489696453134777e-20,0.00024295432376675308,-6.536634241728871e-22,-1.2120109636861951e-20,3.6310592887871475e-35,0.00035430840216577053,6.776263578034403e-20,1.218603305593733e-18,-0.00042517005931586027,1.3552527156068805e-20,-7.520624751239476e-22,1.3757799915144333e-34,-2.0328790734103208e-20,-5.393877965086719e-22,-6.136436789285222e-19,3.657302338014352e-21,-6.536634241728871e-22,7.086167897796258e-05,2.475942414601403e-21,-3.154815813821236e-22,0.00042517005931586027,1.930893358437501e-20,5.986963184645358e-19,-0.00014172335795592517,-0.00012147716188337654,-3.046217711346975e-37,6.646864375176429e-35,8.470329472543003e-22,-6.242866176669813e-21,-2.8322015354022696e-19,3.3881317890172014e-21,-1.2120109636861951e-20,2.475942414601403e-21,4.049238850711845e-05,-1.625443346320371e-20,0.00028344671591185033,6.109851979879592e-20,9.465080333587023e-19,6.05136255575385e-20,-0.00028344671591185033,3.313172635459516e-22,1.0532429383367696e-34,-2.529571728536773e-22,-1.785520243190428e-20,-4.720336150831057e-19,-8.1360670188955145e-22,3.6310592887871475e-35,-3.154815813821236e-22,-1.625443346320371e-20,4.049238850711845e-05,7.0,3.0,8.0,3.0,0.0699404776096344,-0.014384920708835125,-0.02703372947871685,-0.012896825559437275,-0.02703372947871685,0.0008267195662483573,0.0022321429569274187,0.0009920635493472219,0.0022321429569274187,0.0029761905316263437,0.0019841270986944437,0.004464285913854837,0.0006613756413571537,0.0019841270986944437,0.0029761905316263437,-0.014384920708835125,0.009093915112316608,0.0022321429569274187,0.0009920635493472219,0.0022321429569274187,-0.0009920635493472219,-0.0007440476329065859,-0.0003306878206785768,-0.0007440476329065859,-1.1380892022241607e-33,2.5957460765668193e-20,0.0,1.3552527156068805e-19,1.3552527156068805e-20,0.0,-0.02703372947871685,0.0022321429569274187,0.056795634329319,0.0019841270986944437,0.004464285913854837,-0.0,-0.0022321429569274187,1.4213914601354637e-20,-4.0657581468206416e-20,-0.01785714365541935,-0.0019841270986944437,-0.004464285913854837,2.2465574032207846e-18,2.667105125629482e-18,1.9825411626695288e-17,-0.012896825559437275,0.0009920635493472219,0.0019841270986944437,0.00699168536812067,0.0019841270986944437,-1.1814613418952792e-20,1.3552527156068805e-20,-0.00028344671591185033,-1.1294039740463475e-19,1.1333301661443151e-17,-0.0005668934318237007,-5.7519965483687895e-33,-0.0006613756413571537,-0.0005668934318237007,-1.2582493000569704e-32,-0.02703372947871685,0.0022321429569274187,0.004464285913854837,0.0019841270986944437,0.056795634329319,-5.421010862427522e-20,-4.0657581468206416e-20,-8.978549240895584e-20,-0.0022321429569274187,2.898286349047384e-17,2.371692252312041e-20,-0.004464285913854837,-0.0,-0.0019841270986944437,-0.01785714365541935,0.0008267195662483573,-0.0009920635493472219,-0.0,-1.1814613418952792e-20,-5.421010862427522e-20,0.0001653439103392884,-0.0,-6.776263578034403e-21,2.710505431213761e-20,-2.5984568445640154e-36,-1.6881098305911138e-21,0.0,4.721438692114711e-21,-2.606255319411497e-22,0.0,0.0022321429569274187,-0.0007440476329065859,-0.0022321429569274187,1.3552527156068805e-20,-4.0657581468206416e-20,-0.0,0.0007440476329065859,-0.0,1.3552527156068805e-20,8.788467571608933e-36,-7.708331237519812e-22,0.0,-1.6881483017597396e-21,-0.0,0.0,0.0009920635493472219,-0.0003306878206785768,1.4213914601354637e-20,-0.00028344671591185033,-8.978549240895584e-20,-6.776263578034403e-21,-0.0,9.448223863728344e-05,3.3881317890172014e-20,3.3247413599831318e-34,-4.0611183421308154e-21,-0.0,-4.743384504624082e-20,-3.3881317890172014e-21,-0.0,0.0022321429569274187,-0.0007440476329065859,-4.0657581468206416e-20,-1.1294039740463475e-19,-0.0022321429569274187,2.710505431213761e-20,1.3552527156068805e-20,3.3881317890172014e-20,0.0007440476329065859,-1.7468752928743753e-35,-1.3739862828448846e-36,0.0,1.4919829041689292e-21,-3.009265538105056e-36,0.0,0.0029761905316263437,-1.1380892022241607e-33,-0.01785714365541935,1.1333301661443151e-17,2.898286349047384e-17,-2.5984568445640154e-36,8.788467571608933e-36,3.3247413599831318e-34,-1.7468752928743753e-35,0.008928571827709675,-2.3017258005847025e-18,-4.5315224566436314e-18,-1.1014117685272467e-18,-1.3216941015531808e-18,-9.912705813347644e-18,0.0019841270986944437,2.5957460765668193e-20,-0.0019841270986944437,-0.0005668934318237007,2.371692252312041e-20,-1.6881098305911138e-21,-7.708331237519812e-22,-4.0611183421308154e-21,-1.3739862828448846e-36,-2.3017258005847025e-18,0.0005668934318237007,1.1681960921071158e-33,-1.104842687525918e-20,-6.776263578034403e-21,2.555428842429664e-33,0.004464285913854837,0.0,-0.004464285913854837,-5.7519965483687895e-33,-0.004464285913854837,0.0,0.0,-0.0,0.0,-4.5315224566436314e-18,1.1681960921071158e-33,0.004464285913854837,5.590000937198001e-34,6.708000757295616e-34,5.031000843478201e-33,0.0006613756413571537,1.3552527156068805e-19,2.2465574032207846e-18,-0.0006613756413571537,-0.0,4.721438692114711e-21,-1.6881483017597396e-21,-4.743384504624082e-20,1.4919829041689292e-21,-1.1014117685272467e-18,-1.104842687525918e-20,5.590000937198001e-34,9.448223863728344e-05,-1.131508195508886e-20,1.2228126820531886e-33,0.0019841270986944437,1.3552527156068805e-20,2.667105125629482e-18,-0.0005668934318237007,-0.0019841270986944437,-2.606255319411497e-22,-0.0,-3.3881317890172014e-21,-3.009265538105056e-36,-1.3216941015531808e-18,-6.776263578034403e-21,6.708000757295616e-34,-1.131508195508886e-20,0.0005668934318237007,1.4673752000967271e-33,0.0029761905316263437,0.0,1.9825411626695288e-17,-1.2582493000569704e-32,-0.01785714365541935,0.0,0.0,-0.0,0.0,-9.912705813347644e-18,2.555428842429664e-33,5.031000843478201e-33,1.2228126820531886e-33,1.4673752000967271e-33,0.008928571827709675,7.0,3.0,8.0,4.0,0.0563616082072258,-0.01112351194024086,-0.02094493992626667,-0.00997023843228817,-0.01711309514939785,0.0006200397037900984,0.0016741071594879031,0.0007440476329065859,0.0013392857508733869,0.0022321429569274187,0.0014880952658131719,0.0026785715017467737,0.0004960317746736109,0.0011904762359336019,0.0014880952658131719,-0.01112351194024086,0.006932043470442295,0.0016741071594879031,0.0007440476329065859,0.0013392857508733869,-0.0007440476329065859,-0.0005580357392318547,-0.00024801588733680546,-0.00044642857392318547,1.4614271068460702e-33,1.8708178560216426e-34,-2.973811754344051e-19,8.131516293641283e-20,-1.4230153513872246e-19,-7.434529256613157e-19,-0.02094493992626667,0.0016741071594879031,0.04326637089252472,0.0014880952658131719,0.0026785715017467737,-0.0,-0.0016741071594879031,2.213553090650375e-20,-2.770523847003019e-19,-0.013392857275903225,-0.0014880952658131719,-0.0026785715017467737,1.6625330457750433e-18,1.5834918023425387e-18,6.938893903907228e-18,-0.00997023843228817,0.0007440476329065859,0.0014880952658131719,0.005328798200935125,0.0011904762359336019,-5.7977230497715925e-21,-1.3552527156068805e-20,-0.00021258502965793014,-2.4569133427138836e-20,8.266656926217134e-18,-0.00042517005931586027,-3.3728308797930196e-33,-0.0004960317746736109,-0.0003401360590942204,-5.664403070804539e-19,-0.01711309514939785,0.0013392857508733869,0.0026785715017467737,0.0011904762359336019,0.02182539738714695,-0.0,1.7364175418713157e-20,1.0757318430129614e-19,-0.0008928571478463709,1.5902811974127974e-17,-2.5377661214535976e-33,-0.0017857142956927419,-0.0,-0.0007936508045531809,-0.004464285913854837,0.0006200397037900984,-0.0007440476329065859,-0.0,-5.7977230497715925e-21,-0.0,0.00012400794366840273,-1.3552527156068805e-20,-6.776263578034403e-21,-0.0,2.4933041611391355e-35,1.7114003366617017e-21,-1.1507960730249926e-36,1.7975186029886732e-21,2.4928226748214883e-21,1.0582032927561048e-36,0.0016741071594879031,-0.0005580357392318547,-0.0016741071594879031,-1.3552527156068805e-20,1.7364175418713157e-20,-1.3552527156068805e-20,0.0005580357392318547,-3.3881317890172014e-21,-6.776263578034403e-21,-3.248594222078884e-36,8.470329472543003e-22,-4.252324267901517e-36,2.8527429745616972e-21,8.470329472543003e-22,-9.680032397044006e-36,0.0007440476329065859,-0.00024801588733680546,2.213553090650375e-20,-0.00021258502965793014,1.0757318430129614e-19,-6.776263578034403e-21,-3.3881317890172014e-21,7.086167897796258e-05,-3.3881317890172014e-20,2.847833659127433e-34,-3.4203243821439294e-21,-2.1885596900688242e-35,-2.710505431213761e-20,-1.6940658945086007e-21,-5.608595788460071e-35,0.0013392857508733869,-0.00044642857392318547,-2.770523847003019e-19,-2.4569133427138836e-20,-0.0008928571478463709,-0.0,-6.776263578034403e-21,-3.3881317890172014e-20,0.00029761905898340046,-1.7446567768759386e-33,1.504632769052528e-36,1.982541126480377e-19,-6.5605817868919735e-22,8.745359271398642e-20,4.956353010071399e-19,0.0022321429569274187,1.4614271068460702e-33,-0.013392857275903225,8.266656926217134e-18,1.5902811974127974e-17,2.4933041611391355e-35,-3.248594222078884e-36,2.847833659127433e-34,-1.7446567768759386e-33,0.0066964286379516125,-1.2947207757535922e-18,-2.7189135153452095e-18,-8.260588005460409e-19,-7.930164505921508e-19,-3.469446951953614e-18,0.0014880952658131719,1.8708178560216426e-34,-0.0014880952658131719,-0.00042517005931586027,-2.5377661214535976e-33,1.7114003366617017e-21,8.470329472543003e-22,-3.4203243821439294e-21,1.504632769052528e-36,-1.2947207757535922e-18,0.00042517005931586027,5.256882368564273e-34,-5.421040831568856e-21,-0.0,6.6918799543000426e-34,0.0026785715017467737,-2.973811754344051e-19,-0.0026785715017467737,-3.3728308797930196e-33,-0.0017857142956927419,-1.1507960730249926e-36,-4.252324267901517e-36,-2.1885596900688242e-35,1.982541126480377e-19,-2.7189135153452095e-18,5.256882368564273e-34,0.0017857142956927419,3.3469205506602482e-34,3.8023984384874796e-34,1.7388395492073068e-33,0.0004960317746736109,8.131516293641283e-20,1.6625330457750433e-18,-0.0004960317746736109,-0.0,1.7975186029886732e-21,2.8527429745616972e-21,-2.710505431213761e-20,-6.5605817868919735e-22,-8.260588005460409e-19,-5.421040831568856e-21,3.3469205506602482e-34,7.086167897796258e-05,6.712336410733405e-22,4.166995230550542e-34,0.0011904762359336019,-1.4230153513872246e-19,1.5834918023425387e-18,-0.0003401360590942204,-0.0007936508045531809,2.4928226748214883e-21,8.470329472543003e-22,-1.6940658945086007e-21,8.745359271398642e-20,-7.930164505921508e-19,-0.0,3.8023984384874796e-34,6.712336410733405e-22,0.00022675737272948027,3.776268713869693e-19,0.0014880952658131719,-7.434529256613157e-19,6.938893903907228e-18,-5.664403070804539e-19,-0.004464285913854837,1.0582032927561048e-36,-9.680032397044006e-36,-5.608595788460071e-35,4.956353010071399e-19,-3.469446951953614e-18,6.6918799543000426e-34,1.7388395492073068e-33,4.166995230550542e-34,3.776268713869693e-19,0.0014880952658131719,7.0,3.0,8.0,5.0,0.04728599637746811,-0.00907738134264946,-0.01711309514939785,-0.008134921081364155,-0.011833900585770607,0.0004960317746736109,0.0013392857508733869,0.0005952381179668009,0.0008928571478463709,0.0017857142956927419,0.0011904762359336019,0.0017857142956927419,0.00039682540227659047,0.0007936508045531809,0.0008503401186317205,-0.00907738134264946,0.0056051588617265224,0.0013392857508733869,0.0005952381179668009,0.0008928571478463709,-0.0005952381179668009,-0.00044642857392318547,-0.00019841270113829523,-0.00029761905898340046,-1.5222356658629602e-17,-2.7991980112383812e-18,-6.89670148881243e-18,-6.2341624917916505e-19,-2.134523027080837e-18,-6.1388576367454346e-18,-0.01711309514939785,0.0013392857508733869,0.0349702388048172,0.0011904762359336019,0.0017857142956927419,-7.074419175467916e-18,-0.0013392857508733869,-2.010361149185096e-18,-5.499906935662524e-18,-0.010714286006987095,-0.0011904762359336019,-0.0017857142956927419,1.871434924535896e-18,1.8943056412923749e-19,-4.909149431428177e-18,-0.008134921081364155,0.0005952381179668009,0.0011904762359336019,0.004308389965444803,0.0007936508045531809,-1.1288786109597997e-18,-1.0299920638612292e-18,-0.0001700680295471102,-2.1955093992831465e-18,8.845910002492093e-18,-0.0003401360590942204,-1.1258675701325301e-18,-0.00039682540227659047,-0.00022675737272948027,-3.1649584597503945e-18,-0.011833900585770607,0.0008928571478463709,0.0017857142956927419,0.0007936508045531809,0.01101899053901434,-4.388752737278204e-18,-4.56371136300052e-18,-2.5085331546369946e-18,-0.00044642857392318547,-5.249013543298146e-18,-3.292326903290697e-18,-0.0008928571478463709,-1.2197274440461925e-18,-0.00039682540227659047,-0.001700680237263441,0.0004960317746736109,-0.0005952381179668009,-7.074419175467916e-18,-1.1288786109597997e-18,-4.388752737278204e-18,9.920635056914762e-05,2.846030702774449e-19,3.3881317890172014e-20,1.9651164376299768e-19,1.718202300999862e-18,2.771194638781011e-19,6.608470507765904e-19,4.506170430694041e-20,1.826272879343244e-19,5.664403070804539e-19,0.0013392857508733869,-0.00044642857392318547,-0.0013392857508733869,-1.0299920638612292e-18,-4.56371136300052e-18,2.846030702774449e-19,0.00044642857392318547,1.1519648082658485e-19,3.049318610115481e-19,1.2124001747826212e-18,1.500994313967452e-19,6.616458487543752e-19,3.1077430876384405e-20,1.49501315190384e-19,5.664403070804539e-19,0.0005952381179668009,-0.00019841270113829523,-2.010361149185096e-18,-0.0001700680295471102,-2.5085331546369946e-18,3.3881317890172014e-20,1.1519648082658485e-19,5.668934318237007e-05,1.1519648082658485e-19,3.2098283550904506e-19,9.262750404792904e-20,2.8322015354022696e-19,-8.907684257765511e-21,1.1011428314305904e-19,3.326713111547256e-19,0.0008928571478463709,-0.00029761905898340046,-5.499906935662524e-18,-2.1955093992831465e-18,-0.00044642857392318547,1.9651164376299768e-19,3.049318610115481e-19,1.1519648082658485e-19,0.00014880952949170023,1.1895247017376204e-18,2.649597796266009e-19,5.40224316830446e-19,1.5429319832829784e-19,2.0837010502455788e-19,4.575095125988051e-19,0.0017857142956927419,-1.5222356658629602e-17,-0.010714286006987095,8.845910002492093e-18,-5.249013543298146e-18,1.718202300999862e-18,1.2124001747826212e-18,3.2098283550904506e-19,1.1895247017376204e-18,0.0053571430034935474,-1.1328806141609079e-18,1.8105589942106685e-32,-9.912706020142797e-19,-4.909149431428177e-19,8.49660486470075e-19,0.0011904762359336019,-2.7991980112383812e-18,-0.0011904762359336019,-0.0003401360590942204,-3.292326903290697e-18,2.771194638781011e-19,1.500994313967452e-19,9.262750404792904e-20,2.649597796266009e-19,-1.1328806141609079e-18,0.0003401360590942204,2.762070836624551e-19,5.106804287265337e-21,9.825582188149884e-20,4.3157357468493465e-19,0.0017857142956927419,-6.89670148881243e-18,-0.0017857142956927419,-1.1258675701325301e-18,-0.0008928571478463709,6.608470507765904e-19,6.616458487543752e-19,2.8322015354022696e-19,5.40224316830446e-19,1.8105589942106685e-32,2.762070836624551e-19,0.0008928571478463709,9.14816723583937e-34,2.900931978733274e-33,8.271637832629654e-33,0.00039682540227659047,-6.2341624917916505e-19,1.871434924535896e-18,-0.00039682540227659047,-1.2197274440461925e-18,4.506170430694041e-20,3.1077430876384405e-20,-8.907684257765511e-21,1.5429319832829784e-19,-9.912706020142797e-19,5.106804287265337e-21,9.14816723583937e-34,5.668934318237007e-05,1.7931527614870768e-20,1.2587562810388879e-19,0.0007936508045531809,-2.134523027080837e-18,1.8943056412923749e-19,-0.00022675737272948027,-0.00039682540227659047,1.826272879343244e-19,1.49501315190384e-19,1.1011428314305904e-19,2.0837010502455788e-19,-4.909149431428177e-19,9.825582188149884e-20,2.900931978733274e-33,1.7931527614870768e-20,0.00011337868636474013,3.911563667328573e-19,0.0008503401186317205,-6.1388576367454346e-18,-4.909149431428177e-18,-3.1649584597503945e-18,-0.001700680237263441,5.664403070804539e-19,5.664403070804539e-19,3.326713111547256e-19,4.575095125988051e-19,8.49660486470075e-19,4.3157357468493465e-19,8.271637832629654e-33,1.2587562810388879e-19,3.911563667328573e-19,0.00042517005931586027,7.0,3.0,8.0,6.0,0.04076318070292473,-0.007670776452869177,-0.014473497867584229,-0.0068735829554498196,-0.0086805559694767,0.00041335978312417865,0.0011160714784637094,0.0004960317746736109,0.0006377550889737904,0.0014880952658131719,0.0009920635493472219,0.0012755101779475808,0.0003306878206785768,0.0005668934318237007,0.0005314626032486558,-0.007670776452869177,0.004706396255642176,0.0011160714784637094,0.0004960317746736109,0.0006377550889737904,-0.0004960317746736109,-0.00037202381645329297,-0.0001653439103392884,-0.00021258502965793014,-6.7407548053553255e-34,1.6830109373418148e-34,-3.2877728231624734e-36,8.131516293641283e-20,1.1858461261560205e-20,-7.014355735982613e-36,-0.014473497867584229,0.0011160714784637094,0.02935444936156273,0.0009920635493472219,0.0012755101779475808,-0.0,-0.0011160714784637094,-2.1923330097158082e-34,-0.0,-0.008928571827709675,-0.0009920635493472219,-0.0012755101779475808,1.1014117685272467e-18,8.49660486470075e-19,2.2790372703581387e-18,-0.0068735829554498196,0.0004960317746736109,0.0009920635493472219,0.0036173199769109488,0.0005668934318237007,-1.69611021807815e-21,-0.0,-0.00014172335795592517,-3.082668529085573e-20,5.949871268605138e-18,-0.00028344671591185033,9.440671784674232e-20,-0.0003306878206785768,-0.0001619695540284738,1.6858342841909617e-19,-0.0086805559694767,0.0006377550889737904,0.0012755101779475808,0.0005668934318237007,0.006395266391336918,2.710505431213761e-20,-0.0,-1.8968222413708394e-20,-0.00025510202976875007,7.22531677153229e-18,-1.522287132998444e-33,-0.0005102040595375001,2.710505431213761e-20,-0.00022675737272948027,-0.0007971939048729837,0.00041335978312417865,-0.0004960317746736109,-0.0,-1.69611021807815e-21,2.710505431213761e-20,8.26719551696442e-05,-0.0,-0.0,-6.776263578034403e-21,-0.0,0.0,-0.0,2.606255319411497e-22,1.4467623038052486e-37,-0.0,0.0011160714784637094,-0.00037202381645329297,-0.0011160714784637094,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0001653439103392884,-2.1923330097158082e-34,-0.00014172335795592517,-1.8968222413708394e-20,-0.0,-0.0,4.724111931864172e-05,1.0275561494354055e-20,1.925929944387236e-34,-4.80860271911746e-35,9.393636765725784e-37,-2.371692252312041e-20,-3.3881317890172014e-21,2.0041016388521752e-36,0.0006377550889737904,-0.00021258502965793014,-0.0,-3.082668529085573e-20,-0.00025510202976875007,-6.776263578034403e-21,-0.0,1.0275561494354055e-20,8.50340147735551e-05,0.0,-0.0,0.0,-4.513898307157584e-36,-3.76158192263132e-37,-0.0,0.0014880952658131719,-6.7407548053553255e-34,-0.008928571827709675,5.949871268605138e-18,7.22531677153229e-18,-0.0,-0.0,1.925929944387236e-34,0.0,0.004464285913854837,-1.1508629002923513e-18,-1.0357765378848125e-18,-5.507058842636234e-19,-3.776268713869693e-19,-9.735692470983746e-19,0.0009920635493472219,1.6830109373418148e-34,-0.0009920635493472219,-0.00028344671591185033,-1.522287132998444e-33,0.0,-0.0,-4.80860271911746e-35,-0.0,-1.1508629002923513e-18,0.00028344671591185033,2.6782463289135e-34,2.976754050549574e-35,-0.0,2.5089250920496844e-34,0.0012755101779475808,-3.2877728231624734e-36,-0.0012755101779475808,9.440671784674232e-20,-0.0005102040595375001,-0.0,-0.0,9.393636765725784e-37,0.0,-1.0357765378848125e-18,2.6782463289135e-34,0.0005102040595375001,1.28875036166476e-34,-3.7762688431166636e-20,-1.3275945101094922e-19,0.0003306878206785768,8.131516293641283e-20,1.1014117685272467e-18,-0.0003306878206785768,2.710505431213761e-20,2.606255319411497e-22,-0.0,-2.371692252312041e-20,-4.513898307157584e-36,-5.507058842636234e-19,2.976754050549574e-35,1.28875036166476e-34,4.724111931864172e-05,-2.0456645068705203e-21,1.201941251800236e-34,0.0005668934318237007,1.1858461261560205e-20,8.49660486470075e-19,-0.0001619695540284738,-0.00022675737272948027,1.4467623038052486e-37,-0.0,-3.3881317890172014e-21,-3.76158192263132e-37,-3.776268713869693e-19,-0.0,-3.7762688431166636e-20,-2.0456645068705203e-21,6.478781870100647e-05,-6.743337266010817e-20,0.0005314626032486558,-7.014355735982613e-36,2.2790372703581387e-18,1.6858342841909617e-19,-0.0007971939048729837,-0.0,-0.0,2.0041016388521752e-36,-0.0,-9.735692470983746e-19,2.5089250920496844e-34,-1.3275945101094922e-19,1.201941251800236e-34,-6.743337266010817e-20,0.0001594387722434476,7.0,3.0,8.0,7.0,0.0358382947742939,-0.006643282249569893,-0.01254251692444086,-0.0059523810632526875,-0.006643282249569893,0.00035430840216577053,0.0009566326625645161,0.00042517005931586027,0.00047831633128225803,0.0012755101779475808,0.0008503401186317205,0.0009566326625645161,0.00028344671591185033,0.00042517005931586027,0.00035430840216577053,-0.006643282249569893,0.004056830890476704,0.0009566326625645161,0.00042517005931586027,0.00047831633128225803,-0.00042517005931586027,-0.0003188775444868952,-0.00014172335795592517,-0.0001594387722434476,8.49660486470075e-19,1.0007178705643391e-19,1.0722465045772722e-19,4.743384504624082e-20,1.7368435721985232e-20,5.546682861929055e-20,-0.01254251692444086,0.0009566326625645161,0.0252976194024086,0.0008503401186317205,0.0009566326625645161,-0.0,-0.0009566326625645161,5.940328098802811e-21,6.959570719574953e-22,-0.0076530613005161285,-0.0008503401186317205,-0.0009566326625645161,9.65460705746247e-19,6.136116256797857e-19,1.2291432409588836e-18,-0.0059523810632526875,0.00042517005931586027,0.0008503401186317205,0.003117913845926523,0.00042517005931586027,2.4459304602086464e-21,9.440671784674232e-20,-0.00012147716188337654,-7.404613882019264e-21,5.565867972068727e-18,-0.00024295432376675308,1.2874900798265365e-19,-0.00028344671591185033,-0.00012147716188337654,6.492513486064865e-20,-0.006643282249569893,0.00047831633128225803,0.0009566326625645161,0.00042517005931586027,0.004056830890476704,-1.3552527156068805e-20,1.0620756080875938e-19,-2.6799228514453137e-20,-0.0001594387722434476,6.4201387496828665e-18,9.147365171690293e-20,-0.0003188775444868952,2.0328790734103208e-20,-0.00014172335795592517,-0.00042517005931586027,0.00035430840216577053,-0.00042517005931586027,-0.0,2.4459304602086464e-21,-1.3552527156068805e-20,7.086167897796258e-05,-0.0,3.3881317890172014e-21,-0.0,5.895703969958054e-36,-5.141188286728389e-37,1.725297323361872e-36,1.6129614261468221e-22,-3.755978298228301e-37,1.0178558411660874e-21,0.0009566326625645161,-0.0003188775444868952,-0.0009566326625645161,9.440671784674232e-20,1.0620756080875938e-19,-0.0,0.0003188775444868952,6.5950890291186624e-37,7.726675654379182e-38,-8.49660486470075e-19,-9.440671784674232e-20,-1.0620756080875938e-19,1.0554083045418048e-34,6.812457550073711e-35,1.3541694921472752e-34,0.00042517005931586027,-0.00014172335795592517,5.940328098802811e-21,-0.00012147716188337654,-2.6799228514453137e-20,3.3881317890172014e-21,6.5950890291186624e-37,4.049238850711845e-05,9.205973341470375e-21,1.925929944387236e-34,-1.4481531359425767e-21,-2.905973995781465e-22,-1.3552527156068805e-20,-0.0,-8.124523270170617e-23,0.00047831633128225803,-0.0001594387722434476,6.959570719574953e-22,-7.404613882019264e-21,-0.0001594387722434476,-0.0,7.726675654379182e-38,9.205973341470375e-21,5.3146257414482534e-05,2.407412430484045e-34,-1.9884487409592024e-22,-8.189330498786794e-35,-3.494749735615157e-22,-5.7894787086273384e-21,-2.059951143895533e-20,0.0012755101779475808,8.49660486470075e-19,-0.0076530613005161285,5.565867972068727e-18,6.4201387496828665e-18,5.895703969958054e-36,-8.49660486470075e-19,1.925929944387236e-34,2.407412430484045e-34,0.0038265306502580643,-1.411972180016912e-18,-1.747006074097454e-18,-4.720336150831057e-19,-2.8322015354022696e-19,-6.136436789285222e-19,0.0008503401186317205,1.0007178705643391e-19,-0.0008503401186317205,-0.00024295432376675308,9.147365171690293e-20,-5.141188286728389e-37,-9.440671784674232e-20,-1.4481531359425767e-21,-1.9884487409592024e-22,-1.411972180016912e-18,0.00024295432376675308,-8.150123980014605e-20,-5.531233567623137e-21,-1.6940658945086007e-21,-5.302530144181533e-22,0.0009566326625645161,1.0722465045772722e-19,-0.0009566326625645161,1.2874900798265365e-19,-0.0003188775444868952,1.725297323361872e-36,-1.0620756080875938e-19,-2.905973995781465e-22,-8.189330498786794e-35,-1.747006074097454e-18,-8.150123980014605e-20,0.0003188775444868952,-6.780605569430935e-22,-1.3747362117654855e-20,5.934764476333302e-35,0.00028344671591185033,4.743384504624082e-20,9.65460705746247e-19,-0.00028344671591185033,2.0328790734103208e-20,1.6129614261468221e-22,1.0554083045418048e-34,-1.3552527156068805e-20,-3.494749735615157e-22,-4.720336150831057e-19,-5.531233567623137e-21,-6.780605569430935e-22,4.049238850711845e-05,2.2374455543896316e-22,-9.722760891511415e-22,0.00042517005931586027,1.7368435721985232e-20,6.136116256797857e-19,-0.00012147716188337654,-0.00014172335795592517,-3.755978298228301e-37,6.812457550073711e-35,-0.0,-5.7894787086273384e-21,-2.8322015354022696e-19,-1.6940658945086007e-21,-1.3747362117654855e-20,2.2374455543896316e-22,4.049238850711845e-05,-1.8929876453085452e-20,0.00035430840216577053,5.546682861929055e-20,1.2291432409588836e-18,6.492513486064865e-20,-0.00042517005931586027,1.0178558411660874e-21,1.3541694921472752e-34,-8.124523270170617e-23,-2.059951143895533e-20,-6.136436789285222e-19,-5.302530144181533e-22,5.934764476333302e-35,-9.722760891511415e-22,-1.8929876453085452e-20,7.086167897796258e-05,7.0,3.0,8.0,8.0,0.031983714550733566,-0.005859375,-0.011067708022892475,-0.005249669309705496,-0.005249669309705496,0.0003100198518950492,0.0008370535797439516,0.00037202381645329297,0.00037202381645329297,0.0011160714784637094,0.0007440476329065859,0.0007440476329065859,0.00024801588733680546,0.0003306878206785768,0.00024801588733680546,-0.005859375,0.0035652280785143375,0.0008370535797439516,0.00037202381645329297,0.00037202381645329297,-0.00037202381645329297,-0.00027901786961592734,-0.00012400794366840273,-0.00012400794366840273,-1.179632090937182e-33,3.40548804159661e-21,5.942556397357232e-21,5.421010862427522e-20,1.4348714345045237e-20,4.0016083516125937e-20,-0.011067708022892475,0.0008370535797439516,0.0222284235060215,0.0007440476329065859,0.0007440476329065859,-0.0,-0.0008370535797439516,3.9342689027261015e-21,5.413775536227741e-21,-0.0066964286379516125,-0.0007440476329065859,-0.0007440476329065859,8.309130065732318e-19,4.692775009808673e-19,8.225067318993734e-19,-0.005249669309705496,0.00037202381645329297,0.0007440476329065859,0.0027399847749620676,0.0003306878206785768,1.846318220161467e-21,-0.0,-0.00010629251482896507,3.432459299444667e-20,4.309554329529314e-18,-0.00021258502965793014,1.6940658945086007e-20,-0.00024801588733680546,-9.448223863728344e-05,2.481982569829209e-20,-0.005249669309705496,0.00037202381645329297,0.0007440476329065859,0.0003306878206785768,0.0027399847749620676,-6.776263578034403e-21,-0.0,2.89595932454815e-20,-0.00010629251482896507,4.309554329529314e-18,8.822437802645666e-21,-0.00021258502965793014,1.3552527156068805e-20,-9.448223863728344e-05,-0.00024801588733680546,0.0003100198518950492,-0.00037202381645329297,-0.0,1.846318220161467e-21,-6.776263578034403e-21,6.200397183420137e-05,-0.0,3.3881317890172014e-21,3.3881317890172014e-21,0.0,-4.776769747004637e-38,-8.680573710727614e-38,-1.2006357964300097e-21,-2.569447993324254e-37,2.594563264836418e-22,0.0008370535797439516,-0.00027901786961592734,-0.0008370535797439516,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.00012400794366840273,3.9342689027261015e-21,-0.00010629251482896507,2.89595932454815e-20,3.3881317890172014e-21,-0.0,3.543083948898129e-05,-8.437106538721635e-21,1.6851887013388314e-34,-1.1202694241964794e-21,-3.807392982838521e-24,-1.3552527156068805e-20,-8.470329472543003e-22,-8.979162553112578e-23,0.00037202381645329297,-0.00012400794366840273,5.413775536227741e-21,3.432459299444667e-20,-0.00010629251482896507,3.3881317890172014e-21,-0.0,-8.437106538721635e-21,3.543083948898129e-05,1.6851887013388314e-34,1.4727283367071968e-22,-1.6940658945086007e-21,2.9367686011663964e-22,-3.252599780458165e-21,-1.1825222171867498e-20,0.0011160714784637094,-1.179632090937182e-33,-0.0066964286379516125,4.309554329529314e-18,4.309554329529314e-18,0.0,-0.0,1.6851887013388314e-34,1.6851887013388314e-34,0.0033482143189758062,-6.473603878767961e-19,-6.473603878767961e-19,-4.1302940027302046e-19,-2.202823588753282e-19,-4.1302940027302046e-19,0.0007440476329065859,3.40548804159661e-21,-0.0007440476329065859,-0.00021258502965793014,8.822437802645666e-21,-4.776769747004637e-38,-0.0,-1.1202694241964794e-21,1.4727283367071968e-22,-6.473603878767961e-19,0.00021258502965793014,-7.614785965677042e-24,-1.3780395825833166e-21,-3.3881317890172014e-21,3.4363662031286225e-22,0.0007440476329065859,5.942556397357232e-21,-0.0007440476329065859,1.6940658945086007e-20,-0.00021258502965793014,-8.680573710727614e-38,-0.0,-3.807392982838521e-24,-1.6940658945086007e-21,-6.473603878767961e-19,-7.614785965677042e-24,0.00021258502965793014,-8.883917222910184e-24,-4.8155308906894015e-21,6.712336410733405e-22,0.00024801588733680546,5.421010862427522e-20,8.309130065732318e-19,-0.00024801588733680546,1.3552527156068805e-20,-1.2006357964300097e-21,-0.0,-1.3552527156068805e-20,2.9367686011663964e-22,-4.1302940027302046e-19,-1.3780395825833166e-21,-8.883917222910184e-24,3.543083948898129e-05,-2.605025807115507e-21,-1.045231157356331e-21,0.0003306878206785768,1.4348714345045237e-20,4.692775009808673e-19,-9.448223863728344e-05,-9.448223863728344e-05,-2.569447993324254e-37,-0.0,-8.470329472543003e-22,-3.252599780458165e-21,-2.202823588753282e-19,-3.3881317890172014e-21,-4.8155308906894015e-21,-2.605025807115507e-21,2.6994925065082498e-05,-4.851484166767048e-21,0.00024801588733680546,4.0016083516125937e-20,8.225067318993734e-19,2.481982569829209e-20,-0.00024801588733680546,2.594563264836418e-22,-0.0,-8.979162553112578e-23,-1.1825222171867498e-20,-4.1302940027302046e-19,3.4363662031286225e-22,6.712336410733405e-22,-1.045231157356331e-21,-4.851484166767048e-21,3.543083948898129e-05,7.0,4.0,3.0,3.0,0.12136243283748627,-0.02718253992497921,-0.0416666679084301,-0.05089285597205162,-0.05089285597205162,0.0016534391324967146,0.0035714285913854837,0.004464285913854837,0.004464285913854837,0.003968254197388887,0.0071428571827709675,0.0071428571827709675,0.0059523810632526875,0.008928571827709675,0.0059523810632526875,-0.02718253992497921,0.01765873096883297,0.0035714285913854837,0.004464285913854837,0.004464285913854837,-0.0019841270986944437,-0.0011904762359336019,-0.0014880952658131719,-0.0014880952658131719,-3.469446951953614e-18,-3.469446951953614e-18,-3.469446951953614e-18,-6.938893903907228e-18,-1.734723475976807e-18,-1.0408340855860843e-17,-0.0416666679084301,0.0035714285913854837,0.0555555559694767,0.0071428571827709675,0.0071428571827709675,1.4094628242311558e-18,-0.0023809524718672037,-3.692767105779149e-18,-3.542068860242401e-18,-0.011904762126505375,-0.004761904943734407,-0.004761904943734407,-7.45931094670027e-17,-6.938893903907228e-18,-7.719519468096792e-17,-0.05089285597205162,0.004464285913854837,0.0071428571827709675,0.11041666567325592,0.008928571827709675,-2.8189256484623115e-18,-5.5294310796760726e-18,-0.004464285913854837,3.754279151260736e-18,-3.924811864397526e-17,-0.0071428571827709675,3.1841757265363796e-18,-0.0357142873108387,-0.008928571827709675,-6.938893903907228e-18,-0.05089285597205162,0.004464285913854837,0.0071428571827709675,0.008928571827709675,0.11041666567325592,1.3010426069826053e-18,-4.7704895589362195e-18,4.336808689942018e-18,-0.004464285913854837,-3.924811864397526e-17,6.5052130349130266e-18,-0.0071428571827709675,-3.469446951953614e-18,-0.008928571827709675,-0.0357142873108387,0.0016534391324967146,-0.0019841270986944437,1.4094628242311558e-18,-2.8189256484623115e-18,1.3010426069826053e-18,0.0003306878206785768,2.710505431213761e-20,1.0842021724855044e-19,5.421010862427522e-20,4.336808689942018e-19,1.6263032587282567e-19,1.6263032587282567e-19,2.168404344971009e-19,1.0842021724855044e-19,2.168404344971009e-19,0.0035714285913854837,-0.0011904762359336019,-0.0023809524718672037,-5.5294310796760726e-18,-4.7704895589362195e-18,2.710505431213761e-20,0.0007936508045531809,5.481938918396647e-19,5.481938918396647e-19,-4.842898985205157e-19,2.1920025153774396e-19,2.1920025153774396e-19,1.967303503169567e-18,-2.4628560861154516e-19,1.5770891142086486e-18,0.004464285913854837,-0.0014880952658131719,-3.692767105779149e-18,-0.004464285913854837,4.336808689942018e-18,1.0842021724855044e-19,5.481938918396647e-19,0.0014880952658131719,-1.5752569091518436e-19,-7.708501944495347e-20,2.3158215786080655e-18,-2.016908412980424e-19,5.4858378342139155e-18,8.178292840293274e-19,-2.302716556163388e-18,0.004464285913854837,-0.0014880952658131719,-3.542068860242401e-18,3.754279151260736e-18,-0.004464285913854837,5.421010862427522e-20,5.481938918396647e-19,-1.5752569091518436e-19,0.0014880952658131719,-1.6100209838519746e-19,-2.016908412980424e-19,2.6179232411537635e-18,-1.6890728255360775e-18,6.290158483358428e-19,9.498123717516679e-18,0.003968254197388887,-3.469446951953614e-18,-0.011904762126505375,-3.924811864397526e-17,-3.924811864397526e-17,4.336808689942018e-19,-4.842898985205157e-19,-7.708501944495347e-20,-1.6100209838519746e-19,0.003968254197388887,9.736313890418927e-19,9.736313890418927e-19,1.8056320450628128e-17,2.0981686459542844e-18,1.8182195833162772e-17,0.0071428571827709675,-3.469446951953614e-18,-0.004761904943734407,-0.0071428571827709675,6.5052130349130266e-18,1.6263032587282567e-19,2.1920025153774396e-19,2.3158215786080655e-18,-2.016908412980424e-19,9.736313890418927e-19,0.004761904943734407,-9.938874912796678e-19,1.3303397726360697e-17,4.69549229812091e-19,-2.3303553487657754e-18,0.0071428571827709675,-3.469446951953614e-18,-0.004761904943734407,3.1841757265363796e-18,-0.0071428571827709675,1.6263032587282567e-19,2.1920025153774396e-19,-2.016908412980424e-19,2.6179232411537635e-18,9.736313890418927e-19,-9.938874912796678e-19,0.004761904943734407,-8.953731754567461e-19,7.716507372614241e-19,1.9874104440633835e-17,0.0059523810632526875,-6.938893903907228e-18,-7.45931094670027e-17,-0.0357142873108387,-3.469446951953614e-18,2.168404344971009e-19,1.967303503169567e-18,5.4858378342139155e-18,-1.6890728255360775e-18,1.8056320450628128e-17,1.3303397726360697e-17,-8.953731754567461e-19,0.01785714365541935,2.851610863186732e-18,3.679067340474046e-18,0.008928571827709675,-1.734723475976807e-18,-6.938893903907228e-18,-0.008928571827709675,-0.008928571827709675,1.0842021724855044e-19,-2.4628560861154516e-19,8.178292840293274e-19,6.290158483358428e-19,2.0981686459542844e-18,4.69549229812091e-19,7.716507372614241e-19,2.851610863186732e-18,0.008928571827709675,1.0762365886227413e-17,0.0059523810632526875,-1.0408340855860843e-17,-7.719519468096792e-17,-6.938893903907228e-18,-0.0357142873108387,2.168404344971009e-19,1.5770891142086486e-18,-2.302716556163388e-18,9.498123717516679e-18,1.8182195833162772e-17,-2.3303553487657754e-18,1.9874104440633835e-17,3.679067340474046e-18,1.0762365886227413e-17,0.01785714365541935,7.0,4.0,3.0,4.0,0.09835813194513321,-0.02105654776096344,-0.03232142701745033,-0.03950892761349678,-0.03232142701745033,0.0012400794075801969,0.0026785715017467737,0.0033482143189758062,0.0026785715017467737,0.0029761905316263437,0.0053571430034935474,0.004285714123398066,0.004464285913854837,0.0053571430034935474,0.0029761905316263437,-0.02105654776096344,0.01346726156771183,0.0026785715017467737,0.0033482143189758062,0.0026785715017467737,-0.0014880952658131719,-0.0008928571478463709,-0.0011160714784637094,-0.0008928571478463709,-7.806255641895632e-18,-3.469446951953614e-18,-3.469446951953614e-18,8.673617379884035e-18,-3.903127820947816e-18,-5.204170427930421e-18,-0.03232142701745033,0.0026785715017467737,0.04238095134496689,0.0053571430034935474,0.004285714123398066,-1.5178830414797062e-18,-0.0017857142956927419,-3.613057500411702e-18,-7.213478989786044e-18,-0.008928571827709675,-0.0035714285913854837,-0.0028571428265422583,1.5612511283791264e-17,-5.7462715141731735e-18,-1.235990476633475e-17,-0.03950892761349678,0.0033482143189758062,0.0053571430034935474,0.08415178209543228,0.0053571430034935474,9.75781955236954e-19,-2.656295322589486e-18,-0.0033482143189758062,-6.0132924469404975e-18,-6.830473686658678e-18,-0.0053571430034935474,8.206476951714487e-19,-0.02678571455180645,-0.0053571430034935474,-1.973247953923618e-17,-0.03232142701745033,0.0026785715017467737,0.004285714123398066,0.0053571430034935474,0.04238095134496689,-1.5178830414797062e-18,-7.426784881525705e-18,-7.426784881525705e-18,-0.0017857142956927419,-2.0383000842727483e-17,-8.131516293641283e-18,-0.0028571428265422583,-1.1817803680091998e-17,-0.0035714285913854837,-0.008928571827709675,0.0012400794075801969,-0.0014880952658131719,-1.5178830414797062e-18,9.75781955236954e-19,-1.5178830414797062e-18,0.00024801588733680546,1.3552527156068805e-19,5.421010862427522e-20,1.6263032587282567e-19,4.87890977618477e-19,5.421010862427522e-20,1.3552527156068805e-19,-9.75781955236954e-19,1.3552527156068805e-19,-1.0842021724855044e-19,0.0026785715017467737,-0.0008928571478463709,-0.0017857142956927419,-2.656295322589486e-18,-7.426784881525705e-18,1.3552527156068805e-19,0.0005952381179668009,6.296144169066015e-19,6.560010131579485e-19,2.1477881089740435e-18,9.922780046027927e-19,6.951358585160213e-19,-5.899892085416495e-19,3.352071884188718e-19,1.2855400015324428e-18,0.0033482143189758062,-0.0011160714784637094,-3.613057500411702e-18,-0.0033482143189758062,-7.426784881525705e-18,5.421010862427522e-20,6.296144169066015e-19,0.0011160714784637094,4.692134461821828e-19,7.29163716621586e-20,2.870205573164194e-19,6.299009315912745e-19,-2.8732877515241434e-18,8.251388723073054e-19,1.229398736370586e-18,0.0026785715017467737,-0.0008928571478463709,-7.213478989786044e-18,-6.0132924469404975e-18,-0.0017857142956927419,1.6263032587282567e-19,6.560010131579485e-19,4.692134461821828e-19,0.0005952381179668009,1.1911332578363063e-18,6.901764454546714e-19,4.373425907708209e-19,8.261115850088795e-19,1.1206711181268955e-18,1.18483955074812e-18,0.0029761905316263437,-7.806255641895632e-18,-0.008928571827709675,-6.830473686658678e-18,-2.0383000842727483e-17,4.87890977618477e-19,2.1477881089740435e-18,7.29163716621586e-20,1.1911332578363063e-18,0.0029761905316263437,4.953427168847222e-18,2.0292920046839846e-18,-1.5522817608430301e-18,1.4792598073304974e-18,3.779888249435072e-18,0.0053571430034935474,-3.469446951953614e-18,-0.0035714285913854837,-0.0053571430034935474,-8.131516293641283e-18,5.421010862427522e-20,9.922780046027927e-19,2.870205573164194e-19,6.901764454546714e-19,4.953427168847222e-18,0.0035714285913854837,7.88938553569841e-19,-4.82528448425357e-18,1.4028899178368387e-19,1.3618697469169985e-18,0.004285714123398066,-3.469446951953614e-18,-0.0028571428265422583,8.206476951714487e-19,-0.0028571428265422583,1.3552527156068805e-19,6.951358585160213e-19,6.299009315912745e-19,4.373425907708209e-19,2.0292920046839846e-18,7.88938553569841e-19,0.0019047618843615055,-2.1554773731531833e-18,-4.740966616919498e-20,-3.4233022678920373e-18,0.004464285913854837,8.673617379884035e-18,1.5612511283791264e-17,-0.02678571455180645,-1.1817803680091998e-17,-9.75781955236954e-19,-5.899892085416495e-19,-2.8732877515241434e-18,8.261115850088795e-19,-1.5522817608430301e-18,-4.82528448425357e-18,-2.1554773731531833e-18,0.013392857275903225,-2.576127097271166e-19,3.8219640320635e-18,0.0053571430034935474,-3.903127820947816e-18,-5.7462715141731735e-18,-0.0053571430034935474,-0.0035714285913854837,1.3552527156068805e-19,3.352071884188718e-19,8.251388723073054e-19,1.1206711181268955e-18,1.4792598073304974e-18,1.4028899178368387e-19,-4.740966616919498e-20,-2.576127097271166e-19,0.0035714285913854837,2.7973343733182993e-18,0.0029761905316263437,-5.204170427930421e-18,-1.235990476633475e-17,-1.973247953923618e-17,-0.008928571827709675,-1.0842021724855044e-19,1.2855400015324428e-18,1.229398736370586e-18,1.18483955074812e-18,3.779888249435072e-18,1.3618697469169985e-18,-3.4233022678920373e-18,3.8219640320635e-18,2.7973343733182993e-18,0.0029761905316263437,7.0,4.0,3.0,5.0,0.08282596617937088,-0.017202381044626236,-0.026428570970892906,-0.03232142701745033,-0.022397959604859352,0.0009920635493472219,0.002142857061699033,0.0026785715017467737,0.0017857142956927419,0.0023809524718672037,0.004285714123398066,0.0028571428265422583,0.0035714285913854837,0.0035714285913854837,0.001700680237263441,-0.017202381044626236,0.010892856866121292,0.002142857061699033,0.0026785715017467737,0.0017857142956927419,-0.0011904762359336019,-0.0007142857066355646,-0.0008928571478463709,-0.0005952381179668009,-3.2479106131190498e-18,-1.0303462625995244e-17,-6.954996628891798e-18,-2.962526518907232e-17,-1.3238291167527261e-17,-1.062874395725621e-17,-0.026428570970892906,0.002142857061699033,0.034285712987184525,0.004285714123398066,0.0028571428265422583,-2.7647155398380363e-18,-0.0014285714132711291,-1.0133443095710482e-17,-6.841650137505188e-18,-0.0071428571827709675,-0.0028571428265422583,-0.0019047618843615055,-4.964283087206368e-17,-2.1054964322057386e-17,-1.7295310978356892e-17,-0.03232142701745033,0.0026785715017467737,0.004285714123398066,0.06803571432828903,0.0035714285913854837,-1.3571149473199212e-17,-6.597199654931986e-18,-0.0026785715017467737,-1.0564256956701575e-17,-4.1781769551502734e-17,-0.004285714123398066,-1.6836116550549105e-17,-0.02142857201397419,-0.0035714285913854837,-9.516197613900963e-18,-0.022397959604859352,0.0017857142956927419,0.0028571428265422583,0.0035714285913854837,0.021403061226010323,-8.512329568145383e-18,-4.624709315731405e-18,-9.500075863762304e-18,-0.0008928571478463709,-2.638176923888247e-17,-1.5244042025568293e-17,-0.0014285714132711291,-1.9644149884705318e-17,-0.0017857142956927419,-0.003401360474526882,0.0009920635493472219,-0.0011904762359336019,-2.7647155398380363e-18,-1.3571149473199212e-17,-8.512329568145383e-18,0.00019841270113829523,1.0842021724855044e-19,6.2341624917916505e-19,3.9302328752599536e-19,4.4056469836361075e-20,8.987520014638721e-19,5.991679665100559e-19,3.436404601999724e-18,1.3216941015531808e-18,1.1328806141609079e-18,0.002142857061699033,-0.0007142857066355646,-0.0014285714132711291,-6.597199654931986e-18,-4.624709315731405e-18,1.0842021724855044e-19,0.0004761904710903764,2.8478877232496307e-19,1.8985917293351066e-19,-9.62735559218191e-19,6.56489825201179e-19,4.376598662345233e-19,9.516196993515503e-19,9.516196993515503e-19,4.531522353246055e-19,0.0026785715017467737,-0.0008928571478463709,-1.0133443095710482e-17,-0.0026785715017467737,-9.500075863762304e-18,6.2341624917916505e-19,2.8478877232496307e-19,0.0008928571478463709,6.07107814716011e-19,1.784287104305219e-18,1.5471663725374256e-18,9.516196993515503e-19,2.4248003495652424e-18,1.3232916975087504e-18,1.1328806141609079e-18,0.0017857142956927419,-0.0005952381179668009,-6.841650137505188e-18,-1.0564256956701575e-17,-0.0008928571478463709,3.9302328752599536e-19,1.8985917293351066e-19,6.07107814716011e-19,0.00029761905898340046,1.1895247017376204e-18,9.516196993515503e-19,7.173361453860258e-19,2.3790494034752407e-18,1.080448633660892e-18,9.150190251976103e-19,0.0023809524718672037,-3.2479106131190498e-18,-0.0071428571827709675,-4.1781769551502734e-17,-2.638176923888247e-17,4.4056469836361075e-20,-9.62735559218191e-19,1.784287104305219e-18,1.1895247017376204e-18,0.0023809524718672037,3.667512454497293e-18,2.4450081651347597e-18,1.0309214012794325e-17,3.965082408057119e-18,3.3986419458803e-18,0.004285714123398066,-1.0303462625995244e-17,-0.0028571428265422583,-0.004285714123398066,-1.5244042025568293e-17,8.987520014638721e-19,6.56489825201179e-19,1.5471663725374256e-18,9.516196993515503e-19,3.667512454497293e-18,0.0028571428265422583,1.5225915603215112e-18,7.612957594812403e-18,2.2204459996194763e-18,1.812608941298422e-18,0.0028571428265422583,-6.954996628891798e-18,-0.0019047618843615055,-1.6836116550549105e-17,-0.0014285714132711291,5.991679665100559e-19,4.376598662345233e-19,9.516196993515503e-19,7.173361453860258e-19,2.4450081651347597e-18,1.5225915603215112e-18,0.0009523809421807528,3.806478797406201e-18,1.72499955428594e-18,1.812608941298422e-18,0.0035714285913854837,-2.962526518907232e-17,-4.964283087206368e-17,-0.02142857201397419,-1.9644149884705318e-17,3.436404601999724e-18,9.516196993515503e-19,2.4248003495652424e-18,2.3790494034752407e-18,1.0309214012794325e-17,7.612957594812403e-18,3.806478797406201e-18,0.010714286006987095,6.69360749018537e-32,1.69932097294015e-18,0.0035714285913854837,-1.3238291167527261e-17,-2.1054964322057386e-17,-0.0035714285913854837,-0.0017857142956927419,1.3216941015531808e-18,9.516196993515503e-19,1.3232916975087504e-18,1.080448633660892e-18,3.965082408057119e-18,2.2204459996194763e-18,1.72499955428594e-18,6.69360749018537e-32,0.0017857142956927419,2.377552669921251e-32,0.001700680237263441,-1.062874395725621e-17,-1.7295310978356892e-17,-9.516197613900963e-18,-0.003401360474526882,1.1328806141609079e-18,4.531522353246055e-19,1.1328806141609079e-18,9.150190251976103e-19,3.3986419458803e-18,1.812608941298422e-18,1.812608941298422e-18,1.69932097294015e-18,2.377552669921251e-32,0.0008503401186317205,7.0,4.0,3.0,6.0,0.07158683240413666,-0.014547902159392834,-0.022363945841789246,-0.027359694242477417,-0.01645408198237419,0.0008267195662483573,0.0017857142956927419,0.0022321429569274187,0.0012755101779475808,0.0019841270986944437,0.0035714285913854837,0.0020408162381500006,0.0029761905316263437,0.0025510203558951616,0.0010629252064973116,-0.014547902159392834,0.009148242883384228,0.0017857142956927419,0.0022321429569274187,0.0012755101779475808,-0.0009920635493472219,-0.0005952381179668009,-0.0007440476329065859,-0.00042517005931586027,-0.0,-0.0,-6.776263578034403e-20,1.0964531923180353e-33,2.5256988454229414e-34,-1.9810997642630034e-19,-0.022363945841789246,0.0017857142956927419,0.028798185288906097,0.0035714285913854837,0.0020408162381500006,-0.0,-0.0011904762359336019,-1.3938401741945964e-19,-1.5769332423619706e-19,-0.0059523810632526875,-0.0023809524718672037,-0.0013605442363768816,2.6458091133155358e-33,4.041118152676706e-34,-2.8239493748162875e-19,-0.027359694242477417,0.0022321429569274187,0.0035714285913854837,0.05712159723043442,0.0025510203558951616,-1.7586837253093373e-20,-1.4230153513872246e-19,-0.0022321429569274187,-9.839586420543892e-21,-0.0,-0.0035714285913854837,3.501024978965784e-21,-0.01785714365541935,-0.0025510203558951616,3.8987491403752665e-18,-0.01645408198237419,0.0012755101779475808,0.0020408162381500006,0.0025510203558951616,0.012427721172571182,2.710505431213761e-20,-5.421010862427522e-20,-0.0,-0.0005102040595375001,-0.0,-0.0,-0.0008163265301845968,1.1807246373933984e-17,-0.0010204081190750003,-0.0015943878097459674,0.0008267195662483573,-0.0009920635493472219,-0.0,-1.7586837253093373e-20,2.710505431213761e-20,0.0001653439103392884,-4.0657581468206416e-20,-0.0,-0.0,-0.0,0.0,-3.5366838142882785e-21,2.8343854986587973e-35,-0.0,8.985095923079543e-21,0.0017857142956927419,-0.0005952381179668009,-0.0011904762359336019,-1.4230153513872246e-19,-5.421010862427522e-20,-4.0657581468206416e-20,0.00039682540227659047,4.743384504624082e-20,2.1448786821151472e-20,-0.0,-0.0,-9.525878375181548e-22,2.0843311371972748e-35,-0.0,-1.6045518659745786e-21,0.0022321429569274187,-0.0007440476329065859,-1.3938401741945964e-19,-0.0022321429569274187,-0.0,-0.0,4.743384504624082e-20,0.0007440476329065859,3.279862207497428e-21,-0.0,-0.0,-1.1670083599799932e-21,3.6833125381573426e-35,-0.0,-1.4906156125826767e-21,0.0012755101779475808,-0.00042517005931586027,-1.5769332423619706e-19,-9.839586420543892e-21,-0.0005102040595375001,-0.0,2.1448786821151472e-20,3.279862207497428e-21,0.0001700680295471102,-0.0,-0.0,3.733878744780162e-20,-5.395145299804937e-34,-1.0102795381691766e-34,5.744171586941237e-20,0.0019841270986944437,-0.0,-0.0059523810632526875,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,0.0035714285913854837,-0.0,-0.0023809524718672037,-0.0035714285913854837,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,-6.776263578034403e-20,-0.0013605442363768816,3.501024978965784e-21,-0.0008163265301845968,-3.5366838142882785e-21,-9.525878375181548e-22,-1.1670083599799932e-21,3.733878744780162e-20,-0.0,-0.0,0.0005442177061922848,-1.0833355937178202e-33,-1.6164471921940604e-34,1.1488343173882474e-19,0.0029761905316263437,1.0964531923180353e-33,2.6458091133155358e-33,-0.01785714365541935,1.1807246373933984e-17,2.8343854986587973e-35,2.0843311371972748e-35,3.6833125381573426e-35,-5.395145299804937e-34,-0.0,-0.0,-1.0833355937178202e-33,0.008928571827709675,-2.071553075769625e-18,-1.9471384941967493e-18,0.0025510203558951616,2.5256988454229414e-34,4.041118152676706e-34,-0.0025510203558951616,-0.0010204081190750003,-0.0,-0.0,-0.0,-1.0102795381691766e-34,-0.0,-0.0,-1.6164471921940604e-34,-2.071553075769625e-18,0.0010204081190750003,1.3605097000076527e-34,0.0010629252064973116,-1.9810997642630034e-19,-2.8239493748162875e-19,3.8987491403752665e-18,-0.0015943878097459674,8.985095923079543e-21,-1.6045518659745786e-21,-1.4906156125826767e-21,5.744171586941237e-20,-0.0,-0.0,1.1488343173882474e-19,-1.9471384941967493e-18,1.3605097000076527e-34,0.0003188775444868952,7.0,4.0,3.0,7.0,0.06305980682373047,-0.012606292963027954,-0.019387755542993546,-0.02372448891401291,-0.012606292963027954,0.0007086168043315411,0.0015306122368201613,0.0019132653251290321,0.0009566326625645161,0.001700680237263441,0.0030612244736403227,0.0015306122368201613,0.0025510203558951616,0.0019132653251290321,0.0007086168043315411,-0.012606292963027954,0.00788690522313118,0.0015306122368201613,0.0019132653251290321,0.0009566326625645161,-0.0008503401186317205,-0.0005102040595375001,-0.0006377550889737904,-0.0003188775444868952,-0.0,3.398641894181512e-19,2.710505431213761e-20,1.69932097294015e-18,2.19839765548824e-19,1.225538129355436e-19,-0.019387755542993546,0.0015306122368201613,0.024829931557178497,0.0030612244736403227,0.0015306122368201613,2.710505431213761e-20,-0.0010204081190750003,1.9917561769981592e-19,-5.1265810932681004e-20,-0.005102040711790323,-0.0020408162381500006,-0.0010204081190750003,2.7189135153452095e-18,3.0010435740850623e-19,1.0840470761206507e-19,-0.02372448891401291,0.0019132653251290321,0.0030612244736403227,0.049234695732593536,0.0019132653251290321,2.680444201413421e-20,-1.41403785680161e-19,-0.0019132653251290321,1.2625597770488546e-20,-0.0,-0.0030612244736403227,2.158535304781427e-19,-0.015306122601032257,-0.0019132653251290321,2.459681935611144e-18,-0.012606292963027954,0.0009566326625645161,0.0015306122368201613,0.0019132653251290321,0.00788690522313118,5.421010862427522e-20,-8.131516293641283e-20,2.168404344971009e-19,-0.0003188775444868952,-0.0,5.947623508688102e-19,-0.0005102040595375001,1.0857736502132327e-17,-0.0006377550889737904,-0.0008503401186317205,0.0007086168043315411,-0.0008503401186317205,2.710505431213761e-20,2.680444201413421e-20,5.421010862427522e-20,0.00014172335795592517,-1.3552527156068805e-20,-1.3552527156068805e-20,-6.776263578034403e-21,-0.0,7.887231320484722e-36,-5.617983124622677e-22,3.246524551330705e-35,-4.987527003782982e-22,-4.479838945351005e-21,0.0015306122368201613,-0.0005102040595375001,-0.0010204081190750003,-1.41403785680161e-19,-8.131516293641283e-20,-1.3552527156068805e-20,0.0003401360590942204,4.743384504624082e-20,2.5044235597951178e-20,-0.0,-2.370507188409254e-35,6.34123402659435e-22,-1.0899488973848975e-34,-2.9925162022697893e-22,8.508497718581217e-22,0.0019132653251290321,-0.0006377550889737904,1.9917561769981592e-19,-0.0019132653251290321,2.168404344971009e-19,-1.3552527156068805e-20,4.743384504624082e-20,0.0006377550889737904,-3.0493185293361245e-21,-0.0,-3.398641894181512e-19,-5.376559375882369e-22,-1.69932097294015e-18,-2.1267135373695413e-19,8.900550228879025e-22,0.0009566326625645161,-0.0003188775444868952,-5.1265810932681004e-20,1.2625597770488546e-20,-0.0003188775444868952,-6.776263578034403e-21,2.5044235597951178e-20,-3.0493185293361245e-21,0.00010629251482896507,-0.0,8.601411221569345e-37,-7.955631684459654e-21,2.6817030169888866e-34,-1.1592139598525282e-21,-3.18670620127715e-20,0.001700680237263441,-0.0,-0.005102040711790323,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.001700680237263441,-0.0,-0.0,-0.0,-0.0,-0.0,0.0030612244736403227,3.398641894181512e-19,-0.0020408162381500006,-0.0030612244736403227,5.947623508688102e-19,7.887231320484722e-36,-2.370507188409254e-35,-3.398641894181512e-19,8.601411221569345e-37,-0.0,0.0020408162381500006,-1.699320947090756e-19,-2.7189135153452095e-18,-3.398641894181512e-19,4.449742947896573e-34,0.0015306122368201613,2.710505431213761e-20,-0.0010204081190750003,2.158535304781427e-19,-0.0005102040595375001,-5.617983124622677e-22,6.34123402659435e-22,-5.376559375882369e-22,-7.955631684459654e-21,-0.0,-1.699320947090756e-19,0.0003401360590942204,4.81482486096809e-34,1.3552527156068805e-20,-3.698575257847767e-20,0.0025510203558951616,1.69932097294015e-18,2.7189135153452095e-18,-0.015306122601032257,1.0857736502132327e-17,3.246524551330705e-35,-1.0899488973848975e-34,-1.69932097294015e-18,2.6817030169888866e-34,-0.0,-2.7189135153452095e-18,4.81482486096809e-34,0.0076530613005161285,-3.494012148194908e-18,-1.2272873578570443e-18,0.0019132653251290321,2.19839765548824e-19,3.0010435740850623e-19,-0.0019132653251290321,-0.0006377550889737904,-4.987527003782982e-22,-2.9925162022697893e-22,-2.1267135373695413e-19,-1.1592139598525282e-21,-0.0,-3.398641894181512e-19,1.3552527156068805e-20,-3.494012148194908e-18,0.0006377550889737904,-2.592484408091882e-21,0.0007086168043315411,1.225538129355436e-19,1.0840470761206507e-19,2.459681935611144e-18,-0.0008503401186317205,-4.479838945351005e-21,8.508497718581217e-22,8.900550228879025e-22,-3.18670620127715e-20,-0.0,4.449742947896573e-34,-3.698575257847767e-20,-1.2272873578570443e-18,-2.592484408091882e-21,0.00014172335795592517,7.0,4.0,3.0,8.0,0.0563616082072258,-0.01112351194024086,-0.01711309514939785,-0.02094493992626667,-0.00997023843228817,0.0006200397037900984,0.0013392857508733869,0.0016741071594879031,0.0007440476329065859,0.0014880952658131719,0.0026785715017467737,0.0011904762359336019,0.0022321429569274187,0.0014880952658131719,0.0004960317746736109,-0.01112351194024086,0.006932043470442295,0.0013392857508733869,0.0016741071594879031,0.0007440476329065859,-0.0007440476329065859,-0.00044642857392318547,-0.0005580357392318547,-0.00024801588733680546,-7.434529256613157e-19,-2.973811754344051e-19,-8.131516293641283e-20,-1.2296732527936714e-33,1.6963874661234474e-34,7.03197160100354e-20,-0.01711309514939785,0.0013392857508733869,0.02182539738714695,0.0026785715017467737,0.0011904762359336019,-0.0,-0.0008928571478463709,3.8194643217368303e-22,7.043731136633717e-20,-0.004464285913854837,-0.0017857142956927419,-0.0007936508045531809,-1.0268361924295162e-33,2.714220129468508e-34,1.2322008106956093e-19,-0.02094493992626667,0.0016741071594879031,0.0026785715017467737,0.04326637089252472,0.0014880952658131719,-3.979379488237365e-20,-2.973811754344051e-19,-0.0016741071594879031,-2.8963356580683146e-34,-1.4869058513226313e-18,-0.0026785715017467737,3.273826525426499e-22,-0.013392857275903225,-0.0014880952658131719,1.6466828176724553e-18,-0.00997023843228817,0.0007440476329065859,0.0011904762359336019,0.0014880952658131719,0.005328798200935125,1.3552527156068805e-20,-1.0842021724855044e-19,-1.3552527156068805e-20,-0.00021258502965793014,-6.608470507765904e-19,-5.136622408812941e-34,-0.0003401360590942204,7.07713232787709e-18,-0.00042517005931586027,-0.0004960317746736109,0.0006200397037900984,-0.0007440476329065859,-0.0,-3.979379488237365e-20,1.3552527156068805e-20,0.00012400794366840273,-0.0,-0.0,-6.776263578034403e-21,-2.1295202280114419e-35,-3.540848132967451e-36,7.251219033340148e-22,5.677524642017004e-35,-0.0,2.0572427130397577e-22,0.0013392857508733869,-0.00044642857392318547,-0.0008928571478463709,-2.973811754344051e-19,-1.0842021724855044e-19,-0.0,0.00029761905898340046,-0.0,-5.4829149915194594e-21,4.956353010071399e-19,1.982541126480377e-19,8.713304730192505e-20,1.9284233068065179e-35,-0.0,-7.700801086862934e-22,0.0016741071594879031,-0.0005580357392318547,3.8194643217368303e-22,-0.0016741071594879031,-1.3552527156068805e-20,-0.0,-0.0,0.0005580357392318547,-0.0,-1.2037062152420224e-35,-3.009265538105056e-36,-1.0912755926206628e-22,1.9320213928473954e-35,-0.0,1.8115760285890648e-21,0.0007440476329065859,-0.00024801588733680546,7.043731136633717e-20,-2.8963356580683146e-34,-0.00021258502965793014,-6.776263578034403e-21,-5.4829149915194594e-21,-0.0,7.086167897796258e-05,-4.1026385793613893e-35,-3.2994431058226756e-36,-1.542530606815434e-20,2.3211074974934282e-34,-4.846821495773236e-35,-2.0660965142354337e-20,0.0014880952658131719,-7.434529256613157e-19,-0.004464285913854837,-1.4869058513226313e-18,-6.608470507765904e-19,-2.1295202280114419e-35,4.956353010071399e-19,-1.2037062152420224e-35,-4.1026385793613893e-35,0.0014880952658131719,9.912706020142797e-19,4.405647177506564e-19,0.0,-0.0,-4.3929572724078705e-35,0.0026785715017467737,-2.973811754344051e-19,-0.0017857142956927419,-0.0026785715017467737,-5.136622408812941e-34,-3.540848132967451e-36,1.982541126480377e-19,-3.009265538105056e-36,-3.2994431058226756e-36,9.912706020142797e-19,0.0017857142956927419,3.516110462764558e-34,0.0,-0.0,-5.092802011274639e-37,0.0011904762359336019,-8.131516293641283e-20,-0.0007936508045531809,3.273826525426499e-22,-0.0003401360590942204,7.251219033340148e-22,8.713304730192505e-20,-1.0912755926206628e-22,-1.542530606815434e-20,4.405647177506564e-19,3.516110462764558e-34,0.00022675737272948027,2.7685242950566515e-34,-7.754914163648437e-35,-3.454566670667427e-20,0.0022321429569274187,-1.2296732527936714e-33,-1.0268361924295162e-33,-0.013392857275903225,7.07713232787709e-18,5.677524642017004e-35,1.9284233068065179e-35,1.9320213928473954e-35,2.3211074974934282e-34,0.0,0.0,2.7685242950566515e-34,0.0066964286379516125,-1.2947207757535922e-18,-8.260588005460409e-19,0.0014880952658131719,1.6963874661234474e-34,2.714220129468508e-34,-0.0014880952658131719,-0.00042517005931586027,-0.0,-0.0,-0.0,-4.846821495773236e-35,-0.0,-0.0,-7.754914163648437e-35,-1.2947207757535922e-18,0.00042517005931586027,4.66218077801501e-35,0.0004960317746736109,7.03197160100354e-20,1.2322008106956093e-19,1.6466828176724553e-18,-0.0004960317746736109,2.0572427130397577e-22,-7.700801086862934e-22,1.8115760285890648e-21,-2.0660965142354337e-20,-4.3929572724078705e-35,-5.092802011274639e-37,-3.454566670667427e-20,-8.260588005460409e-19,4.66218077801501e-35,7.086167897796258e-05,7.0,4.0,4.0,3.0,0.09835813194513321,-0.02105654776096344,-0.03232142701745033,-0.03232142701745033,-0.03950892761349678,0.0012400794075801969,0.0026785715017467737,0.0026785715017467737,0.0033482143189758062,0.0029761905316263437,0.004285714123398066,0.0053571430034935474,0.0029761905316263437,0.0053571430034935474,0.004464285913854837,-0.02105654776096344,0.01346726156771183,0.0026785715017467737,0.0026785715017467737,0.0033482143189758062,-0.0014880952658131719,-0.0008928571478463709,-0.0008928571478463709,-0.0011160714784637094,-6.938893903907228e-18,-3.469446951953614e-18,-4.336808689942018e-18,-5.204170427930421e-18,-3.0357660829594124e-18,0.0,-0.03232142701745033,0.0026785715017467737,0.04238095134496689,0.004285714123398066,0.0053571430034935474,-1.5178830414797062e-18,-0.0017857142956927419,-6.750938202810173e-18,-3.440743784698024e-18,-0.008928571827709675,-0.0028571428265422583,-0.0035714285913854837,-1.214306433183765e-17,-6.071532165918825e-18,1.3010426069826053e-17,-0.03232142701745033,0.0026785715017467737,0.004285714123398066,0.04238095134496689,0.0053571430034935474,1.0842021724855044e-19,-8.944667923005412e-18,-0.0017857142956927419,-3.54852914082644e-18,-2.0925101928970236e-17,-0.0028571428265422583,-2.0675821952390643e-18,-0.008928571827709675,-0.0035714285913854837,9.540979117872439e-18,-0.03950892761349678,0.0033482143189758062,0.0053571430034935474,0.0053571430034935474,0.08415178209543228,-8.673617379884035e-19,-3.957337929572091e-18,-3.577867169202165e-18,-0.0033482143189758062,-7.318364664277155e-18,6.179952383167375e-18,-0.0053571430034935474,-6.667843360785852e-18,-0.0053571430034935474,-0.02678571455180645,0.0012400794075801969,-0.0014880952658131719,-1.5178830414797062e-18,1.0842021724855044e-19,-8.673617379884035e-19,0.00024801588733680546,5.421010862427522e-20,1.6263032587282567e-19,1.3552527156068805e-19,1.6263032587282567e-19,1.8973538018496328e-19,2.168404344971009e-19,2.710505431213761e-19,0.0,1.0842021724855044e-19,0.0026785715017467737,-0.0008928571478463709,-0.0017857142956927419,-8.944667923005412e-18,-3.957337929572091e-18,5.421010862427522e-20,0.0005952381179668009,6.912461967818556e-19,5.918517090883892e-19,2.204432196550756e-18,8.159765028547852e-19,1.1206711181268955e-18,1.5624664221350893e-18,5.693358528146958e-19,-1.6515897823130906e-19,0.0026785715017467737,-0.0008928571478463709,-6.750938202810173e-18,-0.0017857142956927419,-3.577867169202165e-18,1.6263032587282567e-19,6.912461967818556e-19,0.0005952381179668009,6.481338017495332e-19,1.1971053984613626e-18,1.629739547938561e-19,4.856788381665688e-19,5.047893986535345e-19,8.406480952023684e-19,-2.411669374328846e-19,0.0033482143189758062,-0.0011160714784637094,-3.440743784698024e-18,-3.54852914082644e-18,-0.0033482143189758062,1.3552527156068805e-19,5.918517090883892e-19,6.481338017495332e-19,0.0011160714784637094,1.4372141650956387e-19,2.975892889066446e-19,4.852746570397601e-19,1.4372141650956387e-19,4.0030862907226786e-19,-1.0677592694740222e-18,0.0029761905316263437,-6.938893903907228e-18,-0.008928571827709675,-2.0925101928970236e-17,-7.318364664277155e-18,1.6263032587282567e-19,2.204432196550756e-18,1.1971053984613626e-18,1.4372141650956387e-19,0.0029761905316263437,2.1205016953126036e-18,5.067439127036631e-18,3.906166055337723e-18,1.5177463498834818e-18,-1.5280768017585034e-18,0.004285714123398066,-3.469446951953614e-18,-0.0028571428265422583,-0.0028571428265422583,6.179952383167375e-18,1.8973538018496328e-19,8.159765028547852e-19,1.629739547938561e-19,2.975892889066446e-19,2.1205016953126036e-18,0.0019047618843615055,6.767073601428939e-19,-2.8196140695271088e-18,-3.021015074493331e-19,-3.863122884982914e-18,0.0053571430034935474,-4.336808689942018e-18,-0.0035714285913854837,-2.0675821952390643e-18,-0.0053571430034935474,2.168404344971009e-19,1.1206711181268955e-18,4.856788381665688e-19,4.852746570397601e-19,5.067439127036631e-18,6.767073601428939e-19,0.0035714285913854837,-1.4815520799042467e-19,-2.213641560201827e-19,-1.822426747988814e-18,0.0029761905316263437,-5.204170427930421e-18,-1.214306433183765e-17,-0.008928571827709675,-6.667843360785852e-18,2.710505431213761e-19,1.5624664221350893e-18,5.047893986535345e-19,1.4372141650956387e-19,3.906166055337723e-18,-2.8196140695271088e-18,-1.4815520799042467e-19,0.0029761905316263437,4.534418002377873e-18,-1.864004852231821e-19,0.0053571430034935474,-3.0357660829594124e-18,-6.071532165918825e-18,-0.0035714285913854837,-0.0053571430034935474,0.0,5.693358528146958e-19,8.406480952023684e-19,4.0030862907226786e-19,1.5177463498834818e-18,-3.021015074493331e-19,-2.213641560201827e-19,4.534418002377873e-18,0.0035714285913854837,-1.9364387061782227e-18,0.004464285913854837,0.0,1.3010426069826053e-17,9.540979117872439e-18,-0.02678571455180645,1.0842021724855044e-19,-1.6515897823130906e-19,-2.411669374328846e-19,-1.0677592694740222e-18,-1.5280768017585034e-18,-3.863122884982914e-18,-1.822426747988814e-18,-1.864004852231821e-19,-1.9364387061782227e-18,0.013392857275903225,7.0,4.0,4.0,4.0,0.07947172969579697,-0.01629464328289032,-0.025044642388820648,-0.025044642388820648,-0.025044642388820648,0.0009300595265813172,0.002008928684517741,0.002008928684517741,0.002008928684517741,0.0022321429569274187,0.003214285708963871,0.003214285708963871,0.0022321429569274187,0.003214285708963871,0.0022321429569274187,-0.01629464328289032,0.01026785746216774,0.002008928684517741,0.002008928684517741,0.002008928684517741,-0.0011160714784637094,-0.0006696428754366934,-0.0006696428754366934,-0.0006696428754366934,-0.0,-1.734723475976807e-18,0.0,8.673617379884035e-19,-1.3010426069826053e-18,8.673617379884035e-19,-0.025044642388820648,0.002008928684517741,0.03232142701745033,0.003214285708963871,0.003214285708963871,4.336808689942018e-19,-0.0013392857508733869,-2.76679279715131e-18,-2.8080445010944827e-18,-0.0066964286379516125,-0.002142857061699033,-0.002142857061699033,3.903127820947816e-18,2.2768245622195593e-18,5.637851296924623e-18,-0.025044642388820648,0.002008928684517741,0.003214285708963871,0.03232142701745033,0.003214285708963871,6.505213034913027e-19,-1.7889335846010823e-18,-0.0013392857508733869,-3.19807298121273e-18,5.421010862427522e-19,-0.002142857061699033,4.683616569464063e-18,-0.0066964286379516125,-0.002142857061699033,-2.168404344971009e-19,-0.025044642388820648,0.002008928684517741,0.003214285708963871,0.003214285708963871,0.03232142701745033,8.673617379884035e-19,-1.5449880957918438e-18,-2.1412992906588713e-18,-0.0013392857508733869,4.87890977618477e-19,4.445228907190568e-18,-0.002142857061699033,-5.908901840045999e-18,-0.002142857061699033,-0.0066964286379516125,0.0009300595265813172,-0.0011160714784637094,4.336808689942018e-19,6.505213034913027e-19,8.673617379884035e-19,0.00018601190822664648,-2.710505431213761e-20,2.710505431213761e-20,5.421010862427522e-20,-1.0842021724855044e-19,1.6263032587282567e-19,-8.131516293641283e-20,-1.6263032587282567e-19,0.0,-2.710505431213761e-19,0.002008928684517741,-0.0006696428754366934,-0.0013392857508733869,-1.7889335846010823e-18,-1.5449880957918438e-18,-2.710505431213761e-20,0.00044642857392318547,3.7655967914980517e-19,3.737274644312119e-19,-2.94764467114776e-19,2.0825302019379042e-19,2.0372149215367765e-19,7.696200217823035e-20,2.6992111846781445e-20,9.697211996576037e-21,0.002008928684517741,-0.0006696428754366934,-2.76679279715131e-18,-0.0013392857508733869,-2.1412992906588713e-18,2.710505431213761e-20,3.7655967914980517e-19,0.00044642857392318547,3.737274644312119e-19,2.9999788375403417e-19,3.17009550984829e-19,9.496494843794197e-20,-6.464808105423167e-20,3.17009550984829e-19,1.229852780978695e-19,0.002008928684517741,-0.0006696428754366934,-2.8080445010944827e-18,-3.19807298121273e-18,-0.0013392857508733869,5.421010862427522e-20,3.737274644312119e-19,3.737274644312119e-19,0.00044642857392318547,2.9999788375403417e-19,1.3574864910016859e-19,2.762258503226024e-19,3.3186013131714667e-19,4.982704399447924e-19,2.0795131899005877e-19,0.0022321429569274187,-0.0,-0.0066964286379516125,5.421010862427522e-19,4.87890977618477e-19,-1.0842021724855044e-19,-2.94764467114776e-19,2.9999788375403417e-19,2.9999788375403417e-19,0.0022321429569274187,-1.07254244136611e-18,-1.07254244136611e-18,3.0938723673651773e-19,-3.4749883382746835e-19,3.0938723673651773e-19,0.003214285708963871,-1.734723475976807e-18,-0.002142857061699033,-0.002142857061699033,4.445228907190568e-18,1.6263032587282567e-19,2.0825302019379042e-19,3.17009550984829e-19,1.3574864910016859e-19,-1.07254244136611e-18,0.0014285714132711291,-3.896321313578635e-19,-1.849058241400265e-18,-2.663747237631611e-19,-1.2316382244814967e-18,0.003214285708963871,0.0,-0.002142857061699033,4.683616569464063e-18,-0.002142857061699033,-8.131516293641283e-20,2.0372149215367765e-19,9.496494843794197e-20,2.762258503226024e-19,-1.07254244136611e-18,-3.896321313578635e-19,0.0014285714132711291,-1.1378061645159314e-18,-5.254990026621418e-19,-2.876778040118811e-18,0.0022321429569274187,8.673617379884035e-19,3.903127820947816e-18,-0.0066964286379516125,-5.908901840045999e-18,-1.6263032587282567e-19,7.696200217823035e-20,-6.464808105423167e-20,3.3186013131714667e-19,3.0938723673651773e-19,-1.849058241400265e-18,-1.1378061645159314e-18,0.0022321429569274187,1.7702492289247345e-18,1.3237464400505014e-18,0.003214285708963871,-1.3010426069826053e-18,2.2768245622195593e-18,-0.002142857061699033,-0.002142857061699033,0.0,2.6992111846781445e-20,3.17009550984829e-19,4.982704399447924e-19,-3.4749883382746835e-19,-2.663747237631611e-19,-5.254990026621418e-19,1.7702492289247345e-18,0.0014285714132711291,-1.4128991392908542e-18,0.0022321429569274187,8.673617379884035e-19,5.637851296924623e-18,-2.168404344971009e-19,-0.0066964286379516125,-2.710505431213761e-19,9.697211996576037e-21,1.229852780978695e-19,2.0795131899005877e-19,3.0938723673651773e-19,-1.2316382244814967e-18,-2.876778040118811e-18,1.3237464400505014e-18,-1.4128991392908542e-18,0.0022321429569274187,7.0,4.0,4.0,5.0,0.06678911298513412,-0.013303571380674839,-0.02046428620815277,-0.02046428620815277,-0.017334183678030968,0.0007440476329065859,0.0016071428544819355,0.0016071428544819355,0.0013392857508733869,0.0017857142956927419,0.0025714286603033543,0.002142857061699033,0.0017857142956927419,0.002142857061699033,0.0012755101779475808,-0.013303571380674839,0.008303571492433548,0.0016071428544819355,0.0016071428544819355,0.0013392857508733869,-0.0008928571478463709,-0.0005357142654247582,-0.0005357142654247582,-0.00044642857392318547,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.02046428620815277,0.0016071428544819355,0.02614285796880722,0.0025714286603033543,0.002142857061699033,-0.0,-0.0010714285308495164,1.0875654371573568e-20,-1.359456796446696e-20,-0.0053571430034935474,-0.001714285695925355,-0.0014285714132711291,0.0,0.0,-0.0,-0.02046428620815277,0.0016071428544819355,0.0025714286603033543,0.02614285796880722,0.002142857061699033,1.6731775645577194e-21,1.0875654371573568e-20,-0.0010714285308495164,-1.359456796446696e-20,-0.0,-0.001714285695925355,-0.0,-0.0053571430034935474,-0.0014285714132711291,-0.0,-0.017334183678030968,0.0013392857508733869,0.002142857061699033,0.002142857061699033,0.016320152208209038,-0.0,-1.359456796446696e-20,-1.359456796446696e-20,-0.0006696428754366934,-0.0,-0.0,-0.0010714285308495164,-0.0,-0.0010714285308495164,-0.0025510203558951616,0.0007440476329065859,-0.0008928571478463709,-0.0,1.6731775645577194e-21,-0.0,0.00014880952949170023,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0005357142654247582,-0.0010714285308495164,1.0875654371573568e-20,-1.359456796446696e-20,-0.0,0.0003571428533177823,-3.625217989225595e-21,4.5315223855577975e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0005357142654247582,1.0875654371573568e-20,-0.0010714285308495164,-1.359456796446696e-20,-0.0,-3.625217989225595e-21,0.0003571428533177823,4.5315223855577975e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.00044642857392318547,-1.359456796446696e-20,-1.359456796446696e-20,-0.0006696428754366934,-0.0,4.5315223855577975e-21,4.5315223855577975e-21,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025714286603033543,-0.0,-0.001714285695925355,-0.001714285695925355,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0,-0.0014285714132711291,-0.0,-0.0010714285308495164,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,0.002142857061699033,-0.0,0.0,-0.0014285714132711291,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,0.0012755101779475808,0.0,-0.0,-0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,7.0,4.0,4.0,6.0,0.05764526501297951,-0.011245748028159142,-0.0173086728900671,-0.0173086728900671,-0.012723213993012905,0.0006200397037900984,0.0013392857508733869,0.0013392857508733869,0.0009566326625645161,0.0014880952658131719,0.002142857061699033,0.0015306122368201613,0.0014880952658131719,0.0015306122368201613,0.0007971939048729837,-0.011245748028159142,0.00697278929874301,0.0013392857508733869,0.0013392857508733869,0.0009566326625645161,-0.0007440476329065859,-0.00044642857392318547,-0.00044642857392318547,-0.0003188775444868952,-7.434529256613157e-19,-4.758098496757752e-19,-2.439454888092385e-19,-7.434529256613157e-19,-2.350330829980742e-19,-1.657598086240552e-19,-0.0173086728900671,0.0013392857508733869,0.021955782547593117,0.002142857061699033,0.0015306122368201613,-2.710505431213761e-20,-0.0008928571478463709,-2.373997759775591e-19,-6.809648716804014e-20,-0.004464285913854837,-0.0014285714132711291,-0.0010204081190750003,-1.1895247017376204e-18,-3.8926571619589666e-19,-2.3714448736100993e-19,-0.0173086728900671,0.0013392857508733869,0.002142857061699033,0.021955782547593117,0.0015306122368201613,1.9570766944403588e-20,-2.3689641072542645e-19,-0.0008928571478463709,-4.969243585942272e-20,-1.1895247017376204e-18,-0.0014285714132711291,-3.898697648382135e-19,-0.004464285913854837,-0.0010204081190750003,-2.4220786668560015e-19,-0.012723213993012905,0.0009566326625645161,0.0015306122368201613,0.0015306122368201613,0.009473851881921291,-0.0,-1.7618285302889447e-19,-1.6263032587282567e-19,-0.00038265305920504034,-8.49660486470075e-19,-5.437826927292842e-19,-0.0006122448830865324,-8.49660486470075e-19,-0.0006122448830865324,-0.001195790828205645,0.0006200397037900984,-0.0007440476329065859,-2.710505431213761e-20,1.9570766944403588e-20,-0.0,0.00012400794366840273,-0.0,-0.0,-1.3552527156068805e-20,8.390297558860433e-36,-2.344699449928931e-37,2.1975634228378478e-21,1.3357316508850428e-35,1.2879905927595843e-21,4.350629940937241e-21,0.0013392857508733869,-0.00044642857392318547,-0.0008928571478463709,-2.3689641072542645e-19,-1.7618285302889447e-19,-0.0,0.00029761905898340046,-0.0,2.7186195560350234e-21,4.956353010071399e-19,1.5860328753349075e-19,1.1334919264829787e-19,1.351848923953733e-34,-4.0341294037010617e-22,-2.5645216745171743e-22,0.0013392857508733869,-0.00044642857392318547,-2.373997759775591e-19,-0.0008928571478463709,-1.6263032587282567e-19,-0.0,-0.0,0.00029761905898340046,-3.3881317890172014e-21,1.4444474582904269e-34,1.5860328753349075e-19,-2.0206529461184553e-22,4.956353010071399e-19,1.1160628432355743e-19,1.0482297880510317e-21,0.0009566326625645161,-0.0003188775444868952,-6.809648716804014e-20,-4.969243585942272e-20,-0.00038265305920504034,-1.3552527156068805e-20,2.7186195560350234e-21,-3.3881317890172014e-21,0.00012755101488437504,2.4269980719552894e-35,1.8197489114701825e-35,2.3976251723091453e-20,3.0615027162634234e-35,2.394273152123745e-20,5.451721881373114e-20,0.0014880952658131719,-7.434529256613157e-19,-0.004464285913854837,-1.1895247017376204e-18,-8.49660486470075e-19,8.390297558860433e-36,4.956353010071399e-19,1.4444474582904269e-34,2.4269980719552894e-35,0.0014880952658131719,7.930164505921508e-19,5.664403070804539e-19,6.60318844635302e-34,2.1448177831811444e-34,1.069535588504529e-34,0.002142857061699033,-4.758098496757752e-19,-0.0014285714132711291,-0.0014285714132711291,-5.437826927292842e-19,-2.344699449928931e-37,1.5860328753349075e-19,1.5860328753349075e-19,1.8197489114701825e-35,7.930164505921508e-19,0.0009523809421807528,1.8126090188466044e-19,7.930164505921508e-19,1.8126090188466044e-19,7.419939599637356e-35,0.0015306122368201613,-2.439454888092385e-19,-0.0010204081190750003,-3.898697648382135e-19,-0.0006122448830865324,2.1975634228378478e-21,1.1334919264829787e-19,-2.0206529461184553e-22,2.3976251723091453e-20,5.664403070804539e-19,1.8126090188466044e-19,0.0004081632650922984,2.1666711874356403e-34,4.743384504624082e-20,9.516553327413755e-20,0.0014880952658131719,-7.434529256613157e-19,-1.1895247017376204e-18,-0.004464285913854837,-8.49660486470075e-19,1.3357316508850428e-35,1.351848923953733e-34,4.956353010071399e-19,3.0615027162634234e-35,6.60318844635302e-34,7.930164505921508e-19,2.1666711874356403e-34,0.0014880952658131719,5.664403070804539e-19,1.1577866304531036e-34,0.0015306122368201613,-2.350330829980742e-19,-3.8926571619589666e-19,-0.0010204081190750003,-0.0006122448830865324,1.2879905927595843e-21,-4.0341294037010617e-22,1.1160628432355743e-19,2.394273152123745e-20,2.1448177831811444e-34,1.8126090188466044e-19,4.743384504624082e-20,5.664403070804539e-19,0.0004081632650922984,9.562527121130657e-20,0.0007971939048729837,-1.657598086240552e-19,-2.3714448736100993e-19,-2.4220786668560015e-19,-0.001195790828205645,4.350629940937241e-21,-2.5645216745171743e-22,1.0482297880510317e-21,5.451721881373114e-20,1.069535588504529e-34,7.419939599637356e-35,9.516553327413755e-20,1.1577866304531036e-34,9.562527121130657e-20,0.00023915816564112902,7.0,4.0,4.0,7.0,0.05072597786784172,-0.009741709567606449,-0.014999999664723873,-0.014999999664723873,-0.009741709567606449,0.0005314626032486558,0.0011479591485112906,0.0011479591485112906,0.000717474496923387,0.0012755101779475808,0.001836734707467258,0.0011479591485112906,0.0012755101779475808,0.0011479591485112906,0.0005314626032486558,-0.009741709567606449,0.00601084204390645,0.0011479591485112906,0.0011479591485112906,0.000717474496923387,-0.0006377550889737904,-0.00038265305920504034,-0.00038265305920504034,-0.00023915816564112902,-2.027786329173985e-18,6.129506566715676e-19,1.9651164376299768e-19,-2.027786329173985e-18,1.8668051170992545e-19,-5.200063682984249e-19,-0.014999999664723873,0.0011479591485112906,0.018928570672869682,0.001836734707467258,0.0011479591485112906,4.87890977618477e-19,-0.0007653061184100807,-1.1919808077714434e-18,-9.136585198851137e-19,-0.0038265306502580643,-0.0012244897661730647,-0.0007653061184100807,-3.1939141238879664e-18,3.8240862156237934e-19,-9.654647382517332e-19,-0.014999999664723873,0.0011479591485112906,0.001836734707467258,0.018928570672869682,0.0011479591485112906,5.812124603509439e-19,-1.3697219656768112e-18,-0.0007653061184100807,-9.289962062006485e-19,-5.006638870472146e-19,-0.0012244897661730647,-1.274423211087613e-18,-0.0038265306502580643,-0.0007653061184100807,-1.0058442836365452e-18,-0.009741709567606449,0.000717474496923387,0.0011479591485112906,0.0011479591485112906,0.00601084204390645,3.7764532785438687e-19,-7.453889935837843e-19,-7.453889935837843e-19,-0.00023915816564112902,-2.208683646405337e-19,-8.780981287490356e-19,-0.00038265305920504034,-9.855628489925107e-19,-0.00038265305920504034,-0.0006377550889737904,0.0005314626032486558,-0.0006377550889737904,4.87890977618477e-19,5.812124603509439e-19,3.7764532785438687e-19,0.00010629251482896507,-3.3881317890172014e-20,-3.3881317890172014e-20,-2.710505431213761e-20,-2.360167946168558e-20,-9.063045094233022e-20,-5.603291096396092e-20,-2.360167946168558e-20,-5.623402571273641e-20,-1.4032182051424457e-20,0.0011479591485112906,-0.00038265305920504034,-0.0007653061184100807,-1.3697219656768112e-18,-7.453889935837843e-19,-3.3881317890172014e-20,0.00025510202976875007,4.743384504624082e-20,2.6543817113281783e-20,5.848029411973069e-19,1.0539880435188126e-19,6.712170005258614e-20,4.248302432350375e-19,-4.166499001419699e-22,1.1535277918826615e-19,0.0011479591485112906,-0.00038265305920504034,-1.1919808077714434e-18,-0.0007653061184100807,-7.453889935837843e-19,-3.3881317890172014e-20,4.743384504624082e-20,0.00025510202976875007,2.744386878350904e-20,4.248302432350375e-19,-1.5565104438437205e-20,8.182386406895196e-22,5.848029411973069e-19,6.735711694738844e-20,1.1459806735219102e-19,0.000717474496923387,-0.00023915816564112902,-9.136585198851137e-19,-9.289962062006485e-19,-0.00023915816564112902,-2.710505431213761e-20,2.6543817113281783e-20,2.744386878350904e-20,7.97193861217238e-05,2.6551890202189845e-19,3.6713039564881683e-34,5.497314396526418e-20,2.6551890202189845e-19,5.918567109461557e-20,1.0580875635593225e-19,0.0012755101779475808,-2.027786329173985e-18,-0.0038265306502580643,-5.006638870472146e-19,-2.208683646405337e-19,-2.360167946168558e-20,5.848029411973069e-19,4.248302432350375e-19,2.6551890202189845e-19,0.0012755101779475808,-4.781218711866492e-19,-2.9882615656695866e-19,1.4161007677011348e-19,-8.49660473545378e-20,2.360167946168558e-20,0.001836734707467258,6.129506566715676e-19,-0.0012244897661730647,-0.0012244897661730647,-8.780981287490356e-19,-9.063045094233022e-20,1.0539880435188126e-19,-1.5565104438437205e-20,3.6713039564881683e-34,-4.781218711866492e-19,0.0008163265301845968,3.9396502619103844e-20,2.977857701515201e-19,-4.3095702786055e-20,1.8126090188466044e-19,0.0011479591485112906,1.9651164376299768e-19,-0.0007653061184100807,-1.274423211087613e-18,-0.00038265305920504034,-5.603291096396092e-20,6.712170005258614e-20,8.182386406895196e-22,5.497314396526418e-20,-2.9882615656695866e-19,3.9396502619103844e-20,0.00025510202976875007,4.248302432350375e-19,4.743384504624082e-20,1.2370558439034127e-19,0.0012755101779475808,-2.027786329173985e-18,-3.1939141238879664e-18,-0.0038265306502580643,-9.855628489925107e-19,-2.360167946168558e-20,4.248302432350375e-19,5.848029411973069e-19,2.6551890202189845e-19,1.4161007677011348e-19,2.977857701515201e-19,4.248302432350375e-19,0.0012755101779475808,-2.9882615656695866e-19,2.360167946168558e-20,0.0011479591485112906,1.8668051170992545e-19,3.8240862156237934e-19,-0.0007653061184100807,-0.00038265305920504034,-5.623402571273641e-20,-4.166499001419699e-22,6.735711694738844e-20,5.918567109461557e-20,-8.49660473545378e-20,-4.3095702786055e-20,4.743384504624082e-20,-2.9882615656695866e-19,0.00025510202976875007,1.3792011453039392e-19,0.0005314626032486558,-5.200063682984249e-19,-9.654647382517332e-19,-1.0058442836365452e-18,-0.0006377550889737904,-1.4032182051424457e-20,1.1535277918826615e-19,1.1459806735219102e-19,1.0580875635593225e-19,2.360167946168558e-20,1.8126090188466044e-19,1.2370558439034127e-19,2.360167946168558e-20,1.3792011453039392e-19,0.00010629251482896507,7.0,4.0,4.0,8.0,0.04530134052038193,-0.008593750186264515,-0.013236607424914837,-0.013236607424914837,-0.007700892630964518,0.0004650297632906586,0.0010044643422588706,0.0010044643422588706,0.0005580357392318547,0.0011160714784637094,0.0016071428544819355,0.0008928571478463709,0.0011160714784637094,0.0008928571478463709,0.00037202381645329297,-0.008593750186264515,0.005282738246023655,0.0010044643422588706,0.0010044643422588706,0.0005580357392318547,-0.0005580357392318547,-0.0003348214377183467,-0.0003348214377183467,-0.00018601190822664648,-0.0,-0.0,-2.710505431213761e-20,-0.0,-3.215992918605502e-20,-5.602145968235589e-20,-0.013236607424914837,0.0010044643422588706,0.016636904329061508,0.0016071428544819355,0.0008928571478463709,2.710505431213761e-20,-0.0006696428754366934,9.97136016953271e-21,-1.5640324559804112e-20,-0.0033482143189758062,-0.0010714285308495164,-0.0005952381179668009,0.0,-2.5875164372654836e-20,-4.0416755587679845e-20,-0.013236607424914837,0.0010044643422588706,0.0016071428544819355,0.016636904329061508,0.0008928571478463709,9.540676951379613e-21,7.64644627333025e-21,-0.0006696428754366934,-2.0995448224619798e-20,-0.0,-0.0010714285308495164,-2.388238126385089e-20,-0.0033482143189758062,-0.0005952381179668009,-5.805942591653341e-20,-0.007700892630964518,0.0005580357392318547,0.0008928571478463709,0.0008928571478463709,0.004060374107211828,-0.0,-0.0,-0.0,-0.0001594387722434476,-0.0,-0.0,-0.00025510202976875007,-0.0,-0.00025510202976875007,-0.00037202381645329297,0.0004650297632906586,-0.0005580357392318547,2.710505431213761e-20,9.540676951379613e-21,-0.0,9.300595411332324e-05,-0.0,-0.0,-0.0,-0.0,0.0,1.6477955799681116e-21,-0.0,1.6248332400340956e-21,6.82161674395382e-22,0.0010044643422588706,-0.0003348214377183467,-0.0006696428754366934,7.64644627333025e-21,-0.0,-0.0,0.00022321428696159273,-3.3881317890172014e-21,1.0634084816094426e-22,-0.0,-0.0,6.602345219174077e-22,-0.0,7.194140339899721e-22,-3.154616642219886e-22,0.0010044643422588706,-0.0003348214377183467,9.97136016953271e-21,-0.0006696428754366934,-0.0,-0.0,-3.3881317890172014e-21,0.00022321428696159273,1.9315631606683738e-22,-0.0,-0.0,5.515290095505219e-23,-0.0,6.894112303837162e-23,-1.0111829866756804e-22,0.0005580357392318547,-0.00018601190822664648,-1.5640324559804112e-20,-2.0995448224619798e-20,-0.0001594387722434476,-0.0,1.0634084816094426e-22,1.9315631606683738e-22,5.3146257414482534e-05,-0.0,-0.0,4.3775149264323485e-21,-0.0,5.8331371236433025e-21,1.491779360384898e-20,0.0011160714784637094,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0,-0.0010714285308495164,-0.0010714285308495164,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-2.710505431213761e-20,-0.0005952381179668009,-2.388238126385089e-20,-0.00025510202976875007,1.6477955799681116e-21,6.602345219174077e-22,5.515290095505219e-23,4.3775149264323485e-21,-0.0,-0.0,0.0001700680295471102,-0.0,6.776263578034403e-21,1.1818040079263778e-20,0.0011160714784637094,-0.0,0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,0.0008928571478463709,-3.215992918605502e-20,-2.5875164372654836e-20,-0.0005952381179668009,-0.00025510202976875007,1.6248332400340956e-21,7.194140339899721e-22,6.894112303837162e-23,5.8331371236433025e-21,-0.0,-0.0,6.776263578034403e-21,-0.0,0.0001700680295471102,1.6675080654081066e-20,0.00037202381645329297,-5.602145968235589e-20,-4.0416755587679845e-20,-5.805942591653341e-20,-0.00037202381645329297,6.82161674395382e-22,-3.154616642219886e-22,-1.0111829866756804e-22,1.491779360384898e-20,-0.0,-0.0,1.1818040079263778e-20,-0.0,1.6675080654081066e-20,5.3146257414482534e-05,7.0,4.0,5.0,3.0,0.08282596617937088,-0.017202381044626236,-0.026428570970892906,-0.022397959604859352,-0.03232142701745033,0.0009920635493472219,0.002142857061699033,0.0017857142956927419,0.0026785715017467737,0.0023809524718672037,0.0028571428265422583,0.004285714123398066,0.001700680237263441,0.0035714285913854837,0.0035714285913854837,-0.017202381044626236,0.010892856866121292,0.002142857061699033,0.0017857142956927419,0.0026785715017467737,-0.0011904762359336019,-0.0007142857066355646,-0.0005952381179668009,-0.0008928571478463709,-3.2479106131190498e-18,-6.954996628891798e-18,-1.0303462625995244e-17,-1.062874395725621e-17,-1.3238291167527261e-17,-2.962526518907232e-17,-0.026428570970892906,0.002142857061699033,0.034285712987184525,0.0028571428265422583,0.004285714123398066,-2.656295322589486e-18,-0.0014285714132711291,-6.841650137505188e-18,-1.0133443095710482e-17,-0.0071428571827709675,-0.0019047618843615055,-0.0028571428265422583,-1.7295310978356892e-17,-2.098548115060293e-17,-4.964283087206368e-17,-0.022397959604859352,0.0017857142956927419,0.0028571428265422583,0.021403061226010323,0.0035714285913854837,-8.487339614659544e-18,-4.624709315731405e-18,-0.0008928571478463709,-9.500075863762304e-18,-2.638176923888247e-17,-0.0014285714132711291,-1.5452491539931656e-17,-0.003401360474526882,-0.0017857142956927419,-3.550447786257257e-17,-0.03232142701745033,0.0026785715017467737,0.004285714123398066,0.0035714285913854837,0.06803571432828903,-1.3473225350743347e-17,-6.597199654931986e-18,-1.0564256956701575e-17,-0.0026785715017467737,-4.1781769551502734e-17,-1.6558183864731288e-17,-0.004285714123398066,-2.0208432646254292e-17,-0.0035714285913854837,-0.02142857201397419,0.0009920635493472219,-0.0011904762359336019,-2.656295322589486e-18,-8.487339614659544e-18,-1.3473225350743347e-17,0.00019841270113829523,1.0842021724855044e-19,4.0657581468206416e-19,6.2341624917916505e-19,4.4056469836361075e-20,5.991679665100559e-19,8.987520014638721e-19,1.1328806141609079e-18,1.3216941015531808e-18,3.436404601999724e-18,0.002142857061699033,-0.0007142857066355646,-0.0014285714132711291,-4.624709315731405e-18,-6.597199654931986e-18,1.0842021724855044e-19,0.0004761904710903764,1.8985917293351066e-19,2.8478877232496307e-19,-9.62735559218191e-19,4.376598662345233e-19,6.56489825201179e-19,4.531522353246055e-19,9.516196993515503e-19,9.516196993515503e-19,0.0017857142956927419,-0.0005952381179668009,-6.841650137505188e-18,-0.0008928571478463709,-1.0564256956701575e-17,4.0657581468206416e-19,1.8985917293351066e-19,0.00029761905898340046,6.07107814716011e-19,1.1895247017376204e-18,7.173361453860258e-19,9.516196993515503e-19,9.150190251976103e-19,1.080448633660892e-18,2.3790494034752407e-18,0.0026785715017467737,-0.0008928571478463709,-1.0133443095710482e-17,-9.500075863762304e-18,-0.0026785715017467737,6.2341624917916505e-19,2.8478877232496307e-19,6.07107814716011e-19,0.0008928571478463709,1.784287104305219e-18,9.516196993515503e-19,1.5471663725374256e-18,1.1328806141609079e-18,1.3232916975087504e-18,2.4248003495652424e-18,0.0023809524718672037,-3.2479106131190498e-18,-0.0071428571827709675,-2.638176923888247e-17,-4.1781769551502734e-17,4.4056469836361075e-20,-9.62735559218191e-19,1.1895247017376204e-18,1.784287104305219e-18,0.0023809524718672037,2.4450081651347597e-18,3.667512454497293e-18,3.3986419458803e-18,3.965082408057119e-18,1.0309214012794325e-17,0.0028571428265422583,-6.954996628891798e-18,-0.0019047618843615055,-0.0014285714132711291,-1.6558183864731288e-17,5.991679665100559e-19,4.376598662345233e-19,7.173361453860258e-19,9.516196993515503e-19,2.4450081651347597e-18,0.0009523809421807528,1.5225915603215112e-18,1.812608941298422e-18,1.5860329011843016e-18,3.806478797406201e-18,0.004285714123398066,-1.0303462625995244e-17,-0.0028571428265422583,-1.5452491539931656e-17,-0.004285714123398066,8.987520014638721e-19,6.56489825201179e-19,9.516196993515503e-19,1.5471663725374256e-18,3.667512454497293e-18,1.5225915603215112e-18,0.0028571428265422583,1.812608941298422e-18,2.4288961343682987e-18,7.612957594812403e-18,0.001700680237263441,-1.062874395725621e-17,-1.7295310978356892e-17,-0.003401360474526882,-2.0208432646254292e-17,1.1328806141609079e-18,4.531522353246055e-19,9.150190251976103e-19,1.1328806141609079e-18,3.3986419458803e-18,1.812608941298422e-18,1.812608941298422e-18,0.0008503401186317205,1.3810354183122756e-18,5.664403380997269e-18,0.0035714285913854837,-1.3238291167527261e-17,-2.098548115060293e-17,-0.0017857142956927419,-0.0035714285913854837,1.3216941015531808e-18,9.516196993515503e-19,1.080448633660892e-18,1.3232916975087504e-18,3.965082408057119e-18,1.5860329011843016e-18,2.4288961343682987e-18,1.3810354183122756e-18,0.0017857142956927419,7.59243161312637e-32,0.0035714285913854837,-2.962526518907232e-17,-4.964283087206368e-17,-3.550447786257257e-17,-0.02142857201397419,3.436404601999724e-18,9.516196993515503e-19,2.3790494034752407e-18,2.4248003495652424e-18,1.0309214012794325e-17,3.806478797406201e-18,7.612957594812403e-18,5.664403380997269e-18,7.59243161312637e-32,0.010714286006987095,7.0,4.0,5.0,4.0,0.06678911298513412,-0.013303571380674839,-0.02046428620815277,-0.017334183678030968,-0.02046428620815277,0.0007440476329065859,0.0016071428544819355,0.0013392857508733869,0.0016071428544819355,0.0017857142956927419,0.002142857061699033,0.0025714286603033543,0.0012755101779475808,0.002142857061699033,0.0017857142956927419,-0.013303571380674839,0.008303571492433548,0.0016071428544819355,0.0013392857508733869,0.0016071428544819355,-0.0008928571478463709,-0.0005357142654247582,-0.00044642857392318547,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.02046428620815277,0.0016071428544819355,0.02614285796880722,0.002142857061699033,0.0025714286603033543,-0.0,-0.0010714285308495164,-1.359456796446696e-20,1.0875654371573568e-20,-0.0053571430034935474,-0.0014285714132711291,-0.001714285695925355,0.0,0.0,-0.0,-0.017334183678030968,0.0013392857508733869,0.002142857061699033,0.016320152208209038,0.002142857061699033,3.137207883058626e-21,-1.359456796446696e-20,-0.0006696428754366934,1.3799315774446694e-37,-0.0,-0.0010714285308495164,-0.0,-0.0025510203558951616,-0.0010714285308495164,-0.0,-0.02046428620815277,0.0016071428544819355,0.0025714286603033543,0.002142857061699033,0.02614285796880722,-0.0,1.0875654371573568e-20,1.3799315774446694e-37,-0.0010714285308495164,-0.0,-0.0,-0.001714285695925355,-0.0,-0.0014285714132711291,-0.0053571430034935474,0.0007440476329065859,-0.0008928571478463709,-0.0,3.137207883058626e-21,-0.0,0.00014880952949170023,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0005357142654247582,-0.0010714285308495164,-1.359456796446696e-20,1.0875654371573568e-20,-0.0,0.0003571428533177823,4.5315223855577975e-21,-3.625217989225595e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.00044642857392318547,-1.359456796446696e-20,-0.0006696428754366934,1.3799315774446694e-37,-0.0,4.5315223855577975e-21,0.00022321428696159273,-4.5997720182354623e-38,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0005357142654247582,1.0875654371573568e-20,1.3799315774446694e-37,-0.0010714285308495164,-0.0,-3.625217989225595e-21,-4.5997720182354623e-38,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0,-0.0014285714132711291,-0.0010714285308495164,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0025714286603033543,-0.0,-0.001714285695925355,-0.0,-0.001714285695925355,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,-0.0,-0.0,0.0012755101779475808,-0.0,0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,0.002142857061699033,-0.0,0.0,-0.0010714285308495164,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,0.0017857142956927419,0.0,-0.0,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,7.0,4.0,5.0,5.0,0.056057821959257126,-0.010857142508029938,-0.01671428605914116,-0.01415306143462658,-0.01415306143462658,0.0005952381179668009,0.0012857143301516771,0.0010714285308495164,0.0010714285308495164,0.0014285714132711291,0.001714285695925355,0.001714285695925355,0.0010204081190750003,0.0014285714132711291,0.0010204081190750003,-0.010857142508029938,0.00671428581699729,0.0012857143301516771,0.0010714285308495164,0.0010714285308495164,-0.0007142857066355646,-0.00042857142398133874,-0.0003571428533177823,-0.0003571428533177823,-7.137148003630569e-19,-1.903239450401889e-19,-1.903239450401889e-19,-0.0,-0.0,0.0,-0.01671428605914116,0.0012857143301516771,0.021142857149243355,0.001714285695925355,0.001714285695925355,2.710505431213761e-20,-0.0008571428479626775,-0.0,-0.0,-0.004285714123398066,-0.0011428571306169033,-0.0011428571306169033,0.0,0.0,-0.0,-0.01415306143462658,0.0010714285308495164,0.001714285695925355,0.013198979198932648,0.0014285714132711291,1.6815856454579935e-20,-1.903239450401889e-19,-0.0005357142654247582,-0.0,-9.516196993515503e-19,-0.0008571428479626775,-5.071248851695394e-34,-0.0020408162381500006,-0.0007142857066355646,-0.0,-0.01415306143462658,0.0010714285308495164,0.001714285695925355,0.0014285714132711291,0.013198979198932648,2.710505431213761e-20,-1.903239450401889e-19,-0.0,-0.0005357142654247582,-9.516196993515503e-19,-5.071248851695394e-34,-0.0008571428479626775,-0.0,-0.0007142857066355646,-0.0020408162381500006,0.0005952381179668009,-0.0007142857066355646,2.710505431213761e-20,1.6815856454579935e-20,2.710505431213761e-20,0.0001190476177725941,-0.0,-0.0,-0.0,8.719595254279322e-36,-1.6254002131905586e-36,-1.6254002131905586e-36,-0.0,-0.0,-0.0,0.0012857143301516771,-0.00042857142398133874,-0.0008571428479626775,-1.903239450401889e-19,-1.903239450401889e-19,-0.0,0.0002857142826542258,-0.0,-0.0,4.758098496757752e-19,1.268826300267926e-19,1.268826300267926e-19,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0003571428533177823,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0003571428533177823,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-7.137148003630569e-19,-0.004285714123398066,-9.516196993515503e-19,-9.516196993515503e-19,8.719595254279322e-36,4.758098496757752e-19,-0.0,-0.0,0.0014285714132711291,6.34413150133963e-19,6.34413150133963e-19,-0.0,-0.0,-0.0,0.001714285695925355,-1.903239450401889e-19,-0.0011428571306169033,-0.0008571428479626775,-5.071248851695394e-34,-1.6254002131905586e-36,1.268826300267926e-19,-0.0,-0.0,6.34413150133963e-19,0.0005714285653084517,3.3808324147377693e-34,-0.0,-0.0,-0.0,0.001714285695925355,-1.903239450401889e-19,-0.0011428571306169033,-5.071248851695394e-34,-0.0008571428479626775,-1.6254002131905586e-36,1.268826300267926e-19,-0.0,-0.0,6.34413150133963e-19,3.3808324147377693e-34,0.0005714285653084517,-0.0,-0.0,-0.0,0.0010204081190750003,-0.0,0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,0.0014285714132711291,-0.0,0.0,-0.0007142857066355646,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0010204081190750003,0.0,-0.0,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,7.0,4.0,5.0,6.0,0.04833900183439255,-0.009175170212984085,-0.01413265336304903,-0.011964285746216774,-0.010382653214037418,0.0004960317746736109,0.0010714285308495164,0.0008928571478463709,0.0007653061184100807,0.0011904762359336019,0.0014285714132711291,0.0012244897661730647,0.0008503401186317205,0.0010204081190750003,0.0006377550889737904,-0.009175170212984085,0.005637755151838064,0.0010714285308495164,0.0008928571478463709,0.0007653061184100807,-0.0005952381179668009,-0.0003571428533177823,-0.00029761905898340046,-0.00025510202976875007,-6.185237860486436e-19,-3.2056067354367097e-18,-6.208854900950591e-19,-4.70747163114948e-18,-1.7944831393307006e-18,8.514250695118038e-19,-0.01413265336304903,0.0010714285308495164,0.01775510236620903,0.0014285714132711291,0.0012244897661730647,-1.0028870095490916e-18,-0.0007142857066355646,-3.2169066429896435e-18,-1.2274686913569524e-19,-0.0035714285913854837,-0.0009523809421807528,-0.0008163265301845968,-7.676614933212646e-18,-2.7791432240821862e-18,1.3405325196186166e-18,-0.011964285746216774,0.0008928571478463709,0.0014285714132711291,0.011084184050559998,0.0010204081190750003,-4.03481249292442e-18,-2.108436025307599e-18,-0.00044642857392318547,-4.939651199528187e-19,-1.2454511894534278e-17,-0.0007142857066355646,-9.699003908889723e-19,-0.001700680237263441,-0.0005102040595375001,1.6461127868328297e-18,-0.010382653214037418,0.0007653061184100807,0.0012244897661730647,0.0010204081190750003,0.007660714443773031,-1.2642018436558717e-19,1.1269289462560122e-18,-4.0329979171544204e-19,-0.0003061224415432662,2.788181051153729e-19,-5.159138405190305e-19,-0.0004897959297522902,2.3914378807142943e-18,-0.0004081632650922984,-0.0009566326625645161,0.0004960317746736109,-0.0005952381179668009,-1.0028870095490916e-18,-4.03481249292442e-18,-1.2642018436558717e-19,9.920635056914762e-05,5.421010862427522e-20,1.9651164376299768e-19,-0.0,2.2028234918180537e-20,2.9958398325502794e-19,2.1147105004465433e-20,5.664403070804539e-19,1.8126090188466044e-19,-5.96837436832976e-20,0.0010714285308495164,-0.0003571428533177823,-0.0007142857066355646,-2.108436025307599e-18,1.1269289462560122e-18,5.421010862427522e-20,0.0002380952355451882,9.492958646675533e-20,-9.534249822643561e-20,-4.813677796090955e-19,2.1882993311726163e-19,-7.006364544931341e-20,2.2657611766230274e-19,1.0875654371573568e-19,-2.1241512161751876e-19,0.0008928571478463709,-0.00029761905898340046,-3.2169066429896435e-18,-0.00044642857392318547,-4.0329979171544204e-19,1.9651164376299768e-19,9.492958646675533e-20,0.00014880952949170023,7.015145584121474e-20,5.947623508688102e-19,3.586680726930129e-19,1.0875654371573568e-19,4.575095125988051e-19,1.5894356895797975e-19,-5.310378040437969e-20,0.0007653061184100807,-0.00025510202976875007,-1.2274686913569524e-19,-4.939651199528187e-19,-0.0003061224415432662,-0.0,-9.534249822643561e-20,7.015145584121474e-20,0.0001020408162730746,-4.531522547116511e-20,8.156740778680176e-20,9.825582188149884e-20,-1.6184008404450196e-20,4.504305396906675e-20,-5.558305395770279e-20,0.0011904762359336019,-6.185237860486436e-19,-0.0035714285913854837,-1.2454511894534278e-17,2.788181051153729e-19,2.2028234918180537e-20,-4.813677796090955e-19,5.947623508688102e-19,-4.531522547116511e-20,0.0011904762359336019,1.2225040825673799e-18,1.539854483663369e-19,1.69932097294015e-18,4.984674640269449e-19,-2.8322015354022696e-19,0.0014285714132711291,-3.2056067354367097e-18,-0.0009523809421807528,-0.0007142857066355646,-5.159138405190305e-19,2.9958398325502794e-19,2.1882993311726163e-19,3.586680726930129e-19,8.156740778680176e-20,1.2225040825673799e-18,0.0004761904710903764,1.7401046994517708e-19,9.06304470649211e-19,2.3563917374252827e-19,-8.49660473545378e-20,0.0012244897661730647,-6.208854900950591e-19,-0.0008163265301845968,-9.699003908889723e-19,-0.0004897959297522902,2.1147105004465433e-20,-7.006364544931341e-20,1.0875654371573568e-19,9.825582188149884e-20,1.539854483663369e-19,1.7401046994517708e-19,0.00032653060043230653,-2.5894414093355167e-20,1.2197274440461925e-19,8.120694444783617e-20,0.0008503401186317205,-4.70747163114948e-18,-7.676614933212646e-18,-0.001700680237263441,2.3914378807142943e-18,5.664403070804539e-19,2.2657611766230274e-19,4.575095125988051e-19,-1.6184008404450196e-20,1.69932097294015e-18,9.06304470649211e-19,-2.5894414093355167e-20,0.00042517005931586027,-7.27509743137392e-20,-3.540252113123293e-19,0.0010204081190750003,-1.7944831393307006e-18,-2.7791432240821862e-18,-0.0005102040595375001,-0.0004081632650922984,1.8126090188466044e-19,1.0875654371573568e-19,1.5894356895797975e-19,4.504305396906675e-20,4.984674640269449e-19,2.3563917374252827e-19,1.2197274440461925e-19,-7.27509743137392e-20,0.0002040816325461492,2.2699386972103616e-20,0.0006377550889737904,8.514250695118038e-19,1.3405325196186166e-18,1.6461127868328297e-18,-0.0009566326625645161,-5.96837436832976e-20,-2.1241512161751876e-19,-5.310378040437969e-20,-5.558305395770279e-20,-2.8322015354022696e-19,-8.49660473545378e-20,8.120694444783617e-20,-3.540252113123293e-19,2.2699386972103616e-20,0.00019132652960252017,7.0,4.0,5.0,7.0,0.04250789433717728,-0.007946428842842579,-0.01224489789456129,-0.010364431887865067,-0.007946428842842579,0.00042517005931586027,0.000918367353733629,0.0007653061184100807,0.0005739795742556453,0.0010204081190750003,0.0012244897661730647,0.000918367353733629,0.0007288630004040897,0.0007653061184100807,0.00042517005931586027,-0.007946428842842579,0.004859693814069033,0.000918367353733629,0.0007653061184100807,0.0005739795742556453,-0.0005102040595375001,-0.0003061224415432662,-0.00025510202976875007,-0.00019132652960252017,7.801982013260877e-19,-2.5474129181736714e-18,-3.9155248284869365e-19,-3.7055156133798165e-18,-1.3954753034704606e-18,3.6480386583238396e-19,-0.01224489789456129,0.000918367353733629,0.015306122601032257,0.0012244897661730647,0.000918367353733629,-8.673617379884035e-19,-0.0006122448830865324,-3.0521761055415457e-18,5.222606939615733e-19,-0.0030612244736403227,-0.0008163265301845968,-0.0006122448830865324,-6.052819272511344e-18,-2.2091171407451032e-18,5.83743788121721e-19,-0.010364431887865067,0.0007653061184100807,0.0012244897661730647,0.00955539382994175,0.0007653061184100807,-3.37687882396403e-18,-1.9503295502048257e-18,-0.00038265305920504034,1.8349708127312098e-19,-9.654501385139217e-18,-0.0006122448830865324,9.03067712912291e-20,-0.0014577260008081794,-0.00038265305920504034,5.4181260700412435e-19,-0.007946428842842579,0.0005739795742556453,0.000918367353733629,0.0007653061184100807,0.004859693814069033,-5.522129556409067e-19,2.586302452781334e-19,-5.5445347772758315e-19,-0.00019132652960252017,3.209173331442885e-19,-6.525392622944141e-19,-0.0003061224415432662,1.8547204994883434e-18,-0.00025510202976875007,-0.0005102040595375001,0.00042517005931586027,-0.0005102040595375001,-8.673617379884035e-19,-3.37687882396403e-18,-5.522129556409067e-19,8.50340147735551e-05,2.0328790734103208e-20,9.486769009248164e-20,1.3552527156068805e-20,1.8881344215583318e-20,2.567862787469937e-19,4.531522547116511e-20,4.855202779829e-19,1.6049141775452253e-19,1.5147106810459432e-20,0.000918367353733629,-0.0003061224415432662,-0.0006122448830865324,-1.9503295502048257e-18,2.586302452781334e-19,2.0328790734103208e-20,0.0002040816325461492,1.3432371417277235e-19,2.975278836708596e-20,-9.260810149268585e-19,1.285045890363413e-19,-7.332245271943678e-20,1.9420811377809942e-19,1.0195925811791506e-19,-9.063045094233022e-20,0.0007653061184100807,-0.00025510202976875007,-3.0521761055415457e-18,-0.00038265305920504034,-5.5445347772758315e-19,9.486769009248164e-20,1.3432371417277235e-19,0.00012755101488437504,7.065831722390515e-20,5.097962712025297e-19,3.3899629600982406e-19,1.0195925811791506e-19,3.9215099972066405e-19,9.476982428625896e-20,-3.4832248603566023e-34,0.0005739795742556453,-0.00019132652960252017,5.222606939615733e-19,1.8349708127312098e-19,-0.00019132652960252017,1.3552527156068805e-20,2.975278836708596e-20,7.065831722390515e-20,6.377550744218752e-05,-2.1241512161751876e-19,7.159377616247542e-35,-2.541098841762901e-20,-1.21380069495725e-19,1.6940658945086007e-21,-1.2274132444065172e-19,0.0010204081190750003,7.801982013260877e-19,-0.0030612244736403227,-9.654501385139217e-18,3.209173331442885e-19,1.8881344215583318e-20,-9.260810149268585e-19,5.097962712025297e-19,-2.1241512161751876e-19,0.0010204081190750003,1.7312265957866333e-19,-3.9331766042648767e-19,1.4565608339487e-18,4.531522353246055e-19,-1.8881344215583318e-20,0.0012244897661730647,-2.5474129181736714e-18,-0.0008163265301845968,-0.0006122448830865324,-6.525392622944141e-19,2.567862787469937e-19,1.285045890363413e-19,3.3899629600982406e-19,7.159377616247542e-35,1.7312265957866333e-19,0.0004081632650922984,1.6313481557360351e-19,7.768324551123977e-19,2.0391851623583012e-19,-3.2715688372963953e-34,0.000918367353733629,-3.9155248284869365e-19,-0.0006122448830865324,9.03067712912291e-20,-0.0003061224415432662,4.531522547116511e-20,-7.332245271943678e-20,1.0195925811791506e-19,-2.541098841762901e-20,-3.9331766042648767e-19,1.6313481557360351e-19,0.0002040816325461492,-1.9420811377809942e-19,1.4963573863979538e-35,-1.102445899389303e-19,0.0007288630004040897,-3.7055156133798165e-18,-6.052819272511344e-18,-0.0014577260008081794,1.8547204994883434e-18,4.855202779829e-19,1.9420811377809942e-19,3.9215099972066405e-19,-1.21380069495725e-19,1.4565608339487e-18,7.768324551123977e-19,-1.9420811377809942e-19,0.00036443150020204484,-7.365375794180987e-20,-1.3486674532021635e-19,0.0007653061184100807,-1.3954753034704606e-18,-2.2091171407451032e-18,-0.00038265305920504034,-0.00025510202976875007,1.6049141775452253e-19,1.0195925811791506e-19,9.476982428625896e-20,1.6940658945086007e-21,4.531522353246055e-19,2.0391851623583012e-19,1.4963573863979538e-35,-7.365375794180987e-20,0.00012755101488437504,-7.818765705799002e-22,0.00042517005931586027,3.6480386583238396e-19,5.83743788121721e-19,5.4181260700412435e-19,-0.0005102040595375001,1.5147106810459432e-20,-9.063045094233022e-20,-3.4832248603566023e-34,-1.2274132444065172e-19,-1.8881344215583318e-20,-3.2715688372963953e-34,-1.102445899389303e-19,-1.3486674532021635e-19,-7.818765705799002e-22,8.50340147735551e-05,7.0,4.0,5.0,8.0,0.037942178547382355,-0.007008928339928389,-0.010803570970892906,-0.009143282659351826,-0.006279761902987957,0.00037202381645329297,0.0008035714272409678,0.0006696428754366934,0.00044642857392318547,0.0008928571478463709,0.0010714285308495164,0.0007142857066355646,0.0006377550889737904,0.0005952381179668009,0.00029761905898340046,-0.007008928339928389,0.0042708334513008595,0.0008035714272409678,0.0006696428754366934,0.00044642857392318547,-0.00044642857392318547,-0.0002678571327123791,-0.00022321428696159273,-0.00014880952949170023,-0.0,-0.0,-4.743384504624082e-20,-0.0,-0.0,-7.19178935769732e-20,-0.010803570970892906,0.0008035714272409678,0.013452380895614624,0.0010714285308495164,0.0007142857066355646,-2.710505431213761e-20,-0.0005357142654247582,-1.4217568655554719e-21,-4.163474995909577e-20,-0.0026785715017467737,-0.0007142857066355646,-0.0004761904710903764,0.0,0.0,-9.001150658663888e-20,-0.009143282659351826,0.0006696428754366934,0.0010714285308495164,0.00839817151427269,0.0005952381179668009,-0.0,-0.0,-0.0003348214377183467,-0.0,-0.0,-0.0005357142654247582,-1.2186486842051497e-21,-0.0012755101779475808,-0.00029761905898340046,-1.1010368691094463e-21,-0.006279761902987957,0.00044642857392318547,0.0007142857066355646,0.0005952381179668009,0.0032823130022734404,-1.3552527156068805e-20,-0.0,-3.3881317890172014e-21,-0.00012755101488437504,-0.0,-0.0,-0.0002040816325461492,-0.0,-0.0001700680295471102,-0.00029761905898340046,0.00037202381645329297,-0.00044642857392318547,-2.710505431213761e-20,-0.0,-1.3552527156068805e-20,7.440476474585012e-05,-0.0,-0.0,-3.3881317890172014e-21,-0.0,0.0,6.719446003864491e-22,-0.0,-0.0,1.2908340261152353e-21,0.0008035714272409678,-0.0002678571327123791,-0.0005357142654247582,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-2.3065546606246046e-23,-0.0,-0.0,3.6655162859256497e-22,-0.0,-0.0,-6.347953606893895e-23,0.0006696428754366934,-0.00022321428696159273,-1.4217568655554719e-21,-0.0003348214377183467,-3.3881317890172014e-21,-0.0,-0.0,0.00011160714348079637,-0.0,-0.0,-0.0,4.0621623648289956e-22,-0.0,-0.0,3.6701229811766507e-22,0.00044642857392318547,-0.00014880952949170023,-4.163474995909577e-20,-0.0,-0.00012755101488437504,-3.3881317890172014e-21,-2.3065546606246046e-23,-0.0,4.251700738677755e-05,-0.0,-0.0,1.1915413131410621e-20,-0.0,-0.0,1.7968190133700194e-20,0.0008928571478463709,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0007142857066355646,-0.0005357142654247582,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-4.743384504624082e-20,-0.0004761904710903764,-1.2186486842051497e-21,-0.0002040816325461492,6.719446003864491e-22,3.6655162859256497e-22,4.0621623648289956e-22,1.1915413131410621e-20,-0.0,-0.0,0.0001360544265480712,-0.0,-0.0,2.5771984900348783e-20,0.0006377550889737904,-0.0,0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,0.0005952381179668009,-0.0,0.0,-0.00029761905898340046,-0.0001700680295471102,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.50340147735551e-05,0.0,0.00029761905898340046,-7.19178935769732e-20,-9.001150658663888e-20,-1.1010368691094463e-21,-0.00029761905898340046,1.2908340261152353e-21,-6.347953606893895e-23,3.6701229811766507e-22,1.7968190133700194e-20,-0.0,-0.0,2.5771984900348783e-20,-0.0,0.0,4.251700738677755e-05,7.0,4.0,6.0,3.0,0.07158683240413666,-0.014547902159392834,-0.022363945841789246,-0.01645408198237419,-0.027359694242477417,0.0008267195662483573,0.0017857142956927419,0.0012755101779475808,0.0022321429569274187,0.0019841270986944437,0.0020408162381500006,0.0035714285913854837,0.0010629252064973116,0.0025510203558951616,0.0029761905316263437,-0.014547902159392834,0.009148242883384228,0.0017857142956927419,0.0012755101779475808,0.0022321429569274187,-0.0009920635493472219,-0.0005952381179668009,-0.00042517005931586027,-0.0007440476329065859,-0.0,-8.16748055571144e-20,-0.0,-1.8973538018496328e-19,2.710505431213761e-20,5.7777898331617076e-34,-0.022363945841789246,0.0017857142956927419,0.028798185288906097,0.0020408162381500006,0.0035714285913854837,-0.0,-0.0011904762359336019,-1.385933878502238e-19,-1.635294324245796e-19,-0.0059523810632526875,-0.0013605442363768816,-0.0023809524718672037,-2.396682154099092e-19,5.082197683525802e-21,1.3722250853759055e-33,-0.01645408198237419,0.0012755101779475808,0.0020408162381500006,0.012427721172571182,0.0025510203558951616,1.6794836050380858e-21,-8.131516293641283e-20,-0.0005102040595375001,-6.512675367260991e-20,-0.0,-0.0008163265301845968,-0.0,-0.0015943878097459674,-0.0010204081190750003,7.915551016232263e-18,-0.027359694242477417,0.0022321429569274187,0.0035714285913854837,0.0025510203558951616,0.05712159723043442,-5.421010862427522e-20,-1.5839516113655416e-19,-4.404571325722362e-20,-0.0022321429569274187,-0.0,-1.0789339205564653e-21,-0.0035714285913854837,3.63207727782644e-18,-0.0025510203558951616,-0.01785714365541935,0.0008267195662483573,-0.0009920635493472219,-0.0,1.6794836050380858e-21,-5.421010862427522e-20,0.0001653439103392884,-4.0657581468206416e-20,-0.0,1.3552527156068805e-20,-0.0,3.884836530754899e-22,0.0,7.313480227383515e-21,-9.653275498624652e-22,1.5978601469491638e-35,0.0017857142956927419,-0.0005952381179668009,-0.0011904762359336019,-8.131516293641283e-20,-1.5839516113655416e-19,-4.0657581468206416e-20,0.00039682540227659047,2.0328790734103208e-20,5.421010862427522e-20,-0.0,7.886656211262025e-22,-0.0,3.840268792618043e-21,-1.6940658945086007e-21,2.407412430484045e-35,0.0012755101779475808,-0.00042517005931586027,-1.385933878502238e-19,-0.0005102040595375001,-4.404571325722362e-20,-0.0,2.0328790734103208e-20,0.0001700680295471102,2.0328790734103208e-20,-0.0,3.1042808844105086e-20,-0.0,5.421010862427522e-20,-6.776263578034403e-21,-2.8888949165808538e-34,0.0022321429569274187,-0.0007440476329065859,-1.635294324245796e-19,-6.512675367260991e-20,-0.0022321429569274187,1.3552527156068805e-20,5.421010862427522e-20,2.0328790734103208e-20,0.0007440476329065859,-0.0,3.5964464018548843e-22,-0.0,9.12084765148879e-22,-1.3486674006955816e-21,4.472650537551185e-36,0.0019841270986944437,-0.0,-0.0059523810632526875,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020408162381500006,-8.16748055571144e-20,-0.0013605442363768816,-0.0008163265301845968,-1.0789339205564653e-21,3.884836530754899e-22,7.886656211262025e-22,3.1042808844105086e-20,3.5964464018548843e-22,-0.0,0.0005442177061922848,-0.0,9.12589595738542e-20,-0.0,-5.7777898331617076e-34,0.0035714285913854837,-0.0,-0.0023809524718672037,-0.0,-0.0035714285913854837,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-0.0,-0.0,-0.0,0.0010629252064973116,-1.8973538018496328e-19,-2.396682154099092e-19,-0.0015943878097459674,3.63207727782644e-18,7.313480227383515e-21,3.840268792618043e-21,5.421010862427522e-20,9.12084765148879e-22,-0.0,9.12589595738542e-20,-0.0,0.0003188775444868952,-3.215145575465518e-19,-1.4161008452493172e-18,0.0025510203558951616,2.710505431213761e-20,5.082197683525802e-21,-0.0010204081190750003,-0.0025510203558951616,-9.653275498624652e-22,-1.6940658945086007e-21,-6.776263578034403e-21,-1.3486674006955816e-21,-0.0,-0.0,-0.0,-3.215145575465518e-19,0.0010204081190750003,-8.350471518771953e-19,0.0029761905316263437,5.7777898331617076e-34,1.3722250853759055e-33,7.915551016232263e-18,-0.01785714365541935,1.5978601469491638e-35,2.407412430484045e-35,-2.8888949165808538e-34,4.472650537551185e-36,-0.0,-5.7777898331617076e-34,-0.0,-1.4161008452493172e-18,-8.350471518771953e-19,0.008928571827709675,7.0,4.0,6.0,4.0,0.05764526501297951,-0.011245748028159142,-0.0173086728900671,-0.012723213993012905,-0.0173086728900671,0.0006200397037900984,0.0013392857508733869,0.0009566326625645161,0.0013392857508733869,0.0014880952658131719,0.0015306122368201613,0.002142857061699033,0.0007971939048729837,0.0015306122368201613,0.0014880952658131719,-0.011245748028159142,0.00697278929874301,0.0013392857508733869,0.0009566326625645161,0.0013392857508733869,-0.0007440476329065859,-0.00044642857392318547,-0.0003188775444868952,-0.00044642857392318547,-7.434529256613157e-19,-2.6514853190262783e-19,-4.758098496757752e-19,-1.6263032587282567e-19,-1.7618285302889447e-19,-7.434529256613157e-19,-0.0173086728900671,0.0013392857508733869,0.021955782547593117,0.0015306122368201613,0.002142857061699033,-0.0,-0.0008928571478463709,-9.213348981412735e-20,-2.5688504928201137e-19,-0.004464285913854837,-0.0010204081190750003,-0.0014285714132711291,-3.07640102035835e-19,-3.3711288330322324e-19,-1.1895247017376204e-18,-0.012723213993012905,0.0009566326625645161,0.0015306122368201613,0.009473851881921291,0.0015306122368201613,2.4778561987305338e-20,-1.7618285302889447e-19,-0.00038265305920504034,-1.661013825182513e-19,-8.49660486470075e-19,-0.0006122448830865324,-5.981609775118491e-19,-0.001195790828205645,-0.0006122448830865324,1.80930352757066e-18,-0.0173086728900671,0.0013392857508733869,0.002142857061699033,0.0015306122368201613,0.021955782547593117,5.421010862427522e-20,-2.5611613320385504e-19,-3.5575383784680614e-20,-0.0008928571478463709,-1.1895247017376204e-18,-3.924138622096969e-19,-0.0014285714132711291,1.7889335846010823e-18,-0.0010204081190750003,-0.004464285913854837,0.0006200397037900984,-0.0007440476329065859,-0.0,2.4778561987305338e-20,5.421010862427522e-20,0.00012400794366840273,-0.0,-1.3552527156068805e-20,-0.0,-7.678306642922512e-37,7.245376666367209e-22,-5.735461791134565e-36,-8.845480921936377e-22,-2.5779693674358152e-21,2.6984184548220834e-35,0.0013392857508733869,-0.00044642857392318547,-0.0008928571478463709,-1.7618285302889447e-19,-2.5611613320385504e-19,-0.0,0.00029761905898340046,-0.0,6.776263578034403e-21,4.956353010071399e-19,1.1274316652732914e-19,1.5860328753349075e-19,1.5366062286006107e-21,-8.470329472543003e-22,1.4745401136714774e-34,0.0009566326625645161,-0.0003188775444868952,-9.213348981412735e-20,-0.00038265305920504034,-3.5575383784680614e-20,-1.3552527156068805e-20,-0.0,0.00012755101488437504,3.3881317890172014e-21,4.6376641443719323e-35,3.685339398694638e-20,2.407412430484045e-35,6.776263578034403e-20,1.0164395367051604e-20,-1.4444474582904269e-34,0.0013392857508733869,-0.00044642857392318547,-2.5688504928201137e-19,-1.661013825182513e-19,-0.0008928571478463709,-0.0,6.776263578034403e-21,3.3881317890172014e-21,0.00029761905898340046,1.392608157419164e-34,-5.394669602782326e-22,1.5860328753349075e-19,-2.221073648758645e-21,1.1253280415779924e-19,4.956353010071399e-19,0.0014880952658131719,-7.434529256613157e-19,-0.004464285913854837,-8.49660486470075e-19,-1.1895247017376204e-18,-7.678306642922512e-37,4.956353010071399e-19,4.6376641443719323e-35,1.392608157419164e-34,0.0014880952658131719,5.664403070804539e-19,7.930164505921508e-19,1.6340045319382856e-34,1.8704851819368102e-34,6.60318844635302e-34,0.0015306122368201613,-2.6514853190262783e-19,-0.0010204081190750003,-0.0006122448830865324,-3.924138622096969e-19,7.245376666367209e-22,1.1274316652732914e-19,3.685339398694638e-20,-5.394669602782326e-22,5.664403070804539e-19,0.0004081632650922984,2.1751308743147135e-19,1.2121211305728553e-19,2.710505431213761e-20,-4.81482486096809e-35,0.002142857061699033,-4.758098496757752e-19,-0.0014285714132711291,-5.981609775118491e-19,-0.0014285714132711291,-5.735461791134565e-36,1.5860328753349075e-19,2.407412430484045e-35,1.5860328753349075e-19,7.930164505921508e-19,2.1751308743147135e-19,0.0009523809421807528,-2.527783052008247e-34,1.8126090188466044e-19,7.930164505921508e-19,0.0007971939048729837,-1.6263032587282567e-19,-3.07640102035835e-19,-0.001195790828205645,1.7889335846010823e-18,-8.845480921936377e-22,1.5366062286006107e-21,6.776263578034403e-20,-2.221073648758645e-21,1.6340045319382856e-34,1.2121211305728553e-19,-2.527783052008247e-34,0.00023915816564112902,-1.350840611767705e-19,-4.956353010071399e-19,0.0015306122368201613,-1.7618285302889447e-19,-3.3711288330322324e-19,-0.0006122448830865324,-0.0010204081190750003,-2.5779693674358152e-21,-8.470329472543003e-22,1.0164395367051604e-20,1.1253280415779924e-19,1.8704851819368102e-34,2.710505431213761e-20,1.8126090188466044e-19,-1.350840611767705e-19,0.0004081632650922984,4.459151804465908e-19,0.0014880952658131719,-7.434529256613157e-19,-1.1895247017376204e-18,1.80930352757066e-18,-0.004464285913854837,2.6984184548220834e-35,1.4745401136714774e-34,-1.4444474582904269e-34,4.956353010071399e-19,6.60318844635302e-34,-4.81482486096809e-35,7.930164505921508e-19,-4.956353010071399e-19,4.459151804465908e-19,0.0014880952658131719,7.0,4.0,6.0,5.0,0.04833900183439255,-0.009175170212984085,-0.01413265336304903,-0.010382653214037418,-0.011964285746216774,0.0004960317746736109,0.0010714285308495164,0.0007653061184100807,0.0008928571478463709,0.0011904762359336019,0.0012244897661730647,0.0014285714132711291,0.0006377550889737904,0.0010204081190750003,0.0008503401186317205,-0.009175170212984085,0.005637755151838064,0.0010714285308495164,0.0007653061184100807,0.0008928571478463709,-0.0005952381179668009,-0.0003571428533177823,-0.00025510202976875007,-0.00029761905898340046,-6.185237860486436e-19,-9.368457366234704e-19,-3.613443793757764e-18,2.168404344971009e-19,-2.283330337737289e-18,-5.67851218711528e-18,-0.01413265336304903,0.0010714285308495164,0.01775510236620903,0.0012244897661730647,0.0014285714132711291,-9.75781955236954e-19,-0.0007142857066355646,-4.387070768900154e-19,-3.624743494515545e-18,-0.0035714285913854837,-0.0008163265301845968,-0.0009523809421807528,3.6793564917969215e-19,-3.603804658079684e-18,-9.230280153630171e-18,-0.010382653214037418,0.0007653061184100807,0.0012244897661730647,0.007660714443773031,0.0010204081190750003,-1.3200756968353266e-19,1.1269289462560122e-18,-0.0003061224415432662,-2.717087927733305e-18,2.788181051153729e-19,-0.0004897959297522902,-4.3278176502738726e-18,-0.0009566326625645161,-0.0004081632650922984,-7.242946471927633e-18,-0.011964285746216774,0.0008928571478463709,0.0014285714132711291,0.0010204081190750003,0.011084184050559998,-4.028666540973151e-18,-2.108436025307599e-18,-2.816571906029292e-18,-0.00044642857392318547,-1.2454511894534278e-17,-4.6732954233709325e-18,-0.0007142857066355646,-5.55653613398821e-18,-0.0005102040595375001,-0.001700680237263441,0.0004960317746736109,-0.0005952381179668009,-9.75781955236954e-19,-1.3200756968353266e-19,-4.028666540973151e-18,9.920635056914762e-05,5.421010862427522e-20,-6.776263578034403e-21,2.0328790734103208e-19,2.2028234918180537e-20,2.1147105004465433e-20,2.9958398325502794e-19,-5.867999232170718e-20,1.8126090188466044e-19,5.664403070804539e-19,0.0010714285308495164,-0.0003571428533177823,-0.0007142857066355646,1.1269289462560122e-18,-2.108436025307599e-18,5.421010862427522e-20,0.0002380952355451882,-9.534249822643561e-20,9.492958646675533e-20,-4.813677796090955e-19,-7.006364544931341e-20,2.1882993311726163e-19,-2.1241512161751876e-19,1.0875654371573568e-19,2.2657611766230274e-19,0.0007653061184100807,-0.00025510202976875007,-4.387070768900154e-19,-0.0003061224415432662,-2.816571906029292e-18,-6.776263578034403e-21,-9.534249822643561e-20,0.0001020408162730746,1.1006370880341967e-19,-4.531522547116511e-20,9.413206157163204e-20,2.447022298227538e-19,-5.925709943297924e-20,1.5246593050577406e-19,3.7223220622705158e-19,0.0008928571478463709,-0.00029761905898340046,-3.624743494515545e-18,-2.717087927733305e-18,-0.00044642857392318547,2.0328790734103208e-19,9.492958646675533e-20,1.1006370880341967e-19,0.00014880952949170023,5.947623508688102e-19,2.718913463646421e-19,3.586680726930129e-19,2.6551890202189845e-19,2.6908859995537104e-19,4.575095125988051e-19,0.0011904762359336019,-6.185237860486436e-19,-0.0035714285913854837,2.788181051153729e-19,-1.2454511894534278e-17,2.2028234918180537e-20,-4.813677796090955e-19,-4.531522547116511e-20,5.947623508688102e-19,0.0011904762359336019,1.539854483663369e-19,1.2225040825673799e-18,-2.8322015354022696e-19,4.984674640269449e-19,1.69932097294015e-18,0.0012244897661730647,-9.368457366234704e-19,-0.0008163265301845968,-0.0004897959297522902,-4.6732954233709325e-18,2.1147105004465433e-20,-7.006364544931341e-20,9.413206157163204e-20,2.718913463646421e-19,1.539854483663369e-19,0.00032653060043230653,2.5466293196396423e-19,6.240865110445774e-20,2.778268066994105e-19,5.955715403030402e-19,0.0014285714132711291,-3.613443793757764e-18,-0.0009523809421807528,-4.3278176502738726e-18,-0.0007142857066355646,2.9958398325502794e-19,2.1882993311726163e-19,2.447022298227538e-19,3.586680726930129e-19,1.2225040825673799e-18,2.5466293196396423e-19,0.0004761904710903764,4.248302432350375e-19,4.531522353246055e-19,9.06304470649211e-19,0.0006377550889737904,2.168404344971009e-19,3.6793564917969215e-19,-0.0009566326625645161,-5.55653613398821e-18,-5.867999232170718e-20,-2.1241512161751876e-19,-5.925709943297924e-20,2.6551890202189845e-19,-2.8322015354022696e-19,6.240865110445774e-20,4.248302432350375e-19,0.00019132652960252017,2.183888132062236e-19,7.889704517222125e-19,0.0010204081190750003,-2.283330337737289e-18,-3.603804658079684e-18,-0.0004081632650922984,-0.0005102040595375001,1.8126090188466044e-19,1.0875654371573568e-19,1.5246593050577406e-19,2.6908859995537104e-19,4.984674640269449e-19,2.778268066994105e-19,4.531522353246055e-19,2.183888132062236e-19,0.0002040816325461492,5.792841472467179e-19,0.0008503401186317205,-5.67851218711528e-18,-9.230280153630171e-18,-7.242946471927633e-18,-0.001700680237263441,5.664403070804539e-19,2.2657611766230274e-19,3.7223220622705158e-19,4.575095125988051e-19,1.69932097294015e-18,5.955715403030402e-19,9.06304470649211e-19,7.889704517222125e-19,5.792841472467179e-19,0.00042517005931586027,7.0,4.0,6.0,6.0,0.04165620729327202,-0.0077522676438093185,-0.01194727886468172,-0.008773688226938248,-0.008773688226938248,0.00041335978312417865,0.0008928571478463709,0.0006377550889737904,0.0006377550889737904,0.0009920635493472219,0.0010204081190750003,0.0010204081190750003,0.0005314626032486558,0.0007288630004040897,0.0005314626032486558,-0.0077522676438093185,0.004733560141175985,0.0008928571478463709,0.0006377550889737904,0.0006377550889737904,-0.0004960317746736109,-0.00029761905898340046,-0.00021258502965793014,-0.00021258502965793014,-0.0,-2.722655938930341e-20,-1.719780064007776e-20,-2.710505431213761e-20,3.660363714074365e-20,-3.372199191820179e-20,-0.01194727886468172,0.0008928571478463709,0.014909297227859497,0.0010204081190750003,0.0010204081190750003,5.421010862427522e-20,-0.0005952381179668009,-5.647870961533872e-20,-4.5322802574823066e-20,-0.0029761905316263437,-0.0006802721181884408,-0.0006802721181884408,-1.2891225983135923e-19,8.700299899999523e-20,-9.132112090441785e-20,-0.008773688226938248,0.0006377550889737904,0.0010204081190750003,0.006432519294321537,0.0007288630004040897,2.4712466702070656e-20,-2.868857527259674e-20,-0.00025510202976875007,2.3433873272849554e-20,-0.0,-0.0004081632650922984,6.776263578034403e-20,-0.0007971939048729837,-0.0002915451768785715,8.995813534255331e-19,-0.008773688226938248,0.0006377550889737904,0.0010204081190750003,0.0007288630004040897,0.006432519294321537,1.3552527156068805e-20,-2.868857527259674e-20,4.002321875670277e-21,-0.00025510202976875007,-0.0,1.9140161274432917e-20,-0.0004081632650922984,1.0570971181733668e-18,-0.0002915451768785715,-0.0007971939048729837,0.00041335978312417865,-0.0004960317746736109,5.421010862427522e-20,2.4712466702070656e-20,1.3552527156068805e-20,8.26719551696442e-05,-2.710505431213761e-20,-0.0,-0.0,-0.0,-4.1260473778276575e-38,-3.76158192263132e-37,-3.470719795508226e-21,1.8725277396896786e-36,-1.0796538665730062e-21,0.0008928571478463709,-0.00029761905898340046,-0.0005952381179668009,-2.868857527259674e-20,-2.868857527259674e-20,-2.710505431213761e-20,0.00019841270113829523,9.562858962727959e-21,9.562858962727959e-21,-0.0,1.2247510007781991e-36,7.736205156559853e-37,3.76158192263132e-36,-1.6465665013929412e-36,2.4119296248245567e-36,0.0006377550889737904,-0.00021258502965793014,-5.647870961533872e-20,-0.00025510202976875007,4.002321875670277e-21,-0.0,9.562858962727959e-21,8.50340147735551e-05,2.465094554790881e-21,-0.0,1.101319657442395e-20,1.0285663886920031e-22,2.0328790734103208e-20,-3.3881317890172014e-21,-5.67855249601427e-22,0.0006377550889737904,-0.00021258502965793014,-4.5322802574823066e-20,2.3433873272849554e-20,-0.00025510202976875007,-0.0,9.562858962727959e-21,2.465094554790881e-21,8.50340147735551e-05,-0.0,-1.2257330842743668e-22,6.776263578034403e-21,-4.628975207319376e-22,-1.1253322905721546e-20,1.6863752150751316e-20,0.0009920635493472219,-0.0,-0.0029761905316263437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,-2.722655938930341e-20,-0.0006802721181884408,-0.0004081632650922984,1.9140161274432917e-20,-4.1260473778276575e-38,1.2247510007781991e-36,1.101319657442395e-20,-1.2257330842743668e-22,-0.0,0.0002721088530961424,1.645706221907205e-22,5.1243473824967805e-20,-6.776263578034403e-21,-3.8304157305852153e-22,0.0010204081190750003,-1.719780064007776e-20,-0.0006802721181884408,6.776263578034403e-20,-0.0004081632650922984,-3.76158192263132e-37,7.736205156559853e-37,1.0285663886920031e-22,6.776263578034403e-21,-0.0,1.645706221907205e-22,0.0002721088530961424,3.2142699252194643e-22,-2.802493408325913e-20,3.691149050028116e-20,0.0005314626032486558,-2.710505431213761e-20,-1.2891225983135923e-19,-0.0007971939048729837,1.0570971181733668e-18,-3.470719795508226e-21,3.76158192263132e-36,2.0328790734103208e-20,-4.628975207319376e-22,-0.0,5.1243473824967805e-20,3.2142699252194643e-22,0.0001594387722434476,-1.4533170451765734e-19,-1.373186508274913e-19,0.0007288630004040897,3.660363714074365e-20,8.700299899999523e-20,-0.0002915451768785715,-0.0002915451768785715,1.8725277396896786e-36,-1.6465665013929412e-36,-3.3881317890172014e-21,-1.1253322905721546e-20,-0.0,-6.776263578034403e-21,-2.802493408325913e-20,-1.4533170451765734e-19,0.00011661807366181165,-8.458482695207595e-20,0.0005314626032486558,-3.372199191820179e-20,-9.132112090441785e-20,8.995813534255331e-19,-0.0007971939048729837,-1.0796538665730062e-21,2.4119296248245567e-36,-5.67855249601427e-22,1.6863752150751316e-20,-0.0,-3.8304157305852153e-22,3.691149050028116e-20,-1.373186508274913e-19,-8.458482695207595e-20,0.0001594387722434476,7.0,4.0,6.0,7.0,0.036613721400499344,-0.006713131908327341,-0.01034985389560461,-0.007598396390676498,-0.006713131908327341,0.00035430840216577053,0.0007653061184100807,0.000546647235751152,0.00047831633128225803,0.0008503401186317205,0.0008746355888433754,0.0007653061184100807,0.0004555393534246832,0.000546647235751152,0.00035430840216577053,-0.006713131908327341,0.004080114420503378,0.0007653061184100807,0.000546647235751152,0.00047831633128225803,-0.00042517005931586027,-0.00025510202976875007,-0.00018221575010102242,-0.0001594387722434476,-0.0,5.938291489661826e-20,3.918964930482877e-20,1.2197274440461925e-19,1.6300926829742872e-20,6.103129198698038e-20,-0.01034985389560461,0.0007653061184100807,0.012852284125983715,0.0008746355888433754,0.0007653061184100807,-2.710505431213761e-20,-0.0005102040595375001,1.539934035173842e-20,-3.8557812563808966e-21,-0.0025510203558951616,-0.000583090353757143,-0.0005102040595375001,2.0286493370468192e-19,3.853920100002652e-20,1.0057972765132975e-19,-0.007598396390676498,0.000546647235751152,0.0008746355888433754,0.005544824991375208,0.000546647235751152,-1.4890756753163286e-20,-4.340464828249502e-20,-0.00021865889721084386,-4.761987909691499e-21,-0.0,-0.0003498542355373502,3.3881317890172014e-20,-0.00068330904468894,-0.00021865889721084386,5.664014295916639e-19,-0.006713131908327341,0.00047831633128225803,0.0007653061184100807,0.000546647235751152,0.004080114420503378,-0.0,-4.352786911319701e-20,-3.833686809855208e-20,-0.0001594387722434476,-0.0,-1.7894879636325548e-20,-0.00025510202976875007,6.640738306473715e-19,-0.00018221575010102242,-0.00042517005931586027,0.00035430840216577053,-0.00042517005931586027,-2.710505431213761e-20,-1.4890756753163286e-20,-0.0,7.086167897796258e-05,6.776263578034403e-21,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,-1.713481215978278e-36,-0.0,-8.4108935365000315e-22,-1.310684115700577e-37,1.5500159047345071e-21,0.0007653061184100807,-0.00025510202976875007,-0.0005102040595375001,-4.340464828249502e-20,-4.352786911319701e-20,6.776263578034403e-21,0.0001700680295471102,1.4468216094165007e-20,1.4509290781457093e-20,-0.0,-4.701377961437275e-36,-3.583375859801552e-36,-9.027796614315168e-36,-1.581682929695286e-36,-7.197857406602554e-36,0.000546647235751152,-0.00018221575010102242,1.539934035173842e-20,-0.00021865889721084386,-3.833686809855208e-20,3.3881317890172014e-21,1.4468216094165007e-20,7.288629421964288e-05,8.393786993107005e-21,-0.0,-2.4226204055337384e-20,5.871730773968709e-22,-4.743384504624082e-20,3.3881317890172014e-21,5.852951088150145e-22,0.00047831633128225803,-0.0001594387722434476,-3.8557812563808966e-21,-4.761987909691499e-21,-0.0001594387722434476,3.3881317890172014e-21,1.4509290781457093e-20,8.393786993107005e-21,5.3146257414482534e-05,-0.0,3.9419682356481565e-22,-1.3552527156068805e-20,6.929830284794887e-22,-8.257084895566247e-21,-2.4189877578631808e-20,0.0008503401186317205,-0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008503401186317205,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008746355888433754,5.938291489661826e-20,-0.000583090353757143,-0.0003498542355373502,-1.7894879636325548e-20,-1.713481215978278e-36,-4.701377961437275e-36,-2.4226204055337384e-20,3.9419682356481565e-22,-0.0,0.0002332361473236233,9.394769440298326e-22,-8.33478688188824e-20,3.3881317890172014e-21,1.0511914621900445e-21,0.0007653061184100807,3.918964930482877e-20,-0.0005102040595375001,3.3881317890172014e-20,-0.00025510202976875007,-0.0,-3.583375859801552e-36,5.871730773968709e-22,-1.3552527156068805e-20,-0.0,9.394769440298326e-22,0.0001700680295471102,1.8349158100672364e-21,-1.5669842952327464e-20,-3.4402567691876865e-20,0.0004555393534246832,1.2197274440461925e-19,2.0286493370468192e-19,-0.00068330904468894,6.640738306473715e-19,-8.4108935365000315e-22,-9.027796614315168e-36,-4.743384504624082e-20,6.929830284794887e-22,-0.0,-8.33478688188824e-20,1.8349158100672364e-21,0.000136661808937788,-6.379594285163427e-20,-8.679137001015237e-20,0.000546647235751152,1.6300926829742872e-20,3.853920100002652e-20,-0.00021865889721084386,-0.00018221575010102242,-1.310684115700577e-37,-1.581682929695286e-36,3.3881317890172014e-21,-8.257084895566247e-21,-0.0,3.3881317890172014e-21,-1.5669842952327464e-20,-6.379594285163427e-20,7.288629421964288e-05,-4.5383102749008474e-20,0.00035430840216577053,6.103129198698038e-20,1.0057972765132975e-19,5.664014295916639e-19,-0.00042517005931586027,1.5500159047345071e-21,-7.197857406602554e-36,5.852951088150145e-22,-2.4189877578631808e-20,-0.0,1.0511914621900445e-21,-3.4402567691876865e-20,-8.679137001015237e-20,-4.5383102749008474e-20,7.086167897796258e-05,7.0,4.0,6.0,8.0,0.032669004052877426,-0.005920493043959141,-0.009130527265369892,-0.006701743230223656,-0.005303996615111828,0.0003100198518950492,0.0006696428754366934,0.00047831633128225803,0.00037202381645329297,0.0007440476329065859,0.0007653061184100807,0.0005952381179668009,0.00039859695243649185,0.00042517005931586027,0.00024801588733680546,-0.005920493043959141,0.003585600992664695,0.0006696428754366934,0.00047831633128225803,0.00037202381645329297,-0.00037202381645329297,-0.00022321428696159273,-0.0001594387722434476,-0.00012400794366840273,-3.7172646283065783e-19,-1.699320947090756e-19,-4.236778061583407e-20,-1.6594931053251226e-19,-6.326966211159447e-20,4.961333348217307e-20,-0.009130527265369892,0.0006696428754366934,0.011295351199805737,0.0007653061184100807,0.0005952381179668009,-1.3552527156068805e-20,-0.00044642857392318547,-8.826509566899216e-20,1.8633484068675778e-20,-0.0022321429569274187,-0.0005102040595375001,-0.00039682540227659047,-2.6551890202189845e-19,-9.924229938545368e-20,7.36119594714818e-20,-0.006701743230223656,0.00047831633128225803,0.0007653061184100807,0.004872980527579784,0.00042517005931586027,1.9148998939952094e-21,-8.826509566899216e-20,-0.00019132652960252017,-1.606630157263618e-20,-4.248302432350375e-19,-0.0003061224415432662,-1.1434737992779916e-19,-0.0005978954141028225,-0.0001700680295471102,2.5865167442587735e-19,-0.005303996615111828,0.00037202381645329297,0.0005952381179668009,0.00042517005931586027,0.00275550689548254,-6.776263578034403e-21,-7.116814482457338e-20,-4.720335892337116e-20,-0.00010629251482896507,-3.304235253882952e-19,-1.6615582134231495e-19,-0.0001700680295471102,2.3601680754155287e-19,-0.00012147716188337654,-0.00024801588733680546,0.0003100198518950492,-0.00037202381645329297,-1.3552527156068805e-20,1.9148998939952094e-21,-6.776263578034403e-21,6.200397183420137e-05,-0.0,-0.0,3.3881317890172014e-21,1.4091587218381646e-35,2.283640458945539e-36,1.504632769052528e-36,2.2155369051638444e-36,1.737981563170084e-36,-2.42032825089785e-22,0.0006696428754366934,-0.00022321428696159273,-0.00044642857392318547,-8.826509566899216e-20,-7.116814482457338e-20,-0.0,0.00014880952949170023,1.0996827041686566e-21,1.694479686763269e-21,2.4781765050356993e-19,5.664402941557569e-20,4.4056469836361075e-20,3.062310581643688e-35,1.1563214668583843e-35,-9.027796614315168e-36,0.00047831633128225803,-0.0001594387722434476,-8.826509566899216e-20,-0.00019132652960252017,-4.720335892337116e-20,-0.0,1.0996827041686566e-21,6.377550744218752e-05,1.7962398854115132e-36,4.899696930629901e-35,3.3986418295580265e-20,1.3020680583316664e-35,6.637972550547461e-20,1.8881344215583318e-20,-2.9340338996524296e-35,0.00037202381645329297,-0.00012400794366840273,1.8633484068675778e-20,-1.606630157263618e-20,-0.00010629251482896507,3.3881317890172014e-21,1.694479686763269e-21,1.7962398854115132e-36,3.543083948898129e-05,-1.2037062152420224e-35,0.0,-6.776263578034403e-21,2.334607688510356e-35,4.590372166393754e-21,-1.372574879297764e-20,0.0007440476329065859,-3.7172646283065783e-19,-0.0022321429569274187,-4.248302432350375e-19,-3.304235253882952e-19,1.4091587218381646e-35,2.4781765050356993e-19,4.899696930629901e-35,-1.2037062152420224e-35,0.0007440476329065859,2.8322015354022696e-19,2.202823588753282e-19,1.4739259637909209e-34,5.509054146230722e-35,-4.337884673305625e-35,0.0007653061184100807,-1.699320947090756e-19,-0.0005102040595375001,-0.0003061224415432662,-1.6615582134231495e-19,2.283640458945539e-36,5.664402941557569e-20,3.3986418295580265e-20,0.0,2.8322015354022696e-19,0.0002040816325461492,6.042030278233632e-20,1.0620756080875938e-19,3.021015139116816e-20,-5.416677968589101e-35,0.0005952381179668009,-4.236778061583407e-20,-0.00039682540227659047,-1.1434737992779916e-19,-0.0001700680295471102,1.504632769052528e-36,4.4056469836361075e-20,1.3020680583316664e-35,-6.776263578034403e-21,2.202823588753282e-19,6.042030278233632e-20,0.00011337868636474013,7.222237291452134e-35,6.776263578034403e-21,-2.1031987958827047e-20,0.00039859695243649185,-1.6594931053251226e-19,-2.6551890202189845e-19,-0.0005978954141028225,2.3601680754155287e-19,2.2155369051638444e-36,3.062310581643688e-35,6.637972550547461e-20,2.334607688510356e-35,1.4739259637909209e-34,1.0620756080875938e-19,7.222237291452134e-35,0.00011957908282056451,7.080503838505674e-20,-5.900420188538822e-20,0.00042517005931586027,-6.326966211159447e-20,-9.924229938545368e-20,-0.0001700680295471102,-0.00012147716188337654,1.737981563170084e-36,1.1563214668583843e-35,1.8881344215583318e-20,4.590372166393754e-21,5.509054146230722e-35,3.021015139116816e-20,6.776263578034403e-21,7.080503838505674e-20,4.8590864025754854e-05,1.0391233494172933e-20,0.00024801588733680546,4.961333348217307e-20,7.36119594714818e-20,2.5865167442587735e-19,-0.00024801588733680546,-2.42032825089785e-22,-9.027796614315168e-36,-2.9340338996524296e-35,-1.372574879297764e-20,-4.337884673305625e-35,-5.416677968589101e-35,-2.1031987958827047e-20,-5.900420188538822e-20,1.0391233494172933e-20,3.543083948898129e-05,7.0,4.0,7.0,3.0,0.06305980682373047,-0.012606292963027954,-0.019387755542993546,-0.012606292963027954,-0.02372448891401291,0.0007086168043315411,0.0015306122368201613,0.0009566326625645161,0.0019132653251290321,0.001700680237263441,0.0015306122368201613,0.0030612244736403227,0.0007086168043315411,0.0019132653251290321,0.0025510203558951616,-0.012606292963027954,0.00788690522313118,0.0015306122368201613,0.0009566326625645161,0.0019132653251290321,-0.0008503401186317205,-0.0005102040595375001,-0.0003188775444868952,-0.0006377550889737904,-0.0,2.402238642928689e-20,3.398641894181512e-19,1.0842021724855044e-19,2.168404344971009e-19,1.69932097294015e-18,-0.019387755542993546,0.0015306122368201613,0.024829931557178497,0.0015306122368201613,0.0030612244736403227,2.710505431213761e-20,-0.0010204081190750003,-3.689443636249579e-20,2.289722272523216e-19,-0.005102040711790323,-0.0010204081190750003,-0.0020408162381500006,1.368721413177746e-19,3.398641894181512e-19,2.7189135153452095e-18,-0.012606292963027954,0.0009566326625645161,0.0015306122368201613,0.00788690522313118,0.0019132653251290321,2.0194085906156725e-21,-9.486769009248164e-20,-0.0003188775444868952,1.2917538081433352e-19,-0.0,-0.0005102040595375001,3.398641894181512e-19,-0.0008503401186317205,-0.0006377550889737904,1.69932097294015e-18,-0.02372448891401291,0.0019132653251290321,0.0030612244736403227,0.0019132653251290321,0.049234695732593536,1.0842021724855044e-19,-1.0164395367051604e-19,-6.098637220230962e-20,-0.0019132653251290321,-0.0,-9.248005264139293e-21,-0.0030612244736403227,5.421010862427522e-20,-0.0019132653251290321,-0.015306122601032257,0.0007086168043315411,-0.0008503401186317205,2.710505431213761e-20,2.0194085906156725e-21,1.0842021724855044e-19,0.00014172335795592517,-0.0,-6.776263578034403e-21,-4.0657581468206416e-20,-0.0,2.331050098085376e-21,2.171017388387095e-35,-1.8640971507247803e-21,-6.808177078483751e-22,2.290254157218264e-35,0.0015306122368201613,-0.0005102040595375001,-0.0010204081190750003,-9.486769009248164e-20,-1.0164395367051604e-19,-0.0,0.0003401360590942204,2.710505431213761e-20,3.3881317890172014e-20,-0.0,1.4425640122528751e-21,-1.662720688026298e-35,1.7521048525517348e-21,-0.0,-7.390290509702748e-35,0.0009566326625645161,-0.0003188775444868952,-3.689443636249579e-20,-0.0003188775444868952,-6.098637220230962e-20,-6.776263578034403e-21,2.710505431213761e-20,0.00010629251482896507,2.0328790734103208e-20,-0.0,-1.4806909396501392e-20,-1.0201147180274017e-35,-3.3881317890172014e-20,-0.0,-5.199449138033286e-35,0.0019132653251290321,-0.0006377550889737904,2.289722272523216e-19,1.2917538081433352e-19,-0.0019132653251290321,-4.0657581468206416e-20,3.3881317890172014e-20,2.0328790734103208e-20,0.0006377550889737904,-0.0,3.082668488695895e-21,-3.398641894181512e-19,2.712210117978088e-21,-2.1241512161751876e-19,-1.69932097294015e-18,0.001700680237263441,-0.0,-0.005102040711790323,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.001700680237263441,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015306122368201613,2.402238642928689e-20,-0.0010204081190750003,-0.0005102040595375001,-9.248005264139293e-21,2.331050098085376e-21,1.4425640122528751e-21,-1.4806909396501392e-20,3.082668488695895e-21,-0.0,0.0003401360590942204,-6.018531076210112e-36,-4.7376149198515245e-20,-0.0,-3.995967274038519e-36,0.0030612244736403227,3.398641894181512e-19,-0.0020408162381500006,3.398641894181512e-19,-0.0030612244736403227,2.171017388387095e-35,-1.662720688026298e-35,-1.0201147180274017e-35,-3.398641894181512e-19,-0.0,-6.018531076210112e-36,0.0020408162381500006,7.858239083039553e-38,-3.398641894181512e-19,-2.7189135153452095e-18,0.0007086168043315411,1.0842021724855044e-19,1.368721413177746e-19,-0.0008503401186317205,5.421010862427522e-20,-1.8640971507247803e-21,1.7521048525517348e-21,-3.3881317890172014e-20,2.712210117978088e-21,-0.0,-4.7376149198515245e-20,7.858239083039553e-38,0.00014172335795592517,-0.0,-3.2610165872300833e-37,0.0019132653251290321,2.168404344971009e-19,3.398641894181512e-19,-0.0006377550889737904,-0.0019132653251290321,-6.808177078483751e-22,-0.0,-0.0,-2.1241512161751876e-19,-0.0,-0.0,-3.398641894181512e-19,-0.0,0.0006377550889737904,-1.69932097294015e-18,0.0025510203558951616,1.69932097294015e-18,2.7189135153452095e-18,1.69932097294015e-18,-0.015306122601032257,2.290254157218264e-35,-7.390290509702748e-35,-5.199449138033286e-35,-1.69932097294015e-18,-0.0,-3.995967274038519e-36,-2.7189135153452095e-18,-3.2610165872300833e-37,-1.69932097294015e-18,0.0076530613005161285,7.0,4.0,7.0,4.0,0.05072597786784172,-0.009741709567606449,-0.014999999664723873,-0.009741709567606449,-0.014999999664723873,0.0005314626032486558,0.0011479591485112906,0.000717474496923387,0.0011479591485112906,0.0012755101779475808,0.0011479591485112906,0.001836734707467258,0.0005314626032486558,0.0011479591485112906,0.0012755101779475808,-0.009741709567606449,0.00601084204390645,0.0011479591485112906,0.000717474496923387,0.0011479591485112906,-0.0006377550889737904,-0.00038265305920504034,-0.00023915816564112902,-0.00038265305920504034,-2.027786329173985e-18,1.946096324173115e-19,6.129506566715676e-19,-5.497900919279506e-19,2.574980159653073e-19,-2.027786329173985e-18,-0.014999999664723873,0.0011479591485112906,0.018928570672869682,0.0011479591485112906,0.001836734707467258,6.2341624917916505e-19,-0.0007653061184100807,-9.256960657492916e-19,-1.1800552414826899e-18,-0.0038265306502580643,-0.0007653061184100807,-0.0012244897661730647,-9.778465980458863e-19,3.7113931969211003e-19,-3.1939141238879664e-18,-0.009741709567606449,0.000717474496923387,0.0011479591485112906,0.00601084204390645,0.0011479591485112906,4.098829086204453e-19,-7.318364664277155e-19,-0.00023915816564112902,-6.756264418774402e-19,-2.208683646405337e-19,-0.00038265305920504034,-8.703297654238204e-19,-0.0006377550889737904,-0.00038265305920504034,-2.027786329173985e-18,-0.014999999664723873,0.0011479591485112906,0.001836734707467258,0.0011479591485112906,0.018928570672869682,5.469468136686644e-19,-1.358266444771141e-18,-9.435463131754562e-19,-0.0007653061184100807,-5.006638870472146e-19,-1.2929908309000141e-18,-0.0012244897661730647,-2.710505431213761e-19,-0.0007653061184100807,-0.0038265306502580643,0.0005314626032486558,-0.0006377550889737904,6.2341624917916505e-19,4.098829086204453e-19,5.469468136686644e-19,0.00010629251482896507,-4.0657581468206416e-20,-2.710505431213761e-20,-4.0657581468206416e-20,-2.360167946168558e-20,-5.705160327536558e-20,-9.063045094233022e-20,-1.445522677360851e-20,-5.765223979765565e-20,-2.360167946168558e-20,0.0011479591485112906,-0.00038265305920504034,-0.0007653061184100807,-7.318364664277155e-19,-1.358266444771141e-18,-4.0657581468206416e-20,0.00025510202976875007,2.710505431213761e-20,4.404571325722362e-20,5.848029411973069e-19,6.648851268072241e-20,1.0539880435188126e-19,1.132541832001279e-19,-8.470329472543003e-22,4.248302432350375e-19,0.000717474496923387,-0.00023915816564112902,-9.256960657492916e-19,-0.00023915816564112902,-9.435463131754562e-19,-2.710505431213761e-20,2.710505431213761e-20,7.97193861217238e-05,3.049318610115481e-20,2.6551890202189845e-19,5.842442582417097e-20,3.7314892672502695e-34,1.186005746164849e-19,6.098637220230962e-20,2.6551890202189845e-19,0.0011479591485112906,-0.00038265305920504034,-1.1800552414826899e-18,-6.756264418774402e-19,-0.0007653061184100807,-4.0657581468206416e-20,4.404571325722362e-20,3.049318610115481e-20,0.00025510202976875007,4.248302432350375e-19,2.312001366521921e-22,-1.5565104438437205e-20,1.128020255977911e-19,2.3120013160348233e-20,5.848029411973069e-19,0.0012755101779475808,-2.027786329173985e-18,-0.0038265306502580643,-2.208683646405337e-19,-5.006638870472146e-19,-2.360167946168558e-20,5.848029411973069e-19,2.6551890202189845e-19,4.248302432350375e-19,0.0012755101779475808,-2.9882615656695866e-19,-4.781218711866492e-19,2.360167946168558e-20,-8.49660473545378e-20,1.4161007677011348e-19,0.0011479591485112906,1.946096324173115e-19,-0.0007653061184100807,-0.00038265305920504034,-1.2929908309000141e-18,-5.705160327536558e-20,6.648851268072241e-20,5.842442582417097e-20,2.312001366521921e-22,-2.9882615656695866e-19,0.00025510202976875007,3.9396502619103844e-20,1.2993144974360113e-19,5.421010862427522e-20,4.248302432350375e-19,0.001836734707467258,6.129506566715676e-19,-0.0012244897661730647,-8.703297654238204e-19,-0.0012244897661730647,-9.063045094233022e-20,1.0539880435188126e-19,3.7314892672502695e-34,-1.5565104438437205e-20,-4.781218711866492e-19,3.9396502619103844e-20,0.0008163265301845968,1.8126090188466044e-19,-4.827458689719574e-20,2.977857701515201e-19,0.0005314626032486558,-5.497900919279506e-19,-9.778465980458863e-19,-0.0006377550889737904,-2.710505431213761e-19,-1.445522677360851e-20,1.132541832001279e-19,1.186005746164849e-19,1.128020255977911e-19,2.360167946168558e-20,1.2993144974360113e-19,1.8126090188466044e-19,0.00010629251482896507,-5.360162681086297e-20,-2.360167946168558e-20,0.0011479591485112906,2.574980159653073e-19,3.7113931969211003e-19,-0.00038265305920504034,-0.0007653061184100807,-5.765223979765565e-20,-8.470329472543003e-22,6.098637220230962e-20,2.3120013160348233e-20,-8.49660473545378e-20,5.421010862427522e-20,-4.827458689719574e-20,-5.360162681086297e-20,0.00025510202976875007,5.848029411973069e-19,0.0012755101779475808,-2.027786329173985e-18,-3.1939141238879664e-18,-2.027786329173985e-18,-0.0038265306502580643,-2.360167946168558e-20,4.248302432350375e-19,2.6551890202189845e-19,5.848029411973069e-19,1.4161007677011348e-19,4.248302432350375e-19,2.977857701515201e-19,-2.360167946168558e-20,5.848029411973069e-19,0.0012755101779475808,7.0,4.0,7.0,5.0,0.04250789433717728,-0.007946428842842579,-0.01224489789456129,-0.007946428842842579,-0.010364431887865067,0.00042517005931586027,0.000918367353733629,0.0005739795742556453,0.0007653061184100807,0.0010204081190750003,0.000918367353733629,0.0012244897661730647,0.00042517005931586027,0.0007653061184100807,0.0007288630004040897,-0.007946428842842579,0.004859693814069033,0.000918367353733629,0.0005739795742556453,0.0007653061184100807,-0.0005102040595375001,-0.0003061224415432662,-0.00019132652960252017,-0.00025510202976875007,7.801982013260877e-19,-5.91971753674786e-19,-2.853290660215674e-18,1.3552527156068805e-20,-1.8224321246627954e-18,-4.4337960303541665e-18,-0.01224489789456129,0.000918367353733629,0.015306122601032257,0.000918367353733629,0.0012244897661730647,-8.131516293641283e-19,-0.0006122448830865324,3.218413972860868e-19,-3.358053847583548e-18,-0.0030612244736403227,-0.0006122448830865324,-0.0008163265301845968,4.3037325160558925e-20,-2.826597955438894e-18,-7.218068187824488e-18,-0.007946428842842579,0.0005739795742556453,0.000918367353733629,0.004859693814069033,0.0007653061184100807,-5.553445580424559e-19,2.586302452781334e-19,-0.00019132652960252017,-2.0658775827917456e-18,3.209173331442885e-19,-0.0003061224415432662,-2.9358995336301197e-18,-0.0005102040595375001,-0.00025510202976875007,-4.4337960303541665e-18,-0.010364431887865067,0.0007653061184100807,0.0012244897661730647,0.0007653061184100807,0.00955539382994175,-3.3100471799631144e-18,-1.9503295502048257e-18,-1.2793229120484942e-18,-0.00038265305920504034,-9.654501385139217e-18,-2.189068350648349e-18,-0.0006122448830865324,-3.3745792618611326e-18,-0.00038265305920504034,-0.0014577260008081794,0.00042517005931586027,-0.0005102040595375001,-8.131516293641283e-19,-5.553445580424559e-19,-3.3100471799631144e-18,8.50340147735551e-05,2.0328790734103208e-20,1.0164395367051604e-20,8.809142651444724e-20,1.8881344215583318e-20,4.531522547116511e-20,2.567862787469937e-19,1.6237389018941142e-20,1.6049141775452253e-19,4.855202779829e-19,0.000918367353733629,-0.0003061224415432662,-0.0006122448830865324,2.586302452781334e-19,-1.9503295502048257e-18,2.0328790734103208e-20,0.0002040816325461492,2.975278836708596e-20,1.3432371417277235e-19,-9.260810149268585e-19,-7.332245271943678e-20,1.285045890363413e-19,-9.063045094233022e-20,1.0195925811791506e-19,1.9420811377809942e-19,0.0005739795742556453,-0.00019132652960252017,3.218413972860868e-19,-0.00019132652960252017,-1.2793229120484942e-18,1.0164395367051604e-20,2.975278836708596e-20,6.377550744218752e-05,8.413239146875213e-20,-2.1241512161751876e-19,-2.6577393860685474e-20,1.0195925811791506e-19,-1.2130788506258268e-19,7.284483346386983e-20,1.21380069495725e-19,0.0007653061184100807,-0.00025510202976875007,-3.358053847583548e-18,-2.0658775827917456e-18,-0.00038265305920504034,8.809142651444724e-20,1.3432371417277235e-19,8.413239146875213e-20,0.00012755101488437504,5.097962712025297e-19,2.0391851623583012e-19,3.3899629600982406e-19,1.699320947090756e-19,2.0152203182959622e-19,3.9215099972066405e-19,0.0010204081190750003,7.801982013260877e-19,-0.0030612244736403227,3.209173331442885e-19,-9.654501385139217e-18,1.8881344215583318e-20,-9.260810149268585e-19,-2.1241512161751876e-19,5.097962712025297e-19,0.0010204081190750003,-3.9331766042648767e-19,1.7312265957866333e-19,-1.8881344215583318e-20,4.531522353246055e-19,1.4565608339487e-18,0.000918367353733629,-5.91971753674786e-19,-0.0006122448830865324,-0.0003061224415432662,-2.189068350648349e-18,4.531522547116511e-20,-7.332245271943678e-20,-2.6577393860685474e-20,2.0391851623583012e-19,-3.9331766042648767e-19,0.0002040816325461492,1.219996794733155e-19,-1.1127000955516048e-19,1.1519648082658485e-19,1.9420811377809942e-19,0.0012244897661730647,-2.853290660215674e-18,-0.0008163265301845968,-2.9358995336301197e-18,-0.0006122448830865324,2.567862787469937e-19,1.285045890363413e-19,1.0195925811791506e-19,3.3899629600982406e-19,1.7312265957866333e-19,1.219996794733155e-19,0.0004081632650922984,2.718913463646421e-19,3.398641894181512e-19,7.768324551123977e-19,0.00042517005931586027,1.3552527156068805e-20,4.3037325160558925e-20,-0.0005102040595375001,-3.3745792618611326e-18,1.6237389018941142e-20,-9.063045094233022e-20,-1.2130788506258268e-19,1.699320947090756e-19,-1.8881344215583318e-20,-1.1127000955516048e-19,2.718913463646421e-19,8.50340147735551e-05,9.564956964180032e-20,4.855202779829e-19,0.0007653061184100807,-1.8224321246627954e-18,-2.826597955438894e-18,-0.00025510202976875007,-0.00038265305920504034,1.6049141775452253e-19,1.0195925811791506e-19,7.284483346386983e-20,2.0152203182959622e-19,4.531522353246055e-19,1.1519648082658485e-19,3.398641894181512e-19,9.564956964180032e-20,0.00012755101488437504,3.9215099972066405e-19,0.0007288630004040897,-4.4337960303541665e-18,-7.218068187824488e-18,-4.4337960303541665e-18,-0.0014577260008081794,4.855202779829e-19,1.9420811377809942e-19,1.21380069495725e-19,3.9215099972066405e-19,1.4565608339487e-18,1.9420811377809942e-19,7.768324551123977e-19,4.855202779829e-19,3.9215099972066405e-19,0.00036443150020204484,7.0,4.0,7.0,6.0,0.036613721400499344,-0.006713131908327341,-0.01034985389560461,-0.006713131908327341,-0.007598396390676498,0.00035430840216577053,0.0007653061184100807,0.00047831633128225803,0.000546647235751152,0.0008503401186317205,0.0007653061184100807,0.0008746355888433754,0.00035430840216577053,0.000546647235751152,0.0004555393534246832,-0.006713131908327341,0.004080114420503378,0.0007653061184100807,0.00047831633128225803,0.000546647235751152,-0.00042517005931586027,-0.00025510202976875007,-0.0001594387722434476,-0.00018221575010102242,-0.0,4.0213524419758955e-20,5.072538411169685e-20,4.0657581468206416e-20,3.311788834592239e-20,1.1674824580634018e-19,-0.01034985389560461,0.0007653061184100807,0.012852284125983715,0.0007653061184100807,0.0008746355888433754,-2.710505431213761e-20,-0.0005102040595375001,-2.9507832641948377e-21,6.884460256184759e-21,-0.0025510203558951616,-0.0005102040595375001,-0.000583090353757143,8.266426220374414e-20,6.849459368722542e-20,2.07408326616706e-19,-0.006713131908327341,0.00047831633128225803,0.0007653061184100807,0.004080114420503378,0.000546647235751152,-7.807788498043572e-21,-4.352786911319701e-20,-0.0001594387722434476,1.1180401764846168e-20,-0.0,-0.00025510202976875007,6.776263578034403e-20,-0.00042517005931586027,-0.00018221575010102242,1.2416653078668645e-19,-0.007598396390676498,0.000546647235751152,0.0008746355888433754,0.000546647235751152,0.005544824991375208,-1.3552527156068805e-20,-4.340464828249502e-20,-3.118878683517509e-20,-0.00021865889721084386,-0.0,-3.622324472668793e-21,-0.0003498542355373502,-1.3552527156068805e-20,-0.00021865889721084386,-0.00068330904468894,0.00035430840216577053,-0.00042517005931586027,-2.710505431213761e-20,-7.807788498043572e-21,-1.3552527156068805e-20,7.086167897796258e-05,6.776263578034403e-21,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,-1.0337927183491174e-36,-1.504632769052528e-36,1.5826512697101176e-21,-1.3900341770660867e-36,1.7117139372705196e-22,0.0007653061184100807,-0.00025510202976875007,-0.0005102040595375001,-4.352786911319701e-20,-4.340464828249502e-20,6.776263578034403e-21,0.0001700680295471102,1.4509290781457093e-20,1.4468216094165007e-20,-0.0,-3.6646732327754135e-36,-4.0265545927100466e-36,-4.513898307157584e-36,-2.5706552623980145e-36,-9.502947014253291e-36,0.00047831633128225803,-0.0001594387722434476,-2.9507832641948377e-21,-0.0001594387722434476,-3.118878683517509e-20,3.3881317890172014e-21,1.4509290781457093e-20,5.3146257414482534e-05,9.024209287591084e-21,-0.0,-1.3552527156068805e-20,3.219762290385975e-23,-1.6940658945086007e-20,1.6940658945086007e-21,-1.8691684282509714e-22,0.000546647235751152,-0.00018221575010102242,6.884460256184759e-21,1.1180401764846168e-20,-0.00021865889721084386,3.3881317890172014e-21,1.4468216094165007e-20,9.024209287591084e-21,7.288629421964288e-05,-0.0,1.776225467486556e-22,-2.0328790734103208e-20,-4.913513864844612e-23,-1.528003408866185e-20,-4.6920039870048945e-20,0.0008503401186317205,-0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008503401186317205,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007653061184100807,4.0213524419758955e-20,-0.0005102040595375001,-0.00025510202976875007,-3.622324472668793e-21,-1.0337927183491174e-36,-3.6646732327754135e-36,-1.3552527156068805e-20,1.776225467486556e-22,-0.0,0.0001700680295471102,5.1516195383998153e-23,-2.762630411384246e-20,-0.0,5.550704522786615e-22,0.0008746355888433754,5.072538411169685e-20,-0.000583090353757143,6.776263578034403e-20,-0.0003498542355373502,-1.504632769052528e-36,-4.0265545927100466e-36,3.219762290385975e-23,-2.0328790734103208e-20,-0.0,5.1516195383998153e-23,0.0002332361473236233,8.586032143273876e-23,-2.739783747489017e-20,-8.36294139575316e-20,0.00035430840216577053,4.0657581468206416e-20,8.266426220374414e-20,-0.00042517005931586027,-1.3552527156068805e-20,1.5826512697101176e-21,-4.513898307157584e-36,-1.6940658945086007e-20,-4.913513864844612e-23,-0.0,-2.762630411384246e-20,8.586032143273876e-23,7.086167897796258e-05,5.994386855993209e-21,7.56529371600769e-22,0.000546647235751152,3.311788834592239e-20,6.849459368722542e-20,-0.00018221575010102242,-0.00021865889721084386,-1.3900341770660867e-36,-2.5706552623980145e-36,1.6940658945086007e-21,-1.528003408866185e-20,-0.0,-0.0,-2.739783747489017e-20,5.994386855993209e-21,7.288629421964288e-05,-5.1742328357822636e-20,0.0004555393534246832,1.1674824580634018e-19,2.07408326616706e-19,1.2416653078668645e-19,-0.00068330904468894,1.7117139372705196e-22,-9.502947014253291e-36,-1.8691684282509714e-22,-4.6920039870048945e-20,-0.0,5.550704522786615e-22,-8.36294139575316e-20,7.56529371600769e-22,-5.1742328357822636e-20,0.000136661808937788,7.0,4.0,7.0,7.0,0.032170187681913376,-0.005812682211399078,-0.008965014480054379,-0.005812682211399078,-0.005812682211399078,0.00030369291198439896,0.0006559766479767859,0.00040998542681336403,0.00040998542681336403,0.0007288630004040897,0.0006559766479767859,0.0006559766479767859,0.00030369291198439896,0.00040998542681336403,0.00030369291198439896,-0.005812682211399078,0.0035167639143764973,0.0006559766479767859,0.00040998542681336403,0.00040998542681336403,-0.00036443150020204484,-0.00021865889721084386,-0.000136661808937788,-0.000136661808937788,-0.0,3.1929527073716325e-21,1.3284680176831096e-21,1.3552527156068805e-20,-7.321034712821597e-21,3.0723697265625046e-21,-0.008965014480054379,0.0006559766479767859,0.011078717187047005,0.0006559766479767859,0.0006559766479767859,-1.3552527156068805e-20,-0.0004373177944216877,-2.774024097307954e-21,-3.908869045703825e-21,-0.002186588943004608,-0.0004373177944216877,-0.0004373177944216877,7.541687564600818e-21,-2.0231230273848834e-20,4.515433964981711e-21,-0.005812682211399078,0.00040998542681336403,0.0006559766479767859,0.0035167639143764973,0.00040998542681336403,2.6939590320748946e-21,-5.602157035007456e-21,-0.000136661808937788,-3.0358328196327393e-21,-0.0,-0.00021865889721084386,-0.0,-0.00036443150020204484,-0.000136661808937788,1.4011535857595268e-21,-0.005812682211399078,0.00040998542681336403,0.0006559766479767859,0.00040998542681336403,0.0035167639143764973,-0.0,-5.602157035007456e-21,-2.793836244279271e-21,-0.000136661808937788,-0.0,2.3751075631234116e-21,-0.00021865889721084386,-0.0,-0.000136661808937788,-0.00036443150020204484,0.00030369291198439896,-0.00036443150020204484,-1.3552527156068805e-20,2.6939590320748946e-21,-0.0,6.073858094168827e-05,6.776263578034403e-21,-0.0,-0.0,-0.0,-1.1574762309602447e-37,-3.2584384783154185e-38,-2.54992837885931e-22,5.321804784703775e-38,4.154370690986815e-24,0.0006559766479767859,-0.00021865889721084386,-0.0004373177944216877,-5.602157035007456e-21,-5.602157035007456e-21,6.776263578034403e-21,0.00014577258843928576,1.8673856783358188e-21,1.8673856783358188e-21,-0.0,-4.362941087117161e-38,-1.8152563239307041e-38,-1.88079096131566e-37,1.0003669070874778e-37,-4.1981730505655344e-38,0.00040998542681336403,-0.000136661808937788,-2.774024097307954e-21,-0.000136661808937788,-2.793836244279271e-21,-0.0,1.8673856783358188e-21,4.5553937525255606e-05,9.507812072056794e-22,-0.0,-4.998883066721309e-22,-4.428226893900692e-22,-3.3881317890172014e-21,8.470329472543003e-22,-2.977495785763402e-22,0.00040998542681336403,-0.000136661808937788,-3.908869045703825e-21,-3.0358328196327393e-21,-0.000136661808937788,-0.0,1.8673856783358188e-21,9.507812072056794e-22,4.5553937525255606e-05,-0.0,-5.644292456227139e-22,1.1415481757837117e-39,-5.768927935413245e-22,1.5933120243356958e-21,-7.35374772695383e-22,0.0007288630004040897,-0.0,-0.002186588943004608,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007288630004040897,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006559766479767859,3.1929527073716325e-21,-0.0004373177944216877,-0.00021865889721084386,2.3751075631234116e-21,-1.1574762309602447e-37,-4.362941087117161e-38,-4.998883066721309e-22,-5.644292456227139e-22,-0.0,0.00014577258843928576,-7.085162929266911e-22,-1.3330354844590158e-21,3.3881317890172014e-21,-1.505144688651969e-21,0.0006559766479767859,1.3284680176831096e-21,-0.0004373177944216877,-0.0,-0.00021865889721084386,-3.2584384783154185e-38,-1.8152563239307041e-38,-4.428226893900692e-22,1.1415481757837117e-39,-0.0,-7.085162929266911e-22,0.00014577258843928576,-1.1808605050401845e-21,3.3556118375474683e-21,-5.268686044076307e-40,0.00030369291198439896,1.3552527156068805e-20,7.541687564600818e-21,-0.00036443150020204484,-0.0,-2.54992837885931e-22,-1.88079096131566e-37,-3.3881317890172014e-21,-5.768927935413245e-22,-0.0,-1.3330354844590158e-21,-1.1808605050401845e-21,6.073858094168827e-05,5.6034486969210035e-21,-2.161498267351179e-21,0.00040998542681336403,-7.321034712821597e-21,-2.0231230273848834e-20,-0.000136661808937788,-0.000136661808937788,5.321804784703775e-38,1.0003669070874778e-37,8.470329472543003e-22,1.5933120243356958e-21,-0.0,3.3881317890172014e-21,3.3556118375474683e-21,5.6034486969210035e-21,4.5553937525255606e-05,5.266516788457345e-21,0.00030369291198439896,3.0723697265625046e-21,4.515433964981711e-21,1.4011535857595268e-21,-0.00036443150020204484,4.154370690986815e-24,-4.1981730505655344e-38,-2.977495785763402e-22,-7.35374772695383e-22,-0.0,-1.505144688651969e-21,-5.268686044076307e-40,-2.161498267351179e-21,5.266516788457345e-21,6.073858094168827e-05,7.0,4.0,7.0,8.0,0.028696322813630104,-0.0051259566098451614,-0.007908163592219353,-0.0051259566098451614,-0.004591836594045162,0.0002657313016243279,0.0005739795742556453,0.0003587372484616935,0.0003188775444868952,0.0006377550889737904,0.0005739795742556453,0.0005102040595375001,0.0002657313016243279,0.0003188775444868952,0.00021258502965793014,-0.0051259566098451614,0.003090454963967204,0.0005739795742556453,0.0003587372484616935,0.0003188775444868952,-0.0003188775444868952,-0.00019132652960252017,-0.00011957908282056451,-0.00010629251482896507,-1.0256940333984037e-18,1.2529229775097698e-19,2.325922539561892e-19,-2.6929885892732436e-19,1.542651388109564e-19,-9.174771991829647e-20,-0.007908163592219353,0.0005739795742556453,0.009736394509673119,0.0005739795742556453,0.0005102040595375001,3.3881317890172014e-19,-0.00038265305920504034,-4.362641540472049e-19,-2.6841359472613363e-19,-0.0019132653251290321,-0.00038265305920504034,-0.0003401360590942204,-4.914054612460617e-19,1.0962225285025778e-19,-1.6733818555508e-19,-0.0051259566098451614,0.0003587372484616935,0.0005739795742556453,0.003090454963967204,0.0003188775444868952,2.459590015165574e-19,-3.46961916061739e-19,-0.00011957908282056451,-1.0542338712571057e-19,-8.946963219958276e-21,-0.00019132652960252017,-2.1345230270808369e-19,-0.0003188775444868952,-0.00010629251482896507,-8.737614146678761e-20,-0.004591836594045162,0.0003188775444868952,0.0005102040595375001,0.0003188775444868952,0.002374878618866205,3.988868348462599e-19,-1.1432785071052467e-19,-9.489741689574526e-20,-9.110787505051121e-05,5.67266040126935e-19,-1.3540470998640845e-19,-0.00014577258843928576,1.4230153513872246e-19,-9.110787505051121e-05,-0.00021258502965793014,0.0002657313016243279,-0.0003188775444868952,3.3881317890172014e-19,2.459590015165574e-19,3.988868348462599e-19,5.3146257414482534e-05,-1.6940658945086007e-20,-1.3552527156068805e-20,-2.371692252312041e-20,-1.180083973084279e-20,-2.832201470778784e-20,-3.686357541706417e-20,-9.795072956037315e-21,-2.3039734635665108e-20,-2.2693826121188758e-20,0.0005739795742556453,-0.00019132652960252017,-0.00038265305920504034,-3.46961916061739e-19,-1.1432785071052467e-19,-1.6940658945086007e-20,0.00012755101488437504,1.4219363976757257e-20,-7.164583678156135e-22,2.9240147059865344e-19,3.293712676385968e-20,7.7744218779414835e-22,5.664402941557569e-20,-6.069003555565607e-21,2.832201470778784e-20,0.0003587372484616935,-0.00011957908282056451,-4.362641540472049e-19,-0.00011957908282056451,-9.489741689574526e-20,-1.3552527156068805e-20,1.4219363976757257e-20,3.98596930608619e-05,-7.866115535467519e-22,1.3275945101094922e-19,2.6757909873503833e-20,-6.063280338143792e-21,6.268841909725965e-20,7.623296525288703e-21,1.7705683073836783e-20,0.0003188775444868952,-0.00010629251482896507,-2.6841359472613363e-19,-1.0542338712571057e-19,-9.110787505051121e-05,-2.371692252312041e-20,-7.164583678156135e-22,-7.866115535467519e-22,3.0369290470844135e-05,9.440671784674232e-20,-6.0900243636614674e-21,1.7787691892340307e-20,2.4429721182180973e-20,1.6026880842672417e-21,4.441667468138524e-20,0.0006377550889737904,-1.0256940333984037e-18,-0.0019132653251290321,-8.946963219958276e-21,5.67266040126935e-19,-1.180083973084279e-20,2.9240147059865344e-19,1.3275945101094922e-19,9.440671784674232e-20,0.0006377550889737904,-1.4941307828347933e-19,-1.893639114664416e-19,1.180083973084279e-20,-4.720335892337116e-20,-4.720335892337116e-20,0.0005739795742556453,1.2529229775097698e-19,-0.00038265305920504034,-0.00019132652960252017,-1.3540470998640845e-19,-2.832201470778784e-20,3.293712676385968e-20,2.6757909873503833e-20,-6.0900243636614674e-21,-1.4941307828347933e-19,0.00012755101488437504,-1.0031534327921676e-20,6.596816437663827e-20,1.1858461261560205e-20,2.827296548240286e-20,0.0005102040595375001,2.325922539561892e-19,-0.0003401360590942204,-2.1345230270808369e-19,-0.00014577258843928576,-3.686357541706417e-20,7.7744218779414835e-22,-6.063280338143792e-21,1.7787691892340307e-20,-1.893639114664416e-19,-1.0031534327921676e-20,9.718172805150971e-05,3.867706228133585e-20,2.036099423244309e-20,5.0550286778125564e-20,0.0002657313016243279,-2.6929885892732436e-19,-4.914054612460617e-19,-0.0003188775444868952,1.4230153513872246e-19,-9.795072956037315e-21,5.664402941557569e-20,6.268841909725965e-20,2.4429721182180973e-20,1.180083973084279e-20,6.596816437663827e-20,3.867706228133585e-20,5.3146257414482534e-05,-2.321213393872279e-20,-2.399273555861856e-20,0.0003188775444868952,1.542651388109564e-19,1.0962225285025778e-19,-0.00010629251482896507,-9.110787505051121e-05,-2.3039734635665108e-20,-6.069003555565607e-21,7.623296525288703e-21,1.6026880842672417e-21,-4.720335892337116e-20,1.1858461261560205e-20,2.036099423244309e-20,-2.321213393872279e-20,3.0369290470844135e-05,4.5600935593445486e-20,0.00021258502965793014,-9.174771991829647e-20,-1.6733818555508e-19,-8.737614146678761e-20,-0.00021258502965793014,-2.2693826121188758e-20,2.832201470778784e-20,1.7705683073836783e-20,4.441667468138524e-20,-4.720335892337116e-20,2.827296548240286e-20,5.0550286778125564e-20,-2.399273555861856e-20,4.5600935593445486e-20,3.0369290470844135e-05,7.0,4.0,8.0,3.0,0.0563616082072258,-0.01112351194024086,-0.01711309514939785,-0.00997023843228817,-0.02094493992626667,0.0006200397037900984,0.0013392857508733869,0.0007440476329065859,0.0016741071594879031,0.0014880952658131719,0.0011904762359336019,0.0026785715017467737,0.0004960317746736109,0.0014880952658131719,0.0022321429569274187,-0.01112351194024086,0.006932043470442295,0.0013392857508733869,0.0007440476329065859,0.0016741071594879031,-0.0007440476329065859,-0.00044642857392318547,-0.00024801588733680546,-0.0005580357392318547,-7.434529256613157e-19,-6.868545268887496e-20,-2.973811754344051e-19,1.2197274440461925e-19,1.3552527156068805e-20,-0.0,-0.01711309514939785,0.0013392857508733869,0.02182539738714695,0.0011904762359336019,0.0026785715017467737,-2.710505431213761e-20,-0.0008928571478463709,8.275362355929401e-20,4.1444304547752505e-20,-0.004464285913854837,-0.0007936508045531809,-0.0017857142956927419,1.576982743951753e-19,2.371692252312041e-20,-0.0,-0.00997023843228817,0.0007440476329065859,0.0011904762359336019,0.005328798200935125,0.0014880952658131719,-3.602264131124032e-21,-1.2197274440461925e-19,-0.00021258502965793014,1.1828240734868463e-19,-6.608470507765904e-19,-0.0003401360590942204,-2.2657611766230274e-19,-0.0004960317746736109,-0.00042517005931586027,-0.0,-0.02094493992626667,0.0016741071594879031,0.0026785715017467737,0.0014880952658131719,0.04326637089252472,-0.0,-2.5672359396619867e-19,1.1180834903756764e-19,-0.0016741071594879031,-1.4869058513226313e-18,-2.021848749188897e-19,-0.0026785715017467737,-0.0,-0.0014880952658131719,-0.013392857275903225,0.0006200397037900984,-0.0007440476329065859,-2.710505431213761e-20,-3.602264131124032e-21,-0.0,0.00012400794366840273,-0.0,-0.0,-2.710505431213761e-20,8.020599419780164e-36,1.4958470856706128e-21,2.0435057032534805e-36,-4.075471521150905e-22,-2.0850042555291977e-21,-0.0,0.0013392857508733869,-0.00044642857392318547,-0.0008928571478463709,-1.2197274440461925e-19,-2.5672359396619867e-19,-0.0,0.00029761905898340046,-3.3881317890172014e-21,-1.3552527156068805e-20,4.956353010071399e-19,8.785096898778719e-20,1.982541126480377e-19,4.763829401345098e-23,-0.0,-0.0,0.0007440476329065859,-0.00024801588733680546,8.275362355929401e-20,-0.00021258502965793014,1.1180834903756764e-19,-0.0,-3.3881317890172014e-21,7.086167897796258e-05,-3.7269449679189215e-20,-5.075110763897578e-35,-2.0739779945094155e-20,-1.2037062152420224e-35,-3.3881317890172014e-20,-0.0,0.0,0.0016741071594879031,-0.0005580357392318547,4.1444304547752505e-20,1.1828240734868463e-19,-0.0016741071594879031,-2.710505431213761e-20,-1.3552527156068805e-20,-3.7269449679189215e-20,0.0005580357392318547,-1.2071434456716607e-35,-2.2477790011593027e-22,-2.7073681826550865e-36,-8.105327444447331e-22,1.504632769052528e-36,-0.0,0.0014880952658131719,-7.434529256613157e-19,-0.004464285913854837,-6.608470507765904e-19,-1.4869058513226313e-18,8.020599419780164e-36,4.956353010071399e-19,-5.075110763897578e-35,-1.2071434456716607e-35,0.0014880952658131719,4.405647177506564e-19,9.912706020142797e-19,-9.852284219384593e-35,-1.316553672920962e-35,-0.0,0.0011904762359336019,-6.868545268887496e-20,-0.0007936508045531809,-0.0003401360590942204,-2.021848749188897e-19,1.4958470856706128e-21,8.785096898778719e-20,-2.0739779945094155e-20,-2.2477790011593027e-22,4.405647177506564e-19,0.00022675737272948027,1.5105075372466654e-19,-4.5097483099607596e-20,-6.776263578034403e-21,-0.0,0.0026785715017467737,-2.973811754344051e-19,-0.0017857142956927419,-2.2657611766230274e-19,-0.0026785715017467737,2.0435057032534805e-36,1.982541126480377e-19,-1.2037062152420224e-35,-2.7073681826550865e-36,9.912706020142797e-19,1.5105075372466654e-19,0.0017857142956927419,-3.009265538105056e-35,-3.009265538105056e-36,-0.0,0.0004960317746736109,1.2197274440461925e-19,1.576982743951753e-19,-0.0004960317746736109,-0.0,-4.075471521150905e-22,4.763829401345098e-23,-3.3881317890172014e-20,-8.105327444447331e-22,-9.852284219384593e-35,-4.5097483099607596e-20,-3.009265538105056e-35,7.086167897796258e-05,-5.433796295887722e-21,-0.0,0.0014880952658131719,1.3552527156068805e-20,2.371692252312041e-20,-0.00042517005931586027,-0.0014880952658131719,-2.0850042555291977e-21,-0.0,-0.0,1.504632769052528e-36,-1.316553672920962e-35,-6.776263578034403e-21,-3.009265538105056e-36,-5.433796295887722e-21,0.00042517005931586027,-0.0,0.0022321429569274187,-0.0,-0.0,-0.0,-0.013392857275903225,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0066964286379516125,7.0,4.0,8.0,4.0,0.04530134052038193,-0.008593750186264515,-0.013236607424914837,-0.007700892630964518,-0.013236607424914837,0.0004650297632906586,0.0010044643422588706,0.0005580357392318547,0.0010044643422588706,0.0011160714784637094,0.0008928571478463709,0.0016071428544819355,0.00037202381645329297,0.0008928571478463709,0.0011160714784637094,-0.008593750186264515,0.005282738246023655,0.0010044643422588706,0.0005580357392318547,0.0010044643422588706,-0.0005580357392318547,-0.0003348214377183467,-0.00018601190822664648,-0.0003348214377183467,-0.0,-2.2708574816134064e-20,-0.0,-5.421010862427522e-20,2.0328790734103208e-20,-0.0,-0.013236607424914837,0.0010044643422588706,0.016636904329061508,0.0008928571478463709,0.0016071428544819355,2.710505431213761e-20,-0.0006696428754366934,-2.820435795917498e-20,1.0636428730103117e-20,-0.0033482143189758062,-0.0005952381179668009,-0.0010714285308495164,-7.253683793266454e-20,3.5575383784680614e-20,-0.0,-0.007700892630964518,0.0005580357392318547,0.0008928571478463709,0.004060374107211828,0.0008928571478463709,-1.2956224446265405e-20,-1.3552527156068805e-20,-0.0001594387722434476,6.969616399983819e-20,-0.0,-0.00025510202976875007,-0.0,-0.00037202381645329297,-0.00025510202976875007,-0.0,-0.013236607424914837,0.0010044643422588706,0.0016071428544819355,0.0008928571478463709,0.016636904329061508,-0.0,1.0164395367051604e-20,9.486769009248164e-20,-0.0006696428754366934,-0.0,3.597998496414415e-20,-0.0010714285308495164,1.3552527156068805e-20,-0.0005952381179668009,-0.0033482143189758062,0.0004650297632906586,-0.0005580357392318547,2.710505431213761e-20,-1.2956224446265405e-20,-0.0,9.300595411332324e-05,6.776263578034403e-21,6.776263578034403e-21,-0.0,-0.0,2.3235539820433932e-23,0.0,7.166257830323631e-22,5.523741383263906e-22,-0.0,0.0010044643422588706,-0.0003348214377183467,-0.0006696428754366934,-1.3552527156068805e-20,1.0164395367051604e-20,6.776263578034403e-21,0.00022321428696159273,1.6940658945086007e-21,-3.3881317890172014e-21,-0.0,-2.4154456436566387e-22,-0.0,1.1665758874990893e-21,-0.0,-0.0,0.0005580357392318547,-0.00018601190822664648,-2.820435795917498e-20,-0.0001594387722434476,9.486769009248164e-20,6.776263578034403e-21,1.6940658945086007e-21,5.3146257414482534e-05,-2.371692252312041e-20,-0.0,6.6063316804269575e-21,-0.0,1.3552527156068805e-20,-6.776263578034403e-21,0.0,0.0010044643422588706,-0.0003348214377183467,1.0636428730103117e-20,6.969616399983819e-20,-0.0006696428754366934,-0.0,-3.3881317890172014e-21,-2.371692252312041e-20,0.00022321428696159273,-0.0,-1.3486674006955816e-22,-0.0,2.455548302852199e-22,-1.3486674006955816e-22,-0.0,0.0011160714784637094,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-2.2708574816134064e-20,-0.0005952381179668009,-0.00025510202976875007,3.597998496414415e-20,2.3235539820433932e-23,-2.4154456436566387e-22,6.6063316804269575e-21,-1.3486674006955816e-22,-0.0,0.0001700680295471102,-0.0,1.9724889110215544e-20,-1.0164395367051604e-20,-0.0,0.0016071428544819355,-0.0,-0.0010714285308495164,-0.0,-0.0010714285308495164,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.00037202381645329297,-5.421010862427522e-20,-7.253683793266454e-20,-0.00037202381645329297,1.3552527156068805e-20,7.166257830323631e-22,1.1665758874990893e-21,1.3552527156068805e-20,2.455548302852199e-22,-0.0,1.9724889110215544e-20,-0.0,5.3146257414482534e-05,-8.853891668555422e-21,-0.0,0.0008928571478463709,2.0328790734103208e-20,3.5575383784680614e-20,-0.00025510202976875007,-0.0005952381179668009,5.523741383263906e-22,-0.0,-6.776263578034403e-21,-1.3486674006955816e-22,-0.0,-1.0164395367051604e-20,-0.0,-8.853891668555422e-21,0.0001700680295471102,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,7.0,4.0,8.0,5.0,0.037942178547382355,-0.007008928339928389,-0.010803570970892906,-0.006279761902987957,-0.009143282659351826,0.00037202381645329297,0.0008035714272409678,0.00044642857392318547,0.0006696428754366934,0.0008928571478463709,0.0007142857066355646,0.0010714285308495164,0.00029761905898340046,0.0005952381179668009,0.0006377550889737904,-0.007008928339928389,0.0042708334513008595,0.0008035714272409678,0.00044642857392318547,0.0006696428754366934,-0.00044642857392318547,-0.0002678571327123791,-0.00014880952949170023,-0.00022321428696159273,-0.0,-4.743384504624082e-20,-0.0,-6.098637220230962e-20,-0.0,-0.0,-0.010803570970892906,0.0008035714272409678,0.013452380895614624,0.0007142857066355646,0.0010714285308495164,-2.710505431213761e-20,-0.0005357142654247582,-4.1754245245867e-20,-6.806030367079591e-22,-0.0026785715017467737,-0.0004761904710903764,-0.0007142857066355646,-8.994617224294426e-20,0.0,-0.0,-0.006279761902987957,0.00044642857392318547,0.0007142857066355646,0.0032823130022734404,0.0005952381179668009,-1.3552527156068805e-20,-0.0,-0.00012755101488437504,4.404571325722362e-20,-0.0,-0.0002040816325461492,-0.0,-0.00029761905898340046,-0.0001700680295471102,-0.0,-0.009143282659351826,0.0006696428754366934,0.0010714285308495164,0.0005952381179668009,0.00839817151427269,-1.3552527156068805e-20,-0.0,4.573977915173222e-20,-0.0003348214377183467,-0.0,-5.833740242515224e-22,-0.0005357142654247582,-0.0,-0.00029761905898340046,-0.0012755101779475808,0.00037202381645329297,-0.00044642857392318547,-2.710505431213761e-20,-1.3552527156068805e-20,-1.3552527156068805e-20,7.440476474585012e-05,-0.0,-0.0,-6.776263578034403e-21,-0.0,7.223793432000362e-22,0.0,2.2177644214374536e-22,-0.0,-0.0,0.0008035714272409678,-0.0002678571327123791,-0.0005357142654247582,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,3.968124843781368e-22,-0.0,-7.861379467028061e-23,-0.0,-0.0,0.00044642857392318547,-0.00014880952949170023,-4.1754245245867e-20,-0.00012755101488437504,4.573977915173222e-20,-0.0,-0.0,4.251700738677755e-05,-1.5246593050577406e-20,-0.0,1.1929783778966596e-20,-0.0,1.6940658945086007e-20,-0.0,0.0,0.0006696428754366934,-0.00022321428696159273,-6.806030367079591e-22,4.404571325722362e-20,-0.0003348214377183467,-6.776263578034403e-21,-0.0,-1.5246593050577406e-20,0.00011160714348079637,-0.0,1.9445799966932447e-22,-0.0,1.8521985786756018e-22,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-4.743384504624082e-20,-0.0004761904710903764,-0.0002040816325461492,-5.833740242515224e-22,7.223793432000362e-22,3.968124843781368e-22,1.1929783778966596e-20,1.9445799966932447e-22,-0.0,0.0001360544265480712,-0.0,2.5766289955701812e-20,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0007142857066355646,-0.0,-0.0005357142654247582,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.00029761905898340046,-6.098637220230962e-20,-8.994617224294426e-20,-0.00029761905898340046,-0.0,2.2177644214374536e-22,-7.861379467028061e-23,1.6940658945086007e-20,1.8521985786756018e-22,-0.0,2.5766289955701812e-20,-0.0,4.251700738677755e-05,0.0,-0.0,0.0005952381179668009,-0.0,0.0,-0.0001700680295471102,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,8.50340147735551e-05,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,7.0,4.0,8.0,6.0,0.032669004052877426,-0.005920493043959141,-0.009130527265369892,-0.005303996615111828,-0.006701743230223656,0.0003100198518950492,0.0006696428754366934,0.00037202381645329297,0.00047831633128225803,0.0007440476329065859,0.0005952381179668009,0.0007653061184100807,0.00024801588733680546,0.00042517005931586027,0.00039859695243649185,-0.005920493043959141,0.003585600992664695,0.0006696428754366934,0.00037202381645329297,0.00047831633128225803,-0.00037202381645329297,-0.00022321428696159273,-0.00012400794366840273,-0.0001594387722434476,-3.7172646283065783e-19,-3.5721303614613797e-20,-1.699320947090756e-19,3.3881317890172014e-20,-5.016797423876121e-20,-1.6594931053251226e-19,-0.009130527265369892,0.0006696428754366934,0.011295351199805737,0.0005952381179668009,0.0007653061184100807,1.3552527156068805e-20,-0.00044642857392318547,2.5279959454308916e-20,-8.826509566899216e-20,-0.0022321429569274187,-0.00039682540227659047,-0.0005102040595375001,7.29362110721628e-20,-8.145460749311337e-20,-2.6551890202189845e-19,-0.005303996615111828,0.00037202381645329297,0.0005952381179668009,0.00275550689548254,0.00042517005931586027,-4.086504870559237e-21,-7.116814482457338e-20,-0.00010629251482896507,-1.7147342622712025e-20,-3.304235253882952e-19,-0.0001700680295471102,-1.4026141048013405e-19,-0.00024801588733680546,-0.00012147716188337654,-1.2643756808314786e-19,-0.006701743230223656,0.00047831633128225803,0.0007653061184100807,0.00042517005931586027,0.004872980527579784,1.3552527156068805e-20,-8.826509566899216e-20,2.7091400985269084e-20,-0.00019132652960252017,-4.248302432350375e-19,-7.066526424858089e-20,-0.0003061224415432662,-6.776263578034403e-21,-0.0001700680295471102,-0.0005978954141028225,0.0003100198518950492,-0.00037202381645329297,1.3552527156068805e-20,-4.086504870559237e-21,1.3552527156068805e-20,6.200397183420137e-05,-0.0,3.3881317890172014e-21,3.3881317890172014e-21,1.4117547965201809e-35,1.165071201374559e-36,1.5891946069288808e-36,2.606255319411497e-22,1.2172487402702847e-36,-2.598266985437681e-37,0.0006696428754366934,-0.00022321428696159273,-0.00044642857392318547,-7.116814482457338e-20,-8.826509566899216e-20,-0.0,0.00014880952949170023,1.694479686763269e-21,1.0996827041686566e-21,2.4781765050356993e-19,4.4056469836361075e-20,5.664402941557569e-20,-8.557598873986253e-36,9.409358751555347e-36,3.062310581643688e-35,0.00037202381645329297,-0.00012400794366840273,2.5279959454308916e-20,-0.00010629251482896507,2.7091400985269084e-20,3.3881317890172014e-21,1.694479686763269e-21,3.543083948898129e-05,-1.0018672638748756e-20,-1.2085272918043915e-35,-8.67525700695448e-21,-6.394689268473244e-36,-1.0164395367051604e-20,8.470329472543003e-22,-8.981524438618188e-36,0.00047831633128225803,-0.0001594387722434476,-8.826509566899216e-20,-1.7147342622712025e-20,-0.00019132652960252017,3.3881317890172014e-21,1.0996827041686566e-21,-1.0018672638748756e-20,6.377550744218752e-05,4.899696930629901e-35,1.053647444998753e-35,3.3986418295580265e-20,4.513898307157584e-36,1.8881344215583318e-20,6.637972550547461e-20,0.0007440476329065859,-3.7172646283065783e-19,-0.0022321429569274187,-3.304235253882952e-19,-4.248302432350375e-19,1.4117547965201809e-35,2.4781765050356993e-19,-1.2085272918043915e-35,4.899696930629901e-35,0.0007440476329065859,2.202823588753282e-19,2.8322015354022696e-19,-4.6252623345876466e-35,4.5216388915400007e-35,1.4739259637909209e-34,0.0005952381179668009,-3.5721303614613797e-20,-0.00039682540227659047,-0.0001700680295471102,-7.066526424858089e-20,1.165071201374559e-36,4.4056469836361075e-20,-8.67525700695448e-21,1.053647444998753e-35,2.202823588753282e-19,0.00011337868636474013,4.315735682225861e-20,-2.0838917218391208e-20,1.6940658945086007e-21,2.3095568305669718e-35,0.0007653061184100807,-1.699320947090756e-19,-0.0005102040595375001,-1.4026141048013405e-19,-0.0003061224415432662,1.5891946069288808e-36,5.664402941557569e-20,-6.394689268473244e-36,3.3986418295580265e-20,2.8322015354022696e-19,4.315735682225861e-20,0.0002040816325461492,-6.018531076210112e-36,3.021015139116816e-20,1.0620756080875938e-19,0.00024801588733680546,3.3881317890172014e-20,7.29362110721628e-20,-0.00024801588733680546,-6.776263578034403e-21,2.606255319411497e-22,-8.557598873986253e-36,-1.0164395367051604e-20,4.513898307157584e-36,-4.6252623345876466e-35,-2.0838917218391208e-20,-6.018531076210112e-36,3.543083948898129e-05,-6.712336410733405e-22,2.243635338396528e-37,0.00042517005931586027,-5.016797423876121e-20,-8.145460749311337e-20,-0.00012147716188337654,-0.0001700680295471102,1.2172487402702847e-36,9.409358751555347e-36,8.470329472543003e-22,1.8881344215583318e-20,4.5216388915400007e-35,1.6940658945086007e-21,3.021015139116816e-20,-6.712336410733405e-22,4.8590864025754854e-05,5.0575027879493996e-20,0.00039859695243649185,-1.6594931053251226e-19,-2.6551890202189845e-19,-1.2643756808314786e-19,-0.0005978954141028225,-2.598266985437681e-37,3.062310581643688e-35,-8.981524438618188e-36,6.637972550547461e-20,1.4739259637909209e-34,2.3095568305669718e-35,1.0620756080875938e-19,2.243635338396528e-37,5.0575027879493996e-20,0.00011957908282056451,7.0,4.0,8.0,7.0,0.028696322813630104,-0.0051259566098451614,-0.007908163592219353,-0.004591836594045162,-0.0051259566098451614,0.0002657313016243279,0.0005739795742556453,0.0003188775444868952,0.0003587372484616935,0.0006377550889737904,0.0005102040595375001,0.0005739795742556453,0.00021258502965793014,0.0003188775444868952,0.0002657313016243279,-0.0051259566098451614,0.003090454963967204,0.0005739795742556453,0.0003188775444868952,0.0003587372484616935,-0.0003188775444868952,-0.00019132652960252017,-0.00010629251482896507,-0.00011957908282056451,-1.0256940333984037e-18,2.220959523683507e-19,9.792589960171236e-20,-1.0488727069119964e-19,1.613699481885392e-19,-2.9747586176514827e-19,-0.007908163592219353,0.0005739795742556453,0.009736394509673119,0.0005102040595375001,0.0005739795742556453,3.2526065174565133e-19,-0.00038265305920504034,-2.7887543907158047e-19,-4.636707673914064e-19,-0.0019132653251290321,-0.0003401360590942204,-0.00038265305920504034,-1.9174913846152655e-19,1.2727627752548834e-19,-5.543253164314257e-19,-0.004591836594045162,0.0003188775444868952,0.0005102040595375001,0.002374878618866205,0.0003188775444868952,4.0130176279521434e-19,-1.1432785071052467e-19,-9.110787505051121e-05,-1.8976849325885954e-19,5.67266040126935e-19,-0.00014577258843928576,-2.439454888092385e-19,-0.00021258502965793014,-9.110787505051121e-05,-7.8538028106857925e-19,-0.0051259566098451614,0.0003587372484616935,0.0005739795742556453,0.0003188775444868952,0.003090454963967204,2.418526960100852e-19,-3.46961916061739e-19,-2.354503439183189e-19,-0.00011957908282056451,-8.946963219958276e-21,-3.0205668459989037e-19,-0.00019132652960252017,-7.521652571618187e-19,-0.00010629251482896507,-0.0003188775444868952,0.0002657313016243279,-0.0003188775444868952,3.2526065174565133e-19,4.0130176279521434e-19,2.418526960100852e-19,5.3146257414482534e-05,-1.6940658945086007e-20,-2.371692252312041e-20,-1.3552527156068805e-20,-1.180083973084279e-20,-3.686357541706417e-20,-2.832201470778784e-20,-2.4138980121565655e-20,-2.3039734635665108e-20,-9.107908818030226e-21,0.0005739795742556453,-0.00019132652960252017,-0.00038265305920504034,-1.1432785071052467e-19,-3.46961916061739e-19,-1.6940658945086007e-20,0.00012755101488437504,-7.164583678156135e-22,1.4219363976757257e-20,2.9240147059865344e-19,7.7744218779414835e-22,3.293712676385968e-20,2.832201470778784e-20,-6.069003555565607e-21,5.664402941557569e-20,0.0003188775444868952,-0.00010629251482896507,-2.7887543907158047e-19,-9.110787505051121e-05,-2.354503439183189e-19,-2.371692252312041e-20,-7.164583678156135e-22,3.0369290470844135e-05,1.3537885089874336e-20,9.440671784674232e-20,1.5574476459400916e-20,-2.066148195353234e-23,4.3493479725464974e-20,5.929230630780102e-21,3.4092265102244375e-20,0.0003587372484616935,-0.00011957908282056451,-4.636707673914064e-19,-1.8976849325885954e-19,-0.00011957908282056451,-1.3552527156068805e-20,1.4219363976757257e-20,1.3537885089874336e-20,3.98596930608619e-05,1.3275945101094922e-19,1.7567340713593017e-23,2.879912020664621e-20,2.6293761383459283e-20,2.0739338738345308e-22,5.931892472141904e-20,0.0006377550889737904,-1.0256940333984037e-18,-0.0019132653251290321,5.67266040126935e-19,-8.946963219958276e-21,-1.180083973084279e-20,2.9240147059865344e-19,9.440671784674232e-20,1.3275945101094922e-19,0.0006377550889737904,-1.893639114664416e-19,-1.4941307828347933e-19,-4.720335892337116e-20,-4.720335892337116e-20,1.180083973084279e-20,0.0005102040595375001,2.220959523683507e-19,-0.0003401360590942204,-0.00014577258843928576,-3.0205668459989037e-19,-3.686357541706417e-20,7.7744218779414835e-22,1.5574476459400916e-20,1.7567340713593017e-23,-1.893639114664416e-19,9.718172805150971e-05,-2.1457603080141124e-20,4.538611743460032e-20,1.5246593050577406e-20,5.489265541425365e-20,0.0005739795742556453,9.792589960171236e-20,-0.00038265305920504034,-2.439454888092385e-19,-0.00019132652960252017,-2.832201470778784e-20,3.293712676385968e-20,-2.066148195353234e-23,2.879912020664621e-20,-1.4941307828347933e-19,-2.1457603080141124e-20,0.00012755101488437504,4.243481455719354e-20,1.1940588017924503e-20,6.802326229678359e-20,0.00021258502965793014,-1.0488727069119964e-19,-1.9174913846152655e-19,-0.00021258502965793014,-7.521652571618187e-19,-2.4138980121565655e-20,2.832201470778784e-20,4.3493479725464974e-20,2.6293761383459283e-20,-4.720335892337116e-20,4.538611743460032e-20,4.243481455719354e-20,3.0369290470844135e-05,4.333867416629538e-20,7.864906934927493e-20,0.0003188775444868952,1.613699481885392e-19,1.2727627752548834e-19,-9.110787505051121e-05,-0.00010629251482896507,-2.3039734635665108e-20,-6.069003555565607e-21,5.929230630780102e-21,2.0739338738345308e-22,-4.720335892337116e-20,1.5246593050577406e-20,1.1940588017924503e-20,4.333867416629538e-20,3.0369290470844135e-05,2.4237351606561243e-20,0.0002657313016243279,-2.9747586176514827e-19,-5.543253164314257e-19,-7.8538028106857925e-19,-0.0003188775444868952,-9.107908818030226e-21,5.664402941557569e-20,3.4092265102244375e-20,5.931892472141904e-20,1.180083973084279e-20,5.489265541425365e-20,6.802326229678359e-20,7.864906934927493e-20,2.4237351606561243e-20,5.3146257414482534e-05,7.0,4.0,8.0,8.0,0.0255921371281147,-0.004520089365541935,-0.0069754463620483875,-0.0040488592348992825,-0.0040488592348992825,0.0002325148816453293,0.0005022321711294353,0.00027901786961592734,0.00027901786961592734,0.0005580357392318547,0.00044642857392318547,0.00044642857392318547,0.00018601190822664648,0.00024801588733680546,0.00018601190822664648,-0.004520089365541935,0.00271577388048172,0.0005022321711294353,0.00027901786961592734,0.00027901786961592734,-0.00027901786961592734,-0.00016741071885917336,-9.300595411332324e-05,-9.300595411332324e-05,-0.0,-2.7731456218039e-20,-3.019899091524723e-20,-4.0657581468206416e-20,-1.4362346669281023e-20,-4.158809180266895e-20,-0.0069754463620483875,0.0005022321711294353,0.008556547574698925,0.00044642857392318547,0.00044642857392318547,1.3552527156068805e-20,-0.0003348214377183467,-2.723437559985718e-20,-3.069607153342905e-20,-0.0016741071594879031,-0.00029761905898340046,-0.00029761905898340046,-5.0010331708584504e-20,-3.023785547934015e-20,-6.185398772964972e-20,-0.0040488592348992825,0.00027901786961592734,0.00044642857392318547,0.0020868764258921146,0.00024801588733680546,7.49123277840935e-21,-0.0,-7.97193861217238e-05,-1.3278006792226161e-21,-0.0,-0.00012755101488437504,-3.3881317890172014e-20,-0.00018601190822664648,-7.086167897796258e-05,-4.697166111015108e-20,-0.0040488592348992825,0.00027901786961592734,0.00044642857392318547,0.00024801588733680546,0.0020868764258921146,-0.0,-0.0,1.8354425318625637e-20,-7.97193861217238e-05,-0.0,-6.578608609106143e-21,-0.00012755101488437504,-6.776263578034403e-21,-7.086167897796258e-05,-0.00018601190822664648,0.0002325148816453293,-0.00027901786961592734,1.3552527156068805e-20,7.49123277840935e-21,-0.0,4.650297705666162e-05,-0.0,-1.6940658945086007e-21,-1.6940658945086007e-21,-0.0,1.957646688993896e-37,-1.88079096131566e-37,4.100983156608008e-22,1.1598527210518625e-37,-5.471641790530617e-25,0.0005022321711294353,-0.00016741071885917336,-0.0003348214377183467,-0.0,-0.0,-0.0,0.00011160714348079637,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,-9.300595411332324e-05,-2.723437559985718e-20,-7.97193861217238e-05,1.8354425318625637e-20,-1.6940658945086007e-21,-0.0,2.6573128707241267e-05,-6.7314920234831866e-21,-0.0,7.623296525288703e-21,1.5795359380885423e-22,1.0164395367051604e-20,-4.235164736271502e-22,4.075093625222868e-22,0.00027901786961592734,-9.300595411332324e-05,-3.069607153342905e-20,-1.3278006792226161e-21,-7.97193861217238e-05,-1.6940658945086007e-21,-0.0,-6.7314920234831866e-21,2.6573128707241267e-05,-0.0,2.9997676641460706e-22,8.470329472543003e-21,6.904453449889268e-22,4.527043978022647e-21,1.1475819142420538e-20,0.0005580357392318547,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-2.7731456218039e-20,-0.00029761905898340046,-0.00012755101488437504,-6.578608609106143e-21,1.957646688993896e-37,-0.0,7.623296525288703e-21,2.9997676641460706e-22,-0.0,8.50340147735551e-05,2.5272576524029614e-22,1.392010715635919e-20,-0.0,6.999458051297824e-22,0.00044642857392318547,-3.019899091524723e-20,-0.00029761905898340046,-3.3881317890172014e-20,-0.00012755101488437504,-1.88079096131566e-37,-0.0,1.5795359380885423e-22,8.470329472543003e-21,-0.0,2.5272576524029614e-22,8.50340147735551e-05,3.6855838976125136e-22,8.63938693361423e-21,1.697262172094294e-20,0.00018601190822664648,-4.0657581468206416e-20,-5.0010331708584504e-20,-0.00018601190822664648,-6.776263578034403e-21,4.100983156608008e-22,-0.0,1.0164395367051604e-20,6.904453449889268e-22,-0.0,1.392010715635919e-20,3.6855838976125136e-22,2.6573128707241267e-05,1.6780841026833513e-22,4.760962617706652e-22,0.00024801588733680546,-1.4362346669281023e-20,-3.023785547934015e-20,-7.086167897796258e-05,-7.086167897796258e-05,1.1598527210518625e-37,-0.0,-4.235164736271502e-22,4.527043978022647e-21,-0.0,-0.0,8.63938693361423e-21,1.6780841026833513e-22,2.0246194253559224e-05,1.1741281918945405e-20,0.00018601190822664648,-4.158809180266895e-20,-6.185398772964972e-20,-4.697166111015108e-20,-0.00018601190822664648,-5.471641790530617e-25,-0.0,4.075093625222868e-22,1.1475819142420538e-20,-0.0,6.999458051297824e-22,1.697262172094294e-20,4.760962617706652e-22,1.1741281918945405e-20,2.6573128707241267e-05,7.0,5.0,3.0,3.0,0.10241874307394028,-0.02222222276031971,-0.028911564499139786,-0.0416666679084301,-0.0416666679084301,0.0013227512827143073,0.0023809524718672037,0.0035714285913854837,0.0035714285913854837,0.0022675737272948027,0.004761904943734407,0.004761904943734407,0.004761904943734407,0.0071428571827709675,0.004761904943734407,-0.02222222276031971,0.014285714365541935,0.0023809524718672037,0.0035714285913854837,0.0035714285913854837,-0.0015873016091063619,-0.0007936508045531809,-0.0011904762359336019,-0.0011904762359336019,-0.0,-5.2867765096103e-19,-5.2867765096103e-19,-3.1720658023686032e-18,-1.5860329011843016e-18,-3.1720658023686032e-18,-0.028911564499139786,0.0023809524718672037,0.02806122414767742,0.004761904943734407,0.004761904943734407,-0.0,-0.0011904762359336019,-5.2867765096103e-19,-5.2867765096103e-19,-0.004535147454589605,-0.0023809524718672037,-0.0023809524718672037,-1.4140453172873239e-33,-7.034458956570486e-34,-1.4051034786974126e-33,-0.0416666679084301,0.0035714285913854837,0.004761904943734407,0.0892857164144516,0.0071428571827709675,1.3582313736056384e-20,1.1311017535710876e-36,-0.0035714285913854837,-7.930164505921508e-19,-0.0,-0.004761904943734407,-3.5217004894156947e-34,-0.02857142873108387,-0.0071428571827709675,-1.5860329632228476e-17,-0.0416666679084301,0.0035714285913854837,0.004761904943734407,0.0071428571827709675,0.0892857164144516,-0.0,7.092313310248542e-36,-7.930164505921508e-19,-0.0035714285913854837,-0.0,-3.5217004894156947e-34,-0.004761904943734407,-1.5860329632228476e-17,-0.0071428571827709675,-0.02857142873108387,0.0013227512827143073,-0.0015873016091063619,-0.0,1.3582313736056384e-20,-0.0,0.00026455026818439364,2.710505431213761e-20,-0.0,-0.0,-0.0,-5.4409284945327645e-36,-5.4409284945327645e-36,5.756625998688988e-35,9.894200666197393e-36,3.957680266478957e-35,0.0023809524718672037,-0.0007936508045531809,-0.0011904762359336019,1.1311017535710876e-36,7.092313310248542e-36,2.710505431213761e-20,0.00039682540227659047,-0.0,-0.0,-0.0,-2.204884166975721e-36,-2.204884166975721e-36,1.788363556686338e-36,-2.980605778338727e-37,-1.1922423113354909e-36,0.0035714285913854837,-0.0011904762359336019,-5.2867765096103e-19,-0.0035714285913854837,-7.930164505921508e-19,-0.0,-0.0,0.0011904762359336019,8.804251223539237e-35,-0.0,5.2867765096103e-19,0.0,3.1720658023686032e-18,7.930164505921508e-19,1.7608503135844695e-33,0.0035714285913854837,-0.0011904762359336019,-5.2867765096103e-19,-7.930164505921508e-19,-0.0035714285913854837,-0.0,-0.0,8.804251223539237e-35,0.0011904762359336019,-0.0,0.0,5.2867765096103e-19,1.7608503135844695e-33,7.930164505921508e-19,3.1720658023686032e-18,0.0022675737272948027,-0.0,-0.004535147454589605,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011337868636474013,-0.0,-0.0,-0.0,-0.0,-0.0,0.004761904943734407,-5.2867765096103e-19,-0.0023809524718672037,-0.004761904943734407,-3.5217004894156947e-34,-5.4409284945327645e-36,-2.204884166975721e-36,5.2867765096103e-19,0.0,-0.0,0.0023809524718672037,0.0,1.4086801957662779e-33,3.5217004894156947e-34,0.0,0.004761904943734407,-5.2867765096103e-19,-0.0023809524718672037,-3.5217004894156947e-34,-0.004761904943734407,-5.4409284945327645e-36,-2.204884166975721e-36,0.0,5.2867765096103e-19,-0.0,0.0,0.0023809524718672037,0.0,3.5217004894156947e-34,1.4086801957662779e-33,0.004761904943734407,-3.1720658023686032e-18,-1.4140453172873239e-33,-0.02857142873108387,-1.5860329632228476e-17,5.756625998688988e-35,1.788363556686338e-36,3.1720658023686032e-18,1.7608503135844695e-33,-0.0,1.4086801957662779e-33,0.0,0.014285714365541935,2.113020339567165e-33,7.930164816114238e-18,0.0071428571827709675,-1.5860329011843016e-18,-7.034458956570486e-34,-0.0071428571827709675,-0.0071428571827709675,9.894200666197393e-36,-2.980605778338727e-37,7.930164505921508e-19,7.930164505921508e-19,-0.0,3.5217004894156947e-34,3.5217004894156947e-34,2.113020339567165e-33,0.0071428571827709675,2.113020339567165e-33,0.004761904943734407,-3.1720658023686032e-18,-1.4051034786974126e-33,-1.5860329632228476e-17,-0.02857142873108387,3.957680266478957e-35,-1.1922423113354909e-36,1.7608503135844695e-33,3.1720658023686032e-18,-0.0,0.0,1.4086801957662779e-33,7.930164816114238e-18,2.113020339567165e-33,0.014285714365541935,7.0,5.0,3.0,4.0,0.08282596617937088,-0.017202381044626236,-0.022397959604859352,-0.03232142701745033,-0.026428570970892906,0.0009920635493472219,0.0017857142956927419,0.0026785715017467737,0.002142857061699033,0.001700680237263441,0.0035714285913854837,0.0028571428265422583,0.0035714285913854837,0.004285714123398066,0.0023809524718672037,-0.017202381044626236,0.010892856866121292,0.0017857142956927419,0.0026785715017467737,0.002142857061699033,-0.0011904762359336019,-0.0005952381179668009,-0.0008928571478463709,-0.0007142857066355646,-9.269287509776334e-18,-1.1810861980391453e-17,-5.181157022518277e-18,-2.5342975973303675e-17,-7.387427627980432e-18,9.154256878662566e-19,-0.022397959604859352,0.0017857142956927419,0.021403061226010323,0.0035714285913854837,0.0028571428265422583,-8.456776945386935e-18,-0.0008928571478463709,-8.786360443013788e-18,6.778692904095894e-19,-0.003401360474526882,-0.0017857142956927419,-0.0014285714132711291,-2.979476111402934e-17,-4.758098496757752e-19,5.400064167775842e-18,-0.03232142701745033,0.0026785715017467737,0.0035714285913854837,0.06803571432828903,0.004285714123398066,-1.3421696961664968e-17,-9.850542363133672e-18,-0.0026785715017467737,2.104369398621135e-18,-1.7489519751294542e-17,-0.0035714285913854837,-1.5860328753349075e-19,-0.02142857201397419,-0.004285714123398066,2.2997477222268738e-17,-0.026428570970892906,0.002142857061699033,0.0028571428265422583,0.004285714123398066,0.034285712987184525,-2.6020852139652106e-18,-1.9154396923527984e-18,-2.488851632732214e-18,-0.0014285714132711291,4.871027158537446e-18,9.992007618673103e-18,-0.0019047618843615055,4.09989489808397e-17,-0.0028571428265422583,-0.0071428571827709675,0.0009920635493472219,-0.0011904762359336019,-8.456776945386935e-18,-1.3421696961664968e-17,-2.6020852139652106e-18,0.00019841270113829523,3.9302328752599536e-19,5.963111948670274e-19,8.131516293641283e-20,1.1328806141609079e-18,1.3216941015531808e-18,5.991679665100559e-19,3.436404601999724e-18,8.987520014638721e-19,4.4056469836361075e-20,0.0017857142956927419,-0.0005952381179668009,-0.0008928571478463709,-9.850542363133672e-18,-1.9154396923527984e-18,3.9302328752599536e-19,0.00029761905898340046,6.07107814716011e-19,2.4400507166273646e-19,9.150190251976103e-19,1.080448633660892e-18,3.53807326769104e-19,2.3790494034752407e-18,4.758098496757752e-19,-4.5898403850084887e-33,0.0026785715017467737,-0.0008928571478463709,-8.786360443013788e-18,-0.0026785715017467737,-2.488851632732214e-18,5.963111948670274e-19,6.07107814716011e-19,0.0008928571478463709,3.660075945694076e-19,1.1328806141609079e-18,1.3232916975087504e-18,4.758098496757752e-19,2.4248003495652424e-18,4.392091238230468e-19,-5.3021723291915325e-33,0.002142857061699033,-0.0007142857066355646,6.778692904095894e-19,2.104369398621135e-18,-0.0014285714132711291,8.131516293641283e-20,2.4400507166273646e-19,3.660075945694076e-19,0.0004761904710903764,-4.531522353246055e-19,2.2554625205669865e-33,5.701197615414546e-20,-1.9032393987031007e-18,8.55179642312182e-20,-9.62735559218191e-19,0.001700680237263441,-9.269287509776334e-18,-0.003401360474526882,-1.7489519751294542e-17,4.871027158537446e-18,1.1328806141609079e-18,9.150190251976103e-19,1.1328806141609079e-18,-4.531522353246055e-19,0.0008503401186317205,1.3810354183122756e-18,-1.697522733987248e-19,5.664403380997269e-18,4.072243039034573e-33,-7.552537427739386e-19,0.0035714285913854837,-1.1810861980391453e-17,-0.0017857142956927419,-0.0035714285913854837,9.992007618673103e-18,1.3216941015531808e-18,1.080448633660892e-18,1.3232916975087504e-18,2.2554625205669865e-33,1.3810354183122756e-18,0.0017857142956927419,-6.34413150133963e-19,5.579704341368767e-32,-9.516196993515503e-19,-2.3790494034752407e-18,0.0028571428265422583,-5.181157022518277e-18,-0.0014285714132711291,-1.5860328753349075e-19,-0.0019047618843615055,5.991679665100559e-19,3.53807326769104e-19,4.758098496757752e-19,5.701197615414546e-20,-1.697522733987248e-19,-6.34413150133963e-19,0.0009523809421807528,1.3386445913191714e-32,4.114916055363314e-33,1.1480028440344159e-33,0.0035714285913854837,-2.5342975973303675e-17,-2.979476111402934e-17,-0.02142857201397419,4.09989489808397e-17,3.436404601999724e-18,2.3790494034752407e-18,2.4248003495652424e-18,-1.9032393987031007e-18,5.664403380997269e-18,5.579704341368767e-32,1.3386445913191714e-32,0.010714286006987095,-4.7580988069504814e-18,-9.119689414454282e-18,0.004285714123398066,-7.387427627980432e-18,-4.758098496757752e-19,-0.004285714123398066,-0.0028571428265422583,8.987520014638721e-19,4.758098496757752e-19,4.392091238230468e-19,8.55179642312182e-20,4.072243039034573e-33,-9.516196993515503e-19,4.114916055363314e-33,-4.7580988069504814e-18,0.0028571428265422583,5.545804186317006e-33,0.0023809524718672037,9.154256878662566e-19,5.400064167775842e-18,2.2997477222268738e-17,-0.0071428571827709675,4.4056469836361075e-20,-4.5898403850084887e-33,-5.3021723291915325e-33,-9.62735559218191e-19,-7.552537427739386e-19,-2.3790494034752407e-18,1.1480028440344159e-33,-9.119689414454282e-18,5.545804186317006e-33,0.0023809524718672037,7.0,5.0,3.0,5.0,0.06964852660894394,-0.014047618955373764,-0.018299318850040436,-0.026428570970892906,-0.018299318850040436,0.0007936508045531809,0.0014285714132711291,0.002142857061699033,0.0014285714132711291,0.0013605442363768816,0.0028571428265422583,0.0019047618843615055,0.0028571428265422583,0.0028571428265422583,0.0013605442363768816,-0.014047618955373764,0.008809523656964302,0.0014285714132711291,0.002142857061699033,0.0014285714132711291,-0.0009523809421807528,-0.0004761904710903764,-0.0007142857066355646,-0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.018299318850040436,0.0014285714132711291,0.017312925308942795,0.0028571428265422583,0.0019047618843615055,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.002721088472753763,-0.0014285714132711291,-0.0009523809421807528,0.0,0.0,0.0,-0.026428570970892906,0.002142857061699033,0.0028571428265422583,0.054999999701976776,0.0028571428265422583,-0.0,-0.0,-0.002142857061699033,-0.0,-0.0,-0.0028571428265422583,-0.0,-0.017142856493592262,-0.0028571428265422583,-2.7189135153452095e-18,-0.018299318850040436,0.0014285714132711291,0.0019047618843615055,0.0028571428265422583,0.017312925308942795,-0.0,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0009523809421807528,-5.437827030690419e-18,-0.0014285714132711291,-0.002721088472753763,0.0007936508045531809,-0.0009523809421807528,-0.0,-0.0,-0.0,0.00015873015217948705,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0004761904710903764,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0007142857066355646,-0.0,-0.002142857061699033,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0004761904710903764,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0,-0.0014285714132711291,-0.0028571428265422583,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0,-0.0009523809421807528,-0.0,-0.0009523809421807528,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0,0.0,-0.017142856493592262,-5.437827030690419e-18,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008571428246796131,-0.0,1.3594567576726047e-18,0.0028571428265422583,-0.0,0.0,-0.0028571428265422583,-0.0014285714132711291,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,0.0013605442363768816,-0.0,0.0,-2.7189135153452095e-18,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,1.3594567576726047e-18,-0.0,0.0006802721181884408,7.0,5.0,3.0,6.0,0.06013794243335724,-0.011876417323946953,-0.015476190485060215,-0.022363945841789246,-0.01343537401407957,0.0006613756413571537,0.0011904762359336019,0.0017857142956927419,0.0010204081190750003,0.0011337868636474013,0.0023809524718672037,0.0013605442363768816,0.0023809524718672037,0.0020408162381500006,0.0008503401186317205,-0.011876417323946953,0.007397959008812904,0.0011904762359336019,0.0017857142956927419,0.0010204081190750003,-0.0007936508045531809,-0.00039682540227659047,-0.0005952381179668009,-0.0003401360590942204,-0.0,-2.64338825480515e-19,1.88079096131566e-36,-1.5860329011843016e-18,-2.1133306597872283e-19,-6.947677372940411e-20,-0.015476190485060215,0.0011904762359336019,0.01454081665724516,0.0023809524718672037,0.0013605442363768816,-0.0,-0.0005952381179668009,-2.64338825480515e-19,0.0,-0.0022675737272948027,-0.0011904762359336019,-0.0006802721181884408,-7.466803942093e-34,1.6940658945086007e-20,-0.0,-0.022363945841789246,0.0017857142956927419,0.0023809524718672037,0.046173468232154846,0.0020408162381500006,4.8347394946971747e-20,-0.0,-0.0017857142956927419,1.5243056530341315e-20,-0.0,-0.0023809524718672037,1.6940658945086007e-20,-0.014285714365541935,-0.0020408162381500006,-1.5046184765743824e-18,-0.01343537401407957,0.0010204081190750003,0.0013605442363768816,0.0020408162381500006,0.010051020421087742,-0.0,-0.0,-2.2657611766230274e-19,-0.0004081632650922984,-0.0,-1.0062000906354684e-34,-0.0005442177061922848,-3.8942769883934986e-18,-0.0008163265301845968,-0.0012755101779475808,0.0006613756413571537,-0.0007936508045531809,-0.0,4.8347394946971747e-20,-0.0,0.00013227513409219682,-0.0,-0.0,-6.776263578034403e-21,-0.0,-2.7204642472663823e-36,0.0,-1.5648772850110585e-35,2.3871275836785755e-36,-1.684271044099691e-22,0.0011904762359336019,-0.00039682540227659047,-0.0005952381179668009,-0.0,-0.0,-0.0,0.00019841270113829523,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0005952381179668009,-2.64338825480515e-19,-0.0017857142956927419,-2.2657611766230274e-19,-0.0,-0.0,0.0005952381179668009,-1.692319232564778e-36,-0.0,2.64338825480515e-19,-1.88079096131566e-36,1.5860329011843016e-18,2.2657611766230274e-19,1.6250033905767303e-34,0.0010204081190750003,-0.0003401360590942204,0.0,1.5243056530341315e-20,-0.0004081632650922984,-6.776263578034403e-21,-0.0,-1.692319232564778e-36,0.0001360544265480712,-0.0,-0.0,-0.0,9.213665344848581e-35,-6.097222612136526e-21,2.822862084675178e-20,0.0011337868636474013,-0.0,-0.0022675737272948027,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023809524718672037,-2.64338825480515e-19,-0.0011904762359336019,-0.0023809524718672037,-1.0062000906354684e-34,-2.7204642472663823e-36,-0.0,2.64338825480515e-19,-0.0,-0.0,0.0011904762359336019,-0.0,7.0434009788313895e-34,1.0062000906354684e-34,0.0,0.0013605442363768816,1.88079096131566e-36,-0.0006802721181884408,1.6940658945086007e-20,-0.0005442177061922848,0.0,-0.0,-1.88079096131566e-36,-0.0,-0.0,-0.0,0.0002721088530961424,1.6936124270182933e-35,-6.776263578034403e-21,-0.0,0.0023809524718672037,-1.5860329011843016e-18,-7.466803942093e-34,-0.014285714365541935,-3.8942769883934986e-18,-1.5648772850110585e-35,-0.0,1.5860329011843016e-18,9.213665344848581e-35,-0.0,7.0434009788313895e-34,1.6936124270182933e-35,0.0071428571827709675,5.296307347064899e-34,7.788554286979727e-19,0.0020408162381500006,-2.1133306597872283e-19,1.6940658945086007e-20,-0.0020408162381500006,-0.0008163265301845968,2.3871275836785755e-36,-0.0,2.2657611766230274e-19,-6.097222612136526e-21,-0.0,1.0062000906354684e-34,-6.776263578034403e-21,5.296307347064899e-34,0.0008163265301845968,-2.123695911409114e-20,0.0008503401186317205,-6.947677372940411e-20,-0.0,-1.5046184765743824e-18,-0.0012755101779475808,-1.684271044099691e-22,-0.0,1.6250033905767303e-34,2.822862084675178e-20,-0.0,0.0,-0.0,7.788554286979727e-19,-2.123695911409114e-20,0.00025510202976875007,7.0,5.0,3.0,7.0,0.05293569713830948,-0.010289115831255913,-0.013411078602075577,-0.019387755542993546,-0.010289115831255913,0.0005668934318237007,0.0010204081190750003,0.0015306122368201613,0.0007653061184100807,0.0009718172950670123,0.0020408162381500006,0.0010204081190750003,0.0020408162381500006,0.0015306122368201613,0.0005668934318237007,-0.010289115831255913,0.0063775512389838696,0.0010204081190750003,0.0015306122368201613,0.0007653061184100807,-0.0006802721181884408,-0.0003401360590942204,-0.0005102040595375001,-0.00025510202976875007,-8.021953119581338e-19,-1.3207455321857356e-18,4.616665087671904e-19,-2.5730083678678998e-18,4.2406143055445776e-19,1.6197877638383296e-18,-0.013411078602075577,0.0010204081190750003,0.012536442838609219,0.0020408162381500006,0.0010204081190750003,-3.2526065174565133e-19,-0.0005102040595375001,-1.9429525467069247e-18,1.5628198609011967e-19,-0.0019436345901340246,-0.0010204081190750003,-0.0005102040595375001,-1.0936690891600513e-17,1.6168160140901563e-18,1.6427112133588585e-18,-0.019387755542993546,0.0015306122368201613,0.0020408162381500006,0.03979591652750969,0.0015306122368201613,-3.323495378964425e-19,-2.091797907671554e-18,-0.0015306122368201613,2.291741627193611e-19,-5.028823027320205e-18,-0.0020408162381500006,1.877841024789813e-18,-0.01224489789456129,-0.0015306122368201613,4.6738653508129815e-18,-0.010289115831255913,0.0007653061184100807,0.0010204081190750003,0.0015306122368201613,0.0063775512389838696,1.8101013432714674e-18,5.519283021126119e-19,5.647029693001511e-19,-0.00025510202976875007,1.893767560303909e-18,4.238129765177198e-18,-0.0003401360590942204,1.2178466834874307e-17,-0.0005102040595375001,-0.0006802721181884408,0.0005668934318237007,-0.0006802721181884408,-3.2526065174565133e-19,-3.323495378964425e-19,1.8101013432714674e-18,0.00011337868636474013,-1.3552527156068805e-20,-4.0657581468206416e-20,-1.4230153513872246e-19,3.5964465634135977e-20,1.8881343569348464e-19,-2.832201470778784e-20,-3.7762688431166636e-20,-4.24830236772689e-20,-2.1742995577990977e-19,0.0010204081190750003,-0.0003401360590942204,-0.0005102040595375001,-2.091797907671554e-18,5.519283021126119e-19,-1.3552527156068805e-20,0.0001700680295471102,1.1516730978529528e-19,-8.048283991001262e-21,1.1113414513954864e-19,2.3487562464483074e-20,-7.979862421852489e-20,8.49660486470075e-19,-3.3990641714069047e-35,-4.720335892337116e-20,0.0015306122368201613,-0.0005102040595375001,-1.9429525467069247e-18,-0.0015306122368201613,5.647029693001511e-19,-4.0657581468206416e-20,1.1516730978529528e-19,0.0005102040595375001,-1.2072426390398677e-20,3.64140208487175e-19,1.4088979632703586e-19,-1.954249945103697e-34,1.1002636418370231e-18,2.3793606366430623e-20,-7.080503838505674e-20,0.0007653061184100807,-0.00025510202976875007,1.5628198609011967e-19,2.291741627193611e-19,-0.00025510202976875007,-1.4230153513872246e-19,-8.048283991001262e-21,-1.2072426390398677e-20,8.50340147735551e-05,1.5648180798146291e-34,1.6361122713694817e-34,-4.404571325722362e-20,8.395850851313106e-34,-6.43189601056636e-20,-5.012452786955657e-20,0.0009718172950670123,-8.021953119581338e-19,-0.0019436345901340246,-5.028823027320205e-18,1.893767560303909e-18,3.5964465634135977e-20,1.1113414513954864e-19,3.64140208487175e-19,1.5648180798146291e-34,0.00048590864753350616,-3.4569923131902535e-20,-1.8488670592811885e-19,2.2657612283218157e-18,-1.21380069495725e-19,-1.7982231847715708e-19,0.0020408162381500006,-1.3207455321857356e-18,-0.0010204081190750003,-0.0020408162381500006,4.238129765177198e-18,1.8881343569348464e-19,2.3487562464483074e-20,1.4088979632703586e-19,1.6361122713694817e-34,-3.4569923131902535e-20,0.0010204081190750003,-4.248302432350375e-19,6.10368366820239e-20,-4.429794647538518e-19,-4.342709072648935e-19,0.0010204081190750003,4.616665087671904e-19,-0.0005102040595375001,1.877841024789813e-18,-0.0003401360590942204,-2.832201470778784e-20,-7.979862421852489e-20,-1.954249945103697e-34,-4.404571325722362e-20,-1.8488670592811885e-19,-4.248302432350375e-19,0.0001700680295471102,-1.699320947090756e-19,-1.7279472123987727e-19,-9.486769009248164e-20,0.0020408162381500006,-2.5730083678678998e-18,-1.0936690891600513e-17,-0.01224489789456129,1.2178466834874307e-17,-3.7762688431166636e-20,8.49660486470075e-19,1.1002636418370231e-18,8.395850851313106e-34,2.2657612283218157e-18,6.10368366820239e-20,-1.699320947090756e-19,0.006122448947280645,-1.5293888136075891e-18,-1.5482702450648777e-18,0.0015306122368201613,4.2406143055445776e-19,1.6168160140901563e-18,-0.0015306122368201613,-0.0005102040595375001,-4.24830236772689e-20,-3.3990641714069047e-35,2.3793606366430623e-20,-6.43189601056636e-20,-1.21380069495725e-19,-4.429794647538518e-19,-1.7279472123987727e-19,-1.5293888136075891e-18,0.0005102040595375001,-1.3398715506103984e-19,0.0005668934318237007,1.6197877638383296e-18,1.6427112133588585e-18,4.6738653508129815e-18,-0.0006802721181884408,-2.1742995577990977e-19,-4.720335892337116e-20,-7.080503838505674e-20,-5.012452786955657e-20,-1.7982231847715708e-19,-4.342709072648935e-19,-9.486769009248164e-20,-1.5482702450648777e-18,-1.3398715506103984e-19,0.00011337868636474013,7.0,5.0,3.0,8.0,0.04728599637746811,-0.00907738134264946,-0.011833900585770607,-0.01711309514939785,-0.008134921081364155,0.0004960317746736109,0.0008928571478463709,0.0013392857508733869,0.0005952381179668009,0.0008503401186317205,0.0017857142956927419,0.0007936508045531809,0.0017857142956927419,0.0011904762359336019,0.00039682540227659047,-0.00907738134264946,0.0056051588617265224,0.0008928571478463709,0.0013392857508733869,0.0005952381179668009,-0.0005952381179668009,-0.00029761905898340046,-0.00044642857392318547,-0.00019841270113829523,-5.383603687176343e-18,-6.5001932893657486e-18,-1.782157321023048e-18,-1.5222356658629602e-17,-2.55465136891897e-18,-3.5614517182472615e-19,-0.011833900585770607,0.0008928571478463709,0.01101899053901434,0.0017857142956927419,0.0007936508045531809,-4.445228907190568e-18,-0.00044642857392318547,-4.556939235325548e-18,-1.1664095531101323e-18,-0.001700680237263441,-0.0008928571478463709,-0.00039682540227659047,-1.489738055701467e-17,-4.42989132427261e-19,4.494299225681169e-19,-0.01711309514939785,0.0013392857508733869,0.0017857142956927419,0.0349702388048172,0.0011904762359336019,-7.054618953145235e-18,-5.091791324270192e-18,-0.0013392857508733869,-1.7772360099686637e-18,-8.933572949449238e-18,-0.0017857142956927419,-1.4930992627615455e-19,-0.010714286006987095,-0.0011904762359336019,2.42314557474983e-18,-0.008134921081364155,0.0005952381179668009,0.0007936508045531809,0.0011904762359336019,0.004308389965444803,-1.1519648082658485e-18,-7.724940478959219e-19,-1.0367683274392636e-18,-0.0001700680295471102,3.3258567211193224e-19,2.0203038601479834e-18,-0.00022675737272948027,7.864079702616151e-18,-0.0003401360590942204,-0.00039682540227659047,0.0004960317746736109,-0.0005952381179668009,-4.445228907190568e-18,-7.054618953145235e-18,-1.1519648082658485e-18,9.920635056914762e-05,1.8973538018496328e-19,2.846030702774449e-19,4.0657581468206416e-20,5.664403070804539e-19,6.608470507765904e-19,1.8415422457100607e-19,1.718202300999862e-18,2.759338555663712e-19,4.302116928922e-20,0.0008928571478463709,-0.00029761905898340046,-0.00044642857392318547,-5.091791324270192e-18,-7.724940478959219e-19,1.8973538018496328e-19,0.00014880952949170023,3.015437292225309e-19,7.453875718671065e-20,4.575095125988051e-19,5.40224316830446e-19,1.1083501595053415e-19,1.1895247017376204e-18,1.5125948758236547e-19,2.32384470063725e-20,0.0013392857508733869,-0.00044642857392318547,-4.556939235325548e-18,-0.0013392857508733869,-1.0367683274392636e-18,2.846030702774449e-19,3.015437292225309e-19,0.00044642857392318547,1.1599218980176965e-19,5.664403070804539e-19,6.616458487543752e-19,1.5047047360026352e-19,1.2124001747826212e-18,1.4959587227415648e-19,3.146763394331069e-20,0.0005952381179668009,-0.00019841270113829523,-1.1664095531101323e-18,-1.7772360099686637e-18,-0.0001700680295471102,4.0657581468206416e-20,7.453875718671065e-20,1.1599218980176965e-19,5.668934318237007e-05,1.1688451088756122e-19,1.699320947090756e-19,6.206006556210053e-20,3.2098283550904506e-19,9.00743529261473e-20,-6.704336427143152e-21,0.0008503401186317205,-5.383603687176343e-18,-0.001700680237263441,-8.933572949449238e-18,3.3258567211193224e-19,5.664403070804539e-19,4.575095125988051e-19,5.664403070804539e-19,1.1688451088756122e-19,0.00042517005931586027,6.905177091561378e-19,-4.0417207952077335e-20,2.8322016904986345e-18,5.394669683561683e-20,-6.293781405194439e-20,0.0017857142956927419,-6.5001932893657486e-18,-0.0008928571478463709,-0.0017857142956927419,2.0203038601479834e-18,6.608470507765904e-19,5.40224316830446e-19,6.616458487543752e-19,1.699320947090756e-19,6.905177091561378e-19,0.0008928571478463709,-1.5105075372466654e-19,2.886384648394673e-32,-2.2657611766230274e-19,-2.64338825480515e-19,0.0007936508045531809,-1.782157321023048e-18,-0.00039682540227659047,-1.4930992627615455e-19,-0.00022675737272948027,1.8415422457100607e-19,1.1083501595053415e-19,1.5047047360026352e-19,6.206006556210053e-20,-4.0417207952077335e-20,-1.5105075372466654e-19,0.00011337868636474013,4.5981577422245256e-33,-8.134021423281942e-35,-8.729157638554149e-22,0.0017857142956927419,-1.5222356658629602e-17,-1.489738055701467e-17,-0.010714286006987095,7.864079702616151e-18,1.718202300999862e-18,1.1895247017376204e-18,1.2124001747826212e-18,3.2098283550904506e-19,2.8322016904986345e-18,2.886384648394673e-32,4.5981577422245256e-33,0.0053571430034935474,-1.1328806141609079e-18,-9.912706020142797e-19,0.0011904762359336019,-2.55465136891897e-18,-4.42989132427261e-19,-0.0011904762359336019,-0.0003401360590942204,2.759338555663712e-19,1.5125948758236547e-19,1.4959587227415648e-19,9.00743529261473e-20,5.394669683561683e-20,-2.2657611766230274e-19,-8.134021423281942e-35,-1.1328806141609079e-18,0.0003401360590942204,-1.808520145525307e-21,0.00039682540227659047,-3.5614517182472615e-19,4.494299225681169e-19,2.42314557474983e-18,-0.00039682540227659047,4.302116928922e-20,2.32384470063725e-20,3.146763394331069e-20,-6.704336427143152e-21,-6.293781405194439e-20,-2.64338825480515e-19,-8.729157638554149e-22,-9.912706020142797e-19,-1.808520145525307e-21,5.668934318237007e-05,7.0,5.0,4.0,3.0,0.08282596617937088,-0.017202381044626236,-0.022397959604859352,-0.026428570970892906,-0.03232142701745033,0.0009920635493472219,0.0017857142956927419,0.002142857061699033,0.0026785715017467737,0.001700680237263441,0.0028571428265422583,0.0035714285913854837,0.0023809524718672037,0.004285714123398066,0.0035714285913854837,-0.017202381044626236,0.010892856866121292,0.0017857142956927419,0.002142857061699033,0.0026785715017467737,-0.0011904762359336019,-0.0005952381179668009,-0.0007142857066355646,-0.0008928571478463709,-9.269287509776334e-18,-5.656967027290417e-18,-1.2524576573959357e-17,-8.688613130413856e-19,-9.351842616450964e-18,-2.962526518907232e-17,-0.022397959604859352,0.0017857142956927419,0.021403061226010323,0.0028571428265422583,0.0035714285913854837,-8.456776945386935e-18,-0.0008928571478463709,2.020594278091172e-19,-9.500075863762304e-18,-0.003401360474526882,-0.0014285714132711291,-0.0017857142956927419,3.0210149710957543e-18,-2.5693733226660355e-18,-3.550447786257257e-17,-0.026428570970892906,0.002142857061699033,0.0028571428265422583,0.034285712987184525,0.004285714123398066,-2.7008222481680622e-18,-1.9154396923527984e-18,-0.0014285714132711291,-1.0133443095710482e-17,4.871027158537446e-18,-0.0019047618843615055,-3.608602305632491e-18,-0.0071428571827709675,-0.0028571428265422583,-4.964283087206368e-17,-0.03232142701745033,0.0026785715017467737,0.0035714285913854837,0.004285714123398066,0.06803571432828903,-1.3527435459367622e-17,-9.850542363133672e-18,-5.645580058978012e-18,-0.0026785715017467737,-1.7489519751294542e-17,-1.4425346631738834e-17,-0.0035714285913854837,-3.385160556256911e-17,-0.004285714123398066,-0.02142857201397419,0.0009920635493472219,-0.0011904762359336019,-8.456776945386935e-18,-2.7008222481680622e-18,-1.3527435459367622e-17,0.00019841270113829523,3.9302328752599536e-19,9.486769009248164e-20,6.2341624917916505e-19,1.1328806141609079e-18,5.991679665100559e-19,1.3216941015531808e-18,4.4056469836361075e-20,8.987520014638721e-19,3.436404601999724e-18,0.0017857142956927419,-0.0005952381179668009,-0.0008928571478463709,-1.9154396923527984e-18,-9.850542363133672e-18,3.9302328752599536e-19,0.00029761905898340046,2.4400507166273646e-19,6.07107814716011e-19,9.150190251976103e-19,3.53807326769104e-19,1.080448633660892e-18,3.256017965389978e-33,4.758098496757752e-19,2.3790494034752407e-18,0.002142857061699033,-0.0007142857066355646,2.020594278091172e-19,-0.0014285714132711291,-5.645580058978012e-18,9.486769009248164e-20,2.4400507166273646e-19,0.0004761904710903764,2.8478877232496307e-19,-4.531522353246055e-19,5.701197615414546e-20,4.758098496757752e-19,-9.62735559218191e-19,6.56489825201179e-19,9.516196993515503e-19,0.0026785715017467737,-0.0008928571478463709,-9.500075863762304e-18,-1.0133443095710482e-17,-0.0026785715017467737,6.2341624917916505e-19,6.07107814716011e-19,2.8478877232496307e-19,0.0008928571478463709,1.1328806141609079e-18,9.516196993515503e-19,1.3232916975087504e-18,1.784287104305219e-18,1.5471663725374256e-18,2.4248003495652424e-18,0.001700680237263441,-9.269287509776334e-18,-0.003401360474526882,4.871027158537446e-18,-1.7489519751294542e-17,1.1328806141609079e-18,9.150190251976103e-19,-4.531522353246055e-19,1.1328806141609079e-18,0.0008503401186317205,-1.697522733987248e-19,1.3810354183122756e-18,-7.552537427739386e-19,1.0549680497649982e-32,5.664403380997269e-18,0.0028571428265422583,-5.656967027290417e-18,-0.0014285714132711291,-0.0019047618843615055,-1.4425346631738834e-17,5.991679665100559e-19,3.53807326769104e-19,5.701197615414546e-20,9.516196993515503e-19,-1.697522733987248e-19,0.0009523809421807528,1.0905864558507653e-18,7.26690681146735e-33,7.612957801607556e-19,3.806478797406201e-18,0.0035714285913854837,-1.2524576573959357e-17,-0.0017857142956927419,-3.608602305632491e-18,-0.0035714285913854837,1.3216941015531808e-18,1.080448633660892e-18,4.758098496757752e-19,1.3232916975087504e-18,1.3810354183122756e-18,1.0905864558507653e-18,0.0017857142956927419,1.0247862404842775e-33,1.1862787768071127e-32,4.935308917697146e-32,0.0023809524718672037,-8.688613130413856e-19,3.0210149710957543e-18,-0.0071428571827709675,-3.385160556256911e-17,4.4056469836361075e-20,3.256017965389978e-33,-9.62735559218191e-19,1.784287104305219e-18,-7.552537427739386e-19,7.26690681146735e-33,1.0247862404842775e-33,0.0023809524718672037,3.667512454497293e-18,1.0309214012794325e-17,0.004285714123398066,-9.351842616450964e-18,-2.5693733226660355e-18,-0.0028571428265422583,-0.004285714123398066,8.987520014638721e-19,4.758098496757752e-19,6.56489825201179e-19,1.5471663725374256e-18,1.0549680497649982e-32,7.612957801607556e-19,1.1862787768071127e-32,3.667512454497293e-18,0.0028571428265422583,7.612957594812403e-18,0.0035714285913854837,-2.962526518907232e-17,-3.550447786257257e-17,-4.964283087206368e-17,-0.02142857201397419,3.436404601999724e-18,2.3790494034752407e-18,9.516196993515503e-19,2.4248003495652424e-18,5.664403380997269e-18,3.806478797406201e-18,4.935308917697146e-32,1.0309214012794325e-17,7.612957594812403e-18,0.010714286006987095,7.0,5.0,4.0,4.0,0.06678911298513412,-0.013303571380674839,-0.017334183678030968,-0.02046428620815277,-0.02046428620815277,0.0007440476329065859,0.0013392857508733869,0.0016071428544819355,0.0016071428544819355,0.0012755101779475808,0.002142857061699033,0.002142857061699033,0.0017857142956927419,0.0025714286603033543,0.0017857142956927419,-0.013303571380674839,0.008303571492433548,0.0013392857508733869,0.0016071428544819355,0.0016071428544819355,-0.0008928571478463709,-0.00044642857392318547,-0.0005357142654247582,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.017334183678030968,0.0013392857508733869,0.016320152208209038,0.002142857061699033,0.002142857061699033,-0.0,-0.0006696428754366934,-0.0,-0.0,-0.0025510203558951616,-0.0010714285308495164,-0.0010714285308495164,0.0,0.0,-0.0,-0.02046428620815277,0.0016071428544819355,0.002142857061699033,0.02614285796880722,0.0025714286603033543,-2.509766346836579e-21,-0.0,-0.0010714285308495164,1.0875654371573568e-20,-0.0,-0.0014285714132711291,-0.0,-0.0053571430034935474,-0.001714285695925355,-0.0,-0.02046428620815277,0.0016071428544819355,0.002142857061699033,0.0025714286603033543,0.02614285796880722,-0.0,-0.0,1.0875654371573568e-20,-0.0010714285308495164,-0.0,-0.0,-0.0014285714132711291,-0.0,-0.001714285695925355,-0.0053571430034935474,0.0007440476329065859,-0.0008928571478463709,-0.0,-2.509766346836579e-21,-0.0,0.00014880952949170023,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.00044642857392318547,-0.0006696428754366934,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0005357142654247582,-0.0,-0.0010714285308495164,1.0875654371573568e-20,-0.0,-0.0,0.0003571428533177823,-3.625217989225595e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0005357142654247582,-0.0,1.0875654371573568e-20,-0.0010714285308495164,-0.0,-0.0,-3.625217989225595e-21,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012755101779475808,-0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0,-0.0010714285308495164,-0.0014285714132711291,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0,-0.0010714285308495164,-0.0,-0.0014285714132711291,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0,0.0025714286603033543,-0.0,0.0,-0.001714285695925355,-0.001714285695925355,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011428571306169033,-0.0,0.0017857142956927419,0.0,-0.0,-0.0,-0.0053571430034935474,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,7.0,5.0,4.0,5.0,0.056057821959257126,-0.010857142508029938,-0.01415306143462658,-0.01671428605914116,-0.01415306143462658,0.0005952381179668009,0.0010714285308495164,0.0012857143301516771,0.0010714285308495164,0.0010204081190750003,0.001714285695925355,0.0014285714132711291,0.0014285714132711291,0.001714285695925355,0.0010204081190750003,-0.010857142508029938,0.00671428581699729,0.0010714285308495164,0.0012857143301516771,0.0010714285308495164,-0.0007142857066355646,-0.0003571428533177823,-0.00042857142398133874,-0.0003571428533177823,-0.0,-1.903239450401889e-19,-0.0,-7.137148003630569e-19,-1.903239450401889e-19,0.0,-0.01415306143462658,0.0010714285308495164,0.013198979198932648,0.001714285695925355,0.0014285714132711291,2.710505431213761e-20,-0.0005357142654247582,-1.903239450401889e-19,-0.0,-0.0020408162381500006,-0.0008571428479626775,-0.0007142857066355646,-3.1695304175152512e-34,-8.452081036844423e-35,-0.0,-0.01671428605914116,0.0012857143301516771,0.001714285695925355,0.021142857149243355,0.001714285695925355,2.710505431213761e-20,-0.0,-0.0008571428479626775,-0.0,-0.0,-0.0011428571306169033,-0.0,-0.004285714123398066,-0.0011428571306169033,-0.0,-0.01415306143462658,0.0010714285308495164,0.0014285714132711291,0.001714285695925355,0.013198979198932648,2.710505431213761e-20,-0.0,-1.903239450401889e-19,-0.0005357142654247582,-0.0,-8.452081036844423e-35,-0.0007142857066355646,-9.516196993515503e-19,-0.0008571428479626775,-0.0020408162381500006,0.0005952381179668009,-0.0007142857066355646,2.710505431213761e-20,2.710505431213761e-20,2.710505431213761e-20,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,2.2645550429107403e-37,0.0,-1.7206384655938882e-35,-1.6254002131905586e-36,-0.0,0.0010714285308495164,-0.0003571428533177823,-0.0005357142654247582,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012857143301516771,-0.00042857142398133874,-1.903239450401889e-19,-0.0008571428479626775,-1.903239450401889e-19,-0.0,-0.0,0.0002857142826542258,-0.0,-0.0,1.268826300267926e-19,-0.0,4.758098496757752e-19,1.268826300267926e-19,-0.0,0.0010714285308495164,-0.0003571428533177823,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-1.903239450401889e-19,-0.0008571428479626775,-0.0011428571306169033,-8.452081036844423e-35,2.2645550429107403e-37,-0.0,1.268826300267926e-19,-0.0,-0.0,0.0005714285653084517,-0.0,2.1130202018139207e-34,5.634720691229615e-35,-0.0,0.0014285714132711291,-0.0,-0.0007142857066355646,-0.0,-0.0007142857066355646,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.0014285714132711291,-7.137148003630569e-19,-3.1695304175152512e-34,-0.004285714123398066,-9.516196993515503e-19,-1.7206384655938882e-35,-0.0,4.758098496757752e-19,-0.0,-0.0,2.1130202018139207e-34,-0.0,0.0014285714132711291,6.34413150133963e-19,-0.0,0.001714285695925355,-1.903239450401889e-19,-8.452081036844423e-35,-0.0011428571306169033,-0.0008571428479626775,-1.6254002131905586e-36,-0.0,1.268826300267926e-19,-0.0,-0.0,5.634720691229615e-35,-0.0,6.34413150133963e-19,0.0005714285653084517,-0.0,0.0010204081190750003,0.0,-0.0,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,7.0,5.0,4.0,6.0,0.04833900183439255,-0.009175170212984085,-0.011964285746216774,-0.01413265336304903,-0.010382653214037418,0.0004960317746736109,0.0008928571478463709,0.0010714285308495164,0.0007653061184100807,0.0008503401186317205,0.0014285714132711291,0.0010204081190750003,0.0011904762359336019,0.0012244897661730647,0.0006377550889737904,-0.009175170212984085,0.005637755151838064,0.0008928571478463709,0.0010714285308495164,0.0007653061184100807,-0.0005952381179668009,-0.00029761905898340046,-0.0003571428533177823,-0.00025510202976875007,-4.027743407409542e-18,-2.5565921414311724e-18,-1.5880711776112089e-18,5.710008639901885e-19,-3.489941178810228e-19,8.920136847964386e-19,-0.011964285746216774,0.0008928571478463709,0.011084184050559998,0.0014285714132711291,0.0010204081190750003,-4.038653092508504e-18,-0.00044642857392318547,4.069074882583038e-19,-4.914717907914308e-19,-0.001700680237263441,-0.0007142857066355646,-0.0005102040595375001,1.5105074855478771e-18,2.0112191422754666e-18,1.6959725458205354e-18,-0.01413265336304903,0.0010714285308495164,0.0014285714132711291,0.01775510236620903,0.0012244897661730647,-1.020190180397629e-18,-6.518421041343967e-19,-0.0007142857066355646,-1.2274686913569524e-19,3.6007622877867136e-18,-0.0009523809421807528,-1.8212405516033672e-20,-0.0035714285913854837,-0.0008163265301845968,1.3405325196186166e-18,-0.010382653214037418,0.0007653061184100807,0.0010204081190750003,0.0012244897661730647,0.007660714443773031,-1.3997271152165598e-19,-1.9938128840430899e-19,1.3988203184700485e-18,-0.0003061224415432662,3.0517453512375587e-18,1.8185431350128774e-19,-0.0004081632650922984,1.275753110717445e-18,-0.0004897959297522902,-0.0009566326625645161,0.0004960317746736109,-0.0005952381179668009,-4.038653092508504e-18,-1.020190180397629e-18,-1.3997271152165598e-19,9.920635056914762e-05,1.8973538018496328e-19,4.743384504624082e-20,-0.0,5.664403070804539e-19,2.9958398325502794e-19,1.8126090188466044e-19,2.2028234918180537e-20,2.1147105004465433e-20,-6.085700244697604e-20,0.0008928571478463709,-0.00029761905898340046,-0.00044642857392318547,-6.518421041343967e-19,-1.9938128840430899e-19,1.8973538018496328e-19,0.00014880952949170023,1.2200253583136823e-19,7.015145584121474e-20,4.575095125988051e-19,1.76903663384552e-19,1.5894356895797975e-19,-5.305894972863793e-34,-2.718913592893392e-20,-5.310378040437969e-20,0.0010714285308495164,-0.0003571428533177823,4.069074882583038e-19,-0.0007142857066355646,1.3988203184700485e-18,4.743384504624082e-20,1.2200253583136823e-19,0.0002380952355451882,-9.534249822643561e-20,-2.2657611766230274e-19,2.850598807707273e-20,-2.718913592893392e-20,-4.813677796090955e-19,-7.006364544931341e-20,-2.1241512161751876e-19,0.0007653061184100807,-0.00025510202976875007,-4.914717907914308e-19,-1.2274686913569524e-19,-0.0003061224415432662,-0.0,7.015145584121474e-20,-9.534249822643561e-20,0.0001020408162730746,-1.6184008404450196e-20,8.156740778680176e-20,4.404571325722362e-20,-4.531522547116511e-20,9.825582188149884e-20,-6.876800919141688e-20,0.0008503401186317205,-4.027743407409542e-18,-0.001700680237263441,3.6007622877867136e-18,3.0517453512375587e-18,5.664403070804539e-19,4.575095125988051e-19,-2.2657611766230274e-19,-1.6184008404450196e-20,0.00042517005931586027,-8.48761366993624e-20,-7.27509743137392e-20,-3.776268713869693e-19,-4.660994730674386e-19,-3.540252113123293e-19,0.0014285714132711291,-2.5565921414311724e-18,-0.0007142857066355646,-0.0009523809421807528,1.8185431350128774e-19,2.9958398325502794e-19,1.76903663384552e-19,2.850598807707273e-20,8.156740778680176e-20,-8.48761366993624e-20,0.0004761904710903764,4.988990584362415e-20,2.1640938242359663e-34,-4.350261748629427e-20,-8.49660473545378e-20,0.0010204081190750003,-1.5880711776112089e-18,-0.0005102040595375001,-1.8212405516033672e-20,-0.0004081632650922984,1.8126090188466044e-19,1.5894356895797975e-19,-2.718913592893392e-20,4.404571325722362e-20,-7.27509743137392e-20,4.988990584362415e-20,0.0002040816325461492,1.8055593228630336e-34,1.1485368301364043e-35,2.7554585777588267e-21,0.0011904762359336019,5.710008639901885e-19,1.5105074855478771e-18,-0.0035714285913854837,1.275753110717445e-18,2.2028234918180537e-20,-5.305894972863793e-34,-4.813677796090955e-19,-4.531522547116511e-20,-3.776268713869693e-19,2.1640938242359663e-34,1.8055593228630336e-34,0.0011904762359336019,1.539854483663369e-19,-2.8322015354022696e-19,0.0012244897661730647,-3.489941178810228e-19,2.0112191422754666e-18,-0.0008163265301845968,-0.0004897959297522902,2.1147105004465433e-20,-2.718913592893392e-20,-7.006364544931341e-20,9.825582188149884e-20,-4.660994730674386e-19,-4.350261748629427e-20,1.1485368301364043e-35,1.539854483663369e-19,0.00032653060043230653,8.120694444783617e-20,0.0006377550889737904,8.920136847964386e-19,1.6959725458205354e-18,1.3405325196186166e-18,-0.0009566326625645161,-6.085700244697604e-20,-5.310378040437969e-20,-2.1241512161751876e-19,-6.876800919141688e-20,-3.540252113123293e-19,-8.49660473545378e-20,2.7554585777588267e-21,-2.8322015354022696e-19,8.120694444783617e-20,0.00019132652960252017,7.0,5.0,4.0,7.0,0.04250789433717728,-0.007946428842842579,-0.010364431887865067,-0.01224489789456129,-0.007946428842842579,0.00042517005931586027,0.0007653061184100807,0.000918367353733629,0.0005739795742556453,0.0007288630004040897,0.0012244897661730647,0.0007653061184100807,0.0010204081190750003,0.000918367353733629,0.00042517005931586027,-0.007946428842842579,0.004859693814069033,0.0007653061184100807,0.000918367353733629,0.0005739795742556453,-0.0005102040595375001,-0.00025510202976875007,-0.0003061224415432662,-0.00019132652960252017,-3.1228913625183977e-18,-1.9279814048003274e-18,-1.2425364324494594e-18,1.799790743731147e-18,-1.743869275967682e-19,3.7010588676369573e-19,-0.010364431887865067,0.0007653061184100807,0.00955539382994175,0.0012244897661730647,0.0007653061184100807,-3.347474207548995e-18,-0.00038265305920504034,3.5367218613652816e-19,1.8349708127312098e-19,-0.0014577260008081794,-0.0006122448830865324,-0.00038265305920504034,1.2947207757535922e-18,1.1855773958545173e-18,5.4181260700412435e-19,-0.01224489789456129,0.000918367353733629,0.0012244897661730647,0.015306122601032257,0.000918367353733629,-8.159123963573123e-19,-6.424233603907734e-19,-0.0006122448830865324,5.355077329776686e-19,3.0517095756760657e-18,-0.0008163265301845968,-3.3124680274233274e-20,-0.0030612244736403227,-0.0006122448830865324,6.120323310952689e-19,-0.007946428842842579,0.0005739795742556453,0.0007653061184100807,0.000918367353733629,0.004859693814069033,-5.386604284848379e-19,-4.015146067065819e-19,4.625487485892665e-19,-0.00019132652960252017,2.0003764588061216e-18,-5.345347100833648e-20,-0.00025510202976875007,1.2272218037934995e-18,-0.0003061224415432662,-0.0005102040595375001,0.00042517005931586027,-0.0005102040595375001,-3.347474207548995e-18,-8.159123963573123e-19,-5.386604284848379e-19,8.50340147735551e-05,9.486769009248164e-20,2.0328790734103208e-20,1.3552527156068805e-20,4.855202779829e-19,2.567862787469937e-19,1.6049141775452253e-19,1.8881344215583318e-20,4.531522547116511e-20,1.3861104298642298e-20,0.0007653061184100807,-0.00025510202976875007,-0.00038265305920504034,-6.424233603907734e-19,-4.015146067065819e-19,9.486769009248164e-20,0.00012755101488437504,1.1305330755824824e-19,7.065831722390515e-20,3.9215099972066405e-19,1.5163171885801433e-19,9.476982428625896e-20,-1.0337847415753183e-33,-3.01742879535854e-34,-2.8136632781282274e-34,0.000918367353733629,-0.0003061224415432662,3.5367218613652816e-19,-0.0006122448830865324,4.625487485892665e-19,2.0328790734103208e-20,1.1305330755824824e-19,0.0002040816325461492,2.975278836708596e-20,-1.9420811377809942e-19,-3.4630223306087943e-20,2.1900632954282635e-34,-9.260810149268585e-19,-7.332245271943678e-20,-9.063045094233022e-20,0.0005739795742556453,-0.00019132652960252017,1.8349708127312098e-19,5.355077329776686e-19,-0.00019132652960252017,1.3552527156068805e-20,7.065831722390515e-20,2.975278836708596e-20,6.377550744218752e-05,-1.21380069495725e-19,1.9841417103369017e-34,1.6940658945086007e-21,-2.1241512161751876e-19,-2.982666916671887e-20,-1.2172231547416882e-19,0.0007288630004040897,-3.1228913625183977e-18,-0.0014577260008081794,3.0517095756760657e-18,2.0003764588061216e-18,4.855202779829e-19,3.9215099972066405e-19,-1.9420811377809942e-19,-1.21380069495725e-19,0.00036443150020204484,-1.1784600495207755e-19,-7.365375794180987e-20,-3.2368019393839806e-19,-2.9131215128010353e-19,-1.3486674532021635e-19,0.0012244897661730647,-1.9279814048003274e-18,-0.0006122448830865324,-0.0008163265301845968,-5.345347100833648e-20,2.567862787469937e-19,1.5163171885801433e-19,-3.4630223306087943e-20,1.9841417103369017e-34,-1.1784600495207755e-19,0.0004081632650922984,2.672673550416824e-20,3.7636521243034615e-34,2.9305648137850615e-34,1.1891820871415255e-34,0.0007653061184100807,-1.2425364324494594e-18,-0.00038265305920504034,-3.3124680274233274e-20,-0.00025510202976875007,1.6049141775452253e-19,9.476982428625896e-20,2.1900632954282635e-34,1.6940658945086007e-21,-7.365375794180987e-20,2.672673550416824e-20,0.00012755101488437504,1.4444474582904269e-34,-6.776263578034403e-21,-7.818765705799002e-22,0.0010204081190750003,1.799790743731147e-18,1.2947207757535922e-18,-0.0030612244736403227,1.2272218037934995e-18,1.8881344215583318e-20,-1.0337847415753183e-33,-9.260810149268585e-19,-2.1241512161751876e-19,-3.2368019393839806e-19,3.7636521243034615e-34,1.4444474582904269e-34,0.0010204081190750003,-3.9331766042648767e-19,-1.8881344215583318e-20,0.000918367353733629,-1.743869275967682e-19,1.1855773958545173e-18,-0.0006122448830865324,-0.0003061224415432662,4.531522547116511e-20,-3.01742879535854e-34,-7.332245271943678e-20,-2.982666916671887e-20,-2.9131215128010353e-19,2.9305648137850615e-34,-6.776263578034403e-21,-3.9331766042648767e-19,0.0002040816325461492,-1.1967411287991095e-19,0.00042517005931586027,3.7010588676369573e-19,5.4181260700412435e-19,6.120323310952689e-19,-0.0005102040595375001,1.3861104298642298e-20,-2.8136632781282274e-34,-9.063045094233022e-20,-1.2172231547416882e-19,-1.3486674532021635e-19,1.1891820871415255e-34,-7.818765705799002e-22,-1.8881344215583318e-20,-1.1967411287991095e-19,8.50340147735551e-05,7.0,5.0,4.0,8.0,0.037942178547382355,-0.007008928339928389,-0.009143282659351826,-0.010803570970892906,-0.006279761902987957,0.00037202381645329297,0.0006696428754366934,0.0008035714272409678,0.00044642857392318547,0.0006377550889737904,0.0010714285308495164,0.0005952381179668009,0.0008928571478463709,0.0007142857066355646,0.00029761905898340046,-0.007008928339928389,0.0042708334513008595,0.0006696428754366934,0.0008035714272409678,0.00044642857392318547,-0.00044642857392318547,-0.00022321428696159273,-0.0002678571327123791,-0.00014880952949170023,-0.0,-0.0,-0.0,-0.0,-2.929094693546861e-20,-6.195971175169165e-20,-0.009143282659351826,0.0006696428754366934,0.00839817151427269,0.0010714285308495164,0.0005952381179668009,-0.0,-0.0003348214377183467,-9.423241538204091e-21,5.368495071729348e-22,-0.0012755101779475808,-0.0005357142654247582,-0.00029761905898340046,0.0,-4.72742379621093e-20,-2.295230562330157e-22,-0.010803570970892906,0.0008035714272409678,0.0010714285308495164,0.013452380895614624,0.0007142857066355646,-2.5095106801726405e-21,-9.978186025173407e-21,-0.0005357142654247582,-3.9975616289596194e-20,-0.0,-0.0007142857066355646,-4.6798570335800094e-20,-0.0026785715017467737,-0.0004761904710903764,-6.982762109374877e-20,-0.006279761902987957,0.00044642857392318547,0.0005952381179668009,0.0007142857066355646,0.0032823130022734404,-1.3552527156068805e-20,-0.0,-6.776263578034403e-21,-0.00012755101488437504,-0.0,-0.0,-0.0001700680295471102,-0.0,-0.0002040816325461492,-0.00029761905898340046,0.00037202381645329297,-0.00044642857392318547,-0.0,-2.5095106801726405e-21,-1.3552527156068805e-20,7.440476474585012e-05,-0.0,6.776263578034403e-21,-3.3881317890172014e-21,-0.0,0.0,3.7380921834035794e-23,-0.0,-7.794853501604453e-22,1.3491657083521916e-21,0.0006696428754366934,-0.00022321428696159273,-0.0003348214377183467,-9.978186025173407e-21,-0.0,-0.0,0.00011160714348079637,3.3881317890172014e-21,-1.9137664586465878e-22,-0.0,-0.0,1.8690460917017897e-23,-0.0,-5.320261591629239e-23,8.143151747130868e-23,0.0008035714272409678,-0.0002678571327123791,-9.423241538204091e-21,-0.0005357142654247582,-6.776263578034403e-21,6.776263578034403e-21,3.3881317890172014e-21,0.00017857142665889114,1.4365241397528175e-21,-0.0,-0.0,-2.117582368135751e-22,-0.0,-8.013593397242949e-22,5.404853860177602e-22,0.00044642857392318547,-0.00014880952949170023,5.368495071729348e-22,-3.9975616289596194e-20,-0.00012755101488437504,-3.3881317890172014e-21,-1.9137664586465878e-22,1.4365241397528175e-21,4.251700738677755e-05,-0.0,-0.0,1.065155335197964e-23,-0.0,1.0190298883362872e-20,1.4919013372135068e-20,0.0006377550889737904,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0005357142654247582,-0.0007142857066355646,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.0,-0.00029761905898340046,-4.6798570335800094e-20,-0.0001700680295471102,3.7380921834035794e-23,1.8690460917017897e-23,-2.117582368135751e-22,1.065155335197964e-23,-0.0,-0.0,8.50340147735551e-05,-0.0,1.3552527156068805e-20,-4.2204267477464015e-24,0.0008928571478463709,-0.0,0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,0.0007142857066355646,-2.929094693546861e-20,-4.72742379621093e-20,-0.0004761904710903764,-0.0002040816325461492,-7.794853501604453e-22,-5.320261591629239e-23,-8.013593397242949e-22,1.0190298883362872e-20,-0.0,-0.0,1.3552527156068805e-20,-0.0,0.0001360544265480712,1.9487475349715754e-20,0.00029761905898340046,-6.195971175169165e-20,-2.295230562330157e-22,-6.982762109374877e-20,-0.00029761905898340046,1.3491657083521916e-21,8.143151747130868e-23,5.404853860177602e-22,1.4919013372135068e-20,-0.0,-0.0,-4.2204267477464015e-24,-0.0,1.9487475349715754e-20,4.251700738677755e-05,7.0,5.0,5.0,3.0,0.06964852660894394,-0.014047618955373764,-0.018299318850040436,-0.018299318850040436,-0.026428570970892906,0.0007936508045531809,0.0014285714132711291,0.0014285714132711291,0.002142857061699033,0.0013605442363768816,0.0019047618843615055,0.0028571428265422583,0.0013605442363768816,0.0028571428265422583,0.0028571428265422583,-0.014047618955373764,0.008809523656964302,0.0014285714132711291,0.0014285714132711291,0.002142857061699033,-0.0009523809421807528,-0.0004761904710903764,-0.0004761904710903764,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.018299318850040436,0.0014285714132711291,0.017312925308942795,0.0019047618843615055,0.0028571428265422583,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.002721088472753763,-0.0009523809421807528,-0.0014285714132711291,0.0,0.0,-0.0,-0.018299318850040436,0.0014285714132711291,0.0019047618843615055,0.017312925308942795,0.0028571428265422583,-0.0,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0009523809421807528,-0.0,-0.002721088472753763,-0.0014285714132711291,-0.0,-0.026428570970892906,0.002142857061699033,0.0028571428265422583,0.0028571428265422583,0.054999999701976776,-0.0,-0.0,-0.0,-0.002142857061699033,-0.0,-0.0,-0.0028571428265422583,-0.0,-0.0028571428265422583,-0.017142856493592262,0.0007936508045531809,-0.0009523809421807528,-0.0,-0.0,-0.0,0.00015873015217948705,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0004761904710903764,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0004761904710903764,-0.0,-0.0007142857066355646,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002142857061699033,-0.0007142857066355646,-0.0,-0.0,-0.002142857061699033,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019047618843615055,-0.0,-0.0009523809421807528,-0.0009523809421807528,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,0.0028571428265422583,-0.0,-0.0014285714132711291,-0.0,-0.0028571428265422583,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0,0.0,-0.002721088472753763,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0,0.0028571428265422583,-0.0,0.0,-0.0014285714132711291,-0.0028571428265422583,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,0.0028571428265422583,0.0,-0.0,-0.0,-0.017142856493592262,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008571428246796131,7.0,5.0,5.0,4.0,0.056057821959257126,-0.010857142508029938,-0.01415306143462658,-0.01415306143462658,-0.01671428605914116,0.0005952381179668009,0.0010714285308495164,0.0010714285308495164,0.0012857143301516771,0.0010204081190750003,0.0014285714132711291,0.001714285695925355,0.0010204081190750003,0.001714285695925355,0.0014285714132711291,-0.010857142508029938,0.00671428581699729,0.0010714285308495164,0.0010714285308495164,0.0012857143301516771,-0.0007142857066355646,-0.0003571428533177823,-0.0003571428533177823,-0.00042857142398133874,-0.0,-0.0,-1.903239450401889e-19,-0.0,-1.903239450401889e-19,-7.137148003630569e-19,-0.01415306143462658,0.0010714285308495164,0.013198979198932648,0.0014285714132711291,0.001714285695925355,2.710505431213761e-20,-0.0005357142654247582,-0.0,-1.903239450401889e-19,-0.0020408162381500006,-0.0007142857066355646,-0.0008571428479626775,0.0,-8.452081036844423e-35,-3.1695304175152512e-34,-0.01415306143462658,0.0010714285308495164,0.0014285714132711291,0.013198979198932648,0.001714285695925355,1.6815856454579935e-20,-0.0,-0.0005357142654247582,-1.903239450401889e-19,-0.0,-0.0007142857066355646,-8.452081036844423e-35,-0.0020408162381500006,-0.0008571428479626775,-3.1695304175152512e-34,-0.01671428605914116,0.0012857143301516771,0.001714285695925355,0.001714285695925355,0.021142857149243355,2.710505431213761e-20,-0.0,-0.0,-0.0008571428479626775,-0.0,-0.0,-0.0011428571306169033,-0.0,-0.0011428571306169033,-0.004285714123398066,0.0005952381179668009,-0.0007142857066355646,2.710505431213761e-20,1.6815856454579935e-20,2.710505431213761e-20,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,0.0,2.2645550429107403e-37,-0.0,2.2645550429107403e-37,5.0158833260589975e-36,0.0010714285308495164,-0.0003571428533177823,-0.0005357142654247582,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0003571428533177823,-0.0,-0.0005357142654247582,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012857143301516771,-0.00042857142398133874,-1.903239450401889e-19,-1.903239450401889e-19,-0.0008571428479626775,-0.0,-0.0,-0.0,0.0002857142826542258,-0.0,-0.0,1.268826300267926e-19,-0.0,1.268826300267926e-19,4.758098496757752e-19,0.0010204081190750003,-0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014285714132711291,-0.0,-0.0007142857066355646,-0.0007142857066355646,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.001714285695925355,-1.903239450401889e-19,-0.0008571428479626775,-8.452081036844423e-35,-0.0011428571306169033,2.2645550429107403e-37,-0.0,-0.0,1.268826300267926e-19,-0.0,-0.0,0.0005714285653084517,-0.0,5.634720691229615e-35,2.1130202018139207e-34,0.0010204081190750003,-0.0,0.0,-0.0020408162381500006,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,0.001714285695925355,-1.903239450401889e-19,-8.452081036844423e-35,-0.0008571428479626775,-0.0011428571306169033,2.2645550429107403e-37,-0.0,-0.0,1.268826300267926e-19,-0.0,-0.0,5.634720691229615e-35,-0.0,0.0005714285653084517,2.1130202018139207e-34,0.0014285714132711291,-7.137148003630569e-19,-3.1695304175152512e-34,-3.1695304175152512e-34,-0.004285714123398066,5.0158833260589975e-36,-0.0,-0.0,4.758098496757752e-19,-0.0,-0.0,2.1130202018139207e-34,-0.0,2.1130202018139207e-34,0.0014285714132711291,7.0,5.0,5.0,5.0,0.0469931960105896,-0.008857143111526966,-0.011551020666956902,-0.011551020666956902,-0.011551020666956902,0.0004761904710903764,0.0008571428479626775,0.0008571428479626775,0.0008571428479626775,0.0008163265301845968,0.0011428571306169033,0.0011428571306169033,0.0008163265301845968,0.0011428571306169033,0.0008163265301845968,-0.008857143111526966,0.005428571254014969,0.0008571428479626775,0.0008571428479626775,0.0008571428479626775,-0.0005714285653084517,-0.0002857142826542258,-0.0002857142826542258,-0.0002857142826542258,-5.681832076503761e-18,-4.5426658202656395e-18,-4.5426658202656395e-18,-5.681832076503761e-18,-4.5426658202656395e-18,-5.681832076503761e-18,-0.011551020666956902,0.0008571428479626775,0.010673468932509422,0.0011428571306169033,0.0011428571306169033,-4.689174395999807e-18,-0.00042857142398133874,-3.354944062070655e-18,-3.354944062070655e-18,-0.0016326530603691936,-0.0005714285653084517,-0.0005714285653084517,-4.194895102510583e-18,-2.211382995238039e-18,-4.194895102510583e-18,-0.011551020666956902,0.0008571428479626775,0.0011428571306169033,0.010673468932509422,0.0011428571306169033,-4.686624611761612e-18,-3.354944062070655e-18,-0.00042857142398133874,-3.354944062070655e-18,-5.768446985624801e-18,-0.0005714285653084517,-7.612957801607556e-19,-0.0016326530603691936,-0.0005714285653084517,-4.194895102510583e-18,-0.011551020666956902,0.0008571428479626775,0.0011428571306169033,0.0011428571306169033,0.010673468932509422,-4.716279450311944e-18,-3.354944062070655e-18,-3.354944062070655e-18,-0.00042857142398133874,-5.768446985624801e-18,-7.612957801607556e-19,-0.0005714285653084517,-5.043403326387371e-18,-0.0005714285653084517,-0.0016326530603691936,0.0004761904710903764,-0.0005714285653084517,-4.689174395999807e-18,-4.686624611761612e-18,-4.716279450311944e-18,9.523809421807528e-05,1.8295911660692887e-19,1.8295911660692887e-19,1.8295911660692887e-19,5.437826927292842e-19,4.2294210008930866e-19,4.2294210008930866e-19,5.437826927292842e-19,4.2294210008930866e-19,5.437826927292842e-19,0.0008571428479626775,-0.0002857142826542258,-0.00042857142398133874,-3.354944062070655e-18,-3.354944062070655e-18,1.8295911660692887e-19,0.0001428571413271129,1.9504788304559974e-19,1.9504788304559974e-19,4.392091238230468e-19,3.426500303236532e-19,3.426500303236532e-19,3.6252180376932087e-19,2.537652600535852e-19,3.6252180376932087e-19,0.0008571428479626775,-0.0002857142826542258,-3.354944062070655e-18,-0.00042857142398133874,-3.354944062070655e-18,1.8295911660692887e-19,1.9504788304559974e-19,0.0001428571413271129,1.9504788304559974e-19,3.6252180376932087e-19,3.426500303236532e-19,2.537652600535852e-19,4.392091238230468e-19,3.426500303236532e-19,3.6252180376932087e-19,0.0008571428479626775,-0.0002857142826542258,-3.354944062070655e-18,-3.354944062070655e-18,-0.00042857142398133874,1.8295911660692887e-19,1.9504788304559974e-19,1.9504788304559974e-19,0.0001428571413271129,3.6252180376932087e-19,2.537652600535852e-19,3.426500303236532e-19,3.6252180376932087e-19,3.426500303236532e-19,4.392091238230468e-19,0.0008163265301845968,-5.681832076503761e-18,-0.0016326530603691936,-5.768446985624801e-18,-5.768446985624801e-18,5.437826927292842e-19,4.392091238230468e-19,3.6252180376932087e-19,3.6252180376932087e-19,0.0004081632650922984,4.242540860890002e-19,4.242540860890002e-19,7.768324551123977e-19,3.6252180376932087e-19,7.768324551123977e-19,0.0011428571306169033,-4.5426658202656395e-18,-0.0005714285653084517,-0.0005714285653084517,-7.612957801607556e-19,4.2294210008930866e-19,3.426500303236532e-19,3.426500303236532e-19,2.537652600535852e-19,4.242540860890002e-19,0.0002857142826542258,4.3916505680919124e-33,5.780009313432854e-33,4.3274847395843394e-33,5.781830962334644e-33,0.0011428571306169033,-4.5426658202656395e-18,-0.0005714285653084517,-7.612957801607556e-19,-0.0005714285653084517,4.2294210008930866e-19,3.426500303236532e-19,2.537652600535852e-19,3.426500303236532e-19,4.242540860890002e-19,4.3916505680919124e-33,0.0002857142826542258,5.781830962334644e-33,4.3274847395843394e-33,5.780009313432854e-33,0.0008163265301845968,-5.681832076503761e-18,-4.194895102510583e-18,-0.0016326530603691936,-5.043403326387371e-18,5.437826927292842e-19,3.6252180376932087e-19,4.392091238230468e-19,3.6252180376932087e-19,7.768324551123977e-19,5.780009313432854e-33,5.781830962334644e-33,0.0004081632650922984,4.242540860890002e-19,7.768324551123977e-19,0.0011428571306169033,-4.5426658202656395e-18,-2.211382995238039e-18,-0.0005714285653084517,-0.0005714285653084517,4.2294210008930866e-19,2.537652600535852e-19,3.426500303236532e-19,3.426500303236532e-19,3.6252180376932087e-19,4.3274847395843394e-33,4.3274847395843394e-33,4.242540860890002e-19,0.0002857142826542258,6.469975273539596e-33,0.0008163265301845968,-5.681832076503761e-18,-4.194895102510583e-18,-4.194895102510583e-18,-0.0016326530603691936,5.437826927292842e-19,3.6252180376932087e-19,3.6252180376932087e-19,4.392091238230468e-19,7.768324551123977e-19,5.781830962334644e-33,5.780009313432854e-33,7.768324551123977e-19,6.469975273539596e-33,0.0004081632650922984,7.0,5.0,5.0,6.0,0.04048752784729004,-0.007482993416488171,-0.009761904366314411,-0.009761904366314411,-0.008469387888908386,0.00039682540227659047,0.0007142857066355646,0.0007142857066355646,0.0006122448830865324,0.0006802721181884408,0.0009523809421807528,0.0008163265301845968,0.0006802721181884408,0.0008163265301845968,0.0005102040595375001,-0.007482993416488171,0.004557823296636343,0.0007142857066355646,0.0007142857066355646,0.0006122448830865324,-0.0004761904710903764,-0.0002380952355451882,-0.0002380952355451882,-0.0002040816325461492,-0.0,-0.0,8.470329472543003e-21,-0.0,-0.0,-1.5219953957444077e-19,-0.009761904366314411,0.0007142857066355646,0.008962584659457207,0.0009523809421807528,0.0008163265301845968,-0.0,-0.0003571428533177823,-0.0,8.470329472543003e-21,-0.0013605442363768816,-0.0004761904710903764,-0.0004081632650922984,0.0,0.0,1.225804442738587e-20,-0.009761904366314411,0.0007142857066355646,0.0009523809421807528,0.008962584659457207,0.0008163265301845968,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0004761904710903764,-0.0,-0.0013605442363768816,-0.0004081632650922984,-0.0,-0.008469387888908386,0.0006122448830865324,0.0008163265301845968,0.0008163265301845968,0.006193877663463354,-1.3552527156068805e-20,-0.0,-0.0,-0.0002448979648761451,-0.0,-0.0,-0.00032653060043230653,-0.0,-0.00032653060043230653,-0.0007653061184100807,0.00039682540227659047,-0.0004761904710903764,-0.0,-0.0,-1.3552527156068805e-20,7.936507608974352e-05,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-5.212510638822994e-22,0.0007142857066355646,-0.0002380952355451882,-0.0003571428533177823,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0002380952355451882,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0002040816325461492,8.470329472543003e-21,-0.0,-0.0002448979648761451,-0.0,-0.0,-0.0,8.163265010807663e-05,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,6.223507242279231e-20,0.0006802721181884408,-0.0,-0.0013605442363768816,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009523809421807528,-0.0,-0.0004761904710903764,-0.0004761904710903764,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,8.470329472543003e-21,-0.0004081632650922984,-0.0,-0.00032653060043230653,-0.0,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,0.00016326530021615326,-0.0,-0.0,-4.903217690174991e-21,0.0006802721181884408,-0.0,0.0,-0.0013605442363768816,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,0.0008163265301845968,-0.0,0.0,-0.0004081632650922984,-0.00032653060043230653,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016326530021615326,0.0,0.0005102040595375001,-1.5219953957444077e-19,1.225804442738587e-20,-0.0,-0.0007653061184100807,-5.212510638822994e-22,-0.0,-0.0,6.223507242279231e-20,-0.0,-0.0,-4.903217690174991e-21,-0.0,0.0,0.0001530612207716331,7.0,5.0,5.0,7.0,0.03558066114783287,-0.006479592062532902,-0.008454810827970505,-0.008454810827970505,-0.006479592062532902,0.0003401360590942204,0.0006122448830865324,0.0006122448830865324,0.0004591836768668145,0.000583090353757143,0.0008163265301845968,0.0006122448830865324,0.000583090353757143,0.0006122448830865324,0.0003401360590942204,-0.006479592062532902,0.0039285714738070965,0.0006122448830865324,0.0006122448830865324,0.0004591836768668145,-0.0004081632650922984,-0.0002040816325461492,-0.0002040816325461492,-0.0001530612207716331,-0.0,-0.0,-0.0,-0.0,4.582309578802063e-21,1.2142585685068666e-20,-0.008454810827970505,0.0006122448830865324,0.0077259475365281105,0.0008163265301845968,0.0006122448830865324,-0.0,-0.0003061224415432662,-0.0,-0.0,-0.001166180707514286,-0.0004081632650922984,-0.0003061224415432662,0.0,5.082197683525802e-21,-0.0,-0.008454810827970505,0.0006122448830865324,0.0008163265301845968,0.0077259475365281105,0.0006122448830865324,-2.114912004551818e-21,-0.0,-0.0003061224415432662,4.582309578802063e-21,-0.0,-0.0004081632650922984,5.082197683525802e-21,-0.001166180707514286,-0.0003061224415432662,-3.678665246685814e-21,-0.006479592062532902,0.0004591836768668145,0.0006122448830865324,0.0006122448830865324,0.0039285714738070965,-0.0,-0.0,-0.0,-0.0001530612207716331,-0.0,-0.0,-0.0002040816325461492,-0.0,-0.0002040816325461492,-0.0004081632650922984,0.0003401360590942204,-0.0004081632650922984,-0.0,-2.114912004551818e-21,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,2.9646767142273e-39,1.0425021277645988e-21,0.0006122448830865324,-0.0002040816325461492,-0.0003061224415432662,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0002040816325461492,-0.0,-0.0003061224415432662,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004591836768668145,-0.0001530612207716331,-0.0,4.582309578802063e-21,-0.0001530612207716331,-0.0,-0.0,-0.0,5.10204081365373e-05,-0.0,-0.0,-0.0,-0.0,-1.5274364589512237e-21,-6.306283222333284e-21,0.000583090353757143,-0.0,-0.001166180707514286,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,-0.0,-0.0004081632650922984,-0.0004081632650922984,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0,-0.0003061224415432662,5.082197683525802e-21,-0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-1.6940658945086007e-21,-0.0,0.000583090353757143,-0.0,0.0,-0.001166180707514286,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,0.0006122448830865324,4.582309578802063e-21,5.082197683525802e-21,-0.0003061224415432662,-0.0002040816325461492,2.9646767142273e-39,-0.0,-0.0,-1.5274364589512237e-21,-0.0,-0.0,-1.6940658945086007e-21,-0.0,0.0001020408162730746,1.2262217488952714e-21,0.0003401360590942204,1.2142585685068666e-20,-0.0,-3.678665246685814e-21,-0.0004081632650922984,1.0425021277645988e-21,-0.0,-0.0,-6.306283222333284e-21,-0.0,-0.0,-0.0,-0.0,1.2262217488952714e-21,6.80272132740356e-05,7.0,5.0,5.0,8.0,0.03174319863319397,-0.0057142856530845165,-0.007457483094185591,-0.007457483094185591,-0.0051190475933253765,0.00029761905898340046,0.0005357142654247582,0.0005357142654247582,0.0003571428533177823,0.0005102040595375001,0.0007142857066355646,0.0004761904710903764,0.0005102040595375001,0.0004761904710903764,0.0002380952355451882,-0.0057142856530845165,0.0034523808863013983,0.0005357142654247582,0.0005357142654247582,0.0003571428533177823,-0.0003571428533177823,-0.00017857142665889114,-0.00017857142665889114,-0.0001190476177725941,-0.0,-0.0,6.776263578034403e-21,-0.0,-0.0,3.886762401495275e-20,-0.007457483094185591,0.0005357142654247582,0.006789966020733118,0.0007142857066355646,0.0004761904710903764,-1.3552527156068805e-20,-0.0002678571327123791,-4.574738937492642e-21,1.584681860789029e-21,-0.0010204081190750003,-0.0003571428533177823,-0.0002380952355451882,0.0,0.0,1.1095923521408489e-20,-0.007457483094185591,0.0005357142654247582,0.0007142857066355646,0.006789966020733118,0.0004761904710903764,2.7240226852559356e-21,-5.082197683525802e-21,-0.0002678571327123791,-2.154786310603422e-21,-0.0,-0.0003571428533177823,4.349644735708154e-22,-0.0010204081190750003,-0.0002380952355451882,7.388869581502697e-22,-0.0051190475933253765,0.0003571428533177823,0.0004761904710903764,0.0004761904710903764,0.002653061179444194,-1.3552527156068805e-20,-0.0,-0.0,-0.0001020408162730746,-0.0,-0.0,-0.0001360544265480712,-0.0,-0.0001360544265480712,-0.0002380952355451882,0.00029761905898340046,-0.0003571428533177823,-1.3552527156068805e-20,2.7240226852559356e-21,-1.3552527156068805e-20,5.952380888629705e-05,6.776263578034403e-21,3.3881317890172014e-21,-0.0,-0.0,0.0,-3.637284658067345e-22,-0.0,-0.0,1.3154542613712127e-21,0.0005357142654247582,-0.00017857142665889114,-0.0002678571327123791,-5.082197683525802e-21,-0.0,6.776263578034403e-21,8.928571332944557e-05,1.6940658945086007e-21,7.325176068490939e-22,-0.0,-0.0,-1.6990877451659142e-22,-0.0,-0.0,-2.453612627517404e-22,0.0005357142654247582,-0.00017857142665889114,-4.574738937492642e-21,-0.0002678571327123791,-0.0,3.3881317890172014e-21,1.6940658945086007e-21,8.928571332944557e-05,7.1826206987640875e-22,-0.0,-0.0,-1.449881662714548e-22,-0.0,-0.0,-2.4629565271675657e-22,0.0003571428533177823,-0.0001190476177725941,1.584681860789029e-21,-2.154786310603422e-21,-0.0001020408162730746,-0.0,7.325176068490939e-22,7.1826206987640875e-22,3.40136066370178e-05,-0.0,-0.0,-1.0806384659569179e-21,-0.0,-0.0,-1.3267075527729852e-20,0.0005102040595375001,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0003571428533177823,-0.0003571428533177823,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,6.776263578034403e-21,-0.0002380952355451882,4.349644735708154e-22,-0.0001360544265480712,-3.637284658067345e-22,-1.6990877451659142e-22,-1.449881662714548e-22,-1.0806384659569179e-21,-0.0,-0.0,6.80272132740356e-05,-0.0,-0.0,-2.959954346508771e-21,0.0005102040595375001,-0.0,0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,0.0004761904710903764,-0.0,0.0,-0.0002380952355451882,-0.0001360544265480712,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,6.80272132740356e-05,0.0,0.0002380952355451882,3.886762401495275e-20,1.1095923521408489e-20,7.388869581502697e-22,-0.0002380952355451882,1.3154542613712127e-21,-2.453612627517404e-22,-2.4629565271675657e-22,-1.3267075527729852e-20,-0.0,-0.0,-2.959954346508771e-21,-0.0,0.0,3.40136066370178e-05,7.0,5.0,6.0,3.0,0.06013794243335724,-0.011876417323946953,-0.015476190485060215,-0.01343537401407957,-0.022363945841789246,0.0006613756413571537,0.0011904762359336019,0.0010204081190750003,0.0017857142956927419,0.0011337868636474013,0.0013605442363768816,0.0023809524718672037,0.0008503401186317205,0.0020408162381500006,0.0023809524718672037,-0.011876417323946953,0.007397959008812904,0.0011904762359336019,0.0010204081190750003,0.0017857142956927419,-0.0007936508045531809,-0.00039682540227659047,-0.0003401360590942204,-0.0005952381179668009,-0.0,-0.0,-2.64338825480515e-19,-8.131516293641283e-20,-2.096354716419138e-19,-1.5860329011843016e-18,-0.015476190485060215,0.0011904762359336019,0.01454081665724516,0.0013605442363768816,0.0023809524718672037,-0.0,-0.0005952381179668009,-5.11085791014328e-37,-2.64338825480515e-19,-0.0022675737272948027,-0.0006802721181884408,-0.0011904762359336019,0.0,-1.0062000906354684e-34,-5.839694763589367e-34,-0.01343537401407957,0.0010204081190750003,0.0013605442363768816,0.010051020421087742,0.0020408162381500006,8.283978766790591e-21,-0.0,-0.0004081632650922984,-2.300287178403108e-19,-0.0,-0.0005442177061922848,-1.0215327154852662e-34,-0.0012755101779475808,-0.0008163265301845968,4.1573100834277045e-18,-0.022363945841789246,0.0017857142956927419,0.0023809524718672037,0.0020408162381500006,0.046173468232154846,-0.0,-0.0,1.3488070076187891e-20,-0.0017857142956927419,-0.0,9.62964972193618e-35,-0.0023809524718672037,3.3068166260807885e-18,-0.0020408162381500006,-0.014285714365541935,0.0006613756413571537,-0.0007936508045531809,-0.0,8.283978766790591e-21,-0.0,0.00013227513409219682,-0.0,-6.776263578034403e-21,-0.0,-0.0,-0.0,-2.7204642472663823e-36,-3.1275062823196006e-21,3.157602823274251e-36,8.677266982663439e-36,0.0011904762359336019,-0.00039682540227659047,-0.0005952381179668009,-0.0,-0.0,-0.0,0.00019841270113829523,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010204081190750003,-0.0003401360590942204,-5.11085791014328e-37,-0.0004081632650922984,1.3488070076187891e-20,-6.776263578034403e-21,-0.0,0.0001360544265480712,1.1508628889832413e-21,-0.0,0.0,5.11085791014328e-37,4.0657581468206416e-20,-6.776263578034403e-21,-1.925929944387236e-34,0.0017857142956927419,-0.0005952381179668009,-2.64338825480515e-19,-2.300287178403108e-19,-0.0017857142956927419,-0.0,-0.0,1.1508628889832413e-21,0.0005952381179668009,-0.0,0.0,2.64338825480515e-19,-3.6195822050519877e-34,2.2657611766230274e-19,1.5860329011843016e-18,0.0011337868636474013,-0.0,-0.0022675737272948027,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013605442363768816,-0.0,-0.0006802721181884408,-0.0005442177061922848,9.62964972193618e-35,-0.0,-0.0,0.0,0.0,-0.0,0.0002721088530961424,0.0,-0.0,-0.0,-4.81482486096809e-35,0.0023809524718672037,-2.64338825480515e-19,-0.0011904762359336019,-1.0215327154852662e-34,-0.0023809524718672037,-2.7204642472663823e-36,-0.0,5.11085791014328e-37,2.64338825480515e-19,-0.0,0.0,0.0011904762359336019,-0.0,1.0062000906354684e-34,7.0434009788313895e-34,0.0008503401186317205,-8.131516293641283e-20,0.0,-0.0012755101779475808,3.3068166260807885e-18,-3.1275062823196006e-21,-0.0,4.0657581468206416e-20,-3.6195822050519877e-34,-0.0,-0.0,-0.0,0.00025510202976875007,-4.0282972048296464e-19,-1.1328806141609079e-18,0.0020408162381500006,-2.096354716419138e-19,-1.0062000906354684e-34,-0.0008163265301845968,-0.0020408162381500006,3.157602823274251e-36,-0.0,-6.776263578034403e-21,2.2657611766230274e-19,-0.0,-0.0,1.0062000906354684e-34,-4.0282972048296464e-19,0.0008163265301845968,1.5070930907744114e-18,0.0023809524718672037,-1.5860329011843016e-18,-5.839694763589367e-34,4.1573100834277045e-18,-0.014285714365541935,8.677266982663439e-36,-0.0,-1.925929944387236e-34,1.5860329011843016e-18,-0.0,-4.81482486096809e-35,7.0434009788313895e-34,-1.1328806141609079e-18,1.5070930907744114e-18,0.0071428571827709675,7.0,5.0,6.0,4.0,0.04833900183439255,-0.009175170212984085,-0.011964285746216774,-0.010382653214037418,-0.01413265336304903,0.0004960317746736109,0.0008928571478463709,0.0007653061184100807,0.0010714285308495164,0.0008503401186317205,0.0010204081190750003,0.0014285714132711291,0.0006377550889737904,0.0012244897661730647,0.0011904762359336019,-0.009175170212984085,0.005637755151838064,0.0008928571478463709,0.0007653061184100807,0.0010714285308495164,-0.0005952381179668009,-0.00029761905898340046,-0.00025510202976875007,-0.0003571428533177823,-4.027743407409542e-18,-1.6224889221286215e-18,-2.624564881087105e-18,7.593930062579422e-19,-4.891803970970823e-19,3.1610275423831776e-19,-0.011964285746216774,0.0008928571478463709,0.011084184050559998,0.0010204081190750003,0.0014285714132711291,-4.0115480381963664e-18,-0.00044642857392318547,-5.258894836100551e-19,3.389346452047947e-19,-0.001700680237263441,-0.0005102040595375001,-0.0007142857066355646,1.5545359314098137e-18,1.861262050567566e-18,1.1706433736779084e-18,-0.010382653214037418,0.0007653061184100807,0.0010204081190750003,0.007660714443773031,0.0012244897661730647,-1.3757184564311496e-19,-1.9938128840430899e-19,-0.0003061224415432662,6.029542823664408e-19,3.0517453512375587e-18,-0.0004081632650922984,-5.348059736254939e-19,-0.0009566326625645161,-0.0004897959297522902,-2.6872960356952302e-19,-0.01413265336304903,0.0010714285308495164,0.0014285714132711291,0.0012244897661730647,0.01775510236620903,-9.304667265346146e-19,-6.518421041343967e-19,-9.52028946959611e-19,-0.0007142857066355646,3.6007622877867136e-18,-7.37328842297491e-19,-0.0009523809421807528,-2.710505431213761e-20,-0.0008163265301845968,-0.0035714285913854837,0.0004960317746736109,-0.0005952381179668009,-4.0115480381963664e-18,-1.3757184564311496e-19,-9.304667265346146e-19,9.920635056914762e-05,1.8973538018496328e-19,-6.776263578034403e-21,4.0657581468206416e-20,5.664403070804539e-19,1.8126090188466044e-19,2.9958398325502794e-19,-5.62112782458912e-20,2.1147105004465433e-20,2.2028234918180537e-20,0.0008928571478463709,-0.00029761905898340046,-0.00044642857392318547,-1.9938128840430899e-19,-6.518421041343967e-19,1.8973538018496328e-19,0.00014880952949170023,7.015145584121474e-20,1.2200253583136823e-19,4.575095125988051e-19,1.5894356895797975e-19,1.76903663384552e-19,-5.310378040437969e-20,-2.718913592893392e-20,-4.082798151785491e-34,0.0007653061184100807,-0.00025510202976875007,-5.258894836100551e-19,-0.0003061224415432662,-9.52028946959611e-19,-6.776263578034403e-21,7.015145584121474e-20,0.0001020408162730746,2.0878605731922415e-20,-1.6184008404450196e-20,4.1499308827313013e-20,1.0875654371573568e-19,-6.603336301101364e-20,1.3552527156068805e-19,5.664402941557569e-20,0.0010714285308495164,-0.0003571428533177823,3.389346452047947e-19,6.029542823664408e-19,-0.0007142857066355646,4.0657581468206416e-20,1.2200253583136823e-19,2.0878605731922415e-20,0.0002380952355451882,-2.2657611766230274e-19,2.501558507725371e-34,2.850598807707273e-20,-1.4869058771720254e-19,-3.872189482430137e-20,-4.813677796090955e-19,0.0008503401186317205,-4.027743407409542e-18,-0.001700680237263441,3.0517453512375587e-18,3.6007622877867136e-18,5.664403070804539e-19,4.575095125988051e-19,-1.6184008404450196e-20,-2.2657611766230274e-19,0.00042517005931586027,-7.27509743137392e-20,-8.48761366993624e-20,-3.540252113123293e-19,-4.660994730674386e-19,-3.776268713869693e-19,0.0010204081190750003,-1.6224889221286215e-18,-0.0005102040595375001,-0.0004081632650922984,-7.37328842297491e-19,1.8126090188466044e-19,1.5894356895797975e-19,4.1499308827313013e-20,2.501558507725371e-34,-7.27509743137392e-20,0.0002040816325461492,1.0426817770149199e-19,8.35047390984091e-21,3.3881317890172014e-20,1.3594567318232106e-19,0.0014285714132711291,-2.624564881087105e-18,-0.0007142857066355646,-5.348059736254939e-19,-0.0009523809421807528,2.9958398325502794e-19,1.76903663384552e-19,1.0875654371573568e-19,2.850598807707273e-20,-8.48761366993624e-20,1.0426817770149199e-19,0.0004761904710903764,-2.1666711874356403e-34,3.490748024201865e-34,2.8122591133919717e-34,0.0006377550889737904,7.593930062579422e-19,1.5545359314098137e-18,-0.0009566326625645161,-2.710505431213761e-20,-5.62112782458912e-20,-5.310378040437969e-20,-6.603336301101364e-20,-1.4869058771720254e-19,-3.540252113123293e-19,8.35047390984091e-21,-2.1666711874356403e-34,0.00019132652960252017,5.422605123811247e-20,4.9563528162009426e-20,0.0012244897661730647,-4.891803970970823e-19,1.861262050567566e-18,-0.0004897959297522902,-0.0008163265301845968,2.1147105004465433e-20,-2.718913592893392e-20,1.3552527156068805e-19,-3.872189482430137e-20,-4.660994730674386e-19,3.3881317890172014e-20,3.490748024201865e-34,5.422605123811247e-20,0.00032653060043230653,-4.0144825131181866e-19,0.0011904762359336019,3.1610275423831776e-19,1.1706433736779084e-18,-2.6872960356952302e-19,-0.0035714285913854837,2.2028234918180537e-20,-4.082798151785491e-34,5.664402941557569e-20,-4.813677796090955e-19,-3.776268713869693e-19,1.3594567318232106e-19,2.8122591133919717e-34,4.9563528162009426e-20,-4.0144825131181866e-19,0.0011904762359336019,7.0,5.0,6.0,5.0,0.04048752784729004,-0.007482993416488171,-0.009761904366314411,-0.008469387888908386,-0.009761904366314411,0.00039682540227659047,0.0007142857066355646,0.0006122448830865324,0.0007142857066355646,0.0006802721181884408,0.0008163265301845968,0.0009523809421807528,0.0005102040595375001,0.0008163265301845968,0.0006802721181884408,-0.007482993416488171,0.004557823296636343,0.0007142857066355646,0.0006122448830865324,0.0007142857066355646,-0.0004761904710903764,-0.0002380952355451882,-0.0002040816325461492,-0.0002380952355451882,-0.0,8.470329472543003e-21,-0.0,-1.4907779871675686e-19,8.470329472543003e-21,1.8055593228630336e-34,-0.009761904366314411,0.0007142857066355646,0.008962584659457207,0.0008163265301845968,0.0009523809421807528,-0.0,-0.0003571428533177823,8.470329472543003e-21,-0.0,-0.0013605442363768816,-0.0004081632650922984,-0.0004761904710903764,1.225804442738587e-20,-0.0,-3.009265538105056e-35,-0.008469387888908386,0.0006122448830865324,0.0008163265301845968,0.006193877663463354,0.0008163265301845968,-0.0,-0.0,-0.0002448979648761451,-0.0,-0.0,-0.00032653060043230653,-0.0,-0.0007653061184100807,-0.00032653060043230653,1.1237348917182153e-18,-0.009761904366314411,0.0007142857066355646,0.0009523809421807528,0.0008163265301845968,0.008962584659457207,-0.0,-0.0,8.470329472543003e-21,-0.0003571428533177823,-0.0,-4.81482486096809e-35,-0.0004761904710903764,9.75781955236954e-19,-0.0004081632650922984,-0.0013605442363768816,0.00039682540227659047,-0.0004761904710903764,-0.0,-0.0,-0.0,7.936507608974352e-05,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,2.0850042555291977e-21,-0.0,-0.0,0.0007142857066355646,-0.0002380952355451882,-0.0003571428533177823,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0002040816325461492,8.470329472543003e-21,-0.0002448979648761451,8.470329472543003e-21,-0.0,-0.0,8.163265010807663e-05,-0.0,-0.0,-3.3881317890172014e-21,-0.0,5.421010862427522e-20,-3.3881317890172014e-21,-7.222237291452134e-35,0.0007142857066355646,-0.0002380952355451882,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,-0.0,-0.0013605442363768816,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008163265301845968,8.470329472543003e-21,-0.0004081632650922984,-0.00032653060043230653,-4.81482486096809e-35,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,0.00016326530021615326,-0.0,-4.903217690174991e-21,-0.0,1.2037062152420224e-35,0.0009523809421807528,-0.0,-0.0004761904710903764,-0.0,-0.0004761904710903764,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,0.0005102040595375001,-1.4907779871675686e-19,1.225804442738587e-20,-0.0007653061184100807,9.75781955236954e-19,2.0850042555291977e-21,-0.0,5.421010862427522e-20,-0.0,-0.0,-4.903217690174991e-21,-0.0,0.0001530612207716331,-9.299464299293188e-20,-1.9420811377809942e-19,0.0008163265301845968,8.470329472543003e-21,-0.0,-0.00032653060043230653,-0.0004081632650922984,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,-0.0,-0.0,-9.299464299293188e-20,0.00016326530021615326,-7.634716787620763e-20,0.0006802721181884408,1.8055593228630336e-34,-3.009265538105056e-35,1.1237348917182153e-18,-0.0013605442363768816,-0.0,-0.0,-7.222237291452134e-35,-0.0,-0.0,1.2037062152420224e-35,-0.0,-1.9420811377809942e-19,-7.634716787620763e-20,0.0003401360590942204,7.0,5.0,6.0,6.0,0.0348612442612648,-0.006320861633867025,-0.008248299360275269,-0.0071550048887729645,-0.0071550048887729645,0.0003306878206785768,0.0005952381179668009,0.0005102040595375001,0.0005102040595375001,0.0005668934318237007,0.0006802721181884408,0.0006802721181884408,0.00042517005931586027,0.000583090353757143,0.00042517005931586027,-0.006320861633867025,0.0038265306502580643,0.0005952381179668009,0.0005102040595375001,0.0005102040595375001,-0.00039682540227659047,-0.00019841270113829523,-0.0001700680295471102,-0.0001700680295471102,-0.0,2.1718061171621975e-21,1.4101768418507088e-22,-8.131516293641283e-20,1.1651341375408035e-20,-5.252542605984027e-20,-0.008248299360275269,0.0005952381179668009,0.0075255101546645164,0.0006802721181884408,0.0006802721181884408,-0.0,-0.00029761905898340046,2.263020955051425e-21,4.9802824207737945e-23,-0.0011337868636474013,-0.0003401360590942204,-0.0003401360590942204,7.071940257343763e-21,8.88818573664656e-21,1.7096293300455286e-20,-0.0071550048887729645,0.0005102040595375001,0.0006802721181884408,0.005200437270104885,0.000583090353757143,-2.0861842399821145e-20,-0.0,-0.0002040816325461492,1.900422092622579e-20,-0.0,-0.0002721088530961424,2.710505431213761e-20,-0.0006377550889737904,-0.0002332361473236233,7.238299267848733e-19,-0.0071550048887729645,0.0005102040595375001,0.0006802721181884408,0.000583090353757143,0.005200437270104885,-0.0,-0.0,-3.3793744989579363e-21,-0.0002040816325461492,-0.0,-1.6392646942508224e-20,-0.0002721088530961424,7.589415207398531e-19,-0.0002332361473236233,-0.0006377550889737904,0.0003306878206785768,-0.00039682540227659047,-0.0,-2.0861842399821145e-20,-0.0,6.613756704609841e-05,-0.0,-3.3881317890172014e-21,-3.3881317890172014e-21,-0.0,4.767115361104825e-38,2.8723998090530463e-39,1.8617785812392527e-21,-1.7688422359356447e-39,1.653823335564665e-21,0.0005952381179668009,-0.00019841270113829523,-0.00029761905898340046,-0.0,-0.0,-0.0,9.920635056914762e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0001700680295471102,2.263020955051425e-21,-0.0002040816325461492,-3.3793744989579363e-21,-3.3881317890172014e-21,-0.0,6.80272132740356e-05,-6.640903730479322e-22,-0.0,-8.488013083465417e-22,-5.640706988749601e-23,2.710505431213761e-20,3.3881317890172014e-21,-5.502216713930662e-22,0.0005102040595375001,-0.0001700680295471102,4.9802824207737945e-23,1.900422092622579e-20,-0.0002040816325461492,-3.3881317890172014e-21,-0.0,-6.640903730479322e-22,6.80272132740356e-05,-0.0,-1.9921129683095178e-23,5.06693690027207e-39,5.803862987699756e-22,-8.048668500739129e-21,1.7260451493542982e-20,0.0005668934318237007,-0.0,-0.0011337868636474013,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00028344671591185033,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006802721181884408,2.1718061171621975e-21,-0.0003401360590942204,-0.0002721088530961424,-1.6392646942508224e-20,4.767115361104825e-38,-0.0,-8.488013083465417e-22,-1.9921129683095178e-23,-0.0,0.0001360544265480712,-7.520943072391951e-23,-2.6525040759611683e-21,6.776263578034403e-21,-6.225353262625515e-23,0.0006802721181884408,1.4101768418507088e-22,-0.0003401360590942204,2.710505431213761e-20,-0.0002721088530961424,2.8723998090530463e-39,-0.0,-5.640706988749601e-23,5.06693690027207e-39,-0.0,-7.520943072391951e-23,0.0001360544265480712,-1.762721052313386e-22,-1.03315375495756e-20,-6.776263578034403e-21,0.00042517005931586027,-8.131516293641283e-20,7.071940257343763e-21,-0.0006377550889737904,7.589415207398531e-19,1.8617785812392527e-21,-0.0,2.710505431213761e-20,5.803862987699756e-22,-0.0,-2.6525040759611683e-21,-1.762721052313386e-22,0.00012755101488437504,-7.890934043654503e-20,-1.130334422988499e-19,0.000583090353757143,1.1651341375408035e-20,8.88818573664656e-21,-0.0002332361473236233,-0.0002332361473236233,-1.7688422359356447e-39,-0.0,3.3881317890172014e-21,-8.048668500739129e-21,-0.0,6.776263578034403e-21,-1.03315375495756e-20,-7.890934043654503e-20,9.329446038464084e-05,-6.245320253526196e-20,0.00042517005931586027,-5.252542605984027e-20,1.7096293300455286e-20,7.238299267848733e-19,-0.0006377550889737904,1.653823335564665e-21,-0.0,-5.502216713930662e-22,1.7260451493542982e-20,-0.0,-6.225353262625515e-23,-6.776263578034403e-21,-1.130334422988499e-19,-6.245320253526196e-20,0.00012755101488437504,7.0,5.0,6.0,7.0,0.030622368678450584,-0.005472545977681875,-0.0071428571827709675,-0.006195335183292627,-0.005472545977681875,0.00028344671591185033,0.0005102040595375001,0.0004373177944216877,0.00038265305920504034,0.00048590864753350616,0.000583090353757143,0.0005102040595375001,0.00036443150020204484,0.0004373177944216877,0.00028344671591185033,-0.005472545977681875,0.0032981049735099077,0.0005102040595375001,0.0004373177944216877,0.00038265305920504034,-0.0003401360590942204,-0.0001700680295471102,-0.00014577258843928576,-0.00012755101488437504,5.841261265104795e-20,2.791061707636945e-19,3.2226855852428803e-19,1.260385025514399e-18,5.59663940104843e-19,9.247262998786497e-19,-0.0071428571827709675,0.0005102040595375001,0.0064868805930018425,0.000583090353757143,0.0005102040595375001,-5.421010862427522e-20,-0.00025510202976875007,6.930060235350621e-19,7.339143182770546e-20,-0.0009718172950670123,-0.0002915451768785715,-0.00025510202976875007,7.626781023619083e-19,9.112615572650881e-19,6.545573761938903e-19,-0.006195335183292627,0.0004373177944216877,0.000583090353757143,0.004482507240027189,0.0004373177944216877,1.1140953424498286e-18,3.834671542525058e-19,-0.0001749271177686751,1.3161113045026955e-19,1.6546317131663602e-18,-0.0002332361473236233,5.421010862427522e-19,-0.000546647235751152,-0.0001749271177686751,8.091453351635926e-19,-0.005472545977681875,0.00038265305920504034,0.0005102040595375001,0.0004373177944216877,0.0032981049735099077,1.0612089296007914e-18,3.669992031780997e-19,5.814836204954964e-19,-0.00012755101488437504,1.232993973505471e-18,3.884877269803964e-19,-0.0001700680295471102,6.098637220230962e-19,-0.00014577258843928576,-0.0003401360590942204,0.00028344671591185033,-0.0003401360590942204,-5.421010862427522e-20,1.1140953424498286e-18,1.0612089296007914e-18,5.668934318237007e-05,-6.776263578034403e-21,-4.404571325722362e-20,-6.437450399132683e-20,1.7982232817067988e-20,-1.6184008404450196e-20,-1.416100735389392e-20,-1.4982148578623032e-19,-6.473603361780078e-20,-1.1109684446380133e-19,0.0005102040595375001,-0.0001700680295471102,-0.00025510202976875007,3.834671542525058e-19,3.669992031780997e-19,-6.776263578034403e-21,8.50340147735551e-05,-4.2709653393649955e-21,-4.024141995500631e-21,5.556707256977432e-20,-3.056753542105655e-20,-3.9899312109262445e-20,-3.034501737393125e-20,-3.641401891001294e-20,-2.360167946168558e-20,0.0004373177944216877,-0.00014577258843928576,6.930060235350621e-19,-0.0001749271177686751,5.814836204954964e-19,-4.404571325722362e-20,-4.2709653393649955e-21,5.8309036830905825e-05,-3.3258257018463517e-20,-1.1097606316967152e-19,-4.818715778385801e-20,-3.860700072968746e-20,-1.198108690996207e-19,-2.710505431213761e-20,-5.612068904411958e-20,0.00038265305920504034,-0.00012755101488437504,7.339143182770546e-20,1.3161113045026955e-19,-0.00012755101488437504,-6.437450399132683e-20,-4.024141995500631e-21,-3.3258257018463517e-20,4.251700738677755e-05,1.8055593228630336e-34,-1.3305339497305748e-22,-2.0328790734103208e-20,-1.6828180254211464e-22,-1.0219015944667813e-20,-2.3212605690165887e-20,0.00048590864753350616,5.841261265104795e-20,-0.0009718172950670123,1.6546317131663602e-18,1.232993973505471e-18,1.7982232817067988e-20,5.556707256977432e-20,-1.1097606316967152e-19,1.8055593228630336e-34,0.00024295432376675308,-7.129142704758646e-20,-9.244335296405943e-20,-1.156000674173283e-19,-1.3872007573091513e-19,-8.991115923857854e-20,0.000583090353757143,2.791061707636945e-19,-0.0002915451768785715,-0.0002332361473236233,3.884877269803964e-19,-1.6184008404450196e-20,-3.056753542105655e-20,-4.818715778385801e-20,-1.3305339497305748e-22,-7.129142704758646e-20,0.00011661807366181165,-5.16961936516272e-20,-3.197891880357369e-20,-2.879912020664621e-20,-2.732815720180538e-20,0.0005102040595375001,3.2226855852428803e-19,-0.00025510202976875007,5.421010862427522e-19,-0.0001700680295471102,-1.416100735389392e-20,-3.9899312109262445e-20,-3.860700072968746e-20,-2.0328790734103208e-20,-9.244335296405943e-20,-5.16961936516272e-20,8.50340147735551e-05,-2.961182838965383e-20,-4.219645083145902e-20,-4.1439457786350827e-20,0.00036443150020204484,1.260385025514399e-18,7.626781023619083e-19,-0.000546647235751152,6.098637220230962e-19,-1.4982148578623032e-19,-3.034501737393125e-20,-1.198108690996207e-19,-1.6828180254211464e-22,-1.156000674173283e-19,-3.197891880357369e-20,-2.961182838965383e-20,0.00010932944860542193,-4.8940606230794443e-20,-7.185607475088193e-20,0.0004373177944216877,5.59663940104843e-19,9.112615572650881e-19,-0.0001749271177686751,-0.00014577258843928576,-6.473603361780078e-20,-3.641401891001294e-20,-2.710505431213761e-20,-1.0219015944667813e-20,-1.3872007573091513e-19,-2.879912020664621e-20,-4.219645083145902e-20,-4.8940606230794443e-20,5.8309036830905825e-05,-7.537013186346326e-20,0.00028344671591185033,9.247262998786497e-19,6.545573761938903e-19,8.091453351635926e-19,-0.0003401360590942204,-1.1109684446380133e-19,-2.360167946168558e-20,-5.612068904411958e-20,-2.3212605690165887e-20,-8.991115923857854e-20,-2.732815720180538e-20,-4.1439457786350827e-20,-7.185607475088193e-20,-7.537013186346326e-20,5.668934318237007e-05,7.0,5.0,6.0,8.0,0.027310090139508247,-0.004825680050998926,-0.0062996032647788525,-0.005463435314595699,-0.004322562366724014,0.00024801588733680546,0.00044642857392318547,0.00038265305920504034,0.00029761905898340046,0.00042517005931586027,0.0005102040595375001,0.00039682540227659047,0.0003188775444868952,0.0003401360590942204,0.00019841270113829523,-0.004825680050998926,0.0028982425574213266,0.00044642857392318547,0.00038265305920504034,0.00029761905898340046,-0.00029761905898340046,-0.00014880952949170023,-0.00012755101488437504,-9.920635056914762e-05,-2.388351669848859e-18,-9.995125262401815e-19,-9.07479377311766e-19,7.136933065918276e-20,-2.8216487787376244e-19,-2.232547290089609e-19,-0.0062996032647788525,0.00044642857392318547,0.005700821988284588,0.0005102040595375001,0.00039682540227659047,-2.1141942363467336e-18,-0.00022321428696159273,-3.239256080863849e-19,-6.247260896791428e-19,-0.0008503401186317205,-0.00025510202976875007,-0.00019841270113829523,7.877060544571369e-19,4.405395921395501e-19,2.5194893944948067e-20,-0.005463435314595699,0.00038265305920504034,0.0005102040595375001,0.003939200658351183,0.0003401360590942204,-1.0668156114914641e-19,-1.1212535308263152e-19,-0.0001530612207716331,-4.453681038689635e-19,1.5755036157695376e-18,-0.0002040816325461492,-1.9236306157240575e-19,-0.00047831633128225803,-0.0001360544265480712,-1.637151086227036e-19,-0.004322562366724014,0.00029761905898340046,0.00039682540227659047,0.0003401360590942204,0.0022270812187343836,-4.753034083457396e-19,-3.0469510641059896e-19,-4.077725640826694e-19,-8.50340147735551e-05,4.7841298706347955e-19,-5.117537941221364e-19,-0.00011337868636474013,-5.248710691796375e-19,-9.718172805150971e-05,-0.00019841270113829523,0.00024801588733680546,-0.00029761905898340046,-2.1141942363467336e-18,-1.0668156114914641e-19,-4.753034083457396e-19,4.960317528457381e-05,9.825582188149884e-20,-0.0,2.371692252312041e-20,2.8322015354022696e-19,9.063045094233022e-20,9.230879394285178e-20,-2.950210094269411e-20,1.3666497134842127e-20,2.1819591533361107e-20,0.00044642857392318547,-0.00014880952949170023,-0.00022321428696159273,-1.1212535308263152e-19,-3.0469510641059896e-19,9.825582188149884e-20,7.440476474585012e-05,3.494086193784428e-20,3.8609928173574074e-20,2.2875475629940256e-19,7.947178447898987e-20,5.543368969600015e-20,-2.6551890202189845e-20,-2.1578678411129306e-21,1.1014117459090269e-20,0.00038265305920504034,-0.00012755101488437504,-3.239256080863849e-19,-0.0001530612207716331,-4.077725640826694e-19,-0.0,3.494086193784428e-20,5.10204081365373e-05,1.0050483549415102e-20,-8.092004202225098e-21,2.8084058110011065e-20,3.560481978226014e-20,-9.6663882096485e-21,3.8839318928366953e-20,2.2657612735582555e-20,0.00029761905898340046,-9.920635056914762e-05,-6.247260896791428e-19,-4.453681038689635e-19,-8.50340147735551e-05,2.371692252312041e-20,3.8609928173574074e-20,1.0050483549415102e-20,2.8344671591185033e-05,5.844225544378061e-20,4.8552028444524855e-20,3.134021904840911e-20,4.214585710477404e-20,1.9891612855671862e-20,-2.3597168742407752e-21,0.00042517005931586027,-2.388351669848859e-18,-0.0008503401186317205,1.5755036157695376e-18,4.7841298706347955e-19,2.8322015354022696e-19,2.2875475629940256e-19,-8.092004202225098e-21,5.844225544378061e-20,0.00021258502965793014,-3.63754871568696e-20,-2.0208603976038667e-20,-1.7701260565616466e-19,-1.1405873266810937e-19,-3.1468907025972196e-20,0.0005102040595375001,-9.995125262401815e-19,-0.00025510202976875007,-0.0002040816325461492,-5.117537941221364e-19,9.063045094233022e-20,7.947178447898987e-20,2.8084058110011065e-20,4.8552028444524855e-20,-3.63754871568696e-20,0.0001020408162730746,5.0185842632462064e-20,8.551304124696474e-35,1.4796808745740296e-20,3.021015139116816e-20,0.00039682540227659047,-9.07479377311766e-19,-0.00019841270113829523,-1.9236306157240575e-19,-0.00011337868636474013,9.230879394285178e-20,5.543368969600015e-20,3.560481978226014e-20,3.134021904840911e-20,-2.0208603976038667e-20,5.0185842632462064e-20,5.668934318237007e-05,-3.009265538105056e-35,-4.235164736271502e-21,-2.2534271947535872e-21,0.0003188775444868952,7.136933065918276e-20,7.877060544571369e-19,-0.00047831633128225803,-5.248710691796375e-19,-2.950210094269411e-20,-2.6551890202189845e-20,-9.6663882096485e-21,4.214585710477404e-20,-1.7701260565616466e-19,8.551304124696474e-35,-3.009265538105056e-35,9.566326480126008e-05,3.327300086664742e-20,3.540251919252837e-20,0.0003401360590942204,-2.8216487787376244e-19,4.405395921395501e-19,-0.0001360544265480712,-9.718172805150971e-05,1.3666497134842127e-20,-2.1578678411129306e-21,3.8839318928366953e-20,1.9891612855671862e-20,-1.1405873266810937e-19,1.4796808745740296e-20,-4.235164736271502e-21,3.327300086664742e-20,3.887269122060388e-05,-4.9114508029886646e-20,0.00019841270113829523,-2.232547290089609e-19,2.5194893944948067e-20,-1.637151086227036e-19,-0.00019841270113829523,2.1819591533361107e-20,1.1014117459090269e-20,2.2657612735582555e-20,-2.3597168742407752e-21,-3.1468907025972196e-20,3.021015139116816e-20,-2.2534271947535872e-21,3.540251919252837e-20,-4.9114508029886646e-20,2.8344671591185033e-05,7.0,5.0,7.0,3.0,0.05293569713830948,-0.010289115831255913,-0.013411078602075577,-0.010289115831255913,-0.019387755542993546,0.0005668934318237007,0.0010204081190750003,0.0007653061184100807,0.0015306122368201613,0.0009718172950670123,0.0010204081190750003,0.0020408162381500006,0.0005668934318237007,0.0015306122368201613,0.0020408162381500006,-0.010289115831255913,0.0063775512389838696,0.0010204081190750003,0.0007653061184100807,0.0015306122368201613,-0.0006802721181884408,-0.0003401360590942204,-0.00025510202976875007,-0.0005102040595375001,-8.021953119581338e-19,3.347173165504814e-19,-1.7030928131358153e-18,1.3953018023369776e-18,-2.9913311812239826e-19,-4.867091846773225e-18,-0.013411078602075577,0.0010204081190750003,0.012536442838609219,0.0010204081190750003,0.0020408162381500006,-3.2526065174565133e-19,-0.0005102040595375001,2.933280679810777e-20,-2.3252998276570044e-18,-0.0019436345901340246,-0.0005102040595375001,-0.0010204081190750003,1.3041799996484424e-18,9.00186125850886e-19,-1.399546913920115e-17,-0.010289115831255913,0.0007653061184100807,0.0010204081190750003,0.0063775512389838696,0.0015306122368201613,1.832421364535139e-18,5.519283021126119e-19,-0.00025510202976875007,-1.940887283512533e-18,1.893767560303909e-18,-0.0003401360590942204,7.120386222492948e-19,-0.0006802721181884408,-0.0005102040595375001,-4.867091846773225e-18,-0.019387755542993546,0.0015306122368201613,0.0020408162381500006,0.0015306122368201613,0.03979591652750969,-3.359182794023318e-19,-2.091797907671554e-18,-2.5083414555300354e-18,-0.0015306122368201613,-5.028823027320205e-18,-1.9887173480721866e-18,-0.0020408162381500006,-4.607859233063394e-19,-0.0015306122368201613,-0.01224489789456129,0.0005668934318237007,-0.0006802721181884408,-3.2526065174565133e-19,1.832421364535139e-18,-3.359182794023318e-19,0.00011337868636474013,-1.3552527156068805e-20,-1.2874900798265365e-19,-5.421010862427522e-20,3.5964465634135977e-20,-2.832201470778784e-20,1.8881343569348464e-19,-2.2066922090806157e-19,-4.24830236772689e-20,-3.7762688431166636e-20,0.0010204081190750003,-0.0003401360590942204,-0.0005102040595375001,5.519283021126119e-19,-2.091797907671554e-18,-1.3552527156068805e-20,0.0001700680295471102,-8.048283991001262e-21,1.1516730978529528e-19,1.1113414513954864e-19,-7.979862421852489e-20,2.3487562464483074e-20,-4.720335892337116e-20,1.925929944387236e-34,8.49660486470075e-19,0.0007653061184100807,-0.00025510202976875007,2.933280679810777e-20,-0.00025510202976875007,-2.5083414555300354e-18,-1.2874900798265365e-19,-8.048283991001262e-21,8.50340147735551e-05,1.0400078510613568e-19,4.819129190673015e-34,-4.4212341683039036e-20,1.2744906780063243e-19,-5.324348991737019e-20,9.486769009248164e-20,7.646944068037946e-19,0.0015306122368201613,-0.0005102040595375001,-2.3252998276570044e-18,-1.940887283512533e-18,-0.0015306122368201613,-5.421010862427522e-20,1.1516730978529528e-19,1.0400078510613568e-19,0.0005102040595375001,3.64140208487175e-19,1.2744906780063243e-19,1.4088979632703586e-19,1.8409310367855665e-19,2.694281834462182e-19,1.1002636418370231e-18,0.0009718172950670123,-8.021953119581338e-19,-0.0019436345901340246,1.893767560303909e-18,-5.028823027320205e-18,3.5964465634135977e-20,1.1113414513954864e-19,4.819129190673015e-34,3.64140208487175e-19,0.00048590864753350616,-1.8488670592811885e-19,-3.4569923131902535e-20,-1.7982231847715708e-19,-1.21380069495725e-19,2.2657612283218157e-18,0.0010204081190750003,3.347173165504814e-19,-0.0005102040595375001,-0.0003401360590942204,-1.9887173480721866e-18,-2.832201470778784e-20,-7.979862421852489e-20,-4.4212341683039036e-20,1.2744906780063243e-19,-1.8488670592811885e-19,0.0001700680295471102,-5.1557627974327495e-20,-9.531203471543893e-20,3.3881317890172014e-21,8.49660486470075e-19,0.0020408162381500006,-1.7030928131358153e-18,-0.0010204081190750003,7.120386222492948e-19,-0.0020408162381500006,1.8881343569348464e-19,2.3487562464483074e-20,1.2744906780063243e-19,1.4088979632703586e-19,-3.4569923131902535e-20,-5.1557627974327495e-20,0.0010204081190750003,-9.440671784674232e-20,-2.5489813560126485e-19,6.10368366820239e-20,0.0005668934318237007,1.3953018023369776e-18,1.3041799996484424e-18,-0.0006802721181884408,-4.607859233063394e-19,-2.2066922090806157e-19,-4.720335892337116e-20,-5.324348991737019e-20,1.8409310367855665e-19,-1.7982231847715708e-19,-9.531203471543893e-20,-9.440671784674232e-20,0.00011337868636474013,-3.066658060588697e-20,-3.7762688431166636e-20,0.0015306122368201613,-2.9913311812239826e-19,9.00186125850886e-19,-0.0005102040595375001,-0.0015306122368201613,-4.24830236772689e-20,1.925929944387236e-34,9.486769009248164e-20,2.694281834462182e-19,-1.21380069495725e-19,3.3881317890172014e-21,-2.5489813560126485e-19,-3.066658060588697e-20,0.0005102040595375001,1.1002636418370231e-18,0.0020408162381500006,-4.867091846773225e-18,-1.399546913920115e-17,-4.867091846773225e-18,-0.01224489789456129,-3.7762688431166636e-20,8.49660486470075e-19,7.646944068037946e-19,1.1002636418370231e-18,2.2657612283218157e-18,8.49660486470075e-19,6.10368366820239e-20,-3.7762688431166636e-20,1.1002636418370231e-18,0.006122448947280645,7.0,5.0,7.0,4.0,0.04250789433717728,-0.007946428842842579,-0.010364431887865067,-0.007946428842842579,-0.01224489789456129,0.00042517005931586027,0.0007653061184100807,0.0005739795742556453,0.000918367353733629,0.0007288630004040897,0.0007653061184100807,0.0012244897661730647,0.00042517005931586027,0.000918367353733629,0.0010204081190750003,-0.007946428842842579,0.004859693814069033,0.0007653061184100807,0.0005739795742556453,0.000918367353733629,-0.0005102040595375001,-0.00025510202976875007,-0.00019132652960252017,-0.0003061224415432662,-3.1228913625183977e-18,-1.2468687909077059e-18,-1.9279814048003274e-18,3.558063896650974e-19,-2.7017414526237618e-19,1.799790743731147e-18,-0.010364431887865067,0.0007653061184100807,0.00955539382994175,0.0007653061184100807,0.0012244897661730647,-3.347474207548995e-18,-0.00038265305920504034,1.7916470989017742e-19,3.5367218613652816e-19,-0.0014577260008081794,-0.00038265305920504034,-0.0006122448830865324,5.258289960277622e-19,1.1550842097533625e-18,1.2947207757535922e-18,-0.007946428842842579,0.0005739795742556453,0.0007653061184100807,0.004859693814069033,0.000918367353733629,-5.588188717115435e-19,-4.015146067065819e-19,-0.00019132652960252017,4.548145581631074e-19,2.0003764588061216e-18,-0.00025510202976875007,-5.345347100833648e-20,-0.0005102040595375001,-0.0003061224415432662,1.799790743731147e-18,-0.01224489789456129,0.000918367353733629,0.0012244897661730647,0.000918367353733629,0.015306122601032257,-8.33375316461649e-19,-6.424233603907734e-19,4.344363433874041e-19,-0.0006122448830865324,3.0517095756760657e-18,-6.361786637538809e-20,-0.0008163265301845968,8.131516293641283e-20,-0.0006122448830865324,-0.0030612244736403227,0.00042517005931586027,-0.0005102040595375001,-3.347474207548995e-18,-5.588188717115435e-19,-8.33375316461649e-19,8.50340147735551e-05,9.486769009248164e-20,1.0164395367051604e-20,2.0328790734103208e-20,4.855202779829e-19,1.6049141775452253e-19,2.567862787469937e-19,1.586974762633967e-20,4.531522547116511e-20,1.8881344215583318e-20,0.0007653061184100807,-0.00025510202976875007,-0.00038265305920504034,-4.015146067065819e-19,-6.424233603907734e-19,9.486769009248164e-20,0.00012755101488437504,7.065831722390515e-20,1.1305330755824824e-19,3.9215099972066405e-19,9.476982428625896e-20,1.5163171885801433e-19,-2.6782463289135e-34,-2.6078718698526696e-34,-1.0534980573450965e-33,0.0005739795742556453,-0.00019132652960252017,1.7916470989017742e-19,-0.00019132652960252017,4.344363433874041e-19,1.0164395367051604e-20,7.065831722390515e-20,6.377550744218752e-05,3.192251219438096e-20,-1.21380069495725e-19,3.1381877366553318e-21,1.9898768370719683e-34,-1.2130788506258268e-19,1.6940658945086007e-21,-2.1241512161751876e-19,0.000918367353733629,-0.0003061224415432662,3.5367218613652816e-19,4.548145581631074e-19,-0.0006122448830865324,2.0328790734103208e-20,1.1305330755824824e-19,3.192251219438096e-20,0.0002040816325461492,-1.9420811377809942e-19,1.927131611854463e-34,-3.4630223306087943e-20,-9.063045094233022e-20,-7.250578634795112e-20,-9.260810149268585e-19,0.0007288630004040897,-3.1228913625183977e-18,-0.0014577260008081794,2.0003764588061216e-18,3.0517095756760657e-18,4.855202779829e-19,3.9215099972066405e-19,-1.21380069495725e-19,-1.9420811377809942e-19,0.00036443150020204484,-7.365375794180987e-20,-1.1784600495207755e-19,-1.3486674532021635e-19,-2.9131215128010353e-19,-3.2368019393839806e-19,0.0007653061184100807,-1.2468687909077059e-18,-0.00038265305920504034,-0.00025510202976875007,-6.361786637538809e-20,1.6049141775452253e-19,9.476982428625896e-20,3.1381877366553318e-21,1.927131611854463e-34,-7.365375794180987e-20,0.00012755101488437504,2.672673550416824e-20,4.54599279561929e-21,3.3881317890172014e-21,1.2037062152420224e-34,0.0012244897661730647,-1.9279814048003274e-18,-0.0006122448830865324,-5.345347100833648e-20,-0.0008163265301845968,2.567862787469937e-19,1.5163171885801433e-19,1.9898768370719683e-34,-3.4630223306087943e-20,-1.1784600495207755e-19,2.672673550416824e-20,0.0004081632650922984,1.1736135598609718e-34,2.9566033911882175e-34,3.7636521243034615e-34,0.00042517005931586027,3.558063896650974e-19,5.258289960277622e-19,-0.0005102040595375001,8.131516293641283e-20,1.586974762633967e-20,-2.6782463289135e-34,-1.2130788506258268e-19,-9.063045094233022e-20,-1.3486674532021635e-19,4.54599279561929e-21,1.1736135598609718e-34,8.50340147735551e-05,1.395186959941152e-20,1.8881344215583318e-20,0.000918367353733629,-2.7017414526237618e-19,1.1550842097533625e-18,-0.0003061224415432662,-0.0006122448830865324,4.531522547116511e-20,-2.6078718698526696e-34,1.6940658945086007e-21,-7.250578634795112e-20,-2.9131215128010353e-19,3.3881317890172014e-21,2.9566033911882175e-34,1.395186959941152e-20,0.0002040816325461492,-9.260810149268585e-19,0.0010204081190750003,1.799790743731147e-18,1.2947207757535922e-18,1.799790743731147e-18,-0.0030612244736403227,1.8881344215583318e-20,-1.0534980573450965e-33,-2.1241512161751876e-19,-9.260810149268585e-19,-3.2368019393839806e-19,1.2037062152420224e-34,3.7636521243034615e-34,1.8881344215583318e-20,-9.260810149268585e-19,0.0010204081190750003,7.0,5.0,7.0,5.0,0.03558066114783287,-0.006479592062532902,-0.008454810827970505,-0.006479592062532902,-0.008454810827970505,0.0003401360590942204,0.0006122448830865324,0.0004591836768668145,0.0006122448830865324,0.000583090353757143,0.0006122448830865324,0.0008163265301845968,0.0003401360590942204,0.0006122448830865324,0.000583090353757143,-0.006479592062532902,0.0039285714738070965,0.0006122448830865324,0.0004591836768668145,0.0006122448830865324,-0.0004081632650922984,-0.0002040816325461492,-0.0001530612207716331,-0.0002040816325461492,-0.0,-4.998883066721309e-22,-0.0,1.3552527156068805e-20,5.082197683525802e-21,0.0,-0.008454810827970505,0.0006122448830865324,0.0077259475365281105,0.0006122448830865324,0.0008163265301845968,-0.0,-0.0003061224415432662,-4.998883066721309e-22,-0.0,-0.001166180707514286,-0.0003061224415432662,-0.0004081632650922984,-1.3330354844590158e-21,5.082197683525802e-21,-0.0,-0.006479592062532902,0.0004591836768668145,0.0006122448830865324,0.0039285714738070965,0.0006122448830865324,-0.0,-0.0,-0.0001530612207716331,-0.0,-0.0,-0.0002040816325461492,-0.0,-0.0004081632650922984,-0.0002040816325461492,-0.0,-0.008454810827970505,0.0006122448830865324,0.0008163265301845968,0.0006122448830865324,0.0077259475365281105,-0.0,-0.0,5.082197683525802e-21,-0.0003061224415432662,-0.0,5.082197683525802e-21,-0.0004081632650922984,1.3552527156068805e-20,-0.0003061224415432662,-0.001166180707514286,0.0003401360590942204,-0.0004081632650922984,-0.0,-0.0,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,-0.0,2.5199690413799618e-40,0.0,1.0425021277645988e-21,-0.0,-0.0,0.0006122448830865324,-0.0002040816325461492,-0.0003061224415432662,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004591836768668145,-0.0001530612207716331,-4.998883066721309e-22,-0.0001530612207716331,5.082197683525802e-21,-0.0,-0.0,5.10204081365373e-05,-0.0,-0.0,1.6662943555737698e-22,-0.0,-6.776263578034403e-21,-1.6940658945086007e-21,-0.0,0.0006122448830865324,-0.0002040816325461492,-0.0,-0.0,-0.0003061224415432662,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.000583090353757143,-0.0,-0.001166180707514286,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-4.998883066721309e-22,-0.0003061224415432662,-0.0002040816325461492,5.082197683525802e-21,2.5199690413799618e-40,-0.0,1.6662943555737698e-22,-0.0,-0.0,0.0001020408162730746,-0.0,4.443451278282733e-22,-1.6940658945086007e-21,-0.0,0.0008163265301845968,-0.0,-0.0004081632650922984,-0.0,-0.0004081632650922984,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002040816325461492,-0.0,-0.0,-0.0,0.0003401360590942204,1.3552527156068805e-20,-1.3330354844590158e-21,-0.0004081632650922984,1.3552527156068805e-20,1.0425021277645988e-21,-0.0,-6.776263578034403e-21,-0.0,-0.0,4.443451278282733e-22,-0.0,6.80272132740356e-05,-5.473135842598007e-21,-0.0,0.0006122448830865324,5.082197683525802e-21,5.082197683525802e-21,-0.0002040816325461492,-0.0003061224415432662,-0.0,-0.0,-1.6940658945086007e-21,-0.0,-0.0,-1.6940658945086007e-21,-0.0,-5.473135842598007e-21,0.0001020408162730746,-0.0,0.000583090353757143,0.0,-0.0,-0.0,-0.001166180707514286,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002915451768785715,7.0,5.0,7.0,6.0,0.030622368678450584,-0.005472545977681875,-0.0071428571827709675,-0.005472545977681875,-0.006195335183292627,0.00028344671591185033,0.0005102040595375001,0.00038265305920504034,0.0004373177944216877,0.00048590864753350616,0.0005102040595375001,0.000583090353757143,0.00028344671591185033,0.0004373177944216877,0.00036443150020204484,-0.005472545977681875,0.0032981049735099077,0.0005102040595375001,0.00038265305920504034,0.0004373177944216877,-0.0003401360590942204,-0.0001700680295471102,-0.00012755101488437504,-0.00014577258843928576,5.841261265104795e-20,3.275535188554659e-19,2.724953433081707e-19,9.351243737687476e-19,5.610549994012157e-19,1.2552269340096714e-18,-0.0071428571827709675,0.0005102040595375001,0.0064868805930018425,0.0005102040595375001,0.000583090353757143,-6.776263578034403e-20,-0.00025510202976875007,7.706351921137563e-20,6.883306436165476e-19,-0.0009718172950670123,-0.00025510202976875007,-0.0002915451768785715,6.719077480361315e-19,9.218487453227309e-19,7.426096667256061e-19,-0.005472545977681875,0.00038265305920504034,0.0005102040595375001,0.0032981049735099077,0.0004373177944216877,1.0524157928941995e-18,3.669992031780997e-19,-0.00012755101488437504,4.8940533852490845e-19,1.232993973505471e-18,-0.0001700680295471102,3.7269449679189215e-19,-0.0003401360590942204,-0.00014577258843928576,1.2501515605661991e-18,-0.006195335183292627,0.0004373177944216877,0.000583090353757143,0.0004373177944216877,0.004482507240027189,1.1276229507899442e-18,3.834671542525058e-19,6.3589247057104745e-21,-0.0001749271177686751,1.6546317131663602e-18,5.397539095558447e-19,-0.0002332361473236233,1.0977546996415732e-18,-0.0001749271177686751,-0.000546647235751152,0.00028344671591185033,-0.0003401360590942204,-6.776263578034403e-20,1.0524157928941995e-18,1.1276229507899442e-18,5.668934318237007e-05,-6.776263578034403e-21,-6.776263578034403e-20,-4.743384504624082e-20,1.7982232817067988e-20,-1.416100735389392e-20,-1.6184008404450196e-20,-1.1109254053967664e-19,-6.473603361780078e-20,-1.46994350473586e-19,0.0005102040595375001,-0.0001700680295471102,-0.00025510202976875007,3.669992031780997e-19,3.834671542525058e-19,-6.776263578034403e-21,8.50340147735551e-05,-4.024141995500631e-21,-4.2709653393649955e-21,5.556707256977432e-20,-3.9899312109262445e-20,-3.056753542105655e-20,-2.360167946168558e-20,-3.641401891001294e-20,-3.034501737393125e-20,0.00038265305920504034,-0.00012755101488437504,7.706351921137563e-20,-0.00012755101488437504,6.3589247057104745e-21,-6.776263578034403e-20,-4.024141995500631e-21,4.251700738677755e-05,3.527839686420567e-21,1.0162649166312737e-34,-2.1689598161393838e-20,3.10798259338233e-23,-2.6621744958685094e-20,-5.082197683525802e-21,-3.239577592800913e-22,0.0004373177944216877,-0.00014577258843928576,6.883306436165476e-19,4.8940533852490845e-19,-0.0001749271177686751,-4.743384504624082e-20,-4.2709653393649955e-21,3.527839686420567e-21,5.8309036830905825e-05,-1.1097606316967152e-19,-3.908801594940985e-20,-4.573977915173222e-20,-5.620014361936442e-20,-3.382566737575795e-20,-1.249113423048051e-19,0.00048590864753350616,5.841261265104795e-20,-0.0009718172950670123,1.232993973505471e-18,1.6546317131663602e-18,1.7982232817067988e-20,5.556707256977432e-20,1.0162649166312737e-34,-1.1097606316967152e-19,0.00024295432376675308,-9.244335296405943e-20,-7.129142704758646e-20,-8.991115923857854e-20,-1.3872007573091513e-19,-1.156000674173283e-19,0.0005102040595375001,3.275535188554659e-19,-0.00025510202976875007,-0.0001700680295471102,5.397539095558447e-19,-1.416100735389392e-20,-3.9899312109262445e-20,-2.1689598161393838e-20,-3.908801594940985e-20,-9.244335296405943e-20,8.50340147735551e-05,-4.2948574496945667e-20,-4.7587655403735933e-20,-4.404571325722362e-20,-3.1114999739595944e-20,0.000583090353757143,2.724953433081707e-19,-0.0002915451768785715,3.7269449679189215e-19,-0.0002332361473236233,-1.6184008404450196e-20,-3.056753542105655e-20,3.10798259338233e-23,-4.573977915173222e-20,-7.129142704758646e-20,-4.2948574496945667e-20,0.00011661807366181165,-2.6890468797839724e-20,-3.081487534890698e-20,-2.2147726973777504e-20,0.00028344671591185033,9.351243737687476e-19,6.719077480361315e-19,-0.0003401360590942204,1.0977546996415732e-18,-1.1109254053967664e-19,-2.360167946168558e-20,-2.6621744958685094e-20,-5.620014361936442e-20,-8.991115923857854e-20,-4.7587655403735933e-20,-2.6890468797839724e-20,5.668934318237007e-05,-4.508821609180759e-20,-1.490735206420263e-19,0.0004373177944216877,5.610549994012157e-19,9.218487453227309e-19,-0.00014577258843928576,-0.0001749271177686751,-6.473603361780078e-20,-3.641401891001294e-20,-5.082197683525802e-21,-3.382566737575795e-20,-1.3872007573091513e-19,-4.404571325722362e-20,-3.081487534890698e-20,-4.508821609180759e-20,5.8309036830905825e-05,-1.16859398201152e-19,0.00036443150020204484,1.2552269340096714e-18,7.426096667256061e-19,1.2501515605661991e-18,-0.000546647235751152,-1.46994350473586e-19,-3.034501737393125e-20,-3.239577592800913e-22,-1.249113423048051e-19,-1.156000674173283e-19,-3.1114999739595944e-20,-2.2147726973777504e-20,-1.490735206420263e-19,-1.16859398201152e-19,0.00010932944860542193,7.0,5.0,7.0,7.0,0.02688983827829361,-0.0047376095317304134,-0.006184922996908426,-0.0047376095317304134,-0.0047376095317304134,0.00024295432376675308,0.0004373177944216877,0.00032798832398839295,0.00032798832398839295,0.00041649313061498106,0.0004373177944216877,0.0004373177944216877,0.00024295432376675308,0.00032798832398839295,0.00024295432376675308,-0.0047376095317304134,0.002842565532773733,0.0004373177944216877,0.00032798832398839295,0.00032798832398839295,-0.0002915451768785715,-0.00014577258843928576,-0.00010932944860542193,-0.00010932944860542193,-0.0,7.65943650265451e-22,6.711832549496022e-22,-0.0,-1.6826615659046485e-21,-6.206168518820225e-21,-0.006184922996908426,0.0004373177944216877,0.005591420456767082,0.0004373177944216877,0.0004373177944216877,-0.0,-0.00021865889721084386,1.0460994344666025e-21,3.910274455049018e-22,-0.0008329862612299621,-0.00021865889721084386,-0.00021865889721084386,2.7895985592270706e-21,-7.686836759471133e-21,1.0427398210216728e-21,-0.0047376095317304134,0.00032798832398839295,0.0004373177944216877,0.002842565532773733,0.00032798832398839295,-1.4192201918068687e-21,-0.0,-0.00010932944860542193,3.0749770822482156e-21,-0.0,-0.00014577258843928576,-0.0,-0.0002915451768785715,-0.00010932944860542193,5.357043386227534e-21,-0.0047376095317304134,0.00032798832398839295,0.0004373177944216877,0.00032798832398839295,0.002842565532773733,6.776263578034403e-21,-0.0,5.1503229539942196e-21,-0.00010932944860542193,-0.0,7.0580559015150895e-22,-0.00014577258843928576,1.3552527156068805e-20,-0.00010932944860542193,-0.0002915451768785715,0.00024295432376675308,-0.0002915451768785715,-0.0,-1.4192201918068687e-21,6.776263578034403e-21,4.8590864025754854e-05,-0.0,-0.0,-0.0,-0.0,1.1477480807092704e-38,1.6878508280736775e-38,1.0265070830761417e-22,-7.13641651134089e-39,-3.722072437902458e-22,0.0004373177944216877,-0.00014577258843928576,-0.00021865889721084386,-0.0,-0.0,-0.0,7.288629421964288e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00032798832398839295,-0.00010932944860542193,1.0460994344666025e-21,-0.00010932944860542193,5.1503229539942196e-21,-0.0,-0.0,3.644314710982144e-05,-1.0170965152131578e-21,-0.0,-1.2497207666803274e-22,-2.237277432353511e-22,-0.0,-0.0,-2.5408891688451805e-22,0.00032798832398839295,-0.00010932944860542193,3.910274455049018e-22,3.0749770822482156e-21,-0.00010932944860542193,-0.0,-0.0,-1.0170965152131578e-21,3.644314710982144e-05,-0.0,-1.303424776277091e-22,-6.408278007203821e-40,-2.224098785179761e-22,5.608872222929481e-22,3.129260809947008e-21,0.00041649313061498106,-0.0,-0.0008329862612299621,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00020824656530749053,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004373177944216877,7.65943650265451e-22,-0.00021865889721084386,-0.00014577258843928576,7.0580559015150895e-22,1.1477480807092704e-38,-0.0,-1.2497207666803274e-22,-1.303424776277091e-22,-0.0,7.288629421964288e-05,-2.9830367447616743e-22,-3.3325887111475396e-22,8.470329472543003e-22,-3.475799403405576e-22,0.0004373177944216877,6.711832549496022e-22,-0.00021865889721084386,-0.0,-0.00014577258843928576,1.6878508280736775e-38,-0.0,-2.237277432353511e-22,-6.408278007203821e-40,-0.0,-2.9830367447616743e-22,7.288629421964288e-05,-5.966073489523349e-22,1.7152460398855413e-21,2.9576646167118184e-40,0.00024295432376675308,-0.0,2.7895985592270706e-21,-0.0002915451768785715,1.3552527156068805e-20,1.0265070830761417e-22,-0.0,-0.0,-2.224098785179761e-22,-0.0,-3.3325887111475396e-22,-5.966073489523349e-22,4.8590864025754854e-05,-3.648757497663194e-21,-2.368768554568094e-22,0.00032798832398839295,-1.6826615659046485e-21,-7.686836759471133e-21,-0.00010932944860542193,-0.00010932944860542193,-7.13641651134089e-39,-0.0,-0.0,5.608872222929481e-22,-0.0,8.470329472543003e-22,1.7152460398855413e-21,-3.648757497663194e-21,3.644314710982144e-05,-7.86639018528028e-22,0.00024295432376675308,-6.206168518820225e-21,1.0427398210216728e-21,5.357043386227534e-21,-0.0002915451768785715,-3.722072437902458e-22,-0.0,-2.5408891688451805e-22,3.129260809947008e-21,-0.0,-3.475799403405576e-22,2.9576646167118184e-40,-2.368768554568094e-22,-7.86639018528028e-22,4.8590864025754854e-05,7.0,5.0,7.0,8.0,0.023975037038326263,-0.004177296068519354,-0.005454324651509523,-0.004177296068519354,-0.0037414967082440853,0.00021258502965793014,0.00038265305920504034,0.00028698978712782264,0.00025510202976875007,0.00036443150020204484,0.00038265305920504034,0.0003401360590942204,0.00021258502965793014,0.00025510202976875007,0.0001700680295471102,-0.004177296068519354,0.0024978742003440857,0.00038265305920504034,0.00028698978712782264,0.00025510202976875007,-0.00025510202976875007,-0.00012755101488437504,-9.566326480126008e-05,-8.50340147735551e-05,-1.8824285684670322e-18,-7.477969680457144e-19,-7.573184372816592e-19,2.6644083278088644e-21,-2.286851438809774e-19,-1.740875399138123e-19,-0.005454324651509523,0.00038265305920504034,0.004913751035928726,0.00038265305920504034,0.0003401360590942204,-1.7550522667109103e-18,-0.00019132652960252017,7.813032370762761e-20,-5.463185699934304e-19,-0.0007288630004040897,-0.00019132652960252017,-0.0001700680295471102,2.7235374032705926e-19,2.872677292232079e-19,5.130461410446284e-20,-0.004177296068519354,0.00028698978712782264,0.00038265305920504034,0.0024978742003440857,0.00025510202976875007,-3.070574049930797e-19,-2.1491829939807493e-19,-9.566326480126008e-05,-3.698967910144788e-19,1.024464326020267e-18,-0.00012755101488437504,-5.082197683525802e-20,-0.00025510202976875007,-8.50340147735551e-05,-1.6184138943890614e-19,-0.0037414967082440853,0.00025510202976875007,0.0003401360590942204,0.00025510202976875007,0.0019193391781300306,-3.4292504202793295e-19,-3.3044298998208433e-19,4.285222411145458e-20,-7.288629421964288e-05,2.6636771857734857e-19,-2.544617202799607e-19,-9.718172805150971e-05,-2.1006417091906648e-19,-7.288629421964288e-05,-0.0001700680295471102,0.00021258502965793014,-0.00025510202976875007,-1.7550522667109103e-18,-3.070574049930797e-19,-3.4292504202793295e-19,4.251700738677755e-05,5.082197683525802e-20,5.082197683525802e-21,-1.0164395367051604e-20,2.4276013899145e-19,8.024570887726127e-20,7.912182245639459e-20,7.944269260146987e-21,1.8431787708532086e-20,1.9158575736585026e-20,0.00038265305920504034,-0.00012755101488437504,-0.00019132652960252017,-2.1491829939807493e-19,-3.3044298998208433e-19,5.082197683525802e-20,6.377550744218752e-05,3.5329158611952574e-20,3.556713459677496e-20,1.9607549986033202e-19,4.738491214312948e-20,7.006210741036195e-20,-6.58276836460481e-35,4.046002101112549e-21,9.440672107791659e-21,0.00028698978712782264,-9.566326480126008e-05,7.813032370762761e-20,-9.566326480126008e-05,4.285222411145458e-20,5.082197683525802e-21,3.5329158611952574e-20,3.188775372109376e-05,5.931568385362845e-21,-6.06900347478625e-20,4.0963067891618577e-22,4.2658342346277525e-21,-5.726581074227414e-20,-8.470329472543003e-22,-1.4144954880131564e-20,0.00025510202976875007,-8.50340147735551e-05,-5.463185699934304e-19,-3.698967910144788e-19,-7.288629421964288e-05,-1.0164395367051604e-20,3.556713459677496e-20,5.931568385362845e-21,2.4295432012877427e-05,5.0093359962569514e-20,3.6525988791914503e-20,2.625802136488331e-20,2.772585013068439e-20,2.4063285017581383e-20,1.8191326950697775e-20,0.00036443150020204484,-1.8824285684670322e-18,-0.0007288630004040897,1.024464326020267e-18,2.6636771857734857e-19,2.4276013899145e-19,1.9607549986033202e-19,-6.06900347478625e-20,5.0093359962569514e-20,0.00018221575010102242,-3.6826878970904935e-20,3.6362904964270846e-20,-6.743337266010817e-20,-6.936003786545756e-20,-2.6973348417808416e-20,0.00038265305920504034,-7.477969680457144e-19,-0.00019132652960252017,-0.00012755101488437504,-2.544617202799607e-19,8.024570887726127e-20,4.738491214312948e-20,4.0963067891618577e-22,3.6525988791914503e-20,-3.6826878970904935e-20,6.377550744218752e-05,3.1901470787549145e-20,-1.55734430894804e-21,2.541098841762901e-21,9.701935165561972e-21,0.0003401360590942204,-7.573184372816592e-19,-0.0001700680295471102,-5.082197683525802e-20,-9.718172805150971e-05,7.912182245639459e-20,7.006210741036195e-20,4.2658342346277525e-21,2.625802136488331e-20,3.6362904964270846e-20,3.1901470787549145e-20,4.8590864025754854e-05,5.862186692975238e-22,-8.453967613844506e-21,-2.397262967771146e-22,0.00021258502965793014,2.6644083278088644e-21,2.7235374032705926e-19,-0.00025510202976875007,-2.1006417091906648e-19,7.944269260146987e-21,-6.58276836460481e-35,-5.726581074227414e-20,2.772585013068439e-20,-6.743337266010817e-20,-1.55734430894804e-21,5.862186692975238e-22,4.251700738677755e-05,-1.3252668529463364e-20,1.9554413971434327e-20,0.00025510202976875007,-2.286851438809774e-19,2.872677292232079e-19,-8.50340147735551e-05,-7.288629421964288e-05,1.8431787708532086e-20,4.046002101112549e-21,-8.470329472543003e-22,2.4063285017581383e-20,-6.936003786545756e-20,2.541098841762901e-21,-8.453967613844506e-21,-1.3252668529463364e-20,2.4295432012877427e-05,1.380800479631265e-20,0.0001700680295471102,-1.740875399138123e-19,5.130461410446284e-20,-1.6184138943890614e-19,-0.0001700680295471102,1.9158575736585026e-20,9.440672107791659e-21,-1.4144954880131564e-20,1.8191326950697775e-20,-2.6973348417808416e-20,9.701935165561972e-21,-2.397262967771146e-22,1.9554413971434327e-20,1.380800479631265e-20,2.4295432012877427e-05,7.0,5.0,8.0,3.0,0.04728599637746811,-0.00907738134264946,-0.011833900585770607,-0.008134921081364155,-0.01711309514939785,0.0004960317746736109,0.0008928571478463709,0.0005952381179668009,0.0013392857508733869,0.0008503401186317205,0.0007936508045531809,0.0017857142956927419,0.00039682540227659047,0.0011904762359336019,0.0017857142956927419,-0.00907738134264946,0.0056051588617265224,0.0008928571478463709,0.0005952381179668009,0.0013392857508733869,-0.0005952381179668009,-0.00029761905898340046,-0.00019841270113829523,-0.00044642857392318547,-5.383603687176343e-18,-1.8995998040078674e-18,-6.89670148881243e-18,-5.55653613398821e-19,-3.0493186101154812e-18,-1.7601407509670915e-17,-0.011833900585770607,0.0008928571478463709,0.01101899053901434,0.0007936508045531809,0.0017857142956927419,-4.472333961502706e-18,-0.00044642857392318547,-1.2979448155885942e-18,-4.9643840032410994e-18,-0.001700680237263441,-0.00039682540227659047,-0.0008928571478463709,1.8105855282731465e-19,-1.0357147061340242e-18,-1.806944615258812e-17,-0.008134921081364155,0.0005952381179668009,0.0007936508045531809,0.004308389965444803,0.0011904762359336019,-1.161532392820943e-18,-7.724940478959219e-19,-0.0001700680295471102,-3.1645953274614837e-18,3.3258567211193224e-19,-0.00022675737272948027,-1.3689873258952876e-18,-0.00039682540227659047,-0.0003401360590942204,-7.871362200729068e-18,-0.01711309514939785,0.0013392857508733869,0.0017857142956927419,0.0011904762359336019,0.0349702388048172,-7.03036270886273e-18,-5.100249246033547e-18,-3.914463090471936e-18,-0.0013392857508733869,-8.933572949449238e-18,-3.6425365630818666e-18,-0.0017857142956927419,-1.6805133673525319e-18,-0.0011904762359336019,-0.010714286006987095,0.0004960317746736109,-0.0005952381179668009,-4.472333961502706e-18,-1.161532392820943e-18,-7.03036270886273e-18,9.920635056914762e-05,2.1006417091906648e-19,4.0657581468206416e-20,2.846030702774449e-19,5.664403070804539e-19,1.844258370799561e-19,6.608470507765904e-19,4.45800590082358e-20,2.7554942337668717e-19,1.718202300999862e-18,0.0008928571478463709,-0.00029761905898340046,-0.00044642857392318547,-7.724940478959219e-19,-5.100249246033547e-18,2.1006417091906648e-19,0.00014880952949170023,7.962109704190423e-20,3.049318610115481e-19,4.575095125988051e-19,1.1041908627408776e-19,5.40224316830446e-19,2.1398962113942223e-20,1.5077186461126546e-19,1.1895247017376204e-18,0.0005952381179668009,-0.00019841270113829523,-1.2979448155885942e-18,-0.0001700680295471102,-3.914463090471936e-18,4.0657581468206416e-20,7.962109704190423e-20,5.668934318237007e-05,1.6940658945086007e-19,1.1688451088756122e-19,6.291723793420714e-20,2.8322015354022696e-19,-8.907684257765511e-21,1.6940658945086007e-19,1.0007112143453474e-18,0.0013392857508733869,-0.00044642857392318547,-4.9643840032410994e-18,-3.1645953274614837e-18,-0.0013392857508733869,2.846030702774449e-19,3.049318610115481e-19,1.6940658945086007e-19,0.00044642857392318547,5.664403070804539e-19,2.639791828598134e-19,6.616458487543752e-19,2.3223398135337717e-19,3.7007435050284215e-19,1.2124001747826212e-18,0.0008503401186317205,-5.383603687176343e-18,-0.001700680237263441,3.3258567211193224e-19,-8.933572949449238e-18,5.664403070804539e-19,4.575095125988051e-19,1.1688451088756122e-19,5.664403070804539e-19,0.00042517005931586027,-4.0417207952077335e-20,6.905177091561378e-19,-6.293781405194439e-20,5.394669683561683e-20,2.8322016904986345e-18,0.0007936508045531809,-1.8995998040078674e-18,-0.00039682540227659047,-0.00022675737272948027,-3.6425365630818666e-18,1.844258370799561e-19,1.1041908627408776e-19,6.291723793420714e-20,2.639791828598134e-19,-4.0417207952077335e-20,0.00011337868636474013,2.596634455620004e-19,1.8559467155826837e-21,1.0503208545953324e-19,9.06304470649211e-19,0.0017857142956927419,-6.89670148881243e-18,-0.0008928571478463709,-1.3689873258952876e-18,-0.0017857142956927419,6.608470507765904e-19,5.40224316830446e-19,2.8322015354022696e-19,6.616458487543752e-19,6.905177091561378e-19,2.596634455620004e-19,0.0008928571478463709,6.500013562306921e-34,4.1648235047373975e-33,2.9096888238997246e-32,0.00039682540227659047,-5.55653613398821e-19,1.8105855282731465e-19,-0.00039682540227659047,-1.6805133673525319e-18,4.45800590082358e-20,2.1398962113942223e-20,-8.907684257765511e-21,2.3223398135337717e-19,-6.293781405194439e-20,1.8559467155826837e-21,6.500013562306921e-34,5.668934318237007e-05,4.0657581468206416e-20,2.64338825480515e-19,0.0011904762359336019,-3.0493186101154812e-18,-1.0357147061340242e-18,-0.0003401360590942204,-0.0011904762359336019,2.7554942337668717e-19,1.5077186461126546e-19,1.6940658945086007e-19,3.7007435050284215e-19,5.394669683561683e-20,1.0503208545953324e-19,4.1648235047373975e-33,4.0657581468206416e-20,0.0003401360590942204,1.0551973944990622e-18,0.0017857142956927419,-1.7601407509670915e-17,-1.806944615258812e-17,-7.871362200729068e-18,-0.010714286006987095,1.718202300999862e-18,1.1895247017376204e-18,1.0007112143453474e-18,1.2124001747826212e-18,2.8322016904986345e-18,9.06304470649211e-19,2.9096888238997246e-32,2.64338825480515e-19,1.0551973944990622e-18,0.0053571430034935474,7.0,5.0,8.0,4.0,0.037942178547382355,-0.007008928339928389,-0.009143282659351826,-0.006279761902987957,-0.010803570970892906,0.00037202381645329297,0.0006696428754366934,0.00044642857392318547,0.0008035714272409678,0.0006377550889737904,0.0005952381179668009,0.0010714285308495164,0.00029761905898340046,0.0007142857066355646,0.0008928571478463709,-0.007008928339928389,0.0042708334513008595,0.0006696428754366934,0.00044642857392318547,0.0008035714272409678,-0.00044642857392318547,-0.00022321428696159273,-0.00014880952949170023,-0.0002678571327123791,-0.0,-2.5274370330619214e-21,-0.0,-6.776263578034403e-20,-6.776263578034403e-21,-0.0,-0.009143282659351826,0.0006696428754366934,0.00839817151427269,0.0005952381179668009,0.0010714285308495164,-2.710505431213761e-20,-0.0003348214377183467,-1.0604728487155443e-20,-1.0164395367051604e-20,-0.0012755101779475808,-0.00029761905898340046,-0.0005357142654247582,-6.659558410243401e-21,-1.1858461261560205e-20,-0.0,-0.006279761902987957,0.00044642857392318547,0.0005952381179668009,0.0032823130022734404,0.0007142857066355646,-2.5960129715613384e-20,-3.3881317890172014e-21,-0.00012755101488437504,5.828379219533989e-20,-0.0,-0.0001700680295471102,-0.0,-0.00029761905898340046,-0.0002040816325461492,-0.0,-0.010803570970892906,0.0008035714272409678,0.0010714285308495164,0.0007142857066355646,0.013452380895614624,-0.0,-1.0164395367051604e-20,4.404571325722362e-20,-0.0005357142654247582,-0.0,-1.1858461261560205e-20,-0.0007142857066355646,-1.3552527156068805e-20,-0.0004761904710903764,-0.0026785715017467737,0.00037202381645329297,-0.00044642857392318547,-2.710505431213761e-20,-2.5960129715613384e-20,-0.0,7.440476474585012e-05,6.776263578034403e-21,-0.0,-6.776263578034403e-21,-0.0,-4.56970385921567e-22,0.0,1.4296813204472153e-21,-7.121608555523612e-22,-0.0,0.0006696428754366934,-0.00022321428696159273,-0.0003348214377183467,-3.3881317890172014e-21,-1.0164395367051604e-20,6.776263578034403e-21,0.00011160714348079637,1.6940658945086007e-21,3.3881317890172014e-21,-0.0,-1.2393316421079658e-23,-0.0,-2.204708457911684e-22,-0.0,-0.0,0.00044642857392318547,-0.00014880952949170023,-1.0604728487155443e-20,-0.00012755101488437504,4.404571325722362e-20,-0.0,1.6940658945086007e-21,4.251700738677755e-05,-1.8634724839594607e-20,-0.0,1.5778660015937235e-21,-0.0,1.6940658945086007e-20,3.3881317890172014e-21,0.0,0.0008035714272409678,-0.0002678571327123791,-1.0164395367051604e-20,5.828379219533989e-20,-0.0005357142654247582,-6.776263578034403e-21,3.3881317890172014e-21,-1.8634724839594607e-20,0.00017857142665889114,-0.0,-6.483446123115501e-37,-0.0,-2.5443848955061407e-22,-3.0210149068761657e-22,-0.0,0.0006377550889737904,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-2.5274370330619214e-21,-0.00029761905898340046,-0.0001700680295471102,-1.1858461261560205e-20,-4.56970385921567e-22,-1.2393316421079658e-23,1.5778660015937235e-21,-6.483446123115501e-37,-0.0,8.50340147735551e-05,-0.0,2.091705912908976e-21,3.3881317890172014e-21,-0.0,0.0010714285308495164,-0.0,-0.0005357142654247582,-0.0,-0.0007142857066355646,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.00029761905898340046,-6.776263578034403e-20,-6.659558410243401e-21,-0.00029761905898340046,-1.3552527156068805e-20,1.4296813204472153e-21,-2.204708457911684e-22,1.6940658945086007e-20,-2.5443848955061407e-22,-0.0,2.091705912908976e-21,-0.0,4.251700738677755e-05,1.131508195508886e-20,-0.0,0.0007142857066355646,-6.776263578034403e-21,-1.1858461261560205e-20,-0.0002040816325461492,-0.0004761904710903764,-7.121608555523612e-22,-0.0,3.3881317890172014e-21,-3.0210149068761657e-22,-0.0,3.3881317890172014e-21,-0.0,1.131508195508886e-20,0.0001360544265480712,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0026785715017467737,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,7.0,5.0,8.0,5.0,0.03174319863319397,-0.0057142856530845165,-0.007457483094185591,-0.0051190475933253765,-0.007457483094185591,0.00029761905898340046,0.0005357142654247582,0.0003571428533177823,0.0005357142654247582,0.0005102040595375001,0.0004761904710903764,0.0007142857066355646,0.0002380952355451882,0.0004761904710903764,0.0005102040595375001,-0.0057142856530845165,0.0034523808863013983,0.0005357142654247582,0.0003571428533177823,0.0005357142654247582,-0.0003571428533177823,-0.00017857142665889114,-0.0001190476177725941,-0.00017857142665889114,-0.0,-5.7379652079921925e-22,-0.0,5.421010862427522e-20,6.776263578034403e-21,-0.0,-0.007457483094185591,0.0005357142654247582,0.006789966020733118,0.0004761904710903764,0.0007142857066355646,-1.3552527156068805e-20,-0.0002678571327123791,-3.1148954130492182e-21,-5.082197683525802e-21,-0.0010204081190750003,-0.0002380952355451882,-0.0003571428533177823,-1.8422836951913537e-21,6.564505341220828e-21,-0.0,-0.0051190475933253765,0.0003571428533177823,0.0004761904710903764,0.002653061179444194,0.0004761904710903764,-9.382519048907194e-21,-3.3881317890172014e-21,-0.0001020408162730746,3.3881317890172014e-20,-0.0,-0.0001360544265480712,-0.0,-0.0002380952355451882,-0.0001360544265480712,-0.0,-0.007457483094185591,0.0005357142654247582,0.0007142857066355646,0.0004761904710903764,0.006789966020733118,-1.3552527156068805e-20,-4.341043854678289e-21,3.3457801416544863e-20,-0.0002678571327123791,-0.0,5.929230630780102e-21,-0.0003571428533177823,1.3552527156068805e-20,-0.0002380952355451882,-0.0010204081190750003,0.00029761905898340046,-0.0003571428533177823,-1.3552527156068805e-20,-9.382519048907194e-21,-1.3552527156068805e-20,5.952380888629705e-05,6.776263578034403e-21,3.3881317890172014e-21,6.776263578034403e-21,-0.0,1.1434089600144886e-38,0.0,-4.425716359847044e-23,-5.212510638822994e-22,-0.0,0.0005357142654247582,-0.00017857142665889114,-0.0002678571327123791,-3.3881317890172014e-21,-4.341043854678289e-21,6.776263578034403e-21,8.928571332944557e-05,8.470329472543003e-22,1.6940658945086007e-21,-0.0,5.877471754111438e-39,-0.0,1.6780841026833513e-22,-2.117582368135751e-22,-0.0,0.0003571428533177823,-0.0001190476177725941,-3.1148954130492182e-21,-0.0001020408162730746,3.3457801416544863e-20,3.3881317890172014e-21,8.470329472543003e-22,3.40136066370178e-05,-1.0164395367051604e-20,-0.0,1.6394185587304865e-22,-0.0,-1.5246593050577406e-20,-8.470329472543003e-22,0.0,0.0005357142654247582,-0.00017857142665889114,-5.082197683525802e-21,3.3881317890172014e-20,-0.0002678571327123791,6.776263578034403e-21,1.6940658945086007e-21,-1.0164395367051604e-20,8.928571332944557e-05,-0.0,-4.70197740328915e-38,-0.0,-4.474891108779263e-22,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-5.7379652079921925e-22,-0.0002380952355451882,-0.0001360544265480712,5.929230630780102e-21,1.1434089600144886e-38,5.877471754111438e-39,1.6394185587304865e-22,-4.70197740328915e-38,-0.0,6.80272132740356e-05,-0.0,3.825309970371135e-22,-1.6940658945086007e-21,-0.0,0.0007142857066355646,-0.0,-0.0003571428533177823,-0.0,-0.0003571428533177823,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,0.0002380952355451882,5.421010862427522e-20,-1.8422836951913537e-21,-0.0002380952355451882,1.3552527156068805e-20,-4.425716359847044e-23,1.6780841026833513e-22,-1.5246593050577406e-20,-4.474891108779263e-22,-0.0,3.825309970371135e-22,-0.0,3.40136066370178e-05,-2.605025807115507e-21,-0.0,0.0004761904710903764,6.776263578034403e-21,6.564505341220828e-21,-0.0001360544265480712,-0.0002380952355451882,-5.212510638822994e-22,-2.117582368135751e-22,-8.470329472543003e-22,-0.0,-0.0,-1.6940658945086007e-21,-0.0,-2.605025807115507e-21,6.80272132740356e-05,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0010204081190750003,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,7.0,5.0,8.0,6.0,0.027310090139508247,-0.004825680050998926,-0.0062996032647788525,-0.004322562366724014,-0.005463435314595699,0.00024801588733680546,0.00044642857392318547,0.00029761905898340046,0.00038265305920504034,0.00042517005931586027,0.00039682540227659047,0.0005102040595375001,0.00019841270113829523,0.0003401360590942204,0.0003188775444868952,-0.004825680050998926,0.0028982425574213266,0.00044642857392318547,0.00029761905898340046,0.00038265305920504034,-0.00029761905898340046,-0.00014880952949170023,-9.920635056914762e-05,-0.00012755101488437504,-2.388351669848859e-18,-8.71596902724675e-19,-9.541972975378421e-19,-1.4516651396439108e-19,-2.3801744725058894e-19,1.775768850055936e-19,-0.0062996032647788525,0.00044642857392318547,0.005700821988284588,0.00039682540227659047,0.0005102040595375001,-2.1141942363467336e-18,-0.00022321428696159273,-5.888435633932636e-19,-2.786103793840455e-19,-0.0008503401186317205,-0.00019841270113829523,-0.00025510202976875007,1.0243218570844518e-19,5.071777792747048e-19,9.293161183025534e-19,-0.004322562366724014,0.00029761905898340046,0.00039682540227659047,0.0022270812187343836,0.0003401360590942204,-4.709946245349509e-19,-3.0469510641059896e-19,-8.50340147735551e-05,-1.7563458737913667e-19,4.7841298706347955e-19,-0.00011337868636474013,-1.1330860909949449e-19,-0.00019841270113829523,-9.718172805150971e-05,1.1042493082210333e-18,-0.005463435314595699,0.00038265305920504034,0.0005102040595375001,0.0003401360590942204,0.003939200658351183,-1.161614516346133e-19,-1.1212535308263152e-19,-2.317406456661717e-19,-0.0001530612207716331,1.5755036157695376e-18,1.8956529117150706e-19,-0.0002040816325461492,8.944667923005412e-19,-0.0001360544265480712,-0.00047831633128225803,0.00024801588733680546,-0.00029761905898340046,-2.1141942363467336e-18,-4.709946245349509e-19,-1.161614516346133e-19,4.960317528457381e-05,9.825582188149884e-20,2.371692252312041e-20,3.3881317890172014e-21,2.8322015354022696e-19,9.230879394285178e-20,9.063045094233022e-20,1.9648093791393092e-20,1.3666497134842127e-20,-2.950210094269411e-20,0.00044642857392318547,-0.00014880952949170023,-0.00022321428696159273,-3.0469510641059896e-19,-1.1212535308263152e-19,9.825582188149884e-20,7.440476474585012e-05,3.8609928173574074e-20,3.494086193784428e-20,2.2875475629940256e-19,5.543368969600015e-20,7.947178447898987e-20,1.1014117459090269e-20,-2.1578678411129306e-21,-2.6551890202189845e-20,0.00029761905898340046,-9.920635056914762e-05,-5.888435633932636e-19,-8.50340147735551e-05,-2.317406456661717e-19,2.371692252312041e-20,3.8609928173574074e-20,2.8344671591185033e-05,7.78274608967467e-21,5.844225544378061e-20,3.033607671473229e-20,3.560481978226014e-20,-4.4538421288827555e-21,1.5246593050577406e-20,1.180083973084279e-20,0.00038265305920504034,-0.00012755101488437504,-2.786103793840455e-19,-1.7563458737913667e-19,-0.0001530612207716331,3.3881317890172014e-21,3.494086193784428e-20,7.78274608967467e-21,5.10204081365373e-05,-8.092004202225098e-21,2.2657612735582555e-20,2.8084058110011065e-20,-3.009265538105056e-35,2.7683373113760085e-20,-9.6663882096485e-21,0.00042517005931586027,-2.388351669848859e-18,-0.0008503401186317205,4.7841298706347955e-19,1.5755036157695376e-18,2.8322015354022696e-19,2.2875475629940256e-19,5.844225544378061e-20,-8.092004202225098e-21,0.00021258502965793014,-2.0208603976038667e-20,-3.63754871568696e-20,-3.1468907025972196e-20,-1.1405873266810937e-19,-1.7701260565616466e-19,0.00039682540227659047,-8.71596902724675e-19,-0.00019841270113829523,-0.00011337868636474013,1.8956529117150706e-19,9.230879394285178e-20,5.543368969600015e-20,3.033607671473229e-20,2.2657612735582555e-20,-2.0208603976038667e-20,5.668934318237007e-05,3.2470772997377365e-21,-2.7425461995395816e-21,-1.2705494208814505e-20,-4.046002424229976e-20,0.0005102040595375001,-9.541972975378421e-19,-0.00025510202976875007,-1.1330860909949449e-19,-0.0002040816325461492,9.063045094233022e-20,7.947178447898987e-20,3.560481978226014e-20,2.8084058110011065e-20,-3.63754871568696e-20,3.2470772997377365e-21,0.0001020408162730746,5.416677968589101e-35,8.651638422052036e-35,-3.483840961741452e-35,0.00019841270113829523,-1.4516651396439108e-19,1.0243218570844518e-19,-0.00019841270113829523,8.944667923005412e-19,1.9648093791393092e-20,1.1014117459090269e-20,-4.4538421288827555e-21,-3.009265538105056e-35,-3.1468907025972196e-20,-2.7425461995395816e-21,5.416677968589101e-35,2.8344671591185033e-05,-6.577726013854898e-20,-1.2980923380809642e-19,0.0003401360590942204,-2.3801744725058894e-19,5.071777792747048e-19,-9.718172805150971e-05,-0.0001360544265480712,1.3666497134842127e-20,-2.1578678411129306e-21,1.5246593050577406e-20,2.7683373113760085e-20,-1.1405873266810937e-19,-1.2705494208814505e-20,8.651638422052036e-35,-6.577726013854898e-20,3.887269122060388e-05,-7.081616654923499e-20,0.0003188775444868952,1.775768850055936e-19,9.293161183025534e-19,1.1042493082210333e-18,-0.00047831633128225803,-2.950210094269411e-20,-2.6551890202189845e-20,1.180083973084279e-20,-9.6663882096485e-21,-1.7701260565616466e-19,-4.046002424229976e-20,-3.483840961741452e-35,-1.2980923380809642e-19,-7.081616654923499e-20,9.566326480126008e-05,7.0,5.0,8.0,7.0,0.023975037038326263,-0.004177296068519354,-0.005454324651509523,-0.0037414967082440853,-0.004177296068519354,0.00021258502965793014,0.00038265305920504034,0.00025510202976875007,0.00028698978712782264,0.00036443150020204484,0.0003401360590942204,0.00038265305920504034,0.0001700680295471102,0.00025510202976875007,0.00021258502965793014,-0.004177296068519354,0.0024978742003440857,0.00038265305920504034,0.00025510202976875007,0.00028698978712782264,-0.00025510202976875007,-0.00012755101488437504,-8.50340147735551e-05,-9.566326480126008e-05,-1.8824285684670322e-18,-7.435666112967534e-19,-7.349287777501684e-19,-1.4106213423778246e-19,-2.2720606739755016e-19,5.29571691031532e-20,-0.005454324651509523,0.00038265305920504034,0.004913751035928726,0.0003401360590942204,0.00038265305920504034,-1.7618285302889447e-18,-0.00019132652960252017,-5.333510663255897e-19,9.19135243946736e-20,-0.0007288630004040897,-0.0001700680295471102,-0.00019132652960252017,7.939932216486052e-20,3.1049935522070113e-19,2.989445467921303e-19,-0.0037414967082440853,0.00025510202976875007,0.0003401360590942204,0.0019193391781300306,0.00025510202976875007,-3.3302730901085313e-19,-3.3044298998208433e-19,-7.288629421964288e-05,4.9911777662242786e-20,2.6636771857734857e-19,-9.718172805150971e-05,-7.115076756936123e-20,-0.0001700680295471102,-7.288629421964288e-05,3.8333806237815924e-19,-0.004177296068519354,0.00028698978712782264,0.00038265305920504034,0.00025510202976875007,0.0024978742003440857,-3.0226746055972654e-19,-2.1491829939807493e-19,-3.863435714350824e-19,-9.566326480126008e-05,1.024464326020267e-18,8.369080626861952e-20,-0.00012755101488437504,5.149960319306146e-19,-8.50340147735551e-05,-0.00025510202976875007,0.00021258502965793014,-0.00025510202976875007,-1.7618285302889447e-18,-3.3302730901085313e-19,-3.0226746055972654e-19,4.251700738677755e-05,5.082197683525802e-20,-1.1858461261560205e-20,8.470329472543003e-21,2.4276013899145e-19,7.912182245639459e-20,8.024570887726127e-20,1.6800799182492056e-20,1.8431787708532086e-20,6.818415054151228e-21,0.00038265305920504034,-0.00012755101488437504,-0.00019132652960252017,-3.3044298998208433e-19,-2.1491829939807493e-19,5.082197683525802e-20,6.377550744218752e-05,3.556713459677496e-20,3.5329158611952574e-20,1.9607549986033202e-19,7.006210741036195e-20,4.738491214312948e-20,9.440672107791659e-21,4.046002101112549e-21,-1.2902225994625428e-34,0.00025510202976875007,-8.50340147735551e-05,-5.333510663255897e-19,-7.288629421964288e-05,-3.863435714350824e-19,-1.1858461261560205e-20,3.556713459677496e-20,2.4295432012877427e-05,2.898980795605956e-20,5.0093359962569514e-20,2.602577102086344e-20,3.247443876458417e-20,1.9415324843903243e-20,2.710505431213761e-20,1.922261761057253e-20,0.00028698978712782264,-9.566326480126008e-05,9.19135243946736e-20,4.9911777662242786e-20,-9.566326480126008e-05,8.470329472543003e-21,3.5329158611952574e-20,2.898980795605956e-20,3.188775372109376e-05,-6.06900347478625e-20,-4.713910598807074e-23,8.470329472543003e-22,-2.1472905921473355e-20,-4.888790900966113e-21,-6.167027608548052e-20,0.00036443150020204484,-1.8824285684670322e-18,-0.0007288630004040897,2.6636771857734857e-19,1.024464326020267e-18,2.4276013899145e-19,1.9607549986033202e-19,5.0093359962569514e-20,-6.06900347478625e-20,0.00018221575010102242,3.6362904964270846e-20,-3.6826878970904935e-20,-2.6973348417808416e-20,-6.936003786545756e-20,-6.743337266010817e-20,0.0003401360590942204,-7.435666112967534e-19,-0.0001700680295471102,-9.718172805150971e-05,8.369080626861952e-20,7.912182245639459e-20,7.006210741036195e-20,2.602577102086344e-20,-4.713910598807074e-23,3.6362904964270846e-20,4.8590864025754854e-05,1.110734329906441e-21,-1.6368409399454588e-22,-4.235164736271502e-21,-1.0915044001485004e-20,0.00038265305920504034,-7.349287777501684e-19,-0.00019132652960252017,-7.115076756936123e-20,-0.00012755101488437504,8.024570887726127e-20,4.738491214312948e-20,3.247443876458417e-20,8.470329472543003e-22,-3.6826878970904935e-20,1.110734329906441e-21,6.377550744218752e-05,2.4831745904062733e-22,-1.0124713315868933e-20,2.9971934279966044e-21,0.0001700680295471102,-1.4106213423778246e-19,7.939932216486052e-20,-0.0001700680295471102,5.149960319306146e-19,1.6800799182492056e-20,9.440672107791659e-21,1.9415324843903243e-20,-2.1472905921473355e-20,-2.6973348417808416e-20,-1.6368409399454588e-22,2.4831745904062733e-22,2.4295432012877427e-05,-2.2160422257475633e-20,-6.220505481384459e-20,0.00025510202976875007,-2.2720606739755016e-19,3.1049935522070113e-19,-7.288629421964288e-05,-8.50340147735551e-05,1.8431787708532086e-20,4.046002101112549e-21,2.710505431213761e-20,-4.888790900966113e-21,-6.936003786545756e-20,-4.235164736271502e-21,-1.0124713315868933e-20,-2.2160422257475633e-20,2.4295432012877427e-05,-7.138053213062721e-22,0.00021258502965793014,5.29571691031532e-20,2.989445467921303e-19,3.8333806237815924e-19,-0.00025510202976875007,6.818415054151228e-21,-1.2902225994625428e-34,1.922261761057253e-20,-6.167027608548052e-20,-6.743337266010817e-20,-1.0915044001485004e-20,2.9971934279966044e-21,-6.220505481384459e-20,-7.138053213062721e-22,4.251700738677755e-05,7.0,5.0,8.0,8.0,0.021371882408857346,-0.0036830357275903225,-0.0048097362741827965,-0.0032986111473292112,-0.0032986111473292112,0.00018601190822664648,0.0003348214377183467,0.00022321428696159273,0.00022321428696159273,0.0003188775444868952,0.00029761905898340046,0.00029761905898340046,0.00014880952949170023,0.00019841270113829523,0.00014880952949170023,-0.0036830357275903225,0.0021949405781924725,0.0003348214377183467,0.00022321428696159273,0.00022321428696159273,-0.00022321428696159273,-0.00011160714348079637,-7.440476474585012e-05,-7.440476474585012e-05,-0.0,9.676682200751135e-23,1.8065271925779054e-22,-2.371692252312041e-20,-1.1055409442851864e-20,-2.543038677234566e-20,-0.0048097362741827965,0.0003348214377183467,0.00431813346222043,0.00029761905898340046,0.00029761905898340046,-0.0,-0.00016741071885917336,1.8065271925779054e-22,9.676682200751135e-23,-0.0006377550889737904,-0.00014880952949170023,-0.00014880952949170023,4.2152301580876943e-22,-1.8145009683156207e-20,2.2578925766174706e-22,-0.0032986111473292112,0.00022321428696159273,0.00029761905898340046,0.0016865079523995519,0.00019841270113829523,-1.77866631672328e-21,-0.0,-6.377550744218752e-05,3.3032375318925452e-21,-0.0,-8.50340147735551e-05,-1.6940658945086007e-20,-0.00014880952949170023,-5.668934318237007e-05,-3.410339003524836e-20,-0.0032986111473292112,0.00022321428696159273,0.00029761905898340046,0.00019841270113829523,0.0016865079523995519,-0.0,-0.0,1.7175852888863828e-20,-6.377550744218752e-05,-0.0,7.090252533609652e-22,-8.50340147735551e-05,-0.0,-5.668934318237007e-05,-0.00014880952949170023,0.00018601190822664648,-0.00022321428696159273,-0.0,-1.77866631672328e-21,-0.0,3.720238237292506e-05,-0.0,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,1.9587910453718023e-40,2.5938258782406656e-39,-9.028894490279373e-22,-8.183348174034311e-38,-6.73709477868933e-22,0.0003348214377183467,-0.00011160714348079637,-0.00016741071885917336,-0.0,-0.0,-0.0,5.5803571740398183e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-7.440476474585012e-05,1.8065271925779054e-22,-6.377550744218752e-05,1.7175852888863828e-20,1.6940658945086007e-21,-0.0,2.1258503693388775e-05,-5.218297167065618e-21,-0.0,5.793249512510123e-39,-5.1615064898971313e-23,8.470329472543003e-21,-4.235164736271502e-22,8.528959003414222e-24,0.00022321428696159273,-7.440476474585012e-05,9.676682200751135e-23,3.3032375318925452e-21,-6.377550744218752e-05,1.6940658945086007e-21,-0.0,-5.218297167065618e-21,2.1258503693388775e-05,-0.0,-2.764766568460583e-23,-1.3955279172487275e-39,-1.7271210218382102e-23,3.582205001269621e-21,8.50847025359994e-21,0.0003188775444868952,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,9.676682200751135e-23,-0.00014880952949170023,-8.50340147735551e-05,7.090252533609652e-22,1.9587910453718023e-40,-0.0,5.793249512510123e-39,-2.764766568460583e-23,-0.0,4.251700738677755e-05,-6.882008653196175e-23,-2.2954389884411963e-39,-0.0,-6.451121467167423e-23,0.00029761905898340046,1.8065271925779054e-22,-0.00014880952949170023,-1.6940658945086007e-20,-8.50340147735551e-05,2.5938258782406656e-39,-0.0,-5.1615064898971313e-23,-1.3955279172487275e-39,-0.0,-6.882008653196175e-23,4.251700738677755e-05,-1.204351419646022e-22,5.184288654000395e-21,5.529453675302512e-40,0.00014880952949170023,-2.371692252312041e-20,4.2152301580876943e-22,-0.00014880952949170023,-0.0,-9.028894490279373e-22,-0.0,8.470329472543003e-21,-1.7271210218382102e-23,-0.0,-2.2954389884411963e-39,-1.204351419646022e-22,2.1258503693388775e-05,1.6780841026833513e-22,-6.62502806253393e-23,0.00019841270113829523,-1.1055409442851864e-20,-1.8145009683156207e-20,-5.668934318237007e-05,-5.668934318237007e-05,-8.183348174034311e-38,-0.0,-4.235164736271502e-22,3.582205001269621e-21,-0.0,-0.0,5.184288654000395e-21,1.6780841026833513e-22,1.6196954675251618e-05,9.91669516327032e-21,0.00014880952949170023,-2.543038677234566e-20,2.2578925766174706e-22,-3.410339003524836e-20,-0.00014880952949170023,-6.73709477868933e-22,-0.0,8.528959003414222e-24,8.50847025359994e-21,-0.0,-6.451121467167423e-23,5.529453675302512e-40,-6.62502806253393e-23,9.91669516327032e-21,2.1258503693388775e-05,7.0,6.0,3.0,3.0,0.08865582942962646,-0.018801964819431305,-0.021258503198623657,-0.03528911620378494,-0.03528911620378494,0.001102292793802917,0.001700680237263441,0.0029761905316263437,0.0029761905316263437,0.0014172336086630821,0.003401360474526882,0.003401360474526882,0.003968254197388887,0.0059523810632526875,0.003968254197388887,-0.018801964819431305,0.01199924387037754,0.001700680237263441,0.0029761905316263437,0.0029761905316263437,-0.0013227512827143073,-0.0005668934318237007,-0.0009920635493472219,-0.0009920635493472219,-5.421010862427522e-19,-0.0,-0.0,1.5407439555097887e-33,4.81482486096809e-34,1.5407439555097887e-33,-0.021258503198623657,0.001700680237263441,0.016298186033964157,0.003401360474526882,0.003401360474526882,-1.0842021724855044e-19,-0.0006802721181884408,1.910969453226197e-20,1.910969453226197e-20,-0.002125850412994623,-0.0013605442363768816,-0.0013605442363768816,1.055406857309676e-17,3.500239163846207e-18,1.055406857309676e-17,-0.03528911620378494,0.0029761905316263437,0.003401360474526882,0.07497165352106094,0.0059523810632526875,7.460648906171196e-20,7.453889935837843e-20,-0.0029761905316263437,3.344196543145845e-20,5.7462715141731735e-18,-0.003401360474526882,3.575303633086286e-19,-0.02380952425301075,-0.0059523810632526875,2.643388161747331e-17,-0.03528911620378494,0.0029761905316263437,0.003401360474526882,0.0059523810632526875,0.07497165352106094,5.421010862427522e-20,7.453889935837843e-20,3.344196543145845e-20,-0.0029761905316263437,5.719245869199841e-18,3.575303633086286e-19,-0.003401360474526882,3.0461902130388057e-17,-0.0059523810632526875,-0.02380952425301075,0.001102292793802917,-0.0013227512827143073,-1.0842021724855044e-19,7.460648906171196e-20,5.421010862427522e-20,0.00022045854711905122,-1.3552527156068805e-20,-2.710505431213761e-20,-2.710505431213761e-20,9.203254308324034e-21,5.212510537848798e-21,5.212510537848798e-21,-1.481484627795167e-35,-9.259278744353591e-36,2.2222268699462693e-35,0.001700680237263441,-0.0005668934318237007,-0.0006802721181884408,7.453889935837843e-20,7.453889935837843e-20,-1.3552527156068805e-20,0.00022675737272948027,-1.3552527156068805e-20,-1.3552527156068805e-20,1.8973538018496328e-19,-1.3552527156068805e-20,-1.3552527156068805e-20,-5.7777898331617076e-34,-1.6851887013388314e-34,-6.7407548053553255e-34,0.0029761905316263437,-0.0009920635493472219,1.910969453226197e-20,-0.0029761905316263437,3.344196543145845e-20,-2.710505431213761e-20,-1.3552527156068805e-20,0.0009920635493472219,-1.114732181048615e-20,3.970740782273728e-21,-0.0,-0.0,0.0,0.0,0.0,0.0029761905316263437,-0.0009920635493472219,1.910969453226197e-20,3.344196543145845e-20,-0.0029761905316263437,-2.710505431213761e-20,-1.3552527156068805e-20,-1.114732181048615e-20,0.0009920635493472219,3.970740782273728e-21,-0.0,-0.0,0.0,0.0,0.0,0.0014172336086630821,-5.421010862427522e-19,-0.002125850412994623,5.7462715141731735e-18,5.719245869199841e-18,9.203254308324034e-21,1.8973538018496328e-19,3.970740782273728e-21,3.970740782273728e-21,0.00042517005931586027,-5.421010862427522e-19,-5.421010862427522e-19,-1.888134460332423e-18,-5.664403070804539e-19,-1.888134460332423e-18,0.003401360474526882,-0.0,-0.0013605442363768816,-0.003401360474526882,3.575303633086286e-19,5.212510537848798e-21,-1.3552527156068805e-20,-0.0,-0.0,-5.421010862427522e-19,0.0013605442363768816,-9.40460574061464e-21,-1.1133961680370681e-18,-3.3401886592075693e-19,3.747681334590862e-33,0.003401360474526882,-0.0,-0.0013605442363768816,3.575303633086286e-19,-0.003401360474526882,5.212510537848798e-21,-1.3552527156068805e-20,-0.0,-0.0,-5.421010862427522e-19,-9.40460574061464e-21,0.0013605442363768816,3.9737142045746025e-33,-3.3401886592075693e-19,-1.1133961680370681e-18,0.003968254197388887,1.5407439555097887e-33,1.055406857309676e-17,-0.02380952425301075,3.0461902130388057e-17,-1.481484627795167e-35,-5.7777898331617076e-34,0.0,0.0,-1.888134460332423e-18,-1.1133961680370681e-18,3.9737142045746025e-33,0.011904762126505375,-4.028020099324441e-18,-1.3216940808736655e-17,0.0059523810632526875,4.81482486096809e-34,3.500239163846207e-18,-0.0059523810632526875,-0.0059523810632526875,-9.259278744353591e-36,-1.6851887013388314e-34,0.0,0.0,-5.664403070804539e-19,-3.3401886592075693e-19,-3.3401886592075693e-19,-4.028020099324441e-18,0.0059523810632526875,7.063065070775227e-33,0.003968254197388887,1.5407439555097887e-33,1.055406857309676e-17,2.643388161747331e-17,-0.02380952425301075,2.2222268699462693e-35,-6.7407548053553255e-34,0.0,0.0,-1.888134460332423e-18,3.747681334590862e-33,-1.1133961680370681e-18,-1.3216940808736655e-17,7.063065070775227e-33,0.011904762126505375,7.0,6.0,3.0,4.0,0.07158683240413666,-0.014547902159392834,-0.01645408198237419,-0.027359694242477417,-0.022363945841789246,0.0008267195662483573,0.0012755101779475808,0.0022321429569274187,0.0017857142956927419,0.0010629252064973116,0.0025510203558951616,0.0020408162381500006,0.0029761905316263437,0.0035714285913854837,0.0019841270986944437,-0.014547902159392834,0.009148242883384228,0.0012755101779475808,0.0022321429569274187,0.0017857142956927419,-0.0009920635493472219,-0.00042517005931586027,-0.0007440476329065859,-0.0005952381179668009,-1.6263032587282567e-19,-2.710505431213761e-20,-1.3552527156068805e-20,7.703719777548943e-34,1.4444474582904269e-34,3.3703774026776627e-34,-0.01645408198237419,0.0012755101779475808,0.012427721172571182,0.0025510203558951616,0.0020408162381500006,-5.421010862427522e-20,-0.0005102040595375001,-5.3834306901060457e-20,-3.7978611651611386e-20,-0.0015943878097459674,-0.0010204081190750003,-0.0008163265301845968,7.915551016232263e-18,1.6982945451975483e-18,3.7718617023611634e-18,-0.027359694242477417,0.0022321429569274187,0.0025510203558951616,0.05712159723043442,0.0035714285913854837,1.1072810931871021e-20,-4.0657581468206416e-20,-0.0022321429569274187,1.9780455614098647e-20,4.174178364069192e-18,-0.0025510203558951616,-2.386923490822498e-19,-0.01785714365541935,-0.0035714285913854837,9.251858814269842e-18,-0.022363945841789246,0.0017857142956927419,0.0020408162381500006,0.0035714285913854837,0.028798185288906097,5.421010862427522e-20,-3.049318610115481e-20,2.5175125620777757e-20,-0.0011904762359336019,3.179626233167338e-18,1.566831169884196e-19,-0.0013605442363768816,1.6294599453818815e-17,-0.0023809524718672037,-0.0059523810632526875,0.0008267195662483573,-0.0009920635493472219,-5.421010862427522e-20,1.1072810931871021e-20,5.421010862427522e-20,0.0001653439103392884,-0.0,-0.0,-2.710505431213761e-20,8.81910888535628e-21,3.6720389160561536e-21,1.952212282749243e-21,-2.169453889065005e-35,9.541056054665806e-37,3.6364467320734785e-36,0.0012755101779475808,-0.00042517005931586027,-0.0005102040595375001,-4.0657581468206416e-20,-3.049318610115481e-20,-0.0,0.0001700680295471102,1.3552527156068805e-20,1.0164395367051604e-20,4.0657581468206416e-20,-0.0,-0.0,-2.407412430484045e-34,-6.018531076210112e-35,-1.4444474582904269e-34,0.0022321429569274187,-0.0007440476329065859,-5.3834306901060457e-20,-0.0022321429569274187,2.5175125620777757e-20,-0.0,1.3552527156068805e-20,0.0007440476329065859,-8.391708540259252e-21,2.4281436536580555e-21,-8.275480229788904e-36,-8.275480229788904e-36,-5.989286492937488e-36,-5.989286403254386e-37,1.164583504667423e-36,0.0017857142956927419,-0.0005952381179668009,-3.7978611651611386e-20,1.9780455614098647e-20,-0.0011904762359336019,-2.710505431213761e-20,1.0164395367051604e-20,-8.391708540259252e-21,0.00039682540227659047,8.226803441044718e-22,2.1578678411129306e-21,5.754314444916207e-22,-1.4343384364620956e-35,2.7718232933342897e-37,-4.849093114929861e-37,0.0010629252064973116,-1.6263032587282567e-19,-0.0015943878097459674,4.174178364069192e-18,3.179626233167338e-18,8.81910888535628e-21,4.0657581468206416e-20,2.4281436536580555e-21,8.226803441044718e-22,0.0003188775444868952,-2.981555974335137e-19,-2.981555974335137e-19,-1.4161008452493172e-18,-3.398641894181512e-19,-6.608470507765904e-19,0.0025510203558951616,-2.710505431213761e-20,-0.0010204081190750003,-0.0025510203558951616,1.566831169884196e-19,3.6720389160561536e-21,-0.0,-8.275480229788904e-36,2.1578678411129306e-21,-2.981555974335137e-19,0.0010204081190750003,1.4901838065314656e-20,-8.350471518771953e-19,-2.0041132213739357e-19,1.092084210423815e-33,0.0020408162381500006,-1.3552527156068805e-20,-0.0008163265301845968,-2.386923490822498e-19,-0.0013605442363768816,1.952212282749243e-21,-0.0,-8.275480229788904e-36,5.754314444916207e-22,-2.981555974335137e-19,1.4901838065314656e-20,0.0005442177061922848,1.9466403181388014e-33,1.3429184186979492e-19,-3.1175093118628214e-19,0.0029761905316263437,7.703719777548943e-34,7.915551016232263e-18,-0.01785714365541935,1.6294599453818815e-17,-2.169453889065005e-35,-2.407412430484045e-34,-5.989286492937488e-36,-1.4343384364620956e-35,-1.4161008452493172e-18,-8.350471518771953e-19,1.9466403181388014e-33,0.008928571827709675,-2.4168120595946647e-18,-4.625929407134921e-18,0.0035714285913854837,1.4444474582904269e-34,1.6982945451975483e-18,-0.0035714285913854837,-0.0023809524718672037,9.541056054665806e-37,-6.018531076210112e-35,-5.989286403254386e-37,2.7718232933342897e-37,-3.398641894181512e-19,-2.0041132213739357e-19,1.3429184186979492e-19,-2.4168120595946647e-18,0.0023809524718672037,1.8241940307304362e-33,0.0019841270986944437,3.3703774026776627e-34,3.7718617023611634e-18,9.251858814269842e-18,-0.0059523810632526875,3.6364467320734785e-36,-1.4444474582904269e-34,1.164583504667423e-36,-4.849093114929861e-37,-6.608470507765904e-19,1.092084210423815e-33,-3.1175093118628214e-19,-4.625929407134921e-18,1.8241940307304362e-33,0.0019841270986944437,7.0,6.0,3.0,5.0,0.06013794243335724,-0.011876417323946953,-0.01343537401407957,-0.022363945841789246,-0.015476190485060215,0.0006613756413571537,0.0010204081190750003,0.0017857142956927419,0.0011904762359336019,0.0008503401186317205,0.0020408162381500006,0.0013605442363768816,0.0023809524718672037,0.0023809524718672037,0.0011337868636474013,-0.011876417323946953,0.007397959008812904,0.0010204081190750003,0.0017857142956927419,0.0011904762359336019,-0.0007936508045531809,-0.0003401360590942204,-0.0005952381179668009,-0.00039682540227659047,-5.421010862427522e-20,-2.2657611766230274e-19,-3.5499929394833083e-35,-1.5860329011843016e-18,-2.64338825480515e-19,-1.913647176364845e-34,-0.01343537401407957,0.0010204081190750003,0.010051020421087742,0.0020408162381500006,0.0013605442363768816,-0.0,-0.0004081632650922984,-2.300287178403108e-19,-2.3017257779664826e-21,-0.0012755101779475808,-0.0008163265301845968,-0.0005442177061922848,4.1573100834277045e-18,7.874888678475535e-19,1.872891382799449e-18,-0.022363945841789246,0.0017857142956927419,0.0020408162381500006,0.046173468232154846,0.0023809524718672037,1.3279187180575861e-21,-3.452588465001332e-21,-0.0017857142956927419,-1.9469935136006517e-38,3.74049749507499e-18,-0.0020408162381500006,-3.19765406593126e-19,-0.014285714365541935,-0.0023809524718672037,-2.2657612283218157e-18,-0.015476190485060215,0.0011904762359336019,0.0013605442363768816,0.0023809524718672037,0.01454081665724516,-0.0,-2.3017257779664826e-21,-2.64338825480515e-19,-0.0005952381179668009,2.1884868426777244e-18,-4.3220215440229253e-19,-0.0006802721181884408,-4.5315224566436314e-18,-0.0011904762359336019,-0.0022675737272948027,0.0006613756413571537,-0.0007936508045531809,-0.0,1.3279187180575861e-21,-0.0,0.00013227513409219682,-6.776263578034403e-21,-0.0,-0.0,-7.297514995326388e-21,3.798193703660673e-37,0.0,8.677266982663439e-36,1.9091751249104132e-36,-0.0,0.0010204081190750003,-0.0003401360590942204,-0.0004081632650922984,-3.452588465001332e-21,-2.3017257779664826e-21,-6.776263578034403e-21,0.0001360544265480712,1.1508628889832413e-21,7.6724192598882755e-22,4.0657581468206416e-20,-0.0,-0.0,-1.925929944387236e-34,-2.407412430484045e-35,-2.407412430484045e-35,0.0017857142956927419,-0.0005952381179668009,-2.300287178403108e-19,-0.0017857142956927419,-2.64338825480515e-19,-0.0,1.1508628889832413e-21,0.0005952381179668009,6.489977911569351e-39,-4.153726838065635e-34,2.2657611766230274e-19,3.5499929394833083e-35,1.5860329011843016e-18,2.64338825480515e-19,2.515500283985856e-34,0.0011904762359336019,-0.00039682540227659047,-2.3017257779664826e-21,-1.9469935136006517e-38,-0.0005952381179668009,-0.0,7.6724192598882755e-22,6.489977911569351e-39,0.00019841270113829523,1.88079096131566e-37,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008503401186317205,-5.421010862427522e-20,-0.0012755101779475808,3.74049749507499e-18,2.1884868426777244e-18,-7.297514995326388e-21,4.0657581468206416e-20,-4.153726838065635e-34,1.88079096131566e-37,0.00025510202976875007,-4.0657581468206416e-19,-2.574980159653073e-19,-1.1328806141609079e-18,-2.2657611766230274e-19,-3.2368019393839806e-19,0.0020408162381500006,-2.2657611766230274e-19,-0.0008163265301845968,-0.0020408162381500006,-4.3220215440229253e-19,3.798193703660673e-37,-0.0,2.2657611766230274e-19,-0.0,-4.0657581468206416e-19,0.0008163265301845968,8.131516293641283e-20,1.5070930907744114e-18,2.2891424706126044e-19,6.7407548053553255e-34,0.0013605442363768816,-3.5499929394833083e-35,-0.0005442177061922848,-3.19765406593126e-19,-0.0006802721181884408,0.0,-0.0,3.5499929394833083e-35,-0.0,-2.574980159653073e-19,8.131516293641283e-20,0.0002721088530961424,9.62964972193618e-34,5.823874962604696e-20,-1.2724528410191175e-19,0.0023809524718672037,-1.5860329011843016e-18,4.1573100834277045e-18,-0.014285714365541935,-4.5315224566436314e-18,8.677266982663439e-36,-1.925929944387236e-34,1.5860329011843016e-18,-0.0,-1.1328806141609079e-18,1.5070930907744114e-18,9.62964972193618e-34,0.0071428571827709675,2.054047624696334e-33,1.1328806141609079e-18,0.0023809524718672037,-2.64338825480515e-19,7.874888678475535e-19,-0.0023809524718672037,-0.0011904762359336019,1.9091751249104132e-36,-2.407412430484045e-35,2.64338825480515e-19,-0.0,-2.2657611766230274e-19,2.2891424706126044e-19,5.823874962604696e-20,2.054047624696334e-33,0.0011904762359336019,2.3764847608541777e-34,0.0011337868636474013,-1.913647176364845e-34,1.872891382799449e-18,-2.2657612283218157e-18,-0.0022675737272948027,-0.0,-2.407412430484045e-35,2.515500283985856e-34,-0.0,-3.2368019393839806e-19,6.7407548053553255e-34,-1.2724528410191175e-19,1.1328806141609079e-18,2.3764847608541777e-34,0.0005668934318237007,7.0,6.0,3.0,6.0,0.051889870315790176,-0.010038738138973713,-0.011358114890754223,-0.018920067697763443,-0.011358114890754223,0.0005511463969014585,0.0008503401186317205,0.0014880952658131719,0.0008503401186317205,0.0007086168043315411,0.001700680237263441,0.0009718172950670123,0.0019841270986944437,0.001700680237263441,0.0007086168043315411,-0.010038738138973713,0.006212207023054361,0.0008503401186317205,0.0014880952658131719,0.0008503401186317205,-0.0006613756413571537,-0.00028344671591185033,-0.0004960317746736109,-0.00028344671591185033,-2.168404344971009e-19,1.2076279534158575e-23,-2.479912356475839e-20,2.0289965543833648e-33,-4.466384739596731e-21,-1.9384566649813341e-19,-0.011358114890754223,0.0008503401186317205,0.008440637961030006,0.001700680237263441,0.0009718172950670123,-0.0,-0.0003401360590942204,4.795262138404368e-21,-2.710505431213761e-20,-0.0010629252064973116,-0.0006802721181884408,-0.00038872691220603883,5.27703428654838e-18,7.860465750519907e-19,7.339243736913759e-19,-0.018920067697763443,0.0014880952658131719,0.001700680237263441,0.038761336356401443,0.001700680237263441,4.9889324232255946e-20,3.540589496184464e-21,-0.0014880952658131719,7.693446934229455e-21,3.0357660829594124e-18,-0.001700680237263441,-8.419176752709695e-20,-0.011904762126505375,-0.001700680237263441,2.580728030934551e-18,-0.011358114890754223,0.0008503401186317205,0.0009718172950670123,0.001700680237263441,0.008440637961030006,-0.0,3.236513379365996e-21,1.0893083325574001e-20,-0.0003401360590942204,1.3767827793855639e-18,1.2197274440461925e-19,-0.00038872691220603883,8.331842894389375e-18,-0.0006802721181884408,-0.0010629252064973116,0.0005511463969014585,-0.0006613756413571537,-0.0,4.9889324232255946e-20,-0.0,0.00011022927355952561,-0.0,-1.3552527156068805e-20,-0.0,1.9539866013190408e-21,-9.894568456597533e-42,1.9693052680093243e-38,0.0,-4.913002862667524e-38,6.937549762069017e-22,0.0008503401186317205,-0.00028344671591185033,-0.0003401360590942204,3.540589496184464e-21,3.236513379365996e-21,-0.0,0.00011337868636474013,-1.5984206118272601e-21,1.5406320950334283e-22,8.131516293641283e-20,-0.0,-0.0,-3.851859888774472e-34,5.018690669853812e-22,-7.740612183067925e-22,0.0014880952658131719,-0.0004960317746736109,4.795262138404368e-21,-0.0014880952658131719,1.0893083325574001e-20,-1.3552527156068805e-20,-1.5984206118272601e-21,0.0004960317746736109,-3.6310276405590726e-21,-1.128474576789396e-36,-0.0,-3.291384182302405e-37,0.0,-4.821827097826537e-38,-2.8487500051875346e-36,0.0008503401186317205,-0.00028344671591185033,-2.710505431213761e-20,7.693446934229455e-21,-0.0003401360590942204,-0.0,1.5406320950334283e-22,-3.6310276405590726e-21,0.00011337868636474013,3.406457898747925e-22,-4.830511655891249e-24,9.919649264344642e-21,-4.264125961417003e-34,1.2846848995352482e-21,7.650856503088351e-20,0.0007086168043315411,-2.168404344971009e-19,-0.0010629252064973116,3.0357660829594124e-18,1.3767827793855639e-18,1.9539866013190408e-21,8.131516293641283e-20,-1.128474576789396e-36,3.406457898747925e-22,0.00021258502965793014,-2.710505431213761e-19,-1.2197274440461925e-19,-9.440672301662115e-19,-1.6027174960310142e-19,-1.8830826098376202e-19,0.001700680237263441,1.2076279534158575e-23,-0.0006802721181884408,-0.001700680237263441,1.2197274440461925e-19,-9.894568456597533e-42,-0.0,-0.0,-4.830511655891249e-24,-2.710505431213761e-19,0.0006802721181884408,-1.0164395367051604e-20,-5.566980840185341e-19,-9.646534420918806e-20,-1.509534882605254e-23,0.0009718172950670123,-2.479912356475839e-20,-0.00038872691220603883,-8.419176752709695e-20,-0.00038872691220603883,1.9693052680093243e-38,-0.0,-3.291384182302405e-37,9.919649264344642e-21,-1.2197274440461925e-19,-1.0164395367051604e-20,0.00015549076488241553,-0.0,4.3841102377890384e-20,8.447090867209092e-20,0.0019841270986944437,2.0289965543833648e-33,5.27703428654838e-18,-0.011904762126505375,8.331842894389375e-18,0.0,-3.851859888774472e-34,0.0,-4.264125961417003e-34,-9.440672301662115e-19,-5.566980840185341e-19,-0.0,0.0059523810632526875,-1.8413805577497008e-18,-1.2980923639303584e-18,0.001700680237263441,-4.466384739596731e-21,7.860465750519907e-19,-0.001700680237263441,-0.0006802721181884408,-4.913002862667524e-38,5.018690669853812e-22,-4.821827097826537e-38,1.2846848995352482e-21,-1.6027174960310142e-19,-9.646534420918806e-20,4.3841102377890384e-20,-1.8413805577497008e-18,0.0006802721181884408,6.197779178730704e-21,0.0007086168043315411,-1.9384566649813341e-19,7.339243736913759e-19,2.580728030934551e-18,-0.0010629252064973116,6.937549762069017e-22,-7.740612183067925e-22,-2.8487500051875346e-36,7.650856503088351e-20,-1.8830826098376202e-19,-1.509534882605254e-23,8.447090867209092e-20,-1.2980923639303584e-18,6.197779178730704e-21,0.00021258502965793014,7.0,6.0,3.0,7.0,0.045651793479919434,-0.00869574025273323,-0.009839650243520737,-0.01639941707253456,-0.00869574025273323,0.0004724111931864172,0.0007288630004040897,0.0012755101779475808,0.0006377550889737904,0.0006073858239687979,0.0014577260008081794,0.0007288630004040897,0.001700680237263441,0.0012755101779475808,0.0004724111931864172,-0.00869574025273323,0.005355118308216333,0.0007288630004040897,0.0012755101779475808,0.0006377550889737904,-0.0005668934318237007,-0.00024295432376675308,-0.00042517005931586027,-0.00021258502965793014,-5.421010862427522e-20,1.9042646050618292e-20,2.3133054179693014e-20,5.191214019504059e-34,-3.419069878734462e-21,7.957120124886109e-20,-0.009839650243520737,0.0007288630004040897,0.007276481948792934,0.0014577260008081794,0.0007288630004040897,2.710505431213761e-20,-0.0002915451768785715,-3.438361039244777e-20,2.0328790734103208e-20,-0.0009110787068493664,-0.000583090353757143,-0.0002915451768785715,4.5231720683599086e-18,7.724940478959219e-19,5.654233402161083e-19,-0.01639941707253456,0.0012755101779475808,0.0014577260008081794,0.03340622037649155,0.0012755101779475808,3.707719965701739e-21,-1.871137960233641e-20,-0.0012755101779475808,7.559422672363124e-21,2.6020852139652106e-18,-0.0014577260008081794,1.1035204587037975e-19,-0.010204081423580647,-0.0012755101779475808,-8.10957998078426e-19,-0.00869574025273323,0.0006377550889737904,0.0007288630004040897,0.0012755101779475808,0.005355118308216333,1.3552527156068805e-20,-4.935410687198503e-21,8.169812494180501e-21,-0.00021258502965793014,1.151693493024931e-18,9.486769009248164e-20,-0.00024295432376675308,-2.4545747157140886e-18,-0.00042517005931586027,-0.0005668934318237007,0.0004724111931864172,-0.0005668934318237007,2.710505431213761e-20,3.707719965701739e-21,1.3552527156068805e-20,9.448223863728344e-05,-6.776263578034403e-21,-0.0,-0.0,-4.11962602239117e-21,7.964774200088312e-37,5.061560005960578e-37,0.0,-1.2837569886178657e-37,-9.571387445259386e-22,0.0007288630004040897,-0.00024295432376675308,-0.0002915451768785715,-1.871137960233641e-20,-4.935410687198503e-21,-6.776263578034403e-21,9.718172805150971e-05,1.1461202925620212e-20,1.9969658638935947e-21,3.3881317890172014e-20,-6.776263578034403e-21,-1.6940658945086007e-21,-9.62964972193618e-35,4.2280957852542524e-22,4.241335774251992e-22,0.0012755101779475808,-0.00042517005931586027,-3.438361039244777e-20,-0.0012755101779475808,8.169812494180501e-21,-0.0,1.1461202925620212e-20,0.00042517005931586027,-2.7232708313935003e-21,3.76158192263132e-36,-7.52316384526264e-37,3.76158192263132e-37,-0.0,1.9605942362356955e-38,1.3569402157015747e-36,0.0006377550889737904,-0.00021258502965793014,2.0328790734103208e-20,7.559422672363124e-21,-0.00021258502965793014,-0.0,1.9969658638935947e-21,-2.7232708313935003e-21,7.086167897796258e-05,-1.2385385813072854e-21,-7.006623685107618e-22,-6.299296615772765e-21,-9.279338630066714e-35,7.873486146894924e-22,-2.4803379021269062e-20,0.0006073858239687979,-5.421010862427522e-20,-0.0009110787068493664,2.6020852139652106e-18,1.151693493024931e-18,-4.11962602239117e-21,3.3881317890172014e-20,3.76158192263132e-36,-1.2385385813072854e-21,0.00018221575010102242,-2.168404344971009e-19,-1.3552527156068805e-19,-8.092004460719039e-19,-1.2005879063883933e-19,-1.2090752964610702e-19,0.0014577260008081794,1.9042646050618292e-20,-0.000583090353757143,-0.0014577260008081794,9.486769009248164e-20,7.964774200088312e-37,-6.776263578034403e-21,-7.52316384526264e-37,-7.006623685107618e-22,-2.168404344971009e-19,0.000583090353757143,-3.3881317890172014e-21,-4.771697863016006e-19,-7.215055751129934e-20,-1.8684329826953647e-21,0.0007288630004040897,2.3133054179693014e-20,-0.0002915451768785715,1.1035204587037975e-19,-0.00024295432376675308,5.061560005960578e-37,-1.6940658945086007e-21,3.76158192263132e-37,-6.299296615772765e-21,-1.3552527156068805e-19,-3.3881317890172014e-21,9.718172805150971e-05,6.98149604840373e-34,-3.396057536378652e-20,1.380895153037311e-20,0.001700680237263441,5.191214019504059e-34,4.5231720683599086e-18,-0.010204081423580647,-2.4545747157140886e-18,0.0,-9.62964972193618e-35,-0.0,-9.279338630066714e-35,-8.092004460719039e-19,-4.771697863016006e-19,6.98149604840373e-34,0.005102040711790323,5.537048590113303e-34,4.090957945688128e-19,0.0012755101779475808,-3.419069878734462e-21,7.724940478959219e-19,-0.0012755101779475808,-0.00042517005931586027,-1.2837569886178657e-37,4.2280957852542524e-22,1.9605942362356955e-38,7.873486146894924e-22,-1.2005879063883933e-19,-7.215055751129934e-20,-3.396057536378652e-20,5.537048590113303e-34,0.00042517005931586027,-8.541596050244883e-22,0.0004724111931864172,7.957120124886109e-20,5.654233402161083e-19,-8.10957998078426e-19,-0.0005668934318237007,-9.571387445259386e-22,4.241335774251992e-22,1.3569402157015747e-36,-2.4803379021269062e-20,-1.2090752964610702e-19,-1.8684329826953647e-21,1.380895153037311e-20,4.090957945688128e-19,-8.541596050244883e-22,9.448223863728344e-05,7.0,6.0,3.0,8.0,0.04076318070292473,-0.007670776452869177,-0.0086805559694767,-0.014473497867584229,-0.0068735829554498196,0.00041335978312417865,0.0006377550889737904,0.0011160714784637094,0.0004960317746736109,0.0005314626032486558,0.0012755101779475808,0.0005668934318237007,0.0014880952658131719,0.0009920635493472219,0.0003306878206785768,-0.007670776452869177,0.004706396255642176,0.0006377550889737904,0.0011160714784637094,0.0004960317746736109,-0.0004960317746736109,-0.00021258502965793014,-0.00037202381645329297,-0.0001653439103392884,-8.425943506694157e-35,7.561630003786191e-36,-5.929230630780102e-21,-6.417824925842846e-34,2.030834779592211e-34,6.972039780684658e-20,-0.0086805559694767,0.0006377550889737904,0.006395266391336918,0.0012755101779475808,0.0005668934318237007,2.710505431213761e-20,-0.00025510202976875007,-3.0085657477804664e-20,-1.9300634313268205e-20,-0.0007971939048729837,-0.0005102040595375001,-0.00022675737272948027,3.540251958026928e-18,4.720336150831057e-19,3.601352584551347e-19,-0.014473497867584229,0.0011160714784637094,0.0012755101779475808,0.02935444936156273,0.0009920635493472219,1.157140697078443e-20,-3.0085657477804664e-20,-0.0011160714784637094,-1.5982519401346478e-34,2.116444581203184e-18,-0.0012755101779475808,9.440671784674232e-20,-0.008928571827709675,-0.0009920635493472219,1.1014117685272467e-18,-0.0068735829554498196,0.0004960317746736109,0.0005668934318237007,0.0009920635493472219,0.0036173199769109488,-1.3552527156068805e-20,-1.3371403682488102e-20,-1.576966854108407e-36,-0.00014172335795592517,8.330085652575583e-19,9.440671784674232e-20,-0.0001619695540284738,5.0058038316437734e-18,-0.00028344671591185033,-0.0003306878206785768,0.00041335978312417865,-0.0004960317746736109,2.710505431213761e-20,1.157140697078443e-20,-1.3552527156068805e-20,8.26719551696442e-05,-0.0,-6.776263578034403e-21,-3.3881317890172014e-21,-0.0,0.0,1.4467623318312179e-38,0.0,0.0,2.3456297622267984e-21,0.0006377550889737904,-0.00021258502965793014,-0.00025510202976875007,-3.0085657477804664e-20,-1.3371403682488102e-20,-0.0,8.50340147735551e-05,1.0028552761866077e-20,4.457134695461629e-21,0.0,-0.0,1.5983278667453923e-37,0.0,-0.0,-1.9335658793519213e-36,0.0011160714784637094,-0.00037202381645329297,-3.0085657477804664e-20,-0.0011160714784637094,-1.576966854108407e-36,-6.776263578034403e-21,1.0028552761866077e-20,0.00037202381645329297,5.256556180361357e-37,0.0,-0.0,0.0,0.0,-0.0,-0.0,0.0004960317746736109,-0.0001653439103392884,-1.9300634313268205e-20,-1.5982519401346478e-34,-0.00014172335795592517,-3.3881317890172014e-21,4.457134695461629e-21,5.256556180361357e-37,4.724111931864172e-05,2.407412430484045e-35,-2.1604657409912265e-36,1.6940658945086007e-21,1.8336643137241147e-34,-5.80238475656526e-35,-2.4276284025313788e-20,0.0005314626032486558,-8.425943506694157e-35,-0.0007971939048729837,2.116444581203184e-18,8.330085652575583e-19,-0.0,0.0,0.0,2.407412430484045e-35,0.0001594387722434476,-1.479680842262287e-19,-7.515839301369529e-20,-7.080504226246586e-19,-9.440671784674232e-20,-7.867226918051762e-20,0.0012755101779475808,7.561630003786191e-36,-0.0005102040595375001,-0.0012755101779475808,9.440671784674232e-20,0.0,-0.0,-0.0,-2.1604657409912265e-36,-1.479680842262287e-19,0.0005102040595375001,-3.7762688431166636e-20,6.571102960705341e-34,8.761470805597739e-35,6.655170321832068e-35,0.0005668934318237007,-5.929230630780102e-21,-0.00022675737272948027,9.440671784674232e-20,-0.0001619695540284738,1.4467623318312179e-38,1.5983278667453923e-37,0.0,1.6940658945086007e-21,-7.515839301369529e-20,-3.7762688431166636e-20,6.478781870100647e-05,1.925929944387236e-34,-4.828070983345178e-35,9.493161725978264e-21,0.0014880952658131719,-6.417824925842846e-34,3.540251958026928e-18,-0.008928571827709675,5.0058038316437734e-18,0.0,0.0,0.0,1.8336643137241147e-34,-7.080504226246586e-19,6.571102960705341e-34,1.925929944387236e-34,0.004464285913854837,-1.1508629002923513e-18,-5.507058842636234e-19,0.0009920635493472219,2.030834779592211e-34,4.720336150831057e-19,-0.0009920635493472219,-0.00028344671591185033,0.0,-0.0,-0.0,-5.80238475656526e-35,-9.440671784674232e-20,8.761470805597739e-35,-4.828070983345178e-35,-1.1508629002923513e-18,0.00028344671591185033,5.3162633151744e-35,0.0003306878206785768,6.972039780684658e-20,3.601352584551347e-19,1.1014117685272467e-18,-0.0003306878206785768,2.3456297622267984e-21,-1.9335658793519213e-36,-0.0,-2.4276284025313788e-20,-7.867226918051762e-20,6.655170321832068e-35,9.493161725978264e-21,-5.507058842636234e-19,5.3162633151744e-35,4.724111931864172e-05,7.0,6.0,4.0,3.0,0.07158683240413666,-0.014547902159392834,-0.01645408198237419,-0.022363945841789246,-0.027359694242477417,0.0008267195662483573,0.0012755101779475808,0.0017857142956927419,0.0022321429569274187,0.0010629252064973116,0.0020408162381500006,0.0025510203558951616,0.0019841270986944437,0.0035714285913854837,0.0029761905316263437,-0.014547902159392834,0.009148242883384228,0.0012755101779475808,0.0017857142956927419,0.0022321429569274187,-0.0009920635493472219,-0.00042517005931586027,-0.0005952381179668009,-0.0007440476329065859,-1.6263032587282567e-19,-1.3552527156068805e-20,-2.710505431213761e-20,4.333342374871281e-34,1.4444474582904269e-34,7.703719777548943e-34,-0.01645408198237419,0.0012755101779475808,0.012427721172571182,0.0020408162381500006,0.0025510203558951616,-2.710505431213761e-20,-0.0005102040595375001,-3.7978611651611386e-20,-5.3834306901060457e-20,-0.0015943878097459674,-0.0008163265301845968,-0.0010204081190750003,3.7718617023611634e-18,1.6982945451975483e-18,7.915551016232263e-18,-0.022363945841789246,0.0017857142956927419,0.0020408162381500006,0.028798185288906097,0.0035714285913854837,8.115151688444658e-20,-2.0328790734103208e-20,-0.0011904762359336019,-1.2429717362468154e-19,3.144186300207963e-18,-0.0013605442363768816,2.718243188856312e-19,-0.0059523810632526875,-0.0023809524718672037,-1.380037861641852e-32,-0.027359694242477417,0.0022321429569274187,0.0025510203558951616,0.0035714285913854837,0.05712159723043442,-0.0,-6.098637220230962e-20,-1.2969185170929632e-19,-0.0022321429569274187,4.1936729431555356e-18,-1.235511471850382e-19,-0.0025510203558951616,-8.445610261867383e-33,-0.0035714285913854837,-0.01785714365541935,0.0008267195662483573,-0.0009920635493472219,-2.710505431213761e-20,8.115151688444658e-20,-0.0,0.0001653439103392884,-0.0,-2.710505431213761e-20,-1.3552527156068805e-20,8.963189369337526e-21,1.952212282749243e-21,3.6720389160561536e-21,-1.1178398828413379e-35,-3.6755338563933166e-36,-2.169453889065005e-35,0.0012755101779475808,-0.00042517005931586027,-0.0005102040595375001,-2.0328790734103208e-20,-6.098637220230962e-20,-0.0,0.0001700680295471102,6.776263578034403e-21,2.0328790734103208e-20,4.0657581468206416e-20,-0.0,-0.0,-1.4444474582904269e-34,-4.81482486096809e-35,-2.407412430484045e-34,0.0017857142956927419,-0.0005952381179668009,-3.7978611651611386e-20,-0.0011904762359336019,-1.2969185170929632e-19,-2.710505431213761e-20,6.776263578034403e-21,0.00039682540227659047,4.143239120822718e-20,2.6957260805025896e-21,5.754314444916207e-22,2.1578678411129306e-21,-4.849093114929861e-37,2.7718232933342897e-37,-1.4343384364620956e-35,0.0022321429569274187,-0.0007440476329065859,-5.3834306901060457e-20,-1.2429717362468154e-19,-0.0022321429569274187,-1.3552527156068805e-20,2.0328790734103208e-20,4.143239120822718e-20,0.0007440476329065859,-1.317947920112376e-21,-8.275480229788904e-36,-8.275480229788904e-36,1.164583504667423e-36,-5.989286403254386e-37,-5.989286492937488e-36,0.0010629252064973116,-1.6263032587282567e-19,-0.0015943878097459674,3.144186300207963e-18,4.1936729431555356e-18,8.963189369337526e-21,4.0657581468206416e-20,2.6957260805025896e-21,-1.317947920112376e-21,0.0003188775444868952,-2.981555974335137e-19,-2.981555974335137e-19,-6.608470507765904e-19,-3.398641894181512e-19,-1.4161008452493172e-18,0.0020408162381500006,-1.3552527156068805e-20,-0.0008163265301845968,-0.0013605442363768816,-1.235511471850382e-19,1.952212282749243e-21,-0.0,5.754314444916207e-22,-8.275480229788904e-36,-2.981555974335137e-19,0.0005442177061922848,-3.11546430166874e-20,-3.1175093118628214e-19,1.3429184186979492e-19,1.3938074371634912e-33,0.0025510203558951616,-2.710505431213761e-20,-0.0010204081190750003,2.718243188856312e-19,-0.0025510203558951616,3.6720389160561536e-21,-0.0,2.1578678411129306e-21,-8.275480229788904e-36,-2.981555974335137e-19,-3.11546430166874e-20,0.0010204081190750003,6.858259700221918e-34,-2.0041132213739357e-19,-8.350471518771953e-19,0.0019841270986944437,4.333342374871281e-34,3.7718617023611634e-18,-0.0059523810632526875,-8.445610261867383e-33,-1.1178398828413379e-35,-1.4444474582904269e-34,-4.849093114929861e-37,1.164583504667423e-36,-6.608470507765904e-19,-3.1175093118628214e-19,6.858259700221918e-34,0.0019841270986944437,5.720339383475191e-34,2.9347504001934543e-33,0.0035714285913854837,1.4444474582904269e-34,1.6982945451975483e-18,-0.0023809524718672037,-0.0035714285913854837,-3.6755338563933166e-36,-4.81482486096809e-35,2.7718232933342897e-37,-5.989286403254386e-37,-3.398641894181512e-19,1.3429184186979492e-19,-2.0041132213739357e-19,5.720339383475191e-34,0.0023809524718672037,1.5546386660784928e-33,0.0029761905316263437,7.703719777548943e-34,7.915551016232263e-18,-1.380037861641852e-32,-0.01785714365541935,-2.169453889065005e-35,-2.407412430484045e-34,-1.4343384364620956e-35,-5.989286492937488e-36,-1.4161008452493172e-18,1.3938074371634912e-33,-8.350471518771953e-19,2.9347504001934543e-33,1.5546386660784928e-33,0.008928571827709675,7.0,6.0,4.0,4.0,0.05764526501297951,-0.011245748028159142,-0.012723213993012905,-0.0173086728900671,-0.0173086728900671,0.0006200397037900984,0.0009566326625645161,0.0013392857508733869,0.0013392857508733869,0.0007971939048729837,0.0015306122368201613,0.0015306122368201613,0.0014880952658131719,0.002142857061699033,0.0014880952658131719,-0.011245748028159142,0.00697278929874301,0.0009566326625645161,0.0013392857508733869,0.0013392857508733869,-0.0007440476329065859,-0.0003188775444868952,-0.00044642857392318547,-0.00044642857392318547,-1.6263032587282567e-19,-1.7618285302889447e-19,-1.7618285302889447e-19,-7.434529256613157e-19,-4.758098496757752e-19,-7.434529256613157e-19,-0.012723213993012905,0.0009566326625645161,0.009473851881921291,0.0015306122368201613,0.0015306122368201613,-8.131516293641283e-20,-0.00038265305920504034,-1.723517272477639e-19,-1.723517272477639e-19,-0.001195790828205645,-0.0006122448830865324,-0.0006122448830865324,1.80930352757066e-18,1.2532800868898454e-19,1.80930352757066e-18,-0.0173086728900671,0.0013392857508733869,0.0015306122368201613,0.021955782547593117,0.002142857061699033,9.923154280631622e-21,-1.0164395367051604e-20,-0.0008928571478463709,-2.609701582852869e-19,2.222614453595284e-18,-0.0010204081190750003,-5.13839736831842e-19,-0.004464285913854837,-0.0014285714132711291,-1.1895247017376204e-18,-0.0173086728900671,0.0013392857508733869,0.0015306122368201613,0.002142857061699033,0.021955782547593117,2.710505431213761e-20,-1.0164395367051604e-20,-2.609701582852869e-19,-0.0008928571478463709,2.216121499377049e-18,-5.13839736831842e-19,-0.0010204081190750003,-1.1895247017376204e-18,-0.0014285714132711291,-0.004464285913854837,0.0006200397037900984,-0.0007440476329065859,-8.131516293641283e-20,9.923154280631622e-21,2.710505431213761e-20,0.00012400794366840273,-1.3552527156068805e-20,-0.0,-0.0,9.958624496156235e-21,1.1110458353006946e-21,1.1110458353006946e-21,-8.595533391082827e-36,6.764564621362505e-36,2.6984184548220834e-35,0.0009566326625645161,-0.0003188775444868952,-0.00038265305920504034,-1.0164395367051604e-20,-1.0164395367051604e-20,-1.3552527156068805e-20,0.00012755101488437504,3.3881317890172014e-21,3.3881317890172014e-21,4.0657581468206416e-20,-0.0,-0.0,-1.2037062152420224e-34,-3.611118645726067e-35,-1.2037062152420224e-34,0.0013392857508733869,-0.00044642857392318547,-1.723517272477639e-19,-0.0008928571478463709,-2.609701582852869e-19,-0.0,3.3881317890172014e-21,0.00029761905898340046,7.868226804928929e-21,-1.2482292768331568e-21,1.128564902712489e-19,-2.1578677906258326e-22,4.956353010071399e-19,1.5860328753349075e-19,1.4615406843959436e-34,0.0013392857508733869,-0.00044642857392318547,-1.723517272477639e-19,-2.609701582852869e-19,-0.0008928571478463709,-0.0,3.3881317890172014e-21,7.868226804928929e-21,0.00029761905898340046,-1.2482292768331568e-21,-2.1578677906258326e-22,1.128564902712489e-19,1.4615406843959436e-34,1.5860328753349075e-19,4.956353010071399e-19,0.0007971939048729837,-1.6263032587282567e-19,-0.001195790828205645,2.222614453595284e-18,2.216121499377049e-18,9.958624496156235e-21,4.0657581468206416e-20,-1.2482292768331568e-21,-1.2482292768331568e-21,0.00023915816564112902,-1.7618285302889447e-19,-1.7618285302889447e-19,-4.956353010071399e-19,-2.0391851623583012e-19,-4.956353010071399e-19,0.0015306122368201613,-1.7618285302889447e-19,-0.0006122448830865324,-0.0010204081190750003,-5.13839736831842e-19,1.1110458353006946e-21,-0.0,1.128564902712489e-19,-2.1578677906258326e-22,-1.7618285302889447e-19,0.0004081632650922984,2.6941930094815606e-20,4.459151804465908e-19,2.9808818221359065e-19,6.343164963353803e-34,0.0015306122368201613,-1.7618285302889447e-19,-0.0006122448830865324,-5.13839736831842e-19,-0.0010204081190750003,1.1110458353006946e-21,-0.0,-2.1578677906258326e-22,1.128564902712489e-19,-1.7618285302889447e-19,2.6941930094815606e-20,0.0004081632650922984,6.343164963353803e-34,2.9808818221359065e-19,4.459151804465908e-19,0.0014880952658131719,-7.434529256613157e-19,1.80930352757066e-18,-0.004464285913854837,-1.1895247017376204e-18,-8.595533391082827e-36,-1.2037062152420224e-34,4.956353010071399e-19,1.4615406843959436e-34,-4.956353010071399e-19,4.459151804465908e-19,6.343164963353803e-34,0.0014880952658131719,7.930164505921508e-19,1.6874814663359118e-33,0.002142857061699033,-4.758098496757752e-19,1.2532800868898454e-19,-0.0014285714132711291,-0.0014285714132711291,6.764564621362505e-36,-3.611118645726067e-35,1.5860328753349075e-19,1.5860328753349075e-19,-2.0391851623583012e-19,2.9808818221359065e-19,2.9808818221359065e-19,7.930164505921508e-19,0.0009523809421807528,7.930164505921508e-19,0.0014880952658131719,-7.434529256613157e-19,1.80930352757066e-18,-1.1895247017376204e-18,-0.004464285913854837,2.6984184548220834e-35,-1.2037062152420224e-34,1.4615406843959436e-34,4.956353010071399e-19,-4.956353010071399e-19,6.343164963353803e-34,4.459151804465908e-19,1.6874814663359118e-33,7.930164505921508e-19,0.0014880952658131719,7.0,6.0,4.0,5.0,0.04833900183439255,-0.009175170212984085,-0.010382653214037418,-0.01413265336304903,-0.011964285746216774,0.0004960317746736109,0.0007653061184100807,0.0010714285308495164,0.0008928571478463709,0.0006377550889737904,0.0012244897661730647,0.0010204081190750003,0.0011904762359336019,0.0014285714132711291,0.0008503401186317205,-0.009175170212984085,0.005637755151838064,0.0007653061184100807,0.0010714285308495164,0.0008928571478463709,-0.0005952381179668009,-0.00025510202976875007,-0.0003571428533177823,-0.00029761905898340046,1.0887171569133661e-19,-1.0873413229101432e-18,-2.3156437347763666e-18,-8.734219733486967e-19,-3.6814165334136966e-18,-5.67851218711528e-18,-0.010382653214037418,0.0007653061184100807,0.007660714443773031,0.0012244897661730647,0.0010204081190750003,-1.3552527156068805e-19,-0.0003061224415432662,3.3106291015240454e-19,-2.717087927733305e-18,-0.0009566326625645161,-0.0004897959297522902,-0.0004081632650922984,-1.6281863353927336e-18,-4.871786923930076e-18,-7.242946471927633e-18,-0.01413265336304903,0.0010714285308495164,0.0012244897661730647,0.01775510236620903,0.0014285714132711291,-9.372697700849804e-19,-1.2782986556550004e-18,-0.0007142857066355646,-3.624743494515545e-18,-1.0299920638612292e-18,-0.0008163265301845968,-4.910731414349685e-18,-0.0035714285913854837,-0.0009523809421807528,-9.230280153630171e-18,-0.011964285746216774,0.0008928571478463709,0.0010204081190750003,0.0014285714132711291,0.011084184050559998,-4.055771595285289e-18,-2.8488853030683696e-18,-2.1764089717586845e-18,-0.00044642857392318547,-5.6354677759895515e-18,-4.7963745218448414e-18,-0.0005102040595375001,-1.324752829342764e-17,-0.0007142857066355646,-0.001700680237263441,0.0004960317746736109,-0.0005952381179668009,-1.3552527156068805e-19,-9.372697700849804e-19,-4.055771595285289e-18,9.920635056914762e-05,-6.776263578034403e-21,5.421010862427522e-20,2.0328790734103208e-19,-5.416882714183e-20,2.1147105004465433e-20,1.8126090188466044e-19,2.2028234918180537e-20,2.9958398325502794e-19,5.664403070804539e-19,0.0007653061184100807,-0.00025510202976875007,-0.0003061224415432662,-1.2782986556550004e-18,-2.8488853030683696e-18,-6.776263578034403e-21,0.0001020408162730746,2.0878605731922415e-20,1.1006370880341967e-19,-6.603336301101364e-20,1.3552527156068805e-19,1.4907779871675686e-19,5.664402941557569e-20,2.718913463646421e-19,3.7223220622705158e-19,0.0010714285308495164,-0.0003571428533177823,3.3106291015240454e-19,-0.0007142857066355646,-2.1764089717586845e-18,5.421010862427522e-20,2.0878605731922415e-20,0.0002380952355451882,9.492958646675533e-20,-1.4869058771720254e-19,-3.872189482430137e-20,1.3594567318232106e-19,-4.813677796090955e-19,2.1882993311726163e-19,2.2657611766230274e-19,0.0008928571478463709,-0.00029761905898340046,-2.717087927733305e-18,-3.624743494515545e-18,-0.00044642857392318547,2.0328790734103208e-19,1.1006370880341967e-19,9.492958646675533e-20,0.00014880952949170023,2.6551890202189845e-19,2.718913463646421e-19,2.6908859995537104e-19,5.947623508688102e-19,3.586680726930129e-19,4.575095125988051e-19,0.0006377550889737904,1.0887171569133661e-19,-0.0009566326625645161,-1.0299920638612292e-18,-5.6354677759895515e-18,-5.416882714183e-20,-6.603336301101364e-20,-1.4869058771720254e-19,2.6551890202189845e-19,0.00019132652960252017,5.421010862427522e-20,2.168404344971009e-19,4.9563528162009426e-20,4.701454719373769e-19,7.889704517222125e-19,0.0012244897661730647,-1.0873413229101432e-18,-0.0004897959297522902,-0.0008163265301845968,-4.7963745218448414e-18,2.1147105004465433e-20,1.3552527156068805e-19,-3.872189482430137e-20,2.718913463646421e-19,5.421010862427522e-20,0.00032653060043230653,3.1002545827789067e-19,-4.0144825131181866e-19,2.8305117605071886e-19,5.955715403030402e-19,0.0010204081190750003,-2.3156437347763666e-18,-0.0004081632650922984,-4.910731414349685e-18,-0.0005102040595375001,1.8126090188466044e-19,1.4907779871675686e-19,1.3594567318232106e-19,2.6908859995537104e-19,2.168404344971009e-19,3.1002545827789067e-19,0.0002040816325461492,8.156740649433205e-19,5.316477463479782e-19,5.792841472467179e-19,0.0011904762359336019,-8.734219733486967e-19,-1.6281863353927336e-18,-0.0035714285913854837,-1.324752829342764e-17,2.2028234918180537e-20,5.664402941557569e-20,-4.813677796090955e-19,5.947623508688102e-19,4.9563528162009426e-20,-4.0144825131181866e-19,8.156740649433205e-19,0.0011904762359336019,1.2225040825673799e-18,1.69932097294015e-18,0.0014285714132711291,-3.6814165334136966e-18,-4.871786923930076e-18,-0.0009523809421807528,-0.0007142857066355646,2.9958398325502794e-19,2.718913463646421e-19,2.1882993311726163e-19,3.586680726930129e-19,4.701454719373769e-19,2.8305117605071886e-19,5.316477463479782e-19,1.2225040825673799e-18,0.0004761904710903764,9.06304470649211e-19,0.0008503401186317205,-5.67851218711528e-18,-7.242946471927633e-18,-9.230280153630171e-18,-0.001700680237263441,5.664403070804539e-19,3.7223220622705158e-19,2.2657611766230274e-19,4.575095125988051e-19,7.889704517222125e-19,5.955715403030402e-19,5.792841472467179e-19,1.69932097294015e-18,9.06304470649211e-19,0.00042517005931586027,7.0,6.0,4.0,6.0,0.04165620729327202,-0.0077522676438093185,-0.008773688226938248,-0.01194727886468172,-0.008773688226938248,0.00041335978312417865,0.0006377550889737904,0.0008928571478463709,0.0006377550889737904,0.0005314626032486558,0.0010204081190750003,0.0007288630004040897,0.0009920635493472219,0.0010204081190750003,0.0005314626032486558,-0.0077522676438093185,0.004733560141175985,0.0006377550889737904,0.0008928571478463709,0.0006377550889737904,-0.0004960317746736109,-0.00021258502965793014,-0.00029761905898340046,-0.00021258502965793014,-1.0842021724855044e-19,-4.442461226292245e-22,1.6458293094519684e-20,1.187969284620389e-34,-1.418345593711936e-20,-2.2706403467026112e-20,-0.008773688226938248,0.0006377550889737904,0.006432519294321537,0.0010204081190750003,0.0007288630004040897,2.710505431213761e-20,-0.00025510202976875007,-1.6875633178533962e-20,1.3552527156068805e-20,-0.0007971939048729837,-0.0004081632650922984,-0.0002915451768785715,1.8859308511805817e-18,3.5914196963582334e-19,8.77302277602183e-19,-0.01194727886468172,0.0008928571478463709,0.0010204081190750003,0.014909297227859497,0.0010204081190750003,5.025579109301108e-20,-1.7171020667746356e-20,-0.0005952381179668009,-4.302089140823297e-20,1.5720931501039814e-18,-0.0006802721181884408,-8.352098221145326e-20,-0.0029761905316263437,-0.0006802721181884408,-8.685657510687628e-20,-0.008773688226938248,0.0006377550889737904,0.0007288630004040897,0.0010204081190750003,0.006432519294321537,1.3552527156068805e-20,-7.77569889859663e-21,-2.868857527259674e-20,-0.00025510202976875007,1.1777736705581155e-18,-2.710505431213761e-20,-0.0002915451768785715,-2.4654954430680972e-33,-0.0004081632650922984,-0.0007971939048729837,0.00041335978312417865,-0.0004960317746736109,2.710505431213761e-20,5.025579109301108e-20,1.3552527156068805e-20,8.26719551696442e-05,-0.0,-2.0328790734103208e-20,-0.0,3.96193664018758e-21,-1.563112984103186e-38,1.5126741146848621e-37,0.0,-3.3106391442409995e-37,-2.333417539081704e-21,0.0006377550889737904,-0.00021258502965793014,-0.00025510202976875007,-1.7171020667746356e-20,-7.77569889859663e-21,-0.0,8.50340147735551e-05,5.625211059511321e-21,2.3526565565172727e-21,3.3881317890172014e-20,-0.0,-0.0,-4.81482486096809e-35,1.1815490480818104e-22,9.960020211978625e-23,0.0008928571478463709,-0.00029761905898340046,-1.6875633178533962e-20,-0.0005952381179668009,-2.868857527259674e-20,-2.0328790734103208e-20,5.625211059511321e-21,0.00019841270113829523,9.562858962727959e-21,1.128474576789396e-36,-0.0,-7.52316384526264e-37,-0.0,6.325528081873003e-37,1.6763701691216677e-36,0.0006377550889737904,-0.00021258502965793014,1.3552527156068805e-20,-4.302089140823297e-20,-0.00025510202976875007,-0.0,2.3526565565172727e-21,9.562858962727959e-21,8.50340147735551e-05,-8.142662148498652e-22,1.776984414786251e-22,-6.5833172378078734e-21,6.294789198759574e-37,5.555227459942143e-21,1.504984684941196e-20,0.0005314626032486558,-1.0842021724855044e-19,-0.0007971939048729837,1.5720931501039814e-18,1.1777736705581155e-18,3.96193664018758e-21,3.3881317890172014e-20,1.128474576789396e-36,-8.142662148498652e-22,0.0001594387722434476,-1.4907779871675686e-19,-1.3552527156068805e-19,-3.304235253882952e-19,-9.673481768077282e-20,-1.3844869586651238e-19,0.0010204081190750003,-4.442461226292245e-22,-0.0004081632650922984,-0.0006802721181884408,-2.710505431213761e-20,-1.563112984103186e-38,-0.0,-0.0,1.776984414786251e-22,-1.4907779871675686e-19,0.0002721088530961424,-3.3881317890172014e-21,-1.5587546559314107e-19,2.1352546295585488e-20,5.553076406647561e-22,0.0007288630004040897,1.6458293094519684e-20,-0.0002915451768785715,-8.352098221145326e-20,-0.0002915451768785715,1.5126741146848621e-37,-0.0,-7.52316384526264e-37,-6.5833172378078734e-21,-1.3552527156068805e-19,-3.3881317890172014e-21,0.00011661807366181165,3.009265538105056e-34,3.679652531983336e-20,-7.458418103456717e-20,0.0009920635493472219,1.187969284620389e-34,1.8859308511805817e-18,-0.0029761905316263437,-2.4654954430680972e-33,0.0,-4.81482486096809e-35,-0.0,6.294789198759574e-37,-3.304235253882952e-19,-1.5587546559314107e-19,3.009265538105056e-34,0.0009920635493472219,1.729624798481688e-34,2.902015453916946e-34,0.0010204081190750003,-1.418345593711936e-20,3.5914196963582334e-19,-0.0006802721181884408,-0.0004081632650922984,-3.3106391442409995e-37,1.1815490480818104e-22,6.325528081873003e-37,5.555227459942143e-21,-9.673481768077282e-20,2.1352546295585488e-20,3.679652531983336e-20,1.729624798481688e-34,0.0002721088530961424,3.418732301802835e-20,0.0005314626032486558,-2.2706403467026112e-20,8.77302277602183e-19,-8.685657510687628e-20,-0.0007971939048729837,-2.333417539081704e-21,9.960020211978625e-23,1.6763701691216677e-36,1.504984684941196e-20,-1.3844869586651238e-19,5.553076406647561e-22,-7.458418103456717e-20,2.902015453916946e-34,3.418732301802835e-20,0.0001594387722434476,7.0,6.0,4.0,7.0,0.036613721400499344,-0.006713131908327341,-0.007598396390676498,-0.01034985389560461,-0.006713131908327341,0.00035430840216577053,0.000546647235751152,0.0007653061184100807,0.00047831633128225803,0.0004555393534246832,0.0008746355888433754,0.000546647235751152,0.0008503401186317205,0.0007653061184100807,0.00035430840216577053,-0.006713131908327341,0.004080114420503378,0.000546647235751152,0.0007653061184100807,0.00047831633128225803,-0.00042517005931586027,-0.00018221575010102242,-0.00025510202976875007,-0.0001594387722434476,1.2197274440461925e-19,-7.030920096117445e-22,1.2992578387952257e-20,-3.008760442876187e-34,3.531958141142286e-20,4.603280788372913e-20,-0.007598396390676498,0.000546647235751152,0.005544824991375208,0.0008746355888433754,0.000546647235751152,-0.0,-0.00021865889721084386,-3.8557069393727375e-20,-1.6940658945086007e-20,-0.00068330904468894,-0.0003498542355373502,-0.00021865889721084386,1.6165121286126196e-18,5.082197683525802e-19,5.30402684429721e-19,-0.01034985389560461,0.0007653061184100807,0.0008746355888433754,0.012852284125983715,0.0007653061184100807,-2.176907858603282e-20,-3.796316663861137e-20,-0.0005102040595375001,-9.289115494348325e-21,1.3823577699190182e-18,-0.000583090353757143,1.099520911195133e-19,-0.0025510203558951616,-0.0005102040595375001,9.052146989662636e-20,-0.006713131908327341,0.00047831633128225803,0.000546647235751152,0.0007653061184100807,0.004080114420503378,-0.0,-2.983260483384879e-20,-4.352786911319701e-20,-0.0001594387722434476,8.1161054018415375e-19,6.776263578034403e-20,-0.00018221575010102242,-1.751261402088629e-33,-0.00025510202976875007,-0.00042517005931586027,0.00035430840216577053,-0.00042517005931586027,-0.0,-2.176907858603282e-20,-0.0,7.086167897796258e-05,3.3881317890172014e-21,6.776263578034403e-21,3.3881317890172014e-21,-8.873210455605726e-22,1.7856002241406587e-38,-2.741283058291163e-37,0.0,-7.5207038377825485e-37,1.572028481382186e-21,0.000546647235751152,-0.00018221575010102242,-0.00021865889721084386,-3.796316663861137e-20,-2.983260483384879e-20,3.3881317890172014e-21,7.288629421964288e-05,1.2852355926046747e-20,8.425841049637002e-21,-4.743384504624082e-20,-0.0,-0.0,1.2037062152420224e-34,-1.9796686559752201e-22,7.4646658616312285e-22,0.0007653061184100807,-0.00025510202976875007,-3.8557069393727375e-20,-0.0005102040595375001,-4.352786911319701e-20,6.776263578034403e-21,1.2852355926046747e-20,0.0001700680295471102,1.4509290781457093e-20,-7.52316384526264e-36,-0.0,-1.88079096131566e-36,0.0,-3.2040317650330326e-36,-3.0511253051975704e-36,0.00047831633128225803,-0.0001594387722434476,-1.6940658945086007e-20,-9.289115494348325e-21,-0.0001594387722434476,3.3881317890172014e-21,8.425841049637002e-21,1.4509290781457093e-20,5.3146257414482534e-05,7.93151601726043e-22,2.343639863748822e-22,-4.3308595972830136e-21,-1.6839909514536948e-38,-1.1608221354804441e-20,-1.9372387384645778e-20,0.0004555393534246832,1.2197274440461925e-19,-0.00068330904468894,1.3823577699190182e-18,8.1161054018415375e-19,-8.873210455605726e-22,-4.743384504624082e-20,-7.52316384526264e-36,7.93151601726043e-22,0.000136661808937788,-1.0842021724855044e-19,-7.453889935837843e-20,-2.8322015354022696e-19,-7.344668490768458e-20,-8.462030524553624e-20,0.0008746355888433754,-7.030920096117445e-22,-0.0003498542355373502,-0.000583090353757143,6.776263578034403e-20,1.7856002241406587e-38,-0.0,-0.0,2.343639863748822e-22,-1.0842021724855044e-19,0.0002332361473236233,-8.470329472543003e-21,-1.3360754378336336e-19,-3.423480835506772e-20,6.2497064716205185e-22,0.000546647235751152,1.2992578387952257e-20,-0.00021865889721084386,1.099520911195133e-19,-0.00018221575010102242,-2.741283058291163e-37,-0.0,-1.88079096131566e-36,-4.3308595972830136e-21,-7.453889935837843e-20,-8.470329472543003e-21,7.288629421964288e-05,1.6851887013388314e-34,-2.959208591487766e-20,-3.7258799728802595e-20,0.0008503401186317205,-3.008760442876187e-34,1.6165121286126196e-18,-0.0025510203558951616,-1.751261402088629e-33,0.0,1.2037062152420224e-34,0.0,-1.6839909514536948e-38,-2.8322015354022696e-19,-1.3360754378336336e-19,1.6851887013388314e-34,0.0008503401186317205,1.6017098909481068e-34,1.8163012060542636e-34,0.0007653061184100807,3.531958141142286e-20,5.082197683525802e-19,-0.0005102040595375001,-0.00025510202976875007,-7.5207038377825485e-37,-1.9796686559752201e-22,-3.2040317650330326e-36,-1.1608221354804441e-20,-7.344668490768458e-20,-3.423480835506772e-20,-2.959208591487766e-20,1.6017098909481068e-34,0.0001700680295471102,-3.0694633660879885e-20,0.00035430840216577053,4.603280788372913e-20,5.30402684429721e-19,9.052146989662636e-20,-0.00042517005931586027,1.572028481382186e-21,7.4646658616312285e-22,-3.0511253051975704e-36,-1.9372387384645778e-20,-8.462030524553624e-20,6.2497064716205185e-22,-3.7258799728802595e-20,1.8163012060542636e-34,-3.0694633660879885e-20,7.086167897796258e-05,7.0,6.0,4.0,8.0,0.032669004052877426,-0.005920493043959141,-0.006701743230223656,-0.009130527265369892,-0.005303996615111828,0.0003100198518950492,0.00047831633128225803,0.0006696428754366934,0.00037202381645329297,0.00039859695243649185,0.0007653061184100807,0.00042517005931586027,0.0007440476329065859,0.0005952381179668009,0.00024801588733680546,-0.005920493043959141,0.003585600992664695,0.00047831633128225803,0.0006696428754366934,0.00037202381645329297,-0.00037202381645329297,-0.0001594387722434476,-0.00022321428696159273,-0.00012400794366840273,-1.6594931053251226e-19,-1.699320947090756e-19,-6.795566613110152e-20,-3.7172646283065783e-19,-4.523676286642048e-20,5.172898360809668e-20,-0.006701743230223656,0.00047831633128225803,0.004872980527579784,0.0007653061184100807,0.00042517005931586027,1.3552527156068805e-20,-0.00019132652960252017,-8.49660473545378e-20,-2.0752307207730358e-20,-0.0005978954141028225,-0.0003061224415432662,-0.0001700680295471102,7.292919037671375e-19,2.163066315833657e-19,2.676682274460409e-19,-0.009130527265369892,0.0006696428754366934,0.0007653061184100807,0.011295351199805737,0.0005952381179668009,1.0638144483639311e-20,-8.49660473545378e-20,-0.00044642857392318547,1.5764501818089367e-20,8.450364951471153e-19,-0.0005102040595375001,-5.180845433921286e-20,-0.0022321429569274187,-0.00039682540227659047,7.877612558383278e-20,-0.005303996615111828,0.00037202381645329297,0.00042517005931586027,0.0005952381179668009,0.00275550689548254,-6.776263578034403e-21,-4.720335892337116e-20,-7.116814482457338e-20,-0.00010629251482896507,3.2098283550904506e-19,-1.6615582134231495e-19,-0.00012147716188337654,-3.304235253882952e-19,-0.0001700680295471102,-0.00024801588733680546,0.0003100198518950492,-0.00037202381645329297,1.3552527156068805e-20,1.0638144483639311e-20,-6.776263578034403e-21,6.200397183420137e-05,-0.0,-0.0,3.3881317890172014e-21,5.570799939375371e-37,1.5815444589862353e-36,7.595502235107401e-37,7.90416707741292e-36,2.5248335649209575e-37,-2.42032825089785e-22,0.00047831633128225803,-0.0001594387722434476,-0.00019132652960252017,-8.49660473545378e-20,-4.720335892337116e-20,-0.0,6.377550744218752e-05,9.433126208439923e-36,2.3039689276116835e-36,6.637972550547461e-20,3.3986418295580265e-20,1.8881344215583318e-20,-8.0967666323499e-35,-2.4014860276296367e-35,-2.9340338996524296e-35,0.0006696428754366934,-0.00022321428696159273,-8.49660473545378e-20,-0.00044642857392318547,-7.116814482457338e-20,-0.0,9.433126208439923e-36,0.00014880952949170023,1.694479686763269e-21,-9.381789735608718e-35,5.664402941557569e-20,6.035458941025359e-36,2.4781765050356993e-19,4.4056469836361075e-20,-7.52316384526264e-36,0.00037202381645329297,-0.00012400794366840273,-2.0752307207730358e-20,1.5764501818089367e-20,-0.00010629251482896507,3.3881317890172014e-21,2.3039689276116835e-36,1.694479686763269e-21,3.543083948898129e-05,3.3101920919155616e-35,1.9487350585425023e-36,5.929230630780102e-21,-1.025738924702265e-35,-5.9565542481820615e-21,-1.4330220719123568e-20,0.00039859695243649185,-1.6594931053251226e-19,-0.0005978954141028225,8.450364951471153e-19,3.2098283550904506e-19,5.570799939375371e-37,6.637972550547461e-20,-9.381789735608718e-35,3.3101920919155616e-35,0.00011957908282056451,3.866822178853919e-20,7.080503838505674e-20,-2.4781765050356993e-19,-5.664402941557569e-20,-5.900420188538822e-20,0.0007653061184100807,-1.699320947090756e-19,-0.0003061224415432662,-0.0005102040595375001,-1.6615582134231495e-19,1.5815444589862353e-36,3.3986418295580265e-20,5.664402941557569e-20,1.9487350585425023e-36,3.866822178853919e-20,0.0002040816325461492,3.021015139116816e-20,3.398641894181512e-19,6.042030278233632e-20,-2.0267745314169186e-35,0.00042517005931586027,-6.795566613110152e-20,-0.0001700680295471102,-5.180845433921286e-20,-0.00012147716188337654,7.595502235107401e-37,1.8881344215583318e-20,6.035458941025359e-36,5.929230630780102e-21,7.080503838505674e-20,3.021015139116816e-20,4.8590864025754854e-05,-1.0833355937178202e-34,-6.776263578034403e-21,7.815077219398129e-21,0.0007440476329065859,-3.7172646283065783e-19,7.292919037671375e-19,-0.0022321429569274187,-3.304235253882952e-19,7.90416707741292e-36,-8.0967666323499e-35,2.4781765050356993e-19,-1.025738924702265e-35,-2.4781765050356993e-19,3.398641894181512e-19,-1.0833355937178202e-34,0.0007440476329065859,2.202823588753282e-19,8.517472501883721e-35,0.0005952381179668009,-4.523676286642048e-20,2.163066315833657e-19,-0.00039682540227659047,-0.0001700680295471102,2.5248335649209575e-37,-2.4014860276296367e-35,4.4056469836361075e-20,-5.9565542481820615e-21,-5.664402941557569e-20,6.042030278233632e-20,-6.776263578034403e-21,2.202823588753282e-19,0.00011337868636474013,-2.2507464914119975e-20,0.00024801588733680546,5.172898360809668e-20,2.676682274460409e-19,7.877612558383278e-20,-0.00024801588733680546,-2.42032825089785e-22,-2.9340338996524296e-35,-7.52316384526264e-36,-1.4330220719123568e-20,-5.900420188538822e-20,-2.0267745314169186e-35,7.815077219398129e-21,8.517472501883721e-35,-2.2507464914119975e-20,3.543083948898129e-05,7.0,6.0,5.0,3.0,0.06013794243335724,-0.011876417323946953,-0.01343537401407957,-0.015476190485060215,-0.022363945841789246,0.0006613756413571537,0.0010204081190750003,0.0011904762359336019,0.0017857142956927419,0.0008503401186317205,0.0013605442363768816,0.0020408162381500006,0.0011337868636474013,0.0023809524718672037,0.0023809524718672037,-0.011876417323946953,0.007397959008812904,0.0010204081190750003,0.0011904762359336019,0.0017857142956927419,-0.0007936508045531809,-0.0003401360590942204,-0.00039682540227659047,-0.0005952381179668009,-8.131516293641283e-20,-3.5499929394833083e-35,-2.096354716419138e-19,6.018531076210112e-35,-2.64338825480515e-19,-1.5860329011843016e-18,-0.01343537401407957,0.0010204081190750003,0.010051020421087742,0.0013605442363768816,0.0020408162381500006,-0.0,-0.0004081632650922984,-2.3017257779664826e-21,-2.300287178403108e-19,-0.0012755101779475808,-0.0005442177061922848,-0.0008163265301845968,1.872891382799449e-18,7.874888678475535e-19,4.1573100834277045e-18,-0.015476190485060215,0.0011904762359336019,0.0013605442363768816,0.01454081665724516,0.0023809524718672037,-1.2657319823862528e-20,-2.3017257779664826e-21,-0.0005952381179668009,-2.64338825480515e-19,2.168404344971009e-18,-0.0006802721181884408,-4.3220215440229253e-19,-0.0022675737272948027,-0.0011904762359336019,-1.093339858795684e-32,-0.022363945841789246,0.0017857142956927419,0.0020408162381500006,0.0023809524718672037,0.046173468232154846,-0.0,1.3488070076187891e-20,9.807950274881916e-38,-0.0017857142956927419,3.812193374668024e-18,-3.19765406593126e-19,-0.0020408162381500006,-4.561243178846875e-33,-0.0023809524718672037,-0.014285714365541935,0.0006613756413571537,-0.0007936508045531809,-0.0,-1.2657319823862528e-20,-0.0,0.00013227513409219682,-6.776263578034403e-21,-0.0,-0.0,-3.1275062823196006e-21,0.0,1.7687111192409347e-36,-0.0,1.9091751249104132e-36,8.677266982663439e-36,0.0010204081190750003,-0.0003401360590942204,-0.0004081632650922984,-2.3017257779664826e-21,1.3488070076187891e-20,-6.776263578034403e-21,0.0001360544265480712,7.6724192598882755e-22,1.1508628889832413e-21,4.0657581468206416e-20,-0.0,-6.776263578034403e-21,-2.407412430484045e-35,-2.407412430484045e-35,-1.4444474582904269e-34,0.0011904762359336019,-0.00039682540227659047,-2.3017257779664826e-21,-0.0005952381179668009,9.807950274881916e-38,-0.0,7.6724192598882755e-22,0.00019841270113829523,6.489977911569351e-39,1.88079096131566e-37,-0.0,-4.70197740328915e-38,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0005952381179668009,-2.300287178403108e-19,-2.64338825480515e-19,-0.0017857142956927419,-0.0,1.1508628889832413e-21,6.489977911569351e-39,0.0005952381179668009,-4.221435312672999e-34,3.5499929394833083e-35,2.2657611766230274e-19,0.0,2.64338825480515e-19,1.5860329011843016e-18,0.0008503401186317205,-8.131516293641283e-20,-0.0012755101779475808,2.168404344971009e-18,3.812193374668024e-18,-3.1275062823196006e-21,4.0657581468206416e-20,1.88079096131566e-37,-4.221435312672999e-34,0.00025510202976875007,-2.574980159653073e-19,-4.0657581468206416e-19,-3.2368019393839806e-19,-2.2657611766230274e-19,-1.1328806141609079e-18,0.0013605442363768816,-3.5499929394833083e-35,-0.0005442177061922848,-0.0006802721181884408,-3.19765406593126e-19,0.0,-0.0,-0.0,3.5499929394833083e-35,-2.574980159653073e-19,0.0002721088530961424,8.131516293641283e-20,-1.2724528410191175e-19,5.823874962604696e-20,1.2518544638517033e-33,0.0020408162381500006,-2.096354716419138e-19,-0.0008163265301845968,-4.3220215440229253e-19,-0.0020408162381500006,1.7687111192409347e-36,-6.776263578034403e-21,-4.70197740328915e-38,2.2657611766230274e-19,-4.0657581468206416e-19,8.131516293641283e-20,0.0008163265301845968,4.844354564757692e-34,2.2891424706126044e-19,1.5070930907744114e-18,0.0011337868636474013,6.018531076210112e-35,1.872891382799449e-18,-0.0022675737272948027,-4.561243178846875e-33,-0.0,-2.407412430484045e-35,-0.0,0.0,-3.2368019393839806e-19,-1.2724528410191175e-19,4.844354564757692e-34,0.0005668934318237007,2.3764847608541777e-34,1.4374287468255601e-33,0.0023809524718672037,-2.64338825480515e-19,7.874888678475535e-19,-0.0011904762359336019,-0.0023809524718672037,1.9091751249104132e-36,-2.407412430484045e-35,-0.0,2.64338825480515e-19,-2.2657611766230274e-19,5.823874962604696e-20,2.2891424706126044e-19,2.3764847608541777e-34,0.0011904762359336019,2.054047624696334e-33,0.0023809524718672037,-1.5860329011843016e-18,4.1573100834277045e-18,-1.093339858795684e-32,-0.014285714365541935,8.677266982663439e-36,-1.4444474582904269e-34,-0.0,1.5860329011843016e-18,-1.1328806141609079e-18,1.2518544638517033e-33,1.5070930907744114e-18,1.4374287468255601e-33,2.054047624696334e-33,0.0071428571827709675,7.0,6.0,5.0,4.0,0.04833900183439255,-0.009175170212984085,-0.010382653214037418,-0.011964285746216774,-0.01413265336304903,0.0004960317746736109,0.0007653061184100807,0.0008928571478463709,0.0010714285308495164,0.0006377550889737904,0.0010204081190750003,0.0012244897661730647,0.0008503401186317205,0.0014285714132711291,0.0011904762359336019,-0.009175170212984085,0.005637755151838064,0.0007653061184100807,0.0008928571478463709,0.0010714285308495164,-0.0005952381179668009,-0.00025510202976875007,-0.00029761905898340046,-0.0003571428533177823,1.9018687862774945e-19,-2.10325477274572e-18,-8.154500023948952e-19,-4.998783963375342e-18,-3.0324019394081593e-18,3.1610275423831776e-19,-0.010382653214037418,0.0007653061184100807,0.007660714443773031,0.0010204081190750003,0.0012244897661730647,-1.2197274440461925e-19,-0.0003061224415432662,-2.513169295175201e-18,6.029542823664408e-19,-0.0009566326625645161,-0.0004081632650922984,-0.0004897959297522902,-6.46611386171887e-18,-4.162783537540968e-18,-2.6872960356952302e-19,-0.011964285746216774,0.0008928571478463709,0.0010204081190750003,0.011084184050559998,0.0014285714132711291,-4.054123024324471e-18,-2.8404149735958266e-18,-0.00044642857392318547,3.389346452047947e-19,-5.583641188300348e-18,-0.0005102040595375001,-1.5602100802191978e-18,-0.001700680237263441,-0.0007142857066355646,1.1706433736779084e-18,-0.01413265336304903,0.0010714285308495164,0.0012244897661730647,0.0014285714132711291,0.01775510236620903,-8.762566179103394e-19,-1.2782986556550004e-18,-1.0596791624554511e-18,-0.0007142857066355646,-9.83610599349309e-19,-1.650471098082795e-18,-0.0008163265301845968,2.2413054267165323e-18,-0.0009523809421807528,-0.0035714285913854837,0.0004960317746736109,-0.0005952381179668009,-1.2197274440461925e-19,-4.054123024324471e-18,-8.762566179103394e-19,9.920635056914762e-05,-0.0,1.9651164376299768e-19,4.0657581468206416e-20,-6.407259599244204e-20,1.8126090188466044e-19,2.1147105004465433e-20,5.664403070804539e-19,2.9958398325502794e-19,2.2028234918180537e-20,0.0007653061184100807,-0.00025510202976875007,-0.0003061224415432662,-2.8404149735958266e-18,-1.2782986556550004e-18,-0.0,0.0001020408162730746,1.1006370880341967e-19,2.0878605731922415e-20,-7.280962658904804e-20,1.4568966692773966e-19,1.3552527156068805e-19,3.7223220622705158e-19,2.718913463646421e-19,5.664402941557569e-20,0.0008928571478463709,-0.00029761905898340046,-2.513169295175201e-18,-0.00044642857392318547,-1.0596791624554511e-18,1.9651164376299768e-19,1.1006370880341967e-19,0.00014880952949170023,1.2200253583136823e-19,2.6551890202189845e-19,2.6908859995537104e-19,1.3594567318232106e-19,4.575095125988051e-19,1.76903663384552e-19,-3.7040453771671558e-34,0.0010714285308495164,-0.0003571428533177823,6.029542823664408e-19,3.389346452047947e-19,-0.0007142857066355646,4.0657581468206416e-20,2.0878605731922415e-20,1.2200253583136823e-19,0.0002380952355451882,-1.4869058771720254e-19,-6.018531076210112e-35,-3.872189482430137e-20,-2.2657611766230274e-19,2.850598807707273e-20,-4.813677796090955e-19,0.0006377550889737904,1.9018687862774945e-19,-0.0009566326625645161,-5.583641188300348e-18,-9.83610599349309e-19,-6.407259599244204e-20,-7.280962658904804e-20,2.6551890202189845e-19,-1.4869058771720254e-19,0.00019132652960252017,2.168404344971009e-19,4.0657581468206416e-20,7.889704517222125e-19,4.701454719373769e-19,4.9563528162009426e-20,0.0010204081190750003,-2.10325477274572e-18,-0.0004081632650922984,-0.0005102040595375001,-1.650471098082795e-18,1.8126090188466044e-19,1.4568966692773966e-19,2.6908859995537104e-19,-6.018531076210112e-35,2.168404344971009e-19,0.0002040816325461492,2.103279510615914e-19,5.792841472467179e-19,3.4028103674808963e-19,1.3594567318232106e-19,0.0012244897661730647,-8.154500023948952e-19,-0.0004897959297522902,-1.5602100802191978e-18,-0.0008163265301845968,2.1147105004465433e-20,1.3552527156068805e-19,1.3594567318232106e-19,-3.872189482430137e-20,4.0657581468206416e-20,2.103279510615914e-19,0.00032653060043230653,7.768324551123977e-20,6.553810800629312e-20,-4.0144825131181866e-19,0.0008503401186317205,-4.998783963375342e-18,-6.46611386171887e-18,-0.001700680237263441,2.2413054267165323e-18,5.664403070804539e-19,3.7223220622705158e-19,4.575095125988051e-19,-2.2657611766230274e-19,7.889704517222125e-19,5.792841472467179e-19,7.768324551123977e-20,0.00042517005931586027,-8.48761366993624e-20,-3.776268713869693e-19,0.0014285714132711291,-3.0324019394081593e-18,-4.162783537540968e-18,-0.0007142857066355646,-0.0009523809421807528,2.9958398325502794e-19,2.718913463646421e-19,1.76903663384552e-19,2.850598807707273e-20,4.701454719373769e-19,3.4028103674808963e-19,6.553810800629312e-20,-8.48761366993624e-20,0.0004761904710903764,6.606978956456941e-34,0.0011904762359336019,3.1610275423831776e-19,-2.6872960356952302e-19,1.1706433736779084e-18,-0.0035714285913854837,2.2028234918180537e-20,5.664402941557569e-20,-3.7040453771671558e-34,-4.813677796090955e-19,4.9563528162009426e-20,1.3594567318232106e-19,-4.0144825131181866e-19,-3.776268713869693e-19,6.606978956456941e-34,0.0011904762359336019,7.0,6.0,5.0,5.0,0.04048752784729004,-0.007482993416488171,-0.008469387888908386,-0.009761904366314411,-0.009761904366314411,0.00039682540227659047,0.0006122448830865324,0.0007142857066355646,0.0007142857066355646,0.0005102040595375001,0.0008163265301845968,0.0008163265301845968,0.0006802721181884408,0.0009523809421807528,0.0006802721181884408,-0.007482993416488171,0.004557823296636343,0.0006122448830865324,0.0007142857066355646,0.0007142857066355646,-0.0004761904710903764,-0.0002040816325461492,-0.0002380952355451882,-0.0002380952355451882,-1.4907779871675686e-19,-0.0,-0.0,1.6550960459577808e-34,9.027796614315168e-35,1.6550960459577808e-34,-0.008469387888908386,0.0006122448830865324,0.006193877663463354,0.0008163265301845968,0.0008163265301845968,-0.0,-0.0002448979648761451,-0.0,-0.0,-0.0007653061184100807,-0.00032653060043230653,-0.00032653060043230653,1.1237348917182153e-18,3.128309188735467e-19,1.1237348917182153e-18,-0.009761904366314411,0.0007142857066355646,0.0008163265301845968,0.008962584659457207,0.0009523809421807528,-1.2962990098602065e-34,3.3703774026776627e-34,-0.0003571428533177823,-0.0,1.1655173354219173e-18,-0.0004081632650922984,-1.0356846691380309e-19,-0.0013605442363768816,-0.0004761904710903764,-1.4212779136227427e-33,-0.009761904366314411,0.0007142857066355646,0.0008163265301845968,0.0009523809421807528,0.008962584659457207,-0.0,3.3703774026776627e-34,-0.0,-0.0003571428533177823,1.183450094114184e-18,-1.0356846691380309e-19,-0.0004081632650922984,-1.4212779136227427e-33,-0.0004761904710903764,-0.0013605442363768816,0.00039682540227659047,-0.0004761904710903764,-0.0,-1.2962990098602065e-34,-0.0,7.936507608974352e-05,-0.0,-0.0,-0.0,2.0850042555291977e-21,0.0,0.0,0.0,-0.0,0.0,0.0006122448830865324,-0.0002040816325461492,-0.0002448979648761451,3.3703774026776627e-34,3.3703774026776627e-34,-0.0,8.163265010807663e-05,-0.0,-0.0,5.421010862427522e-20,-0.0,-0.0,-6.620384183831123e-35,-3.611118645726067e-35,-6.620384183831123e-35,0.0007142857066355646,-0.0002380952355451882,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0002380952355451882,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005102040595375001,-1.4907779871675686e-19,-0.0007653061184100807,1.1655173354219173e-18,1.183450094114184e-18,2.0850042555291977e-21,5.421010862427522e-20,-0.0,-0.0,0.0001530612207716331,-9.486769009248164e-20,-9.486769009248164e-20,-1.9420811377809942e-19,-9.063045094233022e-20,-1.9420811377809942e-19,0.0008163265301845968,-0.0,-0.00032653060043230653,-0.0004081632650922984,-1.0356846691380309e-19,0.0,-0.0,-0.0,-0.0,-9.486769009248164e-20,0.00016326530021615326,1.3363118143871934e-20,-7.634716787620763e-20,3.5080335575113234e-20,1.0260619273614082e-34,0.0008163265301845968,-0.0,-0.00032653060043230653,-1.0356846691380309e-19,-0.0004081632650922984,0.0,-0.0,-0.0,-0.0,-9.486769009248164e-20,1.3363118143871934e-20,0.00016326530021615326,1.0260619273614082e-34,3.5080335575113234e-20,-7.634716787620763e-20,0.0006802721181884408,1.6550960459577808e-34,1.1237348917182153e-18,-0.0013605442363768816,-1.4212779136227427e-33,0.0,-6.620384183831123e-35,-0.0,-0.0,-1.9420811377809942e-19,-7.634716787620763e-20,1.0260619273614082e-34,0.0003401360590942204,8.954848809857621e-35,2.464163552867318e-34,0.0009523809421807528,9.027796614315168e-35,3.128309188735467e-19,-0.0004761904710903764,-0.0004761904710903764,-0.0,-3.611118645726067e-35,-0.0,-0.0,-9.063045094233022e-20,3.5080335575113234e-20,3.5080335575113234e-20,8.954848809857621e-35,0.0002380952355451882,8.954848809857621e-35,0.0006802721181884408,1.6550960459577808e-34,1.1237348917182153e-18,-1.4212779136227427e-33,-0.0013605442363768816,0.0,-6.620384183831123e-35,-0.0,-0.0,-1.9420811377809942e-19,1.0260619273614082e-34,-7.634716787620763e-20,2.464163552867318e-34,8.954848809857621e-35,0.0003401360590942204,7.0,6.0,5.0,6.0,0.0348612442612648,-0.006320861633867025,-0.0071550048887729645,-0.008248299360275269,-0.0071550048887729645,0.0003306878206785768,0.0005102040595375001,0.0005952381179668009,0.0005102040595375001,0.00042517005931586027,0.0006802721181884408,0.000583090353757143,0.0005668934318237007,0.0006802721181884408,0.00042517005931586027,-0.006320861633867025,0.0038265306502580643,0.0005102040595375001,0.0005952381179668009,0.0005102040595375001,-0.00039682540227659047,-0.0001700680295471102,-0.00019841270113829523,-0.0001700680295471102,-5.421010862427522e-20,4.235164736271502e-21,1.847478332892637e-20,3.009265538105056e-35,4.21748132729748e-21,-4.427480674398386e-20,-0.0071550048887729645,0.0005102040595375001,0.005200437270104885,0.0006802721181884408,0.000583090353757143,-0.0,-0.0002040816325461492,-1.1508628889832413e-21,3.049318610115481e-20,-0.0006377550889737904,-0.0002721088530961424,-0.0002332361473236233,9.364456913997245e-19,3.749990219784649e-19,7.614512901159156e-19,-0.008248299360275269,0.0005952381179668009,0.0006802721181884408,0.0075255101546645164,0.0006802721181884408,-2.8083781440714386e-21,3.0843018472882604e-21,-0.00029761905898340046,4.21748132729748e-21,1.1655173354219173e-18,-0.0003401360590942204,7.062976979924926e-21,-0.0011337868636474013,-0.0003401360590942204,1.727301429909613e-20,-0.0071550048887729645,0.0005102040595375001,0.000583090353757143,0.0006802721181884408,0.005200437270104885,-0.0,9.810823315005635e-21,4.6281925931695125e-38,-0.0002040816325461492,9.341098367474513e-19,-7.714346492510917e-20,-0.0002332361473236233,-1.1196640629589906e-33,-0.0002721088530961424,-0.0006377550889737904,0.0003306878206785768,-0.00039682540227659047,-0.0,-2.8083781440714386e-21,-0.0,6.613756704609841e-05,-3.3881317890172014e-21,-0.0,-3.3881317890172014e-21,-1.7698165343005997e-21,2.8935246636624357e-38,-9.540547775686826e-38,-0.0,4.3251850618137786e-38,-2.0968971982669565e-21,0.0005102040595375001,-0.0001700680295471102,-0.0002040816325461492,3.0843018472882604e-21,9.810823315005635e-21,-3.3881317890172014e-21,6.80272132740356e-05,3.8362096299441377e-22,-1.1120501246528006e-21,2.710505431213761e-20,-1.6940658945086007e-21,1.6940658945086007e-21,-1.2037062152420224e-35,-9.027796614315168e-36,-1.973557218013841e-21,0.0005952381179668009,-0.00019841270113829523,-1.1508628889832413e-21,-0.00029761905898340046,4.6281925931695125e-38,-0.0,3.8362096299441377e-22,9.920635056914762e-05,-6.271104900531065e-39,1.410593220986745e-37,-0.0,2.350988701644575e-38,-0.0,-0.0,-1.5892505635791582e-38,0.0005102040595375001,-0.0001700680295471102,3.049318610115481e-20,4.21748132729748e-21,-0.0002040816325461492,-3.3881317890172014e-21,-1.1120501246528006e-21,-6.271104900531065e-39,6.80272132740356e-05,-8.194880449020958e-22,-3.009265538105056e-36,-9.083978741403009e-21,0.0,-1.6869925511138311e-21,2.5135412873439542e-20,0.00042517005931586027,-5.421010862427522e-20,-0.0006377550889737904,1.1655173354219173e-18,9.341098367474513e-19,-1.7698165343005997e-21,2.710505431213761e-20,1.410593220986745e-37,-8.194880449020958e-22,0.00012755101488437504,-1.3552527156068805e-19,-8.809142651444724e-20,-1.6184009696919903e-19,-6.473603361780078e-20,-1.1458998941652155e-19,0.0006802721181884408,4.235164736271502e-21,-0.0002721088530961424,-0.0003401360590942204,-7.714346492510917e-20,2.8935246636624357e-38,-1.6940658945086007e-21,-0.0,-3.009265538105056e-36,-1.3552527156068805e-19,0.0001360544265480712,2.4279864166402494e-20,-6.362264205095587e-20,8.221903062345034e-21,1.023150282955719e-34,0.000583090353757143,1.847478332892637e-20,-0.0002332361473236233,7.062976979924926e-21,-0.0002332361473236233,-9.540547775686826e-38,1.6940658945086007e-21,2.350988701644575e-38,-9.083978741403009e-21,-8.809142651444724e-20,2.4279864166402494e-20,9.329446038464084e-05,1.0804480561298725e-34,-2.710505431213761e-20,-7.246480859588707e-20,0.0005668934318237007,3.009265538105056e-35,9.364456913997245e-19,-0.0011337868636474013,-1.1196640629589906e-33,-0.0,-1.2037062152420224e-35,-0.0,0.0,-1.6184009696919903e-19,-6.362264205095587e-20,1.0804480561298725e-34,0.00028344671591185033,7.183592340697001e-35,1.4117603353485429e-34,0.0006802721181884408,4.21748132729748e-21,3.749990219784649e-19,-0.0003401360590942204,-0.0002721088530961424,4.3251850618137786e-38,-9.027796614315168e-36,-0.0,-1.6869925511138311e-21,-6.473603361780078e-20,8.221903062345034e-21,-2.710505431213761e-20,7.183592340697001e-35,0.0001360544265480712,-6.909206204314593e-21,0.00042517005931586027,-4.427480674398386e-20,7.614512901159156e-19,1.727301429909613e-20,-0.0006377550889737904,-2.0968971982669565e-21,-1.973557218013841e-21,-1.5892505635791582e-38,2.5135412873439542e-20,-1.1458998941652155e-19,1.023150282955719e-34,-7.246480859588707e-20,1.4117603353485429e-34,-6.909206204314593e-21,0.00012755101488437504,7.0,6.0,5.0,7.0,0.030622368678450584,-0.005472545977681875,-0.006195335183292627,-0.0071428571827709675,-0.005472545977681875,0.00028344671591185033,0.0004373177944216877,0.0005102040595375001,0.00038265305920504034,0.00036443150020204484,0.000583090353757143,0.0004373177944216877,0.00048590864753350616,0.0005102040595375001,0.00028344671591185033,-0.005472545977681875,0.0032981049735099077,0.0004373177944216877,0.0005102040595375001,0.00038265305920504034,-0.0003401360590942204,-0.00014577258843928576,-0.0001700680295471102,-0.00012755101488437504,1.0439749317309787e-18,1.1030742981609018e-19,4.840407103609841e-19,-2.8838757667623987e-19,2.326948502015399e-19,9.28991760104856e-19,-0.006195335183292627,0.0004373177944216877,0.004482507240027189,0.000583090353757143,0.0004373177944216877,1.1248597539537109e-18,-0.0001749271177686751,-4.465862824173127e-19,1.3213713977167085e-19,-0.000546647235751152,-0.0002332361473236233,-0.0001749271177686751,-9.54981568156119e-19,-6.530258771391425e-20,7.874458027569124e-19,-0.0071428571827709675,0.0005102040595375001,0.000583090353757143,0.0064868805930018425,0.0005102040595375001,-5.786467658106546e-20,-1.100876582670925e-19,-0.00025510202976875007,7.393360348279422e-20,-1.2061749168901237e-18,-0.0002915451768785715,5.697881655133975e-19,-0.0009718172950670123,-0.00025510202976875007,6.591306510055429e-19,-0.005472545977681875,0.00038265305920504034,0.0004373177944216877,0.0005102040595375001,0.0032981049735099077,1.054432666022757e-18,5.0552879472358035e-19,2.7596415105630595e-19,-0.00012755101488437504,4.662019400658186e-19,2.0439342130501213e-19,-0.00014577258843928576,1.1636339485647106e-18,-0.0001700680295471102,-0.0003401360590942204,0.00028344671591185033,-0.0003401360590942204,1.1248597539537109e-18,-5.786467658106546e-20,1.054432666022757e-18,5.668934318237007e-05,-4.743384504624082e-20,-6.776263578034403e-21,-6.437450399132683e-20,-1.4606936867829564e-19,-1.6184008404450196e-20,-6.473603361780078e-20,1.7982232817067988e-20,-1.416100735389392e-20,-1.1031002768020148e-19,0.0004373177944216877,-0.00014577258843928576,-0.0001749271177686751,-1.100876582670925e-19,5.0552879472358035e-19,-4.743384504624082e-20,5.8309036830905825e-05,6.467240735360347e-23,-3.343799431828334e-20,-1.333633962556895e-19,-1.6940658945086007e-20,-2.710505431213761e-20,2.774401579241788e-20,-2.4276014222262428e-21,-5.548450314253534e-20,0.0005102040595375001,-0.0001700680295471102,-4.465862824173127e-19,-0.00025510202976875007,2.7596415105630595e-19,-6.776263578034403e-21,6.467240735360347e-23,8.50340147735551e-05,-4.024141995500631e-21,8.344879777831094e-20,1.4574137217837276e-20,-6.018531076210112e-36,5.556707256977432e-20,-3.9899312109262445e-20,-2.360167946168558e-20,0.00038265305920504034,-0.00012755101488437504,1.3213713977167085e-19,7.393360348279422e-20,-0.00012755101488437504,-6.437450399132683e-20,-3.343799431828334e-20,-4.024141995500631e-21,4.251700738677755e-05,-7.299667967130691e-22,3.76158192263132e-35,-9.28728907309346e-21,7.824090399073146e-35,-2.062039290266089e-20,-2.6869369229871086e-20,0.00036443150020204484,1.0439749317309787e-18,-0.000546647235751152,-1.2061749168901237e-18,4.662019400658186e-19,-1.4606936867829564e-19,-1.333633962556895e-19,8.344879777831094e-20,-7.299667967130691e-22,0.00010932944860542193,-0.0,-4.743384504624082e-20,1.7918010320438915e-19,3.4896769333786085e-20,-7.028973717517888e-20,0.000583090353757143,1.1030742981609018e-19,-0.0002332361473236233,-0.0002915451768785715,2.0439342130501213e-19,-1.6184008404450196e-20,-1.6940658945086007e-20,1.4574137217837276e-20,3.76158192263132e-35,-0.0,0.00011661807366181165,-3.597357189101616e-21,1.5438859551737993e-19,7.496045612481217e-21,-2.6973348417808416e-20,0.0004373177944216877,4.840407103609841e-19,-0.0001749271177686751,5.697881655133975e-19,-0.00014577258843928576,-6.473603361780078e-20,-2.710505431213761e-20,-6.018531076210112e-36,-9.28728907309346e-21,-4.743384504624082e-20,-3.597357189101616e-21,5.8309036830905825e-05,-1.1097606316967152e-19,-3.8963515573697816e-20,-7.184302726918861e-20,0.00048590864753350616,-2.8838757667623987e-19,-9.54981568156119e-19,-0.0009718172950670123,1.1636339485647106e-18,1.7982232817067988e-20,2.774401579241788e-20,5.556707256977432e-20,7.824090399073146e-35,1.7918010320438915e-19,1.5438859551737993e-19,-1.1097606316967152e-19,0.00024295432376675308,-9.244335296405943e-20,-8.991115923857854e-20,0.0005102040595375001,2.326948502015399e-19,-6.530258771391425e-20,-0.00025510202976875007,-0.0001700680295471102,-1.416100735389392e-20,-2.4276014222262428e-21,-3.9899312109262445e-20,-2.062039290266089e-20,3.4896769333786085e-20,7.496045612481217e-21,-3.8963515573697816e-20,-9.244335296405943e-20,8.50340147735551e-05,-4.3259565326697195e-20,0.00028344671591185033,9.28991760104856e-19,7.874458027569124e-19,6.591306510055429e-19,-0.0003401360590942204,-1.1031002768020148e-19,-5.548450314253534e-20,-2.360167946168558e-20,-2.6869369229871086e-20,-7.028973717517888e-20,-2.6973348417808416e-20,-7.184302726918861e-20,-8.991115923857854e-20,-4.3259565326697195e-20,5.668934318237007e-05,7.0,6.0,5.0,8.0,0.027310090139508247,-0.004825680050998926,-0.005463435314595699,-0.0062996032647788525,-0.004322562366724014,0.00024801588733680546,0.00038265305920504034,0.00044642857392318547,0.00029761905898340046,0.0003188775444868952,0.0005102040595375001,0.0003401360590942204,0.00042517005931586027,0.00039682540227659047,0.00019841270113829523,-0.004825680050998926,0.0028982425574213266,0.00038265305920504034,0.00044642857392318547,0.00029761905898340046,-0.00029761905898340046,-0.00012755101488437504,-0.00014880952949170023,-9.920635056914762e-05,-2.472533582294439e-19,-1.3009667131614036e-18,-3.7136082315051525e-19,-2.873871947831759e-18,-1.0198828828000655e-18,-2.17009773878127e-19,-0.005463435314595699,0.00038265305920504034,0.003939200658351183,0.0005102040595375001,0.0003401360590942204,-1.0842021724855044e-19,-0.0001530612207716331,-1.3533024305176336e-18,-4.439336175904317e-19,-0.00047831633128225803,-0.0002040816325461492,-0.0001360544265480712,-3.1997134871625756e-18,-1.2900886677208719e-18,-1.6036797397279606e-19,-0.0062996032647788525,0.00044642857392318547,0.0005102040595375001,0.005700821988284588,0.00039682540227659047,-2.1213245332269407e-18,-1.5352364635504562e-18,-0.00022321428696159273,-6.238415234115939e-19,-3.0902377874524075e-18,-0.00025510202976875007,-2.1539338541301593e-19,-0.0008503401186317205,-0.00019841270113829523,1.9726234894298076e-20,-0.004322562366724014,0.00029761905898340046,0.0003401360590942204,0.00039682540227659047,0.0022270812187343836,-4.685271447677052e-19,-4.98402995637954e-19,-4.1798315231705326e-19,-8.50340147735551e-05,-8.107885811492175e-19,-7.566409763599783e-19,-9.718172805150971e-05,3.1657292886837173e-19,-0.00011337868636474013,-0.00019841270113829523,0.00024801588733680546,-0.00029761905898340046,-1.0842021724855044e-19,-2.1213245332269407e-18,-4.685271447677052e-19,4.960317528457381e-05,-3.3881317890172014e-21,9.825582188149884e-20,2.371692252312041e-20,-2.950210094269411e-20,9.063045094233022e-20,1.3666497134842127e-20,2.8322015354022696e-19,9.230879394285178e-20,2.0750011458413097e-20,0.00038265305920504034,-0.00012755101488437504,-0.0001530612207716331,-1.5352364635504562e-18,-4.98402995637954e-19,-3.3881317890172014e-21,5.10204081365373e-05,5.56895922356602e-20,1.0050483549415102e-20,-9.6663882096485e-21,8.634648901226662e-20,3.8839318928366953e-20,1.8611610311352579e-19,8.092004848459951e-20,2.2657612735582555e-20,0.00044642857392318547,-0.00014880952949170023,-1.3533024305176336e-18,-0.00022321428696159273,-4.1798315231705326e-19,9.825582188149884e-20,5.56895922356602e-20,7.440476474585012e-05,3.8609928173574074e-20,1.3275945101094922e-19,1.5737081427018088e-19,4.315735682225861e-20,2.2875475629940256e-19,5.543368969600015e-20,1.1014117459090269e-20,0.00029761905898340046,-9.920635056914762e-05,-4.439336175904317e-19,-6.238415234115939e-19,-8.50340147735551e-05,2.371692252312041e-20,1.0050483549415102e-20,3.8609928173574074e-20,2.8344671591185033e-05,4.214585710477404e-20,4.8552028444524855e-20,1.9481757786848908e-20,5.844225544378061e-20,3.108747659718295e-20,-2.1576250991460632e-21,0.0003188775444868952,-2.472533582294439e-19,-0.00047831633128225803,-3.0902377874524075e-18,-8.107885811492175e-19,-2.950210094269411e-20,-9.6663882096485e-21,1.3275945101094922e-19,4.214585710477404e-20,9.566326480126008e-05,1.60499133798674e-19,3.327300086664742e-20,3.9448522586110626e-19,1.429587430600929e-19,3.540251919252837e-20,0.0005102040595375001,-1.3009667131614036e-18,-0.0002040816325461492,-0.00025510202976875007,-7.566409763599783e-19,9.063045094233022e-20,8.634648901226662e-20,1.5737081427018088e-19,4.8552028444524855e-20,1.60499133798674e-19,0.0001020408162730746,6.65856353168635e-20,3.8841622755619884e-19,1.0789339367123366e-19,3.021015139116816e-20,0.0003401360590942204,-3.7136082315051525e-19,-0.0001360544265480712,-2.1539338541301593e-19,-9.718172805150971e-05,1.3666497134842127e-20,3.8839318928366953e-20,4.315735682225861e-20,1.9481757786848908e-20,3.327300086664742e-20,6.65856353168635e-20,3.887269122060388e-05,-4.932269581913432e-20,1.6093625997831706e-20,-5.0070835446748783e-20,0.00042517005931586027,-2.873871947831759e-18,-3.1997134871625756e-18,-0.0008503401186317205,3.1657292886837173e-19,2.8322015354022696e-19,1.8611610311352579e-19,2.2875475629940256e-19,5.844225544378061e-20,3.9448522586110626e-19,3.8841622755619884e-19,-4.932269581913432e-20,0.00021258502965793014,-2.0208603976038667e-20,-3.1468907025972196e-20,0.00039682540227659047,-1.0198828828000655e-18,-1.2900886677208719e-18,-0.00019841270113829523,-0.00011337868636474013,9.230879394285178e-20,8.092004848459951e-20,5.543368969600015e-20,3.108747659718295e-20,1.429587430600929e-19,1.0789339367123366e-19,1.6093625997831706e-20,-2.0208603976038667e-20,5.668934318237007e-05,-6.909530937328505e-22,0.00019841270113829523,-2.17009773878127e-19,-1.6036797397279606e-19,1.9726234894298076e-20,-0.00019841270113829523,2.0750011458413097e-20,2.2657612735582555e-20,1.1014117459090269e-20,-2.1576250991460632e-21,3.540251919252837e-20,3.021015139116816e-20,-5.0070835446748783e-20,-3.1468907025972196e-20,-6.909530937328505e-22,2.8344671591185033e-05,7.0,6.0,6.0,3.0,0.051889870315790176,-0.010038738138973713,-0.011358114890754223,-0.011358114890754223,-0.018920067697763443,0.0005511463969014585,0.0008503401186317205,0.0008503401186317205,0.0014880952658131719,0.0007086168043315411,0.0009718172950670123,0.001700680237263441,0.0007086168043315411,0.001700680237263441,0.0019841270986944437,-0.010038738138973713,0.006212207023054361,0.0008503401186317205,0.0008503401186317205,0.0014880952658131719,-0.0006613756413571537,-0.00028344671591185033,-0.00028344671591185033,-0.0004960317746736109,-1.6263032587282567e-19,-4.5541704937942714e-20,6.145742934683548e-22,-2.439454888092385e-19,-2.349324458540717e-22,1.925929944387236e-33,-0.011358114890754223,0.0008503401186317205,0.008440637961030006,0.0009718172950670123,0.001700680237263441,-2.710505431213761e-20,-0.0003401360590942204,-3.196716056041322e-20,4.795262138404368e-21,-0.0010629252064973116,-0.00038872691220603883,-0.0006802721181884408,6.973353317647998e-19,7.453889935837843e-19,5.27703428654838e-18,-0.011358114890754223,0.0008503401186317205,0.0009718172950670123,0.008440637961030006,0.001700680237263441,-7.9784882034364e-21,1.8825963504220612e-20,-0.0003401360590942204,4.795262138404368e-21,1.4365678785432934e-18,-0.00038872691220603883,-4.008890772177328e-20,-0.0010629252064973116,-0.0006802721181884408,5.27703428654838e-18,-0.018920067697763443,0.0014880952658131719,0.001700680237263441,0.001700680237263441,0.038761336356401443,5.421010862427522e-20,4.5603295158454536e-21,5.409836330898527e-21,-0.0014880952658131719,2.9886908207087133e-18,-1.6940658945086007e-19,-0.001700680237263441,2.5478751053409354e-18,-0.001700680237263441,-0.011904762126505375,0.0005511463969014585,-0.0006613756413571537,-2.710505431213761e-20,-7.9784882034364e-21,5.421010862427522e-20,0.00011022927355952561,-0.0,-0.0,-1.3552527156068805e-20,-2.316852671762413e-22,1.6915844477020246e-39,2.5358947984270133e-39,7.462107781353101e-21,1.1584282170849684e-39,0.0,0.0008503401186317205,-0.00028344671591185033,-0.0003401360590942204,1.8825963504220612e-20,4.5603295158454536e-21,-0.0,0.00011337868636474013,-6.295430111864577e-22,-1.5984206118272601e-21,6.776263578034403e-20,-0.0,-0.0,-3.138447442287105e-21,9.397297329291889e-23,-3.3703774026776627e-34,0.0008503401186317205,-0.00028344671591185033,-3.196716056041322e-20,-0.0003401360590942204,5.409836330898527e-21,-0.0,-6.295430111864577e-22,0.00011337868636474013,-1.5984206118272601e-21,-2.1081237113119847e-21,1.8216681975177086e-20,-2.458297325334713e-22,8.131516293641283e-20,-0.0,-4.333342374871281e-34,0.0014880952658131719,-0.0004960317746736109,4.795262138404368e-21,4.795262138404368e-21,-0.0014880952658131719,-1.3552527156068805e-20,-1.5984206118272601e-21,-1.5984206118272601e-21,0.0004960317746736109,-9.4039548065783e-37,-2.82118644197349e-37,9.4039548065783e-38,-9.4039548065783e-37,-9.4039548065783e-38,0.0,0.0007086168043315411,-1.6263032587282567e-19,-0.0010629252064973116,1.4365678785432934e-18,2.9886908207087133e-18,-2.316852671762413e-22,6.776263578034403e-20,-2.1081237113119847e-21,-9.4039548065783e-37,0.00021258502965793014,-1.2197274440461925e-19,-2.710505431213761e-19,-1.9357338190493568e-19,-1.6154642200234856e-19,-9.440672301662115e-19,0.0009718172950670123,-4.5541704937942714e-20,-0.00038872691220603883,-0.00038872691220603883,-1.6940658945086007e-19,1.6915844477020246e-39,-0.0,1.8216681975177086e-20,-2.82118644197349e-37,-1.2197274440461925e-19,0.00015549076488241553,3.049318610115481e-20,1.1367384811402786e-19,3.7269449679189215e-20,4.81482486096809e-35,0.001700680237263441,6.145742934683548e-22,-0.0006802721181884408,-4.008890772177328e-20,-0.001700680237263441,2.5358947984270133e-39,-0.0,-2.458297325334713e-22,9.4039548065783e-38,-2.710505431213761e-19,3.049318610115481e-20,0.0006802721181884408,-7.682178920789925e-22,-3.123770681358936e-20,-5.566980840185341e-19,0.0007086168043315411,-2.439454888092385e-19,6.973353317647998e-19,-0.0010629252064973116,2.5478751053409354e-18,7.462107781353101e-21,-3.138447442287105e-21,8.131516293641283e-20,-9.4039548065783e-37,-1.9357338190493568e-19,1.1367384811402786e-19,-7.682178920789925e-22,0.00021258502965793014,-2.6111506998884855e-19,-9.440672301662115e-19,0.001700680237263441,-2.349324458540717e-22,7.453889935837843e-19,-0.0006802721181884408,-0.001700680237263441,1.1584282170849684e-39,9.397297329291889e-23,-0.0,-9.4039548065783e-38,-1.6154642200234856e-19,3.7269449679189215e-20,-3.123770681358936e-20,-2.6111506998884855e-19,0.0006802721181884408,-5.566980840185341e-19,0.0019841270986944437,1.925929944387236e-33,5.27703428654838e-18,5.27703428654838e-18,-0.011904762126505375,0.0,-3.3703774026776627e-34,-4.333342374871281e-34,0.0,-9.440672301662115e-19,4.81482486096809e-35,-5.566980840185341e-19,-9.440672301662115e-19,-5.566980840185341e-19,0.0059523810632526875,7.0,6.0,6.0,4.0,0.04165620729327202,-0.0077522676438093185,-0.008773688226938248,-0.008773688226938248,-0.01194727886468172,0.00041335978312417865,0.0006377550889737904,0.0006377550889737904,0.0008928571478463709,0.0005314626032486558,0.0007288630004040897,0.0010204081190750003,0.0005314626032486558,0.0010204081190750003,0.0009920635493472219,-0.0077522676438093185,0.004733560141175985,0.0006377550889737904,0.0006377550889737904,0.0008928571478463709,-0.0004960317746736109,-0.00021258502965793014,-0.00021258502965793014,-0.00029761905898340046,-8.131516293641283e-20,2.514966396754761e-20,9.835693663344778e-21,-8.131516293641283e-20,7.344019670975487e-21,2.1064858766735392e-34,-0.008773688226938248,0.0006377550889737904,0.006432519294321537,0.0007288630004040897,0.0010204081190750003,1.3552527156068805e-20,-0.00025510202976875007,1.1712228007723047e-20,-1.6875633178533962e-20,-0.0007971939048729837,-0.0002915451768785715,-0.0004081632650922984,8.85332236796118e-19,3.3881317890172014e-19,1.8859308511805817e-18,-0.008773688226938248,0.0006377550889737904,0.0007288630004040897,0.006432519294321537,0.0010204081190750003,2.1744893246638448e-20,-1.1174773059271686e-20,-0.00025510202976875007,-1.6875633178533962e-20,1.1655173354219173e-18,-0.0002915451768785715,-1.352855572041096e-19,-0.0007971939048729837,-0.0004081632650922984,1.8859308511805817e-18,-0.01194727886468172,0.0008928571478463709,0.0010204081190750003,0.0010204081190750003,0.014909297227859497,-0.0,-9.531613507558475e-21,-7.039939515189184e-21,-0.0005952381179668009,1.632517763272791e-18,-1.2705494208814505e-19,-0.0006802721181884408,1.3823577699190182e-18,-0.0006802721181884408,-0.0029761905316263437,0.00041335978312417865,-0.0004960317746736109,1.3552527156068805e-20,2.1744893246638448e-20,-0.0,8.26719551696442e-05,-0.0,-0.0,-0.0,4.55986624623481e-21,8.8609577052618e-37,4.587748485047985e-37,1.6196008581783967e-21,1.88079096131566e-37,0.0,0.0006377550889737904,-0.00021258502965793014,-0.00025510202976875007,-1.1174773059271686e-20,-9.531613507558475e-21,-0.0,8.50340147735551e-05,2.7225407879573726e-21,5.625211059511321e-21,2.0328790734103208e-20,-1.6940658945086007e-21,-3.3881317890172014e-21,1.2100485099946557e-21,4.505237893605519e-22,-3.611118645726067e-35,0.0006377550889737904,-0.00021258502965793014,1.1712228007723047e-20,-0.00025510202976875007,-7.039939515189184e-21,-0.0,2.7225407879573726e-21,8.50340147735551e-05,5.625211059511321e-21,3.416218569391533e-22,-8.365800177186583e-21,-5.461456965155489e-22,2.710505431213761e-20,-3.3881317890172014e-21,-4.81482486096809e-35,0.0008928571478463709,-0.00029761905898340046,-1.6875633178533962e-20,-1.6875633178533962e-20,-0.0005952381179668009,-0.0,5.625211059511321e-21,5.625211059511321e-21,0.00019841270113829523,2.256949153578792e-36,-5.64237288394698e-37,-0.0,1.504632769052528e-36,-0.0,-0.0,0.0005314626032486558,-8.131516293641283e-20,-0.0007971939048729837,1.1655173354219173e-18,1.632517763272791e-18,4.55986624623481e-21,2.0328790734103208e-20,3.416218569391533e-22,2.256949153578792e-36,0.0001594387722434476,-1.4230153513872246e-19,-1.4907779871675686e-19,-1.4047265172906478e-19,-9.569616963709032e-20,-3.304235253882952e-19,0.0007288630004040897,2.514966396754761e-20,-0.0002915451768785715,-0.0002915451768785715,-1.2705494208814505e-19,8.8609577052618e-37,-1.6940658945086007e-21,-8.365800177186583e-21,-5.64237288394698e-37,-1.4230153513872246e-19,0.00011661807366181165,2.710505431213761e-20,-7.3378177550859e-20,2.371692252312041e-20,4.092601131822876e-34,0.0010204081190750003,9.835693663344778e-21,-0.0004081632650922984,-1.352855572041096e-19,-0.0006802721181884408,4.587748485047985e-37,-3.3881317890172014e-21,-5.461456965155489e-22,-0.0,-1.4907779871675686e-19,2.710505431213761e-20,0.0002721088530961424,-1.706705238502218e-21,5.228205724516495e-20,-1.5587546559314107e-19,0.0005314626032486558,-8.131516293641283e-20,8.85332236796118e-19,-0.0007971939048729837,1.3823577699190182e-18,1.6196008581783967e-21,1.2100485099946557e-21,2.710505431213761e-20,1.504632769052528e-36,-1.4047265172906478e-19,-7.3378177550859e-20,-1.706705238502218e-21,0.0001594387722434476,-1.4457832392538052e-19,-3.304235253882952e-19,0.0010204081190750003,7.344019670975487e-21,3.3881317890172014e-19,-0.0004081632650922984,-0.0006802721181884408,1.88079096131566e-37,4.505237893605519e-22,-3.3881317890172014e-21,-0.0,-9.569616963709032e-20,2.371692252312041e-20,5.228205724516495e-20,-1.4457832392538052e-19,0.0002721088530961424,-1.5587546559314107e-19,0.0009920635493472219,2.1064858766735392e-34,1.8859308511805817e-18,1.8859308511805817e-18,-0.0029761905316263437,0.0,-3.611118645726067e-35,-4.81482486096809e-35,-0.0,-3.304235253882952e-19,4.092601131822876e-34,-1.5587546559314107e-19,-3.304235253882952e-19,-1.5587546559314107e-19,0.0009920635493472219,7.0,6.0,6.0,5.0,0.0348612442612648,-0.006320861633867025,-0.0071550048887729645,-0.0071550048887729645,-0.008248299360275269,0.0003306878206785768,0.0005102040595375001,0.0005102040595375001,0.0005952381179668009,0.00042517005931586027,0.000583090353757143,0.0006802721181884408,0.00042517005931586027,0.0006802721181884408,0.0005668934318237007,-0.006320861633867025,0.0038265306502580643,0.0005102040595375001,0.0005102040595375001,0.0005952381179668009,-0.00039682540227659047,-0.0001700680295471102,-0.0001700680295471102,-0.00019841270113829523,-5.421010862427522e-20,1.6768338805797885e-20,4.235164736271502e-21,-5.421010862427522e-20,3.009265538105056e-35,4.513898307157584e-35,-0.0071550048887729645,0.0005102040595375001,0.005200437270104885,0.000583090353757143,0.0006802721181884408,-0.0,-0.0002040816325461492,1.657374618228192e-20,-1.1508628889832413e-21,-0.0006377550889737904,-0.0002332361473236233,-0.0002721088530961424,7.078707176365815e-19,3.9947997504424873e-19,9.364456913997245e-19,-0.0071550048887729645,0.0005102040595375001,0.000583090353757143,0.005200437270104885,0.0006802721181884408,-1.2294898292316465e-22,1.2403576314458526e-21,-0.0002040816325461492,-1.1508628889832413e-21,9.0801931945661e-19,-0.0002332361473236233,1.8045811017548065e-20,-0.0006377550889737904,-0.0002721088530961424,9.364456913997245e-19,-0.008248299360275269,0.0005952381179668009,0.0006802721181884408,0.0006802721181884408,0.0075255101546645164,-0.0,3.0843018472882604e-21,-1.1508628889832413e-21,-0.00029761905898340046,1.1595813839486602e-18,6.083062314025384e-20,-0.0003401360590942204,1.0028870095490916e-18,-0.0003401360590942204,-0.0011337868636474013,0.0003306878206785768,-0.00039682540227659047,-0.0,-1.2294898292316465e-22,-0.0,6.613756704609841e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-0.0,2.9622561542777845e-21,-1.3168025211074507e-37,-0.0,3.0639581721498926e-21,-0.0,0.0,0.0005102040595375001,-0.0001700680295471102,-0.0002040816325461492,1.2403576314458526e-21,3.0843018472882604e-21,-3.3881317890172014e-21,6.80272132740356e-05,-7.123258473884099e-22,3.8362096299441377e-22,1.3552527156068805e-20,-0.0,-1.6940658945086007e-21,1.652247961404277e-22,-1.2037062152420224e-35,6.018531076210112e-36,0.0005102040595375001,-0.0001700680295471102,1.657374618228192e-20,-0.0002040816325461492,-1.1508628889832413e-21,-3.3881317890172014e-21,-7.123258473884099e-22,6.80272132740356e-05,3.8362096299441377e-22,4.296503026164632e-22,-6.7073353607604405e-21,-0.0,1.3552527156068805e-20,-0.0,-2.407412430484045e-35,0.0005952381179668009,-0.00019841270113829523,-1.1508628889832413e-21,-1.1508628889832413e-21,-0.00029761905898340046,-0.0,3.8362096299441377e-22,3.8362096299441377e-22,9.920635056914762e-05,9.4039548065783e-38,-4.70197740328915e-38,-0.0,1.410593220986745e-37,-0.0,-0.0,0.00042517005931586027,-5.421010862427522e-20,-0.0006377550889737904,9.0801931945661e-19,1.1595813839486602e-18,2.9622561542777845e-21,1.3552527156068805e-20,4.296503026164632e-22,9.4039548065783e-38,0.00012755101488437504,-8.809142651444724e-20,-1.3552527156068805e-19,-1.1244207278435983e-19,-6.473603361780078e-20,-1.6184009696919903e-19,0.000583090353757143,1.6768338805797885e-20,-0.0002332361473236233,-0.0002332361473236233,6.083062314025384e-20,-1.3168025211074507e-37,-0.0,-6.7073353607604405e-21,-4.70197740328915e-38,-8.809142651444724e-20,9.329446038464084e-05,-6.153259958694963e-22,-5.826153586698338e-20,-2.371692252312041e-20,2.1064858766735392e-34,0.0006802721181884408,4.235164736271502e-21,-0.0002721088530961424,1.8045811017548065e-20,-0.0003401360590942204,-0.0,-1.6940658945086007e-21,-0.0,-0.0,-1.3552527156068805e-19,-6.153259958694963e-22,0.0001360544265480712,1.6588576278804121e-34,-8.253747900341192e-21,-6.362264205095587e-20,0.00042517005931586027,-5.421010862427522e-20,7.078707176365815e-19,-0.0006377550889737904,1.0028870095490916e-18,3.0639581721498926e-21,1.652247961404277e-22,1.3552527156068805e-20,1.410593220986745e-37,-1.1244207278435983e-19,-5.826153586698338e-20,1.6588576278804121e-34,0.00012755101488437504,-1.3137543567448023e-19,-1.6184009696919903e-19,0.0006802721181884408,3.009265538105056e-35,3.9947997504424873e-19,-0.0002721088530961424,-0.0003401360590942204,-0.0,-1.2037062152420224e-35,-0.0,-0.0,-6.473603361780078e-20,-2.371692252312041e-20,-8.253747900341192e-21,-1.3137543567448023e-19,0.0001360544265480712,-6.362264205095587e-20,0.0005668934318237007,4.513898307157584e-35,9.364456913997245e-19,9.364456913997245e-19,-0.0011337868636474013,0.0,6.018531076210112e-36,-2.407412430484045e-35,-0.0,-1.6184009696919903e-19,2.1064858766735392e-34,-6.362264205095587e-20,-1.6184009696919903e-19,-6.362264205095587e-20,0.00028344671591185033,7.0,6.0,6.0,6.0,0.02999923564493656,-0.005338246468454599,-0.006043488625437021,-0.006043488625437021,-0.006043488625437021,0.00027557319845072925,0.00042517005931586027,0.00042517005931586027,0.00042517005931586027,0.00035430840216577053,0.00048590864753350616,0.00048590864753350616,0.00035430840216577053,0.00048590864753350616,0.00035430840216577053,-0.005338246468454599,0.003212396055459976,0.00042517005931586027,0.00042517005931586027,0.00042517005931586027,-0.0003306878206785768,-0.00014172335795592517,-0.00014172335795592517,-0.00014172335795592517,-8.131516293641283e-20,-1.551658835680641e-20,-1.2101518267918682e-20,-1.2197274440461925e-19,-1.4137510254618587e-20,-1.0988474052307558e-19,-0.006043488625437021,0.00042517005931586027,0.004366091452538967,0.00048590864753350616,0.00048590864753350616,-0.0,-0.0001700680295471102,-2.262603931622489e-20,-2.0328790734103208e-20,-0.0005314626032486558,-0.00019436345610301942,-0.00019436345610301942,3.29617205236815e-19,1.6898295665495928e-19,3.164981465711181e-19,-0.006043488625437021,0.00042517005931586027,0.00048590864753350616,0.004366091452538967,0.00048590864753350616,3.473439636448134e-21,7.352700220645892e-21,-0.0001700680295471102,-1.638364327541104e-20,7.589415207398531e-19,-0.00019436345610301942,-6.098637220230962e-20,-0.0005314626032486558,-0.00019436345610301942,3.498242194751139e-19,-0.006043488625437021,0.00042517005931586027,0.00048590864753350616,0.00048590864753350616,0.004366091452538967,-0.0,6.496825568904581e-21,2.3297709569721166e-21,-0.0001700680295471102,7.457136102754231e-19,-1.7633101206259523e-20,-0.00019436345610301942,5.963111948670274e-19,-0.00019436345610301942,-0.0005314626032486558,0.00027557319845072925,-0.0003306878206785768,-0.0,3.473439636448134e-21,-0.0,5.5114636779762805e-05,-0.0,-0.0,-0.0,1.679639004325527e-21,-1.1073189384553422e-37,6.048320865478848e-38,6.448276771634324e-22,-1.4967208361359712e-37,1.21947788430162e-21,0.00042517005931586027,-0.00014172335795592517,-0.0001700680295471102,7.352700220645892e-21,6.496825568904581e-21,-0.0,5.668934318237007e-05,1.7522678249038662e-22,2.0709358237414565e-22,2.710505431213761e-20,-1.6940658945086007e-21,-1.6940658945086007e-21,-6.713542547503052e-22,-1.88079096131566e-35,-5.312545774669709e-22,0.00042517005931586027,-0.00014172335795592517,-2.262603931622489e-20,-0.0001700680295471102,2.3297709569721166e-21,-0.0,1.7522678249038662e-22,5.668934318237007e-05,1.345458693186377e-22,4.77182794605306e-22,7.92355581750335e-21,-1.1921746889307753e-22,4.743384504624082e-20,-0.0,-4.48777339668814e-22,0.00042517005931586027,-0.00014172335795592517,-2.0328790734103208e-20,-1.638364327541104e-20,-0.0001700680295471102,-0.0,2.0709358237414565e-22,1.345458693186377e-22,5.668934318237007e-05,5.767665757964891e-22,-2.2854632021460725e-23,6.653890526680922e-21,3.5005496934258317e-22,5.655004101847435e-21,4.1763286071468266e-20,0.00035430840216577053,-8.131516293641283e-20,-0.0005314626032486558,7.589415207398531e-19,7.457136102754231e-19,1.679639004325527e-21,2.710505431213761e-20,4.77182794605306e-22,5.767665757964891e-22,0.00010629251482896507,-7.453889935837843e-20,-7.453889935837843e-20,-9.171456160796046e-20,-4.6240026320696465e-20,-9.055566218272806e-20,0.00048590864753350616,-1.551658835680641e-20,-0.00019436345610301942,-0.00019436345610301942,-1.7633101206259523e-20,-1.1073189384553422e-37,-1.6940658945086007e-21,7.92355581750335e-21,-2.2854632021460725e-23,-7.453889935837843e-20,7.774538244120777e-05,3.847564784114702e-21,5.25886827584807e-20,3.3881317890172014e-21,-7.142072743364748e-23,0.00048590864753350616,-1.2101518267918682e-20,-0.00019436345610301942,-6.098637220230962e-20,-0.00019436345610301942,6.048320865478848e-38,-1.6940658945086007e-21,-1.1921746889307753e-22,6.653890526680922e-21,-7.453889935837843e-20,3.847564784114702e-21,7.774538244120777e-05,-3.7255456978048375e-22,2.1498737544157164e-20,5.485145794233938e-20,0.00035430840216577053,-1.2197274440461925e-19,3.29617205236815e-19,-0.0005314626032486558,5.963111948670274e-19,6.448276771634324e-22,-6.713542547503052e-22,4.743384504624082e-20,3.5005496934258317e-22,-9.171456160796046e-20,5.25886827584807e-20,-3.7255456978048375e-22,0.00010629251482896507,-6.254724263115158e-20,-9.243407303156235e-20,0.00048590864753350616,-1.4137510254618587e-20,1.6898295665495928e-19,-0.00019436345610301942,-0.00019436345610301942,-1.4967208361359712e-37,-1.88079096131566e-35,-0.0,5.655004101847435e-21,-4.6240026320696465e-20,3.3881317890172014e-21,2.1498737544157164e-20,-6.254724263115158e-20,7.774538244120777e-05,4.549946056556569e-20,0.00035430840216577053,-1.0988474052307558e-19,3.164981465711181e-19,3.498242194751139e-19,-0.0005314626032486558,1.21947788430162e-21,-5.312545774669709e-22,-4.48777339668814e-22,4.1763286071468266e-20,-9.055566218272806e-20,-7.142072743364748e-23,5.485145794233938e-20,-9.243407303156235e-20,4.549946056556569e-20,0.00010629251482896507,7.0,6.0,6.0,7.0,0.026340056210756302,-0.004621193744242191,-0.005232194904237986,-0.005232194904237986,-0.004621193744242191,0.0002362055965932086,0.00036443150020204484,0.00036443150020204484,0.0003188775444868952,0.00030369291198439896,0.00041649313061498106,0.00036443150020204484,0.00030369291198439896,0.00036443150020204484,0.0002362055965932086,-0.004621193744242191,0.002768666949123144,0.00036443150020204484,0.00036443150020204484,0.0003188775444868952,-0.00028344671591185033,-0.00012147716188337654,-0.00012147716188337654,-0.00010629251482896507,-5.421010862427522e-20,8.730575518212531e-21,1.5353733942535764e-20,-4.0657581468206416e-20,5.3958211125120084e-21,3.2676984923560286e-20,-0.005232194904237986,0.00036443150020204484,0.0037631888408213854,0.00041649313061498106,0.00036443150020204484,1.3552527156068805e-20,-0.00014577258843928576,2.51779985385986e-21,-0.0,-0.0004555393534246832,-0.00016659725224599242,-0.00014577258843928576,3.845443760545971e-19,1.7691698874723235e-19,2.6707413082046885e-19,-0.005232194904237986,0.00036443150020204484,0.00041649313061498106,0.0037631888408213854,0.00036443150020204484,1.5776953148130278e-20,-7.291488855316968e-21,-0.00014577258843928576,1.2566495150266135e-21,6.2341624917916505e-19,-0.00016659725224599242,-4.404571325722362e-20,-0.0004555393534246832,-0.00014577258843928576,2.5931895068626622e-19,-0.004621193744242191,0.0003188775444868952,0.00036443150020204484,0.00036443150020204484,0.002768666949123144,6.776263578034403e-21,5.157168196680523e-22,-2.3873708792116154e-21,-0.00010629251482896507,6.255761211561176e-19,2.5119593044224466e-20,-0.00012147716188337654,5.014435047745458e-19,-0.00012147716188337654,-0.00028344671591185033,0.0002362055965932086,-0.00028344671591185033,1.3552527156068805e-20,1.5776953148130278e-20,6.776263578034403e-21,4.724111931864172e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-0.0,1.4684046216401167e-21,3.0174153106073657e-37,3.5435136492751263e-37,1.1389596468775039e-21,1.9881909597766e-37,3.459344900882369e-22,0.00036443150020204484,-0.00012147716188337654,-0.00014577258843928576,-7.291488855316968e-21,5.157168196680523e-22,-3.3881317890172014e-21,4.8590864025754854e-05,2.2302592713567834e-21,1.4723960306285943e-21,1.6940658945086007e-20,-0.0,-2.541098841762901e-21,1.106960924206843e-22,-6.018531076210112e-36,2.1843725072993e-22,0.00036443150020204484,-0.00012147716188337654,2.51779985385986e-21,-0.00014577258843928576,-2.3873708792116154e-21,-3.3881317890172014e-21,2.2302592713567834e-21,4.8590864025754854e-05,1.1002530064269207e-21,-1.0851843242549083e-22,-3.662893885084754e-21,1.7918331751596623e-22,1.3552527156068805e-20,-8.470329472543003e-22,1.1634402095770465e-22,0.0003188775444868952,-0.00010629251482896507,-0.0,1.2566495150266135e-21,-0.00010629251482896507,-0.0,1.4723960306285943e-21,1.1002530064269207e-21,3.543083948898129e-05,8.617090417527769e-22,1.4221963052558907e-22,-3.1496483078863826e-21,-3.0123806033874683e-22,-1.0927462817834845e-21,-1.1920836657419098e-20,0.00030369291198439896,-5.421010862427522e-20,-0.0004555393534246832,6.2341624917916505e-19,6.255761211561176e-19,1.4684046216401167e-21,1.6940658945086007e-20,-1.0851843242549083e-22,8.617090417527769e-22,9.110787505051121e-05,-4.743384504624082e-20,-7.453889935837843e-20,-7.798979347637309e-20,-3.468001893272878e-20,-5.979559401175126e-20,0.00041649313061498106,8.730575518212531e-21,-0.00016659725224599242,-0.00016659725224599242,2.5119593044224466e-20,3.0174153106073657e-37,-0.0,-3.662893885084754e-21,1.4221963052558907e-22,-4.743384504624082e-20,6.663890235358849e-05,3.195003089392934e-21,1.1035745526000081e-21,-1.4399560103323106e-20,3.792523396537212e-22,0.00036443150020204484,1.5353733942535764e-20,-0.00014577258843928576,-4.404571325722362e-20,-0.00012147716188337654,3.5435136492751263e-37,-2.541098841762901e-21,1.7918331751596623e-22,-3.1496483078863826e-21,-7.453889935837843e-20,3.195003089392934e-21,4.8590864025754854e-05,5.599478593487854e-22,1.0827335391573107e-20,1.0292607554203756e-20,0.00030369291198439896,-4.0657581468206416e-20,3.845443760545971e-19,-0.0004555393534246832,5.014435047745458e-19,1.1389596468775039e-21,1.106960924206843e-22,1.3552527156068805e-20,-3.0123806033874683e-22,-7.798979347637309e-20,1.1035745526000081e-21,5.599478593487854e-22,9.110787505051121e-05,-6.743693341415127e-20,-5.735612852540727e-20,0.00036443150020204484,5.3958211125120084e-21,1.7691698874723235e-19,-0.00014577258843928576,-0.00012147716188337654,1.9881909597766e-37,-6.018531076210112e-36,-8.470329472543003e-22,-1.0927462817834845e-21,-3.468001893272878e-20,-1.4399560103323106e-20,1.0827335391573107e-20,-6.743693341415127e-20,4.8590864025754854e-05,8.56704013396495e-21,0.0002362055965932086,3.2676984923560286e-20,2.6707413082046885e-19,2.5931895068626622e-19,-0.00028344671591185033,3.459344900882369e-22,2.1843725072993e-22,1.1634402095770465e-22,-1.1920836657419098e-20,-5.979559401175126e-20,3.792523396537212e-22,1.0292607554203756e-20,-5.735612852540727e-20,8.56704013396495e-21,4.724111931864172e-05,7.0,6.0,6.0,8.0,0.02348305471241474,-0.004074546508491039,-0.004613601602613926,-0.004613601602613926,-0.003649376332759857,0.00020667989156208932,0.0003188775444868952,0.0003188775444868952,0.00024801588733680546,0.0002657313016243279,0.00036443150020204484,0.00028344671591185033,0.0002657313016243279,0.00028344671591185033,0.0001653439103392884,-0.004074546508491039,0.0024329177103936672,0.0003188775444868952,0.0003188775444868952,0.00024801588733680546,-0.00024801588733680546,-0.00010629251482896507,-0.00010629251482896507,-8.26719551696442e-05,-4.2129717533470784e-35,0.0,-2.964615315390051e-21,-5.836056815203438e-35,-1.8887467694717554e-21,4.226010819570866e-20,-0.004613601602613926,0.0003188775444868952,0.003306962549686432,0.00036443150020204484,0.00028344671591185033,1.3552527156068805e-20,-0.00012755101488437504,-3.0470991165109395e-21,-9.650317156634102e-21,-0.00039859695243649185,-0.00014577258843928576,-0.00011337868636474013,3.4770332838452794e-19,1.259728993740462e-19,1.8006762922756734e-19,-0.004613601602613926,0.0003188775444868952,0.00036443150020204484,0.003306962549686432,0.00028344671591185033,1.2565235396198482e-20,-3.0470991165109395e-21,-0.00012755101488437504,-8.574448408767415e-21,6.112164208185619e-19,-0.00014577258843928576,-8.893845946170154e-21,-0.00039859695243649185,-0.00011337868636474013,1.8257799313969507e-19,-0.003649376332759857,0.00024801588733680546,0.00028344671591185033,0.00028344671591185033,0.0018693985184654593,-6.776263578034403e-21,-6.685701841244051e-21,-6.685701841244051e-21,-7.086167897796258e-05,4.367343028278647e-19,-3.7057261963355874e-34,-8.09847770142369e-05,3.6930091078071093e-19,-8.09847770142369e-05,-0.0001653439103392884,0.00020667989156208932,-0.00024801588733680546,1.3552527156068805e-20,1.2565235396198482e-20,-6.776263578034403e-21,4.13359775848221e-05,-0.0,-0.0,-1.6940658945086007e-21,-0.0,0.0,7.233810958506857e-39,0.0,1.3825914100857736e-38,1.3031276597057485e-22,0.0003188775444868952,-0.00010629251482896507,-0.00012755101488437504,-3.0470991165109395e-21,-6.685701841244051e-21,-0.0,4.251700738677755e-05,1.0156997391617118e-21,2.2285673477308143e-21,0.0,-0.0,7.991639333726961e-38,0.0,5.091447572230961e-38,-9.835943958251795e-37,0.0003188775444868952,-0.00010629251482896507,-3.0470991165109395e-21,-0.00012755101488437504,-6.685701841244051e-21,-0.0,1.0156997391617118e-21,4.251700738677755e-05,2.2285673477308143e-21,0.0,-0.0,7.991639333726961e-38,0.0,5.091447572230961e-38,-9.835943958251795e-37,0.00024801588733680546,-8.26719551696442e-05,-9.650317156634102e-21,-8.574448408767415e-21,-7.086167897796258e-05,-1.6940658945086007e-21,2.2285673477308143e-21,2.2285673477308143e-21,2.362055965932086e-05,1.2037062152420224e-35,-0.0,8.470329472543003e-22,1.6674447633458502e-35,5.396419485596724e-22,-1.2316325925447479e-20,0.0002657313016243279,-4.2129717533470784e-35,-0.00039859695243649185,6.112164208185619e-19,4.367343028278647e-19,-0.0,0.0,0.0,1.2037062152420224e-35,7.97193861217238e-05,-6.764255241985606e-20,-3.7579196506847646e-20,-6.95406669693753e-20,-2.6973348417808416e-20,-3.933613459025881e-20,0.00036443150020204484,0.0,-0.00014577258843928576,-0.00014577258843928576,-3.7057261963355874e-34,0.0,-0.0,-0.0,-0.0,-6.764255241985606e-20,5.8309036830905825e-05,3.188625427848272e-35,5.900582156719596e-35,2.2887107469109588e-35,3.337703136705241e-35,0.00028344671591185033,-2.964615315390051e-21,-0.00011337868636474013,-8.893845946170154e-21,-8.09847770142369e-05,7.233810958506857e-39,7.991639333726961e-38,7.991639333726961e-38,8.470329472543003e-22,-3.7579196506847646e-20,3.188625427848272e-35,3.2393909350503236e-05,2.1064858766735392e-35,2.541098841762901e-21,4.746580862989132e-21,0.0002657313016243279,-5.836056815203438e-35,3.4770332838452794e-19,-0.00039859695243649185,3.6930091078071093e-19,0.0,0.0,0.0,1.6674447633458502e-35,-6.95406669693753e-20,5.900582156719596e-35,2.1064858766735392e-35,7.97193861217238e-05,-3.7579196506847646e-20,-3.933613459025881e-20,0.00028344671591185033,-1.8887467694717554e-21,1.259728993740462e-19,-0.00011337868636474013,-8.09847770142369e-05,1.3825914100857736e-38,5.091447572230961e-38,5.091447572230961e-38,5.396419485596724e-22,-2.6973348417808416e-20,2.2887107469109588e-35,2.541098841762901e-21,-3.7579196506847646e-20,3.2393909350503236e-05,4.029335300342529e-21,0.0001653439103392884,4.226010819570866e-20,1.8006762922756734e-19,1.8257799313969507e-19,-0.0001653439103392884,1.3031276597057485e-22,-9.835943958251795e-37,-9.835943958251795e-37,-1.2316325925447479e-20,-3.933613459025881e-20,3.337703136705241e-35,4.746580862989132e-21,-3.933613459025881e-20,4.029335300342529e-21,2.362055965932086e-05,7.0,6.0,7.0,3.0,0.045651793479919434,-0.00869574025273323,-0.009839650243520737,-0.00869574025273323,-0.01639941707253456,0.0004724111931864172,0.0007288630004040897,0.0006377550889737904,0.0012755101779475808,0.0006073858239687979,0.0007288630004040897,0.0014577260008081794,0.0004724111931864172,0.0012755101779475808,0.001700680237263441,-0.00869574025273323,0.005355118308216333,0.0007288630004040897,0.0006377550889737904,0.0012755101779475808,-0.0005668934318237007,-0.00024295432376675308,-0.00021258502965793014,-0.00042517005931586027,-8.131516293641283e-20,2.3216370008187857e-20,8.394842779299004e-21,9.486769009248164e-20,-6.117914193866758e-23,4.289958827308765e-34,-0.009839650243520737,0.0007288630004040897,0.007276481948792934,0.0007288630004040897,0.0014577260008081794,2.710505431213761e-20,-0.0002915451768785715,9.314783942731611e-21,-3.438361039244777e-20,-0.0009110787068493664,-0.0002915451768785715,-0.000583090353757143,5.187777465948422e-19,7.318364664277155e-19,4.5231720683599086e-18,-0.00869574025273323,0.0006377550889737904,0.0007288630004040897,0.005355118308216333,0.0012755101779475808,2.4687837076214463e-20,-8.647691051482437e-21,-0.00021258502965793014,-5.0760284024963196e-20,1.1384122811097797e-18,-0.00024295432376675308,7.409092935789268e-20,-0.0005668934318237007,-0.00042517005931586027,-5.04289427491463e-33,-0.01639941707253456,0.0012755101779475808,0.0014577260008081794,0.0012755101779475808,0.03340622037649155,2.710505431213761e-20,-2.598669481485598e-20,-5.082319175678271e-20,-0.0012755101779475808,2.6051993421763197e-18,1.5246593050577406e-19,-0.0014577260008081794,-2.710505431213761e-20,-0.0012755101779475808,-0.010204081423580647,0.0004724111931864172,-0.0005668934318237007,2.710505431213761e-20,2.4687837076214463e-20,2.710505431213761e-20,9.448223863728344e-05,-6.776263578034403e-21,-0.0,-1.3552527156068805e-20,-6.991238246883166e-22,1.1419013029967215e-36,2.1776644487736585e-37,-2.3991174093653652e-21,-1.5376251867251212e-39,0.0,0.0007288630004040897,-0.00024295432376675308,-0.0002915451768785715,-8.647691051482437e-21,-2.598669481485598e-20,-6.776263578034403e-21,9.718172805150971e-05,2.5166235044779946e-21,1.1461202925620212e-20,3.3881317890172014e-20,-1.6940658945086007e-21,-3.3881317890172014e-21,8.166944927992037e-22,2.447165803764448e-23,-1.6851887013388314e-34,0.0006377550889737904,-0.00021258502965793014,9.314783942731611e-21,-0.00021258502965793014,-5.082319175678271e-20,-0.0,2.5166235044779946e-21,7.086167897796258e-05,1.692009575204582e-20,3.853910154044359e-22,-6.327068154707596e-21,2.5162154298871674e-23,-2.710505431213761e-20,-0.0,-2.5662387283708695e-36,0.0012755101779475808,-0.00042517005931586027,-3.438361039244777e-20,-5.0760284024963196e-20,-0.0012755101779475808,-1.3552527156068805e-20,1.1461202925620212e-20,1.692009575204582e-20,0.00042517005931586027,3.76158192263132e-36,-2.256949153578792e-36,-1.504632769052528e-36,-6.018531076210112e-36,-0.0,-0.0,0.0006073858239687979,-8.131516293641283e-20,-0.0009110787068493664,1.1384122811097797e-18,2.6051993421763197e-18,-6.991238246883166e-22,3.3881317890172014e-20,3.853910154044359e-22,3.76158192263132e-36,0.00018221575010102242,-1.3552527156068805e-19,-2.0328790734103208e-19,-1.1202819813474775e-19,-1.2130359406315506e-19,-8.092004460719039e-19,0.0007288630004040897,2.3216370008187857e-20,-0.0002915451768785715,-0.00024295432376675308,1.5246593050577406e-19,1.1419013029967215e-36,-1.6940658945086007e-21,-6.327068154707596e-21,-2.256949153578792e-36,-1.3552527156068805e-19,9.718172805150971e-05,-2.0328790734103208e-20,1.2258016154611026e-20,-3.3881317890172014e-20,5.7777898331617076e-34,0.0014577260008081794,8.394842779299004e-21,-0.000583090353757143,7.409092935789268e-20,-0.0014577260008081794,2.1776644487736585e-37,-3.3881317890172014e-21,2.5162154298871674e-23,-1.504632769052528e-36,-2.0328790734103208e-19,-2.0328790734103208e-20,0.000583090353757143,6.709908233758262e-23,-2.378058473413145e-20,-4.771697863016006e-19,0.0004724111931864172,9.486769009248164e-20,5.187777465948422e-19,-0.0005668934318237007,-2.710505431213761e-20,-2.3991174093653652e-21,8.166944927992037e-22,-2.710505431213761e-20,-6.018531076210112e-36,-1.1202819813474775e-19,1.2258016154611026e-20,6.709908233758262e-23,9.448223863728344e-05,-5.212510638822994e-22,5.12228183691039e-34,0.0012755101779475808,-6.117914193866758e-23,7.318364664277155e-19,-0.00042517005931586027,-0.0012755101779475808,-1.5376251867251212e-39,2.447165803764448e-23,-0.0,-0.0,-1.2130359406315506e-19,-3.3881317890172014e-20,-2.378058473413145e-20,-5.212510638822994e-22,0.00042517005931586027,5.361978451189997e-34,0.001700680237263441,4.289958827308765e-34,4.5231720683599086e-18,-5.04289427491463e-33,-0.010204081423580647,0.0,-1.6851887013388314e-34,-2.5662387283708695e-36,-0.0,-8.092004460719039e-19,5.7777898331617076e-34,-4.771697863016006e-19,5.12228183691039e-34,5.361978451189997e-34,0.005102040711790323,7.0,6.0,7.0,4.0,0.036613721400499344,-0.006713131908327341,-0.007598396390676498,-0.006713131908327341,-0.01034985389560461,0.00035430840216577053,0.000546647235751152,0.00047831633128225803,0.0007653061184100807,0.0004555393534246832,0.000546647235751152,0.0008746355888433754,0.00035430840216577053,0.0007653061184100807,0.0008503401186317205,-0.006713131908327341,0.004080114420503378,0.000546647235751152,0.00047831633128225803,0.0007653061184100807,-0.00042517005931586027,-0.00018221575010102242,-0.0001594387722434476,-0.00025510202976875007,1.0842021724855044e-19,1.8657979600799858e-20,8.093803158498687e-21,5.421010862427522e-20,4.824699347674242e-21,-2.994338596559536e-34,-0.007598396390676498,0.000546647235751152,0.005544824991375208,0.000546647235751152,0.0008746355888433754,-1.3552527156068805e-20,-0.00021865889721084386,-8.802285776531056e-21,-3.8557069393727375e-20,-0.00068330904468894,-0.00021865889721084386,-0.0003498542355373502,5.519636640837985e-19,4.404571325722362e-19,1.6165121286126196e-18,-0.006713131908327341,0.00047831633128225803,0.000546647235751152,0.004080114420503378,0.0007653061184100807,-7.151417450808477e-21,-2.5762734048420114e-20,-0.0001594387722434476,-4.352786911319701e-20,8.131516293641283e-19,-0.00018221575010102242,3.601006396540296e-20,-0.00042517005931586027,-0.00025510202976875007,-1.7332846037157022e-33,-0.01034985389560461,0.0007653061184100807,0.0008746355888433754,0.0007653061184100807,0.012852284125983715,-1.3552527156068805e-20,-3.0395737116412676e-20,-3.87594443004673e-20,-0.0005102040595375001,1.3663336270926409e-18,8.216219588366713e-20,-0.000583090353757143,4.0657581468206416e-20,-0.0005102040595375001,-0.0025510203558951616,0.00035430840216577053,-0.00042517005931586027,-1.3552527156068805e-20,-7.151417450808477e-21,-1.3552527156068805e-20,7.086167897796258e-05,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,3.970850238302049e-21,7.451768921647939e-38,-3.1453617076716217e-37,1.0023902294301167e-21,-1.0850716998279671e-37,0.0,0.000546647235751152,-0.00018221575010102242,-0.00021865889721084386,-2.5762734048420114e-20,-3.0395737116412676e-20,3.3881317890172014e-21,7.288629421964288e-05,8.310114927649139e-21,1.2852355926046747e-20,-5.421010862427522e-20,-0.0,-3.3881317890172014e-21,1.0429072488601969e-22,1.0299929647530047e-22,1.2037062152420224e-34,0.00047831633128225803,-0.0001594387722434476,-8.802285776531056e-21,-0.0001594387722434476,-3.87594443004673e-20,3.3881317890172014e-21,8.310114927649139e-21,5.3146257414482534e-05,1.4509290781457093e-20,4.315091365882026e-22,-6.21932626433543e-21,1.2550871665374924e-22,-2.0328790734103208e-20,-1.6940658945086007e-21,-4.975626554726569e-37,0.0007653061184100807,-0.00025510202976875007,-3.8557069393727375e-20,-4.352786911319701e-20,-0.0005102040595375001,-0.0,1.2852355926046747e-20,1.4509290781457093e-20,0.0001700680295471102,-9.027796614315168e-36,-2.256949153578792e-36,-7.52316384526264e-37,-5.266214691683848e-36,-7.52316384526264e-37,0.0,0.0004555393534246832,1.0842021724855044e-19,-0.00068330904468894,8.131516293641283e-19,1.3663336270926409e-18,3.970850238302049e-21,-5.421010862427522e-20,4.315091365882026e-22,-9.027796614315168e-36,0.000136661808937788,-7.453889935837843e-20,-1.0842021724855044e-19,-8.56143630843233e-20,-7.250616762651472e-20,-2.8322015354022696e-19,0.000546647235751152,1.8657979600799858e-20,-0.00021865889721084386,-0.00018221575010102242,8.216219588366713e-20,7.451768921647939e-38,-0.0,-6.21932626433543e-21,-2.256949153578792e-36,-7.453889935837843e-20,7.288629421964288e-05,-8.470329472543003e-21,-4.1860334390601196e-20,-2.0328790734103208e-20,1.6851887013388314e-34,0.0008746355888433754,8.093803158498687e-21,-0.0003498542355373502,3.601006396540296e-20,-0.000583090353757143,-3.1453617076716217e-37,-3.3881317890172014e-21,1.2550871665374924e-22,-7.52316384526264e-37,-1.0842021724855044e-19,-8.470329472543003e-21,0.0002332361473236233,3.3468990266214833e-22,-1.1590832790482355e-20,-1.3360754378336336e-19,0.00035430840216577053,5.421010862427522e-20,5.519636640837985e-19,-0.00042517005931586027,4.0657581468206416e-20,1.0023902294301167e-21,1.0429072488601969e-22,-2.0328790734103208e-20,-5.266214691683848e-36,-8.56143630843233e-20,-4.1860334390601196e-20,3.3468990266214833e-22,7.086167897796258e-05,-4.951884829202806e-21,1.8034818891455697e-34,0.0007653061184100807,4.824699347674242e-21,4.404571325722362e-19,-0.00025510202976875007,-0.0005102040595375001,-1.0850716998279671e-37,1.0299929647530047e-22,-1.6940658945086007e-21,-7.52316384526264e-37,-7.250616762651472e-20,-2.0328790734103208e-20,-1.1590832790482355e-20,-4.951884829202806e-21,0.0001700680295471102,1.5470291998257156e-34,0.0008503401186317205,-2.994338596559536e-34,1.6165121286126196e-18,-1.7332846037157022e-33,-0.0025510203558951616,0.0,1.2037062152420224e-34,-4.975626554726569e-37,0.0,-2.8322015354022696e-19,1.6851887013388314e-34,-1.3360754378336336e-19,1.8034818891455697e-34,1.5470291998257156e-34,0.0008503401186317205,7.0,6.0,7.0,5.0,0.030622368678450584,-0.005472545977681875,-0.006195335183292627,-0.005472545977681875,-0.0071428571827709675,0.00028344671591185033,0.0004373177944216877,0.00038265305920504034,0.0005102040595375001,0.00036443150020204484,0.0004373177944216877,0.000583090353757143,0.00028344671591185033,0.0005102040595375001,0.00048590864753350616,-0.005472545977681875,0.0032981049735099077,0.0004373177944216877,0.00038265305920504034,0.0005102040595375001,-0.0003401360590942204,-0.00014577258843928576,-0.00012755101488437504,-0.0001700680295471102,1.0439749317309787e-18,4.1121267900330673e-19,1.0653674314963854e-21,7.495008567099971e-19,2.2794070071672528e-20,-6.525277851634149e-19,-0.006195335183292627,0.0004373177944216877,0.004482507240027189,0.0004373177944216877,0.000583090353757143,1.111307226797642e-18,-0.0001749271177686751,5.704976796838148e-20,-5.5582835530322285e-19,-0.000546647235751152,-0.0001749271177686751,-0.0002332361473236233,5.949518269278731e-19,-2.792922088533365e-19,-1.3711418211982585e-18,-0.005472545977681875,0.00038265305920504034,0.0004373177944216877,0.0032981049735099077,0.0005102040595375001,1.0477061366790523e-18,5.070447582924486e-19,-0.00012755101488437504,-5.399834521758282e-19,4.607859233063394e-19,-0.00014577258843928576,-6.369911619105611e-19,-0.0003401360590942204,-0.0001700680295471102,-6.525277851634149e-19,-0.0071428571827709675,0.0005102040595375001,0.000583090353757143,0.0005102040595375001,0.0064868805930018425,-6.776263578034403e-20,-1.100876582670925e-19,-8.145187004227371e-19,-0.00025510202976875007,-1.1931390674241708e-18,-2.6364386451899973e-19,-0.0002915451768785715,-5.014435047745458e-19,-0.00025510202976875007,-0.0009718172950670123,0.00028344671591185033,-0.0003401360590942204,1.111307226797642e-18,1.0477061366790523e-18,-6.776263578034403e-20,5.668934318237007e-05,-4.404571325722362e-20,-6.776263578034403e-20,-1.0164395367051604e-20,-1.4883888569139682e-19,-6.473603361780078e-20,-1.6184008404450196e-20,-1.0884392759263366e-19,-1.416100735389392e-20,1.7982232817067988e-20,0.0004373177944216877,-0.00014577258843928576,-0.0001749271177686751,5.070447582924486e-19,-1.100876582670925e-19,-4.404571325722362e-20,5.8309036830905825e-05,-3.332479335898575e-20,6.467240735360347e-23,-1.265871326776551e-19,-2.710505431213761e-20,-1.6940658945086007e-20,-5.576997092674563e-20,-2.4276014222262428e-21,2.774401579241788e-20,0.00038265305920504034,-0.00012755101488437504,5.704976796838148e-20,-0.00012755101488437504,-8.145187004227371e-19,-6.776263578034403e-20,-3.332479335898575e-20,4.251700738677755e-05,3.4666929445769984e-20,-3.7620920458219165e-22,-9.28728907309346e-21,3.641401891001294e-20,-2.6621744958685094e-20,3.049318610115481e-20,1.21380069495725e-19,0.0005102040595375001,-0.0001700680295471102,-5.5582835530322285e-19,-5.399834521758282e-19,-0.00025510202976875007,-1.0164395367051604e-20,6.467240735360347e-23,3.4666929445769984e-20,8.50340147735551e-05,8.344879777831094e-20,3.641401891001294e-20,1.4574137217837276e-20,6.136436789285222e-20,-1.1619288934465173e-20,5.556707256977432e-20,0.00036443150020204484,1.0439749317309787e-18,-0.000546647235751152,4.607859233063394e-19,-1.1931390674241708e-18,-1.4883888569139682e-19,-1.265871326776551e-19,-3.7620920458219165e-22,8.344879777831094e-20,0.00010932944860542193,-4.743384504624082e-20,0.0,-6.85747461961121e-20,3.4896769333786085e-20,1.7918010320438915e-19,0.0004373177944216877,4.1121267900330673e-19,-0.0001749271177686751,-0.00014577258843928576,-2.6364386451899973e-19,-6.473603361780078e-20,-2.710505431213761e-20,-9.28728907309346e-21,3.641401891001294e-20,-4.743384504624082e-20,5.8309036830905825e-05,-2.050518336465909e-21,-7.523115905820582e-20,-0.0,2.774401579241788e-20,0.000583090353757143,1.0653674314963854e-21,-0.0002332361473236233,-6.369911619105611e-19,-0.0002915451768785715,-1.6184008404450196e-20,-1.6940658945086007e-20,3.641401891001294e-20,1.4574137217837276e-20,0.0,-2.050518336465909e-21,0.00011661807366181165,7.013070524006703e-20,5.604558362943918e-20,1.5438859551737993e-19,0.00028344671591185033,7.495008567099971e-19,5.949518269278731e-19,-0.0003401360590942204,-5.014435047745458e-19,-1.0884392759263366e-19,-5.576997092674563e-20,-2.6621744958685094e-20,6.136436789285222e-20,-6.85747461961121e-20,-7.523115905820582e-20,7.013070524006703e-20,5.668934318237007e-05,-9.353442519464961e-21,1.7982232817067988e-20,0.0005102040595375001,2.2794070071672528e-20,-2.792922088533365e-19,-0.0001700680295471102,-0.00025510202976875007,-1.416100735389392e-20,-2.4276014222262428e-21,3.049318610115481e-20,-1.1619288934465173e-20,3.4896769333786085e-20,-0.0,5.604558362943918e-20,-9.353442519464961e-21,8.50340147735551e-05,5.556707256977432e-20,0.00048590864753350616,-6.525277851634149e-19,-1.3711418211982585e-18,-6.525277851634149e-19,-0.0009718172950670123,1.7982232817067988e-20,2.774401579241788e-20,1.21380069495725e-19,5.556707256977432e-20,1.7918010320438915e-19,2.774401579241788e-20,1.5438859551737993e-19,1.7982232817067988e-20,5.556707256977432e-20,0.00024295432376675308,7.0,6.0,7.0,6.0,0.026340056210756302,-0.004621193744242191,-0.005232194904237986,-0.004621193744242191,-0.005232194904237986,0.0002362055965932086,0.00036443150020204484,0.0003188775444868952,0.00036443150020204484,0.00030369291198439896,0.00036443150020204484,0.00041649313061498106,0.0002362055965932086,0.00036443150020204484,0.00030369291198439896,-0.004621193744242191,0.002768666949123144,0.00036443150020204484,0.0003188775444868952,0.00036443150020204484,-0.00028344671591185033,-0.00012147716188337654,-0.00010629251482896507,-0.00012147716188337654,-5.421010862427522e-20,1.3833660319998864e-20,5.8387634058370836e-21,5.421010862427522e-20,-1.1126426614289949e-20,-5.969562147990598e-20,-0.005232194904237986,0.00036443150020204484,0.0037631888408213854,0.00036443150020204484,0.00041649313061498106,1.3552527156068805e-20,-0.00014577258843928576,4.1755939996770456e-21,3.3881317890172014e-21,-0.0004555393534246832,-0.00014577258843928576,-0.00016659725224599242,2.648803185890075e-19,1.502859218507847e-19,3.856231746697311e-19,-0.004621193744242191,0.0003188775444868952,0.00036443150020204484,0.002768666949123144,0.00036443150020204484,9.855768949070528e-21,-2.3702074873463153e-21,-0.00010629251482896507,-2.3254791901406092e-20,6.098637220230962e-19,-0.00012147716188337654,6.776263578034403e-21,-0.00028344671591185033,-0.00012147716188337654,-3.0923481578395776e-20,-0.005232194904237986,0.00036443150020204484,0.00041649313061498106,0.00036443150020204484,0.0037631888408213854,1.3552527156068805e-20,-7.121728613842499e-21,-8.285449758876e-21,-0.00014577258843928576,6.356285886465331e-19,-7.48352723557425e-21,-0.00016659725224599242,6.776263578034403e-21,-0.00014577258843928576,-0.0004555393534246832,0.0002362055965932086,-0.00028344671591185033,1.3552527156068805e-20,9.855768949070528e-21,1.3552527156068805e-20,4.724111931864172e-05,-3.3881317890172014e-21,-0.0,-3.3881317890172014e-21,1.9535406992700864e-21,3.979596161918729e-37,4.68836238740977e-38,-6.263969076786914e-22,-1.0259550654615575e-37,2.0475080937386836e-21,0.00036443150020204484,-0.00012147716188337654,-0.00014577258843928576,-2.3702074873463153e-21,-7.121728613842499e-21,-3.3881317890172014e-21,4.8590864025754854e-05,1.2680832271215634e-21,2.0718014755226353e-21,1.6940658945086007e-20,-1.6940658945086007e-21,-0.0,4.309419645300104e-22,-6.394689268473244e-36,1.6701303652748061e-22,0.0003188775444868952,-0.00010629251482896507,4.1755939996770456e-21,-0.00010629251482896507,-8.285449758876e-21,-0.0,1.2680832271215634e-21,3.543083948898129e-05,3.600877149569585e-21,2.232314298191095e-22,-3.135762538418967e-21,8.641661352132614e-23,-1.6940658945086007e-20,-8.470329472543003e-22,-3.540358202167053e-23,0.00036443150020204484,-0.00012147716188337654,3.3881317890172014e-21,-2.3254791901406092e-20,-0.00014577258843928576,-3.3881317890172014e-21,2.0718014755226353e-21,3.600877149569585e-21,4.8590864025754854e-05,-6.036991706249483e-22,-7.648291728221037e-23,-2.4392053768154266e-21,-1.5756272269664808e-22,5.467010343979853e-21,1.843019958637947e-20,0.00030369291198439896,-5.421010862427522e-20,-0.0004555393534246832,6.098637220230962e-19,6.356285886465331e-19,1.9535406992700864e-21,1.6940658945086007e-20,2.232314298191095e-22,-6.036991706249483e-22,9.110787505051121e-05,-7.115076756936123e-20,-4.743384504624082e-20,-5.799590749277729e-20,-3.468001893272878e-20,-8.004259080043975e-20,0.00036443150020204484,1.3833660319998864e-20,-0.00014577258843928576,-0.00012147716188337654,-7.48352723557425e-21,3.979596161918729e-37,-1.6940658945086007e-21,-3.135762538418967e-21,-7.648291728221037e-23,-7.115076756936123e-20,4.8590864025754854e-05,-4.527516537259311e-21,7.67994385696438e-21,6.776263578034403e-21,-2.390091275509601e-22,0.00041649313061498106,5.8387634058370836e-21,-0.00016659725224599242,6.776263578034403e-21,-0.00016659725224599242,4.68836238740977e-38,-0.0,8.641661352132614e-23,-2.4392053768154266e-21,-4.743384504624082e-20,-4.527516537259311e-21,6.663890235358849e-05,2.3044429430902004e-22,1.1141561434560255e-21,6.019170770420689e-21,0.0002362055965932086,5.421010862427522e-20,2.648803185890075e-19,-0.00028344671591185033,6.776263578034403e-21,-6.263969076786914e-22,4.309419645300104e-22,-1.6940658945086007e-20,-1.5756272269664808e-22,-5.799590749277729e-20,7.67994385696438e-21,2.3044429430902004e-22,4.724111931864172e-05,-2.215316907903802e-21,-1.5932013566170241e-21,0.00036443150020204484,-1.1126426614289949e-20,1.502859218507847e-19,-0.00012147716188337654,-0.00014577258843928576,-1.0259550654615575e-37,-6.394689268473244e-36,-8.470329472543003e-22,5.467010343979853e-21,-3.468001893272878e-20,6.776263578034403e-21,1.1141561434560255e-21,-2.215316907903802e-21,4.8590864025754854e-05,1.6793209154137028e-20,0.00030369291198439896,-5.969562147990598e-20,3.856231746697311e-19,-3.0923481578395776e-20,-0.0004555393534246832,2.0475080937386836e-21,1.6701303652748061e-22,-3.540358202167053e-23,1.843019958637947e-20,-8.004259080043975e-20,-2.390091275509601e-22,6.019170770420689e-21,-1.5932013566170241e-21,1.6793209154137028e-20,9.110787505051121e-05,7.0,6.0,7.0,7.0,0.02311970666050911,-0.004000069573521614,-0.004529362544417381,-0.004000069573521614,-0.004000069573521614,0.00020246193162165582,0.0003123698406852782,0.000273323617875576,0.000273323617875576,0.00026030821027234197,0.0003123698406852782,0.0003123698406852782,0.00020246193162165582,0.000273323617875576,0.00020246193162165582,-0.004000069573521614,0.0023861585650593042,0.0003123698406852782,0.000273323617875576,0.000273323617875576,-0.00024295432376675308,-0.00010412328265374526,-9.110787505051121e-05,-9.110787505051121e-05,-2.0328790734103208e-20,-3.587258557824437e-21,5.586527138254808e-22,-0.0,1.4247218718429483e-21,-4.808397669596482e-21,-0.004529362544417381,0.0003123698406852782,0.0032434402965009212,0.0003123698406852782,0.0003123698406852782,-0.0,-0.00012494793918449432,-5.828567839331871e-21,-3.3881317890172014e-21,-0.00039046231540851295,-0.00012494793918449432,-0.00012494793918449432,2.145157338584001e-19,1.3340418659964602e-19,2.149958346558047e-19,-0.004000069573521614,0.000273323617875576,0.0003123698406852782,0.0023861585650593042,0.000273323617875576,-1.7908074540344832e-21,4.5323443155121654e-21,-9.110787505051121e-05,1.0312926919804469e-22,5.014435047745458e-19,-0.00010412328265374526,1.3552527156068805e-20,-0.00024295432376675308,-9.110787505051121e-05,-5.2601085620907595e-21,-0.004000069573521614,0.000273323617875576,0.0003123698406852782,0.000273323617875576,0.0023861585650593042,-0.0,4.580982676894158e-22,-4.835654240132385e-21,-9.110787505051121e-05,5.037752752225445e-19,1.297762370564738e-21,-0.00010412328265374526,-1.3552527156068805e-20,-9.110787505051121e-05,-0.00024295432376675308,0.00020246193162165582,-0.00024295432376675308,-0.0,-1.7908074540344832e-21,-0.0,4.049238850711845e-05,-0.0,-0.0,-0.0,-5.14389210940776e-22,1.2513041493267515e-37,-2.563174996670796e-38,2.4584528255963503e-22,-2.3002454421738305e-39,5.007066520425455e-22,0.0003123698406852782,-0.00010412328265374526,-0.00012494793918449432,4.5323443155121654e-21,4.580982676894158e-22,-0.0,4.1649313061498106e-05,7.975962333926755e-22,9.017323857174825e-22,1.0164395367051604e-20,-8.470329472543003e-22,-8.470329472543003e-22,-7.396232114994433e-22,-6.394689268473244e-36,-1.6087891723735444e-22,0.000273323617875576,-9.110787505051121e-05,-5.828567839331871e-21,-9.110787505051121e-05,-4.835654240132385e-21,-0.0,7.975962333926755e-22,3.0369290470844135e-05,2.4108828721808404e-22,-4.524906657218703e-22,1.879870935706541e-21,8.389392469885072e-23,2.1756995760929515e-38,-0.0,6.004083710945028e-22,0.000273323617875576,-9.110787505051121e-05,-3.3881317890172014e-21,1.0312926919804469e-22,-9.110787505051121e-05,-0.0,9.017323857174825e-22,2.4108828721808404e-22,3.0369290470844135e-05,-1.270652591266079e-22,2.174255744843075e-23,4.357492955082017e-22,8.368789316306872e-23,-4.749072906143161e-22,5.15920964248549e-23,0.00026030821027234197,-2.0328790734103208e-20,-0.00039046231540851295,5.014435047745458e-19,5.037752752225445e-19,-5.14389210940776e-22,1.0164395367051604e-20,-4.524906657218703e-22,-1.270652591266079e-22,7.809246017131954e-05,-4.743384504624082e-20,-4.743384504624082e-20,-5.2881572549984097e-20,-2.6010014199546586e-20,-5.0252983202572374e-20,0.0003123698406852782,-3.587258557824437e-21,-0.00012494793918449432,-0.00010412328265374526,1.297762370564738e-21,1.2513041493267515e-37,-8.470329472543003e-22,1.879870935706541e-21,2.174255744843075e-23,-4.743384504624082e-20,4.1649313061498106e-05,-2.7288234024242976e-21,1.7543163086102854e-20,1.6940658945086007e-21,5.798015319581533e-23,0.0003123698406852782,5.586527138254808e-22,-0.00012494793918449432,1.3552527156068805e-20,-0.00010412328265374526,-2.563174996670796e-38,-8.470329472543003e-22,8.389392469885072e-23,4.357492955082017e-22,-4.743384504624082e-20,-2.7288234024242976e-21,4.1649313061498106e-05,2.2371711570123595e-22,-2.8121038899505867e-21,1.221529356844237e-20,0.00020246193162165582,-0.0,2.145157338584001e-19,-0.00024295432376675308,-1.3552527156068805e-20,2.4584528255963503e-22,-7.396232114994433e-22,2.1756995760929515e-38,8.368789316306872e-23,-5.2881572549984097e-20,1.7543163086102854e-20,2.2371711570123595e-22,4.049238850711845e-05,1.0425021277645988e-21,6.913587070776534e-22,0.000273323617875576,1.4247218718429483e-21,1.3340418659964602e-19,-9.110787505051121e-05,-9.110787505051121e-05,-2.3002454421738305e-39,-6.394689268473244e-36,-0.0,-4.749072906143161e-22,-2.6010014199546586e-20,1.6940658945086007e-21,-2.8121038899505867e-21,1.0425021277645988e-21,3.0369290470844135e-05,-3.932995163732321e-22,0.00020246193162165582,-4.808397669596482e-21,2.149958346558047e-19,-5.2601085620907595e-21,-0.00024295432376675308,5.007066520425455e-22,-1.6087891723735444e-22,6.004083710945028e-22,5.15920964248549e-23,-5.0252983202572374e-20,5.798015319581533e-23,1.221529356844237e-20,6.913587070776534e-22,-3.932995163732321e-22,4.049238850711845e-05,7.0,6.0,7.0,8.0,0.02060682885348797,-0.0035266338381916285,-0.003993561491370201,-0.0035266338381916285,-0.0031584061216562986,0.00017715420108288527,0.000273323617875576,0.00023915816564112902,0.00021258502965793014,0.0002277696767123416,0.000273323617875576,0.00024295432376675308,0.00017715420108288527,0.00021258502965793014,0.00014172335795592517,-0.0035266338381916285,0.002096746349707246,0.000273323617875576,0.00023915816564112902,0.00021258502965793014,-0.00021258502965793014,-9.110787505051121e-05,-7.97193861217238e-05,-7.086167897796258e-05,-1.1736135598609718e-34,7.673125271465787e-21,1.924312910482443e-20,2.710505431213761e-20,1.176224739318193e-20,2.2866941129346755e-20,-0.003993561491370201,0.000273323617875576,0.002850157907232642,0.000273323617875576,0.00024295432376675308,-2.0328790734103208e-20,-0.00010932944860542193,-4.238435088527284e-21,9.589304508522647e-21,-0.00034165452234447,-0.00010932944860542193,-9.718172805150971e-05,2.4155059414074434e-19,1.119456868686456e-19,2.199027088235605e-19,-0.0035266338381916285,0.00023915816564112902,0.000273323617875576,0.002096746349707246,0.00021258502965793014,-2.056674531239607e-21,-1.204908357969463e-20,-7.97193861217238e-05,-1.5846279405684353e-22,4.2438788255308064e-19,-9.110787505051121e-05,1.1858461261560205e-20,-0.00021258502965793014,-7.086167897796258e-05,2.3252311975155566e-20,-0.0031584061216562986,0.00021258502965793014,0.00024295432376675308,0.00021258502965793014,0.0016110185533761978,6.776263578034403e-21,-9.535946512251575e-21,-9.871349671389788e-21,-6.073858094168827e-05,3.657298428293488e-19,-2.293292615075955e-21,-6.941552419448271e-05,-0.0,-6.073858094168827e-05,-0.00014172335795592517,0.00017715420108288527,-0.00021258502965793014,-2.0328790734103208e-20,-2.056674531239607e-21,6.776263578034403e-21,3.543083948898129e-05,3.3881317890172014e-21,1.6940658945086007e-21,-0.0,0.0,-1.3100694501421856e-37,3.2552152115877786e-38,-2.540156601054156e-22,2.1255164156183976e-37,3.056111265440576e-22,0.000273323617875576,-9.110787505051121e-05,-0.00010932944860542193,-1.204908357969463e-20,-9.535946512251575e-21,3.3881317890172014e-21,3.644314710982144e-05,4.016361327863804e-21,3.1786489047333223e-21,0.0,-3.87514404701122e-37,-8.630423704974726e-37,-1.504632769052528e-36,-5.346389052858012e-37,-1.0078278461062763e-36,0.00023915816564112902,-7.97193861217238e-05,-4.238435088527284e-21,-7.97193861217238e-05,-9.871349671389788e-21,1.6940658945086007e-21,4.016361327863804e-21,2.6573128707241267e-05,3.536442687908545e-21,1.8055593228630336e-35,-2.61399918195393e-21,8.956834791823383e-24,-8.470329472543003e-21,-4.235164736271502e-22,6.73821824283611e-23,0.00021258502965793014,-7.086167897796258e-05,9.589304508522647e-21,-1.5846279405684353e-22,-6.073858094168827e-05,-0.0,3.1786489047333223e-21,3.536442687908545e-21,2.0246194253559224e-05,1.8055593228630336e-35,4.82493046498681e-23,-5.505714157152952e-21,-1.2275479534501364e-23,-2.9976280209356215e-21,-7.158731213763609e-21,0.0002277696767123416,-1.1736135598609718e-34,-0.00034165452234447,4.2438788255308064e-19,3.657298428293488e-19,0.0,0.0,1.8055593228630336e-35,1.8055593228630336e-35,6.8330904468894e-05,-3.623708303828329e-20,-2.760920473961734e-20,-4.3831689967248325e-20,-2.023001212114988e-20,-3.3716686330054087e-20,0.000273323617875576,7.673125271465787e-21,-0.00010932944860542193,-9.110787505051121e-05,-2.293292615075955e-21,-1.3100694501421856e-37,-3.87514404701122e-37,-2.61399918195393e-21,4.82493046498681e-23,-3.623708303828329e-20,3.644314710982144e-05,1.0236382168449064e-23,-7.49191536397342e-21,4.235164736271502e-22,1.125817097978777e-22,0.00024295432376675308,1.924312910482443e-20,-9.718172805150971e-05,1.1858461261560205e-20,-6.941552419448271e-05,3.2552152115877786e-38,-8.630423704974726e-37,8.956834791823383e-24,-5.505714157152952e-21,-2.760920473961734e-20,1.0236382168449064e-23,2.7766209313995205e-05,2.388489225228842e-23,-3.44747836289683e-21,-1.4759149409649258e-20,0.00017715420108288527,2.710505431213761e-20,2.4155059414074434e-19,-0.00021258502965793014,-0.0,-2.540156601054156e-22,-1.504632769052528e-36,-8.470329472543003e-21,-1.2275479534501364e-23,-4.3831689967248325e-20,-7.49191536397342e-21,2.388489225228842e-23,3.543083948898129e-05,3.2578191492643713e-23,5.689645016301381e-22,0.00021258502965793014,1.176224739318193e-20,1.119456868686456e-19,-7.086167897796258e-05,-6.073858094168827e-05,2.1255164156183976e-37,-5.346389052858012e-37,-4.235164736271502e-22,-2.9976280209356215e-21,-2.023001212114988e-20,4.235164736271502e-22,-3.44747836289683e-21,3.2578191492643713e-23,2.0246194253559224e-05,-7.838337635158348e-21,0.00014172335795592517,2.2866941129346755e-20,2.199027088235605e-19,2.3252311975155566e-20,-0.00014172335795592517,3.056111265440576e-22,-1.0078278461062763e-36,6.73821824283611e-23,-7.158731213763609e-21,-3.3716686330054087e-20,1.125817097978777e-22,-1.4759149409649258e-20,5.689645016301381e-22,-7.838337635158348e-21,2.0246194253559224e-05,7.0,6.0,8.0,3.0,0.04076318070292473,-0.007670776452869177,-0.0086805559694767,-0.0068735829554498196,-0.014473497867584229,0.00041335978312417865,0.0006377550889737904,0.0004960317746736109,0.0011160714784637094,0.0005314626032486558,0.0005668934318237007,0.0012755101779475808,0.0003306878206785768,0.0009920635493472219,0.0014880952658131719,-0.007670776452869177,0.004706396255642176,0.0006377550889737904,0.0004960317746736109,0.0011160714784637094,-0.0004960317746736109,-0.00021258502965793014,-0.0001653439103392884,-0.00037202381645329297,-8.425943506694157e-35,-5.929230630780102e-21,5.266214691683848e-36,6.776263578034403e-20,-0.0,0.0,-0.0086805559694767,0.0006377550889737904,0.006395266391336918,0.0005668934318237007,0.0012755101779475808,2.710505431213761e-20,-0.00025510202976875007,-1.9300634313268205e-20,-3.0085657477804664e-20,-0.0007971939048729837,-0.00022675737272948027,-0.0005102040595375001,3.601352584551347e-19,4.720336150831057e-19,3.540251958026928e-18,-0.0068735829554498196,0.0004960317746736109,0.0005668934318237007,0.0036173199769109488,0.0009920635493472219,-1.2740549218445707e-20,-1.3371403682488102e-20,-0.00014172335795592517,-5.994077713395138e-20,8.330085652575583e-19,-0.0001619695540284738,1.0789339367123366e-19,-0.0003306878206785768,-0.00028344671591185033,-3.699301293188878e-33,-0.014473497867584229,0.0011160714784637094,0.0012755101779475808,0.0009920635493472219,0.02935444936156273,-2.710505431213761e-20,-3.0085657477804664e-20,-5.994077713395138e-20,-0.0011160714784637094,2.116444581203184e-18,1.0789339367123366e-19,-0.0012755101779475808,-0.0,-0.0009920635493472219,-0.008928571827709675,0.00041335978312417865,-0.0004960317746736109,2.710505431213761e-20,-1.2740549218445707e-20,-2.710505431213761e-20,8.26719551696442e-05,-0.0,-3.3881317890172014e-21,-0.0,0.0,2.8935246636624357e-38,-0.0,2.3456297622267984e-21,-0.0,-0.0,0.0006377550889737904,-0.00021258502965793014,-0.00025510202976875007,-1.3371403682488102e-20,-3.0085657477804664e-20,-0.0,8.50340147735551e-05,4.457134695461629e-21,1.0028552761866077e-20,0.0,1.5983278667453923e-37,-0.0,-2.256949153578792e-36,-0.0,-0.0,0.0004960317746736109,-0.0001653439103392884,-1.9300634313268205e-20,-0.00014172335795592517,-5.994077713395138e-20,-3.3881317890172014e-21,4.457134695461629e-21,4.724111931864172e-05,1.9980258506121417e-20,2.407412430484045e-35,1.6940658945086007e-21,-1.504632769052528e-36,-2.371692252312041e-20,-0.0,-0.0,0.0011160714784637094,-0.00037202381645329297,-3.0085657477804664e-20,-5.994077713395138e-20,-0.0011160714784637094,-0.0,1.0028552761866077e-20,1.9980258506121417e-20,0.00037202381645329297,0.0,1.128474576789396e-36,-0.0,-6.018531076210112e-36,-0.0,-0.0,0.0005314626032486558,-8.425943506694157e-35,-0.0007971939048729837,8.330085652575583e-19,2.116444581203184e-18,0.0,0.0,2.407412430484045e-35,0.0,0.0001594387722434476,-7.515839301369529e-20,-1.479680842262287e-19,-7.867226918051762e-20,-9.440671784674232e-20,-7.080504226246586e-19,0.0005668934318237007,-5.929230630780102e-21,-0.00022675737272948027,-0.0001619695540284738,1.0789339367123366e-19,2.8935246636624357e-38,1.5983278667453923e-37,1.6940658945086007e-21,1.128474576789396e-36,-7.515839301369529e-20,6.478781870100647e-05,-4.315735682225861e-20,9.493161725978264e-21,-0.0,3.3377030219108707e-34,0.0012755101779475808,5.266214691683848e-36,-0.0005102040595375001,1.0789339367123366e-19,-0.0012755101779475808,-0.0,-0.0,-1.504632769052528e-36,-0.0,-1.479680842262287e-19,-4.315735682225861e-20,0.0005102040595375001,6.620384183831123e-35,8.726870060504662e-35,6.571102960705341e-34,0.0003306878206785768,6.776263578034403e-20,3.601352584551347e-19,-0.0003306878206785768,-0.0,2.3456297622267984e-21,-2.256949153578792e-36,-2.371692252312041e-20,-6.018531076210112e-36,-7.867226918051762e-20,9.493161725978264e-21,6.620384183831123e-35,4.724111931864172e-05,3.515723591387696e-36,3.49375035616001e-34,0.0009920635493472219,-0.0,4.720336150831057e-19,-0.00028344671591185033,-0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,-9.440671784674232e-20,-0.0,8.726870060504662e-35,3.515723591387696e-36,0.00028344671591185033,4.192500702898501e-34,0.0014880952658131719,0.0,3.540251958026928e-18,-3.699301293188878e-33,-0.008928571827709675,-0.0,-0.0,-0.0,-0.0,-7.080504226246586e-19,3.3377030219108707e-34,6.571102960705341e-34,3.49375035616001e-34,4.192500702898501e-34,0.004464285913854837,7.0,6.0,8.0,4.0,0.032669004052877426,-0.005920493043959141,-0.006701743230223656,-0.005303996615111828,-0.009130527265369892,0.0003100198518950492,0.00047831633128225803,0.00037202381645329297,0.0006696428754366934,0.00039859695243649185,0.00042517005931586027,0.0007653061184100807,0.00024801588733680546,0.0005952381179668009,0.0007440476329065859,-0.005920493043959141,0.003585600992664695,0.00047831633128225803,0.00037202381645329297,0.0006696428754366934,-0.00037202381645329297,-0.0001594387722434476,-0.00012400794366840273,-0.00022321428696159273,-1.6594931053251226e-19,-6.709497177904302e-20,-1.699320947090756e-19,3.3881317890172014e-20,-7.794316763168895e-20,-3.7172646283065783e-19,-0.006701743230223656,0.00047831633128225803,0.004872980527579784,0.00042517005931586027,0.0007653061184100807,-0.0,-0.00019132652960252017,-1.9891612855671862e-20,-8.49660473545378e-20,-0.0005978954141028225,-0.0001700680295471102,-0.0003061224415432662,2.578180573141829e-19,1.8073124779868508e-19,7.292919037671375e-19,-0.005303996615111828,0.00037202381645329297,0.00042517005931586027,0.00275550689548254,0.0005952381179668009,-2.8290406957203584e-21,-4.720335892337116e-20,-0.00010629251482896507,-2.6523791910757184e-20,3.2098283550904506e-19,-0.00012147716188337654,-1.5536649102247954e-19,-0.00024801588733680546,-0.0001700680295471102,-2.8322015354022696e-19,-0.009130527265369892,0.0006696428754366934,0.0007653061184100807,0.0005952381179668009,0.011295351199805737,-0.0,-8.49660473545378e-20,2.770244996663709e-20,-0.00044642857392318547,8.450364951471153e-19,-7.659449487936099e-20,-0.0005102040595375001,-1.3552527156068805e-20,-0.00039682540227659047,-0.0022321429569274187,0.0003100198518950492,-0.00037202381645329297,-0.0,-2.8290406957203584e-21,-0.0,6.200397183420137e-05,-0.0,3.3881317890172014e-21,-0.0,2.4089356441568434e-36,1.3160382641353956e-36,2.63086347463697e-36,2.606255319411497e-22,2.560631382119129e-36,1.3492092274110417e-35,0.00047831633128225803,-0.0001594387722434476,-0.00019132652960252017,-4.720335892337116e-20,-8.49660473545378e-20,-0.0,6.377550744218752e-05,2.2084126589296662e-36,9.433126208439923e-36,6.637972550547461e-20,1.8881344215583318e-20,3.3986418295580265e-20,-2.871218133294438e-35,-2.006519925753348e-35,-8.0967666323499e-35,0.00037202381645329297,-0.00012400794366840273,-1.9891612855671862e-20,-0.00010629251482896507,2.770244996663709e-20,3.3881317890172014e-21,2.2084126589296662e-36,3.543083948898129e-05,-1.318697067866362e-20,2.407412430484045e-35,5.683317670265687e-21,-0.0,-1.0164395367051604e-20,3.3881317890172014e-21,-1.7338441229554818e-35,0.0006696428754366934,-0.00022321428696159273,-8.49660473545378e-20,-2.6523791910757184e-20,-0.00044642857392318547,-0.0,9.433126208439923e-36,-1.318697067866362e-20,0.00014880952949170023,-9.381789735608718e-35,6.714432484967634e-36,5.664402941557569e-20,5.266214691683848e-36,4.4056469836361075e-20,2.4781765050356993e-19,0.00039859695243649185,-1.6594931053251226e-19,-0.0005978954141028225,3.2098283550904506e-19,8.450364951471153e-19,2.4089356441568434e-36,6.637972550547461e-20,2.407412430484045e-35,-9.381789735608718e-35,0.00011957908282056451,7.080503838505674e-20,3.866822178853919e-20,-5.900420188538822e-20,-5.664402941557569e-20,-2.4781765050356993e-19,0.00042517005931586027,-6.709497177904302e-20,-0.0001700680295471102,-0.00012147716188337654,-7.659449487936099e-20,1.3160382641353956e-36,1.8881344215583318e-20,5.683317670265687e-21,6.714432484967634e-36,7.080503838505674e-20,4.8590864025754854e-05,2.5894414093355167e-20,1.0629413042974188e-20,3.3881317890172014e-21,-9.734049461912286e-35,0.0007653061184100807,-1.699320947090756e-19,-0.0003061224415432662,-1.5536649102247954e-19,-0.0005102040595375001,2.63086347463697e-36,3.3986418295580265e-20,-0.0,5.664402941557569e-20,3.866822178853919e-20,2.5894414093355167e-20,0.0002040816325461492,-1.3541694921472752e-35,6.042030278233632e-20,3.398641894181512e-19,0.00024801588733680546,3.3881317890172014e-20,2.578180573141829e-19,-0.00024801588733680546,-1.3552527156068805e-20,2.606255319411497e-22,-2.871218133294438e-35,-1.0164395367051604e-20,5.266214691683848e-36,-5.900420188538822e-20,1.0629413042974188e-20,-1.3541694921472752e-35,3.543083948898129e-05,9.269417044321556e-22,1.2657614115002704e-34,0.0005952381179668009,-7.794316763168895e-20,1.8073124779868508e-19,-0.0001700680295471102,-0.00039682540227659047,2.560631382119129e-36,-2.006519925753348e-35,3.3881317890172014e-21,4.4056469836361075e-20,-5.664402941557569e-20,3.3881317890172014e-21,6.042030278233632e-20,9.269417044321556e-22,0.00011337868636474013,1.8881343569348464e-19,0.0007440476329065859,-3.7172646283065783e-19,7.292919037671375e-19,-2.8322015354022696e-19,-0.0022321429569274187,1.3492092274110417e-35,-8.0967666323499e-35,-1.7338441229554818e-35,2.4781765050356993e-19,-2.4781765050356993e-19,-9.734049461912286e-35,3.398641894181512e-19,1.2657614115002704e-34,1.8881343569348464e-19,0.0007440476329065859,7.0,6.0,8.0,5.0,0.027310090139508247,-0.004825680050998926,-0.005463435314595699,-0.004322562366724014,-0.0062996032647788525,0.00024801588733680546,0.00038265305920504034,0.00029761905898340046,0.00044642857392318547,0.0003188775444868952,0.0003401360590942204,0.0005102040595375001,0.00019841270113829523,0.00039682540227659047,0.00042517005931586027,-0.004825680050998926,0.0028982425574213266,0.00038265305920504034,0.00029761905898340046,0.00044642857392318547,-0.00029761905898340046,-0.00012755101488437504,-9.920635056914762e-05,-0.00014880952949170023,-2.472533582294439e-19,-4.356186946754721e-19,-1.414254784917252e-18,-3.5236570605778894e-19,-1.2046465973108554e-18,-3.2514989226163048e-18,-0.005463435314595699,0.00038265305920504034,0.003939200658351183,0.0003401360590942204,0.0005102040595375001,-7.453889935837843e-20,-0.0001530612207716331,-5.081914891153885e-19,-1.466590502273482e-18,-0.00047831633128225803,-0.0001360544265480712,-0.0002040816325461492,-3.075807776762785e-19,-1.447554181246493e-18,-3.6312869067511454e-18,-0.004322562366724014,0.00029761905898340046,0.0003401360590942204,0.0022270812187343836,0.00039682540227659047,-4.848598259625647e-19,-4.98402995637954e-19,-8.50340147735551e-05,-1.1576190013429547e-18,-8.107885811492175e-19,-9.718172805150971e-05,-1.4781086821105533e-18,-0.00019841270113829523,-0.00011337868636474013,-1.551652586589607e-18,-0.0062996032647788525,0.00044642857392318547,0.0005102040595375001,0.00039682540227659047,0.005700821988284588,-2.1212850353526913e-18,-1.5352364635504562e-18,-1.321411102386111e-18,-0.00022321428696159273,-3.0902377874524075e-18,-8.862464781681423e-19,-0.00025510202976875007,-8.74138001566438e-19,-0.00019841270113829523,-0.0008503401186317205,0.00024801588733680546,-0.00029761905898340046,-7.453889935837843e-20,-4.848598259625647e-19,-2.1212850353526913e-18,4.960317528457381e-05,-3.3881317890172014e-21,2.371692252312041e-20,1.0164395367051604e-19,-2.950210094269411e-20,1.3666497134842127e-20,9.063045094233022e-20,2.156448224698379e-20,9.230879394285178e-20,2.8322015354022696e-19,0.00038265305920504034,-0.00012755101488437504,-0.0001530612207716331,-4.98402995637954e-19,-1.5352364635504562e-18,-3.3881317890172014e-21,5.10204081365373e-05,1.0050483549415102e-20,5.56895922356602e-20,-9.6663882096485e-21,3.8839318928366953e-20,8.634648901226662e-20,2.2657612735582555e-20,8.092004848459951e-20,1.8611610311352579e-19,0.00029761905898340046,-9.920635056914762e-05,-5.081914891153885e-19,-8.50340147735551e-05,-1.321411102386111e-18,2.371692252312041e-20,1.0050483549415102e-20,2.8344671591185033e-05,5.876155362257462e-20,4.214585710477404e-20,1.9345138892045545e-20,8.092004848459951e-20,-2.7597762343741548e-21,5.590417451878382e-20,1.663356555773628e-19,0.00044642857392318547,-0.00014880952949170023,-1.466590502273482e-18,-1.1576190013429547e-18,-0.00022321428696159273,1.0164395367051604e-19,5.56895922356602e-20,5.876155362257462e-20,7.440476474585012e-05,1.3275945101094922e-19,7.552537686233327e-20,1.5737081427018088e-19,7.709882302142545e-20,1.0438633528211636e-19,2.2875475629940256e-19,0.0003188775444868952,-2.472533582294439e-19,-0.00047831633128225803,-8.107885811492175e-19,-3.0902377874524075e-18,-2.950210094269411e-20,-9.6663882096485e-21,4.214585710477404e-20,1.3275945101094922e-19,9.566326480126008e-05,3.327300086664742e-20,1.60499133798674e-19,3.540251919252837e-20,1.429587430600929e-19,3.9448522586110626e-19,0.0003401360590942204,-4.356186946754721e-19,-0.0001360544265480712,-9.718172805150971e-05,-8.862464781681423e-19,1.3666497134842127e-20,3.8839318928366953e-20,1.9345138892045545e-20,7.552537686233327e-20,3.327300086664742e-20,3.887269122060388e-05,5.307121986128322e-20,-5.1167389364484265e-20,3.6422416731934915e-20,7.398404211311434e-20,0.0005102040595375001,-1.414254784917252e-18,-0.0002040816325461492,-1.4781086821105533e-18,-0.00025510202976875007,9.063045094233022e-20,8.634648901226662e-20,8.092004848459951e-20,1.5737081427018088e-19,1.60499133798674e-19,5.307121986128322e-20,0.0001020408162730746,1.0573552502232717e-19,1.5105075372466654e-19,3.8841622755619884e-19,0.00019841270113829523,-3.5236570605778894e-19,-3.075807776762785e-19,-0.00019841270113829523,-8.74138001566438e-19,2.156448224698379e-20,2.2657612735582555e-20,-2.7597762343741548e-21,7.709882302142545e-20,3.540251919252837e-20,-5.1167389364484265e-20,1.0573552502232717e-19,2.8344671591185033e-05,1.156279912253505e-20,6.293781405194439e-20,0.00039682540227659047,-1.2046465973108554e-18,-1.447554181246493e-18,-0.00011337868636474013,-0.00019841270113829523,9.230879394285178e-20,8.092004848459951e-20,5.590417451878382e-20,1.0438633528211636e-19,1.429587430600929e-19,3.6422416731934915e-20,1.5105075372466654e-19,1.156279912253505e-20,5.668934318237007e-05,1.9557818336642866e-19,0.00042517005931586027,-3.2514989226163048e-18,-3.6312869067511454e-18,-1.551652586589607e-18,-0.0008503401186317205,2.8322015354022696e-19,1.8611610311352579e-19,1.663356555773628e-19,2.2875475629940256e-19,3.9448522586110626e-19,7.398404211311434e-20,3.8841622755619884e-19,6.293781405194439e-20,1.9557818336642866e-19,0.00021258502965793014,7.0,6.0,8.0,6.0,0.02348305471241474,-0.004074546508491039,-0.004613601602613926,-0.003649376332759857,-0.004613601602613926,0.00020667989156208932,0.0003188775444868952,0.00024801588733680546,0.0003188775444868952,0.0002657313016243279,0.00028344671591185033,0.00036443150020204484,0.0001653439103392884,0.00028344671591185033,0.0002657313016243279,-0.004074546508491039,0.0024329177103936672,0.0003188775444868952,0.00024801588733680546,0.0003188775444868952,-0.00024801588733680546,-0.00010629251482896507,-8.26719551696442e-05,-0.00010629251482896507,-4.2129717533470784e-35,-5.570607849456801e-21,1.974830509381443e-36,3.3881317890172014e-20,2.964615315390051e-21,-3.082483181079049e-36,-0.004613601602613926,0.0003188775444868952,0.003306962549686432,0.00028344671591185033,0.00036443150020204484,1.3552527156068805e-20,-0.00012755101488437504,-1.2256309286804069e-20,-3.0470991165109395e-21,-0.00039859695243649185,-0.00011337868636474013,-0.00014577258843928576,1.7614984335257478e-19,1.319021300048263e-19,3.4770332838452794e-19,-0.003649376332759857,0.00024801588733680546,0.00028344671591185033,0.0018693985184654593,0.00028344671591185033,-5.0528949718848244e-21,-6.685701841244051e-21,-7.086167897796258e-05,-1.5413342645427866e-20,4.367343028278647e-19,-8.09847770142369e-05,3.082668529085573e-20,-0.0001653439103392884,-8.09847770142369e-05,8.429171420954808e-20,-0.004613601602613926,0.0003188775444868952,0.00036443150020204484,0.00028344671591185033,0.003306962549686432,-0.0,-3.0470991165109395e-21,-1.2448726522244248e-20,-0.00012755101488437504,6.112164208185619e-19,2.786206997546568e-20,-0.00014577258843928576,6.776263578034403e-21,-0.00011337868636474013,-0.00039859695243649185,0.00020667989156208932,-0.00024801588733680546,1.3552527156068805e-20,-5.0528949718848244e-21,-0.0,4.13359775848221e-05,-0.0,-1.6940658945086007e-21,-3.3881317890172014e-21,0.0,-9.532653420658206e-38,0.0,1.1728148811133992e-21,-0.0,0.0,0.0003188775444868952,-0.00010629251482896507,-0.00012755101488437504,-6.685701841244051e-21,-3.0470991165109395e-21,-0.0,4.251700738677755e-05,2.2285673477308143e-21,1.0156997391617118e-21,0.0,1.5016547519769203e-37,-0.0,-9.4039548065783e-37,-7.991639333726961e-38,0.0,0.00024801588733680546,-8.26719551696442e-05,-1.2256309286804069e-20,-7.086167897796258e-05,-1.2448726522244248e-20,-1.6940658945086007e-21,2.2285673477308143e-21,2.362055965932086e-05,5.137780747177028e-21,1.2037062152420224e-35,1.591602228277058e-21,-5.64237288394698e-37,-1.1858461261560205e-20,-8.470329472543003e-22,8.807094931201713e-37,0.0003188775444868952,-0.00010629251482896507,-3.0470991165109395e-21,-1.5413342645427866e-20,-0.00012755101488437504,-3.3881317890172014e-21,1.0156997391617118e-21,5.137780747177028e-21,4.251700738677755e-05,0.0,5.419500959455081e-37,-0.0,-1.88079096131566e-36,-0.0,0.0,0.0002657313016243279,-4.2129717533470784e-35,-0.00039859695243649185,4.367343028278647e-19,6.112164208185619e-19,0.0,0.0,1.2037062152420224e-35,0.0,7.97193861217238e-05,-3.7579196506847646e-20,-6.764255241985606e-20,-3.933613459025881e-20,-2.6973348417808416e-20,-6.95406669693753e-20,0.00028344671591185033,-5.570607849456801e-21,-0.00011337868636474013,-8.09847770142369e-05,2.786206997546568e-20,-9.532653420658206e-38,1.5016547519769203e-37,1.591602228277058e-21,5.419500959455081e-37,-3.7579196506847646e-20,3.2393909350503236e-05,-1.233067395478358e-20,5.865948082745528e-21,8.470329472543003e-22,3.2653651773393677e-35,0.00036443150020204484,1.974830509381443e-36,-0.00014577258843928576,3.082668529085573e-20,-0.00014577258843928576,0.0,-0.0,-5.64237288394698e-37,-0.0,-6.764255241985606e-20,-1.233067395478358e-20,5.8309036830905825e-05,3.159728815010309e-35,2.2757570631919486e-35,5.900582156719596e-35,0.0001653439103392884,3.3881317890172014e-20,1.7614984335257478e-19,-0.0001653439103392884,6.776263578034403e-21,1.1728148811133992e-21,-9.4039548065783e-37,-1.1858461261560205e-20,-1.88079096131566e-36,-3.933613459025881e-20,5.865948082745528e-21,3.159728815010309e-35,2.362055965932086e-05,5.593613885974079e-23,3.480517090752384e-35,0.00028344671591185033,2.964615315390051e-21,1.319021300048263e-19,-8.09847770142369e-05,-0.00011337868636474013,-0.0,-7.991639333726961e-38,-8.470329472543003e-22,-0.0,-2.6973348417808416e-20,8.470329472543003e-22,2.2757570631919486e-35,5.593613885974079e-23,3.2393909350503236e-05,-3.3716686330054087e-20,0.0002657313016243279,-3.082483181079049e-36,3.4770332838452794e-19,8.429171420954808e-20,-0.00039859695243649185,0.0,0.0,8.807094931201713e-37,0.0,-6.95406669693753e-20,3.2653651773393677e-35,5.900582156719596e-35,3.480517090752384e-35,-3.3716686330054087e-20,7.97193861217238e-05,7.0,6.0,8.0,7.0,0.02060682885348797,-0.0035266338381916285,-0.003993561491370201,-0.0031584061216562986,-0.0035266338381916285,0.00017715420108288527,0.000273323617875576,0.00021258502965793014,0.00023915816564112902,0.0002277696767123416,0.00024295432376675308,0.000273323617875576,0.00014172335795592517,0.00021258502965793014,0.00017715420108288527,-0.0035266338381916285,0.002096746349707246,0.000273323617875576,0.00021258502965793014,0.00023915816564112902,-0.00021258502965793014,-9.110787505051121e-05,-7.086167897796258e-05,-7.97193861217238e-05,-1.2789378536946488e-34,2.0806314670029255e-20,1.0125026739772908e-20,3.049318610115481e-20,1.1168971485873877e-20,1.7196752124027863e-20,-0.003993561491370201,0.000273323617875576,0.002850157907232642,0.00024295432376675308,0.000273323617875576,-1.3552527156068805e-20,-0.00010932944860542193,1.0967442338998544e-20,-1.5706433173632648e-21,-0.00034165452234447,-9.718172805150971e-05,-0.00010932944860542193,2.250015535169139e-19,1.1306135964452356e-19,2.457978305440803e-19,-0.0031584061216562986,0.00021258502965793014,0.00024295432376675308,0.0016110185533761978,0.00021258502965793014,-1.7313750520883667e-21,-9.535946512251575e-21,-6.073858094168827e-05,-2.9839694434089097e-21,3.657298428293488e-19,-6.941552419448271e-05,1.0164395367051604e-20,-0.00014172335795592517,-6.073858094168827e-05,3.134915324525954e-20,-0.0035266338381916285,0.00023915816564112902,0.000273323617875576,0.00021258502965793014,0.002096746349707246,-6.776263578034403e-21,-1.204908357969463e-20,-1.312637727541341e-20,-7.97193861217238e-05,4.2438788255308064e-19,3.2746224545254306e-21,-9.110787505051121e-05,6.776263578034403e-21,-7.086167897796258e-05,-0.00021258502965793014,0.00017715420108288527,-0.00021258502965793014,-1.3552527156068805e-20,-1.7313750520883667e-21,-6.776263578034403e-21,3.543083948898129e-05,3.3881317890172014e-21,1.6940658945086007e-21,1.6940658945086007e-21,0.0,-2.935667874197926e-38,-2.604172169270223e-37,-7.097754537709432e-23,2.2177424816843654e-37,1.3645912333324026e-21,0.000273323617875576,-9.110787505051121e-05,-0.00010932944860542193,-9.535946512251575e-21,-1.204908357969463e-20,3.3881317890172014e-21,3.644314710982144e-05,3.1786489047333223e-21,4.016361327863804e-21,0.0,-9.34797820181075e-37,-5.103288656358383e-37,-1.128474576789396e-36,-5.545181064538954e-37,-1.3859240005144063e-36,0.00021258502965793014,-7.086167897796258e-05,1.0967442338998544e-20,-6.073858094168827e-05,-1.312637727541341e-20,1.6940658945086007e-21,3.1786489047333223e-21,2.0246194253559224e-05,4.622777209228589e-21,2.1064858766735392e-35,-5.8677522896773026e-21,1.1248102590282253e-23,-8.470329472543003e-21,-4.235164736271502e-22,1.095744205658814e-22,0.00023915816564112902,-7.97193861217238e-05,-1.5706433173632648e-21,-2.9839694434089097e-21,-7.97193861217238e-05,1.6940658945086007e-21,4.016361327863804e-21,4.622777209228589e-21,2.6573128707241267e-05,1.8055593228630336e-35,-8.972715350706388e-23,-3.3881317890172014e-21,-1.2855963936013513e-22,-3.2288878080940228e-21,-8.81670166052678e-21,0.0002277696767123416,-1.2789378536946488e-34,-0.00034165452234447,3.657298428293488e-19,4.2438788255308064e-19,0.0,0.0,2.1064858766735392e-35,1.8055593228630336e-35,6.8330904468894e-05,-2.760920473961734e-20,-3.623708303828329e-20,-3.3716686330054087e-20,-2.023001212114988e-20,-4.3831689967248325e-20,0.00024295432376675308,2.0806314670029255e-20,-9.718172805150971e-05,-6.941552419448271e-05,3.2746224545254306e-21,-2.935667874197926e-38,-9.34797820181075e-37,-5.8677522896773026e-21,-8.972715350706388e-23,-2.760920473961734e-20,2.7766209313995205e-05,1.2854974388894004e-23,-1.6141957902529238e-20,-4.235164736271502e-22,-2.3927241776668666e-22,0.000273323617875576,1.0125026739772908e-20,-0.00010932944860542193,1.0164395367051604e-20,-9.110787505051121e-05,-2.604172169270223e-37,-5.103288656358383e-37,1.1248102590282253e-23,-3.3881317890172014e-21,-3.623708303828329e-20,1.2854974388894004e-23,3.644314710982144e-05,2.624557271065859e-23,-3.476331133521018e-21,-8.600641922969216e-21,0.00014172335795592517,3.049318610115481e-20,2.250015535169139e-19,-0.00014172335795592517,6.776263578034403e-21,-7.097754537709432e-23,-1.128474576789396e-36,-8.470329472543003e-21,-1.2855963936013513e-22,-3.3716686330054087e-20,-1.6141957902529238e-20,2.624557271065859e-23,2.0246194253559224e-05,-1.386417108691921e-21,1.4475052350147878e-22,0.00021258502965793014,1.1168971485873877e-20,1.1306135964452356e-19,-6.073858094168827e-05,-7.086167897796258e-05,2.2177424816843654e-37,-5.545181064538954e-37,-4.235164736271502e-22,-3.2288878080940228e-21,-2.023001212114988e-20,-4.235164736271502e-22,-3.476331133521018e-21,-1.386417108691921e-21,2.0246194253559224e-05,-1.0725220591188289e-20,0.00017715420108288527,1.7196752124027863e-20,2.457978305440803e-19,3.134915324525954e-20,-0.00021258502965793014,1.3645912333324026e-21,-1.3859240005144063e-36,1.095744205658814e-22,-8.81670166052678e-21,-4.3831689967248325e-20,-2.3927241776668666e-22,-8.600641922969216e-21,1.4475052350147878e-22,-1.0725220591188289e-20,3.543083948898129e-05,7.0,6.0,8.0,8.0,0.018363509327173233,-0.0031090560369193554,-0.0035209397319704294,-0.0027842733543366194,-0.0027842733543366194,0.0001550099259475246,0.00023915816564112902,0.00018601190822664648,0.00018601190822664648,0.00019929847621824592,0.00021258502965793014,0.00021258502965793014,0.00012400794366840273,0.0001653439103392884,0.00012400794366840273,-0.0031090560369193554,0.0018424036679789424,0.00023915816564112902,0.00018601190822664648,0.00018601190822664648,-0.00018601190822664648,-7.97193861217238e-05,-6.200397183420137e-05,-6.200397183420137e-05,-8.297465526625613e-20,-3.2640630981873434e-20,-3.262298230802279e-20,2.371692252312041e-20,4.182959057523679e-21,2.239063373053253e-20,-0.0035209397319704294,0.00023915816564112902,0.002504517324268818,0.00021258502965793014,0.00021258502965793014,6.776263578034403e-21,-9.566326480126008e-05,-9.021301230750077e-21,-9.038951520187854e-21,-0.00029894770705141127,-8.50340147735551e-05,-8.50340147735551e-05,1.270201617283266e-19,8.22645465597735e-20,1.2697897071876088e-19,-0.0027842733543366194,0.00018601190822664648,0.00021258502965793014,0.0014155464014038444,0.0001653439103392884,6.921207593338714e-22,-2.360167946168558e-20,-5.3146257414482534e-05,1.557297557895353e-20,1.7307898702725995e-19,-6.073858094168827e-05,-1.5246593050577406e-20,-0.00012400794366840273,-4.724111931864172e-05,9.02822321382524e-21,-0.0027842733543366194,0.00018601190822664648,0.00021258502965793014,0.0001653439103392884,0.0014155464014038444,-0.0,-2.360167946168558e-20,1.1692784416566649e-20,-5.3146257414482534e-05,1.7307898702725995e-19,-1.8943091955840694e-20,-6.073858094168827e-05,3.3881317890172014e-21,-4.724111931864172e-05,-0.00012400794366840273,0.0001550099259475246,-0.00018601190822664648,6.776263578034403e-21,6.921207593338714e-22,-0.0,3.100198591710068e-05,-0.0,1.6940658945086007e-21,1.6940658945086007e-21,9.117554511738788e-37,8.860737981662593e-37,4.267948857882616e-37,-8.211985856454281e-23,-5.955513989225387e-38,-1.5922464436466977e-22,0.00023915816564112902,-7.97193861217238e-05,-9.566326480126008e-05,-2.360167946168558e-20,-2.360167946168558e-20,-0.0,3.188775372109376e-05,1.0015656338457998e-36,1.0035252096183116e-36,3.3189862752737306e-20,9.440672107791659e-21,9.440672107791659e-21,-1.4338011988095714e-35,-9.133199370100875e-36,-1.4294011305999016e-35,0.00018601190822664648,-6.200397183420137e-05,-9.021301230750077e-21,-5.3146257414482534e-05,1.1692784416566649e-20,1.6940658945086007e-21,1.0015656338457998e-36,1.7715419744490646e-05,-4.21612302241466e-21,1.3541694921472752e-35,2.541098841762901e-21,3.641582624714479e-23,-6.776263578034403e-21,-0.0,1.1418524313713855e-22,0.00018601190822664648,-6.200397183420137e-05,-9.038951520187854e-21,1.557297557895353e-20,-5.3146257414482534e-05,1.6940658945086007e-21,1.0035252096183116e-36,-4.21612302241466e-21,1.7715419744490646e-05,1.6550960459577808e-35,4.1458796288612875e-23,2.541098841762901e-21,1.5250830786116704e-22,-1.195131087168054e-21,-6.215806303867462e-21,0.00019929847621824592,-8.297465526625613e-20,-0.00029894770705141127,1.7307898702725995e-19,1.7307898702725995e-19,9.117554511738788e-37,3.3189862752737306e-20,1.3541694921472752e-35,1.6550960459577808e-35,5.9789541410282254e-05,3.540251919252837e-20,3.540251919252837e-20,-2.950210094269411e-20,-1.5734453512986098e-20,-2.950210094269411e-20,0.00021258502965793014,-3.2640630981873434e-20,-8.50340147735551e-05,-6.073858094168827e-05,-1.8943091955840694e-20,8.860737981662593e-37,9.440672107791659e-21,2.541098841762901e-21,4.1458796288612875e-23,3.540251919252837e-20,2.4295432012877427e-05,7.23451113607241e-21,5.769413116424392e-21,-0.0,9.673718608102401e-23,0.00021258502965793014,-3.262298230802279e-20,-8.50340147735551e-05,-1.5246593050577406e-20,-6.073858094168827e-05,4.267948857882616e-37,9.440672107791659e-21,3.641582624714479e-23,2.541098841762901e-21,3.540251919252837e-20,7.23451113607241e-21,2.4295432012877427e-05,8.4970265450596e-23,-1.0263652395744957e-21,5.769413116424392e-21,0.00012400794366840273,2.371692252312041e-20,1.270201617283266e-19,-0.00012400794366840273,3.3881317890172014e-21,-8.211985856454281e-23,-1.4338011988095714e-35,-6.776263578034403e-21,1.5250830786116704e-22,-2.950210094269411e-20,5.769413116424392e-21,8.4970265450596e-23,1.7715419744490646e-05,-8.470329472543003e-22,-7.894009909511623e-23,0.0001653439103392884,4.182959057523679e-21,8.22645465597735e-20,-4.724111931864172e-05,-4.724111931864172e-05,-5.955513989225387e-38,-9.133199370100875e-36,-0.0,-1.195131087168054e-21,-1.5734453512986098e-20,-0.0,-1.0263652395744957e-21,-8.470329472543003e-22,1.3497462532541249e-05,-2.575695024648078e-21,0.00012400794366840273,2.239063373053253e-20,1.2697897071876088e-19,9.02822321382524e-21,-0.00012400794366840273,-1.5922464436466977e-22,-1.4294011305999016e-35,1.1418524313713855e-22,-6.215806303867462e-21,-2.950210094269411e-20,9.673718608102401e-23,5.769413116424392e-21,-7.894009909511623e-23,-2.575695024648078e-21,1.7715419744490646e-05,7.0,7.0,3.0,3.0,0.07818405330181122,-0.016298186033964157,-0.016298186033964157,-0.030612245202064514,-0.030612245202064514,0.0009448223863728344,0.0012755101779475808,0.0025510203558951616,0.0025510203558951616,0.0009448223863728344,0.0025510203558951616,0.0025510203558951616,0.003401360474526882,0.005102040711790323,0.003401360474526882,-0.016298186033964157,0.010345805436372757,0.0012755101779475808,0.0025510203558951616,0.0025510203558951616,-0.0011337868636474013,-0.00042517005931586027,-0.0008503401186317205,-0.0008503401186317205,2.168404344971009e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.016298186033964157,0.0012755101779475808,0.010345805436372757,0.0025510203558951616,0.0025510203558951616,2.710505431213761e-20,-0.00042517005931586027,-7.835115508178512e-20,-7.835115508178512e-20,-0.0011337868636474013,-0.0008503401186317205,-0.0008503401186317205,-0.0,-0.0,-0.0,-0.030612245202064514,0.0025510203558951616,0.0025510203558951616,0.06462585180997849,0.005102040711790323,3.7530076195628774e-20,-8.131516293641283e-20,-0.0025510203558951616,2.383598194893613e-36,5.421010862427522e-20,-0.0025510203558951616,2.785772081490124e-20,-0.020408162847161293,-0.005102040711790323,-1.1328806761994538e-17,-0.030612245202064514,0.0025510203558951616,0.0025510203558951616,0.005102040711790323,0.06462585180997849,5.421010862427522e-20,-8.131516293641283e-20,2.383598194893613e-36,-0.0025510203558951616,3.324427249623254e-20,2.785772081490124e-20,-0.0025510203558951616,-1.1328806761994538e-17,-0.005102040711790323,-0.020408162847161293,0.0009448223863728344,-0.0011337868636474013,2.710505431213761e-20,3.7530076195628774e-20,5.421010862427522e-20,0.0001889644772745669,-0.0,-0.0,-0.0,-1.944696167505591e-21,4.629639461859897e-37,4.629639461859897e-37,-0.0,-0.0,-0.0,0.0012755101779475808,-0.00042517005931586027,-0.00042517005931586027,-8.131516293641283e-20,-8.131516293641283e-20,-0.0,0.00014172335795592517,2.710505431213761e-20,2.710505431213761e-20,-6.776263578034403e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0025510203558951616,-0.0008503401186317205,-7.835115508178512e-20,-0.0025510203558951616,2.383598194893613e-36,-0.0,2.710505431213761e-20,0.0008503401186317205,7.101000374213237e-37,-4.560011851025252e-22,-1.504632769052528e-36,-1.504632769052528e-36,-0.0,-0.0,-0.0,0.0025510203558951616,-0.0008503401186317205,-7.835115508178512e-20,2.383598194893613e-36,-0.0025510203558951616,-0.0,2.710505431213761e-20,7.101000374213237e-37,0.0008503401186317205,-4.560011851025252e-22,-1.504632769052528e-36,-1.504632769052528e-36,-0.0,-0.0,-0.0,0.0009448223863728344,2.168404344971009e-19,-0.0011337868636474013,5.421010862427522e-20,3.324427249623254e-20,-1.944696167505591e-21,-6.776263578034403e-20,-4.560011851025252e-22,-4.560011851025252e-22,0.0001889644772745669,-2.710505431213761e-20,-2.710505431213761e-20,0.0,0.0,0.0,0.0025510203558951616,-0.0,-0.0008503401186317205,-0.0025510203558951616,2.785772081490124e-20,4.629639461859897e-37,-0.0,-1.504632769052528e-36,-1.504632769052528e-36,-2.710505431213761e-20,0.0008503401186317205,-9.285906938300414e-21,-0.0,-0.0,-0.0,0.0025510203558951616,-0.0,-0.0008503401186317205,2.785772081490124e-20,-0.0025510203558951616,4.629639461859897e-37,-0.0,-1.504632769052528e-36,-1.504632769052528e-36,-2.710505431213761e-20,-9.285906938300414e-21,0.0008503401186317205,-0.0,-0.0,-0.0,0.003401360474526882,-0.0,-0.0,-0.020408162847161293,-1.1328806761994538e-17,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.010204081423580647,-0.0,5.664403380997269e-18,0.005102040711790323,-0.0,-0.0,-0.005102040711790323,-0.005102040711790323,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.005102040711790323,-0.0,0.003401360474526882,-0.0,-0.0,-1.1328806761994538e-17,-0.020408162847161293,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,5.664403380997269e-18,-0.0,0.010204081423580647,7.0,7.0,3.0,4.0,0.06305980682373047,-0.012606292963027954,-0.012606292963027954,-0.02372448891401291,-0.019387755542993546,0.0007086168043315411,0.0009566326625645161,0.0019132653251290321,0.0015306122368201613,0.0007086168043315411,0.0019132653251290321,0.0015306122368201613,0.0025510203558951616,0.0030612244736403227,0.001700680237263441,-0.012606292963027954,0.00788690522313118,0.0009566326625645161,0.0019132653251290321,0.0015306122368201613,-0.0008503401186317205,-0.0003188775444868952,-0.0006377550889737904,-0.0005102040595375001,8.131516293641283e-20,2.168404344971009e-19,-4.0657581468206416e-20,1.69932097294015e-18,3.398641894181512e-19,-1.021921983194606e-33,-0.012606292963027954,0.0009566326625645161,0.00788690522313118,0.0019132653251290321,0.0015306122368201613,-2.710505431213761e-20,-0.0003188775444868952,1.208020641180065e-19,-8.659531528028023e-20,-0.0008503401186317205,-0.0006377550889737904,-0.0005102040595375001,1.69932097294015e-18,3.398641894181512e-19,-1.021921983194606e-33,-0.02372448891401291,0.0019132653251290321,0.0019132653251290321,0.049234695732593536,0.0030612244736403227,3.326176607371833e-20,-8.131516293641283e-20,-0.0019132653251290321,1.8496010528278586e-20,5.421010862427522e-20,-0.0019132653251290321,-6.93600394810447e-21,-0.015306122601032257,-0.0030612244736403227,9.204654925433891e-18,-0.019387755542993546,0.0015306122368201613,0.0015306122368201613,0.0030612244736403227,0.024829931557178497,-0.0,-1.2197274440461925e-19,3.514241935749446e-19,-0.0010204081190750003,-5.020179493982212e-20,3.398641894181512e-19,-0.0010204081190750003,1.7485665089640045e-17,-0.0020408162381500006,-0.005102040711790323,0.0007086168043315411,-0.0008503401186317205,-2.710505431213761e-20,3.326176607371833e-20,-0.0,0.00014172335795592517,-1.3552527156068805e-20,-1.3552527156068805e-20,-0.0,5.933258289504897e-21,-6.808177078483751e-22,-4.742566633832388e-22,2.6518943054825196e-35,4.748232001098194e-36,-0.0,0.0009566326625645161,-0.0003188775444868952,-0.0003188775444868952,-8.131516293641283e-20,-1.2197274440461925e-19,-1.3552527156068805e-20,0.00010629251482896507,2.710505431213761e-20,2.710505431213761e-20,-4.0657581468206416e-20,-0.0,1.3552527156068805e-20,-7.636042297421533e-35,-1.343213373962664e-35,0.0,0.0019132653251290321,-0.0006377550889737904,1.208020641180065e-19,-0.0019132653251290321,3.514241935749446e-19,-1.3552527156068805e-20,2.710505431213761e-20,0.0006377550889737904,-6.16533697739179e-21,1.050751820541234e-21,-2.1241512161751876e-19,2.3120013160348233e-21,-1.69932097294015e-18,-3.398641894181512e-19,1.021921983194606e-33,0.0015306122368201613,-0.0005102040595375001,-8.659531528028023e-20,1.8496010528278586e-20,-0.0010204081190750003,-0.0,2.710505431213761e-20,-6.16533697739179e-21,0.0003401360590942204,6.937672445716997e-22,3.009265538105056e-36,5.137780646202832e-22,1.6427757401763353e-35,3.285551552099152e-36,-0.0,0.0007086168043315411,8.131516293641283e-20,-0.0008503401186317205,5.421010862427522e-20,-5.020179493982212e-20,5.933258289504897e-21,-4.0657581468206416e-20,1.050751820541234e-21,6.937672445716997e-22,0.00014172335795592517,-0.0,1.3552527156068805e-20,-1.6416651046446746e-35,-2.277682182716781e-37,-0.0,0.0019132653251290321,2.168404344971009e-19,-0.0006377550889737904,-0.0019132653251290321,3.398641894181512e-19,-6.808177078483751e-22,-0.0,-2.1241512161751876e-19,3.009265538105056e-36,-0.0,0.0006377550889737904,0.0,-1.69932097294015e-18,-3.398641894181512e-19,1.021921983194606e-33,0.0015306122368201613,-4.0657581468206416e-20,-0.0005102040595375001,-6.93600394810447e-21,-0.0010204081190750003,-4.742566633832388e-22,1.3552527156068805e-20,2.3120013160348233e-21,5.137780646202832e-22,1.3552527156068805e-20,0.0,0.0003401360590942204,-6.160409025661257e-36,-1.2320817871956311e-36,0.0,0.0025510203558951616,1.69932097294015e-18,1.69932097294015e-18,-0.015306122601032257,1.7485665089640045e-17,2.6518943054825196e-35,-7.636042297421533e-35,-1.69932097294015e-18,1.6427757401763353e-35,-1.6416651046446746e-35,-1.69932097294015e-18,-6.160409025661257e-36,0.0076530613005161285,-5.590419106239607e-18,-3.965082408057119e-18,0.0030612244736403227,3.398641894181512e-19,3.398641894181512e-19,-0.0030612244736403227,-0.0020408162381500006,4.748232001098194e-36,-1.343213373962664e-35,-3.398641894181512e-19,3.285551552099152e-36,-2.277682182716781e-37,-3.398641894181512e-19,-1.2320817871956311e-36,-5.590419106239607e-18,0.0020408162381500006,-8.49660486470075e-19,0.001700680237263441,-1.021921983194606e-33,-1.021921983194606e-33,9.204654925433891e-18,-0.005102040711790323,-0.0,0.0,1.021921983194606e-33,-0.0,-0.0,1.021921983194606e-33,0.0,-3.965082408057119e-18,-8.49660486470075e-19,0.001700680237263441,7.0,7.0,3.0,5.0,0.05293569713830948,-0.010289115831255913,-0.010289115831255913,-0.019387755542993546,-0.013411078602075577,0.0005668934318237007,0.0007653061184100807,0.0015306122368201613,0.0010204081190750003,0.0005668934318237007,0.0015306122368201613,0.0010204081190750003,0.0020408162381500006,0.0020408162381500006,0.0009718172950670123,-0.010289115831255913,0.0063775512389838696,0.0007653061184100807,0.0015306122368201613,0.0010204081190750003,-0.0006802721181884408,-0.00025510202976875007,-0.0005102040595375001,-0.0003401360590942204,1.0376072953755455e-18,-5.337024629895599e-19,-8.383454182474768e-20,-4.867091846773225e-18,-2.082896823895024e-18,-1.5304757289324838e-18,-0.010289115831255913,0.0007653061184100807,0.0063775512389838696,0.0015306122368201613,0.0010204081190750003,1.802486111757151e-18,-0.00025510202976875007,-1.940887283512533e-18,-1.0253458937580954e-18,-0.0006802721181884408,-0.0005102040595375001,-0.0003401360590942204,-4.867091846773225e-18,-2.082896823895024e-18,-1.5304757289324838e-18,-0.019387755542993546,0.0015306122368201613,0.0015306122368201613,0.03979591652750969,0.0020408162381500006,-2.7686102163546657e-19,-2.7429108520959854e-18,-0.0015306122368201613,-2.4639723146533036e-18,-1.0028870095490916e-18,-0.0015306122368201613,-2.443731205064131e-18,-0.01224489789456129,-0.0020408162381500006,-2.2775415210154896e-18,-0.013411078602075577,0.0010204081190750003,0.0010204081190750003,0.0020408162381500006,0.012536442838609219,-3.4414200565475745e-19,-1.6917009851373116e-18,-2.3329293280368872e-18,-0.0005102040595375001,-8.207542463741032e-19,-2.3126880116525615e-18,-0.0005102040595375001,-5.8262433357948e-18,-0.0010204081190750003,-0.0019436345901340246,0.0005668934318237007,-0.0006802721181884408,1.802486111757151e-18,-2.7686102163546657e-19,-3.4414200565475745e-19,0.00011337868636474013,-1.2874900798265365e-19,-5.421010862427522e-20,-2.0328790734103208e-20,-2.179260832016826e-19,-4.24830236772689e-20,-2.832201470778784e-20,-3.7762688431166636e-20,1.8881343569348464e-19,3.5964465634135977e-20,0.0007653061184100807,-0.00025510202976875007,-0.00025510202976875007,-2.7429108520959854e-18,-1.6917009851373116e-18,-1.2874900798265365e-19,8.50340147735551e-05,1.0400078510613568e-19,6.933385889153997e-20,-5.324348991737019e-20,8.809142651444724e-20,5.759824041329242e-20,7.646944068037946e-19,2.5489813560126485e-19,2.4276013899145e-19,0.0015306122368201613,-0.0005102040595375001,-1.940887283512533e-18,-0.0015306122368201613,-2.3329293280368872e-18,-5.421010862427522e-20,1.0400078510613568e-19,0.0005102040595375001,1.1516730978529528e-19,1.8409310367855665e-19,2.694281834462182e-19,1.2744906780063243e-19,1.1002636418370231e-18,1.4851941302919235e-19,3.64140208487175e-19,0.0010204081190750003,-0.0003401360590942204,-1.0253458937580954e-18,-2.4639723146533036e-18,-0.0005102040595375001,-2.0328790734103208e-20,6.933385889153997e-20,1.1516730978529528e-19,0.0001700680295471102,1.2272873578570443e-19,1.2744906780063243e-19,-2.3238577868930345e-20,8.49660486470075e-19,1.840115940764775e-20,1.1113414513954864e-19,0.0005668934318237007,1.0376072953755455e-18,-0.0006802721181884408,-1.0028870095490916e-18,-8.207542463741032e-19,-2.179260832016826e-19,-5.324348991737019e-20,1.8409310367855665e-19,1.2272873578570443e-19,0.00011337868636474013,-4.0657581468206416e-20,-1.3552527156068805e-20,-3.7762688431166636e-20,1.8881343569348464e-19,3.5964465634135977e-20,0.0015306122368201613,-5.337024629895599e-19,-0.0005102040595375001,-0.0015306122368201613,-2.3126880116525615e-18,-4.24830236772689e-20,8.809142651444724e-20,2.694281834462182e-19,1.2744906780063243e-19,-4.0657581468206416e-20,0.0005102040595375001,1.0842021724855044e-19,1.1002636418370231e-18,1.4851941302919235e-19,3.64140208487175e-19,0.0010204081190750003,-8.383454182474768e-20,-0.0003401360590942204,-2.443731205064131e-18,-0.0005102040595375001,-2.832201470778784e-20,5.759824041329242e-20,1.2744906780063243e-19,-2.3238577868930345e-20,-1.3552527156068805e-20,1.0842021724855044e-19,0.0001700680295471102,8.49660486470075e-19,1.840115940764775e-20,1.1113414513954864e-19,0.0020408162381500006,-4.867091846773225e-18,-4.867091846773225e-18,-0.01224489789456129,-5.8262433357948e-18,-3.7762688431166636e-20,7.646944068037946e-19,1.1002636418370231e-18,8.49660486470075e-19,-3.7762688431166636e-20,1.1002636418370231e-18,8.49660486470075e-19,0.006122448947280645,-3.398641894181512e-19,3.2368019393839806e-19,0.0020408162381500006,-2.082896823895024e-18,-2.082896823895024e-18,-0.0020408162381500006,-0.0010204081190750003,1.8881343569348464e-19,2.5489813560126485e-19,1.4851941302919235e-19,1.840115940764775e-20,1.8881343569348464e-19,1.4851941302919235e-19,1.840115940764775e-20,-3.398641894181512e-19,0.0010204081190750003,-1.964100168699273e-19,0.0009718172950670123,-1.5304757289324838e-18,-1.5304757289324838e-18,-2.2775415210154896e-18,-0.0019436345901340246,3.5964465634135977e-20,2.4276013899145e-19,3.64140208487175e-19,1.1113414513954864e-19,3.5964465634135977e-20,3.64140208487175e-19,1.1113414513954864e-19,3.2368019393839806e-19,-1.964100168699273e-19,0.00048590864753350616,7.0,7.0,3.0,6.0,0.045651793479919434,-0.00869574025273323,-0.00869574025273323,-0.01639941707253456,-0.009839650243520737,0.0004724111931864172,0.0006377550889737904,0.0012755101779475808,0.0007288630004040897,0.0004724111931864172,0.0012755101779475808,0.0007288630004040897,0.001700680237263441,0.0014577260008081794,0.0006073858239687979,-0.00869574025273323,0.005355118308216333,0.0006377550889737904,0.0012755101779475808,0.0007288630004040897,-0.0005668934318237007,-0.00021258502965793014,-0.00042517005931586027,-0.00024295432376675308,1.2197274440461925e-19,1.0270495820895735e-20,-3.2268018427660973e-20,-1.541358013554849e-34,1.4515244220045488e-20,-9.325643273210784e-20,-0.00869574025273323,0.0006377550889737904,0.005355118308216333,0.0012755101779475808,0.0007288630004040897,5.421010862427522e-20,-0.00021258502965793014,-5.0760284024963196e-20,-5.421010862427522e-20,-0.0005668934318237007,-0.00042517005931586027,-0.00024295432376675308,-1.978359977087535e-34,-0.0,-1.0555653735493747e-19,-0.01639941707253456,0.0012755101779475808,0.0012755101779475808,0.03340622037649155,0.0014577260008081794,9.513682105959401e-21,-4.1544516186493597e-20,-0.0012755101779475808,2.5117846594532728e-20,2.710505431213761e-20,-0.0012755101779475808,8.562534261448524e-21,-0.010204081423580647,-0.0014577260008081794,-1.091758777573906e-18,-0.009839650243520737,0.0007288630004040897,0.0007288630004040897,0.0014577260008081794,0.007276481948792934,2.710505431213761e-20,-1.6681987289078457e-20,9.33692798778231e-21,-0.0002915451768785715,7.699378562391542e-21,-0.0,-0.0002915451768785715,-2.7816266270762235e-18,-0.000583090353757143,-0.0009110787068493664,0.0004724111931864172,-0.0005668934318237007,5.421010862427522e-20,9.513682105959401e-21,2.710505431213761e-20,9.448223863728344e-05,6.776263578034403e-21,-1.3552527156068805e-20,-6.776263578034403e-21,-6.256261009596917e-21,2.0109693465738926e-37,-1.3530659057074094e-36,-0.0,3.937449588266925e-37,1.4916892712073442e-21,0.0006377550889737904,-0.00021258502965793014,-0.00021258502965793014,-4.1544516186493597e-20,-1.6681987289078457e-20,6.776263578034403e-21,7.086167897796258e-05,1.692009575204582e-20,7.321142957159567e-21,-2.710505431213761e-20,-3.3881317890172014e-21,-0.0,-4.598822106032466e-37,3.794509054098962e-22,-1.0431623980313816e-21,0.0012755101779475808,-0.00042517005931586027,-5.0760284024963196e-20,-0.0012755101779475808,9.33692798778231e-21,-1.3552527156068805e-20,1.692009575204582e-20,0.00042517005931586027,-3.1123094638930313e-21,-7.52316384526264e-36,-0.0,-1.128474576789396e-36,-0.0,2.9113065246033934e-37,-1.3105895672905922e-36,0.0007288630004040897,-0.00024295432376675308,-5.421010862427522e-20,2.5117846594532728e-20,-0.0002915451768785715,-6.776263578034403e-21,7.321142957159567e-21,-3.1123094638930313e-21,9.718172805150971e-05,3.246332230079086e-24,-4.244006352406091e-23,1.2907206724829536e-20,6.220617955365027e-35,-6.261438966361043e-21,3.467597673371978e-20,0.0004724111931864172,1.2197274440461925e-19,-0.0005668934318237007,2.710505431213761e-20,7.699378562391542e-21,-6.256261009596917e-21,-2.710505431213761e-20,-7.52316384526264e-36,3.246332230079086e-24,9.448223863728344e-05,-1.3552527156068805e-20,-6.776263578034403e-21,-1.2263525616086575e-36,1.0118690810930565e-21,1.241941916579026e-21,0.0012755101779475808,1.0270495820895735e-20,-0.00042517005931586027,-0.0012755101779475808,-0.0,2.0109693465738926e-37,-3.3881317890172014e-21,-0.0,-4.244006352406091e-23,-1.3552527156068805e-20,0.00042517005931586027,-0.0,4.746452598677031e-37,8.470329472543003e-22,-1.3262520127370352e-22,0.0007288630004040897,-3.2268018427660973e-20,-0.00024295432376675308,8.562534261448524e-21,-0.0002915451768785715,-1.3530659057074094e-36,-0.0,-1.128474576789396e-36,1.2907206724829536e-20,-6.776263578034403e-21,-0.0,9.718172805150971e-05,8.268491548531281e-35,-3.425014027696836e-21,4.029841059894794e-20,0.001700680237263441,-1.541358013554849e-34,-1.978359977087535e-34,-0.010204081423580647,-2.7816266270762235e-18,-0.0,-4.598822106032466e-37,-0.0,6.220617955365027e-35,-1.2263525616086575e-36,4.746452598677031e-37,8.268491548531281e-35,0.005102040711790323,-4.81482486096809e-35,5.563253357550024e-19,0.0014577260008081794,1.4515244220045488e-20,-0.0,-0.0014577260008081794,-0.000583090353757143,3.937449588266925e-37,3.794509054098962e-22,2.9113065246033934e-37,-6.261438966361043e-21,1.0118690810930565e-21,8.470329472543003e-22,-3.425014027696836e-21,-4.81482486096809e-35,0.000583090353757143,-8.197608670819124e-21,0.0006073858239687979,-9.325643273210784e-20,-1.0555653735493747e-19,-1.091758777573906e-18,-0.0009110787068493664,1.4916892712073442e-21,-1.0431623980313816e-21,-1.3105895672905922e-36,3.467597673371978e-20,1.241941916579026e-21,-1.3262520127370352e-22,4.029841059894794e-20,5.563253357550024e-19,-8.197608670819124e-21,0.00018221575010102242,7.0,7.0,3.0,7.0,0.04014820232987404,-0.007531584240496159,-0.007531584240496159,-0.014212828129529953,-0.007531584240496159,0.00040492386324331164,0.000546647235751152,0.001093294471502304,0.000546647235751152,0.00040492386324331164,0.001093294471502304,0.000546647235751152,0.0014577260008081794,0.001093294471502304,0.00040492386324331164,-0.007531584240496159,0.004616132006049156,0.000546647235751152,0.001093294471502304,0.000546647235751152,-0.00048590864753350616,-0.00018221575010102242,-0.00036443150020204484,-0.00018221575010102242,-0.0,9.997766133442619e-22,-1.5825116476407808e-22,1.003274326522245e-34,1.793163941563479e-34,7.303899669461787e-23,-0.007531584240496159,0.000546647235751152,0.004616132006049156,0.001093294471502304,0.000546647235751152,-0.0,-0.00018221575010102242,-0.0,-3.3881317890172014e-21,-0.00048590864753350616,-0.00036443150020204484,-0.00018221575010102242,-2.407412430484045e-35,1.793163941563479e-34,-1.1988773711986418e-20,-0.014212828129529953,0.001093294471502304,0.001093294471502304,0.02879008837044239,0.001093294471502304,-4.614353638886669e-22,-1.5350835541700022e-35,-0.001093294471502304,9.997766133442619e-22,-0.0,-0.001093294471502304,2.746167173105729e-34,-0.008746355772018433,-0.001093294471502304,1.4052801854637814e-18,-0.007531584240496159,0.000546647235751152,0.000546647235751152,0.001093294471502304,0.004616132006049156,-0.0,-7.838384487185231e-21,-0.0,-0.00018221575010102242,-1.0977313576386628e-20,6.776263578034403e-21,-0.00018221575010102242,5.657325610085959e-18,-0.00036443150020204484,-0.00048590864753350616,0.00040492386324331164,-0.00048590864753350616,-0.0,-4.614353638886669e-22,-0.0,8.09847770142369e-05,-0.0,-0.0,-0.0,-1.395152133940997e-22,-5.039952095744567e-40,4.569592253209299e-40,0.0,-0.0,-4.430828998928218e-22,0.000546647235751152,-0.00018221575010102242,-0.00018221575010102242,-1.5350835541700022e-35,-7.838384487185231e-21,-0.0,6.073858094168827e-05,-0.0,5.327667670242944e-22,-0.0,-0.0,-0.0,7.675417770850011e-36,-0.0,9.600129750113295e-22,0.001093294471502304,-0.00036443150020204484,-0.0,-0.001093294471502304,-0.0,-0.0,-0.0,0.00036443150020204484,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.000546647235751152,-0.00018221575010102242,-3.3881317890172014e-21,9.997766133442619e-22,-0.00018221575010102242,-0.0,5.327667670242944e-22,-0.0,6.073858094168827e-05,3.022829413175919e-22,-3.3325887111475396e-22,5.275038720287815e-23,-4.1117896995676077e-35,-5.97721313854493e-35,-2.434633328335383e-23,0.00040492386324331164,-0.0,-0.00048590864753350616,-0.0,-1.0977313576386628e-20,-1.395152133940997e-22,-0.0,-0.0,3.022829413175919e-22,8.09847770142369e-05,-0.0,3.3881317890172014e-21,2.0467781678886447e-35,-0.0,-1.445090784219396e-23,0.001093294471502304,9.997766133442619e-22,-0.00036443150020204484,-0.001093294471502304,6.776263578034403e-21,-5.039952095744567e-40,-0.0,-0.0,-3.3325887111475396e-22,-0.0,0.00036443150020204484,-0.0,1.0957770506077129e-35,-0.0,-8.886902556565467e-22,0.000546647235751152,-1.5825116476407808e-22,-0.00018221575010102242,2.746167173105729e-34,-0.00018221575010102242,4.569592253209299e-40,-0.0,-0.0,5.275038720287815e-23,3.3881317890172014e-21,-0.0,6.073858094168827e-05,-4.7650158707253246e-35,-5.97721313854493e-35,3.3637854967546146e-21,0.0014577260008081794,1.003274326522245e-34,-2.407412430484045e-35,-0.008746355772018433,5.657325610085959e-18,0.0,7.675417770850011e-36,-0.0,-4.1117896995676077e-35,2.0467781678886447e-35,1.0957770506077129e-35,-4.7650158707253246e-35,0.004373177886009216,-1.4494832698325432e-18,-7.013070394759732e-19,0.001093294471502304,1.793163941563479e-34,1.793163941563479e-34,-0.001093294471502304,-0.00036443150020204484,-0.0,-0.0,-0.0,-5.97721313854493e-35,-0.0,-0.0,-5.97721313854493e-35,-1.4494832698325432e-18,0.00036443150020204484,7.305482724888248e-35,0.00040492386324331164,7.303899669461787e-23,-1.1988773711986418e-20,1.4052801854637814e-18,-0.00048590864753350616,-4.430828998928218e-22,9.600129750113295e-22,-0.0,-2.434633328335383e-23,-1.445090784219396e-23,-8.886902556565467e-22,3.3637854967546146e-21,-7.013070394759732e-19,7.305482724888248e-35,8.09847770142369e-05,7.0,7.0,3.0,8.0,0.0358382947742939,-0.006643282249569893,-0.006643282249569893,-0.01254251692444086,-0.0059523810632526875,0.00035430840216577053,0.00047831633128225803,0.0009566326625645161,0.00042517005931586027,0.00035430840216577053,0.0009566326625645161,0.00042517005931586027,0.0012755101779475808,0.0008503401186317205,0.00028344671591185033,-0.006643282249569893,0.004056830890476704,0.00047831633128225803,0.0009566326625645161,0.00042517005931586027,-0.00042517005931586027,-0.0001594387722434476,-0.0003188775444868952,-0.00014172335795592517,5.421010862427522e-20,1.1575464679429914e-19,2.30555980857328e-20,8.49660486470075e-19,8.960943864780129e-20,4.0015925188586815e-20,-0.006643282249569893,0.00047831633128225803,0.004056830890476704,0.0009566326625645161,0.00042517005931586027,-1.3552527156068805e-20,-0.0001594387722434476,5.757772245669199e-20,-1.0164395367051604e-20,-0.00042517005931586027,-0.0003188775444868952,-0.00014172335795592517,8.49660486470075e-19,8.809142651444724e-20,3.113245777416479e-20,-0.01254251692444086,0.0009566326625645161,0.0009566326625645161,0.0252976194024086,0.0008503401186317205,-6.483708213067723e-21,-3.8255549135754725e-20,-0.0009566326625645161,-5.506314347773193e-21,2.710505431213761e-20,-0.0009566326625645161,-1.4763207966477988e-21,-0.0076530613005161285,-0.0008503401186317205,9.23686430451094e-19,-0.0059523810632526875,0.00042517005931586027,0.00042517005931586027,0.0008503401186317205,0.003117913845926523,-0.0,-2.079802024568385e-20,9.440671784674232e-20,-0.00012147716188337654,-4.995943102034408e-21,9.486769009248164e-20,-0.00012147716188337654,4.716207485598652e-18,-0.00024295432376675308,-0.00028344671591185033,0.00035430840216577053,-0.00042517005931586027,-1.3552527156068805e-20,-6.483708213067723e-21,-0.0,7.086167897796258e-05,3.3881317890172014e-21,-0.0,3.3881317890172014e-21,5.682926193308305e-22,-3.6078863860254026e-37,-5.655967048505211e-37,-7.152807073483364e-36,-5.929078101332329e-37,-7.900604786679271e-23,0.00047831633128225803,-0.0001594387722434476,-0.0001594387722434476,-3.8255549135754725e-20,-2.079802024568385e-20,3.3881317890172014e-21,5.3146257414482534e-05,1.6209945040297708e-20,7.412345274248507e-21,-2.0328790734103208e-20,-3.3881317890172014e-21,-1.6940658945086007e-21,-3.9678143134799914e-35,-5.996846133020679e-23,4.890954273112591e-22,0.0009566326625645161,-0.0003188775444868952,5.757772245669199e-20,-0.0009566326625645161,9.440671784674232e-20,-0.0,1.6209945040297708e-20,0.0003188775444868952,1.649488376846874e-36,-3.009265538105056e-36,-1.0620756080875938e-19,-0.0,-8.49660486470075e-19,-9.440671784674232e-20,1.023150282955719e-34,0.00042517005931586027,-0.00014172335795592517,-1.0164395367051604e-20,-5.506314347773193e-21,-0.00012147716188337654,3.3881317890172014e-21,7.412345274248507e-21,1.649488376846874e-36,4.049238850711845e-05,8.8067472204013e-22,1.7637551542968222e-22,-5.135257200073887e-21,1.4804273429470557e-34,1.4220536287171288e-21,-1.1705621064138993e-20,0.00035430840216577053,5.421010862427522e-20,-0.00042517005931586027,2.710505431213761e-20,-4.995943102034408e-21,5.682926193308305e-22,-2.0328790734103208e-20,-3.009265538105056e-36,8.8067472204013e-22,7.086167897796258e-05,-6.776263578034403e-21,-3.3881317890172014e-21,1.1423130381167033e-35,-1.599159010878096e-22,2.947613078341357e-21,0.0009566326625645161,1.1575464679429914e-19,-0.0003188775444868952,-0.0009566326625645161,9.486769009248164e-20,-3.6078863860254026e-37,-3.3881317890172014e-21,-1.0620756080875938e-19,1.7637551542968222e-22,-6.776263578034403e-21,0.0003188775444868952,-1.6940658945086007e-21,-8.49660486470075e-19,-9.343058656279293e-20,4.1154285250689253e-22,0.00042517005931586027,2.30555980857328e-20,-0.00014172335795592517,-1.4763207966477988e-21,-0.00012147716188337654,-5.655967048505211e-37,-1.6940658945086007e-21,-0.0,-5.135257200073887e-21,-3.3881317890172014e-21,-1.6940658945086007e-21,4.049238850711845e-05,1.4105784125129895e-34,1.8738623652072026e-21,-1.4905933578699073e-20,0.0012755101779475808,8.49660486470075e-19,8.49660486470075e-19,-0.0076530613005161285,4.716207485598652e-18,-7.152807073483364e-36,-3.9678143134799914e-35,-8.49660486470075e-19,1.4804273429470557e-34,1.1423130381167033e-35,-8.49660486470075e-19,1.4105784125129895e-34,0.0038265306502580643,-1.411972180016912e-18,-4.720336150831057e-19,0.0008503401186317205,8.960943864780129e-20,8.809142651444724e-20,-0.0008503401186317205,-0.00024295432376675308,-5.929078101332329e-37,-5.996846133020679e-23,-9.440671784674232e-20,1.4220536287171288e-21,-1.599159010878096e-22,-9.343058656279293e-20,1.8738623652072026e-21,-1.411972180016912e-18,0.00024295432376675308,5.4703344145078375e-21,0.00028344671591185033,4.0015925188586815e-20,3.113245777416479e-20,9.23686430451094e-19,-0.00028344671591185033,-7.900604786679271e-23,4.890954273112591e-22,1.023150282955719e-34,-1.1705621064138993e-20,2.947613078341357e-21,4.1154285250689253e-22,-1.4905933578699073e-20,-4.720336150831057e-19,5.4703344145078375e-21,4.049238850711845e-05,7.0,7.0,4.0,3.0,0.06305980682373047,-0.012606292963027954,-0.012606292963027954,-0.019387755542993546,-0.02372448891401291,0.0007086168043315411,0.0009566326625645161,0.0015306122368201613,0.0019132653251290321,0.0007086168043315411,0.0015306122368201613,0.0019132653251290321,0.001700680237263441,0.0030612244736403227,0.0025510203558951616,-0.012606292963027954,0.00788690522313118,0.0009566326625645161,0.0015306122368201613,0.0019132653251290321,-0.0008503401186317205,-0.0003188775444868952,-0.0005102040595375001,-0.0006377550889737904,1.0842021724855044e-19,-2.710505431213761e-20,2.168404344971009e-19,-0.0,3.398641894181512e-19,1.69932097294015e-18,-0.012606292963027954,0.0009566326625645161,0.00788690522313118,0.0015306122368201613,0.0019132653251290321,-0.0,-0.0003188775444868952,-8.659531528028023e-20,1.208020641180065e-19,-0.0008503401186317205,-0.0005102040595375001,-0.0006377550889737904,-0.0,3.398641894181512e-19,1.69932097294015e-18,-0.019387755542993546,0.0015306122368201613,0.0015306122368201613,0.024829931557178497,0.0030612244736403227,4.0530567238914045e-20,-1.0164395367051604e-19,-0.0010204081190750003,2.1766603829661124e-19,-2.710505431213761e-20,-0.0010204081190750003,1.9356377885501183e-19,-0.005102040711790323,-0.0020408162381500006,2.7189135153452095e-18,-0.02372448891401291,0.0019132653251290321,0.0019132653251290321,0.0030612244736403227,0.049234695732593536,5.421010862427522e-20,-8.131516293641283e-20,-1.1526215121240331e-19,-0.0019132653251290321,1.8682216638982515e-20,-1.53236410472276e-19,-0.0019132653251290321,-0.0,-0.0030612244736403227,-0.015306122601032257,0.0007086168043315411,-0.0008503401186317205,-0.0,4.0530567238914045e-20,5.421010862427522e-20,0.00014172335795592517,-1.3552527156068805e-20,-0.0,-1.3552527156068805e-20,1.763249980394893e-21,5.682454138942621e-22,-6.808177078483751e-22,-0.0,2.265688771841093e-36,-2.5245707037498256e-35,0.0009566326625645161,-0.0003188775444868952,-0.0003188775444868952,-1.0164395367051604e-19,-8.131516293641283e-20,-1.3552527156068805e-20,0.00010629251482896507,2.710505431213761e-20,2.710505431213761e-20,-4.0657581468206416e-20,6.776263578034403e-21,-0.0,-0.0,-1.2651549241439245e-35,-5.199449138033286e-35,0.0015306122368201613,-0.0005102040595375001,-8.659531528028023e-20,-0.0010204081190750003,-1.1526215121240331e-19,-0.0,2.710505431213761e-20,0.0003401360590942204,3.842072030197537e-20,6.937672445716997e-22,5.137780646202832e-22,-1.2037062152420224e-35,-0.0,-2.0474672210957552e-35,-1.0237335531506925e-34,0.0019132653251290321,-0.0006377550889737904,1.208020641180065e-19,2.1766603829661124e-19,-0.0019132653251290321,-1.3552527156068805e-20,2.710505431213761e-20,3.842072030197537e-20,0.0006377550889737904,1.050751820541234e-21,2.3120013160348233e-21,-2.1241512161751876e-19,-0.0,-3.398641894181512e-19,-1.69932097294015e-18,0.0007086168043315411,1.0842021724855044e-19,-0.0008503401186317205,-2.710505431213761e-20,1.8682216638982515e-20,1.763249980394893e-21,-4.0657581468206416e-20,6.937672445716997e-22,1.050751820541234e-21,0.00014172335795592517,1.3552527156068805e-20,0.0,0.0,-6.018531076210112e-36,0.0,0.0015306122368201613,-2.710505431213761e-20,-0.0005102040595375001,-0.0010204081190750003,-1.53236410472276e-19,5.682454138942621e-22,6.776263578034403e-21,5.137780646202832e-22,2.3120013160348233e-21,1.3552527156068805e-20,0.0003401360590942204,4.876680459810454e-20,-0.0,-2.7220256300672715e-35,-1.3610127289378581e-34,0.0019132653251290321,2.168404344971009e-19,-0.0006377550889737904,1.9356377885501183e-19,-0.0019132653251290321,-6.808177078483751e-22,-0.0,-1.2037062152420224e-35,-2.1241512161751876e-19,0.0,4.876680459810454e-20,0.0006377550889737904,-0.0,-3.398641894181512e-19,-1.69932097294015e-18,0.001700680237263441,-0.0,-0.0,-0.005102040711790323,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.001700680237263441,-0.0,-0.0,0.0030612244736403227,3.398641894181512e-19,3.398641894181512e-19,-0.0020408162381500006,-0.0030612244736403227,2.265688771841093e-36,-1.2651549241439245e-35,-2.0474672210957552e-35,-3.398641894181512e-19,-6.018531076210112e-36,-2.7220256300672715e-35,-3.398641894181512e-19,-0.0,0.0020408162381500006,-2.7189135153452095e-18,0.0025510203558951616,1.69932097294015e-18,1.69932097294015e-18,2.7189135153452095e-18,-0.015306122601032257,-2.5245707037498256e-35,-5.199449138033286e-35,-1.0237335531506925e-34,-1.69932097294015e-18,0.0,-1.3610127289378581e-34,-1.69932097294015e-18,-0.0,-2.7189135153452095e-18,0.0076530613005161285,7.0,7.0,4.0,4.0,0.05072597786784172,-0.009741709567606449,-0.009741709567606449,-0.014999999664723873,-0.014999999664723873,0.0005314626032486558,0.000717474496923387,0.0011479591485112906,0.0011479591485112906,0.0005314626032486558,0.0011479591485112906,0.0011479591485112906,0.0012755101779475808,0.001836734707467258,0.0012755101779475808,-0.009741709567606449,0.00601084204390645,0.000717474496923387,0.0011479591485112906,0.0011479591485112906,-0.0006377550889737904,-0.00023915816564112902,-0.00038265305920504034,-0.00038265305920504034,-5.574790459143607e-19,2.371692252312041e-19,2.371692252312041e-19,-2.027786329173985e-18,6.129506566715676e-19,-2.027786329173985e-18,-0.009741709567606449,0.000717474496923387,0.00601084204390645,0.0011479591485112906,0.0011479591485112906,3.9302328752599536e-19,-0.00023915816564112902,-6.6443861729750735e-19,-6.6443861729750735e-19,-0.0006377550889737904,-0.00038265305920504034,-0.00038265305920504034,-2.027786329173985e-18,6.129506566715676e-19,-2.027786329173985e-18,-0.014999999664723873,0.0011479591485112906,0.0011479591485112906,0.018928570672869682,0.001836734707467258,5.431947224101239e-19,-9.333819178084046e-19,-0.0007653061184100807,-1.1622208138857403e-18,8.131516293641283e-20,-0.0007653061184100807,-1.16230249797123e-18,-0.0038265306502580643,-0.0012244897661730647,-3.1939141238879664e-18,-0.014999999664723873,0.0011479591485112906,0.0011479591485112906,0.001836734707467258,0.018928570672869682,6.011569222929396e-19,-9.333819178084046e-19,-1.34366670695958e-18,-0.0007653061184100807,1.0354107948070934e-19,-1.3437483910450696e-18,-0.0007653061184100807,-2.0300528040523803e-18,-0.0012244897661730647,-0.0038265306502580643,0.0005314626032486558,-0.0006377550889737904,3.9302328752599536e-19,5.431947224101239e-19,6.011569222929396e-19,0.00010629251482896507,-3.3881317890172014e-20,-4.0657581468206416e-20,-4.0657581468206416e-20,-1.385396178792336e-20,-5.62572772427674e-20,-5.62572772427674e-20,-2.360167946168558e-20,-9.063045094233022e-20,-2.360167946168558e-20,0.000717474496923387,-0.00023915816564112902,-0.00023915816564112902,-9.333819178084046e-19,-9.333819178084046e-19,-3.3881317890172014e-20,7.97193861217238e-05,2.371692252312041e-20,2.371692252312041e-20,1.186005746164849e-19,6.437450399132683e-20,6.437450399132683e-20,2.6551890202189845e-19,9.62964972193618e-35,2.6551890202189845e-19,0.0011479591485112906,-0.00038265305920504034,-6.6443861729750735e-19,-0.0007653061184100807,-1.34366670695958e-18,-4.0657581468206416e-20,2.371692252312041e-20,0.00025510202976875007,3.8389891668286433e-20,1.1428835283627526e-19,2.3062212299458956e-20,-5.780003416304803e-23,5.848029411973069e-19,1.0539880435188126e-19,4.248302432350375e-19,0.0011479591485112906,-0.00038265305920504034,-6.6443861729750735e-19,-1.1622208138857403e-18,-0.0007653061184100807,-4.0657581468206416e-20,2.371692252312041e-20,3.8389891668286433e-20,0.00025510202976875007,1.1428835283627526e-19,-5.780003416304803e-23,2.3062212299458956e-20,4.248302432350375e-19,-1.5565104438437205e-20,5.848029411973069e-19,0.0005314626032486558,-5.574790459143607e-19,-0.0006377550889737904,8.131516293641283e-20,1.0354107948070934e-19,-1.385396178792336e-20,1.186005746164849e-19,1.1428835283627526e-19,1.1428835283627526e-19,0.00010629251482896507,-4.0657581468206416e-20,-4.0657581468206416e-20,-2.360167946168558e-20,-9.063045094233022e-20,-2.360167946168558e-20,0.0011479591485112906,2.371692252312041e-19,-0.00038265305920504034,-0.0007653061184100807,-1.3437483910450696e-18,-5.62572772427674e-20,6.437450399132683e-20,2.3062212299458956e-20,-5.780003416304803e-23,-4.0657581468206416e-20,0.00025510202976875007,3.841712400501533e-20,5.848029411973069e-19,1.0539880435188126e-19,4.248302432350375e-19,0.0011479591485112906,2.371692252312041e-19,-0.00038265305920504034,-1.16230249797123e-18,-0.0007653061184100807,-5.62572772427674e-20,6.437450399132683e-20,-5.780003416304803e-23,2.3062212299458956e-20,-4.0657581468206416e-20,3.841712400501533e-20,0.00025510202976875007,4.248302432350375e-19,-1.5565104438437205e-20,5.848029411973069e-19,0.0012755101779475808,-2.027786329173985e-18,-2.027786329173985e-18,-0.0038265306502580643,-2.0300528040523803e-18,-2.360167946168558e-20,2.6551890202189845e-19,5.848029411973069e-19,4.248302432350375e-19,-2.360167946168558e-20,5.848029411973069e-19,4.248302432350375e-19,0.0012755101779475808,-4.781218711866492e-19,1.4161007677011348e-19,0.001836734707467258,6.129506566715676e-19,6.129506566715676e-19,-0.0012244897661730647,-0.0012244897661730647,-9.063045094233022e-20,9.62964972193618e-35,1.0539880435188126e-19,-1.5565104438437205e-20,-9.063045094233022e-20,1.0539880435188126e-19,-1.5565104438437205e-20,-4.781218711866492e-19,0.0008163265301845968,2.977857701515201e-19,0.0012755101779475808,-2.027786329173985e-18,-2.027786329173985e-18,-3.1939141238879664e-18,-0.0038265306502580643,-2.360167946168558e-20,2.6551890202189845e-19,4.248302432350375e-19,5.848029411973069e-19,-2.360167946168558e-20,4.248302432350375e-19,5.848029411973069e-19,1.4161007677011348e-19,2.977857701515201e-19,0.0012755101779475808,7.0,7.0,4.0,5.0,0.04250789433717728,-0.007946428842842579,-0.007946428842842579,-0.01224489789456129,-0.010364431887865067,0.00042517005931586027,0.0005739795742556453,0.000918367353733629,0.0007653061184100807,0.00042517005931586027,0.000918367353733629,0.0007653061184100807,0.0010204081190750003,0.0012244897661730647,0.0007288630004040897,-0.007946428842842579,0.004859693814069033,0.0005739795742556453,0.000918367353733629,0.0007653061184100807,-0.0005102040595375001,-0.00019132652960252017,-0.0003061224415432662,-0.00025510202976875007,1.6993209147790132e-20,-6.780111518846423e-19,-1.8224321246627954e-18,7.801982013260877e-19,-2.853290660215674e-18,-4.4337960303541665e-18,-0.007946428842842579,0.0005739795742556453,0.004859693814069033,0.000918367353733629,0.0007653061184100807,-5.421010862427522e-19,-0.00019132652960252017,2.5089608070136845e-19,-2.0658775827917456e-18,-0.0005102040595375001,-0.0003061224415432662,-0.00025510202976875007,7.801982013260877e-19,-2.853290660215674e-18,-4.4337960303541665e-18,-0.01224489789456129,0.000918367353733629,0.000918367353733629,0.015306122601032257,0.0012244897661730647,-8.459419994239195e-19,2.3051784007627106e-19,-0.0006122448830865324,-3.358053847583548e-18,-4.336808689942018e-19,-0.0006122448830865324,-3.0444252164067706e-18,-0.0030612244736403227,-0.0008163265301845968,-7.218068187824488e-18,-0.010364431887865067,0.0007653061184100807,0.0007653061184100807,0.0012244897661730647,0.00955539382994175,-3.3507047614313208e-18,-1.2793229120484942e-18,-1.9503295502048257e-18,-0.00038265305920504034,-3.3966219708244456e-18,-2.2484566099072064e-18,-0.00038265305920504034,-9.824433234279048e-18,-0.0006122448830865324,-0.0014577260008081794,0.00042517005931586027,-0.0005102040595375001,-5.421010862427522e-19,-8.459419994239195e-19,-3.3507047614313208e-18,8.50340147735551e-05,6.776263578034403e-21,2.0328790734103208e-20,8.809142651444724e-20,1.4144300567342338e-20,4.531522547116511e-20,1.6049141775452253e-19,1.8881344215583318e-20,2.567862787469937e-19,4.855202779829e-19,0.0005739795742556453,-0.00019132652960252017,-0.00019132652960252017,2.3051784007627106e-19,-1.2793229120484942e-18,6.776263578034403e-21,6.377550744218752e-05,3.192251219438096e-20,8.413239146875213e-20,-1.1791975327356548e-19,1.6940658945086007e-21,7.284483346386983e-20,-2.1241512161751876e-19,1.0195925811791506e-19,1.21380069495725e-19,0.000918367353733629,-0.0003061224415432662,2.5089608070136845e-19,-0.0006122448830865324,-1.9503295502048257e-18,2.0328790734103208e-20,3.192251219438096e-20,0.0002040816325461492,1.3432371417277235e-19,-9.063045094233022e-20,-7.250578634795112e-20,1.0195925811791506e-19,-9.260810149268585e-19,1.285045890363413e-19,1.9420811377809942e-19,0.0007653061184100807,-0.00025510202976875007,-2.0658775827917456e-18,-3.358053847583548e-18,-0.00038265305920504034,8.809142651444724e-20,8.413239146875213e-20,1.3432371417277235e-19,0.00012755101488437504,1.699320947090756e-19,2.0391851623583012e-19,2.0152203182959622e-19,5.097962712025297e-19,3.3899629600982406e-19,3.9215099972066405e-19,0.00042517005931586027,1.6993209147790132e-20,-0.0005102040595375001,-4.336808689942018e-19,-3.3966219708244456e-18,1.4144300567342338e-20,-1.1791975327356548e-19,-9.063045094233022e-20,1.699320947090756e-19,8.50340147735551e-05,1.3552527156068805e-20,1.0164395367051604e-19,1.8881344215583318e-20,2.567862787469937e-19,4.855202779829e-19,0.000918367353733629,-6.780111518846423e-19,-0.0003061224415432662,-0.0006122448830865324,-2.2484566099072064e-18,4.531522547116511e-20,1.6940658945086007e-21,-7.250578634795112e-20,2.0391851623583012e-19,1.3552527156068805e-20,0.0002040816325461492,1.3174010600234247e-19,-9.260810149268585e-19,1.285045890363413e-19,1.9420811377809942e-19,0.0007653061184100807,-1.8224321246627954e-18,-0.00025510202976875007,-3.0444252164067706e-18,-0.00038265305920504034,1.6049141775452253e-19,7.284483346386983e-20,1.0195925811791506e-19,2.0152203182959622e-19,1.0164395367051604e-19,1.3174010600234247e-19,0.00012755101488437504,5.097962712025297e-19,3.3899629600982406e-19,3.9215099972066405e-19,0.0010204081190750003,7.801982013260877e-19,7.801982013260877e-19,-0.0030612244736403227,-9.824433234279048e-18,1.8881344215583318e-20,-2.1241512161751876e-19,-9.260810149268585e-19,5.097962712025297e-19,1.8881344215583318e-20,-9.260810149268585e-19,5.097962712025297e-19,0.0010204081190750003,1.7312265957866333e-19,1.4565608339487e-18,0.0012244897661730647,-2.853290660215674e-18,-2.853290660215674e-18,-0.0008163265301845968,-0.0006122448830865324,2.567862787469937e-19,1.0195925811791506e-19,1.285045890363413e-19,3.3899629600982406e-19,2.567862787469937e-19,1.285045890363413e-19,3.3899629600982406e-19,1.7312265957866333e-19,0.0004081632650922984,7.768324551123977e-19,0.0007288630004040897,-4.4337960303541665e-18,-4.4337960303541665e-18,-7.218068187824488e-18,-0.0014577260008081794,4.855202779829e-19,1.21380069495725e-19,1.9420811377809942e-19,3.9215099972066405e-19,4.855202779829e-19,1.9420811377809942e-19,3.9215099972066405e-19,1.4565608339487e-18,7.768324551123977e-19,0.00036443150020204484,7.0,7.0,4.0,6.0,0.036613721400499344,-0.006713131908327341,-0.006713131908327341,-0.01034985389560461,-0.007598396390676498,0.00035430840216577053,0.00047831633128225803,0.0007653061184100807,0.000546647235751152,0.00035430840216577053,0.0007653061184100807,0.000546647235751152,0.0008503401186317205,0.0008746355888433754,0.0004555393534246832,-0.006713131908327341,0.004080114420503378,0.00047831633128225803,0.0007653061184100807,0.000546647235751152,-0.00042517005931586027,-0.0001594387722434476,-0.00025510202976875007,-0.00018221575010102242,5.421010862427522e-20,4.1730971097616146e-21,3.487757615863544e-20,-0.0,5.0236236026342443e-20,1.1591064788794782e-19,-0.006713131908327341,0.00047831633128225803,0.004080114420503378,0.0007653061184100807,0.000546647235751152,-0.0,-0.0001594387722434476,-4.352786911319701e-20,1.0164395367051604e-20,-0.00042517005931586027,-0.00025510202976875007,-0.00018221575010102242,-0.0,4.0657581468206416e-20,1.1635360310596996e-19,-0.01034985389560461,0.0007653061184100807,0.0007653061184100807,0.012852284125983715,0.0008746355888433754,-2.5121373421246015e-20,-3.958596898464397e-20,-0.0005102040595375001,7.109021213240866e-21,-0.0,-0.0005102040595375001,5.404888191404197e-21,-0.0025510203558951616,-0.000583090353757143,1.7695768861830938e-19,-0.007598396390676498,0.000546647235751152,0.000546647235751152,0.0008746355888433754,0.005544824991375208,-1.3552527156068805e-20,-3.124433072083832e-20,-4.340464828249502e-20,-0.00021865889721084386,-1.3727096192647306e-20,-5.421010862427522e-20,-0.00021865889721084386,-0.0,-0.0003498542355373502,-0.00068330904468894,0.00035430840216577053,-0.00042517005931586027,-0.0,-2.5121373421246015e-20,-1.3552527156068805e-20,7.086167897796258e-05,3.3881317890172014e-21,6.776263578034403e-21,3.3881317890172014e-21,1.1918179218532237e-21,-9.60849617770255e-38,-4.765770787202336e-37,-0.0,-1.1681036560929087e-36,1.34003246611816e-22,0.00047831633128225803,-0.0001594387722434476,-0.0001594387722434476,-3.958596898464397e-20,-3.124433072083832e-20,3.3881317890172014e-21,5.3146257414482534e-05,1.4509290781457093e-20,8.897052078837363e-21,-2.0328790734103208e-20,-1.6940658945086007e-21,-0.0,-0.0,4.561184666310262e-22,7.129599148513649e-22,0.0007653061184100807,-0.00025510202976875007,-4.352786911319701e-20,-0.0005102040595375001,-4.340464828249502e-20,6.776263578034403e-21,1.4509290781457093e-20,0.0001700680295471102,1.4468216094165007e-20,-6.018531076210112e-36,-0.0,-3.009265538105056e-36,-0.0,-3.972962123518535e-36,-9.275286101812817e-36,0.000546647235751152,-0.00018221575010102242,1.0164395367051604e-20,7.109021213240866e-21,-0.00021865889721084386,3.3881317890172014e-21,8.897052078837363e-21,1.4468216094165007e-20,7.288629421964288e-05,-3.8822109492268337e-22,3.6364018911599665e-22,-1.3951029494101896e-20,-0.0,-2.0641836590689048e-20,-4.7568219890515205e-20,0.00035430840216577053,5.421010862427522e-20,-0.00042517005931586027,-0.0,-1.3727096192647306e-20,1.1918179218532237e-21,-2.0328790734103208e-20,-6.018531076210112e-36,-3.8822109492268337e-22,7.086167897796258e-05,-0.0,3.3881317890172014e-21,0.0,1.2163158773580046e-21,-6.08152839482111e-22,0.0007653061184100807,4.1730971097616146e-21,-0.00025510202976875007,-0.0005102040595375001,-5.421010862427522e-20,-9.60849617770255e-38,-1.6940658945086007e-21,-0.0,3.6364018911599665e-22,-0.0,0.0001700680295471102,1.5246593050577406e-20,-0.0,8.084515148065939e-22,1.1363756162310385e-21,0.000546647235751152,3.487757615863544e-20,-0.00018221575010102242,5.404888191404197e-21,-0.00021865889721084386,-4.765770787202336e-37,-0.0,-3.009265538105056e-36,-1.3951029494101896e-20,3.3881317890172014e-21,1.5246593050577406e-20,7.288629421964288e-05,-0.0,-2.0457866452578426e-20,-4.649762199567284e-20,0.0008503401186317205,-0.0,-0.0,-0.0025510203558951616,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0008503401186317205,-0.0,-0.0,0.0008746355888433754,5.0236236026342443e-20,4.0657581468206416e-20,-0.000583090353757143,-0.0003498542355373502,-1.1681036560929087e-36,4.561184666310262e-22,-3.972962123518535e-36,-2.0641836590689048e-20,1.2163158773580046e-21,8.084515148065939e-22,-2.0457866452578426e-20,-0.0,0.0002332361473236233,-7.214672533861775e-20,0.0004555393534246832,1.1591064788794782e-19,1.1635360310596996e-19,1.7695768861830938e-19,-0.00068330904468894,1.34003246611816e-22,7.129599148513649e-22,-9.275286101812817e-36,-4.7568219890515205e-20,-6.08152839482111e-22,1.1363756162310385e-21,-4.649762199567284e-20,-0.0,-7.214672533861775e-20,0.000136661808937788,7.0,7.0,4.0,7.0,0.032170187681913376,-0.005812682211399078,-0.005812682211399078,-0.008965014480054379,-0.005812682211399078,0.00030369291198439896,0.00040998542681336403,0.0006559766479767859,0.00040998542681336403,0.00030369291198439896,0.0006559766479767859,0.00040998542681336403,0.0007288630004040897,0.0006559766479767859,0.00030369291198439896,-0.005812682211399078,0.0035167639143764973,0.00040998542681336403,0.0006559766479767859,0.00040998542681336403,-0.00036443150020204484,-0.000136661808937788,-0.00021865889721084386,-0.000136661808937788,-0.0,-2.9634204877303417e-22,4.641823769846833e-21,-0.0,1.0778489528218605e-21,-2.9496168506738455e-20,-0.005812682211399078,0.00040998542681336403,0.0035167639143764973,0.0006559766479767859,0.00040998542681336403,-1.3552527156068805e-20,-0.000136661808937788,-5.602157035007456e-21,-1.0164395367051604e-20,-0.00036443150020204484,-0.00021865889721084386,-0.000136661808937788,-0.0,-3.3881317890172014e-21,-8.861267631615209e-21,-0.008965014480054379,0.0006559766479767859,0.0006559766479767859,0.011078717187047005,0.0006559766479767859,-8.74200095042342e-21,-5.336375583920429e-21,-0.0004373177944216877,-5.086431329610168e-21,-0.0,-0.0004373177944216877,-1.0586211435220332e-20,-0.002186588943004608,-0.0004373177944216877,1.3752680428551238e-21,-0.005812682211399078,0.00040998542681336403,0.00040998542681336403,0.0006559766479767859,0.0035167639143764973,-2.710505431213761e-20,-6.79294289960471e-21,-5.602157035007456e-21,-0.000136661808937788,4.698957393249812e-21,-6.776263578034403e-21,-0.000136661808937788,-0.0,-0.00021865889721084386,-0.00036443150020204484,0.00030369291198439896,-0.00036443150020204484,-1.3552527156068805e-20,-8.74200095042342e-21,-2.710505431213761e-20,6.073858094168827e-05,-0.0,6.776263578034403e-21,-0.0,1.1960657043250109e-21,7.867790613632084e-39,-1.1226804206367795e-37,-0.0,-7.532422056060618e-39,8.724175571730007e-22,0.00040998542681336403,-0.000136661808937788,-0.000136661808937788,-5.336375583920429e-21,-6.79294289960471e-21,-0.0,4.5553937525255606e-05,1.8673856783358188e-21,1.4658620913881531e-21,-3.3881317890172014e-21,-0.0,-1.6940658945086007e-21,-0.0,-8.859379388908923e-23,1.1708377053841022e-21,0.0006559766479767859,-0.00021865889721084386,-5.602157035007456e-21,-0.0004373177944216877,-5.602157035007456e-21,6.776263578034403e-21,1.8673856783358188e-21,0.00014577258843928576,1.8673856783358188e-21,-0.0,-0.0,-0.0,-0.0,-1.472803361842998e-38,1.914778838996534e-37,0.00040998542681336403,-0.000136661808937788,-1.0164395367051604e-20,-5.086431329610168e-21,-0.000136661808937788,-0.0,1.4658620913881531e-21,1.8673856783358188e-21,4.5553937525255606e-05,7.966560626549458e-22,9.878068292434472e-23,1.4679126248707484e-22,-0.0,-2.706892009030097e-22,6.770980608106574e-21,0.00030369291198439896,-0.0,-0.00036443150020204484,-0.0,4.698957393249812e-21,1.1960657043250109e-21,-3.3881317890172014e-21,-0.0,7.966560626549458e-22,6.073858094168827e-05,6.776263578034403e-21,-3.3881317890172014e-21,0.0,-2.3625010862305495e-22,7.933663738406549e-22,0.0006559766479767859,-2.9634204877303417e-22,-0.00021865889721084386,-0.0004373177944216877,-6.776263578034403e-21,7.867790613632084e-39,-0.0,-0.0,9.878068292434472e-23,6.776263578034403e-21,0.00014577258843928576,1.6940658945086007e-21,-0.0,-2.0964980725142382e-22,2.634151712939519e-22,0.00040998542681336403,4.641823769846833e-21,-0.000136661808937788,-1.0586211435220332e-20,-0.000136661808937788,-1.1226804206367795e-37,-1.6940658945086007e-21,-0.0,1.4679126248707484e-22,-3.3881317890172014e-21,1.6940658945086007e-21,4.5553937525255606e-05,-0.0,1.8346712505648434e-21,-6.774981685374306e-23,0.0007288630004040897,-0.0,-0.0,-0.002186588943004608,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0007288630004040897,-0.0,-0.0,0.0006559766479767859,1.0778489528218605e-21,-3.3881317890172014e-21,-0.0004373177944216877,-0.00021865889721084386,-7.532422056060618e-39,-8.859379388908923e-23,-1.472803361842998e-38,-2.706892009030097e-22,-2.3625010862305495e-22,-2.0964980725142382e-22,1.8346712505648434e-21,-0.0,0.00014577258843928576,-7.218378690746925e-22,0.00030369291198439896,-2.9496168506738455e-20,-8.861267631615209e-21,1.3752680428551238e-21,-0.00036443150020204484,8.724175571730007e-22,1.1708377053841022e-21,1.914778838996534e-37,6.770980608106574e-21,7.933663738406549e-22,2.634151712939519e-22,-6.774981685374306e-23,-0.0,-7.218378690746925e-22,6.073858094168827e-05,7.0,7.0,4.0,8.0,0.028696322813630104,-0.0051259566098451614,-0.0051259566098451614,-0.007908163592219353,-0.004591836594045162,0.0002657313016243279,0.0003587372484616935,0.0005739795742556453,0.0003188775444868952,0.0002657313016243279,0.0005739795742556453,0.0003188775444868952,0.0006377550889737904,0.0005102040595375001,0.00021258502965793014,-0.0051259566098451614,0.003090454963967204,0.0003587372484616935,0.0005739795742556453,0.0003188775444868952,-0.0003188775444868952,-0.00011957908282056451,-0.00019132652960252017,-0.00010629251482896507,-2.66367072342495e-19,1.351470303009011e-19,1.5502202199613949e-19,-1.0256940333984037e-18,2.3689286935842896e-19,-8.381737136468867e-20,-0.0051259566098451614,0.0003587372484616935,0.003090454963967204,0.0005739795742556453,0.0003188775444868952,2.439454888092385e-19,-0.00011957908282056451,-3.1452276172015906e-19,-1.0503208545953324e-19,-0.0003188775444868952,-0.00019132652960252017,-0.00010629251482896507,-1.0256940333984037e-18,2.337810934421869e-19,-8.976547205319264e-20,-0.007908163592219353,0.0005739795742556453,0.0005739795742556453,0.009736394509673119,0.0005102040595375001,3.4141052602513664e-19,-4.579141590147084e-19,-0.00038265305920504034,-2.6388493596877065e-19,9.486769009248164e-20,-0.00038265305920504034,-2.585326638152463e-19,-0.0019132653251290321,-0.0003401360590942204,-1.486791881343858e-19,-0.004591836594045162,0.0003188775444868952,0.0003188775444868952,0.0005102040595375001,0.002374878618866205,3.988868348462599e-19,-9.65386401662785e-20,-1.1432785071052467e-19,-9.110787505051121e-05,2.460804161208437e-19,-1.1519648082658485e-19,-9.110787505051121e-05,1.4243579689189747e-19,-0.00014577258843928576,-0.00021258502965793014,0.0002657313016243279,-0.0003188775444868952,2.439454888092385e-19,3.4141052602513664e-19,3.988868348462599e-19,5.3146257414482534e-05,-1.3552527156068805e-20,-1.6940658945086007e-20,-2.371692252312041e-20,-1.0253349594643732e-20,-2.832201470778784e-20,-2.3039734635665108e-20,-1.180083973084279e-20,-3.686357541706417e-20,-2.3278030506740003e-20,0.0003587372484616935,-0.00011957908282056451,-0.00011957908282056451,-4.579141590147084e-19,-9.65386401662785e-20,-1.3552527156068805e-20,3.98596930608619e-05,1.4019286434921726e-20,-7.815730421471201e-22,6.268841909725965e-20,3.3881317890172014e-20,7.623296525288703e-21,1.3275945101094922e-19,-5.811842069631464e-21,1.787063775138149e-20,0.0005739795742556453,-0.00019132652960252017,-3.1452276172015906e-19,-0.00038265305920504034,-1.1432785071052467e-19,-1.6940658945086007e-20,1.4019286434921726e-20,0.00012755101488437504,-7.164583678156135e-22,5.664402941557569e-20,1.1711175452705316e-20,-6.069003555565607e-21,2.9240147059865344e-19,7.7744218779414835e-22,2.832201470778784e-20,0.0003188775444868952,-0.00010629251482896507,-1.0503208545953324e-19,-2.6388493596877065e-19,-9.110787505051121e-05,-2.371692252312041e-20,-7.815730421471201e-22,-7.164583678156135e-22,3.0369290470844135e-05,2.4443156404786424e-20,-5.914605124353756e-21,1.386436293789136e-21,9.440671784674232e-20,1.634342646488705e-20,4.309442000987069e-20,0.0002657313016243279,-2.66367072342495e-19,-0.0003188775444868952,9.486769009248164e-20,2.460804161208437e-19,-1.0253349594643732e-20,6.268841909725965e-20,5.664402941557569e-20,2.4443156404786424e-20,5.3146257414482534e-05,-2.0328790734103208e-20,-2.0328790734103208e-20,-1.180083973084279e-20,-3.61778136086893e-20,-2.236515430584391e-20,0.0005739795742556453,1.351470303009011e-19,-0.00019132652960252017,-0.00038265305920504034,-1.1519648082658485e-19,-2.832201470778784e-20,3.3881317890172014e-20,1.1711175452705316e-20,-5.914605124353756e-21,-2.0328790734103208e-20,0.00012755101488437504,-1.6940658945086007e-21,2.9240147059865344e-19,1.1844767948910114e-21,2.868227771394883e-20,0.0003188775444868952,1.5502202199613949e-19,-0.00010629251482896507,-2.585326638152463e-19,-9.110787505051121e-05,-2.3039734635665108e-20,7.623296525288703e-21,-6.069003555565607e-21,1.386436293789136e-21,-2.0328790734103208e-20,-1.6940658945086007e-21,3.0369290470844135e-05,9.440671784674232e-20,1.5784497940045556e-20,4.2944138094676e-20,0.0006377550889737904,-1.0256940333984037e-18,-1.0256940333984037e-18,-0.0019132653251290321,1.4243579689189747e-19,-1.180083973084279e-20,1.3275945101094922e-19,2.9240147059865344e-19,9.440671784674232e-20,-1.180083973084279e-20,2.9240147059865344e-19,9.440671784674232e-20,0.0006377550889737904,-1.893639114664416e-19,-4.720335892337116e-20,0.0005102040595375001,2.3689286935842896e-19,2.337810934421869e-19,-0.0003401360590942204,-0.00014577258843928576,-3.686357541706417e-20,-5.811842069631464e-21,7.7744218779414835e-22,1.634342646488705e-20,-3.61778136086893e-20,1.1844767948910114e-21,1.5784497940045556e-20,-1.893639114664416e-19,9.718172805150971e-05,4.486830883349066e-20,0.00021258502965793014,-8.381737136468867e-20,-8.976547205319264e-20,-1.486791881343858e-19,-0.00021258502965793014,-2.3278030506740003e-20,1.787063775138149e-20,2.832201470778784e-20,4.309442000987069e-20,-2.236515430584391e-20,2.868227771394883e-20,4.2944138094676e-20,-4.720335892337116e-20,4.486830883349066e-20,3.0369290470844135e-05,7.0,7.0,5.0,3.0,0.05293569713830948,-0.010289115831255913,-0.010289115831255913,-0.013411078602075577,-0.019387755542993546,0.0005668934318237007,0.0007653061184100807,0.0010204081190750003,0.0015306122368201613,0.0005668934318237007,0.0010204081190750003,0.0015306122368201613,0.0009718172950670123,0.0020408162381500006,0.0020408162381500006,-0.010289115831255913,0.0063775512389838696,0.0007653061184100807,0.0010204081190750003,0.0015306122368201613,-0.0006802721181884408,-0.00025510202976875007,-0.0003401360590942204,-0.0005102040595375001,9.969497139073391e-19,-9.399893719179929e-20,-5.540312537236631e-19,-1.5304757289324838e-18,-2.0854399906883184e-18,-4.867091846773225e-18,-0.010289115831255913,0.0007653061184100807,0.0063775512389838696,0.0010204081190750003,0.0015306122368201613,1.81603863891322e-18,-0.00025510202976875007,-1.0253458937580954e-18,-1.940887283512533e-18,-0.0006802721181884408,-0.0003401360590942204,-0.0005102040595375001,-1.5304757289324838e-18,-2.0854399906883184e-18,-4.867091846773225e-18,-0.013411078602075577,0.0010204081190750003,0.0010204081190750003,0.012536442838609219,0.0020408162381500006,-3.6142514322283455e-19,-1.7018653805043632e-18,-0.0005102040595375001,-2.3252998276570044e-18,-8.131516293641283e-19,-0.0005102040595375001,-2.3152229066397303e-18,-0.0019436345901340246,-0.0010204081190750003,-1.399546913920115e-17,-0.019387755542993546,0.0015306122368201613,0.0015306122368201613,0.0020408162381500006,0.03979591652750969,-2.817081707780566e-19,-2.7632396428300886e-18,-2.474145188621634e-18,-0.0015306122368201613,-9.938304158174016e-19,-2.4640682676043597e-18,-0.0015306122368201613,-6.4853838612689054e-18,-0.0020408162381500006,-0.01224489789456129,0.0005668934318237007,-0.0006802721181884408,1.81603863891322e-18,-3.6142514322283455e-19,-2.817081707780566e-19,0.00011337868636474013,-1.3552527156068805e-19,-2.0328790734103208e-20,-5.421010862427522e-20,-2.1479859085380202e-19,-2.832201470778784e-20,-4.24830236772689e-20,3.5964465634135977e-20,1.8881343569348464e-19,-3.7762688431166636e-20,0.0007653061184100807,-0.00025510202976875007,-0.00025510202976875007,-1.7018653805043632e-18,-2.7632396428300886e-18,-1.3552527156068805e-19,8.50340147735551e-05,6.933385889153997e-20,1.0400078510613568e-19,-4.6467226339335786e-20,6.098637220230962e-20,9.486769009248164e-20,2.4276013899145e-19,2.5489813560126485e-19,7.646944068037946e-19,0.0010204081190750003,-0.0003401360590942204,-1.0253458937580954e-18,-0.0005102040595375001,-2.474145188621634e-18,-2.0328790734103208e-20,6.933385889153997e-20,0.0001700680295471102,1.1516730978529528e-19,1.2272873578570443e-19,-2.3238577868930345e-20,1.2744906780063243e-19,1.1113414513954864e-19,2.3487562464483074e-20,8.49660486470075e-19,0.0015306122368201613,-0.0005102040595375001,-1.940887283512533e-18,-2.3252998276570044e-18,-0.0015306122368201613,-5.421010862427522e-20,1.0400078510613568e-19,1.1516730978529528e-19,0.0005102040595375001,1.8409310367855665e-19,1.2744906780063243e-19,2.694281834462182e-19,3.64140208487175e-19,1.4088979632703586e-19,1.1002636418370231e-18,0.0005668934318237007,9.969497139073391e-19,-0.0006802721181884408,-8.131516293641283e-19,-9.938304158174016e-19,-2.1479859085380202e-19,-4.6467226339335786e-20,1.2272873578570443e-19,1.8409310367855665e-19,0.00011337868636474013,-1.3552527156068805e-20,-4.0657581468206416e-20,3.5964465634135977e-20,1.8881343569348464e-19,-3.7762688431166636e-20,0.0010204081190750003,-9.399893719179929e-20,-0.0003401360590942204,-0.0005102040595375001,-2.4640682676043597e-18,-2.832201470778784e-20,6.098637220230962e-20,-2.3238577868930345e-20,1.2744906780063243e-19,-1.3552527156068805e-20,0.0001700680295471102,1.1180834903756764e-19,1.1113414513954864e-19,2.3487562464483074e-20,8.49660486470075e-19,0.0015306122368201613,-5.540312537236631e-19,-0.0005102040595375001,-2.3152229066397303e-18,-0.0015306122368201613,-4.24830236772689e-20,9.486769009248164e-20,1.2744906780063243e-19,2.694281834462182e-19,-4.0657581468206416e-20,1.1180834903756764e-19,0.0005102040595375001,3.64140208487175e-19,1.4088979632703586e-19,1.1002636418370231e-18,0.0009718172950670123,-1.5304757289324838e-18,-1.5304757289324838e-18,-0.0019436345901340246,-6.4853838612689054e-18,3.5964465634135977e-20,2.4276013899145e-19,1.1113414513954864e-19,3.64140208487175e-19,3.5964465634135977e-20,1.1113414513954864e-19,3.64140208487175e-19,0.00048590864753350616,-3.4569923131902535e-20,2.2657612283218157e-18,0.0020408162381500006,-2.0854399906883184e-18,-2.0854399906883184e-18,-0.0010204081190750003,-0.0020408162381500006,1.8881343569348464e-19,2.5489813560126485e-19,2.3487562464483074e-20,1.4088979632703586e-19,1.8881343569348464e-19,2.3487562464483074e-20,1.4088979632703586e-19,-3.4569923131902535e-20,0.0010204081190750003,6.10368366820239e-20,0.0020408162381500006,-4.867091846773225e-18,-4.867091846773225e-18,-1.399546913920115e-17,-0.01224489789456129,-3.7762688431166636e-20,7.646944068037946e-19,8.49660486470075e-19,1.1002636418370231e-18,-3.7762688431166636e-20,8.49660486470075e-19,1.1002636418370231e-18,2.2657612283218157e-18,6.10368366820239e-20,0.006122448947280645,7.0,7.0,5.0,4.0,0.04250789433717728,-0.007946428842842579,-0.007946428842842579,-0.010364431887865067,-0.01224489789456129,0.00042517005931586027,0.0005739795742556453,0.0007653061184100807,0.000918367353733629,0.00042517005931586027,0.0007653061184100807,0.000918367353733629,0.0007288630004040897,0.0012244897661730647,0.0010204081190750003,-0.007946428842842579,0.004859693814069033,0.0005739795742556453,0.0007653061184100807,0.000918367353733629,-0.0005102040595375001,-0.00019132652960252017,-0.00025510202976875007,-0.0003061224415432662,3.054573791944607e-20,-1.6694931502442176e-18,-4.690104250405893e-19,-3.851171779492748e-18,-2.23385914684233e-18,1.799790743731147e-18,-0.007946428842842579,0.0005739795742556453,0.004859693814069033,0.0007653061184100807,0.000918367353733629,-5.421010862427522e-19,-0.00019132652960252017,-1.9129387117707444e-18,4.548145581631074e-19,-0.0005102040595375001,-0.00025510202976875007,-0.0003061224415432662,-3.851171779492748e-18,-2.23385914684233e-18,1.799790743731147e-18,-0.010364431887865067,0.0007653061184100807,0.0007653061184100807,0.00955539382994175,0.0012244897661730647,-3.3606251385176693e-18,-1.2793229120484942e-18,-0.00038265305920504034,3.5367218613652816e-19,-3.3745792618611326e-18,-0.00038265305920504034,4.8713839189507006e-20,-0.0014577260008081794,-0.0006122448830865324,1.2947207757535922e-18,-0.01224489789456129,0.000918367353733629,0.000918367353733629,0.0012244897661730647,0.015306122601032257,-8.33375316461649e-19,2.3560003775979686e-19,-9.483011541315642e-19,-0.0006122448830865324,-4.339517189460246e-19,-6.415038974411324e-19,-0.0006122448830865324,2.7603974502453564e-18,-0.0008163265301845968,-0.0030612244736403227,0.00042517005931586027,-0.0005102040595375001,-5.421010862427522e-19,-3.3606251385176693e-18,-8.33375316461649e-19,8.50340147735551e-05,1.0164395367051604e-20,9.486769009248164e-20,2.0328790734103208e-20,1.2059296513761532e-20,1.6049141775452253e-19,4.531522547116511e-20,4.855202779829e-19,2.567862787469937e-19,1.8881344215583318e-20,0.0005739795742556453,-0.00019132652960252017,-0.00019132652960252017,-1.2793229120484942e-18,2.3560003775979686e-19,1.0164395367051604e-20,6.377550744218752e-05,8.413239146875213e-20,3.192251219438096e-20,-1.1791975327356548e-19,7.284483346386983e-20,-0.0,1.21380069495725e-19,1.0195925811791506e-19,-2.1241512161751876e-19,0.0007653061184100807,-0.00025510202976875007,-1.9129387117707444e-18,-0.00038265305920504034,-9.483011541315642e-19,9.486769009248164e-20,8.413239146875213e-20,0.00012755101488437504,1.1305330755824824e-19,1.699320947090756e-19,2.0152203182959622e-19,1.0195925811791506e-19,3.9215099972066405e-19,1.5163171885801433e-19,-1.4855811280325681e-33,0.000918367353733629,-0.0003061224415432662,4.548145581631074e-19,3.5367218613652816e-19,-0.0006122448830865324,2.0328790734103208e-20,3.192251219438096e-20,1.1305330755824824e-19,0.0002040816325461492,-9.063045094233022e-20,-1.8055593228630336e-35,-7.250578634795112e-20,-1.9420811377809942e-19,-3.4630223306087943e-20,-9.260810149268585e-19,0.00042517005931586027,3.054573791944607e-20,-0.0005102040595375001,-3.3745792618611326e-18,-4.339517189460246e-19,1.2059296513761532e-20,-1.1791975327356548e-19,1.699320947090756e-19,-9.063045094233022e-20,8.50340147735551e-05,9.486769009248164e-20,1.3552527156068805e-20,4.855202779829e-19,2.567862787469937e-19,1.8881344215583318e-20,0.0007653061184100807,-1.6694931502442176e-18,-0.00025510202976875007,-0.00038265305920504034,-6.415038974411324e-19,1.6049141775452253e-19,7.284483346386983e-20,2.0152203182959622e-19,-1.8055593228630336e-35,9.486769009248164e-20,0.00012755101488437504,1.1274682421660027e-19,3.9215099972066405e-19,1.5163171885801433e-19,-9.818781252853716e-34,0.000918367353733629,-4.690104250405893e-19,-0.0003061224415432662,4.8713839189507006e-20,-0.0006122448830865324,4.531522547116511e-20,-0.0,1.0195925811791506e-19,-7.250578634795112e-20,1.3552527156068805e-20,1.1274682421660027e-19,0.0002040816325461492,-1.9420811377809942e-19,-3.4630223306087943e-20,-9.260810149268585e-19,0.0007288630004040897,-3.851171779492748e-18,-3.851171779492748e-18,-0.0014577260008081794,2.7603974502453564e-18,4.855202779829e-19,1.21380069495725e-19,3.9215099972066405e-19,-1.9420811377809942e-19,4.855202779829e-19,3.9215099972066405e-19,-1.9420811377809942e-19,0.00036443150020204484,-1.1784600495207755e-19,-3.2368019393839806e-19,0.0012244897661730647,-2.23385914684233e-18,-2.23385914684233e-18,-0.0006122448830865324,-0.0008163265301845968,2.567862787469937e-19,1.0195925811791506e-19,1.5163171885801433e-19,-3.4630223306087943e-20,2.567862787469937e-19,1.5163171885801433e-19,-3.4630223306087943e-20,-1.1784600495207755e-19,0.0004081632650922984,3.0846960004068645e-34,0.0010204081190750003,1.799790743731147e-18,1.799790743731147e-18,1.2947207757535922e-18,-0.0030612244736403227,1.8881344215583318e-20,-2.1241512161751876e-19,-1.4855811280325681e-33,-9.260810149268585e-19,1.8881344215583318e-20,-9.818781252853716e-34,-9.260810149268585e-19,-3.2368019393839806e-19,3.0846960004068645e-34,0.0010204081190750003,7.0,7.0,5.0,5.0,0.03558066114783287,-0.006479592062532902,-0.006479592062532902,-0.008454810827970505,-0.008454810827970505,0.0003401360590942204,0.0004591836768668145,0.0006122448830865324,0.0006122448830865324,0.0003401360590942204,0.0006122448830865324,0.0006122448830865324,0.000583090353757143,0.0008163265301845968,0.000583090353757143,-0.006479592062532902,0.0039285714738070965,0.0004591836768668145,0.0006122448830865324,0.0006122448830865324,-0.0004081632650922984,-0.0001530612207716331,-0.0002040816325461492,-0.0002040816325461492,1.3552527156068805e-20,5.082197683525802e-21,5.082197683525802e-21,-0.0,-0.0,0.0,-0.006479592062532902,0.0004591836768668145,0.0039285714738070965,0.0006122448830865324,0.0006122448830865324,-0.0,-0.0001530612207716331,-0.0,-0.0,-0.0004081632650922984,-0.0002040816325461492,-0.0002040816325461492,-0.0,-0.0,-0.0,-0.008454810827970505,0.0006122448830865324,0.0006122448830865324,0.0077259475365281105,0.0008163265301845968,-2.3456297622267984e-21,5.082197683525802e-21,-0.0003061224415432662,-0.0,2.710505431213761e-20,-0.0003061224415432662,4.4572352657607135e-21,-0.001166180707514286,-0.0004081632650922984,-0.0,-0.008454810827970505,0.0006122448830865324,0.0006122448830865324,0.0008163265301845968,0.0077259475365281105,-0.0,5.082197683525802e-21,-0.0,-0.0003061224415432662,2.338796798002713e-20,4.4572352657607135e-21,-0.0003061224415432662,-0.0,-0.0004081632650922984,-0.001166180707514286,0.0003401360590942204,-0.0004081632650922984,-0.0,-2.3456297622267984e-21,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,1.0425021277645988e-21,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004591836768668145,-0.0001530612207716331,-0.0001530612207716331,5.082197683525802e-21,5.082197683525802e-21,-0.0,5.10204081365373e-05,-0.0,-0.0,-6.776263578034403e-21,-1.6940658945086007e-21,-1.6940658945086007e-21,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0002040816325461492,-0.0,-0.0003061224415432662,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006122448830865324,-0.0002040816325461492,-0.0,-0.0,-0.0003061224415432662,-0.0,-0.0,-0.0,0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003401360590942204,1.3552527156068805e-20,-0.0004081632650922984,2.710505431213761e-20,2.338796798002713e-20,1.0425021277645988e-21,-6.776263578034403e-21,-0.0,-0.0,6.80272132740356e-05,-0.0,0.0,0.0,0.0,-0.0,0.0006122448830865324,5.082197683525802e-21,-0.0002040816325461492,-0.0003061224415432662,4.4572352657607135e-21,-0.0,-1.6940658945086007e-21,-0.0,-0.0,-0.0,0.0001020408162730746,-1.4857451222449698e-21,-0.0,-0.0,-0.0,0.0006122448830865324,5.082197683525802e-21,-0.0002040816325461492,4.4572352657607135e-21,-0.0003061224415432662,-0.0,-1.6940658945086007e-21,-0.0,-0.0,0.0,-1.4857451222449698e-21,0.0001020408162730746,-0.0,-0.0,-0.0,0.000583090353757143,-0.0,-0.0,-0.001166180707514286,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0002915451768785715,-0.0,-0.0,0.0008163265301845968,-0.0,-0.0,-0.0004081632650922984,-0.0004081632650922984,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0002040816325461492,-0.0,0.000583090353757143,0.0,-0.0,-0.0,-0.001166180707514286,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002915451768785715,7.0,7.0,5.0,6.0,0.030622368678450584,-0.005472545977681875,-0.005472545977681875,-0.0071428571827709675,-0.006195335183292627,0.00028344671591185033,0.00038265305920504034,0.0005102040595375001,0.0004373177944216877,0.00028344671591185033,0.0005102040595375001,0.0004373177944216877,0.00048590864753350616,0.000583090353757143,0.00036443150020204484,-0.005472545977681875,0.0032981049735099077,0.00038265305920504034,0.0005102040595375001,0.0004373177944216877,-0.0003401360590942204,-0.00012755101488437504,-0.0001700680295471102,-0.00014577258843928576,7.359483295539283e-19,1.1382912542464055e-19,4.874764567340114e-19,-3.0572758291143e-19,1.7029608002799307e-19,1.2782551252752648e-18,-0.005472545977681875,0.00038265305920504034,0.0032981049735099077,0.0005102040595375001,0.0004373177944216877,1.0503208545953324e-18,-0.00012755101488437504,-4.489484000540344e-19,4.912791094074942e-19,-0.0003401360590942204,-0.0001700680295471102,-0.00014577258843928576,-3.0572758291143e-19,1.7181683865947474e-19,1.2612836538523612e-18,-0.0071428571827709675,0.0005102040595375001,0.0005102040595375001,0.0064868805930018425,0.000583090353757143,-6.487260889175153e-20,-8.145187004227371e-19,-0.00025510202976875007,6.945410122580191e-19,-2.574980159653073e-19,-0.00025510202976875007,5.775368832990645e-19,-0.0009718172950670123,-0.0002915451768785715,7.8714450221879e-19,-0.006195335183292627,0.0004373177944216877,0.0004373177944216877,0.000583090353757143,0.004482507240027189,1.1005178964778066e-18,-6.468218286745387e-20,2.7422508136659563e-19,-0.0001749271177686751,1.0979077280548955e-18,3.8874991738518156e-19,-0.0001749271177686751,1.5713996625579323e-18,-0.0002332361473236233,-0.000546647235751152,0.00028344671591185033,-0.0003401360590942204,1.0503208545953324e-18,-6.487260889175153e-20,1.1005178964778066e-18,5.668934318237007e-05,-6.776263578034403e-20,-1.0164395367051604e-20,-4.743384504624082e-20,-1.0799999657267643e-19,-1.416100735389392e-20,-6.473603361780078e-20,1.7982232817067988e-20,-1.6184008404450196e-20,-1.481535407045025e-19,0.00038265305920504034,-0.00012755101488437504,-0.00012755101488437504,-8.145187004227371e-19,-6.468218286745387e-20,-6.776263578034403e-20,4.251700738677755e-05,3.4666929445769984e-20,3.3745400564081544e-21,-2.3233613169667893e-20,3.049318610115481e-20,-5.082197683525802e-21,1.21380069495725e-19,3.641401891001294e-20,-5.570426802723609e-22,0.0005102040595375001,-0.0001700680295471102,-4.489484000540344e-19,-0.00025510202976875007,2.7422508136659563e-19,-1.0164395367051604e-20,3.4666929445769984e-20,8.50340147735551e-05,-4.2709653393649955e-21,6.136436789285222e-20,-1.1619288934465173e-20,-2.1064858766735392e-35,5.556707256977432e-20,-3.056753542105655e-20,-3.034501737393125e-20,0.0004373177944216877,-0.00014577258843928576,4.912791094074942e-19,6.945410122580191e-19,-0.0001749271177686751,-4.743384504624082e-20,3.3745400564081544e-21,-4.2709653393649955e-21,5.8309036830905825e-05,-5.660894532537607e-20,-3.8841622755619884e-20,-3.352545574336375e-20,-1.1097606316967152e-19,-4.851960361074763e-20,-1.3082906995519188e-19,0.00028344671591185033,7.359483295539283e-19,-0.0003401360590942204,-2.574980159653073e-19,1.0979077280548955e-18,-1.0799999657267643e-19,-2.3233613169667893e-20,6.136436789285222e-20,-5.660894532537607e-20,5.668934318237007e-05,-1.0164395367051604e-20,-4.743384504624082e-20,1.7982232817067988e-20,-1.6184008404450196e-20,-1.4908990915791252e-19,0.0005102040595375001,1.1382912542464055e-19,-0.0001700680295471102,-0.00025510202976875007,3.8874991738518156e-19,-1.416100735389392e-20,3.049318610115481e-20,-1.1619288934465173e-20,-3.8841622755619884e-20,-1.0164395367051604e-20,8.50340147735551e-05,-3.6042920968738504e-21,5.556707256977432e-20,-3.056753542105655e-20,-3.034501737393125e-20,0.0004373177944216877,4.874764567340114e-19,-0.00014577258843928576,5.775368832990645e-19,-0.0001749271177686751,-6.473603361780078e-20,-5.082197683525802e-21,-2.1064858766735392e-35,-3.352545574336375e-20,-4.743384504624082e-20,-3.6042920968738504e-21,5.8309036830905825e-05,-1.1097606316967152e-19,-4.912791094074942e-20,-1.216059285770432e-19,0.00048590864753350616,-3.0572758291143e-19,-3.0572758291143e-19,-0.0009718172950670123,1.5713996625579323e-18,1.7982232817067988e-20,1.21380069495725e-19,5.556707256977432e-20,-1.1097606316967152e-19,1.7982232817067988e-20,5.556707256977432e-20,-1.1097606316967152e-19,0.00024295432376675308,-7.129142704758646e-20,-1.156000674173283e-19,0.000583090353757143,1.7029608002799307e-19,1.7181683865947474e-19,-0.0002915451768785715,-0.0002332361473236233,-1.6184008404450196e-20,3.641401891001294e-20,-3.056753542105655e-20,-4.851960361074763e-20,-1.6184008404450196e-20,-3.056753542105655e-20,-4.912791094074942e-20,-7.129142704758646e-20,0.00011661807366181165,-4.0885647441549504e-20,0.00036443150020204484,1.2782551252752648e-18,1.2612836538523612e-18,7.8714450221879e-19,-0.000546647235751152,-1.481535407045025e-19,-5.570426802723609e-22,-3.034501737393125e-20,-1.3082906995519188e-19,-1.4908990915791252e-19,-3.034501737393125e-20,-1.216059285770432e-19,-1.156000674173283e-19,-4.0885647441549504e-20,0.00010932944860542193,7.0,7.0,5.0,7.0,0.02688983827829361,-0.0047376095317304134,-0.0047376095317304134,-0.006184922996908426,-0.0047376095317304134,0.00024295432376675308,0.00032798832398839295,0.0004373177944216877,0.00032798832398839295,0.00024295432376675308,0.0004373177944216877,0.00032798832398839295,0.00041649313061498106,0.0004373177944216877,0.00024295432376675308,-0.0047376095317304134,0.002842565532773733,0.00032798832398839295,0.0004373177944216877,0.00032798832398839295,-0.0002915451768785715,-0.00010932944860542193,-0.00014577258843928576,-0.00010932944860542193,-0.0,-0.0,3.52299045115109e-22,-0.0,-0.0,-6.93886353733146e-21,-0.0047376095317304134,0.00032798832398839295,0.002842565532773733,0.0004373177944216877,0.00032798832398839295,-0.0,-0.00010932944860542193,1.1106317148798898e-22,-0.0,-0.0002915451768785715,-0.00014577258843928576,-0.00010932944860542193,-0.0,-0.0,-0.0,-0.006184922996908426,0.0004373177944216877,0.0004373177944216877,0.005591420456767082,0.0004373177944216877,-5.1259926030328056e-23,1.1106317148798898e-22,-0.00021865889721084386,-2.372867735087464e-39,-0.0,-0.00021865889721084386,2.204051907791789e-39,-0.0008329862612299621,-0.00021865889721084386,-3.2758574590060546e-40,-0.0047376095317304134,0.00032798832398839295,0.00032798832398839295,0.0004373177944216877,0.002842565532773733,6.776263578034403e-21,1.1512167025655638e-21,-8.785847098639095e-40,-0.00010932944860542193,-5.313307624977535e-22,-0.0,-0.00010932944860542193,-0.0,-0.00014577258843928576,-0.0002915451768785715,0.00024295432376675308,-0.0002915451768785715,-0.0,-5.1259926030328056e-23,6.776263578034403e-21,4.8590864025754854e-05,-0.0,-0.0,-0.0,-1.9087278462727602e-22,0.0,1.0242508062692457e-38,-0.0,-0.0,-6.05365345830971e-22,0.00032798832398839295,-0.00010932944860542193,-0.00010932944860542193,1.1106317148798898e-22,1.1512167025655638e-21,-0.0,3.644314710982144e-05,-3.702105611084845e-23,-7.786086921919168e-22,-0.0,-0.0,-0.0,-0.0,-0.0,1.822475940597557e-22,0.0004373177944216877,-0.00014577258843928576,1.1106317148798898e-22,-0.00021865889721084386,-8.785847098639095e-40,-0.0,-3.702105611084845e-23,7.288629421964288e-05,7.909559116958214e-40,-0.0,-0.0,-7.346839692639297e-40,-0.0,-0.0,1.0919478153404705e-40,0.00032798832398839295,-0.00010932944860542193,-0.0,-2.372867735087464e-39,-0.00010932944860542193,-0.0,-7.786086921919168e-22,7.909559116958214e-40,3.644314710982144e-05,4.1355771685479735e-22,-0.0,-1.1743301503836967e-22,-0.0,-0.0,3.4423315061850314e-21,0.00024295432376675308,-0.0,-0.0002915451768785715,-0.0,-5.313307624977535e-22,-1.9087278462727602e-22,-0.0,-0.0,4.1355771685479735e-22,4.8590864025754854e-05,-0.0,-3.3881317890172014e-21,0.0,0.0,1.4546235624138167e-21,0.0004373177944216877,-0.0,-0.00014577258843928576,-0.00021865889721084386,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,7.288629421964288e-05,-0.0,-0.0,-0.0,-0.0,0.00032798832398839295,3.52299045115109e-22,-0.00010932944860542193,2.204051907791789e-39,-0.00010932944860542193,1.0242508062692457e-38,-0.0,-7.346839692639297e-40,-1.1743301503836967e-22,-3.3881317890172014e-21,-0.0,3.644314710982144e-05,-0.0,-0.0,-3.3339318699009796e-21,0.00041649313061498106,-0.0,-0.0,-0.0008329862612299621,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00020824656530749053,-0.0,-0.0,0.0004373177944216877,-0.0,-0.0,-0.00021865889721084386,-0.00014577258843928576,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,7.288629421964288e-05,0.0,0.00024295432376675308,-6.93886353733146e-21,-0.0,-3.2758574590060546e-40,-0.0002915451768785715,-6.05365345830971e-22,1.822475940597557e-22,1.0919478153404705e-40,3.4423315061850314e-21,1.4546235624138167e-21,-0.0,-3.3339318699009796e-21,-0.0,0.0,4.8590864025754854e-05,7.0,7.0,5.0,8.0,0.023975037038326263,-0.004177296068519354,-0.004177296068519354,-0.005454324651509523,-0.0037414967082440853,0.00021258502965793014,0.00028698978712782264,0.00038265305920504034,0.00025510202976875007,0.00021258502965793014,0.00038265305920504034,0.00025510202976875007,0.00036443150020204484,0.0003401360590942204,0.0001700680295471102,-0.004177296068519354,0.0024978742003440857,0.00028698978712782264,0.00038265305920504034,0.00025510202976875007,-0.00025510202976875007,-9.566326480126008e-05,-0.00012755101488437504,-8.50340147735551e-05,-1.59965912496307e-19,-9.59257885127865e-19,-2.898772772606596e-19,-2.2465687769542072e-18,-8.42859407473664e-19,-1.7065006163137748e-19,-0.004177296068519354,0.00028698978712782264,0.0024978742003440857,0.00038265305920504034,0.00025510202976875007,-3.049318610115481e-19,-9.566326480126008e-05,-9.9328799213072e-19,-3.7100043089738355e-19,-0.00025510202976875007,-0.00012755101488437504,-8.50340147735551e-05,-2.2465687769542072e-18,-8.385626177817573e-19,-1.6531209711751087e-19,-0.005454324651509523,0.00038265305920504034,0.00038265305920504034,0.004913751035928726,0.0003401360590942204,-1.768409992832723e-18,-6.735334164337396e-19,-0.00019132652960252017,-5.472247463544822e-19,-1.7618285302889447e-18,-0.00019132652960252017,-5.331822697818406e-19,-0.0007288630004040897,-0.0001700680295471102,4.814610248361153e-20,-0.0037414967082440853,0.00025510202976875007,0.00025510202976875007,0.0003401360590942204,0.0019193391781300306,-3.4292504202793295e-19,-1.1741604228578617e-20,-4.1540904379897066e-19,-7.288629421964288e-05,-3.6691108259346866e-19,-4.2521053952165877e-19,-7.288629421964288e-05,-9.199248783142974e-20,-9.718172805150971e-05,-0.0001700680295471102,0.00021258502965793014,-0.00025510202976875007,-3.049318610115481e-19,-1.768409992832723e-18,-3.4292504202793295e-19,4.251700738677755e-05,3.3881317890172014e-21,5.082197683525802e-20,-1.0164395367051604e-20,7.032339793311354e-21,8.024570887726127e-20,1.8431787708532086e-20,2.4276013899145e-19,7.912182245639459e-20,1.8116202148971767e-20,0.00028698978712782264,-9.566326480126008e-05,-9.566326480126008e-05,-6.735334164337396e-19,-1.1741604228578617e-20,3.3881317890172014e-21,3.188775372109376e-05,4.2066195734376063e-20,5.7843298324316226e-21,-5.726581074227414e-20,3.5575383784680614e-20,-8.470329472543003e-22,6.06900347478625e-20,3.225214689965761e-20,-1.426872177928481e-20,0.00038265305920504034,-0.00012755101488437504,-9.9328799213072e-19,-0.00019132652960252017,-4.1540904379897066e-19,5.082197683525802e-20,4.2066195734376063e-20,6.377550744218752e-05,3.556713459677496e-20,8.49660473545378e-20,1.0076101591479811e-19,3.236801680890039e-20,1.9607549986033202e-19,7.006210741036195e-20,9.440672107791659e-21,0.00025510202976875007,-8.50340147735551e-05,-3.7100043089738355e-19,-5.472247463544822e-19,-7.288629421964288e-05,-1.0164395367051604e-20,5.7843298324316226e-21,3.556713459677496e-20,2.4295432012877427e-05,2.7333213989534464e-20,3.630069193491891e-20,2.536274052346244e-20,5.0093359962569514e-20,2.6710035179965193e-20,1.9251114952027262e-20,0.00021258502965793014,-1.59965912496307e-19,-0.00025510202976875007,-1.7618285302889447e-18,-3.6691108259346866e-19,7.032339793311354e-21,-5.726581074227414e-20,8.49660473545378e-20,2.7333213989534464e-20,4.251700738677755e-05,4.743384504624082e-20,-1.3552527156068805e-20,2.4276013899145e-19,7.881283172351482e-20,1.8138180596341243e-20,0.00038265305920504034,-9.59257885127865e-19,-0.00012755101488437504,-0.00019132652960252017,-4.2521053952165877e-19,8.024570887726127e-20,3.5575383784680614e-20,1.0076101591479811e-19,3.630069193491891e-20,4.743384504624082e-20,6.377550744218752e-05,3.5575383784680614e-20,1.9607549986033202e-19,7.00525237474837e-20,9.17624169144535e-21,0.00025510202976875007,-2.898772772606596e-19,-8.50340147735551e-05,-5.331822697818406e-19,-7.288629421964288e-05,1.8431787708532086e-20,-8.470329472543003e-22,3.236801680890039e-20,2.536274052346244e-20,-1.3552527156068805e-20,3.5575383784680614e-20,2.4295432012877427e-05,5.0093359962569514e-20,2.6061701678721213e-20,1.7836266135107923e-20,0.00036443150020204484,-2.2465687769542072e-18,-2.2465687769542072e-18,-0.0007288630004040897,-9.199248783142974e-20,2.4276013899145e-19,6.06900347478625e-20,1.9607549986033202e-19,5.0093359962569514e-20,2.4276013899145e-19,1.9607549986033202e-19,5.0093359962569514e-20,0.00018221575010102242,3.6362904964270846e-20,-2.6973348417808416e-20,0.0003401360590942204,-8.42859407473664e-19,-8.385626177817573e-19,-0.0001700680295471102,-9.718172805150971e-05,7.912182245639459e-20,3.225214689965761e-20,7.006210741036195e-20,2.6710035179965193e-20,7.881283172351482e-20,7.00525237474837e-20,2.6061701678721213e-20,3.6362904964270846e-20,4.8590864025754854e-05,1.1133003871460418e-21,0.0001700680295471102,-1.7065006163137748e-19,-1.6531209711751087e-19,4.814610248361153e-20,-0.0001700680295471102,1.8116202148971767e-20,-1.426872177928481e-20,9.440672107791659e-21,1.9251114952027262e-20,1.8138180596341243e-20,9.17624169144535e-21,1.7836266135107923e-20,-2.6973348417808416e-20,1.1133003871460418e-21,2.4295432012877427e-05,7.0,7.0,6.0,3.0,0.045651793479919434,-0.00869574025273323,-0.00869574025273323,-0.009839650243520737,-0.01639941707253456,0.0004724111931864172,0.0006377550889737904,0.0007288630004040897,0.0012755101779475808,0.0004724111931864172,0.0007288630004040897,0.0012755101779475808,0.0006073858239687979,0.0014577260008081794,0.001700680237263441,-0.00869574025273323,0.005355118308216333,0.0006377550889737904,0.0007288630004040897,0.0012755101779475808,-0.0005668934318237007,-0.00021258502965793014,-0.00024295432376675308,-0.00042517005931586027,1.2197274440461925e-19,-4.116274648440623e-20,7.965165163162558e-22,-5.421010862427522e-20,1.56909376735347e-20,4.2172999602810046e-34,-0.00869574025273323,0.0006377550889737904,0.005355118308216333,0.0007288630004040897,0.0012755101779475808,4.0657581468206416e-20,-0.00021258502965793014,-4.838585238310693e-20,-5.0760284024963196e-20,-0.0005668934318237007,-0.00024295432376675308,-0.00042517005931586027,-8.167128357716252e-20,-0.0,4.81482486096809e-34,-0.009839650243520737,0.0007288630004040897,0.0007288630004040897,0.007276481948792934,0.0014577260008081794,3.890551922676534e-20,-1.4106473210189376e-20,-0.0002915451768785715,-3.438361039244777e-20,1.3552527156068805e-20,-0.0002915451768785715,-5.462751817853626e-20,-0.0009110787068493664,-0.000583090353757143,4.5231720683599086e-18,-0.01639941707253456,0.0012755101779475808,0.0012755101779475808,0.0014577260008081794,0.03340622037649155,2.710505431213761e-20,-5.180171734086453e-20,-1.6487129709272533e-20,-0.0012755101779475808,-6.431325385190669e-20,-5.251604272976662e-20,-0.0012755101779475808,2.222614453595284e-18,-0.0014577260008081794,-0.010204081423580647,0.0004724111931864172,-0.0005668934318237007,4.0657581468206416e-20,3.890551922676534e-20,2.710505431213761e-20,9.448223863728344e-05,6.776263578034403e-21,-6.776263578034403e-21,-1.3552527156068805e-20,-5.5277455150010626e-21,-8.264323831301539e-37,2.709368261558411e-38,-1.5625736615778628e-21,3.76158192263132e-37,0.0,0.0006377550889737904,-0.00021258502965793014,-0.00021258502965793014,-1.4106473210189376e-20,-5.180171734086453e-20,6.776263578034403e-21,7.086167897796258e-05,6.610840784117652e-21,1.692009575204582e-20,-2.710505431213761e-20,-0.0,-0.0,-1.1319328525870296e-21,4.1657358889344245e-22,-1.4427187169565929e-37,0.0007288630004040897,-0.00024295432376675308,-4.838585238310693e-20,-0.0002915451768785715,-1.6487129709272533e-20,-6.776263578034403e-21,6.610840784117652e-21,9.718172805150971e-05,1.1461202925620212e-20,-1.8908938847726987e-21,1.6465099563114773e-20,-3.1860660652650234e-22,2.710505431213761e-20,-6.776263578034403e-21,-1.6851887013388314e-34,0.0012755101779475808,-0.00042517005931586027,-5.0760284024963196e-20,-3.438361039244777e-20,-0.0012755101779475808,-1.3552527156068805e-20,1.692009575204582e-20,1.1461202925620212e-20,0.00042517005931586027,-6.018531076210112e-36,1.128474576789396e-36,-0.0,3.009265538105056e-36,-0.0,-0.0,0.0004724111931864172,1.2197274440461925e-19,-0.0005668934318237007,1.3552527156068805e-20,-6.431325385190669e-20,-5.5277455150010626e-21,-2.710505431213761e-20,-1.8908938847726987e-21,-6.018531076210112e-36,9.448223863728344e-05,-0.0,0.0,-6.95511634389842e-21,1.1108628700577812e-21,-3.847249911884248e-37,0.0007288630004040897,-4.116274648440623e-20,-0.00024295432376675308,-0.0002915451768785715,-5.251604272976662e-20,-8.264323831301539e-37,-0.0,1.6465099563114773e-20,1.128474576789396e-36,-0.0,9.718172805150971e-05,2.0328790734103208e-20,5.2508394540274773e-20,-3.3881317890172014e-21,-1.925929944387236e-34,0.0012755101779475808,7.965165163162558e-22,-0.00042517005931586027,-5.462751817853626e-20,-0.0012755101779475808,2.709368261558411e-38,-0.0,-3.1860660652650234e-22,-0.0,0.0,2.0328790734103208e-20,0.00042517005931586027,-9.956456580170943e-22,-6.770847460736376e-36,2.9335281587052283e-36,0.0006073858239687979,-5.421010862427522e-20,-8.167128357716252e-20,-0.0009110787068493664,2.222614453595284e-18,-1.5625736615778628e-21,-1.1319328525870296e-21,2.710505431213761e-20,3.009265538105056e-36,-6.95511634389842e-21,5.2508394540274773e-20,-9.956456580170943e-22,0.00018221575010102242,-2.112212931984516e-19,-8.092004460719039e-19,0.0014577260008081794,1.56909376735347e-20,-0.0,-0.000583090353757143,-0.0014577260008081794,3.76158192263132e-37,4.1657358889344245e-22,-6.776263578034403e-21,-0.0,1.1108628700577812e-21,-3.3881317890172014e-21,-6.770847460736376e-36,-2.112212931984516e-19,0.000583090353757143,-4.771697863016006e-19,0.001700680237263441,4.2172999602810046e-34,4.81482486096809e-34,4.5231720683599086e-18,-0.010204081423580647,0.0,-1.4427187169565929e-37,-1.6851887013388314e-34,-0.0,-3.847249911884248e-37,-1.925929944387236e-34,2.9335281587052283e-36,-8.092004460719039e-19,-4.771697863016006e-19,0.005102040711790323,7.0,7.0,6.0,4.0,0.036613721400499344,-0.006713131908327341,-0.006713131908327341,-0.007598396390676498,-0.01034985389560461,0.00035430840216577053,0.00047831633128225803,0.000546647235751152,0.0007653061184100807,0.00035430840216577053,0.000546647235751152,0.0007653061184100807,0.0004555393534246832,0.0008746355888433754,0.0008503401186317205,-0.006713131908327341,0.004080114420503378,0.00047831633128225803,0.000546647235751152,0.0007653061184100807,-0.00042517005931586027,-0.0001594387722434476,-0.00018221575010102242,-0.00025510202976875007,5.421010862427522e-20,2.947707549799011e-20,9.614780702037e-21,1.0842021724855044e-19,-1.554464726830268e-21,-2.6925593501672036e-34,-0.006713131908327341,0.00047831633128225803,0.004080114420503378,0.000546647235751152,0.0007653061184100807,-0.0,-0.0001594387722434476,8.101466696068307e-21,-4.352786911319701e-20,-0.00042517005931586027,-0.00018221575010102242,-0.00025510202976875007,1.19367086700986e-19,-6.776263578034403e-21,-2.8888949165808538e-34,-0.007598396390676498,0.000546647235751152,0.000546647235751152,0.005544824991375208,0.0008746355888433754,-2.0106905997134394e-20,-2.5247927208205227e-20,-0.00021865889721084386,-3.8557069393727375e-20,-0.0,-0.00021865889721084386,-3.5356555738569125e-20,-0.00068330904468894,-0.0003498542355373502,1.6165121286126196e-18,-0.01034985389560461,0.0007653061184100807,0.0007653061184100807,0.0008746355888433754,0.012852284125983715,-1.3552527156068805e-20,-3.4658861203623324e-20,-3.92166069917449e-20,-0.0005102040595375001,2.6095637086468628e-20,-2.625802136488331e-20,-0.0005102040595375001,1.1384122811097797e-18,-0.000583090353757143,-0.0025510203558951616,0.00035430840216577053,-0.00042517005931586027,-0.0,-2.0106905997134394e-20,-1.3552527156068805e-20,7.086167897796258e-05,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,1.092936719116892e-21,-1.6296375603804734e-36,-1.1546470654127115e-37,2.2094436428269272e-21,2.272178274712483e-38,0.0,0.00047831633128225803,-0.0001594387722434476,-0.0001594387722434476,-2.5247927208205227e-20,-3.4658861203623324e-20,3.3881317890172014e-21,5.3146257414482534e-05,8.99346143325884e-21,1.4509290781457093e-20,-2.0328790734103208e-20,1.6940658945086007e-21,-3.3881317890172014e-21,-1.3989962720648008e-21,5.1815489211439005e-22,-5.25988342343505e-37,0.000546647235751152,-0.00018221575010102242,8.101466696068307e-21,-0.00021865889721084386,-3.92166069917449e-20,3.3881317890172014e-21,8.99346143325884e-21,7.288629421964288e-05,1.2852355926046747e-20,-1.3113001324660934e-22,-1.382370991884122e-20,2.1984589124939057e-22,-4.743384504624082e-20,-0.0,1.0833355937178202e-34,0.0007653061184100807,-0.00025510202976875007,-4.352786911319701e-20,-3.8557069393727375e-20,-0.0005102040595375001,-0.0,1.4509290781457093e-20,1.2852355926046747e-20,0.0001700680295471102,-3.009265538105056e-36,-2.256949153578792e-36,-0.0,-9.027796614315168e-36,3.76158192263132e-37,0.0,0.00035430840216577053,5.421010862427522e-20,-0.00042517005931586027,-0.0,2.6095637086468628e-20,1.092936719116892e-21,-2.0328790734103208e-20,-1.3113001324660934e-22,-3.009265538105056e-36,7.086167897796258e-05,-3.3881317890172014e-21,-6.776263578034403e-21,-1.4634822558092824e-22,1.3817464462878374e-21,-1.4026355496883127e-36,0.000546647235751152,2.947707549799011e-20,-0.00018221575010102242,-0.00021865889721084386,-2.625802136488331e-20,-1.6296375603804734e-36,1.6940658945086007e-21,-1.382370991884122e-20,-2.256949153578792e-36,-3.3881317890172014e-21,7.288629421964288e-05,1.0164395367051604e-20,-4.6099748121034836e-20,-1.6940658945086007e-21,1.2037062152420224e-34,0.0007653061184100807,9.614780702037e-21,-0.00025510202976875007,-3.5356555738569125e-20,-0.0005102040595375001,-1.1546470654127115e-37,-3.3881317890172014e-21,2.1984589124939057e-22,-0.0,-6.776263578034403e-21,1.0164395367051604e-20,0.0001700680295471102,6.870183817553529e-22,3.1707447456549485e-22,-8.946440050494173e-37,0.0004555393534246832,1.0842021724855044e-19,1.19367086700986e-19,-0.00068330904468894,1.1384122811097797e-18,2.2094436428269272e-21,-1.3989962720648008e-21,-4.743384504624082e-20,-9.027796614315168e-36,-1.4634822558092824e-22,-4.6099748121034836e-20,6.870183817553529e-22,0.000136661808937788,-9.393116654270676e-20,-2.8322015354022696e-19,0.0008746355888433754,-1.554464726830268e-21,-6.776263578034403e-21,-0.0003498542355373502,-0.000583090353757143,2.272178274712483e-38,5.1815489211439005e-22,-0.0,3.76158192263132e-37,1.3817464462878374e-21,-1.6940658945086007e-21,3.1707447456549485e-22,-9.393116654270676e-20,0.0002332361473236233,-1.3360754378336336e-19,0.0008503401186317205,-2.6925593501672036e-34,-2.8888949165808538e-34,1.6165121286126196e-18,-0.0025510203558951616,0.0,-5.25988342343505e-37,1.0833355937178202e-34,0.0,-1.4026355496883127e-36,1.2037062152420224e-34,-8.946440050494173e-37,-2.8322015354022696e-19,-1.3360754378336336e-19,0.0008503401186317205,7.0,7.0,6.0,5.0,0.030622368678450584,-0.005472545977681875,-0.005472545977681875,-0.006195335183292627,-0.0071428571827709675,0.00028344671591185033,0.00038265305920504034,0.0004373177944216877,0.0005102040595375001,0.00028344671591185033,0.0004373177944216877,0.0005102040595375001,0.00036443150020204484,0.000583090353757143,0.00048590864753350616,-0.005472545977681875,0.0032981049735099077,0.00038265305920504034,0.0004373177944216877,0.0005102040595375001,-0.0003401360590942204,-0.00012755101488437504,-0.00014577258843928576,-0.0001700680295471102,7.427245931319627e-19,4.1548837558959333e-19,2.2794070071672528e-20,1.03042240457491e-18,1.0653674314963854e-21,-6.525277851634149e-19,-0.005472545977681875,0.00038265305920504034,0.0032981049735099077,0.0004373177944216877,0.0005102040595375001,1.043544591017298e-18,-0.00012755101488437504,4.1652873615563776e-19,-5.399834521758282e-19,-0.0003401360590942204,-0.00014577258843928576,-0.0001700680295471102,1.0199299286974045e-18,-7.404962041046618e-21,-6.525277851634149e-19,-0.006195335183292627,0.0004373177944216877,0.0004373177944216877,0.004482507240027189,0.000583090353757143,1.1178208605311909e-18,-6.885406828686507e-20,-0.0001749271177686751,-5.5582835530322285e-19,1.0706496453294356e-18,-0.0001749271177686751,-4.415239887672764e-19,-0.000546647235751152,-0.0002332361473236233,-1.3711418211982585e-18,-0.0071428571827709675,0.0005102040595375001,0.0005102040595375001,0.000583090353757143,0.0064868805930018425,-6.776263578034403e-20,-8.145187004227371e-19,-1.100876582670925e-19,-0.00025510202976875007,-2.621263499864829e-19,-2.373033577374084e-19,-0.00025510202976875007,-1.328147661294743e-18,-0.0002915451768785715,-0.0009718172950670123,0.00028344671591185033,-0.0003401360590942204,1.043544591017298e-18,1.1178208605311909e-18,-6.776263578034403e-20,5.668934318237007e-05,-6.437450399132683e-20,-4.743384504624082e-20,-1.0164395367051604e-20,-1.0918183087286157e-19,-6.473603361780078e-20,-1.416100735389392e-20,-1.4699057646204122e-19,-1.6184008404450196e-20,1.7982232817067988e-20,0.00038265305920504034,-0.00012755101488437504,-0.00012755101488437504,-6.885406828686507e-20,-8.145187004227371e-19,-6.437450399132683e-20,4.251700738677755e-05,3.510390133684176e-21,3.4666929445769984e-20,-2.3233613169667893e-20,-5.082197683525802e-21,3.049318610115481e-20,1.3663092335444546e-22,3.641401891001294e-20,1.21380069495725e-19,0.0004373177944216877,-0.00014577258843928576,4.1652873615563776e-19,-0.0001749271177686751,-1.100876582670925e-19,-4.743384504624082e-20,3.510390133684176e-21,5.8309036830905825e-05,6.467240735360347e-23,-5.624667899116906e-20,-3.38614397060766e-20,-2.4276014222262428e-21,-1.265871326776551e-19,-1.6940658945086007e-20,2.774401579241788e-20,0.0005102040595375001,-0.0001700680295471102,-5.399834521758282e-19,-5.5582835530322285e-19,-0.00025510202976875007,-1.0164395367051604e-20,3.4666929445769984e-20,6.467240735360347e-23,8.50340147735551e-05,6.136436789285222e-20,3.641401891001294e-20,-1.1619288934465173e-20,8.344879777831094e-20,1.4574137217837276e-20,5.556707256977432e-20,0.00028344671591185033,7.427245931319627e-19,-0.0003401360590942204,1.0706496453294356e-18,-2.621263499864829e-19,-1.0918183087286157e-19,-2.3233613169667893e-20,-5.624667899116906e-20,6.136436789285222e-20,5.668934318237007e-05,-4.743384504624082e-20,-1.0164395367051604e-20,-1.4928471019216876e-19,-1.6184008404450196e-20,1.7982232817067988e-20,0.0004373177944216877,4.1548837558959333e-19,-0.00014577258843928576,-0.0001749271177686751,-2.373033577374084e-19,-6.473603361780078e-20,-5.082197683525802e-21,-3.38614397060766e-20,3.641401891001294e-20,-4.743384504624082e-20,5.8309036830905825e-05,8.0484411068500335e-22,-1.1642539979820015e-19,-1.3552527156068805e-20,2.774401579241788e-20,0.0005102040595375001,2.2794070071672528e-20,-0.0001700680295471102,-4.415239887672764e-19,-0.00025510202976875007,-1.416100735389392e-20,3.049318610115481e-20,-2.4276014222262428e-21,-1.1619288934465173e-20,-1.0164395367051604e-20,8.0484411068500335e-22,8.50340147735551e-05,8.344879777831094e-20,1.4574137217837276e-20,5.556707256977432e-20,0.00036443150020204484,1.03042240457491e-18,1.0199299286974045e-18,-0.000546647235751152,-1.328147661294743e-18,-1.4699057646204122e-19,1.3663092335444546e-22,-1.265871326776551e-19,8.344879777831094e-20,-1.4928471019216876e-19,-1.1642539979820015e-19,8.344879777831094e-20,0.00010932944860542193,4.0270044120051055e-21,1.7918010320438915e-19,0.000583090353757143,1.0653674314963854e-21,-7.404962041046618e-21,-0.0002332361473236233,-0.0002915451768785715,-1.6184008404450196e-20,3.641401891001294e-20,-1.6940658945086007e-20,1.4574137217837276e-20,-1.6184008404450196e-20,-1.3552527156068805e-20,1.4574137217837276e-20,4.0270044120051055e-21,0.00011661807366181165,1.5438859551737993e-19,0.00048590864753350616,-6.525277851634149e-19,-6.525277851634149e-19,-1.3711418211982585e-18,-0.0009718172950670123,1.7982232817067988e-20,1.21380069495725e-19,2.774401579241788e-20,5.556707256977432e-20,1.7982232817067988e-20,2.774401579241788e-20,5.556707256977432e-20,1.7918010320438915e-19,1.5438859551737993e-19,0.00024295432376675308,7.0,7.0,6.0,6.0,0.026340056210756302,-0.004621193744242191,-0.004621193744242191,-0.005232194904237986,-0.005232194904237986,0.0002362055965932086,0.0003188775444868952,0.00036443150020204484,0.00036443150020204484,0.0002362055965932086,0.00036443150020204484,0.00036443150020204484,0.00030369291198439896,0.00041649313061498106,0.00030369291198439896,-0.004621193744242191,0.002768666949123144,0.0003188775444868952,0.00036443150020204484,0.00036443150020204484,-0.00028344671591185033,-0.00010629251482896507,-0.00012147716188337654,-0.00012147716188337654,5.421010862427522e-20,-1.1177876602155894e-20,-1.1563848446378513e-20,-5.421010862427522e-20,4.659684085612016e-21,-5.45698611049019e-20,-0.004621193744242191,0.0003188775444868952,0.002768666949123144,0.00036443150020204484,0.00036443150020204484,6.776263578034403e-21,-0.00010629251482896507,-2.4002957378414698e-20,-2.710505431213761e-20,-0.00028344671591185033,-0.00012147716188337654,-0.00012147716188337654,-4.4373383408545454e-20,7.451301119014493e-21,-3.922574152139993e-20,-0.005232194904237986,0.00036443150020204484,0.00036443150020204484,0.0037631888408213854,0.00041649313061498106,9.698077143486236e-21,-8.229906681006338e-21,-0.00014577258843928576,2.2791737971644754e-21,1.3552527156068805e-20,-0.00014577258843928576,-0.0,-0.0004555393534246832,-0.00016659725224599242,3.8070917899388915e-19,-0.005232194904237986,0.00036443150020204484,0.00036443150020204484,0.00041649313061498106,0.0037631888408213854,1.3552527156068805e-20,-1.1562495392153878e-20,-2.0565689122307286e-21,-0.00014577258843928576,2.6843897075324568e-21,-1.0722703506433684e-20,-0.00014577258843928576,5.285485590866834e-19,-0.00016659725224599242,-0.0004555393534246832,0.0002362055965932086,-0.00028344671591185033,6.776263578034403e-21,9.698077143486236e-21,1.3552527156068805e-20,4.724111931864172e-05,3.3881317890172014e-21,-3.3881317890172014e-21,-6.776263578034403e-21,-2.1518043406510398e-21,-2.17510848037473e-37,-3.003747605905727e-37,2.09541489707161e-21,1.89512164834674e-37,1.4963795226054263e-21,0.0003188775444868952,-0.00010629251482896507,-0.00010629251482896507,-8.229906681006338e-21,-1.1562495392153878e-20,3.3881317890172014e-21,3.543083948898129e-05,3.619800925565653e-21,3.765255062507491e-21,-1.3552527156068805e-20,-8.470329472543003e-22,-8.470329472543003e-22,-1.6289367114473253e-23,-1.3188255476744271e-37,5.174132366457375e-22,0.00036443150020204484,-0.00012147716188337654,-2.4002957378414698e-20,-0.00014577258843928576,-2.0565689122307286e-21,-3.3881317890172014e-21,3.619800925565653e-21,4.8590864025754854e-05,2.045738218033504e-21,-1.070987983404551e-22,5.50047036521312e-21,3.540842878307221e-23,1.6940658945086007e-20,-0.0,-7.715364595133018e-22,0.00036443150020204484,-0.00012147716188337654,-2.710505431213761e-20,2.2791737971644754e-21,-0.00014577258843928576,-6.776263578034403e-21,3.765255062507491e-21,2.045738218033504e-21,4.8590864025754854e-05,2.807789716945016e-22,-1.2880276313568062e-23,5.6065704151604676e-21,-6.851468250349342e-22,-1.863873593855128e-21,1.8087998844375403e-20,0.0002362055965932086,5.421010862427522e-20,-0.00028344671591185033,1.3552527156068805e-20,2.6843897075324568e-21,-2.1518043406510398e-21,-1.3552527156068805e-20,-1.070987983404551e-22,2.807789716945016e-22,4.724111931864172e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,2.9249139781359695e-22,0.0,-8.152628806501831e-22,0.00036443150020204484,-1.1177876602155894e-20,-0.00012147716188337654,-0.00014577258843928576,-1.0722703506433684e-20,-2.17510848037473e-37,-8.470329472543003e-22,5.50047036521312e-21,-1.2880276313568062e-23,-3.3881317890172014e-21,4.8590864025754854e-05,2.9540633099734232e-21,1.6897771569029693e-20,8.470329472543003e-22,-4.0250864071545873e-23,0.00036443150020204484,-1.1563848446378513e-20,-0.00012147716188337654,-0.0,-0.00014577258843928576,-3.003747605905727e-37,-8.470329472543003e-22,3.540842878307221e-23,5.6065704151604676e-21,-3.3881317890172014e-21,2.9540633099734232e-21,4.8590864025754854e-05,1.1065133560836567e-22,-3.827553314080741e-21,1.722933528534421e-20,0.00030369291198439896,-5.421010862427522e-20,-4.4373383408545454e-20,-0.0004555393534246832,5.285485590866834e-19,2.09541489707161e-21,-1.6289367114473253e-23,1.6940658945086007e-20,-6.851468250349342e-22,2.9249139781359695e-22,1.6897771569029693e-20,1.1065133560836567e-22,9.110787505051121e-05,-4.790210682112826e-20,-7.955636369662342e-20,0.00041649313061498106,4.659684085612016e-21,7.451301119014493e-21,-0.00016659725224599242,-0.00016659725224599242,1.89512164834674e-37,-1.3188255476744271e-37,-0.0,-1.863873593855128e-21,0.0,8.470329472543003e-22,-3.827553314080741e-21,-4.790210682112826e-20,6.663890235358849e-05,7.81708216303129e-21,0.00030369291198439896,-5.45698611049019e-20,-3.922574152139993e-20,3.8070917899388915e-19,-0.0004555393534246832,1.4963795226054263e-21,5.174132366457375e-22,-7.715364595133018e-22,1.8087998844375403e-20,-8.152628806501831e-22,-4.0250864071545873e-23,1.722933528534421e-20,-7.955636369662342e-20,7.81708216303129e-21,9.110787505051121e-05,7.0,7.0,6.0,7.0,0.02311970666050911,-0.004000069573521614,-0.004000069573521614,-0.004529362544417381,-0.004000069573521614,0.00020246193162165582,0.000273323617875576,0.0003123698406852782,0.000273323617875576,0.00020246193162165582,0.0003123698406852782,0.000273323617875576,0.00026030821027234197,0.0003123698406852782,0.00020246193162165582,-0.004000069573521614,0.0023861585650593042,0.000273323617875576,0.0003123698406852782,0.000273323617875576,-0.00024295432376675308,-9.110787505051121e-05,-0.00010412328265374526,-9.110787505051121e-05,-0.0,-4.761425685368904e-21,-6.112486199750113e-23,-2.710505431213761e-20,3.467913520656654e-21,-4.145897892568965e-21,-0.004000069573521614,0.000273323617875576,0.0023861585650593042,0.0003123698406852782,0.000273323617875576,-0.0,-9.110787505051121e-05,-3.676659091362303e-21,-1.6940658945086007e-21,-0.00024295432376675308,-0.00010412328265374526,-9.110787505051121e-05,-2.421982733291991e-20,-1.5423957860691108e-21,-5.994386855993209e-21,-0.004529362544417381,0.0003123698406852782,0.0003123698406852782,0.0032434402965009212,0.0003123698406852782,4.0188734648828115e-22,3.5984832533339394e-21,-0.00012494793918449432,-4.469239078165536e-21,-0.0,-0.00012494793918449432,-6.776263578034403e-21,-0.00039046231540851295,-0.00012494793918449432,2.0843768826554288e-19,-0.004000069573521614,0.000273323617875576,0.000273323617875576,0.0003123698406852782,0.0023861585650593042,-0.0,-1.1420350179610644e-21,1.5489221522448618e-21,-9.110787505051121e-05,-5.2676630475288415e-21,-2.551919034643755e-21,-9.110787505051121e-05,4.2012834183813297e-19,-0.00010412328265374526,-0.00024295432376675308,0.00020246193162165582,-0.00024295432376675308,-0.0,4.0188734648828115e-22,-0.0,4.049238850711845e-05,-0.0,-0.0,-0.0,-6.0440467575375824e-24,-7.547047127873084e-38,4.545363802761123e-40,-7.95372579651264e-22,2.2382784826530763e-38,6.739326813288999e-22,0.000273323617875576,-9.110787505051121e-05,-9.110787505051121e-05,3.5984832533339394e-21,-1.1420350179610644e-21,-0.0,3.0369290470844135e-05,-4.205928352055435e-23,2.4966551504256693e-22,-0.0,-0.0,-0.0,-6.398596962396146e-22,6.251006076657254e-39,6.046745687352615e-23,0.0003123698406852782,-0.00010412328265374526,-3.676659091362303e-21,-0.00012494793918449432,1.5489221522448618e-21,-0.0,-4.205928352055435e-23,4.1649313061498106e-05,9.75805238270934e-22,-1.1215808518088677e-22,1.8213860756144526e-21,-7.200287680498619e-24,1.3552527156068805e-20,-1.6940658945086007e-21,-3.378035871421536e-23,0.000273323617875576,-9.110787505051121e-05,-1.6940658945086007e-21,-4.469239078165536e-21,-9.110787505051121e-05,-0.0,2.4966551504256693e-22,9.75805238270934e-22,3.0369290470844135e-05,1.0656050490228124e-22,6.932017385877394e-23,2.6375193601439076e-23,1.044124934553496e-22,2.5575037154688385e-22,-1.1053868627110011e-22,0.00020246193162165582,-0.0,-0.00024295432376675308,-0.0,-5.2676630475288415e-21,-6.0440467575375824e-24,-0.0,-1.1215808518088677e-22,1.0656050490228124e-22,4.049238850711845e-05,-0.0,-1.6940658945086007e-21,-9.73506156805209e-22,0.0,1.6107027091158954e-21,0.0003123698406852782,-4.761425685368904e-21,-0.00010412328265374526,-0.00012494793918449432,-2.551919034643755e-21,-7.547047127873084e-38,-0.0,1.8213860756144526e-21,6.932017385877394e-23,-0.0,4.1649313061498106e-05,1.0866636971985746e-21,1.3013879904312632e-20,-8.470329472543003e-22,1.8485380116398866e-22,0.000273323617875576,-6.112486199750113e-23,-9.110787505051121e-05,-6.776263578034403e-21,-9.110787505051121e-05,4.545363802761123e-40,-0.0,-7.200287680498619e-24,2.6375193601439076e-23,-1.6940658945086007e-21,1.0866636971985746e-21,3.0369290470844135e-05,-2.250089732522876e-23,1.2199927517263525e-21,-1.70623914161409e-21,0.00026030821027234197,-2.710505431213761e-20,-2.421982733291991e-20,-0.00039046231540851295,4.2012834183813297e-19,-7.95372579651264e-22,-6.398596962396146e-22,1.3552527156068805e-20,1.044124934553496e-22,-9.73506156805209e-22,1.3013879904312632e-20,-2.250089732522876e-23,7.809246017131954e-05,-4.94171915105957e-20,-4.891952604987141e-20,0.0003123698406852782,3.467913520656654e-21,-1.5423957860691108e-21,-0.00012494793918449432,-0.00010412328265374526,2.2382784826530763e-38,6.251006076657254e-39,-1.6940658945086007e-21,2.5575037154688385e-22,0.0,-8.470329472543003e-22,1.2199927517263525e-21,-4.94171915105957e-20,4.1649313061498106e-05,1.1735296168614333e-20,0.00020246193162165582,-4.145897892568965e-21,-5.994386855993209e-21,2.0843768826554288e-19,-0.00024295432376675308,6.739326813288999e-22,6.046745687352615e-23,-3.378035871421536e-23,-1.1053868627110011e-22,1.6107027091158954e-21,1.8485380116398866e-22,-1.70623914161409e-21,-4.891952604987141e-20,1.1735296168614333e-20,4.049238850711845e-05,7.0,7.0,6.0,8.0,0.02060682885348797,-0.0035266338381916285,-0.0035266338381916285,-0.003993561491370201,-0.0031584061216562986,0.00017715420108288527,0.00023915816564112902,0.000273323617875576,0.00021258502965793014,0.00017715420108288527,0.000273323617875576,0.00021258502965793014,0.0002277696767123416,0.00024295432376675308,0.00014172335795592517,-0.0035266338381916285,0.002096746349707246,0.00023915816564112902,0.000273323617875576,0.00021258502965793014,-0.00021258502965793014,-7.97193861217238e-05,-9.110787505051121e-05,-7.086167897796258e-05,3.3881317890172014e-20,1.316553672920962e-36,8.774941964289924e-21,-6.570027337456591e-35,1.9437356605648137e-20,2.3986459002603387e-20,-0.0035266338381916285,0.00023915816564112902,0.002096746349707246,0.000273323617875576,0.00021258502965793014,-0.0,-7.97193861217238e-05,-1.3563952588279694e-20,-1.6940658945086007e-21,-0.00021258502965793014,-9.110787505051121e-05,-7.086167897796258e-05,-5.52952542626804e-35,1.9269999550035333e-20,1.4223761604935713e-20,-0.003993561491370201,0.000273323617875576,0.000273323617875576,0.002850157907232642,0.00024295432376675308,-1.2623769733646546e-20,-1.3563952588279694e-20,-0.00010932944860542193,9.901410093396561e-21,-1.3552527156068805e-20,-0.00010932944860542193,1.1720607250392981e-20,-0.00034165452234447,-9.718172805150971e-05,2.1846809329805796e-19,-0.0031584061216562986,0.00021258502965793014,0.00021258502965793014,0.00024295432376675308,0.0016110185533761978,6.776263578034403e-21,-1.1037755922239819e-20,-9.535946512251575e-21,-6.073858094168827e-05,-5.554565877010814e-21,-7.549392299642352e-21,-6.073858094168827e-05,3.050398080814863e-19,-6.941552419448271e-05,-0.00014172335795592517,0.00017715420108288527,-0.00021258502965793014,-0.0,-1.2623769733646546e-20,6.776263578034403e-21,3.543083948898129e-05,1.6940658945086007e-21,3.3881317890172014e-21,-0.0,3.6123339342682906e-22,-0.0,4.634006580497996e-38,0.0,3.1327069736038743e-38,2.22537989528984e-22,0.00023915816564112902,-7.97193861217238e-05,-7.97193861217238e-05,-1.3563952588279694e-20,-1.1037755922239819e-20,1.6940658945086007e-21,2.6573128707241267e-05,4.521317529426565e-21,3.4709799050367825e-21,-1.1858461261560205e-20,-0.0,-4.235164736271502e-22,0.0,-9.27676981904762e-37,2.503313641336714e-22,0.000273323617875576,-9.110787505051121e-05,-1.3563952588279694e-20,-0.00010932944860542193,-9.535946512251575e-21,3.3881317890172014e-21,4.521317529426565e-21,3.644314710982144e-05,3.1786489047333223e-21,-2.256949153578792e-36,-0.0,-4.70197740328915e-37,0.0,-8.719033299963965e-37,-8.423563353047834e-37,0.00021258502965793014,-7.086167897796258e-05,-1.6940658945086007e-21,9.901410093396561e-21,-6.073858094168827e-05,-0.0,3.4709799050367825e-21,3.1786489047333223e-21,2.0246194253559224e-05,-1.8684318214921122e-22,-3.76158192263132e-37,-2.1441121264097935e-21,1.877150688343735e-35,-5.5535306895547724e-21,-7.481128896473986e-21,0.00017715420108288527,3.3881317890172014e-20,-0.00021258502965793014,-1.3552527156068805e-20,-5.554565877010814e-21,3.6123339342682906e-22,-1.1858461261560205e-20,-2.256949153578792e-36,-1.8684318214921122e-22,3.543083948898129e-05,-0.0,-1.6940658945086007e-21,-0.0,3.76158192263132e-37,1.799686115077182e-21,0.000273323617875576,1.316553672920962e-36,-9.110787505051121e-05,-0.00010932944860542193,-7.549392299642352e-21,-0.0,-0.0,-0.0,-3.76158192263132e-37,-0.0,3.644314710982144e-05,2.5164639652485227e-21,0.0,-6.763404032343188e-37,-7.913516720133098e-37,0.00021258502965793014,8.774941964289924e-21,-7.086167897796258e-05,1.1720607250392981e-20,-6.073858094168827e-05,4.634006580497996e-38,-4.235164736271502e-22,-4.70197740328915e-37,-2.1441121264097935e-21,-1.6940658945086007e-21,2.5164639652485227e-21,2.0246194253559224e-05,1.5798644075051544e-35,-5.505714157152952e-21,-7.620775401566264e-21,0.0002277696767123416,-6.570027337456591e-35,-5.52952542626804e-35,-0.00034165452234447,3.050398080814863e-19,0.0,0.0,0.0,1.877150688343735e-35,-0.0,0.0,1.5798644075051544e-35,6.8330904468894e-05,-2.760920473961734e-20,-3.3716686330054087e-20,0.00024295432376675308,1.9437356605648137e-20,1.9269999550035333e-20,-9.718172805150971e-05,-6.941552419448271e-05,3.1327069736038743e-38,-9.27676981904762e-37,-8.719033299963965e-37,-5.5535306895547724e-21,3.76158192263132e-37,-6.763404032343188e-37,-5.505714157152952e-21,-2.760920473961734e-20,2.7766209313995205e-05,-1.4252759778401952e-20,0.00014172335795592517,2.3986459002603387e-20,1.4223761604935713e-20,2.1846809329805796e-19,-0.00014172335795592517,2.22537989528984e-22,2.503313641336714e-22,-8.423563353047834e-37,-7.481128896473986e-21,1.799686115077182e-21,-7.913516720133098e-37,-7.620775401566264e-21,-3.3716686330054087e-20,-1.4252759778401952e-20,2.0246194253559224e-05,7.0,7.0,7.0,3.0,0.04014820232987404,-0.007531584240496159,-0.007531584240496159,-0.007531584240496159,-0.014212828129529953,0.00040492386324331164,0.000546647235751152,0.000546647235751152,0.001093294471502304,0.00040492386324331164,0.000546647235751152,0.001093294471502304,0.00040492386324331164,0.001093294471502304,0.0014577260008081794,-0.007531584240496159,0.004616132006049156,0.000546647235751152,0.000546647235751152,0.001093294471502304,-0.00048590864753350616,-0.00018221575010102242,-0.00018221575010102242,-0.00036443150020204484,1.3552527156068805e-20,-1.5825116476407808e-22,3.057682613254904e-23,-0.0,-0.0,0.0,-0.007531584240496159,0.000546647235751152,0.004616132006049156,0.000546647235751152,0.001093294471502304,-0.0,-0.00018221575010102242,-4.618974117115406e-21,-0.0,-0.00048590864753350616,-0.00018221575010102242,-0.00036443150020204484,-1.142069288603142e-20,-0.0,-0.0,-0.007531584240496159,0.000546647235751152,0.000546647235751152,0.004616132006049156,0.001093294471502304,3.737778772121379e-21,-8.098520672929654e-21,-0.00018221575010102242,-0.0,-1.3552527156068805e-20,-0.00018221575010102242,5.289440758196931e-21,-0.00048590864753350616,-0.00036443150020204484,-0.0,-0.014212828129529953,0.001093294471502304,0.001093294471502304,0.001093294471502304,0.02879008837044239,-0.0,-0.0,3.057682613254904e-23,-0.001093294471502304,2.475942535770438e-20,5.082197683525802e-21,-0.001093294471502304,-0.0,-0.001093294471502304,-0.008746355772018433,0.00040492386324331164,-0.00048590864753350616,-0.0,3.737778772121379e-21,-0.0,8.09847770142369e-05,-0.0,-0.0,-0.0,-7.15713582146889e-22,4.569592253209299e-40,3.507450056205017e-41,-4.520440063664469e-22,-0.0,-0.0,0.000546647235751152,-0.00018221575010102242,-0.00018221575010102242,-8.098520672929654e-21,-0.0,-0.0,6.073858094168827e-05,5.774114979854999e-22,-0.0,-3.3881317890172014e-21,-0.0,-0.0,9.794286972896677e-22,-0.0,-0.0,0.000546647235751152,-0.00018221575010102242,-4.618974117115406e-21,-0.00018221575010102242,3.057682613254904e-23,-0.0,5.774114979854999e-22,6.073858094168827e-05,-0.0,4.21335506727042e-22,5.275038720287815e-23,-1.0192275377516346e-23,-0.0,-0.0,-0.0,0.001093294471502304,-0.00036443150020204484,-0.0,-0.0,-0.001093294471502304,-0.0,-0.0,-0.0,0.00036443150020204484,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00040492386324331164,1.3552527156068805e-20,-0.00048590864753350616,-1.3552527156068805e-20,2.475942535770438e-20,-7.15713582146889e-22,-3.3881317890172014e-21,4.21335506727042e-22,-0.0,8.09847770142369e-05,3.3881317890172014e-21,-1.3552527156068805e-20,-2.4334925092486884e-22,0.0,-0.0,0.000546647235751152,-1.5825116476407808e-22,-0.00018221575010102242,-0.00018221575010102242,5.082197683525802e-21,4.569592253209299e-40,-0.0,5.275038720287815e-23,-0.0,3.3881317890172014e-21,6.073858094168827e-05,-1.6940658945086007e-21,3.3637854967546146e-21,-0.0,-0.0,0.001093294471502304,3.057682613254904e-23,-0.00036443150020204484,5.289440758196931e-21,-0.001093294471502304,3.507450056205017e-41,-0.0,-1.0192275377516346e-23,-0.0,-1.3552527156068805e-20,-1.6940658945086007e-21,0.00036443150020204484,-2.717940100671026e-23,-0.0,-0.0,0.00040492386324331164,-0.0,-1.142069288603142e-20,-0.00048590864753350616,-0.0,-4.520440063664469e-22,9.794286972896677e-22,-0.0,-0.0,-2.4334925092486884e-22,3.3637854967546146e-21,-2.717940100671026e-23,8.09847770142369e-05,0.0,-0.0,0.001093294471502304,-0.0,-0.0,-0.00036443150020204484,-0.001093294471502304,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.00036443150020204484,-0.0,0.0014577260008081794,0.0,-0.0,-0.0,-0.008746355772018433,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004373177886009216,7.0,7.0,7.0,4.0,0.032170187681913376,-0.005812682211399078,-0.005812682211399078,-0.005812682211399078,-0.008965014480054379,0.00030369291198439896,0.00040998542681336403,0.00040998542681336403,0.0006559766479767859,0.00030369291198439896,0.00040998542681336403,0.0006559766479767859,0.00030369291198439896,0.0006559766479767859,0.0007288630004040897,-0.005812682211399078,0.0035167639143764973,0.00040998542681336403,0.00040998542681336403,0.0006559766479767859,-0.00036443150020204484,-0.000136661808937788,-0.000136661808937788,-0.00021865889721084386,-1.3552527156068805e-20,-4.772739238170771e-21,-4.69416717739782e-21,-0.0,-4.149251851458926e-21,0.0,-0.005812682211399078,0.00040998542681336403,0.0035167639143764973,0.00040998542681336403,0.0006559766479767859,-1.3552527156068805e-20,-0.000136661808937788,-9.951448865901051e-21,-5.602157035007456e-21,-0.00036443150020204484,-0.000136661808937788,-0.00021865889721084386,-8.177673941174023e-21,-3.3881317890172014e-21,-0.0,-0.005812682211399078,0.00040998542681336403,0.00040998542681336403,0.0035167639143764973,0.0006559766479767859,3.9049128767097054e-21,-5.659566116016764e-21,-0.000136661808937788,-5.602157035007456e-21,-1.3552527156068805e-20,-0.000136661808937788,-7.081447987626721e-21,-0.00036443150020204484,-0.00021865889721084386,-0.0,-0.008965014480054379,0.0006559766479767859,0.0006559766479767859,0.0006559766479767859,0.011078717187047005,-1.3552527156068805e-20,-9.751408482569599e-21,-1.0296324212405276e-20,-0.0004373177944216877,3.306418471497886e-22,-2.0328790734103208e-20,-0.0004373177944216877,-0.0,-0.0004373177944216877,-0.002186588943004608,0.00030369291198439896,-0.00036443150020204484,-1.3552527156068805e-20,3.9049128767097054e-21,-1.3552527156068805e-20,6.073858094168827e-05,-0.0,-0.0,6.776263578034403e-21,1.9717303928621918e-21,-9.740733911183955e-40,8.288577280914319e-38,-1.6676351666771559e-22,9.4039548065783e-38,-0.0,0.00040998542681336403,-0.000136661808937788,-0.000136661808937788,-5.659566116016764e-21,-9.751408482569599e-21,-0.0,4.5553937525255606e-05,1.2591509487808586e-21,1.8673856783358188e-21,-0.0,-0.0,1.6940658945086007e-21,3.6132096329819584e-22,-3.109819692658409e-22,-0.0,0.00040998542681336403,-0.000136661808937788,-9.951448865901051e-21,-0.000136661808937788,-1.0296324212405276e-20,-0.0,1.2591509487808586e-21,4.5553937525255606e-05,1.8673856783358188e-21,2.454264920822713e-22,1.590912978416061e-21,-1.293434641773372e-22,-0.0,1.6940658945086007e-21,-0.0,0.0006559766479767859,-0.00021865889721084386,-5.602157035007456e-21,-5.602157035007456e-21,-0.0004373177944216877,6.776263578034403e-21,1.8673856783358188e-21,1.8673856783358188e-21,0.00014577258843928576,1.88079096131566e-37,1.410593220986745e-37,9.4039548065783e-38,-0.0,-0.0,-0.0,0.00030369291198439896,-1.3552527156068805e-20,-0.00036443150020204484,-1.3552527156068805e-20,3.306418471497886e-22,1.9717303928621918e-21,-0.0,2.454264920822713e-22,1.88079096131566e-37,6.073858094168827e-05,-0.0,6.776263578034403e-21,-1.2568112756883945e-21,-8.292852682046084e-22,-0.0,0.00040998542681336403,-4.772739238170771e-21,-0.000136661808937788,-0.000136661808937788,-2.0328790734103208e-20,-9.740733911183955e-40,-0.0,1.590912978416061e-21,1.410593220986745e-37,-0.0,4.5553937525255606e-05,3.3881317890172014e-21,5.260119467303913e-21,3.3881317890172014e-21,-0.0,0.0006559766479767859,-4.69416717739782e-21,-0.00021865889721084386,-7.081447987626721e-21,-0.0004373177944216877,8.288577280914319e-38,1.6940658945086007e-21,-1.293434641773372e-22,9.4039548065783e-38,6.776263578034403e-21,3.3881317890172014e-21,0.00014577258843928576,-3.4491591288741554e-22,-3.019756768395647e-22,-0.0,0.00030369291198439896,-0.0,-8.177673941174023e-21,-0.00036443150020204484,-0.0,-1.6676351666771559e-22,3.6132096329819584e-22,-0.0,-0.0,-1.2568112756883945e-21,5.260119467303913e-21,-3.4491591288741554e-22,6.073858094168827e-05,4.430633815807604e-21,-0.0,0.0006559766479767859,-4.149251851458926e-21,-3.3881317890172014e-21,-0.00021865889721084386,-0.0004373177944216877,9.4039548065783e-38,-3.109819692658409e-22,1.6940658945086007e-21,-0.0,-8.292852682046084e-22,3.3881317890172014e-21,-3.019756768395647e-22,4.430633815807604e-21,0.00014577258843928576,-0.0,0.0007288630004040897,0.0,-0.0,-0.0,-0.002186588943004608,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007288630004040897,7.0,7.0,7.0,5.0,0.02688983827829361,-0.0047376095317304134,-0.0047376095317304134,-0.0047376095317304134,-0.006184922996908426,0.00024295432376675308,0.00032798832398839295,0.00032798832398839295,0.0004373177944216877,0.00024295432376675308,0.00032798832398839295,0.0004373177944216877,0.00024295432376675308,0.0004373177944216877,0.00041649313061498106,-0.0047376095317304134,0.002842565532773733,0.00032798832398839295,0.00032798832398839295,0.0004373177944216877,-0.0002915451768785715,-0.00010932944860542193,-0.00010932944860542193,-0.00014577258843928576,-0.0,3.52299045115109e-22,-0.0,-6.776263578034403e-21,-0.0,0.0,-0.0047376095317304134,0.00032798832398839295,0.002842565532773733,0.00032798832398839295,0.0004373177944216877,-0.0,-0.00010932944860542193,-6.480281047885758e-22,1.1106317148798898e-22,-0.0002915451768785715,-0.00010932944860542193,-0.00014577258843928576,2.9908991005229587e-22,-0.0,-0.0,-0.0047376095317304134,0.00032798832398839295,0.00032798832398839295,0.002842565532773733,0.0004373177944216877,6.1285064375004395e-21,1.3294318163826725e-21,-0.00010932944860542193,1.1106317148798898e-22,-0.0,-0.00010932944860542193,-1.811854111524486e-21,-0.0002915451768785715,-0.00014577258843928576,-0.0,-0.006184922996908426,0.0004373177944216877,0.0004373177944216877,0.0004373177944216877,0.005591420456767082,-0.0,1.1106317148798898e-22,1.1106317148798898e-22,-0.00021865889721084386,7.849804163866955e-22,-1.811854111524486e-21,-0.00021865889721084386,-0.0,-0.00021865889721084386,-0.0008329862612299621,0.00024295432376675308,-0.0002915451768785715,-0.0,6.1285064375004395e-21,-0.0,4.8590864025754854e-05,-0.0,-0.0,-0.0,-2.3009770038170213e-22,1.0694620196625287e-38,-0.0,-5.859220575971607e-22,-0.0,-0.0,0.00032798832398839295,-0.00010932944860542193,-0.00010932944860542193,1.3294318163826725e-21,1.1106317148798898e-22,-0.0,3.644314710982144e-05,-7.467384591854982e-22,-3.702105611084845e-23,-0.0,-0.0,-0.0,1.4012054107655562e-22,-0.0,-0.0,0.00032798832398839295,-0.00010932944860542193,-6.480281047885758e-22,-0.00010932944860542193,1.1106317148798898e-22,-0.0,-7.467384591854982e-22,3.644314710982144e-05,-3.702105611084845e-23,4.9854499645739715e-22,-1.1743301503836967e-22,-0.0,3.3881317890172014e-21,-0.0,-0.0,0.0004373177944216877,-0.00014577258843928576,1.1106317148798898e-22,1.1106317148798898e-22,-0.00021865889721084386,-0.0,-3.702105611084845e-23,-3.702105611084845e-23,7.288629421964288e-05,-0.0,-1.4693679385278594e-39,-0.0,-0.0,-0.0,-0.0,0.00024295432376675308,-0.0,-0.0002915451768785715,-0.0,7.849804163866955e-22,-2.3009770038170213e-22,-0.0,4.9854499645739715e-22,-0.0,4.8590864025754854e-05,-3.3881317890172014e-21,0.0,1.4280530105646432e-21,0.0,-0.0,0.00032798832398839295,3.52299045115109e-22,-0.00010932944860542193,-0.00010932944860542193,-1.811854111524486e-21,1.0694620196625287e-38,-0.0,-1.1743301503836967e-22,-1.4693679385278594e-39,-3.3881317890172014e-21,3.644314710982144e-05,6.039513536791294e-22,-3.3339318699009796e-21,-0.0,-0.0,0.0004373177944216877,-0.0,-0.00014577258843928576,-1.811854111524486e-21,-0.00021865889721084386,-0.0,-0.0,-0.0,-0.0,0.0,6.039513536791294e-22,7.288629421964288e-05,-0.0,-0.0,-0.0,0.00024295432376675308,-6.776263578034403e-21,2.9908991005229587e-22,-0.0002915451768785715,-0.0,-5.859220575971607e-22,1.4012054107655562e-22,3.3881317890172014e-21,-0.0,1.4280530105646432e-21,-3.3339318699009796e-21,-0.0,4.8590864025754854e-05,0.0,-0.0,0.0004373177944216877,-0.0,-0.0,-0.00014577258843928576,-0.00021865889721084386,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,7.288629421964288e-05,-0.0,0.00041649313061498106,0.0,-0.0,-0.0,-0.0008329862612299621,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00020824656530749053,7.0,7.0,7.0,6.0,0.02311970666050911,-0.004000069573521614,-0.004000069573521614,-0.004000069573521614,-0.004529362544417381,0.00020246193162165582,0.000273323617875576,0.000273323617875576,0.0003123698406852782,0.00020246193162165582,0.000273323617875576,0.0003123698406852782,0.00020246193162165582,0.0003123698406852782,0.00026030821027234197,-0.004000069573521614,0.0023861585650593042,0.000273323617875576,0.000273323617875576,0.0003123698406852782,-0.00024295432376675308,-9.110787505051121e-05,-9.110787505051121e-05,-0.00010412328265374526,-0.0,-1.737476518847904e-21,-8.510947756469765e-21,-6.776263578034403e-21,-1.3641285897617733e-20,-3.5187523319098474e-20,-0.004000069573521614,0.000273323617875576,0.0023861585650593042,0.000273323617875576,0.0003123698406852782,6.776263578034403e-21,-9.110787505051121e-05,-3.7596740167534586e-21,-1.0164395367051604e-20,-0.00024295432376675308,-9.110787505051121e-05,-0.00010412328265374526,-5.7550036947772036e-21,-1.5761952421592085e-20,-4.8590970556800203e-20,-0.004000069573521614,0.000273323617875576,0.000273323617875576,0.0023861585650593042,0.0003123698406852782,-8.530538366055347e-21,-1.0726061706239872e-21,-9.110787505051121e-05,-1.1770044216690096e-20,-0.0,-9.110787505051121e-05,-1.1858461261560205e-20,-0.00024295432376675308,-0.00010412328265374526,-4.792393017213288e-20,-0.004529362544417381,0.0003123698406852782,0.0003123698406852782,0.0003123698406852782,0.0032434402965009212,-0.0,-9.005114057410432e-22,-9.560545845849008e-22,-0.00012494793918449432,2.2279907850724064e-21,-3.92680165899325e-21,-0.00012494793918449432,-6.776263578034403e-21,-0.00012494793918449432,-0.00039046231540851295,0.00020246193162165582,-0.00024295432376675308,6.776263578034403e-21,-8.530538366055347e-21,-0.0,4.049238850711845e-05,-0.0,1.6940658945086007e-21,-0.0,-1.677248667430286e-22,-2.4472273578371677e-38,-1.88079096131566e-37,1.912747376574787e-22,-6.586231701785358e-38,6.614054186926964e-22,0.000273323617875576,-9.110787505051121e-05,-9.110787505051121e-05,-1.0726061706239872e-21,-9.005114057410432e-22,-0.0,3.0369290470844135e-05,2.638698580979468e-22,9.85343058864261e-23,-0.0,-0.0,-0.0,4.323023709382821e-23,5.948039463216678e-38,1.114696304916823e-22,0.000273323617875576,-9.110787505051121e-05,-3.7596740167534586e-21,-9.110787505051121e-05,-9.560545845849008e-22,1.6940658945086007e-21,2.638698580979468e-22,3.0369290470844135e-05,4.816341347450764e-23,1.4443874042818647e-22,6.651213700748453e-22,1.3539402732038237e-23,1.6940658945086007e-21,8.470329472543003e-22,-3.2619522124278777e-22,0.0003123698406852782,-0.00010412328265374526,-1.0164395367051604e-20,-1.1770044216690096e-20,-0.00012494793918449432,-0.0,9.85343058864261e-23,4.816341347450764e-23,4.1649313061498106e-05,2.627581574449859e-22,-1.0315499237444214e-22,3.3881317890172014e-21,1.284357692653537e-22,4.440074499224506e-21,1.261302607920616e-20,0.00020246193162165582,-0.0,-0.00024295432376675308,-0.0,2.2279907850724064e-21,-1.677248667430286e-22,-0.0,1.4443874042818647e-22,2.627581574449859e-22,4.049238850711845e-05,-1.6940658945086007e-21,0.0,1.29395059467071e-21,0.0,4.745043025986058e-22,0.000273323617875576,-1.737476518847904e-21,-9.110787505051121e-05,-9.110787505051121e-05,-3.92680165899325e-21,-2.4472273578371677e-38,-0.0,6.651213700748453e-22,-1.0315499237444214e-22,-1.6940658945086007e-21,3.0369290470844135e-05,3.0113529385090187e-22,-9.58542891693683e-22,1.6940658945086007e-21,-3.2235936300304525e-22,0.0003123698406852782,-8.510947756469765e-21,-0.00010412328265374526,-1.1858461261560205e-20,-0.00012494793918449432,-1.88079096131566e-37,-0.0,1.3539402732038237e-23,3.3881317890172014e-21,0.0,3.0113529385090187e-22,4.1649313061498106e-05,3.6105075003916505e-23,4.271901572109086e-21,1.845574525014058e-20,0.00020246193162165582,-6.776263578034403e-21,-5.7550036947772036e-21,-0.00024295432376675308,-6.776263578034403e-21,1.912747376574787e-22,4.323023709382821e-23,1.6940658945086007e-21,1.284357692653537e-22,1.29395059467071e-21,-9.58542891693683e-22,3.6105075003916505e-23,4.049238850711845e-05,2.215316907903802e-21,4.027378016529818e-22,0.0003123698406852782,-1.3641285897617733e-20,-1.5761952421592085e-20,-0.00010412328265374526,-0.00012494793918449432,-6.586231701785358e-38,5.948039463216678e-38,8.470329472543003e-22,4.440074499224506e-21,0.0,1.6940658945086007e-21,4.271901572109086e-21,2.215316907903802e-21,4.1649313061498106e-05,1.8900719952080092e-20,0.00026030821027234197,-3.5187523319098474e-20,-4.8590970556800203e-20,-4.792393017213288e-20,-0.00039046231540851295,6.614054186926964e-22,1.114696304916823e-22,-3.2619522124278777e-22,1.261302607920616e-20,4.745043025986058e-22,-3.2235936300304525e-22,1.845574525014058e-20,4.027378016529818e-22,1.8900719952080092e-20,7.809246017131954e-05,7.0,7.0,7.0,7.0,0.020286686718463898,-0.003462099237367511,-0.003462099237367511,-0.003462099237367511,-0.003462099237367511,0.00017353880684822798,0.00023427738051395863,0.00023427738051395863,0.00023427738051395863,0.00017353880684822798,0.00023427738051395863,0.00023427738051395863,0.00017353880684822798,0.00023427738051395863,0.00017353880684822798,-0.003462099237367511,0.002056434750556946,0.00023427738051395863,0.00023427738051395863,0.00023427738051395863,-0.00020824656530749053,-7.809246017131954e-05,-7.809246017131954e-05,-7.809246017131954e-05,-0.0,-4.26386109786629e-22,-3.832296627418752e-22,-6.776263578034403e-21,-3.760953056892522e-22,3.504576796792549e-22,-0.003462099237367511,0.00023427738051395863,0.002056434750556946,0.00023427738051395863,0.00023427738051395863,-6.776263578034403e-21,-7.809246017131954e-05,-2.8696961381511995e-21,-3.3881317890172014e-21,-0.00020824656530749053,-7.809246017131954e-05,-7.809246017131954e-05,1.2988647058610321e-21,5.548947319343017e-23,1.5637531411598003e-21,-0.003462099237367511,0.00023427738051395863,0.00023427738051395863,0.002056434750556946,0.00023427738051395863,-9.687696996150976e-21,-3.659508826142466e-21,-7.809246017131954e-05,-4.714289315150453e-21,-0.0,-7.809246017131954e-05,-0.0,-0.00020824656530749053,-7.809246017131954e-05,2.175825899899714e-21,-0.003462099237367511,0.00023427738051395863,0.00023427738051395863,0.00023427738051395863,0.002056434750556946,-6.776263578034403e-21,-3.659508826142466e-21,-3.3540216959109345e-21,-7.809246017131954e-05,1.8496168451920924e-21,-3.479943131968521e-22,-7.809246017131954e-05,-0.0,-7.809246017131954e-05,-0.00020824656530749053,0.00017353880684822798,-0.00020824656530749053,-6.776263578034403e-21,-9.687696996150976e-21,-6.776263578034403e-21,3.470776209724136e-05,1.6940658945086007e-21,1.6940658945086007e-21,1.6940658945086007e-21,2.4342546751008768e-23,8.768909604100801e-39,1.4038299100006199e-38,9.037753966224856e-22,1.48726083835913e-38,-6.801773294981784e-23,0.00023427738051395863,-7.809246017131954e-05,-7.809246017131954e-05,-3.659508826142466e-21,-3.659508826142466e-21,1.6940658945086007e-21,2.6030820663436316e-05,9.534855990936198e-22,9.768599137467784e-22,-0.0,-0.0,-0.0,1.2293112311227045e-22,5.251863456012087e-39,1.1214295167328101e-22,0.00023427738051395863,-7.809246017131954e-05,-2.8696961381511995e-21,-7.809246017131954e-05,-3.3540216959109345e-21,1.6940658945086007e-21,9.534855990936198e-22,2.6030820663436316e-05,1.0416781783263136e-21,-5.753693327393872e-23,1.2263611437726676e-22,5.1071107439497975e-24,-0.0,-0.0,3.2871672992934897e-23,0.00023427738051395863,-7.809246017131954e-05,-3.3881317890172014e-21,-4.714289315150453e-21,-7.809246017131954e-05,1.6940658945086007e-21,9.768599137467784e-22,1.0416781783263136e-21,2.6030820663436316e-05,4.794750224474865e-24,1.9492593618108347e-23,1.2263611437726676e-22,1.7764334743300446e-22,1.2536510610367557e-22,-1.1446210176043492e-22,0.00017353880684822798,-0.0,-0.00020824656530749053,-0.0,1.8496168451920924e-21,2.4342546751008768e-23,-0.0,-5.753693327393872e-23,4.794750224474865e-24,3.470776209724136e-05,-0.0,0.0,-2.367247883178318e-22,2.938735877055719e-39,-2.9020291863843804e-22,0.00023427738051395863,-4.26386109786629e-22,-7.809246017131954e-05,-7.809246017131954e-05,-3.479943131968521e-22,8.768909604100801e-39,-0.0,1.2263611437726676e-22,1.9492593618108347e-23,-0.0,2.6030820663436316e-05,-1.6118370469213925e-23,-5.660128113147418e-23,-0.0,5.1980250700103466e-23,0.00023427738051395863,-3.832296627418752e-22,-7.809246017131954e-05,-0.0,-7.809246017131954e-05,1.4038299100006199e-38,-0.0,5.1071107439497975e-24,1.2263611437726676e-22,0.0,-1.6118370469213925e-23,2.6030820663436316e-05,1.3618960932051586e-23,-1.8496491064476723e-23,-5.660128113147418e-23,0.00017353880684822798,-6.776263578034403e-21,1.2988647058610321e-21,-0.00020824656530749053,-0.0,9.037753966224856e-22,1.2293112311227045e-22,-0.0,1.7764334743300446e-22,-2.367247883178318e-22,-5.660128113147418e-23,1.3618960932051586e-23,3.470776209724136e-05,1.6940658945086007e-21,-1.1330165076570881e-21,0.00023427738051395863,-3.760953056892522e-22,5.548947319343017e-23,-7.809246017131954e-05,-7.809246017131954e-05,1.48726083835913e-38,5.251863456012087e-39,-0.0,1.2536510610367557e-22,2.938735877055719e-39,-0.0,-1.8496491064476723e-23,1.6940658945086007e-21,2.6030820663436316e-05,1.6447419183366627e-21,0.00017353880684822798,3.504576796792549e-22,1.5637531411598003e-21,2.175825899899714e-21,-0.00020824656530749053,-6.801773294981784e-23,1.1214295167328101e-22,3.2871672992934897e-23,-1.1446210176043492e-22,-2.9020291863843804e-22,5.1980250700103466e-23,-5.660128113147418e-23,-1.1330165076570881e-21,1.6447419183366627e-21,3.470776209724136e-05,7.0,7.0,7.0,8.0,0.018077319487929344,-0.0030521138105541468,-0.0030521138105541468,-0.0030521138105541468,-0.00273323617875576,0.00015184645599219948,0.00020499271340668201,0.00020499271340668201,0.00018221575010102242,0.00015184645599219948,0.00020499271340668201,0.00018221575010102242,0.00015184645599219948,0.00018221575010102242,0.00012147716188337654,-0.0030521138105541468,0.0018069727811962366,0.00020499271340668201,0.00020499271340668201,0.00018221575010102242,-0.00018221575010102242,-6.8330904468894e-05,-6.8330904468894e-05,-6.073858094168827e-05,-6.776263578034403e-21,-8.680852592992718e-23,8.860196497345438e-21,-0.0,9.24977029308307e-21,1.9929406285495012e-20,-0.0030521138105541468,0.00020499271340668201,0.0018069727811962366,0.00020499271340668201,0.00018221575010102242,-6.776263578034403e-21,-6.8330904468894e-05,-2.974136980112039e-21,8.470329472543003e-21,-0.00018221575010102242,-6.8330904468894e-05,-6.073858094168827e-05,-2.5737781305137142e-21,7.3291336511238e-21,2.036075350996014e-20,-0.0030521138105541468,0.00020499271340668201,0.00020499271340668201,0.0018069727811962366,0.00018221575010102242,-3.651850539231031e-21,-2.8688114022470016e-21,-6.8330904468894e-05,9.240989577010364e-21,-6.776263578034403e-21,-6.8330904468894e-05,6.776263578034403e-21,-0.00018221575010102242,-6.073858094168827e-05,2.0758595072855468e-20,-0.00273323617875576,0.00018221575010102242,0.00018221575010102242,0.00018221575010102242,0.0013883104547858238,-3.3881317890172014e-21,-6.3969460342937e-22,-6.3969460342937e-22,-5.206164132687263e-05,2.7710070893096053e-22,3.93097372343991e-23,-5.206164132687263e-05,-0.0,-5.206164132687263e-05,-0.00012147716188337654,0.00015184645599219948,-0.00018221575010102242,-6.776263578034403e-21,-3.651850539231031e-21,-3.3881317890172014e-21,3.0369290470844135e-05,-0.0,-0.0,1.6940658945086007e-21,9.799012565263312e-22,3.0284428008464006e-39,-1.0279783162362883e-37,7.38383803732258e-22,-2.0250514432574013e-38,3.679753142672099e-22,0.00020499271340668201,-6.8330904468894e-05,-6.8330904468894e-05,-2.8688114022470016e-21,-6.3969460342937e-22,-0.0,2.2776968762627803e-05,6.34553502246736e-22,1.5910996292171236e-22,-0.0,-0.0,-0.0,1.4848476383485434e-22,-6.124684905551922e-38,2.1444399580693416e-23,0.00020499271340668201,-6.8330904468894e-05,-2.974136980112039e-21,-6.8330904468894e-05,-6.3969460342937e-22,-0.0,6.34553502246736e-22,2.2776968762627803e-05,1.4178574440594303e-22,1.3598798278402861e-22,7.339563124353742e-23,-9.609214871832108e-24,-1.6940658945086007e-21,-0.0,3.211613672779404e-23,0.00018221575010102242,-6.073858094168827e-05,8.470329472543003e-21,9.240989577010364e-21,-5.206164132687263e-05,1.6940658945086007e-21,1.5910996292171236e-22,1.4178574440594303e-22,1.735388104862068e-05,-3.0245484239187905e-25,-3.8108106438243006e-23,-2.5232482195205213e-21,-4.6500377934887773e-23,-2.6427915700089893e-21,-6.4234080388823146e-21,0.00015184645599219948,-6.776263578034403e-21,-0.00018221575010102242,-6.776263578034403e-21,2.7710070893096053e-22,9.799012565263312e-22,-0.0,1.3598798278402861e-22,-3.0245484239187905e-25,3.0369290470844135e-05,-0.0,0.0,3.5686686530070075e-22,0.0,9.133865434146746e-24,0.00020499271340668201,-8.680852592992718e-23,-6.8330904468894e-05,-6.8330904468894e-05,3.93097372343991e-23,3.0284428008464006e-39,-0.0,7.339563124353742e-23,-3.8108106438243006e-23,-0.0,2.2776968762627803e-05,2.4941926422239313e-22,-3.387490842687153e-23,-0.0,-8.891891817801064e-23,0.00018221575010102242,8.860196497345438e-21,-6.073858094168827e-05,6.776263578034403e-21,-5.206164132687263e-05,-1.0279783162362883e-37,-0.0,-9.609214871832108e-24,-2.5232482195205213e-21,0.0,2.4941926422239313e-22,1.735388104862068e-05,-2.5624571939737747e-23,-2.0940382148851418e-21,-5.7764857529997904e-21,0.00015184645599219948,-0.0,-2.5737781305137142e-21,-0.00018221575010102242,-0.0,7.38383803732258e-22,1.4848476383485434e-22,-1.6940658945086007e-21,-4.6500377934887773e-23,3.5686686530070075e-22,-3.387490842687153e-23,-2.5624571939737747e-23,3.0369290470844135e-05,-0.0,-7.317677598488015e-23,0.00018221575010102242,9.24977029308307e-21,7.3291336511238e-21,-6.073858094168827e-05,-5.206164132687263e-05,-2.0250514432574013e-38,-6.124684905551922e-38,-0.0,-2.6427915700089893e-21,0.0,-0.0,-2.0940382148851418e-21,-0.0,1.735388104862068e-05,-5.746439467380439e-21,0.00012147716188337654,1.9929406285495012e-20,2.036075350996014e-20,2.0758595072855468e-20,-0.00012147716188337654,3.679753142672099e-22,2.1444399580693416e-23,3.211613672779404e-23,-6.4234080388823146e-21,9.133865434146746e-24,-8.891891817801064e-23,-5.7764857529997904e-21,-7.317677598488015e-23,-5.746439467380439e-21,1.735388104862068e-05,7.0,7.0,8.0,3.0,0.0358382947742939,-0.006643282249569893,-0.006643282249569893,-0.0059523810632526875,-0.01254251692444086,0.00035430840216577053,0.00047831633128225803,0.00042517005931586027,0.0009566326625645161,0.00035430840216577053,0.00042517005931586027,0.0009566326625645161,0.00028344671591185033,0.0008503401186317205,0.0012755101779475808,-0.006643282249569893,0.004056830890476704,0.00047831633128225803,0.00042517005931586027,0.0009566326625645161,-0.00042517005931586027,-0.0001594387722434476,-0.00014172335795592517,-0.0003188775444868952,5.421010862427522e-20,1.7973400402206997e-20,1.0594751590368802e-19,5.421010862427522e-20,9.451534346327673e-20,8.49660486470075e-19,-0.006643282249569893,0.00047831633128225803,0.004056830890476704,0.00042517005931586027,0.0009566326625645161,-1.3552527156068805e-20,-0.0001594387722434476,-5.2026267796604266e-21,5.757772245669199e-20,-0.00042517005931586027,-0.00014172335795592517,-0.0003188775444868952,3.6965567432826814e-20,9.486769009248164e-20,8.49660486470075e-19,-0.0059523810632526875,0.00042517005931586027,0.00042517005931586027,0.003117913845926523,0.0008503401186317205,-1.0020007113721352e-20,-2.310242264763441e-20,-0.00012147716188337654,4.6345886052057646e-20,-1.3552527156068805e-20,-0.00012147716188337654,4.685620479121458e-20,-0.00028344671591185033,-0.00024295432376675308,6.473603878767961e-19,-0.01254251692444086,0.0009566326625645161,0.0009566326625645161,0.0008503401186317205,0.0252976194024086,-0.0,-4.8503111697284854e-20,-4.8283727889199306e-20,-0.0009566326625645161,1.9910108097180665e-20,-4.573977915173222e-20,-0.0009566326625645161,-0.0,-0.0008503401186317205,-0.0076530613005161285,0.00035430840216577053,-0.00042517005931586027,-1.3552527156068805e-20,-1.0020007113721352e-20,-0.0,7.086167897796258e-05,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,9.114738712638758e-22,2.1565492350977035e-37,-4.2044684679944215e-37,-1.1411684574121227e-21,1.4266847908784832e-36,-3.363574774395537e-36,0.00047831633128225803,-0.0001594387722434476,-0.0001594387722434476,-2.310242264763441e-20,-4.8503111697284854e-20,3.3881317890172014e-21,5.3146257414482534e-05,7.173343391596101e-21,1.6209945040297708e-20,-2.0328790734103208e-20,-0.0,-0.0,2.137772411035105e-22,-3.6206976900209335e-23,-4.80556239022278e-35,0.00042517005931586027,-0.00014172335795592517,-5.2026267796604266e-21,-0.00012147716188337654,-4.8283727889199306e-20,3.3881317890172014e-21,7.173343391596101e-21,4.049238850711845e-05,1.602027834195298e-20,2.433381690068723e-22,-5.135257200073887e-21,7.429823958040406e-23,-1.3552527156068805e-20,-0.0,-4.1331624023969017e-35,0.0009566326625645161,-0.0003188775444868952,5.757772245669199e-20,4.6345886052057646e-20,-0.0009566326625645161,-0.0,1.6209945040297708e-20,1.602027834195298e-20,0.0003188775444868952,-6.018531076210112e-36,-7.52316384526264e-36,-1.0620756080875938e-19,-6.018531076210112e-36,-9.440671784674232e-20,-8.49660486470075e-19,0.00035430840216577053,5.421010862427522e-20,-0.00042517005931586027,-1.3552527156068805e-20,1.9910108097180665e-20,9.114738712638758e-22,-2.0328790734103208e-20,2.433381690068723e-22,-6.018531076210112e-36,7.086167897796258e-05,-0.0,0.0,2.2139242717943867e-21,-9.655194260781639e-23,0.0,0.00042517005931586027,1.7973400402206997e-20,-0.00014172335795592517,-0.00012147716188337654,-4.573977915173222e-20,2.1565492350977035e-37,-0.0,-5.135257200073887e-21,-7.52316384526264e-36,-0.0,4.049238850711845e-05,1.5246593050577406e-20,-1.4905933578699073e-20,-0.0,-4.348740489909276e-35,0.0009566326625645161,1.0594751590368802e-19,-0.0003188775444868952,4.685620479121458e-20,-0.0009566326625645161,-4.2044684679944215e-37,-0.0,7.429823958040406e-23,-1.0620756080875938e-19,0.0,1.5246593050577406e-20,0.0003188775444868952,1.733625590209428e-22,-9.413147996026384e-20,-8.49660486470075e-19,0.00028344671591185033,5.421010862427522e-20,3.6965567432826814e-20,-0.00028344671591185033,-0.0,-1.1411684574121227e-21,2.137772411035105e-22,-1.3552527156068805e-20,-6.018531076210112e-36,2.2139242717943867e-21,-1.4905933578699073e-20,1.733625590209428e-22,4.049238850711845e-05,-0.0,-2.8393522923248358e-36,0.0008503401186317205,9.451534346327673e-20,9.486769009248164e-20,-0.00024295432376675308,-0.0008503401186317205,1.4266847908784832e-36,-3.6206976900209335e-23,-0.0,-9.440671784674232e-20,-9.655194260781639e-23,-0.0,-9.413147996026384e-20,-0.0,0.00024295432376675308,-6.473603878767961e-19,0.0012755101779475808,8.49660486470075e-19,8.49660486470075e-19,6.473603878767961e-19,-0.0076530613005161285,-3.363574774395537e-36,-4.80556239022278e-35,-4.1331624023969017e-35,-8.49660486470075e-19,0.0,-4.348740489909276e-35,-8.49660486470075e-19,-2.8393522923248358e-36,-6.473603878767961e-19,0.0038265306502580643,7.0,7.0,8.0,4.0,0.028696322813630104,-0.0051259566098451614,-0.0051259566098451614,-0.004591836594045162,-0.007908163592219353,0.0002657313016243279,0.0003587372484616935,0.0003188775444868952,0.0005739795742556453,0.0002657313016243279,0.0003188775444868952,0.0005739795742556453,0.00021258502965793014,0.0005102040595375001,0.0006377550889737904,-0.0051259566098451614,0.003090454963967204,0.0003587372484616935,0.0003188775444868952,0.0005739795742556453,-0.0003188775444868952,-0.00011957908282056451,-0.00010629251482896507,-0.00019132652960252017,-2.528145451864262e-19,1.5082652315517932e-19,1.1924708088868045e-19,-1.0965961814949044e-19,2.5389515325915016e-19,-1.1319015425083748e-18,-0.0051259566098451614,0.0003587372484616935,0.003090454963967204,0.0003188775444868952,0.0005739795742556453,2.439454888092385e-19,-0.00011957908282056451,-1.10594448563949e-19,-3.357642687120321e-19,-0.0003188775444868952,-0.00010629251482896507,-0.00019132652960252017,-1.0273603887423918e-19,2.541098841762901e-19,-1.1319015425083748e-18,-0.004591836594045162,0.0003188775444868952,0.0003188775444868952,0.002374878618866205,0.0005102040595375001,3.928082464161257e-19,-9.672663634752679e-20,-9.110787505051121e-05,-3.1289326761221788e-19,2.642742795433417e-19,-9.110787505051121e-05,-3.0464221855018385e-19,-0.00021258502965793014,-0.00014577258843928576,-2.5618629362943603e-18,-0.007908163592219353,0.0005739795742556453,0.0005739795742556453,0.0005102040595375001,0.009736394509673119,3.529004266250162e-19,-4.524431864432827e-19,-4.275518742454901e-19,-0.00038265305920504034,9.271161151411949e-20,-4.142181363614416e-19,-0.00038265305920504034,-1.260385025514399e-18,-0.0003401360590942204,-0.0019132653251290321,0.0002657313016243279,-0.0003188775444868952,2.439454888092385e-19,3.928082464161257e-19,3.529004266250162e-19,5.3146257414482534e-05,-1.3552527156068805e-20,-2.0328790734103208e-20,-2.0328790734103208e-20,-1.0699528716791561e-20,-2.3039734635665108e-20,-2.832201470778784e-20,-2.2971180426812642e-20,-3.686357541706417e-20,-1.180083973084279e-20,0.0003587372484616935,-0.00011957908282056451,-0.00011957908282056451,-9.672663634752679e-20,-4.524431864432827e-19,-1.3552527156068805e-20,3.98596930608619e-05,-8.338553098225092e-22,1.4019286434921726e-20,5.930028730824245e-20,6.776263578034403e-21,3.218725199566341e-20,1.827380590505726e-20,-5.922920147435118e-21,1.3275945101094922e-19,0.0003188775444868952,-0.00010629251482896507,-1.10594448563949e-19,-9.110787505051121e-05,-4.275518742454901e-19,-2.0328790734103208e-20,-8.338553098225092e-22,3.0369290470844135e-05,2.2010810810941505e-20,2.4303737697480025e-20,7.101761067583741e-22,8.029452278228278e-23,4.3493479725464974e-20,1.0164395367051604e-20,1.2475173522067357e-19,0.0005739795742556453,-0.00019132652960252017,-3.357642687120321e-19,-3.1289326761221788e-19,-0.00038265305920504034,-2.0328790734103208e-20,1.4019286434921726e-20,2.2010810810941505e-20,0.00012755101488437504,5.664402941557569e-20,1.5648180798146291e-34,1.1711175452705316e-20,4.24830236772689e-20,4.0824743845569586e-21,2.9240147059865344e-19,0.0002657313016243279,-2.528145451864262e-19,-0.0003188775444868952,2.642742795433417e-19,9.271161151411949e-20,-1.0699528716791561e-20,5.930028730824245e-20,2.4303737697480025e-20,5.664402941557569e-20,5.3146257414482534e-05,-2.371692252312041e-20,-2.0328790734103208e-20,-2.3846311665499603e-20,-3.6474021816165713e-20,-1.180083973084279e-20,0.0003188775444868952,1.5082652315517932e-19,-0.00010629251482896507,-9.110787505051121e-05,-4.142181363614416e-19,-2.3039734635665108e-20,6.776263578034403e-21,7.101761067583741e-22,1.5648180798146291e-34,-2.371692252312041e-20,3.0369290470844135e-05,1.8634724839594607e-20,4.306026326668593e-20,9.317362419797304e-21,1.2475173522067357e-19,0.0005739795742556453,1.1924708088868045e-19,-0.00019132652960252017,-3.0464221855018385e-19,-0.00038265305920504034,-2.832201470778784e-20,3.218725199566341e-20,8.029452278228278e-23,1.1711175452705316e-20,-2.0328790734103208e-20,1.8634724839594607e-20,0.00012755101488437504,4.267037685483789e-20,4.2276595262410035e-21,2.9240147059865344e-19,0.00021258502965793014,-1.0965961814949044e-19,-1.0273603887423918e-19,-0.00021258502965793014,-1.260385025514399e-18,-2.2971180426812642e-20,1.827380590505726e-20,4.3493479725464974e-20,4.24830236772689e-20,-2.3846311665499603e-20,4.306026326668593e-20,4.267037685483789e-20,3.0369290470844135e-05,7.156973454961934e-20,2.5961846761619285e-19,0.0005102040595375001,2.5389515325915016e-19,2.541098841762901e-19,-0.00014577258843928576,-0.0003401360590942204,-3.686357541706417e-20,-5.922920147435118e-21,1.0164395367051604e-20,4.0824743845569586e-21,-3.6474021816165713e-20,9.317362419797304e-21,4.2276595262410035e-21,7.156973454961934e-20,9.718172805150971e-05,3.331317728749306e-20,0.0006377550889737904,-1.1319015425083748e-18,-1.1319015425083748e-18,-2.5618629362943603e-18,-0.0019132653251290321,-1.180083973084279e-20,1.3275945101094922e-19,1.2475173522067357e-19,2.9240147059865344e-19,-1.180083973084279e-20,1.2475173522067357e-19,2.9240147059865344e-19,2.5961846761619285e-19,3.331317728749306e-20,0.0006377550889737904,7.0,7.0,8.0,5.0,0.023975037038326263,-0.004177296068519354,-0.004177296068519354,-0.0037414967082440853,-0.005454324651509523,0.00021258502965793014,0.00028698978712782264,0.00025510202976875007,0.00038265305920504034,0.00021258502965793014,0.00025510202976875007,0.00038265305920504034,0.0001700680295471102,0.0003401360590942204,0.00036443150020204484,-0.004177296068519354,0.0024978742003440857,0.00028698978712782264,0.00025510202976875007,0.00038265305920504034,-0.00025510202976875007,-9.566326480126008e-05,-8.50340147735551e-05,-0.00012755101488437504,-1.59965912496307e-19,-3.429786795207782e-19,-1.0514670167316012e-18,-2.846030702774449e-19,-9.997921132872244e-19,-2.570248893344423e-18,-0.004177296068519354,0.00028698978712782264,0.0024978742003440857,0.00025510202976875007,0.00038265305920504034,-3.1170812458958252e-19,-9.566326480126008e-05,-4.1881989720543893e-19,-1.0782540200982122e-18,-0.00025510202976875007,-8.50340147735551e-05,-0.00012755101488437504,-2.788293496018248e-19,-9.978048118655658e-19,-2.570248893344423e-18,-0.0037414967082440853,0.00025510202976875007,0.00025510202976875007,0.0019193391781300306,0.0003401360590942204,-3.532344783455169e-19,-9.825365214797802e-21,-7.288629421964288e-05,-1.1032708569539597e-18,-3.5914196963582334e-19,-7.288629421964288e-05,-1.1130012926921506e-18,-0.0001700680295471102,-9.718172805150971e-05,-1.577697091958875e-18,-0.005454324651509523,0.00038265305920504034,0.00038265305920504034,0.0003401360590942204,0.004913751035928726,-1.762185045132955e-18,-6.817174380167627e-19,-1.1967871407206828e-18,-0.00019132652960252017,-1.794034807438697e-18,-1.1843215288895087e-18,-0.00019132652960252017,-7.521652571618187e-19,-0.0001700680295471102,-0.0007288630004040897,0.00021258502965793014,-0.00025510202976875007,-3.1170812458958252e-19,-3.532344783455169e-19,-1.762185045132955e-18,4.251700738677755e-05,3.3881317890172014e-21,-1.3552527156068805e-20,5.082197683525802e-20,7.992423450259791e-21,1.8431787708532086e-20,8.024570887726127e-20,1.8398624551434672e-20,7.912182245639459e-20,2.4276013899145e-19,0.00028698978712782264,-9.566326480126008e-05,-9.566326480126008e-05,-9.825365214797802e-21,-6.817174380167627e-19,3.3881317890172014e-21,3.188775372109376e-05,5.6602212365995576e-21,4.2066195734376063e-20,-5.895987663678274e-20,-0.0,3.8116482626443515e-20,-1.4850567407620573e-20,3.241234528868014e-20,6.06900347478625e-20,0.00025510202976875007,-8.50340147735551e-05,-4.1881989720543893e-19,-7.288629421964288e-05,-1.1967871407206828e-18,-1.3552527156068805e-20,5.6602212365995576e-21,2.4295432012877427e-05,6.964670764649547e-20,2.7002259349569424e-20,2.593653729669715e-20,6.046805307566565e-20,1.9415324843903243e-20,4.743384504624082e-20,1.4257341906631098e-19,0.00038265305920504034,-0.00012755101488437504,-1.0782540200982122e-18,-1.1032708569539597e-18,-0.00019132652960252017,5.082197683525802e-20,4.2066195734376063e-20,6.964670764649547e-20,6.377550744218752e-05,8.49660473545378e-20,5.664402941557569e-20,1.0076101591479811e-19,6.608470637012875e-20,1.1202151606636197e-19,1.9607549986033202e-19,0.00021258502965793014,-1.59965912496307e-19,-0.00025510202976875007,-3.5914196963582334e-19,-1.794034807438697e-18,7.992423450259791e-21,-5.895987663678274e-20,2.7002259349569424e-20,8.49660473545378e-20,4.251700738677755e-05,-1.1858461261560205e-20,5.421010862427522e-20,1.797118058548503e-20,7.924002527345871e-20,2.4276013899145e-19,0.00025510202976875007,-3.429786795207782e-19,-8.50340147735551e-05,-7.288629421964288e-05,-1.1843215288895087e-18,1.8431787708532086e-20,-0.0,2.593653729669715e-20,5.664402941557569e-20,-1.1858461261560205e-20,2.4295432012877427e-05,7.030373462210693e-20,1.8855489974679634e-20,4.658681209898652e-20,1.4257341906631098e-19,0.00038265305920504034,-1.0514670167316012e-18,-0.00012755101488437504,-1.1130012926921506e-18,-0.00019132652960252017,8.024570887726127e-20,3.8116482626443515e-20,6.046805307566565e-20,1.0076101591479811e-19,5.421010862427522e-20,7.030373462210693e-20,6.377550744218752e-05,6.556674913500277e-20,1.12125986392788e-19,1.9607549986033202e-19,0.0001700680295471102,-2.846030702774449e-19,-2.788293496018248e-19,-0.0001700680295471102,-7.521652571618187e-19,1.8398624551434672e-20,-1.4850567407620573e-20,1.9415324843903243e-20,6.608470637012875e-20,1.797118058548503e-20,1.8855489974679634e-20,6.556674913500277e-20,2.4295432012877427e-05,1.6956640333014473e-20,5.394669683561683e-20,0.0003401360590942204,-9.997921132872244e-19,-9.978048118655658e-19,-9.718172805150971e-05,-0.0001700680295471102,7.912182245639459e-20,3.241234528868014e-20,4.743384504624082e-20,1.1202151606636197e-19,7.924002527345871e-20,4.658681209898652e-20,1.12125986392788e-19,1.6956640333014473e-20,4.8590864025754854e-05,1.5690153144422482e-19,0.00036443150020204484,-2.570248893344423e-18,-2.570248893344423e-18,-1.577697091958875e-18,-0.0007288630004040897,2.4276013899145e-19,6.06900347478625e-20,1.4257341906631098e-19,1.9607549986033202e-19,2.4276013899145e-19,1.4257341906631098e-19,1.9607549986033202e-19,5.394669683561683e-20,1.5690153144422482e-19,0.00018221575010102242,7.0,7.0,8.0,6.0,0.02060682885348797,-0.0035266338381916285,-0.0035266338381916285,-0.0031584061216562986,-0.003993561491370201,0.00017715420108288527,0.00023915816564112902,0.00021258502965793014,0.000273323617875576,0.00017715420108288527,0.00021258502965793014,0.000273323617875576,0.00014172335795592517,0.00024295432376675308,0.0002277696767123416,-0.0035266338381916285,0.002096746349707246,0.00023915816564112902,0.00021258502965793014,0.000273323617875576,-0.00021258502965793014,-7.97193861217238e-05,-7.086167897796258e-05,-9.110787505051121e-05,2.710505431213761e-20,7.863015728628558e-21,1.974830509381443e-36,3.3881317890172014e-20,-2.964615315390051e-21,0.0,-0.0035266338381916285,0.00023915816564112902,0.002096746349707246,0.00021258502965793014,0.000273323617875576,-0.0,-7.97193861217238e-05,-1.6415704198186356e-21,-1.3563952588279694e-20,-0.00021258502965793014,-7.086167897796258e-05,-9.110787505051121e-05,2.195810712745966e-20,-2.964615315390051e-21,-0.0,-0.0031584061216562986,0.00021258502965793014,0.00021258502965793014,0.0016110185533761978,0.00024295432376675308,-3.4668330967608636e-21,-9.25590225404976e-21,-6.073858094168827e-05,-1.5115722414796433e-20,6.776263578034403e-21,-6.073858094168827e-05,-1.3588905331562666e-20,-0.00014172335795592517,-6.941552419448271e-05,-0.0,-0.003993561491370201,0.000273323617875576,0.000273323617875576,0.00024295432376675308,0.002850157907232642,-6.776263578034403e-21,-1.3563952588279694e-20,-1.8080337730186485e-20,-0.00010932944860542193,-5.155070356787163e-21,-1.6553520646952717e-20,-0.00010932944860542193,6.776263578034403e-21,-9.718172805150971e-05,-0.00034165452234447,0.00017715420108288527,-0.00021258502965793014,-0.0,-3.4668330967608636e-21,-6.776263578034403e-21,3.543083948898129e-05,1.6940658945086007e-21,1.6940658945086007e-21,1.6940658945086007e-21,6.002408549035573e-22,-4.3090844227183793e-38,-0.0,-5.78280027531261e-22,-7.233811519026243e-38,-0.0,0.00023915816564112902,-7.97193861217238e-05,-7.97193861217238e-05,-9.25590225404976e-21,-1.3563952588279694e-20,1.6940658945086007e-21,2.6573128707241267e-05,3.4860351576407444e-21,4.521317529426565e-21,-1.0164395367051604e-20,-0.0,-0.0,-1.5878153172787627e-22,1.5300697217171132e-37,-0.0,0.00021258502965793014,-7.086167897796258e-05,-1.6415704198186356e-21,-6.073858094168827e-05,-1.8080337730186485e-20,1.6940658945086007e-21,3.4860351576407444e-21,2.0246194253559224e-05,5.038574003633217e-21,-1.4669533700099997e-22,-2.246575893615532e-21,-5.64237288394698e-37,-8.470329472543003e-21,8.470329472543003e-22,-0.0,0.000273323617875576,-9.110787505051121e-05,-1.3563952588279694e-20,-1.5115722414796433e-20,-0.00010932944860542193,1.6940658945086007e-21,4.521317529426565e-21,5.038574003633217e-21,3.644314710982144e-05,-1.504632769052528e-36,-5.64237288394698e-37,-0.0,-1.504632769052528e-36,1.88079096131566e-37,-0.0,0.00017715420108288527,2.710505431213761e-20,-0.00021258502965793014,6.776263578034403e-21,-5.155070356787163e-21,6.002408549035573e-22,-1.0164395367051604e-20,-1.4669533700099997e-22,-1.504632769052528e-36,3.543083948898129e-05,-0.0,0.0,1.515513186089381e-23,5.787049327324871e-38,-0.0,0.00021258502965793014,7.863015728628558e-21,-7.086167897796258e-05,-6.073858094168827e-05,-1.6553520646952717e-20,-4.3090844227183793e-38,-0.0,-2.246575893615532e-21,-5.64237288394698e-37,-0.0,2.0246194253559224e-05,4.529635379785411e-21,-6.1657917651699806e-21,8.470329472543003e-22,-0.0,0.000273323617875576,1.974830509381443e-36,-9.110787505051121e-05,-1.3588905331562666e-20,-0.00010932944860542193,-0.0,-0.0,-5.64237288394698e-37,-0.0,0.0,4.529635379785411e-21,3.644314710982144e-05,-1.504632769052528e-36,9.4039548065783e-38,-0.0,0.00014172335795592517,3.3881317890172014e-20,2.195810712745966e-20,-0.00014172335795592517,6.776263578034403e-21,-5.78280027531261e-22,-1.5878153172787627e-22,-8.470329472543003e-21,-1.504632769052528e-36,1.515513186089381e-23,-6.1657917651699806e-21,-1.504632769052528e-36,2.0246194253559224e-05,-6.712336410733405e-22,-0.0,0.00024295432376675308,-2.964615315390051e-21,-2.964615315390051e-21,-6.941552419448271e-05,-9.718172805150971e-05,-7.233811519026243e-38,1.5300697217171132e-37,8.470329472543003e-22,1.88079096131566e-37,5.787049327324871e-38,8.470329472543003e-22,9.4039548065783e-38,-6.712336410733405e-22,2.7766209313995205e-05,-0.0,0.0002277696767123416,0.0,-0.0,-0.0,-0.00034165452234447,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,6.8330904468894e-05,7.0,7.0,8.0,7.0,0.018077319487929344,-0.0030521138105541468,-0.0030521138105541468,-0.00273323617875576,-0.0030521138105541468,0.00015184645599219948,0.00020499271340668201,0.00018221575010102242,0.00020499271340668201,0.00015184645599219948,0.00018221575010102242,0.00020499271340668201,0.00012147716188337654,0.00018221575010102242,0.00015184645599219948,-0.0030521138105541468,0.0018069727811962366,0.00020499271340668201,0.00018221575010102242,0.00020499271340668201,-0.00018221575010102242,-6.8330904468894e-05,-6.073858094168827e-05,-6.8330904468894e-05,-6.776263578034403e-21,1.0127160122583214e-20,-2.259534417042289e-22,2.0328790734103208e-20,1.8073335775548194e-20,-2.851246536978929e-21,-0.0030521138105541468,0.00020499271340668201,0.0018069727811962366,0.00018221575010102242,0.00020499271340668201,-6.776263578034403e-21,-6.8330904468894e-05,8.959045388339092e-21,-5.082197683525802e-21,-0.00018221575010102242,-6.073858094168827e-05,-6.8330904468894e-05,2.3702475942969142e-20,1.673041451341689e-20,-4.430633815807604e-21,-0.00273323617875576,0.00018221575010102242,0.00018221575010102242,0.0013883104547858238,0.00018221575010102242,-3.646693585099646e-21,-8.896388072525334e-22,-5.206164132687263e-05,1.4498560657558954e-21,-0.0,-5.206164132687263e-05,1.6940658945086007e-21,-0.00012147716188337654,-5.206164132687263e-05,3.920654188390075e-20,-0.0030521138105541468,0.00020499271340668201,0.00020499271340668201,0.00018221575010102242,0.0018069727811962366,-0.0,-3.701958781982278e-21,-9.322911961602225e-21,-6.8330904468894e-05,1.3095759475845444e-21,-1.1843451649292775e-20,-6.8330904468894e-05,6.776263578034403e-21,-6.073858094168827e-05,-0.00018221575010102242,0.00015184645599219948,-0.00018221575010102242,-6.776263578034403e-21,-3.646693585099646e-21,-0.0,3.0369290470844135e-05,-0.0,1.6940658945086007e-21,1.6940658945086007e-21,8.057652982739098e-22,4.0256754516846923e-38,3.5449235797379914e-39,5.04593855660887e-22,-1.0245081407192343e-37,7.806717969618977e-22,0.00020499271340668201,-6.8330904468894e-05,-6.8330904468894e-05,-8.896388072525334e-22,-3.701958781982278e-21,-0.0,2.2776968762627803e-05,1.9152723625602185e-22,7.382188118962092e-22,-0.0,-0.0,-0.0,4.1611308345141063e-23,-4.13186730666163e-37,2.2881570674740936e-22,0.00018221575010102242,-6.073858094168827e-05,8.959045388339092e-21,-5.206164132687263e-05,-9.322911961602225e-21,1.6940658945086007e-21,1.9152723625602185e-22,1.735388104862068e-05,4.576440554641414e-21,8.614362347190897e-23,-2.8852865539932634e-21,1.6475832336007833e-24,-6.776263578034403e-21,-8.470329472543003e-22,-2.225748703540249e-22,0.00020499271340668201,-6.8330904468894e-05,-5.082197683525802e-21,1.4498560657558954e-21,-6.8330904468894e-05,1.6940658945086007e-21,7.382188118962092e-22,4.576440554641414e-21,2.2776968762627803e-05,4.1242885058853884e-22,-9.552334056261147e-24,7.339563124353742e-23,-5.5207373378279515e-24,-5.036240288018309e-21,-7.101850429747084e-22,0.00015184645599219948,-6.776263578034403e-21,-0.00018221575010102242,-0.0,1.3095759475845444e-21,8.057652982739098e-22,-0.0,8.614362347190897e-23,4.1242885058853884e-22,3.0369290470844135e-05,1.6940658945086007e-21,1.6940658945086007e-21,-2.686043109502702e-22,-7.52316384526264e-37,-1.7649708836150764e-22,0.00018221575010102242,1.0127160122583214e-20,-6.073858094168827e-05,-5.206164132687263e-05,-1.1843451649292775e-20,4.0256754516846923e-38,-0.0,-2.8852865539932634e-21,-9.552334056261147e-24,1.6940658945086007e-21,1.735388104862068e-05,4.5066633463285916e-21,-6.31226129862547e-21,-4.235164736271502e-22,-2.5472891342603662e-23,0.00020499271340668201,-2.259534417042289e-22,-6.8330904468894e-05,1.6940658945086007e-21,-6.8330904468894e-05,3.5449235797379914e-39,-0.0,1.6475832336007833e-24,7.339563124353742e-23,1.6940658945086007e-21,4.5066633463285916e-21,2.2776968762627803e-05,3.844360977009441e-24,-5.08270215060836e-21,1.660190970304511e-21,0.00012147716188337654,2.0328790734103208e-20,2.3702475942969142e-20,-0.00012147716188337654,6.776263578034403e-21,5.04593855660887e-22,4.1611308345141063e-23,-6.776263578034403e-21,-5.5207373378279515e-24,-2.686043109502702e-22,-6.31226129862547e-21,3.844360977009441e-24,1.735388104862068e-05,-2.0376736109578956e-21,-2.180914141090811e-22,0.00018221575010102242,1.8073335775548194e-20,1.673041451341689e-20,-5.206164132687263e-05,-6.073858094168827e-05,-1.0245081407192343e-37,-4.13186730666163e-37,-8.470329472543003e-22,-5.036240288018309e-21,-7.52316384526264e-37,-4.235164736271502e-22,-5.08270215060836e-21,-2.0376736109578956e-21,1.735388104862068e-05,-1.2270377819566006e-20,0.00015184645599219948,-2.851246536978929e-21,-4.430633815807604e-21,3.920654188390075e-20,-0.00018221575010102242,7.806717969618977e-22,2.2881570674740936e-22,-2.225748703540249e-22,-7.101850429747084e-22,-1.7649708836150764e-22,-2.5472891342603662e-23,1.660190970304511e-21,-2.180914141090811e-22,-1.2270377819566006e-20,3.0369290470844135e-05,7.0,7.0,8.0,8.0,0.01610553078353405,-0.002690529450774193,-0.002690529450774193,-0.002409297041594982,-0.002409297041594982,0.00013286565081216395,0.00017936862423084676,0.0001594387722434476,0.0001594387722434476,0.00013286565081216395,0.0001594387722434476,0.0001594387722434476,0.00010629251482896507,0.00014172335795592517,0.00010629251482896507,-0.002690529450774193,0.0015877444529905915,0.00017936862423084676,0.0001594387722434476,0.0001594387722434476,-0.0001594387722434476,-5.9789541410282254e-05,-5.3146257414482534e-05,-5.3146257414482534e-05,-1.439379827336879e-19,7.988142629031116e-20,7.888567531620777e-20,-5.188699126096565e-20,1.2474015469209783e-19,-5.3501350548636524e-20,-0.002690529450774193,0.00017936862423084676,0.0015877444529905915,0.0001594387722434476,0.0001594387722434476,1.3552527156068805e-19,-5.9789541410282254e-05,-4.788571830524205e-20,-5.082197683525802e-20,-0.0001594387722434476,-5.3146257414482534e-05,-5.3146257414482534e-05,-4.8355944634084307e-20,1.260043839361115e-19,-5.233023405349763e-20,-0.002409297041594982,0.0001594387722434476,0.0001594387722434476,0.0012198331532999873,0.00014172335795592517,2.1844069294026715e-19,-3.8203876196864303e-20,-4.5553937525255606e-05,-3.5856537951243413e-20,1.5246593050577406e-19,-4.5553937525255606e-05,-3.3881317890172014e-20,-0.00010629251482896507,-4.049238850711845e-05,-1.6423342774934758e-19,-0.002409297041594982,0.0001594387722434476,0.0001594387722434476,0.00014172335795592517,0.0012198331532999873,2.1585959216106906e-19,-4.1286519845908015e-20,-4.91608721494551e-20,-4.5553937525255606e-05,1.4491101855268877e-19,-4.9318850721755654e-20,-4.5553937525255606e-05,-2.608861477543245e-19,-4.049238850711845e-05,-0.00010629251482896507,0.00013286565081216395,-0.0001594387722434476,1.3552527156068805e-19,2.1844069294026715e-19,2.1585959216106906e-19,2.6573128707241267e-05,-6.776263578034403e-21,-1.1858461261560205e-20,-1.1858461261560205e-20,-3.351355573243228e-21,-1.1519867317832554e-20,-1.1519867317832554e-20,-1.1619219464218415e-20,-1.3486674208904208e-20,-1.1646919513422571e-20,0.00017936862423084676,-5.9789541410282254e-05,-5.9789541410282254e-05,-3.8203876196864303e-20,-4.1286519845908015e-20,-6.776263578034403e-21,1.992984653043095e-05,-4.908244084671119e-22,-4.062098498650109e-22,3.134420954862983e-20,3.8116482626443515e-21,3.8116482626443515e-21,8.62845910224058e-21,-3.371668552226052e-21,9.002074128269621e-21,0.0001594387722434476,-5.3146257414482534e-05,-4.788571830524205e-20,-4.5553937525255606e-05,-4.91608721494551e-20,-1.1858461261560205e-20,-4.908244084671119e-22,1.5184645235422067e-05,2.99372395462657e-21,1.1954810839257727e-20,3.772885177618278e-22,-1.693262947703056e-21,2.1746739862732487e-20,-8.470329472543003e-22,9.125931500302366e-21,0.0001594387722434476,-5.3146257414482534e-05,-5.082197683525802e-20,-3.5856537951243413e-20,-4.5553937525255606e-05,-1.1858461261560205e-20,-4.062098498650109e-22,2.99372395462657e-21,1.5184645235422067e-05,1.218044939293214e-20,-1.6618321039099584e-21,6.93218146894568e-22,8.946678068829143e-21,-4.287439481369299e-21,2.1759932747267854e-20,0.00013286565081216395,-1.439379827336879e-19,-0.0001594387722434476,1.5246593050577406e-19,1.4491101855268877e-19,-3.351355573243228e-21,3.134420954862983e-20,1.1954810839257727e-20,1.218044939293214e-20,2.6573128707241267e-05,-1.1858461261560205e-20,-1.1858461261560205e-20,-1.2254684006147373e-20,-1.3486674208904208e-20,-1.2085746098524055e-20,0.0001594387722434476,7.988142629031116e-20,-5.3146257414482534e-05,-4.5553937525255606e-05,-4.9318850721755654e-20,-1.1519867317832554e-20,3.8116482626443515e-21,3.772885177618278e-22,-1.6618321039099584e-21,-1.1858461261560205e-20,1.5184645235422067e-05,2.9668028203693418e-21,2.189091324297393e-20,-6.352747104407253e-22,9.04712154432395e-21,0.0001594387722434476,7.888567531620777e-20,-5.3146257414482534e-05,-3.3881317890172014e-20,-4.5553937525255606e-05,-1.1519867317832554e-20,3.8116482626443515e-21,-1.693262947703056e-21,6.93218146894568e-22,-1.1858461261560205e-20,2.9668028203693418e-21,1.5184645235422067e-05,8.97378277417446e-21,-4.86040624671397e-21,2.23191019945923e-20,0.00010629251482896507,-5.188699126096565e-20,-4.8355944634084307e-20,-0.00010629251482896507,-2.608861477543245e-19,-1.1619219464218415e-20,8.62845910224058e-21,2.1746739862732487e-20,8.946678068829143e-21,-1.2254684006147373e-20,2.189091324297393e-20,8.97378277417446e-21,1.5184645235422067e-05,1.3576748038380124e-20,2.348360912276644e-20,0.00014172335795592517,1.2474015469209783e-19,1.260043839361115e-19,-4.049238850711845e-05,-4.049238850711845e-05,-1.3486674208904208e-20,-3.371668552226052e-21,-8.470329472543003e-22,-4.287439481369299e-21,-1.3486674208904208e-20,-6.352747104407253e-22,-4.86040624671397e-21,1.3576748038380124e-20,1.1569253729248885e-05,-1.3032115844086445e-20,0.00010629251482896507,-5.3501350548636524e-20,-5.233023405349763e-20,-1.6423342774934758e-19,-0.00010629251482896507,-1.1646919513422571e-20,9.002074128269621e-21,9.125931500302366e-21,2.1759932747267854e-20,-1.2085746098524055e-20,9.04712154432395e-21,2.23191019945923e-20,2.348360912276644e-20,-1.3032115844086445e-20,1.5184645235422067e-05,7.0,8.0,3.0,3.0,0.0699404776096344,-0.014384920708835125,-0.012896825559437275,-0.02703372947871685,-0.02703372947871685,0.0008267195662483573,0.0009920635493472219,0.0022321429569274187,0.0022321429569274187,0.0006613756413571537,0.0019841270986944437,0.0019841270986944437,0.0029761905316263437,0.004464285913854837,0.0029761905316263437,-0.014384920708835125,0.009093915112316608,0.0009920635493472219,0.0022321429569274187,0.0022321429569274187,-0.0009920635493472219,-0.0003306878206785768,-0.0007440476329065859,-0.0007440476329065859,1.3552527156068805e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.012896825559437275,0.0009920635493472219,0.00699168536812067,0.0019841270986944437,0.0019841270986944437,2.710505431213761e-20,-0.00028344671591185033,-1.1494433291142396e-19,-1.1494433291142396e-19,-0.0006613756413571537,-0.0005668934318237007,-0.0005668934318237007,-0.0,-0.0,-0.0,-0.02703372947871685,0.0022321429569274187,0.0019841270986944437,0.056795634329319,0.004464285913854837,-4.7849884582612314e-20,-1.1180834903756764e-19,-0.0022321429569274187,-2.3779390815239502e-21,-0.0,-0.0019841270986944437,-0.0,-0.01785714365541935,-0.004464285913854837,1.9825411626695288e-17,-0.02703372947871685,0.0022321429569274187,0.0019841270986944437,0.004464285913854837,0.056795634329319,-5.421010862427522e-20,-1.1180834903756764e-19,-2.3779390815239502e-21,-0.0022321429569274187,-9.908687505641181e-21,-0.0,-0.0019841270986944437,2.4356933669748613e-17,-0.004464285913854837,-0.01785714365541935,0.0008267195662483573,-0.0009920635493472219,2.710505431213761e-20,-4.7849884582612314e-20,-5.421010862427522e-20,0.0001653439103392884,-6.776263578034403e-21,2.710505431213761e-20,2.710505431213761e-20,9.15060070804334e-22,0.0,-0.0,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0003306878206785768,-0.00028344671591185033,-1.1180834903756764e-19,-1.1180834903756764e-19,-6.776263578034403e-21,9.448223863728344e-05,3.7269449679189215e-20,3.7269449679189215e-20,-4.0657581468206416e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0022321429569274187,-0.0007440476329065859,-1.1494433291142396e-19,-0.0022321429569274187,-2.3779390815239502e-21,2.710505431213761e-20,3.7269449679189215e-20,0.0007440476329065859,7.92646377337016e-22,4.14186609390214e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.0022321429569274187,-0.0007440476329065859,-1.1494433291142396e-19,-2.3779390815239502e-21,-0.0022321429569274187,2.710505431213761e-20,3.7269449679189215e-20,7.92646377337016e-22,0.0007440476329065859,4.14186609390214e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006613756413571537,1.3552527156068805e-19,-0.0006613756413571537,-0.0,-9.908687505641181e-21,9.15060070804334e-22,-4.0657581468206416e-20,4.14186609390214e-22,4.14186609390214e-22,9.448223863728344e-05,-0.0,0.0,-0.0,0.0,-0.0,0.0019841270986944437,-0.0,-0.0005668934318237007,-0.0019841270986944437,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0,-0.0005668934318237007,-0.0,-0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0005668934318237007,-0.0,-0.0,-0.0,0.0029761905316263437,-0.0,-0.0,-0.01785714365541935,2.4356933669748613e-17,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008928571827709675,-4.5315224566436314e-18,-9.912705813347644e-18,0.004464285913854837,-0.0,-0.0,-0.004464285913854837,-0.004464285913854837,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-4.5315224566436314e-18,0.004464285913854837,5.031000843478201e-33,0.0029761905316263437,-0.0,-0.0,1.9825411626695288e-17,-0.01785714365541935,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-9.912705813347644e-18,5.031000843478201e-33,0.008928571827709675,7.0,8.0,3.0,4.0,0.0563616082072258,-0.01112351194024086,-0.00997023843228817,-0.02094493992626667,-0.01711309514939785,0.0006200397037900984,0.0007440476329065859,0.0016741071594879031,0.0013392857508733869,0.0004960317746736109,0.0014880952658131719,0.0011904762359336019,0.0022321429569274187,0.0026785715017467737,0.0014880952658131719,-0.01112351194024086,0.006932043470442295,0.0007440476329065859,0.0016741071594879031,0.0013392857508733869,-0.0007440476329065859,-0.00024801588733680546,-0.0005580357392318547,-0.00044642857392318547,6.776263578034403e-20,-0.0,-1.4230153513872246e-19,2.1861270883096877e-33,-2.973811754344051e-19,-7.434529256613157e-19,-0.00997023843228817,0.0007440476329065859,0.005328798200935125,0.0014880952658131719,0.0011904762359336019,1.3552527156068805e-20,-0.00021258502965793014,1.2093940194908445e-19,-3.883846266718599e-20,-0.0004960317746736109,-0.00042517005931586027,-0.0003401360590942204,1.665620577488479e-33,-2.2657611766230274e-19,-5.664403070804539e-19,-0.02094493992626667,0.0016741071594879031,0.0014880952658131719,0.04326637089252472,0.0026785715017467737,4.660123121415651e-21,1.1180834903756764e-19,-0.0016741071594879031,-2.81080004651005e-19,-0.0,-0.0014880952658131719,-2.2590178451731303e-19,-0.013392857275903225,-0.0026785715017467737,6.938893903907228e-18,-0.01711309514939785,0.0013392857508733869,0.0011904762359336019,0.0026785715017467737,0.02182539738714695,-2.710505431213761e-20,8.131516293641283e-20,1.7087876091487705e-20,-0.0008928571478463709,-3.2219214771520345e-20,-0.0,-0.0007936508045531809,1.3127254578001205e-17,-0.0017857142956927419,-0.004464285913854837,0.0006200397037900984,-0.0007440476329065859,1.3552527156068805e-20,4.660123121415651e-21,-2.710505431213761e-20,0.00012400794366840273,-6.776263578034403e-21,-2.710505431213761e-20,-0.0,2.8631396816650797e-21,0.0,1.7316949383408774e-21,0.0,-2.248682030737886e-37,1.0582032927561048e-36,0.0007440476329065859,-0.00024801588733680546,-0.00021258502965793014,1.1180834903756764e-19,8.131516293641283e-20,-6.776263578034403e-21,7.086167897796258e-05,-3.7269449679189215e-20,-2.710505431213761e-20,-2.371692252312041e-20,-0.0,-0.0,0.0,-1.8927384723798892e-35,-5.586045008406625e-35,0.0016741071594879031,-0.0005580357392318547,1.2093940194908445e-19,-0.0016741071594879031,1.7087876091487705e-20,-2.710505431213761e-20,-3.7269449679189215e-20,0.0005580357392318547,-5.4337175360149444e-21,-1.1614560918717836e-21,-0.0,-2.2477790011593027e-22,0.0,-3.769315117126155e-36,-9.423288330913998e-36,0.0013392857508733869,-0.00044642857392318547,-3.883846266718599e-20,-2.81080004651005e-19,-0.0008928571478463709,-0.0,-2.710505431213761e-20,-5.4337175360149444e-21,0.00029761905898340046,-1.468239528829872e-21,-0.0,8.751353099665384e-20,-1.4574180282612931e-33,1.982541126480377e-19,4.956353010071399e-19,0.0004960317746736109,6.776263578034403e-20,-0.0004960317746736109,-0.0,-3.2219214771520345e-20,2.8631396816650797e-21,-2.371692252312041e-20,-1.1614560918717836e-21,-1.468239528829872e-21,7.086167897796258e-05,-0.0,6.776263578034403e-21,-0.0,6.018531076210112e-36,0.0,0.0014880952658131719,-0.0,-0.00042517005931586027,-0.0014880952658131719,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00042517005931586027,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-1.4230153513872246e-19,-0.0003401360590942204,-2.2590178451731303e-19,-0.0007936508045531809,1.7316949383408774e-21,-0.0,-2.2477790011593027e-22,8.751353099665384e-20,6.776263578034403e-21,-0.0,0.00022675737272948027,-1.1104137489374847e-33,1.5105075372466654e-19,3.776268713869693e-19,0.0022321429569274187,2.1861270883096877e-33,1.665620577488479e-33,-0.013392857275903225,1.3127254578001205e-17,0.0,0.0,0.0,-1.4574180282612931e-33,-0.0,-0.0,-1.1104137489374847e-33,0.0066964286379516125,-2.7189135153452095e-18,-3.469446951953614e-18,0.0026785715017467737,-2.973811754344051e-19,-2.2657611766230274e-19,-0.0026785715017467737,-0.0017857142956927419,-2.248682030737886e-37,-1.8927384723798892e-35,-3.769315117126155e-36,1.982541126480377e-19,6.018531076210112e-36,-0.0,1.5105075372466654e-19,-2.7189135153452095e-18,0.0017857142956927419,1.9903896464825145e-33,0.0014880952658131719,-7.434529256613157e-19,-5.664403070804539e-19,6.938893903907228e-18,-0.004464285913854837,1.0582032927561048e-36,-5.586045008406625e-35,-9.423288330913998e-36,4.956353010071399e-19,0.0,-0.0,3.776268713869693e-19,-3.469446951953614e-18,1.9903896464825145e-33,0.0014880952658131719,7.0,8.0,3.0,5.0,0.04728599637746811,-0.00907738134264946,-0.008134921081364155,-0.01711309514939785,-0.011833900585770607,0.0004960317746736109,0.0005952381179668009,0.0013392857508733869,0.0008928571478463709,0.00039682540227659047,0.0011904762359336019,0.0007936508045531809,0.0017857142956927419,0.0017857142956927419,0.0008503401186317205,-0.00907738134264946,0.0056051588617265224,0.0005952381179668009,0.0013392857508733869,0.0008928571478463709,-0.0005952381179668009,-0.00019841270113829523,-0.00044642857392318547,-0.00029761905898340046,-8.267041565201971e-19,-3.2526065174565133e-18,-2.2632720350634905e-18,-1.7601407509670915e-17,-7.293209274668805e-18,-6.1388576367454346e-18,-0.008134921081364155,0.0005952381179668009,0.004308389965444803,0.0011904762359336019,0.0007936508045531809,-1.1248597539537109e-18,-0.0001700680295471102,-3.1577388273640317e-18,-2.1955093992831465e-18,-0.00039682540227659047,-0.0003401360590942204,-0.00022675737272948027,-7.871362200729068e-18,-4.515158756175801e-18,-3.1649584597503945e-18,-0.01711309514939785,0.0013392857508733869,0.0011904762359336019,0.0349702388048172,0.0017857142956927419,-7.035741864386162e-18,-4.12325133529614e-18,-0.0013392857508733869,-5.47421429224632e-18,-2.1412992906588713e-18,-0.0011904762359336019,-4.205138907216439e-18,-0.010714286006987095,-0.0017857142956927419,-4.909149431428177e-18,-0.011833900585770607,0.0008928571478463709,0.0007936508045531809,0.0017857142956927419,0.01101899053901434,-4.388752737278204e-18,-2.617585958258995e-18,-4.943605639844074e-18,-0.00044642857392318547,-1.4793530719445627e-18,-3.798908440440116e-18,-0.00039682540227659047,-1.0139281336473882e-17,-0.0008928571478463709,-0.001700680237263441,0.0004960317746736109,-0.0005952381179668009,-1.1248597539537109e-18,-7.035741864386162e-18,-4.388752737278204e-18,9.920635056914762e-05,3.3881317890172014e-20,2.846030702774449e-19,1.8295911660692887e-19,4.320837706394694e-20,2.750160211285612e-19,1.839304205165222e-19,1.718202300999862e-18,6.608470507765904e-19,5.664403070804539e-19,0.0005952381179668009,-0.00019841270113829523,-0.0001700680295471102,-4.12325133529614e-18,-2.617585958258995e-18,3.3881317890172014e-20,5.668934318237007e-05,1.6940658945086007e-19,1.1180834903756764e-19,-5.5195524687483095e-21,1.6432439176733427e-19,1.1180834903756764e-19,1.0007112143453474e-18,3.965082252960754e-19,3.326713111547256e-19,0.0013392857508733869,-0.00044642857392318547,-3.1577388273640317e-18,-0.0013392857508733869,-4.943605639844074e-18,2.846030702774449e-19,1.6940658945086007e-19,0.00044642857392318547,2.981555974335137e-19,2.314637469561196e-19,3.6930636500287495e-19,2.6385076306971456e-19,1.2124001747826212e-18,6.616458487543752e-19,5.664403070804539e-19,0.0008928571478463709,-0.00029761905898340046,-2.1955093992831465e-18,-5.47421429224632e-18,-0.00044642857392318547,1.8295911660692887e-19,1.1180834903756764e-19,2.981555974335137e-19,0.00014880952949170023,1.5583807444451426e-19,2.634272465960874e-19,2.0837010502455788e-19,1.1895247017376204e-18,5.40224316830446e-19,4.575095125988051e-19,0.00039682540227659047,-8.267041565201971e-19,-0.00039682540227659047,-2.1412992906588713e-18,-1.4793530719445627e-18,4.320837706394694e-20,-5.5195524687483095e-21,2.314637469561196e-19,1.5583807444451426e-19,5.668934318237007e-05,2.710505431213761e-20,2.371692252312041e-20,2.64338825480515e-19,2.64338825480515e-19,1.2587562810388879e-19,0.0011904762359336019,-3.2526065174565133e-18,-0.0003401360590942204,-0.0011904762359336019,-3.798908440440116e-18,2.750160211285612e-19,1.6432439176733427e-19,3.6930636500287495e-19,2.634272465960874e-19,2.710505431213761e-20,0.0003401360590942204,1.7957098481791167e-19,1.0551973944990622e-18,5.02783227174152e-19,4.3157357468493465e-19,0.0007936508045531809,-2.2632720350634905e-18,-0.00022675737272948027,-4.205138907216439e-18,-0.00039682540227659047,1.839304205165222e-19,1.1180834903756764e-19,2.6385076306971456e-19,2.0837010502455788e-19,2.371692252312041e-20,1.7957098481791167e-19,0.00011337868636474013,9.06304470649211e-19,4.1071419928666696e-19,3.911563667328573e-19,0.0017857142956927419,-1.7601407509670915e-17,-7.871362200729068e-18,-0.010714286006987095,-1.0139281336473882e-17,1.718202300999862e-18,1.0007112143453474e-18,1.2124001747826212e-18,1.1895247017376204e-18,2.64338825480515e-19,1.0551973944990622e-18,9.06304470649211e-19,0.0053571430034935474,3.0597368574255495e-32,8.49660486470075e-19,0.0017857142956927419,-7.293209274668805e-18,-4.515158756175801e-18,-0.0017857142956927419,-0.0008928571478463709,6.608470507765904e-19,3.965082252960754e-19,6.616458487543752e-19,5.40224316830446e-19,2.64338825480515e-19,5.02783227174152e-19,4.1071419928666696e-19,3.0597368574255495e-32,0.0008928571478463709,1.1275762052317801e-32,0.0008503401186317205,-6.1388576367454346e-18,-3.1649584597503945e-18,-4.909149431428177e-18,-0.001700680237263441,5.664403070804539e-19,3.326713111547256e-19,5.664403070804539e-19,4.575095125988051e-19,1.2587562810388879e-19,4.3157357468493465e-19,3.911563667328573e-19,8.49660486470075e-19,1.1275762052317801e-32,0.00042517005931586027,7.0,8.0,3.0,6.0,0.04076318070292473,-0.007670776452869177,-0.0068735829554498196,-0.014473497867584229,-0.0086805559694767,0.00041335978312417865,0.0004960317746736109,0.0011160714784637094,0.0006377550889737904,0.0003306878206785768,0.0009920635493472219,0.0005668934318237007,0.0014880952658131719,0.0012755101779475808,0.0005314626032486558,-0.007670776452869177,0.004706396255642176,0.0004960317746736109,0.0011160714784637094,0.0006377550889737904,-0.0004960317746736109,-0.0001653439103392884,-0.00037202381645329297,-0.00021258502965793014,8.131516293641283e-20,-0.0,5.929230630780102e-21,-0.0,-5.545827948751637e-36,-5.589956698317586e-37,-0.0068735829554498196,0.0004960317746736109,0.0036173199769109488,0.0009920635493472219,0.0005668934318237007,-0.0,-0.00014172335795592517,-5.994077713395138e-20,-3.082668529085573e-20,-0.0003306878206785768,-0.00028344671591185033,-0.0001619695540284738,-1.2484453465633264e-33,1.0789339367123366e-19,1.6858342841909617e-19,-0.014473497867584229,0.0011160714784637094,0.0009920635493472219,0.02935444936156273,0.0012755101779475808,5.17074720654089e-21,-5.994077713395138e-20,-0.0011160714784637094,-1.3037902608705542e-35,-0.0,-0.0009920635493472219,1.0789339367123366e-19,-0.008928571827709675,-0.0012755101779475808,2.2790372703581387e-18,-0.0086805559694767,0.0006377550889737904,0.0005668934318237007,0.0012755101779475808,0.006395266391336918,2.710505431213761e-20,-2.4897453044488496e-20,-1.3037902608705542e-35,-0.00025510202976875007,-3.687498469340372e-21,-1.0532429383367696e-35,-0.00022675737272948027,5.903623186966992e-18,-0.0005102040595375001,-0.0007971939048729837,0.00041335978312417865,-0.0004960317746736109,-0.0,5.17074720654089e-21,2.710505431213761e-20,8.26719551696442e-05,-0.0,-6.776263578034403e-21,-6.776263578034403e-21,2.606255319411497e-22,0.0,-0.0,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0001653439103392884,-0.00014172335795592517,-5.994077713395138e-20,-2.4897453044488496e-20,-0.0,4.724111931864172e-05,1.9980258506121417e-20,1.0275561494354055e-20,-2.371692252312041e-20,-0.0,-1.6940658945086007e-21,0.0,1.5845222966956396e-36,1.597130485233596e-37,0.0011160714784637094,-0.00037202381645329297,-5.994077713395138e-20,-0.0011160714784637094,-1.3037902608705542e-35,-6.776263578034403e-21,1.9980258506121417e-20,0.00037202381645329297,4.345967416657712e-36,-6.018531076210112e-36,-0.0,-0.0,0.0,0.0,0.0,0.0006377550889737904,-0.00021258502965793014,-3.082668529085573e-20,-1.3037902608705542e-35,-0.00025510202976875007,-6.776263578034403e-21,1.0275561494354055e-20,4.345967416657712e-36,8.50340147735551e-05,-3.76158192263132e-36,-0.0,-0.0,0.0,0.0,-0.0,0.0003306878206785768,8.131516293641283e-20,-0.0003306878206785768,-0.0,-3.687498469340372e-21,2.606255319411497e-22,-2.371692252312041e-20,-6.018531076210112e-36,-3.76158192263132e-36,4.724111931864172e-05,-0.0,0.0,0.0,3.009265538105056e-36,-3.009265538105056e-36,0.0009920635493472219,-0.0,-0.00028344671591185033,-0.0009920635493472219,-1.0532429383367696e-35,0.0,-0.0,-0.0,-0.0,-0.0,0.00028344671591185033,-0.0,-0.0,3.009265538105056e-36,1.504632769052528e-36,0.0005668934318237007,5.929230630780102e-21,-0.0001619695540284738,1.0789339367123366e-19,-0.00022675737272948027,-0.0,-1.6940658945086007e-21,-0.0,-0.0,0.0,-0.0,6.478781870100647e-05,4.993781478088802e-34,-4.315735682225861e-20,-6.743337266010817e-20,0.0014880952658131719,-0.0,-1.2484453465633264e-33,-0.008928571827709675,5.903623186966992e-18,-0.0,0.0,0.0,0.0,0.0,-0.0,4.993781478088802e-34,0.004464285913854837,-1.0357765378848125e-18,-9.735692470983746e-19,0.0012755101779475808,-5.545827948751637e-36,1.0789339367123366e-19,-0.0012755101779475808,-0.0005102040595375001,-0.0,1.5845222966956396e-36,0.0,0.0,3.009265538105056e-36,3.009265538105056e-36,-4.315735682225861e-20,-1.0357765378848125e-18,0.0005102040595375001,-1.3275945101094922e-19,0.0005314626032486558,-5.589956698317586e-37,1.6858342841909617e-19,2.2790372703581387e-18,-0.0007971939048729837,-0.0,1.597130485233596e-37,0.0,-0.0,-3.009265538105056e-36,1.504632769052528e-36,-6.743337266010817e-20,-9.735692470983746e-19,-1.3275945101094922e-19,0.0001594387722434476,7.0,8.0,3.0,7.0,0.0358382947742939,-0.006643282249569893,-0.0059523810632526875,-0.01254251692444086,-0.006643282249569893,0.00035430840216577053,0.00042517005931586027,0.0009566326625645161,0.00047831633128225803,0.00028344671591185033,0.0008503401186317205,0.00042517005931586027,0.0012755101779475808,0.0009566326625645161,0.00035430840216577053,-0.006643282249569893,0.004056830890476704,0.00042517005931586027,0.0009566326625645161,0.00047831633128225803,-0.00042517005931586027,-0.00014172335795592517,-0.0003188775444868952,-0.0001594387722434476,5.421010862427522e-20,9.44569109078181e-20,1.9396735898340674e-20,8.49660486470075e-19,1.0462778801045088e-19,5.477418117855103e-20,-0.0059523810632526875,0.00042517005931586027,0.003117913845926523,0.0008503401186317205,0.00042517005931586027,-1.3552527156068805e-20,-0.00012147716188337654,4.6345886052057646e-20,-6.776263578034403e-21,-0.00028344671591185033,-0.00024295432376675308,-0.00012147716188337654,6.473603878767961e-19,8.131516293641283e-20,5.733761389685286e-20,-0.01254251692444086,0.0009566326625645161,0.0008503401186317205,0.0252976194024086,0.0009566326625645161,-5.240454237787585e-22,-4.8645503084917615e-20,-0.0009566326625645161,-8.390985968913619e-22,-2.710505431213761e-20,-0.0008503401186317205,-7.142774261590543e-22,-0.0076530613005161285,-0.0009566326625645161,1.245378521636615e-18,-0.006643282249569893,0.00047831633128225803,0.00042517005931586027,0.0009566326625645161,0.004056830890476704,-1.3552527156068805e-20,-2.964088633984402e-20,1.0620756080875938e-19,-0.0001594387722434476,1.8997420516082452e-21,7.453889935837843e-20,-0.00014172335795592517,5.428868251066163e-18,-0.0003188775444868952,-0.00042517005931586027,0.00035430840216577053,-0.00042517005931586027,-1.3552527156068805e-20,-5.240454237787585e-22,-1.3552527156068805e-20,7.086167897796258e-05,3.3881317890172014e-21,-0.0,-0.0,-9.446663108780916e-22,6.7393981080911465e-37,-3.0900113151618086e-37,-2.1065279918581054e-36,1.3435820073839608e-36,7.970968655070088e-22,0.00042517005931586027,-0.00014172335795592517,-0.00012147716188337654,-4.8645503084917615e-20,-2.964088633984402e-20,3.3881317890172014e-21,4.049238850711845e-05,1.602027834195298e-20,9.264900266591975e-21,-1.3552527156068805e-20,-0.0,-0.0,-4.654067972887228e-35,1.9489016922764075e-22,2.5404537176254985e-22,0.0009566326625645161,-0.0003188775444868952,4.6345886052057646e-20,-0.0009566326625645161,1.0620756080875938e-19,-0.0,1.602027834195298e-20,0.0003188775444868952,3.572376765474598e-36,-6.770847460736376e-36,-9.440671784674232e-20,3.76158192263132e-37,-8.49660486470075e-19,-1.0620756080875938e-19,1.3842621475283258e-34,0.00047831633128225803,-0.0001594387722434476,-6.776263578034403e-21,-8.390985968913619e-22,-0.0001594387722434476,-0.0,9.264900266591975e-21,3.572376765474598e-36,5.3146257414482534e-05,-2.119774770363541e-22,-1.6730657482575697e-23,-6.4655784981479636e-21,1.617829201616868e-34,2.9921862690847897e-22,-2.0281491189584234e-20,0.00028344671591185033,5.421010862427522e-20,-0.00028344671591185033,-2.710505431213761e-20,1.8997420516082452e-21,-9.446663108780916e-22,-1.3552527156068805e-20,-6.770847460736376e-36,-2.119774770363541e-22,4.049238850711845e-05,-0.0,0.0,-1.2434397036125538e-35,4.547437534413774e-22,5.472272816145921e-22,0.0008503401186317205,9.44569109078181e-20,-0.00024295432376675308,-0.0008503401186317205,7.453889935837843e-20,6.7393981080911465e-37,-0.0,-9.440671784674232e-20,-1.6730657482575697e-23,-0.0,0.00024295432376675308,1.6940658945086007e-21,-6.473603878767961e-19,-8.012793903754903e-20,-4.461508556838732e-23,0.00042517005931586027,1.9396735898340674e-20,-0.00012147716188337654,-7.142774261590543e-22,-0.00014172335795592517,-3.0900113151618086e-37,-0.0,3.76158192263132e-37,-6.4655784981479636e-21,0.0,1.6940658945086007e-21,4.049238850711845e-05,1.7899189343067363e-34,-1.7383178358478786e-21,-2.0732808686611408e-20,0.0012755101779475808,8.49660486470075e-19,6.473603878767961e-19,-0.0076530613005161285,5.428868251066163e-18,-2.1065279918581054e-36,-4.654067972887228e-35,-8.49660486470075e-19,1.617829201616868e-34,-1.2434397036125538e-35,-6.473603878767961e-19,1.7899189343067363e-34,0.0038265306502580643,-1.747006074097454e-18,-6.136436789285222e-19,0.0009566326625645161,1.0462778801045088e-19,8.131516293641283e-20,-0.0009566326625645161,-0.0003188775444868952,1.3435820073839608e-36,1.9489016922764075e-22,-1.0620756080875938e-19,2.9921862690847897e-22,4.547437534413774e-22,-8.012793903754903e-20,-1.7383178358478786e-21,-1.747006074097454e-18,0.0003188775444868952,-5.978347306927923e-21,0.00035430840216577053,5.477418117855103e-20,5.733761389685286e-20,1.245378521636615e-18,-0.00042517005931586027,7.970968655070088e-22,2.5404537176254985e-22,1.3842621475283258e-34,-2.0281491189584234e-20,5.472272816145921e-22,-4.461508556838732e-23,-2.0732808686611408e-20,-6.136436789285222e-19,-5.978347306927923e-21,7.086167897796258e-05,7.0,8.0,3.0,8.0,0.031983714550733566,-0.005859375,-0.005249669309705496,-0.011067708022892475,-0.005249669309705496,0.0003100198518950492,0.00037202381645329297,0.0008370535797439516,0.00037202381645329297,0.00024801588733680546,0.0007440476329065859,0.0003306878206785768,0.0011160714784637094,0.0007440476329065859,0.00024801588733680546,-0.005859375,0.0035652280785143375,0.00037202381645329297,0.0008370535797439516,0.00037202381645329297,-0.00037202381645329297,-0.00012400794366840273,-0.00027901786961592734,-0.00012400794366840273,5.421010862427522e-20,-1.1475930415984385e-21,6.270402243779879e-21,-4.729219944046937e-34,8.228272192988889e-35,4.453526200818723e-20,-0.005249669309705496,0.00037202381645329297,0.0027399847749620676,0.0007440476329065859,0.0003306878206785768,-0.0,-0.00010629251482896507,5.141794431073114e-20,3.3881317890172014e-20,-0.00024801588733680546,-0.00021258502965793014,-9.448223863728344e-05,-7.222237291452134e-35,7.314019408227984e-35,2.0456645068705203e-20,-0.011067708022892475,0.0008370535797439516,0.0007440476329065859,0.0222284235060215,0.0007440476329065859,-2.7068651902836742e-20,5.141794431073114e-20,-0.0008370535797439516,-1.1475930415984385e-21,-1.3552527156068805e-20,-0.0007440476329065859,3.2033518236290566e-35,-0.0066964286379516125,-0.0007440476329065859,8.233810618068419e-19,-0.005249669309705496,0.00037202381645329297,0.0003306878206785768,0.0007440476329065859,0.0027399847749620676,-6.776263578034403e-21,2.1090383355781597e-20,-1.1859718482296565e-35,-0.00010629251482896507,-6.853250949777397e-22,-6.776263578034403e-21,-9.448223863728344e-05,3.538566163938545e-18,-0.00021258502965793014,-0.00024801588733680546,0.0003100198518950492,-0.00037202381645329297,-0.0,-2.7068651902836742e-20,-6.776263578034403e-21,6.200397183420137e-05,-0.0,-0.0,3.3881317890172014e-21,-1.9981420113270686e-21,2.1059725059364593e-38,-1.544074634881207e-37,0.0,-0.0,-3.19657142060316e-22,0.00037202381645329297,-0.00012400794366840273,-0.00010629251482896507,5.141794431073114e-20,2.1090383355781597e-20,-0.0,3.543083948898129e-05,-1.7139314770243713e-20,-8.528384788405868e-21,-1.1858461261560205e-20,-0.0,8.470329472543003e-22,1.751670388242177e-37,0.0,2.020959907673895e-22,0.0008370535797439516,-0.00027901786961592734,5.141794431073114e-20,-0.0008370535797439516,-1.1859718482296565e-35,-0.0,-1.7139314770243713e-20,0.00027901786961592734,4.125520971651743e-36,4.513898307157584e-36,-0.0,-0.0,-0.0,-0.0,-6.826249465871227e-38,0.00037202381645329297,-0.00012400794366840273,3.3881317890172014e-20,-1.1475930415984385e-21,-0.00010629251482896507,3.3881317890172014e-21,-8.528384788405868e-21,4.125520971651743e-36,3.543083948898129e-05,8.069409029710808e-23,3.278837117460973e-22,-2.6385763012282717e-21,1.349454083802673e-34,-2.350934891783545e-35,-1.2332808145387452e-20,0.00024801588733680546,5.421010862427522e-20,-0.00024801588733680546,-1.3552527156068805e-20,-6.853250949777397e-22,-1.9981420113270686e-21,-1.1858461261560205e-20,4.513898307157584e-36,8.069409029710808e-23,3.543083948898129e-05,-0.0,1.6940658945086007e-21,4.0872306816906586e-37,0.0,-1.0169099148991932e-21,0.0007440476329065859,-1.1475930415984385e-21,-0.00021258502965793014,-0.0007440476329065859,-6.776263578034403e-21,2.1059725059364593e-38,-0.0,-0.0,3.278837117460973e-22,-0.0,0.00021258502965793014,-0.0,-3.3344317123940565e-36,-0.0,7.65061994074227e-22,0.0003306878206785768,6.270402243779879e-21,-9.448223863728344e-05,3.2033518236290566e-35,-9.448223863728344e-05,-1.544074634881207e-37,8.470329472543003e-22,-0.0,-2.6385763012282717e-21,1.6940658945086007e-21,-0.0,2.6994925065082498e-05,2.0553339357924264e-35,-2.0897198719202704e-35,-4.036724188099387e-21,0.0011160714784637094,-4.729219944046937e-34,-7.222237291452134e-35,-0.0066964286379516125,3.538566163938545e-18,0.0,1.751670388242177e-37,-0.0,1.349454083802673e-34,4.0872306816906586e-37,-3.3344317123940565e-36,2.0553339357924264e-35,0.0033482143189758062,-6.473603878767961e-19,-4.1302940027302046e-19,0.0007440476329065859,8.228272192988889e-35,7.314019408227984e-35,-0.0007440476329065859,-0.00021258502965793014,-0.0,0.0,-0.0,-2.350934891783545e-35,0.0,-0.0,-2.0897198719202704e-35,-6.473603878767961e-19,0.00021258502965793014,2.500200719914675e-35,0.00024801588733680546,4.453526200818723e-20,2.0456645068705203e-20,8.233810618068419e-19,-0.00024801588733680546,-3.19657142060316e-22,2.020959907673895e-22,-6.826249465871227e-38,-1.2332808145387452e-20,-1.0169099148991932e-21,7.65061994074227e-22,-4.036724188099387e-21,-4.1302940027302046e-19,2.500200719914675e-35,3.543083948898129e-05,7.0,8.0,4.0,3.0,0.0563616082072258,-0.01112351194024086,-0.00997023843228817,-0.01711309514939785,-0.02094493992626667,0.0006200397037900984,0.0007440476329065859,0.0013392857508733869,0.0016741071594879031,0.0004960317746736109,0.0011904762359336019,0.0014880952658131719,0.0014880952658131719,0.0026785715017467737,0.0022321429569274187,-0.01112351194024086,0.006932043470442295,0.0007440476329065859,0.0013392857508733869,0.0016741071594879031,-0.0007440476329065859,-0.00024801588733680546,-0.00044642857392318547,-0.0005580357392318547,6.776263578034403e-20,-1.4907779871675686e-19,-0.0,-7.434529256613157e-19,-2.973811754344051e-19,-0.0,-0.00997023843228817,0.0007440476329065859,0.005328798200935125,0.0011904762359336019,0.0014880952658131719,1.3552527156068805e-20,-0.00021258502965793014,-3.883846266718599e-20,1.2093940194908445e-19,-0.0004960317746736109,-0.0003401360590942204,-0.00042517005931586027,-5.664403070804539e-19,-2.2657611766230274e-19,-0.0,-0.01711309514939785,0.0013392857508733869,0.0011904762359336019,0.02182539738714695,0.0026785715017467737,-2.1043389157230928e-20,8.555032767268433e-20,-0.0008928571478463709,1.3538738119881032e-20,-5.421010862427522e-20,-0.0007936508045531809,-1.177546144190875e-19,-0.004464285913854837,-0.0017857142956927419,-0.0,-0.02094493992626667,0.0016741071594879031,0.0014880952658131719,0.0026785715017467737,0.04326637089252472,-0.0,1.1180834903756764e-19,-2.846291523161345e-19,-0.0016741071594879031,-3.3236016038184784e-21,-3.436564247857947e-19,-0.0014880952658131719,-1.4869058513226313e-18,-0.0026785715017467737,-0.013392857275903225,0.0006200397037900984,-0.0007440476329065859,1.3552527156068805e-20,-2.1043389157230928e-20,-0.0,0.00012400794366840273,-6.776263578034403e-21,-0.0,-2.710505431213761e-20,2.5533395396312303e-21,1.862007590715482e-21,-3.1250066031242675e-36,4.0566931371405836e-36,6.715280528377468e-36,-0.0,0.0007440476329065859,-0.00024801588733680546,-0.00021258502965793014,8.555032767268433e-20,1.1180834903756764e-19,-6.776263578034403e-21,7.086167897796258e-05,-3.049318610115481e-20,-3.7269449679189215e-20,-2.371692252312041e-20,1.6940658945086007e-21,-0.0,-4.922408996773474e-35,-1.9970063423232312e-35,0.0,0.0013392857508733869,-0.00044642857392318547,-3.883846266718599e-20,-0.0008928571478463709,-2.846291523161345e-19,-0.0,-3.049318610115481e-20,0.00029761905898340046,-4.25067194937617e-21,-1.2577219619609306e-22,8.751353099665384e-20,1.3541694921472752e-35,4.956353010071399e-19,1.982541126480377e-19,-0.0,0.0016741071594879031,-0.0005580357392318547,1.2093940194908445e-19,1.3538738119881032e-20,-0.0016741071594879031,-2.710505431213761e-20,-3.7269449679189215e-20,-4.25067194937617e-21,0.0005580357392318547,-1.1614560918717836e-21,-2.2477790011593027e-22,-0.0,-7.453121342821828e-36,-2.981248357762528e-36,-0.0,0.0004960317746736109,6.776263578034403e-20,-0.0004960317746736109,-5.421010862427522e-20,-3.3236016038184784e-21,2.5533395396312303e-21,-2.371692252312041e-20,-1.2577219619609306e-22,-1.1614560918717836e-21,7.086167897796258e-05,6.776263578034403e-21,0.0,1.1414926888486795e-35,8.640064638409281e-37,-0.0,0.0011904762359336019,-1.4907779871675686e-19,-0.0003401360590942204,-0.0007936508045531809,-3.436564247857947e-19,1.862007590715482e-21,1.6940658945086007e-21,8.751353099665384e-20,-2.2477790011593027e-22,6.776263578034403e-21,0.00022675737272948027,3.364417554831072e-20,3.776268713869693e-19,1.5105075372466654e-19,-0.0,0.0014880952658131719,-0.0,-0.00042517005931586027,-1.177546144190875e-19,-0.0014880952658131719,-3.1250066031242675e-36,-0.0,1.3541694921472752e-35,-0.0,0.0,3.364417554831072e-20,0.00042517005931586027,5.602880750739789e-35,2.2411524437888783e-35,-0.0,0.0014880952658131719,-7.434529256613157e-19,-5.664403070804539e-19,-0.004464285913854837,-1.4869058513226313e-18,4.0566931371405836e-36,-4.922408996773474e-35,4.956353010071399e-19,-7.453121342821828e-36,1.1414926888486795e-35,3.776268713869693e-19,5.602880750739789e-35,0.0014880952658131719,9.912706020142797e-19,-0.0,0.0026785715017467737,-2.973811754344051e-19,-2.2657611766230274e-19,-0.0017857142956927419,-0.0026785715017467737,6.715280528377468e-36,-1.9970063423232312e-35,1.982541126480377e-19,-2.981248357762528e-36,8.640064638409281e-37,1.5105075372466654e-19,2.2411524437888783e-35,9.912706020142797e-19,0.0017857142956927419,-0.0,0.0022321429569274187,-0.0,-0.0,-0.0,-0.013392857275903225,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0066964286379516125,7.0,8.0,4.0,4.0,0.04530134052038193,-0.008593750186264515,-0.007700892630964518,-0.013236607424914837,-0.013236607424914837,0.0004650297632906586,0.0005580357392318547,0.0010044643422588706,0.0010044643422588706,0.00037202381645329297,0.0008928571478463709,0.0008928571478463709,0.0011160714784637094,0.0016071428544819355,0.0011160714784637094,-0.008593750186264515,0.005282738246023655,0.0005580357392318547,0.0010044643422588706,0.0010044643422588706,-0.0005580357392318547,-0.00018601190822664648,-0.0003348214377183467,-0.0003348214377183467,-5.421010862427522e-20,2.0328790734103208e-20,2.0328790734103208e-20,-0.0,-0.0,-0.0,-0.007700892630964518,0.0005580357392318547,0.004060374107211828,0.0008928571478463709,0.0008928571478463709,-1.3552527156068805e-20,-0.0001594387722434476,6.748868390122412e-20,6.748868390122412e-20,-0.00037202381645329297,-0.00025510202976875007,-0.00025510202976875007,-0.0,-0.0,-0.0,-0.013236607424914837,0.0010044643422588706,0.0008928571478463709,0.016636904329061508,0.0016071428544819355,1.9718602456780784e-21,8.893845946170154e-20,-0.0006696428754366934,1.8842670290772196e-20,1.3552527156068805e-20,-0.0005952381179668009,9.466412611361117e-20,-0.0033482143189758062,-0.0010714285308495164,-0.0,-0.013236607424914837,0.0010044643422588706,0.0008928571478463709,0.0016071428544819355,0.016636904329061508,-0.0,8.893845946170154e-20,1.8842670290772196e-20,-0.0006696428754366934,1.376865555607956e-20,9.466412611361117e-20,-0.0005952381179668009,-0.0,-0.0010714285308495164,-0.0033482143189758062,0.0004650297632906586,-0.0005580357392318547,-1.3552527156068805e-20,1.9718602456780784e-21,-0.0,9.300595411332324e-05,6.776263578034403e-21,-0.0,-0.0,8.562646140857546e-22,-4.843075843528704e-22,-4.843075843528704e-22,-0.0,-0.0,-0.0,0.0005580357392318547,-0.00018601190822664648,-0.0001594387722434476,8.893845946170154e-20,8.893845946170154e-20,6.776263578034403e-21,5.3146257414482534e-05,-2.371692252312041e-20,-2.371692252312041e-20,1.3552527156068805e-20,-5.082197683525802e-21,-5.082197683525802e-21,-0.0,-0.0,0.0,0.0010044643422588706,-0.0003348214377183467,6.748868390122412e-20,-0.0006696428754366934,1.8842670290772196e-20,-0.0,-2.371692252312041e-20,0.00022321428696159273,-6.516906913082083e-21,4.0351459614179657e-22,2.0230011010433724e-22,2.0230011010433724e-22,-0.0,-0.0,-0.0,0.0010044643422588706,-0.0003348214377183467,6.748868390122412e-20,1.8842670290772196e-20,-0.0006696428754366934,-0.0,-2.371692252312041e-20,-6.516906913082083e-21,0.00022321428696159273,4.0351459614179657e-22,2.0230011010433724e-22,2.0230011010433724e-22,-0.0,-0.0,-0.0,0.00037202381645329297,-5.421010862427522e-20,-0.00037202381645329297,1.3552527156068805e-20,1.376865555607956e-20,8.562646140857546e-22,1.3552527156068805e-20,4.0351459614179657e-22,4.0351459614179657e-22,5.3146257414482534e-05,-6.776263578034403e-21,-6.776263578034403e-21,0.0,0.0,-0.0,0.0008928571478463709,2.0328790734103208e-20,-0.00025510202976875007,-0.0005952381179668009,9.466412611361117e-20,-4.843075843528704e-22,-5.082197683525802e-21,2.0230011010433724e-22,2.0230011010433724e-22,-6.776263578034403e-21,0.0001700680295471102,-2.722029414239817e-20,-0.0,-0.0,-0.0,0.0008928571478463709,2.0328790734103208e-20,-0.00025510202976875007,9.466412611361117e-20,-0.0005952381179668009,-4.843075843528704e-22,-5.082197683525802e-21,2.0230011010433724e-22,2.0230011010433724e-22,-6.776263578034403e-21,-2.722029414239817e-20,0.0001700680295471102,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,0.0016071428544819355,-0.0,-0.0,-0.0010714285308495164,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0033482143189758062,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,7.0,8.0,4.0,5.0,0.037942178547382355,-0.007008928339928389,-0.006279761902987957,-0.010803570970892906,-0.009143282659351826,0.00037202381645329297,0.00044642857392318547,0.0008035714272409678,0.0006696428754366934,0.00029761905898340046,0.0007142857066355646,0.0005952381179668009,0.0008928571478463709,0.0010714285308495164,0.0006377550889737904,-0.007008928339928389,0.0042708334513008595,0.00044642857392318547,0.0008035714272409678,0.0006696428754366934,-0.00044642857392318547,-0.00014880952949170023,-0.0002678571327123791,-0.00022321428696159273,-6.776263578034403e-20,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.006279761902987957,0.00044642857392318547,0.0032823130022734404,0.0007142857066355646,0.0005952381179668009,-0.0,-0.00012755101488437504,5.366996614662663e-20,4.077139958178915e-20,-0.00029761905898340046,-0.0002040816325461492,-0.0001700680295471102,-0.0,-0.0,-0.0,-0.010803570970892906,0.0008035714272409678,0.0007142857066355646,0.013452380895614624,0.0010714285308495164,2.8054175806485803e-21,4.404571325722362e-20,-0.0005357142654247582,1.8938211267109205e-21,-0.0,-0.0004761904710903764,4.833624093339935e-20,-0.0026785715017467737,-0.0007142857066355646,-0.0,-0.009143282659351826,0.0006696428754366934,0.0005952381179668009,0.0010714285308495164,0.00839817151427269,-1.3552527156068805e-20,4.0657581468206416e-20,2.271448059490201e-21,-0.0003348214377183467,1.4835241948068467e-21,4.801256128229823e-20,-0.00029761905898340046,-0.0,-0.0005357142654247582,-0.0012755101779475808,0.00037202381645329297,-0.00044642857392318547,-0.0,2.8054175806485803e-21,-1.3552527156068805e-20,7.440476474585012e-05,-3.3881317890172014e-21,-6.776263578034403e-21,-0.0,1.2580722414463977e-21,1.676712115796991e-22,1.7361147421455229e-37,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00014880952949170023,-0.00012755101488437504,4.404571325722362e-20,4.0657581468206416e-20,-3.3881317890172014e-21,4.251700738677755e-05,-1.8634724839594607e-20,-1.3552527156068805e-20,1.6940658945086007e-20,3.3881317890172014e-21,-0.0,-0.0,-0.0,0.0,0.0008035714272409678,-0.0002678571327123791,5.366996614662663e-20,-0.0005357142654247582,2.271448059490201e-21,-6.776263578034403e-21,-1.8634724839594607e-20,0.00017857142665889114,-7.571493531634003e-22,2.437839700816308e-22,2.589441348750999e-22,-7.52316384526264e-37,-0.0,-0.0,-0.0,0.0006696428754366934,-0.00022321428696159273,4.077139958178915e-20,1.8938211267109205e-21,-0.0003348214377183467,-0.0,-1.3552527156068805e-20,-7.571493531634003e-22,0.00011160714348079637,-3.640787452922016e-23,1.0789338953129163e-22,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-6.776263578034403e-20,-0.00029761905898340046,-0.0,1.4835241948068467e-21,1.2580722414463977e-21,1.6940658945086007e-20,2.437839700816308e-22,-3.640787452922016e-23,4.251700738677755e-05,3.3881317890172014e-21,-3.3881317890172014e-21,0.0,0.0,-0.0,0.0007142857066355646,-1.3552527156068805e-20,-0.0002040816325461492,-0.0004761904710903764,4.801256128229823e-20,1.676712115796991e-22,3.3881317890172014e-21,2.589441348750999e-22,1.0789338953129163e-22,3.3881317890172014e-21,0.0001360544265480712,-1.381035386000533e-20,-0.0,-0.0,-0.0,0.0005952381179668009,-0.0,-0.0001700680295471102,4.833624093339935e-20,-0.00029761905898340046,1.7361147421455229e-37,-0.0,-7.52316384526264e-37,-0.0,-3.3881317890172014e-21,-1.381035386000533e-20,8.50340147735551e-05,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0,-0.0007142857066355646,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0,-0.0012755101779475808,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,7.0,8.0,4.0,6.0,0.032669004052877426,-0.005920493043959141,-0.005303996615111828,-0.009130527265369892,-0.006701743230223656,0.0003100198518950492,0.00037202381645329297,0.0006696428754366934,0.00047831633128225803,0.00024801588733680546,0.0005952381179668009,0.00042517005931586027,0.0007440476329065859,0.0007653061184100807,0.00039859695243649185,-0.005920493043959141,0.003585600992664695,0.00037202381645329297,0.0006696428754366934,0.00047831633128225803,-0.00037202381645329297,-0.00012400794366840273,-0.00022321428696159273,-0.0001594387722434476,4.743384504624082e-20,-7.201393700090885e-20,-5.016797423876121e-20,-3.7172646283065783e-19,-1.699320947090756e-19,-1.6594931053251226e-19,-0.005303996615111828,0.00037202381645329297,0.00275550689548254,0.0005952381179668009,0.00042517005931586027,-0.0,-0.00010629251482896507,-2.6523791910757184e-20,-1.7147342622712025e-20,-0.00024801588733680546,-0.0001700680295471102,-0.00012147716188337654,-2.8322015354022696e-19,-1.2947206723560157e-19,-1.2643756808314786e-19,-0.009130527265369892,0.0006696428754366934,0.0005952381179668009,0.011295351199805737,0.0007653061184100807,-2.481883372779188e-20,3.363168059741719e-20,-0.00044642857392318547,-8.826509566899216e-20,-2.710505431213761e-20,-0.00039682540227659047,-1.003114174024814e-19,-0.0022321429569274187,-0.0005102040595375001,-2.6551890202189845e-19,-0.006701743230223656,0.00047831633128225803,0.00042517005931586027,0.0007653061184100807,0.004872980527579784,1.3552527156068805e-20,2.7091400985269084e-20,-8.826509566899216e-20,-0.00019132652960252017,-1.1190102557791626e-20,-1.003114174024814e-19,-0.0001700680295471102,-4.248302432350375e-19,-0.0003061224415432662,-0.0005978954141028225,0.0003100198518950492,-0.00037202381645329297,-0.0,-2.481883372779188e-20,1.3552527156068805e-20,6.200397183420137e-05,-0.0,-0.0,3.3881317890172014e-21,-4.456027954014182e-36,1.0849338793214039e-36,-2.873840736237942e-37,1.964715546944454e-35,2.283640458945539e-36,-2.598266985437681e-37,0.00037202381645329297,-0.00012400794366840273,-0.00010629251482896507,3.363168059741719e-20,2.7091400985269084e-20,-0.0,3.543083948898129e-05,-1.318697067866362e-20,-1.0018672638748756e-20,-1.3552527156068805e-20,1.6940658945086007e-21,8.470329472543003e-22,-1.7737663045720253e-35,-9.291344399273818e-36,-8.981524438618188e-36,0.0006696428754366934,-0.00022321428696159273,-2.6523791910757184e-20,-0.00044642857392318547,-8.826509566899216e-20,-0.0,-1.318697067866362e-20,0.00014880952949170023,1.0996827041686566e-21,5.266214691683848e-36,4.4056469836361075e-20,1.1660903960157092e-35,2.4781765050356993e-19,5.664402941557569e-20,3.062310581643688e-35,0.00047831633128225803,-0.0001594387722434476,-1.7147342622712025e-20,-8.826509566899216e-20,-0.00019132652960252017,3.3881317890172014e-21,-1.0018672638748756e-20,1.0996827041686566e-21,6.377550744218752e-05,4.513898307157584e-36,1.1660903960157092e-35,1.8881344215583318e-20,4.899696930629901e-35,3.3986418295580265e-20,6.637972550547461e-20,0.00024801588733680546,4.743384504624082e-20,-0.00024801588733680546,-2.710505431213761e-20,-1.1190102557791626e-20,-4.456027954014182e-36,-1.3552527156068805e-20,5.266214691683848e-36,4.513898307157584e-36,3.543083948898129e-05,3.3881317890172014e-21,-3.3881317890172014e-21,3.396965586826732e-36,0.0,0.0,0.0005952381179668009,-7.201393700090885e-20,-0.0001700680295471102,-0.00039682540227659047,-1.003114174024814e-19,1.0849338793214039e-36,1.6940658945086007e-21,4.4056469836361075e-20,1.1660903960157092e-35,3.3881317890172014e-21,0.00011337868636474013,1.0164395367051604e-20,1.8881343569348464e-19,4.315735682225861e-20,3.4606553688208144e-35,0.00042517005931586027,-5.016797423876121e-20,-0.00012147716188337654,-1.003114174024814e-19,-0.0001700680295471102,-2.873840736237942e-37,8.470329472543003e-22,1.1660903960157092e-35,1.8881344215583318e-20,-3.3881317890172014e-21,1.0164395367051604e-20,4.8590864025754854e-05,5.465837509682474e-35,2.5894414093355167e-20,5.0575027879493996e-20,0.0007440476329065859,-3.7172646283065783e-19,-2.8322015354022696e-19,-0.0022321429569274187,-4.248302432350375e-19,1.964715546944454e-35,-1.7737663045720253e-35,2.4781765050356993e-19,4.899696930629901e-35,3.396965586826732e-36,1.8881343569348464e-19,5.465837509682474e-35,0.0007440476329065859,2.8322015354022696e-19,1.4739259637909209e-34,0.0007653061184100807,-1.699320947090756e-19,-1.2947206723560157e-19,-0.0005102040595375001,-0.0003061224415432662,2.283640458945539e-36,-9.291344399273818e-36,5.664402941557569e-20,3.3986418295580265e-20,0.0,4.315735682225861e-20,2.5894414093355167e-20,2.8322015354022696e-19,0.0002040816325461492,1.0620756080875938e-19,0.00039859695243649185,-1.6594931053251226e-19,-1.2643756808314786e-19,-2.6551890202189845e-19,-0.0005978954141028225,-2.598266985437681e-37,-8.981524438618188e-36,3.062310581643688e-35,6.637972550547461e-20,0.0,3.4606553688208144e-35,5.0575027879493996e-20,1.4739259637909209e-34,1.0620756080875938e-19,0.00011957908282056451,7.0,8.0,4.0,7.0,0.028696322813630104,-0.0051259566098451614,-0.004591836594045162,-0.007908163592219353,-0.0051259566098451614,0.0002657313016243279,0.0003188775444868952,0.0005739795742556453,0.0003587372484616935,0.00021258502965793014,0.0005102040595375001,0.0003188775444868952,0.0006377550889737904,0.0005739795742556453,0.0002657313016243279,-0.0051259566098451614,0.003090454963967204,0.0003188775444868952,0.0005739795742556453,0.0003587372484616935,-0.0003188775444868952,-0.00010629251482896507,-0.00019132652960252017,-0.00011957908282056451,-1.400079959446602e-19,2.3937803011126796e-19,1.5258846955870555e-19,-1.1319015425083748e-18,7.862347844907407e-20,-3.02001754637338e-19,-0.004591836594045162,0.0003188775444868952,0.002374878618866205,0.0005102040595375001,0.0003188775444868952,3.7947076036992655e-19,-9.110787505051121e-05,-3.1289326761221788e-19,-1.9312351197398048e-19,-0.00021258502965793014,-0.00014577258843928576,-9.110787505051121e-05,-2.5618629362943603e-18,-4.607859233063394e-19,-7.900286742196093e-19,-0.007908163592219353,0.0005739795742556453,0.0005102040595375001,0.009736394509673119,0.0005739795742556453,3.3146822865255553e-19,-4.421028084009104e-19,-0.00038265305920504034,-4.617886730039068e-19,-1.2874900798265365e-18,-0.0003401360590942204,-4.555207636110745e-19,-0.0019132653251290321,-0.00038265305920504034,-5.524339679608232e-19,-0.0051259566098451614,0.0003587372484616935,0.0003188775444868952,0.0005739795742556453,0.003090454963967204,2.283001688540164e-19,-2.4364700585507757e-19,-3.682034489030062e-19,-0.00011957908282056451,-7.892384582406797e-19,-3.1170812458958252e-19,-0.00010629251482896507,-6.107898024176376e-19,-0.00019132652960252017,-0.0003188775444868952,0.0002657313016243279,-0.0003188775444868952,3.7947076036992655e-19,3.3146822865255553e-19,2.283001688540164e-19,5.3146257414482534e-05,-2.0328790734103208e-20,-1.3552527156068805e-20,-1.3552527156068805e-20,-2.20496931464929e-20,-3.686357541706417e-20,-2.3039734635665108e-20,-1.180083973084279e-20,-2.832201470778784e-20,-8.421403839573766e-21,0.0003188775444868952,-0.00010629251482896507,-9.110787505051121e-05,-4.421028084009104e-19,-2.4364700585507757e-19,-2.0328790734103208e-20,3.0369290470844135e-05,2.2010810810941505e-20,1.358057697988745e-20,4.3493479725464974e-20,9.317362419797304e-21,5.082197683525802e-21,1.2475173522067357e-19,5.918810093766495e-21,3.441903052477123e-20,0.0005739795742556453,-0.00019132652960252017,-3.1289326761221788e-19,-0.00038265305920504034,-3.682034489030062e-19,-1.3552527156068805e-20,2.2010810810941505e-20,0.00012755101488437504,1.4219363976757257e-20,4.24830236772689e-20,4.0824743845569586e-21,2.046300565911438e-34,2.9240147059865344e-19,3.293712676385968e-20,5.664402941557569e-20,0.0003587372484616935,-0.00011957908282056451,-1.9312351197398048e-19,-4.617886730039068e-19,-0.00011957908282056451,-1.3552527156068805e-20,1.358057697988745e-20,1.4219363976757257e-20,3.98596930608619e-05,2.6393375254960835e-20,-9.567327777714502e-23,1.0882563631900051e-21,1.3275945101094922e-19,2.8303878126622764e-20,5.895890082215387e-20,0.00021258502965793014,-1.400079959446602e-19,-0.00021258502965793014,-1.2874900798265365e-18,-7.892384582406797e-19,-2.20496931464929e-20,4.3493479725464974e-20,4.24830236772689e-20,2.6393375254960835e-20,3.0369290470844135e-05,7.115076756936123e-20,4.573977915173222e-20,2.5961846761619285e-19,5.629358271684023e-20,7.826263383154488e-20,0.0005102040595375001,2.3937803011126796e-19,-0.00014577258843928576,-0.0003401360590942204,-3.1170812458958252e-19,-3.686357541706417e-20,9.317362419797304e-21,4.0824743845569586e-21,-9.567327777714502e-23,7.115076756936123e-20,9.718172805150971e-05,9.317362419797304e-21,3.331317728749306e-20,3.4659216026947605e-22,5.45906827918835e-20,0.0003188775444868952,1.5258846955870555e-19,-9.110787505051121e-05,-4.555207636110745e-19,-0.00010629251482896507,-2.3039734635665108e-20,5.082197683525802e-21,2.046300565911438e-34,1.0882563631900051e-21,4.573977915173222e-20,9.317362419797304e-21,3.0369290470844135e-05,1.2475173522067357e-19,3.240227694966172e-20,2.6586318364013097e-20,0.0006377550889737904,-1.1319015425083748e-18,-2.5618629362943603e-18,-0.0019132653251290321,-6.107898024176376e-19,-1.180083973084279e-20,1.2475173522067357e-19,2.9240147059865344e-19,1.3275945101094922e-19,2.5961846761619285e-19,3.331317728749306e-20,1.2475173522067357e-19,0.0006377550889737904,-1.4941307828347933e-19,1.180083973084279e-20,0.0005739795742556453,7.862347844907407e-20,-4.607859233063394e-19,-0.00038265305920504034,-0.00019132652960252017,-2.832201470778784e-20,5.918810093766495e-21,3.293712676385968e-20,2.8303878126622764e-20,5.629358271684023e-20,3.4659216026947605e-22,3.240227694966172e-20,-1.4941307828347933e-19,0.00012755101488437504,6.77451163534641e-20,0.0002657313016243279,-3.02001754637338e-19,-7.900286742196093e-19,-5.524339679608232e-19,-0.0003188775444868952,-8.421403839573766e-21,3.441903052477123e-20,5.664402941557569e-20,5.895890082215387e-20,7.826263383154488e-20,5.45906827918835e-20,2.6586318364013097e-20,1.180083973084279e-20,6.77451163534641e-20,5.3146257414482534e-05,7.0,8.0,4.0,8.0,0.0255921371281147,-0.004520089365541935,-0.0040488592348992825,-0.0069754463620483875,-0.0040488592348992825,0.0002325148816453293,0.00027901786961592734,0.0005022321711294353,0.00027901786961592734,0.00018601190822664648,0.00044642857392318547,0.00024801588733680546,0.0005580357392318547,0.00044642857392318547,0.00018601190822664648,-0.004520089365541935,0.00271577388048172,0.00027901786961592734,0.0005022321711294353,0.00027901786961592734,-0.00027901786961592734,-9.300595411332324e-05,-0.00016741071885917336,-9.300595411332324e-05,-4.743384504624082e-20,5.71302054264489e-22,-1.359241438681748e-20,-0.0,-2.570618365197247e-20,-3.6057823952255096e-20,-0.0040488592348992825,0.00027901786961592734,0.0020868764258921146,0.00044642857392318547,0.00024801588733680546,-0.0,-7.97193861217238e-05,3.411869287658059e-20,5.082197683525802e-21,-0.00018601190822664648,-0.00012755101488437504,-7.086167897796258e-05,-0.0,-2.371692252312041e-20,-3.589501800559847e-20,-0.0069754463620483875,0.0005022321711294353,0.00044642857392318547,0.008556547574698925,0.00044642857392318547,-4.837436636637852e-21,3.40791433035429e-20,-0.0003348214377183467,-2.50953317722348e-20,-0.0,-0.00029761905898340046,2.1880436766255813e-22,-0.0016741071594879031,-0.00029761905898340046,-4.8785593876471713e-20,-0.0040488592348992825,0.00027901786961592734,0.00024801588733680546,0.00044642857392318547,0.0020868764258921146,-0.0,2.1141437524799738e-20,-9.695753486042552e-36,-7.97193861217238e-05,-1.9413779787245164e-22,2.710505431213761e-20,-7.086167897796258e-05,-0.0,-0.00012755101488437504,-0.00018601190822664648,0.0002325148816453293,-0.00027901786961592734,-0.0,-4.837436636637852e-21,-0.0,4.650297705666162e-05,-0.0,3.3881317890172014e-21,-1.6940658945086007e-21,1.7532426297907787e-21,1.1189832067425356e-38,-1.7900319986899017e-37,-0.0,1.4272177215000475e-38,9.284824696869098e-22,0.00027901786961592734,-9.300595411332324e-05,-7.97193861217238e-05,3.40791433035429e-20,2.1141437524799738e-20,-0.0,2.6573128707241267e-05,-1.1372897356262341e-20,-6.970778653367942e-21,1.0164395367051604e-20,-0.0,-4.235164736271502e-22,-0.0,1.1300010426706701e-23,1.6327918746911404e-22,0.0005022321711294353,-0.00016741071885917336,3.411869287658059e-20,-0.0003348214377183467,-9.695753486042552e-36,3.3881317890172014e-21,-1.1372897356262341e-20,0.00011160714348079637,2.9833878378370836e-36,-4.513898307157584e-36,-0.0,3.76158192263132e-37,-0.0,-4.8362341275979536e-39,-7.445215889509371e-38,0.00027901786961592734,-9.300595411332324e-05,5.082197683525802e-21,-2.50953317722348e-20,-7.97193861217238e-05,-1.6940658945086007e-21,-6.970778653367942e-21,2.9833878378370836e-36,2.6573128707241267e-05,1.3210982897799177e-22,-1.632291547550613e-22,4.3070632104911255e-21,-0.0,7.333323676355551e-21,8.414632106102055e-21,0.00018601190822664648,-4.743384504624082e-20,-0.00018601190822664648,-0.0,-1.9413779787245164e-22,1.7532426297907787e-21,1.0164395367051604e-20,-4.513898307157584e-36,1.3210982897799177e-22,2.6573128707241267e-05,-0.0,0.0,0.0,2.6366691258602604e-23,5.87566636947042e-23,0.00044642857392318547,5.71302054264489e-22,-0.00012755101488437504,-0.00029761905898340046,2.710505431213761e-20,1.1189832067425356e-38,-0.0,-0.0,-1.632291547550613e-22,-0.0,8.50340147735551e-05,-6.776263578034403e-21,-0.0,-9.819454980543465e-24,-3.808680277618097e-22,0.00024801588733680546,-1.359241438681748e-20,-7.086167897796258e-05,2.1880436766255813e-22,-7.086167897796258e-05,-1.7900319986899017e-37,-4.235164736271502e-22,3.76158192263132e-37,4.3070632104911255e-21,0.0,-6.776263578034403e-21,2.0246194253559224e-05,-0.0,6.713748029991644e-21,1.0151889107048141e-20,0.0005580357392318547,-0.0,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,0.00044642857392318547,-2.570618365197247e-20,-2.371692252312041e-20,-0.00029761905898340046,-0.00012755101488437504,1.4272177215000475e-38,1.1300010426706701e-23,-4.8362341275979536e-39,7.333323676355551e-21,2.6366691258602604e-23,-9.819454980543465e-24,6.713748029991644e-21,-0.0,8.50340147735551e-05,1.431960954282816e-20,0.00018601190822664648,-3.6057823952255096e-20,-3.589501800559847e-20,-4.8785593876471713e-20,-0.00018601190822664648,9.284824696869098e-22,1.6327918746911404e-22,-7.445215889509371e-38,8.414632106102055e-21,5.87566636947042e-23,-3.808680277618097e-22,1.0151889107048141e-20,-0.0,1.431960954282816e-20,2.6573128707241267e-05,7.0,8.0,5.0,3.0,0.04728599637746811,-0.00907738134264946,-0.008134921081364155,-0.011833900585770607,-0.01711309514939785,0.0004960317746736109,0.0005952381179668009,0.0008928571478463709,0.0013392857508733869,0.00039682540227659047,0.0007936508045531809,0.0011904762359336019,0.0008503401186317205,0.0017857142956927419,0.0017857142956927419,-0.00907738134264946,0.0056051588617265224,0.0005952381179668009,0.0008928571478463709,0.0013392857508733869,-0.0005952381179668009,-0.00019841270113829523,-0.00029761905898340046,-0.00044642857392318547,-8.402566836762659e-19,-2.256495771485456e-18,-3.245830253878479e-18,-6.1388576367454346e-18,-7.293209274668805e-18,-1.7601407509670915e-17,-0.008134921081364155,0.0005952381179668009,0.004308389965444803,0.0007936508045531809,0.0011904762359336019,-1.1384122811097797e-18,-0.0001700680295471102,-2.188733135705112e-18,-3.1620778032671786e-18,-0.00039682540227659047,-0.00022675737272948027,-0.0003401360590942204,-3.1649584597503945e-18,-4.515158756175801e-18,-7.871362200729068e-18,-0.011833900585770607,0.0008928571478463709,0.0007936508045531809,0.01101899053901434,0.0017857142956927419,-4.422553818648958e-18,-2.6226681559425208e-18,-0.00044642857392318547,-4.951702083679743e-18,-1.463672932855431e-18,-0.00039682540227659047,-3.821354813542355e-18,-0.001700680237263441,-0.0008928571478463709,-1.806944615258812e-17,-0.01711309514939785,0.0013392857508733869,0.0011904762359336019,0.0017857142956927419,0.0349702388048172,-7.057467763174867e-18,-4.12325133529614e-18,-5.482896379955677e-18,-0.0013392857508733869,-2.1429677139543907e-18,-4.227083181686859e-18,-0.0011904762359336019,-1.0255266947604842e-17,-0.0017857142956927419,-0.010714286006987095,0.0004960317746736109,-0.0005952381179668009,-1.1384122811097797e-18,-4.422553818648958e-18,-7.057467763174867e-18,9.920635056914762e-05,3.3881317890172014e-20,1.8973538018496328e-19,2.846030702774449e-19,4.557074026991303e-20,1.8323944036170485e-19,2.7415166908723155e-19,5.664403070804539e-19,6.608470507765904e-19,1.718202300999862e-18,0.0005952381179668009,-0.00019841270113829523,-0.0001700680295471102,-2.6226681559425208e-18,-4.12325133529614e-18,3.3881317890172014e-20,5.668934318237007e-05,1.1350241493207625e-19,1.6940658945086007e-19,-5.5195524687483095e-21,1.1180834903756764e-19,1.6432439176733427e-19,3.326713111547256e-19,3.965082252960754e-19,1.0007112143453474e-18,0.0008928571478463709,-0.00029761905898340046,-2.188733135705112e-18,-0.00044642857392318547,-5.482896379955677e-18,1.8973538018496328e-19,1.1350241493207625e-19,0.00014880952949170023,3.015437292225309e-19,1.5455155009805288e-19,2.0752307207730358e-19,2.6300373012246026e-19,4.575095125988051e-19,5.40224316830446e-19,1.1895247017376204e-18,0.0013392857508733869,-0.00044642857392318547,-3.1620778032671786e-18,-4.951702083679743e-18,-0.0013392857508733869,2.846030702774449e-19,1.6940658945086007e-19,3.015437292225309e-19,0.00044642857392318547,2.3223398135337717e-19,2.6325987176901613e-19,3.689953967913433e-19,5.664403070804539e-19,6.616458487543752e-19,1.2124001747826212e-18,0.00039682540227659047,-8.402566836762659e-19,-0.00039682540227659047,-1.463672932855431e-18,-2.1429677139543907e-18,4.557074026991303e-20,-5.5195524687483095e-21,1.5455155009805288e-19,2.3223398135337717e-19,5.668934318237007e-05,2.710505431213761e-20,2.710505431213761e-20,1.2587562810388879e-19,2.64338825480515e-19,2.64338825480515e-19,0.0007936508045531809,-2.256495771485456e-18,-0.00022675737272948027,-0.00039682540227659047,-4.227083181686859e-18,1.8323944036170485e-19,1.1180834903756764e-19,2.0752307207730358e-19,2.6325987176901613e-19,2.710505431213761e-20,0.00011337868636474013,1.8634724839594607e-19,3.911563667328573e-19,4.1071419928666696e-19,9.06304470649211e-19,0.0011904762359336019,-3.245830253878479e-18,-0.0003401360590942204,-3.821354813542355e-18,-0.0011904762359336019,2.7415166908723155e-19,1.6432439176733427e-19,2.6300373012246026e-19,3.689953967913433e-19,2.710505431213761e-20,1.8634724839594607e-19,0.0003401360590942204,4.3157357468493465e-19,5.02783227174152e-19,1.0551973944990622e-18,0.0008503401186317205,-6.1388576367454346e-18,-3.1649584597503945e-18,-0.001700680237263441,-1.0255266947604842e-17,5.664403070804539e-19,3.326713111547256e-19,4.575095125988051e-19,5.664403070804539e-19,1.2587562810388879e-19,3.911563667328573e-19,4.3157357468493465e-19,0.00042517005931586027,6.905177091561378e-19,2.8322016904986345e-18,0.0017857142956927419,-7.293209274668805e-18,-4.515158756175801e-18,-0.0008928571478463709,-0.0017857142956927419,6.608470507765904e-19,3.965082252960754e-19,5.40224316830446e-19,6.616458487543752e-19,2.64338825480515e-19,4.1071419928666696e-19,5.02783227174152e-19,6.905177091561378e-19,0.0008928571478463709,3.51971426212124e-32,0.0017857142956927419,-1.7601407509670915e-17,-7.871362200729068e-18,-1.806944615258812e-17,-0.010714286006987095,1.718202300999862e-18,1.0007112143453474e-18,1.1895247017376204e-18,1.2124001747826212e-18,2.64338825480515e-19,9.06304470649211e-19,1.0551973944990622e-18,2.8322016904986345e-18,3.51971426212124e-32,0.0053571430034935474,7.0,8.0,5.0,4.0,0.037942178547382355,-0.007008928339928389,-0.006279761902987957,-0.009143282659351826,-0.010803570970892906,0.00037202381645329297,0.00044642857392318547,0.0006696428754366934,0.0008035714272409678,0.00029761905898340046,0.0005952381179668009,0.0007142857066355646,0.0006377550889737904,0.0010714285308495164,0.0008928571478463709,-0.007008928339928389,0.0042708334513008595,0.00044642857392318547,0.0006696428754366934,0.0008035714272409678,-0.00044642857392318547,-0.00014880952949170023,-0.00022321428696159273,-0.0002678571327123791,-7.453889935837843e-20,-0.0,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.006279761902987957,0.00044642857392318547,0.0032823130022734404,0.0005952381179668009,0.0007142857066355646,-2.710505431213761e-20,-0.00012755101488437504,4.077139958178915e-20,5.366996614662663e-20,-0.00029761905898340046,-0.0001700680295471102,-0.0002040816325461492,-0.0,-0.0,-0.0,-0.009143282659351826,0.0006696428754366934,0.0005952381179668009,0.00839817151427269,0.0010714285308495164,-8.144433235894182e-21,4.0657581468206416e-20,-0.0003348214377183467,-8.475279227624467e-22,-0.0,-0.00029761905898340046,-3.236801812156494e-22,-0.0012755101779475808,-0.0005357142654247582,-0.0,-0.010803570970892906,0.0008035714272409678,0.0007142857066355646,0.0010714285308495164,0.013452380895614624,-0.0,4.997494388800372e-20,-1.225154855541727e-21,-0.0005357142654247582,-6.248865659491523e-21,-0.0,-0.0004761904710903764,-0.0,-0.0007142857066355646,-0.0026785715017467737,0.00037202381645329297,-0.00044642857392318547,-2.710505431213761e-20,-8.144433235894182e-21,-0.0,7.440476474585012e-05,-3.3881317890172014e-21,-0.0,-6.776263578034403e-21,4.1249530170683976e-21,0.0,3.735845192001148e-23,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00014880952949170023,-0.00012755101488437504,4.0657581468206416e-20,4.997494388800372e-20,-3.3881317890172014e-21,4.251700738677755e-05,-1.3552527156068805e-20,-1.8634724839594607e-20,1.3552527156068805e-20,-0.0,1.6940658945086007e-21,-0.0,-0.0,0.0,0.0006696428754366934,-0.00022321428696159273,4.077139958178915e-20,-0.0003348214377183467,-1.225154855541727e-21,-0.0,-1.3552527156068805e-20,0.00011160714348079637,2.8250931600199855e-22,-3.640787452922016e-23,-0.0,1.0789338953129163e-22,-0.0,-0.0,-0.0,0.0008035714272409678,-0.0002678571327123791,5.366996614662663e-20,-8.475279227624467e-22,-0.0005357142654247582,-6.776263578034403e-21,-1.8634724839594607e-20,2.8250931600199855e-22,0.00017857142665889114,2.437839700816308e-22,-0.0,2.589441348750999e-22,-0.0,-0.0,-0.0,0.00029761905898340046,-7.453889935837843e-20,-0.00029761905898340046,-0.0,-6.248865659491523e-21,4.1249530170683976e-21,1.3552527156068805e-20,-3.640787452922016e-23,2.437839700816308e-22,4.251700738677755e-05,-0.0,3.3881317890172014e-21,0.0,0.0,-0.0,0.0005952381179668009,-0.0,-0.0001700680295471102,-0.00029761905898340046,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,8.50340147735551e-05,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-6.776263578034403e-21,-0.0002040816325461492,-3.236801812156494e-22,-0.0004761904710903764,3.735845192001148e-23,1.6940658945086007e-21,1.0789338953129163e-22,2.589441348750999e-22,3.3881317890172014e-21,-0.0,0.0001360544265480712,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0,-0.0005357142654247582,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0026785715017467737,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,7.0,8.0,5.0,5.0,0.03174319863319397,-0.0057142856530845165,-0.0051190475933253765,-0.007457483094185591,-0.007457483094185591,0.00029761905898340046,0.0003571428533177823,0.0005357142654247582,0.0005357142654247582,0.0002380952355451882,0.0004761904710903764,0.0004761904710903764,0.0005102040595375001,0.0007142857066355646,0.0005102040595375001,-0.0057142856530845165,0.0034523808863013983,0.0003571428533177823,0.0005357142654247582,0.0005357142654247582,-0.0003571428533177823,-0.0001190476177725941,-0.00017857142665889114,-0.00017857142665889114,4.743384504624082e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0051190475933253765,0.0003571428533177823,0.002653061179444194,0.0004761904710903764,0.0004761904710903764,-6.776263578034403e-21,-0.0001020408162730746,3.2077653795674405e-20,3.2077653795674405e-20,-0.0002380952355451882,-0.0001360544265480712,-0.0001360544265480712,-0.0,-0.0,-0.0,-0.007457483094185591,0.0005357142654247582,0.0004761904710903764,0.006789966020733118,0.0007142857066355646,9.770077399695295e-21,3.3034284942917713e-20,-0.0002678571327123791,-1.4713231797974937e-21,-0.0,-0.0002380952355451882,-0.0,-0.0010204081190750003,-0.0003571428533177823,-0.0,-0.007457483094185591,0.0005357142654247582,0.0004761904710903764,0.0007142857066355646,0.006789966020733118,1.3552527156068805e-20,3.3034284942917713e-20,-1.4713231797974937e-21,-0.0002678571327123791,4.634708522160778e-22,-0.0,-0.0002380952355451882,-0.0,-0.0003571428533177823,-0.0010204081190750003,0.00029761905898340046,-0.0003571428533177823,-6.776263578034403e-21,9.770077399695295e-21,1.3552527156068805e-20,5.952380888629705e-05,3.3881317890172014e-21,3.3881317890172014e-21,3.3881317890172014e-21,-7.775230807468133e-23,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0001190476177725941,-0.0001020408162730746,3.3034284942917713e-20,3.3034284942917713e-20,3.3881317890172014e-21,3.40136066370178e-05,-1.1011428314305904e-20,-1.1011428314305904e-20,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,0.0,0.0005357142654247582,-0.00017857142665889114,3.2077653795674405e-20,-0.0002678571327123791,-1.4713231797974937e-21,3.3881317890172014e-21,-1.1011428314305904e-20,8.928571332944557e-05,4.904410599324979e-22,1.2634750929882712e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005357142654247582,-0.00017857142665889114,3.2077653795674405e-20,-1.4713231797974937e-21,-0.0002678571327123791,3.3881317890172014e-21,-1.1011428314305904e-20,4.904410599324979e-22,8.928571332944557e-05,1.2634750929882712e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,4.743384504624082e-20,-0.0002380952355451882,-0.0,4.634708522160778e-22,-7.775230807468133e-23,-1.3552527156068805e-20,1.2634750929882712e-22,1.2634750929882712e-22,3.40136066370178e-05,-0.0,0.0,0.0,0.0,-0.0,0.0004761904710903764,-0.0,-0.0001360544265480712,-0.0002380952355451882,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0,-0.0001360544265480712,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0003571428533177823,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0,-0.0010204081190750003,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,7.0,8.0,5.0,6.0,0.027310090139508247,-0.004825680050998926,-0.004322562366724014,-0.0062996032647788525,-0.005463435314595699,0.00024801588733680546,0.00029761905898340046,0.00044642857392318547,0.00038265305920504034,0.00019841270113829523,0.00039682540227659047,0.0003401360590942204,0.00042517005931586027,0.0005102040595375001,0.0003188775444868952,-0.004825680050998926,0.0028982425574213266,0.00029761905898340046,0.00044642857392318547,0.00038265305920504034,-0.00029761905898340046,-9.920635056914762e-05,-0.00014880952949170023,-0.00012755101488437504,-3.0102056333448527e-19,-1.0589905345955007e-18,-3.027534808683897e-19,-2.7659786446334048e-18,-1.0674853692936906e-18,1.775768850055936e-19,-0.004322562366724014,0.00029761905898340046,0.0022270812187343836,0.00039682540227659047,0.0003401360590942204,-4.811147140404426e-19,-8.50340147735551e-05,-1.0443309295871062e-18,-1.7563458737913667e-19,-0.00019841270113829523,-0.00011337868636474013,-9.718172805150971e-05,-1.120078960205884e-18,-3.0691298442800677e-19,1.1042493082210333e-18,-0.0062996032647788525,0.00044642857392318547,0.00039682540227659047,0.005700821988284588,0.0005102040595375001,-2.1122224445615604e-18,-1.2890431114266048e-18,-0.00022321428696159273,-2.786103793840455e-19,-6.2341624917916505e-19,-0.00019841270113829523,2.4367425111650353e-19,-0.0008503401186317205,-0.00025510202976875007,9.293161183025534e-19,-0.005463435314595699,0.00038265305920504034,0.0003401360590942204,0.0005102040595375001,0.003939200658351183,-1.229377152126477e-19,-2.964766792839725e-19,-2.254134119137829e-19,-0.0001530612207716331,8.805233189074645e-19,8.690086481256481e-21,-0.0001360544265480712,1.5215569641703605e-18,-0.0002040816325461492,-0.00047831633128225803,0.00024801588733680546,-0.00029761905898340046,-4.811147140404426e-19,-2.1122224445615604e-18,-1.229377152126477e-19,4.960317528457381e-05,2.371692252312041e-20,1.0164395367051604e-19,3.3881317890172014e-21,2.3291885782000266e-20,9.230879394285178e-20,1.3666497134842127e-20,2.8322015354022696e-19,9.063045094233022e-20,-2.950210094269411e-20,0.00029761905898340046,-9.920635056914762e-05,-8.50340147735551e-05,-1.2890431114266048e-18,-2.964766792839725e-19,2.371692252312041e-20,2.8344671591185033e-05,5.876155362257462e-20,7.78274608967467e-21,-4.4538421288827555e-21,5.590417451878382e-20,1.5246593050577406e-20,1.663356555773628e-19,6.797283659116053e-20,1.180083973084279e-20,0.00044642857392318547,-0.00014880952949170023,-1.0443309295871062e-18,-0.00022321428696159273,-2.254134119137829e-19,1.0164395367051604e-19,5.876155362257462e-20,7.440476474585012e-05,3.494086193784428e-20,7.709882302142545e-20,1.0438633528211636e-19,3.021015139116816e-20,2.2875475629940256e-19,7.947178447898987e-20,-2.6551890202189845e-20,0.00038265305920504034,-0.00012755101488437504,-1.7563458737913667e-19,-2.786103793840455e-19,-0.0001530612207716331,3.3881317890172014e-21,7.78274608967467e-21,3.494086193784428e-20,5.10204081365373e-05,1.9560225997682864e-35,2.2657612735582555e-20,2.7683373113760085e-20,-8.092004202225098e-21,2.8084058110011065e-20,-9.6663882096485e-21,0.00019841270113829523,-3.0102056333448527e-19,-0.00019841270113829523,-6.2341624917916505e-19,8.805233189074645e-19,2.3291885782000266e-20,-4.4538421288827555e-21,7.709882302142545e-20,1.9560225997682864e-35,2.8344671591185033e-05,1.0164395367051604e-20,-6.437450399132683e-20,6.293781405194439e-20,1.2037062152420224e-34,-1.2980923380809642e-19,0.00039682540227659047,-1.0589905345955007e-18,-0.00011337868636474013,-0.00019841270113829523,8.690086481256481e-21,9.230879394285178e-20,5.590417451878382e-20,1.0438633528211636e-19,2.2657612735582555e-20,1.0164395367051604e-20,5.668934318237007e-05,1.4311788485512987e-20,1.9557818336642866e-19,4.6404434929789915e-20,-4.046002424229976e-20,0.0003401360590942204,-3.027534808683897e-19,-9.718172805150971e-05,2.4367425111650353e-19,-0.0001360544265480712,1.3666497134842127e-20,1.5246593050577406e-20,3.021015139116816e-20,2.7683373113760085e-20,-6.437450399132683e-20,1.4311788485512987e-20,3.887269122060388e-05,-9.864539163826864e-20,-1.3188702588071153e-20,-7.081616654923499e-20,0.00042517005931586027,-2.7659786446334048e-18,-1.120078960205884e-18,-0.0008503401186317205,1.5215569641703605e-18,2.8322015354022696e-19,1.663356555773628e-19,2.2875475629940256e-19,-8.092004202225098e-21,6.293781405194439e-20,1.9557818336642866e-19,-9.864539163826864e-20,0.00021258502965793014,-3.63754871568696e-20,-1.7701260565616466e-19,0.0005102040595375001,-1.0674853692936906e-18,-3.0691298442800677e-19,-0.00025510202976875007,-0.0002040816325461492,9.063045094233022e-20,6.797283659116053e-20,7.947178447898987e-20,2.8084058110011065e-20,1.2037062152420224e-34,4.6404434929789915e-20,-1.3188702588071153e-20,-3.63754871568696e-20,0.0001020408162730746,-5.34674523826479e-35,0.0003188775444868952,1.775768850055936e-19,1.1042493082210333e-18,9.293161183025534e-19,-0.00047831633128225803,-2.950210094269411e-20,1.180083973084279e-20,-2.6551890202189845e-20,-9.6663882096485e-21,-1.2980923380809642e-19,-4.046002424229976e-20,-7.081616654923499e-20,-1.7701260565616466e-19,-5.34674523826479e-35,9.566326480126008e-05,7.0,8.0,5.0,7.0,0.023975037038326263,-0.004177296068519354,-0.0037414967082440853,-0.005454324651509523,-0.004177296068519354,0.00021258502965793014,0.00025510202976875007,0.00038265305920504034,0.00028698978712782264,0.0001700680295471102,0.0003401360590942204,0.00025510202976875007,0.00036443150020204484,0.00038265305920504034,0.00021258502965793014,-0.004177296068519354,0.0024978742003440857,0.00025510202976875007,0.00038265305920504034,0.00028698978712782264,-0.00025510202976875007,-8.50340147735551e-05,-0.00012755101488437504,-9.566326480126008e-05,-2.698111422204361e-19,-9.025551711252378e-19,-2.8187608844240486e-19,-2.206108684857248e-18,-8.1989723556071e-19,4.5619408216734414e-20,-0.0037414967082440853,0.00025510202976875007,0.0019193391781300306,0.0003401360590942204,0.00025510202976875007,-3.5236570605778894e-19,-7.288629421964288e-05,-1.0183048289864675e-18,4.404571325722362e-20,-0.0001700680295471102,-9.718172805150971e-05,-7.288629421964288e-05,-1.2540168721710829e-18,-4.2145588917309815e-19,3.7812209407994712e-19,-0.005454324651509523,0.00038265305920504034,0.0003401360590942204,0.004913751035928726,0.00038265305920504034,-1.7647885961109657e-18,-1.1853150762027614e-18,-0.00019132652960252017,9.137362102392083e-20,-5.759824041329242e-19,-0.0001700680295471102,-4.0929237921126487e-19,-0.0007288630004040897,-0.00019132652960252017,3.0454171610575866e-19,-0.004177296068519354,0.00028698978712782264,0.00025510202976875007,0.00038265305920504034,0.0024978742003440857,-2.9549119698169213e-19,-4.37125507558814e-19,-2.9988435321496126e-19,-9.566326480126008e-05,4.814827060154521e-19,-6.338387765961215e-20,-8.50340147735551e-05,6.603240658343037e-19,-0.00012755101488437504,-0.00025510202976875007,0.00021258502965793014,-0.00025510202976875007,-3.5236570605778894e-19,-1.7647885961109657e-18,-2.9549119698169213e-19,4.251700738677755e-05,-1.3552527156068805e-20,5.082197683525802e-20,8.470329472543003e-21,1.9120205542155076e-20,7.912182245639459e-20,1.8431787708532086e-20,2.4276013899145e-19,8.024570887726127e-20,5.937537979822578e-21,0.00025510202976875007,-8.50340147735551e-05,-7.288629421964288e-05,-1.1853150762027614e-18,-4.37125507558814e-19,-1.3552527156068805e-20,2.4295432012877427e-05,6.964670764649547e-20,2.904477992387739e-20,1.9415324843903243e-20,4.743384504624082e-20,2.752857078576476e-20,1.4257341906631098e-19,5.664402941557569e-20,1.93450080294877e-20,0.00038265305920504034,-0.00012755101488437504,-1.0183048289864675e-18,-0.00019132652960252017,-2.9988435321496126e-19,5.082197683525802e-20,6.964670764649547e-20,6.377550744218752e-05,3.5329158611952574e-20,6.608470637012875e-20,1.1202151606636197e-19,2.832201470778784e-20,1.9607549986033202e-19,4.738491214312948e-20,-2.5804451989250855e-34,0.00028698978712782264,-9.566326480126008e-05,4.404571325722362e-20,9.137362102392083e-20,-9.566326480126008e-05,8.470329472543003e-21,2.904477992387739e-20,3.5329158611952574e-20,3.188775372109376e-05,-2.1344634765390816e-20,1.0306734468009817e-34,-3.3435654140319896e-21,-6.06900347478625e-20,9.720049734352351e-22,-5.745856967439314e-20,0.0001700680295471102,-2.698111422204361e-19,-0.0001700680295471102,-5.759824041329242e-19,4.814827060154521e-19,1.9120205542155076e-20,1.9415324843903243e-20,6.608470637012875e-20,-2.1344634765390816e-20,2.4295432012877427e-05,1.6940658945086007e-20,-2.0328790734103208e-20,5.394669683561683e-20,9.440672107791659e-21,-6.209460681502315e-20,0.0003401360590942204,-9.025551711252378e-19,-9.718172805150971e-05,-0.0001700680295471102,-6.338387765961215e-20,7.912182245639459e-20,4.743384504624082e-20,1.1202151606636197e-19,1.0306734468009817e-34,1.6940658945086007e-20,4.8590864025754854e-05,1.9097391836237378e-20,1.5690153144422482e-19,3.3336855332527393e-20,-1.0789339205564653e-20,0.00025510202976875007,-2.8187608844240486e-19,-7.288629421964288e-05,-4.0929237921126487e-19,-8.50340147735551e-05,1.8431787708532086e-20,2.752857078576476e-20,2.832201470778784e-20,-3.3435654140319896e-21,-2.0328790734103208e-20,1.9097391836237378e-20,2.4295432012877427e-05,3.468001893272878e-20,2.879912020664621e-20,5.399150837594961e-22,0.00036443150020204484,-2.206108684857248e-18,-1.2540168721710829e-18,-0.0007288630004040897,6.603240658343037e-19,2.4276013899145e-19,1.4257341906631098e-19,1.9607549986033202e-19,-6.06900347478625e-20,5.394669683561683e-20,1.5690153144422482e-19,3.468001893272878e-20,0.00018221575010102242,-3.6826878970904935e-20,-6.743337266010817e-20,0.00038265305920504034,-8.1989723556071e-19,-4.2145588917309815e-19,-0.00019132652960252017,-0.00012755101488437504,8.024570887726127e-20,5.664402941557569e-20,4.738491214312948e-20,9.720049734352351e-22,9.440672107791659e-21,3.3336855332527393e-20,2.879912020664621e-20,-3.6826878970904935e-20,6.377550744218752e-05,9.848226378587558e-22,0.00021258502965793014,4.5619408216734414e-20,3.7812209407994712e-19,3.0454171610575866e-19,-0.00025510202976875007,5.937537979822578e-21,1.93450080294877e-20,-2.5804451989250855e-34,-5.745856967439314e-20,-6.209460681502315e-20,-1.0789339205564653e-20,5.399150837594961e-22,-6.743337266010817e-20,9.848226378587558e-22,4.251700738677755e-05,7.0,8.0,5.0,8.0,0.021371882408857346,-0.0036830357275903225,-0.0032986111473292112,-0.0048097362741827965,-0.0032986111473292112,0.00018601190822664648,0.00022321428696159273,0.0003348214377183467,0.00022321428696159273,0.00014880952949170023,0.00029761905898340046,0.00019841270113829523,0.0003188775444868952,0.00029761905898340046,0.00014880952949170023,-0.0036830357275903225,0.0021949405781924725,0.00022321428696159273,0.0003348214377183467,0.00022321428696159273,-0.00022321428696159273,-7.440476474585012e-05,-0.00011160714348079637,-7.440476474585012e-05,-2.371692252312041e-20,2.8689826039960963e-22,-1.2811378173982694e-20,-0.0,-0.0,-2.457094450031593e-20,-0.0032986111473292112,0.00022321428696159273,0.0016865079523995519,0.00029761905898340046,0.00019841270113829523,-0.0,-6.377550744218752e-05,2.2408628140029825e-20,3.3881317890172014e-21,-0.00014880952949170023,-8.50340147735551e-05,-5.668934318237007e-05,-0.0,-0.0,-3.522378678790583e-20,-0.0048097362741827965,0.0003348214377183467,0.00029761905898340046,0.00431813346222043,0.00029761905898340046,-5.444404241008861e-21,2.2408628140029825e-20,-0.00016741071885917336,2.8689826039960963e-22,-0.0,-0.00014880952949170023,-5.64237288394698e-37,-0.0006377550889737904,-0.00014880952949170023,6.694292826802721e-22,-0.0032986111473292112,0.00022321428696159273,0.00019841270113829523,0.00029761905898340046,0.0016865079523995519,-0.0,1.886991878337243e-20,-6.7181762163657e-36,-6.377550744218752e-05,2.240146058771031e-21,1.6940658945086007e-21,-5.668934318237007e-05,-0.0,-8.50340147735551e-05,-0.00014880952949170023,0.00018601190822664648,-0.00022321428696159273,-0.0,-5.444404241008861e-21,-0.0,3.720238237292506e-05,1.6940658945086007e-21,-3.3881317890172014e-21,1.6940658945086007e-21,-7.975809862890994e-22,4.22944666917295e-39,4.6761458673977864e-38,-0.0,-0.0,-5.71114242260174e-22,0.00022321428696159273,-7.440476474585012e-05,-6.377550744218752e-05,2.2408628140029825e-20,1.886991878337243e-20,1.6940658945086007e-21,2.1258503693388775e-05,-7.469542713343275e-21,-5.3021142314687514e-21,8.470329472543003e-21,-0.0,-4.235164736271502e-22,-0.0,-0.0,-1.956392841650131e-22,0.0003348214377183467,-0.00011160714348079637,2.2408628140029825e-20,-0.00016741071885917336,-6.7181762163657e-36,-3.3881317890172014e-21,-7.469542713343275e-21,5.5803571740398183e-05,1.862989403723488e-36,-2.633107345841924e-36,-0.0,1.88079096131566e-37,-0.0,-0.0,6.21984708426422e-38,0.00022321428696159273,-7.440476474585012e-05,3.3881317890172014e-21,2.8689826039960963e-22,-6.377550744218752e-05,1.6940658945086007e-21,-5.3021142314687514e-21,1.862989403723488e-36,2.1258503693388775e-05,-2.1284403758529577e-22,-8.197092793652433e-23,4.083910237622206e-21,-0.0,-0.0,8.276550297148952e-21,0.00014880952949170023,-2.371692252312041e-20,-0.00014880952949170023,-0.0,2.240146058771031e-21,-7.975809862890994e-22,8.470329472543003e-21,-2.633107345841924e-36,-2.1284403758529577e-22,2.1258503693388775e-05,-0.0,0.0,0.0,0.0,-3.4504185295321227e-22,0.00029761905898340046,2.8689826039960963e-22,-8.50340147735551e-05,-0.00014880952949170023,1.6940658945086007e-21,4.22944666917295e-39,-0.0,-0.0,-8.197092793652433e-23,-0.0,4.251700738677755e-05,-0.0,-0.0,-0.0,-1.9126549851855676e-22,0.00019841270113829523,-1.2811378173982694e-20,-5.668934318237007e-05,-5.64237288394698e-37,-5.668934318237007e-05,4.6761458673977864e-38,-4.235164736271502e-22,1.88079096131566e-37,4.083910237622206e-21,0.0,-0.0,1.6196954675251618e-05,-0.0,-0.0,1.1087340714759684e-20,0.0003188775444868952,-0.0,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,0.00029761905898340046,-0.0,-0.0,-0.00014880952949170023,-8.50340147735551e-05,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,4.251700738677755e-05,0.0,0.00014880952949170023,-2.457094450031593e-20,-3.522378678790583e-20,6.694292826802721e-22,-0.00014880952949170023,-5.71114242260174e-22,-1.956392841650131e-22,6.21984708426422e-38,8.276550297148952e-21,-3.4504185295321227e-22,-1.9126549851855676e-22,1.1087340714759684e-20,-0.0,0.0,2.1258503693388775e-05,7.0,8.0,6.0,3.0,0.04076318070292473,-0.007670776452869177,-0.0068735829554498196,-0.0086805559694767,-0.014473497867584229,0.00041335978312417865,0.0004960317746736109,0.0006377550889737904,0.0011160714784637094,0.0003306878206785768,0.0005668934318237007,0.0009920635493472219,0.0005314626032486558,0.0012755101779475808,0.0014880952658131719,-0.007670776452869177,0.004706396255642176,0.0004960317746736109,0.0006377550889737904,0.0011160714784637094,-0.0004960317746736109,-0.0001653439103392884,-0.00021258502965793014,-0.00037202381645329297,6.776263578034403e-20,-1.692711865184094e-36,-5.929230630780102e-21,6.002210635042793e-37,6.4776001301300925e-37,0.0,-0.0068735829554498196,0.0004960317746736109,0.0036173199769109488,0.0005668934318237007,0.0009920635493472219,-0.0,-0.00014172335795592517,-3.082668529085573e-20,-5.994077713395138e-20,-0.0003306878206785768,-0.0001619695540284738,-0.00028344671591185033,1.6858342841909617e-19,1.0789339367123366e-19,-7.486608266839471e-34,-0.0086805559694767,0.0006377550889737904,0.0005668934318237007,0.006395266391336918,0.0012755101779475808,3.478007224393075e-20,-3.082668529085573e-20,-0.00025510202976875007,-3.0085657477804664e-20,-0.0,-0.00022675737272948027,2.964615315390051e-20,-0.0007971939048729837,-0.0005102040595375001,3.540251958026928e-18,-0.014473497867584229,0.0011160714784637094,0.0009920635493472219,0.0012755101779475808,0.02935444936156273,-2.710505431213761e-20,-6.587000776473149e-20,-3.0085657477804664e-20,-0.0011160714784637094,-1.931456552112376e-20,1.3753954682513417e-19,-0.0009920635493472219,1.786021081664283e-18,-0.0012755101779475808,-0.008928571827709675,0.00041335978312417865,-0.0004960317746736109,-0.0,3.478007224393075e-20,-2.710505431213761e-20,8.26719551696442e-05,-0.0,-6.776263578034403e-21,-0.0,5.212510638822994e-22,-0.0,-7.233811519026243e-38,-0.0,0.0,0.0,0.0004960317746736109,-0.0001653439103392884,-0.00014172335795592517,-3.082668529085573e-20,-6.587000776473149e-20,-0.0,4.724111931864172e-05,1.0275561494354055e-20,1.9980258506121417e-20,-2.0328790734103208e-20,-0.0,1.6940658945086007e-21,-1.71491735632762e-37,-1.8507428622932044e-37,-0.0,0.0006377550889737904,-0.00021258502965793014,-3.082668529085573e-20,-0.00025510202976875007,-3.0085657477804664e-20,-6.776263578034403e-21,1.0275561494354055e-20,8.50340147735551e-05,1.0028552761866077e-20,-3.009265538105056e-36,3.76158192263132e-37,3.76158192263132e-37,-0.0,-0.0,0.0,0.0011160714784637094,-0.00037202381645329297,-5.994077713395138e-20,-3.0085657477804664e-20,-0.0011160714784637094,-0.0,1.9980258506121417e-20,1.0028552761866077e-20,0.00037202381645329297,-6.018531076210112e-36,7.52316384526264e-37,7.52316384526264e-37,-0.0,-0.0,0.0,0.0003306878206785768,6.776263578034403e-20,-0.0003306878206785768,-0.0,-1.931456552112376e-20,5.212510638822994e-22,-2.0328790734103208e-20,-3.009265538105056e-36,-6.018531076210112e-36,4.724111931864172e-05,3.3881317890172014e-21,0.0,-2.5589544874832285e-36,-1.434892767713807e-36,0.0,0.0005668934318237007,-1.692711865184094e-36,-0.0001619695540284738,-0.00022675737272948027,1.3753954682513417e-19,-0.0,-0.0,3.76158192263132e-37,7.52316384526264e-37,3.3881317890172014e-21,6.478781870100647e-05,-8.470329472543003e-21,-6.743337266010817e-20,-4.315735682225861e-20,2.9946432608180403e-34,0.0009920635493472219,-5.929230630780102e-21,-0.00028344671591185033,2.964615315390051e-20,-0.0009920635493472219,-7.233811519026243e-38,1.6940658945086007e-21,3.76158192263132e-37,7.52316384526264e-37,0.0,-8.470329472543003e-21,0.00028344671591185033,6.844899156556335e-36,5.4759192534985866e-36,-0.0,0.0005314626032486558,6.002210635042793e-37,1.6858342841909617e-19,-0.0007971939048729837,1.786021081664283e-18,-0.0,-1.71491735632762e-37,-0.0,-0.0,-2.5589544874832285e-36,-6.743337266010817e-20,6.844899156556335e-36,0.0001594387722434476,-1.479680842262287e-19,-7.080504226246586e-19,0.0012755101779475808,6.4776001301300925e-37,1.0789339367123366e-19,-0.0005102040595375001,-0.0012755101779475808,0.0,-1.8507428622932044e-37,-0.0,-0.0,-1.434892767713807e-36,-4.315735682225861e-20,5.4759192534985866e-36,-1.479680842262287e-19,0.0005102040595375001,6.571102960705341e-34,0.0014880952658131719,0.0,-7.486608266839471e-34,3.540251958026928e-18,-0.008928571827709675,0.0,-0.0,0.0,0.0,0.0,2.9946432608180403e-34,-0.0,-7.080504226246586e-19,6.571102960705341e-34,0.004464285913854837,7.0,8.0,6.0,4.0,0.032669004052877426,-0.005920493043959141,-0.005303996615111828,-0.006701743230223656,-0.009130527265369892,0.0003100198518950492,0.00037202381645329297,0.00047831633128225803,0.0006696428754366934,0.00024801588733680546,0.00042517005931586027,0.0005952381179668009,0.00039859695243649185,0.0007653061184100807,0.0007440476329065859,-0.005920493043959141,0.003585600992664695,0.00037202381645329297,0.00047831633128225803,0.0006696428754366934,-0.00037202381645329297,-0.00012400794366840273,-0.0001594387722434476,-0.00022321428696159273,4.0657581468206416e-20,-5.016797423876121e-20,-7.201393700090885e-20,-1.6594931053251226e-19,-1.699320947090756e-19,-3.7172646283065783e-19,-0.005303996615111828,0.00037202381645329297,0.00275550689548254,0.00042517005931586027,0.0005952381179668009,-6.776263578034403e-21,-0.00010629251482896507,-1.7147342622712025e-20,-2.6523791910757184e-20,-0.00024801588733680546,-0.00012147716188337654,-0.0001700680295471102,-1.2643756808314786e-19,-1.2947206723560157e-19,-2.8322015354022696e-19,-0.006701743230223656,0.00047831633128225803,0.00042517005931586027,0.004872980527579784,0.0007653061184100807,5.019871563074492e-21,2.7091400985269084e-20,-0.00019132652960252017,-8.49660473545378e-20,-1.3552527156068805e-20,-0.0001700680295471102,-5.2877575587414846e-20,-0.0005978954141028225,-0.0003061224415432662,7.292919037671375e-19,-0.009130527265369892,0.0006696428754366934,0.0005952381179668009,0.0007653061184100807,0.011295351199805737,-0.0,3.363168059741719e-20,-8.49660473545378e-20,-0.00044642857392318547,-3.652376574401827e-20,-5.2877575587414846e-20,-0.00039682540227659047,6.467823437249864e-19,-0.0005102040595375001,-0.0022321429569274187,0.0003100198518950492,-0.00037202381645329297,-6.776263578034403e-21,5.019871563074492e-21,-0.0,6.200397183420137e-05,-0.0,3.3881317890172014e-21,-0.0,1.3031276597057485e-22,1.3329897156063944e-36,2.444890496466121e-36,4.274018968939215e-36,2.399381344598547e-36,1.3492092274110417e-35,0.00037202381645329297,-0.00012400794366840273,-0.00010629251482896507,2.7091400985269084e-20,3.363168059741719e-20,-0.0,3.543083948898129e-05,-1.0018672638748756e-20,-1.318697067866362e-20,-1.1858461261560205e-20,8.470329472543003e-22,1.6940658945086007e-21,-8.590778034297396e-36,-8.9758571840545e-36,-1.4135029712853259e-35,0.00047831633128225803,-0.0001594387722434476,-1.7147342622712025e-20,-0.00019132652960252017,-8.49660473545378e-20,3.3881317890172014e-21,-1.0018672638748756e-20,6.377550744218752e-05,1.3161966624296478e-35,4.513898307157584e-36,1.8881344215583318e-20,5.64237288394698e-36,6.637972550547461e-20,3.3986418295580265e-20,-8.0967666323499e-35,0.0006696428754366934,-0.00022321428696159273,-2.6523791910757184e-20,-8.49660473545378e-20,-0.00044642857392318547,-0.0,-1.318697067866362e-20,1.3161966624296478e-35,0.00014880952949170023,4.513898307157584e-36,6.018531076210112e-36,4.4056469836361075e-20,-7.18072649924502e-35,5.664402941557569e-20,2.4781765050356993e-19,0.00024801588733680546,4.0657581468206416e-20,-0.00024801588733680546,-1.3552527156068805e-20,-3.652376574401827e-20,1.3031276597057485e-22,-1.1858461261560205e-20,4.513898307157584e-36,4.513898307157584e-36,3.543083948898129e-05,-0.0,-3.3881317890172014e-21,2.5916403907349292e-36,3.009265538105056e-36,1.2037062152420224e-35,0.00042517005931586027,-5.016797423876121e-20,-0.00012147716188337654,-0.0001700680295471102,-5.2877575587414846e-20,1.3329897156063944e-36,8.470329472543003e-22,1.8881344215583318e-20,6.018531076210112e-36,-0.0,4.8590864025754854e-05,-3.3881317890172014e-21,5.0575027879493996e-20,2.5894414093355167e-20,-6.50525633598821e-35,0.0005952381179668009,-7.201393700090885e-20,-0.0001700680295471102,-5.2877575587414846e-20,-0.00039682540227659047,2.444890496466121e-36,1.6940658945086007e-21,5.64237288394698e-36,4.4056469836361075e-20,-3.3881317890172014e-21,-3.3881317890172014e-21,0.00011337868636474013,-5.754421372809345e-35,4.315735682225861e-20,1.8881343569348464e-19,0.00039859695243649185,-1.6594931053251226e-19,-1.2643756808314786e-19,-0.0005978954141028225,6.467823437249864e-19,4.274018968939215e-36,-8.590778034297396e-36,6.637972550547461e-20,-7.18072649924502e-35,2.5916403907349292e-36,5.0575027879493996e-20,-5.754421372809345e-35,0.00011957908282056451,3.866822178853919e-20,-2.4781765050356993e-19,0.0007653061184100807,-1.699320947090756e-19,-1.2947206723560157e-19,-0.0003061224415432662,-0.0005102040595375001,2.399381344598547e-36,-8.9758571840545e-36,3.3986418295580265e-20,5.664402941557569e-20,3.009265538105056e-36,2.5894414093355167e-20,4.315735682225861e-20,3.866822178853919e-20,0.0002040816325461492,3.398641894181512e-19,0.0007440476329065859,-3.7172646283065783e-19,-2.8322015354022696e-19,7.292919037671375e-19,-0.0022321429569274187,1.3492092274110417e-35,-1.4135029712853259e-35,-8.0967666323499e-35,2.4781765050356993e-19,1.2037062152420224e-35,-6.50525633598821e-35,1.8881343569348464e-19,-2.4781765050356993e-19,3.398641894181512e-19,0.0007440476329065859,7.0,8.0,6.0,5.0,0.027310090139508247,-0.004825680050998926,-0.004322562366724014,-0.005463435314595699,-0.0062996032647788525,0.00024801588733680546,0.00029761905898340046,0.00038265305920504034,0.00044642857392318547,0.00019841270113829523,0.0003401360590942204,0.00039682540227659047,0.0003188775444868952,0.0005102040595375001,0.00042517005931586027,-0.004825680050998926,0.0028982425574213266,0.00029761905898340046,0.00038265305920504034,0.00044642857392318547,-0.00029761905898340046,-9.920635056914762e-05,-0.00012755101488437504,-0.00014880952949170023,-2.9424429975645087e-19,-3.933839382730685e-19,-1.169313991035959e-18,-1.4104578449598746e-19,-1.3689395562149126e-18,-3.2514989226163048e-18,-0.004322562366724014,0.00029761905898340046,0.0022270812187343836,0.0003401360590942204,0.00039682540227659047,-4.743384504624082e-19,-8.50340147735551e-05,-2.662650447838154e-19,-1.1576190013429547e-18,-0.00019841270113829523,-9.718172805150971e-05,-0.00011337868636474013,8.210291288314122e-19,-5.82646998328264e-19,-1.551652586589607e-18,-0.005463435314595699,0.00038265305920504034,0.0003401360590942204,0.003939200658351183,0.0005102040595375001,-1.1762136079228405e-19,-2.964766792839725e-19,-0.0001530612207716331,-1.466590502273482e-18,8.74138001566438e-19,-0.0001360544265480712,-1.103429882426723e-18,-0.00047831633128225803,-0.0002040816325461492,-3.6312869067511454e-18,-0.0062996032647788525,0.00044642857392318547,0.00039682540227659047,0.0005102040595375001,0.005700821988284588,-2.1212850353526913e-18,-1.2860784961112148e-18,-1.4899212348481168e-18,-0.00022321428696159273,-6.150121458544146e-19,-8.341231911329735e-19,-0.00019841270113829523,-2.9439074691402456e-18,-0.00025510202976875007,-0.0008503401186317205,0.00024801588733680546,-0.00029761905898340046,-4.743384504624082e-19,-1.1762136079228405e-19,-2.1212850353526913e-18,4.960317528457381e-05,2.371692252312041e-20,-0.0,1.0164395367051604e-19,2.224938456300343e-20,1.3666497134842127e-20,9.230879394285178e-20,-2.950210094269411e-20,9.063045094233022e-20,2.8322015354022696e-19,0.00029761905898340046,-9.920635056914762e-05,-8.50340147735551e-05,-2.964766792839725e-19,-1.2860784961112148e-18,2.371692252312041e-20,2.8344671591185033e-05,7.78274608967467e-21,5.876155362257462e-20,-4.4538421288827555e-21,1.5246593050577406e-20,5.505714157152952e-20,1.180083973084279e-20,6.797283659116053e-20,1.663356555773628e-19,0.00038265305920504034,-0.00012755101488437504,-2.662650447838154e-19,-0.0001530612207716331,-1.4899212348481168e-18,-0.0,7.78274608967467e-21,5.10204081365373e-05,5.56895922356602e-20,1.3240768367662246e-34,2.7683373113760085e-20,6.797283659116053e-20,-9.6663882096485e-21,8.634648901226662e-20,1.8611610311352579e-19,0.00044642857392318547,-0.00014880952949170023,-1.1576190013429547e-18,-1.466590502273482e-18,-0.00022321428696159273,1.0164395367051604e-19,5.876155362257462e-20,5.56895922356602e-20,7.440476474585012e-05,7.709882302142545e-20,7.552537686233327e-20,1.0438633528211636e-19,1.3275945101094922e-19,1.5737081427018088e-19,2.2875475629940256e-19,0.00019841270113829523,-2.9424429975645087e-19,-0.00019841270113829523,8.74138001566438e-19,-6.150121458544146e-19,2.224938456300343e-20,-4.4538421288827555e-21,1.3240768367662246e-34,7.709882302142545e-20,2.8344671591185033e-05,-6.268043809681823e-20,1.1858461261560205e-20,-1.2980923380809642e-19,6.018531076210112e-35,6.293781405194439e-20,0.0003401360590942204,-3.933839382730685e-19,-9.718172805150971e-05,-0.0001360544265480712,-8.341231911329735e-19,1.3666497134842127e-20,1.5246593050577406e-20,2.7683373113760085e-20,7.552537686233327e-20,-6.268043809681823e-20,3.887269122060388e-05,3.186655148723719e-20,-7.081616654923499e-20,3.860012802201988e-20,7.398404211311434e-20,0.00039682540227659047,-1.169313991035959e-18,-0.00011337868636474013,-1.103429882426723e-18,-0.00019841270113829523,9.230879394285178e-20,5.505714157152952e-20,6.797283659116053e-20,1.0438633528211636e-19,1.1858461261560205e-20,3.186655148723719e-20,5.668934318237007e-05,1.0115005575898799e-19,1.1953540503094347e-19,1.9557818336642866e-19,0.0003188775444868952,-1.4104578449598746e-19,8.210291288314122e-19,-0.00047831633128225803,-2.9439074691402456e-18,-2.950210094269411e-20,1.180083973084279e-20,-9.6663882096485e-21,1.3275945101094922e-19,-1.2980923380809642e-19,-7.081616654923499e-20,1.0115005575898799e-19,9.566326480126008e-05,1.60499133798674e-19,3.9448522586110626e-19,0.0005102040595375001,-1.3689395562149126e-18,-5.82646998328264e-19,-0.0002040816325461492,-0.00025510202976875007,9.063045094233022e-20,6.797283659116053e-20,8.634648901226662e-20,1.5737081427018088e-19,6.018531076210112e-35,3.860012802201988e-20,1.1953540503094347e-19,1.60499133798674e-19,0.0001020408162730746,3.8841622755619884e-19,0.00042517005931586027,-3.2514989226163048e-18,-1.551652586589607e-18,-3.6312869067511454e-18,-0.0008503401186317205,2.8322015354022696e-19,1.663356555773628e-19,1.8611610311352579e-19,2.2875475629940256e-19,6.293781405194439e-20,7.398404211311434e-20,1.9557818336642866e-19,3.9448522586110626e-19,3.8841622755619884e-19,0.00021258502965793014,7.0,8.0,6.0,6.0,0.02348305471241474,-0.004074546508491039,-0.003649376332759857,-0.004613601602613926,-0.004613601602613926,0.00020667989156208932,0.00024801588733680546,0.0003188775444868952,0.0003188775444868952,0.0001653439103392884,0.00028344671591185033,0.00028344671591185033,0.0002657313016243279,0.00036443150020204484,0.0002657313016243279,-0.004074546508491039,0.0024329177103936672,0.00024801588733680546,0.0003188775444868952,0.0003188775444868952,-0.00024801588733680546,-8.26719551696442e-05,-0.00010629251482896507,-0.00010629251482896507,4.743384504624082e-20,5.929230630780102e-21,5.929230630780102e-21,-4.361838455802328e-36,-2.1244913377657747e-36,-5.4607735712806554e-36,-0.003649376332759857,0.00024801588733680546,0.0018693985184654593,0.00028344671591185033,0.00028344671591185033,-0.0,-7.086167897796258e-05,-1.5413342645427866e-20,-1.5413342645427866e-20,-0.0001653439103392884,-8.09847770142369e-05,-8.09847770142369e-05,8.429171420954808e-20,6.165337058171147e-20,8.429171420954808e-20,-0.004613601602613926,0.0003188775444868952,0.00028344671591185033,0.003306962549686432,0.00036443150020204484,1.3055053950213452e-20,-9.484111206854197e-21,-0.00012755101488437504,-3.0470991165109395e-21,6.776263578034403e-21,-0.00011337868636474013,4.029177699817618e-20,-0.00039859695243649185,-0.00014577258843928576,3.4770332838452794e-19,-0.004613601602613926,0.0003188775444868952,0.00028344671591185033,0.00036443150020204484,0.003306962549686432,-0.0,-9.484111206854197e-21,-3.0470991165109395e-21,-0.00012755101488437504,4.0064945333403385e-21,4.029177699817618e-20,-0.00011337868636474013,5.168096771224254e-19,-0.00014577258843928576,-0.00039859695243649185,0.00020667989156208932,-0.00024801588733680546,-0.0,1.3055053950213452e-20,-0.0,4.13359775848221e-05,-0.0,-3.3881317890172014e-21,-3.3881317890172014e-21,1.7361147197247474e-36,-4.340286855363807e-38,-4.340286855363807e-38,-0.0,-0.0,-0.0,0.00024801588733680546,-8.26719551696442e-05,-7.086167897796258e-05,-9.484111206854197e-21,-9.484111206854197e-21,-0.0,2.362055965932086e-05,5.137780747177028e-21,5.137780747177028e-21,-1.3552527156068805e-20,-1.6940658945086007e-21,-1.6940658945086007e-21,1.246239610048152e-36,6.069975186699998e-37,1.560221045989645e-36,0.0003188775444868952,-0.00010629251482896507,-1.5413342645427866e-20,-0.00012755101488437504,-3.0470991165109395e-21,-3.3881317890172014e-21,5.137780747177028e-21,4.251700738677755e-05,1.0156997391617118e-21,-2.256949153578792e-36,-1.88079096131566e-37,-1.88079096131566e-37,0.0,0.0,0.0,0.0003188775444868952,-0.00010629251482896507,-1.5413342645427866e-20,-3.0470991165109395e-21,-0.00012755101488437504,-3.3881317890172014e-21,5.137780747177028e-21,1.0156997391617118e-21,4.251700738677755e-05,-2.256949153578792e-36,-1.88079096131566e-37,-1.88079096131566e-37,0.0,0.0,0.0,0.0001653439103392884,4.743384504624082e-20,-0.0001653439103392884,6.776263578034403e-21,4.0064945333403385e-21,1.7361147197247474e-36,-1.3552527156068805e-20,-2.256949153578792e-36,-2.256949153578792e-36,2.362055965932086e-05,-0.0,0.0,1.3815575096580193e-36,0.0,1.504632769052528e-36,0.00028344671591185033,5.929230630780102e-21,-8.09847770142369e-05,-0.00011337868636474013,4.029177699817618e-20,-4.340286855363807e-38,-1.6940658945086007e-21,-1.88079096131566e-37,-1.88079096131566e-37,-0.0,3.2393909350503236e-05,-2.7043119163772703e-21,-3.3716686330054087e-20,-1.233067395478358e-20,3.222641582611117e-35,0.00028344671591185033,5.929230630780102e-21,-8.09847770142369e-05,4.029177699817618e-20,-0.00011337868636474013,-4.340286855363807e-38,-1.6940658945086007e-21,-1.88079096131566e-37,-1.88079096131566e-37,0.0,-2.7043119163772703e-21,3.2393909350503236e-05,4.653085620064263e-35,-1.233067395478358e-20,-3.3716686330054087e-20,0.0002657313016243279,-4.361838455802328e-36,8.429171420954808e-20,-0.00039859695243649185,5.168096771224254e-19,-0.0,1.246239610048152e-36,0.0,0.0,1.3815575096580193e-36,-3.3716686330054087e-20,4.653085620064263e-35,7.97193861217238e-05,-6.764255241985606e-20,-6.95406669693753e-20,0.00036443150020204484,-2.1244913377657747e-36,6.165337058171147e-20,-0.00014577258843928576,-0.00014577258843928576,-0.0,6.069975186699998e-37,0.0,0.0,0.0,-1.233067395478358e-20,-1.233067395478358e-20,-6.764255241985606e-20,5.8309036830905825e-05,7.184001008654904e-35,0.0002657313016243279,-5.4607735712806554e-36,8.429171420954808e-20,3.4770332838452794e-19,-0.00039859695243649185,-0.0,1.560221045989645e-36,0.0,0.0,1.504632769052528e-36,3.222641582611117e-35,-3.3716686330054087e-20,-6.95406669693753e-20,7.184001008654904e-35,7.97193861217238e-05,7.0,8.0,6.0,7.0,0.02060682885348797,-0.0035266338381916285,-0.0031584061216562986,-0.003993561491370201,-0.0035266338381916285,0.00017715420108288527,0.00021258502965793014,0.000273323617875576,0.00023915816564112902,0.00014172335795592517,0.00024295432376675308,0.00021258502965793014,0.0002277696767123416,0.000273323617875576,0.00017715420108288527,-0.0035266338381916285,0.002096746349707246,0.00021258502965793014,0.000273323617875576,0.00023915816564112902,-0.00021258502965793014,-7.086167897796258e-05,-9.110787505051121e-05,-7.97193861217238e-05,2.371692252312041e-20,-1.4823076576950256e-21,1.0968917370051788e-20,-4.452849800128783e-35,1.1174586458957721e-20,1.690079594814434e-20,-0.0031584061216562986,0.00021258502965793014,0.0016110185533761978,0.00024295432376675308,0.00021258502965793014,-6.776263578034403e-21,-6.073858094168827e-05,-1.5115722414796433e-20,-6.776263578034403e-21,-0.00014172335795592517,-6.941552419448271e-05,-6.073858094168827e-05,-4.288203391799705e-35,8.893845946170154e-21,2.3456297622267984e-20,-0.003993561491370201,0.000273323617875576,0.00024295432376675308,0.002850157907232642,0.000273323617875576,-4.2115125406313136e-21,-1.659803007249146e-20,-0.00010932944860542193,-8.744974236594957e-22,1.3552527156068805e-20,-9.718172805150971e-05,-1.3474722903081237e-20,-0.00034165452234447,-0.00010932944860542193,2.4478735187766434e-19,-0.0035266338381916285,0.00023915816564112902,0.00021258502965793014,0.000273323617875576,0.002096746349707246,-6.776263578034403e-21,-1.5093679343941602e-20,-1.204908357969463e-20,-7.97193861217238e-05,-1.8616430738683974e-22,-2.2368569657044958e-20,-7.086167897796258e-05,3.5358285063037244e-19,-9.110787505051121e-05,-0.00021258502965793014,0.00017715420108288527,-0.00021258502965793014,-6.776263578034403e-21,-4.2115125406313136e-21,-6.776263578034403e-21,3.543083948898129e-05,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,-1.9340627768870933e-22,-3.6169054792534286e-39,-2.2503021559703997e-37,0.0,-2.2707942962971772e-37,1.2599444040119917e-21,0.00021258502965793014,-7.086167897796258e-05,-6.073858094168827e-05,-1.659803007249146e-20,-1.5093679343941602e-20,1.6940658945086007e-21,2.0246194253559224e-05,5.038574003633217e-21,4.857465474233502e-21,-6.776263578034403e-21,4.235164736271502e-22,-0.0,0.0,-7.636921478804283e-37,8.019739822763196e-23,0.000273323617875576,-9.110787505051121e-05,-1.5115722414796433e-20,-0.00010932944860542193,-1.204908357969463e-20,1.6940658945086007e-21,5.038574003633217e-21,3.644314710982144e-05,4.016361327863804e-21,-1.504632769052528e-36,-9.4039548065783e-38,-5.64237288394698e-37,0.0,-5.629894825589615e-37,-6.081200820541888e-37,0.00023915816564112902,-7.97193861217238e-05,-6.776263578034403e-21,-8.744974236594957e-22,-7.97193861217238e-05,-0.0,4.857465474233502e-21,4.016361327863804e-21,2.6573128707241267e-05,4.1904692657768724e-22,-1.034435028723613e-36,-3.65630552075274e-21,1.484283171047619e-35,-3.724862152985907e-21,-8.457042076160303e-21,0.00014172335795592517,2.371692252312041e-20,-0.00014172335795592517,1.3552527156068805e-20,-1.8616430738683974e-22,-1.9340627768870933e-22,-6.776263578034403e-21,-1.504632769052528e-36,4.1904692657768724e-22,2.0246194253559224e-05,-1.6940658945086007e-21,0.0,0.0,0.0,9.00215551347149e-22,0.00024295432376675308,-1.4823076576950256e-21,-6.941552419448271e-05,-9.718172805150971e-05,-2.2368569657044958e-20,-3.6169054792534286e-39,4.235164736271502e-22,-9.4039548065783e-38,-1.034435028723613e-36,-1.6940658945086007e-21,2.7766209313995205e-05,6.391019555815602e-21,0.0,-9.238524460320495e-37,-4.036466727844193e-36,0.00021258502965793014,1.0968917370051788e-20,-6.073858094168827e-05,-1.3474722903081237e-20,-7.086167897796258e-05,-2.2503021559703997e-37,-0.0,-5.64237288394698e-37,-3.65630552075274e-21,0.0,6.391019555815602e-21,2.0246194253559224e-05,1.4294011305999016e-35,-2.964615315390051e-21,-1.0170935263769601e-20,0.0002277696767123416,-4.452849800128783e-35,-4.288203391799705e-35,-0.00034165452234447,3.5358285063037244e-19,0.0,0.0,0.0,1.484283171047619e-35,0.0,0.0,1.4294011305999016e-35,6.8330904468894e-05,-3.623708303828329e-20,-4.3831689967248325e-20,0.000273323617875576,1.1174586458957721e-20,8.893845946170154e-21,-0.00010932944860542193,-9.110787505051121e-05,-2.2707942962971772e-37,-7.636921478804283e-37,-5.629894825589615e-37,-3.724862152985907e-21,0.0,-9.238524460320495e-37,-2.964615315390051e-21,-3.623708303828329e-20,3.644314710982144e-05,-8.542963038908548e-21,0.00017715420108288527,1.690079594814434e-20,2.3456297622267984e-20,2.4478735187766434e-19,-0.00021258502965793014,1.2599444040119917e-21,8.019739822763196e-23,-6.081200820541888e-37,-8.457042076160303e-21,9.00215551347149e-22,-4.036466727844193e-36,-1.0170935263769601e-20,-4.3831689967248325e-20,-8.542963038908548e-21,3.543083948898129e-05,7.0,8.0,6.0,8.0,0.018363509327173233,-0.0031090560369193554,-0.0027842733543366194,-0.0035209397319704294,-0.0027842733543366194,0.0001550099259475246,0.00018601190822664648,0.00023915816564112902,0.00018601190822664648,0.00012400794366840273,0.00021258502965793014,0.0001653439103392884,0.00019929847621824592,0.00021258502965793014,0.00012400794366840273,-0.0031090560369193554,0.0018424036679789424,0.00018601190822664648,0.00023915816564112902,0.00018601190822664648,-0.00018601190822664648,-6.200397183420137e-05,-7.97193861217238e-05,-6.200397183420137e-05,2.371692252312041e-20,-2.656629477707563e-20,1.652893363220718e-21,-8.297465526625613e-20,-3.1742419465391683e-20,2.3269440429949096e-20,-0.0027842733543366194,0.00018601190822664648,0.0014155464014038444,0.00021258502965793014,0.0001653439103392884,-3.3881317890172014e-21,-5.3146257414482534e-05,-8.573671311356013e-21,1.6940658945086007e-20,-0.00012400794366840273,-6.073858094168827e-05,-4.724111931864172e-05,-6.321878404157393e-20,-2.2429155790153065e-20,1.0228322534352602e-20,-0.0035209397319704294,0.00023915816564112902,0.00021258502965793014,0.002504517324268818,0.00021258502965793014,4.6640647501255656e-21,1.2063392834939517e-20,-9.566326480126008e-05,-8.140738388118969e-21,-3.3881317890172014e-21,-8.50340147735551e-05,-8.517918611055728e-22,-0.00029894770705141127,-8.50340147735551e-05,1.290748008217259e-19,-0.0027842733543366194,0.00018601190822664648,0.0001653439103392884,0.00021258502965793014,0.0014155464014038444,-0.0,1.1692784416566649e-20,-2.360167946168558e-20,-5.3146257414482534e-05,1.1746783851416974e-22,-1.4387100695346526e-20,-4.724111931864172e-05,1.1800840377077644e-19,-6.073858094168827e-05,-0.00012400794366840273,0.0001550099259475246,-0.00018601190822664648,-3.3881317890172014e-21,4.6640647501255656e-21,-0.0,3.100198591710068e-05,-0.0,1.6940658945086007e-21,1.6940658945086007e-21,-8.537659066347979e-22,3.048042762466912e-37,-1.2422350577695185e-37,6.99641463148417e-37,-5.191134599736503e-37,-1.8309048878154072e-22,0.00018601190822664648,-6.200397183420137e-05,-5.3146257414482534e-05,1.2063392834939517e-20,1.1692784416566649e-20,-0.0,1.7715419744490646e-05,-5.009336319374378e-21,-4.327984256081468e-21,-5.082197683525802e-21,8.470329472543003e-22,4.235164736271502e-22,-4.2996493232126523e-36,-1.7988855369121585e-36,-2.5244858476175045e-23,0.00023915816564112902,-7.97193861217238e-05,-8.573671311356013e-21,-9.566326480126008e-05,-2.360167946168558e-20,1.6940658945086007e-21,-5.009336319374378e-21,3.188775372109376e-05,2.1276146414661635e-36,2.633107345841924e-36,9.440672107791659e-21,-9.4039548065783e-38,3.3189862752737306e-20,9.440672107791659e-21,-1.4670169498262148e-35,0.00018601190822664648,-6.200397183420137e-05,1.6940658945086007e-20,-8.140738388118969e-21,-5.3146257414482534e-05,1.6940658945086007e-21,-4.327984256081468e-21,2.1276146414661635e-36,1.7715419744490646e-05,-1.0850071145411594e-22,5.64237288394698e-37,-8.957716769869857e-22,1.3720673693906912e-35,2.325925051799885e-21,-6.283141552227406e-21,0.00012400794366840273,2.371692252312041e-20,-0.00012400794366840273,-3.3881317890172014e-21,1.1746783851416974e-22,-8.537659066347979e-22,-5.082197683525802e-21,2.633107345841924e-36,-1.0850071145411594e-22,1.7715419744490646e-05,-0.0,8.470329472543003e-22,1.0712718246551735e-36,5.64237288394698e-37,-7.218725537109732e-22,0.00021258502965793014,-2.656629477707563e-20,-6.073858094168827e-05,-8.50340147735551e-05,-1.4387100695346526e-20,3.048042762466912e-37,8.470329472543003e-22,9.440672107791659e-21,5.64237288394698e-37,-0.0,2.4295432012877427e-05,-1.0271803032835446e-21,2.5287513939746998e-20,7.192892803709769e-21,-1.0755995006651375e-35,0.0001653439103392884,1.652893363220718e-21,-4.724111931864172e-05,-8.517918611055728e-22,-4.724111931864172e-05,-1.2422350577695185e-37,4.235164736271502e-22,-9.4039548065783e-38,-8.957716769869857e-22,8.470329472543003e-22,-1.0271803032835446e-21,1.3497462532541249e-05,3.385423730368188e-36,1.2705494208814505e-21,-1.3391374560895324e-21,0.00019929847621824592,-8.297465526625613e-20,-6.321878404157393e-20,-0.00029894770705141127,1.1800840377077644e-19,6.99641463148417e-37,-4.2996493232126523e-36,3.3189862752737306e-20,1.3720673693906912e-35,1.0712718246551735e-36,2.5287513939746998e-20,3.385423730368188e-36,5.9789541410282254e-05,3.540251919252837e-20,-2.950210094269411e-20,0.00021258502965793014,-3.1742419465391683e-20,-2.2429155790153065e-20,-8.50340147735551e-05,-6.073858094168827e-05,-5.191134599736503e-37,-1.7988855369121585e-36,9.440672107791659e-21,2.325925051799885e-21,5.64237288394698e-37,7.192892803709769e-21,1.2705494208814505e-21,3.540251919252837e-20,2.4295432012877427e-05,5.267341141792413e-21,0.00012400794366840273,2.3269440429949096e-20,1.0228322534352602e-20,1.290748008217259e-19,-0.00012400794366840273,-1.8309048878154072e-22,-2.5244858476175045e-23,-1.4670169498262148e-35,-6.283141552227406e-21,-7.218725537109732e-22,-1.0755995006651375e-35,-1.3391374560895324e-21,-2.950210094269411e-20,5.267341141792413e-21,1.7715419744490646e-05,7.0,8.0,7.0,3.0,0.0358382947742939,-0.006643282249569893,-0.0059523810632526875,-0.006643282249569893,-0.01254251692444086,0.00035430840216577053,0.00042517005931586027,0.00047831633128225803,0.0009566326625645161,0.00028344671591185033,0.00042517005931586027,0.0008503401186317205,0.00035430840216577053,0.0009566326625645161,0.0012755101779475808,-0.006643282249569893,0.004056830890476704,0.00042517005931586027,0.00047831633128225803,0.0009566326625645161,-0.00042517005931586027,-0.00014172335795592517,-0.0001594387722434476,-0.0003188775444868952,5.421010862427522e-20,1.6432120582950623e-20,1.0082450848916009e-19,5.421010862427522e-20,1.0627447196549668e-19,8.49660486470075e-19,-0.0059523810632526875,0.00042517005931586027,0.003117913845926523,0.00042517005931586027,0.0008503401186317205,-1.3552527156068805e-20,-0.00012147716188337654,-9.052500237789461e-22,4.6345886052057646e-20,-0.00028344671591185033,-0.00012147716188337654,-0.00024295432376675308,6.922294560362397e-20,8.131516293641283e-20,6.473603878767961e-19,-0.006643282249569893,0.00047831633128225803,0.00042517005931586027,0.004056830890476704,0.0009566326625645161,-7.006827249086488e-21,-2.860707859521466e-20,-0.0001594387722434476,5.757772245669199e-20,6.776263578034403e-21,-0.00014172335795592517,4.8656007632462185e-20,-0.00042517005931586027,-0.0003188775444868952,8.49660486470075e-19,-0.01254251692444086,0.0009566326625645161,0.0008503401186317205,0.0009566326625645161,0.0252976194024086,-0.0,-4.2074247820651384e-20,-4.805984951770727e-20,-0.0009566326625645161,3.661780341652719e-21,-3.5575383784680614e-20,-0.0008503401186317205,-0.0,-0.0009566326625645161,-0.0076530613005161285,0.00035430840216577053,-0.00042517005931586027,-1.3552527156068805e-20,-7.006827249086488e-21,-0.0,7.086167897796258e-05,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,-6.463469349144667e-22,-1.64324901135656e-37,-4.251709490239248e-37,1.1503674086041156e-21,1.431408848261415e-36,-3.363574774395537e-36,0.00042517005931586027,-0.00014172335795592517,-0.00012147716188337654,-2.860707859521466e-20,-4.2074247820651384e-20,3.3881317890172014e-21,4.049238850711845e-05,8.98789008102761e-21,1.602027834195298e-20,-1.3552527156068805e-20,8.470329472543003e-22,-1.6940658945086007e-21,-2.0032123043548499e-22,-1.9118583618890392e-23,-3.2595046377548603e-35,0.00047831633128225803,-0.0001594387722434476,-9.052500237789461e-22,-0.0001594387722434476,-4.805984951770727e-20,3.3881317890172014e-21,8.98789008102761e-21,5.3146257414482534e-05,1.6209945040297708e-20,-8.583362006881884e-22,-6.4655784981479636e-21,-1.6285300063190295e-22,-2.0328790734103208e-20,-0.0,-4.33197305022638e-35,0.0009566326625645161,-0.0003188775444868952,4.6345886052057646e-20,5.757772245669199e-20,-0.0009566326625645161,-0.0,1.602027834195298e-20,1.6209945040297708e-20,0.0003188775444868952,-3.76158192263132e-36,-5.64237288394698e-36,-9.440671784674232e-20,-7.52316384526264e-36,-1.0620756080875938e-19,-8.49660486470075e-19,0.00028344671591185033,5.421010862427522e-20,-0.00028344671591185033,6.776263578034403e-21,3.661780341652719e-21,-6.463469349144667e-22,-1.3552527156068805e-20,-8.583362006881884e-22,-3.76158192263132e-36,4.049238850711845e-05,3.3881317890172014e-21,-6.776263578034403e-21,-7.910368486548755e-22,-4.461003054770666e-23,1.2037062152420224e-35,0.00042517005931586027,1.6432120582950623e-20,-0.00012147716188337654,-0.00014172335795592517,-3.5575383784680614e-20,-1.64324901135656e-37,8.470329472543003e-22,-6.4655784981479636e-21,-5.64237288394698e-36,3.3881317890172014e-21,4.049238850711845e-05,1.0164395367051604e-20,-2.0732808686611408e-20,-0.0,-2.422521378503513e-35,0.0008503401186317205,1.0082450848916009e-19,-0.00024295432376675308,4.8656007632462185e-20,-0.0008503401186317205,-4.251709490239248e-37,-1.6940658945086007e-21,-1.6285300063190295e-22,-9.440671784674232e-20,-6.776263578034403e-21,1.0164395367051604e-20,0.00024295432376675308,-4.342746683517412e-22,-8.092004848459951e-20,-6.473603878767961e-19,0.00035430840216577053,5.421010862427522e-20,6.922294560362397e-20,-0.00042517005931586027,-0.0,1.1503674086041156e-21,-2.0032123043548499e-22,-2.0328790734103208e-20,-7.52316384526264e-36,-7.910368486548755e-22,-2.0732808686611408e-20,-4.342746683517412e-22,7.086167897796258e-05,-0.0,-3.658909837926686e-36,0.0009566326625645161,1.0627447196549668e-19,8.131516293641283e-20,-0.0003188775444868952,-0.0009566326625645161,1.431408848261415e-36,-1.9118583618890392e-23,-0.0,-1.0620756080875938e-19,-4.461003054770666e-23,-0.0,-8.092004848459951e-20,-0.0,0.0003188775444868952,-8.49660486470075e-19,0.0012755101779475808,8.49660486470075e-19,6.473603878767961e-19,8.49660486470075e-19,-0.0076530613005161285,-3.363574774395537e-36,-3.2595046377548603e-35,-4.33197305022638e-35,-8.49660486470075e-19,1.2037062152420224e-35,-2.422521378503513e-35,-6.473603878767961e-19,-3.658909837926686e-36,-8.49660486470075e-19,0.0038265306502580643,7.0,8.0,7.0,4.0,0.028696322813630104,-0.0051259566098451614,-0.004591836594045162,-0.0051259566098451614,-0.007908163592219353,0.0002657313016243279,0.0003188775444868952,0.0003587372484616935,0.0005739795742556453,0.00021258502965793014,0.0003188775444868952,0.0005102040595375001,0.0002657313016243279,0.0005739795742556453,0.0006377550889737904,-0.0051259566098451614,0.003090454963967204,0.0003188775444868952,0.0003587372484616935,0.0005739795742556453,-0.0003188775444868952,-0.00010629251482896507,-0.00011957908282056451,-0.00019132652960252017,-1.467842595226946e-19,1.5040145571790363e-19,2.392052269114268e-19,-2.816713095420097e-19,9.193390017960626e-20,-1.1319015425083748e-18,-0.004591836594045162,0.0003188775444868952,0.002374878618866205,0.0003188775444868952,0.0005102040595375001,3.8624702394796095e-19,-9.110787505051121e-05,-1.9550002772323947e-19,-3.1289326761221788e-19,-0.00021258502965793014,-9.110787505051121e-05,-0.00014577258843928576,-7.942598064503946e-19,-4.573977915173222e-19,-2.5618629362943603e-18,-0.0051259566098451614,0.0003587372484616935,0.0003188775444868952,0.003090454963967204,0.0005739795742556453,2.3944748743332827e-19,-2.437487490704216e-19,-0.00011957908282056451,-3.357642687120321e-19,-7.860465750519907e-19,-0.00010629251482896507,-3.25364695557074e-19,-0.0003188775444868952,-0.00019132652960252017,-1.1319015425083748e-18,-0.007908163592219353,0.0005739795742556453,0.0005102040595375001,0.0005739795742556453,0.009736394509673119,3.529004266250162e-19,-4.436423983160247e-19,-4.781223364757437e-19,-0.00038265305920504034,-1.30451459420622e-18,-4.349704435691719e-19,-0.0003401360590942204,-2.303929616531697e-19,-0.00038265305920504034,-0.0019132653251290321,0.0002657313016243279,-0.0003188775444868952,3.8624702394796095e-19,2.3944748743332827e-19,3.529004266250162e-19,5.3146257414482534e-05,-2.0328790734103208e-20,-1.0164395367051604e-20,-2.0328790734103208e-20,-2.1012563754716256e-20,-2.3039734635665108e-20,-3.686357541706417e-20,-1.1650145033135388e-20,-2.832201470778784e-20,-1.180083973084279e-20,0.0003188775444868952,-0.00010629251482896507,-9.110787505051121e-05,-2.437487490704216e-19,-4.436423983160247e-19,-2.0328790734103208e-20,3.0369290470844135e-05,1.358556591295691e-20,2.2010810810941505e-20,4.3493479725464974e-20,5.082197683525802e-21,9.317362419797304e-21,3.4313949506408586e-20,6.432004578021757e-21,1.2475173522067357e-19,0.0003587372484616935,-0.00011957908282056451,-1.9550002772323947e-19,-0.00011957908282056451,-4.781223364757437e-19,-1.0164395367051604e-20,1.358556591295691e-20,3.98596930608619e-05,1.4019286434921726e-20,2.6405015560260532e-20,1.8172602699712742e-21,-3.8075908291535505e-23,5.930028730824245e-20,3.3881317890172014e-20,1.3275945101094922e-19,0.0005739795742556453,-0.00019132652960252017,-3.1289326761221788e-19,-3.357642687120321e-19,-0.00038265305920504034,-2.0328790734103208e-20,2.2010810810941505e-20,1.4019286434921726e-20,0.00012755101488437504,4.24830236772689e-20,2.0763932212924887e-34,4.0824743845569586e-21,5.664402941557569e-20,1.1711175452705316e-20,2.9240147059865344e-19,0.00021258502965793014,-1.467842595226946e-19,-0.00021258502965793014,-7.860465750519907e-19,-1.30451459420622e-18,-2.1012563754716256e-20,4.3493479725464974e-20,2.6405015560260532e-20,4.24830236772689e-20,3.0369290470844135e-05,4.573977915173222e-20,7.115076756936123e-20,7.85271054453631e-20,5.749103651343584e-20,2.5961846761619285e-19,0.0003188775444868952,1.5040145571790363e-19,-9.110787505051121e-05,-0.00010629251482896507,-4.349704435691719e-19,-2.3039734635665108e-20,5.082197683525802e-21,1.8172602699712742e-21,2.0763932212924887e-34,4.573977915173222e-20,3.0369290470844135e-05,1.0164395367051604e-20,2.7357515651202477e-20,2.456395547037471e-20,1.2475173522067357e-19,0.0005102040595375001,2.392052269114268e-19,-0.00014577258843928576,-3.25364695557074e-19,-0.0003401360590942204,-3.686357541706417e-20,9.317362419797304e-21,-3.8075908291535505e-23,4.0824743845569586e-21,7.115076756936123e-20,1.0164395367051604e-20,9.718172805150971e-05,5.474427342952841e-20,6.6937943171977194e-21,3.331317728749306e-20,0.0002657313016243279,-2.816713095420097e-19,-7.942598064503946e-19,-0.0003188775444868952,-2.303929616531697e-19,-1.1650145033135388e-20,3.4313949506408586e-20,5.930028730824245e-20,5.664402941557569e-20,7.85271054453631e-20,2.7357515651202477e-20,5.474427342952841e-20,5.3146257414482534e-05,-1.8395640561998372e-20,-1.180083973084279e-20,0.0005739795742556453,9.193390017960626e-20,-4.573977915173222e-19,-0.00019132652960252017,-0.00038265305920504034,-2.832201470778784e-20,6.432004578021757e-21,3.3881317890172014e-20,1.1711175452705316e-20,5.749103651343584e-20,2.456395547037471e-20,6.6937943171977194e-21,-1.8395640561998372e-20,0.00012755101488437504,2.9240147059865344e-19,0.0006377550889737904,-1.1319015425083748e-18,-2.5618629362943603e-18,-1.1319015425083748e-18,-0.0019132653251290321,-1.180083973084279e-20,1.2475173522067357e-19,1.3275945101094922e-19,2.9240147059865344e-19,2.5961846761619285e-19,1.2475173522067357e-19,3.331317728749306e-20,-1.180083973084279e-20,2.9240147059865344e-19,0.0006377550889737904,7.0,8.0,7.0,5.0,0.023975037038326263,-0.004177296068519354,-0.0037414967082440853,-0.004177296068519354,-0.005454324651509523,0.00021258502965793014,0.00025510202976875007,0.00028698978712782264,0.00038265305920504034,0.0001700680295471102,0.00025510202976875007,0.0003401360590942204,0.00021258502965793014,0.00038265305920504034,0.00036443150020204484,-0.004177296068519354,0.0024978742003440857,0.00025510202976875007,0.00028698978712782264,0.00038265305920504034,-0.00025510202976875007,-8.50340147735551e-05,-9.566326480126008e-05,-0.00012755101488437504,-2.630348786424017e-19,-3.327471015783508e-19,-9.8752119909273e-19,-1.2197274440461925e-19,-1.0304596277024748e-18,-2.570248893344423e-18,-0.0037414967082440853,0.00025510202976875007,0.0019193391781300306,0.00025510202976875007,0.0003401360590942204,-3.3881317890172014e-19,-7.288629421964288e-05,-8.924854717824522e-21,-1.1032708569539597e-18,-0.0001700680295471102,-7.288629421964288e-05,-9.718172805150971e-05,2.387360604077444e-19,-5.814409689951617e-19,-1.577697091958875e-18,-0.004177296068519354,0.00028698978712782264,0.00025510202976875007,0.0024978742003440857,0.00038265305920504034,-2.9911734999197147e-19,-4.351382578359436e-19,-9.566326480126008e-05,-1.0782540200982122e-18,4.87890977618477e-19,-8.50340147735551e-05,-8.173105383876801e-19,-0.00025510202976875007,-0.00012755101488437504,-2.570248893344423e-18,-0.005454324651509523,0.00038265305920504034,0.0003401360590942204,0.00038265305920504034,0.004913751035928726,-1.7554087815549207e-18,-1.1853150762027614e-18,-6.597779715336539e-19,-0.00019132652960252017,-5.706768676840091e-19,-1.1544499690186875e-18,-0.0001700680295471102,-1.7211709488207383e-18,-0.00019132652960252017,-0.0007288630004040897,0.00021258502965793014,-0.00025510202976875007,-3.3881317890172014e-19,-2.9911734999197147e-19,-1.7554087815549207e-18,4.251700738677755e-05,-1.3552527156068805e-20,8.470329472543003e-21,5.082197683525802e-20,1.8045537983322437e-20,1.8431787708532086e-20,7.912182245639459e-20,5.537830413787604e-21,8.024570887726127e-20,2.4276013899145e-19,0.00025510202976875007,-8.50340147735551e-05,-7.288629421964288e-05,-4.351382578359436e-19,-1.1853150762027614e-18,-1.3552527156068805e-20,2.4295432012877427e-05,2.907464566763453e-20,6.964670764649547e-20,1.9415324843903243e-20,2.710505431213761e-20,4.743384504624082e-20,1.9253539948315235e-20,5.664402941557569e-20,1.4257341906631098e-19,0.00028698978712782264,-9.566326480126008e-05,-8.924854717824522e-21,-9.566326480126008e-05,-6.597779715336539e-19,8.470329472543003e-21,2.907464566763453e-20,3.188775372109376e-05,4.2066195734376063e-20,-2.1274946414370357e-20,-4.773801486711305e-21,2.832201470778784e-20,-5.726581074227414e-20,3.5575383784680614e-20,6.06900347478625e-20,0.00038265305920504034,-0.00012755101488437504,-1.1032708569539597e-18,-1.0782540200982122e-18,-0.00019132652960252017,5.082197683525802e-20,6.964670764649547e-20,4.2066195734376063e-20,6.377550744218752e-05,6.608470637012875e-20,5.664402941557569e-20,1.1202151606636197e-19,8.49660473545378e-20,1.0076101591479811e-19,1.9607549986033202e-19,0.0001700680295471102,-2.630348786424017e-19,-0.0001700680295471102,4.87890977618477e-19,-5.706768676840091e-19,1.8045537983322437e-20,1.9415324843903243e-20,-2.1274946414370357e-20,6.608470637012875e-20,2.4295432012877427e-05,-2.202285662861181e-20,1.6940658945086007e-20,-6.287951074345648e-20,9.440672107791659e-21,5.394669683561683e-20,0.00025510202976875007,-3.327471015783508e-19,-7.288629421964288e-05,-8.50340147735551e-05,-1.1544499690186875e-18,1.8431787708532086e-20,2.710505431213761e-20,-4.773801486711305e-21,5.664402941557569e-20,-2.202285662861181e-20,2.4295432012877427e-05,4.894251908596097e-20,-1.2759184208241592e-21,5.759824041329242e-20,1.4257341906631098e-19,0.0003401360590942204,-9.8752119909273e-19,-9.718172805150971e-05,-8.173105383876801e-19,-0.0001700680295471102,7.912182245639459e-20,4.743384504624082e-20,2.832201470778784e-20,1.1202151606636197e-19,1.6940658945086007e-20,4.894251908596097e-20,4.8590864025754854e-05,6.473603361780078e-20,7.013070524006703e-20,1.5690153144422482e-19,0.00021258502965793014,-1.2197274440461925e-19,2.387360604077444e-19,-0.00025510202976875007,-1.7211709488207383e-18,5.537830413787604e-21,1.9253539948315235e-20,-5.726581074227414e-20,8.49660473545378e-20,-6.287951074345648e-20,-1.2759184208241592e-21,6.473603361780078e-20,4.251700738677755e-05,4.743384504624082e-20,2.4276013899145e-19,0.00038265305920504034,-1.0304596277024748e-18,-5.814409689951617e-19,-0.00012755101488437504,-0.00019132652960252017,8.024570887726127e-20,5.664402941557569e-20,3.5575383784680614e-20,1.0076101591479811e-19,9.440672107791659e-21,5.759824041329242e-20,7.013070524006703e-20,4.743384504624082e-20,6.377550744218752e-05,1.9607549986033202e-19,0.00036443150020204484,-2.570248893344423e-18,-1.577697091958875e-18,-2.570248893344423e-18,-0.0007288630004040897,2.4276013899145e-19,1.4257341906631098e-19,6.06900347478625e-20,1.9607549986033202e-19,5.394669683561683e-20,1.4257341906631098e-19,1.5690153144422482e-19,2.4276013899145e-19,1.9607549986033202e-19,0.00018221575010102242,7.0,8.0,7.0,6.0,0.02060682885348797,-0.0035266338381916285,-0.0031584061216562986,-0.0035266338381916285,-0.003993561491370201,0.00017715420108288527,0.00021258502965793014,0.00023915816564112902,0.000273323617875576,0.00014172335795592517,0.00021258502965793014,0.00024295432376675308,0.00017715420108288527,0.000273323617875576,0.0002277696767123416,-0.0035266338381916285,0.002096746349707246,0.00021258502965793014,0.00023915816564112902,0.000273323617875576,-0.00021258502965793014,-7.086167897796258e-05,-7.97193861217238e-05,-9.110787505051121e-05,2.371692252312041e-20,1.2239466790933238e-20,-2.964615315390051e-21,2.0328790734103208e-20,3.2269215382426576e-37,0.0,-0.0031584061216562986,0.00021258502965793014,0.0016110185533761978,0.00021258502965793014,0.00024295432376675308,-0.0,-6.073858094168827e-05,-5.229335262261156e-21,-1.5115722414796433e-20,-0.00014172335795592517,-6.073858094168827e-05,-6.941552419448271e-05,2.9518592856156885e-20,7.52316384526264e-37,-0.0,-0.0035266338381916285,0.00023915816564112902,0.00021258502965793014,0.002096746349707246,0.000273323617875576,-6.859115733021819e-21,-1.532657269164076e-20,-7.97193861217238e-05,-1.3563952588279694e-20,-0.0,-7.086167897796258e-05,-1.2079026871634196e-20,-0.00021258502965793014,-9.110787505051121e-05,-0.0,-0.003993561491370201,0.000273323617875576,0.00024295432376675308,0.000273323617875576,0.002850157907232642,-6.776263578034403e-21,-1.8080337730186485e-20,-1.3563952588279694e-20,-0.00010932944860542193,5.17367303484037e-21,-1.2079026871634196e-20,-9.718172805150971e-05,-0.0,-0.00010932944860542193,-0.00034165452234447,0.00017715420108288527,-0.00021258502965793014,-0.0,-6.859115733021819e-21,-6.776263578034403e-21,3.543083948898129e-05,1.6940658945086007e-21,-0.0,1.6940658945086007e-21,-1.0911937025478137e-21,-6.207429898312145e-39,2.531834115737093e-38,1.4979535083706212e-21,-0.0,-0.0,0.00021258502965793014,-7.086167897796258e-05,-6.073858094168827e-05,-1.532657269164076e-20,-1.8080337730186485e-20,1.6940658945086007e-21,2.0246194253559224e-05,4.844092451732706e-21,5.038574003633217e-21,-5.082197683525802e-21,-0.0,8.470329472543003e-22,1.2219936311481296e-22,-2.502665527682786e-38,-0.0,0.00023915816564112902,-7.97193861217238e-05,-5.229335262261156e-21,-7.97193861217238e-05,-1.3563952588279694e-20,-0.0,4.844092451732706e-21,2.6573128707241267e-05,4.521317529426565e-21,3.8784287082850973e-22,-4.0798219943798904e-21,-5.4072740137825225e-37,-1.0164395367051604e-20,-0.0,-0.0,0.000273323617875576,-9.110787505051121e-05,-1.5115722414796433e-20,-1.3563952588279694e-20,-0.00010932944860542193,1.6940658945086007e-21,5.038574003633217e-21,4.521317529426565e-21,3.644314710982144e-05,-1.504632769052528e-36,-7.52316384526264e-37,9.4039548065783e-38,-1.504632769052528e-36,-9.4039548065783e-38,-0.0,0.00014172335795592517,2.371692252312041e-20,-0.00014172335795592517,-0.0,5.17367303484037e-21,-1.0911937025478137e-21,-5.082197683525802e-21,3.8784287082850973e-22,-1.504632769052528e-36,2.0246194253559224e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,6.766761502306413e-22,-5.839552617666808e-38,-0.0,0.00021258502965793014,1.2239466790933238e-20,-6.073858094168827e-05,-7.086167897796258e-05,-1.2079026871634196e-20,-6.207429898312145e-39,-0.0,-4.0798219943798904e-21,-7.52316384526264e-37,-1.6940658945086007e-21,2.0246194253559224e-05,3.451150592452168e-21,-1.16695320787421e-20,-0.0,-0.0,0.00024295432376675308,-2.964615315390051e-21,-6.941552419448271e-05,-1.2079026871634196e-20,-9.718172805150971e-05,2.531834115737093e-38,8.470329472543003e-22,-5.4072740137825225e-37,9.4039548065783e-38,-1.6940658945086007e-21,3.451150592452168e-21,2.7766209313995205e-05,-2.256949153578792e-36,-9.4039548065783e-38,-0.0,0.00017715420108288527,2.0328790734103208e-20,2.9518592856156885e-20,-0.00021258502965793014,-0.0,1.4979535083706212e-21,1.2219936311481296e-22,-1.0164395367051604e-20,-1.504632769052528e-36,6.766761502306413e-22,-1.16695320787421e-20,-2.256949153578792e-36,3.543083948898129e-05,-1.6940658945086007e-21,-0.0,0.000273323617875576,3.2269215382426576e-37,7.52316384526264e-37,-9.110787505051121e-05,-0.00010932944860542193,-0.0,-2.502665527682786e-38,-0.0,-9.4039548065783e-38,-5.839552617666808e-38,-0.0,-9.4039548065783e-38,-1.6940658945086007e-21,3.644314710982144e-05,-0.0,0.0002277696767123416,0.0,-0.0,-0.0,-0.00034165452234447,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,6.8330904468894e-05,7.0,8.0,7.0,7.0,0.018077319487929344,-0.0030521138105541468,-0.00273323617875576,-0.0030521138105541468,-0.0030521138105541468,0.00015184645599219948,0.00018221575010102242,0.00020499271340668201,0.00020499271340668201,0.00012147716188337654,0.00018221575010102242,0.00018221575010102242,0.00015184645599219948,0.00020499271340668201,0.00015184645599219948,-0.0030521138105541468,0.0018069727811962366,0.00018221575010102242,0.00020499271340668201,0.00020499271340668201,-0.00018221575010102242,-6.073858094168827e-05,-6.8330904468894e-05,-6.8330904468894e-05,2.0328790734103208e-20,1.737332448865239e-20,1.6392152572845253e-20,-0.0,2.842331323277326e-21,-3.362125279026148e-21,-0.00273323617875576,0.00018221575010102242,0.0013883104547858238,0.00018221575010102242,0.00018221575010102242,-0.0,-5.206164132687263e-05,6.325723885238002e-22,-0.0,-0.00012147716188337654,-5.206164132687263e-05,-5.206164132687263e-05,3.659774671005348e-20,8.163737078763498e-21,3.7269449679189215e-20,-0.0030521138105541468,0.00020499271340668201,0.00018221575010102242,0.0018069727811962366,0.00020499271340668201,-6.33022703145114e-21,-1.2656396515815508e-20,-6.8330904468894e-05,-8.825209342373859e-22,-0.0,-6.073858094168827e-05,-3.3881317890172014e-21,-0.00018221575010102242,-6.8330904468894e-05,2.2316959322155974e-21,-0.0030521138105541468,0.00020499271340668201,0.00018221575010102242,0.00020499271340668201,0.0018069727811962366,-0.0,-1.314822243684434e-20,-3.13826866747332e-22,-6.8330904468894e-05,2.6450008854145875e-21,-2.0782555441741447e-21,-6.073858094168827e-05,-0.0,-6.8330904468894e-05,-0.00018221575010102242,0.00015184645599219948,-0.00018221575010102242,-0.0,-6.33022703145114e-21,-0.0,3.0369290470844135e-05,1.6940658945086007e-21,1.6940658945086007e-21,1.6940658945086007e-21,5.3527698553358e-22,-5.7196658167460854e-37,-4.897257873122371e-41,5.695039562715645e-22,-4.08302891627135e-38,6.808210904839367e-22,0.00018221575010102242,-6.073858094168827e-05,-5.206164132687263e-05,-1.2656396515815508e-20,-1.314822243684434e-20,1.6940658945086007e-21,1.735388104862068e-05,4.567518878591276e-21,4.577070229726849e-21,-6.776263578034403e-21,-8.470329472543003e-22,-8.470329472543003e-22,2.9514701916493297e-22,-9.209789770322682e-38,3.664041810230483e-22,0.00020499271340668201,-6.8330904468894e-05,6.325723885238002e-22,-6.8330904468894e-05,-3.13826866747332e-22,1.6940658945086007e-21,4.567518878591276e-21,2.2776968762627803e-05,6.269839716534697e-22,-2.6338038252803166e-23,-4.751655826073472e-21,3.9751944258873413e-23,-1.6940658945086007e-21,-4.235164736271502e-22,-6.703190925378124e-23,0.00020499271340668201,-6.8330904468894e-05,-0.0,-8.825209342373859e-22,-6.8330904468894e-05,1.6940658945086007e-21,4.577070229726849e-21,6.269839716534697e-22,2.2776968762627803e-05,-4.051517428442289e-24,-5.1247250613302964e-23,-4.515597543179018e-21,1.158025089670375e-22,-5.239272839695926e-22,-7.148435379881899e-22,0.00012147716188337654,2.0328790734103208e-20,-0.00012147716188337654,-0.0,2.6450008854145875e-21,5.3527698553358e-22,-6.776263578034403e-21,-2.6338038252803166e-23,-4.051517428442289e-24,1.735388104862068e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,6.184217132535243e-22,2.82118644197349e-37,8.731412392347887e-22,0.00018221575010102242,1.737332448865239e-20,-5.206164132687263e-05,-6.073858094168827e-05,-2.0782555441741447e-21,-5.7196658167460854e-37,-8.470329472543003e-22,-4.751655826073472e-21,-5.1247250613302964e-23,-1.6940658945086007e-21,1.735388104862068e-05,1.9805517005616373e-21,-1.4161180221717248e-20,-1.2705494208814505e-21,-1.366593349688079e-22,0.00018221575010102242,1.6392152572845253e-20,-5.206164132687263e-05,-3.3881317890172014e-21,-6.073858094168827e-05,-4.897257873122371e-41,-8.470329472543003e-22,3.9751944258873413e-23,-4.515597543179018e-21,-1.6940658945086007e-21,1.9805517005616373e-21,1.735388104862068e-05,1.060051846903291e-22,-1.4506963730139113e-21,-1.4856537002080306e-20,0.00015184645599219948,-0.0,3.659774671005348e-20,-0.00018221575010102242,-0.0,5.695039562715645e-22,2.9514701916493297e-22,-1.6940658945086007e-21,1.158025089670375e-22,6.184217132535243e-22,-1.4161180221717248e-20,1.060051846903291e-22,3.0369290470844135e-05,-8.144547336735513e-22,7.09284214308044e-23,0.00020499271340668201,2.842331323277326e-21,8.163737078763498e-21,-6.8330904468894e-05,-6.8330904468894e-05,-4.08302891627135e-38,-9.209789770322682e-38,-4.235164736271502e-22,-5.239272839695926e-22,2.82118644197349e-37,-1.2705494208814505e-21,-1.4506963730139113e-21,-8.144547336735513e-22,2.2776968762627803e-05,-6.711091398898349e-22,0.00015184645599219948,-3.362125279026148e-21,3.7269449679189215e-20,2.2316959322155974e-21,-0.00018221575010102242,6.808210904839367e-22,3.664041810230483e-22,-6.703190925378124e-23,-7.148435379881899e-22,8.731412392347887e-22,-1.366593349688079e-22,-1.4856537002080306e-20,7.09284214308044e-23,-6.711091398898349e-22,3.0369290470844135e-05,7.0,8.0,7.0,8.0,0.01610553078353405,-0.002690529450774193,-0.002409297041594982,-0.002690529450774193,-0.002409297041594982,0.00013286565081216395,0.0001594387722434476,0.00017936862423084676,0.0001594387722434476,0.00010629251482896507,0.0001594387722434476,0.00014172335795592517,0.00013286565081216395,0.0001594387722434476,0.00010629251482896507,-0.002690529450774193,0.0015877444529905915,0.0001594387722434476,0.00017936862423084676,0.0001594387722434476,-0.0001594387722434476,-5.3146257414482534e-05,-5.9789541410282254e-05,-5.3146257414482534e-05,-6.367304836953332e-20,8.189952726509033e-20,1.1918439610788542e-19,-1.5159008840874819e-19,7.325106961751286e-20,-5.08074753251442e-20,-0.002409297041594982,0.0001594387722434476,0.0012198331532999873,0.0001594387722434476,0.00014172335795592517,2.168404344971009e-19,-4.5553937525255606e-05,-9.193094042397697e-20,-3.4728350837426314e-20,-0.00010629251482896507,-4.5553937525255606e-05,-4.049238850711845e-05,-3.176308670224329e-19,-4.7651626191889546e-20,-1.6009945046644604e-19,-0.002690529450774193,0.00017936862423084676,0.0001594387722434476,0.0015877444529905915,0.0001594387722434476,1.3477450175721961e-19,-1.1558875830739105e-19,-5.9789541410282254e-05,-5.065209784812921e-20,-3.8624702394796095e-19,-5.3146257414482534e-05,1.2281977735187355e-19,-0.0001594387722434476,-5.3146257414482534e-05,-5.583663005189004e-20,-0.002409297041594982,0.0001594387722434476,0.00014172335795592517,0.0001594387722434476,0.0012198331532999873,2.192477110253892e-19,-5.360737830105963e-20,-4.6064095344164093e-20,-4.5553937525255606e-05,-2.731048203232574e-19,-5.390059767233834e-20,-4.049238850711845e-05,1.3552527156068805e-19,-4.5553937525255606e-05,-0.00010629251482896507,0.00013286565081216395,-0.0001594387722434476,2.168404344971009e-19,1.3477450175721961e-19,2.192477110253892e-19,2.6573128707241267e-05,-1.0164395367051604e-20,-6.776263578034403e-21,-1.1858461261560205e-20,-1.1957048427438168e-20,-1.1519867317832554e-20,-1.3486674208904208e-20,-4.081540171296785e-21,-1.1519867317832554e-20,-1.1471944964473464e-20,0.0001594387722434476,-5.3146257414482534e-05,-4.5553937525255606e-05,-1.1558875830739105e-19,-5.360737830105963e-20,-1.0164395367051604e-20,1.5184645235422067e-05,6.830943124580999e-21,2.9928264959736926e-21,2.1746739862732487e-20,2.541098841762901e-21,-4.235164736271502e-22,1.6914499358214017e-20,4.5891299456102104e-35,8.846869519077957e-21,0.00017936862423084676,-5.9789541410282254e-05,-9.193094042397697e-20,-5.9789541410282254e-05,-4.6064095344164093e-20,-6.776263578034403e-21,6.830943124580999e-21,1.992984653043095e-05,-3.9318195716569244e-22,1.3291549249427624e-20,6.621573735293276e-22,-1.6848178698574158e-21,2.9650143654121227e-20,3.8116482626443515e-21,8.848141793945898e-21,0.0001594387722434476,-5.3146257414482534e-05,-3.4728350837426314e-20,-5.065209784812921e-20,-4.5553937525255606e-05,-1.1858461261560205e-20,2.9928264959736926e-21,-3.9318195716569244e-22,1.5184645235422067e-05,8.944584267903619e-21,-1.702680407054908e-21,-4.5694660649844e-21,1.22151901708658e-20,6.098438543403172e-22,2.1076305129496856e-20,0.00010629251482896507,-6.367304836953332e-20,-0.00010629251482896507,-3.8624702394796095e-19,-2.731048203232574e-19,-1.1957048427438168e-20,2.1746739862732487e-20,1.3291549249427624e-20,8.944584267903619e-21,1.5184645235422067e-05,2.1175823681357508e-20,1.4399560103323106e-20,3.8766791990752245e-20,1.2924729382883735e-20,2.2749870838863493e-20,0.0001594387722434476,8.189952726509033e-20,-4.5553937525255606e-05,-5.3146257414482534e-05,-5.390059767233834e-20,-1.1519867317832554e-20,2.541098841762901e-21,6.621573735293276e-22,-1.702680407054908e-21,2.1175823681357508e-20,1.5184645235422067e-05,-1.7217125283631425e-22,1.4346342663132682e-20,4.235164736271502e-21,8.95180836577282e-21,0.00014172335795592517,1.1918439610788542e-19,-4.049238850711845e-05,1.2281977735187355e-19,-4.049238850711845e-05,-1.3486674208904208e-20,-4.235164736271502e-22,-1.6848178698574158e-21,-4.5694660649844e-21,1.4399560103323106e-20,-1.7217125283631425e-22,1.1569253729248885e-05,-1.0272850539143383e-20,-1.201151471648309e-20,-1.2305091940311957e-20,0.00013286565081216395,-1.5159008840874819e-19,-3.176308670224329e-19,-0.0001594387722434476,1.3552527156068805e-19,-4.081540171296785e-21,1.6914499358214017e-20,2.9650143654121227e-20,1.22151901708658e-20,3.8766791990752245e-20,1.4346342663132682e-20,-1.0272850539143383e-20,2.6573128707241267e-05,-1.0824190651216985e-20,-1.1694955765674601e-20,0.0001594387722434476,7.325106961751286e-20,-4.7651626191889546e-20,-5.3146257414482534e-05,-4.5553937525255606e-05,-1.1519867317832554e-20,4.5891299456102104e-35,3.8116482626443515e-21,6.098438543403172e-22,1.2924729382883735e-20,4.235164736271502e-21,-1.201151471648309e-20,-1.0824190651216985e-20,1.5184645235422067e-05,2.2822431703808013e-20,0.00010629251482896507,-5.08074753251442e-20,-1.6009945046644604e-19,-5.583663005189004e-20,-0.00010629251482896507,-1.1471944964473464e-20,8.846869519077957e-21,8.848141793945898e-21,2.1076305129496856e-20,2.2749870838863493e-20,8.95180836577282e-21,-1.2305091940311957e-20,-1.1694955765674601e-20,2.2822431703808013e-20,1.5184645235422067e-05,7.0,8.0,8.0,3.0,0.031983714550733566,-0.005859375,-0.005249669309705496,-0.005249669309705496,-0.011067708022892475,0.0003100198518950492,0.00037202381645329297,0.00037202381645329297,0.0008370535797439516,0.00024801588733680546,0.0003306878206785768,0.0007440476329065859,0.00024801588733680546,0.0007440476329065859,0.0011160714784637094,-0.005859375,0.0035652280785143375,0.00037202381645329297,0.00037202381645329297,0.0008370535797439516,-0.00037202381645329297,-0.00012400794366840273,-0.00012400794366840273,-0.00027901786961592734,5.421010862427522e-20,9.23501755916993e-21,6.86720078737209e-23,3.3881317890172014e-20,-0.0,0.0,-0.005249669309705496,0.00037202381645329297,0.0027399847749620676,0.0003306878206785768,0.0007440476329065859,-0.0,-0.00010629251482896507,3.543005202846417e-20,5.141794431073114e-20,-0.00024801588733680546,-9.448223863728344e-05,-0.00021258502965793014,1.984299499205163e-20,-0.0,-0.0,-0.005249669309705496,0.00037202381645329297,0.0003306878206785768,0.0027399847749620676,0.0007440476329065859,-7.837066975877541e-21,2.503269061229238e-20,-0.00010629251482896507,5.141794431073114e-20,6.776263578034403e-21,-9.448223863728344e-05,-1.1452969085792328e-20,-0.00024801588733680546,-0.00021258502965793014,-0.0,-0.011067708022892475,0.0008370535797439516,0.0007440476329065859,0.0007440476329065859,0.0222284235060215,-2.710505431213761e-20,5.141794431073114e-20,5.148661645744438e-20,-0.0008370535797439516,-1.3388795679932848e-21,-1.1858461261560205e-20,-0.0007440476329065859,-1.3552527156068805e-20,-0.0007440476329065859,-0.0066964286379516125,0.0003100198518950492,-0.00037202381645329297,-0.0,-7.837066975877541e-21,-2.710505431213761e-20,6.200397183420137e-05,-0.0,-0.0,-6.776263578034403e-21,-1.012925170207643e-21,-8.206935390305212e-38,-9.548027346370006e-40,2.0893479634870597e-22,-0.0,-0.0,0.00037202381645329297,-0.00012400794366840273,-0.00010629251482896507,2.503269061229238e-20,5.141794431073114e-20,-0.0,3.543083948898129e-05,-8.586508766721923e-21,-1.7139314770243713e-20,-1.3552527156068805e-20,-0.0,-0.0,9.599706415797117e-23,-0.0,-0.0,0.00037202381645329297,-0.00012400794366840273,3.543005202846417e-20,-0.00010629251482896507,5.148661645744438e-20,-0.0,-8.586508766721923e-21,3.543083948898129e-05,-1.7139314770243713e-20,-5.492852367005837e-23,-2.6385763012282717e-21,-1.9620573678205973e-23,-1.0164395367051604e-20,-0.0,-0.0,0.0008370535797439516,-0.00027901786961592734,5.141794431073114e-20,5.141794431073114e-20,-0.0008370535797439516,-6.776263578034403e-21,-1.7139314770243713e-20,-1.7139314770243713e-20,0.00027901786961592734,6.018531076210112e-36,1.88079096131566e-36,7.52316384526264e-37,7.52316384526264e-36,-0.0,-0.0,0.00024801588733680546,5.421010862427522e-20,-0.00024801588733680546,6.776263578034403e-21,-1.3388795679932848e-21,-1.012925170207643e-21,-1.3552527156068805e-20,-5.492852367005837e-23,6.018531076210112e-36,3.543083948898129e-05,-0.0,0.0,-7.867301982268971e-22,0.0,-0.0,0.0003306878206785768,9.23501755916993e-21,-9.448223863728344e-05,-9.448223863728344e-05,-1.1858461261560205e-20,-8.206935390305212e-38,-0.0,-2.6385763012282717e-21,1.88079096131566e-36,-0.0,2.6994925065082498e-05,3.3881317890172014e-21,-4.036724188099387e-21,-0.0,-0.0,0.0007440476329065859,6.86720078737209e-23,-0.00021258502965793014,-1.1452969085792328e-20,-0.0007440476329065859,-9.548027346370006e-40,-0.0,-1.9620573678205973e-23,7.52316384526264e-37,0.0,3.3881317890172014e-21,0.00021258502965793014,-4.578133753066606e-23,-0.0,-0.0,0.00024801588733680546,3.3881317890172014e-20,1.984299499205163e-20,-0.00024801588733680546,-1.3552527156068805e-20,2.0893479634870597e-22,9.599706415797117e-23,-1.0164395367051604e-20,7.52316384526264e-36,-7.867301982268971e-22,-4.036724188099387e-21,-4.578133753066606e-23,3.543083948898129e-05,0.0,-0.0,0.0007440476329065859,-0.0,-0.0,-0.00021258502965793014,-0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.00021258502965793014,-0.0,0.0011160714784637094,0.0,-0.0,-0.0,-0.0066964286379516125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033482143189758062,7.0,8.0,8.0,4.0,0.0255921371281147,-0.004520089365541935,-0.0040488592348992825,-0.0040488592348992825,-0.0069754463620483875,0.0002325148816453293,0.00027901786961592734,0.00027901786961592734,0.0005022321711294353,0.00018601190822664648,0.00024801588733680546,0.00044642857392318547,0.00018601190822664648,0.00044642857392318547,0.0005580357392318547,-0.004520089365541935,0.00271577388048172,0.00027901786961592734,0.00027901786961592734,0.0005022321711294353,-0.00027901786961592734,-9.300595411332324e-05,-9.300595411332324e-05,-0.00016741071885917336,-4.743384504624082e-20,-1.1894932333314264e-20,-2.558727724671154e-21,-4.0657581468206416e-20,-6.519875428222866e-23,0.0,-0.0040488592348992825,0.00027901786961592734,0.0020868764258921146,0.00024801588733680546,0.00044642857392318547,-0.0,-7.97193861217238e-05,4.0400971301381714e-21,3.411869287658059e-20,-0.00018601190822664648,-7.086167897796258e-05,-0.00012755101488437504,-4.158714183743422e-20,-3.3881317890172014e-21,-0.0,-0.0040488592348992825,0.00027901786961592734,0.00024801588733680546,0.0020868764258921146,0.00044642857392318547,2.5300011717918008e-21,1.84325987332733e-20,-7.97193861217238e-05,3.411869287658059e-20,-6.776263578034403e-21,-7.086167897796258e-05,2.903967466853429e-20,-0.00018601190822664648,-0.00012755101488437504,-0.0,-0.0069754463620483875,0.0005022321711294353,0.00044642857392318547,0.00044642857392318547,0.008556547574698925,1.3552527156068805e-20,3.108887892681517e-20,3.4524580063402704e-20,-0.0003348214377183467,3.823336631661281e-21,2.371692252312041e-20,-0.00029761905898340046,-0.0,-0.00029761905898340046,-0.0016741071594879031,0.0002325148816453293,-0.00027901786961592734,-0.0,2.5300011717918008e-21,1.3552527156068805e-20,4.650297705666162e-05,-0.0,-0.0,3.3881317890172014e-21,1.5910021386310128e-21,-3.2285173929857693e-38,4.262653238882055e-39,5.29643029300913e-22,2.515190613616614e-41,-0.0,0.00027901786961592734,-9.300595411332324e-05,-7.97193861217238e-05,1.84325987332733e-20,3.108887892681517e-20,-0.0,2.6573128707241267e-05,-6.841648812723738e-21,-1.1372897356262341e-20,1.0164395367051604e-20,-4.235164736271502e-22,8.470329472543003e-22,4.684336834559063e-22,1.8628215058430528e-23,-0.0,0.00027901786961592734,-9.300595411332324e-05,4.0400971301381714e-21,-7.97193861217238e-05,3.4524580063402704e-20,-0.0,-6.841648812723738e-21,2.6573128707241267e-05,-1.1372897356262341e-20,4.334135099222785e-22,3.822068799657959e-21,-1.1596785421277182e-22,1.0164395367051604e-20,-0.0,-0.0,0.0005022321711294353,-0.00016741071885917336,3.411869287658059e-20,3.411869287658059e-20,-0.0003348214377183467,3.3881317890172014e-21,-1.1372897356262341e-20,-1.1372897356262341e-20,0.00011160714348079637,-3.76158192263132e-36,-1.316553672920962e-36,7.52316384526264e-37,-4.513898307157584e-36,-0.0,-0.0,0.00018601190822664648,-4.743384504624082e-20,-0.00018601190822664648,-6.776263578034403e-21,3.823336631661281e-21,1.5910021386310128e-21,1.0164395367051604e-20,4.334135099222785e-22,-3.76158192263132e-36,2.6573128707241267e-05,-0.0,0.0,6.565284660064539e-22,4.34658351363379e-23,-0.0,0.00024801588733680546,-1.1894932333314264e-20,-7.086167897796258e-05,-7.086167897796258e-05,2.371692252312041e-20,-3.2285173929857693e-38,-4.235164736271502e-22,3.822068799657959e-21,-1.316553672920962e-36,-0.0,2.0246194253559224e-05,-7.623296525288703e-21,1.0176248122059407e-20,8.470329472543003e-22,-0.0,0.00044642857392318547,-2.558727724671154e-21,-0.00012755101488437504,2.903967466853429e-20,-0.00029761905898340046,4.262653238882055e-39,8.470329472543003e-22,-1.1596785421277182e-22,7.52316384526264e-37,0.0,-7.623296525288703e-21,8.50340147735551e-05,-2.705916598298009e-22,2.568890354655852e-23,-0.0,0.00018601190822664648,-4.0657581468206416e-20,-4.158714183743422e-20,-0.00018601190822664648,-0.0,5.29643029300913e-22,4.684336834559063e-22,1.0164395367051604e-20,-4.513898307157584e-36,6.565284660064539e-22,1.0176248122059407e-20,-2.705916598298009e-22,2.6573128707241267e-05,-3.915529657072983e-22,-0.0,0.00044642857392318547,-6.519875428222866e-23,-3.3881317890172014e-21,-0.00012755101488437504,-0.00029761905898340046,2.515190613616614e-41,1.8628215058430528e-23,-0.0,-0.0,4.34658351363379e-23,8.470329472543003e-22,2.568890354655852e-23,-3.915529657072983e-22,8.50340147735551e-05,-0.0,0.0005580357392318547,0.0,-0.0,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005580357392318547,7.0,8.0,8.0,5.0,0.021371882408857346,-0.0036830357275903225,-0.0032986111473292112,-0.0032986111473292112,-0.0048097362741827965,0.00018601190822664648,0.00022321428696159273,0.00022321428696159273,0.0003348214377183467,0.00014880952949170023,0.00019841270113829523,0.00029761905898340046,0.00014880952949170023,0.00029761905898340046,0.0003188775444868952,-0.0036830357275903225,0.0021949405781924725,0.00022321428696159273,0.00022321428696159273,0.0003348214377183467,-0.00022321428696159273,-7.440476474585012e-05,-7.440476474585012e-05,-0.00011160714348079637,-2.710505431213761e-20,-9.846762858592643e-21,2.857028521382739e-21,-2.710505431213761e-20,-0.0,0.0,-0.0032986111473292112,0.00022321428696159273,0.0016865079523995519,0.00019841270113829523,0.00029761905898340046,-0.0,-6.377550744218752e-05,1.822596150377738e-21,2.2408628140029825e-20,-0.00014880952949170023,-5.668934318237007e-05,-8.50340147735551e-05,-3.7991610665690686e-20,-0.0,-0.0,-0.0032986111473292112,0.00022321428696159273,0.00019841270113829523,0.0016865079523995519,0.00029761905898340046,-2.532120620163076e-21,1.7066558419255992e-20,-6.377550744218752e-05,2.2408628140029825e-20,-0.0,-5.668934318237007e-05,1.8634724839594607e-20,-0.00014880952949170023,-8.50340147735551e-05,-0.0,-0.0048097362741827965,0.0003348214377183467,0.00029761905898340046,0.00029761905898340046,0.00431813346222043,-6.776263578034403e-21,2.5373243455419877e-20,2.2301041346022513e-20,-0.00016741071885917336,1.3674115435971998e-21,1.9269999550035333e-20,-0.00014880952949170023,-0.0,-0.00014880952949170023,-0.0006377550889737904,0.00018601190822664648,-0.00022321428696159273,-0.0,-2.532120620163076e-21,-6.776263578034403e-21,3.720238237292506e-05,1.6940658945086007e-21,1.6940658945086007e-21,-3.3881317890172014e-21,-4.479164841619389e-22,-1.955712224489865e-37,-2.5435013267510613e-38,-4.901254145962136e-22,-0.0,-0.0,0.00022321428696159273,-7.440476474585012e-05,-6.377550744218752e-05,1.7066558419255992e-20,2.5373243455419877e-20,1.6940658945086007e-21,2.1258503693388775e-05,-5.1655454198665395e-21,-7.469542713343275e-21,8.470329472543003e-21,-8.470329472543003e-22,-8.470329472543003e-22,1.8420468854584936e-22,-0.0,-0.0,0.00022321428696159273,-7.440476474585012e-05,1.822596150377738e-21,-6.377550744218752e-05,2.2301041346022513e-20,1.6940658945086007e-21,-5.1655454198665395e-21,2.1258503693388775e-05,-7.469542713343275e-21,1.0581665324486852e-22,3.6603937639950555e-21,3.073909797619662e-23,8.470329472543003e-21,-0.0,-0.0,0.0003348214377183467,-0.00011160714348079637,2.2408628140029825e-20,2.2408628140029825e-20,-0.00016741071885917336,-3.3881317890172014e-21,-7.469542713343275e-21,-7.469542713343275e-21,5.5803571740398183e-05,-2.633107345841924e-36,-1.504632769052528e-36,3.76158192263132e-37,-3.009265538105056e-36,-0.0,-0.0,0.00014880952949170023,-2.710505431213761e-20,-0.00014880952949170023,-0.0,1.3674115435971998e-21,-4.479164841619389e-22,8.470329472543003e-21,1.0581665324486852e-22,-2.633107345841924e-36,2.1258503693388775e-05,-0.0,0.0,1.145278233401707e-22,0.0,-0.0,0.00019841270113829523,-9.846762858592643e-21,-5.668934318237007e-05,-5.668934318237007e-05,1.9269999550035333e-20,-1.955712224489865e-37,-8.470329472543003e-22,3.6603937639950555e-21,-1.504632769052528e-36,-0.0,1.6196954675251618e-05,-5.505714157152952e-21,1.0408116379722111e-20,-0.0,-0.0,0.00029761905898340046,2.857028521382739e-21,-8.50340147735551e-05,1.8634724839594607e-20,-0.00014880952949170023,-2.5435013267510613e-38,-8.470329472543003e-22,3.073909797619662e-23,3.76158192263132e-37,0.0,-5.505714157152952e-21,4.251700738677755e-05,7.172456509990241e-23,-0.0,-0.0,0.00014880952949170023,-2.710505431213761e-20,-3.7991610665690686e-20,-0.00014880952949170023,-0.0,-4.901254145962136e-22,1.8420468854584936e-22,8.470329472543003e-21,-3.009265538105056e-36,1.145278233401707e-22,1.0408116379722111e-20,7.172456509990241e-23,2.1258503693388775e-05,0.0,-0.0,0.00029761905898340046,-0.0,-0.0,-8.50340147735551e-05,-0.00014880952949170023,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,4.251700738677755e-05,-0.0,0.0003188775444868952,0.0,-0.0,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001594387722434476,7.0,8.0,8.0,6.0,0.018363509327173233,-0.0031090560369193554,-0.0027842733543366194,-0.0027842733543366194,-0.0035209397319704294,0.0001550099259475246,0.00018601190822664648,0.00018601190822664648,0.00023915816564112902,0.00012400794366840273,0.0001653439103392884,0.00021258502965793014,0.00012400794366840273,0.00021258502965793014,0.00019929847621824592,-0.0031090560369193554,0.0018424036679789424,0.00018601190822664648,0.00018601190822664648,0.00023915816564112902,-0.00018601190822664648,-6.200397183420137e-05,-6.200397183420137e-05,-7.97193861217238e-05,2.371692252312041e-20,3.1352011218899395e-21,-2.656629477707563e-20,2.710505431213761e-20,-2.656629477707563e-20,-8.297465526625613e-20,-0.0027842733543366194,0.00018601190822664648,0.0014155464014038444,0.0001653439103392884,0.00021258502965793014,-3.3881317890172014e-21,-5.3146257414482534e-05,1.819623025764914e-20,-8.573671311356013e-21,-0.00012400794366840273,-4.724111931864172e-05,-6.073858094168827e-05,8.892097880891282e-21,-1.7982232817067988e-20,-6.321878404157393e-20,-0.0027842733543366194,0.00018601190822664648,0.0001653439103392884,0.0014155464014038444,0.00021258502965793014,-2.6420168959782878e-21,1.1030653801199227e-20,-5.3146257414482534e-05,-8.573671311356013e-21,-0.0,-4.724111931864172e-05,-2.253494282009322e-20,-0.00012400794366840273,-6.073858094168827e-05,-6.321878404157393e-20,-0.0035209397319704294,0.00023915816564112902,0.00021258502965793014,0.00021258502965793014,0.002504517324268818,6.776263578034403e-21,1.2063392834939517e-20,1.2063392834939517e-20,-9.566326480126008e-05,-6.0634120084952045e-21,-4.552710406922016e-21,-8.50340147735551e-05,-0.0,-8.50340147735551e-05,-0.00029894770705141127,0.0001550099259475246,-0.00018601190822664648,-3.3881317890172014e-21,-2.6420168959782878e-21,6.776263578034403e-21,3.100198591710068e-05,-0.0,-0.0,-0.0,-8.675500960611698e-22,-1.4954184132912892e-37,-1.436920368118971e-37,-1.0085006828930862e-21,-1.436920368118971e-37,-1.2991334927188405e-37,0.00018601190822664648,-6.200397183420137e-05,-5.3146257414482534e-05,1.1030653801199227e-20,1.2063392834939517e-20,-0.0,1.7715419744490646e-05,-4.317013207751987e-21,-5.009336319374378e-21,-5.082197683525802e-21,4.235164736271502e-22,8.470329472543003e-22,5.785930601602272e-23,-1.5084062752403636e-36,-4.114604027045962e-36,0.00018601190822664648,-6.200397183420137e-05,1.819623025764914e-20,-5.3146257414482534e-05,1.2063392834939517e-20,-0.0,-4.317013207751987e-21,1.7715419744490646e-05,-5.009336319374378e-21,-8.29013735970144e-23,-1.3192881506141358e-21,-1.598672317118311e-36,-5.929230630780102e-21,8.470329472543003e-22,-4.4786280956468124e-36,0.00023915816564112902,-7.97193861217238e-05,-8.573671311356013e-21,-8.573671311356013e-21,-9.566326480126008e-05,-0.0,-5.009336319374378e-21,-5.009336319374378e-21,3.188775372109376e-05,3.385423730368188e-36,9.4039548065783e-37,9.440672107791659e-21,3.009265538105056e-36,9.440672107791659e-21,3.3189862752737306e-20,0.00012400794366840273,2.371692252312041e-20,-0.00012400794366840273,-0.0,-6.0634120084952045e-21,-8.675500960611698e-22,-5.082197683525802e-21,-8.29013735970144e-23,3.385423730368188e-36,1.7715419744490646e-05,-0.0,1.6940658945086007e-21,-2.6433704045868042e-22,3.76158192263132e-37,1.504632769052528e-36,0.0001653439103392884,3.1352011218899395e-21,-4.724111931864172e-05,-4.724111931864172e-05,-4.552710406922016e-21,-1.4954184132912892e-37,4.235164736271502e-22,-1.3192881506141358e-21,9.4039548065783e-37,-0.0,1.3497462532541249e-05,1.3007743298532932e-21,-2.0183620940496935e-21,-0.0,1.2721530938737093e-36,0.00021258502965793014,-2.656629477707563e-20,-6.073858094168827e-05,-2.253494282009322e-20,-8.50340147735551e-05,-1.436920368118971e-37,8.470329472543003e-22,-1.598672317118311e-36,9.440672107791659e-21,1.6940658945086007e-21,1.3007743298532932e-21,2.4295432012877427e-05,9.4039548065783e-38,7.192892803709769e-21,2.5287513939746998e-20,0.00012400794366840273,2.710505431213761e-20,8.892097880891282e-21,-0.00012400794366840273,-0.0,-1.0085006828930862e-21,5.785930601602272e-23,-5.929230630780102e-21,3.009265538105056e-36,-2.6433704045868042e-22,-2.0183620940496935e-21,9.4039548065783e-38,1.7715419744490646e-05,-3.3561682053667026e-22,8.134461803184612e-37,0.00021258502965793014,-2.656629477707563e-20,-1.7982232817067988e-20,-6.073858094168827e-05,-8.50340147735551e-05,-1.436920368118971e-37,-1.5084062752403636e-36,8.470329472543003e-22,9.440672107791659e-21,3.76158192263132e-37,-0.0,7.192892803709769e-21,-3.3561682053667026e-22,2.4295432012877427e-05,2.5287513939746998e-20,0.00019929847621824592,-8.297465526625613e-20,-6.321878404157393e-20,-6.321878404157393e-20,-0.00029894770705141127,-1.2991334927188405e-37,-4.114604027045962e-36,-4.4786280956468124e-36,3.3189862752737306e-20,1.504632769052528e-36,1.2721530938737093e-36,2.5287513939746998e-20,8.134461803184612e-37,2.5287513939746998e-20,5.9789541410282254e-05,7.0,8.0,8.0,7.0,0.01610553078353405,-0.002690529450774193,-0.002409297041594982,-0.002409297041594982,-0.002690529450774193,0.00013286565081216395,0.0001594387722434476,0.0001594387722434476,0.00017936862423084676,0.00010629251482896507,0.00014172335795592517,0.0001594387722434476,0.00010629251482896507,0.0001594387722434476,0.00013286565081216395,-0.002690529450774193,0.0015877444529905915,0.0001594387722434476,0.0001594387722434476,0.00017936862423084676,-0.0001594387722434476,-5.3146257414482534e-05,-5.3146257414482534e-05,-5.9789541410282254e-05,-6.367304836953332e-20,1.1357030836579095e-19,7.488111302507957e-20,-5.921990215480849e-20,7.670532415674602e-20,-1.7195769200815603e-19,-0.002409297041594982,0.0001594387722434476,0.0012198331532999873,0.00014172335795592517,0.0001594387722434476,2.168404344971009e-19,-4.5553937525255606e-05,-4.065671551350265e-20,-9.656175598699024e-20,-0.00010629251482896507,-4.049238850711845e-05,-4.5553937525255606e-05,-1.7540730658114065e-19,-5.2662864057320516e-20,-3.34027964907495e-19,-0.002409297041594982,0.0001594387722434476,0.00014172335795592517,0.0012198331532999873,0.0001594387722434476,2.1799269709038725e-19,-5.450905686753071e-20,-4.5553937525255606e-05,-9.578535004688119e-20,-2.744386749103933e-19,-4.049238850711845e-05,-5.590417451878382e-20,-0.00010629251482896507,-4.5553937525255606e-05,-3.306398331184778e-19,-0.002690529450774193,0.00017936862423084676,0.0001594387722434476,0.0001594387722434476,0.0015877444529905915,1.40665087543757e-19,-1.1610106744989694e-19,-1.175026991484739e-19,-5.9789541410282254e-05,-3.8937379251280554e-19,1.1131549156415382e-19,-5.3146257414482534e-05,-3.8963515573697816e-19,-5.3146257414482534e-05,-0.0001594387722434476,0.00013286565081216395,-0.0001594387722434476,2.168404344971009e-19,2.1799269709038725e-19,1.40665087543757e-19,2.6573128707241267e-05,-1.1858461261560205e-20,-1.1858461261560205e-20,-6.776263578034403e-21,-1.1851738803496078e-20,-1.3486674208904208e-20,-1.1519867317832554e-20,-1.2125482271875711e-20,-1.1519867317832554e-20,-4.1510847350623274e-21,0.0001594387722434476,-5.3146257414482534e-05,-4.5553937525255606e-05,-5.450905686753071e-20,-1.1610106744989694e-19,-1.1858461261560205e-20,1.5184645235422067e-05,3.002312415830343e-21,6.7220884985703646e-21,2.1746739862732487e-20,-4.235164736271502e-22,2.541098841762901e-21,8.962200630011584e-21,5.792836160852233e-35,1.7043557305230762e-20,0.0001594387722434476,-5.3146257414482534e-05,-4.065671551350265e-20,-4.5553937525255606e-05,-1.175026991484739e-19,-1.1858461261560205e-20,3.002312415830343e-21,1.5184645235422067e-05,6.7658902969444616e-21,8.966717811637948e-21,-4.426016871675723e-21,4.0735625408691427e-23,2.0899706915478186e-20,2.541098841762901e-21,1.721704228284242e-20,0.00017936862423084676,-5.9789541410282254e-05,-9.656175598699024e-20,-9.578535004688119e-20,-5.9789541410282254e-05,-6.776263578034403e-21,6.7220884985703646e-21,6.7658902969444616e-21,1.992984653043095e-05,1.3037554718172694e-20,1.9186706491221658e-23,9.676447057092507e-22,1.3139758375849876e-20,4.0709918009512085e-22,3.0603960448577294e-20,0.00010629251482896507,-6.367304836953332e-20,-0.00010629251482896507,-2.744386749103933e-19,-3.8937379251280554e-19,-1.1851738803496078e-20,2.1746739862732487e-20,8.966717811637948e-21,1.3037554718172694e-20,1.5184645235422067e-05,1.4399560103323106e-20,2.1175823681357508e-20,2.3314017710147462e-20,1.2924729382883735e-20,3.9275524223343696e-20,0.00014172335795592517,1.1357030836579095e-19,-4.049238850711845e-05,-4.049238850711845e-05,1.1131549156415382e-19,-1.3486674208904208e-20,-4.235164736271502e-22,-4.426016871675723e-21,1.9186706491221658e-23,1.4399560103323106e-20,1.1569253729248885e-05,-9.055323880202722e-21,-1.2737501413317619e-20,-9.740878893424454e-21,-5.728838857247029e-21,0.0001594387722434476,7.488111302507957e-20,-4.5553937525255606e-05,-5.590417451878382e-20,-5.3146257414482534e-05,-1.1519867317832554e-20,2.541098841762901e-21,4.0735625408691427e-23,9.676447057092507e-22,2.1175823681357508e-20,-9.055323880202722e-21,1.5184645235422067e-05,1.301977922073204e-20,3.2565024331284744e-21,1.3097690102470446e-20,0.00010629251482896507,-5.921990215480849e-20,-1.7540730658114065e-19,-0.00010629251482896507,-3.8963515573697816e-19,-1.2125482271875711e-20,8.962200630011584e-21,2.0899706915478186e-20,1.3139758375849876e-20,2.3314017710147462e-20,-1.2737501413317619e-20,1.301977922073204e-20,1.5184645235422067e-05,2.1921050405369565e-20,3.935157314091029e-20,0.0001594387722434476,7.670532415674602e-20,-5.2662864057320516e-20,-4.5553937525255606e-05,-5.3146257414482534e-05,-1.1519867317832554e-20,5.792836160852233e-35,2.541098841762901e-21,4.0709918009512085e-22,1.2924729382883735e-20,-9.740878893424454e-21,3.2565024331284744e-21,2.1921050405369565e-20,1.5184645235422067e-05,1.16029020341661e-20,0.00013286565081216395,-1.7195769200815603e-19,-3.34027964907495e-19,-3.306398331184778e-19,-0.0001594387722434476,-4.1510847350623274e-21,1.7043557305230762e-20,1.721704228284242e-20,3.0603960448577294e-20,3.9275524223343696e-20,-5.728838857247029e-21,1.3097690102470446e-20,3.935157314091029e-20,1.16029020341661e-20,2.6573128707241267e-05,7.0,8.0,8.0,8.0,0.014346168376505375,-0.0023716518189758062,-0.0021236359607428312,-0.0021236359607428312,-0.0021236359607428312,0.00011625744082266465,0.00013950893480796367,0.00013950893480796367,0.00013950893480796367,9.300595411332324e-05,0.00012400794366840273,0.00012400794366840273,9.300595411332324e-05,0.00012400794366840273,9.300595411332324e-05,-0.0023716518189758062,0.0013950893189758062,0.00013950893480796367,0.00013950893480796367,0.00013950893480796367,-0.00013950893480796367,-4.650297705666162e-05,-4.650297705666162e-05,-4.650297705666162e-05,-2.371692252312041e-20,-8.900595869215557e-21,-9.694384719091725e-21,-2.371692252312041e-20,-8.249730742932768e-21,-1.5422000576878397e-20,-0.0021236359607428312,0.00013950893480796367,0.0010717828990891576,0.00012400794366840273,0.00012400794366840273,-3.3881317890172014e-21,-3.98596930608619e-05,1.714117754220909e-21,3.3881317890172014e-21,-9.300595411332324e-05,-3.543083948898129e-05,-3.543083948898129e-05,-2.027148747405117e-20,-8.922634901102553e-21,-1.8283126227232688e-20,-0.0021236359607428312,0.00013950893480796367,0.00012400794366840273,0.0010717828990891576,0.00012400794366840273,7.4808035576148985e-22,9.020101657303162e-21,-3.98596930608619e-05,2.1750958564635864e-21,-3.3881317890172014e-21,-3.543083948898129e-05,-8.470329472543003e-22,-9.300595411332324e-05,-3.543083948898129e-05,-2.0799068761733747e-20,-0.0021236359607428312,0.00013950893480796367,0.00012400794366840273,0.00012400794366840273,0.0010717828990891576,-0.0,1.117183834524297e-20,1.171831150107572e-20,-3.98596930608619e-05,1.8610856963072045e-21,8.386400528730848e-21,-3.543083948898129e-05,3.3881317890172014e-21,-3.543083948898129e-05,-9.300595411332324e-05,0.00011625744082266465,-0.00013950893480796367,-3.3881317890172014e-21,7.4808035576148985e-22,-0.0,2.325148852833081e-05,-8.470329472543003e-22,-8.470329472543003e-22,-8.470329472543003e-22,9.810525643076215e-22,-9.44590631948387e-38,-1.2205375765556673e-37,8.938273178713459e-22,-9.332920745344132e-38,1.0531414884824274e-22,0.00013950893480796367,-4.650297705666162e-05,-3.98596930608619e-05,9.020101657303162e-21,1.117183834524297e-20,-8.470329472543003e-22,1.3286564353620633e-05,-3.483945395683054e-21,-3.598261513999813e-21,5.082197683525802e-21,2.117582368135751e-22,2.117582368135751e-22,9.120872895037756e-23,-6.325508800006134e-37,-1.476878754810618e-22,0.00013950893480796367,-4.650297705666162e-05,1.714117754220909e-21,-3.98596930608619e-05,1.171831150107572e-20,-8.470329472543003e-22,-3.483945395683054e-21,1.3286564353620633e-05,-3.5381733856257275e-21,6.94243161200376e-23,2.365289842059138e-21,-1.8982233744588372e-23,5.082197683525802e-21,-2.117582368135751e-22,-3.912072616150815e-23,0.00013950893480796367,-4.650297705666162e-05,3.3881317890172014e-21,2.1750958564635864e-21,-3.98596930608619e-05,-8.470329472543003e-22,-3.598261513999813e-21,-3.5381733856257275e-21,1.3286564353620633e-05,-1.973132470058921e-22,-3.402086347155552e-23,2.577048078872713e-21,-5.710779925238573e-23,2.5688241345160242e-21,4.397511452285321e-21,9.300595411332324e-05,-2.371692252312041e-20,-9.300595411332324e-05,-3.3881317890172014e-21,1.8610856963072045e-21,9.810525643076215e-22,5.082197683525802e-21,6.94243161200376e-23,-1.973132470058921e-22,1.3286564353620633e-05,8.470329472543003e-22,8.470329472543003e-22,-3.7492785465839754e-23,0.0,-5.419954551169705e-22,0.00012400794366840273,-8.900595869215557e-21,-3.543083948898129e-05,-3.543083948898129e-05,8.386400528730848e-21,-9.44590631948387e-38,2.117582368135751e-22,2.365289842059138e-21,-3.402086347155552e-23,8.470329472543003e-22,1.0123097126779612e-05,-2.1952293033261564e-21,5.8390731946700075e-21,-0.0,-7.93820126633338e-23,0.00012400794366840273,-9.694384719091725e-21,-3.543083948898129e-05,-8.470329472543003e-22,-3.543083948898129e-05,-1.2205375765556673e-37,2.117582368135751e-22,-1.8982233744588372e-23,2.577048078872713e-21,8.470329472543003e-22,-2.1952293033261564e-21,1.0123097126779612e-05,-4.429187978918741e-23,2.549324199758332e-21,6.6022018358159444e-21,9.300595411332324e-05,-2.371692252312041e-20,-2.027148747405117e-20,-9.300595411332324e-05,3.3881317890172014e-21,8.938273178713459e-22,9.120872895037756e-23,5.082197683525802e-21,-5.710779925238573e-23,-3.7492785465839754e-23,5.8390731946700075e-21,-4.429187978918741e-23,1.3286564353620633e-05,8.390420513416756e-23,-1.0101731816081251e-22,0.00012400794366840273,-8.249730742932768e-21,-8.922634901102553e-21,-3.543083948898129e-05,-3.543083948898129e-05,-9.332920745344132e-38,-6.325508800006134e-37,-2.117582368135751e-22,2.5688241345160242e-21,0.0,-0.0,2.549324199758332e-21,8.390420513416756e-23,1.0123097126779612e-05,6.274032064172952e-21,9.300595411332324e-05,-1.5422000576878397e-20,-1.8283126227232688e-20,-2.0799068761733747e-20,-9.300595411332324e-05,1.0531414884824274e-22,-1.476878754810618e-22,-3.912072616150815e-23,4.397511452285321e-21,-5.419954551169705e-22,-7.93820126633338e-23,6.6022018358159444e-21,-1.0101731816081251e-22,6.274032064172952e-21,1.3286564353620633e-05,8.0,3.0,3.0,3.0,0.13387346267700195,-0.02777777798473835,-0.05787036940455437,-0.05787036940455437,-0.05787036940455437,0.0015432098880410194,0.004629629664123058,0.004629629664123058,0.004629629664123058,0.0069444444961845875,0.010416666977107525,0.010416666977107525,0.0069444444961845875,0.010416666977107525,0.0069444444961845875,-0.02777777798473835,0.015652557834982872,0.004629629664123058,0.004629629664123058,0.004629629664123058,-0.0015432098880410194,-0.0013227512827143073,-0.0013227512827143073,-0.0013227512827143073,1.0408340855860843e-17,-2.6020852139652106e-18,-1.734723475976807e-18,6.938893903907228e-18,-1.734723475976807e-18,3.469446951953614e-18,-0.05787036940455437,0.004629629664123058,0.12731482088565826,0.010416666977107525,0.010416666977107525,-1.6263032587282567e-18,-0.004629629664123058,-4.9987082763492936e-18,-4.966089649664184e-18,-0.0416666679084301,-0.010416666977107525,-0.010416666977107525,-6.418476861114186e-17,-9.540979117872439e-18,-7.28583859910259e-17,-0.05787036940455437,0.004629629664123058,0.010416666977107525,0.12731482088565826,0.010416666977107525,3.686287386450715e-18,-2.0599841277224584e-18,-0.004629629664123058,-4.113505906909346e-18,-6.613633252161577e-17,-0.010416666977107525,-3.99831066685368e-18,-0.0416666679084301,-0.010416666977107525,-7.892991815694472e-17,-0.05787036940455437,0.004629629664123058,0.010416666977107525,0.010416666977107525,0.12731482088565826,-4.336808689942018e-19,-2.168404344971009e-18,-4.553649124439119e-18,-0.004629629664123058,-6.808789643208968e-17,-1.0408340855860843e-17,-0.010416666977107525,-7.41594285980085e-17,-0.010416666977107525,-0.0416666679084301,0.0015432098880410194,-0.0015432098880410194,-1.6263032587282567e-18,3.686287386450715e-18,-4.336808689942018e-19,0.00022045854711905122,-5.421010862427522e-20,-5.421010862427522e-20,-1.6263032587282567e-19,-1.734723475976807e-18,-5.421010862427522e-20,-3.2526065174565133e-19,-1.0842021724855044e-18,-2.710505431213761e-19,-1.5178830414797062e-18,0.004629629664123058,-0.0013227512827143073,-0.004629629664123058,-2.0599841277224584e-18,-2.168404344971009e-18,-5.421010862427522e-20,0.0013227512827143073,2.1195814956552296e-20,-7.826147060880848e-20,3.0394149317377487e-19,8.169305005950003e-19,8.169305005950003e-19,4.875101126451846e-19,2.0503511958989721e-19,7.077924456711186e-19,0.004629629664123058,-0.0013227512827143073,-4.9987082763492936e-18,-0.004629629664123058,-4.553649124439119e-18,-5.421010862427522e-20,2.1195814956552296e-20,0.0013227512827143073,-7.826147060880848e-20,1.478780662960676e-18,1.6001565965533383e-18,4.2531745261583125e-19,2.34767216809442e-18,1.575680839215777e-18,1.491018593328245e-18,0.004629629664123058,-0.0013227512827143073,-4.966089649664184e-18,-4.113505906909346e-18,-0.004629629664123058,-1.6263032587282567e-19,-7.826147060880848e-20,-7.826147060880848e-20,0.0013227512827143073,1.478780662960676e-18,4.2531745261583125e-19,1.9917696445325073e-18,1.368639496447709e-18,1.3798742635274043e-18,6.0924718295352984e-18,0.0069444444961845875,1.0408340855860843e-17,-0.0416666679084301,-6.613633252161577e-17,-6.808789643208968e-17,-1.734723475976807e-18,3.0394149317377487e-19,1.478780662960676e-18,1.478780662960676e-18,0.02083333395421505,-6.46703244578911e-19,-4.539561514824305e-19,2.9144828763134174e-17,3.2724867695034596e-18,3.0108563659929905e-17,0.010416666977107525,-2.6020852139652106e-18,-0.010416666977107525,-0.010416666977107525,-1.0408340855860843e-17,-5.421010862427522e-20,8.169305005950003e-19,1.6001565965533383e-18,4.2531745261583125e-19,-6.46703244578911e-19,0.010416666977107525,1.2955129562864766e-19,3.1060712651475913e-18,1.6715277043583683e-18,3.491565347942976e-18,0.010416666977107525,-1.734723475976807e-18,-0.010416666977107525,-3.99831066685368e-18,-0.010416666977107525,-3.2526065174565133e-19,8.169305005950003e-19,4.2531745261583125e-19,1.9917696445325073e-18,-4.539561514824305e-19,1.2955129562864766e-19,0.010416666977107525,1.1786008511706685e-18,1.2955129562864766e-19,5.997276989510552e-18,0.0069444444961845875,6.938893903907228e-18,-6.418476861114186e-17,-0.0416666679084301,-7.41594285980085e-17,-1.0842021724855044e-18,4.875101126451846e-19,2.34767216809442e-18,1.368639496447709e-18,2.9144828763134174e-17,3.1060712651475913e-18,1.1786008511706685e-18,0.02083333395421505,5.263152955098821e-18,3.143567569109773e-17,0.010416666977107525,-1.734723475976807e-18,-9.540979117872439e-18,-0.010416666977107525,-0.010416666977107525,-2.710505431213761e-19,2.0503511958989721e-19,1.575680839215777e-18,1.3798742635274043e-18,3.2724867695034596e-18,1.6715277043583683e-18,1.2955129562864766e-19,5.263152955098821e-18,0.010416666977107525,6.167905738316459e-18,0.0069444444961845875,3.469446951953614e-18,-7.28583859910259e-17,-7.892991815694472e-17,-0.0416666679084301,-1.5178830414797062e-18,7.077924456711186e-19,1.491018593328245e-18,6.0924718295352984e-18,3.0108563659929905e-17,3.491565347942976e-18,5.997276989510552e-18,3.143567569109773e-17,6.167905738316459e-18,0.02083333395421505,8.0,3.0,3.0,4.0,0.10873842239379883,-0.02152777835726738,-0.04496527835726738,-0.04496527835726738,-0.03680555522441864,0.0011574074160307646,0.0034722222480922937,0.0034722222480922937,0.0027777778450399637,0.0052083334885537624,0.0078125,0.0062500000931322575,0.0052083334885537624,0.0062500000931322575,0.0034722222480922937,-0.02152777835726738,0.011937830597162247,0.0034722222480922937,0.0034722222480922937,0.0027777778450399637,-0.0011574074160307646,-0.0009920635493472219,-0.0009920635493472219,-0.0007936508045531809,1.0408340855860843e-17,0.0,2.168404344971009e-18,1.214306433183765e-17,2.6020852139652106e-18,1.1275702593849246e-17,-0.04496527835726738,0.0034722222480922937,0.09704861044883728,0.0078125,0.0062500000931322575,-0.0,-0.0034722222480922937,4.162001851862105e-18,7.234137825584555e-18,-0.03125,-0.0078125,-0.0062500000931322575,-4.2500725161431774e-17,6.7220534694101275e-18,1.8214596497756474e-17,-0.04496527835726738,0.0034722222480922937,0.0078125,0.09704861044883728,0.0062500000931322575,-1.0842021724855044e-19,4.7704895589362195e-18,-0.0034722222480922937,7.455311859310822e-18,-4.174178364069192e-17,-0.0078125,5.1903337642339405e-18,-0.03125,-0.0062500000931322575,3.5128150388530344e-17,-0.03680555522441864,0.0027777778450399637,0.0062500000931322575,0.0062500000931322575,0.048842594027519226,1.1926223897340549e-18,5.041540102057596e-18,6.396792817664476e-18,-0.0018518518190830946,3.252606517456513e-17,1.2576745200831851e-17,-0.004166666883975267,5.2475385148298415e-17,-0.004166666883975267,-0.010416666977107525,0.0011574074160307646,-0.0011574074160307646,-0.0,-1.0842021724855044e-19,1.1926223897340549e-18,0.0001653439103392884,5.421010862427522e-20,5.421010862427522e-20,-2.710505431213761e-20,-1.0842021724855044e-19,2.168404344971009e-19,2.710505431213761e-20,0.0,-1.0842021724855044e-19,-5.421010862427522e-19,0.0034722222480922937,-0.0009920635493472219,-0.0034722222480922937,4.7704895589362195e-18,5.041540102057596e-18,5.421010862427522e-20,0.0009920635493472219,2.6725186257081034e-22,-7.43791630272762e-20,-2.5033440438592963e-18,2.307177075917792e-19,-4.799442534736801e-19,-1.9388704103839755e-18,-7.149120926009391e-19,-1.1824391760080677e-18,0.0034722222480922937,-0.0009920635493472219,4.162001851862105e-18,-0.0034722222480922937,6.396792817664476e-18,5.421010862427522e-20,2.6725186257081034e-22,0.0009920635493472219,-7.054261533572429e-20,-1.5590763257921173e-18,-3.354219710348e-19,-5.216622804871795e-19,-4.29883820469369e-18,-7.566301196144385e-19,-1.5809117226144093e-18,0.0027777778450399637,-0.0007936508045531809,7.234137825584555e-18,7.455311859310822e-18,-0.0018518518190830946,-2.710505431213761e-20,-7.43791630272762e-20,-7.054261533572429e-20,0.0005291005363687873,-2.368035286823944e-18,-7.012321279317489e-19,-9.437874363240154e-19,-2.8563276538346624e-18,-4.425227576581459e-19,-2.7233424471399715e-18,0.0052083334885537624,1.0408340855860843e-17,-0.03125,-4.174178364069192e-17,3.252606517456513e-17,-1.0842021724855044e-19,-2.5033440438592963e-18,-1.5590763257921173e-18,-2.368035286823944e-18,0.015625,2.4059619314998066e-18,-2.0843689985902154e-18,2.368555914301485e-17,-1.737424427471946e-18,-5.9017020599943376e-18,0.0078125,0.0,-0.0078125,-0.0078125,1.2576745200831851e-17,2.168404344971009e-19,2.307177075917792e-19,-3.354219710348e-19,-7.012321279317489e-19,2.4059619314998066e-18,0.0078125,-9.251859021064995e-19,1.3010426069826053e-18,-9.251859021064995e-19,-2.5057116415675762e-18,0.0062500000931322575,2.168404344971009e-18,-0.0062500000931322575,5.1903337642339405e-18,-0.004166666883975267,2.710505431213761e-20,-4.799442534736801e-19,-5.216622804871795e-19,-9.437874363240154e-19,-2.0843689985902154e-18,-9.251859021064995e-19,0.004166666883975267,-1.2073085679196276e-18,2.0114443680466283e-19,6.857048104607863e-19,0.0052083334885537624,1.214306433183765e-17,-4.2500725161431774e-17,-0.03125,5.2475385148298415e-17,0.0,-1.9388704103839755e-18,-4.29883820469369e-18,-2.8563276538346624e-18,2.368555914301485e-17,1.3010426069826053e-18,-1.2073085679196276e-18,0.015625,-4.777794390925675e-18,-1.1092367937244218e-17,0.0062500000931322575,2.6020852139652106e-18,6.7220534694101275e-18,-0.0062500000931322575,-0.004166666883975267,-1.0842021724855044e-19,-7.149120926009391e-19,-7.566301196144385e-19,-4.425227576581459e-19,-1.737424427471946e-18,-9.251859021064995e-19,2.0114443680466283e-19,-4.777794390925675e-18,0.004166666883975267,-2.603844833923264e-18,0.0034722222480922937,1.1275702593849246e-17,1.8214596497756474e-17,3.5128150388530344e-17,-0.010416666977107525,-5.421010862427522e-19,-1.1824391760080677e-18,-1.5809117226144093e-18,-2.7233424471399715e-18,-5.9017020599943376e-18,-2.5057116415675762e-18,6.857048104607863e-19,-1.1092367937244218e-17,-2.603844833923264e-18,0.0034722222480922937,8.0,3.0,3.0,5.0,0.09169973433017731,-0.017592592164874077,-0.03680555522441864,-0.03680555522441864,-0.025529099628329277,0.0009259259095415473,0.0027777778450399637,0.0027777778450399637,0.0018518518190830946,0.004166666883975267,0.0062500000931322575,0.004166666883975267,0.004166666883975267,0.004166666883975267,0.0019841270986944437,-0.017592592164874077,0.009656084701418877,0.0027777778450399637,0.0027777778450399637,0.0018518518190830946,-0.0009259259095415473,-0.0007936508045531809,-0.0007936508045531809,-0.0005291005363687873,-1.5612511283791264e-17,-2.6020852139652106e-18,-2.168404344971009e-18,-1.734723475976807e-17,-2.168404344971009e-18,-3.0357660829594124e-18,-0.03680555522441864,0.0027777778450399637,0.07847221940755844,0.0062500000931322575,0.004166666883975267,-1.1926223897340549e-18,-0.0027777778450399637,-5.845732124616856e-18,-4.004908259419403e-18,-0.02500000037252903,-0.0062500000931322575,-0.004166666883975267,-2.6020852139652106e-18,-3.2526065174565133e-18,-9.540979117872439e-18,-0.03680555522441864,0.0027777778450399637,0.0062500000931322575,0.07847221940755844,0.004166666883975267,-6.505213034913027e-19,-5.800481622797449e-18,-0.0027777778450399637,-3.565983892522228e-18,-1.8431436932253575e-18,-0.0062500000931322575,-1.2740288527305783e-18,-0.02500000037252903,-0.004166666883975267,-7.15573433840433e-18,-0.025529099628329277,0.0018518518190830946,0.004166666883975267,0.004166666883975267,0.024669311940670013,-1.0842021724855044e-18,-4.336808689942018e-18,-4.065758146820642e-18,-0.0009259259095415473,-1.22514845490862e-17,-1.3010426069826053e-18,-0.0020833334419876337,-1.0679391398982219e-17,-0.0020833334419876337,-0.003968254197388887,0.0009259259095415473,-0.0009259259095415473,-1.1926223897340549e-18,-6.505213034913027e-19,-1.0842021724855044e-18,0.00013227513409219682,-0.0,-8.131516293641283e-20,-6.776263578034403e-20,6.505213034913027e-19,-8.131516293641283e-20,-5.421010862427522e-20,9.75781955236954e-19,5.421010862427522e-20,8.131516293641283e-20,0.0027777778450399637,-0.0007936508045531809,-0.0027777778450399637,-5.800481622797449e-18,-4.336808689942018e-18,-0.0,0.0007936508045531809,2.710505431213761e-20,4.4782262662739536e-20,5.692061405548898e-18,9.215718466126788e-19,6.2341624917916505e-19,1.8431436932253575e-18,5.149960319306146e-19,7.453889935837843e-19,0.0027777778450399637,-0.0007936508045531809,-5.845732124616856e-18,-0.0027777778450399637,-4.065758146820642e-18,-8.131516293641283e-20,2.710505431213761e-20,0.0007936508045531809,3.6532900273673296e-20,1.8973538018496328e-18,1.1384122811097797e-18,4.336808689942018e-19,6.776263578034403e-18,8.673617379884035e-19,6.369687763352339e-19,0.0018518518190830946,-0.0005291005363687873,-4.004908259419403e-18,-3.565983892522228e-18,-0.0009259259095415473,-6.776263578034403e-20,4.4782262662739536e-20,3.6532900273673296e-20,0.00026455026818439364,1.3010426069826053e-18,3.2526065174565133e-19,4.607859233063394e-19,1.2197274440461925e-18,3.2526065174565133e-19,5.963111948670274e-19,0.004166666883975267,-1.5612511283791264e-17,-0.02500000037252903,-1.8431436932253575e-18,-1.22514845490862e-17,6.505213034913027e-19,5.692061405548898e-18,1.8973538018496328e-18,1.3010426069826053e-18,0.012500000186264515,-9.826647183188546e-19,-5.009121963273453e-19,-2.5594506708330025e-18,6.555701037575966e-19,1.868838197797939e-18,0.0062500000931322575,-2.6020852139652106e-18,-0.0062500000931322575,-0.0062500000931322575,-1.3010426069826053e-18,-8.131516293641283e-20,9.215718466126788e-19,1.1384122811097797e-18,3.2526065174565133e-19,-9.826647183188546e-19,0.0062500000931322575,-8.768552640292805e-20,2.2484088402268314e-18,1.8987023647420356e-19,2.3014573885538647e-21,0.004166666883975267,-2.168404344971009e-18,-0.004166666883975267,-1.2740288527305783e-18,-0.0020833334419876337,-5.421010862427522e-20,6.2341624917916505e-19,4.336808689942018e-19,4.607859233063394e-19,-5.009121963273453e-19,-8.768552640292805e-20,0.0020833334419876337,-1.1737432782598906e-20,-1.1967578016583313e-19,1.4409314630696637e-18,0.004166666883975267,-1.734723475976807e-17,-2.6020852139652106e-18,-0.02500000037252903,-1.0679391398982219e-17,9.75781955236954e-19,1.8431436932253575e-18,6.776263578034403e-18,1.2197274440461925e-18,-2.5594506708330025e-18,2.2484088402268314e-18,-1.1737432782598906e-20,0.012500000186264515,6.120726044513425e-19,1.4516167754274706e-18,0.004166666883975267,-2.168404344971009e-18,-3.2526065174565133e-18,-0.004166666883975267,-0.0020833334419876337,5.421010862427522e-20,5.149960319306146e-19,8.673617379884035e-19,3.2526065174565133e-19,6.555701037575966e-19,1.8987023647420356e-19,-1.1967578016583313e-19,6.120726044513425e-19,0.0020833334419876337,7.066569851840248e-19,0.0019841270986944437,-3.0357660829594124e-18,-9.540979117872439e-18,-7.15573433840433e-18,-0.003968254197388887,8.131516293641283e-20,7.453889935837843e-19,6.369687763352339e-19,5.963111948670274e-19,1.868838197797939e-18,2.3014573885538647e-21,1.4409314630696637e-18,1.4516167754274706e-18,7.066569851840248e-19,0.0009920635493472219,8.0,3.0,3.0,6.0,0.07933752238750458,-0.014880952425301075,-0.031167328357696533,-0.031167328357696533,-0.018766533583402634,0.0007716049440205097,0.002314814832061529,0.002314814832061529,0.0013227512827143073,0.0034722222480922937,0.0052083334885537624,0.0029761905316263437,0.0034722222480922937,0.0029761905316263437,0.0012400794075801969,-0.014880952425301075,0.008109725080430508,0.002314814832061529,0.002314814832061529,0.0013227512827143073,-0.0007716049440205097,-0.0006613756413571537,-0.0006613756413571537,-0.0003779289545491338,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.031167328357696533,0.002314814832061529,0.06588955223560333,0.0052083334885537624,0.0029761905316263437,-0.0,-0.002314814832061529,-0.0,-0.0,-0.02083333395421505,-0.0052083334885537624,-0.0029761905316263437,2.3129645794903686e-17,3.965082408057119e-18,4.543323428852619e-18,-0.031167328357696533,0.002314814832061529,0.0052083334885537624,0.06588955223560333,0.0029761905316263437,-0.0,-0.0,-0.002314814832061529,-0.0,3.425390319912305e-17,-0.0052083334885537624,-9.271948260348896e-33,-0.02083333395421505,-0.0029761905316263437,4.543323428852619e-18,-0.018766533583402634,0.0013227512827143073,0.0029761905316263437,0.0029761905316263437,0.014327050186693668,-2.710505431213761e-20,-0.0,-0.0,-0.0005291005363687873,1.6160463845687216e-17,-9.568916336933007e-33,-0.0011904762359336019,1.4177922021273197e-17,-0.0011904762359336019,-0.0018601190531626344,0.0007716049440205097,-0.0007716049440205097,-0.0,-0.0,-2.710505431213761e-20,0.00011022927355952561,-0.0,-0.0,6.776263578034403e-21,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.002314814832061529,-0.0006613756413571537,-0.002314814832061529,-0.0,-0.0,-0.0,0.0006613756413571537,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002314814832061529,-0.0006613756413571537,-0.0,-0.002314814832061529,-0.0,-0.0,-0.0,0.0006613756413571537,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013227512827143073,-0.0003779289545491338,-0.0,-0.0,-0.0005291005363687873,6.776263578034403e-21,-0.0,-0.0,0.0001511715818196535,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.02083333395421505,3.425390319912305e-17,1.6160463845687216e-17,-0.0,-0.0,-0.0,-0.0,0.010416666977107525,-6.167905738316459e-18,-2.8196140695271088e-18,-1.1564822897451843e-17,-1.9825412040285595e-18,-2.2716617144263096e-18,0.0052083334885537624,-0.0,-0.0052083334885537624,-0.0052083334885537624,-9.568916336933007e-33,0.0,-0.0,-0.0,-0.0,-6.167905738316459e-18,0.0052083334885537624,1.6695469122912177e-33,6.847751239903047e-33,1.173900178444481e-33,1.3450939410749579e-33,0.0029761905316263437,-0.0,-0.0029761905316263437,-9.271948260348896e-33,-0.0011904762359336019,0.0,-0.0,-0.0,-0.0,-2.8196140695271088e-18,1.6695469122912177e-33,0.0011904762359336019,3.1304005982992774e-33,5.366400789507485e-34,6.149000847246809e-34,0.0034722222480922937,-0.0,2.3129645794903686e-17,-0.02083333395421505,1.4177922021273197e-17,-0.0,-0.0,-0.0,-0.0,-1.1564822897451843e-17,6.847751239903047e-33,3.1304005982992774e-33,0.010416666977107525,-2.8196140695271088e-18,-2.2716617144263096e-18,0.0029761905316263437,-0.0,3.965082408057119e-18,-0.0029761905316263437,-0.0011904762359336019,-0.0,-0.0,-0.0,-0.0,-1.9825412040285595e-18,1.173900178444481e-33,5.366400789507485e-34,-2.8196140695271088e-18,0.0011904762359336019,1.0472516824029184e-33,0.0012400794075801969,-0.0,4.543323428852619e-18,4.543323428852619e-18,-0.0018601190531626344,-0.0,-0.0,-0.0,-0.0,-2.2716617144263096e-18,1.3450939410749579e-33,6.149000847246809e-34,-2.2716617144263096e-18,1.0472516824029184e-33,0.00037202381645329297,8.0,3.0,3.0,7.0,0.0699404776096344,-0.012896825559437275,-0.02703372947871685,-0.02703372947871685,-0.014384920708835125,0.0006613756413571537,0.0019841270986944437,0.0019841270986944437,0.0009920635493472219,0.0029761905316263437,0.004464285913854837,0.0022321429569274187,0.0029761905316263437,0.0022321429569274187,0.0008267195662483573,-0.012896825559437275,0.00699168536812067,0.0019841270986944437,0.0019841270986944437,0.0009920635493472219,-0.0006613756413571537,-0.0005668934318237007,-0.0005668934318237007,-0.00028344671591185033,-1.3481509610710651e-33,0.0,1.8957393694084068e-34,-1.2135751331656486e-33,3.592930625711977e-34,1.8973538018496328e-19,-0.02703372947871685,0.0019841270986944437,0.056795634329319,0.004464285913854837,0.0022321429569274187,-0.0,-0.0019841270986944437,-3.0148499972292384e-35,-4.9805929824855525e-34,-0.01785714365541935,-0.004464285913854837,-0.0022321429569274187,1.9825411626695288e-17,2.9738117026452626e-18,2.8563729419731996e-18,-0.02703372947871685,0.0019841270986944437,0.004464285913854837,0.056795634329319,0.0022321429569274187,1.7432818847040833e-34,-1.2995484653987942e-35,-0.0019841270986944437,-4.3563930844069365e-34,2.881765236108985e-17,-0.004464285913854837,-2.929953097545153e-33,-0.01785714365541935,-0.0022321429569274187,2.8782655176553344e-18,-0.014384920708835125,0.0009920635493472219,0.0022321429569274187,0.0022321429569274187,0.009093915112316608,5.421010862427522e-20,-1.3552527156068805e-20,2.710505431213761e-20,-0.0003306878206785768,1.1588424841869819e-17,-5.881479455163772e-33,-0.0007440476329065859,1.0101518887149611e-17,-0.0007440476329065859,-0.0009920635493472219,0.0006613756413571537,-0.0006613756413571537,-0.0,1.7432818847040833e-34,5.421010862427522e-20,9.448223863728344e-05,-0.0,-0.0,-6.776263578034403e-21,3.670129552683863e-35,0.0,0.0,3.346324274621864e-37,0.0,-3.304534848361061e-21,0.0019841270986944437,-0.0005668934318237007,-0.0019841270986944437,-1.2995484653987942e-35,-1.3552527156068805e-20,-0.0,0.0005668934318237007,-0.0,0.0,2.374564738916847e-35,-0.0,-0.0,6.497742326993971e-36,-0.0,2.0850042555291977e-21,0.0019841270986944437,-0.0005668934318237007,-3.0148499972292384e-35,-0.0019841270986944437,2.710505431213761e-20,-0.0,-0.0,0.0005668934318237007,-0.0,1.5074249986146192e-35,-0.0,-0.0,1.214514679167967e-35,-0.0,-4.170008511058395e-21,0.0009920635493472219,-0.00028344671591185033,-4.9805929824855525e-34,-4.3563930844069365e-34,-0.0003306878206785768,-6.776263578034403e-21,0.0,-0.0,9.448223863728344e-05,3.4381660037554244e-34,-0.0,-6.319131040037406e-35,3.974661855059457e-34,-1.1976434653744122e-34,-5.421010862427522e-20,0.0029761905316263437,-1.3481509610710651e-33,-0.01785714365541935,2.881765236108985e-17,1.1588424841869819e-17,3.670129552683863e-35,2.374564738916847e-35,1.5074249986146192e-35,3.4381660037554244e-34,0.008928571827709675,-4.5315224566436314e-18,-1.5105074855478771e-18,-9.912705813347644e-18,-1.4869058513226313e-18,-1.4318352680661478e-18,0.004464285913854837,0.0,-0.004464285913854837,-0.004464285913854837,-5.881479455163772e-33,0.0,-0.0,-0.0,-0.0,-4.5315224566436314e-18,0.004464285913854837,7.666286710959985e-34,5.031000843478201e-33,7.546501081546309e-34,7.267001126521905e-34,0.0022321429569274187,1.8957393694084068e-34,-0.0022321429569274187,-2.929953097545153e-33,-0.0007440476329065859,0.0,-0.0,-0.0,-6.319131040037406e-35,-1.5105074855478771e-18,7.666286710959985e-34,0.0007440476329065859,1.2759285881565438e-33,-1.2951090514187393e-34,5.26594262902648e-35,0.0029761905316263437,-1.2135751331656486e-33,1.9825411626695288e-17,-0.01785714365541935,1.0101518887149611e-17,3.346324274621864e-37,6.497742326993971e-36,1.214514679167967e-35,3.974661855059457e-34,-9.912705813347644e-18,5.031000843478201e-33,1.2759285881565438e-33,0.008928571827709675,-1.5105074855478771e-18,-1.4318352680661478e-18,0.0022321429569274187,3.592930625711977e-34,2.9738117026452626e-18,-0.0022321429569274187,-0.0007440476329065859,0.0,-0.0,-0.0,-1.1976434653744122e-34,-1.4869058513226313e-18,7.546501081546309e-34,-1.2951090514187393e-34,-1.5105074855478771e-18,0.0007440476329065859,1.2138877871123185e-34,0.0008267195662483573,1.8973538018496328e-19,2.8563729419731996e-18,2.8782655176553344e-18,-0.0009920635493472219,-3.304534848361061e-21,2.0850042555291977e-21,-4.170008511058395e-21,-5.421010862427522e-20,-1.4318352680661478e-18,7.267001126521905e-34,5.26594262902648e-35,-1.4318352680661478e-18,1.2138877871123185e-34,0.0001653439103392884,8.0,3.0,3.0,8.0,0.06254822760820389,-0.011381172575056553,-0.02387152798473835,-0.02387152798473835,-0.011381172575056553,0.0005787037080153823,0.0017361111240461469,0.0017361111240461469,0.0007716049440205097,0.0026041667442768812,0.00390625,0.0017361111240461469,0.0026041667442768812,0.0017361111240461469,0.0005787037080153823,-0.011381172575056553,0.006145282182842493,0.0017361111240461469,0.0017361111240461469,0.0007716049440205097,-0.0005787037080153823,-0.0004960317746736109,-0.0004960317746736109,-0.00022045854711905122,-3.851859888774472e-34,0.0,-1.3552527156068805e-20,-2.223173206035585e-34,3.573725527577937e-34,5.600006284635462e-20,-0.02387152798473835,0.0017361111240461469,0.0499131940305233,0.00390625,0.0017361111240461469,-0.0,-0.0017361111240461469,-4.540671617055745e-20,-1.2045193245876216e-20,-0.015625,-0.00390625,-0.0017361111240461469,1.734723475976807e-17,2.3129647035674605e-18,1.8317085416422713e-18,-0.02387152798473835,0.0017361111240461469,0.00390625,0.0499131940305233,0.0017361111240461469,-4.3279407967875664e-20,-4.743384504624082e-20,-0.0017361111240461469,-1.0093480785396521e-20,2.4864369270880493e-17,-0.00390625,2.027128269838195e-21,-0.015625,-0.0017361111240461469,1.938133599253344e-18,-0.011381172575056553,0.0007716049440205097,0.0017361111240461469,0.0017361111240461469,0.006145282182842493,-0.0,-1.3552527156068805e-20,1.3552527156068805e-20,-0.00022045854711905122,9.664888292091045e-18,-4.292072604923833e-33,-0.0004960317746736109,8.508405423319432e-18,-0.0004960317746736109,-0.0005787037080153823,0.0005787037080153823,-0.0005787037080153823,-0.0,-4.3279407967875664e-20,-0.0,8.26719551696442e-05,-0.0,2.710505431213761e-20,6.776263578034403e-21,2.2759576663538687e-35,-0.0,1.0625629489367905e-22,2.489919162147937e-35,-0.0,-3.8951834070926205e-21,0.0017361111240461469,-0.0004960317746736109,-0.0017361111240461469,-4.743384504624082e-20,-1.3552527156068805e-20,-0.0,0.0004960317746736109,1.3552527156068805e-20,-4.883795707496509e-22,-1.4303312519844268e-35,0.0,-4.273266844211421e-22,-4.763968605273337e-37,0.0,2.0721560968985248e-21,0.0017361111240461469,-0.0004960317746736109,-4.540671617055745e-20,-0.0017361111240461469,1.3552527156068805e-20,2.710505431213761e-20,1.3552527156068805e-20,0.0004960317746736109,2.883851710669975e-21,7.612852686697938e-36,-0.0,-5.791795056680557e-22,1.6356689642103715e-35,-0.0,-3.0465623376857037e-21,0.0007716049440205097,-0.00022045854711905122,-1.2045193245876216e-20,-1.0093480785396521e-20,-0.00022045854711905122,6.776263578034403e-21,-4.883795707496509e-22,2.883851710669975e-21,6.29881615168415e-05,6.272969927893592e-35,-0.0,3.929863196611976e-21,5.1184474323091646e-36,-1.0210644692492307e-34,-7.295302448746522e-21,0.0026041667442768812,-3.851859888774472e-34,-0.015625,2.4864369270880493e-17,9.664888292091045e-18,2.2759576663538687e-35,-1.4303312519844268e-35,7.612852686697938e-36,6.272969927893592e-35,0.0078125,-3.469446951953614e-18,-1.7622588710026254e-18,-8.673617379884035e-18,-1.1564823517837303e-18,-9.63735310386038e-19,0.00390625,0.0,-0.00390625,-0.00390625,-4.292072604923833e-33,-0.0,0.0,-0.0,-0.0,-3.469446951953614e-18,0.00390625,7.826001495748193e-34,3.851859888774472e-33,5.135813338091789e-34,4.2798445249394045e-34,0.0017361111240461469,-1.3552527156068805e-20,-0.0017361111240461469,2.027128269838195e-21,-0.0004960317746736109,1.0625629489367905e-22,-4.273266844211421e-22,-5.791795056680557e-22,3.929863196611976e-21,-1.7622588710026254e-18,7.826001495748193e-34,0.0004960317746736109,1.6370404527291505e-33,-1.336146546437529e-34,2.5288418668541978e-20,0.0026041667442768812,-2.223173206035585e-34,1.734723475976807e-17,-0.015625,8.508405423319432e-18,2.489919162147937e-35,-4.763968605273337e-37,1.6356689642103715e-35,5.1184474323091646e-36,-8.673617379884035e-18,3.851859888774472e-33,1.6370404527291505e-33,0.0078125,-1.7622588710026254e-18,-9.63735310386038e-19,0.0017361111240461469,3.573725527577937e-34,2.3129647035674605e-18,-0.0017361111240461469,-0.0004960317746736109,-0.0,0.0,-0.0,-1.0210644692492307e-34,-1.1564823517837303e-18,5.135813338091789e-34,-1.336146546437529e-34,-1.7622588710026254e-18,0.0004960317746736109,9.202098090135631e-35,0.0005787037080153823,5.600006284635462e-20,1.8317085416422713e-18,1.938133599253344e-18,-0.0005787037080153823,-3.8951834070926205e-21,2.0721560968985248e-21,-3.0465623376857037e-21,-7.295302448746522e-21,-9.63735310386038e-19,4.2798445249394045e-34,2.5288418668541978e-20,-9.63735310386038e-19,9.202098090135631e-35,8.26719551696442e-05,8.0,3.0,4.0,3.0,0.10873842239379883,-0.02152777835726738,-0.04496527835726738,-0.03680555522441864,-0.04496527835726738,0.0011574074160307646,0.0034722222480922937,0.0027777778450399637,0.0034722222480922937,0.0052083334885537624,0.0062500000931322575,0.0078125,0.0034722222480922937,0.0062500000931322575,0.0052083334885537624,-0.02152777835726738,0.011937830597162247,0.0034722222480922937,0.0027777778450399637,0.0034722222480922937,-0.0011574074160307646,-0.0009920635493472219,-0.0007936508045531809,-0.0009920635493472219,6.938893903907228e-18,2.6020852139652106e-18,3.469446951953614e-18,8.673617379884035e-18,3.469446951953614e-18,1.5612511283791264e-17,-0.04496527835726738,0.0034722222480922937,0.09704861044883728,0.0062500000931322575,0.0078125,-4.336808689942018e-19,-0.0034722222480922937,7.198469797571269e-18,4.4389832799754865e-18,-0.03125,-0.0062500000931322575,-0.0078125,1.8648277366750676e-17,9.75781955236954e-18,-2.862293735361732e-17,-0.03680555522441864,0.0027777778450399637,0.0062500000931322575,0.048842594027519226,0.0062500000931322575,1.6263032587282567e-18,4.824699667560495e-18,-0.0018518518190830946,4.1624241275648135e-18,3.2851325826310784e-17,-0.004166666883975267,8.11215613140448e-18,-0.010416666977107525,-0.004166666883975267,4.0766001685454967e-17,-0.04496527835726738,0.0034722222480922937,0.0078125,0.0062500000931322575,0.09704861044883728,2.3852447794681098e-18,4.662069341687669e-18,7.535205098774256e-18,-0.0034722222480922937,-3.924811864397526e-17,2.8189256484623115e-18,-0.0078125,2.0599841277224584e-17,-0.0062500000931322575,-0.03125,0.0011574074160307646,-0.0011574074160307646,-4.336808689942018e-19,1.6263032587282567e-18,2.3852447794681098e-18,0.0001653439103392884,5.421010862427522e-20,8.131516293641283e-20,8.131516293641283e-20,1.0842021724855044e-19,2.710505431213761e-20,-1.3552527156068805e-19,-2.168404344971009e-19,2.710505431213761e-20,-2.168404344971009e-19,0.0034722222480922937,-0.0009920635493472219,-0.0034722222480922937,4.824699667560495e-18,4.662069341687669e-18,5.421010862427522e-20,0.0009920635493472219,-4.070542869676378e-20,4.9352509864103173e-20,-2.3438321888957956e-18,-4.041783609235499e-19,2.2905155904294425e-19,-1.158703848716318e-18,-7.419446135131135e-19,-1.999641095241562e-18,0.0027777778450399637,-0.0007936508045531809,7.198469797571269e-18,-0.0018518518190830946,7.535205098774256e-18,8.131516293641283e-20,-4.070542869676378e-20,0.0005291005363687873,-1.6783417080518505e-20,-2.232194445859567e-18,-1.3197360616456912e-18,-6.608470507765904e-19,-3.038264581999629e-18,-1.0260262498119203e-18,-2.632374086455065e-18,0.0034722222480922937,-0.0009920635493472219,4.4389832799754865e-18,4.1624241275648135e-18,-0.0034722222480922937,8.131516293641283e-20,4.9352509864103173e-20,-1.6783417080518505e-20,0.0009920635493472219,-1.5258411393579257e-18,-3.6246033391005053e-19,-1.0772087739966749e-18,-9.070862597256501e-19,-1.0526783193411085e-18,-7.12927365778937e-18,0.0052083334885537624,6.938893903907228e-18,-0.03125,3.2851325826310784e-17,-3.924811864397526e-17,1.0842021724855044e-19,-2.3438321888957956e-18,-2.232194445859567e-18,-1.5258411393579257e-18,0.015625,-2.1665014159718306e-18,2.4478569751643924e-18,-6.107953755470147e-18,-1.973754477971715e-18,2.247267910007937e-17,0.0062500000931322575,2.6020852139652106e-18,-0.0062500000931322575,-0.004166666883975267,2.8189256484623115e-18,2.710505431213761e-20,-4.041783609235499e-19,-1.3197360616456912e-18,-3.6246033391005053e-19,-2.1665014159718306e-18,0.004166666883975267,-1.3406355294542736e-19,-2.1378144304369736e-19,-9.707576601963069e-19,6.997822774195737e-21,0.0078125,3.469446951953614e-18,-0.0078125,8.11215613140448e-18,-0.0078125,-1.3552527156068805e-19,2.2905155904294425e-19,-6.608470507765904e-19,-1.0772087739966749e-18,2.4478569751643924e-18,-1.3406355294542736e-19,0.0078125,-1.2393512701032474e-18,-1.536942937154153e-18,-9.665282857243233e-18,0.0034722222480922937,8.673617379884035e-18,1.8648277366750676e-17,-0.010416666977107525,2.0599841277224584e-17,-2.168404344971009e-19,-1.158703848716318e-18,-3.038264581999629e-18,-9.070862597256501e-19,-6.107953755470147e-18,-2.1378144304369736e-19,-1.2393512701032474e-18,0.0034722222480922937,-4.506434482255204e-19,-7.65709181639517e-18,0.0062500000931322575,3.469446951953614e-18,9.75781955236954e-18,-0.004166666883975267,-0.0062500000931322575,2.710505431213761e-20,-7.419446135131135e-19,-1.0260262498119203e-18,-1.0526783193411085e-18,-1.973754477971715e-18,-9.707576601963069e-19,-1.536942937154153e-18,-4.506434482255204e-19,0.004166666883975267,-7.06448639067238e-18,0.0052083334885537624,1.5612511283791264e-17,-2.862293735361732e-17,4.0766001685454967e-17,-0.03125,-2.168404344971009e-19,-1.999641095241562e-18,-2.632374086455065e-18,-7.12927365778937e-18,2.247267910007937e-17,6.997822774195737e-21,-9.665282857243233e-18,-7.65709181639517e-18,-7.06448639067238e-18,0.015625,8.0,3.0,4.0,4.0,0.08803819119930267,-0.01666666753590107,-0.03489583358168602,-0.028541667386889458,-0.028541667386889458,0.0008680555620230734,0.0026041667442768812,0.0020833334419876337,0.0020833334419876337,0.00390625,0.004687500186264515,0.004687500186264515,0.0026041667442768812,0.0037499999161809683,0.0026041667442768812,-0.01666666753590107,0.00910218246281147,0.0026041667442768812,0.0020833334419876337,0.0020833334419876337,-0.0008680555620230734,-0.0007440476329065859,-0.0005952381179668009,-0.0005952381179668009,-1.734723475976807e-17,-1.734723475976807e-18,-8.673617379884035e-19,-6.938893903907228e-18,-1.3010426069826053e-18,-6.071532165918825e-18,-0.03489583358168602,0.0026041667442768812,0.07395832985639572,0.004687500186264515,0.004687500186264515,-2.3310346708438345e-18,-0.0026041667442768812,-8.025212004399643e-18,-7.736043724321518e-18,-0.0234375,-0.004687500186264515,-0.004687500186264515,-8.890457814381136e-18,-9.75781955236954e-18,-7.806255641895632e-18,-0.028541667386889458,0.0020833334419876337,0.004687500186264515,0.03725694492459297,0.0037499999161809683,-1.0842021724855044e-19,-4.0115480381963664e-18,-0.0013888889225199819,-5.293897604106192e-18,-3.0357660829594124e-17,-0.0031250000465661287,1.6834807744024893e-18,-0.0078125,-0.0024999999441206455,8.673617379884035e-19,-0.028541667386889458,0.0020833334419876337,0.004687500186264515,0.0037499999161809683,0.03725694492459297,3.2526065174565133e-19,-4.0115480381963664e-18,-5.366800753803247e-18,-0.0013888889225199819,-3.030345072096985e-17,2.0599841277224584e-18,-0.0031250000465661287,-3.7947076036992655e-19,-0.0024999999441206455,-0.0078125,0.0008680555620230734,-0.0008680555620230734,-2.3310346708438345e-18,-1.0842021724855044e-19,3.2526065174565133e-19,0.00012400794366840273,-0.0,-5.421010862427522e-20,-9.486769009248164e-20,9.75781955236954e-19,5.421010862427522e-20,-1.6263032587282567e-19,2.710505431213761e-19,-5.421010862427522e-20,1.6263032587282567e-19,0.0026041667442768812,-0.0007440476329065859,-0.0026041667442768812,-4.0115480381963664e-18,-4.0115480381963664e-18,-0.0,0.0007440476329065859,1.1561331523182622e-19,1.1561331523182622e-19,8.428341267661929e-19,6.283161569351995e-19,5.704920445158918e-19,7.322640671056171e-19,4.0572870418662744e-19,7.253802183491625e-19,0.0020833334419876337,-0.0005952381179668009,-8.025212004399643e-18,-0.0013888889225199819,-5.366800753803247e-18,-5.421010862427522e-20,1.1561331523182622e-19,0.00039682540227659047,2.6829218012184733e-19,3.1589907652211307e-18,4.400190887391011e-19,3.937598143132914e-19,1.5520755860753513e-18,4.906463162388911e-19,1.0913183038977216e-18,0.0020833334419876337,-0.0005952381179668009,-7.736043724321518e-18,-5.293897604106192e-18,-0.0013888889225199819,-9.486769009248164e-20,1.1561331523182622e-19,2.6829218012184733e-19,0.00039682540227659047,3.1259484152672406e-18,3.69528747340681e-19,3.937598143132914e-19,1.0821399078208332e-18,4.530514743862389e-19,1.6199959031599632e-18,0.00390625,-1.734723475976807e-17,-0.0234375,-3.0357660829594124e-17,-3.030345072096985e-17,9.75781955236954e-19,8.428341267661929e-19,3.1589907652211307e-18,3.1259484152672406e-18,0.01171875,-1.4546435326863787e-18,-1.5413797271647344e-18,3.685280294054932e-18,4.433659545553095e-18,3.757560576750734e-18,0.004687500186264515,-1.734723475976807e-18,-0.004687500186264515,-0.0031250000465661287,2.0599841277224584e-18,5.421010862427522e-20,6.283161569351995e-19,4.400190887391011e-19,3.69528747340681e-19,-1.4546435326863787e-18,0.0031250000465661287,-1.1915348540237008e-18,-4.40304672845585e-19,1.821728135800376e-20,-5.8486497974324835e-19,0.004687500186264515,-8.673617379884035e-19,-0.004687500186264515,1.6834807744024893e-18,-0.0031250000465661287,-1.6263032587282567e-19,5.704920445158918e-19,3.937598143132914e-19,3.937598143132914e-19,-1.5413797271647344e-18,-1.1915348540237008e-18,0.0031250000465661287,-4.469284766969682e-19,-2.2261746389517123e-19,-6.493128960139393e-19,0.0026041667442768812,-6.938893903907228e-18,-8.890457814381136e-18,-0.0078125,-3.7947076036992655e-19,2.710505431213761e-19,7.322640671056171e-19,1.5520755860753513e-18,1.0821399078208332e-18,3.685280294054932e-18,-4.40304672845585e-19,-4.469284766969682e-19,0.0026041667442768812,4.474118603674289e-19,-1.1509624721585873e-18,0.0037499999161809683,-1.3010426069826053e-18,-9.75781955236954e-18,-0.0024999999441206455,-0.0024999999441206455,-5.421010862427522e-20,4.0572870418662744e-19,4.906463162388911e-19,4.530514743862389e-19,4.433659545553095e-18,1.821728135800376e-20,-2.2261746389517123e-19,4.474118603674289e-19,0.0016666667070239782,-1.9210257722763397e-19,0.0026041667442768812,-6.071532165918825e-18,-7.806255641895632e-18,8.673617379884035e-19,-0.0078125,1.6263032587282567e-19,7.253802183491625e-19,1.0913183038977216e-18,1.6199959031599632e-18,3.757560576750734e-18,-5.8486497974324835e-19,-6.493128960139393e-19,-1.1509624721585873e-18,-1.9210257722763397e-19,0.0026041667442768812,8.0,3.0,4.0,5.0,0.07408729940652847,-0.013611110858619213,-0.028541667386889458,-0.023333333432674408,-0.019771825522184372,0.0006944444612599909,0.0020833334419876337,0.0016666667070239782,0.0013888889225199819,0.0031250000465661287,0.0037499999161809683,0.0031250000465661287,0.0020833334419876337,0.0024999999441206455,0.0014880952658131719,-0.013611110858619213,0.007361111231148243,0.0020833334419876337,0.0016666667070239782,0.0013888889225199819,-0.0006944444612599909,-0.0005952381179668009,-0.0004761904710903764,-0.00039682540227659047,1.734723475976807e-18,-4.336808689942018e-19,-6.505213034913027e-19,-1.734723475976807e-18,1.3010426069826053e-18,1.3010426069826053e-18,-0.028541667386889458,0.0020833334419876337,0.05979166552424431,0.0037499999161809683,0.0031250000465661287,-1.0299920638612292e-18,-0.0020833334419876337,3.1143668527157325e-18,9.720512672767633e-19,-0.01875000074505806,-0.0037499999161809683,-0.0031250000465661287,1.5829351718288365e-17,7.589415207398531e-19,-3.2526065174565133e-19,-0.023333333432674408,0.0016666667070239782,0.0037499999161809683,0.030138889327645302,0.0024999999441206455,-1.2468324983583301e-18,9.75781955236954e-19,-0.0011111111380159855,8.532005609978606e-19,2.8189256484623115e-17,-0.0024999999441206455,-3.313933041836341e-20,-0.0062500000931322575,-0.0016666667070239782,5.421010862427522e-19,-0.019771825522184372,0.0013888889225199819,0.0031250000465661287,0.0024999999441206455,0.018814483657479286,7.047314121155779e-19,9.486769009248164e-19,6.505213034913027e-19,-0.0006944444612599909,-6.505213034913027e-19,-2.0057740190981832e-18,-0.0015625000232830644,5.719166459861036e-18,-0.0012499999720603228,-0.0029761905316263437,0.0006944444612599909,-0.0006944444612599909,-1.0299920638612292e-18,-1.2468324983583301e-18,7.047314121155779e-19,9.920635056914762e-05,4.0657581468206416e-20,1.0842021724855044e-19,1.3552527156068805e-20,-3.2526065174565133e-19,1.0842021724855044e-19,6.776263578034403e-20,1.6263032587282567e-19,-5.421010862427522e-20,0.0,0.0020833334419876337,-0.0005952381179668009,-0.0020833334419876337,9.75781955236954e-19,9.486769009248164e-19,4.0657581468206416e-20,0.0005952381179668009,7.313284741340314e-21,1.0569982054666814e-20,1.7950886355390894e-18,1.8412122781938345e-19,2.9661786867477764e-19,-3.3974367954265986e-19,-1.451158491518722e-19,-2.678491732050369e-19,0.0016666667070239782,-0.0004761904710903764,3.1143668527157325e-18,-0.0011111111380159855,6.505213034913027e-19,1.0842021724855044e-19,7.313284741340314e-21,0.0003174603043589741,2.841515653723102e-20,-1.2887883397979385e-18,-2.4511786223116756e-19,-1.085154981153589e-19,8.134850865485638e-19,-9.198169570937534e-20,-1.3055611327774645e-19,0.0013888889225199819,-0.00039682540227659047,9.720512672767633e-19,8.532005609978606e-19,-0.0006944444612599909,1.3552527156068805e-20,1.0569982054666814e-20,2.841515653723102e-20,0.00019841270113829523,-5.479104790822887e-19,-4.642936020809161e-20,9.200972937732264e-20,-1.3250864726428373e-19,-2.659207308538402e-19,-2.9605003503365413e-19,0.0031250000465661287,1.734723475976807e-18,-0.01875000074505806,2.8189256484623115e-17,-6.505213034913027e-19,-3.2526065174565133e-19,1.7950886355390894e-18,-1.2887883397979385e-18,-5.479104790822887e-19,0.00937500037252903,-1.6296909769269676e-18,1.6314309513454729e-18,-7.054015111298071e-18,-2.352896640843305e-19,3.0601838859553067e-19,0.0037499999161809683,-4.336808689942018e-19,-0.0037499999161809683,-0.0024999999441206455,-2.0057740190981832e-18,1.0842021724855044e-19,1.8412122781938345e-19,-2.4511786223116756e-19,-4.642936020809161e-20,-1.6296909769269676e-18,0.0024999999441206455,7.494005610607251e-19,1.6653345514133955e-19,-2.960594765248646e-20,3.304235253882952e-19,0.0031250000465661287,-6.505213034913027e-19,-0.0031250000465661287,-3.313933041836341e-20,-0.0015625000232830644,6.776263578034403e-20,2.9661786867477764e-19,-1.085154981153589e-19,9.200972937732264e-20,1.6314309513454729e-18,7.494005610607251e-19,0.0015625000232830644,-2.605424542098087e-19,2.239568502526536e-19,1.112794058099312e-19,0.0020833334419876337,-1.734723475976807e-18,1.5829351718288365e-17,-0.0062500000931322575,5.719166459861036e-18,1.6263032587282567e-19,-3.3974367954265986e-19,8.134850865485638e-19,-1.3250864726428373e-19,-7.054015111298071e-18,1.6653345514133955e-19,-2.605424542098087e-19,0.0020833334419876337,-2.3570023518137117e-18,-3.6765055621169692e-19,0.0024999999441206455,1.3010426069826053e-18,7.589415207398531e-19,-0.0016666667070239782,-0.0012499999720603228,-5.421010862427522e-20,-1.451158491518722e-19,-9.198169570937534e-20,-2.659207308538402e-19,-2.352896640843305e-19,-2.960594765248646e-20,2.239568502526536e-19,-2.3570023518137117e-18,0.0008333333535119891,1.832159949612178e-19,0.0014880952658131719,1.3010426069826053e-18,-3.2526065174565133e-19,5.421010862427522e-19,-0.0029761905316263437,0.0,-2.678491732050369e-19,-1.3055611327774645e-19,-2.9605003503365413e-19,3.0601838859553067e-19,3.304235253882952e-19,1.112794058099312e-19,-3.6765055621169692e-19,1.832159949612178e-19,0.0007440476329065859,8.0,3.0,4.0,6.0,0.06400462985038757,-0.011507936753332615,-0.02415674552321434,-0.01974206417798996,-0.014521329663693905,0.0005787037080153823,0.0017361111240461469,0.0013888889225199819,0.0009920635493472219,0.0026041667442768812,0.0031250000465661287,0.0022321429569274187,0.0017361111240461469,0.0017857142956927419,0.0009300595265813172,-0.011507936753332615,0.006181500386446714,0.0017361111240461469,0.0013888889225199819,0.0009920635493472219,-0.0005787037080153823,-0.0004960317746736109,-0.00039682540227659047,-0.00028344671591185033,2.514190112879918e-33,-0.0,-1.8881343569348464e-19,-0.0,-1.5105075372466654e-19,-2.95020996502244e-19,-0.02415674552321434,0.0017361111240461469,0.05019841343164444,0.0031250000465661287,0.0022321429569274187,-0.0,-0.0017361111240461469,-4.137740114894452e-35,-1.8881343569348464e-19,-0.015625,-0.0031250000465661287,-0.0022321429569274187,8.095375945498229e-18,2.3790494034752407e-18,3.4074925716394644e-18,-0.01974206417798996,0.0013888889225199819,0.0031250000465661287,0.025314154103398323,0.0017857142956927419,-2.7220730350924323e-20,0.0,-0.0009259259095415473,-2.459184438171482e-19,1.8817619436113757e-17,-0.0020833334419876337,-3.978754871287722e-33,-0.0052083334885537624,-0.0011904762359336019,-6.195441133342278e-19,-0.014521329663693905,0.0009920635493472219,0.0022321429569274187,0.0017857142956927419,0.010923858731985092,-2.710505431213761e-20,3.009265538105056e-36,-9.486769009248164e-20,-0.00039682540227659047,1.1889051227793028e-17,-5.631786087949887e-33,-0.0008928571478463709,-6.1597659877774406e-33,-0.0007142857066355646,-0.0013950893189758062,0.0005787037080153823,-0.0005787037080153823,-0.0,-2.7220730350924323e-20,-2.710505431213761e-20,8.26719551696442e-05,-0.0,-0.0,6.776263578034403e-21,0.0,0.0,4.363068100809967e-37,-0.0,-3.069026052300241e-36,4.5994523988713314e-36,0.0017361111240461469,-0.0004960317746736109,-0.0017361111240461469,0.0,3.009265538105056e-36,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,0.0,-3.009265538105056e-36,-0.0,-0.0,-0.0,0.0013888889225199819,-0.00039682540227659047,-4.137740114894452e-35,-0.0009259259095415473,-9.486769009248164e-20,-0.0,-0.0,0.00026455026818439364,2.710505431213761e-20,-0.0,0.0,1.6550960459577808e-35,0.0,1.2037062152420224e-35,2.407412430484045e-35,0.0009920635493472219,-0.00028344671591185033,-1.8881343569348464e-19,-2.459184438171482e-19,-0.00039682540227659047,6.776263578034403e-21,-0.0,2.710505431213761e-20,0.00011337868636474013,-1.005676100253265e-33,0.0,7.552537686233327e-20,0.0,6.042030278233632e-20,1.1800840377077644e-19,0.0026041667442768812,2.514190112879918e-33,-0.015625,1.8817619436113757e-17,1.1889051227793028e-17,0.0,-0.0,-0.0,-1.005676100253265e-33,0.0078125,-3.700743608425998e-18,-1.5860329011843016e-18,-4.0476879727491145e-18,-1.1895247017376204e-18,-1.7037462858197322e-18,0.0031250000465661287,-0.0,-0.0031250000465661287,-0.0020833334419876337,-5.631786087949887e-33,0.0,0.0,0.0,0.0,-3.700743608425998e-18,0.0020833334419876337,7.512960921639487e-34,1.917370325132334e-33,5.634720691229615e-34,8.070564013791732e-34,0.0022321429569274187,-1.8881343569348464e-19,-0.0022321429569274187,-3.978754871287722e-33,-0.0008928571478463709,4.363068100809967e-37,-3.009265538105056e-36,1.6550960459577808e-35,7.552537686233327e-20,-1.5860329011843016e-18,7.512960921639487e-34,0.0008928571478463709,8.217301524617855e-34,2.8173603456148077e-34,4.244906628781058e-34,0.0017361111240461469,-0.0,8.095375945498229e-18,-0.0052083334885537624,-6.1597659877774406e-33,-0.0,-0.0,0.0,0.0,-4.0476879727491145e-18,1.917370325132334e-33,8.217301524617855e-34,0.0017361111240461469,6.162975913874651e-34,8.827179217893152e-34,0.0017857142956927419,-1.5105075372466654e-19,2.3790494034752407e-18,-0.0011904762359336019,-0.0007142857066355646,-3.069026052300241e-36,-0.0,1.2037062152420224e-35,6.042030278233632e-20,-1.1895247017376204e-18,5.634720691229615e-34,2.8173603456148077e-34,6.162975913874651e-34,0.0004761904710903764,2.4781765050356993e-19,0.0009300595265813172,-2.95020996502244e-19,3.4074925716394644e-18,-6.195441133342278e-19,-0.0013950893189758062,4.5994523988713314e-36,-0.0,2.407412430484045e-35,1.1800840377077644e-19,-1.7037462858197322e-18,8.070564013791732e-34,4.244906628781058e-34,8.827179217893152e-34,2.4781765050356993e-19,0.00027901786961592734,8.0,3.0,4.0,7.0,0.0563616082072258,-0.00997023843228817,-0.02094493992626667,-0.01711309514939785,-0.01112351194024086,0.0004960317746736109,0.0014880952658131719,0.0011904762359336019,0.0007440476329065859,0.0022321429569274187,0.0026785715017467737,0.0016741071594879031,0.0014880952658131719,0.0013392857508733869,0.0006200397037900984,-0.00997023843228817,0.005328798200935125,0.0014880952658131719,0.0011904762359336019,0.0007440476329065859,-0.0004960317746736109,-0.00042517005931586027,-0.0003401360590942204,-0.00021258502965793014,3.274080905458301e-33,-2.2657611766230274e-19,1.3552527156068805e-20,-5.664403070804539e-19,-1.1608033623579483e-19,-1.7858514062411332e-19,-0.02094493992626667,0.0014880952658131719,0.04326637089252472,0.0026785715017467737,0.0016741071594879031,-0.0,-0.0014880952658131719,-2.5019083168098457e-19,1.3802398708958042e-20,-0.013392857275903225,-0.0026785715017467737,-0.0016741071594879031,6.938893903907228e-18,1.7989569456736936e-18,2.2231994770835122e-18,-0.01711309514939785,0.0011904762359336019,0.0026785715017467737,0.02182539738714695,0.0013392857508733869,-5.11958010798209e-20,-2.8567364232289313e-20,-0.0007936508045531809,-6.649308156113705e-20,1.5803684303880844e-17,-0.0017857142956927419,2.0448032373694422e-20,-0.004464285913854837,-0.0008928571478463709,2.2695037811539177e-20,-0.01112351194024086,0.0007440476329065859,0.0016741071594879031,0.0013392857508733869,0.006932043470442295,-2.710505431213761e-20,-0.0,-2.1006417091906648e-19,-0.00024801588733680546,9.480795110864306e-18,-3.978360713338212e-33,-0.0005580357392318547,-7.434529256613157e-19,-0.00044642857392318547,-0.0007440476329065859,0.0004960317746736109,-0.0004960317746736109,-0.0,-5.11958010798209e-20,-2.710505431213761e-20,7.086167897796258e-05,-0.0,1.3552527156068805e-20,-0.0,-2.8768178026726717e-35,7.054114766100514e-36,-2.7153902497898617e-22,-3.506288211622276e-36,1.0567534238210575e-21,3.730996941230081e-21,0.0014880952658131719,-0.00042517005931586027,-0.0014880952658131719,-2.8567364232289313e-20,-0.0,-0.0,0.00042517005931586027,6.776263578034403e-21,-5.367532787642724e-22,-1.6945833004042386e-35,7.819552864605164e-36,4.782770014788327e-22,4.96107547147302e-37,1.6168133645272567e-21,-1.5767085343864853e-22,0.0011904762359336019,-0.0003401360590942204,-2.5019083168098457e-19,-0.0007936508045531809,-2.1006417091906648e-19,1.3552527156068805e-20,6.776263578034403e-21,0.00022675737272948027,2.1738589225642e-20,-1.3443443797553164e-33,1.5105075372466654e-19,-3.406887039080365e-23,3.776268713869693e-19,7.736958250036878e-20,2.7628929039038254e-21,0.0007440476329065859,-0.00021258502965793014,1.3802398708958042e-20,-6.649308156113705e-20,-0.00024801588733680546,-0.0,-5.367532787642724e-22,2.1738589225642e-20,7.086167897796258e-05,-3.4093409078100945e-34,1.4775590908133012e-35,-3.974587495239526e-21,2.595532278617031e-35,-3.1973269095366468e-21,4.878316403342234e-20,0.0022321429569274187,3.274080905458301e-33,-0.013392857275903225,1.5803684303880844e-17,9.480795110864306e-18,-2.8768178026726717e-35,-1.6945833004042386e-35,-1.3443443797553164e-33,-3.4093409078100945e-34,0.0066964286379516125,-2.7189135153452095e-18,-1.69932097294015e-18,-3.469446951953614e-18,-8.921435521526094e-19,-1.073876476899005e-18,0.0026785715017467737,-2.2657611766230274e-19,-0.0026785715017467737,-0.0017857142956927419,-3.978360713338212e-33,7.054114766100514e-36,7.819552864605164e-36,1.5105075372466654e-19,1.4775590908133012e-35,-2.7189135153452095e-18,0.0017857142956927419,6.8996582235349785e-34,1.6602302012059895e-33,4.132008661579232e-34,4.361367813233815e-34,0.0016741071594879031,1.3552527156068805e-20,-0.0016741071594879031,2.0448032373694422e-20,-0.0005580357392318547,-2.7153902497898617e-22,4.782770014788327e-22,-3.406887039080365e-23,-3.974587495239526e-21,-1.69932097294015e-18,6.8996582235349785e-34,0.0005580357392318547,8.787055371266764e-34,-6.776263578034403e-21,-2.4964892498218577e-20,0.0014880952658131719,-5.664403070804539e-19,6.938893903907228e-18,-0.004464285913854837,-7.434529256613157e-19,-3.506288211622276e-36,4.96107547147302e-37,3.776268713869693e-19,2.595532278617031e-35,-3.469446951953614e-18,1.6602302012059895e-33,8.787055371266764e-34,0.0014880952658131719,4.956353010071399e-19,5.436384029354683e-34,0.0013392857508733869,-1.1608033623579483e-19,1.7989569456736936e-18,-0.0008928571478463709,-0.00044642857392318547,1.0567534238210575e-21,1.6168133645272567e-21,7.736958250036878e-20,-3.1973269095366468e-21,-8.921435521526094e-19,4.132008661579232e-34,-6.776263578034403e-21,4.956353010071399e-19,0.00029761905898340046,-1.078838762474279e-20,0.0006200397037900984,-1.7858514062411332e-19,2.2231994770835122e-18,2.2695037811539177e-20,-0.0007440476329065859,3.730996941230081e-21,-1.5767085343864853e-22,2.7628929039038254e-21,4.878316403342234e-20,-1.073876476899005e-18,4.361367813233815e-34,-2.4964892498218577e-20,5.436384029354683e-34,-1.078838762474279e-20,0.00012400794366840273,8.0,3.0,4.0,8.0,0.05036168918013573,-0.008796296082437038,-0.01848958246409893,-0.015104166232049465,-0.008796296082437038,0.0004340277810115367,0.0013020833721384406,0.0010416667209938169,0.0005787037080153823,0.001953125,0.0023437500931322575,0.0013020833721384406,0.0013020833721384406,0.0010416667209938169,0.0004340277810115367,-0.008796296082437038,0.004683366511017084,0.0013020833721384406,0.0010416667209938169,0.0005787037080153823,-0.0004340277810115367,-0.00037202381645329297,-0.00029761905898340046,-0.0001653439103392884,-3.851859888774472e-34,0.0,6.776263578034403e-21,0.0,4.3882648816625566e-20,5.817392580788665e-20,-0.01848958246409893,0.0013020833721384406,0.03802083432674408,0.0023437500931322575,0.0013020833721384406,-0.0,-0.0013020833721384406,-2.3663653384141702e-20,8.194962339093808e-21,-0.01171875,-0.0023437500931322575,-0.0013020833721384406,6.071532165918825e-18,1.4707964054955845e-18,1.4656416227133072e-18,-0.015104166232049465,0.0010416667209938169,0.0023437500931322575,0.01918402686715126,0.0010416667209938169,3.136505062265704e-20,-2.3708557012941113e-20,-0.0006944444612599909,-2.4416297672582242e-21,1.3617579120981813e-17,-0.0015625000232830644,8.306249796990014e-20,-0.00390625,-0.0006944444612599909,1.3730820767225782e-19,-0.008796296082437038,0.0005787037080153823,0.0013020833721384406,0.0010416667209938169,0.004683366511017084,1.3552527156068805e-20,-0.0,-4.0657581468206416e-20,-0.0001653439103392884,7.091714694895788e-18,-2.51948314353648e-33,-0.00037202381645329297,-3.6742463657850704e-33,-0.00029761905898340046,-0.0004340277810115367,0.0004340277810115367,-0.0004340277810115367,-0.0,3.136505062265704e-20,1.3552527156068805e-20,6.200397183420137e-05,-0.0,-0.0,-3.3881317890172014e-21,-1.8700747633647617e-35,0.0,-2.0456040485707442e-23,0.0,5.1413447828814927e-23,-9.95622837848828e-22,0.0013020833721384406,-0.00037202381645329297,-0.0013020833721384406,-2.3708557012941113e-20,-0.0,-0.0,0.00037202381645329297,6.776263578034403e-21,-3.870689793478262e-22,1.5367647894680258e-36,-0.0,2.4166800532011286e-22,-0.0,-2.389917812885152e-24,1.4748316292071333e-22,0.0010416667209938169,-0.00029761905898340046,-2.3663653384141702e-20,-0.0006944444612599909,-4.0657581468206416e-20,-0.0,6.776263578034403e-21,0.00019841270113829523,1.3300387318843584e-20,-2.3208988013284092e-35,-0.0,-1.521963701711373e-23,-0.0,-1.065374575420743e-22,-7.553062711662164e-22,0.0005787037080153823,-0.0001653439103392884,8.194962339093808e-21,-2.4416297672582242e-21,-0.0001653439103392884,-3.3881317890172014e-21,-3.870689793478262e-22,1.3300387318843584e-20,4.724111931864172e-05,1.600154542026301e-34,-0.0,-1.9543486947854244e-21,-0.0,-1.260277841001588e-20,-1.418575976437229e-20,0.001953125,-3.851859888774472e-34,-0.01171875,1.3617579120981813e-17,7.091714694895788e-18,-1.8700747633647617e-35,1.5367647894680258e-36,-2.3208988013284092e-35,1.600154542026301e-34,0.005859375,-2.0816682538902298e-18,-9.912706020142797e-19,-3.0357660829594124e-18,-6.938894007304805e-19,-7.228014310907402e-19,0.0023437500931322575,0.0,-0.0023437500931322575,-0.0015625000232830644,-2.51948314353648e-33,0.0,-0.0,-0.0,-0.0,-2.0816682538902298e-18,0.0015625000232830644,3.5217004894156947e-34,1.0785207504897528e-33,2.465190273714364e-34,2.5679066690458946e-34,0.0013020833721384406,6.776263578034403e-21,-0.0013020833721384406,8.306249796990014e-20,-0.00037202381645329297,-2.0456040485707442e-23,2.4166800532011286e-22,-1.521963701711373e-23,-1.9543486947854244e-21,-9.912706020142797e-19,3.5217004894156947e-34,0.00037202381645329297,5.135813338091789e-34,-2.371692252312041e-20,-5.8728381579747966e-21,0.0013020833721384406,0.0,6.071532165918825e-18,-0.00390625,-3.6742463657850704e-33,0.0,-0.0,-0.0,-0.0,-3.0357660829594124e-18,1.0785207504897528e-33,5.135813338091789e-34,0.0013020833721384406,3.5950692448287563e-34,3.7448637297332385e-34,0.0010416667209938169,4.3882648816625566e-20,1.4707964054955845e-18,-0.0006944444612599909,-0.00029761905898340046,5.1413447828814927e-23,-2.389917812885152e-24,-1.065374575420743e-22,-1.260277841001588e-20,-6.938894007304805e-19,2.465190273714364e-34,-2.371692252312041e-20,3.5950692448287563e-34,0.00019841270113829523,-3.847560825926224e-20,0.0004340277810115367,5.817392580788665e-20,1.4656416227133072e-18,1.3730820767225782e-19,-0.0004340277810115367,-9.95622837848828e-22,1.4748316292071333e-22,-7.553062711662164e-22,-1.418575976437229e-20,-7.228014310907402e-19,2.5679066690458946e-34,-5.8728381579747966e-21,3.7448637297332385e-34,-3.847560825926224e-20,6.200397183420137e-05,8.0,3.0,5.0,3.0,0.09169973433017731,-0.017592592164874077,-0.03680555522441864,-0.025529099628329277,-0.03680555522441864,0.0009259259095415473,0.0027777778450399637,0.0018518518190830946,0.0027777778450399637,0.004166666883975267,0.004166666883975267,0.0062500000931322575,0.0019841270986944437,0.004166666883975267,0.004166666883975267,-0.017592592164874077,0.009656084701418877,0.0027777778450399637,0.0018518518190830946,0.0027777778450399637,-0.0009259259095415473,-0.0007936508045531809,-0.0005291005363687873,-0.0007936508045531809,-1.3877787807814457e-17,-1.734723475976807e-18,-1.734723475976807e-18,-3.469446951953614e-18,-8.673617379884035e-19,-1.3877787807814457e-17,-0.03680555522441864,0.0027777778450399637,0.07847221940755844,0.004166666883975267,0.0062500000931322575,-1.8973538018496328e-18,-0.0027777778450399637,-3.710466289345946e-18,-5.466261364246929e-18,-0.02500000037252903,-0.004166666883975267,-0.0062500000931322575,-9.107298248878237e-18,-2.8189256484623115e-18,-8.673617379884035e-19,-0.025529099628329277,0.0018518518190830946,0.004166666883975267,0.024669311940670013,0.004166666883975267,-5.421010862427522e-20,-2.4936649967166602e-18,-0.0009259259095415473,-3.0309339006160308e-18,-1.0679391398982219e-17,-0.0020833334419876337,-1.5239747097032764e-18,-0.003968254197388887,-0.0020833334419876337,-5.204170427930421e-18,-0.03680555522441864,0.0027777778450399637,0.0062500000931322575,0.004166666883975267,0.07847221940755844,-1.734723475976807e-18,-6.559423143537302e-18,-4.2825985813177425e-18,-0.0027777778450399637,-2.3852447794681098e-18,-2.710505431213761e-18,-0.0062500000931322575,-3.957337929572091e-18,-0.004166666883975267,-0.02500000037252903,0.0009259259095415473,-0.0009259259095415473,-1.8973538018496328e-18,-5.421010862427522e-20,-1.734723475976807e-18,0.00013227513409219682,-8.131516293641283e-20,-6.776263578034403e-20,-1.0842021724855044e-19,4.336808689942018e-19,-1.0842021724855044e-19,-1.3552527156068805e-19,1.3552527156068805e-19,-8.131516293641283e-20,5.421010862427522e-19,0.0027777778450399637,-0.0007936508045531809,-0.0027777778450399637,-2.4936649967166602e-18,-6.559423143537302e-18,-8.131516293641283e-20,0.0007936508045531809,-6.776263578034403e-20,-0.0,5.692061405548898e-18,5.963111948670274e-19,1.0299920638612292e-18,4.743384504624082e-19,3.5236570605778894e-19,2.3852447794681098e-18,0.0018518518190830946,-0.0005291005363687873,-3.710466289345946e-18,-0.0009259259095415473,-4.2825985813177425e-18,-6.776263578034403e-20,-6.776263578034403e-20,0.00026455026818439364,-2.710505431213761e-20,1.2197274440461925e-18,5.963111948670274e-19,4.336808689942018e-19,7.860465750519907e-19,3.5236570605778894e-19,1.599198204416119e-18,0.0027777778450399637,-0.0007936508045531809,-5.466261364246929e-18,-3.0309339006160308e-18,-0.0027777778450399637,-1.0842021724855044e-19,-0.0,-2.710505431213761e-20,0.0007936508045531809,1.9244588561617704e-18,4.0657581468206416e-19,7.589415207398531e-19,5.55653613398821e-19,4.87890977618477e-19,3.198396408832238e-18,0.004166666883975267,-1.3877787807814457e-17,-0.02500000037252903,-1.0679391398982219e-17,-2.3852447794681098e-18,4.336808689942018e-19,5.692061405548898e-18,1.2197274440461925e-18,1.9244588561617704e-18,0.012500000186264515,-6.091957736784597e-19,-8.212750599672819e-19,1.6337059048251468e-18,4.54767977554863e-19,-2.1434623679606974e-18,0.004166666883975267,-1.734723475976807e-18,-0.004166666883975267,-0.0020833334419876337,-2.710505431213761e-18,-1.0842021724855044e-19,5.963111948670274e-19,5.963111948670274e-19,4.0657581468206416e-19,-6.091957736784597e-19,0.0020833334419876337,6.213934646172847e-21,2.1166832228099057e-18,4.97575091242365e-19,9.666121153095267e-20,0.0062500000931322575,-1.734723475976807e-18,-0.0062500000931322575,-1.5239747097032764e-18,-0.0062500000931322575,-1.3552527156068805e-19,1.0299920638612292e-18,4.336808689942018e-19,7.589415207398531e-19,-8.212750599672819e-19,6.213934646172847e-21,0.0062500000931322575,4.6357925407379414e-20,-2.7272268872965205e-19,-3.4414843181414122e-18,0.0019841270986944437,-3.469446951953614e-18,-9.107298248878237e-18,-0.003968254197388887,-3.957337929572091e-18,1.3552527156068805e-19,4.743384504624082e-19,7.860465750519907e-19,5.55653613398821e-19,1.6337059048251468e-18,2.1166832228099057e-18,4.6357925407379414e-20,0.0009920635493472219,4.754153362223757e-19,4.754153362223757e-19,0.004166666883975267,-8.673617379884035e-19,-2.8189256484623115e-18,-0.0020833334419876337,-0.004166666883975267,-8.131516293641283e-20,3.5236570605778894e-19,3.5236570605778894e-19,4.87890977618477e-19,4.54767977554863e-19,4.97575091242365e-19,-2.7272268872965205e-19,4.754153362223757e-19,0.0020833334419876337,-2.310202954297299e-18,0.004166666883975267,-1.3877787807814457e-17,-8.673617379884035e-19,-5.204170427930421e-18,-0.02500000037252903,5.421010862427522e-19,2.3852447794681098e-18,1.599198204416119e-18,3.198396408832238e-18,-2.1434623679606974e-18,9.666121153095267e-20,-3.4414843181414122e-18,4.754153362223757e-19,-2.310202954297299e-18,0.012500000186264515,8.0,3.0,5.0,4.0,0.07408729940652847,-0.013611110858619213,-0.028541667386889458,-0.019771825522184372,-0.023333333432674408,0.0006944444612599909,0.0020833334419876337,0.0013888889225199819,0.0016666667070239782,0.0031250000465661287,0.0031250000465661287,0.0037499999161809683,0.0014880952658131719,0.0024999999441206455,0.0020833334419876337,-0.013611110858619213,0.007361111231148243,0.0020833334419876337,0.0013888889225199819,0.0016666667070239782,-0.0006944444612599909,-0.0005952381179668009,-0.00039682540227659047,-0.0004761904710903764,1.734723475976807e-18,-8.673617379884035e-19,4.336808689942018e-19,2.168404344971009e-18,4.336808689942018e-19,-3.469446951953614e-18,-0.028541667386889458,0.0020833334419876337,0.05979166552424431,0.0031250000465661287,0.0037499999161809683,7.589415207398531e-19,-0.0020833334419876337,8.633645944733942e-19,3.2278105378243175e-18,-0.01875000074505806,-0.0031250000465661287,-0.0037499999161809683,7.589415207398531e-19,1.4094628242311558e-18,1.5395670849294163e-17,-0.019771825522184372,0.0013888889225199819,0.0031250000465661287,0.018814483657479286,0.0024999999441206455,-3.2526065174565133e-19,1.2739375526704677e-18,-0.0006944444612599909,1.1331790195668864e-18,2.168404344971009e-19,-0.0015625000232830644,1.4850524497626297e-18,-0.0029761905316263437,-0.0012499999720603228,3.144186300207963e-18,-0.023333333432674408,0.0016666667070239782,0.0037499999161809683,0.0024999999441206455,0.030138889327645302,-1.6263032587282567e-18,5.421010862427522e-19,8.402566836762659e-19,-0.0011111111380159855,2.846030702774449e-17,2.1141942363467336e-18,-0.0024999999441206455,2.574980159653073e-18,-0.0016666667070239782,-0.0062500000931322575,0.0006944444612599909,-0.0006944444612599909,7.589415207398531e-19,-3.2526065174565133e-19,-1.6263032587282567e-18,9.920635056914762e-05,1.3552527156068805e-20,-1.3552527156068805e-20,1.0842021724855044e-19,-2.710505431213761e-19,1.3552527156068805e-20,-1.3552527156068805e-20,-2.168404344971009e-19,1.3552527156068805e-20,3.2526065174565133e-19,0.0020833334419876337,-0.0005952381179668009,-0.0020833334419876337,1.2739375526704677e-18,5.421010862427522e-19,1.3552527156068805e-20,0.0005952381179668009,1.0569982054666814e-20,2.611071213001498e-20,1.7950886355390894e-18,2.50358594248968e-19,2.264154378283143e-19,-3.3708077835569853e-19,-1.451158491518722e-19,-2.1638556270837915e-19,0.0013888889225199819,-0.00039682540227659047,8.633645944733942e-19,-0.0006944444612599909,8.402566836762659e-19,-1.3552527156068805e-20,1.0569982054666814e-20,0.00019841270113829523,1.7407140342951898e-20,-5.479104790822887e-19,2.0215089589028966e-19,-1.0282163914294134e-19,-4.01029277869212e-20,-1.9073103422383863e-19,-1.442570418055861e-19,0.0016666667070239782,-0.0004761904710903764,3.2278105378243175e-18,1.1331790195668864e-18,-0.0011111111380159855,1.0842021724855044e-19,2.611071213001498e-20,1.7407140342951898e-20,0.0003174603043589741,-1.2887883397979385e-18,-1.737190826497082e-19,-2.902316983037444e-19,-2.463616833785059e-19,-3.182992935808611e-20,9.309690319615874e-19,0.0031250000465661287,1.734723475976807e-18,-0.01875000074505806,2.168404344971009e-19,2.846030702774449e-17,-2.710505431213761e-19,1.7950886355390894e-18,-5.479104790822887e-19,-1.2887883397979385e-18,0.00937500037252903,1.5100003204348056e-18,-1.6296909769269676e-18,1.9037015083221823e-19,-3.4631195889542547e-19,-7.077144735586279e-18,0.0031250000465661287,-8.673617379884035e-19,-0.0031250000465661287,-0.0015625000232830644,2.1141942363467336e-18,1.3552527156068805e-20,2.50358594248968e-19,2.0215089589028966e-19,-1.737190826497082e-19,1.5100003204348056e-18,0.0015625000232830644,-2.191762374505858e-19,1.443217557638213e-19,1.499419698123275e-19,-4.918389038870395e-19,0.0037499999161809683,4.336808689942018e-19,-0.0037499999161809683,1.4850524497626297e-18,-0.0024999999441206455,-1.3552527156068805e-20,2.264154378283143e-19,-1.0282163914294134e-19,-2.902316983037444e-19,-1.6296909769269676e-18,-2.191762374505858e-19,0.0024999999441206455,-1.189524624189438e-19,-2.6645353856590094e-19,4.625929510532498e-19,0.0014880952658131719,2.168404344971009e-18,7.589415207398531e-19,-0.0029761905316263437,2.574980159653073e-18,-2.168404344971009e-19,-3.3708077835569853e-19,-4.01029277869212e-20,-2.463616833785059e-19,1.9037015083221823e-19,1.443217557638213e-19,-1.189524624189438e-19,0.0007440476329065859,8.401528725093905e-20,-5.761488225324122e-19,0.0024999999441206455,4.336808689942018e-19,1.4094628242311558e-18,-0.0012499999720603228,-0.0016666667070239782,1.3552527156068805e-20,-1.451158491518722e-19,-1.9073103422383863e-19,-3.182992935808611e-20,-3.4631195889542547e-19,1.499419698123275e-19,-2.6645353856590094e-19,8.401528725093905e-20,0.0008333333535119891,2.071591384571744e-19,0.0020833334419876337,-3.469446951953614e-18,1.5395670849294163e-17,3.144186300207963e-18,-0.0062500000931322575,3.2526065174565133e-19,-2.1638556270837915e-19,-1.442570418055861e-19,9.309690319615874e-19,-7.077144735586279e-18,-4.918389038870395e-19,4.625929510532498e-19,-5.761488225324122e-19,2.071591384571744e-19,0.0020833334419876337,8.0,3.0,5.0,5.0,0.062261905521154404,-0.011111111380159855,-0.023333333432674408,-0.016150793060660362,-0.016150793060660362,0.0005555555690079927,0.0016666667070239782,0.0011111111380159855,0.0011111111380159855,0.0024999999441206455,0.0024999999441206455,0.0024999999441206455,0.0011904762359336019,0.0016666667070239782,0.0011904762359336019,-0.011111111380159855,0.0059523810632526875,0.0016666667070239782,0.0011111111380159855,0.0011111111380159855,-0.0005555555690079927,-0.0004761904710903764,-0.0003174603043589741,-0.0003174603043589741,6.071532165918825e-18,1.0842021724855044e-18,1.0842021724855044e-18,3.0357660829594124e-18,1.0842021724855044e-19,3.0357660829594124e-18,-0.023333333432674408,0.0016666667070239782,0.04833333194255829,0.0024999999441206455,0.0024999999441206455,3.2526065174565133e-19,-0.0016666667070239782,1.2773102782205761e-18,1.1699139037752132e-18,-0.014999999664723873,-0.0024999999441206455,-0.0024999999441206455,3.686287386450715e-18,5.421010862427522e-20,4.336808689942018e-18,-0.016150793060660362,0.0011111111380159855,0.0024999999441206455,0.015218254178762436,0.0016666667070239782,5.421010862427522e-20,1.328147661294743e-18,-0.0005555555690079927,4.34564401285985e-19,5.9631119486702744e-18,-0.0012499999720603228,2.9028269915838714e-19,-0.0023809524718672037,-0.0008333333535119891,1.0842021724855044e-19,-0.016150793060660362,0.0011111111380159855,0.0024999999441206455,0.0016666667070239782,0.015218254178762436,-1.6263032587282567e-19,1.2468324983583301e-18,8.402566836762659e-19,-0.0005555555690079927,6.69494841509799e-18,4.87890977618477e-19,-0.0012499999720603228,8.944667923005412e-19,-0.0008333333535119891,-0.0023809524718672037,0.0005555555690079927,-0.0005555555690079927,3.2526065174565133e-19,5.421010862427522e-20,-1.6263032587282567e-19,7.936507608974352e-05,-0.0,2.0328790734103208e-20,4.0657581468206416e-20,0.0,-1.3552527156068805e-20,0.0,-1.0842021724855044e-19,4.0657581468206416e-20,-6.776263578034403e-20,0.0016666667070239782,-0.0004761904710903764,-0.0016666667070239782,1.328147661294743e-18,1.2468324983583301e-18,-0.0,0.0004761904710903764,8.593109247957442e-21,8.593109247957442e-21,-4.770786930366432e-18,-4.483186054151519e-19,-4.483186054151519e-19,-1.8327490573046806e-19,-1.0150610531390379e-19,-1.6112079880309882e-19,0.0011111111380159855,-0.0003174603043589741,1.2773102782205761e-18,-0.0005555555690079927,8.402566836762659e-19,2.0328790734103208e-20,8.593109247957442e-21,0.00015873015217948705,5.7287394986382945e-21,-3.721890635882281e-19,-2.086514369057054e-19,-7.330996746206605e-20,-9.600114466659008e-19,-9.774662112863856e-20,-1.5037941910939733e-19,0.0011111111380159855,-0.0003174603043589741,1.1699139037752132e-18,4.34564401285985e-19,-0.0005555555690079927,4.0657581468206416e-20,8.593109247957442e-21,5.7287394986382945e-21,0.00015873015217948705,-3.721890635882281e-19,-5.075305265695189e-20,-1.8609453179411405e-19,-1.0070050248311103e-19,-7.518970793911153e-21,-9.989490094478798e-19,0.0024999999441206455,6.071532165918825e-18,-0.014999999664723873,5.9631119486702744e-18,6.69494841509799e-18,0.0,-4.770786930366432e-18,-3.721890635882281e-19,-3.721890635882281e-19,0.007499999832361937,-1.9537439449782915e-18,-2.0203574200926462e-18,-6.765890216165105e-19,-4.4243215553167724e-20,-8.3519227037591e-19,0.0024999999441206455,1.0842021724855044e-18,-0.0024999999441206455,-0.0012499999720603228,4.87890977618477e-19,-1.3552527156068805e-20,-4.483186054151519e-19,-2.086514369057054e-19,-5.075305265695189e-20,-1.9537439449782915e-18,0.0012499999720603228,-3.108624358108236e-19,-8.035899901696865e-19,5.921189530497292e-20,-4.2294210008930866e-20,0.0024999999441206455,1.0842021724855044e-18,-0.0024999999441206455,2.9028269915838714e-19,-0.0012499999720603228,0.0,-4.483186054151519e-19,-7.330996746206605e-20,-1.8609453179411405e-19,-2.0203574200926462e-18,-3.108624358108236e-19,0.0012499999720603228,1.254790812005859e-33,1.1842379060994584e-19,-9.30472620196479e-19,0.0011904762359336019,3.0357660829594124e-18,3.686287386450715e-18,-0.0023809524718672037,8.944667923005412e-19,-1.0842021724855044e-19,-1.8327490573046806e-19,-9.600114466659008e-19,-1.0070050248311103e-19,-6.765890216165105e-19,-8.035899901696865e-19,1.254790812005859e-33,0.0005952381179668009,-7.206849214724613e-20,-1.0182774286286767e-19,0.0016666667070239782,1.0842021724855044e-19,5.421010862427522e-20,-0.0008333333535119891,-0.0008333333535119891,4.0657581468206416e-20,-1.0150610531390379e-19,-9.774662112863856e-20,-7.518970793911153e-21,-4.4243215553167724e-20,5.921189530497292e-20,1.1842379060994584e-19,-7.206849214724613e-20,0.00041666667675599456,4.748103570018697e-19,0.0011904762359336019,3.0357660829594124e-18,4.336808689942018e-18,1.0842021724855044e-19,-0.0023809524718672037,-6.776263578034403e-20,-1.6112079880309882e-19,-1.5037941910939733e-19,-9.989490094478798e-19,-8.3519227037591e-19,-4.2294210008930866e-20,-9.30472620196479e-19,-1.0182774286286767e-19,4.748103570018697e-19,0.0005952381179668009,8.0,3.0,5.0,6.0,0.05373677238821983,-0.009391534142196178,-0.01974206417798996,-0.013657407835125923,-0.01185515895485878,0.00046296295477077365,0.0013888889225199819,0.0009259259095415473,0.0007936508045531809,0.0020833334419876337,0.0020833334419876337,0.0017857142956927419,0.0009920635493472219,0.0011904762359336019,0.0007440476329065859,-0.009391534142196178,0.004998110234737396,0.0013888889225199819,0.0009259259095415473,0.0007936508045531809,-0.00046296295477077365,-0.00039682540227659047,-0.00026455026818439364,-0.00022675737272948027,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.01974206417798996,0.0013888889225199819,0.04057539626955986,0.0020833334419876337,0.0017857142956927419,-0.0,-0.0013888889225199819,-0.0,-0.0,-0.012500000186264515,-0.0020833334419876337,-0.0017857142956927419,-1.9825412040285595e-18,-7.930164505921508e-19,-1.3629969872967551e-18,-0.013657407835125923,0.0009259259095415473,0.0020833334419876337,0.012781084515154362,0.0011904762359336019,-0.0,-0.0,-0.00046296295477077365,-0.0,-4.956352906673822e-18,-0.0010416667209938169,-0.0,-0.0019841270986944437,-0.0005952381179668009,-5.40439543015545e-34,-0.01185515895485878,0.0007936508045531809,0.0017857142956927419,0.0011904762359336019,0.008834325708448887,-1.3552527156068805e-20,-0.0,-0.0,-0.0003174603043589741,-4.20050917732798e-18,-0.0,-0.0007142857066355646,-6.662145457354008e-34,-0.0004761904710903764,-0.0011160714784637094,0.00046296295477077365,-0.00046296295477077365,-0.0,-0.0,-1.3552527156068805e-20,6.613756704609841e-05,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.00039682540227659047,-0.0013888889225199819,-0.0,-0.0,-0.0,0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00026455026818439364,-0.0,-0.00046296295477077365,-0.0,-0.0,-0.0,0.00013227513409219682,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,-0.00022675737272948027,-0.0,-0.0,-0.0003174603043589741,-0.0,-0.0,-0.0,9.070294618140906e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.012500000186264515,-4.956352906673822e-18,-4.20050917732798e-18,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,-0.0,9.912706020142797e-19,3.965082252960754e-19,6.814984936483776e-19,0.0020833334419876337,-0.0,-0.0020833334419876337,-0.0010416667209938169,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-0.0,-0.0017857142956927419,-0.0,-0.0007142857066355646,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0,-1.9825412040285595e-18,-0.0019841270986944437,-6.662145457354008e-34,-0.0,-0.0,-0.0,-0.0,9.912706020142797e-19,-0.0,-0.0,0.0004960317746736109,6.28875070996464e-35,1.080878994195594e-34,0.0011904762359336019,-0.0,-7.930164505921508e-19,-0.0005952381179668009,-0.0004761904710903764,-0.0,-0.0,-0.0,-0.0,3.965082252960754e-19,-0.0,-0.0,6.28875070996464e-35,0.0002380952355451882,4.323516148973931e-35,0.0007440476329065859,-0.0,-1.3629969872967551e-18,-5.40439543015545e-34,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,6.814984936483776e-19,-0.0,-0.0,1.080878994195594e-34,4.323516148973931e-35,0.00022321428696159273,8.0,3.0,5.0,7.0,0.04728599637746811,-0.008134921081364155,-0.01711309514939785,-0.011833900585770607,-0.00907738134264946,0.00039682540227659047,0.0011904762359336019,0.0007936508045531809,0.0005952381179668009,0.0017857142956927419,0.0017857142956927419,0.0013392857508733869,0.0008503401186317205,0.0008928571478463709,0.0004960317746736109,-0.008134921081364155,0.004308389965444803,0.0011904762359336019,0.0007936508045531809,0.0005952381179668009,-0.00039682540227659047,-0.0003401360590942204,-0.00022675737272948027,-0.0001700680295471102,-5.492313417639287e-18,-3.7221423572824386e-18,-8.363030188422039e-19,-2.409704716976456e-18,-6.298177482409246e-19,9.801071792624172e-19,-0.01711309514939785,0.0011904762359336019,0.0349702388048172,0.0017857142956927419,0.0013392857508733869,-1.5178830414797062e-18,-0.0011904762359336019,-3.751162748302943e-18,-1.1856895822250948e-18,-0.010714286006987095,-0.0017857142956927419,-0.0013392857508733869,-3.2098284584880272e-18,1.4640278967357928e-18,4.0538413693258964e-18,-0.011833900585770607,0.0007936508045531809,0.0017857142956927419,0.01101899053901434,0.0008928571478463709,-1.0875724164937752e-18,-3.346202830947501e-18,-0.00039682540227659047,-7.969871243275585e-19,-4.489039701153827e-18,-0.0008928571478463709,-2.2877956202425635e-20,-0.001700680237263441,-0.00044642857392318547,1.102509127007375e-18,-0.00907738134264946,0.0005952381179668009,0.0013392857508733869,0.0008928571478463709,0.0056051588617265224,1.0706496453294356e-18,-2.5268710767330475e-19,-2.369104469464457e-19,-0.00019841270113829523,1.2456966966592335e-17,2.808599952875812e-18,-0.00044642857392318547,1.050162346110452e-18,-0.00029761905898340046,-0.0005952381179668009,0.00039682540227659047,-0.00039682540227659047,-1.5178830414797062e-18,-1.0875724164937752e-18,1.0706496453294356e-18,5.668934318237007e-05,4.0657581468206416e-20,2.371692252312041e-20,-7.453889935837843e-20,2.64338825480515e-19,2.64338825480515e-19,3.3042353185064373e-20,1.2587562810388879e-19,2.2028234918180537e-20,-1.4679432786171301e-19,0.0011904762359336019,-0.0003401360590942204,-0.0011904762359336019,-3.346202830947501e-18,-2.5268710767330475e-19,4.0657581468206416e-20,0.0003401360590942204,1.9510124911980648e-19,5.70141798149961e-20,1.0551973944990622e-18,5.02783227174152e-19,1.0978152389226545e-19,4.3157357468493465e-19,9.440671784674232e-20,-3.7762688431166636e-20,0.0007936508045531809,-0.00022675737272948027,-3.751162748302943e-18,-0.00039682540227659047,-2.369104469464457e-19,2.371692252312041e-20,1.9510124911980648e-19,0.00011337868636474013,3.8009453209997396e-20,9.06304470649211e-19,4.1071419928666696e-19,9.440671784674232e-20,3.911563667328573e-19,8.655447969988396e-20,-2.5175125620777757e-20,0.0005952381179668009,-0.0001700680295471102,-1.1856895822250948e-18,-7.969871243275585e-19,-0.00019841270113829523,-7.453889935837843e-20,5.70141798149961e-20,3.8009453209997396e-20,5.668934318237007e-05,2.0769478960259076e-19,1.321694127402575e-19,6.437450399132683e-20,8.092004848459951e-20,4.419302249209195e-20,3.1190967877805843e-20,0.0017857142956927419,-5.492313417639287e-18,-0.010714286006987095,-4.489039701153827e-18,1.2456966966592335e-17,2.64338825480515e-19,1.0551973944990622e-18,9.06304470649211e-19,2.0769478960259076e-19,0.0053571430034935474,1.5442551571356949e-32,-1.4869058513226313e-18,8.49660486470075e-19,-6.938894007304805e-19,-1.5529905512304115e-18,0.0017857142956927419,-3.7221423572824386e-18,-0.0017857142956927419,-0.0008928571478463709,2.808599952875812e-18,2.64338825480515e-19,5.02783227174152e-19,4.1071419928666696e-19,1.321694127402575e-19,1.5442551571356949e-32,0.0008928571478463709,-2.973811754344051e-19,3.766646099231456e-33,-1.982541126480377e-19,-3.965082252960754e-19,0.0013392857508733869,-8.363030188422039e-19,-0.0013392857508733869,-2.2877956202425635e-20,-0.00044642857392318547,3.3042353185064373e-20,1.0978152389226545e-19,9.440671784674232e-20,6.437450399132683e-20,-1.4869058513226313e-18,-2.973811754344051e-19,0.00044642857392318547,4.197925425656553e-34,-3.3881317890172014e-21,-7.558139896178813e-21,0.0008503401186317205,-2.409704716976456e-18,-3.2098284584880272e-18,-0.001700680237263441,1.050162346110452e-18,1.2587562810388879e-19,4.3157357468493465e-19,3.911563667328573e-19,8.092004848459951e-20,8.49660486470075e-19,3.766646099231456e-33,4.197925425656553e-34,0.00042517005931586027,-5.304758382151437e-20,-1.5734453836103525e-19,0.0008928571478463709,-6.298177482409246e-19,1.4640278967357928e-18,-0.00044642857392318547,-0.00029761905898340046,2.2028234918180537e-20,9.440671784674232e-20,8.655447969988396e-20,4.419302249209195e-20,-6.938894007304805e-19,-1.982541126480377e-19,-3.3881317890172014e-21,-5.304758382151437e-20,0.00014880952949170023,3.830061917002893e-21,0.0004960317746736109,9.801071792624172e-19,4.0538413693258964e-18,1.102509127007375e-18,-0.0005952381179668009,-1.4679432786171301e-19,-3.7762688431166636e-20,-2.5175125620777757e-20,3.1190967877805843e-20,-1.5529905512304115e-18,-3.965082252960754e-19,-7.558139896178813e-21,-1.5734453836103525e-19,3.830061917002893e-21,9.920635056914762e-05,8.0,3.0,5.0,8.0,0.04222883656620979,-0.007175926119089127,-0.015104166232049465,-0.010441468097269535,-0.007175926119089127,0.00034722223062999547,0.0010416667209938169,0.0006944444612599909,0.00046296295477077365,0.0015625000232830644,0.0015625000232830644,0.0010416667209938169,0.0007440476329065859,0.0006944444612599909,0.00034722223062999547,-0.007175926119089127,0.0037863757461309433,0.0010416667209938169,0.0006944444612599909,0.00046296295477077365,-0.00034722223062999547,-0.00029761905898340046,-0.00019841270113829523,-0.00013227513409219682,1.925929944387236e-34,-0.0,-0.0,0.0,2.8808178399809164e-21,3.9896610847574576e-20,-0.015104166232049465,0.0010416667209938169,0.03072916716337204,0.0015625000232830644,0.0010416667209938169,-2.710505431213761e-20,-0.0010416667209938169,-9.531810623709822e-36,-5.899467072909182e-21,-0.00937500037252903,-0.0015625000232830644,-0.0010416667209938169,-1.4869058513226313e-18,-4.511344316178589e-19,-5.754083924866007e-19,-0.010441468097269535,0.0006944444612599909,0.0015625000232830644,0.009685019962489605,0.0006944444612599909,-1.297671089891673e-21,-3.9994712731467197e-22,-0.00034722223062999547,2.921477523327984e-21,-3.783349173117994e-18,-0.0007812500116415322,1.1858461261560205e-20,-0.0014880952658131719,-0.00034722223062999547,8.970326225501497e-21,-0.007175926119089127,0.00046296295477077365,0.0010416667209938169,0.0006944444612599909,0.0037863757461309433,-0.0,-0.0,-0.0,-0.00013227513409219682,-2.4864368857290187e-18,-0.0,-0.00029761905898340046,-3.943570947835169e-34,-0.00019841270113829523,-0.00034722223062999547,0.00034722223062999547,-0.00034722223062999547,-2.710505431213761e-20,-1.297671089891673e-21,-0.0,4.960317528457381e-05,6.776263578034403e-21,-0.0,3.3881317890172014e-21,-7.210369275489267e-36,0.0,-0.0,-0.0,-1.788530845638226e-23,-5.635993387068724e-22,0.0010416667209938169,-0.00029761905898340046,-0.0010416667209938169,-3.9994712731467197e-22,-0.0,6.776263578034403e-21,0.00029761905898340046,-0.0,1.685562049680965e-21,5.956042402060702e-36,-0.0,-0.0,-0.0,1.142706041979707e-22,-8.093595757500374e-22,0.0006944444612599909,-0.00019841270113829523,-9.531810623709822e-36,-0.00034722223062999547,-0.0,-0.0,-0.0,9.920635056914762e-05,-0.0,4.765905311854911e-36,-0.0,-0.0,-0.0,3.090313371282828e-23,-8.163091626459959e-24,0.00046296295477077365,-0.00013227513409219682,-5.899467072909182e-21,2.921477523327984e-21,-0.00013227513409219682,3.3881317890172014e-21,1.685562049680965e-21,-0.0,3.779289545491338e-05,-4.385373095354848e-35,-0.0,-0.0,-0.0,-8.347078349582252e-22,-9.943906497366473e-21,0.0015625000232830644,1.925929944387236e-34,-0.00937500037252903,-3.783349173117994e-18,-2.4864368857290187e-18,-7.210369275489267e-36,5.956042402060702e-36,4.765905311854911e-36,-4.385373095354848e-35,0.004687500186264515,-0.0,-0.0,7.434529256613157e-19,2.312964755266249e-19,2.8912058794593256e-19,0.0015625000232830644,-0.0,-0.0015625000232830644,-0.0007812500116415322,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0010416667209938169,1.1858461261560205e-20,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-0.0,-3.3881317890172014e-21,-0.0,0.0007440476329065859,0.0,-1.4869058513226313e-18,-0.0014880952658131719,-3.943570947835169e-34,-0.0,-0.0,-0.0,-0.0,7.434529256613157e-19,-0.0,-0.0,0.00037202381645329297,3.668438057639003e-35,4.5855475003022723e-35,0.0006944444612599909,2.8808178399809164e-21,-4.511344316178589e-19,-0.00034722223062999547,-0.00019841270113829523,-1.788530845638226e-23,1.142706041979707e-22,3.090313371282828e-23,-8.347078349582252e-22,2.312964755266249e-19,-0.0,-3.3881317890172014e-21,3.668438057639003e-35,9.920635056914762e-05,-2.554787105703198e-21,0.00034722223062999547,3.9896610847574576e-20,-5.754083924866007e-19,8.970326225501497e-21,-0.00034722223062999547,-5.635993387068724e-22,-8.093595757500374e-22,-8.163091626459959e-24,-9.943906497366473e-21,2.8912058794593256e-19,-0.0,-0.0,4.5855475003022723e-35,-2.554787105703198e-21,4.960317528457381e-05,8.0,3.0,6.0,3.0,0.07933752238750458,-0.014880952425301075,-0.031167328357696533,-0.018766533583402634,-0.031167328357696533,0.0007716049440205097,0.002314814832061529,0.0013227512827143073,0.002314814832061529,0.0034722222480922937,0.0029761905316263437,0.0052083334885537624,0.0012400794075801969,0.0029761905316263437,0.0034722222480922937,-0.014880952425301075,0.008109725080430508,0.002314814832061529,0.0013227512827143073,0.002314814832061529,-0.0007716049440205097,-0.0006613756413571537,-0.0003779289545491338,-0.0006613756413571537,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.031167328357696533,0.002314814832061529,0.06588955223560333,0.0029761905316263437,0.0052083334885537624,-1.0842021724855044e-19,-0.002314814832061529,-4.743384504624082e-20,-0.0,-0.02083333395421505,-0.0029761905316263437,-0.0052083334885537624,4.543323428852619e-18,3.965082408057119e-18,2.3129645794903686e-17,-0.018766533583402634,0.0013227512827143073,0.0029761905316263437,0.014327050186693668,0.0029761905316263437,-2.710505431213761e-20,-4.743384504624082e-20,-0.0005291005363687873,4.743384504624082e-20,1.6160463845687216e-17,-0.0011904762359336019,-9.568916336933007e-33,-0.0018601190531626344,-0.0011904762359336019,8.260587902062833e-18,-0.031167328357696533,0.002314814832061529,0.0052083334885537624,0.0029761905316263437,0.06588955223560333,-0.0,-0.0,4.743384504624082e-20,-0.002314814832061529,3.425390319912305e-17,-9.271948260348896e-33,-0.0052083334885537624,4.311240123617697e-18,-0.0029761905316263437,-0.02083333395421505,0.0007716049440205097,-0.0007716049440205097,-1.0842021724855044e-19,-2.710505431213761e-20,-0.0,0.00011022927355952561,2.710505431213761e-20,1.3552527156068805e-20,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.002314814832061529,-0.0006613756413571537,-0.002314814832061529,-4.743384504624082e-20,-0.0,2.710505431213761e-20,0.0006613756413571537,1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013227512827143073,-0.0003779289545491338,-4.743384504624082e-20,-0.0005291005363687873,4.743384504624082e-20,1.3552527156068805e-20,1.3552527156068805e-20,0.0001511715818196535,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002314814832061529,-0.0006613756413571537,-0.0,4.743384504624082e-20,-0.002314814832061529,-0.0,-0.0,-1.3552527156068805e-20,0.0006613756413571537,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0034722222480922937,-0.0,-0.02083333395421505,1.6160463845687216e-17,3.425390319912305e-17,-0.0,-0.0,-0.0,-0.0,0.010416666977107525,-2.8196140695271088e-18,-6.167905738316459e-18,-2.2716617144263096e-18,-1.9825412040285595e-18,-1.1564822897451843e-17,0.0029761905316263437,-0.0,-0.0029761905316263437,-0.0011904762359336019,-9.271948260348896e-33,0.0,-0.0,-0.0,-0.0,-2.8196140695271088e-18,0.0011904762359336019,1.6695469122912177e-33,6.149000847246809e-34,5.366400789507485e-34,3.1304005982992774e-33,0.0052083334885537624,-0.0,-0.0052083334885537624,-9.568916336933007e-33,-0.0052083334885537624,0.0,-0.0,-0.0,-0.0,-6.167905738316459e-18,1.6695469122912177e-33,0.0052083334885537624,1.3450939410749579e-33,1.173900178444481e-33,6.847751239903047e-33,0.0012400794075801969,-0.0,4.543323428852619e-18,-0.0018601190531626344,4.311240123617697e-18,-0.0,-0.0,-0.0,-0.0,-2.2716617144263096e-18,6.149000847246809e-34,1.3450939410749579e-33,0.00037202381645329297,-4.028020099324441e-19,-1.6521176010920818e-18,0.0029761905316263437,-0.0,3.965082408057119e-18,-0.0011904762359336019,-0.0029761905316263437,-0.0,-0.0,-0.0,-0.0,-1.9825412040285595e-18,5.366400789507485e-34,1.173900178444481e-33,-4.028020099324441e-19,0.0011904762359336019,3.989862925561008e-33,0.0034722222480922937,-0.0,2.3129645794903686e-17,8.260587902062833e-18,-0.02083333395421505,-0.0,-0.0,-0.0,-0.0,-1.1564822897451843e-17,3.1304005982992774e-33,6.847751239903047e-33,-1.6521176010920818e-18,3.989862925561008e-33,0.010416666977107525,8.0,3.0,6.0,4.0,0.06400462985038757,-0.011507936753332615,-0.02415674552321434,-0.014521329663693905,-0.01974206417798996,0.0005787037080153823,0.0017361111240461469,0.0009920635493472219,0.0013888889225199819,0.0026041667442768812,0.0022321429569274187,0.0031250000465661287,0.0009300595265813172,0.0017857142956927419,0.0017361111240461469,-0.011507936753332615,0.006181500386446714,0.0017361111240461469,0.0009920635493472219,0.0013888889225199819,-0.0005787037080153823,-0.0004960317746736109,-0.00028344671591185033,-0.00039682540227659047,2.514190112879918e-33,-1.8881343569348464e-19,-0.0,-2.95020996502244e-19,-1.5105075372466654e-19,6.114063410265943e-34,-0.02415674552321434,0.0017361111240461469,0.05019841343164444,0.0022321429569274187,0.0031250000465661287,-0.0,-0.0017361111240461469,-1.8881343569348464e-19,1.3043335252275138e-35,-0.015625,-0.0022321429569274187,-0.0031250000465661287,3.4074925716394644e-18,2.3790494034752407e-18,8.095375945498229e-18,-0.014521329663693905,0.0009920635493472219,0.0022321429569274187,0.010923858731985092,0.0017857142956927419,-3.180368899185743e-20,3.535887007273441e-35,-0.00039682540227659047,2.371692252312041e-20,1.1889051227793028e-17,-0.0008928571478463709,-5.631786087949887e-33,-0.0013950893189758062,-0.0007142857066355646,2.8912057243629608e-18,-0.01974206417798996,0.0013888889225199819,0.0031250000465661287,0.0017857142956927419,0.025314154103398323,-0.0,3.76158192263132e-36,-1.2733383120154613e-19,-0.0009259259095415473,1.8817619436113757e-17,-3.902565939623145e-33,-0.0020833334419876337,1.5954735135153693e-18,-0.0011904762359336019,-0.0052083334885537624,0.0005787037080153823,-0.0005787037080153823,-0.0,-3.180368899185743e-20,-0.0,8.26719551696442e-05,-0.0,6.776263578034403e-21,-0.0,-0.0,1.4699296237939116e-36,0.0,1.8034220669294005e-36,-1.8786005412393292e-36,-0.0,0.0017361111240461469,-0.0004960317746736109,-0.0017361111240461469,3.535887007273441e-35,3.76158192263132e-36,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-3.009265538105056e-36,-0.0,-6.018531076210112e-36,-1.504632769052528e-36,0.0,0.0009920635493472219,-0.00028344671591185033,-1.8881343569348464e-19,-0.00039682540227659047,-1.2733383120154613e-19,6.776263578034403e-21,-0.0,0.00011337868636474013,-6.776263578034403e-21,-1.005676100253265e-33,7.552537686233327e-20,0.0,1.1800840377077644e-19,6.042030278233632e-20,-2.4456254100241254e-34,0.0013888889225199819,-0.00039682540227659047,1.3043335252275138e-35,2.371692252312041e-20,-0.0009259259095415473,-0.0,-0.0,-6.776263578034403e-21,0.00026455026818439364,0.0,-5.2173341726565366e-36,-0.0,-6.521667626137569e-36,-7.155201253566795e-36,0.0,0.0026041667442768812,2.514190112879918e-33,-0.015625,1.1889051227793028e-17,1.8817619436113757e-17,-0.0,-0.0,-1.005676100253265e-33,0.0,0.0078125,-1.5860329011843016e-18,-3.700743608425998e-18,-1.7037462858197322e-18,-1.1895247017376204e-18,-4.0476879727491145e-18,0.0022321429569274187,-1.8881343569348464e-19,-0.0022321429569274187,-0.0008928571478463709,-3.902565939623145e-33,1.4699296237939116e-36,-3.009265538105056e-36,7.552537686233327e-20,-5.2173341726565366e-36,-1.5860329011843016e-18,0.0008928571478463709,7.512960921639487e-34,4.244906628781058e-34,2.8173603456148077e-34,8.217301524617855e-34,0.0031250000465661287,-0.0,-0.0031250000465661287,-5.631786087949887e-33,-0.0020833334419876337,0.0,-0.0,0.0,-0.0,-3.700743608425998e-18,7.512960921639487e-34,0.0020833334419876337,8.070564013791732e-34,5.634720691229615e-34,1.917370325132334e-33,0.0009300595265813172,-2.95020996502244e-19,3.4074925716394644e-18,-0.0013950893189758062,1.5954735135153693e-18,1.8034220669294005e-36,-6.018531076210112e-36,1.1800840377077644e-19,-6.521667626137569e-36,-1.7037462858197322e-18,4.244906628781058e-34,8.070564013791732e-34,0.00027901786961592734,5.569996430505979e-20,-5.782411758918651e-19,0.0017857142956927419,-1.5105075372466654e-19,2.3790494034752407e-18,-0.0007142857066355646,-0.0011904762359336019,-1.8786005412393292e-36,-1.504632769052528e-36,6.042030278233632e-20,-7.155201253566795e-36,-1.1895247017376204e-18,2.8173603456148077e-34,5.634720691229615e-34,5.569996430505979e-20,0.0004761904710903764,5.0086404613671646e-34,0.0017361111240461469,6.114063410265943e-34,8.095375945498229e-18,2.8912057243629608e-18,-0.0052083334885537624,-0.0,0.0,-2.4456254100241254e-34,0.0,-4.0476879727491145e-18,8.217301524617855e-34,1.917370325132334e-33,-5.782411758918651e-19,5.0086404613671646e-34,0.0017361111240461469,8.0,3.0,6.0,5.0,0.05373677238821983,-0.009391534142196178,-0.01974206417798996,-0.01185515895485878,-0.013657407835125923,0.00046296295477077365,0.0013888889225199819,0.0007936508045531809,0.0009259259095415473,0.0020833334419876337,0.0017857142956927419,0.0020833334419876337,0.0007440476329065859,0.0011904762359336019,0.0009920635493472219,-0.009391534142196178,0.004998110234737396,0.0013888889225199819,0.0007936508045531809,0.0009259259095415473,-0.00046296295477077365,-0.00039682540227659047,-0.00022675737272948027,-0.00026455026818439364,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.01974206417798996,0.0013888889225199819,0.04057539626955986,0.0017857142956927419,0.0020833334419876337,-0.0,-0.0013888889225199819,-0.0,-0.0,-0.012500000186264515,-0.0017857142956927419,-0.0020833334419876337,-1.3629969872967551e-18,-7.930164505921508e-19,-1.9825412040285595e-18,-0.01185515895485878,0.0007936508045531809,0.0017857142956927419,0.008834325708448887,0.0011904762359336019,-9.457824796392197e-21,-0.0,-0.0003174603043589741,3.580462267428291e-20,-4.20050917732798e-18,-0.0007142857066355646,-0.0,-0.0011160714784637094,-0.0004761904710903764,-2.8322016904986345e-18,-0.013657407835125923,0.0009259259095415473,0.0020833334419876337,0.0011904762359336019,0.012781084515154362,-0.0,-0.0,3.580462267428291e-20,-0.00046296295477077365,-4.956352906673822e-18,-0.0,-0.0010416667209938169,-2.749123598881718e-18,-0.0005952381179668009,-0.0019841270986944437,0.00046296295477077365,-0.00046296295477077365,-0.0,-9.457824796392197e-21,-0.0,6.613756704609841e-05,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.00039682540227659047,-0.0013888889225199819,-0.0,-0.0,-0.0,0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,-0.00022675737272948027,-0.0,-0.0003174603043589741,3.580462267428291e-20,-0.0,-0.0,9.070294618140906e-05,-1.0229892077253178e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00026455026818439364,-0.0,3.580462267428291e-20,-0.00046296295477077365,-0.0,-0.0,-1.0229892077253178e-20,0.00013227513409219682,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.012500000186264515,-4.20050917732798e-18,-4.956352906673822e-18,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,-0.0,6.814984936483776e-19,3.965082252960754e-19,9.912706020142797e-19,0.0017857142956927419,-0.0,-0.0017857142956927419,-0.0007142857066355646,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0020833334419876337,-0.0,-0.0010416667209938169,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,-1.3629969872967551e-18,-0.0011160714784637094,-2.749123598881718e-18,-0.0,-0.0,-0.0,-0.0,6.814984936483776e-19,-0.0,-0.0,0.00022321428696159273,1.933449637335974e-19,5.664403070804539e-19,0.0011904762359336019,-0.0,-7.930164505921508e-19,-0.0004761904710903764,-0.0005952381179668009,-0.0,-0.0,-0.0,-0.0,3.965082252960754e-19,-0.0,-0.0,1.933449637335974e-19,0.0002380952355451882,5.5352986647340126e-34,0.0009920635493472219,-0.0,-1.9825412040285595e-18,-2.8322016904986345e-18,-0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,9.912706020142797e-19,-0.0,-0.0,5.664403070804539e-19,5.5352986647340126e-34,0.0004960317746736109,8.0,3.0,6.0,6.0,0.046347472816705704,-0.007936508394777775,-0.016699735075235367,-0.010021022520959377,-0.010021022520959377,0.00038580247201025486,0.0011574074160307646,0.0006613756413571537,0.0006613756413571537,0.0017361111240461469,0.0014880952658131719,0.0014880952658131719,0.0006200397037900984,0.0008503401186317205,0.0006200397037900984,-0.007936508394777775,0.004196586087346077,0.0011574074160307646,0.0006613756413571537,0.0006613756413571537,-0.00038580247201025486,-0.0003306878206785768,-0.0001889644772745669,-0.0001889644772745669,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.016699735075235367,0.0011574074160307646,0.034060847014188766,0.0014880952658131719,0.0014880952658131719,-0.0,-0.0011574074160307646,-0.0,-0.0,-0.010416666977107525,-0.0014880952658131719,-0.0014880952658131719,2.2716617144263096e-18,1.1328806141609079e-18,2.2716617144263096e-18,-0.010021022520959377,0.0006613756413571537,0.0014880952658131719,0.007418627385050058,0.0008503401186317205,-5.254346974474515e-21,-0.0,-0.00026455026818439364,1.59131649149759e-20,8.505061959283492e-18,-0.0005952381179668009,-2.3021751967007256e-33,-0.0009300595265813172,-0.0003401360590942204,8.113077403811711e-19,-0.010021022520959377,0.0006613756413571537,0.0014880952658131719,0.0008503401186317205,0.007418627385050058,-0.0,-0.0,1.59131649149759e-20,-0.00026455026818439364,8.505061959283492e-18,-2.3021751967007256e-33,-0.0005952381179668009,1.041480361798672e-18,-0.0003401360590942204,-0.0009300595265813172,0.00038580247201025486,-0.00038580247201025486,-0.0,-5.254346974474515e-21,-0.0,5.5114636779762805e-05,-0.0,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0011574074160307646,-0.0003306878206785768,-0.0011574074160307646,-0.0,-0.0,-0.0,0.0003306878206785768,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006613756413571537,-0.0001889644772745669,-0.0,-0.00026455026818439364,1.59131649149759e-20,3.3881317890172014e-21,-0.0,7.558579090982676e-05,-4.546618835633674e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006613756413571537,-0.0001889644772745669,-0.0,1.59131649149759e-20,-0.00026455026818439364,3.3881317890172014e-21,-0.0,-4.546618835633674e-21,7.558579090982676e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.010416666977107525,8.505061959283492e-18,8.505061959283492e-18,-0.0,-0.0,-0.0,-0.0,0.0052083334885537624,-1.4098070347635544e-18,-1.4098070347635544e-18,-1.1358308572131548e-18,-5.664403070804539e-19,-1.1358308572131548e-18,0.0014880952658131719,-0.0,-0.0014880952658131719,-0.0005952381179668009,-2.3021751967007256e-33,0.0,-0.0,-0.0,-0.0,-1.4098070347635544e-18,0.0005952381179668009,3.8161071821764638e-34,3.0745004236234043e-34,1.5332573192331229e-34,3.0745004236234043e-34,0.0014880952658131719,-0.0,-0.0014880952658131719,-2.3021751967007256e-33,-0.0005952381179668009,0.0,-0.0,-0.0,-0.0,-1.4098070347635544e-18,3.8161071821764638e-34,0.0005952381179668009,3.0745004236234043e-34,1.5332573192331229e-34,3.0745004236234043e-34,0.0006200397037900984,-0.0,2.2716617144263096e-18,-0.0009300595265813172,1.041480361798672e-18,-0.0,-0.0,-0.0,-0.0,-1.1358308572131548e-18,3.0745004236234043e-34,3.0745004236234043e-34,0.00018601190822664648,-9.206902788748504e-20,-1.622615454912948e-19,0.0008503401186317205,-0.0,1.1328806141609079e-18,-0.0003401360590942204,-0.0003401360590942204,-0.0,-0.0,-0.0,-0.0,-5.664403070804539e-19,1.5332573192331229e-34,1.5332573192331229e-34,-9.206902788748504e-20,0.0001360544265480712,2.0384252129384096e-34,0.0006200397037900984,-0.0,2.2716617144263096e-18,8.113077403811711e-19,-0.0009300595265813172,-0.0,-0.0,-0.0,-0.0,-1.1358308572131548e-18,3.0745004236234043e-34,3.0745004236234043e-34,-1.622615454912948e-19,2.0384252129384096e-34,0.00018601190822664648,8.0,3.0,6.0,7.0,0.04076318070292473,-0.0068735829554498196,-0.014473497867584229,-0.0086805559694767,-0.007670776452869177,0.0003306878206785768,0.0009920635493472219,0.0005668934318237007,0.0004960317746736109,0.0014880952658131719,0.0012755101779475808,0.0011160714784637094,0.0005314626032486558,0.0006377550889737904,0.00041335978312417865,-0.0068735829554498196,0.0036173199769109488,0.0009920635493472219,0.0005668934318237007,0.0004960317746736109,-0.0003306878206785768,-0.00028344671591185033,-0.0001619695540284738,-0.00014172335795592517,-2.5290764631361362e-33,1.0789339367123366e-19,9.048801688173905e-35,1.6858342841909617e-19,7.339162569816152e-20,9.374519307655011e-20,-0.014473497867584229,0.0009920635493472219,0.02935444936156273,0.0012755101779475808,0.0011160714784637094,-0.0,-0.0009920635493472219,1.0789339367123366e-19,-5.950927294068368e-34,-0.008928571827709675,-0.0012755101779475808,-0.0011160714784637094,2.2790372703581387e-18,9.761967863141493e-19,1.452164058800251e-18,-0.0086805559694767,0.0005668934318237007,0.0012755101779475808,0.006395266391336918,0.0006377550889737904,-2.3552832992485903e-21,-0.0,-0.00022675737272948027,4.01482837801181e-20,7.178113709876951e-18,-0.0005102040595375001,2.0328790734103208e-20,-0.0007971939048729837,-0.00025510202976875007,5.790870197669889e-19,-0.007670776452869177,0.0004960317746736109,0.0011160714784637094,0.0006377550889737904,0.004706396255642176,1.3552527156068805e-20,-0.0,7.465005175319024e-20,-0.0001653439103392884,6.1128349482648226e-18,1.0620756080875938e-19,-0.00037202381645329297,8.602571354059739e-19,-0.00021258502965793014,-0.0004960317746736109,0.0003306878206785768,-0.0003306878206785768,-0.0,-2.3552832992485903e-21,1.3552527156068805e-20,4.724111931864172e-05,-0.0,3.3881317890172014e-21,-3.3881317890172014e-21,0.0,8.71577959703368e-37,0.0,1.526277068187061e-36,-1.0713874261732864e-36,5.546362379928789e-23,0.0009920635493472219,-0.00028344671591185033,-0.0009920635493472219,-0.0,-0.0,-0.0,0.00028344671591185033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005668934318237007,-0.0001619695540284738,1.0789339367123366e-19,-0.00022675737272948027,7.465005175319024e-20,3.3881317890172014e-21,-0.0,6.478781870100647e-05,-5.915243685168427e-21,6.071853061166846e-34,-4.315735682225861e-20,1.7195803843598335e-36,-6.743337266010817e-20,-2.1578678411129306e-20,5.416677968589101e-35,0.0004960317746736109,-0.00014172335795592517,-5.950927294068368e-34,4.01482837801181e-20,-0.0001653439103392884,-3.3881317890172014e-21,-0.0,-5.915243685168427e-21,4.724111931864172e-05,3.3703774026776627e-34,6.321695833253543e-36,-3.159565520018703e-35,5.30163851241124e-35,-6.4816434927106084e-21,-3.138837970087045e-20,0.0014880952658131719,-2.5290764631361362e-33,-0.008928571827709675,7.178113709876951e-18,6.1128349482648226e-18,0.0,-0.0,6.071853061166846e-34,3.3703774026776627e-34,0.004464285913854837,-1.0357765378848125e-18,-7.552537427739386e-19,-9.735692470983746e-19,-4.248302432350375e-19,-7.159176340330739e-19,0.0012755101779475808,1.0789339367123366e-19,-0.0012755101779475808,-0.0005102040595375001,1.0620756080875938e-19,8.71577959703368e-37,-0.0,-4.315735682225861e-20,6.321695833253543e-36,-1.0357765378848125e-18,0.0005102040595375001,1.7861483984232296e-34,-1.3275945101094922e-19,-4.24830236772689e-20,2.6516071473654706e-34,0.0011160714784637094,9.048801688173905e-35,-0.0011160714784637094,2.0328790734103208e-20,-0.00037202381645329297,0.0,-0.0,1.7195803843598335e-36,-3.159565520018703e-35,-7.552537427739386e-19,1.7861483984232296e-34,0.00037202381645329297,1.6250033905767303e-34,-6.776263578034403e-21,-6.776263578034403e-21,0.0005314626032486558,1.6858342841909617e-19,2.2790372703581387e-18,-0.0007971939048729837,8.602571354059739e-19,1.526277068187061e-36,-0.0,-6.743337266010817e-20,5.30163851241124e-35,-9.735692470983746e-19,-1.3275945101094922e-19,1.6250033905767303e-34,0.0001594387722434476,-9.864539163826864e-20,-1.022739486422032e-19,0.0006377550889737904,7.339162569816152e-20,9.761967863141493e-19,-0.00025510202976875007,-0.00021258502965793014,-1.0713874261732864e-36,-0.0,-2.1578678411129306e-20,-6.4816434927106084e-21,-4.248302432350375e-19,-4.24830236772689e-20,-6.776263578034403e-21,-9.864539163826864e-20,8.50340147735551e-05,-2.2572435750709467e-20,0.00041335978312417865,9.374519307655011e-20,1.452164058800251e-18,5.790870197669889e-19,-0.0004960317746736109,5.546362379928789e-23,-0.0,5.416677968589101e-35,-3.138837970087045e-20,-7.159176340330739e-19,2.6516071473654706e-34,-6.776263578034403e-21,-1.022739486422032e-19,-2.2572435750709467e-20,8.26719551696442e-05,8.0,3.0,6.0,8.0,0.036389440298080444,-0.006062610074877739,-0.0127728171646595,-0.0076574902050197124,-0.006062610074877739,0.00028935185400769114,0.0008680555620230734,0.0004960317746736109,0.00038580247201025486,0.0013020833721384406,0.0011160714784637094,0.0008680555620230734,0.0004650297632906586,0.0004960317746736109,0.00028935185400769114,-0.006062610074877739,0.003178933635354042,0.0008680555620230734,0.0004960317746736109,0.00038580247201025486,-0.00028935185400769114,-0.00024801588733680546,-0.00014172335795592517,-0.00011022927355952561,1.312995139280336e-33,-9.440671784674232e-20,5.929230630780102e-21,-1.47510498251122e-19,-5.525967803698284e-20,1.0686750230356038e-20,-0.0127728171646595,0.0008680555620230734,0.02579365111887455,0.0011160714784637094,0.0008680555620230734,-0.0,-0.0008680555620230734,-9.440671784674232e-20,5.929230630780102e-21,-0.0078125,-0.0011160714784637094,-0.0008680555620230734,1.7037462858197322e-18,6.252716669919098e-19,9.60994344028767e-19,-0.0076574902050197124,0.0004960317746736109,0.0011160714784637094,0.0056206597946584225,0.0004960317746736109,-2.588236666009773e-20,-0.0,-0.00019841270113829523,-2.6449972503435362e-21,6.208864413527635e-18,-0.00044642857392318547,-3.5575383784680614e-20,-0.0006975446594879031,-0.00019841270113829523,3.076045849682835e-19,-0.006062610074877739,0.00038580247201025486,0.0008680555620230734,0.0004960317746736109,0.003178933635354042,-6.776263578034403e-21,-0.0,-3.130240461595322e-20,-0.00011022927355952561,5.080261667302122e-18,-1.052206758433619e-33,-0.00024801588733680546,4.192107917436585e-19,-0.00014172335795592517,-0.00028935185400769114,0.00028935185400769114,-0.00028935185400769114,-0.0,-2.588236666009773e-20,-6.776263578034403e-21,4.13359775848221e-05,-0.0,3.3881317890172014e-21,1.6940658945086007e-21,-0.0,-8.315711351754242e-37,-1.0645986171603044e-37,1.5934434335558154e-36,-2.3056816954882707e-37,6.313853863642705e-22,0.0008680555620230734,-0.00024801588733680546,-0.0008680555620230734,-0.0,-0.0,-0.0,0.00024801588733680546,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004960317746736109,-0.00014172335795592517,-9.440671784674232e-20,-0.00019841270113829523,-3.130240461595322e-20,3.3881317890172014e-21,-0.0,5.668934318237007e-05,-3.0446107084279614e-21,-5.251980189779359e-34,3.7762688431166636e-20,3.1730351326852694e-36,5.900420188538822e-20,1.6783417080518505e-20,-2.482644068936671e-35,0.00038580247201025486,-0.00011022927355952561,5.929230630780102e-21,-2.6449972503435362e-21,-0.00011022927355952561,1.6940658945086007e-21,-0.0,-3.0446107084279614e-21,3.149408075842075e-05,-0.0,-2.028118235393321e-36,-1.6940658945086007e-21,1.527877194087892e-36,3.8003242085261146e-21,-4.4192112108742e-21,0.0013020833721384406,1.312995139280336e-33,-0.0078125,6.208864413527635e-18,5.080261667302122e-18,-0.0,-0.0,-5.251980189779359e-34,-0.0,0.00390625,-7.930164505921508e-19,-8.811294355013127e-19,-8.518731429098661e-19,-3.304235253882952e-19,-4.81867655193019e-19,0.0011160714784637094,-9.440671784674232e-20,-0.0011160714784637094,-0.00044642857392318547,-1.052206758433619e-33,-8.315711351754242e-37,-0.0,3.7762688431166636e-20,-2.028118235393321e-36,-7.930164505921508e-19,0.00044642857392318547,1.7888002631691618e-34,2.122453314390529e-34,7.826001151365083e-35,9.782501869685242e-35,0.0008680555620230734,5.929230630780102e-21,-0.0008680555620230734,-3.5575383784680614e-20,-0.00024801588733680546,-1.0645986171603044e-37,-0.0,3.1730351326852694e-36,-1.6940658945086007e-21,-8.811294355013127e-19,1.7888002631691618e-34,0.00024801588733680546,1.7829898313272457e-34,1.0164395367051604e-20,7.831059314145966e-22,0.0004650297632906586,-1.47510498251122e-19,1.7037462858197322e-18,-0.0006975446594879031,4.192107917436585e-19,1.5934434335558154e-36,-0.0,5.900420188538822e-20,1.527877194087892e-36,-8.518731429098661e-19,2.122453314390529e-34,1.7829898313272457e-34,0.00013950893480796367,2.5062735686221382e-20,-6.883823553295292e-20,0.0004960317746736109,-5.525967803698284e-20,6.252716669919098e-19,-0.00019841270113829523,-0.00014172335795592517,-2.3056816954882707e-37,-0.0,1.6783417080518505e-20,3.8003242085261146e-21,-3.304235253882952e-19,7.826001151365083e-35,1.0164395367051604e-20,2.5062735686221382e-20,5.668934318237007e-05,1.0453305967444222e-20,0.00028935185400769114,1.0686750230356038e-20,9.60994344028767e-19,3.076045849682835e-19,-0.00028935185400769114,6.313853863642705e-22,-0.0,-2.482644068936671e-35,-4.4192112108742e-21,-4.81867655193019e-19,9.782501869685242e-35,7.831059314145966e-22,-6.883823553295292e-20,1.0453305967444222e-20,4.13359775848221e-05,8.0,3.0,7.0,3.0,0.0699404776096344,-0.012896825559437275,-0.02703372947871685,-0.014384920708835125,-0.02703372947871685,0.0006613756413571537,0.0019841270986944437,0.0009920635493472219,0.0019841270986944437,0.0029761905316263437,0.0022321429569274187,0.004464285913854837,0.0008267195662483573,0.0022321429569274187,0.0029761905316263437,-0.012896825559437275,0.00699168536812067,0.0019841270986944437,0.0009920635493472219,0.0019841270986944437,-0.0006613756413571537,-0.0005668934318237007,-0.00028344671591185033,-0.0005668934318237007,-1.725351302544598e-33,1.8957393694084068e-34,0.0,1.6263032587282567e-19,-0.0,0.0,-0.02703372947871685,0.0019841270986944437,0.056795634329319,0.0022321429569274187,0.004464285913854837,-0.0,-0.0019841270986944437,-1.0141396595791854e-33,1.5971431126143177e-35,-0.01785714365541935,-0.0022321429569274187,-0.004464285913854837,2.8563729419731996e-18,2.9738117026452626e-18,1.9825411626695288e-17,-0.014384920708835125,0.0009920635493472219,0.0022321429569274187,0.009093915112316608,0.0022321429569274187,1.392890564389037e-20,-1.3552527156068805e-20,-0.0003306878206785768,-9.190918815880624e-20,1.1588424841869819e-17,-0.0007440476329065859,-5.881479455163772e-33,-0.0009920635493472219,-0.0007440476329065859,-1.2865735711240027e-32,-0.02703372947871685,0.0019841270986944437,0.004464285913854837,0.0022321429569274187,0.056795634329319,5.421010862427522e-20,-0.0,-7.115076756936123e-20,-0.0019841270986944437,2.881765236108985e-17,-4.1206289579083105e-33,-0.004464285913854837,-0.0,-0.0022321429569274187,-0.01785714365541935,0.0006613756413571537,-0.0006613756413571537,-0.0,1.392890564389037e-20,5.421010862427522e-20,9.448223863728344e-05,-0.0,-6.776263578034403e-21,-1.3552527156068805e-20,-1.107767968293173e-35,0.0,0.0,4.6726948126980366e-21,-0.0,0.0,0.0019841270986944437,-0.0005668934318237007,-0.0019841270986944437,-1.3552527156068805e-20,-0.0,-0.0,0.0005668934318237007,-0.0,-0.0,1.1640408860287958e-35,0.0,-0.0,2.0850042555291977e-21,-0.0,0.0,0.0009920635493472219,-0.00028344671591185033,-1.0141396595791854e-33,-0.0003306878206785768,-7.115076756936123e-20,-6.776263578034403e-21,-0.0,9.448223863728344e-05,2.0328790734103208e-20,6.018567810408575e-34,-6.319131040037406e-35,-0.0,-6.776263578034403e-20,-0.0,-0.0,0.0019841270986944437,-0.0005668934318237007,1.5971431126143177e-35,-9.190918815880624e-20,-0.0019841270986944437,-1.3552527156068805e-20,-0.0,2.0328790734103208e-20,0.0005668934318237007,-7.985715563071589e-36,-0.0,0.0,3.1936029811930242e-21,-0.0,0.0,0.0029761905316263437,-1.725351302544598e-33,-0.01785714365541935,1.1588424841869819e-17,2.881765236108985e-17,-1.107767968293173e-35,1.1640408860287958e-35,6.018567810408575e-34,-7.985715563071589e-36,0.008928571827709675,-1.5105074855478771e-18,-4.5315224566436314e-18,-1.4318352680661478e-18,-1.4869058513226313e-18,-9.912705813347644e-18,0.0022321429569274187,1.8957393694084068e-34,-0.0022321429569274187,-0.0007440476329065859,-4.1206289579083105e-33,0.0,0.0,-6.319131040037406e-35,-0.0,-1.5105074855478771e-18,0.0007440476329065859,7.666286710959985e-34,5.26594262902648e-35,-0.0,1.6770002811594002e-33,0.004464285913854837,0.0,-0.004464285913854837,-5.881479455163772e-33,-0.004464285913854837,0.0,-0.0,-0.0,0.0,-4.5315224566436314e-18,7.666286710959985e-34,0.004464285913854837,7.267001126521905e-34,7.546501081546309e-34,5.031000843478201e-33,0.0008267195662483573,1.6263032587282567e-19,2.8563729419731996e-18,-0.0009920635493472219,-0.0,4.6726948126980366e-21,2.0850042555291977e-21,-6.776263578034403e-20,3.1936029811930242e-21,-1.4318352680661478e-18,5.26594262902648e-35,7.267001126521905e-34,0.0001653439103392884,1.8342190288195015e-35,1.5896564591184964e-33,0.0022321429569274187,-0.0,2.9738117026452626e-18,-0.0007440476329065859,-0.0022321429569274187,-0.0,-0.0,-0.0,-0.0,-1.4869058513226313e-18,-0.0,7.546501081546309e-34,1.8342190288195015e-35,0.0007440476329065859,1.650797042711633e-33,0.0029761905316263437,0.0,1.9825411626695288e-17,-1.2865735711240027e-32,-0.01785714365541935,0.0,0.0,-0.0,0.0,-9.912705813347644e-18,1.6770002811594002e-33,5.031000843478201e-33,1.5896564591184964e-33,1.650797042711633e-33,0.008928571827709675,8.0,3.0,7.0,4.0,0.0563616082072258,-0.00997023843228817,-0.02094493992626667,-0.01112351194024086,-0.01711309514939785,0.0004960317746736109,0.0014880952658131719,0.0007440476329065859,0.0011904762359336019,0.0022321429569274187,0.0016741071594879031,0.0026785715017467737,0.0006200397037900984,0.0013392857508733869,0.0014880952658131719,-0.00997023843228817,0.005328798200935125,0.0014880952658131719,0.0007440476329065859,0.0011904762359336019,-0.0004960317746736109,-0.00042517005931586027,-0.00021258502965793014,-0.0003401360590942204,3.553893009334146e-33,1.3552527156068805e-20,-2.2657611766230274e-19,-1.4907779871675686e-19,-1.2874900798265365e-19,-5.664403070804539e-19,-0.02094493992626667,0.0014880952658131719,0.04326637089252472,0.0016741071594879031,0.0026785715017467737,2.710505431213761e-20,-0.0014880952658131719,1.1929614950111104e-20,-2.2657611766230274e-19,-0.013392857275903225,-0.0016741071594879031,-0.0026785715017467737,2.22358349568289e-18,1.7813224889898288e-18,6.938893903907228e-18,-0.01112351194024086,0.0007440476329065859,0.0016741071594879031,0.006932043470442295,0.0013392857508733869,-1.8546869211253526e-20,-0.0,-0.00024801588733680546,-1.800144440991196e-19,9.480795110864306e-18,-0.0005580357392318547,-3.969347977745267e-33,-0.0007440476329065859,-0.00044642857392318547,-7.434529256613157e-19,-0.01711309514939785,0.0011904762359336019,0.0026785715017467737,0.0013392857508733869,0.02182539738714695,-0.0,-2.541098841762901e-21,-5.929230630780102e-20,-0.0007936508045531809,1.5803684303880844e-17,-3.3497338851673e-33,-0.0017857142956927419,-2.710505431213761e-20,-0.0008928571478463709,-0.004464285913854837,0.0004960317746736109,-0.0004960317746736109,2.710505431213761e-20,-1.8546869211253526e-20,-0.0,7.086167897796258e-05,-6.776263578034403e-21,3.3881317890172014e-21,-0.0,-2.0362995942840552e-35,-2.7690779772975416e-22,-5.1469989445717214e-36,-1.9399919816684793e-21,1.752013369930278e-21,-1.0255681680765962e-35,0.0014880952658131719,-0.00042517005931586027,-0.0014880952658131719,-0.0,-2.541098841762901e-21,-6.776263578034403e-21,0.00042517005931586027,-0.0,-0.0,-4.244586122899467e-35,4.7367520347633125e-22,-2.0440209326728435e-37,-2.6834225766844303e-22,8.470329472543003e-22,-4.6988302438837045e-36,0.0007440476329065859,-0.00021258502965793014,1.1929614950111104e-20,-0.00024801588733680546,-5.929230630780102e-20,3.3881317890172014e-21,-0.0,7.086167897796258e-05,1.6940658945086007e-20,-4.480403605821361e-34,-3.976538316703701e-21,1.1336330770536643e-35,5.421010862427522e-20,-0.0,2.75545949038729e-35,0.0011904762359336019,-0.0003401360590942204,-2.2657611766230274e-19,-1.800144440991196e-19,-0.0007936508045531809,-0.0,-0.0,1.6940658945086007e-20,0.00022675737272948027,-1.342099277380742e-33,-1.504632769052528e-36,1.5105075372466654e-19,9.362172950388125e-22,7.642448987643573e-20,3.776268713869693e-19,0.0022321429569274187,3.553893009334146e-33,-0.013392857275903225,9.480795110864306e-18,1.5803684303880844e-17,-2.0362995942840552e-35,-4.244586122899467e-35,-4.480403605821361e-34,-1.342099277380742e-33,0.0066964286379516125,-1.69932097294015e-18,-2.7189135153452095e-18,-1.073876476899005e-18,-8.921435521526094e-19,-3.469446951953614e-18,0.0016741071594879031,1.3552527156068805e-20,-0.0016741071594879031,-0.0005580357392318547,-3.3497338851673e-33,-2.7690779772975416e-22,4.7367520347633125e-22,-3.976538316703701e-21,-1.504632769052528e-36,-1.69932097294015e-18,0.0005580357392318547,6.8996582235349785e-34,-2.4963840750994412e-20,-0.0,8.883447744744114e-34,0.0026785715017467737,-2.2657611766230274e-19,-0.0026785715017467737,-3.969347977745267e-33,-0.0017857142956927419,-5.1469989445717214e-36,-2.0440209326728435e-37,1.1336330770536643e-35,1.5105075372466654e-19,-2.7189135153452095e-18,6.8996582235349785e-34,0.0017857142956927419,4.366159330245858e-34,4.131409894144282e-34,1.6602302012059895e-33,0.0006200397037900984,-1.4907779871675686e-19,2.22358349568289e-18,-0.0007440476329065859,-2.710505431213761e-20,-1.9399919816684793e-21,-2.6834225766844303e-22,5.421010862427522e-20,9.362172950388125e-22,-1.073876476899005e-18,-2.4963840750994412e-20,4.366159330245858e-34,0.00012400794366840273,1.1005314029424046e-35,5.719821890454341e-34,0.0013392857508733869,-1.2874900798265365e-19,1.7813224889898288e-18,-0.00044642857392318547,-0.0008928571478463709,1.752013369930278e-21,8.470329472543003e-22,-0.0,7.642448987643573e-20,-8.921435521526094e-19,-0.0,4.131409894144282e-34,1.1005314029424046e-35,0.00029761905898340046,4.956353010071399e-19,0.0014880952658131719,-5.664403070804539e-19,6.938893903907228e-18,-7.434529256613157e-19,-0.004464285913854837,-1.0255681680765962e-35,-4.6988302438837045e-36,2.75545949038729e-35,3.776268713869693e-19,-3.469446951953614e-18,8.883447744744114e-34,1.6602302012059895e-33,5.719821890454341e-34,4.956353010071399e-19,0.0014880952658131719,8.0,3.0,7.0,5.0,0.04728599637746811,-0.008134921081364155,-0.01711309514939785,-0.00907738134264946,-0.011833900585770607,0.00039682540227659047,0.0011904762359336019,0.0005952381179668009,0.0007936508045531809,0.0017857142956927419,0.0013392857508733869,0.0017857142956927419,0.0004960317746736109,0.0008928571478463709,0.0008503401186317205,-0.008134921081364155,0.004308389965444803,0.0011904762359336019,0.0005952381179668009,0.0007936508045531809,-0.00039682540227659047,-0.0003401360590942204,-0.0001700680295471102,-0.00022675737272948027,-5.492313417639287e-18,-1.1134577929927033e-18,-4.11865055672912e-18,6.2341624917916505e-19,-9.868314338594373e-19,-3.1649584597503945e-18,-0.01711309514939785,0.0011904762359336019,0.0349702388048172,0.0013392857508733869,0.0017857142956927419,-1.5449880957918438e-18,-0.0011904762359336019,-1.4628444080743826e-18,-4.147670947749624e-18,-0.010714286006987095,-0.0013392857508733869,-0.0017857142956927419,3.23957821601365e-18,6.202862494400527e-19,-4.909149431428177e-18,-0.00907738134264946,0.0005952381179668009,0.0013392857508733869,0.0056051588617265224,0.0008928571478463709,1.0621404383681026e-18,-2.5268710767330475e-19,-0.00019841270113829523,-1.9962947360734786e-18,1.2456966966592335e-17,-0.00044642857392318547,-1.287707628327638e-18,-0.0005952381179668009,-0.00029761905898340046,-6.1388576367454346e-18,-0.011833900585770607,0.0007936508045531809,0.0017857142956927419,0.0008928571478463709,0.01101899053901434,-1.0863695924855465e-18,-3.346202830947501e-18,-2.554699345394498e-18,-0.00039682540227659047,-4.489039701153827e-18,-4.056622764135606e-18,-0.0008928571478463709,-3.63207727782644e-18,-0.00044642857392318547,-0.001700680237263441,0.00039682540227659047,-0.00039682540227659047,-1.5449880957918438e-18,1.0621404383681026e-18,-1.0863695924855465e-18,5.668934318237007e-05,4.0657581468206416e-20,-7.453889935837843e-20,2.710505431213761e-20,2.64338825480515e-19,3.3042353185064373e-20,2.64338825480515e-19,-1.47491602344004e-19,2.2028234918180537e-20,1.2587562810388879e-19,0.0011904762359336019,-0.0003401360590942204,-0.0011904762359336019,-2.5268710767330475e-19,-3.346202830947501e-18,4.0657581468206416e-20,0.0003401360590942204,5.70141798149961e-20,1.9510124911980648e-19,1.0551973944990622e-18,1.0978152389226545e-19,5.02783227174152e-19,-3.7762688431166636e-20,9.440671784674232e-20,4.3157357468493465e-19,0.0005952381179668009,-0.0001700680295471102,-1.4628444080743826e-18,-0.00019841270113829523,-2.554699345394498e-18,-7.453889935837843e-20,5.70141798149961e-20,5.668934318237007e-05,1.3160344025551223e-19,2.0769478960259076e-19,6.864649765190254e-20,2.64338825480515e-19,3.436380006301198e-20,1.1180834903756764e-19,3.326713111547256e-19,0.0007936508045531809,-0.00022675737272948027,-4.147670947749624e-18,-1.9962947360734786e-18,-0.00039682540227659047,2.710505431213761e-20,1.9510124911980648e-19,1.3160344025551223e-19,0.00011337868636474013,9.06304470649211e-19,2.2657611766230274e-19,4.1071419928666696e-19,1.5105075372466654e-19,1.6363831007270689e-19,3.911563667328573e-19,0.0017857142956927419,-5.492313417639287e-18,-0.010714286006987095,1.2456966966592335e-17,-4.489039701153827e-18,2.64338825480515e-19,1.0551973944990622e-18,2.0769478960259076e-19,9.06304470649211e-19,0.0053571430034935474,-1.4869058513226313e-18,5.937104582528652e-33,-1.5529905512304115e-18,-6.938894007304805e-19,8.49660486470075e-19,0.0013392857508733869,-1.1134577929927033e-18,-0.0013392857508733869,-0.00044642857392318547,-4.056622764135606e-18,3.3042353185064373e-20,1.0978152389226545e-19,6.864649765190254e-20,2.2657611766230274e-19,-1.4869058513226313e-18,0.00044642857392318547,3.6252180376932087e-19,-4.759248580731788e-22,1.4568966692773966e-19,5.664403070804539e-19,0.0017857142956927419,-4.11865055672912e-18,-0.0017857142956927419,-1.287707628327638e-18,-0.0008928571478463709,2.64338825480515e-19,5.02783227174152e-19,2.64338825480515e-19,4.1071419928666696e-19,5.937104582528652e-33,3.6252180376932087e-19,0.0008928571478463709,-0.0,1.5287068933573685e-33,4.7009749270130894e-33,0.0004960317746736109,6.2341624917916505e-19,3.23957821601365e-18,-0.0005952381179668009,-3.63207727782644e-18,-1.47491602344004e-19,-3.7762688431166636e-20,3.436380006301198e-20,1.5105075372466654e-19,-1.5529905512304115e-18,-4.759248580731788e-22,-0.0,9.920635056914762e-05,1.9520851118079988e-19,5.664403070804539e-19,0.0008928571478463709,-9.868314338594373e-19,6.202862494400527e-19,-0.00029761905898340046,-0.00044642857392318547,2.2028234918180537e-20,9.440671784674232e-20,1.1180834903756764e-19,1.6363831007270689e-19,-6.938894007304805e-19,1.4568966692773966e-19,1.5287068933573685e-33,1.9520851118079988e-19,0.00014880952949170023,4.575095125988051e-19,0.0008503401186317205,-3.1649584597503945e-18,-4.909149431428177e-18,-6.1388576367454346e-18,-0.001700680237263441,1.2587562810388879e-19,4.3157357468493465e-19,3.326713111547256e-19,3.911563667328573e-19,8.49660486470075e-19,5.664403070804539e-19,4.7009749270130894e-33,5.664403070804539e-19,4.575095125988051e-19,0.00042517005931586027,8.0,3.0,7.0,6.0,0.04076318070292473,-0.0068735829554498196,-0.014473497867584229,-0.007670776452869177,-0.0086805559694767,0.0003306878206785768,0.0009920635493472219,0.0004960317746736109,0.0005668934318237007,0.0014880952658131719,0.0011160714784637094,0.0012755101779475808,0.00041335978312417865,0.0006377550889737904,0.0005314626032486558,-0.0068735829554498196,0.0036173199769109488,0.0009920635493472219,0.0004960317746736109,0.0005668934318237007,-0.0003306878206785768,-0.00028344671591185033,-0.00014172335795592517,-0.0001619695540284738,-2.2401869714780508e-33,1.1048256228868162e-21,1.0789339367123366e-19,8.131516293641283e-20,5.902889451914263e-20,1.6858342841909617e-19,-0.014473497867584229,0.0009920635493472219,0.02935444936156273,0.0011160714784637094,0.0012755101779475808,-0.0,-0.0009920635493472219,1.1048256228868162e-21,1.0789339367123366e-19,-0.008928571827709675,-0.0011160714784637094,-0.0012755101779475808,1.4351496773830712e-18,9.457036002129945e-19,2.2790372703581387e-18,-0.007670776452869177,0.0004960317746736109,0.0011160714784637094,0.004706396255642176,0.0006377550889737904,1.657066687320472e-20,-0.0,-0.0001653439103392884,3.190414619984287e-20,6.1128349482648226e-18,-0.00037202381645329297,1.0620756080875938e-19,-0.0004960317746736109,-0.00021258502965793014,-1.3939271906504812e-33,-0.0086805559694767,0.0005668934318237007,0.0012755101779475808,0.0006377550889737904,0.006395266391336918,-1.3552527156068805e-20,-0.0,-1.6960352952248158e-20,-0.00022675737272948027,7.178113709876951e-18,-1.0164395367051604e-20,-0.0005102040595375001,5.421010862427522e-20,-0.00025510202976875007,-0.0007971939048729837,0.0003306878206785768,-0.0003306878206785768,-0.0,1.657066687320472e-20,-1.3552527156068805e-20,4.724111931864172e-05,-0.0,-3.3881317890172014e-21,3.3881317890172014e-21,-0.0,2.1148212853491313e-38,-2.64213036270565e-36,4.968127253761011e-37,7.001037907481547e-38,3.891182076091234e-37,0.0009920635493472219,-0.00028344671591185033,-0.0009920635493472219,-0.0,-0.0,-0.0,0.00028344671591185033,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004960317746736109,-0.00014172335795592517,1.1048256228868162e-21,-0.0001653439103392884,-1.6960352952248158e-20,-3.3881317890172014e-21,-0.0,4.724111931864172e-05,6.297871667920672e-21,2.407412430484045e-34,-3.6827518238538977e-22,-3.253657012537e-36,-2.710505431213761e-20,-1.6940658945086007e-21,-6.555039784483607e-36,0.0005668934318237007,-0.0001619695540284738,1.0789339367123366e-19,3.190414619984287e-20,-0.00022675737272948027,3.3881317890172014e-21,-0.0,6.297871667920672e-21,6.478781870100647e-05,6.071853061166846e-34,-9.088861300175519e-37,-4.315735682225861e-20,-1.504632769052528e-36,-2.1578678411129306e-20,-6.743337266010817e-20,0.0014880952658131719,-2.2401869714780508e-33,-0.008928571827709675,6.1128349482648226e-18,7.178113709876951e-18,-0.0,-0.0,2.407412430484045e-34,6.071853061166846e-34,0.004464285913854837,-7.552537427739386e-19,-1.0357765378848125e-18,-7.159176340330739e-19,-4.248302432350375e-19,-9.735692470983746e-19,0.0011160714784637094,1.1048256228868162e-21,-0.0011160714784637094,-0.00037202381645329297,-1.0164395367051604e-20,2.1148212853491313e-38,-0.0,-3.6827518238538977e-22,-9.088861300175519e-37,-7.552537427739386e-19,0.00037202381645329297,1.7303276844104072e-34,-1.1048256228868162e-21,3.3881317890172014e-21,1.6470537819704851e-34,0.0012755101779475808,1.0789339367123366e-19,-0.0012755101779475808,1.0620756080875938e-19,-0.0005102040595375001,-2.64213036270565e-36,-0.0,-3.253657012537e-36,-4.315735682225861e-20,-1.0357765378848125e-18,1.7303276844104072e-34,0.0005102040595375001,1.684646183145278e-34,-4.24830236772689e-20,-1.3275945101094922e-19,0.00041335978312417865,8.131516293641283e-20,1.4351496773830712e-18,-0.0004960317746736109,5.421010862427522e-20,4.968127253761011e-37,-0.0,-2.710505431213761e-20,-1.504632769052528e-36,-7.159176340330739e-19,-1.1048256228868162e-21,1.684646183145278e-34,8.26719551696442e-05,-1.31615889969966e-20,1.5612697858318247e-34,0.0006377550889737904,5.902889451914263e-20,9.457036002129945e-19,-0.00021258502965793014,-0.00025510202976875007,7.001037907481547e-38,-0.0,-1.6940658945086007e-21,-2.1578678411129306e-20,-4.248302432350375e-19,3.3881317890172014e-21,-4.24830236772689e-20,-1.31615889969966e-20,8.50340147735551e-05,1.2616104470739292e-34,0.0005314626032486558,1.6858342841909617e-19,2.2790372703581387e-18,-1.3939271906504812e-33,-0.0007971939048729837,3.891182076091234e-37,-0.0,-6.555039784483607e-36,-6.743337266010817e-20,-9.735692470983746e-19,1.6470537819704851e-34,-1.3275945101094922e-19,1.5612697858318247e-34,1.2616104470739292e-34,0.0001594387722434476,8.0,3.0,7.0,7.0,0.0358382947742939,-0.0059523810632526875,-0.01254251692444086,-0.006643282249569893,-0.006643282249569893,0.00028344671591185033,0.0008503401186317205,0.00042517005931586027,0.00042517005931586027,0.0012755101779475808,0.0009566326625645161,0.0009566326625645161,0.00035430840216577053,0.00047831633128225803,0.00035430840216577053,-0.0059523810632526875,0.003117913845926523,0.0008503401186317205,0.00042517005931586027,0.00042517005931586027,-0.00028344671591185033,-0.00024295432376675308,-0.00012147716188337654,-0.00012147716188337654,6.473603878767961e-19,8.116715576790266e-20,8.970756294796539e-20,5.421010862427522e-20,1.536367626575774e-20,6.042306866750955e-20,-0.01254251692444086,0.0008503401186317205,0.0252976194024086,0.0009566326625645161,0.0009566326625645161,-0.0,-0.0008503401186317205,-1.376877874459852e-21,1.0411508304909719e-20,-0.0076530613005161285,-0.0009566326625645161,-0.0009566326625645161,1.2231567280706842e-18,6.917042997448451e-19,1.2632131560287177e-18,-0.006643282249569893,0.00042517005931586027,0.0009566326625645161,0.004056830890476704,0.00047831633128225803,-6.8671202604508855e-22,8.092004848459951e-20,-0.00014172335795592517,-8.13821968777723e-21,6.3847362466462095e-18,-0.0003188775444868952,1.4907779871675686e-19,-0.00042517005931586027,-0.0001594387722434476,6.276223204223294e-20,-0.006643282249569893,0.00042517005931586027,0.0009566326625645161,0.00047831633128225803,0.004056830890476704,-0.0,8.092004848459951e-20,-2.841280747353834e-20,-0.00014172335795592517,6.3847362466462095e-18,1.0706943130825135e-19,-0.0003188775444868952,-0.0,-0.0001594387722434476,-0.00042517005931586027,0.00028344671591185033,-0.00028344671591185033,-0.0,-6.8671202604508855e-22,-0.0,4.049238850711845e-05,-0.0,-0.0,-0.0,-3.7424213073157316e-36,-5.019011203597574e-37,-9.12006205126279e-37,6.23750828388865e-22,-1.0378624029803726e-37,-1.0889338748007324e-22,0.0008503401186317205,-0.00024295432376675308,-0.0008503401186317205,8.092004848459951e-20,8.092004848459951e-20,-0.0,0.00024295432376675308,-1.1646792413785057e-37,8.806930811125572e-37,-6.473603878767961e-19,-8.092004848459951e-20,-8.092004848459951e-20,1.0291898443605493e-34,5.851017391499426e-35,1.0532429383367696e-34,0.00042517005931586027,-0.00012147716188337654,-1.376877874459852e-21,-0.00014172335795592517,-2.841280747353834e-20,-0.0,-1.1646792413785057e-37,4.049238850711845e-05,6.1931270955786605e-21,1.6851887013388314e-34,-7.309539557931027e-35,4.589592746575847e-22,-2.0328790734103208e-20,8.470329472543003e-22,5.748928986179571e-22,0.00042517005931586027,-0.00012147716188337654,1.0411508304909719e-20,-8.13821968777723e-21,-0.00014172335795592517,-0.0,8.806930811125572e-37,6.1931270955786605e-21,4.049238850711845e-05,1.925929944387236e-34,-8.23709435243438e-23,-3.3881317890172014e-21,6.845262881142256e-22,-5.968258369173547e-21,-2.0441090195780085e-20,0.0012755101779475808,6.473603878767961e-19,-0.0076530613005161285,6.3847362466462095e-18,6.3847362466462095e-18,-3.7424213073157316e-36,-6.473603878767961e-19,1.6851887013388314e-34,1.925929944387236e-34,0.0038265306502580643,-1.747006074097454e-18,-1.747006074097454e-18,-6.136436789285222e-19,-3.1862268242627814e-19,-6.136436789285222e-19,0.0009566326625645161,8.116715576790266e-20,-0.0009566326625645161,-0.0003188775444868952,1.0706943130825135e-19,-5.019011203597574e-37,-8.092004848459951e-20,-7.309539557931027e-35,-8.23709435243438e-23,-1.747006074097454e-18,0.0003188775444868952,-1.0517490336216935e-19,6.0909795251573e-35,-0.0,-2.4711283688391863e-22,0.0009566326625645161,8.970756294796539e-20,-0.0009566326625645161,1.4907779871675686e-19,-0.0003188775444868952,-9.12006205126279e-37,-8.092004848459951e-20,4.589592746575847e-22,-3.3881317890172014e-21,-1.747006074097454e-18,-1.0517490336216935e-19,0.0003188775444868952,1.376877874459852e-21,-1.815298745242337e-20,-1.1728148811133992e-20,0.00035430840216577053,5.421010862427522e-20,1.2231567280706842e-18,-0.00042517005931586027,-0.0,6.23750828388865e-22,1.0291898443605493e-34,-2.0328790734103208e-20,6.845262881142256e-22,-6.136436789285222e-19,6.0909795251573e-35,1.376877874459852e-21,7.086167897796258e-05,-4.560946872078992e-22,-1.8944911157440555e-22,0.00047831633128225803,1.536367626575774e-20,6.917042997448451e-19,-0.0001594387722434476,-0.0001594387722434476,-1.0378624029803726e-37,5.851017391499426e-35,8.470329472543003e-22,-5.968258369173547e-21,-3.1862268242627814e-19,-0.0,-1.815298745242337e-20,-4.560946872078992e-22,5.3146257414482534e-05,-2.1098609925467378e-20,0.00035430840216577053,6.042306866750955e-20,1.2632131560287177e-18,6.276223204223294e-20,-0.00042517005931586027,-1.0889338748007324e-22,1.0532429383367696e-34,5.748928986179571e-22,-2.0441090195780085e-20,-6.136436789285222e-19,-2.4711283688391863e-22,-1.1728148811133992e-20,-1.8944911157440555e-22,-2.1098609925467378e-20,7.086167897796258e-05,8.0,3.0,7.0,8.0,0.031983714550733566,-0.005249669309705496,-0.011067708022892475,-0.005859375,-0.005249669309705496,0.00024801588733680546,0.0007440476329065859,0.00037202381645329297,0.0003306878206785768,0.0011160714784637094,0.0008370535797439516,0.0007440476329065859,0.0003100198518950492,0.00037202381645329297,0.00024801588733680546,-0.005249669309705496,0.0027399847749620676,0.0007440476329065859,0.00037202381645329297,0.0003306878206785768,-0.00024801588733680546,-0.00021258502965793014,-0.00010629251482896507,-9.448223863728344e-05,5.537048590113303e-34,6.428971010255286e-22,-5.6138987183998045e-21,-8.131516293641283e-20,1.4511940344356677e-20,1.53202347433145e-20,-0.011067708022892475,0.0007440476329065859,0.0222284235060215,0.0008370535797439516,0.0007440476329065859,-0.0,-0.0007440476329065859,1.1412651906917645e-21,-6.041071265710954e-21,-0.0066964286379516125,-0.0008370535797439516,-0.0007440476329065859,1.0773002808519385e-18,5.15004096941587e-19,8.166476048255071e-19,-0.005859375,0.00037202381645329297,0.0008370535797439516,0.0035652280785143375,0.00037202381645329297,-6.902839175419922e-21,-0.0,-0.00012400794366840273,2.7381672515873615e-22,4.9386516551554935e-18,-0.00027901786961592734,2.710505431213761e-20,-0.00037202381645329297,-0.00012400794366840273,3.0174828194072733e-20,-0.005249669309705496,0.0003306878206785768,0.0007440476329065859,0.00037202381645329297,0.0027399847749620676,-0.0,-0.0,-2.031776758308866e-20,-9.448223863728344e-05,4.282019141298649e-18,-5.7171242349391734e-21,-0.00021258502965793014,-6.776263578034403e-21,-0.00010629251482896507,-0.00024801588733680546,0.00024801588733680546,-0.00024801588733680546,-0.0,-6.902839175419922e-21,-0.0,3.543083948898129e-05,-0.0,1.6940658945086007e-21,-0.0,-0.0,-4.360065902928059e-39,3.903528468444891e-38,1.8280973002992894e-22,1.8378557368881333e-37,-5.212060798780401e-22,0.0007440476329065859,-0.00021258502965793014,-0.0007440476329065859,-0.0,-0.0,-0.0,0.00021258502965793014,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.00010629251482896507,1.1412651906917645e-21,-0.00012400794366840273,-2.031776758308866e-20,1.6940658945086007e-21,-0.0,3.543083948898129e-05,4.791820533912393e-21,-2.407412430484045e-34,-2.5779262514541794e-22,-1.0511066060001917e-22,2.710505431213761e-20,-0.0,4.822744689190624e-22,0.0003306878206785768,-9.448223863728344e-05,-6.041071265710954e-21,2.7381672515873615e-22,-9.448223863728344e-05,-0.0,-0.0,4.791820533912393e-21,2.6994925065082498e-05,4.81482486096809e-35,3.7280237938980626e-23,1.6940658945086007e-21,-3.954659429891352e-22,-4.1462686698161935e-21,-3.663081293192286e-21,0.0011160714784637094,5.537048590113303e-34,-0.0066964286379516125,4.9386516551554935e-18,4.282019141298649e-18,-0.0,-0.0,-2.407412430484045e-34,4.81482486096809e-35,0.0033482143189758062,-8.49660486470075e-19,-6.473603878767961e-19,-5.369382384495025e-19,-2.4781765050356993e-19,-4.1302940027302046e-19,0.0008370535797439516,6.428971010255286e-22,-0.0008370535797439516,-0.00027901786961592734,-5.7171242349391734e-21,-4.360065902928059e-39,-0.0,-2.5779262514541794e-22,3.7280237938980626e-23,-8.49660486470075e-19,0.00027901786961592734,-2.364989847723213e-22,-7.733779259233518e-22,1.6940658945086007e-21,9.78606249842546e-23,0.0007440476329065859,-5.6138987183998045e-21,-0.0007440476329065859,2.710505431213761e-20,-0.00021258502965793014,3.903528468444891e-38,-0.0,-1.0511066060001917e-22,1.6940658945086007e-21,-6.473603878767961e-19,-2.364989847723213e-22,0.00021258502965793014,-3.1533198811094474e-22,-6.986003138724179e-21,2.605025807115507e-21,0.0003100198518950492,-8.131516293641283e-20,1.0773002808519385e-18,-0.00037202381645329297,-6.776263578034403e-21,1.8280973002992894e-22,-0.0,2.710505431213761e-20,-3.954659429891352e-22,-5.369382384495025e-19,-7.733779259233518e-22,-3.1533198811094474e-22,6.200397183420137e-05,3.1275062823196006e-21,-6.05791532668182e-23,0.00037202381645329297,1.4511940344356677e-20,5.15004096941587e-19,-0.00012400794366840273,-0.00010629251482896507,1.8378557368881333e-37,-0.0,-0.0,-4.1462686698161935e-21,-2.4781765050356993e-19,1.6940658945086007e-21,-6.986003138724179e-21,3.1275062823196006e-21,3.543083948898129e-05,-9.019110494596519e-21,0.00024801588733680546,1.53202347433145e-20,8.166476048255071e-19,3.0174828194072733e-20,-0.00024801588733680546,-5.212060798780401e-22,-0.0,4.822744689190624e-22,-3.663081293192286e-21,-4.1302940027302046e-19,9.78606249842546e-23,2.605025807115507e-21,-6.05791532668182e-23,-9.019110494596519e-21,3.543083948898129e-05,8.0,3.0,8.0,3.0,0.06254822760820389,-0.011381172575056553,-0.02387152798473835,-0.011381172575056553,-0.02387152798473835,0.0005787037080153823,0.0017361111240461469,0.0007716049440205097,0.0017361111240461469,0.0026041667442768812,0.0017361111240461469,0.00390625,0.0005787037080153823,0.0017361111240461469,0.0026041667442768812,-0.011381172575056553,0.006145282182842493,0.0017361111240461469,0.0007716049440205097,0.0017361111240461469,-0.0005787037080153823,-0.0004960317746736109,-0.00022045854711905122,-0.0004960317746736109,-1.9361200110409266e-34,2.278514883141573e-34,0.0,2.710505431213761e-20,-0.0,0.0,-0.02387152798473835,0.0017361111240461469,0.0499131940305233,0.0017361111240461469,0.00390625,-0.0,-0.0017361111240461469,2.1211637144357306e-34,2.371692252312041e-20,-0.015625,-0.0017361111240461469,-0.00390625,1.914940902443429e-18,2.3129647035674605e-18,1.734723475976807e-17,-0.011381172575056553,0.0007716049440205097,0.0017361111240461469,0.006145282182842493,0.0017361111240461469,-1.9926889200740407e-20,-2.710505431213761e-20,-0.00022045854711905122,-2.724391402629568e-20,9.664888292091045e-18,-0.0004960317746736109,-4.292072604923833e-33,-0.0005787037080153823,-0.0004960317746736109,-1.0730181328638591e-32,-0.02387152798473835,0.0017361111240461469,0.00390625,0.0017361111240461469,0.0499131940305233,-0.0,2.371692252312041e-20,-2.371692252312041e-20,-0.0017361111240461469,2.4864369270880493e-17,-4.695600713777924e-33,-0.00390625,-0.0,-0.0017361111240461469,-0.015625,0.0005787037080153823,-0.0005787037080153823,-0.0,-1.9926889200740407e-20,-0.0,8.26719551696442e-05,-0.0,6.776263578034403e-21,-0.0,2.428921738613874e-35,-0.0,-0.0,-9.818323880223123e-22,-0.0,-0.0,0.0017361111240461469,-0.0004960317746736109,-0.0017361111240461469,-2.710505431213761e-20,2.371692252312041e-20,-0.0,0.0004960317746736109,-0.0,-6.776263578034403e-21,-1.8847517975663616e-35,-0.0,0.0,3.5799128870234106e-21,-0.0,0.0,0.0007716049440205097,-0.00022045854711905122,2.1211637144357306e-34,-0.00022045854711905122,-2.371692252312041e-20,6.776263578034403e-21,-0.0,6.29881615168415e-05,6.776263578034403e-21,7.867554130503244e-36,-6.510042687253595e-35,-0.0,-6.776263578034403e-21,-0.0,-0.0,0.0017361111240461469,-0.0004960317746736109,2.371692252312041e-20,-2.724391402629568e-20,-0.0017361111240461469,-0.0,-6.776263578034403e-21,6.776263578034403e-21,0.0004960317746736109,1.0190105217424443e-36,-0.0,-0.0,4.658291045605817e-22,-0.0,-0.0,0.0026041667442768812,-1.9361200110409266e-34,-0.015625,9.664888292091045e-18,2.4864369270880493e-17,2.428921738613874e-35,-1.8847517975663616e-35,7.867554130503244e-36,1.0190105217424443e-36,0.0078125,-1.7622588710026254e-18,-3.469446951953614e-18,-9.63735310386038e-19,-1.1564823517837303e-18,-8.673617379884035e-18,0.0017361111240461469,2.278514883141573e-34,-0.0017361111240461469,-0.0004960317746736109,-4.695600713777924e-33,-0.0,-0.0,-6.510042687253595e-35,-0.0,-1.7622588710026254e-18,0.0004960317746736109,7.826001495748193e-34,4.650030367901457e-35,-0.0,1.9565003280193003e-33,0.00390625,0.0,-0.00390625,-4.292072604923833e-33,-0.00390625,-0.0,0.0,-0.0,-0.0,-3.469446951953614e-18,7.826001495748193e-34,0.00390625,4.2798445249394045e-34,5.135813338091789e-34,3.851859888774472e-33,0.0005787037080153823,2.710505431213761e-20,1.914940902443429e-18,-0.0005787037080153823,-0.0,-9.818323880223123e-22,3.5799128870234106e-21,-6.776263578034403e-21,4.658291045605817e-22,-9.63735310386038e-19,4.650030367901457e-35,4.2798445249394045e-34,8.26719551696442e-05,1.0766904059144205e-35,1.069961039399355e-33,0.0017361111240461469,-0.0,2.3129647035674605e-18,-0.0004960317746736109,-0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-1.1564823517837303e-18,-0.0,5.135813338091789e-34,1.0766904059144205e-35,0.0004960317746736109,1.2839532656463252e-33,0.0026041667442768812,0.0,1.734723475976807e-17,-1.0730181328638591e-32,-0.015625,-0.0,0.0,-0.0,-0.0,-8.673617379884035e-18,1.9565003280193003e-33,3.851859888774472e-33,1.069961039399355e-33,1.2839532656463252e-33,0.0078125,8.0,3.0,8.0,4.0,0.05036168918013573,-0.008796296082437038,-0.01848958246409893,-0.008796296082437038,-0.015104166232049465,0.0004340277810115367,0.0013020833721384406,0.0005787037080153823,0.0010416667209938169,0.001953125,0.0013020833721384406,0.0023437500931322575,0.0004340277810115367,0.0010416667209938169,0.0013020833721384406,-0.008796296082437038,0.004683366511017084,0.0013020833721384406,0.0005787037080153823,0.0010416667209938169,-0.0004340277810115367,-0.00037202381645329297,-0.0001653439103392884,-0.00029761905898340046,-3.7415009434526733e-34,7.609707720931336e-22,0.0,2.710505431213761e-20,-6.776263578034403e-21,0.0,-0.01848958246409893,0.0013020833721384406,0.03802083432674408,0.0013020833721384406,0.0023437500931322575,-2.710505431213761e-20,-0.0013020833721384406,-1.1097490640928365e-20,-1.1858461261560205e-20,-0.01171875,-0.0013020833721384406,-0.0023437500931322575,1.4499497996980231e-18,1.3759203401994008e-18,6.071532165918825e-18,-0.008796296082437038,0.0005787037080153823,0.0013020833721384406,0.004683366511017084,0.0010416667209938169,-7.600009452340775e-21,-6.776263578034403e-21,-0.0001653439103392884,-2.5528532075142503e-20,7.091714694895788e-18,-0.00037202381645329297,-2.51948314353648e-33,-0.0004340277810115367,-0.00029761905898340046,-3.6742463657850704e-33,-0.015104166232049465,0.0010416667209938169,0.0023437500931322575,0.0010416667209938169,0.01918402686715126,-0.0,-1.1858461261560205e-20,-1.7787691892340307e-20,-0.0006944444612599909,1.3617579120981813e-17,-1.1858461261560205e-20,-0.0015625000232830644,-0.0,-0.0006944444612599909,-0.00390625,0.0004340277810115367,-0.0004340277810115367,-2.710505431213761e-20,-7.600009452340775e-21,-0.0,6.200397183420137e-05,6.776263578034403e-21,-0.0,-0.0,1.9407440430668516e-35,2.165336833819423e-38,0.0,1.0130643126495494e-21,8.53415526175135e-22,0.0,0.0013020833721384406,-0.00037202381645329297,-0.0013020833721384406,-6.776263578034403e-21,-1.1858461261560205e-20,6.776263578034403e-21,0.00037202381645329297,3.3881317890172014e-21,3.3881317890172014e-21,2.2490274810773888e-35,-0.0,-0.0,-6.712336410733405e-22,-0.0,-0.0,0.0005787037080153823,-0.0001653439103392884,-1.1097490640928365e-20,-0.0001653439103392884,-1.7787691892340307e-20,-0.0,3.3881317890172014e-21,4.724111931864172e-05,5.082197683525802e-21,6.164390524898595e-35,-2.174202133855956e-22,-0.0,-1.0164395367051604e-20,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-1.1858461261560205e-20,-2.5528532075142503e-20,-0.0006944444612599909,-0.0,3.3881317890172014e-21,5.082197683525802e-21,0.00019841270113829523,-7.357255846805092e-36,-2.957267488727029e-38,0.0,9.808124476698467e-22,2.097927109821264e-22,0.0,0.001953125,-3.7415009434526733e-34,-0.01171875,7.091714694895788e-18,1.3617579120981813e-17,1.9407440430668516e-35,2.2490274810773888e-35,6.164390524898595e-35,-7.357255846805092e-36,0.005859375,-9.912706020142797e-19,-2.0816682538902298e-18,-7.228014310907402e-19,-6.938894007304805e-19,-3.0357660829594124e-18,0.0013020833721384406,7.609707720931336e-22,-0.0013020833721384406,-0.00037202381645329297,-1.1858461261560205e-20,2.165336833819423e-38,-0.0,-2.174202133855956e-22,-2.957267488727029e-38,-9.912706020142797e-19,0.00037202381645329297,3.5217004894156947e-34,-5.707280664480757e-22,3.3881317890172014e-21,5.135813338091789e-34,0.0023437500931322575,0.0,-0.0023437500931322575,-2.51948314353648e-33,-0.0015625000232830644,0.0,-0.0,-0.0,0.0,-2.0816682538902298e-18,3.5217004894156947e-34,0.0015625000232830644,2.5679066690458946e-34,2.465190273714364e-34,1.0785207504897528e-33,0.0004340277810115367,2.710505431213761e-20,1.4499497996980231e-18,-0.0004340277810115367,-0.0,1.0130643126495494e-21,-6.712336410733405e-22,-1.0164395367051604e-20,9.808124476698467e-22,-7.228014310907402e-19,-5.707280664480757e-22,2.5679066690458946e-34,6.200397183420137e-05,-4.474891108779263e-22,3.7448637297332385e-34,0.0010416667209938169,-6.776263578034403e-21,1.3759203401994008e-18,-0.00029761905898340046,-0.0006944444612599909,8.53415526175135e-22,-0.0,-0.0,2.097927109821264e-22,-6.938894007304805e-19,3.3881317890172014e-21,2.465190273714364e-34,-4.474891108779263e-22,0.00019841270113829523,3.5950692448287563e-34,0.0013020833721384406,0.0,6.071532165918825e-18,-3.6742463657850704e-33,-0.00390625,0.0,-0.0,-0.0,0.0,-3.0357660829594124e-18,5.135813338091789e-34,1.0785207504897528e-33,3.7448637297332385e-34,3.5950692448287563e-34,0.0013020833721384406,8.0,3.0,8.0,5.0,0.04222883656620979,-0.007175926119089127,-0.015104166232049465,-0.007175926119089127,-0.010441468097269535,0.00034722223062999547,0.0010416667209938169,0.00046296295477077365,0.0006944444612599909,0.0015625000232830644,0.0010416667209938169,0.0015625000232830644,0.00034722223062999547,0.0006944444612599909,0.0007440476329065859,-0.007175926119089127,0.0037863757461309433,0.0010416667209938169,0.00046296295477077365,0.0006944444612599909,-0.00034722223062999547,-0.00029761905898340046,-0.00013227513409219682,-0.00019841270113829523,1.925929944387236e-34,-0.0,-0.0,4.0657581468206416e-20,3.3881317890172014e-21,0.0,-0.015104166232049465,0.0010416667209938169,0.03072916716337204,0.0010416667209938169,0.0015625000232830644,-2.710505431213761e-20,-0.0010416667209938169,-5.929230630780102e-21,-1.1858461261560205e-20,-0.00937500037252903,-0.0010416667209938169,-0.0015625000232830644,-5.755003129321707e-19,-4.625929510532498e-19,-1.4869058513226313e-18,-0.007175926119089127,0.00046296295477077365,0.0010416667209938169,0.0037863757461309433,0.0006944444612599909,1.8027417558028698e-20,-0.0,-0.00013227513409219682,-1.6940658945086007e-20,-2.4864368857290187e-18,-0.00029761905898340046,-0.0,-0.00034722223062999547,-0.00019841270113829523,-3.943570947835169e-34,-0.010441468097269535,0.0006944444612599909,0.0015625000232830644,0.0006944444612599909,0.009685019962489605,-1.3552527156068805e-20,-1.1858461261560205e-20,-1.4823076576950256e-20,-0.00034722223062999547,-3.783349173117994e-18,0.0,-0.0007812500116415322,1.3552527156068805e-20,-0.00034722223062999547,-0.0014880952658131719,0.00034722223062999547,-0.00034722223062999547,-2.710505431213761e-20,1.8027417558028698e-20,-1.3552527156068805e-20,4.960317528457381e-05,6.776263578034403e-21,3.3881317890172014e-21,3.3881317890172014e-21,-6.580964658063082e-36,-0.0,0.0,-2.0010361337290455e-21,3.3561682053667026e-22,-0.0,0.0010416667209938169,-0.00029761905898340046,-0.0010416667209938169,-0.0,-1.1858461261560205e-20,6.776263578034403e-21,0.00029761905898340046,1.6940658945086007e-21,3.3881317890172014e-21,6.495531817902856e-36,-0.0,-0.0,-7.831059314145966e-22,-0.0,0.0,0.00046296295477077365,-0.00013227513409219682,-5.929230630780102e-21,-0.00013227513409219682,-1.4823076576950256e-20,3.3881317890172014e-21,1.6940658945086007e-21,3.779289545491338e-05,5.929230630780102e-21,-4.3649859021936993e-35,-0.0,-0.0,-6.776263578034403e-21,-1.6940658945086007e-21,-0.0,0.0006944444612599909,-0.00019841270113829523,-1.1858461261560205e-20,-1.6940658945086007e-20,-0.00034722223062999547,3.3881317890172014e-21,3.3881317890172014e-21,5.929230630780102e-21,9.920635056914762e-05,1.756639773749855e-36,-0.0,-0.0,-5.034252308050054e-22,-0.0,0.0,0.0015625000232830644,1.925929944387236e-34,-0.00937500037252903,-2.4864368857290187e-18,-3.783349173117994e-18,-6.580964658063082e-36,6.495531817902856e-36,-4.3649859021936993e-35,1.756639773749855e-36,0.004687500186264515,-0.0,-0.0,2.8912058794593256e-19,2.312964755266249e-19,7.434529256613157e-19,0.0010416667209938169,-0.0,-0.0010416667209938169,-0.00029761905898340046,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0015625000232830644,-0.0,-0.0007812500116415322,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,0.00034722223062999547,4.0657581468206416e-20,-5.755003129321707e-19,-0.00034722223062999547,1.3552527156068805e-20,-2.0010361337290455e-21,-7.831059314145966e-22,-6.776263578034403e-21,-5.034252308050054e-22,2.8912058794593256e-19,-0.0,-0.0,4.960317528457381e-05,-2.605025807115507e-21,4.5855475003022723e-35,0.0006944444612599909,3.3881317890172014e-21,-4.625929510532498e-19,-0.00019841270113829523,-0.00034722223062999547,3.3561682053667026e-22,-0.0,-1.6940658945086007e-21,-0.0,2.312964755266249e-19,-0.0,-0.0,-2.605025807115507e-21,9.920635056914762e-05,3.668438057639003e-35,0.0007440476329065859,0.0,-1.4869058513226313e-18,-3.943570947835169e-34,-0.0014880952658131719,-0.0,0.0,-0.0,0.0,7.434529256613157e-19,-0.0,-0.0,4.5855475003022723e-35,3.668438057639003e-35,0.00037202381645329297,8.0,3.0,8.0,6.0,0.036389440298080444,-0.006062610074877739,-0.0127728171646595,-0.006062610074877739,-0.0076574902050197124,0.00028935185400769114,0.0008680555620230734,0.00038580247201025486,0.0004960317746736109,0.0013020833721384406,0.0008680555620230734,0.0011160714784637094,0.00028935185400769114,0.0004960317746736109,0.0004650297632906586,-0.006062610074877739,0.003178933635354042,0.0008680555620230734,0.00038580247201025486,0.0004960317746736109,-0.00028935185400769114,-0.00024801588733680546,-0.00011022927355952561,-0.00014172335795592517,1.0602168340795113e-33,1.1392574415707865e-34,-9.440671784674232e-20,2.0328790734103208e-20,-3.899392738590621e-20,-1.47510498251122e-19,-0.0127728171646595,0.0008680555620230734,0.02579365111887455,0.0008680555620230734,0.0011160714784637094,-0.0,-0.0008680555620230734,-3.5743959266998905e-35,-9.440671784674232e-20,-0.0078125,-0.0008680555620230734,-0.0011160714784637094,9.63735310386038e-19,6.608470507765904e-19,1.7037462858197322e-18,-0.006062610074877739,0.00038580247201025486,0.0008680555620230734,0.003178933635354042,0.0004960317746736109,-2.8486926976170284e-21,-0.0,-0.00011022927355952561,-5.293972399328143e-20,5.080261667302122e-18,-0.00024801588733680546,-1.0666200640491272e-33,-0.00028935185400769114,-0.00014172335795592517,-1.47510498251122e-19,-0.0076574902050197124,0.0004960317746736109,0.0011160714784637094,0.0004960317746736109,0.0056206597946584225,-0.0,-0.0,-8.016568399975816e-21,-0.00019841270113829523,6.208864413527635e-18,-1.141231721067191e-33,-0.00044642857392318547,-1.3552527156068805e-20,-0.00019841270113829523,-0.0006975446594879031,0.00028935185400769114,-0.00028935185400769114,-0.0,-2.8486926976170284e-21,-0.0,4.13359775848221e-05,-0.0,1.6940658945086007e-21,3.3881317890172014e-21,0.0,-0.0,-2.644646601490518e-37,-1.1187228024383648e-21,-2.6894944301660323e-37,2.2997261994356657e-36,0.0008680555620230734,-0.00024801588733680546,-0.0008680555620230734,-0.0,-0.0,-0.0,0.00024801588733680546,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00038580247201025486,-0.00011022927355952561,-3.5743959266998905e-35,-0.00011022927355952561,-8.016568399975816e-21,1.6940658945086007e-21,-0.0,3.149408075842075e-05,3.1374809172842537e-21,7.222237291452134e-35,-3.2550213436267974e-35,2.0899821770561717e-36,-3.3881317890172014e-21,-8.470329472543003e-22,2.8475758740198584e-36,0.0004960317746736109,-0.00014172335795592517,-9.440671784674232e-20,-5.293972399328143e-20,-0.00019841270113829523,3.3881317890172014e-21,-0.0,3.1374809172842537e-21,5.668934318237007e-05,-5.251980189779359e-34,0.0,3.7762688431166636e-20,7.52316384526264e-37,1.6783417080518505e-20,5.900420188538822e-20,0.0013020833721384406,1.0602168340795113e-33,-0.0078125,5.080261667302122e-18,6.208864413527635e-18,0.0,-0.0,7.222237291452134e-35,-5.251980189779359e-34,0.00390625,-8.811294355013127e-19,-7.930164505921508e-19,-4.81867655193019e-19,-3.304235253882952e-19,-8.518731429098661e-19,0.0008680555620230734,1.1392574415707865e-34,-0.0008680555620230734,-0.00024801588733680546,-1.141231721067191e-33,-0.0,-0.0,-3.2550213436267974e-35,0.0,-8.811294355013127e-19,0.00024801588733680546,1.7888002631691618e-34,2.3250151839507284e-35,-0.0,1.9247034813360459e-34,0.0011160714784637094,-9.440671784674232e-20,-0.0011160714784637094,-1.0666200640491272e-33,-0.00044642857392318547,-2.644646601490518e-37,-0.0,2.0899821770561717e-36,3.7762688431166636e-20,-7.930164505921508e-19,1.7888002631691618e-34,0.00044642857392318547,9.782501869685242e-35,7.826001151365083e-35,2.122453314390529e-34,0.00028935185400769114,2.0328790734103208e-20,9.63735310386038e-19,-0.00028935185400769114,-1.3552527156068805e-20,-1.1187228024383648e-21,-0.0,-3.3881317890172014e-21,7.52316384526264e-37,-4.81867655193019e-19,2.3250151839507284e-35,9.782501869685242e-35,4.13359775848221e-05,3.915529657072983e-22,1.0505673111562065e-34,0.0004960317746736109,-3.899392738590621e-20,6.608470507765904e-19,-0.00014172335795592517,-0.00019841270113829523,-2.6894944301660323e-37,-0.0,-8.470329472543003e-22,1.6783417080518505e-20,-3.304235253882952e-19,-0.0,7.826001151365083e-35,3.915529657072983e-22,5.668934318237007e-05,5.900420188538822e-20,0.0004650297632906586,-1.47510498251122e-19,1.7037462858197322e-18,-1.47510498251122e-19,-0.0006975446594879031,2.2997261994356657e-36,-0.0,2.8475758740198584e-36,5.900420188538822e-20,-8.518731429098661e-19,1.9247034813360459e-34,2.122453314390529e-34,1.0505673111562065e-34,5.900420188538822e-20,0.00013950893480796367,8.0,3.0,8.0,7.0,0.031983714550733566,-0.005249669309705496,-0.011067708022892475,-0.005249669309705496,-0.005859375,0.00024801588733680546,0.0007440476329065859,0.0003306878206785768,0.00037202381645329297,0.0011160714784637094,0.0007440476329065859,0.0008370535797439516,0.00024801588733680546,0.00037202381645329297,0.0003100198518950492,-0.005249669309705496,0.0027399847749620676,0.0007440476329065859,0.0003306878206785768,0.00037202381645329297,-0.00024801588733680546,-0.00021258502965793014,-9.448223863728344e-05,-0.00010629251482896507,8.546314128218359e-34,7.055699668654503e-22,-1.1130503548422327e-20,1.3552527156068805e-20,-2.6198585529814534e-20,-8.58246349809737e-20,-0.011067708022892475,0.0007440476329065859,0.0222284235060215,0.0007440476329065859,0.0008370535797439516,-0.0,-0.0007440476329065859,-6.712166269213367e-23,-1.022902935372368e-20,-0.0066964286379516125,-0.0007440476329065859,-0.0008370535797439516,8.140241498140069e-19,4.2901670771274496e-19,1.0588268562317918e-18,-0.005249669309705496,0.0003306878206785768,0.0007440476329065859,0.0027399847749620676,0.00037202381645329297,-1.865668157751197e-22,-0.0,-9.448223863728344e-05,-3.373313946942565e-20,4.282019141298649e-18,-0.00021258502965793014,-6.776263578034403e-20,-0.00024801588733680546,-0.00010629251482896507,-8.66074644955271e-20,-0.005859375,0.00037202381645329297,0.0008370535797439516,0.00037202381645329297,0.0035652280785143375,-0.0,-0.0,-1.0427830581723436e-20,-0.00012400794366840273,4.9386516551554935e-18,-6.975039764433584e-21,-0.00027901786961592734,-6.776263578034403e-21,-0.00012400794366840273,-0.00037202381645329297,0.00024801588733680546,-0.00024801588733680546,-0.0,-1.865668157751197e-22,-0.0,3.543083948898129e-05,-0.0,-0.0,1.6940658945086007e-21,-0.0,-1.617650539425783e-39,9.226521834506106e-38,-2.3643193790626477e-22,3.239762140538713e-37,-1.5667852952875292e-21,0.0007440476329065859,-0.00021258502965793014,-0.0007440476329065859,-0.0,-0.0,-0.0,0.00021258502965793014,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003306878206785768,-9.448223863728344e-05,-6.712166269213367e-23,-9.448223863728344e-05,-1.0427830581723436e-20,-0.0,-0.0,2.6994925065082498e-05,2.0781842563918616e-21,2.407412430484045e-35,-2.174202133855956e-22,2.760308115950891e-22,-3.3881317890172014e-21,-0.0,4.427931039506798e-22,0.00037202381645329297,-0.00010629251482896507,-1.022902935372368e-20,-3.373313946942565e-20,-0.00012400794366840273,1.6940658945086007e-21,-0.0,2.0781842563918616e-21,3.543083948898129e-05,-3.1296361596292583e-34,1.8466932446358092e-23,3.3881317890172014e-21,3.202053940785574e-23,8.732861574006989e-21,3.204588812144781e-20,0.0011160714784637094,8.546314128218359e-34,-0.0066964286379516125,4.282019141298649e-18,4.9386516551554935e-18,-0.0,-0.0,2.407412430484045e-35,-3.1296361596292583e-34,0.0033482143189758062,-6.473603878767961e-19,-8.49660486470075e-19,-4.1302940027302046e-19,-2.4781765050356993e-19,-5.369382384495025e-19,0.0007440476329065859,7.055699668654503e-22,-0.0007440476329065859,-0.00021258502965793014,-6.975039764433584e-21,-1.617650539425783e-39,-0.0,-2.174202133855956e-22,1.8466932446358092e-23,-6.473603878767961e-19,0.00021258502965793014,6.210693071562887e-22,2.8174036215949298e-21,1.6940658945086007e-21,5.540079891679609e-23,0.0008370535797439516,-1.1130503548422327e-20,-0.0008370535797439516,-6.776263578034403e-20,-0.00027901786961592734,9.226521834506106e-38,-0.0,2.760308115950891e-22,3.3881317890172014e-21,-8.49660486470075e-19,6.210693071562887e-22,0.00027901786961592734,7.245808835925525e-22,2.0229782707776866e-20,4.951884829202806e-21,0.00024801588733680546,1.3552527156068805e-20,8.140241498140069e-19,-0.00024801588733680546,-6.776263578034403e-21,-2.3643193790626477e-22,-0.0,-3.3881317890172014e-21,3.202053940785574e-23,-4.1302940027302046e-19,2.8174036215949298e-21,7.245808835925525e-22,3.543083948898129e-05,-2.2374455543896316e-22,-4.440787074124748e-22,0.00037202381645329297,-2.6198585529814534e-20,4.2901670771274496e-19,-0.00010629251482896507,-0.00012400794366840273,3.239762140538713e-37,-0.0,-0.0,8.732861574006989e-21,-2.4781765050356993e-19,1.6940658945086007e-21,2.0229782707776866e-20,-2.2374455543896316e-22,3.543083948898129e-05,2.9454864406073356e-20,0.0003100198518950492,-8.58246349809737e-20,1.0588268562317918e-18,-8.66074644955271e-20,-0.00037202381645329297,-1.5667852952875292e-21,-0.0,4.427931039506798e-22,3.204588812144781e-20,-5.369382384495025e-19,5.540079891679609e-23,4.951884829202806e-21,-4.440787074124748e-22,2.9454864406073356e-20,6.200397183420137e-05,8.0,3.0,8.0,8.0,0.0285373255610466,-0.004629629664123058,-0.009765625,-0.004629629664123058,-0.004629629664123058,0.00021701389050576836,0.0006510416860692203,0.00028935185400769114,0.00028935185400769114,0.0009765625,0.0006510416860692203,0.0006510416860692203,0.00021701389050576836,0.00028935185400769114,0.00021701389050576836,-0.004629629664123058,0.002407820662483573,0.0006510416860692203,0.00028935185400769114,0.00028935185400769114,-0.00021701389050576836,-0.00018601190822664648,-8.26719551696442e-05,-8.26719551696442e-05,-7.583349156024741e-34,5.169472508292249e-21,1.1651830898309605e-20,1.3552527156068805e-20,1.0479094777068983e-20,2.749828822052708e-20,-0.009765625,0.0006510416860692203,0.01953125,0.0006510416860692203,0.0006510416860692203,-0.0,-0.0006510416860692203,5.2787003349308125e-21,1.1542602667774258e-20,-0.005859375,-0.0006510416860692203,-0.0006510416860692203,7.302114184155668e-19,4.035240869084146e-19,7.4020748252796385e-19,-0.004629629664123058,0.00028935185400769114,0.0006510416860692203,0.002407820662483573,0.00028935185400769114,4.9637024578122214e-23,-0.0,-8.26719551696442e-05,-1.0737805510090333e-22,3.700054980566048e-18,-0.00018601190822664648,1.3552527156068805e-20,-0.00021701389050576836,-8.26719551696442e-05,2.5364734157985664e-20,-0.004629629664123058,0.00028935185400769114,0.0006510416860692203,0.00028935185400769114,0.002407820662483573,-0.0,-0.0,-4.3852640901200645e-21,-8.26719551696442e-05,3.700054980566048e-18,7.222972006916973e-22,-0.00018601190822664648,6.776263578034403e-21,-8.26719551696442e-05,-0.00021701389050576836,0.00021701389050576836,-0.00021701389050576836,-0.0,4.9637024578122214e-23,-0.0,3.100198591710068e-05,-0.0,-1.6940658945086007e-21,-1.6940658945086007e-21,-0.0,7.931052232804028e-38,7.09732448808162e-38,1.2511261255384222e-21,-7.072680132249232e-38,3.244997635199633e-22,0.0006510416860692203,-0.00018601190822664648,-0.0006510416860692203,-0.0,-0.0,-0.0,0.00018601190822664648,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00028935185400769114,-8.26719551696442e-05,5.2787003349308125e-21,-8.26719551696442e-05,-4.3852640901200645e-21,-1.6940658945086007e-21,-0.0,2.362055965932086e-05,1.7244385287289987e-21,9.62964972193618e-35,-1.5672374577366274e-21,5.903735933744357e-23,-6.776263578034403e-21,-8.470329472543003e-22,1.65795312968858e-22,0.00028935185400769114,-8.26719551696442e-05,1.1542602667774258e-20,-1.0737805510090333e-22,-8.26719551696442e-05,-1.6940658945086007e-21,-0.0,1.7244385287289987e-21,2.362055965932086e-05,1.2037062152420224e-34,9.024530890404924e-23,-3.3881317890172014e-21,1.9759517958253084e-22,-2.146994333856658e-21,-8.724427401374503e-21,0.0009765625,-7.583349156024741e-34,-0.005859375,3.700054980566048e-18,3.700054980566048e-18,-0.0,-0.0,9.62964972193618e-35,1.2037062152420224e-34,0.0029296875,-4.956353010071399e-19,-4.956353010071399e-19,-3.614007155453701e-19,-1.9274705432238935e-19,-3.614007155453701e-19,0.0006510416860692203,5.169472508292249e-21,-0.0006510416860692203,-0.00018601190822664648,7.222972006916973e-22,7.931052232804028e-38,-0.0,-1.5672374577366274e-21,9.024530890404924e-23,-4.956353010071399e-19,0.00018601190822664648,1.328340537760826e-22,-2.272101160589077e-21,-8.470329472543003e-22,2.3689392009591116e-22,0.0006510416860692203,1.1651830898309605e-20,-0.0006510416860692203,1.3552527156068805e-20,-0.00018601190822664648,7.09732448808162e-38,-0.0,5.903735933744357e-23,-3.3881317890172014e-21,-4.956353010071399e-19,1.328340537760826e-22,0.00018601190822664648,1.5497306273876302e-22,-4.304388605990966e-21,-5.210051614231014e-21,0.00021701389050576836,1.3552527156068805e-20,7.302114184155668e-19,-0.00021701389050576836,6.776263578034403e-21,1.2511261255384222e-21,-0.0,-6.776263578034403e-21,1.9759517958253084e-22,-3.614007155453701e-19,-2.272101160589077e-21,1.5497306273876302e-22,3.100198591710068e-05,-2.884706558212196e-21,-2.6404507357132727e-22,0.00028935185400769114,1.0479094777068983e-20,4.035240869084146e-19,-8.26719551696442e-05,-8.26719551696442e-05,-7.072680132249232e-38,-0.0,-8.470329472543003e-22,-2.146994333856658e-21,-1.9274705432238935e-19,-8.470329472543003e-22,-4.304388605990966e-21,-2.884706558212196e-21,2.362055965932086e-05,-6.909346760395241e-21,0.00021701389050576836,2.749828822052708e-20,7.4020748252796385e-19,2.5364734157985664e-20,-0.00021701389050576836,3.244997635199633e-22,-0.0,1.65795312968858e-22,-8.724427401374503e-21,-3.614007155453701e-19,2.3689392009591116e-22,-5.210051614231014e-21,-2.6404507357132727e-22,-6.909346760395241e-21,3.100198591710068e-05,8.0,4.0,3.0,3.0,0.10873842239379883,-0.02152777835726738,-0.03680555522441864,-0.04496527835726738,-0.04496527835726738,0.0011574074160307646,0.0027777778450399637,0.0034722222480922937,0.0034722222480922937,0.0034722222480922937,0.0062500000931322575,0.0062500000931322575,0.0052083334885537624,0.0078125,0.0052083334885537624,-0.02152777835726738,0.011937830597162247,0.0027777778450399637,0.0034722222480922937,0.0034722222480922937,-0.0011574074160307646,-0.0007936508045531809,-0.0009920635493472219,-0.0009920635493472219,1.1275702593849246e-17,3.0357660829594124e-18,8.673617379884035e-19,1.734723475976807e-18,0.0,0.0,-0.03680555522441864,0.0027777778450399637,0.048842594027519226,0.0062500000931322575,0.0062500000931322575,-0.0,-0.0018518518190830946,4.2505631169644826e-18,3.504021447197106e-18,-0.010416666977107525,-0.004166666883975267,-0.004166666883975267,1.3010426069826053e-17,3.903127820947816e-18,4.336808689942018e-18,-0.04496527835726738,0.0034722222480922937,0.0062500000931322575,0.09704861044883728,0.0078125,3.2526065174565133e-19,4.933119884809045e-18,-0.0034722222480922937,2.9535248913272465e-18,1.5178830414797062e-17,-0.0062500000931322575,-4.497505067542694e-19,-0.03125,-0.0078125,-4.683753385137379e-17,-0.04496527835726738,0.0034722222480922937,0.0062500000931322575,0.0078125,0.09704861044883728,4.336808689942018e-19,4.228388472693467e-18,3.3610267347050637e-18,-0.0034722222480922937,1.496198998029996e-17,-7.589415207398531e-19,-0.0062500000931322575,-3.111660235033398e-17,-0.0078125,-0.03125,0.0011574074160307646,-0.0011574074160307646,-0.0,3.2526065174565133e-19,4.336808689942018e-19,0.0001653439103392884,-0.0,-2.710505431213761e-20,1.0842021724855044e-19,-3.2526065174565133e-19,-5.421010862427522e-20,2.439454888092385e-19,5.421010862427522e-19,-1.8973538018496328e-19,1.0842021724855044e-19,0.0027777778450399637,-0.0007936508045531809,-0.0018518518190830946,4.933119884809045e-18,4.228388472693467e-18,-0.0,0.0005291005363687873,-2.2520423538520928e-20,-1.3196303117742551e-20,-4.0899349817643415e-18,-1.212578742397356e-18,-1.1929980331297305e-18,-1.3119426761069463e-18,-3.7637413219865187e-19,-9.888619554681019e-19,0.0034722222480922937,-0.0009920635493472219,4.2505631169644826e-18,-0.0034722222480922937,3.3610267347050637e-18,-2.710505431213761e-20,-2.2520423538520928e-20,0.0009920635493472219,-4.881800578555187e-20,-9.6753527472253e-19,-5.557101718732043e-19,-5.703956262757411e-19,-8.317587987495673e-19,3.012220852112185e-19,-1.2723235165002236e-18,0.0034722222480922937,-0.0009920635493472219,3.504021447197106e-18,2.9535248913272465e-18,-0.0034722222480922937,1.0842021724855044e-19,-1.3196303117742551e-20,-4.881800578555187e-20,0.0009920635493472219,-9.323025505065995e-19,-4.041783609235499e-19,-1.8389600204822175e-19,-1.586611617420359e-18,1.0413427396242584e-18,1.056776482288426e-18,0.0034722222480922937,1.1275702593849246e-17,-0.010416666977107525,1.5178830414797062e-17,1.496198998029996e-17,-3.2526065174565133e-19,-4.0899349817643415e-18,-9.6753527472253e-19,-9.323025505065995e-19,0.0034722222480922937,-1.634298579734041e-18,-1.634298579734041e-18,-4.188872400470584e-18,-1.0791379659803017e-18,-3.996125255675315e-18,0.0062500000931322575,3.0357660829594124e-18,-0.004166666883975267,-0.0062500000931322575,-7.589415207398531e-19,-5.421010862427522e-20,-1.212578742397356e-18,-5.557101718732043e-19,-4.041783609235499e-19,-1.634298579734041e-18,0.004166666883975267,-1.165616286902694e-18,4.136449829150036e-18,1.0423072839172835e-19,1.9391336606139205e-18,0.0062500000931322575,8.673617379884035e-19,-0.004166666883975267,-4.497505067542694e-19,-0.0062500000931322575,2.439454888092385e-19,-1.1929980331297305e-18,-5.703956262757411e-19,-1.8389600204822175e-19,-1.634298579734041e-18,-1.165616286902694e-18,0.004166666883975267,1.6260730957228138e-18,7.332981979676733e-19,8.564967206425195e-18,0.0052083334885537624,1.734723475976807e-18,1.3010426069826053e-17,-0.03125,-3.111660235033398e-17,5.421010862427522e-19,-1.3119426761069463e-18,-8.317587987495673e-19,-1.586611617420359e-18,-4.188872400470584e-18,4.136449829150036e-18,1.6260730957228138e-18,0.015625,1.8129886171995838e-18,1.6291115369078742e-17,0.0078125,0.0,3.903127820947816e-18,-0.0078125,-0.0078125,-1.8973538018496328e-19,-3.7637413219865187e-19,3.012220852112185e-19,1.0413427396242584e-18,-1.0791379659803017e-18,1.0423072839172835e-19,7.332981979676733e-19,1.8129886171995838e-18,0.0078125,1.4126395286556044e-17,0.0052083334885537624,0.0,4.336808689942018e-18,-4.683753385137379e-17,-0.03125,1.0842021724855044e-19,-9.888619554681019e-19,-1.2723235165002236e-18,1.056776482288426e-18,-3.996125255675315e-18,1.9391336606139205e-18,8.564967206425195e-18,1.6291115369078742e-17,1.4126395286556044e-17,0.015625,8.0,4.0,3.0,4.0,0.08803819119930267,-0.01666666753590107,-0.028541667386889458,-0.03489583358168602,-0.028541667386889458,0.0008680555620230734,0.0020833334419876337,0.0026041667442768812,0.0020833334419876337,0.0026041667442768812,0.004687500186264515,0.0037499999161809683,0.00390625,0.004687500186264515,0.0026041667442768812,-0.01666666753590107,0.00910218246281147,0.0020833334419876337,0.0026041667442768812,0.0020833334419876337,-0.0008680555620230734,-0.0005952381179668009,-0.0007440476329065859,-0.0005952381179668009,-7.806255641895632e-18,-8.673617379884035e-19,-1.734723475976807e-18,-1.9081958235744878e-17,-3.0357660829594124e-18,-5.204170427930421e-18,-0.028541667386889458,0.0020833334419876337,0.03725694492459297,0.004687500186264515,0.0037499999161809683,1.951563910473908e-18,-0.0013888889225199819,-5.214970925188526e-18,-6.2127960029790995e-18,-0.0078125,-0.0031250000465661287,-0.0024999999441206455,-2.3418766925686896e-17,-1.0842021724855044e-19,-4.336808689942018e-19,-0.03489583358168602,0.0026041667442768812,0.004687500186264515,0.07395832985639572,0.004687500186264515,-2.0599841277224584e-18,-9.161508357502512e-18,-0.0026041667442768812,-8.215704254845093e-18,-7.697835424647081e-18,-0.004687500186264515,-1.0987754405174637e-17,-0.0234375,-0.004687500186264515,-9.540979117872439e-18,-0.028541667386889458,0.0020833334419876337,0.0037499999161809683,0.004687500186264515,0.03725694492459297,-0.0,-5.6107462426124854e-18,-4.824699667560495e-18,-0.0013888889225199819,-3.7947076036992655e-18,1.6263032587282567e-18,-0.0024999999441206455,-2.7592945289756088e-17,-0.0031250000465661287,-0.0078125,0.0008680555620230734,-0.0008680555620230734,1.951563910473908e-18,-2.0599841277224584e-18,-0.0,0.00012400794366840273,-1.3552527156068805e-19,-5.421010862427522e-20,-9.486769009248164e-20,2.710505431213761e-19,-2.981555974335137e-19,-1.8973538018496328e-19,1.0842021724855044e-18,1.3552527156068805e-19,0.0,0.0020833334419876337,-0.0005952381179668009,-0.0013888889225199819,-9.161508357502512e-18,-5.6107462426124854e-18,-1.3552527156068805e-19,0.00039682540227659047,2.5844123450816504e-19,2.559843529925177e-19,1.932062507147511e-18,7.219805060315696e-19,5.893327890268004e-19,3.2539874954891706e-18,4.400190887391011e-19,1.1115108166259067e-18,0.0026041667442768812,-0.0007440476329065859,-5.214970925188526e-18,-0.0026041667442768812,-4.824699667560495e-18,-5.421010862427522e-20,2.5844123450816504e-19,0.0007440476329065859,1.2043270212510744e-19,7.910642526477374e-19,9.034985706138545e-19,5.553843144106467e-19,4.405620294136656e-19,8.374139224048626e-19,8.392510388465546e-19,0.0020833334419876337,-0.0005952381179668009,-6.2127960029790995e-18,-8.215704254845093e-18,-0.0013888889225199819,-9.486769009248164e-20,2.559843529925177e-19,1.2043270212510744e-19,0.00039682540227659047,1.2011525864034314e-18,4.284525705349838e-19,8.244461085442922e-19,3.0057096482216856e-18,7.8090430337647825e-19,1.7022948940374313e-18,0.0026041667442768812,-7.806255641895632e-18,-0.0078125,-7.697835424647081e-18,-3.7947076036992655e-18,2.710505431213761e-19,1.932062507147511e-18,7.910642526477374e-19,1.2011525864034314e-18,0.0026041667442768812,5.601599382796451e-19,4.943872405591622e-19,2.4906439263244634e-18,-5.384982493859892e-19,-2.188544383429085e-19,0.004687500186264515,-8.673617379884035e-19,-0.0031250000465661287,-0.004687500186264515,1.6263032587282567e-18,-2.981555974335137e-19,7.219805060315696e-19,9.034985706138545e-19,4.284525705349838e-19,5.601599382796451e-19,0.0031250000465661287,-1.2981245205766714e-19,-4.2274822963324155e-18,-9.486735922023662e-19,-6.1377701010350805e-19,0.0037499999161809683,-1.734723475976807e-18,-0.0024999999441206455,-1.0987754405174637e-17,-0.0024999999441206455,-1.8973538018496328e-19,5.893327890268004e-19,5.553843144106467e-19,8.244461085442922e-19,4.943872405591622e-19,-1.2981245205766714e-19,0.0016666667070239782,4.119968255444917e-18,8.141635297472221e-19,-1.4263282097404994e-18,0.00390625,-1.9081958235744878e-17,-2.3418766925686896e-17,-0.0234375,-2.7592945289756088e-17,1.0842021724855044e-18,3.2539874954891706e-18,4.405620294136656e-19,3.0057096482216856e-18,2.4906439263244634e-18,-4.2274822963324155e-18,4.119968255444917e-18,0.01171875,-1.934377785682047e-18,3.2561309272514486e-18,0.004687500186264515,-3.0357660829594124e-18,-1.0842021724855044e-19,-0.004687500186264515,-0.0031250000465661287,1.3552527156068805e-19,4.400190887391011e-19,8.374139224048626e-19,7.8090430337647825e-19,-5.384982493859892e-19,-9.486735922023662e-19,8.141635297472221e-19,-1.934377785682047e-18,0.0031250000465661287,1.120946465873299e-18,0.0026041667442768812,-5.204170427930421e-18,-4.336808689942018e-19,-9.540979117872439e-18,-0.0078125,0.0,1.1115108166259067e-18,8.392510388465546e-19,1.7022948940374313e-18,-2.188544383429085e-19,-6.1377701010350805e-19,-1.4263282097404994e-18,3.2561309272514486e-18,1.120946465873299e-18,0.0026041667442768812,8.0,4.0,3.0,5.0,0.07408729940652847,-0.013611110858619213,-0.023333333432674408,-0.028541667386889458,-0.019771825522184372,0.0006944444612599909,0.0016666667070239782,0.0020833334419876337,0.0013888889225199819,0.0020833334419876337,0.0037499999161809683,0.0024999999441206455,0.0031250000465661287,0.0031250000465661287,0.0014880952658131719,-0.013611110858619213,0.007361111231148243,0.0016666667070239782,0.0020833334419876337,0.0013888889225199819,-0.0006944444612599909,-0.0004761904710903764,-0.0005952381179668009,-0.00039682540227659047,-8.673617379884035e-19,0.0,0.0,3.469446951953614e-18,-2.168404344971009e-19,1.3010426069826053e-18,-0.023333333432674408,0.0016666667070239782,0.030138889327645302,0.0037499999161809683,0.0024999999441206455,-7.589415207398531e-19,-0.0011111111380159855,5.107240059582962e-19,2.2088147028336385e-19,-0.0062500000931322575,-0.0024999999441206455,-0.0016666667070239782,2.1250362580715887e-17,2.4936649967166602e-18,1.6263032587282567e-18,-0.028541667386889458,0.0020833334419876337,0.0037499999161809683,0.05979166552424431,0.0031250000465661287,-7.589415207398531e-19,3.144186300207963e-18,-0.0020833334419876337,1.0927379526240157e-18,1.8756697583999227e-17,-0.0037499999161809683,9.052350295147565e-19,-0.01875000074505806,-0.0031250000465661287,1.5178830414797062e-18,-0.019771825522184372,0.0013888889225199819,0.0024999999441206455,0.0031250000465661287,0.018814483657479286,-3.2526065174565133e-19,8.944667923005412e-19,1.3010426069826053e-18,-0.0006944444612599909,5.177065373618284e-18,3.7947076036992655e-19,-0.0012499999720603228,1.1384122811097797e-18,-0.0015625000232830644,-0.0029761905316263437,0.0006944444612599909,-0.0006944444612599909,-7.589415207398531e-19,-7.589415207398531e-19,-3.2526065174565133e-19,9.920635056914762e-05,9.486769009248164e-20,1.3552527156068805e-20,1.3552527156068805e-20,-5.421010862427522e-20,2.710505431213761e-20,4.0657581468206416e-20,-5.421010862427522e-19,5.421010862427522e-20,-2.710505431213761e-20,0.0016666667070239782,-0.0004761904710903764,-0.0011111111380159855,3.144186300207963e-18,8.944667923005412e-19,9.486769009248164e-20,0.0003174603043589741,-3.428102222503272e-22,3.2890736794897085e-20,6.243359706227474e-19,-2.7613361968430275e-19,-1.2393732420882683e-19,-1.2094866378700563e-18,-1.6490778674373143e-19,-1.6328377270734841e-19,0.0020833334419876337,-0.0005952381179668009,5.107240059582962e-19,-0.0020833334419876337,1.3010426069826053e-18,1.3552527156068805e-20,-3.428102222503272e-22,0.0005952381179668009,-8.855930539518394e-21,-2.360837574723814e-19,3.416317968389946e-19,-8.240300883949663e-20,2.452822126791242e-18,-3.876701494177672e-21,-2.7562552399304205e-19,0.0013888889225199819,-0.00039682540227659047,2.2088147028336385e-19,1.0927379526240157e-18,-0.0006944444612599909,1.3552527156068805e-20,3.2890736794897085e-20,-8.855930539518394e-21,0.00019841270113829523,-1.0175392991789438e-19,-2.4553782118192588e-20,-3.5166614390411636e-20,-5.370235931489603e-19,1.0378043840811834e-20,-2.111445721966373e-19,0.0020833334419876337,-8.673617379884035e-19,-0.0062500000931322575,1.8756697583999227e-17,5.177065373618284e-18,-5.421010862427522e-20,6.243359706227474e-19,-2.360837574723814e-19,-1.0175392991789438e-19,0.0020833334419876337,-2.8674575757717165e-18,-1.8622949923574915e-18,-6.098001118339909e-18,-7.087935927062492e-19,-3.375207608933943e-19,0.0037499999161809683,0.0,-0.0024999999441206455,-0.0037499999161809683,3.7947076036992655e-19,2.710505431213761e-20,-2.7613361968430275e-19,3.416317968389946e-19,-2.4553782118192588e-20,-2.8674575757717165e-18,0.0024999999441206455,-2.9605947006251606e-19,1.5196177426218065e-18,8.326672757066978e-20,5.0245183594754004e-34,0.0024999999441206455,0.0,-0.0016666667070239782,9.052350295147565e-19,-0.0012499999720603228,4.0657581468206416e-20,-1.2393732420882683e-19,-8.240300883949663e-20,-3.5166614390411636e-20,-1.8622949923574915e-18,-2.9605947006251606e-19,0.0008333333535119891,-9.714451765323092e-20,-1.8503716878907254e-20,-1.762258793454443e-19,0.0031250000465661287,3.469446951953614e-18,2.1250362580715887e-17,-0.01875000074505806,1.1384122811097797e-18,-5.421010862427522e-19,-1.2094866378700563e-18,2.452822126791242e-18,-5.370235931489603e-19,-6.098001118339909e-18,1.5196177426218065e-18,-9.714451765323092e-20,0.00937500037252903,1.4011187431996037e-18,-1.0929586547512025e-19,0.0031250000465661287,-2.168404344971009e-19,2.4936649967166602e-18,-0.0031250000465661287,-0.0015625000232830644,5.421010862427522e-20,-1.6490778674373143e-19,-3.876701494177672e-21,1.0378043840811834e-20,-7.087935927062492e-19,8.326672757066978e-20,-1.8503716878907254e-20,1.4011187431996037e-18,0.0015625000232830644,-3.1827115651533724e-19,0.0014880952658131719,1.3010426069826053e-18,1.6263032587282567e-18,1.5178830414797062e-18,-0.0029761905316263437,-2.710505431213761e-20,-1.6328377270734841e-19,-2.7562552399304205e-19,-2.111445721966373e-19,-3.375207608933943e-19,5.0245183594754004e-34,-1.762258793454443e-19,-1.0929586547512025e-19,-3.1827115651533724e-19,0.0007440476329065859,8.0,4.0,3.0,6.0,0.06400462985038757,-0.011507936753332615,-0.01974206417798996,-0.02415674552321434,-0.014521329663693905,0.0005787037080153823,0.0013888889225199819,0.0017361111240461469,0.0009920635493472219,0.0017361111240461469,0.0031250000465661287,0.0017857142956927419,0.0026041667442768812,0.0022321429569274187,0.0009300595265813172,-0.011507936753332615,0.006181500386446714,0.0013888889225199819,0.0017361111240461469,0.0009920635493472219,-0.0005787037080153823,-0.00039682540227659047,-0.0004960317746736109,-0.00028344671591185033,-0.0,-0.0,-1.5105075372466654e-19,2.1368650588026027e-33,-1.8881343569348464e-19,-2.95020996502244e-19,-0.01974206417798996,0.0013888889225199819,0.025314154103398323,0.0031250000465661287,0.0017857142956927419,-2.710505431213761e-20,-0.0009259259095415473,-1.4230153513872246e-19,-2.6171138966231686e-19,-0.0052083334885537624,-0.0020833334419876337,-0.0011904762359336019,4.487416623485466e-33,-3.965082252960754e-19,-6.195441133342278e-19,-0.02415674552321434,0.0017361111240461469,0.0031250000465661287,0.05019841343164444,0.0022321429569274187,9.211626280851866e-21,-1.4230153513872246e-19,-0.0017361111240461469,-1.8878593193811725e-19,-0.0,-0.0031250000465661287,-3.965082252960754e-19,-0.015625,-0.0022321429569274187,3.4074925716394644e-18,-0.014521329663693905,0.0009920635493472219,0.0017857142956927419,0.0022321429569274187,0.010923858731985092,-5.421010862427522e-20,-1.1066062301295325e-19,2.7513830698869653e-23,-0.00039682540227659047,-0.0,-0.0,-0.0007142857066355646,1.0104763916692656e-17,-0.0008928571478463709,-0.0013950893189758062,0.0005787037080153823,-0.0005787037080153823,-2.710505431213761e-20,9.211626280851866e-21,-5.421010862427522e-20,8.26719551696442e-05,-0.0,-0.0,1.3552527156068805e-20,-0.0,0.0,-1.024996510049633e-36,-0.0,5.489601666228907e-36,1.0617983475081443e-35,0.0013888889225199819,-0.00039682540227659047,-0.0009259259095415473,-1.4230153513872246e-19,-1.1066062301295325e-19,-0.0,0.00026455026818439364,4.0657581468206416e-20,3.161732132244011e-20,-0.0,-0.0,1.2037062152420224e-35,-0.0,1.8055593228630336e-35,3.3101920919155616e-35,0.0017361111240461469,-0.0004960317746736109,-1.4230153513872246e-19,-0.0017361111240461469,2.7513830698869653e-23,-0.0,4.0657581468206416e-20,0.0004960317746736109,-7.861094372696914e-24,-0.0,-0.0,-0.0,-0.0,3.009265538105056e-36,6.018531076210112e-36,0.0009920635493472219,-0.00028344671591185033,-2.6171138966231686e-19,-1.8878593193811725e-19,-0.00039682540227659047,1.3552527156068805e-20,3.161732132244011e-20,-7.861094372696914e-24,0.00011337868636474013,-0.0,-0.0,6.042030278233632e-20,-8.54746023521041e-34,7.552537686233327e-20,1.1800840377077644e-19,0.0017361111240461469,-0.0,-0.0052083334885537624,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,0.0031250000465661287,-0.0,-0.0020833334419876337,-0.0031250000465661287,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-1.5105075372466654e-19,-0.0011904762359336019,-3.965082252960754e-19,-0.0007142857066355646,-1.024996510049633e-36,1.2037062152420224e-35,-0.0,6.042030278233632e-20,-0.0,-0.0,0.0004761904710903764,-1.7949666493941863e-33,1.5860328753349075e-19,2.4781765050356993e-19,0.0026041667442768812,2.1368650588026027e-33,4.487416623485466e-33,-0.015625,1.0104763916692656e-17,-0.0,-0.0,-0.0,-8.54746023521041e-34,-0.0,-0.0,-1.7949666493941863e-33,0.0078125,-1.5860329011843016e-18,-1.7037462858197322e-18,0.0022321429569274187,-1.8881343569348464e-19,-3.965082252960754e-19,-0.0022321429569274187,-0.0008928571478463709,5.489601666228907e-36,1.8055593228630336e-35,3.009265538105056e-36,7.552537686233327e-20,-0.0,-0.0,1.5860328753349075e-19,-1.5860329011843016e-18,0.0008928571478463709,5.070305241972371e-34,0.0009300595265813172,-2.95020996502244e-19,-6.195441133342278e-19,3.4074925716394644e-18,-0.0013950893189758062,1.0617983475081443e-35,3.3101920919155616e-35,6.018531076210112e-36,1.1800840377077644e-19,-0.0,-0.0,2.4781765050356993e-19,-1.7037462858197322e-18,5.070305241972371e-34,0.00027901786961592734,8.0,4.0,3.0,7.0,0.0563616082072258,-0.00997023843228817,-0.01711309514939785,-0.02094493992626667,-0.01112351194024086,0.0004960317746736109,0.0011904762359336019,0.0014880952658131719,0.0007440476329065859,0.0014880952658131719,0.0026785715017467737,0.0013392857508733869,0.0022321429569274187,0.0016741071594879031,0.0006200397037900984,-0.00997023843228817,0.005328798200935125,0.0011904762359336019,0.0014880952658131719,0.0007440476329065859,-0.0004960317746736109,-0.0003401360590942204,-0.00042517005931586027,-0.00021258502965793014,-5.664403070804539e-19,-2.2657611766230274e-19,-1.2197274440461925e-19,1.3528611118335123e-33,1.9086481111314847e-34,-1.7514034696313623e-19,-0.01711309514939785,0.0011904762359336019,0.02182539738714695,0.0026785715017467737,0.0013392857508733869,-2.710505431213761e-20,-0.0007936508045531809,-1.2968706957138e-19,-6.917690783265657e-20,-0.004464285913854837,-0.0017857142956927419,-0.0008928571478463709,-3.501973019500071e-35,3.4355666000366724e-34,-3.6558917688877503e-20,-0.02094493992626667,0.0014880952658131719,0.0026785715017467737,0.04326637089252472,0.0016741071594879031,-3.154504641641829e-20,-3.57019191539465e-19,-0.0014880952658131719,-1.5508689751308808e-20,-1.4869058513226313e-18,-0.0026785715017467737,8.819997054383138e-22,-0.013392857275903225,-0.0016741071594879031,2.155900269241351e-18,-0.01112351194024086,0.0007440476329065859,0.0013392857508733869,0.0016741071594879031,0.006932043470442295,-1.3552527156068805e-20,-1.7618285302889447e-19,-0.0,-0.00024801588733680546,-7.434529256613157e-19,-6.285776961804674e-34,-0.00044642857392318547,8.14257983433418e-18,-0.0005580357392318547,-0.0007440476329065859,0.0004960317746736109,-0.0004960317746736109,-2.710505431213761e-20,-3.154504641641829e-20,-1.3552527156068805e-20,7.086167897796258e-05,6.776263578034403e-21,6.776263578034403e-21,-0.0,7.518103565931372e-36,1.0036077898183724e-35,8.782547744619507e-22,-1.465886512265695e-35,-0.0,2.191712372084064e-21,0.0011904762359336019,-0.0003401360590942204,-0.0007936508045531809,-3.57019191539465e-19,-1.7618285302889447e-19,6.776263578034403e-21,0.00022675737272948027,3.7269449679189215e-20,1.9491301060048812e-20,3.776268713869693e-19,1.5105075372466654e-19,7.641183013565455e-20,-1.0629325876321769e-35,-0.0,-1.0237616199340319e-21,0.0014880952658131719,-0.00042517005931586027,-1.2968706957138e-19,-0.0014880952658131719,-0.0,6.776263578034403e-21,3.7269449679189215e-20,0.00042517005931586027,4.4310542723592e-21,5.416677968589101e-35,2.7083389842945504e-35,-2.5199991223329694e-22,-7.245558772208494e-36,0.0,-2.3277985270300254e-21,0.0007440476329065859,-0.00021258502965793014,-6.917690783265657e-20,-1.5508689751308808e-20,-0.00024801588733680546,-0.0,1.9491301060048812e-20,4.4310542723592e-21,7.086167897796258e-05,4.083476816102099e-35,1.4557900604209004e-35,3.1911740973985105e-22,-4.062276591814027e-34,-6.362160561762233e-35,5.413646693153813e-20,0.0014880952658131719,-5.664403070804539e-19,-0.004464285913854837,-1.4869058513226313e-18,-7.434529256613157e-19,7.518103565931372e-36,3.776268713869693e-19,5.416677968589101e-35,4.083476816102099e-35,0.0014880952658131719,9.912706020142797e-19,4.956353010071399e-19,0.0,-0.0,2.0861715420642254e-36,0.0026785715017467737,-2.2657611766230274e-19,-0.0017857142956927419,-0.0026785715017467737,-6.285776961804674e-34,1.0036077898183724e-35,1.5105075372466654e-19,2.7083389842945504e-35,1.4557900604209004e-35,9.912706020142797e-19,0.0017857142956927419,3.8100846103384227e-34,-0.0,-0.0,9.403613113960759e-37,0.0013392857508733869,-1.2197274440461925e-19,-0.0008928571478463709,8.819997054383138e-22,-0.00044642857392318547,8.782547744619507e-22,7.641183013565455e-20,-2.5199991223329694e-22,3.1911740973985105e-22,4.956353010071399e-19,3.8100846103384227e-34,0.00029761905898340046,2.407412430484045e-35,-1.1451888666788908e-34,1.3380694924095119e-20,0.0022321429569274187,1.3528611118335123e-33,-3.501973019500071e-35,-0.013392857275903225,8.14257983433418e-18,-1.465886512265695e-35,-1.0629325876321769e-35,-7.245558772208494e-36,-4.062276591814027e-34,0.0,-0.0,2.407412430484045e-35,0.0066964286379516125,-1.69932097294015e-18,-1.073876476899005e-18,0.0016741071594879031,1.9086481111314847e-34,3.4355666000366724e-34,-0.0016741071594879031,-0.0005580357392318547,-0.0,-0.0,0.0,-6.362160561762233e-35,-0.0,-0.0,-1.1451888666788908e-34,-1.69932097294015e-18,0.0005580357392318547,8.164772539170446e-35,0.0006200397037900984,-1.7514034696313623e-19,-3.6558917688877503e-20,2.155900269241351e-18,-0.0007440476329065859,2.191712372084064e-21,-1.0237616199340319e-21,-2.3277985270300254e-21,5.413646693153813e-20,2.0861715420642254e-36,9.403613113960759e-37,1.3380694924095119e-20,-1.073876476899005e-18,8.164772539170446e-35,0.00012400794366840273,8.0,4.0,3.0,8.0,0.05036168918013573,-0.008796296082437038,-0.015104166232049465,-0.01848958246409893,-0.008796296082437038,0.0004340277810115367,0.0010416667209938169,0.0013020833721384406,0.0005787037080153823,0.0013020833721384406,0.0023437500931322575,0.0010416667209938169,0.001953125,0.0013020833721384406,0.0004340277810115367,-0.008796296082437038,0.004683366511017084,0.0010416667209938169,0.0013020833721384406,0.0005787037080153823,-0.0004340277810115367,-0.00029761905898340046,-0.00037202381645329297,-0.0001653439103392884,-0.0,-0.0,4.743384504624082e-20,-6.084187945833306e-34,1.2791556535436966e-20,5.667591464325019e-20,-0.015104166232049465,0.0010416667209938169,0.01918402686715126,0.0023437500931322575,0.0010416667209938169,-0.0,-0.0006944444612599909,-8.14313947371736e-20,1.4990053969586595e-20,-0.00390625,-0.0015625000232830644,-0.0006944444612599909,-2.1193290708112343e-33,1.2173848103903055e-20,1.4314594437247132e-19,-0.01848958246409893,0.0013020833721384406,0.0023437500931322575,0.03802083432674408,0.0013020833721384406,8.318355229825558e-21,-8.269384037299145e-20,-0.0013020833721384406,1.744540713980528e-20,-0.0,-0.0023437500931322575,1.34362937397209e-20,-0.01171875,-0.0013020833721384406,1.4616104613956066e-18,-0.008796296082437038,0.0005787037080153823,0.0010416667209938169,0.0013020833721384406,0.004683366511017084,-0.0,-3.3881317890172014e-20,6.776263578034403e-21,-0.0001653439103392884,-0.0,-0.0,-0.00029761905898340046,6.050880774745826e-18,-0.00037202381645329297,-0.0004340277810115367,0.0004340277810115367,-0.0004340277810115367,-0.0,8.318355229825558e-21,-0.0,6.200397183420137e-05,-0.0,-6.776263578034403e-21,-3.3881317890172014e-21,-0.0,0.0,9.271600106436228e-22,-1.1437077179681214e-35,5.35898393356728e-23,-1.1513746262079018e-21,0.0010416667209938169,-0.00029761905898340046,-0.0006944444612599909,-8.269384037299145e-20,-3.3881317890172014e-20,-0.0,0.00019841270113829523,2.371692252312041e-20,1.0998592474527127e-20,-0.0,-0.0,-3.452229249299531e-22,-8.367571143420585e-36,-9.011064088119716e-23,-5.290692939199893e-22,0.0013020833721384406,-0.00037202381645329297,-8.14313947371736e-20,-0.0013020833721384406,6.776263578034403e-21,-6.776263578034403e-21,2.371692252312041e-20,0.00037202381645329297,-1.323735256148567e-21,-0.0,-0.0,-4.508091929251736e-22,1.0746890378165086e-35,-2.4980733330066394e-22,-1.607582025861939e-22,0.0005787037080153823,-0.0001653439103392884,1.4990053969586595e-20,1.744540713980528e-20,-0.0001653439103392884,-3.3881317890172014e-21,1.0998592474527127e-20,-1.323735256148567e-21,4.724111931864172e-05,-0.0,-0.0,-1.528146549886248e-20,1.9909092976375245e-34,-3.660667202117467e-21,-1.3429714261118122e-20,0.0013020833721384406,-0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,0.0023437500931322575,-0.0,-0.0015625000232830644,-0.0023437500931322575,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,4.743384504624082e-20,-0.0006944444612599909,1.34362937397209e-20,-0.00029761905898340046,9.271600106436228e-22,-3.452229249299531e-22,-4.508091929251736e-22,-1.528146549886248e-20,-0.0,-0.0,0.00019841270113829523,6.138901697734314e-34,-3.3881317890172014e-21,-4.036977108265198e-20,0.001953125,-6.084187945833306e-34,-2.1193290708112343e-33,-0.01171875,6.050880774745826e-18,-1.1437077179681214e-35,-8.367571143420585e-36,1.0746890378165086e-35,1.9909092976375245e-34,-0.0,-0.0,6.138901697734314e-34,0.005859375,-9.912706020142797e-19,-7.228014310907402e-19,0.0013020833721384406,1.2791556535436966e-20,1.2173848103903055e-20,-0.0013020833721384406,-0.00037202381645329297,5.35898393356728e-23,-9.011064088119716e-23,-2.4980733330066394e-22,-3.660667202117467e-21,-0.0,-0.0,-3.3881317890172014e-21,-9.912706020142797e-19,0.00037202381645329297,-4.412834892353509e-21,0.0004340277810115367,5.667591464325019e-20,1.4314594437247132e-19,1.4616104613956066e-18,-0.0004340277810115367,-1.1513746262079018e-21,-5.290692939199893e-22,-1.607582025861939e-22,-1.3429714261118122e-20,-0.0,-0.0,-4.036977108265198e-20,-7.228014310907402e-19,-4.412834892353509e-21,6.200397183420137e-05,8.0,4.0,4.0,3.0,0.08803819119930267,-0.01666666753590107,-0.028541667386889458,-0.028541667386889458,-0.03489583358168602,0.0008680555620230734,0.0020833334419876337,0.0020833334419876337,0.0026041667442768812,0.0026041667442768812,0.0037499999161809683,0.004687500186264515,0.0026041667442768812,0.004687500186264515,0.00390625,-0.01666666753590107,0.00910218246281147,0.0020833334419876337,0.0020833334419876337,0.0026041667442768812,-0.0008680555620230734,-0.0005952381179668009,-0.0005952381179668009,-0.0007440476329065859,-6.071532165918825e-18,-3.0357660829594124e-18,-8.673617379884035e-19,-6.071532165918825e-18,-2.6020852139652106e-18,-1.214306433183765e-17,-0.028541667386889458,0.0020833334419876337,0.03725694492459297,0.0037499999161809683,0.004687500186264515,1.5720931501039814e-18,-0.0013888889225199819,-6.5580301713857625e-18,-5.341259898029447e-18,-0.0078125,-0.0024999999441206455,-0.0031250000465661287,-3.903127820947816e-18,-1.0842021724855044e-19,-1.5612511283791264e-17,-0.028541667386889458,0.0020833334419876337,0.0037499999161809683,0.03725694492459297,0.004687500186264515,-0.0,-6.451002926288751e-18,-0.0013888889225199819,-5.5033273274954304e-18,-4.9873299934333204e-18,-0.0024999999441206455,2.356319617615626e-19,-0.0078125,-0.0031250000465661287,-1.1709383462843448e-17,-0.03489583358168602,0.0026041667442768812,0.004687500186264515,0.004687500186264515,0.07395832985639572,-1.5178830414797062e-18,-8.998878031629687e-18,-7.914675859144182e-18,-0.0026041667442768812,-8.348356728138384e-18,-1.22514845490862e-17,-0.004687500186264515,-6.667843360785852e-18,-0.004687500186264515,-0.0234375,0.0008680555620230734,-0.0008680555620230734,1.5720931501039814e-18,-0.0,-1.5178830414797062e-18,0.00012400794366840273,-1.3552527156068805e-19,-8.131516293641283e-20,-0.0,0.0,1.3552527156068805e-20,-2.439454888092385e-19,-5.421010862427522e-20,8.131516293641283e-20,5.421010862427522e-19,0.0020833334419876337,-0.0005952381179668009,-0.0013888889225199819,-6.451002926288751e-18,-8.998878031629687e-18,-1.3552527156068805e-19,0.00039682540227659047,2.7948114207512242e-19,2.5844123450816504e-19,1.932062507147511e-18,6.38676025420755e-19,6.29461905481162e-19,1.333628870226249e-18,4.642501557117115e-19,3.2705087738636922e-18,0.0020833334419876337,-0.0005952381179668009,-6.5580301713857625e-18,-0.0013888889225199819,-7.914675859144182e-18,-8.131516293641283e-20,2.7948114207512242e-19,0.00039682540227659047,2.9034530639099975e-19,1.2632590645527144e-18,8.457387197883846e-19,3.948578190282731e-19,1.6928096139532858e-18,5.8209780210031705e-19,2.740910315784526e-18,0.0026041667442768812,-0.0007440476329065859,-5.341259898029447e-18,-5.5033273274954304e-18,-0.0026041667442768812,-0.0,2.5844123450816504e-19,2.9034530639099975e-19,0.0007440476329065859,8.768243740032805e-19,5.907658794380485e-19,6.448373319121445e-19,8.90591968118613e-19,7.026614443314522e-19,-2.8589419581606362e-18,0.0026041667442768812,-6.071532165918825e-18,-0.0078125,-4.9873299934333204e-18,-8.348356728138384e-18,0.0,1.932062507147511e-18,1.2632590645527144e-18,8.768243740032805e-19,0.0026041667442768812,5.560662731269084e-19,5.601599382796451e-19,2.2079384406839578e-20,-4.806741369666815e-19,2.599064143573014e-18,0.0037499999161809683,-3.0357660829594124e-18,-0.0024999999441206455,-0.0024999999441206455,-1.22514845490862e-17,1.3552527156068805e-20,6.38676025420755e-19,8.457387197883846e-19,5.907658794380485e-19,5.560662731269084e-19,0.0016666667070239782,7.470804228400904e-19,-6.3349927065345675e-19,1.126406581699185e-18,3.701701069985028e-18,0.004687500186264515,-8.673617379884035e-19,-0.0031250000465661287,2.356319617615626e-19,-0.004687500186264515,-2.439454888092385e-19,6.29461905481162e-19,3.948578190282731e-19,6.448373319121445e-19,5.601599382796451e-19,7.470804228400904e-19,0.0031250000465661287,-2.4454408322939132e-19,-1.8626525411772676e-18,-1.1479888819335511e-17,0.0026041667442768812,-6.071532165918825e-18,-3.903127820947816e-18,-0.0078125,-6.667843360785852e-18,-5.421010862427522e-20,1.333628870226249e-18,1.6928096139532858e-18,8.90591968118613e-19,2.2079384406839578e-20,-6.3349927065345675e-19,-2.4454408322939132e-19,0.0026041667442768812,2.909107877372563e-19,1.7844020824103637e-18,0.004687500186264515,-2.6020852139652106e-18,-1.0842021724855044e-19,-0.0031250000465661287,-0.004687500186264515,8.131516293641283e-20,4.642501557117115e-19,5.8209780210031705e-19,7.026614443314522e-19,-4.806741369666815e-19,1.126406581699185e-18,-1.8626525411772676e-18,2.909107877372563e-19,0.0031250000465661287,-1.1383216221146438e-17,0.00390625,-1.214306433183765e-17,-1.5612511283791264e-17,-1.1709383462843448e-17,-0.0234375,5.421010862427522e-19,3.2705087738636922e-18,2.740910315784526e-18,-2.8589419581606362e-18,2.599064143573014e-18,3.701701069985028e-18,-1.1479888819335511e-17,1.7844020824103637e-18,-1.1383216221146438e-17,0.01171875,8.0,4.0,4.0,4.0,0.0710677057504654,-0.012890624813735485,-0.022109374403953552,-0.022109374403953552,-0.022109374403953552,0.0006510416860692203,0.0015625000232830644,0.0015625000232830644,0.0015625000232830644,0.001953125,0.002812500111758709,0.002812500111758709,0.001953125,0.002812500111758709,0.001953125,-0.012890624813735485,0.006938244216144085,0.0015625000232830644,0.0015625000232830644,0.0015625000232830644,-0.0006510416860692203,-0.00044642857392318547,-0.00044642857392318547,-0.00044642857392318547,4.336808689942018e-19,-2.8189256484623115e-18,-2.6020852139652106e-18,4.336808689942018e-19,-2.8189256484623115e-18,0.0,-0.022109374403953552,0.0015625000232830644,0.028411459177732468,0.002812500111758709,0.002812500111758709,-1.3010426069826053e-18,-0.0010416667209938169,-2.5131786009570924e-18,-2.4894654007467285e-18,-0.005859375,-0.0018749999580904841,-0.0018749999580904841,-6.938893903907228e-18,-8.998878031629687e-18,-8.456776945386935e-18,-0.022109374403953552,0.0015625000232830644,0.002812500111758709,0.028411459177732468,0.002812500111758709,-5.963111948670274e-19,-2.9002408113987244e-18,-0.0010416667209938169,-3.0092510152191783e-18,-5.4752209710517974e-18,-0.0018749999580904841,-1.2403401231665239e-17,-0.005859375,-0.0018749999580904841,-1.1058862159352145e-17,-0.022109374403953552,0.0015625000232830644,0.002812500111758709,0.002812500111758709,0.028411459177732468,-1.1926223897340549e-18,-2.6020852139652106e-18,-3.198396408832238e-18,-0.0010416667209938169,-4.228388472693467e-18,-1.1600963245594897e-17,-0.0018749999580904841,-1.0245710529988017e-17,-0.0018749999580904841,-0.005859375,0.0006510416860692203,-0.0006510416860692203,-1.3010426069826053e-18,-5.963111948670274e-19,-1.1926223897340549e-18,9.300595411332324e-05,8.131516293641283e-20,8.131516293641283e-20,6.776263578034403e-20,1.6263032587282567e-19,1.7618285302889447e-19,1.8973538018496328e-19,0.0,1.0842021724855044e-19,2.710505431213761e-20,0.0015625000232830644,-0.00044642857392318547,-0.0010416667209938169,-2.9002408113987244e-18,-2.6020852139652106e-18,8.131516293641283e-20,0.00029761905898340046,1.811926594841248e-19,1.7426949379917982e-19,-1.3959771953071272e-18,2.870624074855358e-19,2.0247397454297697e-19,3.3874630651907405e-19,3.5711219765958893e-19,2.995085288735266e-19,0.0015625000232830644,-0.00044642857392318547,-2.5131786009570924e-18,-0.0010416667209938169,-3.198396408832238e-18,8.131516293641283e-20,1.811926594841248e-19,0.00029761905898340046,1.7530076830318324e-19,2.6529675232863967e-19,2.1037229569724249e-19,3.7954913573296595e-19,-1.2050878981676524e-18,4.495989259070191e-19,3.5822834864925852e-19,0.0015625000232830644,-0.00044642857392318547,-2.4894654007467285e-18,-3.0092510152191783e-18,-0.0010416667209938169,6.776263578034403e-20,1.7426949379917982e-19,1.7530076830318324e-19,0.00029761905898340046,2.1573321447310745e-19,3.7954913573296595e-19,2.949607157151042e-19,2.983391022825298e-19,4.495989259070191e-19,-9.304234029500321e-19,0.001953125,4.336808689942018e-19,-0.005859375,-5.4752209710517974e-18,-4.228388472693467e-18,1.6263032587282567e-19,-1.3959771953071272e-18,2.6529675232863967e-19,2.1573321447310745e-19,0.001953125,-1.9253340132498515e-18,-2.0294175293419395e-18,1.701740166039138e-18,1.0236958752312053e-18,1.4306896229177619e-18,0.002812500111758709,-2.8189256484623115e-18,-0.0018749999580904841,-0.0018749999580904841,-1.1600963245594897e-17,1.7618285302889447e-19,2.870624074855358e-19,2.1037229569724249e-19,3.7954913573296595e-19,-1.9253340132498515e-18,0.0012499999720603228,1.2883268764137105e-18,-1.925699833875753e-18,1.0274244952398646e-18,1.968754377963985e-18,0.002812500111758709,-2.6020852139652106e-18,-0.0018749999580904841,-1.2403401231665239e-17,-0.0018749999580904841,1.8973538018496328e-19,2.0247397454297697e-19,3.7954913573296595e-19,2.949607157151042e-19,-2.0294175293419395e-18,1.2883268764137105e-18,0.0012499999720603228,1.960080768855907e-18,1.6935583158052228e-18,-4.945529351756142e-19,0.001953125,4.336808689942018e-19,-6.938893903907228e-18,-0.005859375,-1.0245710529988017e-17,0.0,3.3874630651907405e-19,-1.2050878981676524e-18,2.983391022825298e-19,1.701740166039138e-18,-1.925699833875753e-18,1.960080768855907e-18,0.001953125,-5.722497516187787e-19,2.1083160841187787e-18,0.002812500111758709,-2.8189256484623115e-18,-8.998878031629687e-18,-0.0018749999580904841,-0.0018749999580904841,1.0842021724855044e-19,3.5711219765958893e-19,4.495989259070191e-19,4.495989259070191e-19,1.0236958752312053e-18,1.0274244952398646e-18,1.6935583158052228e-18,-5.722497516187787e-19,0.0012499999720603228,-3.750033129778925e-19,0.001953125,0.0,-8.456776945386935e-18,-1.1058862159352145e-17,-0.005859375,2.710505431213761e-20,2.995085288735266e-19,3.5822834864925852e-19,-9.304234029500321e-19,1.4306896229177619e-18,1.968754377963985e-18,-4.945529351756142e-19,2.1083160841187787e-18,-3.750033129778925e-19,0.001953125,8.0,4.0,4.0,5.0,0.05969047546386719,-0.010520833544433117,-0.018062500283122063,-0.018062500283122063,-0.015297618694603443,0.0005208333604969084,0.0012499999720603228,0.0012499999720603228,0.0010416667209938169,0.0015625000232830644,0.0022499999031424522,0.0018749999580904841,0.0015625000232830644,0.0018749999580904841,0.0011160714784637094,-0.010520833544433117,0.0056101190857589245,0.0012499999720603228,0.0012499999720603228,0.0010416667209938169,-0.0005208333604969084,-0.0003571428533177823,-0.0003571428533177823,-0.00029761905898340046,-6.5052130349130266e-18,-4.119968255444917e-18,-1.3010426069826053e-18,-6.5052130349130266e-18,-1.5178830414797062e-18,6.505213034913027e-19,-0.018062500283122063,0.0012499999720603228,0.022979166358709335,0.0022499999031424522,0.0018749999580904841,-1.5178830414797062e-18,-0.0008333333535119891,-6.475907680171498e-18,-3.109065245374727e-18,-0.004687500186264515,-0.001500000013038516,-0.0012499999720603228,-1.0950441942103595e-17,-2.2768245622195593e-18,2.4936649967166602e-18,-0.018062500283122063,0.0012499999720603228,0.0022499999031424522,0.022979166358709335,0.0018749999580904841,-1.734723475976807e-18,-6.478107980600889e-18,-0.0008333333535119891,-2.8727124474081127e-18,-1.1438332919722072e-17,-0.001500000013038516,-1.36371622083937e-18,-0.004687500186264515,-0.0012499999720603228,4.7704895589362195e-18,-0.015297618694603443,0.0010416667209938169,0.0018749999580904841,0.0018749999580904841,0.014345237985253334,2.168404344971009e-19,-1.3552527156068805e-18,-1.0299920638612292e-18,-0.0005208333604969084,-1.3010426069826053e-18,-1.3552527156068805e-18,-0.0009374999790452421,3.2526065174565133e-19,-0.0009374999790452421,-0.0022321429569274187,0.0005208333604969084,-0.0005208333604969084,-1.5178830414797062e-18,-1.734723475976807e-18,2.168404344971009e-19,7.440476474585012e-05,8.809142651444724e-20,7.453889935837843e-20,1.3552527156068805e-20,3.7947076036992655e-19,2.168404344971009e-19,3.3881317890172014e-20,2.710505431213761e-19,6.098637220230962e-20,-1.0842021724855044e-19,0.0012499999720603228,-0.0003571428533177823,-0.0008333333535119891,-6.478107980600889e-18,-1.3552527156068805e-18,8.809142651444724e-20,0.0002380952355451882,4.074354104348716e-19,1.7404503058514531e-19,5.641130861258243e-19,4.0481815927796555e-19,1.593603258150387e-19,1.1905961074260297e-18,2.947018081833751e-19,1.1622081476826106e-20,0.0012499999720603228,-0.0003571428533177823,-6.475907680171498e-18,-0.0008333333535119891,-1.0299920638612292e-18,7.453889935837843e-20,4.074354104348716e-19,0.0002380952355451882,1.5433394989816315e-19,1.1115603440650833e-18,5.94256168032716e-19,2.6647230522604824e-19,8.075707451688096e-19,2.1571924287557354e-19,-5.0496423103081584e-20,0.0010416667209938169,-0.00029761905898340046,-3.109065245374727e-18,-2.8727124474081127e-18,-0.0005208333604969084,1.3552527156068805e-20,1.7404503058514531e-19,1.5433394989816315e-19,0.00014880952949170023,5.08363439285223e-19,3.4875206415427447e-19,1.5405166158943236e-19,4.885380396526466e-19,9.061034011368752e-20,1.3772068645458622e-19,0.0015625000232830644,-6.5052130349130266e-18,-0.004687500186264515,-1.1438332919722072e-17,-1.3010426069826053e-18,3.7947076036992655e-19,5.641130861258243e-19,1.1115603440650833e-18,5.08363439285223e-19,0.0015625000232830644,1.3977642156229714e-18,6.004401702921624e-19,1.460247060950966e-18,2.673732341600892e-19,-4.438721994299496e-19,0.0022499999031424522,-4.119968255444917e-18,-0.001500000013038516,-0.001500000013038516,-1.3552527156068805e-18,2.168404344971009e-19,4.0481815927796555e-19,5.94256168032716e-19,3.4875206415427447e-19,1.3977642156229714e-18,0.0010000000474974513,1.5480057023652255e-19,1.048635163904526e-18,4.0349053439481794e-19,-1.8078663012563492e-19,0.0018749999580904841,-1.3010426069826053e-18,-0.0012499999720603228,-1.36371622083937e-18,-0.0009374999790452421,3.3881317890172014e-20,1.593603258150387e-19,2.6647230522604824e-19,1.5405166158943236e-19,6.004401702921624e-19,1.5480057023652255e-19,0.0006249999860301614,8.778316602695199e-20,-1.00051456507941e-19,-3.288496074777599e-19,0.0015625000232830644,-6.5052130349130266e-18,-1.0950441942103595e-17,-0.004687500186264515,3.2526065174565133e-19,2.710505431213761e-19,1.1905961074260297e-18,8.075707451688096e-19,4.885380396526466e-19,1.460247060950966e-18,1.048635163904526e-18,8.778316602695199e-20,0.0015625000232830644,3.9678977689707314e-19,-6.848711674996977e-19,0.0018749999580904841,-1.5178830414797062e-18,-2.2768245622195593e-18,-0.0012499999720603228,-0.0009374999790452421,6.098637220230962e-20,2.947018081833751e-19,2.1571924287557354e-19,9.061034011368752e-20,2.673732341600892e-19,4.0349053439481794e-19,-1.00051456507941e-19,3.9678977689707314e-19,0.0006249999860301614,-1.1020406325879402e-18,0.0011160714784637094,6.505213034913027e-19,2.4936649967166602e-18,4.7704895589362195e-18,-0.0022321429569274187,-1.0842021724855044e-19,1.1622081476826106e-20,-5.0496423103081584e-20,1.3772068645458622e-19,-4.438721994299496e-19,-1.8078663012563492e-19,-3.288496074777599e-19,-6.848711674996977e-19,-1.1020406325879402e-18,0.0005580357392318547,8.0,4.0,4.0,6.0,0.05149677395820618,-0.008891369216144085,-0.015275297686457634,-0.015275297686457634,-0.011225818656384945,0.0004340277810115367,0.0010416667209938169,0.0010416667209938169,0.0007440476329065859,0.0013020833721384406,0.0018749999580904841,0.0013392857508733869,0.0013020833721384406,0.0013392857508733869,0.0006975446594879031,-0.008891369216144085,0.0047105299308896065,0.0010416667209938169,0.0010416667209938169,0.0007440476329065859,-0.0004340277810115367,-0.00029761905898340046,-0.00029761905898340046,-0.00021258502965793014,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.015275297686457634,0.0010416667209938169,0.019298115745186806,0.0018749999580904841,0.0013392857508733869,-0.0,-0.0006944444612599909,-9.486769009248164e-20,-6.322678442906096e-20,-0.00390625,-0.0012499999720603228,-0.0008928571478463709,0.0,0.0,-0.0,-0.015275297686457634,0.0010416667209938169,0.0018749999580904841,0.019298115745186806,0.0013392857508733869,1.6481785347033616e-20,-9.486769009248164e-20,-0.0006944444612599909,-7.508524569062117e-20,-0.0,-0.0012499999720603228,-0.0,-0.00390625,-0.0008928571478463709,-0.0,-0.011225818656384945,0.0007440476329065859,0.0013392857508733869,0.0013392857508733869,0.008326822891831398,-0.0,-6.322678442906096e-20,-7.508524569062117e-20,-0.00029761905898340046,-0.0,-0.0,-0.0005357142654247582,-0.0,-0.0005357142654247582,-0.0010463169310241938,0.0004340277810115367,-0.0004340277810115367,-0.0,1.6481785347033616e-20,-0.0,6.200397183420137e-05,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-0.0006944444612599909,-9.486769009248164e-20,-6.322678442906096e-20,-0.0,0.00019841270113829523,2.710505431213761e-20,1.8064795781958437e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-9.486769009248164e-20,-0.0006944444612599909,-7.508524569062117e-20,-0.0,2.710505431213761e-20,0.00019841270113829523,2.145292757097564e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-0.00021258502965793014,-6.322678442906096e-20,-7.508524569062117e-20,-0.00029761905898340046,-0.0,1.8064795781958437e-20,2.145292757097564e-20,8.50340147735551e-05,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0013020833721384406,-0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,0.0018749999580904841,-0.0,-0.0012499999720603228,-0.0012499999720603228,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0,-0.0008928571478463709,-0.0,-0.0005357142654247582,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,0.0013392857508733869,-0.0,0.0,-0.0008928571478463709,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0006975446594879031,-0.0,-0.0,-0.0,-0.0010463169310241938,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002092633949359879,8.0,4.0,4.0,7.0,0.04530134052038193,-0.007700892630964518,-0.013236607424914837,-0.013236607424914837,-0.008593750186264515,0.00037202381645329297,0.0008928571478463709,0.0008928571478463709,0.0005580357392318547,0.0011160714784637094,0.0016071428544819355,0.0010044643422588706,0.0011160714784637094,0.0010044643422588706,0.0004650297632906586,-0.007700892630964518,0.004060374107211828,0.0008928571478463709,0.0008928571478463709,0.0005580357392318547,-0.00037202381645329297,-0.00025510202976875007,-0.00025510202976875007,-0.0001594387722434476,-0.0,-0.0,6.776263578034403e-21,-0.0,6.62895343439831e-22,-1.1013694013702475e-19,-0.013236607424914837,0.0008928571478463709,0.016636904329061508,0.0016071428544819355,0.0010044643422588706,-0.0,-0.0005952381179668009,7.245128290040212e-20,5.500871919395249e-20,-0.0033482143189758062,-0.0010714285308495164,-0.0006696428754366934,0.0,-5.874814828833114e-21,1.5366243029816711e-21,-0.013236607424914837,0.0008928571478463709,0.0016071428544819355,0.016636904329061508,0.0010044643422588706,1.484235699380613e-20,7.482755308041676e-20,-0.0005952381179668009,6.194293549489331e-20,-0.0,-0.0010714285308495164,-8.647128019366276e-21,-0.0033482143189758062,-0.0006696428754366934,-1.5541684887344297e-20,-0.008593750186264515,0.0005580357392318547,0.0010044643422588706,0.0010044643422588706,0.005282738246023655,-0.0,6.098637220230962e-20,6.776263578034403e-20,-0.00018601190822664648,-0.0,-0.0,-0.0003348214377183467,-0.0,-0.0003348214377183467,-0.0005580357392318547,0.00037202381645329297,-0.00037202381645329297,-0.0,1.484235699380613e-20,-0.0,5.3146257414482534e-05,6.776263578034403e-21,-0.0,-3.3881317890172014e-21,-0.0,0.0,-5.588500174042074e-22,-0.0,-3.8564006825854506e-22,4.424206874504904e-24,0.0008928571478463709,-0.00025510202976875007,-0.0005952381179668009,7.482755308041676e-20,6.098637220230962e-20,6.776263578034403e-21,0.0001700680295471102,-2.0328790734103208e-20,-1.5542725325458524e-20,-0.0,-0.0,-8.570214156837874e-22,-0.0,-1.2255943962163417e-21,-5.327557103498468e-22,0.0008928571478463709,-0.00025510202976875007,7.245128290040212e-20,-0.0005952381179668009,6.776263578034403e-20,-0.0,-2.0328790734103208e-20,0.0001700680295471102,-1.904958499735836e-20,-0.0,-0.0,-4.335049420566372e-22,-0.0,-4.235164736271502e-22,3.0222523456465316e-23,0.0005580357392318547,-0.0001594387722434476,5.500871919395249e-20,6.194293549489331e-20,-0.00018601190822664648,-3.3881317890172014e-21,-1.5542725325458524e-20,-1.904958499735836e-20,5.3146257414482534e-05,-0.0,-0.0,-2.0306039531212753e-22,-0.0,1.5768724155063796e-21,3.695241655355693e-20,0.0011160714784637094,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.0016071428544819355,-0.0,-0.0010714285308495164,-0.0010714285308495164,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0010044643422588706,6.776263578034403e-21,-0.0006696428754366934,-8.647128019366276e-21,-0.0003348214377183467,-5.588500174042074e-22,-8.570214156837874e-22,-4.335049420566372e-22,-2.0306039531212753e-22,-0.0,-0.0,0.00022321428696159273,-0.0,3.3881317890172014e-21,1.093402109185649e-22,0.0011160714784637094,-0.0,0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,0.0010044643422588706,6.62895343439831e-22,-5.874814828833114e-21,-0.0006696428754366934,-0.0003348214377183467,-3.8564006825854506e-22,-1.2255943962163417e-21,-4.235164736271502e-22,1.5768724155063796e-21,-0.0,-0.0,3.3881317890172014e-21,-0.0,0.00022321428696159273,5.145301709182081e-21,0.0004650297632906586,-1.1013694013702475e-19,1.5366243029816711e-21,-1.5541684887344297e-20,-0.0005580357392318547,4.424206874504904e-24,-5.327557103498468e-22,3.0222523456465316e-23,3.695241655355693e-20,-0.0,-0.0,1.093402109185649e-22,-0.0,5.145301709182081e-21,9.300595411332324e-05,8.0,4.0,4.0,8.0,0.04044704884290695,-0.0067925346083939075,-0.011679687537252903,-0.011679687537252903,-0.0067925346083939075,0.00032552084303461015,0.0007812500116415322,0.0007812500116415322,0.0004340277810115367,0.0009765625,0.0014062500558793545,0.0007812500116415322,0.0009765625,0.0007812500116415322,0.00032552084303461015,-0.0067925346083939075,0.0035683284513652325,0.0007812500116415322,0.0007812500116415322,0.0004340277810115367,-0.00032552084303461015,-0.00022321428696159273,-0.00022321428696159273,-0.00012400794366840273,-0.0,-0.0,5.421010862427522e-20,-0.0,4.964428490048418e-20,3.363518319032347e-20,-0.011679687537252903,0.0007812500116415322,0.014622395858168602,0.0014062500558793545,0.0007812500116415322,4.0657581468206416e-20,-0.0005208333604969084,-3.3862602928813e-20,1.4656973216953353e-20,-0.0029296875,-0.0009374999790452421,-0.0005208333604969084,0.0,7.247770098121553e-20,1.3432914254554223e-19,-0.011679687537252903,0.0007812500116415322,0.0014062500558793545,0.014622395858168602,0.0007812500116415322,4.27094029776442e-20,-3.424845037282631e-20,-0.0005208333604969084,1.0239271368358992e-20,-0.0,-0.0009374999790452421,7.286354842522884e-20,-0.0029296875,-0.0005208333604969084,1.2212250286958256e-19,-0.0067925346083939075,0.0004340277810115367,0.0007812500116415322,0.0007812500116415322,0.0035683284513652325,2.0328790734103208e-20,-2.710505431213761e-20,-2.710505431213761e-20,-0.00012400794366840273,-0.0,-0.0,-0.00022321428696159273,-0.0,-0.00022321428696159273,-0.00032552084303461015,0.00032552084303461015,-0.00032552084303461015,4.0657581468206416e-20,4.27094029776442e-20,2.0328790734103208e-20,4.650297705666162e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-1.0164395367051604e-20,-0.0,0.0,-5.959901946671879e-22,-0.0,-5.959901946671879e-22,1.2506138834427824e-21,0.0007812500116415322,-0.00022321428696159273,-0.0005208333604969084,-3.424845037282631e-20,-2.710505431213761e-20,-3.3881317890172014e-21,0.00014880952949170023,1.0164395367051604e-20,9.639401442163957e-21,-0.0,-0.0,-3.7912390047657673e-22,-0.0,-3.7912390047657673e-22,-7.2581781749193905e-22,0.0007812500116415322,-0.00022321428696159273,-3.3862602928813e-20,-0.0005208333604969084,-2.710505431213761e-20,-3.3881317890172014e-21,1.0164395367051604e-20,0.00014880952949170023,9.597080329398072e-21,-0.0,-0.0,-4.893656847465006e-22,-0.0,-4.893656847465006e-22,-6.625737406259905e-22,0.0004340277810115367,-0.00012400794366840273,1.4656973216953353e-20,1.0239271368358992e-20,-0.00012400794366840273,-1.0164395367051604e-20,9.639401442163957e-21,9.597080329398072e-21,3.543083948898129e-05,-0.0,-0.0,-1.3827107498583796e-20,-0.0,-1.2522586319244418e-20,-1.1720436805950356e-20,0.0009765625,-0.0,-0.0029296875,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0,-0.0,0.0014062500558793545,-0.0,-0.0009374999790452421,-0.0009374999790452421,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,5.421010862427522e-20,-0.0005208333604969084,7.286354842522884e-20,-0.00022321428696159273,-5.959901946671879e-22,-3.7912390047657673e-22,-4.893656847465006e-22,-1.3827107498583796e-20,-0.0,-0.0,0.00014880952949170023,-0.0,-2.0328790734103208e-20,-3.7653936798835787e-20,0.0009765625,-0.0,0.0,-0.0029296875,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,0.0007812500116415322,4.964428490048418e-20,7.247770098121553e-20,-0.0005208333604969084,-0.00022321428696159273,-5.959901946671879e-22,-3.7912390047657673e-22,-4.893656847465006e-22,-1.2522586319244418e-20,-0.0,-0.0,-2.0328790734103208e-20,-0.0,0.00014880952949170023,-3.4229567390405374e-20,0.00032552084303461015,3.363518319032347e-20,1.3432914254554223e-19,1.2212250286958256e-19,-0.00032552084303461015,1.2506138834427824e-21,-7.2581781749193905e-22,-6.625737406259905e-22,-1.1720436805950356e-20,-0.0,-0.0,-3.7653936798835787e-20,-0.0,-3.4229567390405374e-20,4.650297705666162e-05,8.0,4.0,5.0,3.0,0.07408729940652847,-0.013611110858619213,-0.023333333432674408,-0.019771825522184372,-0.028541667386889458,0.0006944444612599909,0.0016666667070239782,0.0013888889225199819,0.0020833334419876337,0.0020833334419876337,0.0024999999441206455,0.0037499999161809683,0.0014880952658131719,0.0031250000465661287,0.0031250000465661287,-0.013611110858619213,0.007361111231148243,0.0016666667070239782,0.0013888889225199819,0.0020833334419876337,-0.0006944444612599909,-0.0004761904710903764,-0.00039682540227659047,-0.0005952381179668009,-2.6020852139652106e-18,2.168404344971009e-19,0.0,2.168404344971009e-18,0.0,1.734723475976807e-18,-0.023333333432674408,0.0016666667070239782,0.030138889327645302,0.0024999999441206455,0.0037499999161809683,-7.589415207398531e-19,-0.0011111111380159855,5.017441849272088e-19,-2.6242819336188234e-19,-0.0062500000931322575,-0.0016666667070239782,-0.0024999999441206455,6.505213034913027e-19,1.4094628242311558e-18,1.8648277366750676e-17,-0.019771825522184372,0.0013888889225199819,0.0024999999441206455,0.018814483657479286,0.0031250000465661287,1.6263032587282567e-19,9.215718466126788e-19,-0.0006944444612599909,6.77855952122212e-19,5.583641188300348e-18,-0.0012499999720603228,8.21816656473351e-19,-0.0029761905316263437,-0.0015625000232830644,-4.336808689942018e-19,-0.028541667386889458,0.0020833334419876337,0.0037499999161809683,0.0031250000465661287,0.05979166552424431,-0.0,2.2497195079074217e-18,6.505213034913027e-19,-0.0020833334419876337,1.691355389077387e-17,-4.87890977618477e-19,-0.0037499999161809683,-5.421010862427522e-19,-0.0031250000465661287,-0.01875000074505806,0.0006944444612599909,-0.0006944444612599909,-7.589415207398531e-19,1.6263032587282567e-19,-0.0,9.920635056914762e-05,9.486769009248164e-20,1.3552527156068805e-20,6.776263578034403e-20,2.981555974335137e-19,0.0,-1.3552527156068805e-20,-2.710505431213761e-19,-2.710505431213761e-20,-3.2526065174565133e-19,0.0016666667070239782,-0.0004761904710903764,-0.0011111111380159855,9.215718466126788e-19,2.2497195079074217e-18,9.486769009248164e-20,0.0003174603043589741,1.4093309406222418e-20,4.933610519234563e-20,6.055385496964213e-19,-1.6341192107880878e-19,-2.3101980946112003e-19,-1.674796205151295e-19,-1.1732679402133567e-19,-9.411827479726625e-19,0.0013888889225199819,-0.00039682540227659047,5.017441849272088e-19,-0.0006944444612599909,6.505213034913027e-19,1.3552527156068805e-20,1.4093309406222418e-20,0.00019841270113829523,3.4066764674923013e-20,-1.413199431702605e-19,-4.9750332039952895e-20,-5.347839305546391e-20,3.1226591574108176e-20,9.64153708679625e-20,-4.520876538762497e-19,0.0020833334419876337,-0.0005952381179668009,-2.6242819336188234e-19,6.77855952122212e-19,-0.0020833334419876337,6.776263578034403e-20,4.933610519234563e-20,3.4066764674923013e-20,0.0005952381179668009,-1.6377222285906098e-19,-1.6776274569799565e-20,4.717925436333348e-19,-2.2082754844718305e-19,5.83313033817734e-20,1.7335785546114571e-18,0.0020833334419876337,-2.6020852139652106e-18,-0.0062500000931322575,5.583641188300348e-18,1.691355389077387e-17,2.981555974335137e-19,6.055385496964213e-19,-1.413199431702605e-19,-1.6377222285906098e-19,0.0020833334419876337,-1.8610203070335473e-18,-2.717515580109995e-18,-4.395603653906521e-19,-5.992616964132158e-19,-5.583700331714145e-18,0.0024999999441206455,2.168404344971009e-19,-0.0016666667070239782,-0.0012499999720603228,-4.87890977618477e-19,0.0,-1.6341192107880878e-19,-4.9750332039952895e-20,-1.6776274569799565e-20,-1.8610203070335473e-18,0.0008333333535119891,-2.9605947006251606e-19,6.432244331152427e-19,2.9605947006251606e-19,1.9428903530646184e-19,0.0037499999161809683,0.0,-0.0024999999441206455,8.21816656473351e-19,-0.0037499999161809683,-1.3552527156068805e-20,-2.3101980946112003e-19,-5.347839305546391e-20,4.717925436333348e-19,-2.717515580109995e-18,-2.9605947006251606e-19,0.0024999999441206455,-5.636282031905033e-20,-3.509519574557078e-20,1.200027930963089e-18,0.0014880952658131719,2.168404344971009e-18,6.505213034913027e-19,-0.0029761905316263437,-5.421010862427522e-19,-2.710505431213761e-19,-1.674796205151295e-19,3.1226591574108176e-20,-2.2082754844718305e-19,-4.395603653906521e-19,6.432244331152427e-19,-5.636282031905033e-20,0.0007440476329065859,1.321694127402575e-19,5.947623508688102e-19,0.0031250000465661287,0.0,1.4094628242311558e-18,-0.0015625000232830644,-0.0031250000465661287,-2.710505431213761e-20,-1.1732679402133567e-19,9.64153708679625e-20,5.83313033817734e-20,-5.992616964132158e-19,2.9605947006251606e-19,-3.509519574557078e-20,1.321694127402575e-19,0.0015625000232830644,-6.857167011820917e-19,0.0031250000465661287,1.734723475976807e-18,1.8648277366750676e-17,-4.336808689942018e-19,-0.01875000074505806,-3.2526065174565133e-19,-9.411827479726625e-19,-4.520876538762497e-19,1.7335785546114571e-18,-5.583700331714145e-18,1.9428903530646184e-19,1.200027930963089e-18,5.947623508688102e-19,-6.857167011820917e-19,0.00937500037252903,8.0,4.0,5.0,4.0,0.05969047546386719,-0.010520833544433117,-0.018062500283122063,-0.015297618694603443,-0.018062500283122063,0.0005208333604969084,0.0012499999720603228,0.0010416667209938169,0.0012499999720603228,0.0015625000232830644,0.0018749999580904841,0.0022499999031424522,0.0011160714784637094,0.0018749999580904841,0.0015625000232830644,-0.010520833544433117,0.0056101190857589245,0.0012499999720603228,0.0010416667209938169,0.0012499999720603228,-0.0005208333604969084,-0.0003571428533177823,-0.00029761905898340046,-0.0003571428533177823,-6.5052130349130266e-18,-8.673617379884035e-19,-4.336808689942018e-18,4.336808689942018e-19,-1.3010426069826053e-18,-7.37257477290143e-18,-0.018062500283122063,0.0012499999720603228,0.022979166358709335,0.0018749999580904841,0.0022499999031424522,-2.0057740190981832e-18,-0.0008333333535119891,-3.1940789396250176e-18,-6.474353407800511e-18,-0.004687500186264515,-0.0012499999720603228,-0.001500000013038516,2.168404344971009e-18,-2.3310346708438345e-18,-1.1058862159352145e-17,-0.015297618694603443,0.0010416667209938169,0.0018749999580904841,0.014345237985253334,0.0018749999580904841,4.87890977618477e-19,-1.2739375526704677e-18,-0.0005208333604969084,-1.7252204115094916e-18,-8.944667923005412e-19,-0.0009374999790452421,-3.359190186950043e-18,-0.0022321429569274187,-0.0009374999790452421,-8.023096076392733e-18,-0.018062500283122063,0.0012499999720603228,0.0022499999031424522,0.0018749999580904841,0.022979166358709335,-2.0057740190981832e-18,-7.15573433840433e-18,-3.984442983884229e-18,-0.0008333333535119891,-1.089623183347932e-17,-4.1470733097570545e-18,-0.001500000013038516,-2.371692252312041e-18,-0.0012499999720603228,-0.004687500186264515,0.0005208333604969084,-0.0005208333604969084,-2.0057740190981832e-18,4.87890977618477e-19,-2.0057740190981832e-18,7.440476474585012e-05,8.809142651444724e-20,-0.0,7.453889935837843e-20,3.2526065174565133e-19,-4.743384504624082e-20,2.439454888092385e-19,-5.421010862427522e-20,2.710505431213761e-20,3.5236570605778894e-19,0.0012499999720603228,-0.0003571428533177823,-0.0008333333535119891,-1.2739375526704677e-18,-7.15573433840433e-18,8.809142651444724e-20,0.0002380952355451882,1.7238555117999909e-19,4.374668229590687e-19,5.950439024698079e-19,1.8748973991824666e-19,4.859429672759146e-19,-3.7089550820656e-20,3.397489011202766e-19,1.262499402557661e-18,0.0010416667209938169,-0.00029761905898340046,-3.1940789396250176e-18,-0.0005208333604969084,-3.984442983884229e-18,-0.0,1.7238555117999909e-19,0.00014880952949170023,1.42226054907827e-19,4.85233763298227e-19,1.5405166158943236e-19,4.333404841721362e-19,1.9436472233251044e-19,1.5405166158943236e-19,7.7270223891634385e-19,0.0012499999720603228,-0.0003571428533177823,-6.474353407800511e-18,-1.7252204115094916e-18,-0.0008333333535119891,7.453889935837843e-20,4.374668229590687e-19,1.42226054907827e-19,0.0002380952355451882,1.0814272917231187e-18,3.566665799539701e-19,4.3180637432858004e-19,1.1396120290401054e-19,1.1981899873407845e-19,4.800564915430458e-19,0.0015625000232830644,-6.5052130349130266e-18,-0.004687500186264515,-8.944667923005412e-19,-1.089623183347932e-17,3.2526065174565133e-19,5.950439024698079e-19,4.85233763298227e-19,1.0814272917231187e-18,0.0015625000232830644,6.004401702921624e-19,1.3533552666792605e-18,-5.058265797440994e-19,2.118620867545417e-19,1.373510969870187e-18,0.0018749999580904841,-8.673617379884035e-19,-0.0012499999720603228,-0.0009374999790452421,-4.1470733097570545e-18,-4.743384504624082e-20,1.8748973991824666e-19,1.5405166158943236e-19,3.566665799539701e-19,6.004401702921624e-19,0.0006249999860301614,3.6389037409278986e-19,-3.1348198756380835e-19,2.568622468852036e-20,6.644093557833383e-19,0.0022499999031424522,-4.336808689942018e-18,-0.001500000013038516,-3.359190186950043e-18,-0.001500000013038516,2.439454888092385e-19,4.859429672759146e-19,4.333404841721362e-19,4.3180637432858004e-19,1.3533552666792605e-18,3.6389037409278986e-19,0.0010000000474974513,2.1215536105578296e-19,2.0210001135792058e-19,3.6640645072102303e-19,0.0011160714784637094,4.336808689942018e-19,2.168404344971009e-18,-0.0022321429569274187,-2.371692252312041e-18,-5.421010862427522e-20,-3.7089550820656e-20,1.9436472233251044e-19,1.1396120290401054e-19,-5.058265797440994e-19,-3.1348198756380835e-19,2.1215536105578296e-19,0.0005580357392318547,-3.1040260093842657e-19,6.954290940431714e-19,0.0018749999580904841,-1.3010426069826053e-18,-2.3310346708438345e-18,-0.0009374999790452421,-0.0012499999720603228,2.710505431213761e-20,3.397489011202766e-19,1.5405166158943236e-19,1.1981899873407845e-19,2.118620867545417e-19,2.568622468852036e-20,2.0210001135792058e-19,-3.1040260093842657e-19,0.0006249999860301614,6.921649359484606e-19,0.0015625000232830644,-7.37257477290143e-18,-1.1058862159352145e-17,-8.023096076392733e-18,-0.004687500186264515,3.5236570605778894e-19,1.262499402557661e-18,7.7270223891634385e-19,4.800564915430458e-19,1.373510969870187e-18,6.644093557833383e-19,3.6640645072102303e-19,6.954290940431714e-19,6.921649359484606e-19,0.0015625000232830644,8.0,4.0,5.0,5.0,0.05007142946124077,-0.00858333334326744,-0.014750000089406967,-0.012488095089793205,-0.012488095089793205,0.00041666667675599456,0.0010000000474974513,0.0008333333535119891,0.0008333333535119891,0.0012499999720603228,0.001500000013038516,0.001500000013038516,0.0008928571478463709,0.0012499999720603228,0.0008928571478463709,-0.00858333334326744,0.004535714164376259,0.0010000000474974513,0.0008333333535119891,0.0008333333535119891,-0.00041666667675599456,-0.0002857142826542258,-0.0002380952355451882,-0.0002380952355451882,-0.0,0.0,-1.0842021724855044e-19,0.0,2.168404344971009e-19,-2.168404344971009e-19,-0.014750000089406967,0.0010000000474974513,0.018583333119750023,0.001500000013038516,0.001500000013038516,-6.776263578034403e-19,-0.0006666666595265269,5.425520547729585e-19,4.920397019807367e-19,-0.0037499999161809683,-0.0010000000474974513,-0.0010000000474974513,-2.3310346708438345e-18,2.981555974335137e-19,-2.3310346708438345e-18,-0.012488095089793205,0.0008333333535119891,0.001500000013038516,0.011601190082728863,0.0012499999720603228,-5.692061405548898e-19,9.486769009248164e-20,-0.00041666667675599456,6.084128472286782e-19,-7.047314121155779e-19,-0.000750000006519258,3.7151635895506936e-19,-0.0017857142956927419,-0.0006249999860301614,3.7947076036992655e-19,-0.012488095089793205,0.0008333333535119891,0.001500000013038516,0.0012499999720603228,0.011601190082728863,-5.421010862427522e-20,-2.710505431213761e-20,5.149960319306146e-19,-0.00041666667675599456,-5.421010862427522e-19,3.5236570605778894e-19,-0.000750000006519258,1.328147661294743e-18,-0.0006249999860301614,-0.0017857142956927419,0.00041666667675599456,-0.00041666667675599456,-6.776263578034403e-19,-5.692061405548898e-19,-5.421010862427522e-20,5.952380888629705e-05,2.710505431213761e-20,2.710505431213761e-20,2.710505431213761e-20,0.0,0.0,-6.776263578034403e-21,1.3552527156068805e-20,2.710505431213761e-20,-1.3552527156068805e-20,0.0010000000474974513,-0.0002857142826542258,-0.0006666666595265269,9.486769009248164e-20,-2.710505431213761e-20,2.710505431213761e-20,0.00019047618843615055,1.1308432198445757e-20,7.763774249961368e-21,3.660711582296035e-19,8.908931006356736e-20,1.033001695896518e-19,-4.847675177760826e-20,-4.8412118598729753e-20,-2.0079211602485207e-20,0.0008333333535119891,-0.0002380952355451882,5.425520547729585e-19,-0.00041666667675599456,5.149960319306146e-19,2.710505431213761e-20,1.1308432198445757e-20,0.0001190476177725941,1.0163725302287822e-21,-1.486198896242234e-19,-1.677998234227185e-20,-4.554004411436907e-20,6.453028536512529e-20,-7.671972873163181e-20,-7.896792808836851e-20,0.0008333333535119891,-0.0002380952355451882,4.920397019807367e-19,6.084128472286782e-19,-0.00041666667675599456,2.710505431213761e-20,7.763774249961368e-21,1.0163725302287822e-21,0.0001190476177725941,-1.563164562572084e-19,-5.985122837029398e-20,4.6730185763596686e-20,-1.0410206949473368e-19,-5.0580924772532704e-20,2.1763602715001205e-19,0.0012499999720603228,-0.0,-0.0037499999161809683,-7.047314121155779e-19,-5.421010862427522e-19,0.0,3.660711582296035e-19,-1.486198896242234e-19,-1.563164562572084e-19,0.0012499999720603228,2.357287418932313e-19,2.357287418932313e-19,2.4076348008911185e-19,-6.26114137521098e-20,2.090428225824137e-19,0.001500000013038516,0.0,-0.0010000000474974513,-0.000750000006519258,3.5236570605778894e-19,0.0,8.908931006356736e-20,-1.677998234227185e-20,-5.985122837029398e-20,2.357287418932313e-19,0.0005000000237487257,1.2868259765792786e-20,9.042969033025448e-19,-4.079424156048169e-21,-2.829040089875183e-20,0.001500000013038516,-1.0842021724855044e-19,-0.0010000000474974513,3.7151635895506936e-19,-0.000750000006519258,-6.776263578034403e-21,1.033001695896518e-19,-4.554004411436907e-20,4.6730185763596686e-20,2.357287418932313e-19,1.2868259765792786e-20,0.0005000000237487257,-8.424416424902335e-20,5.081206682377872e-20,8.864079851827433e-19,0.0008928571478463709,0.0,-2.3310346708438345e-18,-0.0017857142956927419,1.328147661294743e-18,1.3552527156068805e-20,-4.847675177760826e-20,6.453028536512529e-20,-1.0410206949473368e-19,2.4076348008911185e-19,9.042969033025448e-19,-8.424416424902335e-20,0.00044642857392318547,-1.355965900391266e-19,-1.421699358731441e-19,0.0012499999720603228,2.168404344971009e-19,2.981555974335137e-19,-0.0006249999860301614,-0.0006249999860301614,2.710505431213761e-20,-4.8412118598729753e-20,-7.671972873163181e-20,-5.0580924772532704e-20,-6.26114137521098e-20,-4.079424156048169e-21,5.081206682377872e-20,-1.355965900391266e-19,0.0003124999930150807,2.061842802558865e-19,0.0008928571478463709,-2.168404344971009e-19,-2.3310346708438345e-18,3.7947076036992655e-19,-0.0017857142956927419,-1.3552527156068805e-20,-2.0079211602485207e-20,-7.896792808836851e-20,2.1763602715001205e-19,2.090428225824137e-19,-2.829040089875183e-20,8.864079851827433e-19,-1.421699358731441e-19,2.061842802558865e-19,0.00044642857392318547,8.0,4.0,5.0,6.0,0.04315972328186035,-0.0072519839741289616,-0.012470237910747528,-0.010555555112659931,-0.009159225970506668,0.00034722223062999547,0.0008333333535119891,0.0006944444612599909,0.0005952381179668009,0.0010416667209938169,0.0012499999720603228,0.0010714285308495164,0.0007440476329065859,0.0008928571478463709,0.0005580357392318547,-0.0072519839741289616,0.00380810652859509,0.0008333333535119891,0.0006944444612599909,0.0005952381179668009,-0.00034722223062999547,-0.0002380952355451882,-0.00019841270113829523,-0.0001700680295471102,-3.965082252960754e-19,-1.0573552502232717e-19,-9.063045094233022e-20,-0.0,-0.0,0.0,-0.012470237910747528,0.0008333333535119891,0.015605159103870392,0.0012499999720603228,0.0010714285308495164,1.3552527156068805e-20,-0.0005555555690079927,-4.394933055998985e-20,-3.498550707270227e-20,-0.0031250000465661287,-0.0008333333535119891,-0.0007142857066355646,0.0,0.0,-0.0,-0.010555555112659931,0.0006944444612599909,0.0012499999720603228,0.009742063470184803,0.0008928571478463709,1.4455196077452966e-20,-1.4968485881349128e-19,-0.00034722223062999547,4.987524681376477e-21,-2.4927535499424833e-34,-0.0006249999860301614,-5.697722711453252e-35,-0.0014880952658131719,-0.00044642857392318547,-0.0,-0.009159225970506668,0.0005952381179668009,0.0010714285308495164,0.0008928571478463709,0.006732887122780085,2.710505431213761e-20,-1.256159580150325e-19,4.987524681376477e-21,-0.0002380952355451882,-2.091926047523911e-34,-5.578469153945442e-35,-0.00042857142398133874,-0.0,-0.0003571428533177823,-0.0008370535797439516,0.00034722223062999547,-0.00034722223062999547,1.3552527156068805e-20,1.4455196077452966e-20,2.710505431213761e-20,4.960317528457381e-05,-0.0,-3.3881317890172014e-21,-6.776263578034403e-21,-7.36588981837357e-36,-2.558519883172309e-36,-1.3697274117105578e-36,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0002380952355451882,-0.0005555555690079927,-1.4968485881349128e-19,-1.256159580150325e-19,-0.0,0.00015873015217948705,1.2556951473169448e-20,9.995858932831059e-21,2.64338825480515e-19,7.04903478607686e-20,6.042030278233632e-20,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00019841270113829523,-4.394933055998985e-20,-0.00034722223062999547,4.987524681376477e-21,-3.3881317890172014e-21,1.2556951473169448e-20,9.920635056914762e-05,-1.4250071239462763e-21,2.091152505660335e-35,5.5764066578454e-36,4.779777135296057e-36,-0.0,-0.0,-0.0,0.0005952381179668009,-0.0001700680295471102,-3.498550707270227e-20,4.987524681376477e-21,-0.0002380952355451882,-6.776263578034403e-21,9.995858932831059e-21,-1.4250071239462763e-21,6.80272132740356e-05,1.6646449286567334e-35,4.439053095253635e-36,3.804902806817004e-36,-0.0,-0.0,-0.0,0.0010416667209938169,-3.965082252960754e-19,-0.0031250000465661287,-2.4927535499424833e-34,-2.091926047523911e-34,-7.36588981837357e-36,2.64338825480515e-19,2.091152505660335e-35,1.6646449286567334e-35,0.0010416667209938169,1.173900201403355e-34,1.0062000906354684e-34,-0.0,-0.0,-0.0,0.0012499999720603228,-1.0573552502232717e-19,-0.0008333333535119891,-0.0006249999860301614,-5.578469153945442e-35,-2.558519883172309e-36,7.04903478607686e-20,5.5764066578454e-36,4.439053095253635e-36,1.173900201403355e-34,0.00041666667675599456,2.683200452150928e-35,-0.0,-0.0,-0.0,0.0010714285308495164,-9.063045094233022e-20,-0.0007142857066355646,-5.697722711453252e-35,-0.00042857142398133874,-1.3697274117105578e-36,6.042030278233632e-20,4.779777135296057e-36,3.804902806817004e-36,1.0062000906354684e-34,2.683200452150928e-35,0.0002857142826542258,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,0.0008928571478463709,-0.0,0.0,-0.00044642857392318547,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,0.0005580357392318547,0.0,-0.0,-0.0,-0.0008370535797439516,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,8.0,4.0,5.0,7.0,0.037942178547382355,-0.006279761902987957,-0.010803570970892906,-0.009143282659351826,-0.007008928339928389,0.00029761905898340046,0.0007142857066355646,0.0005952381179668009,0.00044642857392318547,0.0008928571478463709,0.0010714285308495164,0.0008035714272409678,0.0006377550889737904,0.0006696428754366934,0.00037202381645329297,-0.006279761902987957,0.0032823130022734404,0.0007142857066355646,0.0005952381179668009,0.00044642857392318547,-0.00029761905898340046,-0.0002040816325461492,-0.0001700680295471102,-0.00012755101488437504,-0.0,-0.0,-5.082197683525802e-21,-0.0,6.62895343439831e-22,-6.679378756319422e-20,-0.010803570970892906,0.0007142857066355646,0.013452380895614624,0.0010714285308495164,0.0008035714272409678,-1.3552527156068805e-20,-0.0004761904710903764,4.2657927140384114e-20,2.1156932621000902e-20,-0.0026785715017467737,-0.0007142857066355646,-0.0005357142654247582,0.0,-1.0164395367051604e-20,2.7365679212990036e-21,-0.009143282659351826,0.0005952381179668009,0.0010714285308495164,0.00839817151427269,0.0006696428754366934,4.838771919404014e-21,4.2657927140384114e-20,-0.00029761905898340046,6.62895343439831e-22,-0.0,-0.0005357142654247582,-1.0164395367051604e-20,-0.0012755101779475808,-0.0003348214377183467,1.988685979832395e-21,-0.007008928339928389,0.00044642857392318547,0.0008035714272409678,0.0006696428754366934,0.0042708334513008595,-6.776263578034403e-21,2.6239130304526704e-20,-2.35054441155867e-36,-0.00014880952949170023,-0.0,-0.0,-0.0002678571327123791,-0.0,-0.00022321428696159273,-0.00044642857392318547,0.00029761905898340046,-0.00029761905898340046,-1.3552527156068805e-20,4.838771919404014e-21,-6.776263578034403e-21,4.251700738677755e-05,6.776263578034403e-21,-0.0,3.3881317890172014e-21,-0.0,0.0,1.88079096131566e-37,-0.0,-1.8042247419001535e-38,-1.7899564435117053e-21,0.0007142857066355646,-0.0002040816325461492,-0.0004761904710903764,4.2657927140384114e-20,2.6239130304526704e-20,6.776263578034403e-21,0.0001360544265480712,-1.2187978836769647e-20,-7.496894603520077e-21,-0.0,-0.0,-2.9870947991634454e-37,-0.0,3.896210607604494e-38,-4.456953842356306e-36,0.0005952381179668009,-0.0001700680295471102,4.2657927140384114e-20,-0.00029761905898340046,-2.35054441155867e-36,-0.0,-1.2187978836769647e-20,8.50340147735551e-05,6.715841496178706e-37,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.00044642857392318547,-0.00012755101488437504,2.1156932621000902e-20,6.62895343439831e-22,-0.00014880952949170023,3.3881317890172014e-21,-7.496894603520077e-21,6.715841496178706e-37,4.251700738677755e-05,-0.0,-0.0,1.6940658945086007e-21,-0.0,-2.2096511447994366e-22,2.678210490642101e-20,0.0008928571478463709,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0007142857066355646,-0.0005357142654247582,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0008035714272409678,-5.082197683525802e-21,-0.0005357142654247582,-1.0164395367051604e-20,-0.0002678571327123791,1.88079096131566e-37,-2.9870947991634454e-37,0.0,1.6940658945086007e-21,-0.0,-0.0,0.00017857142665889114,-0.0,3.3881317890172014e-21,-9.121893744157985e-22,0.0006377550889737904,-0.0,0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,0.0006696428754366934,6.62895343439831e-22,-1.0164395367051604e-20,-0.0003348214377183467,-0.00022321428696159273,-1.8042247419001535e-38,3.896210607604494e-38,-0.0,-2.2096511447994366e-22,-0.0,-0.0,3.3881317890172014e-21,-0.0,0.00011160714348079637,-6.62895343439831e-22,0.00037202381645329297,-6.679378756319422e-20,2.7365679212990036e-21,1.988685979832395e-21,-0.00044642857392318547,-1.7899564435117053e-21,-4.456953842356306e-36,0.0,2.678210490642101e-20,-0.0,-0.0,-9.121893744157985e-22,-0.0,-6.62895343439831e-22,7.440476474585012e-05,8.0,4.0,5.0,8.0,0.03385912626981735,-0.005538194440305233,-0.009531250223517418,-0.008065476082265377,-0.005538194440305233,0.0002604166802484542,0.0006249999860301614,0.0005208333604969084,0.00034722223062999547,0.0007812500116415322,0.0009374999790452421,0.0006249999860301614,0.0005580357392318547,0.0005208333604969084,0.0002604166802484542,-0.005538194440305233,0.0028844245243817568,0.0006249999860301614,0.0005208333604969084,0.00034722223062999547,-0.0002604166802484542,-0.00017857142665889114,-0.00014880952949170023,-9.920635056914762e-05,-0.0,-0.0,2.710505431213761e-20,-0.0,3.0076464787012814e-21,1.4164448554489113e-20,-0.009531250223517418,0.0006249999860301614,0.011822916567325592,0.0009374999790452421,0.0006249999860301614,-0.0,-0.00041666667675599456,-4.615548587715413e-20,9.63246976556599e-22,-0.0023437500931322575,-0.0006249999860301614,-0.00041666667675599456,0.0,6.0401208965794414e-21,6.989128168917267e-20,-0.008065476082265377,0.0005208333604969084,0.0009374999790452421,0.007380952592939138,0.0005208333604969084,-4.059910286851447e-21,-4.7322954376544697e-20,-0.0002604166802484542,-2.5378278836619436e-22,-0.0,-0.00046874998952262104,7.20758979986679e-21,-0.0011160714784637094,-0.0002604166802484542,1.0579063269946424e-20,-0.005538194440305233,0.00034722223062999547,0.0006249999860301614,0.0005208333604969084,0.0028844245243817568,-6.776263578034403e-21,-2.710505431213761e-20,-0.0,-9.920635056914762e-05,-0.0,-0.0,-0.00017857142665889114,-0.0,-0.00014880952949170023,-0.0002604166802484542,0.0002604166802484542,-0.0002604166802484542,-0.0,-4.059910286851447e-21,-6.776263578034403e-21,3.720238237292506e-05,-3.3881317890172014e-21,3.3881317890172014e-21,-0.0,-0.0,0.0,-2.606539814208356e-22,-0.0,4.598362044873026e-26,5.112172580388675e-22,0.0006249999860301614,-0.00017857142665889114,-0.00041666667675599456,-4.7322954376544697e-20,-2.710505431213761e-20,-3.3881317890172014e-21,0.0001190476177725941,1.3552527156068805e-20,6.626245407439318e-21,-0.0,-0.0,-1.639566107274199e-22,-0.0,-3.168295742751908e-23,5.576882587936448e-22,0.0005208333604969084,-0.00014880952949170023,-4.615548587715413e-20,-0.0002604166802484542,-0.0,3.3881317890172014e-21,1.3552527156068805e-20,7.440476474585012e-05,9.376457769877612e-22,-0.0,-0.0,-3.652455526125576e-22,-0.0,3.3753644728520955e-23,-3.69996110849122e-22,0.00034722223062999547,-9.920635056914762e-05,9.63246976556599e-22,-2.5378278836619436e-22,-9.920635056914762e-05,-0.0,6.626245407439318e-21,9.376457769877612e-22,2.8344671591185033e-05,-0.0,-0.0,-6.90145865621401e-21,-0.0,-8.651364088831342e-22,-5.180466982635172e-21,0.0007812500116415322,-0.0,-0.0023437500931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009374999790452421,-0.0,-0.0006249999860301614,-0.00046874998952262104,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,2.710505431213761e-20,-0.00041666667675599456,7.20758979986679e-21,-0.00017857142665889114,-2.606539814208356e-22,-1.639566107274199e-22,-3.652455526125576e-22,-6.90145865621401e-21,-0.0,-0.0,0.0001190476177725941,-0.0,-1.6940658945086007e-21,-2.0526625840996897e-20,0.0005580357392318547,-0.0,0.0,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,0.0005208333604969084,3.0076464787012814e-21,6.0401208965794414e-21,-0.0002604166802484542,-0.00014880952949170023,4.598362044873026e-26,-3.168295742751908e-23,3.3753644728520955e-23,-8.651364088831342e-22,-0.0,-0.0,-1.6940658945086007e-21,-0.0,7.440476474585012e-05,-2.652593337150316e-21,0.0002604166802484542,1.4164448554489113e-20,6.989128168917267e-20,1.0579063269946424e-20,-0.0002604166802484542,5.112172580388675e-22,5.576882587936448e-22,-3.69996110849122e-22,-5.180466982635172e-21,-0.0,-0.0,-2.0526625840996897e-20,-0.0,-2.652593337150316e-21,3.720238237292506e-05,8.0,4.0,6.0,3.0,0.06400462985038757,-0.011507936753332615,-0.01974206417798996,-0.014521329663693905,-0.02415674552321434,0.0005787037080153823,0.0013888889225199819,0.0009920635493472219,0.0017361111240461469,0.0017361111240461469,0.0017857142956927419,0.0031250000465661287,0.0009300595265813172,0.0022321429569274187,0.0026041667442768812,-0.011507936753332615,0.006181500386446714,0.0013888889225199819,0.0009920635493472219,0.0017361111240461469,-0.0005787037080153823,-0.00039682540227659047,-0.00028344671591185033,-0.0004960317746736109,-0.0,-1.5105075372466654e-19,-0.0,-2.95020996502244e-19,-1.8881343569348464e-19,1.3101564122585963e-33,-0.01974206417798996,0.0013888889225199819,0.025314154103398323,0.0017857142956927419,0.0031250000465661287,-0.0,-0.0009259259095415473,-2.459184438171482e-19,-1.4230153513872246e-19,-0.0052083334885537624,-0.0011904762359336019,-0.0020833334419876337,-6.195441133342278e-19,-3.965082252960754e-19,2.7513284657430523e-33,-0.014521329663693905,0.0009920635493472219,0.0017857142956927419,0.010923858731985092,0.0022321429569274187,-1.7707783337110844e-20,-9.486769009248164e-20,-0.00039682540227659047,7.115076756936123e-20,-0.0,-0.0007142857066355646,-0.0,-0.0013950893189758062,-0.0008928571478463709,6.1954409265471244e-18,-0.02415674552321434,0.0017361111240461469,0.0031250000465661287,0.0022321429569274187,0.05019841343164444,-0.0,-1.4230153513872246e-19,-1.1766266812412341e-19,-0.0017361111240461469,-0.0,-3.965082252960754e-19,-0.0031250000465661287,1.5488602316367811e-18,-0.0022321429569274187,-0.015625,0.0005787037080153823,-0.0005787037080153823,-0.0,-1.7707783337110844e-20,-0.0,8.26719551696442e-05,-0.0,-0.0,-1.3552527156068805e-20,-0.0,5.500476728826186e-37,0.0,5.4376127308960914e-36,6.824349529361357e-36,-0.0,0.0013888889225199819,-0.00039682540227659047,-0.0009259259095415473,-9.486769009248164e-20,-1.4230153513872246e-19,-0.0,0.00026455026818439364,2.710505431213761e-20,4.0657581468206416e-20,-0.0,1.3541694921472752e-35,-0.0,2.7083389842945504e-35,1.9560225997682864e-35,-0.0,0.0009920635493472219,-0.00028344671591185033,-2.459184438171482e-19,-0.00039682540227659047,-1.1766266812412341e-19,-0.0,2.710505431213761e-20,0.00011337868636474013,-2.0328790734103208e-20,-0.0,6.042030278233632e-20,-0.0,1.1800840377077644e-19,7.552537686233327e-20,-5.240625649034385e-34,0.0017361111240461469,-0.0004960317746736109,-1.4230153513872246e-19,7.115076756936123e-20,-0.0017361111240461469,-1.3552527156068805e-20,4.0657581468206416e-20,-2.0328790734103208e-20,0.0004960317746736109,-0.0,-1.1925334944301449e-35,-0.0,-2.09625023665488e-35,-1.3975002056009077e-35,0.0,0.0017361111240461469,-0.0,-0.0052083334885537624,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017857142956927419,-1.5105075372466654e-19,-0.0011904762359336019,-0.0007142857066355646,-3.965082252960754e-19,5.500476728826186e-37,1.3541694921472752e-35,6.042030278233632e-20,-1.1925334944301449e-35,-0.0,0.0004761904710903764,-0.0,2.4781765050356993e-19,1.5860328753349075e-19,-1.1005314230314194e-33,0.0031250000465661287,-0.0,-0.0020833334419876337,-0.0,-0.0031250000465661287,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0,-0.0,0.0009300595265813172,-2.95020996502244e-19,-6.195441133342278e-19,-0.0013950893189758062,1.5488602316367811e-18,5.4376127308960914e-36,2.7083389842945504e-35,1.1800840377077644e-19,-2.09625023665488e-35,-0.0,2.4781765050356993e-19,-0.0,0.00027901786961592734,3.7172646283065783e-19,-1.2390882266684555e-18,0.0022321429569274187,-1.8881343569348464e-19,-3.965082252960754e-19,-0.0008928571478463709,-0.0022321429569274187,6.824349529361357e-36,1.9560225997682864e-35,7.552537686233327e-20,-1.3975002056009077e-35,-0.0,1.5860328753349075e-19,-0.0,3.7172646283065783e-19,0.0008928571478463709,-1.650797042711633e-33,0.0026041667442768812,1.3101564122585963e-33,2.7513284657430523e-33,6.1954409265471244e-18,-0.015625,-0.0,-0.0,-5.240625649034385e-34,0.0,-0.0,-1.1005314230314194e-33,-0.0,-1.2390882266684555e-18,-1.650797042711633e-33,0.0078125,8.0,4.0,6.0,4.0,0.05149677395820618,-0.008891369216144085,-0.015275297686457634,-0.011225818656384945,-0.015275297686457634,0.0004340277810115367,0.0010416667209938169,0.0007440476329065859,0.0010416667209938169,0.0013020833721384406,0.0013392857508733869,0.0018749999580904841,0.0006975446594879031,0.0013392857508733869,0.0013020833721384406,-0.008891369216144085,0.0047105299308896065,0.0010416667209938169,0.0007440476329065859,0.0010416667209938169,-0.0004340277810115367,-0.00029761905898340046,-0.00021258502965793014,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.015275297686457634,0.0010416667209938169,0.019298115745186806,0.0013392857508733869,0.0018749999580904841,-0.0,-0.0006944444612599909,-5.929230630780102e-20,-7.115076756936123e-20,-0.00390625,-0.0008928571478463709,-0.0012499999720603228,-0.0,0.0,-0.0,-0.011225818656384945,0.0007440476329065859,0.0013392857508733869,0.008326822891831398,0.0013392857508733869,5.785394908249641e-21,-5.929230630780102e-20,-0.00029761905898340046,-1.0672615135404184e-19,-0.0,-0.0005357142654247582,-0.0,-0.0010463169310241938,-0.0005357142654247582,2.168404344971009e-18,-0.015275297686457634,0.0010416667209938169,0.0018749999580904841,0.0013392857508733869,0.019298115745186806,2.710505431213761e-20,-7.115076756936123e-20,-1.0672615135404184e-19,-0.0006944444612599909,-0.0,-0.0,-0.0012499999720603228,1.3010426069826053e-18,-0.0008928571478463709,-0.00390625,0.0004340277810115367,-0.0004340277810115367,-0.0,5.785394908249641e-21,2.710505431213761e-20,6.200397183420137e-05,-0.0,-3.3881317890172014e-21,-6.776263578034403e-21,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-0.0006944444612599909,-5.929230630780102e-20,-7.115076756936123e-20,-0.0,0.00019841270113829523,1.6940658945086007e-20,2.0328790734103208e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-0.00021258502965793014,-5.929230630780102e-20,-0.00029761905898340046,-1.0672615135404184e-19,-3.3881317890172014e-21,1.6940658945086007e-20,8.50340147735551e-05,3.049318610115481e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0010416667209938169,-0.00029761905898340046,-7.115076756936123e-20,-1.0672615135404184e-19,-0.0006944444612599909,-6.776263578034403e-21,2.0328790734103208e-20,3.049318610115481e-20,0.00019841270113829523,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0,-0.0008928571478463709,-0.0005357142654247582,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0018749999580904841,-0.0,-0.0012499999720603228,-0.0,-0.0012499999720603228,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0,-0.0,-0.0,0.0006975446594879031,-0.0,-0.0,-0.0010463169310241938,1.3010426069826053e-18,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002092633949359879,-0.0,-4.336808689942018e-19,0.0013392857508733869,-0.0,0.0,-0.0005357142654247582,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0013020833721384406,-0.0,-0.0,2.168404344971009e-18,-0.00390625,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-4.336808689942018e-19,-0.0,0.0013020833721384406,8.0,4.0,6.0,5.0,0.04315972328186035,-0.0072519839741289616,-0.012470237910747528,-0.009159225970506668,-0.010555555112659931,0.00034722223062999547,0.0008333333535119891,0.0005952381179668009,0.0006944444612599909,0.0010416667209938169,0.0010714285308495164,0.0012499999720603228,0.0005580357392318547,0.0008928571478463709,0.0007440476329065859,-0.0072519839741289616,0.00380810652859509,0.0008333333535119891,0.0005952381179668009,0.0006944444612599909,-0.00034722223062999547,-0.0002380952355451882,-0.0001700680295471102,-0.00019841270113829523,-3.965082252960754e-19,-9.063045094233022e-20,-1.0573552502232717e-19,-0.0,-0.0,-0.0,-0.012470237910747528,0.0008333333535119891,0.015605159103870392,0.0010714285308495164,0.0012499999720603228,1.3552527156068805e-20,-0.0005555555690079927,-3.498550707270227e-20,-4.394933055998985e-20,-0.0031250000465661287,-0.0007142857066355646,-0.0008333333535119891,-0.0,0.0,-0.0,-0.009159225970506668,0.0005952381179668009,0.0010714285308495164,0.006732887122780085,0.0008928571478463709,1.5179954928065737e-20,-1.256159580150325e-19,-0.0002380952355451882,-6.586699631031391e-20,-2.091926047523911e-34,-0.00042857142398133874,-5.578469153945442e-35,-0.0008370535797439516,-0.0003571428533177823,1.0620756080875938e-18,-0.010555555112659931,0.0006944444612599909,0.0012499999720603228,0.0008928571478463709,0.009742063470184803,2.710505431213761e-20,-1.4968485881349128e-19,-6.586699631031391e-20,-0.00034722223062999547,-2.4927535499424833e-34,-5.697722711453252e-35,-0.0006249999860301614,1.1215518586841113e-18,-0.00044642857392318547,-0.0014880952658131719,0.00034722223062999547,-0.00034722223062999547,1.3552527156068805e-20,1.5179954928065737e-20,2.710505431213761e-20,4.960317528457381e-05,-0.0,-3.3881317890172014e-21,-6.776263578034403e-21,-7.36588981837357e-36,-1.3697274117105578e-36,-2.558519883172309e-36,-0.0,-0.0,-0.0,0.0008333333535119891,-0.0002380952355451882,-0.0005555555690079927,-1.256159580150325e-19,-1.4968485881349128e-19,-0.0,0.00015873015217948705,9.995858932831059e-21,1.2556951473169448e-20,2.64338825480515e-19,6.042030278233632e-20,7.04903478607686e-20,-0.0,-0.0,-0.0,0.0005952381179668009,-0.0001700680295471102,-3.498550707270227e-20,-0.0002380952355451882,-6.586699631031391e-20,-3.3881317890172014e-21,9.995858932831059e-21,6.80272132740356e-05,1.8819140879754184e-20,1.6646449286567334e-35,3.804902806817004e-36,4.439053095253635e-36,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00019841270113829523,-4.394933055998985e-20,-6.586699631031391e-20,-0.00034722223062999547,-6.776263578034403e-21,1.2556951473169448e-20,1.8819140879754184e-20,9.920635056914762e-05,2.091152505660335e-35,4.779777135296057e-36,5.5764066578454e-36,-0.0,-0.0,-0.0,0.0010416667209938169,-3.965082252960754e-19,-0.0031250000465661287,-2.091926047523911e-34,-2.4927535499424833e-34,-7.36588981837357e-36,2.64338825480515e-19,1.6646449286567334e-35,2.091152505660335e-35,0.0010416667209938169,1.0062000906354684e-34,1.173900201403355e-34,-0.0,-0.0,-0.0,0.0010714285308495164,-9.063045094233022e-20,-0.0007142857066355646,-0.00042857142398133874,-5.697722711453252e-35,-1.3697274117105578e-36,6.042030278233632e-20,3.804902806817004e-36,4.779777135296057e-36,1.0062000906354684e-34,0.0002857142826542258,2.683200452150928e-35,-0.0,-0.0,-0.0,0.0012499999720603228,-1.0573552502232717e-19,-0.0008333333535119891,-5.578469153945442e-35,-0.0006249999860301614,-2.558519883172309e-36,7.04903478607686e-20,4.439053095253635e-36,5.5764066578454e-36,1.173900201403355e-34,2.683200452150928e-35,0.00041666667675599456,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0008370535797439516,1.1215518586841113e-18,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,-1.0875654371573568e-19,-2.1241512161751876e-19,0.0008928571478463709,-0.0,0.0,-0.0003571428533177823,-0.00044642857392318547,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-1.0875654371573568e-19,0.00017857142665889114,1.3799316447069957e-34,0.0007440476329065859,-0.0,-0.0,1.0620756080875938e-18,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-2.1241512161751876e-19,1.3799316447069957e-34,0.00037202381645329297,8.0,4.0,6.0,6.0,0.03717875853180885,-0.00612599216401577,-0.010540674440562725,-0.007738980930298567,-0.007738980930298567,0.00028935185400769114,0.0006944444612599909,0.0004960317746736109,0.0004960317746736109,0.0008680555620230734,0.0008928571478463709,0.0008928571478463709,0.0004650297632906586,0.0006377550889737904,0.0004650297632906586,-0.00612599216401577,0.0031970427371561527,0.0006944444612599909,0.0004960317746736109,0.0004960317746736109,-0.00028935185400769114,-0.00019841270113829523,-0.00014172335795592517,-0.00014172335795592517,-0.0,-7.552537686233327e-20,-7.552537686233327e-20,-1.47510498251122e-19,-1.0789339367123366e-19,-1.47510498251122e-19,-0.010540674440562725,0.0006944444612599909,0.013103505596518517,0.0008928571478463709,0.0008928571478463709,-0.0,-0.00046296295477077365,-1.2096375207836648e-19,-1.2096375207836648e-19,-0.0026041667442768812,-0.0005952381179668009,-0.0005952381179668009,-3.097720566671139e-19,-2.2657611766230274e-19,-3.097720566671139e-19,-0.007738980930298567,0.0004960317746736109,0.0008928571478463709,0.005653256084769964,0.0006377550889737904,6.928638486361053e-21,-4.543837521603321e-20,-0.00019841270113829523,-3.476564828199936e-20,-0.0,-0.0003571428533177823,-1.1328805883115137e-19,-0.0006975446594879031,-0.00025510202976875007,3.4296190326397985e-19,-0.007738980930298567,0.0004960317746736109,0.0008928571478463709,0.0006377550889737904,0.005653256084769964,-0.0,-4.543837521603321e-20,-3.476564828199936e-20,-0.00019841270113829523,-0.0,-1.1328805883115137e-19,-0.0003571428533177823,6.01906037735183e-19,-0.00025510202976875007,-0.0006975446594879031,0.00028935185400769114,-0.00028935185400769114,-0.0,6.928638486361053e-21,-0.0,4.13359775848221e-05,-0.0,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,-1.8568936657205732e-37,2.014149195469914e-36,-7.038927336398733e-38,-2.3127648668618627e-36,3.692539835190159e-37,0.0006944444612599909,-0.00019841270113829523,-0.00046296295477077365,-4.543837521603321e-20,-4.543837521603321e-20,-0.0,0.00013227513409219682,1.2982392918866631e-20,1.2982392918866631e-20,-0.0,6.918408448977111e-36,6.918408448977111e-36,1.3512517062427805e-35,9.88344084638582e-36,1.3512517062427805e-35,0.0004960317746736109,-0.00014172335795592517,-1.2096375207836648e-19,-0.00019841270113829523,-3.476564828199936e-20,3.3881317890172014e-21,1.2982392918866631e-20,5.668934318237007e-05,-5.480299355949687e-21,-0.0,3.021015139116816e-20,6.662368215829376e-36,5.900420188538822e-20,2.1578678411129306e-20,-3.471468998493418e-35,0.0004960317746736109,-0.00014172335795592517,-1.2096375207836648e-19,-3.476564828199936e-20,-0.00019841270113829523,3.3881317890172014e-21,1.2982392918866631e-20,-5.480299355949687e-21,5.668934318237007e-05,-0.0,6.662368215829376e-36,3.021015139116816e-20,-5.661836269413964e-35,2.1578678411129306e-20,5.900420188538822e-20,0.0008680555620230734,-0.0,-0.0026041667442768812,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008680555620230734,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-7.552537686233327e-20,-0.0005952381179668009,-0.0003571428533177823,-1.1328805883115137e-19,-1.8568936657205732e-37,6.918408448977111e-36,3.021015139116816e-20,6.662368215829376e-36,-0.0,0.0002380952355451882,2.0124002673667145e-35,1.2390882525178497e-19,4.531522547116511e-20,-6.092227339961347e-35,0.0008928571478463709,-7.552537686233327e-20,-0.0005952381179668009,-1.1328805883115137e-19,-0.0003571428533177823,2.014149195469914e-36,6.918408448977111e-36,6.662368215829376e-36,3.021015139116816e-20,-0.0,2.0124002673667145e-35,0.0002380952355451882,-1.0691999297660716e-34,4.531522547116511e-20,1.2390882525178497e-19,0.0004650297632906586,-1.47510498251122e-19,-3.097720566671139e-19,-0.0006975446594879031,6.01906037735183e-19,-7.038927336398733e-38,1.3512517062427805e-35,5.900420188538822e-20,-5.661836269413964e-35,-0.0,1.2390882525178497e-19,-1.0691999297660716e-34,0.00013950893480796367,2.629901406112835e-21,-1.2169615588729683e-19,0.0006377550889737904,-1.0789339367123366e-19,-2.2657611766230274e-19,-0.00025510202976875007,-0.00025510202976875007,-2.3127648668618627e-36,9.88344084638582e-36,2.1578678411129306e-20,2.1578678411129306e-20,-0.0,4.531522547116511e-20,4.531522547116511e-20,2.629901406112835e-21,0.0001020408162730746,1.0620756080875938e-19,0.0004650297632906586,-1.47510498251122e-19,-3.097720566671139e-19,3.4296190326397985e-19,-0.0006975446594879031,3.692539835190159e-37,1.3512517062427805e-35,-3.471468998493418e-35,5.900420188538822e-20,-0.0,-6.092227339961347e-35,1.2390882525178497e-19,-1.2169615588729683e-19,1.0620756080875938e-19,0.00013950893480796367,8.0,4.0,6.0,7.0,0.032669004052877426,-0.005303996615111828,-0.009130527265369892,-0.006701743230223656,-0.005920493043959141,0.00024801588733680546,0.0005952381179668009,0.00042517005931586027,0.00037202381645329297,0.0007440476329065859,0.0007653061184100807,0.0006696428754366934,0.00039859695243649185,0.00047831633128225803,0.0003100198518950492,-0.005303996615111828,0.00275550689548254,0.0005952381179668009,0.00042517005931586027,0.00037202381645329297,-0.00024801588733680546,-0.0001700680295471102,-0.00012147716188337654,-0.00010629251482896507,-2.8322015354022696e-19,-1.2947206723560157e-19,-6.680842478262729e-20,-1.2643756808314786e-19,-4.2338225064806637e-20,-9.027148040587635e-20,-0.009130527265369892,0.0005952381179668009,0.011295351199805737,0.0007653061184100807,0.0006696428754366934,-0.0,-0.00039682540227659047,-1.0550998259608722e-19,-4.552191399555253e-20,-0.0022321429569274187,-0.0005102040595375001,-0.00044642857392318547,-2.6551890202189845e-19,-9.51304427215894e-20,-1.48556548915052e-20,-0.006701743230223656,0.00042517005931586027,0.0007653061184100807,0.004872980527579784,0.00047831633128225803,1.7575665468062506e-20,-1.0550998259608722e-19,-0.0001700680295471102,8.397358248466475e-21,-4.248302432350375e-19,-0.0003061224415432662,-1.1212364702261813e-19,-0.0005978954141028225,-0.00019132652960252017,3.868842632123565e-19,-0.005920493043959141,0.00037202381645329297,0.0006696428754366934,0.00047831633128225803,0.003585600992664695,-6.776263578034403e-21,-9.200154804407661e-20,-3.0184460324565e-20,-0.00012400794366840273,-3.7172646283065783e-19,-1.8692530547245286e-19,-0.00022321428696159273,3.9981366487323145e-19,-0.0001594387722434476,-0.00037202381645329297,0.00024801588733680546,-0.00024801588733680546,-0.0,1.7575665468062506e-20,-6.776263578034403e-21,3.543083948898129e-05,3.3881317890172014e-21,-3.3881317890172014e-21,3.3881317890172014e-21,4.479007993265685e-36,2.4483128036276337e-36,9.4039548065783e-37,2.187596134823979e-36,9.880710175304747e-37,2.456523461148797e-22,0.0005952381179668009,-0.0001700680295471102,-0.00039682540227659047,-1.0550998259608722e-19,-9.200154804407661e-20,3.3881317890172014e-21,0.00011337868636474013,1.1649698323292867e-20,1.0102147602576288e-20,1.8881343569348464e-19,4.315735682225861e-20,3.7762688431166636e-20,3.4585227764084706e-35,1.2105569997624458e-35,1.2037062152420224e-35,0.00042517005931586027,-0.00012147716188337654,-1.0550998259608722e-19,-0.0001700680295471102,-3.0184460324565e-20,-3.3881317890172014e-21,1.1649698323292867e-20,4.8590864025754854e-05,-2.9358746261232765e-21,5.533636212664813e-35,2.5894414093355167e-20,1.3083744305514282e-35,5.0575027879493996e-20,1.6184008404450196e-20,-3.535887007273441e-35,0.00037202381645329297,-0.00010629251482896507,-4.552191399555253e-20,8.397358248466475e-21,-0.00012400794366840273,3.3881317890172014e-21,1.0102147602576288e-20,-2.9358746261232765e-21,3.543083948898129e-05,2.7083389842945504e-35,3.009265538105056e-36,3.3881317890172014e-21,-3.792655897686004e-35,6.260678327743567e-22,2.947051298305224e-20,0.0007440476329065859,-2.8322015354022696e-19,-0.0022321429569274187,-4.248302432350375e-19,-3.7172646283065783e-19,4.479007993265685e-36,1.8881343569348464e-19,5.533636212664813e-35,2.7083389842945504e-35,0.0007440476329065859,2.8322015354022696e-19,2.4781765050356993e-19,1.4739259637909209e-34,5.280800464361141e-35,9.490760874392014e-36,0.0007653061184100807,-1.2947206723560157e-19,-0.0005102040595375001,-0.0003061224415432662,-1.8692530547245286e-19,2.4483128036276337e-36,4.315735682225861e-20,2.5894414093355167e-20,3.009265538105056e-36,2.8322015354022696e-19,0.0002040816325461492,6.797283659116053e-20,1.0620756080875938e-19,3.3986418295580265e-20,-6.782421603111538e-35,0.0006696428754366934,-6.680842478262729e-20,-0.00044642857392318547,-1.1212364702261813e-19,-0.00022321428696159273,9.4039548065783e-37,3.7762688431166636e-20,1.3083744305514282e-35,3.3881317890172014e-21,2.4781765050356993e-19,6.797283659116053e-20,0.00014880952949170023,2.783570622747177e-35,3.3881317890172014e-21,4.951884829202806e-21,0.00039859695243649185,-1.2643756808314786e-19,-2.6551890202189845e-19,-0.0005978954141028225,3.9981366487323145e-19,2.187596134823979e-36,3.4585227764084706e-35,5.0575027879493996e-20,-3.792655897686004e-35,1.4739259637909209e-34,1.0620756080875938e-19,2.783570622747177e-35,0.00011957908282056451,2.4167639021733776e-20,-7.670545986606527e-20,0.00047831633128225803,-4.2338225064806637e-20,-9.51304427215894e-20,-0.00019132652960252017,-0.0001594387722434476,9.880710175304747e-37,1.2105569997624458e-35,1.6184008404450196e-20,6.260678327743567e-22,5.280800464361141e-35,3.3986418295580265e-20,3.3881317890172014e-21,2.4167639021733776e-20,6.377550744218752e-05,-1.1189899801606323e-21,0.0003100198518950492,-9.027148040587635e-20,-1.48556548915052e-20,3.868842632123565e-19,-0.00037202381645329297,2.456523461148797e-22,1.2037062152420224e-35,-3.535887007273441e-35,2.947051298305224e-20,9.490760874392014e-36,-6.782421603111538e-35,4.951884829202806e-21,-7.670545986606527e-20,-1.1189899801606323e-21,6.200397183420137e-05,8.0,4.0,6.0,8.0,0.029142897576093674,-0.004677166230976582,-0.008054315112531185,-0.0059105283580720425,-0.004677166230976582,0.00021701389050576836,0.0005208333604969084,0.00037202381645329297,0.00028935185400769114,0.0006510416860692203,0.0006696428754366934,0.0005208333604969084,0.00034877232974395156,0.00037202381645329297,0.00021701389050576836,-0.004677166230976582,0.002421402605250478,0.0005208333604969084,0.00037202381645329297,0.00028935185400769114,-0.00021701389050576836,-0.00014880952949170023,-0.00010629251482896507,-8.26719551696442e-05,-0.0,-0.0,2.668153783851046e-20,-9.808677281977673e-35,3.4735145996911466e-20,1.7126201049477906e-20,-0.008054315112531185,0.0005208333604969084,0.00992683507502079,0.0006696428754366934,0.0005208333604969084,1.3552527156068805e-20,-0.00034722223062999547,-2.8531808390646604e-20,6.1684728320186754e-21,-0.001953125,-0.00044642857392318547,-0.00034722223062999547,-1.9484994359230238e-34,5.929230630780102e-20,5.881685193899349e-20,-0.0059105283580720425,0.00037202381645329297,0.0006696428754366934,0.0042824591509997845,0.00037202381645329297,9.302599184567793e-21,-2.8531808390646604e-20,-0.00014880952949170023,6.7627839267827695e-21,-0.0,-0.0002678571327123791,5.929230630780102e-20,-0.0005231584655120969,-0.00014880952949170023,3.4299535237999996e-19,-0.004677166230976582,0.00028935185400769114,0.0005208333604969084,0.00037202381645329297,0.002421402605250478,-0.0,-2.0513064602595002e-20,-2.7972362877922264e-20,-8.26719551696442e-05,-0.0,-0.0,-0.00014880952949170023,5.232407995898721e-19,-0.00010629251482896507,-0.00021701389050576836,0.00021701389050576836,-0.00021701389050576836,1.3552527156068805e-20,9.302599184567793e-21,-0.0,3.100198591710068e-05,-0.0,-0.0,-3.3881317890172014e-21,-0.0,0.0,-3.76158192263132e-37,0.0,-3.284884623713235e-37,2.2374455543896316e-22,0.0005208333604969084,-0.00014880952949170023,-0.00034722223062999547,-2.8531808390646604e-20,-2.0513064602595002e-20,-0.0,9.920635056914762e-05,8.151945716066782e-21,5.8608755430418886e-21,-0.0,-0.0,-1.8915384048591965e-36,0.0,-2.4624839892623103e-36,-1.4452842590266296e-36,0.00037202381645329297,-0.00010629251482896507,-2.8531808390646604e-20,-0.00014880952949170023,-2.7972362877922264e-20,-0.0,8.151945716066782e-21,4.251700738677755e-05,7.99210356400728e-21,-0.0,-0.0,-2.5793704868566485e-36,0.0,-3.3579326311003306e-36,-6.37190455901728e-37,0.00028935185400769114,-8.26719551696442e-05,6.1684728320186754e-21,6.7627839267827695e-21,-8.26719551696442e-05,-3.3881317890172014e-21,5.8608755430418886e-21,7.99210356400728e-21,2.362055965932086e-05,-0.0,-0.0,-7.623296525288703e-21,2.802478977434256e-35,-9.924327196890828e-21,-5.377219242252369e-21,0.0006510416860692203,-0.0,-0.001953125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006510416860692203,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,-0.0,-0.00044642857392318547,-0.0002678571327123791,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,2.668153783851046e-20,-0.00034722223062999547,5.929230630780102e-20,-0.00014880952949170023,-3.76158192263132e-37,-1.8915384048591965e-36,-2.5793704868566485e-36,-7.623296525288703e-21,-0.0,-0.0,9.920635056914762e-05,5.567141245494354e-35,-1.6940658945086007e-20,-1.680481391651978e-20,0.00034877232974395156,-9.808677281977673e-35,-1.9484994359230238e-34,-0.0005231584655120969,5.232407995898721e-19,0.0,0.0,0.0,2.802478977434256e-35,-0.0,-0.0,5.567141245494354e-35,0.00010463169746799394,-6.473603361780078e-20,-5.162867503412756e-20,0.00037202381645329297,3.4735145996911466e-20,5.929230630780102e-20,-0.00014880952949170023,-0.00010629251482896507,-3.284884623713235e-37,-2.4624839892623103e-36,-3.3579326311003306e-36,-9.924327196890828e-21,-0.0,-0.0,-1.6940658945086007e-20,-6.473603361780078e-20,4.251700738677755e-05,-2.4243422983010412e-20,0.00021701389050576836,1.7126201049477906e-20,5.881685193899349e-20,3.4299535237999996e-19,-0.00021701389050576836,2.2374455543896316e-22,-1.4452842590266296e-36,-6.37190455901728e-37,-5.377219242252369e-21,-0.0,-0.0,-1.680481391651978e-20,-5.162867503412756e-20,-2.4243422983010412e-20,3.100198591710068e-05,8.0,4.0,7.0,3.0,0.0563616082072258,-0.00997023843228817,-0.01711309514939785,-0.01112351194024086,-0.02094493992626667,0.0004960317746736109,0.0011904762359336019,0.0007440476329065859,0.0014880952658131719,0.0014880952658131719,0.0013392857508733869,0.0026785715017467737,0.0006200397037900984,0.0016741071594879031,0.0022321429569274187,-0.00997023843228817,0.005328798200935125,0.0011904762359336019,0.0007440476329065859,0.0014880952658131719,-0.0004960317746736109,-0.0003401360590942204,-0.00021258502965793014,-0.00042517005931586027,-5.664403070804539e-19,-1.2264707754960896e-19,-2.2657611766230274e-19,-1.3552527156068805e-19,-0.0,-0.0,-0.01711309514939785,0.0011904762359336019,0.02182539738714695,0.0013392857508733869,0.0026785715017467737,-0.0,-0.0007936508045531809,-5.0056915548003164e-20,-1.324660733121314e-19,-0.004464285913854837,-0.0008928571478463709,-0.0017857142956927419,2.3500188277934445e-20,0.0,-0.0,-0.01112351194024086,0.0007440476329065859,0.0013392857508733869,0.006932043470442295,0.0016741071594879031,-2.972579352166575e-21,-1.9651164376299768e-19,-0.00024801588733680546,-9.317382453077764e-20,-7.434529256613157e-19,-0.00044642857392318547,-2.973811754344051e-19,-0.0007440476329065859,-0.0005580357392318547,-0.0,-0.02094493992626667,0.0014880952658131719,0.0026785715017467737,0.0016741071594879031,0.04326637089252472,-0.0,-3.57019191539465e-19,-8.300922883092143e-20,-0.0014880952658131719,-1.4869058513226313e-18,-2.99741328517172e-19,-0.0026785715017467737,-5.421010862427522e-20,-0.0016741071594879031,-0.013392857275903225,0.0004960317746736109,-0.0004960317746736109,-0.0,-2.972579352166575e-21,-0.0,7.086167897796258e-05,-0.0,3.3881317890172014e-21,-0.0,8.668145314387825e-37,2.1947161524627537e-21,3.4236240681782506e-36,-4.4555853474002256e-21,-0.0,-0.0,0.0011904762359336019,-0.0003401360590942204,-0.0007936508045531809,-1.9651164376299768e-19,-3.57019191539465e-19,-0.0,0.00022675737272948027,1.6940658945086007e-20,3.7269449679189215e-20,3.776268713869693e-19,7.639400051604491e-20,1.5105075372466654e-19,3.481282908086399e-21,-0.0,-0.0,0.0007440476329065859,-0.00021258502965793014,-5.0056915548003164e-20,-0.00024801588733680546,-8.300922883092143e-20,3.3881317890172014e-21,1.6940658945086007e-20,7.086167897796258e-05,2.371692252312041e-20,2.5243422629531326e-35,-3.0784637212315476e-21,1.0532429383367696e-35,5.421010862427522e-20,-0.0,0.0,0.0014880952658131719,-0.00042517005931586027,-1.324660733121314e-19,-9.317382453077764e-20,-0.0014880952658131719,-0.0,3.7269449679189215e-20,2.371692252312041e-20,0.00042517005931586027,6.016282254497943e-35,6.743337003477908e-22,2.646084275420899e-35,1.408168868991672e-21,-0.0,-0.0,0.0014880952658131719,-5.664403070804539e-19,-0.004464285913854837,-7.434529256613157e-19,-1.4869058513226313e-18,8.668145314387825e-37,3.776268713869693e-19,2.5243422629531326e-35,6.016282254497943e-35,0.0014880952658131719,4.956353010071399e-19,9.912706020142797e-19,-1.3592611964373848e-35,-0.0,-0.0,0.0013392857508733869,-1.2264707754960896e-19,-0.0008928571478463709,-0.00044642857392318547,-2.99741328517172e-19,2.1947161524627537e-21,7.639400051604491e-20,-3.0784637212315476e-21,6.743337003477908e-22,4.956353010071399e-19,0.00029761905898340046,1.982541126480377e-19,-1.1894892751429484e-20,-0.0,-0.0,0.0026785715017467737,-2.2657611766230274e-19,-0.0017857142956927419,-2.973811754344051e-19,-0.0026785715017467737,3.4236240681782506e-36,1.5105075372466654e-19,1.0532429383367696e-35,2.646084275420899e-35,9.912706020142797e-19,1.982541126480377e-19,0.0017857142956927419,-6.018531076210112e-36,-0.0,-0.0,0.0006200397037900984,-1.3552527156068805e-19,2.3500188277934445e-20,-0.0007440476329065859,-5.421010862427522e-20,-4.4555853474002256e-21,3.481282908086399e-21,5.421010862427522e-20,1.408168868991672e-21,-1.3592611964373848e-35,-1.1894892751429484e-20,-6.018531076210112e-36,0.00012400794366840273,0.0,-0.0,0.0016741071594879031,-0.0,0.0,-0.0005580357392318547,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.0005580357392318547,-0.0,0.0022321429569274187,-0.0,-0.0,-0.0,-0.013392857275903225,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0066964286379516125,8.0,4.0,7.0,4.0,0.04530134052038193,-0.007700892630964518,-0.013236607424914837,-0.008593750186264515,-0.013236607424914837,0.00037202381645329297,0.0008928571478463709,0.0005580357392318547,0.0008928571478463709,0.0011160714784637094,0.0010044643422588706,0.0016071428544819355,0.0004650297632906586,0.0010044643422588706,0.0011160714784637094,-0.007700892630964518,0.004060374107211828,0.0008928571478463709,0.0005580357392318547,0.0008928571478463709,-0.00037202381645329297,-0.00025510202976875007,-0.0001594387722434476,-0.00025510202976875007,-0.0,-6.214518277024966e-21,-0.0,-1.3552527156068805e-19,-1.3552527156068805e-20,-0.0,-0.013236607424914837,0.0008928571478463709,0.016636904329061508,0.0010044643422588706,0.0016071428544819355,-0.0,-0.0005952381179668009,5.3183739042810304e-20,9.466539273392414e-20,-0.0033482143189758062,-0.0006696428754366934,-0.0010714285308495164,-4.353991169969305e-21,-1.0164395367051604e-20,-0.0,-0.008593750186264515,0.0005580357392318547,0.0010044643422588706,0.005282738246023655,0.0010044643422588706,-2.019488764127192e-20,4.0657581468206416e-20,-0.00018601190822664648,6.12785220549057e-20,-0.0,-0.0003348214377183467,-0.0,-0.0005580357392318547,-0.0003348214377183467,-0.0,-0.013236607424914837,0.0008928571478463709,0.0016071428544819355,0.0010044643422588706,0.016636904329061508,-0.0,9.486769009248164e-20,5.421010862427522e-20,-0.0005952381179668009,-0.0,-1.0400412452474144e-20,-0.0010714285308495164,-0.0,-0.0006696428754366934,-0.0033482143189758062,0.00037202381645329297,-0.00037202381645329297,-0.0,-2.019488764127192e-20,-0.0,5.3146257414482534e-05,6.776263578034403e-21,-0.0,-0.0,-0.0,7.726450552097397e-22,0.0,2.8144376055654946e-21,1.1053633104798149e-21,-0.0,0.0008928571478463709,-0.00025510202976875007,-0.0005952381179668009,4.0657581468206416e-20,9.486769009248164e-20,6.776263578034403e-21,0.0001700680295471102,-1.5246593050577406e-20,-2.710505431213761e-20,-0.0,5.600374739476185e-23,-0.0,1.9417675119286273e-21,-0.0,-0.0,0.0005580357392318547,-0.0001594387722434476,5.3183739042810304e-20,-0.00018601190822664648,5.421010862427522e-20,-0.0,-1.5246593050577406e-20,5.3146257414482534e-05,-1.6940658945086007e-20,-0.0,5.977858566576371e-23,-0.0,3.7269449679189215e-20,1.6940658945086007e-21,0.0,0.0008928571478463709,-0.00025510202976875007,9.466539273392414e-20,6.12785220549057e-20,-0.0005952381179668009,-0.0,-2.710505431213761e-20,-1.6940658945086007e-20,0.0001700680295471102,-0.0,6.743337003477908e-23,-0.0,-3.3669439191142768e-22,6.743337003477908e-23,-0.0,0.0011160714784637094,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010044643422588706,-6.214518277024966e-21,-0.0006696428754366934,-0.0003348214377183467,-1.0400412452474144e-20,7.726450552097397e-22,5.600374739476185e-23,5.977858566576371e-23,6.743337003477908e-23,-0.0,0.00022321428696159273,-0.0,-8.140650237645976e-22,3.3881317890172014e-21,-0.0,0.0016071428544819355,-0.0,-0.0010714285308495164,-0.0,-0.0010714285308495164,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0,0.0004650297632906586,-1.3552527156068805e-19,-4.353991169969305e-21,-0.0005580357392318547,-0.0,2.8144376055654946e-21,1.9417675119286273e-21,3.7269449679189215e-20,-3.3669439191142768e-22,-0.0,-8.140650237645976e-22,-0.0,9.300595411332324e-05,5.082197683525802e-21,-0.0,0.0010044643422588706,-1.3552527156068805e-20,-1.0164395367051604e-20,-0.0003348214377183467,-0.0006696428754366934,1.1053633104798149e-21,-0.0,1.6940658945086007e-21,6.743337003477908e-23,-0.0,3.3881317890172014e-21,-0.0,5.082197683525802e-21,0.00022321428696159273,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,8.0,4.0,7.0,5.0,0.037942178547382355,-0.006279761902987957,-0.010803570970892906,-0.007008928339928389,-0.009143282659351826,0.00029761905898340046,0.0007142857066355646,0.00044642857392318547,0.0005952381179668009,0.0008928571478463709,0.0008035714272409678,0.0010714285308495164,0.00037202381645329297,0.0006696428754366934,0.0006377550889737904,-0.006279761902987957,0.0032823130022734404,0.0007142857066355646,0.00044642857392318547,0.0005952381179668009,-0.00029761905898340046,-0.0002040816325461492,-0.00012755101488437504,-0.0001700680295471102,-0.0,4.198337023657636e-21,-0.0,-8.131516293641283e-20,5.082197683525802e-21,0.0,-0.010803570970892906,0.0007142857066355646,0.013452380895614624,0.0008035714272409678,0.0010714285308495164,-1.3552527156068805e-20,-0.0004761904710903764,3.0437467732081123e-20,4.2657927140384114e-20,-0.0026785715017467737,-0.0005357142654247582,-0.0007142857066355646,1.494064123709649e-20,1.0164395367051604e-20,-0.0,-0.007008928339928389,0.00044642857392318547,0.0008035714272409678,0.0042708334513008595,0.0006696428754366934,-5.464637046480165e-21,2.6239130304526704e-20,-0.00014880952949170023,2.6661204058843288e-20,-0.0,-0.0002678571327123791,-0.0,-0.00044642857392318547,-0.00022321428696159273,-0.0,-0.009143282659351826,0.0005952381179668009,0.0010714285308495164,0.0006696428754366934,0.00839817151427269,-0.0,4.2657927140384114e-20,3.174340174236909e-20,-0.00029761905898340046,-0.0,1.0164395367051604e-20,-0.0005357142654247582,-0.0,-0.0003348214377183467,-0.0012755101779475808,0.00029761905898340046,-0.00029761905898340046,-1.3552527156068805e-20,-5.464637046480165e-21,-0.0,4.251700738677755e-05,6.776263578034403e-21,3.3881317890172014e-21,-0.0,-0.0,-1.8408753669229376e-37,0.0,4.40034120503138e-36,-9.936254283314268e-38,-0.0,0.0007142857066355646,-0.0002040816325461492,-0.0004761904710903764,2.6239130304526704e-20,4.2657927140384114e-20,6.776263578034403e-21,0.0001360544265480712,-7.496894603520077e-21,-1.2187978836769647e-20,-0.0,2.467600051482846e-37,-0.0,-6.018531076210112e-36,2.9870947991634454e-37,-0.0,0.00044642857392318547,-0.00012755101488437504,3.0437467732081123e-20,-0.00014880952949170023,3.174340174236909e-20,3.3881317890172014e-21,-7.496894603520077e-21,4.251700738677755e-05,-7.617486873955225e-21,-0.0,-1.3994457082106105e-21,-0.0,2.710505431213761e-20,-1.6940658945086007e-21,-0.0,0.0005952381179668009,-0.0001700680295471102,4.2657927140384114e-20,2.6661204058843288e-20,-0.00029761905898340046,-0.0,-1.2187978836769647e-20,-7.617486873955225e-21,8.50340147735551e-05,-0.0,-5.278511948908152e-38,-0.0,-5.266214691683848e-36,3.76158192263132e-37,-0.0,0.0008928571478463709,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008035714272409678,4.198337023657636e-21,-0.0005357142654247582,-0.0002678571327123791,1.0164395367051604e-20,-1.8408753669229376e-37,2.467600051482846e-37,-1.3994457082106105e-21,-5.278511948908152e-38,-0.0,0.00017857142665889114,-0.0,-4.98021374569883e-21,-3.3881317890172014e-21,-0.0,0.0010714285308495164,-0.0,-0.0007142857066355646,-0.0,-0.0005357142654247582,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.00037202381645329297,-8.131516293641283e-20,1.494064123709649e-20,-0.00044642857392318547,-0.0,4.40034120503138e-36,-6.018531076210112e-36,2.710505431213761e-20,-5.266214691683848e-36,-0.0,-4.98021374569883e-21,-0.0,7.440476474585012e-05,-5.082197683525802e-21,-0.0,0.0006696428754366934,5.082197683525802e-21,1.0164395367051604e-20,-0.00022321428696159273,-0.0003348214377183467,-9.936254283314268e-38,2.9870947991634454e-37,-1.6940658945086007e-21,3.76158192263132e-37,-0.0,-3.3881317890172014e-21,-0.0,-5.082197683525802e-21,0.00011160714348079637,-0.0,0.0006377550889737904,0.0,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,8.0,4.0,7.0,6.0,0.032669004052877426,-0.005303996615111828,-0.009130527265369892,-0.005920493043959141,-0.006701743230223656,0.00024801588733680546,0.0005952381179668009,0.00037202381645329297,0.00042517005931586027,0.0007440476329065859,0.0006696428754366934,0.0007653061184100807,0.0003100198518950492,0.00047831633128225803,0.00039859695243649185,-0.005303996615111828,0.00275550689548254,0.0005952381179668009,0.00037202381645329297,0.00042517005931586027,-0.00024801588733680546,-0.0001700680295471102,-0.00010629251482896507,-0.00012147716188337654,-2.8322015354022696e-19,-6.227864157661913e-20,-1.2947206723560157e-19,-7.453889935837843e-20,-3.7918925400536856e-20,-1.2643756808314786e-19,-0.009130527265369892,0.0005952381179668009,0.011295351199805737,0.0006696428754366934,0.0007653061184100807,-1.3552527156068805e-20,-0.00039682540227659047,-4.09921275583701e-20,-1.0550998259608722e-19,-0.0022321429569274187,-0.00044642857392318547,-0.0005102040595375001,1.0793296384300731e-21,-7.9883849671012e-20,-2.6551890202189845e-19,-0.005920493043959141,0.00037202381645329297,0.0006696428754366934,0.003585600992664695,0.00047831633128225803,-7.433246932793243e-21,-9.200154804407661e-20,-0.00012400794366840273,-6.594373669917381e-20,-3.7172646283065783e-19,-0.00022321428696159273,-1.699320947090756e-19,-0.00037202381645329297,-0.0001594387722434476,-1.6594931053251226e-19,-0.006701743230223656,0.00042517005931586027,0.0007653061184100807,0.00047831633128225803,0.004872980527579784,-2.0328790734103208e-20,-1.0550998259608722e-19,-2.294261684628542e-20,-0.0001700680295471102,-4.248302432350375e-19,-7.9883849671012e-20,-0.0003061224415432662,1.3552527156068805e-20,-0.00019132652960252017,-0.0005978954141028225,0.00024801588733680546,-0.00024801588733680546,-1.3552527156068805e-20,-7.433246932793243e-21,-2.0328790734103208e-20,3.543083948898129e-05,3.3881317890172014e-21,1.6940658945086007e-21,-3.3881317890172014e-21,5.50671894175498e-36,6.123172512145345e-37,3.640663272783795e-36,4.474891108779263e-22,-1.376756795643895e-37,1.2411833664564611e-36,0.0005952381179668009,-0.0001700680295471102,-0.00039682540227659047,-9.200154804407661e-20,-1.0550998259608722e-19,3.3881317890172014e-21,0.00011337868636474013,1.0102147602576288e-20,1.1649698323292867e-20,1.8881343569348464e-19,3.7762688431166636e-20,4.315735682225861e-20,9.027796614315168e-36,1.039586928311595e-35,3.4585227764084706e-35,0.00037202381645329297,-0.00010629251482896507,-4.09921275583701e-20,-0.00012400794366840273,-2.294261684628542e-20,1.6940658945086007e-21,1.0102147602576288e-20,3.543083948898129e-05,7.281061855954825e-21,2.4489642616785044e-35,1.878203447835972e-21,8.275480229788904e-36,2.371692252312041e-20,-8.470329472543003e-22,6.186750746297512e-36,0.00042517005931586027,-0.00012147716188337654,-1.0550998259608722e-19,-6.594373669917381e-20,-0.0001700680295471102,-3.3881317890172014e-21,1.1649698323292867e-20,7.281061855954825e-21,4.8590864025754854e-05,5.533636212664813e-35,1.0932829276757283e-35,2.5894414093355167e-20,4.513898307157584e-36,1.6184008404450196e-20,5.0575027879493996e-20,0.0007440476329065859,-2.8322015354022696e-19,-0.0022321429569274187,-3.7172646283065783e-19,-4.248302432350375e-19,5.50671894175498e-36,1.8881343569348464e-19,2.4489642616785044e-35,5.533636212664813e-35,0.0007440476329065859,2.4781765050356993e-19,2.8322015354022696e-19,5.86889948451694e-36,4.434444531769094e-35,1.4739259637909209e-34,0.0006696428754366934,-6.227864157661913e-20,-0.00044642857392318547,-0.00022321428696159273,-7.9883849671012e-20,6.123172512145345e-37,3.7762688431166636e-20,1.878203447835972e-21,1.0932829276757283e-35,2.4781765050356993e-19,0.00014880952949170023,5.664402941557569e-20,-3.597765377288414e-22,-1.6940658945086007e-21,2.850937124925722e-35,0.0007653061184100807,-1.2947206723560157e-19,-0.0005102040595375001,-1.699320947090756e-19,-0.0003061224415432662,3.640663272783795e-36,4.315735682225861e-20,8.275480229788904e-36,2.5894414093355167e-20,2.8322015354022696e-19,5.664402941557569e-20,0.0002040816325461492,-3.009265538105056e-36,3.3986418295580265e-20,1.0620756080875938e-19,0.0003100198518950492,-7.453889935837843e-20,1.0793296384300731e-21,-0.00037202381645329297,1.3552527156068805e-20,4.474891108779263e-22,9.027796614315168e-36,2.371692252312041e-20,4.513898307157584e-36,5.86889948451694e-36,-3.597765377288414e-22,-3.009265538105056e-36,6.200397183420137e-05,-2.541098841762901e-21,-5.540600141386362e-36,0.00047831633128225803,-3.7918925400536856e-20,-7.9883849671012e-20,-0.0001594387722434476,-0.00019132652960252017,-1.376756795643895e-37,1.039586928311595e-35,-8.470329472543003e-22,1.6184008404450196e-20,4.434444531769094e-35,-1.6940658945086007e-21,3.3986418295580265e-20,-2.541098841762901e-21,6.377550744218752e-05,6.637972550547461e-20,0.00039859695243649185,-1.2643756808314786e-19,-2.6551890202189845e-19,-1.6594931053251226e-19,-0.0005978954141028225,1.2411833664564611e-36,3.4585227764084706e-35,6.186750746297512e-36,5.0575027879493996e-20,1.4739259637909209e-34,2.850937124925722e-35,1.0620756080875938e-19,-5.540600141386362e-36,6.637972550547461e-20,0.00011957908282056451,8.0,4.0,7.0,7.0,0.028696322813630104,-0.004591836594045162,-0.007908163592219353,-0.0051259566098451614,-0.0051259566098451614,0.00021258502965793014,0.0005102040595375001,0.0003188775444868952,0.0003188775444868952,0.0006377550889737904,0.0005739795742556453,0.0005739795742556453,0.0002657313016243279,0.0003587372484616935,0.0002657313016243279,-0.004591836594045162,0.002374878618866205,0.0005102040595375001,0.0003188775444868952,0.0003188775444868952,-0.00021258502965793014,-0.00014577258843928576,-9.110787505051121e-05,-9.110787505051121e-05,-2.5618629362943603e-18,-4.702806125699527e-19,-4.73588456140764e-19,-7.910711285865792e-19,-3.381653672351204e-19,-7.85237437316549e-19,-0.007908163592219353,0.0005102040595375001,0.009736394509673119,0.0005739795742556453,0.0005739795742556453,-1.3552527156068805e-18,-0.0003401360590942204,-4.888239339518602e-19,-4.925869336547288e-19,-0.0019132653251290321,-0.00038265305920504034,-0.00038265305920504034,-5.674383004894992e-19,-2.2079289087198678e-20,-5.662173302065826e-19,-0.0051259566098451614,0.0003188775444868952,0.0005739795742556453,0.003090454963967204,0.0003587372484616935,-8.057352830883427e-19,-3.421704723635256e-19,-0.00010629251482896507,-2.693936486556441e-19,-1.3285577877822044e-19,-0.00019132652960252017,-3.8963515573697816e-19,-0.0003188775444868952,-0.00011957908282056451,-2.9034690905343657e-19,-0.0051259566098451614,0.0003188775444868952,0.0005739795742556453,0.0003587372484616935,0.003090454963967204,-8.108580643206719e-19,-3.421704723635256e-19,-2.526714170910604e-19,-0.00010629251482896507,-1.3285577877822044e-19,-3.7929904284463937e-19,-0.00019132652960252017,-7.453889935837843e-20,-0.00011957908282056451,-0.0003188775444868952,0.00021258502965793014,-0.00021258502965793014,-1.3552527156068805e-18,-8.057352830883427e-19,-8.108580643206719e-19,3.0369290470844135e-05,7.453889935837843e-20,4.404571325722362e-20,4.743384504624082e-20,2.5961846761619285e-19,5.664402941557569e-20,5.664402941557569e-20,7.841794991624878e-20,3.540251919252837e-20,7.798863671598523e-20,0.0005102040595375001,-0.00014577258843928576,-0.0003401360590942204,-3.421704723635256e-19,-3.421704723635256e-19,7.453889935837843e-20,9.718172805150971e-05,1.2066365515265879e-20,1.2066365515265879e-20,3.331317728749306e-20,8.055652179047967e-22,8.055652179047967e-22,5.48458098497193e-20,6.069003555565607e-21,5.48458098497193e-20,0.0003188775444868952,-9.110787505051121e-05,-4.888239339518602e-19,-0.00010629251482896507,-2.526714170910604e-19,4.404571325722362e-20,1.2066365515265879e-20,3.0369290470844135e-05,6.4929138285566434e-21,1.2475173522067357e-19,3.439690344338544e-20,5.8992550270978585e-21,2.7088591479243245e-20,1.5246593050577406e-20,3.4283369673138266e-20,0.0003188775444868952,-9.110787505051121e-05,-4.925869336547288e-19,-2.693936486556441e-19,-0.00010629251482896507,4.743384504624082e-20,1.2066365515265879e-20,6.4929138285566434e-21,3.0369290470844135e-05,1.2475173522067357e-19,5.975112093692303e-21,3.5575383784680614e-20,3.3744716766827124e-20,2.1949815934288523e-20,2.5688861326722873e-20,0.0006377550889737904,-2.5618629362943603e-18,-0.0019132653251290321,-1.3285577877822044e-19,-1.3285577877822044e-19,2.5961846761619285e-19,3.331317728749306e-20,1.2475173522067357e-19,1.2475173522067357e-19,0.0006377550889737904,-1.4941307828347933e-19,-1.4941307828347933e-19,1.180083973084279e-20,-2.6551890202189845e-20,1.180083973084279e-20,0.0005739795742556453,-4.702806125699527e-19,-0.00038265305920504034,-0.00019132652960252017,-3.7929904284463937e-19,5.664402941557569e-20,8.055652179047967e-22,3.439690344338544e-20,5.975112093692303e-21,-1.4941307828347933e-19,0.00012755101488437504,1.2005859353720899e-20,7.295815074544106e-20,2.202285662861181e-20,5.636236149230431e-20,0.0005739795742556453,-4.73588456140764e-19,-0.00038265305920504034,-3.8963515573697816e-19,-0.00019132652960252017,5.664402941557569e-20,8.055652179047967e-22,5.8992550270978585e-21,3.5575383784680614e-20,-1.4941307828347933e-19,1.2005859353720899e-20,0.00012755101488437504,5.613478342627566e-20,2.6049804495067228e-20,7.232358043099071e-20,0.0002657313016243279,-7.910711285865792e-19,-5.674383004894992e-19,-0.0003188775444868952,-7.453889935837843e-20,7.841794991624878e-20,5.48458098497193e-20,2.7088591479243245e-20,3.3744716766827124e-20,1.180083973084279e-20,7.295815074544106e-20,5.613478342627566e-20,5.3146257414482534e-05,-1.2254718741270751e-20,-9.823215676116158e-21,0.0003587372484616935,-3.381653672351204e-19,-2.2079289087198678e-20,-0.00011957908282056451,-0.00011957908282056451,3.540251919252837e-20,6.069003555565607e-21,1.5246593050577406e-20,2.1949815934288523e-20,-2.6551890202189845e-20,2.202285662861181e-20,2.6049804495067228e-20,-1.2254718741270751e-20,3.98596930608619e-05,5.841031851731782e-20,0.0002657313016243279,-7.85237437316549e-19,-5.662173302065826e-19,-2.9034690905343657e-19,-0.0003188775444868952,7.798863671598523e-20,5.48458098497193e-20,3.4283369673138266e-20,2.5688861326722873e-20,1.180083973084279e-20,5.636236149230431e-20,7.232358043099071e-20,-9.823215676116158e-21,5.841031851731782e-20,5.3146257414482534e-05,8.0,4.0,7.0,8.0,0.0255921371281147,-0.0040488592348992825,-0.0069754463620483875,-0.004520089365541935,-0.0040488592348992825,0.00018601190822664648,0.00044642857392318547,0.00027901786961592734,0.00024801588733680546,0.0005580357392318547,0.0005022321711294353,0.00044642857392318547,0.0002325148816453293,0.00027901786961592734,0.00018601190822664648,-0.0040488592348992825,0.0020868764258921146,0.00044642857392318547,0.00027901786961592734,0.00024801588733680546,-0.00018601190822664648,-0.00012755101488437504,-7.97193861217238e-05,-7.086167897796258e-05,-0.0,-5.490375469981188e-22,-2.0610675146050527e-20,-5.421010862427522e-20,-1.2217780764834997e-20,-3.1733326941002136e-20,-0.0069754463620483875,0.00044642857392318547,0.008556547574698925,0.0005022321711294353,0.00044642857392318547,1.3552527156068805e-20,-0.00029761905898340046,2.3155451064130167e-20,-3.0804900713942324e-21,-0.0016741071594879031,-0.0003348214377183467,-0.00029761905898340046,9.500041703787945e-21,-1.561287734998641e-20,-5.0064544350449405e-20,-0.004520089365541935,0.00027901786961592734,0.0005022321711294353,0.00271577388048172,0.00027901786961592734,2.9391972830125184e-21,2.3376902823747098e-20,-9.300595411332324e-05,-1.7180799816667808e-21,-0.0,-0.00016741071885917336,-1.6940658945086007e-20,-0.00027901786961592734,-9.300595411332324e-05,-2.9730942397861465e-20,-0.0040488592348992825,0.00024801588733680546,0.00044642857392318547,0.00027901786961592734,0.0020868764258921146,-6.776263578034403e-21,1.78109725029397e-20,1.2640106550744469e-20,-7.086167897796258e-05,-0.0,1.5843113864643882e-21,-0.00012755101488437504,-0.0,-7.97193861217238e-05,-0.00018601190822664648,0.00018601190822664648,-0.00018601190822664648,1.3552527156068805e-20,2.9391972830125184e-21,-6.776263578034403e-21,2.6573128707241267e-05,-0.0,-0.0,3.3881317890172014e-21,-0.0,1.1113340789451721e-38,3.291384182302405e-37,-2.5766544814572183e-22,2.674397176823028e-37,-8.115687396943418e-22,0.00044642857392318547,-0.00012755101488437504,-0.00029761905898340046,2.3376902823747098e-20,1.78109725029397e-20,-0.0,8.50340147735551e-05,-6.6791146886023875e-21,-5.0888494596528215e-21,-0.0,-4.4056764863836747e-38,-1.4784366040903593e-36,-4.513898307157584e-36,-8.7740583670223e-37,-2.7448745526240646e-36,0.00027901786961592734,-7.97193861217238e-05,2.3155451064130167e-20,-9.300595411332324e-05,1.2640106550744469e-20,-0.0,-6.6791146886023875e-21,2.6573128707241267e-05,-3.156070872588781e-21,-0.0,1.2889631257270897e-22,-4.721080397802447e-23,1.8634724839594607e-20,-0.0,-2.0115651422725645e-22,0.00024801588733680546,-7.086167897796258e-05,-3.0804900713942324e-21,-1.7180799816667808e-21,-7.086167897796258e-05,3.3881317890172014e-21,-5.0888494596528215e-21,-3.156070872588781e-21,2.0246194253559224e-05,-0.0,4.6385308372364995e-23,5.929230630780102e-21,7.337990451253094e-23,3.490794677337192e-21,1.0994723143341455e-20,0.0005580357392318547,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005022321711294353,-5.490375469981188e-22,-0.0003348214377183467,-0.00016741071885917336,1.5843113864643882e-21,1.1113340789451721e-38,-4.4056764863836747e-38,1.2889631257270897e-22,4.6385308372364995e-23,-0.0,0.00011160714348079637,-8.497944779153277e-23,-3.0014428260555255e-21,-8.470329472543003e-22,1.2176143802733218e-22,0.00044642857392318547,-2.0610675146050527e-20,-0.00029761905898340046,-1.6940658945086007e-20,-0.00012755101488437504,3.291384182302405e-37,-1.4784366040903593e-36,-4.721080397802447e-23,5.929230630780102e-21,-0.0,-8.497944779153277e-23,8.50340147735551e-05,-1.4163241508951703e-22,5.186850571297965e-21,1.419978790745588e-20,0.0002325148816453293,-5.421010862427522e-20,9.500041703787945e-21,-0.00027901786961592734,-0.0,-2.5766544814572183e-22,-4.513898307157584e-36,1.8634724839594607e-20,7.337990451253094e-23,-0.0,-3.0014428260555255e-21,-1.4163241508951703e-22,4.650297705666162e-05,1.9546914264497504e-22,6.032845200896152e-22,0.00027901786961592734,-1.2217780764834997e-20,-1.561287734998641e-20,-9.300595411332324e-05,-7.97193861217238e-05,2.674397176823028e-37,-8.7740583670223e-37,-0.0,3.490794677337192e-21,-0.0,-8.470329472543003e-22,5.186850571297965e-21,1.9546914264497504e-22,2.6573128707241267e-05,7.523142239890864e-21,0.00018601190822664648,-3.1733326941002136e-20,-5.0064544350449405e-20,-2.9730942397861465e-20,-0.00018601190822664648,-8.115687396943418e-22,-2.7448745526240646e-36,-2.0115651422725645e-22,1.0994723143341455e-20,-0.0,1.2176143802733218e-22,1.419978790745588e-20,6.032845200896152e-22,7.523142239890864e-21,2.6573128707241267e-05,8.0,4.0,8.0,3.0,0.05036168918013573,-0.008796296082437038,-0.015104166232049465,-0.008796296082437038,-0.01848958246409893,0.0004340277810115367,0.0010416667209938169,0.0005787037080153823,0.0013020833721384406,0.0013020833721384406,0.0010416667209938169,0.0023437500931322575,0.0004340277810115367,0.0013020833721384406,0.001953125,-0.008796296082437038,0.004683366511017084,0.0010416667209938169,0.0005787037080153823,0.0013020833721384406,-0.0004340277810115367,-0.00029761905898340046,-0.0001653439103392884,-0.00037202381645329297,-0.0,4.013310049223378e-20,-0.0,2.710505431213761e-20,-0.0,-0.0,-0.015104166232049465,0.0010416667209938169,0.01918402686715126,0.0010416667209938169,0.0023437500931322575,2.710505431213761e-20,-0.0006944444612599909,-6.626642841874256e-21,-1.2042029441591914e-19,-0.00390625,-0.0006944444612599909,-0.0015625000232830644,1.2634620339955196e-19,0.0,-0.0,-0.008796296082437038,0.0005787037080153823,0.0010416667209938169,0.004683366511017084,0.0013020833721384406,-2.6811191937179612e-20,-4.0657581468206416e-20,-0.0001653439103392884,-4.385057618084353e-20,-0.0,-0.00029761905898340046,-0.0,-0.0004340277810115367,-0.00037202381645329297,-0.0,-0.01848958246409893,0.0013020833721384406,0.0023437500931322575,0.0013020833721384406,0.03802083432674408,-2.710505431213761e-20,-1.1858461261560205e-19,-4.1504614415460717e-20,-0.0013020833721384406,-0.0,-1.8356862431817114e-21,-0.0023437500931322575,-0.0,-0.0013020833721384406,-0.01171875,0.0004340277810115367,-0.0004340277810115367,2.710505431213761e-20,-2.6811191937179612e-20,-2.710505431213761e-20,6.200397183420137e-05,-0.0,3.3881317890172014e-21,6.776263578034403e-21,-0.0,8.377692084938834e-23,0.0,1.2561481781441275e-21,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-0.0006944444612599909,-4.0657581468206416e-20,-1.1858461261560205e-19,-0.0,0.00019841270113829523,1.3552527156068805e-20,3.3881317890172014e-20,-0.0,-3.2312684262229115e-22,-0.0,-8.309625000850786e-22,-0.0,-0.0,0.0005787037080153823,-0.0001653439103392884,-6.626642841874256e-21,-0.0001653439103392884,-4.1504614415460717e-20,3.3881317890172014e-21,1.3552527156068805e-20,4.724111931864172e-05,1.1858461261560205e-20,-0.0,-1.1659200399020856e-20,-0.0,-1.0164395367051604e-20,-0.0,0.0,0.0013020833721384406,-0.00037202381645329297,-1.2042029441591914e-19,-4.385057618084353e-20,-0.0013020833721384406,6.776263578034403e-21,3.3881317890172014e-20,1.1858461261560205e-20,0.00037202381645329297,-0.0,5.244817837662033e-22,-0.0,2.0593741520967925e-22,-0.0,-0.0,0.0013020833721384406,-0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,4.013310049223378e-20,-0.0006944444612599909,-0.00029761905898340046,-1.8356862431817114e-21,8.377692084938834e-23,-3.2312684262229115e-22,-1.1659200399020856e-20,5.244817837662033e-22,-0.0,0.00019841270113829523,-0.0,-3.526795047779792e-20,-0.0,-0.0,0.0023437500931322575,-0.0,-0.0015625000232830644,-0.0,-0.0023437500931322575,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0,0.0004340277810115367,2.710505431213761e-20,1.2634620339955196e-19,-0.0004340277810115367,-0.0,1.2561481781441275e-21,-8.309625000850786e-22,-1.0164395367051604e-20,2.0593741520967925e-22,-0.0,-3.526795047779792e-20,-0.0,6.200397183420137e-05,0.0,-0.0,0.0013020833721384406,-0.0,0.0,-0.00037202381645329297,-0.0013020833721384406,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.00037202381645329297,-0.0,0.001953125,-0.0,-0.0,-0.0,-0.01171875,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.005859375,8.0,4.0,8.0,4.0,0.04044704884290695,-0.0067925346083939075,-0.011679687537252903,-0.0067925346083939075,-0.011679687537252903,0.00032552084303461015,0.0007812500116415322,0.0004340277810115367,0.0007812500116415322,0.0009765625,0.0007812500116415322,0.0014062500558793545,0.00032552084303461015,0.0007812500116415322,0.0009765625,-0.0067925346083939075,0.0035683284513652325,0.0007812500116415322,0.0004340277810115367,0.0007812500116415322,-0.00032552084303461015,-0.00022321428696159273,-0.00012400794366840273,-0.00022321428696159273,-0.0,4.089968366256876e-20,-0.0,2.710505431213761e-20,6.776263578034403e-21,-0.0,-0.011679687537252903,0.0007812500116415322,0.014622395858168602,0.0007812500116415322,0.0014062500558793545,4.0657581468206416e-20,-0.0005208333604969084,4.470847799054109e-21,-5.695180522693077e-20,-0.0029296875,-0.0005208333604969084,-0.0009374999790452421,1.0112116906103399e-19,1.334076891925523e-20,-0.0,-0.0067925346083939075,0.0004340277810115367,0.0007812500116415322,0.0035683284513652325,0.0007812500116415322,1.2948989039286267e-20,-2.710505431213761e-20,-0.00012400794366840273,-4.0525113016750024e-21,-0.0,-0.00022321428696159273,-0.0,-0.00032552084303461015,-0.00022321428696159273,-0.0,-0.011679687537252903,0.0007812500116415322,0.0014062500558793545,0.0007812500116415322,0.014622395858168602,-0.0,-5.7809998650106e-20,-1.1858461261560205e-20,-0.0005208333604969084,-0.0,1.4198960726843327e-20,-0.0009374999790452421,-0.0,-0.0005208333604969084,-0.0029296875,0.00032552084303461015,-0.00032552084303461015,4.0657581468206416e-20,1.2948989039286267e-20,-0.0,4.650297705666162e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-0.0,-0.0,-6.99329004254321e-22,0.0,-2.585467256837113e-22,-6.785928929037111e-22,-0.0,0.0007812500116415322,-0.00022321428696159273,-0.0005208333604969084,-2.710505431213761e-20,-5.7809998650106e-20,-3.3881317890172014e-21,0.00014880952949170023,8.470329472543003e-21,1.6940658945086007e-20,-0.0,-3.2312684262229115e-22,-0.0,-1.876969315970521e-22,-4.235164736271502e-22,-0.0,0.0004340277810115367,-0.00012400794366840273,4.470847799054109e-21,-0.00012400794366840273,-1.1858461261560205e-20,-3.3881317890172014e-21,8.470329472543003e-21,3.543083948898129e-05,3.3881317890172014e-21,-0.0,-9.747714442587954e-21,-0.0,-6.776263578034403e-21,-0.0,0.0,0.0007812500116415322,-0.00022321428696159273,-5.695180522693077e-20,-4.0525113016750024e-21,-0.0005208333604969084,-0.0,1.6940658945086007e-20,3.3881317890172014e-21,0.00014880952949170023,-0.0,-6.687142843993288e-22,-0.0,-7.660122622315435e-22,-6.687142843993288e-22,-0.0,0.0009765625,-0.0,-0.0029296875,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,4.089968366256876e-20,-0.0005208333604969084,-0.00022321428696159273,1.4198960726843327e-20,-6.99329004254321e-22,-3.2312684262229115e-22,-9.747714442587954e-21,-6.687142843993288e-22,-0.0,0.00014880952949170023,-0.0,-2.8704065522036505e-20,-3.3881317890172014e-21,-0.0,0.0014062500558793545,-0.0,-0.0009374999790452421,-0.0,-0.0009374999790452421,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0,-0.0,-0.0,0.00032552084303461015,2.710505431213761e-20,1.0112116906103399e-19,-0.00032552084303461015,-0.0,-2.585467256837113e-22,-1.876969315970521e-22,-6.776263578034403e-21,-7.660122622315435e-22,-0.0,-2.8704065522036505e-20,-0.0,4.650297705666162e-05,6.712336410733405e-22,-0.0,0.0007812500116415322,6.776263578034403e-21,1.334076891925523e-20,-0.00022321428696159273,-0.0005208333604969084,-6.785928929037111e-22,-4.235164736271502e-22,-0.0,-6.687142843993288e-22,-0.0,-3.3881317890172014e-21,-0.0,6.712336410733405e-22,0.00014880952949170023,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0029296875,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009765625,8.0,4.0,8.0,5.0,0.03385912626981735,-0.005538194440305233,-0.009531250223517418,-0.005538194440305233,-0.008065476082265377,0.0002604166802484542,0.0006249999860301614,0.00034722223062999547,0.0005208333604969084,0.0007812500116415322,0.0006249999860301614,0.0009374999790452421,0.0002604166802484542,0.0005208333604969084,0.0005580357392318547,-0.005538194440305233,0.0028844245243817568,0.0006249999860301614,0.00034722223062999547,0.0005208333604969084,-0.0002604166802484542,-0.00017857142665889114,-9.920635056914762e-05,-0.00014880952949170023,-0.0,2.6597740565049718e-20,-0.0,1.3552527156068805e-20,3.3881317890172014e-21,-0.0,-0.009531250223517418,0.0006249999860301614,0.011822916567325592,0.0006249999860301614,0.0009374999790452421,-0.0,-0.00041666667675599456,-1.1845833226676525e-22,-4.541433204830662e-20,-0.0023437500931322575,-0.00041666667675599456,-0.0006249999860301614,6.887508384430274e-20,5.929230630780102e-21,-0.0,-0.005538194440305233,0.00034722223062999547,0.0006249999860301614,0.0028844245243817568,0.0005208333604969084,-7.28767930085525e-21,-2.710505431213761e-20,-9.920635056914762e-05,-3.3881317890172014e-21,-0.0,-0.00017857142665889114,-0.0,-0.0002604166802484542,-0.00014880952949170023,-0.0,-0.008065476082265377,0.0005208333604969084,0.0009374999790452421,0.0005208333604969084,0.007380952592939138,-0.0,-4.743384504624082e-20,-0.0,-0.0002604166802484542,-0.0,7.948743628714303e-21,-0.00046874998952262104,1.3552527156068805e-20,-0.0002604166802484542,-0.0011160714784637094,0.0002604166802484542,-0.0002604166802484542,-0.0,-7.28767930085525e-21,-0.0,3.720238237292506e-05,-3.3881317890172014e-21,-0.0,3.3881317890172014e-21,-0.0,-2.1714359457601444e-22,0.0,5.23901636523842e-22,3.3561682053667026e-22,-0.0,0.0006249999860301614,-0.00017857142665889114,-0.00041666667675599456,-2.710505431213761e-20,-4.743384504624082e-20,-3.3881317890172014e-21,0.0001190476177725941,6.776263578034403e-21,1.3552527156068805e-20,-0.0,-1.34120919415326e-22,-0.0,4.74060218085177e-22,-0.0,-0.0,0.00034722223062999547,-9.920635056914762e-05,-1.1845833226676525e-22,-9.920635056914762e-05,-0.0,-0.0,6.776263578034403e-21,2.8344671591185033e-05,1.6940658945086007e-21,-0.0,-6.7424182392697025e-21,-0.0,-5.082197683525802e-21,-1.6940658945086007e-21,0.0,0.0005208333604969084,-0.00014880952949170023,-4.541433204830662e-20,-3.3881317890172014e-21,-0.0002604166802484542,3.3881317890172014e-21,1.3552527156068805e-20,1.6940658945086007e-21,7.440476474585012e-05,-0.0,-5.770037641825837e-22,-0.0,-2.213047664312956e-22,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0023437500931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,2.6597740565049718e-20,-0.00041666667675599456,-0.00017857142665889114,7.948743628714303e-21,-2.1714359457601444e-22,-1.34120919415326e-22,-6.7424182392697025e-21,-5.770037641825837e-22,-0.0,0.0001190476177725941,-0.0,-2.0152654578004832e-20,-1.6940658945086007e-21,-0.0,0.0009374999790452421,-0.0,-0.0006249999860301614,-0.0,-0.00046874998952262104,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,0.0002604166802484542,1.3552527156068805e-20,6.887508384430274e-20,-0.0002604166802484542,1.3552527156068805e-20,5.23901636523842e-22,4.74060218085177e-22,-5.082197683525802e-21,-2.213047664312956e-22,-0.0,-2.0152654578004832e-20,-0.0,3.720238237292506e-05,-2.2694089865788366e-21,-0.0,0.0005208333604969084,3.3881317890172014e-21,5.929230630780102e-21,-0.00014880952949170023,-0.0002604166802484542,3.3561682053667026e-22,-0.0,-1.6940658945086007e-21,-0.0,-0.0,-1.6940658945086007e-21,-0.0,-2.2694089865788366e-21,7.440476474585012e-05,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0011160714784637094,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,8.0,4.0,8.0,6.0,0.029142897576093674,-0.004677166230976582,-0.008054315112531185,-0.004677166230976582,-0.0059105283580720425,0.00021701389050576836,0.0005208333604969084,0.00028935185400769114,0.00037202381645329297,0.0006510416860692203,0.0005208333604969084,0.0006696428754366934,0.00021701389050576836,0.00037202381645329297,0.00034877232974395156,-0.004677166230976582,0.002421402605250478,0.0005208333604969084,0.00028935185400769114,0.00037202381645329297,-0.00021701389050576836,-0.00014880952949170023,-8.26719551696442e-05,-0.00010629251482896507,-0.0,2.339985062339691e-20,-0.0,2.0328790734103208e-20,2.964615315390051e-21,0.0,-0.008054315112531185,0.0005208333604969084,0.00992683507502079,0.0005208333604969084,0.0006696428754366934,1.3552527156068805e-20,-0.00034722223062999547,2.886786424698691e-21,-2.8531808390646604e-20,-0.001953125,-0.00034722223062999547,-0.00044642857392318547,5.935497170155045e-20,2.964615315390051e-21,-0.0,-0.004677166230976582,0.00028935185400769114,0.0005208333604969084,0.002421402605250478,0.00037202381645329297,-4.692877736916582e-22,-2.0513064602595002e-20,-8.26719551696442e-05,-6.793287827457796e-21,-0.0,-0.00014880952949170023,-0.0,-0.00021701389050576836,-0.00010629251482896507,-0.0,-0.0059105283580720425,0.00037202381645329297,0.0006696428754366934,0.00037202381645329297,0.0042824591509997845,1.3552527156068805e-20,-2.8531808390646604e-20,-3.828672512067745e-21,-0.00014880952949170023,-0.0,2.964615315390051e-21,-0.0002678571327123791,1.3552527156068805e-20,-0.00014880952949170023,-0.0005231584655120969,0.00021701389050576836,-0.00021701389050576836,1.3552527156068805e-20,-4.692877736916582e-22,1.3552527156068805e-20,3.100198591710068e-05,-0.0,-1.6940658945086007e-21,-3.3881317890172014e-21,-0.0,1.9462089546164455e-37,0.0,4.474891108779263e-22,-0.0,-0.0,0.0005208333604969084,-0.00014880952949170023,-0.00034722223062999547,-2.0513064602595002e-20,-2.8531808390646604e-20,-0.0,9.920635056914762e-05,5.8608755430418886e-21,8.151945716066782e-21,-0.0,-1.6588893183012348e-36,-0.0,-1.504632769052528e-36,-2.1017093636444132e-37,-0.0,0.00028935185400769114,-8.26719551696442e-05,2.886786424698691e-21,-8.26719551696442e-05,-3.828672512067745e-21,-1.6940658945086007e-21,5.8608755430418886e-21,2.362055965932086e-05,1.9409393215741156e-21,-0.0,-6.685671952882074e-21,-0.0,-6.776263578034403e-21,-8.470329472543003e-22,-0.0,0.00037202381645329297,-0.00010629251482896507,-2.8531808390646604e-20,-6.793287827457796e-21,-0.00014880952949170023,-3.3881317890172014e-21,8.151945716066782e-21,1.9409393215741156e-21,4.251700738677755e-05,-0.0,-4.627536841540147e-37,-0.0,-5.64237288394698e-37,-0.0,-0.0,0.0006510416860692203,-0.0,-0.001953125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006510416860692203,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,2.339985062339691e-20,-0.00034722223062999547,-0.00014880952949170023,2.964615315390051e-21,1.9462089546164455e-37,-1.6588893183012348e-36,-6.685671952882074e-21,-4.627536841540147e-37,-0.0,9.920635056914762e-05,-0.0,-1.6958562881703805e-20,-8.470329472543003e-22,-0.0,0.0006696428754366934,-0.0,-0.00044642857392318547,-0.0,-0.0002678571327123791,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,0.00021701389050576836,2.0328790734103208e-20,5.935497170155045e-20,-0.00021701389050576836,1.3552527156068805e-20,4.474891108779263e-22,-1.504632769052528e-36,-6.776263578034403e-21,-5.64237288394698e-37,-0.0,-1.6958562881703805e-20,-0.0,3.100198591710068e-05,-1.1347044932894183e-21,-0.0,0.00037202381645329297,2.964615315390051e-21,2.964615315390051e-21,-0.00010629251482896507,-0.00014880952949170023,-0.0,-2.1017093636444132e-37,-8.470329472543003e-22,-0.0,-0.0,-8.470329472543003e-22,-0.0,-1.1347044932894183e-21,4.251700738677755e-05,-0.0,0.00034877232974395156,0.0,-0.0,-0.0,-0.0005231584655120969,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010463169746799394,8.0,4.0,8.0,7.0,0.0255921371281147,-0.0040488592348992825,-0.0069754463620483875,-0.0040488592348992825,-0.004520089365541935,0.00018601190822664648,0.00044642857392318547,0.00024801588733680546,0.00027901786961592734,0.0005580357392318547,0.00044642857392318547,0.0005022321711294353,0.00018601190822664648,0.00027901786961592734,0.0002325148816453293,-0.0040488592348992825,0.0020868764258921146,0.00044642857392318547,0.00024801588733680546,0.00027901786961592734,-0.00018601190822664648,-0.00012755101488437504,-7.086167897796258e-05,-7.97193861217238e-05,-0.0,-2.1341510219873867e-20,-7.673171315699102e-21,-4.0657581468206416e-20,-1.8850082604542495e-20,-6.261812166988972e-20,-0.0069754463620483875,0.00044642857392318547,0.008556547574698925,0.00044642857392318547,0.0005022321711294353,1.3552527156068805e-20,-0.00029761905898340046,-3.364569460411336e-21,1.551010177446383e-20,-0.0016741071594879031,-0.00029761905898340046,-0.0003348214377183467,-6.26687153965747e-20,-3.0545136921032264e-20,-6.79005422980931e-21,-0.0040488592348992825,0.00024801588733680546,0.00044642857392318547,0.0020868764258921146,0.00027901786961592734,-1.137709990229438e-21,1.78109725029397e-20,-7.086167897796258e-05,-6.034123029344865e-21,-0.0,-0.00012755101488437504,-3.3881317890172014e-20,-0.00018601190822664648,-7.97193861217238e-05,-6.347099011787164e-20,-0.004520089365541935,0.00027901786961592734,0.0005022321711294353,0.00027901786961592734,0.00271577388048172,-0.0,2.3376902823747098e-20,1.4340675183466987e-20,-9.300595411332324e-05,-0.0,1.3259732482257918e-21,-0.00016741071885917336,-0.0,-9.300595411332324e-05,-0.00027901786961592734,0.00018601190822664648,-0.00018601190822664648,1.3552527156068805e-20,-1.137709990229438e-21,-0.0,2.6573128707241267e-05,-0.0,1.6940658945086007e-21,-0.0,-0.0,3.1942062637751447e-37,4.70197740328915e-38,-2.037509957029942e-22,2.465970509524652e-37,-2.4759304491591925e-22,0.00044642857392318547,-0.00012755101488437504,-0.00029761905898340046,1.78109725029397e-20,2.3376902823747098e-20,-0.0,8.50340147735551e-05,-5.0888494596528215e-21,-6.6791146886023875e-21,-0.0,-1.535113902931623e-36,-6.422829763080633e-37,-3.009265538105056e-36,-1.5793129640493182e-36,-5.0199126084529293e-36,0.00024801588733680546,-7.086167897796258e-05,-3.364569460411336e-21,-7.086167897796258e-05,1.4340675183466987e-20,1.6940658945086007e-21,-5.0888494596528215e-21,2.0246194253559224e-05,-4.1931469499900056e-21,-0.0,6.037940661742253e-21,1.4249940793423475e-23,1.1858461261560205e-20,-0.0,4.830216148596153e-23,0.00027901786961592734,-7.97193861217238e-05,1.551010177446383e-20,-6.034123029344865e-21,-9.300595411332324e-05,-0.0,-6.6791146886023875e-21,-4.1931469499900056e-21,2.6573128707241267e-05,-0.0,6.957248944158707e-23,2.541098841762901e-21,2.318843882904936e-22,6.283360868180832e-21,2.144123233571339e-20,0.0005580357392318547,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-2.1341510219873867e-20,-0.00029761905898340046,-0.00012755101488437504,1.3259732482257918e-21,3.1942062637751447e-37,-1.535113902931623e-36,6.037940661742253e-21,6.957248944158707e-23,-0.0,8.50340147735551e-05,2.564989279707353e-23,1.7873284083106805e-20,-8.470329472543003e-22,2.0871746201387396e-22,0.0005022321711294353,-7.673171315699102e-21,-0.0003348214377183467,-3.3881317890172014e-20,-0.00016741071885917336,4.70197740328915e-38,-6.422829763080633e-37,1.4249940793423475e-23,2.541098841762901e-21,-0.0,2.564989279707353e-23,0.00011160714348079637,3.7406092807799586e-23,1.1169916604347205e-20,2.0198478283676995e-21,0.00018601190822664648,-4.0657581468206416e-20,-6.26687153965747e-20,-0.00018601190822664648,-0.0,-2.037509957029942e-22,-3.009265538105056e-36,1.1858461261560205e-20,2.318843882904936e-22,-0.0,1.7873284083106805e-20,3.7406092807799586e-23,2.6573128707241267e-05,1.6780841026833513e-22,-5.854143719621095e-23,0.00027901786961592734,-1.8850082604542495e-20,-3.0545136921032264e-20,-7.97193861217238e-05,-9.300595411332324e-05,2.465970509524652e-37,-1.5793129640493182e-36,-0.0,6.283360868180832e-21,-0.0,-8.470329472543003e-22,1.1169916604347205e-20,1.6780841026833513e-22,2.6573128707241267e-05,2.1144033773323903e-20,0.0002325148816453293,-6.261812166988972e-20,-6.79005422980931e-21,-6.347099011787164e-20,-0.00027901786961592734,-2.4759304491591925e-22,-5.0199126084529293e-36,4.830216148596153e-23,2.144123233571339e-20,-0.0,2.0871746201387396e-22,2.0198478283676995e-21,-5.854143719621095e-23,2.1144033773323903e-20,4.650297705666162e-05,8.0,4.0,8.0,8.0,0.02281901054084301,-0.0035698784049600363,-0.006152343936264515,-0.0035698784049600363,-0.0035698784049600363,0.00016276042151730508,0.0003906250058207661,0.00021701389050576836,0.00021701389050576836,0.00048828125,0.0003906250058207661,0.0003906250058207661,0.00016276042151730508,0.00021701389050576836,0.00016276042151730508,-0.0035698784049600363,0.0018337673973292112,0.0003906250058207661,0.00021701389050576836,0.00021701389050576836,-0.00016276042151730508,-0.00011160714348079637,-6.200397183420137e-05,-6.200397183420137e-05,-0.0,1.7888672550557132e-20,1.754181730202032e-20,1.0164395367051604e-20,7.583494112864557e-21,6.571683798753496e-21,-0.006152343936264515,0.0003906250058207661,0.007519531063735485,0.0003906250058207661,0.0003906250058207661,-0.0,-0.0002604166802484542,-2.9056253823702295e-22,5.629171949049097e-23,-0.00146484375,-0.0002604166802484542,-0.0002604166802484542,5.0424274212856207e-20,1.1996156945188307e-20,5.726399482233564e-20,-0.0035698784049600363,0.00021701389050576836,0.0003906250058207661,0.0018337673973292112,0.00021701389050576836,3.641586310272628e-21,-1.783238064805091e-20,-6.200397183420137e-05,-2.352686899263131e-22,-0.0,-0.00011160714348079637,1.0164395367051604e-20,-0.00016276042151730508,-6.200397183420137e-05,1.503571369316467e-20,-0.0035698784049600363,0.00021701389050576836,0.0003906250058207661,0.00021701389050576836,0.0018337673973292112,3.3881317890172014e-21,-1.783238064805091e-20,-4.559497488471499e-21,-6.200397183420137e-05,-0.0,4.847294545432081e-22,-0.00011160714348079637,3.3881317890172014e-21,-6.200397183420137e-05,-0.00016276042151730508,0.00016276042151730508,-0.00016276042151730508,-0.0,3.641586310272628e-21,3.3881317890172014e-21,2.325148852833081e-05,-0.0,-1.6940658945086007e-21,-1.6940658945086007e-21,-0.0,2.056760193063959e-37,-0.0,1.1296807493659323e-22,1.139688484565737e-37,5.597170828241284e-22,0.0003906250058207661,-0.00011160714348079637,-0.0002604166802484542,-1.783238064805091e-20,-1.783238064805091e-20,-0.0,7.440476474585012e-05,5.0949656686449555e-21,5.0949656686449555e-21,-0.0,-1.4699410135478297e-36,-1.4414393650898275e-36,-7.52316384526264e-37,-6.231479206764642e-37,-9.310056599080823e-37,0.00021701389050576836,-6.200397183420137e-05,-2.9056253823702295e-22,-6.200397183420137e-05,-4.559497488471499e-21,-1.6940658945086007e-21,5.0949656686449555e-21,1.7715419744490646e-05,1.3043780989038325e-21,-0.0,-5.082197683525802e-21,7.024972337327569e-23,-3.3881317890172014e-21,-4.235164736271502e-22,1.8108964722508712e-22,0.00021701389050576836,-6.200397183420137e-05,5.629171949049097e-23,-2.352686899263131e-22,-6.200397183420137e-05,-1.6940658945086007e-21,5.0949656686449555e-21,1.3043780989038325e-21,1.7715419744490646e-05,-0.0,-2.885149582496568e-23,-5.082197683525802e-21,2.396389036105906e-22,-1.7431961011986674e-21,-3.269530123879401e-21,0.00048828125,-0.0,-0.00146484375,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00048828125,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003906250058207661,1.7888672550557132e-20,-0.0002604166802484542,-0.00011160714348079637,4.847294545432081e-22,2.056760193063959e-37,-1.4699410135478297e-36,-5.082197683525802e-21,-2.885149582496568e-23,-0.0,7.440476474585012e-05,1.264494932366541e-22,-1.4591341605226098e-20,-0.0,-7.573517180736948e-23,0.0003906250058207661,1.754181730202032e-20,-0.0002604166802484542,1.0164395367051604e-20,-0.00011160714348079637,-0.0,-1.4414393650898275e-36,7.024972337327569e-23,-5.082197683525802e-21,-0.0,1.264494932366541e-22,7.440476474585012e-05,1.844055135996569e-22,-3.427473355211404e-21,-1.62854074997347e-20,0.00016276042151730508,1.0164395367051604e-20,5.0424274212856207e-20,-0.00016276042151730508,3.3881317890172014e-21,1.1296807493659323e-22,-7.52316384526264e-37,-3.3881317890172014e-21,2.396389036105906e-22,-0.0,-1.4591341605226098e-20,1.844055135996569e-22,2.325148852833081e-05,-1.498289449520275e-21,3.9147703311200534e-22,0.00021701389050576836,7.583494112864557e-21,1.1996156945188307e-20,-6.200397183420137e-05,-6.200397183420137e-05,1.139688484565737e-37,-6.231479206764642e-37,-4.235164736271502e-22,-1.7431961011986674e-21,-0.0,-0.0,-3.427473355211404e-21,-1.498289449520275e-21,1.7715419744490646e-05,-5.291418640745599e-21,0.00016276042151730508,6.571683798753496e-21,5.726399482233564e-20,1.503571369316467e-20,-0.00016276042151730508,5.597170828241284e-22,-9.310056599080823e-37,1.8108964722508712e-22,-3.269530123879401e-21,-0.0,-7.573517180736948e-23,-1.62854074997347e-20,3.9147703311200534e-22,-5.291418640745599e-21,2.325148852833081e-05,8.0,5.0,3.0,3.0,0.09169973433017731,-0.017592592164874077,-0.025529099628329277,-0.03680555522441864,-0.03680555522441864,0.0009259259095415473,0.0018518518190830946,0.0027777778450399637,0.0027777778450399637,0.0019841270986944437,0.004166666883975267,0.004166666883975267,0.004166666883975267,0.0062500000931322575,0.004166666883975267,-0.017592592164874077,0.009656084701418877,0.0018518518190830946,0.0027777778450399637,0.0027777778450399637,-0.0009259259095415473,-0.0005291005363687873,-0.0007936508045531809,-0.0007936508045531809,-4.336808689942018e-19,-1.734723475976807e-18,-1.734723475976807e-18,-1.3877787807814457e-17,-2.6020852139652106e-18,-1.3877787807814457e-17,-0.025529099628329277,0.0018518518190830946,0.024669311940670013,0.004166666883975267,0.004166666883975267,-8.673617379884035e-19,-0.0009259259095415473,-3.1295425150287835e-18,-2.8190813652126246e-18,-0.003968254197388887,-0.0020833334419876337,-0.0020833334419876337,-1.734723475976807e-18,-2.710505431213761e-18,-2.6020852139652106e-18,-0.03680555522441864,0.0027777778450399637,0.004166666883975267,0.07847221940755844,0.0062500000931322575,-2.168404344971009e-19,-3.5236570605778894e-18,-0.0027777778450399637,-5.121575202996083e-18,-1.4094628242311558e-18,-0.004166666883975267,1.4566349700111001e-18,-0.02500000037252903,-0.0062500000931322575,-5.204170427930421e-18,-0.03680555522441864,0.0027777778450399637,0.004166666883975267,0.0062500000931322575,0.07847221940755844,-7.589415207398531e-19,-4.065758146820642e-18,-5.800481622797449e-18,-0.0027777778450399637,-1.1384122811097797e-18,9.75781955236954e-19,-0.004166666883975267,-3.0357660829594124e-18,-0.0062500000931322575,-0.02500000037252903,0.0009259259095415473,-0.0009259259095415473,-8.673617379884035e-19,-2.168404344971009e-19,-7.589415207398531e-19,0.00013227513409219682,-4.0657581468206416e-20,-1.3552527156068805e-19,-5.421010862427522e-20,-1.0842021724855044e-19,-2.710505431213761e-20,1.3552527156068805e-19,5.421010862427522e-19,-2.710505431213761e-20,6.505213034913027e-19,0.0018518518190830946,-0.0005291005363687873,-0.0009259259095415473,-3.5236570605778894e-18,-4.065758146820642e-18,-4.0657581468206416e-20,0.00026455026818439364,-0.0,1.3552527156068805e-20,9.486769009248164e-20,2.439454888092385e-19,1.6263032587282567e-19,1.2197274440461925e-18,4.87890977618477e-19,1.5449880957918438e-18,0.0027777778450399637,-0.0007936508045531809,-3.1295425150287835e-18,-0.0027777778450399637,-5.800481622797449e-18,-1.3552527156068805e-19,-0.0,0.0007936508045531809,-2.4202173812307865e-20,5.213804703922403e-19,7.835666358767685e-19,3.2537937801294683e-19,3.958569601504183e-18,1.096048329435453e-18,2.0993864626111156e-18,0.0027777778450399637,-0.0007936508045531809,-2.8190813652126246e-18,-5.121575202996083e-18,-0.0027777778450399637,-5.421010862427522e-20,1.3552527156068805e-20,-2.4202173812307865e-20,0.0007936508045531809,5.213804703922403e-19,4.0761811395266926e-19,3.7237293032876216e-19,1.8791041295851816e-18,7.435965965939585e-19,3.12149652921048e-18,0.0019841270986944437,-4.336808689942018e-19,-0.003968254197388887,-1.4094628242311558e-18,-1.1384122811097797e-18,-1.0842021724855044e-19,9.486769009248164e-20,5.213804703922403e-19,5.213804703922403e-19,0.0009920635493472219,-6.148750923666722e-19,-7.029880255770458e-19,2.4422608398265297e-19,3.1126852979279888e-19,2.2219785068005957e-19,0.004166666883975267,-1.734723475976807e-18,-0.0020833334419876337,-0.004166666883975267,9.75781955236954e-19,-2.710505431213761e-20,2.439454888092385e-19,7.835666358767685e-19,4.0761811395266926e-19,-6.148750923666722e-19,0.0020833334419876337,-4.9745499495718e-19,-2.918357927970014e-18,8.648476388388223e-20,-6.979119283505376e-19,0.004166666883975267,-1.734723475976807e-18,-0.0020833334419876337,1.4566349700111001e-18,-0.004166666883975267,1.3552527156068805e-19,1.6263032587282567e-19,3.2537937801294683e-19,3.7237293032876216e-19,-7.029880255770458e-19,-4.9745499495718e-19,0.0020833334419876337,-5.088521996296653e-19,-4.625929510532498e-19,-2.4980019046682757e-18,0.004166666883975267,-1.3877787807814457e-17,-1.734723475976807e-18,-0.02500000037252903,-3.0357660829594124e-18,5.421010862427522e-19,1.2197274440461925e-18,3.958569601504183e-18,1.8791041295851816e-18,2.4422608398265297e-19,-2.918357927970014e-18,-5.088521996296653e-19,0.012500000186264515,-1.0596898124058377e-18,-8.221080825429111e-19,0.0062500000931322575,-2.6020852139652106e-18,-2.710505431213761e-18,-0.0062500000931322575,-0.0062500000931322575,-2.710505431213761e-20,4.87890977618477e-19,1.096048329435453e-18,7.435965965939585e-19,3.1126852979279888e-19,8.648476388388223e-20,-4.625929510532498e-19,-1.0596898124058377e-18,0.0062500000931322575,8.960224088400237e-19,0.004166666883975267,-1.3877787807814457e-17,-2.6020852139652106e-18,-5.204170427930421e-18,-0.02500000037252903,6.505213034913027e-19,1.5449880957918438e-18,2.0993864626111156e-18,3.12149652921048e-18,2.2219785068005957e-19,-6.979119283505376e-19,-2.4980019046682757e-18,-8.221080825429111e-19,8.960224088400237e-19,0.012500000186264515,8.0,5.0,3.0,4.0,0.07408729940652847,-0.013611110858619213,-0.019771825522184372,-0.028541667386889458,-0.023333333432674408,0.0006944444612599909,0.0013888889225199819,0.0020833334419876337,0.0016666667070239782,0.0014880952658131719,0.0031250000465661287,0.0024999999441206455,0.0031250000465661287,0.0037499999161809683,0.0020833334419876337,-0.013611110858619213,0.007361111231148243,0.0013888889225199819,0.0020833334419876337,0.0016666667070239782,-0.0006944444612599909,-0.00039682540227659047,-0.0005952381179668009,-0.0004761904710903764,2.168404344971009e-18,-4.336808689942018e-19,6.505213034913027e-19,5.204170427930421e-18,4.336808689942018e-19,-2.6020852139652106e-18,-0.019771825522184372,0.0013888889225199819,0.018814483657479286,0.0031250000465661287,0.0024999999441206455,2.168404344971009e-19,-0.0006944444612599909,9.271756850699958e-19,1.2160439053809173e-18,-0.0029761905316263437,-0.0015625000232830644,-0.0012499999720603228,8.673617379884035e-19,9.75781955236954e-19,3.686287386450715e-18,-0.028541667386889458,0.0020833334419876337,0.0031250000465661287,0.05979166552424431,0.0037499999161809683,4.336808689942018e-19,7.047314121155779e-19,-0.0020833334419876337,2.60862655824928e-18,-1.4094628242311558e-18,-0.0031250000465661287,1.4996806219077471e-18,-0.01875000074505806,-0.0037499999161809683,1.496198998029996e-17,-0.023333333432674408,0.0016666667070239782,0.0024999999441206455,0.0037499999161809683,0.030138889327645302,-1.1926223897340549e-18,1.3010426069826053e-18,1.4907779871675686e-18,-0.0011111111380159855,1.7076184216646695e-18,1.0299920638612292e-18,-0.0016666667070239782,3.2851325826310784e-17,-0.0024999999441206455,-0.0062500000931322575,0.0006944444612599909,-0.0006944444612599909,2.168404344971009e-19,4.336808689942018e-19,-1.1926223897340549e-18,9.920635056914762e-05,-0.0,1.3552527156068805e-20,9.486769009248164e-20,-1.6263032587282567e-19,0.0,8.131516293641283e-20,-3.7947076036992655e-19,-2.710505431213761e-20,2.439454888092385e-19,0.0013888889225199819,-0.00039682540227659047,-0.0006944444612599909,7.047314121155779e-19,1.3010426069826053e-18,-0.0,0.00019841270113829523,2.13542200438562e-20,4.551758018306586e-21,-1.753586450966678e-19,1.3839623452110062e-19,-2.335108897252176e-19,-4.927126651078369e-19,-7.53539695297758e-20,-2.543133964563723e-19,0.0020833334419876337,-0.0005952381179668009,9.271756850699958e-19,-0.0020833334419876337,1.4907779871675686e-18,1.3552527156068805e-20,2.13542200438562e-20,0.0005952381179668009,6.827636825511488e-21,-2.630379805696988e-19,3.1332988972867516e-19,-1.246972188484275e-19,-3.0290999894992124e-19,-7.073674428573283e-20,-3.814701076092555e-19,0.0016666667070239782,-0.0004761904710903764,1.2160439053809173e-18,2.60862655824928e-18,-0.0011111111380159855,9.486769009248164e-20,4.551758018306586e-21,6.827636825511488e-21,0.0003174603043589741,-1.7157855894427118e-19,-1.1888551248811528e-19,-2.638153235503455e-19,-1.211045356336836e-18,2.439951778071285e-20,9.05258190571908e-19,0.0014880952658131719,2.168404344971009e-18,-0.0029761905316263437,-1.4094628242311558e-18,1.7076184216646695e-18,-1.6263032587282567e-19,-1.753586450966678e-19,-2.630379805696988e-19,-1.7157855894427118e-19,0.0007440476329065859,4.2613587028377004e-19,6.775858388781222e-20,7.565593956720652e-19,-4.097653229576663e-21,-4.428411704951906e-19,0.0031250000465661287,-4.336808689942018e-19,-0.0015625000232830644,-0.0031250000465661287,1.0299920638612292e-18,0.0,1.3839623452110062e-19,3.1332988972867516e-19,-1.1888551248811528e-19,4.2613587028377004e-19,0.0015625000232830644,1.9122382141921212e-21,-1.570425657386651e-18,-3.301985581110749e-19,-1.2176457923359145e-19,0.0024999999441206455,6.505213034913027e-19,-0.0012499999720603228,1.4996806219077471e-18,-0.0016666667070239782,8.131516293641283e-20,-2.335108897252176e-19,-1.246972188484275e-19,-2.638153235503455e-19,6.775858388781222e-20,1.9122382141921212e-21,0.0008333333535119891,-3.0450986965217537e-19,-2.7104289170071e-19,-5.823327730930704e-19,0.0031250000465661287,5.204170427930421e-18,8.673617379884035e-19,-0.01875000074505806,3.2851325826310784e-17,-3.7947076036992655e-19,-4.927126651078369e-19,-3.0290999894992124e-19,-1.211045356336836e-18,7.565593956720652e-19,-1.570425657386651e-18,-3.0450986965217537e-19,0.00937500037252903,-6.807286986908204e-18,-6.958297906716497e-18,0.0037499999161809683,4.336808689942018e-19,9.75781955236954e-19,-0.0037499999161809683,-0.0024999999441206455,-2.710505431213761e-20,-7.53539695297758e-20,-7.073674428573283e-20,2.439951778071285e-20,-4.097653229576663e-21,-3.301985581110749e-19,-2.7104289170071e-19,-6.807286986908204e-18,0.0024999999441206455,4.119748483895919e-19,0.0020833334419876337,-2.6020852139652106e-18,3.686287386450715e-18,1.496198998029996e-17,-0.0062500000931322575,2.439454888092385e-19,-2.543133964563723e-19,-3.814701076092555e-19,9.05258190571908e-19,-4.428411704951906e-19,-1.2176457923359145e-19,-5.823327730930704e-19,-6.958297906716497e-18,4.119748483895919e-19,0.0020833334419876337,8.0,5.0,3.0,5.0,0.062261905521154404,-0.011111111380159855,-0.016150793060660362,-0.023333333432674408,-0.016150793060660362,0.0005555555690079927,0.0011111111380159855,0.0016666667070239782,0.0011111111380159855,0.0011904762359336019,0.0024999999441206455,0.0016666667070239782,0.0024999999441206455,0.0024999999441206455,0.0011904762359336019,-0.011111111380159855,0.0059523810632526875,0.0011111111380159855,0.0016666667070239782,0.0011111111380159855,-0.0005555555690079927,-0.0003174603043589741,-0.0004761904710903764,-0.0003174603043589741,2.168404344971009e-18,4.336808689942018e-19,4.336808689942018e-19,7.806255641895632e-18,1.0842021724855044e-18,1.951563910473908e-18,-0.016150793060660362,0.0011111111380159855,0.015218254178762436,0.0024999999441206455,0.0016666667070239782,3.2526065174565133e-19,-0.0005555555690079927,1.6697538155347484e-18,9.020420089527252e-19,-0.0023809524718672037,-0.0012499999720603228,-0.0008333333535119891,7.37257477290143e-18,1.734723475976807e-18,1.951563910473908e-18,-0.023333333432674408,0.0016666667070239782,0.0024999999441206455,0.04833333194255829,0.0024999999441206455,5.963111948670274e-19,2.0057740190981832e-18,-0.0016666667070239782,1.5526078767995292e-18,1.1384122811097797e-18,-0.0024999999441206455,1.2296945568371502e-18,-0.014999999664723873,-0.0024999999441206455,2.4936649967166602e-18,-0.016150793060660362,0.0011111111380159855,0.0016666667070239782,0.0024999999441206455,0.015218254178762436,-2.168404344971009e-19,9.486769009248164e-19,1.599198204416119e-18,-0.0005555555690079927,1.463672932855431e-18,1.4365678785432934e-18,-0.0008333333535119891,4.87890977618477e-18,-0.0012499999720603228,-0.0023809524718672037,0.0005555555690079927,-0.0005555555690079927,3.2526065174565133e-19,5.963111948670274e-19,-2.168404344971009e-19,7.936507608974352e-05,4.743384504624082e-20,1.3552527156068805e-20,2.0328790734103208e-20,-8.131516293641283e-20,5.421010862427522e-20,6.776263578034403e-21,0.0,6.776263578034403e-20,-2.710505431213761e-20,0.0011111111380159855,-0.0003174603043589741,-0.0005555555690079927,2.0057740190981832e-18,9.486769009248164e-19,4.743384504624082e-20,0.00015873015217948705,-3.8404464264234145e-20,-1.5577683399861693e-20,-5.299752388481842e-19,-1.0070651246724911e-19,-6.713767497816607e-20,-6.533508815716934e-19,-1.599184013098735e-19,-1.4194261630105687e-19,0.0016666667070239782,-0.0004761904710903764,1.6697538155347484e-18,-0.0016666667070239782,1.599198204416119e-18,1.3552527156068805e-20,-3.8404464264234145e-20,0.0004761904710903764,-1.4244361956479978e-20,-2.0975763587863023e-19,-4.108850896313416e-19,-1.1602501853233034e-19,-5.300095668436052e-18,-5.335383193367564e-19,-1.916315495675733e-19,0.0011111111380159855,-0.0003174603043589741,9.020420089527252e-19,1.5526078767995292e-18,-0.0005555555690079927,2.0328790734103208e-20,-1.5577683399861693e-20,-1.4244361956479978e-20,0.00015873015217948705,-1.3082047503163957e-19,-9.708730648164551e-20,-1.098386898274111e-19,-4.185233012570504e-19,-2.2396993004608957e-19,-6.665471523776933e-19,0.0011904762359336019,2.168404344971009e-18,-0.0023809524718672037,1.1384122811097797e-18,1.463672932855431e-18,-8.131516293641283e-20,-5.299752388481842e-19,-2.0975763587863023e-19,-1.3082047503163957e-19,0.0005952381179668009,7.961727133157117e-20,3.898011088473716e-20,-1.0013312120638501e-19,-1.3185377871308316e-19,-2.339783760182808e-19,0.0024999999441206455,4.336808689942018e-19,-0.0012499999720603228,-0.0024999999441206455,1.4365678785432934e-18,5.421010862427522e-20,-1.0070651246724911e-19,-4.108850896313416e-19,-9.708730648164551e-20,7.961727133157117e-20,0.0012499999720603228,4.2301413177087765e-34,-3.996802716596996e-18,-3.9968028199945727e-19,-1.6917684003572346e-19,0.0016666667070239782,4.336808689942018e-19,-0.0008333333535119891,1.2296945568371502e-18,-0.0008333333535119891,6.776263578034403e-21,-6.713767497816607e-20,-1.1602501853233034e-19,-1.098386898274111e-19,3.898011088473716e-20,4.2301413177087765e-34,0.00041666667675599456,-2.6645353856590094e-19,-1.1842379060994584e-19,-9.868649217495487e-20,0.0024999999441206455,7.806255641895632e-18,7.37257477290143e-18,-0.014999999664723873,4.87890977618477e-18,0.0,-6.533508815716934e-19,-5.300095668436052e-18,-4.185233012570504e-19,-1.0013312120638501e-19,-3.996802716596996e-18,-2.6645353856590094e-19,0.007499999832361937,-1.1116314815977628e-18,-4.553334589011195e-19,0.0024999999441206455,1.0842021724855044e-18,1.734723475976807e-18,-0.0024999999441206455,-0.0012499999720603228,6.776263578034403e-20,-1.599184013098735e-19,-5.335383193367564e-19,-2.2396993004608957e-19,-1.3185377871308316e-19,-3.9968028199945727e-19,-1.1842379060994584e-19,-1.1116314815977628e-18,0.0012499999720603228,-2.190461374498677e-19,0.0011904762359336019,1.951563910473908e-18,1.951563910473908e-18,2.4936649967166602e-18,-0.0023809524718672037,-2.710505431213761e-20,-1.4194261630105687e-19,-1.916315495675733e-19,-6.665471523776933e-19,-2.339783760182808e-19,-1.6917684003572346e-19,-9.868649217495487e-20,-4.553334589011195e-19,-2.190461374498677e-19,0.0005952381179668009,8.0,5.0,3.0,6.0,0.05373677238821983,-0.009391534142196178,-0.013657407835125923,-0.01974206417798996,-0.01185515895485878,0.00046296295477077365,0.0009259259095415473,0.0013888889225199819,0.0007936508045531809,0.0009920635493472219,0.0020833334419876337,0.0011904762359336019,0.0020833334419876337,0.0017857142956927419,0.0007440476329065859,-0.009391534142196178,0.004998110234737396,0.0009259259095415473,0.0013888889225199819,0.0007936508045531809,-0.00046296295477077365,-0.00026455026818439364,-0.00039682540227659047,-0.00022675737272948027,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.013657407835125923,0.0009259259095415473,0.012781084515154362,0.0020833334419876337,0.0011904762359336019,-0.0,-0.00046296295477077365,-0.0,-0.0,-0.0019841270986944437,-0.0010416667209938169,-0.0005952381179668009,0.0,0.0,0.0,-0.01974206417798996,0.0013888889225199819,0.0020833334419876337,0.04057539626955986,0.0017857142956927419,-0.0,-0.0,-0.0013888889225199819,-0.0,-0.0,-0.0020833334419876337,-0.0,-0.012500000186264515,-0.0017857142956927419,-1.3629969872967551e-18,-0.01185515895485878,0.0007936508045531809,0.0011904762359336019,0.0017857142956927419,0.008834325708448887,-1.3552527156068805e-20,-0.0,-0.0,-0.0003174603043589741,-0.0,-0.0,-0.0004761904710903764,-3.4074925716394644e-18,-0.0007142857066355646,-0.0011160714784637094,0.00046296295477077365,-0.00046296295477077365,-0.0,-0.0,-1.3552527156068805e-20,6.613756704609841e-05,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00026455026818439364,-0.00046296295477077365,-0.0,-0.0,-0.0,0.00013227513409219682,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.00039682540227659047,-0.0,-0.0013888889225199819,-0.0,-0.0,-0.0,0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,-0.00022675737272948027,-0.0,-0.0,-0.0003174603043589741,-0.0,-0.0,-0.0,9.070294618140906e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0,-0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0010416667209938169,-0.0020833334419876337,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0005952381179668009,-0.0,-0.0004761904710903764,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,0.0,-0.012500000186264515,-3.4074925716394644e-18,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0062500000931322575,-0.0,6.814984936483776e-19,0.0017857142956927419,-0.0,0.0,-0.0017857142956927419,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,0.0007440476329065859,-0.0,0.0,-1.3629969872967551e-18,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,6.814984936483776e-19,-0.0,0.00022321428696159273,8.0,5.0,3.0,7.0,0.04728599637746811,-0.008134921081364155,-0.011833900585770607,-0.01711309514939785,-0.00907738134264946,0.00039682540227659047,0.0007936508045531809,0.0011904762359336019,0.0005952381179668009,0.0008503401186317205,0.0017857142956927419,0.0008928571478463709,0.0017857142956927419,0.0013392857508733869,0.0004960317746736109,-0.008134921081364155,0.004308389965444803,0.0007936508045531809,0.0011904762359336019,0.0005952381179668009,-0.00039682540227659047,-0.00022675737272948027,-0.0003401360590942204,-0.0001700680295471102,-2.409704716976456e-18,-3.7221423572824386e-18,-6.192114316316166e-19,-5.492313417639287e-18,-8.473512566937684e-19,9.82739267971561e-19,-0.011833900585770607,0.0007936508045531809,0.01101899053901434,0.0017857142956927419,0.0008928571478463709,-1.0706496453294356e-18,-0.00039682540227659047,-3.346202830947501e-18,-7.863808077182504e-19,-0.001700680237263441,-0.0008928571478463709,-0.00044642857392318547,-1.4500871530387375e-17,-2.2877956202425635e-20,1.1186905375477138e-18,-0.01711309514939785,0.0011904762359336019,0.0017857142956927419,0.0349702388048172,0.0013392857508733869,-1.5604124292765436e-18,-3.751162748302943e-18,-0.0011904762359336019,-1.1967378200766593e-18,-8.555945974664692e-18,-0.0017857142956927419,7.624910173718035e-20,-0.010714286006987095,-0.0013392857508733869,4.056662882395315e-18,-0.00907738134264946,0.0005952381179668009,0.0008928571478463709,0.0013392857508733869,0.0056051588617265224,1.0570971181733668e-18,-2.369104469464457e-19,-2.5268710767330475e-19,-0.00019841270113829523,1.050162346110452e-18,2.808599952875812e-18,-0.00029761905898340046,1.1069187854938645e-17,-0.00044642857392318547,-0.0005952381179668009,0.00039682540227659047,-0.00039682540227659047,-1.0706496453294356e-18,-1.5604124292765436e-18,1.0570971181733668e-18,5.668934318237007e-05,2.371692252312041e-20,4.0657581468206416e-20,-7.453889935837843e-20,1.2587562810388879e-19,2.64338825480515e-19,2.2028234918180537e-20,2.64338825480515e-19,3.3042353185064373e-20,-1.4734850009803233e-19,0.0007936508045531809,-0.00022675737272948027,-0.00039682540227659047,-3.751162748302943e-18,-2.369104469464457e-19,2.371692252312041e-20,0.00011337868636474013,1.9510124911980648e-19,3.8009453209997396e-20,3.911563667328573e-19,4.1071419928666696e-19,8.655447969988396e-20,9.06304470649211e-19,9.440671784674232e-20,-2.5175125620777757e-20,0.0011904762359336019,-0.0003401360590942204,-3.346202830947501e-18,-0.0011904762359336019,-2.5268710767330475e-19,4.0657581468206416e-20,1.9510124911980648e-19,0.0003401360590942204,5.70141798149961e-20,4.3157357468493465e-19,5.02783227174152e-19,9.440671784674232e-20,1.0551973944990622e-18,1.0978152389226545e-19,-3.7762688431166636e-20,0.0005952381179668009,-0.0001700680295471102,-7.863808077182504e-19,-1.1967378200766593e-18,-0.00019841270113829523,-7.453889935837843e-20,3.8009453209997396e-20,5.70141798149961e-20,5.668934318237007e-05,8.092004848459951e-20,1.321694127402575e-19,4.0657581468206416e-20,2.0769478960259076e-19,6.805725425008069e-20,3.1712217679510694e-20,0.0008503401186317205,-2.409704716976456e-18,-0.001700680237263441,-8.555945974664692e-18,1.050162346110452e-18,1.2587562810388879e-19,3.911563667328573e-19,4.3157357468493465e-19,8.092004848459951e-20,0.00042517005931586027,6.905177091561378e-19,-5.304758382151437e-20,2.8322016904986345e-18,-3.42201007368257e-34,-1.5734453836103525e-19,0.0017857142956927419,-3.7221423572824386e-18,-0.0008928571478463709,-0.0017857142956927419,2.808599952875812e-18,2.64338825480515e-19,4.1071419928666696e-19,5.02783227174152e-19,1.321694127402575e-19,6.905177091561378e-19,0.0008928571478463709,-1.982541126480377e-19,1.9117877187892868e-32,-2.973811754344051e-19,-3.965082252960754e-19,0.0008928571478463709,-6.192114316316166e-19,-0.00044642857392318547,7.624910173718035e-20,-0.00029761905898340046,2.2028234918180537e-20,8.655447969988396e-20,9.440671784674232e-20,4.0657581468206416e-20,-5.304758382151437e-20,-1.982541126480377e-19,0.00014880952949170023,9.750020343460382e-34,-3.3881317890172014e-21,-1.5637531411598003e-21,0.0017857142956927419,-5.492313417639287e-18,-1.4500871530387375e-17,-0.010714286006987095,1.1069187854938645e-17,2.64338825480515e-19,9.06304470649211e-19,1.0551973944990622e-18,2.0769478960259076e-19,2.8322016904986345e-18,1.9117877187892868e-32,9.750020343460382e-34,0.0053571430034935474,-1.4869058513226313e-18,-1.5529905512304115e-18,0.0013392857508733869,-8.473512566937684e-19,-2.2877956202425635e-20,-0.0013392857508733869,-0.00044642857392318547,3.3042353185064373e-20,9.440671784674232e-20,1.0978152389226545e-19,6.805725425008069e-20,-3.42201007368257e-34,-2.973811754344051e-19,-3.3881317890172014e-21,-1.4869058513226313e-18,0.00044642857392318547,-8.498657985142244e-21,0.0004960317746736109,9.82739267971561e-19,1.1186905375477138e-18,4.056662882395315e-18,-0.0005952381179668009,-1.4734850009803233e-19,-2.5175125620777757e-20,-3.7762688431166636e-20,3.1712217679510694e-20,-1.5734453836103525e-19,-3.965082252960754e-19,-1.5637531411598003e-21,-1.5529905512304115e-18,-8.498657985142244e-21,9.920635056914762e-05,8.0,5.0,3.0,8.0,0.04222883656620979,-0.007175926119089127,-0.010441468097269535,-0.015104166232049465,-0.007175926119089127,0.00034722223062999547,0.0006944444612599909,0.0010416667209938169,0.00046296295477077365,0.0007440476329065859,0.0015625000232830644,0.0006944444612599909,0.0015625000232830644,0.0010416667209938169,0.00034722223062999547,-0.007175926119089127,0.0037863757461309433,0.0006944444612599909,0.0010416667209938169,0.00046296295477077365,-0.00034722223062999547,-0.00019841270113829523,-0.00029761905898340046,-0.00013227513409219682,-0.0,-0.0,-0.0,1.925929944387236e-34,-0.0,4.0657581468206416e-20,-0.010441468097269535,0.0006944444612599909,0.009685019962489605,0.0015625000232830644,0.0006944444612599909,-0.0,-0.00034722223062999547,-0.0,-0.0,-0.0014880952658131719,-0.0007812500116415322,-0.00034722223062999547,8.051054366193558e-36,0.0,3.1324237256583863e-21,-0.015104166232049465,0.0010416667209938169,0.0015625000232830644,0.03072916716337204,0.0010416667209938169,-3.003024455183344e-35,4.6006024949677475e-36,-0.0010416667209938169,6.233446800206447e-35,-0.0,-0.0015625000232830644,-0.0,-0.00937500037252903,-0.0010416667209938169,-5.845059833574003e-19,-0.007175926119089127,0.00046296295477077365,0.0006944444612599909,0.0010416667209938169,0.0037863757461309433,-0.0,6.776263578034403e-21,-1.3552527156068805e-20,-0.00013227513409219682,-0.0,-0.0,-0.00019841270113829523,-2.0238439863745572e-18,-0.00029761905898340046,-0.00034722223062999547,0.00034722223062999547,-0.00034722223062999547,-0.0,-3.003024455183344e-35,-0.0,4.960317528457381e-05,-0.0,-0.0,3.3881317890172014e-21,-0.0,0.0,0.0,-1.0769702171917769e-35,-0.0,-6.712336410733405e-22,0.0006944444612599909,-0.00019841270113829523,-0.00034722223062999547,4.6006024949677475e-36,6.776263578034403e-21,-0.0,9.920635056914762e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-2.3003012474838737e-36,-0.0,-8.949782217558526e-22,0.0010416667209938169,-0.00029761905898340046,-0.0,-0.0010416667209938169,-1.3552527156068805e-20,-0.0,-0.0,0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,2.634959481258579e-36,-0.0,1.7899564435117053e-21,0.00046296295477077365,-0.00013227513409219682,-0.0,6.233446800206447e-35,-0.00013227513409219682,3.3881317890172014e-21,-0.0,-0.0,3.779289545491338e-05,-0.0,-0.0,-0.0,-3.1167234001032235e-35,-0.0,-1.0164395367051604e-20,0.0007440476329065859,-0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0007812500116415322,-0.0015625000232830644,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.0,-0.00034722223062999547,-0.0,-0.00019841270113829523,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,9.920635056914762e-05,-0.0,-0.0,-0.0,0.0015625000232830644,1.925929944387236e-34,8.051054366193558e-36,-0.00937500037252903,-2.0238439863745572e-18,-1.0769702171917769e-35,-2.3003012474838737e-36,2.634959481258579e-36,-3.1167234001032235e-35,-0.0,-0.0,-0.0,0.004687500186264515,-0.0,2.8912058794593256e-19,0.0010416667209938169,-0.0,0.0,-0.0010416667209938169,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-0.0,0.00034722223062999547,4.0657581468206416e-20,3.1324237256583863e-21,-5.845059833574003e-19,-0.00034722223062999547,-6.712336410733405e-22,-8.949782217558526e-22,1.7899564435117053e-21,-1.0164395367051604e-20,-0.0,-0.0,-0.0,2.8912058794593256e-19,-0.0,4.960317528457381e-05,8.0,5.0,4.0,3.0,0.07408729940652847,-0.013611110858619213,-0.019771825522184372,-0.023333333432674408,-0.028541667386889458,0.0006944444612599909,0.0013888889225199819,0.0016666667070239782,0.0020833334419876337,0.0014880952658131719,0.0024999999441206455,0.0031250000465661287,0.0020833334419876337,0.0037499999161809683,0.0031250000465661287,-0.013611110858619213,0.007361111231148243,0.0013888889225199819,0.0016666667070239782,0.0020833334419876337,-0.0006944444612599909,-0.00039682540227659047,-0.0004761904710903764,-0.0005952381179668009,2.168404344971009e-18,1.5178830414797062e-18,2.168404344971009e-19,-1.734723475976807e-18,1.734723475976807e-18,6.938893903907228e-18,-0.019771825522184372,0.0013888889225199819,0.018814483657479286,0.0024999999441206455,0.0031250000465661287,3.2526065174565133e-19,-0.0006944444612599909,1.2522554944542277e-18,8.999318712101024e-19,-0.0029761905316263437,-0.0012499999720603228,-0.0015625000232830644,6.071532165918825e-18,1.5178830414797062e-18,5.204170427930421e-18,-0.023333333432674408,0.0016666667070239782,0.0024999999441206455,0.030138889327645302,0.0037499999161809683,-8.673617379884035e-19,1.3552527156068805e-18,-0.0011111111380159855,5.315046958007948e-19,1.8973538018496328e-18,-0.0016666667070239782,1.1408213412462638e-18,-0.0062500000931322575,-0.0024999999441206455,3.0791341698588326e-17,-0.028541667386889458,0.0020833334419876337,0.0031250000465661287,0.0037499999161809683,0.05979166552424431,9.75781955236954e-19,1.111307226797642e-18,2.791820594150174e-18,-0.0020833334419876337,-1.4365678785432934e-18,1.6263032587282567e-18,-0.0031250000465661287,1.5233040523421337e-17,-0.0037499999161809683,-0.01875000074505806,0.0006944444612599909,-0.0006944444612599909,3.2526065174565133e-19,-8.673617379884035e-19,9.75781955236954e-19,9.920635056914762e-05,1.3552527156068805e-20,8.131516293641283e-20,1.3552527156068805e-20,-1.8973538018496328e-19,-6.776263578034403e-20,-5.421010862427522e-20,2.981555974335137e-19,-1.3552527156068805e-19,-1.6263032587282567e-19,0.0013888889225199819,-0.00039682540227659047,-0.0006944444612599909,1.3552527156068805e-18,1.111307226797642e-18,1.3552527156068805e-20,0.00019841270113829523,6.3419889096826615e-21,2.13542200438562e-20,-1.921420621771863e-19,-2.335108897252176e-19,1.0755670531253044e-19,-2.6018759372702347e-19,-1.246972188484275e-19,-6.215778402677659e-19,0.0016666667070239782,-0.0004761904710903764,1.2522554944542277e-18,-0.0011111111380159855,2.791820594150174e-18,8.131516293641283e-20,6.3419889096826615e-21,0.0003174603043589741,3.8394744892036647e-20,-1.7157855894427118e-19,-3.239670705145891e-19,-9.950066407990579e-20,1.933056855791982e-19,-2.6038149003248473e-19,-1.1647861077604204e-18,0.0020833334419876337,-0.0005952381179668009,8.999318712101024e-19,5.315046958007948e-19,-0.0020833334419876337,1.3552527156068805e-20,2.13542200438562e-20,3.8394744892036647e-20,0.0005952381179668009,-2.3786284202422395e-19,-4.01087955993915e-20,2.7317688197177756e-21,-1.7881034054588088e-19,-1.4475161826371038e-19,-3.0735111614908196e-18,0.0014880952658131719,2.168404344971009e-18,-0.0029761905316263437,1.8973538018496328e-18,-1.4365678785432934e-18,-1.8973538018496328e-19,-1.921420621771863e-19,-1.7157855894427118e-19,-2.3786284202422395e-19,0.0007440476329065859,6.775858388781222e-20,4.2613587028377004e-19,-5.089258704029708e-19,-4.097653229576663e-21,7.069958707412301e-19,0.0024999999441206455,1.5178830414797062e-18,-0.0012499999720603228,-0.0016666667070239782,1.6263032587282567e-18,-6.776263578034403e-20,-2.335108897252176e-19,-3.239670705145891e-19,-4.01087955993915e-20,6.775858388781222e-20,0.0008333333535119891,-7.783934354011647e-20,-1.93927200657137e-18,-4.1907262673196802e-19,-4.0165440023010336e-19,0.0031250000465661287,2.168404344971009e-19,-0.0015625000232830644,1.1408213412462638e-18,-0.0031250000465661287,-5.421010862427522e-20,1.0755670531253044e-19,-9.950066407990579e-20,2.7317688197177756e-21,4.2613587028377004e-19,-7.783934354011647e-20,0.0015625000232830644,-4.625929381285527e-20,-4.440892309431682e-19,-5.100087118633486e-18,0.0020833334419876337,-1.734723475976807e-18,6.071532165918825e-18,-0.0062500000931322575,1.5233040523421337e-17,2.981555974335137e-19,-2.6018759372702347e-19,1.933056855791982e-19,-1.7881034054588088e-19,-5.089258704029708e-19,-1.93927200657137e-18,-4.625929381285527e-20,0.0020833334419876337,-2.281075236592316e-18,-5.628624097191594e-18,0.0037499999161809683,1.734723475976807e-18,1.5178830414797062e-18,-0.0024999999441206455,-0.0037499999161809683,-1.3552527156068805e-19,-1.246972188484275e-19,-2.6038149003248473e-19,-1.4475161826371038e-19,-4.097653229576663e-21,-4.1907262673196802e-19,-4.440892309431682e-19,-2.281075236592316e-18,0.0024999999441206455,-8.096486849060888e-18,0.0031250000465661287,6.938893903907228e-18,5.204170427930421e-18,3.0791341698588326e-17,-0.01875000074505806,-1.6263032587282567e-19,-6.215778402677659e-19,-1.1647861077604204e-18,-3.0735111614908196e-18,7.069958707412301e-19,-4.0165440023010336e-19,-5.100087118633486e-18,-5.628624097191594e-18,-8.096486849060888e-18,0.00937500037252903,8.0,5.0,4.0,4.0,0.05969047546386719,-0.010520833544433117,-0.015297618694603443,-0.018062500283122063,-0.018062500283122063,0.0005208333604969084,0.0010416667209938169,0.0012499999720603228,0.0012499999720603228,0.0011160714784637094,0.0018749999580904841,0.0018749999580904841,0.0015625000232830644,0.0022499999031424522,0.0015625000232830644,-0.010520833544433117,0.0056101190857589245,0.0010416667209938169,0.0012499999720603228,0.0012499999720603228,-0.0005208333604969084,-0.00029761905898340046,-0.0003571428533177823,-0.0003571428533177823,2.168404344971009e-19,-1.951563910473908e-18,-1.734723475976807e-18,-7.37257477290143e-18,-4.7704895589362195e-18,-6.938893903907228e-18,-0.015297618694603443,0.0010416667209938169,0.014345237985253334,0.0018749999580904841,0.0018749999580904841,8.131516293641283e-20,-0.0005208333604969084,-2.2900699985732178e-18,-2.369880933565703e-18,-0.0022321429569274187,-0.0009374999790452421,-0.0009374999790452421,-7.26415455565288e-18,-5.800481622797449e-18,-7.914675859144182e-18,-0.018062500283122063,0.0012499999720603228,0.0018749999580904841,0.022979166358709335,0.0022499999031424522,-1.3552527156068805e-18,-4.716279450311944e-18,-0.0008333333535119891,-6.7667129506818655e-18,-3.876022766635678e-18,-0.0012499999720603228,-4.9278478491749385e-18,-0.004687500186264515,-0.001500000013038516,-1.1817803680091998e-17,-0.018062500283122063,0.0012499999720603228,0.0018749999580904841,0.0022499999031424522,0.022979166358709335,-1.734723475976807e-18,-4.7704895589362195e-18,-6.80336863234654e-18,-0.0008333333535119891,-3.767602549387128e-18,-4.038653092508504e-18,-0.0012499999720603228,-1.1031757105040008e-17,-0.001500000013038516,-0.004687500186264515,0.0005208333604969084,-0.0005208333604969084,8.131516293641283e-20,-1.3552527156068805e-18,-1.734723475976807e-18,7.440476474585012e-05,-0.0,1.0164395367051604e-19,9.486769009248164e-20,-1.8973538018496328e-19,1.0842021724855044e-19,3.3881317890172014e-20,3.7947076036992655e-19,2.0328790734103208e-19,2.168404344971009e-19,0.0010416667209938169,-0.00029761905898340046,-0.0005208333604969084,-4.716279450311944e-18,-4.7704895589362195e-18,-0.0,0.00014880952949170023,1.8649256076511691e-19,1.8649256076511691e-19,2.7614664777895046e-19,2.174303952196102e-19,2.359341153296917e-19,8.161558459513444e-19,6.130157971448061e-19,8.12851621295713e-19,0.0012499999720603228,-0.0003571428533177823,-2.2900699985732178e-18,-0.0008333333535119891,-6.80336863234654e-18,1.0164395367051604e-19,1.8649256076511691e-19,0.0002380952355451882,4.374668229590687e-19,1.7815777259075897e-19,1.3673667756777196e-19,4.1270641209321264e-19,4.95255986997496e-19,4.580287752283353e-19,1.13627763814151e-18,0.0012499999720603228,-0.0003571428533177823,-2.369880933565703e-18,-6.7667129506818655e-18,-0.0008333333535119891,9.486769009248164e-20,1.8649256076511691e-19,4.374668229590687e-19,0.0002380952355451882,1.6305269204841348e-19,3.7358425878766364e-19,2.773649297248762e-19,1.0662278479674569e-18,6.475068505440063e-19,9.248065363980674e-19,0.0011160714784637094,2.168404344971009e-19,-0.0022321429569274187,-3.876022766635678e-18,-3.767602549387128e-18,-1.8973538018496328e-19,2.7614664777895046e-19,1.7815777259075897e-19,1.6305269204841348e-19,0.0005580357392318547,4.627884564834964e-20,6.610425497444885e-20,7.696277636758491e-19,3.80671361330259e-19,7.448460012104315e-19,0.0018749999580904841,-1.951563910473908e-18,-0.0009374999790452421,-0.0012499999720603228,-4.038653092508504e-18,1.0842021724855044e-19,2.174303952196102e-19,1.3673667756777196e-19,3.7358425878766364e-19,4.627884564834964e-20,0.0006249999860301614,1.034018352568134e-19,3.297001042438293e-20,5.148806919339517e-19,4.909370185254152e-19,0.0018749999580904841,-1.734723475976807e-18,-0.0009374999790452421,-4.9278478491749385e-18,-0.0012499999720603228,3.3881317890172014e-20,2.359341153296917e-19,4.1270641209321264e-19,2.773649297248762e-19,6.610425497444885e-20,1.034018352568134e-19,0.0006249999860301614,6.127166679557916e-19,7.635181042739559e-19,5.155721115284695e-19,0.0015625000232830644,-7.37257477290143e-18,-7.26415455565288e-18,-0.004687500186264515,-1.1031757105040008e-17,3.7947076036992655e-19,8.161558459513444e-19,4.95255986997496e-19,1.0662278479674569e-18,7.696277636758491e-19,3.297001042438293e-20,6.127166679557916e-19,0.0015625000232830644,2.241336652784656e-18,7.373087831676366e-19,0.0022499999031424522,-4.7704895589362195e-18,-5.800481622797449e-18,-0.001500000013038516,-0.001500000013038516,2.0328790734103208e-19,6.130157971448061e-19,4.580287752283353e-19,6.475068505440063e-19,3.80671361330259e-19,5.148806919339517e-19,7.635181042739559e-19,2.241336652784656e-18,0.0010000000474974513,2.8843955463798117e-18,0.0015625000232830644,-6.938893903907228e-18,-7.914675859144182e-18,-1.1817803680091998e-17,-0.004687500186264515,2.168404344971009e-19,8.12851621295713e-19,1.13627763814151e-18,9.248065363980674e-19,7.448460012104315e-19,4.909370185254152e-19,5.155721115284695e-19,7.373087831676366e-19,2.8843955463798117e-18,0.0015625000232830644,8.0,5.0,4.0,5.0,0.05007142946124077,-0.00858333334326744,-0.012488095089793205,-0.014750000089406967,-0.012488095089793205,0.00041666667675599456,0.0008333333535119891,0.0010000000474974513,0.0008333333535119891,0.0008928571478463709,0.001500000013038516,0.0012499999720603228,0.0012499999720603228,0.001500000013038516,0.0008928571478463709,-0.00858333334326744,0.004535714164376259,0.0008333333535119891,0.0010000000474974513,0.0008333333535119891,-0.00041666667675599456,-0.0002380952355451882,-0.0002857142826542258,-0.0002380952355451882,-6.505213034913027e-19,0.0,-1.0842021724855044e-19,4.336808689942018e-19,-2.168404344971009e-19,-8.673617379884035e-19,-0.012488095089793205,0.0008333333535119891,0.011601190082728863,0.001500000013038516,0.0012499999720603228,-4.336808689942018e-19,-0.00041666667675599456,-2.971035787907111e-19,5.558735917429718e-19,-0.0017857142956927419,-0.000750000006519258,-0.0006249999860301614,-1.0842021724855044e-18,-2.710505431213761e-19,1.1384122811097797e-18,-0.014750000089406967,0.0010000000474974513,0.001500000013038516,0.018583333119750023,0.001500000013038516,-2.168404344971009e-19,4.0657581468206416e-20,-0.0006666666595265269,3.182409902723732e-19,-2.927345865710862e-18,-0.0010000000474974513,-1.0028246608104204e-18,-0.0037499999161809683,-0.0010000000474974513,-3.3610267347050637e-18,-0.012488095089793205,0.0008333333535119891,0.0012499999720603228,0.001500000013038516,0.011601190082728863,-5.421010862427522e-20,2.439454888092385e-19,-1.6263032587282567e-19,-0.00041666667675599456,2.15485181781494e-18,-1.6263032587282567e-19,-0.0006249999860301614,-1.7618285302889447e-18,-0.000750000006519258,-0.0017857142956927419,0.00041666667675599456,-0.00041666667675599456,-4.336808689942018e-19,-2.168404344971009e-19,-5.421010862427522e-20,5.952380888629705e-05,3.3881317890172014e-20,-0.0,6.776263578034403e-21,5.421010862427522e-20,-2.0328790734103208e-20,3.3881317890172014e-20,0.0,-6.776263578034403e-21,5.421010862427522e-20,0.0008333333535119891,-0.0002380952355451882,-0.00041666667675599456,4.0657581468206416e-20,2.439454888092385e-19,3.3881317890172014e-20,0.0001190476177725941,6.663094526582708e-21,7.189547528600652e-22,1.7383130779437692e-19,1.025585440093612e-19,-1.2516135279818784e-20,-7.595744948542152e-20,-1.9248783659793055e-20,-4.519227605910161e-20,0.0010000000474974513,-0.0002857142826542258,-2.971035787907111e-19,-0.0006666666595265269,-1.6263032587282567e-19,-0.0,6.663094526582708e-21,0.00019047618843615055,8.71551097598255e-21,5.85374329130125e-20,3.2025570497651974e-20,-1.5324273711149232e-20,1.2509250778365128e-19,3.2025570497651974e-20,2.2889457567231817e-20,0.0008333333535119891,-0.0002380952355451882,5.558735917429718e-19,3.182409902723732e-19,-0.00041666667675599456,6.776263578034403e-21,7.189547528600652e-22,8.71551097598255e-21,0.0001190476177725941,-1.0410206949473368e-19,-5.985122837029398e-20,-2.0974977120046244e-20,-1.6900470892013e-19,1.4316098871986212e-19,2.387831321544775e-19,0.0008928571478463709,-6.505213034913027e-19,-0.0017857142956927419,-2.927345865710862e-18,2.15485181781494e-18,5.421010862427522e-20,1.7383130779437692e-19,5.85374329130125e-20,-1.0410206949473368e-19,0.00044642857392318547,9.399642075327953e-19,-8.372778382694006e-20,2.334787847776929e-19,-2.4343760637547947e-20,-3.9966976129604136e-19,0.001500000013038516,0.0,-0.000750000006519258,-0.0010000000474974513,-1.6263032587282567e-19,-2.0328790734103208e-20,1.025585440093612e-19,3.2025570497651974e-20,-5.985122837029398e-20,9.399642075327953e-19,0.0005000000237487257,8.473841758972086e-20,-4.079424156048169e-21,1.0523881598918614e-19,9.774388593962088e-21,0.0012499999720603228,-1.0842021724855044e-19,-0.0006249999860301614,-1.0028246608104204e-18,-0.0006249999860301614,3.3881317890172014e-20,-1.2516135279818784e-20,-1.5324273711149232e-20,-2.0974977120046244e-20,-8.372778382694006e-20,8.473841758972086e-20,0.0003124999930150807,1.816376568042842e-19,1.2914733422168915e-19,2.7248415052050707e-19,0.0012499999720603228,4.336808689942018e-19,-1.0842021724855044e-18,-0.0037499999161809683,-1.7618285302889447e-18,0.0,-7.595744948542152e-20,1.2509250778365128e-19,-1.6900470892013e-19,2.334787847776929e-19,-4.079424156048169e-21,1.816376568042842e-19,0.0012499999720603228,2.3092638975068983e-19,4.12368560511773e-19,0.001500000013038516,-2.168404344971009e-19,-2.710505431213761e-19,-0.0010000000474974513,-0.000750000006519258,-6.776263578034403e-21,-1.9248783659793055e-20,3.2025570497651974e-20,1.4316098871986212e-19,-2.4343760637547947e-20,1.0523881598918614e-19,1.2914733422168915e-19,2.3092638975068983e-19,0.0005000000237487257,9.106410684080968e-19,0.0008928571478463709,-8.673617379884035e-19,1.1384122811097797e-18,-3.3610267347050637e-18,-0.0017857142956927419,5.421010862427522e-20,-4.519227605910161e-20,2.2889457567231817e-20,2.387831321544775e-19,-3.9966976129604136e-19,9.774388593962088e-21,2.7248415052050707e-19,4.12368560511773e-19,9.106410684080968e-19,0.00044642857392318547,8.0,5.0,4.0,6.0,0.04315972328186035,-0.0072519839741289616,-0.010555555112659931,-0.012470237910747528,-0.009159225970506668,0.00034722223062999547,0.0006944444612599909,0.0008333333535119891,0.0005952381179668009,0.0007440476329065859,0.0012499999720603228,0.0008928571478463709,0.0010416667209938169,0.0010714285308495164,0.0005580357392318547,-0.0072519839741289616,0.00380810652859509,0.0006944444612599909,0.0008333333535119891,0.0005952381179668009,-0.00034722223062999547,-0.00019841270113829523,-0.0002380952355451882,-0.0001700680295471102,-0.0,-1.0573552502232717e-19,-0.0,-3.965082252960754e-19,-9.063045094233022e-20,0.0,-0.010555555112659931,0.0006944444612599909,0.009742063470184803,0.0012499999720603228,0.0008928571478463709,1.3552527156068805e-20,-0.00034722223062999547,-9.875298974138589e-20,4.987524681376477e-21,-0.0014880952658131719,-0.0006249999860301614,-0.00044642857392318547,-1.644567680295118e-34,-3.759011963668524e-35,-0.0,-0.012470237910747528,0.0008333333535119891,0.0012499999720603228,0.015605159103870392,0.0010714285308495164,9.707375655235355e-21,6.982534473147711e-21,-0.0005555555690079927,-3.498550707270227e-20,-0.0,-0.0008333333535119891,-0.0,-0.0031250000465661287,-0.0007142857066355646,-0.0,-0.009159225970506668,0.0005952381179668009,0.0008928571478463709,0.0010714285308495164,0.006732887122780085,2.710505431213761e-20,4.987524681376477e-21,-1.256159580150325e-19,-0.0002380952355451882,-0.0,-5.578469153945442e-35,-0.0003571428533177823,-2.091926047523911e-34,-0.00042857142398133874,-0.0008370535797439516,0.00034722223062999547,-0.00034722223062999547,1.3552527156068805e-20,9.707375655235355e-21,2.710505431213761e-20,4.960317528457381e-05,-3.3881317890172014e-21,-6.776263578034403e-21,-6.776263578034403e-21,-0.0,-4.094772223397125e-36,0.0,-7.860621985472944e-36,-1.611777529405982e-36,-0.0,0.0006944444612599909,-0.00019841270113829523,-0.00034722223062999547,6.982534473147711e-21,4.987524681376477e-21,-3.3881317890172014e-21,9.920635056914762e-05,-1.995009993719626e-21,-1.4250071239462763e-21,-0.0,-8.85962411753927e-37,-0.0,-3.3223589319733494e-36,-7.593963273081941e-37,-0.0,0.0008333333535119891,-0.0002380952355451882,-9.875298974138589e-20,-0.0005555555690079927,-1.256159580150325e-19,-6.776263578034403e-21,-1.995009993719626e-21,0.00015873015217948705,9.995858932831059e-21,-0.0,7.04903478607686e-20,-0.0,2.64338825480515e-19,6.042030278233632e-20,-0.0,0.0005952381179668009,-0.0001700680295471102,4.987524681376477e-21,-3.498550707270227e-20,-0.0002380952355451882,-6.776263578034403e-21,-1.4250071239462763e-21,9.995858932831059e-21,6.80272132740356e-05,-0.0,4.439053095253635e-36,-0.0,1.6646449286567334e-35,3.804902806817004e-36,-0.0,0.0007440476329065859,-0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012499999720603228,-1.0573552502232717e-19,-0.0006249999860301614,-0.0008333333535119891,-5.578469153945442e-35,-4.094772223397125e-36,-8.85962411753927e-37,7.04903478607686e-20,4.439053095253635e-36,-0.0,0.00041666667675599456,-0.0,1.173900201403355e-34,2.683200452150928e-35,-0.0,0.0008928571478463709,-0.0,-0.00044642857392318547,-0.0,-0.0003571428533177823,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,0.0010416667209938169,-3.965082252960754e-19,-1.644567680295118e-34,-0.0031250000465661287,-2.091926047523911e-34,-7.860621985472944e-36,-3.3223589319733494e-36,2.64338825480515e-19,1.6646449286567334e-35,-0.0,1.173900201403355e-34,-0.0,0.0010416667209938169,1.0062000906354684e-34,-0.0,0.0010714285308495164,-9.063045094233022e-20,-3.759011963668524e-35,-0.0007142857066355646,-0.00042857142398133874,-1.611777529405982e-36,-7.593963273081941e-37,6.042030278233632e-20,3.804902806817004e-36,-0.0,2.683200452150928e-35,-0.0,1.0062000906354684e-34,0.0002857142826542258,-0.0,0.0005580357392318547,0.0,-0.0,-0.0,-0.0008370535797439516,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00016741071885917336,8.0,5.0,4.0,7.0,0.037942178547382355,-0.006279761902987957,-0.009143282659351826,-0.010803570970892906,-0.007008928339928389,0.00029761905898340046,0.0005952381179668009,0.0007142857066355646,0.00044642857392318547,0.0006377550889737904,0.0010714285308495164,0.0006696428754366934,0.0008928571478463709,0.0008035714272409678,0.00037202381645329297,-0.006279761902987957,0.0032823130022734404,0.0005952381179668009,0.0007142857066355646,0.00044642857392318547,-0.00029761905898340046,-0.0001700680295471102,-0.0002040816325461492,-0.00012755101488437504,-0.0,-0.0,-0.0,-0.0,4.198337023657636e-21,-8.228401115356264e-20,-0.009143282659351826,0.0005952381179668009,0.00839817151427269,0.0010714285308495164,0.0006696428754366934,-0.0,-0.00029761905898340046,-0.0,-0.0,-0.0012755101779475808,-0.0005357142654247582,-0.0003348214377183467,0.0,1.0164395367051604e-20,-0.0,-0.010803570970892906,0.0007142857066355646,0.0010714285308495164,0.013452380895614624,0.0008035714272409678,-1.2060128541135486e-20,-0.0,-0.0004761904710903764,3.0437467732081123e-20,-0.0,-0.0007142857066355646,1.0164395367051604e-20,-0.0026785715017467737,-0.0005357142654247582,1.494064123709649e-20,-0.007008928339928389,0.00044642857392318547,0.0006696428754366934,0.0008035714272409678,0.0042708334513008595,-1.3552527156068805e-20,-0.0,2.6239130304526704e-20,-0.00014880952949170023,-0.0,-0.0,-0.00022321428696159273,-0.0,-0.0002678571327123791,-0.00044642857392318547,0.00029761905898340046,-0.00029761905898340046,-0.0,-1.2060128541135486e-20,-1.3552527156068805e-20,4.251700738677755e-05,-0.0,6.776263578034403e-21,3.3881317890172014e-21,-0.0,0.0,-0.0,-0.0,-1.980307815135694e-37,1.6002864335830098e-36,0.0005952381179668009,-0.0001700680295471102,-0.00029761905898340046,-0.0,-0.0,-0.0,8.50340147735551e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0002040816325461492,-0.0,-0.0004761904710903764,2.6239130304526704e-20,6.776263578034403e-21,-0.0,0.0001360544265480712,-7.496894603520077e-21,-0.0,-0.0,-0.0,-0.0,2.467600051482846e-37,-5.323159156485126e-36,0.00044642857392318547,-0.00012755101488437504,-0.0,3.0437467732081123e-20,-0.00014880952949170023,3.3881317890172014e-21,-0.0,-7.496894603520077e-21,4.251700738677755e-05,-0.0,-0.0,-0.0,-0.0,-1.3994457082106105e-21,2.742800371785421e-20,0.0006377550889737904,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0005357142654247582,-0.0007142857066355646,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,-0.0,-0.0003348214377183467,1.0164395367051604e-20,-0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00011160714348079637,-0.0,-3.3881317890172014e-21,-0.0,0.0008928571478463709,-0.0,0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,0.0008035714272409678,4.198337023657636e-21,1.0164395367051604e-20,-0.0005357142654247582,-0.0002678571327123791,-1.980307815135694e-37,-0.0,2.467600051482846e-37,-1.3994457082106105e-21,-0.0,-0.0,-3.3881317890172014e-21,-0.0,0.00017857142665889114,-4.98021374569883e-21,0.00037202381645329297,-8.228401115356264e-20,-0.0,1.494064123709649e-20,-0.00044642857392318547,1.6002864335830098e-36,-0.0,-5.323159156485126e-36,2.742800371785421e-20,-0.0,-0.0,-0.0,-0.0,-4.98021374569883e-21,7.440476474585012e-05,8.0,5.0,4.0,8.0,0.03385912626981735,-0.005538194440305233,-0.008065476082265377,-0.009531250223517418,-0.005538194440305233,0.0002604166802484542,0.0005208333604969084,0.0006249999860301614,0.00034722223062999547,0.0005580357392318547,0.0009374999790452421,0.0005208333604969084,0.0007812500116415322,0.0006249999860301614,0.0002604166802484542,-0.005538194440305233,0.0028844245243817568,0.0005208333604969084,0.0006249999860301614,0.00034722223062999547,-0.0002604166802484542,-0.00014880952949170023,-0.00017857142665889114,-9.920635056914762e-05,-0.0,-0.0,-6.776263578034403e-21,-0.0,1.7792221998663742e-20,1.1817609525292596e-20,-0.008065476082265377,0.0005208333604969084,0.007380952592939138,0.0009374999790452421,0.0005208333604969084,-1.3552527156068805e-20,-0.0002604166802484542,-5.9421613863029955e-21,-9.449885801216249e-21,-0.0011160714784637094,-0.00046874998952262104,-0.0002604166802484542,0.0,2.9453390990607246e-20,-7.480262133976653e-21,-0.009531250223517418,0.0006249999860301614,0.0009374999790452421,0.011822916567325592,0.0006249999860301614,5.42932354290754e-21,-6.121991986279801e-21,-0.00041666667675599456,-8.246786335381249e-21,-0.0,-0.0006249999860301614,2.9633221994480835e-20,-0.0023437500931322575,-0.00041666667675599456,5.645781684252322e-20,-0.005538194440305233,0.00034722223062999547,0.0005208333604969084,0.0006249999860301614,0.0028844245243817568,6.776263578034403e-21,-0.0,-2.371692252312041e-20,-9.920635056914762e-05,-0.0,-0.0,-0.00014880952949170023,-0.0,-0.00017857142665889114,-0.0002604166802484542,0.0002604166802484542,-0.0002604166802484542,-1.3552527156068805e-20,5.42932354290754e-21,6.776263578034403e-21,3.720238237292506e-05,3.3881317890172014e-21,-0.0,-1.6940658945086007e-21,-0.0,0.0,1.721155655672929e-24,-0.0,-6.967162085838076e-23,-5.258344845811528e-23,0.0005208333604969084,-0.00014880952949170023,-0.0002604166802484542,-6.121991986279801e-21,-0.0,3.3881317890172014e-21,7.440476474585012e-05,1.6940658945086007e-21,7.516871035508072e-22,-0.0,-0.0,-3.0645488585739476e-23,-0.0,5.5074664885916e-23,-3.502939752642034e-22,0.0006249999860301614,-0.00017857142665889114,-5.9421613863029955e-21,-0.00041666667675599456,-2.371692252312041e-20,-0.0,1.6940658945086007e-21,0.0001190476177725941,7.497226606676092e-21,-0.0,-0.0,3.6945472192075606e-24,-0.0,4.1243283906927563e-22,-4.159596152954653e-22,0.00034722223062999547,-9.920635056914762e-05,-9.449885801216249e-21,-8.246786335381249e-21,-9.920635056914762e-05,-1.6940658945086007e-21,7.516871035508072e-22,7.497226606676092e-21,2.8344671591185033e-05,-0.0,-0.0,1.948280347562132e-21,-0.0,-5.141001824025226e-21,-2.8842715613763954e-21,0.0005580357392318547,-0.0,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009374999790452421,-0.0,-0.00046874998952262104,-0.0006249999860301614,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-6.776263578034403e-21,-0.0002604166802484542,2.9633221994480835e-20,-0.00014880952949170023,1.721155655672929e-24,-3.0645488585739476e-23,3.6945472192075606e-24,1.948280347562132e-21,-0.0,-0.0,7.440476474585012e-05,-0.0,-8.470329472543003e-21,2.487511634067208e-21,0.0007812500116415322,-0.0,0.0,-0.0023437500931322575,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,0.0006249999860301614,1.7792221998663742e-20,2.9453390990607246e-20,-0.00041666667675599456,-0.00017857142665889114,-6.967162085838076e-23,5.5074664885916e-23,4.1243283906927563e-22,-5.141001824025226e-21,-0.0,-0.0,-8.470329472543003e-21,-0.0,0.0001190476177725941,-1.5714845131942043e-20,0.0002604166802484542,1.1817609525292596e-20,-7.480262133976653e-21,5.645781684252322e-20,-0.0002604166802484542,-5.258344845811528e-23,-3.502939752642034e-22,-4.159596152954653e-22,-2.8842715613763954e-21,-0.0,-0.0,2.487511634067208e-21,-0.0,-1.5714845131942043e-20,3.720238237292506e-05,8.0,5.0,5.0,3.0,0.062261905521154404,-0.011111111380159855,-0.016150793060660362,-0.016150793060660362,-0.023333333432674408,0.0005555555690079927,0.0011111111380159855,0.0011111111380159855,0.0016666667070239782,0.0011904762359336019,0.0016666667070239782,0.0024999999441206455,0.0011904762359336019,0.0024999999441206455,0.0024999999441206455,-0.011111111380159855,0.0059523810632526875,0.0011111111380159855,0.0011111111380159855,0.0016666667070239782,-0.0005555555690079927,-0.0003174603043589741,-0.0003174603043589741,-0.0004761904710903764,1.5178830414797062e-18,5.421010862427522e-19,2.168404344971009e-19,2.3852447794681098e-18,1.0842021724855044e-18,4.336808689942018e-18,-0.016150793060660362,0.0011111111380159855,0.015218254178762436,0.0016666667070239782,0.0024999999441206455,-4.336808689942018e-19,-0.0005555555690079927,8.446978163850631e-19,8.095028839833686e-19,-0.0023809524718672037,-0.0008333333535119891,-0.0012499999720603228,2.1141942363467336e-18,8.673617379884035e-19,2.168404344971009e-18,-0.016150793060660362,0.0011111111380159855,0.0016666667070239782,0.015218254178762436,0.0024999999441206455,1.0842021724855044e-19,7.860465750519907e-19,-0.0005555555690079927,1.041926212148838e-18,1.1926223897340549e-18,-0.0008333333535119891,7.103302874892196e-19,-0.0023809524718672037,-0.0012499999720603228,2.168404344971009e-18,-0.023333333432674408,0.0016666667070239782,0.0024999999441206455,0.0024999999441206455,0.04833333194255829,-6.505213034913027e-19,7.589415207398531e-19,1.599198204416119e-18,-0.0016666667070239782,-8.131516293641283e-20,7.589415207398531e-19,-0.0024999999441206455,5.421010862427522e-19,-0.0024999999441206455,-0.014999999664723873,0.0005555555690079927,-0.0005555555690079927,-4.336808689942018e-19,1.0842021724855044e-19,-6.505213034913027e-19,7.936507608974352e-05,2.710505431213761e-20,-0.0,2.710505431213761e-20,-4.0657581468206416e-20,-6.776263578034403e-21,4.0657581468206416e-20,0.0,2.710505431213761e-20,1.6263032587282567e-19,0.0011111111380159855,-0.0003174603043589741,-0.0005555555690079927,7.860465750519907e-19,7.589415207398531e-19,2.710505431213761e-20,0.00015873015217948705,2.688018720131963e-21,1.6921691952134107e-20,-5.119392893745015e-19,-5.504559981704499e-20,-2.0536889666058516e-20,-1.4941749852987766e-19,-7.974878658661857e-20,-3.1941597448311063e-19,0.0011111111380159855,-0.0003174603043589741,8.446978163850631e-19,-0.0005555555690079927,1.599198204416119e-18,-0.0,2.688018720131963e-21,0.00015873015217948705,-3.7675015364171684e-21,-1.0933770271953953e-19,-1.6811072054841625e-19,-7.735000804665454e-20,-9.820753521324106e-19,-3.1701720240549514e-19,-3.9314677008181304e-19,0.0016666667070239782,-0.0004761904710903764,8.095028839833686e-19,1.041926212148838e-18,-0.0016666667070239782,2.710505431213761e-20,1.6921691952134107e-20,-3.7675015364171684e-21,0.0004761904710903764,-1.395378342393033e-19,-6.00114881516276e-20,-2.338175410879275e-19,-1.5967792439616784e-19,-3.2263538727656116e-19,-4.234849994048425e-18,0.0011904762359336019,1.5178830414797062e-18,-0.0023809524718672037,1.1926223897340549e-18,-8.131516293641283e-20,-4.0657581468206416e-20,-5.119392893745015e-19,-1.0933770271953953e-19,-1.395378342393033e-19,0.0005952381179668009,4.8554173944238665e-20,1.3627257754534143e-19,-2.170696927737488e-19,-5.4051370726021735e-20,1.5741968254980686e-19,0.0016666667070239782,5.421010862427522e-19,-0.0008333333535119891,-0.0008333333535119891,7.589415207398531e-19,-6.776263578034403e-21,-5.504559981704499e-20,-1.6811072054841625e-19,-6.00114881516276e-20,4.8554173944238665e-20,0.00041666667675599456,2.074521154703308e-34,-2.9605947006251606e-19,-8.881783972628511e-20,-1.7763567945257022e-19,0.0024999999441206455,2.168404344971009e-19,-0.0012499999720603228,7.103302874892196e-19,-0.0024999999441206455,4.0657581468206416e-20,-2.0536889666058516e-20,-7.735000804665454e-20,-2.338175410879275e-19,1.3627257754534143e-19,2.074521154703308e-34,0.0012499999720603228,-9.137443527983631e-20,-5.865954545094064e-20,-1.1910870391195799e-18,0.0011904762359336019,2.3852447794681098e-18,2.1141942363467336e-18,-0.0023809524718672037,5.421010862427522e-19,0.0,-1.4941749852987766e-19,-9.820753521324106e-19,-1.5967792439616784e-19,-2.170696927737488e-19,-2.9605947006251606e-19,-9.137443527983631e-20,0.0005952381179668009,-7.259454024273865e-20,1.917442787754278e-19,0.0024999999441206455,1.0842021724855044e-18,8.673617379884035e-19,-0.0012499999720603228,-0.0024999999441206455,2.710505431213761e-20,-7.974878658661857e-20,-3.1701720240549514e-19,-3.2263538727656116e-19,-5.4051370726021735e-20,-8.881783972628511e-20,-5.865954545094064e-20,-7.259454024273865e-20,0.0012499999720603228,-1.3029378845611174e-18,0.0024999999441206455,4.336808689942018e-18,2.168404344971009e-18,2.168404344971009e-18,-0.014999999664723873,1.6263032587282567e-19,-3.1941597448311063e-19,-3.9314677008181304e-19,-4.234849994048425e-18,1.5741968254980686e-19,-1.7763567945257022e-19,-1.1910870391195799e-18,1.917442787754278e-19,-1.3029378845611174e-18,0.007499999832361937,8.0,5.0,5.0,4.0,0.05007142946124077,-0.00858333334326744,-0.012488095089793205,-0.012488095089793205,-0.014750000089406967,0.00041666667675599456,0.0008333333535119891,0.0008333333535119891,0.0010000000474974513,0.0008928571478463709,0.0012499999720603228,0.001500000013038516,0.0008928571478463709,0.001500000013038516,0.0012499999720603228,-0.00858333334326744,0.004535714164376259,0.0008333333535119891,0.0008333333535119891,0.0010000000474974513,-0.00041666667675599456,-0.0002380952355451882,-0.0002380952355451882,-0.0002857142826542258,-6.505213034913027e-19,2.168404344971009e-19,-2.168404344971009e-19,0.0,-4.336808689942018e-19,0.0,-0.012488095089793205,0.0008333333535119891,0.011601190082728863,0.0012499999720603228,0.001500000013038516,-5.421010862427522e-19,-0.00041666667675599456,7.817958489804456e-19,-1.0549020134721984e-19,-0.0017857142956927419,-0.0006249999860301614,-0.000750000006519258,1.4094628242311558e-18,-4.607859233063394e-19,-3.0357660829594124e-18,-0.012488095089793205,0.0008333333535119891,0.0012499999720603228,0.011601190082728863,0.001500000013038516,-6.505213034913027e-19,2.168404344971009e-19,-0.00041666667675599456,-3.899471062254872e-19,2.2632720350634905e-18,-0.0006249999860301614,-7.028578997269336e-19,-0.0017857142956927419,-0.000750000006519258,-2.7647155398380363e-18,-0.014750000089406967,0.0010000000474974513,0.001500000013038516,0.001500000013038516,0.018583333119750023,-3.2526065174565133e-19,-1.7618285302889447e-19,5.421010862427522e-20,-0.0006666666595265269,-3.0086610286472748e-18,-1.3010426069826053e-18,-0.0010000000474974513,-3.1712913545201005e-18,-0.0010000000474974513,-0.0037499999161809683,0.00041666667675599456,-0.00041666667675599456,-5.421010862427522e-19,-6.505213034913027e-19,-3.2526065174565133e-19,5.952380888629705e-05,-6.776263578034403e-21,-6.776263578034403e-21,-1.3552527156068805e-20,8.131516293641283e-20,6.776263578034403e-21,-6.776263578034403e-21,-2.710505431213761e-20,2.710505431213761e-20,-5.421010862427522e-20,0.0008333333535119891,-0.0002380952355451882,-0.00041666667675599456,2.168404344971009e-19,-1.7618285302889447e-19,-6.776263578034403e-21,0.0001190476177725941,-5.131041729344778e-21,9.320651351305126e-22,1.5612676047829527e-19,-2.038482575825514e-20,1.041126095851952e-19,-3.268668167753791e-20,-1.7694718083959054e-20,-5.581852335908694e-21,0.0008333333535119891,-0.0002380952355451882,7.817958489804456e-19,-0.00041666667675599456,5.421010862427522e-20,-6.776263578034403e-21,-5.131041729344778e-21,0.0001190476177725941,1.1243796596186548e-20,-1.1576459881104392e-19,-1.3034977048900568e-19,-3.122886308961843e-20,2.7733621104798414e-20,4.997601986903489e-20,-4.787606355652991e-20,0.0010000000474974513,-0.0002857142826542258,-1.0549020134721984e-19,-3.899471062254872e-19,-0.0006666666595265269,-1.3552527156068805e-20,9.320651351305126e-22,1.1243796596186548e-20,0.00019047618843615055,2.564350048676457e-20,-3.4307490389047283e-20,4.274272607786787e-20,5.76662566316293e-20,1.2936126380761067e-19,3.2519328822451654e-19,0.0008928571478463709,-6.505213034913027e-19,-0.0017857142956927419,2.2632720350634905e-18,-3.0086610286472748e-18,8.131516293641283e-20,1.5612676047829527e-19,-1.1576459881104392e-19,2.564350048676457e-20,0.00044642857392318547,-1.1830699012251394e-19,9.11157435905483e-19,-3.9038277191436124e-19,-2.7774017245494265e-20,3.2578221497126016e-19,0.0012499999720603228,2.168404344971009e-19,-0.0006249999860301614,-0.0006249999860301614,-1.3010426069826053e-18,6.776263578034403e-21,-2.038482575825514e-20,-1.3034977048900568e-19,-3.4307490389047283e-20,-1.1830699012251394e-19,0.0003124999930150807,7.105427178102809e-20,6.34413150133963e-20,1.243449820791477e-19,3.108624358108236e-19,0.001500000013038516,-2.168404344971009e-19,-0.000750000006519258,-7.028578997269336e-19,-0.0010000000474974513,-6.776263578034403e-21,1.041126095851952e-19,-3.122886308961843e-20,4.274272607786787e-20,9.11157435905483e-19,7.105427178102809e-20,0.0005000000237487257,5.532673136538792e-20,2.847954414686518e-19,6.014826763579207e-19,0.0008928571478463709,0.0,1.4094628242311558e-18,-0.0017857142956927419,-3.1712913545201005e-18,-2.710505431213761e-20,-3.268668167753791e-20,2.7733621104798414e-20,5.76662566316293e-20,-3.9038277191436124e-19,6.34413150133963e-20,5.532673136538792e-20,0.00044642857392318547,8.430871406360575e-19,3.1135117030587175e-19,0.001500000013038516,-4.336808689942018e-19,-4.607859233063394e-19,-0.000750000006519258,-0.0010000000474974513,2.710505431213761e-20,-1.7694718083959054e-20,4.997601986903489e-20,1.2936126380761067e-19,-2.7774017245494265e-20,1.243449820791477e-19,2.847954414686518e-19,8.430871406360575e-19,0.0005000000237487257,6.014826763579207e-19,0.0012499999720603228,0.0,-3.0357660829594124e-18,-2.7647155398380363e-18,-0.0037499999161809683,-5.421010862427522e-20,-5.581852335908694e-21,-4.787606355652991e-20,3.2519328822451654e-19,3.2578221497126016e-19,3.108624358108236e-19,6.014826763579207e-19,3.1135117030587175e-19,6.014826763579207e-19,0.0012499999720603228,8.0,5.0,5.0,5.0,0.041952382773160934,-0.007000000216066837,-0.010190475732088089,-0.010190475732088089,-0.010190475732088089,0.00033333332976326346,0.0006666666595265269,0.0006666666595265269,0.0006666666595265269,0.0007142857066355646,0.0010000000474974513,0.0010000000474974513,0.0007142857066355646,0.0010000000474974513,0.0007142857066355646,-0.007000000216066837,0.003666666569188237,0.0006666666595265269,0.0006666666595265269,0.0006666666595265269,-0.00033333332976326346,-0.00019047618843615055,-0.00019047618843615055,-0.00019047618843615055,-8.673617379884035e-19,-5.421010862427522e-19,-8.673617379884035e-19,-1.951563910473908e-18,-6.505213034913027e-19,-1.3010426069826053e-18,-0.010190475732088089,0.0006666666595265269,0.009380952455103397,0.0010000000474974513,0.0010000000474974513,3.9302328752599536e-19,-0.00033333332976326346,-8.958192326020654e-19,-8.608360584371844e-19,-0.0014285714132711291,-0.0005000000237487257,-0.0005000000237487257,-1.0842021724855044e-18,-7.589415207398531e-19,-1.1926223897340549e-18,-0.010190475732088089,0.0006666666595265269,0.0010000000474974513,0.009380952455103397,0.0010000000474974513,-5.421010862427522e-20,-1.0706496453294356e-18,-0.00033333332976326346,-8.528727389813481e-19,-5.963111948670274e-19,-0.0005000000237487257,-3.252519663492195e-19,-0.0014285714132711291,-0.0005000000237487257,-2.710505431213761e-20,-0.010190475732088089,0.0006666666595265269,0.0010000000474974513,0.0010000000474974513,0.009380952455103397,-8.131516293641283e-20,-1.0909784360635388e-18,-9.554531645028508e-19,-0.00033333332976326346,-5.692061405548898e-19,-2.168404344971009e-19,-0.0005000000237487257,-1.4907779871675686e-19,-0.0005000000237487257,-0.0014285714132711291,0.00033333332976326346,-0.00033333332976326346,3.9302328752599536e-19,-5.421010862427522e-20,-8.131516293641283e-20,4.761904710903764e-05,-4.0657581468206416e-20,-2.0328790734103208e-20,-0.0,-5.421010862427522e-20,0.0,4.404571325722362e-20,4.0657581468206416e-20,6.776263578034403e-21,-2.710505431213761e-20,0.0006666666595265269,-0.00019047618843615055,-0.00033333332976326346,-1.0706496453294356e-18,-1.0909784360635388e-18,-4.0657581468206416e-20,9.523809421807528e-05,1.2889664073884554e-21,1.2889664073884554e-21,4.626468728894306e-19,1.1175339322562115e-19,1.1175339322562115e-19,1.697292545132411e-19,7.791802263353705e-20,1.784297857653182e-19,0.0006666666595265269,-0.00019047618843615055,-8.958192326020654e-19,-0.00033333332976326346,-9.554531645028508e-19,-2.0328790734103208e-20,1.2889664073884554e-21,9.523809421807528e-05,7.540453256030524e-21,1.2242879234077446e-19,1.2267737303954372e-19,6.854078655455768e-20,5.951572262137277e-19,1.2132396338573918e-19,1.3209603923498462e-19,0.0006666666595265269,-0.00019047618843615055,-8.608360584371844e-19,-8.528727389813481e-19,-0.00033333332976326346,-0.0,1.2889664073884554e-21,7.540453256030524e-21,9.523809421807528e-05,1.2242879234077446e-19,5.771347055003018e-20,1.2267737303954372e-19,1.233955209076046e-19,9.966932491433565e-20,5.342535720726734e-19,0.0007142857066355646,-8.673617379884035e-19,-0.0014285714132711291,-5.963111948670274e-19,-5.692061405548898e-19,-5.421010862427522e-20,4.626468728894306e-19,1.2242879234077446e-19,1.2242879234077446e-19,0.0003571428533177823,2.6917243923409726e-20,2.6917243923409726e-20,-3.1526451008507184e-20,1.1827273967527541e-19,-3.8776886179164807e-20,0.0010000000474974513,-5.421010862427522e-19,-0.0005000000237487257,-0.0005000000237487257,-2.168404344971009e-19,0.0,1.1175339322562115e-19,1.2267737303954372e-19,5.771347055003018e-20,2.6917243923409726e-20,0.0002500000118743628,3.0963889549551807e-34,2.4361464241361143e-19,3.3791699626685692e-34,6.361510481243804e-34,0.0010000000474974513,-8.673617379884035e-19,-0.0005000000237487257,-3.252519663492195e-19,-0.0005000000237487257,4.404571325722362e-20,1.1175339322562115e-19,6.854078655455768e-20,1.2267737303954372e-19,2.6917243923409726e-20,3.0963889549551807e-34,0.0002500000118743628,2.030122073966333e-20,2.9475635641239057e-34,3.045183224040599e-19,0.0007142857066355646,-1.951563910473908e-18,-1.0842021724855044e-18,-0.0014285714132711291,-1.4907779871675686e-19,4.0657581468206416e-20,1.697292545132411e-19,5.951572262137277e-19,1.233955209076046e-19,-3.1526451008507184e-20,2.4361464241361143e-19,2.030122073966333e-20,0.0003571428533177823,3.0633092715775646e-20,-9.412619375916174e-20,0.0010000000474974513,-6.505213034913027e-19,-7.589415207398531e-19,-0.0005000000237487257,-0.0005000000237487257,6.776263578034403e-21,7.791802263353705e-20,1.2132396338573918e-19,9.966932491433565e-20,1.1827273967527541e-19,3.3791699626685692e-34,2.9475635641239057e-34,3.0633092715775646e-20,0.0002500000118743628,-2.7007875130446835e-20,0.0007142857066355646,-1.3010426069826053e-18,-1.1926223897340549e-18,-2.710505431213761e-20,-0.0014285714132711291,-2.710505431213761e-20,1.784297857653182e-19,1.3209603923498462e-19,5.342535720726734e-19,-3.8776886179164807e-20,6.361510481243804e-34,3.045183224040599e-19,-9.412619375916174e-20,-2.7007875130446835e-20,0.0003571428533177823,8.0,5.0,5.0,6.0,0.03613095358014107,-0.0059126983396708965,-0.008611110970377922,-0.008611110970377922,-0.007470238022506237,0.00027777778450399637,0.0005555555690079927,0.0005555555690079927,0.0004761904710903764,0.0005952381179668009,0.0008333333535119891,0.0007142857066355646,0.0005952381179668009,0.0007142857066355646,0.00044642857392318547,-0.0059126983396708965,0.003078231355175376,0.0005555555690079927,0.0005555555690079927,0.0004761904710903764,-0.00027777778450399637,-0.00015873015217948705,-0.00015873015217948705,-0.0001360544265480712,-1.8236621422336618e-18,-1.7485971560056996e-18,-1.4958973045810827e-18,-1.8236621422336618e-18,-1.4958973045810827e-18,-1.289326007196098e-18,-0.008611110970377922,0.0005555555690079927,0.007876983843743801,0.0008333333535119891,0.0007142857066355646,-1.1248597539537109e-18,-0.00027777778450399637,-1.8694565153058225e-18,-8.493356629832831e-19,-0.0011904762359336019,-0.00041666667675599456,-0.0003571428533177823,-7.049035173817772e-19,-4.2294210008930866e-19,-4.956353010071399e-19,-0.008611110970377922,0.0005555555690079927,0.0008333333535119891,0.007876983843743801,0.0007142857066355646,-1.1366466640922852e-18,-1.8694565153058225e-18,-0.00027777778450399637,-8.493356629832831e-19,-7.049035173817772e-19,-0.00041666667675599456,-4.2294210008930866e-19,-0.0011904762359336019,-0.0003571428533177823,-4.956353010071399e-19,-0.007470238022506237,0.0004761904710903764,0.0007142857066355646,0.0007142857066355646,0.005443452391773462,-8.944667923005412e-19,-1.5794596070490724e-18,-1.5794596070490724e-18,-0.00019047618843615055,-1.5105075372466654e-19,-2.1147105004465433e-19,-0.0002857142826542258,-1.5105075372466654e-19,-0.0002857142826542258,-0.0006696428754366934,0.00027777778450399637,-0.00027777778450399637,-1.1248597539537109e-18,-1.1366466640922852e-18,-8.944667923005412e-19,3.968253804487176e-05,3.7269449679189215e-20,3.7269449679189215e-20,1.0164395367051604e-20,8.811293967272215e-20,1.2335811683428072e-19,1.0573552502232717e-19,8.811293967272215e-20,1.0573552502232717e-19,6.608470637012875e-20,0.0005555555690079927,-0.00015873015217948705,-0.00027777778450399637,-1.8694565153058225e-18,-1.5794596070490724e-18,3.7269449679189215e-20,7.936507608974352e-05,1.0271028641532493e-19,8.730083571930261e-20,3.2291293222146684e-19,1.6588729783596493e-19,1.3187737920993506e-19,2.0140100496622206e-19,1.2084060556467265e-19,1.4161007677011348e-19,0.0005555555690079927,-0.00015873015217948705,-1.8694565153058225e-18,-0.00027777778450399637,-1.5794596070490724e-18,3.7269449679189215e-20,1.0271028641532493e-19,7.936507608974352e-05,8.730083571930261e-20,2.0140100496622206e-19,1.6588729783596493e-19,1.2084060556467265e-19,3.2291293222146684e-19,1.3187737920993506e-19,1.4161007677011348e-19,0.0004761904710903764,-0.0001360544265480712,-8.493356629832831e-19,-8.493356629832831e-19,-0.00019047618843615055,1.0164395367051604e-20,8.730083571930261e-20,8.730083571930261e-20,5.442176916403696e-05,4.315735682225861e-20,6.042030278233632e-20,7.595695188458428e-20,4.315735682225861e-20,7.595695188458428e-20,8.901205268682461e-20,0.0005952381179668009,-1.8236621422336618e-18,-0.0011904762359336019,-7.049035173817772e-19,-1.5105075372466654e-19,8.811293967272215e-20,3.2291293222146684e-19,2.0140100496622206e-19,4.315735682225861e-20,0.00029761905898340046,1.4400948231145227e-33,1.1574022070661863e-33,1.8847277653649608e-33,1.1405043839376198e-33,1.16483068851491e-33,0.0008333333535119891,-1.7485971560056996e-18,-0.00041666667675599456,-0.00041666667675599456,-2.1147105004465433e-19,1.2335811683428072e-19,1.6588729783596493e-19,1.6588729783596493e-19,6.042030278233632e-20,1.4400948231145227e-33,0.00020833333837799728,9.680791991391603e-34,1.4400948231145227e-33,9.680791991391603e-34,9.130068296256553e-34,0.0007142857066355646,-1.4958973045810827e-18,-0.0003571428533177823,-4.2294210008930866e-19,-0.0002857142826542258,1.0573552502232717e-19,1.3187737920993506e-19,1.2084060556467265e-19,7.595695188458428e-20,1.1574022070661863e-33,9.680791991391603e-34,0.0001428571413271129,1.1405043839376198e-33,8.12339421966654e-34,7.656156337378797e-34,0.0005952381179668009,-1.8236621422336618e-18,-7.049035173817772e-19,-0.0011904762359336019,-1.5105075372466654e-19,8.811293967272215e-20,2.0140100496622206e-19,3.2291293222146684e-19,4.315735682225861e-20,1.8847277653649608e-33,1.4400948231145227e-33,1.1405043839376198e-33,0.00029761905898340046,1.1574022070661863e-33,1.16483068851491e-33,0.0007142857066355646,-1.4958973045810827e-18,-4.2294210008930866e-19,-0.0003571428533177823,-0.0002857142826542258,1.0573552502232717e-19,1.2084060556467265e-19,1.3187737920993506e-19,7.595695188458428e-20,1.1405043839376198e-33,9.680791991391603e-34,8.12339421966654e-34,1.1574022070661863e-33,0.0001428571413271129,7.656156337378797e-34,0.00044642857392318547,-1.289326007196098e-18,-4.956353010071399e-19,-4.956353010071399e-19,-0.0006696428754366934,6.608470637012875e-20,1.4161007677011348e-19,1.4161007677011348e-19,8.901205268682461e-20,1.16483068851491e-33,9.130068296256553e-34,7.656156337378797e-34,1.16483068851491e-33,7.656156337378797e-34,0.00013392856635618955,8.0,5.0,5.0,7.0,0.03174319863319397,-0.0051190475933253765,-0.007457483094185591,-0.007457483094185591,-0.0057142856530845165,0.0002380952355451882,0.0004761904710903764,0.0004761904710903764,0.0003571428533177823,0.0005102040595375001,0.0007142857066355646,0.0005357142654247582,0.0005102040595375001,0.0005357142654247582,0.00029761905898340046,-0.0051190475933253765,0.002653061179444194,0.0004761904710903764,0.0004761904710903764,0.0003571428533177823,-0.0002380952355451882,-0.0001360544265480712,-0.0001360544265480712,-0.0001020408162730746,-0.0,-0.0,-0.0,-0.0,-0.0,-6.776263578034403e-20,-0.007457483094185591,0.0004761904710903764,0.006789966020733118,0.0007142857066355646,0.0005357142654247582,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.0010204081190750003,-0.0003571428533177823,-0.0002678571327123791,0.0,0.0,1.0164395367051604e-20,-0.007457483094185591,0.0004761904710903764,0.0007142857066355646,0.006789966020733118,0.0005357142654247582,-0.0,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.0003571428533177823,-0.0,-0.0010204081190750003,-0.0002678571327123791,-0.0,-0.0057142856530845165,0.0003571428533177823,0.0005357142654247582,0.0005357142654247582,0.0034523808863013983,-0.0,-0.0,-0.0,-0.0001190476177725941,-0.0,-0.0,-0.00017857142665889114,-0.0,-0.00017857142665889114,-0.0003571428533177823,0.0002380952355451882,-0.0002380952355451882,-0.0,-0.0,-0.0,3.40136066370178e-05,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,8.949782217558526e-22,0.0004761904710903764,-0.0001360544265480712,-0.0002380952355451882,-0.0,-0.0,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0001360544265480712,-0.0,-0.0002380952355451882,-0.0,-0.0,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0001020408162730746,-0.0,-0.0,-0.0001190476177725941,-0.0,-0.0,-0.0,3.40136066370178e-05,-0.0,-0.0,-0.0,-0.0,-0.0,2.0328790734103208e-20,0.0005102040595375001,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0003571428533177823,-0.0003571428533177823,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0005357142654247582,-0.0,-0.0002678571327123791,-0.0,-0.00017857142665889114,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-3.3881317890172014e-21,0.0005102040595375001,-0.0,0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,0.0005357142654247582,-0.0,0.0,-0.0002678571327123791,-0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.928571332944557e-05,0.0,0.00029761905898340046,-6.776263578034403e-20,1.0164395367051604e-20,-0.0,-0.0003571428533177823,8.949782217558526e-22,-0.0,-0.0,2.0328790734103208e-20,-0.0,-0.0,-3.3881317890172014e-21,-0.0,0.0,5.952380888629705e-05,8.0,5.0,5.0,8.0,0.028313491493463516,-0.004513889085501432,-0.006577380932867527,-0.006577380932867527,-0.004513889085501432,0.00020833333837799728,0.00041666667675599456,0.00041666667675599456,0.00027777778450399637,0.00044642857392318547,0.0006249999860301614,0.00041666667675599456,0.00044642857392318547,0.00041666667675599456,0.00020833333837799728,-0.004513889085501432,0.0023313493002206087,0.00041666667675599456,0.00041666667675599456,0.00027777778450399637,-0.00020833333837799728,-0.0001190476177725941,-0.0001190476177725941,-7.936507608974352e-05,-0.0,-0.0,3.3881317890172014e-21,-0.0,-2.5365692403104454e-22,1.272455248243947e-20,-0.006577380932867527,0.00041666667675599456,0.005967261735349894,0.0006249999860301614,0.00041666667675599456,-6.776263578034403e-21,-0.00020833333837799728,-2.718654493106794e-21,7.076654843523049e-22,-0.0008928571478463709,-0.0003124999930150807,-0.00020833333837799728,0.0,2.266467002408018e-21,-1.2115429280935064e-22,-0.006577380932867527,0.00041666667675599456,0.0006249999860301614,0.005967261735349894,0.00041666667675599456,-7.200671047965895e-21,-3.662763830320476e-21,-0.00020833333837799728,3.0111139325873985e-21,-0.0,-0.0003124999930150807,3.2105761376733085e-21,-0.0008928571478463709,-0.00020833333837799728,1.1282554531528632e-20,-0.004513889085501432,0.00027777778450399637,0.00041666667675599456,0.00041666667675599456,0.0023313493002206087,-0.0,-0.0,3.3881317890172014e-21,-7.936507608974352e-05,-0.0,-0.0,-0.0001190476177725941,-0.0,-0.0001190476177725941,-0.00020833333837799728,0.00020833333837799728,-0.00020833333837799728,-6.776263578034403e-21,-7.200671047965895e-21,-0.0,2.9761904443148524e-05,3.3881317890172014e-21,3.3881317890172014e-21,-0.0,-0.0,0.0,-3.7842303858305493e-22,-0.0,3.213988207212992e-22,6.752104592905152e-22,0.00041666667675599456,-0.0001190476177725941,-0.00020833333837799728,-3.662763830320476e-21,-0.0,3.3881317890172014e-21,5.952380888629705e-05,8.470329472543003e-22,-7.96146067235164e-23,-0.0,-0.0,2.3317317875034574e-23,-0.0,1.9947096459740157e-22,-2.2046759568423887e-23,0.00041666667675599456,-0.0001190476177725941,-2.718654493106794e-21,-0.00020833333837799728,3.3881317890172014e-21,3.3881317890172014e-21,8.470329472543003e-22,5.952380888629705e-05,-6.303500979340329e-23,-0.0,-0.0,-7.027453147102308e-23,-0.0,1.0587911840678754e-22,-4.277552693955051e-22,0.00027777778450399637,-7.936507608974352e-05,7.076654843523049e-22,3.0111139325873985e-21,-7.936507608974352e-05,-0.0,-7.96146067235164e-23,-6.303500979340329e-23,2.2675736545352265e-05,-0.0,-0.0,-1.2257552985974578e-22,-0.0,-7.972832638725817e-22,-4.8392162058658345e-21,0.00044642857392318547,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0,-0.0003124999930150807,-0.0003124999930150807,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00015624999650754035,-0.0,-0.0,-0.0,-0.0,0.00041666667675599456,3.3881317890172014e-21,-0.00020833333837799728,3.2105761376733085e-21,-0.0001190476177725941,-3.7842303858305493e-22,2.3317317875034574e-23,-7.027453147102308e-23,-1.2257552985974578e-22,-0.0,-0.0,5.952380888629705e-05,-0.0,-8.470329472543003e-22,5.666227585666587e-23,0.00044642857392318547,-0.0,0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,0.00041666667675599456,-2.5365692403104454e-22,2.266467002408018e-21,-0.00020833333837799728,-0.0001190476177725941,3.213988207212992e-22,1.9947096459740157e-22,1.0587911840678754e-22,-7.972832638725817e-22,-0.0,-0.0,-8.470329472543003e-22,-0.0,5.952380888629705e-05,-2.79583169633802e-21,0.00020833333837799728,1.272455248243947e-20,-1.2115429280935064e-22,1.1282554531528632e-20,-0.00020833333837799728,6.752104592905152e-22,-2.2046759568423887e-23,-4.277552693955051e-22,-4.8392162058658345e-21,-0.0,-0.0,5.666227585666587e-23,-0.0,-2.79583169633802e-21,2.9761904443148524e-05,8.0,5.0,6.0,3.0,0.05373677238821983,-0.009391534142196178,-0.013657407835125923,-0.01185515895485878,-0.01974206417798996,0.00046296295477077365,0.0009259259095415473,0.0007936508045531809,0.0013888889225199819,0.0009920635493472219,0.0011904762359336019,0.0020833334419876337,0.0007440476329065859,0.0017857142956927419,0.0020833334419876337,-0.009391534142196178,0.004998110234737396,0.0009259259095415473,0.0007936508045531809,0.0013888889225199819,-0.00046296295477077365,-0.00026455026818439364,-0.00022675737272948027,-0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.013657407835125923,0.0009259259095415473,0.012781084515154362,0.0011904762359336019,0.0020833334419876337,-0.0,-0.00046296295477077365,-0.0,-0.0,-0.0019841270986944437,-0.0005952381179668009,-0.0010416667209938169,0.0,0.0,0.0,-0.01185515895485878,0.0007936508045531809,0.0011904762359336019,0.008834325708448887,0.0017857142956927419,-7.093368597294148e-21,-0.0,-0.0003174603043589741,5.370693401142436e-20,-0.0,-0.0004761904710903764,-0.0,-0.0011160714784637094,-0.0007142857066355646,-9.912705813347644e-18,-0.01974206417798996,0.0013888889225199819,0.0020833334419876337,0.0017857142956927419,0.04057539626955986,-0.0,-0.0,5.370693401142436e-20,-0.0013888889225199819,-0.0,-0.0,-0.0020833334419876337,-4.690125653704243e-18,-0.0017857142956927419,-0.012500000186264515,0.00046296295477077365,-0.00046296295477077365,-0.0,-7.093368597294148e-21,-0.0,6.613756704609841e-05,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00026455026818439364,-0.00046296295477077365,-0.0,-0.0,-0.0,0.00013227513409219682,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,-0.00022675737272948027,-0.0,-0.0003174603043589741,5.370693401142436e-20,-0.0,-0.0,9.070294618140906e-05,-1.534483851977655e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.00039682540227659047,-0.0,5.370693401142436e-20,-0.0013888889225199819,-0.0,-0.0,-1.534483851977655e-20,0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009920635493472219,-0.0,-0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011904762359336019,-0.0,-0.0005952381179668009,-0.0004761904710903764,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,0.0020833334419876337,-0.0,-0.0010416667209938169,-0.0,-0.0020833334419876337,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,0.0,-0.0011160714784637094,-4.690125653704243e-18,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,2.9001743267569904e-19,1.9825412040285595e-18,0.0017857142956927419,-0.0,0.0,-0.0007142857066355646,-0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,2.9001743267569904e-19,0.0007142857066355646,2.5758723422293945e-33,0.0020833334419876337,-0.0,0.0,-9.912705813347644e-18,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,1.9825412040285595e-18,2.5758723422293945e-33,0.0062500000931322575,8.0,5.0,6.0,4.0,0.04315972328186035,-0.0072519839741289616,-0.010555555112659931,-0.009159225970506668,-0.012470237910747528,0.00034722223062999547,0.0006944444612599909,0.0005952381179668009,0.0008333333535119891,0.0007440476329065859,0.0008928571478463709,0.0012499999720603228,0.0005580357392318547,0.0010714285308495164,0.0010416667209938169,-0.0072519839741289616,0.00380810652859509,0.0006944444612599909,0.0005952381179668009,0.0008333333535119891,-0.00034722223062999547,-0.00019841270113829523,-0.0001700680295471102,-0.0002380952355451882,-0.0,-0.0,-1.0573552502232717e-19,1.8726103701122764e-34,-9.063045094233022e-20,-3.965082252960754e-19,-0.010555555112659931,0.0006944444612599909,0.009742063470184803,0.0008928571478463709,0.0012499999720603228,1.3552527156068805e-20,-0.00034722223062999547,4.987524681376477e-21,-9.875298974138589e-20,-0.0014880952658131719,-0.00044642857392318547,-0.0006249999860301614,0.0,-3.759011963668524e-35,-1.644567680295118e-34,-0.009159225970506668,0.0005952381179668009,0.0008928571478463709,0.006732887122780085,0.0010714285308495164,1.693524026583893e-20,4.987524681376477e-21,-0.0002380952355451882,-1.6054066085036358e-19,-0.0,-0.0003571428533177823,-7.129437522584484e-35,-0.0008370535797439516,-0.00042857142398133874,1.734723475976807e-18,-0.012470237910747528,0.0008333333535119891,0.0012499999720603228,0.0010714285308495164,0.015605159103870392,1.3552527156068805e-20,6.982534473147711e-21,-6.99102163703819e-20,-0.0005555555690079927,-0.0,-0.0,-0.0008333333535119891,1.4758603018080576e-18,-0.0007142857066355646,-0.0031250000465661287,0.00034722223062999547,-0.00034722223062999547,1.3552527156068805e-20,1.693524026583893e-20,1.3552527156068805e-20,4.960317528457381e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-6.776263578034403e-21,-0.0,0.0,-2.6290472124610016e-36,0.0,-3.364707292604017e-36,-1.4401214898467196e-35,0.0006944444612599909,-0.00019841270113829523,-0.00034722223062999547,4.987524681376477e-21,6.982534473147711e-21,-3.3881317890172014e-21,9.920635056914762e-05,-1.4250071239462763e-21,-1.995009993719626e-21,-0.0,-0.0,-8.85962411753927e-37,0.0,-7.593963273081941e-37,-3.3223589319733494e-36,0.0005952381179668009,-0.0001700680295471102,4.987524681376477e-21,-0.0002380952355451882,-6.99102163703819e-20,-3.3881317890172014e-21,-1.4250071239462763e-21,6.80272132740356e-05,1.9974347072798504e-20,-0.0,-0.0,8.870392008829999e-36,-0.0,7.603193457910633e-36,3.32639703918449e-35,0.0008333333535119891,-0.0002380952355451882,-9.875298974138589e-20,-1.6054066085036358e-19,-0.0005555555690079927,-6.776263578034403e-21,-1.995009993719626e-21,1.9974347072798504e-20,0.00015873015217948705,-0.0,-0.0,7.04903478607686e-20,-1.2484069134081842e-34,6.042030278233632e-20,2.64338825480515e-19,0.0007440476329065859,-0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.00044642857392318547,-0.0003571428533177823,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0012499999720603228,-1.0573552502232717e-19,-0.0006249999860301614,-7.129437522584484e-35,-0.0008333333535119891,-2.6290472124610016e-36,-8.85962411753927e-37,8.870392008829999e-36,7.04903478607686e-20,-0.0,-0.0,0.00041666667675599456,-0.0,2.683200452150928e-35,1.173900201403355e-34,0.0005580357392318547,1.8726103701122764e-34,0.0,-0.0008370535797439516,1.4758603018080576e-18,0.0,0.0,-0.0,-1.2484069134081842e-34,-0.0,-0.0,-0.0,0.00016741071885917336,-1.7401046994517708e-19,-3.4694470036524025e-19,0.0010714285308495164,-9.063045094233022e-20,-3.759011963668524e-35,-0.00042857142398133874,-0.0007142857066355646,-3.364707292604017e-36,-7.593963273081941e-37,7.603193457910633e-36,6.042030278233632e-20,-0.0,-0.0,2.683200452150928e-35,-1.7401046994517708e-19,0.0002857142826542258,4.6124212641458e-34,0.0010416667209938169,-3.965082252960754e-19,-1.644567680295118e-34,1.734723475976807e-18,-0.0031250000465661287,-1.4401214898467196e-35,-3.3223589319733494e-36,3.32639703918449e-35,2.64338825480515e-19,-0.0,-0.0,1.173900201403355e-34,-3.4694470036524025e-19,4.6124212641458e-34,0.0010416667209938169,8.0,5.0,6.0,5.0,0.03613095358014107,-0.0059126983396708965,-0.008611110970377922,-0.007470238022506237,-0.008611110970377922,0.00027777778450399637,0.0005555555690079927,0.0004761904710903764,0.0005555555690079927,0.0005952381179668009,0.0007142857066355646,0.0008333333535119891,0.00044642857392318547,0.0007142857066355646,0.0005952381179668009,-0.0059126983396708965,0.003078231355175376,0.0005555555690079927,0.0004761904710903764,0.0005555555690079927,-0.00027777778450399637,-0.00015873015217948705,-0.0001360544265480712,-0.00015873015217948705,-1.8236621422336618e-18,-1.4958973045810827e-18,-1.7485971560056996e-18,-1.289326007196098e-18,-1.4958973045810827e-18,-1.8236621422336618e-18,-0.008611110970377922,0.0005555555690079927,0.007876983843743801,0.0007142857066355646,0.0008333333535119891,-1.1248597539537109e-18,-0.00027777778450399637,-8.493356629832831e-19,-1.8694565153058225e-18,-0.0011904762359336019,-0.0003571428533177823,-0.00041666667675599456,-4.956353010071399e-19,-4.2294210008930866e-19,-7.049035173817772e-19,-0.007470238022506237,0.0004761904710903764,0.0007142857066355646,0.005443452391773462,0.0007142857066355646,-8.905055277446013e-19,-1.5794596070490724e-18,-0.00019047618843615055,-1.4625902568311756e-18,-1.5105075372466654e-19,-0.0002857142826542258,-2.1147105004465433e-19,-0.0006696428754366934,-0.0002857142826542258,-1.850371804212999e-18,-0.008611110970377922,0.0005555555690079927,0.0008333333535119891,0.0007142857066355646,0.007876983843743801,-1.1248597539537109e-18,-1.8694565153058225e-18,-7.324663127653863e-19,-0.00027777778450399637,-7.049035173817772e-19,-4.2294210008930866e-19,-0.00041666667675599456,-2.203113050268887e-18,-0.0003571428533177823,-0.0011904762359336019,0.00027777778450399637,-0.00027777778450399637,-1.1248597539537109e-18,-8.905055277446013e-19,-1.1248597539537109e-18,3.968253804487176e-05,3.7269449679189215e-20,1.0164395367051604e-20,4.0657581468206416e-20,8.811293967272215e-20,1.0573552502232717e-19,1.2335811683428072e-19,6.608470637012875e-20,1.0573552502232717e-19,8.811293967272215e-20,0.0005555555690079927,-0.00015873015217948705,-0.00027777778450399637,-1.5794596070490724e-18,-1.8694565153058225e-18,3.7269449679189215e-20,7.936507608974352e-05,8.730083571930261e-20,1.0271028641532493e-19,3.2291293222146684e-19,1.3187737920993506e-19,1.6588729783596493e-19,1.4161007677011348e-19,1.2084060556467265e-19,2.0140100496622206e-19,0.0004761904710903764,-0.0001360544265480712,-8.493356629832831e-19,-0.00019047618843615055,-7.324663127653863e-19,1.0164395367051604e-20,8.730083571930261e-20,5.442176916403696e-05,5.3909602955022657e-20,4.315735682225861e-20,7.595695188458428e-20,6.042030278233632e-20,8.901205268682461e-20,7.595695188458428e-20,4.315735682225861e-20,0.0005555555690079927,-0.00015873015217948705,-1.8694565153058225e-18,-1.4625902568311756e-18,-0.00027777778450399637,4.0657581468206416e-20,1.0271028641532493e-19,5.3909602955022657e-20,7.936507608974352e-05,2.0140100496622206e-19,1.2084060556467265e-19,1.6588729783596493e-19,1.4161007677011348e-19,1.3187737920993506e-19,3.2291293222146684e-19,0.0005952381179668009,-1.8236621422336618e-18,-0.0011904762359336019,-1.5105075372466654e-19,-7.049035173817772e-19,8.811293967272215e-20,3.2291293222146684e-19,4.315735682225861e-20,2.0140100496622206e-19,0.00029761905898340046,1.1574022070661863e-33,1.4400948231145227e-33,1.16483068851491e-33,1.1405043839376198e-33,1.8847277653649608e-33,0.0007142857066355646,-1.4958973045810827e-18,-0.0003571428533177823,-0.0002857142826542258,-4.2294210008930866e-19,1.0573552502232717e-19,1.3187737920993506e-19,7.595695188458428e-20,1.2084060556467265e-19,1.1574022070661863e-33,0.0001428571413271129,9.680791991391603e-34,7.656156337378797e-34,8.12339421966654e-34,1.1405043839376198e-33,0.0008333333535119891,-1.7485971560056996e-18,-0.00041666667675599456,-2.1147105004465433e-19,-0.00041666667675599456,1.2335811683428072e-19,1.6588729783596493e-19,6.042030278233632e-20,1.6588729783596493e-19,1.4400948231145227e-33,9.680791991391603e-34,0.00020833333837799728,9.130068296256553e-34,9.680791991391603e-34,1.4400948231145227e-33,0.00044642857392318547,-1.289326007196098e-18,-4.956353010071399e-19,-0.0006696428754366934,-2.203113050268887e-18,6.608470637012875e-20,1.4161007677011348e-19,8.901205268682461e-20,1.4161007677011348e-19,1.16483068851491e-33,7.656156337378797e-34,9.130068296256553e-34,0.00013392856635618955,1.3920837078626284e-19,3.398641894181512e-19,0.0007142857066355646,-1.4958973045810827e-18,-4.2294210008930866e-19,-0.0002857142826542258,-0.0003571428533177823,1.0573552502232717e-19,1.2084060556467265e-19,7.595695188458428e-20,1.3187737920993506e-19,1.1405043839376198e-33,8.12339421966654e-34,9.680791991391603e-34,1.3920837078626284e-19,0.0001428571413271129,1.5106647081111772e-33,0.0005952381179668009,-1.8236621422336618e-18,-7.049035173817772e-19,-1.850371804212999e-18,-0.0011904762359336019,8.811293967272215e-20,2.0140100496622206e-19,4.315735682225861e-20,3.2291293222146684e-19,1.8847277653649608e-33,1.1405043839376198e-33,1.4400948231145227e-33,3.398641894181512e-19,1.5106647081111772e-33,0.00029761905898340046,8.0,5.0,6.0,6.0,0.031098827719688416,-0.004993386100977659,-0.007275132462382317,-0.006310232449322939,-0.006310232449322939,0.00023148147738538682,0.00046296295477077365,0.00039682540227659047,0.00039682540227659047,0.0004960317746736109,0.0005952381179668009,0.0005952381179668009,0.00037202381645329297,0.0005102040595375001,0.00037202381645329297,-0.004993386100977659,0.0025840892922133207,0.00046296295477077365,0.00039682540227659047,0.00039682540227659047,-0.00023148147738538682,-0.00013227513409219682,-0.00011337868636474013,-0.00011337868636474013,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.007275132462382317,0.00046296295477077365,0.006613756529986858,0.0005952381179668009,0.0005952381179668009,-0.0,-0.00023148147738538682,-0.0,-0.0,-0.0009920635493472219,-0.00029761905898340046,-0.00029761905898340046,0.0,0.0,0.0,-0.006310232449322939,0.00039682540227659047,0.0005952381179668009,0.004570223856717348,0.0005102040595375001,-5.134247862011988e-21,-0.0,-0.00015873015217948705,1.5549436474412714e-20,-0.0,-0.0002380952355451882,-0.0,-0.0005580357392318547,-0.0002040816325461492,-9.735692470983746e-19,-0.006310232449322939,0.00039682540227659047,0.0005952381179668009,0.0005102040595375001,0.004570223856717348,-6.776263578034403e-21,-0.0,1.5549436474412714e-20,-0.00015873015217948705,-0.0,-0.0,-0.0002380952355451882,-1.1392935386548783e-18,-0.0002040816325461492,-0.0005580357392318547,0.00023148147738538682,-0.00023148147738538682,-0.0,-5.134247862011988e-21,-6.776263578034403e-21,3.3068783523049206e-05,-0.0,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-0.00013227513409219682,-0.00023148147738538682,-0.0,-0.0,-0.0,6.613756704609841e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00039682540227659047,-0.00011337868636474013,-0.0,-0.00015873015217948705,1.5549436474412714e-20,-0.0,-0.0,4.535147309070453e-05,-4.44269619324603e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00039682540227659047,-0.00011337868636474013,-0.0,1.5549436474412714e-20,-0.00015873015217948705,-0.0,-0.0,-4.44269619324603e-21,4.535147309070453e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0,-0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00024801588733680546,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.0,-0.00029761905898340046,-0.0002380952355451882,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.0,-0.00029761905898340046,-0.0,-0.0002380952355451882,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,0.0,-0.0005580357392318547,-1.1392935386548783e-18,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00011160714348079637,6.628969852802558e-20,1.9471385717449317e-19,0.0005102040595375001,-0.0,0.0,-0.0002040816325461492,-0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,6.628969852802558e-20,8.163265010807663e-05,1.1565141348594645e-34,0.00037202381645329297,-0.0,0.0,-9.735692470983746e-19,-0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,1.9471385717449317e-19,1.1565141348594645e-34,0.00011160714348079637,8.0,5.0,6.0,7.0,0.027310090139508247,-0.004322562366724014,-0.0062996032647788525,-0.005463435314595699,-0.004825680050998926,0.00019841270113829523,0.00039682540227659047,0.0003401360590942204,0.00029761905898340046,0.00042517005931586027,0.0005102040595375001,0.00044642857392318547,0.0003188775444868952,0.00038265305920504034,0.00024801588733680546,-0.004322562366724014,0.0022270812187343836,0.00039682540227659047,0.0003401360590942204,0.00029761905898340046,-0.00019841270113829523,-0.00011337868636474013,-9.718172805150971e-05,-8.50340147735551e-05,-7.424521405177031e-19,-2.1628253994802508e-19,-2.539978787514716e-19,1.0511454502684712e-18,2.887056793205548e-19,5.5678592025982955e-19,-0.0062996032647788525,0.00039682540227659047,0.005700821988284588,0.0005102040595375001,0.00044642857392318547,-4.2012834183813297e-19,-0.00019841270113829523,3.4752806949224327e-19,-4.265946194816131e-19,-0.0008503401186317205,-0.00025510202976875007,-0.00022321428696159273,8.49660486470075e-19,6.072982730520513e-19,2.970193097658073e-19,-0.005463435314595699,0.0003401360590942204,0.0005102040595375001,0.003939200658351183,0.00038265305920504034,1.0149327238218185e-18,1.287279407264277e-19,-0.0001360544265480712,-2.9447037855761927e-19,1.934249159096795e-18,-0.0002040816325461492,-6.153286070622015e-20,-0.00047831633128225803,-0.0001530612207716331,-3.8644899172674314e-20,-0.004825680050998926,0.00029761905898340046,0.00044642857392318547,0.00038265305920504034,0.0028982425574213266,6.679851024750402e-19,-2.5397170300872826e-20,1.8913359336463388e-19,-9.920635056914762e-05,8.892214332411893e-19,-3.688875014201934e-19,-0.00014880952949170023,-4.0104311375742667e-19,-0.00012755101488437504,-0.00029761905898340046,0.00019841270113829523,-0.00019841270113829523,-4.2012834183813297e-19,1.0149327238218185e-18,6.679851024750402e-19,2.8344671591185033e-05,1.3552527156068805e-20,-6.268043809681823e-20,-3.7269449679189215e-20,6.293781405194439e-20,-6.67900909471913e-35,1.1014117459090269e-20,-1.2980923380809642e-19,-4.720335892337116e-20,-7.455810545822615e-20,0.00039682540227659047,-0.00011337868636474013,-0.00019841270113829523,1.287279407264277e-19,-2.5397170300872826e-20,1.3552527156068805e-20,5.668934318237007e-05,1.515768082825076e-20,1.9004726604998698e-20,1.9557818336642866e-19,4.6404434929789915e-20,4.327723984994198e-20,-4.046002424229976e-20,-1.8341877053356693e-20,-1.2587562810388879e-20,0.0003401360590942204,-9.718172805150971e-05,3.4752806949224327e-19,-0.0001360544265480712,1.8913359336463388e-19,-6.268043809681823e-20,1.515768082825076e-20,3.887269122060388e-05,-4.4319707141609005e-21,-9.864539163826864e-20,-1.3188702588071153e-20,-5.3946696027823264e-21,-7.081616654923499e-20,-3.4179232157661815e-21,-3.236801680890039e-20,0.00029761905898340046,-8.50340147735551e-05,-4.265946194816131e-19,-2.9447037855761927e-19,-9.920635056914762e-05,-3.7269449679189215e-20,1.9004726604998698e-20,-4.4319707141609005e-21,2.8344671591185033e-05,4.046002424229976e-20,3.7762688431166636e-20,2.202285662861181e-20,2.950210094269411e-20,1.819279390381535e-20,1.696093456361636e-20,0.00042517005931586027,-7.424521405177031e-19,-0.0008503401186317205,1.934249159096795e-18,8.892214332411893e-19,6.293781405194439e-20,1.9557818336642866e-19,-9.864539163826864e-20,4.046002424229976e-20,0.00021258502965793014,-3.63754871568696e-20,-2.6523791910757184e-20,-1.7701260565616466e-19,-1.4565607564005176e-19,-7.867226918051762e-20,0.0005102040595375001,-2.1628253994802508e-19,-0.00025510202976875007,-0.0002040816325461492,-3.688875014201934e-19,-6.67900909471913e-35,4.6404434929789915e-20,-1.3188702588071153e-20,3.7762688431166636e-20,-3.63754871568696e-20,0.0001020408162730746,3.2583804320025895e-20,5.784124990069796e-35,9.710405688904971e-21,2.2657612735582555e-20,0.00044642857392318547,-2.539978787514716e-19,-0.00022321428696159273,-6.153286070622015e-20,-0.00014880952949170023,1.1014117459090269e-20,4.327723984994198e-20,-5.3946696027823264e-21,2.202285662861181e-20,-2.6523791910757184e-20,3.2583804320025895e-20,7.440476474585012e-05,3.009265538105056e-36,5.082197683525802e-21,1.6940658945086007e-21,0.0003188775444868952,1.0511454502684712e-18,8.49660486470075e-19,-0.00047831633128225803,-4.0104311375742667e-19,-1.2980923380809642e-19,-4.046002424229976e-20,-7.081616654923499e-20,2.950210094269411e-20,-1.7701260565616466e-19,5.784124990069796e-35,3.009265538105056e-36,9.566326480126008e-05,5.468171789570409e-20,1.6521176592532187e-20,0.00038265305920504034,2.887056793205548e-19,6.072982730520513e-19,-0.0001530612207716331,-0.00012755101488437504,-4.720335892337116e-20,-1.8341877053356693e-20,-3.4179232157661815e-21,1.819279390381535e-20,-1.4565607564005176e-19,9.710405688904971e-21,5.082197683525802e-21,5.468171789570409e-20,5.10204081365373e-05,-4.583609722548063e-21,0.00024801588733680546,5.5678592025982955e-19,2.970193097658073e-19,-3.8644899172674314e-20,-0.00029761905898340046,-7.455810545822615e-20,-1.2587562810388879e-20,-3.236801680890039e-20,1.696093456361636e-20,-7.867226918051762e-20,2.2657612735582555e-20,1.6940658945086007e-21,1.6521176592532187e-20,-4.583609722548063e-21,4.960317528457381e-05,8.0,5.0,6.0,8.0,0.024351025000214577,-0.003811177331954241,-0.0055555556900799274,-0.004817708395421505,-0.003811177331954241,0.00017361111531499773,0.00034722223062999547,0.00029761905898340046,0.00023148147738538682,0.00037202381645329297,0.00044642857392318547,0.00034722223062999547,0.00027901786961592734,0.00029761905898340046,0.00017361111531499773,-0.003811177331954241,0.0019569634459912777,0.00034722223062999547,0.00029761905898340046,0.00023148147738538682,-0.00017361111531499773,-9.920635056914762e-05,-8.50340147735551e-05,-6.613756704609841e-05,-0.0,-0.0,-0.0,-5.454897032230802e-35,2.5373619887222074e-20,1.8726973249352743e-20,-0.0055555556900799274,0.00034722223062999547,0.005009920801967382,0.00044642857392318547,0.00034722223062999547,6.776263578034403e-21,-0.00017361111531499773,2.4937623406882386e-21,1.939592931646408e-21,-0.0007440476329065859,-0.00022321428696159273,-0.00017361111531499773,-3.949661018762886e-35,3.2610768469290563e-20,-4.125758093772682e-37,-0.004817708395421505,0.00029761905898340046,0.00044642857392318547,0.0034616815391927958,0.00029761905898340046,1.0338461148237897e-20,2.4937623406882386e-21,-0.0001190476177725941,5.527869915210372e-21,-0.0,-0.00017857142665889114,3.2610768469290563e-20,-0.0004185267898719758,-0.0001190476177725941,2.7510967348353867e-19,-0.003811177331954241,0.00023148147738538682,0.00034722223062999547,0.00029761905898340046,0.0019569634459912777,6.776263578034403e-21,1.939592931646408e-21,-1.9845749568114918e-20,-6.613756704609841e-05,-0.0,-0.0,-9.920635056914762e-05,3.9269823139465616e-19,-8.50340147735551e-05,-0.00017361111531499773,0.00017361111531499773,-0.00017361111531499773,6.776263578034403e-21,1.0338461148237897e-20,6.776263578034403e-21,2.4801587642286904e-05,-1.6940658945086007e-21,-3.3881317890172014e-21,-0.0,-0.0,0.0,-0.0,-0.0,7.420878922508117e-37,-4.474891108779263e-22,0.00034722223062999547,-9.920635056914762e-05,-0.00017361111531499773,2.4937623406882386e-21,1.939592931646408e-21,-1.6940658945086007e-21,4.960317528457381e-05,-7.125035619731381e-22,-5.541694090418308e-22,-0.0,-0.0,-0.0,-0.0,2.1260661730319215e-37,1.1787879627328366e-37,0.00029761905898340046,-8.50340147735551e-05,2.4937623406882386e-21,-0.0001190476177725941,-1.9845749568114918e-20,-3.3881317890172014e-21,-7.125035619731381e-22,3.40136066370178e-05,5.670214046919467e-21,-0.0,-0.0,-0.0,0.0,-2.1753726867923877e-36,-1.1625075202288828e-36,0.00023148147738538682,-6.613756704609841e-05,1.939592931646408e-21,5.527869915210372e-21,-6.613756704609841e-05,-0.0,-5.541694090418308e-22,5.670214046919467e-21,1.889644772745669e-05,-0.0,-0.0,-0.0,1.5585420707057846e-35,-7.249605566664369e-21,-4.3825260738249e-21,0.00037202381645329297,-0.0,-0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00018601190822664648,-0.0,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-0.0,-0.00022321428696159273,-0.00017857142665889114,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-0.0,-0.00017361111531499773,3.2610768469290563e-20,-9.920635056914762e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,4.960317528457381e-05,1.128474576789396e-35,-9.317362419797304e-21,-0.0,0.00027901786961592734,-5.454897032230802e-35,-3.949661018762886e-35,-0.0004185267898719758,3.9269823139465616e-19,-0.0,-0.0,0.0,1.5585420707057846e-35,-0.0,-0.0,1.128474576789396e-35,8.370535942958668e-05,-4.143106319560312e-20,-4.13029406735369e-20,0.00029761905898340046,2.5373619887222074e-20,3.2610768469290563e-20,-0.0001190476177725941,-8.50340147735551e-05,7.420878922508117e-37,2.1260661730319215e-37,-2.1753726867923877e-36,-7.249605566664369e-21,-0.0,-0.0,-9.317362419797304e-21,-4.143106319560312e-20,3.40136066370178e-05,-1.959856635221648e-20,0.00017361111531499773,1.8726973249352743e-20,-4.125758093772682e-37,2.7510967348353867e-19,-0.00017361111531499773,-4.474891108779263e-22,1.1787879627328366e-37,-1.1625075202288828e-36,-4.3825260738249e-21,-0.0,-0.0,-0.0,-4.13029406735369e-20,-1.959856635221648e-20,2.4801587642286904e-05,8.0,5.0,7.0,3.0,0.04728599637746811,-0.008134921081364155,-0.011833900585770607,-0.00907738134264946,-0.01711309514939785,0.00039682540227659047,0.0007936508045531809,0.0005952381179668009,0.0011904762359336019,0.0008503401186317205,0.0008928571478463709,0.0017857142956927419,0.0004960317746736109,0.0013392857508733869,0.0017857142956927419,-0.008134921081364155,0.004308389965444803,0.0007936508045531809,0.0005952381179668009,0.0011904762359336019,-0.00039682540227659047,-0.00022675737272948027,-0.0001700680295471102,-0.0003401360590942204,-2.409704716976456e-18,-7.619871480564851e-19,-4.11865055672912e-18,7.453889935837843e-19,-1.3146735095017135e-18,-7.871362200729068e-18,-0.011833900585770607,0.0007936508045531809,0.01101899053901434,0.0008928571478463709,0.0017857142956927419,-1.111307226797642e-18,-0.00039682540227659047,-9.291565758419072e-19,-3.742711030394182e-18,-0.001700680237263441,-0.00044642857392318547,-0.0008928571478463709,6.966183729688695e-19,-7.878212910562232e-19,-1.806944615258812e-17,-0.00907738134264946,0.0005952381179668009,0.0008928571478463709,0.0056051588617265224,0.0013392857508733869,1.0554673655714842e-18,-2.369104469464457e-19,-0.00019841270113829523,-2.900035257016505e-18,1.050162346110452e-18,-0.00029761905898340046,-1.6068023723897425e-18,-0.0005952381179668009,-0.00044642857392318547,-1.7601407509670915e-17,-0.01711309514939785,0.0011904762359336019,0.0017857142956927419,0.0013392857508733869,0.0349702388048172,-1.5346866986358381e-18,-3.751162748302943e-18,-3.964531092178852e-18,-0.0011904762359336019,-8.555945974664692e-18,-4.509334163892509e-18,-0.0017857142956927419,-5.5294310796760726e-18,-0.0013392857508733869,-0.010714286006987095,0.00039682540227659047,-0.00039682540227659047,-1.111307226797642e-18,1.0554673655714842e-18,-1.5346866986358381e-18,5.668934318237007e-05,2.371692252312041e-20,-7.453889935837843e-20,3.3881317890172014e-20,1.2587562810388879e-19,2.2028234918180537e-20,2.64338825480515e-19,-1.5196365092819538e-19,3.3042353185064373e-20,2.64338825480515e-19,0.0007936508045531809,-0.00022675737272948027,-0.00039682540227659047,-2.369104469464457e-19,-3.751162748302943e-18,2.371692252312041e-20,0.00011337868636474013,3.8009453209997396e-20,1.9510124911980648e-19,3.911563667328573e-19,8.655447969988396e-20,4.1071419928666696e-19,-2.5175125620777757e-20,9.440671784674232e-20,9.06304470649211e-19,0.0005952381179668009,-0.0001700680295471102,-9.291565758419072e-19,-0.00019841270113829523,-3.964531092178852e-18,-7.453889935837843e-20,3.8009453209997396e-20,5.668934318237007e-05,1.9740516684561687e-19,8.092004848459951e-20,4.419302249209195e-20,2.64338825480515e-19,3.436380006301198e-20,1.6601845766184287e-19,1.0007112143453474e-18,0.0011904762359336019,-0.0003401360590942204,-3.742711030394182e-18,-2.900035257016505e-18,-0.0011904762359336019,3.3881317890172014e-20,1.9510124911980648e-19,1.9740516684561687e-19,0.0003401360590942204,4.3157357468493465e-19,2.2657611766230274e-19,5.02783227174152e-19,2.2657611766230274e-19,2.8322015354022696e-19,1.0551973944990622e-18,0.0008503401186317205,-2.409704716976456e-18,-0.001700680237263441,1.050162346110452e-18,-8.555945974664692e-18,1.2587562810388879e-19,3.911563667328573e-19,8.092004848459951e-20,4.3157357468493465e-19,0.00042517005931586027,-5.304758382151437e-20,6.905177091561378e-19,-1.5734453836103525e-19,9.990761586508786e-34,2.8322016904986345e-18,0.0008928571478463709,-7.619871480564851e-19,-0.00044642857392318547,-0.00029761905898340046,-4.509334163892509e-18,2.2028234918180537e-20,8.655447969988396e-20,4.419302249209195e-20,2.2657611766230274e-19,-5.304758382151437e-20,0.00014880952949170023,3.408082609910156e-19,6.957567997374102e-21,1.5246593050577406e-19,1.1895247017376204e-18,0.0017857142956927419,-4.11865055672912e-18,-0.0008928571478463709,-1.6068023723897425e-18,-0.0017857142956927419,2.64338825480515e-19,4.1071419928666696e-19,2.64338825480515e-19,5.02783227174152e-19,6.905177091561378e-19,3.408082609910156e-19,0.0008928571478463709,-5.7777898331617076e-34,2.094448814521119e-33,1.816638944866709e-32,0.0004960317746736109,7.453889935837843e-19,6.966183729688695e-19,-0.0005952381179668009,-5.5294310796760726e-18,-1.5196365092819538e-19,-2.5175125620777757e-20,3.436380006301198e-20,2.2657611766230274e-19,-1.5734453836103525e-19,6.957567997374102e-21,-5.7777898331617076e-34,9.920635056914762e-05,2.973737308088921e-19,1.718202300999862e-18,0.0013392857508733869,-1.3146735095017135e-18,-7.878212910562232e-19,-0.00044642857392318547,-0.0013392857508733869,3.3042353185064373e-20,9.440671784674232e-20,1.6601845766184287e-19,2.8322015354022696e-19,9.990761586508786e-34,1.5246593050577406e-19,2.094448814521119e-33,2.973737308088921e-19,0.00044642857392318547,1.2124001747826212e-18,0.0017857142956927419,-7.871362200729068e-18,-1.806944615258812e-17,-1.7601407509670915e-17,-0.010714286006987095,2.64338825480515e-19,9.06304470649211e-19,1.0007112143453474e-18,1.0551973944990622e-18,2.8322016904986345e-18,1.1895247017376204e-18,1.816638944866709e-32,1.718202300999862e-18,1.2124001747826212e-18,0.0053571430034935474,8.0,5.0,7.0,4.0,0.037942178547382355,-0.006279761902987957,-0.009143282659351826,-0.007008928339928389,-0.010803570970892906,0.00029761905898340046,0.0005952381179668009,0.00044642857392318547,0.0007142857066355646,0.0006377550889737904,0.0006696428754366934,0.0010714285308495164,0.00037202381645329297,0.0008035714272409678,0.0008928571478463709,-0.006279761902987957,0.0032823130022734404,0.0005952381179668009,0.00044642857392318547,0.0007142857066355646,-0.00029761905898340046,-0.0001700680295471102,-0.00012755101488437504,-0.0002040816325461492,-0.0,5.082197683525802e-21,-0.0,-8.131516293641283e-20,-0.0,0.0,-0.009143282659351826,0.0005952381179668009,0.00839817151427269,0.0006696428754366934,0.0010714285308495164,-0.0,-0.00029761905898340046,5.082197683525802e-21,-1.128474576789396e-36,-0.0012755101779475808,-0.0003348214377183467,-0.0005357142654247582,1.7592222005010638e-20,0.0,-0.0,-0.007008928339928389,0.00044642857392318547,0.0006696428754366934,0.0042708334513008595,0.0008035714272409678,-1.1974581586808738e-20,-0.0,-0.00014880952949170023,2.6239130304526704e-20,-0.0,-0.00022321428696159273,-0.0,-0.00044642857392318547,-0.0002678571327123791,-0.0,-0.010803570970892906,0.0007142857066355646,0.0010714285308495164,0.0008035714272409678,0.013452380895614624,-1.3552527156068805e-20,-0.0,2.6239130304526704e-20,-0.0004761904710903764,-0.0,-1.316553672920962e-36,-0.0007142857066355646,-0.0,-0.0005357142654247582,-0.0026785715017467737,0.00029761905898340046,-0.00029761905898340046,-0.0,-1.1974581586808738e-20,-1.3552527156068805e-20,4.251700738677755e-05,-0.0,3.3881317890172014e-21,6.776263578034403e-21,-0.0,-1.6856145238804308e-37,0.0,2.398895620919649e-36,-0.0,-0.0,0.0005952381179668009,-0.0001700680295471102,-0.00029761905898340046,-0.0,-0.0,-0.0,8.50340147735551e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00012755101488437504,5.082197683525802e-21,-0.00014880952949170023,2.6239130304526704e-20,3.3881317890172014e-21,-0.0,4.251700738677755e-05,-7.496894603520077e-21,-0.0,-1.6940658945086007e-21,-0.0,2.710505431213761e-20,-0.0,-0.0,0.0007142857066355646,-0.0002040816325461492,-1.128474576789396e-36,2.6239130304526704e-20,-0.0004761904710903764,6.776263578034403e-21,-0.0,-7.496894603520077e-21,0.0001360544265480712,-0.0,3.76158192263132e-37,-0.0,-4.513898307157584e-36,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006696428754366934,5.082197683525802e-21,-0.0003348214377183467,-0.00022321428696159273,-1.316553672920962e-36,-1.6856145238804308e-37,-0.0,-1.6940658945086007e-21,3.76158192263132e-37,-0.0,0.00011160714348079637,-0.0,-5.864074405566996e-21,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0005357142654247582,-0.0,-0.0007142857066355646,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.00037202381645329297,-8.131516293641283e-20,1.7592222005010638e-20,-0.00044642857392318547,-0.0,2.398895620919649e-36,-0.0,2.710505431213761e-20,-4.513898307157584e-36,-0.0,-5.864074405566996e-21,-0.0,7.440476474585012e-05,0.0,-0.0,0.0008035714272409678,-0.0,0.0,-0.0002678571327123791,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.00017857142665889114,-0.0,0.0008928571478463709,0.0,-0.0,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,8.0,5.0,7.0,5.0,0.03174319863319397,-0.0051190475933253765,-0.007457483094185591,-0.0057142856530845165,-0.007457483094185591,0.0002380952355451882,0.0004761904710903764,0.0003571428533177823,0.0004761904710903764,0.0005102040595375001,0.0005357142654247582,0.0007142857066355646,0.00029761905898340046,0.0005357142654247582,0.0005102040595375001,-0.0051190475933253765,0.002653061179444194,0.0004761904710903764,0.0003571428533177823,0.0004761904710903764,-0.0002380952355451882,-0.0001360544265480712,-0.0001020408162730746,-0.0001360544265480712,-0.0,3.76158192263132e-37,-0.0,-6.776263578034403e-20,-0.0,0.0,-0.007457483094185591,0.0004761904710903764,0.006789966020733118,0.0005357142654247582,0.0007142857066355646,-0.0,-0.0002380952355451882,0.0,5.64237288394698e-37,-0.0010204081190750003,-0.0002678571327123791,-0.0003571428533177823,1.0164395367051604e-20,0.0,-0.0,-0.0057142856530845165,0.0003571428533177823,0.0005357142654247582,0.0034523808863013983,0.0005357142654247582,-4.530320893601161e-22,-0.0,-0.0001190476177725941,-2.3937947767733993e-20,-0.0,-0.00017857142665889114,-0.0,-0.0003571428533177823,-0.00017857142665889114,-0.0,-0.007457483094185591,0.0004761904710903764,0.0007142857066355646,0.0005357142654247582,0.006789966020733118,-0.0,-0.0,-2.3937947767733993e-20,-0.0002380952355451882,-0.0,6.58276836460481e-37,-0.0003571428533177823,-0.0,-0.0002678571327123791,-0.0010204081190750003,0.0002380952355451882,-0.0002380952355451882,-0.0,-4.530320893601161e-22,-0.0,3.40136066370178e-05,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,8.949782217558526e-22,-0.0,-0.0,0.0004761904710903764,-0.0001360544265480712,-0.0002380952355451882,-0.0,-0.0,-0.0,6.80272132740356e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0001020408162730746,0.0,-0.0001190476177725941,-2.3937947767733993e-20,-0.0,-0.0,3.40136066370178e-05,6.839413647923998e-21,-0.0,-0.0,-0.0,2.0328790734103208e-20,-0.0,-0.0,0.0004761904710903764,-0.0001360544265480712,5.64237288394698e-37,-2.3937947767733993e-20,-0.0002380952355451882,-0.0,-0.0,6.839413647923998e-21,6.80272132740356e-05,-0.0,-1.88079096131566e-37,-0.0,4.513898307157584e-36,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005357142654247582,3.76158192263132e-37,-0.0002678571327123791,-0.00017857142665889114,6.58276836460481e-37,-0.0,-0.0,-0.0,-1.88079096131566e-37,-0.0,8.928571332944557e-05,-0.0,-3.3881317890172014e-21,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0003571428533177823,-0.0,-0.0003571428533177823,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,0.00029761905898340046,-6.776263578034403e-20,1.0164395367051604e-20,-0.0003571428533177823,-0.0,8.949782217558526e-22,-0.0,2.0328790734103208e-20,4.513898307157584e-36,-0.0,-3.3881317890172014e-21,-0.0,5.952380888629705e-05,0.0,-0.0,0.0005357142654247582,-0.0,0.0,-0.00017857142665889114,-0.0002678571327123791,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,8.928571332944557e-05,-0.0,0.0005102040595375001,0.0,-0.0,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,8.0,5.0,7.0,6.0,0.027310090139508247,-0.004322562366724014,-0.0062996032647788525,-0.004825680050998926,-0.005463435314595699,0.00019841270113829523,0.00039682540227659047,0.00029761905898340046,0.0003401360590942204,0.00042517005931586027,0.00044642857392318547,0.0005102040595375001,0.00024801588733680546,0.00038265305920504034,0.0003188775444868952,-0.004322562366724014,0.0022270812187343836,0.00039682540227659047,0.00029761905898340046,0.0003401360590942204,-0.00019841270113829523,-0.00011337868636474013,-8.50340147735551e-05,-9.718172805150971e-05,-7.424521405177031e-19,-2.3307261324753523e-19,-1.936249255968554e-19,6.0212250056173045e-19,3.4582446517129617e-19,1.1042493082210333e-18,-0.0062996032647788525,0.00039682540227659047,0.005700821988284588,0.00044642857392318547,0.0005102040595375001,-4.2012834183813297e-19,-0.00019841270113829523,-4.056693281282826e-19,3.7018568384341296e-19,-0.0008503401186317205,-0.00022321428696159273,-0.00025510202976875007,3.519763624832179e-19,6.747729982804386e-19,9.293161183025534e-19,-0.004825680050998926,0.00029761905898340046,0.00044642857392318547,0.0028982425574213266,0.00038265305920504034,6.707212608450007e-19,-2.5397170300872826e-20,-9.920635056914762e-05,2.377775131741603e-19,8.892214332411893e-19,-0.00014880952949170023,-1.3691671859797296e-19,-0.00029761905898340046,-0.00012755101488437504,1.775768850055936e-19,-0.005463435314595699,0.0003401360590942204,0.0005102040595375001,0.00038265305920504034,0.003939200658351183,1.013574596653583e-18,1.287279407264277e-19,-2.264058218536934e-19,-0.0001360544265480712,1.934249159096795e-18,1.8617438057261956e-19,-0.0002040816325461492,2.778268066994105e-19,-0.0001530612207716331,-0.00047831633128225803,0.00019841270113829523,-0.00019841270113829523,-4.2012834183813297e-19,6.707212608450007e-19,1.013574596653583e-18,2.8344671591185033e-05,1.3552527156068805e-20,-3.7269449679189215e-20,-6.268043809681823e-20,6.293781405194439e-20,1.1014117459090269e-20,-1.7458940879951122e-35,-7.430351477531881e-20,-4.720335892337116e-20,-1.2980923380809642e-19,0.00039682540227659047,-0.00011337868636474013,-0.00019841270113829523,-2.5397170300872826e-20,1.287279407264277e-19,1.3552527156068805e-20,5.668934318237007e-05,1.9004726604998698e-20,1.515768082825076e-20,1.9557818336642866e-19,4.327723984994198e-20,4.6404434929789915e-20,-1.2587562810388879e-20,-1.8341877053356693e-20,-4.046002424229976e-20,0.00029761905898340046,-8.50340147735551e-05,-4.056693281282826e-19,-9.920635056914762e-05,-2.264058218536934e-19,-3.7269449679189215e-20,1.9004726604998698e-20,2.8344671591185033e-05,1.9119782258325996e-20,4.046002424229976e-20,2.1341547378377947e-20,3.021015139116816e-20,1.3793768242488787e-20,5.082197683525802e-21,1.180083973084279e-20,0.0003401360590942204,-9.718172805150971e-05,3.7018568384341296e-19,2.377775131741603e-19,-0.0001360544265480712,-6.268043809681823e-20,1.515768082825076e-20,1.9119782258325996e-20,3.887269122060388e-05,-9.864539163826864e-20,-1.2947207046677583e-20,-1.3188702588071153e-20,-4.7473094120071607e-20,-1.0532721768597848e-20,-7.081616654923499e-20,0.00042517005931586027,-7.424521405177031e-19,-0.0008503401186317205,8.892214332411893e-19,1.934249159096795e-18,6.293781405194439e-20,1.9557818336642866e-19,4.046002424229976e-20,-9.864539163826864e-20,0.00021258502965793014,-2.6523791910757184e-20,-3.63754871568696e-20,-7.867226918051762e-20,-1.4565607564005176e-19,-1.7701260565616466e-19,0.00044642857392318547,-2.3307261324753523e-19,-0.00022321428696159273,-0.00014880952949170023,1.8617438057261956e-19,1.1014117459090269e-20,4.327723984994198e-20,2.1341547378377947e-20,-1.2947207046677583e-20,-2.6523791910757184e-20,7.440476474585012e-05,1.5590595172235763e-20,2.2563938166281975e-21,-9.317362419797304e-21,-2.6551890202189845e-20,0.0005102040595375001,-1.936249255968554e-19,-0.00025510202976875007,-1.3691671859797296e-19,-0.0002040816325461492,-1.7458940879951122e-35,4.6404434929789915e-20,3.021015139116816e-20,-1.3188702588071153e-20,-3.63754871568696e-20,1.5590595172235763e-20,0.0001020408162730746,4.81482486096809e-35,1.88079096131566e-35,2.880136400295359e-36,0.00024801588733680546,6.0212250056173045e-19,3.519763624832179e-19,-0.00029761905898340046,2.778268066994105e-19,-7.430351477531881e-20,-1.2587562810388879e-20,1.3793768242488787e-20,-4.7473094120071607e-20,-7.867226918051762e-20,2.2563938166281975e-21,4.81482486096809e-35,4.960317528457381e-05,1.2421731474875644e-21,-2.950210094269411e-20,0.00038265305920504034,3.4582446517129617e-19,6.747729982804386e-19,-0.00012755101488437504,-0.0001530612207716331,-4.720335892337116e-20,-1.8341877053356693e-20,5.082197683525802e-21,-1.0532721768597848e-20,-1.4565607564005176e-19,-9.317362419797304e-21,1.88079096131566e-35,1.2421731474875644e-21,5.10204081365373e-05,-9.6663882096485e-21,0.0003188775444868952,1.1042493082210333e-18,9.293161183025534e-19,1.775768850055936e-19,-0.00047831633128225803,-1.2980923380809642e-19,-4.046002424229976e-20,1.180083973084279e-20,-7.081616654923499e-20,-1.7701260565616466e-19,-2.6551890202189845e-20,2.880136400295359e-36,-2.950210094269411e-20,-9.6663882096485e-21,9.566326480126008e-05,8.0,5.0,7.0,7.0,0.023975037038326263,-0.0037414967082440853,-0.005454324651509523,-0.004177296068519354,-0.004177296068519354,0.0001700680295471102,0.0003401360590942204,0.00025510202976875007,0.00025510202976875007,0.00036443150020204484,0.00038265305920504034,0.00038265305920504034,0.00021258502965793014,0.00028698978712782264,0.00021258502965793014,-0.0037414967082440853,0.0019193391781300306,0.0003401360590942204,0.00025510202976875007,0.00025510202976875007,-0.0001700680295471102,-9.718172805150971e-05,-7.288629421964288e-05,-7.288629421964288e-05,-9.303367557808672e-19,-3.3354832939918497e-19,-3.3126045122243986e-19,3.6858263366567933e-19,7.648740730177805e-20,3.9694880236983646e-19,-0.005454324651509523,0.0003401360590942204,0.004913751035928726,0.00038265305920504034,0.00038265305920504034,-4.0657581468206416e-19,-0.0001700680295471102,-4.09048774520868e-19,-4.0758027043964496e-19,-0.0007288630004040897,-0.00019132652960252017,-0.00019132652960252017,2.8392907317457905e-19,3.969034625325109e-19,2.996718194963234e-19,-0.004177296068519354,0.00025510202976875007,0.00038265305920504034,0.0024978742003440857,0.00028698978712782264,4.995037145393207e-19,-4.221545336732787e-20,-8.50340147735551e-05,-3.4007661973921246e-19,7.513591179560975e-19,-0.00012755101488437504,-1.0503208545953324e-19,-0.00025510202976875007,-9.566326480126008e-05,5.2805417003666666e-20,-0.004177296068519354,0.00025510202976875007,0.00038265305920504034,0.00028698978712782264,0.0024978742003440857,5.094591951029143e-19,-4.221545336732787e-20,-3.4485423401155975e-19,-8.50340147735551e-05,7.513591179560975e-19,-1.2277870266458146e-19,-0.00012755101488437504,-1.5585406229479126e-19,-9.566326480126008e-05,-0.00025510202976875007,0.0001700680295471102,-0.0001700680295471102,-4.0657581468206416e-19,4.995037145393207e-19,5.094591951029143e-19,2.4295432012877427e-05,1.5246593050577406e-20,-2.0328790734103208e-20,-2.0328790734103208e-20,5.394669683561683e-20,9.440672107791659e-21,9.440672107791659e-21,-6.10327137036582e-20,-2.832201470778784e-20,-6.358970346047007e-20,0.0003401360590942204,-9.718172805150971e-05,-0.0001700680295471102,-4.221545336732787e-20,-4.221545336732787e-20,1.5246593050577406e-20,4.8590864025754854e-05,1.9985274904172153e-20,1.9985274904172153e-20,1.5690153144422482e-19,3.3336855332527393e-20,3.3336855332527393e-20,-1.0789339205564653e-20,-8.092004202225098e-21,-1.0789339205564653e-20,0.00025510202976875007,-7.288629421964288e-05,-4.09048774520868e-19,-8.50340147735551e-05,-3.4485423401155975e-19,-2.0328790734103208e-20,1.9985274904172153e-20,2.4295432012877427e-05,2.4402015478421848e-20,3.468001893272878e-20,2.7731123407089416e-20,2.8272949326531524e-20,6.907969371389402e-22,1.9481757786848908e-20,1.9976222769460953e-20,0.00025510202976875007,-7.288629421964288e-05,-4.0758027043964496e-19,-3.4007661973921246e-19,-8.50340147735551e-05,-2.0328790734103208e-20,1.9985274904172153e-20,2.4402015478421848e-20,2.4295432012877427e-05,3.468001893272878e-20,2.84095116757852e-20,2.710505431213761e-20,1.969392961396876e-20,1.8409807645575477e-20,-2.5935272695868095e-21,0.00036443150020204484,-9.303367557808672e-19,-0.0007288630004040897,7.513591179560975e-19,7.513591179560975e-19,5.394669683561683e-20,1.5690153144422482e-19,3.468001893272878e-20,3.468001893272878e-20,0.00018221575010102242,-3.6826878970904935e-20,-3.6826878970904935e-20,-6.743337266010817e-20,-9.103505212179375e-20,-6.743337266010817e-20,0.00038265305920504034,-3.3354832939918497e-19,-0.00019132652960252017,-0.00012755101488437504,-1.2277870266458146e-19,9.440672107791659e-21,3.3336855332527393e-20,2.7731123407089416e-20,2.84095116757852e-20,-3.6826878970904935e-20,6.377550744218752e-05,8.278503541993829e-21,8.002902956203785e-21,1.6940658945086007e-21,2.624919137340302e-22,0.00038265305920504034,-3.3126045122243986e-19,-0.00019132652960252017,-1.0503208545953324e-19,-0.00012755101488437504,9.440672107791659e-21,3.3336855332527393e-20,2.8272949326531524e-20,2.710505431213761e-20,-3.6826878970904935e-20,8.278503541993829e-21,6.377550744218752e-05,-1.4720210124651395e-22,-3.1744760451148694e-21,2.3456297622267984e-21,0.00021258502965793014,3.6858263366567933e-19,2.8392907317457905e-19,-0.00025510202976875007,-1.5585406229479126e-19,-6.10327137036582e-20,-1.0789339205564653e-20,6.907969371389402e-22,1.969392961396876e-20,-6.743337266010817e-20,8.002902956203785e-21,-1.4720210124651395e-22,4.251700738677755e-05,7.47117607193564e-21,7.664907587509242e-21,0.00028698978712782264,7.648740730177805e-20,3.969034625325109e-19,-9.566326480126008e-05,-9.566326480126008e-05,-2.832201470778784e-20,-8.092004202225098e-21,1.9481757786848908e-20,1.8409807645575477e-20,-9.103505212179375e-20,1.6940658945086007e-21,-3.1744760451148694e-21,7.47117607193564e-21,3.188775372109376e-05,-6.450795795093489e-20,0.00021258502965793014,3.9694880236983646e-19,2.996718194963234e-19,5.2805417003666666e-20,-0.00025510202976875007,-6.358970346047007e-20,-1.0789339205564653e-20,1.9976222769460953e-20,-2.5935272695868095e-21,-6.743337266010817e-20,2.624919137340302e-22,2.3456297622267984e-21,7.664907587509242e-21,-6.450795795093489e-20,4.251700738677755e-05,8.0,5.0,7.0,8.0,0.021371882408857346,-0.0032986111473292112,-0.0048097362741827965,-0.0036830357275903225,-0.0032986111473292112,0.00014880952949170023,0.00029761905898340046,0.00022321428696159273,0.00019841270113829523,0.0003188775444868952,0.0003348214377183467,0.00029761905898340046,0.00018601190822664648,0.00022321428696159273,0.00014880952949170023,-0.0032986111473292112,0.0016865079523995519,0.00029761905898340046,0.00022321428696159273,0.00019841270113829523,-0.00014880952949170023,-8.50340147735551e-05,-6.377550744218752e-05,-5.668934318237007e-05,-0.0,2.776029444837898e-21,1.704830147684944e-21,-4.0657581468206416e-20,-7.150516760981332e-21,-3.4886558823099884e-20,-0.0048097362741827965,0.00029761905898340046,0.00431813346222043,0.0003348214377183467,0.00029761905898340046,-0.0,-0.00014880952949170023,2.800708346101675e-21,1.6836767604699082e-21,-0.0006377550889737904,-0.00016741071885917336,-0.00014880952949170023,9.574940323315208e-21,-1.2092923344366373e-20,5.772606728291314e-21,-0.0036830357275903225,0.00022321428696159273,0.0003348214377183467,0.0021949405781924725,0.00022321428696159273,-6.7296950866935145e-21,-0.0,-7.440476474585012e-05,-1.0073968329838541e-22,-0.0,-0.00011160714348079637,-1.0164395367051604e-20,-0.00022321428696159273,-7.440476474585012e-05,-2.4373552064296928e-20,-0.0032986111473292112,0.00019841270113829523,0.00029761905898340046,0.00022321428696159273,0.0016865079523995519,-6.776263578034403e-21,-0.0,1.2476562280767651e-20,-5.668934318237007e-05,-0.0,1.7915231591347977e-21,-8.50340147735551e-05,6.776263578034403e-21,-6.377550744218752e-05,-0.00014880952949170023,0.00014880952949170023,-0.00014880952949170023,-0.0,-6.7296950866935145e-21,-6.776263578034403e-21,2.1258503693388775e-05,-0.0,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,-1.1317218225363575e-37,-9.4039548065783e-38,4.260280868425163e-23,1.3404511422770584e-38,2.1579310572704314e-23,0.00029761905898340046,-8.50340147735551e-05,-0.00014880952949170023,-0.0,-0.0,-0.0,4.251700738677755e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-6.377550744218752e-05,2.800708346101675e-21,-7.440476474585012e-05,1.2476562280767651e-20,1.6940658945086007e-21,-0.0,2.1258503693388775e-05,-2.530737677576464e-21,-0.0,-8.470329472543003e-22,-7.417415491545642e-23,1.3552527156068805e-20,-8.470329472543003e-22,-1.2276854203514802e-22,0.00019841270113829523,-5.668934318237007e-05,1.6836767604699082e-21,-1.0073968329838541e-22,-5.668934318237007e-05,1.6940658945086007e-21,-0.0,-2.530737677576464e-21,1.6196954675251618e-05,-0.0,-6.712301953289065e-23,-4.235164736271502e-22,-9.216117436379244e-23,2.7690329428061843e-21,1.002613665130734e-20,0.0003188775444868952,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003348214377183467,2.776029444837898e-21,-0.00016741071885917336,-0.00011160714348079637,1.7915231591347977e-21,-1.1317218225363575e-37,-0.0,-8.470329472543003e-22,-6.712301953289065e-23,-0.0,5.5803571740398183e-05,-1.1126123237318463e-22,-2.932037202783498e-21,-0.0,-1.7619793968447335e-22,0.00029761905898340046,1.704830147684944e-21,-0.00014880952949170023,-1.0164395367051604e-20,-8.50340147735551e-05,-9.4039548065783e-38,-0.0,-7.417415491545642e-23,-4.235164736271502e-22,-0.0,-1.1126123237318463e-22,4.251700738677755e-05,-2.2252246474636925e-22,3.455120897833709e-21,-1.498289449520275e-21,0.00018601190822664648,-4.0657581468206416e-20,9.574940323315208e-21,-0.00022321428696159273,6.776263578034403e-21,4.260280868425163e-23,-0.0,1.3552527156068805e-20,-9.216117436379244e-23,-0.0,-2.932037202783498e-21,-2.2252246474636925e-22,3.720238237292506e-05,-1.2379712073007014e-21,-4.2235433636335306e-22,0.00022321428696159273,-7.150516760981332e-21,-1.2092923344366373e-20,-7.440476474585012e-05,-6.377550744218752e-05,1.3404511422770584e-38,-0.0,-8.470329472543003e-22,2.7690329428061843e-21,-0.0,-0.0,3.455120897833709e-21,-1.2379712073007014e-21,2.1258503693388775e-05,7.971697082919082e-21,0.00014880952949170023,-3.4886558823099884e-20,5.772606728291314e-21,-2.4373552064296928e-20,-0.00014880952949170023,2.1579310572704314e-23,-0.0,-1.2276854203514802e-22,1.002613665130734e-20,-0.0,-1.7619793968447335e-22,-1.498289449520275e-21,-4.2235433636335306e-22,7.971697082919082e-21,2.1258503693388775e-05,8.0,5.0,8.0,3.0,0.04222883656620979,-0.007175926119089127,-0.010441468097269535,-0.007175926119089127,-0.015104166232049465,0.00034722223062999547,0.0006944444612599909,0.00046296295477077365,0.0010416667209938169,0.0007440476329065859,0.0006944444612599909,0.0015625000232830644,0.00034722223062999547,0.0010416667209938169,0.0015625000232830644,-0.007175926119089127,0.0037863757461309433,0.0006944444612599909,0.00046296295477077365,0.0010416667209938169,-0.00034722223062999547,-0.00019841270113829523,-0.00013227513409219682,-0.00029761905898340046,-0.0,6.776263578034403e-21,-0.0,4.0657581468206416e-20,-0.0,-0.0,-0.010441468097269535,0.0006944444612599909,0.009685019962489605,0.0006944444612599909,0.0015625000232830644,1.3552527156068805e-20,-0.00034722223062999547,9.729078644998502e-21,6.58276836460481e-37,-0.0014880952658131719,-0.00034722223062999547,-0.0007812500116415322,7.193316087538848e-21,0.0,-0.0,-0.007175926119089127,0.00046296295477077365,0.0006944444612599909,0.0037863757461309433,0.0010416667209938169,2.9088822040837653e-21,-0.0,-0.00013227513409219682,-2.2024394667563275e-20,-0.0,-0.00019841270113829523,-0.0,-0.00034722223062999547,-0.00029761905898340046,-0.0,-0.015104166232049465,0.0010416667209938169,0.0015625000232830644,0.0010416667209938169,0.03072916716337204,-2.710505431213761e-20,-0.0,-2.371692252312041e-20,-0.0010416667209938169,-0.0,6.58276836460481e-37,-0.0015625000232830644,-0.0,-0.0010416667209938169,-0.00937500037252903,0.00034722223062999547,-0.00034722223062999547,1.3552527156068805e-20,2.9088822040837653e-21,-2.710505431213761e-20,4.960317528457381e-05,-3.3881317890172014e-21,-0.0,6.776263578034403e-21,-0.0,-3.4518543825973698e-22,0.0,7.049846699390998e-22,-0.0,-0.0,0.0006944444612599909,-0.00019841270113829523,-0.00034722223062999547,-0.0,-0.0,-3.3881317890172014e-21,9.920635056914762e-05,-1.6940658945086007e-21,-0.0,-0.0,-1.8143431002090904e-22,-0.0,8.31031970331836e-22,-0.0,-0.0,0.00046296295477077365,-0.00013227513409219682,9.729078644998502e-21,-0.00013227513409219682,-2.371692252312041e-20,-0.0,-1.6940658945086007e-21,3.779289545491338e-05,6.776263578034403e-21,-0.0,-1.0856709189047976e-21,-0.0,-1.3552527156068805e-20,-0.0,0.0,0.0010416667209938169,-0.00029761905898340046,6.58276836460481e-37,-2.2024394667563275e-20,-0.0010416667209938169,6.776263578034403e-21,-0.0,6.776263578034403e-21,0.00029761905898340046,-0.0,-1.88079096131566e-37,-0.0,-2.23541521574621e-22,-0.0,-0.0,0.0007440476329065859,-0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,6.776263578034403e-21,-0.00034722223062999547,-0.00019841270113829523,6.58276836460481e-37,-3.4518543825973698e-22,-1.8143431002090904e-22,-1.0856709189047976e-21,-1.88079096131566e-37,-0.0,9.920635056914762e-05,-0.0,-2.886264993951227e-21,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0007812500116415322,-0.0,-0.0015625000232830644,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,0.00034722223062999547,4.0657581468206416e-20,7.193316087538848e-21,-0.00034722223062999547,-0.0,7.049846699390998e-22,8.31031970331836e-22,-1.3552527156068805e-20,-2.23541521574621e-22,-0.0,-2.886264993951227e-21,-0.0,4.960317528457381e-05,0.0,-0.0,0.0010416667209938169,-0.0,0.0,-0.00029761905898340046,-0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,0.00029761905898340046,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0,-0.00937500037252903,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004687500186264515,8.0,5.0,8.0,4.0,0.03385912626981735,-0.005538194440305233,-0.008065476082265377,-0.005538194440305233,-0.009531250223517418,0.0002604166802484542,0.0005208333604969084,0.00034722223062999547,0.0006249999860301614,0.0005580357392318547,0.0005208333604969084,0.0009374999790452421,0.0002604166802484542,0.0006249999860301614,0.0007812500116415322,-0.005538194440305233,0.0028844245243817568,0.0005208333604969084,0.00034722223062999547,0.0006249999860301614,-0.0002604166802484542,-0.00014880952949170023,-9.920635056914762e-05,-0.00017857142665889114,-0.0,-3.0076464787012814e-21,-0.0,-0.0,-6.776263578034403e-21,-0.0,-0.008065476082265377,0.0005208333604969084,0.007380952592939138,0.0005208333604969084,0.0009374999790452421,-0.0,-0.0002604166802484542,-3.029324224915461e-21,-5.994116286697344e-37,-0.0011160714784637094,-0.0002604166802484542,-0.00046874998952262104,-9.297472118798385e-21,-5.929230630780102e-21,-0.0,-0.005538194440305233,0.00034722223062999547,0.0005208333604969084,0.0028844245243817568,0.0006249999860301614,2.8239507884550296e-21,-0.0,-9.920635056914762e-05,-1.425422834710666e-20,-0.0,-0.00014880952949170023,-0.0,-0.0002604166802484542,-0.00017857142665889114,-0.0,-0.009531250223517418,0.0006249999860301614,0.0009374999790452421,0.0006249999860301614,0.011822916567325592,-0.0,-0.0,-2.0752307207730358e-20,-0.00041666667675599456,-0.0,-5.929230630780102e-21,-0.0006249999860301614,-1.3552527156068805e-20,-0.00041666667675599456,-0.0023437500931322575,0.0002604166802484542,-0.0002604166802484542,-0.0,2.8239507884550296e-21,-0.0,3.720238237292506e-05,-0.0,-3.3881317890172014e-21,-0.0,-0.0,1.1419463689279793e-24,0.0,1.499502250586849e-21,-2.6471811707388735e-22,-0.0,0.0005208333604969084,-0.00014880952949170023,-0.0002604166802484542,-0.0,-0.0,-0.0,7.440476474585012e-05,-0.0,-0.0,-0.0,-1.5161961818611212e-23,-0.0,4.005046421376624e-24,-0.0,-0.0,0.00034722223062999547,-9.920635056914762e-05,-3.029324224915461e-21,-9.920635056914762e-05,-2.0752307207730358e-20,-3.3881317890172014e-21,-0.0,2.8344671591185033e-05,3.3881317890172014e-21,-0.0,8.655212215435883e-22,-0.0,-3.3881317890172014e-21,2.541098841762901e-21,0.0,0.0006249999860301614,-0.00017857142665889114,-5.994116286697344e-37,-1.425422834710666e-20,-0.00041666667675599456,-0.0,-0.0,3.3881317890172014e-21,0.0001190476177725941,-0.0,1.7126046533420983e-37,-0.0,3.3138461333459574e-22,-7.552537267190414e-23,-0.0,0.0005580357392318547,-0.0,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-3.0076464787012814e-21,-0.0002604166802484542,-0.00014880952949170023,-5.929230630780102e-21,1.1419463689279793e-24,-1.5161961818611212e-23,8.655212215435883e-22,1.7126046533420983e-37,-0.0,7.440476474585012e-05,-0.0,2.6524156225655877e-21,1.6940658945086007e-21,-0.0,0.0009374999790452421,-0.0,-0.00046874998952262104,-0.0,-0.0006249999860301614,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,-0.0,-0.0,0.0002604166802484542,-0.0,-9.297472118798385e-21,-0.0002604166802484542,-1.3552527156068805e-20,1.499502250586849e-21,4.005046421376624e-24,-3.3881317890172014e-21,3.3138461333459574e-22,-0.0,2.6524156225655877e-21,-0.0,3.720238237292506e-05,1.7659837557738312e-21,-0.0,0.0006249999860301614,-6.776263578034403e-21,-5.929230630780102e-21,-0.00017857142665889114,-0.00041666667675599456,-2.6471811707388735e-22,-0.0,2.541098841762901e-21,-7.552537267190414e-23,-0.0,1.6940658945086007e-21,-0.0,1.7659837557738312e-21,0.0001190476177725941,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0023437500931322575,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,8.0,5.0,8.0,5.0,0.028313491493463516,-0.004513889085501432,-0.006577380932867527,-0.004513889085501432,-0.006577380932867527,0.00020833333837799728,0.00041666667675599456,0.00027777778450399637,0.00041666667675599456,0.00044642857392318547,0.00041666667675599456,0.0006249999860301614,0.00020833333837799728,0.00041666667675599456,0.00044642857392318547,-0.004513889085501432,0.0023313493002206087,0.00041666667675599456,0.00027777778450399637,0.00041666667675599456,-0.00020833333837799728,-0.0001190476177725941,-7.936507608974352e-05,-0.0001190476177725941,-0.0,-2.5365692403104454e-22,-0.0,6.776263578034403e-21,-0.0,-0.0,-0.006577380932867527,0.00041666667675599456,0.005967261735349894,0.00041666667675599456,0.0006249999860301614,-1.3552527156068805e-20,-0.00020833333837799728,-3.1387392577131644e-21,-3.705769144237564e-22,-0.0008928571478463709,-0.00020833333837799728,-0.0003124999930150807,-5.181981595573196e-22,2.2234614865425384e-21,-0.0,-0.004513889085501432,0.00027777778450399637,0.00041666667675599456,0.0023313493002206087,0.00041666667675599456,-5.114161267176301e-22,-3.3881317890172014e-21,-7.936507608974352e-05,-2.0328790734103208e-20,-0.0,-0.0001190476177725941,-0.0,-0.00020833333837799728,-0.0001190476177725941,-0.0,-0.006577380932867527,0.00041666667675599456,0.0006249999860301614,0.00041666667675599456,0.005967261735349894,-6.776263578034403e-21,-7.411538288475128e-22,-1.7787691892340307e-20,-0.00020833333837799728,-0.0,2.5940384009662948e-21,-0.0003124999930150807,6.776263578034403e-21,-0.00020833333837799728,-0.0008928571478463709,0.00020833333837799728,-0.00020833333837799728,-1.3552527156068805e-20,-5.114161267176301e-22,-6.776263578034403e-21,2.9761904443148524e-05,3.3881317890172014e-21,-0.0,-0.0,-0.0,-7.015415129688635e-23,0.0,6.038861748356964e-22,-5.593613885974079e-23,-0.0,0.00041666667675599456,-0.0001190476177725941,-0.00020833333837799728,-3.3881317890172014e-21,-7.411538288475128e-22,3.3881317890172014e-21,5.952380888629705e-05,8.470329472543003e-22,-0.0,-0.0,1.9947096459740157e-22,-0.0,-5.269044324041222e-23,2.117582368135751e-22,-0.0,0.00027777778450399637,-7.936507608974352e-05,-3.1387392577131644e-21,-7.936507608974352e-05,-1.7787691892340307e-20,-0.0,8.470329472543003e-22,2.2675736545352265e-05,5.082197683525802e-21,-0.0,4.9749680226275016e-23,-0.0,-3.3881317890172014e-21,-0.0,0.0,0.00041666667675599456,-0.0001190476177725941,-3.705769144237564e-22,-2.0328790734103208e-20,-0.00020833333837799728,-0.0,-0.0,5.082197683525802e-21,5.952380888629705e-05,-0.0,1.0587911840678754e-22,-0.0,3.0764876057313073e-22,-0.0,-0.0,0.00044642857392318547,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,-0.0,0.00041666667675599456,-2.5365692403104454e-22,-0.00020833333837799728,-0.0001190476177725941,2.5940384009662948e-21,-7.015415129688635e-23,1.9947096459740157e-22,4.9749680226275016e-23,1.0587911840678754e-22,-0.0,5.952380888629705e-05,-0.0,2.0074706386301053e-22,-8.470329472543003e-22,-0.0,0.0006249999860301614,-0.0,-0.0003124999930150807,-0.0,-0.0003124999930150807,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00015624999650754035,-0.0,-0.0,-0.0,0.00020833333837799728,6.776263578034403e-21,-5.181981595573196e-22,-0.00020833333837799728,6.776263578034403e-21,6.038861748356964e-22,-5.269044324041222e-23,-3.3881317890172014e-21,3.0764876057313073e-22,-0.0,2.0074706386301053e-22,-0.0,2.9761904443148524e-05,-3.164387309308885e-21,-0.0,0.00041666667675599456,-0.0,2.2234614865425384e-21,-0.0001190476177725941,-0.00020833333837799728,-5.593613885974079e-23,2.117582368135751e-22,-0.0,-0.0,-0.0,-8.470329472543003e-22,-0.0,-3.164387309308885e-21,5.952380888629705e-05,-0.0,0.00044642857392318547,-0.0,-0.0,-0.0,-0.0008928571478463709,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,8.0,5.0,8.0,6.0,0.024351025000214577,-0.003811177331954241,-0.0055555556900799274,-0.003811177331954241,-0.004817708395421505,0.00017361111531499773,0.00034722223062999547,0.00023148147738538682,0.00029761905898340046,0.00037202381645329297,0.00034722223062999547,0.00044642857392318547,0.00017361111531499773,0.00029761905898340046,0.00027901786961592734,-0.003811177331954241,0.0019569634459912777,0.00034722223062999547,0.00023148147738538682,0.00029761905898340046,-0.00017361111531499773,-9.920635056914762e-05,-6.613756704609841e-05,-8.50340147735551e-05,-0.0,-3.1707116766058016e-22,-0.0,2.0328790734103208e-20,4.446922973085077e-21,0.0,-0.0055555556900799274,0.00034722223062999547,0.005009920801967382,0.00034722223062999547,0.00044642857392318547,6.776263578034403e-21,-0.00017361111531499773,1.6225218397164746e-21,2.4937623406882386e-21,-0.0007440476329065859,-0.00017361111531499773,-0.00022321428696159273,-8.323117677773686e-22,2.964615315390051e-21,-0.0,-0.003811177331954241,0.00023148147738538682,0.00034722223062999547,0.0019569634459912777,0.00029761905898340046,7.32545415142636e-21,1.939592931646408e-21,-6.613756704609841e-05,-3.2149366073476847e-21,-0.0,-9.920635056914762e-05,-0.0,-0.00017361111531499773,-8.50340147735551e-05,-0.0,-0.004817708395421505,0.00029761905898340046,0.00044642857392318547,0.00029761905898340046,0.0034616815391927958,6.776263578034403e-21,2.4937623406882386e-21,1.231986365737392e-21,-0.0001190476177725941,-0.0,2.964615315390051e-21,-0.00017857142665889114,1.3552527156068805e-20,-0.0001190476177725941,-0.0004185267898719758,0.00017361111531499773,-0.00017361111531499773,6.776263578034403e-21,7.32545415142636e-21,6.776263578034403e-21,2.4801587642286904e-05,-1.6940658945086007e-21,-0.0,-1.6940658945086007e-21,-0.0,-8.201474810449431e-39,0.0,-3.3561682053667026e-22,1.0956494853638309e-37,-0.0,0.00034722223062999547,-9.920635056914762e-05,-0.00017361111531499773,1.939592931646408e-21,2.4937623406882386e-21,-1.6940658945086007e-21,4.960317528457381e-05,-5.541694090418308e-22,-7.125035619731381e-22,-0.0,-2.6567525870796358e-39,-0.0,1.410593220986745e-37,3.726095216113004e-38,-0.0,0.00023148147738538682,-6.613756704609841e-05,1.6225218397164746e-21,-6.613756704609841e-05,1.231986365737392e-21,-0.0,-5.541694090418308e-22,1.889644772745669e-05,9.185533740845933e-22,-0.0,9.059175768096059e-23,-0.0,-5.082197683525802e-21,-1.2705494208814505e-21,-0.0,0.00029761905898340046,-8.50340147735551e-05,2.4937623406882386e-21,-3.2149366073476847e-21,-0.0001190476177725941,-1.6940658945086007e-21,-7.125035619731381e-22,9.185533740845933e-22,3.40136066370178e-05,-0.0,4.403650489063954e-39,-0.0,-1.88079096131566e-37,-4.70197740328915e-38,-0.0,0.00037202381645329297,-0.0,-0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00018601190822664648,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-3.1707116766058016e-22,-0.00017361111531499773,-9.920635056914762e-05,2.964615315390051e-21,-8.201474810449431e-39,-2.6567525870796358e-39,9.059175768096059e-23,4.403650489063954e-39,-0.0,4.960317528457381e-05,-0.0,2.378033694345479e-22,-8.470329472543003e-22,-0.0,0.00044642857392318547,-0.0,-0.00022321428696159273,-0.0,-0.00017857142665889114,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-0.0,0.00017361111531499773,2.0328790734103208e-20,-8.323117677773686e-22,-0.00017361111531499773,1.3552527156068805e-20,-3.3561682053667026e-22,1.410593220986745e-37,-5.082197683525802e-21,-1.88079096131566e-37,-0.0,2.378033694345479e-22,-0.0,2.4801587642286904e-05,-2.5770577723955163e-21,-0.0,0.00029761905898340046,4.446922973085077e-21,2.964615315390051e-21,-8.50340147735551e-05,-0.0001190476177725941,1.0956494853638309e-37,3.726095216113004e-38,-1.2705494208814505e-21,-4.70197740328915e-38,-0.0,-8.470329472543003e-22,-0.0,-2.5770577723955163e-21,3.40136066370178e-05,-0.0,0.00027901786961592734,0.0,-0.0,-0.0,-0.0004185267898719758,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.370535942958668e-05,8.0,5.0,8.0,7.0,0.021371882408857346,-0.0032986111473292112,-0.0048097362741827965,-0.0032986111473292112,-0.0036830357275903225,0.00014880952949170023,0.00029761905898340046,0.00019841270113829523,0.00022321428696159273,0.0003188775444868952,0.00029761905898340046,0.0003348214377183467,0.00014880952949170023,0.00022321428696159273,0.00018601190822664648,-0.0032986111473292112,0.0016865079523995519,0.00029761905898340046,0.00019841270113829523,0.00022321428696159273,-0.00014880952949170023,-8.50340147735551e-05,-5.668934318237007e-05,-6.377550744218752e-05,-0.0,-3.2367407227679935e-22,3.7366129745429814e-22,-3.7269449679189215e-20,-1.447366223839336e-20,-3.975530836567006e-20,-0.0048097362741827965,0.00029761905898340046,0.00431813346222043,0.00029761905898340046,0.0003348214377183467,-0.0,-0.00014880952949170023,-6.020428025376994e-23,6.627985344295422e-23,-0.0006377550889737904,-0.00014880952949170023,-0.00016741071885917336,-1.5803622856639794e-22,-2.0179980618787492e-20,1.0363234561349007e-20,-0.0032986111473292112,0.00019841270113829523,0.00029761905898340046,0.0016865079523995519,0.00022321428696159273,-5.675839521319681e-21,-0.0,-5.668934318237007e-05,-2.7772611280790995e-21,-0.0,-8.50340147735551e-05,-2.0328790734103208e-20,-0.00014880952949170023,-6.377550744218752e-05,-4.645964923567783e-20,-0.0036830357275903225,0.00022321428696159273,0.0003348214377183467,0.00022321428696159273,0.0021949405781924725,-6.776263578034403e-21,-0.0,1.2353092649647041e-20,-7.440476474585012e-05,-0.0,3.720449580626463e-21,-0.00011160714348079637,-0.0,-7.440476474585012e-05,-0.00022321428696159273,0.00014880952949170023,-0.00014880952949170023,-0.0,-5.675839521319681e-21,-6.776263578034403e-21,2.1258503693388775e-05,-0.0,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,1.1555938106811786e-38,-1.148772149626999e-38,-5.136695173597248e-22,3.056912197018948e-37,-3.3599923505997244e-22,0.00029761905898340046,-8.50340147735551e-05,-0.00014880952949170023,-0.0,-0.0,-0.0,4.251700738677755e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00019841270113829523,-5.668934318237007e-05,-6.020428025376994e-23,-5.668934318237007e-05,1.2353092649647041e-20,1.6940658945086007e-21,-0.0,1.6196954675251618e-05,-3.081545251741056e-21,-0.0,1.087101066927978e-22,-1.0676037070122804e-22,1.1858461261560205e-20,-0.0,-2.083328134364882e-22,0.00022321428696159273,-6.377550744218752e-05,6.627985344295422e-23,-2.7772611280790995e-21,-7.440476474585012e-05,1.6940658945086007e-21,-0.0,-3.081545251741056e-21,2.1258503693388775e-05,-0.0,-1.8937101434478867e-23,-2.1786421627381872e-39,-1.1531751728250762e-22,4.824553944832192e-21,1.434282229876793e-20,0.0003188775444868952,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-3.2367407227679935e-22,-0.00014880952949170023,-8.50340147735551e-05,3.720449580626463e-21,1.1555938106811786e-38,-0.0,1.087101066927978e-22,-1.8937101434478867e-23,-0.0,4.251700738677755e-05,-1.6014055605184206e-22,2.8536403322403787e-22,-8.470329472543003e-22,-5.681130745888022e-23,0.0003348214377183467,3.7366129745429814e-22,-0.00016741071885917336,-2.0328790734103208e-20,-0.00011160714348079637,-1.148772149626999e-38,-0.0,-1.0676037070122804e-22,-2.1786421627381872e-39,-0.0,-1.6014055605184206e-22,5.5803571740398183e-05,-2.8024597940161084e-22,7.71486477286347e-21,-3.3881317890172014e-21,0.00014880952949170023,-3.7269449679189215e-20,-1.5803622856639794e-22,-0.00014880952949170023,-0.0,-5.136695173597248e-22,-0.0,1.1858461261560205e-20,-1.1531751728250762e-22,-0.0,2.8536403322403787e-22,-2.8024597940161084e-22,2.1258503693388775e-05,2.2374455543896316e-22,1.6258322282409185e-22,0.00022321428696159273,-1.447366223839336e-20,-2.0179980618787492e-20,-6.377550744218752e-05,-7.440476474585012e-05,3.056912197018948e-37,-0.0,-0.0,4.824553944832192e-21,-0.0,-8.470329472543003e-22,7.71486477286347e-21,2.2374455543896316e-22,2.1258503693388775e-05,1.5357149293736813e-20,0.00018601190822664648,-3.975530836567006e-20,1.0363234561349007e-20,-4.645964923567783e-20,-0.00022321428696159273,-3.3599923505997244e-22,-0.0,-2.083328134364882e-22,1.434282229876793e-20,-0.0,-5.681130745888022e-23,-3.3881317890172014e-21,1.6258322282409185e-22,1.5357149293736813e-20,3.720238237292506e-05,8.0,5.0,8.0,8.0,0.01904761977493763,-0.0029079860541969538,-0.00424107164144516,-0.0029079860541969538,-0.0029079860541969538,0.0001302083401242271,0.0002604166802484542,0.00017361111531499773,0.00017361111531499773,0.00027901786961592734,0.0002604166802484542,0.0002604166802484542,0.0001302083401242271,0.00017361111531499773,0.0001302083401242271,-0.0029079860541969538,0.0014818948693573475,0.0002604166802484542,0.00017361111531499773,0.00017361111531499773,-0.0001302083401242271,-7.440476474585012e-05,-4.960317528457381e-05,-4.960317528457381e-05,-0.0,-1.2525470344226808e-21,-1.4834708551878793e-22,6.776263578034403e-21,3.776480969707344e-21,5.069717676813265e-21,-0.00424107164144516,0.0002604166802484542,0.0037946428637951612,0.0002604166802484542,0.0002604166802484542,-0.0,-0.0001302083401242271,-1.4087049409975368e-21,7.810789501631876e-24,-0.0005580357392318547,-0.0001302083401242271,-0.0001302083401242271,-5.050805613823918e-21,3.023725407702956e-21,2.050332323064458e-23,-0.0029079860541969538,0.00017361111531499773,0.0002604166802484542,0.0014818948693573475,0.00017361111531499773,-3.7043007269941494e-22,-0.0,-4.960317528457381e-05,8.01338539039946e-22,-0.0,-7.440476474585012e-05,3.3881317890172014e-21,-0.0001302083401242271,-4.960317528457381e-05,8.8989867444302e-21,-0.0029079860541969538,0.00017361111531499773,0.0002604166802484542,0.00017361111531499773,0.0014818948693573475,-3.3881317890172014e-21,-0.0,-2.786746240142183e-21,-4.960317528457381e-05,-0.0,-1.5572973559469612e-21,-7.440476474585012e-05,-3.3881317890172014e-21,-4.960317528457381e-05,-0.0001302083401242271,0.0001302083401242271,-0.0001302083401242271,-0.0,-3.7043007269941494e-22,-3.3881317890172014e-21,1.860119118646253e-05,-0.0,-0.0,-0.0,-0.0,-2.2805021277204188e-38,1.1275085664696413e-39,2.411714899554795e-22,-5.838364316569061e-38,2.529462676405235e-22,0.0002604166802484542,-7.440476474585012e-05,-0.0001302083401242271,-0.0,-0.0,-0.0,3.720238237292506e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017361111531499773,-4.960317528457381e-05,-1.4087049409975368e-21,-4.960317528457381e-05,-2.786746240142183e-21,-0.0,-0.0,1.4172335795592517e-05,6.71103737770356e-22,-0.0,3.6010222999761455e-22,4.238488112601889e-23,-2.541098841762901e-21,-0.0,4.6637627110621746e-23,0.00017361111531499773,-4.960317528457381e-05,7.810789501631876e-24,8.01338539039946e-22,-4.960317528457381e-05,-0.0,-0.0,6.71103737770356e-22,1.4172335795592517e-05,-0.0,-2.2316541714969968e-24,-2.0866315042721554e-40,8.330563010106034e-23,-1.0789946060481821e-21,-2.042318423967837e-21,0.00027901786961592734,-0.0,-0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00013950893480796367,-0.0,-0.0,-0.0,-0.0,-0.0,0.0002604166802484542,-1.2525470344226808e-21,-0.0001302083401242271,-7.440476474585012e-05,-1.5572973559469612e-21,-2.2805021277204188e-38,-0.0,3.6010222999761455e-22,-2.2316541714969968e-24,-0.0,3.720238237292506e-05,6.357732326675015e-23,1.3318270252828642e-21,4.235164736271502e-22,-5.8580925206543594e-24,0.0002604166802484542,-1.4834708551878793e-22,-0.0001302083401242271,3.3881317890172014e-21,-7.440476474585012e-05,1.1275085664696413e-39,-0.0,4.238488112601889e-23,-2.0866315042721554e-40,-0.0,6.357732326675015e-23,3.720238237292506e-05,1.1126031098364733e-22,-1.287438061959793e-21,9.645697849333446e-41,0.0001302083401242271,6.776263578034403e-21,-5.050805613823918e-21,-0.0001302083401242271,-3.3881317890172014e-21,2.411714899554795e-22,-0.0,-2.541098841762901e-21,8.330563010106034e-23,-0.0,1.3318270252828642e-21,1.1126031098364733e-22,1.860119118646253e-05,-1.1187227771948158e-22,-1.6911731037038318e-23,0.00017361111531499773,3.776480969707344e-21,3.023725407702956e-21,-4.960317528457381e-05,-4.960317528457381e-05,-5.838364316569061e-38,-0.0,-0.0,-1.0789946060481821e-21,-0.0,4.235164736271502e-22,-1.287438061959793e-21,-1.1187227771948158e-22,1.4172335795592517e-05,-2.5492733087636143e-21,0.0001302083401242271,5.069717676813265e-21,2.050332323064458e-23,8.8989867444302e-21,-0.0001302083401242271,2.529462676405235e-22,-0.0,4.6637627110621746e-23,-2.042318423967837e-21,-0.0,-5.8580925206543594e-24,9.645697849333446e-41,-1.6911731037038318e-23,-2.5492733087636143e-21,1.860119118646253e-05,8.0,6.0,3.0,3.0,0.07933752238750458,-0.014880952425301075,-0.018766533583402634,-0.031167328357696533,-0.031167328357696533,0.0007716049440205097,0.0013227512827143073,0.002314814832061529,0.002314814832061529,0.0012400794075801969,0.0029761905316263437,0.0029761905316263437,0.0034722222480922937,0.0052083334885537624,0.0034722222480922937,-0.014880952425301075,0.008109725080430508,0.0013227512827143073,0.002314814832061529,0.002314814832061529,-0.0007716049440205097,-0.0003779289545491338,-0.0006613756413571537,-0.0006613756413571537,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.018766533583402634,0.0013227512827143073,0.014327050186693668,0.0029761905316263437,0.0029761905316263437,-2.710505431213761e-20,-0.0005291005363687873,4.743384504624082e-20,4.743384504624082e-20,-0.0018601190531626344,-0.0011904762359336019,-0.0011904762359336019,8.260587902062833e-18,2.478176453336911e-18,8.260587902062833e-18,-0.031167328357696533,0.002314814832061529,0.0029761905316263437,0.06588955223560333,0.0052083334885537624,-1.5662118830240323e-20,4.743384504624082e-20,-0.002314814832061529,-0.0,4.806875579721202e-18,-0.0029761905316263437,-5.2045567069053574e-33,-0.02083333395421505,-0.0052083334885537624,2.3129645794903686e-17,-0.031167328357696533,0.002314814832061529,0.0029761905316263437,0.0052083334885537624,0.06588955223560333,-0.0,4.743384504624082e-20,-0.0,-0.002314814832061529,4.806875579721202e-18,-5.2045567069053574e-33,-0.0029761905316263437,2.9297552773991064e-17,-0.0052083334885537624,-0.02083333395421505,0.0007716049440205097,-0.0007716049440205097,-2.710505431213761e-20,-1.5662118830240323e-20,-0.0,0.00011022927355952561,6.776263578034403e-21,-0.0,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0013227512827143073,-0.0003779289545491338,-0.0005291005363687873,4.743384504624082e-20,4.743384504624082e-20,6.776263578034403e-21,0.0001511715818196535,-1.3552527156068805e-20,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002314814832061529,-0.0006613756413571537,4.743384504624082e-20,-0.002314814832061529,-0.0,-0.0,-1.3552527156068805e-20,0.0006613756413571537,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.002314814832061529,-0.0006613756413571537,4.743384504624082e-20,-0.0,-0.002314814832061529,-0.0,-1.3552527156068805e-20,-0.0,0.0006613756413571537,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0012400794075801969,-0.0,-0.0018601190531626344,4.806875579721202e-18,4.806875579721202e-18,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-4.028020099324441e-19,-4.028020099324441e-19,-1.6521176010920818e-18,-4.956353010071399e-19,-1.6521176010920818e-18,0.0029761905316263437,-0.0,-0.0011904762359336019,-0.0029761905316263437,-5.2045567069053574e-33,0.0,-0.0,-0.0,-0.0,-4.028020099324441e-19,0.0011904762359336019,4.361265416655599e-34,1.7888002631691618e-33,5.366400789507485e-34,1.7888002631691618e-33,0.0029761905316263437,-0.0,-0.0011904762359336019,-5.2045567069053574e-33,-0.0029761905316263437,0.0,-0.0,-0.0,-0.0,-4.028020099324441e-19,4.361265416655599e-34,0.0011904762359336019,1.7888002631691618e-33,5.366400789507485e-34,1.7888002631691618e-33,0.0034722222480922937,-0.0,8.260587902062833e-18,-0.02083333395421505,2.9297552773991064e-17,-0.0,-0.0,-0.0,-0.0,-1.6521176010920818e-18,1.7888002631691618e-33,1.7888002631691618e-33,0.010416666977107525,-6.167905738316459e-18,-1.1564822897451843e-17,0.0052083334885537624,-0.0,2.478176453336911e-18,-0.0052083334885537624,-0.0052083334885537624,-0.0,-0.0,-0.0,-0.0,-4.956353010071399e-19,5.366400789507485e-34,5.366400789507485e-34,-6.167905738316459e-18,0.0052083334885537624,9.048813718623901e-33,0.0034722222480922937,-0.0,8.260587902062833e-18,2.3129645794903686e-17,-0.02083333395421505,-0.0,-0.0,-0.0,-0.0,-1.6521176010920818e-18,1.7888002631691618e-33,1.7888002631691618e-33,-1.1564822897451843e-17,9.048813718623901e-33,0.010416666977107525,8.0,6.0,3.0,4.0,0.06400462985038757,-0.011507936753332615,-0.014521329663693905,-0.02415674552321434,-0.01974206417798996,0.0005787037080153823,0.0009920635493472219,0.0017361111240461469,0.0013888889225199819,0.0009300595265813172,0.0022321429569274187,0.0017857142956927419,0.0026041667442768812,0.0031250000465661287,0.0017361111240461469,-0.011507936753332615,0.006181500386446714,0.0009920635493472219,0.0017361111240461469,0.0013888889225199819,-0.0005787037080153823,-0.00028344671591185033,-0.0004960317746736109,-0.00039682540227659047,-2.95020996502244e-19,-1.8881343569348464e-19,-1.5105075372466654e-19,1.3101564122585963e-33,3.1443755271738755e-34,6.114063410265943e-34,-0.014521329663693905,0.0009920635493472219,0.010923858731985092,0.0022321429569274187,0.0017857142956927419,-2.710505431213761e-20,-0.00039682540227659047,8.300922883092143e-20,2.371692252312041e-20,-0.0013950893189758062,-0.0008928571478463709,-0.0007142857066355646,6.1954409265471244e-18,1.4869058513226313e-18,2.8912057243629608e-18,-0.02415674552321434,0.0017361111240461469,0.0022321429569274187,0.05019841343164444,0.0031250000465661287,3.7130706287304783e-20,-1.0580421332491174e-19,-0.0017361111240461469,-1.1081316998130966e-20,1.9949319560142975e-18,-0.0022321429569274187,3.346493286014373e-34,-0.015625,-0.0031250000465661287,8.095375945498229e-18,-0.01974206417798996,0.0013888889225199819,0.0017857142956927419,0.0031250000465661287,0.025314154103398323,-2.710505431213761e-20,-1.2733383120154613e-19,-1.1081316998130966e-20,-0.0009259259095415473,1.892854766497957e-18,2.4291948918177588e-33,-0.0011904762359336019,1.584380752667334e-17,-0.0020833334419876337,-0.0052083334885537624,0.0005787037080153823,-0.0005787037080153823,-2.710505431213761e-20,3.7130706287304783e-20,-2.710505431213761e-20,8.26719551696442e-05,6.776263578034403e-21,-0.0,-0.0,2.296359675163421e-36,5.13525296937367e-36,2.024941121831902e-36,-0.0,-0.0,-0.0,0.0009920635493472219,-0.00028344671591185033,-0.00039682540227659047,-1.0580421332491174e-19,-1.2733383120154613e-19,6.776263578034403e-21,0.00011337868636474013,-2.371692252312041e-20,-6.776263578034403e-21,1.1800840377077644e-19,7.552537686233327e-20,6.042030278233632e-20,-5.240625649034385e-34,-1.257750141992928e-34,-2.4456254100241254e-34,0.0017361111240461469,-0.0004960317746736109,8.300922883092143e-20,-0.0017361111240461469,-1.1081316998130966e-20,-0.0,-2.371692252312041e-20,0.0004960317746736109,3.1660905420447914e-21,-2.0660548690110953e-35,-1.3222751678245676e-35,-1.057820076862469e-35,0.0,0.0,0.0,0.0013888889225199819,-0.00039682540227659047,2.371692252312041e-20,-1.1081316998130966e-20,-0.0009259259095415473,-0.0,-6.776263578034403e-21,3.1660905420447914e-21,0.00026455026818439364,-4.980418322851297e-36,-2.293067587865601e-36,-4.617032080469856e-36,0.0,0.0,0.0,0.0009300595265813172,-2.95020996502244e-19,-0.0013950893189758062,1.9949319560142975e-18,1.892854766497957e-18,2.296359675163421e-36,1.1800840377077644e-19,-2.0660548690110953e-35,-4.980418322851297e-36,0.00027901786961592734,3.7172646283065783e-19,5.569996430505979e-20,-1.2390882266684555e-18,-2.973811754344051e-19,-5.782411758918651e-19,0.0022321429569274187,-1.8881343569348464e-19,-0.0008928571478463709,-0.0022321429569274187,2.4291948918177588e-33,5.13525296937367e-36,7.552537686233327e-20,-1.3222751678245676e-35,-2.293067587865601e-36,3.7172646283065783e-19,0.0008928571478463709,1.1445526762792563e-34,-1.650797042711633e-33,-3.961913251482804e-34,-7.703719777548943e-34,0.0017857142956927419,-1.5105075372466654e-19,-0.0007142857066355646,3.346493286014373e-34,-0.0011904762359336019,2.024941121831902e-36,6.042030278233632e-20,-1.057820076862469e-35,-4.617032080469856e-36,5.569996430505979e-20,1.1445526762792563e-34,0.0004761904710903764,-2.4735753136910696e-34,-5.936580523269827e-35,-1.1543351081243757e-34,0.0026041667442768812,1.3101564122585963e-33,6.1954409265471244e-18,-0.015625,1.584380752667334e-17,-0.0,-5.240625649034385e-34,0.0,0.0,-1.2390882266684555e-18,-1.650797042711633e-33,-2.4735753136910696e-34,0.0078125,-3.700743608425998e-18,-4.0476879727491145e-18,0.0031250000465661287,3.1443755271738755e-34,1.4869058513226313e-18,-0.0031250000465661287,-0.0020833334419876337,-0.0,-1.257750141992928e-34,0.0,0.0,-2.973811754344051e-19,-3.961913251482804e-34,-5.936580523269827e-35,-3.700743608425998e-18,0.0020833334419876337,2.533667870602051e-33,0.0017361111240461469,6.114063410265943e-34,2.8912057243629608e-18,8.095375945498229e-18,-0.0052083334885537624,-0.0,-2.4456254100241254e-34,0.0,0.0,-5.782411758918651e-19,-7.703719777548943e-34,-1.1543351081243757e-34,-4.0476879727491145e-18,2.533667870602051e-33,0.0017361111240461469,8.0,6.0,3.0,5.0,0.05373677238821983,-0.009391534142196178,-0.01185515895485878,-0.01974206417798996,-0.013657407835125923,0.00046296295477077365,0.0007936508045531809,0.0013888889225199819,0.0009259259095415473,0.0007440476329065859,0.0017857142956927419,0.0011904762359336019,0.0020833334419876337,0.0020833334419876337,0.0009920635493472219,-0.009391534142196178,0.004998110234737396,0.0007936508045531809,0.0013888889225199819,0.0009259259095415473,-0.00046296295477077365,-0.00022675737272948027,-0.00039682540227659047,-0.00026455026818439364,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.01185515895485878,0.0007936508045531809,0.008834325708448887,0.0017857142956927419,0.0011904762359336019,-1.3552527156068805e-20,-0.0003174603043589741,5.370693401142436e-20,3.580462267428291e-20,-0.0011160714784637094,-0.0007142857066355646,-0.0004761904710903764,-9.912705813347644e-18,-1.9825412040285595e-18,-2.8322016904986345e-18,-0.01974206417798996,0.0013888889225199819,0.0017857142956927419,0.04057539626955986,0.0020833334419876337,9.371632415005458e-21,5.370693401142436e-20,-0.0013888889225199819,-6.057312919251706e-36,-5.4831424661879115e-18,-0.0017857142956927419,-4.749417783894445e-33,-0.012500000186264515,-0.0020833334419876337,-1.9825412040285595e-18,-0.013657407835125923,0.0009259259095415473,0.0011904762359336019,0.0020833334419876337,0.012781084515154362,-0.0,3.580462267428291e-20,-6.057312919251706e-36,-0.00046296295477077365,-3.1456320051235524e-18,-4.087050961777072e-33,-0.0005952381179668009,-3.965082408057119e-18,-0.0010416667209938169,-0.0019841270986944437,0.00046296295477077365,-0.00046296295477077365,-1.3552527156068805e-20,9.371632415005458e-21,-0.0,6.613756704609841e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,-0.00022675737272948027,-0.0003174603043589741,5.370693401142436e-20,3.580462267428291e-20,-0.0,9.070294618140906e-05,-1.534483851977655e-20,-1.0229892077253178e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.00039682540227659047,5.370693401142436e-20,-0.0013888889225199819,-6.057312919251706e-36,-0.0,-1.534483851977655e-20,0.00039682540227659047,1.730660910943146e-36,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00026455026818439364,3.580462267428291e-20,-6.057312919251706e-36,-0.00046296295477077365,-0.0,-1.0229892077253178e-20,1.730660910943146e-36,0.00013227513409219682,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,-0.0011160714784637094,-5.4831424661879115e-18,-3.1456320051235524e-18,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,2.9001743267569904e-19,1.933449637335974e-19,1.9825412040285595e-18,3.965082252960754e-19,5.664403070804539e-19,0.0017857142956927419,-0.0,-0.0007142857066355646,-0.0017857142956927419,-4.087050961777072e-33,-0.0,-0.0,-0.0,-0.0,2.9001743267569904e-19,0.0007142857066355646,2.512088824892327e-34,2.5758723422293945e-33,5.151744500787797e-34,7.35963513231899e-34,0.0011904762359336019,-0.0,-0.0004761904710903764,-4.749417783894445e-33,-0.0005952381179668009,-0.0,-0.0,-0.0,-0.0,1.933449637335974e-19,2.512088824892327e-34,0.0002380952355451882,1.7172482893765938e-33,3.4344964869176914e-34,4.906423421545993e-34,0.0020833334419876337,-0.0,-9.912705813347644e-18,-0.012500000186264515,-3.965082408057119e-18,-0.0,-0.0,-0.0,-0.0,1.9825412040285595e-18,2.5758723422293945e-33,1.7172482893765938e-33,0.0062500000931322575,3.521700627168939e-33,9.912706020142797e-19,0.0020833334419876337,-0.0,-1.9825412040285595e-18,-0.0020833334419876337,-0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,3.965082252960754e-19,5.151744500787797e-34,3.4344964869176914e-34,3.521700627168939e-33,0.0010416667209938169,1.0062001135943425e-33,0.0009920635493472219,-0.0,-2.8322016904986345e-18,-1.9825412040285595e-18,-0.0019841270986944437,-0.0,-0.0,-0.0,-0.0,5.664403070804539e-19,7.35963513231899e-34,4.906423421545993e-34,9.912706020142797e-19,1.0062001135943425e-33,0.0004960317746736109,8.0,6.0,3.0,6.0,0.046347472816705704,-0.007936508394777775,-0.010021022520959377,-0.016699735075235367,-0.010021022520959377,0.00038580247201025486,0.0006613756413571537,0.0011574074160307646,0.0006613756413571537,0.0006200397037900984,0.0014880952658131719,0.0008503401186317205,0.0017361111240461469,0.0014880952658131719,0.0006200397037900984,-0.007936508394777775,0.004196586087346077,0.0006613756413571537,0.0011574074160307646,0.0006613756413571537,-0.00038580247201025486,-0.0001889644772745669,-0.0003306878206785768,-0.0001889644772745669,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.010021022520959377,0.0006613756413571537,0.007418627385050058,0.0014880952658131719,0.0008503401186317205,-0.0,-0.00026455026818439364,3.2323617243286754e-20,1.59131649149759e-20,-0.0009300595265813172,-0.0005952381179668009,-0.0003401360590942204,4.130293951031416e-18,7.080504226246586e-19,8.113077403811711e-19,-0.016699735075235367,0.0011574074160307646,0.0014880952658131719,0.034060847014188766,0.0014880952658131719,-1.0672892531715074e-20,3.2323617243286754e-20,-0.0011574074160307646,-1.9443226499380363e-36,2.509645298970572e-18,-0.0014880952658131719,-1.2421817983833667e-33,-0.010416666977107525,-0.0014880952658131719,2.2716617144263096e-18,-0.010021022520959377,0.0006613756413571537,0.0008503401186317205,0.0014880952658131719,0.007418627385050058,-0.0,1.59131649149759e-20,-1.9443226499380363e-36,-0.00026455026818439364,1.1830903739453e-18,-1.2809696222116482e-33,-0.0003401360590942204,7.088961010636599e-18,-0.0005952381179668009,-0.0009300595265813172,0.00038580247201025486,-0.00038580247201025486,-0.0,-1.0672892531715074e-20,-0.0,5.5114636779762805e-05,3.3881317890172014e-21,-0.0,3.3881317890172014e-21,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0006613756413571537,-0.0001889644772745669,-0.00026455026818439364,3.2323617243286754e-20,1.59131649149759e-20,3.3881317890172014e-21,7.558579090982676e-05,-9.235319673963968e-21,-4.546618835633674e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011574074160307646,-0.0003306878206785768,3.2323617243286754e-20,-0.0011574074160307646,-1.9443226499380363e-36,-0.0,-9.235319673963968e-21,0.0003306878206785768,5.5552076353108906e-37,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006613756413571537,-0.0001889644772745669,1.59131649149759e-20,-1.9443226499380363e-36,-0.00026455026818439364,3.3881317890172014e-21,-4.546618835633674e-21,5.5552076353108906e-37,7.558579090982676e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006200397037900984,-0.0,-0.0009300595265813172,2.509645298970572e-18,1.1830903739453e-18,-0.0,-0.0,-0.0,-0.0,0.00018601190822664648,-2.0140100496622206e-19,-9.206902788748504e-20,-8.260588005460409e-19,-1.4161007677011348e-19,-1.622615454912948e-19,0.0014880952658131719,-0.0,-0.0005952381179668009,-0.0014880952658131719,-1.2809696222116482e-33,0.0,-0.0,-0.0,-0.0,-2.0140100496622206e-19,0.0005952381179668009,9.96860650264941e-35,8.944001315845809e-34,1.5332573192331229e-34,1.7568573521292681e-34,0.0008503401186317205,-0.0,-0.0003401360590942204,-1.2421817983833667e-33,-0.0003401360590942204,0.0,-0.0,-0.0,-0.0,-9.206902788748504e-20,9.96860650264941e-35,0.0001360544265480712,4.088686184621661e-34,7.009176644478191e-35,8.031348190633606e-35,0.0017361111240461469,-0.0,4.130293951031416e-18,-0.010416666977107525,7.088961010636599e-18,-0.0,-0.0,-0.0,-0.0,-8.260588005460409e-19,8.944001315845809e-34,4.088686184621661e-34,0.0052083334885537624,-1.4098070347635544e-18,-1.1358308572131548e-18,0.0014880952658131719,-0.0,7.080504226246586e-19,-0.0014880952658131719,-0.0005952381179668009,-0.0,-0.0,-0.0,-0.0,-1.4161007677011348e-19,1.5332573192331229e-34,7.009176644478191e-35,-1.4098070347635544e-18,0.0005952381179668009,4.309790702704083e-34,0.0006200397037900984,-0.0,8.113077403811711e-19,2.2716617144263096e-18,-0.0009300595265813172,-0.0,-0.0,-0.0,-0.0,-1.622615454912948e-19,1.7568573521292681e-34,8.031348190633606e-35,-1.1358308572131548e-18,4.309790702704083e-34,0.00018601190822664648,8.0,6.0,3.0,7.0,0.04076318070292473,-0.0068735829554498196,-0.0086805559694767,-0.014473497867584229,-0.007670776452869177,0.0003306878206785768,0.0005668934318237007,0.0009920635493472219,0.0004960317746736109,0.0005314626032486558,0.0012755101779475808,0.0006377550889737904,0.0014880952658131719,0.0011160714784637094,0.00041335978312417865,-0.0068735829554498196,0.0036173199769109488,0.0005668934318237007,0.0009920635493472219,0.0004960317746736109,-0.0003306878206785768,-0.0001619695540284738,-0.00028344671591185033,-0.00014172335795592517,1.6858342841909617e-19,1.0789339367123366e-19,7.427548756972004e-20,-1.3603615004757278e-33,2.418313590863924e-35,9.340524769418496e-20,-0.0086805559694767,0.0005668934318237007,0.006395266391336918,0.0012755101779475808,0.0006377550889737904,-0.0,-0.00022675737272948027,2.740149839533557e-20,4.103214242050235e-20,-0.0007971939048729837,-0.0005102040595375001,-0.00025510202976875007,3.540251958026928e-18,5.310378040437969e-19,5.817385989193159e-19,-0.014473497867584229,0.0009920635493472219,0.0012755101779475808,0.02935444936156273,0.0011160714784637094,-1.756778624961051e-20,1.3529488883539496e-19,-0.0009920635493472219,-2.8903071169230233e-34,2.1046436089941964e-18,-0.0012755101779475808,1.0620756080875938e-19,-0.008928571827709675,-0.0011160714784637094,1.4318352680661478e-18,-0.007670776452869177,0.0004960317746736109,0.0006377550889737904,0.0011160714784637094,0.004706396255642176,1.3552527156068805e-20,7.465005175319024e-20,-9.020756849562807e-36,-0.0001653439103392884,9.664646962147333e-19,1.0620756080875938e-19,-0.00021258502965793014,5.0507594435748054e-18,-0.00037202381645329297,-0.0004960317746736109,0.0003306878206785768,-0.0003306878206785768,-0.0,-1.756778624961051e-20,1.3552527156068805e-20,4.724111931864172e-05,3.3881317890172014e-21,-0.0,-3.3881317890172014e-21,-5.78059578737727e-39,-7.451669373405034e-37,-1.3413942778006815e-36,-0.0,0.0,5.546362379928789e-23,0.0005668934318237007,-0.0001619695540284738,-0.00022675737272948027,1.3529488883539496e-19,7.465005175319024e-20,3.3881317890172014e-21,6.478781870100647e-05,-7.828998733730882e-21,-5.915243685168427e-21,-6.743337266010817e-20,-4.315735682225861e-20,-2.1578678411129306e-20,2.9946432608180403e-34,4.4919648338298753e-35,5.567141245494354e-35,0.0009920635493472219,-0.00028344671591185033,2.740149839533557e-20,-0.0009920635493472219,-9.020756849562807e-36,-0.0,-7.828998733730882e-21,0.00028344671591185033,7.1480162918727545e-37,8.148689130440964e-36,5.2151609717357354e-36,2.6075804858678677e-36,-0.0,-0.0,-0.0,0.0004960317746736109,-0.00014172335795592517,4.103214242050235e-20,-2.8903071169230233e-34,-0.0001653439103392884,-3.3881317890172014e-21,-5.915243685168427e-21,7.1480162918727545e-37,4.724111931864172e-05,5.416677968589101e-35,6.084293901036999e-36,-6.776263578034403e-21,2.039002169443022e-34,-4.54940851064855e-35,-3.127506241929922e-20,0.0005314626032486558,1.6858342841909617e-19,-0.0007971939048729837,2.1046436089941964e-18,9.664646962147333e-19,-5.78059578737727e-39,-6.743337266010817e-20,8.148689130440964e-36,5.416677968589101e-35,0.0001594387722434476,-1.479680842262287e-19,-9.864539163826864e-20,-7.080504226246586e-19,-1.0620756080875938e-19,-1.022739486422032e-19,0.0012755101779475808,1.0789339367123366e-19,-0.0005102040595375001,-0.0012755101779475808,1.0620756080875938e-19,-7.451669373405034e-37,-4.315735682225861e-20,5.2151609717357354e-36,6.084293901036999e-36,-1.479680842262287e-19,0.0005102040595375001,-4.24830236772689e-20,6.571102960705341e-34,9.856654441058012e-35,1.0934936327422258e-34,0.0006377550889737904,7.427548756972004e-20,-0.00025510202976875007,1.0620756080875938e-19,-0.00021258502965793014,-1.3413942778006815e-36,-2.1578678411129306e-20,2.6075804858678677e-36,-6.776263578034403e-21,-9.864539163826864e-20,-4.24830236772689e-20,8.50340147735551e-05,5.7777898331617076e-34,-3.564196733893769e-35,-2.3456297622267984e-20,0.0014880952658131719,-1.3603615004757278e-33,3.540251958026928e-18,-0.008928571827709675,5.0507594435748054e-18,-0.0,2.9946432608180403e-34,-0.0,2.039002169443022e-34,-7.080504226246586e-19,6.571102960705341e-34,5.7777898331617076e-34,0.004464285913854837,-7.552537427739386e-19,-7.159176340330739e-19,0.0011160714784637094,2.418313590863924e-35,5.310378040437969e-19,-0.0011160714784637094,-0.00037202381645329297,0.0,4.4919648338298753e-35,-0.0,-4.54940851064855e-35,-1.0620756080875938e-19,9.856654441058012e-35,-3.564196733893769e-35,-7.552537427739386e-19,0.00037202381645329297,5.276255755245022e-35,0.00041335978312417865,9.340524769418496e-20,5.817385989193159e-19,1.4318352680661478e-18,-0.0004960317746736109,5.546362379928789e-23,5.567141245494354e-35,-0.0,-3.127506241929922e-20,-1.022739486422032e-19,1.0934936327422258e-34,-2.3456297622267984e-20,-7.159176340330739e-19,5.276255755245022e-35,8.26719551696442e-05,8.0,6.0,3.0,8.0,0.036389440298080444,-0.006062610074877739,-0.0076574902050197124,-0.0127728171646595,-0.006062610074877739,0.00028935185400769114,0.0004960317746736109,0.0008680555620230734,0.00038580247201025486,0.0004650297632906586,0.0011160714784637094,0.0004960317746736109,0.0013020833721384406,0.0008680555620230734,0.00028935185400769114,-0.006062610074877739,0.003178933635354042,0.0004960317746736109,0.0008680555620230734,0.00038580247201025486,-0.00028935185400769114,-0.00014172335795592517,-0.00024801588733680546,-0.00011022927355952561,-1.47510498251122e-19,-9.440671784674232e-20,-5.678161927824652e-20,6.567053474502255e-34,2.302195813769613e-34,1.1972384388306644e-20,-0.0076574902050197124,0.0004960317746736109,0.0056206597946584225,0.0011160714784637094,0.0004960317746736109,-2.710505431213761e-20,-0.00019841270113829523,3.6364071418181516e-20,-4.166938895503999e-21,-0.0006975446594879031,-0.00044642857392318547,-0.00019841270113829523,3.0977204632735622e-18,4.1302940027302046e-19,3.0360950940480554e-19,-0.0127728171646595,0.0008680555620230734,0.0011160714784637094,0.02579365111887455,0.0008680555620230734,-7.940028343920519e-21,-5.804264965973507e-20,-0.0008680555620230734,1.46922880775118e-34,1.063550677914929e-18,-0.0011160714784637094,6.058882215689491e-34,-0.0078125,-0.0008680555620230734,9.63735310386038e-19,-0.006062610074877739,0.00038580247201025486,0.0004960317746736109,0.0008680555620230734,0.003178933635354042,-6.776263578034403e-21,-3.130240461595322e-20,5.7369455083693676e-36,-0.00011022927355952561,5.018166666283838e-19,6.477025300908653e-34,-0.00014172335795592517,4.254202711659716e-18,-0.00024801588733680546,-0.00028935185400769114,0.00028935185400769114,-0.00028935185400769114,-2.710505431213761e-20,-7.940028343920519e-21,-6.776263578034403e-21,4.13359775848221e-05,3.3881317890172014e-21,6.776263578034403e-21,1.6940658945086007e-21,1.3716773017080842e-36,-1.7298659599295285e-37,1.419464897616324e-37,-0.0,0.0,6.313853863642705e-22,0.0004960317746736109,-0.00014172335795592517,-0.00019841270113829523,-5.804264965973507e-20,-3.130240461595322e-20,3.3881317890172014e-21,5.668934318237007e-05,-1.038973422931268e-20,-3.0446107084279614e-21,5.900420188538822e-20,3.7762688431166636e-20,1.6783417080518505e-20,-2.6203128245171927e-34,-3.4937505857487505e-35,-2.482644068936671e-35,0.0008680555620230734,-0.00024801588733680546,3.6364071418181516e-20,-0.0008680555620230734,5.7369455083693676e-36,6.776263578034403e-21,-1.038973422931268e-20,0.00024801588733680546,5.580007703428634e-37,-1.081398983993996e-35,-6.920953296671426e-36,-3.0759793625425474e-36,0.0,0.0,0.0,0.00038580247201025486,-0.00011022927355952561,-4.166938895503999e-21,1.46922880775118e-34,-0.00011022927355952561,1.6940658945086007e-21,-3.0446107084279614e-21,5.580007703428634e-37,3.149408075842075e-05,3.009265538105056e-36,-2.028118235393321e-36,4.235164736271502e-21,-4.648894872214e-37,-4.082166151380369e-35,-4.7865351406038635e-21,0.0004650297632906586,-1.47510498251122e-19,-0.0006975446594879031,1.063550677914929e-18,5.018166666283838e-19,1.3716773017080842e-36,5.900420188538822e-20,-1.081398983993996e-35,3.009265538105056e-36,0.00013950893480796367,1.8586323141532891e-19,2.5062735686221382e-20,-6.195441133342278e-19,-8.26058813470738e-20,-6.883823553295292e-20,0.0011160714784637094,-9.440671784674232e-20,-0.00044642857392318547,-0.0011160714784637094,6.477025300908653e-34,-1.7298659599295285e-37,3.7762688431166636e-20,-6.920953296671426e-36,-2.028118235393321e-36,1.8586323141532891e-19,0.00044642857392318547,4.457027454246195e-35,-8.253985213558165e-34,-1.1005314459902934e-34,-9.171095000604545e-35,0.0004960317746736109,-5.678161927824652e-20,-0.00019841270113829523,6.058882215689491e-34,-0.00014172335795592517,1.419464897616324e-37,1.6783417080518505e-20,-3.0759793625425474e-36,4.235164736271502e-21,2.5062735686221382e-20,4.457027454246195e-35,5.668934318237007e-05,-2.8888949165808538e-34,-3.6791139340673694e-35,1.1594762706185548e-20,0.0013020833721384406,6.567053474502255e-34,3.0977204632735622e-18,-0.0078125,4.254202711659716e-18,-0.0,-2.6203128245171927e-34,0.0,-4.648894872214e-37,-6.195441133342278e-19,-8.253985213558165e-34,-2.8888949165808538e-34,0.00390625,-8.811294355013127e-19,-4.81867655193019e-19,0.0008680555620230734,2.302195813769613e-34,4.1302940027302046e-19,-0.0008680555620230734,-0.00024801588733680546,0.0,-3.4937505857487505e-35,0.0,-4.082166151380369e-35,-8.26058813470738e-20,-1.1005314459902934e-34,-3.6791139340673694e-35,-8.811294355013127e-19,0.00024801588733680546,4.229802042947658e-35,0.00028935185400769114,1.1972384388306644e-20,3.0360950940480554e-19,9.63735310386038e-19,-0.00028935185400769114,6.313853863642705e-22,-2.482644068936671e-35,0.0,-4.7865351406038635e-21,-6.883823553295292e-20,-9.171095000604545e-35,1.1594762706185548e-20,-4.81867655193019e-19,4.229802042947658e-35,4.13359775848221e-05,8.0,6.0,4.0,3.0,0.06400462985038757,-0.011507936753332615,-0.014521329663693905,-0.01974206417798996,-0.02415674552321434,0.0005787037080153823,0.0009920635493472219,0.0013888889225199819,0.0017361111240461469,0.0009300595265813172,0.0017857142956927419,0.0022321429569274187,0.0017361111240461469,0.0031250000465661287,0.0026041667442768812,-0.011507936753332615,0.006181500386446714,0.0009920635493472219,0.0013888889225199819,0.0017361111240461469,-0.0005787037080153823,-0.00028344671591185033,-0.00039682540227659047,-0.0004960317746736109,-2.95020996502244e-19,-1.5105075372466654e-19,-1.8881343569348464e-19,6.114063410265943e-34,3.1443755271738755e-34,1.3101564122585963e-33,-0.014521329663693905,0.0009920635493472219,0.010923858731985092,0.0017857142956927419,0.0022321429569274187,-0.0,-0.00039682540227659047,2.371692252312041e-20,7.115076756936123e-20,-0.0013950893189758062,-0.0007142857066355646,-0.0008928571478463709,2.8912057243629608e-18,1.4869058513226313e-18,6.1954409265471244e-18,-0.01974206417798996,0.0013888889225199819,0.0017857142956927419,0.025314154103398323,0.0031250000465661287,-4.735111729146271e-20,-1.2733383120154613e-19,-0.0009259259095415473,-1.4404576178256416e-19,1.892854766497957e-18,-0.0011904762359336019,-3.965082252960754e-19,-0.0052083334885537624,-0.0020833334419876337,-8.405963776150024e-33,-0.02415674552321434,0.0017361111240461469,0.0022321429569274187,0.0031250000465661287,0.05019841343164444,-0.0,-1.1766266812412341e-19,-1.4404576178256416e-19,-0.0017361111240461469,1.9949319560142975e-18,-3.965082252960754e-19,-0.0022321429569274187,-4.134329711909129e-33,-0.0031250000465661287,-0.015625,0.0005787037080153823,-0.0005787037080153823,-0.0,-4.735111729146271e-20,-0.0,8.26719551696442e-05,-0.0,-0.0,-1.3552527156068805e-20,2.296359675163421e-36,1.0597050362943524e-36,7.179282242574973e-36,-0.0,-0.0,-0.0,0.0009920635493472219,-0.00028344671591185033,-0.00039682540227659047,-1.2733383120154613e-19,-1.1766266812412341e-19,-0.0,0.00011337868636474013,-6.776263578034403e-21,-2.0328790734103208e-20,1.1800840377077644e-19,6.042030278233632e-20,7.552537686233327e-20,-2.4456254100241254e-34,-1.257750141992928e-34,-5.240625649034385e-34,0.0013888889225199819,-0.00039682540227659047,2.371692252312041e-20,-0.0009259259095415473,-1.4404576178256416e-19,-0.0,-6.776263578034403e-21,0.00026455026818439364,4.1155931937875473e-20,-4.980418322851297e-36,-4.617032080469856e-36,-2.293067587865601e-36,0.0,0.0,0.0,0.0017361111240461469,-0.0004960317746736109,7.115076756936123e-20,-1.4404576178256416e-19,-0.0017361111240461469,-1.3552527156068805e-20,-2.0328790734103208e-20,4.1155931937875473e-20,0.0004960317746736109,-2.0660548690110953e-35,-1.057820076862469e-35,-1.3222751678245676e-35,0.0,0.0,0.0,0.0009300595265813172,-2.95020996502244e-19,-0.0013950893189758062,1.892854766497957e-18,1.9949319560142975e-18,2.296359675163421e-36,1.1800840377077644e-19,-4.980418322851297e-36,-2.0660548690110953e-35,0.00027901786961592734,5.569996430505979e-20,3.7172646283065783e-19,-5.782411758918651e-19,-2.973811754344051e-19,-1.2390882266684555e-18,0.0017857142956927419,-1.5105075372466654e-19,-0.0007142857066355646,-0.0011904762359336019,-3.965082252960754e-19,1.0597050362943524e-36,6.042030278233632e-20,-4.617032080469856e-36,-1.057820076862469e-35,5.569996430505979e-20,0.0004761904710903764,1.5860328753349075e-19,-1.1543351081243757e-34,-5.936580523269827e-35,-2.4735753136910696e-34,0.0022321429569274187,-1.8881343569348464e-19,-0.0008928571478463709,-3.965082252960754e-19,-0.0022321429569274187,7.179282242574973e-36,7.552537686233327e-20,-2.293067587865601e-36,-1.3222751678245676e-35,3.7172646283065783e-19,1.5860328753349075e-19,0.0008928571478463709,-7.703719777548943e-34,-3.961913251482804e-34,-1.650797042711633e-33,0.0017361111240461469,6.114063410265943e-34,2.8912057243629608e-18,-0.0052083334885537624,-4.134329711909129e-33,-0.0,-2.4456254100241254e-34,0.0,0.0,-5.782411758918651e-19,-1.1543351081243757e-34,-7.703719777548943e-34,0.0017361111240461469,6.162975913874651e-34,2.5679065312926504e-33,0.0031250000465661287,3.1443755271738755e-34,1.4869058513226313e-18,-0.0020833334419876337,-0.0031250000465661287,-0.0,-1.257750141992928e-34,0.0,0.0,-2.973811754344051e-19,-5.936580523269827e-35,-3.961913251482804e-34,6.162975913874651e-34,0.0020833334419876337,1.320637689270604e-33,0.0026041667442768812,1.3101564122585963e-33,6.1954409265471244e-18,-8.405963776150024e-33,-0.015625,-0.0,-5.240625649034385e-34,0.0,0.0,-1.2390882266684555e-18,-2.4735753136910696e-34,-1.650797042711633e-33,2.5679065312926504e-33,1.320637689270604e-33,0.0078125,8.0,6.0,4.0,4.0,0.05149677395820618,-0.008891369216144085,-0.011225818656384945,-0.015275297686457634,-0.015275297686457634,0.0004340277810115367,0.0007440476329065859,0.0010416667209938169,0.0010416667209938169,0.0006975446594879031,0.0013392857508733869,0.0013392857508733869,0.0013020833721384406,0.0018749999580904841,0.0013020833721384406,-0.008891369216144085,0.0047105299308896065,0.0007440476329065859,0.0010416667209938169,0.0010416667209938169,-0.0004340277810115367,-0.00021258502965793014,-0.00029761905898340046,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.011225818656384945,0.0007440476329065859,0.008326822891831398,0.0013392857508733869,0.0013392857508733869,5.421010862427522e-20,-0.00029761905898340046,-1.0672615135404184e-19,-1.0672615135404184e-19,-0.0010463169310241938,-0.0005357142654247582,-0.0005357142654247582,2.168404344971009e-18,8.921435521526094e-19,2.168404344971009e-18,-0.015275297686457634,0.0010416667209938169,0.0013392857508733869,0.019298115745186806,0.0018749999580904841,2.0602110918653762e-20,-1.0672615135404184e-19,-0.0006944444612599909,-6.293067315681259e-20,1.5686856829681458e-18,-0.0008928571478463709,-0.0,-0.00390625,-0.0012499999720603228,-3.250969584495181e-33,-0.015275297686457634,0.0010416667209938169,0.0013392857508733869,0.0018749999580904841,0.019298115745186806,-0.0,-1.0672615135404184e-19,-6.293067315681259e-20,-0.0006944444612599909,1.5686856829681458e-18,-0.0,-0.0008928571478463709,-3.250969584495181e-33,-0.0012499999720603228,-0.00390625,0.0004340277810115367,-0.0004340277810115367,5.421010862427522e-20,2.0602110918653762e-20,-0.0,6.200397183420137e-05,-6.776263578034403e-21,-6.776263578034403e-21,-6.776263578034403e-21,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-0.00021258502965793014,-0.00029761905898340046,-1.0672615135404184e-19,-1.0672615135404184e-19,-6.776263578034403e-21,8.50340147735551e-05,3.049318610115481e-20,3.049318610115481e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-1.0672615135404184e-19,-0.0006944444612599909,-6.293067315681259e-20,-6.776263578034403e-21,3.049318610115481e-20,0.00019841270113829523,1.7980192330517882e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-1.0672615135404184e-19,-6.293067315681259e-20,-0.0006944444612599909,-6.776263578034403e-21,3.049318610115481e-20,1.7980192330517882e-20,0.00019841270113829523,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006975446594879031,-0.0,-0.0010463169310241938,1.5686856829681458e-18,1.5686856829681458e-18,-0.0,-0.0,-0.0,-0.0,0.0002092633949359879,-0.0,-0.0,-4.336808689942018e-19,-1.7842870009076423e-19,-4.336808689942018e-19,0.0013392857508733869,-0.0,-0.0005357142654247582,-0.0008928571478463709,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-0.0,-0.0005357142654247582,-0.0,-0.0008928571478463709,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,2.168404344971009e-18,-0.00390625,-3.250969584495181e-33,-0.0,-0.0,-0.0,-0.0,-4.336808689942018e-19,-0.0,-0.0,0.0013020833721384406,3.6977854105715463e-34,8.98767276768878e-34,0.0018749999580904841,-0.0,8.921435521526094e-19,-0.0012499999720603228,-0.0012499999720603228,-0.0,-0.0,-0.0,-0.0,-1.7842870009076423e-19,-0.0,-0.0,3.6977854105715463e-34,0.0008333333535119891,3.6977854105715463e-34,0.0013020833721384406,-0.0,2.168404344971009e-18,-3.250969584495181e-33,-0.00390625,-0.0,-0.0,-0.0,-0.0,-4.336808689942018e-19,-0.0,-0.0,8.98767276768878e-34,3.6977854105715463e-34,0.0013020833721384406,8.0,6.0,4.0,5.0,0.04315972328186035,-0.0072519839741289616,-0.009159225970506668,-0.012470237910747528,-0.010555555112659931,0.00034722223062999547,0.0005952381179668009,0.0008333333535119891,0.0006944444612599909,0.0005580357392318547,0.0010714285308495164,0.0008928571478463709,0.0010416667209938169,0.0012499999720603228,0.0007440476329065859,-0.0072519839741289616,0.00380810652859509,0.0005952381179668009,0.0008333333535119891,0.0006944444612599909,-0.00034722223062999547,-0.0001700680295471102,-0.0002380952355451882,-0.00019841270113829523,2.1744703169468577e-34,-9.063045094233022e-20,-0.0,-3.965082252960754e-19,-1.0573552502232717e-19,-0.0,-0.009159225970506668,0.0005952381179668009,0.006732887122780085,0.0010714285308495164,0.0008928571478463709,1.3552527156068805e-20,-0.0002380952355451882,-1.6054066085036358e-19,-6.586699631031391e-20,-0.0008370535797439516,-0.00042857142398133874,-0.0003571428533177823,1.734723475976807e-18,5.947623508688102e-19,1.0620756080875938e-18,-0.012470237910747528,0.0008333333535119891,0.0010714285308495164,0.015605159103870392,0.0012499999720603228,7.587764109659435e-21,-6.99102163703819e-20,-0.0005555555690079927,-4.394933055998985e-20,1.713765200796551e-18,-0.0007142857066355646,-1.1133287912565316e-33,-0.0031250000465661287,-0.0008333333535119891,-2.174470408782354e-33,-0.010555555112659931,0.0006944444612599909,0.0008928571478463709,0.0012499999720603228,0.009742063470184803,2.710505431213761e-20,-6.586699631031391e-20,-1.4968485881349128e-19,-0.00034722223062999547,1.2999805070760872e-18,-1.4082062327706065e-33,-0.00044642857392318547,-2.9433761410055897e-33,-0.0006249999860301614,-0.0014880952658131719,0.00034722223062999547,-0.00034722223062999547,1.3552527156068805e-20,7.587764109659435e-21,2.710505431213761e-20,4.960317528457381e-05,-3.3881317890172014e-21,-6.776263578034403e-21,-6.776263578034403e-21,0.0,-3.1226572645916945e-36,-0.0,-7.887951655157711e-36,-4.102060230975038e-36,-0.0,0.0005952381179668009,-0.0001700680295471102,-0.0002380952355451882,-6.99102163703819e-20,-6.586699631031391e-20,-3.3881317890172014e-21,6.80272132740356e-05,1.9974347072798504e-20,1.8819140879754184e-20,-0.0,7.603193457910633e-36,0.0,3.32639703918449e-35,8.870392008829999e-36,0.0,0.0008333333535119891,-0.0002380952355451882,-1.6054066085036358e-19,-0.0005555555690079927,-1.4968485881349128e-19,-6.776263578034403e-21,1.9974347072798504e-20,0.00015873015217948705,1.2556951473169448e-20,-1.449646954494152e-34,6.042030278233632e-20,0.0,2.64338825480515e-19,7.04903478607686e-20,0.0,0.0006944444612599909,-0.00019841270113829523,-6.586699631031391e-20,-4.394933055998985e-20,-0.00034722223062999547,-6.776263578034403e-21,1.8819140879754184e-20,1.2556951473169448e-20,9.920635056914762e-05,-0.0,4.779777135296057e-36,0.0,2.091152505660335e-35,5.5764066578454e-36,0.0,0.0005580357392318547,2.1744703169468577e-34,-0.0008370535797439516,1.713765200796551e-18,1.2999805070760872e-18,0.0,-0.0,-1.449646954494152e-34,-0.0,0.00016741071885917336,-1.7401046994517708e-19,-1.0875654371573568e-19,-3.4694470036524025e-19,-1.189524624189438e-19,-2.1241512161751876e-19,0.0010714285308495164,-9.063045094233022e-20,-0.00042857142398133874,-0.0007142857066355646,-1.4082062327706065e-33,-3.1226572645916945e-36,7.603193457910633e-36,6.042030278233632e-20,4.779777135296057e-36,-1.7401046994517708e-19,0.0002857142826542258,1.1304399712015472e-34,4.6124212641458e-34,1.5047387242562203e-34,2.207890631531193e-34,0.0008928571478463709,-0.0,-0.0003571428533177823,-1.1133287912565316e-33,-0.00044642857392318547,-0.0,0.0,0.0,0.0,-1.0875654371573568e-19,1.1304399712015472e-34,0.00017857142665889114,2.253888276491846e-34,7.727617210359176e-35,1.3799316447069957e-34,0.0010416667209938169,-3.965082252960754e-19,1.734723475976807e-18,-0.0031250000465661287,-2.9433761410055897e-33,-7.887951655157711e-36,3.32639703918449e-35,2.64338825480515e-19,2.091152505660335e-35,-3.4694470036524025e-19,4.6124212641458e-34,2.253888276491846e-34,0.0010416667209938169,3.6390905899120894e-34,4.402125783961174e-34,0.0012499999720603228,-1.0573552502232717e-19,5.947623508688102e-19,-0.0008333333535119891,-0.0006249999860301614,-4.102060230975038e-36,8.870392008829999e-36,7.04903478607686e-20,5.5764066578454e-36,-1.189524624189438e-19,1.5047387242562203e-34,7.727617210359176e-35,3.6390905899120894e-34,0.00041666667675599456,1.5093001933503877e-34,0.0007440476329065859,-0.0,1.0620756080875938e-18,-2.174470408782354e-33,-0.0014880952658131719,-0.0,0.0,0.0,0.0,-2.1241512161751876e-19,2.207890631531193e-34,1.3799316447069957e-34,4.402125783961174e-34,1.5093001933503877e-34,0.00037202381645329297,8.0,6.0,4.0,6.0,0.03717875853180885,-0.00612599216401577,-0.007738980930298567,-0.010540674440562725,-0.007738980930298567,0.00028935185400769114,0.0004960317746736109,0.0006944444612599909,0.0004960317746736109,0.0004650297632906586,0.0008928571478463709,0.0006377550889737904,0.0008680555620230734,0.0008928571478463709,0.0004650297632906586,-0.00612599216401577,0.0031970427371561527,0.0004960317746736109,0.0006944444612599909,0.0004960317746736109,-0.00028935185400769114,-0.00014172335795592517,-0.00019841270113829523,-0.00014172335795592517,-1.47510498251122e-19,-7.552537686233327e-20,-1.0789339367123366e-19,3.0570317051329716e-34,-7.552537686233327e-20,-1.47510498251122e-19,-0.007738980930298567,0.0004960317746736109,0.005653256084769964,0.0008928571478463709,0.0006377550889737904,1.3552527156068805e-20,-0.00019841270113829523,1.9394170345972053e-20,-3.476564828199936e-20,-0.0006975446594879031,-0.0003571428533177823,-0.00025510202976875007,1.4456028621814804e-18,2.888845571280194e-19,3.4296190326397985e-19,-0.010540674440562725,0.0006944444612599909,0.0008928571478463709,0.013103505596518517,0.0008928571478463709,-9.287886032539433e-21,-5.613120328518695e-20,-0.00046296295477077365,-1.2096375207836648e-19,1.0101519300739917e-18,-0.0005952381179668009,-2.4923373201347243e-19,-0.0026041667442768812,-0.0005952381179668009,-3.097720566671139e-19,-0.007738980930298567,0.0004960317746736109,0.0006377550889737904,0.0008928571478463709,0.005653256084769964,-0.0,-3.476564828199936e-20,-4.543837521603321e-20,-0.00019841270113829523,7.2935513138520955e-19,-1.1328805883115137e-19,-0.00025510202976875007,-1.5115275025975815e-33,-0.0003571428533177823,-0.0006975446594879031,0.00028935185400769114,-0.00028935185400769114,1.3552527156068805e-20,-9.287886032539433e-21,-0.0,4.13359775848221e-05,3.3881317890172014e-21,-0.0,3.3881317890172014e-21,2.5878618622933975e-36,2.8576986747599375e-37,6.9650067124319334e-37,-0.0,5.095164264173859e-37,3.692539835190159e-37,0.0004960317746736109,-0.00014172335795592517,-0.00019841270113829523,-5.613120328518695e-20,-3.476564828199936e-20,3.3881317890172014e-21,5.668934318237007e-05,-5.5411916428196675e-21,-5.480299355949687e-21,5.900420188538822e-20,3.021015139116816e-20,2.1578678411129306e-20,-1.2228127050120627e-34,-2.7356778375289334e-35,-3.471468998493418e-35,0.0006944444612599909,-0.00019841270113829523,1.9394170345972053e-20,-0.00046296295477077365,-4.543837521603321e-20,-0.0,-5.5411916428196675e-21,0.00013227513409219682,1.2982392918866631e-20,-5.767461080559522e-36,-2.952940066071827e-36,2.8324775444796337e-36,0.0,6.918408448977111e-36,1.3512517062427805e-35,0.0004960317746736109,-0.00014172335795592517,-3.476564828199936e-20,-1.2096375207836648e-19,-0.00019841270113829523,3.3881317890172014e-21,-5.480299355949687e-21,1.2982392918866631e-20,5.668934318237007e-05,-6.739908082080749e-35,6.662368215829376e-36,2.1578678411129306e-20,0.0,3.021015139116816e-20,5.900420188538822e-20,0.0004650297632906586,-1.47510498251122e-19,-0.0006975446594879031,1.0101519300739917e-18,7.2935513138520955e-19,2.5878618622933975e-36,5.900420188538822e-20,-5.767461080559522e-36,-6.739908082080749e-35,0.00013950893480796367,2.7849982152529897e-20,2.629901406112835e-21,-2.8912058794593256e-19,-8.49660473545378e-20,-1.2169615588729683e-19,0.0008928571478463709,-7.552537686233327e-20,-0.0003571428533177823,-0.0005952381179668009,-1.1328805883115137e-19,2.8576986747599375e-37,3.021015139116816e-20,-2.952940066071827e-36,6.662368215829376e-36,2.7849982152529897e-20,0.0002380952355451882,4.531522547116511e-20,-5.771675540621879e-35,7.18714350453906e-36,2.2871587270258887e-35,0.0006377550889737904,-1.0789339367123366e-19,-0.00025510202976875007,-2.4923373201347243e-19,-0.00025510202976875007,6.9650067124319334e-37,2.1578678411129306e-20,2.8324775444796337e-36,2.1578678411129306e-20,2.629901406112835e-21,4.531522547116511e-20,0.0001020408162730746,-5.450250873590021e-36,5.437827185786784e-20,1.0620756080875938e-19,0.0008680555620230734,3.0570317051329716e-34,1.4456028621814804e-18,-0.0026041667442768812,-1.5115275025975815e-33,-0.0,-1.2228127050120627e-34,0.0,0.0,-2.8912058794593256e-19,-5.771675540621879e-35,-5.450250873590021e-36,0.0008680555620230734,1.7608502447078474e-34,2.522051139515546e-34,0.0008928571478463709,-7.552537686233327e-20,2.888845571280194e-19,-0.0005952381179668009,-0.0003571428533177823,5.095164264173859e-37,-2.7356778375289334e-35,6.918408448977111e-36,3.021015139116816e-20,-8.49660473545378e-20,7.18714350453906e-36,5.437827185786784e-20,1.7608502447078474e-34,0.0002380952355451882,1.2390882525178497e-19,0.0004650297632906586,-1.47510498251122e-19,3.4296190326397985e-19,-3.097720566671139e-19,-0.0006975446594879031,3.692539835190159e-37,-3.471468998493418e-35,1.3512517062427805e-35,5.900420188538822e-20,-1.2169615588729683e-19,2.2871587270258887e-35,1.0620756080875938e-19,2.522051139515546e-34,1.2390882525178497e-19,0.00013950893480796367,8.0,6.0,4.0,7.0,0.032669004052877426,-0.005303996615111828,-0.006701743230223656,-0.009130527265369892,-0.005920493043959141,0.00024801588733680546,0.00042517005931586027,0.0005952381179668009,0.00037202381645329297,0.00039859695243649185,0.0007653061184100807,0.00047831633128225803,0.0007440476329065859,0.0006696428754366934,0.0003100198518950492,-0.005303996615111828,0.00275550689548254,0.00042517005931586027,0.0005952381179668009,0.00037202381645329297,-0.00024801588733680546,-0.00012147716188337654,-0.0001700680295471102,-0.00010629251482896507,-1.2643756808314786e-19,-1.2947206723560157e-19,-4.300112308406266e-20,-2.8322015354022696e-19,-7.133821445098399e-20,-8.897118479468566e-20,-0.006701743230223656,0.00042517005931586027,0.004872980527579784,0.0007653061184100807,0.00047831633128225803,-6.776263578034403e-21,-0.0001700680295471102,-4.8295137165538856e-20,7.734462652591154e-21,-0.0005978954141028225,-0.0003061224415432662,-0.00019132652960252017,7.292919037671375e-19,2.1158122016248874e-19,3.848955917728083e-19,-0.009130527265369892,0.0005952381179668009,0.0007653061184100807,0.011295351199805737,0.0006696428754366934,-1.8431795786467756e-20,-4.8295137165538856e-20,-0.00039682540227659047,-5.005169720156069e-20,8.379559842000263e-19,-0.0005102040595375001,-9.00482450380636e-20,-0.0022321429569274187,-0.00044642857392318547,-1.0461848384414679e-20,-0.005920493043959141,0.00037202381645329297,0.00047831633128225803,0.0006696428754366934,0.003585600992664695,-6.776263578034403e-21,-3.0184460324565e-20,-9.200154804407661e-20,-0.00012400794366840273,4.954004851107514e-19,-1.8692530547245286e-19,-0.0001594387722434476,-3.7172646283065783e-19,-0.00022321428696159273,-0.00037202381645329297,0.00024801588733680546,-0.00024801588733680546,-6.776263578034403e-21,-1.8431795786467756e-20,-6.776263578034403e-21,3.543083948898129e-05,-3.3881317890172014e-21,3.3881317890172014e-21,3.3881317890172014e-21,2.795810249610318e-36,3.4564492941284683e-37,1.0406452247850937e-36,1.2449391153901568e-36,-4.898696726385539e-38,2.456523461148797e-22,0.00042517005931586027,-0.00012147716188337654,-0.0001700680295471102,-4.8295137165538856e-20,-3.0184460324565e-20,-3.3881317890172014e-21,4.8590864025754854e-05,-4.697399563355956e-21,-2.9358746261232765e-21,5.0575027879493996e-20,2.5894414093355167e-20,1.6184008404450196e-20,-6.951239351867667e-35,-1.9867734286708643e-35,-3.535887007273441e-35,0.0005952381179668009,-0.0001700680295471102,-4.8295137165538856e-20,-0.00039682540227659047,-9.200154804407661e-20,3.3881317890172014e-21,-4.697399563355956e-21,0.00011337868636474013,1.0102147602576288e-20,-7.577058654126659e-35,4.315735682225861e-20,6.293998821584144e-36,1.8881343569348464e-19,3.7762688431166636e-20,1.0532429383367696e-35,0.00037202381645329297,-0.00010629251482896507,7.734462652591154e-21,-5.005169720156069e-20,-0.00012400794366840273,3.3881317890172014e-21,-2.9358746261232765e-21,1.0102147602576288e-20,3.543083948898129e-05,-4.2129717533470784e-35,6.47066161759957e-36,8.470329472543003e-22,2.375326112577182e-35,4.898059928250039e-21,2.9037083266771525e-20,0.00039859695243649185,-1.2643756808314786e-19,-0.0005978954141028225,8.379559842000263e-19,4.954004851107514e-19,2.795810249610318e-36,5.0575027879493996e-20,-7.577058654126659e-35,-4.2129717533470784e-35,0.00011957908282056451,3.866822178853919e-20,2.4167639021733776e-20,-2.4781765050356993e-19,-6.372453390031621e-20,-7.670545986606527e-20,0.0007653061184100807,-1.2947206723560157e-19,-0.0003061224415432662,-0.0005102040595375001,-1.8692530547245286e-19,3.4564492941284683e-37,2.5894414093355167e-20,4.315735682225861e-20,6.47066161759957e-36,3.866822178853919e-20,0.0002040816325461492,3.3986418295580265e-20,3.398641894181512e-19,6.797283659116053e-20,-1.7429279449621718e-35,0.00047831633128225803,-4.300112308406266e-20,-0.00019132652960252017,-9.00482450380636e-20,-0.0001594387722434476,1.0406452247850937e-36,1.6184008404450196e-20,6.293998821584144e-36,8.470329472543003e-22,2.4167639021733776e-20,3.3986418295580265e-20,6.377550744218752e-05,9.027796614315168e-36,1.6940658945086007e-21,-4.560946872078992e-22,0.0007440476329065859,-2.8322015354022696e-19,7.292919037671375e-19,-0.0022321429569274187,-3.7172646283065783e-19,1.2449391153901568e-36,-6.951239351867667e-35,1.8881343569348464e-19,2.375326112577182e-35,-2.4781765050356993e-19,3.398641894181512e-19,9.027796614315168e-36,0.0007440476329065859,2.4781765050356993e-19,1.7652161041951983e-34,0.0006696428754366934,-7.133821445098399e-20,2.1158122016248874e-19,-0.00044642857392318547,-0.00022321428696159273,-4.898696726385539e-38,-1.9867734286708643e-35,3.7762688431166636e-20,4.898059928250039e-21,-6.372453390031621e-20,6.797283659116053e-20,1.6940658945086007e-21,2.4781765050356993e-19,0.00014880952949170023,3.487282794804893e-21,0.0003100198518950492,-8.897118479468566e-20,3.848955917728083e-19,-1.0461848384414679e-20,-0.00037202381645329297,2.456523461148797e-22,-3.535887007273441e-35,1.0532429383367696e-35,2.9037083266771525e-20,-7.670545986606527e-20,-1.7429279449621718e-35,-4.560946872078992e-22,1.7652161041951983e-34,3.487282794804893e-21,6.200397183420137e-05,8.0,6.0,4.0,8.0,0.029142897576093674,-0.004677166230976582,-0.0059105283580720425,-0.008054315112531185,-0.004677166230976582,0.00021701389050576836,0.00037202381645329297,0.0005208333604969084,0.00028935185400769114,0.00034877232974395156,0.0006696428754366934,0.00037202381645329297,0.0006510416860692203,0.0005208333604969084,0.00021701389050576836,-0.004677166230976582,0.002421402605250478,0.00037202381645329297,0.0005208333604969084,0.00028935185400769114,-0.00021701389050576836,-0.00010629251482896507,-0.00014880952949170023,-8.26719551696442e-05,-8.425943506694157e-35,-0.0,3.2610768469290563e-20,0.0,2.3510826919211128e-20,1.8455806642451668e-20,-0.0059105283580720425,0.00037202381645329297,0.0042824591509997845,0.0006696428754366934,0.00037202381645329297,1.3552527156068805e-20,-0.00014880952949170023,-5.2028591010902804e-20,4.638407206955433e-21,-0.0005231584655120969,-0.0002678571327123791,-0.00014880952949170023,1.0842021724855044e-18,2.7746380365747044e-19,3.4386549468561746e-19,-0.008054315112531185,0.0005208333604969084,0.0006696428754366934,0.00992683507502079,0.0005208333604969084,1.5793495144794204e-20,-5.2028591010902804e-20,-0.00034722223062999547,2.9977613068741676e-21,8.239936407492257e-19,-0.00044642857392318547,2.964615315390051e-20,-0.001953125,-0.00034722223062999547,6.235218956530246e-20,-0.004677166230976582,0.00028935185400769114,0.00037202381645329297,0.0005208333604969084,0.002421402605250478,-0.0,-2.7972362877922264e-20,-2.0513064602595002e-20,-8.26719551696442e-05,5.975860869861248e-19,-0.0,-0.00010629251482896507,-1.2384472160966059e-33,-0.00014880952949170023,-0.00021701389050576836,0.00021701389050576836,-0.00021701389050576836,1.3552527156068805e-20,1.5793495144794204e-20,-0.0,3.100198591710068e-05,-0.0,-0.0,-3.3881317890172014e-21,-0.0,0.0,3.54866224404081e-38,0.0,3.969567797484758e-37,2.2374455543896316e-22,0.00037202381645329297,-0.00010629251482896507,-0.00014880952949170023,-5.2028591010902804e-20,-2.7972362877922264e-20,-0.0,4.251700738677755e-05,1.486531287139161e-20,7.99210356400728e-21,0.0,-0.0,-3.152564067887395e-36,-0.0,-2.2728499675131786e-36,-1.5180430832522394e-36,0.0005208333604969084,-0.00014880952949170023,-5.2028591010902804e-20,-0.00034722223062999547,-2.0513064602595002e-20,-0.0,1.486531287139161e-20,9.920635056914762e-05,5.8608755430418886e-21,0.0,-0.0,-2.3118802327465283e-36,-0.0,-1.6667566787162383e-36,-1.5395442481564325e-36,0.00028935185400769114,-8.26719551696442e-05,4.638407206955433e-21,2.9977613068741676e-21,-8.26719551696442e-05,-3.3881317890172014e-21,7.99210356400728e-21,5.8608755430418886e-21,2.362055965932086e-05,2.407412430484045e-35,-0.0,-9.317362419797304e-21,-0.0,-6.7173790620750675e-21,-5.757106381431965e-21,0.00034877232974395156,-8.425943506694157e-35,-0.0005231584655120969,8.239936407492257e-19,5.975860869861248e-19,-0.0,0.0,0.0,2.407412430484045e-35,0.00010463169746799394,-0.0,-6.473603361780078e-20,-2.168404344971009e-19,-4.9563528162009426e-20,-5.162867503412756e-20,0.0006696428754366934,-0.0,-0.0002678571327123791,-0.00044642857392318547,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,3.2610768469290563e-20,-0.00014880952949170023,2.964615315390051e-20,-0.00010629251482896507,3.54866224404081e-38,-3.152564067887395e-36,-2.3118802327465283e-36,-9.317362419797304e-21,-6.473603361780078e-20,-0.0,4.251700738677755e-05,1.3416001973768713e-34,-8.470329472543003e-21,-2.449203760910948e-20,0.0006510416860692203,0.0,1.0842021724855044e-18,-0.001953125,-1.2384472160966059e-33,0.0,-0.0,-0.0,-0.0,-2.168404344971009e-19,-0.0,1.3416001973768713e-34,0.0006510416860692203,1.0271626905772319e-34,1.0699611312348511e-34,0.0005208333604969084,2.3510826919211128e-20,2.7746380365747044e-19,-0.00034722223062999547,-0.00014880952949170023,3.969567797484758e-37,-2.2728499675131786e-36,-1.6667566787162383e-36,-6.7173790620750675e-21,-4.9563528162009426e-20,-0.0,-8.470329472543003e-21,1.0271626905772319e-34,9.920635056914762e-05,-1.7814912919959264e-20,0.00021701389050576836,1.8455806642451668e-20,3.4386549468561746e-19,6.235218956530246e-20,-0.00021701389050576836,2.2374455543896316e-22,-1.5180430832522394e-36,-1.5395442481564325e-36,-5.757106381431965e-21,-5.162867503412756e-20,-0.0,-2.449203760910948e-20,1.0699611312348511e-34,-1.7814912919959264e-20,3.100198591710068e-05,8.0,6.0,5.0,3.0,0.05373677238821983,-0.009391534142196178,-0.01185515895485878,-0.013657407835125923,-0.01974206417798996,0.00046296295477077365,0.0007936508045531809,0.0009259259095415473,0.0013888889225199819,0.0007440476329065859,0.0011904762359336019,0.0017857142956927419,0.0009920635493472219,0.0020833334419876337,0.0020833334419876337,-0.009391534142196178,0.004998110234737396,0.0007936508045531809,0.0009259259095415473,0.0013888889225199819,-0.00046296295477077365,-0.00022675737272948027,-0.00026455026818439364,-0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.01185515895485878,0.0007936508045531809,0.008834325708448887,0.0011904762359336019,0.0017857142956927419,-1.3552527156068805e-20,-0.0003174603043589741,3.580462267428291e-20,5.370693401142436e-20,-0.0011160714784637094,-0.0004761904710903764,-0.0007142857066355646,-2.8322016904986345e-18,-1.9825412040285595e-18,-9.912705813347644e-18,-0.013657407835125923,0.0009259259095415473,0.0011904762359336019,0.012781084515154362,0.0020833334419876337,-1.1822280995490246e-20,3.580462267428291e-20,-0.00046296295477077365,-6.057312919251706e-36,-3.1456320051235524e-18,-0.0005952381179668009,-4.087050961777072e-33,-0.0019841270986944437,-0.0010416667209938169,-2.7938823530661776e-32,-0.01974206417798996,0.0013888889225199819,0.0017857142956927419,0.0020833334419876337,0.04057539626955986,-0.0,5.370693401142436e-20,-6.057312919251706e-36,-0.0013888889225199819,-5.4831424661879115e-18,-4.749417783894445e-33,-0.0017857142956927419,-1.3914310467636093e-32,-0.0020833334419876337,-0.012500000186264515,0.00046296295477077365,-0.00046296295477077365,-1.3552527156068805e-20,-1.1822280995490246e-20,-0.0,6.613756704609841e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007936508045531809,-0.00022675737272948027,-0.0003174603043589741,3.580462267428291e-20,5.370693401142436e-20,-0.0,9.070294618140906e-05,-1.0229892077253178e-20,-1.534483851977655e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009259259095415473,-0.00026455026818439364,3.580462267428291e-20,-0.00046296295477077365,-6.057312919251706e-36,-0.0,-1.0229892077253178e-20,0.00013227513409219682,1.730660910943146e-36,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013888889225199819,-0.00039682540227659047,5.370693401142436e-20,-6.057312919251706e-36,-0.0013888889225199819,-0.0,-1.534483851977655e-20,1.730660910943146e-36,0.00039682540227659047,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,-0.0011160714784637094,-3.1456320051235524e-18,-5.4831424661879115e-18,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,1.933449637335974e-19,2.9001743267569904e-19,5.664403070804539e-19,3.965082252960754e-19,1.9825412040285595e-18,0.0011904762359336019,-0.0,-0.0004761904710903764,-0.0005952381179668009,-4.749417783894445e-33,-0.0,-0.0,-0.0,-0.0,1.933449637335974e-19,0.0002380952355451882,2.512088824892327e-34,4.906423421545993e-34,3.4344964869176914e-34,1.7172482893765938e-33,0.0017857142956927419,-0.0,-0.0007142857066355646,-4.087050961777072e-33,-0.0017857142956927419,-0.0,-0.0,-0.0,-0.0,2.9001743267569904e-19,2.512088824892327e-34,0.0007142857066355646,7.35963513231899e-34,5.151744500787797e-34,2.5758723422293945e-33,0.0009920635493472219,-0.0,-2.8322016904986345e-18,-0.0019841270986944437,-1.3914310467636093e-32,-0.0,-0.0,-0.0,-0.0,5.664403070804539e-19,4.906423421545993e-34,7.35963513231899e-34,0.0004960317746736109,1.0062001135943425e-33,5.031000843478201e-33,0.0020833334419876337,-0.0,-1.9825412040285595e-18,-0.0010416667209938169,-0.0020833334419876337,-0.0,-0.0,-0.0,-0.0,3.965082252960754e-19,3.4344964869176914e-34,5.151744500787797e-34,1.0062001135943425e-33,0.0010416667209938169,3.521700627168939e-33,0.0020833334419876337,-0.0,-9.912705813347644e-18,-2.7938823530661776e-32,-0.012500000186264515,-0.0,-0.0,-0.0,-0.0,1.9825412040285595e-18,1.7172482893765938e-33,2.5758723422293945e-33,5.031000843478201e-33,3.521700627168939e-33,0.0062500000931322575,8.0,6.0,5.0,4.0,0.04315972328186035,-0.0072519839741289616,-0.009159225970506668,-0.010555555112659931,-0.012470237910747528,0.00034722223062999547,0.0005952381179668009,0.0006944444612599909,0.0008333333535119891,0.0005580357392318547,0.0008928571478463709,0.0010714285308495164,0.0007440476329065859,0.0012499999720603228,0.0010416667209938169,-0.0072519839741289616,0.00380810652859509,0.0005952381179668009,0.0006944444612599909,0.0008333333535119891,-0.00034722223062999547,-0.0001700680295471102,-0.00019841270113829523,-0.0002380952355451882,2.1744703169468577e-34,-0.0,-9.063045094233022e-20,-0.0,-1.0573552502232717e-19,-3.965082252960754e-19,-0.009159225970506668,0.0005952381179668009,0.006732887122780085,0.0008928571478463709,0.0010714285308495164,1.3552527156068805e-20,-0.0002380952355451882,-6.586699631031391e-20,-1.6054066085036358e-19,-0.0008370535797439516,-0.0003571428533177823,-0.00042857142398133874,1.0620756080875938e-18,5.947623508688102e-19,1.734723475976807e-18,-0.010555555112659931,0.0006944444612599909,0.0008928571478463709,0.009742063470184803,0.0012499999720603228,1.420775275202597e-20,-6.586699631031391e-20,-0.00034722223062999547,-9.875298974138589e-20,1.2999805070760872e-18,-0.00044642857392318547,-1.3888191166831815e-33,-0.0014880952658131719,-0.0006249999860301614,-2.8585576114380383e-33,-0.012470237910747528,0.0008333333535119891,0.0010714285308495164,0.0012499999720603228,0.015605159103870392,1.3552527156068805e-20,-6.99102163703819e-20,6.982534473147711e-21,-0.0005555555690079927,1.713765200796551e-18,-1.1133287912565316e-33,-0.0007142857066355646,-2.174470408782354e-33,-0.0008333333535119891,-0.0031250000465661287,0.00034722223062999547,-0.00034722223062999547,1.3552527156068805e-20,1.420775275202597e-20,1.3552527156068805e-20,4.960317528457381e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-6.776263578034403e-21,0.0,-0.0,-3.364707292604017e-36,-0.0,-2.6290472124610016e-36,-1.4401214898467196e-35,0.0005952381179668009,-0.0001700680295471102,-0.0002380952355451882,-6.586699631031391e-20,-6.99102163703819e-20,-3.3881317890172014e-21,6.80272132740356e-05,1.8819140879754184e-20,1.9974347072798504e-20,-0.0,0.0,7.603193457910633e-36,0.0,8.870392008829999e-36,3.32639703918449e-35,0.0006944444612599909,-0.00019841270113829523,-6.586699631031391e-20,-0.00034722223062999547,6.982534473147711e-21,-3.3881317890172014e-21,1.8819140879754184e-20,9.920635056914762e-05,-1.995009993719626e-21,0.0,-0.0,-7.593963273081941e-37,-0.0,-8.85962411753927e-37,-3.3223589319733494e-36,0.0008333333535119891,-0.0002380952355451882,-1.6054066085036358e-19,-9.875298974138589e-20,-0.0005555555690079927,-6.776263578034403e-21,1.9974347072798504e-20,-1.995009993719626e-21,0.00015873015217948705,-1.449646954494152e-34,0.0,6.042030278233632e-20,0.0,7.04903478607686e-20,2.64338825480515e-19,0.0005580357392318547,2.1744703169468577e-34,-0.0008370535797439516,1.2999805070760872e-18,1.713765200796551e-18,0.0,-0.0,0.0,-1.449646954494152e-34,0.00016741071885917336,-1.0875654371573568e-19,-1.7401046994517708e-19,-2.1241512161751876e-19,-1.189524624189438e-19,-3.4694470036524025e-19,0.0008928571478463709,-0.0,-0.0003571428533177823,-0.00044642857392318547,-1.1133287912565316e-33,-0.0,0.0,-0.0,0.0,-1.0875654371573568e-19,0.00017857142665889114,1.1304399712015472e-34,1.3799316447069957e-34,7.727617210359176e-35,2.253888276491846e-34,0.0010714285308495164,-9.063045094233022e-20,-0.00042857142398133874,-1.3888191166831815e-33,-0.0007142857066355646,-3.364707292604017e-36,7.603193457910633e-36,-7.593963273081941e-37,6.042030278233632e-20,-1.7401046994517708e-19,1.1304399712015472e-34,0.0002857142826542258,2.207890631531193e-34,1.5047387242562203e-34,4.6124212641458e-34,0.0007440476329065859,-0.0,1.0620756080875938e-18,-0.0014880952658131719,-2.174470408782354e-33,-0.0,0.0,-0.0,0.0,-2.1241512161751876e-19,1.3799316447069957e-34,2.207890631531193e-34,0.00037202381645329297,1.5093001933503877e-34,4.402125783961174e-34,0.0012499999720603228,-1.0573552502232717e-19,5.947623508688102e-19,-0.0006249999860301614,-0.0008333333535119891,-2.6290472124610016e-36,8.870392008829999e-36,-8.85962411753927e-37,7.04903478607686e-20,-1.189524624189438e-19,7.727617210359176e-35,1.5047387242562203e-34,1.5093001933503877e-34,0.00041666667675599456,3.6390905899120894e-34,0.0010416667209938169,-3.965082252960754e-19,1.734723475976807e-18,-2.8585576114380383e-33,-0.0031250000465661287,-1.4401214898467196e-35,3.32639703918449e-35,-3.3223589319733494e-36,2.64338825480515e-19,-3.4694470036524025e-19,2.253888276491846e-34,4.6124212641458e-34,4.402125783961174e-34,3.6390905899120894e-34,0.0010416667209938169,8.0,6.0,5.0,5.0,0.03613095358014107,-0.0059126983396708965,-0.007470238022506237,-0.008611110970377922,-0.008611110970377922,0.00027777778450399637,0.0004761904710903764,0.0005555555690079927,0.0005555555690079927,0.00044642857392318547,0.0007142857066355646,0.0007142857066355646,0.0005952381179668009,0.0008333333535119891,0.0005952381179668009,-0.0059126983396708965,0.003078231355175376,0.0004761904710903764,0.0005555555690079927,0.0005555555690079927,-0.00027777778450399637,-0.0001360544265480712,-0.00015873015217948705,-0.00015873015217948705,-1.289326007196098e-18,-1.4958973045810827e-18,-1.4958973045810827e-18,-1.8236621422336618e-18,-1.7485971560056996e-18,-1.8236621422336618e-18,-0.007470238022506237,0.0004761904710903764,0.005443452391773462,0.0007142857066355646,0.0007142857066355646,-8.809142651444724e-19,-0.00019047618843615055,-1.4625902568311756e-18,-1.4625902568311756e-18,-0.0006696428754366934,-0.0002857142826542258,-0.0002857142826542258,-1.850371804212999e-18,-1.0044875006368051e-18,-1.850371804212999e-18,-0.008611110970377922,0.0005555555690079927,0.0007142857066355646,0.007876983843743801,0.0008333333535119891,-1.1345779887778667e-18,-7.324663127653863e-19,-0.00027777778450399637,-1.8694565153058225e-18,-2.5203196511852627e-18,-0.0003571428533177823,-4.2294210008930866e-19,-0.0011904762359336019,-0.00041666667675599456,-7.049035173817772e-19,-0.008611110970377922,0.0005555555690079927,0.0007142857066355646,0.0008333333535119891,0.007876983843743801,-1.1248597539537109e-18,-7.324663127653863e-19,-1.8694565153058225e-18,-0.00027777778450399637,-2.5203196511852627e-18,-4.2294210008930866e-19,-0.0003571428533177823,-7.049035173817772e-19,-0.00041666667675599456,-0.0011904762359336019,0.00027777778450399637,-0.00027777778450399637,-8.809142651444724e-19,-1.1345779887778667e-18,-1.1248597539537109e-18,3.968253804487176e-05,1.0164395367051604e-20,4.0657581468206416e-20,4.0657581468206416e-20,6.608470637012875e-20,1.0573552502232717e-19,1.0573552502232717e-19,8.811293967272215e-20,1.2335811683428072e-19,8.811293967272215e-20,0.0004761904710903764,-0.0001360544265480712,-0.00019047618843615055,-7.324663127653863e-19,-7.324663127653863e-19,1.0164395367051604e-20,5.442176916403696e-05,5.3909602955022657e-20,5.3909602955022657e-20,8.901205268682461e-20,7.595695188458428e-20,7.595695188458428e-20,4.315735682225861e-20,6.042030278233632e-20,4.315735682225861e-20,0.0005555555690079927,-0.00015873015217948705,-1.4625902568311756e-18,-0.00027777778450399637,-1.8694565153058225e-18,4.0657581468206416e-20,5.3909602955022657e-20,7.936507608974352e-05,1.0271028641532493e-19,1.4161007677011348e-19,1.3187737920993506e-19,1.2084060556467265e-19,3.2291293222146684e-19,1.6588729783596493e-19,2.0140100496622206e-19,0.0005555555690079927,-0.00015873015217948705,-1.4625902568311756e-18,-1.8694565153058225e-18,-0.00027777778450399637,4.0657581468206416e-20,5.3909602955022657e-20,1.0271028641532493e-19,7.936507608974352e-05,1.4161007677011348e-19,1.2084060556467265e-19,1.3187737920993506e-19,2.0140100496622206e-19,1.6588729783596493e-19,3.2291293222146684e-19,0.00044642857392318547,-1.289326007196098e-18,-0.0006696428754366934,-2.5203196511852627e-18,-2.5203196511852627e-18,6.608470637012875e-20,8.901205268682461e-20,1.4161007677011348e-19,1.4161007677011348e-19,0.00013392856635618955,1.3920837078626284e-19,1.3920837078626284e-19,3.398641894181512e-19,1.5860328753349075e-19,3.398641894181512e-19,0.0007142857066355646,-1.4958973045810827e-18,-0.0002857142826542258,-0.0003571428533177823,-4.2294210008930866e-19,1.0573552502232717e-19,7.595695188458428e-20,1.3187737920993506e-19,1.2084060556467265e-19,1.3920837078626284e-19,0.0001428571413271129,9.570357970551695e-34,1.5106647081111772e-33,1.1329350268377896e-33,1.4937668849826106e-33,0.0007142857066355646,-1.4958973045810827e-18,-0.0002857142826542258,-4.2294210008930866e-19,-0.0003571428533177823,1.0573552502232717e-19,7.595695188458428e-20,1.2084060556467265e-19,1.3187737920993506e-19,1.3920837078626284e-19,9.570357970551695e-34,0.0001428571413271129,1.4937668849826106e-33,1.1329350268377896e-33,1.5106647081111772e-33,0.0005952381179668009,-1.8236621422336618e-18,-1.850371804212999e-18,-0.0011904762359336019,-7.049035173817772e-19,8.811293967272215e-20,4.315735682225861e-20,3.2291293222146684e-19,2.0140100496622206e-19,3.398641894181512e-19,1.5106647081111772e-33,1.4937668849826106e-33,0.00029761905898340046,1.8425749052864582e-33,2.747185031827396e-33,0.0008333333535119891,-1.7485971560056996e-18,-1.0044875006368051e-18,-0.00041666667675599456,-0.00041666667675599456,1.2335811683428072e-19,6.042030278233632e-20,1.6588729783596493e-19,1.6588729783596493e-19,1.5860328753349075e-19,1.1329350268377896e-33,1.1329350268377896e-33,1.8425749052864582e-33,0.00020833333837799728,1.8425749052864582e-33,0.0005952381179668009,-1.8236621422336618e-18,-1.850371804212999e-18,-7.049035173817772e-19,-0.0011904762359336019,8.811293967272215e-20,4.315735682225861e-20,2.0140100496622206e-19,3.2291293222146684e-19,3.398641894181512e-19,1.4937668849826106e-33,1.5106647081111772e-33,2.747185031827396e-33,1.8425749052864582e-33,0.00029761905898340046,8.0,6.0,5.0,6.0,0.031098827719688416,-0.004993386100977659,-0.006310232449322939,-0.007275132462382317,-0.006310232449322939,0.00023148147738538682,0.00039682540227659047,0.00046296295477077365,0.00039682540227659047,0.00037202381645329297,0.0005952381179668009,0.0005102040595375001,0.0004960317746736109,0.0005952381179668009,0.00037202381645329297,-0.004993386100977659,0.0025840892922133207,0.00039682540227659047,0.00046296295477077365,0.00039682540227659047,-0.00023148147738538682,-0.00011337868636474013,-0.00013227513409219682,-0.00011337868636474013,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.006310232449322939,0.00039682540227659047,0.004570223856717348,0.0005952381179668009,0.0005102040595375001,-6.776263578034403e-21,-0.00015873015217948705,1.7902311337141454e-20,1.5549436474412714e-20,-0.0005580357392318547,-0.0002380952355451882,-0.0002040816325461492,-1.4161008452493172e-18,-5.664403070804539e-19,-9.735692470983746e-19,-0.007275132462382317,0.00046296295477077365,0.0005952381179668009,0.006613756529986858,0.0005952381179668009,-5.911140497745123e-21,1.7902311337141454e-20,-0.00023148147738538682,-1.7537363730148757e-36,-1.6577820305292684e-18,-0.00029761905898340046,-9.846490777109467e-34,-0.0009920635493472219,-0.00029761905898340046,-2.8922265247104734e-33,-0.006310232449322939,0.00039682540227659047,0.0005102040595375001,0.0005952381179668009,0.004570223856717348,-6.776263578034403e-21,1.5549436474412714e-20,-1.7537363730148757e-36,-0.00015873015217948705,-1.3658696821665752e-18,-1.1830964013587499e-33,-0.0002040816325461492,-3.466102683110922e-33,-0.0002380952355451882,-0.0005580357392318547,0.00023148147738538682,-0.00023148147738538682,-6.776263578034403e-21,-5.911140497745123e-21,-6.776263578034403e-21,3.3068783523049206e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00039682540227659047,-0.00011337868636474013,-0.00015873015217948705,1.7902311337141454e-20,1.5549436474412714e-20,-0.0,4.535147309070453e-05,-5.114946038626589e-21,-4.44269619324603e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-0.00013227513409219682,1.7902311337141454e-20,-0.00023148147738538682,-1.7537363730148757e-36,-0.0,-5.114946038626589e-21,6.613756704609841e-05,5.0106751592929984e-37,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00039682540227659047,-0.00011337868636474013,1.5549436474412714e-20,-1.7537363730148757e-36,-0.00015873015217948705,-0.0,-4.44269619324603e-21,5.0106751592929984e-37,4.535147309070453e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0005580357392318547,-1.6577820305292684e-18,-1.3658696821665752e-18,-0.0,-0.0,-0.0,-0.0,0.00011160714348079637,9.66724818667987e-20,6.628969852802558e-20,2.8322015354022696e-19,1.1328805883115137e-19,1.9471385717449317e-19,0.0005952381179668009,-0.0,-0.0002380952355451882,-0.00029761905898340046,-1.1830964013587499e-33,-0.0,-0.0,-0.0,-0.0,9.66724818667987e-20,0.0001190476177725941,5.741917396035584e-35,2.4532117107729966e-34,9.812846613503246e-35,1.6865831085536203e-34,0.0005102040595375001,-0.0,-0.0002040816325461492,-9.846490777109467e-34,-0.0002040816325461492,-0.0,-0.0,-0.0,-0.0,6.628969852802558e-20,5.741917396035584e-35,8.163265010807663e-05,1.6822023257981437e-34,6.728809188398205e-35,1.1565141348594645e-34,0.0004960317746736109,-0.0,-1.4161008452493172e-18,-0.0009920635493472219,-3.466102683110922e-33,-0.0,-0.0,-0.0,-0.0,2.8322015354022696e-19,2.4532117107729966e-34,1.6822023257981437e-34,0.00024801588733680546,2.8748576314043644e-34,4.941161575500196e-34,0.0005952381179668009,-0.0,-5.664403070804539e-19,-0.00029761905898340046,-0.0002380952355451882,-0.0,-0.0,-0.0,-0.0,1.1328805883115137e-19,9.812846613503246e-35,6.728809188398205e-35,2.8748576314043644e-34,0.0001190476177725941,1.976464492446834e-34,0.00037202381645329297,-0.0,-9.735692470983746e-19,-2.8922265247104734e-33,-0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,1.9471385717449317e-19,1.6865831085536203e-34,1.1565141348594645e-34,4.941161575500196e-34,1.976464492446834e-34,0.00011160714348079637,8.0,6.0,5.0,7.0,0.027310090139508247,-0.004322562366724014,-0.005463435314595699,-0.0062996032647788525,-0.004825680050998926,0.00019841270113829523,0.0003401360590942204,0.00039682540227659047,0.00029761905898340046,0.0003188775444868952,0.0005102040595375001,0.00038265305920504034,0.00042517005931586027,0.00044642857392318547,0.00024801588733680546,-0.004322562366724014,0.0022270812187343836,0.0003401360590942204,0.00039682540227659047,0.00029761905898340046,-0.00019841270113829523,-9.718172805150971e-05,-0.00011337868636474013,-8.50340147735551e-05,7.679253225776384e-19,-4.920165409235852e-19,1.9420833349794963e-19,-1.1740257152026377e-18,-3.6778311190485855e-19,5.597287703853518e-19,-0.005463435314595699,0.0003401360590942204,0.003939200658351183,0.0005102040595375001,0.00038265305920504034,1.009663273127126e-18,-0.0001360544265480712,-9.856847547352857e-19,-2.983372669755457e-19,-0.00047831633128225803,-0.0002040816325461492,-0.0001530612207716331,-3.1457668355633986e-18,-1.2578116666287464e-18,-5.1418383750431557e-20,-0.0062996032647788525,0.00039682540227659047,0.0005102040595375001,0.005700821988284588,0.00044642857392318547,-4.159816078792222e-19,-7.325620072225011e-19,-0.00019841270113829523,-4.2709178087915164e-19,-2.9863904314252034e-18,-0.00025510202976875007,-5.183541784224268e-19,-0.0008503401186317205,-0.00022321428696159273,2.9083652242788553e-19,-0.004825680050998926,0.00029761905898340046,0.00038265305920504034,0.00044642857392318547,0.0028982425574213266,6.544325753189714e-19,9.85031488846522e-20,-1.3868523074761133e-19,-9.920635056914762e-05,-6.948840337182872e-19,-6.759520925448447e-19,-0.00012755101488437504,4.643911383073635e-19,-0.00014880952949170023,-0.00029761905898340046,0.00019841270113829523,-0.00019841270113829523,1.009663273127126e-18,-4.159816078792222e-19,6.544325753189714e-19,2.8344671591185033e-05,-6.268043809681823e-20,1.1858461261560205e-20,-3.7269449679189215e-20,-1.2980923380809642e-19,-2.4507486827660393e-34,-4.720335892337116e-20,6.293781405194439e-20,1.1014117459090269e-20,-7.338768366555482e-20,0.0003401360590942204,-9.718172805150971e-05,-0.0001360544265480712,-7.325620072225011e-19,9.85031488846522e-20,-6.268043809681823e-20,3.887269122060388e-05,3.3367490095760265e-20,-4.4319707141609005e-21,-7.081616654923499e-20,3.860012802201988e-20,-3.4179232157661815e-21,7.398404211311434e-20,3.9920557080073133e-20,-3.236801680890039e-20,0.00039682540227659047,-0.00011337868636474013,-9.856847547352857e-19,-0.00019841270113829523,-1.3868523074761133e-19,1.1858461261560205e-20,3.3367490095760265e-20,5.668934318237007e-05,1.9004726604998698e-20,1.0115005575898799e-19,1.1953540503094347e-19,2.6973348417808416e-20,1.9557818336642866e-19,4.327723984994198e-20,-1.2587562810388879e-20,0.00029761905898340046,-8.50340147735551e-05,-2.983372669755457e-19,-4.2709178087915164e-19,-9.920635056914762e-05,-3.7269449679189215e-20,-4.4319707141609005e-21,1.9004726604998698e-20,2.8344671591185033e-05,2.950210094269411e-20,3.7762688431166636e-20,1.9481757786848908e-20,4.046002424229976e-20,2.2188580325632247e-20,1.3026055776747213e-20,0.0003188775444868952,7.679253225776384e-19,-0.00047831633128225803,-2.9863904314252034e-18,-6.948840337182872e-19,-1.2980923380809642e-19,-7.081616654923499e-20,1.0115005575898799e-19,2.950210094269411e-20,9.566326480126008e-05,1.60499133798674e-19,5.468171789570409e-20,3.9448522586110626e-19,1.4692045998043028e-19,1.6521176592532187e-20,0.0005102040595375001,-4.920165409235852e-19,-0.0002040816325461492,-0.00025510202976875007,-6.759520925448447e-19,-2.4507486827660393e-34,3.860012802201988e-20,1.1953540503094347e-19,3.7762688431166636e-20,1.60499133798674e-19,0.0001020408162730746,6.797283659116053e-20,3.8841622755619884e-19,1.1328805883115137e-19,2.2657612735582555e-20,0.00038265305920504034,1.9420833349794963e-19,-0.0001530612207716331,-5.183541784224268e-19,-0.00012755101488437504,-4.720335892337116e-20,-3.4179232157661815e-21,2.6973348417808416e-20,1.9481757786848908e-20,5.468171789570409e-20,6.797283659116053e-20,5.10204081365373e-05,2.4276014222262428e-20,2.964615315390051e-20,-3.257819086155499e-22,0.00042517005931586027,-1.1740257152026377e-18,-3.1457668355633986e-18,-0.0008503401186317205,4.643911383073635e-19,6.293781405194439e-20,7.398404211311434e-20,1.9557818336642866e-19,4.046002424229976e-20,3.9448522586110626e-19,3.8841622755619884e-19,2.4276014222262428e-20,0.00021258502965793014,-2.6523791910757184e-20,-7.867226918051762e-20,0.00044642857392318547,-3.6778311190485855e-19,-1.2578116666287464e-18,-0.00022321428696159273,-0.00014880952949170023,1.1014117459090269e-20,3.9920557080073133e-20,4.327723984994198e-20,2.2188580325632247e-20,1.4692045998043028e-19,1.1328805883115137e-19,2.964615315390051e-20,-2.6523791910757184e-20,7.440476474585012e-05,3.754990429652304e-21,0.00024801588733680546,5.597287703853518e-19,-5.1418383750431557e-20,2.9083652242788553e-19,-0.00029761905898340046,-7.338768366555482e-20,-3.236801680890039e-20,-1.2587562810388879e-20,1.3026055776747213e-20,1.6521176592532187e-20,2.2657612735582555e-20,-3.257819086155499e-22,-7.867226918051762e-20,3.754990429652304e-21,4.960317528457381e-05,8.0,6.0,5.0,8.0,0.024351025000214577,-0.003811177331954241,-0.004817708395421505,-0.0055555556900799274,-0.003811177331954241,0.00017361111531499773,0.00029761905898340046,0.00034722223062999547,0.00023148147738538682,0.00027901786961592734,0.00044642857392318547,0.00029761905898340046,0.00037202381645329297,0.00034722223062999547,0.00017361111531499773,-0.003811177331954241,0.0019569634459912777,0.00029761905898340046,0.00034722223062999547,0.00023148147738538682,-0.00017361111531499773,-8.50340147735551e-05,-9.920635056914762e-05,-6.613756704609841e-05,-4.2129717533470784e-35,0.0,2.371692252312041e-20,0.0,1.7088861049589947e-35,1.927399489701745e-20,-0.004817708395421505,0.00029761905898340046,0.0034616815391927958,0.00044642857392318547,0.00029761905898340046,1.3552527156068805e-20,-0.0001190476177725941,-3.2933498155156955e-20,3.871172955005492e-21,-0.0004185267898719758,-0.00017857142665889114,-0.0001190476177725941,5.310378040437969e-19,1.652117626941476e-19,2.726312077237825e-19,-0.0055555556900799274,0.00034722223062999547,0.00044642857392318547,0.005009920801967382,0.00034722223062999547,3.201400006649582e-21,-3.2933498155156955e-20,-0.00017361111531499773,1.939592931646408e-21,6.76424154180671e-19,-0.00022321428696159273,-2.7825893604707287e-34,-0.0007440476329065859,-0.00017361111531499773,-2.8950455989360352e-34,-0.003811177331954241,0.00023148147738538682,0.00029761905898340046,0.00034722223062999547,0.0019569634459912777,6.776263578034403e-21,-1.9845749568114918e-20,1.939592931646408e-21,-6.613756704609841e-05,4.587829571518305e-19,-2.980433324908774e-34,-8.50340147735551e-05,-5.821158687044838e-34,-9.920635056914762e-05,-0.00017361111531499773,0.00017361111531499773,-0.00017361111531499773,1.3552527156068805e-20,3.201400006649582e-21,6.776263578034403e-21,2.4801587642286904e-05,-3.3881317890172014e-21,-1.6940658945086007e-21,-0.0,-0.0,0.0,5.252020009076522e-37,0.0,0.0,-4.474891108779263e-22,0.00029761905898340046,-8.50340147735551e-05,-0.0001190476177725941,-3.2933498155156955e-20,-1.9845749568114918e-20,-3.3881317890172014e-21,3.40136066370178e-05,9.409570439877092e-21,5.670214046919467e-21,0.0,-0.0,-2.0333379712794414e-36,-0.0,-0.0,-1.209405773658948e-36,0.00034722223062999547,-9.920635056914762e-05,-3.2933498155156955e-20,-0.00017361111531499773,1.939592931646408e-21,-1.6940658945086007e-21,9.409570439877092e-21,4.960317528457381e-05,-5.541694090418308e-22,-0.0,0.0,1.9872508566628536e-37,0.0,0.0,1.6948209426871677e-37,0.00023148147738538682,-6.613756704609841e-05,3.871172955005492e-21,1.939592931646408e-21,-6.613756704609841e-05,-0.0,5.670214046919467e-21,-5.541694090418308e-22,1.889644772745669e-05,1.2037062152420224e-35,-0.0,-6.776263578034403e-21,-0.0,-4.8825317284542706e-36,-4.538817973157673e-21,0.00027901786961592734,-4.2129717533470784e-35,-0.0004185267898719758,6.76424154180671e-19,4.587829571518305e-19,-0.0,0.0,-0.0,1.2037062152420224e-35,8.370535942958668e-05,-5.437827185786784e-20,-4.143106319560312e-20,-1.0620756080875938e-19,-3.3042353185064373e-20,-4.13029406735369e-20,0.00044642857392318547,0.0,-0.00017857142665889114,-0.00022321428696159273,-2.980433324908774e-34,0.0,-0.0,0.0,-0.0,-5.437827185786784e-20,8.928571332944557e-05,2.691523617962097e-35,6.899658223534978e-35,2.1465603043235571e-35,2.683200452150928e-35,0.00029761905898340046,2.371692252312041e-20,-0.0001190476177725941,-2.7825893604707287e-34,-8.50340147735551e-05,5.252020009076522e-37,-2.0333379712794414e-36,1.9872508566628536e-37,-6.776263578034403e-21,-4.143106319560312e-20,2.691523617962097e-35,3.40136066370178e-05,5.256882483358643e-35,0.0,-1.8890433508798598e-20,0.00037202381645329297,0.0,5.310378040437969e-19,-0.0007440476329065859,-5.821158687044838e-34,0.0,-0.0,0.0,-0.0,-1.0620756080875938e-19,6.899658223534978e-35,5.256882483358643e-35,0.00018601190822664648,4.19250047330976e-35,5.240625878623126e-35,0.00034722223062999547,1.7088861049589947e-35,1.652117626941476e-19,-0.00017361111531499773,-9.920635056914762e-05,0.0,-0.0,0.0,-4.8825317284542706e-36,-3.3042353185064373e-20,2.1465603043235571e-35,0.0,4.19250047330976e-35,4.960317528457381e-05,3.4875229194190554e-36,0.00017361111531499773,1.927399489701745e-20,2.726312077237825e-19,-2.8950455989360352e-34,-0.00017361111531499773,-4.474891108779263e-22,-1.209405773658948e-36,1.6948209426871677e-37,-4.538817973157673e-21,-4.13029406735369e-20,2.683200452150928e-35,-1.8890433508798598e-20,5.240625878623126e-35,3.4875229194190554e-36,2.4801587642286904e-05,8.0,6.0,6.0,3.0,0.046347472816705704,-0.007936508394777775,-0.010021022520959377,-0.010021022520959377,-0.016699735075235367,0.00038580247201025486,0.0006613756413571537,0.0006613756413571537,0.0011574074160307646,0.0006200397037900984,0.0008503401186317205,0.0014880952658131719,0.0006200397037900984,0.0014880952658131719,0.0017361111240461469,-0.007936508394777775,0.004196586087346077,0.0006613756413571537,0.0006613756413571537,0.0011574074160307646,-0.00038580247201025486,-0.0001889644772745669,-0.0001889644772745669,-0.0003306878206785768,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.010021022520959377,0.0006613756413571537,0.007418627385050058,0.0008503401186317205,0.0014880952658131719,-0.0,-0.00026455026818439364,1.59131649149759e-20,3.2323617243286754e-20,-0.0009300595265813172,-0.0003401360590942204,-0.0005952381179668009,8.113077403811711e-19,7.080504226246586e-19,4.130293951031416e-18,-0.010021022520959377,0.0006613756413571537,0.0008503401186317205,0.007418627385050058,0.0014880952658131719,-9.523504067939901e-21,1.59131649149759e-20,-0.00026455026818439364,3.2323617243286754e-20,1.1830903739453e-18,-0.0003401360590942204,-1.2809696222116482e-33,-0.0009300595265813172,-0.0005952381179668009,4.130293951031416e-18,-0.016699735075235367,0.0011574074160307646,0.0014880952658131719,0.0014880952658131719,0.034060847014188766,2.710505431213761e-20,3.2323617243286754e-20,3.2323617243286754e-20,-0.0011574074160307646,2.509645298970572e-18,-1.2421817983833667e-33,-0.0014880952658131719,2.1556200618088487e-18,-0.0014880952658131719,-0.010416666977107525,0.00038580247201025486,-0.00038580247201025486,-0.0,-9.523504067939901e-21,2.710505431213761e-20,5.5114636779762805e-05,3.3881317890172014e-21,3.3881317890172014e-21,-6.776263578034403e-21,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0006613756413571537,-0.0001889644772745669,-0.00026455026818439364,1.59131649149759e-20,3.2323617243286754e-20,3.3881317890172014e-21,7.558579090982676e-05,-4.546618835633674e-21,-9.235319673963968e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006613756413571537,-0.0001889644772745669,1.59131649149759e-20,-0.00026455026818439364,3.2323617243286754e-20,3.3881317890172014e-21,-4.546618835633674e-21,7.558579090982676e-05,-9.235319673963968e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011574074160307646,-0.0003306878206785768,3.2323617243286754e-20,3.2323617243286754e-20,-0.0011574074160307646,-6.776263578034403e-21,-9.235319673963968e-21,-9.235319673963968e-21,0.0003306878206785768,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006200397037900984,-0.0,-0.0009300595265813172,1.1830903739453e-18,2.509645298970572e-18,-0.0,-0.0,-0.0,-0.0,0.00018601190822664648,-9.206902788748504e-20,-2.0140100496622206e-19,-1.622615454912948e-19,-1.4161007677011348e-19,-8.260588005460409e-19,0.0008503401186317205,-0.0,-0.0003401360590942204,-0.0003401360590942204,-1.2421817983833667e-33,0.0,-0.0,-0.0,-0.0,-9.206902788748504e-20,0.0001360544265480712,9.96860650264941e-35,8.031348190633606e-35,7.009176644478191e-35,4.088686184621661e-34,0.0014880952658131719,-0.0,-0.0005952381179668009,-1.2809696222116482e-33,-0.0014880952658131719,0.0,-0.0,-0.0,-0.0,-2.0140100496622206e-19,9.96860650264941e-35,0.0005952381179668009,1.7568573521292681e-34,1.5332573192331229e-34,8.944001315845809e-34,0.0006200397037900984,-0.0,8.113077403811711e-19,-0.0009300595265813172,2.1556200618088487e-18,-0.0,-0.0,-0.0,-0.0,-1.622615454912948e-19,8.031348190633606e-35,1.7568573521292681e-34,0.00018601190822664648,-2.0140100496622206e-19,-8.260588005460409e-19,0.0014880952658131719,-0.0,7.080504226246586e-19,-0.0005952381179668009,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-1.4161007677011348e-19,7.009176644478191e-35,1.5332573192331229e-34,-2.0140100496622206e-19,0.0005952381179668009,1.5232751911016079e-33,0.0017361111240461469,-0.0,4.130293951031416e-18,4.130293951031416e-18,-0.010416666977107525,-0.0,-0.0,-0.0,-0.0,-8.260588005460409e-19,4.088686184621661e-34,8.944001315845809e-34,-8.260588005460409e-19,1.5232751911016079e-33,0.0052083334885537624,8.0,6.0,6.0,4.0,0.03717875853180885,-0.00612599216401577,-0.007738980930298567,-0.007738980930298567,-0.010540674440562725,0.00028935185400769114,0.0004960317746736109,0.0004960317746736109,0.0006944444612599909,0.0004650297632906586,0.0006377550889737904,0.0008928571478463709,0.0004650297632906586,0.0008928571478463709,0.0008680555620230734,-0.00612599216401577,0.0031970427371561527,0.0004960317746736109,0.0004960317746736109,0.0006944444612599909,-0.00028935185400769114,-0.00014172335795592517,-0.00014172335795592517,-0.00019841270113829523,-1.47510498251122e-19,-1.0789339367123366e-19,-7.552537686233327e-20,-1.47510498251122e-19,-7.552537686233327e-20,6.114063410265943e-34,-0.007738980930298567,0.0004960317746736109,0.005653256084769964,0.0006377550889737904,0.0008928571478463709,1.3552527156068805e-20,-0.00019841270113829523,-3.476564828199936e-20,1.9394170345972053e-20,-0.0006975446594879031,-0.00025510202976875007,-0.0003571428533177823,3.4296190326397985e-19,2.888845571280194e-19,1.4456028621814804e-18,-0.007738980930298567,0.0004960317746736109,0.0006377550889737904,0.005653256084769964,0.0008928571478463709,7.636982163899908e-21,-3.476564828199936e-20,-0.00019841270113829523,1.9394170345972053e-20,7.2935513138520955e-19,-0.00025510202976875007,-1.3594567318232106e-19,-0.0006975446594879031,-0.0003571428533177823,1.4456028621814804e-18,-0.010540674440562725,0.0006944444612599909,0.0008928571478463709,0.0008928571478463709,0.013103505596518517,-1.3552527156068805e-20,-5.613120328518695e-20,-5.613120328518695e-20,-0.00046296295477077365,1.0101519300739917e-18,-2.718913463646421e-19,-0.0005952381179668009,7.977367567576847e-19,-0.0005952381179668009,-0.0026041667442768812,0.00028935185400769114,-0.00028935185400769114,1.3552527156068805e-20,7.636982163899908e-21,-1.3552527156068805e-20,4.13359775848221e-05,3.3881317890172014e-21,3.3881317890172014e-21,3.3881317890172014e-21,2.5878618622933975e-36,-1.4770271444637783e-36,1.1575723488245097e-36,2.477100361813909e-36,9.809756492550492e-37,-0.0,0.0004960317746736109,-0.00014172335795592517,-0.00019841270113829523,-3.476564828199936e-20,-5.613120328518695e-20,3.3881317890172014e-21,5.668934318237007e-05,-5.480299355949687e-21,-5.5411916428196675e-21,5.900420188538822e-20,2.1578678411129306e-20,3.021015139116816e-20,-3.471468998493418e-35,-2.7356778375289334e-35,-1.2228127050120627e-34,0.0004960317746736109,-0.00014172335795592517,-3.476564828199936e-20,-0.00019841270113829523,-5.613120328518695e-20,3.3881317890172014e-21,-5.480299355949687e-21,5.668934318237007e-05,-5.5411916428196675e-21,-6.739908082080749e-35,2.1578678411129306e-20,8.57893986487078e-36,5.900420188538822e-20,3.021015139116816e-20,-1.2228127050120627e-34,0.0006944444612599909,-0.00019841270113829523,1.9394170345972053e-20,1.9394170345972053e-20,-0.00046296295477077365,3.3881317890172014e-21,-5.5411916428196675e-21,-5.5411916428196675e-21,0.00013227513409219682,-5.767461080559522e-36,-4.218485757426552e-36,-2.952940066071827e-36,-5.767461080559522e-36,-2.952940066071827e-36,0.0,0.0004650297632906586,-1.47510498251122e-19,-0.0006975446594879031,7.2935513138520955e-19,1.0101519300739917e-18,2.5878618622933975e-36,5.900420188538822e-20,-6.739908082080749e-35,-5.767461080559522e-36,0.00013950893480796367,2.629901406112835e-21,2.7849982152529897e-20,-1.2169615588729683e-19,-8.49660473545378e-20,-2.8912058794593256e-19,0.0006377550889737904,-1.0789339367123366e-19,-0.00025510202976875007,-0.00025510202976875007,-2.718913463646421e-19,-1.4770271444637783e-36,2.1578678411129306e-20,2.1578678411129306e-20,-4.218485757426552e-36,2.629901406112835e-21,0.0001020408162730746,5.437827185786784e-20,1.0620756080875938e-19,5.437827185786784e-20,-2.255565192651691e-34,0.0008928571478463709,-7.552537686233327e-20,-0.0003571428533177823,-1.3594567318232106e-19,-0.0005952381179668009,1.1575723488245097e-36,3.021015139116816e-20,8.57893986487078e-36,-2.952940066071827e-36,2.7849982152529897e-20,5.437827185786784e-20,0.0002380952355451882,3.2304714196163624e-35,1.2016904261013545e-35,-5.771675540621879e-35,0.0004650297632906586,-1.47510498251122e-19,3.4296190326397985e-19,-0.0006975446594879031,7.977367567576847e-19,2.477100361813909e-36,-3.471468998493418e-35,5.900420188538822e-20,-5.767461080559522e-36,-1.2169615588729683e-19,1.0620756080875938e-19,3.2304714196163624e-35,0.00013950893480796367,2.7849982152529897e-20,-2.8912058794593256e-19,0.0008928571478463709,-7.552537686233327e-20,2.888845571280194e-19,-0.0003571428533177823,-0.0005952381179668009,9.809756492550492e-37,-2.7356778375289334e-35,3.021015139116816e-20,-2.952940066071827e-36,-8.49660473545378e-20,5.437827185786784e-20,1.2016904261013545e-35,2.7849982152529897e-20,0.0002380952355451882,1.1836826332484744e-34,0.0008680555620230734,6.114063410265943e-34,1.4456028621814804e-18,1.4456028621814804e-18,-0.0026041667442768812,-0.0,-1.2228127050120627e-34,-1.2228127050120627e-34,0.0,-2.8912058794593256e-19,-2.255565192651691e-34,-5.771675540621879e-35,-2.8912058794593256e-19,1.1836826332484744e-34,0.0008680555620230734,8.0,6.0,6.0,5.0,0.031098827719688416,-0.004993386100977659,-0.006310232449322939,-0.006310232449322939,-0.007275132462382317,0.00023148147738538682,0.00039682540227659047,0.00039682540227659047,0.00046296295477077365,0.00037202381645329297,0.0005102040595375001,0.0005952381179668009,0.00037202381645329297,0.0005952381179668009,0.0004960317746736109,-0.004993386100977659,0.0025840892922133207,0.00039682540227659047,0.00039682540227659047,0.00046296295477077365,-0.00023148147738538682,-0.00011337868636474013,-0.00011337868636474013,-0.00013227513409219682,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.006310232449322939,0.00039682540227659047,0.004570223856717348,0.0005102040595375001,0.0005952381179668009,-6.776263578034403e-21,-0.00015873015217948705,1.5549436474412714e-20,1.7902311337141454e-20,-0.0005580357392318547,-0.0002040816325461492,-0.0002380952355451882,-9.735692470983746e-19,-5.664403070804539e-19,-1.4161008452493172e-18,-0.006310232449322939,0.00039682540227659047,0.0005102040595375001,0.004570223856717348,0.0005952381179668009,-3.0868966821736837e-21,1.5549436474412714e-20,-0.00015873015217948705,1.7902311337141454e-20,-1.3658696821665752e-18,-0.0002040816325461492,-1.1830964013587499e-33,-0.0005580357392318547,-0.0002380952355451882,-1.4161008452493172e-18,-0.007275132462382317,0.00046296295477077365,0.0005952381179668009,0.0005952381179668009,0.006613756529986858,1.3552527156068805e-20,1.7902311337141454e-20,1.7902311337141454e-20,-0.00023148147738538682,-1.6577820305292684e-18,-9.846490777109467e-34,-0.00029761905898340046,-1.374561799440859e-18,-0.00029761905898340046,-0.0009920635493472219,0.00023148147738538682,-0.00023148147738538682,-6.776263578034403e-21,-3.0868966821736837e-21,1.3552527156068805e-20,3.3068783523049206e-05,-0.0,-0.0,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00039682540227659047,-0.00011337868636474013,-0.00015873015217948705,1.5549436474412714e-20,1.7902311337141454e-20,-0.0,4.535147309070453e-05,-4.44269619324603e-21,-5.114946038626589e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00039682540227659047,-0.00011337868636474013,1.5549436474412714e-20,-0.00015873015217948705,1.7902311337141454e-20,-0.0,-4.44269619324603e-21,4.535147309070453e-05,-5.114946038626589e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-0.00013227513409219682,1.7902311337141454e-20,1.7902311337141454e-20,-0.00023148147738538682,-6.776263578034403e-21,-5.114946038626589e-21,-5.114946038626589e-21,6.613756704609841e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0005580357392318547,-1.3658696821665752e-18,-1.6577820305292684e-18,-0.0,-0.0,-0.0,-0.0,0.00011160714348079637,6.628969852802558e-20,9.66724818667987e-20,1.9471385717449317e-19,1.1328805883115137e-19,2.8322015354022696e-19,0.0005102040595375001,-0.0,-0.0002040816325461492,-0.0002040816325461492,-9.846490777109467e-34,-0.0,-0.0,-0.0,-0.0,6.628969852802558e-20,8.163265010807663e-05,5.741917396035584e-35,1.1565141348594645e-34,6.728809188398205e-35,1.6822023257981437e-34,0.0005952381179668009,-0.0,-0.0002380952355451882,-1.1830964013587499e-33,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,9.66724818667987e-20,5.741917396035584e-35,0.0001190476177725941,1.6865831085536203e-34,9.812846613503246e-35,2.4532117107729966e-34,0.00037202381645329297,-0.0,-9.735692470983746e-19,-0.0005580357392318547,-1.374561799440859e-18,-0.0,-0.0,-0.0,-0.0,1.9471385717449317e-19,1.1565141348594645e-34,1.6865831085536203e-34,0.00011160714348079637,9.66724818667987e-20,2.8322015354022696e-19,0.0005952381179668009,-0.0,-5.664403070804539e-19,-0.0002380952355451882,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,1.1328805883115137e-19,6.728809188398205e-35,9.812846613503246e-35,9.66724818667987e-20,0.0001190476177725941,5.328069112588621e-34,0.0004960317746736109,-0.0,-1.4161008452493172e-18,-1.4161008452493172e-18,-0.0009920635493472219,-0.0,-0.0,-0.0,-0.0,2.8322015354022696e-19,1.6822023257981437e-34,2.4532117107729966e-34,2.8322015354022696e-19,5.328069112588621e-34,0.00024801588733680546,8.0,6.0,6.0,6.0,0.026752252131700516,-0.004216270055621862,-0.0053293886594474316,-0.0053293886594474316,-0.0053293886594474316,0.00019290123600512743,0.0003306878206785768,0.0003306878206785768,0.0003306878206785768,0.0003100198518950492,0.00042517005931586027,0.00042517005931586027,0.0003100198518950492,0.00042517005931586027,0.0003100198518950492,-0.004216270055621862,0.0021691545844078064,0.0003306878206785768,0.0003306878206785768,0.0003306878206785768,-0.00019290123600512743,-9.448223863728344e-05,-9.448223863728344e-05,-9.448223863728344e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0053293886594474316,0.0003306878206785768,0.0038368646055459976,0.00042517005931586027,0.00042517005931586027,-0.0,-0.00013227513409219682,7.95658245748795e-21,7.95658245748795e-21,-0.0004650297632906586,-0.0001700680295471102,-0.0001700680295471102,4.0565387019058553e-19,2.0230011151797598e-19,4.0565387019058553e-19,-0.0053293886594474316,0.0003306878206785768,0.00042517005931586027,0.0038368646055459976,0.00042517005931586027,-5.254346974474515e-21,7.95658245748795e-21,-0.00013227513409219682,7.95658245748795e-21,6.218902043465813e-19,-0.0001700680295471102,-3.0781270073666834e-34,-0.0004650297632906586,-0.0001700680295471102,4.0565387019058553e-19,-0.0053293886594474316,0.0003306878206785768,0.00042517005931586027,0.00042517005931586027,0.0038368646055459976,-0.0,7.95658245748795e-21,7.95658245748795e-21,-0.00013227513409219682,6.218902043465813e-19,-3.0781270073666834e-34,-0.0001700680295471102,5.20740180899336e-19,-0.0001700680295471102,-0.0004650297632906586,0.00019290123600512743,-0.00019290123600512743,-0.0,-5.254346974474515e-21,-0.0,2.7557318389881402e-05,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,-0.0,0.0,0.0,-0.0,-0.0,-0.0,0.0003306878206785768,-9.448223863728344e-05,-0.00013227513409219682,7.95658245748795e-21,7.95658245748795e-21,1.6940658945086007e-21,3.779289545491338e-05,-2.273309417816837e-21,-2.273309417816837e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003306878206785768,-9.448223863728344e-05,7.95658245748795e-21,-0.00013227513409219682,7.95658245748795e-21,1.6940658945086007e-21,-2.273309417816837e-21,3.779289545491338e-05,-2.273309417816837e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003306878206785768,-9.448223863728344e-05,7.95658245748795e-21,7.95658245748795e-21,-0.00013227513409219682,-0.0,-2.273309417816837e-21,-2.273309417816837e-21,3.779289545491338e-05,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003100198518950492,-0.0,-0.0004650297632906586,6.218902043465813e-19,6.218902043465813e-19,-0.0,-0.0,-0.0,-0.0,9.300595411332324e-05,-4.603451394374252e-20,-4.603451394374252e-20,-8.11307727456474e-20,-4.046002424229976e-20,-8.11307727456474e-20,0.00042517005931586027,-0.0,-0.0001700680295471102,-0.0001700680295471102,-3.0781270073666834e-34,0.0,-0.0,-0.0,-0.0,-4.603451394374252e-20,6.80272132740356e-05,2.2785386742747965e-35,4.015674095316803e-35,2.0026217959273669e-35,4.015674095316803e-35,0.00042517005931586027,-0.0,-0.0001700680295471102,-3.0781270073666834e-34,-0.0001700680295471102,0.0,-0.0,-0.0,-0.0,-4.603451394374252e-20,2.2785386742747965e-35,6.80272132740356e-05,4.015674095316803e-35,2.0026217959273669e-35,4.015674095316803e-35,0.0003100198518950492,-0.0,4.0565387019058553e-19,-0.0004650297632906586,5.20740180899336e-19,-0.0,-0.0,-0.0,-0.0,-8.11307727456474e-20,4.015674095316803e-35,4.015674095316803e-35,9.300595411332324e-05,-4.603451394374252e-20,-8.11307727456474e-20,0.00042517005931586027,-0.0,2.0230011151797598e-19,-0.0001700680295471102,-0.0001700680295471102,-0.0,-0.0,-0.0,-0.0,-4.046002424229976e-20,2.0026217959273669e-35,2.0026217959273669e-35,-4.603451394374252e-20,6.80272132740356e-05,7.545075220674086e-35,0.0003100198518950492,-0.0,4.0565387019058553e-19,4.0565387019058553e-19,-0.0004650297632906586,-0.0,-0.0,-0.0,-0.0,-8.11307727456474e-20,4.015674095316803e-35,4.015674095316803e-35,-8.11307727456474e-20,7.545075220674086e-35,9.300595411332324e-05,8.0,6.0,6.0,7.0,0.02348305471241474,-0.003649376332759857,-0.004613601602613926,-0.004613601602613926,-0.004074546508491039,0.0001653439103392884,0.00028344671591185033,0.00028344671591185033,0.00024801588733680546,0.0002657313016243279,0.00036443150020204484,0.0003188775444868952,0.0002657313016243279,0.0003188775444868952,0.00020667989156208932,-0.003649376332759857,0.0018693985184654593,0.00028344671591185033,0.00028344671591185033,0.00024801588733680546,-0.0001653439103392884,-8.09847770142369e-05,-8.09847770142369e-05,-7.086167897796258e-05,8.429171420954808e-20,6.165337058171147e-20,3.713774378486002e-20,8.429171420954808e-20,3.7745398417659717e-20,4.573769181315523e-20,-0.004613601602613926,0.00028344671591185033,0.003306962549686432,0.00036443150020204484,0.0003188775444868952,-0.0,-0.00011337868636474013,3.83425226535207e-20,2.0516071210251176e-20,-0.00039859695243649185,-0.00014577258843928576,-0.00012755101488437504,3.4770332838452794e-19,1.6951277876199656e-19,2.9086929945965795e-19,-0.004613601602613926,0.00028344671591185033,0.00036443150020204484,0.003306962549686432,0.0003188775444868952,-7.012545821695293e-22,3.83425226535207e-20,-0.00011337868636474013,2.1123725843050873e-20,6.078447292442192e-19,-0.00014577258843928576,1.7787691892340307e-20,-0.00039859695243649185,-0.00012755101488437504,2.938650891443836e-19,-0.004074546508491039,0.00024801588733680546,0.0003188775444868952,0.0003188775444868952,0.0024329177103936672,-0.0,3.732502587659512e-20,3.732502587659512e-20,-8.26719551696442e-05,5.059911369872092e-19,-4.577529744913014e-34,-0.00010629251482896507,4.3012856770298694e-19,-0.00010629251482896507,-0.00024801588733680546,0.0001653439103392884,-0.0001653439103392884,-0.0,-7.012545821695293e-22,-0.0,2.362055965932086e-05,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,-1.1116098488777574e-36,-6.006993434857349e-37,6.458565340206213e-37,-9.123023387281478e-37,-3.892342575427449e-37,2.7920816661647656e-22,0.00028344671591185033,-8.09847770142369e-05,-0.00011337868636474013,3.83425226535207e-20,3.732502587659512e-20,1.6940658945086007e-21,3.2393909350503236e-05,-2.1473826806139674e-21,-2.9576218425842135e-21,-3.3716686330054087e-20,-1.233067395478358e-20,-1.0789339205564653e-20,3.164674443464342e-35,1.550364406758841e-35,2.633107345841924e-35,0.00028344671591185033,-8.09847770142369e-05,3.83425226535207e-20,-0.00011337868636474013,3.732502587659512e-20,1.6940658945086007e-21,-2.1473826806139674e-21,3.2393909350503236e-05,-2.9576218425842135e-21,5.365169734681488e-35,-1.233067395478358e-20,2.6440960369290787e-36,-3.3716686330054087e-20,-1.0789339205564653e-20,2.783570622747177e-35,0.00024801588733680546,-7.086167897796258e-05,2.0516071210251176e-20,2.1123725843050873e-20,-8.26719551696442e-05,-0.0,-2.9576218425842135e-21,-2.9576218425842135e-21,2.362055965932086e-05,2.7083389842945504e-35,2.251625026562273e-36,-3.3881317890172014e-21,2.4359910629165607e-35,-3.590683198651506e-21,-1.5950565757125514e-20,0.0002657313016243279,8.429171420954808e-20,-0.00039859695243649185,6.078447292442192e-19,5.059911369872092e-19,-1.1116098488777574e-36,-3.3716686330054087e-20,5.365169734681488e-35,2.7083389842945504e-35,7.97193861217238e-05,-6.764255241985606e-20,-4.932269581913432e-20,-6.95406669693753e-20,-3.034501737393125e-20,-5.11369743211016e-20,0.00036443150020204484,6.165337058171147e-20,-0.00014577258843928576,-0.00014577258843928576,-4.577529744913014e-34,-6.006993434857349e-37,-1.233067395478358e-20,-1.233067395478358e-20,2.251625026562273e-36,-6.764255241985606e-20,5.8309036830905825e-05,4.5957647732217e-35,7.184001008654904e-35,2.985493345952709e-35,4.339013962922443e-35,0.0003188775444868952,3.713774378486002e-20,-0.00012755101488437504,1.7787691892340307e-20,-0.00010629251482896507,6.458565340206213e-37,-1.0789339205564653e-20,2.6440960369290787e-36,-3.3881317890172014e-21,-4.932269581913432e-20,4.5957647732217e-35,4.251700738677755e-05,5.64237288394698e-35,-5.929230630780102e-21,-1.1728148811133992e-20,0.0002657313016243279,8.429171420954808e-20,3.4770332838452794e-19,-0.00039859695243649185,4.3012856770298694e-19,-9.123023387281478e-37,3.164674443464342e-35,-3.3716686330054087e-20,2.4359910629165607e-35,-6.95406669693753e-20,7.184001008654904e-35,5.64237288394698e-35,7.97193861217238e-05,-4.932269581913432e-20,-5.11369743211016e-20,0.0003188775444868952,3.7745398417659717e-20,1.6951277876199656e-19,-0.00012755101488437504,-0.00010629251482896507,-3.892342575427449e-37,1.550364406758841e-35,-1.0789339205564653e-20,-3.590683198651506e-21,-3.034501737393125e-20,2.985493345952709e-35,-5.929230630780102e-21,-4.932269581913432e-20,4.251700738677755e-05,-1.2726740795212327e-20,0.00020667989156208932,4.573769181315523e-20,2.9086929945965795e-19,2.938650891443836e-19,-0.00024801588733680546,2.7920816661647656e-22,2.633107345841924e-35,2.783570622747177e-35,-1.5950565757125514e-20,-5.11369743211016e-20,4.339013962922443e-35,-1.1728148811133992e-20,-5.11369743211016e-20,-1.2726740795212327e-20,4.13359775848221e-05,8.0,6.0,6.0,8.0,0.020931752398610115,-0.0032173169311136007,-0.004067903384566307,-0.004067903384566307,-0.0032173169311136007,0.00014467592700384557,0.00024801588733680546,0.00024801588733680546,0.00019290123600512743,0.0002325148816453293,0.0003188775444868952,0.00024801588733680546,0.0002325148816453293,0.00024801588733680546,0.00014467592700384557,-0.0032173169311136007,0.0016426130896434188,0.00024801588733680546,0.00024801588733680546,0.00019290123600512743,-0.00014467592700384557,-7.086167897796258e-05,-7.086167897796258e-05,-5.5114636779762805e-05,-7.3755249125561e-20,-5.394669683561683e-20,-2.5426194323733208e-20,-7.3755249125561e-20,-2.6115823847706617e-20,1.3630458232646384e-20,-0.004067903384566307,0.00024801588733680546,0.0029059930238872766,0.0003188775444868952,0.00024801588733680546,6.776263578034403e-21,-9.920635056914762e-05,-1.738282414099968e-20,8.811458676380515e-22,-0.00034877232974395156,-0.00012755101488437504,-9.920635056914762e-05,1.7148095163198992e-19,7.283417058878614e-20,1.5043431029785847e-19,-0.004067903384566307,0.00024801588733680546,0.0003188775444868952,0.0029059930238872766,0.00024801588733680546,-1.1251827275932345e-21,-1.738282414099968e-20,-9.920635056914762e-05,1.9151610385092737e-22,3.835589196017109e-19,-0.00012755101488437504,-4.5174226719641763e-20,-0.00034877232974395156,-9.920635056914762e-05,1.591295424241364e-19,-0.0032173169311136007,0.00019290123600512743,0.00024801588733680546,0.00024801588733680546,0.0016426130896434188,-0.0,-1.565120230797661e-20,-1.565120230797661e-20,-5.5114636779762805e-05,2.686095848325204e-19,-7.552537686233327e-20,-7.086167897796258e-05,2.0960539587182926e-19,-7.086167897796258e-05,-0.00014467592700384557,0.00014467592700384557,-0.00014467592700384557,6.776263578034403e-21,-1.1251827275932345e-21,-0.0,2.066798879241105e-05,1.6940658945086007e-21,1.6940658945086007e-21,1.6940658945086007e-21,7.673662851915617e-37,1.0938635584970182e-37,-3.992245066584865e-37,1.4539706055265109e-36,2.361093745130514e-37,-2.0765670284272862e-22,0.00024801588733680546,-7.086167897796258e-05,-9.920635056914762e-05,-1.738282414099968e-20,-1.565120230797661e-20,1.6940658945086007e-21,2.8344671591185033e-05,-2.7401496779748436e-21,-1.5223053542139807e-21,2.950210094269411e-20,1.0789339205564653e-20,8.391708540259252e-21,-1.735734499246709e-35,-7.11405034171025e-36,-1.316553672920962e-35,0.00024801588733680546,-7.086167897796258e-05,-1.738282414099968e-20,-9.920635056914762e-05,-1.565120230797661e-20,1.6940658945086007e-21,-2.7401496779748436e-21,2.8344671591185033e-05,-1.5223053542139807e-21,-3.5296683092539174e-35,1.0789339205564653e-20,2.8871420854690676e-36,2.950210094269411e-20,8.391708540259252e-21,-1.316553672920962e-35,0.00019290123600512743,-5.5114636779762805e-05,8.811458676380515e-22,1.9151610385092737e-22,-5.5114636779762805e-05,1.6940658945086007e-21,-1.5223053542139807e-21,-1.5223053542139807e-21,1.5747040379210375e-05,-0.0,-5.580115323150694e-37,1.2705494208814505e-21,3.763912607078736e-36,1.4675865287051918e-21,-3.445200385038041e-21,0.0002325148816453293,-7.3755249125561e-20,-0.00034877232974395156,3.835589196017109e-19,2.686095848325204e-19,7.673662851915617e-37,2.950210094269411e-20,-3.5296683092539174e-35,-0.0,6.975446740398183e-05,1.3149507030564176e-21,1.2531367843110691e-20,-6.084807794364842e-20,-2.360167946168558e-20,-3.441911776647646e-20,0.0003188775444868952,-5.394669683561683e-20,-0.00012755101488437504,-0.00012755101488437504,-7.552537686233327e-20,1.0938635584970182e-37,1.0789339205564653e-20,1.0789339205564653e-20,-5.580115323150694e-37,1.3149507030564176e-21,5.10204081365373e-05,1.510507569558408e-20,5.310378040437969e-20,1.510507569558408e-20,-2.3865144023755174e-35,0.00024801588733680546,-2.5426194323733208e-20,-9.920635056914762e-05,-4.5174226719641763e-20,-7.086167897796258e-05,-3.992245066584865e-37,8.391708540259252e-21,2.8871420854690676e-36,1.2705494208814505e-21,1.2531367843110691e-20,1.510507569558408e-20,2.8344671591185033e-05,-3.197344634236622e-36,2.117582368135751e-21,6.188934243069426e-21,0.0002325148816453293,-7.3755249125561e-20,1.7148095163198992e-19,-0.00034877232974395156,2.0960539587182926e-19,1.4539706055265109e-36,-1.735734499246709e-35,2.950210094269411e-20,3.763912607078736e-36,-6.084807794364842e-20,5.310378040437969e-20,-3.197344634236622e-36,6.975446740398183e-05,1.2531367843110691e-20,-3.441911776647646e-20,0.00024801588733680546,-2.6115823847706617e-20,7.283417058878614e-20,-9.920635056914762e-05,-7.086167897796258e-05,2.361093745130514e-37,-7.11405034171025e-36,8.391708540259252e-21,1.4675865287051918e-21,-2.360167946168558e-20,1.510507569558408e-20,2.117582368135751e-21,1.2531367843110691e-20,2.8344671591185033e-05,3.704583303281287e-21,0.00014467592700384557,1.3630458232646384e-20,1.5043431029785847e-19,1.591295424241364e-19,-0.00014467592700384557,-2.0765670284272862e-22,-1.316553672920962e-35,-1.316553672920962e-35,-3.445200385038041e-21,-3.441911776647646e-20,-2.3865144023755174e-35,6.188934243069426e-21,-3.441911776647646e-20,3.704583303281287e-21,2.066798879241105e-05,8.0,6.0,7.0,3.0,0.04076318070292473,-0.0068735829554498196,-0.0086805559694767,-0.007670776452869177,-0.014473497867584229,0.0003306878206785768,0.0005668934318237007,0.0004960317746736109,0.0009920635493472219,0.0005314626032486558,0.0006377550889737904,0.0012755101779475808,0.00041335978312417865,0.0011160714784637094,0.0014880952658131719,-0.0068735829554498196,0.0036173199769109488,0.0005668934318237007,0.0004960317746736109,0.0009920635493472219,-0.0003306878206785768,-0.0001619695540284738,-0.00014172335795592517,-0.00028344671591185033,1.6858342841909617e-19,6.919328988619424e-20,1.0789339367123366e-19,9.486769009248164e-20,-1.1229911941081725e-34,-7.486608266839471e-34,-0.0086805559694767,0.0005668934318237007,0.006395266391336918,0.0006377550889737904,0.0012755101779475808,-0.0,-0.00022675737272948027,3.594994473697655e-20,2.740149839533557e-20,-0.0007971939048729837,-0.00025510202976875007,-0.0005102040595375001,5.641463801454795e-19,5.310378040437969e-19,3.540251958026928e-18,-0.007670776452869177,0.0004960317746736109,0.0006377550889737904,0.004706396255642176,0.0011160714784637094,2.1596315775870012e-20,7.465005175319024e-20,-0.0001653439103392884,-4.230411355806163e-20,9.664646962147333e-19,-0.00021258502965793014,-9.466601308637435e-34,-0.0004960317746736109,-0.00037202381645329297,-4.291965341064321e-33,-0.014473497867584229,0.0009920635493472219,0.0012755101779475808,0.0011160714784637094,0.02935444936156273,-0.0,1.3529488883539496e-19,-4.230411355806163e-20,-0.0009920635493472219,2.1046436089941964e-18,-1.1462200415475008e-33,-0.0012755101779475808,-0.0,-0.0011160714784637094,-0.008928571827709675,0.0003306878206785768,-0.0003306878206785768,-0.0,2.1596315775870012e-20,-0.0,4.724111931864172e-05,3.3881317890172014e-21,-3.3881317890172014e-21,-6.776263578034403e-21,-6.30345124113889e-37,1.5259247929635176e-37,-1.9397066606926732e-36,-4.474891108779263e-22,0.0,0.0,0.0005668934318237007,-0.0001619695540284738,-0.00022675737272948027,7.465005175319024e-20,1.3529488883539496e-19,3.3881317890172014e-21,6.478781870100647e-05,-5.915243685168427e-21,-7.828998733730882e-21,-6.743337266010817e-20,-2.1578678411129306e-20,-4.315735682225861e-20,5.153367234004908e-35,4.4919648338298753e-35,2.9946432608180403e-34,0.0004960317746736109,-0.00014172335795592517,3.594994473697655e-20,-0.0001653439103392884,-4.230411355806163e-20,-3.3881317890172014e-21,-5.915243685168427e-21,4.724111931864172e-05,1.2086889126421284e-20,4.81482486096809e-35,-5.082197683525802e-21,3.940344020691732e-36,-3.049318610115481e-20,-0.0,-0.0,0.0009920635493472219,-0.00028344671591185033,2.740149839533557e-20,-4.230411355806163e-20,-0.0009920635493472219,-6.776263578034403e-21,-7.828998733730882e-21,1.2086889126421284e-20,0.00028344671591185033,8.148689130440964e-36,1.504632769052528e-36,5.2151609717357354e-36,-6.770847460736376e-36,-0.0,-0.0,0.0005314626032486558,1.6858342841909617e-19,-0.0007971939048729837,9.664646962147333e-19,2.1046436089941964e-18,-6.30345124113889e-37,-6.743337266010817e-20,4.81482486096809e-35,8.148689130440964e-36,0.0001594387722434476,-9.864539163826864e-20,-1.479680842262287e-19,-1.022739486422032e-19,-1.0620756080875938e-19,-7.080504226246586e-19,0.0006377550889737904,6.919328988619424e-20,-0.00025510202976875007,-0.00021258502965793014,-1.1462200415475008e-33,1.5259247929635176e-37,-2.1578678411129306e-20,-5.082197683525802e-21,1.504632769052528e-36,-9.864539163826864e-20,8.50340147735551e-05,1.0592271688551647e-34,-1.7592222005010638e-20,-0.0,4.380735460196054e-34,0.0012755101779475808,1.0789339367123366e-19,-0.0005102040595375001,-9.466601308637435e-34,-0.0012755101779475808,-1.9397066606926732e-36,-4.315735682225861e-20,3.940344020691732e-36,5.2151609717357354e-36,-1.479680842262287e-19,1.0592271688551647e-34,0.0005102040595375001,9.49159284659002e-35,9.856654441058012e-35,6.571102960705341e-34,0.00041335978312417865,9.486769009248164e-20,5.641463801454795e-19,-0.0004960317746736109,-0.0,-4.474891108779263e-22,5.153367234004908e-35,-3.049318610115481e-20,-6.770847460736376e-36,-1.022739486422032e-19,-1.7592222005010638e-20,9.49159284659002e-35,8.26719551696442e-05,5.2406255916372e-36,4.541875531884635e-34,0.0011160714784637094,-1.1229911941081725e-34,5.310378040437969e-19,-0.00037202381645329297,-0.0011160714784637094,0.0,4.4919648338298753e-35,-0.0,-0.0,-1.0620756080875938e-19,-0.0,9.856654441058012e-35,5.2406255916372e-36,0.00037202381645329297,4.716563175966443e-34,0.0014880952658131719,-7.486608266839471e-34,3.540251958026928e-18,-4.291965341064321e-33,-0.008928571827709675,0.0,2.9946432608180403e-34,-0.0,-0.0,-7.080504226246586e-19,4.380735460196054e-34,6.571102960705341e-34,4.541875531884635e-34,4.716563175966443e-34,0.004464285913854837,8.0,6.0,7.0,4.0,0.032669004052877426,-0.005303996615111828,-0.006701743230223656,-0.005920493043959141,-0.009130527265369892,0.00024801588733680546,0.00042517005931586027,0.00037202381645329297,0.0005952381179668009,0.00039859695243649185,0.00047831633128225803,0.0007653061184100807,0.0003100198518950492,0.0006696428754366934,0.0007440476329065859,-0.005303996615111828,0.00275550689548254,0.00042517005931586027,0.00037202381645329297,0.0005952381179668009,-0.00024801588733680546,-0.00012147716188337654,-0.00010629251482896507,-0.0001700680295471102,-1.2643756808314786e-19,-4.0791471636340634e-20,-1.2947206723560157e-19,-8.809142651444724e-20,-6.172622709910149e-20,-2.8322015354022696e-19,-0.006701743230223656,0.00042517005931586027,0.004872980527579784,0.00047831633128225803,0.0007653061184100807,6.776263578034403e-21,-0.0001700680295471102,9.944113292519611e-21,-4.8295137165538856e-20,-0.0005978954141028225,-0.00019132652960252017,-0.0003061224415432662,3.926973525152553e-19,2.2174561552954034e-19,7.292919037671375e-19,-0.005920493043959141,0.00037202381645329297,0.00047831633128225803,0.003585600992664695,0.0006696428754366934,-5.688028318451334e-21,-3.0184460324565e-20,-0.00012400794366840273,-9.200154804407661e-20,4.954004851107514e-19,-0.0001594387722434476,-1.8692530547245286e-19,-0.00037202381645329297,-0.00022321428696159273,-3.7172646283065783e-19,-0.009130527265369892,0.0005952381179668009,0.0007653061184100807,0.0006696428754366934,0.011295351199805737,-2.710505431213761e-20,-4.8295137165538856e-20,-4.043971631202673e-20,-0.00039682540227659047,8.379559842000263e-19,-7.9883849671012e-20,-0.0005102040595375001,1.3552527156068805e-20,-0.00044642857392318547,-0.0022321429569274187,0.00024801588733680546,-0.00024801588733680546,6.776263578034403e-21,-5.688028318451334e-21,-2.710505431213761e-20,3.543083948898129e-05,-3.3881317890172014e-21,-0.0,3.3881317890172014e-21,4.111091767733427e-37,-4.490098833405695e-37,2.12508660935342e-37,8.949782217558526e-22,-2.36345734327626e-37,4.6380774758511246e-36,0.00042517005931586027,-0.00012147716188337654,-0.0001700680295471102,-3.0184460324565e-20,-4.8295137165538856e-20,-3.3881317890172014e-21,4.8590864025754854e-05,-2.9358746261232765e-21,-4.697399563355956e-21,5.0575027879493996e-20,1.6184008404450196e-20,2.5894414093355167e-20,-3.517079097660284e-35,-2.0462033350798808e-35,-6.951239351867667e-35,0.00037202381645329297,-0.00010629251482896507,9.944113292519611e-21,-0.00012400794366840273,-4.043971631202673e-20,-0.0,-2.9358746261232765e-21,3.543083948898129e-05,1.0102147602576288e-20,-3.611118645726067e-35,1.1048255723997183e-22,4.513898307157584e-36,2.710505431213761e-20,1.6940658945086007e-21,1.9569571694346567e-35,0.0005952381179668009,-0.0001700680295471102,-4.8295137165538856e-20,-9.200154804407661e-20,-0.00039682540227659047,3.3881317890172014e-21,-4.697399563355956e-21,1.0102147602576288e-20,0.00011337868636474013,-7.577058654126659e-35,5.284117232448553e-36,4.315735682225861e-20,9.027796614315168e-36,3.7762688431166636e-20,1.8881343569348464e-19,0.00039859695243649185,-1.2643756808314786e-19,-0.0005978954141028225,4.954004851107514e-19,8.379559842000263e-19,4.111091767733427e-37,5.0575027879493996e-20,-3.611118645726067e-35,-7.577058654126659e-35,0.00011957908282056451,2.4167639021733776e-20,3.866822178853919e-20,-7.670545986606527e-20,-6.372453390031621e-20,-2.4781765050356993e-19,0.00047831633128225803,-4.0791471636340634e-20,-0.00019132652960252017,-0.0001594387722434476,-7.9883849671012e-20,-4.490098833405695e-37,1.6184008404450196e-20,1.1048255723997183e-22,5.284117232448553e-36,2.4167639021733776e-20,6.377550744218752e-05,3.3986418295580265e-20,-3.0566841930279328e-21,-1.6940658945086007e-21,2.5800675039231914e-36,0.0007653061184100807,-1.2947206723560157e-19,-0.0003061224415432662,-1.8692530547245286e-19,-0.0005102040595375001,2.12508660935342e-37,2.5894414093355167e-20,4.513898307157584e-36,4.315735682225861e-20,3.866822178853919e-20,3.3986418295580265e-20,0.0002040816325461492,-2.256949153578792e-35,6.797283659116053e-20,3.398641894181512e-19,0.0003100198518950492,-8.809142651444724e-20,3.926973525152553e-19,-0.00037202381645329297,1.3552527156068805e-20,8.949782217558526e-22,-3.517079097660284e-35,2.710505431213761e-20,9.027796614315168e-36,-7.670545986606527e-20,-3.0566841930279328e-21,-2.256949153578792e-35,6.200397183420137e-05,-2.606255319411497e-22,1.6048702947540138e-34,0.0006696428754366934,-6.172622709910149e-20,2.2174561552954034e-19,-0.00022321428696159273,-0.00044642857392318547,-2.36345734327626e-37,-2.0462033350798808e-35,1.6940658945086007e-21,3.7762688431166636e-20,-6.372453390031621e-20,-1.6940658945086007e-21,6.797283659116053e-20,-2.606255319411497e-22,0.00014880952949170023,2.4781765050356993e-19,0.0007440476329065859,-2.8322015354022696e-19,7.292919037671375e-19,-3.7172646283065783e-19,-0.0022321429569274187,4.6380774758511246e-36,-6.951239351867667e-35,1.9569571694346567e-35,1.8881343569348464e-19,-2.4781765050356993e-19,2.5800675039231914e-36,3.398641894181512e-19,1.6048702947540138e-34,2.4781765050356993e-19,0.0007440476329065859,8.0,6.0,7.0,5.0,0.027310090139508247,-0.004322562366724014,-0.005463435314595699,-0.004825680050998926,-0.0062996032647788525,0.00019841270113829523,0.0003401360590942204,0.00029761905898340046,0.00039682540227659047,0.0003188775444868952,0.00038265305920504034,0.0005102040595375001,0.00024801588733680546,0.00044642857392318547,0.00042517005931586027,-0.004322562366724014,0.0022270812187343836,0.0003401360590942204,0.00029761905898340046,0.00039682540227659047,-0.00019841270113829523,-9.718172805150971e-05,-8.50340147735551e-05,-0.00011337868636474013,7.679253225776384e-19,1.2343371338744982e-19,-6.053046126794337e-19,3.7947076036992655e-19,-5.383904574124159e-19,-1.551652586589607e-18,-0.005463435314595699,0.0003401360590942204,0.003939200658351183,0.00038265305920504034,0.0005102040595375001,1.009663273127126e-18,-0.0001360544265480712,-3.6911190001074256e-19,-1.0989728264911341e-18,-0.00047831633128225803,-0.0001530612207716331,-0.0002040816325461492,-2.696063374706468e-19,-1.4829080874221625e-18,-3.6312869067511454e-18,-0.004825680050998926,0.00029761905898340046,0.00038265305920504034,0.0028982425574213266,0.00044642857392318547,6.544491189312224e-19,9.85031488846522e-20,-9.920635056914762e-05,-1.0466993544759987e-18,-6.948840337182872e-19,-0.00012755101488437504,-1.7318123172085033e-18,-0.00029761905898340046,-0.00014880952949170023,-3.2514989226163048e-18,-0.0062996032647788525,0.00039682540227659047,0.0005102040595375001,0.00044642857392318547,0.005700821988284588,-4.137382423591901e-19,-7.325620072225011e-19,-1.3263704637486728e-18,-0.00019841270113829523,-2.9863904314252034e-18,-1.54036663770951e-18,-0.00025510202976875007,-2.15485181781494e-18,-0.00022321428696159273,-0.0008503401186317205,0.00019841270113829523,-0.00019841270113829523,1.009663273127126e-18,6.544491189312224e-19,-4.137382423591901e-19,2.8344671591185033e-05,-6.268043809681823e-20,-3.7269449679189215e-20,1.3552527156068805e-20,-1.2980923380809642e-19,-4.720335892337116e-20,-4.698647448198461e-34,-7.315932365535337e-20,1.1014117459090269e-20,6.293781405194439e-20,0.0003401360590942204,-9.718172805150971e-05,-0.0001360544265480712,9.85031488846522e-20,-7.325620072225011e-19,-6.268043809681823e-20,3.887269122060388e-05,-4.4319707141609005e-21,3.3367490095760265e-20,-7.081616654923499e-20,-3.4179232157661815e-21,3.860012802201988e-20,-3.236801680890039e-20,3.9920557080073133e-20,7.398404211311434e-20,0.00029761905898340046,-8.50340147735551e-05,-3.6911190001074256e-19,-9.920635056914762e-05,-1.3263704637486728e-18,-3.7269449679189215e-20,-4.4319707141609005e-21,2.8344671591185033e-05,6.580172012775611e-20,2.950210094269411e-20,1.7898173818491555e-20,7.552537686233327e-20,1.3793768242488787e-20,5.336307567702092e-20,1.663356555773628e-19,0.00039682540227659047,-0.00011337868636474013,-1.0989728264911341e-18,-1.0466993544759987e-18,-0.00019841270113829523,1.3552527156068805e-20,3.3367490095760265e-20,6.580172012775611e-20,5.668934318237007e-05,1.0115005575898799e-19,6.473603361780078e-20,1.1953540503094347e-19,7.552537686233327e-20,8.181915503635344e-20,1.9557818336642866e-19,0.0003188775444868952,7.679253225776384e-19,-0.00047831633128225803,-6.948840337182872e-19,-2.9863904314252034e-18,-1.2980923380809642e-19,-7.081616654923499e-20,2.950210094269411e-20,1.0115005575898799e-19,9.566326480126008e-05,5.468171789570409e-20,1.60499133798674e-19,1.6521176592532187e-20,1.4692045998043028e-19,3.9448522586110626e-19,0.00038265305920504034,1.2343371338744982e-19,-0.0001530612207716331,-0.00012755101488437504,-1.54036663770951e-18,-4.720335892337116e-20,-3.4179232157661815e-21,1.7898173818491555e-20,6.473603361780078e-20,5.468171789570409e-20,5.10204081365373e-05,9.758495255532419e-20,-3.121840418241039e-21,6.691560283308973e-20,1.8611610311352579e-19,0.0005102040595375001,-6.053046126794337e-19,-0.0002040816325461492,-1.7318123172085033e-18,-0.00025510202976875007,-4.698647448198461e-34,3.860012802201988e-20,7.552537686233327e-20,1.1953540503094347e-19,1.60499133798674e-19,9.758495255532419e-20,0.0001020408162730746,1.3594567318232106e-19,1.699320947090756e-19,3.8841622755619884e-19,0.00024801588733680546,3.7947076036992655e-19,-2.696063374706468e-19,-0.00029761905898340046,-2.15485181781494e-18,-7.315932365535337e-20,-3.236801680890039e-20,1.3793768242488787e-20,7.552537686233327e-20,1.6521176592532187e-20,-3.121840418241039e-21,1.3594567318232106e-19,4.960317528457381e-05,9.799519536505928e-20,2.8322015354022696e-19,0.00044642857392318547,-5.383904574124159e-19,-1.4829080874221625e-18,-0.00014880952949170023,-0.00022321428696159273,1.1014117459090269e-20,3.9920557080073133e-20,5.336307567702092e-20,8.181915503635344e-20,1.4692045998043028e-19,6.691560283308973e-20,1.699320947090756e-19,9.799519536505928e-20,7.440476474585012e-05,2.2875475629940256e-19,0.00042517005931586027,-1.551652586589607e-18,-3.6312869067511454e-18,-3.2514989226163048e-18,-0.0008503401186317205,6.293781405194439e-20,7.398404211311434e-20,1.663356555773628e-19,1.9557818336642866e-19,3.9448522586110626e-19,1.8611610311352579e-19,3.8841622755619884e-19,2.8322015354022696e-19,2.2875475629940256e-19,0.00021258502965793014,8.0,6.0,7.0,6.0,0.02348305471241474,-0.003649376332759857,-0.004613601602613926,-0.004074546508491039,-0.004613601602613926,0.0001653439103392884,0.00028344671591185033,0.00024801588733680546,0.00028344671591185033,0.0002657313016243279,0.0003188775444868952,0.00036443150020204484,0.00020667989156208932,0.0003188775444868952,0.0002657313016243279,-0.003649376332759857,0.0018693985184654593,0.00028344671591185033,0.00024801588733680546,0.00028344671591185033,-0.0001653439103392884,-8.09847770142369e-05,-7.086167897796258e-05,-8.09847770142369e-05,8.429171420954808e-20,3.3491819219236107e-20,6.165337058171147e-20,4.743384504624082e-20,2.9514447259571317e-20,8.429171420954808e-20,-0.004613601602613926,0.00028344671591185033,0.003306962549686432,0.0003188775444868952,0.00036443150020204484,-0.0,-0.00011337868636474013,1.6870148260214397e-20,3.83425226535207e-20,-0.00039859695243649185,-0.00012755101488437504,-0.00014577258843928576,2.7875872905702807e-19,1.6188948223670786e-19,3.4770332838452794e-19,-0.004074546508491039,0.00024801588733680546,0.0003188775444868952,0.0024329177103936672,0.0003188775444868952,9.513559321337225e-21,3.732502587659512e-20,-8.26719551696442e-05,1.5952073099921436e-20,5.059911369872092e-19,-0.00010629251482896507,-4.496174056399092e-34,-0.00024801588733680546,-0.00010629251482896507,-4.579886702921909e-34,-0.004613601602613926,0.00028344671591185033,0.00036443150020204484,0.0003188775444868952,0.003306962549686432,-6.776263578034403e-21,3.83425226535207e-20,-8.480176476124079e-21,-0.00011337868636474013,6.078447292442192e-19,1.0164395367051604e-20,-0.00014577258843928576,1.3552527156068805e-20,-0.00012755101488437504,-0.00039859695243649185,0.0001653439103392884,-0.0001653439103392884,-0.0,9.513559321337225e-21,-6.776263578034403e-21,2.362055965932086e-05,1.6940658945086007e-21,-1.6940658945086007e-21,-0.0,-1.4238920590910224e-36,-4.248085396098873e-37,-1.2131787417481734e-36,4.474891108779263e-22,2.763142193295859e-37,-8.274555776376407e-37,0.00028344671591185033,-8.09847770142369e-05,-0.00011337868636474013,3.732502587659512e-20,3.83425226535207e-20,1.6940658945086007e-21,3.2393909350503236e-05,-2.9576218425842135e-21,-2.1473826806139674e-21,-3.3716686330054087e-20,-1.0789339205564653e-20,-1.233067395478358e-20,2.670723165068237e-35,1.4515257365539892e-35,3.164674443464342e-35,0.00024801588733680546,-7.086167897796258e-05,1.6870148260214397e-20,-8.26719551696442e-05,-8.480176476124079e-21,-1.6940658945086007e-21,-2.9576218425842135e-21,2.362055965932086e-05,3.148935833960336e-21,2.407412430484045e-35,-2.172823735108158e-21,-7.282326713938711e-38,-1.6940658945086007e-20,-8.470329472543003e-22,-3.277519892241803e-36,0.00028344671591185033,-8.09847770142369e-05,3.83425226535207e-20,1.5952073099921436e-20,-0.00011337868636474013,-0.0,-2.1473826806139674e-21,3.148935833960336e-21,3.2393909350503236e-05,5.365169734681488e-35,1.1910047742149009e-36,-1.233067395478358e-20,-3.76158192263132e-37,-1.0789339205564653e-20,-3.3716686330054087e-20,0.0002657313016243279,8.429171420954808e-20,-0.00039859695243649185,5.059911369872092e-19,6.078447292442192e-19,-1.4238920590910224e-36,-3.3716686330054087e-20,2.407412430484045e-35,5.365169734681488e-35,7.97193861217238e-05,-4.932269581913432e-20,-6.764255241985606e-20,-5.11369743211016e-20,-3.034501737393125e-20,-6.95406669693753e-20,0.0003188775444868952,3.3491819219236107e-20,-0.00012755101488437504,-0.00010629251482896507,1.0164395367051604e-20,-4.248085396098873e-37,-1.0789339205564653e-20,-2.172823735108158e-21,1.1910047742149009e-36,-4.932269581913432e-20,4.251700738677755e-05,4.5957647732217e-35,-7.691286086437874e-21,-3.3881317890172014e-21,4.302507918270014e-35,0.00036443150020204484,6.165337058171147e-20,-0.00014577258843928576,-4.496174056399092e-34,-0.00014577258843928576,-1.2131787417481734e-36,-1.233067395478358e-20,-7.282326713938711e-38,-1.233067395478358e-20,-6.764255241985606e-20,4.5957647732217e-35,5.8309036830905825e-05,4.339013962922443e-35,2.985493345952709e-35,7.184001008654904e-35,0.00020667989156208932,4.743384504624082e-20,2.7875872905702807e-19,-0.00024801588733680546,1.3552527156068805e-20,4.474891108779263e-22,2.670723165068237e-35,-1.6940658945086007e-20,-3.76158192263132e-37,-5.11369743211016e-20,-7.691286086437874e-21,4.339013962922443e-35,4.13359775848221e-05,-5.017041458312696e-21,4.4607706116724096e-35,0.0003188775444868952,2.9514447259571317e-20,1.6188948223670786e-19,-0.00010629251482896507,-0.00012755101488437504,2.763142193295859e-37,1.4515257365539892e-35,-8.470329472543003e-22,-1.0789339205564653e-20,-3.034501737393125e-20,-3.3881317890172014e-21,2.985493345952709e-35,-5.017041458312696e-21,4.251700738677755e-05,3.7700419807289495e-35,0.0002657313016243279,8.429171420954808e-20,3.4770332838452794e-19,-4.579886702921909e-34,-0.00039859695243649185,-8.274555776376407e-37,3.164674443464342e-35,-3.277519892241803e-36,-3.3716686330054087e-20,-6.95406669693753e-20,4.302507918270014e-35,7.184001008654904e-35,4.4607706116724096e-35,3.7700419807289495e-35,7.97193861217238e-05,8.0,6.0,7.0,7.0,0.02060682885348797,-0.0031584061216562986,-0.003993561491370201,-0.0035266338381916285,-0.0035266338381916285,0.00014172335795592517,0.00024295432376675308,0.00021258502965793014,0.00021258502965793014,0.0002277696767123416,0.000273323617875576,0.000273323617875576,0.00017715420108288527,0.00023915816564112902,0.00017715420108288527,-0.0031584061216562986,0.0016110185533761978,0.00024295432376675308,0.00021258502965793014,0.00021258502965793014,-0.00014172335795592517,-6.941552419448271e-05,-6.073858094168827e-05,-6.073858094168827e-05,-6.319457630020618e-35,5.159057221936827e-21,4.764988458895921e-21,2.710505431213761e-20,6.7414836221127456e-21,2.8937175358411605e-20,-0.003993561491370201,0.00024295432376675308,0.002850157907232642,0.000273323617875576,0.000273323617875576,1.3552527156068805e-20,-9.718172805150971e-05,-1.6377389337615742e-20,-1.664621657434694e-20,-0.00034165452234447,-0.00010932944860542193,-0.00010932944860542193,2.3679340088976946e-19,1.1910671867848786e-19,2.309047279583986e-19,-0.0035266338381916285,0.00021258502965793014,0.000273323617875576,0.002096746349707246,0.00023915816564112902,-6.602288168753412e-22,-2.1473826806139674e-20,-7.086167897796258e-05,-6.091850784916333e-21,4.2185913972171775e-19,-9.110787505051121e-05,5.082197683525802e-21,-0.00021258502965793014,-7.97193861217238e-05,2.1654326663086694e-20,-0.0035266338381916285,0.00021258502965793014,0.000273323617875576,0.00023915816564112902,0.002096746349707246,-0.0,-2.1473826806139674e-20,-1.4059092886313706e-20,-7.086167897796258e-05,4.2185913972171775e-19,-4.8328071717056824e-21,-9.110787505051121e-05,-6.776263578034403e-21,-7.97193861217238e-05,-0.00021258502965793014,0.00014172335795592517,-0.00014172335795592517,1.3552527156068805e-20,-6.602288168753412e-22,-0.0,2.0246194253559224e-05,-1.6940658945086007e-21,-0.0,-0.0,-0.0,8.598485086168081e-38,1.2775184078546916e-37,2.6902898317454327e-22,-2.362916273913215e-38,3.508213382456745e-23,0.00024295432376675308,-6.941552419448271e-05,-9.718172805150971e-05,-2.1473826806139674e-20,-2.1473826806139674e-20,-1.6940658945086007e-21,2.7766209313995205e-05,6.135378741271235e-21,6.135378741271235e-21,0.0,-5.211312400791763e-37,-4.813252160159764e-37,-1.88079096131566e-36,-6.809766608606699e-37,-2.886001675147637e-36,0.00021258502965793014,-6.073858094168827e-05,-1.6377389337615742e-20,-7.086167897796258e-05,-1.4059092886313706e-20,-0.0,6.135378741271235e-21,2.0246194253559224e-05,3.1326089123336088e-21,9.027796614315168e-36,-1.8045484265050235e-21,1.0573634720471702e-22,-1.0164395367051604e-20,4.235164736271502e-22,2.400110440094632e-22,0.00021258502965793014,-6.073858094168827e-05,-1.664621657434694e-20,-6.091850784916333e-21,-7.086167897796258e-05,-0.0,6.135378741271235e-21,3.1326089123336088e-21,2.0246194253559224e-05,1.2037062152420224e-35,8.486267744489834e-23,-1.6940658945086007e-21,4.503993386641442e-22,-2.6706776136819348e-21,-9.974277112102954e-21,0.0002277696767123416,-6.319457630020618e-35,-0.00034165452234447,4.2185913972171775e-19,4.2185913972171775e-19,-0.0,0.0,9.027796614315168e-36,1.2037062152420224e-35,6.8330904468894e-05,-3.623708303828329e-20,-3.623708303828329e-20,-4.3831689967248325e-20,-2.2758763030448438e-20,-4.3831689967248325e-20,0.000273323617875576,5.159057221936827e-21,-0.00010932944860542193,-9.110787505051121e-05,-4.8328071717056824e-21,8.598485086168081e-38,-5.211312400791763e-37,-1.8045484265050235e-21,8.486267744489834e-23,-3.623708303828329e-20,3.644314710982144e-05,1.3594673482501642e-22,-6.195521799607873e-21,8.470329472543003e-22,2.54588032334695e-22,0.000273323617875576,4.764988458895921e-21,-0.00010932944860542193,5.082197683525802e-21,-9.110787505051121e-05,1.2775184078546916e-37,-4.813252160159764e-37,1.0573634720471702e-22,-1.6940658945086007e-21,-3.623708303828329e-20,1.3594673482501642e-22,3.644314710982144e-05,3.172090479250383e-22,-2.618000183491015e-21,-4.170008511058395e-21,0.00017715420108288527,2.710505431213761e-20,2.3679340088976946e-19,-0.00021258502965793014,-6.776263578034403e-21,2.6902898317454327e-22,-1.88079096131566e-36,-1.0164395367051604e-20,4.503993386641442e-22,-4.3831689967248325e-20,-6.195521799607873e-21,3.172090479250383e-22,3.543083948898129e-05,-5.538292269759505e-22,4.216858335441634e-24,0.00023915816564112902,6.7414836221127456e-21,1.1910671867848786e-19,-7.97193861217238e-05,-7.97193861217238e-05,-2.362916273913215e-38,-6.809766608606699e-37,4.235164736271502e-22,-2.6706776136819348e-21,-2.2758763030448438e-20,8.470329472543003e-22,-2.618000183491015e-21,-5.538292269759505e-22,2.6573128707241267e-05,-7.719415074026078e-21,0.00017715420108288527,2.8937175358411605e-20,2.309047279583986e-19,2.1654326663086694e-20,-0.00021258502965793014,3.508213382456745e-23,-2.886001675147637e-36,2.400110440094632e-22,-9.974277112102954e-21,-4.3831689967248325e-20,2.54588032334695e-22,-4.170008511058395e-21,4.216858335441634e-24,-7.719415074026078e-21,3.543083948898129e-05,8.0,6.0,7.0,8.0,0.018363509327173233,-0.0027842733543366194,-0.0035209397319704294,-0.0031090560369193554,-0.0027842733543366194,0.00012400794366840273,0.00021258502965793014,0.00018601190822664648,0.0001653439103392884,0.00019929847621824592,0.00023915816564112902,0.00021258502965793014,0.0001550099259475246,0.00018601190822664648,0.00012400794366840273,-0.0027842733543366194,0.0014155464014038444,0.00021258502965793014,0.00018601190822664648,0.0001653439103392884,-0.00012400794366840273,-6.073858094168827e-05,-5.3146257414482534e-05,-4.724111931864172e-05,-6.321878404157393e-20,-1.9431450019086625e-20,-2.068952064494589e-20,-4.404571325722362e-20,7.36821308830553e-21,1.407636028160075e-20,-0.0035209397319704294,0.00021258502965793014,0.002504517324268818,0.00023915816564112902,0.00021258502965793014,3.3881317890172014e-21,-8.50340147735551e-05,6.0180285503170266e-21,3.2249273981836768e-21,-0.00029894770705141127,-9.566326480126008e-05,-8.50340147735551e-05,1.9948658591134757e-19,9.249525854749713e-20,1.3158493208930635e-19,-0.0031090560369193554,0.00018601190822664648,0.00023915816564112902,0.0018424036679789424,0.00018601190822664648,-2.936306593733201e-21,-1.50922301622825e-20,-6.200397183420137e-05,2.4733191049927447e-21,2.6186123860015967e-19,-7.97193861217238e-05,-1.3552527156068805e-20,-0.00018601190822664648,-6.200397183420137e-05,2.3660354355214293e-20,-0.0027842733543366194,0.0001653439103392884,0.00021258502965793014,0.00018601190822664648,0.0014155464014038444,-0.0,-1.1979999458262247e-20,-9.569643620896741e-21,-4.724111931864172e-05,1.7111218417515613e-19,-2.5678162908722236e-20,-6.073858094168827e-05,-3.3881317890172014e-21,-5.3146257414482534e-05,-0.00012400794366840273,0.00012400794366840273,-0.00012400794366840273,3.3881317890172014e-21,-2.936306593733201e-21,-0.0,1.7715419744490646e-05,-1.6940658945086007e-21,-0.0,-0.0,6.773702791328835e-37,3.2078993039530183e-37,3.326870888820721e-37,5.092489680388069e-22,6.985561967241544e-38,-2.269477598544929e-22,0.00021258502965793014,-6.073858094168827e-05,-8.50340147735551e-05,-1.50922301622825e-20,-1.1979999458262247e-20,-1.6940658945086007e-21,2.4295432012877427e-05,-1.4679373130616382e-21,-1.714923528303938e-21,2.5287513939746998e-20,8.092004202225098e-21,7.192892803709769e-21,-1.8055593228630336e-35,-7.534491897206691e-36,-1.0908587575630828e-35,0.00018601190822664648,-5.3146257414482534e-05,6.0180285503170266e-21,-6.200397183420137e-05,-9.569643620896741e-21,-0.0,-1.4679373130616382e-21,1.7715419744490646e-05,2.417286908118297e-21,-1.9560225997682864e-35,-1.9334448148083794e-22,-8.577554728442009e-23,1.3552527156068805e-20,8.470329472543003e-22,-1.608045876074209e-22,0.0001653439103392884,-4.724111931864172e-05,3.2249273981836768e-21,2.4733191049927447e-21,-4.724111931864172e-05,-0.0,-1.714923528303938e-21,2.417286908118297e-21,1.3497462532541249e-05,9.027796614315168e-36,-6.243668719578574e-23,8.470329472543003e-22,-1.3360299752116858e-22,-2.831232037719092e-21,-3.3930367115556994e-21,0.00019929847621824592,-6.321878404157393e-20,-0.00029894770705141127,2.6186123860015967e-19,1.7111218417515613e-19,6.773702791328835e-37,2.5287513939746998e-20,-1.9560225997682864e-35,9.027796614315168e-36,5.9789541410282254e-05,1.2083819510866888e-20,3.540251919252837e-20,-3.8352729933032635e-20,-1.7701259596264185e-20,-2.950210094269411e-20,0.00023915816564112902,-1.9431450019086625e-20,-9.566326480126008e-05,-7.97193861217238e-05,-2.5678162908722236e-20,3.2078993039530183e-37,8.092004202225098e-21,-1.9334448148083794e-22,-6.243668719578574e-23,1.2083819510866888e-20,3.188775372109376e-05,9.33038889885788e-21,-2.2740992379769186e-21,1.2705494208814505e-21,-1.6389630388893757e-22,0.00021258502965793014,-2.068952064494589e-20,-8.50340147735551e-05,-1.3552527156068805e-20,-6.073858094168827e-05,3.326870888820721e-37,7.192892803709769e-21,-8.577554728442009e-23,8.470329472543003e-22,3.540251919252837e-20,9.33038889885788e-21,2.4295432012877427e-05,-2.5732665447503475e-22,-2.2287450623155425e-21,4.690644793549151e-21,0.0001550099259475246,-4.404571325722362e-20,1.9948658591134757e-19,-0.00018601190822664648,-3.3881317890172014e-21,5.092489680388069e-22,-1.8055593228630336e-35,1.3552527156068805e-20,-1.3360299752116858e-22,-3.8352729933032635e-20,-2.2740992379769186e-21,-2.5732665447503475e-22,3.100198591710068e-05,2.4433643019948497e-21,4.256273896788747e-22,0.00018601190822664648,7.36821308830553e-21,9.249525854749713e-20,-6.200397183420137e-05,-5.3146257414482534e-05,6.985561967241544e-38,-7.534491897206691e-36,8.470329472543003e-22,-2.831232037719092e-21,-1.7701259596264185e-20,1.2705494208814505e-21,-2.2287450623155425e-21,2.4433643019948497e-21,1.7715419744490646e-05,-7.272678574317056e-21,0.00012400794366840273,1.407636028160075e-20,1.3158493208930635e-19,2.3660354355214293e-20,-0.00012400794366840273,-2.269477598544929e-22,-1.0908587575630828e-35,-1.608045876074209e-22,-3.3930367115556994e-21,-2.950210094269411e-20,-1.6389630388893757e-22,4.690644793549151e-21,4.256273896788747e-22,-7.272678574317056e-21,1.7715419744490646e-05,8.0,6.0,8.0,3.0,0.036389440298080444,-0.006062610074877739,-0.0076574902050197124,-0.006062610074877739,-0.0127728171646595,0.00028935185400769114,0.0004960317746736109,0.00038580247201025486,0.0008680555620230734,0.0004650297632906586,0.0004960317746736109,0.0011160714784637094,0.00028935185400769114,0.0008680555620230734,0.0013020833721384406,-0.006062610074877739,0.003178933635354042,0.0004960317746736109,0.00038580247201025486,0.0008680555620230734,-0.00028935185400769114,-0.00014172335795592517,-0.00011022927355952561,-0.00024801588733680546,-1.47510498251122e-19,-5.3817003962856466e-20,-9.440671784674232e-20,3.3881317890172014e-20,8.734375890400025e-35,6.550782061292982e-34,-0.0076574902050197124,0.0004960317746736109,0.0056206597946584225,0.0004960317746736109,0.0011160714784637094,-2.710505431213761e-20,-0.00019841270113829523,-1.2023235801139481e-21,3.6364071418181516e-20,-0.0006975446594879031,-0.00019841270113829523,-0.00044642857392318547,3.0223905207556417e-19,4.1302940027302046e-19,3.0977204632735622e-18,-0.006062610074877739,0.00038580247201025486,0.0004960317746736109,0.003178933635354042,0.0008680555620230734,-6.376742612313393e-22,-3.130240461595322e-20,-0.00011022927355952561,-1.9527874721585873e-20,5.018166666283838e-19,-0.00014172335795592517,-9.440671784674232e-20,-0.00028935185400769114,-0.00024801588733680546,-2.2285137615614086e-33,-0.0127728171646595,0.0008680555620230734,0.0011160714784637094,0.0008680555620230734,0.02579365111887455,-0.0,-5.804264965973507e-20,-1.9527874721585873e-20,-0.0008680555620230734,1.063550677914929e-18,-9.440671784674232e-20,-0.0011160714784637094,-0.0,-0.0008680555620230734,-0.0078125,0.00028935185400769114,-0.00028935185400769114,-2.710505431213761e-20,-6.376742612313393e-22,-0.0,4.13359775848221e-05,3.3881317890172014e-21,1.6940658945086007e-21,6.776263578034403e-21,1.5987915956435943e-36,8.410329714558505e-37,-5.711162961872317e-37,-5.593614012191824e-22,-0.0,0.0,0.0004960317746736109,-0.00014172335795592517,-0.00019841270113829523,-3.130240461595322e-20,-5.804264965973507e-20,3.3881317890172014e-21,5.668934318237007e-05,-3.0446107084279614e-21,-1.038973422931268e-20,5.900420188538822e-20,1.6783417080518505e-20,3.7762688431166636e-20,-2.482644068936671e-35,-3.4937505857487505e-35,-2.6203128245171927e-34,0.00038580247201025486,-0.00011022927355952561,-1.2023235801139481e-21,-0.00011022927355952561,-1.9527874721585873e-20,1.6940658945086007e-21,-3.0446107084279614e-21,3.149408075842075e-05,5.579393008394126e-21,9.027796614315168e-36,3.3881317890172014e-21,-0.0,-8.470329472543003e-21,-0.0,-0.0,0.0008680555620230734,-0.00024801588733680546,3.6364071418181516e-20,-1.9527874721585873e-20,-0.0008680555620230734,6.776263578034403e-21,-1.038973422931268e-20,5.579393008394126e-21,0.00024801588733680546,-1.081398983993996e-35,-2.445028249710358e-36,-6.920953296671426e-36,-7.52316384526264e-37,-0.0,0.0,0.0004650297632906586,-1.47510498251122e-19,-0.0006975446594879031,5.018166666283838e-19,1.063550677914929e-18,1.5987915956435943e-36,5.900420188538822e-20,9.027796614315168e-36,-1.081398983993996e-35,0.00013950893480796367,2.5062735686221382e-20,1.8586323141532891e-19,-6.883823553295292e-20,-8.26058813470738e-20,-6.195441133342278e-19,0.0004960317746736109,-5.3817003962856466e-20,-0.00019841270113829523,-0.00014172335795592517,-9.440671784674232e-20,8.410329714558505e-37,1.6783417080518505e-20,3.3881317890172014e-21,-2.445028249710358e-36,2.5062735686221382e-20,5.668934318237007e-05,3.7762688431166636e-20,1.19863155961622e-20,-0.0,-1.1130090200589095e-34,0.0011160714784637094,-9.440671784674232e-20,-0.00044642857392318547,-9.440671784674232e-20,-0.0011160714784637094,-5.711162961872317e-37,3.7762688431166636e-20,-0.0,-6.920953296671426e-36,1.8586323141532891e-19,3.7762688431166636e-20,0.00044642857392318547,-8.425943506694157e-35,-1.1134282490988707e-34,-8.253985213558165e-34,0.00028935185400769114,3.3881317890172014e-20,3.0223905207556417e-19,-0.00028935185400769114,-0.0,-5.593614012191824e-22,-2.482644068936671e-35,-8.470329472543003e-21,-7.52316384526264e-37,-6.883823553295292e-20,1.19863155961622e-20,-8.425943506694157e-35,4.13359775848221e-05,3.076258097622683e-36,3.0570317051329716e-34,0.0008680555620230734,8.734375890400025e-35,4.1302940027302046e-19,-0.00024801588733680546,-0.0008680555620230734,-0.0,-3.4937505857487505e-35,-0.0,-0.0,-8.26058813470738e-20,-0.0,-1.1134282490988707e-34,3.076258097622683e-36,0.00024801588733680546,3.668438000241818e-34,0.0013020833721384406,6.550782061292982e-34,3.0977204632735622e-18,-2.2285137615614086e-33,-0.0078125,0.0,-2.6203128245171927e-34,-0.0,0.0,-6.195441133342278e-19,-1.1130090200589095e-34,-8.253985213558165e-34,3.0570317051329716e-34,3.668438000241818e-34,0.00390625,8.0,6.0,8.0,4.0,0.029142897576093674,-0.004677166230976582,-0.0059105283580720425,-0.004677166230976582,-0.008054315112531185,0.00021701389050576836,0.00037202381645329297,0.00028935185400769114,0.0005208333604969084,0.00034877232974395156,0.00037202381645329297,0.0006696428754366934,0.00021701389050576836,0.0005208333604969084,0.0006510416860692203,-0.004677166230976582,0.002421402605250478,0.00037202381645329297,0.00028935185400769114,0.0005208333604969084,-0.00021701389050576836,-0.00010629251482896507,-8.26719551696442e-05,-0.00014880952949170023,-8.425943506694157e-35,3.538514193731622e-20,-0.0,6.776263578034403e-21,5.929230630780102e-21,0.0,-0.0059105283580720425,0.00037202381645329297,0.0042824591509997845,0.00037202381645329297,0.0006696428754366934,6.776263578034403e-21,-0.00014880952949170023,7.412779867187524e-21,-5.2028591010902804e-20,-0.0005231584655120969,-0.00014880952949170023,-0.0002678571327123791,3.479249093911156e-19,2.5078226581896e-19,1.0842021724855044e-18,-0.004677166230976582,0.00028935185400769114,0.00037202381645329297,0.002421402605250478,0.0005208333604969084,-2.6538617749988133e-21,-2.7972362877922264e-20,-8.26719551696442e-05,-8.391708540259252e-21,5.975860869861248e-19,-0.00010629251482896507,-0.0,-0.00021701389050576836,-0.00014880952949170023,-1.2384472160966059e-33,-0.008054315112531185,0.0005208333604969084,0.0006696428754366934,0.0005208333604969084,0.00992683507502079,-0.0,-5.2028591010902804e-20,-2.4624777075307582e-21,-0.00034722223062999547,8.239936407492257e-19,2.964615315390051e-21,-0.00044642857392318547,1.3552527156068805e-20,-0.00034722223062999547,-0.001953125,0.00021701389050576836,-0.00021701389050576836,6.776263578034403e-21,-2.6538617749988133e-21,-0.0,3.100198591710068e-05,-0.0,-3.3881317890172014e-21,3.3881317890172014e-21,-0.0,1.7056160976408175e-37,0.0,1.454339622975035e-21,1.863047608056502e-38,-0.0,0.00037202381645329297,-0.00010629251482896507,-0.00014880952949170023,-2.7972362877922264e-20,-5.2028591010902804e-20,-0.0,4.251700738677755e-05,7.99210356400728e-21,1.486531287139161e-20,0.0,-3.420769275684402e-36,-0.0,-7.52316384526264e-37,-5.731934465060942e-37,-0.0,0.00028935185400769114,-8.26719551696442e-05,7.412779867187524e-21,-8.26719551696442e-05,-2.4624777075307582e-21,-3.3881317890172014e-21,7.99210356400728e-21,2.362055965932086e-05,2.397631069202184e-21,2.407412430484045e-35,-1.011004055351892e-20,-0.0,-5.082197683525802e-21,-1.6940658945086007e-21,-0.0,0.0005208333604969084,-0.00014880952949170023,-5.2028591010902804e-20,-8.391708540259252e-21,-0.00034722223062999547,3.3881317890172014e-21,1.486531287139161e-20,2.397631069202184e-21,9.920635056914762e-05,0.0,-9.348780865571115e-37,-0.0,-3.76158192263132e-37,-9.4039548065783e-38,-0.0,0.00034877232974395156,-8.425943506694157e-35,-0.0005231584655120969,5.975860869861248e-19,8.239936407492257e-19,-0.0,0.0,2.407412430484045e-35,0.0,0.00010463169746799394,-6.473603361780078e-20,-0.0,-5.162867503412756e-20,-4.9563528162009426e-20,-2.168404344971009e-19,0.00037202381645329297,3.538514193731622e-20,-0.00014880952949170023,-0.00010629251482896507,2.964615315390051e-21,1.7056160976408175e-37,-3.420769275684402e-36,-1.011004055351892e-20,-9.348780865571115e-37,-6.473603361780078e-20,4.251700738677755e-05,-0.0,-2.5651869228118134e-20,-8.470329472543003e-22,1.3416001973768713e-34,0.0006696428754366934,-0.0,-0.0002678571327123791,-0.0,-0.00044642857392318547,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,-0.0,-0.0,0.00021701389050576836,6.776263578034403e-21,3.479249093911156e-19,-0.00021701389050576836,1.3552527156068805e-20,1.454339622975035e-21,-7.52316384526264e-37,-5.082197683525802e-21,-3.76158192263132e-37,-5.162867503412756e-20,-2.5651869228118134e-20,-0.0,3.100198591710068e-05,-2.3253452579672095e-21,1.0699611312348511e-34,0.0005208333604969084,5.929230630780102e-21,2.5078226581896e-19,-0.00014880952949170023,-0.00034722223062999547,1.863047608056502e-38,-5.731934465060942e-37,-1.6940658945086007e-21,-9.4039548065783e-38,-4.9563528162009426e-20,-8.470329472543003e-22,-0.0,-2.3253452579672095e-21,9.920635056914762e-05,1.0271626905772319e-34,0.0006510416860692203,0.0,1.0842021724855044e-18,-1.2384472160966059e-33,-0.001953125,-0.0,-0.0,-0.0,-0.0,-2.168404344971009e-19,1.3416001973768713e-34,-0.0,1.0699611312348511e-34,1.0271626905772319e-34,0.0006510416860692203,8.0,6.0,8.0,5.0,0.024351025000214577,-0.003811177331954241,-0.004817708395421505,-0.003811177331954241,-0.0055555556900799274,0.00017361111531499773,0.00029761905898340046,0.00023148147738538682,0.00034722223062999547,0.00027901786961592734,0.00029761905898340046,0.00044642857392318547,0.00017361111531499773,0.00034722223062999547,0.00037202381645329297,-0.003811177331954241,0.0019569634459912777,0.00029761905898340046,0.00023148147738538682,0.00034722223062999547,-0.00017361111531499773,-8.50340147735551e-05,-6.613756704609841e-05,-9.920635056914762e-05,-5.266214691683848e-35,2.371692252312041e-20,0.0,1.3552527156068805e-20,-0.0,0.0,-0.004817708395421505,0.00029761905898340046,0.0034616815391927958,0.00029761905898340046,0.00044642857392318547,1.3552527156068805e-20,-0.0001190476177725941,3.871172955005492e-21,-3.2933498155156955e-20,-0.0004185267898719758,-0.0001190476177725941,-0.00017857142665889114,2.726312077237825e-19,1.652117626941476e-19,5.310378040437969e-19,-0.003811177331954241,0.00023148147738538682,0.00029761905898340046,0.0019569634459912777,0.00034722223062999547,7.642127808921356e-21,-1.9845749568114918e-20,-6.613756704609841e-05,-4.123724363053072e-21,4.587829571518305e-19,-8.50340147735551e-05,-2.980433324908774e-34,-0.00017361111531499773,-9.920635056914762e-05,-5.821158687044838e-34,-0.0055555556900799274,0.00034722223062999547,0.00044642857392318547,0.00034722223062999547,0.005009920801967382,6.776263578034403e-21,-3.2933498155156955e-20,-4.123724363053072e-21,-0.00017361111531499773,6.76424154180671e-19,-2.760822740760102e-34,-0.00022321428696159273,-0.0,-0.00017361111531499773,-0.0007440476329065859,0.00017361111531499773,-0.00017361111531499773,1.3552527156068805e-20,7.642127808921356e-21,6.776263578034403e-21,2.4801587642286904e-05,-3.3881317890172014e-21,-0.0,-1.6940658945086007e-21,-0.0,6.369848573910423e-37,0.0,-2.2374455543896316e-22,-0.0,0.0,0.00029761905898340046,-8.50340147735551e-05,-0.0001190476177725941,-1.9845749568114918e-20,-3.2933498155156955e-20,-3.3881317890172014e-21,3.40136066370178e-05,5.670214046919467e-21,9.409570439877092e-21,0.0,-2.0333379712794414e-36,-0.0,-7.52316384526264e-37,-0.0,-0.0,0.00023148147738538682,-6.613756704609841e-05,3.871172955005492e-21,-6.613756704609841e-05,-4.123724363053072e-21,-0.0,5.670214046919467e-21,1.889644772745669e-05,1.1782069031727659e-21,1.504632769052528e-35,-6.776263578034403e-21,-0.0,-3.3881317890172014e-21,-0.0,-0.0,0.00034722223062999547,-9.920635056914762e-05,-3.2933498155156955e-20,-4.123724363053072e-21,-0.00017361111531499773,-1.6940658945086007e-21,9.409570439877092e-21,1.1782069031727659e-21,4.960317528457381e-05,0.0,-4.231779662960235e-37,-0.0,-2.82118644197349e-37,-0.0,-0.0,0.00027901786961592734,-5.266214691683848e-35,-0.0004185267898719758,4.587829571518305e-19,6.76424154180671e-19,-0.0,0.0,1.504632769052528e-35,0.0,8.370535942958668e-05,-4.143106319560312e-20,-5.437827185786784e-20,-4.13029406735369e-20,-3.3042353185064373e-20,-1.0620756080875938e-19,0.00029761905898340046,2.371692252312041e-20,-0.0001190476177725941,-8.50340147735551e-05,-2.760822740760102e-34,6.369848573910423e-37,-2.0333379712794414e-36,-6.776263578034403e-21,-4.231779662960235e-37,-4.143106319560312e-20,3.40136066370178e-05,2.691523617962097e-35,-1.8890433508798598e-20,-0.0,5.256882483358643e-35,0.00044642857392318547,0.0,-0.00017857142665889114,-2.980433324908774e-34,-0.00022321428696159273,0.0,-0.0,-0.0,-0.0,-5.437827185786784e-20,2.691523617962097e-35,8.928571332944557e-05,2.683200452150928e-35,2.1465603043235571e-35,6.899658223534978e-35,0.00017361111531499773,1.3552527156068805e-20,2.726312077237825e-19,-0.00017361111531499773,-0.0,-2.2374455543896316e-22,-7.52316384526264e-37,-3.3881317890172014e-21,-2.82118644197349e-37,-4.13029406735369e-20,-1.8890433508798598e-20,2.683200452150928e-35,2.4801587642286904e-05,1.230503274922314e-36,5.240625878623126e-35,0.00034722223062999547,-0.0,1.652117626941476e-19,-9.920635056914762e-05,-0.00017361111531499773,-0.0,-0.0,-0.0,-0.0,-3.3042353185064373e-20,-0.0,2.1465603043235571e-35,1.230503274922314e-36,4.960317528457381e-05,4.19250047330976e-35,0.00037202381645329297,0.0,5.310378040437969e-19,-5.821158687044838e-34,-0.0007440476329065859,0.0,-0.0,-0.0,-0.0,-1.0620756080875938e-19,5.256882483358643e-35,6.899658223534978e-35,5.240625878623126e-35,4.19250047330976e-35,0.00018601190822664648,8.0,6.0,8.0,6.0,0.020931752398610115,-0.0032173169311136007,-0.004067903384566307,-0.0032173169311136007,-0.004067903384566307,0.00014467592700384557,0.00024801588733680546,0.00019290123600512743,0.00024801588733680546,0.0002325148816453293,0.00024801588733680546,0.0003188775444868952,0.00014467592700384557,0.00024801588733680546,0.0002325148816453293,-0.0032173169311136007,0.0016426130896434188,0.00024801588733680546,0.00019290123600512743,0.00024801588733680546,-0.00014467592700384557,-7.086167897796258e-05,-5.5114636779762805e-05,-7.086167897796258e-05,-7.3755249125561e-20,-2.8549343973397875e-20,-5.394669683561683e-20,1.0164395367051604e-20,-1.801465603525808e-20,-7.3755249125561e-20,-0.004067903384566307,0.00024801588733680546,0.0029059930238872766,0.00024801588733680546,0.0003188775444868952,-0.0,-9.920635056914762e-05,-2.2420049937169663e-21,-1.738282414099968e-20,-0.00034877232974395156,-9.920635056914762e-05,-0.00012755101488437504,1.513885923814091e-19,8.172801653495629e-20,1.7148095163198992e-19,-0.0032173169311136007,0.00019290123600512743,0.00024801588733680546,0.0016426130896434188,0.00024801588733680546,-3.0327601748524672e-21,-1.565120230797661e-20,-5.5114636779762805e-05,-2.6469861996640714e-20,2.686095848325204e-19,-7.086167897796258e-05,-6.473603361780078e-20,-0.00014467592700384557,-7.086167897796258e-05,-7.3755249125561e-20,-0.004067903384566307,0.00024801588733680546,0.0003188775444868952,0.00024801588733680546,0.0029059930238872766,-6.776263578034403e-21,-1.738282414099968e-20,-2.5259763403444908e-21,-9.920635056914762e-05,3.835589196017109e-19,-2.549104076011339e-20,-0.00012755101488437504,-6.776263578034403e-21,-9.920635056914762e-05,-0.00034877232974395156,0.00014467592700384557,-0.00014467592700384557,-0.0,-3.0327601748524672e-21,-6.776263578034403e-21,2.066798879241105e-05,1.6940658945086007e-21,8.470329472543003e-22,3.3881317890172014e-21,8.809234770008676e-37,5.051276493102223e-37,-1.4856237854411673e-37,-1.6780841026833513e-22,5.113817900915442e-37,1.8462699175950796e-37,0.00024801588733680546,-7.086167897796258e-05,-9.920635056914762e-05,-1.565120230797661e-20,-1.738282414099968e-20,1.6940658945086007e-21,2.8344671591185033e-05,-1.5223053542139807e-21,-2.7401496779748436e-21,2.950210094269411e-20,8.391708540259252e-21,1.0789339205564653e-20,-1.1943022604354441e-35,-7.642606669988314e-36,-1.735734499246709e-35,0.00019290123600512743,-5.5114636779762805e-05,-2.2420049937169663e-21,-5.5114636779762805e-05,-2.5259763403444908e-21,8.470329472543003e-22,-1.5223053542139807e-21,1.5747040379210375e-05,1.5687404586421269e-21,3.009265538105056e-36,2.162878180711915e-21,3.76158192263132e-37,-2.541098841762901e-21,-8.470329472543003e-22,1.6913230326709078e-36,0.00024801588733680546,-7.086167897796258e-05,-1.738282414099968e-20,-2.6469861996640714e-20,-9.920635056914762e-05,3.3881317890172014e-21,-2.7401496779748436e-21,1.5687404586421269e-21,2.8344671591185033e-05,-3.5296683092539174e-35,1.5965220750715493e-36,1.0789339205564653e-20,-1.222514124855179e-36,8.391708540259252e-21,2.950210094269411e-20,0.0002325148816453293,-7.3755249125561e-20,-0.00034877232974395156,2.686095848325204e-19,3.835589196017109e-19,8.809234770008676e-37,2.950210094269411e-20,3.009265538105056e-36,-3.5296683092539174e-35,6.975446740398183e-05,1.2531367843110691e-20,1.3149507030564176e-21,-3.441911776647646e-20,-2.360167946168558e-20,-6.084807794364842e-20,0.00024801588733680546,-2.8549343973397875e-20,-9.920635056914762e-05,-7.086167897796258e-05,-2.549104076011339e-20,5.051276493102223e-37,8.391708540259252e-21,2.162878180711915e-21,1.5965220750715493e-36,1.2531367843110691e-20,2.8344671591185033e-05,1.0789339205564653e-20,5.916282911592303e-21,-4.235164736271502e-22,4.557018570244728e-37,0.0003188775444868952,-5.394669683561683e-20,-0.00012755101488437504,-6.473603361780078e-20,-0.00012755101488437504,-1.4856237854411673e-37,1.0789339205564653e-20,3.76158192263132e-37,1.0789339205564653e-20,1.3149507030564176e-21,1.0789339205564653e-20,5.10204081365373e-05,1.504632769052528e-36,1.510507569558408e-20,5.310378040437969e-20,0.00014467592700384557,1.0164395367051604e-20,1.513885923814091e-19,-0.00014467592700384557,-6.776263578034403e-21,-1.6780841026833513e-22,-1.1943022604354441e-35,-2.541098841762901e-21,-1.222514124855179e-36,-3.441911776647646e-20,5.916282911592303e-21,1.504632769052528e-36,2.066798879241105e-05,5.313933160120939e-22,3.064573465666206e-35,0.00024801588733680546,-1.801465603525808e-20,8.172801653495629e-20,-7.086167897796258e-05,-9.920635056914762e-05,5.113817900915442e-37,-7.642606669988314e-36,-8.470329472543003e-22,8.391708540259252e-21,-2.360167946168558e-20,-4.235164736271502e-22,1.510507569558408e-20,5.313933160120939e-22,2.8344671591185033e-05,2.950210094269411e-20,0.0002325148816453293,-7.3755249125561e-20,1.7148095163198992e-19,-7.3755249125561e-20,-0.00034877232974395156,1.8462699175950796e-37,-1.735734499246709e-35,1.6913230326709078e-36,2.950210094269411e-20,-6.084807794364842e-20,4.557018570244728e-37,5.310378040437969e-20,3.064573465666206e-35,2.950210094269411e-20,6.975446740398183e-05,8.0,6.0,8.0,7.0,0.018363509327173233,-0.0027842733543366194,-0.0035209397319704294,-0.0027842733543366194,-0.0031090560369193554,0.00012400794366840273,0.00021258502965793014,0.0001653439103392884,0.00018601190822664648,0.00019929847621824592,0.00021258502965793014,0.00023915816564112902,0.00012400794366840273,0.00018601190822664648,0.0001550099259475246,-0.0027842733543366194,0.0014155464014038444,0.00021258502965793014,0.0001653439103392884,0.00018601190822664648,-0.00012400794366840273,-6.073858094168827e-05,-4.724111931864172e-05,-5.3146257414482534e-05,-6.321878404157393e-20,-1.9150190839360123e-20,-2.0291312343771167e-20,3.3881317890172014e-21,-1.2801270253079495e-20,-3.9512766731607294e-20,-0.0035209397319704294,0.00021258502965793014,0.002504517324268818,0.00021258502965793014,0.00023915816564112902,-0.0,-8.50340147735551e-05,4.6576242120163026e-21,5.282572089497186e-21,-0.00029894770705141127,-8.50340147735551e-05,-9.566326480126008e-05,1.3076948710169392e-19,7.214432134496252e-20,1.9219802611550435e-19,-0.0027842733543366194,0.0001653439103392884,0.00021258502965793014,0.0014155464014038444,0.00018601190822664648,-5.243409752500649e-22,-1.1979999458262247e-20,-4.724111931864172e-05,-1.4346328122848477e-20,1.7111218417515613e-19,-6.073858094168827e-05,-3.5575383784680614e-20,-0.00012400794366840273,-5.3146257414482534e-05,-3.619045396242488e-20,-0.0031090560369193554,0.00018601190822664648,0.00023915816564112902,0.00018601190822664648,0.0018424036679789424,-6.776263578034403e-21,-1.50922301622825e-20,-3.610441021505446e-21,-6.200397183420137e-05,2.6186123860015967e-19,-2.0817131025890666e-20,-7.97193861217238e-05,-0.0,-6.200397183420137e-05,-0.00018601190822664648,0.00012400794366840273,-0.00012400794366840273,-0.0,-5.243409752500649e-22,-6.776263578034403e-21,1.7715419744490646e-05,-1.6940658945086007e-21,-0.0,-0.0,-2.4528187068656394e-37,3.9191600649183115e-37,4.586148538513358e-37,4.231402690168939e-22,2.942799082082875e-38,7.048564958192194e-23,0.00021258502965793014,-6.073858094168827e-05,-8.50340147735551e-05,-1.1979999458262247e-20,-1.50922301622825e-20,-1.6940658945086007e-21,2.4295432012877427e-05,-1.714923528303938e-21,-1.4679373130616382e-21,2.5287513939746998e-20,7.192892803709769e-21,8.092004202225098e-21,-1.0908587575630828e-35,-6.456154479065862e-36,-1.7303276844104072e-35,0.0001653439103392884,-4.724111931864172e-05,4.6576242120163026e-21,-4.724111931864172e-05,-3.610441021505446e-21,-0.0,-1.714923528303938e-21,1.3497462532541249e-05,9.48843411412771e-22,4.513898307157584e-36,3.691614076589768e-22,1.751452963143209e-23,-1.6940658945086007e-21,-0.0,3.780043806343233e-23,0.00018601190822664648,-5.3146257414482534e-05,5.282572089497186e-21,-1.4346328122848477e-20,-6.200397183420137e-05,-0.0,-1.4679373130616382e-21,9.48843411412771e-22,1.7715419744490646e-05,-1.9560225997682864e-35,-4.1368929254290097e-23,1.965769466882589e-36,-2.2089251403311436e-22,4.2670899497275705e-21,1.2948929262562313e-20,0.00019929847621824592,-6.321878404157393e-20,-0.00029894770705141127,1.7111218417515613e-19,2.6186123860015967e-19,-2.4528187068656394e-37,2.5287513939746998e-20,4.513898307157584e-36,-1.9560225997682864e-35,5.9789541410282254e-05,3.540251919252837e-20,1.2083819510866888e-20,-2.950210094269411e-20,-1.7701259596264185e-20,-3.8352729933032635e-20,0.00021258502965793014,-1.9150190839360123e-20,-8.50340147735551e-05,-6.073858094168827e-05,-2.0817131025890666e-20,3.9191600649183115e-37,7.192892803709769e-21,3.691614076589768e-22,-4.1368929254290097e-23,3.540251919252837e-20,2.4295432012877427e-05,8.11452306349086e-21,4.743739045220615e-21,4.235164736271502e-22,-1.2410679091831391e-22,0.00023915816564112902,-2.0291312343771167e-20,-9.566326480126008e-05,-3.5575383784680614e-20,-7.97193861217238e-05,4.586148538513358e-37,8.092004202225098e-21,1.751452963143209e-23,1.965769466882589e-36,1.2083819510866888e-20,8.11452306349086e-21,3.188775372109376e-05,4.597564028250924e-23,4.959891275141594e-21,-1.6547461383681226e-36,0.00012400794366840273,3.3881317890172014e-21,1.3076948710169392e-19,-0.00012400794366840273,-0.0,4.231402690168939e-22,-1.0908587575630828e-35,-1.6940658945086007e-21,-2.2089251403311436e-22,-2.950210094269411e-20,4.743739045220615e-21,4.597564028250924e-23,1.7715419744490646e-05,-1.398403503047956e-22,-2.427036976471339e-22,0.00018601190822664648,-1.2801270253079495e-20,7.214432134496252e-20,-5.3146257414482534e-05,-6.200397183420137e-05,2.942799082082875e-38,-6.456154479065862e-36,-0.0,4.2670899497275705e-21,-1.7701259596264185e-20,4.235164736271502e-22,4.959891275141594e-21,-1.398403503047956e-22,1.7715419744490646e-05,1.2735344604493872e-20,0.0001550099259475246,-3.9512766731607294e-20,1.9219802611550435e-19,-3.619045396242488e-20,-0.00018601190822664648,7.048564958192194e-23,-1.7303276844104072e-35,3.780043806343233e-23,1.2948929262562313e-20,-3.8352729933032635e-20,-1.2410679091831391e-22,-1.6547461383681226e-36,-2.427036976471339e-22,1.2735344604493872e-20,3.100198591710068e-05,8.0,6.0,8.0,8.0,0.01636129803955555,-0.0024543236941099167,-0.0031040736939758062,-0.0024543236941099167,-0.0024543236941099167,0.00010850694525288418,0.00018601190822664648,0.00014467592700384557,0.00014467592700384557,0.00017438616487197578,0.00018601190822664648,0.00018601190822664648,0.00010850694525288418,0.00014467592700384557,0.00010850694525288418,-0.0024543236941099167,0.0012437701225280762,0.00018601190822664648,0.00014467592700384557,0.00014467592700384557,-0.00010850694525288418,-5.3146257414482534e-05,-4.13359775848221e-05,-4.13359775848221e-05,-8.425943506694157e-35,1.7325380324866993e-20,1.789072596180431e-20,3.3881317890172014e-21,3.43847509969643e-21,9.443860469000396e-21,-0.0031040736939758062,0.00018601190822664648,0.002200753428041935,0.00018601190822664648,0.00018601190822664648,3.3881317890172014e-21,-7.440476474585012e-05,3.460644994141271e-21,3.783100030194902e-21,-0.00026157923275604844,-7.440476474585012e-05,-7.440476474585012e-05,1.7331738306473714e-19,7.779637538470347e-20,1.7712843679131622e-19,-0.0024543236941099167,0.00014467592700384557,0.00018601190822664648,0.0012437701225280762,0.00014467592700384557,-1.979150582619769e-21,-1.3986181438961132e-20,-4.13359775848221e-05,-3.8729892283536725e-22,3.098071601443591e-19,-5.3146257414482534e-05,6.776263578034403e-21,-0.00010850694525288418,-4.13359775848221e-05,1.1494115666711872e-20,-0.0024543236941099167,0.00014467592700384557,0.00018601190822664648,0.00014467592700384557,0.0012437701225280762,-3.3881317890172014e-21,-1.3986181438961132e-20,-2.36022679392991e-21,-4.13359775848221e-05,3.098071601443591e-19,2.936276705371224e-21,-5.3146257414482534e-05,3.3881317890172014e-21,-4.13359775848221e-05,-0.00010850694525288418,0.00010850694525288418,-0.00010850694525288418,3.3881317890172014e-21,-1.979150582619769e-21,-3.3881317890172014e-21,1.550099295855034e-05,-0.0,-1.6940658945086007e-21,-8.470329472543003e-22,-0.0,3.461775853799121e-38,-1.7033578771395888e-37,7.175436384728059e-22,-1.1285892478453286e-38,1.4567014599034923e-22,0.00018601190822664648,-5.3146257414482534e-05,-7.440476474585012e-05,-1.3986181438961132e-20,-1.3986181438961132e-20,-0.0,2.1258503693388775e-05,3.99605178200364e-21,3.99605178200364e-21,0.0,-1.6748875280840858e-36,-1.7295407690027034e-36,-7.52316384526264e-37,-3.3240590993741454e-37,-4.037404544038845e-37,0.00014467592700384557,-4.13359775848221e-05,3.460644994141271e-21,-4.13359775848221e-05,-2.36022679392991e-21,-1.6940658945086007e-21,3.99605178200364e-21,1.181027982966043e-05,8.325149783465535e-22,1.2037062152420224e-35,-4.955369246753829e-21,-2.943814012574234e-23,-2.541098841762901e-21,-2.117582368135751e-22,3.449462493223867e-23,0.00014467592700384557,-4.13359775848221e-05,3.783100030194902e-21,-3.8729892283536725e-22,-4.13359775848221e-05,-8.470329472543003e-22,3.99605178200364e-21,8.325149783465535e-22,1.181027982966043e-05,1.2037062152420224e-35,5.2603749793511144e-24,-5.082197683525802e-21,2.082389263669924e-23,-7.706631841803349e-22,-3.0478634911736625e-21,0.00017438616487197578,-8.425943506694157e-35,-0.00026157923275604844,3.098071601443591e-19,3.098071601443591e-19,-0.0,0.0,1.2037062152420224e-35,1.2037062152420224e-35,5.231584873399697e-05,-3.236801680890039e-20,-3.236801680890039e-20,-2.581433751706378e-20,-1.376764742970801e-20,-2.581433751706378e-20,0.00018601190822664648,1.7325380324866993e-20,-7.440476474585012e-05,-5.3146257414482534e-05,2.936276705371224e-21,3.461775853799121e-38,-1.6748875280840858e-36,-4.955369246753829e-21,5.2603749793511144e-24,-3.236801680890039e-20,2.1258503693388775e-05,-3.7849038206081184e-23,-1.2564350862242676e-20,-8.470329472543003e-22,1.3808483186809124e-23,0.00018601190822664648,1.789072596180431e-20,-7.440476474585012e-05,6.776263578034403e-21,-5.3146257414482534e-05,-1.7033578771395888e-37,-1.7295407690027034e-36,-2.943814012574234e-23,-5.082197683525802e-21,-3.236801680890039e-20,-3.7849038206081184e-23,2.1258503693388775e-05,-7.727511664678228e-23,-1.7124355241177434e-21,-1.3744308657971798e-20,0.00010850694525288418,3.3881317890172014e-21,1.7331738306473714e-19,-0.00010850694525288418,3.3881317890172014e-21,7.175436384728059e-22,-7.52316384526264e-37,-2.541098841762901e-21,2.082389263669924e-23,-2.581433751706378e-20,-1.2564350862242676e-20,-7.727511664678228e-23,1.550099295855034e-05,-4.694640241505463e-22,-3.984421069252551e-22,0.00014467592700384557,3.43847509969643e-21,7.779637538470347e-20,-4.13359775848221e-05,-4.13359775848221e-05,-1.1285892478453286e-38,-3.3240590993741454e-37,-2.117582368135751e-22,-7.706631841803349e-22,-1.376764742970801e-20,-8.470329472543003e-22,-1.7124355241177434e-21,-4.694640241505463e-22,1.181027982966043e-05,-2.46645508110601e-21,0.00010850694525288418,9.443860469000396e-21,1.7712843679131622e-19,1.1494115666711872e-20,-0.00010850694525288418,1.4567014599034923e-22,-4.037404544038845e-37,3.449462493223867e-23,-3.0478634911736625e-21,-2.581433751706378e-20,1.3808483186809124e-23,-1.3744308657971798e-20,-3.984421069252551e-22,-2.46645508110601e-21,1.550099295855034e-05,8.0,7.0,3.0,3.0,0.0699404776096344,-0.012896825559437275,-0.014384920708835125,-0.02703372947871685,-0.02703372947871685,0.0006613756413571537,0.0009920635493472219,0.0019841270986944437,0.0019841270986944437,0.0008267195662483573,0.0022321429569274187,0.0022321429569274187,0.0029761905316263437,0.004464285913854837,0.0029761905316263437,-0.012896825559437275,0.00699168536812067,0.0009920635493472219,0.0019841270986944437,0.0019841270986944437,-0.0006613756413571537,-0.00028344671591185033,-0.0005668934318237007,-0.0005668934318237007,1.8973538018496328e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.014384920708835125,0.0009920635493472219,0.009093915112316608,0.0022321429569274187,0.0022321429569274187,-0.0,-0.0003306878206785768,-9.190918815880624e-20,-9.190918815880624e-20,-0.0009920635493472219,-0.0007440476329065859,-0.0007440476329065859,-0.0,-0.0,-0.0,-0.02703372947871685,0.0019841270986944437,0.0022321429569274187,0.056795634329319,0.004464285913854837,2.3969569654705673e-20,-7.115076756936123e-20,-0.0019841270986944437,3.196841425602912e-20,-0.0,-0.0022321429569274187,-0.0,-0.01785714365541935,-0.004464285913854837,1.9825411626695288e-17,-0.02703372947871685,0.0019841270986944437,0.0022321429569274187,0.004464285913854837,0.056795634329319,5.421010862427522e-20,-7.115076756936123e-20,3.196841425602912e-20,-0.0019841270986944437,-1.5898156110502037e-20,-0.0,-0.0022321429569274187,2.4356933669748613e-17,-0.004464285913854837,-0.01785714365541935,0.0006613756413571537,-0.0006613756413571537,-0.0,2.3969569654705673e-20,5.421010862427522e-20,9.448223863728344e-05,-0.0,-1.3552527156068805e-20,-1.3552527156068805e-20,9.463631822396582e-22,0.0,-0.0,-0.0,-0.0,-0.0,0.0009920635493472219,-0.00028344671591185033,-0.0003306878206785768,-7.115076756936123e-20,-7.115076756936123e-20,-0.0,9.448223863728344e-05,2.0328790734103208e-20,2.0328790734103208e-20,-6.776263578034403e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0005668934318237007,-9.190918815880624e-20,-0.0019841270986944437,3.196841425602912e-20,-1.3552527156068805e-20,2.0328790734103208e-20,0.0005668934318237007,-9.133832529180668e-21,3.1936029811930242e-21,-0.0,-0.0,-0.0,-0.0,-0.0,0.0019841270986944437,-0.0005668934318237007,-9.190918815880624e-20,3.196841425602912e-20,-0.0019841270986944437,-1.3552527156068805e-20,2.0328790734103208e-20,-9.133832529180668e-21,0.0005668934318237007,3.1936029811930242e-21,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008267195662483573,1.8973538018496328e-19,-0.0009920635493472219,-0.0,-1.5898156110502037e-20,9.463631822396582e-22,-6.776263578034403e-20,3.1936029811930242e-21,3.1936029811930242e-21,0.0001653439103392884,-0.0,0.0,-0.0,0.0,-0.0,0.0022321429569274187,-0.0,-0.0007440476329065859,-0.0022321429569274187,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,0.0022321429569274187,-0.0,-0.0007440476329065859,-0.0,-0.0022321429569274187,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0007440476329065859,-0.0,-0.0,-0.0,0.0029761905316263437,-0.0,-0.0,-0.01785714365541935,2.4356933669748613e-17,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.008928571827709675,-4.5315224566436314e-18,-9.912705813347644e-18,0.004464285913854837,-0.0,-0.0,-0.004464285913854837,-0.004464285913854837,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-4.5315224566436314e-18,0.004464285913854837,5.031000843478201e-33,0.0029761905316263437,-0.0,-0.0,1.9825411626695288e-17,-0.01785714365541935,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-9.912705813347644e-18,5.031000843478201e-33,0.008928571827709675,8.0,7.0,3.0,4.0,0.0563616082072258,-0.00997023843228817,-0.01112351194024086,-0.02094493992626667,-0.01711309514939785,0.0004960317746736109,0.0007440476329065859,0.0014880952658131719,0.0011904762359336019,0.0006200397037900984,0.0016741071594879031,0.0013392857508733869,0.0022321429569274187,0.0026785715017467737,0.0014880952658131719,-0.00997023843228817,0.005328798200935125,0.0007440476329065859,0.0014880952658131719,0.0011904762359336019,-0.0004960317746736109,-0.00021258502965793014,-0.00042517005931586027,-0.0003401360590942204,-1.3552527156068805e-19,-0.0,-1.0842021724855044e-19,1.665620577488479e-33,-2.2657611766230274e-19,-5.664403070804539e-19,-0.01112351194024086,0.0007440476329065859,0.006932043470442295,0.0016741071594879031,0.0013392857508733869,-0.0,-0.00024801588733680546,-9.356059609063154e-20,-1.865922101795354e-19,-0.0007440476329065859,-0.0005580357392318547,-0.00044642857392318547,2.1861270883096877e-33,-2.973811754344051e-19,-7.434529256613157e-19,-0.02094493992626667,0.0014880952658131719,0.0016741071594879031,0.04326637089252472,0.0026785715017467737,-2.456097955887408e-20,-9.486769009248164e-20,-0.0014880952658131719,-2.335541099122235e-19,-5.421010862427522e-20,-0.0016741071594879031,-2.9659444912368473e-19,-0.013392857275903225,-0.0026785715017467737,6.938893903907228e-18,-0.01711309514939785,0.0011904762359336019,0.0013392857508733869,0.0026785715017467737,0.02182539738714695,-5.421010862427522e-20,-7.115076756936123e-20,-6.303640525679019e-21,-0.0007936508045531809,3.8311952513773185e-20,-0.0,-0.0008928571478463709,1.3127254578001205e-17,-0.0017857142956927419,-0.004464285913854837,0.0004960317746736109,-0.0004960317746736109,-0.0,-2.456097955887408e-20,-5.421010862427522e-20,7.086167897796258e-05,3.3881317890172014e-21,-0.0,6.776263578034403e-21,-3.603914453381303e-21,0.0,-7.082359380718628e-22,-0.0,-2.648740724766991e-36,1.781380112921855e-36,0.0007440476329065859,-0.00021258502965793014,-0.00024801588733680546,-9.486769009248164e-20,-7.115076756936123e-20,3.3881317890172014e-21,7.086167897796258e-05,2.710505431213761e-20,2.0328790734103208e-20,5.421010862427522e-20,-0.0,-0.0,-0.0,1.171497210852011e-35,3.1458332434838283e-35,0.0014880952658131719,-0.00042517005931586027,-9.356059609063154e-20,-0.0014880952658131719,-6.303640525679019e-21,-0.0,2.710505431213761e-20,0.00042517005931586027,1.9937070226961415e-21,-1.4921911129608096e-22,-0.0,-2.2477790011593027e-22,-0.0,1.1783434932807282e-36,2.9458586883602695e-36,0.0011904762359336019,-0.0003401360590942204,-1.865922101795354e-19,-2.335541099122235e-19,-0.0007936508045531809,6.776263578034403e-21,2.0328790734103208e-20,1.9937070226961415e-21,0.00022675737272948027,2.2062970344481817e-22,-0.0,7.600490251071821e-20,-1.1104137489374847e-33,1.5105075372466654e-19,3.776268713869693e-19,0.0006200397037900984,-1.3552527156068805e-19,-0.0007440476329065859,-5.421010862427522e-20,3.8311952513773185e-20,-3.603914453381303e-21,5.421010862427522e-20,-1.4921911129608096e-22,2.2062970344481817e-22,0.00012400794366840273,-0.0,0.0,-0.0,0.0,0.0,0.0016741071594879031,-0.0,-0.0005580357392318547,-0.0016741071594879031,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,0.0013392857508733869,-1.0842021724855044e-19,-0.00044642857392318547,-2.9659444912368473e-19,-0.0008928571478463709,-7.082359380718628e-22,-0.0,-2.2477790011593027e-22,7.600490251071821e-20,0.0,-0.0,0.00029761905898340046,-1.4574180282612931e-33,1.982541126480377e-19,4.956353010071399e-19,0.0022321429569274187,1.665620577488479e-33,2.1861270883096877e-33,-0.013392857275903225,1.3127254578001205e-17,-0.0,-0.0,-0.0,-1.1104137489374847e-33,-0.0,-0.0,-1.4574180282612931e-33,0.0066964286379516125,-2.7189135153452095e-18,-3.469446951953614e-18,0.0026785715017467737,-2.2657611766230274e-19,-2.973811754344051e-19,-0.0026785715017467737,-0.0017857142956927419,-2.648740724766991e-36,1.171497210852011e-35,1.1783434932807282e-36,1.5105075372466654e-19,0.0,-0.0,1.982541126480377e-19,-2.7189135153452095e-18,0.0017857142956927419,1.9903896464825145e-33,0.0014880952658131719,-5.664403070804539e-19,-7.434529256613157e-19,6.938893903907228e-18,-0.004464285913854837,1.781380112921855e-36,3.1458332434838283e-35,2.9458586883602695e-36,3.776268713869693e-19,0.0,-0.0,4.956353010071399e-19,-3.469446951953614e-18,1.9903896464825145e-33,0.0014880952658131719,8.0,7.0,3.0,5.0,0.04728599637746811,-0.008134921081364155,-0.00907738134264946,-0.01711309514939785,-0.011833900585770607,0.00039682540227659047,0.0005952381179668009,0.0011904762359336019,0.0007936508045531809,0.0004960317746736109,0.0013392857508733869,0.0008928571478463709,0.0017857142956927419,0.0017857142956927419,0.0008503401186317205,-0.008134921081364155,0.004308389965444803,0.0005952381179668009,0.0011904762359336019,0.0007936508045531809,-0.00039682540227659047,-0.0001700680295471102,-0.0003401360590942204,-0.00022675737272948027,3.5236570605778894e-19,-1.5790123091328344e-18,-1.113918635991472e-18,-7.871362200729068e-18,-4.515158756175801e-18,-3.1649584597503945e-18,-0.00907738134264946,0.0005952381179668009,0.0056051588617265224,0.0013392857508733869,0.0008928571478463709,1.043544591017298e-18,-0.00019841270113829523,-2.900035257016505e-18,-1.9962947360734786e-18,-0.0005952381179668009,-0.00044642857392318547,-0.00029761905898340046,-1.7601407509670915e-17,-7.293209274668805e-18,-6.1388576367454346e-18,-0.01711309514939785,0.0011904762359336019,0.0013392857508733869,0.0349702388048172,0.0017857142956927419,-1.5553062433552537e-18,-4.228869891809973e-18,-0.0011904762359336019,-4.147670947749624e-18,-6.884683795282953e-18,-0.0013392857508733869,-5.36556411878748e-18,-0.010714286006987095,-0.0017857142956927419,-4.909149431428177e-18,-0.011833900585770607,0.0007936508045531809,0.0008928571478463709,0.0017857142956927419,0.01101899053901434,-1.127027173953753e-18,-2.6817865475265325e-18,-3.742711030394182e-18,-0.00039682540227659047,-4.300496288231552e-18,-4.8334731587275384e-18,-0.00044642857392318547,-1.0139281336473882e-17,-0.0008928571478463709,-0.001700680237263441,0.00039682540227659047,-0.00039682540227659047,1.043544591017298e-18,-1.5553062433552537e-18,-1.127027173953753e-18,5.668934318237007e-05,-7.115076756936123e-20,3.3881317890172014e-20,2.710505431213761e-20,-1.4660513614598565e-19,3.3042353185064373e-20,2.2028234918180537e-20,2.64338825480515e-19,2.64338825480515e-19,1.2587562810388879e-19,0.0005952381179668009,-0.0001700680295471102,-0.00019841270113829523,-4.228869891809973e-18,-2.6817865475265325e-18,-7.115076756936123e-20,5.668934318237007e-05,1.9740516684561687e-19,1.3160344025551223e-19,3.436380006301198e-20,1.6601845766184287e-19,1.1011428314305904e-19,1.0007112143453474e-18,3.965082252960754e-19,3.326713111547256e-19,0.0011904762359336019,-0.0003401360590942204,-2.900035257016505e-18,-0.0011904762359336019,-3.742711030394182e-18,3.3881317890172014e-20,1.9740516684561687e-19,0.0003401360590942204,1.9510124911980648e-19,2.2657611766230274e-19,2.8322015354022696e-19,2.2657611766230274e-19,1.0551973944990622e-18,5.02783227174152e-19,4.3157357468493465e-19,0.0007936508045531809,-0.00022675737272948027,-1.9962947360734786e-18,-4.147670947749624e-18,-0.00039682540227659047,2.710505431213761e-20,1.3160344025551223e-19,1.9510124911980648e-19,0.00011337868636474013,1.5105075372466654e-19,2.2657611766230274e-19,1.6363831007270689e-19,9.06304470649211e-19,4.1071419928666696e-19,3.911563667328573e-19,0.0004960317746736109,3.5236570605778894e-19,-0.0005952381179668009,-6.884683795282953e-18,-4.300496288231552e-18,-1.4660513614598565e-19,3.436380006301198e-20,2.2657611766230274e-19,1.5105075372466654e-19,9.920635056914762e-05,3.1170812458958252e-19,1.9651164376299768e-19,1.718202300999862e-18,6.608470507765904e-19,5.664403070804539e-19,0.0013392857508733869,-1.5790123091328344e-18,-0.00044642857392318547,-0.0013392857508733869,-4.8334731587275384e-18,3.3042353185064373e-20,1.6601845766184287e-19,2.8322015354022696e-19,2.2657611766230274e-19,3.1170812458958252e-19,0.00044642857392318547,3.049318610115481e-19,1.2124001747826212e-18,6.616458487543752e-19,5.664403070804539e-19,0.0008928571478463709,-1.113918635991472e-18,-0.00029761905898340046,-5.36556411878748e-18,-0.00044642857392318547,2.2028234918180537e-20,1.1011428314305904e-19,2.2657611766230274e-19,1.6363831007270689e-19,1.9651164376299768e-19,3.049318610115481e-19,0.00014880952949170023,1.1895247017376204e-18,5.40224316830446e-19,4.575095125988051e-19,0.0017857142956927419,-7.871362200729068e-18,-1.7601407509670915e-17,-0.010714286006987095,-1.0139281336473882e-17,2.64338825480515e-19,1.0007112143453474e-18,1.0551973944990622e-18,9.06304470649211e-19,1.718202300999862e-18,1.2124001747826212e-18,1.1895247017376204e-18,0.0053571430034935474,3.0597368574255495e-32,8.49660486470075e-19,0.0017857142956927419,-4.515158756175801e-18,-7.293209274668805e-18,-0.0017857142956927419,-0.0008928571478463709,2.64338825480515e-19,3.965082252960754e-19,5.02783227174152e-19,4.1071419928666696e-19,6.608470507765904e-19,6.616458487543752e-19,5.40224316830446e-19,3.0597368574255495e-32,0.0008928571478463709,1.1275762052317801e-32,0.0008503401186317205,-3.1649584597503945e-18,-6.1388576367454346e-18,-4.909149431428177e-18,-0.001700680237263441,1.2587562810388879e-19,3.326713111547256e-19,4.3157357468493465e-19,3.911563667328573e-19,5.664403070804539e-19,5.664403070804539e-19,4.575095125988051e-19,8.49660486470075e-19,1.1275762052317801e-32,0.00042517005931586027,8.0,7.0,3.0,6.0,0.04076318070292473,-0.0068735829554498196,-0.007670776452869177,-0.014473497867584229,-0.0086805559694767,0.0003306878206785768,0.0004960317746736109,0.0009920635493472219,0.0005668934318237007,0.00041335978312417865,0.0011160714784637094,0.0006377550889737904,0.0014880952658131719,0.0012755101779475808,0.0005314626032486558,-0.0068735829554498196,0.0036173199769109488,0.0004960317746736109,0.0009920635493472219,0.0005668934318237007,-0.0003306878206785768,-0.00014172335795592517,-0.00028344671591185033,-0.0001619695540284738,8.131516293641283e-20,-0.0,5.394669683561683e-20,-1.2484453465633264e-33,1.0789339367123366e-19,1.6858342841909617e-19,-0.007670776452869177,0.0004960317746736109,0.004706396255642176,0.0011160714784637094,0.0006377550889737904,1.3552527156068805e-20,-0.0001653439103392884,-4.230411355806163e-20,3.190414619984287e-20,-0.0004960317746736109,-0.00037202381645329297,-0.00021258502965793014,0.0,-2.1252429897778834e-35,-3.320692332957526e-35,-0.014473497867584229,0.0009920635493472219,0.0011160714784637094,0.02935444936156273,0.0012755101779475808,-1.886317047591416e-20,-4.230411355806163e-20,-0.0009920635493472219,1.0789339367123366e-19,-0.0,-0.0011160714784637094,-3.4619166719633593e-35,-0.008928571827709675,-0.0012755101779475808,2.2790372703581387e-18,-0.0086805559694767,0.0005668934318237007,0.0006377550889737904,0.0012755101779475808,0.006395266391336918,-1.3552527156068805e-20,-2.204255063577396e-20,-4.511228261853272e-36,-0.00022675737272948027,2.542159313157588e-20,-0.0,-0.00025510202976875007,5.903623186966992e-18,-0.0005102040595375001,-0.0007971939048729837,0.0003306878206785768,-0.0003306878206785768,1.3552527156068805e-20,-1.886317047591416e-20,-1.3552527156068805e-20,4.724111931864172e-05,-3.3881317890172014e-21,-0.0,3.3881317890172014e-21,1.8878883026193232e-36,0.0,-4.409969672514796e-37,0.0,1.3323712609369554e-36,3.891182076091234e-37,0.0004960317746736109,-0.00014172335795592517,-0.0001653439103392884,-4.230411355806163e-20,-2.204255063577396e-20,-3.3881317890172014e-21,4.724111931864172e-05,1.2086889126421284e-20,6.297871667920672e-21,-2.710505431213761e-20,-0.0,-0.0,0.0,-4.195225189432879e-36,-6.555039784483607e-36,0.0009920635493472219,-0.00028344671591185033,-4.230411355806163e-20,-0.0009920635493472219,-4.511228261853272e-36,-0.0,1.2086889126421284e-20,0.00028344671591185033,1.611343642559876e-36,-6.770847460736376e-36,-0.0,-3.76158192263132e-37,0.0,-0.0,-0.0,0.0005668934318237007,-0.0001619695540284738,3.190414619984287e-20,1.0789339367123366e-19,-0.00022675737272948027,3.3881317890172014e-21,6.297871667920672e-21,1.611343642559876e-36,6.478781870100647e-05,-3.009265538105056e-36,-0.0,-2.1578678411129306e-20,4.993781478088802e-34,-4.315735682225861e-20,-6.743337266010817e-20,0.00041335978312417865,8.131516293641283e-20,-0.0004960317746736109,-0.0,2.542159313157588e-20,1.8878883026193232e-36,-2.710505431213761e-20,-6.770847460736376e-36,-3.009265538105056e-36,8.26719551696442e-05,-0.0,-6.776263578034403e-21,-0.0,0.0,0.0,0.0011160714784637094,-0.0,-0.00037202381645329297,-0.0011160714784637094,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,0.0,-0.0,0.0006377550889737904,5.394669683561683e-20,-0.00021258502965793014,-3.4619166719633593e-35,-0.00025510202976875007,-4.409969672514796e-37,-0.0,-3.76158192263132e-37,-2.1578678411129306e-20,-6.776263578034403e-21,-0.0,8.50340147735551e-05,-0.0,1.437428700907812e-35,2.2459824169149376e-35,0.0014880952658131719,-1.2484453465633264e-33,0.0,-0.008928571827709675,5.903623186966992e-18,0.0,0.0,0.0,4.993781478088802e-34,-0.0,-0.0,-0.0,0.004464285913854837,-1.0357765378848125e-18,-9.735692470983746e-19,0.0012755101779475808,1.0789339367123366e-19,-2.1252429897778834e-35,-0.0012755101779475808,-0.0005102040595375001,1.3323712609369554e-36,-4.195225189432879e-36,-0.0,-4.315735682225861e-20,0.0,0.0,1.437428700907812e-35,-1.0357765378848125e-18,0.0005102040595375001,-1.3275945101094922e-19,0.0005314626032486558,1.6858342841909617e-19,-3.320692332957526e-35,2.2790372703581387e-18,-0.0007971939048729837,3.891182076091234e-37,-6.555039784483607e-36,-0.0,-6.743337266010817e-20,0.0,-0.0,2.2459824169149376e-35,-9.735692470983746e-19,-1.3275945101094922e-19,0.0001594387722434476,8.0,7.0,3.0,7.0,0.0358382947742939,-0.0059523810632526875,-0.006643282249569893,-0.01254251692444086,-0.006643282249569893,0.00028344671591185033,0.00042517005931586027,0.0008503401186317205,0.00042517005931586027,0.00035430840216577053,0.0009566326625645161,0.00047831633128225803,0.0012755101779475808,0.0009566326625645161,0.00035430840216577053,-0.0059523810632526875,0.003117913845926523,0.00042517005931586027,0.0008503401186317205,0.00042517005931586027,-0.00028344671591185033,-0.00012147716188337654,-0.00024295432376675308,-0.00012147716188337654,6.776263578034403e-20,8.110193128413315e-20,5.025963134362834e-21,6.473603878767961e-19,8.174398499818769e-20,5.286696441111944e-20,-0.006643282249569893,0.00042517005931586027,0.004056830890476704,0.0009566326625645161,0.00047831633128225803,-0.0,-0.00014172335795592517,4.373229904677125e-20,-3.3881317890172014e-21,-0.00042517005931586027,-0.0003188775444868952,-0.0001594387722434476,8.49660486470075e-19,1.1519648082658485e-19,6.958701493307241e-20,-0.01254251692444086,0.0008503401186317205,0.0009566326625645161,0.0252976194024086,0.0009566326625645161,7.837055161896625e-22,-3.624290238313957e-20,-0.0008503401186317205,6.09824063397927e-23,-0.0,-0.0009566326625645161,9.269312031157853e-22,-0.0076530613005161285,-0.0009566326625645161,1.2274702681699951e-18,-0.006643282249569893,0.00042517005931586027,0.00047831633128225803,0.0009566326625645161,0.004056830890476704,-6.776263578034403e-21,-2.119461295972468e-20,8.092004848459951e-20,-0.00014172335795592517,8.284978007432903e-21,1.0842021724855044e-19,-0.0001594387722434476,5.428868251066163e-18,-0.0003188775444868952,-0.00042517005931586027,0.00028344671591185033,-0.00028344671591185033,-0.0,7.837055161896625e-22,-6.776263578034403e-21,4.049238850711845e-05,-0.0,-0.0,-3.3881317890172014e-21,-6.479752952841366e-22,-8.132982032006285e-37,-9.802013253548265e-38,-9.997372106412386e-36,-8.866525232216378e-37,2.0280533954207402e-21,0.00042517005931586027,-0.00012147716188337654,-0.00014172335795592517,-3.624290238313957e-20,-2.119461295972468e-20,-0.0,4.049238850711845e-05,1.0625070344758285e-20,5.7571556568395485e-21,-2.0328790734103208e-20,-0.0,2.541098841762901e-21,-2.6841842399035203e-35,-3.149476298343721e-22,-9.636585473789582e-22,0.0008503401186317205,-0.00024295432376675308,4.373229904677125e-20,-0.0008503401186317205,8.092004848459951e-20,-0.0,1.0625070344758285e-20,0.00024295432376675308,1.5158171486676287e-36,-3.76158192263132e-36,-8.092004848459951e-20,7.52316384526264e-37,-6.473603878767961e-19,-8.092004848459951e-20,1.0381966106462443e-34,0.00042517005931586027,-0.00012147716188337654,-3.3881317890172014e-21,6.09824063397927e-23,-0.00014172335795592517,-3.3881317890172014e-21,5.7571556568395485e-21,1.5158171486676287e-36,4.049238850711845e-05,-6.233883310256978e-22,-6.062881994941092e-23,-4.2164198865505124e-21,1.3902289293024509e-34,4.030135432492364e-23,-2.1777082204694124e-20,0.00035430840216577053,6.776263578034403e-20,-0.00042517005931586027,-0.0,8.284978007432903e-21,-6.479752952841366e-22,-2.0328790734103208e-20,-3.76158192263132e-36,-6.233883310256978e-22,7.086167897796258e-05,-0.0,3.3881317890172014e-21,2.0044091442713418e-35,-9.448429147466653e-22,-3.3879209548962284e-21,0.0009566326625645161,8.110193128413315e-20,-0.0003188775444868952,-0.0009566326625645161,1.0842021724855044e-19,-8.132982032006285e-37,-0.0,-8.092004848459951e-20,-6.062881994941092e-23,-0.0,0.0003188775444868952,-0.0,-8.49660486470075e-19,-1.0702575229449943e-19,-1.8188647247000724e-22,0.00047831633128225803,5.025963134362834e-21,-0.0001594387722434476,9.269312031157853e-22,-0.0001594387722434476,-9.802013253548265e-38,2.541098841762901e-21,7.52316384526264e-37,-4.2164198865505124e-21,3.3881317890172014e-21,-0.0,5.3146257414482534e-05,1.3385168205933668e-34,-3.089770508762291e-22,-1.4670279192588092e-20,0.0012755101779475808,6.473603878767961e-19,8.49660486470075e-19,-0.0076530613005161285,5.428868251066163e-18,-9.997372106412386e-36,-2.6841842399035203e-35,-6.473603878767961e-19,1.3902289293024509e-34,2.0044091442713418e-35,-8.49660486470075e-19,1.3385168205933668e-34,0.0038265306502580643,-1.747006074097454e-18,-6.136436789285222e-19,0.0009566326625645161,8.174398499818769e-20,1.1519648082658485e-19,-0.0009566326625645161,-0.0003188775444868952,-8.866525232216378e-37,-3.149476298343721e-22,-8.092004848459951e-20,4.030135432492364e-23,-9.448429147466653e-22,-1.0702575229449943e-19,-3.089770508762291e-22,-1.747006074097454e-18,0.0003188775444868952,1.2090406613021454e-22,0.00035430840216577053,5.286696441111944e-20,6.958701493307241e-20,1.2274702681699951e-18,-0.00042517005931586027,2.0280533954207402e-21,-9.636585473789582e-22,1.0381966106462443e-34,-2.1777082204694124e-20,-3.3879209548962284e-21,-1.8188647247000724e-22,-1.4670279192588092e-20,-6.136436789285222e-19,1.2090406613021454e-22,7.086167897796258e-05,8.0,7.0,3.0,8.0,0.031983714550733566,-0.005249669309705496,-0.005859375,-0.011067708022892475,-0.005249669309705496,0.00024801588733680546,0.00037202381645329297,0.0007440476329065859,0.0003306878206785768,0.0003100198518950492,0.0008370535797439516,0.00037202381645329297,0.0011160714784637094,0.0007440476329065859,0.00024801588733680546,-0.005249669309705496,0.0027399847749620676,0.00037202381645329297,0.0007440476329065859,0.0003306878206785768,-0.00024801588733680546,-0.00010629251482896507,-0.00021258502965793014,-9.448223863728344e-05,-1.0164395367051604e-19,-1.0146276961241782e-21,2.4451817567411222e-20,-2.2223285490596717e-34,7.314019408227984e-35,2.4192861568068108e-20,-0.005859375,0.00037202381645329297,0.0035652280785143375,0.0008370535797439516,0.00037202381645329297,-6.776263578034403e-21,-0.00012400794366840273,-3.920183083181832e-20,3.3881317890172014e-21,-0.00037202381645329297,-0.00027901786961592734,-0.00012400794366840273,-4.935195482492292e-34,8.228272192988889e-35,4.5867633486334213e-20,-0.011067708022892475,0.0007440476329065859,0.0008370535797439516,0.0222284235060215,0.0007440476329065859,2.3822965219724504e-21,-3.920183083181832e-20,-0.0007440476329065859,-8.696808535423825e-22,2.710505431213761e-20,-0.0008370535797439516,-2.2204670435525492e-34,-0.0066964286379516125,-0.0007440476329065859,8.237758854529711e-19,-0.005249669309705496,0.0003306878206785768,0.00037202381645329297,0.0007440476329065859,0.0027399847749620676,-0.0,-2.179086800970763e-20,-6.840193304843052e-36,-9.448223863728344e-05,-2.788153456925482e-20,-6.776263578034403e-21,-0.00010629251482896507,3.538566163938545e-18,-0.00021258502965793014,-0.00024801588733680546,0.00024801588733680546,-0.00024801588733680546,-6.776263578034403e-21,2.3822965219724504e-21,-0.0,3.543083948898129e-05,1.6940658945086007e-21,-0.0,-0.0,1.1289588595961209e-21,-1.2187852248000598e-38,9.402456538260244e-38,0.0,-0.0,-7.696967601516795e-22,0.00037202381645329297,-0.00010629251482896507,-0.00012400794366840273,-3.920183083181832e-20,-2.179086800970763e-20,1.6940658945086007e-21,3.543083948898129e-05,1.1200523094805234e-20,5.077600934233094e-21,3.049318610115481e-20,-0.0,-0.0,-1.4410322038080333e-36,-0.0,5.308463892801733e-22,0.0007440476329065859,-0.00021258502965793014,-3.920183083181832e-20,-0.0007440476329065859,-6.840193304843052e-36,-0.0,1.1200523094805234e-20,0.00021258502965793014,1.6051492307242975e-36,8.275480229788904e-36,-0.0,-0.0,-0.0,-0.0,1.6141877627646205e-37,0.0003306878206785768,-9.448223863728344e-05,3.3881317890172014e-21,-8.696808535423825e-22,-9.448223863728344e-05,-0.0,5.077600934233094e-21,1.6051492307242975e-36,2.6994925065082498e-05,4.618753589471629e-22,2.8989363467649347e-22,-6.986233359890759e-21,6.473027242583414e-35,-2.0897198719202704e-35,-5.70219903709949e-21,0.0003100198518950492,-1.0164395367051604e-19,-0.00037202381645329297,2.710505431213761e-20,-2.788153456925482e-20,1.1289588595961209e-21,3.049318610115481e-20,8.275480229788904e-36,4.618753589471629e-22,6.200397183420137e-05,-0.0,3.3881317890172014e-21,-4.3230964320578963e-36,-0.0,8.356571943477788e-22,0.0008370535797439516,-1.0146276961241782e-21,-0.00027901786961592734,-0.0008370535797439516,-6.776263578034403e-21,-1.2187852248000598e-38,-0.0,-0.0,2.8989363467649347e-22,-0.0,0.00027901786961592734,-0.0,-5.9132215908501906e-36,0.0,7.609707720931336e-22,0.00037202381645329297,2.4451817567411222e-20,-0.00012400794366840273,-2.2204670435525492e-34,-0.00010629251482896507,9.402456538260244e-38,-0.0,-0.0,-6.986233359890759e-21,3.3881317890172014e-21,-0.0,3.543083948898129e-05,1.521647131425719e-34,-2.350934891783545e-35,-1.540523886036426e-20,0.0011160714784637094,-2.2223285490596717e-34,-4.935195482492292e-34,-0.0066964286379516125,3.538566163938545e-18,0.0,-1.4410322038080333e-36,-0.0,6.473027242583414e-35,-4.3230964320578963e-36,-5.9132215908501906e-36,1.521647131425719e-34,0.0033482143189758062,-6.473603878767961e-19,-4.1302940027302046e-19,0.0007440476329065859,7.314019408227984e-35,8.228272192988889e-35,-0.0007440476329065859,-0.00021258502965793014,-0.0,-0.0,-0.0,-2.0897198719202704e-35,-0.0,0.0,-2.350934891783545e-35,-6.473603878767961e-19,0.00021258502965793014,2.500200719914675e-35,0.00024801588733680546,2.4192861568068108e-20,4.5867633486334213e-20,8.237758854529711e-19,-0.00024801588733680546,-7.696967601516795e-22,5.308463892801733e-22,1.6141877627646205e-37,-5.70219903709949e-21,8.356571943477788e-22,7.609707720931336e-22,-1.540523886036426e-20,-4.1302940027302046e-19,2.500200719914675e-35,3.543083948898129e-05,8.0,7.0,4.0,3.0,0.0563616082072258,-0.00997023843228817,-0.01112351194024086,-0.01711309514939785,-0.02094493992626667,0.0004960317746736109,0.0007440476329065859,0.0011904762359336019,0.0014880952658131719,0.0006200397037900984,0.0013392857508733869,0.0016741071594879031,0.0014880952658131719,0.0026785715017467737,0.0022321429569274187,-0.00997023843228817,0.005328798200935125,0.0007440476329065859,0.0011904762359336019,0.0014880952658131719,-0.0004960317746736109,-0.00021258502965793014,-0.0003401360590942204,-0.00042517005931586027,-1.0842021724855044e-19,-1.0842021724855044e-19,-0.0,-5.664403070804539e-19,-2.2657611766230274e-19,-0.0,-0.01112351194024086,0.0007440476329065859,0.006932043470442295,0.0013392857508733869,0.0016741071594879031,-0.0,-0.00024801588733680546,-1.865922101795354e-19,-9.356059609063154e-20,-0.0007440476329065859,-0.00044642857392318547,-0.0005580357392318547,-7.434529256613157e-19,-2.973811754344051e-19,-0.0,-0.01711309514939785,0.0011904762359336019,0.0013392857508733869,0.02182539738714695,0.0026785715017467737,1.4655055515025422e-20,-6.522153693858113e-20,-0.0007936508045531809,-1.2051907787563387e-19,2.710505431213761e-20,-0.0008928571478463709,7.08050367694696e-21,-0.004464285913854837,-0.0017857142956927419,-0.0,-0.02094493992626667,0.0014880952658131719,0.0016741071594879031,0.0026785715017467737,0.04326637089252472,-2.710505431213761e-20,-8.300922883092143e-20,-3.4776952868292633e-19,-0.0014880952658131719,-5.11221400000382e-20,-2.8951393817659567e-19,-0.0016741071594879031,-1.4869058513226313e-18,-0.0026785715017467737,-0.013392857275903225,0.0004960317746736109,-0.0004960317746736109,-0.0,1.4655055515025422e-20,-2.710505431213761e-20,7.086167897796258e-05,1.0164395367051604e-20,-0.0,6.776263578034403e-21,-4.920565057025163e-21,-7.082359380718628e-22,-0.0,1.1248263399580384e-35,2.0464700884976272e-36,-0.0,0.0007440476329065859,-0.00021258502965793014,-0.00024801588733680546,-6.522153693858113e-20,-8.300922883092143e-20,1.0164395367051604e-20,7.086167897796258e-05,1.8634724839594607e-20,2.371692252312041e-20,4.743384504624082e-20,-0.0,-0.0,3.2136414170017085e-35,1.2120537748568583e-35,0.0,0.0011904762359336019,-0.0003401360590942204,-1.865922101795354e-19,-0.0007936508045531809,-3.4776952868292633e-19,-0.0,1.8634724839594607e-20,0.00022675737272948027,3.4626688401438986e-20,1.1328190021299697e-21,7.600490251071821e-20,-0.0,3.776268713869693e-19,1.5105075372466654e-19,-0.0,0.0014880952658131719,-0.00042517005931586027,-9.356059609063154e-20,-1.2051907787563387e-19,-0.0014880952658131719,6.776263578034403e-21,2.371692252312041e-20,3.4626688401438986e-20,0.00042517005931586027,1.675159587048418e-21,-2.2477790011593027e-22,-0.0,5.72906903615123e-35,2.291627671857677e-35,-0.0,0.0006200397037900984,-1.0842021724855044e-19,-0.0007440476329065859,2.710505431213761e-20,-5.11221400000382e-20,-4.920565057025163e-21,4.743384504624082e-20,1.1328190021299697e-21,1.675159587048418e-21,0.00012400794366840273,-0.0,0.0,1.6628907989336344e-36,1.405898669344278e-36,-0.0,0.0013392857508733869,-1.0842021724855044e-19,-0.00044642857392318547,-0.0008928571478463709,-2.8951393817659567e-19,-7.082359380718628e-22,-0.0,7.600490251071821e-20,-2.2477790011593027e-22,-0.0,0.00029761905898340046,-2.3601680269479147e-21,4.956353010071399e-19,1.982541126480377e-19,-0.0,0.0016741071594879031,-0.0,-0.0005580357392318547,7.08050367694696e-21,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,0.0,-2.3601680269479147e-21,0.0005580357392318547,-3.9304691937279e-36,-1.5721876416179194e-36,-0.0,0.0014880952658131719,-5.664403070804539e-19,-7.434529256613157e-19,-0.004464285913854837,-1.4869058513226313e-18,1.1248263399580384e-35,3.2136414170017085e-35,3.776268713869693e-19,5.72906903615123e-35,1.6628907989336344e-36,4.956353010071399e-19,-3.9304691937279e-36,0.0014880952658131719,9.912706020142797e-19,-0.0,0.0026785715017467737,-2.2657611766230274e-19,-2.973811754344051e-19,-0.0017857142956927419,-0.0026785715017467737,2.0464700884976272e-36,1.2120537748568583e-35,1.5105075372466654e-19,2.291627671857677e-35,1.405898669344278e-36,1.982541126480377e-19,-1.5721876416179194e-36,9.912706020142797e-19,0.0017857142956927419,-0.0,0.0022321429569274187,-0.0,-0.0,-0.0,-0.013392857275903225,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0066964286379516125,8.0,7.0,4.0,4.0,0.04530134052038193,-0.007700892630964518,-0.008593750186264515,-0.013236607424914837,-0.013236607424914837,0.00037202381645329297,0.0005580357392318547,0.0008928571478463709,0.0008928571478463709,0.0004650297632906586,0.0010044643422588706,0.0010044643422588706,0.0011160714784637094,0.0016071428544819355,0.0011160714784637094,-0.007700892630964518,0.004060374107211828,0.0005580357392318547,0.0008928571478463709,0.0008928571478463709,-0.00037202381645329297,-0.0001594387722434476,-0.00025510202976875007,-0.00025510202976875007,-1.3552527156068805e-19,-6.776263578034403e-21,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.008593750186264515,0.0005580357392318547,0.005282738246023655,0.0010044643422588706,0.0010044643422588706,-0.0,-0.00018601190822664648,6.639683134204827e-20,6.639683134204827e-20,-0.0005580357392318547,-0.0003348214377183467,-0.0003348214377183467,-0.0,-0.0,-0.0,-0.013236607424914837,0.0008928571478463709,0.0010044643422588706,0.016636904329061508,0.0016071428544819355,1.458397937465695e-20,5.421010862427522e-20,-0.0005952381179668009,9.159739276666203e-20,-0.0,-0.0006696428754366934,-5.500217525826666e-21,-0.0033482143189758062,-0.0010714285308495164,-0.0,-0.013236607424914837,0.0008928571478463709,0.0010044643422588706,0.0016071428544819355,0.016636904329061508,1.3552527156068805e-20,5.421010862427522e-20,9.159739276666203e-20,-0.0005952381179668009,-8.157231715220487e-22,-5.500217525826666e-21,-0.0006696428754366934,-0.0,-0.0010714285308495164,-0.0033482143189758062,0.00037202381645329297,-0.00037202381645329297,-0.0,1.458397937465695e-20,1.3552527156068805e-20,5.3146257414482534e-05,-0.0,-0.0,-0.0,7.819116591129644e-22,4.374955937386458e-22,4.374955937386458e-22,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0001594387722434476,-0.00018601190822664648,5.421010862427522e-20,5.421010862427522e-20,-0.0,5.3146257414482534e-05,-1.6940658945086007e-20,-1.6940658945086007e-20,4.404571325722362e-20,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,-0.0,0.0,0.0008928571478463709,-0.00025510202976875007,6.639683134204827e-20,-0.0005952381179668009,9.159739276666203e-20,-0.0,-1.6940658945086007e-20,0.0001700680295471102,-2.5708282299659397e-20,-8.440188675076319e-22,-5.394669602782326e-22,-5.394669602782326e-22,-0.0,-0.0,-0.0,0.0008928571478463709,-0.00025510202976875007,6.639683134204827e-20,9.159739276666203e-20,-0.0005952381179668009,-0.0,-1.6940658945086007e-20,-2.5708282299659397e-20,0.0001700680295471102,-8.440188675076319e-22,-5.394669602782326e-22,-5.394669602782326e-22,-0.0,-0.0,-0.0,0.0004650297632906586,-1.3552527156068805e-19,-0.0005580357392318547,-0.0,-8.157231715220487e-22,7.819116591129644e-22,4.404571325722362e-20,-8.440188675076319e-22,-8.440188675076319e-22,9.300595411332324e-05,1.3552527156068805e-20,1.3552527156068805e-20,0.0,0.0,-0.0,0.0010044643422588706,-6.776263578034403e-21,-0.0003348214377183467,-0.0006696428754366934,-5.500217525826666e-21,4.374955937386458e-22,1.6940658945086007e-21,-5.394669602782326e-22,-5.394669602782326e-22,1.3552527156068805e-20,0.00022321428696159273,2.4627840632410226e-21,-0.0,-0.0,-0.0,0.0010044643422588706,-6.776263578034403e-21,-0.0003348214377183467,-5.500217525826666e-21,-0.0006696428754366934,4.374955937386458e-22,1.6940658945086007e-21,-5.394669602782326e-22,-5.394669602782326e-22,1.3552527156068805e-20,2.4627840632410226e-21,0.00022321428696159273,-0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0033482143189758062,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0011160714784637094,-0.0,-0.0,0.0016071428544819355,-0.0,-0.0,-0.0010714285308495164,-0.0010714285308495164,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0,0.0011160714784637094,-0.0,-0.0,-0.0,-0.0033482143189758062,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0011160714784637094,8.0,7.0,4.0,5.0,0.037942178547382355,-0.006279761902987957,-0.007008928339928389,-0.010803570970892906,-0.009143282659351826,0.00029761905898340046,0.00044642857392318547,0.0007142857066355646,0.0005952381179668009,0.00037202381645329297,0.0008035714272409678,0.0006696428754366934,0.0008928571478463709,0.0010714285308495164,0.0006377550889737904,-0.006279761902987957,0.0032823130022734404,0.00044642857392318547,0.0007142857066355646,0.0005952381179668009,-0.00029761905898340046,-0.00012755101488437504,-0.0002040816325461492,-0.0001700680295471102,-8.131516293641283e-20,-0.0,5.082197683525802e-21,-0.0,-0.0,0.0,-0.007008928339928389,0.00044642857392318547,0.0042708334513008595,0.0008035714272409678,0.0006696428754366934,-1.3552527156068805e-20,-0.00014880952949170023,2.6239130304526704e-20,2.6661204058843288e-20,-0.00044642857392318547,-0.0002678571327123791,-0.00022321428696159273,-0.0,-0.0,-0.0,-0.010803570970892906,0.0007142857066355646,0.0008035714272409678,0.013452380895614624,0.0010714285308495164,-8.112241046664237e-21,2.6239130304526704e-20,-0.0004761904710903764,4.2657927140384114e-20,-0.0,-0.0005357142654247582,9.604857361963848e-22,-0.0026785715017467737,-0.0007142857066355646,-0.0,-0.009143282659351826,0.0005952381179668009,0.0006696428754366934,0.0010714285308495164,0.00839817151427269,-0.0,3.174340174236909e-20,4.2657927140384114e-20,-0.00029761905898340046,9.790802959242437e-21,9.604857361963848e-22,-0.0003348214377183467,-0.0,-0.0005357142654247582,-0.0012755101779475808,0.00029761905898340046,-0.00029761905898340046,-1.3552527156068805e-20,-8.112241046664237e-21,-0.0,4.251700738677755e-05,3.3881317890172014e-21,6.776263578034403e-21,-0.0,3.5415648803163714e-36,-0.0,-1.6856145238804308e-37,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00012755101488437504,-0.00014880952949170023,2.6239130304526704e-20,3.174340174236909e-20,3.3881317890172014e-21,4.251700738677755e-05,-7.496894603520077e-21,-7.617486873955225e-21,2.710505431213761e-20,-0.0,-1.6940658945086007e-21,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0002040816325461492,2.6239130304526704e-20,-0.0004761904710903764,4.2657927140384114e-20,6.776263578034403e-21,-7.496894603520077e-21,0.0001360544265480712,-1.2187978836769647e-20,-5.266214691683848e-36,-0.0,3.76158192263132e-37,-0.0,-0.0,-0.0,0.0005952381179668009,-0.0001700680295471102,2.6661204058843288e-20,4.2657927140384114e-20,-0.00029761905898340046,-0.0,-7.617486873955225e-21,-1.2187978836769647e-20,8.50340147735551e-05,-3.76158192263132e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-8.131516293641283e-20,-0.00044642857392318547,-0.0,9.790802959242437e-21,3.5415648803163714e-36,2.710505431213761e-20,-5.266214691683848e-36,-3.76158192263132e-36,7.440476474585012e-05,-0.0,-6.776263578034403e-21,0.0,0.0,-0.0,0.0008035714272409678,-0.0,-0.0002678571327123791,-0.0005357142654247582,9.604857361963848e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-3.201619120654616e-22,-0.0,-0.0,-0.0,0.0006696428754366934,5.082197683525802e-21,-0.00022321428696159273,9.604857361963848e-22,-0.0003348214377183467,-1.6856145238804308e-37,-1.6940658945086007e-21,3.76158192263132e-37,-0.0,-6.776263578034403e-21,-3.201619120654616e-22,0.00011160714348079637,-0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0008928571478463709,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0,-0.0007142857066355646,-0.0005357142654247582,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0006377550889737904,0.0,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0003188775444868952,8.0,7.0,4.0,6.0,0.032669004052877426,-0.005303996615111828,-0.005920493043959141,-0.009130527265369892,-0.006701743230223656,0.00024801588733680546,0.00037202381645329297,0.0005952381179668009,0.00042517005931586027,0.0003100198518950492,0.0006696428754366934,0.00047831633128225803,0.0007440476329065859,0.0007653061184100807,0.00039859695243649185,-0.005303996615111828,0.00275550689548254,0.00037202381645329297,0.0005952381179668009,0.00042517005931586027,-0.00024801588733680546,-0.00010629251482896507,-0.0001700680295471102,-0.00012147716188337654,-7.453889935837843e-20,-5.664402941557569e-20,-4.300112308406266e-20,-2.8322015354022696e-19,-1.2947206723560157e-19,-1.2643756808314786e-19,-0.005920493043959141,0.00037202381645329297,0.003585600992664695,0.0006696428754366934,0.00047831633128225803,-6.776263578034403e-21,-0.00012400794366840273,-9.200154804407661e-20,-6.594373669917381e-20,-0.00037202381645329297,-0.00022321428696159273,-0.0001594387722434476,-3.7172646283065783e-19,-1.699320947090756e-19,-1.6594931053251226e-19,-0.009130527265369892,0.0005952381179668009,0.0006696428754366934,0.011295351199805737,0.0007653061184100807,8.190202011603793e-21,-3.5357518628500925e-20,-0.00039682540227659047,-1.0550998259608722e-19,1.3552527156068805e-20,-0.00044642857392318547,-7.9883849671012e-20,-0.0022321429569274187,-0.0005102040595375001,-2.6551890202189845e-19,-0.006701743230223656,0.00042517005931586027,0.00047831633128225803,0.0007653061184100807,0.004872980527579784,-1.3552527156068805e-20,-2.802481452981122e-20,-1.0550998259608722e-19,-0.0001700680295471102,-7.132561933368816e-21,-7.9883849671012e-20,-0.00019132652960252017,-4.248302432350375e-19,-0.0003061224415432662,-0.0005978954141028225,0.00024801588733680546,-0.00024801588733680546,-6.776263578034403e-21,8.190202011603793e-21,-1.3552527156068805e-20,3.543083948898129e-05,1.6940658945086007e-21,3.3881317890172014e-21,-3.3881317890172014e-21,4.474891108779263e-22,3.6337817090228624e-37,3.4494237441477294e-37,3.173100421983319e-36,6.313978243618407e-37,1.2411833664564611e-36,0.00037202381645329297,-0.00010629251482896507,-0.00012400794366840273,-3.5357518628500925e-20,-2.802481452981122e-20,1.6940658945086007e-21,3.543083948898129e-05,1.0102147602576288e-20,7.281061855954825e-21,2.371692252312041e-20,-0.0,8.470329472543003e-22,1.5380275992866795e-35,7.445222055222614e-36,7.69138351535004e-36,0.0005952381179668009,-0.0001700680295471102,-9.200154804407661e-20,-0.00039682540227659047,-1.0550998259608722e-19,3.3881317890172014e-21,1.0102147602576288e-20,0.00011337868636474013,1.1649698323292867e-20,7.52316384526264e-36,3.7762688431166636e-20,1.0532429383367696e-35,1.8881343569348464e-19,4.315735682225861e-20,3.4585227764084706e-35,0.00042517005931586027,-0.00012147716188337654,-6.594373669917381e-20,-1.0550998259608722e-19,-0.0001700680295471102,-3.3881317890172014e-21,7.281061855954825e-21,1.1649698323292867e-20,4.8590864025754854e-05,6.770847460736376e-36,1.0908587575630828e-35,1.6184008404450196e-20,5.533636212664813e-35,2.5894414093355167e-20,5.0575027879493996e-20,0.0003100198518950492,-7.453889935837843e-20,-0.00037202381645329297,1.3552527156068805e-20,-7.132561933368816e-21,4.474891108779263e-22,2.371692252312041e-20,7.52316384526264e-36,6.770847460736376e-36,6.200397183420137e-05,-0.0,-3.3881317890172014e-21,-1.568345079441762e-35,-4.513898307157584e-36,-3.009265538105056e-36,0.0006696428754366934,-5.664402941557569e-20,-0.00022321428696159273,-0.00044642857392318547,-7.9883849671012e-20,3.6337817090228624e-37,-0.0,3.7762688431166636e-20,1.0908587575630828e-35,-0.0,0.00014880952949170023,-1.6940658945086007e-21,2.4781765050356993e-19,5.664402941557569e-20,2.7083389842945504e-35,0.00047831633128225803,-4.300112308406266e-20,-0.0001594387722434476,-7.9883849671012e-20,-0.00019132652960252017,3.4494237441477294e-37,8.470329472543003e-22,1.0532429383367696e-35,1.6184008404450196e-20,-3.3881317890172014e-21,-1.6940658945086007e-21,6.377550744218752e-05,4.2152636229480713e-35,3.3986418295580265e-20,6.637972550547461e-20,0.0007440476329065859,-2.8322015354022696e-19,-3.7172646283065783e-19,-0.0022321429569274187,-4.248302432350375e-19,3.173100421983319e-36,1.5380275992866795e-35,1.8881343569348464e-19,5.533636212664813e-35,-1.568345079441762e-35,2.4781765050356993e-19,4.2152636229480713e-35,0.0007440476329065859,2.8322015354022696e-19,1.4739259637909209e-34,0.0007653061184100807,-1.2947206723560157e-19,-1.699320947090756e-19,-0.0005102040595375001,-0.0003061224415432662,6.313978243618407e-37,7.445222055222614e-36,4.315735682225861e-20,2.5894414093355167e-20,-4.513898307157584e-36,5.664402941557569e-20,3.3986418295580265e-20,2.8322015354022696e-19,0.0002040816325461492,1.0620756080875938e-19,0.00039859695243649185,-1.2643756808314786e-19,-1.6594931053251226e-19,-2.6551890202189845e-19,-0.0005978954141028225,1.2411833664564611e-36,7.69138351535004e-36,3.4585227764084706e-35,5.0575027879493996e-20,-3.009265538105056e-36,2.7083389842945504e-35,6.637972550547461e-20,1.4739259637909209e-34,1.0620756080875938e-19,0.00011957908282056451,8.0,7.0,4.0,7.0,0.028696322813630104,-0.004591836594045162,-0.0051259566098451614,-0.007908163592219353,-0.0051259566098451614,0.00021258502965793014,0.0003188775444868952,0.0005102040595375001,0.0003188775444868952,0.0002657313016243279,0.0005739795742556453,0.0003587372484616935,0.0006377550889737904,0.0005739795742556453,0.0002657313016243279,-0.004591836594045162,0.002374878618866205,0.0003188775444868952,0.0005102040595375001,0.0003188775444868952,-0.00021258502965793014,-9.110787505051121e-05,-0.00014577258843928576,-9.110787505051121e-05,-7.801830535811203e-19,-4.631434397509038e-19,-3.356387699034713e-19,-2.5618629362943603e-18,-4.684478388264767e-19,-7.875309506612171e-19,-0.0051259566098451614,0.0003188775444868952,0.003090454963967204,0.0005739795742556453,0.0003587372484616935,-8.063753657860939e-19,-0.00010629251482896507,-3.4897850484696086e-19,-2.744386749103933e-19,-0.0003188775444868952,-0.00019132652960252017,-0.00011957908282056451,-1.1319015425083748e-18,6.776263578034403e-20,-3.197319574771059e-19,-0.007908163592219353,0.0005102040595375001,0.0005739795742556453,0.009736394509673119,0.0005739795742556453,-1.3463970233664644e-18,-4.7133862827219635e-19,-0.0003401360590942204,-4.870313301668813e-19,-0.0,-0.00038265305920504034,-4.948483420518722e-19,-0.0019132653251290321,-0.00038265305920504034,-5.620604891345622e-19,-0.0051259566098451614,0.0003188775444868952,0.0003587372484616935,0.0005739795742556453,0.003090454963967204,-8.108580643206719e-19,-2.560461588939119e-19,-3.421704723635256e-19,-0.00010629251482896507,2.437810963560164e-20,-4.0318768289304696e-19,-0.00011957908282056451,-6.107898024176376e-19,-0.00019132652960252017,-0.0003188775444868952,0.00021258502965793014,-0.00021258502965793014,-8.063753657860939e-19,-1.3463970233664644e-18,-8.108580643206719e-19,3.0369290470844135e-05,4.573977915173222e-20,7.453889935837843e-20,4.743384504624082e-20,7.929600859882236e-20,5.664402941557569e-20,3.540251919252837e-20,2.5961846761619285e-19,5.664402941557569e-20,7.784134040581397e-20,0.0003188775444868952,-9.110787505051121e-05,-0.00010629251482896507,-4.7133862827219635e-19,-2.560461588939119e-19,4.573977915173222e-20,3.0369290470844135e-05,1.150134865031031e-20,6.803188953207857e-21,2.0312327901208842e-20,2.879912020664621e-20,1.5246593050577406e-20,1.2475173522067357e-19,6.327780628633643e-21,3.45365968005046e-20,0.0005102040595375001,-0.00014577258843928576,-3.4897850484696086e-19,-0.0003401360590942204,-3.421704723635256e-19,7.453889935837843e-20,1.150134865031031e-20,9.718172805150971e-05,1.2066365515265879e-20,5.48458098497193e-20,6.662635295939899e-21,6.069003555565607e-21,3.331317728749306e-20,8.055652179047967e-22,5.48458098497193e-20,0.0003188775444868952,-9.110787505051121e-05,-2.744386749103933e-19,-4.870313301668813e-19,-0.00010629251482896507,4.743384504624082e-20,6.803188953207857e-21,1.2066365515265879e-20,3.0369290470844135e-05,3.46755437563679e-20,6.2653074897531486e-21,2.1107618439325963e-20,1.2475173522067357e-19,3.3433315577943587e-20,2.6571891170907436e-20,0.0002657313016243279,-7.801830535811203e-19,-0.0003188775444868952,-0.0,2.437810963560164e-20,7.929600859882236e-20,2.0312327901208842e-20,5.48458098497193e-20,3.46755437563679e-20,5.3146257414482534e-05,-1.0164395367051604e-20,-1.3552527156068805e-20,-1.180083973084279e-20,-2.754568308468695e-20,-5.4960266928013485e-21,0.0005739795742556453,-4.631434397509038e-19,-0.00019132652960252017,-0.00038265305920504034,-4.0318768289304696e-19,5.664402941557569e-20,2.879912020664621e-20,6.662635295939899e-21,6.2653074897531486e-21,-1.0164395367051604e-20,0.00012755101488437504,1.6940658945086007e-20,2.9240147059865344e-19,3.364636305329001e-20,5.723294323762223e-20,0.0003587372484616935,-3.356387699034713e-19,-0.00011957908282056451,-4.948483420518722e-19,-0.00011957908282056451,3.540251919252837e-20,1.5246593050577406e-20,6.069003555565607e-21,2.1107618439325963e-20,-1.3552527156068805e-20,1.6940658945086007e-20,3.98596930608619e-05,1.3275945101094922e-19,2.9410351749360347e-20,5.809904011305646e-20,0.0006377550889737904,-2.5618629362943603e-18,-1.1319015425083748e-18,-0.0019132653251290321,-6.107898024176376e-19,2.5961846761619285e-19,1.2475173522067357e-19,3.331317728749306e-20,1.2475173522067357e-19,-1.180083973084279e-20,2.9240147059865344e-19,1.3275945101094922e-19,0.0006377550889737904,-1.4941307828347933e-19,1.180083973084279e-20,0.0005739795742556453,-4.684478388264767e-19,6.776263578034403e-20,-0.00038265305920504034,-0.00019132652960252017,5.664402941557569e-20,6.327780628633643e-21,8.055652179047967e-22,3.3433315577943587e-20,-2.754568308468695e-20,3.364636305329001e-20,2.9410351749360347e-20,-1.4941307828347933e-19,0.00012755101488437504,7.006738714911551e-20,0.0002657313016243279,-7.875309506612171e-19,-3.197319574771059e-19,-5.620604891345622e-19,-0.0003188775444868952,7.784134040581397e-20,3.45365968005046e-20,5.48458098497193e-20,2.6571891170907436e-20,-5.4960266928013485e-21,5.723294323762223e-20,5.809904011305646e-20,1.180083973084279e-20,7.006738714911551e-20,5.3146257414482534e-05,8.0,7.0,4.0,8.0,0.0255921371281147,-0.0040488592348992825,-0.004520089365541935,-0.0069754463620483875,-0.0040488592348992825,0.00018601190822664648,0.00027901786961592734,0.00044642857392318547,0.00024801588733680546,0.0002325148816453293,0.0005022321711294353,0.00027901786961592734,0.0005580357392318547,0.00044642857392318547,0.00018601190822664648,-0.0040488592348992825,0.0020868764258921146,0.00027901786961592734,0.00044642857392318547,0.00024801588733680546,-0.00018601190822664648,-7.97193861217238e-05,-0.00012755101488437504,-7.086167897796258e-05,-5.421010862427522e-20,-3.4601235633938075e-21,-9.359335373535834e-21,-0.0,-1.999290209103126e-20,-3.97645721422958e-20,-0.004520089365541935,0.00027901786961592734,0.00271577388048172,0.0005022321711294353,0.00027901786961592734,-0.0,-9.300595411332324e-05,2.3376902823747098e-20,-5.082197683525802e-21,-0.00027901786961592734,-0.00016741071885917336,-9.300595411332324e-05,-0.0,-2.371692252312041e-20,-3.153199893472497e-20,-0.0069754463620483875,0.00044642857392318547,0.0005022321711294353,0.008556547574698925,0.00044642857392318547,1.344586447790208e-20,1.9540603932613813e-20,-0.00029761905898340046,-1.859492929341578e-21,1.3552527156068805e-20,-0.0003348214377183467,-1.4567119107327646e-20,-0.0016741071594879031,-0.00029761905898340046,-4.685942627195956e-20,-0.0040488592348992825,0.00024801588733680546,0.00027901786961592734,0.00044642857392318547,0.0020868764258921146,-6.776263578034403e-21,7.926184377770193e-21,1.78109725029397e-20,-7.086167897796258e-05,-1.6256719518998168e-20,-6.776263578034403e-21,-7.97193861217238e-05,-0.0,-0.00012755101488437504,-0.00018601190822664648,0.00018601190822664648,-0.00018601190822664648,-0.0,1.344586447790208e-20,-6.776263578034403e-21,2.6573128707241267e-05,-0.0,-0.0,3.3881317890172014e-21,-4.600873583738252e-22,4.520100633526889e-38,5.024649355994754e-38,-0.0,5.168818305120806e-37,-1.365435680532449e-22,0.00027901786961592734,-7.97193861217238e-05,-9.300595411332324e-05,1.9540603932613813e-20,7.926184377770193e-21,-0.0,2.6573128707241267e-05,-6.6791146886023875e-21,-3.010106815957808e-21,1.8634724839594607e-20,8.470329472543003e-22,-8.470329472543003e-22,-0.0,3.700570740198775e-22,6.069135831762194e-22,0.00044642857392318547,-0.00012755101488437504,2.3376902823747098e-20,-0.00029761905898340046,1.78109725029397e-20,-0.0,-6.6791146886023875e-21,8.50340147735551e-05,-5.0888494596528215e-21,-4.513898307157584e-36,-0.0,-9.4039548065783e-37,-0.0,-1.4490547159890068e-36,-3.101895626544258e-36,0.00024801588733680546,-7.086167897796258e-05,-5.082197683525802e-21,-1.859492929341578e-21,-7.086167897796258e-05,3.3881317890172014e-21,-3.010106815957808e-21,-5.0888494596528215e-21,2.0246194253559224e-05,5.112722384885178e-22,2.625785495940852e-22,3.400124292312086e-21,-0.0,5.3950658255269136e-21,1.1136474758469194e-20,0.0002325148816453293,-5.421010862427522e-20,-0.00027901786961592734,1.3552527156068805e-20,-1.6256719518998168e-20,-4.600873583738252e-22,1.8634724839594607e-20,-4.513898307157584e-36,5.112722384885178e-22,4.650297705666162e-05,-3.3881317890172014e-21,1.6940658945086007e-21,0.0,1.1101711968160835e-21,-2.615907947665526e-22,0.0005022321711294353,-3.4601235633938075e-21,-0.00016741071885917336,-0.0003348214377183467,-6.776263578034403e-21,4.520100633526889e-38,8.470329472543003e-22,-0.0,2.625785495940852e-22,-3.3881317890172014e-21,0.00011160714348079637,-0.0,-0.0,4.25660105318336e-22,6.892686926844736e-22,0.00027901786961592734,-9.359335373535834e-21,-9.300595411332324e-05,-1.4567119107327646e-20,-7.97193861217238e-05,5.024649355994754e-38,-8.470329472543003e-22,-9.4039548065783e-37,3.400124292312086e-21,1.6940658945086007e-21,-0.0,2.6573128707241267e-05,-0.0,4.162034376862285e-21,8.592639919895046e-21,0.0005580357392318547,-0.0,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,0.00044642857392318547,-1.999290209103126e-20,-2.371692252312041e-20,-0.00029761905898340046,-0.00012755101488437504,5.168818305120806e-37,3.700570740198775e-22,-1.4490547159890068e-36,5.3950658255269136e-21,1.1101711968160835e-21,4.25660105318336e-22,4.162034376862285e-21,-0.0,8.50340147735551e-05,1.279760529366626e-20,0.00018601190822664648,-3.97645721422958e-20,-3.153199893472497e-20,-4.685942627195956e-20,-0.00018601190822664648,-1.365435680532449e-22,6.069135831762194e-22,-3.101895626544258e-36,1.1136474758469194e-20,-2.615907947665526e-22,6.892686926844736e-22,8.592639919895046e-21,-0.0,1.279760529366626e-20,2.6573128707241267e-05,8.0,7.0,5.0,3.0,0.04728599637746811,-0.008134921081364155,-0.00907738134264946,-0.011833900585770607,-0.01711309514939785,0.00039682540227659047,0.0005952381179668009,0.0007936508045531809,0.0011904762359336019,0.0004960317746736109,0.0008928571478463709,0.0013392857508733869,0.0008503401186317205,0.0017857142956927419,0.0017857142956927419,-0.008134921081364155,0.004308389965444803,0.0005952381179668009,0.0007936508045531809,0.0011904762359336019,-0.00039682540227659047,-0.0001700680295471102,-0.00022675737272948027,-0.0003401360590942204,3.3881317890172014e-19,-1.113918635991472e-18,-1.5688479137657828e-18,-3.1649584597503945e-18,-4.515158756175801e-18,-7.871362200729068e-18,-0.00907738134264946,0.0005952381179668009,0.0056051588617265224,0.0008928571478463709,0.0013392857508733869,1.0299920638612292e-18,-0.00019841270113829523,-1.9962947360734786e-18,-2.900035257016505e-18,-0.0005952381179668009,-0.00029761905898340046,-0.00044642857392318547,-6.1388576367454346e-18,-7.293209274668805e-18,-1.7601407509670915e-17,-0.011833900585770607,0.0007936508045531809,0.0008928571478463709,0.01101899053901434,0.0017857142956927419,-1.115100263496504e-18,-2.6817865475265325e-18,-0.00039682540227659047,-3.742711030394182e-18,-4.30970363562988e-18,-0.00044642857392318547,-4.813144367993435e-18,-0.001700680237263441,-0.0008928571478463709,-1.806944615258812e-17,-0.01711309514939785,0.0011904762359336019,0.0013392857508733869,0.0017857142956927419,0.0349702388048172,-1.5617917529479757e-18,-4.2187054964429216e-18,-4.147670947749624e-18,-0.0011904762359336019,-6.84785688723148e-18,-5.345235328053377e-18,-0.0013392857508733869,-1.0255266947604842e-17,-0.0017857142956927419,-0.010714286006987095,0.00039682540227659047,-0.00039682540227659047,1.0299920638612292e-18,-1.115100263496504e-18,-1.5617917529479757e-18,5.668934318237007e-05,-7.453889935837843e-20,2.710505431213761e-20,3.3881317890172014e-20,-1.4481518192390625e-19,2.2028234918180537e-20,3.3042353185064373e-20,1.2587562810388879e-19,2.64338825480515e-19,2.64338825480515e-19,0.0005952381179668009,-0.0001700680295471102,-0.00019841270113829523,-2.6817865475265325e-18,-4.2187054964429216e-18,-7.453889935837843e-20,5.668934318237007e-05,1.3160344025551223e-19,1.9740516684561687e-19,3.436380006301198e-20,1.1011428314305904e-19,1.6263032587282567e-19,3.326713111547256e-19,3.965082252960754e-19,1.0007112143453474e-18,0.0007936508045531809,-0.00022675737272948027,-1.9962947360734786e-18,-0.00039682540227659047,-4.147670947749624e-18,2.710505431213761e-20,1.3160344025551223e-19,0.00011337868636474013,1.9510124911980648e-19,1.5105075372466654e-19,1.6363831007270689e-19,2.2657611766230274e-19,3.911563667328573e-19,4.1071419928666696e-19,9.06304470649211e-19,0.0011904762359336019,-0.0003401360590942204,-2.900035257016505e-18,-3.742711030394182e-18,-0.0011904762359336019,3.3881317890172014e-20,1.9740516684561687e-19,1.9510124911980648e-19,0.0003401360590942204,2.2657611766230274e-19,2.2657611766230274e-19,2.8322015354022696e-19,4.3157357468493465e-19,5.02783227174152e-19,1.0551973944990622e-18,0.0004960317746736109,3.3881317890172014e-19,-0.0005952381179668009,-4.30970363562988e-18,-6.84785688723148e-18,-1.4481518192390625e-19,3.436380006301198e-20,1.5105075372466654e-19,2.2657611766230274e-19,9.920635056914762e-05,1.9651164376299768e-19,2.846030702774449e-19,5.664403070804539e-19,6.608470507765904e-19,1.718202300999862e-18,0.0008928571478463709,-1.113918635991472e-18,-0.00029761905898340046,-0.00044642857392318547,-5.345235328053377e-18,2.2028234918180537e-20,1.1011428314305904e-19,1.6363831007270689e-19,2.2657611766230274e-19,1.9651164376299768e-19,0.00014880952949170023,2.981555974335137e-19,4.575095125988051e-19,5.40224316830446e-19,1.1895247017376204e-18,0.0013392857508733869,-1.5688479137657828e-18,-0.00044642857392318547,-4.813144367993435e-18,-0.0013392857508733869,3.3042353185064373e-20,1.6263032587282567e-19,2.2657611766230274e-19,2.8322015354022696e-19,2.846030702774449e-19,2.981555974335137e-19,0.00044642857392318547,5.664403070804539e-19,6.616458487543752e-19,1.2124001747826212e-18,0.0008503401186317205,-3.1649584597503945e-18,-6.1388576367454346e-18,-0.001700680237263441,-1.0255266947604842e-17,1.2587562810388879e-19,3.326713111547256e-19,3.911563667328573e-19,4.3157357468493465e-19,5.664403070804539e-19,4.575095125988051e-19,5.664403070804539e-19,0.00042517005931586027,6.905177091561378e-19,2.8322016904986345e-18,0.0017857142956927419,-4.515158756175801e-18,-7.293209274668805e-18,-0.0008928571478463709,-0.0017857142956927419,2.64338825480515e-19,3.965082252960754e-19,4.1071419928666696e-19,5.02783227174152e-19,6.608470507765904e-19,5.40224316830446e-19,6.616458487543752e-19,6.905177091561378e-19,0.0008928571478463709,3.51971426212124e-32,0.0017857142956927419,-7.871362200729068e-18,-1.7601407509670915e-17,-1.806944615258812e-17,-0.010714286006987095,2.64338825480515e-19,1.0007112143453474e-18,9.06304470649211e-19,1.0551973944990622e-18,1.718202300999862e-18,1.1895247017376204e-18,1.2124001747826212e-18,2.8322016904986345e-18,3.51971426212124e-32,0.0053571430034935474,8.0,7.0,5.0,4.0,0.037942178547382355,-0.006279761902987957,-0.007008928339928389,-0.009143282659351826,-0.010803570970892906,0.00029761905898340046,0.00044642857392318547,0.0005952381179668009,0.0007142857066355646,0.00037202381645329297,0.0006696428754366934,0.0008035714272409678,0.0006377550889737904,0.0010714285308495164,0.0008928571478463709,-0.006279761902987957,0.0032823130022734404,0.00044642857392318547,0.0005952381179668009,0.0007142857066355646,-0.00029761905898340046,-0.00012755101488437504,-0.0001700680295471102,-0.0002040816325461492,-8.131516293641283e-20,5.082197683525802e-21,7.52316384526264e-37,-0.0,-0.0,0.0,-0.007008928339928389,0.00044642857392318547,0.0042708334513008595,0.0006696428754366934,0.0008035714272409678,-1.3552527156068805e-20,-0.00014880952949170023,2.6661204058843288e-20,2.6239130304526704e-20,-0.00044642857392318547,-0.00022321428696159273,-0.0002678571327123791,-0.0,-0.0,-0.0,-0.009143282659351826,0.0005952381179668009,0.0006696428754366934,0.00839817151427269,0.0010714285308495164,9.749529150836099e-22,3.174340174236909e-20,-0.00029761905898340046,-5.829563399906736e-36,1.3552527156068805e-20,-0.0003348214377183467,5.818327036386909e-21,-0.0012755101779475808,-0.0005357142654247582,-0.0,-0.010803570970892906,0.0007142857066355646,0.0008035714272409678,0.0010714285308495164,0.013452380895614624,-1.3552527156068805e-20,2.6239130304526704e-20,-3.572614246327944e-36,-0.0004761904710903764,1.1186036932769185e-20,5.818327036386909e-21,-0.0005357142654247582,-0.0,-0.0007142857066355646,-0.0026785715017467737,0.00029761905898340046,-0.00029761905898340046,-1.3552527156068805e-20,9.749529150836099e-22,-1.3552527156068805e-20,4.251700738677755e-05,3.3881317890172014e-21,-0.0,6.776263578034403e-21,3.789971287845973e-36,-1.6856145238804308e-37,-0.0,-0.0,-0.0,-0.0,0.00044642857392318547,-0.00012755101488437504,-0.00014880952949170023,3.174340174236909e-20,2.6239130304526704e-20,3.3881317890172014e-21,4.251700738677755e-05,-7.617486873955225e-21,-7.496894603520077e-21,2.710505431213761e-20,-1.6940658945086007e-21,-0.0,-0.0,-0.0,-0.0,0.0005952381179668009,-0.0001700680295471102,2.6661204058843288e-20,-0.00029761905898340046,-3.572614246327944e-36,-0.0,-7.617486873955225e-21,8.50340147735551e-05,1.3431682992357413e-36,-5.266214691683848e-36,-0.0,-3.76158192263132e-37,-0.0,-0.0,-0.0,0.0007142857066355646,-0.0002040816325461492,2.6239130304526704e-20,-5.829563399906736e-36,-0.0004761904710903764,6.776263578034403e-21,-7.496894603520077e-21,1.3431682992357413e-36,0.0001360544265480712,-4.513898307157584e-36,3.76158192263132e-37,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-8.131516293641283e-20,-0.00044642857392318547,1.3552527156068805e-20,1.1186036932769185e-20,3.789971287845973e-36,2.710505431213761e-20,-5.266214691683848e-36,-4.513898307157584e-36,7.440476474585012e-05,-6.776263578034403e-21,0.0,0.0,0.0,-0.0,0.0006696428754366934,5.082197683525802e-21,-0.00022321428696159273,-0.0003348214377183467,5.818327036386909e-21,-1.6856145238804308e-37,-1.6940658945086007e-21,-0.0,3.76158192263132e-37,-6.776263578034403e-21,0.00011160714348079637,-1.939442480094564e-21,-0.0,-0.0,-0.0,0.0008035714272409678,7.52316384526264e-37,-0.0002678571327123791,5.818327036386909e-21,-0.0005357142654247582,-0.0,-0.0,-3.76158192263132e-37,-0.0,0.0,-1.939442480094564e-21,0.00017857142665889114,-0.0,-0.0,-0.0,0.0006377550889737904,-0.0,-0.0,-0.0012755101779475808,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0003188775444868952,-0.0,-0.0,0.0010714285308495164,-0.0,-0.0,-0.0005357142654247582,-0.0007142857066355646,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0,0.0008928571478463709,0.0,-0.0,-0.0,-0.0026785715017467737,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0008928571478463709,8.0,7.0,5.0,5.0,0.03174319863319397,-0.0051190475933253765,-0.0057142856530845165,-0.007457483094185591,-0.007457483094185591,0.0002380952355451882,0.0003571428533177823,0.0004761904710903764,0.0004761904710903764,0.00029761905898340046,0.0005357142654247582,0.0005357142654247582,0.0005102040595375001,0.0007142857066355646,0.0005102040595375001,-0.0051190475933253765,0.002653061179444194,0.0003571428533177823,0.0004761904710903764,0.0004761904710903764,-0.0002380952355451882,-0.0001020408162730746,-0.0001360544265480712,-0.0001360544265480712,-6.776263578034403e-20,-0.0,-0.0,-0.0,-0.0,0.0,-0.0057142856530845165,0.0003571428533177823,0.0034523808863013983,0.0005357142654247582,0.0005357142654247582,-0.0,-0.0001190476177725941,-2.3937947767733993e-20,-2.3937947767733993e-20,-0.0003571428533177823,-0.00017857142665889114,-0.00017857142665889114,-0.0,-0.0,-0.0,-0.007457483094185591,0.0004761904710903764,0.0005357142654247582,0.006789966020733118,0.0007142857066355646,-4.06768004927512e-21,-2.3937947767733993e-20,-0.0002380952355451882,-4.813412961961142e-36,-0.0,-0.0002678571327123791,-0.0,-0.0010204081190750003,-0.0003571428533177823,-0.0,-0.007457483094185591,0.0004761904710903764,0.0005357142654247582,0.0007142857066355646,0.006789966020733118,-0.0,-2.3937947767733993e-20,-4.813412961961142e-36,-0.0002380952355451882,-6.628630316971531e-22,-0.0,-0.0002678571327123791,-0.0,-0.0003571428533177823,-0.0010204081190750003,0.0002380952355451882,-0.0002380952355451882,-0.0,-4.06768004927512e-21,-0.0,3.40136066370178e-05,-0.0,-0.0,-0.0,8.949782217558526e-22,0.0,-0.0,-0.0,-0.0,-0.0,0.0003571428533177823,-0.0001020408162730746,-0.0001190476177725941,-2.3937947767733993e-20,-2.3937947767733993e-20,-0.0,3.40136066370178e-05,6.839413647923998e-21,6.839413647923998e-21,2.0328790734103208e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0001360544265480712,-2.3937947767733993e-20,-0.0002380952355451882,-4.813412961961142e-36,-0.0,6.839413647923998e-21,6.80272132740356e-05,1.3752608590864836e-36,4.513898307157584e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.0004761904710903764,-0.0001360544265480712,-2.3937947767733993e-20,-4.813412961961142e-36,-0.0002380952355451882,-0.0,6.839413647923998e-21,1.3752608590864836e-36,6.80272132740356e-05,4.513898307157584e-36,-0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-6.776263578034403e-20,-0.0003571428533177823,-0.0,-6.628630316971531e-22,8.949782217558526e-22,2.0328790734103208e-20,4.513898307157584e-36,4.513898307157584e-36,5.952380888629705e-05,-0.0,0.0,0.0,0.0,-0.0,0.0005357142654247582,-0.0,-0.00017857142665889114,-0.0002678571327123791,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-0.0,-0.0,0.0005357142654247582,-0.0,-0.00017857142665889114,-0.0,-0.0002678571327123791,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,8.928571332944557e-05,-0.0,-0.0,-0.0,0.0005102040595375001,-0.0,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00025510202976875007,-0.0,-0.0,0.0007142857066355646,-0.0,-0.0,-0.0003571428533177823,-0.0003571428533177823,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,0.0005102040595375001,0.0,-0.0,-0.0,-0.0010204081190750003,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00025510202976875007,8.0,7.0,5.0,6.0,0.027310090139508247,-0.004322562366724014,-0.004825680050998926,-0.0062996032647788525,-0.005463435314595699,0.00019841270113829523,0.00029761905898340046,0.00039682540227659047,0.0003401360590942204,0.00024801588733680546,0.00044642857392318547,0.00038265305920504034,0.00042517005931586027,0.0005102040595375001,0.0003188775444868952,-0.004322562366724014,0.0022270812187343836,0.00029761905898340046,0.00039682540227659047,0.0003401360590942204,-0.00019841270113829523,-8.50340147735551e-05,-0.00011337868636474013,-9.718172805150971e-05,4.191633839548016e-19,-4.1638542711451294e-19,2.7029910123365997e-19,-1.120078960205884e-18,-3.0691298442800677e-19,1.1042493082210333e-18,-0.004825680050998926,0.00029761905898340046,0.0028982425574213266,0.00044642857392318547,0.00038265305920504034,6.640738306473715e-19,-9.920635056914762e-05,-9.334112827201503e-19,2.377775131741603e-19,-0.00029761905898340046,-0.00014880952949170023,-0.00012755101488437504,-2.7659786446334048e-18,-1.0674853692936906e-18,1.775768850055936e-19,-0.0062996032647788525,0.00039682540227659047,0.00044642857392318547,0.005700821988284588,0.0005102040595375001,-4.272323240351032e-19,-1.3176535310560124e-18,-0.00019841270113829523,3.7018568384341296e-19,-2.0735366548785272e-18,-0.00022321428696159273,-2.6510078807164703e-19,-0.0008503401186317205,-0.00025510202976875007,9.293161183025534e-19,-0.005463435314595699,0.0003401360590942204,0.00038265305920504034,0.0005102040595375001,0.003939200658351183,1.013574596653583e-18,-3.019311857913296e-19,1.5439870586166383e-20,-0.0001360544265480712,1.1123463465927676e-19,-7.218188697699979e-20,-0.0001530612207716331,1.5215569641703605e-18,-0.0002040816325461492,-0.00047831633128225803,0.00019841270113829523,-0.00019841270113829523,6.640738306473715e-19,-4.272323240351032e-19,1.013574596653583e-18,2.8344671591185033e-05,-3.7269449679189215e-20,1.5246593050577406e-20,-6.268043809681823e-20,-7.341421806864188e-20,1.1014117459090269e-20,-4.720335892337116e-20,6.293781405194439e-20,-2.2631900643089487e-34,-1.2980923380809642e-19,0.00029761905898340046,-8.50340147735551e-05,-9.920635056914762e-05,-1.3176535310560124e-18,-3.019311857913296e-19,-3.7269449679189215e-20,2.8344671591185033e-05,6.580172012775611e-20,1.9119782258325996e-20,1.3793768242488787e-20,5.675120746603812e-20,5.082197683525802e-21,1.663356555773628e-19,6.797283659116053e-20,1.180083973084279e-20,0.00039682540227659047,-0.00011337868636474013,-9.334112827201503e-19,-0.00019841270113829523,1.5439870586166383e-20,1.5246593050577406e-20,6.580172012775611e-20,5.668934318237007e-05,1.515768082825076e-20,7.552537686233327e-20,8.181915503635344e-20,1.9420811377809942e-20,1.9557818336642866e-19,4.6404434929789915e-20,-4.046002424229976e-20,0.0003401360590942204,-9.718172805150971e-05,2.377775131741603e-19,3.7018568384341296e-19,-0.0001360544265480712,-6.268043809681823e-20,1.9119782258325996e-20,1.515768082825076e-20,3.887269122060388e-05,-4.7473094120071607e-20,-1.2947207046677583e-20,-1.0532721768597848e-20,-9.864539163826864e-20,-1.3188702588071153e-20,-7.081616654923499e-20,0.00024801588733680546,4.191633839548016e-19,-0.00029761905898340046,-2.0735366548785272e-18,1.1123463465927676e-19,-7.341421806864188e-20,1.3793768242488787e-20,7.552537686233327e-20,-4.7473094120071607e-20,4.960317528457381e-05,1.0164395367051604e-19,0.0,2.8322015354022696e-19,9.063045094233022e-20,-2.950210094269411e-20,0.00044642857392318547,-4.1638542711451294e-19,-0.00014880952949170023,-0.00022321428696159273,-7.218188697699979e-20,1.1014117459090269e-20,5.675120746603812e-20,8.181915503635344e-20,-1.2947207046677583e-20,1.0164395367051604e-19,7.440476474585012e-05,3.421393496929783e-20,2.2875475629940256e-19,7.947178447898987e-20,-2.6551890202189845e-20,0.00038265305920504034,2.7029910123365997e-19,-0.00012755101488437504,-2.6510078807164703e-19,-0.0001530612207716331,-4.720335892337116e-20,5.082197683525802e-21,1.9420811377809942e-20,-1.0532721768597848e-20,0.0,3.421393496929783e-20,5.10204081365373e-05,-8.092004202225098e-21,2.8084058110011065e-20,-9.6663882096485e-21,0.00042517005931586027,-1.120078960205884e-18,-2.7659786446334048e-18,-0.0008503401186317205,1.5215569641703605e-18,6.293781405194439e-20,1.663356555773628e-19,1.9557818336642866e-19,-9.864539163826864e-20,2.8322015354022696e-19,2.2875475629940256e-19,-8.092004202225098e-21,0.00021258502965793014,-3.63754871568696e-20,-1.7701260565616466e-19,0.0005102040595375001,-3.0691298442800677e-19,-1.0674853692936906e-18,-0.00025510202976875007,-0.0002040816325461492,-2.2631900643089487e-34,6.797283659116053e-20,4.6404434929789915e-20,-1.3188702588071153e-20,9.063045094233022e-20,7.947178447898987e-20,2.8084058110011065e-20,-3.63754871568696e-20,0.0001020408162730746,-5.34674523826479e-35,0.0003188775444868952,1.1042493082210333e-18,1.775768850055936e-19,9.293161183025534e-19,-0.00047831633128225803,-1.2980923380809642e-19,1.180083973084279e-20,-4.046002424229976e-20,-7.081616654923499e-20,-2.950210094269411e-20,-2.6551890202189845e-20,-9.6663882096485e-21,-1.7701260565616466e-19,-5.34674523826479e-35,9.566326480126008e-05,8.0,7.0,5.0,7.0,0.023975037038326263,-0.0037414967082440853,-0.004177296068519354,-0.005454324651509523,-0.004177296068519354,0.0001700680295471102,0.00025510202976875007,0.0003401360590942204,0.00025510202976875007,0.00021258502965793014,0.00038265305920504034,0.00028698978712782264,0.00036443150020204484,0.00038265305920504034,0.00021258502965793014,-0.0037414967082440853,0.0019193391781300306,0.00025510202976875007,0.0003401360590942204,0.00025510202976875007,-0.0001700680295471102,-7.288629421964288e-05,-9.718172805150971e-05,-7.288629421964288e-05,2.262810985269569e-19,-4.888515928035925e-19,1.3048204668559314e-20,-1.2540168721710829e-18,-4.135011517161171e-19,3.8518846540844036e-19,-0.004177296068519354,0.00025510202976875007,0.0024978742003440857,0.00038265305920504034,0.00028698978712782264,5.014435047745458e-19,-8.50340147735551e-05,-7.940590600554856e-19,-3.4389537658524594e-19,-0.00025510202976875007,-0.00012755101488437504,-9.566326480126008e-05,-2.206108684857248e-18,-8.195223159480703e-19,3.972766243863489e-20,-0.005454324651509523,0.0003401360590942204,0.00038265305920504034,0.004913751035928726,0.00038265305920504034,-4.071086223941249e-19,-1.1478512390796223e-18,-0.0001700680295471102,-4.0444523006867484e-19,-1.700842158086635e-18,-0.00019132652960252017,1.6775734963696845e-20,-0.0007288630004040897,-0.00019132652960252017,3.000853322544175e-19,-0.004177296068519354,0.00025510202976875007,0.00028698978712782264,0.00038265305920504034,0.0024978742003440857,5.026829315248799e-19,-3.990806277541446e-19,-1.2718150072186566e-19,-8.50340147735551e-05,-3.135400970018402e-19,-3.0405212858070383e-19,-9.566326480126008e-05,6.603240658343037e-19,-0.00012755101488437504,-0.00025510202976875007,0.0001700680295471102,-0.0001700680295471102,5.014435047745458e-19,-4.071086223941249e-19,5.026829315248799e-19,2.4295432012877427e-05,-2.202285662861181e-20,1.5246593050577406e-20,-2.0328790734103208e-20,-6.204348963810679e-20,9.440672107791659e-21,-2.832201470778784e-20,5.394669683561683e-20,9.440672107791659e-21,-6.228283564081871e-20,0.00025510202976875007,-7.288629421964288e-05,-8.50340147735551e-05,-1.1478512390796223e-18,-3.990806277541446e-19,-2.202285662861181e-20,2.4295432012877427e-05,4.9235250549925246e-20,2.428021474881055e-20,6.907969371389402e-22,5.505714157152952e-20,1.9481757786848908e-20,1.4257341906631098e-19,5.664402941557569e-20,1.9654764550668934e-20,0.0003401360590942204,-9.718172805150971e-05,-7.940590600554856e-19,-0.0001700680295471102,-1.2718150072186566e-19,1.5246593050577406e-20,4.9235250549925246e-20,4.8590864025754854e-05,1.9985274904172153e-20,6.473603361780078e-20,7.013070524006703e-20,2.023001212114988e-20,1.5690153144422482e-19,3.3336855332527393e-20,-1.0789339205564653e-20,0.00025510202976875007,-7.288629421964288e-05,-3.4389537658524594e-19,-4.0444523006867484e-19,-8.50340147735551e-05,-2.0328790734103208e-20,2.428021474881055e-20,1.9985274904172153e-20,2.4295432012877427e-05,1.932852742513486e-20,2.832201470778784e-20,2.067486565405435e-20,3.468001893272878e-20,2.6147539438732063e-20,-1.650252282153587e-21,0.00021258502965793014,2.262810985269569e-19,-0.00025510202976875007,-1.700842158086635e-18,-3.135400970018402e-19,-6.204348963810679e-20,6.907969371389402e-22,6.473603361780078e-20,1.932852742513486e-20,4.251700738677755e-05,4.743384504624082e-20,6.776263578034403e-21,2.4276013899145e-19,8.024570887726127e-20,7.0350733667419e-21,0.00038265305920504034,-4.888515928035925e-19,-0.00012755101488437504,-0.00019132652960252017,-3.0405212858070383e-19,9.440672107791659e-21,5.505714157152952e-20,7.013070524006703e-20,2.832201470778784e-20,4.743384504624082e-20,6.377550744218752e-05,3.671841168190965e-20,1.9607549986033202e-19,4.738491214312948e-20,-1.0532429383367696e-34,0.00028698978712782264,1.3048204668559314e-20,-9.566326480126008e-05,1.6775734963696845e-20,-9.566326480126008e-05,-2.832201470778784e-20,1.9481757786848908e-20,2.023001212114988e-20,2.067486565405435e-20,6.776263578034403e-21,3.671841168190965e-20,3.188775372109376e-05,-6.06900347478625e-20,8.470329472543003e-22,-5.823403211161599e-20,0.00036443150020204484,-1.2540168721710829e-18,-2.206108684857248e-18,-0.0007288630004040897,6.603240658343037e-19,5.394669683561683e-20,1.4257341906631098e-19,1.5690153144422482e-19,3.468001893272878e-20,2.4276013899145e-19,1.9607549986033202e-19,-6.06900347478625e-20,0.00018221575010102242,-3.6826878970904935e-20,-6.743337266010817e-20,0.00038265305920504034,-4.135011517161171e-19,-8.195223159480703e-19,-0.00019132652960252017,-0.00012755101488437504,9.440672107791659e-21,5.664402941557569e-20,3.3336855332527393e-20,2.6147539438732063e-20,8.024570887726127e-20,4.738491214312948e-20,8.470329472543003e-22,-3.6826878970904935e-20,6.377550744218752e-05,2.470276752471233e-21,0.00021258502965793014,3.8518846540844036e-19,3.972766243863489e-20,3.000853322544175e-19,-0.00025510202976875007,-6.228283564081871e-20,1.9654764550668934e-20,-1.0789339205564653e-20,-1.650252282153587e-21,7.0350733667419e-21,-1.0532429383367696e-34,-5.823403211161599e-20,-6.743337266010817e-20,2.470276752471233e-21,4.251700738677755e-05,8.0,7.0,5.0,8.0,0.021371882408857346,-0.0032986111473292112,-0.0036830357275903225,-0.0048097362741827965,-0.0032986111473292112,0.00014880952949170023,0.00022321428696159273,0.00029761905898340046,0.00019841270113829523,0.00018601190822664648,0.0003348214377183467,0.00022321428696159273,0.0003188775444868952,0.00029761905898340046,0.00014880952949170023,-0.0032986111473292112,0.0016865079523995519,0.00022321428696159273,0.00029761905898340046,0.00019841270113829523,-0.00014880952949170023,-6.377550744218752e-05,-8.50340147735551e-05,-5.668934318237007e-05,-4.743384504624082e-20,-0.0,-1.2420369736870165e-20,-0.0,-0.0,-4.590069809261646e-20,-0.0036830357275903225,0.00022321428696159273,0.0021949405781924725,0.0003348214377183467,0.00022321428696159273,-3.3881317890172014e-21,-7.440476474585012e-05,1.3330602029421644e-20,-6.776263578034403e-21,-0.00022321428696159273,-0.00011160714348079637,-7.440476474585012e-05,-0.0,-0.0,-4.0913290137410407e-20,-0.0048097362741827965,0.00029761905898340046,0.0003348214377183467,0.00431813346222043,0.00029761905898340046,1.4943269191518157e-21,1.3330602029421644e-20,-0.00014880952949170023,-1.5176491950694992e-36,-0.0,-0.00016741071885917336,-0.0,-0.0006377550889737904,-0.00014880952949170023,9.795488807898369e-38,-0.0032986111473292112,0.00019841270113829523,0.00022321428696159273,0.00029761905898340046,0.0016865079523995519,-6.776263578034403e-21,9.824980705059936e-21,-1.3057467694809873e-36,-5.668934318237007e-05,1.4858892124224738e-21,-0.0,-6.377550744218752e-05,-0.0,-8.50340147735551e-05,-0.00014880952949170023,0.00014880952949170023,-0.00014880952949170023,-3.3881317890172014e-21,1.4943269191518157e-21,-6.776263578034403e-21,2.1258503693388775e-05,1.6940658945086007e-21,-0.0,1.6940658945086007e-21,7.843118662358516e-22,0.0,5.250378359899596e-37,-0.0,-0.0,1.2680496027143393e-22,0.00022321428696159273,-6.377550744218752e-05,-7.440476474585012e-05,1.3330602029421644e-20,9.824980705059936e-21,1.6940658945086007e-21,2.1258503693388775e-05,-3.8087434369776126e-21,-2.4202171792823948e-21,1.3552527156068805e-20,-0.0,-4.235164736271502e-22,-0.0,-0.0,-1.1050978871842006e-23,0.00029761905898340046,-8.50340147735551e-05,1.3330602029421644e-20,-0.00014880952949170023,-1.3057467694809873e-36,-0.0,-3.8087434369776126e-21,4.251700738677755e-05,4.3361407495195015e-37,-2.633107345841924e-36,-0.0,-0.0,-0.0,-0.0,-2.7987111280080614e-38,0.00019841270113829523,-5.668934318237007e-05,-6.776263578034403e-21,-1.5176491950694992e-36,-5.668934318237007e-05,1.6940658945086007e-21,-2.4202171792823948e-21,4.3361407495195015e-37,1.6196954675251618e-05,2.394006297518904e-22,-0.0,3.911691072529952e-21,-0.0,-0.0,1.2849644970836075e-20,0.00018601190822664648,-4.743384504624082e-20,-0.00022321428696159273,-0.0,1.4858892124224738e-21,7.843118662358516e-22,1.3552527156068805e-20,-2.633107345841924e-36,2.394006297518904e-22,3.720238237292506e-05,-0.0,-1.6940658945086007e-21,0.0,0.0,8.886422929135092e-22,0.0003348214377183467,-0.0,-0.00011160714348079637,-0.00016741071885917336,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,5.5803571740398183e-05,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-1.2420369736870165e-20,-7.440476474585012e-05,-0.0,-6.377550744218752e-05,5.250378359899596e-37,-4.235164736271502e-22,-0.0,3.911691072529952e-21,-1.6940658945086007e-21,-0.0,2.1258503693388775e-05,-0.0,-0.0,1.0050226671060813e-20,0.0003188775444868952,-0.0,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,0.00029761905898340046,-0.0,-0.0,-0.00014880952949170023,-8.50340147735551e-05,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,4.251700738677755e-05,0.0,0.00014880952949170023,-4.590069809261646e-20,-4.0913290137410407e-20,9.795488807898369e-38,-0.00014880952949170023,1.2680496027143393e-22,-1.1050978871842006e-23,-2.7987111280080614e-38,1.2849644970836075e-20,8.886422929135092e-22,-0.0,1.0050226671060813e-20,-0.0,0.0,2.1258503693388775e-05,8.0,7.0,6.0,3.0,0.04076318070292473,-0.0068735829554498196,-0.007670776452869177,-0.0086805559694767,-0.014473497867584229,0.0003306878206785768,0.0004960317746736109,0.0005668934318237007,0.0009920635493472219,0.00041335978312417865,0.0006377550889737904,0.0011160714784637094,0.0005314626032486558,0.0012755101779475808,0.0014880952658131719,-0.0068735829554498196,0.0036173199769109488,0.0004960317746736109,0.0005668934318237007,0.0009920635493472219,-0.0003306878206785768,-0.00014172335795592517,-0.0001619695540284738,-0.00028344671591185033,8.131516293641283e-20,5.394669683561683e-20,-1.0164395367051604e-20,1.6858342841909617e-19,1.0789339367123366e-19,-7.486608266839471e-34,-0.007670776452869177,0.0004960317746736109,0.004706396255642176,0.0006377550889737904,0.0011160714784637094,1.3552527156068805e-20,-0.0001653439103392884,3.190414619984287e-20,-4.230411355806163e-20,-0.0004960317746736109,-0.00021258502965793014,-0.00037202381645329297,-3.320692332957526e-35,-2.1252429897778834e-35,0.0,-0.0086805559694767,0.0005668934318237007,0.0006377550889737904,0.006395266391336918,0.0012755101779475808,-2.1990278314056864e-20,-2.204255063577396e-20,-0.00022675737272948027,2.740149839533557e-20,4.0657581468206416e-20,-0.00025510202976875007,-5.082197683525802e-20,-0.0007971939048729837,-0.0005102040595375001,3.540251958026928e-18,-0.014473497867584229,0.0009920635493472219,0.0011160714784637094,0.0012755101779475808,0.02935444936156273,-0.0,-5.246850892511323e-20,1.3529488883539496e-19,-0.0009920635493472219,-6.062102979019968e-20,-5.082197683525802e-20,-0.0011160714784637094,1.786021081664283e-18,-0.0012755101779475808,-0.008928571827709675,0.0003306878206785768,-0.0003306878206785768,1.3552527156068805e-20,-2.1990278314056864e-20,-0.0,4.724111931864172e-05,-3.3881317890172014e-21,3.3881317890172014e-21,-6.776263578034403e-21,1.540119475570844e-36,-7.887658391415097e-37,-4.258394468641218e-37,-6.87123720018542e-37,-3.784382954411796e-37,-0.0,0.0004960317746736109,-0.00014172335795592517,-0.0001653439103392884,-2.204255063577396e-20,-5.246850892511323e-20,-3.3881317890172014e-21,4.724111931864172e-05,6.297871667920672e-21,1.2086889126421284e-20,-2.710505431213761e-20,-0.0,3.3881317890172014e-21,-6.555039784483607e-36,-4.195225189432879e-36,0.0,0.0005668934318237007,-0.0001619695540284738,3.190414619984287e-20,-0.00022675737272948027,1.3529488883539496e-19,3.3881317890172014e-21,6.297871667920672e-21,6.478781870100647e-05,-7.828998733730882e-21,-2.256949153578792e-36,-2.1578678411129306e-20,-4.137740114894452e-36,-6.743337266010817e-20,-4.315735682225861e-20,2.9946432608180403e-34,0.0009920635493472219,-0.00028344671591185033,-4.230411355806163e-20,2.740149839533557e-20,-0.0009920635493472219,-6.776263578034403e-21,1.2086889126421284e-20,-7.828998733730882e-21,0.00028344671591185033,-6.018531076210112e-36,2.633107345841924e-36,7.52316384526264e-37,8.148689130440964e-36,5.2151609717357354e-36,-0.0,0.00041335978312417865,8.131516293641283e-20,-0.0004960317746736109,4.0657581468206416e-20,-6.062102979019968e-20,1.540119475570844e-36,-2.710505431213761e-20,-2.256949153578792e-36,-6.018531076210112e-36,8.26719551696442e-05,-6.776263578034403e-21,6.776263578034403e-21,0.0,0.0,-0.0,0.0006377550889737904,5.394669683561683e-20,-0.00021258502965793014,-0.00025510202976875007,-5.082197683525802e-20,-7.887658391415097e-37,-0.0,-2.1578678411129306e-20,2.633107345841924e-36,-6.776263578034403e-21,8.50340147735551e-05,1.6940658945086007e-20,2.2459824169149376e-35,1.437428700907812e-35,-0.0,0.0011160714784637094,-1.0164395367051604e-20,-0.00037202381645329297,-5.082197683525802e-20,-0.0011160714784637094,-4.258394468641218e-37,3.3881317890172014e-21,-4.137740114894452e-36,7.52316384526264e-37,6.776263578034403e-21,1.6940658945086007e-20,0.00037202381645329297,0.0,0.0,-0.0,0.0005314626032486558,1.6858342841909617e-19,-3.320692332957526e-35,-0.0007971939048729837,1.786021081664283e-18,-6.87123720018542e-37,-6.555039784483607e-36,-6.743337266010817e-20,8.148689130440964e-36,0.0,2.2459824169149376e-35,0.0,0.0001594387722434476,-1.479680842262287e-19,-7.080504226246586e-19,0.0012755101779475808,1.0789339367123366e-19,-2.1252429897778834e-35,-0.0005102040595375001,-0.0012755101779475808,-3.784382954411796e-37,-4.195225189432879e-36,-4.315735682225861e-20,5.2151609717357354e-36,0.0,1.437428700907812e-35,0.0,-1.479680842262287e-19,0.0005102040595375001,6.571102960705341e-34,0.0014880952658131719,-7.486608266839471e-34,0.0,3.540251958026928e-18,-0.008928571827709675,-0.0,0.0,2.9946432608180403e-34,-0.0,-0.0,-0.0,-0.0,-7.080504226246586e-19,6.571102960705341e-34,0.004464285913854837,8.0,7.0,6.0,4.0,0.032669004052877426,-0.005303996615111828,-0.005920493043959141,-0.006701743230223656,-0.009130527265369892,0.00024801588733680546,0.00037202381645329297,0.00042517005931586027,0.0005952381179668009,0.0003100198518950492,0.00047831633128225803,0.0006696428754366934,0.00039859695243649185,0.0007653061184100807,0.0007440476329065859,-0.005303996615111828,0.00275550689548254,0.00037202381645329297,0.00042517005931586027,0.0005952381179668009,-0.00024801588733680546,-0.00010629251482896507,-0.00012147716188337654,-0.0001700680295471102,-9.486769009248164e-20,-4.046002424229976e-20,-6.172622709910149e-20,-1.2643756808314786e-19,-1.2947206723560157e-19,-2.8322015354022696e-19,-0.005920493043959141,0.00037202381645329297,0.003585600992664695,0.00047831633128225803,0.0006696428754366934,-6.776263578034403e-21,-0.00012400794366840273,-6.594373669917381e-20,-9.200154804407661e-20,-0.00037202381645329297,-0.0001594387722434476,-0.00022321428696159273,-1.6594931053251226e-19,-1.699320947090756e-19,-3.7172646283065783e-19,-0.006701743230223656,0.00042517005931586027,0.00047831633128225803,0.004872980527579784,0.0007653061184100807,-7.439828026983155e-21,-2.548371568804832e-20,-0.0001700680295471102,-4.8295137165538856e-20,-0.0,-0.00019132652960252017,-7.9883849671012e-20,-0.0005978954141028225,-0.0003061224415432662,7.292919037671375e-19,-0.009130527265369892,0.0005952381179668009,0.0006696428754366934,0.0007653061184100807,0.011295351199805737,-2.710505431213761e-20,-4.043971631202673e-20,-4.8295137165538856e-20,-0.00039682540227659047,1.1842207647199678e-20,-7.9883849671012e-20,-0.00044642857392318547,6.467823437249864e-19,-0.0005102040595375001,-0.0022321429569274187,0.00024801588733680546,-0.00024801588733680546,-6.776263578034403e-21,-7.439828026983155e-21,-2.710505431213761e-20,3.543083948898129e-05,1.6940658945086007e-21,-3.3881317890172014e-21,3.3881317890172014e-21,1.7899564435117053e-21,-1.87356945375767e-37,1.268287034724902e-36,-1.0442910558672478e-38,1.092576852615912e-36,4.6380774758511246e-36,0.00037202381645329297,-0.00010629251482896507,-0.00012400794366840273,-2.548371568804832e-20,-4.043971631202673e-20,1.6940658945086007e-21,3.543083948898129e-05,7.281061855954825e-21,1.0102147602576288e-20,2.710505431213761e-20,-0.0,1.6940658945086007e-21,9.06057399433062e-36,9.127126747917428e-36,1.983124689614137e-35,0.00042517005931586027,-0.00012147716188337654,-6.594373669917381e-20,-0.0001700680295471102,-4.8295137165538856e-20,-3.3881317890172014e-21,7.281061855954825e-21,4.8590864025754854e-05,-4.697399563355956e-21,8.275480229788904e-36,1.6184008404450196e-20,5.64237288394698e-36,5.0575027879493996e-20,2.5894414093355167e-20,-6.951239351867667e-35,0.0005952381179668009,-0.0001700680295471102,-9.200154804407661e-20,-4.8295137165538856e-20,-0.00039682540227659047,3.3881317890172014e-21,1.0102147602576288e-20,-4.697399563355956e-21,0.00011337868636474013,6.770847460736376e-36,5.266214691683848e-36,3.7762688431166636e-20,-5.959951509098333e-35,4.315735682225861e-20,1.8881343569348464e-19,0.0003100198518950492,-9.486769009248164e-20,-0.00037202381645329297,-0.0,1.1842207647199678e-20,1.7899564435117053e-21,2.710505431213761e-20,8.275480229788904e-36,6.770847460736376e-36,6.200397183420137e-05,-0.0,0.0,3.4275912898657944e-36,1.504632769052528e-36,0.0,0.00047831633128225803,-4.046002424229976e-20,-0.0001594387722434476,-0.00019132652960252017,-7.9883849671012e-20,-1.87356945375767e-37,-0.0,1.6184008404450196e-20,5.266214691683848e-36,-0.0,6.377550744218752e-05,-1.6940658945086007e-21,6.637972550547461e-20,3.3986418295580265e-20,-8.414327464373873e-35,0.0006696428754366934,-6.172622709910149e-20,-0.00022321428696159273,-7.9883849671012e-20,-0.00044642857392318547,1.268287034724902e-36,1.6940658945086007e-21,5.64237288394698e-36,3.7762688431166636e-20,0.0,-1.6940658945086007e-21,0.00014880952949170023,-7.315485906307257e-35,5.664402941557569e-20,2.4781765050356993e-19,0.00039859695243649185,-1.2643756808314786e-19,-1.6594931053251226e-19,-0.0005978954141028225,6.467823437249864e-19,-1.0442910558672478e-38,9.06057399433062e-36,5.0575027879493996e-20,-5.959951509098333e-35,3.4275912898657944e-36,6.637972550547461e-20,-7.315485906307257e-35,0.00011957908282056451,3.866822178853919e-20,-2.4781765050356993e-19,0.0007653061184100807,-1.2947206723560157e-19,-1.699320947090756e-19,-0.0003061224415432662,-0.0005102040595375001,1.092576852615912e-36,9.127126747917428e-36,2.5894414093355167e-20,4.315735682225861e-20,1.504632769052528e-36,3.3986418295580265e-20,5.664402941557569e-20,3.866822178853919e-20,0.0002040816325461492,3.398641894181512e-19,0.0007440476329065859,-2.8322015354022696e-19,-3.7172646283065783e-19,7.292919037671375e-19,-0.0022321429569274187,4.6380774758511246e-36,1.983124689614137e-35,-6.951239351867667e-35,1.8881343569348464e-19,0.0,-8.414327464373873e-35,2.4781765050356993e-19,-2.4781765050356993e-19,3.398641894181512e-19,0.0007440476329065859,8.0,7.0,6.0,5.0,0.027310090139508247,-0.004322562366724014,-0.004825680050998926,-0.005463435314595699,-0.0062996032647788525,0.00019841270113829523,0.00029761905898340046,0.0003401360590942204,0.00039682540227659047,0.00024801588733680546,0.00038265305920504034,0.00044642857392318547,0.0003188775444868952,0.0005102040595375001,0.00042517005931586027,-0.004322562366724014,0.0022270812187343836,0.00029761905898340046,0.0003401360590942204,0.00039682540227659047,-0.00019841270113829523,-8.50340147735551e-05,-9.718172805150971e-05,-0.00011337868636474013,4.0561085679873277e-19,1.8220974267074411e-19,-5.271323741792043e-19,8.210291288314122e-19,-5.82646998328264e-19,-1.551652586589607e-18,-0.004825680050998926,0.00029761905898340046,0.0028982425574213266,0.00038265305920504034,0.00044642857392318547,6.505213034913027e-19,-9.920635056914762e-05,1.471470686941786e-19,-1.0466993544759987e-18,-0.00029761905898340046,-0.00012755101488437504,-0.00014880952949170023,-1.4104578449598746e-19,-1.3689395562149126e-18,-3.2514989226163048e-18,-0.005463435314595699,0.0003401360590942204,0.00038265305920504034,0.003939200658351183,0.0005102040595375001,1.0159197570877474e-18,-2.993900869495667e-19,-0.0001360544265480712,-1.0989728264911341e-18,1.0842021724855044e-19,-0.0001530612207716331,-1.3191770943467585e-18,-0.00047831633128225803,-0.0002040816325461492,-3.6312869067511454e-18,-0.0062996032647788525,0.00039682540227659047,0.00044642857392318547,0.0005102040595375001,0.005700821988284588,-4.205145059372245e-19,-1.3151124322142495e-18,-7.099043928713314e-19,-0.00019841270113829523,-2.0553862442875824e-18,-1.482229799319869e-18,-0.00022321428696159273,-2.9439074691402456e-18,-0.00025510202976875007,-0.0008503401186317205,0.00019841270113829523,-0.00019841270113829523,6.505213034913027e-19,1.0159197570877474e-18,-4.205145059372245e-19,2.8344671591185033e-05,-3.7269449679189215e-20,-6.268043809681823e-20,1.3552527156068805e-20,-7.430919517968158e-20,-4.720335892337116e-20,1.1014117459090269e-20,-1.2980923380809642e-19,-3.959390071225864e-34,6.293781405194439e-20,0.00029761905898340046,-8.50340147735551e-05,-9.920635056914762e-05,-2.993900869495667e-19,-1.3151124322142495e-18,-3.7269449679189215e-20,2.8344671591185033e-05,1.9119782258325996e-20,6.580172012775611e-20,2.057003182052319e-20,4.235164736271502e-21,5.590417451878382e-20,1.180083973084279e-20,6.797283659116053e-20,1.663356555773628e-19,0.0003401360590942204,-9.718172805150971e-05,1.471470686941786e-19,-0.0001360544265480712,-7.099043928713314e-19,-6.268043809681823e-20,1.9119782258325996e-20,3.887269122060388e-05,3.3367490095760265e-20,-4.7473094120071607e-20,-1.0532721768597848e-20,3.236801680890039e-20,-7.081616654923499e-20,3.860012802201988e-20,7.398404211311434e-20,0.00039682540227659047,-0.00011337868636474013,-1.0466993544759987e-18,-1.0989728264911341e-18,-0.00019841270113829523,1.3552527156068805e-20,6.580172012775611e-20,3.3367490095760265e-20,5.668934318237007e-05,7.552537686233327e-20,6.473603361780078e-20,8.181915503635344e-20,1.0115005575898799e-19,1.1953540503094347e-19,1.9557818336642866e-19,0.00024801588733680546,4.0561085679873277e-19,-0.00029761905898340046,1.0842021724855044e-19,-2.0553862442875824e-18,-7.430919517968158e-20,2.057003182052319e-20,-4.7473094120071607e-20,7.552537686233327e-20,4.960317528457381e-05,-0.0,1.0164395367051604e-19,-2.950210094269411e-20,9.063045094233022e-20,2.8322015354022696e-19,0.00038265305920504034,1.8220974267074411e-19,-0.00012755101488437504,-0.0001530612207716331,-1.482229799319869e-18,-4.720335892337116e-20,4.235164736271502e-21,-1.0532721768597848e-20,6.473603361780078e-20,-0.0,5.10204081365373e-05,5.690203868085834e-20,-9.6663882096485e-21,8.634648901226662e-20,1.8611610311352579e-19,0.00044642857392318547,-5.271323741792043e-19,-0.00014880952949170023,-1.3191770943467585e-18,-0.00022321428696159273,1.1014117459090269e-20,5.590417451878382e-20,3.236801680890039e-20,8.181915503635344e-20,1.0164395367051604e-19,5.690203868085834e-20,7.440476474585012e-05,1.3275945101094922e-19,1.5737081427018088e-19,2.2875475629940256e-19,0.0003188775444868952,8.210291288314122e-19,-1.4104578449598746e-19,-0.00047831633128225803,-2.9439074691402456e-18,-1.2980923380809642e-19,1.180083973084279e-20,-7.081616654923499e-20,1.0115005575898799e-19,-2.950210094269411e-20,-9.6663882096485e-21,1.3275945101094922e-19,9.566326480126008e-05,1.60499133798674e-19,3.9448522586110626e-19,0.0005102040595375001,-5.82646998328264e-19,-1.3689395562149126e-18,-0.0002040816325461492,-0.00025510202976875007,-3.959390071225864e-34,6.797283659116053e-20,3.860012802201988e-20,1.1953540503094347e-19,9.063045094233022e-20,8.634648901226662e-20,1.5737081427018088e-19,1.60499133798674e-19,0.0001020408162730746,3.8841622755619884e-19,0.00042517005931586027,-1.551652586589607e-18,-3.2514989226163048e-18,-3.6312869067511454e-18,-0.0008503401186317205,6.293781405194439e-20,1.663356555773628e-19,7.398404211311434e-20,1.9557818336642866e-19,2.8322015354022696e-19,1.8611610311352579e-19,2.2875475629940256e-19,3.9448522586110626e-19,3.8841622755619884e-19,0.00021258502965793014,8.0,7.0,6.0,6.0,0.02348305471241474,-0.003649376332759857,-0.004074546508491039,-0.004613601602613926,-0.004613601602613926,0.0001653439103392884,0.00024801588733680546,0.00028344671591185033,0.00028344671591185033,0.00020667989156208932,0.0003188775444868952,0.0003188775444868952,0.0002657313016243279,0.00036443150020204484,0.0002657313016243279,-0.003649376332759857,0.0018693985184654593,0.00024801588733680546,0.00028344671591185033,0.00028344671591185033,-0.0001653439103392884,-7.086167897796258e-05,-8.09847770142369e-05,-8.09847770142369e-05,5.421010862427522e-20,3.205554610133422e-20,3.205554610133422e-20,8.429171420954808e-20,6.165337058171147e-20,8.429171420954808e-20,-0.004074546508491039,0.00024801588733680546,0.0024329177103936672,0.0003188775444868952,0.0003188775444868952,6.776263578034403e-21,-8.26719551696442e-05,1.5952073099921436e-20,1.5952073099921436e-20,-0.00024801588733680546,-0.00010629251482896507,-0.00010629251482896507,-1.660346166478763e-35,-1.214424565587362e-35,-1.660346166478763e-35,-0.004613601602613926,0.00028344671591185033,0.0003188775444868952,0.003306962549686432,0.00036443150020204484,-3.530784093972086e-21,-5.9390780382579614e-21,-0.00011337868636474013,3.83425226535207e-20,1.3552527156068805e-20,-0.00012755101488437504,7.840699825496491e-22,-0.00039859695243649185,-0.00014577258843928576,3.4770332838452794e-19,-0.004613601602613926,0.00028344671591185033,0.0003188775444868952,0.00036443150020204484,0.003306962549686432,-0.0,-5.9390780382579614e-21,3.83425226535207e-20,-0.00011337868636474013,1.6448927535904508e-20,7.840699825496491e-22,-0.00012755101488437504,5.168096771224254e-19,-0.00014577258843928576,-0.00039859695243649185,0.0001653439103392884,-0.0001653439103392884,6.776263578034403e-21,-3.530784093972086e-21,-0.0,2.362055965932086e-05,-1.6940658945086007e-21,1.6940658945086007e-21,-0.0,-4.474891108779263e-22,5.895865758273551e-38,2.763142193295859e-37,1.090340245742197e-36,2.914540048835792e-37,-8.274555776376407e-37,0.00024801588733680546,-7.086167897796258e-05,-8.26719551696442e-05,-5.9390780382579614e-21,-5.9390780382579614e-21,-1.6940658945086007e-21,2.362055965932086e-05,3.148935833960336e-21,3.148935833960336e-21,-1.6940658945086007e-20,-1.6940658945086007e-21,-1.6940658945086007e-21,-3.277519892241803e-36,-2.3972716393137614e-36,-3.277519892241803e-36,0.00028344671591185033,-8.09847770142369e-05,1.5952073099921436e-20,-0.00011337868636474013,3.83425226535207e-20,1.6940658945086007e-21,3.148935833960336e-21,3.2393909350503236e-05,-2.1473826806139674e-21,-3.76158192263132e-37,-1.0789339205564653e-20,5.64237288394698e-37,-3.3716686330054087e-20,-1.233067395478358e-20,3.164674443464342e-35,0.00028344671591185033,-8.09847770142369e-05,1.5952073099921436e-20,3.83425226535207e-20,-0.00011337868636474013,-0.0,3.148935833960336e-21,-2.1473826806139674e-21,3.2393909350503236e-05,-3.76158192263132e-37,6.58276836460481e-37,-1.0789339205564653e-20,4.595118480917488e-35,-1.233067395478358e-20,-3.3716686330054087e-20,0.00020667989156208932,5.421010862427522e-20,-0.00024801588733680546,1.3552527156068805e-20,1.6448927535904508e-20,-4.474891108779263e-22,-1.6940658945086007e-20,-3.76158192263132e-37,-3.76158192263132e-37,4.13359775848221e-05,-6.776263578034403e-21,-6.776263578034403e-21,0.0,0.0,0.0,0.0003188775444868952,3.205554610133422e-20,-0.00010629251482896507,-0.00012755101488437504,7.840699825496491e-22,5.895865758273551e-38,-1.6940658945086007e-21,-1.0789339205564653e-20,6.58276836460481e-37,-6.776263578034403e-21,4.251700738677755e-05,-2.6135666084988302e-22,1.1229912084574688e-35,4.106939350440838e-36,-0.0,0.0003188775444868952,3.205554610133422e-20,-0.00010629251482896507,7.840699825496491e-22,-0.00012755101488437504,2.763142193295859e-37,-1.6940658945086007e-21,5.64237288394698e-37,-1.0789339205564653e-20,-6.776263578034403e-21,-2.6135666084988302e-22,4.251700738677755e-05,-0.0,4.106939350440838e-36,1.1229912084574688e-35,0.0002657313016243279,8.429171420954808e-20,-1.660346166478763e-35,-0.00039859695243649185,5.168096771224254e-19,1.090340245742197e-36,-3.277519892241803e-36,-3.3716686330054087e-20,4.595118480917488e-35,0.0,1.1229912084574688e-35,-0.0,7.97193861217238e-05,-6.764255241985606e-20,-6.95406669693753e-20,0.00036443150020204484,6.165337058171147e-20,-1.214424565587362e-35,-0.00014577258843928576,-0.00014577258843928576,2.914540048835792e-37,-2.3972716393137614e-36,-1.233067395478358e-20,-1.233067395478358e-20,0.0,4.106939350440838e-36,4.106939350440838e-36,-6.764255241985606e-20,5.8309036830905825e-05,7.184001008654904e-35,0.0002657313016243279,8.429171420954808e-20,-1.660346166478763e-35,3.4770332838452794e-19,-0.00039859695243649185,-8.274555776376407e-37,-3.277519892241803e-36,3.164674443464342e-35,-3.3716686330054087e-20,0.0,-0.0,1.1229912084574688e-35,-6.95406669693753e-20,7.184001008654904e-35,7.97193861217238e-05,8.0,7.0,6.0,7.0,0.02060682885348797,-0.0031584061216562986,-0.0035266338381916285,-0.003993561491370201,-0.0035266338381916285,0.00014172335795592517,0.00021258502965793014,0.00024295432376675308,0.00021258502965793014,0.00017715420108288527,0.000273323617875576,0.00023915816564112902,0.0002277696767123416,0.000273323617875576,0.00017715420108288527,-0.0031584061216562986,0.0016110185533761978,0.00021258502965793014,0.00024295432376675308,0.00021258502965793014,-0.00014172335795592517,-6.073858094168827e-05,-6.941552419448271e-05,-6.073858094168827e-05,2.710505431213761e-20,-2.541098841762901e-21,6.324629829825769e-21,-3.1695417247607157e-35,4.419302491547265e-21,2.926252552660917e-20,-0.0035266338381916285,0.00021258502965793014,0.002096746349707246,0.000273323617875576,0.00023915816564112902,-0.0,-7.086167897796258e-05,-1.1631655446181554e-20,-1.6940658945086007e-21,-0.00021258502965793014,-9.110787505051121e-05,-7.97193861217238e-05,-3.385423730368188e-35,5.082197683525802e-21,2.80172438885018e-20,-0.003993561491370201,0.00024295432376675308,0.000273323617875576,0.002850157907232642,0.000273323617875576,5.596809037697488e-21,-1.4172754287944455e-20,-9.718172805150971e-05,-1.7054523910695626e-20,-2.0328790734103208e-20,-0.00010932944860542193,-5.8800630636375644e-21,-0.00034165452234447,-0.00010932944860542193,2.3476200040170407e-19,-0.0035266338381916285,0.00021258502965793014,0.00023915816564112902,0.000273323617875576,0.002096746349707246,-0.0,-1.4132749119335005e-20,-2.1473826806139674e-20,-7.086167897796258e-05,-8.50259517098754e-21,-1.096226115106015e-20,-7.97193861217238e-05,3.5358285063037244e-19,-9.110787505051121e-05,-0.00021258502965793014,0.00014172335795592517,-0.00014172335795592517,-0.0,5.596809037697488e-21,-0.0,2.0246194253559224e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-0.0,-9.669025453696187e-22,4.347111178885069e-38,-5.699455841878084e-38,0.0,5.878435847454893e-38,1.1470466702245952e-23,0.00021258502965793014,-6.073858094168827e-05,-7.086167897796258e-05,-1.4172754287944455e-20,-1.4132749119335005e-20,-1.6940658945086007e-21,2.0246194253559224e-05,3.3233301851799844e-21,3.0429836102357398e-21,-6.776263578034403e-21,8.470329472543003e-22,1.2705494208814505e-21,0.0,-2.9642901800589004e-37,-5.0668065781246077e-23,0.00024295432376675308,-6.941552419448271e-05,-1.1631655446181554e-20,-9.718172805150971e-05,-2.1473826806139674e-20,-1.6940658945086007e-21,3.3233301851799844e-21,2.7766209313995205e-05,6.135378741271235e-21,-1.504632769052528e-36,9.4039548065783e-38,-8.46355932592047e-37,0.0,-4.46406427739282e-37,-2.8231031492233812e-36,0.00021258502965793014,-6.073858094168827e-05,-1.6940658945086007e-21,-1.7054523910695626e-20,-7.086167897796258e-05,-0.0,3.0429836102357398e-21,6.135378741271235e-21,2.0246194253559224e-05,1.8152328090924349e-22,-1.88079096131566e-37,-3.3787593641567067e-21,1.0565138604225843e-35,-1.473100729541559e-21,-9.732456837695472e-21,0.00017715420108288527,2.710505431213761e-20,-0.00021258502965793014,-2.0328790734103208e-20,-8.50259517098754e-21,-9.669025453696187e-22,-6.776263578034403e-21,-1.504632769052528e-36,1.8152328090924349e-22,3.543083948898129e-05,1.6940658945086007e-21,1.6940658945086007e-21,0.0,-9.4039548065783e-38,3.503819237888047e-22,0.000273323617875576,-2.541098841762901e-21,-9.110787505051121e-05,-0.00010932944860542193,-1.096226115106015e-20,4.347111178885069e-38,8.470329472543003e-22,9.4039548065783e-38,-1.88079096131566e-37,1.6940658945086007e-21,3.644314710982144e-05,3.654086915721122e-21,0.0,-2.3033279624837136e-37,-1.2152802858707029e-36,0.00023915816564112902,6.324629829825769e-21,-7.97193861217238e-05,-5.8800630636375644e-21,-7.97193861217238e-05,-5.699455841878084e-38,1.2705494208814505e-21,-8.46355932592047e-37,-3.3787593641567067e-21,1.6940658945086007e-21,3.654086915721122e-21,2.6573128707241267e-05,1.128474576789396e-35,-1.6940658945086007e-21,-1.0039129203038105e-20,0.0002277696767123416,-3.1695417247607157e-35,-3.385423730368188e-35,-0.00034165452234447,3.5358285063037244e-19,0.0,0.0,0.0,1.0565138604225843e-35,0.0,0.0,1.128474576789396e-35,6.8330904468894e-05,-3.623708303828329e-20,-4.3831689967248325e-20,0.000273323617875576,4.419302491547265e-21,5.082197683525802e-21,-0.00010932944860542193,-9.110787505051121e-05,5.878435847454893e-38,-2.9642901800589004e-37,-4.46406427739282e-37,-1.473100729541559e-21,-9.4039548065783e-38,-2.3033279624837136e-37,-1.6940658945086007e-21,-3.623708303828329e-20,3.644314710982144e-05,-5.201178809691675e-21,0.00017715420108288527,2.926252552660917e-20,2.80172438885018e-20,2.3476200040170407e-19,-0.00021258502965793014,1.1470466702245952e-23,-5.0668065781246077e-23,-2.8231031492233812e-36,-9.732456837695472e-21,3.503819237888047e-22,-1.2152802858707029e-36,-1.0039129203038105e-20,-4.3831689967248325e-20,-5.201178809691675e-21,3.543083948898129e-05,8.0,7.0,6.0,8.0,0.018363509327173233,-0.0027842733543366194,-0.0031090560369193554,-0.0035209397319704294,-0.0027842733543366194,0.00012400794366840273,0.00018601190822664648,0.00021258502965793014,0.0001653439103392884,0.0001550099259475246,0.00023915816564112902,0.00018601190822664648,0.00019929847621824592,0.00021258502965793014,0.00012400794366840273,-0.0027842733543366194,0.0014155464014038444,0.00018601190822664648,0.00021258502965793014,0.0001653439103392884,-0.00012400794366840273,-5.3146257414482534e-05,-6.073858094168827e-05,-4.724111931864172e-05,-4.404571325722362e-20,-2.023001212114988e-20,9.26129346831556e-21,-6.321878404157393e-20,-1.8893811701495567e-20,5.957085372452329e-21,-0.0031090560369193554,0.00018601190822664648,0.0018424036679789424,0.00023915816564112902,0.00018601190822664648,-3.3881317890172014e-21,-6.200397183420137e-05,-3.2971868349586905e-20,3.3881317890172014e-21,-0.00018601190822664648,-7.97193861217238e-05,-6.200397183420137e-05,-8.297465526625613e-20,-2.804860243477066e-20,2.8926974541248207e-20,-0.0035209397319704294,0.00021258502965793014,0.00023915816564112902,0.002504517324268818,0.00021258502965793014,2.6954340631281385e-21,-1.274185784402416e-20,-8.50340147735551e-05,5.0906532626878126e-21,-0.0,-9.566326480126008e-05,-4.8322566603898085e-21,-0.00029894770705141127,-8.50340147735551e-05,1.3190618835970663e-19,-0.0027842733543366194,0.0001653439103392884,0.00018601190822664648,0.00021258502965793014,0.0014155464014038444,-0.0,-7.139027513078654e-21,-1.1979999458262247e-20,-4.724111931864172e-05,-4.826612000892379e-22,-2.3987013148990312e-20,-5.3146257414482534e-05,1.1800840377077644e-19,-6.073858094168827e-05,-0.00012400794366840273,0.00012400794366840273,-0.00012400794366840273,-3.3881317890172014e-21,2.6954340631281385e-21,-0.0,1.7715419744490646e-05,8.470329472543003e-22,-1.6940658945086007e-21,-0.0,6.128919623909933e-22,8.33110500774842e-38,3.281763371513798e-38,2.2044682615915093e-37,3.491352163654608e-37,-1.565670875431028e-24,0.00018601190822664648,-5.3146257414482534e-05,-6.200397183420137e-05,-1.274185784402416e-20,-7.139027513078654e-21,8.470329472543003e-22,1.7715419744490646e-05,3.6405309279774125e-21,2.3425510589947742e-21,1.3552527156068805e-20,-0.0,-0.0,4.3690425199970344e-36,1.1315411110863981e-36,-1.399870027025198e-22,0.00021258502965793014,-6.073858094168827e-05,-3.2971868349586905e-20,-8.50340147735551e-05,-1.1979999458262247e-20,-1.6940658945086007e-21,3.6405309279774125e-21,2.4295432012877427e-05,-1.714923528303938e-21,3.385423730368188e-36,8.092004202225098e-21,8.46355932592047e-37,2.5287513939746998e-20,7.192892803709769e-21,-1.128474576789396e-35,0.0001653439103392884,-4.724111931864172e-05,3.3881317890172014e-21,5.0906532626878126e-21,-4.724111931864172e-05,-0.0,2.3425510589947742e-21,-1.714923528303938e-21,1.3497462532541249e-05,-3.5781029245624715e-22,-3.291384182302405e-37,-2.6460839346394707e-21,5.2259839284509174e-36,2.6045130096617897e-22,-1.5786485516117028e-21,0.0001550099259475246,-4.404571325722362e-20,-0.00018601190822664648,-0.0,-4.826612000892379e-22,6.128919623909933e-22,1.3552527156068805e-20,3.385423730368188e-36,-3.5781029245624715e-22,3.100198591710068e-05,-0.0,1.6940658945086007e-21,9.117554511738788e-37,-9.4039548065783e-38,-9.287148113116027e-22,0.00023915816564112902,-2.023001212114988e-20,-7.97193861217238e-05,-9.566326480126008e-05,-2.3987013148990312e-20,8.33110500774842e-38,-0.0,8.092004202225098e-21,-3.291384182302405e-37,-0.0,3.188775372109376e-05,1.284445161550708e-22,3.3189862752737306e-20,9.440672107791659e-21,-1.527033742452866e-35,0.00018601190822664648,9.26129346831556e-21,-6.200397183420137e-05,-4.8322566603898085e-21,-5.3146257414482534e-05,3.281763371513798e-38,-0.0,8.46355932592047e-37,-2.6460839346394707e-21,1.6940658945086007e-21,1.284445161550708e-22,1.7715419744490646e-05,1.2037062152420224e-35,1.2705494208814505e-21,-6.400106829546965e-21,0.00019929847621824592,-6.321878404157393e-20,-8.297465526625613e-20,-0.00029894770705141127,1.1800840377077644e-19,2.2044682615915093e-37,4.3690425199970344e-36,2.5287513939746998e-20,5.2259839284509174e-36,9.117554511738788e-37,3.3189862752737306e-20,1.2037062152420224e-35,5.9789541410282254e-05,3.540251919252837e-20,-2.950210094269411e-20,0.00021258502965793014,-1.8893811701495567e-20,-2.804860243477066e-20,-8.50340147735551e-05,-6.073858094168827e-05,3.491352163654608e-37,1.1315411110863981e-36,7.192892803709769e-21,2.6045130096617897e-22,-9.4039548065783e-38,9.440672107791659e-21,1.2705494208814505e-21,3.540251919252837e-20,2.4295432012877427e-05,4.458375062483675e-21,0.00012400794366840273,5.957085372452329e-21,2.8926974541248207e-20,1.3190618835970663e-19,-0.00012400794366840273,-1.565670875431028e-24,-1.399870027025198e-22,-1.128474576789396e-35,-1.5786485516117028e-21,-9.287148113116027e-22,-1.527033742452866e-35,-6.400106829546965e-21,-2.950210094269411e-20,4.458375062483675e-21,1.7715419744490646e-05,8.0,7.0,7.0,3.0,0.0358382947742939,-0.0059523810632526875,-0.006643282249569893,-0.006643282249569893,-0.01254251692444086,0.00028344671591185033,0.00042517005931586027,0.00042517005931586027,0.0008503401186317205,0.00035430840216577053,0.00047831633128225803,0.0009566326625645161,0.00035430840216577053,0.0009566326625645161,0.0012755101779475808,-0.0059523810632526875,0.003117913845926523,0.00042517005931586027,0.00042517005931586027,0.0008503401186317205,-0.00028344671591185033,-0.00012147716188337654,-0.00012147716188337654,-0.00024295432376675308,6.776263578034403e-20,1.0108160817888636e-20,8.126587460413204e-20,6.776263578034403e-20,8.032479509863958e-20,6.473603878767961e-19,-0.006643282249569893,0.00042517005931586027,0.004056830890476704,0.00047831633128225803,0.0009566326625645161,-0.0,-0.00014172335795592517,-4.388190726213111e-21,4.373229904677125e-20,-0.00042517005931586027,-0.0001594387722434476,-0.0003188775444868952,5.448797668660768e-20,1.0164395367051604e-19,8.49660486470075e-19,-0.006643282249569893,0.00042517005931586027,0.00047831633128225803,0.004056830890476704,0.0009566326625645161,-3.2369116215945006e-22,-3.0862496395265597e-20,-0.00014172335795592517,4.373229904677125e-20,-2.710505431213761e-20,-0.0001594387722434476,6.31191281648069e-20,-0.00042517005931586027,-0.0003188775444868952,8.49660486470075e-19,-0.01254251692444086,0.0008503401186317205,0.0009566326625645161,0.0009566326625645161,0.0252976194024086,-0.0,-3.7782999592613934e-20,-3.684191685594721e-20,-0.0008503401186317205,-1.2754749421559057e-20,-4.573977915173222e-20,-0.0009566326625645161,-0.0,-0.0009566326625645161,-0.0076530613005161285,0.00028344671591185033,-0.00028344671591185033,-0.0,-3.2369116215945006e-22,-0.0,4.049238850711845e-05,-0.0,-0.0,-6.776263578034403e-21,-1.0964693013593442e-21,-1.7076771274221465e-37,1.5478374239383873e-36,-8.357925502573403e-22,-1.461428024483567e-36,-1.0170486142092878e-36,0.00042517005931586027,-0.00012147716188337654,-0.00014172335795592517,-3.0862496395265597e-20,-3.7782999592613934e-20,-0.0,4.049238850711845e-05,6.134459876088834e-21,1.0625070344758285e-20,-2.0328790734103208e-20,3.3881317890172014e-21,-0.0,-1.4937327364962287e-22,1.984176522732015e-22,-2.8746898020351357e-35,0.00042517005931586027,-0.00012147716188337654,-4.388190726213111e-21,-0.00014172335795592517,-3.684191685594721e-20,-0.0,6.134459876088834e-21,4.049238850711845e-05,1.0625070344758285e-20,5.0852508402862715e-22,-6.7575187283134134e-21,-1.1527611786220162e-22,-2.0328790734103208e-20,-0.0,-2.4560091921775243e-35,0.0008503401186317205,-0.00024295432376675308,4.373229904677125e-20,4.373229904677125e-20,-0.0008503401186317205,-6.776263578034403e-21,1.0625070344758285e-20,1.0625070344758285e-20,0.00024295432376675308,-5.266214691683848e-36,-5.266214691683848e-36,-8.092004848459951e-20,-3.76158192263132e-36,-8.092004848459951e-20,-6.473603878767961e-19,0.00035430840216577053,6.776263578034403e-20,-0.00042517005931586027,-2.710505431213761e-20,-1.2754749421559057e-20,-1.0964693013593442e-21,-2.0328790734103208e-20,5.0852508402862715e-22,-5.266214691683848e-36,7.086167897796258e-05,3.3881317890172014e-21,0.0,1.0177591078864456e-21,5.952529820631535e-22,0.0,0.00047831633128225803,1.0108160817888636e-20,-0.0001594387722434476,-0.0001594387722434476,-4.573977915173222e-20,-1.7076771274221465e-37,3.3881317890172014e-21,-6.7575187283134134e-21,-5.266214691683848e-36,3.3881317890172014e-21,5.3146257414482534e-05,1.5246593050577406e-20,-2.007825840607621e-20,-0.0,-3.88035276981245e-35,0.0009566326625645161,8.126587460413204e-20,-0.0003188775444868952,6.31191281648069e-20,-0.0009566326625645161,1.5478374239383873e-36,-0.0,-1.1527611786220162e-22,-8.092004848459951e-20,0.0,1.5246593050577406e-20,0.0003188775444868952,-3.4582834096483038e-22,-1.0620756080875938e-19,-8.49660486470075e-19,0.00035430840216577053,6.776263578034403e-20,5.448797668660768e-20,-0.00042517005931586027,-0.0,-8.357925502573403e-22,-1.4937327364962287e-22,-2.0328790734103208e-20,-3.76158192263132e-36,1.0177591078864456e-21,-2.007825840607621e-20,-3.4582834096483038e-22,7.086167897796258e-05,-0.0,-5.562991142025789e-36,0.0009566326625645161,8.032479509863958e-20,1.0164395367051604e-19,-0.0003188775444868952,-0.0009566326625645161,-1.461428024483567e-36,1.984176522732015e-22,-0.0,-8.092004848459951e-20,5.952529820631535e-22,-0.0,-1.0620756080875938e-19,-0.0,0.0003188775444868952,-8.49660486470075e-19,0.0012755101779475808,6.473603878767961e-19,8.49660486470075e-19,8.49660486470075e-19,-0.0076530613005161285,-1.0170486142092878e-36,-2.8746898020351357e-35,-2.4560091921775243e-35,-6.473603878767961e-19,0.0,-3.88035276981245e-35,-8.49660486470075e-19,-5.562991142025789e-36,-8.49660486470075e-19,0.0038265306502580643,8.0,7.0,7.0,4.0,0.028696322813630104,-0.004591836594045162,-0.0051259566098451614,-0.0051259566098451614,-0.007908163592219353,0.00021258502965793014,0.0003188775444868952,0.0003188775444868952,0.0005102040595375001,0.0002657313016243279,0.0003587372484616935,0.0005739795742556453,0.0002657313016243279,0.0005739795742556453,0.0006377550889737904,-0.004591836594045162,0.002374878618866205,0.0003188775444868952,0.0003188775444868952,0.0005102040595375001,-0.00021258502965793014,-9.110787505051121e-05,-9.110787505051121e-05,-0.00014577258843928576,-7.869593171591547e-19,-3.3425774017202576e-19,-4.6290412605993455e-19,-7.819347119257779e-19,-4.533162755798324e-19,-2.5618629362943603e-18,-0.0051259566098451614,0.0003188775444868952,0.003090454963967204,0.0003587372484616935,0.0005739795742556453,-8.063753657860939e-19,-0.00010629251482896507,-2.7375245104409815e-19,-3.4897850484696086e-19,-0.0003188775444868952,-0.00011957908282056451,-0.00019132652960252017,-2.9993129571472365e-19,8.809142651444724e-20,-1.1319015425083748e-18,-0.0051259566098451614,0.0003188775444868952,0.0003587372484616935,0.003090454963967204,0.0005739795742556453,-8.164582321640208e-19,-2.5602907244438384e-19,-0.00010629251482896507,-3.4897850484696086e-19,3.3881317890172014e-20,-0.00011957908282056451,-3.6392160016091373e-19,-0.0003188775444868952,-0.00019132652960252017,-1.1319015425083748e-18,-0.007908163592219353,0.0005102040595375001,0.0005739795742556453,0.0005739795742556453,0.009736394509673119,-1.3602103192106405e-18,-4.71488451360645e-19,-4.60747511106644e-19,-0.0003401360590942204,4.8084513070893273e-20,-5.006379342554957e-19,-0.00038265305920504034,-2.168404344971009e-19,-0.00038265305920504034,-0.0019132653251290321,0.00021258502965793014,-0.00021258502965793014,-8.063753657860939e-19,-8.164582321640208e-19,-1.3602103192106405e-18,3.0369290470844135e-05,4.404571325722362e-20,4.743384504624082e-20,7.792703114739563e-20,8.014889643384988e-20,3.540251919252837e-20,5.664402941557569e-20,7.95955836898858e-20,5.664402941557569e-20,2.5961846761619285e-19,0.0003188775444868952,-9.110787505051121e-05,-0.00010629251482896507,-2.5602907244438384e-19,-4.71488451360645e-19,4.404571325722362e-20,3.0369290470844135e-05,6.83860100759565e-21,1.150134865031031e-20,2.0312327901208842e-20,1.5246593050577406e-20,2.879912020664621e-20,3.450337386668323e-20,6.377722062013315e-21,1.2475173522067357e-19,0.0003188775444868952,-9.110787505051121e-05,-2.7375245104409815e-19,-0.00010629251482896507,-4.60747511106644e-19,4.743384504624082e-20,6.83860100759565e-21,3.0369290470844135e-05,1.150134865031031e-20,3.4781778303944143e-20,2.064727465698173e-20,6.185540298397901e-21,2.0312327901208842e-20,2.541098841762901e-20,1.2475173522067357e-19,0.0005102040595375001,-0.00014577258843928576,-3.4897850484696086e-19,-3.4897850484696086e-19,-0.0003401360590942204,7.792703114739563e-20,1.150134865031031e-20,1.150134865031031e-20,9.718172805150971e-05,5.48458098497193e-20,6.069003555565607e-21,6.662635295939899e-21,5.48458098497193e-20,6.662635295939899e-21,3.331317728749306e-20,0.0002657313016243279,-7.869593171591547e-19,-0.0003188775444868952,3.3881317890172014e-20,4.8084513070893273e-20,8.014889643384988e-20,2.0312327901208842e-20,3.4781778303944143e-20,5.48458098497193e-20,5.3146257414482534e-05,-1.3552527156068805e-20,-1.3552527156068805e-20,-8.192637509208136e-21,-2.7395859996238285e-20,-1.180083973084279e-20,0.0003587372484616935,-3.3425774017202576e-19,-0.00011957908282056451,-0.00011957908282056451,-5.006379342554957e-19,3.540251919252837e-20,1.5246593050577406e-20,2.064727465698173e-20,6.069003555565607e-21,-1.3552527156068805e-20,3.98596930608619e-05,1.5246593050577406e-20,5.749988346858104e-20,3.3034284942917713e-20,1.3275945101094922e-19,0.0005739795742556453,-4.6290412605993455e-19,-0.00019132652960252017,-3.6392160016091373e-19,-0.00038265305920504034,5.664402941557569e-20,2.879912020664621e-20,6.185540298397901e-21,6.662635295939899e-21,-1.3552527156068805e-20,1.5246593050577406e-20,0.00012755101488437504,5.699364247135005e-20,1.2080207058035504e-20,2.9240147059865344e-19,0.0002657313016243279,-7.819347119257779e-19,-2.9993129571472365e-19,-0.0003188775444868952,-2.168404344971009e-19,7.95955836898858e-20,3.450337386668323e-20,2.0312327901208842e-20,5.48458098497193e-20,-8.192637509208136e-21,5.749988346858104e-20,5.699364247135005e-20,5.3146257414482534e-05,-2.1848928980125464e-20,-1.180083973084279e-20,0.0005739795742556453,-4.533162755798324e-19,8.809142651444724e-20,-0.00019132652960252017,-0.00038265305920504034,5.664402941557569e-20,6.377722062013315e-21,2.541098841762901e-20,6.662635295939899e-21,-2.7395859996238285e-20,3.3034284942917713e-20,1.2080207058035504e-20,-2.1848928980125464e-20,0.00012755101488437504,2.9240147059865344e-19,0.0006377550889737904,-2.5618629362943603e-18,-1.1319015425083748e-18,-1.1319015425083748e-18,-0.0019132653251290321,2.5961846761619285e-19,1.2475173522067357e-19,1.2475173522067357e-19,3.331317728749306e-20,-1.180083973084279e-20,1.3275945101094922e-19,2.9240147059865344e-19,-1.180083973084279e-20,2.9240147059865344e-19,0.0006377550889737904,8.0,7.0,7.0,5.0,0.023975037038326263,-0.0037414967082440853,-0.004177296068519354,-0.004177296068519354,-0.005454324651509523,0.0001700680295471102,0.00025510202976875007,0.00025510202976875007,0.0003401360590942204,0.00021258502965793014,0.00028698978712782264,0.00038265305920504034,0.00021258502965793014,0.00038265305920504034,0.00036443150020204484,-0.0037414967082440853,0.0019193391781300306,0.00025510202976875007,0.00025510202976875007,0.0003401360590942204,-0.0001700680295471102,-7.288629421964288e-05,-7.288629421964288e-05,-9.718172805150971e-05,2.330573621049913e-19,-4.006038614651154e-20,-5.73817672469873e-19,2.439454888092385e-19,-5.712765736281101e-19,-1.577697091958875e-18,-0.004177296068519354,0.00025510202976875007,0.0024978742003440857,0.00028698978712782264,0.00038265305920504034,5.014435047745458e-19,-8.50340147735551e-05,-3.971118086492977e-19,-8.790250880229778e-19,-0.00025510202976875007,-9.566326480126008e-05,-0.00012755101488437504,-1.135242447454294e-19,-1.0228363311771861e-18,-2.570248893344423e-18,-0.004177296068519354,0.00025510202976875007,0.00028698978712782264,0.0024978742003440857,0.00038265305920504034,5.069217151763314e-19,-3.9949509693982196e-19,-8.50340147735551e-05,-8.790250880229778e-19,-3.1170812458958252e-19,-9.566326480126008e-05,-1.0836708123395157e-18,-0.00025510202976875007,-0.00012755101488437504,-2.570248893344423e-18,-0.005454324651509523,0.0003401360590942204,0.00038265305920504034,0.00038265305920504034,0.004913751035928726,-4.05529508755367e-19,-1.1478512390796223e-18,-1.1453101402378594e-18,-0.0001700680295471102,-1.709613684699724e-18,-7.28376525021771e-19,-0.00019132652960252017,-1.7143946852427039e-18,-0.00019132652960252017,-0.0007288630004040897,0.0001700680295471102,-0.0001700680295471102,5.014435047745458e-19,5.069217151763314e-19,-4.05529508755367e-19,2.4295432012877427e-05,-2.202285662861181e-20,-2.202285662861181e-20,1.5246593050577406e-20,-6.294404375593268e-20,-2.832201470778784e-20,9.440672107791659e-21,-6.318758382284419e-20,9.440672107791659e-21,5.394669683561683e-20,0.00025510202976875007,-7.288629421964288e-05,-8.50340147735551e-05,-3.9949509693982196e-19,-1.1478512390796223e-18,-2.202285662861181e-20,2.4295432012877427e-05,2.4284903182673105e-20,4.9235250549925246e-20,6.907969371389402e-22,1.9481757786848908e-20,5.505714157152952e-20,1.9716004996566268e-20,5.664402941557569e-20,1.4257341906631098e-19,0.00025510202976875007,-7.288629421964288e-05,-3.971118086492977e-19,-8.50340147735551e-05,-1.1453101402378594e-18,-2.202285662861181e-20,2.4284903182673105e-20,2.4295432012877427e-05,4.9235250549925246e-20,1.9342595957896798e-20,1.9496385312759172e-20,5.664402941557569e-20,-2.6973348013911632e-21,5.421010862427522e-20,1.4257341906631098e-19,0.0003401360590942204,-9.718172805150971e-05,-8.790250880229778e-19,-8.790250880229778e-19,-0.0001700680295471102,1.5246593050577406e-20,4.9235250549925246e-20,4.9235250549925246e-20,4.8590864025754854e-05,6.473603361780078e-20,4.8552028444524855e-20,7.013070524006703e-20,6.473603361780078e-20,7.013070524006703e-20,1.5690153144422482e-19,0.00021258502965793014,2.330573621049913e-19,-0.00025510202976875007,-3.1170812458958252e-19,-1.709613684699724e-18,-6.294404375593268e-20,6.907969371389402e-22,1.9342595957896798e-20,6.473603361780078e-20,4.251700738677755e-05,6.776263578034403e-21,5.082197683525802e-20,5.706790535734013e-21,8.024570887726127e-20,2.4276013899145e-19,0.00028698978712782264,-4.006038614651154e-20,-9.566326480126008e-05,-9.566326480126008e-05,-7.28376525021771e-19,-2.832201470778784e-20,1.9481757786848908e-20,1.9496385312759172e-20,4.8552028444524855e-20,6.776263578034403e-21,3.188775372109376e-05,4.3871795302260076e-20,-6.098760004853138e-20,3.3034284942917713e-20,6.06900347478625e-20,0.00038265305920504034,-5.73817672469873e-19,-0.00012755101488437504,-1.0836708123395157e-18,-0.00019132652960252017,9.440672107791659e-21,5.505714157152952e-20,5.664402941557569e-20,7.013070524006703e-20,5.082197683525802e-20,4.3871795302260076e-20,6.377550744218752e-05,8.49660473545378e-20,1.0076101591479811e-19,1.9607549986033202e-19,0.00021258502965793014,2.439454888092385e-19,-1.135242447454294e-19,-0.00025510202976875007,-1.7143946852427039e-18,-6.318758382284419e-20,1.9716004996566268e-20,-2.6973348013911632e-21,6.473603361780078e-20,5.706790535734013e-21,-6.098760004853138e-20,8.49660473545378e-20,4.251700738677755e-05,4.704290527158148e-20,2.4276013899145e-19,0.00038265305920504034,-5.712765736281101e-19,-1.0228363311771861e-18,-0.00012755101488437504,-0.00019132652960252017,9.440672107791659e-21,5.664402941557569e-20,5.421010862427522e-20,7.013070524006703e-20,8.024570887726127e-20,3.3034284942917713e-20,1.0076101591479811e-19,4.704290527158148e-20,6.377550744218752e-05,1.9607549986033202e-19,0.00036443150020204484,-1.577697091958875e-18,-2.570248893344423e-18,-2.570248893344423e-18,-0.0007288630004040897,5.394669683561683e-20,1.4257341906631098e-19,1.4257341906631098e-19,1.5690153144422482e-19,2.4276013899145e-19,6.06900347478625e-20,1.9607549986033202e-19,2.4276013899145e-19,1.9607549986033202e-19,0.00018221575010102242,8.0,7.0,7.0,6.0,0.02060682885348797,-0.0031584061216562986,-0.0035266338381916285,-0.0035266338381916285,-0.003993561491370201,0.00014172335795592517,0.00021258502965793014,0.00021258502965793014,0.00024295432376675308,0.00017715420108288527,0.00023915816564112902,0.000273323617875576,0.00017715420108288527,0.000273323617875576,0.0002277696767123416,-0.0031584061216562986,0.0016110185533761978,0.00021258502965793014,0.00021258502965793014,0.00024295432376675308,-0.00014172335795592517,-6.073858094168827e-05,-6.073858094168827e-05,-6.941552419448271e-05,2.0328790734103208e-20,5.054080408944318e-21,-2.541098841762901e-21,2.710505431213761e-20,-5.082197683525802e-21,0.0,-0.0035266338381916285,0.00021258502965793014,0.002096746349707246,0.00023915816564112902,0.000273323617875576,-0.0,-7.086167897796258e-05,-5.066642002807117e-21,-1.1631655446181554e-20,-0.00021258502965793014,-7.97193861217238e-05,-9.110787505051121e-05,2.3056982643906545e-20,-7.52316384526264e-37,-0.0,-0.0035266338381916285,0.00021258502965793014,0.00023915816564112902,0.002096746349707246,0.000273323617875576,-6.481084928702614e-23,-1.5796380583415337e-20,-7.086167897796258e-05,-1.1631655446181554e-20,-6.776263578034403e-21,-7.97193861217238e-05,-1.5187766291858108e-20,-0.00021258502965793014,-9.110787505051121e-05,-0.0,-0.003993561491370201,0.00024295432376675308,0.000273323617875576,0.000273323617875576,0.002850157907232642,1.3552527156068805e-20,-1.4172754287944455e-20,-1.6713853129707356e-20,-9.718172805150971e-05,-1.2463833069739711e-20,-1.5187766291858108e-20,-0.00010932944860542193,-1.3552527156068805e-20,-0.00010932944860542193,-0.00034165452234447,0.00014172335795592517,-0.00014172335795592517,-0.0,-6.481084928702614e-23,1.3552527156068805e-20,2.0246194253559224e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-3.3881317890172014e-21,-1.8056064341293315e-22,5.21268062861233e-38,-3.504303860892915e-38,3.85652387110441e-22,3.193796019636729e-38,-0.0,0.00021258502965793014,-6.073858094168827e-05,-7.086167897796258e-05,-1.5796380583415337e-20,-1.4172754287944455e-20,-1.6940658945086007e-21,2.0246194253559224e-05,3.1343761627096956e-21,3.3233301851799844e-21,-6.776263578034403e-21,1.2705494208814505e-21,8.470329472543003e-22,1.560640889251199e-22,2.3406576567423096e-37,-0.0,0.00021258502965793014,-6.073858094168827e-05,-5.066642002807117e-21,-7.086167897796258e-05,-1.6713853129707356e-20,-1.6940658945086007e-21,3.1343761627096956e-21,2.0246194253559224e-05,3.3233301851799844e-21,4.557006858956212e-22,-2.9552428905295566e-21,-3.0562853121379475e-37,-1.0164395367051604e-20,1.6940658945086007e-21,-0.0,0.00024295432376675308,-6.941552419448271e-05,-1.1631655446181554e-20,-1.1631655446181554e-20,-9.718172805150971e-05,-3.3881317890172014e-21,3.3233301851799844e-21,3.3233301851799844e-21,2.7766209313995205e-05,-1.128474576789396e-36,-1.88079096131566e-37,1.88079096131566e-37,-1.504632769052528e-36,1.88079096131566e-37,-0.0,0.00017715420108288527,2.0328790734103208e-20,-0.00021258502965793014,-6.776263578034403e-21,-1.2463833069739711e-20,-1.8056064341293315e-22,-6.776263578034403e-21,4.557006858956212e-22,-1.128474576789396e-36,3.543083948898129e-05,1.6940658945086007e-21,1.6940658945086007e-21,3.255577459007223e-22,-4.646349217371769e-38,-0.0,0.00023915816564112902,5.054080408944318e-21,-7.97193861217238e-05,-7.97193861217238e-05,-1.5187766291858108e-20,5.21268062861233e-38,1.2705494208814505e-21,-2.9552428905295566e-21,-1.88079096131566e-37,1.6940658945086007e-21,2.6573128707241267e-05,5.062588898584964e-21,-8.573110702620552e-21,-0.0,-0.0,0.000273323617875576,-2.541098841762901e-21,-9.110787505051121e-05,-1.5187766291858108e-20,-0.00010932944860542193,-3.504303860892915e-38,8.470329472543003e-22,-3.0562853121379475e-37,1.88079096131566e-37,1.6940658945086007e-21,5.062588898584964e-21,3.644314710982144e-05,-1.504632769052528e-36,9.4039548065783e-38,-0.0,0.00017715420108288527,2.710505431213761e-20,2.3056982643906545e-20,-0.00021258502965793014,-1.3552527156068805e-20,3.85652387110441e-22,1.560640889251199e-22,-1.0164395367051604e-20,-1.504632769052528e-36,3.255577459007223e-22,-8.573110702620552e-21,-1.504632769052528e-36,3.543083948898129e-05,7.818765705799002e-22,-0.0,0.000273323617875576,-5.082197683525802e-21,-7.52316384526264e-37,-9.110787505051121e-05,-0.00010932944860542193,3.193796019636729e-38,2.3406576567423096e-37,1.6940658945086007e-21,1.88079096131566e-37,-4.646349217371769e-38,-0.0,9.4039548065783e-38,7.818765705799002e-22,3.644314710982144e-05,-0.0,0.0002277696767123416,0.0,-0.0,-0.0,-0.00034165452234447,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,6.8330904468894e-05,8.0,7.0,7.0,7.0,0.018077319487929344,-0.00273323617875576,-0.0030521138105541468,-0.0030521138105541468,-0.0030521138105541468,0.00012147716188337654,0.00018221575010102242,0.00018221575010102242,0.00018221575010102242,0.00015184645599219948,0.00020499271340668201,0.00020499271340668201,0.00015184645599219948,0.00020499271340668201,0.00015184645599219948,-0.00273323617875576,0.0013883104547858238,0.00018221575010102242,0.00018221575010102242,0.00018221575010102242,-0.00012147716188337654,-5.206164132687263e-05,-5.206164132687263e-05,-5.206164132687263e-05,4.0657581468206416e-20,2.771117050208906e-21,2.4872293102155603e-21,4.0657581468206416e-20,6.641279253513756e-21,3.64444242598728e-20,-0.0030521138105541468,0.00018221575010102242,0.0018069727811962366,0.00020499271340668201,0.00020499271340668201,-0.0,-6.073858094168827e-05,-6.843551974367464e-21,-1.0164395367051604e-20,-0.00018221575010102242,-6.8330904468894e-05,-6.8330904468894e-05,-1.9705477830801824e-21,-2.428240588886089e-21,-8.079391313470798e-21,-0.0030521138105541468,0.00018221575010102242,0.00020499271340668201,0.0018069727811962366,0.00020499271340668201,-9.402404099247928e-22,-7.833632237630886e-21,-6.073858094168827e-05,-6.895379201829173e-21,-0.0,-6.8330904468894e-05,-3.3881317890172014e-21,-0.00018221575010102242,-6.8330904468894e-05,5.276649347064336e-21,-0.0030521138105541468,0.00018221575010102242,0.00020499271340668201,0.00020499271340668201,0.0018069727811962366,-0.0,-9.969628260125178e-21,-6.5814964711079764e-21,-6.073858094168827e-05,-6.986542744826899e-21,-2.5950673280221927e-21,-6.8330904468894e-05,6.776263578034403e-21,-6.8330904468894e-05,-0.00018221575010102242,0.00012147716188337654,-0.00012147716188337654,-0.0,-9.402404099247928e-22,-0.0,1.735388104862068e-05,-0.0,-0.0,-0.0,-7.808013342334222e-23,3.6088527774983396e-38,4.585819009166487e-38,6.350988133915227e-22,2.1779738554745814e-37,1.2863073781580089e-22,0.00018221575010102242,-5.206164132687263e-05,-6.073858094168827e-05,-7.833632237630886e-21,-9.969628260125178e-21,-0.0,1.735388104862068e-05,2.56374291103154e-21,2.7060595777593586e-21,-1.3552527156068805e-20,-4.235164736271502e-22,-4.235164736271502e-22,2.0166364450423045e-23,-3.078969755886192e-37,2.721490858268734e-22,0.00018221575010102242,-5.206164132687263e-05,-6.843551974367464e-21,-6.073858094168827e-05,-6.5814964711079764e-21,-0.0,2.56374291103154e-21,1.735388104862068e-05,2.625735008842918e-21,-1.149453263965371e-22,-5.246007313689361e-22,6.379950436298384e-23,-1.5246593050577406e-20,-1.2705494208814505e-21,1.5564207989526286e-22,0.00018221575010102242,-5.206164132687263e-05,-1.0164395367051604e-20,-6.895379201829173e-21,-6.073858094168827e-05,-0.0,2.7060595777593586e-21,2.625735008842918e-21,1.735388104862068e-05,3.1200471165224183e-22,2.4411559458441123e-23,-4.693594653707247e-22,7.10311500533259e-23,-9.432103639478668e-22,-1.2900571508470639e-20,0.00015184645599219948,4.0657581468206416e-20,-0.00018221575010102242,-0.0,-6.986542744826899e-21,-7.808013342334222e-23,-1.3552527156068805e-20,-1.149453263965371e-22,3.1200471165224183e-22,3.0369290470844135e-05,1.6940658945086007e-21,1.6940658945086007e-21,1.638069669691431e-22,1.88079096131566e-37,9.459952322699142e-22,0.00020499271340668201,2.771117050208906e-21,-6.8330904468894e-05,-6.8330904468894e-05,-2.5950673280221927e-21,3.6088527774983396e-38,-4.235164736271502e-22,-5.246007313689361e-22,2.4411559458441123e-23,1.6940658945086007e-21,2.2776968762627803e-05,2.5435066724375762e-22,8.700818978048223e-23,4.235164736271502e-22,7.323467837532337e-23,0.00020499271340668201,2.4872293102155603e-21,-6.8330904468894e-05,-3.3881317890172014e-21,-6.8330904468894e-05,4.585819009166487e-38,-4.235164736271502e-22,6.379950436298384e-23,-4.693594653707247e-22,1.6940658945086007e-21,2.5435066724375762e-22,2.2776968762627803e-05,1.9139850677806427e-22,3.858970728305788e-22,2.5273202564044e-22,0.00015184645599219948,4.0657581468206416e-20,-1.9705477830801824e-21,-0.00018221575010102242,6.776263578034403e-21,6.350988133915227e-22,2.0166364450423045e-23,-1.5246593050577406e-20,7.10311500533259e-23,1.638069669691431e-22,8.700818978048223e-23,1.9139850677806427e-22,3.0369290470844135e-05,-1.2053929937199524e-21,-2.9972791550888966e-22,0.00020499271340668201,6.641279253513756e-21,-2.428240588886089e-21,-6.8330904468894e-05,-6.8330904468894e-05,2.1779738554745814e-37,-3.078969755886192e-37,-1.2705494208814505e-21,-9.432103639478668e-22,1.88079096131566e-37,4.235164736271502e-22,3.858970728305788e-22,-1.2053929937199524e-21,2.2776968762627803e-05,-1.3642897243835399e-21,0.00015184645599219948,3.64444242598728e-20,-8.079391313470798e-21,5.276649347064336e-21,-0.00018221575010102242,1.2863073781580089e-22,2.721490858268734e-22,1.5564207989526286e-22,-1.2900571508470639e-20,9.459952322699142e-22,7.323467837532337e-23,2.5273202564044e-22,-2.9972791550888966e-22,-1.3642897243835399e-21,3.0369290470844135e-05,8.0,7.0,7.0,8.0,0.01610553078353405,-0.002409297041594982,-0.002690529450774193,-0.002690529450774193,-0.002409297041594982,0.00010629251482896507,0.0001594387722434476,0.0001594387722434476,0.00014172335795592517,0.00013286565081216395,0.00017936862423084676,0.0001594387722434476,0.00013286565081216395,0.0001594387722434476,0.00010629251482896507,-0.002409297041594982,0.0012198331532999873,0.0001594387722434476,0.0001594387722434476,0.00014172335795592517,-0.00010629251482896507,-4.5553937525255606e-05,-4.5553937525255606e-05,-4.049238850711845e-05,-3.160771116393286e-19,-1.187308167888708e-19,-4.597147373377803e-20,-3.2372920438969183e-19,-4.5293185631484546e-20,-1.7854464754818943e-19,-0.002690529450774193,0.0001594387722434476,0.0015877444529905915,0.00017936862423084676,0.0001594387722434476,-4.0657581468206416e-19,-5.3146257414482534e-05,-1.2920672320473104e-19,1.4907779871675686e-19,-0.0001594387722434476,-5.9789541410282254e-05,-5.3146257414482534e-05,-1.4345059240713518e-19,7.059686675168041e-20,-5.623480765690922e-20,-0.002690529450774193,0.0001594387722434476,0.00017936862423084676,0.0015877444529905915,0.0001594387722434476,-4.0903272204710565e-19,-1.2257519038449928e-19,-5.3146257414482534e-05,1.4854394410423338e-19,3.7269449679189215e-20,-5.9789541410282254e-05,-5.929230630780102e-20,-0.0001594387722434476,-5.3146257414482534e-05,-5.752824671630366e-20,-0.002409297041594982,0.00014172335795592517,0.0001594387722434476,0.0001594387722434476,0.0012198331532999873,-2.9689750742060885e-19,-5.820858338308292e-20,-5.759432423007987e-20,-4.049238850711845e-05,2.1156745536010797e-19,-9.08449169031802e-21,-4.5553937525255606e-05,1.3891340334970526e-19,-4.5553937525255606e-05,-0.00010629251482896507,0.00010629251482896507,-0.00010629251482896507,-4.0657581468206416e-19,-4.0903272204710565e-19,-2.9689750742060885e-19,1.5184645235422067e-05,2.286988957586611e-20,2.202285662861181e-20,1.6093625997831706e-20,3.9487250148414594e-20,1.7701259596264185e-20,1.2924729382883735e-20,4.1134060119256835e-20,1.2924729382883735e-20,2.5254459026987555e-20,0.0001594387722434476,-4.5553937525255606e-05,-5.3146257414482534e-05,-1.2257519038449928e-19,-5.820858338308292e-20,2.286988957586611e-20,1.5184645235422067e-05,3.3743138742094094e-21,4.99359252372879e-22,1.1850229845113022e-20,7.199780051661553e-21,2.964615315390051e-21,1.7370448743554062e-20,3.3760197755616097e-35,9.039141351676087e-21,0.0001594387722434476,-4.5553937525255606e-05,-1.2920672320473104e-19,-5.3146257414482534e-05,-5.759432423007987e-20,2.202285662861181e-20,3.3743138742094094e-21,1.5184645235422067e-05,4.919331051377457e-22,1.7255929465155217e-20,9.614707192822408e-21,3.7465131157946326e-23,1.0156163950604421e-20,2.541098841762901e-21,9.11440994065701e-21,0.00014172335795592517,-4.049238850711845e-05,1.4907779871675686e-19,1.4854394410423338e-19,-4.049238850711845e-05,1.6093625997831706e-20,4.99359252372879e-22,4.919331051377457e-22,1.1569253729248885e-05,-1.042845096718285e-20,-1.1556844068359521e-20,-1.1434628132854812e-20,-1.045072991375923e-20,-1.1233297703196947e-20,-1.2757300433643473e-20,0.00013286565081216395,-3.160771116393286e-19,-0.0001594387722434476,3.7269449679189215e-20,2.1156745536010797e-19,3.9487250148414594e-20,1.1850229845113022e-20,1.7255929465155217e-20,-1.042845096718285e-20,2.6573128707241267e-05,-8.470329472543003e-21,-1.3552527156068805e-20,-3.900262005248012e-21,-1.1519867317832554e-20,-1.2128316011708559e-20,0.00017936862423084676,-1.187308167888708e-19,-5.9789541410282254e-05,-5.9789541410282254e-05,-9.08449169031802e-21,1.7701259596264185e-20,7.199780051661553e-21,9.614707192822408e-21,-1.1556844068359521e-20,-8.470329472543003e-21,1.992984653043095e-05,-8.06069432551865e-22,2.6036745704263974e-20,3.3881317890172014e-21,8.858932300413167e-21,0.0001594387722434476,-4.597147373377803e-20,-5.3146257414482534e-05,-5.929230630780102e-20,-4.5553937525255606e-05,1.2924729382883735e-20,2.964615315390051e-21,3.7465131157946326e-23,-1.1434628132854812e-20,-1.3552527156068805e-20,-8.06069432551865e-22,1.5184645235422067e-05,1.219420773296437e-20,1.731200770626298e-21,2.3644426281661245e-20,0.00013286565081216395,-3.2372920438969183e-19,-1.4345059240713518e-19,-0.0001594387722434476,1.3891340334970526e-19,4.1134060119256835e-20,1.7370448743554062e-20,1.0156163950604421e-20,-1.045072991375923e-20,-3.900262005248012e-21,2.6036745704263974e-20,1.219420773296437e-20,2.6573128707241267e-05,-1.3104663784333893e-20,-1.1550384950998219e-20,0.0001594387722434476,-4.5293185631484546e-20,7.059686675168041e-20,-5.3146257414482534e-05,-4.5553937525255606e-05,1.2924729382883735e-20,3.3760197755616097e-35,2.541098841762901e-21,-1.1233297703196947e-20,-1.1519867317832554e-20,3.3881317890172014e-21,1.731200770626298e-21,-1.3104663784333893e-20,1.5184645235422067e-05,2.286541116833096e-20,0.00010629251482896507,-1.7854464754818943e-19,-5.623480765690922e-20,-5.752824671630366e-20,-0.00010629251482896507,2.5254459026987555e-20,9.039141351676087e-21,9.11440994065701e-21,-1.2757300433643473e-20,-1.2128316011708559e-20,8.858932300413167e-21,2.3644426281661245e-20,-1.1550384950998219e-20,2.286541116833096e-20,1.5184645235422067e-05,8.0,7.0,8.0,3.0,0.031983714550733566,-0.005249669309705496,-0.005859375,-0.005249669309705496,-0.011067708022892475,0.00024801588733680546,0.00037202381645329297,0.0003306878206785768,0.0007440476329065859,0.0003100198518950492,0.00037202381645329297,0.0008370535797439516,0.00024801588733680546,0.0007440476329065859,0.0011160714784637094,-0.005249669309705496,0.0027399847749620676,0.00037202381645329297,0.0003306878206785768,0.0007440476329065859,-0.00024801588733680546,-0.00010629251482896507,-9.448223863728344e-05,-0.00021258502965793014,-9.486769009248164e-20,2.148720225202117e-20,-4.8715760122609204e-21,2.710505431213761e-20,-0.0,0.0,-0.005859375,0.00037202381645329297,0.0035652280785143375,0.00037202381645329297,0.0008370535797439516,-6.776263578034403e-21,-0.00012400794366840273,5.849553811330157e-23,-3.920183083181832e-20,-0.00037202381645329297,-0.00012400794366840273,-0.00027901786961592734,3.385427619272492e-20,-0.0,-0.0,-0.005249669309705496,0.0003306878206785768,0.00037202381645329297,0.0027399847749620676,0.0007440476329065859,3.9007822243051254e-21,-2.19993369111166e-20,-9.448223863728344e-05,-1.4842478162841173e-20,-2.0328790734103208e-20,-0.00010629251482896507,5.222862977864712e-20,-0.00024801588733680546,-0.00021258502965793014,-0.0,-0.011067708022892475,0.0007440476329065859,0.0008370535797439516,0.0007440476329065859,0.0222284235060215,-0.0,-4.428402851534412e-20,-1.466194437856434e-20,-0.0007440476329065859,-3.520433027205236e-21,5.082197683525802e-20,-0.0008370535797439516,1.3552527156068805e-20,-0.0007440476329065859,-0.0066964286379516125,0.00024801588733680546,-0.00024801588733680546,-6.776263578034403e-21,3.9007822243051254e-21,-0.0,3.543083948898129e-05,1.6940658945086007e-21,-0.0,-0.0,1.5333312315318186e-21,2.1467908167999e-37,1.1150217359838893e-38,-6.6303933264313915e-22,-0.0,-0.0,0.00037202381645329297,-0.00010629251482896507,-0.00012400794366840273,-2.19993369111166e-20,-4.428402851534412e-20,1.6940658945086007e-21,3.543083948898129e-05,5.108691696934507e-21,1.1200523094805234e-20,2.710505431213761e-20,-0.0,1.6940658945086007e-21,5.440077698664296e-22,-0.0,-0.0,0.0003306878206785768,-9.448223863728344e-05,5.849553811330157e-23,-9.448223863728344e-05,-1.466194437856434e-20,-0.0,5.108691696934507e-21,2.6994925065082498e-05,4.240707815727887e-21,5.55148252896578e-22,-6.139200816533242e-21,-6.017762937694795e-23,-6.776263578034403e-21,-0.0,-0.0,0.0007440476329065859,-0.00021258502965793014,-3.920183083181832e-20,-1.4842478162841173e-20,-0.0007440476329065859,-0.0,1.1200523094805234e-20,4.240707815727887e-21,0.00021258502965793014,8.275480229788904e-36,-1.128474576789396e-36,7.52316384526264e-37,-3.76158192263132e-37,-0.0,-0.0,0.0003100198518950492,-9.486769009248164e-20,-0.00037202381645329297,-2.0328790734103208e-20,-3.520433027205236e-21,1.5333312315318186e-21,2.710505431213761e-20,5.55148252896578e-22,8.275480229788904e-36,6.200397183420137e-05,3.3881317890172014e-21,-6.776263578034403e-21,2.1168006259113386e-21,0.0,-0.0,0.00037202381645329297,2.148720225202117e-20,-0.00012400794366840273,-0.00010629251482896507,5.082197683525802e-20,2.1467908167999e-37,-0.0,-6.139200816533242e-21,-1.128474576789396e-36,3.3881317890172014e-21,3.543083948898129e-05,-1.6940658945086007e-20,-1.410272666362588e-20,-0.0,-0.0,0.0008370535797439516,-4.8715760122609204e-21,-0.00027901786961592734,5.222862977864712e-20,-0.0008370535797439516,1.1150217359838893e-38,1.6940658945086007e-21,-6.017762937694795e-23,7.52316384526264e-37,-6.776263578034403e-21,-1.6940658945086007e-20,0.00027901786961592734,-1.5796627869221018e-22,-0.0,-0.0,0.00024801588733680546,2.710505431213761e-20,3.385427619272492e-20,-0.00024801588733680546,1.3552527156068805e-20,-6.6303933264313915e-22,5.440077698664296e-22,-6.776263578034403e-21,-3.76158192263132e-37,2.1168006259113386e-21,-1.410272666362588e-20,-1.5796627869221018e-22,3.543083948898129e-05,0.0,-0.0,0.0007440476329065859,-0.0,-0.0,-0.00021258502965793014,-0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.00021258502965793014,-0.0,0.0011160714784637094,0.0,-0.0,-0.0,-0.0066964286379516125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033482143189758062,8.0,7.0,8.0,4.0,0.0255921371281147,-0.0040488592348992825,-0.004520089365541935,-0.0040488592348992825,-0.0069754463620483875,0.00018601190822664648,0.00027901786961592734,0.00024801588733680546,0.00044642857392318547,0.0002325148816453293,0.00027901786961592734,0.0005022321711294353,0.00018601190822664648,0.00044642857392318547,0.0005580357392318547,-0.0040488592348992825,0.0020868764258921146,0.00027901786961592734,0.00024801588733680546,0.00044642857392318547,-0.00018601190822664648,-7.97193861217238e-05,-7.086167897796258e-05,-0.00012755101488437504,-5.421010862427522e-20,-1.2471162180772615e-20,-4.676395315028218e-21,-4.0657581468206416e-20,2.262970467953491e-21,0.0,-0.004520089365541935,0.00027901786961592734,0.00271577388048172,0.00027901786961592734,0.0005022321711294353,-0.0,-9.300595411332324e-05,-2.864556955478287e-21,2.3376902823747098e-20,-0.00027901786961592734,-9.300595411332324e-05,-0.00016741071885917336,-3.32283686564865e-20,3.3881317890172014e-21,-0.0,-0.0040488592348992825,0.00024801588733680546,0.00027901786961592734,0.0020868764258921146,0.00044642857392318547,-2.193032306772454e-21,1.0648639337661077e-20,-7.086167897796258e-05,2.3976309884228273e-20,-6.776263578034403e-21,-7.97193861217238e-05,3.0535827907966774e-20,-0.00018601190822664648,-0.00012755101488437504,-0.0,-0.0069754463620483875,0.00044642857392318547,0.0005022321711294353,0.00044642857392318547,0.008556547574698925,6.776263578034403e-21,1.7476119451220577e-20,2.7288756262784006e-20,-0.00029761905898340046,-2.1452814075979483e-21,3.6845933205562065e-20,-0.0003348214377183467,6.776263578034403e-21,-0.00029761905898340046,-0.0016741071594879031,0.00018601190822664648,-0.00018601190822664648,-0.0,-2.193032306772454e-21,6.776263578034403e-21,2.6573128707241267e-05,-0.0,1.6940658945086007e-21,-0.0,-3.261964329331382e-22,2.954280200660781e-38,9.617153399615149e-39,-1.0526942990124757e-22,-0.0,-0.0,0.00027901786961592734,-7.97193861217238e-05,-9.300595411332324e-05,1.0648639337661077e-20,1.7476119451220577e-20,-0.0,2.6573128707241267e-05,-3.10665410113084e-21,-6.6791146886023875e-21,1.8634724839594607e-20,-0.0,1.6940658945086007e-21,-1.6664331635386525e-23,2.3388158215412145e-22,-0.0,0.00024801588733680546,-7.086167897796258e-05,-2.864556955478287e-21,-7.086167897796258e-05,2.7288756262784006e-20,1.6940658945086007e-21,-3.10665410113084e-21,2.0246194253559224e-05,-6.850374598833892e-21,2.216305849178136e-22,3.563189136806921e-21,-1.1594348156624411e-22,1.1858461261560205e-20,-8.470329472543003e-22,-0.0,0.00044642857392318547,-0.00012755101488437504,2.3376902823747098e-20,2.3976309884228273e-20,-0.00029761905898340046,-0.0,-6.6791146886023875e-21,-6.850374598833892e-21,8.50340147735551e-05,-4.513898307157584e-36,-7.52316384526264e-37,-0.0,-3.76158192263132e-36,-0.0,-0.0,0.0002325148816453293,-5.421010862427522e-20,-0.00027901786961592734,-6.776263578034403e-21,-2.1452814075979483e-21,-3.261964329331382e-22,1.8634724839594607e-20,2.216305849178136e-22,-4.513898307157584e-36,4.650297705666162e-05,-0.0,0.0,3.339725062440531e-22,7.016447969494623e-22,-0.0,0.00027901786961592734,-1.2471162180772615e-20,-9.300595411332324e-05,-7.97193861217238e-05,3.6845933205562065e-20,2.954280200660781e-38,-0.0,3.563189136806921e-21,-7.52316384526264e-37,-0.0,2.6573128707241267e-05,-9.317362419797304e-21,9.020685692052064e-21,-2.541098841762901e-21,-0.0,0.0005022321711294353,-4.676395315028218e-21,-0.00016741071885917336,3.0535827907966774e-20,-0.0003348214377183467,9.617153399615149e-39,1.6940658945086007e-21,-1.1594348156624411e-22,-0.0,0.0,-9.317362419797304e-21,0.00011160714348079637,-3.043516249118945e-22,8.429171254347385e-23,-0.0,0.00018601190822664648,-4.0657581468206416e-20,-3.32283686564865e-20,-0.00018601190822664648,6.776263578034403e-21,-1.0526942990124757e-22,-1.6664331635386525e-23,1.1858461261560205e-20,-3.76158192263132e-36,3.339725062440531e-22,9.020685692052064e-21,-3.043516249118945e-22,2.6573128707241267e-05,-1.9897284374305392e-21,-0.0,0.00044642857392318547,2.262970467953491e-21,3.3881317890172014e-21,-0.00012755101488437504,-0.00029761905898340046,-0.0,2.3388158215412145e-22,-8.470329472543003e-22,-0.0,7.016447969494623e-22,-2.541098841762901e-21,8.429171254347385e-23,-1.9897284374305392e-21,8.50340147735551e-05,-0.0,0.0005580357392318547,0.0,-0.0,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005580357392318547,8.0,7.0,8.0,5.0,0.021371882408857346,-0.0032986111473292112,-0.0036830357275903225,-0.0032986111473292112,-0.0048097362741827965,0.00014880952949170023,0.00022321428696159273,0.00019841270113829523,0.00029761905898340046,0.00018601190822664648,0.00022321428696159273,0.0003348214377183467,0.00014880952949170023,0.00029761905898340046,0.0003188775444868952,-0.0032986111473292112,0.0016865079523995519,0.00022321428696159273,0.00019841270113829523,0.00029761905898340046,-0.00014880952949170023,-6.377550744218752e-05,-5.668934318237007e-05,-8.50340147735551e-05,-4.743384504624082e-20,-1.3902678202358757e-20,-1.2682846201552227e-22,-3.7269449679189215e-20,-0.0,0.0,-0.0036830357275903225,0.00022321428696159273,0.0021949405781924725,0.00022321428696159273,0.0003348214377183467,-3.3881317890172014e-21,-7.440476474585012e-05,-4.980478701988788e-21,1.3330602029421644e-20,-0.00022321428696159273,-7.440476474585012e-05,-0.00011160714348079637,-3.835528579187845e-20,-0.0,-0.0,-0.0032986111473292112,0.00019841270113829523,0.00022321428696159273,0.0016865079523995519,0.00029761905898340046,-8.897796056712521e-21,1.1666356642230434e-20,-5.668934318237007e-05,1.618497775673053e-20,6.776263578034403e-21,-6.377550744218752e-05,2.202285662861181e-20,-0.00014880952949170023,-8.50340147735551e-05,-0.0,-0.0048097362741827965,0.00029761905898340046,0.0003348214377183467,0.00029761905898340046,0.00431813346222043,-0.0,1.3330602029421644e-20,1.6076268129665164e-20,-0.00014880952949170023,-5.94004537105438e-21,2.286988957586611e-20,-0.00016741071885917336,-0.0,-0.00014880952949170023,-0.0006377550889737904,0.00014880952949170023,-0.00014880952949170023,-3.3881317890172014e-21,-8.897796056712521e-21,-0.0,2.1258503693388775e-05,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,9.863353322870587e-22,3.5691995622300774e-37,3.4267955204938736e-39,-9.37495678845603e-23,-0.0,-0.0,0.00022321428696159273,-6.377550744218752e-05,-7.440476474585012e-05,1.1666356642230434e-20,1.3330602029421644e-20,1.6940658945086007e-21,2.1258503693388775e-05,-2.5658938633519265e-21,-3.8087434369776126e-21,1.3552527156068805e-20,-4.235164736271502e-22,-0.0,-1.869104309636595e-22,-0.0,-0.0,0.00019841270113829523,-5.668934318237007e-05,-4.980478701988788e-21,-5.668934318237007e-05,1.6076268129665164e-20,1.6940658945086007e-21,-2.5658938633519265e-21,1.6196954675251618e-05,-4.624279705263109e-21,-1.9762970013574331e-22,4.335207546157102e-21,3.6236704334561683e-23,1.1011428314305904e-20,-0.0,-0.0,0.00029761905898340046,-8.50340147735551e-05,1.3330602029421644e-20,1.618497775673053e-20,-0.00014880952949170023,-0.0,-3.8087434369776126e-21,-4.624279705263109e-21,4.251700738677755e-05,-2.633107345841924e-36,-1.410593220986745e-36,-3.76158192263132e-37,-3.385423730368188e-36,-0.0,-0.0,0.00018601190822664648,-4.743384504624082e-20,-0.00022321428696159273,6.776263578034403e-21,-5.94004537105438e-21,9.863353322870587e-22,1.3552527156068805e-20,-1.9762970013574331e-22,-2.633107345841924e-36,3.720238237292506e-05,-1.6940658945086007e-21,0.0,-2.462427169945726e-22,0.0,-0.0,0.00022321428696159273,-1.3902678202358757e-20,-7.440476474585012e-05,-6.377550744218752e-05,2.286988957586611e-20,3.5691995622300774e-37,-4.235164736271502e-22,4.335207546157102e-21,-1.410593220986745e-36,-1.6940658945086007e-21,2.1258503693388775e-05,-7.623296525288703e-21,1.1548515716684305e-20,-0.0,-0.0,0.0003348214377183467,-1.2682846201552227e-22,-0.00011160714348079637,2.202285662861181e-20,-0.00016741071885917336,3.4267955204938736e-39,-0.0,3.6236704334561683e-23,-3.76158192263132e-37,0.0,-7.623296525288703e-21,5.5803571740398183e-05,9.51213465116417e-23,-0.0,-0.0,0.00014880952949170023,-3.7269449679189215e-20,-3.835528579187845e-20,-0.00014880952949170023,-0.0,-9.37495678845603e-23,-1.869104309636595e-22,1.1011428314305904e-20,-3.385423730368188e-36,-2.462427169945726e-22,1.1548515716684305e-20,9.51213465116417e-23,2.1258503693388775e-05,0.0,-0.0,0.00029761905898340046,-0.0,-0.0,-8.50340147735551e-05,-0.00014880952949170023,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,4.251700738677755e-05,-0.0,0.0003188775444868952,0.0,-0.0,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001594387722434476,8.0,7.0,8.0,6.0,0.018363509327173233,-0.0027842733543366194,-0.0031090560369193554,-0.0027842733543366194,-0.0035209397319704294,0.00012400794366840273,0.00018601190822664648,0.0001653439103392884,0.00021258502965793014,0.0001550099259475246,0.00018601190822664648,0.00023915816564112902,0.00012400794366840273,0.00021258502965793014,0.00019929847621824592,-0.0027842733543366194,0.0014155464014038444,0.00018601190822664648,0.0001653439103392884,0.00021258502965793014,-0.00012400794366840273,-5.3146257414482534e-05,-4.724111931864172e-05,-6.073858094168827e-05,-3.3881317890172014e-20,1.0743601126010586e-20,-2.150056154203133e-20,1.0164395367051604e-20,-1.5017617501677937e-20,-6.321878404157393e-20,-0.0031090560369193554,0.00018601190822664648,0.0018424036679789424,0.00018601190822664648,0.00023915816564112902,-3.3881317890172014e-21,-6.200397183420137e-05,4.2475575012788086e-21,-3.2971868349586905e-20,-0.00018601190822664648,-6.200397183420137e-05,-7.97193861217238e-05,2.615830409580519e-20,-2.360167946168558e-20,-8.297465526625613e-20,-0.0027842733543366194,0.0001653439103392884,0.00018601190822664648,0.0014155464014038444,0.00021258502965793014,3.4638309319693076e-22,-8.932342964190114e-21,-4.724111931864172e-05,-2.1113831987442914e-20,-0.0,-5.3146257414482534e-05,-8.573671311356013e-21,-0.00012400794366840273,-6.073858094168827e-05,-6.321878404157393e-20,-0.0035209397319704294,0.00021258502965793014,0.00023915816564112902,0.00021258502965793014,0.002504517324268818,3.3881317890172014e-21,-1.401240726490561e-20,-1.6698433461230505e-22,-8.50340147735551e-05,6.229401469599168e-21,1.5028008958123135e-20,-9.566326480126008e-05,-3.3881317890172014e-21,-8.50340147735551e-05,-0.00029894770705141127,0.00012400794366840273,-0.00012400794366840273,-3.3881317890172014e-21,3.4638309319693076e-22,3.3881317890172014e-21,1.7715419744490646e-05,8.470329472543003e-22,-0.0,-0.0,-9.589855120812717e-23,1.2242135747911613e-37,-6.883783978219476e-38,1.9032402773805531e-22,2.984085706893093e-37,6.2059168322823056e-37,0.00018601190822664648,-5.3146257414482534e-05,-6.200397183420137e-05,-8.932342964190114e-21,-1.401240726490561e-20,8.470329472543003e-22,1.7715419744490646e-05,2.3696329441718247e-21,3.6405309279774125e-21,1.1858461261560205e-20,-0.0,4.235164736271502e-22,8.434704009192243e-23,1.098646694623206e-36,3.943820137714275e-36,0.0001653439103392884,-4.724111931864172e-05,4.2475575012788086e-21,-4.724111931864172e-05,-1.6698433461230505e-22,-0.0,2.3696329441718247e-21,1.3497462532541249e-05,8.947427499310878e-22,-2.7656481362993855e-22,-3.069600408266621e-21,5.64237288394698e-37,-3.3881317890172014e-21,-8.470329472543003e-22,4.194444587715536e-37,0.00021258502965793014,-6.073858094168827e-05,-3.2971868349586905e-20,-2.1113831987442914e-20,-8.50340147735551e-05,-0.0,3.6405309279774125e-21,8.947427499310878e-22,2.4295432012877427e-05,2.256949153578792e-36,-1.410593220986745e-36,8.092004202225098e-21,-7.052966104933725e-37,7.192892803709769e-21,2.5287513939746998e-20,0.0001550099259475246,-3.3881317890172014e-20,-0.00018601190822664648,-0.0,6.229401469599168e-21,-9.589855120812717e-23,1.1858461261560205e-20,-2.7656481362993855e-22,2.256949153578792e-36,3.100198591710068e-05,1.6940658945086007e-21,0.0,-2.728843041905394e-22,0.0,0.0,0.00018601190822664648,1.0743601126010586e-20,-6.200397183420137e-05,-5.3146257414482534e-05,1.5028008958123135e-20,1.2242135747911613e-37,-0.0,-3.069600408266621e-21,-1.410593220986745e-36,1.6940658945086007e-21,1.7715419744490646e-05,-5.009336319374378e-21,-7.05136333181294e-21,-0.0,-5.069989500057143e-36,0.00023915816564112902,-2.150056154203133e-20,-7.97193861217238e-05,-8.573671311356013e-21,-9.566326480126008e-05,-6.883783978219476e-38,4.235164736271502e-22,5.64237288394698e-37,8.092004202225098e-21,0.0,-5.009336319374378e-21,3.188775372109376e-05,1.88079096131566e-36,9.440672107791659e-21,3.3189862752737306e-20,0.00012400794366840273,1.0164395367051604e-20,2.615830409580519e-20,-0.00012400794366840273,-3.3881317890172014e-21,1.9032402773805531e-22,8.434704009192243e-23,-3.3881317890172014e-21,-7.052966104933725e-37,-2.728843041905394e-22,-7.05136333181294e-21,1.88079096131566e-36,1.7715419744490646e-05,-1.3025129035577534e-21,-6.269688468043325e-38,0.00021258502965793014,-1.5017617501677937e-20,-2.360167946168558e-20,-6.073858094168827e-05,-8.50340147735551e-05,2.984085706893093e-37,1.098646694623206e-36,-8.470329472543003e-22,7.192892803709769e-21,0.0,-0.0,9.440672107791659e-21,-1.3025129035577534e-21,2.4295432012877427e-05,2.5287513939746998e-20,0.00019929847621824592,-6.321878404157393e-20,-8.297465526625613e-20,-6.321878404157393e-20,-0.00029894770705141127,6.2059168322823056e-37,3.943820137714275e-36,4.194444587715536e-37,2.5287513939746998e-20,0.0,-5.069989500057143e-36,3.3189862752737306e-20,-6.269688468043325e-38,2.5287513939746998e-20,5.9789541410282254e-05,8.0,7.0,8.0,7.0,0.01610553078353405,-0.002409297041594982,-0.002690529450774193,-0.002409297041594982,-0.002690529450774193,0.00010629251482896507,0.0001594387722434476,0.00014172335795592517,0.0001594387722434476,0.00013286565081216395,0.0001594387722434476,0.00017936862423084676,0.00010629251482896507,0.0001594387722434476,0.00013286565081216395,-0.002409297041594982,0.0012198331532999873,0.0001594387722434476,0.00014172335795592517,0.0001594387722434476,-0.00010629251482896507,-4.5553937525255606e-05,-4.049238850711845e-05,-4.5553937525255606e-05,-3.2624150700638023e-19,-5.220543317857869e-20,-1.2736844354030265e-19,-1.8402413749498504e-19,-5.481375013863433e-20,-3.2920030620808826e-19,-0.002690529450774193,0.0001594387722434476,0.0015877444529905915,0.0001594387722434476,0.00017936862423084676,-4.0657581468206416e-19,-5.3146257414482534e-05,1.4159362363074192e-19,-1.3721933745519665e-19,-0.0001594387722434476,-5.3146257414482534e-05,-5.9789541410282254e-05,-7.193929041297447e-20,7.040571048199823e-20,-1.7003037410560455e-19,-0.002409297041594982,0.00014172335795592517,0.0001594387722434476,0.0012198331532999873,0.0001594387722434476,-2.9203141067211253e-19,-5.93870637243781e-20,-4.049238850711845e-05,-6.405699588307717e-20,2.1006417091906648e-19,-4.5553937525255606e-05,-6.098637220230962e-20,-0.00010629251482896507,-4.5553937525255606e-05,-3.2875841081522595e-19,-0.002690529450774193,0.0001594387722434476,0.00017936862423084676,0.0001594387722434476,0.0015877444529905915,-4.058743655226192e-19,-1.2224374945280693e-19,1.3970382612378796e-19,-5.3146257414482534e-05,3.7802913319626294e-20,-1.2488646226294315e-19,-5.9789541410282254e-05,-3.9302328752599536e-19,-5.3146257414482534e-05,-0.0001594387722434476,0.00010629251482896507,-0.00010629251482896507,-4.0657581468206416e-19,-2.9203141067211253e-19,-4.058743655226192e-19,1.5184645235422067e-05,2.202285662861181e-20,1.6093625997831706e-20,2.286988957586611e-20,4.011540335076912e-20,1.2924729382883735e-20,1.7701259596264185e-20,2.3430698644131455e-20,1.2924729382883735e-20,3.907361137452406e-20,0.0001594387722434476,-4.5553937525255606e-05,-5.3146257414482534e-05,-5.93870637243781e-20,-1.2224374945280693e-19,2.202285662861181e-20,1.5184645235422067e-05,5.533984710563764e-22,3.3475106778129554e-21,1.3544295739621622e-20,2.964615315390051e-21,7.199780051661553e-21,9.169809231271756e-21,4.946480228260186e-35,1.7333889622301206e-20,0.00014172335795592517,-4.049238850711845e-05,1.4159362363074192e-19,-4.049238850711845e-05,1.3970382612378796e-19,1.6093625997831706e-20,5.533984710563764e-22,1.1569253729248885e-05,-8.815459274020817e-21,-1.026633326064526e-20,-1.1076790930775366e-20,-9.893895997636827e-21,-1.072750341580848e-20,-9.740878893424454e-21,-5.6501629950007255e-21,0.0001594387722434476,-4.5553937525255606e-05,-1.3721933745519665e-19,-6.405699588307717e-20,-5.3146257414482534e-05,2.286988957586611e-20,3.3475106778129554e-21,-8.815459274020817e-21,1.5184645235422067e-05,1.7175520077914247e-20,1.6979744036822704e-21,1.0553809219662982e-20,1.304496541635586e-20,3.973463854387904e-21,1.1615947092478716e-20,0.00013286565081216395,-3.2624150700638023e-19,-0.0001594387722434476,2.1006417091906648e-19,3.7802913319626294e-20,4.011540335076912e-20,1.3544295739621622e-20,-1.026633326064526e-20,1.7175520077914247e-20,2.6573128707241267e-05,-1.3552527156068805e-20,-8.470329472543003e-21,-1.1807221300021666e-20,-1.1519867317832554e-20,-3.864250568033545e-21,0.0001594387722434476,-5.220543317857869e-20,-5.3146257414482534e-05,-4.5553937525255606e-05,-1.2488646226294315e-19,1.2924729382883735e-20,2.964615315390051e-21,-1.1076790930775366e-20,1.6979744036822704e-21,-1.3552527156068805e-20,1.5184645235422067e-05,5.900889597380574e-21,2.366280196972214e-20,3.8116482626443515e-21,1.7175736566590188e-20,0.00017936862423084676,-1.2736844354030265e-19,-5.9789541410282254e-05,-6.098637220230962e-20,-5.9789541410282254e-05,1.7701259596264185e-20,7.199780051661553e-21,-9.893895997636827e-21,1.0553809219662982e-20,-8.470329472543003e-21,5.900889597380574e-21,1.992984653043095e-05,1.3224171188008632e-20,1.0246628146321564e-21,2.904952005652823e-20,0.00010629251482896507,-1.8402413749498504e-19,-7.193929041297447e-20,-0.00010629251482896507,-3.9302328752599536e-19,2.3430698644131455e-20,9.169809231271756e-21,-1.072750341580848e-20,1.304496541635586e-20,-1.1807221300021666e-20,2.366280196972214e-20,1.3224171188008632e-20,1.5184645235422067e-05,2.3111691271021552e-20,3.867774729028062e-20,0.0001594387722434476,-5.481375013863433e-20,7.040571048199823e-20,-4.5553937525255606e-05,-5.3146257414482534e-05,1.2924729382883735e-20,4.946480228260186e-35,-9.740878893424454e-21,3.973463854387904e-21,-1.1519867317832554e-20,3.8116482626443515e-21,1.0246628146321564e-21,2.3111691271021552e-20,1.5184645235422067e-05,1.2625882921617678e-20,0.00013286565081216395,-3.2920030620808826e-19,-1.7003037410560455e-19,-3.2875841081522595e-19,-0.0001594387722434476,3.907361137452406e-20,1.7333889622301206e-20,-5.6501629950007255e-21,1.1615947092478716e-20,-3.864250568033545e-21,1.7175736566590188e-20,2.904952005652823e-20,3.867774729028062e-20,1.2625882921617678e-20,2.6573128707241267e-05,8.0,7.0,8.0,8.0,0.014346168376505375,-0.0021236359607428312,-0.0023716518189758062,-0.0021236359607428312,-0.0021236359607428312,9.300595411332324e-05,0.00013950893480796367,0.00012400794366840273,0.00012400794366840273,0.00011625744082266465,0.00013950893480796367,0.00013950893480796367,9.300595411332324e-05,0.00012400794366840273,9.300595411332324e-05,-0.0021236359607428312,0.0010717828990891576,0.00013950893480796367,0.00012400794366840273,0.00012400794366840273,-9.300595411332324e-05,-3.98596930608619e-05,-3.543083948898129e-05,-3.543083948898129e-05,-3.049318610115481e-20,-6.248685117629311e-21,-5.486292376422862e-21,-2.371692252312041e-20,-5.087125628180958e-21,-2.2579644500500896e-20,-0.0023716518189758062,0.00013950893480796367,0.0013950893189758062,0.00013950893480796367,0.00013950893480796367,3.3881317890172014e-21,-4.650297705666162e-05,-2.163769782861432e-21,-1.6940658945086007e-21,-0.00013950893480796367,-4.650297705666162e-05,-4.650297705666162e-05,-2.0080584851549015e-20,-5.7025948559472935e-21,-1.6157553165132704e-20,-0.0021236359607428312,0.00012400794366840273,0.00013950893480796367,0.0010717828990891576,0.00012400794366840273,-2.9669871992509973e-21,5.988605477434574e-21,-3.543083948898129e-05,1.2852898359426951e-21,-3.3881317890172014e-21,-3.98596930608619e-05,3.3881317890172014e-21,-9.300595411332324e-05,-3.543083948898129e-05,-1.887726970483164e-20,-0.0021236359607428312,0.00012400794366840273,0.00013950893480796367,0.00012400794366840273,0.0010717828990891576,-3.3881317890172014e-21,5.657158083393697e-21,7.063127229528378e-21,-3.543083948898129e-05,-1.0885268730607363e-21,8.948881729679773e-21,-3.98596930608619e-05,-3.3881317890172014e-21,-3.543083948898129e-05,-9.300595411332324e-05,9.300595411332324e-05,-9.300595411332324e-05,3.3881317890172014e-21,-2.9669871992509973e-21,-3.3881317890172014e-21,1.3286564353620633e-05,-0.0,8.470329472543003e-22,8.470329472543003e-22,-4.3027796452886775e-23,1.7053468801798514e-38,2.249572808145688e-37,-1.6537235099502747e-23,3.7675845807850404e-38,8.291898097241894e-23,0.00013950893480796367,-3.98596930608619e-05,-4.650297705666162e-05,5.988605477434574e-21,5.657158083393697e-21,-0.0,1.3286564353620633e-05,-1.5801914373245702e-21,-1.5693126794101125e-21,1.0164395367051604e-20,-4.235164736271502e-22,-4.235164736271502e-22,1.073263310690698e-22,-2.7634881458607314e-37,1.4607358838994098e-22,0.00012400794366840273,-3.543083948898129e-05,-2.163769782861432e-21,-3.543083948898129e-05,7.063127229528378e-21,8.470329472543003e-22,-1.5801914373245702e-21,1.0123097126779612e-05,-1.9320655072928186e-21,3.0222157425005293e-23,2.1235786197831934e-21,1.8705941523421954e-23,6.776263578034403e-21,-2.117582368135751e-22,5.073524833137832e-23,0.00012400794366840273,-3.543083948898129e-05,-1.6940658945086007e-21,1.2852898359426951e-21,-3.543083948898129e-05,8.470329472543003e-22,-1.5693126794101125e-21,-1.9320655072928186e-21,1.0123097126779612e-05,6.285838068128069e-23,2.477419408340579e-23,1.9118203829696183e-21,-5.621957342754308e-23,1.6652227164330196e-21,6.09601011399254e-21,0.00011625744082266465,-3.049318610115481e-20,-0.00013950893480796367,-3.3881317890172014e-21,-1.0885268730607363e-21,-4.3027796452886775e-23,1.0164395367051604e-20,3.0222157425005293e-23,6.285838068128069e-23,2.325148852833081e-05,-0.0,0.0,3.4100980185089767e-22,0.0,1.1141101497098075e-22,0.00013950893480796367,-6.248685117629311e-21,-4.650297705666162e-05,-3.98596930608619e-05,8.948881729679773e-21,1.7053468801798514e-38,-4.235164736271502e-22,2.1235786197831934e-21,2.477419408340579e-23,-0.0,1.3286564353620633e-05,-3.175992677536811e-21,4.9475764622134976e-21,-0.0,6.503226045501633e-23,0.00013950893480796367,-5.486292376422862e-21,-4.650297705666162e-05,3.3881317890172014e-21,-3.98596930608619e-05,2.249572808145688e-37,-4.235164736271502e-22,1.8705941523421954e-23,1.9118203829696183e-21,0.0,-3.175992677536811e-21,1.3286564353620633e-05,4.9103095118476045e-23,1.6293128592595964e-21,4.1984315355049684e-21,9.300595411332324e-05,-2.371692252312041e-20,-2.0080584851549015e-20,-9.300595411332324e-05,-3.3881317890172014e-21,-1.6537235099502747e-23,1.073263310690698e-22,6.776263578034403e-21,-5.621957342754308e-23,3.4100980185089767e-22,4.9475764622134976e-21,4.9103095118476045e-23,1.3286564353620633e-05,9.449211697484632e-22,-3.4154651125637383e-23,0.00012400794366840273,-5.087125628180958e-21,-5.7025948559472935e-21,-3.543083948898129e-05,-3.543083948898129e-05,3.7675845807850404e-38,-2.7634881458607314e-37,-2.117582368135751e-22,1.6652227164330196e-21,0.0,-0.0,1.6293128592595964e-21,9.449211697484632e-22,1.0123097126779612e-05,5.360913929103557e-21,9.300595411332324e-05,-2.2579644500500896e-20,-1.6157553165132704e-20,-1.887726970483164e-20,-9.300595411332324e-05,8.291898097241894e-23,1.4607358838994098e-22,5.073524833137832e-23,6.09601011399254e-21,1.1141101497098075e-22,6.503226045501633e-23,4.1984315355049684e-21,-3.4154651125637383e-23,5.360913929103557e-21,1.3286564353620633e-05,8.0,8.0,3.0,3.0,0.06254822760820389,-0.011381172575056553,-0.011381172575056553,-0.02387152798473835,-0.02387152798473835,0.0005787037080153823,0.0007716049440205097,0.0017361111240461469,0.0017361111240461469,0.0005787037080153823,0.0017361111240461469,0.0017361111240461469,0.0026041667442768812,0.00390625,0.0026041667442768812,-0.011381172575056553,0.006145282182842493,0.0007716049440205097,0.0017361111240461469,0.0017361111240461469,-0.0005787037080153823,-0.00022045854711905122,-0.0004960317746736109,-0.0004960317746736109,5.421010862427522e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.011381172575056553,0.0007716049440205097,0.006145282182842493,0.0017361111240461469,0.0017361111240461469,-1.3552527156068805e-20,-0.00022045854711905122,-4.4113861953705477e-20,-4.4113861953705477e-20,-0.0005787037080153823,-0.0004960317746736109,-0.0004960317746736109,-0.0,-0.0,-0.0,-0.02387152798473835,0.0017361111240461469,0.0017361111240461469,0.0499131940305233,0.00390625,-3.275164443619173e-20,-3.5575383784680614e-20,-0.0017361111240461469,-3.7957382836672037e-20,-0.0,-0.0017361111240461469,-0.0,-0.015625,-0.00390625,1.734723475976807e-17,-0.02387152798473835,0.0017361111240461469,0.0017361111240461469,0.00390625,0.0499131940305233,-2.710505431213761e-20,-3.5575383784680614e-20,-3.7957382836672037e-20,-0.0017361111240461469,-1.0659829701943985e-20,-0.0,-0.0017361111240461469,2.0816681711721685e-17,-0.00390625,-0.015625,0.0005787037080153823,-0.0005787037080153823,-1.3552527156068805e-20,-3.275164443619173e-20,-2.710505431213761e-20,8.26719551696442e-05,3.3881317890172014e-21,2.710505431213761e-20,2.710505431213761e-20,-1.1928674476450787e-21,0.0,-0.0,-0.0,-0.0,-0.0,0.0007716049440205097,-0.00022045854711905122,-0.00022045854711905122,-3.5575383784680614e-20,-3.5575383784680614e-20,3.3881317890172014e-21,6.29881615168415e-05,1.0164395367051604e-20,1.0164395367051604e-20,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0004960317746736109,-4.4113861953705477e-20,-0.0017361111240461469,-3.7957382836672037e-20,2.710505431213761e-20,1.0164395367051604e-20,0.0004960317746736109,1.0844967101758844e-20,1.1277236422580641e-21,-0.0,-0.0,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0004960317746736109,-4.4113861953705477e-20,-3.7957382836672037e-20,-0.0017361111240461469,2.710505431213761e-20,1.0164395367051604e-20,1.0844967101758844e-20,0.0004960317746736109,1.1277236422580641e-21,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005787037080153823,5.421010862427522e-20,-0.0005787037080153823,-0.0,-1.0659829701943985e-20,-1.1928674476450787e-21,-1.3552527156068805e-20,1.1277236422580641e-21,1.1277236422580641e-21,8.26719551696442e-05,-0.0,0.0,-0.0,0.0,-0.0,0.0017361111240461469,-0.0,-0.0004960317746736109,-0.0017361111240461469,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,-0.0,0.0017361111240461469,-0.0,-0.0004960317746736109,-0.0,-0.0017361111240461469,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.0004960317746736109,-0.0,-0.0,-0.0,0.0026041667442768812,-0.0,-0.0,-0.015625,2.0816681711721685e-17,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0078125,-3.469446951953614e-18,-8.673617379884035e-18,0.00390625,-0.0,-0.0,-0.00390625,-0.00390625,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-3.469446951953614e-18,0.00390625,3.851859888774472e-33,0.0026041667442768812,-0.0,-0.0,1.734723475976807e-17,-0.015625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-8.673617379884035e-18,3.851859888774472e-33,0.0078125,8.0,8.0,3.0,4.0,0.05036168918013573,-0.008796296082437038,-0.008796296082437038,-0.01848958246409893,-0.015104166232049465,0.0004340277810115367,0.0005787037080153823,0.0013020833721384406,0.0010416667209938169,0.0004340277810115367,0.0013020833721384406,0.0010416667209938169,0.001953125,0.0023437500931322575,0.0013020833721384406,-0.008796296082437038,0.004683366511017084,0.0005787037080153823,0.0013020833721384406,0.0010416667209938169,-0.0004340277810115367,-0.0001653439103392884,-0.00037202381645329297,-0.00029761905898340046,2.710505431213761e-20,-0.0,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.008796296082437038,0.0005787037080153823,0.004683366511017084,0.0013020833721384406,0.0010416667209938169,-2.710505431213761e-20,-0.0001653439103392884,-4.448194763276877e-20,-1.959522208684932e-20,-0.0004340277810115367,-0.00037202381645329297,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.01848958246409893,0.0013020833721384406,0.0013020833721384406,0.03802083432674408,0.0023437500931322575,-3.051209816414416e-20,-4.1504614415460717e-20,-0.0013020833721384406,-2.277443099447293e-20,-0.0,-0.0013020833721384406,-2.753529364772567e-21,-0.01171875,-0.0023437500931322575,6.071532165918825e-18,-0.015104166232049465,0.0010416667209938169,0.0010416667209938169,0.0023437500931322575,0.01918402686715126,-0.0,-1.1858461261560205e-20,-2.5527960157297105e-20,-0.0006944444612599909,5.48174167136347e-21,-0.0,-0.0006944444612599909,1.118896608917816e-17,-0.0015625000232830644,-0.00390625,0.0004340277810115367,-0.0004340277810115367,-2.710505431213761e-20,-3.051209816414416e-20,-0.0,6.200397183420137e-05,3.3881317890172014e-21,6.776263578034403e-21,-0.0,8.986559039177675e-22,0.0,7.2180025618673155e-22,-0.0,-0.0,-0.0,0.0005787037080153823,-0.0001653439103392884,-0.0001653439103392884,-4.1504614415460717e-20,-1.1858461261560205e-20,3.3881317890172014e-21,4.724111931864172e-05,1.1858461261560205e-20,3.3881317890172014e-21,-1.0164395367051604e-20,-0.0,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.00037202381645329297,-4.448194763276877e-20,-0.0013020833721384406,-2.5527960157297105e-20,6.776263578034403e-21,1.1858461261560205e-20,0.00037202381645329297,6.5069799379378796e-21,2.3737271448916962e-22,-0.0,7.867226756493049e-22,-0.0,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-1.959522208684932e-20,-2.277443099447293e-20,-0.0006944444612599909,-0.0,3.3881317890172014e-21,6.5069799379378796e-21,0.00019841270113829523,9.525651183240844e-22,-0.0,3.4965450568176954e-22,-0.0,-0.0,-0.0,0.0004340277810115367,2.710505431213761e-20,-0.0004340277810115367,-0.0,5.48174167136347e-21,8.986559039177675e-22,-1.0164395367051604e-20,2.3737271448916962e-22,9.525651183240844e-22,6.200397183420137e-05,-0.0,0.0,-0.0,0.0,-0.0,0.0013020833721384406,-0.0,-0.00037202381645329297,-0.0013020833721384406,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-6.776263578034403e-21,-0.00029761905898340046,-2.753529364772567e-21,-0.0006944444612599909,7.2180025618673155e-22,-0.0,7.867226756493049e-22,3.4965450568176954e-22,0.0,-0.0,0.00019841270113829523,-0.0,-0.0,-0.0,0.001953125,-0.0,-0.0,-0.01171875,1.118896608917816e-17,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.005859375,-2.0816682538902298e-18,-3.0357660829594124e-18,0.0023437500931322575,-0.0,-0.0,-0.0023437500931322575,-0.0015625000232830644,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-2.0816682538902298e-18,0.0015625000232830644,1.0785207504897528e-33,0.0013020833721384406,-0.0,-0.0,6.071532165918825e-18,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-3.0357660829594124e-18,1.0785207504897528e-33,0.0013020833721384406,8.0,8.0,3.0,5.0,0.04222883656620979,-0.007175926119089127,-0.007175926119089127,-0.015104166232049465,-0.010441468097269535,0.00034722223062999547,0.00046296295477077365,0.0010416667209938169,0.0006944444612599909,0.00034722223062999547,0.0010416667209938169,0.0006944444612599909,0.0015625000232830644,0.0015625000232830644,0.0007440476329065859,-0.007175926119089127,0.0037863757461309433,0.00046296295477077365,0.0010416667209938169,0.0006944444612599909,-0.00034722223062999547,-0.00013227513409219682,-0.00029761905898340046,-0.00019841270113829523,2.710505431213761e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.007175926119089127,0.00046296295477077365,0.0037863757461309433,0.0010416667209938169,0.0006944444612599909,-0.0,-0.00013227513409219682,-2.710505431213761e-20,-1.3552527156068805e-20,-0.00034722223062999547,-0.00029761905898340046,-0.00019841270113829523,-0.0,-0.0,-0.0,-0.015104166232049465,0.0010416667209938169,0.0010416667209938169,0.03072916716337204,0.0015625000232830644,-1.300914784959746e-20,-2.371692252312041e-20,-0.0010416667209938169,-1.1858461261560205e-20,-0.0,-0.0010416667209938169,-0.0,-0.00937500037252903,-0.0015625000232830644,-1.4869058513226313e-18,-0.010441468097269535,0.0006944444612599909,0.0006944444612599909,0.0015625000232830644,0.009685019962489605,-0.0,-1.4823076576950256e-20,-1.1858461261560205e-20,-0.00034722223062999547,6.85217678628175e-21,-0.0,-0.00034722223062999547,-2.9738117026452626e-18,-0.0007812500116415322,-0.0014880952658131719,0.00034722223062999547,-0.00034722223062999547,-0.0,-1.300914784959746e-20,-0.0,4.960317528457381e-05,6.776263578034403e-21,6.776263578034403e-21,-0.0,-4.622646649593331e-22,0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-0.00013227513409219682,-0.00013227513409219682,-2.371692252312041e-20,-1.4823076576950256e-20,6.776263578034403e-21,3.779289545491338e-05,6.776263578034403e-21,4.235164736271502e-21,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-2.710505431213761e-20,-0.0010416667209938169,-1.1858461261560205e-20,6.776263578034403e-21,6.776263578034403e-21,0.00029761905898340046,3.3881317890172014e-21,4.474891108779263e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.00019841270113829523,-1.3552527156068805e-20,-1.1858461261560205e-20,-0.00034722223062999547,-0.0,4.235164736271502e-21,3.3881317890172014e-21,9.920635056914762e-05,-1.6780841026833513e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,2.710505431213761e-20,-0.00034722223062999547,-0.0,6.85217678628175e-21,-4.622646649593331e-22,-6.776263578034403e-21,4.474891108779263e-22,-1.6780841026833513e-22,4.960317528457381e-05,-0.0,0.0,0.0,0.0,0.0,0.0010416667209938169,-0.0,-0.00029761905898340046,-0.0010416667209938169,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-0.0,-0.0,-0.0,-0.0,0.0006944444612599909,-0.0,-0.00019841270113829523,-0.0,-0.00034722223062999547,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,9.920635056914762e-05,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0,-0.00937500037252903,-2.9738117026452626e-18,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.004687500186264515,-0.0,7.434529256613157e-19,0.0015625000232830644,-0.0,-0.0,-0.0015625000232830644,-0.0007812500116415322,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,0.0007440476329065859,-0.0,-0.0,-1.4869058513226313e-18,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,7.434529256613157e-19,-0.0,0.00037202381645329297,8.0,8.0,3.0,6.0,0.036389440298080444,-0.006062610074877739,-0.006062610074877739,-0.0127728171646595,-0.0076574902050197124,0.00028935185400769114,0.00038580247201025486,0.0008680555620230734,0.0004960317746736109,0.00028935185400769114,0.0008680555620230734,0.0004960317746736109,0.0013020833721384406,0.0011160714784637094,0.0004650297632906586,-0.006062610074877739,0.003178933635354042,0.00038580247201025486,0.0008680555620230734,0.0004960317746736109,-0.00028935185400769114,-0.00011022927355952561,-0.00024801588733680546,-0.00014172335795592517,2.0328790734103208e-20,-0.0,-3.899392738590621e-20,1.0684325294013014e-33,-9.440671784674232e-20,-1.47510498251122e-19,-0.006062610074877739,0.00038580247201025486,0.003178933635354042,0.0008680555620230734,0.0004960317746736109,-0.0,-0.00011022927355952561,-1.9527874721585873e-20,-5.293972399328143e-20,-0.00028935185400769114,-0.00024801588733680546,-0.00014172335795592517,1.0684325294013014e-33,-9.440671784674232e-20,-1.47510498251122e-19,-0.0127728171646595,0.0008680555620230734,0.0008680555620230734,0.02579365111887455,0.0011160714784637094,1.3094012218360139e-20,-1.9527874721585873e-20,-0.0008680555620230734,-9.440671784674232e-20,-0.0,-0.0008680555620230734,-9.440671784674232e-20,-0.0078125,-0.0011160714784637094,1.7037462858197322e-18,-0.0076574902050197124,0.0004960317746736109,0.0004960317746736109,0.0011160714784637094,0.0056206597946584225,-0.0,-8.016568399975816e-21,-1.9453922106091107e-36,-0.00019841270113829523,-2.339928193672578e-20,-7.52316384526264e-36,-0.00019841270113829523,5.052381958346328e-18,-0.00044642857392318547,-0.0006975446594879031,0.00028935185400769114,-0.00028935185400769114,-0.0,1.3094012218360139e-20,-0.0,4.13359775848221e-05,1.6940658945086007e-21,-0.0,3.3881317890172014e-21,-1.1187228024383648e-21,0.0,-7.51567485785378e-37,0.0,-1.2297007905281521e-36,2.2997261994356657e-36,0.00038580247201025486,-0.00011022927355952561,-0.00011022927355952561,-1.9527874721585873e-20,-8.016568399975816e-21,1.6940658945086007e-21,3.149408075842075e-05,5.579393008394126e-21,3.1374809172842537e-21,-3.3881317890172014e-21,-0.0,-8.470329472543003e-22,-0.0,1.7341016928236124e-36,3.0487300489169184e-36,0.0008680555620230734,-0.00024801588733680546,-1.9527874721585873e-20,-0.0008680555620230734,-1.9453922106091107e-36,-0.0,5.579393008394126e-21,0.00024801588733680546,5.55826358700189e-37,-7.52316384526264e-37,-0.0,-0.0,-0.0,0.0,0.0,0.0004960317746736109,-0.00014172335795592517,-5.293972399328143e-20,-9.440671784674232e-20,-0.00019841270113829523,3.3881317890172014e-21,3.1374809172842537e-21,5.55826358700189e-37,5.668934318237007e-05,-0.0,-0.0,1.6783417080518505e-20,-4.273730117605205e-34,3.7762688431166636e-20,5.900420188538822e-20,0.00028935185400769114,2.0328790734103208e-20,-0.00028935185400769114,-0.0,-2.339928193672578e-20,-1.1187228024383648e-21,-3.3881317890172014e-21,-7.52316384526264e-37,-0.0,4.13359775848221e-05,-0.0,0.0,0.0,1.504632769052528e-36,0.0,0.0008680555620230734,-0.0,-0.00024801588733680546,-0.0008680555620230734,-7.52316384526264e-36,0.0,-0.0,-0.0,-0.0,-0.0,0.00024801588733680546,-0.0,-0.0,-0.0,1.504632769052528e-36,0.0004960317746736109,-3.899392738590621e-20,-0.00014172335795592517,-9.440671784674232e-20,-0.00019841270113829523,-7.51567485785378e-37,-8.470329472543003e-22,-0.0,1.6783417080518505e-20,0.0,-0.0,5.668934318237007e-05,-4.273730117605205e-34,3.7762688431166636e-20,5.900420188538822e-20,0.0013020833721384406,1.0684325294013014e-33,1.0684325294013014e-33,-0.0078125,5.052381958346328e-18,0.0,-0.0,-0.0,-4.273730117605205e-34,0.0,-0.0,-4.273730117605205e-34,0.00390625,-7.930164505921508e-19,-8.518731429098661e-19,0.0011160714784637094,-9.440671784674232e-20,-9.440671784674232e-20,-0.0011160714784637094,-0.00044642857392318547,-1.2297007905281521e-36,1.7341016928236124e-36,0.0,3.7762688431166636e-20,1.504632769052528e-36,-0.0,3.7762688431166636e-20,-7.930164505921508e-19,0.00044642857392318547,2.515500283985856e-34,0.0004650297632906586,-1.47510498251122e-19,-1.47510498251122e-19,1.7037462858197322e-18,-0.0006975446594879031,2.2997261994356657e-36,3.0487300489169184e-36,0.0,5.900420188538822e-20,0.0,1.504632769052528e-36,5.900420188538822e-20,-8.518731429098661e-19,2.515500283985856e-34,0.00013950893480796367,8.0,8.0,3.0,7.0,0.031983714550733566,-0.005249669309705496,-0.005249669309705496,-0.011067708022892475,-0.005859375,0.00024801588733680546,0.0003306878206785768,0.0007440476329065859,0.00037202381645329297,0.00024801588733680546,0.0007440476329065859,0.00037202381645329297,0.0011160714784637094,0.0008370535797439516,0.0003100198518950492,-0.005249669309705496,0.0027399847749620676,0.0003306878206785768,0.0007440476329065859,0.00037202381645329297,-0.00024801588733680546,-9.448223863728344e-05,-0.00021258502965793014,-0.00010629251482896507,6.776263578034403e-21,-0.0,-2.0790439910851626e-20,7.1311773460591975e-34,9.255142846688338e-35,-7.689657736165623e-20,-0.005249669309705496,0.0003306878206785768,0.0027399847749620676,0.0007440476329065859,0.00037202381645329297,-0.0,-9.448223863728344e-05,-1.4842478162841173e-20,-3.3881317890172014e-20,-0.00024801588733680546,-0.00021258502965793014,-0.00010629251482896507,6.620384183831123e-34,9.255142846688338e-35,-8.340016860558077e-20,-0.011067708022892475,0.0007440476329065859,0.0007440476329065859,0.0222284235060215,0.0008370535797439516,-6.691381841710034e-21,-1.4842478162841173e-20,-0.0007440476329065859,5.603901157896474e-34,1.3552527156068805e-20,-0.0007440476329065859,4.907011168721404e-34,-0.0066964286379516125,-0.0008370535797439516,1.073876476899005e-18,-0.005859375,0.00037202381645329297,0.00037202381645329297,0.0008370535797439516,0.0035652280785143375,-6.776263578034403e-21,-7.130290417858563e-21,-1.3731638888021417e-36,-0.00012400794366840273,-3.480185924422486e-21,-0.0,-0.00012400794366840273,4.07128991716709e-18,-0.00027901786961592734,-0.00037202381645329297,0.00024801588733680546,-0.00024801588733680546,-0.0,-6.691381841710034e-21,-6.776263578034403e-21,3.543083948898129e-05,-1.6940658945086007e-21,-0.0,1.6940658945086007e-21,5.424037947650618e-22,0.0,2.575765719424693e-37,-0.0,-0.0,-4.094993114873611e-22,0.0003306878206785768,-9.448223863728344e-05,-9.448223863728344e-05,-1.4842478162841173e-20,-7.130290417858563e-21,-1.6940658945086007e-21,2.6994925065082498e-05,4.240707815727887e-21,2.1898496001186857e-21,-3.3881317890172014e-21,-0.0,-8.470329472543003e-22,-2.7296052870919676e-36,-0.0,3.7391267271491224e-22,0.0007440476329065859,-0.00021258502965793014,-1.4842478162841173e-20,-0.0007440476329065859,-1.3731638888021417e-36,-0.0,4.240707815727887e-21,0.00021258502965793014,3.440095580530412e-37,-3.76158192263132e-37,-0.0,-0.0,-0.0,-0.0,2.602006658675394e-38,0.00037202381645329297,-0.00010629251482896507,-3.3881317890172014e-20,5.603901157896474e-34,-0.00012400794366840273,1.6940658945086007e-21,2.1898496001186857e-21,3.440095580530412e-37,3.543083948898129e-05,3.251420603798815e-22,-0.0,7.918351203551514e-21,-2.3452136264686797e-34,-3.0850476155627794e-35,2.622945778435609e-20,0.00024801588733680546,6.776263578034403e-21,-0.00024801588733680546,1.3552527156068805e-20,-3.480185924422486e-21,5.424037947650618e-22,-3.3881317890172014e-21,-3.76158192263132e-37,3.251420603798815e-22,3.543083948898129e-05,-0.0,0.0,-7.165213475042457e-36,-0.0,4.49465731249146e-22,0.0007440476329065859,-0.0,-0.00021258502965793014,-0.0007440476329065859,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,0.00021258502965793014,-0.0,-1.00938528285069e-36,0.0,-0.0,0.00037202381645329297,-2.0790439910851626e-20,-0.00010629251482896507,4.907011168721404e-34,-0.00012400794366840273,2.575765719424693e-37,-8.470329472543003e-22,-0.0,7.918351203551514e-21,0.0,-0.0,3.543083948898129e-05,-1.9907483559305076e-34,-3.0850476155627794e-35,2.622945778435609e-20,0.0011160714784637094,7.1311773460591975e-34,6.620384183831123e-34,-0.0066964286379516125,4.07128991716709e-18,-0.0,-2.7296052870919676e-36,-0.0,-2.3452136264686797e-34,-7.165213475042457e-36,-1.00938528285069e-36,-1.9907483559305076e-34,0.0033482143189758062,-8.49660486470075e-19,-5.369382384495025e-19,0.0008370535797439516,9.255142846688338e-35,9.255142846688338e-35,-0.0008370535797439516,-0.00027901786961592734,-0.0,-0.0,-0.0,-3.0850476155627794e-35,-0.0,0.0,-3.0850476155627794e-35,-8.49660486470075e-19,0.00027901786961592734,4.370483978554308e-35,0.0003100198518950492,-7.689657736165623e-20,-8.340016860558077e-20,1.073876476899005e-18,-0.00037202381645329297,-4.094993114873611e-22,3.7391267271491224e-22,2.602006658675394e-38,2.622945778435609e-20,4.49465731249146e-22,-0.0,2.622945778435609e-20,-5.369382384495025e-19,4.370483978554308e-35,6.200397183420137e-05,8.0,8.0,3.0,8.0,0.0285373255610466,-0.004629629664123058,-0.004629629664123058,-0.009765625,-0.004629629664123058,0.00021701389050576836,0.00028935185400769114,0.0006510416860692203,0.00028935185400769114,0.00021701389050576836,0.0006510416860692203,0.00028935185400769114,0.0009765625,0.0006510416860692203,0.00021701389050576836,-0.004629629664123058,0.002407820662483573,0.00028935185400769114,0.0006510416860692203,0.00028935185400769114,-0.00021701389050576836,-8.26719551696442e-05,-0.00018601190822664648,-8.26719551696442e-05,1.3552527156068805e-20,-5.073138480620891e-22,6.676679594894828e-21,-2.6233764566690233e-34,5.573750531358474e-35,1.0466137768255164e-20,-0.004629629664123058,0.00028935185400769114,0.002407820662483573,0.0006510416860692203,0.00028935185400769114,-0.0,-8.26719551696442e-05,-1.4860317475973615e-20,1.6940658945086007e-21,-0.00021701389050576836,-0.00018601190822664648,-8.26719551696442e-05,-2.527783052008247e-34,5.573750531358474e-35,3.3098210494631577e-20,-0.009765625,0.0006510416860692203,0.0006510416860692203,0.01953125,0.0006510416860692203,-6.448622507280977e-21,-1.4860317475973615e-20,-0.0006510416860692203,-5.073138480620891e-22,1.3552527156068805e-20,-0.0006510416860692203,-9.984150808317853e-35,-0.005859375,-0.0006510416860692203,7.214697737021064e-19,-0.004629629664123058,0.00028935185400769114,0.00028935185400769114,0.0006510416860692203,0.002407820662483573,-6.776263578034403e-21,-6.079329984628665e-21,-1.1048930329746785e-36,-8.26719551696442e-05,3.257745425479613e-21,-3.3881317890172014e-21,-8.26719551696442e-05,3.025440387372913e-18,-0.00018601190822664648,-0.00021701389050576836,0.00021701389050576836,-0.00021701389050576836,-0.0,-6.448622507280977e-21,-6.776263578034403e-21,3.100198591710068e-05,-1.6940658945086007e-21,-0.0,-1.6940658945086007e-21,5.309187877786109e-22,-6.093926124000299e-39,-5.498919381764874e-38,0.0,0.0,1.328716919075925e-21,0.00028935185400769114,-8.26719551696442e-05,-8.26719551696442e-05,-1.4860317475973615e-20,-6.079329984628665e-21,-1.6940658945086007e-21,2.362055965932086e-05,4.2458049931353186e-21,1.6726037282025999e-21,-5.082197683525802e-21,-0.0,4.235164736271502e-22,-6.921028361427563e-37,-0.0,-1.660308352807208e-22,0.0006510416860692203,-0.00018601190822664648,-1.4860317475973615e-20,-0.0006510416860692203,-1.1048930329746785e-36,-0.0,4.2458049931353186e-21,0.00018601190822664648,3.006511863308393e-37,-7.52316384526264e-37,-0.0,9.4039548065783e-38,-0.0,-0.0,-3.652210073023321e-38,0.00028935185400769114,-8.26719551696442e-05,1.6940658945086007e-21,-5.073138480620891e-22,-8.26719551696442e-05,-1.6940658945086007e-21,1.6726037282025999e-21,3.006511863308393e-37,2.362055965932086e-05,6.15288660660574e-23,1.4494681733824673e-22,-2.331139157326132e-21,7.564571322536576e-35,-1.5925002543116803e-35,-5.6986613051730484e-21,0.00021701389050576836,1.3552527156068805e-20,-0.00021701389050576836,1.3552527156068805e-20,3.257745425479613e-21,5.309187877786109e-22,-5.082197683525802e-21,-7.52316384526264e-37,6.15288660660574e-23,3.100198591710068e-05,-0.0,0.0,-1.816769961690317e-36,0.0,-9.275717834143737e-22,0.0006510416860692203,-5.073138480620891e-22,-0.00018601190822664648,-0.0006510416860692203,-3.3881317890172014e-21,-6.093926124000299e-39,-0.0,-0.0,1.4494681733824673e-22,-0.0,0.00018601190822664648,-0.0,-2.731077345523547e-36,0.0,3.804853860465668e-22,0.00028935185400769114,6.676679594894828e-21,-8.26719551696442e-05,-9.984150808317853e-35,-8.26719551696442e-05,-5.498919381764874e-38,4.235164736271502e-22,9.4039548065783e-38,-2.331139157326132e-21,0.0,-0.0,2.362055965932086e-05,7.762494035912577e-35,-1.5925002543116803e-35,-7.392727199681649e-21,0.0009765625,-2.6233764566690233e-34,-2.527783052008247e-34,-0.005859375,3.025440387372913e-18,0.0,-6.921028361427563e-37,-0.0,7.564571322536576e-35,-1.816769961690317e-36,-2.731077345523547e-36,7.762494035912577e-35,0.0029296875,-4.956353010071399e-19,-3.614007155453701e-19,0.0006510416860692203,5.573750531358474e-35,5.573750531358474e-35,-0.0006510416860692203,-0.00018601190822664648,0.0,-0.0,-0.0,-1.5925002543116803e-35,0.0,0.0,-1.5925002543116803e-35,-4.956353010071399e-19,0.00018601190822664648,1.9337501960625696e-35,0.00021701389050576836,1.0466137768255164e-20,3.3098210494631577e-20,7.214697737021064e-19,-0.00021701389050576836,1.328716919075925e-21,-1.660308352807208e-22,-3.652210073023321e-38,-5.6986613051730484e-21,-9.275717834143737e-22,3.804853860465668e-22,-7.392727199681649e-21,-3.614007155453701e-19,1.9337501960625696e-35,3.100198591710068e-05,8.0,8.0,4.0,3.0,0.05036168918013573,-0.008796296082437038,-0.008796296082437038,-0.015104166232049465,-0.01848958246409893,0.0004340277810115367,0.0005787037080153823,0.0010416667209938169,0.0013020833721384406,0.0004340277810115367,0.0010416667209938169,0.0013020833721384406,0.0013020833721384406,0.0023437500931322575,0.001953125,-0.008796296082437038,0.004683366511017084,0.0005787037080153823,0.0010416667209938169,0.0013020833721384406,-0.0004340277810115367,-0.0001653439103392884,-0.00029761905898340046,-0.00037202381645329297,1.3552527156068805e-20,-6.776263578034403e-21,-6.776263578034403e-21,-0.0,-0.0,-0.0,-0.008796296082437038,0.0005787037080153823,0.004683366511017084,0.0010416667209938169,0.0013020833721384406,-2.710505431213761e-20,-0.0001653439103392884,-1.959522208684932e-20,-4.448194763276877e-20,-0.0004340277810115367,-0.00029761905898340046,-0.00037202381645329297,-0.0,-0.0,-0.0,-0.015104166232049465,0.0010416667209938169,0.0010416667209938169,0.01918402686715126,0.0023437500931322575,2.2163436943067476e-20,-1.7787691892340307e-20,-0.0006944444612599909,-1.0555195554982575e-19,-2.710505431213761e-20,-0.0006944444612599909,-9.545568626103613e-20,-0.00390625,-0.0015625000232830644,-0.0,-0.01848958246409893,0.0013020833721384406,0.0013020833721384406,0.0023437500931322575,0.03802083432674408,-2.710505431213761e-20,-4.743384504624082e-20,-1.0279842638700157e-19,-0.0013020833721384406,-1.282660023595823e-20,-9.82092154238603e-20,-0.0013020833721384406,-0.0,-0.0023437500931322575,-0.01171875,0.0004340277810115367,-0.0004340277810115367,-2.710505431213761e-20,2.2163436943067476e-20,-2.710505431213761e-20,6.200397183420137e-05,-0.0,-0.0,6.776263578034403e-21,2.843755867232636e-21,7.2180025618673155e-22,1.1187227771948158e-22,-0.0,-0.0,-0.0,0.0005787037080153823,-0.0001653439103392884,-0.0001653439103392884,-1.7787691892340307e-20,-4.743384504624082e-20,-0.0,4.724111931864172e-05,5.082197683525802e-21,1.1858461261560205e-20,-1.0164395367051604e-20,-0.0,1.6940658945086007e-21,-0.0,-0.0,0.0,0.0010416667209938169,-0.00029761905898340046,-1.959522208684932e-20,-0.0006944444612599909,-1.0279842638700157e-19,-0.0,5.082197683525802e-21,0.00019841270113829523,2.9370979890907383e-20,1.6945919953126234e-22,3.4965450568176954e-22,-0.0,-0.0,-0.0,-0.0,0.0013020833721384406,-0.00037202381645329297,-4.448194763276877e-20,-1.0555195554982575e-19,-0.0013020833721384406,6.776263578034403e-21,1.1858461261560205e-20,2.9370979890907383e-20,0.00037202381645329297,2.3737271448916962e-22,7.867226756493049e-22,-0.0,-0.0,-0.0,-0.0,0.0004340277810115367,1.3552527156068805e-20,-0.0004340277810115367,-2.710505431213761e-20,-1.282660023595823e-20,2.843755867232636e-21,-1.0164395367051604e-20,1.6945919953126234e-22,2.3737271448916962e-22,6.200397183420137e-05,-0.0,0.0,0.0,0.0,-0.0,0.0010416667209938169,-6.776263578034403e-21,-0.00029761905898340046,-0.0006944444612599909,-9.82092154238603e-20,7.2180025618673155e-22,-0.0,3.4965450568176954e-22,7.867226756493049e-22,-0.0,0.00019841270113829523,2.727305275584257e-20,-0.0,-0.0,-0.0,0.0013020833721384406,-6.776263578034403e-21,-0.00037202381645329297,-9.545568626103613e-20,-0.0013020833721384406,1.1187227771948158e-22,1.6940658945086007e-21,-0.0,-0.0,0.0,2.727305275584257e-20,0.00037202381645329297,-0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,-0.00390625,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0013020833721384406,-0.0,-0.0,0.0023437500931322575,-0.0,-0.0,-0.0015625000232830644,-0.0023437500931322575,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0015625000232830644,-0.0,0.001953125,-0.0,-0.0,-0.0,-0.01171875,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.005859375,8.0,8.0,4.0,4.0,0.04044704884290695,-0.0067925346083939075,-0.0067925346083939075,-0.011679687537252903,-0.011679687537252903,0.00032552084303461015,0.0004340277810115367,0.0007812500116415322,0.0007812500116415322,0.00032552084303461015,0.0007812500116415322,0.0007812500116415322,0.0009765625,0.0014062500558793545,0.0009765625,-0.0067925346083939075,0.0035683284513652325,0.0004340277810115367,0.0007812500116415322,0.0007812500116415322,-0.00032552084303461015,-0.00012400794366840273,-0.00022321428696159273,-0.00022321428696159273,4.743384504624082e-20,6.776263578034403e-21,6.776263578034403e-21,-0.0,-0.0,-0.0,-0.0067925346083939075,0.0004340277810115367,0.0035683284513652325,0.0007812500116415322,0.0007812500116415322,1.3552527156068805e-20,-0.00012400794366840273,-1.0717192738719977e-20,-1.0717192738719977e-20,-0.00032552084303461015,-0.00022321428696159273,-0.00022321428696159273,-0.0,-0.0,-0.0,-0.011679687537252903,0.0007812500116415322,0.0007812500116415322,0.014622395858168602,0.0014062500558793545,-8.062794386844319e-21,-1.1858461261560205e-20,-0.0005208333604969084,-6.844832973405927e-20,-0.0,-0.0005208333604969084,-5.493290938328171e-20,-0.0029296875,-0.0009374999790452421,-0.0,-0.011679687537252903,0.0007812500116415322,0.0007812500116415322,0.0014062500558793545,0.014622395858168602,-1.3552527156068805e-20,-1.1858461261560205e-20,-6.844832973405927e-20,-0.0005208333604969084,2.8121493283387274e-21,-5.493290938328171e-20,-0.0005208333604969084,-0.0,-0.0009374999790452421,-0.0029296875,0.00032552084303461015,-0.00032552084303461015,1.3552527156068805e-20,-8.062794386844319e-21,-1.3552527156068805e-20,4.650297705666162e-05,-3.3881317890172014e-21,3.3881317890172014e-21,3.3881317890172014e-21,-4.526041480962518e-23,-6.300159743199047e-22,-6.300159743199047e-22,-0.0,-0.0,-0.0,0.0004340277810115367,-0.00012400794366840273,-0.00012400794366840273,-1.1858461261560205e-20,-1.1858461261560205e-20,-3.3881317890172014e-21,3.543083948898129e-05,3.3881317890172014e-21,3.3881317890172014e-21,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,0.0,0.0007812500116415322,-0.00022321428696159273,-1.0717192738719977e-20,-0.0005208333604969084,-6.844832973405927e-20,3.3881317890172014e-21,3.3881317890172014e-21,0.00014880952949170023,2.022538023283701e-20,1.1422866204136192e-22,-6.687142843993288e-22,-6.687142843993288e-22,-0.0,-0.0,-0.0,0.0007812500116415322,-0.00022321428696159273,-1.0717192738719977e-20,-6.844832973405927e-20,-0.0005208333604969084,3.3881317890172014e-21,3.3881317890172014e-21,2.022538023283701e-20,0.00014880952949170023,1.1422866204136192e-22,-6.687142843993288e-22,-6.687142843993288e-22,-0.0,-0.0,-0.0,0.00032552084303461015,4.743384504624082e-20,-0.00032552084303461015,-0.0,2.8121493283387274e-21,-4.526041480962518e-23,-1.3552527156068805e-20,1.1422866204136192e-22,1.1422866204136192e-22,4.650297705666162e-05,-0.0,0.0,0.0,0.0,-0.0,0.0007812500116415322,6.776263578034403e-21,-0.00022321428696159273,-0.0005208333604969084,-5.493290938328171e-20,-6.300159743199047e-22,-0.0,-6.687142843993288e-22,-6.687142843993288e-22,-0.0,0.00014880952949170023,1.6363831330388115e-20,-0.0,-0.0,-0.0,0.0007812500116415322,6.776263578034403e-21,-0.00022321428696159273,-5.493290938328171e-20,-0.0005208333604969084,-6.300159743199047e-22,-0.0,-6.687142843993288e-22,-6.687142843993288e-22,0.0,1.6363831330388115e-20,0.00014880952949170023,-0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,-0.0029296875,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0009765625,-0.0,-0.0,0.0014062500558793545,-0.0,-0.0,-0.0009374999790452421,-0.0009374999790452421,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-0.0,0.0009765625,-0.0,-0.0,-0.0,-0.0029296875,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0009765625,8.0,8.0,4.0,5.0,0.03385912626981735,-0.005538194440305233,-0.005538194440305233,-0.009531250223517418,-0.008065476082265377,0.0002604166802484542,0.00034722223062999547,0.0006249999860301614,0.0005208333604969084,0.0002604166802484542,0.0006249999860301614,0.0005208333604969084,0.0007812500116415322,0.0009374999790452421,0.0005580357392318547,-0.005538194440305233,0.0028844245243817568,0.00034722223062999547,0.0006249999860301614,0.0005208333604969084,-0.0002604166802484542,-9.920635056914762e-05,-0.00017857142665889114,-0.00014880952949170023,6.776263578034403e-21,-3.3881317890172014e-21,-0.0,-0.0,-0.0,-0.0,-0.005538194440305233,0.00034722223062999547,0.0028844245243817568,0.0006249999860301614,0.0005208333604969084,6.776263578034403e-21,-9.920635056914762e-05,-9.88333490454257e-21,-2.1845989419335346e-21,-0.0002604166802484542,-0.00017857142665889114,-0.00014880952949170023,-0.0,-0.0,-0.0,-0.009531250223517418,0.0006249999860301614,0.0006249999860301614,0.011822916567325592,0.0009374999790452421,6.834543460508879e-22,-8.893845946170154e-21,-0.00041666667675599456,-3.832912943618073e-20,-0.0,-0.00041666667675599456,-4.053195018150066e-20,-0.0023437500931322575,-0.0006249999860301614,-0.0,-0.008065476082265377,0.0005208333604969084,0.0005208333604969084,0.0009374999790452421,0.007380952592939138,1.3552527156068805e-20,-0.0,-3.8769693585244717e-20,-0.0002604166802484542,7.94263347817392e-21,-4.009138603243667e-20,-0.0002604166802484542,-0.0,-0.00046874998952262104,-0.0011160714784637094,0.0002604166802484542,-0.0002604166802484542,6.776263578034403e-21,6.834543460508879e-22,1.3552527156068805e-20,3.720238237292506e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-3.3881317890172014e-21,4.869439196327956e-22,7.921125267634604e-23,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-9.920635056914762e-05,-9.920635056914762e-05,-8.893845946170154e-21,-0.0,-3.3881317890172014e-21,2.8344671591185033e-05,1.6940658945086007e-21,-0.0,-3.3881317890172014e-21,8.470329472543003e-22,-0.0,-0.0,-0.0,0.0,0.0006249999860301614,-0.00017857142665889114,-9.88333490454257e-21,-0.00041666667675599456,-3.8769693585244717e-20,-3.3881317890172014e-21,1.6940658945086007e-21,0.0001190476177725941,1.1077055079271757e-20,5.122651177564907e-22,5.0350249499750635e-23,-0.0,-0.0,-0.0,-0.0,0.0005208333604969084,-0.00014880952949170023,-2.1845989419335346e-21,-3.832912943618073e-20,-0.0002604166802484542,-3.3881317890172014e-21,-0.0,1.1077055079271757e-20,7.440476474585012e-05,3.1346956955525208e-22,-1.2587563163798564e-22,-0.0,-0.0,-0.0,-0.0,0.0002604166802484542,6.776263578034403e-21,-0.0002604166802484542,-0.0,7.94263347817392e-21,4.869439196327956e-22,-3.3881317890172014e-21,5.122651177564907e-22,3.1346956955525208e-22,3.720238237292506e-05,-3.3881317890172014e-21,0.0,0.0,0.0,-0.0,0.0006249999860301614,-3.3881317890172014e-21,-0.00017857142665889114,-0.00041666667675599456,-4.009138603243667e-20,7.921125267634604e-23,8.470329472543003e-22,5.0350249499750635e-23,-1.2587563163798564e-22,-3.3881317890172014e-21,0.0001190476177725941,1.1580557656310798e-20,-0.0,-0.0,-0.0,0.0005208333604969084,-0.0,-0.00014880952949170023,-4.053195018150066e-20,-0.0002604166802484542,-0.0,-0.0,-0.0,-0.0,0.0,1.1580557656310798e-20,7.440476474585012e-05,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0023437500931322575,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0007812500116415322,-0.0,-0.0,0.0009374999790452421,-0.0,-0.0,-0.0006249999860301614,-0.00046874998952262104,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0,-0.0011160714784637094,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00027901786961592734,8.0,8.0,4.0,6.0,0.029142897576093674,-0.004677166230976582,-0.004677166230976582,-0.008054315112531185,-0.0059105283580720425,0.00021701389050576836,0.00028935185400769114,0.0005208333604969084,0.00037202381645329297,0.00021701389050576836,0.0005208333604969084,0.00037202381645329297,0.0006510416860692203,0.0006696428754366934,0.00034877232974395156,-0.004677166230976582,0.002421402605250478,0.00028935185400769114,0.0005208333604969084,0.00037202381645329297,-0.00021701389050576836,-8.26719551696442e-05,-0.00014880952949170023,-0.00010629251482896507,1.3552527156068805e-20,5.929230630780102e-21,5.929230630780102e-21,-0.0,-0.0,0.0,-0.004677166230976582,0.00028935185400769114,0.002421402605250478,0.0005208333604969084,0.00037202381645329297,-0.0,-8.26719551696442e-05,-8.391708540259252e-21,-6.793287827457796e-21,-0.00021701389050576836,-0.00014880952949170023,-0.00010629251482896507,-0.0,-0.0,-0.0,-0.008054315112531185,0.0005208333604969084,0.0005208333604969084,0.00992683507502079,0.0006696428754366934,-2.9933317708498175e-21,-2.4624777075307582e-21,-0.00034722223062999547,-2.8531808390646604e-20,1.3552527156068805e-20,-0.00034722223062999547,-2.371692252312041e-20,-0.001953125,-0.00044642857392318547,-0.0,-0.0059105283580720425,0.00037202381645329297,0.00037202381645329297,0.0006696428754366934,0.0042824591509997845,1.3552527156068805e-20,-8.64057095703498e-22,-2.8531808390646604e-20,-0.00014880952949170023,1.865058505848803e-20,-2.371692252312041e-20,-0.00014880952949170023,-0.0,-0.0002678571327123791,-0.0005231584655120969,0.00021701389050576836,-0.00021701389050576836,-0.0,-2.9933317708498175e-21,1.3552527156068805e-20,3.100198591710068e-05,-1.6940658945086007e-21,-0.0,-3.3881317890172014e-21,5.593614012191824e-22,-7.09732448808162e-39,3.415587374856818e-38,-0.0,-0.0,-0.0,0.00028935185400769114,-8.26719551696442e-05,-8.26719551696442e-05,-2.4624777075307582e-21,-8.64057095703498e-22,-1.6940658945086007e-21,2.362055965932086e-05,2.397631069202184e-21,1.9409393215741156e-21,-5.082197683525802e-21,-1.6940658945086007e-21,-1.6940658945086007e-21,-0.0,-0.0,-0.0,0.0005208333604969084,-0.00014880952949170023,-8.391708540259252e-21,-0.00034722223062999547,-2.8531808390646604e-20,-0.0,2.397631069202184e-21,9.920635056914762e-05,8.151945716066782e-21,-5.64237288394698e-37,-2.82118644197349e-37,-9.4039548065783e-38,-0.0,-0.0,-0.0,0.00037202381645329297,-0.00010629251482896507,-6.793287827457796e-21,-2.8531808390646604e-20,-0.00014880952949170023,-3.3881317890172014e-21,1.9409393215741156e-21,8.151945716066782e-21,4.251700738677755e-05,-3.76158192263132e-37,-9.4039548065783e-38,-4.70197740328915e-38,-0.0,-0.0,-0.0,0.00021701389050576836,1.3552527156068805e-20,-0.00021701389050576836,1.3552527156068805e-20,1.865058505848803e-20,5.593614012191824e-22,-5.082197683525802e-21,-5.64237288394698e-37,-3.76158192263132e-37,3.100198591710068e-05,-3.3881317890172014e-21,-1.6940658945086007e-21,0.0,0.0,-0.0,0.0005208333604969084,5.929230630780102e-21,-0.00014880952949170023,-0.00034722223062999547,-2.371692252312041e-20,-7.09732448808162e-39,-1.6940658945086007e-21,-2.82118644197349e-37,-9.4039548065783e-38,-3.3881317890172014e-21,9.920635056914762e-05,6.776263578034403e-21,-0.0,-0.0,-0.0,0.00037202381645329297,5.929230630780102e-21,-0.00010629251482896507,-2.371692252312041e-20,-0.00014880952949170023,3.415587374856818e-38,-1.6940658945086007e-21,-9.4039548065783e-38,-4.70197740328915e-38,-1.6940658945086007e-21,6.776263578034403e-21,4.251700738677755e-05,-0.0,-0.0,-0.0,0.0006510416860692203,-0.0,-0.0,-0.001953125,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0006510416860692203,-0.0,-0.0,0.0006696428754366934,-0.0,-0.0,-0.00044642857392318547,-0.0002678571327123791,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,0.00034877232974395156,0.0,-0.0,-0.0,-0.0005231584655120969,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010463169746799394,8.0,8.0,4.0,7.0,0.0255921371281147,-0.0040488592348992825,-0.0040488592348992825,-0.0069754463620483875,-0.004520089365541935,0.00018601190822664648,0.00024801588733680546,0.00044642857392318547,0.00027901786961592734,0.00018601190822664648,0.00044642857392318547,0.00027901786961592734,0.0005580357392318547,0.0005022321711294353,0.0002325148816453293,-0.0040488592348992825,0.0020868764258921146,0.00024801588733680546,0.00044642857392318547,0.00027901786961592734,-0.00018601190822664648,-7.086167897796258e-05,-0.00012755101488437504,-7.97193861217238e-05,-4.743384504624082e-20,-2.964615315390051e-21,-1.8494403019080363e-20,-0.0,-0.0,-5.780411145059009e-20,-0.0040488592348992825,0.00024801588733680546,0.0020868764258921146,0.00044642857392318547,0.00027901786961592734,-6.776263578034403e-21,-7.086167897796258e-05,2.3976309884228273e-20,-5.082197683525802e-21,-0.00018601190822664648,-0.00012755101488437504,-7.97193861217238e-05,-0.0,-0.0,-6.502607028242572e-20,-0.0069754463620483875,0.00044642857392318547,0.00044642857392318547,0.008556547574698925,0.0005022321711294353,8.129555293978164e-21,2.1011694568838222e-20,-0.00029761905898340046,2.3376902823747098e-20,-6.776263578034403e-21,-0.00029761905898340046,2.371692252312041e-20,-0.0016741071594879031,-0.0003348214377183467,2.0328790734103208e-20,-0.004520089365541935,0.00027901786961592734,0.00027901786961592734,0.0005022321711294353,0.00271577388048172,-0.0,1.2510722255126677e-20,2.3376902823747098e-20,-9.300595411332324e-05,-3.705630203744049e-21,2.371692252312041e-20,-9.300595411332324e-05,-0.0,-0.00016741071885917336,-0.00027901786961592734,0.00018601190822664648,-0.00018601190822664648,-6.776263578034403e-21,8.129555293978164e-21,-0.0,2.6573128707241267e-05,1.6940658945086007e-21,-0.0,-0.0,-6.999174061371945e-23,7.98448934844259e-39,3.6925139391945384e-38,-0.0,-0.0,7.357499928072295e-22,0.00024801588733680546,-7.086167897796258e-05,-7.086167897796258e-05,2.1011694568838222e-20,1.2510722255126677e-20,1.6940658945086007e-21,2.0246194253559224e-05,-6.850374598833892e-21,-4.2141903763057406e-21,1.3552527156068805e-20,8.470329472543003e-22,-0.0,-0.0,-0.0,3.4445292095581047e-22,0.00044642857392318547,-0.00012755101488437504,2.3976309884228273e-20,-0.00029761905898340046,2.3376902823747098e-20,-0.0,-6.850374598833892e-21,8.50340147735551e-05,-6.6791146886023875e-21,-4.137740114894452e-36,-3.76158192263132e-37,-1.692711865184094e-36,-0.0,-0.0,-4.3547545669639226e-36,0.00027901786961592734,-7.97193861217238e-05,-5.082197683525802e-21,2.3376902823747098e-20,-9.300595411332324e-05,-0.0,-4.2141903763057406e-21,-6.6791146886023875e-21,2.6573128707241267e-05,1.7664582335202163e-22,-1.88079096131566e-37,6.1648006024633375e-21,-0.0,-0.0,1.700928262418523e-20,0.00018601190822664648,-4.743384504624082e-20,-0.00018601190822664648,-6.776263578034403e-21,-3.705630203744049e-21,-6.999174061371945e-23,1.3552527156068805e-20,-4.137740114894452e-36,1.7664582335202163e-22,2.6573128707241267e-05,3.3881317890172014e-21,1.6940658945086007e-21,0.0,0.0,1.0183596014292743e-21,0.00044642857392318547,-2.964615315390051e-21,-0.00012755101488437504,-0.00029761905898340046,2.371692252312041e-20,7.98448934844259e-39,8.470329472543003e-22,-3.76158192263132e-37,-1.88079096131566e-37,3.3881317890172014e-21,8.50340147735551e-05,-6.776263578034403e-21,-0.0,-0.0,-6.510430423175557e-37,0.00027901786961592734,-1.8494403019080363e-20,-7.97193861217238e-05,2.371692252312041e-20,-9.300595411332324e-05,3.6925139391945384e-38,-0.0,-1.692711865184094e-36,6.1648006024633375e-21,1.6940658945086007e-21,-6.776263578034403e-21,2.6573128707241267e-05,-0.0,-0.0,1.870334851869383e-20,0.0005580357392318547,-0.0,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,0.0005022321711294353,-0.0,-0.0,-0.0003348214377183467,-0.00016741071885917336,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00011160714348079637,-6.776263578034403e-21,0.0002325148816453293,-5.780411145059009e-20,-6.502607028242572e-20,2.0328790734103208e-20,-0.00027901786961592734,7.357499928072295e-22,3.4445292095581047e-22,-4.3547545669639226e-36,1.700928262418523e-20,1.0183596014292743e-21,-6.510430423175557e-37,1.870334851869383e-20,-0.0,-6.776263578034403e-21,4.650297705666162e-05,8.0,8.0,4.0,8.0,0.02281901054084301,-0.0035698784049600363,-0.0035698784049600363,-0.006152343936264515,-0.0035698784049600363,0.00016276042151730508,0.00021701389050576836,0.0003906250058207661,0.00021701389050576836,0.00016276042151730508,0.0003906250058207661,0.00021701389050576836,0.00048828125,0.0003906250058207661,0.00016276042151730508,-0.0035698784049600363,0.0018337673973292112,0.00021701389050576836,0.0003906250058207661,0.00021701389050576836,-0.00016276042151730508,-6.200397183420137e-05,-0.00011160714348079637,-6.200397183420137e-05,1.0164395367051604e-20,6.137505964655593e-22,6.870993529630197e-21,-0.0,1.794743307020394e-20,6.82068980083575e-21,-0.0035698784049600363,0.00021701389050576836,0.0018337673973292112,0.0003906250058207661,0.00021701389050576836,3.3881317890172014e-21,-6.200397183420137e-05,-8.916190324025456e-21,1.6940658945086007e-21,-0.00016276042151730508,-0.00011160714348079637,-6.200397183420137e-05,-0.0,2.202285662861181e-20,2.2933816743167107e-20,-0.006152343936264515,0.0003906250058207661,0.0003906250058207661,0.007519531063735485,0.0003906250058207661,-2.9915277658664347e-21,-8.680053685155008e-21,-0.0002604166802484542,4.926659253642598e-22,1.3552527156068805e-20,-0.0002604166802484542,2.5219208127416368e-21,-0.00146484375,-0.0002604166802484542,5.518616236004219e-20,-0.0035698784049600363,0.00021701389050576836,0.00021701389050576836,0.0003906250058207661,0.0018337673973292112,-0.0,-2.86543179591129e-21,-1.783238064805091e-20,-6.200397183420137e-05,6.213891934087995e-22,-1.3552527156068805e-20,-6.200397183420137e-05,-0.0,-0.00011160714348079637,-0.00016276042151730508,0.00016276042151730508,-0.00016276042151730508,3.3881317890172014e-21,-2.9915277658664347e-21,-0.0,2.325148852833081e-05,-1.6940658945086007e-21,-0.0,-1.6940658945086007e-21,9.44859272566396e-22,4.5744057134342545e-39,-5.097534252240602e-38,-0.0,1.5595824126223196e-37,6.545550263224041e-22,0.00021701389050576836,-6.200397183420137e-05,-6.200397183420137e-05,-8.680053685155008e-21,-2.86543179591129e-21,-1.6940658945086007e-21,1.7715419744490646e-05,2.5474828343224778e-21,1.2641741121027184e-21,-5.082197683525802e-21,-0.0,-0.0,-0.0,-6.746766339605085e-23,-1.9256287809594496e-22,0.0003906250058207661,-0.00011160714348079637,-8.916190324025456e-21,-0.0002604166802484542,-1.783238064805091e-20,-0.0,2.5474828343224778e-21,7.440476474585012e-05,5.0949656686449555e-21,-5.64237288394698e-37,-0.0,-6.112570624275895e-37,-0.0,-1.4650675441174377e-36,-9.318213277181965e-37,0.00021701389050576836,-6.200397183420137e-05,1.6940658945086007e-21,4.926659253642598e-22,-6.200397183420137e-05,-1.6940658945086007e-21,1.2641741121027184e-21,5.0949656686449555e-21,1.7715419744490646e-05,1.3410334990524493e-22,-1.7535731688209535e-22,-1.96314092191646e-21,-0.0,-5.060370293553346e-21,-3.172181911384742e-21,0.00016276042151730508,1.0164395367051604e-20,-0.00016276042151730508,1.3552527156068805e-20,6.213891934087995e-22,9.44859272566396e-22,-5.082197683525802e-21,-5.64237288394698e-37,1.3410334990524493e-22,2.325148852833081e-05,-0.0,0.0,0.0,-1.7710261799235529e-22,-1.3586185339161464e-22,0.0003906250058207661,6.137505964655593e-22,-0.00011160714348079637,-0.0002604166802484542,-1.3552527156068805e-20,4.5744057134342545e-39,-0.0,-0.0,-1.7535731688209535e-22,-0.0,7.440476474585012e-05,5.082197683525802e-21,-0.0,-9.079157930369669e-23,-4.603129852144929e-22,0.00021701389050576836,6.870993529630197e-21,-6.200397183420137e-05,2.5219208127416368e-21,-6.200397183420137e-05,-5.097534252240602e-38,-0.0,-6.112570624275895e-37,-1.96314092191646e-21,0.0,5.082197683525802e-21,1.7715419744490646e-05,-0.0,-5.802746314067648e-21,-5.868773744642706e-21,0.00048828125,-0.0,-0.0,-0.00146484375,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00048828125,-0.0,-0.0,0.0003906250058207661,1.794743307020394e-20,2.202285662861181e-20,-0.0002604166802484542,-0.00011160714348079637,1.5595824126223196e-37,-6.746766339605085e-23,-1.4650675441174377e-36,-5.060370293553346e-21,-1.7710261799235529e-22,-9.079157930369669e-23,-5.802746314067648e-21,-0.0,7.440476474585012e-05,-1.530716141222704e-20,0.00016276042151730508,6.82068980083575e-21,2.2933816743167107e-20,5.518616236004219e-20,-0.00016276042151730508,6.545550263224041e-22,-1.9256287809594496e-22,-9.318213277181965e-37,-3.172181911384742e-21,-1.3586185339161464e-22,-4.603129852144929e-22,-5.868773744642706e-21,-0.0,-1.530716141222704e-20,2.325148852833081e-05,8.0,8.0,5.0,3.0,0.04222883656620979,-0.007175926119089127,-0.007175926119089127,-0.010441468097269535,-0.015104166232049465,0.00034722223062999547,0.00046296295477077365,0.0006944444612599909,0.0010416667209938169,0.00034722223062999547,0.0006944444612599909,0.0010416667209938169,0.0007440476329065859,0.0015625000232830644,0.0015625000232830644,-0.007175926119089127,0.0037863757461309433,0.00046296295477077365,0.0006944444612599909,0.0010416667209938169,-0.00034722223062999547,-0.00013227513409219682,-0.00019841270113829523,-0.00029761905898340046,2.710505431213761e-20,-0.0,-0.0,-0.0,-0.0,-0.0,-0.007175926119089127,0.00046296295477077365,0.0037863757461309433,0.0006944444612599909,0.0010416667209938169,-1.3552527156068805e-20,-0.00013227513409219682,-1.0164395367051604e-20,-2.2024394667563275e-20,-0.00034722223062999547,-0.00019841270113829523,-0.00029761905898340046,-0.0,-0.0,-0.0,-0.010441468097269535,0.0006944444612599909,0.0006944444612599909,0.009685019962489605,0.0015625000232830644,-5.134138405983667e-21,-1.4823076576950256e-20,-0.00034722223062999547,-1.1858461261560205e-20,1.3552527156068805e-20,-0.00034722223062999547,-0.0,-0.0014880952658131719,-0.0007812500116415322,-0.0,-0.015104166232049465,0.0010416667209938169,0.0010416667209938169,0.0015625000232830644,0.03072916716337204,-2.710505431213761e-20,-2.371692252312041e-20,-1.1858461261560205e-20,-0.0010416667209938169,1.096348334272694e-20,-0.0,-0.0010416667209938169,-0.0,-0.0015625000232830644,-0.00937500037252903,0.00034722223062999547,-0.00034722223062999547,-1.3552527156068805e-20,-5.134138405983667e-21,-2.710505431213761e-20,4.960317528457381e-05,-0.0,-0.0,6.776263578034403e-21,2.876990312112333e-21,0.0,-0.0,-0.0,-0.0,-0.0,0.00046296295477077365,-0.00013227513409219682,-0.00013227513409219682,-1.4823076576950256e-20,-2.371692252312041e-20,-0.0,3.779289545491338e-05,4.235164736271502e-21,6.776263578034403e-21,-1.3552527156068805e-20,-0.0,-0.0,-0.0,-0.0,0.0,0.0006944444612599909,-0.00019841270113829523,-1.0164395367051604e-20,-0.00034722223062999547,-1.1858461261560205e-20,-0.0,4.235164736271502e-21,9.920635056914762e-05,3.3881317890172014e-21,-6.1529752114626145e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.00029761905898340046,-2.2024394667563275e-20,-1.1858461261560205e-20,-0.0010416667209938169,6.776263578034403e-21,6.776263578034403e-21,3.3881317890172014e-21,0.00029761905898340046,-2.23541521574621e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,2.710505431213761e-20,-0.00034722223062999547,1.3552527156068805e-20,1.096348334272694e-20,2.876990312112333e-21,-1.3552527156068805e-20,-6.1529752114626145e-22,-2.23541521574621e-22,4.960317528457381e-05,-0.0,0.0,0.0,0.0,-0.0,0.0006944444612599909,-0.0,-0.00019841270113829523,-0.00034722223062999547,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,9.920635056914762e-05,-0.0,-0.0,-0.0,-0.0,0.0010416667209938169,-0.0,-0.00029761905898340046,-0.0,-0.0010416667209938169,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,0.00029761905898340046,-0.0,-0.0,-0.0,0.0007440476329065859,-0.0,-0.0,-0.0014880952658131719,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0007812500116415322,-0.0015625000232830644,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0007812500116415322,-0.0,0.0015625000232830644,-0.0,-0.0,-0.0,-0.00937500037252903,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.004687500186264515,8.0,8.0,5.0,4.0,0.03385912626981735,-0.005538194440305233,-0.005538194440305233,-0.008065476082265377,-0.009531250223517418,0.0002604166802484542,0.00034722223062999547,0.0005208333604969084,0.0006249999860301614,0.0002604166802484542,0.0005208333604969084,0.0006249999860301614,0.0005580357392318547,0.0009374999790452421,0.0007812500116415322,-0.005538194440305233,0.0028844245243817568,0.00034722223062999547,0.0005208333604969084,0.0006249999860301614,-0.0002604166802484542,-9.920635056914762e-05,-0.00014880952949170023,-0.00017857142665889114,-0.0,-0.0,-3.3881317890172014e-21,-0.0,-0.0,-0.0,-0.005538194440305233,0.00034722223062999547,0.0028844245243817568,0.0005208333604969084,0.0006249999860301614,-0.0,-9.920635056914762e-05,-2.1845989419335346e-21,-9.88333490454257e-21,-0.0002604166802484542,-0.00014880952949170023,-0.00017857142665889114,-0.0,-0.0,-0.0,-0.008065476082265377,0.0005208333604969084,0.0005208333604969084,0.007380952592939138,0.0009374999790452421,1.2650144193607344e-20,-0.0,-0.0002604166802484542,4.554886198894586e-21,-0.0,-0.0002604166802484542,4.405647044220625e-22,-0.0011160714784637094,-0.00046874998952262104,-0.0,-0.009531250223517418,0.0006249999860301614,0.0006249999860301614,0.0009374999790452421,0.011822916567325592,-0.0,-5.929230630780102e-21,4.9954507518553545e-21,-0.00041666667675599456,2.740870835681735e-21,-0.0,-0.00041666667675599456,-0.0,-0.0006249999860301614,-0.0023437500931322575,0.0002604166802484542,-0.0002604166802484542,-0.0,1.2650144193607344e-20,-0.0,3.720238237292506e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-3.3881317890172014e-21,1.3819221413886482e-21,0.0,4.707642183836443e-22,-0.0,-0.0,-0.0,0.00034722223062999547,-9.920635056914762e-05,-9.920635056914762e-05,-0.0,-5.929230630780102e-21,-3.3881317890172014e-21,2.8344671591185033e-05,-0.0,1.6940658945086007e-21,-3.3881317890172014e-21,-0.0,-0.0,-0.0,-0.0,0.0,0.0005208333604969084,-0.00014880952949170023,-2.1845989419335346e-21,-0.0002604166802484542,4.9954507518553545e-21,-3.3881317890172014e-21,-0.0,7.440476474585012e-05,-1.3013960279772543e-21,3.1346956955525208e-22,-0.0,-1.2587563163798564e-22,-0.0,-0.0,-0.0,0.0006249999860301614,-0.00017857142665889114,-9.88333490454257e-21,4.554886198894586e-21,-0.00041666667675599456,-3.3881317890172014e-21,1.6940658945086007e-21,-1.3013960279772543e-21,0.0001190476177725941,5.122651177564907e-22,-0.0,5.0350249499750635e-23,-0.0,-0.0,-0.0,0.0002604166802484542,-0.0,-0.0002604166802484542,-0.0,2.740870835681735e-21,1.3819221413886482e-21,-3.3881317890172014e-21,3.1346956955525208e-22,5.122651177564907e-22,3.720238237292506e-05,-0.0,-3.3881317890172014e-21,0.0,0.0,-0.0,0.0005208333604969084,-0.0,-0.00014880952949170023,-0.0002604166802484542,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,7.440476474585012e-05,-0.0,-0.0,-0.0,-0.0,0.0006249999860301614,-3.3881317890172014e-21,-0.00017857142665889114,4.405647044220625e-22,-0.00041666667675599456,4.707642183836443e-22,-0.0,-1.2587563163798564e-22,5.0350249499750635e-23,-3.3881317890172014e-21,-0.0,0.0001190476177725941,-0.0,-0.0,-0.0,0.0005580357392318547,-0.0,-0.0,-0.0011160714784637094,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,0.0009374999790452421,-0.0,-0.0,-0.00046874998952262104,-0.0006249999860301614,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.0003124999930150807,-0.0,0.0007812500116415322,-0.0,-0.0,-0.0,-0.0023437500931322575,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0007812500116415322,8.0,8.0,5.0,5.0,0.028313491493463516,-0.004513889085501432,-0.004513889085501432,-0.006577380932867527,-0.006577380932867527,0.00020833333837799728,0.00027777778450399637,0.00041666667675599456,0.00041666667675599456,0.00020833333837799728,0.00041666667675599456,0.00041666667675599456,0.00044642857392318547,0.0006249999860301614,0.00044642857392318547,-0.004513889085501432,0.0023313493002206087,0.00027777778450399637,0.00041666667675599456,0.00041666667675599456,-0.00020833333837799728,-7.936507608974352e-05,-0.0001190476177725941,-0.0001190476177725941,6.776263578034403e-21,-0.0,-0.0,-0.0,-0.0,-0.0,-0.004513889085501432,0.00027777778450399637,0.0023313493002206087,0.00041666667675599456,0.00041666667675599456,-0.0,-7.936507608974352e-05,-1.660278312983937e-20,-1.660278312983937e-20,-0.00020833333837799728,-0.0001190476177725941,-0.0001190476177725941,-0.0,-0.0,-0.0,-0.006577380932867527,0.00041666667675599456,0.00041666667675599456,0.005967261735349894,0.0006249999860301614,-3.725678428385306e-21,-1.7787691892340307e-20,-0.00020833333837799728,-6.073181463893853e-21,-0.0,-0.00020833333837799728,-0.0,-0.0008928571478463709,-0.0003124999930150807,-0.0,-0.006577380932867527,0.00041666667675599456,0.00041666667675599456,0.0006249999860301614,0.005967261735349894,-6.776263578034403e-21,-1.7787691892340307e-20,-6.073181463893853e-21,-0.00020833333837799728,1.4463487270624103e-21,-0.0,-0.00020833333837799728,-0.0,-0.0003124999930150807,-0.0008928571478463709,0.00020833333837799728,-0.00020833333837799728,-0.0,-3.725678428385306e-21,-6.776263578034403e-21,2.9761904443148524e-05,-0.0,-0.0,-0.0,7.539115145986877e-22,0.0,-0.0,-0.0,-0.0,-0.0,0.00027777778450399637,-7.936507608974352e-05,-7.936507608974352e-05,-1.7787691892340307e-20,-1.7787691892340307e-20,-0.0,2.2675736545352265e-05,5.082197683525802e-21,5.082197683525802e-21,-3.3881317890172014e-21,-0.0,-0.0,-0.0,-0.0,0.0,0.00041666667675599456,-0.0001190476177725941,-1.660278312983937e-20,-0.00020833333837799728,-6.073181463893853e-21,-0.0,5.082197683525802e-21,5.952380888629705e-05,1.7351947039696724e-21,-1.5649734395604176e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0001190476177725941,-1.660278312983937e-20,-6.073181463893853e-21,-0.00020833333837799728,-0.0,5.082197683525802e-21,1.7351947039696724e-21,5.952380888629705e-05,-1.5649734395604176e-22,-0.0,-0.0,-0.0,-0.0,-0.0,0.00020833333837799728,6.776263578034403e-21,-0.00020833333837799728,-0.0,1.4463487270624103e-21,7.539115145986877e-22,-3.3881317890172014e-21,-1.5649734395604176e-22,-1.5649734395604176e-22,2.9761904443148524e-05,-0.0,0.0,0.0,0.0,-0.0,0.00041666667675599456,-0.0,-0.0001190476177725941,-0.00020833333837799728,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,5.952380888629705e-05,-0.0,-0.0,-0.0,-0.0,0.00041666667675599456,-0.0,-0.0001190476177725941,-0.0,-0.00020833333837799728,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,5.952380888629705e-05,-0.0,-0.0,-0.0,0.00044642857392318547,-0.0,-0.0,-0.0008928571478463709,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00022321428696159273,-0.0,-0.0,0.0006249999860301614,-0.0,-0.0,-0.0003124999930150807,-0.0003124999930150807,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00015624999650754035,-0.0,0.00044642857392318547,-0.0,-0.0,-0.0,-0.0008928571478463709,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,8.0,8.0,5.0,6.0,0.024351025000214577,-0.003811177331954241,-0.003811177331954241,-0.0055555556900799274,-0.004817708395421505,0.00017361111531499773,0.00023148147738538682,0.00034722223062999547,0.00029761905898340046,0.00017361111531499773,0.00034722223062999547,0.00029761905898340046,0.00037202381645329297,0.00044642857392318547,0.00027901786961592734,-0.003811177331954241,0.0019569634459912777,0.00023148147738538682,0.00034722223062999547,0.00029761905898340046,-0.00017361111531499773,-6.613756704609841e-05,-9.920635056914762e-05,-8.50340147735551e-05,1.3552527156068805e-20,2.964615315390051e-21,1.4823076576950256e-21,-0.0,-0.0,0.0,-0.003811177331954241,0.00023148147738538682,0.0019569634459912777,0.00034722223062999547,0.00029761905898340046,6.776263578034403e-21,-6.613756704609841e-05,-4.123724363053072e-21,-3.2149366073476847e-21,-0.00017361111531499773,-9.920635056914762e-05,-8.50340147735551e-05,-0.0,-0.0,-0.0,-0.0055555556900799274,0.00034722223062999547,0.00034722223062999547,0.005009920801967382,0.00044642857392318547,6.488666046084856e-21,-1.1591089466888252e-21,-0.00017361111531499773,2.4937623406882386e-21,6.776263578034403e-21,-0.00017361111531499773,2.1203648130770974e-21,-0.0007440476329065859,-0.00022321428696159273,-0.0,-0.004817708395421505,0.00029761905898340046,0.00029761905898340046,0.00044642857392318547,0.0034616815391927958,6.776263578034403e-21,-1.732628949652659e-21,2.4937623406882386e-21,-0.0001190476177725941,7.017099152083777e-21,2.1203648130770974e-21,-0.0001190476177725941,-0.0,-0.00017857142665889114,-0.0004185267898719758,0.00017361111531499773,-0.00017361111531499773,6.776263578034403e-21,6.488666046084856e-21,6.776263578034403e-21,2.4801587642286904e-05,-0.0,-1.6940658945086007e-21,-1.6940658945086007e-21,-2.2374455543896316e-22,6.720278791843899e-38,3.1272584449148866e-38,-0.0,-0.0,-0.0,0.00023148147738538682,-6.613756704609841e-05,-6.613756704609841e-05,-1.1591089466888252e-21,-1.732628949652659e-21,-0.0,1.889644772745669e-05,1.1782069031727659e-21,9.185533740845933e-22,-3.3881317890172014e-21,-8.470329472543003e-22,-4.235164736271502e-22,-0.0,-0.0,-0.0,0.00034722223062999547,-9.920635056914762e-05,-4.123724363053072e-21,-0.00017361111531499773,2.4937623406882386e-21,-1.6940658945086007e-21,1.1782069031727659e-21,4.960317528457381e-05,-7.125035619731381e-22,-1.88079096131566e-37,-4.70197740328915e-38,-0.0,-0.0,-0.0,-0.0,0.00029761905898340046,-8.50340147735551e-05,-3.2149366073476847e-21,2.4937623406882386e-21,-0.0001190476177725941,-1.6940658945086007e-21,9.185533740845933e-22,-7.125035619731381e-22,3.40136066370178e-05,-1.88079096131566e-37,-2.350988701644575e-38,-2.350988701644575e-38,-0.0,-0.0,-0.0,0.00017361111531499773,1.3552527156068805e-20,-0.00017361111531499773,6.776263578034403e-21,7.017099152083777e-21,-2.2374455543896316e-22,-3.3881317890172014e-21,-1.88079096131566e-37,-1.88079096131566e-37,2.4801587642286904e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,0.0,0.0,-0.0,0.00034722223062999547,2.964615315390051e-21,-9.920635056914762e-05,-0.00017361111531499773,2.1203648130770974e-21,6.720278791843899e-38,-8.470329472543003e-22,-4.70197740328915e-38,-2.350988701644575e-38,-1.6940658945086007e-21,4.960317528457381e-05,-6.058185180220278e-22,-0.0,-0.0,-0.0,0.00029761905898340046,1.4823076576950256e-21,-8.50340147735551e-05,2.1203648130770974e-21,-0.0001190476177725941,3.1272584449148866e-38,-4.235164736271502e-22,-0.0,-2.350988701644575e-38,-1.6940658945086007e-21,-6.058185180220278e-22,3.40136066370178e-05,-0.0,-0.0,-0.0,0.00037202381645329297,-0.0,-0.0,-0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00018601190822664648,-0.0,-0.0,0.00044642857392318547,-0.0,-0.0,-0.00022321428696159273,-0.00017857142665889114,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,8.928571332944557e-05,-0.0,0.00027901786961592734,0.0,-0.0,-0.0,-0.0004185267898719758,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.370535942958668e-05,8.0,8.0,5.0,7.0,0.021371882408857346,-0.0032986111473292112,-0.0032986111473292112,-0.0048097362741827965,-0.0036830357275903225,0.00014880952949170023,0.00019841270113829523,0.00029761905898340046,0.00022321428696159273,0.00014880952949170023,0.00029761905898340046,0.00022321428696159273,0.0003188775444868952,0.0003348214377183467,0.00018601190822664648,-0.0032986111473292112,0.0016865079523995519,0.00019841270113829523,0.00029761905898340046,0.00022321428696159273,-0.00014880952949170023,-5.668934318237007e-05,-8.50340147735551e-05,-6.377550744218752e-05,-3.7269449679189215e-20,-0.0,-1.6697992910813932e-20,-0.0,-0.0,-4.5218881548022556e-20,-0.0032986111473292112,0.00019841270113829523,0.0016865079523995519,0.00029761905898340046,0.00022321428696159273,-6.776263578034403e-21,-5.668934318237007e-05,1.618497775673053e-20,-3.3881317890172014e-21,-0.00014880952949170023,-8.50340147735551e-05,-6.377550744218752e-05,-0.0,-0.0,-4.560946589351244e-20,-0.0048097362741827965,0.00029761905898340046,0.00029761905898340046,0.00431813346222043,0.0003348214377183467,-7.054717694599684e-22,1.618497775673053e-20,-0.00014880952949170023,-3.086492374458196e-36,-0.0,-0.00014880952949170023,3.291384182302405e-37,-0.0006377550889737904,-0.00016741071885917336,-1.2980819583512111e-37,-0.0036830357275903225,0.00022321428696159273,0.00022321428696159273,0.0003348214377183467,0.0021949405781924725,-6.776263578034403e-21,8.874368427683944e-21,-2.998426438431565e-36,-7.440476474585012e-05,-4.102302485451223e-21,-0.0,-7.440476474585012e-05,-0.0,-0.00011160714348079637,-0.00022321428696159273,0.00014880952949170023,-0.00014880952949170023,-6.776263578034403e-21,-7.054717694599684e-22,-6.776263578034403e-21,2.1258503693388775e-05,1.6940658945086007e-21,-0.0,1.6940658945086007e-21,-5.061485048675732e-22,0.0,4.272793090621848e-37,-0.0,-0.0,3.097807297446938e-22,0.00019841270113829523,-5.668934318237007e-05,-5.668934318237007e-05,1.618497775673053e-20,8.874368427683944e-21,1.6940658945086007e-21,1.6196954675251618e-05,-4.624279705263109e-21,-3.0887764178039678e-21,1.1858461261560205e-20,-0.0,4.235164736271502e-22,-0.0,-0.0,6.985242777785742e-23,0.00029761905898340046,-8.50340147735551e-05,1.618497775673053e-20,-0.00014880952949170023,-2.998426438431565e-36,-0.0,-4.624279705263109e-21,4.251700738677755e-05,8.818550153783999e-37,-3.385423730368188e-36,-0.0,-9.4039548065783e-38,-0.0,-0.0,3.7088057154004716e-38,0.00022321428696159273,-6.377550744218752e-05,-3.3881317890172014e-21,-3.086492374458196e-36,-7.440476474585012e-05,1.6940658945086007e-21,-3.0887764178039678e-21,8.818550153783999e-37,2.1258503693388775e-05,-1.3429922722345492e-22,-0.0,5.071895488269752e-21,-0.0,-0.0,1.4209638142211223e-20,0.00014880952949170023,-3.7269449679189215e-20,-0.00014880952949170023,-0.0,-4.102302485451223e-21,-5.061485048675732e-22,1.1858461261560205e-20,-3.385423730368188e-36,-1.3429922722345492e-22,2.1258503693388775e-05,-0.0,1.6940658945086007e-21,0.0,0.0,-3.0986622964504526e-22,0.00029761905898340046,-0.0,-8.50340147735551e-05,-0.00014880952949170023,-0.0,0.0,-0.0,-0.0,-0.0,-0.0,4.251700738677755e-05,-0.0,-0.0,-0.0,-0.0,0.00022321428696159273,-1.6697992910813932e-20,-6.377550744218752e-05,3.291384182302405e-37,-7.440476474585012e-05,4.272793090621848e-37,4.235164736271502e-22,-9.4039548065783e-38,5.071895488269752e-21,1.6940658945086007e-21,-0.0,2.1258503693388775e-05,-0.0,-0.0,1.5903704036719824e-20,0.0003188775444868952,-0.0,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0001594387722434476,-0.0,-0.0,0.0003348214377183467,-0.0,-0.0,-0.00016741071885917336,-0.00011160714348079637,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,5.5803571740398183e-05,0.0,0.00018601190822664648,-4.5218881548022556e-20,-4.560946589351244e-20,-1.2980819583512111e-37,-0.00022321428696159273,3.097807297446938e-22,6.985242777785742e-23,3.7088057154004716e-38,1.4209638142211223e-20,-3.0986622964504526e-22,-0.0,1.5903704036719824e-20,-0.0,0.0,3.720238237292506e-05,8.0,8.0,5.0,8.0,0.01904761977493763,-0.0029079860541969538,-0.0029079860541969538,-0.00424107164144516,-0.0029079860541969538,0.0001302083401242271,0.00017361111531499773,0.0002604166802484542,0.00017361111531499773,0.0001302083401242271,0.0002604166802484542,0.00017361111531499773,0.00027901786961592734,0.0002604166802484542,0.0001302083401242271,-0.0029079860541969538,0.0014818948693573475,0.00017361111531499773,0.0002604166802484542,0.00017361111531499773,-0.0001302083401242271,-4.960317528457381e-05,-7.440476474585012e-05,-4.960317528457381e-05,1.0164395367051604e-20,-2.5365692403104454e-22,1.1974085601558633e-21,-0.0,-0.0,6.222744442813964e-21,-0.0029079860541969538,0.00017361111531499773,0.0014818948693573475,0.0002604166802484542,0.00017361111531499773,-0.0,-4.960317528457381e-05,-3.77626892389602e-21,-1.6940658945086007e-21,-0.0001302083401242271,-7.440476474585012e-05,-4.960317528457381e-05,-0.0,-0.0,4.171237568970504e-21,-0.00424107164144516,0.0002604166802484542,0.0002604166802484542,0.0037946428637951612,0.0002604166802484542,1.8628901051873708e-21,-3.77626892389602e-21,-0.0001302083401242271,-2.5365692403104454e-22,-0.0,-0.0001302083401242271,-8.228460455756013e-38,-0.0005580357392318547,-0.0001302083401242271,-6.6584944451415365e-22,-0.0029079860541969538,0.00017361111531499773,0.00017361111531499773,0.0002604166802484542,0.0014818948693573475,-0.0,-4.648406883520662e-21,-4.316291637032033e-37,-4.960317528457381e-05,-7.568114531143466e-21,-1.6940658945086007e-21,-4.960317528457381e-05,-0.0,-7.440476474585012e-05,-0.0001302083401242271,0.0001302083401242271,-0.0001302083401242271,-0.0,1.8628901051873708e-21,-0.0,1.860119118646253e-05,-0.0,-0.0,-0.0,-2.711676418865826e-22,-3.934128623010352e-39,6.415271887839266e-39,-0.0,-0.0,1.5070503494070423e-22,0.00017361111531499773,-4.960317528457381e-05,-4.960317528457381e-05,-3.77626892389602e-21,-4.648406883520662e-21,-0.0,1.4172335795592517e-05,1.0789339205564653e-21,7.245467038272511e-22,-2.541098841762901e-21,-0.0,4.235164736271502e-22,-0.0,-0.0,8.323208302114478e-23,0.0002604166802484542,-7.440476474585012e-05,-3.77626892389602e-21,-0.0001302083401242271,-4.316291637032033e-37,-0.0,1.0789339205564653e-21,3.720238237292506e-05,5.515943476548263e-38,-9.4039548065783e-38,-0.0,2.350988701644575e-38,-0.0,-0.0,2.0641615432668605e-38,0.00017361111531499773,-4.960317528457381e-05,-1.6940658945086007e-21,-2.5365692403104454e-22,-4.960317528457381e-05,-0.0,7.245467038272511e-22,5.515943476548263e-38,1.4172335795592517e-05,2.2359344755484627e-22,7.247340866912337e-23,-7.65633205100254e-22,-0.0,-0.0,-2.1871739858765677e-21,0.0001302083401242271,1.0164395367051604e-20,-0.0001302083401242271,-0.0,-7.568114531143466e-21,-2.711676418865826e-22,-2.541098841762901e-21,-9.4039548065783e-38,2.2359344755484627e-22,1.860119118646253e-05,-0.0,0.0,0.0,0.0,7.629589540097802e-22,0.0002604166802484542,-2.5365692403104454e-22,-7.440476474585012e-05,-0.0001302083401242271,-1.6940658945086007e-21,-3.934128623010352e-39,-0.0,-0.0,7.247340866912337e-23,-0.0,3.720238237292506e-05,-0.0,-0.0,-0.0,1.902426930232834e-22,0.00017361111531499773,1.1974085601558633e-21,-4.960317528457381e-05,-8.228460455756013e-38,-4.960317528457381e-05,6.415271887839266e-39,4.235164736271502e-22,2.350988701644575e-38,-7.65633205100254e-22,0.0,-0.0,1.4172335795592517e-05,-0.0,-0.0,-3.034206933130868e-21,0.00027901786961592734,-0.0,-0.0,-0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.00013950893480796367,-0.0,-0.0,0.0002604166802484542,-0.0,-0.0,-0.0001302083401242271,-7.440476474585012e-05,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,3.720238237292506e-05,0.0,0.0001302083401242271,6.222744442813964e-21,4.171237568970504e-21,-6.6584944451415365e-22,-0.0001302083401242271,1.5070503494070423e-22,8.323208302114478e-23,2.0641615432668605e-38,-2.1871739858765677e-21,7.629589540097802e-22,1.902426930232834e-22,-3.034206933130868e-21,-0.0,0.0,1.860119118646253e-05,8.0,8.0,6.0,3.0,0.036389440298080444,-0.006062610074877739,-0.006062610074877739,-0.0076574902050197124,-0.0127728171646595,0.00028935185400769114,0.00038580247201025486,0.0004960317746736109,0.0008680555620230734,0.00028935185400769114,0.0004960317746736109,0.0008680555620230734,0.0004650297632906586,0.0011160714784637094,0.0013020833721384406,-0.006062610074877739,0.003178933635354042,0.00038580247201025486,0.0004960317746736109,0.0008680555620230734,-0.00028935185400769114,-0.00011022927355952561,-0.00014172335795592517,-0.00024801588733680546,2.0328790734103208e-20,-4.195854270129626e-20,5.929230630780102e-21,-1.47510498251122e-19,-9.440671784674232e-20,6.550782061292982e-34,-0.006062610074877739,0.00038580247201025486,0.003178933635354042,0.0004960317746736109,0.0008680555620230734,-0.0,-0.00011022927355952561,-5.293972399328143e-20,-1.9527874721585873e-20,-0.00028935185400769114,-0.00014172335795592517,-0.00024801588733680546,-1.47510498251122e-19,-9.440671784674232e-20,6.550782061292982e-34,-0.0076574902050197124,0.0004960317746736109,0.0004960317746736109,0.0056206597946584225,0.0011160714784637094,-1.3279121345400155e-20,-1.0981183715365867e-20,-0.00019841270113829523,3.6364071418181516e-20,-2.710505431213761e-20,-0.00019841270113829523,4.1504614415460717e-20,-0.0006975446594879031,-0.00044642857392318547,3.0977204632735622e-18,-0.0127728171646595,0.0008680555620230734,0.0008680555620230734,0.0011160714784637094,0.02579365111887455,-1.3552527156068805e-20,-1.359864409080577e-20,-5.804264965973507e-20,-0.0008680555620230734,1.0201314764235318e-20,-5.290210666245587e-20,-0.0008680555620230734,7.744301158183906e-19,-0.0011160714784637094,-0.0078125,0.00028935185400769114,-0.00028935185400769114,-0.0,-1.3279121345400155e-20,-1.3552527156068805e-20,4.13359775848221e-05,1.6940658945086007e-21,3.3881317890172014e-21,6.776263578034403e-21,-1.1187228024383648e-21,4.230396749531762e-37,-1.8098177724867824e-37,2.7627528789513063e-36,-5.711162961872317e-37,0.0,0.00038580247201025486,-0.00011022927355952561,-0.00011022927355952561,-1.0981183715365867e-20,-1.359864409080577e-20,1.6940658945086007e-21,3.149408075842075e-05,3.1374809172842537e-21,5.579393008394126e-21,-3.3881317890172014e-21,-0.0,-1.6940658945086007e-21,3.1638566053231664e-36,1.9186587541845567e-36,-0.0,0.0004960317746736109,-0.00014172335795592517,-5.293972399328143e-20,-0.00019841270113829523,-5.804264965973507e-20,3.3881317890172014e-21,3.1374809172842537e-21,5.668934318237007e-05,-1.038973422931268e-20,-1.504632769052528e-36,1.6783417080518505e-20,-3.573502826499754e-36,5.900420188538822e-20,3.7762688431166636e-20,-2.6203128245171927e-34,0.0008680555620230734,-0.00024801588733680546,-1.9527874721585873e-20,3.6364071418181516e-20,-0.0008680555620230734,6.776263578034403e-21,5.579393008394126e-21,-1.038973422931268e-20,0.00024801588733680546,-7.52316384526264e-37,-3.197344634236622e-36,-3.76158192263132e-37,-1.081398983993996e-35,-6.920953296671426e-36,0.0,0.00028935185400769114,2.0328790734103208e-20,-0.00028935185400769114,-2.710505431213761e-20,1.0201314764235318e-20,-1.1187228024383648e-21,-3.3881317890172014e-21,-1.504632769052528e-36,-7.52316384526264e-37,4.13359775848221e-05,-0.0,6.776263578034403e-21,-3.3814482129937354e-37,1.8401080158838733e-36,-0.0,0.0004960317746736109,-4.195854270129626e-20,-0.00014172335795592517,-0.00019841270113829523,-5.290210666245587e-20,4.230396749531762e-37,-0.0,1.6783417080518505e-20,-3.197344634236622e-36,-0.0,5.668934318237007e-05,-1.1858461261560205e-20,5.900420188538822e-20,3.7762688431166636e-20,-2.6203128245171927e-34,0.0008680555620230734,5.929230630780102e-21,-0.00024801588733680546,4.1504614415460717e-20,-0.0008680555620230734,-1.8098177724867824e-37,-1.6940658945086007e-21,-3.573502826499754e-36,-3.76158192263132e-37,6.776263578034403e-21,-1.1858461261560205e-20,0.00024801588733680546,-1.0120202799988513e-35,-6.476930107677166e-36,0.0,0.0004650297632906586,-1.47510498251122e-19,-1.47510498251122e-19,-0.0006975446594879031,7.744301158183906e-19,2.7627528789513063e-36,3.1638566053231664e-36,5.900420188538822e-20,-1.081398983993996e-35,-3.3814482129937354e-37,5.900420188538822e-20,-1.0120202799988513e-35,0.00013950893480796367,1.8586323141532891e-19,-6.195441133342278e-19,0.0011160714784637094,-9.440671784674232e-20,-9.440671784674232e-20,-0.00044642857392318547,-0.0011160714784637094,-5.711162961872317e-37,1.9186587541845567e-36,3.7762688431166636e-20,-6.920953296671426e-36,1.8401080158838733e-36,3.7762688431166636e-20,-6.476930107677166e-36,1.8586323141532891e-19,0.00044642857392318547,-8.253985213558165e-34,0.0013020833721384406,6.550782061292982e-34,6.550782061292982e-34,3.0977204632735622e-18,-0.0078125,0.0,-0.0,-2.6203128245171927e-34,0.0,-0.0,-2.6203128245171927e-34,0.0,-6.195441133342278e-19,-8.253985213558165e-34,0.00390625,8.0,8.0,6.0,4.0,0.029142897576093674,-0.004677166230976582,-0.004677166230976582,-0.0059105283580720425,-0.008054315112531185,0.00021701389050576836,0.00028935185400769114,0.00037202381645329297,0.0005208333604969084,0.00021701389050576836,0.00037202381645329297,0.0005208333604969084,0.00034877232974395156,0.0006696428754366934,0.0006510416860692203,-0.004677166230976582,0.002421402605250478,0.00028935185400769114,0.00037202381645329297,0.0005208333604969084,-0.00021701389050576836,-8.26719551696442e-05,-0.00010629251482896507,-0.00014880952949170023,2.0328790734103208e-20,5.929230630780102e-21,8.893845946170154e-21,-0.0,-0.0,0.0,-0.004677166230976582,0.00028935185400769114,0.002421402605250478,0.00037202381645329297,0.0005208333604969084,-0.0,-8.26719551696442e-05,-6.793287827457796e-21,-8.391708540259252e-21,-0.00021701389050576836,-0.00010629251482896507,-0.00014880952949170023,-0.0,-0.0,-0.0,-0.0059105283580720425,0.00037202381645329297,0.00037202381645329297,0.0042824591509997845,0.0006696428754366934,-2.8455532079190915e-21,-8.64057095703498e-22,-0.00014880952949170023,-5.2028591010902804e-20,2.0328790734103208e-20,-0.00014880952949170023,-4.743384504624082e-20,-0.0005231584655120969,-0.0002678571327123791,1.0842021724855044e-18,-0.008054315112531185,0.0005208333604969084,0.0005208333604969084,0.0006696428754366934,0.00992683507502079,-0.0,5.021375068850971e-22,-5.2028591010902804e-20,-0.00034722223062999547,1.5429997733191165e-20,-4.743384504624082e-20,-0.00034722223062999547,6.505213034913027e-19,-0.00044642857392318547,-0.001953125,0.00021701389050576836,-0.00021701389050576836,-0.0,-2.8455532079190915e-21,-0.0,3.100198591710068e-05,-1.6940658945086007e-21,-0.0,3.3881317890172014e-21,4.474891108779263e-22,3.415587374856818e-38,6.831174749713636e-38,-0.0,-0.0,-0.0,0.00028935185400769114,-8.26719551696442e-05,-8.26719551696442e-05,-8.64057095703498e-22,5.021375068850971e-22,-1.6940658945086007e-21,2.362055965932086e-05,1.9409393215741156e-21,2.397631069202184e-21,-6.776263578034403e-21,-1.6940658945086007e-21,-2.541098841762901e-21,-0.0,-0.0,-0.0,0.00037202381645329297,-0.00010629251482896507,-6.793287827457796e-21,-0.00014880952949170023,-5.2028591010902804e-20,-0.0,1.9409393215741156e-21,4.251700738677755e-05,1.486531287139161e-20,-5.64237288394698e-37,-4.70197740328915e-38,-9.4039548065783e-38,-0.0,-0.0,-0.0,0.0005208333604969084,-0.00014880952949170023,-8.391708540259252e-21,-5.2028591010902804e-20,-0.00034722223062999547,3.3881317890172014e-21,2.397631069202184e-21,1.486531287139161e-20,9.920635056914762e-05,-7.52316384526264e-37,-9.4039548065783e-38,-1.88079096131566e-37,-0.0,-0.0,-0.0,0.00021701389050576836,2.0328790734103208e-20,-0.00021701389050576836,2.0328790734103208e-20,1.5429997733191165e-20,4.474891108779263e-22,-6.776263578034403e-21,-5.64237288394698e-37,-7.52316384526264e-37,3.100198591710068e-05,-3.3881317890172014e-21,-3.3881317890172014e-21,-0.0,0.0,-0.0,0.00037202381645329297,5.929230630780102e-21,-0.00010629251482896507,-0.00014880952949170023,-4.743384504624082e-20,3.415587374856818e-38,-1.6940658945086007e-21,-4.70197740328915e-38,-9.4039548065783e-38,-3.3881317890172014e-21,4.251700738677755e-05,1.3552527156068805e-20,-0.0,-0.0,-0.0,0.0005208333604969084,8.893845946170154e-21,-0.00014880952949170023,-4.743384504624082e-20,-0.00034722223062999547,6.831174749713636e-38,-2.541098841762901e-21,-9.4039548065783e-38,-1.88079096131566e-37,-3.3881317890172014e-21,1.3552527156068805e-20,9.920635056914762e-05,-0.0,-0.0,-0.0,0.00034877232974395156,-0.0,-0.0,-0.0005231584655120969,6.505213034913027e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00010463169746799394,-0.0,-2.168404344971009e-19,0.0006696428754366934,-0.0,-0.0,-0.0002678571327123791,-0.00044642857392318547,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-0.0,0.00017857142665889114,-0.0,0.0006510416860692203,0.0,-0.0,1.0842021724855044e-18,-0.001953125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-2.168404344971009e-19,-0.0,0.0006510416860692203,8.0,8.0,6.0,5.0,0.024351025000214577,-0.003811177331954241,-0.003811177331954241,-0.004817708395421505,-0.0055555556900799274,0.00017361111531499773,0.00023148147738538682,0.00029761905898340046,0.00034722223062999547,0.00017361111531499773,0.00029761905898340046,0.00034722223062999547,0.00027901786961592734,0.00044642857392318547,0.00037202381645329297,-0.003811177331954241,0.0019569634459912777,0.00023148147738538682,0.00029761905898340046,0.00034722223062999547,-0.00017361111531499773,-6.613756704609841e-05,-8.50340147735551e-05,-9.920635056914762e-05,2.0328790734103208e-20,2.964615315390051e-21,2.964615315390051e-21,-0.0,-0.0,-0.0,-0.003811177331954241,0.00023148147738538682,0.0019569634459912777,0.00029761905898340046,0.00034722223062999547,6.776263578034403e-21,-6.613756704609841e-05,-3.2149366073476847e-21,-4.123724363053072e-21,-0.00017361111531499773,-8.50340147735551e-05,-9.920635056914762e-05,-0.0,-0.0,-0.0,-0.004817708395421505,0.00029761905898340046,0.00029761905898340046,0.0034616815391927958,0.00044642857392318547,8.815128886451936e-21,-2.503213172011825e-22,-0.0001190476177725941,-3.2933498155156955e-20,6.776263578034403e-21,-0.0001190476177725941,-3.4202270430191124e-20,-0.0004185267898719758,-0.00017857142665889114,5.310378040437969e-19,-0.0055555556900799274,0.00034722223062999547,0.00034722223062999547,0.00044642857392318547,0.005009920801967382,6.776263578034403e-21,-1.1591089466888252e-21,-3.2933498155156955e-20,-0.00017361111531499773,5.052753204113825e-21,-3.4202270430191124e-20,-0.00017361111531499773,5.607759293420556e-19,-0.00022321428696159273,-0.0007440476329065859,0.00017361111531499773,-0.00017361111531499773,6.776263578034403e-21,8.815128886451936e-21,6.776263578034403e-21,2.4801587642286904e-05,-0.0,-1.6940658945086007e-21,-1.6940658945086007e-21,-3.3561682053667026e-22,7.496548815373903e-38,4.70197740328915e-38,-0.0,-0.0,-0.0,0.00023148147738538682,-6.613756704609841e-05,-6.613756704609841e-05,-2.503213172011825e-22,-1.1591089466888252e-21,-0.0,1.889644772745669e-05,9.185533740845933e-22,1.1782069031727659e-21,-5.082197683525802e-21,-8.470329472543003e-22,-8.470329472543003e-22,-0.0,-0.0,-0.0,0.00029761905898340046,-8.50340147735551e-05,-3.2149366073476847e-21,-0.0001190476177725941,-3.2933498155156955e-20,-1.6940658945086007e-21,9.185533740845933e-22,3.40136066370178e-05,9.409570439877092e-21,-2.82118644197349e-37,-4.70197740328915e-38,-0.0,-0.0,-0.0,-0.0,0.00034722223062999547,-9.920635056914762e-05,-4.123724363053072e-21,-3.2933498155156955e-20,-0.00017361111531499773,-1.6940658945086007e-21,1.1782069031727659e-21,9.409570439877092e-21,4.960317528457381e-05,-1.88079096131566e-37,-4.70197740328915e-38,-0.0,-0.0,-0.0,-0.0,0.00017361111531499773,2.0328790734103208e-20,-0.00017361111531499773,6.776263578034403e-21,5.052753204113825e-21,-3.3561682053667026e-22,-5.082197683525802e-21,-2.82118644197349e-37,-1.88079096131566e-37,2.4801587642286904e-05,-3.3881317890172014e-21,0.0,-0.0,0.0,-0.0,0.00029761905898340046,2.964615315390051e-21,-8.50340147735551e-05,-0.0001190476177725941,-3.4202270430191124e-20,7.496548815373903e-38,-8.470329472543003e-22,-4.70197740328915e-38,-4.70197740328915e-38,-3.3881317890172014e-21,3.40136066370178e-05,9.772077496567055e-21,-0.0,-0.0,-0.0,0.00034722223062999547,2.964615315390051e-21,-9.920635056914762e-05,-3.4202270430191124e-20,-0.00017361111531499773,4.70197740328915e-38,-8.470329472543003e-22,-0.0,-0.0,0.0,9.772077496567055e-21,4.960317528457381e-05,-0.0,-0.0,-0.0,0.00027901786961592734,-0.0,-0.0,-0.0004185267898719758,5.607759293420556e-19,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,8.370535942958668e-05,-5.437827185786784e-20,-1.0620756080875938e-19,0.00044642857392318547,-0.0,-0.0,-0.00017857142665889114,-0.00022321428696159273,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,-5.437827185786784e-20,8.928571332944557e-05,6.899658223534978e-35,0.00037202381645329297,-0.0,-0.0,5.310378040437969e-19,-0.0007440476329065859,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-1.0620756080875938e-19,6.899658223534978e-35,0.00018601190822664648,8.0,8.0,6.0,6.0,0.020931752398610115,-0.0032173169311136007,-0.0032173169311136007,-0.004067903384566307,-0.004067903384566307,0.00014467592700384557,0.00019290123600512743,0.00024801588733680546,0.00024801588733680546,0.00014467592700384557,0.00024801588733680546,0.00024801588733680546,0.0002325148816453293,0.0003188775444868952,0.0002325148816453293,-0.0032173169311136007,0.0016426130896434188,0.00019290123600512743,0.00024801588733680546,0.00024801588733680546,-0.00014467592700384557,-5.5114636779762805e-05,-7.086167897796258e-05,-7.086167897796258e-05,1.6940658945086007e-20,-2.2461579008343156e-20,-2.2461579008343156e-20,-7.3755249125561e-20,-5.394669683561683e-20,-7.3755249125561e-20,-0.0032173169311136007,0.00019290123600512743,0.0016426130896434188,0.00024801588733680546,0.00024801588733680546,3.3881317890172014e-21,-5.5114636779762805e-05,-2.6469861996640714e-20,-2.6469861996640714e-20,-0.00014467592700384557,-7.086167897796258e-05,-7.086167897796258e-05,-7.3755249125561e-20,-5.394669683561683e-20,-7.3755249125561e-20,-0.004067903384566307,0.00024801588733680546,0.00024801588733680546,0.0029059930238872766,0.0003188775444868952,8.962933298776804e-21,-6.972899111481176e-21,-9.920635056914762e-05,-1.738282414099968e-20,-6.776263578034403e-21,-9.920635056914762e-05,-1.802219274923769e-20,-0.00034877232974395156,-0.00012755101488437504,1.7148095163198992e-19,-0.004067903384566307,0.00024801588733680546,0.00024801588733680546,0.0003188775444868952,0.0029059930238872766,-6.776263578034403e-21,-6.972899111481176e-21,-1.738282414099968e-20,-9.920635056914762e-05,-4.378481855331983e-21,-1.802219274923769e-20,-9.920635056914762e-05,3.009530188675915e-19,-0.00012755101488437504,-0.00034877232974395156,0.00014467592700384557,-0.00014467592700384557,3.3881317890172014e-21,8.962933298776804e-21,-6.776263578034403e-21,2.066798879241105e-05,8.470329472543003e-22,1.6940658945086007e-21,3.3881317890172014e-21,-1.0627866320241878e-21,-1.131827424388629e-37,-2.4093457201394434e-37,-3.5194636681993667e-38,3.4825033562159667e-37,1.6892597832328114e-36,0.00019290123600512743,-5.5114636779762805e-05,-5.5114636779762805e-05,-6.972899111481176e-21,-6.972899111481176e-21,8.470329472543003e-22,1.5747040379210375e-05,1.5687404586421269e-21,1.5687404586421269e-21,-2.541098841762901e-21,4.235164736271502e-22,4.235164736271502e-22,1.2549491844713778e-36,9.698939567914143e-37,1.4740764807341942e-36,0.00024801588733680546,-7.086167897796258e-05,-2.6469861996640714e-20,-9.920635056914762e-05,-1.738282414099968e-20,1.6940658945086007e-21,1.5687404586421269e-21,2.8344671591185033e-05,-2.7401496779748436e-21,-1.88079096131566e-37,8.391708540259252e-21,7.52316384526264e-37,2.950210094269411e-20,1.0789339205564653e-20,-1.735734499246709e-35,0.00024801588733680546,-7.086167897796258e-05,-2.6469861996640714e-20,-1.738282414099968e-20,-9.920635056914762e-05,3.3881317890172014e-21,1.5687404586421269e-21,-2.7401496779748436e-21,2.8344671591185033e-05,-5.64237288394698e-37,7.52316384526264e-37,8.391708540259252e-21,-2.830918134706982e-35,1.0789339205564653e-20,2.950210094269411e-20,0.00014467592700384557,1.6940658945086007e-20,-0.00014467592700384557,-6.776263578034403e-21,-4.378481855331983e-21,-1.0627866320241878e-21,-2.541098841762901e-21,-1.88079096131566e-37,-5.64237288394698e-37,2.066798879241105e-05,1.6940658945086007e-21,1.6940658945086007e-21,-9.797541429888912e-38,0.0,0.0,0.00024801588733680546,-2.2461579008343156e-20,-7.086167897796258e-05,-9.920635056914762e-05,-1.802219274923769e-20,-1.131827424388629e-37,4.235164736271502e-22,8.391708540259252e-21,7.52316384526264e-37,1.6940658945086007e-21,2.8344671591185033e-05,-2.5574730193132946e-21,2.950210094269411e-20,1.0789339205564653e-20,-1.7167208207249733e-35,0.00024801588733680546,-2.2461579008343156e-20,-7.086167897796258e-05,-1.802219274923769e-20,-9.920635056914762e-05,-2.4093457201394434e-37,4.235164736271502e-22,7.52316384526264e-37,8.391708540259252e-21,1.6940658945086007e-21,-2.5574730193132946e-21,2.8344671591185033e-05,-2.811904743171172e-35,1.0789339205564653e-20,2.950210094269411e-20,0.0002325148816453293,-7.3755249125561e-20,-7.3755249125561e-20,-0.00034877232974395156,3.009530188675915e-19,-3.5194636681993667e-38,1.2549491844713778e-36,2.950210094269411e-20,-2.830918134706982e-35,-9.797541429888912e-38,2.950210094269411e-20,-2.811904743171172e-35,6.975446740398183e-05,1.3149507030564176e-21,-6.084807794364842e-20,0.0003188775444868952,-5.394669683561683e-20,-5.394669683561683e-20,-0.00012755101488437504,-0.00012755101488437504,3.4825033562159667e-37,9.698939567914143e-37,1.0789339205564653e-20,1.0789339205564653e-20,0.0,1.0789339205564653e-20,1.0789339205564653e-20,1.3149507030564176e-21,5.10204081365373e-05,5.310378040437969e-20,0.0002325148816453293,-7.3755249125561e-20,-7.3755249125561e-20,1.7148095163198992e-19,-0.00034877232974395156,1.6892597832328114e-36,1.4740764807341942e-36,-1.735734499246709e-35,2.950210094269411e-20,0.0,-1.7167208207249733e-35,2.950210094269411e-20,-6.084807794364842e-20,5.310378040437969e-20,6.975446740398183e-05,8.0,8.0,6.0,7.0,0.018363509327173233,-0.0027842733543366194,-0.0027842733543366194,-0.0035209397319704294,-0.0031090560369193554,0.00012400794366840273,0.0001653439103392884,0.00021258502965793014,0.00018601190822664648,0.00012400794366840273,0.00021258502965793014,0.00018601190822664648,0.00019929847621824592,0.00023915816564112902,0.0001550099259475246,-0.0027842733543366194,0.0014155464014038444,0.0001653439103392884,0.00021258502965793014,0.00018601190822664648,-0.00012400794366840273,-4.724111931864172e-05,-6.073858094168827e-05,-5.3146257414482534e-05,3.3881317890172014e-21,-1.5017617501677937e-20,-1.0606978192239388e-20,-6.321878404157393e-20,-2.0423355895811346e-20,-3.386725905093288e-20,-0.0027842733543366194,0.0001653439103392884,0.0014155464014038444,0.00021258502965793014,0.00018601190822664648,-0.0,-4.724111931864172e-05,-2.1113831987442914e-20,-1.5246593050577406e-20,-0.00012400794366840273,-6.073858094168827e-05,-5.3146257414482534e-05,-6.321878404157393e-20,-1.8959462700268428e-20,-3.9224142090137375e-20,-0.0035209397319704294,0.00021258502965793014,0.00021258502965793014,0.002504517324268818,0.00023915816564112902,1.506206432321524e-21,-1.6698433461230505e-22,-8.50340147735551e-05,4.944436164721994e-21,-0.0,-8.50340147735551e-05,8.910823343566664e-21,-0.00029894770705141127,-9.566326480126008e-05,1.9626581602470458e-19,-0.0031090560369193554,0.00018601190822664648,0.00018601190822664648,0.00023915816564112902,0.0018424036679789424,-3.3881317890172014e-21,-3.610441021505446e-21,-1.50922301622825e-20,-6.200397183420137e-05,-9.502972378848827e-22,-1.2589737390671098e-20,-6.200397183420137e-05,1.9990683243661572e-19,-7.97193861217238e-05,-0.00018601190822664648,0.00012400794366840273,-0.00012400794366840273,-0.0,1.506206432321524e-21,-3.3881317890172014e-21,1.7715419744490646e-05,-8.470329472543003e-22,-1.6940658945086007e-21,-0.0,6.815996520211791e-22,3.4143610144927795e-37,8.176851193834315e-38,-5.874192043081655e-37,-4.399111739389944e-37,-1.2140744774016693e-22,0.0001653439103392884,-4.724111931864172e-05,-4.724111931864172e-05,-1.6698433461230505e-22,-3.610441021505446e-21,-8.470329472543003e-22,1.3497462532541249e-05,8.947427499310878e-22,1.0768063942495204e-21,-2.541098841762901e-21,-8.470329472543003e-22,-0.0,-1.7396018453480259e-37,-5.871185529200476e-38,-2.436635930629377e-23,0.00021258502965793014,-6.073858094168827e-05,-2.1113831987442914e-20,-8.50340147735551e-05,-1.50922301622825e-20,-1.6940658945086007e-21,8.947427499310878e-22,2.4295432012877427e-05,-1.4679373130616382e-21,-3.291384182302405e-37,7.192892803709769e-21,-1.0814548027565045e-36,2.5287513939746998e-20,8.092004202225098e-21,-1.7303276844104072e-35,0.00018601190822664648,-5.3146257414482534e-05,-1.5246593050577406e-20,4.944436164721994e-21,-6.200397183420137e-05,-0.0,1.0768063942495204e-21,-1.4679373130616382e-21,1.7715419744490646e-05,1.1501035377867628e-22,-1.0579449157400588e-36,3.535659128148607e-21,-1.8517613305012308e-35,6.444815628635449e-23,1.1623923246158744e-20,0.00012400794366840273,3.3881317890172014e-21,-0.00012400794366840273,-0.0,-9.502972378848827e-22,6.815996520211791e-22,-2.541098841762901e-21,-3.291384182302405e-37,1.1501035377867628e-22,1.7715419744490646e-05,-0.0,-8.470329472543003e-22,-7.811298611289355e-37,-1.88079096131566e-37,5.762837676789449e-22,0.00021258502965793014,-1.5017617501677937e-20,-6.073858094168827e-05,-8.50340147735551e-05,-1.2589737390671098e-20,3.4143610144927795e-37,-8.470329472543003e-22,7.192892803709769e-21,-1.0579449157400588e-36,-0.0,2.4295432012877427e-05,-2.1829352910824087e-21,2.5287513939746998e-20,8.092004202225098e-21,-1.786208866357731e-35,0.00018601190822664648,-1.0606978192239388e-20,-5.3146257414482534e-05,8.910823343566664e-21,-6.200397183420137e-05,8.176851193834315e-38,-0.0,-1.0814548027565045e-36,3.535659128148607e-21,-8.470329472543003e-22,-2.1829352910824087e-21,1.7715419744490646e-05,-1.6739039555709374e-35,-4.235164736271502e-22,1.1648710391760491e-20,0.00019929847621824592,-6.321878404157393e-20,-6.321878404157393e-20,-0.00029894770705141127,1.9990683243661572e-19,-5.874192043081655e-37,-1.7396018453480259e-37,2.5287513939746998e-20,-1.8517613305012308e-35,-7.811298611289355e-37,2.5287513939746998e-20,-1.6739039555709374e-35,5.9789541410282254e-05,1.2083819510866888e-20,-3.8352729933032635e-20,0.00023915816564112902,-2.0423355895811346e-20,-1.8959462700268428e-20,-9.566326480126008e-05,-7.97193861217238e-05,-4.399111739389944e-37,-5.871185529200476e-38,8.092004202225098e-21,6.444815628635449e-23,-1.88079096131566e-37,8.092004202225098e-21,-4.235164736271502e-22,1.2083819510866888e-20,3.188775372109376e-05,-1.5007214130277627e-21,0.0001550099259475246,-3.386725905093288e-20,-3.9224142090137375e-20,1.9626581602470458e-19,-0.00018601190822664648,-1.2140744774016693e-22,-2.436635930629377e-23,-1.7303276844104072e-35,1.1623923246158744e-20,5.762837676789449e-22,-1.786208866357731e-35,1.1648710391760491e-20,-3.8352729933032635e-20,-1.5007214130277627e-21,3.100198591710068e-05,8.0,8.0,6.0,8.0,0.01636129803955555,-0.0024543236941099167,-0.0024543236941099167,-0.0031040736939758062,-0.0024543236941099167,0.00010850694525288418,0.00014467592700384557,0.00018601190822664648,0.00014467592700384557,0.00010850694525288418,0.00018601190822664648,0.00014467592700384557,0.00017438616487197578,0.00018601190822664648,0.00010850694525288418,-0.0024543236941099167,0.0012437701225280762,0.00014467592700384557,0.00018601190822664648,0.00014467592700384557,-0.00010850694525288418,-4.13359775848221e-05,-5.3146257414482534e-05,-4.13359775848221e-05,1.0164395367051604e-20,1.4823076576950256e-21,3.338339797447414e-21,-4.0496345748101027e-35,1.6606602377823893e-20,9.914152229121573e-21,-0.0024543236941099167,0.00014467592700384557,0.0012437701225280762,0.00018601190822664648,0.00014467592700384557,-0.0,-4.13359775848221e-05,-3.396643913728898e-21,-8.470329472543003e-22,-0.00010850694525288418,-5.3146257414482534e-05,-4.13359775848221e-05,-4.607937855223367e-35,1.7787691892340307e-20,1.0555948257028255e-20,-0.0031040736939758062,0.00018601190822664648,0.00018601190822664648,0.002200753428041935,0.00018601190822664648,3.0617341145116977e-21,-1.9143362560338726e-21,-7.440476474585012e-05,2.6204211408111532e-21,3.3881317890172014e-21,-7.440476474585012e-05,3.801511261172742e-21,-0.00026157923275604844,-7.440476474585012e-05,1.7246474079895397e-19,-0.0024543236941099167,0.00014467592700384557,0.00014467592700384557,0.00018601190822664648,0.0012437701225280762,-3.3881317890172014e-21,-2.36022679392991e-21,-1.3986181438961132e-20,-4.13359775848221e-05,2.3209950876608118e-21,-1.3986181438961132e-20,-4.13359775848221e-05,2.6162039979493603e-19,-5.3146257414482534e-05,-0.00010850694525288418,0.00010850694525288418,-0.00010850694525288418,-0.0,3.0617341145116977e-21,-3.3881317890172014e-21,1.550099295855034e-05,-8.470329472543003e-22,-0.0,-8.470329472543003e-22,1.9476821764258082e-22,1.5525392062809303e-39,6.654495115695863e-38,-0.0,-4.215696792329363e-37,1.490777221783164e-22,0.00014467592700384557,-4.13359775848221e-05,-4.13359775848221e-05,-1.9143362560338726e-21,-2.36022679392991e-21,-8.470329472543003e-22,1.181027982966043e-05,9.704696607870578e-22,8.484615301774449e-22,-3.3881317890172014e-21,-4.235164736271502e-22,-2.117582368135751e-22,0.0,-3.5855721092794942e-37,1.740298154399022e-23,0.00018601190822664648,-5.3146257414482534e-05,-3.396643913728898e-21,-7.440476474585012e-05,-1.3986181438961132e-20,-0.0,9.704696607870578e-22,2.1258503693388775e-05,3.99605178200364e-21,-1.88079096131566e-37,2.350988701644575e-38,-2.350988701644575e-37,0.0,-1.605401419606325e-36,-4.897114380159624e-37,0.00014467592700384557,-4.13359775848221e-05,-8.470329472543003e-22,2.6204211408111532e-21,-4.13359775848221e-05,-8.470329472543003e-22,8.484615301774449e-22,3.99605178200364e-21,1.181027982966043e-05,6.268349337403681e-23,-3.76158192263132e-37,-7.420531050359158e-22,1.157038429446749e-35,-4.7447435365211124e-21,-3.1725125009020146e-21,0.00010850694525288418,1.0164395367051604e-20,-0.00010850694525288418,3.3881317890172014e-21,2.3209950876608118e-21,1.9476821764258082e-22,-3.3881317890172014e-21,-1.88079096131566e-37,6.268349337403681e-23,1.550099295855034e-05,-0.0,-1.6940658945086007e-21,0.0,3.76158192263132e-37,5.417279413399574e-24,0.00018601190822664648,1.4823076576950256e-21,-5.3146257414482534e-05,-7.440476474585012e-05,-1.3986181438961132e-20,1.5525392062809303e-39,-4.235164736271502e-22,2.350988701644575e-38,-3.76158192263132e-37,-0.0,2.1258503693388775e-05,3.99605178200364e-21,0.0,-1.7188672243349816e-36,-5.784319261604735e-37,0.00014467592700384557,3.338339797447414e-21,-4.13359775848221e-05,3.801511261172742e-21,-4.13359775848221e-05,6.654495115695863e-38,-2.117582368135751e-22,-2.350988701644575e-37,-7.420531050359158e-22,-1.6940658945086007e-21,3.99605178200364e-21,1.181027982966043e-05,1.316553672920962e-35,-5.082197683525802e-21,-3.0451072995232416e-21,0.00017438616487197578,-4.0496345748101027e-35,-4.607937855223367e-35,-0.00026157923275604844,2.6162039979493603e-19,-0.0,0.0,0.0,1.157038429446749e-35,0.0,0.0,1.316553672920962e-35,5.231584873399697e-05,-3.236801680890039e-20,-2.581433751706378e-20,0.00018601190822664648,1.6606602377823893e-20,1.7787691892340307e-20,-7.440476474585012e-05,-5.3146257414482534e-05,-4.215696792329363e-37,-3.5855721092794942e-37,-1.605401419606325e-36,-4.7447435365211124e-21,3.76158192263132e-37,-1.7188672243349816e-36,-5.082197683525802e-21,-3.236801680890039e-20,2.1258503693388775e-05,-1.2398016473285626e-20,0.00010850694525288418,9.914152229121573e-21,1.0555948257028255e-20,1.7246474079895397e-19,-0.00010850694525288418,1.490777221783164e-22,1.740298154399022e-23,-4.897114380159624e-37,-3.1725125009020146e-21,5.417279413399574e-24,-5.784319261604735e-37,-3.0451072995232416e-21,-2.581433751706378e-20,-1.2398016473285626e-20,1.550099295855034e-05,8.0,8.0,7.0,3.0,0.031983714550733566,-0.005249669309705496,-0.005249669309705496,-0.005859375,-0.011067708022892475,0.00024801588733680546,0.0003306878206785768,0.00037202381645329297,0.0007440476329065859,0.00024801588733680546,0.00037202381645329297,0.0007440476329065859,0.0003100198518950492,0.0008370535797439516,0.0011160714784637094,-0.005249669309705496,0.0027399847749620676,0.0003306878206785768,0.00037202381645329297,0.0007440476329065859,-0.00024801588733680546,-9.448223863728344e-05,-0.00010629251482896507,-0.00021258502965793014,2.0328790734103208e-20,-2.2908022278987377e-20,-4.020073984962813e-23,-8.809142651444724e-20,-0.0,0.0,-0.005249669309705496,0.0003306878206785768,0.0027399847749620676,0.00037202381645329297,0.0007440476329065859,-0.0,-9.448223863728344e-05,-3.750894108474319e-20,-1.4842478162841173e-20,-0.00024801588733680546,-0.00010629251482896507,-0.00021258502965793014,-8.822309686585948e-20,-0.0,-0.0,-0.005859375,0.00037202381645329297,0.00037202381645329297,0.0035652280785143375,0.0008370535797439516,-5.9476168201573675e-21,-5.2509150635053435e-21,-0.00012400794366840273,-3.920183083181832e-20,6.776263578034403e-21,-0.00012400794366840273,-4.1812819972993414e-20,-0.00037202381645329297,-0.00027901786961592734,-0.0,-0.011067708022892475,0.0007440476329065859,0.0007440476329065859,0.0008370535797439516,0.0222284235060215,-0.0,-1.4842478162841173e-20,-3.924873132631522e-20,-0.0007440476329065859,-3.7986843875852136e-21,-4.1504614415460717e-20,-0.0007440476329065859,-0.0,-0.0008370535797439516,-0.0066964286379516125,0.00024801588733680546,-0.00024801588733680546,-0.0,-5.9476168201573675e-21,-0.0,3.543083948898129e-05,-0.0,1.6940658945086007e-21,-0.0,3.8397831067359165e-22,1.2272740106372467e-37,2.7342836285137993e-40,-7.131470705234067e-22,-0.0,-0.0,0.0003306878206785768,-9.448223863728344e-05,-9.448223863728344e-05,-5.2509150635053435e-21,-1.4842478162841173e-20,-0.0,2.6994925065082498e-05,2.1270484970500113e-21,4.240707815727887e-21,-6.776263578034403e-21,-1.6940658945086007e-21,-0.0,5.746886278197156e-22,-0.0,-0.0,0.00037202381645329297,-0.00010629251482896507,-3.750894108474319e-20,-0.00012400794366840273,-3.924873132631522e-20,1.6940658945086007e-21,2.1270484970500113e-21,3.543083948898129e-05,1.1200523094805234e-20,1.6028912695928776e-22,9.612417098060115e-21,1.340024609063544e-23,3.049318610115481e-20,-0.0,-0.0,0.0007440476329065859,-0.00021258502965793014,-1.4842478162841173e-20,-3.920183083181832e-20,-0.0007440476329065859,-0.0,4.240707815727887e-21,1.1200523094805234e-20,0.00021258502965793014,-7.52316384526264e-37,2.445028249710358e-36,1.88079096131566e-37,9.780112998841432e-36,-0.0,-0.0,0.00024801588733680546,2.0328790734103208e-20,-0.00024801588733680546,6.776263578034403e-21,-3.7986843875852136e-21,3.8397831067359165e-22,-6.776263578034403e-21,1.6028912695928776e-22,-7.52316384526264e-37,3.543083948898129e-05,-1.6940658945086007e-21,3.3881317890172014e-21,-1.335165838043445e-21,0.0,-0.0,0.00037202381645329297,-2.2908022278987377e-20,-0.00010629251482896507,-0.00012400794366840273,-4.1504614415460717e-20,1.2272740106372467e-37,-1.6940658945086007e-21,9.612417098060115e-21,2.445028249710358e-36,-1.6940658945086007e-21,3.543083948898129e-05,1.1858461261560205e-20,3.20935317860263e-20,-0.0,-0.0,0.0007440476329065859,-4.020073984962813e-23,-0.00021258502965793014,-4.1812819972993414e-20,-0.0007440476329065859,2.7342836285137993e-40,-0.0,1.340024609063544e-23,1.88079096131566e-37,3.3881317890172014e-21,1.1858461261560205e-20,0.00021258502965793014,4.020073984962813e-23,-0.0,-0.0,0.0003100198518950492,-8.809142651444724e-20,-8.822309686585948e-20,-0.00037202381645329297,-0.0,-7.131470705234067e-22,5.746886278197156e-22,3.049318610115481e-20,9.780112998841432e-36,-1.335165838043445e-21,3.20935317860263e-20,4.020073984962813e-23,6.200397183420137e-05,0.0,-0.0,0.0008370535797439516,-0.0,-0.0,-0.00027901786961592734,-0.0008370535797439516,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,0.00027901786961592734,-0.0,0.0011160714784637094,0.0,-0.0,-0.0,-0.0066964286379516125,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0033482143189758062,8.0,8.0,7.0,4.0,0.0255921371281147,-0.0040488592348992825,-0.0040488592348992825,-0.004520089365541935,-0.0069754463620483875,0.00018601190822664648,0.00024801588733680546,0.00027901786961592734,0.00044642857392318547,0.00018601190822664648,0.00027901786961592734,0.00044642857392318547,0.0002325148816453293,0.0005022321711294353,0.0005580357392318547,-0.0040488592348992825,0.0020868764258921146,0.00024801588733680546,0.00027901786961592734,0.00044642857392318547,-0.00018601190822664648,-7.086167897796258e-05,-7.97193861217238e-05,-0.00012755101488437504,-3.3881317890172014e-20,-1.6846370048777765e-20,-1.0086467673109587e-22,-4.743384504624082e-20,-5.243103295816189e-21,0.0,-0.0040488592348992825,0.00024801588733680546,0.0020868764258921146,0.00027901786961592734,0.00044642857392318547,-6.776263578034403e-21,-7.086167897796258e-05,-3.874533376243988e-21,2.3976309884228273e-20,-0.00018601190822664648,-7.97193861217238e-05,-0.00012755101488437504,-5.811820743881296e-20,-3.3881317890172014e-21,-0.0,-0.004520089365541935,0.00027901786961592734,0.00027901786961592734,0.00271577388048172,0.0005022321711294353,8.340235126379866e-21,1.591575470115153e-20,-9.300595411332324e-05,2.3376902823747098e-20,-0.0,-9.300595411332324e-05,2.613582966318561e-20,-0.00027901786961592734,-0.00016741071885917336,-0.0,-0.0069754463620483875,0.00044642857392318547,0.00044642857392318547,0.0005022321711294353,0.008556547574698925,6.776263578034403e-21,2.3838390441782127e-20,1.8177029004562825e-20,-0.00029761905898340046,6.520341247431955e-21,2.414043899674756e-20,-0.00029761905898340046,1.3552527156068805e-20,-0.0003348214377183467,-0.0016741071594879031,0.00018601190822664648,-0.00018601190822664648,-6.776263578034403e-21,8.340235126379866e-21,6.776263578034403e-21,2.6573128707241267e-05,1.6940658945086007e-21,-0.0,-0.0,-2.4513005708675097e-22,1.5578603849654802e-37,-2.390965504754219e-40,-4.7670589347822e-22,-0.0,-0.0,0.00024801588733680546,-7.086167897796258e-05,-7.086167897796258e-05,1.591575470115153e-20,2.3838390441782127e-20,1.6940658945086007e-21,2.0246194253559224e-05,-4.260922849740719e-21,-6.850374598833892e-21,1.0164395367051604e-20,-4.235164736271502e-22,-0.0,6.320364301139058e-23,4.597307175140184e-23,-0.0,0.00027901786961592734,-7.97193861217238e-05,-3.874533376243988e-21,-9.300595411332324e-05,1.8177029004562825e-20,-0.0,-4.260922849740719e-21,2.6573128707241267e-05,-6.6791146886023875e-21,5.39729228130226e-23,6.109559639387714e-21,3.362155785855075e-23,1.6940658945086007e-20,1.6940658945086007e-21,-0.0,0.00044642857392318547,-0.00012755101488437504,2.3976309884228273e-20,2.3376902823747098e-20,-0.00029761905898340046,-0.0,-6.850374598833892e-21,-6.6791146886023875e-21,8.50340147735551e-05,-3.76158192263132e-36,-1.504632769052528e-36,-3.76158192263132e-37,-4.513898307157584e-36,-0.0,-0.0,0.00018601190822664648,-3.3881317890172014e-20,-0.00018601190822664648,-0.0,6.520341247431955e-21,-2.4513005708675097e-22,1.0164395367051604e-20,5.39729228130226e-23,-3.76158192263132e-36,2.6573128707241267e-05,-0.0,0.0,2.816938231526173e-22,1.206793101919862e-22,-0.0,0.00027901786961592734,-1.6846370048777765e-20,-7.97193861217238e-05,-9.300595411332324e-05,2.414043899674756e-20,1.5578603849654802e-37,-4.235164736271502e-22,6.109559639387714e-21,-1.504632769052528e-36,-0.0,2.6573128707241267e-05,-7.623296525288703e-21,1.8537624821673392e-20,8.470329472543003e-22,-0.0,0.00044642857392318547,-1.0086467673109587e-22,-0.00012755101488437504,2.613582966318561e-20,-0.00029761905898340046,-2.390965504754219e-40,-0.0,3.362155785855075e-23,-3.76158192263132e-37,0.0,-7.623296525288703e-21,8.50340147735551e-05,1.0086467673109587e-22,-1.5172508888914017e-22,-0.0,0.0002325148816453293,-4.743384504624082e-20,-5.811820743881296e-20,-0.00027901786961592734,1.3552527156068805e-20,-4.7670589347822e-22,6.320364301139058e-23,1.6940658945086007e-20,-4.513898307157584e-36,2.816938231526173e-22,1.8537624821673392e-20,1.0086467673109587e-22,4.650297705666162e-05,-1.3682839606495018e-21,-0.0,0.0005022321711294353,-5.243103295816189e-21,-3.3881317890172014e-21,-0.00016741071885917336,-0.0003348214377183467,-0.0,4.597307175140184e-23,1.6940658945086007e-21,-0.0,1.206793101919862e-22,8.470329472543003e-22,-1.5172508888914017e-22,-1.3682839606495018e-21,0.00011160714348079637,-0.0,0.0005580357392318547,0.0,-0.0,-0.0,-0.0016741071594879031,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0005580357392318547,8.0,8.0,7.0,5.0,0.021371882408857346,-0.0032986111473292112,-0.0032986111473292112,-0.0036830357275903225,-0.0048097362741827965,0.00014880952949170023,0.00019841270113829523,0.00022321428696159273,0.00029761905898340046,0.00014880952949170023,0.00022321428696159273,0.00029761905898340046,0.00018601190822664648,0.0003348214377183467,0.0003188775444868952,-0.0032986111473292112,0.0016865079523995519,0.00019841270113829523,0.00022321428696159273,0.00029761905898340046,-0.00014880952949170023,-5.668934318237007e-05,-6.377550744218752e-05,-8.50340147735551e-05,-3.7269449679189215e-20,-1.6697992910813932e-20,2.5860875718090325e-36,-4.743384504624082e-20,-0.0,0.0,-0.0032986111473292112,0.00019841270113829523,0.0016865079523995519,0.00022321428696159273,0.00029761905898340046,-6.776263578034403e-21,-5.668934318237007e-05,-4.931345062176062e-21,1.618497775673053e-20,-0.00014880952949170023,-6.377550744218752e-05,-8.50340147735551e-05,-4.47785048070661e-20,-0.0,-0.0,-0.0036830357275903225,0.00022321428696159273,0.00022321428696159273,0.0021949405781924725,0.0003348214377183467,-7.836229293948618e-21,9.33435678085872e-21,-7.440476474585012e-05,1.3330602029421644e-20,-3.3881317890172014e-21,-7.440476474585012e-05,1.4423288231558587e-20,-0.00022321428696159273,-0.00011160714348079637,-0.0,-0.0048097362741827965,0.00029761905898340046,0.00029761905898340046,0.0003348214377183467,0.00431813346222043,-0.0,1.618497775673053e-20,1.3330602029421644e-20,-0.00014880952949170023,3.5590374817696004e-22,1.4423288231558587e-20,-0.00014880952949170023,-0.0,-0.00016741071885917336,-0.0006377550889737904,0.00014880952949170023,-0.00014880952949170023,-6.776263578034403e-21,-7.836229293948618e-21,-0.0,2.1258503693388775e-05,1.6940658945086007e-21,1.6940658945086007e-21,-0.0,-1.8326234686290855e-22,4.024386593409145e-37,-0.0,9.118342481689297e-22,-0.0,-0.0,0.00019841270113829523,-5.668934318237007e-05,-5.668934318237007e-05,9.33435678085872e-21,1.618497775673053e-20,1.6940658945086007e-21,1.6196954675251618e-05,-3.022756459319404e-21,-4.624279705263109e-21,1.1011428314305904e-20,4.235164736271502e-22,-0.0,-3.6464038270228275e-23,-0.0,-0.0,0.00022321428696159273,-6.377550744218752e-05,-4.931345062176062e-21,-7.440476474585012e-05,1.3330602029421644e-20,1.6940658945086007e-21,-3.022756459319404e-21,2.1258503693388775e-05,-3.8087434369776126e-21,3.900279461162123e-23,5.071895488269752e-21,-9.874152546907215e-37,1.3552527156068805e-20,-0.0,-0.0,0.00029761905898340046,-8.50340147735551e-05,1.618497775673053e-20,1.3330602029421644e-20,-0.00014880952949170023,-0.0,-4.624279705263109e-21,-3.8087434369776126e-21,4.251700738677755e-05,-3.009265538105056e-36,-1.034435028723613e-36,1.88079096131566e-37,-2.633107345841924e-36,-0.0,-0.0,0.00014880952949170023,-3.7269449679189215e-20,-0.00014880952949170023,-3.3881317890172014e-21,3.5590374817696004e-22,-1.8326234686290855e-22,1.1011428314305904e-20,3.900279461162123e-23,-3.009265538105056e-36,2.1258503693388775e-05,1.6940658945086007e-21,0.0,-3.704695031229015e-22,0.0,-0.0,0.00022321428696159273,-1.6697992910813932e-20,-6.377550744218752e-05,-7.440476474585012e-05,1.4423288231558587e-20,4.024386593409145e-37,4.235164736271502e-22,5.071895488269752e-21,-1.034435028723613e-36,1.6940658945086007e-21,2.1258503693388775e-05,-4.120939494731025e-21,1.5903704036719824e-20,-0.0,-0.0,0.00029761905898340046,2.5860875718090325e-36,-8.50340147735551e-05,1.4423288231558587e-20,-0.00014880952949170023,-0.0,-0.0,-9.874152546907215e-37,1.88079096131566e-37,0.0,-4.120939494731025e-21,4.251700738677755e-05,-3.009265538105056e-36,-0.0,-0.0,0.00018601190822664648,-4.743384504624082e-20,-4.47785048070661e-20,-0.00022321428696159273,-0.0,9.118342481689297e-22,-3.6464038270228275e-23,1.3552527156068805e-20,-2.633107345841924e-36,-3.704695031229015e-22,1.5903704036719824e-20,-3.009265538105056e-36,3.720238237292506e-05,0.0,-0.0,0.0003348214377183467,-0.0,-0.0,-0.00011160714348079637,-0.00016741071885917336,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,5.5803571740398183e-05,-0.0,0.0003188775444868952,0.0,-0.0,-0.0,-0.0006377550889737904,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0001594387722434476,8.0,8.0,7.0,6.0,0.018363509327173233,-0.0027842733543366194,-0.0027842733543366194,-0.0031090560369193554,-0.0035209397319704294,0.00012400794366840273,0.0001653439103392884,0.00018601190822664648,0.00021258502965793014,0.00012400794366840273,0.00018601190822664648,0.00021258502965793014,0.0001550099259475246,0.00023915816564112902,0.00019929847621824592,-0.0027842733543366194,0.0014155464014038444,0.0001653439103392884,0.00018601190822664648,0.00021258502965793014,-0.00012400794366840273,-4.724111931864172e-05,-5.3146257414482534e-05,-6.073858094168827e-05,1.0164395367051604e-20,-9.262773346130206e-21,-1.3535309036189345e-20,-3.7269449679189215e-20,-1.8959462700268428e-20,-6.321878404157393e-20,-0.0027842733543366194,0.0001653439103392884,0.0014155464014038444,0.00018601190822664648,0.00021258502965793014,-0.0,-4.724111931864172e-05,-1.6693658290533698e-20,-2.1113831987442914e-20,-0.00012400794366840273,-5.3146257414482534e-05,-6.073858094168827e-05,-3.7929113293003183e-20,-1.8959462700268428e-20,-6.321878404157393e-20,-0.0031090560369193554,0.00018601190822664648,0.00018601190822664648,0.0018424036679789424,0.00023915816564112902,-9.385959441708818e-22,-3.735944676827627e-21,-6.200397183420137e-05,-3.2971868349586905e-20,-0.0,-6.200397183420137e-05,-3.0505571192123233e-20,-0.00018601190822664648,-7.97193861217238e-05,-8.297465526625613e-20,-0.0035209397319704294,0.00021258502965793014,0.00021258502965793014,0.00023915816564112902,0.002504517324268818,-0.0,1.3153232978391716e-21,-1.147130842314271e-20,-8.50340147735551e-05,2.9599967556710356e-21,-9.005012073472605e-21,-8.50340147735551e-05,1.3552527156068805e-20,-9.566326480126008e-05,-0.00029894770705141127,0.00012400794366840273,-0.00012400794366840273,-0.0,-9.385959441708818e-22,-0.0,1.7715419744490646e-05,-0.0,8.470329472543003e-22,-0.0,1.1993078847801458e-22,1.1575080684613542e-37,2.984085706893093e-37,1.3460327314898883e-22,3.073203580861311e-37,-8.840410409827466e-37,0.0001653439103392884,-4.724111931864172e-05,-4.724111931864172e-05,-3.735944676827627e-21,1.3153232978391716e-21,-0.0,1.3497462532541249e-05,1.1328047647683523e-21,8.947427499310878e-22,-3.3881317890172014e-21,-4.235164736271502e-22,-1.2705494208814505e-21,1.9283625310948387e-22,1.7107365543333376e-37,-3.3287194817548583e-37,0.00018601190822664648,-5.3146257414482534e-05,-1.6693658290533698e-20,-6.200397183420137e-05,-1.147130842314271e-20,8.470329472543003e-22,1.1328047647683523e-21,1.7715419744490646e-05,3.6405309279774125e-21,2.6200615212125683e-22,3.581693667941744e-21,1.692711865184094e-36,1.1858461261560205e-20,-4.235164736271502e-22,3.093375373148756e-36,0.00021258502965793014,-6.073858094168827e-05,-2.1113831987442914e-20,-3.2971868349586905e-20,-8.50340147735551e-05,-0.0,8.947427499310878e-22,3.6405309279774125e-21,2.4295432012877427e-05,-4.231779662960235e-37,1.6456920911512025e-36,7.192892803709769e-21,3.009265538105056e-36,8.092004202225098e-21,2.5287513939746998e-20,0.00012400794366840273,1.0164395367051604e-20,-0.00012400794366840273,-0.0,2.9599967556710356e-21,1.1993078847801458e-22,-3.3881317890172014e-21,2.6200615212125683e-22,-4.231779662960235e-37,1.7715419744490646e-05,-0.0,-1.6940658945086007e-21,2.501174502997244e-22,0.0,-1.504632769052528e-36,0.00018601190822664648,-9.262773346130206e-21,-5.3146257414482534e-05,-6.200397183420137e-05,-9.005012073472605e-21,1.1575080684613542e-37,-4.235164736271502e-22,3.581693667941744e-21,1.6456920911512025e-36,-0.0,1.7715419744490646e-05,2.9358746261232765e-21,1.1786814011139901e-20,-4.235164736271502e-22,2.6193221562770365e-36,0.00021258502965793014,-1.3535309036189345e-20,-6.073858094168827e-05,-3.0505571192123233e-20,-8.50340147735551e-05,2.984085706893093e-37,-1.2705494208814505e-21,1.692711865184094e-36,7.192892803709769e-21,-1.6940658945086007e-21,2.9358746261232765e-21,2.4295432012877427e-05,1.504632769052528e-36,8.092004202225098e-21,2.5287513939746998e-20,0.0001550099259475246,-3.7269449679189215e-20,-3.7929113293003183e-20,-0.00018601190822664648,1.3552527156068805e-20,1.3460327314898883e-22,1.9283625310948387e-22,1.1858461261560205e-20,3.009265538105056e-36,2.501174502997244e-22,1.1786814011139901e-20,1.504632769052528e-36,3.100198591710068e-05,-1.2379712073007014e-21,-2.3957943792622824e-36,0.00023915816564112902,-1.8959462700268428e-20,-1.8959462700268428e-20,-7.97193861217238e-05,-9.566326480126008e-05,3.073203580861311e-37,1.7107365543333376e-37,-4.235164736271502e-22,8.092004202225098e-21,0.0,-4.235164736271502e-22,8.092004202225098e-21,-1.2379712073007014e-21,3.188775372109376e-05,3.3189862752737306e-20,0.00019929847621824592,-6.321878404157393e-20,-6.321878404157393e-20,-8.297465526625613e-20,-0.00029894770705141127,-8.840410409827466e-37,-3.3287194817548583e-37,3.093375373148756e-36,2.5287513939746998e-20,-1.504632769052528e-36,2.6193221562770365e-36,2.5287513939746998e-20,-2.3957943792622824e-36,3.3189862752737306e-20,5.9789541410282254e-05,8.0,8.0,7.0,7.0,0.01610553078353405,-0.002409297041594982,-0.002409297041594982,-0.002690529450774193,-0.002690529450774193,0.00010629251482896507,0.00014172335795592517,0.0001594387722434476,0.0001594387722434476,0.00010629251482896507,0.0001594387722434476,0.0001594387722434476,0.00013286565081216395,0.00017936862423084676,0.00013286565081216395,-0.002409297041594982,0.0012198331532999873,0.00014172335795592517,0.0001594387722434476,0.0001594387722434476,-0.00010629251482896507,-4.049238850711845e-05,-4.5553937525255606e-05,-4.5553937525255606e-05,-1.9186540903637854e-19,-6.387921667486363e-20,-6.318964531202704e-20,-3.243847967239284e-19,-1.3470722870896432e-19,-3.339036034722765e-19,-0.002409297041594982,0.00014172335795592517,0.0012198331532999873,0.0001594387722434476,0.0001594387722434476,-2.879912020664621e-19,-4.049238850711845e-05,-6.426784292874723e-20,-6.183340514956392e-20,-0.00010629251482896507,-4.5553937525255606e-05,-4.5553937525255606e-05,-3.3533224778773214e-19,-1.3696572904926673e-19,-3.2848593235157215e-19,-0.002690529450774193,0.0001594387722434476,0.0001594387722434476,0.0015877444529905915,0.00017936862423084676,-3.9969928130415185e-19,1.3475051351945557e-19,-5.3146257414482534e-05,-1.3858963968807317e-19,-4.0657581468206416e-19,-5.3146257414482534e-05,-1.3976043629695956e-19,-0.0001594387722434476,-5.9789541410282254e-05,-1.7532429125185271e-19,-0.002690529450774193,0.0001594387722434476,0.0001594387722434476,0.00017936862423084676,0.0015877444529905915,-4.092624973116364e-19,1.3629510529233643e-19,-1.3066346581161935e-19,-5.3146257414482534e-05,-4.0590228286829286e-19,-1.31357224776307e-19,-5.3146257414482534e-05,-6.437450399132683e-20,-5.9789541410282254e-05,-0.0001594387722434476,0.00010629251482896507,-0.00010629251482896507,-2.879912020664621e-19,-3.9969928130415185e-19,-4.092624973116364e-19,1.5184645235422067e-05,1.6093625997831706e-20,2.202285662861181e-20,2.202285662861181e-20,2.3602850762357652e-20,1.2924729382883735e-20,1.2924729382883735e-20,3.8444204476553636e-20,1.7701259596264185e-20,3.927792175465039e-20,0.00014172335795592517,-4.049238850711845e-05,-4.049238850711845e-05,1.3475051351945557e-19,1.3629510529233643e-19,1.6093625997831706e-20,1.1569253729248885e-05,-8.911789464672732e-21,-8.98871806943373e-21,-1.157453636306278e-20,-9.317362419797304e-21,-9.317362419797304e-21,-5.8514728259226335e-21,-8.188337624051281e-21,-6.047678613191791e-21,0.0001594387722434476,-4.5553937525255606e-05,-6.426784292874723e-20,-5.3146257414482534e-05,-1.3066346581161935e-19,2.202285662861181e-20,-8.911789464672732e-21,1.5184645235422067e-05,3.394939873199425e-21,1.2792099372713954e-20,4.7515972610398684e-21,1.74069497036701e-21,1.1850229845113022e-20,7.623296525288703e-21,1.7470926954172247e-20,0.0001594387722434476,-4.5553937525255606e-05,-6.183340514956392e-20,-1.3858963968807317e-19,-5.3146257414482534e-05,2.202285662861181e-20,-8.98871806943373e-21,3.394939873199425e-21,1.5184645235422067e-05,1.2590159866706611e-20,1.7495867580551714e-21,4.530632197047023e-21,1.7317808067970438e-20,1.0586736501038847e-20,1.299480224364206e-20,0.00010629251482896507,-1.9186540903637854e-19,-0.00010629251482896507,-4.0657581468206416e-19,-4.0590228286829286e-19,2.3602850762357652e-20,-1.157453636306278e-20,1.2792099372713954e-20,1.2590159866706611e-20,1.5184645235422067e-05,2.286988957586611e-20,2.286988957586611e-20,3.969598400611352e-20,1.7701259596264185e-20,3.936689213811386e-20,0.0001594387722434476,-6.387921667486363e-20,-4.5553937525255606e-05,-5.3146257414482534e-05,-1.31357224776307e-19,1.2924729382883735e-20,-9.317362419797304e-21,4.7515972610398684e-21,1.7495867580551714e-21,2.286988957586611e-20,1.5184645235422067e-05,3.481908544203999e-21,1.2354027266803998e-20,8.046812998915853e-21,1.7330572821915324e-20,0.0001594387722434476,-6.318964531202704e-20,-4.5553937525255606e-05,-1.3976043629695956e-19,-5.3146257414482534e-05,1.2924729382883735e-20,-9.317362419797304e-21,1.74069497036701e-21,4.530632197047023e-21,2.286988957586611e-20,3.481908544203999e-21,1.5184645235422067e-05,1.7303897862747623e-20,1.091605293565012e-20,1.1104724432320369e-20,0.00013286565081216395,-3.243847967239284e-19,-3.3533224778773214e-19,-0.0001594387722434476,-6.437450399132683e-20,3.8444204476553636e-20,-5.8514728259226335e-21,1.1850229845113022e-20,1.7317808067970438e-20,3.969598400611352e-20,1.2354027266803998e-20,1.7303897862747623e-20,2.6573128707241267e-05,-6.225093910403427e-21,-2.831546269416634e-21,0.00017936862423084676,-1.3470722870896432e-19,-1.3696572904926673e-19,-5.9789541410282254e-05,-5.9789541410282254e-05,1.7701259596264185e-20,-8.188337624051281e-21,7.623296525288703e-21,1.0586736501038847e-20,1.7701259596264185e-20,8.046812998915853e-21,1.091605293565012e-20,-6.225093910403427e-21,1.992984653043095e-05,2.823611393987877e-20,0.00013286565081216395,-3.339036034722765e-19,-3.2848593235157215e-19,-1.7532429125185271e-19,-0.0001594387722434476,3.927792175465039e-20,-6.047678613191791e-21,1.7470926954172247e-20,1.299480224364206e-20,3.936689213811386e-20,1.7330572821915324e-20,1.1104724432320369e-20,-2.831546269416634e-21,2.823611393987877e-20,2.6573128707241267e-05,8.0,8.0,7.0,8.0,0.014346168376505375,-0.0021236359607428312,-0.0021236359607428312,-0.0023716518189758062,-0.0021236359607428312,9.300595411332324e-05,0.00012400794366840273,0.00013950893480796367,0.00012400794366840273,9.300595411332324e-05,0.00013950893480796367,0.00012400794366840273,0.00011625744082266465,0.00013950893480796367,9.300595411332324e-05,-0.0021236359607428312,0.0010717828990891576,0.00012400794366840273,0.00013950893480796367,0.00012400794366840273,-9.300595411332324e-05,-3.543083948898129e-05,-3.98596930608619e-05,-3.543083948898129e-05,-2.0328790734103208e-20,-1.0533380928148476e-20,-4.508920725451423e-21,-2.710505431213761e-20,-6.6341375505883835e-21,-1.9003989897265643e-20,-0.0021236359607428312,0.00012400794366840273,0.0010717828990891576,0.00013950893480796367,0.00012400794366840273,-3.3881317890172014e-21,-3.543083948898129e-05,-1.4515557643949463e-21,-8.470329472543003e-22,-9.300595411332324e-05,-3.98596930608619e-05,-3.543083948898129e-05,-3.099010192944897e-20,-3.9178428244390316e-21,-2.332536882535019e-20,-0.0023716518189758062,0.00013950893480796367,0.00013950893480796367,0.0013950893189758062,0.00013950893480796367,3.583492169831452e-23,7.972075130308413e-21,-4.650297705666162e-05,-7.201673014911496e-22,3.3881317890172014e-21,-4.650297705666162e-05,-0.0,-0.00013950893480796367,-4.650297705666162e-05,-1.321961927125889e-20,-0.0021236359607428312,0.00012400794366840273,0.00012400794366840273,0.00013950893480796367,0.0010717828990891576,-3.3881317890172014e-21,7.063127229528378e-21,4.4418496255878704e-21,-3.543083948898129e-05,-1.911045506990525e-21,5.133799132685549e-21,-3.543083948898129e-05,-6.776263578034403e-21,-3.98596930608619e-05,-9.300595411332324e-05,9.300595411332324e-05,-9.300595411332324e-05,-3.3881317890172014e-21,3.583492169831452e-23,-3.3881317890172014e-21,1.3286564353620633e-05,8.470329472543003e-22,-0.0,8.470329472543003e-22,-6.532594390369925e-23,8.334066231663231e-38,4.464833702353611e-38,-1.513496542071274e-22,7.755077171654117e-38,-1.3097347168857728e-23,0.00012400794366840273,-3.543083948898129e-05,-3.543083948898129e-05,7.972075130308413e-21,7.063127229528378e-21,8.470329472543003e-22,1.0123097126779612e-05,-2.216657239379758e-21,-1.8378402247279738e-21,5.929230630780102e-21,-0.0,-4.235164736271502e-22,-3.28883842223511e-23,-3.6009971543592732e-37,1.1247826173421064e-22,0.00013950893480796367,-3.98596930608619e-05,-1.4515557643949463e-21,-4.650297705666162e-05,4.4418496255878704e-21,-0.0,-2.216657239379758e-21,1.3286564353620633e-05,-1.5508360171533494e-21,-1.9927762425586276e-22,3.505916976807211e-21,5.740620324472549e-23,9.317362419797304e-21,4.235164736271502e-22,-6.410878201404116e-23,0.00012400794366840273,-3.543083948898129e-05,-8.470329472543003e-22,-7.201673014911496e-22,-3.543083948898129e-05,8.470329472543003e-22,-1.8378402247279738e-21,-1.5508360171533494e-21,1.0123097126779612e-05,1.911220394297769e-22,4.4657297515425695e-24,1.6625741632753944e-21,1.1828843056044237e-22,1.5324537657697231e-21,5.400516412619884e-21,9.300595411332324e-05,-2.0328790734103208e-20,-9.300595411332324e-05,3.3881317890172014e-21,-1.911045506990525e-21,-6.532594390369925e-23,5.929230630780102e-21,-1.9927762425586276e-22,1.911220394297769e-22,1.3286564353620633e-05,8.470329472543003e-22,0.0,7.798632839538058e-23,0.0,6.384713515335236e-22,0.00013950893480796367,-1.0533380928148476e-20,-3.98596930608619e-05,-4.650297705666162e-05,5.133799132685549e-21,8.334066231663231e-38,-0.0,3.505916976807211e-21,4.4657297515425695e-24,8.470329472543003e-22,1.3286564353620633e-05,-1.4966243850304069e-21,9.970659812510168e-21,-0.0,1.1722540104761179e-23,0.00012400794366840273,-4.508920725451423e-21,-3.543083948898129e-05,-0.0,-3.543083948898129e-05,4.464833702353611e-38,-4.235164736271502e-22,5.740620324472549e-23,1.6625741632753944e-21,0.0,-1.4966243850304069e-21,1.0123097126779612e-05,1.7221860973417648e-22,1.1193836785503227e-21,5.160682098696739e-21,0.00011625744082266465,-2.710505431213761e-20,-3.099010192944897e-20,-0.00013950893480796367,-6.776263578034403e-21,-1.513496542071274e-22,-3.28883842223511e-23,9.317362419797304e-21,1.1828843056044237e-22,7.798632839538058e-23,9.970659812510168e-21,1.7221860973417648e-22,2.325148852833081e-05,1.466018601391749e-21,4.415950451167025e-22,0.00013950893480796367,-6.6341375505883835e-21,-3.9178428244390316e-21,-4.650297705666162e-05,-3.98596930608619e-05,7.755077171654117e-38,-3.6009971543592732e-37,4.235164736271502e-22,1.5324537657697231e-21,0.0,-0.0,1.1193836785503227e-21,1.466018601391749e-21,1.3286564353620633e-05,3.0093153802105925e-21,9.300595411332324e-05,-1.9003989897265643e-20,-2.332536882535019e-20,-1.321961927125889e-20,-9.300595411332324e-05,-1.3097347168857728e-23,1.1247826173421064e-22,-6.410878201404116e-23,5.400516412619884e-21,6.384713515335236e-22,1.1722540104761179e-23,5.160682098696739e-21,4.415950451167025e-22,3.0093153802105925e-21,1.3286564353620633e-05,8.0,8.0,8.0,3.0,0.0285373255610466,-0.004629629664123058,-0.004629629664123058,-0.004629629664123058,-0.009765625,0.00021701389050576836,0.00028935185400769114,0.00028935185400769114,0.0006510416860692203,0.00021701389050576836,0.00028935185400769114,0.0006510416860692203,0.00021701389050576836,0.0006510416860692203,0.0009765625,-0.004629629664123058,0.002407820662483573,0.00028935185400769114,0.00028935185400769114,0.0006510416860692203,-0.00021701389050576836,-8.26719551696442e-05,-8.26719551696442e-05,-0.00018601190822664648,6.776263578034403e-21,9.514466473512906e-21,4.649098859684947e-22,1.3552527156068805e-20,5.992644849166089e-21,0.0,-0.004629629664123058,0.00028935185400769114,0.002407820662483573,0.00028935185400769114,0.0006510416860692203,-0.0,-8.26719551696442e-05,4.376783065460695e-21,-1.4860317475973615e-20,-0.00021701389050576836,-8.26719551696442e-05,-0.00018601190822664648,3.8186864064344414e-20,3.3881317890172014e-21,-0.0,-0.004629629664123058,0.00028935185400769114,0.00028935185400769114,0.002407820662483573,0.0006510416860692203,-2.1387439342606518e-21,-5.786380416401316e-21,-8.26719551696442e-05,-1.4860317475973615e-20,-0.0,-8.26719551696442e-05,-1.468275798761028e-20,-0.00021701389050576836,-0.00018601190822664648,-0.0,-0.009765625,0.0006510416860692203,0.0006510416860692203,0.0006510416860692203,0.01953125,-0.0,-1.479690244979406e-20,-8.466176605815332e-21,-0.0006510416860692203,1.3692254440517778e-20,-1.4823076576950256e-20,-0.0006510416860692203,1.3552527156068805e-20,-0.0006510416860692203,-0.005859375,0.00021701389050576836,-0.00021701389050576836,-0.0,-2.1387439342606518e-21,-0.0,3.100198591710068e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-3.3881317890172014e-21,1.4803765261990446e-21,-1.0142543353883224e-37,4.218079336030347e-39,1.3359025457765e-21,1.188801865766656e-37,-0.0,0.00028935185400769114,-8.26719551696442e-05,-8.26719551696442e-05,-5.786380416401316e-21,-1.479690244979406e-20,-1.6940658945086007e-21,2.362055965932086e-05,1.627707066622703e-21,4.2458049931353186e-21,-5.082197683525802e-21,-0.0,-0.0,1.420127280873677e-23,-1.8118352167280842e-23,-0.0,0.00028935185400769114,-8.26719551696442e-05,4.376783065460695e-21,-8.26719551696442e-05,-8.466176605815332e-21,-1.6940658945086007e-21,1.627707066622703e-21,2.362055965932086e-05,4.2458049931353186e-21,-5.632490213560819e-23,-2.718419021282029e-21,-1.3283139058166657e-22,-6.776263578034403e-21,-1.6940658945086007e-21,-0.0,0.0006510416860692203,-0.00018601190822664648,-1.4860317475973615e-20,-1.4860317475973615e-20,-0.0006510416860692203,-3.3881317890172014e-21,4.2458049931353186e-21,4.2458049931353186e-21,0.00018601190822664648,-1.128474576789396e-36,-3.76158192263132e-37,-0.0,-1.128474576789396e-36,-1.88079096131566e-37,-0.0,0.00021701389050576836,6.776263578034403e-21,-0.00021701389050576836,-0.0,1.3692254440517778e-20,1.4803765261990446e-21,-5.082197683525802e-21,-5.632490213560819e-23,-1.128474576789396e-36,3.100198591710068e-05,-0.0,-3.3881317890172014e-21,-9.38033114003112e-22,-4.756067325582085e-23,-0.0,0.00028935185400769114,9.514466473512906e-21,-8.26719551696442e-05,-8.26719551696442e-05,-1.4823076576950256e-20,-1.0142543353883224e-37,-0.0,-2.718419021282029e-21,-3.76158192263132e-37,-0.0,2.362055965932086e-05,5.082197683525802e-21,-8.795895321622944e-21,-8.470329472543003e-22,-0.0,0.0006510416860692203,4.649098859684947e-22,-0.00018601190822664648,-1.468275798761028e-20,-0.0006510416860692203,4.218079336030347e-39,-0.0,-1.3283139058166657e-22,-0.0,-3.3881317890172014e-21,5.082197683525802e-21,0.00018601190822664648,-3.4868240185459655e-22,-1.88079096131566e-37,-0.0,0.00021701389050576836,1.3552527156068805e-20,3.8186864064344414e-20,-0.00021701389050576836,1.3552527156068805e-20,1.3359025457765e-21,1.420127280873677e-23,-6.776263578034403e-21,-1.128474576789396e-36,-9.38033114003112e-22,-8.795895321622944e-21,-3.4868240185459655e-22,3.100198591710068e-05,-2.2134729171388555e-21,-0.0,0.0006510416860692203,5.992644849166089e-21,3.3881317890172014e-21,-0.00018601190822664648,-0.0006510416860692203,1.188801865766656e-37,-1.8118352167280842e-23,-1.6940658945086007e-21,-1.88079096131566e-37,-4.756067325582085e-23,-8.470329472543003e-22,-1.88079096131566e-37,-2.2134729171388555e-21,0.00018601190822664648,-0.0,0.0009765625,0.0,-0.0,-0.0,-0.005859375,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.0029296875,8.0,8.0,8.0,4.0,0.02281901054084301,-0.0035698784049600363,-0.0035698784049600363,-0.0035698784049600363,-0.006152343936264515,0.00016276042151730508,0.00021701389050576836,0.00021701389050576836,0.0003906250058207661,0.00016276042151730508,0.00021701389050576836,0.0003906250058207661,0.00016276042151730508,0.0003906250058207661,0.00048828125,-0.0035698784049600363,0.0018337673973292112,0.00021701389050576836,0.00021701389050576836,0.0003906250058207661,-0.00016276042151730508,-6.200397183420137e-05,-6.200397183420137e-05,-0.00011160714348079637,1.0164395367051604e-20,6.680750470575454e-21,2.8338105147847846e-23,6.776263578034403e-21,3.038188850544934e-22,0.0,-0.0035698784049600363,0.00021701389050576836,0.0018337673973292112,0.00021701389050576836,0.0003906250058207661,6.776263578034403e-21,-6.200397183420137e-05,2.2995186839931936e-21,-8.916190324025456e-21,-0.00016276042151730508,-6.200397183420137e-05,-0.00011160714348079637,2.164708721713972e-20,5.082197683525802e-21,-0.0,-0.0035698784049600363,0.00021701389050576836,0.00021701389050576836,0.0018337673973292112,0.0003906250058207661,-6.197216550511326e-22,-2.1675813568070683e-21,-6.200397183420137e-05,-8.916190324025456e-21,6.776263578034403e-21,-6.200397183420137e-05,-5.6514663699209934e-21,-0.00016276042151730508,-0.00011160714348079637,-0.0,-0.006152343936264515,0.0003906250058207661,0.0003906250058207661,0.0003906250058207661,0.007519531063735485,6.776263578034403e-21,-8.612371085561277e-21,-8.887852117903412e-21,-0.0002604166802484542,1.8904153074739614e-20,-2.964615315390051e-21,-0.0002604166802484542,2.0328790734103208e-20,-0.0002604166802484542,-0.00146484375,0.00016276042151730508,-0.00016276042151730508,6.776263578034403e-21,-6.197216550511326e-22,6.776263578034403e-21,2.325148852833081e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-1.6940658945086007e-21,9.991897513178754e-22,-3.146955936908515e-38,-2.0939743082252174e-40,7.91516375111054e-22,-1.0469857528141444e-39,-0.0,0.00021701389050576836,-6.200397183420137e-05,-6.200397183420137e-05,-2.1675813568070683e-21,-8.612371085561277e-21,-1.6940658945086007e-21,1.7715419744490646e-05,1.2194003361191932e-21,2.5474828343224778e-21,-5.082197683525802e-21,-0.0,-0.0,-2.602034345588713e-22,-8.680539572985526e-23,-0.0,0.00021701389050576836,-6.200397183420137e-05,2.2995186839931936e-21,-6.200397183420137e-05,-8.887852117903412e-21,-1.6940658945086007e-21,1.2194003361191932e-21,1.7715419744490646e-05,2.5474828343224778e-21,1.657223054698016e-23,-1.9087859064353844e-21,-8.0966016962025e-24,-3.3881317890172014e-21,-0.0,-0.0,0.0003906250058207661,-0.00011160714348079637,-8.916190324025456e-21,-8.916190324025456e-21,-0.0002604166802484542,-1.6940658945086007e-21,2.5474828343224778e-21,2.5474828343224778e-21,7.440476474585012e-05,-7.52316384526264e-37,-4.231779662960235e-37,-9.4039548065783e-38,-5.64237288394698e-37,-0.0,-0.0,0.00016276042151730508,1.0164395367051604e-20,-0.00016276042151730508,6.776263578034403e-21,1.8904153074739614e-20,9.991897513178754e-22,-5.082197683525802e-21,1.657223054698016e-23,-7.52316384526264e-37,2.325148852833081e-05,-1.6940658945086007e-21,-1.6940658945086007e-21,-8.758887344825904e-23,-2.2786415116909557e-22,-0.0,0.00021701389050576836,6.680750470575454e-21,-6.200397183420137e-05,-6.200397183420137e-05,-2.964615315390051e-21,-3.146955936908515e-38,-0.0,-1.9087859064353844e-21,-4.231779662960235e-37,-1.6940658945086007e-21,1.7715419744490646e-05,1.6940658945086007e-21,-5.726091955222628e-21,-8.470329472543003e-22,-0.0,0.0003906250058207661,2.8338105147847846e-23,-0.00011160714348079637,-5.6514663699209934e-21,-0.0002604166802484542,-2.0939743082252174e-40,-0.0,-8.0966016962025e-24,-9.4039548065783e-38,-1.6940658945086007e-21,1.6940658945086007e-21,7.440476474585012e-05,-2.1253578860885885e-23,-5.900420193587532e-23,-0.0,0.00016276042151730508,6.776263578034403e-21,2.164708721713972e-20,-0.00016276042151730508,2.0328790734103208e-20,7.91516375111054e-22,-2.602034345588713e-22,-3.3881317890172014e-21,-5.64237288394698e-37,-8.758887344825904e-23,-5.726091955222628e-21,-2.1253578860885885e-23,2.325148852833081e-05,-1.3025129035577534e-21,-0.0,0.0003906250058207661,3.038188850544934e-22,5.082197683525802e-21,-0.00011160714348079637,-0.0002604166802484542,-1.0469857528141444e-39,-8.680539572985526e-23,-0.0,-0.0,-2.2786415116909557e-22,-8.470329472543003e-22,-5.900420193587532e-23,-1.3025129035577534e-21,7.440476474585012e-05,-0.0,0.00048828125,0.0,-0.0,-0.0,-0.00146484375,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00048828125,8.0,8.0,8.0,5.0,0.01904761977493763,-0.0029079860541969538,-0.0029079860541969538,-0.0029079860541969538,-0.00424107164144516,0.0001302083401242271,0.00017361111531499773,0.00017361111531499773,0.0002604166802484542,0.0001302083401242271,0.00017361111531499773,0.0002604166802484542,0.0001302083401242271,0.0002604166802484542,0.00027901786961592734,-0.0029079860541969538,0.0014818948693573475,0.00017361111531499773,0.00017361111531499773,0.0002604166802484542,-0.0001302083401242271,-4.960317528457381e-05,-4.960317528457381e-05,-7.440476474585012e-05,1.0164395367051604e-20,1.1974085601558633e-21,1.3554792209230523e-21,6.776263578034403e-21,-0.0,0.0,-0.0029079860541969538,0.00017361111531499773,0.0014818948693573475,0.00017361111531499773,0.0002604166802484542,-0.0,-4.960317528457381e-05,-1.3405850221615002e-21,-3.77626892389602e-21,-0.0001302083401242271,-4.960317528457381e-05,-7.440476474585012e-05,4.007836278455036e-21,-0.0,-0.0,-0.0029079860541969538,0.00017361111531499773,0.00017361111531499773,0.0014818948693573475,0.0002604166802484542,-5.098498149913212e-22,-4.068619513193479e-21,-4.960317528457381e-05,-3.77626892389602e-21,-3.3881317890172014e-21,-4.960317528457381e-05,-6.776263578034403e-21,-0.0001302083401242271,-7.440476474585012e-05,-0.0,-0.00424107164144516,0.0002604166802484542,0.0002604166802484542,0.0002604166802484542,0.0037946428637951612,-0.0,-2.293961064252603e-21,-3.9030973606679936e-21,-0.0001302083401242271,3.801286694561131e-21,-5.929230630780102e-21,-0.0001302083401242271,-6.776263578034403e-21,-0.0001302083401242271,-0.0005580357392318547,0.0001302083401242271,-0.0001302083401242271,-0.0,-5.098498149913212e-22,-0.0,1.860119118646253e-05,-0.0,-0.0,1.6940658945086007e-21,-2.565799755401377e-22,1.88355897419821e-38,-1.8490522797739044e-38,2.740347789347137e-22,-0.0,-0.0,0.00017361111531499773,-4.960317528457381e-05,-4.960317528457381e-05,-4.068619513193479e-21,-2.293961064252603e-21,-0.0,1.4172335795592517e-05,7.125250189897601e-22,1.0789339205564653e-21,-2.541098841762901e-21,4.235164736271502e-22,-4.235164736271502e-22,1.2213614695731216e-23,-0.0,-0.0,0.00017361111531499773,-4.960317528457381e-05,-1.3405850221615002e-21,-4.960317528457381e-05,-3.9030973606679936e-21,-0.0,7.125250189897601e-22,1.4172335795592517e-05,1.0789339205564653e-21,1.9203646174756012e-22,-7.65633205100254e-22,3.6236704334561683e-23,-2.541098841762901e-21,-0.0,-0.0,0.0002604166802484542,-7.440476474585012e-05,-3.77626892389602e-21,-3.77626892389602e-21,-0.0001302083401242271,1.6940658945086007e-21,1.0789339205564653e-21,1.0789339205564653e-21,3.720238237292506e-05,-9.4039548065783e-38,-4.70197740328915e-38,-4.70197740328915e-38,-2.82118644197349e-37,-0.0,-0.0,0.0001302083401242271,1.0164395367051604e-20,-0.0001302083401242271,-3.3881317890172014e-21,3.801286694561131e-21,-2.565799755401377e-22,-2.541098841762901e-21,1.9203646174756012e-22,-9.4039548065783e-38,1.860119118646253e-05,-8.470329472543003e-22,0.0,8.424959746855464e-22,0.0,-0.0,0.00017361111531499773,1.1974085601558633e-21,-4.960317528457381e-05,-4.960317528457381e-05,-5.929230630780102e-21,1.88355897419821e-38,4.235164736271502e-22,-7.65633205100254e-22,-4.70197740328915e-38,-8.470329472543003e-22,1.4172335795592517e-05,1.6940658945086007e-21,-3.034206933130868e-21,-0.0,-0.0,0.0002604166802484542,1.3554792209230523e-21,-7.440476474585012e-05,-6.776263578034403e-21,-0.0001302083401242271,-1.8490522797739044e-38,-4.235164736271502e-22,3.6236704334561683e-23,-4.70197740328915e-38,0.0,1.6940658945086007e-21,3.720238237292506e-05,9.51213465116417e-23,-0.0,-0.0,0.0001302083401242271,6.776263578034403e-21,4.007836278455036e-21,-0.0001302083401242271,-6.776263578034403e-21,2.740347789347137e-22,1.2213614695731216e-23,-2.541098841762901e-21,-2.82118644197349e-37,8.424959746855464e-22,-3.034206933130868e-21,9.51213465116417e-23,1.860119118646253e-05,0.0,-0.0,0.0002604166802484542,-0.0,-0.0,-7.440476474585012e-05,-0.0001302083401242271,-0.0,-0.0,-0.0,-0.0,0.0,-0.0,-0.0,0.0,3.720238237292506e-05,-0.0,0.00027901786961592734,0.0,-0.0,-0.0,-0.0005580357392318547,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,0.00013950893480796367,8.0,8.0,8.0,6.0,0.01636129803955555,-0.0024543236941099167,-0.0024543236941099167,-0.0024543236941099167,-0.0031040736939758062,0.00010850694525288418,0.00014467592700384557,0.00014467592700384557,0.00018601190822664648,0.00010850694525288418,0.00014467592700384557,0.00018601190822664648,0.00010850694525288418,0.00018601190822664648,0.00017438616487197578,-0.0024543236941099167,0.0012437701225280762,0.00014467592700384557,0.00014467592700384557,0.00018601190822664648,-0.00010850694525288418,-4.13359775848221e-05,-4.13359775848221e-05,-5.3146257414482534e-05,1.0164395367051604e-20,3.1798042514824473e-21,1.4823076576950256e-21,1.0164395367051604e-20,2.964615315390051e-21,0.0,-0.0024543236941099167,0.00014467592700384557,0.0012437701225280762,0.00014467592700384557,0.00018601190822664648,-0.0,-4.13359775848221e-05,4.0826346306058016e-22,-3.396643913728898e-21,-0.00010850694525288418,-4.13359775848221e-05,-5.3146257414482534e-05,1.2874360222810365e-20,1.4823076576950256e-21,-0.0,-0.0024543236941099167,0.00014467592700384557,0.00014467592700384557,0.0012437701225280762,0.00018601190822664648,1.8995837240691237e-21,-1.6831291774057145e-21,-4.13359775848221e-05,-3.396643913728898e-21,3.3881317890172014e-21,-4.13359775848221e-05,-3.1968412236545203e-21,-0.00010850694525288418,-5.3146257414482534e-05,-0.0,-0.0031040736939758062,0.00018601190822664648,0.00018601190822664648,0.00018601190822664648,0.002200753428041935,6.776263578034403e-21,-1.9143362560338726e-21,-4.32028547851749e-22,-7.440476474585012e-05,8.4537600108978e-21,-1.7145335659594947e-21,-7.440476474585012e-05,6.776263578034403e-21,-7.440476474585012e-05,-0.00026157923275604844,0.00010850694525288418,-0.00010850694525288418,-0.0,1.8995837240691237e-21,6.776263578034403e-21,1.550099295855034e-05,-8.470329472543003e-22,-8.470329472543003e-22,-1.6940658945086007e-21,2.2968830050455415e-22,-5.91678518252807e-39,1.020586971304422e-38,2.9613989843290586e-22,-0.0,-0.0,0.00014467592700384557,-4.13359775848221e-05,-4.13359775848221e-05,-1.6831291774057145e-21,-1.9143362560338726e-21,-8.470329472543003e-22,1.181027982966043e-05,8.196838338678845e-22,9.704696607870578e-22,-3.3881317890172014e-21,-0.0,-4.235164736271502e-22,-1.5661037194654182e-22,-4.450534852823641e-38,-0.0,0.00014467592700384557,-4.13359775848221e-05,4.0826346306058016e-22,-4.13359775848221e-05,-4.32028547851749e-22,-8.470329472543003e-22,8.196838338678845e-22,1.181027982966043e-05,9.704696607870578e-22,-1.2857903429435089e-23,-9.085155292733266e-22,-1.2379424882097215e-37,-3.3881317890172014e-21,-8.470329472543003e-22,-0.0,0.00018601190822664648,-5.3146257414482534e-05,-3.396643913728898e-21,-3.396643913728898e-21,-7.440476474585012e-05,-1.6940658945086007e-21,9.704696607870578e-22,9.704696607870578e-22,2.1258503693388775e-05,-1.88079096131566e-37,-2.350988701644575e-38,-0.0,-1.88079096131566e-37,-0.0,-0.0,0.00010850694525288418,1.0164395367051604e-20,-0.00010850694525288418,3.3881317890172014e-21,8.4537600108978e-21,2.2968830050455415e-22,-3.3881317890172014e-21,-1.2857903429435089e-23,-1.88079096131566e-37,1.550099295855034e-05,-8.470329472543003e-22,0.0,-3.205621737778835e-22,3.1272584449148866e-38,-0.0,0.00014467592700384557,3.1798042514824473e-21,-4.13359775848221e-05,-4.13359775848221e-05,-1.7145335659594947e-21,-5.91678518252807e-39,-0.0,-9.085155292733266e-22,-2.350988701644575e-38,-8.470329472543003e-22,1.181027982966043e-05,9.133831923335492e-22,-2.828317316581158e-21,-4.235164736271502e-22,-0.0,0.00018601190822664648,1.4823076576950256e-21,-5.3146257414482534e-05,-3.1968412236545203e-21,-7.440476474585012e-05,1.020586971304422e-38,-4.235164736271502e-22,-1.2379424882097215e-37,-0.0,0.0,9.133831923335492e-22,2.1258503693388775e-05,-2.82118644197349e-37,-2.350988701644575e-38,-0.0,0.00010850694525288418,1.0164395367051604e-20,1.2874360222810365e-20,-0.00010850694525288418,6.776263578034403e-21,2.9613989843290586e-22,-1.5661037194654182e-22,-3.3881317890172014e-21,-1.88079096131566e-37,-3.205621737778835e-22,-2.828317316581158e-21,-2.82118644197349e-37,1.550099295855034e-05,-1.9537693048495322e-21,-0.0,0.00018601190822664648,2.964615315390051e-21,1.4823076576950256e-21,-5.3146257414482534e-05,-7.440476474585012e-05,-0.0,-4.450534852823641e-38,-8.470329472543003e-22,-0.0,3.1272584449148866e-38,-4.235164736271502e-22,-2.350988701644575e-38,-1.9537693048495322e-21,2.1258503693388775e-05,-0.0,0.00017438616487197578,0.0,-0.0,-0.0,-0.00026157923275604844,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,-0.0,5.231584873399697e-05,8.0,8.0,8.0,7.0,0.014346168376505375,-0.0021236359607428312,-0.0021236359607428312,-0.0021236359607428312,-0.0023716518189758062,9.300595411332324e-05,0.00012400794366840273,0.00012400794366840273,0.00013950893480796367,9.300595411332324e-05,0.00012400794366840273,0.00013950893480796367,9.300595411332324e-05,0.00013950893480796367,0.00011625744082266465,-0.0021236359607428312,0.0010717828990891576,0.00012400794366840273,0.00012400794366840273,0.00013950893480796367,-9.300595411332324e-05,-3.543083948898129e-05,-3.543083948898129e-05,-3.98596930608619e-05,-2.0328790734103208e-20,-4.519468086055041e-21,-9.934374533276507e-21,-1.6940658945086007e-20,-7.791796608798736e-21,-2.7724586741545686e-20,-0.0021236359607428312,0.00012400794366840273,0.0010717828990891576,0.00012400794366840273,0.00013950893480796367,-3.3881317890172014e-21,-3.543083948898129e-05,6.197171616994165e-22,-0.0,-9.300595411332324e-05,-3.543083948898129e-05,-3.98596930608619e-05,-1.7964420968916822e-20,-6.690223465735033e-21,-2.371692252312041e-20,-0.0021236359607428312,0.00012400794366840273,0.00012400794366840273,0.0010717828990891576,0.00013950893480796367,-3.929403965969167e-21,8.589598577115493e-21,-3.543083948898129e-05,-1.0413140022671401e-22,-0.0,-3.543083948898129e-05,-0.0,-9.300595411332324e-05,-3.98596930608619e-05,-2.7048983745068733e-20,-0.0023716518189758062,0.00013950893480796367,0.00013950893480796367,0.00013950893480796367,0.0013950893189758062,-0.0,7.972075130308413e-21,8.819108077562713e-21,-4.650297705666162e-05,2.1562611397082744e-21,9.351644370984938e-21,-4.650297705666162e-05,6.776263578034403e-21,-4.650297705666162e-05,-0.00013950893480796367,9.300595411332324e-05,-9.300595411332324e-05,-3.3881317890172014e-21,-3.929403965969167e-21,-0.0,1.3286564353620633e-05,8.470329472543003e-22,8.470329472543003e-22,-0.0,1.6320224197641878e-23,6.222859875962518e-38,2.0654166302494176e-37,-1.1024044793955045e-23,-1.6732878337831818e-38,-1.9794837785334726e-23,0.00012400794366840273,-3.543083948898129e-05,-3.543083948898129e-05,8.589598577115493e-21,7.972075130308413e-21,8.470329472543003e-22,1.0123097126779612e-05,-1.906175117627014e-21,-2.215432018487092e-21,5.929230630780102e-21,-4.235164736271502e-22,2.117582368135751e-22,-5.754239219140285e-23,-4.515542377778256e-37,-1.4757174253403879e-22,0.00012400794366840273,-3.543083948898129e-05,6.197171616994165e-22,-3.543083948898129e-05,8.819108077562713e-21,8.470329472543003e-22,-1.906175117627014e-21,1.0123097126779612e-05,-2.2121281427982816e-21,1.1743123063500206e-23,1.7169292797306657e-21,-1.542304637924678e-23,5.082197683525802e-21,-4.235164736271502e-22,7.071219781212694e-23,0.00013950893480796367,-3.98596930608619e-05,-0.0,-1.0413140022671401e-22,-4.650297705666162e-05,-0.0,-2.215432018487092e-21,-2.2121281427982816e-21,1.3286564353620633e-05,-1.9606160873923223e-22,-2.492134070248712e-24,3.0824003012316687e-21,-1.8738893505610484e-22,3.091368223463515e-21,9.381157108953322e-21,9.300595411332324e-05,-2.0328790734103208e-20,-9.300595411332324e-05,-0.0,2.1562611397082744e-21,1.6320224197641878e-23,5.929230630780102e-21,1.1743123063500206e-23,-1.9606160873923223e-22,1.3286564353620633e-05,-0.0,8.470329472543003e-22,-3.625463987610279e-23,0.0,-1.656666087344494e-22,0.00012400794366840273,-4.519468086055041e-21,-3.543083948898129e-05,-3.543083948898129e-05,9.351644370984938e-21,6.222859875962518e-38,-4.235164736271502e-22,1.7169292797306657e-21,-2.492134070248712e-24,-0.0,1.0123097126779612e-05,-2.2320049132549544e-21,5.303364292013601e-21,-4.235164736271502e-22,-7.476402407961362e-24,0.00013950893480796367,-9.934374533276507e-21,-3.98596930608619e-05,-0.0,-4.650297705666162e-05,2.0654166302494176e-37,2.117582368135751e-22,-1.542304637924678e-23,3.0824003012316687e-21,8.470329472543003e-22,-2.2320049132549544e-21,1.3286564353620633e-05,-4.048549654830757e-23,2.724177175775614e-21,8.504641312092615e-21,9.300595411332324e-05,-1.6940658945086007e-20,-1.7964420968916822e-20,-9.300595411332324e-05,6.776263578034403e-21,-1.1024044793955045e-23,-5.754239219140285e-23,5.082197683525802e-21,-1.8738893505610484e-22,-3.625463987610279e-23,5.303364292013601e-21,-4.048549654830757e-23,1.3286564353620633e-05,-4.554799563034531e-22,8.540222043874606e-23,0.00013950893480796367,-7.791796608798736e-21,-6.690223465735033e-21,-3.98596930608619e-05,-4.650297705666162e-05,-1.6732878337831818e-38,-4.515542377778256e-37,-4.235164736271502e-22,3.091368223463515e-21,0.0,-4.235164736271502e-22,2.724177175775614e-21,-4.554799563034531e-22,1.3286564353620633e-05,8.727013956375865e-21,0.00011625744082266465,-2.7724586741545686e-20,-2.371692252312041e-20,-2.7048983745068733e-20,-0.00013950893480796367,-1.9794837785334726e-23,-1.4757174253403879e-22,7.071219781212694e-23,9.381157108953322e-21,-1.656666087344494e-22,-7.476402407961362e-24,8.504641312092615e-21,8.540222043874606e-23,8.727013956375865e-21,2.325148852833081e-05,8.0,8.0,8.0,8.0,0.012776692397892475,-0.0018717447528615594,-0.0018717447528615594,-0.0018717447528615594,-0.0018717447528615594,8.138021075865254e-05,0.00010850694525288418,0.00010850694525288418,0.00010850694525288418,8.138021075865254e-05,0.00010850694525288418,0.00010850694525288418,8.138021075865254e-05,0.00010850694525288418,8.138021075865254e-05,-0.0018717447528615594,0.0009416852844879031,0.00010850694525288418,0.00010850694525288418,0.00010850694525288418,-8.138021075865254e-05,-3.100198591710068e-05,-3.100198591710068e-05,-3.100198591710068e-05,5.082197683525802e-21,3.464632667084502e-21,2.8637794541701012e-21,1.6940658945086007e-21,2.900439549618826e-21,5.8057375736460504e-21,-0.0018717447528615594,0.00010850694525288418,0.0009416852844879031,0.00010850694525288418,0.00010850694525288418,-0.0,-3.100198591710068e-05,6.667925939906614e-22,8.470329472543003e-22,-8.138021075865254e-05,-3.100198591710068e-05,-3.100198591710068e-05,9.5557560338938e-21,4.314570440005541e-21,8.078776582566352e-21,-0.0018717447528615594,0.00010850694525288418,0.00010850694525288418,0.0009416852844879031,0.00010850694525288418,5.373558422781164e-22,-1.7724349971478562e-21,-3.100198591710068e-05,6.099916805630684e-22,1.6940658945086007e-21,-3.100198591710068e-05,3.3881317890172014e-21,-8.138021075865254e-05,-3.100198591710068e-05,1.0010272393446082e-20,-0.0018717447528615594,0.00010850694525288418,0.00010850694525288418,0.00010850694525288418,0.0009416852844879031,-0.0,-1.2651211490857671e-21,-1.2651211490857671e-21,-3.100198591710068e-05,2.1124639861471873e-21,3.600148873181885e-22,-3.100198591710068e-05,3.3881317890172014e-21,-3.100198591710068e-05,-8.138021075865254e-05,8.138021075865254e-05,-8.138021075865254e-05,-0.0,5.373558422781164e-22,-0.0,1.1625744264165405e-05,-8.470329472543003e-22,-8.470329472543003e-22,-0.0,8.65451650322635e-22,3.759638097453547e-38,1.798344052764768e-38,5.712258692337064e-22,1.1379514630153292e-38,1.6225166143018384e-22,0.00010850694525288418,-3.100198591710068e-05,-3.100198591710068e-05,-1.7724349971478562e-21,-1.2651211490857671e-21,-8.470329472543003e-22,8.857709872245323e-06,6.3667244574703205e-22,6.007475434184244e-22,-3.3881317890172014e-21,-0.0,-0.0,-6.021567140524133e-23,-6.52291487145392e-38,-1.1061258676070122e-22,0.00010850694525288418,-3.100198591710068e-05,6.667925939906614e-22,-3.100198591710068e-05,-1.2651211490857671e-21,-8.470329472543003e-22,6.3667244574703205e-22,8.857709872245323e-06,6.197053477184999e-22,7.908840494529778e-23,-9.498633517652366e-22,-4.8410503642684585e-23,-1.6940658945086007e-21,-0.0,-9.699764901926626e-23,0.00010850694525288418,-3.100198591710068e-05,8.470329472543003e-22,6.099916805630684e-22,-3.100198591710068e-05,-0.0,6.007475434184244e-22,6.197053477184999e-22,8.857709872245323e-06,-1.5214515732117036e-23,-4.0031715356631855e-23,-7.698122241446549e-22,3.454965586898689e-23,-8.286969925394797e-22,-1.80216523353414e-21,8.138021075865254e-05,5.082197683525802e-21,-8.138021075865254e-05,1.6940658945086007e-21,2.1124639861471873e-21,8.65451650322635e-22,-3.3881317890172014e-21,7.908840494529778e-23,-1.5214515732117036e-23,1.1625744264165405e-05,-8.470329472543003e-22,-8.470329472543003e-22,1.4248511693007577e-22,0.0,4.2859390426840193e-23,0.00010850694525288418,3.464632667084502e-21,-3.100198591710068e-05,-3.100198591710068e-05,3.600148873181885e-22,3.759638097453547e-38,-0.0,-9.498633517652366e-22,-4.0031715356631855e-23,-8.470329472543003e-22,8.857709872245323e-06,3.7625151277026047e-22,-2.8511558621510394e-21,-2.117582368135751e-22,-1.0508325241672817e-22,0.00010850694525288418,2.8637794541701012e-21,-3.100198591710068e-05,3.3881317890172014e-21,-3.100198591710068e-05,1.798344052764768e-38,-0.0,-4.8410503642684585e-23,-7.698122241446549e-22,-8.470329472543003e-22,3.7625151277026047e-22,8.857709872245323e-06,-1.2707757797850382e-22,-1.0209761457668093e-21,-2.1852423495096073e-21,8.138021075865254e-05,1.6940658945086007e-21,9.5557560338938e-21,-8.138021075865254e-05,3.3881317890172014e-21,5.712258692337064e-22,-6.021567140524133e-23,-1.6940658945086007e-21,3.454965586898689e-23,1.4248511693007577e-22,-2.8511558621510394e-21,-1.2707757797850382e-22,1.1625744264165405e-05,-7.491447247601375e-22,-5.773801707412317e-23,0.00010850694525288418,2.900439549618826e-21,4.314570440005541e-21,-3.100198591710068e-05,-3.100198591710068e-05,1.1379514630153292e-38,-6.52291487145392e-38,-0.0,-8.286969925394797e-22,0.0,-2.117582368135751e-22,-1.0209761457668093e-21,-7.491447247601375e-22,8.857709872245323e-06,-2.5330942133596382e-21,8.138021075865254e-05,5.8057375736460504e-21,8.078776582566352e-21,1.0010272393446082e-20,-8.138021075865254e-05,1.6225166143018384e-22,-1.1061258676070122e-22,-9.699764901926626e-23,-1.80216523353414e-21,4.2859390426840193e-23,-1.0508325241672817e-22,-2.1852423495096073e-21,-5.773801707412317e-23,-2.5330942133596382e-21,1.1625744264165405e-05}; - -} -#endif //SZ3_POLYREGRESSIONCOEFF_H diff --git a/lib/SZ3/include/SZ3/predictor/PolyRegressionCoeffAux.m b/lib/SZ3/include/SZ3/predictor/PolyRegressionCoeffAux.m deleted file mode 100644 index 2b9671d4..00000000 --- a/lib/SZ3/include/SZ3/predictor/PolyRegressionCoeffAux.m +++ /dev/null @@ -1,78 +0,0 @@ -% Matlab code to compute the inverse matrix of poly coefficient aux matrix -BLOCK_SIZE_MIN=3; -BLOCK_SIZE_MAX_1D=4096; -BLOCK_SIZE_MAX_2D=64; -BLOCK_SIZE_MAX_3D=16; - -x=generate_coef_inverse_1(6); -x=generate_coef_inverse_2(6,6); -disp(x); -x=generate_coef_inverse_3(6,6,6); -disp(x); - -fileID = fopen('PolyRegressionCoefAux1D.f32','w'); -for i=BLOCK_SIZE_MIN:BLOCK_SIZE_MAX_1D - Ai=generate_coef_inverse_1(i); - fwrite(fileID,[i],"single"); - fwrite(fileID,Ai,'single'); -end -fclose(fileID); - -fileID = fopen('PolyRegressionCoefAux2D.f32','w'); -for i=BLOCK_SIZE_MIN:BLOCK_SIZE_MAX_2D - for j=BLOCK_SIZE_MIN:BLOCK_SIZE_MAX_2D - Ai=generate_coef_inverse_2(i,j); - fwrite(fileID,[i,j],"single"); - fwrite(fileID,Ai,'single'); - end -end -fclose(fileID); - -fileID = fopen('PolyRegressionCoefAux3D.f32','w'); -for i=BLOCK_SIZE_MIN:BLOCK_SIZE_MAX_3D - for j=BLOCK_SIZE_MIN:BLOCK_SIZE_MAX_3D - for k=BLOCK_SIZE_MIN:BLOCK_SIZE_MAX_3D - Ai=generate_coef_inverse_3(i,j,k); - fwrite(fileID,[i,j,k],"single"); - fwrite(fileID,Ai,'single'); - end - end -end -fclose(fileID); - -function Ai = generate_coef_inverse_1(n1) - M=3; - A=zeros(M); - for i = 0:n1-1 - C=[1, i, i * i]; - A=A+C.'*C; - end - Ai=inv(A); -end - -function Ai = generate_coef_inverse_2(n1,n2) - M=6; - A=zeros(M); - for i = 0:n1-1 - for j=0:n2-1 - C=[1, i, j, i * i, i * j, j * j]; - A=A+C.'*C; - end - end - Ai=inv(A); -end - -function Ai = generate_coef_inverse_3(n1,n2,n3) - M=10; - A=zeros(M); - for i = 0:n1-1 - for j=0:n2-1 - for k=0:n3-1 - C=[1, i, j, k, i * i, i * j, i * k, j * j, j * k, k * k]; - A=A+C.'*C; - end - end - end - Ai=inv(A); -end - diff --git a/lib/SZ3/include/SZ3/predictor/PolyRegressionPredictor.hpp b/lib/SZ3/include/SZ3/predictor/PolyRegressionPredictor.hpp deleted file mode 100644 index 293202a6..00000000 --- a/lib/SZ3/include/SZ3/predictor/PolyRegressionPredictor.hpp +++ /dev/null @@ -1,301 +0,0 @@ -#ifndef _SZ_POLY_REGRESSION_PREDICTOR_HPP -#define _SZ_POLY_REGRESSION_PREDICTOR_HPP - -#include "SZ3/def.hpp" -#include "SZ3/utils/Iterator.hpp" -#include "SZ3/utils/FileUtil.hpp" -#include "SZ3/predictor/Predictor.hpp" -#include "SZ3/quantizer/Quantizer.hpp" -#include "SZ3/encoder/Encoder.hpp" -#include "PolyRegressionCoeffAux.hpp" -#include -#include - -namespace SZ { - - // N-d regression predictor - template - class PolyRegressionPredictor : public concepts::PredictorInterface { - public: - static const uint8_t predictor_id = 0b00000011; - -// PolyRegressionPredictor() : quantizer_independent(0), quantizer_liner(0), quantizer_poly(0), current_coeffs{0} { -// init_poly(); -// } - - PolyRegressionPredictor(uint block_size, T eb) : quantizer_independent(eb / 5 / block_size), - quantizer_liner(eb / 20 / block_size), - quantizer_poly(eb / 100 / block_size), - prev_coeffs{0}, current_coeffs{0} { - init_poly(block_size); - } - -// PolyRegressionPredictor(T eb1, T eb2, T eb3) : quantizer_independent(eb1), -// quantizer_liner(eb2), -// quantizer_poly(eb3), -// prev_coeffs{0}, current_coeffs{0} { -// init_poly(); -// } - - using Range = multi_dimensional_range; - using iterator = typename multi_dimensional_range::iterator; - - void precompress_data(const iterator &) const noexcept {} - - void postcompress_data(const iterator &) const noexcept {} - - void predecompress_data(const iterator &) const noexcept {} - - void postdecompress_data(const iterator &) const noexcept {} - - inline T estimate_error(const iterator &iter) const noexcept { - return fabs(*iter - predict(iter)); - } - - bool precompress_block(const std::shared_ptr &range) noexcept { - auto dims = range->get_dimensions(); - for (const auto &dim: dims) { - if (dim <= 2) { - return false; - } - } - std::array sum{0}; - { - for (auto iter = range->begin(); iter != range->end(); ++iter) { - T data = *iter; - auto poly_index = get_poly_index(iter); - for (int i = 0; i < M; i++) { - sum[i] += poly_index[i] * data; - } - } - } -// std::array current_coeffs{0}; - std::fill(current_coeffs.begin(), current_coeffs.end(), 0); - auto coef_aux = coef_aux_list[get_coef_aux_list_idx(dims)]; - - for (int i = 0; i < M; i++) { - for (int j = 0; j < M; j++) { - current_coeffs[i] += coef_aux[i * M + j] * sum[j]; - } - } - return true; - } - - void precompress_block_commit() noexcept { - pred_and_quantize_coefficients(); - std::copy(current_coeffs.begin(), current_coeffs.end(), prev_coeffs.begin()); - } - - template - inline typename std::enable_if>::type get_poly_index(const iterator &iter) const { - double i = iter.get_local_index(0); - - return std::array{1, i, i * i}; - } - - template - inline typename std::enable_if>::type get_poly_index(const iterator &iter) const { - double i = iter.get_local_index(0); - double j = iter.get_local_index(1); - - return std::array{1, i, j, i * i, i * j, j * j}; - } - - template - inline typename std::enable_if>::type - get_poly_index(const iterator &iter) const { - double i = iter.get_local_index(0); - double j = iter.get_local_index(1); - double k = iter.get_local_index(2); - - return std::array{1, i, j, k, i * i, i * j, i * k, j * j, j * k, k * k}; - } - - inline T predict(const iterator &iter) const noexcept { - T pred = 0; - auto poly_index = get_poly_index(iter); - for (int i = 0; i < M; i++) { - pred += poly_index[i] * current_coeffs[i]; - } - return pred; - } - - void save(uchar *&c) const { - c[0] = predictor_id; - c += 1; - *reinterpret_cast(c) = regression_coeff_quant_inds.size(); - c += sizeof(size_t); - if (!regression_coeff_quant_inds.empty()) { - quantizer_independent.save(c); - quantizer_liner.save(c); - quantizer_poly.save(c); - HuffmanEncoder encoder = HuffmanEncoder(); - encoder.preprocess_encode(regression_coeff_quant_inds, 0); - encoder.save(c); - encoder.encode(regression_coeff_quant_inds, c); - encoder.postprocess_encode(); - } - } - - bool predecompress_block(const std::shared_ptr &range) noexcept { - for (const auto &dim: range->get_dimensions()) { - if (dim <= 2) { - return false; - } - } - pred_and_recover_coefficients(); - return true; - } - - void load(const uchar *&c, size_t &remaining_length) { - c += sizeof(uint8_t); - remaining_length -= sizeof(uint8_t); - size_t coeff_size = *reinterpret_cast(c); - c += sizeof(size_t); - remaining_length -= sizeof(size_t); - if (coeff_size != 0) { - quantizer_independent.load(c, remaining_length); - quantizer_liner.load(c, remaining_length); - quantizer_poly.load(c, remaining_length); - HuffmanEncoder encoder = HuffmanEncoder(); - encoder.load(c, remaining_length); - regression_coeff_quant_inds = encoder.decode(c, coeff_size); - encoder.postprocess_decode(); - } - std::fill(current_coeffs.begin(), current_coeffs.end(), 0); - regression_coeff_index = 0; - } - - void print() const { - std::cout << "2-Layer Regression predictor, indendent term eb = " << quantizer_independent.get_eb() << "\n"; - std::cout << "2-Layer Regression predictor, linear term eb = " << quantizer_liner.get_eb() << "\n"; - std::cout << "2-Layer Regression predictor, poly term eb = " << quantizer_poly.get_eb() << "\n"; - } - - void clear() { - quantizer_independent.clear(); - quantizer_liner.clear(); - quantizer_poly.clear(); - regression_coeff_quant_inds.clear(); - regression_coeff_index = 0; - current_coeffs = {0}; - prev_coeffs = {0}; - } - - private: - LinearQuantizer quantizer_independent, quantizer_liner, quantizer_poly; - std::vector regression_coeff_quant_inds; - size_t regression_coeff_index = 0; - std::array current_coeffs; - std::array prev_coeffs; - std::vector> coef_aux_list; - const std::vector COEF_AUX_MAX_BLOCK = {5000, 4096, 64, 16};//The maximum block size supported by PolyReg. - - void init_poly(size_t block_size) { - float *data; - size_t num; - if (N == 1) { - data = COEFF_1D; - num = sizeof(COEFF_1D) / sizeof(float); - } else if (N == 2) { - data = COEFF_2D; - num = sizeof(COEFF_2D) / sizeof(float); - } else if (N == 3) { - data = COEFF_3D; - num = sizeof(COEFF_3D) / sizeof(float); - } else { - printf("Poly regression only supports 1D, 2D, and 3D datasets.\n"); - exit(1); - } - if (block_size > COEF_AUX_MAX_BLOCK[N]) { - printf("%dD Poly regression supports block size upto %d\n.", N, COEF_AUX_MAX_BLOCK[N]); - exit(1); - } - - auto coef_aux_p = &data[0]; - coef_aux_list = std::vector>(COEF_AUX_MAX_BLOCK[0], {0}); - while (coef_aux_p < &data[0] + num) { - std::array dims; - for (auto &idx: dims) { - idx = *coef_aux_p++; - } - std::copy_n(coef_aux_p, M * M, coef_aux_list[get_coef_aux_list_idx(dims)].begin()); - coef_aux_p += M * M; - } -// display_coef_aux(coef_aux_list[get_coef_aux_list_idx( std::array{6, 6, 6})]); - } - -// std::array -// compute_regression_coefficients(const std::shared_ptr &range, const std::array &dims) const { -// std::array sum{0}; -// { -// for (auto iter = range->begin(); iter != range->end(); ++iter) { -// T data = *iter; -// auto poly_index = get_poly_index(iter); -// for (int i = 0; i < M; i++) { -// sum[i] += poly_index[i] * data; -// } -// } -// } -// std::array coeffs{0}; -// auto coef_aux_idx = coef_aux_list[get_coef_aux_list_idx(dims)]; -// -// for (int i = 0; i < M; i++) { -// for (int j = 0; j < M; j++) { -// coeffs[i] += coef_aux_idx[i * M + j] * sum[j]; -// } -// } -// -// std::array coeffsT; -// for (int i = 0; i < M; i++) { -// coeffsT[i] = coeffs[i]; -// } -// return coeffsT; -// } - - void pred_and_quantize_coefficients() { - regression_coeff_quant_inds.push_back( - quantizer_independent.quantize_and_overwrite(current_coeffs[0], prev_coeffs[0])); - for (int i = 1; i < N + 1; i++) { - regression_coeff_quant_inds.push_back( - quantizer_liner.quantize_and_overwrite(current_coeffs[i], prev_coeffs[i])); - } - for (int i = N + 1; i < M; i++) { - regression_coeff_quant_inds.push_back( - quantizer_poly.quantize_and_overwrite(current_coeffs[i], prev_coeffs[i])); - } - } - - void pred_and_recover_coefficients() { - current_coeffs[0] = quantizer_independent.recover(current_coeffs[0], - regression_coeff_quant_inds[regression_coeff_index++]); - for (int i = 1; i < N + 1; i++) { - current_coeffs[i] = quantizer_liner.recover(current_coeffs[i], - regression_coeff_quant_inds[regression_coeff_index++]); - } - for (int i = N + 1; i < M; i++) { - current_coeffs[i] = quantizer_poly.recover(current_coeffs[i], - regression_coeff_quant_inds[regression_coeff_index++]); - } - } - - void display_coef_aux(std::array aux) { - for (int i = 0; i < M; i++) { - for (int j = 0; j < M; j++) - std::cout << std::setw(10) << std::setprecision(6) << aux[i * M + j] << " "; - std::cout << std::endl; - } - } - - inline size_t get_coef_aux_list_idx(const std::array &dims) const { - auto coef_aux_index = 0; - for (auto &dim: dims) { - coef_aux_index = coef_aux_index * COEF_AUX_MAX_BLOCK[N] + dim; - } - return coef_aux_index; - } - }; - -} - -#endif diff --git a/lib/SZ3/include/SZ3/predictor/Predictor.hpp b/lib/SZ3/include/SZ3/predictor/Predictor.hpp index a532a189..49b999bd 100644 --- a/lib/SZ3/include/SZ3/predictor/Predictor.hpp +++ b/lib/SZ3/include/SZ3/predictor/Predictor.hpp @@ -1,133 +1,77 @@ -#ifndef _SZ_PREDICTOR_HPP -#define _SZ_PREDICTOR_HPP +#ifndef SZ3_PREDICTOR_HPP +#define SZ3_PREDICTOR_HPP -#include "SZ3/utils/Iterator.hpp" #include "SZ3/def.hpp" - -namespace SZ { - - - namespace concepts { - - template - class PredictorInterface { - public: - using Range = multi_dimensional_range; - using iterator = typename multi_dimensional_range::iterator; - - virtual ~PredictorInterface() = default; - - virtual void precompress_data(const iterator &) const = 0; - - virtual void postcompress_data(const iterator &) const = 0; - - virtual void predecompress_data(const iterator &) const = 0; - - virtual void postdecompress_data(const iterator &) const = 0; - - virtual bool precompress_block(const std::shared_ptr &) = 0; - - virtual void precompress_block_commit() = 0; - - virtual bool predecompress_block(const std::shared_ptr &) = 0; - - virtual void save(uchar *&c) const = 0; - - virtual void load(const uchar *&c, size_t &remaining_length) = 0; - - virtual T predict(const iterator &iter) const noexcept = 0; - - virtual T estimate_error(const iterator &iter) const noexcept = 0; - - virtual void print() const = 0; - - virtual void clear() = 0; - }; - - /** - * Concept for the predictor class. - * - * Matches classes like the following: - * - * class my_predictor { - * using iterator = std::multi_dimensional_range::iterator - * - * /// returns the prediction for the single element pointed to by the iterator - * T predict(const iterator); - * - * /// pre-processing hook run at the beginning of compression - * void precompress_data(const iterator); - * - * /// post-processing hook run at the end of compression - * void postcompress_data(const iterator); - * - * /// pre-processing hook run before compressing each block - * /// post processing can be done either during postcompress_data or on the next call to precompress_block - * void precompress_block(const iterator); - * - * /// pre-processing hook run at the beginning of decompression - * void predecompress_data(const iterator); - * - * /// pre-processing hook run at the end of decompression - * void postdecompress_data(const iterator); - * - * /// pre-processing hook run before decompressing each block - * /// post processing can be done either during postcompress_data or on the next call to precompress_block - * void predecompress_block(const iterator); - * - * /// returns a string which represents the configuration of the preditor in a serialized form - * std::string save() const; - * - * /// returns a predictor from a serialized form - * static my_predictor load(const unsigned char*&, size_t& len); - * - * }; - */ - -// template -// struct is_predictor : false_type { -// }; -// template -// struct is_predictor().predict(std::declval())), -// decltype(std::declval().precompress_data(std::declval())), -// decltype(std::declval().postcompress_data(std::declval())), -// decltype(std::declval().predecompress_data(std::declval())), -// decltype(std::declval().postdecompress_data(std::declval())), -// // TODO: make the interface for precompress_block -// // decltype(std::declval().precompress_block(std::declval const>())), -// // decltype(std::declval().predecompress_block(std::declval const>())), -// // decltype(std::declval().save()), -// // decltype(T::load(std::declval(), std::declval())) -// decltype(std::declval().save( -// std::declval()) -// ), -// decltype(std::declval().load( -// std::declval(), std::declval()) -// ) -// >> : true_type { -// //we must remove_reference otherwise we get the const-ness of the reference not the underlying type -// // static_assert( -// // std::is_const()) -// // >::type -// // >::value, "const iterators must not be writable"); -// static_assert( -// std::is_same< -// typename std::iterator_traits::value_type, -// decltype(std::declval().predict(std::declval())) -// >::value, "predict must return iterator's value type" -// ); -// // static_assert( -// // std::is_same< -// // decltype(std::declval().save()), -// // std::string -// // >::value, "save must return a string"); -// }; - - } - -} +#include "SZ3/utils/BlockwiseIterator.hpp" + +namespace SZ3::concepts { + +/** + * Data prediction interface + * BlockwiseDecomposition will automatically iterate through multidimensional data to apply the + * Predictor on each data point. + * @tparam T original data type + * @tparam N original data dimension + * + */ +template +class PredictorInterface { + public: + using block_iter = typename block_data::block_iterator; + + virtual ~PredictorInterface() = default; + + /** + * predict the value for a single data point + * @param block_iter the iterator of the block + * @param T* the pointer to the single data point + * @param std::array the relative index of the data point in the block + * @return the predicted value + */ + ALWAYS_INLINE virtual T predict(const block_iter &, T *, const std::array &) = 0; + + /** + * estimate the prediction error ( |prediction value - read value|) for a single data point + * @param iter the iterator of the single data point + * @return the estimated prediction error + */ + ALWAYS_INLINE virtual T estimate_error(const block_iter &, T *, const std::array &) = 0; + + /** + * compute auxiliary info (e.g., coefficients) for the given data block + * @param block_iter of the block + * @return whether the predictor is suitable for the block (e.g., data with 100x1 shape is not suitable for 2D + * regression) + */ + virtual bool precompress(const block_iter &) = 0; + + /** + * store the auxiliary info (e.g., coefficients) to this class's internal storage + */ + virtual void precompress_block_commit() = 0; + + virtual bool predecompress(const block_iter &) = 0; + + /** + * serialize the predictor and store it to a buffer + * @param c One large buffer is pre-allocated, and the start location of the serialized predictor in the buffer is + * indicated by c. After saving the predictor to the buffer, this function should change c to indicate the next + * empty location in the buffer + */ + virtual void save(uchar *&c) = 0; + + /** + * deserialize the predictor from a buffer + * @param c start location of the predictor in the buffer + * @param remaining_length the remaining length of the buffer + */ + virtual void load(const uchar *&c, size_t &remaining_length) = 0; + + virtual size_t get_padding() { return 0; } + + virtual void print() const = 0; +}; + +} // namespace SZ3::concepts #endif diff --git a/lib/SZ3/include/SZ3/predictor/RegressionPredictor.hpp b/lib/SZ3/include/SZ3/predictor/RegressionPredictor.hpp index 4b09c61c..c4eee14f 100644 --- a/lib/SZ3/include/SZ3/predictor/RegressionPredictor.hpp +++ b/lib/SZ3/include/SZ3/predictor/RegressionPredictor.hpp @@ -1,244 +1,169 @@ -#ifndef _SZ_REGRESSION_PREDICTOR_HPP -#define _SZ_REGRESSION_PREDICTOR_HPP +#ifndef SZ3_REGRESSION_PREDICTOR_HPP +#define SZ3_REGRESSION_PREDICTOR_HPP -#include "SZ3/def.hpp" -#include "SZ3/utils/Iterator.hpp" -#include "SZ3/predictor/Predictor.hpp" -#include "SZ3/quantizer/IntegerQuantizer.hpp" -#include "SZ3/encoder/HuffmanEncoder.hpp" -#include #include -#include - -namespace SZ { - -// N-d regression predictor - template - class RegressionPredictor : public concepts::PredictorInterface { - public: - static const uint8_t predictor_id = 0b00000010; - - RegressionPredictor() : quantizer_independent(0), quantizer_liner(0), prev_coeffs{0}, current_coeffs{0} {} - - RegressionPredictor(uint block_size, double eb) : quantizer_independent(eb / (N + 1)), - quantizer_liner(eb / (N + 1) / block_size), - prev_coeffs{0}, current_coeffs{0} { - } - - RegressionPredictor(uint block_size, double eb1, double eb2) : quantizer_independent(eb1), - quantizer_liner(eb2), - prev_coeffs{0}, current_coeffs{0} { - } - - using Range = multi_dimensional_range; - using iterator = typename multi_dimensional_range::iterator; - - void precompress_data(const iterator &) const noexcept {} - void postcompress_data(const iterator &) const noexcept {} - - void predecompress_data(const iterator &) const noexcept {} - - void postdecompress_data(const iterator &) const noexcept {} - - inline T estimate_error(const iterator &iter) const noexcept { - return fabs(*iter - predict(iter)); - } - - bool precompress_block(const std::shared_ptr &range) noexcept { - auto dims = range->get_dimensions(); - size_t num_elements = 1; - for (const auto &dim: dims) { - num_elements *= dim; - if (dim <= 1) { - return false; - } - } +#include "SZ3/encoder/HuffmanEncoder.hpp" +#include "SZ3/predictor/Predictor.hpp" +#include "SZ3/quantizer/LinearQuantizer.hpp" - T num_elements_recip = 1.0 / num_elements; - std::array sum{0}; - - { - auto range_begin = range->begin(); - auto range_end = range->end(); - for (auto iter = range_begin; iter != range_end; ++iter) { - double sum_cumulative = 0; - for (int t = 0; t < dims[N - 1]; t++) { - T data = *iter; - sum_cumulative += data; - sum[N - 1] += (double) iter.get_local_index(N - 1) * data; - iter.move(); - } - for (int i = 0; i < N - 1; i++) { - sum[i] += sum_cumulative * iter.get_local_index(i); - } - sum[N] += sum_cumulative; - } - } +namespace SZ3 { - std::fill(current_coeffs.begin(), current_coeffs.end(), 0); - current_coeffs[N] = sum[N] * num_elements_recip; - for (int i = 0; i < N; i++) { - current_coeffs[i] = (2 * sum[i] / (dims[i] - 1) - sum[N]) * 6 * num_elements_recip / (dims[i] + 1); - current_coeffs[N] -= (dims[i] - 1) * current_coeffs[i] / 2; +// N-d regression predictor +template +class RegressionPredictor : public concepts::PredictorInterface { + public: + using block_iter = typename block_data::block_iterator; + + static const uint8_t predictor_id = 0b00000010; + + RegressionPredictor() : quantizer_independent(0), quantizer_liner(0), prev_coeffs{0}, current_coeffs{0} {} + + RegressionPredictor(uint block_size, double eb) + : quantizer_independent(eb / (N + 1)), + quantizer_liner(eb / (N + 1) / block_size), + prev_coeffs{0}, + current_coeffs{0} {} + + bool precompress(const block_iter &block) override { + auto range = block.get_block_range(); + + std::array dims{0}; + double num_elements = 1; + for (int i = 0; i < N; i++) { + dims[i] = range[i].second - range[i].first; + if (dims[i] <= 1) { + return false; } - return true; - } - - void precompress_block_commit() noexcept { - pred_and_quantize_coefficients(); - std::copy(current_coeffs.begin(), current_coeffs.end(), prev_coeffs.begin()); + num_elements *= dims[i]; } - inline T predict(const iterator &iter) const noexcept { - T pred = 0; + std::array sum{0}; + block_iter::foreach (block, [&](T *c, const std::array &index) { for (int i = 0; i < N; i++) { - pred += iter.get_local_index(i) * current_coeffs[i]; + sum[i] += index[i] * (*c); } - pred += current_coeffs[N]; - return pred; + sum[N] += *c; + }); + std::fill(current_coeffs.begin(), current_coeffs.end(), 0); + current_coeffs[N] = sum[N] / num_elements; + for (int i = 0; i < N; i++) { + current_coeffs[i] = (2 * sum[i] / (dims[i] - 1) - sum[N]) * 6 / num_elements / (dims[i] + 1); + current_coeffs[N] -= (dims[i] - 1) * current_coeffs[i] / 2; } - - void save(uchar *&c) const { - - c[0] = 0b00000010; - c += sizeof(uint8_t); - *reinterpret_cast(c) = regression_coeff_quant_inds.size(); - c += sizeof(size_t); - if (!regression_coeff_quant_inds.empty()) { - quantizer_independent.save(c); - quantizer_liner.save(c); - HuffmanEncoder encoder = HuffmanEncoder(); - encoder.preprocess_encode(regression_coeff_quant_inds,0); - encoder.save(c); - encoder.encode(regression_coeff_quant_inds, c); - encoder.postprocess_encode(); + return true; + } + + void precompress_block_commit() noexcept override { + pred_and_quantize_coefficients(); + std::copy(current_coeffs.begin(), current_coeffs.end(), prev_coeffs.begin()); + } + + bool predecompress(const block_iter &block) override { + auto range = block.get_block_range(); + for (const auto &r : range) { + if (r.second - r.first <= 1) { + return false; } } - - bool predecompress_block(const std::shared_ptr &range) noexcept { - for (const auto &dim: range->get_dimensions()) { - if (dim <= 1) { - return false; - } - } - pred_and_recover_coefficients(); - return true; + pred_and_recover_coefficients(); + return true; + } + + ALWAYS_INLINE T estimate_error(const block_iter &block, T *d, const std::array &index) override { + return fabs(*d - predict(block, d, index)); + } + + ALWAYS_INLINE T predict(const block_iter &block, T *d, const std::array &index) override { + if constexpr (N == 1) { + return current_coeffs[0] * index[0] + current_coeffs[1]; + } else if constexpr (N == 2) { + return current_coeffs[0] * index[0] + current_coeffs[1] * index[1] + current_coeffs[2]; + } else if constexpr (N == 3) { + return current_coeffs[0] * index[0] + current_coeffs[1] * index[1] + current_coeffs[2] * index[2] + + current_coeffs[3]; + } else if constexpr (N == 4) { + return current_coeffs[0] * index[0] + current_coeffs[1] * index[1] + current_coeffs[2] * index[2] + + current_coeffs[3] * index[3] + current_coeffs[4]; + } else { + static_assert(N <= 4, "Unsupported dimension or layer configuration"); + return T(0); } - - void load(const uchar *&c, size_t &remaining_length) { - //TODO: adjust remaining_length - c += sizeof(uint8_t); - remaining_length -= sizeof(uint8_t); - - size_t coeff_size = *reinterpret_cast(c); - c += sizeof(size_t); - remaining_length -= sizeof(size_t); - if (coeff_size != 0) { - - quantizer_independent.load(c, remaining_length); - quantizer_liner.load(c, remaining_length); - HuffmanEncoder encoder = HuffmanEncoder(); - encoder.load(c, remaining_length); - regression_coeff_quant_inds = encoder.decode(c, coeff_size); - encoder.postprocess_decode(); - remaining_length -= coeff_size * sizeof(int); - std::fill(current_coeffs.begin(), current_coeffs.end(), 0); - regression_coeff_index = 0; - } - } - - void print() const { - std::cout << "Regression predictor, indendent term eb = " << quantizer_independent.get_eb() << "\n"; - std::cout << "Regression predictor, linear term eb = " << quantizer_liner.get_eb() << "\n"; - int count = 0; - int ind = regression_coeff_index ? regression_coeff_index : regression_coeff_quant_inds.size(); - std::cout << "Prev coeffs: "; - for (const auto &c: prev_coeffs) { - std::cout << c << " "; - } - std::cout << "\nCurrent coeffs: "; - for (const auto &c: current_coeffs) { - std::cout << c << " "; - } - std::cout << std::endl; + } + + void save(uchar *&c) override { + write(regression_coeff_quant_inds.size(), c); + if (!regression_coeff_quant_inds.empty()) { + quantizer_independent.save(c); + quantizer_liner.save(c); + HuffmanEncoder encoder = HuffmanEncoder(); + encoder.preprocess_encode( + regression_coeff_quant_inds, + std::max(quantizer_independent.get_out_range().second, quantizer_liner.get_out_range().second)); + encoder.save(c); + encoder.encode(regression_coeff_quant_inds, c); + encoder.postprocess_encode(); } - - void clear() { - quantizer_liner.clear(); - quantizer_independent.clear(); - regression_coeff_quant_inds.clear(); + } + + void load(const uchar *&c, size_t &remaining_length) override { + size_t coeff_size = 0; + read(coeff_size, c, remaining_length); + if (coeff_size > 0) { + quantizer_independent.load(c, remaining_length); + quantizer_liner.load(c, remaining_length); + HuffmanEncoder encoder = HuffmanEncoder(); + encoder.load(c, remaining_length); + regression_coeff_quant_inds = encoder.decode(c, coeff_size); + encoder.postprocess_decode(); + remaining_length -= coeff_size * sizeof(int); + std::fill(current_coeffs.begin(), current_coeffs.end(), 0); regression_coeff_index = 0; - current_coeffs = {0}; - prev_coeffs = {0}; } - - std::array get_current_coeffs() { - return current_coeffs; + } + + void print() const override { + std::cout << "Regression predictor, indendent term eb = " << quantizer_independent.get_eb() << "\n"; + std::cout << "Regression predictor, linear term eb = " << quantizer_liner.get_eb() << "\n"; + // int count = 0; + // int ind = regression_coeff_index ? regression_coeff_index : regression_coeff_quant_inds.size(); + std::cout << "Prev coeffs: "; + for (const auto &c : prev_coeffs) { + std::cout << c << " "; } - - void set_current_coeffs(std::array coeff) { - current_coeffs = coeff; + std::cout << "\nCurrent coeffs: "; + for (const auto &c : current_coeffs) { + std::cout << c << " "; } - - private: - LinearQuantizer quantizer_liner, quantizer_independent; - std::vector regression_coeff_quant_inds; - size_t regression_coeff_index = 0; - std::array current_coeffs; - std::array prev_coeffs; - -// template -// inline typename std::enable_if>::type -// compute_regression_coefficients(const std::shared_ptr &range) const { -// auto dims = range->get_dimensions(); -// std::array sum{0}; -// -// auto range_begin = range->begin(); -// auto range_end = range->end(); -// auto iter = range_begin; -// for (int t0 = 0; t0 < dims[0]; t0++) { -// double sum_cumulative_0 = 0; -// for (int t1 = 0; t1 < dims[1]; t1++) { -// double sum_cumulative_1 = 0; -// for (int t2 = 0; t2 < dims[2]; t2++) { -// T data = *iter; -// sum_cumulative_1 += data; -// sum[N - 1] += t2 * data; -// iter.move(); -// } -// sum[1] += sum_cumulative_1 * t1; -// sum_cumulative_0 += sum_cumulative_1; -// ++iter; -// } -// sum[0] += sum_cumulative_0 * t0; -// sum[N] += sum_cumulative_0; -// } -// return sum; -// } - - - void pred_and_quantize_coefficients() { - for (int i = 0; i < N; i++) { - regression_coeff_quant_inds.push_back(quantizer_liner.quantize_and_overwrite(current_coeffs[i], prev_coeffs[i])); - } + std::cout << std::endl; + } + + private: + LinearQuantizer quantizer_liner, quantizer_independent; + std::vector regression_coeff_quant_inds; + size_t regression_coeff_index = 0; + std::array current_coeffs; + std::array prev_coeffs; + + void pred_and_quantize_coefficients() { + for (int i = 0; i < static_cast(N); i++) { regression_coeff_quant_inds.push_back( - quantizer_independent.quantize_and_overwrite(current_coeffs[N], prev_coeffs[N])); + quantizer_liner.quantize_and_overwrite(current_coeffs[i], prev_coeffs[i])); } - - void pred_and_recover_coefficients() { - for (int i = 0; i < N; i++) { - current_coeffs[i] = quantizer_liner.recover(current_coeffs[i], - regression_coeff_quant_inds[regression_coeff_index++]); - } - current_coeffs[N] = quantizer_independent.recover(current_coeffs[N], - regression_coeff_quant_inds[regression_coeff_index++]); -// for (auto &coeffs : current_coeffs) { -// coeffs = quantizer.recover(coeffs, regression_coeff_quant_inds[regression_coeff_index++]); -// } + regression_coeff_quant_inds.push_back( + quantizer_independent.quantize_and_overwrite(current_coeffs[N], prev_coeffs[N])); + } + + void pred_and_recover_coefficients() { + for (int i = 0; i < static_cast(N); i++) { + current_coeffs[i] = + quantizer_liner.recover(current_coeffs[i], regression_coeff_quant_inds[regression_coeff_index++]); } - }; + current_coeffs[N] = + quantizer_independent.recover(current_coeffs[N], regression_coeff_quant_inds[regression_coeff_index++]); + } +}; -} +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/preprocessor/PreFilter.hpp b/lib/SZ3/include/SZ3/preprocessor/PreFilter.hpp index 46f2476b..eefc2a5c 100644 --- a/lib/SZ3/include/SZ3/preprocessor/PreFilter.hpp +++ b/lib/SZ3/include/SZ3/preprocessor/PreFilter.hpp @@ -7,7 +7,7 @@ #include "SZ3/preprocessor/PreProcessor.hpp" -namespace SZ { +namespace SZ3 { template class PreFilter : public concepts::PreprocessorInterface { diff --git a/lib/SZ3/include/SZ3/preprocessor/PreProcessor.hpp b/lib/SZ3/include/SZ3/preprocessor/PreProcessor.hpp index f63a83fa..be997d28 100644 --- a/lib/SZ3/include/SZ3/preprocessor/PreProcessor.hpp +++ b/lib/SZ3/include/SZ3/preprocessor/PreProcessor.hpp @@ -2,12 +2,12 @@ // Created by Kai Zhao on 6/12/20. // -#ifndef SZ_PREPROCESSOR_HPP -#define SZ_PREPROCESSOR_HPP +#ifndef SZ3_PREPROCESSOR_HPP +#define SZ3_PREPROCESSOR_HPP #include "SZ3/def.hpp" -namespace SZ { +namespace SZ3 { namespace concepts { template diff --git a/lib/SZ3/include/SZ3/preprocessor/Transpose.hpp b/lib/SZ3/include/SZ3/preprocessor/Transpose.hpp index e775600d..b017a79b 100644 --- a/lib/SZ3/include/SZ3/preprocessor/Transpose.hpp +++ b/lib/SZ3/include/SZ3/preprocessor/Transpose.hpp @@ -7,7 +7,7 @@ #include "SZ3/preprocessor/PreProcessor.hpp" -namespace SZ { +namespace SZ3 { template class Transpose : public concepts::PreprocessorInterface { diff --git a/lib/SZ3/include/SZ3/preprocessor/Wavelet.hpp b/lib/SZ3/include/SZ3/preprocessor/Wavelet.hpp index a73a49f3..6d8f0b6e 100644 --- a/lib/SZ3/include/SZ3/preprocessor/Wavelet.hpp +++ b/lib/SZ3/include/SZ3/preprocessor/Wavelet.hpp @@ -1,12 +1,12 @@ #ifndef SZ3_WAVELET_HPP #define SZ3_WAVELET_HPP -#ifdef ENABLE_GSL +#ifdef SZ3_ENABLE_GSL #include "SZ3/preprocessor/PreProcessor.hpp" #include -namespace SZ { +namespace SZ3 { template class Wavelet : public concepts::PreprocessorInterface { @@ -34,8 +34,7 @@ namespace SZ { int status = gsl_wavelet_transform_forward(w, dwtdata.data(), 1, m, work); if (status != GSL_SUCCESS) { - printf("Error: wavelets transform failed.\n"); - exit(0); + throw std::runtime_error("Error: wavelets transform failed."); } for (size_t i = 0; i < n; i++) { @@ -70,8 +69,7 @@ namespace SZ { int status = gsl_wavelet_transform_inverse(w, dwtdata.data(), 1, m, work); if (status != GSL_SUCCESS) { - printf("Error: wavelets transform failed.\n"); - exit(0); + throw std::runtime_error("Error: wavelets transform failed."); } for (size_t i = 0; i < n; i++) { diff --git a/lib/SZ3/include/SZ3/quantizer/IntegerQuantizer.hpp b/lib/SZ3/include/SZ3/quantizer/IntegerQuantizer.hpp deleted file mode 100644 index d1a2b24c..00000000 --- a/lib/SZ3/include/SZ3/quantizer/IntegerQuantizer.hpp +++ /dev/null @@ -1,204 +0,0 @@ -#ifndef _SZ_INTEGER_QUANTIZER_HPP -#define _SZ_INTEGER_QUANTIZER_HPP - -#include -#include -#include -#include -#include "SZ3/def.hpp" -#include "SZ3/quantizer/Quantizer.hpp" - -namespace SZ { - - template - class LinearQuantizer : public concepts::QuantizerInterface { - public: - LinearQuantizer() : error_bound(1), error_bound_reciprocal(1), radius(32768) {} - - LinearQuantizer(double eb, int r = 32768) : error_bound(eb), - error_bound_reciprocal(1.0 / eb), - radius(r) { - assert(eb != 0); - } - - int get_radius() const { return radius; } - - double get_eb() const { return error_bound; } - - void set_eb(double eb) { - error_bound = eb; - error_bound_reciprocal = 1.0 / eb; - } - - // quantize the data with a prediction value, and returns the quantization index - int quantize(T data, T pred) { - T diff = data - pred; - int quant_index = (int) (fabs(diff) * this->error_bound_reciprocal) + 1; - if (quant_index < this->radius * 2) { - quant_index >>= 1; - int half_index = quant_index; - quant_index <<= 1; - int quant_index_shifted; - if (diff < 0) { - quant_index = -quant_index; - quant_index_shifted = this->radius - half_index; - } else { - quant_index_shifted = this->radius + half_index; - } - T decompressed_data = pred + quant_index * this->error_bound; - if (fabs(decompressed_data - data) > this->error_bound) { - return 0; - } else { - return quant_index_shifted; - } - } else { - return 0; - } - } - - // quantize the data with a prediction value, and returns the quantization index and the decompressed data - // int quantize(T data, T pred, T& dec_data); - int quantize_and_overwrite(T &data, T pred) { - T diff = data - pred; - int quant_index = (int) (fabs(diff) * this->error_bound_reciprocal) + 1; - if (quant_index < this->radius * 2) { - quant_index >>= 1; - int half_index = quant_index; - quant_index <<= 1; - int quant_index_shifted; - if (diff < 0) { - quant_index = -quant_index; - quant_index_shifted = this->radius - half_index; - } else { - quant_index_shifted = this->radius + half_index; - } - T decompressed_data = pred + quant_index * this->error_bound; - if (fabs(decompressed_data - data) > this->error_bound) { - unpred.push_back(data); - return 0; - } else { - data = decompressed_data; - return quant_index_shifted; - } - } else { - unpred.push_back(data); - return 0; - } - } - - int quantize_and_overwrite(T ori, T pred, T &dest) { - T diff = ori - pred; - int quant_index = (int) (fabs(diff) * this->error_bound_reciprocal) + 1; - if (quant_index < this->radius * 2) { - quant_index >>= 1; - int half_index = quant_index; - quant_index <<= 1; - int quant_index_shifted; - if (diff < 0) { - quant_index = -quant_index; - quant_index_shifted = this->radius - half_index; - } else { - quant_index_shifted = this->radius + half_index; - } - T decompressed_data = pred + quant_index * this->error_bound; - if (fabs(decompressed_data - ori) > this->error_bound) { - unpred.push_back(ori); - dest = ori; - return 0; - } else { - dest = decompressed_data; - return quant_index_shifted; - } - } else { - unpred.push_back(ori); - dest = ori; - return 0; - } - } - - // recover the data using the quantization index - T recover(T pred, int quant_index) { - if (quant_index) { - return recover_pred(pred, quant_index); - } else { - return recover_unpred(); - } - } - - - T recover_pred(T pred, int quant_index) { - return pred + 2 * (quant_index - this->radius) * this->error_bound; - } - - T recover_unpred() { - return unpred[index++]; - } - - size_t size_est() { - return unpred.size() * sizeof(T); - } - - void save(unsigned char *&c) const { - // std::string serialized(sizeof(uint8_t) + sizeof(T) + sizeof(int),0); - c[0] = 0b00000010; - c += 1; - *reinterpret_cast(c) = this->error_bound; - c += sizeof(double); - *reinterpret_cast(c) = this->radius; - c += sizeof(int); - *reinterpret_cast(c) = unpred.size(); - c += sizeof(size_t); - memcpy(c, unpred.data(), unpred.size() * sizeof(T)); - c += unpred.size() * sizeof(T); - }; - - void load(const unsigned char *&c, size_t &remaining_length) { - assert(remaining_length > (sizeof(uint8_t) + sizeof(T) + sizeof(int))); - c += sizeof(uint8_t); - remaining_length -= sizeof(uint8_t); - this->error_bound = *reinterpret_cast(c); - this->error_bound_reciprocal = 1.0 / this->error_bound; - c += sizeof(double); - this->radius = *reinterpret_cast(c); - c += sizeof(int); - size_t unpred_size = *reinterpret_cast(c); - c += sizeof(size_t); - this->unpred = std::vector(reinterpret_cast(c), reinterpret_cast(c) + unpred_size); - c += unpred_size * sizeof(T); - // std::cout << "loading: eb = " << this->error_bound << ", unpred_num = " << unpred.size() << std::endl; - // reset index - index = 0; - } - - void print() { - printf("[IntegerQuantizer] error_bound = %.8G, radius = %d, unpred = %lu\n", error_bound, radius, unpred.size()); - } - - void clear() { - unpred.clear(); - index = 0; - } - - - virtual void postcompress_data() { - } - - virtual void postdecompress_data() { - } - - virtual void precompress_data() {}; - - virtual void predecompress_data() {}; - - - private: - std::vector unpred; - size_t index = 0; // used in decompression only - - double error_bound; - double error_bound_reciprocal; - int radius; // quantization interval radius - }; - -} -#endif diff --git a/lib/SZ3/include/SZ3/quantizer/LinearQuantizer.hpp b/lib/SZ3/include/SZ3/quantizer/LinearQuantizer.hpp new file mode 100644 index 00000000..3790af10 --- /dev/null +++ b/lib/SZ3/include/SZ3/quantizer/LinearQuantizer.hpp @@ -0,0 +1,130 @@ +#ifndef SZ3_LINEAR_QUANTIZER_HPP +#define SZ3_LINEAR_QUANTIZER_HPP + +#include +#include +#include +#include + +#include "SZ3/def.hpp" +#include "SZ3/quantizer/Quantizer.hpp" +#include "SZ3/utils/MemoryUtil.hpp" + +namespace SZ3 { + +template +class LinearQuantizer : public concepts::QuantizerInterface { + public: + LinearQuantizer() : error_bound(1), error_bound_reciprocal(1), radius(32768) {} + + LinearQuantizer(double eb, int r = 32768) : error_bound(eb), error_bound_reciprocal(1.0 / eb), radius(r) { + assert(eb != 0); + } + + double get_eb() const { return error_bound; } + + void set_eb(double eb) { + error_bound = eb; + error_bound_reciprocal = 1.0 / eb; + } + + std::pair get_out_range() const override { return std::make_pair(0, radius * 2); } + + // quantize the data with a prediction value, and returns the quantization index and the decompressed data + // int quantize(T data, T pred, T& dec_data); + ALWAYS_INLINE int quantize_and_overwrite(T &data, T pred) override { + T diff = data - pred; + auto quant_index = static_cast(fabs(diff) * this->error_bound_reciprocal) + 1; + if (quant_index < this->radius * 2) { + quant_index >>= 1; + int half_index = quant_index; + quant_index <<= 1; + int quant_index_shifted; + if (diff < 0) { + quant_index = -quant_index; + quant_index_shifted = this->radius - half_index; + } else { + quant_index_shifted = this->radius + half_index; + } + T decompressed_data = pred + quant_index * this->error_bound; + // if data is NaN, the error is NaN, and NaN <= error_bound is false + if (fabs(decompressed_data - data) <= this->error_bound) { + data = decompressed_data; + return quant_index_shifted; + } else { + unpred.push_back(data); + return 0; + } + } else { + unpred.push_back(data); + return 0; + } + } + + // recover the data using the quantization index + ALWAYS_INLINE T recover(T pred, int quant_index) override { + if (quant_index) { + return recover_pred(pred, quant_index); + } else { + return recover_unpred(); + } + } + + ALWAYS_INLINE T recover_pred(T pred, int quant_index) { + return pred + 2 * (quant_index - this->radius) * this->error_bound; + } + + ALWAYS_INLINE T recover_unpred() { return unpred[index++]; } + + ALWAYS_INLINE int force_save_unpred(T ori) override { + unpred.push_back(ori); + return 0; + } + + size_t size_est() { return unpred.size() * sizeof(T); } + + void save(unsigned char *&c) const override { + write(uid, c); + write(this->error_bound, c); + write(this->radius, c); + size_t unpred_size = unpred.size(); + write(unpred_size, c); + if (unpred_size > 0) { + write(unpred.data(), unpred.size(), c); + } + } + + void load(const unsigned char *&c, size_t &remaining_length) override { + uchar uid_read; + read(uid_read, c, remaining_length); + if (uid_read != uid) { + throw std::invalid_argument("LinearQuantizer uid mismatch"); + } + read(this->error_bound, c, remaining_length); + this->error_bound_reciprocal = 1.0 / this->error_bound; + read(this->radius, c, remaining_length); + size_t unpred_size = 0; + read(unpred_size, c, remaining_length); + if (unpred_size > 0) { + unpred.resize(unpred_size); + read(unpred.data(), unpred_size, c, remaining_length); + } + index = 0; + } + + void print() override { + printf("[LinearQuantizer] error_bound = %.8G, radius = %d, unpred = %zu\n", error_bound, radius, unpred.size()); + } + + private: + std::vector unpred; + size_t index = 0; // used in decompression only + uchar uid = 0b10; + + double error_bound; + double error_bound_reciprocal; + int radius; // quantization interval radius +}; + +} // namespace SZ3 +#endif \ No newline at end of file diff --git a/lib/SZ3/include/SZ3/quantizer/Quantizer.hpp b/lib/SZ3/include/SZ3/quantizer/Quantizer.hpp index 0fd38863..748a4204 100644 --- a/lib/SZ3/include/SZ3/quantizer/Quantizer.hpp +++ b/lib/SZ3/include/SZ3/quantizer/Quantizer.hpp @@ -1,48 +1,71 @@ -#ifndef _SZ_QUANTIZER_HPP -#define _SZ_QUANTIZER_HPP - - -namespace SZ { - namespace concepts { - - template - class QuantizerInterface { - public: - - virtual ~QuantizerInterface() = default; - - virtual int quantize(T data, T pred) = 0; - - virtual int quantize_and_overwrite(T &data, T pred) = 0; - - virtual T recover(T pred, int quant_index) = 0; - - /** - * reset quantizer to initial state - */ - virtual void clear() = 0; - - virtual void save(uchar *&c) const = 0; - - virtual void load(const uchar *&c, size_t &remaining_length) = 0; - - virtual void precompress_data() = 0; - - virtual void predecompress_data() = 0; - - /** - * this function is always executed before save() - * DO NOT reset non-temporary variables (such as unpredictable_data) in this function. - */ - virtual void postcompress_data() = 0; - - /** - * DO NOT reset non-temporary variables (such as unpredictable_data) in this function. - */ - virtual void postdecompress_data() = 0; - - }; - } -} +#ifndef SZ3_QUANTIZER_HPP +#define SZ3_QUANTIZER_HPP + +namespace SZ3::concepts { + +/** + * quantize a single data point with precision loss + * E.g: float->int + * @tparam Ti original data type + * @tparam To quantized data type + */ +template +class QuantizerInterface { + public: + virtual ~QuantizerInterface() = default; + + /** + * quantize the error (error=data-pred) based on error bound, and overwrite the data with reconstructed value + * @param data single data point + * @param pred predicted value for this data point + * @return quantized error + */ + ALWAYS_INLINE virtual To quantize_and_overwrite(Ti &data, Ti pred) = 0; + + /** + * reconstructed the data point + * @param pred predicted value for the data point + * @param quant_index quantized error + * @return reconstructed value of the data point + */ + ALWAYS_INLINE virtual Ti recover(Ti pred, To quant_index) = 0; + + virtual To force_save_unpred(Ti ori) = 0; + + /** + ** serialize the quantizer and store it to a buffer + * @param c One large buffer is pre-allocated, and the start location of the serialized quantizer in the buffer is + *indicated by c. After saving the quantizer to the buffer, this function should change c to indicate the next empty + *location in the buffer + */ + virtual void save(uchar *&c) const = 0; + + /** + * deserialize the quantizer from a buffer + * @param c start location of the quantizer in the buffer + * @param remaining_length the remaining length of the buffer + */ + virtual void load(const uchar *&c, size_t &remaining_length) = 0; + + virtual std::pair get_out_range() const = 0; + + virtual void precompress_data() {} + + virtual void predecompress_data() {} + + /** + * this function is always executed before save() + * DO NOT reset non-temporary variables (such as unpredictable_data) in this function. + */ + virtual void postcompress_data() {} + + /** + * DO NOT reset non-temporary variables (such as unpredictable_data) in this function. + */ + virtual void postdecompress_data() {} + + virtual void print() {} +}; +} // namespace SZ3::concepts #endif diff --git a/lib/SZ3/include/SZ3/utils/BlockwiseIterator.hpp b/lib/SZ3/include/SZ3/utils/BlockwiseIterator.hpp new file mode 100644 index 00000000..52c62aec --- /dev/null +++ b/lib/SZ3/include/SZ3/utils/BlockwiseIterator.hpp @@ -0,0 +1,325 @@ +#ifndef SZ3_BLOCKWISE_ITERATOR_HPP +#define SZ3_BLOCKWISE_ITERATOR_HPP + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace SZ3 { + +/** + * @brief A class representing block data with N dimensions. + * + * This class provides functionality for managing multidimensional data blocks, + * including iterating over blocks, copying data in and out, and handling padding. + * + * @tparam T The type of the data elements. + * @tparam N The number of dimensions. + */ +template +class block_data : public std::enable_shared_from_this> { + public: + /** + * @brief A nested class for iterating over blocks of data. + */ + class block_iterator { + public: + /** + * @brief Constructs a block iterator. + * + * @param mddata_ A shared pointer to the block data. + * @param block_size_ The size of each block. + */ + block_iterator(std::shared_ptr &&mddata_, size_t block_size_) noexcept + : mddata(mddata_), block_size(block_size_) { + std::fill(offset.begin(), offset.end(), 0); + } + + /** + * @brief Advances the iterator to the next block. + * + * @return true if the iterator successfully moved to the next block, false otherwise. + */ + ALWAYS_INLINE bool next() { + size_t i = N - 1; + offset[i] += block_size; + while (i && (offset[i] >= mddata->dims[i])) { + offset[i] = 0; + offset[--i] += block_size; + } + return (offset[0] < mddata->dims[0]); + } + + /** + * @brief Gets the range of the current block in each dimension. + * + * @return An array of pairs representing the [start, end) indices of the block in each dimension. + */ + ALWAYS_INLINE std::array, N> get_block_range() const { + std::array, N> range; + for (int i = 0; i < N; i++) { + range[i].first = offset[i]; + range[i].second = std::min(offset[i] + block_size, mddata->dims[i]); + } + return range; + } + + /** + * @brief Gets a pointer to the data of the current block. + * + * @tparam args The relative indices within the block. + * @return A pointer to the data at the specified indices. + */ + template + ALWAYS_INLINE T *get_block_data(Idx... args) const { + auto ds = get_dim_strides(); + auto idx = std::array{static_cast(std::forward(args))...}; + size_t off = 0; + for (int i = 0; i < N; i++) { + off += (idx[i] + offset[i]) * ds[i]; + } + return mddata->dataptr() + off; + } + + /** + * @brief Gets the strides for each dimension, including padding. + * + * @return An array of strides for each dimension. + */ + ALWAYS_INLINE std::array get_dim_strides() const { return mddata->ds_padding; } + + /** + * @brief Iterates over all elements in the current block and applies a function. + * + * @tparam Func The type of the function to apply. + * @param block The block iterator. + * @param func The function to apply to each element. + */ + template + static ALWAYS_INLINE void foreach (const block_iterator &block, Func && func) { + auto range = block.get_block_range(); + if constexpr (N == 1) { + T *d = block.get_block_data(0); + for (size_t i = 0; i < range[0].second - range[0].first; i++) { + func(d++, {i}); + } + } else if constexpr (N == 2) { + for (size_t i = 0; i < range[0].second - range[0].first; i++) { + T *d = block.get_block_data(i, 0); + for (size_t j = 0; j < range[1].second - range[1].first; j++) { + func(d++, {i, j}); + } + } + } else if constexpr (N == 3) { + for (size_t i = 0; i < range[0].second - range[0].first; i++) { + for (size_t j = 0; j < range[1].second - range[1].first; j++) { + T *d = block.get_block_data(i, j, 0); + for (size_t k = 0; k < range[2].second - range[2].first; k++) { + func(d++, {i, j, k}); + } + } + } + } else if constexpr (N == 4) { + for (size_t i = 0; i < range[0].second - range[0].first; i++) { + for (size_t j = 0; j < range[1].second - range[1].first; j++) { + for (size_t k = 0; k < range[2].second - range[2].first; k++) { + T *d = block.get_block_data(i, j, k, 0); + for (size_t t = 0; t < range[3].second - range[3].first; t++) { + func(d++, {i, j, k, t}); + } + } + } + } + } else { + throw std::invalid_argument("N (dimension) should be less than 5"); + } + } + + /** + * @brief Iterates over sampled elements in the current block and applies a function. + * + * @tparam Func The type of the function to apply. + * @param block The block iterator. + * @param func The function to apply to sampled elements. + */ + template + static ALWAYS_INLINE void foreach_sampling(const block_iterator &block, Func &&func) { + size_t min_size = std::numeric_limits::max(); + for (const auto &r : block.get_block_range()) { + min_size = std::min(min_size, r.second - r.first); + } + if constexpr (N == 1) { + func(block.get_block_data(0), {0}); + func(block.get_block_data(min_size - 1), {min_size - 1}); + } else if constexpr (N <= 4) { + for (size_t i = 0; i < min_size; i++) { + size_t j = min_size - 1 - i; + if constexpr (N == 2) { + func(block.get_block_data(i, i), {i, i}); + func(block.get_block_data(i, j), {i, j}); + } else if constexpr (N == 3) { + func(block.get_block_data(i, i, i), {i, i, i}); + func(block.get_block_data(i, i, j), {i, i, j}); + func(block.get_block_data(i, j, i), {i, j, i}); + func(block.get_block_data(i, j, j), {i, j, j}); + } else if constexpr (N == 4) { + func(block.get_block_data(i, i, i, i), {i, i, i, i}); + func(block.get_block_data(i, i, i, j), {i, i, i, j}); + func(block.get_block_data(i, i, j, i), {i, i, j, i}); + func(block.get_block_data(i, i, j, j), {i, i, j, j}); + func(block.get_block_data(i, j, i, i), {i, j, i, i}); + func(block.get_block_data(i, j, i, j), {i, j, i, j}); + func(block.get_block_data(i, j, j, i), {i, j, j, i}); + func(block.get_block_data(i, j, j, j), {i, j, j, j}); + } + } + } else { + throw std::invalid_argument("N (dimension) should be less than 5"); + } + } + + friend block_data; + std::shared_ptr mddata; + + private: + std::array offset; + size_t block_size; + }; + + ~block_data() { + if (padding > 0 && !internal_buffer.empty() && data_cp_dst != nullptr) { + copy_data_with_padding(data_cp_dst, ds, data_padding, ds_padding, dims); + } + } + + block_data(T *data_, const std::vector &dims_, size_t padding_ = 0, bool data_valid = true) + : padding(padding_) { + if (dims_.size() != N) { + throw std::invalid_argument("#dims does not match!"); + } + std::copy_n(dims_.begin(), N, dims.begin()); + cal_dim_strides(); + + if (padding > 0) { + internal_buffer.resize(num_padding); + size_t offset = std::accumulate(ds_padding.begin(), ds_padding.end(), static_cast(0)); + data_padding = &internal_buffer[padding * offset]; + if (data_valid) { + copy_data_with_padding(data_padding, ds_padding, data_, ds, dims); + } else { + data_cp_dst = data_; + } + } else { + data_padding = data_; + } + } + + block_iterator block_iter(size_t block_size) { return block_iterator(this->shared_from_this(), block_size); } + + protected: + ALWAYS_INLINE T *dataptr() { return data_padding; } + + private: + ALWAYS_INLINE void cal_dim_strides() { + size_t cur_stride = 1, cur_stride_pading = 1; + for (int i = N - 1; i >= 0; i--) { + ds[i] = cur_stride; + ds_padding[i] = cur_stride_pading; + cur_stride *= dims[i]; + cur_stride_pading *= (dims[i] + padding); + } + num = cur_stride; + num_padding = cur_stride_pading; + } + + void copy_data_with_padding(T *dst, const std::array &dst_stride, const T *src, + const std::array &src_stride, const std::array &dims) { + if (dst == nullptr || src == nullptr) { + throw std::invalid_argument("Null pointer passed to copy_data_with_padding"); + return; + } + if constexpr (N == 1) { + memcpy(&dst[0], &src[0], dims[0] * sizeof(T)); + } else if constexpr (N == 2) { + for (size_t i = 0; i < dims[0]; i++) { + memcpy(&dst[i * dst_stride[0]], &src[i * src_stride[0]], dims[1] * sizeof(T)); + } + } else if constexpr (N == 3) { + for (size_t i = 0; i < dims[0]; i++) { + for (size_t j = 0; j < dims[1]; j++) { + memcpy(&dst[i * dst_stride[0] + j * dst_stride[1]], &src[i * src_stride[0] + j * src_stride[1]], + dims[2] * sizeof(T)); + } + } + } else if constexpr (N == 4) { + for (size_t i = 0; i < dims[0]; i++) { + for (size_t j = 0; j < dims[1]; j++) { + for (size_t k = 0; k < dims[2]; k++) { + memcpy(&dst[i * dst_stride[0] + j * dst_stride[1] + k * dst_stride[2]], + &src[i * src_stride[0] + j * src_stride[1] + k * src_stride[2]], dims[3] * sizeof(T)); + } + } + } + } else { + throw std::invalid_argument("N (dimension) should be less than 5"); + } + } + + std::array dims; // dimension + std::array ds, ds_padding; // stride + std::vector internal_buffer; + T *data_cp_dst = nullptr; + T *data_padding; // point to either data_ or internal_buffer depending on padding + size_t padding; + size_t num, num_padding; +}; + +template +ALWAYS_INLINE void foreach (T *data, size_t offset, const std::array &begins, + const std::array &ends, const std::array &strides, + const std::array &dim_offsets, Func && func) { + if constexpr (N == 1) { + for (size_t i = begins[0]; i < ends[0]; i += strides[0]) { + T *d = data + offset + i * dim_offsets[0]; + func(d); + } + } else if constexpr (N == 2) { + for (size_t i = begins[0]; i < ends[0]; i += strides[0]) { + for (size_t j = begins[1]; j < ends[1]; j += strides[1]) { + T *d = data + offset + i * dim_offsets[0] + j * dim_offsets[1]; + func(d); + } + } + } else if constexpr (N == 3) { + for (size_t i = begins[0]; i < ends[0]; i += strides[0]) { + for (size_t j = begins[1]; j < ends[1]; j += strides[1]) { + for (size_t k = begins[2]; k < ends[2]; k += strides[2]) { + T *d = data + offset + i * dim_offsets[0] + j * dim_offsets[1] + k * dim_offsets[2]; + func(d); + } + } + } + } else if constexpr (N == 4) { + for (size_t i = begins[0]; i < ends[0]; i += strides[0]) { + for (size_t j = begins[1]; j < ends[1]; j += strides[1]) { + for (size_t k = begins[2]; k < ends[2]; k += strides[2]) { + for (size_t l = begins[3]; l < ends[3]; l += strides[3]) { + T *d = data + offset + i * dim_offsets[0] + j * dim_offsets[1] + k * dim_offsets[2] + + l * dim_offsets[3]; + func(d); + } + } + } + } + } else { + throw std::invalid_argument("N (dimension) should be less than 5"); + } +} + +} // namespace SZ3 +#endif \ No newline at end of file diff --git a/lib/SZ3/include/SZ3/utils/ByteUtil.hpp b/lib/SZ3/include/SZ3/utils/ByteUtil.hpp index 3d536e11..99f85441 100644 --- a/lib/SZ3/include/SZ3/utils/ByteUtil.hpp +++ b/lib/SZ3/include/SZ3/utils/ByteUtil.hpp @@ -5,229 +5,263 @@ #ifndef SZ3_BYTEUTIL_HPP #define SZ3_BYTEUTIL_HPP -#include "SZ3/def.hpp" +#include #include +#include +#include +#include -namespace SZ { - - typedef union lint16 { - unsigned short usvalue; - short svalue; - unsigned char byte[2]; - } lint16; - - typedef union lint32 { - int ivalue; - unsigned int uivalue; - unsigned char byte[4]; - } lint32; - - typedef union lint64 { - int64_t lvalue; - uint64_t ulvalue; - unsigned char byte[8]; - } lint64; - - typedef union ldouble { - double value; - uint64_t lvalue; - unsigned char byte[8]; - } ldouble; - - typedef union lfloat { - float value; - unsigned int ivalue; - unsigned char byte[4]; - uint16_t int16[2]; - } lfloat; - - inline void symTransform_4bytes(uchar data[4]) { - unsigned char tmp = data[0]; - data[0] = data[3]; - data[3] = tmp; - - tmp = data[1]; - data[1] = data[2]; - data[2] = tmp; - } - - inline int16_t bytesToInt16_bigEndian(unsigned char *bytes) { - int16_t temp = 0; - int16_t res = 0; - - temp = bytes[0] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[1] & 0xff; - res |= temp; - - return res; - } - - inline int32_t bytesToInt32_bigEndian(const unsigned char *bytes) { - int32_t temp = 0; - int32_t res = 0; - - res <<= 8; - temp = bytes[0] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[1] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[2] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[3] & 0xff; - res |= temp; - - return res; - } - - inline int64_t bytesToInt64_bigEndian(const unsigned char *b) { - int64_t temp = 0; - int64_t res = 0; - - res <<= 8; - temp = b[0] & 0xff; - res |= temp; - - res <<= 8; - temp = b[1] & 0xff; - res |= temp; - - res <<= 8; - temp = b[2] & 0xff; - res |= temp; - - res <<= 8; - temp = b[3] & 0xff; - res |= temp; - - res <<= 8; - temp = b[4] & 0xff; - res |= temp; - - res <<= 8; - temp = b[5] & 0xff; - res |= temp; - - res <<= 8; - temp = b[6] & 0xff; - res |= temp; - - res <<= 8; - temp = b[7] & 0xff; - res |= temp; - - return res; - } - - - inline void int16ToBytes_bigEndian(unsigned char *b, int16_t num) { - b[0] = (unsigned char) (num >> 8); - b[1] = (unsigned char) (num); - } +#include "SZ3/def.hpp" - inline void int32ToBytes_bigEndian(unsigned char *b, int32_t num) { - b[0] = (unsigned char) (num >> 24); - b[1] = (unsigned char) (num >> 16); - b[2] = (unsigned char) (num >> 8); - b[3] = (unsigned char) (num); +namespace SZ3 { + +typedef union lint16 { + unsigned short usvalue; + short svalue; + unsigned char byte[2]; +} lint16; + +typedef union lint32 { + int ivalue; + unsigned int uivalue; + unsigned char byte[4]; +} lint32; + +typedef union lint64 { + int64_t lvalue; + uint64_t ulvalue; + unsigned char byte[8]; +} lint64; + +typedef union ldouble { + double value; + uint64_t lvalue; + unsigned char byte[8]; +} ldouble; + +typedef union lfloat { + float value; + unsigned int ivalue; + unsigned char byte[4]; + uint16_t int16[2]; +} lfloat; + +inline void symTransform_4bytes(uchar data[4]) { + unsigned char tmp = data[0]; + data[0] = data[3]; + data[3] = tmp; + + tmp = data[1]; + data[1] = data[2]; + data[2] = tmp; +} + +inline int16_t bytesToInt16_bigEndian(const unsigned char *bytes) { + int16_t temp = 0; + int16_t res = 0; + + temp = bytes[0] & 0xff; + res |= temp; + + res <<= 8; + temp = bytes[1] & 0xff; + res |= temp; + + return res; +} + +inline int32_t bytesToInt32_bigEndian(const unsigned char *bytes) { + int32_t temp = 0; + int32_t res = 0; + + res <<= 8; + temp = bytes[0] & 0xff; + res |= temp; + + res <<= 8; + temp = bytes[1] & 0xff; + res |= temp; + + res <<= 8; + temp = bytes[2] & 0xff; + res |= temp; + + res <<= 8; + temp = bytes[3] & 0xff; + res |= temp; + + return res; +} + +inline int64_t bytesToInt64_bigEndian(const unsigned char *b) { + int64_t temp = 0; + int64_t res = 0; + + res <<= 8; + temp = b[0] & 0xff; + res |= temp; + + res <<= 8; + temp = b[1] & 0xff; + res |= temp; + + res <<= 8; + temp = b[2] & 0xff; + res |= temp; + + res <<= 8; + temp = b[3] & 0xff; + res |= temp; + + res <<= 8; + temp = b[4] & 0xff; + res |= temp; + + res <<= 8; + temp = b[5] & 0xff; + res |= temp; + + res <<= 8; + temp = b[6] & 0xff; + res |= temp; + + res <<= 8; + temp = b[7] & 0xff; + res |= temp; + + return res; +} + +inline void int16ToBytes_bigEndian(unsigned char *b, uint16_t num) { + b[0] = static_cast(num >> 8); + b[1] = static_cast(num); +} + +inline void int32ToBytes_bigEndian(unsigned char *b, uint32_t num) { + b[0] = static_cast(num >> 24); + b[1] = static_cast(num >> 16); + b[2] = static_cast(num >> 8); + b[3] = static_cast(num); +} + +inline void int64ToBytes_bigEndian(unsigned char *b, uint64_t num) { + b[0] = static_cast(num >> 56); + b[1] = static_cast(num >> 48); + b[2] = static_cast(num >> 40); + b[3] = static_cast(num >> 32); + b[4] = static_cast(num >> 24); + b[5] = static_cast(num >> 16); + b[6] = static_cast(num >> 8); + b[7] = static_cast(num); +} + +inline std::string floatToBinary(float f) { + lfloat u; + u.value = f; + std::string str(32, '0'); + for (int i = 0; i < 32; i++) { + str[31 - i] = (u.ivalue % 2) ? '1' : '0'; + u.ivalue >>= 1; } - - - inline void int64ToBytes_bigEndian(unsigned char *b, int64_t num) { - b[0] = (unsigned char) (num >> 56); - b[1] = (unsigned char) (num >> 48); - b[2] = (unsigned char) (num >> 40); - b[3] = (unsigned char) (num >> 32); - b[4] = (unsigned char) (num >> 24); - b[5] = (unsigned char) (num >> 16); - b[6] = (unsigned char) (num >> 8); - b[7] = (unsigned char) (num); + return str; +} + +template +void truncateArray(T data, size_t n, int byteLen, uchar *&binary) { + lfloat bytes; + int b; + for (size_t i = 0; i < n; i++) { + bytes.value = data[i]; + for (b = 4 - byteLen; b < 4; b++) { + *binary++ = bytes.byte[b]; + } } - - std::string floatToBinary(float f) { - lfloat u; - u.value = f; - std::string str(32, '0'); - for (int i = 0; i < 32; i++) { - str[31 - i] = (u.ivalue % 2) ? '1' : '0'; - u.ivalue >>= 1; +} + +template +void truncateArrayRecover(uchar *binary, size_t n, int byteLen, T *data) { + lfloat bytes; + bytes.ivalue = 0; + int b; + for (size_t i = 0; i < n; i++) { + for (b = 4 - byteLen; b < 4; b++) { + bytes.byte[b] = *binary++; } - return str; + data[i] = bytes.value; } - - template - void truncateArray(T data, size_t n, int byteLen, uchar *&binary) { - lfloat bytes; - int b; - for (size_t i = 0; i < n; i++) { - bytes.value = data[i]; - for (b = 4 - byteLen; b < 4; b++) { - *binary++ = bytes.byte[b]; +} + +template +uint8_t vector_bit_width(const std::vector &data) { + if (data.empty()) return 0; + T max_value = *std::max_element(data.begin(), data.end()); + uint8_t bits = 0; + while (max_value > 0) { + max_value >>= 1; + ++bits; + } + return bits; +} + +template +void vector2bytes(const std::vector &data, uint8_t bit_width, unsigned char *&c) { + if (data.empty()) return; + + size_t current_bit = 0; + size_t byte_index = 0; + unsigned char current_byte = 0; + + for (T value : data) { + size_t bits_remaining = bit_width; + while (bits_remaining > 0) { + size_t space_in_current_byte = 8 - (current_bit % 8); + size_t bits_to_write = std::min(bits_remaining, space_in_current_byte); + size_t bits_shift = (bit_width - bits_remaining); + unsigned char bits_to_store = (value >> bits_shift) & ((1 << bits_to_write) - 1); + + current_byte |= (bits_to_store << (current_bit % 8)); + current_bit += bits_to_write; + bits_remaining -= bits_to_write; + + if (current_bit % 8 == 0) { + c[byte_index++] = current_byte; + current_byte = 0; } } } - template - void truncateArrayRecover(uchar *binary, size_t n, int byteLen, T *data) { - lfloat bytes; - bytes.ivalue = 0; - int b; - for (size_t i = 0; i < n; i++) { - for (b = 4 - byteLen; b < 4; b++) { - bytes.byte[b] = *binary++; - } - data[i] = bytes.value; - } + if (current_bit % 8 != 0) { + c[byte_index++] = current_byte; } - std::vector LeadingBitsEncode(float pre, float data) { - lfloat lfBuf_pre; - lfloat lfBuf_cur; - - lfBuf_pre.value = pre; - lfBuf_cur.value = data; - lfBuf_pre.ivalue = lfBuf_cur.ivalue ^ lfBuf_pre.ivalue; - - std::vector bytes; - int n = 0; - if (lfBuf_pre.ivalue == 0) { - n = 0; - } else if (lfBuf_pre.ivalue >> 8 == 0) { - n = 1; - } else if (lfBuf_pre.ivalue >> 16 == 0) { - n = 2; - } else if (lfBuf_pre.ivalue >> 24 == 0) { - n = 3; - } else { - n = 4; - } + c += byte_index; +} - for (int i = 0; i < n; i++) { - bytes.push_back(lfBuf_cur.byte[i]); - } - return bytes; - } +template +std::vector bytes2vector(const unsigned char *&c, uint8_t bit_width, size_t num_elements) { + // uint8_t bit_width = *c++; + + std::vector data(num_elements); - float LeadingBitsDecode(float pre, std::vector bytes) { - lfloat lfBuf_pre; - lfloat lfBuf_cur; + size_t total_bits = num_elements * bit_width; + size_t total_bytes = (total_bits + 7) / 8; - lfBuf_pre.value = pre; - lfBuf_cur = lfBuf_pre; + for (size_t i = 0; i < num_elements; ++i) { + T value = 0; + for (uint8_t j = 0; j < bit_width; ++j) { + size_t bit_index = i * bit_width + j; + size_t byte_index = bit_index / 8; + size_t bit_offset = bit_index % 8; - for (int i = 0; i < bytes.size(); i++) { - lfBuf_cur.byte[i] = bytes[i]; + value |= ((c[byte_index] >> bit_offset) & 1) << j; } - return lfBuf_cur.value; + data[i] = value; } -}; -#endif //SZ3_BYTEUTIL_HPP + c += total_bytes; + + return data; +} + +} // namespace SZ3 +#endif // SZ3_BYTEUTIL_HPP diff --git a/lib/SZ3/include/SZ3/utils/Config.hpp b/lib/SZ3/include/SZ3/utils/Config.hpp index caf0bfe5..4d4d9580 100644 --- a/lib/SZ3/include/SZ3/utils/Config.hpp +++ b/lib/SZ3/include/SZ3/utils/Config.hpp @@ -2,210 +2,381 @@ // Created by Kai Zhao on 4/28/20. // -#ifndef SZ_Config_HPP -#define SZ_Config_HPP +#ifndef SZ3_Config_HPP +#define SZ3_Config_HPP +#include +#include #include -#include +#include #include +#include + #include "SZ3/def.hpp" -#include "MemoryUtil.hpp" -#include "SZ3/utils/inih/INIReader.h" - -namespace SZ { - - enum EB { - EB_ABS, EB_REL, EB_PSNR, EB_L2NORM, EB_ABS_AND_REL, EB_ABS_OR_REL - }; - constexpr const char *EB_STR[] = {"ABS", "REL", "PSNR", "NORM", "ABS_AND_REL", "ABS_OR_REL"}; - constexpr EB EB_OPTIONS[] = {EB_ABS, EB_REL, EB_PSNR, EB_L2NORM, EB_ABS_AND_REL, EB_ABS_OR_REL}; - - enum ALGO { - ALGO_LORENZO_REG, ALGO_INTERP_LORENZO, ALGO_INTERP - }; - constexpr const char *ALGO_STR[] = {"ALGO_LORENZO_REG", "ALGO_INTERP_LORENZO", "ALGO_INTERP"}; - constexpr const ALGO ALGO_OPTIONS[] = {ALGO_LORENZO_REG, ALGO_INTERP_LORENZO, ALGO_INTERP}; - - enum INTERP_ALGO { - INTERP_ALGO_LINEAR, INTERP_ALGO_CUBIC - }; - constexpr const char *INTERP_ALGO_STR[] = {"INTERP_ALGO_LINEAR", "INTERP_ALGO_CUBIC"}; - constexpr INTERP_ALGO INTERP_ALGO_OPTIONS[] = {INTERP_ALGO_LINEAR, INTERP_ALGO_CUBIC}; - - template - const char *enum2Str(T e) { - if (std::is_same::value) { - return ALGO_STR[e]; - } else if (std::is_same::value) { - return INTERP_ALGO_STR[e]; - } else if (std::is_same::value) { - return EB_STR[e]; - } else { - printf("invalid enum type for enum2Str()\n "); - exit(0); +#include "SZ3/utils/ByteUtil.hpp" +#include "SZ3/utils/MemoryUtil.hpp" +#include "SZ3/version.hpp" + +#define SZ_FLOAT 0 +#define SZ_DOUBLE 1 +#define SZ_UINT8 2 +#define SZ_INT8 3 +#define SZ_UINT16 4 +#define SZ_INT16 5 +#define SZ_UINT32 6 +#define SZ_INT32 7 +#define SZ_UINT64 8 +#define SZ_INT64 9 + +namespace SZ3 { + +enum EB { EB_ABS, EB_REL, EB_PSNR, EB_L2NORM, EB_ABS_AND_REL, EB_ABS_OR_REL }; +enum ALGO { ALGO_LORENZO_REG, ALGO_INTERP_LORENZO, ALGO_INTERP, ALGO_NOPRED, ALGO_LOSSLESS }; +enum INTERP_ALGO { INTERP_ALGO_LINEAR, INTERP_ALGO_CUBIC }; //, INTERP_ALGO_CUBIC_NATURAL}; + +const std::map ALGO_MAP = { + {"ALGO_LORENZO_REG", ALGO_LORENZO_REG}, {"ALGO_INTERP_LORENZO", ALGO_INTERP_LORENZO}, + {"ALGO_INTERP", ALGO_INTERP}, {"ALGO_NOPRED", ALGO_NOPRED}, + {"ALGO_LOSSLESS", ALGO_LOSSLESS}, +}; + +const std::map EB_MAP = { + {"ABS", EB_ABS}, + {"REL", EB_REL}, + {"PSNR", EB_PSNR}, + {"NORM", EB_L2NORM}, + {"ABS_AND_REL", EB_ABS_AND_REL}, + {"ABS_OR_REL", EB_ABS_OR_REL}, +}; + +const std::map INTERP_ALGO_MAP = { + {"INTERP_ALGO_LINEAR", INTERP_ALGO_LINEAR}, + {"INTERP_ALGO_CUBIC", INTERP_ALGO_CUBIC}, +}; + +ALWAYS_INLINE std::string to_lower(const std::string &s) { + std::string out = s; + std::transform(out.begin(), out.end(), out.begin(), ::tolower); + return out; +} + +template +ALWAYS_INLINE void match_enum(const std::string &input, const std::map &table, uint8_t &out) { + std::string input_lc = to_lower(input); + for (const auto &[key, val] : table) { + if (to_lower(key) == input_lc) { + out = static_cast(val); } } +} - class Config { - public: - template - Config(Dims ... args) { - dims = std::vector{static_cast(std::forward(args))...}; - N = dims.size(); - num = std::accumulate(dims.begin(), dims.end(), (size_t) 1, std::multiplies()); - blockSize = (N == 1 ? 128 : (N == 2 ? 16 : 6)); - pred_dim = N; - stride = blockSize; +template +ALWAYS_INLINE std::string enum_to_string(EnumType value, const std::map &forward_map) { + for (const auto &[str, val] : forward_map) { + if (val == value) { + return str; } + } + return ""; +} + +class Config { + public: + template + Config(Dims... args) { + dims = std::vector{static_cast(std::forward(args))...}; + setDims(dims.begin(), dims.end()); + } - template - size_t setDims(Iter begin, Iter end) { - dims = std::vector(begin, end); - N = dims.size(); - num = std::accumulate(dims.begin(), dims.end(), (size_t) 1, std::multiplies()); - return num; + template + size_t setDims(Iter begin, Iter end) { + auto dims_ = std::vector(begin, end); + dims.clear(); + for (auto dim : dims_) { + if (dim > 1) { + dims.push_back(dim); + } + } + if (dims.empty()) { + dims = {1}; } + N = dims.size(); + num = std::accumulate(dims.begin(), dims.end(), static_cast(1), std::multiplies()); + predDim = N; + blockSize = (N == 1 ? 128 : (N == 2 ? 16 : 6)); + return num; + } - void loadcfg(const std::string &cfgpath) { - INIReader cfg(cfgpath); + void loadcfg(const std::string &ini_file_path) { + std::ifstream file(ini_file_path); + if (!file.is_open()) { + throw std::runtime_error("Failed to open INI file: " + ini_file_path); + } + std::ostringstream buffer; + buffer << file.rdbuf(); + load_ini(buffer.str()); + } - if (cfg.ParseError() != 0) { - std::cout << "Can't load cfg file " << cfgpath << std::endl; - exit(0); - } + void load_ini(const std::string &ini_content) { + std::istringstream ss(ini_content); + std::string line, section; - auto cmprAlgoStr = cfg.Get("GlobalSettings", "CmprAlgo", ""); - if (cmprAlgoStr == ALGO_STR[ALGO_LORENZO_REG]) { - cmprAlgo = ALGO_LORENZO_REG; - } else if (cmprAlgoStr == ALGO_STR[ALGO_INTERP_LORENZO]) { - cmprAlgo = ALGO_INTERP_LORENZO; - } else if (cmprAlgoStr == ALGO_STR[ALGO_INTERP]) { - cmprAlgo = ALGO_INTERP; - } - auto ebModeStr = cfg.Get("GlobalSettings", "ErrorBoundMode", ""); - if (ebModeStr == EB_STR[EB_ABS]) { - errorBoundMode = EB_ABS; - } else if (ebModeStr == EB_STR[EB_REL]) { - errorBoundMode = EB_REL; - } else if (ebModeStr == EB_STR[EB_PSNR]) { - errorBoundMode = EB_PSNR; - } else if (ebModeStr == EB_STR[EB_L2NORM]) { - errorBoundMode = EB_L2NORM; - } else if (ebModeStr == EB_STR[EB_ABS_AND_REL]) { - errorBoundMode = EB_ABS_AND_REL; - } else if (ebModeStr == EB_STR[EB_ABS_OR_REL]) { - errorBoundMode = EB_ABS_OR_REL; - } - absErrorBound = cfg.GetReal("GlobalSettings", "AbsErrorBound", absErrorBound); - relErrorBound = cfg.GetReal("GlobalSettings", "RelErrorBound", relErrorBound); - psnrErrorBound = cfg.GetReal("GlobalSettings", "PSNRErrorBound", psnrErrorBound); - l2normErrorBound = cfg.GetReal("GlobalSettings", "L2NormErrorBound", l2normErrorBound); - - openmp = cfg.GetBoolean("GlobalSettings", "OpenMP", openmp); - lorenzo = cfg.GetBoolean("AlgoSettings", "Lorenzo", lorenzo); - lorenzo2 = cfg.GetBoolean("AlgoSettings", "Lorenzo2ndOrder", lorenzo2); - regression = cfg.GetBoolean("AlgoSettings", "Regression", regression); - regression2 = cfg.GetBoolean("AlgoSettings", "Regression2ndOrder", regression2); - - auto interpAlgoStr = cfg.Get("AlgoSettings", "InterpolationAlgo", ""); - if (interpAlgoStr == INTERP_ALGO_STR[INTERP_ALGO_LINEAR]) { - interpAlgo = INTERP_ALGO_LINEAR; - } else if (interpAlgoStr == INTERP_ALGO_STR[INTERP_ALGO_CUBIC]) { - interpAlgo = INTERP_ALGO_CUBIC; + auto trim = [](std::string &s) { + s.erase(0, s.find_first_not_of(" \t\r\n")); + s.erase(s.find_last_not_of(" \t\r\n") + 1); + }; + + auto eq = [&](const std::string &a, const std::string &b) { return to_lower(a) == to_lower(b); }; + + auto parse_bool = [&](const std::string &s) { + auto ls = to_lower(s); + return ls == "true" || ls == "1" || ls == "yes" || ls == "on"; + }; + + while (std::getline(ss, line)) { + trim(line); + if (line.empty() || line[0] == '#') continue; + if (line.front() == '[') { + section = line.substr(1, line.find(']') - 1); + continue; } - interpDirection = cfg.GetInteger("AlgoSettings", "InterpolationDirection", interpDirection); - interpBlockSize = cfg.GetInteger("AlgoSettings", "InterpolationBlockSize", interpBlockSize); - blockSize = cfg.GetInteger("AlgoSettings", "BlockSize", blockSize); - quantbinCnt = cfg.GetInteger("AlgoSettings", "QuantizationBinTotal", quantbinCnt); + auto sep = line.find('='); + if (sep == std::string::npos) continue; + + std::string key = line.substr(0, sep); + std::string value = line.substr(sep + 1); + trim(key); + trim(value); + if (eq(section, "GlobalSettings")) { + if (eq(key, "CmprAlgo")) + match_enum(value, ALGO_MAP, cmprAlgo); + else if (eq(key, "ErrorBoundMode")) + match_enum(value, EB_MAP, errorBoundMode); + else if (eq(key, "AbsErrorBound")) + absErrorBound = std::stod(value); + else if (eq(key, "RelErrorBound")) + relErrorBound = std::stod(value); + else if (eq(key, "PSNRErrorBound")) + psnrErrorBound = std::stod(value); + else if (eq(key, "L2NormErrorBound")) + l2normErrorBound = std::stod(value); + else if (eq(key, "OpenMP")) + openmp = parse_bool(value); + } else if (eq(section, "AlgoSettings")) { + if (eq(key, "Lorenzo")) + lorenzo = parse_bool(value); + else if (eq(key, "Lorenzo2ndOrder")) + lorenzo2 = parse_bool(value); + else if (eq(key, "Regression")) + regression = parse_bool(value); + else if (eq(key, "Regression2ndOrder")) + regression2 = parse_bool(value); + else if (eq(key, "InterpolationAlgo")) + match_enum(value, INTERP_ALGO_MAP, interpAlgo); + else if (eq(key, "InterpolationDirection")) + interpDirection = std::stoi(value); + else if (eq(key, "BlockSize")) + blockSize = std::stoi(value); + else if (eq(key, "QuantizationBinTotal")) + quantbinCnt = std::stoi(value); + else if (eq(key, "InterpolationAnchorStride")) + interpAnchorStride = std::stoi(value); + else if (eq(key, "InterpolationAlpha")) + interpAlpha = std::stod(value); + else if (eq(key, "InterpolationBeta")) + interpBeta = std::stod(value); + } } + } + std::string save_ini() const { + std::ostringstream ss; - void save(unsigned char *&c) { - write(N, c); - write(dims.data(), dims.size(), c); - write(num, c); - write(cmprAlgo, c); - write(errorBoundMode, c); + ss << "[GlobalSettings]\n"; + ss << "CmprAlgo = " << enum_to_string(static_cast(cmprAlgo), ALGO_MAP) << "\n"; + ss << "ErrorBoundMode = " << enum_to_string(static_cast(errorBoundMode), EB_MAP) << "\n"; + ss << "AbsErrorBound = " << absErrorBound << "\n"; + ss << "RelErrorBound = " << relErrorBound << "\n"; + ss << "PSNRErrorBound = " << psnrErrorBound << "\n"; + ss << "L2NormErrorBound = " << l2normErrorBound << "\n"; + ss << "OpenMP = " << (openmp ? "true" : "false") << "\n"; + + ss << "\n[AlgoSettings]\n"; + ss << "Lorenzo = " << (lorenzo ? "true" : "false") << "\n"; + ss << "Lorenzo2ndOrder = " << (lorenzo2 ? "true" : "false") << "\n"; + ss << "Regression = " << (regression ? "true" : "false") << "\n"; + ss << "Regression2ndOrder = " << (regression2 ? "true" : "false") << "\n"; + ss << "BlockSize = " << blockSize << "\n"; + ss << "QuantizationBinTotal = " << quantbinCnt << "\n"; + ss << "InterpolationAlgo = " << enum_to_string(static_cast(interpAlgo), INTERP_ALGO_MAP) << "\n"; + ss << "InterpolationDirection = " << static_cast(interpDirection) << "\n"; + ss << "InterpolationAnchorStride = " << interpAnchorStride << "\n"; + ss << "InterpolationAlpha = " << interpAlpha << "\n"; + ss << "InterpolationBeta = " << interpBeta << "\n"; + return ss.str(); + } + + size_t save(unsigned char *&c) const { + auto c0 = c; + write(sz3MagicNumber, c); + write(sz3DataVer, c); + write(N, c); + // write(dims.data(), dims.size(), c); + auto bitWidth = vector_bit_width(dims); + write(bitWidth, c); + vector2bytes(dims, bitWidth, c); + + write(num, c); + write(cmprAlgo, c); + + write(errorBoundMode, c); + if (errorBoundMode == EB_ABS) { write(absErrorBound, c); + } else if (errorBoundMode == EB_REL) { write(relErrorBound, c); - write(lorenzo, c); - write(lorenzo2, c); - write(regression, c); - write(regression2, c); - write(interpAlgo, c); - write(interpDirection, c); - write(interpBlockSize, c); - write(lossless, c); - write(encoder, c); - write(quantbinCnt, c); - write(blockSize, c); - write(stride, c); - write(pred_dim, c); - write(openmp, c); - }; + } else if (errorBoundMode == EB_PSNR) { + write(psnrErrorBound, c); + } else if (errorBoundMode == EB_L2NORM) { + write(l2normErrorBound, c); + } else if (errorBoundMode == EB_ABS_OR_REL) { + write(absErrorBound, c); + write(relErrorBound, c); + } else if (errorBoundMode == EB_ABS_AND_REL) { + write(absErrorBound, c); + write(relErrorBound, c); + } + + uint8_t boolvals = (lorenzo & 1) << 7 | (lorenzo2 & 1) << 6 | (regression & 1) << 5 | (regression2 & 1) << 4 | + (openmp & 1) << 3; + write(boolvals, c); + + write(dataType, c); + write(quantbinCnt, c); + write(blockSize, c); + write(predDim, c); + + // printf("%lu\n", c - c0); + return c - c0; + } + + void load(const unsigned char *&c) { + // auto c0 = c; + read(sz3MagicNumber, c); + if (sz3MagicNumber != SZ3_MAGIC_NUMBER) { + throw std::invalid_argument("magic number mismatch, the input data is not compressed by SZ3"); + } + read(sz3DataVer, c); + if (versionStr(sz3DataVer) != SZ3_DATA_VER) { + std::stringstream ss; + printf("program v%s , program-data %s , input data v%s\n", SZ3_VER, SZ3_DATA_VER, + versionStr(sz3DataVer).data()); + ss << "Please use SZ3 v" << versionStr(sz3DataVer) << " to decompress the data" << std::endl; + std::cerr << ss.str(); + throw std::invalid_argument(ss.str()); + } + + read(N, c); + + uint8_t bitWidth; + read(bitWidth, c); + dims = bytes2vector(c, bitWidth, N); + // dims.resize(N); + // read(dims.data(), N, c); + read(num, c); + read(cmprAlgo, c); - void load(const unsigned char *&c) { - read(N, c); - dims.resize(N); - read(dims.data(), N, c); - read(num, c); - read(cmprAlgo, c); - read(errorBoundMode, c); + read(errorBoundMode, c); + if (errorBoundMode == EB_ABS) { + read(absErrorBound, c); + } else if (errorBoundMode == EB_REL) { + read(relErrorBound, c); + } else if (errorBoundMode == EB_PSNR) { + read(psnrErrorBound, c); + } else if (errorBoundMode == EB_L2NORM) { + read(l2normErrorBound, c); + } else if (errorBoundMode == EB_ABS_OR_REL) { + read(absErrorBound, c); + read(relErrorBound, c); + } else if (errorBoundMode == EB_ABS_AND_REL) { read(absErrorBound, c); read(relErrorBound, c); - read(lorenzo, c); - read(lorenzo2, c); - read(regression, c); - read(regression2, c); - read(interpAlgo, c); - read(interpDirection, c); - read(interpBlockSize, c); - read(lossless, c); - read(encoder, c); - read(quantbinCnt, c); - read(blockSize, c); - read(stride, c); - read(pred_dim, c); - read(openmp, c); } - void print() { - printf("CmprAlgo = %s\n", enum2Str((ALGO) cmprAlgo)); - } + uint8_t boolvals; + read(boolvals, c); + lorenzo = (boolvals >> 7) & 1; + lorenzo2 = (boolvals >> 6) & 1; + regression = (boolvals >> 5) & 1; + regression2 = (boolvals >> 4) & 1; + openmp = (boolvals >> 3) & 1; + + read(dataType, c); + read(quantbinCnt, c); + read(blockSize, c); + read(predDim, c); + + // print(); + // printf("%d\n", c - c0); + // if (c - c0 > size_est()) { + // throw std::invalid_argument("Config loaded size is larger than estimated size"); + // } else { + // // for padding + // c = c0 + size_est(); + // } + } - static size_t size_est() { - return sizeof(size_t) * 5 + sizeof(double) * 4 + sizeof(bool) * 5 + sizeof(uint8_t) * 6 + sizeof(int) * 5 + 50; //50 is for redundancy + void print() { + // printf("===================== Begin SZ3 Configuration =====================\n"); + printf("\nsz3MagicNumber = %u\n", sz3MagicNumber); + printf("sz3DataVer = %s\n", versionStr(sz3DataVer).data()); + std::cout << "Dimensions ="; + for (auto d : dims) { + std::cout << " " << d; } + std::cout << "\n"; + std::cout << save_ini(); + } + + size_t size_est() const { + std::vector buffer(sizeof(Config) + 1024); + auto buffer_pos = buffer.data(); + return save(buffer_pos) ; + } - char N; - std::vector dims; - size_t num; - uint8_t cmprAlgo = ALGO_INTERP_LORENZO; - uint8_t errorBoundMode = EB_ABS; - double absErrorBound; - double relErrorBound; - double psnrErrorBound; - double l2normErrorBound; - bool lorenzo = true; - bool lorenzo2 = false; - bool regression = true; - bool regression2 = false; - bool openmp = false; - uint8_t lossless = 1; // 0-> skip lossless(use lossless_bypass); 1-> zstd - uint8_t encoder = 1;// 0-> skip encoder; 1->HuffmanEncoder; 2->ArithmeticEncoder - uint8_t interpAlgo = INTERP_ALGO_CUBIC; - uint8_t interpDirection = 0; - int interpBlockSize = 32; - int quantbinCnt = 65536; - int blockSize; - int stride; //not used now - int pred_dim; // not used now - - }; + uint32_t sz3MagicNumber = SZ3_MAGIC_NUMBER; + uint32_t sz3DataVer = versionInt(SZ3_DATA_VER); + char N = 0; + std::vector dims; + size_t num = 0; + uint8_t cmprAlgo = ALGO_INTERP_LORENZO; + uint8_t errorBoundMode = EB_ABS; + double absErrorBound = 1e-3; + double relErrorBound = 0.0; + double psnrErrorBound = 0.0; + double l2normErrorBound = 0.0; + bool lorenzo = true; + bool lorenzo2 = false; + bool regression = true; + bool regression2 = false; + bool openmp = false; + int quantbinCnt = 65536; + int blockSize = 0; + uint8_t predDim = 0; // not used now + uint8_t dataType = SZ_FLOAT; // dataType is only used in HDF5 filter + /** + * The following parameters are only used by specific modules. + * They are saved and loaded in their module implementation, not in Config. + */ + uint8_t interpAlgo = INTERP_ALGO_CUBIC; + uint8_t interpDirection = 0; + int interpAnchorStride = -1; // -1: using dynamic default setting + double interpAlpha = 1.25; // level-wise eb reduction rate + double interpBeta = 2.0; // maximum eb reduction rate +}; -} +} // namespace SZ3 -#endif //SZ_CONFIG_HPP +#endif // SZ_CONFIG_HPP diff --git a/lib/SZ3/include/SZ3/utils/Extraction.hpp b/lib/SZ3/include/SZ3/utils/Extraction.hpp index dfa50dbc..1e0bef9a 100644 --- a/lib/SZ3/include/SZ3/utils/Extraction.hpp +++ b/lib/SZ3/include/SZ3/utils/Extraction.hpp @@ -2,243 +2,241 @@ // Created by Kai Zhao on 4/20/20. // -#ifndef SZ_EXTRACTION_HPP -#define SZ_EXTRACTION_HPP +#ifndef SZ3_EXTRACTION_HPP +#define SZ3_EXTRACTION_HPP +namespace SZ3 { -namespace SZ { - - template - float cal_sampling_ratio(size_t block, size_t n, size_t dmin, std::vector dims) { - size_t sample_n = 1; - for (auto dim: dims) { - sample_n *= dim / dmin * 2 * block; - } - return sample_n * 1.0 / n; +template +float cal_sampling_ratio(size_t block, size_t n, size_t dmin, std::vector dims) { + size_t sample_n = 1; + for (auto dim : dims) { + sample_n *= dim / dmin * 2 * block; } - - - template - inline typename std::enable_if>::type - sampling(T *data, std::vector dims, size_t &sample_num, std::vector &sample_dims, size_t &sampling_block) { - assert(dims.size() == N); - assert(sample_dims.size() == N); - SZ::Timer timer(true); - size_t num = std::accumulate(dims.begin(), dims.end(), (size_t) 1, std::multiplies()); - - size_t dmin = *std::min_element(dims.begin(), dims.end()); - sampling_block = dmin; - while (cal_sampling_ratio(sampling_block, num, dmin, dims) > 0.035) { - sampling_block--; - } - if (sampling_block * 2 > dmin) { - sampling_block = dmin / 2; - } - if (sampling_block < 9) { - sample_dims = dims; - sampling_block = dmin; - sample_num = num; - std::vector sampling_data(data, data + num); - return sampling_data; - } - size_t b0 = dims[0] / dmin; - size_t b1 = dims[1] / dmin; - size_t b2 = dims[2] / dmin; - size_t b3 = dims[3] / dmin; - sample_dims[0] = b0 * 2 * sampling_block; - sample_dims[1] = b1 * 2 * sampling_block; - sample_dims[2] = b2 * 2 * sampling_block; - sample_dims[3] = b3 * 2 * sampling_block; - size_t di, dj, dk, dt; - sample_num = sample_dims[0] * sample_dims[1] * sample_dims[2] * sample_dims[3]; - std::vector sampling_data(sample_num, 0); - - for (size_t bi = 0; bi < b0; bi++) { - for (size_t bj = 0; bj < b1; bj++) { - for (size_t bk = 0; bk < b2; bk++) { - for (size_t bt = 0; bt < b3; bt++) { - for (size_t i = 0; i < 2 * sampling_block; i++) { - for (size_t j = 0; j < 2 * sampling_block; j++) { - for (size_t k = 0; k < 2 * sampling_block; k++) { - for (size_t t = 0; t < 2 * sampling_block; t++) { - di = i < sampling_block ? i + sampling_block : dmin - 3 * sampling_block + i; - dj = j < sampling_block ? j + sampling_block : dmin - 3 * sampling_block + j; - dk = k < sampling_block ? k + sampling_block : dmin - 3 * sampling_block + k; - dt = t < sampling_block ? t + sampling_block : dmin - 3 * sampling_block + t; - size_t idx = (bi * dmin + di) * dims[1] * dims[2] * dims[3] - + (bj * dmin + dj) * dims[2] * dims[3] - + (bk * dmin + dk) * dims[3] - + bt * dmin + dt; - sampling_data[(bi * 2 * sampling_block + i) * sample_dims[1] * sample_dims[2] * sample_dims[3] - + (bj * 2 * sampling_block + j) * sample_dims[1] * sample_dims[2] - + (bk * 2 * sampling_block + k) * sample_dims[2] - + bt * 2 * sampling_block + t] = data[idx]; - } - } - } - } - } - } - } - - } -// auto sampling_time = timer.stop(); -// printf("Generate sampling data, block = %lu percent = %.3f%% Time = %.3f \n", sampling_block, sample_num * 100.0 / num, -// sampling_time); - return sampling_data; + return sample_n * 1.0 / n; +} + +template +inline typename std::enable_if>::type sampling(T *data, std::vector dims, + size_t &sample_num, + std::vector &sample_dims, + size_t &sampling_block) { + assert(dims.size() == N); + assert(sample_dims.size() == N); + Timer timer(true); + size_t num = std::accumulate(dims.begin(), dims.end(), static_cast(1), std::multiplies()); + + size_t dmin = *std::min_element(dims.begin(), dims.end()); + sampling_block = dmin; + while (cal_sampling_ratio(sampling_block, num, dmin, dims) > 0.035) { + sampling_block--; } - - - template - inline typename std::enable_if>::type - sampling(T *data, std::vector dims, size_t &sample_num, std::vector &sample_dims, size_t &sampling_block) { - assert(dims.size() == N); - assert(sample_dims.size() == N); - size_t num = std::accumulate(dims.begin(), dims.end(), (size_t) 1, std::multiplies()); - - size_t dmin = *std::min_element(dims.begin(), dims.end()); - sampling_block = dmin; - while (cal_sampling_ratio(sampling_block, num, dmin, dims) > 0.035) { - sampling_block--; - } - if (sampling_block * 2 > dmin) { - sampling_block = dmin / 2; - } - if (sampling_block < 9) { - sample_dims = dims; - sampling_block = dmin; - sample_num = num; - std::vector sampling_data(data, data + num); - return sampling_data; - } - size_t b0 = dims[0] / dmin; - size_t b1 = dims[1] / dmin; - size_t b2 = dims[2] / dmin; - sample_dims[0] = b0 * 2 * sampling_block; - sample_dims[1] = b1 * 2 * sampling_block; - sample_dims[2] = b2 * 2 * sampling_block; - size_t di, dj, dk; - sample_num = sample_dims[0] * sample_dims[1] * sample_dims[2]; - std::vector sampling_data(sample_num, 0); - - for (size_t bi = 0; bi < b0; bi++) { - for (size_t bj = 0; bj < b1; bj++) { - for (size_t bk = 0; bk < b2; bk++) { + if (sampling_block * 2 > dmin) { + sampling_block = dmin / 2; + } + if (sampling_block < 9) { + sample_dims = dims; + sample_num = num; + return std::vector(); + } + size_t b0 = dims[0] / dmin; + size_t b1 = dims[1] / dmin; + size_t b2 = dims[2] / dmin; + size_t b3 = dims[3] / dmin; + sample_dims[0] = b0 * 2 * sampling_block; + sample_dims[1] = b1 * 2 * sampling_block; + sample_dims[2] = b2 * 2 * sampling_block; + sample_dims[3] = b3 * 2 * sampling_block; + size_t di, dj, dk, dt; + sample_num = sample_dims[0] * sample_dims[1] * sample_dims[2] * sample_dims[3]; + std::vector sampling_data(sample_num, 0); + + for (size_t bi = 0; bi < b0; bi++) { + for (size_t bj = 0; bj < b1; bj++) { + for (size_t bk = 0; bk < b2; bk++) { + for (size_t bt = 0; bt < b3; bt++) { for (size_t i = 0; i < 2 * sampling_block; i++) { for (size_t j = 0; j < 2 * sampling_block; j++) { for (size_t k = 0; k < 2 * sampling_block; k++) { - di = i < sampling_block ? i + sampling_block : dmin - 3 * sampling_block + i; - dj = j < sampling_block ? j + sampling_block : dmin - 3 * sampling_block + j; - dk = k < sampling_block ? k + sampling_block : dmin - 3 * sampling_block + k; - auto d = data[(bi * dmin + di) * dims[1] * dims[2] + (bj * dmin + dj) * dims[2] + - bk * dmin + dk]; - sampling_data[(bi * 2 * sampling_block + i) * sample_dims[1] * sample_dims[2] - + (bj * 2 * sampling_block + j) * sample_dims[2] - + bk * 2 * sampling_block + k] = d; + for (size_t t = 0; t < 2 * sampling_block; t++) { + di = i < sampling_block ? i + sampling_block : dmin - 3 * sampling_block + i; + dj = j < sampling_block ? j + sampling_block : dmin - 3 * sampling_block + j; + dk = k < sampling_block ? k + sampling_block : dmin - 3 * sampling_block + k; + dt = t < sampling_block ? t + sampling_block : dmin - 3 * sampling_block + t; + size_t idx = (bi * dmin + di) * dims[1] * dims[2] * dims[3] + + (bj * dmin + dj) * dims[2] * dims[3] + (bk * dmin + dk) * dims[3] + + bt * dmin + dt; + sampling_data[(bi * 2 * sampling_block + i) * sample_dims[1] * sample_dims[2] * + sample_dims[3] + + (bj * 2 * sampling_block + j) * sample_dims[1] * sample_dims[2] + + (bk * 2 * sampling_block + k) * sample_dims[2] + + bt * 2 * sampling_block + t] = data[idx]; + } } } } } } } -// auto sampling_time = timer.stop(); -// printf("Generate sampling data, block = %lu percent = %.3f%% Time = %.3f \n", sampling_block, sample_num * 100.0 / num, -// sampling_time); - return sampling_data; - } - - template - inline typename std::enable_if>::type - sampling(T *data, std::vector dims, size_t &sample_num, std::vector &sample_dims, size_t &sampling_block) { - assert(dims.size() == N); - assert(sample_dims.size() == N); - SZ::Timer timer(true); - size_t num = std::accumulate(dims.begin(), dims.end(), (size_t) 1, std::multiplies()); - - size_t dmin = *std::min_element(dims.begin(), dims.end()); - sampling_block = dmin; - while (cal_sampling_ratio(sampling_block, num, dmin, dims) > 0.035) { - sampling_block--; - } - if (sampling_block * 2 > dmin) { - sampling_block = dmin / 2; - } - if (sampling_block < 9) { - sample_dims = dims; - sampling_block = dmin; - sample_num = num; - std::vector sampling_data(data, data + num); - return sampling_data; - } - size_t b0 = dims[0] / dmin; - size_t b1 = dims[1] / dmin; - sample_dims[0] = b0 * 2 * sampling_block; - sample_dims[1] = b1 * 2 * sampling_block; - size_t di, dj; - sample_num = sample_dims[0] * sample_dims[1]; - std::vector sampling_data(sample_num, 0); - - for (size_t bi = 0; bi < b0; bi++) { - for (size_t bj = 0; bj < b1; bj++) { + } + // auto sampling_time = timer.stop(); + // printf("Generate sampling data, block = %lu percent = %.3f%% Time = %.3f \n", sampling_block, sample_num * + // 100.0 / num, + // sampling_time); + return sampling_data; +} + +template +inline typename std::enable_if>::type sampling(T *data, std::vector dims, + size_t &sample_num, + std::vector &sample_dims, + size_t &sampling_block) { + assert(dims.size() == N); + assert(sample_dims.size() == N); + size_t num = std::accumulate(dims.begin(), dims.end(), static_cast(1), std::multiplies()); + + size_t dmin = *std::min_element(dims.begin(), dims.end()); + sampling_block = dmin; + while (cal_sampling_ratio(sampling_block, num, dmin, dims) > 0.035) { + sampling_block--; + } + if (sampling_block * 2 > dmin) { + sampling_block = dmin / 2; + } + if (sampling_block < 9) { + sample_dims = dims; + sample_num = num; + return std::vector(); + } + size_t b0 = dims[0] / dmin; + size_t b1 = dims[1] / dmin; + size_t b2 = dims[2] / dmin; + sample_dims[0] = b0 * 2 * sampling_block; + sample_dims[1] = b1 * 2 * sampling_block; + sample_dims[2] = b2 * 2 * sampling_block; + size_t di, dj, dk; + sample_num = sample_dims[0] * sample_dims[1] * sample_dims[2]; + std::vector sampling_data(sample_num, 0); + + for (size_t bi = 0; bi < b0; bi++) { + for (size_t bj = 0; bj < b1; bj++) { + for (size_t bk = 0; bk < b2; bk++) { for (size_t i = 0; i < 2 * sampling_block; i++) { for (size_t j = 0; j < 2 * sampling_block; j++) { - di = i < sampling_block ? i + sampling_block : dmin - 3 * sampling_block + i; - dj = j < sampling_block ? j + sampling_block : dmin - 3 * sampling_block + j; - auto d = data[(bi * dmin + di) * dims[1] + bj * dmin + dj]; - sampling_data[(bi * 2 * sampling_block + i) * sample_dims[1] - + bj * 2 * sampling_block + j] = d; + for (size_t k = 0; k < 2 * sampling_block; k++) { + di = i < sampling_block ? i + sampling_block : dmin - 3 * sampling_block + i; + dj = j < sampling_block ? j + sampling_block : dmin - 3 * sampling_block + j; + dk = k < sampling_block ? k + sampling_block : dmin - 3 * sampling_block + k; + auto d = data[(bi * dmin + di) * dims[1] * dims[2] + (bj * dmin + dj) * dims[2] + + bk * dmin + dk]; + sampling_data[(bi * 2 * sampling_block + i) * sample_dims[1] * sample_dims[2] + + (bj * 2 * sampling_block + j) * sample_dims[2] + bk * 2 * sampling_block + + k] = d; + } } } } } -// auto sampling_time = timer.stop(); -// printf("Generate sampling data, block = %lu percent = %.3f%% Time = %.3f \n", sampling_block, sample_num * 100.0 / num, -// sampling_time); - return sampling_data; - } - - template - inline typename std::enable_if>::type - sampling(T *data, std::vector dims, size_t &sample_num, std::vector &sample_dims, size_t &sampling_block) { - assert(dims.size() == N); - assert(sample_dims.size() == N); - SZ::Timer timer(true); - size_t num = std::accumulate(dims.begin(), dims.end(), (size_t) 1, std::multiplies()); - - size_t dmin = *std::min_element(dims.begin(), dims.end()); - sampling_block = dmin; - while (cal_sampling_ratio(sampling_block, num, dmin, dims) > 0.035) { - sampling_block--; - } - if (sampling_block * 2 > dmin) { - sampling_block = dmin / 2; - } - if (sampling_block < 9) { - sample_dims = dims; - sampling_block = dmin; - sample_num = num; - std::vector sampling_data(data, data + num); - return sampling_data; - } - size_t b0 = dims[0] / dmin; - sample_dims[0] = b0 * 2 * sampling_block; - size_t di; - sample_num = sample_dims[0]; - std::vector sampling_data(sample_num, 0); - - for (size_t bi = 0; bi < b0; bi++) { + } + // auto sampling_time = timer.stop(); + // printf("Generate sampling data, block = %lu percent = %.3f%% Time = %.3f \n", sampling_block, sample_num * + // 100.0 / num, + // sampling_time); + return sampling_data; +} + +template +inline typename std::enable_if>::type sampling(T *data, std::vector dims, + size_t &sample_num, + std::vector &sample_dims, + size_t &sampling_block) { + assert(dims.size() == N); + assert(sample_dims.size() == N); + Timer timer(true); + size_t num = std::accumulate(dims.begin(), dims.end(), static_cast(1), std::multiplies()); + + size_t dmin = *std::min_element(dims.begin(), dims.end()); + sampling_block = dmin; + while (cal_sampling_ratio(sampling_block, num, dmin, dims) > 0.035) { + sampling_block--; + } + if (sampling_block * 2 > dmin) { + sampling_block = dmin / 2; + } + if (sampling_block < 9) { + sample_dims = dims; + sample_num = num; + return std::vector(); + } + size_t b0 = dims[0] / dmin; + size_t b1 = dims[1] / dmin; + sample_dims[0] = b0 * 2 * sampling_block; + sample_dims[1] = b1 * 2 * sampling_block; + size_t di, dj; + sample_num = sample_dims[0] * sample_dims[1]; + std::vector sampling_data(sample_num, 0); + + for (size_t bi = 0; bi < b0; bi++) { + for (size_t bj = 0; bj < b1; bj++) { for (size_t i = 0; i < 2 * sampling_block; i++) { - di = i < sampling_block ? i + sampling_block : dmin - 3 * sampling_block + i; - auto d = data[bi * dmin + di]; - sampling_data[bi * 2 * sampling_block + i] = d; + for (size_t j = 0; j < 2 * sampling_block; j++) { + di = i < sampling_block ? i + sampling_block : dmin - 3 * sampling_block + i; + dj = j < sampling_block ? j + sampling_block : dmin - 3 * sampling_block + j; + auto d = data[(bi * dmin + di) * dims[1] + bj * dmin + dj]; + sampling_data[(bi * 2 * sampling_block + i) * sample_dims[1] + bj * 2 * sampling_block + j] = d; + } } } -// auto sampling_time = timer.stop(); -// printf("Generate sampling data, block = %lu percent = %.3f%% Time = %.3f \n", sampling_block, sample_num * 100.0 / num, -// sampling_time); - return sampling_data; } -}; - + // auto sampling_time = timer.stop(); + // printf("Generate sampling data, block = %lu percent = %.3f%% Time = %.3f \n", sampling_block, sample_num * + // 100.0 / num, + // sampling_time); + return sampling_data; +} + +template +inline typename std::enable_if>::type sampling(T *data, std::vector dims, + size_t &sample_num, + std::vector &sample_dims, + size_t &sampling_block) { + assert(dims.size() == N); + assert(sample_dims.size() == N); + Timer timer(true); + size_t num = std::accumulate(dims.begin(), dims.end(), static_cast(1), std::multiplies()); + + size_t dmin = *std::min_element(dims.begin(), dims.end()); + sampling_block = dmin; + while (cal_sampling_ratio(sampling_block, num, dmin, dims) > 0.035) { + sampling_block--; + } + if (sampling_block * 2 > dmin) { + sampling_block = dmin / 2; + } + if (sampling_block < 9) { + sample_dims = dims; + sample_num = num; + return std::vector(); + } + size_t b0 = dims[0] / dmin; + sample_dims[0] = b0 * 2 * sampling_block; + size_t di; + sample_num = sample_dims[0]; + std::vector sampling_data(sample_num, 0); + + for (size_t bi = 0; bi < b0; bi++) { + for (size_t i = 0; i < 2 * sampling_block; i++) { + di = i < sampling_block ? i + sampling_block : dmin - 3 * sampling_block + i; + auto d = data[bi * dmin + di]; + sampling_data[bi * 2 * sampling_block + i] = d; + } + } + // auto sampling_time = timer.stop(); + // printf("Generate sampling data, block = %lu percent = %.3f%% Time = %.3f \n", sampling_block, sample_num * + // 100.0 / num, + // sampling_time); + return sampling_data; +} +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/utils/FileUtil.hpp b/lib/SZ3/include/SZ3/utils/FileUtil.hpp index f245f08b..9eabef23 100644 --- a/lib/SZ3/include/SZ3/utils/FileUtil.hpp +++ b/lib/SZ3/include/SZ3/utils/FileUtil.hpp @@ -2,73 +2,87 @@ // Created by Kai Zhao on 12/9/19. // -#ifndef _SZ_FILE_UTIL -#define _SZ_FILE_UTIL +#ifndef SZ3_FILE_UTIL +#define SZ3_FILE_UTIL -#include +#include #include #include -#include +#include +#include #include #include -#include -namespace SZ { +namespace SZ3 { - template - void readfile(const char *file, const size_t num, Type *data) { - std::ifstream fin(file, std::ios::binary); - if (!fin) { - std::cout << " Error, Couldn't find the file: " << file << "\n"; - exit(0); - } - fin.seekg(0, std::ios::end); - const size_t num_elements = fin.tellg() / sizeof(Type); - assert(num_elements == num && "File size is not equals to the input setting"); - fin.seekg(0, std::ios::beg); - fin.read(reinterpret_cast(data), num_elements * sizeof(Type)); - fin.close(); +/** + * read binary file and put it to a existing memory space + * @tparam Type + * @param file + * @param num + * @param data + */ +template +void readfile(const char *file, const size_t num, Type *data) { + std::ifstream fin(file, std::ios::binary); + if (!fin) { + std::cerr << " Error, Couldn't find the file: " << file << "\n"; + throw std::invalid_argument("Couldn't find the file"); } - - template - std::unique_ptr readfile(const char *file, size_t &num) { - std::ifstream fin(file, std::ios::binary); - if (!fin) { - std::cout << " Error, Couldn't find the file: " << file << std::endl; - exit(0); - } - fin.seekg(0, std::ios::end); - const size_t num_elements = fin.tellg() / sizeof(Type); - fin.seekg(0, std::ios::beg); -// auto data = SZ::compat::make_unique(num_elements); - auto data = std::make_unique(num_elements); - fin.read(reinterpret_cast(&data[0]), num_elements * sizeof(Type)); - fin.close(); - num = num_elements; - return data; + fin.seekg(0, std::ios::end); + if (fin.tellg() / sizeof(Type) != num) { + throw std::invalid_argument("File size is not equal to the input setting"); } + fin.seekg(0, std::ios::beg); + fin.read(reinterpret_cast(data), num * sizeof(Type)); + fin.close(); +} - template - void writefile(const char *file, Type *data, size_t num_elements) { - std::ofstream fout(file, std::ios::binary); - fout.write(reinterpret_cast(&data[0]), num_elements * sizeof(Type)); - fout.close(); +/** + * read binary file and put it to a new memory space + * @tparam Type + * @param file + * @param num + * @return + */ +template +std::unique_ptr readfile(const char *file, size_t &num) { + std::ifstream fin(file, std::ios::binary); + if (!fin) { + std::cerr << " Error, Couldn't find the file: " << file << std::endl; + throw std::invalid_argument("Couldn't find the file"); } + fin.seekg(0, std::ios::end); + num = fin.tellg() / sizeof(Type); + fin.seekg(0, std::ios::beg); + // auto data = SZ3::compat::make_unique(num_elements); + auto data = std::make_unique(num); + fin.read(reinterpret_cast(&data[0]), num * sizeof(Type)); + fin.close(); + return data; +} + +template +void writefile(const char *file, Type *data, size_t num_elements) { + std::ofstream fout(file, std::ios::binary); + fout.write(reinterpret_cast(&data[0]), num_elements * sizeof(Type)); + fout.close(); +} - template - void writeTextFile(const char *file, Type *data, size_t num_elements) { - std::ofstream fout(file); - if (fout.is_open()) { - for (size_t i = 0; i < num_elements; i++) { - fout << data[i] << std::endl; - } - fout.close(); - } else { - std::cout << "Error, unable to open file for output: " << file << std::endl; - exit(0); +template +void writeTextFile(const char *file, Type *data, size_t num_elements) { + std::ofstream fout(file); + if (fout.is_open()) { + for (size_t i = 0; i < num_elements; i++) { + fout << data[i] << std::endl; } + fout.close(); + } else { + std::cerr << "Error, unable to open file for output: " << file << std::endl; + throw std::invalid_argument("Couldn't open the file for output"); } - } +} // namespace SZ3 + #endif diff --git a/lib/SZ3/include/SZ3/utils/Interpolators.hpp b/lib/SZ3/include/SZ3/utils/Interpolators.hpp index 2c344924..b1992f54 100644 --- a/lib/SZ3/include/SZ3/utils/Interpolators.hpp +++ b/lib/SZ3/include/SZ3/utils/Interpolators.hpp @@ -2,88 +2,113 @@ // Created by Kai Zhao on 9/1/20. // -#ifndef SZ_INTERPOLATORS_HPP -#define SZ_INTERPOLATORS_HPP +#ifndef SZ3_INTERPOLATORS_HPP +#define SZ3_INTERPOLATORS_HPP -namespace SZ { - template - inline T interp_linear(T a, T b) { - return (a + b) / 2; - } +#include "SZ3/def.hpp" - template - inline T interp_linear1(T a, T b) { - return -0.5 * a + 1.5 * b; - } +namespace SZ3 { +template +ALWAYS_INLINE T interp_linear(T a, T b) { + return (a + b) / 2; +} - template - inline T interp_quad_1(T a, T b, T c) { - return (3 * a + 6 * b - c) / 8; - } +template +ALWAYS_INLINE T interp_linear1(T a, T b) { + return -0.5 * a + 1.5 * b; +} - template - inline T interp_quad_2(T a, T b, T c) { - return (-a + 6 * b + 3 * c) / 8; - } +template +ALWAYS_INLINE T interp_quad_1(T a, T b, T c) { + return (3 * a + 6 * b - c) / 8; +} - template - inline T interp_quad_3(T a, T b, T c) { - return (3 * a - 10 * b + 15 * c) / 8; - } +template +ALWAYS_INLINE T interp_quad_2(T a, T b, T c) { + return (-a + 6 * b + 3 * c) / 8; +} - template - inline T interp_cubic(T a, T b, T c, T d) { - return (-a + 9 * b + 9 * c - d) / 16; - } +template +ALWAYS_INLINE T interp_quad_3(T a, T b, T c) { + return (3 * a - 10 * b + 15 * c) / 8; +} - template - inline T interp_cubic_front(T a, T b, T c, T d) { - return (5 * a + 15 * b - 5 * c + d) / 16; - } +template +ALWAYS_INLINE T interp_cubic(T a, T b, T c, T d) { + return (-a + 9 * b + 9 * c - d) / 16; +} - template - inline T interp_cubic_front_2(T a, T b, T c, T d) { - return ( a + 6 * b - 4 * c + d) / 4; - } +template +ALWAYS_INLINE T interp_cubic_natural(T a, T b, T c, T d) { + return 0.575 * (b + c) - 0.075 * (a + d); +} - template - inline T interp_cubic_back_1(T a, T b, T c, T d) { - return (a - 5 * b + 15 * c + 5 * d) / 16; - } +template +ALWAYS_INLINE T lorenzo_1d(T a, T b) { + return 2 * b - a; +} - template - inline T interp_cubic_back_2(T a, T b, T c, T d) { - return (-5 * a + 21 * b - 35 * c + 35 * d) / 16; - } +template +ALWAYS_INLINE T lorenzo_2d(T a, T b, T c) { + return (b + c - a); +} - template - inline T interp_cubic2(T a, T b, T c, T d) { - return (-3 * a + 23 * b + 23 * c - 3 * d) / 40; - } +template +ALWAYS_INLINE T lorenzo_3d(T a, T b, T c, T d, T e,T f,T g) { + return (a - b - c + d - e + f + g); +} + + + + +template +ALWAYS_INLINE T interp_cubic_front(T a, T b, T c, T d) { + return (5 * a + 15 * b - 5 * c + d) / 16; +} + +template +ALWAYS_INLINE T interp_cubic_front_2(T a, T b, T c, T d) { + return (a + 6 * b - 4 * c + d) / 4; +} - template - inline T interp_akima(T a, T b, T c, T d) { - T t0 = 2 * b - a - c; - T t1 = 2 * c - b - d; - T abt0 = fabs(t0); - T abt1 = fabs(t1); - if (fabs(abt0 + abt1) > 1e-9) { - return (b + c) / 2 + (t0 * abt1 + t1 * abt0) / 8 / (abt0 + abt1); - } else { - return (b + c) / 2; - } +template +ALWAYS_INLINE T interp_cubic_back_1(T a, T b, T c, T d) { + return (a - 5 * b + 15 * c + 5 * d) / 16; +} + +template +ALWAYS_INLINE T interp_cubic_back_2(T a, T b, T c, T d) { + return (-5 * a + 21 * b - 35 * c + 35 * d) / 16; +} + +template +ALWAYS_INLINE T interp_cubic2(T a, T b, T c, T d) { + return (-3 * a + 23 * b + 23 * c - 3 * d) / 40; +} + +template +ALWAYS_INLINE T interp_akima(T a, T b, T c, T d) { + T t0 = 2 * b - a - c; + T t1 = 2 * c - b - d; + T abt0 = fabs(t0); + T abt1 = fabs(t1); + if (fabs(abt0 + abt1) > 1e-9) { + return (b + c) / 2 + (t0 * abt1 + t1 * abt0) / 8 / (abt0 + abt1); + } else { + return (b + c) / 2; } +} - template - inline T interp_pchip(T a, T b, T c, T d) { - T pchip = (b + c) / 2; - if ((b - a < 0) == (c - b < 0) && fabs(c - a) > 1e-9) { - pchip += 1 / 4 * (b - a) * (c - b) / (c - a); - } - if ((c - b < 0) == (d - c < 0) && fabs(d - b) > 1e-9) { - pchip -= 1 / 4 * (c - b) * (d - c) / (d - b); - } - return pchip; +template +ALWAYS_INLINE T interp_pchip(T a, T b, T c, T d) { + T pchip = (b + c) / 2; + if ((b - a < 0) == (c - b < 0) && fabs(c - a) > 1e-9) { + pchip += 1 / 4 * (b - a) * (c - b) / (c - a); + } + if ((c - b < 0) == (d - c < 0) && fabs(d - b) > 1e-9) { + pchip -= 1 / 4 * (c - b) * (d - c) / (d - b); } + return pchip; } -#endif //SZ_INTERPOLATORS_HPP +} // namespace SZ3 +#endif // SZ_INTERPOLATORS_HPP diff --git a/lib/SZ3/include/SZ3/utils/Iterator.hpp b/lib/SZ3/include/SZ3/utils/Iterator.hpp index c3d47008..9cceeee7 100644 --- a/lib/SZ3/include/SZ3/utils/Iterator.hpp +++ b/lib/SZ3/include/SZ3/utils/Iterator.hpp @@ -1,370 +1,319 @@ -#ifndef _SZ_ITERATOR_HPP -#define _SZ_ITERATOR_HPP +#ifndef SZ3_ITERATOR_HPP +#define SZ3_ITERATOR_HPP +#include +#include #include #include -#include +#include #include -#include -#include -#include +#include #include -#include -#include -#include +#include +#include #include +#include -namespace SZ { +namespace SZ3 { // N-dimensional multi_dimensional_range - template - class multi_dimensional_range : public std::enable_shared_from_this> { - public: - - class multi_dimensional_iterator { - public: - using value_type = T; - using difference_type = std::ptrdiff_t; - using reference = T &; - using const_reference = T const &; - using pointer = T *; - using iterator_category = std::bidirectional_iterator_tag; +template +class multi_dimensional_range : public std::enable_shared_from_this> { + public: + class multi_dimensional_iterator { + public: + using value_type = T; + using difference_type = std::ptrdiff_t; + using reference = T &; + using const_reference = T const &; + using pointer = T *; + using iterator_category = std::bidirectional_iterator_tag; - ~multi_dimensional_iterator() = default; + ~multi_dimensional_iterator() = default; - multi_dimensional_iterator() = default; + multi_dimensional_iterator() = default; - multi_dimensional_iterator(multi_dimensional_iterator const &) = default; + multi_dimensional_iterator(multi_dimensional_iterator const &) = default; - multi_dimensional_iterator &operator=(multi_dimensional_iterator const &) = default; + multi_dimensional_iterator &operator=(multi_dimensional_iterator const &) = default; - multi_dimensional_iterator(multi_dimensional_iterator &&) noexcept = default; + multi_dimensional_iterator(multi_dimensional_iterator &&) noexcept = default; - multi_dimensional_iterator &operator=(multi_dimensional_iterator &&) noexcept = default; + multi_dimensional_iterator &operator=(multi_dimensional_iterator &&) noexcept = default; - multi_dimensional_iterator(std::shared_ptr &&range_, std::size_t current_offset_) noexcept: - range(range_), global_offset(current_offset_), local_index{} { - } + multi_dimensional_iterator(std::shared_ptr &&range_, + std::size_t current_offset_) noexcept + : range(range_), global_offset(current_offset_), local_index{} {} - multi_dimensional_iterator &operator--() { - size_t i = N - 1; + multi_dimensional_iterator &operator--() { + size_t i = N - 1; + local_index[i]--; + ptrdiff_t offset = -range->global_dim_strides[i]; + while (i && (local_index[i] < 0)) { + offset += range->dimensions[i] * range->global_dim_strides[i]; + local_index[i--] = range->dimensions[i] - 1; + offset -= range->global_dim_strides[i]; local_index[i]--; - ptrdiff_t offset = range->global_dim_strides[i]; - while (i && (local_index[i] < 0)) { - offset += range->dimensions[i] * range->global_dim_strides[i]; - local_index[i--] = range->dimensions[i]; - offset -= range->global_dim_strides[i]; - local_index[i]--; - } - global_offset += offset; - return *this; } + global_offset += offset; + return *this; + } - multi_dimensional_iterator operator--(int) { - auto cpy = *this; - --(*this); - return cpy; - } + multi_dimensional_iterator operator--(int) { + auto cpy = *this; + --(*this); + return cpy; + } - inline multi_dimensional_iterator &operator++() { - size_t i = N - 1; + inline multi_dimensional_iterator &operator++() { + size_t i = N - 1; + local_index[i]++; + ptrdiff_t offset = range->global_dim_strides[i]; + while (i && (local_index[i] == range->dimensions[i])) { + offset -= range->dimensions[i] * range->global_dim_strides[i]; + local_index[i--] = 0; + offset += range->global_dim_strides[i]; local_index[i]++; - ptrdiff_t offset = range->global_dim_strides[i]; - while (i && (local_index[i] == range->dimensions[i])) { - offset -= range->dimensions[i] * range->global_dim_strides[i]; - local_index[i--] = 0; - offset += range->global_dim_strides[i]; - local_index[i]++; - } - global_offset += offset; - return *this; - } - - multi_dimensional_iterator operator++(int) { - auto cpy = *this; - ++(*this); - return cpy; - } - - pointer operator->() { - return range->data[global_offset]; - } - - pointer operator->() const { - return range->data[global_offset]; } + global_offset += offset; + return *this; + } - reference operator*() { - return range->data[global_offset]; - } + multi_dimensional_iterator operator++(int) { + auto cpy = *this; + ++(*this); + return cpy; + } - const_reference operator*() const { - return range->data[global_offset]; - } + pointer operator->() { return range->data[global_offset]; } - bool operator==(multi_dimensional_iterator const &rhs) const { - return global_offset == rhs.global_offset; - } + pointer operator->() const { return range->data[global_offset]; } - bool operator!=(multi_dimensional_iterator const &rhs) const { - return global_offset != rhs.global_offset; - } + reference operator*() { return range->data[global_offset]; } + const_reference operator*() const { return range->data[global_offset]; } - std::array get_global_index() const { - auto offset = global_offset; - std::array global_idx{0}; - for (int i = N - 1; i >= 0; i--) { - global_idx[i] = offset % range->global_dimensions[i]; - offset /= range->global_dimensions[i]; - } - return global_idx; - } + bool operator==(multi_dimensional_iterator const &rhs) const { return global_offset == rhs.global_offset; } - std::array get_local_index() const { - return local_index; - } + bool operator!=(multi_dimensional_iterator const &rhs) const { return global_offset != rhs.global_offset; } - size_t get_local_index(size_t i) const { - return local_index[i]; + std::array get_global_index() const { + auto offset = global_offset; + std::array global_idx{0}; + for (int i = N - 1; i >= 0; i--) { + global_idx[i] = offset % range->global_dimensions[i]; + offset /= range->global_dimensions[i]; } + return global_idx; + } - ptrdiff_t get_offset() const { - return global_offset; - } + std::array get_local_index() const { return local_index; } - std::array get_dimensions() const { - return range->get_dimensions(); - } + size_t get_local_index(size_t i) const { return local_index[i]; } - // assuming the iterator is at [i0, j0, k0, ...] - // return the value of [i0 - pos[0], j0 - pos[1], k0 - pos[2] ...] - // return 0 if range is exceeded - // [input] offset for all the dimensions - // [output] value of data at the target position - template - inline T prev(Args &&... pos) const { - // TODO: check int type - // TODO: change to offset map for efficiency - static_assert(sizeof...(Args) == N, "Must have the same number of arguments"); - auto offset = global_offset; - std::array args{std::forward(pos)...}; - for (int i = 0; i < N; i++) { - if (local_index[i] < args[i] && range->is_left_boundary(i)) return 0; - offset -= args[i] ? args[i] * range->global_dim_strides[i] : 0; - } - return range->data[offset]; - } + ptrdiff_t get_offset() const { return global_offset; } - // No support for carry set. - // For example, iterator in position (4,4) and dimension is 6x6, move(1,1) is supported but move (2,0) is not supported. - template - multi_dimensional_iterator &move(Args &&... pos) { - static_assert(sizeof...(Args) == N, "Must have the same number of arguments"); - std::array args{std::forward(pos)...}; - return move2(args); - } + std::array get_dimensions() const { return range->get_dimensions(); } - multi_dimensional_iterator &move2(std::array args) { - for (int i = N - 1; i >= 0; i--) { - if (args[i]) { - assert(0 <= local_index[i] + args[i]); - assert(local_index[i] + args[i] < range->dimensions[i]); - local_index[i] += args[i]; - global_offset += args[i] * range->global_dim_strides[i]; - } - } - return *this; + // assuming the iterator is at [i0, j0, k0, ...] + // return the value of [i0 - pos[0], j0 - pos[1], k0 - pos[2] ...] + // return 0 if range is exceeded + // [input] offset for all the dimensions + // [output] value of data at the target position + template + inline T prev(Args &&...pos) const { + // TODO: check int type + // TODO: change to offset map for efficiency + static_assert(sizeof...(Args) == N, "Must have the same number of arguments"); + auto offset = global_offset; + std::array args{std::forward(pos)...}; + for (int i = 0; i < N; i++) { + if (local_index[i] < args[i] && range->is_left_boundary(i)) return 0; + offset -= args[i] ? args[i] * range->global_dim_strides[i] : 0; } + return range->data[offset]; + } + // No support for carry set. + // For example, iterator in position (4,4) and dimension is 6x6, move(1,1) is supported but move (2,0) is not + // supported. + template + multi_dimensional_iterator &move(Args &&...pos) { + static_assert(sizeof...(Args) == N, "Must have the same number of arguments"); + std::array args{std::forward(pos)...}; + return move2(args); + } - // No support for carry set. - template - multi_dimensional_iterator &move() { - if (local_index[N - 1] < range->dimensions[N - 1] - 1) { - local_index[N - 1]++; - global_offset += range->global_dim_strides[N - 1]; + multi_dimensional_iterator &move2(std::array args) { + for (int i = N - 1; i >= 0; i--) { + if (args[i]) { + assert(0 <= local_index[i] + args[i]); + assert(local_index[i] + args[i] < range->dimensions[i]); + local_index[i] += args[i]; + global_offset += args[i] * range->global_dim_strides[i]; } - return *this; } + return *this; + } - void print() { - std::cout << "("; - for (auto const &i: local_index) { - std::cout << i << ","; - } - std::cout << "),["; - for (auto const &i: range->dimensions) { - std::cout << i << ","; - } - std::cout << "]" << std::endl; + // No support for carry set. + template + multi_dimensional_iterator &move() { + if (local_index[N - 1] < range->dimensions[N - 1] - 1) { + local_index[N - 1]++; + global_offset += range->global_dim_strides[N - 1]; } + return *this; + } - - private: - friend multi_dimensional_range; - std::shared_ptr range; - std::array local_index; // index of current_offset position - ptrdiff_t global_offset; - }; - - using iterator = multi_dimensional_iterator; - using const_iterator = multi_dimensional_iterator; - using value_type = T; - using reference = T &; - using pointer = T *; - - template - multi_dimensional_range( - T *data_, - ForwardIt1 global_dims_begin, - ForwardIt1 global_dims_end, - size_t stride_, - ptrdiff_t offset_ - ): data(data_), left_boundary{false} { - static_assert( - std::is_convertible< - typename std::iterator_traits::value_type, - std::size_t>::value, - "ForwardIt1 must be convertible to std::size_t" - ); - if (global_dims_end - global_dims_begin != N) { - std::cout << global_dims_end - global_dims_begin << " " << N << std::endl; - std::cerr << "#dimensions does not match!\n"; - exit(0); + void print() { + std::cout << "("; + for (auto const &i : local_index) { + std::cout << i << ","; } - set_access_stride(stride_); - // set global dimensions - int i = 0; - for (auto iter = global_dims_begin; iter != global_dims_end; ++iter) { - global_dimensions[i++] = *iter; + std::cout << "),["; + for (auto const &i : range->dimensions) { + std::cout << i << ","; } -// size_t cur_stride = stride_; -// for (int i = N - 1; i >= 0; i--) { -// global_dim_strides[i] = cur_stride; -// cur_stride *= global_dimensions[i]; -// } - // set_dimensions(dims_begin, dims_end); - set_dimensions_auto(); - set_global_dim_strides(); - set_offsets(offset_); - } - - multi_dimensional_range( - T *data_, - std::array global_dims_, - std::array stride_, - ptrdiff_t offset_ - ) : data(data_), left_boundary{false} { - set_access_stride(stride_); - // set global dimensions - global_dimensions = global_dims_; - set_dimensions_auto(); - set_global_dim_strides(); - set_offsets(offset_); - } - - multi_dimensional_iterator begin() { - return multi_dimensional_iterator(this->shared_from_this(), start_offset); - } - - multi_dimensional_iterator end() { - return multi_dimensional_iterator(this->shared_from_this(), end_offset); + std::cout << "]" << std::endl; } - template - void set_dimensions(ForwardIt1 begin, ForwardIt1 end) { - int i = 0; - for (auto iter = begin; iter != end; ++iter) { - dimensions[i++] = *iter; - // std::cout << dimensions[i-1] << " "; - } - } + private: + friend multi_dimensional_range; + std::shared_ptr range; + std::array local_index; // index of current_offset position + ptrdiff_t global_offset; + }; - void set_dimensions_auto() { - // std::cout << "dimensions: "; - for (int i = 0; i < dimensions.size(); i++) { - // std::cout << "g[i]=" << global_dimensions[i] << ",str=" << access_stride << " "; - dimensions[i] = (global_dimensions[i] - 1) / access_stride[i] + 1; - // std::cout << dimensions[i] << " "; - } - // std::cout << std::endl; + using iterator = multi_dimensional_iterator; + using const_iterator = multi_dimensional_iterator; + using value_type = T; + using reference = T &; + using pointer = T *; + + template + multi_dimensional_range(T *data_, ForwardIt1 global_dims_begin, ForwardIt1 global_dims_end, size_t stride_, + ptrdiff_t offset_) + : data(data_), left_boundary{false} { + static_assert(std::is_convertible::value_type, std::size_t>::value, + "ForwardIt1 must be convertible to std::size_t"); + if (global_dims_end - global_dims_begin != N) { + std::cout << global_dims_end - global_dims_begin << " " << N << std::endl; + std::cerr << "#dimensions does not match\n"; + throw std::invalid_argument("#dimensions does not match"); } - - void set_global_dim_strides() { - // std::cout << "strides: "; - size_t cur_stride = 1; - for (int i = N - 1; i >= 0; i--) { - global_dim_strides[i] = cur_stride * access_stride[i]; - cur_stride *= global_dimensions[i]; - // std::cout << dim_strides[i] << " "; - } - // std::cout << std::endl; + set_access_stride(stride_); + // set global dimensions + int i = 0; + for (auto iter = global_dims_begin; iter != global_dims_end; ++iter) { + global_dimensions[i++] = *iter; } - - void set_offsets(ptrdiff_t offset_) { - start_offset = offset_; - end_offset = start_offset + dimensions[0] * global_dim_strides[0]; + // size_t cur_stride = stride_; + // for (int i = N - 1; i >= 0; i--) { + // global_dim_strides[i] = cur_stride; + // cur_stride *= global_dimensions[i]; + // } + // set_dimensions(dims_begin, dims_end); + set_dimensions_auto(); + set_global_dim_strides(); + set_offsets(offset_); + } + + multi_dimensional_range(T *data_, std::array global_dims_, std::array stride_, + ptrdiff_t offset_) + : data(data_), left_boundary{false} { + set_access_stride(stride_); + // set global dimensions + global_dimensions = global_dims_; + set_dimensions_auto(); + set_global_dim_strides(); + set_offsets(offset_); + } + + multi_dimensional_iterator begin() { return multi_dimensional_iterator(this->shared_from_this(), start_offset); } + + multi_dimensional_iterator end() { return multi_dimensional_iterator(this->shared_from_this(), end_offset); } + + template + void set_dimensions(ForwardIt1 begin, ForwardIt1 end) { + int i = 0; + for (auto iter = begin; iter != end; ++iter) { + dimensions[i++] = *iter; + // std::cout << dimensions[i-1] << " "; } - - void set_access_stride(size_t stride_) { - access_stride.fill(stride_); + } + + void set_dimensions_auto() { + // std::cout << "dimensions: "; + for (int i = 0; i < dimensions.size(); i++) { + // std::cout << "g[i]=" << global_dimensions[i] << ",str=" << access_stride << " "; + dimensions[i] = (global_dimensions[i] - 1) / access_stride[i] + 1; + // std::cout << dimensions[i] << " "; } - - void set_access_stride(std::array stride_) { - access_stride = stride_; + // std::cout << std::endl; + } + + void set_global_dim_strides() { + // std::cout << "strides: "; + size_t cur_stride = 1; + for (int i = N - 1; i >= 0; i--) { + global_dim_strides[i] = cur_stride * access_stride[i]; + cur_stride *= global_dimensions[i]; + // std::cout << dim_strides[i] << " "; } - - void update_block_range(multi_dimensional_iterator block, size_t block_size) { - std::array dims; - for (int i = 0; i < N; i++) { - //check boundary condition - if (block.local_index[i] == block.range->dimensions[i] - 1) { - dims[i] = global_dimensions[i] - block.local_index[i] * block.range->access_stride[i]; - } else { - dims[i] = block_size; - } + // std::cout << std::endl; + } + + void set_offsets(ptrdiff_t offset_) { + start_offset = offset_; + end_offset = start_offset + dimensions[0] * global_dim_strides[0]; + } + + void set_access_stride(size_t stride_) { access_stride.fill(stride_); } + + void set_access_stride(std::array stride_) { access_stride = stride_; } + + void update_block_range(multi_dimensional_iterator block, size_t block_size) { + std::array dims; + for (int i = 0; i < N; i++) { + // check boundary condition + if (block.local_index[i] == block.range->dimensions[i] - 1) { + dims[i] = global_dimensions[i] - block.local_index[i] * block.range->access_stride[i]; + } else { + dims[i] = block_size; } - update_block_range(block, dims); } + update_block_range(block, dims); + } - void update_block_range(multi_dimensional_iterator block, const std::array &dims) { - dimensions = dims; - for (int i = 0; i < N; i++) { - left_boundary[i] = (block.get_local_index(i) == 0); - } - this->set_offsets(block.get_offset()); + void update_block_range(multi_dimensional_iterator block, const std::array &dims) { + dimensions = dims; + for (int i = 0; i < N; i++) { + left_boundary[i] = (block.get_local_index(i) == 0); } + this->set_offsets(block.get_offset()); + } - size_t get_dimensions(size_t i) const { - return dimensions[i]; - } + size_t get_dimensions(size_t i) const { return dimensions[i]; } - std::array get_dimensions() const { - return dimensions; - } + std::array get_dimensions() const { return dimensions; } - std::array get_global_dimensions() const { - return global_dimensions; - } + std::array get_global_dimensions() const { return global_dimensions; } - bool is_left_boundary(size_t i) const { - return left_boundary[i]; - } + bool is_left_boundary(size_t i) const { return left_boundary[i]; } - T *get_data() { - return data; - } + T *get_data() { return data; } - private: - std::array global_dimensions; - std::array global_dim_strides; - std::array dimensions; // the dimensions - std::array left_boundary; // if current block is the left boundary, iterators go outside the boundary will return 0. - std::array access_stride; // stride for access pattern - ptrdiff_t start_offset; // offset for start point - ptrdiff_t end_offset; // offset for end point - T *data; // data pointer - }; + private: + std::array global_dimensions; + std::array global_dim_strides; + std::array dimensions; // the dimensions + std::array + left_boundary; // if current block is the left boundary, iterators go outside the boundary will return 0. + std::array access_stride; // stride for access pattern + ptrdiff_t start_offset; // offset for start point + ptrdiff_t end_offset; // offset for end point + T *data; // data pointer +}; -} +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/utils/KmeansUtil.hpp b/lib/SZ3/include/SZ3/utils/KmeansUtil.hpp new file mode 100644 index 00000000..5bb314a1 --- /dev/null +++ b/lib/SZ3/include/SZ3/utils/KmeansUtil.hpp @@ -0,0 +1,368 @@ +// +// Created by Kai Zhao on 12/9/19. +// + +#ifndef SZ3_KMEANS_UTIL +#define SZ3_KMEANS_UTIL + +#include +#include +#include +#include +#include +#include +#include + +#include "SZ3/def.hpp" +#include "Timer.hpp" + +namespace SZ3 { + +/* + * Internal implementation of the SMAWK algorithm. + */ +template +void _smawk(const std::vector &rows, const std::vector &cols, + const std::function &lookup, std::vector *result) { + // Recursion base case + if (rows.size() == 0) return; + + // ******************************** + // * REDUCE + // ******************************** + + std::vector _cols; // Stack of surviving columns + for (size_t col : cols) { + while (true) { + if (_cols.size() == 0) break; + size_t row = rows[_cols.size() - 1]; + if (lookup(row, col) >= lookup(row, _cols.back())) break; + _cols.pop_back(); + } + if (_cols.size() < rows.size()) _cols.push_back(col); + } + + // Call recursively on odd-indexed rows + std::vector odd_rows; + for (size_t i = 1; i < rows.size(); i += 2) { + odd_rows.push_back(rows[i]); + } + _smawk(odd_rows, _cols, lookup, result); + + std::unordered_map col_idx_lookup; + for (size_t idx = 0; idx < _cols.size(); ++idx) { + col_idx_lookup[_cols[idx]] = idx; + } + + // ******************************** + // * INTERPOLATE + // ******************************** + + // Fill-in even-indexed rows + size_t start = 0; + for (size_t r = 0; r < rows.size(); r += 2) { + size_t row = rows[r]; + size_t stop = _cols.size() - 1; + if (r < rows.size() - 1) stop = col_idx_lookup[(*result)[rows[r + 1]]]; + size_t argmin = _cols[start]; + T min = lookup(row, argmin); + for (size_t c = start + 1; c <= stop; ++c) { + T value = lookup(row, _cols[c]); + if (c == start || value < min) { + argmin = _cols[c]; + min = value; + } + } + (*result)[row] = argmin; + start = stop; + } +} + +/* + * Interface for the SMAWK algorithm, for finding the minimum value in each row + * of an implicitly-defined totally monotone matrix. + */ +template +std::vector smawk(const size_t num_rows, const size_t num_cols, + const std::function &lookup) { + std::vector result; + result.resize(num_rows); + std::vector rows(num_rows); + iota(begin(rows), end(rows), 0); + std::vector cols(num_cols); + iota(begin(cols), end(cols), 0); + _smawk(rows, cols, lookup, &result); + return result; +} + +/* + * Calculates cluster costs in O(1) using prefix sum arrays. + */ +template +class CostCalculator { + std::vector cumsum; + std::vector cumsum2; + + public: + CostCalculator(const std::vector
&vec, size_t n) { + cumsum.push_back(0.0); + cumsum2.push_back(0.0); + for (size_t i = 0; i < n; ++i) { + double x = vec[i]; + cumsum.push_back(x + cumsum[i]); + cumsum2.push_back(x * x + cumsum2[i]); + } + } + + double calc(size_t i, size_t j) { + if (j < i) return 0.0; + double mu = (cumsum[j + 1] - cumsum[i]) / (j - i + 1); + double result = cumsum2[j + 1] - cumsum2[i]; + result += (j - i + 1) * (mu * mu); + result -= (2 * mu) * (cumsum[j + 1] - cumsum[i]); + return result; + } +}; + +template +class Matrix { + std::vector data; + size_t num_rows; + size_t num_cols; + + public: + Matrix(size_t num_rows, size_t num_cols) { + this->num_rows = num_rows; + this->num_cols = num_cols; + data.resize(num_rows * num_cols); + } + + inline T get(size_t i, size_t j) { return data[i * num_cols + j]; } + + inline void set(size_t i, size_t j, T value) { data[i * num_cols + j] = value; } +}; + +template +void cluster(DT *array, size_t n, int &k, size_t *clusters, DT *centroids) { + // *************************************************** + // * Sort input array and save info for de-sorting + // *************************************************** + + std::vector sort_idxs(n); + iota(sort_idxs.begin(), sort_idxs.end(), 0); + sort(sort_idxs.begin(), sort_idxs.end(), [&array](size_t a, size_t b) { return array[a] < array[b]; }); + // vector undo_sort_lookup(n); + std::vector
sorted_array(n); + for (size_t i = 0; i < n; ++i) { + sorted_array[i] = array[sort_idxs[i]]; + // undo_sort_lookup[sort_idxs[i]] = i; + } + + // *************************************************** + // * Set D and T using dynamic programming algorithm + // *************************************************** + + // Algorithm as presented in section 2.2 of (Gronlund et al., 2017). + + CostCalculator
cost_calculator(sorted_array, n); + Matrix
D(k, n); + Matrix T(k, n); + + for (size_t i = 0; i < n; ++i) { + D.set(0, i, cost_calculator.calc(0, i)); + T.set(0, i, 0); + } + + double ratio_avg = 0; + bool findk = false; + size_t bestk = 0; + for (size_t k_ = 1; k_ < k; ++k_) { + auto C = [&D, &k_, &cost_calculator](size_t i, size_t j) -> DT { + size_t col = i < j - 1 ? i : j - 1; + return D.get(k_ - 1, col) + cost_calculator.calc(j, i); + }; + std::vector row_argmins = smawk
(n, n, C); + for (size_t i = 0; i < row_argmins.size(); ++i) { + size_t argmin = row_argmins[i]; + DT min = C(i, argmin); + D.set(k_, i, min); + T.set(k_, i, argmin); + } + float ratio = D.get(k_ - 1, n - 1) / D.get(k_, n - 1); + ratio_avg = (ratio_avg * (k_ - 1) + ratio) / (k_); + // std::cout << k_ + 1 << " , " << D.get(k_, n - 1) << " , " << ratio << " , " << ratio_avg << std::endl; + if (ratio / ratio_avg > 1.5) { + bestk = k_ + 1; + findk = true; + } else { + if (findk) { + break; + } + } + } + + if (!findk) { + return; + } + k = bestk; + // std::cout << "# groups = " << k << std::endl; + + // *************************************************** + // * Extract cluster assignments by backtracking + // *************************************************** + + // Note: This step requires O(kn) memory usage due to saving the entire + // T matrix. However, it can be modified so that the memory usage is O(n). + // D and T would not need to be retained in full (D already doesn't need + // to be fully retained, although it currently is). + // Details are in section 3 of (Grønlund et al., 2017). + + // vector
sorted_clusters(n); + + size_t t = n; + size_t k_ = k - 1; + size_t n_ = n - 1; + // The do/while loop was used in place of: + // for (k_ = k - 1; k_ >= 0; --k_) + // to avoid wraparound of an unsigned type. + do { + size_t t_ = t; + t = T.get(k_, n_); + DT centroid = 0.0; + for (size_t i = t; i < t_; ++i) { + // sorted_clusters[i] = k_; + centroid += (sorted_array[i] - centroid) / (i - t + 1); + } + centroids[k_] = centroid; + k_ -= 1; + n_ = t - 1; + } while (t > 0); + + // *************************************************** + // * Order cluster assignments to match de-sorted + // * ordering + // *************************************************** + + // for (size_t i = 0; i < n; ++i) { + // clusters[i] = sorted_clusters[undo_sort_lookup[i]]; + // } +} + +template +int f(T data, double start_position, double offset) { + return round((data - start_position) / offset); +} + +template +int f1(T data, T *boundary, int n, double start_position, double offset) { + return round((data - start_position) / offset); +} + +template +int f2(T data, T *boundary, int n, double start_position, double offset) { + int low = 0, high = n; // numElems is the size of the array i.e arr.size() + while (low != high) { + int mid = (low + high) / 2; // Or a fancy way to avoid int overflow + if (boundary[mid] <= data) { + low = mid + 1; + } else { + high = mid; + } + } + return high; +} + +template +int f3(T data, T *boundary, int n, double start_position, double offset) { + for (int i = 1; i < n; i++) { + if (boundary[i] > data) { + return i - 1; + } + } + return n - 1; +} + +template +void get_cluster(T *data, size_t num, float &level_start, float &level_offset, int &level_num, size_t sample_num) { + T max = *std::max_element(data, data + num); + // T min = *std::min_element(data, data + num); + SZ3::Timer timer; + timer.start(); + std::vector sample; + if (num == sample_num) { + sample = std::vector(data, data + num); + } else { + sample.reserve(sample_num); + std::random_device rd; // Will be used to obtain a seed for the random number engine + std::mt19937 gen(rd()); // Standard mersenne_twister_engine seeded with rd() + // std::uniform_int_distribution<> dis(0, 2 * sample_rate); + size_t input_idx = 0; + // for (int i = 0; i < num / sample_rate; i++) { + // input_idx = (input_idx + dis(gen)) % num; + // std::cout << input_idx << " "; + // sample[i] = input[input_idx]; + // } + // std::cout << std::endl; + std::uniform_int_distribution<> dis2(0, num); + std::unordered_set sampledkeys; + // printf("total_num=%lu, sample_num=%lu\n", num, sample_num); + for (size_t i = 0; i < sample_num; i++) { + do { + input_idx = dis2(gen); + } while (sampledkeys.find(input_idx) != sampledkeys.end()); + // std::cout << input_idx << " "; + sample[i] = data[input_idx]; + } + // std::cout << std::endl; + + // std::sample(input.begin(), input.end(), + // sample.begin(), + // num / sample_rate, + // std::mt19937{std::random_device{}()}); + } + + timer.stop("random sample"); + // sample = input; + std::vector idx(num); + + timer.start(); + int k = 150; + std::vector cents(k); + cluster(sample.data(), sample_num, k, idx.data(), cents.data()); + // cluster(input.get(), num, 16, idx.data(), cents.data()); + timer.stop("kmeans1d"); + if (k == 150) { + // std::cout << "No clusters are found." << std::endl; + level_num = 0; + return; + } + + // std::cout << "centers : "; + // for (size_t i = 0; i < k; i++) { + // std::cout << cents[i] << " "; + // } + // std::cout << std::endl; + + // std::cout << "center diff : "; + // for (size_t i = 1; i < k; i++) { + // std::cout << cents[i] - cents[i - 1] << " "; + // } + // std::cout << std::endl; + + // std::vector boundary(k); + // boundary[0] = std::numeric_limits::min(); + // for (size_t i = 1; i < k; i++) { + // boundary[i] = (cents[i - 1] + cents[i]) / 2; + // } + + level_offset = (cents[k - 1] - cents[0]) / (k - 1); + level_start = cents[0]; + for (size_t i = 1; i < k; i++) { + level_start += cents[i] - i * level_offset; + } + level_start /= k; + level_num = f(max, level_start, level_offset) + 1; +} +} // namespace SZ3 + +#endif diff --git a/lib/SZ3/include/SZ3/utils/MemoryUtil.hpp b/lib/SZ3/include/SZ3/utils/MemoryUtil.hpp index 8bfa9129..eaa9015e 100644 --- a/lib/SZ3/include/SZ3/utils/MemoryUtil.hpp +++ b/lib/SZ3/include/SZ3/utils/MemoryUtil.hpp @@ -2,57 +2,61 @@ // Created by Kai Zhao on 4/21/20. // -#ifndef SZ_MEMORYOPS_HPP -#define SZ_MEMORYOPS_HPP +#ifndef SZ3_MEMORYOPS_HPP +#define SZ3_MEMORYOPS_HPP + #include #include +#include + #include "SZ3/def.hpp" -namespace SZ { - // read array - template - void read(T1 *array, size_t num_elements, uchar const *&compressed_data_pos, size_t &remaining_length) { - assert(num_elements * sizeof(T1) <= remaining_length); - memcpy(array, compressed_data_pos, num_elements * sizeof(T1)); - remaining_length -= num_elements * sizeof(T1); - compressed_data_pos += num_elements * sizeof(T1); - } - - // read array - template - void read(T1 *array, size_t num_elements, uchar const *&compressed_data_pos) { - memcpy(array, compressed_data_pos, num_elements * sizeof(T1)); - compressed_data_pos += num_elements * sizeof(T1); - } - - - // read variable - template - void read(T1 &var, uchar const *&compressed_data_pos) { - memcpy(&var, compressed_data_pos, sizeof(T1)); - compressed_data_pos += sizeof(T1); - } - - // read variable - template - void read(T1 &var, uchar const *&compressed_data_pos, size_t &remaining_length) { - assert(sizeof(T1) <= remaining_length); - memcpy(&var, compressed_data_pos, sizeof(T1)); - remaining_length -= sizeof(T1); - compressed_data_pos += sizeof(T1); - } - - // write array - template - void write(T1 const *array, size_t num_elements, uchar *&compressed_data_pos) { - memcpy(compressed_data_pos, array, num_elements * sizeof(T1)); - compressed_data_pos += num_elements * sizeof(T1); - } - - // write variable - template - void write(T1 const var, uchar *&compressed_data_pos) { - memcpy(compressed_data_pos, &var, sizeof(T1)); - compressed_data_pos += sizeof(T1); - } + +namespace SZ3 { +// read array +template +void read(T1 *array, size_t num_elements, uchar const *&compressed_data_pos, size_t &remaining_length) { + assert(num_elements * sizeof(T1) <= remaining_length); + memcpy(array, compressed_data_pos, num_elements * sizeof(T1)); + remaining_length -= num_elements * sizeof(T1); + compressed_data_pos += num_elements * sizeof(T1); +} + +// read array +template +void read(T1 *array, size_t num_elements, uchar const *&compressed_data_pos) { + memcpy(array, compressed_data_pos, num_elements * sizeof(T1)); + compressed_data_pos += num_elements * sizeof(T1); +} + +// read variable +template +void read(T1 &var, uchar const *&compressed_data_pos) { + memcpy(&var, compressed_data_pos, sizeof(T1)); + compressed_data_pos += sizeof(T1); } -#endif //SZ_MEMORYOPS_HPP + +// read variable +template +void read(T1 &var, uchar const *&compressed_data_pos, size_t &remaining_length) { + assert(sizeof(T1) <= remaining_length); + memcpy(&var, compressed_data_pos, sizeof(T1)); + remaining_length -= sizeof(T1); + compressed_data_pos += sizeof(T1); +} + +// write array +template +void write(T1 const *array, size_t num_elements, uchar *&compressed_data_pos) { + memcpy(compressed_data_pos, array, num_elements * sizeof(T1)); + compressed_data_pos += num_elements * sizeof(T1); +} + +// write variable +template +void write(T1 const var, uchar *&compressed_data_pos) { + memcpy(compressed_data_pos, &var, sizeof(T1)); + compressed_data_pos += sizeof(T1); +} + +} // namespace SZ3 +#endif // SZ_MEMORYOPS_HPP diff --git a/lib/SZ3/include/SZ3/utils/MetaDef.hpp b/lib/SZ3/include/SZ3/utils/MetaDef.hpp deleted file mode 100644 index c77371bd..00000000 --- a/lib/SZ3/include/SZ3/utils/MetaDef.hpp +++ /dev/null @@ -1,117 +0,0 @@ -#ifndef _meta_def_hpp -#define _meta_def_hpp - -#include -#include -#include -#include -#include -#include -#include - -namespace SZMETA { - -// using namespace std; - -#define MAX(a, b) ((a - struct meanInfo { - bool use_mean; - T mean; - - meanInfo(bool use = false, T mean_ = 0) { - use_mean = use; - mean = mean_; - } - }; - -} -#endif - diff --git a/lib/SZ3/include/SZ3/utils/QuantOptimizatioin.hpp b/lib/SZ3/include/SZ3/utils/QuantOptimizatioin.hpp index 72a5e25c..3a4d2464 100644 --- a/lib/SZ3/include/SZ3/utils/QuantOptimizatioin.hpp +++ b/lib/SZ3/include/SZ3/utils/QuantOptimizatioin.hpp @@ -1,10 +1,9 @@ -#ifndef SZ_optimize_quant_intervals_hpp -#define SZ_optimize_quant_intervals_hpp +#ifndef SZ3_optimize_quant_intervals_hpp +#define SZ3_optimize_quant_intervals_hpp #include -#include "SZ3/predictor/MetaLorenzoPredictor.hpp" -namespace SZ { +namespace SZ3 { #define QuantIntvMeanCapacity 8192 #define QuantIntvSampleDistance 100 @@ -12,138 +11,144 @@ namespace SZ { #define QuantIntvAccThreshold 0.999 // copied from conf.c - unsigned int - round_up_power_of_2(unsigned int base) { - base -= 1; - base = base | (base >> 1); - base = base | (base >> 2); - base = base | (base >> 4); - base = base | (base >> 8); - base = base | (base >> 16); - return base + 1; - } +unsigned int static round_up_power_of_2(unsigned int base) { + base -= 1; + base = base | (base >> 1); + base = base | (base >> 2); + base = base | (base >> 4); + base = base | (base >> 8); + base = base | (base >> 16); + return base + 1; +} - unsigned int - static estimate_quantization_intervals(const std::vector &intervals, size_t sample_count) { - size_t target = sample_count * QuantIntvAccThreshold; - size_t sum = 0; - size_t i = 0; - for (i = 0; i < intervals.size(); i++) { - sum += intervals[i]; - if (sum > target) - break; - } - if (i == intervals.size()) i = intervals.size() - 1; - unsigned int accIntervals = 2 * (i + 1); - unsigned int num_intervals = 2 * round_up_power_of_2(accIntervals); - return (num_intervals > 32) ? num_intervals : 32; +unsigned int static inline estimate_quantization_intervals(const std::vector &intervals, size_t sample_count) { + size_t target = sample_count * QuantIntvAccThreshold; + size_t sum = 0; + size_t i = 0; + for (i = 0; i < intervals.size(); i++) { + sum += intervals[i]; + if (sum > target) break; } + if (i == intervals.size()) i = intervals.size() - 1; + unsigned int accIntervals = 2 * (i + 1); + unsigned int num_intervals = 2 * round_up_power_of_2(accIntervals); + return (num_intervals > 32) ? num_intervals : 32; +} - template - float estimate_mean_freq_and_position(const std::vector &freq_intervals, double precision, size_t sample_count, - T &mean_guess) { - size_t max_sum = 0; - size_t max_index = 0; - size_t tmp_sum = 0; - for (size_t i = 1; i < freq_intervals.size() - 2; i++) { - tmp_sum = freq_intervals[i] + freq_intervals[i + 1]; - if (tmp_sum > max_sum) { - max_sum = tmp_sum; - max_index = i; - } +template +float estimate_mean_freq_and_position(const std::vector &freq_intervals, double precision, size_t sample_count, + T &mean_guess) { + size_t max_sum = 0; + size_t max_index = 0; + size_t tmp_sum = 0; + for (size_t i = 1; i < freq_intervals.size() - 2; i++) { + tmp_sum = freq_intervals[i] + freq_intervals[i + 1]; + if (tmp_sum > max_sum) { + max_sum = tmp_sum; + max_index = i; } - mean_guess += precision * (ptrdiff_t) (max_index + 1 - (freq_intervals.size() >> 1)); - return max_sum * 1.0 / sample_count; } + mean_guess += precision * static_cast(max_index + 1 - (freq_intervals.size() >> 1)); + return max_sum * 1.0 / sample_count; +} - template - float - sample_rough_mean_3d(const T *data, size_t r1, size_t r2, size_t r3, size_t sample_distance) { - double mean = 0; - size_t len = r1 * r2 * r3; - const T *data_pos = data; - size_t offset_count = 0; - size_t offset_count_2 = 0; - size_t mean_count = 0; - while (data_pos - data < len) { - mean += *data_pos; - mean_count++; - data_pos += sample_distance; - offset_count += sample_distance; - offset_count_2 += sample_distance; - if (offset_count >= r3) { - offset_count = 0; - data_pos -= 1; - } - if (offset_count_2 >= r2 * r3) { - offset_count_2 = 0; - data_pos -= 1; - } +template +float sample_rough_mean_3d(const T *data, size_t r1, size_t r2, size_t r3, size_t sample_distance) { + double mean = 0; + size_t len = r1 * r2 * r3; + const T *data_pos = data; + size_t offset_count = 0; + size_t offset_count_2 = 0; + size_t mean_count = 0; + while (data_pos - data < len) { + mean += *data_pos; + mean_count++; + data_pos += sample_distance; + offset_count += sample_distance; + offset_count_2 += sample_distance; + if (offset_count >= r3) { + offset_count = 0; + data_pos -= 1; + } + if (offset_count_2 >= r2 * r3) { + offset_count_2 = 0; + data_pos -= 1; } - if (mean_count > 0) mean /= mean_count; - return mean; } + if (mean_count > 0) mean /= mean_count; + return mean; +} - template - int optimize_quant_invl_3d(const T *data, size_t r1, size_t r2, size_t r3, double precision, float &pred_freq, float &mean_freq, T &mean_guess) { - float mean_rough = sample_rough_mean_3d(data, r1, r2, r3, sqrt(r1 * r2 * r3)); - std::vector intervals = std::vector(QuantIntvSampleCapacity, 0); - std::vector freq_intervals = std::vector(QuantIntvMeanCapacity, 0); - size_t freq_count = 0; - size_t sample_count = 0; - size_t sample_distance = QuantIntvSampleDistance; - size_t offset_count = sample_distance - 2; // count r3 offset - size_t offset_count_2 = 0; - size_t r23 = r2 * r3; - size_t len = r1 * r23; - const T *data_pos = data + r23 + r3 + offset_count; - size_t n1_count = 1, n2_count = 1; // count i,j sum - T pred_value = 0; - double mean_diff = 0; - ptrdiff_t freq_index = 0; - size_t pred_index = 0; - float pred_err = 0; - int radius = (QuantIntvMeanCapacity >> 1); - while (data_pos - data < len) { - pred_value = SZMETA::lorenzo_predict_3d(data_pos, r23, r3); - pred_err = fabs(pred_value - *data_pos); - if (pred_err < precision) freq_count++; - pred_index = (pred_err / precision + 1) / 2; - if (pred_index >= intervals.size()) { - pred_index = intervals.size() - 1; - } - intervals[pred_index]++; +template +ALWAYS_INLINE T lorenzo_predict_3d(const T *data_pos, size_t dim0_offset, size_t dim1_offset) { + return data_pos[-1] + data_pos[-dim1_offset] + data_pos[-dim0_offset] - data_pos[-dim1_offset - 1] - + data_pos[-dim0_offset - 1] - data_pos[-dim0_offset - dim1_offset] + data_pos[-dim0_offset - dim1_offset - 1]; +} - mean_diff = *data_pos - mean_rough; - if (mean_diff > 0) freq_index = (ptrdiff_t) (mean_diff / precision) + radius; - else freq_index = (ptrdiff_t) (mean_diff / precision) - 1 + radius; - if (freq_index <= 0) { - freq_intervals[0]++; - } else if (freq_index >= freq_intervals.size()) { - freq_intervals[freq_intervals.size() - 1]++; - } else { - freq_intervals[freq_index]++; - } - offset_count += sample_distance; - if (offset_count >= r3) { - n2_count++; - if (n2_count == r2) { - n1_count++; - n2_count = 1; - data_pos += r3; - } - offset_count_2 = (n1_count + n2_count) % sample_distance; - data_pos += (r3 + sample_distance - offset_count) + (sample_distance - offset_count_2); - offset_count = (sample_distance - offset_count_2); - if (offset_count == 0) offset_count++; - } else data_pos += sample_distance; - sample_count++; +template +int optimize_quant_invl_3d(const T *data, size_t r1, size_t r2, size_t r3, double precision, float &pred_freq, + float &mean_freq, T &mean_guess) { + float mean_rough = sample_rough_mean_3d(data, r1, r2, r3, sqrt(r1 * r2 * r3)); + std::vector intervals = std::vector(QuantIntvSampleCapacity, 0); + std::vector freq_intervals = std::vector(QuantIntvMeanCapacity, 0); + size_t freq_count = 0; + size_t sample_count = 0; + size_t sample_distance = QuantIntvSampleDistance; + size_t offset_count = sample_distance - 2; // count r3 offset + size_t offset_count_2 = 0; + size_t r23 = r2 * r3; + size_t len = r1 * r23; + const T *data_pos = data + r23 + r3 + offset_count; + size_t n1_count = 1, n2_count = 1; // count i,j sum + T pred_value = 0; + double mean_diff = 0; + ptrdiff_t freq_index = 0; + size_t pred_index = 0; + float pred_err = 0; + int radius = (QuantIntvMeanCapacity >> 1); + while (data_pos - data < len) { + pred_value = lorenzo_predict_3d(data_pos, r23, r3); + pred_err = fabs(pred_value - *data_pos); + if (pred_err < precision) freq_count++; + pred_index = (pred_err / precision + 1) / 2; + if (pred_index >= intervals.size()) { + pred_index = intervals.size() - 1; } - pred_freq = freq_count * 1.0 / sample_count; - mean_guess = mean_rough; - mean_freq = estimate_mean_freq_and_position(freq_intervals, precision, sample_count, mean_guess); - return estimate_quantization_intervals(intervals, sample_count); + intervals[pred_index]++; + + mean_diff = *data_pos - mean_rough; + if (mean_diff > 0) + freq_index = static_cast(mean_diff / precision) + radius; + else + freq_index = static_cast(mean_diff / precision) - 1 + radius; + if (freq_index <= 0) { + freq_intervals[0]++; + } else if (freq_index >= freq_intervals.size()) { + freq_intervals[freq_intervals.size() - 1]++; + } else { + freq_intervals[freq_index]++; + } + offset_count += sample_distance; + if (offset_count >= r3) { + n2_count++; + if (n2_count == r2) { + n1_count++; + n2_count = 1; + data_pos += r3; + } + offset_count_2 = (n1_count + n2_count) % sample_distance; + data_pos += (r3 + sample_distance - offset_count) + (sample_distance - offset_count_2); + offset_count = (sample_distance - offset_count_2); + if (offset_count == 0) offset_count++; + } else + data_pos += sample_distance; + sample_count++; } + pred_freq = freq_count * 1.0 / sample_count; + mean_guess = mean_rough; + mean_freq = estimate_mean_freq_and_position(freq_intervals, precision, sample_count, mean_guess); + return estimate_quantization_intervals(intervals, sample_count); } +} // namespace SZ3 -#endif \ No newline at end of file +#endif diff --git a/lib/SZ3/include/SZ3/utils/Sample.hpp b/lib/SZ3/include/SZ3/utils/Sample.hpp new file mode 100644 index 00000000..11edcd31 --- /dev/null +++ b/lib/SZ3/include/SZ3/utils/Sample.hpp @@ -0,0 +1,260 @@ +#ifndef SZ3_SAMPLE_HPP +#define SZ3_SAMPLE_HPP + +namespace SZ3 { +template +inline void profiling_block(T *data, std::vector &dims, std::vector> &starts, + size_t block_size, double abseb, size_t stride = 4) { + assert(dims.size() == N); + if (stride == 0) stride = block_size; + if constexpr (N == 4) { + size_t dimx = dims[0], dimy = dims[1], dimz = dims[2], dimw = dims[3], dimyzw = dimy * dimz * dimw, + dimzw = dimz * dimw; + for (size_t i = 0; i < dimx - block_size; i += block_size) { + for (size_t j = 0; j < dimy - block_size; j += block_size) { + for (size_t k = 0; k < dimz - block_size; k += block_size) { + for (size_t l = 0; l < dimw - block_size; l += block_size) { + size_t start_idx = i * dimyzw + j * dimzw + k * dimw + l; + T min = data[start_idx]; + T max = data[start_idx]; + for (int ii = 0; ii <= block_size; ii += stride) { + for (int jj = 0; jj <= block_size; jj += stride) { + for (int kk = 0; kk <= block_size; kk += stride) { + for (int ll = 0; ll <= block_size; ll += stride) { + size_t cur_idx = start_idx + ii * dimyzw + jj * dimzw + kk * dimw + ll; + T cur_value = data[cur_idx]; + if (cur_value < min) + min = cur_value; + else if (cur_value > max) + max = cur_value; + } + } + } + } + if (max - min > abseb) { + size_t a[4] = {i, j, k, l}; + starts.push_back(std::vector(a, a + 4)); + } + } + } + } + } + } else if constexpr (N == 3) { + size_t dimx = dims[0], dimy = dims[1], dimz = dims[2], dimyz = dimy * dimz; + for (size_t i = 0; i < dimx - block_size; i += block_size) { + for (size_t j = 0; j < dimy - block_size; j += block_size) { + for (size_t k = 0; k < dimz - block_size; k += block_size) { + size_t start_idx = i * dimyz + j * dimz + k; + T min = data[start_idx]; + T max = data[start_idx]; + for (int ii = 0; ii <= block_size; ii += stride) { + for (int jj = 0; jj <= block_size; jj += stride) { + for (int kk = 0; kk <= block_size; kk += stride) { + size_t cur_idx = start_idx + ii * dimyz + jj * dimz + kk; + T cur_value = data[cur_idx]; + if (cur_value < min) + min = cur_value; + else if (cur_value > max) + max = cur_value; + } + } + } + if (max - min > abseb) { + size_t a[3] = {i, j, k}; + starts.push_back(std::vector(a, a + 3)); + } + } + } + } + } else if constexpr (N == 2) { + size_t dimx = dims[0], dimy = dims[1]; + for (size_t i = 0; i < dimx - block_size; i += block_size) { + for (size_t j = 0; j < dimy - block_size; j += block_size) { + size_t start_idx = i * dimy + j; + T min = data[start_idx]; + T max = data[start_idx]; + for (int ii = 0; ii <= block_size; ii += stride) { + for (int jj = 0; jj <= block_size; jj += stride) { + size_t cur_idx = start_idx + ii * dimy + jj; + T cur_value = data[cur_idx]; + if (cur_value < min) + min = cur_value; + else if (cur_value > max) + max = cur_value; + } + } + if (max - min > abseb) { + size_t a[2] = {i, j}; + starts.push_back(std::vector(a, a + 2)); + } + } + } + } else { + size_t dimx = dims[0]; + for (size_t i = 0; i < dimx - block_size; i += block_size) { + size_t start_idx = i; + T min = data[start_idx]; + T max = data[start_idx]; + for (int ii = 0; ii <= block_size; ii += stride) { + size_t cur_idx = start_idx + ii; + T cur_value = data[cur_idx]; + if (cur_value < min) + min = cur_value; + else if (cur_value > max) + max = cur_value; + } + if (max - min > abseb) { + size_t a[1] = {i}; + starts.push_back(std::vector(a, a + 1)); + } + } + } +} + +template +inline void sample_blocks(T *data, std::vector &sampling_data, std::vector &dims, + std::vector &starts, size_t block_size) { + assert(dims.size() == N); + assert(starts.size() == N); + if constexpr (N == 4) { + size_t sample_num = block_size * block_size * block_size * block_size; + sampling_data.resize(sample_num, 0); + size_t startx = starts[0], starty = starts[1], startz = starts[2], startw = starts[3], dimy = dims[1], + dimz = dims[2], dimw = dims[3]; + size_t cubic_block_size = block_size * block_size * block_size, square_block_size = block_size * block_size, + dimyzw = dimy * dimz * dimw, dimzw = dimz * dimw; + for (size_t i = 0; i < block_size; i++) { + for (size_t j = 0; j < block_size; j++) { + for (size_t k = 0; k < block_size; k++) { + for (size_t l = 0; l < block_size; l++) { + size_t sample_idx = i * cubic_block_size + j * square_block_size + k * block_size + l; + size_t idx = (i + startx) * dimyzw + (j + starty) * dimzw + (k + startz) * dimw + (l + startw); + sampling_data[sample_idx] = data[idx]; + } + } + } + } + } else if constexpr (N == 3) { + size_t sample_num = block_size * block_size * block_size; + sampling_data.resize(sample_num, 0); + size_t startx = starts[0], starty = starts[1], startz = starts[2], dimy = dims[1], dimz = dims[2]; + size_t square_block_size = block_size * block_size, dimyz = dimy * dimz; + for (size_t i = 0; i < block_size; i++) { + for (size_t j = 0; j < block_size; j++) { + for (size_t k = 0; k < block_size; k++) { + size_t sample_idx = i * square_block_size + j * block_size + k; + size_t idx = (i + startx) * dimyz + (j + starty) * dimz + k + startz; + sampling_data[sample_idx] = data[idx]; + } + } + } + } else if constexpr (N == 2) { + size_t sample_num = block_size * block_size; + sampling_data.resize(sample_num, 0); + size_t startx = starts[0], starty = starts[1], dimy = dims[1]; + for (size_t i = 0; i < block_size; i++) { + for (size_t j = 0; j < block_size; j++) { + size_t sample_idx = i * block_size + j; + size_t idx = (i + startx) * dimy + (j + starty); + sampling_data[sample_idx] = data[idx]; + } + } + } else if constexpr (N == 1) { + size_t sample_num = block_size; + sampling_data.resize(sample_num, 0); + size_t startx = starts[0]; + for (size_t i = 0; i < block_size; i++) { + size_t sample_idx = i; + size_t idx = (i + startx); + sampling_data[sample_idx] = data[idx]; + } + } +} + +template +void sampleBlocks(T *data, std::vector &dims, size_t sampleBlockSize, + std::vector> &sampled_blocks, double sample_rate, int profiling, + std::vector> &starts, int var_first = 0) { + for (int i = 0; i < sampled_blocks.size(); i++) { + std::vector().swap(sampled_blocks[i]); + } + std::vector>().swap(sampled_blocks); + for (int i = 0; i < sampled_blocks.size(); i++) { + std::vector().swap(sampled_blocks[i]); + } + std::vector>().swap(sampled_blocks); + size_t totalblock_num = 1; + for (int i = 0; i < N; i++) { + totalblock_num *= static_cast((dims[i] - 1) / sampleBlockSize); + } + size_t idx = 0; + if (profiling) { + size_t num_filtered_blocks = starts.size(); + size_t sample_stride = static_cast(num_filtered_blocks / (totalblock_num * sample_rate)); + if (sample_stride <= 0) sample_stride = 1; + for (size_t i = 0; i < num_filtered_blocks; i += sample_stride) { + std::vector s_block; + sample_blocks(data, s_block, dims, starts[i], sampleBlockSize + 1); + sampled_blocks.push_back(s_block); + } + } else { + size_t sample_stride = static_cast(1.0 / sample_rate); + if (sample_stride <= 0) sample_stride = 1; + if constexpr (N == 1) { + for (size_t x_start = 0; x_start < dims[0] - sampleBlockSize; x_start += sampleBlockSize) { + if (idx % sample_stride == 0) { + std::vector starts{x_start}; + std::vector s_block; + sample_blocks(data, s_block, dims, starts, sampleBlockSize + 1); + sampled_blocks.push_back(s_block); + } + idx += 1; + } + } else if constexpr (N == 2) { + for (size_t x_start = 0; x_start < dims[0] - sampleBlockSize; x_start += sampleBlockSize) { + for (size_t y_start = 0; y_start < dims[1] - sampleBlockSize; y_start += sampleBlockSize) { + if (idx % sample_stride == 0) { + std::vector starts{x_start, y_start}; + std::vector s_block; + sample_blocks(data, s_block, dims, starts, sampleBlockSize + 1); + sampled_blocks.push_back(s_block); + } + idx += 1; + } + } + } else if constexpr (N == 3) { + for (size_t x_start = 0; x_start < dims[0] - sampleBlockSize; x_start += sampleBlockSize) { + for (size_t y_start = 0; y_start < dims[1] - sampleBlockSize; y_start += sampleBlockSize) { + for (size_t z_start = 0; z_start < dims[2] - sampleBlockSize; z_start += sampleBlockSize) { + if (idx % sample_stride == 0) { + std::vector starts{x_start, y_start, z_start}; + std::vector s_block; + sample_blocks(data, s_block, dims, starts, sampleBlockSize + 1); + sampled_blocks.push_back(s_block); + } + idx += 1; + } + } + } + } else if constexpr (N == 4) { + for (size_t x_start = 0; x_start < dims[0] - sampleBlockSize; x_start += sampleBlockSize) { + for (size_t y_start = 0; y_start < dims[1] - sampleBlockSize; y_start += sampleBlockSize) { + for (size_t z_start = 0; z_start < dims[2] - sampleBlockSize; z_start += sampleBlockSize) { + for (size_t w_start = 0; w_start < dims[3] - sampleBlockSize; w_start += sampleBlockSize) { + if (idx % sample_stride == 0) { + std::vector starts{x_start, y_start, z_start, w_start}; + std::vector s_block; + sample_blocks(data, s_block, dims, starts, sampleBlockSize + 1); + sampled_blocks.push_back(s_block); + } + idx += 1; + } + } + } + } + } + } +} +} // namespace SZ3 + +#endif diff --git a/lib/SZ3/include/SZ3/utils/Statistic.hpp b/lib/SZ3/include/SZ3/utils/Statistic.hpp index c9a586d4..b8cafa4d 100644 --- a/lib/SZ3/include/SZ3/utils/Statistic.hpp +++ b/lib/SZ3/include/SZ3/utils/Statistic.hpp @@ -2,157 +2,154 @@ // Created by Kai Zhao on 4/20/20. // -#ifndef SZ_STATISTIC_HPP -#define SZ_STATISTIC_HPP +#ifndef SZ3_STATISTIC_HPP +#define SZ3_STATISTIC_HPP #include "Config.hpp" -namespace SZ { - template - T data_range(const T *data, size_t num) { - T max = data[0]; - T min = data[0]; - for (size_t i = 1; i < num; i++) { - if (max < data[i]) max = data[i]; - if (min > data[i]) min = data[i]; +namespace SZ3 { +template +T data_range(const T *data, size_t num) { + T max = data[0]; + T min = data[0]; + for (size_t i = 1; i < num; i++) { + if (max < data[i]) max = data[i]; + if (min > data[i]) min = data[i]; + } + return max - min; +} + +inline int factorial(int n) { return (n == 0) || (n == 1) ? 1 : n * factorial(n - 1); } + +inline double computeABSErrBoundFromPSNR(double psnr, double threshold, double value_range) { + double v1 = psnr + 10 * log10(1 - 2.0 / 3.0 * threshold); + double v2 = v1 / (-20); + double v3 = pow(10, v2); + return value_range * v3; +} + +template +void calAbsErrorBound(Config &conf, const T *data, T range = 0) { + if (conf.errorBoundMode != EB_ABS) { + if (conf.errorBoundMode == EB_REL) { + conf.errorBoundMode = EB_ABS; + conf.absErrorBound = conf.relErrorBound * ((range > 0) ? range : data_range(data, conf.num)); + } else if (conf.errorBoundMode == EB_PSNR) { + conf.errorBoundMode = EB_ABS; + conf.absErrorBound = computeABSErrBoundFromPSNR(conf.psnrErrorBound, 0.99, + ((range > 0) ? range : data_range(data, conf.num))); + } else if (conf.errorBoundMode == EB_L2NORM) { + conf.errorBoundMode = EB_ABS; + conf.absErrorBound = sqrt(3.0 / conf.num) * conf.l2normErrorBound; + } else if (conf.errorBoundMode == EB_ABS_AND_REL) { + conf.errorBoundMode = EB_ABS; + conf.absErrorBound = + std::min(conf.absErrorBound, conf.relErrorBound * ((range > 0) ? range : data_range(data, conf.num))); + } else if (conf.errorBoundMode == EB_ABS_OR_REL) { + conf.errorBoundMode = EB_ABS; + conf.absErrorBound = + std::max(conf.absErrorBound, conf.relErrorBound * ((range > 0) ? range : data_range(data, conf.num))); + } else { + throw std::invalid_argument("Error bound mode not supported"); } - return max - min; } +} - int factorial(int n) { - return (n == 0) || (n == 1) ? 1 : n * factorial(n - 1); +template +double autocorrelation1DLag1(const Type *data, size_t numOfElem, Type avg) { + double cov = 0; + for (size_t i = 0; i < numOfElem; i++) { + cov += (data[i] - avg) * (data[i] - avg); } + cov = cov / numOfElem; - double computeABSErrBoundFromPSNR(double psnr, double threshold, double value_range) { - double v1 = psnr + 10 * log10(1 - 2.0 / 3.0 * threshold); - double v2 = v1 / (-20); - double v3 = pow(10, v2); - return value_range * v3; - } + if (cov == 0) { + return 0; + } else { + int delta = 1; + double sum = 0; - template - void calAbsErrorBound(SZ::Config &conf, const T *data, T range = 0) { - if (conf.errorBoundMode != EB_ABS) { - if (conf.errorBoundMode == EB_REL) { - conf.errorBoundMode = EB_ABS; - conf.absErrorBound = conf.relErrorBound * ((range > 0) ? range : SZ::data_range(data, conf.num)); - } else if (conf.errorBoundMode == EB_PSNR) { - conf.errorBoundMode = EB_ABS; - conf.absErrorBound = computeABSErrBoundFromPSNR(conf.psnrErrorBound, 0.99, ((range > 0) ? range : SZ::data_range(data, conf.num))); - } else if (conf.errorBoundMode == EB_L2NORM) { - conf.errorBoundMode = EB_ABS; - conf.absErrorBound = sqrt(3.0 / conf.num) * conf.l2normErrorBound; - } else if (conf.errorBoundMode == EB_ABS_AND_REL) { - conf.errorBoundMode = EB_ABS; - conf.absErrorBound = std::min(conf.absErrorBound, conf.relErrorBound * ((range > 0) ? range : SZ::data_range(data, conf.num))); - } else if (conf.errorBoundMode == EB_ABS_OR_REL) { - conf.errorBoundMode = EB_ABS; - conf.absErrorBound = std::max(conf.absErrorBound, conf.relErrorBound * ((range > 0) ? range : SZ::data_range(data, conf.num))); - } else { - printf("Error, error bound mode not supported\n"); - exit(0); - } + for (size_t i = 0; i < numOfElem - delta; i++) { + sum += (data[i] - avg) * (data[i + delta] - avg); } + return sum / (numOfElem - delta) / cov; } - - template - double autocorrelation1DLag1(const Type *data, size_t numOfElem, Type avg) { - double cov = 0; - for (size_t i = 0; i < numOfElem; i++) { - cov += (data[i] - avg) * (data[i] - avg); - } - cov = cov / numOfElem; - - if (cov == 0) { - return 0; - } else { - int delta = 1; - double sum = 0; - - for (size_t i = 0; i < numOfElem - delta; i++) { - sum += (data[i] - avg) * (data[i + delta] - avg); - } - return sum / (numOfElem - delta) / cov; - } +} + +template +void verify(Type *ori_data, Type *data, size_t num_elements, double &psnr, double &nrmse, double &max_diff) { + size_t i = 0; + double Max = ori_data[0]; + double Min = ori_data[0]; + max_diff = fabs(data[0] - ori_data[0]); + double diff_sum = 0; + double maxpw_relerr = 0; + double sum1 = 0, sum2 = 0, l2sum = 0; + for (i = 0; i < num_elements; i++) { + sum1 += ori_data[i]; + sum2 += data[i]; + l2sum += data[i] * data[i]; } - - template - void verify(Type *ori_data, Type *data, size_t num_elements, double &psnr, double &nrmse, double &max_diff) { - size_t i = 0; - double Max = ori_data[0]; - double Min = ori_data[0]; - max_diff = fabs(data[0] - ori_data[0]); - double diff_sum = 0; - double maxpw_relerr = 0; - double sum1 = 0, sum2 = 0, l2sum = 0; - for (i = 0; i < num_elements; i++) { - sum1 += ori_data[i]; - sum2 += data[i]; - l2sum += data[i] * data[i]; + double mean1 = sum1 / num_elements; + double mean2 = sum2 / num_elements; + + double sum3 = 0, sum4 = 0; + double sum = 0, prodSum = 0, relerr = 0; + + double *diff = static_cast(malloc(num_elements * sizeof(double))); + + for (i = 0; i < num_elements; i++) { + diff[i] = data[i] - ori_data[i]; + diff_sum += data[i] - ori_data[i]; + if (Max < ori_data[i]) Max = ori_data[i]; + if (Min > ori_data[i]) Min = ori_data[i]; + double err = fabs(data[i] - ori_data[i]); + if (ori_data[i] != 0) { + relerr = err / fabs(ori_data[i]); + if (maxpw_relerr < relerr) maxpw_relerr = relerr; } - double mean1 = sum1 / num_elements; - double mean2 = sum2 / num_elements; - - double sum3 = 0, sum4 = 0; - double sum = 0, prodSum = 0, relerr = 0; - - double *diff = (double *) malloc(num_elements * sizeof(double)); - - for (i = 0; i < num_elements; i++) { - diff[i] = data[i] - ori_data[i]; - diff_sum += data[i] - ori_data[i]; - if (Max < ori_data[i]) Max = ori_data[i]; - if (Min > ori_data[i]) Min = ori_data[i]; - double err = fabs(data[i] - ori_data[i]); - if (ori_data[i] != 0) { - relerr = err / fabs(ori_data[i]); - if (maxpw_relerr < relerr) - maxpw_relerr = relerr; - } - - if (max_diff < err) - max_diff = err; - prodSum += (ori_data[i] - mean1) * (data[i] - mean2); - sum3 += (ori_data[i] - mean1) * (ori_data[i] - mean1); - sum4 += (data[i] - mean2) * (data[i] - mean2); - sum += err * err; - } - double std1 = sqrt(sum3 / num_elements); - double std2 = sqrt(sum4 / num_elements); - double ee = prodSum / num_elements; - double acEff = ee / std1 / std2; - - double mse = sum / num_elements; - double range = Max - Min; - psnr = 20 * log10(range) - 10 * log10(mse); - nrmse = sqrt(mse) / range; - - double normErr = sqrt(sum); - double normErr_norm = normErr / sqrt(l2sum); - - printf("Min=%.20G, Max=%.20G, range=%.20G\n", Min, Max, range); - printf("Max absolute error = %.2G\n", max_diff); - printf("Max relative error = %.2G\n", max_diff / (Max - Min)); - printf("Max pw relative error = %.2G\n", maxpw_relerr); - printf("PSNR = %f, NRMSE= %.10G\n", psnr, nrmse); - printf("normError = %f, normErr_norm = %f\n", normErr, normErr_norm); - printf("acEff=%f\n", acEff); -// printf("errAutoCorr=%.10f\n", autocorrelation1DLag1(diff, num_elements, diff_sum / num_elements)); - free(diff); - } - template - void verify(Type *ori_data, Type *data, size_t num_elements) { - double psnr, nrmse, max_diff; - verify(ori_data, data, num_elements, psnr, nrmse, max_diff); + if (max_diff < err) max_diff = err; + prodSum += (ori_data[i] - mean1) * (data[i] - mean2); + sum3 += (ori_data[i] - mean1) * (ori_data[i] - mean1); + sum4 += (data[i] - mean2) * (data[i] - mean2); + sum += err * err; } - - template - void verify(Type *ori_data, Type *data, size_t num_elements, double &psnr, double &nrmse) { - double max_diff; - verify(ori_data, data, num_elements, psnr, nrmse, max_diff); - } -}; - + double std1 = sqrt(sum3 / num_elements); + double std2 = sqrt(sum4 / num_elements); + double ee = prodSum / num_elements; + double acEff = ee / std1 / std2; + + double mse = sum / num_elements; + double range = Max - Min; + psnr = 20 * log10(range) - 10 * log10(mse); + nrmse = sqrt(mse) / range; + + double normErr = sqrt(sum); + double normErr_norm = normErr / sqrt(l2sum); + + printf("Min=%.20G, Max=%.20G, range=%.20G\n", Min, Max, range); + printf("Max absolute error = %.2G\n", max_diff); + printf("Max relative error = %.2G\n", max_diff / (Max - Min)); + printf("Max pw relative error = %.2G\n", maxpw_relerr); + printf("PSNR = %f, NRMSE= %.10G\n", psnr, nrmse); + printf("normError = %f, normErr_norm = %f\n", normErr, normErr_norm); + printf("acEff=%f\n", acEff); + // printf("errAutoCorr=%.10f\n", autocorrelation1DLag1(diff, num_elements, diff_sum / num_elements)); + free(diff); +} + +template +void verify(Type *ori_data, Type *data, size_t num_elements) { + double psnr, nrmse, max_diff; + verify(ori_data, data, num_elements, psnr, nrmse, max_diff); +} + +template +void verify(Type *ori_data, Type *data, size_t num_elements, double &psnr, double &nrmse) { + double max_diff; + verify(ori_data, data, num_elements, psnr, nrmse, max_diff); +} +} // namespace SZ3 #endif diff --git a/lib/SZ3/include/SZ3/utils/Timer.hpp b/lib/SZ3/include/SZ3/utils/Timer.hpp index d75b2d43..91b23675 100644 --- a/lib/SZ3/include/SZ3/utils/Timer.hpp +++ b/lib/SZ3/include/SZ3/utils/Timer.hpp @@ -2,45 +2,42 @@ // Created by Kai Zhao on 10/30/20. // -#ifndef SZ_TIMER_HPP -#define SZ_TIMER_HPP +#ifndef SZ3_TIMER_HPP +#define SZ3_TIMER_HPP -#include -#include #include +#include +#include -namespace SZ { - class Timer { - public: - Timer() = default; +namespace SZ3 { +class Timer { + public: + Timer() = default; - Timer(bool initstart) { - if (initstart) { - start(); - } + Timer(bool initstart) { + if (initstart) { + start(); } + } - void start() { - begin = std::chrono::steady_clock::now(); - } + void start() { begin = std::chrono::steady_clock::now(); } - double stop() { - end = std::chrono::steady_clock::now(); - return std::chrono::duration(end - begin).count(); - } + double stop() { + end = std::chrono::steady_clock::now(); + return std::chrono::duration(end - begin).count(); + } - double stop(const std::string &msg) { - double seconds = stop(); + double stop(const std::string &msg) { + double seconds = stop(); #if SZ3_DEBUG_TIMINGS - std::cout << msg << " time = " << seconds << "s" << std::endl; + std::cout << msg << " time = " << seconds << "s" << std::endl; #endif - return seconds; - } + return seconds; + } - private: - std::chrono::time_point begin, end; - }; + private: + std::chrono::time_point begin, end; }; +} // namespace SZ3 - -#endif //SZ_TIMER_HPP +#endif // SZ_TIMER_HPP diff --git a/lib/SZ3/include/SZ3/utils/inih/INIReader.h b/lib/SZ3/include/SZ3/utils/inih/INIReader.h deleted file mode 100644 index 32ffa13d..00000000 --- a/lib/SZ3/include/SZ3/utils/inih/INIReader.h +++ /dev/null @@ -1,462 +0,0 @@ -// Read an INI file into easy-to-access name/value pairs. - -// inih and INIReader are released under the New BSD license (see LICENSE.txt). -// Go to the project home page for more info: -// -// https://github.com/benhoyt/inih -/* inih -- simple .INI file parser - -inih is released under the New BSD license (see LICENSE.txt). Go to the project -home page for more info: - -https://github.com/benhoyt/inih - -*/ - -#ifndef __INI_H__ -#define __INI_H__ - -/* Make this header file easier to include in C++ code */ -#ifdef __cplusplus -extern "C" { -#endif - -#include - -/* Typedef for prototype of handler function. */ -typedef int (*ini_handler)(void* user, const char* section, - const char* name, const char* value); - -/* Typedef for prototype of fgets-style reader function. */ -typedef char* (*ini_reader)(char* str, int num, void* stream); - -/* Parse given INI-style file. May have [section]s, name=value pairs - (whitespace stripped), and comments starting with ';' (semicolon). Section - is "" if name=value pair parsed before any section heading. name:value - pairs are also supported as a concession to Python's configparser. - - For each name=value pair parsed, call handler function with given user - pointer as well as section, name, and value (data only valid for duration - of handler call). Handler should return nonzero on success, zero on error. - - Returns 0 on success, line number of first error on parse error (doesn't - stop on first error), -1 on file open error, or -2 on memory allocation - error (only when INI_USE_STACK is zero). -*/ -int ini_parse(const char* filename, ini_handler handler, void* user); - -/* Same as ini_parse(), but takes a FILE* instead of filename. This doesn't - close the file when it's finished -- the caller must do that. */ -int ini_parse_file(FILE* file, ini_handler handler, void* user); - -/* Same as ini_parse(), but takes an ini_reader function pointer instead of - filename. Used for implementing custom or string-based I/O. */ -int ini_parse_stream(ini_reader reader, void* stream, ini_handler handler, - void* user); - -/* Nonzero to allow multi-line value parsing, in the style of Python's - configparser. If allowed, ini_parse() will call the handler with the same - name for each subsequent line parsed. */ -#ifndef INI_ALLOW_MULTILINE -#define INI_ALLOW_MULTILINE 1 -#endif - -/* Nonzero to allow a UTF-8 BOM sequence (0xEF 0xBB 0xBF) at the start of - the file. See http://code.google.com/p/inih/issues/detail?id=21 */ -#ifndef INI_ALLOW_BOM -#define INI_ALLOW_BOM 1 -#endif - -/* Nonzero to allow inline comments (with valid inline comment characters - specified by INI_INLINE_COMMENT_PREFIXES). Set to 0 to turn off and match - Python 3.2+ configparser behaviour. */ -#ifndef INI_ALLOW_INLINE_COMMENTS -#define INI_ALLOW_INLINE_COMMENTS 1 -#endif -#ifndef INI_INLINE_COMMENT_PREFIXES -#define INI_INLINE_COMMENT_PREFIXES ";" -#endif - -/* Nonzero to use stack, zero to use heap (malloc/free). */ -#ifndef INI_USE_STACK -#define INI_USE_STACK 1 -#endif - -/* Stop parsing on first error (default is to keep parsing). */ -#ifndef INI_STOP_ON_FIRST_ERROR -#define INI_STOP_ON_FIRST_ERROR 0 -#endif - -/* Maximum line length for any line in INI file. */ -#ifndef INI_MAX_LINE -#define INI_MAX_LINE 200 -#endif - -#ifdef __cplusplus -} -#endif - -/* inih -- simple .INI file parser - -inih is released under the New BSD license (see LICENSE.txt). Go to the project -home page for more info: - -https://github.com/benhoyt/inih - -*/ - -#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) -#define _CRT_SECURE_NO_WARNINGS -#endif - -#include -#include -#include - -#if !INI_USE_STACK -#include -#endif - -#define MAX_SECTION 50 -#define MAX_NAME 50 - -/* Strip whitespace chars off end of given string, in place. Return s. */ -inline static char* rstrip(char* s) -{ - char* p = s + strlen(s); - while (p > s && isspace((unsigned char)(*--p))) - *p = '\0'; - return s; -} - -/* Return pointer to first non-whitespace char in given string. */ -inline static char* lskip(const char* s) -{ - while (*s && isspace((unsigned char)(*s))) - s++; - return (char*)s; -} - -/* Return pointer to first char (of chars) or inline comment in given string, - or pointer to null at end of string if neither found. Inline comment must - be prefixed by a whitespace character to register as a comment. */ -inline static char* find_chars_or_comment(const char* s, const char* chars) -{ -#if INI_ALLOW_INLINE_COMMENTS - int was_space = 0; - while (*s && (!chars || !strchr(chars, *s)) && - !(was_space && strchr(INI_INLINE_COMMENT_PREFIXES, *s))) { - was_space = isspace((unsigned char)(*s)); - s++; - } -#else - while (*s && (!chars || !strchr(chars, *s))) { - s++; - } -#endif - return (char*)s; -} - -/* Version of strncpy that ensures dest (size bytes) is null-terminated. */ -inline static char* strncpy0(char* dest, const char* src, size_t size) -{ - strncpy(dest, src, size); - dest[size - 1] = '\0'; - return dest; -} - -/* See documentation in header file. */ -inline int ini_parse_stream(ini_reader reader, void* stream, ini_handler handler, - void* user) -{ - /* Uses a fair bit of stack (use heap instead if you need to) */ -#if INI_USE_STACK - char line[INI_MAX_LINE]; -#else - char* line; -#endif - char section[MAX_SECTION] = ""; - char prev_name[MAX_NAME] = ""; - - char* start; - char* end; - char* name; - char* value; - int lineno = 0; - int error = 0; - -#if !INI_USE_STACK - line = (char*)malloc(INI_MAX_LINE); - if (!line) { - return -2; - } -#endif - - /* Scan through stream line by line */ - while (reader(line, INI_MAX_LINE, stream) != NULL) { - lineno++; - - start = line; -#if INI_ALLOW_BOM - if (lineno == 1 && (unsigned char)start[0] == 0xEF && - (unsigned char)start[1] == 0xBB && - (unsigned char)start[2] == 0xBF) { - start += 3; - } -#endif - start = lskip(rstrip(start)); - - if (*start == ';' || *start == '#') { - /* Per Python configparser, allow both ; and # comments at the - start of a line */ - } -#if INI_ALLOW_MULTILINE - else if (*prev_name && *start && start > line) { - -#if INI_ALLOW_INLINE_COMMENTS - end = find_chars_or_comment(start, NULL); - if (*end) - *end = '\0'; - rstrip(start); -#endif - - /* Non-blank line with leading whitespace, treat as continuation - of previous name's value (as per Python configparser). */ - if (!handler(user, section, prev_name, start) && !error) - error = lineno; - } -#endif - else if (*start == '[') { - /* A "[section]" line */ - end = find_chars_or_comment(start + 1, "]"); - if (*end == ']') { - *end = '\0'; - strncpy0(section, start + 1, sizeof(section)); - *prev_name = '\0'; - } - else if (!error) { - /* No ']' found on section line */ - error = lineno; - } - } - else if (*start) { - /* Not a comment, must be a name[=:]value pair */ - end = find_chars_or_comment(start, "=:"); - if (*end == '=' || *end == ':') { - *end = '\0'; - name = rstrip(start); - value = lskip(end + 1); -#if INI_ALLOW_INLINE_COMMENTS - end = find_chars_or_comment(value, NULL); - if (*end) - *end = '\0'; -#endif - rstrip(value); - - /* Valid name[=:]value pair found, call handler */ - strncpy0(prev_name, name, sizeof(prev_name)); - if (!handler(user, section, name, value) && !error) - error = lineno; - } - else if (!error) { - /* No '=' or ':' found on name[=:]value line */ - error = lineno; - } - } - -#if INI_STOP_ON_FIRST_ERROR - if (error) - break; -#endif - } - -#if !INI_USE_STACK - free(line); -#endif - - return error; -} - -/* See documentation in header file. */ -inline int ini_parse_file(FILE* file, ini_handler handler, void* user) -{ - return ini_parse_stream((ini_reader)fgets, file, handler, user); -} - -/* See documentation in header file. */ -inline int ini_parse(const char* filename, ini_handler handler, void* user) -{ - FILE* file; - int error; - - file = fopen(filename, "r"); - if (!file) - return -1; - error = ini_parse_file(file, handler, user); - fclose(file); - return error; -} - -#endif /* __INI_H__ */ - - -#ifndef __INIREADER_H__ -#define __INIREADER_H__ - -#include -#include -#include - -// Read an INI file into easy-to-access name/value pairs. (Note that I've gone -// for simplicity here rather than speed, but it should be pretty decent.) -class INIReader -{ -public: - // Empty Constructor - INIReader() {}; - - // Construct INIReader and parse given filename. See ini.h for more info - // about the parsing. - INIReader(std::string filename); - - // Construct INIReader and parse given file. See ini.h for more info - // about the parsing. - INIReader(FILE *file); - - // Return the result of ini_parse(), i.e., 0 on success, line number of - // first error on parse error, or -1 on file open error. - int ParseError() const; - - // Return the list of sections found in ini file - const std::set& Sections() const; - - // Get a string value from INI file, returning default_value if not found. - std::string Get(std::string section, std::string name, - std::string default_value) const; - - // Get an integer (long) value from INI file, returning default_value if - // not found or not a valid integer (decimal "1234", "-1234", or hex "0x4d2"). - int32_t GetInteger(std::string section, std::string name, int32_t default_value) const; - - // Get a real (floating point double) value from INI file, returning - // default_value if not found or not a valid floating point value - // according to strtod(). - double GetReal(std::string section, std::string name, double default_value) const; - - // Get a single precision floating point number value from INI file, returning - // default_value if not found or not a valid floating point value - // according to strtof(). - float GetFloat(std::string section, std::string name, float default_value) const; - - // Get a boolean value from INI file, returning default_value if not found or if - // not a valid true/false value. Valid true values are "true", "yes", "on", "1", - // and valid false values are "false", "no", "off", "0" (not case sensitive). - bool GetBoolean(std::string section, std::string name, bool default_value) const; - -protected: - int _error; - std::map _values; - std::set _sections; - static std::string MakeKey(std::string section, std::string name); - static int ValueHandler(void* user, const char* section, const char* name, - const char* value); -}; - -#endif // __INIREADER_H__ - - -#ifndef __INIREADER__ -#define __INIREADER__ - -#include -#include -#include - -inline INIReader::INIReader(std::string filename) -{ - _error = ini_parse(filename.c_str(), ValueHandler, this); -} - -inline INIReader::INIReader(FILE *file) -{ - _error = ini_parse_file(file, ValueHandler, this); -} - -inline int INIReader::ParseError() const -{ - return _error; -} - -inline const std::set& INIReader::Sections() const -{ - return _sections; -} - -inline std::string INIReader::Get(std::string section, std::string name, std::string default_value) const -{ - std::string key = MakeKey(section, name); - return _values.count(key) ? _values.at(key) : default_value; -} - -inline int32_t INIReader::GetInteger(std::string section, std::string name, int32_t default_value) const -{ - std::string valstr = Get(section, name, ""); - const char* value = valstr.c_str(); - char* end; - // This parses "1234" (decimal) and also "0x4D2" (hex) - int32_t n = strtol(value, &end, 0); - return end > value ? n : default_value; -} - -inline double INIReader::GetReal(std::string section, std::string name, double default_value) const -{ - std::string valstr = Get(section, name, ""); - const char* value = valstr.c_str(); - char* end; - double n = strtod(value, &end); - return end > value ? n : default_value; -} - -inline float INIReader::GetFloat(std::string section, std::string name, float default_value) const -{ - std::string valstr = Get(section, name, ""); - const char* value = valstr.c_str(); - char* end; - float n = strtof(value, &end); - return end > value ? n : default_value; -} - -inline bool INIReader::GetBoolean(std::string section, std::string name, bool default_value) const -{ - std::string valstr = Get(section, name, ""); - // Convert to lower case to make string comparisons case-insensitive - std::transform(valstr.begin(), valstr.end(), valstr.begin(), ::tolower); - if (valstr == "true" || valstr == "yes" || valstr == "on" || valstr == "1") - return true; - else if (valstr == "false" || valstr == "no" || valstr == "off" || valstr == "0") - return false; - else - return default_value; -} - -inline std::string INIReader::MakeKey(std::string section, std::string name) -{ - std::string key = section + "=" + name; - // Convert to lower case to make section/name lookups case-insensitive - std::transform(key.begin(), key.end(), key.begin(), ::tolower); - return key; -} - -inline int INIReader::ValueHandler(void* user, const char* section, const char* name, - const char* value) -{ - INIReader* reader = (INIReader*)user; - std::string key = MakeKey(section, name); - if (reader->_values[key].size() > 0) - reader->_values[key] += "\n"; - reader->_values[key] += value; - reader->_sections.insert(section); - return 1; -} - -#endif // __INIREADER__ diff --git a/lib/SZ3/include/SZ3/utils/inih/LICENSE.txt b/lib/SZ3/include/SZ3/utils/inih/LICENSE.txt deleted file mode 100644 index cb7ee2d0..00000000 --- a/lib/SZ3/include/SZ3/utils/inih/LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ - -The "inih" library is distributed under the New BSD license: - -Copyright (c) 2009, Ben Hoyt -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Ben Hoyt nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY BEN HOYT ''AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL BEN HOYT BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/lib/SZ3/include/SZ3/utils/ska_hash/unordered_map.hpp b/lib/SZ3/include/SZ3/utils/ska_hash/unordered_map.hpp index 5e6e876c..3657e2b2 100644 --- a/lib/SZ3/include/SZ3/utils/ska_hash/unordered_map.hpp +++ b/lib/SZ3/include/SZ3/utils/ska_hash/unordered_map.hpp @@ -14,6 +14,8 @@ #include #include "flat_hash_map.hpp" +// #pragma GCC diagnostic push +// #pragma GCC diagnostic ignored "-Wnull-pointer-arithmetic" namespace ska { @@ -883,3 +885,4 @@ class unordered_set }; } // end namespace ska +// #pragma GCC diagnostic pop diff --git a/lib/SZ3/include/SZ3/version.hpp.in b/lib/SZ3/include/SZ3/version.hpp.in index 07ef1273..ace62e3f 100644 --- a/lib/SZ3/include/SZ3/version.hpp.in +++ b/lib/SZ3/include/SZ3/version.hpp.in @@ -1,10 +1,13 @@ // // DO NOT MODIFY version.hpp, it is automatically generated by cmake -// The version is controlled in CMakeLists.txt +// Change the version numbers in CMakeLists.txt // #ifndef SZ3_VERSION_HPP #define SZ3_VERSION_HPP +#include + +#define SZ3_MAGIC_NUMBER 0xF342F310 #define SZ3_NAME "@PROJECT_NAME@" #define SZ3_VER "@PROJECT_VERSION@" @@ -13,4 +16,21 @@ #define SZ3_VER_PATCH @PROJECT_VERSION_PATCH@ #define SZ3_VER_TWEAK @PROJECT_VERSION_TWEAK@ +#define SZ3_DATA_VER "@SZ3_DATA_VERSION@" + +inline uint32_t versionInt(const std::string& version) { + uint32_t major = 0, minor = 0, patch = 0; + char dot; + std::stringstream ss(version); + ss >> major >> dot >> minor >> dot >> patch; + return (major << 24) | (minor << 16) | (patch<<8); +} + +inline std::string versionStr(uint32_t version) { + uint32_t major = (version >> 24) & 0xFF; + uint32_t minor = (version >> 16) & 0xFF; + uint32_t patch = (version >> 8) & 0xFF; + return std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(patch); +} + #endif //SZ3_VERSION_HPP diff --git a/lib/SZ3/tools/H5Z-SZ3/CMakeLists.txt b/lib/SZ3/tools/H5Z-SZ3/CMakeLists.txt index 907fef8c..b8664f58 100644 --- a/lib/SZ3/tools/H5Z-SZ3/CMakeLists.txt +++ b/lib/SZ3/tools/H5Z-SZ3/CMakeLists.txt @@ -4,23 +4,25 @@ #set(HDF5_LIBRARIES "/path/to/hdf5-1.12.1/hdf5/lib/libhdf5.so") #set(HDF5_INCLUDE_DIRS "/path/to/hdf5-1.12.1/hdf5/include") -find_package(HDF5 REQUIRED) +find_package(HDF5 COMPONENTS C REQUIRED) #message("HDF5LIB PATH:" ${HDF5_LIBRARIES}) #message("HDF5INCLUDE PATH:" ${HDF5_INCLUDE_DIRS}) -add_library( - hdf5sz3 +add_library(hdf5sz3 src/H5Z_SZ3.cpp ) -target_link_libraries( - hdf5sz3 - PUBLIC SZ3 ${HDF5_LIBRARIES} +target_link_libraries(hdf5sz3 + PUBLIC SZ3 HDF5::HDF5 ) +if (${HDF5_IS_PARALLEL}) + find_package(MPI REQUIRED) + target_link_libraries(hdf5sz3 + PUBLIC MPI::MPI_CXX) +endif () -target_include_directories( - hdf5sz3 +target_include_directories(hdf5sz3 PUBLIC ${HDF5_INCLUDE_DIRS} $ @@ -33,6 +35,6 @@ install(TARGETS hdf5sz3 EXPORT HDF5SZ3 ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} - ) +) install(DIRECTORY include DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/hdf5_sz3) export(TARGETS hdf5sz3 FILE HDF5SZ3.cmake) diff --git a/lib/SZ3/tools/H5Z-SZ3/README.md b/lib/SZ3/tools/H5Z-SZ3/README.md new file mode 100644 index 00000000..139c9095 --- /dev/null +++ b/lib/SZ3/tools/H5Z-SZ3/README.md @@ -0,0 +1,63 @@ + +# H5Z-SZ3 Filter Integration + +The H5Z-SZ3 filter integrates the SZ3 compression library with HDF5, providing an efficient way to compress and decompress data within HDF5 files. + +## Table of Contents +- [Installation](#installation) +- [Usage](#usage) + - [HDF5 Executables](#hdf5-executables) + - [Compression Methods](#compression-methods) + - [Decompression](#decompression) +- [Integration in C/C++](#integration-in-cc) + +## Installation + +### Step 1: Build and Install SZ3 +Compile and install SZ3 with the H5Z-SZ3 filter enabled: +```bash +add -DBUILD_H5Z_FILTER=true to cmake command to enable H5Z-SZ3 filter in SZ3 +``` + +### Step 2: Configure Environment +Add the directory containing the H5Z-SZ3 library (`libhdf5sz3.so` or `libhdf5sz3.dylib`) to your `HDF5_PLUGIN_PATH` and `LD_LIBRARY_PATH` environment variables: +```bash +export HDF5_PLUGIN_PATH=${HDF5_PLUGIN_PATH}:/ +export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HDF5_HOME/lib:$ +``` + + +## Use H5Z-SZ3 in HDF5 Executables + +Note, if the HDF5 in your system contains both `h5repack-shared` and `h5repack`, you need to use `h5repack-shared` for filters, as outlined in [H5Z-ZFP Issue #137](https://github.com/LLNL/H5Z-ZFP/issues/137). + +### Compression + +**Method 1: Compression with default settings (see SZ3/utils/Config.hpp for defaults)** +```bash +h5repack-shared -f UD=32024,0 data.h5 data.sz3.h5 +``` + +**Method 2: Compression with customized settings in configuration file** + +Step 1, generate H5Z-SZ3 parameters from SZ3 configuration file: +```bash +print_h5repack_args -c sz3.config +``` +Step 2, compress by h5repack-shared with generated parameters: +```bash +h5repack-shared -f UD=32024,0,11,4077060608,16843009,0,0,4054449152,1348619730,16826431,257,2147483904,2147483648,16777216 data.h5 data.sz3.h5 +``` + +Alternatively, use the script to generate parameters and compress at once: +```bash +h5repack.sh ~/code/sz3/tools/sz3/sz3.config data.h5 data.sz3.h5 +``` + +### Decompression +```bash +h5repack-shared -f NONE data.sz3.h5 data.sz3_decompressed.h5 +``` + +## Use H5Z-SZ3 in code (C/C++) +See examples `sz3ToHDF5.cpp` and `dsz3FromHDF5.cpp` for how to use the H5Z-SZ3 filter in your C/C++ projects. diff --git a/lib/SZ3/tools/H5Z-SZ3/include/H5Z_SZ3.hpp b/lib/SZ3/tools/H5Z-SZ3/include/H5Z_SZ3.hpp index cd26fe87..3e77b584 100644 --- a/lib/SZ3/tools/H5Z-SZ3/include/H5Z_SZ3.hpp +++ b/lib/SZ3/tools/H5Z-SZ3/include/H5Z_SZ3.hpp @@ -1,95 +1,48 @@ -// -// Created by arham23 on 2/8/22. -// - #ifndef SZ3_H5Z_SZ3_H #define SZ3_H5Z_SZ3_H #define H5Z_FILTER_SZ3 32024 -#define SZ_FLOAT 0 -#define SZ_DOUBLE 1 -#define SZ_UINT8 2 -#define SZ_INT8 3 -#define SZ_UINT16 4 -#define SZ_INT16 5 -#define SZ_UINT32 6 -#define SZ_INT32 7 -#define SZ_UINT64 8 -#define SZ_INT64 9 -#include "hdf5.h" -#include -#include -#include -#include +#include #include +#include +#include - - - -#define LITTLE_ENDIAN_SYSTEM 0 -#define BIG_ENDIAN_SYSTEM 1 -#define LITTLE_ENDIAN_DATA 0 -#define BIG_ENDIAN_DATA 1 +#include "SZ3/api/sz.hpp" +#include "hdf5.h" #ifdef __cplusplus extern "C" { #endif extern hid_t H5Z_SZ_ERRCLASS; -#define ERROR(FNAME) \ -do { \ - int _errno = errno; \ - fprintf(stderr, #FNAME " failed at line %d, errno=%d (%s)\n", \ - __LINE__, _errno, _errno?strerror(_errno):"ok"); \ - return 1; \ -} while(0) - -#define H5Z_SZ_PUSH_AND_GOTO(MAJ, MIN, RET, MSG) \ -do \ -{ \ - H5Epush(H5E_DEFAULT,__FILE__,_funcname_,__LINE__,H5Z_SZ_ERRCLASS,MAJ,MIN,MSG); \ - return RET; \ -} while(0) -extern int sysEndianType; -extern int dataEndianType; - -void SZ_refreshDimForCdArray(int dataType, size_t old_cd_nelmts, unsigned int *old_cd_values, size_t* new_cd_nelmts, unsigned int **new_cd_values, size_t r5, size_t r4, size_t r3, size_t r2, size_t r1); - -void SZ_errConfigToCdArray(size_t* cd_nelmts, unsigned int **cd_values, int error_bound_mode, double abs_error, double rel_error, double l2normErrorBound, double psnr); +#define ERROR(FNAME) \ + do { \ + int _errno = errno; \ + fprintf(stderr, #FNAME " failed at line %d, errno=%d (%s)\n", __LINE__, _errno, \ + _errno ? strerror(_errno) : "ok"); \ + return 1; \ + } while (0) + +#define H5Z_SZ_PUSH_AND_GOTO(MAJ, MIN, RET, MSG) \ + do { \ + H5Epush(H5E_DEFAULT, __FILE__, _funcname_, __LINE__, H5Z_SZ_ERRCLASS, MAJ, MIN, MSG); \ + return RET; \ + } while (0) static herr_t H5Z_sz3_set_local(hid_t dcpl_id, hid_t type_id, hid_t chunk_space_id); -static size_t H5Z_filter_sz3(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[], size_t nbytes, size_t* buf_size, void** buf); - -void SZ_cdArrayToMetaData(size_t cd_nelmts, const unsigned int cd_values[], int* dimSize, int* dataType, size_t* r5, size_t* r4, size_t* r3, size_t* r2, size_t* r1); - -void SZ_cdArrayToMetaDataErr(size_t cd_nelmts, const unsigned int cd_values[], int* dimSize, int* dataType, size_t* r5, size_t* r4, size_t* r3, size_t* r2, size_t* r1, - int* error_bound_mode, double* abs_error, double* rel_error, double* l2norm_error, double* psnr); - -void SZ_copymetaDataToCdArray(size_t* cd_nelmts, unsigned int *cd_values, int dataType, size_t r5, size_t r4, size_t r3, size_t r2, size_t r1); - -int checkCDValuesWithErrors(size_t cd_nelmts, const unsigned int cd_values[]); - -size_t computeDataLength(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1); -int computeDimension(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1); -void init_dims_chunk(int dim, hsize_t dims[5], hsize_t chunk[5], size_t nbEle, size_t r5, size_t r4, size_t r3, size_t r2, size_t r1); - -double bytesToDouble(unsigned char* bytes); -void doubleToBytes(unsigned char *b, double num); - -void longToBytes_bigEndian(unsigned char *b, uint64_t num) ; +static size_t H5Z_filter_sz3(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[], size_t nbytes, + size_t *buf_size, void **buf); -int bytesToInt_bigEndian(unsigned char* bytes); -int64_t bytesToLong_bigEndian(unsigned char* b); +const void *H5PLget_plugin_info(void); -void detectSysEndianType(); -void symTransform_8bytes(unsigned char data[8]); +herr_t set_SZ3_conf_to_H5(const hid_t propertyList, SZ3::Config &conf); -int filterDimension(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1, size_t* correctedDimension); +herr_t get_SZ3_conf_from_H5(const hid_t propertyList, SZ3::Config &conf); #ifdef __cplusplus } #endif -#endif //SZ3_H5Z_SZ3_H +#endif // SZ3_H5Z_SZ3_H diff --git a/lib/SZ3/tools/H5Z-SZ3/src/H5Z_SZ3.cpp b/lib/SZ3/tools/H5Z-SZ3/src/H5Z_SZ3.cpp index 5acc2c50..70e8007c 100644 --- a/lib/SZ3/tools/H5Z-SZ3/src/H5Z_SZ3.cpp +++ b/lib/SZ3/tools/H5Z-SZ3/src/H5Z_SZ3.cpp @@ -1,1176 +1,227 @@ -// -// Created by arham23 on 2/8/22. -// - -#include #include "H5Z_SZ3.hpp" + #include -#include "H5PLextern.h" -#include "SZ3/api/sz.hpp" -#include "SZ3/utils/ByteUtil.hpp" +#include +#include -#define CONFIG_PATH "sz3.config" +#include "H5PLextern.h" -int sysEndianType = LITTLE_ENDIAN_SYSTEM; -int dataEndianType = LITTLE_ENDIAN_DATA; hid_t H5Z_SZ_ERRCLASS = -1; -using namespace SZ; +// filter definition +const H5Z_class2_t H5Z_SZ3[1] = {{ + H5Z_CLASS_T_VERS, /* H5Z_class_t version */ + H5Z_FILTER_SZ3, /* Filter id number */ + 1, /* encoder_present flag (set to true) */ + 1, /* decoder_present flag (set to true) */ + "SZ3 compressor/decompressor for floating-point data.", /* Filter name for debugging */ + NULL, /* The "can apply" callback */ + H5Z_sz3_set_local, /* The "set local" callback */ + static_cast(H5Z_filter_sz3), /* The actual filter function */ +}}; -//h5repack -f UD=32024,0 /home/arham23/Software/SZ3/test/testfloat_8_8_128.dat.h5 tf_8_8_128.dat.sz.h5 +H5PL_type_t H5PLget_plugin_type(void) { return H5PL_TYPE_FILTER; } -//load from "sz3.config" in local directory if 1 else use default values or cd values +const void *H5PLget_plugin_info(void) { return H5Z_SZ3; } -int loadConfigFile = 0; -int freshCdValues = 0; -int MAX_CHUNK_SIZE = INT_MAX; +herr_t set_SZ3_conf_to_H5(const hid_t propertyList, SZ3::Config &conf) { + static char const *_funcname_ = "set_SZ3_conf_to_H5"; -//filter definition -const H5Z_class2_t H5Z_SZ3[1] = {{ - H5Z_CLASS_T_VERS, /* H5Z_class_t version */ - (H5Z_filter_t)H5Z_FILTER_SZ3, /* Filter id number */ - 1, /* encoder_present flag (set to true) */ - 1, /* decoder_present flag (set to true) */ - "SZ3 compressor/decompressor for floating-point data.", /* Filter name for debugging */ - NULL, /* The "can apply" callback */ - H5Z_sz3_set_local, /* The "set local" callback */ - (H5Z_func_t)H5Z_filter_sz3, /* The actual filter function */ + // save conf into cd_values + size_t cd_nelmts = std::ceil(conf.size_est() / 1.0 / sizeof(int)); + std::vector cd_values(cd_nelmts, 0); + auto buffer = reinterpret_cast(cd_values.data()); + + // conf.save(buffer); + auto confSizeReal = conf.save(buffer); + cd_nelmts = std::ceil(confSizeReal / 1.0 / sizeof(int)); + + auto szfilter = H5Pget_filter_by_id(propertyList, H5Z_FILTER_SZ3, H5Z_FLAG_MANDATORY, NULL, NULL, 0, NULL, + NULL); // check if filter is set + if (0 > szfilter) { // filter not set, set filter. Notice that calling H5Pset_filter twice with the same filter id + // will cause unexpected errors for decompression + if (0 > H5Pset_filter(propertyList, H5Z_FILTER_SZ3, H5Z_FLAG_MANDATORY, cd_nelmts, cd_values.data())) { + H5Z_SZ_PUSH_AND_GOTO(H5E_PLINE, H5E_BADVALUE, 0, "failed to modify cd_values"); + } + } else { // filter already set, update filter + if (0 > H5Pmodify_filter(propertyList, H5Z_FILTER_SZ3, H5Z_FLAG_MANDATORY, cd_nelmts, cd_values.data())) + H5Z_SZ_PUSH_AND_GOTO(H5E_PLINE, H5E_BADVALUE, 0, "failed to modify cd_values"); } -}; -H5PL_type_t H5PLget_plugin_type(void) { - return H5PL_TYPE_FILTER; -} -const void *H5PLget_plugin_info(void) { - return H5Z_SZ3; + return 1; } -/*FILTER FUNCTIONS*/ +herr_t get_SZ3_conf_from_H5(const hid_t propertyList, SZ3::Config &conf) { + static char const *_funcname_ = "get_SZ3_conf_from_H5"; -/** - * to be used in compression, and to be called outside H5Z_filter_sz(). - * */ - - void SZ_refreshDimForCdArray(int dataType, size_t old_cd_nelmts, unsigned int *old_cd_values, size_t* new_cd_nelmts, unsigned int **new_cd_values, size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) - { - unsigned char bytes[8] = {0}; - *new_cd_values = (unsigned int*)malloc(sizeof(unsigned int)*16); - memset(*new_cd_values, 0, sizeof(unsigned int)*16); - - //correct dimension if needed - size_t _r[5]; - filterDimension(r5, r4, r3, r2, r1, _r); - size_t _r5 = _r[4]; - size_t _r4 = _r[3]; - size_t _r3 = _r[2]; - size_t _r2 = _r[1]; - size_t _r1 = _r[0]; - - int i =0; - int oldDim = computeDimension(r5, r4, r3, r2, r1); - int newDim = computeDimension(_r5, _r4, _r3, _r2, _r1); - (*new_cd_values)[0] = newDim; - (*new_cd_values)[1] = dataType; - - - switch(newDim) - { - case 1: - longToBytes_bigEndian(bytes, (uint64_t) r1); - (*new_cd_values)[2] = bytesToInt_bigEndian(bytes); - (*new_cd_values)[3] = bytesToInt_bigEndian(&bytes[4]); - if(old_cd_nelmts==0) - *new_cd_nelmts = 4; - else - { - (*new_cd_values)[4] = old_cd_values[0]; - (*new_cd_values)[5] = old_cd_values[1]; - (*new_cd_values)[6] = old_cd_values[2]; - (*new_cd_values)[7] = old_cd_values[3]; - (*new_cd_values)[8] = old_cd_values[4]; - (*new_cd_values)[9] = old_cd_values[5]; - (*new_cd_values)[10] = old_cd_values[6]; - (*new_cd_values)[11] = old_cd_values[7]; - (*new_cd_values)[12] = old_cd_values[8]; - *new_cd_nelmts = 13; - } - break; - case 2: - (*new_cd_values)[2] = (unsigned int) _r2; - (*new_cd_values)[3] = (unsigned int) _r1; - if(old_cd_nelmts==0) - *new_cd_nelmts = 4; - else - { - (*new_cd_values)[4] = old_cd_values[0]; - (*new_cd_values)[5] = old_cd_values[1]; - (*new_cd_values)[6] = old_cd_values[2]; - (*new_cd_values)[7] = old_cd_values[3]; - (*new_cd_values)[8] = old_cd_values[4]; - (*new_cd_values)[9] = old_cd_values[5]; - (*new_cd_values)[10] = old_cd_values[6]; - (*new_cd_values)[11] = old_cd_values[7]; - (*new_cd_values)[12] = old_cd_values[8]; - *new_cd_nelmts = 13; - } - break; - case 3: - (*new_cd_values)[2] = (unsigned int) _r3; - (*new_cd_values)[3] = (unsigned int) _r2; - (*new_cd_values)[4] = (unsigned int) _r1; - if(old_cd_nelmts==0) - *new_cd_nelmts = 5; - else - { - (*new_cd_values)[5] = old_cd_values[0]; - (*new_cd_values)[6] = old_cd_values[1]; - (*new_cd_values)[7] = old_cd_values[2]; - (*new_cd_values)[8] = old_cd_values[3]; - (*new_cd_values)[9] = old_cd_values[4]; - (*new_cd_values)[10] = old_cd_values[5]; - (*new_cd_values)[11] = old_cd_values[6]; - (*new_cd_values)[12] = old_cd_values[7]; - (*new_cd_values)[13] = old_cd_values[8]; - *new_cd_nelmts = 14; - } - break; - case 4: - (*new_cd_values)[2] = (unsigned int) _r4; - (*new_cd_values)[3] = (unsigned int) _r3; - (*new_cd_values)[4] = (unsigned int) _r2; - (*new_cd_values)[5] = (unsigned int) _r1; - if(old_cd_nelmts==0) - *new_cd_nelmts = 6; - else - { - (*new_cd_values)[6] = old_cd_values[0]; - (*new_cd_values)[7] = old_cd_values[1]; - (*new_cd_values)[8] = old_cd_values[2]; - (*new_cd_values)[9] = old_cd_values[3]; - (*new_cd_values)[10] = old_cd_values[4]; - (*new_cd_values)[11] = old_cd_values[5]; - (*new_cd_values)[12] = old_cd_values[6]; - (*new_cd_values)[13] = old_cd_values[7]; - (*new_cd_values)[14] = old_cd_values[8]; - *new_cd_nelmts = 15; - break; - } - default: - (*new_cd_values)[2] = (unsigned int) _r5; - (*new_cd_values)[3] = (unsigned int) _r4; - (*new_cd_values)[4] = (unsigned int) _r3; - (*new_cd_values)[5] = (unsigned int) _r2; - (*new_cd_values)[6] = (unsigned int) _r1; - if(old_cd_nelmts==0) - *new_cd_nelmts = 7; - else - { - (*new_cd_values)[7] = old_cd_values[0]; - (*new_cd_values)[8] = old_cd_values[1]; - (*new_cd_values)[9] = old_cd_values[2]; - (*new_cd_values)[10] = old_cd_values[3]; - (*new_cd_values)[11] = old_cd_values[4]; - (*new_cd_values)[12] = old_cd_values[5]; - (*new_cd_values)[13] = old_cd_values[6]; - (*new_cd_values)[14] = old_cd_values[7]; - (*new_cd_values)[15] = old_cd_values[8]; - *new_cd_nelmts = 16; - } - } - } + size_t cd_nelmts = std::ceil(conf.size_est() / 1.0 / sizeof(int)); + std::vector cd_values(cd_nelmts, 0); + // read cd_values from HDF5 + // note that cd_nelmts must be non-zero, otherwise, cd_values cannot be filled. + if (0 > H5Pget_filter_by_id(propertyList, H5Z_FILTER_SZ3, H5Z_FLAG_MANDATORY, &cd_nelmts, cd_values.data(), 0, NULL, + NULL)) + H5Z_SZ_PUSH_AND_GOTO(H5E_PLINE, H5E_CANTGET, 0, "unable to get current SZ cd_values"); -void SZ_errConfigToCdArray(size_t* cd_nelmts, unsigned int **cd_values, int error_bound_mode, double abs_error, double rel_error, double l2normErrorBound, double psnr) -{ - *cd_values = (unsigned int*)malloc(sizeof(unsigned int)*9); - int k = 0; - (*cd_values)[k++] = error_bound_mode; - unsigned char b[8]; - doubleToBytes(b, abs_error); - (*cd_values)[k++] = bytesToInt32_bigEndian(b); - (*cd_values)[k++] = bytesToInt32_bigEndian(b+4); - doubleToBytes(b, rel_error); - (*cd_values)[k++] = bytesToInt32_bigEndian(b); - (*cd_values)[k++] = bytesToInt32_bigEndian(b+4); - doubleToBytes(b, l2normErrorBound); - (*cd_values)[k++] = bytesToInt32_bigEndian(b); - (*cd_values)[k++] = bytesToInt32_bigEndian(b+4); - doubleToBytes(b, psnr); - (*cd_values)[k++] = bytesToInt32_bigEndian(b); - (*cd_values)[k++] = bytesToInt32_bigEndian(b+4); - *cd_nelmts = k; + // load cd_values into config + if (cd_nelmts != 0) { + auto buffer = reinterpret_cast(cd_values.data()); + conf.load(buffer); + } + return 1; } static herr_t H5Z_sz3_set_local(hid_t dcpl_id, hid_t type_id, hid_t chunk_space_id) { + printf("start H5Z_sz3_set_local\n"); - //printf("get into H5Z_sz3_set_local\n"); - detectSysEndianType(); - - //printf("start in H5Z_sz3_set_local, dcpl_id = %d\n", dcpl_id); + // printf("start in H5Z_sz3_set_local, dcpl_id = %d\n", dcpl_id); static char const *_funcname_ = "H5Z_sz3_set_local"; - size_t r5=0,r4=0,r3=0,r2=0,r1=0, dsize; - - int i, ndims, ndims_used = 0; - hsize_t dims[H5S_MAX_RANK], dims_used[5] = {0,0,0,0,0}; - herr_t retval = 0; - H5T_class_t dclass; - H5T_sign_t dsign; - unsigned int flags = 0; - size_t mem_cd_nelmts = 9, cd_nelmts = 0; - unsigned int mem_cd_values[16]= {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; - - //H5Z_FILTER_SZ - //note that mem_cd_nelmts must be non-zero, otherwise, mem_cd_values cannot be filled. - if (0 > H5Pget_filter_by_id(dcpl_id, H5Z_FILTER_SZ3, &flags, &mem_cd_nelmts, mem_cd_values, 0, NULL, NULL)) - H5Z_SZ_PUSH_AND_GOTO(H5E_PLINE, H5E_CANTGET, 0, "unable to get current SZ cd_values"); - - if(mem_cd_nelmts==0) //this means that the error information is missing from the cd_values - { - //printf("mem_cd_nelmets is 0, so let's try using sz3.config to load error configuration....\n"); - std::ifstream f(CONFIG_PATH); - if(f.good()) { - printf("sz3.config found!\n"); - loadConfigFile = 1; - } - else - printf("sz3.config not found, using default parameters\n"); - f.close(); - } - else //this means that the error information is included in the cd_values - { - loadConfigFile = 0; - //printf("mem_cd_nelmets is non-zero, so let's use the parameters set through cd_values.....\n"); - } - herr_t ret = H5Zregister(H5Z_SZ3); + // herr_t ret = H5Zregister(H5Z_SZ3); - int dataType = SZ_FLOAT; + SZ3::Config conf; + get_SZ3_conf_from_H5(dcpl_id, conf); - //printf("DC\n"); - if (0 > (dclass = H5Tget_class(type_id))) - H5Z_SZ_PUSH_AND_GOTO(H5E_ARGS, H5E_BADTYPE, -1, "not a datatype"); + // read datatype and dims from HDF5 + H5T_class_t dclass; + if (0 > (dclass = H5Tget_class(type_id))) H5Z_SZ_PUSH_AND_GOTO(H5E_ARGS, H5E_BADTYPE, -1, "not a datatype"); - //printf("DS\n"); - if (0 == (dsize = H5Tget_size(type_id))) - H5Z_SZ_PUSH_AND_GOTO(H5E_ARGS, H5E_BADTYPE, -1, "size is smaller than 0!"); + size_t dsize; + if (0 == (dsize = H5Tget_size(type_id))) H5Z_SZ_PUSH_AND_GOTO(H5E_ARGS, H5E_BADTYPE, -1, "size is smaller than 0!"); - //printf("ND\n"); - if (0 > (ndims = H5Sget_simple_extent_dims(chunk_space_id, dims, 0))) + int ndims; + hsize_t dims_all[H5S_MAX_RANK]; + if (0 > (ndims = H5Sget_simple_extent_dims(chunk_space_id, dims_all, NULL))) H5Z_SZ_PUSH_AND_GOTO(H5E_ARGS, H5E_BADTYPE, -1, "not a data space"); - - for (i = 0; i < ndims; i++) - dims_used[i] = dims[i]; - - - //printf("NDIM: %i\n", ndims); - //printf("N_USE: %i\n", ndims_used); - //printf("DCLASS: %i\n", dclass); - //printf("DSIZE: %zu\n", dsize); - - //for(i = 0; i < ndims_used; i++){ - // printf("DIMS[%i] : %zu\n", i, dims_used[i]); - //} - //printf("\nDCEQ\n"); - + std::vector dims(dims_all, dims_all + ndims); + // update conf with datatype + conf.dataType = SZ_FLOAT; if (dclass == H5T_FLOAT) - dataType = dsize==4? SZ_FLOAT: SZ_DOUBLE; - else if(dclass == H5T_INTEGER) - { + conf.dataType = dsize == 4 ? SZ_FLOAT : SZ_DOUBLE; + else if (dclass == H5T_INTEGER) { + H5T_sign_t dsign; if (0 > (dsign = H5Tget_sign(type_id))) H5Z_SZ_PUSH_AND_GOTO(H5E_ARGS, H5E_BADTYPE, -1, "Error in calling H5Tget_sign(type_id)...."); - if(dsign == H5T_SGN_NONE) //unsigned - { - switch(dsize) - { - case 1: - dataType = SZ_UINT8; - break; - case 2: - dataType = SZ_UINT16; - break; - case 4: - dataType = SZ_UINT32; - break; - case 8: - dataType = SZ_UINT64; - break; + if (dsign == H5T_SGN_NONE) // unsigned + { + switch (dsize) { + case 1: + conf.dataType = SZ_UINT8; + break; + case 2: + conf.dataType = SZ_UINT16; + break; + case 4: + conf.dataType = SZ_UINT32; + break; + case 8: + conf.dataType = SZ_UINT64; + break; } - } - else - { - switch(dsize) - { - case 1: - dataType = SZ_INT8; - break; - case 2: - dataType = SZ_INT16; - break; - case 4: - dataType = SZ_INT32; - break; - case 8: - dataType = SZ_INT64; - break; + } else { + switch (dsize) { + case 1: + conf.dataType = SZ_INT8; + break; + case 2: + conf.dataType = SZ_INT16; + break; + case 4: + conf.dataType = SZ_INT32; + break; + case 8: + conf.dataType = SZ_INT64; + break; } } - } - else { + } else { H5Z_SZ_PUSH_AND_GOTO(H5E_PLINE, H5E_BADTYPE, 0, "datatype class must be H5T_FLOAT or H5T_INTEGER"); } + // update conf with dims + conf.setDims(std::begin(dims), std::end(dims)); - unsigned int* cd_values = NULL; - if(mem_cd_nelmts!=0 && mem_cd_nelmts!=9) - { - H5Epush(H5E_DEFAULT,__FILE__, "H5Z_sz3_set_local", __LINE__, H5E_ERR_CLS, H5E_ARGS, H5E_BADVALUE, "Wrong number of cd_values: The new version has 9 integer elements in cd_values. Please check 'test/print_h5repack_args' to get the correct cd_values."); - H5Eprint(H5E_DEFAULT, stderr); - return -1; - } - SZ_refreshDimForCdArray(dataType, mem_cd_nelmts, mem_cd_values, &cd_nelmts, &cd_values, dims_used[4], dims_used[3], dims_used[2], dims_used[1], dims_used[0]); - - /* Now, update cd_values for the filter */ - if (0 > H5Pmodify_filter(dcpl_id, H5Z_FILTER_SZ3, flags, cd_nelmts, cd_values)) - H5Z_SZ_PUSH_AND_GOTO(H5E_PLINE, H5E_BADVALUE, 0, "failed to modify cd_values"); - - free(cd_values); - - retval = 1; -done: - return retval; + set_SZ3_conf_to_H5(dcpl_id, conf); + return 1; } - -static size_t H5Z_filter_sz3(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[], size_t nbytes, size_t* buf_size, void** buf) -{ - //printf("get into H5Z_filter_sz3\n"); - size_t r1 = 0, r2 = 0, r3 = 0, r4 = 0, r5 = 0; - int dimSize = 0, dataType = 0; - - if(cd_nelmts==0) //this is special data such as string, which should not be treated as values. - return nbytes; - - int withErrInfo = checkCDValuesWithErrors(cd_nelmts, cd_values); - int error_mode = 0; - int cmp_algo = 1; - int interp_algo = 1; - double abs_error = 0, rel_error = 0, l2norm_error = 0, psnr = 0; - if(withErrInfo) - SZ_cdArrayToMetaDataErr(cd_nelmts, cd_values, &dimSize, &dataType, &r5, &r4, &r3, &r2, &r1, &error_mode, &abs_error, &rel_error, &l2norm_error, &psnr); - else - SZ_cdArrayToMetaData(cd_nelmts, cd_values, &dimSize, &dataType, &r5, &r4, &r3, &r2, &r1); - - /*int i=0; - for(i=0;i +void process_data(SZ3::Config &conf, void **buf, size_t *buf_size, size_t nbytes, bool is_decompress) { + if (is_decompress) { + T *processedData = static_cast(malloc(conf.num * sizeof(T))); + SZ_decompress(conf, static_cast(*buf), nbytes, processedData); + free(*buf); + *buf = processedData; + *buf_size = conf.num * sizeof(T); + } else { + size_t cmpCap = sizeof(T) * conf.num * 2; + char *cmpData = static_cast(malloc(cmpCap)); + *buf_size = SZ_compress(conf, static_cast(*buf), cmpData, cmpCap); + free(*buf); + *buf = cmpData; } - else { - /*compress data*/ - //based on # dimensions, get relevant dimensions and load config object with them - if(dimSize <= 0) { - printf("Error: Number of Dimensions is <= 0"); - exit(0); - } - - SZ::Config conf; - //printf("\nDIMS_CMP:\n"); - //printf("r1 %u r2 %u r3 %u r4 %u r5 %u\n", r1,r2,r3,r4,r5); - if (r2 == 0) { - conf = SZ::Config(r1); - } else if (r3 == 0) { - conf = SZ::Config(r2, r1); - } else if (r4 == 0) { - conf = SZ::Config(r3, r2, r1); - } else if (r5 == 0) { - conf = SZ::Config(r4, r3, r2, r1); - } - else { - conf = SZ::Config(r5, r4, r3, r2, r1); - } - - if(error_mode < 0 || error_mode > 5) { - printf("Invalid error mode: %i, error mode should be in [0,5]", error_mode); - exit(0); - } - - //if config file found and no user defined params, read the config file - if(loadConfigFile && freshCdValues) { - // printf("Loading sz3.config ...\n"); - conf.loadcfg(CONFIG_PATH); - } - else { - - conf.errorBoundMode = error_mode; - conf.absErrorBound = abs_error; - conf.relErrorBound = rel_error; - conf.l2normErrorBound = l2norm_error; - conf.psnrErrorBound = psnr; - - //printf("PARAMS: mode|%i, abs_eb|%f, rel_eb|%f, l2_eb|%f, psnr_eb|%f\n", error_mode, abs_error, rel_error, l2norm_error, psnr); - - if(cmp_algo < 0 || cmp_algo > 2) { - printf("Invalid compression algo: %i, should be in [0,2]", cmp_algo); - exit(0); - } - - conf.cmprAlgo = cmp_algo; - - if(interp_algo < 0 || interp_algo > 1) { - printf("Invalid interpolation algo: %i, should be either 0 or 1", interp_algo); - exit(0); - } +} - conf.interpAlgo = interp_algo; +/** + * https://docs.hdfgroup.org/hdf5/v1_14/_f_i_l_t_e_r.html + * The flags, cd_nelmts, and cd_values are the same as for the H5Pset_filter() function with the additional flag + * H5Z_FLAG_REVERSE which is set when the filter is called as part of the input pipeline. The input buffer is pointed to + * by *buf and has a total size of *buf_size bytes but only nbytes are valid data. The filter should perform the + * transformation in place if possible and return the number of valid bytes or zero for failure. If the transformation + * cannot be done in place then the filter should allocate a new buffer with malloc() and assign it to *buf, assigning + * the allocated size of that buffer to *buf_size. The old buffer should be freed by calling free(). + */ +static size_t H5Z_filter_sz3(unsigned int flags, size_t cd_nelmts, const unsigned int cd_values[], size_t nbytes, + size_t *buf_size, void **buf) { + printf("start H5Z_filter_sz3\n"); + + if (cd_nelmts == 0) // this is special data such as string, which should not be treated as values. + return nbytes; - } + SZ3::Config conf; - size_t outSize = 0; - char* compressedData = NULL; + auto buffer = reinterpret_cast(cd_values); + conf.load(buffer); + // conf.print(); + if (conf.num < 20) return nbytes; - switch(dataType) { - case SZ_FLOAT: //FLOAT - { - compressedData = SZ_compress(conf, (float*) *buf, outSize); + bool is_decompress = flags & H5Z_FLAG_REVERSE; + switch (conf.dataType) { + case SZ_FLOAT: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_DOUBLE: //DOUBLE - { - compressedData = SZ_compress(conf, (double*) *buf, outSize); +#if (!SZ3_DEBUG_TIMINGS) + case SZ_DOUBLE: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_INT8: //INT 8 - { - compressedData = SZ_compress(conf, (int8_t*) *buf, outSize); + case SZ_INT8: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_UINT8: //UINT 8 - { - compressedData = SZ_compress(conf, (uint8_t*) *buf, outSize); + case SZ_UINT8: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_INT16: //INT 16 - { - compressedData = SZ_compress(conf, (int16_t*) *buf, outSize); + case SZ_INT16: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_UINT16: //UINT 16 - { - compressedData = SZ_compress(conf, (uint16_t*) *buf, outSize); + case SZ_UINT16: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_INT32: //INT 32 - { - compressedData = SZ_compress(conf, (int32_t*) *buf, outSize); + case SZ_INT32: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_UINT32: //UINT 32 - { - compressedData = SZ_compress(conf, (uint32_t*) *buf, outSize); + case SZ_UINT32: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_INT64: //INT 64 - { - compressedData = SZ_compress(conf, (int64_t*) *buf, outSize); + case SZ_INT64: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - - case SZ_UINT64: //UINT 64 - { - compressedData = SZ_compress(conf, (uint64_t*) *buf, outSize); + case SZ_UINT64: + process_data(conf, buf, buf_size, nbytes, is_decompress); break; - } - +#endif default: - { - printf("Compression Error: Unknown Datatype"); - exit(0); - } - } - - //printf("\nOS: %u \n", outSize); - free(*buf); - *buf = compressedData; - *buf_size = outSize; - - + std::cerr << (is_decompress ? "Decompression" : "Compression") << " Error: Unknown Datatype" << std::endl; + std::exit(EXIT_FAILURE); } - return *buf_size; } - -/*HELPER FUNCTIONS*/ -//use to convert HDF5 cd_array to SZ params inside filter -void SZ_cdArrayToMetaData(size_t cd_nelmts, const unsigned int cd_values[], int* dimSize, int* dataType, size_t* r5, size_t* r4, size_t* r3, size_t* r2, size_t* r1) { - assert(cd_nelmts >= 4); - unsigned char bytes[8]; - *dimSize = cd_values[0]; - *dataType = cd_values[1]; - - switch(*dimSize) - { - case 1: - SZ::int32ToBytes_bigEndian(bytes, cd_values[2]); - SZ::int32ToBytes_bigEndian(&bytes[4], cd_values[3]); - if(sizeof(size_t)==4) - *r1 = (unsigned int) SZ::bytesToInt64_bigEndian(bytes); - else - *r1 = (uint64_t) SZ::bytesToInt64_bigEndian(bytes); - *r2 = *r3 = *r4 = *r5 = 0; - break; - case 2: - *r3 = *r4 = *r5 = 0; - *r2 = cd_values[3]; - *r1 = cd_values[2]; - break; - case 3: - *r4 = *r5 = 0; - *r3 = cd_values[4]; - *r2 = cd_values[3]; - *r1 = cd_values[2]; - break; - case 4: - *r5 = 0; - *r4 = cd_values[5]; - *r3 = cd_values[4]; - *r2 = cd_values[3]; - *r1 = cd_values[2]; - break; - default: - *r5 = cd_values[6]; - *r4 = cd_values[5]; - *r3 = cd_values[4]; - *r2 = cd_values[3]; - *r1 = cd_values[2]; - } -} - -void SZ_cdArrayToMetaDataErr(size_t cd_nelmts, const unsigned int cd_values[], int* dimSize, int* dataType, size_t* r5, size_t* r4, size_t* r3, size_t* r2, size_t* r1, int* error_bound_mode, double* abs_error, double* rel_error, double* l2norm_error, double* psnr) -{ - //get dimension, datatype metadata from cd_values - SZ_cdArrayToMetaData(cd_nelmts, cd_values, dimSize, dataType, r5, r4, r3, r2, r1); - //read in error bound value information - int dim = *dimSize; - int k = dim==1?4:dim+2; - unsigned char b[8]; - int32ToBytes_bigEndian(b, cd_values[k++]); - *error_bound_mode = bytesToInt32_bigEndian(b); - int32ToBytes_bigEndian(b, cd_values[k++]); - int32ToBytes_bigEndian(b+4, cd_values[k++]); - *abs_error = bytesToDouble(b); - int32ToBytes_bigEndian(b, cd_values[k++]); - int32ToBytes_bigEndian(b+4, cd_values[k++]); - *rel_error = bytesToDouble(b); - int32ToBytes_bigEndian(b, cd_values[k++]); - int32ToBytes_bigEndian(b+4, cd_values[k++]); - *l2norm_error = bytesToDouble(b); - int32ToBytes_bigEndian(b, cd_values[k++]); - int32ToBytes_bigEndian(b+4, cd_values[k++]); - *psnr = bytesToDouble(b); -} - -void SZ_copymetaDataToCdArray(size_t* cd_nelmts, unsigned int *cd_values, int dataType, size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) -{ - unsigned char bytes[8] = {0}; - uint64_t size; - int dim = computeDimension(r5, r4, r3, r2, r1); - cd_values[0] = dim; - cd_values[1] = dataType; //0: FLOAT ; 1: DOUBLE ; 2,3,4,....: INTEGER.... - - switch(dim) - { - case 1: - size = (uint64_t) r1; - SZ::int64ToBytes_bigEndian(bytes, size); - cd_values[2] = SZ::bytesToInt32_bigEndian(bytes); - cd_values[3] = SZ::bytesToInt32_bigEndian(&bytes[4]); - *cd_nelmts = 4; - break; - case 2: - cd_values[2] = (unsigned int) r2; - cd_values[3] = (unsigned int) r1; - *cd_nelmts = 4; - break; - case 3: - cd_values[2] = (unsigned int) r3; - cd_values[3] = (unsigned int) r2; - cd_values[4] = (unsigned int) r1; - *cd_nelmts = 5; - break; - case 4: - cd_values[2] = (unsigned int) r4; - cd_values[3] = (unsigned int) r3; - cd_values[4] = (unsigned int) r2; - cd_values[5] = (unsigned int) r1; - *cd_nelmts = 6; - break; - default: - cd_values[2] = (unsigned int) r5; - cd_values[3] = (unsigned int) r4; - cd_values[4] = (unsigned int) r3; - cd_values[5] = (unsigned int) r2; - cd_values[6] = (unsigned int) r1; - *cd_nelmts = 7; - } -} - -int checkCDValuesWithErrors(size_t cd_nelmts, const unsigned int cd_values[]) -{ - int result = 0; //0 means no-error-information-in-cd_values; 1 means cd_values contains error information - int dimSize = cd_values[0]; - //printf("nc_nelmts = %d\n", cd_nelmts); - switch(dimSize) - { - case 1: - if(cd_nelmts>4) - result = 1; - break; - case 2: - if(cd_nelmts>4) - result = 1; - break; - case 3: - if(cd_nelmts>5) - result = 1; - break; - case 4: - if(cd_nelmts>6) - result = 1; - break; - case 5: - if(cd_nelmts>7) - result = 1; - break; - } - return result; -} - -size_t computeDataLength(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) -{ - size_t dataLength; - if(r1==0) - { - dataLength = 0; - } - else if(r2==0) - { - dataLength = r1; - } - else if(r3==0) - { - dataLength = r1*r2; - } - else if(r4==0) - { - dataLength = r1*r2*r3; - } - else if(r5==0) - { - dataLength = r1*r2*r3*r4; - } - else - { - dataLength = r1*r2*r3*r4*r5; - } - return dataLength; -} - -int computeDimension(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) -{ - int dimension; - if(r1==0) - { - dimension = 0; - } - else if(r2==0) - { - dimension = 1; - } - else if(r3==0) - { - dimension = 2; - } - else if(r4==0) - { - dimension = 3; - } - else if(r5==0) - { - dimension = 4; - } - else - { - dimension = 5; - } - return dimension; -} - -void init_dims_chunk(int dim, hsize_t dims[5], hsize_t chunk[5], size_t nbEle, size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) -{ - switch(dim) - { - case 1: - dims[0] = r1; - if(nbEle <= MAX_CHUNK_SIZE) //2^32-1 - chunk[0] = r1; - else - chunk[0] = 2147483648;//2^31 - break; - case 2: - dims[0] = r2; - dims[1] = r1; - if(nbEle <= MAX_CHUNK_SIZE) //2^32-1 - { - chunk[0] = r2; - chunk[1] = r1; - } - else - { - printf("Error: size is too big!\n"); - exit(0); - } - break; - case 3: - dims[0] = r3; - dims[1] = r2; - dims[2] = r1; - if(nbEle <= MAX_CHUNK_SIZE) //2^32-1 - { - chunk[0] = r3; - chunk[1] = r2; - chunk[2] = r1; - } - else - { - printf("Error: size is too big!\n"); - exit(0); - } - break; - case 4: - dims[0] = r4; - dims[1] = r3; - dims[2] = r2; - dims[3] = r1; - if(nbEle <= MAX_CHUNK_SIZE) //2^32-1 - { - chunk[0] = r4; - chunk[1] = r3; - chunk[2] = r2; - chunk[3] = r1; - } - else - { - printf("Error: size is too big!\n"); - exit(0); - } - break; - default: - dims[0] = r5; - dims[1] = r4; - dims[2] = r3; - dims[3] = r2; - dims[4] = r1; - if(nbEle <= MAX_CHUNK_SIZE) //2^32-1 - { - chunk[0] = r5; - chunk[1] = r4; - chunk[2] = r3; - chunk[3] = r2; - chunk[4] = r1; - } - else - { - printf("Error: size is too big!\n"); - exit(0); - } - } -} - -//detect sys endian type -inline void detectSysEndianType() -{ - //get sys endian type - int x_temp = 1; - char *y_temp = (char*)&x_temp; - - if(*y_temp==1) - sysEndianType = LITTLE_ENDIAN_SYSTEM; - else //=0 - sysEndianType = BIG_ENDIAN_SYSTEM; -} - -inline void symTransform_8bytes(unsigned char data[8]) -{ - unsigned char tmp = data[0]; - data[0] = data[7]; - data[7] = tmp; - - tmp = data[1]; - data[1] = data[6]; - data[6] = tmp; - - tmp = data[2]; - data[2] = data[5]; - data[5] = tmp; - - tmp = data[3]; - data[3] = data[4]; - data[4] = tmp; -} - -//the byte to input is in the big-endian format -inline double bytesToDouble(unsigned char* bytes) -{ - ldouble buf; - memcpy(buf.byte, bytes, 8); - if(sysEndianType==LITTLE_ENDIAN_SYSTEM) - symTransform_8bytes(buf.byte); - return buf.value; -} - -inline void doubleToBytes(unsigned char *b, double num) -{ - ldouble buf; - buf.value = num; - memcpy(b, buf.byte, 8); - if(sysEndianType==LITTLE_ENDIAN_SYSTEM) - symTransform_8bytes(b); -} - - -/** - * @brief check dimension and correct it if needed - * @return 0 (didn't change dimension) - * 1 (dimension is changed) - * 2 (dimension is problematic) - **/ -int filterDimension(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1, size_t* correctedDimension) -{ - int dimensionCorrected = 0; - int dim = computeDimension(r5, r4, r3, r2, r1); - correctedDimension[0] = r1; - correctedDimension[1] = r2; - correctedDimension[2] = r3; - correctedDimension[3] = r4; - correctedDimension[4] = r5; - size_t* c = correctedDimension; - if(dim==1) - { - if(r1<1) - return 2; - } - else if(dim==2) - { - if(r2==1) - { - c[1]= 0; - dimensionCorrected = 1; - } - if(r1==1) //remove this dimension - { - c[0] = c[1]; - c[1] = c[2]; - dimensionCorrected = 1; - } - } - else if(dim==3) - { - if(r3==1) - { - c[2] = 0; - dimensionCorrected = 1; - } - if(r2==1) - { - c[1] = c[2]; - c[2] = c[3]; - dimensionCorrected = 1; - } - if(r1==1) - { - c[0] = c[1]; - c[1] = c[2]; - c[2] = c[3]; - dimensionCorrected = 1; - } - } - else if(dim==4) - { - if(r4==1) - { - c[3] = 0; - dimensionCorrected = 1; - } - if(r3==1) - { - c[2] = c[3]; - c[3] = c[4]; - dimensionCorrected = 1; - } - if(r2==1) - { - c[1] = c[2]; - c[2] = c[3]; - c[3] = c[4]; - dimensionCorrected = 1; - } - if(r1==1) - { - c[0] = c[1]; - c[1] = c[2]; - c[2] = c[3]; - c[3] = c[4]; - dimensionCorrected = 1; - } - } - else if(dim==5) - { - if(r5==1) - { - c[4] = 0; - dimensionCorrected = 1; - } - if(r4==1) - { - c[3] = c[4]; - c[4] = 0; - dimensionCorrected = 1; - } - if(r3==1) - { - c[2] = c[3]; - c[3] = c[4]; - c[4] = 0; - dimensionCorrected = 1; - } - if(r2==1) - { - c[1] = c[2]; - c[2] = c[3]; - c[3] = c[4]; - c[4] = 0; - dimensionCorrected = 1; - } - if(r1==1) - { - c[0] = c[1]; - c[1] = c[2]; - c[2] = c[3]; - c[3] = c[4]; - c[4] = 0; - dimensionCorrected = 1; - } - } - - return dimensionCorrected; - -} - -inline void longToBytes_bigEndian(unsigned char *b, uint64_t num) -{ - b[0] = (unsigned char)(num>>56); - b[1] = (unsigned char)(num>>48); - b[2] = (unsigned char)(num>>40); - b[3] = (unsigned char)(num>>32); - b[4] = (unsigned char)(num>>24); - b[5] = (unsigned char)(num>>16); - b[6] = (unsigned char)(num>>8); - b[7] = (unsigned char)(num); -// if(dataEndianType==LITTLE_ENDIAN_DATA) -// symTransform_8bytes(*b); -} - -inline int bytesToInt_bigEndian(unsigned char* bytes) -{ - int temp = 0; - int res = 0; - - res <<= 8; - temp = bytes[0] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[1] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[2] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[3] & 0xff; - res |= temp; - - return res; -} - -/** - * @endianType: refers to the endian_type of unsigned char* b. - * */ -inline int64_t bytesToLong_bigEndian(unsigned char* b) { - int64_t temp = 0; - int64_t res = 0; - - res <<= 8; - temp = b[0] & 0xff; - res |= temp; - - res <<= 8; - temp = b[1] & 0xff; - res |= temp; - - res <<= 8; - temp = b[2] & 0xff; - res |= temp; - - res <<= 8; - temp = b[3] & 0xff; - res |= temp; - - res <<= 8; - temp = b[4] & 0xff; - res |= temp; - - res <<= 8; - temp = b[5] & 0xff; - res |= temp; - - res <<= 8; - temp = b[6] & 0xff; - res |= temp; - - res <<= 8; - temp = b[7] & 0xff; - res |= temp; - - return res; -} diff --git a/lib/SZ3/tools/H5Z-SZ3/test/CMakeLists.txt b/lib/SZ3/tools/H5Z-SZ3/test/CMakeLists.txt index 8a765486..ba6309fa 100644 --- a/lib/SZ3/tools/H5Z-SZ3/test/CMakeLists.txt +++ b/lib/SZ3/tools/H5Z-SZ3/test/CMakeLists.txt @@ -4,8 +4,9 @@ function(build_hdf5_test) target_link_libraries(${test_name} PUBLIC SZ3 hdf5sz3) endfunction(build_hdf5_test) -build_hdf5_test(print_h5repack_args.cpp) build_hdf5_test(sz3ToHDF5.cpp) build_hdf5_test(dsz3FromHDF5.cpp) build_hdf5_test(convertBinToHDF5.cpp) +build_hdf5_test(print_h5repack_args.cpp) +file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/h5repack.sh DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) \ No newline at end of file diff --git a/lib/SZ3/tools/H5Z-SZ3/test/convertBinToHDF5.cpp b/lib/SZ3/tools/H5Z-SZ3/test/convertBinToHDF5.cpp index 1e621f68..c8013652 100644 --- a/lib/SZ3/tools/H5Z-SZ3/test/convertBinToHDF5.cpp +++ b/lib/SZ3/tools/H5Z-SZ3/test/convertBinToHDF5.cpp @@ -1,212 +1,162 @@ -#include -#include -#include #include -#include "hdf5.h" +#include +#include +#include +#include "hdf5.h" -int computeDimension(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) -{ - int dimension; - if(r1==0) - { - dimension = 0; - } - else if(r2==0) - { - dimension = 1; - } - else if(r3==0) - { - dimension = 2; - } - else if(r4==0) - { - dimension = 3; - } - else if(r5==0) - { - dimension = 4; - } - else - { - dimension = 5; - } - return dimension; +static int computeDimension(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) { + int dimension; + if (r1 == 0) { + dimension = 0; + } else if (r2 == 0) { + dimension = 1; + } else if (r3 == 0) { + dimension = 2; + } else if (r4 == 0) { + dimension = 3; + } else if (r5 == 0) { + dimension = 4; + } else { + dimension = 5; + } + return dimension; } - -size_t computeDataLength(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) -{ - size_t dataLength; - if(r1==0) - { - dataLength = 0; - } - else if(r2==0) - { - dataLength = r1; - } - else if(r3==0) - { - dataLength = r1*r2; - } - else if(r4==0) - { - dataLength = r1*r2*r3; - } - else if(r5==0) - { - dataLength = r1*r2*r3*r4; - } - else - { - dataLength = r1*r2*r3*r4*r5; - } - return dataLength; +static size_t computeDataLength(size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) { + size_t dataLength; + if (r1 == 0) { + dataLength = 0; + } else if (r2 == 0) { + dataLength = r1; + } else if (r3 == 0) { + dataLength = r1 * r2; + } else if (r4 == 0) { + dataLength = r1 * r2 * r3; + } else if (r5 == 0) { + dataLength = r1 * r2 * r3 * r4; + } else { + dataLength = r1 * r2 * r3 * r4 * r5; + } + return dataLength; } - -int main(int argc, char* argv[]) { - - hid_t file_id, dataset_id, dataspace_id; /* identifiers */ - hsize_t dims[3]; - herr_t status; - size_t r1 = 0, r2 = 0, r3 = 0, r4 = 0, r5 = 0; - - char varName[100], infile[100], outfile[100], database[100]; - char datatype[100]; - - if(argc<5) - { - printf("Usage: convertBinToHDF5 [datatype] [varName] [infile] [r1, r2, r3, ....]\n"); - printf("[datatype] options: -f float32\t-d float64\t-i32 int32\t-i64 int64\n"); - exit(0); - } - - - - strcpy(datatype, argv[1]); - strcpy(varName, argv[2]); - strcpy(infile, argv[3]); - - if(argc>=5) - r1 = atoi(argv[4]); //8 - if(argc>=6) - r2 = atoi(argv[5]); //8 - if(argc>=7) - r3 = atoi(argv[6]); //128 - if(argc>=8) - r4 = atoi(argv[7]); - if(argc>=9) - r5 = atoi(argv[8]); - - int dim = computeDimension(r5, r4, r3, r2, r1); - size_t nbEle = computeDataLength(r5, r4, r3, r2, r1); - - sprintf(outfile, "%s.h5", infile); - - /* Create a new file using default properties. */ - file_id = H5Fcreate(outfile, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); - - /* Create the data space for the dataset. */ - if(dim==1) - dims[0] = r1; - else if(dim==2) - { - dims[0] = r2; - dims[1] = r1; - } - else if(dim==3) - { - dims[0] = r3; - dims[1] = r2; - dims[2] = r1; - } - else - { - printf("Error: wrong dimension\n"); - exit(0); - } - dataspace_id = H5Screate_simple(dim, dims, NULL); - - /* Create the dataset. */ - sprintf(database, "/%s", varName); - - if(strcmp(datatype, "-f") == 0){ - - FILE *f; - f = fopen(infile, "rb"); - float *data = (float*)malloc(nbEle*sizeof(float)); - fread(data, sizeof(float), nbEle, f); - fclose(f); - - dataset_id = H5Dcreate2(file_id, database, H5T_IEEE_F32LE, dataspace_id, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - - status = H5Dwrite(dataset_id, H5T_IEEE_F32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, - data); - - hsize_t di_ms[H5S_MAX_RANK]; - int ndims; - ndims = H5Sget_simple_extent_dims(dataspace_id, di_ms, 0); - printf("NDIMS: %i\n", ndims); - - } - else if(strcmp(datatype, "-d") == 0){ - FILE *f; - f = fopen(infile, "rb"); - double *data = (double*)malloc(nbEle*sizeof(double)); - fread(data, sizeof(double), nbEle, f); - fclose(f); - - dataset_id = H5Dcreate2(file_id, database, H5T_IEEE_F64LE, dataspace_id, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - - status = H5Dwrite(dataset_id, H5T_IEEE_F64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, - data); - - } - else if(strcmp(datatype, "-i32") == 0){ - FILE *f; - f = fopen(infile, "rb"); - int *data = (int*)malloc(nbEle*sizeof(int)); - fread(data, sizeof(int), nbEle, f); - fclose(f); - - dataset_id = H5Dcreate2(file_id, database, H5T_STD_I32LE, dataspace_id, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - - status = H5Dwrite(dataset_id, H5T_STD_I32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, - data); - - } - else if(strcmp(datatype, "-i64") == 0){ - FILE *f; - f = fopen(infile, "rb"); - int64_t *data = (int64_t*)malloc(nbEle*sizeof(int64_t)); - fread(data, sizeof(int64_t), nbEle, f); - fclose(f); - - dataset_id = H5Dcreate2(file_id, database, H5T_STD_I64LE, dataspace_id, - H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); - - status = H5Dwrite(dataset_id, H5T_STD_I64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, - data); - - } - else{ - printf("Invalid datatype, use ./convertBinToHDF5 to see usage"); - exit(0); - } - - - /* End access to the dataset and release resources used by it. */ - status = H5Dclose(dataset_id); - - /* Terminate access to the data space. */ - status = H5Sclose(dataspace_id); - - /* Close the file. */ - status = H5Fclose(file_id); +int main(int argc, char *argv[]) { + hid_t file_id, dataset_id, dataspace_id; /* identifiers */ + hsize_t dims[3]; + herr_t status = 0; + size_t r1 = 0, r2 = 0, r3 = 0, r4 = 0, r5 = 0; + + char varName[100], infile[100], outfile[100], database[100]; + char datatype[100]; + + if (argc < 5) { + printf("Usage: convertBinToHDF5 [datatype] [varName] [infile] [r1, r2, r3, ....]\n"); + printf("[datatype] options: -f float32\t-d float64\t-i32 int32\t-i64 int64\n"); + exit(0); + } + + strcpy(datatype, argv[1]); + strcpy(varName, argv[2]); + strcpy(infile, argv[3]); + + if (argc >= 5) r1 = atoi(argv[4]); // 8 + if (argc >= 6) r2 = atoi(argv[5]); // 8 + if (argc >= 7) r3 = atoi(argv[6]); // 128 + if (argc >= 8) r4 = atoi(argv[7]); + if (argc >= 9) r5 = atoi(argv[8]); + + int dim = computeDimension(r5, r4, r3, r2, r1); + size_t nbEle = computeDataLength(r5, r4, r3, r2, r1); + + snprintf(outfile, 100, "%s.h5", infile); + + /* Create a new file using default properties. */ + file_id = H5Fcreate(outfile, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + + /* Create the data space for the dataset. */ + if (dim == 1) + dims[0] = r1; + else if (dim == 2) { + dims[0] = r2; + dims[1] = r1; + } else if (dim == 3) { + dims[0] = r3; + dims[1] = r2; + dims[2] = r1; + } else { + printf("Error: wrong dimension\n"); + exit(0); + } + dataspace_id = H5Screate_simple(dim, dims, NULL); + + /* Create the dataset. */ + snprintf(database, 100, "/%s", varName); + + if (strcmp(datatype, "-f") == 0) { + FILE *f; + f = fopen(infile, "rb"); + auto *data = static_cast(malloc(nbEle * sizeof(float))); + fread(data, sizeof(float), nbEle, f); + fclose(f); + + dataset_id = H5Dcreate2(file_id, database, H5T_IEEE_F32LE, dataspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + + status = H5Dwrite(dataset_id, H5T_IEEE_F32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + + hsize_t di_ms[H5S_MAX_RANK]; + int ndims; + ndims = H5Sget_simple_extent_dims(dataspace_id, di_ms, NULL); + printf("NDIMS: %i\n", ndims); + free(data); + } else if (strcmp(datatype, "-d") == 0) { + FILE *f; + f = fopen(infile, "rb"); + double *data = static_cast(malloc(nbEle * sizeof(double))); + fread(data, sizeof(double), nbEle, f); + fclose(f); + + dataset_id = H5Dcreate2(file_id, database, H5T_IEEE_F64LE, dataspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + + status = H5Dwrite(dataset_id, H5T_IEEE_F64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + free(data); + } else if (strcmp(datatype, "-i32") == 0) { + FILE *f; + f = fopen(infile, "rb"); + int *data = static_cast(malloc(nbEle * sizeof(int))); + fread(data, sizeof(int), nbEle, f); + fclose(f); + + dataset_id = H5Dcreate2(file_id, database, H5T_STD_I32LE, dataspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + + status = H5Dwrite(dataset_id, H5T_STD_I32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + free(data); + } else if (strcmp(datatype, "-i64") == 0) { + FILE *f; + f = fopen(infile, "rb"); + int64_t *data = static_cast(malloc(nbEle * sizeof(int64_t))); + fread(data, sizeof(int64_t), nbEle, f); + fclose(f); + + dataset_id = H5Dcreate2(file_id, database, H5T_STD_I64LE, dataspace_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); + + status = H5Dwrite(dataset_id, H5T_STD_I64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + free(data); + } else { + printf("Invalid datatype, use ./convertBinToHDF5 to see usage"); + exit(0); + } + + if (status < 0) { + printf("Error: H5Dread < 0\n"); + exit(0); + } + /* End access to the dataset and release resources used by it. */ + status = H5Dclose(dataset_id); + + /* Terminate access to the data space. */ + status = H5Sclose(dataspace_id); + + /* Close the file. */ + status = H5Fclose(file_id); } diff --git a/lib/SZ3/tools/H5Z-SZ3/test/dsz3FromHDF5.cpp b/lib/SZ3/tools/H5Z-SZ3/test/dsz3FromHDF5.cpp index f6f1144b..3f2d8736 100644 --- a/lib/SZ3/tools/H5Z-SZ3/test/dsz3FromHDF5.cpp +++ b/lib/SZ3/tools/H5Z-SZ3/test/dsz3FromHDF5.cpp @@ -7,305 +7,277 @@ * See COPYRIGHT in top-level directory. */ -#include -#include -#include -#include -#include "hdf5.h" +// #include +#include +#include +#include + #include "H5Z_SZ3.hpp" +#include "hdf5.h" #define DATASET "testdata_compressed" -#define MAX_CHUNK_SIZE 4294967295 //2^32-1 - -int main(int argc, char * argv[]) -{ - int dimSize = 0; - size_t r5=0,r4=0,r3=0,r2=0,r1=0,nbEle = 0; - char hdf5FilePath[640], outputFilePath[640]; - hid_t file, dset, dcpl, space_id, dtype; /*Handles*/ - hid_t fid, sid, cpid, idsid; /*Output Handles*/ - H5Z_filter_t filter_id = 0; - herr_t status; - H5T_class_t type_class; - H5T_sign_t dsign; - H5T_order_t dorder; +#define MAX_CHUNK_SIZE 4294967295 // 2^32-1 - htri_t avail; - char filter_name[80]; - unsigned int flags = 0; - size_t nelmts = 0, dsize; - unsigned int values_out[7] = {0,0,0,0,0,0,0}; //at most 7 parameters +int main(int argc, char *argv[]) { + // int dimSize = 0; + // size_t r5 = 0, r4 = 0, r3 = 0, r2 = 0, r1 = 0; + size_t nbEle = 0; + char hdf5FilePath[640], outputFilePath[640]; + hid_t file, dset, dcpl, space_id, dtype; /*Handles*/ + hid_t fid, sid, cpid, idsid; /*Output Handles*/ + // H5Z_filter_t filter_id = 0; + herr_t status = 0; + H5T_class_t type_class; + H5T_sign_t dsign; + H5T_order_t dorder; - //hold dims - hsize_t dims[H5S_MAX_RANK], dims_used[5] = {0,0,0,0,0}; - int ndims, dim; + htri_t avail; + // char filter_name[80]; + // unsigned int flags = 0; + // size_t nelmts = 0; + size_t dsize; + // unsigned int values_out[7] = {0, 0, 0, 0, 0, 0, 0}; //at most 7 parameters + // hold dims + hsize_t dims[H5S_MAX_RANK], dims_used[5] = {0, 0, 0, 0, 0}; + int ndims, dim; - if(argc < 2) - { - printf("Test case: dszFromHDF5 [hdf5FilePath]\n"); - printf("Example 1: dszFromHDF5 testdata/x86/testfloat_8_8_128.dat.sz3.h5\n"); - printf("Example 2: dszFromHDF5 testdata/x86/testint32_8x8x8.dat.sz3.h5\n"); - exit(0); - } + if (argc < 2) { + printf("Test case: dszFromHDF5 [hdf5FilePath]\n"); + printf("Example 1: dszFromHDF5 testdata/x86/testfloat_8_8_128.dat.sz3.h5\n"); + printf("Example 2: dszFromHDF5 testdata/x86/testint32_8x8x8.dat.sz3.h5\n"); + exit(0); + } - sprintf(hdf5FilePath, "%s", argv[1]); - sprintf(outputFilePath, "%s.out.h5", hdf5FilePath); + snprintf(hdf5FilePath, 1024, "%s", argv[1]); + snprintf(outputFilePath, 1024, "%s.out.h5", hdf5FilePath); - /*Open the hdf5 file with SZ-compressed data*/ + /*Open the hdf5 file with SZ-compressed data*/ file = H5Fopen(hdf5FilePath, H5F_ACC_RDONLY, H5P_DEFAULT); dset = H5Dopen(file, DATASET, H5P_DEFAULT); - + /*Retrieve dataset creation property list.*/ dcpl = H5Dget_create_plist(dset); - + + herr_t ret = H5Zregister(H5PLget_plugin_info()); + if (ret < 0) { + printf("Error: H5Zregister < 0\n"); + exit(0); + } /*Check that filter is not registered with the library yet*/ - avail = H5Zfilter_avail(H5Z_FILTER_SZ3); - if(!avail) - printf("sz3 filter is not yet available after the H5Pget_filter call.\n"); - else - printf("sz3 filter is available.\n"); - - space_id = H5Dget_space(dset); - nbEle = H5Sget_simple_extent_npoints(space_id); - - if((dtype = H5Dget_type(dset)) < 0) - printf("Error: H5Dget_type(dset) < 0\n"); + avail = H5Zfilter_avail(H5Z_FILTER_SZ3); + if (!avail) + printf("sz3 filter is not yet available after the H5Pget_filter call.\n"); + else + printf("sz3 filter is available.\n"); + + space_id = H5Dget_space(dset); + nbEle = H5Sget_simple_extent_npoints(space_id); + + if ((dtype = H5Dget_type(dset)) < 0) printf("Error: H5Dget_type(dset) < 0\n"); + + /*Read the data using the default properties.*/ + printf("....Reading SZ3 compressed data .....................\n"); + + if ((type_class = H5Tget_class(dtype)) < 0) { + printf("Error: H5Tget_class<0\n"); + exit(0); + } + if (0 == (dsize = H5Tget_size(dtype))) { + printf("Error: H5Tget_size==0\n"); + exit(0); + } + + if ((dorder = H5Tget_order(dtype)) < 0) printf("Error: H5Tget_order<0\n"); + + // create output file /*Get Dimensions for writing*/ + + if (0 > (ndims = H5Sget_simple_extent_dims(space_id, dims, nullptr))) ERROR(H5Sget_simple_extent_dims); + + int ndims_used = 0; + for (int i = 0; i < ndims; i++) { + if (dims[i] <= 1) continue; + dims_used[ndims_used] = dims[i]; + ndims_used++; + } - /*Read the data using the default properties.*/ - printf("....Reading SZ3 compressed data .....................\n"); + dim = ndims_used; - if((type_class = H5Tget_class(dtype)) < 0) - { - printf("Error: H5Tget_class<0\n"); - exit(0); - } - if (0 == (dsize = H5Tget_size(dtype))) - { - printf("Error: H5Tget_size==0\n"); - exit(0); - } - - if((dorder = H5Tget_order(dtype)) < 0) - printf("Error: H5Tget_order<0\n"); - - //create output file /*Get Dimensions for writing*/ - - - if (0 > (ndims = H5Sget_simple_extent_dims(space_id, dims, 0))) ERROR(H5Sget_simple_extent_dims); - - int ndims_used = 0; - for(int i = 0; i < ndims; i++){ - if(dims[i] <= 1) continue; - dims_used[ndims_used] = dims[i]; - ndims_used++; - } - - dim = ndims_used; - + /* create HDF5 file */ + if (0 > (fid = H5Fcreate(outputFilePath, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT))) ERROR(H5Fcreate); - /* create HDF5 file */ - if (0 > (fid = H5Fcreate(outputFilePath, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT))) ERROR(H5Fcreate); + /*Create dataspace. Setting maximum size */ + if (0 > (sid = H5Screate_simple(dim, dims, NULL))) ERROR(H5Screate_simple); - /*Create dataspace. Setting maximum size */ - if (0 > (sid = H5Screate_simple(dim, dims, NULL))) ERROR(H5Screate_simple); + /* setup dataset creation properties */ + if (0 > (cpid = H5Pcreate(H5P_DATASET_CREATE))) ERROR(H5Pcreate); - /* setup dataset creation properties */ - if (0 > (cpid = H5Pcreate(H5P_DATASET_CREATE))) ERROR(H5Pcreate); + switch (type_class) { + case H5T_FLOAT: + if (H5Tequal(dtype, H5T_IEEE_F32BE) == 1 || H5Tequal(dtype, H5T_IEEE_F32LE) == 1 || + H5Tequal(dtype, H5T_NATIVE_FLOAT) == 1) { + printf("data type: float\n"); + float *data = static_cast(malloc(sizeof(float) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_IEEE_F32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else // H5T_ORDER_BE + status = H5Dread(dset, H5T_IEEE_F32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + /*Print the first 20 data values to check the correctness.*/ + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%f ", data[i]); + printf("\n"); + // write out file data + if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_IEEE_F32LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) + ERROR(H5Dcreate); + if (0 > H5Dwrite(idsid, H5T_IEEE_F32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) ERROR(H5Dwrite); + if (0 > H5Dclose(idsid)) ERROR(H5Dclose); - switch (type_class) - { - case H5T_FLOAT: - if (H5Tequal(dtype, H5T_IEEE_F32BE) == 1 || H5Tequal(dtype, H5T_IEEE_F32LE) == 1 - || H5Tequal(dtype, H5T_NATIVE_FLOAT) == 1) - { - printf("data type: float\n"); - float* data = (float*)malloc(sizeof(float)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_IEEE_F32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else //H5T_ORDER_BE - status = H5Dread(dset, H5T_IEEE_F32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - /*Print the first 20 data values to check the correctness.*/ - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%f ", data[i]); - printf("\n"); - - //write out file data - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_IEEE_F32LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) ERROR(H5Dcreate); - if (0 > H5Dwrite(idsid, H5T_IEEE_F32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) ERROR(H5Dwrite); - if (0 > H5Dclose(idsid)) ERROR(H5Dclose); + free(data); + } else // 64bit: double + { + printf("data type: double\n"); + double *data = static_cast(malloc(sizeof(double) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_IEEE_F64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_IEEE_F64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + /*Print the first 10 data values to check the correctness.*/ + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%f ", data[i]); + printf("\n"); + free(data); + } + break; + case H5T_INTEGER: + if (0 > (dsign = H5Tget_sign(dtype))) { + printf("Error in calling H5Tget_sign(type_id)....\n"); + exit(0); + } + if (dsign == H5T_SGN_NONE) // unsigned + { + if (dsize == 1) { + printf("data type: unsigned char\n"); + unsigned char *data = static_cast(malloc(sizeof(unsigned char) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_STD_U8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_STD_U8BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%d ", data[i]); + printf("\n"); + free(data); + } else if (dsize == 2) { + printf("data type: unsigned short\n"); + unsigned short *data = static_cast(malloc(sizeof(unsigned short) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_STD_U16LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_STD_U16BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%d ", data[i]); + printf("\n"); + free(data); + } else if (dsize == 4) { + printf("data type: unsigned int\n"); + unsigned int *data = static_cast(malloc(sizeof(unsigned int) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_STD_U32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_STD_U32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%d ", data[i]); + printf("\n"); + free(data); + } else if (dsize == 8) { + printf("data type: unsigned long\n"); + uint64_t *data = static_cast(malloc(sizeof(uint64_t) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_STD_U64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_STD_U64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%llu ", data[i]); + printf("\n"); + free(data); + } + } else { + if (dsize == 1) { + printf("data type: char\n"); + char *data = static_cast(malloc(sizeof(char) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_STD_I8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_STD_I8BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%d ", data[i]); + printf("\n"); + free(data); + } else if (dsize == 2) { + printf("data type: short\n"); + short *data = static_cast(malloc(sizeof(short) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_STD_I16LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_STD_I16BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%d ", data[i]); + printf("\n"); + free(data); + } else if (dsize == 4) { + printf("data type: int\n"); + int *data = static_cast(malloc(sizeof(int) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_STD_I32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_STD_I32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%d ", data[i]); + printf("\n"); + free(data); + } else if (dsize == 8) { + printf("data type: long\n"); + int64_t *data = static_cast(malloc(sizeof(int64_t) * nbEle)); + if (dorder == H5T_ORDER_LE) + status = H5Dread(dset, H5T_STD_I64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + else + status = H5Dread(dset, H5T_STD_I64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); + int i; + printf("reconstructed data = "); + for (i = 0; i < 20; i++) printf("%lld ", data[i]); + printf("\n"); + free(data); + } + } + break; + default: + printf("Error: H5Z-SZ3 supports only float, double or integers.\n"); + exit(1); + } - free(data); - } - else //64bit: double - { - printf("data type: double\n"); - double* data = (double*)malloc(sizeof(double)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_IEEE_F64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_IEEE_F64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - /*Print the first 10 data values to check the correctness.*/ - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%f ", data[i]); - printf("\n"); - free(data); - } - break; - case H5T_INTEGER: - if (0 > (dsign = H5Tget_sign(dtype))) - { - printf("Error in calling H5Tget_sign(type_id)....\n"); - exit(0); - } - if(dsign == H5T_SGN_NONE) //unsigned - { - if(dsize==1) - { - printf("data type: unsigned char\n"); - unsigned char* data = (unsigned char*)malloc(sizeof(unsigned char)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_STD_U8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_STD_U8BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("\n"); - free(data); - } - else if(dsize==2) - { - printf("data type: unsigned short\n"); - unsigned short* data = (unsigned short*)malloc(sizeof(unsigned short)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_STD_U16LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_STD_U16BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("\n"); - free(data); - } - else if(dsize==4) - { - printf("data type: unsigned int\n"); - unsigned int* data = (unsigned int*)malloc(sizeof(unsigned int)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_STD_U32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_STD_U32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("\n"); - free(data); - } - else if(dsize==8) - { - printf("data type: unsigned long\n"); - uint64_t* data = (uint64_t*)malloc(sizeof(uint64_t)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_STD_U64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_STD_U64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%ld ", data[i]); - printf("\n"); - free(data); - } - } - else - { - if(dsize==1) - { - printf("data type: char\n"); - char *data = (char*)malloc(sizeof(char)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_STD_I8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_STD_I8BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("\n"); - free(data); - } - else if(dsize==2) - { - printf("data type: short\n"); - short *data = (short*)malloc(sizeof(short)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_STD_I16LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_STD_I16BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("\n"); - free(data); - } - else if(dsize==4) - { - printf("data type: int\n"); - int *data = (int*)malloc(sizeof(int)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_STD_I32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_STD_I32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("\n"); - free(data); - } - else if(dsize==8) - { - printf("data type: long\n"); - int64_t *data = (int64_t*)malloc(sizeof(int64_t)*nbEle); - if(dorder==H5T_ORDER_LE) - status = H5Dread(dset, H5T_STD_I64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - else - status = H5Dread(dset, H5T_STD_I64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data); - int i; - printf("reconstructed data = "); - for(i=0;i<20;i++) - printf("%ld ", data[i]); - printf("\n"); - free(data); - } - } - - break; - default: - printf("Error: H5Z-SZ3 supports only float, double or integers.\n"); - exit(1); - } + if (status < 0) { + printf("Error: H5Dread < 0\n"); + exit(0); + } + // Close reading resources + status = H5Pclose(dcpl); + status = H5Dclose(dset); + status = H5Fclose(file); - //Close reading resources - status = H5Pclose(dcpl); - status = H5Dclose(dset); - status = H5Fclose(file); + /*Close and release writing resources*/ + if (0 > H5Sclose(sid)) ERROR(H5Sclose); + if (0 > H5Pclose(cpid)) ERROR(H5Pclose); + if (0 > H5Fclose(fid)) ERROR(H5Fclose); - /*Close and release writing resources*/ - if (0 > H5Sclose(sid)) ERROR(H5Sclose); - if (0 > H5Pclose(cpid)) ERROR(H5Pclose); - if (0 > H5Fclose(fid)) ERROR(H5Fclose); - - return 0; + return 0; } diff --git a/lib/SZ3/tools/H5Z-SZ3/test/h5repack.sh b/lib/SZ3/tools/H5Z-SZ3/test/h5repack.sh new file mode 100755 index 00000000..24fead4a --- /dev/null +++ b/lib/SZ3/tools/H5Z-SZ3/test/h5repack.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +if [[ $# != 3 ]] +then + echo "Usage: $0 [SZ3 config file][inputf_hdf5_ile] [output_hdf5_file]" + echo "Example: $0 sz3.conf testfloat_8_8_128.h5 testfloat_8_8_128_sz.h5" + exit +fi + +configFile=$1 +inputFile=$2 +outputFile=$3 +script_dir="$(dirname "$(readlink -f "$0")")" + +repackArgs=$("${script_dir}/print_h5repack_args" -c "$configFile") +echo $repackArgs + +echo "Executing h5repack-shared with the following parameters: $repackArgs $inputFile $outputFile" +h5repack-shared $repackArgs $inputFile $outputFile \ No newline at end of file diff --git a/lib/SZ3/tools/H5Z-SZ3/test/print_h5repack_args.cpp b/lib/SZ3/tools/H5Z-SZ3/test/print_h5repack_args.cpp index 3549df2b..72088820 100644 --- a/lib/SZ3/tools/H5Z-SZ3/test/print_h5repack_args.cpp +++ b/lib/SZ3/tools/H5Z-SZ3/test/print_h5repack_args.cpp @@ -1,219 +1,57 @@ +#include #include #include -#include -#include -#include -#define ABS 0 -#define REL 1 -#define NORM2 2 -#define PSNR 3 - - -#define LITTLE_ENDIAN_SYSTEM 0 -#define BIG_ENDIAN_SYSTEM 1 -#define LITTLE_ENDIAN_DATA 0 -#define BIG_ENDIAN_DATA 1 - - -int sysEndianType = LITTLE_ENDIAN_SYSTEM; -int dataEndianType = LITTLE_ENDIAN_DATA; - -typedef union ldouble -{ - double value; - uint64_t lvalue; - unsigned char byte[8]; -} ldouble; - -ldouble buf; - -void usage() -{ - printf("Usage: print_h5repack_args \n"); - printf("Options:\n"); - printf(" -M : 10 options as follows. \n"); - printf(" ABS (absolute error bound)\n"); - printf(" REL (value range based error bound, so a.k.a., VR_REL)\n"); - printf(" PSNR (peak signal-to-noise ratio)\n"); - printf(" NORM2 (norm2)\n"); - printf(" -A : specifying absolute error bound\n"); - printf(" -R : specifying relative error bound\n"); - printf(" -N : specifying norm2 error bound\n"); - printf(" -S : specifying PSNR\n"); - printf("* examples: \n"); - printf(" print_h5repack_args -M ABS -A 1E-3 (output: -f UD=32024,0,9,0,1062232653,3539053052,0,0,0,0,0,0)\n"); - printf(" print_h5repack_args -M REL -R 1E-4 (output: -f UD=32024,0,9,1,0,0,1058682594,3944497965,0,0,0,0)\n"); - exit(0); -} - -int bytesToInt32_bigEndian(unsigned char* bytes) -{ - int temp = 0; - int res = 0; - - res <<= 8; - temp = bytes[0] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[1] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[2] & 0xff; - res |= temp; - - res <<= 8; - temp = bytes[3] & 0xff; - res |= temp; - - return res; -} - -void symTransform_8bytes(unsigned char data[8]) -{ - unsigned char tmp = data[0]; - data[0] = data[7]; - data[7] = tmp; - - tmp = data[1]; - data[1] = data[6]; - data[6] = tmp; - - tmp = data[2]; - data[2] = data[5]; - data[5] = tmp; - - tmp = data[3]; - data[3] = data[4]; - data[4] = tmp; +#include "SZ3/utils/ByteUtil.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/FileUtil.hpp" + +inline void usage() { + printf("Usage: print_h5repack_args \n"); + printf("Options:\n"); + printf(" -c config file path\n"); + printf("* examples: \n"); + printf( + " print_h5repack_args -c sz3.conf (output: -f " + "UD=32024,0,11,4077060608,16843009,0,33554432,4054449152,1348619730,16818239,257,2147483904,2147483648," + "16777216)\n"); + exit(0); } -void doubleToBytes(unsigned char *b, double num) -{ - ldouble buf; - buf.value = num; - memcpy(b, buf.byte, 8); - if(sysEndianType==LITTLE_ENDIAN_SYSTEM) - symTransform_8bytes(b); -} - -int main(int argc, char* argv[]) -{ - char* errBoundMode = NULL; - char* absErrorBound = NULL; - char* relErrorBound = NULL; - char* norm2ErrorBound = NULL; - char* psnr_ = NULL; - - if(argc==1) - usage(); - - int i = 0; - - for(i=1;i cd_values(std::ceil(conf.size_est() / 1.0 / sizeof(int)), 0); + auto buffer = reinterpret_cast(cd_values.data()); + auto confSizeReal = conf.save(buffer); + + int cd_nelmts = std::ceil(confSizeReal / 1.0 / sizeof(int)); + // conf.print(); + if (cd_nelmts >= 20) { + printf("h5repack can only take 20 cd_values, but got %d\n cd_values in SZ3", cd_nelmts); + return 0; + } + printf("-f UD=32024,0,%d", cd_nelmts); + for (int i = 0; i < cd_nelmts; i++) { + printf(",%u", cd_values[i]); + } + printf("\n"); } diff --git a/lib/SZ3/tools/H5Z-SZ3/test/sz3ToHDF5.cpp b/lib/SZ3/tools/H5Z-SZ3/test/sz3ToHDF5.cpp index ffd4d005..93b9eebb 100644 --- a/lib/SZ3/tools/H5Z-SZ3/test/sz3ToHDF5.cpp +++ b/lib/SZ3/tools/H5Z-SZ3/test/sz3ToHDF5.cpp @@ -7,415 +7,222 @@ * See COPYRIGHT in top-level directory. */ -#include -#include -#include -#include + +#include +#include +#include +#include + #include "hdf5.h" +// #include "H5Cpp.h" #include "H5Z_SZ3.hpp" +#include "SZ3/utils/Config.hpp" #include "SZ3/utils/FileUtil.hpp" +#define LITTLE_ENDIAN_SYSTEM 0 +#define BIG_ENDIAN_SYSTEM 1 +#define LITTLE_ENDIAN_DATA 0 +#define BIG_ENDIAN_DATA 1 int sysEndianType = LITTLE_ENDIAN_SYSTEM; int dataEndianType = LITTLE_ENDIAN_DATA; #define DATASET "testdata_compressed" +int MAX_CHUNK_SIZE = INT_MAX; -using namespace SZ; +// detect sys endian type +inline void detectSysEndianType() { + // get sys endian type + int x_temp = 1; + char *y_temp = reinterpret_cast(&x_temp); -int main(int argc, char * argv[]) -{ + if (*y_temp == 1) + sysEndianType = LITTLE_ENDIAN_SYSTEM; + else //=0 + sysEndianType = BIG_ENDIAN_SYSTEM; +} - //(void) helper fn to detect system endian type - //detectSysEndianType(); - //by default sysEndianType and dataEndianType are little endian, can set them manually here - //dataEndianType = BIG_ENDIAN_DATA; - - size_t r5=0,r4=0,r3=0,r2=0,r1=0; - int cmp_algo, interp_algo; //select compression and interpolation for SZ3 - char outDir[640], oriFilePath[640], outputFilePath[640]; - size_t cd_nelmts, nbEle; - unsigned int *cd_values = NULL; - //unsigned int cd_values[7]; +template +void process_data(const SZ3::Config &conf, const char *oriFilePath, int dataEndianType, hid_t fid, hid_t sid, + hid_t cpid, const char *datasetName, hid_t h5TypeLE, hid_t h5TypeBE) { + T *data = new T[conf.num]; + SZ3::readfile(oriFilePath, conf.num, data); - herr_t status; - htri_t avail; - unsigned filter_config; + std::cout << "original data = "; + for (int i = 0; i < 20; ++i) std::cout << data[i] << " "; + std::cout << "....\n"; - hid_t sid, idsid, cpid, fid; + hid_t dataset; + hid_t h5Type = (dataEndianType == LITTLE_ENDIAN_DATA) ? h5TypeLE : h5TypeBE; - if(argc < 3) - { + if ((dataset = H5Dcreate(fid, datasetName, h5Type, sid, H5P_DEFAULT, cpid, H5P_DEFAULT)) < 0) { + std::cerr << "Error in H5Dcreate\n"; + delete[] data; + exit(EXIT_FAILURE); + } + if (H5Dwrite(dataset, h5Type, H5S_ALL, H5S_ALL, H5P_DEFAULT, data) < 0) { + std::cerr << "Error in H5Dwrite\n"; + delete[] data; + exit(EXIT_FAILURE); + } + + delete[] data; + if (H5Dclose(dataset) < 0) { + std::cerr << "Error in H5Dclose\n"; + exit(EXIT_FAILURE); + } +} + +int main(int argc, char *argv[]) { + char oriFilePath[640], outputFilePath[640]; + + if (argc < 3) { printf("Test case: sz3ToHDF5 [dataType] [srcFilePath] [dimension sizes...]\n"); printf("Example1 : sz3ToHDF5 -f testdata/x86/testfloat_8_8_128.dat 8 8 128\n"); printf("Example 2: sz3ToHDF5 -i32 testdata/x86/testint32_8x8x8.dat 8 8 8\n"); exit(0); } - //printf("config file = %s\n", argv[2]); + std::map dataTypeMap = { + {"-f", SZ_FLOAT}, {"-d", SZ_DOUBLE}, {"-i8", SZ_INT8}, {"-u8", SZ_UINT8}, {"-i16", SZ_INT16}, + {"-u16", SZ_UINT16}, {"-i32", SZ_INT32}, {"-u32", SZ_UINT32}, {"-i64", SZ_INT64}, {"-u64", SZ_UINT64}}; int dataType = 0; - if(strcmp(argv[1],"-f")==0) - dataType = SZ_FLOAT; - else if(strcmp(argv[1], "-d")==0) - dataType = SZ_DOUBLE; - else if(strcmp(argv[1], "-i8")==0) - dataType = SZ_INT8; - else if(strcmp(argv[1], "-u8")==0) - dataType = SZ_UINT8; - else if(strcmp(argv[1], "-i16")==0) - dataType = SZ_INT16; - else if(strcmp(argv[1], "-u16")==0) - dataType = SZ_UINT16; - else if(strcmp(argv[1], "-i32")==0) - dataType = SZ_INT32; - else if(strcmp(argv[1], "-u32")==0) - dataType = SZ_UINT32; - else if(strcmp(argv[1], "-i64")==0) - dataType = SZ_INT64; - else if(strcmp(argv[1], "-u64")==0) - dataType = SZ_UINT64; - else - { - printf("Error: unknown data type in sz3ToHDF5.c!\n"); - exit(0); + auto it = dataTypeMap.find(argv[1]); + if (it != dataTypeMap.end()) { + dataType = it->second; + } else { + std::cerr << "Error: unknown data type in sz3ToHDF5.c!\n"; + return 0; } - printf("DTYPE: %i", dataType); - sprintf(oriFilePath, "%s", argv[2]); - if(argc>=4) { - r1 = atoi(argv[3]); //8 - } - if(argc>=5) { - r2 = atoi(argv[4]); //8 - } - if(argc>=6) { - r3 = atoi(argv[5]); //128 - } - if(argc>=7) { - r4 = atoi(argv[6]); - } - if(argc>=8) { - r5 = atoi(argv[7]); - } - - //read in compression and interp algo - //for testing set these here as defaults in config - cmp_algo = 1; - interp_algo = 1; - - //printf("cfgFile=%s\n", cfgFile); - sprintf(outputFilePath, "%s.sz3.h5", oriFilePath); - -// printf("argv[1]=%s, dataType=%d\n", argv[1], dataType); - nbEle = computeDataLength(r5, r4, r3, r2, r1); + snprintf(oriFilePath, 640, "%s", argv[2]); -// printf("nbEle=%u\n", nbEle); - - //Create cd_values - printf("Dimension sizes: n5=%u, n4=%u, n3=%u, n2=%u, n1=%u\n", r5, r4, r3, r2, r1); - int mode = 1; //0: ABS, 1: REL, ... - SZ_errConfigToCdArray(&cd_nelmts, &cd_values, mode, 0.001, 0.001, 0, 0); //SZ_FLOAT or SZ_DOUBLE or SZ_INT 100x500x500 : 0, 0, 100, 500, 500, ABS, REL (0.01, 0.01*(max-min), PW_REL (0.01, 5, 6, 7, 8, 9 --> 5*0.01, 6*0.01, ...), PSNR (mean squared error)). - //load_conffile_flag = 0; - // REL - //SZ_metaDataErrToCdArray(&cd_nelmts, &cd_values, dataType, r5, r4, r3, r2, r1, 1, 0.01, 0.01, 0, 0); //SZ_FLOAT or SZ_DOUBLE or SZ_INT 100x500x500 : 0, 0, 100, 500, 500, ABS, REL (0.01, 0.01*(max-min), PW_REL (0.01, 5, 6, 7, 8, 9 --> 5*0.01, 6*0.01, ...), PSNR (mean squared error)). - /*cd_nelmts = 5; - cd_values[0] = 3; - cd_values[1] = 0; - cd_values[2] = 128; - cd_values[3] = 8; - cd_values[4] = 8; - cd_values[5] = 0; - cd_values[6] = 0;*/ - - int i = 0; -// for(i=0;i dimensions; + for (int i = 3; i < argc && i < 8; ++i) { + dimensions.push_back(std::atoi(argv[i])); + } + std::reverse(dimensions.begin(), dimensions.end()); // slowest to fastest - hsize_t dims[5] = {0,0,0,0,0}, chunk[5] = {0,0,0,0,0}; - init_dims_chunk(dim, dims, chunk, nbEle, r5, r4, r3, r2, r1); + snprintf(outputFilePath, 640, "%s.sz3.h5", oriFilePath); + hid_t sid, cpid, fid; /* create HDF5 file */ - if (0 > (fid = H5Fcreate(outputFilePath, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT))) { printf("Error in H5Pcreate"); exit(0); } - - /*Create dataspace. Setting maximum size */ - if (0 > (sid = H5Screate_simple(dim, dims, NULL))) { printf("Error in H5Screate_simple"); exit(0); } - - /* setup dataset creation properties */ - if (0 > (cpid = H5Pcreate(H5P_DATASET_CREATE))) { printf("Error in H5Pcreate"); exit(0); } - - /* Add the SZ compression filter and set the chunk size */ - if (0 > H5Pset_filter(cpid, H5Z_FILTER_SZ3, H5Z_FLAG_MANDATORY, cd_nelmts, cd_values)) { printf("Error in H5Pcreate"); exit(0); } - avail = H5Zfilter_avail(H5Z_FILTER_SZ3); - if(avail) - { - status = H5Zget_filter_info(H5Z_FILTER_SZ3, &filter_config); - - if(filter_config & H5Z_FILTER_CONFIG_ENCODE_ENABLED) - printf("sz filter is available for encoding and decoding.\n"); + if (0 > (fid = H5Fcreate(outputFilePath, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT))) { + printf("Error in H5Pcreate"); + exit(0); } - if (0 > H5Pset_chunk(cpid, dim, chunk)) { printf("Error in H5Pcreate"); exit(0); } - - //Initialize the configuration for SZ - //You can also use the global variable conf_params to set the configuration for sz without cfgFile. - //Example of setting an absolute error bound: - // sz_params* params = H5Z_SZ_Init_Default(); - // params->errorBoundMode = ABS; - // params->absErrBound = 1E-4; - //H5Z_SZ_Init(cfgFile); + // set up SZ configuration + SZ3::Config conf; + // use config.loadcfg("path_to_sz3_conf") to load configuration from a file if needed + // setting up data related attributes (data type, dims, etc.) is not necessary, as they will be updated in + // H5Z_sz3_set_local automatically + conf.setDims(dimensions.begin(), dimensions.end()); + // Set compression related attributes here + // conf.cmprAlgo = SZ3::ALGO_BIOMD; - printf("....Writing SZ compressed data.............\n"); - - if(dataType == SZ_FLOAT) - { - float *data = new float[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%f ", data[i]); - printf("....\n"); - - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_IEEE_F32LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_IEEE_F32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_IEEE_F32BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_IEEE_F32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); }; + std::vector hdims(conf.dims.begin(), conf.dims.end()); + /*Create dataspace. Setting maximum size */ + if (0 > (sid = H5Screate_simple(conf.N, hdims.data(), NULL))) { + printf("Error in H5Screate_simple"); + exit(0); } - else if(dataType == SZ_DOUBLE) - { - double *data = new double[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%f ", data[i]); - printf("....\n"); - - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_IEEE_F64LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_IEEE_F64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_IEEE_F64BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_IEEE_F64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); }; + /* setup dataset creation properties */ + if (0 > (cpid = H5Pcreate(H5P_DATASET_CREATE))) { + printf("Error in H5Pcreate"); + exit(0); } - else if(dataType == SZ_INT8) - { - int8_t *data = new int8_t[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("....\n"); - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_I8LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_I8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_I8BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_I8BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); } - } - else if(dataType == SZ_UINT8) - { - uint8_t *data = new uint8_t[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("....\n"); + set_SZ3_conf_to_H5(cpid, conf); - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_U8LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_U8LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_U8BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_U8BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); } + if (0 > H5Zregister(H5PLget_plugin_info())) { + printf("Error in H5Zregister"); + exit(0); } - else if(dataType == SZ_INT16) - { - - int16_t *data = new int16_t[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("....\n"); - - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_I16LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_I16LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_I16BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_I16BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); } + if (H5Zfilter_avail(H5Z_FILTER_SZ3)) { + unsigned filter_config; + if (H5Zget_filter_info(H5Z_FILTER_SZ3, &filter_config) & H5Z_FILTER_CONFIG_ENCODE_ENABLED) + printf("sz filter is available for encoding and decoding.\n"); } - else if(dataType == SZ_UINT16) - { - uint16_t *data = new uint16_t[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("....\n"); - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_U16LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_U16LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_U16BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_U16BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); } + /* set the chunk size*/ + std::vector hchunk(hdims); + // hchunk[0] = 10; + if (0 > H5Pset_chunk(cpid, conf.N, hchunk.data())) { + printf("Error in H5Pcreate"); + exit(0); } - else if(dataType == SZ_INT32) - { - //printf("%i \t %i\n", sizeof(int), sizeof(int32_t)); - int32_t *data = new int32_t[nbEle]; - readfile(oriFilePath, nbEle, data); - printf("original data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("....\n"); - - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_I32LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_I32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_I32BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_I32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); } + { // This is an example to get/set SZ configuration from HDF5 file + SZ3::Config conf1; + get_SZ3_conf_from_H5(cpid, conf1); + // conf1.absErrorBound = 1; + set_SZ3_conf_to_H5(cpid, conf1); } - else if(dataType == SZ_UINT32) - { - uint32_t *data = new uint32_t[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%d ", data[i]); - printf("....\n"); + printf("....Writing SZ compressed data.............\n"); - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_U32LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_U32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_U32BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_U32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); } + switch (dataType) { + case SZ_FLOAT: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_IEEE_F32LE, + H5T_IEEE_F32BE); + break; + case SZ_DOUBLE: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_IEEE_F64LE, + H5T_IEEE_F64BE); + break; + case SZ_INT8: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_STD_I8LE, + H5T_STD_I8BE); + break; + case SZ_UINT8: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_STD_U8LE, + H5T_STD_U8BE); + break; + case SZ_INT16: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_STD_I16LE, + H5T_STD_I16BE); + break; + case SZ_UINT16: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_STD_U16LE, + H5T_STD_U16BE); + break; + case SZ_INT32: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_STD_I32LE, + H5T_STD_I32BE); + break; + case SZ_UINT32: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_STD_U32LE, + H5T_STD_U32BE); + break; + case SZ_INT64: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_STD_I64LE, + H5T_STD_I64BE); + break; + case SZ_UINT64: + process_data(conf, oriFilePath, dataEndianType, fid, sid, cpid, DATASET, H5T_STD_U64LE, + H5T_STD_U64BE); + break; + default: + std::cerr << "Error: Unknown data type\n"; + exit(EXIT_FAILURE); } - else if(dataType == SZ_INT64) - { - int64_t *data = new int64_t[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%ld ", data[i]); - printf("....\n"); - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_I64LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_I64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_I64BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_I64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); } + /*Close and release resources*/ + if (0 > H5Sclose(sid)) { + printf("Error in H5Sclose"); + exit(0); } - else if(dataType == SZ_UINT64) - { - uint64_t *data = new uint64_t[nbEle]; - readfile(oriFilePath, nbEle, data); - - printf("original data = "); - for(i=0;i<20;i++) - printf("%ld ", data[i]); - printf("....\n"); - - if(dataEndianType == LITTLE_ENDIAN_DATA) - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_U64LE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_U64LE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - else //BIG_ENDIAN_DATA - { - if (0 > (idsid = H5Dcreate(fid, DATASET, H5T_STD_U64BE, sid, H5P_DEFAULT, cpid, H5P_DEFAULT))) { printf("Error in H5Dcreate"); exit(0); } - if (0 > H5Dwrite(idsid, H5T_STD_U64BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, data)) { printf("Error in H5Dwrite"); exit(0); } - } - delete[] data; - if (0 > H5Dclose(idsid)) { printf("Error in H5Dclose"); exit(0); } + if (0 > H5Pclose(cpid)) { + printf("Error in H5Pclose"); + exit(0); } - else - { - printf("Error: unknown data type in sz3ToHDF5.cpp!\n"); + if (0 > H5Fclose(fid)) { + printf("Error in H5Fclose"); exit(0); } - - /*Close and release resources*/ - if (0 > H5Sclose(sid)) { printf("Error in H5Sclose"); exit(0); } - if (0 > H5Pclose(cpid)) { printf("Error in H5Pclose"); exit(0); } - if (0 > H5Fclose(fid)) { printf("Error in H5Fclose"); exit(0); } - free(cd_values); printf("Output hdf5 file: %s\n", outputFilePath); - herr_t ret = H5Zunregister(H5Z_FILTER_SZ3); - if (ret < 0) return -1; + if (H5Zunregister(H5Z_FILTER_SZ3) < 0) return -1; H5close(); return 0; } diff --git a/lib/SZ3/tools/mdz/README.md b/lib/SZ3/tools/mdz/README.md index f64dde6e..5b2921f6 100644 --- a/lib/SZ3/tools/mdz/README.md +++ b/lib/SZ3/tools/mdz/README.md @@ -17,10 +17,14 @@ You'll find all the executables in [INSTALL_DIR]/tools/mdz and header files in [ ## Testing Examples mdz datafile -2 dim1 dim2 -r reb buffer_size compressor + +mdz datafile -3 dim1 dim2 dim3 -r reb buffer_size compressor + #### options: * datafile: FP32 binary format. Contains single axis (X or Y or Z) only. * dim1: number of timesteps -* dim2: number of atoms +* dim2: number of atoms +* dim3: number of atom dimensions (x,y,z,etc.) * reb: relative error bound, for example, 1E-3 * buffer_size (optional): default 10 * compressor (optional): -1:ADP, 0: VQ, 1:VQT, 2:MT, 3: Lorenzo+Regression; @@ -28,4 +32,4 @@ mdz datafile -2 dim1 dim2 -r reb buffer_size compressor #### examples: * mdz helium-mode-b-7852x1037/x.f32.dat -2 7852 1037 -r 1E-3 * mdz helium-mode-b-7852x1037/x.f32.dat -2 7852 1037 -r 1E-3 10 -* mdz helium-mode-b-7852x1037/x.f32.dat -2 7852 1037 -r 1E-3 10 1 +* mdz helium-mode-b-7852x1037/xyz.f32.dat -3 7852 1037 3 -r 1E-3 10 diff --git a/lib/SZ3/tools/mdz/include/ExaaltCompressor.hpp b/lib/SZ3/tools/mdz/include/ExaaltCompressor.hpp deleted file mode 100644 index 8f6eda8d..00000000 --- a/lib/SZ3/tools/mdz/include/ExaaltCompressor.hpp +++ /dev/null @@ -1,226 +0,0 @@ -#ifndef _SZ_EXAALT_COMPRESSSOR_HPP -#define _SZ_EXAALT_COMPRESSSOR_HPP - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace SZ { - template - class SZ_Exaalt_Compressor { - public: - - - SZ_Exaalt_Compressor(const Config &conf, - Quantizer quantizer, - Encoder encoder, - Lossless lossless, - int timestep_op) : - quantizer(quantizer), encoder(encoder), lossless(lossless), - num_elements(conf.num), timestep_op(timestep_op) { - static_assert(std::is_base_of, Quantizer>::value, - "must implement the quatizer interface"); - static_assert(std::is_base_of, Encoder>::value, - "must implement the encoder interface"); - static_assert(std::is_base_of::value, - "must implement the lossless interface"); - assert(!(timestep_op > 0 && conf.dims.size() != 2) && - "timestep prediction requires 2d dataset"); - global_dimensions[0] = conf.dims[0]; - global_dimensions[1] = conf.dims[1]; - } - - void set_level(float level_start_, float level_offset_, int level_num_) { - this->level_start = level_start_; - this->level_offset = level_offset_; - this->level_num = level_num_ + 200; - } - - inline int quantize_to_level(T data) { - return round((data - level_start) / level_offset); - } - - inline T level(int l) { - return level_start + l * level_offset; - } - - // compress given the error bound - uchar *compress(T *data, size_t &compressed_size) { - - std::vector quant_inds(num_elements); - std::vector pred_inds(num_elements); - quantizer.precompress_data(); - -// Timer timer(true); - - auto l0 = quantize_to_level(data[0]); - pred_inds[0] = l0 + level_num; - quant_inds[0] = quantizer.quantize_and_overwrite(data[0], level(l0)); - - if (timestep_op == 0) { - for (size_t i = 1; i < num_elements; i++) { - auto l = quantize_to_level(data[i]); - pred_inds[i] = l - l0 + level_num; - quant_inds[i] = quantizer.quantize_and_overwrite(data[i], level(l)); - l0 = l; - } - } else { - - std::vector levels(global_dimensions[1]); - levels[0] = l0; - for (size_t i = 1; i < global_dimensions[1]; i++) { - levels[i] = quantize_to_level(data[i]); - pred_inds[i] = levels[i] - levels[i - 1] + level_num; - quant_inds[i] = quantizer.quantize_and_overwrite(data[i], level(levels[i])); - } - auto pred_idx = global_dimensions[1]; - if (timestep_op == 1) { - for (size_t i = 0; i < global_dimensions[1]; i++) { - for (size_t t = 1; t < global_dimensions[0]; t++) { - size_t idx = t * global_dimensions[1] + i; - quant_inds[pred_idx++] = quantizer.quantize_and_overwrite( - data[idx], data[(t - 1) * global_dimensions[1] + i]); - } - } - pred_inds.resize(global_dimensions[1]); - } else { - for (size_t i = 0; i < global_dimensions[1]; i++) { - l0 = levels[i]; - for (size_t t = 1; t < global_dimensions[0]; t++) { - size_t idx = t * global_dimensions[1] + i; - auto l = quantize_to_level(data[idx]); - pred_inds[pred_idx] = l - l0 + level_num; - quant_inds[pred_idx++] = quantizer.quantize_and_overwrite( - data[idx], level(l)); - l0 = l; - } - } - } - assert(pred_idx == num_elements); - } - -// timer.stop("Predition & Quantization"); - - quantizer.postcompress_data(); - - uchar *compressed_data; - compressed_data = new uchar[4 * num_elements * sizeof(T)]; - uchar *compressed_data_pos = compressed_data; - write(global_dimensions.data(), N, compressed_data_pos); - quantizer.save(compressed_data_pos); -// quantizer.print(); - - encoder.preprocess_encode(quant_inds, 4 * quantizer.get_radius()); - encoder.save(compressed_data_pos); - encoder.encode(quant_inds, compressed_data_pos); - encoder.postprocess_encode(); - -// std::cout << *std::min_element(pred_inds.begin(), pred_inds.end()) << std::endl; -// std::cout << *std::max_element(pred_inds.begin(), pred_inds.end()) << std::endl; - - encoder.preprocess_encode(pred_inds, level_num * 2 + 1); - encoder.save(compressed_data_pos); - encoder.encode(pred_inds, compressed_data_pos); - encoder.postprocess_encode(); - - uchar *lossless_data = lossless.compress(compressed_data, compressed_data_pos - compressed_data, - compressed_size); - lossless.postcompress_data(compressed_data); - return lossless_data; - } - - T *decompress(uchar const *lossless_compressed_data, const size_t length) { - size_t remaining_length = length; - auto compressed_data = lossless.decompress(lossless_compressed_data, remaining_length); - uchar const *compressed_data_pos = compressed_data; - read(global_dimensions.data(), N, compressed_data_pos, remaining_length); - num_elements = 1; - for (const auto &d: global_dimensions) { - num_elements *= d; - std::cout << d << " "; - } - std::cout << std::endl; - quantizer.load(compressed_data_pos, remaining_length); - encoder.load(compressed_data_pos, remaining_length); - auto quant_inds = encoder.decode(compressed_data_pos, num_elements); - encoder.postprocess_decode(); - - encoder.load(compressed_data_pos, remaining_length); - auto pred_inds_num = (timestep_op == 1) ? global_dimensions[1] : num_elements; - auto pred_inds = encoder.decode(compressed_data_pos, pred_inds_num); - encoder.postprocess_decode(); - - lossless.postdecompress_data(compressed_data); - - auto dec_data = new T[num_elements]; - - quantizer.predecompress_data(); - - auto l = pred_inds[0] - level_num; - dec_data[0] = quantizer.recover(level(l), quant_inds[0]); - - if (timestep_op == 0) { - for (size_t i = 1; i < num_elements; i++) { - l += pred_inds[i] - level_num; - dec_data[i] = quantizer.recover(level(l), quant_inds[i]); - } - } else { - std::vector levels(global_dimensions[1]); - levels[0] = l; - for (size_t i = 1; i < global_dimensions[1]; i++) { - l += pred_inds[i] - level_num; - dec_data[i] = quantizer.recover(level(l), quant_inds[i]); - levels[i] = l; - } - auto pred_idx = global_dimensions[1]; - if (timestep_op == 1) { - for (size_t i = 0; i < global_dimensions[1]; i++) { - for (size_t t = 1; t < global_dimensions[0]; t++) { - dec_data[t * global_dimensions[1] + i] = - quantizer.recover( - dec_data[(t - 1) * global_dimensions[1] + i], - quant_inds[pred_idx++]); - } - } - } else { - for (size_t i = 0; i < global_dimensions[1]; i++) { - l = levels[i]; - for (size_t t = 1; t < global_dimensions[0]; t++) { - size_t idx = t * global_dimensions[1] + i; - l += pred_inds[pred_idx] - level_num; - dec_data[idx] = quantizer.recover(level(l), quant_inds[pred_idx++]); - } - } - } - assert(pred_idx == num_elements); - } - - - quantizer.postdecompress_data(); - encoder.postprocess_decode(); - return dec_data; - } - - - private: - Quantizer quantizer; - Encoder encoder; - Lossless lossless; - size_t num_elements; - std::array global_dimensions; - float level_start; - float level_offset; - int level_num; - int timestep_op; - }; - - -} -#endif - diff --git a/lib/SZ3/tools/mdz/include/KmeansUtil.hpp b/lib/SZ3/tools/mdz/include/KmeansUtil.hpp deleted file mode 100644 index 8a405e6f..00000000 --- a/lib/SZ3/tools/mdz/include/KmeansUtil.hpp +++ /dev/null @@ -1,391 +0,0 @@ -// -// Created by Kai Zhao on 12/9/19. -// - -#ifndef _SZ_KMEANS_UTIL -#define _SZ_KMEANS_UTIL - -#include -#include -#include -#include -#include -#include -#include -#include -#include - - -namespace SZ { - -/* - * Internal implementation of the SMAWK algorithm. - */ - template - void _smawk( - const std::vector &rows, - const std::vector &cols, - const std::function &lookup, - std::vector *result) { - // Recursion base case - if (rows.size() == 0) return; - - // ******************************** - // * REDUCE - // ******************************** - - std::vector _cols; // Stack of surviving columns - for (size_t col : cols) { - while (true) { - if (_cols.size() == 0) break; - size_t row = rows[_cols.size() - 1]; - if (lookup(row, col) >= lookup(row, _cols.back())) - break; - _cols.pop_back(); - } - if (_cols.size() < rows.size()) - _cols.push_back(col); - } - - // Call recursively on odd-indexed rows - std::vector odd_rows; - for (size_t i = 1; i < rows.size(); i += 2) { - odd_rows.push_back(rows[i]); - } - _smawk(odd_rows, _cols, lookup, result); - - std::unordered_map col_idx_lookup; - for (size_t idx = 0; idx < _cols.size(); ++idx) { - col_idx_lookup[_cols[idx]] = idx; - } - - // ******************************** - // * INTERPOLATE - // ******************************** - - // Fill-in even-indexed rows - size_t start = 0; - for (size_t r = 0; r < rows.size(); r += 2) { - size_t row = rows[r]; - size_t stop = _cols.size() - 1; - if (r < rows.size() - 1) - stop = col_idx_lookup[(*result)[rows[r + 1]]]; - size_t argmin = _cols[start]; - T min = lookup(row, argmin); - for (size_t c = start + 1; c <= stop; ++c) { - T value = lookup(row, _cols[c]); - if (c == start || value < min) { - argmin = _cols[c]; - min = value; - } - } - (*result)[row] = argmin; - start = stop; - } - } - -/* - * Interface for the SMAWK algorithm, for finding the minimum value in each row - * of an implicitly-defined totally monotone matrix. - */ - template - std::vector smawk( - const size_t num_rows, - const size_t num_cols, - const std::function &lookup) { - std::vector result; - result.resize(num_rows); - std::vector rows(num_rows); - iota(begin(rows), end(rows), 0); - std::vector cols(num_cols); - iota(begin(cols), end(cols), 0); - _smawk(rows, cols, lookup, &result); - return result; - } - -/* - * Calculates cluster costs in O(1) using prefix sum arrays. - */ - template - class CostCalculator { - std::vector cumsum; - std::vector cumsum2; - - public: - CostCalculator(const std::vector
&vec, size_t n) { - cumsum.push_back(0.0); - cumsum2.push_back(0.0); - for (size_t i = 0; i < n; ++i) { - double x = vec[i]; - cumsum.push_back(x + cumsum[i]); - cumsum2.push_back(x * x + cumsum2[i]); - } - } - - double calc(size_t i, size_t j) { - if (j < i) return 0.0; - double mu = (cumsum[j + 1] - cumsum[i]) / (j - i + 1); - double result = cumsum2[j + 1] - cumsum2[i]; - result += (j - i + 1) * (mu * mu); - result -= (2 * mu) * (cumsum[j + 1] - cumsum[i]); - return result; - } - }; - - template - class Matrix { - std::vector data; - size_t num_rows; - size_t num_cols; - - public: - Matrix(size_t num_rows, size_t num_cols) { - this->num_rows = num_rows; - this->num_cols = num_cols; - data.resize(num_rows * num_cols); - } - - inline T get(size_t i, size_t j) { - return data[i * num_cols + j]; - } - - inline void set(size_t i, size_t j, T value) { - data[i * num_cols + j] = value; - } - }; - - template - void cluster( - DT *array, - size_t n, - int &k, - size_t *clusters, - DT *centroids) { - // *************************************************** - // * Sort input array and save info for de-sorting - // *************************************************** - - std::vector sort_idxs(n); - iota(sort_idxs.begin(), sort_idxs.end(), 0); - sort( - sort_idxs.begin(), - sort_idxs.end(), - [&array](size_t a, size_t b) { return array[a] < array[b]; }); -// vector undo_sort_lookup(n); - std::vector
sorted_array(n); - for (size_t i = 0; i < n; ++i) { - sorted_array[i] = array[sort_idxs[i]]; -// undo_sort_lookup[sort_idxs[i]] = i; - } - - // *************************************************** - // * Set D and T using dynamic programming algorithm - // *************************************************** - - // Algorithm as presented in section 2.2 of (Gronlund et al., 2017). - - CostCalculator
cost_calculator(sorted_array, n); - Matrix
D(k, n); - Matrix T(k, n); - - for (size_t i = 0; i < n; ++i) { - D.set(0, i, cost_calculator.calc(0, i)); - T.set(0, i, 0); - } - - double ratio_avg = 0; - bool findk = false; - size_t bestk = 0; - for (size_t k_ = 1; k_ < k; ++k_) { - auto C = [&D, &k_, &cost_calculator](size_t i, size_t j) -> DT { - size_t col = i < j - 1 ? i : j - 1; - return D.get(k_ - 1, col) + cost_calculator.calc(j, i); - }; - std::vector row_argmins = smawk
(n, n, C); - for (size_t i = 0; i < row_argmins.size(); ++i) { - size_t argmin = row_argmins[i]; - DT min = C(i, argmin); - D.set(k_, i, min); - T.set(k_, i, argmin); - } - float ratio = D.get(k_ - 1, n - 1) / D.get(k_, n - 1); - ratio_avg = (ratio_avg * (k_ - 1) + ratio) / (k_); -// std::cout << k_ + 1 << " , " << D.get(k_, n - 1) << " , " << ratio << " , " << ratio_avg << std::endl; - if (ratio / ratio_avg > 1.5) { - bestk = k_ + 1; - findk = true; - } else { - if (findk) { - break; - } - } - } - - if (!findk) { - return; - } - k = bestk; - std::cout << "# groups = " << k << std::endl; - - // *************************************************** - // * Extract cluster assignments by backtracking - // *************************************************** - - // Note: This step requires O(kn) memory usage due to saving the entire - // T matrix. However, it can be modified so that the memory usage is O(n). - // D and T would not need to be retained in full (D already doesn't need - // to be fully retained, although it currently is). - // Details are in section 3 of (Grønlund et al., 2017). - -// vector
sorted_clusters(n); - - size_t t = n; - size_t k_ = k - 1; - size_t n_ = n - 1; - // The do/while loop was used in place of: - // for (k_ = k - 1; k_ >= 0; --k_) - // to avoid wraparound of an unsigned type. - do { - size_t t_ = t; - t = T.get(k_, n_); - DT centroid = 0.0; - for (size_t i = t; i < t_; ++i) { -// sorted_clusters[i] = k_; - centroid += (sorted_array[i] - centroid) / (i - t + 1); - } - centroids[k_] = centroid; - k_ -= 1; - n_ = t - 1; - } while (t > 0); - - // *************************************************** - // * Order cluster assignments to match de-sorted - // * ordering - // *************************************************** - -// for (size_t i = 0; i < n; ++i) { -// clusters[i] = sorted_clusters[undo_sort_lookup[i]]; -// } - } - - template - int f(T data, double start_position, double offset) { - return round((data - start_position) / offset); - } - - template - int f1(T data, T *boundary, int n, double start_position, double offset) { - return round((data - start_position) / offset); - } - - template - int f2(T data, T *boundary, int n, double start_position, double offset) { - int low = 0, high = n; // numElems is the size of the array i.e arr.size() - while (low != high) { - int mid = (low + high) / 2; // Or a fancy way to avoid int overflow - if (boundary[mid] <= data) { - low = mid + 1; - } else { - high = mid; - } - } - return high; - } - - template - int f3(T data, T *boundary, int n, double start_position, double offset) { - for (int i = 1; i < n; i++) { - if (boundary[i] > data) { - return i - 1; - } - } - return n - 1; - } - - - template - void get_cluster(T *data, size_t num, float &level_start, float &level_offset, int &level_num, - size_t sample_num) { - T max = *std::max_element(data, data + num); - T min = *std::min_element(data, data + num); - SZ::Timer timer; - timer.start(); - std::vector sample; - if (num == sample_num) { - sample = std::vector(data, data + num); - } else { - sample.reserve(sample_num); - std::random_device rd; //Will be used to obtain a seed for the random number engine - std::mt19937 gen(rd()); //Standard mersenne_twister_engine seeded with rd() -// std::uniform_int_distribution<> dis(0, 2 * sample_rate); - size_t input_idx = 0; -// for (int i = 0; i < num / sample_rate; i++) { -// input_idx = (input_idx + dis(gen)) % num; -// std::cout << input_idx << " "; -// sample[i] = input[input_idx]; -// } -// std::cout << std::endl; - std::uniform_int_distribution<> dis2(0, num); - std::unordered_set sampledkeys; - printf("total_num=%lu, sample_num=%lu\n", num, sample_num); - for (size_t i = 0; i < sample_num; i++) { - do { - input_idx = dis2(gen); - } while (sampledkeys.find(input_idx) != sampledkeys.end()); -// std::cout << input_idx << " "; - sample[i] = data[input_idx]; - } -// std::cout << std::endl; - -// std::sample(input.begin(), input.end(), -// sample.begin(), -// num / sample_rate, -// std::mt19937{std::random_device{}()}); - } - - timer.stop("random sample"); -// sample = input; - std::vector idx(num); - - timer.start(); - int k = 150; - std::vector cents(k); - cluster(sample.data(), sample_num, k, idx.data(), cents.data()); -// cluster(input.get(), num, 16, idx.data(), cents.data()); - timer.stop("kmeans1d"); - if (k == 150) { - std::cout << "No clusters are found." << std::endl; - level_num = 0; - return; -// exit(0); - } - -// std::cout << "centers : "; -// for (size_t i = 0; i < k; i++) { -// std::cout << cents[i] << " "; -// } -// std::cout << std::endl; - -// std::cout << "center diff : "; -// for (size_t i = 1; i < k; i++) { -// std::cout << cents[i] - cents[i - 1] << " "; -// } -// std::cout << std::endl; - -// std::vector boundary(k); -// boundary[0] = std::numeric_limits::min(); -// for (size_t i = 1; i < k; i++) { -// boundary[i] = (cents[i - 1] + cents[i]) / 2; -// } - - level_offset = (cents[k - 1] - cents[0]) / (k - 1); - level_start = cents[0]; - for (size_t i = 1; i < k; i++) { - level_start += cents[i] - i * level_offset; - } - level_start /= k; - level_num = f(max, level_start, level_offset) + 1; - } -} - -#endif \ No newline at end of file diff --git a/lib/SZ3/tools/mdz/include/TimeBasedFrontend.hpp b/lib/SZ3/tools/mdz/include/TimeBasedFrontend.hpp deleted file mode 100644 index cbe5d0d3..00000000 --- a/lib/SZ3/tools/mdz/include/TimeBasedFrontend.hpp +++ /dev/null @@ -1,221 +0,0 @@ -#ifndef SZ_TIMEBASED_FRONTEND -#define SZ_TIMEBASED_FRONTEND - -#include -#include -#include -#include -#include -#include -#include -#include - -namespace SZ { - - - template - class TimeBasedFrontend : public concepts::FrontendInterface { - public: - - TimeBasedFrontend(const Config &conf, Predictor predictor, Quantizer quantizer, T *data_ts0) : - fallback_predictor(LorenzoPredictor(conf.absErrorBound)), - predictor(predictor), - quantizer(quantizer), - block_size(conf.blockSize), - stride(conf.stride), - num_elements(conf.num), - data_ts0(data_ts0) { - assert((conf.dims.size() == 2) && - "timestep prediction requires 2d dataset"); - global_dimensions[0] = conf.dims[0]; - global_dimensions[1] = conf.dims[1]; - } - - ~TimeBasedFrontend() = default; - - std::vector compress(T *data) { - std::vector quant_inds(num_elements); - size_t quant_count = 0; - if (data_ts0 != nullptr) { - for (size_t j = 0; j < global_dimensions[1]; j++) { - quant_inds[quant_count++] = quantizer.quantize_and_overwrite(data[j], data_ts0[j]); - } - } else { - std::array global_dims; - for (int i = 0; i < N - 1; i++) { - global_dims[i] = global_dimensions[i + 1]; - }; - - auto inter_block_range = std::make_shared>( - data, std::begin(global_dims), std::end(global_dims), stride, 0); - auto intra_block_range = std::make_shared>( - data, std::begin(global_dims), std::end(global_dims), 1, 0); - -// std::array intra_block_dims; - predictor.precompress_data(inter_block_range->begin()); - quantizer.precompress_data(); - auto inter_begin = inter_block_range->begin(); - auto inter_end = inter_block_range->end(); - for (auto block = inter_begin; block != inter_end; ++block) { - - intra_block_range->update_block_range(block, block_size); - -// // std::cout << *block << " " << lp.predict(block) << std::endl; -// for (int i = 0; i < intra_block_dims.size(); i++) { -// size_t cur_index = block.get_local_index(i); -// size_t dims = inter_block_range->get_dimensions(i); -// intra_block_dims[i] = (cur_index == dims - 1 && -// global_dims[i] - cur_index * stride < block_size) ? -// global_dims[i] - cur_index * stride : block_size; -// } -// -// intra_block_range->set_dimensions(intra_block_dims.begin(), intra_block_dims.end()); -// intra_block_range->set_offsets(block.get_offset()); -// intra_block_range->set_starting_position(block.get_local_index()); - concepts::PredictorInterface *predictor_withfallback = &predictor; - if (!predictor.precompress_block(intra_block_range)) { - predictor_withfallback = &fallback_predictor; - } - predictor_withfallback->precompress_block_commit(); -// quantizer.precompress_block(); - auto intra_begin = intra_block_range->begin(); - auto intra_end = intra_block_range->end(); - for (auto element = intra_begin; element != intra_end; ++element) { - quant_inds[quant_count++] = quantizer.quantize_and_overwrite( - *element, predictor_withfallback->predict(element)); - } - } - predictor.postcompress_data(inter_block_range->begin()); - } - for (size_t j = 0; j < global_dimensions[1]; j++) { - for (size_t i = 1; i < global_dimensions[0]; i++) { - size_t idx = i * global_dimensions[1] + j; - size_t idx_prev = (i - 1) * global_dimensions[1] + j; - quant_inds[quant_count++] = quantizer.quantize_and_overwrite(data[idx], data[idx_prev]); - } - } - assert(quant_count == num_elements); - quantizer.postcompress_data(); - return quant_inds; - } - - T *decompress(std::vector &quant_inds, T *dec_data) { - - int const *quant_inds_pos = (int const *) quant_inds.data(); - std::array intra_block_dims; -// auto dec_data = new T[num_elements]; - - if (data_ts0 != nullptr) { - for (size_t j = 0; j < global_dimensions[1]; j++) { - dec_data[j] = quantizer.recover(data_ts0[j], *(quant_inds_pos++)); - } - } else { - std::array global_dims; - for (int i = 0; i < N - 1; i++) { - global_dims[i] = global_dimensions[i + 1]; - }; - auto inter_block_range = std::make_shared>( - dec_data, std::begin(global_dims), std::end(global_dims), stride, 0); - - auto intra_block_range = std::make_shared>( - dec_data, std::begin(global_dims), std::end(global_dims), 1, 0); - - predictor.predecompress_data(inter_block_range->begin()); - quantizer.predecompress_data(); - - auto inter_begin = inter_block_range->begin(); - auto inter_end = inter_block_range->end(); - for (auto block = inter_begin; block != inter_end; block++) { - intra_block_range->update_block_range(block, block_size); -// for (int i = 0; i < intra_block_dims.size(); i++) { -// size_t cur_index = block.get_local_index(i); -// size_t dims = inter_block_range->get_dimensions(i); -// intra_block_dims[i] = (cur_index == dims - 1) ? global_dims[i] - cur_index * block_size -// : block_size; -// } -// intra_block_range->set_dimensions(intra_block_dims.begin(), intra_block_dims.end()); -// intra_block_range->set_offsets(block.get_offset()); -// intra_block_range->set_starting_position(block.get_local_index()); - - concepts::PredictorInterface *predictor_withfallback = &predictor; - if (!predictor.predecompress_block(intra_block_range)) { - predictor_withfallback = &fallback_predictor; - } - auto intra_begin = intra_block_range->begin(); - auto intra_end = intra_block_range->end(); - for (auto element = intra_begin; element != intra_end; ++element) { - *element = quantizer.recover(predictor_withfallback->predict(element), *(quant_inds_pos++)); - } - } - predictor.postdecompress_data(inter_block_range->begin()); - } - - for (size_t j = 0; j < global_dimensions[1]; j++) { - for (size_t i = 1; i < global_dimensions[0]; i++) { - size_t idx = i * global_dimensions[1] + j; - size_t idx_prev = (i - 1) * global_dimensions[1] + j; - dec_data[idx] = quantizer.recover(dec_data[idx_prev], *(quant_inds_pos++)); - } - } - - quantizer.postdecompress_data(); - return dec_data; - } - - void save(uchar *&c) { - write(global_dimensions.data(), N, c); - write(block_size, c); - - predictor.save(c); - quantizer.save(c); - } - - void load(const uchar *&c, size_t &remaining_length) { - read(global_dimensions.data(), N, c, remaining_length); - num_elements = 1; - for (const auto &d: global_dimensions) { - num_elements *= d; - std::cout << d << " "; - } - std::cout << std::endl; - read(block_size, c, remaining_length); - stride = block_size; - predictor.load(c, remaining_length); - quantizer.load(c, remaining_length); - } - - void print() { -// predictor.print(); -// quantizer.print(); - } - - void clear() { - predictor.clear(); - fallback_predictor.clear(); - quantizer.clear(); - } - - int get_radius() const { return quantizer.get_radius(); } - - size_t get_num_elements() const { return num_elements; }; - - size_t size_est() { return 0; }; - private: - Predictor predictor; - LorenzoPredictor fallback_predictor; - Quantizer quantizer; - uint block_size; - uint stride; - size_t num_elements; - std::array global_dimensions; - T *data_ts0 = nullptr; - }; - - template - TimeBasedFrontend - make_sz3_timebased_frontend(const Config &conf, Predictor predictor, Quantizer quantizer, T *data_ts0) { - return TimeBasedFrontend(conf, predictor, quantizer, data_ts0); - } -} - -#endif diff --git a/lib/SZ3/tools/mdz/include/mdz.hpp b/lib/SZ3/tools/mdz/include/mdz.hpp index 5d9dd5f7..ac9a8370 100644 --- a/lib/SZ3/tools/mdz/include/mdz.hpp +++ b/lib/SZ3/tools/mdz/include/mdz.hpp @@ -2,232 +2,240 @@ // Created by Kai Zhao on 7/1/21. // -#ifndef SZ_MDZ_H -#define SZ_MDZ_H +#ifndef SZ3_MDZ_H +#define SZ3_MDZ_H -#include -#include +#include +#include +#include +#include +#include +#include #include +#include #include -#include +#include #include -#include -#include -#include -#include -#include -#include -#include #include -#include "KmeansUtil.hpp" -#include "TimeBasedFrontend.hpp" -#include "ExaaltCompressor.hpp" +#include +#include +#include "SZ3/compressor/specialized/SZExaaltCompressor.hpp" +#include "SZ3/decomposition/TimeSeriesDecomposition.hpp" +#include "SZ3/utils/KmeansUtil.hpp" + +using namespace SZ3; double total_compress_time = 0; double total_decompress_time = 0; const char *compressor_names[] = {"VQ", "VQT", "MT", "LR", "TS"}; +template +std::shared_ptr> make_sz2(const Config &conf, Predictor predictor) { + return make_compressor_sz_iterate(conf, predictor, + LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2), + HuffmanEncoder(), Lossless_zstd()); + // return new SZGeneralCompressor>, + // HuffmanEncoder, Lossless_zstd>( + // SZGeneralFrontend>(conf, predictor, + // LinearQuantizer(conf.absErrorBound, + // conf.quantbinCnt / 2)), + // HuffmanEncoder(), + // Lossless_zstd()); +} -template -SZ::concepts::CompressorInterface * -make_sz_timebased2(const SZ::Config &conf, Predictor predictor, T *data_ts0) { - return new SZ::SZGeneralCompressor>, - SZ::HuffmanEncoder, SZ::Lossless_zstd>( - SZ::TimeBasedFrontend>(conf, predictor, - SZ::LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2), - data_ts0), - SZ::HuffmanEncoder(), - SZ::Lossless_zstd()); +template +std::shared_ptr> make_sz_timebased2(const Config &conf, Predictor predictor, + T *data_ts0) { + return make_compressor_sz_generic( + make_decomposition_timeseries(conf, predictor, + LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2), data_ts0), + HuffmanEncoder(), Lossless_zstd()); + // return std::make_shared>, + // HuffmanEncoder, Lossless_zstd>( + // TimeSeriesDecomposition>(conf, predictor, + // LinearQuantizer(conf.absErrorBound, + // conf.quantbinCnt / 2), data_ts0), + // HuffmanEncoder(), + // Lossless_zstd()); } -template -SZ::concepts::CompressorInterface * -make_sz_timebased(const SZ::Config &conf, T *data_ts0) { - std::vector>> predictors; +template +std::shared_ptr> make_sz_timebased(const Config &conf, T *data_ts0) { + std::vector>> predictors; - int use_single_predictor = - (conf.lorenzo + conf.lorenzo2 + conf.regression) == 1; + int use_single_predictor = (conf.lorenzo + conf.lorenzo2 + conf.regression) == 1; if (conf.lorenzo) { if (use_single_predictor) { - return make_sz_timebased2(conf, SZ::LorenzoPredictor(conf.absErrorBound), data_ts0); + return make_sz_timebased2(conf, LorenzoPredictor(conf.absErrorBound), data_ts0); } else { - predictors.push_back(std::make_shared>(conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.absErrorBound)); } } if (conf.lorenzo2) { if (use_single_predictor) { - return make_sz_timebased2(conf, SZ::LorenzoPredictor(conf.absErrorBound), data_ts0); + return make_sz_timebased2(conf, LorenzoPredictor(conf.absErrorBound), data_ts0); } else { - predictors.push_back(std::make_shared>(conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.absErrorBound)); } } if (conf.regression) { if (use_single_predictor) { - return make_sz_timebased2(conf, SZ::RegressionPredictor(conf.blockSize, conf.absErrorBound), data_ts0); + return make_sz_timebased2(conf, RegressionPredictor(conf.blockSize, conf.absErrorBound), + data_ts0); } else { - predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); } } - return make_sz_timebased2(conf, SZ::ComposedPredictor(predictors), data_ts0); + return make_sz_timebased2(conf, ComposedPredictor(predictors), data_ts0); } -template -SZ::concepts::CompressorInterface * -make_sz2(const SZ::Config &conf, Predictor predictor) { +template +std::shared_ptr> make_sz(const Config &conf) { + std::vector>> predictors; - return new SZ::SZGeneralCompressor>, - SZ::HuffmanEncoder, SZ::Lossless_zstd>( - SZ::SZGeneralFrontend>(conf, predictor, - SZ::LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)), - SZ::HuffmanEncoder(), - SZ::Lossless_zstd()); -} - -template -SZ::concepts::CompressorInterface * -make_sz(const SZ::Config &conf) { - std::vector>> predictors; - - int use_single_predictor = - (conf.lorenzo + conf.lorenzo2 + conf.regression) == 1; + int use_single_predictor = (conf.lorenzo + conf.lorenzo2 + conf.regression) == 1; if (conf.lorenzo) { if (use_single_predictor) { - return make_sz2(conf, SZ::LorenzoPredictor(conf.absErrorBound)); + return make_sz2(conf, LorenzoPredictor(conf.absErrorBound)); } else { - predictors.push_back(std::make_shared>(conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.absErrorBound)); } } if (conf.lorenzo2) { if (use_single_predictor) { - return make_sz2(conf, SZ::LorenzoPredictor(conf.absErrorBound)); + return make_sz2(conf, LorenzoPredictor(conf.absErrorBound)); } else { - predictors.push_back(std::make_shared>(conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.absErrorBound)); } } if (conf.regression) { if (use_single_predictor) { - return make_sz2(conf, SZ::RegressionPredictor(conf.blockSize, conf.absErrorBound)); + return make_sz2(conf, RegressionPredictor(conf.blockSize, conf.absErrorBound)); } else { - predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); } } - return make_sz2(conf, SZ::ComposedPredictor(predictors)); + return make_sz2(conf, ComposedPredictor(predictors)); } - -template -float * -VQ(SZ::Config conf, size_t ts, T *data, size_t &compressed_size, bool decom, - int method, float level_start, float level_offset, int level_num) { +template +float *VQ(Config conf, size_t ts, T *data, size_t &compressed_size, bool decom, int method, float level_start, + float level_offset, int level_num) { if (level_num == 0) { - printf("VQ/VQT not availble on current dataset, please use ADP or MT\n"); - exit(0); + throw std::runtime_error("VQ/VQT not availble on current dataset, please use ADP or MT"); } - auto sz = SZ::SZ_Exaalt_Compressor, SZ::HuffmanEncoder, - SZ::Lossless_zstd>(conf, SZ::LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2), - SZ::HuffmanEncoder(), SZ::Lossless_zstd(), method); - sz.set_level(level_start, level_offset, level_num); + auto sz = make_compressor_exaalt(LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2), + HuffmanEncoder(), Lossless_zstd(), method); + sz->set_level(level_start, level_offset, level_num); - SZ::Timer timer(true); - SZ::uchar *compressed; - compressed = sz.compress(data, compressed_size); + Timer timer(true); + compressed_size = conf.num * sizeof(T); + auto compressed = static_cast(malloc(compressed_size)); + sz->compress(conf, data, compressed, compressed_size); total_compress_time += timer.stop("Compression"); if (!decom) { - delete[]compressed; + free(compressed); return nullptr; } - auto ratio = conf.num * sizeof(T) * 1.0 / compressed_size; - std::cout << "Compression Ratio = " << ratio << std::endl; - std::cout << "Compressed size = " << compressed_size << std::endl; + // auto ratio = conf.num * sizeof(T) * 1.0 / compressed_size; + // std::cout << "Compression Ratio = " << ratio << std::endl; + // std::cout << "Compressed size = " << compressed_size << std::endl; timer.start(); - auto ts_dec_data = sz.decompress(compressed, compressed_size); + auto ts_dec_data = new T[conf.num]; + sz->decompress(conf, compressed, compressed_size, ts_dec_data); total_decompress_time += timer.stop("Decompression"); - delete[]compressed; + free(compressed); return ts_dec_data; } - -template -float * -MT(SZ::Config conf, size_t ts, T *data, size_t &compressed_size, bool decom, T *ts0) { -// printf("eb=%.8f\n", conf.eb); +template +float *MT(Config conf, size_t ts, T *data, size_t &compressed_size, bool decom, T *ts0) { + // printf("eb=%.8f\n", conf.eb); auto sz = make_sz_timebased(conf, ts0); - SZ::uchar *compressed; - SZ::Timer timer(true); - compressed = sz->compress(conf, data, compressed_size); + Timer timer(true); + compressed_size = conf.num * sizeof(T); + auto compressed = static_cast(malloc(compressed_size)); + sz->compress(conf, data, compressed, compressed_size); total_compress_time += timer.stop("Compression"); if (!decom) { - delete[] compressed; + free(compressed); return nullptr; } - auto ratio = conf.num * sizeof(T) * 1.0 / compressed_size; - std::cout << "Compression Ratio = " << ratio << std::endl; - std::cout << "Compressed size = " << compressed_size << std::endl; - + // auto ratio = conf.num * sizeof(T) * 1.0 / compressed_size; + // std::cout << "Compression Ratio = " << ratio << std::endl; + // std::cout << "Compressed size = " << compressed_size << std::endl; timer.start(); - auto ts_dec_data = sz->decompress(compressed, compressed_size, conf.num); + auto ts_dec_data = new T[conf.num]; + sz->decompress(conf, compressed, compressed_size, ts_dec_data); total_decompress_time += timer.stop("Decompression"); - delete sz; - delete[] compressed; + // delete sz; + free(compressed); return ts_dec_data; } -template -float * -SZ2(SZ::Config conf, size_t ts, T *data, size_t &compressed_size, bool decom) { +template +float *SZ2(Config conf, size_t ts, T *data, size_t &compressed_size, bool decom) { auto sz = make_sz(conf); - SZ::uchar *compressed; - SZ::Timer timer(true); - compressed = sz->compress(conf, data, compressed_size); + Timer timer(true); + compressed_size = conf.num * sizeof(T); + auto compressed = static_cast(malloc(compressed_size)); + sz->compress(conf, data, compressed, compressed_size); + total_compress_time += timer.stop("Compression"); if (!decom) { - delete[] compressed; + free(compressed); return nullptr; } - auto ratio = conf.num * sizeof(T) * 1.0 / compressed_size; - std::cout << "Compression Ratio = " << ratio << std::endl; - std::cout << "Compressed size = " << compressed_size << std::endl; + // auto ratio = conf.num * sizeof(T) * 1.0 / compressed_size; + // std::cout << "Compression Ratio = " << ratio << std::endl; + // std::cout << "Compressed size = " << compressed_size << std::endl; timer.start(); - auto ts_dec_data = sz->decompress(compressed, compressed_size, conf.num); + auto ts_dec_data = new T[conf.num]; + sz->decompress(conf, compressed, compressed_size, ts_dec_data); total_decompress_time += timer.stop("Decompression"); - delete sz; - delete[] compressed; + // delete sz; + free(compressed); return ts_dec_data; } - -template -void select(SZ::Config conf, int &method, size_t ts, T *data_all, - float level_start, float level_offset, int level_num, T *data_ts0, size_t timestep_batch) { -// && (ts_last_select == -1 || t - ts_last_select >= conf.timestep_batch * 10)) { - std::cout << "****************** BEGIN Selection ****************" << std::endl; -// ts_last_select = ts; +template +void select(Config conf, int &method, size_t ts, T *data_all, float level_start, float level_offset, int level_num, + T *data_ts0, size_t batch_size) { + // && (ts_last_select == -1 || t - ts_last_select >= conf.timestep_batch * 10)) { + // std::cout << "****************** BEGIN Selection ****************" << std::endl; + // ts_last_select = ts; std::vector compressed_size(10, std::numeric_limits::max()); std::vector data1; size_t t = ts; if (ts == 0) { - t = conf.dims[0] / 2; - conf.dims[0] /= 2; + if (conf.dims[0] == 1) { // if the data shape is (1, XXX), then no need for testing + method = (level_num > 0 ? 0 : 3); + return; + } else { // if first batch, only use the second half of the batch for testing + t = conf.dims[0] / 2; + conf.dims[0] /= 2; + } } - if (timestep_batch > 10) { + if (batch_size > 10) { conf.dims[0] = 10; } conf.num = conf.dims[0] * conf.dims[1]; - std::cout << conf.dims[0] << " " << conf.dims[1] << " " << t << std::endl; + // std::cout << conf.dims[0] << " " << conf.dims[1] << " " << t << std::endl; if (level_num > 0) { data1 = std::vector(&data_all[t * conf.dims[1]], &data_all[t * conf.dims[1]] + conf.num); @@ -243,27 +251,27 @@ void select(SZ::Config conf, int &method, size_t ts, T *data_all, data1 = std::vector(&data_all[t * conf.dims[1]], &data_all[t * conf.dims[1]] + conf.num); MT(conf, t, data1.data(), compressed_size[2], false, data_ts0); -// data1 = std::vector(&data_all[t * conf.dims[1]], &data_all[t * conf.dims[1]] + conf.num); -// MT(conf, t, data1.data(), compressed_size[4], false, (T *) nullptr); + // data1 = std::vector(&data_all[t * conf.dims[1]], &data_all[t * conf.dims[1]] + conf.num); + // MT(conf, t, data1.data(), compressed_size[4], false, (T *) nullptr); - method = std::distance(compressed_size.begin(), - std::min_element(compressed_size.begin(), compressed_size.end())); - printf("Select %s as Compressor, timestep=%lu, method=%d\n", - compressor_names[method], - ts, method); - std::cout << "****************** END Selection ****************" << std::endl; + method = std::distance(compressed_size.begin(), std::min_element(compressed_size.begin(), compressed_size.end())); + // printf("Select %s as Compressor, timestep=%lu, method=%d\n", + // compressor_names[method], + // ts, method); + // std::cout << "****************** END Selection ****************" << std::endl; } -template +template std::unique_ptr readfile(const char *file, size_t start, size_t num) { std::ifstream fin(file, std::ios::binary); if (!fin) { - std::cout << " Error, Couldn't find the file" << "\n"; - return 0; + std::cout << " Error, Couldn't find the file" + << "\n"; + return nullptr; } fin.seekg(0, std::ios::end); - const size_t total_num_elements = fin.tellg() / sizeof(Type); - assert(start + num <= total_num_elements); + // const size_t total_num_elements = fin.tellg() / sizeof(Type); + // assert(start + num <= total_num_elements); fin.seekg(start * sizeof(Type), std::ios::beg); auto data = std::make_unique(num); fin.read(reinterpret_cast(&data[0]), num * sizeof(Type)); @@ -271,38 +279,37 @@ std::unique_ptr readfile(const char *file, size_t start, size_t num) { return data; } - -template -SZ::uchar *LAMMPS_compress(SZ::Config conf, T *data, int method, size_t &compressed_size, - float level_start, float level_offset, int level_num, T *ts0) { +template +uchar *LAMMPS_compress(Config conf, T *data, int method, size_t &compressed_size, float level_start, float level_offset, + int level_num, T *ts0) { if ((method == 0 || method == 1) && level_num == 0) { - printf("VQ/VQT not available on current dataset, please use ADP or MT\n"); - exit(0); + throw std::runtime_error("VQ/VQT not available on current dataset, please use ADP or MT"); } - SZ::uchar *compressed_data; + compressed_size = conf.num * sizeof(T); + auto compressed_data = new uchar[compressed_size]; + std::shared_ptr> sz; if (method == 0 || method == 1) { - auto sz = SZ::SZ_Exaalt_Compressor, SZ::HuffmanEncoder, SZ::Lossless_zstd>( - conf, SZ::LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2), - SZ::HuffmanEncoder(), SZ::Lossless_zstd(), method); - sz.set_level(level_start, level_offset, level_num); - compressed_data = sz.compress(data, compressed_size); + sz = make_compressor_exaalt(LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2), + HuffmanEncoder(), Lossless_zstd(), method); + sz->set_level(level_start, level_offset, level_num); } else if (method == 2 || method == 4) { - auto sz = make_sz_timebased(conf, ts0); - compressed_data = sz->compress(conf, data, compressed_size); + sz = make_sz_timebased(conf, ts0); + // sz->compress(conf, data, compressed_size); } else { - auto sz = make_sz(conf); - compressed_data = sz->compress(conf, data, compressed_size); + sz = make_sz(conf); + // sz->compress(conf, data, compressed_size); } -// auto ratio = conf.num * sizeof(T) * 1.0 / compressed_size; -// std::cout << "Compression Ratio = " << ratio << std::endl; -// std::cout << "Compressed size = " << compressed_size << std::endl; + sz->compress(conf, data, compressed_data, compressed_size); + // auto ratio = conf.num * sizeof(T) * 1.0 / compressed_size; + // std::cout << "Compression Ratio = " << ratio << std::endl; + // std::cout << "Compressed size = " << compressed_size << std::endl; return compressed_data; } -template -int LAMMPS_select_compressor(SZ::Config conf, T *data, bool firsttime, - float level_start, float level_offset, int level_num, T *data_ts0) { - std::cout << "****************** BEGIN Selection ****************" << std::endl; +template +int LAMMPS_select_compressor(Config conf, T *data, bool firsttime, float level_start, float level_offset, int level_num, + T *data_ts0) { + // std::cout << "****************** BEGIN Selection ****************" << std::endl; std::vector compressed_size(10, std::numeric_limits::max()); @@ -317,41 +324,45 @@ int LAMMPS_select_compressor(SZ::Config conf, T *data, bool firsttime, } std::vector data1; - SZ::uchar *cmpr; + uchar *cmpr; if (level_num > 0) { - data1 = std::vector(data, data + conf.num); - cmpr = LAMMPS_compress(conf, data1.data(), 0, compressed_size[0], level_start, level_offset, level_num, data_ts0); + cmpr = LAMMPS_compress(conf, data1.data(), 0, compressed_size[0], level_start, level_offset, level_num, + data_ts0); delete[] cmpr; data1 = std::vector(data, data + conf.num); - cmpr = LAMMPS_compress(conf, data1.data(), 1, compressed_size[1], level_start, level_offset, level_num, data_ts0); + cmpr = LAMMPS_compress(conf, data1.data(), 1, compressed_size[1], level_start, level_offset, level_num, + data_ts0); delete[] cmpr; } else { data1 = std::vector(data, data + conf.num); - cmpr = LAMMPS_compress(conf, data1.data(), 3, compressed_size[3], level_start, level_offset, level_num, data_ts0); + cmpr = LAMMPS_compress(conf, data1.data(), 3, compressed_size[3], level_start, level_offset, level_num, + data_ts0); delete[] cmpr; } data1 = std::vector(data, data + conf.num); - cmpr = LAMMPS_compress(conf, data1.data(), 2, compressed_size[2], level_start, level_offset, level_num, data_ts0); + cmpr = LAMMPS_compress(conf, data1.data(), 2, compressed_size[2], level_start, level_offset, level_num, + data_ts0); delete[] cmpr; -// data1 = std::vector(&data[t * conf.dims[1]], &data[t * conf.dims[1]] + conf.num); -// MT(conf, t, data1.data(), compressed_size[4], false, (T *) nullptr); + // data1 = std::vector(&data[t * conf.dims[1]], &data[t * conf.dims[1]] + conf.num); + // MT(conf, t, data1.data(), compressed_size[4], false, (T *) nullptr); - int method = std::distance(compressed_size.begin(), - std::min_element(compressed_size.begin(), compressed_size.end())); + int method = + std::distance(compressed_size.begin(), std::min_element(compressed_size.begin(), compressed_size.end())); printf("Select %s as Compressor, method=%d\n", compressor_names[method], method); - std::cout << "****************** END Selection ****************" << std::endl; + // std::cout << "****************** END Selection ****************" << std::endl; return method; } -template -size_t MDZ_Compress(SZ::Config conf, T *input_data, T *dec_data, size_t batch_size, int method = -1) { - if (N != 2) { - throw std::invalid_argument("dimension should be 2"); - } +template +inline typename std::enable_if::type MDZ_Compress(Config conf, T *input_data, T *dec_data, + size_t batch_size, int method = -1) { + // if (N != 2) { + // throw std::invalid_argument("dimension should be 2"); + // } if (batch_size == 0) { batch_size = conf.dims[0]; } @@ -359,92 +370,130 @@ size_t MDZ_Compress(SZ::Config conf, T *input_data, T *dec_data, size_t batch_si if (method == -1) { method_batch = 50; } - std::cout << "****************** Options ********************" << std::endl; - std::cout << "dimension = " << N - << ", error bound = " << conf.absErrorBound - << ", method = " << method - << ", method_update_batch = " << method_batch - << ", batch_size = " << batch_size - << ", quan_state_num = " << conf.quantbinCnt - // << ", encoder = " << conf.encoder_op - // << ", lossless = " << conf.lossless_op - << std::endl; - -// auto data_all = readfile(input_path.data(), 0, conf.num); -// auto data_all = input_data; + // std::cout << "****************** Options ********************" << std::endl; + // std::cout << "dimension = " << N + // << ", error bound = " << conf.absErrorBound + // << ", method = " << method + // << ", method_update_batch = " << method_batch + // << ", batch_size = " << batch_size + // << ", quan_state_num = " << conf.quantbinCnt + // // << ", encoder = " << conf.encoder_op + // // << ", lossless = " << conf.lossless_op + // << std::endl; + + // auto data_all = readfile(input_path.data(), 0, conf.num); + // auto data_all = input_data; auto data_ts0 = std::vector(input_data, input_data + conf.dims[1]); float level_start, level_offset; int level_num = 0; if (method != 2 && method != 3 && method != 4) { size_t sample_num = 0.1 * conf.dims[1]; - sample_num = std::min(sample_num, (size_t) 20000); - sample_num = std::max(sample_num, std::min((size_t) 5000, conf.dims[1])); - SZ::get_cluster(input_data, conf.dims[1], level_start, level_offset, level_num, - sample_num); + sample_num = std::min(sample_num, static_cast(20000)); + sample_num = std::max(sample_num, std::min(static_cast(5000), conf.dims[1])); + get_cluster(input_data, conf.dims[1], level_start, level_offset, level_num, sample_num); if (level_num > conf.dims[1] * 0.25) { level_num = 0; } - if (level_num != 0) { -// printf("start = %.3f , level_offset = %.3f, nlevel=%d\n", level_start, level_offset, level_num); - } + // if (level_num != 0) { + // printf("start = %.3f , level_offset = %.3f, nlevel=%d\n", level_start, level_offset, level_num); + // } } auto dims = conf.dims; - auto total_num = conf.num; -// std::vector dec_data(total_num); + // auto total_num = conf.num; size_t total_compressed_size = 0; - double compressed_size_pre = total_num * sizeof(T); int current_method = method; - + bool lossless_first_frame = false; for (size_t ts = 0; ts < dims[0]; ts += batch_size) { conf.dims[0] = (ts + batch_size > dims[0] ? dims[0] - ts : batch_size); conf.num = conf.dims[0] * conf.dims[1]; -// auto data = SZ::readfile(conf.input_path.data(), ts * conf.dims[1], conf.num); T *data = &input_data[ts * conf.dims[1]]; T max = *std::max_element(data, data + conf.num); T min = *std::min_element(data, data + conf.num); - if (conf.errorBoundMode == SZ::EB_ABS) { + if (conf.errorBoundMode == EB_ABS) { conf.relErrorBound = conf.absErrorBound / (max - min); - } else if (conf.errorBoundMode == SZ::EB_REL) { + } else if (conf.errorBoundMode == EB_REL) { conf.absErrorBound = conf.relErrorBound * (max - min); } - std::cout << "****************** Compression From " << ts << " to " << ts + conf.dims[0] - 1 - << " ******************" << std::endl; -// std::cout< 0 && ts / batch_size % method_batch == 0) { - select(conf, current_method, ts, input_data, level_start, level_offset, level_num, data_ts0.data(), batch_size); + select(conf, current_method, ts, input_data, level_start, level_offset, level_num, data_ts0.data(), + batch_size); } - printf("Compressor = %s\n", compressor_names[current_method]); + // printf("Compressor = %s\n", compressor_names[current_method]); + + std::cout << "From " << ts << " to " << ts + conf.dims[0] - 1 + << " , Compressor = " << compressor_names[current_method] << std::endl; T *ts_dec_data; size_t compressed_size; if (current_method == 0) { - ts_dec_data = VQ(conf, ts, data, compressed_size, true, current_method, level_start, level_offset, - level_num); + ts_dec_data = + VQ(conf, ts, data, compressed_size, true, current_method, level_start, level_offset, level_num); } else if (current_method == 1) { - ts_dec_data = VQ(conf, ts, data, compressed_size, true, current_method, level_start, level_offset, - level_num); + ts_dec_data = + VQ(conf, ts, data, compressed_size, true, current_method, level_start, level_offset, level_num); } else if (current_method == 2) { + lossless_first_frame = true; ts_dec_data = MT(conf, ts, data, compressed_size, true, data_ts0.data()); } else if (current_method == 4) { - ts_dec_data = MT(conf, ts, data, compressed_size, true, (T *) nullptr); + ts_dec_data = MT(conf, ts, data, compressed_size, true, static_cast(nullptr)); } else { ts_dec_data = SZ2(conf, ts, data, compressed_size, true); } total_compressed_size += compressed_size; -// if (compressed_size > 4.0 * compressed_size_pre) { -// select(conf, current_method, ts, data_all.get(), level_start, level_offset, level_num, data_ts0.get()); -// } - compressed_size_pre = compressed_size; memcpy(&dec_data[ts * conf.dims[1]], ts_dec_data, conf.num * sizeof(T)); } + if (lossless_first_frame) { + auto zstd = SZ3::Lossless_zstd(); + size_t inSize = conf.dims[1] * sizeof(T); + uchar *buffer = new uchar[inSize]; + auto cmpSize = zstd.compress(reinterpret_cast(data_ts0.data()), inSize, buffer, inSize); + delete[] buffer; + // printf("outsize %lu\n", cmpSize); + total_compressed_size += cmpSize; + } + return total_compressed_size; +} +template +inline typename std::enable_if::type MDZ_Compress(Config conf, T *input_data, T *dec_data, + size_t batch_size, int method = -1) { + size_t total_compressed_size = 0; + auto dims = conf.dims; + std::vector input(conf.num), output(conf.num); + for (size_t frame = 0; frame < conf.dims[0]; frame++) { + for (size_t atom = 0; atom < conf.dims[1]; atom++) { + for (size_t xyz = 0; xyz < conf.dims[2]; xyz++) { + input[xyz * dims[0] * dims[1] + frame * dims[1] + atom] = + input_data[frame * dims[1] * dims[2] + atom * dims[2] + xyz]; + } + } + } + for (size_t i = 0; i < conf.dims[2]; i++) { + Config conf_2D(conf); + conf_2D.dims = {conf.dims[0], conf.dims[1]}; + conf_2D.num = conf.dims[0] * conf.dims[1]; + total_compressed_size += + MDZ_Compress(conf_2D, input.data() + i * conf.dims[0] * conf.dims[1], + output.data() + i * conf.dims[0] * conf.dims[1], batch_size, method); + } + for (size_t frame = 0; frame < conf.dims[0]; frame++) { + for (size_t atom = 0; atom < conf.dims[1]; atom++) { + for (size_t xyz = 0; xyz < conf.dims[2]; xyz++) { + dec_data[frame * dims[1] * dims[2] + atom * dims[2] + xyz] = + output[xyz * dims[0] * dims[1] + frame * dims[1] + atom]; + } + } + } return total_compressed_size; } -#endif //SZ3_MDZ_H +#endif // SZ3_MDZ_H diff --git a/lib/SZ3/tools/mdz/mdz.cpp b/lib/SZ3/tools/mdz/mdz.cpp index 64a61b0e..f04d36ad 100644 --- a/lib/SZ3/tools/mdz/mdz.cpp +++ b/lib/SZ3/tools/mdz/mdz.cpp @@ -1,12 +1,23 @@ -#include - #include +#include +inline void usage() { + printf("Usage: \n"); + printf("For 1D input: mdz file_path -1 n_atoms -r reb\n"); + printf("For 2D input: mdz file_path -2 n_frames n_atoms -r reb\n"); + printf("For 3D input: mdz file_path -3 n_frames n_atoms n_dims(x,y,z) -r reb\n"); + exit(0); +} int main(int argc, char **argv) { - + if (argc < 2) { + usage(); + } int dim = atoi(argv[2] + 1); + if (dim > 3) { + usage(); + } assert(1 <= dim && dim <= 2); int argp = 3; std::vector dims(dim); @@ -14,18 +25,24 @@ int main(int argc, char **argv) { dims[i] = atoi(argv[argp++]); } - SZ::Config conf({1, dims[0]}); + SZ3::Config conf({1, dims[0]}); if (dim == 2) { - conf = SZ::Config({dims[0], dims[1]}); + conf = SZ3::Config({dims[0], dims[1]}); + } else if (dim == 3) { + conf = SZ3::Config({dims[0], dims[1], dims[2]}); } + std::string input_path = argv[1]; + if (argp >= argc) { + usage(); + } char *eb_op = argv[argp++] + 1; if (*eb_op == 'a') { - conf.errorBoundMode = SZ::EB_ABS; + conf.errorBoundMode = SZ3::EB_ABS; conf.absErrorBound = atof(argv[argp++]); } else { - conf.errorBoundMode = SZ::EB_REL; + conf.errorBoundMode = SZ3::EB_REL; conf.relErrorBound = atof(argv[argp++]); } size_t batch_size = 0; @@ -40,8 +57,8 @@ int main(int argc, char **argv) { conf.blockSize = 128; conf.stride = 128; conf.quantbinCnt = 1024; -// conf.enable_regression = false; -// conf.quant_state_num = 4096; + // conf.enable_regression = false; + // conf.quant_state_num = 4096; if (argp < argc) { conf.quantbinCnt = atoi(argv[argp++]); } @@ -49,24 +66,26 @@ int main(int argc, char **argv) { std::vector input2(input_data.get(), input_data.get() + conf.num); std::vector dec_data(conf.num); - size_t compressed_size = MDZ_Compress(conf, input_data.get(), dec_data.data(), batch_size, method); + size_t compressed_size = 0; + if (conf.N == 2) { + compressed_size = MDZ_Compress(conf, input_data.get(), dec_data.data(), batch_size, method); + } else if (conf.N == 3) { + compressed_size = MDZ_Compress(conf, input_data.get(), dec_data.data(), batch_size, method); + } float ratio = conf.num * 1.0 * sizeof(float) / compressed_size; -// std::stringstream ss; -// ss << input_path.substr(input_path.rfind('/') + 1) -// << ".b" << batch_size -// << "." << conf.relErrorBound << ".md-" << method << ".out"; -// std::cout << "Decompressed file = " << ss.str() << std::endl; -// SZ::writefile(ss.str().data(), dec_data.data(), total_num); - double max_diff, psnr, nrmse; - SZ::verify(input2.data(), dec_data.data(), conf.num, psnr, nrmse, max_diff); - std::cout << "****************** Final ****************" << std::endl; - printf("method=md, file=%s, block=%lu, compression_ratio=%.3f, reb=%.1e, eb=%.6f, psnr=%.3f, nsmse=%e, compress_time=%.3f, decompress_time=%.3f, timestep_op=%d\n", - input_path.data(), batch_size, - ratio, - conf.relErrorBound, - max_diff, psnr, nrmse, - total_compress_time, total_decompress_time, - method); -} \ No newline at end of file + printf("\nBatch=%lu\nCompression ratio=%.3f\nCompression time=%.3f\nDecompression time=%.3f\n", + (batch_size == 0 ? dims[0] : batch_size), ratio, total_compress_time, total_decompress_time); + + SZ3::verify(input2.data(), dec_data.data(), conf.num, psnr, nrmse, max_diff); + // std::cout << "****************** Final ****************" << std::endl; + // printf("method=md, file=%s, block=%lu, compression_ratio=%.3f, reb=%.1e, eb=%.6f, psnr=%.3f, nsmse=%e, + // compress_time=%.3f, decompress_time=%.3f, timestep_op=%d\n", + // input_path.data(), batch_size, + // ratio, + // conf.relErrorBound, + // max_diff, psnr, nrmse, + // total_compress_time, total_decompress_time, + // method); +} diff --git a/lib/SZ3/tools/mdz/mdz_smoke_test.cpp b/lib/SZ3/tools/mdz/mdz_smoke_test.cpp index a2a01acf..1124e071 100644 --- a/lib/SZ3/tools/mdz/mdz_smoke_test.cpp +++ b/lib/SZ3/tools/mdz/mdz_smoke_test.cpp @@ -4,17 +4,14 @@ #include - int main(int argc, char **argv) { - - std::vector dims({100, 200}); - SZ::Config conf({dims[0], dims[1]}); + SZ3::Config conf({dims[0], dims[1]}); - conf.errorBoundMode = SZ::EB_ABS; + conf.errorBoundMode = SZ3::EB_ABS; conf.absErrorBound = 1e-6; -// conf.blockSize = 128; -// conf.stride = 128; + // conf.blockSize = 128; + // conf.stride = 128; conf.quantbinCnt = 1024; std::vector input_data(conf.num); @@ -31,5 +28,4 @@ int main(int argc, char **argv) { size_t compressed_size = MDZ_Compress(conf, input_data.data(), dec_data.data(), 10); printf("compression ratio = %.5f", dims[0] * dims[1] * sizeof(float) * 1.0 / compressed_size); return 0; - -} \ No newline at end of file +} diff --git a/lib/SZ3/tools/pysz/pysz.py b/lib/SZ3/tools/pysz/pysz.py index a6823cf2..b7fa27a1 100644 --- a/lib/SZ3/tools/pysz/pysz.py +++ b/lib/SZ3/tools/pysz/pysz.py @@ -1,18 +1,25 @@ +import sys import ctypes -from ctypes.util import find_library import numpy as np """ -Python API for SZ2/SZ3 +Python API for SZ3 """ class SZ: - def __init__(self, szpath): + def __init__(self, szpath=None): """ init SZ :param szpath: the path to SZ dynamic library """ + + if szpath is None: + szpath = { + "darwin": "libSZ3c.dylib", + "win32": "SZ3c.dll", + }.get(sys.platform, "libSZ3c.so") + self.sz = ctypes.cdll.LoadLibrary(szpath) self.sz.SZ_compress_args.argtypes = (ctypes.c_int, ctypes.c_void_p, ctypes.POINTER(ctypes.c_size_t), @@ -25,8 +32,7 @@ def __init__(self, szpath): ctypes.c_size_t, ctypes.c_size_t, ctypes.c_size_t, ctypes.c_size_t, ctypes.c_size_t) - self.libc = ctypes.CDLL(ctypes.util.find_library('c')) - self.libc.free.argtypes = (ctypes.c_void_p,) + self.sz.free_buf.argtype = (ctypes.c_void_p) def __sz_datatype(self, dtype, data=None): if dtype == np.float32: @@ -71,8 +77,24 @@ def decompress(self, data_cmpr, original_shape, original_dtype): data_cmpr.size, r5, r4, r3, r2, r1) - data_dec = np.array(data_dec_c[:np.prod(original_shape)]).reshape(original_shape) - self.libc.free(data_dec_c) + # Calculate total number of elements + total_elements = np.prod(original_shape) + + # Use np.frombuffer for fast memory copy + # Cast the ctypes pointer to void pointer, then use addressof to get memory address + buffer_ptr = ctypes.cast(data_dec_c, ctypes.c_void_p) + buffer_size = total_elements * np.dtype(original_dtype).itemsize + + # Create numpy array directly from memory buffer + data_dec = np.frombuffer((ctypes.c_ubyte * buffer_size).from_address(buffer_ptr.value), + dtype=original_dtype, + count=total_elements + ).reshape(original_shape) + + # Make a copy since we're going to free the original memory + data_dec = data_dec.copy() + + self.sz.free_buf(data_dec_c) return data_dec def compress(self, data, eb_mode, eb_abs, eb_rel, eb_pwr): @@ -97,6 +119,15 @@ def compress(self, data, eb_mode, eb_abs, eb_rel, eb_pwr): cmpr_ratio = data.size * data.itemsize / cmpr_size.value - data_cmpr = np.array(data_cmpr_c[:cmpr_size.value], dtype=np.uint8) - self.libc.free(data_cmpr_c) + # Use np.frombuffer for fast memory copy + buffer_ptr = ctypes.cast(data_cmpr_c, ctypes.c_void_p) + buffer_size = cmpr_size.value + + # Create numpy array directly from memory buffer + data_cmpr = np.frombuffer((ctypes.c_ubyte * buffer_size).from_address(buffer_ptr.value), + dtype=np.uint8, + count=buffer_size + ).copy() # Make a copy since we're going to free the original memory + + self.sz.free_buf(data_cmpr_c) return data_cmpr, cmpr_ratio diff --git a/lib/SZ3/tools/pysz/test.py b/lib/SZ3/tools/pysz/test.py index 28c0bfec..de8e700e 100644 --- a/lib/SZ3/tools/pysz/test.py +++ b/lib/SZ3/tools/pysz/test.py @@ -1,19 +1,18 @@ import numpy as np -from pathlib import Path from pysz import SZ -import platform +import sys # prepare your data in numpy array format -HOME = str(Path.home()) -data = np.fromfile(HOME + '/data/hurricane-100x500x500/Uf48.bin.dat', dtype=np.float32) -data = np.reshape(data, (100, 500, 500)) - +data = np.random.uniform(low=0, high=1, size=(100, 100)) # init SZ (both SZ2 and SZ3 are supported) # Please change the path to the SZ dynamic library file in your system -lib_extention = "so" if platform.system() == 'Linux' else "dylib" -sz = SZ("../../build/tools/sz3c/libSZ3c.{}".format(lib_extention)) -# sz = SZ("../../../sz2/build/sz/libSZ.{}".format(lib_extention)) +lib_extention = { + "darwin": "libSZ3c.dylib", + "windows": "SZ3c.dll", +}.get(sys.platform, "libSZ3c.so") + +sz = SZ("../../install/lib/{}".format(lib_extention)) # compress, both input and output data are numpy array data_cmpr, cmpr_ratio = sz.compress(data, 0, 1e-3, 0, 0) @@ -23,4 +22,4 @@ data_dec = sz.decompress(data_cmpr, data.shape, data.dtype) # verify -sz.verify(data, data_dec) \ No newline at end of file +sz.verify(data, data_dec) diff --git a/lib/SZ3/tools/sz3/CMakeLists.txt b/lib/SZ3/tools/sz3/CMakeLists.txt index ff50223c..59050ec9 100644 --- a/lib/SZ3/tools/sz3/CMakeLists.txt +++ b/lib/SZ3/tools/sz3/CMakeLists.txt @@ -8,5 +8,6 @@ foreach (SRCFILE IN LISTS cpu_source_files) install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${EXE}$ TYPE BIN) endforeach () - install(FILES testfloat_8_8_128.dat DESTINATION ${CMAKE_INSTALL_DATADIR}/SZ3) + +#add_subdirectory(demo) diff --git a/lib/SZ3/tools/sz3/sz3.cpp b/lib/SZ3/tools/sz3/sz3.cpp index 1ca2ddb1..b6fe3df2 100644 --- a/lib/SZ3/tools/sz3/sz3.cpp +++ b/lib/SZ3/tools/sz3/sz3.cpp @@ -1,8 +1,8 @@ +#include #include #include -#include -#include "SZ3/api/sz.hpp" +#include "SZ3/api/sz.hpp" #define SZ_FLOAT 0 #define SZ_DOUBLE 1 @@ -15,7 +15,7 @@ #define SZ_UINT64 8 #define SZ_INT64 9 -void usage() { +inline void usage() { printf("Note: SZ3 command line arguments are backward compatible with SZ2, \n"); printf(" use -h2 to show the supported SZ2 command line arguments. \n"); printf("Usage: sz3 \n"); @@ -26,11 +26,11 @@ void usage() { printf(" -v: print the version number\n"); printf(" -a : print compression results such as distortions\n"); printf("* input and output:\n"); - printf(" -i : original binary input file\n"); - printf(" -o : compressed output file, default in binary format\n"); - printf(" -z : compressed output (w -i) or input (w/o -i) file\n"); - printf(" -t : store compressed output file in text format\n"); -// printf(" -p: print meta data (configuration info)\n"); + printf(" -i : original input file in binary format\n"); + printf(" -o : decompressed file in binary format\n"); + printf(" -z : compressed file\n"); + printf(" -t : store decompressed file in text format\n"); + // printf(" -p: print meta data (configuration info)\n"); printf("* data type:\n"); printf(" -f: single precision (float type)\n"); printf(" -d: double precision (double type)\n"); @@ -46,10 +46,12 @@ void usage() { printf(" NORM (norm2 error : sqrt(sum(xi-xi')^2)\n"); printf(" ABS_AND_REL (using min{ABS, REL})\n"); printf(" ABS_OR_REL (using max{ABS, REL})\n"); - printf(" error bound can be set directly after the error control mode, or separately with the following options:\n"); + printf( + " error bound can be set directly after the error control mode, or separately with the following " + "options:\n"); printf(" -A : specifying absolute error bound\n"); printf(" -R : specifying relative error bound\n"); -// printf(" -P : specifying point-wise relative error bound\n"); + // printf(" -P : specifying point-wise relative error bound\n"); printf(" -S : specifying PSNR\n"); printf(" -N : specifying normErr\n"); printf("* dimensions: \n"); @@ -66,7 +68,7 @@ void usage() { exit(0); } -void usage_sz2() { +inline void usage_sz2() { printf("Note: below are the supported command line arguments in SZ2 style\n"); printf("Usage: sz \n"); printf("Options:\n"); @@ -75,7 +77,7 @@ void usage_sz2() { printf(" (the compressed file will be named as .sz if not specified)\n"); printf(" -x : the decompression operation with an optionally specified output file\n"); printf(" (the decompressed file will be named as .out if not specified)\n"); -// printf(" -p: print meta data (configuration info)\n"); + printf(" -p: print meta data (configuration info)\n"); printf(" -h: print the help information\n"); printf(" -v: print the version number\n"); printf("* data type:\n"); @@ -91,10 +93,10 @@ void usage_sz2() { printf(" ABS_OR_REL (using max{ABS, REL})\n"); printf(" PSNR (peak signal-to-noise ratio)\n"); printf(" NORM (norm2 error : sqrt(sum(xi-xi')^2)\n"); -// printf(" PW_REL (point-wise relative error bound)\n"); + // printf(" PW_REL (point-wise relative error bound)\n"); printf(" -A : specifying absolute error bound\n"); printf(" -R : specifying relative error bound\n"); -// printf(" -P : specifying point-wise relative error bound\n"); + // printf(" -P : specifying point-wise relative error bound\n"); printf(" -S : specifying PSNR\n"); printf(" -N : specifying normErr\n"); printf("* input data file:\n"); @@ -103,7 +105,7 @@ void usage_sz2() { printf("* output type of decompressed file: \n"); printf(" -b (by default) : decompressed file stored in binary format\n"); printf(" -t : decompreadded file stored in text format\n"); -// printf(" -T : pre-processing with Tucker Tensor Decomposition\n"); + // printf(" -T : pre-processing with Tucker Tensor Decomposition\n"); printf("* dimensions: \n"); printf(" -1 : dimension for 1D data such as data[nx]\n"); printf(" -2 : dimensions for 2D data such as data[ny][nx]\n"); @@ -115,70 +117,70 @@ void usage_sz2() { printf(" sz -z -f -c sz.config -i testdata/x86/testfloat_8_8_128.dat -3 8 8 128\n"); printf(" sz -z -f -c sz.config -M ABS -A 1E-3 -i testdata/x86/testfloat_8_8_128.dat -3 8 8 128\n"); printf(" sz -x -f -s testdata/x86/testfloat_8_8_128.dat.sz -3 8 8 128\n"); - printf(" sz -x -f -s testdata/x86/testfloat_8_8_128.dat.sz -i testdata/x86/testfloat_8_8_128.dat -3 8 8 128 -a\n"); + printf( + " sz -x -f -s testdata/x86/testfloat_8_8_128.dat.sz -i testdata/x86/testfloat_8_8_128.dat -3 8 8 128 " + "-a\n"); printf(" sz -z -d -c sz.config -i testdata/x86/testdouble_8_8_128.dat -3 8 8 128\n"); printf(" sz -x -d -s testdata/x86/testdouble_8_8_128.dat.sz -3 8 8 128\n"); printf(" sz -p -s testdata/x86/testdouble_8_8_128.dat.sz\n"); exit(0); } -template -void compress(char *inPath, char *cmpPath, SZ::Config conf) { +template +void compress(char *inPath, char *cmpPath, SZ3::Config &conf) { T *data = new T[conf.num]; - SZ::readfile(inPath, conf.num, data); + SZ3::readfile(inPath, conf.num, data); + size_t bytesCap = 2 * conf.num * sizeof(T); + auto bytes = new char[bytesCap]; - size_t outSize; - SZ::Timer timer(true); - char *bytes = SZ_compress(conf, data, outSize); + SZ3::Timer timer(true); + size_t outSize = SZ_compress(conf, data, bytes, bytesCap); double compress_time = timer.stop(); char outputFilePath[1024]; if (cmpPath == nullptr) { - sprintf(outputFilePath, "%s.sz", inPath); + snprintf(outputFilePath, 1024, "%s.sz", inPath); } else { strcpy(outputFilePath, cmpPath); } - SZ::writefile(outputFilePath, bytes, outSize); + SZ3::writefile(outputFilePath, bytes, outSize); printf("compression ratio = %.2f \n", conf.num * 1.0 * sizeof(T) / outSize); printf("compression time = %f\n", compress_time); printf("compressed data file = %s\n", outputFilePath); - delete[]data; - delete[]bytes; + delete[] data; + delete[] bytes; } -template -void decompress(char *inPath, char *cmpPath, char *decPath, - SZ::Config conf, - int binaryOutput, int printCmpResults) { - +template +void decompress(char *inPath, char *cmpPath, char *decPath, SZ3::Config &conf, int binaryOutput, int printCmpResults) { size_t cmpSize; - auto cmpData = SZ::readfile(cmpPath, cmpSize); + auto cmpData = SZ3::readfile(cmpPath, cmpSize); - SZ::Timer timer(true); - T *decData = SZ_decompress(conf, cmpData.get(), cmpSize); + SZ3::Timer timer(true); + auto decData = SZ_decompress(conf, cmpData.get(), cmpSize); double compress_time = timer.stop(); char outputFilePath[1024]; if (decPath == nullptr) { - sprintf(outputFilePath, "%s.out", cmpPath); + snprintf(outputFilePath, 1024, "%s.out", cmpPath); } else { strcpy(outputFilePath, decPath); } if (binaryOutput == 1) { - SZ::writefile(outputFilePath, decData, conf.num); + SZ3::writefile(outputFilePath, decData, conf.num); } else { - SZ::writeTextFile(outputFilePath, decData, conf.num); + SZ3::writeTextFile(outputFilePath, decData, conf.num); } if (printCmpResults) { - //compute the distortion / compression errors... + // compute the distortion / compression errors... size_t totalNbEle; - auto ori_data = SZ::readfile(inPath, totalNbEle); + auto ori_data = SZ3::readfile(inPath, totalNbEle); assert(totalNbEle == conf.num); - SZ::verify(ori_data.get(), decData, conf.num); + SZ3::verify(ori_data.get(), decData, conf.num); } - delete[]decData; + delete[] decData; printf("compression ratio = %f\n", conf.num * sizeof(T) * 1.0 / cmpSize); printf("decompression time = %f seconds.\n", compress_time); @@ -188,6 +190,7 @@ void decompress(char *inPath, char *cmpPath, char *decPath, int main(int argc, char *argv[]) { bool binaryOutput = true; int printCmpResults = 0; + int printMeta = 0; bool compression = false; bool decompression = false; int dataType = SZ_FLOAT; @@ -201,7 +204,7 @@ int main(int argc, char *argv[]) { char *errBound = nullptr; char *absErrorBound = nullptr; char *relErrorBound = nullptr; - char *pwrErrorBound = nullptr; + // char *pwrErrorBound = nullptr; char *psnrErrorBound = nullptr; char *normErrorBound = nullptr; @@ -213,9 +216,8 @@ int main(int argc, char *argv[]) { size_t r1 = 0; size_t i = 0; - int status; - if (argc == 1) - usage(); + // int status; + if (argc == 1) usage(); int width = -1; for (i = 1; i < argc; i++) { @@ -231,7 +233,13 @@ int main(int argc, char *argv[]) { usage(); exit(0); case 'v': - printf("version: %s\n", SZ3_VER); + printf("SZ3 Version: %s\n", SZ3_VER); + printf("SZ3 Data Format Version: %s\n", SZ3_DATA_VER); + printf("\nThird-party libraries copyright notices:\n"); + printf("----------------------------------------\n"); + printf("ska_hash:\n"); + printf(" Copyright (c) 2017 Malte Skarupke\n"); + printf(" Licensed under the Boost Software License - Version 1.0\n"); exit(0); case 'b': binaryOutput = true; @@ -242,6 +250,9 @@ int main(int argc, char *argv[]) { case 'a': printCmpResults = 1; break; + case 'p': + printMeta = 1; + break; case 'z': compression = true; if (i + 1 < argc) { @@ -282,79 +293,66 @@ int main(int argc, char *argv[]) { } break; case 'i': - if (++i == argc) - usage(); + if (++i == argc) usage(); inPath = argv[i]; break; case 'o': - if (++i == argc) - usage(); + if (++i == argc) usage(); decPath = argv[i]; break; case 's': sz2mode = true; - if (++i == argc) - usage(); + if (++i == argc) usage(); cmpPath = argv[i]; break; case 'c': - if (++i == argc) - usage(); + if (++i == argc) usage(); conPath = argv[i]; break; case '1': - if (++i == argc || sscanf(argv[i], "%zu", &r1) != 1) - usage(); + if (++i == argc || sscanf(argv[i], "%zu", &r1) != 1) usage(); break; case '2': - if (++i == argc || sscanf(argv[i], "%zu", &r1) != 1 || - ++i == argc || sscanf(argv[i], "%zu", &r2) != 1) + if (++i == argc || sscanf(argv[i], "%zu", &r1) != 1 || ++i == argc || sscanf(argv[i], "%zu", &r2) != 1) usage(); break; case '3': - if (++i == argc || sscanf(argv[i], "%zu", &r1) != 1 || - ++i == argc || sscanf(argv[i], "%zu", &r2) != 1 || - ++i == argc || sscanf(argv[i], "%zu", &r3) != 1) + if (++i == argc || sscanf(argv[i], "%zu", &r1) != 1 || ++i == argc || + sscanf(argv[i], "%zu", &r2) != 1 || ++i == argc || sscanf(argv[i], "%zu", &r3) != 1) usage(); break; case '4': - if (++i == argc || sscanf(argv[i], "%zu", &r1) != 1 || - ++i == argc || sscanf(argv[i], "%zu", &r2) != 1 || - ++i == argc || sscanf(argv[i], "%zu", &r3) != 1 || + if (++i == argc || sscanf(argv[i], "%zu", &r1) != 1 || ++i == argc || + sscanf(argv[i], "%zu", &r2) != 1 || ++i == argc || sscanf(argv[i], "%zu", &r3) != 1 || ++i == argc || sscanf(argv[i], "%zu", &r4) != 1) usage(); break; case 'M': - if (++i == argc) - usage(); + if (++i == argc) usage(); errBoundMode = argv[i]; if (i + 1 < argc && argv[i + 1][0] != '-') { errBound = argv[++i]; } break; case 'A': - if (++i == argc) - usage(); + if (++i == argc) usage(); absErrorBound = argv[i]; break; case 'R': - if (++i == argc) - usage(); + if (++i == argc) usage(); relErrorBound = argv[i]; break; -// case 'P': -// if (++i == argc) -// usage(); -// pwrErrorBound = argv[i]; -// break; + // case 'P': + // if (++i == argc) + // usage(); + // pwrErrorBound = argv[i]; + // break; case 'N': - if (++i == argc) - usage(); + if (++i == argc) usage(); normErrorBound = argv[i]; break; case 'S': - if (++i == argc) - usage(); + if (++i == argc) usage(); psnrErrorBound = argv[i]; break; default: @@ -379,11 +377,11 @@ int main(int argc, char *argv[]) { if (inPath != nullptr && cmpPath == nullptr && decPath != nullptr) { compression = true; decompression = true; - sprintf(cmpPathTmp, "%s.sz.tmp", inPath); + snprintf(cmpPathTmp, 1024, "%s.sz.tmp", inPath); cmpPath = cmpPathTmp; delCmpPath = true; } - if (inPath == nullptr || errBoundMode == nullptr) { + if (inPath == nullptr || (errBoundMode == nullptr && conPath == nullptr)) { compression = false; } if (!compression && !decompression) { @@ -391,15 +389,15 @@ int main(int argc, char *argv[]) { exit(0); } - SZ::Config conf; + SZ3::Config conf; if (r2 == 0) { - conf = SZ::Config(r1); + conf = SZ3::Config(r1); } else if (r3 == 0) { - conf = SZ::Config(r2, r1); + conf = SZ3::Config(r2, r1); } else if (r4 == 0) { - conf = SZ::Config(r3, r2, r1); + conf = SZ3::Config(r3, r2, r1); } else { - conf = SZ::Config(r4, r3, r2, r1); + conf = SZ3::Config(r4, r3, r2, r1); } if (compression && conPath != nullptr) { conf.loadcfg(conPath); @@ -421,30 +419,29 @@ int main(int argc, char *argv[]) { conf.l2normErrorBound = atof(normErrorBound); } } - if (strcmp(errBoundMode, SZ::EB_STR[SZ::EB_ABS]) == 0) { - conf.errorBoundMode = SZ::EB_ABS; + + SZ3::match_enum(errBoundMode, SZ3::EB_MAP, conf.errorBoundMode); + if (strcmp(errBoundMode, "VR_REL") == 0) { + conf.errorBoundMode = SZ3::EB_REL; + } + if (conf.errorBoundMode == SZ3::EB_ABS) { if (errBound != nullptr) { conf.absErrorBound = atof(errBound); } - } else if (strcmp(errBoundMode, SZ::EB_STR[SZ::EB_REL]) == 0 || strcmp(errBoundMode, "VR_REL") == 0) { - conf.errorBoundMode = SZ::EB_REL; + } else if (conf.errorBoundMode == SZ3::EB_REL) { if (errBound != nullptr) { conf.relErrorBound = atof(errBound); } - } else if (strcmp(errBoundMode, SZ::EB_STR[SZ::EB_PSNR]) == 0) { - conf.errorBoundMode = SZ::EB_PSNR; + } else if (conf.errorBoundMode == SZ3::EB_PSNR) { if (errBound != nullptr) { conf.psnrErrorBound = atof(errBound); } - } else if (strcmp(errBoundMode, SZ::EB_STR[SZ::EB_L2NORM]) == 0) { - conf.errorBoundMode = SZ::EB_L2NORM; + } else if (conf.errorBoundMode == SZ3::EB_L2NORM) { if (errBound != nullptr) { conf.l2normErrorBound = atof(errBound); } - } else if (strcmp(errBoundMode, SZ::EB_STR[SZ::EB_ABS_AND_REL]) == 0) { - conf.errorBoundMode = SZ::EB_ABS_AND_REL; - } else if (strcmp(errBoundMode, SZ::EB_STR[SZ::EB_ABS_OR_REL]) == 0) { - conf.errorBoundMode = SZ::EB_ABS_OR_REL; + } else if (conf.errorBoundMode == SZ3::EB_ABS_AND_REL) { + } else if (conf.errorBoundMode == SZ3::EB_ABS_OR_REL) { } else { printf("Error: wrong error bound mode setting by using the option '-M'\n"); usage(); @@ -453,15 +450,16 @@ int main(int argc, char *argv[]) { } if (compression) { - if (dataType == SZ_FLOAT) { compress(inPath, cmpPath, conf); +#if (!SZ3_DEBUG_TIMINGS) } else if (dataType == SZ_DOUBLE) { compress(inPath, cmpPath, conf); } else if (dataType == SZ_INT32) { compress(inPath, cmpPath, conf); } else if (dataType == SZ_INT64) { compress(inPath, cmpPath, conf); +#endif } else { printf("Error: data type not supported \n"); usage(); @@ -476,18 +474,23 @@ int main(int argc, char *argv[]) { if (dataType == SZ_FLOAT) { decompress(inPath, cmpPath, decPath, conf, binaryOutput, printCmpResults); +#if (!SZ3_DEBUG_TIMINGS) } else if (dataType == SZ_DOUBLE) { decompress(inPath, cmpPath, decPath, conf, binaryOutput, printCmpResults); } else if (dataType == SZ_INT32) { decompress(inPath, cmpPath, decPath, conf, binaryOutput, printCmpResults); } else if (dataType == SZ_INT64) { decompress(inPath, cmpPath, decPath, conf, binaryOutput, printCmpResults); +#endif } else { printf("Error: data type not supported \n"); usage(); exit(0); } } + if (printMeta) { + conf.print(); + } if (delCmpPath) { remove(cmpPath); } diff --git a/lib/SZ3/tools/sz3/sz3_customized_demo.cpp b/lib/SZ3/tools/sz3/sz3_customized_demo.cpp new file mode 100644 index 00000000..c661e11a --- /dev/null +++ b/lib/SZ3/tools/sz3/sz3_customized_demo.cpp @@ -0,0 +1,179 @@ +/** + * This is a demo for creating your own compressor in SZ3. + * Essentially, there are two main steps: first, you need to implement your own compressor. + * Please check out the 4 examples provided in the main function for implementing your own compressor. + * + * Second, you need to run your compressor with SZ3 executable or a new executable. + * This demon code is a new executable, so you have control over the parameter parsing, IO, etc. + * If you want to use the SZ3 executable to run your own compressor, please follow the steps below: + * 1. Add a new ALGO in SZ3 Config + * 2. Add a new hpp file in "include/SZ3/api/impl/" to assemble your compressor, one example easy to follow is + * "include/SZ3/api/impl/SZAlgoNopred.hpp" + * 3. Add the corresponding code in "include/SZ3/api/impl/SZDispatcher.hpp" to dispatch the new compressor. + * 4. When executing the SZ3 executable, use -c to specify the config file. The config file should use the new ALGO. + * Example config file is "tools/sz3/sz3.config". + */ + +#include "SZ3/api/sz.hpp" +using namespace SZ3; + +template +void SZ3_interpolation_compress(Config &conf, T *data, char *dst, size_t &outSize) { + calAbsErrorBound(conf, data); + + auto sz = make_compressor_sz_generic( + make_decomposition_interpolation(conf, LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)), + HuffmanEncoder(), Lossless_zstd()); + sz->compress(conf, data, reinterpret_cast(dst), outSize); +} + +template +void SZ3_interpolation_decompress(const Config &conf, const char *cmpData, size_t cmpSize, T *decData) { + auto cmpDataPos = reinterpret_cast(cmpData); + auto sz = make_compressor_sz_generic( + make_decomposition_interpolation(conf, LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2)), + HuffmanEncoder(), Lossless_zstd()); + sz->decompress(conf, cmpDataPos, cmpSize, decData); +} + +template +class MyDecomposition : public concepts::DecompositionInterface { + public: + MyDecomposition(const Config &conf) : num(conf.num), quantizer(conf.absErrorBound) {} + + std::vector compress(const Config &conf, T *data) override { + // write your own logic here + std::vector output(num); + for (size_t i = 0; i < num; i++) { + output[i] = quantizer.quantize_and_overwrite(data[i], 0); // this will replace the value of data[i] + } + return output; + } + + T *decompress(const Config &conf, std::vector &quant_inds, T *dec_data) override { + // write your own logic here + for (size_t i = 0; i < num; i++) { + dec_data[i] = quantizer.recover(0, quant_inds[i]); + } + return dec_data; + } + + void save(uchar *&c) override { + write(num, c); + quantizer.save(c); + } + + void load(const uchar *&c, size_t &remaining_length) override { + read(num, c, remaining_length); + quantizer.load(c, remaining_length); + } + + std::pair get_out_range() override { return std::make_pair(0, 0); } + + private: + size_t num; + LinearQuantizer quantizer; +}; + +template +void SZ3_customized_compress(Config &conf, T *data, char *dst, size_t &outSize) { + calAbsErrorBound(conf, data); + + auto sz = make_compressor_sz_generic(MyDecomposition(conf), HuffmanEncoder(), Lossless_zstd()); + + outSize = sz->compress(conf, data, reinterpret_cast(dst), outSize); +} + +template +void SZ3_customized_decompress(const Config &conf, const char *cmpData, size_t cmpSize, T *decData) { + auto cmpDataPos = reinterpret_cast(cmpData); + auto sz = make_compressor_sz_generic(MyDecomposition(conf), HuffmanEncoder(), Lossless_zstd()); + + sz->decompress(conf, cmpDataPos, cmpSize, decData); +} + +int main(int argc, char **argv) { + if (argc < 2) { + std::cout << "SZ v" << SZ3_VER << std::endl; + std::cout << "usage: " << argv[0] << " data_file -num_dim dim0 .. dimn ABS" << std::endl; + std::cout << "example: " << argv[0] << " qmcpack.dat -3 33120 69 69 1e-3" << std::endl; + return 0; + } + + std::string src_file_name = argv[1]; + + // read dimensions + int dim = atoi(argv[2] + 1); + assert(1 <= dim && dim <= 4); + if (dim != 3) { + printf("This demo only supports 3D data.\n"); + return 0; + } + int argp = 3; + std::vector dims(dim); + for (int i = 0; i < dim; i++) { + dims[i] = atoi(argv[argp++]); + } + + // create config with data dimensions + Config conf; + conf.setDims(dims.begin(), dims.end()); + + // prepare input and output buffers + std::vector input_data(conf.num); + SZ3::readfile(argv[1], conf.num, input_data.data()); + std::vector input_data_copy(input_data); + std::vector dec_data(conf.num); + auto dec_data_pos = dec_data.data(); + std::vector cmpData(conf.num * sizeof(float) * 2); + size_t cmpSize = cmpData.size(); + + // set error bound (you can also use relative error bound EB_REL etc.) + conf.errorBoundMode = EB_ABS; + conf.absErrorBound = atof(argv[argp++]); + + // ================================================================================ + // There are 4 customization examples, you just need to pick up one. + + // Example 1: using SZ3 API defined in SZ3/API/sz.hpp + // SZ3 has some built-in compressors with fixed modules, for example, the interpolation compressor uses + // interpolation decomposition, linear quantizer, and huffman encoder. + // The API takes the SZ3::Config as parameter which allows some basic customization, such as interpolation + // method (linear or cubic) and the quantization levels. + SZ_compress(conf, input_data.data(), cmpData.data(), cmpSize); + SZ_decompress(conf, cmpData.data(), cmpSize, dec_data_pos); + + // Example 2: using provided modules to assemble a generic compressor + // The generic compressor follow the decomposition -> encoding -> lossless pipeline. + // You can use any decomposition, encoder, and lossless modules to form such a compressor, including bypass + // modules. This example assembles the interpolation compressor with interpolation decomposition, linear + // quantizer, and huffman encoder. You can change any of the modules to get a new compressor that is not + // built-in in SZ3. + SZ3_interpolation_compress(conf, input_data.data(), cmpData.data(), cmpSize); + SZ3_interpolation_decompress(conf, cmpData.data(), cmpSize, dec_data_pos); + + // Example 3: using new modules to assemble a generic compressor + // This is an extension of Example 2, which uses a custom decomposition module instead of built-in ones. + // MyDecomposition is the new decomposition module, which implements the DecompositionInterface. + // We put the source code of MyDecomposition here for demonstration purpose. + // You should put your new modules in the corresponding module folders (include/SZ3/decomposition for Decomposition + // modules). + SZ3_customized_compress(conf, input_data.data(), cmpData.data(), cmpSize); + SZ3_customized_decompress(conf, cmpData.data(), cmpSize, dec_data_pos); + + // Example 4: assemble a specialized compressor + // If your compressor doesn't follow the decomposition -> encoding -> lossless pipeline, + // you can implement your own compressor by implementing the CompressorInterface + // Please check out "SZ3/compressor/specialized/SZExaaltCompressor.hpp". It contains two separate encoding process. + + // ================================================================================ + + // In the end, you can use the SZ3 API to verify the decompressed data. + SZ3::verify(input_data_copy.data(), dec_data_pos, conf.num); + + // write compressed data and decompressed data to the same folder as original data + writefile((src_file_name + ".demo").data(), cmpData.data(), cmpSize); + writefile((src_file_name + ".demo.out").data(), dec_data.data(), conf.num); + + return 0; +} diff --git a/lib/SZ3/tools/sz3/sz3_smoke_test.cpp b/lib/SZ3/tools/sz3/sz3_smoke_test.cpp index e6c390dc..ea60ca21 100644 --- a/lib/SZ3/tools/sz3/sz3_smoke_test.cpp +++ b/lib/SZ3/tools/sz3/sz3_smoke_test.cpp @@ -4,19 +4,22 @@ #include +#include "SZ3/compressor/specialized/SZTruncateCompressor.hpp" +#include "SZ3/encoder/ArithmeticEncoder.hpp" +#include "SZ3/encoder/BypassEncoder.hpp" +#include "SZ3/encoder/RunlengthEncoder.hpp" +#include "SZ3/lossless/Lossless_bypass.hpp" int main(int argc, char **argv) { - - std::vector dims({100, 200, 300}); - SZ::Config conf({dims[0], dims[1], dims[2]}); - conf.cmprAlgo = SZ::ALGO_INTERP_LORENZO; - conf.errorBoundMode = SZ::EB_ABS; // refer to def.hpp for all supported error bound mode - conf.absErrorBound = 1E-3; // absolute error bound 1e-3 - + SZ3::Config conf({dims[0], dims[1], dims[2]}); + conf.cmprAlgo = SZ3::ALGO_INTERP_LORENZO; + conf.errorBoundMode = SZ3::EB_ABS; // refer to def.hpp for all supported error bound mode + conf.absErrorBound = 1E-3; // absolute error bound 1e-3 std::vector input_data(conf.num); std::vector dec_data(conf.num); + std::vector stride({dims[1] * dims[2], dims[2], 1}); for (size_t i = 0; i < dims[0]; ++i) { for (size_t j = 0; j < dims[1]; ++j) { @@ -24,27 +27,27 @@ int main(int argc, char **argv) { double x = static_cast(i) - static_cast(dims[0]) / 2.0; double y = static_cast(j) - static_cast(dims[1]) / 2.0; double z = static_cast(k) - static_cast(dims[2]) / 2.0; - input_data[i * dims[1] + j] = static_cast(.0001 * y * sin(y) + .0005 * cos(pow(x, 2) + x) + z); + input_data[i * stride[0] + j * stride[1] + k] = + static_cast(.0001 * y * sin(y) + .0005 * cos(pow(x, 2) + x) + z); } } } std::vector input_data_copy(input_data); - + conf.openmp = true; size_t cmpSize; char *cmpData = SZ_compress(conf, input_data.data(), cmpSize); auto dec_data_p = dec_data.data(); SZ_decompress(conf, cmpData, cmpSize, dec_data_p); - double max_err=0.0; + double max_err = 0.0; for (size_t i = 0; i < conf.num; i++) { if (fabs(dec_data[i] - input_data_copy[i]) > max_err) { max_err = fabs(dec_data[i] - input_data_copy[i]); } } printf("Smoke test %s", max_err <= conf.absErrorBound ? "passed" : "failed"); -// printf("%lu ", conf.num); + // printf("%lu ", conf.num); + delete[] cmpData; return 0; - - } diff --git a/lib/SZ3/tools/sz3c/CMakeLists.txt b/lib/SZ3/tools/sz3c/CMakeLists.txt index c84b888f..e389a4ac 100644 --- a/lib/SZ3/tools/sz3c/CMakeLists.txt +++ b/lib/SZ3/tools/sz3c/CMakeLists.txt @@ -8,6 +8,8 @@ target_link_libraries( PUBLIC SZ3 ) +target_compile_definitions(SZ3c PRIVATE SZ3C_EXPORTS) + target_include_directories( SZ3c PUBLIC diff --git a/lib/SZ3/tools/sz3c/include/sz3c.h b/lib/SZ3/tools/sz3c/include/sz3c.h index ae76a5d1..12da9e59 100644 --- a/lib/SZ3/tools/sz3c/include/sz3c.h +++ b/lib/SZ3/tools/sz3c/include/sz3c.h @@ -9,7 +9,7 @@ /** Begin errorbound mode in SZ2 (defines.h) **/ #define ABS 0 #define REL 1 -#define VR_REL 1 //alternative name to REL +#define VR_REL 1 // alternative name to REL #define ABS_AND_REL 2 #define ABS_OR_REL 3 #define PSNR 4 @@ -35,18 +35,30 @@ #define SZ_INT64 9 /** End dataType in SZ2 (defines.h) **/ +// Windows-only notation for exporting functions from a DLL +#ifdef _WIN32 +#ifdef SZ3C_EXPORTS +#define SZ3C_API __declspec(dllexport) +#else +#define SZ3C_API __declspec(dllimport) +#endif +#else +#define SZ3C_API +#endif + #ifdef __cplusplus extern "C" { #endif -unsigned char *SZ_compress_args(int dataType, void *data, size_t *outSize, - int errBoundMode, double absErrBound, double relBoundRatio, double pwrBoundRatio, - size_t r5, size_t r4, size_t r3, size_t r2, size_t r1); +SZ3C_API unsigned char *SZ_compress_args(int dataType, void *data, size_t *outSize, int errBoundMode, + double absErrBound, double relBoundRatio, double pwrBoundRatio, size_t r5, + size_t r4, size_t r3, size_t r2, size_t r1); -void *SZ_decompress(int dataType, unsigned char *bytes, size_t byteLength, - size_t r5, size_t r4, size_t r3, size_t r2, size_t r1); +SZ3C_API void *SZ_decompress(int dataType, unsigned char *bytes, size_t byteLength, size_t r5, size_t r4, size_t r3, + size_t r2, size_t r1); +SZ3C_API void free_buf(void *p); #ifdef __cplusplus } #endif -#endif //SZ3_SZ3C_H +#endif // SZ3_SZ3C_H diff --git a/lib/SZ3/tools/sz3c/src/sz3c.cpp b/lib/SZ3/tools/sz3c/src/sz3c.cpp index f15f9e2d..61ef2938 100644 --- a/lib/SZ3/tools/sz3c/src/sz3c.cpp +++ b/lib/SZ3/tools/sz3c/src/sz3c.cpp @@ -3,31 +3,30 @@ // #include "sz3c.h" -#include "SZ3/api/sz.hpp" - -using namespace SZ; +#include "SZ3/api/sz.hpp" -unsigned char *SZ_compress_args(int dataType, void *data, size_t *outSize, - int errBoundMode, double absErrBound, double relBoundRatio, double pwrBoundRatio, - size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) { +using namespace SZ3; - SZ::Config conf; +unsigned char *SZ_compress_args(int dataType, void *data, size_t *outSize, int errBoundMode, double absErrBound, + double relBoundRatio, double pwrBoundRatio, size_t r5, size_t r4, size_t r3, size_t r2, + size_t r1) { + SZ3::Config conf; if (r2 == 0) { - conf = SZ::Config(r1); + conf = SZ3::Config(r1); } else if (r3 == 0) { - conf = SZ::Config(r2, r1); + conf = SZ3::Config(r2, r1); } else if (r4 == 0) { - conf = SZ::Config(r3, r2, r1); + conf = SZ3::Config(r3, r2, r1); } else if (r5 == 0) { - conf = SZ::Config(r4, r3, r2, r1); + conf = SZ3::Config(r4, r3, r2, r1); } else { - conf = SZ::Config(r5 * r4, r3, r2, r1); + conf = SZ3::Config(r5 * r4, r3, r2, r1); } -// conf.loadcfg(conPath); + // conf.loadcfg(conPath); conf.absErrorBound = absErrBound; conf.relErrorBound = relBoundRatio; -// conf.pwrErrorBound = pwrBoundRatio; + // conf.pwrErrorBound = pwrBoundRatio; if (errBoundMode == ABS) { conf.errorBoundMode = EB_ABS; } else if (errBoundMode == REL) { @@ -41,27 +40,28 @@ unsigned char *SZ_compress_args(int dataType, void *data, size_t *outSize, exit(0); } - unsigned char *cmpr_data = NULL; + unsigned char *cmpr_data = nullptr; if (dataType == SZ_FLOAT) { - cmpr_data = (unsigned char *) SZ_compress(conf, (float *) data, *outSize); + cmpr_data = reinterpret_cast(SZ_compress(conf, static_cast(data), *outSize)); +#if (!SZ3_DEBUG_TIMINGS) } else if (dataType == SZ_DOUBLE) { - cmpr_data = (unsigned char *) SZ_compress(conf, (double *) data, *outSize); + cmpr_data = reinterpret_cast(SZ_compress(conf, static_cast(data), *outSize)); +#endif } else { printf("dataType %d not support\n", dataType); exit(0); } - //convert c++ memory (by 'new' operator) to c memory (by malloc) - auto *cmpr = (unsigned char *) malloc(*outSize); + // convert c++ memory (by 'new' operator) to c memory (by malloc) + auto *cmpr = static_cast(malloc(*outSize)); memcpy(cmpr, cmpr_data, *outSize); - delete[]cmpr_data; + delete[] cmpr_data; return cmpr; - } -void *SZ_decompress(int dataType, unsigned char *bytes, size_t byteLength, - size_t r5, size_t r4, size_t r3, size_t r2, size_t r1) { +void *SZ_decompress(int dataType, unsigned char *bytes, size_t byteLength, size_t r5, size_t r4, size_t r3, size_t r2, + size_t r1) { size_t n = 0; if (r2 == 0) { n = r1; @@ -75,17 +75,21 @@ void *SZ_decompress(int dataType, unsigned char *bytes, size_t byteLength, n = r1 * r2 * r3 * r4 * r5; } - SZ::Config conf; + SZ3::Config conf; if (dataType == SZ_FLOAT) { - auto dec_data = (float *) malloc(n * sizeof(float)); - SZ_decompress(conf, (char *) bytes, byteLength, dec_data); + auto dec_data = static_cast(malloc(n * sizeof(float))); + SZ_decompress(conf, reinterpret_cast(bytes), byteLength, dec_data); return dec_data; +#if (!SZ3_DEBUG_TIMINGS) } else if (dataType == SZ_DOUBLE) { - auto dec_data = (double *) malloc(n * sizeof(double)); - SZ_decompress(conf, (char *) bytes, byteLength, dec_data); + auto dec_data = static_cast(malloc(n * sizeof(double))); + SZ_decompress(conf, reinterpret_cast(bytes), byteLength, dec_data); return dec_data; +#endif } else { printf("dataType %d not support\n", dataType); exit(0); } -} \ No newline at end of file +} + +void free_buf(void *p) { free(p); } diff --git a/lib/SZ3/tools/test/CMakeLists.txt b/lib/SZ3/tools/test/CMakeLists.txt new file mode 100644 index 00000000..a5916908 --- /dev/null +++ b/lib/SZ3/tools/test/CMakeLists.txt @@ -0,0 +1,30 @@ +enable_testing() +# Try to find GTest locally +find_package(GTest QUIET) +if(NOT GTest_FOUND) + message(STATUS "GTest not found locally; fetching from GitHub...") + include(FetchContent) + FetchContent_Declare( + googletest + GIT_REPOSITORY https://github.com/google/googletest.git + GIT_TAG v1.16.0 + ) + FetchContent_MakeAvailable(googletest) +else() + message(STATUS "Using locally installed GTest") +endif() + +include(CTest) +include(GoogleTest) + +# Collect all test source files +file(GLOB TEST_SOURCES "${CMAKE_SOURCE_DIR}/tools/test/modules/*.cpp") + +foreach (TEST_SRC IN LISTS TEST_SOURCES) + get_filename_component(TEST_NAME ${TEST_SRC} NAME_WE) + message(STATUS "Test target = ${TEST_NAME}") + add_executable(${TEST_NAME} ${TEST_SRC}) + target_link_libraries(${TEST_NAME} PRIVATE GTest::gtest_main SZ3) + # Automatically discover tests for this executable + gtest_discover_tests(${TEST_NAME}) +endforeach() \ No newline at end of file diff --git a/lib/SZ3/tools/test/deprecated/SZBlockInterpolationCompressor.hpp b/lib/SZ3/tools/test/deprecated/SZBlockInterpolationCompressor.hpp new file mode 100644 index 00000000..cd7ec88e --- /dev/null +++ b/lib/SZ3/tools/test/deprecated/SZBlockInterpolationCompressor.hpp @@ -0,0 +1,489 @@ +#ifndef SZ3_BLOCK_INTERPOLATION_COMPRESSOR_HPP +#define SZ3_BLOCK_INTERPOLATION_COMPRESSOR_HPP + +#include +#include + +#include "SZ3/def.hpp" +#include "SZ3/encoder/Encoder.hpp" +#include "SZ3/lossless/Lossless.hpp" +#include "SZ3/predictor/Predictor.hpp" +#include "SZ3/quantizer/Quantizer.hpp" +#include "SZ3/utils/Config.hpp" +#include "SZ3/utils/FileUtil.hpp" +#include "SZ3/utils/Interpolators.hpp" +#include "SZ3/utils/Iterator.hpp" +#include "SZ3/utils/MemoryUtil.hpp" + +/** + * DO NOT use this one + * It will be replaced by QOZ + */ +namespace SZ3 { +template +class SZBlockInterpolationCompressor { + public: + SZBlockInterpolationCompressor(Quantizer quantizer, Encoder encoder, Lossless lossless) + : quantizer(quantizer), encoder(encoder), lossless(lossless) { + static_assert(std::is_base_of, Quantizer>::value, + "must implement the quatizer interface"); + static_assert(std::is_base_of, Encoder>::value, + "must implement the encoder interface"); + static_assert(std::is_base_of::value, + "must implement the lossless interface"); + } + + T *decompress(const Config &conf, uchar const *cmpData, size_t cmpSize, T *decData) { + uchar *buffer = nullptr; + size_t bufferSize = 0; + lossless.decompress(cmpData, cmpSize, buffer, bufferSize); + size_t remaining_length = bufferSize; + uchar const *buffer_pos = buffer; + + read(global_dimensions.data(), N, buffer_pos, remaining_length); + num_elements = 1; + for (const auto &d : global_dimensions) { + num_elements *= d; + } + read(block_size, buffer_pos, remaining_length); + read(interpolator_id, buffer_pos, remaining_length); + read(direction_sequence_id, buffer_pos, remaining_length); + + quantizer.load(buffer_pos, remaining_length); + encoder.load(buffer_pos, remaining_length); + quant_inds = encoder.decode(buffer_pos, num_elements); + + encoder.postprocess_decode(); + + free(buffer); + + auto range = std::make_shared>(decData, std::begin(global_dimensions), + std::end(global_dimensions), block_size, 0); + + quantizer.predecompress_data(); + + // debug.resize(num_elements, 0); + + auto inter_begin = range->begin(); + auto inter_end = range->end(); + // size_t block_idx = 0; + + for (auto block = inter_begin; block != inter_end; block++) { + auto interp_end_idx = block.get_global_index(); + uint max_interp_level = 1; + auto block_global_idx = block.get_global_index(); + for (int i = 0; i < N; i++) { + size_t block_dim = (block_global_idx[i] + block_size > global_dimensions[i]) + ? global_dimensions[i] - block_global_idx[i] + : block_size; + interp_end_idx[i] += block_dim - 1; + if (max_interp_level < ceil(log2(block_dim))) { + max_interp_level = static_cast(ceil(log2(block_dim))); + } + } + + *block = quantizer.recover(0, quant_inds[quant_index++]); + + for (uint level = max_interp_level; level > 0 && level <= max_interp_level; level--) { + size_t stride_ip = 1U << (level - 1); + block_interpolation(decData, block.get_global_index(), interp_end_idx, PB_recover, + interpolators[interpolator_id], direction_sequence_id, stride_ip); + } + } + + // assert(quant_index == num_elements); + quantizer.postdecompress_data(); + + return decData; + } + + // compress given the error bound + size_t compress(const Config &conf, T *data, uchar *cmpData, size_t cmpCap) { + block_size = conf.blockSize; + num_elements = conf.num; + interpolator_id = conf.interpAlgo; + direction_sequence_id = conf.interpDirection; + + std::copy_n(conf.dims.begin(), N, global_dimensions.begin()); + + quant_inds.clear(); + auto range = std::make_shared>(data, std::begin(global_dimensions), + std::end(global_dimensions), block_size, 0); + quantizer.precompress_data(); + for (auto block = range->begin(); block != range->end(); ++block) { + auto block_global_idx = block.get_global_index(); + auto interp_end_idx = block.get_global_index(); + uint max_interp_level = 1; + for (auto i = 0; i < static_cast(N); i++) { + size_t block_dim = (block_global_idx[i] + block_size > global_dimensions[i]) + ? global_dimensions[i] - block_global_idx[i] + : block_size; + interp_end_idx[i] += block_dim - 1; + if (max_interp_level < ceil(log2(block_dim))) { + max_interp_level = static_cast(ceil(log2(block_dim))); + } + } + quant_inds.push_back(quantizer.quantize_and_overwrite(*block, 0)); + + for (uint level = max_interp_level; level > 0 && level <= max_interp_level; level--) { + uint stride_ip = 1U << (level - 1); + block_interpolation(data, block.get_global_index(), interp_end_idx, PB_predict_overwrite, + interpolators[interpolator_id], direction_sequence_id, stride_ip); + } + } + quantizer.postcompress_data(); + // predictor.print(); + + if (quantizer.get_out_range().first != 0) { + throw std::runtime_error("The output range of the quantizer must start from 0 for this compressor"); + } + encoder.preprocess_encode(quant_inds, quantizer.get_out_range().second); + size_t bufferSize = 1.2 * (quantizer.size_est() + encoder.size_est() + sizeof(T) * quant_inds.size()); + + auto *buffer = static_cast(malloc(bufferSize)); + uchar *buffer_pos = buffer; + + write(global_dimensions.data(), N, buffer_pos); + write(block_size, buffer_pos); + write(interpolator_id, buffer_pos); + write(direction_sequence_id, buffer_pos); + + quantizer.save(buffer_pos); + + encoder.save(buffer_pos); + encoder.encode(quant_inds, buffer_pos); + encoder.postprocess_encode(); + + // assert(buffer_pos - buffer < bufferSize); + + auto cmpSize = lossless.compress(buffer, buffer_pos - buffer, cmpData, cmpCap); + free(buffer); + return cmpSize; + // lossless.postcompress_data(buffer); + + // return lossless_data; + } + + private: + enum PredictorBehavior { PB_predict_overwrite, PB_predict, PB_recover }; + + size_t offset2(std::array idx) { + size_t offset = idx[0]; + for (auto i = 1; i < static_cast(N); i++) { + offset = offset * global_dimensions[i] + idx[i]; + } + return offset; + } + + template + size_t offset(Args &&...args) { + std::array idx{static_cast(std::forward(args))...}; + return offset2(idx); + } + + inline void quantize(T &d, T pred) { quant_inds.push_back(quantizer.quantize_and_overwrite(d, pred)); } + + inline void recover(T &d, T pred) { d = quantizer.recover(pred, quant_inds[quant_index++]); } + + double block_interpolation_1d(T *data, size_t begin, size_t end, size_t stride, const std::string &interp_func, + const PredictorBehavior pb) { + size_t n = (end - begin) / stride + 1; + if (n <= 1) { + return 0; + } + double predict_error = 0; + + size_t stride3x = 3 * stride; + size_t stride5x = 5 * stride; + if (interp_func == "linear" || n < 5) { + if (pb == PB_predict_overwrite) { + for (size_t i = 1; i + 1 < n; i += 2) { + T *d = data + begin + i * stride; + quantize(*d, interp_linear(*(d - stride), *(d + stride))); + } + if (n % 2 == 0) { + T *d = data + begin + (n - 1) * stride; + if (n < 4) { + quantize(*d, *(d - stride)); + } else { + quantize(*d, interp_linear1(*(d - stride3x), *(d - stride))); + } + } + } else { + for (size_t i = 1; i + 1 < n; i += 2) { + T *d = data + begin + i * stride; + recover(*d, interp_linear(*(d - stride), *(d + stride))); + } + if (n % 2 == 0) { + T *d = data + begin + (n - 1) * stride; + if (n < 4) { + recover(*d, *(d - stride)); + } else { + recover(*d, interp_linear1(*(d - stride3x), *(d - stride))); + } + } + } + } else { + if (pb == PB_predict_overwrite) { + T *d = data + begin + stride; + quantize(*d, interp_quad_1(*(d - stride), *(d + stride), *(d + stride3x))); + + for (size_t i = 3; i + 3 < n; i += 2) { + d = data + begin + i * stride; + quantize(*d, interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); + } + if (n % 2 == 0) { + d = data + begin + (n - 3) * stride; + quantize(*d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); + d += 2 * stride; + quantize(*d, interp_quad_3(*(d - stride5x), *(d - stride3x), *(d - stride))); + } else { + d = data + begin + (n - 2) * stride; + quantize(*d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); + } + } else { + T *d = data + begin + stride; + recover(*d, interp_quad_1(*(d - stride), *(d + stride), *(d + stride3x))); + + for (size_t i = 3; i + 3 < n; i += 2) { + d = data + begin + i * stride; + recover(*d, interp_cubic(*(d - stride3x), *(d - stride), *(d + stride), *(d + stride3x))); + } + if (n % 2 == 0) { + d = data + begin + (n - 3) * stride; + recover(*d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); + d += 2 * stride; + recover(*d, interp_quad_3(*(d - stride5x), *(d - stride3x), *(d - stride))); + } else { + d = data + begin + (n - 2) * stride; + recover(*d, interp_quad_2(*(d - stride3x), *(d - stride), *(d + stride))); + } + } + } + + return predict_error; + } + + template + typename std::enable_if::type block_interpolation(T *data, std::array begin, + std::array end, + const PredictorBehavior pb, + const std::string &interp_func, + const int direction, uint stride_ip = 1) { + return block_interpolation_1d(data, offset2(begin), offset2(end), stride_ip, interp_func, pb); + } + + template + typename std::enable_if::type block_interpolation(T *data, std::array begin, + std::array end, + const PredictorBehavior pb, + const std::string &interp_func, + const int direction, uint stride_ip = 1) { + double predict_error = 0; + size_t stride_ip2 = stride_ip * 2; + if (direction == 0) { + for (size_t j = begin[1]; j <= end[1]; j += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(begin[0], j), offset(end[0], j), + stride_ip * global_dimensions[1], interp_func, pb); + } + for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { + predict_error += + block_interpolation_1d(data, offset(i, begin[1]), offset(i, end[1]), stride_ip, interp_func, pb); + } + } else { + for (size_t i = begin[0]; i <= end[0]; i += stride_ip2) { + predict_error += + block_interpolation_1d(data, offset(i, begin[1]), offset(i, end[1]), stride_ip, interp_func, pb); + } + for (size_t j = begin[1]; j <= end[1]; j += stride_ip) { + predict_error += block_interpolation_1d(data, offset(begin[0], j), offset(end[0], j), + stride_ip * global_dimensions[1], interp_func, pb); + } + } + return predict_error; + } + + template + typename std::enable_if::type block_interpolation(T *data, std::array begin, + std::array end, + const PredictorBehavior pb, + const std::string &interp_func, + const int direction, uint stride_ip = 1) { + double predict_error = 0; + size_t stride_ip2 = stride_ip * 2; + for (size_t j = begin[1]; j <= end[1]; j += stride_ip2) { + for (size_t k = begin[2]; k <= end[2]; k += stride_ip2) { + for (size_t t = (begin[3] ? begin[3] + stride_ip2 : 0); t <= end[3]; t += stride_ip2) { + predict_error += block_interpolation_1d( + data, offset(begin[0], j, k, t), offset(end[0], j, k, t), + stride_ip * global_dimensions[1] * global_dimensions[2] * global_dimensions[3], interp_func, + pb); + } + } + } + for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { + for (size_t k = begin[2]; k <= end[2]; k += stride_ip2) { + for (size_t t = (begin[3] ? begin[3] + stride_ip2 : 0); t <= end[3]; t += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(i, begin[1], k, t), offset(i, end[1], k, t), + stride_ip * global_dimensions[2] * global_dimensions[3], + interp_func, pb); + } + } + } + for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { + for (size_t j = begin[1]; j <= end[1]; j += stride_ip) { + for (size_t t = (begin[3] ? begin[3] + stride_ip2 : 0); t <= end[3]; t += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(i, j, begin[2], t), offset(i, j, end[2], t), + stride_ip * global_dimensions[3], interp_func, pb); + } + } + } + for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { + for (size_t j = begin[1]; j <= end[1]; j += stride_ip) { + for (size_t k = begin[2]; k <= end[2]; k += stride_ip) { + predict_error += block_interpolation_1d(data, offset(i, j, k, begin[3]), offset(i, j, k, end[3]), + stride_ip, interp_func, pb); + } + } + } + return predict_error; + } + + template + typename std::enable_if::type block_interpolation(T *data, std::array begin, + std::array end, + const PredictorBehavior pb, + const std::string &interp_func, + const int direction, uint stride_ip = 1) { + double predict_error = 0; + size_t stride_ip2 = stride_ip * 2; + + if (direction == 0 || direction == 1) { + for (size_t j = begin[1]; j <= end[1]; j += stride_ip2) { + for (size_t k = begin[2]; k <= end[2]; k += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(begin[0], j, k), offset(end[0], j, k), + stride_ip * global_dimensions[1] * global_dimensions[2], + interp_func, pb); + } + } + if (direction == 0) { + for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { + for (size_t k = begin[2]; k <= end[2]; k += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(i, begin[1], k), offset(i, end[1], k), + stride_ip * global_dimensions[2], interp_func, pb); + } + } + for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { + for (size_t j = begin[1]; j <= end[1]; j += stride_ip) { + predict_error += block_interpolation_1d(data, offset(i, j, begin[2]), offset(i, j, end[2]), + stride_ip, interp_func, pb); + } + } + } else { + for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { + for (size_t j = begin[1]; j <= end[1]; j += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(i, j, begin[2]), offset(i, j, end[2]), + stride_ip, interp_func, pb); + } + } + for (size_t i = begin[0]; i <= end[0]; i += stride_ip) { + for (size_t k = begin[2]; k <= end[2]; k += stride_ip) { + predict_error += block_interpolation_1d(data, offset(i, begin[1], k), offset(i, end[1], k), + stride_ip * global_dimensions[2], interp_func, pb); + } + } + } + + } else if (direction == 2 || direction == 3) { + for (size_t k = begin[0]; k <= end[0]; k += stride_ip2) { + for (size_t j = begin[2]; j <= end[2]; j += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(k, begin[1], j), offset(k, end[1], j), + stride_ip * global_dimensions[2], interp_func, pb); + } + } + if (direction == 2) { + for (size_t i = begin[1]; i <= end[1]; i += stride_ip) { + for (size_t j = begin[2]; j <= end[2]; j += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(begin[0], i, j), offset(end[0], i, j), + stride_ip * global_dimensions[1] * global_dimensions[2], + interp_func, pb); + } + } + for (size_t k = begin[0]; k <= end[0]; k += stride_ip) { + for (size_t i = begin[1]; i <= end[1]; i += stride_ip) { + predict_error += block_interpolation_1d(data, offset(k, i, begin[2]), offset(k, i, end[2]), + stride_ip, interp_func, pb); + } + } + } else { + for (size_t k = begin[0]; k <= end[0]; k += stride_ip2) { + for (size_t i = begin[1]; i <= end[1]; i += stride_ip) { + predict_error += block_interpolation_1d(data, offset(k, i, begin[2]), offset(k, i, end[2]), + stride_ip, interp_func, pb); + } + } + for (size_t i = begin[1]; i <= end[1]; i += stride_ip) { + for (size_t j = begin[2]; j <= end[2]; j += stride_ip) { + predict_error += block_interpolation_1d(data, offset(begin[0], i, j), offset(end[0], i, j), + stride_ip * global_dimensions[1] * global_dimensions[2], + interp_func, pb); + } + } + } + + } else if (direction == 4 || direction == 5) { + for (size_t j = begin[0]; j <= end[0]; j += stride_ip2) { + for (size_t k = begin[1]; k <= end[1]; k += stride_ip2) { + predict_error += block_interpolation_1d(data, offset(j, k, begin[2]), offset(j, k, end[2]), + stride_ip, interp_func, pb); + } + } + if (direction == 4) { + for (size_t k = begin[1]; k <= end[1]; k += stride_ip2) { + for (size_t i = begin[2]; i <= end[2]; i += stride_ip) { + predict_error += block_interpolation_1d(data, offset(begin[0], k, i), offset(end[0], k, i), + stride_ip * global_dimensions[1] * global_dimensions[2], + interp_func, pb); + } + } + for (size_t j = begin[0]; j <= end[0]; j += stride_ip) { + for (size_t i = begin[2]; i <= end[2]; i += stride_ip) { + predict_error += block_interpolation_1d(data, offset(j, begin[1], i), offset(j, end[1], i), + stride_ip * global_dimensions[2], interp_func, pb); + } + } + } else { + for (size_t j = begin[0]; j <= end[0]; j += stride_ip2) { + for (size_t i = begin[2]; i <= end[2]; i += stride_ip) { + predict_error += block_interpolation_1d(data, offset(j, begin[1], i), offset(j, end[1], i), + stride_ip * global_dimensions[2], interp_func, pb); + } + } + for (size_t k = begin[1]; k <= end[1]; k += stride_ip) { + for (size_t i = begin[2]; i <= end[2]; i += stride_ip) { + predict_error += block_interpolation_1d(data, offset(begin[0], k, i), offset(end[0], k, i), + stride_ip * global_dimensions[1] * global_dimensions[2], + interp_func, pb); + } + } + } + } + return predict_error; + } + + int interpolator_id; + int direction_sequence_id; + std::vector interpolators = {"linear", "cubic"}; + std::vector quant_inds; + size_t quant_index = 0; // for decompress + Quantizer quantizer; + Encoder encoder; + Lossless lossless; + uint block_size; + size_t num_elements; + std::array global_dimensions; +}; + +} // namespace SZ3 + +#endif diff --git a/lib/SZ3/tools/sz3/deprecated/beta_sz_pw.cpp b/lib/SZ3/tools/test/deprecated/beta_sz_pw.cpp similarity index 79% rename from lib/SZ3/tools/sz3/deprecated/beta_sz_pw.cpp rename to lib/SZ3/tools/test/deprecated/beta_sz_pw.cpp index 2b5a323c..5256ce0f 100644 --- a/lib/SZ3/tools/sz3/deprecated/beta_sz_pw.cpp +++ b/lib/SZ3/tools/test/deprecated/beta_sz_pw.cpp @@ -3,11 +3,11 @@ #include "SZ3/predictor/LorenzoPredictor.hpp" #include "SZ3/predictor/RegressionPredictor.hpp" #include "SZ3/predictor/ComposedPredictor.hpp" -#include "SZ3/quantizer/IntegerQuantizer.hpp" +#include "SZ3/quantizer/LinearQuantizer.hpp" #include "SZ3/utils/FileUtil.hpp" #include "SZ3/utils/Config.hpp" #include "SZ3/def.hpp" -#include "SZ3/compressor/SZGeneralCompressor.hpp" +#include "SZ3/compressor/SZIterateCompressor.hpp" #include "SZ3/encoder/HuffmanEncoder.hpp" #include "SZ3/encoder/ArithmeticEncoder.hpp" #include "SZ3/encoder/BypassEncoder.hpp" @@ -29,7 +29,7 @@ float compression_time = 0; template float SZ_compress(std::unique_ptr const &data, - SZ::Config &conf, + SZ3::Config &conf, Frontend frontend, Encoder encoder, Lossless lossless) { std::cout << "****************** Options ********************" << std::endl; @@ -89,15 +89,15 @@ float SZ_compress(std::unique_ptr const &data, } // std::vector data1 = std::vector(data.get(), data.get() + conf.num); - auto sz = SZ::make_sz_general_compressor(frontend, encoder, lossless); + auto sz = SZ3::make_compressor_sz_iterate(frontend, encoder, lossless); - SZ::Timer timer; + SZ3::Timer timer; timer.start(); std::cout << "****************** Compression ******************" << std::endl; size_t compressed_size = 0; - std::unique_ptr compressed; + std::unique_ptr compressed; compressed.reset(sz->compress(conf, data.get(), compressed_size)); compression_time = timer.stop("Compression"); @@ -113,16 +113,16 @@ float SZ_compress(std::unique_ptr const &data, ss << src_file_name.substr(src_file_name.rfind('/') + 1) << "." << relative_error_bound << "." << dis(gen) << ".sz3"; auto compressed_file_name = ss.str(); - SZ::writefile(compressed_file_name.c_str(), compressed.get(), compressed_size); + SZ3::writefile(compressed_file_name.c_str(), compressed.get(), compressed_size); std::cout << "Compressed file = " << compressed_file_name << std::endl; std::cout << "****************** Decompression ****************" << std::endl; - compressed = SZ::readfile(compressed_file_name.c_str(), compressed_size); + compressed = SZ3::readfile(compressed_file_name.c_str(), compressed_size); timer.start(); T *dec_data = sz->decompress(compressed.get(), compressed_size, conf.num); timer.stop("Decompression"); -// SZ::verify(data1.data(), dec_data, conf.num); +// SZ3::verify(data1.data(), dec_data, conf.num); // float threshold = minLogValue; if (!positive) { @@ -139,11 +139,11 @@ float SZ_compress(std::unique_ptr const &data, } } - SZ::verify(data_.data(), dec_data, conf.num); + SZ3::verify(data_.data(), dec_data, conf.num); remove(compressed_file_name.c_str()); auto decompressed_file_name = compressed_file_name + ".out"; - SZ::writefile(decompressed_file_name.c_str(), dec_data, conf.num); + SZ3::writefile(decompressed_file_name.c_str(), dec_data, conf.num); std::cout << "Decompressed file = " << decompressed_file_name << std::endl; delete[] dec_data; @@ -152,72 +152,72 @@ float SZ_compress(std::unique_ptr const &data, template float SZ_compress_build_backend(std::unique_ptr const &data, - SZ::Config &conf, + SZ3::Config &conf, Frontend frontend) { if (conf.lossless == 1) { if (conf.encoder == 1) { - return SZ_compress(data, conf, frontend, SZ::HuffmanEncoder(), SZ::Lossless_zstd()); + return SZ_compress(data, conf, frontend, SZ3::HuffmanEncoder(), SZ3::Lossless_zstd()); } else if (conf.encoder == 2) { - return SZ_compress(data, conf, frontend, SZ::ArithmeticEncoder(true), SZ::Lossless_zstd()); + return SZ_compress(data, conf, frontend, SZ3::ArithmeticEncoder(true), SZ3::Lossless_zstd()); } else { - return SZ_compress(data, conf, frontend, SZ::BypassEncoder(), SZ::Lossless_zstd()); + return SZ_compress(data, conf, frontend, SZ3::BypassEncoder(), SZ3::Lossless_zstd()); } } else { if (conf.encoder == 1) { - return SZ_compress(data, conf, frontend, SZ::HuffmanEncoder(), SZ::Lossless_bypass()); + return SZ_compress(data, conf, frontend, SZ3::HuffmanEncoder(), SZ3::Lossless_bypass()); } else if (conf.encoder == 2) { - return SZ_compress(data, conf, frontend, SZ::ArithmeticEncoder(true), SZ::Lossless_bypass()); + return SZ_compress(data, conf, frontend, SZ3::ArithmeticEncoder(true), SZ3::Lossless_bypass()); } else { - return SZ_compress(data, conf, frontend, SZ::BypassEncoder(), SZ::Lossless_bypass()); + return SZ_compress(data, conf, frontend, SZ3::BypassEncoder(), SZ3::Lossless_bypass()); } } } template -float SZ_compress_build_frontend(std::unique_ptr const &data, SZ::Config &conf) { - auto quantizer = SZ::LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2); - std::vector>> predictors; +float SZ_compress_build_frontend(std::unique_ptr const &data, SZ3::Config &conf) { + auto quantizer = SZ3::LinearQuantizer(conf.absErrorBound, conf.quantbinCnt / 2); + std::vector>> predictors; int use_single_predictor = (conf.lorenzo + conf.lorenzo2 + conf.regression) == 1; if (conf.lorenzo) { if (use_single_predictor) { return SZ_compress_build_backend(data, conf, - SZ::make_sz_general_frontend(conf, SZ::LorenzoPredictor(conf.absErrorBound), + SZ3::make_sz_general_frontend(conf, SZ3::LorenzoPredictor(conf.absErrorBound), quantizer)); } else { - predictors.push_back(std::make_shared>(conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.absErrorBound)); } } if (conf.lorenzo2) { if (use_single_predictor) { return SZ_compress_build_backend(data, conf, - SZ::make_sz_general_frontend(conf, SZ::LorenzoPredictor(conf.absErrorBound), + SZ3::make_sz_general_frontend(conf, SZ3::LorenzoPredictor(conf.absErrorBound), quantizer)); } else { - predictors.push_back(std::make_shared>(conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.absErrorBound)); } } if (conf.regression) { if (use_single_predictor) { return SZ_compress_build_backend(data, conf, - SZ::make_sz_general_frontend(conf, SZ::RegressionPredictor(conf.blockSize, + SZ3::make_sz_general_frontend(conf, SZ3::RegressionPredictor(conf.blockSize, conf.absErrorBound), quantizer)); } else { - predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); + predictors.push_back(std::make_shared>(conf.blockSize, conf.absErrorBound)); } } return SZ_compress_build_backend(data, conf, - SZ::make_sz_general_frontend(conf, SZ::ComposedPredictor(predictors), quantizer)); + SZ3::make_sz_general_frontend(conf, SZ3::ComposedPredictor(predictors), quantizer)); } template float SZ_compress_parse_args(int argc, char **argv, int argp, std::unique_ptr &data, float eb, std::array dims) { - SZ::Config conf; + SZ3::Config conf; conf.setDims(dims.begin(), dims.end()); conf.absErrorBound = eb; if (argp < argc) { @@ -272,7 +272,7 @@ int main(int argc, char **argv) { } size_t num = 0; - auto data = SZ::readfile(argv[1], num); + auto data = SZ3::readfile(argv[1], num); src_file_name = argv[1]; std::cout << "Read " << num << " elements\n"; diff --git a/lib/SZ3/tools/sz3/deprecated/beta_sz_truncate.cpp b/lib/SZ3/tools/test/deprecated/beta_sz_truncate.cpp similarity index 83% rename from lib/SZ3/tools/sz3/deprecated/beta_sz_truncate.cpp rename to lib/SZ3/tools/test/deprecated/beta_sz_truncate.cpp index 4bd31891..90a90396 100644 --- a/lib/SZ3/tools/sz3/deprecated/beta_sz_truncate.cpp +++ b/lib/SZ3/tools/test/deprecated/beta_sz_truncate.cpp @@ -1,4 +1,4 @@ -#include "SZ3/compressor/SZTruncateCompressor.hpp" +#include "SZ3/compressor/specialized/SZTruncateCompressor.hpp" #include "SZ3/lossless/Lossless_zstd.hpp" #include "SZ3/lossless/Lossless_bypass.hpp" #include "SZ3/utils/FileUtil.hpp" @@ -20,7 +20,7 @@ int byteLen = 2; template float SZ_compress(std::unique_ptr const &data, - const SZ::Config &conf, Lossless lossless) { + const SZ3::Config &conf, Lossless lossless) { std::cout << "****************** Options ********************" << std::endl; std::cout << "dimension = " << N @@ -31,15 +31,15 @@ float SZ_compress(std::unique_ptr const &data, std::vector data_ = std::vector(data.get(), data.get() + conf.num); - auto sz = SZ::make_sz_truncate_compressor(conf, lossless, byteLen); + auto sz = SZ3::make_sz_truncate_compressor(conf, lossless, byteLen); - SZ::Timer timer; + SZ3::Timer timer; timer.start(); std::cout << "****************** Compression ******************" << std::endl; size_t compressed_size = 0; - std::unique_ptr compressed; + std::unique_ptr compressed; compressed.reset(sz.compress(conf,data.get(), compressed_size)); compression_time = timer.stop("Compression"); @@ -55,21 +55,21 @@ float SZ_compress(std::unique_ptr const &data, ss << src_file_name.substr(src_file_name.rfind('/') + 1) << "." << relative_error_bound << "." << dis(gen) << ".sz3"; auto compressed_file_name = ss.str(); - SZ::writefile(compressed_file_name.c_str(), compressed.get(), compressed_size); + SZ3::writefile(compressed_file_name.c_str(), compressed.get(), compressed_size); std::cout << "Compressed file = " << compressed_file_name << std::endl; std::cout << "****************** Decompression ****************" << std::endl; - compressed = SZ::readfile(compressed_file_name.c_str(), compressed_size); + compressed = SZ3::readfile(compressed_file_name.c_str(), compressed_size); timer.start(); T *dec_data = sz.decompress(compressed.get(), compressed_size, conf.num); timer.stop("Decompression"); - SZ::verify(data_.data(), dec_data, conf.num); + SZ3::verify(data_.data(), dec_data, conf.num); remove(compressed_file_name.c_str()); // auto decompressed_file_name = compressed_file_name + ".out"; -// SZ::writefile(decompressed_file_name.c_str(), dec_data, conf.num); +// SZ3::writefile(decompressed_file_name.c_str(), dec_data, conf.num); // std::cout << "Decompressed file = " << decompressed_file_name << std::endl; delete[] dec_data; @@ -79,16 +79,16 @@ float SZ_compress(std::unique_ptr const &data, template float SZ_compress_parse_args(int argc, char **argv, int argp, std::unique_ptr &data, float eb, std::array dims) { - SZ::Config conf; + SZ3::Config conf; conf.setDims(dims.begin(), dims.end()); conf.absErrorBound = eb; if (argp < argc) { conf.lossless = atoi(argv[argp++]); } if (conf.lossless > 0) { - return SZ_compress(data, conf, SZ::Lossless_zstd(conf.lossless)); + return SZ_compress(data, conf, SZ3::Lossless_zstd(conf.lossless)); } else { - return SZ_compress(data, conf, SZ::Lossless_bypass()); + return SZ_compress(data, conf, SZ3::Lossless_bypass()); } } @@ -101,7 +101,7 @@ int main(int argc, char **argv) { } size_t num = 0; - auto data = SZ::readfile(argv[1], num); + auto data = SZ3::readfile(argv[1], num); src_file_name = argv[1]; std::cout << "Read " << num << " elements\n"; diff --git a/lib/SZ3/tools/sz3/deprecated/test_arithmetic_coding.cpp b/lib/SZ3/tools/test/deprecated/test_arithmetic_coding.cpp similarity index 95% rename from lib/SZ3/tools/sz3/deprecated/test_arithmetic_coding.cpp rename to lib/SZ3/tools/test/deprecated/test_arithmetic_coding.cpp index cb6c2d56..9595f2dc 100644 --- a/lib/SZ3/tools/sz3/deprecated/test_arithmetic_coding.cpp +++ b/lib/SZ3/tools/test/deprecated/test_arithmetic_coding.cpp @@ -16,7 +16,7 @@ unsigned char *readByteData(char *srcFilePath, size_t *byteLength, int *status) { FILE *pFile = fopen(srcFilePath, "rb"); - if (pFile == NULL) { + if (pFile == nullptr) { printf("Failed to open input file. 1\n"); return 0; } @@ -27,7 +27,7 @@ unsigned char *readByteData(char *srcFilePath, size_t *byteLength, int *status) unsigned char *byteBuf = (unsigned char *) malloc((*byteLength) * sizeof(unsigned char)); //sizeof(char)==1 pFile = fopen(srcFilePath, "rb"); - if (pFile == NULL) { + if (pFile == nullptr) { printf("Failed to open input file. 2\n"); return 0; } @@ -39,7 +39,7 @@ unsigned char *readByteData(char *srcFilePath, size_t *byteLength, int *status) void writeByteData(unsigned char *bytes, size_t byteLength, char *tgtFilePath, int *status) { FILE *pFile = fopen(tgtFilePath, "wb"); - if (pFile == NULL) { + if (pFile == nullptr) { printf("Failed to open input file. 3\n"); *status = 0; return; @@ -50,13 +50,13 @@ void writeByteData(unsigned char *bytes, size_t byteLength, char *tgtFilePath, i *status = 0; } -using namespace SZ; +using namespace SZ3; int main(int argc, char *argv[]) { int status = 0; char inputFile[100]; size_t byteLen = 0; - sprintf(inputFile, "%s", argv[1]); + snprintf(inputFile, 100, "%s", argv[1]); // unsigned char *bytes = readByteData(inputFile, &byteLen, &status); // std::vector codes(byteLen); size_t i = 0; @@ -84,7 +84,7 @@ int main(int argc, char *argv[]) { size_t totalCmprSize = ariCoderBytes - cmprData; char cmprFile[100]; - sprintf(cmprFile, "%s.ari", inputFile); + snprintf(cmprFile, 100, "%s.ari", inputFile); writefile(cmprFile, cmprData, totalCmprSize); printf("compressed data size is: %zu\n", totalCmprSize); diff --git a/lib/SZ3/tools/sz3/deprecated/test_huffman_coding.cpp b/lib/SZ3/tools/test/deprecated/test_huffman_coding.cpp similarity index 92% rename from lib/SZ3/tools/sz3/deprecated/test_huffman_coding.cpp rename to lib/SZ3/tools/test/deprecated/test_huffman_coding.cpp index 025d5939..31d76707 100644 --- a/lib/SZ3/tools/sz3/deprecated/test_huffman_coding.cpp +++ b/lib/SZ3/tools/test/deprecated/test_huffman_coding.cpp @@ -14,8 +14,8 @@ int main() { unsigned char *compressed = (unsigned char *) malloc(N * sizeof(int)); { - SZ::HuffmanEncoder encoder; - encoder.preprocess_encode(type, 0); + SZ3::HuffmanEncoder encoder; + encoder.preprocess_encode(type, capacity); unsigned char *compressed_pos = compressed; cout << "save encoder" << endl; encoder.save(compressed_pos); @@ -35,7 +35,7 @@ int main() { // } } { - SZ::HuffmanEncoder encoder; + SZ3::HuffmanEncoder encoder; const unsigned char *compressed_pos = compressed; size_t length = sizeof(int); cout << "load" << endl; diff --git a/lib/SZ3/tools/test/integration/datalist.txt b/lib/SZ3/tools/test/integration/datalist.txt new file mode 100755 index 00000000..286e8e0b --- /dev/null +++ b/lib/SZ3/tools/test/integration/datalist.txt @@ -0,0 +1,52 @@ +# This file contains a list of data files that are used in the integration tests. +# Each line contains the path to a data file, followed by the dimensions of the data in C order. +# The data can be downloaded from https://sdrbench.github.io/ +~/data/miranda-256x384x384/velocityx.f32.dat 256 384 384 +~/data/miranda-256x384x384/velocityy.f32.dat 256 384 384 +~/data/miranda-256x384x384/diffusivity.f32.dat 256 384 384 +~/data/miranda-256x384x384/pressure.f32.dat 256 384 384 +~/data/miranda-256x384x384/velocityz.f32.dat 256 384 384 +~/data/miranda-256x384x384/viscocity.f32.dat 256 384 384 +~/data/miranda-256x384x384/density.f32.dat 256 384 384 +~/data/cesm-26x1800x3600/CLOUD_1_26_1800_3600.dat 26 1800 3600 +~/data/hurricane-100x500x500/Wf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/QRAINf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/QGRAUPf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/QCLOUDf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/CLOUDf48_log10.bin.dat 100 500 500 +~/data/hurricane-100x500x500/QSNOWf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/Uf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/TCf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/Pf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/QVAPORf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/Vf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/QICEf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/CLOUDf48.bin.dat 100 500 500 +~/data/hurricane-100x500x500/PRECIPf48.bin.dat 100 500 500 +~/data/scale-98x1200x1200/T.dat 98 1200 1200 +~/data/scale-98x1200x1200/PRES.dat 98 1200 1200 +~/data/scale-98x1200x1200/U.dat 98 1200 1200 +~/data/scale-98x1200x1200/QS.log10.dat 98 1200 1200 +~/data/scale-98x1200x1200/V.dat 98 1200 1200 +~/data/scale-98x1200x1200/QC.dat 98 1200 1200 +~/data/scale-98x1200x1200/QS.dat 98 1200 1200 +~/data/scale-98x1200x1200/QG.dat 98 1200 1200 +~/data/scale-98x1200x1200/QV.dat 98 1200 1200 +~/data/scale-98x1200x1200/W.dat 98 1200 1200 +~/data/scale-98x1200x1200/QI.dat 98 1200 1200 +~/data/scale-98x1200x1200/QC.log10.dat 98 1200 1200 +~/data/scale-98x1200x1200/RH.dat 98 1200 1200 +~/data/scale-98x1200x1200/QR.dat 98 1200 1200 +~/data/nyx-512x512x512/temperature.dat 512 512 512 +~/data/nyx-512x512x512/baryon_density.dat 512 512 512 +~/data/nyx-512x512x512/velocity_x.dat 512 512 512 +~/data/nyx-512x512x512/velocity_y.dat 512 512 512 +~/data/nyx-512x512x512/velocity_z.dat 512 512 512 +~/data/nyx-512x512x512/dark_matter_density.dat 512 512 512 +~/data/hacc-280953867/vz.f32 280953867 +~/data/hacc-280953867/vx.f32 280953867 +~/data/hacc-280953867/vy.f32 280953867 +~/data/hacc-280953867/zz.f32 280953867 +~/data/hacc-280953867/xx.f32 280953867 +~/data/hacc-280953867/yy.f32 280953867 +~/data/qmcpack-288x115x69x69/einspline_288_115_69_69.pre.f32.dat 288 115 69 69 diff --git a/lib/SZ3/tools/test/integration/test_h5.py b/lib/SZ3/tools/test/integration/test_h5.py new file mode 100644 index 00000000..4265c2ae --- /dev/null +++ b/lib/SZ3/tools/test/integration/test_h5.py @@ -0,0 +1,287 @@ +import numpy as np +import h5py +import subprocess +import os +import sys +from shutil import which, rmtree +import tempfile + +def check_h5repack(): + """ + Check if 'h5repack-shared' is available in the system PATH. + If not, check for 'h5repack'. + Returns the command to use. + """ + if which('h5repack-shared') is not None: + print("Using 'h5repack-shared' for HDF5 operations.") + return 'h5repack-shared' + elif which('h5repack') is not None: + print("Using 'h5repack' for HDF5 operations.") + return 'h5repack' + else: + print("Error: Neither 'h5repack-shared' nor 'h5repack' is installed or found in PATH.") + sys.exit(1) + +def create_comp_conf(comp_conf_path, cmpr_algo, bound): + """ + Creates the 'comp.conf' configuration file with the specified content and error bound. + + Parameters: + - comp_conf_path (str): Path where the comp.conf file will be created. + - bound (float): The absolute error bound to set in the configuration. + """ + comp_conf_content = f"""[GlobalSettings] +ErrorBoundMode = ABS +AbsErrorBound = {bound} +CmprAlgo = {cmpr_algo} +OpenMP = No +""" + try: + with open(comp_conf_path, 'w') as f: + f.write(comp_conf_content) + print(f"Configuration file '{comp_conf_path}' created successfully with AbsErrorBound = {bound}") + except Exception as e: + print(f"Error creating configuration file '{comp_conf_path}': {e}") + sys.exit(1) + +def get_compression_args(comp_conf_path): + """ + Calls the external executable 'print_h5repack_args' with the configuration file + to get compression arguments. + + Parameters: + - comp_conf_path (str): Path to the comp.conf file. + + Returns: + - str: Compression string obtained from 'print_h5repack_args'. + """ + try: + print(f"Calling 'print_h5repack_args' with configuration file '{comp_conf_path}' to get compression parameters...") + result = subprocess.run(['./print_h5repack_args', '-c', comp_conf_path], capture_output=True, text=True, check=True) + compression = result.stdout.strip() + if not compression: + raise ValueError("Compression argument is empty.") + print(f"Compression parameters obtained: '{compression}'") + return compression + except FileNotFoundError: + print("Error: 'print_h5repack_args' executable not found in PATH.") + sys.exit(1) + except subprocess.CalledProcessError as e: + print(f"Error executing 'print_h5repack_args': {e}") + print(f"stderr: {e.stderr}") + sys.exit(1) + except Exception as e: + print(f"Unexpected error while getting compression arguments: {e}") + sys.exit(1) + +def read_raw_fp32(raw_file_path, shape): + """ + Reads raw FP32 data from a file and reshapes it. + + Parameters: + - raw_file_path (str): Path to the raw FP32 file. + - shape (tuple): Desired shape of the data. + + Returns: + - np.ndarray: Reshaped data array. + """ + try: + data = np.fromfile(raw_file_path, dtype=np.float32) + expected_size = np.prod(shape) + if data.size != expected_size: + raise ValueError(f"Data size {data.size} does not match expected shape {shape}") + data = data.reshape(shape) + print(f"Successfully read and reshaped raw data from '{raw_file_path}' with shape {shape}") + return data + except Exception as e: + print(f"Error reading raw data: {e}") + sys.exit(1) + +def write_hdf5(data, h5_file_path, dataset_name='test'): + """ + Writes data to an HDF5 file. + + Parameters: + - data (np.ndarray): Data to write. + - h5_file_path (str): Path to the HDF5 file. + - dataset_name (str): Name of the dataset within the HDF5 file. + """ + try: + with h5py.File(h5_file_path, 'w') as f: + f.create_dataset(dataset_name, data=data) + print(f"Data written to HDF5 file '{h5_file_path}' with dataset name '{dataset_name}'") + except Exception as e: + print(f"Error writing HDF5 file: {e}") + sys.exit(1) + +def apply_h5repack(repack_cmd, input_h5, output_h5, compression='gzip=4'): + """ + Applies h5repack (or h5repack-shared) with specified compression. + + Parameters: + - repack_cmd (str): The h5repack command to use ('h5repack' or 'h5repack-shared'). + - input_h5 (str): Input HDF5 file path. + - output_h5 (str): Output HDF5 file path after repacking. + - compression (str): Compression filter settings for h5repack. + """ + try: + cmd = [repack_cmd, '-f', compression, input_h5, output_h5] + print(f"Running {repack_cmd} with command: {' '.join(cmd)}") + subprocess.run(cmd, check=True) + print(f"{repack_cmd} completed. Output file: '{output_h5}'") + except subprocess.CalledProcessError as e: + print(f"Error running {repack_cmd}: {e}") + print(f"stderr: {e.stderr}") + sys.exit(1) + +def compare_hdf5(original_h5, decompressed_h5, dataset_name='test'): + """ + Compares two HDF5 files and prints the maximum error between the datasets. + + Parameters: + - original_h5 (str): Path to the original HDF5 file. + - decompressed_h5 (str): Path to the decompressed HDF5 file. + - dataset_name (str): Name of the dataset to compare. + + Returns: + - float: The maximum error found between the datasets. + """ + try: + with h5py.File(original_h5, 'r') as f1, h5py.File(decompressed_h5, 'r') as f2: + data1 = f1[dataset_name][:] + data2 = f2[dataset_name][:] + if data1.shape != data2.shape: + raise ValueError("Shape mismatch between original and decompressed data.") + max_error = np.max(np.abs(data1 - data2)) + max_error_location = np.unravel_index(np.argmax(np.abs(data1 - data2)), data1.shape) + print(f"Max error between original and decompressed data: {max_error}") + print(f"Location of max error: {max_error_location}") + return max_error + except Exception as e: + print(f"Error comparing HDF5 files: {e}") + sys.exit(1) + +def parse_shape(args): + """ + Parses shape dimensions from command-line arguments. + + Parameters: + - args (list): List of shape dimensions as strings. + + Returns: + - tuple: Parsed shape as a tuple of integers. + """ + try: + shape = tuple(int(dim) for dim in args) + return shape + except ValueError: + print("Error: All shape dimensions must be integers.") + sys.exit(1) + except Exception as e: + print(f"Unexpected error parsing shape: {e}") + sys.exit(1) + +def format_bound(bound): + """ + Formats the error bound for use in filenames. + + Parameters: + - bound (float): The error bound to format. + + Returns: + - str: Formatted bound string. + """ + # Convert to scientific notation, remove '+' sign, replace '.' with 'p' + return "{:e}".format(bound).replace('e+', 'e').replace('.', 'p') + +def main(): + + # Define the list of error bounds to test + error_bounds = [10, 1, 5e-1, 1e-1, 5e-2, 1e-2, 5e-3, 1e-3, 5e-4, 1e-4] + # error_bounds = [1e-4] + # Ensure the script is called with the correct number of arguments + if len(sys.argv) < 3: + print("Usage: python script.py [ ... ]") + print("Example: python script.py ALGO_LORENZO_REG input.fp32 100 100 100") + sys.exit(1) + + # Input Arguments + cmpr_algo = sys.argv[1] + raw_file = sys.argv[2] + shape_args = sys.argv[3:] + + # Fixed Parameters + h5_dataset_name = 'test' # Fixed dataset name + # output_dir = './output_hdf5' # Fixed output directory + output_dir = tempfile.mkdtemp(prefix='output_hdf5_') + + # Parse Shape + shape = parse_shape(shape_args) + + # Define output file paths based on output_dir and input file name + base_name = os.path.splitext(os.path.basename(raw_file))[0] + original_h5 = os.path.join(output_dir, f"{base_name}_original.h5") + + # Ensure output directory exists + os.makedirs(output_dir, exist_ok=True) + + # Check for h5repack or h5repack-shared + repack_cmd = check_h5repack() + + # Step 1: Read raw data + data = read_raw_fp32(raw_file, shape) + + # Step 2: Convert to HDF5 + write_hdf5(data, original_h5, h5_dataset_name) + + passed_all_cases = True + # Iterate over each error bound and perform compression, decompression, and comparison + for bound in error_bounds: + print("\n" + "="*50) + print(f"Testing {raw_file} with algo = {cmpr_algo} AbsErrorBound = {bound}") + print("="*50) + + # Create comp.conf with the current bound + comp_conf_path = os.path.join(output_dir, f"comp_{format_bound(bound)}.conf") + create_comp_conf(comp_conf_path, cmpr_algo, bound) + + # Get Compression Arguments by calling external executable + compression = get_compression_args(comp_conf_path) + + # Define compressed and decompressed file paths for the current bound + bound_str = format_bound(bound) + compressed_h5 = os.path.join(output_dir, f"{base_name}_compressed_{bound_str}.h5") + decompressed_h5 = os.path.join(output_dir, f"{base_name}_decompressed_{bound_str}.h5") + + # Apply compression + apply_h5repack(repack_cmd, original_h5, compressed_h5, compression=compression) + + # Decompress the compressed HDF5 + apply_h5repack(repack_cmd, compressed_h5, decompressed_h5, compression='NONE') + + # Compare original and decompressed HDF5 files + max_error = compare_hdf5(original_h5, decompressed_h5, h5_dataset_name) + + # Verify that max_error <= bound * 1.1 + if max_error <= bound * 1.5: + result = "PASS" + else: + result = "FAIL" + passed_all_cases = False + + print(f"Test Result for AbsErrorBound = {bound}: {result}") + + # Clean up intermediate files + try: + rmtree(output_dir) + print(f"Cleaned up intermediate folder") + except Exception as e: + print(f"Error removing intermediate folder: {e}") + + if passed_all_cases: + print(f"\nAll tests passed successfully for {raw_file}.") + else: + print(f"\nSome tests failed for {raw_file}. Please check the results.") + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/lib/SZ3/tools/test/integration/test_sz3.py b/lib/SZ3/tools/test/integration/test_sz3.py new file mode 100644 index 00000000..c4ba9e35 --- /dev/null +++ b/lib/SZ3/tools/test/integration/test_sz3.py @@ -0,0 +1,144 @@ +import subprocess +import re +import os +from pathlib import Path +import sys + +HOME = str(Path.home()) + + +def run_command(cmd): + """Run a command and return stdout and stderr.""" + result = subprocess.run(cmd, shell=True, capture_output=True, text=True) + return result.stdout, result.stderr + + +def parse_errors(output): + """ + Parse the decompression output for maximum errors. + Expected output lines: + Max absolute error = + Max relative error = + Returns (abs_error, rel_error) as floats (or None if not found). + """ + abs_err = None + rel_err = None + abs_match = re.search(r"Max absolute error\s*=\s*([\deE\.\+-]+)", output) + if abs_match: + abs_err = float(abs_match.group(1)) + rel_match = re.search(r"Max relative error\s*=\s*([\deE\.\+-]+)", output) + if rel_match: + rel_err = float(rel_match.group(1)) + return abs_err, rel_err + + +def test_file(file_path, dims, mode, error_bound): + """ + Run the SZ3 command with the given file, reversed dimensions, error control mode, and error bound. + - file_path: path to the original binary file. + - dims: a list of dimensions (e.g. [100, 500, 500] from the test file). + - mode: either "ABS" or "REL". + - error_bound: error bound value to test. + + Returns: (abs_err, rel_err) from the output. + """ + # Derive filename for the decompressed file + base = os.path.splitext(os.path.basename(file_path))[0] + decompressed_file = "{}.{}.{}.sz.out".format(base, mode, error_bound) + + # Reverse the dimensions order for SZ3 (e.g., 100 500 500 becomes 500 500 100) + dims_str = " ".join(str(d) for d in dims[::-1]) + + # Build the single command that compresses and decompresses the file. + # Note: no -z is provided, only -i (input) and -o (decompressed output). + cmd = f"sz3 -f -i {file_path} -o {decompressed_file} -3 {dims_str} -M {mode} {error_bound} -a" + + print("Running command:") + print(cmd) + stdout, stderr = run_command(cmd) + + if stderr: + print("stderr:", stderr) + + print("Command output:") + print(stdout) + + # Parse error values from the output + abs_err, rel_err = parse_errors(stdout) + + if os.path.exists(decompressed_file): + os.remove(decompressed_file) + + +def load_test_files(file_list_path): + """ + Read the list of test files from the provided text file. + Each line should have: ... + Returns a list of tuples: (file_path, [dim1, dim2, ...]) + """ + test_files = [] + with open(file_list_path, "r") as f: + for line in f: + line = line.strip() + if not line or line.startswith("#"): + continue + parts = line.split() + file_path = parts[0].replace('~', HOME) + try: + dims = [int(x) for x in parts[1:]] + except ValueError: + print(f"Error parsing dimensions for line: {line}") + continue + test_files.append((file_path, dims)) + return test_files + + +def main(): + if len(sys.argv) > 1: + file_list_path = sys.argv[1] + else: + print("Usage: python test_sz3.py ") + exit() + + test_files = load_test_files(file_list_path) + + # Error bounds to test for each mode + error_tests = { + "ABS": [1, 1e-3, 1e-5, 1e-7], + "REL": [1e-2, 1e-4, 1e-6] + } + + all_passed = True + for file_path, dims in test_files: + if not os.path.exists(file_path): + print(f"Test file {file_path} does not exist, skipping.") + continue + for mode, bounds in error_tests.items(): + for bound in bounds: + print("=" * 60) + print(f"Testing file: {file_path}\nMode: {mode}\nError Bound: {bound}") + abs_err, rel_err = test_file(file_path, dims, mode, bound) + + # Check results depending on the mode + if mode == "ABS": + if abs_err is not None and abs_err <= bound: + print(f"PASS: Max absolute error {abs_err} is within bound {bound}") + else: + print(f"FAIL: Max absolute error {abs_err} exceeds bound {bound}") + all_passed = False + elif mode == "REL": + if rel_err is not None and rel_err <= bound: + print(f"PASS: Max relative error {rel_err} is within bound {bound}") + else: + print(f"FAIL: Max relative error {rel_err} exceeds bound {bound}") + all_passed = False + print("=" * 60 + "\n") + + if all_passed: + print("All tests passed.") + else: + print("Some tests failed.") + + +if __name__ == "__main__": + main() diff --git a/lib/SZ3/tools/test/modules/test_encoder.cpp b/lib/SZ3/tools/test/modules/test_encoder.cpp new file mode 100644 index 00000000..c7319acb --- /dev/null +++ b/lib/SZ3/tools/test/modules/test_encoder.cpp @@ -0,0 +1,54 @@ +#include +#include + +#include "SZ3/encoder/ArithmeticEncoder.hpp" +#include "SZ3/encoder/BypassEncoder.hpp" +#include "SZ3/encoder/HuffmanEncoder.hpp" +#include "SZ3/encoder/RunlengthEncoder.hpp" +#include "gtest/gtest.h" + +template +void runFunctionalTest() { + int N = 1000; + std::vector buffer_data(N * sizeof(T) * 2); + std::vector buffer_conf(N * sizeof(T) * 2); + std::vector data(N); + for (int i = 0; i < N; i++) { + data[i] = i % 100; + } + + size_t data_len = 0, conf_len = 0; + { + SZ3::uchar *buffer_data_pos = buffer_data.data(); + SZ3::uchar *buffer_conf_pos = buffer_conf.data(); + Encoder coder; + coder.preprocess_encode(data, 100); + coder.encode(data, buffer_data_pos); + coder.save(buffer_conf_pos); + data_len = buffer_data_pos - buffer_data.data(); + conf_len = buffer_conf_pos - buffer_conf.data(); + } + { + const SZ3::uchar *buffer_data_pos = buffer_data.data(); + const SZ3::uchar *buffer_conf_pos = buffer_conf.data(); + Encoder coder; + coder.load(buffer_conf_pos, conf_len); + auto dataDecoded = coder.decode(buffer_data_pos, N); + for (int i = 0; i < N; i++) { + EXPECT_EQ(data[i], dataDecoded[i]); + } + } +} + +template +void runAllTest() { + runFunctionalTest(); +} + +TEST(EncoderTest, HuffmanEncoder) { runAllTest, int>(); } + +TEST(EncoderTest, RunlengthEncoder) { runAllTest, int>(); } + +TEST(EncoderTest, ArithmeticEncoder) { runAllTest, int>(); } + +TEST(EncoderTest, BypassEncoder) { runAllTest, int>(); } diff --git a/lib/SZ3/tools/test/modules/test_lossless.cpp b/lib/SZ3/tools/test/modules/test_lossless.cpp new file mode 100644 index 00000000..00e23cef --- /dev/null +++ b/lib/SZ3/tools/test/modules/test_lossless.cpp @@ -0,0 +1,38 @@ +#include +#include +#include + +#include "SZ3/lossless/Lossless_bypass.hpp" +#include "SZ3/lossless/Lossless_zstd.hpp" +#include "gtest/gtest.h" + +template +void runFunctionalTest() { + Lossless lossless; + size_t N = 1000; + std::vector src(N); + std::random_device rd; + std::mt19937 gen(rd()); + std::uniform_int_distribution<> dis(0, 255); + for (size_t i = 0; i < N; i++) { + src[i] = static_cast(dis(gen)); + } + std::vector dst(ZSTD_compressBound(src.size())+ sizeof(size_t)); + size_t compressedSize = lossless.compress(src.data(), src.size(), dst.data(), dst.size()); + + std::vector decompressed(N); + SZ3::uchar* decompressed_pos = decompressed.data(); + size_t decompressedSize; + lossless.decompress(dst.data(), compressedSize, decompressed_pos, decompressedSize); + + EXPECT_EQ(decompressedSize, src.size()); + EXPECT_EQ(std::vector(decompressed.data(), decompressed.data() + decompressedSize), src); +} + +template +void runAllTest() { + runFunctionalTest(); +} + +TEST(LosslessTest, LosslessZstd) { runAllTest(); } +TEST(LosslessTest, LosslessBypass) { runAllTest(); } diff --git a/lib/SZ3/tools/test/modules/test_quantizer.cpp b/lib/SZ3/tools/test/modules/test_quantizer.cpp new file mode 100644 index 00000000..e75d1e30 --- /dev/null +++ b/lib/SZ3/tools/test/modules/test_quantizer.cpp @@ -0,0 +1,67 @@ +#include +#include + +#include "gtest/gtest.h" +#include "SZ3/quantizer/LinearQuantizer.hpp" + +template +void runQuantizeRecoverTest() { + T eb = 12.1973; + Quantizer quantizer(eb); + T data = static_cast(100.11212); + T data_ori = data; + + int quant_index = quantizer.quantize_and_overwrite(data, static_cast(0)); + + T recovered = quantizer.recover(static_cast(0), quant_index); + + EXPECT_NEAR(recovered, data_ori, eb); +} + +template +void runFunctionalTest() { + T eb = 12.1973; + Quantizer quantizer(eb); + + const int N = 100; + std::vector originals(N); + std::vector quant_indices(N); + + // Generate 100 different input values. + // We choose values that vary slightly so that quantization succeeds. + for (int i = 0; i < N; i++) { + T data = static_cast(10.723 + (i * 0.0005)); + originals[i] = data; + quant_indices[i] = quantizer.quantize_and_overwrite(data, static_cast(0)); + } + + // Save the quantizer's state to a temporary buffer. + std::vector buffer(N * sizeof(T) * 4); + unsigned char* save_ptr = buffer.data(); + quantizer.save(save_ptr); + size_t saved_size = save_ptr - buffer.data(); + EXPECT_GT(saved_size, 0u) << "Saved state must be non-empty."; + + // Create a new quantizer instance and load the saved state. + Quantizer loadedQuantizer(eb); // The error bound will be overwritten by load(). + const unsigned char* load_ptr = buffer.data(); + size_t remaining_size = saved_size; + loadedQuantizer.load(load_ptr, remaining_size); + + // Now, recover each value using the stored quantization indices. + // Verify that the recovered value is within the error bound of the original. + for (int i = 0; i < N; i++) { + T recovered = loadedQuantizer.recover(static_cast(0), quant_indices[i]); + EXPECT_NEAR(recovered, originals[i], eb) << "Mismatch at index " << i; + } +} + +template +void runAllTest() { + runQuantizeRecoverTest(); + runFunctionalTest(); +} + +TEST(QuantizerTest, LinearQuantizer) { + runAllTest, float>(); +} diff --git a/lib/SZ3/tools/zstd/BUCK b/lib/SZ3/tools/zstd/BUCK deleted file mode 100644 index 637c20d6..00000000 --- a/lib/SZ3/tools/zstd/BUCK +++ /dev/null @@ -1,234 +0,0 @@ -cxx_library( - name='zstd', - header_namespace='', - exported_headers=['zstd.h'], - visibility=['PUBLIC'], - deps=[ - ':common', - ':compress', - ':decompress', - ':deprecated', - ], -) - -cxx_library( - name='compress', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('compress', 'zstd*.h'), - ]), - srcs=glob(['compress/zstd*.c', 'compress/hist.c']), - deps=[':common'], -) - -cxx_library( - name='decompress', - header_namespace='', - visibility=['PUBLIC'], - headers=subdir_glob([ - ('decompress', '*_impl.h'), - ]), - srcs=glob(['decompress/zstd*.c']), - deps=[ - ':common', - ':legacy', - ], -) - -cxx_library( - name='deprecated', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('deprecated', '*.h'), - ]), - srcs=glob(['deprecated/*.c']), - deps=[':common'], -) - -cxx_library( - name='legacy', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('legacy', '*.h'), - ]), - srcs=glob(['legacy/*.c']), - deps=[':common'], - exported_preprocessor_flags=[ - '-DZSTD_LEGACY_SUPPORT=4', - ], -) - -cxx_library( - name='zdict', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('dictBuilder', 'zdict.h'), - ]), - headers=subdir_glob([ - ('dictBuilder', 'divsufsort.h'), - ('dictBuilder', 'cover.h'), - ]), - srcs=glob(['dictBuilder/*.c']), - deps=[':common'], -) - -cxx_library( - name='compiler', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'compiler.h'), - ]), -) - -cxx_library( - name='cpu', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'cpu.h'), - ]), -) - -cxx_library( - name='bitstream', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'bitstream.h'), - ]), -) - -cxx_library( - name='entropy', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'fse.h'), - ('common', 'huf.h'), - ]), - srcs=[ - 'common/entropy_common.c', - 'common/fse_decompress.c', - 'compress/fse_compress.c', - 'compress/huf_compress.c', - 'decompress/huf_decompress.c', - ], - deps=[ - ':debug', - ':bitstream', - ':compiler', - ':errors', - ':mem', - ], -) - -cxx_library( - name='errors', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'error_private.h'), - ('common', 'zstd_errors.h'), - ]), - srcs=['common/error_private.c'], -) - -cxx_library( - name='mem', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'mem.h'), - ]), -) - -cxx_library( - name='pool', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'pool.h'), - ]), - srcs=['common/pool.c'], - deps=[ - ':threading', - ':zstd_common', - ], -) - -cxx_library( - name='threading', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'threading.h'), - ]), - srcs=['common/threading.c'], - exported_preprocessor_flags=[ - '-DZSTD_MULTITHREAD', - ], - exported_linker_flags=[ - '-pthread', - ], -) - -cxx_library( - name='xxhash', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'xxhash.h'), - ]), - srcs=['common/xxhash.c'], - exported_preprocessor_flags=[ - '-DXXH_NAMESPACE=ZSTD_', - ], -) - -cxx_library( - name='zstd_common', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('', 'zstd.h'), - ('common', 'zstd_internal.h'), - ]), - srcs=['common/zstd_common.c'], - deps=[ - ':compiler', - ':errors', - ':mem', - ], -) - -cxx_library( - name='debug', - header_namespace='', - visibility=['PUBLIC'], - exported_headers=subdir_glob([ - ('common', 'debug.h'), - ]), - srcs=['common/debug.c'], -) - -cxx_library( - name='common', - deps=[ - ':debug', - ':bitstream', - ':compiler', - ':cpu', - ':entropy', - ':errors', - ':mem', - ':pool', - ':threading', - ':xxhash', - ':zstd_common', - ] -) diff --git a/lib/SZ3/tools/zstd/CMakeLists.txt b/lib/SZ3/tools/zstd/CMakeLists.txt index b6142beb..11b535df 100644 --- a/lib/SZ3/tools/zstd/CMakeLists.txt +++ b/lib/SZ3/tools/zstd/CMakeLists.txt @@ -1,76 +1,91 @@ +include(FetchContent) +FetchContent_Declare( + zstdfetched + URL "https://github.com/facebook/zstd/releases/download/v1.4.5/zstd-1.4.5.tar.gz" + DOWNLOAD_EXTRACT_TIMESTAMP TRUE + SOURCE_SUBDIR "" # Disables automatic add_subdirectory() +) +FetchContent_MakeAvailable(zstdfetched) + if (MSVC) set(ZSTD_BUILD_TYPE STATIC) else() set(ZSTD_BUILD_TYPE SHARED) endif() +set(zstd_SOURCE_DIR "${zstdfetched_SOURCE_DIR}/lib") + add_library(zstd ${ZSTD_BUILD_TYPE} - ./common/entropy_common.c - ./common/pool.c - ./common/threading.c - ./common/debug.c - ./common/xxhash.c - ./common/fse_decompress.c - ./common/zstd_common.c - ./common/error_private.c - ./compress/zstd_ldm.c - ./compress/zstd_lazy.c - ./compress/huf_compress.c - ./compress/zstd_opt.c - ./compress/zstd_double_fast.c - ./compress/zstd_compress.c - ./compress/zstd_compress_superblock.c - ./compress/zstd_compress_sequences.c - ./compress/zstd_compress_literals.c - ./compress/zstd_fast.c - ./compress/fse_compress.c - ./compress/zstdmt_compress.c - ./compress/hist.c - ./decompress/zstd_decompress.c - ./decompress/huf_decompress.c - ./decompress/zstd_ddict.c - ./decompress/zstd_decompress.c - ./decompress/zstd_decompress_block.c - ./deprecated/zbuff_common.c - ./deprecated/zbuff_compress.c - ./deprecated/zbuff_decompress.c - ./legacy/zstd_v05.c - ./legacy/zstd_v04.c - ./legacy/zstd_v06.c - ./legacy/zstd_v07.c - ./legacy/zstd_v03.c - ./legacy/zstd_v02.c - ./legacy/zstd_v01.c - ./dictBuilder/cover.c - ./dictBuilder/divsufsort.c - ./dictBuilder/zdict.c - ./dictBuilder/fastcover.c - ) + "${zstd_SOURCE_DIR}/common/entropy_common.c" + "${zstd_SOURCE_DIR}/common/pool.c" + "${zstd_SOURCE_DIR}/common/threading.c" + "${zstd_SOURCE_DIR}/common/debug.c" + "${zstd_SOURCE_DIR}/common/xxhash.c" + "${zstd_SOURCE_DIR}/common/fse_decompress.c" + "${zstd_SOURCE_DIR}/common/zstd_common.c" + "${zstd_SOURCE_DIR}/common/error_private.c" -target_include_directories(zstd - PUBLIC - $ - PRIVATE - ${CMAKE_CURRENT_SOURCE_DIR}/common - ${CMAKE_CURRENT_SOURCE_DIR}/compress - ${CMAKE_CURRENT_SOURCE_DIR}/decompress - ${CMAKE_CURRENT_SOURCE_DIR}/deprecated - ${CMAKE_CURRENT_SOURCE_DIR}/dictBuilder - ${CMAKE_CURRENT_SOURCE_DIR}/dll - ${CMAKE_CURRENT_SOURCE_DIR}/legacy - ) + "${zstd_SOURCE_DIR}/compress/zstd_ldm.c" + "${zstd_SOURCE_DIR}/compress/zstd_lazy.c" + "${zstd_SOURCE_DIR}/compress/huf_compress.c" + "${zstd_SOURCE_DIR}/compress/zstd_opt.c" + "${zstd_SOURCE_DIR}/compress/zstd_double_fast.c" + "${zstd_SOURCE_DIR}/compress/zstd_compress.c" + "${zstd_SOURCE_DIR}/compress/zstd_compress_superblock.c" + "${zstd_SOURCE_DIR}/compress/zstd_compress_sequences.c" + "${zstd_SOURCE_DIR}/compress/zstd_compress_literals.c" + "${zstd_SOURCE_DIR}/compress/zstd_fast.c" + "${zstd_SOURCE_DIR}/compress/fse_compress.c" + "${zstd_SOURCE_DIR}/compress/zstdmt_compress.c" + "${zstd_SOURCE_DIR}/compress/hist.c" + + "${zstd_SOURCE_DIR}/decompress/zstd_decompress.c" + "${zstd_SOURCE_DIR}/decompress/huf_decompress.c" + "${zstd_SOURCE_DIR}/decompress/zstd_ddict.c" + "${zstd_SOURCE_DIR}/decompress/zstd_decompress.c" + "${zstd_SOURCE_DIR}/decompress/zstd_decompress_block.c" + + "${zstd_SOURCE_DIR}/deprecated/zbuff_common.c" + "${zstd_SOURCE_DIR}/deprecated/zbuff_compress.c" + "${zstd_SOURCE_DIR}/deprecated/zbuff_decompress.c" + "${zstd_SOURCE_DIR}/legacy/zstd_v05.c" + "${zstd_SOURCE_DIR}/legacy/zstd_v04.c" + "${zstd_SOURCE_DIR}/legacy/zstd_v06.c" + "${zstd_SOURCE_DIR}/legacy/zstd_v07.c" + "${zstd_SOURCE_DIR}/legacy/zstd_v03.c" + "${zstd_SOURCE_DIR}/legacy/zstd_v02.c" + "${zstd_SOURCE_DIR}/legacy/zstd_v01.c" + + "${zstd_SOURCE_DIR}/dictBuilder/cover.c" + "${zstd_SOURCE_DIR}/dictBuilder/divsufsort.c" + "${zstd_SOURCE_DIR}/dictBuilder/zdict.c" + "${zstd_SOURCE_DIR}/dictBuilder/fastcover.c" +) + +target_include_directories(zstd + PUBLIC + $ + PRIVATE + ${zstd_SOURCE_DIR}/common + ${zstd_SOURCE_DIR}/compress + ${zstd_SOURCE_DIR}/decompress + ${zstd_SOURCE_DIR}/deprecated + ${zstd_SOURCE_DIR}/dictBuilder + ${zstd_SOURCE_DIR}/dll + ${zstd_SOURCE_DIR}/legacy +) install(TARGETS zstd EXPORT SZ3Targets - LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} - ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) -install(FILES - deprecated/zbuff.h - dictBuilder/zdict.h - zstd.h - common/zstd_errors.h - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/ - ) -export(TARGETS zstd FILE zstd.cmake) +install(FILES + "${zstd_SOURCE_DIR}/deprecated/zbuff.h" + "${zstd_SOURCE_DIR}/dictBuilder/zdict.h" + "${zstd_SOURCE_DIR}/zstd.h" + "${zstd_SOURCE_DIR}/common/zstd_errors.h" + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/ +) +export(TARGETS zstd FILE zstd.cmake) \ No newline at end of file diff --git a/lib/SZ3/tools/zstd/Makefile b/lib/SZ3/tools/zstd/Makefile deleted file mode 100644 index 7c6dff02..00000000 --- a/lib/SZ3/tools/zstd/Makefile +++ /dev/null @@ -1,354 +0,0 @@ -# ################################################################ -# Copyright (c) 2015-2020, Yann Collet, Facebook, Inc. -# All rights reserved. -# -# This source code is licensed under both the BSD-style license (found in the -# LICENSE file in the root directory of this source tree) and the GPLv2 (found -# in the COPYING file in the root directory of this source tree). -# You may select, at your option, one of the above-listed licenses. -# ################################################################ - -Q = $(if $(filter 1,$(V) $(VERBOSE)),,@) - -# When cross-compiling from linux to windows, you might -# need to specify this as "Windows." Fedora build fails -# without it. -# -# Note: mingw-w64 build from linux to windows does not -# fail on other tested distros (ubuntu, debian) even -# without manually specifying the TARGET_SYSTEM. -TARGET_SYSTEM ?= $(OS) - -# Version numbers -LIBVER_MAJOR_SCRIPT:=`sed -n '/define ZSTD_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./zstd.h` -LIBVER_MINOR_SCRIPT:=`sed -n '/define ZSTD_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./zstd.h` -LIBVER_PATCH_SCRIPT:=`sed -n '/define ZSTD_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./zstd.h` -LIBVER_SCRIPT:= $(LIBVER_MAJOR_SCRIPT).$(LIBVER_MINOR_SCRIPT).$(LIBVER_PATCH_SCRIPT) -LIBVER_MAJOR := $(shell echo $(LIBVER_MAJOR_SCRIPT)) -LIBVER_MINOR := $(shell echo $(LIBVER_MINOR_SCRIPT)) -LIBVER_PATCH := $(shell echo $(LIBVER_PATCH_SCRIPT)) -LIBVER := $(shell echo $(LIBVER_SCRIPT)) -VERSION?= $(LIBVER) -CCVER := $(shell $(CC) --version) - -CPPFLAGS+= -DXXH_NAMESPACE=ZSTD_ -ifeq ($(TARGET_SYSTEM),Windows_NT) # MinGW assumed -CPPFLAGS += -D__USE_MINGW_ANSI_STDIO # compatibility with %zu formatting -endif -DEBUGFLAGS= -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \ - -Wstrict-aliasing=1 -Wswitch-enum -Wdeclaration-after-statement \ - -Wstrict-prototypes -Wundef -Wpointer-arith \ - -Wvla -Wformat=2 -Winit-self -Wfloat-equal -Wwrite-strings \ - -Wredundant-decls -Wmissing-prototypes -Wc++-compat -CFLAGS += $(DEBUGFLAGS) $(MOREFLAGS) -FLAGS = $(CPPFLAGS) $(CFLAGS) - -HAVE_COLORNEVER = $(shell echo a | grep --color=never a > /dev/null 2> /dev/null && echo 1 || echo 0) -GREP_OPTIONS ?= -ifeq ($HAVE_COLORNEVER, 1) -GREP_OPTIONS += --color=never -endif -GREP = grep $(GREP_OPTIONS) - -ZSTDCOMMON_FILES := $(sort $(wildcard common/*.c)) -ZSTDCOMP_FILES := $(sort $(wildcard compress/*.c)) -ZSTDDECOMP_FILES := $(sort $(wildcard decompress/*.c)) -ZDICT_FILES := $(sort $(wildcard dictBuilder/*.c)) -ZDEPR_FILES := $(sort $(wildcard deprecated/*.c)) -ZSTD_FILES := $(ZSTDCOMMON_FILES) - -ifeq ($(findstring GCC,$(CCVER)),GCC) -decompress/zstd_decompress_block.o : CFLAGS+=-fno-tree-vectorize -endif - -# This is a helper variable that configures a bunch of other variables to new, -# space-optimized defaults. -ZSTD_LIB_MINIFY ?= 0 -ifneq ($(ZSTD_LIB_MINIFY), 0) - HAVE_CC_OZ ?= $(shell echo "" | $(CC) -Oz -x c -c - -o /dev/null 2> /dev/null && echo 1 || echo 0) - ZSTD_LEGACY_SUPPORT ?= 0 - ZSTD_LIB_DEPRECATED ?= 0 - HUF_FORCE_DECOMPRESS_X1 ?= 1 - ZSTD_FORCE_DECOMPRESS_SHORT ?= 1 - ZSTD_NO_INLINE ?= 1 - ZSTD_STRIP_ERROR_STRINGS ?= 1 - ifneq ($(HAVE_CC_OZ), 0) - # Some compilers (clang) support an even more space-optimized setting. - CFLAGS += -Oz - else - CFLAGS += -Os - endif - CFLAGS += -fno-stack-protector -fomit-frame-pointer -fno-ident \ - -DDYNAMIC_BMI2=0 -DNDEBUG -else - CFLAGS += -O3 -endif - -# Modules -ZSTD_LIB_COMPRESSION ?= 1 -ZSTD_LIB_DECOMPRESSION ?= 1 -ZSTD_LIB_DICTBUILDER ?= 1 -ZSTD_LIB_DEPRECATED ?= 1 - -# Legacy support -ZSTD_LEGACY_SUPPORT ?= 5 -ZSTD_LEGACY_MULTITHREADED_API ?= 0 - -# Build size optimizations -HUF_FORCE_DECOMPRESS_X1 ?= 0 -HUF_FORCE_DECOMPRESS_X2 ?= 0 -ZSTD_FORCE_DECOMPRESS_SHORT ?= 0 -ZSTD_FORCE_DECOMPRESS_LONG ?= 0 -ZSTD_NO_INLINE ?= 0 -ZSTD_STRIP_ERROR_STRINGS ?= 0 - -ifeq ($(ZSTD_LIB_COMPRESSION), 0) - ZSTD_LIB_DICTBUILDER = 0 - ZSTD_LIB_DEPRECATED = 0 -endif - -ifeq ($(ZSTD_LIB_DECOMPRESSION), 0) - ZSTD_LEGACY_SUPPORT = 0 - ZSTD_LIB_DEPRECATED = 0 -endif - -ifneq ($(ZSTD_LIB_COMPRESSION), 0) - ZSTD_FILES += $(ZSTDCOMP_FILES) -endif - -ifneq ($(ZSTD_LIB_DECOMPRESSION), 0) - ZSTD_FILES += $(ZSTDDECOMP_FILES) -endif - -ifneq ($(ZSTD_LIB_DEPRECATED), 0) - ZSTD_FILES += $(ZDEPR_FILES) -endif - -ifneq ($(ZSTD_LIB_DICTBUILDER), 0) - ZSTD_FILES += $(ZDICT_FILES) -endif - -ifneq ($(HUF_FORCE_DECOMPRESS_X1), 0) - CFLAGS += -DHUF_FORCE_DECOMPRESS_X1 -endif - -ifneq ($(HUF_FORCE_DECOMPRESS_X2), 0) - CFLAGS += -DHUF_FORCE_DECOMPRESS_X2 -endif - -ifneq ($(ZSTD_FORCE_DECOMPRESS_SHORT), 0) - CFLAGS += -DZSTD_FORCE_DECOMPRESS_SHORT -endif - -ifneq ($(ZSTD_FORCE_DECOMPRESS_LONG), 0) - CFLAGS += -DZSTD_FORCE_DECOMPRESS_LONG -endif - -ifneq ($(ZSTD_NO_INLINE), 0) - CFLAGS += -DZSTD_NO_INLINE -endif - -ifneq ($(ZSTD_STRIP_ERROR_STRINGS), 0) - CFLAGS += -DZSTD_STRIP_ERROR_STRINGS -endif - -ifneq ($(ZSTD_LEGACY_MULTITHREADED_API), 0) - CFLAGS += -DZSTD_LEGACY_MULTITHREADED_API -endif - -ifneq ($(ZSTD_LEGACY_SUPPORT), 0) -ifeq ($(shell test $(ZSTD_LEGACY_SUPPORT) -lt 8; echo $$?), 0) - ZSTD_FILES += $(shell ls legacy/*.c | $(GREP) 'v0[$(ZSTD_LEGACY_SUPPORT)-7]') -endif -endif -CPPFLAGS += -DZSTD_LEGACY_SUPPORT=$(ZSTD_LEGACY_SUPPORT) - -ZSTD_OBJ := $(patsubst %.c,%.o,$(ZSTD_FILES)) - -# macOS linker doesn't support -soname, and use different extension -# see : https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html -ifeq ($(shell uname), Darwin) - SHARED_EXT = dylib - SHARED_EXT_MAJOR = $(LIBVER_MAJOR).$(SHARED_EXT) - SHARED_EXT_VER = $(LIBVER).$(SHARED_EXT) - SONAME_FLAGS = -install_name $(LIBDIR)/libzstd.$(SHARED_EXT_MAJOR) -compatibility_version $(LIBVER_MAJOR) -current_version $(LIBVER) -else - SONAME_FLAGS = -Wl,-soname=libzstd.$(SHARED_EXT).$(LIBVER_MAJOR) - SHARED_EXT = so - SHARED_EXT_MAJOR = $(SHARED_EXT).$(LIBVER_MAJOR) - SHARED_EXT_VER = $(SHARED_EXT).$(LIBVER) -endif - - -.PHONY: default lib-all all clean install uninstall - -default: lib-release - -# alias -lib-all: all - -all: lib - -libzstd.a: ARFLAGS = rcs -libzstd.a: $(ZSTD_OBJ) - @echo compiling static library - $(Q)$(AR) $(ARFLAGS) $@ $^ - -ifneq (,$(filter Windows%,$(TARGET_SYSTEM))) - -LIBZSTD = dll\libzstd.dll -$(LIBZSTD): $(ZSTD_FILES) - @echo compiling dynamic library $(LIBVER) - $(CC) $(FLAGS) -DZSTD_DLL_EXPORT=1 -Wl,--out-implib,dll\libzstd.dll.a -shared $^ -o $@ - -else - -LIBZSTD = libzstd.$(SHARED_EXT_VER) -$(LIBZSTD): LDFLAGS += -shared -fPIC -fvisibility=hidden -$(LIBZSTD): $(ZSTD_FILES) - @echo compiling dynamic library $(LIBVER) - $(Q)$(CC) $(FLAGS) $^ $(LDFLAGS) $(SONAME_FLAGS) -o $@ - @echo creating versioned links - $(Q)ln -sf $@ libzstd.$(SHARED_EXT_MAJOR) - $(Q)ln -sf $@ libzstd.$(SHARED_EXT) - -endif - -.PHONY: libzstd -libzstd : $(LIBZSTD) - -.PHONY: lib -lib : libzstd.a libzstd - -.PHONY: lib-mt -%-mt : CPPFLAGS += -DZSTD_MULTITHREAD -%-mt : LDFLAGS += -pthread -%-mt : % - @echo multi-threading build completed - -.PHONY: lib-release -%-release : DEBUGFLAGS := -%-release : % - @echo release build completed - - -# Special case : building library in single-thread mode _and_ without zstdmt_compress.c -ZSTDMT_FILES = compress/zstdmt_compress.c -ZSTD_NOMT_FILES = $(filter-out $(ZSTDMT_FILES),$(ZSTD_FILES)) -libzstd-nomt: LDFLAGS += -shared -fPIC -fvisibility=hidden -libzstd-nomt: $(ZSTD_NOMT_FILES) - @echo compiling single-thread dynamic library $(LIBVER) - @echo files : $(ZSTD_NOMT_FILES) - $(Q)$(CC) $(FLAGS) $^ $(LDFLAGS) $(SONAME_FLAGS) -o $@ - -clean: - $(Q)$(RM) -r *.dSYM # macOS-specific - $(Q)$(RM) core *.o *.a *.gcda *.$(SHARED_EXT) *.$(SHARED_EXT).* libzstd.pc - $(Q)$(RM) dll/libzstd.dll dll/libzstd.lib libzstd-nomt* - $(Q)$(RM) common/*.o compress/*.o decompress/*.o dictBuilder/*.o legacy/*.o deprecated/*.o - @echo Cleaning library completed - -#----------------------------------------------------------------------------- -# make install is validated only for below listed environments -#----------------------------------------------------------------------------- -ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunOS Haiku)) - -all: libzstd.pc - -DESTDIR ?= -# directory variables : GNU conventions prefer lowercase -# see https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html -# support both lower and uppercase (BSD), use uppercase in script -prefix ?= /usr/local -PREFIX ?= $(prefix) -exec_prefix ?= $(PREFIX) -EXEC_PREFIX ?= $(exec_prefix) -libdir ?= $(EXEC_PREFIX)/lib -LIBDIR ?= $(libdir) -includedir ?= $(PREFIX)/include -INCLUDEDIR ?= $(includedir) - -PCLIBDIR ?= $(shell echo "$(LIBDIR)" | sed -n -E -e "s@^$(EXEC_PREFIX)(/|$$)@@p") -PCINCDIR ?= $(shell echo "$(INCLUDEDIR)" | sed -n -E -e "s@^$(PREFIX)(/|$$)@@p") - -ifeq (,$(PCLIBDIR)) -# Additional prefix check is required, since the empty string is technically a -# valid PCLIBDIR -ifeq (,$(shell echo "$(LIBDIR)" | sed -n -E -e "\\@^$(EXEC_PREFIX)(/|$$)@ p")) -$(error configured libdir ($(LIBDIR)) is outside of prefix ($(PREFIX)), can't generate pkg-config file) -endif -endif - -ifeq (,$(PCINCDIR)) -# Additional prefix check is required, since the empty string is technically a -# valid PCINCDIR -ifeq (,$(shell echo "$(INCLUDEDIR)" | sed -n -E -e "\\@^$(PREFIX)(/|$$)@ p")) -$(error configured includedir ($(INCLUDEDIR)) is outside of exec_prefix ($(EXEC_PREFIX)), can't generate pkg-config file) -endif -endif - -ifneq (,$(filter $(shell uname),FreeBSD NetBSD DragonFly)) -PKGCONFIGDIR ?= $(PREFIX)/libdata/pkgconfig -else -PKGCONFIGDIR ?= $(LIBDIR)/pkgconfig -endif - -ifneq (,$(filter $(shell uname),SunOS)) -INSTALL ?= ginstall -else -INSTALL ?= install -endif - -INSTALL_PROGRAM ?= $(INSTALL) -INSTALL_DATA ?= $(INSTALL) -m 644 - - -libzstd.pc: -libzstd.pc: libzstd.pc.in - @echo creating pkgconfig - $(Q)@sed -E -e 's|@PREFIX@|$(PREFIX)|' \ - -e 's|@LIBDIR@|$(PCLIBDIR)|' \ - -e 's|@INCLUDEDIR@|$(PCINCDIR)|' \ - -e 's|@VERSION@|$(VERSION)|' \ - $< >$@ - -install: install-pc install-static install-shared install-includes - @echo zstd static and shared library installed - -install-pc: libzstd.pc - $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(PKGCONFIGDIR)/ - $(Q)$(INSTALL_DATA) libzstd.pc $(DESTDIR)$(PKGCONFIGDIR)/ - -install-static: libzstd.a - @echo Installing static library - $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(LIBDIR)/ - $(Q)$(INSTALL_DATA) libzstd.a $(DESTDIR)$(LIBDIR) - -install-shared: libzstd - @echo Installing shared library - $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(LIBDIR)/ - $(Q)$(INSTALL_PROGRAM) $(LIBZSTD) $(DESTDIR)$(LIBDIR) - $(Q)ln -sf $(LIBZSTD) $(DESTDIR)$(LIBDIR)/libzstd.$(SHARED_EXT_MAJOR) - $(Q)ln -sf $(LIBZSTD) $(DESTDIR)$(LIBDIR)/libzstd.$(SHARED_EXT) - -install-includes: - @echo Installing includes - $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(INCLUDEDIR)/ - $(Q)$(INSTALL_DATA) zstd.h $(DESTDIR)$(INCLUDEDIR) - $(Q)$(INSTALL_DATA) common/zstd_errors.h $(DESTDIR)$(INCLUDEDIR) - $(Q)$(INSTALL_DATA) deprecated/zbuff.h $(DESTDIR)$(INCLUDEDIR) # prototypes generate deprecation warnings - $(Q)$(INSTALL_DATA) dictBuilder/zdict.h $(DESTDIR)$(INCLUDEDIR) - -uninstall: - $(Q)$(RM) $(DESTDIR)$(LIBDIR)/libzstd.a - $(Q)$(RM) $(DESTDIR)$(LIBDIR)/libzstd.$(SHARED_EXT) - $(Q)$(RM) $(DESTDIR)$(LIBDIR)/libzstd.$(SHARED_EXT_MAJOR) - $(Q)$(RM) $(DESTDIR)$(LIBDIR)/$(LIBZSTD) - $(Q)$(RM) $(DESTDIR)$(PKGCONFIGDIR)/libzstd.pc - $(Q)$(RM) $(DESTDIR)$(INCLUDEDIR)/zstd.h - $(Q)$(RM) $(DESTDIR)$(INCLUDEDIR)/zstd_errors.h - $(Q)$(RM) $(DESTDIR)$(INCLUDEDIR)/zbuff.h # Deprecated streaming functions - $(Q)$(RM) $(DESTDIR)$(INCLUDEDIR)/zdict.h - @echo zstd libraries successfully uninstalled - -endif diff --git a/lib/SZ3/tools/zstd/README.md b/lib/SZ3/tools/zstd/README.md deleted file mode 100644 index 6ccffb13..00000000 --- a/lib/SZ3/tools/zstd/README.md +++ /dev/null @@ -1,179 +0,0 @@ -Zstandard library files -================================ - -The __lib__ directory is split into several sub-directories, -in order to make it easier to select or exclude features. - - -#### Building - -`Makefile` script is provided, supporting [Makefile conventions](https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html#Makefile-Conventions), -including commands variables, staged install, directory variables and standard targets. -- `make` : generates both static and dynamic libraries -- `make install` : install libraries and headers in target system directories - -`libzstd` default scope is pretty large, including compression, decompression, dictionary builder, -and support for decoding legacy formats >= v0.5.0. -The scope can be reduced on demand (see paragraph _modular build_). - - -#### Multithreading support - -Multithreading is disabled by default when building with `make`. -Enabling multithreading requires 2 conditions : -- set build macro `ZSTD_MULTITHREAD` (`-DZSTD_MULTITHREAD` for `gcc`) -- for POSIX systems : compile with pthread (`-pthread` compilation flag for `gcc`) - -Both conditions are automatically applied when invoking `make lib-mt` target. - -When linking a POSIX program with a multithreaded version of `libzstd`, -note that it's necessary to invoke the `-pthread` flag during link stage. - -Multithreading capabilities are exposed -via the [advanced API defined in `lib/zstd.h`](https://github.com/facebook/zstd/blob/v1.4.3/lib/zstd.h#L351). - - -#### API - -Zstandard's stable API is exposed within [lib/zstd.h](zstd.h). - - -#### Advanced API - -Optional advanced features are exposed via : - -- `lib/common/zstd_errors.h` : translates `size_t` function results - into a `ZSTD_ErrorCode`, for accurate error handling. - -- `ZSTD_STATIC_LINKING_ONLY` : if this macro is defined _before_ including `zstd.h`, - it unlocks access to the experimental API, - exposed in the second part of `zstd.h`. - All definitions in the experimental APIs are unstable, - they may still change in the future, or even be removed. - As a consequence, experimental definitions shall ___never be used with dynamic library___ ! - Only static linking is allowed. - - -#### Modular build - -It's possible to compile only a limited set of features within `libzstd`. -The file structure is designed to make this selection manually achievable for any build system : - -- Directory `lib/common` is always required, for all variants. - -- Compression source code lies in `lib/compress` - -- Decompression source code lies in `lib/decompress` - -- It's possible to include only `compress` or only `decompress`, they don't depend on each other. - -- `lib/dictBuilder` : makes it possible to generate dictionaries from a set of samples. - The API is exposed in `lib/dictBuilder/zdict.h`. - This module depends on both `lib/common` and `lib/compress` . - -- `lib/legacy` : makes it possible to decompress legacy zstd formats, starting from `v0.1.0`. - This module depends on `lib/common` and `lib/decompress`. - To enable this feature, define `ZSTD_LEGACY_SUPPORT` during compilation. - Specifying a number limits versions supported to that version onward. - For example, `ZSTD_LEGACY_SUPPORT=2` means : "support legacy formats >= v0.2.0". - Conversely, `ZSTD_LEGACY_SUPPORT=0` means "do __not__ support legacy formats". - By default, this build macro is set as `ZSTD_LEGACY_SUPPORT=5`. - Decoding supported legacy format is a transparent capability triggered within decompression functions. - It's also allowed to invoke legacy API directly, exposed in `lib/legacy/zstd_legacy.h`. - Each version does also provide its own set of advanced API. - For example, advanced API for version `v0.4` is exposed in `lib/legacy/zstd_v04.h` . - -- While invoking `make libzstd`, it's possible to define build macros - `ZSTD_LIB_COMPRESSION, ZSTD_LIB_DECOMPRESSION`, `ZSTD_LIB_DICTBUILDER`, - and `ZSTD_LIB_DEPRECATED` as `0` to forgo compilation of the - corresponding features. This will also disable compilation of all - dependencies (eg. `ZSTD_LIB_COMPRESSION=0` will also disable - dictBuilder). - -- There are a number of options that can help minimize the binary size of - `libzstd`. - - The first step is to select the components needed (using the above-described - `ZSTD_LIB_COMPRESSION` etc.). - - The next step is to set `ZSTD_LIB_MINIFY` to `1` when invoking `make`. This - disables various optional components and changes the compilation flags to - prioritize space-saving. - - Detailed options: Zstandard's code and build environment is set up by default - to optimize above all else for performance. In pursuit of this goal, Zstandard - makes significant trade-offs in code size. For example, Zstandard often has - more than one implementation of a particular component, with each - implementation optimized for different scenarios. For example, the Huffman - decoder has complementary implementations that decode the stream one symbol at - a time or two symbols at a time. Zstd normally includes both (and dispatches - between them at runtime), but by defining `HUF_FORCE_DECOMPRESS_X1` or - `HUF_FORCE_DECOMPRESS_X2`, you can force the use of one or the other, avoiding - compilation of the other. Similarly, `ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT` - and `ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG` force the compilation and use of - only one or the other of two decompression implementations. The smallest - binary is achieved by using `HUF_FORCE_DECOMPRESS_X1` and - `ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT` (implied by `ZSTD_LIB_MINIFY`). - - For squeezing the last ounce of size out, you can also define - `ZSTD_NO_INLINE`, which disables inlining, and `ZSTD_STRIP_ERROR_STRINGS`, - which removes the error messages that are otherwise returned by - `ZSTD_getErrorName` (implied by `ZSTD_LIB_MINIFY`). - - Finally, when integrating into your application, make sure you're doing link- - time optimation and unused symbol garbage collection (via some combination of, - e.g., `-flto`, `-ffat-lto-objects`, `-fuse-linker-plugin`, - `-ffunction-sections`, `-fdata-sections`, `-fmerge-all-constants`, - `-Wl,--gc-sections`, `-Wl,-z,norelro`, and an archiver that understands - the compiler's intermediate representation, e.g., `AR=gcc-ar`). Consult your - compiler's documentation. - -- While invoking `make libzstd`, the build macro `ZSTD_LEGACY_MULTITHREADED_API=1` - will expose the deprecated `ZSTDMT` API exposed by `zstdmt_compress.h` in - the shared library, which is now hidden by default. - -- The build macro `DYNAMIC_BMI2` can be set to 1 or 0 in order to generate binaries - which can detect at runtime the presence of BMI2 instructions, and use them only if present. - These instructions contribute to better performance, notably on the decoder side. - By default, this feature is automatically enabled on detecting - the right instruction set (x64) and compiler (clang or gcc >= 5). - It's obviously disabled for different cpus, - or when BMI2 instruction set is _required_ by the compiler command line - (in this case, only the BMI2 code path is generated). - Setting this macro will either force to generate the BMI2 dispatcher (1) - or prevent it (0). It overrides automatic detection. - - -#### Windows : using MinGW+MSYS to create DLL - -DLL can be created using MinGW+MSYS with the `make libzstd` command. -This command creates `dll\libzstd.dll` and the import library `dll\libzstd.lib`. -The import library is only required with Visual C++. -The header file `zstd.h` and the dynamic library `dll\libzstd.dll` are required to -compile a project using gcc/MinGW. -The dynamic library has to be added to linking options. -It means that if a project that uses ZSTD consists of a single `test-dll.c` -file it should be linked with `dll\libzstd.dll`. For example: -``` - gcc $(CFLAGS) -Iinclude/ test-dll.c -o test-dll dll\libzstd.dll -``` -The compiled executable will require ZSTD DLL which is available at `dll\libzstd.dll`. - - -#### Deprecated API - -Obsolete API on their way out are stored in directory `lib/deprecated`. -At this stage, it contains older streaming prototypes, in `lib/deprecated/zbuff.h`. -These prototypes will be removed in some future version. -Consider migrating code towards supported streaming API exposed in `zstd.h`. - - -#### Miscellaneous - -The other files are not source code. There are : - - - `BUCK` : support for `buck` build system (https://buckbuild.com/) - - `Makefile` : `make` script to build and install zstd library (static and dynamic) - - `README.md` : this file - - `dll/` : resources directory for Windows compilation - - `libzstd.pc.in` : script for `pkg-config` (used in `make install`) diff --git a/lib/SZ3/tools/zstd/common/bitstream.h b/lib/SZ3/tools/zstd/common/bitstream.h deleted file mode 100644 index 37b99c01..00000000 --- a/lib/SZ3/tools/zstd/common/bitstream.h +++ /dev/null @@ -1,454 +0,0 @@ -/* ****************************************************************** - * bitstream - * Part of FSE library - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ -#ifndef BITSTREAM_H_MODULE -#define BITSTREAM_H_MODULE - -#if defined (__cplusplus) -extern "C" { -#endif - -/* -* This API consists of small unitary functions, which must be inlined for best performance. -* Since link-time-optimization is not available for all compilers, -* these functions are defined into a .h to be included. -*/ - -/*-**************************************** -* Dependencies -******************************************/ -#include "mem.h" /* unaligned access routines */ -#include "compiler.h" /* UNLIKELY() */ -#include "debug.h" /* assert(), DEBUGLOG(), RAWLOG() */ -#include "error_private.h" /* error codes and messages */ - - -/*========================================= -* Target specific -=========================================*/ -#if defined(__BMI__) && defined(__GNUC__) -# include /* support for bextr (experimental) */ -#elif defined(__ICCARM__) -# include -#endif - -#define STREAM_ACCUMULATOR_MIN_32 25 -#define STREAM_ACCUMULATOR_MIN_64 57 -#define STREAM_ACCUMULATOR_MIN ((U32)(MEM_32bits() ? STREAM_ACCUMULATOR_MIN_32 : STREAM_ACCUMULATOR_MIN_64)) - - -/*-****************************************** -* bitStream encoding API (write forward) -********************************************/ -/* bitStream can mix input from multiple sources. - * A critical property of these streams is that they encode and decode in **reverse** direction. - * So the first bit sequence you add will be the last to be read, like a LIFO stack. - */ -typedef struct { - size_t bitContainer; - unsigned bitPos; - char* startPtr; - char* ptr; - char* endPtr; -} BIT_CStream_t; - -MEM_STATIC size_t BIT_initCStream(BIT_CStream_t* bitC, void* dstBuffer, size_t dstCapacity); -MEM_STATIC void BIT_addBits(BIT_CStream_t* bitC, size_t value, unsigned nbBits); -MEM_STATIC void BIT_flushBits(BIT_CStream_t* bitC); -MEM_STATIC size_t BIT_closeCStream(BIT_CStream_t* bitC); - -/* Start with initCStream, providing the size of buffer to write into. -* bitStream will never write outside of this buffer. -* `dstCapacity` must be >= sizeof(bitD->bitContainer), otherwise @return will be an error code. -* -* bits are first added to a local register. -* Local register is size_t, hence 64-bits on 64-bits systems, or 32-bits on 32-bits systems. -* Writing data into memory is an explicit operation, performed by the flushBits function. -* Hence keep track how many bits are potentially stored into local register to avoid register overflow. -* After a flushBits, a maximum of 7 bits might still be stored into local register. -* -* Avoid storing elements of more than 24 bits if you want compatibility with 32-bits bitstream readers. -* -* Last operation is to close the bitStream. -* The function returns the final size of CStream in bytes. -* If data couldn't fit into `dstBuffer`, it will return a 0 ( == not storable) -*/ - - -/*-******************************************** -* bitStream decoding API (read backward) -**********************************************/ -typedef struct { - size_t bitContainer; - unsigned bitsConsumed; - const char* ptr; - const char* start; - const char* limitPtr; -} BIT_DStream_t; - -typedef enum { BIT_DStream_unfinished = 0, - BIT_DStream_endOfBuffer = 1, - BIT_DStream_completed = 2, - BIT_DStream_overflow = 3 } BIT_DStream_status; /* result of BIT_reloadDStream() */ - /* 1,2,4,8 would be better for bitmap combinations, but slows down performance a bit ... :( */ - -MEM_STATIC size_t BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, size_t srcSize); -MEM_STATIC size_t BIT_readBits(BIT_DStream_t* bitD, unsigned nbBits); -MEM_STATIC BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD); -MEM_STATIC unsigned BIT_endOfDStream(const BIT_DStream_t* bitD); - - -/* Start by invoking BIT_initDStream(). -* A chunk of the bitStream is then stored into a local register. -* Local register size is 64-bits on 64-bits systems, 32-bits on 32-bits systems (size_t). -* You can then retrieve bitFields stored into the local register, **in reverse order**. -* Local register is explicitly reloaded from memory by the BIT_reloadDStream() method. -* A reload guarantee a minimum of ((8*sizeof(bitD->bitContainer))-7) bits when its result is BIT_DStream_unfinished. -* Otherwise, it can be less than that, so proceed accordingly. -* Checking if DStream has reached its end can be performed with BIT_endOfDStream(). -*/ - - -/*-**************************************** -* unsafe API -******************************************/ -MEM_STATIC void BIT_addBitsFast(BIT_CStream_t* bitC, size_t value, unsigned nbBits); -/* faster, but works only if value is "clean", meaning all high bits above nbBits are 0 */ - -MEM_STATIC void BIT_flushBitsFast(BIT_CStream_t* bitC); -/* unsafe version; does not check buffer overflow */ - -MEM_STATIC size_t BIT_readBitsFast(BIT_DStream_t* bitD, unsigned nbBits); -/* faster, but works only if nbBits >= 1 */ - - - -/*-************************************************************** -* Internal functions -****************************************************************/ -MEM_STATIC unsigned BIT_highbit32 (U32 val) -{ - assert(val != 0); - { -# if defined(_MSC_VER) /* Visual */ - unsigned long r=0; - return _BitScanReverse ( &r, val ) ? (unsigned)r : 0; -# elif defined(__GNUC__) && (__GNUC__ >= 3) /* Use GCC Intrinsic */ - return __builtin_clz (val) ^ 31; -# elif defined(__ICCARM__) /* IAR Intrinsic */ - return 31 - __CLZ(val); -# else /* Software version */ - static const unsigned DeBruijnClz[32] = { 0, 9, 1, 10, 13, 21, 2, 29, - 11, 14, 16, 18, 22, 25, 3, 30, - 8, 12, 20, 28, 15, 17, 24, 7, - 19, 27, 23, 6, 26, 5, 4, 31 }; - U32 v = val; - v |= v >> 1; - v |= v >> 2; - v |= v >> 4; - v |= v >> 8; - v |= v >> 16; - return DeBruijnClz[ (U32) (v * 0x07C4ACDDU) >> 27]; -# endif - } -} - -/*===== Local Constants =====*/ -static const unsigned BIT_mask[] = { - 0, 1, 3, 7, 0xF, 0x1F, - 0x3F, 0x7F, 0xFF, 0x1FF, 0x3FF, 0x7FF, - 0xFFF, 0x1FFF, 0x3FFF, 0x7FFF, 0xFFFF, 0x1FFFF, - 0x3FFFF, 0x7FFFF, 0xFFFFF, 0x1FFFFF, 0x3FFFFF, 0x7FFFFF, - 0xFFFFFF, 0x1FFFFFF, 0x3FFFFFF, 0x7FFFFFF, 0xFFFFFFF, 0x1FFFFFFF, - 0x3FFFFFFF, 0x7FFFFFFF}; /* up to 31 bits */ -#define BIT_MASK_SIZE (sizeof(BIT_mask) / sizeof(BIT_mask[0])) - -/*-************************************************************** -* bitStream encoding -****************************************************************/ -/*! BIT_initCStream() : - * `dstCapacity` must be > sizeof(size_t) - * @return : 0 if success, - * otherwise an error code (can be tested using ERR_isError()) */ -MEM_STATIC size_t BIT_initCStream(BIT_CStream_t* bitC, - void* startPtr, size_t dstCapacity) -{ - bitC->bitContainer = 0; - bitC->bitPos = 0; - bitC->startPtr = (char*)startPtr; - bitC->ptr = bitC->startPtr; - bitC->endPtr = bitC->startPtr + dstCapacity - sizeof(bitC->bitContainer); - if (dstCapacity <= sizeof(bitC->bitContainer)) return ERROR(dstSize_tooSmall); - return 0; -} - -/*! BIT_addBits() : - * can add up to 31 bits into `bitC`. - * Note : does not check for register overflow ! */ -MEM_STATIC void BIT_addBits(BIT_CStream_t* bitC, - size_t value, unsigned nbBits) -{ - MEM_STATIC_ASSERT(BIT_MASK_SIZE == 32); - assert(nbBits < BIT_MASK_SIZE); - assert(nbBits + bitC->bitPos < sizeof(bitC->bitContainer) * 8); - bitC->bitContainer |= (value & BIT_mask[nbBits]) << bitC->bitPos; - bitC->bitPos += nbBits; -} - -/*! BIT_addBitsFast() : - * works only if `value` is _clean_, - * meaning all high bits above nbBits are 0 */ -MEM_STATIC void BIT_addBitsFast(BIT_CStream_t* bitC, - size_t value, unsigned nbBits) -{ - assert((value>>nbBits) == 0); - assert(nbBits + bitC->bitPos < sizeof(bitC->bitContainer) * 8); - bitC->bitContainer |= value << bitC->bitPos; - bitC->bitPos += nbBits; -} - -/*! BIT_flushBitsFast() : - * assumption : bitContainer has not overflowed - * unsafe version; does not check buffer overflow */ -MEM_STATIC void BIT_flushBitsFast(BIT_CStream_t* bitC) -{ - size_t const nbBytes = bitC->bitPos >> 3; - assert(bitC->bitPos < sizeof(bitC->bitContainer) * 8); - assert(bitC->ptr <= bitC->endPtr); - MEM_writeLEST(bitC->ptr, bitC->bitContainer); - bitC->ptr += nbBytes; - bitC->bitPos &= 7; - bitC->bitContainer >>= nbBytes*8; -} - -/*! BIT_flushBits() : - * assumption : bitContainer has not overflowed - * safe version; check for buffer overflow, and prevents it. - * note : does not signal buffer overflow. - * overflow will be revealed later on using BIT_closeCStream() */ -MEM_STATIC void BIT_flushBits(BIT_CStream_t* bitC) -{ - size_t const nbBytes = bitC->bitPos >> 3; - assert(bitC->bitPos < sizeof(bitC->bitContainer) * 8); - assert(bitC->ptr <= bitC->endPtr); - MEM_writeLEST(bitC->ptr, bitC->bitContainer); - bitC->ptr += nbBytes; - if (bitC->ptr > bitC->endPtr) bitC->ptr = bitC->endPtr; - bitC->bitPos &= 7; - bitC->bitContainer >>= nbBytes*8; -} - -/*! BIT_closeCStream() : - * @return : size of CStream, in bytes, - * or 0 if it could not fit into dstBuffer */ -MEM_STATIC size_t BIT_closeCStream(BIT_CStream_t* bitC) -{ - BIT_addBitsFast(bitC, 1, 1); /* endMark */ - BIT_flushBits(bitC); - if (bitC->ptr >= bitC->endPtr) return 0; /* overflow detected */ - return (bitC->ptr - bitC->startPtr) + (bitC->bitPos > 0); -} - - -/*-******************************************************** -* bitStream decoding -**********************************************************/ -/*! BIT_initDStream() : - * Initialize a BIT_DStream_t. - * `bitD` : a pointer to an already allocated BIT_DStream_t structure. - * `srcSize` must be the *exact* size of the bitStream, in bytes. - * @return : size of stream (== srcSize), or an errorCode if a problem is detected - */ -MEM_STATIC size_t BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, size_t srcSize) -{ - if (srcSize < 1) { memset(bitD, 0, sizeof(*bitD)); return ERROR(srcSize_wrong); } - - bitD->start = (const char*)srcBuffer; - bitD->limitPtr = bitD->start + sizeof(bitD->bitContainer); - - if (srcSize >= sizeof(bitD->bitContainer)) { /* normal case */ - bitD->ptr = (const char*)srcBuffer + srcSize - sizeof(bitD->bitContainer); - bitD->bitContainer = MEM_readLEST(bitD->ptr); - { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; - bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0; /* ensures bitsConsumed is always set */ - if (lastByte == 0) return ERROR(GENERIC); /* endMark not present */ } - } else { - bitD->ptr = bitD->start; - bitD->bitContainer = *(const BYTE*)(bitD->start); - switch(srcSize) - { - case 7: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[6]) << (sizeof(bitD->bitContainer)*8 - 16); - /* fall-through */ - - case 6: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[5]) << (sizeof(bitD->bitContainer)*8 - 24); - /* fall-through */ - - case 5: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[4]) << (sizeof(bitD->bitContainer)*8 - 32); - /* fall-through */ - - case 4: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[3]) << 24; - /* fall-through */ - - case 3: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[2]) << 16; - /* fall-through */ - - case 2: bitD->bitContainer += (size_t)(((const BYTE*)(srcBuffer))[1]) << 8; - /* fall-through */ - - default: break; - } - { BYTE const lastByte = ((const BYTE*)srcBuffer)[srcSize-1]; - bitD->bitsConsumed = lastByte ? 8 - BIT_highbit32(lastByte) : 0; - if (lastByte == 0) return ERROR(corruption_detected); /* endMark not present */ - } - bitD->bitsConsumed += (U32)(sizeof(bitD->bitContainer) - srcSize)*8; - } - - return srcSize; -} - -MEM_STATIC size_t BIT_getUpperBits(size_t bitContainer, U32 const start) -{ - return bitContainer >> start; -} - -MEM_STATIC size_t BIT_getMiddleBits(size_t bitContainer, U32 const start, U32 const nbBits) -{ - U32 const regMask = sizeof(bitContainer)*8 - 1; - /* if start > regMask, bitstream is corrupted, and result is undefined */ - assert(nbBits < BIT_MASK_SIZE); - return (bitContainer >> (start & regMask)) & BIT_mask[nbBits]; -} - -MEM_STATIC size_t BIT_getLowerBits(size_t bitContainer, U32 const nbBits) -{ - assert(nbBits < BIT_MASK_SIZE); - return bitContainer & BIT_mask[nbBits]; -} - -/*! BIT_lookBits() : - * Provides next n bits from local register. - * local register is not modified. - * On 32-bits, maxNbBits==24. - * On 64-bits, maxNbBits==56. - * @return : value extracted */ -MEM_STATIC size_t BIT_lookBits(const BIT_DStream_t* bitD, U32 nbBits) -{ - /* arbitrate between double-shift and shift+mask */ -#if 1 - /* if bitD->bitsConsumed + nbBits > sizeof(bitD->bitContainer)*8, - * bitstream is likely corrupted, and result is undefined */ - return BIT_getMiddleBits(bitD->bitContainer, (sizeof(bitD->bitContainer)*8) - bitD->bitsConsumed - nbBits, nbBits); -#else - /* this code path is slower on my os-x laptop */ - U32 const regMask = sizeof(bitD->bitContainer)*8 - 1; - return ((bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> 1) >> ((regMask-nbBits) & regMask); -#endif -} - -/*! BIT_lookBitsFast() : - * unsafe version; only works if nbBits >= 1 */ -MEM_STATIC size_t BIT_lookBitsFast(const BIT_DStream_t* bitD, U32 nbBits) -{ - U32 const regMask = sizeof(bitD->bitContainer)*8 - 1; - assert(nbBits >= 1); - return (bitD->bitContainer << (bitD->bitsConsumed & regMask)) >> (((regMask+1)-nbBits) & regMask); -} - -MEM_STATIC void BIT_skipBits(BIT_DStream_t* bitD, U32 nbBits) -{ - bitD->bitsConsumed += nbBits; -} - -/*! BIT_readBits() : - * Read (consume) next n bits from local register and update. - * Pay attention to not read more than nbBits contained into local register. - * @return : extracted value. */ -MEM_STATIC size_t BIT_readBits(BIT_DStream_t* bitD, unsigned nbBits) -{ - size_t const value = BIT_lookBits(bitD, nbBits); - BIT_skipBits(bitD, nbBits); - return value; -} - -/*! BIT_readBitsFast() : - * unsafe version; only works only if nbBits >= 1 */ -MEM_STATIC size_t BIT_readBitsFast(BIT_DStream_t* bitD, unsigned nbBits) -{ - size_t const value = BIT_lookBitsFast(bitD, nbBits); - assert(nbBits >= 1); - BIT_skipBits(bitD, nbBits); - return value; -} - -/*! BIT_reloadDStreamFast() : - * Similar to BIT_reloadDStream(), but with two differences: - * 1. bitsConsumed <= sizeof(bitD->bitContainer)*8 must hold! - * 2. Returns BIT_DStream_overflow when bitD->ptr < bitD->limitPtr, at this - * point you must use BIT_reloadDStream() to reload. - */ -MEM_STATIC BIT_DStream_status BIT_reloadDStreamFast(BIT_DStream_t* bitD) -{ - if (UNLIKELY(bitD->ptr < bitD->limitPtr)) - return BIT_DStream_overflow; - assert(bitD->bitsConsumed <= sizeof(bitD->bitContainer)*8); - bitD->ptr -= bitD->bitsConsumed >> 3; - bitD->bitsConsumed &= 7; - bitD->bitContainer = MEM_readLEST(bitD->ptr); - return BIT_DStream_unfinished; -} - -/*! BIT_reloadDStream() : - * Refill `bitD` from buffer previously set in BIT_initDStream() . - * This function is safe, it guarantees it will not read beyond src buffer. - * @return : status of `BIT_DStream_t` internal register. - * when status == BIT_DStream_unfinished, internal register is filled with at least 25 or 57 bits */ -MEM_STATIC BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD) -{ - if (bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8)) /* overflow detected, like end of stream */ - return BIT_DStream_overflow; - - if (bitD->ptr >= bitD->limitPtr) { - return BIT_reloadDStreamFast(bitD); - } - if (bitD->ptr == bitD->start) { - if (bitD->bitsConsumed < sizeof(bitD->bitContainer)*8) return BIT_DStream_endOfBuffer; - return BIT_DStream_completed; - } - /* start < ptr < limitPtr */ - { U32 nbBytes = bitD->bitsConsumed >> 3; - BIT_DStream_status result = BIT_DStream_unfinished; - if (bitD->ptr - nbBytes < bitD->start) { - nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */ - result = BIT_DStream_endOfBuffer; - } - bitD->ptr -= nbBytes; - bitD->bitsConsumed -= nbBytes*8; - bitD->bitContainer = MEM_readLEST(bitD->ptr); /* reminder : srcSize > sizeof(bitD->bitContainer), otherwise bitD->ptr == bitD->start */ - return result; - } -} - -/*! BIT_endOfDStream() : - * @return : 1 if DStream has _exactly_ reached its end (all bits consumed). - */ -MEM_STATIC unsigned BIT_endOfDStream(const BIT_DStream_t* DStream) -{ - return ((DStream->ptr == DStream->start) && (DStream->bitsConsumed == sizeof(DStream->bitContainer)*8)); -} - -#if defined (__cplusplus) -} -#endif - -#endif /* BITSTREAM_H_MODULE */ diff --git a/lib/SZ3/tools/zstd/common/compiler.h b/lib/SZ3/tools/zstd/common/compiler.h deleted file mode 100644 index 95e94835..00000000 --- a/lib/SZ3/tools/zstd/common/compiler.h +++ /dev/null @@ -1,175 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_COMPILER_H -#define ZSTD_COMPILER_H - -/*-******************************************************* -* Compiler specifics -*********************************************************/ -/* force inlining */ - -#if !defined(ZSTD_NO_INLINE) -#if (defined(__GNUC__) && !defined(__STRICT_ANSI__)) || defined(__cplusplus) || defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ -# define INLINE_KEYWORD inline -#else -# define INLINE_KEYWORD -#endif - -#if defined(__GNUC__) || defined(__ICCARM__) -# define FORCE_INLINE_ATTR __attribute__((always_inline)) -#elif defined(_MSC_VER) -# define FORCE_INLINE_ATTR __forceinline -#else -# define FORCE_INLINE_ATTR -#endif - -#else - -#define INLINE_KEYWORD -#define FORCE_INLINE_ATTR - -#endif - -/** - * FORCE_INLINE_TEMPLATE is used to define C "templates", which take constant - * parameters. They must be inlined for the compiler to eliminate the constant - * branches. - */ -#define FORCE_INLINE_TEMPLATE static INLINE_KEYWORD FORCE_INLINE_ATTR -/** - * HINT_INLINE is used to help the compiler generate better code. It is *not* - * used for "templates", so it can be tweaked based on the compilers - * performance. - * - * gcc-4.8 and gcc-4.9 have been shown to benefit from leaving off the - * always_inline attribute. - * - * clang up to 5.0.0 (trunk) benefit tremendously from the always_inline - * attribute. - */ -#if !defined(__clang__) && defined(__GNUC__) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 8 && __GNUC__ < 5 -# define HINT_INLINE static INLINE_KEYWORD -#else -# define HINT_INLINE static INLINE_KEYWORD FORCE_INLINE_ATTR -#endif - -/* UNUSED_ATTR tells the compiler it is okay if the function is unused. */ -#if defined(__GNUC__) -# define UNUSED_ATTR __attribute__((unused)) -#else -# define UNUSED_ATTR -#endif - -/* force no inlining */ -#ifdef _MSC_VER -# define FORCE_NOINLINE static __declspec(noinline) -#else -# if defined(__GNUC__) || defined(__ICCARM__) -# define FORCE_NOINLINE static __attribute__((__noinline__)) -# else -# define FORCE_NOINLINE static -# endif -#endif - -/* target attribute */ -#ifndef __has_attribute - #define __has_attribute(x) 0 /* Compatibility with non-clang compilers. */ -#endif -#if defined(__GNUC__) || defined(__ICCARM__) -# define TARGET_ATTRIBUTE(target) __attribute__((__target__(target))) -#else -# define TARGET_ATTRIBUTE(target) -#endif - -/* Enable runtime BMI2 dispatch based on the CPU. - * Enabled for clang & gcc >=4.8 on x86 when BMI2 isn't enabled by default. - */ -#ifndef DYNAMIC_BMI2 - #if ((defined(__clang__) && __has_attribute(__target__)) \ - || (defined(__GNUC__) \ - && (__GNUC__ >= 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)))) \ - && (defined(__x86_64__) || defined(_M_X86)) \ - && !defined(__BMI2__) - # define DYNAMIC_BMI2 1 - #else - # define DYNAMIC_BMI2 0 - #endif -#endif - -/* prefetch - * can be disabled, by declaring NO_PREFETCH build macro */ -#if defined(NO_PREFETCH) -# define PREFETCH_L1(ptr) (void)(ptr) /* disabled */ -# define PREFETCH_L2(ptr) (void)(ptr) /* disabled */ -#else -# if defined(_MSC_VER) && (defined(_M_X64) || defined(_M_I86)) /* _mm_prefetch() is not defined outside of x86/x64 */ -# include /* https://msdn.microsoft.com/fr-fr/library/84szxsww(v=vs.90).aspx */ -# define PREFETCH_L1(ptr) _mm_prefetch((const char*)(ptr), _MM_HINT_T0) -# define PREFETCH_L2(ptr) _mm_prefetch((const char*)(ptr), _MM_HINT_T1) -# elif defined(__aarch64__) -# define PREFETCH_L1(ptr) __asm__ __volatile__("prfm pldl1keep, %0" ::"Q"(*(ptr))) -# define PREFETCH_L2(ptr) __asm__ __volatile__("prfm pldl2keep, %0" ::"Q"(*(ptr))) -# elif defined(__GNUC__) && ( (__GNUC__ >= 4) || ( (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1) ) ) -# define PREFETCH_L1(ptr) __builtin_prefetch((ptr), 0 /* rw==read */, 3 /* locality */) -# define PREFETCH_L2(ptr) __builtin_prefetch((ptr), 0 /* rw==read */, 2 /* locality */) -# else -# define PREFETCH_L1(ptr) (void)(ptr) /* disabled */ -# define PREFETCH_L2(ptr) (void)(ptr) /* disabled */ -# endif -#endif /* NO_PREFETCH */ - -#define CACHELINE_SIZE 64 - -#define PREFETCH_AREA(p, s) { \ - const char* const _ptr = (const char*)(p); \ - size_t const _size = (size_t)(s); \ - size_t _pos; \ - for (_pos=0; _pos<_size; _pos+=CACHELINE_SIZE) { \ - PREFETCH_L2(_ptr + _pos); \ - } \ -} - -/* vectorization - * older GCC (pre gcc-4.3 picked as the cutoff) uses a different syntax */ -#if !defined(__INTEL_COMPILER) && !defined(__clang__) && defined(__GNUC__) -# if (__GNUC__ == 4 && __GNUC_MINOR__ > 3) || (__GNUC__ >= 5) -# define DONT_VECTORIZE __attribute__((optimize("no-tree-vectorize"))) -# else -# define DONT_VECTORIZE _Pragma("GCC optimize(\"no-tree-vectorize\")") -# endif -#else -# define DONT_VECTORIZE -#endif - -/* Tell the compiler that a branch is likely or unlikely. - * Only use these macros if it causes the compiler to generate better code. - * If you can remove a LIKELY/UNLIKELY annotation without speed changes in gcc - * and clang, please do. - */ -#if defined(__GNUC__) -#define LIKELY(x) (__builtin_expect((x), 1)) -#define UNLIKELY(x) (__builtin_expect((x), 0)) -#else -#define LIKELY(x) (x) -#define UNLIKELY(x) (x) -#endif - -/* disable warnings */ -#ifdef _MSC_VER /* Visual Studio */ -# include /* For Visual 2005 */ -# pragma warning(disable : 4100) /* disable: C4100: unreferenced formal parameter */ -# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ -# pragma warning(disable : 4204) /* disable: C4204: non-constant aggregate initializer */ -# pragma warning(disable : 4214) /* disable: C4214: non-int bitfields */ -# pragma warning(disable : 4324) /* disable: C4324: padded structure */ -#endif - -#endif /* ZSTD_COMPILER_H */ diff --git a/lib/SZ3/tools/zstd/common/cpu.h b/lib/SZ3/tools/zstd/common/cpu.h deleted file mode 100644 index 6e8a974f..00000000 --- a/lib/SZ3/tools/zstd/common/cpu.h +++ /dev/null @@ -1,215 +0,0 @@ -/* - * Copyright (c) 2018-2020, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_COMMON_CPU_H -#define ZSTD_COMMON_CPU_H - -/** - * Implementation taken from folly/CpuId.h - * https://github.com/facebook/folly/blob/master/folly/CpuId.h - */ - -#include - -#include "mem.h" - -#ifdef _MSC_VER -#include -#endif - -typedef struct { - U32 f1c; - U32 f1d; - U32 f7b; - U32 f7c; -} ZSTD_cpuid_t; - -MEM_STATIC ZSTD_cpuid_t ZSTD_cpuid(void) { - U32 f1c = 0; - U32 f1d = 0; - U32 f7b = 0; - U32 f7c = 0; -#if defined(_MSC_VER) && (defined(_M_X64) || defined(_M_IX86)) - int reg[4]; - __cpuid((int*)reg, 0); - { - int const n = reg[0]; - if (n >= 1) { - __cpuid((int*)reg, 1); - f1c = (U32)reg[2]; - f1d = (U32)reg[3]; - } - if (n >= 7) { - __cpuidex((int*)reg, 7, 0); - f7b = (U32)reg[1]; - f7c = (U32)reg[2]; - } - } -#elif defined(__i386__) && defined(__PIC__) && !defined(__clang__) && defined(__GNUC__) - /* The following block like the normal cpuid branch below, but gcc - * reserves ebx for use of its pic register so we must specially - * handle the save and restore to avoid clobbering the register - */ - U32 n; - __asm__( - "pushl %%ebx\n\t" - "cpuid\n\t" - "popl %%ebx\n\t" - : "=a"(n) - : "a"(0) - : "ecx", "edx"); - if (n >= 1) { - U32 f1a; - __asm__( - "pushl %%ebx\n\t" - "cpuid\n\t" - "popl %%ebx\n\t" - : "=a"(f1a), "=c"(f1c), "=d"(f1d) - : "a"(1)); - } - if (n >= 7) { - __asm__( - "pushl %%ebx\n\t" - "cpuid\n\t" - "movl %%ebx, %%eax\n\t" - "popl %%ebx" - : "=a"(f7b), "=c"(f7c) - : "a"(7), "c"(0) - : "edx"); - } -#elif defined(__x86_64__) || defined(_M_X64) || defined(__i386__) - U32 n; - __asm__("cpuid" : "=a"(n) : "a"(0) : "ebx", "ecx", "edx"); - if (n >= 1) { - U32 f1a; - __asm__("cpuid" : "=a"(f1a), "=c"(f1c), "=d"(f1d) : "a"(1) : "ebx"); - } - if (n >= 7) { - U32 f7a; - __asm__("cpuid" - : "=a"(f7a), "=b"(f7b), "=c"(f7c) - : "a"(7), "c"(0) - : "edx"); - } -#endif - { - ZSTD_cpuid_t cpuid; - cpuid.f1c = f1c; - cpuid.f1d = f1d; - cpuid.f7b = f7b; - cpuid.f7c = f7c; - return cpuid; - } -} - -#define X(name, r, bit) \ - MEM_STATIC int ZSTD_cpuid_##name(ZSTD_cpuid_t const cpuid) { \ - return ((cpuid.r) & (1U << bit)) != 0; \ - } - -/* cpuid(1): Processor Info and Feature Bits. */ -#define C(name, bit) X(name, f1c, bit) - C(sse3, 0) - C(pclmuldq, 1) - C(dtes64, 2) - C(monitor, 3) - C(dscpl, 4) - C(vmx, 5) - C(smx, 6) - C(eist, 7) - C(tm2, 8) - C(ssse3, 9) - C(cnxtid, 10) - C(fma, 12) - C(cx16, 13) - C(xtpr, 14) - C(pdcm, 15) - C(pcid, 17) - C(dca, 18) - C(sse41, 19) - C(sse42, 20) - C(x2apic, 21) - C(movbe, 22) - C(popcnt, 23) - C(tscdeadline, 24) - C(aes, 25) - C(xsave, 26) - C(osxsave, 27) - C(avx, 28) - C(f16c, 29) - C(rdrand, 30) -#undef C -#define D(name, bit) X(name, f1d, bit) - D(fpu, 0) - D(vme, 1) - D(de, 2) - D(pse, 3) - D(tsc, 4) - D(msr, 5) - D(pae, 6) - D(mce, 7) - D(cx8, 8) - D(apic, 9) - D(sep, 11) - D(mtrr, 12) - D(pge, 13) - D(mca, 14) - D(cmov, 15) - D(pat, 16) - D(pse36, 17) - D(psn, 18) - D(clfsh, 19) - D(ds, 21) - D(acpi, 22) - D(mmx, 23) - D(fxsr, 24) - D(sse, 25) - D(sse2, 26) - D(ss, 27) - D(htt, 28) - D(tm, 29) - D(pbe, 31) -#undef D - -/* cpuid(7): Extended Features. */ -#define B(name, bit) X(name, f7b, bit) - B(bmi1, 3) - B(hle, 4) - B(avx2, 5) - B(smep, 7) - B(bmi2, 8) - B(erms, 9) - B(invpcid, 10) - B(rtm, 11) - B(mpx, 14) - B(avx512f, 16) - B(avx512dq, 17) - B(rdseed, 18) - B(adx, 19) - B(smap, 20) - B(avx512ifma, 21) - B(pcommit, 22) - B(clflushopt, 23) - B(clwb, 24) - B(avx512pf, 26) - B(avx512er, 27) - B(avx512cd, 28) - B(sha, 29) - B(avx512bw, 30) - B(avx512vl, 31) -#undef B -#define C(name, bit) X(name, f7c, bit) - C(prefetchwt1, 0) - C(avx512vbmi, 1) -#undef C - -#undef X - -#endif /* ZSTD_COMMON_CPU_H */ diff --git a/lib/SZ3/tools/zstd/common/debug.c b/lib/SZ3/tools/zstd/common/debug.c deleted file mode 100644 index f303f4a2..00000000 --- a/lib/SZ3/tools/zstd/common/debug.c +++ /dev/null @@ -1,24 +0,0 @@ -/* ****************************************************************** - * debug - * Part of FSE library - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - - -/* - * This module only hosts one global variable - * which can be used to dynamically influence the verbosity of traces, - * such as DEBUGLOG and RAWLOG - */ - -#include "debug.h" - -int g_debuglevel = DEBUGLEVEL; diff --git a/lib/SZ3/tools/zstd/common/debug.h b/lib/SZ3/tools/zstd/common/debug.h deleted file mode 100644 index ac622488..00000000 --- a/lib/SZ3/tools/zstd/common/debug.h +++ /dev/null @@ -1,114 +0,0 @@ -/* ****************************************************************** - * debug - * Part of FSE library - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - - -/* - * The purpose of this header is to enable debug functions. - * They regroup assert(), DEBUGLOG() and RAWLOG() for run-time, - * and DEBUG_STATIC_ASSERT() for compile-time. - * - * By default, DEBUGLEVEL==0, which means run-time debug is disabled. - * - * Level 1 enables assert() only. - * Starting level 2, traces can be generated and pushed to stderr. - * The higher the level, the more verbose the traces. - * - * It's possible to dynamically adjust level using variable g_debug_level, - * which is only declared if DEBUGLEVEL>=2, - * and is a global variable, not multi-thread protected (use with care) - */ - -#ifndef DEBUG_H_12987983217 -#define DEBUG_H_12987983217 - -#if defined (__cplusplus) -extern "C" { -#endif - - -/* static assert is triggered at compile time, leaving no runtime artefact. - * static assert only works with compile-time constants. - * Also, this variant can only be used inside a function. */ -#define DEBUG_STATIC_ASSERT(c) (void)sizeof(char[(c) ? 1 : -1]) - - -/* DEBUGLEVEL is expected to be defined externally, - * typically through compiler command line. - * Value must be a number. */ -#ifndef DEBUGLEVEL -# define DEBUGLEVEL 0 -#endif - - -/* DEBUGFILE can be defined externally, - * typically through compiler command line. - * note : currently useless. - * Value must be stderr or stdout */ -#ifndef DEBUGFILE -# define DEBUGFILE stderr -#endif - - -/* recommended values for DEBUGLEVEL : - * 0 : release mode, no debug, all run-time checks disabled - * 1 : enables assert() only, no display - * 2 : reserved, for currently active debug path - * 3 : events once per object lifetime (CCtx, CDict, etc.) - * 4 : events once per frame - * 5 : events once per block - * 6 : events once per sequence (verbose) - * 7+: events at every position (*very* verbose) - * - * It's generally inconvenient to output traces > 5. - * In which case, it's possible to selectively trigger high verbosity levels - * by modifying g_debug_level. - */ - -#if (DEBUGLEVEL>=1) -# include -#else -# ifndef assert /* assert may be already defined, due to prior #include */ -# define assert(condition) ((void)0) /* disable assert (default) */ -# endif -#endif - -#if (DEBUGLEVEL>=2) -# include -extern int g_debuglevel; /* the variable is only declared, - it actually lives in debug.c, - and is shared by the whole process. - It's not thread-safe. - It's useful when enabling very verbose levels - on selective conditions (such as position in src) */ - -# define RAWLOG(l, ...) { \ - if (l<=g_debuglevel) { \ - fprintf(stderr, __VA_ARGS__); \ - } } -# define DEBUGLOG(l, ...) { \ - if (l<=g_debuglevel) { \ - fprintf(stderr, __FILE__ ": " __VA_ARGS__); \ - fprintf(stderr, " \n"); \ - } } -#else -# define RAWLOG(l, ...) {} /* disabled */ -# define DEBUGLOG(l, ...) {} /* disabled */ -#endif - - -#if defined (__cplusplus) -} -#endif - -#endif /* DEBUG_H_12987983217 */ diff --git a/lib/SZ3/tools/zstd/common/entropy_common.c b/lib/SZ3/tools/zstd/common/entropy_common.c deleted file mode 100644 index 9d3e4e8e..00000000 --- a/lib/SZ3/tools/zstd/common/entropy_common.c +++ /dev/null @@ -1,216 +0,0 @@ -/* ****************************************************************** - * Common functions of New Generation Entropy library - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - Public forum : https://groups.google.com/forum/#!forum/lz4c - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - -/* ************************************* -* Dependencies -***************************************/ -#include "mem.h" -#include "error_private.h" /* ERR_*, ERROR */ -#define FSE_STATIC_LINKING_ONLY /* FSE_MIN_TABLELOG */ -#include "fse.h" -#define HUF_STATIC_LINKING_ONLY /* HUF_TABLELOG_ABSOLUTEMAX */ -#include "huf.h" - - -/*=== Version ===*/ -unsigned FSE_versionNumber(void) { return FSE_VERSION_NUMBER; } - - -/*=== Error Management ===*/ -unsigned FSE_isError(size_t code) { return ERR_isError(code); } -const char* FSE_getErrorName(size_t code) { return ERR_getErrorName(code); } - -unsigned HUF_isError(size_t code) { return ERR_isError(code); } -const char* HUF_getErrorName(size_t code) { return ERR_getErrorName(code); } - - -/*-************************************************************** -* FSE NCount encoding-decoding -****************************************************************/ -size_t FSE_readNCount (short* normalizedCounter, unsigned* maxSVPtr, unsigned* tableLogPtr, - const void* headerBuffer, size_t hbSize) -{ - const BYTE* const istart = (const BYTE*) headerBuffer; - const BYTE* const iend = istart + hbSize; - const BYTE* ip = istart; - int nbBits; - int remaining; - int threshold; - U32 bitStream; - int bitCount; - unsigned charnum = 0; - int previous0 = 0; - - if (hbSize < 4) { - /* This function only works when hbSize >= 4 */ - char buffer[4]; - memset(buffer, 0, sizeof(buffer)); - memcpy(buffer, headerBuffer, hbSize); - { size_t const countSize = FSE_readNCount(normalizedCounter, maxSVPtr, tableLogPtr, - buffer, sizeof(buffer)); - if (FSE_isError(countSize)) return countSize; - if (countSize > hbSize) return ERROR(corruption_detected); - return countSize; - } } - assert(hbSize >= 4); - - /* init */ - memset(normalizedCounter, 0, (*maxSVPtr+1) * sizeof(normalizedCounter[0])); /* all symbols not present in NCount have a frequency of 0 */ - bitStream = MEM_readLE32(ip); - nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ - if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge); - bitStream >>= 4; - bitCount = 4; - *tableLogPtr = nbBits; - remaining = (1<1) & (charnum<=*maxSVPtr)) { - if (previous0) { - unsigned n0 = charnum; - while ((bitStream & 0xFFFF) == 0xFFFF) { - n0 += 24; - if (ip < iend-5) { - ip += 2; - bitStream = MEM_readLE32(ip) >> bitCount; - } else { - bitStream >>= 16; - bitCount += 16; - } } - while ((bitStream & 3) == 3) { - n0 += 3; - bitStream >>= 2; - bitCount += 2; - } - n0 += bitStream & 3; - bitCount += 2; - if (n0 > *maxSVPtr) return ERROR(maxSymbolValue_tooSmall); - while (charnum < n0) normalizedCounter[charnum++] = 0; - if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { - assert((bitCount >> 3) <= 3); /* For first condition to work */ - ip += bitCount>>3; - bitCount &= 7; - bitStream = MEM_readLE32(ip) >> bitCount; - } else { - bitStream >>= 2; - } } - { int const max = (2*threshold-1) - remaining; - int count; - - if ((bitStream & (threshold-1)) < (U32)max) { - count = bitStream & (threshold-1); - bitCount += nbBits-1; - } else { - count = bitStream & (2*threshold-1); - if (count >= threshold) count -= max; - bitCount += nbBits; - } - - count--; /* extra accuracy */ - remaining -= count < 0 ? -count : count; /* -1 means +1 */ - normalizedCounter[charnum++] = (short)count; - previous0 = !count; - while (remaining < threshold) { - nbBits--; - threshold >>= 1; - } - - if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { - ip += bitCount>>3; - bitCount &= 7; - } else { - bitCount -= (int)(8 * (iend - 4 - ip)); - ip = iend - 4; - } - bitStream = MEM_readLE32(ip) >> (bitCount & 31); - } } /* while ((remaining>1) & (charnum<=*maxSVPtr)) */ - if (remaining != 1) return ERROR(corruption_detected); - if (bitCount > 32) return ERROR(corruption_detected); - *maxSVPtr = charnum-1; - - ip += (bitCount+7)>>3; - return ip-istart; -} - - -/*! HUF_readStats() : - Read compact Huffman tree, saved by HUF_writeCTable(). - `huffWeight` is destination buffer. - `rankStats` is assumed to be a table of at least HUF_TABLELOG_MAX U32. - @return : size read from `src` , or an error Code . - Note : Needed by HUF_readCTable() and HUF_readDTableX?() . -*/ -size_t HUF_readStats(BYTE* huffWeight, size_t hwSize, U32* rankStats, - U32* nbSymbolsPtr, U32* tableLogPtr, - const void* src, size_t srcSize) -{ - U32 weightTotal; - const BYTE* ip = (const BYTE*) src; - size_t iSize; - size_t oSize; - - if (!srcSize) return ERROR(srcSize_wrong); - iSize = ip[0]; - /* memset(huffWeight, 0, hwSize); *//* is not necessary, even though some analyzer complain ... */ - - if (iSize >= 128) { /* special header */ - oSize = iSize - 127; - iSize = ((oSize+1)/2); - if (iSize+1 > srcSize) return ERROR(srcSize_wrong); - if (oSize >= hwSize) return ERROR(corruption_detected); - ip += 1; - { U32 n; - for (n=0; n> 4; - huffWeight[n+1] = ip[n/2] & 15; - } } } - else { /* header compressed with FSE (normal case) */ - FSE_DTable fseWorkspace[FSE_DTABLE_SIZE_U32(6)]; /* 6 is max possible tableLog for HUF header (maybe even 5, to be tested) */ - if (iSize+1 > srcSize) return ERROR(srcSize_wrong); - oSize = FSE_decompress_wksp(huffWeight, hwSize-1, ip+1, iSize, fseWorkspace, 6); /* max (hwSize-1) values decoded, as last one is implied */ - if (FSE_isError(oSize)) return oSize; - } - - /* collect weight stats */ - memset(rankStats, 0, (HUF_TABLELOG_MAX + 1) * sizeof(U32)); - weightTotal = 0; - { U32 n; for (n=0; n= HUF_TABLELOG_MAX) return ERROR(corruption_detected); - rankStats[huffWeight[n]]++; - weightTotal += (1 << huffWeight[n]) >> 1; - } } - if (weightTotal == 0) return ERROR(corruption_detected); - - /* get last non-null symbol weight (implied, total must be 2^n) */ - { U32 const tableLog = BIT_highbit32(weightTotal) + 1; - if (tableLog > HUF_TABLELOG_MAX) return ERROR(corruption_detected); - *tableLogPtr = tableLog; - /* determine last weight */ - { U32 const total = 1 << tableLog; - U32 const rest = total - weightTotal; - U32 const verif = 1 << BIT_highbit32(rest); - U32 const lastWeight = BIT_highbit32(rest) + 1; - if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */ - huffWeight[oSize] = (BYTE)lastWeight; - rankStats[lastWeight]++; - } } - - /* check tree construction validity */ - if ((rankStats[1] < 2) || (rankStats[1] & 1)) return ERROR(corruption_detected); /* by construction : at least 2 elts of rank 1, must be even */ - - /* results */ - *nbSymbolsPtr = (U32)(oSize+1); - return iSize+1; -} diff --git a/lib/SZ3/tools/zstd/common/error_private.c b/lib/SZ3/tools/zstd/common/error_private.c deleted file mode 100644 index cd437529..00000000 --- a/lib/SZ3/tools/zstd/common/error_private.c +++ /dev/null @@ -1,55 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/* The purpose of this file is to have a single list of error strings embedded in binary */ - -#include "error_private.h" - -const char* ERR_getErrorString(ERR_enum code) -{ -#ifdef ZSTD_STRIP_ERROR_STRINGS - (void)code; - return "Error strings stripped"; -#else - static const char* const notErrorCode = "Unspecified error code"; - switch( code ) - { - case PREFIX(no_error): return "No error detected"; - case PREFIX(GENERIC): return "Error (generic)"; - case PREFIX(prefix_unknown): return "Unknown frame descriptor"; - case PREFIX(version_unsupported): return "Version not supported"; - case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter"; - case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding"; - case PREFIX(corruption_detected): return "Corrupted block detected"; - case PREFIX(checksum_wrong): return "Restored data doesn't match checksum"; - case PREFIX(parameter_unsupported): return "Unsupported parameter"; - case PREFIX(parameter_outOfBound): return "Parameter is out of bound"; - case PREFIX(init_missing): return "Context should be init first"; - case PREFIX(memory_allocation): return "Allocation error : not enough memory"; - case PREFIX(workSpace_tooSmall): return "workSpace buffer is not large enough"; - case PREFIX(stage_wrong): return "Operation not authorized at current processing stage"; - case PREFIX(tableLog_tooLarge): return "tableLog requires too much memory : unsupported"; - case PREFIX(maxSymbolValue_tooLarge): return "Unsupported max Symbol Value : too large"; - case PREFIX(maxSymbolValue_tooSmall): return "Specified maxSymbolValue is too small"; - case PREFIX(dictionary_corrupted): return "Dictionary is corrupted"; - case PREFIX(dictionary_wrong): return "Dictionary mismatch"; - case PREFIX(dictionaryCreation_failed): return "Cannot create Dictionary from provided samples"; - case PREFIX(dstSize_tooSmall): return "Destination buffer is too small"; - case PREFIX(srcSize_wrong): return "Src size is incorrect"; - case PREFIX(dstBuffer_null): return "Operation on NULL destination buffer"; - /* following error codes are not stable and may be removed or changed in a future version */ - case PREFIX(frameIndex_tooLarge): return "Frame index is too large"; - case PREFIX(seekableIO): return "An I/O error occurred when reading/seeking"; - case PREFIX(dstBuffer_wrong): return "Destination buffer is wrong"; - case PREFIX(maxCode): - default: return notErrorCode; - } -#endif -} diff --git a/lib/SZ3/tools/zstd/common/error_private.h b/lib/SZ3/tools/zstd/common/error_private.h deleted file mode 100644 index 982cf8e9..00000000 --- a/lib/SZ3/tools/zstd/common/error_private.h +++ /dev/null @@ -1,80 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/* Note : this module is expected to remain private, do not expose it */ - -#ifndef ERROR_H_MODULE -#define ERROR_H_MODULE - -#if defined (__cplusplus) -extern "C" { -#endif - - -/* **************************************** -* Dependencies -******************************************/ -#include /* size_t */ -#include "zstd_errors.h" /* enum list */ - - -/* **************************************** -* Compiler-specific -******************************************/ -#if defined(__GNUC__) -# define ERR_STATIC static __attribute__((unused)) -#elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -# define ERR_STATIC static inline -#elif defined(_MSC_VER) -# define ERR_STATIC static __inline -#else -# define ERR_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */ -#endif - - -/*-**************************************** -* Customization (error_public.h) -******************************************/ -typedef ZSTD_ErrorCode ERR_enum; -#define PREFIX(name) ZSTD_error_##name - - -/*-**************************************** -* Error codes handling -******************************************/ -#undef ERROR /* already defined on Visual Studio */ -#define ERROR(name) ZSTD_ERROR(name) -#define ZSTD_ERROR(name) ((size_t)-PREFIX(name)) - -ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); } - -ERR_STATIC ERR_enum ERR_getErrorCode(size_t code) { if (!ERR_isError(code)) return (ERR_enum)0; return (ERR_enum) (0-code); } - -/* check and forward error code */ -#define CHECK_V_F(e, f) size_t const e = f; if (ERR_isError(e)) return e -#define CHECK_F(f) { CHECK_V_F(_var_err__, f); } - - -/*-**************************************** -* Error Strings -******************************************/ - -const char* ERR_getErrorString(ERR_enum code); /* error_private.c */ - -ERR_STATIC const char* ERR_getErrorName(size_t code) -{ - return ERR_getErrorString(ERR_getErrorCode(code)); -} - -#if defined (__cplusplus) -} -#endif - -#endif /* ERROR_H_MODULE */ diff --git a/lib/SZ3/tools/zstd/common/fse.h b/lib/SZ3/tools/zstd/common/fse.h deleted file mode 100644 index ff54e70e..00000000 --- a/lib/SZ3/tools/zstd/common/fse.h +++ /dev/null @@ -1,688 +0,0 @@ -/* ****************************************************************** - * FSE : Finite State Entropy codec - * Public Prototypes declaration - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - -#if defined (__cplusplus) -extern "C" { -#endif - -#ifndef FSE_H -#define FSE_H - - -/*-***************************************** -* Dependencies -******************************************/ -#include /* size_t, ptrdiff_t */ - - -/*-***************************************** -* FSE_PUBLIC_API : control library symbols visibility -******************************************/ -#if defined(FSE_DLL_EXPORT) && (FSE_DLL_EXPORT==1) && defined(__GNUC__) && (__GNUC__ >= 4) -# define FSE_PUBLIC_API __attribute__ ((visibility ("default"))) -#elif defined(FSE_DLL_EXPORT) && (FSE_DLL_EXPORT==1) /* Visual expected */ -# define FSE_PUBLIC_API __declspec(dllexport) -#elif defined(FSE_DLL_IMPORT) && (FSE_DLL_IMPORT==1) -# define FSE_PUBLIC_API __declspec(dllimport) /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/ -#else -# define FSE_PUBLIC_API -#endif - -/*------ Version ------*/ -#define FSE_VERSION_MAJOR 0 -#define FSE_VERSION_MINOR 9 -#define FSE_VERSION_RELEASE 0 - -#define FSE_LIB_VERSION FSE_VERSION_MAJOR.FSE_VERSION_MINOR.FSE_VERSION_RELEASE -#define FSE_QUOTE(str) #str -#define FSE_EXPAND_AND_QUOTE(str) FSE_QUOTE(str) -#define FSE_VERSION_STRING FSE_EXPAND_AND_QUOTE(FSE_LIB_VERSION) - -#define FSE_VERSION_NUMBER (FSE_VERSION_MAJOR *100*100 + FSE_VERSION_MINOR *100 + FSE_VERSION_RELEASE) -FSE_PUBLIC_API unsigned FSE_versionNumber(void); /**< library version number; to be used when checking dll version */ - - -/*-**************************************** -* FSE simple functions -******************************************/ -/*! FSE_compress() : - Compress content of buffer 'src', of size 'srcSize', into destination buffer 'dst'. - 'dst' buffer must be already allocated. Compression runs faster is dstCapacity >= FSE_compressBound(srcSize). - @return : size of compressed data (<= dstCapacity). - Special values : if return == 0, srcData is not compressible => Nothing is stored within dst !!! - if return == 1, srcData is a single byte symbol * srcSize times. Use RLE compression instead. - if FSE_isError(return), compression failed (more details using FSE_getErrorName()) -*/ -FSE_PUBLIC_API size_t FSE_compress(void* dst, size_t dstCapacity, - const void* src, size_t srcSize); - -/*! FSE_decompress(): - Decompress FSE data from buffer 'cSrc', of size 'cSrcSize', - into already allocated destination buffer 'dst', of size 'dstCapacity'. - @return : size of regenerated data (<= maxDstSize), - or an error code, which can be tested using FSE_isError() . - - ** Important ** : FSE_decompress() does not decompress non-compressible nor RLE data !!! - Why ? : making this distinction requires a header. - Header management is intentionally delegated to the user layer, which can better manage special cases. -*/ -FSE_PUBLIC_API size_t FSE_decompress(void* dst, size_t dstCapacity, - const void* cSrc, size_t cSrcSize); - - -/*-***************************************** -* Tool functions -******************************************/ -FSE_PUBLIC_API size_t FSE_compressBound(size_t size); /* maximum compressed size */ - -/* Error Management */ -FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error code */ -FSE_PUBLIC_API const char* FSE_getErrorName(size_t code); /* provides error code string (useful for debugging) */ - - -/*-***************************************** -* FSE advanced functions -******************************************/ -/*! FSE_compress2() : - Same as FSE_compress(), but allows the selection of 'maxSymbolValue' and 'tableLog' - Both parameters can be defined as '0' to mean : use default value - @return : size of compressed data - Special values : if return == 0, srcData is not compressible => Nothing is stored within cSrc !!! - if return == 1, srcData is a single byte symbol * srcSize times. Use RLE compression. - if FSE_isError(return), it's an error code. -*/ -FSE_PUBLIC_API size_t FSE_compress2 (void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog); - - -/*-***************************************** -* FSE detailed API -******************************************/ -/*! -FSE_compress() does the following: -1. count symbol occurrence from source[] into table count[] (see hist.h) -2. normalize counters so that sum(count[]) == Power_of_2 (2^tableLog) -3. save normalized counters to memory buffer using writeNCount() -4. build encoding table 'CTable' from normalized counters -5. encode the data stream using encoding table 'CTable' - -FSE_decompress() does the following: -1. read normalized counters with readNCount() -2. build decoding table 'DTable' from normalized counters -3. decode the data stream using decoding table 'DTable' - -The following API allows targeting specific sub-functions for advanced tasks. -For example, it's possible to compress several blocks using the same 'CTable', -or to save and provide normalized distribution using external method. -*/ - -/* *** COMPRESSION *** */ - -/*! FSE_optimalTableLog(): - dynamically downsize 'tableLog' when conditions are met. - It saves CPU time, by using smaller tables, while preserving or even improving compression ratio. - @return : recommended tableLog (necessarily <= 'maxTableLog') */ -FSE_PUBLIC_API unsigned FSE_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue); - -/*! FSE_normalizeCount(): - normalize counts so that sum(count[]) == Power_of_2 (2^tableLog) - 'normalizedCounter' is a table of short, of minimum size (maxSymbolValue+1). - @return : tableLog, - or an errorCode, which can be tested using FSE_isError() */ -FSE_PUBLIC_API size_t FSE_normalizeCount(short* normalizedCounter, unsigned tableLog, - const unsigned* count, size_t srcSize, unsigned maxSymbolValue); - -/*! FSE_NCountWriteBound(): - Provides the maximum possible size of an FSE normalized table, given 'maxSymbolValue' and 'tableLog'. - Typically useful for allocation purpose. */ -FSE_PUBLIC_API size_t FSE_NCountWriteBound(unsigned maxSymbolValue, unsigned tableLog); - -/*! FSE_writeNCount(): - Compactly save 'normalizedCounter' into 'buffer'. - @return : size of the compressed table, - or an errorCode, which can be tested using FSE_isError(). */ -FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize, - const short* normalizedCounter, - unsigned maxSymbolValue, unsigned tableLog); - -/*! Constructor and Destructor of FSE_CTable. - Note that FSE_CTable size depends on 'tableLog' and 'maxSymbolValue' */ -typedef unsigned FSE_CTable; /* don't allocate that. It's only meant to be more restrictive than void* */ -FSE_PUBLIC_API FSE_CTable* FSE_createCTable (unsigned maxSymbolValue, unsigned tableLog); -FSE_PUBLIC_API void FSE_freeCTable (FSE_CTable* ct); - -/*! FSE_buildCTable(): - Builds `ct`, which must be already allocated, using FSE_createCTable(). - @return : 0, or an errorCode, which can be tested using FSE_isError() */ -FSE_PUBLIC_API size_t FSE_buildCTable(FSE_CTable* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog); - -/*! FSE_compress_usingCTable(): - Compress `src` using `ct` into `dst` which must be already allocated. - @return : size of compressed data (<= `dstCapacity`), - or 0 if compressed data could not fit into `dst`, - or an errorCode, which can be tested using FSE_isError() */ -FSE_PUBLIC_API size_t FSE_compress_usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const FSE_CTable* ct); - -/*! -Tutorial : ----------- -The first step is to count all symbols. FSE_count() does this job very fast. -Result will be saved into 'count', a table of unsigned int, which must be already allocated, and have 'maxSymbolValuePtr[0]+1' cells. -'src' is a table of bytes of size 'srcSize'. All values within 'src' MUST be <= maxSymbolValuePtr[0] -maxSymbolValuePtr[0] will be updated, with its real value (necessarily <= original value) -FSE_count() will return the number of occurrence of the most frequent symbol. -This can be used to know if there is a single symbol within 'src', and to quickly evaluate its compressibility. -If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError()). - -The next step is to normalize the frequencies. -FSE_normalizeCount() will ensure that sum of frequencies is == 2 ^'tableLog'. -It also guarantees a minimum of 1 to any Symbol with frequency >= 1. -You can use 'tableLog'==0 to mean "use default tableLog value". -If you are unsure of which tableLog value to use, you can ask FSE_optimalTableLog(), -which will provide the optimal valid tableLog given sourceSize, maxSymbolValue, and a user-defined maximum (0 means "default"). - -The result of FSE_normalizeCount() will be saved into a table, -called 'normalizedCounter', which is a table of signed short. -'normalizedCounter' must be already allocated, and have at least 'maxSymbolValue+1' cells. -The return value is tableLog if everything proceeded as expected. -It is 0 if there is a single symbol within distribution. -If there is an error (ex: invalid tableLog value), the function will return an ErrorCode (which can be tested using FSE_isError()). - -'normalizedCounter' can be saved in a compact manner to a memory area using FSE_writeNCount(). -'buffer' must be already allocated. -For guaranteed success, buffer size must be at least FSE_headerBound(). -The result of the function is the number of bytes written into 'buffer'. -If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError(); ex : buffer size too small). - -'normalizedCounter' can then be used to create the compression table 'CTable'. -The space required by 'CTable' must be already allocated, using FSE_createCTable(). -You can then use FSE_buildCTable() to fill 'CTable'. -If there is an error, both functions will return an ErrorCode (which can be tested using FSE_isError()). - -'CTable' can then be used to compress 'src', with FSE_compress_usingCTable(). -Similar to FSE_count(), the convention is that 'src' is assumed to be a table of char of size 'srcSize' -The function returns the size of compressed data (without header), necessarily <= `dstCapacity`. -If it returns '0', compressed data could not fit into 'dst'. -If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError()). -*/ - - -/* *** DECOMPRESSION *** */ - -/*! FSE_readNCount(): - Read compactly saved 'normalizedCounter' from 'rBuffer'. - @return : size read from 'rBuffer', - or an errorCode, which can be tested using FSE_isError(). - maxSymbolValuePtr[0] and tableLogPtr[0] will also be updated with their respective values */ -FSE_PUBLIC_API size_t FSE_readNCount (short* normalizedCounter, - unsigned* maxSymbolValuePtr, unsigned* tableLogPtr, - const void* rBuffer, size_t rBuffSize); - -/*! Constructor and Destructor of FSE_DTable. - Note that its size depends on 'tableLog' */ -typedef unsigned FSE_DTable; /* don't allocate that. It's just a way to be more restrictive than void* */ -FSE_PUBLIC_API FSE_DTable* FSE_createDTable(unsigned tableLog); -FSE_PUBLIC_API void FSE_freeDTable(FSE_DTable* dt); - -/*! FSE_buildDTable(): - Builds 'dt', which must be already allocated, using FSE_createDTable(). - return : 0, or an errorCode, which can be tested using FSE_isError() */ -FSE_PUBLIC_API size_t FSE_buildDTable (FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog); - -/*! FSE_decompress_usingDTable(): - Decompress compressed source `cSrc` of size `cSrcSize` using `dt` - into `dst` which must be already allocated. - @return : size of regenerated data (necessarily <= `dstCapacity`), - or an errorCode, which can be tested using FSE_isError() */ -FSE_PUBLIC_API size_t FSE_decompress_usingDTable(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, const FSE_DTable* dt); - -/*! -Tutorial : ----------- -(Note : these functions only decompress FSE-compressed blocks. - If block is uncompressed, use memcpy() instead - If block is a single repeated byte, use memset() instead ) - -The first step is to obtain the normalized frequencies of symbols. -This can be performed by FSE_readNCount() if it was saved using FSE_writeNCount(). -'normalizedCounter' must be already allocated, and have at least 'maxSymbolValuePtr[0]+1' cells of signed short. -In practice, that means it's necessary to know 'maxSymbolValue' beforehand, -or size the table to handle worst case situations (typically 256). -FSE_readNCount() will provide 'tableLog' and 'maxSymbolValue'. -The result of FSE_readNCount() is the number of bytes read from 'rBuffer'. -Note that 'rBufferSize' must be at least 4 bytes, even if useful information is less than that. -If there is an error, the function will return an error code, which can be tested using FSE_isError(). - -The next step is to build the decompression tables 'FSE_DTable' from 'normalizedCounter'. -This is performed by the function FSE_buildDTable(). -The space required by 'FSE_DTable' must be already allocated using FSE_createDTable(). -If there is an error, the function will return an error code, which can be tested using FSE_isError(). - -`FSE_DTable` can then be used to decompress `cSrc`, with FSE_decompress_usingDTable(). -`cSrcSize` must be strictly correct, otherwise decompression will fail. -FSE_decompress_usingDTable() result will tell how many bytes were regenerated (<=`dstCapacity`). -If there is an error, the function will return an error code, which can be tested using FSE_isError(). (ex: dst buffer too small) -*/ - -#endif /* FSE_H */ - -#if defined(FSE_STATIC_LINKING_ONLY) && !defined(FSE_H_FSE_STATIC_LINKING_ONLY) -#define FSE_H_FSE_STATIC_LINKING_ONLY - -/* *** Dependency *** */ -#include "bitstream.h" - - -/* ***************************************** -* Static allocation -*******************************************/ -/* FSE buffer bounds */ -#define FSE_NCOUNTBOUND 512 -#define FSE_BLOCKBOUND(size) (size + (size>>7) + 4 /* fse states */ + sizeof(size_t) /* bitContainer */) -#define FSE_COMPRESSBOUND(size) (FSE_NCOUNTBOUND + FSE_BLOCKBOUND(size)) /* Macro version, useful for static allocation */ - -/* It is possible to statically allocate FSE CTable/DTable as a table of FSE_CTable/FSE_DTable using below macros */ -#define FSE_CTABLE_SIZE_U32(maxTableLog, maxSymbolValue) (1 + (1<<(maxTableLog-1)) + ((maxSymbolValue+1)*2)) -#define FSE_DTABLE_SIZE_U32(maxTableLog) (1 + (1< 12) ? (1 << (maxTableLog - 2)) : 1024) ) -size_t FSE_compress_wksp (void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize); - -size_t FSE_buildCTable_raw (FSE_CTable* ct, unsigned nbBits); -/**< build a fake FSE_CTable, designed for a flat distribution, where each symbol uses nbBits */ - -size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue); -/**< build a fake FSE_CTable, designed to compress always the same symbolValue */ - -/* FSE_buildCTable_wksp() : - * Same as FSE_buildCTable(), but using an externally allocated scratch buffer (`workSpace`). - * `wkspSize` must be >= `(1<= BIT_DStream_completed - -When it's done, verify decompression is fully completed, by checking both DStream and the relevant states. -Checking if DStream has reached its end is performed by : - BIT_endOfDStream(&DStream); -Check also the states. There might be some symbols left there, if some high probability ones (>50%) are possible. - FSE_endOfDState(&DState); -*/ - - -/* ***************************************** -* FSE unsafe API -*******************************************/ -static unsigned char FSE_decodeSymbolFast(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD); -/* faster, but works only if nbBits is always >= 1 (otherwise, result will be corrupted) */ - - -/* ***************************************** -* Implementation of inlined functions -*******************************************/ -typedef struct { - int deltaFindState; - U32 deltaNbBits; -} FSE_symbolCompressionTransform; /* total 8 bytes */ - -MEM_STATIC void FSE_initCState(FSE_CState_t* statePtr, const FSE_CTable* ct) -{ - const void* ptr = ct; - const U16* u16ptr = (const U16*) ptr; - const U32 tableLog = MEM_read16(ptr); - statePtr->value = (ptrdiff_t)1<stateTable = u16ptr+2; - statePtr->symbolTT = ct + 1 + (tableLog ? (1<<(tableLog-1)) : 1); - statePtr->stateLog = tableLog; -} - - -/*! FSE_initCState2() : -* Same as FSE_initCState(), but the first symbol to include (which will be the last to be read) -* uses the smallest state value possible, saving the cost of this symbol */ -MEM_STATIC void FSE_initCState2(FSE_CState_t* statePtr, const FSE_CTable* ct, U32 symbol) -{ - FSE_initCState(statePtr, ct); - { const FSE_symbolCompressionTransform symbolTT = ((const FSE_symbolCompressionTransform*)(statePtr->symbolTT))[symbol]; - const U16* stateTable = (const U16*)(statePtr->stateTable); - U32 nbBitsOut = (U32)((symbolTT.deltaNbBits + (1<<15)) >> 16); - statePtr->value = (nbBitsOut << 16) - symbolTT.deltaNbBits; - statePtr->value = stateTable[(statePtr->value >> nbBitsOut) + symbolTT.deltaFindState]; - } -} - -MEM_STATIC void FSE_encodeSymbol(BIT_CStream_t* bitC, FSE_CState_t* statePtr, unsigned symbol) -{ - FSE_symbolCompressionTransform const symbolTT = ((const FSE_symbolCompressionTransform*)(statePtr->symbolTT))[symbol]; - const U16* const stateTable = (const U16*)(statePtr->stateTable); - U32 const nbBitsOut = (U32)((statePtr->value + symbolTT.deltaNbBits) >> 16); - BIT_addBits(bitC, statePtr->value, nbBitsOut); - statePtr->value = stateTable[ (statePtr->value >> nbBitsOut) + symbolTT.deltaFindState]; -} - -MEM_STATIC void FSE_flushCState(BIT_CStream_t* bitC, const FSE_CState_t* statePtr) -{ - BIT_addBits(bitC, statePtr->value, statePtr->stateLog); - BIT_flushBits(bitC); -} - - -/* FSE_getMaxNbBits() : - * Approximate maximum cost of a symbol, in bits. - * Fractional get rounded up (i.e : a symbol with a normalized frequency of 3 gives the same result as a frequency of 2) - * note 1 : assume symbolValue is valid (<= maxSymbolValue) - * note 2 : if freq[symbolValue]==0, @return a fake cost of tableLog+1 bits */ -MEM_STATIC U32 FSE_getMaxNbBits(const void* symbolTTPtr, U32 symbolValue) -{ - const FSE_symbolCompressionTransform* symbolTT = (const FSE_symbolCompressionTransform*) symbolTTPtr; - return (symbolTT[symbolValue].deltaNbBits + ((1<<16)-1)) >> 16; -} - -/* FSE_bitCost() : - * Approximate symbol cost, as fractional value, using fixed-point format (accuracyLog fractional bits) - * note 1 : assume symbolValue is valid (<= maxSymbolValue) - * note 2 : if freq[symbolValue]==0, @return a fake cost of tableLog+1 bits */ -MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) -{ - const FSE_symbolCompressionTransform* symbolTT = (const FSE_symbolCompressionTransform*) symbolTTPtr; - U32 const minNbBits = symbolTT[symbolValue].deltaNbBits >> 16; - U32 const threshold = (minNbBits+1) << 16; - assert(tableLog < 16); - assert(accuracyLog < 31-tableLog); /* ensure enough room for renormalization double shift */ - { U32 const tableSize = 1 << tableLog; - U32 const deltaFromThreshold = threshold - (symbolTT[symbolValue].deltaNbBits + tableSize); - U32 const normalizedDeltaFromThreshold = (deltaFromThreshold << accuracyLog) >> tableLog; /* linear interpolation (very approximate) */ - U32 const bitMultiplier = 1 << accuracyLog; - assert(symbolTT[symbolValue].deltaNbBits + tableSize <= threshold); - assert(normalizedDeltaFromThreshold <= bitMultiplier); - return (minNbBits+1)*bitMultiplier - normalizedDeltaFromThreshold; - } -} - - -/* ====== Decompression ====== */ - -typedef struct { - U16 tableLog; - U16 fastMode; -} FSE_DTableHeader; /* sizeof U32 */ - -typedef struct -{ - unsigned short newState; - unsigned char symbol; - unsigned char nbBits; -} FSE_decode_t; /* size == U32 */ - -MEM_STATIC void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt) -{ - const void* ptr = dt; - const FSE_DTableHeader* const DTableH = (const FSE_DTableHeader*)ptr; - DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog); - BIT_reloadDStream(bitD); - DStatePtr->table = dt + 1; -} - -MEM_STATIC BYTE FSE_peekSymbol(const FSE_DState_t* DStatePtr) -{ - FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; - return DInfo.symbol; -} - -MEM_STATIC void FSE_updateState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD) -{ - FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; - U32 const nbBits = DInfo.nbBits; - size_t const lowBits = BIT_readBits(bitD, nbBits); - DStatePtr->state = DInfo.newState + lowBits; -} - -MEM_STATIC BYTE FSE_decodeSymbol(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD) -{ - FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; - U32 const nbBits = DInfo.nbBits; - BYTE const symbol = DInfo.symbol; - size_t const lowBits = BIT_readBits(bitD, nbBits); - - DStatePtr->state = DInfo.newState + lowBits; - return symbol; -} - -/*! FSE_decodeSymbolFast() : - unsafe, only works if no symbol has a probability > 50% */ -MEM_STATIC BYTE FSE_decodeSymbolFast(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD) -{ - FSE_decode_t const DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; - U32 const nbBits = DInfo.nbBits; - BYTE const symbol = DInfo.symbol; - size_t const lowBits = BIT_readBitsFast(bitD, nbBits); - - DStatePtr->state = DInfo.newState + lowBits; - return symbol; -} - -MEM_STATIC unsigned FSE_endOfDState(const FSE_DState_t* DStatePtr) -{ - return DStatePtr->state == 0; -} - - - -#ifndef FSE_COMMONDEFS_ONLY - -/* ************************************************************** -* Tuning parameters -****************************************************************/ -/*!MEMORY_USAGE : -* Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.) -* Increasing memory usage improves compression ratio -* Reduced memory usage can improve speed, due to cache effect -* Recommended max value is 14, for 16KB, which nicely fits into Intel x86 L1 cache */ -#ifndef FSE_MAX_MEMORY_USAGE -# define FSE_MAX_MEMORY_USAGE 14 -#endif -#ifndef FSE_DEFAULT_MEMORY_USAGE -# define FSE_DEFAULT_MEMORY_USAGE 13 -#endif - -/*!FSE_MAX_SYMBOL_VALUE : -* Maximum symbol value authorized. -* Required for proper stack allocation */ -#ifndef FSE_MAX_SYMBOL_VALUE -# define FSE_MAX_SYMBOL_VALUE 255 -#endif - -/* ************************************************************** -* template functions type & suffix -****************************************************************/ -#define FSE_FUNCTION_TYPE BYTE -#define FSE_FUNCTION_EXTENSION -#define FSE_DECODE_TYPE FSE_decode_t - - -#endif /* !FSE_COMMONDEFS_ONLY */ - - -/* *************************************************************** -* Constants -*****************************************************************/ -#define FSE_MAX_TABLELOG (FSE_MAX_MEMORY_USAGE-2) -#define FSE_MAX_TABLESIZE (1U< FSE_TABLELOG_ABSOLUTE_MAX -# error "FSE_MAX_TABLELOG > FSE_TABLELOG_ABSOLUTE_MAX is not supported" -#endif - -#define FSE_TABLESTEP(tableSize) ((tableSize>>1) + (tableSize>>3) + 3) - - -#endif /* FSE_STATIC_LINKING_ONLY */ - - -#if defined (__cplusplus) -} -#endif diff --git a/lib/SZ3/tools/zstd/common/fse_decompress.c b/lib/SZ3/tools/zstd/common/fse_decompress.c deleted file mode 100644 index bcc2223c..00000000 --- a/lib/SZ3/tools/zstd/common/fse_decompress.c +++ /dev/null @@ -1,286 +0,0 @@ -/* ****************************************************************** - * FSE : Finite State Entropy decoder - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - Public forum : https://groups.google.com/forum/#!forum/lz4c - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - - -/* ************************************************************** -* Includes -****************************************************************/ -#include /* malloc, free, qsort */ -#include /* memcpy, memset */ -#include "bitstream.h" -#include "compiler.h" -#define FSE_STATIC_LINKING_ONLY -#include "fse.h" -#include "error_private.h" - - -/* ************************************************************** -* Error Management -****************************************************************/ -#define FSE_isError ERR_isError -#define FSE_STATIC_ASSERT(c) DEBUG_STATIC_ASSERT(c) /* use only *after* variable declarations */ - - -/* ************************************************************** -* Templates -****************************************************************/ -/* - designed to be included - for type-specific functions (template emulation in C) - Objective is to write these functions only once, for improved maintenance -*/ - -/* safety checks */ -#ifndef FSE_FUNCTION_EXTENSION -# error "FSE_FUNCTION_EXTENSION must be defined" -#endif -#ifndef FSE_FUNCTION_TYPE -# error "FSE_FUNCTION_TYPE must be defined" -#endif - -/* Function names */ -#define FSE_CAT(X,Y) X##Y -#define FSE_FUNCTION_NAME(X,Y) FSE_CAT(X,Y) -#define FSE_TYPE_NAME(X,Y) FSE_CAT(X,Y) - - -/* Function templates */ -FSE_DTable* FSE_createDTable (unsigned tableLog) -{ - if (tableLog > FSE_TABLELOG_ABSOLUTE_MAX) tableLog = FSE_TABLELOG_ABSOLUTE_MAX; - return (FSE_DTable*)malloc( FSE_DTABLE_SIZE_U32(tableLog) * sizeof (U32) ); -} - -void FSE_freeDTable (FSE_DTable* dt) -{ - free(dt); -} - -size_t FSE_buildDTable(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) -{ - void* const tdPtr = dt+1; /* because *dt is unsigned, 32-bits aligned on 32-bits */ - FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*) (tdPtr); - U16 symbolNext[FSE_MAX_SYMBOL_VALUE+1]; - - U32 const maxSV1 = maxSymbolValue + 1; - U32 const tableSize = 1 << tableLog; - U32 highThreshold = tableSize-1; - - /* Sanity Checks */ - if (maxSymbolValue > FSE_MAX_SYMBOL_VALUE) return ERROR(maxSymbolValue_tooLarge); - if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); - - /* Init, lay down lowprob symbols */ - { FSE_DTableHeader DTableH; - DTableH.tableLog = (U16)tableLog; - DTableH.fastMode = 1; - { S16 const largeLimit= (S16)(1 << (tableLog-1)); - U32 s; - for (s=0; s= largeLimit) DTableH.fastMode=0; - symbolNext[s] = normalizedCounter[s]; - } } } - memcpy(dt, &DTableH, sizeof(DTableH)); - } - - /* Spread symbols */ - { U32 const tableMask = tableSize-1; - U32 const step = FSE_TABLESTEP(tableSize); - U32 s, position = 0; - for (s=0; s highThreshold) position = (position + step) & tableMask; /* lowprob area */ - } } - if (position!=0) return ERROR(GENERIC); /* position must reach all cells once, otherwise normalizedCounter is incorrect */ - } - - /* Build Decoding table */ - { U32 u; - for (u=0; utableLog = 0; - DTableH->fastMode = 0; - - cell->newState = 0; - cell->symbol = symbolValue; - cell->nbBits = 0; - - return 0; -} - - -size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits) -{ - void* ptr = dt; - FSE_DTableHeader* const DTableH = (FSE_DTableHeader*)ptr; - void* dPtr = dt + 1; - FSE_decode_t* const dinfo = (FSE_decode_t*)dPtr; - const unsigned tableSize = 1 << nbBits; - const unsigned tableMask = tableSize - 1; - const unsigned maxSV1 = tableMask+1; - unsigned s; - - /* Sanity checks */ - if (nbBits < 1) return ERROR(GENERIC); /* min size */ - - /* Build Decoding Table */ - DTableH->tableLog = (U16)nbBits; - DTableH->fastMode = 1; - for (s=0; s sizeof(bitD.bitContainer)*8) /* This test must be static */ - BIT_reloadDStream(&bitD); - - op[1] = FSE_GETSYMBOL(&state2); - - if (FSE_MAX_TABLELOG*4+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */ - { if (BIT_reloadDStream(&bitD) > BIT_DStream_unfinished) { op+=2; break; } } - - op[2] = FSE_GETSYMBOL(&state1); - - if (FSE_MAX_TABLELOG*2+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */ - BIT_reloadDStream(&bitD); - - op[3] = FSE_GETSYMBOL(&state2); - } - - /* tail */ - /* note : BIT_reloadDStream(&bitD) >= FSE_DStream_partiallyFilled; Ends at exactly BIT_DStream_completed */ - while (1) { - if (op>(omax-2)) return ERROR(dstSize_tooSmall); - *op++ = FSE_GETSYMBOL(&state1); - if (BIT_reloadDStream(&bitD)==BIT_DStream_overflow) { - *op++ = FSE_GETSYMBOL(&state2); - break; - } - - if (op>(omax-2)) return ERROR(dstSize_tooSmall); - *op++ = FSE_GETSYMBOL(&state2); - if (BIT_reloadDStream(&bitD)==BIT_DStream_overflow) { - *op++ = FSE_GETSYMBOL(&state1); - break; - } } - - return op-ostart; -} - - -size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, - const void* cSrc, size_t cSrcSize, - const FSE_DTable* dt) -{ - const void* ptr = dt; - const FSE_DTableHeader* DTableH = (const FSE_DTableHeader*)ptr; - const U32 fastMode = DTableH->fastMode; - - /* select fast mode (static) */ - if (fastMode) return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 1); - return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 0); -} - - -size_t FSE_decompress_wksp(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize, FSE_DTable* workSpace, unsigned maxLog) -{ - const BYTE* const istart = (const BYTE*)cSrc; - const BYTE* ip = istart; - short counting[FSE_MAX_SYMBOL_VALUE+1]; - unsigned tableLog; - unsigned maxSymbolValue = FSE_MAX_SYMBOL_VALUE; - - /* normal FSE decoding mode */ - size_t const NCountLength = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); - if (FSE_isError(NCountLength)) return NCountLength; - /* if (NCountLength >= cSrcSize) return ERROR(srcSize_wrong); */ /* too small input size; supposed to be already checked in NCountLength, only remaining case : NCountLength==cSrcSize */ - if (tableLog > maxLog) return ERROR(tableLog_tooLarge); - ip += NCountLength; - cSrcSize -= NCountLength; - - CHECK_F( FSE_buildDTable (workSpace, counting, maxSymbolValue, tableLog) ); - - return FSE_decompress_usingDTable (dst, dstCapacity, ip, cSrcSize, workSpace); /* always return, even if it is an error code */ -} - - -typedef FSE_DTable DTable_max_t[FSE_DTABLE_SIZE_U32(FSE_MAX_TABLELOG)]; - -size_t FSE_decompress(void* dst, size_t dstCapacity, const void* cSrc, size_t cSrcSize) -{ - DTable_max_t dt; /* Static analyzer seems unable to understand this table will be properly initialized later */ - return FSE_decompress_wksp(dst, dstCapacity, cSrc, cSrcSize, dt, FSE_MAX_TABLELOG); -} - - - -#endif /* FSE_COMMONDEFS_ONLY */ diff --git a/lib/SZ3/tools/zstd/common/huf.h b/lib/SZ3/tools/zstd/common/huf.h deleted file mode 100644 index ef432685..00000000 --- a/lib/SZ3/tools/zstd/common/huf.h +++ /dev/null @@ -1,340 +0,0 @@ -/* ****************************************************************** - * huff0 huffman codec, - * part of Finite State Entropy library - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - -#if defined (__cplusplus) -extern "C" { -#endif - -#ifndef HUF_H_298734234 -#define HUF_H_298734234 - -/* *** Dependencies *** */ -#include /* size_t */ - - -/* *** library symbols visibility *** */ -/* Note : when linking with -fvisibility=hidden on gcc, or by default on Visual, - * HUF symbols remain "private" (internal symbols for library only). - * Set macro FSE_DLL_EXPORT to 1 if you want HUF symbols visible on DLL interface */ -#if defined(FSE_DLL_EXPORT) && (FSE_DLL_EXPORT==1) && defined(__GNUC__) && (__GNUC__ >= 4) -# define HUF_PUBLIC_API __attribute__ ((visibility ("default"))) -#elif defined(FSE_DLL_EXPORT) && (FSE_DLL_EXPORT==1) /* Visual expected */ -# define HUF_PUBLIC_API __declspec(dllexport) -#elif defined(FSE_DLL_IMPORT) && (FSE_DLL_IMPORT==1) -# define HUF_PUBLIC_API __declspec(dllimport) /* not required, just to generate faster code (saves a function pointer load from IAT and an indirect jump) */ -#else -# define HUF_PUBLIC_API -#endif - - -/* ========================== */ -/* *** simple functions *** */ -/* ========================== */ - -/** HUF_compress() : - * Compress content from buffer 'src', of size 'srcSize', into buffer 'dst'. - * 'dst' buffer must be already allocated. - * Compression runs faster if `dstCapacity` >= HUF_compressBound(srcSize). - * `srcSize` must be <= `HUF_BLOCKSIZE_MAX` == 128 KB. - * @return : size of compressed data (<= `dstCapacity`). - * Special values : if return == 0, srcData is not compressible => Nothing is stored within dst !!! - * if HUF_isError(return), compression failed (more details using HUF_getErrorName()) - */ -HUF_PUBLIC_API size_t HUF_compress(void* dst, size_t dstCapacity, - const void* src, size_t srcSize); - -/** HUF_decompress() : - * Decompress HUF data from buffer 'cSrc', of size 'cSrcSize', - * into already allocated buffer 'dst', of minimum size 'dstSize'. - * `originalSize` : **must** be the ***exact*** size of original (uncompressed) data. - * Note : in contrast with FSE, HUF_decompress can regenerate - * RLE (cSrcSize==1) and uncompressed (cSrcSize==dstSize) data, - * because it knows size to regenerate (originalSize). - * @return : size of regenerated data (== originalSize), - * or an error code, which can be tested using HUF_isError() - */ -HUF_PUBLIC_API size_t HUF_decompress(void* dst, size_t originalSize, - const void* cSrc, size_t cSrcSize); - - -/* *** Tool functions *** */ -#define HUF_BLOCKSIZE_MAX (128 * 1024) /**< maximum input size for a single block compressed with HUF_compress */ -HUF_PUBLIC_API size_t HUF_compressBound(size_t size); /**< maximum compressed size (worst case) */ - -/* Error Management */ -HUF_PUBLIC_API unsigned HUF_isError(size_t code); /**< tells if a return value is an error code */ -HUF_PUBLIC_API const char* HUF_getErrorName(size_t code); /**< provides error code string (useful for debugging) */ - - -/* *** Advanced function *** */ - -/** HUF_compress2() : - * Same as HUF_compress(), but offers control over `maxSymbolValue` and `tableLog`. - * `maxSymbolValue` must be <= HUF_SYMBOLVALUE_MAX . - * `tableLog` must be `<= HUF_TABLELOG_MAX` . */ -HUF_PUBLIC_API size_t HUF_compress2 (void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned tableLog); - -/** HUF_compress4X_wksp() : - * Same as HUF_compress2(), but uses externally allocated `workSpace`. - * `workspace` must have minimum alignment of 4, and be at least as large as HUF_WORKSPACE_SIZE */ -#define HUF_WORKSPACE_SIZE ((6 << 10) + 256) -#define HUF_WORKSPACE_SIZE_U32 (HUF_WORKSPACE_SIZE / sizeof(U32)) -HUF_PUBLIC_API size_t HUF_compress4X_wksp (void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned tableLog, - void* workSpace, size_t wkspSize); - -#endif /* HUF_H_298734234 */ - -/* ****************************************************************** - * WARNING !! - * The following section contains advanced and experimental definitions - * which shall never be used in the context of a dynamic library, - * because they are not guaranteed to remain stable in the future. - * Only consider them in association with static linking. - * *****************************************************************/ -#if defined(HUF_STATIC_LINKING_ONLY) && !defined(HUF_H_HUF_STATIC_LINKING_ONLY) -#define HUF_H_HUF_STATIC_LINKING_ONLY - -/* *** Dependencies *** */ -#include "mem.h" /* U32 */ - - -/* *** Constants *** */ -#define HUF_TABLELOG_MAX 12 /* max runtime value of tableLog (due to static allocation); can be modified up to HUF_ABSOLUTEMAX_TABLELOG */ -#define HUF_TABLELOG_DEFAULT 11 /* default tableLog value when none specified */ -#define HUF_SYMBOLVALUE_MAX 255 - -#define HUF_TABLELOG_ABSOLUTEMAX 15 /* absolute limit of HUF_MAX_TABLELOG. Beyond that value, code does not work */ -#if (HUF_TABLELOG_MAX > HUF_TABLELOG_ABSOLUTEMAX) -# error "HUF_TABLELOG_MAX is too large !" -#endif - - -/* **************************************** -* Static allocation -******************************************/ -/* HUF buffer bounds */ -#define HUF_CTABLEBOUND 129 -#define HUF_BLOCKBOUND(size) (size + (size>>8) + 8) /* only true when incompressible is pre-filtered with fast heuristic */ -#define HUF_COMPRESSBOUND(size) (HUF_CTABLEBOUND + HUF_BLOCKBOUND(size)) /* Macro version, useful for static allocation */ - -/* static allocation of HUF's Compression Table */ -#define HUF_CTABLE_SIZE_U32(maxSymbolValue) ((maxSymbolValue)+1) /* Use tables of U32, for proper alignment */ -#define HUF_CTABLE_SIZE(maxSymbolValue) (HUF_CTABLE_SIZE_U32(maxSymbolValue) * sizeof(U32)) -#define HUF_CREATE_STATIC_CTABLE(name, maxSymbolValue) \ - U32 name##hb[HUF_CTABLE_SIZE_U32(maxSymbolValue)]; \ - void* name##hv = &(name##hb); \ - HUF_CElt* name = (HUF_CElt*)(name##hv) /* no final ; */ - -/* static allocation of HUF's DTable */ -typedef U32 HUF_DTable; -#define HUF_DTABLE_SIZE(maxTableLog) (1 + (1<<(maxTableLog))) -#define HUF_CREATE_STATIC_DTABLEX1(DTable, maxTableLog) \ - HUF_DTable DTable[HUF_DTABLE_SIZE((maxTableLog)-1)] = { ((U32)((maxTableLog)-1) * 0x01000001) } -#define HUF_CREATE_STATIC_DTABLEX2(DTable, maxTableLog) \ - HUF_DTable DTable[HUF_DTABLE_SIZE(maxTableLog)] = { ((U32)(maxTableLog) * 0x01000001) } - - -/* **************************************** -* Advanced decompression functions -******************************************/ -size_t HUF_decompress4X1 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< single-symbol decoder */ -#ifndef HUF_FORCE_DECOMPRESS_X1 -size_t HUF_decompress4X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< double-symbols decoder */ -#endif - -size_t HUF_decompress4X_DCtx (HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< decodes RLE and uncompressed */ -size_t HUF_decompress4X_hufOnly(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< considers RLE and uncompressed as errors */ -size_t HUF_decompress4X_hufOnly_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize); /**< considers RLE and uncompressed as errors */ -size_t HUF_decompress4X1_DCtx(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< single-symbol decoder */ -size_t HUF_decompress4X1_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize); /**< single-symbol decoder */ -#ifndef HUF_FORCE_DECOMPRESS_X1 -size_t HUF_decompress4X2_DCtx(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< double-symbols decoder */ -size_t HUF_decompress4X2_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize); /**< double-symbols decoder */ -#endif - - -/* **************************************** - * HUF detailed API - * ****************************************/ - -/*! HUF_compress() does the following: - * 1. count symbol occurrence from source[] into table count[] using FSE_count() (exposed within "fse.h") - * 2. (optional) refine tableLog using HUF_optimalTableLog() - * 3. build Huffman table from count using HUF_buildCTable() - * 4. save Huffman table to memory buffer using HUF_writeCTable() - * 5. encode the data stream using HUF_compress4X_usingCTable() - * - * The following API allows targeting specific sub-functions for advanced tasks. - * For example, it's possible to compress several blocks using the same 'CTable', - * or to save and regenerate 'CTable' using external methods. - */ -unsigned HUF_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue); -typedef struct HUF_CElt_s HUF_CElt; /* incomplete type */ -size_t HUF_buildCTable (HUF_CElt* CTable, const unsigned* count, unsigned maxSymbolValue, unsigned maxNbBits); /* @return : maxNbBits; CTable and count can overlap. In which case, CTable will overwrite count content */ -size_t HUF_writeCTable (void* dst, size_t maxDstSize, const HUF_CElt* CTable, unsigned maxSymbolValue, unsigned huffLog); -size_t HUF_compress4X_usingCTable(void* dst, size_t dstSize, const void* src, size_t srcSize, const HUF_CElt* CTable); -size_t HUF_estimateCompressedSize(const HUF_CElt* CTable, const unsigned* count, unsigned maxSymbolValue); -int HUF_validateCTable(const HUF_CElt* CTable, const unsigned* count, unsigned maxSymbolValue); - -typedef enum { - HUF_repeat_none, /**< Cannot use the previous table */ - HUF_repeat_check, /**< Can use the previous table but it must be checked. Note : The previous table must have been constructed by HUF_compress{1, 4}X_repeat */ - HUF_repeat_valid /**< Can use the previous table and it is assumed to be valid */ - } HUF_repeat; -/** HUF_compress4X_repeat() : - * Same as HUF_compress4X_wksp(), but considers using hufTable if *repeat != HUF_repeat_none. - * If it uses hufTable it does not modify hufTable or repeat. - * If it doesn't, it sets *repeat = HUF_repeat_none, and it sets hufTable to the table used. - * If preferRepeat then the old table will always be used if valid. */ -size_t HUF_compress4X_repeat(void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned tableLog, - void* workSpace, size_t wkspSize, /**< `workSpace` must be aligned on 4-bytes boundaries, `wkspSize` must be >= HUF_WORKSPACE_SIZE */ - HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2); - -/** HUF_buildCTable_wksp() : - * Same as HUF_buildCTable(), but using externally allocated scratch buffer. - * `workSpace` must be aligned on 4-bytes boundaries, and its size must be >= HUF_CTABLE_WORKSPACE_SIZE. - */ -#define HUF_CTABLE_WORKSPACE_SIZE_U32 (2*HUF_SYMBOLVALUE_MAX +1 +1) -#define HUF_CTABLE_WORKSPACE_SIZE (HUF_CTABLE_WORKSPACE_SIZE_U32 * sizeof(unsigned)) -size_t HUF_buildCTable_wksp (HUF_CElt* tree, - const unsigned* count, U32 maxSymbolValue, U32 maxNbBits, - void* workSpace, size_t wkspSize); - -/*! HUF_readStats() : - * Read compact Huffman tree, saved by HUF_writeCTable(). - * `huffWeight` is destination buffer. - * @return : size read from `src` , or an error Code . - * Note : Needed by HUF_readCTable() and HUF_readDTableXn() . */ -size_t HUF_readStats(BYTE* huffWeight, size_t hwSize, - U32* rankStats, U32* nbSymbolsPtr, U32* tableLogPtr, - const void* src, size_t srcSize); - -/** HUF_readCTable() : - * Loading a CTable saved with HUF_writeCTable() */ -size_t HUF_readCTable (HUF_CElt* CTable, unsigned* maxSymbolValuePtr, const void* src, size_t srcSize, unsigned *hasZeroWeights); - -/** HUF_getNbBits() : - * Read nbBits from CTable symbolTable, for symbol `symbolValue` presumed <= HUF_SYMBOLVALUE_MAX - * Note 1 : is not inlined, as HUF_CElt definition is private - * Note 2 : const void* used, so that it can provide a statically allocated table as argument (which uses type U32) */ -U32 HUF_getNbBits(const void* symbolTable, U32 symbolValue); - -/* - * HUF_decompress() does the following: - * 1. select the decompression algorithm (X1, X2) based on pre-computed heuristics - * 2. build Huffman table from save, using HUF_readDTableX?() - * 3. decode 1 or 4 segments in parallel using HUF_decompress?X?_usingDTable() - */ - -/** HUF_selectDecoder() : - * Tells which decoder is likely to decode faster, - * based on a set of pre-computed metrics. - * @return : 0==HUF_decompress4X1, 1==HUF_decompress4X2 . - * Assumption : 0 < dstSize <= 128 KB */ -U32 HUF_selectDecoder (size_t dstSize, size_t cSrcSize); - -/** - * The minimum workspace size for the `workSpace` used in - * HUF_readDTableX1_wksp() and HUF_readDTableX2_wksp(). - * - * The space used depends on HUF_TABLELOG_MAX, ranging from ~1500 bytes when - * HUF_TABLE_LOG_MAX=12 to ~1850 bytes when HUF_TABLE_LOG_MAX=15. - * Buffer overflow errors may potentially occur if code modifications result in - * a required workspace size greater than that specified in the following - * macro. - */ -#define HUF_DECOMPRESS_WORKSPACE_SIZE (2 << 10) -#define HUF_DECOMPRESS_WORKSPACE_SIZE_U32 (HUF_DECOMPRESS_WORKSPACE_SIZE / sizeof(U32)) - -#ifndef HUF_FORCE_DECOMPRESS_X2 -size_t HUF_readDTableX1 (HUF_DTable* DTable, const void* src, size_t srcSize); -size_t HUF_readDTableX1_wksp (HUF_DTable* DTable, const void* src, size_t srcSize, void* workSpace, size_t wkspSize); -#endif -#ifndef HUF_FORCE_DECOMPRESS_X1 -size_t HUF_readDTableX2 (HUF_DTable* DTable, const void* src, size_t srcSize); -size_t HUF_readDTableX2_wksp (HUF_DTable* DTable, const void* src, size_t srcSize, void* workSpace, size_t wkspSize); -#endif - -size_t HUF_decompress4X_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable); -#ifndef HUF_FORCE_DECOMPRESS_X2 -size_t HUF_decompress4X1_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable); -#endif -#ifndef HUF_FORCE_DECOMPRESS_X1 -size_t HUF_decompress4X2_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable); -#endif - - -/* ====================== */ -/* single stream variants */ -/* ====================== */ - -size_t HUF_compress1X (void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog); -size_t HUF_compress1X_wksp (void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, size_t wkspSize); /**< `workSpace` must be a table of at least HUF_WORKSPACE_SIZE_U32 unsigned */ -size_t HUF_compress1X_usingCTable(void* dst, size_t dstSize, const void* src, size_t srcSize, const HUF_CElt* CTable); -/** HUF_compress1X_repeat() : - * Same as HUF_compress1X_wksp(), but considers using hufTable if *repeat != HUF_repeat_none. - * If it uses hufTable it does not modify hufTable or repeat. - * If it doesn't, it sets *repeat = HUF_repeat_none, and it sets hufTable to the table used. - * If preferRepeat then the old table will always be used if valid. */ -size_t HUF_compress1X_repeat(void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned tableLog, - void* workSpace, size_t wkspSize, /**< `workSpace` must be aligned on 4-bytes boundaries, `wkspSize` must be >= HUF_WORKSPACE_SIZE */ - HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2); - -size_t HUF_decompress1X1 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /* single-symbol decoder */ -#ifndef HUF_FORCE_DECOMPRESS_X1 -size_t HUF_decompress1X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /* double-symbol decoder */ -#endif - -size_t HUF_decompress1X_DCtx (HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); -size_t HUF_decompress1X_DCtx_wksp (HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize); -#ifndef HUF_FORCE_DECOMPRESS_X2 -size_t HUF_decompress1X1_DCtx(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< single-symbol decoder */ -size_t HUF_decompress1X1_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize); /**< single-symbol decoder */ -#endif -#ifndef HUF_FORCE_DECOMPRESS_X1 -size_t HUF_decompress1X2_DCtx(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); /**< double-symbols decoder */ -size_t HUF_decompress1X2_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize); /**< double-symbols decoder */ -#endif - -size_t HUF_decompress1X_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable); /**< automatic selection of sing or double symbol decoder, based on DTable */ -#ifndef HUF_FORCE_DECOMPRESS_X2 -size_t HUF_decompress1X1_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable); -#endif -#ifndef HUF_FORCE_DECOMPRESS_X1 -size_t HUF_decompress1X2_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable); -#endif - -/* BMI2 variants. - * If the CPU has BMI2 support, pass bmi2=1, otherwise pass bmi2=0. - */ -size_t HUF_decompress1X_usingDTable_bmi2(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable, int bmi2); -#ifndef HUF_FORCE_DECOMPRESS_X2 -size_t HUF_decompress1X1_DCtx_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize, int bmi2); -#endif -size_t HUF_decompress4X_usingDTable_bmi2(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable, int bmi2); -size_t HUF_decompress4X_hufOnly_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize, int bmi2); - -#endif /* HUF_STATIC_LINKING_ONLY */ - -#if defined (__cplusplus) -} -#endif diff --git a/lib/SZ3/tools/zstd/common/mem.h b/lib/SZ3/tools/zstd/common/mem.h deleted file mode 100644 index 89c8aea7..00000000 --- a/lib/SZ3/tools/zstd/common/mem.h +++ /dev/null @@ -1,453 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef MEM_H_MODULE -#define MEM_H_MODULE - -#if defined (__cplusplus) -extern "C" { -#endif - -/*-**************************************** -* Dependencies -******************************************/ -#include /* size_t, ptrdiff_t */ -#include /* memcpy */ - - -/*-**************************************** -* Compiler specifics -******************************************/ -#if defined(_MSC_VER) /* Visual Studio */ -# include /* _byteswap_ulong */ -# include /* _byteswap_* */ -#endif -#if defined(__GNUC__) -# define MEM_STATIC static __inline __attribute__((unused)) -#elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -# define MEM_STATIC static inline -#elif defined(_MSC_VER) -# define MEM_STATIC static __inline -#else -# define MEM_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */ -#endif - -#ifndef __has_builtin -# define __has_builtin(x) 0 /* compat. with non-clang compilers */ -#endif - -/* code only tested on 32 and 64 bits systems */ -#define MEM_STATIC_ASSERT(c) { enum { MEM_static_assert = 1/(int)(!!(c)) }; } -MEM_STATIC void MEM_check(void) { MEM_STATIC_ASSERT((sizeof(size_t)==4) || (sizeof(size_t)==8)); } - -/* detects whether we are being compiled under msan */ -#if defined (__has_feature) -# if __has_feature(memory_sanitizer) -# define MEMORY_SANITIZER 1 -# endif -#endif - -#if defined (MEMORY_SANITIZER) -/* Not all platforms that support msan provide sanitizers/msan_interface.h. - * We therefore declare the functions we need ourselves, rather than trying to - * include the header file... */ - -#include /* intptr_t */ - -/* Make memory region fully initialized (without changing its contents). */ -void __msan_unpoison(const volatile void *a, size_t size); - -/* Make memory region fully uninitialized (without changing its contents). - This is a legacy interface that does not update origin information. Use - __msan_allocated_memory() instead. */ -void __msan_poison(const volatile void *a, size_t size); - -/* Returns the offset of the first (at least partially) poisoned byte in the - memory range, or -1 if the whole range is good. */ -intptr_t __msan_test_shadow(const volatile void *x, size_t size); -#endif - -/* detects whether we are being compiled under asan */ -#if defined (__has_feature) -# if __has_feature(address_sanitizer) -# define ADDRESS_SANITIZER 1 -# endif -#elif defined(__SANITIZE_ADDRESS__) -# define ADDRESS_SANITIZER 1 -#endif - -#if defined (ADDRESS_SANITIZER) -/* Not all platforms that support asan provide sanitizers/asan_interface.h. - * We therefore declare the functions we need ourselves, rather than trying to - * include the header file... */ - -/** - * Marks a memory region ([addr, addr+size)) as unaddressable. - * - * This memory must be previously allocated by your program. Instrumented - * code is forbidden from accessing addresses in this region until it is - * unpoisoned. This function is not guaranteed to poison the entire region - - * it could poison only a subregion of [addr, addr+size) due to ASan - * alignment restrictions. - * - * \note This function is not thread-safe because no two threads can poison or - * unpoison memory in the same memory region simultaneously. - * - * \param addr Start of memory region. - * \param size Size of memory region. */ -void __asan_poison_memory_region(void const volatile *addr, size_t size); - -/** - * Marks a memory region ([addr, addr+size)) as addressable. - * - * This memory must be previously allocated by your program. Accessing - * addresses in this region is allowed until this region is poisoned again. - * This function could unpoison a super-region of [addr, addr+size) due - * to ASan alignment restrictions. - * - * \note This function is not thread-safe because no two threads can - * poison or unpoison memory in the same memory region simultaneously. - * - * \param addr Start of memory region. - * \param size Size of memory region. */ -void __asan_unpoison_memory_region(void const volatile *addr, size_t size); -#endif - - -/*-************************************************************** -* Basic Types -*****************************************************************/ -#if !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) ) -# include - typedef uint8_t BYTE; - typedef uint16_t U16; - typedef int16_t S16; - typedef uint32_t U32; - typedef int32_t S32; - typedef uint64_t U64; - typedef int64_t S64; -#else -# include -#if CHAR_BIT != 8 -# error "this implementation requires char to be exactly 8-bit type" -#endif - typedef unsigned char BYTE; -#if USHRT_MAX != 65535 -# error "this implementation requires short to be exactly 16-bit type" -#endif - typedef unsigned short U16; - typedef signed short S16; -#if UINT_MAX != 4294967295 -# error "this implementation requires int to be exactly 32-bit type" -#endif - typedef unsigned int U32; - typedef signed int S32; -/* note : there are no limits defined for long long type in C90. - * limits exist in C99, however, in such case, is preferred */ - typedef unsigned long long U64; - typedef signed long long S64; -#endif - - -/*-************************************************************** -* Memory I/O -*****************************************************************/ -/* MEM_FORCE_MEMORY_ACCESS : - * By default, access to unaligned memory is controlled by `memcpy()`, which is safe and portable. - * Unfortunately, on some target/compiler combinations, the generated assembly is sub-optimal. - * The below switch allow to select different access method for improved performance. - * Method 0 (default) : use `memcpy()`. Safe and portable. - * Method 1 : `__packed` statement. It depends on compiler extension (i.e., not portable). - * This method is safe if your compiler supports it, and *generally* as fast or faster than `memcpy`. - * Method 2 : direct access. This method is portable but violate C standard. - * It can generate buggy code on targets depending on alignment. - * In some circumstances, it's the only known way to get the most performance (i.e. GCC + ARMv6) - * See http://fastcompression.blogspot.fr/2015/08/accessing-unaligned-memory.html for details. - * Prefer these methods in priority order (0 > 1 > 2) - */ -#ifndef MEM_FORCE_MEMORY_ACCESS /* can be defined externally, on command line for example */ -# if defined(__GNUC__) && ( defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6T2__) ) -# define MEM_FORCE_MEMORY_ACCESS 2 -# elif defined(__INTEL_COMPILER) || defined(__GNUC__) || defined(__ICCARM__) -# define MEM_FORCE_MEMORY_ACCESS 1 -# endif -#endif - -MEM_STATIC unsigned MEM_32bits(void) { return sizeof(size_t)==4; } -MEM_STATIC unsigned MEM_64bits(void) { return sizeof(size_t)==8; } - -MEM_STATIC unsigned MEM_isLittleEndian(void) -{ - const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */ - return one.c[0]; -} - -#if defined(MEM_FORCE_MEMORY_ACCESS) && (MEM_FORCE_MEMORY_ACCESS==2) - -/* violates C standard, by lying on structure alignment. -Only use if no other choice to achieve best performance on target platform */ -MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } -MEM_STATIC U32 MEM_read32(const void* memPtr) { return *(const U32*) memPtr; } -MEM_STATIC U64 MEM_read64(const void* memPtr) { return *(const U64*) memPtr; } -MEM_STATIC size_t MEM_readST(const void* memPtr) { return *(const size_t*) memPtr; } - -MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } -MEM_STATIC void MEM_write32(void* memPtr, U32 value) { *(U32*)memPtr = value; } -MEM_STATIC void MEM_write64(void* memPtr, U64 value) { *(U64*)memPtr = value; } - -#elif defined(MEM_FORCE_MEMORY_ACCESS) && (MEM_FORCE_MEMORY_ACCESS==1) - -/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */ -/* currently only defined for gcc and icc */ -#if defined(_MSC_VER) || (defined(__INTEL_COMPILER) && defined(WIN32)) - __pragma( pack(push, 1) ) - typedef struct { U16 v; } unalign16; - typedef struct { U32 v; } unalign32; - typedef struct { U64 v; } unalign64; - typedef struct { size_t v; } unalignArch; - __pragma( pack(pop) ) -#else - typedef struct { U16 v; } __attribute__((packed)) unalign16; - typedef struct { U32 v; } __attribute__((packed)) unalign32; - typedef struct { U64 v; } __attribute__((packed)) unalign64; - typedef struct { size_t v; } __attribute__((packed)) unalignArch; -#endif - -MEM_STATIC U16 MEM_read16(const void* ptr) { return ((const unalign16*)ptr)->v; } -MEM_STATIC U32 MEM_read32(const void* ptr) { return ((const unalign32*)ptr)->v; } -MEM_STATIC U64 MEM_read64(const void* ptr) { return ((const unalign64*)ptr)->v; } -MEM_STATIC size_t MEM_readST(const void* ptr) { return ((const unalignArch*)ptr)->v; } - -MEM_STATIC void MEM_write16(void* memPtr, U16 value) { ((unalign16*)memPtr)->v = value; } -MEM_STATIC void MEM_write32(void* memPtr, U32 value) { ((unalign32*)memPtr)->v = value; } -MEM_STATIC void MEM_write64(void* memPtr, U64 value) { ((unalign64*)memPtr)->v = value; } - -#else - -/* default method, safe and standard. - can sometimes prove slower */ - -MEM_STATIC U16 MEM_read16(const void* memPtr) -{ - U16 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -MEM_STATIC U32 MEM_read32(const void* memPtr) -{ - U32 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -MEM_STATIC U64 MEM_read64(const void* memPtr) -{ - U64 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -MEM_STATIC size_t MEM_readST(const void* memPtr) -{ - size_t val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -MEM_STATIC void MEM_write16(void* memPtr, U16 value) -{ - memcpy(memPtr, &value, sizeof(value)); -} - -MEM_STATIC void MEM_write32(void* memPtr, U32 value) -{ - memcpy(memPtr, &value, sizeof(value)); -} - -MEM_STATIC void MEM_write64(void* memPtr, U64 value) -{ - memcpy(memPtr, &value, sizeof(value)); -} - -#endif /* MEM_FORCE_MEMORY_ACCESS */ - -MEM_STATIC U32 MEM_swap32(U32 in) -{ -#if defined(_MSC_VER) /* Visual Studio */ - return _byteswap_ulong(in); -#elif (defined (__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 403)) \ - || (defined(__clang__) && __has_builtin(__builtin_bswap32)) - return __builtin_bswap32(in); -#else - return ((in << 24) & 0xff000000 ) | - ((in << 8) & 0x00ff0000 ) | - ((in >> 8) & 0x0000ff00 ) | - ((in >> 24) & 0x000000ff ); -#endif -} - -MEM_STATIC U64 MEM_swap64(U64 in) -{ -#if defined(_MSC_VER) /* Visual Studio */ - return _byteswap_uint64(in); -#elif (defined (__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 403)) \ - || (defined(__clang__) && __has_builtin(__builtin_bswap64)) - return __builtin_bswap64(in); -#else - return ((in << 56) & 0xff00000000000000ULL) | - ((in << 40) & 0x00ff000000000000ULL) | - ((in << 24) & 0x0000ff0000000000ULL) | - ((in << 8) & 0x000000ff00000000ULL) | - ((in >> 8) & 0x00000000ff000000ULL) | - ((in >> 24) & 0x0000000000ff0000ULL) | - ((in >> 40) & 0x000000000000ff00ULL) | - ((in >> 56) & 0x00000000000000ffULL); -#endif -} - -MEM_STATIC size_t MEM_swapST(size_t in) -{ - if (MEM_32bits()) - return (size_t)MEM_swap32((U32)in); - else - return (size_t)MEM_swap64((U64)in); -} - -/*=== Little endian r/w ===*/ - -MEM_STATIC U16 MEM_readLE16(const void* memPtr) -{ - if (MEM_isLittleEndian()) - return MEM_read16(memPtr); - else { - const BYTE* p = (const BYTE*)memPtr; - return (U16)(p[0] + (p[1]<<8)); - } -} - -MEM_STATIC void MEM_writeLE16(void* memPtr, U16 val) -{ - if (MEM_isLittleEndian()) { - MEM_write16(memPtr, val); - } else { - BYTE* p = (BYTE*)memPtr; - p[0] = (BYTE)val; - p[1] = (BYTE)(val>>8); - } -} - -MEM_STATIC U32 MEM_readLE24(const void* memPtr) -{ - return MEM_readLE16(memPtr) + (((const BYTE*)memPtr)[2] << 16); -} - -MEM_STATIC void MEM_writeLE24(void* memPtr, U32 val) -{ - MEM_writeLE16(memPtr, (U16)val); - ((BYTE*)memPtr)[2] = (BYTE)(val>>16); -} - -MEM_STATIC U32 MEM_readLE32(const void* memPtr) -{ - if (MEM_isLittleEndian()) - return MEM_read32(memPtr); - else - return MEM_swap32(MEM_read32(memPtr)); -} - -MEM_STATIC void MEM_writeLE32(void* memPtr, U32 val32) -{ - if (MEM_isLittleEndian()) - MEM_write32(memPtr, val32); - else - MEM_write32(memPtr, MEM_swap32(val32)); -} - -MEM_STATIC U64 MEM_readLE64(const void* memPtr) -{ - if (MEM_isLittleEndian()) - return MEM_read64(memPtr); - else - return MEM_swap64(MEM_read64(memPtr)); -} - -MEM_STATIC void MEM_writeLE64(void* memPtr, U64 val64) -{ - if (MEM_isLittleEndian()) - MEM_write64(memPtr, val64); - else - MEM_write64(memPtr, MEM_swap64(val64)); -} - -MEM_STATIC size_t MEM_readLEST(const void* memPtr) -{ - if (MEM_32bits()) - return (size_t)MEM_readLE32(memPtr); - else - return (size_t)MEM_readLE64(memPtr); -} - -MEM_STATIC void MEM_writeLEST(void* memPtr, size_t val) -{ - if (MEM_32bits()) - MEM_writeLE32(memPtr, (U32)val); - else - MEM_writeLE64(memPtr, (U64)val); -} - -/*=== Big endian r/w ===*/ - -MEM_STATIC U32 MEM_readBE32(const void* memPtr) -{ - if (MEM_isLittleEndian()) - return MEM_swap32(MEM_read32(memPtr)); - else - return MEM_read32(memPtr); -} - -MEM_STATIC void MEM_writeBE32(void* memPtr, U32 val32) -{ - if (MEM_isLittleEndian()) - MEM_write32(memPtr, MEM_swap32(val32)); - else - MEM_write32(memPtr, val32); -} - -MEM_STATIC U64 MEM_readBE64(const void* memPtr) -{ - if (MEM_isLittleEndian()) - return MEM_swap64(MEM_read64(memPtr)); - else - return MEM_read64(memPtr); -} - -MEM_STATIC void MEM_writeBE64(void* memPtr, U64 val64) -{ - if (MEM_isLittleEndian()) - MEM_write64(memPtr, MEM_swap64(val64)); - else - MEM_write64(memPtr, val64); -} - -MEM_STATIC size_t MEM_readBEST(const void* memPtr) -{ - if (MEM_32bits()) - return (size_t)MEM_readBE32(memPtr); - else - return (size_t)MEM_readBE64(memPtr); -} - -MEM_STATIC void MEM_writeBEST(void* memPtr, size_t val) -{ - if (MEM_32bits()) - MEM_writeBE32(memPtr, (U32)val); - else - MEM_writeBE64(memPtr, (U64)val); -} - - -#if defined (__cplusplus) -} -#endif - -#endif /* MEM_H_MODULE */ diff --git a/lib/SZ3/tools/zstd/common/pool.c b/lib/SZ3/tools/zstd/common/pool.c deleted file mode 100644 index aa4b4de0..00000000 --- a/lib/SZ3/tools/zstd/common/pool.c +++ /dev/null @@ -1,344 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -/* ====== Dependencies ======= */ -#include /* size_t */ -#include "debug.h" /* assert */ -#include "zstd_internal.h" /* ZSTD_malloc, ZSTD_free */ -#include "pool.h" - -/* ====== Compiler specifics ====== */ -#if defined(_MSC_VER) -# pragma warning(disable : 4204) /* disable: C4204: non-constant aggregate initializer */ -#endif - - -#ifdef ZSTD_MULTITHREAD - -#include "threading.h" /* pthread adaptation */ - -/* A job is a function and an opaque argument */ -typedef struct POOL_job_s { - POOL_function function; - void *opaque; -} POOL_job; - -struct POOL_ctx_s { - ZSTD_customMem customMem; - /* Keep track of the threads */ - ZSTD_pthread_t* threads; - size_t threadCapacity; - size_t threadLimit; - - /* The queue is a circular buffer */ - POOL_job *queue; - size_t queueHead; - size_t queueTail; - size_t queueSize; - - /* The number of threads working on jobs */ - size_t numThreadsBusy; - /* Indicates if the queue is empty */ - int queueEmpty; - - /* The mutex protects the queue */ - ZSTD_pthread_mutex_t queueMutex; - /* Condition variable for pushers to wait on when the queue is full */ - ZSTD_pthread_cond_t queuePushCond; - /* Condition variables for poppers to wait on when the queue is empty */ - ZSTD_pthread_cond_t queuePopCond; - /* Indicates if the queue is shutting down */ - int shutdown; -}; - -/* POOL_thread() : - * Work thread for the thread pool. - * Waits for jobs and executes them. - * @returns : NULL on failure else non-null. - */ -static void* POOL_thread(void* opaque) { - POOL_ctx* const ctx = (POOL_ctx*)opaque; - if (!ctx) { return NULL; } - for (;;) { - /* Lock the mutex and wait for a non-empty queue or until shutdown */ - ZSTD_pthread_mutex_lock(&ctx->queueMutex); - - while ( ctx->queueEmpty - || (ctx->numThreadsBusy >= ctx->threadLimit) ) { - if (ctx->shutdown) { - /* even if !queueEmpty, (possible if numThreadsBusy >= threadLimit), - * a few threads will be shutdown while !queueEmpty, - * but enough threads will remain active to finish the queue */ - ZSTD_pthread_mutex_unlock(&ctx->queueMutex); - return opaque; - } - ZSTD_pthread_cond_wait(&ctx->queuePopCond, &ctx->queueMutex); - } - /* Pop a job off the queue */ - { POOL_job const job = ctx->queue[ctx->queueHead]; - ctx->queueHead = (ctx->queueHead + 1) % ctx->queueSize; - ctx->numThreadsBusy++; - ctx->queueEmpty = ctx->queueHead == ctx->queueTail; - /* Unlock the mutex, signal a pusher, and run the job */ - ZSTD_pthread_cond_signal(&ctx->queuePushCond); - ZSTD_pthread_mutex_unlock(&ctx->queueMutex); - - job.function(job.opaque); - - /* If the intended queue size was 0, signal after finishing job */ - ZSTD_pthread_mutex_lock(&ctx->queueMutex); - ctx->numThreadsBusy--; - if (ctx->queueSize == 1) { - ZSTD_pthread_cond_signal(&ctx->queuePushCond); - } - ZSTD_pthread_mutex_unlock(&ctx->queueMutex); - } - } /* for (;;) */ - assert(0); /* Unreachable */ -} - -POOL_ctx* POOL_create(size_t numThreads, size_t queueSize) { - return POOL_create_advanced(numThreads, queueSize, ZSTD_defaultCMem); -} - -POOL_ctx* POOL_create_advanced(size_t numThreads, size_t queueSize, - ZSTD_customMem customMem) { - POOL_ctx* ctx; - /* Check parameters */ - if (!numThreads) { return NULL; } - /* Allocate the context and zero initialize */ - ctx = (POOL_ctx*)ZSTD_calloc(sizeof(POOL_ctx), customMem); - if (!ctx) { return NULL; } - /* Initialize the job queue. - * It needs one extra space since one space is wasted to differentiate - * empty and full queues. - */ - ctx->queueSize = queueSize + 1; - ctx->queue = (POOL_job*)ZSTD_malloc(ctx->queueSize * sizeof(POOL_job), customMem); - ctx->queueHead = 0; - ctx->queueTail = 0; - ctx->numThreadsBusy = 0; - ctx->queueEmpty = 1; - { - int error = 0; - error |= ZSTD_pthread_mutex_init(&ctx->queueMutex, NULL); - error |= ZSTD_pthread_cond_init(&ctx->queuePushCond, NULL); - error |= ZSTD_pthread_cond_init(&ctx->queuePopCond, NULL); - if (error) { POOL_free(ctx); return NULL; } - } - ctx->shutdown = 0; - /* Allocate space for the thread handles */ - ctx->threads = (ZSTD_pthread_t*)ZSTD_malloc(numThreads * sizeof(ZSTD_pthread_t), customMem); - ctx->threadCapacity = 0; - ctx->customMem = customMem; - /* Check for errors */ - if (!ctx->threads || !ctx->queue) { POOL_free(ctx); return NULL; } - /* Initialize the threads */ - { size_t i; - for (i = 0; i < numThreads; ++i) { - if (ZSTD_pthread_create(&ctx->threads[i], NULL, &POOL_thread, ctx)) { - ctx->threadCapacity = i; - POOL_free(ctx); - return NULL; - } } - ctx->threadCapacity = numThreads; - ctx->threadLimit = numThreads; - } - return ctx; -} - -/*! POOL_join() : - Shutdown the queue, wake any sleeping threads, and join all of the threads. -*/ -static void POOL_join(POOL_ctx* ctx) { - /* Shut down the queue */ - ZSTD_pthread_mutex_lock(&ctx->queueMutex); - ctx->shutdown = 1; - ZSTD_pthread_mutex_unlock(&ctx->queueMutex); - /* Wake up sleeping threads */ - ZSTD_pthread_cond_broadcast(&ctx->queuePushCond); - ZSTD_pthread_cond_broadcast(&ctx->queuePopCond); - /* Join all of the threads */ - { size_t i; - for (i = 0; i < ctx->threadCapacity; ++i) { - ZSTD_pthread_join(ctx->threads[i], NULL); /* note : could fail */ - } } -} - -void POOL_free(POOL_ctx *ctx) { - if (!ctx) { return; } - POOL_join(ctx); - ZSTD_pthread_mutex_destroy(&ctx->queueMutex); - ZSTD_pthread_cond_destroy(&ctx->queuePushCond); - ZSTD_pthread_cond_destroy(&ctx->queuePopCond); - ZSTD_free(ctx->queue, ctx->customMem); - ZSTD_free(ctx->threads, ctx->customMem); - ZSTD_free(ctx, ctx->customMem); -} - - - -size_t POOL_sizeof(POOL_ctx *ctx) { - if (ctx==NULL) return 0; /* supports sizeof NULL */ - return sizeof(*ctx) - + ctx->queueSize * sizeof(POOL_job) - + ctx->threadCapacity * sizeof(ZSTD_pthread_t); -} - - -/* @return : 0 on success, 1 on error */ -static int POOL_resize_internal(POOL_ctx* ctx, size_t numThreads) -{ - if (numThreads <= ctx->threadCapacity) { - if (!numThreads) return 1; - ctx->threadLimit = numThreads; - return 0; - } - /* numThreads > threadCapacity */ - { ZSTD_pthread_t* const threadPool = (ZSTD_pthread_t*)ZSTD_malloc(numThreads * sizeof(ZSTD_pthread_t), ctx->customMem); - if (!threadPool) return 1; - /* replace existing thread pool */ - memcpy(threadPool, ctx->threads, ctx->threadCapacity * sizeof(*threadPool)); - ZSTD_free(ctx->threads, ctx->customMem); - ctx->threads = threadPool; - /* Initialize additional threads */ - { size_t threadId; - for (threadId = ctx->threadCapacity; threadId < numThreads; ++threadId) { - if (ZSTD_pthread_create(&threadPool[threadId], NULL, &POOL_thread, ctx)) { - ctx->threadCapacity = threadId; - return 1; - } } - } } - /* successfully expanded */ - ctx->threadCapacity = numThreads; - ctx->threadLimit = numThreads; - return 0; -} - -/* @return : 0 on success, 1 on error */ -int POOL_resize(POOL_ctx* ctx, size_t numThreads) -{ - int result; - if (ctx==NULL) return 1; - ZSTD_pthread_mutex_lock(&ctx->queueMutex); - result = POOL_resize_internal(ctx, numThreads); - ZSTD_pthread_cond_broadcast(&ctx->queuePopCond); - ZSTD_pthread_mutex_unlock(&ctx->queueMutex); - return result; -} - -/** - * Returns 1 if the queue is full and 0 otherwise. - * - * When queueSize is 1 (pool was created with an intended queueSize of 0), - * then a queue is empty if there is a thread free _and_ no job is waiting. - */ -static int isQueueFull(POOL_ctx const* ctx) { - if (ctx->queueSize > 1) { - return ctx->queueHead == ((ctx->queueTail + 1) % ctx->queueSize); - } else { - return (ctx->numThreadsBusy == ctx->threadLimit) || - !ctx->queueEmpty; - } -} - - -static void POOL_add_internal(POOL_ctx* ctx, POOL_function function, void *opaque) -{ - POOL_job const job = {function, opaque}; - assert(ctx != NULL); - if (ctx->shutdown) return; - - ctx->queueEmpty = 0; - ctx->queue[ctx->queueTail] = job; - ctx->queueTail = (ctx->queueTail + 1) % ctx->queueSize; - ZSTD_pthread_cond_signal(&ctx->queuePopCond); -} - -void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque) -{ - assert(ctx != NULL); - ZSTD_pthread_mutex_lock(&ctx->queueMutex); - /* Wait until there is space in the queue for the new job */ - while (isQueueFull(ctx) && (!ctx->shutdown)) { - ZSTD_pthread_cond_wait(&ctx->queuePushCond, &ctx->queueMutex); - } - POOL_add_internal(ctx, function, opaque); - ZSTD_pthread_mutex_unlock(&ctx->queueMutex); -} - - -int POOL_tryAdd(POOL_ctx* ctx, POOL_function function, void* opaque) -{ - assert(ctx != NULL); - ZSTD_pthread_mutex_lock(&ctx->queueMutex); - if (isQueueFull(ctx)) { - ZSTD_pthread_mutex_unlock(&ctx->queueMutex); - return 0; - } - POOL_add_internal(ctx, function, opaque); - ZSTD_pthread_mutex_unlock(&ctx->queueMutex); - return 1; -} - - -#else /* ZSTD_MULTITHREAD not defined */ - -/* ========================== */ -/* No multi-threading support */ -/* ========================== */ - - -/* We don't need any data, but if it is empty, malloc() might return NULL. */ -struct POOL_ctx_s { - int dummy; -}; -static POOL_ctx g_ctx; - -POOL_ctx* POOL_create(size_t numThreads, size_t queueSize) { - return POOL_create_advanced(numThreads, queueSize, ZSTD_defaultCMem); -} - -POOL_ctx* POOL_create_advanced(size_t numThreads, size_t queueSize, ZSTD_customMem customMem) { - (void)numThreads; - (void)queueSize; - (void)customMem; - return &g_ctx; -} - -void POOL_free(POOL_ctx* ctx) { - assert(!ctx || ctx == &g_ctx); - (void)ctx; -} - -int POOL_resize(POOL_ctx* ctx, size_t numThreads) { - (void)ctx; (void)numThreads; - return 0; -} - -void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque) { - (void)ctx; - function(opaque); -} - -int POOL_tryAdd(POOL_ctx* ctx, POOL_function function, void* opaque) { - (void)ctx; - function(opaque); - return 1; -} - -size_t POOL_sizeof(POOL_ctx* ctx) { - if (ctx==NULL) return 0; /* supports sizeof NULL */ - assert(ctx == &g_ctx); - return sizeof(*ctx); -} - -#endif /* ZSTD_MULTITHREAD */ diff --git a/lib/SZ3/tools/zstd/common/pool.h b/lib/SZ3/tools/zstd/common/pool.h deleted file mode 100644 index 259bafc9..00000000 --- a/lib/SZ3/tools/zstd/common/pool.h +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef POOL_H -#define POOL_H - -#if defined (__cplusplus) -extern "C" { -#endif - - -#include /* size_t */ -#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_customMem */ -#include "../zstd.h" - -typedef struct POOL_ctx_s POOL_ctx; - -/*! POOL_create() : - * Create a thread pool with at most `numThreads` threads. - * `numThreads` must be at least 1. - * The maximum number of queued jobs before blocking is `queueSize`. - * @return : POOL_ctx pointer on success, else NULL. -*/ -POOL_ctx* POOL_create(size_t numThreads, size_t queueSize); - -POOL_ctx* POOL_create_advanced(size_t numThreads, size_t queueSize, - ZSTD_customMem customMem); - -/*! POOL_free() : - * Free a thread pool returned by POOL_create(). - */ -void POOL_free(POOL_ctx* ctx); - -/*! POOL_resize() : - * Expands or shrinks pool's number of threads. - * This is more efficient than releasing + creating a new context, - * since it tries to preserve and re-use existing threads. - * `numThreads` must be at least 1. - * @return : 0 when resize was successful, - * !0 (typically 1) if there is an error. - * note : only numThreads can be resized, queueSize remains unchanged. - */ -int POOL_resize(POOL_ctx* ctx, size_t numThreads); - -/*! POOL_sizeof() : - * @return threadpool memory usage - * note : compatible with NULL (returns 0 in this case) - */ -size_t POOL_sizeof(POOL_ctx* ctx); - -/*! POOL_function : - * The function type that can be added to a thread pool. - */ -typedef void (*POOL_function)(void*); - -/*! POOL_add() : - * Add the job `function(opaque)` to the thread pool. `ctx` must be valid. - * Possibly blocks until there is room in the queue. - * Note : The function may be executed asynchronously, - * therefore, `opaque` must live until function has been completed. - */ -void POOL_add(POOL_ctx* ctx, POOL_function function, void* opaque); - - -/*! POOL_tryAdd() : - * Add the job `function(opaque)` to thread pool _if_ a worker is available. - * Returns immediately even if not (does not block). - * @return : 1 if successful, 0 if not. - */ -int POOL_tryAdd(POOL_ctx* ctx, POOL_function function, void* opaque); - - -#if defined (__cplusplus) -} -#endif - -#endif diff --git a/lib/SZ3/tools/zstd/common/threading.c b/lib/SZ3/tools/zstd/common/threading.c deleted file mode 100644 index e2edb313..00000000 --- a/lib/SZ3/tools/zstd/common/threading.c +++ /dev/null @@ -1,121 +0,0 @@ -/** - * Copyright (c) 2016 Tino Reichardt - * All rights reserved. - * - * You can contact the author at: - * - zstdmt source repository: https://github.com/mcmilk/zstdmt - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/** - * This file will hold wrapper for systems, which do not support pthreads - */ - -#include "threading.h" - -/* create fake symbol to avoid empty translation unit warning */ -int g_ZSTD_threading_useless_symbol; - -#if defined(ZSTD_MULTITHREAD) && defined(_WIN32) - -/** - * Windows minimalist Pthread Wrapper, based on : - * http://www.cse.wustl.edu/~schmidt/win32-cv-1.html - */ - - -/* === Dependencies === */ -#include -#include - - -/* === Implementation === */ - -static unsigned __stdcall worker(void *arg) -{ - ZSTD_pthread_t* const thread = (ZSTD_pthread_t*) arg; - thread->arg = thread->start_routine(thread->arg); - return 0; -} - -int ZSTD_pthread_create(ZSTD_pthread_t* thread, const void* unused, - void* (*start_routine) (void*), void* arg) -{ - (void)unused; - thread->arg = arg; - thread->start_routine = start_routine; - thread->handle = (HANDLE) _beginthreadex(NULL, 0, worker, thread, 0, NULL); - - if (!thread->handle) - return errno; - else - return 0; -} - -int ZSTD_pthread_join(ZSTD_pthread_t thread, void **value_ptr) -{ - DWORD result; - - if (!thread.handle) return 0; - - result = WaitForSingleObject(thread.handle, INFINITE); - switch (result) { - case WAIT_OBJECT_0: - if (value_ptr) *value_ptr = thread.arg; - return 0; - case WAIT_ABANDONED: - return EINVAL; - default: - return GetLastError(); - } -} - -#endif /* ZSTD_MULTITHREAD */ - -#if defined(ZSTD_MULTITHREAD) && DEBUGLEVEL >= 1 && !defined(_WIN32) - -#include - -int ZSTD_pthread_mutex_init(ZSTD_pthread_mutex_t* mutex, pthread_mutexattr_t const* attr) -{ - *mutex = (pthread_mutex_t*)malloc(sizeof(pthread_mutex_t)); - if (!*mutex) - return 1; - return pthread_mutex_init(*mutex, attr); -} - -int ZSTD_pthread_mutex_destroy(ZSTD_pthread_mutex_t* mutex) -{ - if (!*mutex) - return 0; - { - int const ret = pthread_mutex_destroy(*mutex); - free(*mutex); - return ret; - } -} - -int ZSTD_pthread_cond_init(ZSTD_pthread_cond_t* cond, pthread_condattr_t const* attr) -{ - *cond = (pthread_cond_t*)malloc(sizeof(pthread_cond_t)); - if (!*cond) - return 1; - return pthread_cond_init(*cond, attr); -} - -int ZSTD_pthread_cond_destroy(ZSTD_pthread_cond_t* cond) -{ - if (!*cond) - return 0; - { - int const ret = pthread_cond_destroy(*cond); - free(*cond); - return ret; - } -} - -#endif diff --git a/lib/SZ3/tools/zstd/common/threading.h b/lib/SZ3/tools/zstd/common/threading.h deleted file mode 100644 index fd0060d5..00000000 --- a/lib/SZ3/tools/zstd/common/threading.h +++ /dev/null @@ -1,155 +0,0 @@ -/** - * Copyright (c) 2016 Tino Reichardt - * All rights reserved. - * - * You can contact the author at: - * - zstdmt source repository: https://github.com/mcmilk/zstdmt - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef THREADING_H_938743 -#define THREADING_H_938743 - -#include "debug.h" - -#if defined (__cplusplus) -extern "C" { -#endif - -#if defined(ZSTD_MULTITHREAD) && defined(_WIN32) - -/** - * Windows minimalist Pthread Wrapper, based on : - * http://www.cse.wustl.edu/~schmidt/win32-cv-1.html - */ -#ifdef WINVER -# undef WINVER -#endif -#define WINVER 0x0600 - -#ifdef _WIN32_WINNT -# undef _WIN32_WINNT -#endif -#define _WIN32_WINNT 0x0600 - -#ifndef WIN32_LEAN_AND_MEAN -# define WIN32_LEAN_AND_MEAN -#endif - -#undef ERROR /* reported already defined on VS 2015 (Rich Geldreich) */ -#include -#undef ERROR -#define ERROR(name) ZSTD_ERROR(name) - - -/* mutex */ -#define ZSTD_pthread_mutex_t CRITICAL_SECTION -#define ZSTD_pthread_mutex_init(a, b) ((void)(b), InitializeCriticalSection((a)), 0) -#define ZSTD_pthread_mutex_destroy(a) DeleteCriticalSection((a)) -#define ZSTD_pthread_mutex_lock(a) EnterCriticalSection((a)) -#define ZSTD_pthread_mutex_unlock(a) LeaveCriticalSection((a)) - -/* condition variable */ -#define ZSTD_pthread_cond_t CONDITION_VARIABLE -#define ZSTD_pthread_cond_init(a, b) ((void)(b), InitializeConditionVariable((a)), 0) -#define ZSTD_pthread_cond_destroy(a) ((void)(a)) -#define ZSTD_pthread_cond_wait(a, b) SleepConditionVariableCS((a), (b), INFINITE) -#define ZSTD_pthread_cond_signal(a) WakeConditionVariable((a)) -#define ZSTD_pthread_cond_broadcast(a) WakeAllConditionVariable((a)) - -/* ZSTD_pthread_create() and ZSTD_pthread_join() */ -typedef struct { - HANDLE handle; - void* (*start_routine)(void*); - void* arg; -} ZSTD_pthread_t; - -int ZSTD_pthread_create(ZSTD_pthread_t* thread, const void* unused, - void* (*start_routine) (void*), void* arg); - -int ZSTD_pthread_join(ZSTD_pthread_t thread, void** value_ptr); - -/** - * add here more wrappers as required - */ - - -#elif defined(ZSTD_MULTITHREAD) /* posix assumed ; need a better detection method */ -/* === POSIX Systems === */ -# include - -#if DEBUGLEVEL < 1 - -#define ZSTD_pthread_mutex_t pthread_mutex_t -#define ZSTD_pthread_mutex_init(a, b) pthread_mutex_init((a), (b)) -#define ZSTD_pthread_mutex_destroy(a) pthread_mutex_destroy((a)) -#define ZSTD_pthread_mutex_lock(a) pthread_mutex_lock((a)) -#define ZSTD_pthread_mutex_unlock(a) pthread_mutex_unlock((a)) - -#define ZSTD_pthread_cond_t pthread_cond_t -#define ZSTD_pthread_cond_init(a, b) pthread_cond_init((a), (b)) -#define ZSTD_pthread_cond_destroy(a) pthread_cond_destroy((a)) -#define ZSTD_pthread_cond_wait(a, b) pthread_cond_wait((a), (b)) -#define ZSTD_pthread_cond_signal(a) pthread_cond_signal((a)) -#define ZSTD_pthread_cond_broadcast(a) pthread_cond_broadcast((a)) - -#define ZSTD_pthread_t pthread_t -#define ZSTD_pthread_create(a, b, c, d) pthread_create((a), (b), (c), (d)) -#define ZSTD_pthread_join(a, b) pthread_join((a),(b)) - -#else /* DEBUGLEVEL >= 1 */ - -/* Debug implementation of threading. - * In this implementation we use pointers for mutexes and condition variables. - * This way, if we forget to init/destroy them the program will crash or ASAN - * will report leaks. - */ - -#define ZSTD_pthread_mutex_t pthread_mutex_t* -int ZSTD_pthread_mutex_init(ZSTD_pthread_mutex_t* mutex, pthread_mutexattr_t const* attr); -int ZSTD_pthread_mutex_destroy(ZSTD_pthread_mutex_t* mutex); -#define ZSTD_pthread_mutex_lock(a) pthread_mutex_lock(*(a)) -#define ZSTD_pthread_mutex_unlock(a) pthread_mutex_unlock(*(a)) - -#define ZSTD_pthread_cond_t pthread_cond_t* -int ZSTD_pthread_cond_init(ZSTD_pthread_cond_t* cond, pthread_condattr_t const* attr); -int ZSTD_pthread_cond_destroy(ZSTD_pthread_cond_t* cond); -#define ZSTD_pthread_cond_wait(a, b) pthread_cond_wait(*(a), *(b)) -#define ZSTD_pthread_cond_signal(a) pthread_cond_signal(*(a)) -#define ZSTD_pthread_cond_broadcast(a) pthread_cond_broadcast(*(a)) - -#define ZSTD_pthread_t pthread_t -#define ZSTD_pthread_create(a, b, c, d) pthread_create((a), (b), (c), (d)) -#define ZSTD_pthread_join(a, b) pthread_join((a),(b)) - -#endif - -#else /* ZSTD_MULTITHREAD not defined */ -/* No multithreading support */ - -typedef int ZSTD_pthread_mutex_t; -#define ZSTD_pthread_mutex_init(a, b) ((void)(a), (void)(b), 0) -#define ZSTD_pthread_mutex_destroy(a) ((void)(a)) -#define ZSTD_pthread_mutex_lock(a) ((void)(a)) -#define ZSTD_pthread_mutex_unlock(a) ((void)(a)) - -typedef int ZSTD_pthread_cond_t; -#define ZSTD_pthread_cond_init(a, b) ((void)(a), (void)(b), 0) -#define ZSTD_pthread_cond_destroy(a) ((void)(a)) -#define ZSTD_pthread_cond_wait(a, b) ((void)(a), (void)(b)) -#define ZSTD_pthread_cond_signal(a) ((void)(a)) -#define ZSTD_pthread_cond_broadcast(a) ((void)(a)) - -/* do not use ZSTD_pthread_t */ - -#endif /* ZSTD_MULTITHREAD */ - -#if defined (__cplusplus) -} -#endif - -#endif /* THREADING_H_938743 */ diff --git a/lib/SZ3/tools/zstd/common/xxhash.c b/lib/SZ3/tools/zstd/common/xxhash.c deleted file mode 100644 index 597de18f..00000000 --- a/lib/SZ3/tools/zstd/common/xxhash.c +++ /dev/null @@ -1,864 +0,0 @@ -/* - * xxHash - Fast Hash algorithm - * Copyright (c) 2012-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - xxHash homepage: http://www.xxhash.com - * - xxHash source repository : https://github.com/Cyan4973/xxHash - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -*/ - - -/* ************************************* -* Tuning parameters -***************************************/ -/*!XXH_FORCE_MEMORY_ACCESS : - * By default, access to unaligned memory is controlled by `memcpy()`, which is safe and portable. - * Unfortunately, on some target/compiler combinations, the generated assembly is sub-optimal. - * The below switch allow to select different access method for improved performance. - * Method 0 (default) : use `memcpy()`. Safe and portable. - * Method 1 : `__packed` statement. It depends on compiler extension (ie, not portable). - * This method is safe if your compiler supports it, and *generally* as fast or faster than `memcpy`. - * Method 2 : direct access. This method doesn't depend on compiler but violate C standard. - * It can generate buggy code on targets which do not support unaligned memory accesses. - * But in some circumstances, it's the only known way to get the most performance (ie GCC + ARMv6) - * See http://stackoverflow.com/a/32095106/646947 for details. - * Prefer these methods in priority order (0 > 1 > 2) - */ -#ifndef XXH_FORCE_MEMORY_ACCESS /* can be defined externally, on command line for example */ -# if defined(__GNUC__) && ( defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6T2__) ) -# define XXH_FORCE_MEMORY_ACCESS 2 -# elif (defined(__INTEL_COMPILER) && !defined(WIN32)) || \ - (defined(__GNUC__) && ( defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) )) || \ - defined(__ICCARM__) -# define XXH_FORCE_MEMORY_ACCESS 1 -# endif -#endif - -/*!XXH_ACCEPT_NULL_INPUT_POINTER : - * If the input pointer is a null pointer, xxHash default behavior is to trigger a memory access error, since it is a bad pointer. - * When this option is enabled, xxHash output for null input pointers will be the same as a null-length input. - * By default, this option is disabled. To enable it, uncomment below define : - */ -/* #define XXH_ACCEPT_NULL_INPUT_POINTER 1 */ - -/*!XXH_FORCE_NATIVE_FORMAT : - * By default, xxHash library provides endian-independent Hash values, based on little-endian convention. - * Results are therefore identical for little-endian and big-endian CPU. - * This comes at a performance cost for big-endian CPU, since some swapping is required to emulate little-endian format. - * Should endian-independence be of no importance for your application, you may set the #define below to 1, - * to improve speed for Big-endian CPU. - * This option has no impact on Little_Endian CPU. - */ -#ifndef XXH_FORCE_NATIVE_FORMAT /* can be defined externally */ -# define XXH_FORCE_NATIVE_FORMAT 0 -#endif - -/*!XXH_FORCE_ALIGN_CHECK : - * This is a minor performance trick, only useful with lots of very small keys. - * It means : check for aligned/unaligned input. - * The check costs one initial branch per hash; set to 0 when the input data - * is guaranteed to be aligned. - */ -#ifndef XXH_FORCE_ALIGN_CHECK /* can be defined externally */ -# if defined(__i386) || defined(_M_IX86) || defined(__x86_64__) || defined(_M_X64) -# define XXH_FORCE_ALIGN_CHECK 0 -# else -# define XXH_FORCE_ALIGN_CHECK 1 -# endif -#endif - - -/* ************************************* -* Includes & Memory related functions -***************************************/ -/* Modify the local functions below should you wish to use some other memory routines */ -/* for malloc(), free() */ -#include -#include /* size_t */ -static void* XXH_malloc(size_t s) { return malloc(s); } -static void XXH_free (void* p) { free(p); } -/* for memcpy() */ -#include -static void* XXH_memcpy(void* dest, const void* src, size_t size) { return memcpy(dest,src,size); } - -#ifndef XXH_STATIC_LINKING_ONLY -# define XXH_STATIC_LINKING_ONLY -#endif -#include "xxhash.h" - - -/* ************************************* -* Compiler Specific Options -***************************************/ -#if (defined(__GNUC__) && !defined(__STRICT_ANSI__)) || defined(__cplusplus) || defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ -# define INLINE_KEYWORD inline -#else -# define INLINE_KEYWORD -#endif - -#if defined(__GNUC__) || defined(__ICCARM__) -# define FORCE_INLINE_ATTR __attribute__((always_inline)) -#elif defined(_MSC_VER) -# define FORCE_INLINE_ATTR __forceinline -#else -# define FORCE_INLINE_ATTR -#endif - -#define FORCE_INLINE_TEMPLATE static INLINE_KEYWORD FORCE_INLINE_ATTR - - -#ifdef _MSC_VER -# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ -#endif - - -/* ************************************* -* Basic Types -***************************************/ -#ifndef MEM_MODULE -# define MEM_MODULE -# if !defined (__VMS) && (defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) ) -# include - typedef uint8_t BYTE; - typedef uint16_t U16; - typedef uint32_t U32; - typedef int32_t S32; - typedef uint64_t U64; -# else - typedef unsigned char BYTE; - typedef unsigned short U16; - typedef unsigned int U32; - typedef signed int S32; - typedef unsigned long long U64; /* if your compiler doesn't support unsigned long long, replace by another 64-bit type here. Note that xxhash.h will also need to be updated. */ -# endif -#endif - - -#if (defined(XXH_FORCE_MEMORY_ACCESS) && (XXH_FORCE_MEMORY_ACCESS==2)) - -/* Force direct memory access. Only works on CPU which support unaligned memory access in hardware */ -static U32 XXH_read32(const void* memPtr) { return *(const U32*) memPtr; } -static U64 XXH_read64(const void* memPtr) { return *(const U64*) memPtr; } - -#elif (defined(XXH_FORCE_MEMORY_ACCESS) && (XXH_FORCE_MEMORY_ACCESS==1)) - -/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */ -/* currently only defined for gcc and icc */ -typedef union { U32 u32; U64 u64; } __attribute__((packed)) unalign; - -static U32 XXH_read32(const void* ptr) { return ((const unalign*)ptr)->u32; } -static U64 XXH_read64(const void* ptr) { return ((const unalign*)ptr)->u64; } - -#else - -/* portable and safe solution. Generally efficient. - * see : http://stackoverflow.com/a/32095106/646947 - */ - -static U32 XXH_read32(const void* memPtr) -{ - U32 val; - memcpy(&val, memPtr, sizeof(val)); - return val; -} - -static U64 XXH_read64(const void* memPtr) -{ - U64 val; - memcpy(&val, memPtr, sizeof(val)); - return val; -} - -#endif /* XXH_FORCE_DIRECT_MEMORY_ACCESS */ - - -/* **************************************** -* Compiler-specific Functions and Macros -******************************************/ -#define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) - -/* Note : although _rotl exists for minGW (GCC under windows), performance seems poor */ -#if defined(_MSC_VER) -# define XXH_rotl32(x,r) _rotl(x,r) -# define XXH_rotl64(x,r) _rotl64(x,r) -#else -#if defined(__ICCARM__) -# include -# define XXH_rotl32(x,r) __ROR(x,(32 - r)) -#else -# define XXH_rotl32(x,r) ((x << r) | (x >> (32 - r))) -#endif -# define XXH_rotl64(x,r) ((x << r) | (x >> (64 - r))) -#endif - -#if defined(_MSC_VER) /* Visual Studio */ -# define XXH_swap32 _byteswap_ulong -# define XXH_swap64 _byteswap_uint64 -#elif GCC_VERSION >= 403 -# define XXH_swap32 __builtin_bswap32 -# define XXH_swap64 __builtin_bswap64 -#else -static U32 XXH_swap32 (U32 x) -{ - return ((x << 24) & 0xff000000 ) | - ((x << 8) & 0x00ff0000 ) | - ((x >> 8) & 0x0000ff00 ) | - ((x >> 24) & 0x000000ff ); -} -static U64 XXH_swap64 (U64 x) -{ - return ((x << 56) & 0xff00000000000000ULL) | - ((x << 40) & 0x00ff000000000000ULL) | - ((x << 24) & 0x0000ff0000000000ULL) | - ((x << 8) & 0x000000ff00000000ULL) | - ((x >> 8) & 0x00000000ff000000ULL) | - ((x >> 24) & 0x0000000000ff0000ULL) | - ((x >> 40) & 0x000000000000ff00ULL) | - ((x >> 56) & 0x00000000000000ffULL); -} -#endif - - -/* ************************************* -* Architecture Macros -***************************************/ -typedef enum { XXH_bigEndian=0, XXH_littleEndian=1 } XXH_endianess; - -/* XXH_CPU_LITTLE_ENDIAN can be defined externally, for example on the compiler command line */ -#ifndef XXH_CPU_LITTLE_ENDIAN - static const int g_one = 1; -# define XXH_CPU_LITTLE_ENDIAN (*(const char*)(&g_one)) -#endif - - -/* *************************** -* Memory reads -*****************************/ -typedef enum { XXH_aligned, XXH_unaligned } XXH_alignment; - -FORCE_INLINE_TEMPLATE U32 XXH_readLE32_align(const void* ptr, XXH_endianess endian, XXH_alignment align) -{ - if (align==XXH_unaligned) - return endian==XXH_littleEndian ? XXH_read32(ptr) : XXH_swap32(XXH_read32(ptr)); - else - return endian==XXH_littleEndian ? *(const U32*)ptr : XXH_swap32(*(const U32*)ptr); -} - -FORCE_INLINE_TEMPLATE U32 XXH_readLE32(const void* ptr, XXH_endianess endian) -{ - return XXH_readLE32_align(ptr, endian, XXH_unaligned); -} - -static U32 XXH_readBE32(const void* ptr) -{ - return XXH_CPU_LITTLE_ENDIAN ? XXH_swap32(XXH_read32(ptr)) : XXH_read32(ptr); -} - -FORCE_INLINE_TEMPLATE U64 XXH_readLE64_align(const void* ptr, XXH_endianess endian, XXH_alignment align) -{ - if (align==XXH_unaligned) - return endian==XXH_littleEndian ? XXH_read64(ptr) : XXH_swap64(XXH_read64(ptr)); - else - return endian==XXH_littleEndian ? *(const U64*)ptr : XXH_swap64(*(const U64*)ptr); -} - -FORCE_INLINE_TEMPLATE U64 XXH_readLE64(const void* ptr, XXH_endianess endian) -{ - return XXH_readLE64_align(ptr, endian, XXH_unaligned); -} - -static U64 XXH_readBE64(const void* ptr) -{ - return XXH_CPU_LITTLE_ENDIAN ? XXH_swap64(XXH_read64(ptr)) : XXH_read64(ptr); -} - - -/* ************************************* -* Macros -***************************************/ -#define XXH_STATIC_ASSERT(c) { enum { XXH_static_assert = 1/(int)(!!(c)) }; } /* use only *after* variable declarations */ - - -/* ************************************* -* Constants -***************************************/ -static const U32 PRIME32_1 = 2654435761U; -static const U32 PRIME32_2 = 2246822519U; -static const U32 PRIME32_3 = 3266489917U; -static const U32 PRIME32_4 = 668265263U; -static const U32 PRIME32_5 = 374761393U; - -static const U64 PRIME64_1 = 11400714785074694791ULL; -static const U64 PRIME64_2 = 14029467366897019727ULL; -static const U64 PRIME64_3 = 1609587929392839161ULL; -static const U64 PRIME64_4 = 9650029242287828579ULL; -static const U64 PRIME64_5 = 2870177450012600261ULL; - -XXH_PUBLIC_API unsigned XXH_versionNumber (void) { return XXH_VERSION_NUMBER; } - - -/* ************************** -* Utils -****************************/ -XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dstState, const XXH32_state_t* restrict srcState) -{ - memcpy(dstState, srcState, sizeof(*dstState)); -} - -XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* restrict dstState, const XXH64_state_t* restrict srcState) -{ - memcpy(dstState, srcState, sizeof(*dstState)); -} - - -/* *************************** -* Simple Hash Functions -*****************************/ - -static U32 XXH32_round(U32 seed, U32 input) -{ - seed += input * PRIME32_2; - seed = XXH_rotl32(seed, 13); - seed *= PRIME32_1; - return seed; -} - -FORCE_INLINE_TEMPLATE U32 XXH32_endian_align(const void* input, size_t len, U32 seed, XXH_endianess endian, XXH_alignment align) -{ - const BYTE* p = (const BYTE*)input; - const BYTE* bEnd = p + len; - U32 h32; -#define XXH_get32bits(p) XXH_readLE32_align(p, endian, align) - -#ifdef XXH_ACCEPT_NULL_INPUT_POINTER - if (p==NULL) { - len=0; - bEnd=p=(const BYTE*)(size_t)16; - } -#endif - - if (len>=16) { - const BYTE* const limit = bEnd - 16; - U32 v1 = seed + PRIME32_1 + PRIME32_2; - U32 v2 = seed + PRIME32_2; - U32 v3 = seed + 0; - U32 v4 = seed - PRIME32_1; - - do { - v1 = XXH32_round(v1, XXH_get32bits(p)); p+=4; - v2 = XXH32_round(v2, XXH_get32bits(p)); p+=4; - v3 = XXH32_round(v3, XXH_get32bits(p)); p+=4; - v4 = XXH32_round(v4, XXH_get32bits(p)); p+=4; - } while (p<=limit); - - h32 = XXH_rotl32(v1, 1) + XXH_rotl32(v2, 7) + XXH_rotl32(v3, 12) + XXH_rotl32(v4, 18); - } else { - h32 = seed + PRIME32_5; - } - - h32 += (U32) len; - - while (p+4<=bEnd) { - h32 += XXH_get32bits(p) * PRIME32_3; - h32 = XXH_rotl32(h32, 17) * PRIME32_4 ; - p+=4; - } - - while (p> 15; - h32 *= PRIME32_2; - h32 ^= h32 >> 13; - h32 *= PRIME32_3; - h32 ^= h32 >> 16; - - return h32; -} - - -XXH_PUBLIC_API unsigned int XXH32 (const void* input, size_t len, unsigned int seed) -{ -#if 0 - /* Simple version, good for code maintenance, but unfortunately slow for small inputs */ - XXH32_CREATESTATE_STATIC(state); - XXH32_reset(state, seed); - XXH32_update(state, input, len); - return XXH32_digest(state); -#else - XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN; - - if (XXH_FORCE_ALIGN_CHECK) { - if ((((size_t)input) & 3) == 0) { /* Input is 4-bytes aligned, leverage the speed benefit */ - if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT) - return XXH32_endian_align(input, len, seed, XXH_littleEndian, XXH_aligned); - else - return XXH32_endian_align(input, len, seed, XXH_bigEndian, XXH_aligned); - } } - - if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT) - return XXH32_endian_align(input, len, seed, XXH_littleEndian, XXH_unaligned); - else - return XXH32_endian_align(input, len, seed, XXH_bigEndian, XXH_unaligned); -#endif -} - - -static U64 XXH64_round(U64 acc, U64 input) -{ - acc += input * PRIME64_2; - acc = XXH_rotl64(acc, 31); - acc *= PRIME64_1; - return acc; -} - -static U64 XXH64_mergeRound(U64 acc, U64 val) -{ - val = XXH64_round(0, val); - acc ^= val; - acc = acc * PRIME64_1 + PRIME64_4; - return acc; -} - -FORCE_INLINE_TEMPLATE U64 XXH64_endian_align(const void* input, size_t len, U64 seed, XXH_endianess endian, XXH_alignment align) -{ - const BYTE* p = (const BYTE*)input; - const BYTE* const bEnd = p + len; - U64 h64; -#define XXH_get64bits(p) XXH_readLE64_align(p, endian, align) - -#ifdef XXH_ACCEPT_NULL_INPUT_POINTER - if (p==NULL) { - len=0; - bEnd=p=(const BYTE*)(size_t)32; - } -#endif - - if (len>=32) { - const BYTE* const limit = bEnd - 32; - U64 v1 = seed + PRIME64_1 + PRIME64_2; - U64 v2 = seed + PRIME64_2; - U64 v3 = seed + 0; - U64 v4 = seed - PRIME64_1; - - do { - v1 = XXH64_round(v1, XXH_get64bits(p)); p+=8; - v2 = XXH64_round(v2, XXH_get64bits(p)); p+=8; - v3 = XXH64_round(v3, XXH_get64bits(p)); p+=8; - v4 = XXH64_round(v4, XXH_get64bits(p)); p+=8; - } while (p<=limit); - - h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18); - h64 = XXH64_mergeRound(h64, v1); - h64 = XXH64_mergeRound(h64, v2); - h64 = XXH64_mergeRound(h64, v3); - h64 = XXH64_mergeRound(h64, v4); - - } else { - h64 = seed + PRIME64_5; - } - - h64 += (U64) len; - - while (p+8<=bEnd) { - U64 const k1 = XXH64_round(0, XXH_get64bits(p)); - h64 ^= k1; - h64 = XXH_rotl64(h64,27) * PRIME64_1 + PRIME64_4; - p+=8; - } - - if (p+4<=bEnd) { - h64 ^= (U64)(XXH_get32bits(p)) * PRIME64_1; - h64 = XXH_rotl64(h64, 23) * PRIME64_2 + PRIME64_3; - p+=4; - } - - while (p> 33; - h64 *= PRIME64_2; - h64 ^= h64 >> 29; - h64 *= PRIME64_3; - h64 ^= h64 >> 32; - - return h64; -} - - -XXH_PUBLIC_API unsigned long long XXH64 (const void* input, size_t len, unsigned long long seed) -{ -#if 0 - /* Simple version, good for code maintenance, but unfortunately slow for small inputs */ - XXH64_CREATESTATE_STATIC(state); - XXH64_reset(state, seed); - XXH64_update(state, input, len); - return XXH64_digest(state); -#else - XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN; - - if (XXH_FORCE_ALIGN_CHECK) { - if ((((size_t)input) & 7)==0) { /* Input is aligned, let's leverage the speed advantage */ - if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT) - return XXH64_endian_align(input, len, seed, XXH_littleEndian, XXH_aligned); - else - return XXH64_endian_align(input, len, seed, XXH_bigEndian, XXH_aligned); - } } - - if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT) - return XXH64_endian_align(input, len, seed, XXH_littleEndian, XXH_unaligned); - else - return XXH64_endian_align(input, len, seed, XXH_bigEndian, XXH_unaligned); -#endif -} - - -/* ************************************************** -* Advanced Hash Functions -****************************************************/ - -XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void) -{ - return (XXH32_state_t*)XXH_malloc(sizeof(XXH32_state_t)); -} -XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr) -{ - XXH_free(statePtr); - return XXH_OK; -} - -XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void) -{ - return (XXH64_state_t*)XXH_malloc(sizeof(XXH64_state_t)); -} -XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr) -{ - XXH_free(statePtr); - return XXH_OK; -} - - -/*** Hash feed ***/ - -XXH_PUBLIC_API XXH_errorcode XXH32_reset(XXH32_state_t* statePtr, unsigned int seed) -{ - XXH32_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnings */ - memset(&state, 0, sizeof(state)-4); /* do not write into reserved, for future removal */ - state.v1 = seed + PRIME32_1 + PRIME32_2; - state.v2 = seed + PRIME32_2; - state.v3 = seed + 0; - state.v4 = seed - PRIME32_1; - memcpy(statePtr, &state, sizeof(state)); - return XXH_OK; -} - - -XXH_PUBLIC_API XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed) -{ - XXH64_state_t state; /* using a local state to memcpy() in order to avoid strict-aliasing warnings */ - memset(&state, 0, sizeof(state)-8); /* do not write into reserved, for future removal */ - state.v1 = seed + PRIME64_1 + PRIME64_2; - state.v2 = seed + PRIME64_2; - state.v3 = seed + 0; - state.v4 = seed - PRIME64_1; - memcpy(statePtr, &state, sizeof(state)); - return XXH_OK; -} - - -FORCE_INLINE_TEMPLATE XXH_errorcode XXH32_update_endian (XXH32_state_t* state, const void* input, size_t len, XXH_endianess endian) -{ - const BYTE* p = (const BYTE*)input; - const BYTE* const bEnd = p + len; - -#ifdef XXH_ACCEPT_NULL_INPUT_POINTER - if (input==NULL) return XXH_ERROR; -#endif - - state->total_len_32 += (unsigned)len; - state->large_len |= (len>=16) | (state->total_len_32>=16); - - if (state->memsize + len < 16) { /* fill in tmp buffer */ - XXH_memcpy((BYTE*)(state->mem32) + state->memsize, input, len); - state->memsize += (unsigned)len; - return XXH_OK; - } - - if (state->memsize) { /* some data left from previous update */ - XXH_memcpy((BYTE*)(state->mem32) + state->memsize, input, 16-state->memsize); - { const U32* p32 = state->mem32; - state->v1 = XXH32_round(state->v1, XXH_readLE32(p32, endian)); p32++; - state->v2 = XXH32_round(state->v2, XXH_readLE32(p32, endian)); p32++; - state->v3 = XXH32_round(state->v3, XXH_readLE32(p32, endian)); p32++; - state->v4 = XXH32_round(state->v4, XXH_readLE32(p32, endian)); p32++; - } - p += 16-state->memsize; - state->memsize = 0; - } - - if (p <= bEnd-16) { - const BYTE* const limit = bEnd - 16; - U32 v1 = state->v1; - U32 v2 = state->v2; - U32 v3 = state->v3; - U32 v4 = state->v4; - - do { - v1 = XXH32_round(v1, XXH_readLE32(p, endian)); p+=4; - v2 = XXH32_round(v2, XXH_readLE32(p, endian)); p+=4; - v3 = XXH32_round(v3, XXH_readLE32(p, endian)); p+=4; - v4 = XXH32_round(v4, XXH_readLE32(p, endian)); p+=4; - } while (p<=limit); - - state->v1 = v1; - state->v2 = v2; - state->v3 = v3; - state->v4 = v4; - } - - if (p < bEnd) { - XXH_memcpy(state->mem32, p, (size_t)(bEnd-p)); - state->memsize = (unsigned)(bEnd-p); - } - - return XXH_OK; -} - -XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* state_in, const void* input, size_t len) -{ - XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN; - - if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT) - return XXH32_update_endian(state_in, input, len, XXH_littleEndian); - else - return XXH32_update_endian(state_in, input, len, XXH_bigEndian); -} - - - -FORCE_INLINE_TEMPLATE U32 XXH32_digest_endian (const XXH32_state_t* state, XXH_endianess endian) -{ - const BYTE * p = (const BYTE*)state->mem32; - const BYTE* const bEnd = (const BYTE*)(state->mem32) + state->memsize; - U32 h32; - - if (state->large_len) { - h32 = XXH_rotl32(state->v1, 1) + XXH_rotl32(state->v2, 7) + XXH_rotl32(state->v3, 12) + XXH_rotl32(state->v4, 18); - } else { - h32 = state->v3 /* == seed */ + PRIME32_5; - } - - h32 += state->total_len_32; - - while (p+4<=bEnd) { - h32 += XXH_readLE32(p, endian) * PRIME32_3; - h32 = XXH_rotl32(h32, 17) * PRIME32_4; - p+=4; - } - - while (p> 15; - h32 *= PRIME32_2; - h32 ^= h32 >> 13; - h32 *= PRIME32_3; - h32 ^= h32 >> 16; - - return h32; -} - - -XXH_PUBLIC_API unsigned int XXH32_digest (const XXH32_state_t* state_in) -{ - XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN; - - if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT) - return XXH32_digest_endian(state_in, XXH_littleEndian); - else - return XXH32_digest_endian(state_in, XXH_bigEndian); -} - - - -/* **** XXH64 **** */ - -FORCE_INLINE_TEMPLATE XXH_errorcode XXH64_update_endian (XXH64_state_t* state, const void* input, size_t len, XXH_endianess endian) -{ - const BYTE* p = (const BYTE*)input; - const BYTE* const bEnd = p + len; - -#ifdef XXH_ACCEPT_NULL_INPUT_POINTER - if (input==NULL) return XXH_ERROR; -#endif - - state->total_len += len; - - if (state->memsize + len < 32) { /* fill in tmp buffer */ - if (input != NULL) { - XXH_memcpy(((BYTE*)state->mem64) + state->memsize, input, len); - } - state->memsize += (U32)len; - return XXH_OK; - } - - if (state->memsize) { /* tmp buffer is full */ - XXH_memcpy(((BYTE*)state->mem64) + state->memsize, input, 32-state->memsize); - state->v1 = XXH64_round(state->v1, XXH_readLE64(state->mem64+0, endian)); - state->v2 = XXH64_round(state->v2, XXH_readLE64(state->mem64+1, endian)); - state->v3 = XXH64_round(state->v3, XXH_readLE64(state->mem64+2, endian)); - state->v4 = XXH64_round(state->v4, XXH_readLE64(state->mem64+3, endian)); - p += 32-state->memsize; - state->memsize = 0; - } - - if (p+32 <= bEnd) { - const BYTE* const limit = bEnd - 32; - U64 v1 = state->v1; - U64 v2 = state->v2; - U64 v3 = state->v3; - U64 v4 = state->v4; - - do { - v1 = XXH64_round(v1, XXH_readLE64(p, endian)); p+=8; - v2 = XXH64_round(v2, XXH_readLE64(p, endian)); p+=8; - v3 = XXH64_round(v3, XXH_readLE64(p, endian)); p+=8; - v4 = XXH64_round(v4, XXH_readLE64(p, endian)); p+=8; - } while (p<=limit); - - state->v1 = v1; - state->v2 = v2; - state->v3 = v3; - state->v4 = v4; - } - - if (p < bEnd) { - XXH_memcpy(state->mem64, p, (size_t)(bEnd-p)); - state->memsize = (unsigned)(bEnd-p); - } - - return XXH_OK; -} - -XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* state_in, const void* input, size_t len) -{ - XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN; - - if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT) - return XXH64_update_endian(state_in, input, len, XXH_littleEndian); - else - return XXH64_update_endian(state_in, input, len, XXH_bigEndian); -} - - - -FORCE_INLINE_TEMPLATE U64 XXH64_digest_endian (const XXH64_state_t* state, XXH_endianess endian) -{ - const BYTE * p = (const BYTE*)state->mem64; - const BYTE* const bEnd = (const BYTE*)state->mem64 + state->memsize; - U64 h64; - - if (state->total_len >= 32) { - U64 const v1 = state->v1; - U64 const v2 = state->v2; - U64 const v3 = state->v3; - U64 const v4 = state->v4; - - h64 = XXH_rotl64(v1, 1) + XXH_rotl64(v2, 7) + XXH_rotl64(v3, 12) + XXH_rotl64(v4, 18); - h64 = XXH64_mergeRound(h64, v1); - h64 = XXH64_mergeRound(h64, v2); - h64 = XXH64_mergeRound(h64, v3); - h64 = XXH64_mergeRound(h64, v4); - } else { - h64 = state->v3 + PRIME64_5; - } - - h64 += (U64) state->total_len; - - while (p+8<=bEnd) { - U64 const k1 = XXH64_round(0, XXH_readLE64(p, endian)); - h64 ^= k1; - h64 = XXH_rotl64(h64,27) * PRIME64_1 + PRIME64_4; - p+=8; - } - - if (p+4<=bEnd) { - h64 ^= (U64)(XXH_readLE32(p, endian)) * PRIME64_1; - h64 = XXH_rotl64(h64, 23) * PRIME64_2 + PRIME64_3; - p+=4; - } - - while (p> 33; - h64 *= PRIME64_2; - h64 ^= h64 >> 29; - h64 *= PRIME64_3; - h64 ^= h64 >> 32; - - return h64; -} - - -XXH_PUBLIC_API unsigned long long XXH64_digest (const XXH64_state_t* state_in) -{ - XXH_endianess endian_detected = (XXH_endianess)XXH_CPU_LITTLE_ENDIAN; - - if ((endian_detected==XXH_littleEndian) || XXH_FORCE_NATIVE_FORMAT) - return XXH64_digest_endian(state_in, XXH_littleEndian); - else - return XXH64_digest_endian(state_in, XXH_bigEndian); -} - - -/* ************************** -* Canonical representation -****************************/ - -/*! Default XXH result types are basic unsigned 32 and 64 bits. -* The canonical representation follows human-readable write convention, aka big-endian (large digits first). -* These functions allow transformation of hash result into and from its canonical format. -* This way, hash values can be written into a file or buffer, and remain comparable across different systems and programs. -*/ - -XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash) -{ - XXH_STATIC_ASSERT(sizeof(XXH32_canonical_t) == sizeof(XXH32_hash_t)); - if (XXH_CPU_LITTLE_ENDIAN) hash = XXH_swap32(hash); - memcpy(dst, &hash, sizeof(*dst)); -} - -XXH_PUBLIC_API void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash) -{ - XXH_STATIC_ASSERT(sizeof(XXH64_canonical_t) == sizeof(XXH64_hash_t)); - if (XXH_CPU_LITTLE_ENDIAN) hash = XXH_swap64(hash); - memcpy(dst, &hash, sizeof(*dst)); -} - -XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src) -{ - return XXH_readBE32(src); -} - -XXH_PUBLIC_API XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src) -{ - return XXH_readBE64(src); -} diff --git a/lib/SZ3/tools/zstd/common/xxhash.h b/lib/SZ3/tools/zstd/common/xxhash.h deleted file mode 100644 index 4207eba8..00000000 --- a/lib/SZ3/tools/zstd/common/xxhash.h +++ /dev/null @@ -1,285 +0,0 @@ -/* - * xxHash - Extremely Fast Hash algorithm - * Header File - * Copyright (c) 2012-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - xxHash source repository : https://github.com/Cyan4973/xxHash - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -*/ - -/* Notice extracted from xxHash homepage : - -xxHash is an extremely fast Hash algorithm, running at RAM speed limits. -It also successfully passes all tests from the SMHasher suite. - -Comparison (single thread, Windows Seven 32 bits, using SMHasher on a Core 2 Duo @3GHz) - -Name Speed Q.Score Author -xxHash 5.4 GB/s 10 -CrapWow 3.2 GB/s 2 Andrew -MumurHash 3a 2.7 GB/s 10 Austin Appleby -SpookyHash 2.0 GB/s 10 Bob Jenkins -SBox 1.4 GB/s 9 Bret Mulvey -Lookup3 1.2 GB/s 9 Bob Jenkins -SuperFastHash 1.2 GB/s 1 Paul Hsieh -CityHash64 1.05 GB/s 10 Pike & Alakuijala -FNV 0.55 GB/s 5 Fowler, Noll, Vo -CRC32 0.43 GB/s 9 -MD5-32 0.33 GB/s 10 Ronald L. Rivest -SHA1-32 0.28 GB/s 10 - -Q.Score is a measure of quality of the hash function. -It depends on successfully passing SMHasher test set. -10 is a perfect score. - -A 64-bits version, named XXH64, is available since r35. -It offers much better speed, but for 64-bits applications only. -Name Speed on 64 bits Speed on 32 bits -XXH64 13.8 GB/s 1.9 GB/s -XXH32 6.8 GB/s 6.0 GB/s -*/ - -#if defined (__cplusplus) -extern "C" { -#endif - -#ifndef XXHASH_H_5627135585666179 -#define XXHASH_H_5627135585666179 1 - - -/* **************************** -* Definitions -******************************/ -#include /* size_t */ -typedef enum { XXH_OK=0, XXH_ERROR } XXH_errorcode; - - -/* **************************** -* API modifier -******************************/ -/** XXH_PRIVATE_API -* This is useful if you want to include xxhash functions in `static` mode -* in order to inline them, and remove their symbol from the public list. -* Methodology : -* #define XXH_PRIVATE_API -* #include "xxhash.h" -* `xxhash.c` is automatically included. -* It's not useful to compile and link it as a separate module anymore. -*/ -#ifdef XXH_PRIVATE_API -# ifndef XXH_STATIC_LINKING_ONLY -# define XXH_STATIC_LINKING_ONLY -# endif -# if defined(__GNUC__) -# define XXH_PUBLIC_API static __inline __attribute__((unused)) -# elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -# define XXH_PUBLIC_API static inline -# elif defined(_MSC_VER) -# define XXH_PUBLIC_API static __inline -# else -# define XXH_PUBLIC_API static /* this version may generate warnings for unused static functions; disable the relevant warning */ -# endif -#else -# define XXH_PUBLIC_API /* do nothing */ -#endif /* XXH_PRIVATE_API */ - -/*!XXH_NAMESPACE, aka Namespace Emulation : - -If you want to include _and expose_ xxHash functions from within your own library, -but also want to avoid symbol collisions with another library which also includes xxHash, - -you can use XXH_NAMESPACE, to automatically prefix any public symbol from xxhash library -with the value of XXH_NAMESPACE (so avoid to keep it NULL and avoid numeric values). - -Note that no change is required within the calling program as long as it includes `xxhash.h` : -regular symbol name will be automatically translated by this header. -*/ -#ifdef XXH_NAMESPACE -# define XXH_CAT(A,B) A##B -# define XXH_NAME2(A,B) XXH_CAT(A,B) -# define XXH32 XXH_NAME2(XXH_NAMESPACE, XXH32) -# define XXH64 XXH_NAME2(XXH_NAMESPACE, XXH64) -# define XXH_versionNumber XXH_NAME2(XXH_NAMESPACE, XXH_versionNumber) -# define XXH32_createState XXH_NAME2(XXH_NAMESPACE, XXH32_createState) -# define XXH64_createState XXH_NAME2(XXH_NAMESPACE, XXH64_createState) -# define XXH32_freeState XXH_NAME2(XXH_NAMESPACE, XXH32_freeState) -# define XXH64_freeState XXH_NAME2(XXH_NAMESPACE, XXH64_freeState) -# define XXH32_reset XXH_NAME2(XXH_NAMESPACE, XXH32_reset) -# define XXH64_reset XXH_NAME2(XXH_NAMESPACE, XXH64_reset) -# define XXH32_update XXH_NAME2(XXH_NAMESPACE, XXH32_update) -# define XXH64_update XXH_NAME2(XXH_NAMESPACE, XXH64_update) -# define XXH32_digest XXH_NAME2(XXH_NAMESPACE, XXH32_digest) -# define XXH64_digest XXH_NAME2(XXH_NAMESPACE, XXH64_digest) -# define XXH32_copyState XXH_NAME2(XXH_NAMESPACE, XXH32_copyState) -# define XXH64_copyState XXH_NAME2(XXH_NAMESPACE, XXH64_copyState) -# define XXH32_canonicalFromHash XXH_NAME2(XXH_NAMESPACE, XXH32_canonicalFromHash) -# define XXH64_canonicalFromHash XXH_NAME2(XXH_NAMESPACE, XXH64_canonicalFromHash) -# define XXH32_hashFromCanonical XXH_NAME2(XXH_NAMESPACE, XXH32_hashFromCanonical) -# define XXH64_hashFromCanonical XXH_NAME2(XXH_NAMESPACE, XXH64_hashFromCanonical) -#endif - - -/* ************************************* -* Version -***************************************/ -#define XXH_VERSION_MAJOR 0 -#define XXH_VERSION_MINOR 6 -#define XXH_VERSION_RELEASE 2 -#define XXH_VERSION_NUMBER (XXH_VERSION_MAJOR *100*100 + XXH_VERSION_MINOR *100 + XXH_VERSION_RELEASE) -XXH_PUBLIC_API unsigned XXH_versionNumber (void); - - -/* **************************** -* Simple Hash Functions -******************************/ -typedef unsigned int XXH32_hash_t; -typedef unsigned long long XXH64_hash_t; - -XXH_PUBLIC_API XXH32_hash_t XXH32 (const void* input, size_t length, unsigned int seed); -XXH_PUBLIC_API XXH64_hash_t XXH64 (const void* input, size_t length, unsigned long long seed); - -/*! -XXH32() : - Calculate the 32-bits hash of sequence "length" bytes stored at memory address "input". - The memory between input & input+length must be valid (allocated and read-accessible). - "seed" can be used to alter the result predictably. - Speed on Core 2 Duo @ 3 GHz (single thread, SMHasher benchmark) : 5.4 GB/s -XXH64() : - Calculate the 64-bits hash of sequence of length "len" stored at memory address "input". - "seed" can be used to alter the result predictably. - This function runs 2x faster on 64-bits systems, but slower on 32-bits systems (see benchmark). -*/ - - -/* **************************** -* Streaming Hash Functions -******************************/ -typedef struct XXH32_state_s XXH32_state_t; /* incomplete type */ -typedef struct XXH64_state_s XXH64_state_t; /* incomplete type */ - -/*! State allocation, compatible with dynamic libraries */ - -XXH_PUBLIC_API XXH32_state_t* XXH32_createState(void); -XXH_PUBLIC_API XXH_errorcode XXH32_freeState(XXH32_state_t* statePtr); - -XXH_PUBLIC_API XXH64_state_t* XXH64_createState(void); -XXH_PUBLIC_API XXH_errorcode XXH64_freeState(XXH64_state_t* statePtr); - - -/* hash streaming */ - -XXH_PUBLIC_API XXH_errorcode XXH32_reset (XXH32_state_t* statePtr, unsigned int seed); -XXH_PUBLIC_API XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t length); -XXH_PUBLIC_API XXH32_hash_t XXH32_digest (const XXH32_state_t* statePtr); - -XXH_PUBLIC_API XXH_errorcode XXH64_reset (XXH64_state_t* statePtr, unsigned long long seed); -XXH_PUBLIC_API XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t length); -XXH_PUBLIC_API XXH64_hash_t XXH64_digest (const XXH64_state_t* statePtr); - -/* -These functions generate the xxHash of an input provided in multiple segments. -Note that, for small input, they are slower than single-call functions, due to state management. -For small input, prefer `XXH32()` and `XXH64()` . - -XXH state must first be allocated, using XXH*_createState() . - -Start a new hash by initializing state with a seed, using XXH*_reset(). - -Then, feed the hash state by calling XXH*_update() as many times as necessary. -Obviously, input must be allocated and read accessible. -The function returns an error code, with 0 meaning OK, and any other value meaning there is an error. - -Finally, a hash value can be produced anytime, by using XXH*_digest(). -This function returns the nn-bits hash as an int or long long. - -It's still possible to continue inserting input into the hash state after a digest, -and generate some new hashes later on, by calling again XXH*_digest(). - -When done, free XXH state space if it was allocated dynamically. -*/ - - -/* ************************** -* Utils -****************************/ -#if !(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) /* ! C99 */ -# define restrict /* disable restrict */ -#endif - -XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dst_state, const XXH32_state_t* restrict src_state); -XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* restrict dst_state, const XXH64_state_t* restrict src_state); - - -/* ************************** -* Canonical representation -****************************/ -/* Default result type for XXH functions are primitive unsigned 32 and 64 bits. -* The canonical representation uses human-readable write convention, aka big-endian (large digits first). -* These functions allow transformation of hash result into and from its canonical format. -* This way, hash values can be written into a file / memory, and remain comparable on different systems and programs. -*/ -typedef struct { unsigned char digest[4]; } XXH32_canonical_t; -typedef struct { unsigned char digest[8]; } XXH64_canonical_t; - -XXH_PUBLIC_API void XXH32_canonicalFromHash(XXH32_canonical_t* dst, XXH32_hash_t hash); -XXH_PUBLIC_API void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash); - -XXH_PUBLIC_API XXH32_hash_t XXH32_hashFromCanonical(const XXH32_canonical_t* src); -XXH_PUBLIC_API XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src); - -#endif /* XXHASH_H_5627135585666179 */ - - - -/* ================================================================================================ - This section contains definitions which are not guaranteed to remain stable. - They may change in future versions, becoming incompatible with a different version of the library. - They shall only be used with static linking. - Never use these definitions in association with dynamic linking ! -=================================================================================================== */ -#if defined(XXH_STATIC_LINKING_ONLY) && !defined(XXH_STATIC_H_3543687687345) -#define XXH_STATIC_H_3543687687345 - -/* These definitions are only meant to allow allocation of XXH state - statically, on stack, or in a struct for example. - Do not use members directly. */ - - struct XXH32_state_s { - unsigned total_len_32; - unsigned large_len; - unsigned v1; - unsigned v2; - unsigned v3; - unsigned v4; - unsigned mem32[4]; /* buffer defined as U32 for alignment */ - unsigned memsize; - unsigned reserved; /* never read nor write, will be removed in a future version */ - }; /* typedef'd to XXH32_state_t */ - - struct XXH64_state_s { - unsigned long long total_len; - unsigned long long v1; - unsigned long long v2; - unsigned long long v3; - unsigned long long v4; - unsigned long long mem64[4]; /* buffer defined as U64 for alignment */ - unsigned memsize; - unsigned reserved[2]; /* never read nor write, will be removed in a future version */ - }; /* typedef'd to XXH64_state_t */ - - -# ifdef XXH_PRIVATE_API -# include "xxhash.c" /* include xxhash functions as `static`, for inlining */ -# endif - -#endif /* XXH_STATIC_LINKING_ONLY && XXH_STATIC_H_3543687687345 */ - - -#if defined (__cplusplus) -} -#endif diff --git a/lib/SZ3/tools/zstd/common/zstd_common.c b/lib/SZ3/tools/zstd/common/zstd_common.c deleted file mode 100644 index 91fe3323..00000000 --- a/lib/SZ3/tools/zstd/common/zstd_common.c +++ /dev/null @@ -1,83 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - - -/*-************************************* -* Dependencies -***************************************/ -#include /* malloc, calloc, free */ -#include /* memset */ -#include "error_private.h" -#include "zstd_internal.h" - - -/*-**************************************** -* Version -******************************************/ -unsigned ZSTD_versionNumber(void) { return ZSTD_VERSION_NUMBER; } - -const char* ZSTD_versionString(void) { return ZSTD_VERSION_STRING; } - - -/*-**************************************** -* ZSTD Error Management -******************************************/ -#undef ZSTD_isError /* defined within zstd_internal.h */ -/*! ZSTD_isError() : - * tells if a return value is an error code - * symbol is required for external callers */ -unsigned ZSTD_isError(size_t code) { return ERR_isError(code); } - -/*! ZSTD_getErrorName() : - * provides error code string from function result (useful for debugging) */ -const char* ZSTD_getErrorName(size_t code) { return ERR_getErrorName(code); } - -/*! ZSTD_getError() : - * convert a `size_t` function result into a proper ZSTD_errorCode enum */ -ZSTD_ErrorCode ZSTD_getErrorCode(size_t code) { return ERR_getErrorCode(code); } - -/*! ZSTD_getErrorString() : - * provides error code string from enum */ -const char* ZSTD_getErrorString(ZSTD_ErrorCode code) { return ERR_getErrorString(code); } - - - -/*=************************************************************** -* Custom allocator -****************************************************************/ -void* ZSTD_malloc(size_t size, ZSTD_customMem customMem) -{ - if (customMem.customAlloc) - return customMem.customAlloc(customMem.opaque, size); - return malloc(size); -} - -void* ZSTD_calloc(size_t size, ZSTD_customMem customMem) -{ - if (customMem.customAlloc) { - /* calloc implemented as malloc+memset; - * not as efficient as calloc, but next best guess for custom malloc */ - void* const ptr = customMem.customAlloc(customMem.opaque, size); - memset(ptr, 0, size); - return ptr; - } - return calloc(1, size); -} - -void ZSTD_free(void* ptr, ZSTD_customMem customMem) -{ - if (ptr!=NULL) { - if (customMem.customFree) - customMem.customFree(customMem.opaque, ptr); - else - free(ptr); - } -} diff --git a/lib/SZ3/tools/zstd/common/zstd_errors.h b/lib/SZ3/tools/zstd/common/zstd_errors.h deleted file mode 100644 index 998398e7..00000000 --- a/lib/SZ3/tools/zstd/common/zstd_errors.h +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_ERRORS_H_398273423 -#define ZSTD_ERRORS_H_398273423 - -#if defined (__cplusplus) -extern "C" { -#endif - -/*===== dependency =====*/ -#include /* size_t */ - - -/* ===== ZSTDERRORLIB_API : control library symbols visibility ===== */ -#ifndef ZSTDERRORLIB_VISIBILITY -# if defined(__GNUC__) && (__GNUC__ >= 4) -# define ZSTDERRORLIB_VISIBILITY __attribute__ ((visibility ("default"))) -# else -# define ZSTDERRORLIB_VISIBILITY -# endif -#endif -#if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1) -# define ZSTDERRORLIB_API __declspec(dllexport) ZSTDERRORLIB_VISIBILITY -#elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1) -# define ZSTDERRORLIB_API __declspec(dllimport) ZSTDERRORLIB_VISIBILITY /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/ -#else -# define ZSTDERRORLIB_API ZSTDERRORLIB_VISIBILITY -#endif - -/*-********************************************* - * Error codes list - *-********************************************* - * Error codes _values_ are pinned down since v1.3.1 only. - * Therefore, don't rely on values if you may link to any version < v1.3.1. - * - * Only values < 100 are considered stable. - * - * note 1 : this API shall be used with static linking only. - * dynamic linking is not yet officially supported. - * note 2 : Prefer relying on the enum than on its value whenever possible - * This is the only supported way to use the error list < v1.3.1 - * note 3 : ZSTD_isError() is always correct, whatever the library version. - **********************************************/ -typedef enum { - ZSTD_error_no_error = 0, - ZSTD_error_GENERIC = 1, - ZSTD_error_prefix_unknown = 10, - ZSTD_error_version_unsupported = 12, - ZSTD_error_frameParameter_unsupported = 14, - ZSTD_error_frameParameter_windowTooLarge = 16, - ZSTD_error_corruption_detected = 20, - ZSTD_error_checksum_wrong = 22, - ZSTD_error_dictionary_corrupted = 30, - ZSTD_error_dictionary_wrong = 32, - ZSTD_error_dictionaryCreation_failed = 34, - ZSTD_error_parameter_unsupported = 40, - ZSTD_error_parameter_outOfBound = 42, - ZSTD_error_tableLog_tooLarge = 44, - ZSTD_error_maxSymbolValue_tooLarge = 46, - ZSTD_error_maxSymbolValue_tooSmall = 48, - ZSTD_error_stage_wrong = 60, - ZSTD_error_init_missing = 62, - ZSTD_error_memory_allocation = 64, - ZSTD_error_workSpace_tooSmall= 66, - ZSTD_error_dstSize_tooSmall = 70, - ZSTD_error_srcSize_wrong = 72, - ZSTD_error_dstBuffer_null = 74, - /* following error codes are __NOT STABLE__, they can be removed or changed in future versions */ - ZSTD_error_frameIndex_tooLarge = 100, - ZSTD_error_seekableIO = 102, - ZSTD_error_dstBuffer_wrong = 104, - ZSTD_error_maxCode = 120 /* never EVER use this value directly, it can change in future versions! Use ZSTD_isError() instead */ -} ZSTD_ErrorCode; - -/*! ZSTD_getErrorCode() : - convert a `size_t` function result into a `ZSTD_ErrorCode` enum type, - which can be used to compare with enum list published above */ -ZSTDERRORLIB_API ZSTD_ErrorCode ZSTD_getErrorCode(size_t functionResult); -ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /**< Same as ZSTD_getErrorName, but using a `ZSTD_ErrorCode` enum argument */ - - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_ERRORS_H_398273423 */ diff --git a/lib/SZ3/tools/zstd/common/zstd_internal.h b/lib/SZ3/tools/zstd/common/zstd_internal.h deleted file mode 100644 index 3bc7e55a..00000000 --- a/lib/SZ3/tools/zstd/common/zstd_internal.h +++ /dev/null @@ -1,447 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_CCOMMON_H_MODULE -#define ZSTD_CCOMMON_H_MODULE - -/* this module contains definitions which must be identical - * across compression, decompression and dictBuilder. - * It also contains a few functions useful to at least 2 of them - * and which benefit from being inlined */ - -/*-************************************* -* Dependencies -***************************************/ -#ifdef __aarch64__ -#include -#endif -#include "compiler.h" -#include "mem.h" -#include "debug.h" /* assert, DEBUGLOG, RAWLOG, g_debuglevel */ -#include "error_private.h" -#define ZSTD_STATIC_LINKING_ONLY -#include "../zstd.h" -#define FSE_STATIC_LINKING_ONLY -#include "fse.h" -#define HUF_STATIC_LINKING_ONLY -#include "huf.h" -#ifndef XXH_STATIC_LINKING_ONLY -# define XXH_STATIC_LINKING_ONLY /* XXH64_state_t */ -#endif -#include "xxhash.h" /* XXH_reset, update, digest */ - -#if defined (__cplusplus) -extern "C" { -#endif - -/* ---- static assert (debug) --- */ -#define ZSTD_STATIC_ASSERT(c) DEBUG_STATIC_ASSERT(c) -#define ZSTD_isError ERR_isError /* for inlining */ -#define FSE_isError ERR_isError -#define HUF_isError ERR_isError - - -/*-************************************* -* shared macros -***************************************/ -#undef MIN -#undef MAX -#define MIN(a,b) ((a)<(b) ? (a) : (b)) -#define MAX(a,b) ((a)>(b) ? (a) : (b)) - -/** - * Ignore: this is an internal helper. - * - * This is a helper function to help force C99-correctness during compilation. - * Under strict compilation modes, variadic macro arguments can't be empty. - * However, variadic function arguments can be. Using a function therefore lets - * us statically check that at least one (string) argument was passed, - * independent of the compilation flags. - */ -static INLINE_KEYWORD UNUSED_ATTR -void _force_has_format_string(const char *format, ...) { - (void)format; -} - -/** - * Ignore: this is an internal helper. - * - * We want to force this function invocation to be syntactically correct, but - * we don't want to force runtime evaluation of its arguments. - */ -#define _FORCE_HAS_FORMAT_STRING(...) \ - if (0) { \ - _force_has_format_string(__VA_ARGS__); \ - } - -/** - * Return the specified error if the condition evaluates to true. - * - * In debug modes, prints additional information. - * In order to do that (particularly, printing the conditional that failed), - * this can't just wrap RETURN_ERROR(). - */ -#define RETURN_ERROR_IF(cond, err, ...) \ - if (cond) { \ - RAWLOG(3, "%s:%d: ERROR!: check %s failed, returning %s", \ - __FILE__, __LINE__, ZSTD_QUOTE(cond), ZSTD_QUOTE(ERROR(err))); \ - _FORCE_HAS_FORMAT_STRING(__VA_ARGS__); \ - RAWLOG(3, ": " __VA_ARGS__); \ - RAWLOG(3, "\n"); \ - return ERROR(err); \ - } - -/** - * Unconditionally return the specified error. - * - * In debug modes, prints additional information. - */ -#define RETURN_ERROR(err, ...) \ - do { \ - RAWLOG(3, "%s:%d: ERROR!: unconditional check failed, returning %s", \ - __FILE__, __LINE__, ZSTD_QUOTE(ERROR(err))); \ - _FORCE_HAS_FORMAT_STRING(__VA_ARGS__); \ - RAWLOG(3, ": " __VA_ARGS__); \ - RAWLOG(3, "\n"); \ - return ERROR(err); \ - } while(0); - -/** - * If the provided expression evaluates to an error code, returns that error code. - * - * In debug modes, prints additional information. - */ -#define FORWARD_IF_ERROR(err, ...) \ - do { \ - size_t const err_code = (err); \ - if (ERR_isError(err_code)) { \ - RAWLOG(3, "%s:%d: ERROR!: forwarding error in %s: %s", \ - __FILE__, __LINE__, ZSTD_QUOTE(err), ERR_getErrorName(err_code)); \ - _FORCE_HAS_FORMAT_STRING(__VA_ARGS__); \ - RAWLOG(3, ": " __VA_ARGS__); \ - RAWLOG(3, "\n"); \ - return err_code; \ - } \ - } while(0); - - -/*-************************************* -* Common constants -***************************************/ -#define ZSTD_OPT_NUM (1<<12) - -#define ZSTD_REP_NUM 3 /* number of repcodes */ -#define ZSTD_REP_MOVE (ZSTD_REP_NUM-1) -static const U32 repStartValue[ZSTD_REP_NUM] = { 1, 4, 8 }; - -#define KB *(1 <<10) -#define MB *(1 <<20) -#define GB *(1U<<30) - -#define BIT7 128 -#define BIT6 64 -#define BIT5 32 -#define BIT4 16 -#define BIT1 2 -#define BIT0 1 - -#define ZSTD_WINDOWLOG_ABSOLUTEMIN 10 -static const size_t ZSTD_fcs_fieldSize[4] = { 0, 2, 4, 8 }; -static const size_t ZSTD_did_fieldSize[4] = { 0, 1, 2, 4 }; - -#define ZSTD_FRAMEIDSIZE 4 /* magic number size */ - -#define ZSTD_BLOCKHEADERSIZE 3 /* C standard doesn't allow `static const` variable to be init using another `static const` variable */ -static const size_t ZSTD_blockHeaderSize = ZSTD_BLOCKHEADERSIZE; -typedef enum { bt_raw, bt_rle, bt_compressed, bt_reserved } blockType_e; - -#define ZSTD_FRAMECHECKSUMSIZE 4 - -#define MIN_SEQUENCES_SIZE 1 /* nbSeq==0 */ -#define MIN_CBLOCK_SIZE (1 /*litCSize*/ + 1 /* RLE or RAW */ + MIN_SEQUENCES_SIZE /* nbSeq==0 */) /* for a non-null block */ - -#define HufLog 12 -typedef enum { set_basic, set_rle, set_compressed, set_repeat } symbolEncodingType_e; - -#define LONGNBSEQ 0x7F00 - -#define MINMATCH 3 - -#define Litbits 8 -#define MaxLit ((1<= 8 || (ovtype == ZSTD_no_overlap && diff <= -WILDCOPY_VECLEN)); - - if (ovtype == ZSTD_overlap_src_before_dst && diff < WILDCOPY_VECLEN) { - /* Handle short offset copies. */ - do { - COPY8(op, ip) - } while (op < oend); - } else { - assert(diff >= WILDCOPY_VECLEN || diff <= -WILDCOPY_VECLEN); - /* Separate out the first COPY16() call because the copy length is - * almost certain to be short, so the branches have different - * probabilities. Since it is almost certain to be short, only do - * one COPY16() in the first call. Then, do two calls per loop since - * at that point it is more likely to have a high trip count. - */ -#ifndef __aarch64__ - do { - COPY16(op, ip); - } - while (op < oend); -#else - COPY16(op, ip); - if (op >= oend) return; - do { - COPY16(op, ip); - COPY16(op, ip); - } - while (op < oend); -#endif - } -} - -MEM_STATIC size_t ZSTD_limitCopy(void* dst, size_t dstCapacity, const void* src, size_t srcSize) -{ - size_t const length = MIN(dstCapacity, srcSize); - if (length > 0) { - memcpy(dst, src, length); - } - return length; -} - -/* define "workspace is too large" as this number of times larger than needed */ -#define ZSTD_WORKSPACETOOLARGE_FACTOR 3 - -/* when workspace is continuously too large - * during at least this number of times, - * context's memory usage is considered wasteful, - * because it's sized to handle a worst case scenario which rarely happens. - * In which case, resize it down to free some memory */ -#define ZSTD_WORKSPACETOOLARGE_MAXDURATION 128 - - -/*-******************************************* -* Private declarations -*********************************************/ -typedef struct seqDef_s { - U32 offset; - U16 litLength; - U16 matchLength; -} seqDef; - -typedef struct { - seqDef* sequencesStart; - seqDef* sequences; - BYTE* litStart; - BYTE* lit; - BYTE* llCode; - BYTE* mlCode; - BYTE* ofCode; - size_t maxNbSeq; - size_t maxNbLit; - U32 longLengthID; /* 0 == no longLength; 1 == Lit.longLength; 2 == Match.longLength; */ - U32 longLengthPos; -} seqStore_t; - -typedef struct { - U32 litLength; - U32 matchLength; -} ZSTD_sequenceLength; - -/** - * Returns the ZSTD_sequenceLength for the given sequences. It handles the decoding of long sequences - * indicated by longLengthPos and longLengthID, and adds MINMATCH back to matchLength. - */ -MEM_STATIC ZSTD_sequenceLength ZSTD_getSequenceLength(seqStore_t const* seqStore, seqDef const* seq) -{ - ZSTD_sequenceLength seqLen; - seqLen.litLength = seq->litLength; - seqLen.matchLength = seq->matchLength + MINMATCH; - if (seqStore->longLengthPos == (U32)(seq - seqStore->sequencesStart)) { - if (seqStore->longLengthID == 1) { - seqLen.litLength += 0xFFFF; - } - if (seqStore->longLengthID == 2) { - seqLen.matchLength += 0xFFFF; - } - } - return seqLen; -} - -/** - * Contains the compressed frame size and an upper-bound for the decompressed frame size. - * Note: before using `compressedSize`, check for errors using ZSTD_isError(). - * similarly, before using `decompressedBound`, check for errors using: - * `decompressedBound != ZSTD_CONTENTSIZE_ERROR` - */ -typedef struct { - size_t compressedSize; - unsigned long long decompressedBound; -} ZSTD_frameSizeInfo; /* decompress & legacy */ - -const seqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx); /* compress & dictBuilder */ -void ZSTD_seqToCodes(const seqStore_t* seqStorePtr); /* compress, dictBuilder, decodeCorpus (shouldn't get its definition from here) */ - -/* custom memory allocation functions */ -void* ZSTD_malloc(size_t size, ZSTD_customMem customMem); -void* ZSTD_calloc(size_t size, ZSTD_customMem customMem); -void ZSTD_free(void* ptr, ZSTD_customMem customMem); - - -MEM_STATIC U32 ZSTD_highbit32(U32 val) /* compress, dictBuilder, decodeCorpus */ -{ - assert(val != 0); - { -# if defined(_MSC_VER) /* Visual */ - unsigned long r=0; - return _BitScanReverse(&r, val) ? (unsigned)r : 0; -# elif defined(__GNUC__) && (__GNUC__ >= 3) /* GCC Intrinsic */ - return __builtin_clz (val) ^ 31; -# elif defined(__ICCARM__) /* IAR Intrinsic */ - return 31 - __CLZ(val); -# else /* Software version */ - static const U32 DeBruijnClz[32] = { 0, 9, 1, 10, 13, 21, 2, 29, 11, 14, 16, 18, 22, 25, 3, 30, 8, 12, 20, 28, 15, 17, 24, 7, 19, 27, 23, 6, 26, 5, 4, 31 }; - U32 v = val; - v |= v >> 1; - v |= v >> 2; - v |= v >> 4; - v |= v >> 8; - v |= v >> 16; - return DeBruijnClz[(v * 0x07C4ACDDU) >> 27]; -# endif - } -} - - -/* ZSTD_invalidateRepCodes() : - * ensures next compression will not use repcodes from previous block. - * Note : only works with regular variant; - * do not use with extDict variant ! */ -void ZSTD_invalidateRepCodes(ZSTD_CCtx* cctx); /* zstdmt, adaptive_compression (shouldn't get this definition from here) */ - - -typedef struct { - blockType_e blockType; - U32 lastBlock; - U32 origSize; -} blockProperties_t; /* declared here for decompress and fullbench */ - -/*! ZSTD_getcBlockSize() : - * Provides the size of compressed block from block header `src` */ -/* Used by: decompress, fullbench (does not get its definition from here) */ -size_t ZSTD_getcBlockSize(const void* src, size_t srcSize, - blockProperties_t* bpPtr); - -/*! ZSTD_decodeSeqHeaders() : - * decode sequence header from src */ -/* Used by: decompress, fullbench (does not get its definition from here) */ -size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeqPtr, - const void* src, size_t srcSize); - - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_CCOMMON_H_MODULE */ diff --git a/lib/SZ3/tools/zstd/compress/fse_compress.c b/lib/SZ3/tools/zstd/compress/fse_compress.c deleted file mode 100644 index a4275981..00000000 --- a/lib/SZ3/tools/zstd/compress/fse_compress.c +++ /dev/null @@ -1,698 +0,0 @@ -/* ****************************************************************** - * FSE : Finite State Entropy encoder - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - Public forum : https://groups.google.com/forum/#!forum/lz4c - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - -/* ************************************************************** -* Includes -****************************************************************/ -#include /* malloc, free, qsort */ -#include /* memcpy, memset */ -#include "../common/compiler.h" -#include "../common/mem.h" /* U32, U16, etc. */ -#include "../common/debug.h" /* assert, DEBUGLOG */ -#include "hist.h" /* HIST_count_wksp */ -#include "../common/bitstream.h" -#define FSE_STATIC_LINKING_ONLY -#include "../common/fse.h" -#include "../common/error_private.h" - - -/* ************************************************************** -* Error Management -****************************************************************/ -#define FSE_isError ERR_isError - - -/* ************************************************************** -* Templates -****************************************************************/ -/* - designed to be included - for type-specific functions (template emulation in C) - Objective is to write these functions only once, for improved maintenance -*/ - -/* safety checks */ -#ifndef FSE_FUNCTION_EXTENSION -# error "FSE_FUNCTION_EXTENSION must be defined" -#endif -#ifndef FSE_FUNCTION_TYPE -# error "FSE_FUNCTION_TYPE must be defined" -#endif - -/* Function names */ -#define FSE_CAT(X,Y) X##Y -#define FSE_FUNCTION_NAME(X,Y) FSE_CAT(X,Y) -#define FSE_TYPE_NAME(X,Y) FSE_CAT(X,Y) - - -/* Function templates */ - -/* FSE_buildCTable_wksp() : - * Same as FSE_buildCTable(), but using an externally allocated scratch buffer (`workSpace`). - * wkspSize should be sized to handle worst case situation, which is `1<>1 : 1) ; - FSE_symbolCompressionTransform* const symbolTT = (FSE_symbolCompressionTransform*) (FSCT); - U32 const step = FSE_TABLESTEP(tableSize); - U32 cumul[FSE_MAX_SYMBOL_VALUE+2]; - - FSE_FUNCTION_TYPE* const tableSymbol = (FSE_FUNCTION_TYPE*)workSpace; - U32 highThreshold = tableSize-1; - - /* CTable header */ - if (((size_t)1 << tableLog) * sizeof(FSE_FUNCTION_TYPE) > wkspSize) return ERROR(tableLog_tooLarge); - tableU16[-2] = (U16) tableLog; - tableU16[-1] = (U16) maxSymbolValue; - assert(tableLog < 16); /* required for threshold strategy to work */ - - /* For explanations on how to distribute symbol values over the table : - * http://fastcompression.blogspot.fr/2014/02/fse-distributing-symbol-values.html */ - - #ifdef __clang_analyzer__ - memset(tableSymbol, 0, sizeof(*tableSymbol) * tableSize); /* useless initialization, just to keep scan-build happy */ - #endif - - /* symbol start positions */ - { U32 u; - cumul[0] = 0; - for (u=1; u <= maxSymbolValue+1; u++) { - if (normalizedCounter[u-1]==-1) { /* Low proba symbol */ - cumul[u] = cumul[u-1] + 1; - tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1); - } else { - cumul[u] = cumul[u-1] + normalizedCounter[u-1]; - } } - cumul[maxSymbolValue+1] = tableSize+1; - } - - /* Spread symbols */ - { U32 position = 0; - U32 symbol; - for (symbol=0; symbol<=maxSymbolValue; symbol++) { - int nbOccurrences; - int const freq = normalizedCounter[symbol]; - for (nbOccurrences=0; nbOccurrences highThreshold) - position = (position + step) & tableMask; /* Low proba area */ - } } - - assert(position==0); /* Must have initialized all positions */ - } - - /* Build table */ - { U32 u; for (u=0; u> 3) + 3; - return maxSymbolValue ? maxHeaderSize : FSE_NCOUNTBOUND; /* maxSymbolValue==0 ? use default */ -} - -static size_t -FSE_writeNCount_generic (void* header, size_t headerBufferSize, - const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, - unsigned writeIsSafe) -{ - BYTE* const ostart = (BYTE*) header; - BYTE* out = ostart; - BYTE* const oend = ostart + headerBufferSize; - int nbBits; - const int tableSize = 1 << tableLog; - int remaining; - int threshold; - U32 bitStream = 0; - int bitCount = 0; - unsigned symbol = 0; - unsigned const alphabetSize = maxSymbolValue + 1; - int previousIs0 = 0; - - /* Table Size */ - bitStream += (tableLog-FSE_MIN_TABLELOG) << bitCount; - bitCount += 4; - - /* Init */ - remaining = tableSize+1; /* +1 for extra accuracy */ - threshold = tableSize; - nbBits = tableLog+1; - - while ((symbol < alphabetSize) && (remaining>1)) { /* stops at 1 */ - if (previousIs0) { - unsigned start = symbol; - while ((symbol < alphabetSize) && !normalizedCounter[symbol]) symbol++; - if (symbol == alphabetSize) break; /* incorrect distribution */ - while (symbol >= start+24) { - start+=24; - bitStream += 0xFFFFU << bitCount; - if ((!writeIsSafe) && (out > oend-2)) - return ERROR(dstSize_tooSmall); /* Buffer overflow */ - out[0] = (BYTE) bitStream; - out[1] = (BYTE)(bitStream>>8); - out+=2; - bitStream>>=16; - } - while (symbol >= start+3) { - start+=3; - bitStream += 3 << bitCount; - bitCount += 2; - } - bitStream += (symbol-start) << bitCount; - bitCount += 2; - if (bitCount>16) { - if ((!writeIsSafe) && (out > oend - 2)) - return ERROR(dstSize_tooSmall); /* Buffer overflow */ - out[0] = (BYTE)bitStream; - out[1] = (BYTE)(bitStream>>8); - out += 2; - bitStream >>= 16; - bitCount -= 16; - } } - { int count = normalizedCounter[symbol++]; - int const max = (2*threshold-1) - remaining; - remaining -= count < 0 ? -count : count; - count++; /* +1 for extra accuracy */ - if (count>=threshold) - count += max; /* [0..max[ [max..threshold[ (...) [threshold+max 2*threshold[ */ - bitStream += count << bitCount; - bitCount += nbBits; - bitCount -= (count>=1; } - } - if (bitCount>16) { - if ((!writeIsSafe) && (out > oend - 2)) - return ERROR(dstSize_tooSmall); /* Buffer overflow */ - out[0] = (BYTE)bitStream; - out[1] = (BYTE)(bitStream>>8); - out += 2; - bitStream >>= 16; - bitCount -= 16; - } } - - if (remaining != 1) - return ERROR(GENERIC); /* incorrect normalized distribution */ - assert(symbol <= alphabetSize); - - /* flush remaining bitStream */ - if ((!writeIsSafe) && (out > oend - 2)) - return ERROR(dstSize_tooSmall); /* Buffer overflow */ - out[0] = (BYTE)bitStream; - out[1] = (BYTE)(bitStream>>8); - out+= (bitCount+7) /8; - - return (out-ostart); -} - - -size_t FSE_writeNCount (void* buffer, size_t bufferSize, - const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) -{ - if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); /* Unsupported */ - if (tableLog < FSE_MIN_TABLELOG) return ERROR(GENERIC); /* Unsupported */ - - if (bufferSize < FSE_NCountWriteBound(maxSymbolValue, tableLog)) - return FSE_writeNCount_generic(buffer, bufferSize, normalizedCounter, maxSymbolValue, tableLog, 0); - - return FSE_writeNCount_generic(buffer, bufferSize, normalizedCounter, maxSymbolValue, tableLog, 1 /* write in buffer is safe */); -} - - -/*-************************************************************** -* FSE Compression Code -****************************************************************/ - -FSE_CTable* FSE_createCTable (unsigned maxSymbolValue, unsigned tableLog) -{ - size_t size; - if (tableLog > FSE_TABLELOG_ABSOLUTE_MAX) tableLog = FSE_TABLELOG_ABSOLUTE_MAX; - size = FSE_CTABLE_SIZE_U32 (tableLog, maxSymbolValue) * sizeof(U32); - return (FSE_CTable*)malloc(size); -} - -void FSE_freeCTable (FSE_CTable* ct) { free(ct); } - -/* provides the minimum logSize to safely represent a distribution */ -static unsigned FSE_minTableLog(size_t srcSize, unsigned maxSymbolValue) -{ - U32 minBitsSrc = BIT_highbit32((U32)(srcSize)) + 1; - U32 minBitsSymbols = BIT_highbit32(maxSymbolValue) + 2; - U32 minBits = minBitsSrc < minBitsSymbols ? minBitsSrc : minBitsSymbols; - assert(srcSize > 1); /* Not supported, RLE should be used instead */ - return minBits; -} - -unsigned FSE_optimalTableLog_internal(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue, unsigned minus) -{ - U32 maxBitsSrc = BIT_highbit32((U32)(srcSize - 1)) - minus; - U32 tableLog = maxTableLog; - U32 minBits = FSE_minTableLog(srcSize, maxSymbolValue); - assert(srcSize > 1); /* Not supported, RLE should be used instead */ - if (tableLog==0) tableLog = FSE_DEFAULT_TABLELOG; - if (maxBitsSrc < tableLog) tableLog = maxBitsSrc; /* Accuracy can be reduced */ - if (minBits > tableLog) tableLog = minBits; /* Need a minimum to safely represent all symbol values */ - if (tableLog < FSE_MIN_TABLELOG) tableLog = FSE_MIN_TABLELOG; - if (tableLog > FSE_MAX_TABLELOG) tableLog = FSE_MAX_TABLELOG; - return tableLog; -} - -unsigned FSE_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue) -{ - return FSE_optimalTableLog_internal(maxTableLog, srcSize, maxSymbolValue, 2); -} - - -/* Secondary normalization method. - To be used when primary method fails. */ - -static size_t FSE_normalizeM2(short* norm, U32 tableLog, const unsigned* count, size_t total, U32 maxSymbolValue) -{ - short const NOT_YET_ASSIGNED = -2; - U32 s; - U32 distributed = 0; - U32 ToDistribute; - - /* Init */ - U32 const lowThreshold = (U32)(total >> tableLog); - U32 lowOne = (U32)((total * 3) >> (tableLog + 1)); - - for (s=0; s<=maxSymbolValue; s++) { - if (count[s] == 0) { - norm[s]=0; - continue; - } - if (count[s] <= lowThreshold) { - norm[s] = -1; - distributed++; - total -= count[s]; - continue; - } - if (count[s] <= lowOne) { - norm[s] = 1; - distributed++; - total -= count[s]; - continue; - } - - norm[s]=NOT_YET_ASSIGNED; - } - ToDistribute = (1 << tableLog) - distributed; - - if (ToDistribute == 0) - return 0; - - if ((total / ToDistribute) > lowOne) { - /* risk of rounding to zero */ - lowOne = (U32)((total * 3) / (ToDistribute * 2)); - for (s=0; s<=maxSymbolValue; s++) { - if ((norm[s] == NOT_YET_ASSIGNED) && (count[s] <= lowOne)) { - norm[s] = 1; - distributed++; - total -= count[s]; - continue; - } } - ToDistribute = (1 << tableLog) - distributed; - } - - if (distributed == maxSymbolValue+1) { - /* all values are pretty poor; - probably incompressible data (should have already been detected); - find max, then give all remaining points to max */ - U32 maxV = 0, maxC = 0; - for (s=0; s<=maxSymbolValue; s++) - if (count[s] > maxC) { maxV=s; maxC=count[s]; } - norm[maxV] += (short)ToDistribute; - return 0; - } - - if (total == 0) { - /* all of the symbols were low enough for the lowOne or lowThreshold */ - for (s=0; ToDistribute > 0; s = (s+1)%(maxSymbolValue+1)) - if (norm[s] > 0) { ToDistribute--; norm[s]++; } - return 0; - } - - { U64 const vStepLog = 62 - tableLog; - U64 const mid = (1ULL << (vStepLog-1)) - 1; - U64 const rStep = ((((U64)1<> vStepLog); - U32 const sEnd = (U32)(end >> vStepLog); - U32 const weight = sEnd - sStart; - if (weight < 1) - return ERROR(GENERIC); - norm[s] = (short)weight; - tmpTotal = end; - } } } - - return 0; -} - - -size_t FSE_normalizeCount (short* normalizedCounter, unsigned tableLog, - const unsigned* count, size_t total, - unsigned maxSymbolValue) -{ - /* Sanity checks */ - if (tableLog==0) tableLog = FSE_DEFAULT_TABLELOG; - if (tableLog < FSE_MIN_TABLELOG) return ERROR(GENERIC); /* Unsupported size */ - if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); /* Unsupported size */ - if (tableLog < FSE_minTableLog(total, maxSymbolValue)) return ERROR(GENERIC); /* Too small tableLog, compression potentially impossible */ - - { static U32 const rtbTable[] = { 0, 473195, 504333, 520860, 550000, 700000, 750000, 830000 }; - U64 const scale = 62 - tableLog; - U64 const step = ((U64)1<<62) / total; /* <== here, one division ! */ - U64 const vStep = 1ULL<<(scale-20); - int stillToDistribute = 1<> tableLog); - - for (s=0; s<=maxSymbolValue; s++) { - if (count[s] == total) return 0; /* rle special case */ - if (count[s] == 0) { normalizedCounter[s]=0; continue; } - if (count[s] <= lowThreshold) { - normalizedCounter[s] = -1; - stillToDistribute--; - } else { - short proba = (short)((count[s]*step) >> scale); - if (proba<8) { - U64 restToBeat = vStep * rtbTable[proba]; - proba += (count[s]*step) - ((U64)proba< restToBeat; - } - if (proba > largestP) { largestP=proba; largest=s; } - normalizedCounter[s] = proba; - stillToDistribute -= proba; - } } - if (-stillToDistribute >= (normalizedCounter[largest] >> 1)) { - /* corner case, need another normalization method */ - size_t const errorCode = FSE_normalizeM2(normalizedCounter, tableLog, count, total, maxSymbolValue); - if (FSE_isError(errorCode)) return errorCode; - } - else normalizedCounter[largest] += (short)stillToDistribute; - } - -#if 0 - { /* Print Table (debug) */ - U32 s; - U32 nTotal = 0; - for (s=0; s<=maxSymbolValue; s++) - RAWLOG(2, "%3i: %4i \n", s, normalizedCounter[s]); - for (s=0; s<=maxSymbolValue; s++) - nTotal += abs(normalizedCounter[s]); - if (nTotal != (1U<>1); /* assumption : tableLog >= 1 */ - FSE_symbolCompressionTransform* const symbolTT = (FSE_symbolCompressionTransform*) (FSCT); - unsigned s; - - /* Sanity checks */ - if (nbBits < 1) return ERROR(GENERIC); /* min size */ - - /* header */ - tableU16[-2] = (U16) nbBits; - tableU16[-1] = (U16) maxSymbolValue; - - /* Build table */ - for (s=0; s FSE_MAX_TABLELOG*4+7 ) && (srcSize & 2)) { /* test bit 2 */ - FSE_encodeSymbol(&bitC, &CState2, *--ip); - FSE_encodeSymbol(&bitC, &CState1, *--ip); - FSE_FLUSHBITS(&bitC); - } - - /* 2 or 4 encoding per loop */ - while ( ip>istart ) { - - FSE_encodeSymbol(&bitC, &CState2, *--ip); - - if (sizeof(bitC.bitContainer)*8 < FSE_MAX_TABLELOG*2+7 ) /* this test must be static */ - FSE_FLUSHBITS(&bitC); - - FSE_encodeSymbol(&bitC, &CState1, *--ip); - - if (sizeof(bitC.bitContainer)*8 > FSE_MAX_TABLELOG*4+7 ) { /* this test must be static */ - FSE_encodeSymbol(&bitC, &CState2, *--ip); - FSE_encodeSymbol(&bitC, &CState1, *--ip); - } - - FSE_FLUSHBITS(&bitC); - } - - FSE_flushCState(&bitC, &CState2); - FSE_flushCState(&bitC, &CState1); - return BIT_closeCStream(&bitC); -} - -size_t FSE_compress_usingCTable (void* dst, size_t dstSize, - const void* src, size_t srcSize, - const FSE_CTable* ct) -{ - unsigned const fast = (dstSize >= FSE_BLOCKBOUND(srcSize)); - - if (fast) - return FSE_compress_usingCTable_generic(dst, dstSize, src, srcSize, ct, 1); - else - return FSE_compress_usingCTable_generic(dst, dstSize, src, srcSize, ct, 0); -} - - -size_t FSE_compressBound(size_t size) { return FSE_COMPRESSBOUND(size); } - -/* FSE_compress_wksp() : - * Same as FSE_compress2(), but using an externally allocated scratch buffer (`workSpace`). - * `wkspSize` size must be `(1< not compressible */ - if (maxCount < (srcSize >> 7)) return 0; /* Heuristic : not compressible enough */ - } - - tableLog = FSE_optimalTableLog(tableLog, srcSize, maxSymbolValue); - CHECK_F( FSE_normalizeCount(norm, tableLog, count, srcSize, maxSymbolValue) ); - - /* Write table description header */ - { CHECK_V_F(nc_err, FSE_writeNCount(op, oend-op, norm, maxSymbolValue, tableLog) ); - op += nc_err; - } - - /* Compress */ - CHECK_F( FSE_buildCTable_wksp(CTable, norm, maxSymbolValue, tableLog, scratchBuffer, scratchBufferSize) ); - { CHECK_V_F(cSize, FSE_compress_usingCTable(op, oend - op, src, srcSize, CTable) ); - if (cSize == 0) return 0; /* not enough space for compressed data */ - op += cSize; - } - - /* check compressibility */ - if ( (size_t)(op-ostart) >= srcSize-1 ) return 0; - - return op-ostart; -} - -typedef struct { - FSE_CTable CTable_max[FSE_CTABLE_SIZE_U32(FSE_MAX_TABLELOG, FSE_MAX_SYMBOL_VALUE)]; - BYTE scratchBuffer[1 << FSE_MAX_TABLELOG]; -} fseWkspMax_t; - -size_t FSE_compress2 (void* dst, size_t dstCapacity, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned tableLog) -{ - fseWkspMax_t scratchBuffer; - DEBUG_STATIC_ASSERT(sizeof(scratchBuffer) >= FSE_WKSP_SIZE_U32(FSE_MAX_TABLELOG, FSE_MAX_SYMBOL_VALUE)); /* compilation failures here means scratchBuffer is not large enough */ - if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); - return FSE_compress_wksp(dst, dstCapacity, src, srcSize, maxSymbolValue, tableLog, &scratchBuffer, sizeof(scratchBuffer)); -} - -size_t FSE_compress (void* dst, size_t dstCapacity, const void* src, size_t srcSize) -{ - return FSE_compress2(dst, dstCapacity, src, srcSize, FSE_MAX_SYMBOL_VALUE, FSE_DEFAULT_TABLELOG); -} - - -#endif /* FSE_COMMONDEFS_ONLY */ diff --git a/lib/SZ3/tools/zstd/compress/hist.c b/lib/SZ3/tools/zstd/compress/hist.c deleted file mode 100644 index 61e08c79..00000000 --- a/lib/SZ3/tools/zstd/compress/hist.c +++ /dev/null @@ -1,183 +0,0 @@ -/* ****************************************************************** - * hist : Histogram functions - * part of Finite State Entropy project - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - Public forum : https://groups.google.com/forum/#!forum/lz4c - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - -/* --- dependencies --- */ -#include "../common/mem.h" /* U32, BYTE, etc. */ -#include "../common/debug.h" /* assert, DEBUGLOG */ -#include "../common/error_private.h" /* ERROR */ -#include "hist.h" - - -/* --- Error management --- */ -unsigned HIST_isError(size_t code) { return ERR_isError(code); } - -/*-************************************************************** - * Histogram functions - ****************************************************************/ -unsigned HIST_count_simple(unsigned* count, unsigned* maxSymbolValuePtr, - const void* src, size_t srcSize) -{ - const BYTE* ip = (const BYTE*)src; - const BYTE* const end = ip + srcSize; - unsigned maxSymbolValue = *maxSymbolValuePtr; - unsigned largestCount=0; - - memset(count, 0, (maxSymbolValue+1) * sizeof(*count)); - if (srcSize==0) { *maxSymbolValuePtr = 0; return 0; } - - while (ip largestCount) largestCount = count[s]; - } - - return largestCount; -} - -typedef enum { trustInput, checkMaxSymbolValue } HIST_checkInput_e; - -/* HIST_count_parallel_wksp() : - * store histogram into 4 intermediate tables, recombined at the end. - * this design makes better use of OoO cpus, - * and is noticeably faster when some values are heavily repeated. - * But it needs some additional workspace for intermediate tables. - * `workSpace` size must be a table of size >= HIST_WKSP_SIZE_U32. - * @return : largest histogram frequency, - * or an error code (notably when histogram would be larger than *maxSymbolValuePtr). */ -static size_t HIST_count_parallel_wksp( - unsigned* count, unsigned* maxSymbolValuePtr, - const void* source, size_t sourceSize, - HIST_checkInput_e check, - U32* const workSpace) -{ - const BYTE* ip = (const BYTE*)source; - const BYTE* const iend = ip+sourceSize; - unsigned maxSymbolValue = *maxSymbolValuePtr; - unsigned max=0; - U32* const Counting1 = workSpace; - U32* const Counting2 = Counting1 + 256; - U32* const Counting3 = Counting2 + 256; - U32* const Counting4 = Counting3 + 256; - - memset(workSpace, 0, 4*256*sizeof(unsigned)); - - /* safety checks */ - if (!sourceSize) { - memset(count, 0, maxSymbolValue + 1); - *maxSymbolValuePtr = 0; - return 0; - } - if (!maxSymbolValue) maxSymbolValue = 255; /* 0 == default */ - - /* by stripes of 16 bytes */ - { U32 cached = MEM_read32(ip); ip += 4; - while (ip < iend-15) { - U32 c = cached; cached = MEM_read32(ip); ip += 4; - Counting1[(BYTE) c ]++; - Counting2[(BYTE)(c>>8) ]++; - Counting3[(BYTE)(c>>16)]++; - Counting4[ c>>24 ]++; - c = cached; cached = MEM_read32(ip); ip += 4; - Counting1[(BYTE) c ]++; - Counting2[(BYTE)(c>>8) ]++; - Counting3[(BYTE)(c>>16)]++; - Counting4[ c>>24 ]++; - c = cached; cached = MEM_read32(ip); ip += 4; - Counting1[(BYTE) c ]++; - Counting2[(BYTE)(c>>8) ]++; - Counting3[(BYTE)(c>>16)]++; - Counting4[ c>>24 ]++; - c = cached; cached = MEM_read32(ip); ip += 4; - Counting1[(BYTE) c ]++; - Counting2[(BYTE)(c>>8) ]++; - Counting3[(BYTE)(c>>16)]++; - Counting4[ c>>24 ]++; - } - ip-=4; - } - - /* finish last symbols */ - while (ipmaxSymbolValue; s--) { - Counting1[s] += Counting2[s] + Counting3[s] + Counting4[s]; - if (Counting1[s]) return ERROR(maxSymbolValue_tooSmall); - } } - - { U32 s; - if (maxSymbolValue > 255) maxSymbolValue = 255; - for (s=0; s<=maxSymbolValue; s++) { - count[s] = Counting1[s] + Counting2[s] + Counting3[s] + Counting4[s]; - if (count[s] > max) max = count[s]; - } } - - while (!count[maxSymbolValue]) maxSymbolValue--; - *maxSymbolValuePtr = maxSymbolValue; - return (size_t)max; -} - -/* HIST_countFast_wksp() : - * Same as HIST_countFast(), but using an externally provided scratch buffer. - * `workSpace` is a writable buffer which must be 4-bytes aligned, - * `workSpaceSize` must be >= HIST_WKSP_SIZE - */ -size_t HIST_countFast_wksp(unsigned* count, unsigned* maxSymbolValuePtr, - const void* source, size_t sourceSize, - void* workSpace, size_t workSpaceSize) -{ - if (sourceSize < 1500) /* heuristic threshold */ - return HIST_count_simple(count, maxSymbolValuePtr, source, sourceSize); - if ((size_t)workSpace & 3) return ERROR(GENERIC); /* must be aligned on 4-bytes boundaries */ - if (workSpaceSize < HIST_WKSP_SIZE) return ERROR(workSpace_tooSmall); - return HIST_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, trustInput, (U32*)workSpace); -} - -/* fast variant (unsafe : won't check if src contains values beyond count[] limit) */ -size_t HIST_countFast(unsigned* count, unsigned* maxSymbolValuePtr, - const void* source, size_t sourceSize) -{ - unsigned tmpCounters[HIST_WKSP_SIZE_U32]; - return HIST_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, tmpCounters, sizeof(tmpCounters)); -} - -/* HIST_count_wksp() : - * Same as HIST_count(), but using an externally provided scratch buffer. - * `workSpace` size must be table of >= HIST_WKSP_SIZE_U32 unsigned */ -size_t HIST_count_wksp(unsigned* count, unsigned* maxSymbolValuePtr, - const void* source, size_t sourceSize, - void* workSpace, size_t workSpaceSize) -{ - if ((size_t)workSpace & 3) return ERROR(GENERIC); /* must be aligned on 4-bytes boundaries */ - if (workSpaceSize < HIST_WKSP_SIZE) return ERROR(workSpace_tooSmall); - if (*maxSymbolValuePtr < 255) - return HIST_count_parallel_wksp(count, maxSymbolValuePtr, source, sourceSize, checkMaxSymbolValue, (U32*)workSpace); - *maxSymbolValuePtr = 255; - return HIST_countFast_wksp(count, maxSymbolValuePtr, source, sourceSize, workSpace, workSpaceSize); -} - -size_t HIST_count(unsigned* count, unsigned* maxSymbolValuePtr, - const void* src, size_t srcSize) -{ - unsigned tmpCounters[HIST_WKSP_SIZE_U32]; - return HIST_count_wksp(count, maxSymbolValuePtr, src, srcSize, tmpCounters, sizeof(tmpCounters)); -} diff --git a/lib/SZ3/tools/zstd/compress/hist.h b/lib/SZ3/tools/zstd/compress/hist.h deleted file mode 100644 index 77e3ec4f..00000000 --- a/lib/SZ3/tools/zstd/compress/hist.h +++ /dev/null @@ -1,75 +0,0 @@ -/* ****************************************************************** - * hist : Histogram functions - * part of Finite State Entropy project - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - Public forum : https://groups.google.com/forum/#!forum/lz4c - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - -/* --- dependencies --- */ -#include /* size_t */ - - -/* --- simple histogram functions --- */ - -/*! HIST_count(): - * Provides the precise count of each byte within a table 'count'. - * 'count' is a table of unsigned int, of minimum size (*maxSymbolValuePtr+1). - * Updates *maxSymbolValuePtr with actual largest symbol value detected. - * @return : count of the most frequent symbol (which isn't identified). - * or an error code, which can be tested using HIST_isError(). - * note : if return == srcSize, there is only one symbol. - */ -size_t HIST_count(unsigned* count, unsigned* maxSymbolValuePtr, - const void* src, size_t srcSize); - -unsigned HIST_isError(size_t code); /**< tells if a return value is an error code */ - - -/* --- advanced histogram functions --- */ - -#define HIST_WKSP_SIZE_U32 1024 -#define HIST_WKSP_SIZE (HIST_WKSP_SIZE_U32 * sizeof(unsigned)) -/** HIST_count_wksp() : - * Same as HIST_count(), but using an externally provided scratch buffer. - * Benefit is this function will use very little stack space. - * `workSpace` is a writable buffer which must be 4-bytes aligned, - * `workSpaceSize` must be >= HIST_WKSP_SIZE - */ -size_t HIST_count_wksp(unsigned* count, unsigned* maxSymbolValuePtr, - const void* src, size_t srcSize, - void* workSpace, size_t workSpaceSize); - -/** HIST_countFast() : - * same as HIST_count(), but blindly trusts that all byte values within src are <= *maxSymbolValuePtr. - * This function is unsafe, and will segfault if any value within `src` is `> *maxSymbolValuePtr` - */ -size_t HIST_countFast(unsigned* count, unsigned* maxSymbolValuePtr, - const void* src, size_t srcSize); - -/** HIST_countFast_wksp() : - * Same as HIST_countFast(), but using an externally provided scratch buffer. - * `workSpace` is a writable buffer which must be 4-bytes aligned, - * `workSpaceSize` must be >= HIST_WKSP_SIZE - */ -size_t HIST_countFast_wksp(unsigned* count, unsigned* maxSymbolValuePtr, - const void* src, size_t srcSize, - void* workSpace, size_t workSpaceSize); - -/*! HIST_count_simple() : - * Same as HIST_countFast(), this function is unsafe, - * and will segfault if any value within `src` is `> *maxSymbolValuePtr`. - * It is also a bit slower for large inputs. - * However, it does not need any additional memory (not even on stack). - * @return : count of the most frequent symbol. - * Note this function doesn't produce any error (i.e. it must succeed). - */ -unsigned HIST_count_simple(unsigned* count, unsigned* maxSymbolValuePtr, - const void* src, size_t srcSize); diff --git a/lib/SZ3/tools/zstd/compress/huf_compress.c b/lib/SZ3/tools/zstd/compress/huf_compress.c deleted file mode 100644 index 54687986..00000000 --- a/lib/SZ3/tools/zstd/compress/huf_compress.c +++ /dev/null @@ -1,798 +0,0 @@ -/* ****************************************************************** - * Huffman encoder, part of New Generation Entropy library - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - Public forum : https://groups.google.com/forum/#!forum/lz4c - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - -/* ************************************************************** -* Compiler specifics -****************************************************************/ -#ifdef _MSC_VER /* Visual Studio */ -# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ -#endif - - -/* ************************************************************** -* Includes -****************************************************************/ -#include /* memcpy, memset */ -#include /* printf (debug) */ -#include "../common/compiler.h" -#include "../common/bitstream.h" -#include "hist.h" -#define FSE_STATIC_LINKING_ONLY /* FSE_optimalTableLog_internal */ -#include "../common/fse.h" /* header compression */ -#define HUF_STATIC_LINKING_ONLY -#include "../common/huf.h" -#include "../common/error_private.h" - - -/* ************************************************************** -* Error Management -****************************************************************/ -#define HUF_isError ERR_isError -#define HUF_STATIC_ASSERT(c) DEBUG_STATIC_ASSERT(c) /* use only *after* variable declarations */ - - -/* ************************************************************** -* Utils -****************************************************************/ -unsigned HUF_optimalTableLog(unsigned maxTableLog, size_t srcSize, unsigned maxSymbolValue) -{ - return FSE_optimalTableLog_internal(maxTableLog, srcSize, maxSymbolValue, 1); -} - - -/* ******************************************************* -* HUF : Huffman block compression -*********************************************************/ -/* HUF_compressWeights() : - * Same as FSE_compress(), but dedicated to huff0's weights compression. - * The use case needs much less stack memory. - * Note : all elements within weightTable are supposed to be <= HUF_TABLELOG_MAX. - */ -#define MAX_FSE_TABLELOG_FOR_HUFF_HEADER 6 -static size_t HUF_compressWeights (void* dst, size_t dstSize, const void* weightTable, size_t wtSize) -{ - BYTE* const ostart = (BYTE*) dst; - BYTE* op = ostart; - BYTE* const oend = ostart + dstSize; - - unsigned maxSymbolValue = HUF_TABLELOG_MAX; - U32 tableLog = MAX_FSE_TABLELOG_FOR_HUFF_HEADER; - - FSE_CTable CTable[FSE_CTABLE_SIZE_U32(MAX_FSE_TABLELOG_FOR_HUFF_HEADER, HUF_TABLELOG_MAX)]; - BYTE scratchBuffer[1< not compressible */ - } - - tableLog = FSE_optimalTableLog(tableLog, wtSize, maxSymbolValue); - CHECK_F( FSE_normalizeCount(norm, tableLog, count, wtSize, maxSymbolValue) ); - - /* Write table description header */ - { CHECK_V_F(hSize, FSE_writeNCount(op, (size_t)(oend-op), norm, maxSymbolValue, tableLog) ); - op += hSize; - } - - /* Compress */ - CHECK_F( FSE_buildCTable_wksp(CTable, norm, maxSymbolValue, tableLog, scratchBuffer, sizeof(scratchBuffer)) ); - { CHECK_V_F(cSize, FSE_compress_usingCTable(op, (size_t)(oend - op), weightTable, wtSize, CTable) ); - if (cSize == 0) return 0; /* not enough space for compressed data */ - op += cSize; - } - - return (size_t)(op-ostart); -} - - -struct HUF_CElt_s { - U16 val; - BYTE nbBits; -}; /* typedef'd to HUF_CElt within "huf.h" */ - -/*! HUF_writeCTable() : - `CTable` : Huffman tree to save, using huf representation. - @return : size of saved CTable */ -size_t HUF_writeCTable (void* dst, size_t maxDstSize, - const HUF_CElt* CTable, unsigned maxSymbolValue, unsigned huffLog) -{ - BYTE bitsToWeight[HUF_TABLELOG_MAX + 1]; /* precomputed conversion table */ - BYTE huffWeight[HUF_SYMBOLVALUE_MAX]; - BYTE* op = (BYTE*)dst; - U32 n; - - /* check conditions */ - if (maxSymbolValue > HUF_SYMBOLVALUE_MAX) return ERROR(maxSymbolValue_tooLarge); - - /* convert to weight */ - bitsToWeight[0] = 0; - for (n=1; n1) & (hSize < maxSymbolValue/2)) { /* FSE compressed */ - op[0] = (BYTE)hSize; - return hSize+1; - } } - - /* write raw values as 4-bits (max : 15) */ - if (maxSymbolValue > (256-128)) return ERROR(GENERIC); /* should not happen : likely means source cannot be compressed */ - if (((maxSymbolValue+1)/2) + 1 > maxDstSize) return ERROR(dstSize_tooSmall); /* not enough space within dst buffer */ - op[0] = (BYTE)(128 /*special case*/ + (maxSymbolValue-1)); - huffWeight[maxSymbolValue] = 0; /* to be sure it doesn't cause msan issue in final combination */ - for (n=0; n HUF_TABLELOG_MAX) return ERROR(tableLog_tooLarge); - if (nbSymbols > *maxSymbolValuePtr+1) return ERROR(maxSymbolValue_tooSmall); - - /* Prepare base value per rank */ - { U32 n, nextRankStart = 0; - for (n=1; n<=tableLog; n++) { - U32 current = nextRankStart; - nextRankStart += (rankVal[n] << (n-1)); - rankVal[n] = current; - } } - - /* fill nbBits */ - *hasZeroWeights = 0; - { U32 n; for (n=0; nn=tableLog+1 */ - U16 valPerRank[HUF_TABLELOG_MAX+2] = {0}; - { U32 n; for (n=0; n0; n--) { /* start at n=tablelog <-> w=1 */ - valPerRank[n] = min; /* get starting value within each rank */ - min += nbPerRank[n]; - min >>= 1; - } } - /* assign value within rank, symbol order */ - { U32 n; for (n=0; n maxNbBits */ - - /* there are several too large elements (at least >= 2) */ - { int totalCost = 0; - const U32 baseCost = 1 << (largestBits - maxNbBits); - int n = (int)lastNonNull; - - while (huffNode[n].nbBits > maxNbBits) { - totalCost += baseCost - (1 << (largestBits - huffNode[n].nbBits)); - huffNode[n].nbBits = (BYTE)maxNbBits; - n --; - } /* n stops at huffNode[n].nbBits <= maxNbBits */ - while (huffNode[n].nbBits == maxNbBits) n--; /* n end at index of smallest symbol using < maxNbBits */ - - /* renorm totalCost */ - totalCost >>= (largestBits - maxNbBits); /* note : totalCost is necessarily a multiple of baseCost */ - - /* repay normalized cost */ - { U32 const noSymbol = 0xF0F0F0F0; - U32 rankLast[HUF_TABLELOG_MAX+2]; - - /* Get pos of last (smallest) symbol per rank */ - memset(rankLast, 0xF0, sizeof(rankLast)); - { U32 currentNbBits = maxNbBits; - int pos; - for (pos=n ; pos >= 0; pos--) { - if (huffNode[pos].nbBits >= currentNbBits) continue; - currentNbBits = huffNode[pos].nbBits; /* < maxNbBits */ - rankLast[maxNbBits-currentNbBits] = (U32)pos; - } } - - while (totalCost > 0) { - U32 nBitsToDecrease = BIT_highbit32((U32)totalCost) + 1; - for ( ; nBitsToDecrease > 1; nBitsToDecrease--) { - U32 const highPos = rankLast[nBitsToDecrease]; - U32 const lowPos = rankLast[nBitsToDecrease-1]; - if (highPos == noSymbol) continue; - if (lowPos == noSymbol) break; - { U32 const highTotal = huffNode[highPos].count; - U32 const lowTotal = 2 * huffNode[lowPos].count; - if (highTotal <= lowTotal) break; - } } - /* only triggered when no more rank 1 symbol left => find closest one (note : there is necessarily at least one !) */ - /* HUF_MAX_TABLELOG test just to please gcc 5+; but it should not be necessary */ - while ((nBitsToDecrease<=HUF_TABLELOG_MAX) && (rankLast[nBitsToDecrease] == noSymbol)) - nBitsToDecrease ++; - totalCost -= 1 << (nBitsToDecrease-1); - if (rankLast[nBitsToDecrease-1] == noSymbol) - rankLast[nBitsToDecrease-1] = rankLast[nBitsToDecrease]; /* this rank is no longer empty */ - huffNode[rankLast[nBitsToDecrease]].nbBits ++; - if (rankLast[nBitsToDecrease] == 0) /* special case, reached largest symbol */ - rankLast[nBitsToDecrease] = noSymbol; - else { - rankLast[nBitsToDecrease]--; - if (huffNode[rankLast[nBitsToDecrease]].nbBits != maxNbBits-nBitsToDecrease) - rankLast[nBitsToDecrease] = noSymbol; /* this rank is now empty */ - } } /* while (totalCost > 0) */ - - while (totalCost < 0) { /* Sometimes, cost correction overshoot */ - if (rankLast[1] == noSymbol) { /* special case : no rank 1 symbol (using maxNbBits-1); let's create one from largest rank 0 (using maxNbBits) */ - while (huffNode[n].nbBits == maxNbBits) n--; - huffNode[n+1].nbBits--; - assert(n >= 0); - rankLast[1] = (U32)(n+1); - totalCost++; - continue; - } - huffNode[ rankLast[1] + 1 ].nbBits--; - rankLast[1]++; - totalCost ++; - } } } /* there are several too large elements (at least >= 2) */ - - return maxNbBits; -} - -typedef struct { - U32 base; - U32 current; -} rankPos; - -typedef nodeElt huffNodeTable[HUF_CTABLE_WORKSPACE_SIZE_U32]; - -#define RANK_POSITION_TABLE_SIZE 32 - -typedef struct { - huffNodeTable huffNodeTbl; - rankPos rankPosition[RANK_POSITION_TABLE_SIZE]; -} HUF_buildCTable_wksp_tables; - -static void HUF_sort(nodeElt* huffNode, const unsigned* count, U32 maxSymbolValue, rankPos* rankPosition) -{ - U32 n; - - memset(rankPosition, 0, sizeof(*rankPosition) * RANK_POSITION_TABLE_SIZE); - for (n=0; n<=maxSymbolValue; n++) { - U32 r = BIT_highbit32(count[n] + 1); - rankPosition[r].base ++; - } - for (n=30; n>0; n--) rankPosition[n-1].base += rankPosition[n].base; - for (n=0; n<32; n++) rankPosition[n].current = rankPosition[n].base; - for (n=0; n<=maxSymbolValue; n++) { - U32 const c = count[n]; - U32 const r = BIT_highbit32(c+1) + 1; - U32 pos = rankPosition[r].current++; - while ((pos > rankPosition[r].base) && (c > huffNode[pos-1].count)) { - huffNode[pos] = huffNode[pos-1]; - pos--; - } - huffNode[pos].count = c; - huffNode[pos].byte = (BYTE)n; - } -} - - -/** HUF_buildCTable_wksp() : - * Same as HUF_buildCTable(), but using externally allocated scratch buffer. - * `workSpace` must be aligned on 4-bytes boundaries, and be at least as large as sizeof(HUF_buildCTable_wksp_tables). - */ -#define STARTNODE (HUF_SYMBOLVALUE_MAX+1) - -size_t HUF_buildCTable_wksp (HUF_CElt* tree, const unsigned* count, U32 maxSymbolValue, U32 maxNbBits, void* workSpace, size_t wkspSize) -{ - HUF_buildCTable_wksp_tables* const wksp_tables = (HUF_buildCTable_wksp_tables*)workSpace; - nodeElt* const huffNode0 = wksp_tables->huffNodeTbl; - nodeElt* const huffNode = huffNode0+1; - int nonNullRank; - int lowS, lowN; - int nodeNb = STARTNODE; - int n, nodeRoot; - - /* safety checks */ - if (((size_t)workSpace & 3) != 0) return ERROR(GENERIC); /* must be aligned on 4-bytes boundaries */ - if (wkspSize < sizeof(HUF_buildCTable_wksp_tables)) - return ERROR(workSpace_tooSmall); - if (maxNbBits == 0) maxNbBits = HUF_TABLELOG_DEFAULT; - if (maxSymbolValue > HUF_SYMBOLVALUE_MAX) - return ERROR(maxSymbolValue_tooLarge); - memset(huffNode0, 0, sizeof(huffNodeTable)); - - /* sort, decreasing order */ - HUF_sort(huffNode, count, maxSymbolValue, wksp_tables->rankPosition); - - /* init for parents */ - nonNullRank = (int)maxSymbolValue; - while(huffNode[nonNullRank].count == 0) nonNullRank--; - lowS = nonNullRank; nodeRoot = nodeNb + lowS - 1; lowN = nodeNb; - huffNode[nodeNb].count = huffNode[lowS].count + huffNode[lowS-1].count; - huffNode[lowS].parent = huffNode[lowS-1].parent = (U16)nodeNb; - nodeNb++; lowS-=2; - for (n=nodeNb; n<=nodeRoot; n++) huffNode[n].count = (U32)(1U<<30); - huffNode0[0].count = (U32)(1U<<31); /* fake entry, strong barrier */ - - /* create parents */ - while (nodeNb <= nodeRoot) { - int const n1 = (huffNode[lowS].count < huffNode[lowN].count) ? lowS-- : lowN++; - int const n2 = (huffNode[lowS].count < huffNode[lowN].count) ? lowS-- : lowN++; - huffNode[nodeNb].count = huffNode[n1].count + huffNode[n2].count; - huffNode[n1].parent = huffNode[n2].parent = (U16)nodeNb; - nodeNb++; - } - - /* distribute weights (unlimited tree height) */ - huffNode[nodeRoot].nbBits = 0; - for (n=nodeRoot-1; n>=STARTNODE; n--) - huffNode[n].nbBits = huffNode[ huffNode[n].parent ].nbBits + 1; - for (n=0; n<=nonNullRank; n++) - huffNode[n].nbBits = huffNode[ huffNode[n].parent ].nbBits + 1; - - /* enforce maxTableLog */ - maxNbBits = HUF_setMaxHeight(huffNode, (U32)nonNullRank, maxNbBits); - - /* fill result into tree (val, nbBits) */ - { U16 nbPerRank[HUF_TABLELOG_MAX+1] = {0}; - U16 valPerRank[HUF_TABLELOG_MAX+1] = {0}; - int const alphabetSize = (int)(maxSymbolValue + 1); - if (maxNbBits > HUF_TABLELOG_MAX) return ERROR(GENERIC); /* check fit into table */ - for (n=0; n<=nonNullRank; n++) - nbPerRank[huffNode[n].nbBits]++; - /* determine stating value per rank */ - { U16 min = 0; - for (n=(int)maxNbBits; n>0; n--) { - valPerRank[n] = min; /* get starting value within each rank */ - min += nbPerRank[n]; - min >>= 1; - } } - for (n=0; n> 3; -} - -int HUF_validateCTable(const HUF_CElt* CTable, const unsigned* count, unsigned maxSymbolValue) { - int bad = 0; - int s; - for (s = 0; s <= (int)maxSymbolValue; ++s) { - bad |= (count[s] != 0) & (CTable[s].nbBits == 0); - } - return !bad; -} - -size_t HUF_compressBound(size_t size) { return HUF_COMPRESSBOUND(size); } - -FORCE_INLINE_TEMPLATE void -HUF_encodeSymbol(BIT_CStream_t* bitCPtr, U32 symbol, const HUF_CElt* CTable) -{ - BIT_addBitsFast(bitCPtr, CTable[symbol].val, CTable[symbol].nbBits); -} - -#define HUF_FLUSHBITS(s) BIT_flushBits(s) - -#define HUF_FLUSHBITS_1(stream) \ - if (sizeof((stream)->bitContainer)*8 < HUF_TABLELOG_MAX*2+7) HUF_FLUSHBITS(stream) - -#define HUF_FLUSHBITS_2(stream) \ - if (sizeof((stream)->bitContainer)*8 < HUF_TABLELOG_MAX*4+7) HUF_FLUSHBITS(stream) - -FORCE_INLINE_TEMPLATE size_t -HUF_compress1X_usingCTable_internal_body(void* dst, size_t dstSize, - const void* src, size_t srcSize, - const HUF_CElt* CTable) -{ - const BYTE* ip = (const BYTE*) src; - BYTE* const ostart = (BYTE*)dst; - BYTE* const oend = ostart + dstSize; - BYTE* op = ostart; - size_t n; - BIT_CStream_t bitC; - - /* init */ - if (dstSize < 8) return 0; /* not enough space to compress */ - { size_t const initErr = BIT_initCStream(&bitC, op, (size_t)(oend-op)); - if (HUF_isError(initErr)) return 0; } - - n = srcSize & ~3; /* join to mod 4 */ - switch (srcSize & 3) - { - case 3 : HUF_encodeSymbol(&bitC, ip[n+ 2], CTable); - HUF_FLUSHBITS_2(&bitC); - /* fall-through */ - case 2 : HUF_encodeSymbol(&bitC, ip[n+ 1], CTable); - HUF_FLUSHBITS_1(&bitC); - /* fall-through */ - case 1 : HUF_encodeSymbol(&bitC, ip[n+ 0], CTable); - HUF_FLUSHBITS(&bitC); - /* fall-through */ - case 0 : /* fall-through */ - default: break; - } - - for (; n>0; n-=4) { /* note : n&3==0 at this stage */ - HUF_encodeSymbol(&bitC, ip[n- 1], CTable); - HUF_FLUSHBITS_1(&bitC); - HUF_encodeSymbol(&bitC, ip[n- 2], CTable); - HUF_FLUSHBITS_2(&bitC); - HUF_encodeSymbol(&bitC, ip[n- 3], CTable); - HUF_FLUSHBITS_1(&bitC); - HUF_encodeSymbol(&bitC, ip[n- 4], CTable); - HUF_FLUSHBITS(&bitC); - } - - return BIT_closeCStream(&bitC); -} - -#if DYNAMIC_BMI2 - -static TARGET_ATTRIBUTE("bmi2") size_t -HUF_compress1X_usingCTable_internal_bmi2(void* dst, size_t dstSize, - const void* src, size_t srcSize, - const HUF_CElt* CTable) -{ - return HUF_compress1X_usingCTable_internal_body(dst, dstSize, src, srcSize, CTable); -} - -static size_t -HUF_compress1X_usingCTable_internal_default(void* dst, size_t dstSize, - const void* src, size_t srcSize, - const HUF_CElt* CTable) -{ - return HUF_compress1X_usingCTable_internal_body(dst, dstSize, src, srcSize, CTable); -} - -static size_t -HUF_compress1X_usingCTable_internal(void* dst, size_t dstSize, - const void* src, size_t srcSize, - const HUF_CElt* CTable, const int bmi2) -{ - if (bmi2) { - return HUF_compress1X_usingCTable_internal_bmi2(dst, dstSize, src, srcSize, CTable); - } - return HUF_compress1X_usingCTable_internal_default(dst, dstSize, src, srcSize, CTable); -} - -#else - -static size_t -HUF_compress1X_usingCTable_internal(void* dst, size_t dstSize, - const void* src, size_t srcSize, - const HUF_CElt* CTable, const int bmi2) -{ - (void)bmi2; - return HUF_compress1X_usingCTable_internal_body(dst, dstSize, src, srcSize, CTable); -} - -#endif - -size_t HUF_compress1X_usingCTable(void* dst, size_t dstSize, const void* src, size_t srcSize, const HUF_CElt* CTable) -{ - return HUF_compress1X_usingCTable_internal(dst, dstSize, src, srcSize, CTable, /* bmi2 */ 0); -} - - -static size_t -HUF_compress4X_usingCTable_internal(void* dst, size_t dstSize, - const void* src, size_t srcSize, - const HUF_CElt* CTable, int bmi2) -{ - size_t const segmentSize = (srcSize+3)/4; /* first 3 segments */ - const BYTE* ip = (const BYTE*) src; - const BYTE* const iend = ip + srcSize; - BYTE* const ostart = (BYTE*) dst; - BYTE* const oend = ostart + dstSize; - BYTE* op = ostart; - - if (dstSize < 6 + 1 + 1 + 1 + 8) return 0; /* minimum space to compress successfully */ - if (srcSize < 12) return 0; /* no saving possible : too small input */ - op += 6; /* jumpTable */ - - assert(op <= oend); - { CHECK_V_F(cSize, HUF_compress1X_usingCTable_internal(op, (size_t)(oend-op), ip, segmentSize, CTable, bmi2) ); - if (cSize==0) return 0; - assert(cSize <= 65535); - MEM_writeLE16(ostart, (U16)cSize); - op += cSize; - } - - ip += segmentSize; - assert(op <= oend); - { CHECK_V_F(cSize, HUF_compress1X_usingCTable_internal(op, (size_t)(oend-op), ip, segmentSize, CTable, bmi2) ); - if (cSize==0) return 0; - assert(cSize <= 65535); - MEM_writeLE16(ostart+2, (U16)cSize); - op += cSize; - } - - ip += segmentSize; - assert(op <= oend); - { CHECK_V_F(cSize, HUF_compress1X_usingCTable_internal(op, (size_t)(oend-op), ip, segmentSize, CTable, bmi2) ); - if (cSize==0) return 0; - assert(cSize <= 65535); - MEM_writeLE16(ostart+4, (U16)cSize); - op += cSize; - } - - ip += segmentSize; - assert(op <= oend); - assert(ip <= iend); - { CHECK_V_F(cSize, HUF_compress1X_usingCTable_internal(op, (size_t)(oend-op), ip, (size_t)(iend-ip), CTable, bmi2) ); - if (cSize==0) return 0; - op += cSize; - } - - return (size_t)(op-ostart); -} - -size_t HUF_compress4X_usingCTable(void* dst, size_t dstSize, const void* src, size_t srcSize, const HUF_CElt* CTable) -{ - return HUF_compress4X_usingCTable_internal(dst, dstSize, src, srcSize, CTable, /* bmi2 */ 0); -} - -typedef enum { HUF_singleStream, HUF_fourStreams } HUF_nbStreams_e; - -static size_t HUF_compressCTable_internal( - BYTE* const ostart, BYTE* op, BYTE* const oend, - const void* src, size_t srcSize, - HUF_nbStreams_e nbStreams, const HUF_CElt* CTable, const int bmi2) -{ - size_t const cSize = (nbStreams==HUF_singleStream) ? - HUF_compress1X_usingCTable_internal(op, (size_t)(oend - op), src, srcSize, CTable, bmi2) : - HUF_compress4X_usingCTable_internal(op, (size_t)(oend - op), src, srcSize, CTable, bmi2); - if (HUF_isError(cSize)) { return cSize; } - if (cSize==0) { return 0; } /* uncompressible */ - op += cSize; - /* check compressibility */ - assert(op >= ostart); - if ((size_t)(op-ostart) >= srcSize-1) { return 0; } - return (size_t)(op-ostart); -} - -typedef struct { - unsigned count[HUF_SYMBOLVALUE_MAX + 1]; - HUF_CElt CTable[HUF_SYMBOLVALUE_MAX + 1]; - HUF_buildCTable_wksp_tables buildCTable_wksp; -} HUF_compress_tables_t; - -/* HUF_compress_internal() : - * `workSpace` must a table of at least HUF_WORKSPACE_SIZE_U32 unsigned */ -static size_t -HUF_compress_internal (void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned huffLog, - HUF_nbStreams_e nbStreams, - void* workSpace, size_t wkspSize, - HUF_CElt* oldHufTable, HUF_repeat* repeat, int preferRepeat, - const int bmi2) -{ - HUF_compress_tables_t* const table = (HUF_compress_tables_t*)workSpace; - BYTE* const ostart = (BYTE*)dst; - BYTE* const oend = ostart + dstSize; - BYTE* op = ostart; - - HUF_STATIC_ASSERT(sizeof(*table) <= HUF_WORKSPACE_SIZE); - - /* checks & inits */ - if (((size_t)workSpace & 3) != 0) return ERROR(GENERIC); /* must be aligned on 4-bytes boundaries */ - if (wkspSize < HUF_WORKSPACE_SIZE) return ERROR(workSpace_tooSmall); - if (!srcSize) return 0; /* Uncompressed */ - if (!dstSize) return 0; /* cannot fit anything within dst budget */ - if (srcSize > HUF_BLOCKSIZE_MAX) return ERROR(srcSize_wrong); /* current block size limit */ - if (huffLog > HUF_TABLELOG_MAX) return ERROR(tableLog_tooLarge); - if (maxSymbolValue > HUF_SYMBOLVALUE_MAX) return ERROR(maxSymbolValue_tooLarge); - if (!maxSymbolValue) maxSymbolValue = HUF_SYMBOLVALUE_MAX; - if (!huffLog) huffLog = HUF_TABLELOG_DEFAULT; - - /* Heuristic : If old table is valid, use it for small inputs */ - if (preferRepeat && repeat && *repeat == HUF_repeat_valid) { - return HUF_compressCTable_internal(ostart, op, oend, - src, srcSize, - nbStreams, oldHufTable, bmi2); - } - - /* Scan input and build symbol stats */ - { CHECK_V_F(largest, HIST_count_wksp (table->count, &maxSymbolValue, (const BYTE*)src, srcSize, workSpace, wkspSize) ); - if (largest == srcSize) { *ostart = ((const BYTE*)src)[0]; return 1; } /* single symbol, rle */ - if (largest <= (srcSize >> 7)+4) return 0; /* heuristic : probably not compressible enough */ - } - - /* Check validity of previous table */ - if ( repeat - && *repeat == HUF_repeat_check - && !HUF_validateCTable(oldHufTable, table->count, maxSymbolValue)) { - *repeat = HUF_repeat_none; - } - /* Heuristic : use existing table for small inputs */ - if (preferRepeat && repeat && *repeat != HUF_repeat_none) { - return HUF_compressCTable_internal(ostart, op, oend, - src, srcSize, - nbStreams, oldHufTable, bmi2); - } - - /* Build Huffman Tree */ - huffLog = HUF_optimalTableLog(huffLog, srcSize, maxSymbolValue); - { size_t const maxBits = HUF_buildCTable_wksp(table->CTable, table->count, - maxSymbolValue, huffLog, - &table->buildCTable_wksp, sizeof(table->buildCTable_wksp)); - CHECK_F(maxBits); - huffLog = (U32)maxBits; - /* Zero unused symbols in CTable, so we can check it for validity */ - memset(table->CTable + (maxSymbolValue + 1), 0, - sizeof(table->CTable) - ((maxSymbolValue + 1) * sizeof(HUF_CElt))); - } - - /* Write table description header */ - { CHECK_V_F(hSize, HUF_writeCTable (op, dstSize, table->CTable, maxSymbolValue, huffLog) ); - /* Check if using previous huffman table is beneficial */ - if (repeat && *repeat != HUF_repeat_none) { - size_t const oldSize = HUF_estimateCompressedSize(oldHufTable, table->count, maxSymbolValue); - size_t const newSize = HUF_estimateCompressedSize(table->CTable, table->count, maxSymbolValue); - if (oldSize <= hSize + newSize || hSize + 12 >= srcSize) { - return HUF_compressCTable_internal(ostart, op, oend, - src, srcSize, - nbStreams, oldHufTable, bmi2); - } } - - /* Use the new huffman table */ - if (hSize + 12ul >= srcSize) { return 0; } - op += hSize; - if (repeat) { *repeat = HUF_repeat_none; } - if (oldHufTable) - memcpy(oldHufTable, table->CTable, sizeof(table->CTable)); /* Save new table */ - } - return HUF_compressCTable_internal(ostart, op, oend, - src, srcSize, - nbStreams, table->CTable, bmi2); -} - - -size_t HUF_compress1X_wksp (void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned huffLog, - void* workSpace, size_t wkspSize) -{ - return HUF_compress_internal(dst, dstSize, src, srcSize, - maxSymbolValue, huffLog, HUF_singleStream, - workSpace, wkspSize, - NULL, NULL, 0, 0 /*bmi2*/); -} - -size_t HUF_compress1X_repeat (void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned huffLog, - void* workSpace, size_t wkspSize, - HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2) -{ - return HUF_compress_internal(dst, dstSize, src, srcSize, - maxSymbolValue, huffLog, HUF_singleStream, - workSpace, wkspSize, hufTable, - repeat, preferRepeat, bmi2); -} - -size_t HUF_compress1X (void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned huffLog) -{ - unsigned workSpace[HUF_WORKSPACE_SIZE_U32]; - return HUF_compress1X_wksp(dst, dstSize, src, srcSize, maxSymbolValue, huffLog, workSpace, sizeof(workSpace)); -} - -/* HUF_compress4X_repeat(): - * compress input using 4 streams. - * provide workspace to generate compression tables */ -size_t HUF_compress4X_wksp (void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned huffLog, - void* workSpace, size_t wkspSize) -{ - return HUF_compress_internal(dst, dstSize, src, srcSize, - maxSymbolValue, huffLog, HUF_fourStreams, - workSpace, wkspSize, - NULL, NULL, 0, 0 /*bmi2*/); -} - -/* HUF_compress4X_repeat(): - * compress input using 4 streams. - * re-use an existing huffman compression table */ -size_t HUF_compress4X_repeat (void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned huffLog, - void* workSpace, size_t wkspSize, - HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2) -{ - return HUF_compress_internal(dst, dstSize, src, srcSize, - maxSymbolValue, huffLog, HUF_fourStreams, - workSpace, wkspSize, - hufTable, repeat, preferRepeat, bmi2); -} - -size_t HUF_compress2 (void* dst, size_t dstSize, - const void* src, size_t srcSize, - unsigned maxSymbolValue, unsigned huffLog) -{ - unsigned workSpace[HUF_WORKSPACE_SIZE_U32]; - return HUF_compress4X_wksp(dst, dstSize, src, srcSize, maxSymbolValue, huffLog, workSpace, sizeof(workSpace)); -} - -size_t HUF_compress (void* dst, size_t maxDstSize, const void* src, size_t srcSize) -{ - return HUF_compress2(dst, maxDstSize, src, srcSize, 255, HUF_TABLELOG_DEFAULT); -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_compress.c b/lib/SZ3/tools/zstd/compress/zstd_compress.c deleted file mode 100644 index 3f963b1c..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_compress.c +++ /dev/null @@ -1,4278 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/*-************************************* -* Dependencies -***************************************/ -#include /* INT_MAX */ -#include /* memset */ -#include "../common/cpu.h" -#include "../common/mem.h" -#include "hist.h" /* HIST_countFast_wksp */ -#define FSE_STATIC_LINKING_ONLY /* FSE_encodeSymbol */ -#include "../common/fse.h" -#define HUF_STATIC_LINKING_ONLY -#include "../common/huf.h" -#include "zstd_compress_internal.h" -#include "zstd_compress_sequences.h" -#include "zstd_compress_literals.h" -#include "zstd_fast.h" -#include "zstd_double_fast.h" -#include "zstd_lazy.h" -#include "zstd_opt.h" -#include "zstd_ldm.h" -#include "zstd_compress_superblock.h" - - -/*-************************************* -* Helper functions -***************************************/ -/* ZSTD_compressBound() - * Note that the result from this function is only compatible with the "normal" - * full-block strategy. - * When there are a lot of small blocks due to frequent flush in streaming mode - * the overhead of headers can make the compressed data to be larger than the - * return value of ZSTD_compressBound(). - */ -size_t ZSTD_compressBound(size_t srcSize) { - return ZSTD_COMPRESSBOUND(srcSize); -} - - -/*-************************************* -* Context memory management -***************************************/ -struct ZSTD_CDict_s { - const void* dictContent; - size_t dictContentSize; - U32* entropyWorkspace; /* entropy workspace of HUF_WORKSPACE_SIZE bytes */ - ZSTD_cwksp workspace; - ZSTD_matchState_t matchState; - ZSTD_compressedBlockState_t cBlockState; - ZSTD_customMem customMem; - U32 dictID; - int compressionLevel; /* 0 indicates that advanced API was used to select CDict params */ -}; /* typedef'd to ZSTD_CDict within "zstd.h" */ - -ZSTD_CCtx* ZSTD_createCCtx(void) -{ - return ZSTD_createCCtx_advanced(ZSTD_defaultCMem); -} - -static void ZSTD_initCCtx(ZSTD_CCtx* cctx, ZSTD_customMem memManager) -{ - assert(cctx != NULL); - memset(cctx, 0, sizeof(*cctx)); - cctx->customMem = memManager; - cctx->bmi2 = ZSTD_cpuid_bmi2(ZSTD_cpuid()); - { size_t const err = ZSTD_CCtx_reset(cctx, ZSTD_reset_parameters); - assert(!ZSTD_isError(err)); - (void)err; - } -} - -ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem) -{ - ZSTD_STATIC_ASSERT(zcss_init==0); - ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_UNKNOWN==(0ULL - 1)); - if (!customMem.customAlloc ^ !customMem.customFree) return NULL; - { ZSTD_CCtx* const cctx = (ZSTD_CCtx*)ZSTD_malloc(sizeof(ZSTD_CCtx), customMem); - if (!cctx) return NULL; - ZSTD_initCCtx(cctx, customMem); - return cctx; - } -} - -ZSTD_CCtx* ZSTD_initStaticCCtx(void* workspace, size_t workspaceSize) -{ - ZSTD_cwksp ws; - ZSTD_CCtx* cctx; - if (workspaceSize <= sizeof(ZSTD_CCtx)) return NULL; /* minimum size */ - if ((size_t)workspace & 7) return NULL; /* must be 8-aligned */ - ZSTD_cwksp_init(&ws, workspace, workspaceSize); - - cctx = (ZSTD_CCtx*)ZSTD_cwksp_reserve_object(&ws, sizeof(ZSTD_CCtx)); - if (cctx == NULL) return NULL; - - memset(cctx, 0, sizeof(ZSTD_CCtx)); - ZSTD_cwksp_move(&cctx->workspace, &ws); - cctx->staticSize = workspaceSize; - - /* statically sized space. entropyWorkspace never moves (but prev/next block swap places) */ - if (!ZSTD_cwksp_check_available(&cctx->workspace, HUF_WORKSPACE_SIZE + 2 * sizeof(ZSTD_compressedBlockState_t))) return NULL; - cctx->blockState.prevCBlock = (ZSTD_compressedBlockState_t*)ZSTD_cwksp_reserve_object(&cctx->workspace, sizeof(ZSTD_compressedBlockState_t)); - cctx->blockState.nextCBlock = (ZSTD_compressedBlockState_t*)ZSTD_cwksp_reserve_object(&cctx->workspace, sizeof(ZSTD_compressedBlockState_t)); - cctx->entropyWorkspace = (U32*)ZSTD_cwksp_reserve_object(&cctx->workspace, HUF_WORKSPACE_SIZE); - cctx->bmi2 = ZSTD_cpuid_bmi2(ZSTD_cpuid()); - return cctx; -} - -/** - * Clears and frees all of the dictionaries in the CCtx. - */ -static void ZSTD_clearAllDicts(ZSTD_CCtx* cctx) -{ - ZSTD_free(cctx->localDict.dictBuffer, cctx->customMem); - ZSTD_freeCDict(cctx->localDict.cdict); - memset(&cctx->localDict, 0, sizeof(cctx->localDict)); - memset(&cctx->prefixDict, 0, sizeof(cctx->prefixDict)); - cctx->cdict = NULL; -} - -static size_t ZSTD_sizeof_localDict(ZSTD_localDict dict) -{ - size_t const bufferSize = dict.dictBuffer != NULL ? dict.dictSize : 0; - size_t const cdictSize = ZSTD_sizeof_CDict(dict.cdict); - return bufferSize + cdictSize; -} - -static void ZSTD_freeCCtxContent(ZSTD_CCtx* cctx) -{ - assert(cctx != NULL); - assert(cctx->staticSize == 0); - ZSTD_clearAllDicts(cctx); -#ifdef ZSTD_MULTITHREAD - ZSTDMT_freeCCtx(cctx->mtctx); cctx->mtctx = NULL; -#endif - ZSTD_cwksp_free(&cctx->workspace, cctx->customMem); -} - -size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx) -{ - if (cctx==NULL) return 0; /* support free on NULL */ - RETURN_ERROR_IF(cctx->staticSize, memory_allocation, - "not compatible with static CCtx"); - { - int cctxInWorkspace = ZSTD_cwksp_owns_buffer(&cctx->workspace, cctx); - ZSTD_freeCCtxContent(cctx); - if (!cctxInWorkspace) { - ZSTD_free(cctx, cctx->customMem); - } - } - return 0; -} - - -static size_t ZSTD_sizeof_mtctx(const ZSTD_CCtx* cctx) -{ -#ifdef ZSTD_MULTITHREAD - return ZSTDMT_sizeof_CCtx(cctx->mtctx); -#else - (void)cctx; - return 0; -#endif -} - - -size_t ZSTD_sizeof_CCtx(const ZSTD_CCtx* cctx) -{ - if (cctx==NULL) return 0; /* support sizeof on NULL */ - /* cctx may be in the workspace */ - return (cctx->workspace.workspace == cctx ? 0 : sizeof(*cctx)) - + ZSTD_cwksp_sizeof(&cctx->workspace) - + ZSTD_sizeof_localDict(cctx->localDict) - + ZSTD_sizeof_mtctx(cctx); -} - -size_t ZSTD_sizeof_CStream(const ZSTD_CStream* zcs) -{ - return ZSTD_sizeof_CCtx(zcs); /* same object */ -} - -/* private API call, for dictBuilder only */ -const seqStore_t* ZSTD_getSeqStore(const ZSTD_CCtx* ctx) { return &(ctx->seqStore); } - -static ZSTD_CCtx_params ZSTD_makeCCtxParamsFromCParams( - ZSTD_compressionParameters cParams) -{ - ZSTD_CCtx_params cctxParams; - memset(&cctxParams, 0, sizeof(cctxParams)); - cctxParams.cParams = cParams; - cctxParams.compressionLevel = ZSTD_CLEVEL_DEFAULT; /* should not matter, as all cParams are presumed properly defined */ - assert(!ZSTD_checkCParams(cParams)); - cctxParams.fParams.contentSizeFlag = 1; - return cctxParams; -} - -static ZSTD_CCtx_params* ZSTD_createCCtxParams_advanced( - ZSTD_customMem customMem) -{ - ZSTD_CCtx_params* params; - if (!customMem.customAlloc ^ !customMem.customFree) return NULL; - params = (ZSTD_CCtx_params*)ZSTD_calloc( - sizeof(ZSTD_CCtx_params), customMem); - if (!params) { return NULL; } - params->customMem = customMem; - params->compressionLevel = ZSTD_CLEVEL_DEFAULT; - params->fParams.contentSizeFlag = 1; - return params; -} - -ZSTD_CCtx_params* ZSTD_createCCtxParams(void) -{ - return ZSTD_createCCtxParams_advanced(ZSTD_defaultCMem); -} - -size_t ZSTD_freeCCtxParams(ZSTD_CCtx_params* params) -{ - if (params == NULL) { return 0; } - ZSTD_free(params, params->customMem); - return 0; -} - -size_t ZSTD_CCtxParams_reset(ZSTD_CCtx_params* params) -{ - return ZSTD_CCtxParams_init(params, ZSTD_CLEVEL_DEFAULT); -} - -size_t ZSTD_CCtxParams_init(ZSTD_CCtx_params* cctxParams, int compressionLevel) { - RETURN_ERROR_IF(!cctxParams, GENERIC, "NULL pointer!"); - memset(cctxParams, 0, sizeof(*cctxParams)); - cctxParams->compressionLevel = compressionLevel; - cctxParams->fParams.contentSizeFlag = 1; - return 0; -} - -size_t ZSTD_CCtxParams_init_advanced(ZSTD_CCtx_params* cctxParams, ZSTD_parameters params) -{ - RETURN_ERROR_IF(!cctxParams, GENERIC, "NULL pointer!"); - FORWARD_IF_ERROR( ZSTD_checkCParams(params.cParams) , ""); - memset(cctxParams, 0, sizeof(*cctxParams)); - assert(!ZSTD_checkCParams(params.cParams)); - cctxParams->cParams = params.cParams; - cctxParams->fParams = params.fParams; - cctxParams->compressionLevel = ZSTD_CLEVEL_DEFAULT; /* should not matter, as all cParams are presumed properly defined */ - return 0; -} - -/* ZSTD_assignParamsToCCtxParams() : - * params is presumed valid at this stage */ -static ZSTD_CCtx_params ZSTD_assignParamsToCCtxParams( - const ZSTD_CCtx_params* cctxParams, const ZSTD_parameters* params) -{ - ZSTD_CCtx_params ret = *cctxParams; - assert(!ZSTD_checkCParams(params->cParams)); - ret.cParams = params->cParams; - ret.fParams = params->fParams; - ret.compressionLevel = ZSTD_CLEVEL_DEFAULT; /* should not matter, as all cParams are presumed properly defined */ - return ret; -} - -ZSTD_bounds ZSTD_cParam_getBounds(ZSTD_cParameter param) -{ - ZSTD_bounds bounds = { 0, 0, 0 }; - - switch(param) - { - case ZSTD_c_compressionLevel: - bounds.lowerBound = ZSTD_minCLevel(); - bounds.upperBound = ZSTD_maxCLevel(); - return bounds; - - case ZSTD_c_windowLog: - bounds.lowerBound = ZSTD_WINDOWLOG_MIN; - bounds.upperBound = ZSTD_WINDOWLOG_MAX; - return bounds; - - case ZSTD_c_hashLog: - bounds.lowerBound = ZSTD_HASHLOG_MIN; - bounds.upperBound = ZSTD_HASHLOG_MAX; - return bounds; - - case ZSTD_c_chainLog: - bounds.lowerBound = ZSTD_CHAINLOG_MIN; - bounds.upperBound = ZSTD_CHAINLOG_MAX; - return bounds; - - case ZSTD_c_searchLog: - bounds.lowerBound = ZSTD_SEARCHLOG_MIN; - bounds.upperBound = ZSTD_SEARCHLOG_MAX; - return bounds; - - case ZSTD_c_minMatch: - bounds.lowerBound = ZSTD_MINMATCH_MIN; - bounds.upperBound = ZSTD_MINMATCH_MAX; - return bounds; - - case ZSTD_c_targetLength: - bounds.lowerBound = ZSTD_TARGETLENGTH_MIN; - bounds.upperBound = ZSTD_TARGETLENGTH_MAX; - return bounds; - - case ZSTD_c_strategy: - bounds.lowerBound = ZSTD_STRATEGY_MIN; - bounds.upperBound = ZSTD_STRATEGY_MAX; - return bounds; - - case ZSTD_c_contentSizeFlag: - bounds.lowerBound = 0; - bounds.upperBound = 1; - return bounds; - - case ZSTD_c_checksumFlag: - bounds.lowerBound = 0; - bounds.upperBound = 1; - return bounds; - - case ZSTD_c_dictIDFlag: - bounds.lowerBound = 0; - bounds.upperBound = 1; - return bounds; - - case ZSTD_c_nbWorkers: - bounds.lowerBound = 0; -#ifdef ZSTD_MULTITHREAD - bounds.upperBound = ZSTDMT_NBWORKERS_MAX; -#else - bounds.upperBound = 0; -#endif - return bounds; - - case ZSTD_c_jobSize: - bounds.lowerBound = 0; -#ifdef ZSTD_MULTITHREAD - bounds.upperBound = ZSTDMT_JOBSIZE_MAX; -#else - bounds.upperBound = 0; -#endif - return bounds; - - case ZSTD_c_overlapLog: -#ifdef ZSTD_MULTITHREAD - bounds.lowerBound = ZSTD_OVERLAPLOG_MIN; - bounds.upperBound = ZSTD_OVERLAPLOG_MAX; -#else - bounds.lowerBound = 0; - bounds.upperBound = 0; -#endif - return bounds; - - case ZSTD_c_enableLongDistanceMatching: - bounds.lowerBound = 0; - bounds.upperBound = 1; - return bounds; - - case ZSTD_c_ldmHashLog: - bounds.lowerBound = ZSTD_LDM_HASHLOG_MIN; - bounds.upperBound = ZSTD_LDM_HASHLOG_MAX; - return bounds; - - case ZSTD_c_ldmMinMatch: - bounds.lowerBound = ZSTD_LDM_MINMATCH_MIN; - bounds.upperBound = ZSTD_LDM_MINMATCH_MAX; - return bounds; - - case ZSTD_c_ldmBucketSizeLog: - bounds.lowerBound = ZSTD_LDM_BUCKETSIZELOG_MIN; - bounds.upperBound = ZSTD_LDM_BUCKETSIZELOG_MAX; - return bounds; - - case ZSTD_c_ldmHashRateLog: - bounds.lowerBound = ZSTD_LDM_HASHRATELOG_MIN; - bounds.upperBound = ZSTD_LDM_HASHRATELOG_MAX; - return bounds; - - /* experimental parameters */ - case ZSTD_c_rsyncable: - bounds.lowerBound = 0; - bounds.upperBound = 1; - return bounds; - - case ZSTD_c_forceMaxWindow : - bounds.lowerBound = 0; - bounds.upperBound = 1; - return bounds; - - case ZSTD_c_format: - ZSTD_STATIC_ASSERT(ZSTD_f_zstd1 < ZSTD_f_zstd1_magicless); - bounds.lowerBound = ZSTD_f_zstd1; - bounds.upperBound = ZSTD_f_zstd1_magicless; /* note : how to ensure at compile time that this is the highest value enum ? */ - return bounds; - - case ZSTD_c_forceAttachDict: - ZSTD_STATIC_ASSERT(ZSTD_dictDefaultAttach < ZSTD_dictForceCopy); - bounds.lowerBound = ZSTD_dictDefaultAttach; - bounds.upperBound = ZSTD_dictForceLoad; /* note : how to ensure at compile time that this is the highest value enum ? */ - return bounds; - - case ZSTD_c_literalCompressionMode: - ZSTD_STATIC_ASSERT(ZSTD_lcm_auto < ZSTD_lcm_huffman && ZSTD_lcm_huffman < ZSTD_lcm_uncompressed); - bounds.lowerBound = ZSTD_lcm_auto; - bounds.upperBound = ZSTD_lcm_uncompressed; - return bounds; - - case ZSTD_c_targetCBlockSize: - bounds.lowerBound = ZSTD_TARGETCBLOCKSIZE_MIN; - bounds.upperBound = ZSTD_TARGETCBLOCKSIZE_MAX; - return bounds; - - case ZSTD_c_srcSizeHint: - bounds.lowerBound = ZSTD_SRCSIZEHINT_MIN; - bounds.upperBound = ZSTD_SRCSIZEHINT_MAX; - return bounds; - - default: - bounds.error = ERROR(parameter_unsupported); - return bounds; - } -} - -/* ZSTD_cParam_clampBounds: - * Clamps the value into the bounded range. - */ -static size_t ZSTD_cParam_clampBounds(ZSTD_cParameter cParam, int* value) -{ - ZSTD_bounds const bounds = ZSTD_cParam_getBounds(cParam); - if (ZSTD_isError(bounds.error)) return bounds.error; - if (*value < bounds.lowerBound) *value = bounds.lowerBound; - if (*value > bounds.upperBound) *value = bounds.upperBound; - return 0; -} - -#define BOUNDCHECK(cParam, val) { \ - RETURN_ERROR_IF(!ZSTD_cParam_withinBounds(cParam,val), \ - parameter_outOfBound, "Param out of bounds"); \ -} - - -static int ZSTD_isUpdateAuthorized(ZSTD_cParameter param) -{ - switch(param) - { - case ZSTD_c_compressionLevel: - case ZSTD_c_hashLog: - case ZSTD_c_chainLog: - case ZSTD_c_searchLog: - case ZSTD_c_minMatch: - case ZSTD_c_targetLength: - case ZSTD_c_strategy: - return 1; - - case ZSTD_c_format: - case ZSTD_c_windowLog: - case ZSTD_c_contentSizeFlag: - case ZSTD_c_checksumFlag: - case ZSTD_c_dictIDFlag: - case ZSTD_c_forceMaxWindow : - case ZSTD_c_nbWorkers: - case ZSTD_c_jobSize: - case ZSTD_c_overlapLog: - case ZSTD_c_rsyncable: - case ZSTD_c_enableLongDistanceMatching: - case ZSTD_c_ldmHashLog: - case ZSTD_c_ldmMinMatch: - case ZSTD_c_ldmBucketSizeLog: - case ZSTD_c_ldmHashRateLog: - case ZSTD_c_forceAttachDict: - case ZSTD_c_literalCompressionMode: - case ZSTD_c_targetCBlockSize: - case ZSTD_c_srcSizeHint: - default: - return 0; - } -} - -size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value) -{ - DEBUGLOG(4, "ZSTD_CCtx_setParameter (%i, %i)", (int)param, value); - if (cctx->streamStage != zcss_init) { - if (ZSTD_isUpdateAuthorized(param)) { - cctx->cParamsChanged = 1; - } else { - RETURN_ERROR(stage_wrong, "can only set params in ctx init stage"); - } } - - switch(param) - { - case ZSTD_c_nbWorkers: - RETURN_ERROR_IF((value!=0) && cctx->staticSize, parameter_unsupported, - "MT not compatible with static alloc"); - break; - - case ZSTD_c_compressionLevel: - case ZSTD_c_windowLog: - case ZSTD_c_hashLog: - case ZSTD_c_chainLog: - case ZSTD_c_searchLog: - case ZSTD_c_minMatch: - case ZSTD_c_targetLength: - case ZSTD_c_strategy: - case ZSTD_c_ldmHashRateLog: - case ZSTD_c_format: - case ZSTD_c_contentSizeFlag: - case ZSTD_c_checksumFlag: - case ZSTD_c_dictIDFlag: - case ZSTD_c_forceMaxWindow: - case ZSTD_c_forceAttachDict: - case ZSTD_c_literalCompressionMode: - case ZSTD_c_jobSize: - case ZSTD_c_overlapLog: - case ZSTD_c_rsyncable: - case ZSTD_c_enableLongDistanceMatching: - case ZSTD_c_ldmHashLog: - case ZSTD_c_ldmMinMatch: - case ZSTD_c_ldmBucketSizeLog: - case ZSTD_c_targetCBlockSize: - case ZSTD_c_srcSizeHint: - break; - - default: RETURN_ERROR(parameter_unsupported, "unknown parameter"); - } - return ZSTD_CCtxParams_setParameter(&cctx->requestedParams, param, value); -} - -size_t ZSTD_CCtxParams_setParameter(ZSTD_CCtx_params* CCtxParams, - ZSTD_cParameter param, int value) -{ - DEBUGLOG(4, "ZSTD_CCtxParams_setParameter (%i, %i)", (int)param, value); - switch(param) - { - case ZSTD_c_format : - BOUNDCHECK(ZSTD_c_format, value); - CCtxParams->format = (ZSTD_format_e)value; - return (size_t)CCtxParams->format; - - case ZSTD_c_compressionLevel : { - FORWARD_IF_ERROR(ZSTD_cParam_clampBounds(param, &value), ""); - if (value) { /* 0 : does not change current level */ - CCtxParams->compressionLevel = value; - } - if (CCtxParams->compressionLevel >= 0) return (size_t)CCtxParams->compressionLevel; - return 0; /* return type (size_t) cannot represent negative values */ - } - - case ZSTD_c_windowLog : - if (value!=0) /* 0 => use default */ - BOUNDCHECK(ZSTD_c_windowLog, value); - CCtxParams->cParams.windowLog = (U32)value; - return CCtxParams->cParams.windowLog; - - case ZSTD_c_hashLog : - if (value!=0) /* 0 => use default */ - BOUNDCHECK(ZSTD_c_hashLog, value); - CCtxParams->cParams.hashLog = (U32)value; - return CCtxParams->cParams.hashLog; - - case ZSTD_c_chainLog : - if (value!=0) /* 0 => use default */ - BOUNDCHECK(ZSTD_c_chainLog, value); - CCtxParams->cParams.chainLog = (U32)value; - return CCtxParams->cParams.chainLog; - - case ZSTD_c_searchLog : - if (value!=0) /* 0 => use default */ - BOUNDCHECK(ZSTD_c_searchLog, value); - CCtxParams->cParams.searchLog = (U32)value; - return (size_t)value; - - case ZSTD_c_minMatch : - if (value!=0) /* 0 => use default */ - BOUNDCHECK(ZSTD_c_minMatch, value); - CCtxParams->cParams.minMatch = value; - return CCtxParams->cParams.minMatch; - - case ZSTD_c_targetLength : - BOUNDCHECK(ZSTD_c_targetLength, value); - CCtxParams->cParams.targetLength = value; - return CCtxParams->cParams.targetLength; - - case ZSTD_c_strategy : - if (value!=0) /* 0 => use default */ - BOUNDCHECK(ZSTD_c_strategy, value); - CCtxParams->cParams.strategy = (ZSTD_strategy)value; - return (size_t)CCtxParams->cParams.strategy; - - case ZSTD_c_contentSizeFlag : - /* Content size written in frame header _when known_ (default:1) */ - DEBUGLOG(4, "set content size flag = %u", (value!=0)); - CCtxParams->fParams.contentSizeFlag = value != 0; - return CCtxParams->fParams.contentSizeFlag; - - case ZSTD_c_checksumFlag : - /* A 32-bits content checksum will be calculated and written at end of frame (default:0) */ - CCtxParams->fParams.checksumFlag = value != 0; - return CCtxParams->fParams.checksumFlag; - - case ZSTD_c_dictIDFlag : /* When applicable, dictionary's dictID is provided in frame header (default:1) */ - DEBUGLOG(4, "set dictIDFlag = %u", (value!=0)); - CCtxParams->fParams.noDictIDFlag = !value; - return !CCtxParams->fParams.noDictIDFlag; - - case ZSTD_c_forceMaxWindow : - CCtxParams->forceWindow = (value != 0); - return CCtxParams->forceWindow; - - case ZSTD_c_forceAttachDict : { - const ZSTD_dictAttachPref_e pref = (ZSTD_dictAttachPref_e)value; - BOUNDCHECK(ZSTD_c_forceAttachDict, pref); - CCtxParams->attachDictPref = pref; - return CCtxParams->attachDictPref; - } - - case ZSTD_c_literalCompressionMode : { - const ZSTD_literalCompressionMode_e lcm = (ZSTD_literalCompressionMode_e)value; - BOUNDCHECK(ZSTD_c_literalCompressionMode, lcm); - CCtxParams->literalCompressionMode = lcm; - return CCtxParams->literalCompressionMode; - } - - case ZSTD_c_nbWorkers : -#ifndef ZSTD_MULTITHREAD - RETURN_ERROR_IF(value!=0, parameter_unsupported, "not compiled with multithreading"); - return 0; -#else - FORWARD_IF_ERROR(ZSTD_cParam_clampBounds(param, &value), ""); - CCtxParams->nbWorkers = value; - return CCtxParams->nbWorkers; -#endif - - case ZSTD_c_jobSize : -#ifndef ZSTD_MULTITHREAD - RETURN_ERROR_IF(value!=0, parameter_unsupported, "not compiled with multithreading"); - return 0; -#else - /* Adjust to the minimum non-default value. */ - if (value != 0 && value < ZSTDMT_JOBSIZE_MIN) - value = ZSTDMT_JOBSIZE_MIN; - FORWARD_IF_ERROR(ZSTD_cParam_clampBounds(param, &value), ""); - assert(value >= 0); - CCtxParams->jobSize = value; - return CCtxParams->jobSize; -#endif - - case ZSTD_c_overlapLog : -#ifndef ZSTD_MULTITHREAD - RETURN_ERROR_IF(value!=0, parameter_unsupported, "not compiled with multithreading"); - return 0; -#else - FORWARD_IF_ERROR(ZSTD_cParam_clampBounds(ZSTD_c_overlapLog, &value), ""); - CCtxParams->overlapLog = value; - return CCtxParams->overlapLog; -#endif - - case ZSTD_c_rsyncable : -#ifndef ZSTD_MULTITHREAD - RETURN_ERROR_IF(value!=0, parameter_unsupported, "not compiled with multithreading"); - return 0; -#else - FORWARD_IF_ERROR(ZSTD_cParam_clampBounds(ZSTD_c_overlapLog, &value), ""); - CCtxParams->rsyncable = value; - return CCtxParams->rsyncable; -#endif - - case ZSTD_c_enableLongDistanceMatching : - CCtxParams->ldmParams.enableLdm = (value!=0); - return CCtxParams->ldmParams.enableLdm; - - case ZSTD_c_ldmHashLog : - if (value!=0) /* 0 ==> auto */ - BOUNDCHECK(ZSTD_c_ldmHashLog, value); - CCtxParams->ldmParams.hashLog = value; - return CCtxParams->ldmParams.hashLog; - - case ZSTD_c_ldmMinMatch : - if (value!=0) /* 0 ==> default */ - BOUNDCHECK(ZSTD_c_ldmMinMatch, value); - CCtxParams->ldmParams.minMatchLength = value; - return CCtxParams->ldmParams.minMatchLength; - - case ZSTD_c_ldmBucketSizeLog : - if (value!=0) /* 0 ==> default */ - BOUNDCHECK(ZSTD_c_ldmBucketSizeLog, value); - CCtxParams->ldmParams.bucketSizeLog = value; - return CCtxParams->ldmParams.bucketSizeLog; - - case ZSTD_c_ldmHashRateLog : - RETURN_ERROR_IF(value > ZSTD_WINDOWLOG_MAX - ZSTD_HASHLOG_MIN, - parameter_outOfBound, "Param out of bounds!"); - CCtxParams->ldmParams.hashRateLog = value; - return CCtxParams->ldmParams.hashRateLog; - - case ZSTD_c_targetCBlockSize : - if (value!=0) /* 0 ==> default */ - BOUNDCHECK(ZSTD_c_targetCBlockSize, value); - CCtxParams->targetCBlockSize = value; - return CCtxParams->targetCBlockSize; - - case ZSTD_c_srcSizeHint : - if (value!=0) /* 0 ==> default */ - BOUNDCHECK(ZSTD_c_srcSizeHint, value); - CCtxParams->srcSizeHint = value; - return CCtxParams->srcSizeHint; - - default: RETURN_ERROR(parameter_unsupported, "unknown parameter"); - } -} - -size_t ZSTD_CCtx_getParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int* value) -{ - return ZSTD_CCtxParams_getParameter(&cctx->requestedParams, param, value); -} - -size_t ZSTD_CCtxParams_getParameter( - ZSTD_CCtx_params* CCtxParams, ZSTD_cParameter param, int* value) -{ - switch(param) - { - case ZSTD_c_format : - *value = CCtxParams->format; - break; - case ZSTD_c_compressionLevel : - *value = CCtxParams->compressionLevel; - break; - case ZSTD_c_windowLog : - *value = (int)CCtxParams->cParams.windowLog; - break; - case ZSTD_c_hashLog : - *value = (int)CCtxParams->cParams.hashLog; - break; - case ZSTD_c_chainLog : - *value = (int)CCtxParams->cParams.chainLog; - break; - case ZSTD_c_searchLog : - *value = CCtxParams->cParams.searchLog; - break; - case ZSTD_c_minMatch : - *value = CCtxParams->cParams.minMatch; - break; - case ZSTD_c_targetLength : - *value = CCtxParams->cParams.targetLength; - break; - case ZSTD_c_strategy : - *value = (unsigned)CCtxParams->cParams.strategy; - break; - case ZSTD_c_contentSizeFlag : - *value = CCtxParams->fParams.contentSizeFlag; - break; - case ZSTD_c_checksumFlag : - *value = CCtxParams->fParams.checksumFlag; - break; - case ZSTD_c_dictIDFlag : - *value = !CCtxParams->fParams.noDictIDFlag; - break; - case ZSTD_c_forceMaxWindow : - *value = CCtxParams->forceWindow; - break; - case ZSTD_c_forceAttachDict : - *value = CCtxParams->attachDictPref; - break; - case ZSTD_c_literalCompressionMode : - *value = CCtxParams->literalCompressionMode; - break; - case ZSTD_c_nbWorkers : -#ifndef ZSTD_MULTITHREAD - assert(CCtxParams->nbWorkers == 0); -#endif - *value = CCtxParams->nbWorkers; - break; - case ZSTD_c_jobSize : -#ifndef ZSTD_MULTITHREAD - RETURN_ERROR(parameter_unsupported, "not compiled with multithreading"); -#else - assert(CCtxParams->jobSize <= INT_MAX); - *value = (int)CCtxParams->jobSize; - break; -#endif - case ZSTD_c_overlapLog : -#ifndef ZSTD_MULTITHREAD - RETURN_ERROR(parameter_unsupported, "not compiled with multithreading"); -#else - *value = CCtxParams->overlapLog; - break; -#endif - case ZSTD_c_rsyncable : -#ifndef ZSTD_MULTITHREAD - RETURN_ERROR(parameter_unsupported, "not compiled with multithreading"); -#else - *value = CCtxParams->rsyncable; - break; -#endif - case ZSTD_c_enableLongDistanceMatching : - *value = CCtxParams->ldmParams.enableLdm; - break; - case ZSTD_c_ldmHashLog : - *value = CCtxParams->ldmParams.hashLog; - break; - case ZSTD_c_ldmMinMatch : - *value = CCtxParams->ldmParams.minMatchLength; - break; - case ZSTD_c_ldmBucketSizeLog : - *value = CCtxParams->ldmParams.bucketSizeLog; - break; - case ZSTD_c_ldmHashRateLog : - *value = CCtxParams->ldmParams.hashRateLog; - break; - case ZSTD_c_targetCBlockSize : - *value = (int)CCtxParams->targetCBlockSize; - break; - case ZSTD_c_srcSizeHint : - *value = (int)CCtxParams->srcSizeHint; - break; - default: RETURN_ERROR(parameter_unsupported, "unknown parameter"); - } - return 0; -} - -/** ZSTD_CCtx_setParametersUsingCCtxParams() : - * just applies `params` into `cctx` - * no action is performed, parameters are merely stored. - * If ZSTDMT is enabled, parameters are pushed to cctx->mtctx. - * This is possible even if a compression is ongoing. - * In which case, new parameters will be applied on the fly, starting with next compression job. - */ -size_t ZSTD_CCtx_setParametersUsingCCtxParams( - ZSTD_CCtx* cctx, const ZSTD_CCtx_params* params) -{ - DEBUGLOG(4, "ZSTD_CCtx_setParametersUsingCCtxParams"); - RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, - "The context is in the wrong stage!"); - RETURN_ERROR_IF(cctx->cdict, stage_wrong, - "Can't override parameters with cdict attached (some must " - "be inherited from the cdict)."); - - cctx->requestedParams = *params; - return 0; -} - -ZSTDLIB_API size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, unsigned long long pledgedSrcSize) -{ - DEBUGLOG(4, "ZSTD_CCtx_setPledgedSrcSize to %u bytes", (U32)pledgedSrcSize); - RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, - "Can't set pledgedSrcSize when not in init stage."); - cctx->pledgedSrcSizePlusOne = pledgedSrcSize+1; - return 0; -} - -/** - * Initializes the local dict using the requested parameters. - * NOTE: This does not use the pledged src size, because it may be used for more - * than one compression. - */ -static size_t ZSTD_initLocalDict(ZSTD_CCtx* cctx) -{ - ZSTD_localDict* const dl = &cctx->localDict; - ZSTD_compressionParameters const cParams = ZSTD_getCParamsFromCCtxParams( - &cctx->requestedParams, ZSTD_CONTENTSIZE_UNKNOWN, dl->dictSize); - if (dl->dict == NULL) { - /* No local dictionary. */ - assert(dl->dictBuffer == NULL); - assert(dl->cdict == NULL); - assert(dl->dictSize == 0); - return 0; - } - if (dl->cdict != NULL) { - assert(cctx->cdict == dl->cdict); - /* Local dictionary already initialized. */ - return 0; - } - assert(dl->dictSize > 0); - assert(cctx->cdict == NULL); - assert(cctx->prefixDict.dict == NULL); - - dl->cdict = ZSTD_createCDict_advanced( - dl->dict, - dl->dictSize, - ZSTD_dlm_byRef, - dl->dictContentType, - cParams, - cctx->customMem); - RETURN_ERROR_IF(!dl->cdict, memory_allocation, "ZSTD_createCDict_advanced failed"); - cctx->cdict = dl->cdict; - return 0; -} - -size_t ZSTD_CCtx_loadDictionary_advanced( - ZSTD_CCtx* cctx, const void* dict, size_t dictSize, - ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType) -{ - RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, - "Can't load a dictionary when ctx is not in init stage."); - RETURN_ERROR_IF(cctx->staticSize, memory_allocation, - "no malloc for static CCtx"); - DEBUGLOG(4, "ZSTD_CCtx_loadDictionary_advanced (size: %u)", (U32)dictSize); - ZSTD_clearAllDicts(cctx); /* in case one already exists */ - if (dict == NULL || dictSize == 0) /* no dictionary mode */ - return 0; - if (dictLoadMethod == ZSTD_dlm_byRef) { - cctx->localDict.dict = dict; - } else { - void* dictBuffer = ZSTD_malloc(dictSize, cctx->customMem); - RETURN_ERROR_IF(!dictBuffer, memory_allocation, "NULL pointer!"); - memcpy(dictBuffer, dict, dictSize); - cctx->localDict.dictBuffer = dictBuffer; - cctx->localDict.dict = dictBuffer; - } - cctx->localDict.dictSize = dictSize; - cctx->localDict.dictContentType = dictContentType; - return 0; -} - -ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary_byReference( - ZSTD_CCtx* cctx, const void* dict, size_t dictSize) -{ - return ZSTD_CCtx_loadDictionary_advanced( - cctx, dict, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto); -} - -ZSTDLIB_API size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, const void* dict, size_t dictSize) -{ - return ZSTD_CCtx_loadDictionary_advanced( - cctx, dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto); -} - - -size_t ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict) -{ - RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, - "Can't ref a dict when ctx not in init stage."); - /* Free the existing local cdict (if any) to save memory. */ - ZSTD_clearAllDicts(cctx); - cctx->cdict = cdict; - return 0; -} - -size_t ZSTD_CCtx_refPrefix(ZSTD_CCtx* cctx, const void* prefix, size_t prefixSize) -{ - return ZSTD_CCtx_refPrefix_advanced(cctx, prefix, prefixSize, ZSTD_dct_rawContent); -} - -size_t ZSTD_CCtx_refPrefix_advanced( - ZSTD_CCtx* cctx, const void* prefix, size_t prefixSize, ZSTD_dictContentType_e dictContentType) -{ - RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, - "Can't ref a prefix when ctx not in init stage."); - ZSTD_clearAllDicts(cctx); - if (prefix != NULL && prefixSize > 0) { - cctx->prefixDict.dict = prefix; - cctx->prefixDict.dictSize = prefixSize; - cctx->prefixDict.dictContentType = dictContentType; - } - return 0; -} - -/*! ZSTD_CCtx_reset() : - * Also dumps dictionary */ -size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset) -{ - if ( (reset == ZSTD_reset_session_only) - || (reset == ZSTD_reset_session_and_parameters) ) { - cctx->streamStage = zcss_init; - cctx->pledgedSrcSizePlusOne = 0; - } - if ( (reset == ZSTD_reset_parameters) - || (reset == ZSTD_reset_session_and_parameters) ) { - RETURN_ERROR_IF(cctx->streamStage != zcss_init, stage_wrong, - "Can't reset parameters only when not in init stage."); - ZSTD_clearAllDicts(cctx); - return ZSTD_CCtxParams_reset(&cctx->requestedParams); - } - return 0; -} - - -/** ZSTD_checkCParams() : - control CParam values remain within authorized range. - @return : 0, or an error code if one value is beyond authorized range */ -size_t ZSTD_checkCParams(ZSTD_compressionParameters cParams) -{ - BOUNDCHECK(ZSTD_c_windowLog, (int)cParams.windowLog); - BOUNDCHECK(ZSTD_c_chainLog, (int)cParams.chainLog); - BOUNDCHECK(ZSTD_c_hashLog, (int)cParams.hashLog); - BOUNDCHECK(ZSTD_c_searchLog, (int)cParams.searchLog); - BOUNDCHECK(ZSTD_c_minMatch, (int)cParams.minMatch); - BOUNDCHECK(ZSTD_c_targetLength,(int)cParams.targetLength); - BOUNDCHECK(ZSTD_c_strategy, cParams.strategy); - return 0; -} - -/** ZSTD_clampCParams() : - * make CParam values within valid range. - * @return : valid CParams */ -static ZSTD_compressionParameters -ZSTD_clampCParams(ZSTD_compressionParameters cParams) -{ -# define CLAMP_TYPE(cParam, val, type) { \ - ZSTD_bounds const bounds = ZSTD_cParam_getBounds(cParam); \ - if ((int)valbounds.upperBound) val=(type)bounds.upperBound; \ - } -# define CLAMP(cParam, val) CLAMP_TYPE(cParam, val, unsigned) - CLAMP(ZSTD_c_windowLog, cParams.windowLog); - CLAMP(ZSTD_c_chainLog, cParams.chainLog); - CLAMP(ZSTD_c_hashLog, cParams.hashLog); - CLAMP(ZSTD_c_searchLog, cParams.searchLog); - CLAMP(ZSTD_c_minMatch, cParams.minMatch); - CLAMP(ZSTD_c_targetLength,cParams.targetLength); - CLAMP_TYPE(ZSTD_c_strategy,cParams.strategy, ZSTD_strategy); - return cParams; -} - -/** ZSTD_cycleLog() : - * condition for correct operation : hashLog > 1 */ -U32 ZSTD_cycleLog(U32 hashLog, ZSTD_strategy strat) -{ - U32 const btScale = ((U32)strat >= (U32)ZSTD_btlazy2); - return hashLog - btScale; -} - -/** ZSTD_adjustCParams_internal() : - * optimize `cPar` for a specified input (`srcSize` and `dictSize`). - * mostly downsize to reduce memory consumption and initialization latency. - * `srcSize` can be ZSTD_CONTENTSIZE_UNKNOWN when not known. - * note : `srcSize==0` means 0! - * condition : cPar is presumed validated (can be checked using ZSTD_checkCParams()). */ -static ZSTD_compressionParameters -ZSTD_adjustCParams_internal(ZSTD_compressionParameters cPar, - unsigned long long srcSize, - size_t dictSize) -{ - static const U64 minSrcSize = 513; /* (1<<9) + 1 */ - static const U64 maxWindowResize = 1ULL << (ZSTD_WINDOWLOG_MAX-1); - assert(ZSTD_checkCParams(cPar)==0); - - if (dictSize && srcSize == ZSTD_CONTENTSIZE_UNKNOWN) - srcSize = minSrcSize; - - /* resize windowLog if input is small enough, to use less memory */ - if ( (srcSize < maxWindowResize) - && (dictSize < maxWindowResize) ) { - U32 const tSize = (U32)(srcSize + dictSize); - static U32 const hashSizeMin = 1 << ZSTD_HASHLOG_MIN; - U32 const srcLog = (tSize < hashSizeMin) ? ZSTD_HASHLOG_MIN : - ZSTD_highbit32(tSize-1) + 1; - if (cPar.windowLog > srcLog) cPar.windowLog = srcLog; - } - if (cPar.hashLog > cPar.windowLog+1) cPar.hashLog = cPar.windowLog+1; - { U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); - if (cycleLog > cPar.windowLog) - cPar.chainLog -= (cycleLog - cPar.windowLog); - } - - if (cPar.windowLog < ZSTD_WINDOWLOG_ABSOLUTEMIN) - cPar.windowLog = ZSTD_WINDOWLOG_ABSOLUTEMIN; /* minimum wlog required for valid frame header */ - - return cPar; -} - -ZSTD_compressionParameters -ZSTD_adjustCParams(ZSTD_compressionParameters cPar, - unsigned long long srcSize, - size_t dictSize) -{ - cPar = ZSTD_clampCParams(cPar); /* resulting cPar is necessarily valid (all parameters within range) */ - if (srcSize == 0) srcSize = ZSTD_CONTENTSIZE_UNKNOWN; - return ZSTD_adjustCParams_internal(cPar, srcSize, dictSize); -} - -static ZSTD_compressionParameters ZSTD_getCParams_internal(int compressionLevel, unsigned long long srcSizeHint, size_t dictSize); -static ZSTD_parameters ZSTD_getParams_internal(int compressionLevel, unsigned long long srcSizeHint, size_t dictSize); - -ZSTD_compressionParameters ZSTD_getCParamsFromCCtxParams( - const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize) -{ - ZSTD_compressionParameters cParams; - if (srcSizeHint == ZSTD_CONTENTSIZE_UNKNOWN && CCtxParams->srcSizeHint > 0) { - srcSizeHint = CCtxParams->srcSizeHint; - } - cParams = ZSTD_getCParams_internal(CCtxParams->compressionLevel, srcSizeHint, dictSize); - if (CCtxParams->ldmParams.enableLdm) cParams.windowLog = ZSTD_LDM_DEFAULT_WINDOW_LOG; - if (CCtxParams->cParams.windowLog) cParams.windowLog = CCtxParams->cParams.windowLog; - if (CCtxParams->cParams.hashLog) cParams.hashLog = CCtxParams->cParams.hashLog; - if (CCtxParams->cParams.chainLog) cParams.chainLog = CCtxParams->cParams.chainLog; - if (CCtxParams->cParams.searchLog) cParams.searchLog = CCtxParams->cParams.searchLog; - if (CCtxParams->cParams.minMatch) cParams.minMatch = CCtxParams->cParams.minMatch; - if (CCtxParams->cParams.targetLength) cParams.targetLength = CCtxParams->cParams.targetLength; - if (CCtxParams->cParams.strategy) cParams.strategy = CCtxParams->cParams.strategy; - assert(!ZSTD_checkCParams(cParams)); - /* srcSizeHint == 0 means 0 */ - return ZSTD_adjustCParams_internal(cParams, srcSizeHint, dictSize); -} - -static size_t -ZSTD_sizeof_matchState(const ZSTD_compressionParameters* const cParams, - const U32 forCCtx) -{ - size_t const chainSize = (cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cParams->chainLog); - size_t const hSize = ((size_t)1) << cParams->hashLog; - U32 const hashLog3 = (forCCtx && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0; - size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; - /* We don't use ZSTD_cwksp_alloc_size() here because the tables aren't - * surrounded by redzones in ASAN. */ - size_t const tableSpace = chainSize * sizeof(U32) - + hSize * sizeof(U32) - + h3Size * sizeof(U32); - size_t const optPotentialSpace = - ZSTD_cwksp_alloc_size((MaxML+1) * sizeof(U32)) - + ZSTD_cwksp_alloc_size((MaxLL+1) * sizeof(U32)) - + ZSTD_cwksp_alloc_size((MaxOff+1) * sizeof(U32)) - + ZSTD_cwksp_alloc_size((1<strategy >= ZSTD_btopt)) - ? optPotentialSpace - : 0; - DEBUGLOG(4, "chainSize: %u - hSize: %u - h3Size: %u", - (U32)chainSize, (U32)hSize, (U32)h3Size); - return tableSpace + optSpace; -} - -size_t ZSTD_estimateCCtxSize_usingCCtxParams(const ZSTD_CCtx_params* params) -{ - RETURN_ERROR_IF(params->nbWorkers > 0, GENERIC, "Estimate CCtx size is supported for single-threaded compression only."); - { ZSTD_compressionParameters const cParams = - ZSTD_getCParamsFromCCtxParams(params, ZSTD_CONTENTSIZE_UNKNOWN, 0); - size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << cParams.windowLog); - U32 const divider = (cParams.minMatch==3) ? 3 : 4; - size_t const maxNbSeq = blockSize / divider; - size_t const tokenSpace = ZSTD_cwksp_alloc_size(WILDCOPY_OVERLENGTH + blockSize) - + ZSTD_cwksp_alloc_size(maxNbSeq * sizeof(seqDef)) - + 3 * ZSTD_cwksp_alloc_size(maxNbSeq * sizeof(BYTE)); - size_t const entropySpace = ZSTD_cwksp_alloc_size(HUF_WORKSPACE_SIZE); - size_t const blockStateSpace = 2 * ZSTD_cwksp_alloc_size(sizeof(ZSTD_compressedBlockState_t)); - size_t const matchStateSize = ZSTD_sizeof_matchState(&cParams, /* forCCtx */ 1); - - size_t const ldmSpace = ZSTD_ldm_getTableSize(params->ldmParams); - size_t const ldmSeqSpace = ZSTD_cwksp_alloc_size(ZSTD_ldm_getMaxNbSeq(params->ldmParams, blockSize) * sizeof(rawSeq)); - - /* estimateCCtxSize is for one-shot compression. So no buffers should - * be needed. However, we still allocate two 0-sized buffers, which can - * take space under ASAN. */ - size_t const bufferSpace = ZSTD_cwksp_alloc_size(0) - + ZSTD_cwksp_alloc_size(0); - - size_t const cctxSpace = ZSTD_cwksp_alloc_size(sizeof(ZSTD_CCtx)); - - size_t const neededSpace = - cctxSpace + - entropySpace + - blockStateSpace + - ldmSpace + - ldmSeqSpace + - matchStateSize + - tokenSpace + - bufferSpace; - - DEBUGLOG(5, "estimate workspace : %u", (U32)neededSpace); - return neededSpace; - } -} - -size_t ZSTD_estimateCCtxSize_usingCParams(ZSTD_compressionParameters cParams) -{ - ZSTD_CCtx_params const params = ZSTD_makeCCtxParamsFromCParams(cParams); - return ZSTD_estimateCCtxSize_usingCCtxParams(¶ms); -} - -static size_t ZSTD_estimateCCtxSize_internal(int compressionLevel) -{ - ZSTD_compressionParameters const cParams = ZSTD_getCParams_internal(compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN, 0); - return ZSTD_estimateCCtxSize_usingCParams(cParams); -} - -size_t ZSTD_estimateCCtxSize(int compressionLevel) -{ - int level; - size_t memBudget = 0; - for (level=MIN(compressionLevel, 1); level<=compressionLevel; level++) { - size_t const newMB = ZSTD_estimateCCtxSize_internal(level); - if (newMB > memBudget) memBudget = newMB; - } - return memBudget; -} - -size_t ZSTD_estimateCStreamSize_usingCCtxParams(const ZSTD_CCtx_params* params) -{ - RETURN_ERROR_IF(params->nbWorkers > 0, GENERIC, "Estimate CCtx size is supported for single-threaded compression only."); - { ZSTD_compressionParameters const cParams = - ZSTD_getCParamsFromCCtxParams(params, ZSTD_CONTENTSIZE_UNKNOWN, 0); - size_t const CCtxSize = ZSTD_estimateCCtxSize_usingCCtxParams(params); - size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, (size_t)1 << cParams.windowLog); - size_t const inBuffSize = ((size_t)1 << cParams.windowLog) + blockSize; - size_t const outBuffSize = ZSTD_compressBound(blockSize) + 1; - size_t const streamingSize = ZSTD_cwksp_alloc_size(inBuffSize) - + ZSTD_cwksp_alloc_size(outBuffSize); - - return CCtxSize + streamingSize; - } -} - -size_t ZSTD_estimateCStreamSize_usingCParams(ZSTD_compressionParameters cParams) -{ - ZSTD_CCtx_params const params = ZSTD_makeCCtxParamsFromCParams(cParams); - return ZSTD_estimateCStreamSize_usingCCtxParams(¶ms); -} - -static size_t ZSTD_estimateCStreamSize_internal(int compressionLevel) -{ - ZSTD_compressionParameters const cParams = ZSTD_getCParams_internal(compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN, 0); - return ZSTD_estimateCStreamSize_usingCParams(cParams); -} - -size_t ZSTD_estimateCStreamSize(int compressionLevel) -{ - int level; - size_t memBudget = 0; - for (level=MIN(compressionLevel, 1); level<=compressionLevel; level++) { - size_t const newMB = ZSTD_estimateCStreamSize_internal(level); - if (newMB > memBudget) memBudget = newMB; - } - return memBudget; -} - -/* ZSTD_getFrameProgression(): - * tells how much data has been consumed (input) and produced (output) for current frame. - * able to count progression inside worker threads (non-blocking mode). - */ -ZSTD_frameProgression ZSTD_getFrameProgression(const ZSTD_CCtx* cctx) -{ -#ifdef ZSTD_MULTITHREAD - if (cctx->appliedParams.nbWorkers > 0) { - return ZSTDMT_getFrameProgression(cctx->mtctx); - } -#endif - { ZSTD_frameProgression fp; - size_t const buffered = (cctx->inBuff == NULL) ? 0 : - cctx->inBuffPos - cctx->inToCompress; - if (buffered) assert(cctx->inBuffPos >= cctx->inToCompress); - assert(buffered <= ZSTD_BLOCKSIZE_MAX); - fp.ingested = cctx->consumedSrcSize + buffered; - fp.consumed = cctx->consumedSrcSize; - fp.produced = cctx->producedCSize; - fp.flushed = cctx->producedCSize; /* simplified; some data might still be left within streaming output buffer */ - fp.currentJobID = 0; - fp.nbActiveWorkers = 0; - return fp; -} } - -/*! ZSTD_toFlushNow() - * Only useful for multithreading scenarios currently (nbWorkers >= 1). - */ -size_t ZSTD_toFlushNow(ZSTD_CCtx* cctx) -{ -#ifdef ZSTD_MULTITHREAD - if (cctx->appliedParams.nbWorkers > 0) { - return ZSTDMT_toFlushNow(cctx->mtctx); - } -#endif - (void)cctx; - return 0; /* over-simplification; could also check if context is currently running in streaming mode, and in which case, report how many bytes are left to be flushed within output buffer */ -} - -static void ZSTD_assertEqualCParams(ZSTD_compressionParameters cParams1, - ZSTD_compressionParameters cParams2) -{ - (void)cParams1; - (void)cParams2; - assert(cParams1.windowLog == cParams2.windowLog); - assert(cParams1.chainLog == cParams2.chainLog); - assert(cParams1.hashLog == cParams2.hashLog); - assert(cParams1.searchLog == cParams2.searchLog); - assert(cParams1.minMatch == cParams2.minMatch); - assert(cParams1.targetLength == cParams2.targetLength); - assert(cParams1.strategy == cParams2.strategy); -} - -void ZSTD_reset_compressedBlockState(ZSTD_compressedBlockState_t* bs) -{ - int i; - for (i = 0; i < ZSTD_REP_NUM; ++i) - bs->rep[i] = repStartValue[i]; - bs->entropy.huf.repeatMode = HUF_repeat_none; - bs->entropy.fse.offcode_repeatMode = FSE_repeat_none; - bs->entropy.fse.matchlength_repeatMode = FSE_repeat_none; - bs->entropy.fse.litlength_repeatMode = FSE_repeat_none; -} - -/*! ZSTD_invalidateMatchState() - * Invalidate all the matches in the match finder tables. - * Requires nextSrc and base to be set (can be NULL). - */ -static void ZSTD_invalidateMatchState(ZSTD_matchState_t* ms) -{ - ZSTD_window_clear(&ms->window); - - ms->nextToUpdate = ms->window.dictLimit; - ms->loadedDictEnd = 0; - ms->opt.litLengthSum = 0; /* force reset of btopt stats */ - ms->dictMatchState = NULL; -} - -/** - * Indicates whether this compression proceeds directly from user-provided - * source buffer to user-provided destination buffer (ZSTDb_not_buffered), or - * whether the context needs to buffer the input/output (ZSTDb_buffered). - */ -typedef enum { - ZSTDb_not_buffered, - ZSTDb_buffered -} ZSTD_buffered_policy_e; - -/** - * Controls, for this matchState reset, whether the tables need to be cleared / - * prepared for the coming compression (ZSTDcrp_makeClean), or whether the - * tables can be left unclean (ZSTDcrp_leaveDirty), because we know that a - * subsequent operation will overwrite the table space anyways (e.g., copying - * the matchState contents in from a CDict). - */ -typedef enum { - ZSTDcrp_makeClean, - ZSTDcrp_leaveDirty -} ZSTD_compResetPolicy_e; - -/** - * Controls, for this matchState reset, whether indexing can continue where it - * left off (ZSTDirp_continue), or whether it needs to be restarted from zero - * (ZSTDirp_reset). - */ -typedef enum { - ZSTDirp_continue, - ZSTDirp_reset -} ZSTD_indexResetPolicy_e; - -typedef enum { - ZSTD_resetTarget_CDict, - ZSTD_resetTarget_CCtx -} ZSTD_resetTarget_e; - -static size_t -ZSTD_reset_matchState(ZSTD_matchState_t* ms, - ZSTD_cwksp* ws, - const ZSTD_compressionParameters* cParams, - const ZSTD_compResetPolicy_e crp, - const ZSTD_indexResetPolicy_e forceResetIndex, - const ZSTD_resetTarget_e forWho) -{ - size_t const chainSize = (cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cParams->chainLog); - size_t const hSize = ((size_t)1) << cParams->hashLog; - U32 const hashLog3 = ((forWho == ZSTD_resetTarget_CCtx) && cParams->minMatch==3) ? MIN(ZSTD_HASHLOG3_MAX, cParams->windowLog) : 0; - size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; - - DEBUGLOG(4, "reset indices : %u", forceResetIndex == ZSTDirp_reset); - if (forceResetIndex == ZSTDirp_reset) { - ZSTD_window_init(&ms->window); - ZSTD_cwksp_mark_tables_dirty(ws); - } - - ms->hashLog3 = hashLog3; - - ZSTD_invalidateMatchState(ms); - - assert(!ZSTD_cwksp_reserve_failed(ws)); /* check that allocation hasn't already failed */ - - ZSTD_cwksp_clear_tables(ws); - - DEBUGLOG(5, "reserving table space"); - /* table Space */ - ms->hashTable = (U32*)ZSTD_cwksp_reserve_table(ws, hSize * sizeof(U32)); - ms->chainTable = (U32*)ZSTD_cwksp_reserve_table(ws, chainSize * sizeof(U32)); - ms->hashTable3 = (U32*)ZSTD_cwksp_reserve_table(ws, h3Size * sizeof(U32)); - RETURN_ERROR_IF(ZSTD_cwksp_reserve_failed(ws), memory_allocation, - "failed a workspace allocation in ZSTD_reset_matchState"); - - DEBUGLOG(4, "reset table : %u", crp!=ZSTDcrp_leaveDirty); - if (crp!=ZSTDcrp_leaveDirty) { - /* reset tables only */ - ZSTD_cwksp_clean_tables(ws); - } - - /* opt parser space */ - if ((forWho == ZSTD_resetTarget_CCtx) && (cParams->strategy >= ZSTD_btopt)) { - DEBUGLOG(4, "reserving optimal parser space"); - ms->opt.litFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (1<opt.litLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxLL+1) * sizeof(unsigned)); - ms->opt.matchLengthFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxML+1) * sizeof(unsigned)); - ms->opt.offCodeFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxOff+1) * sizeof(unsigned)); - ms->opt.matchTable = (ZSTD_match_t*)ZSTD_cwksp_reserve_aligned(ws, (ZSTD_OPT_NUM+1) * sizeof(ZSTD_match_t)); - ms->opt.priceTable = (ZSTD_optimal_t*)ZSTD_cwksp_reserve_aligned(ws, (ZSTD_OPT_NUM+1) * sizeof(ZSTD_optimal_t)); - } - - ms->cParams = *cParams; - - RETURN_ERROR_IF(ZSTD_cwksp_reserve_failed(ws), memory_allocation, - "failed a workspace allocation in ZSTD_reset_matchState"); - - return 0; -} - -/* ZSTD_indexTooCloseToMax() : - * minor optimization : prefer memset() rather than reduceIndex() - * which is measurably slow in some circumstances (reported for Visual Studio). - * Works when re-using a context for a lot of smallish inputs : - * if all inputs are smaller than ZSTD_INDEXOVERFLOW_MARGIN, - * memset() will be triggered before reduceIndex(). - */ -#define ZSTD_INDEXOVERFLOW_MARGIN (16 MB) -static int ZSTD_indexTooCloseToMax(ZSTD_window_t w) -{ - return (size_t)(w.nextSrc - w.base) > (ZSTD_CURRENT_MAX - ZSTD_INDEXOVERFLOW_MARGIN); -} - -/*! ZSTD_resetCCtx_internal() : - note : `params` are assumed fully validated at this stage */ -static size_t ZSTD_resetCCtx_internal(ZSTD_CCtx* zc, - ZSTD_CCtx_params params, - U64 const pledgedSrcSize, - ZSTD_compResetPolicy_e const crp, - ZSTD_buffered_policy_e const zbuff) -{ - ZSTD_cwksp* const ws = &zc->workspace; - DEBUGLOG(4, "ZSTD_resetCCtx_internal: pledgedSrcSize=%u, wlog=%u", - (U32)pledgedSrcSize, params.cParams.windowLog); - assert(!ZSTD_isError(ZSTD_checkCParams(params.cParams))); - - zc->isFirstBlock = 1; - - if (params.ldmParams.enableLdm) { - /* Adjust long distance matching parameters */ - ZSTD_ldm_adjustParameters(¶ms.ldmParams, ¶ms.cParams); - assert(params.ldmParams.hashLog >= params.ldmParams.bucketSizeLog); - assert(params.ldmParams.hashRateLog < 32); - zc->ldmState.hashPower = ZSTD_rollingHash_primePower(params.ldmParams.minMatchLength); - } - - { size_t const windowSize = MAX(1, (size_t)MIN(((U64)1 << params.cParams.windowLog), pledgedSrcSize)); - size_t const blockSize = MIN(ZSTD_BLOCKSIZE_MAX, windowSize); - U32 const divider = (params.cParams.minMatch==3) ? 3 : 4; - size_t const maxNbSeq = blockSize / divider; - size_t const tokenSpace = ZSTD_cwksp_alloc_size(WILDCOPY_OVERLENGTH + blockSize) - + ZSTD_cwksp_alloc_size(maxNbSeq * sizeof(seqDef)) - + 3 * ZSTD_cwksp_alloc_size(maxNbSeq * sizeof(BYTE)); - size_t const buffOutSize = (zbuff==ZSTDb_buffered) ? ZSTD_compressBound(blockSize)+1 : 0; - size_t const buffInSize = (zbuff==ZSTDb_buffered) ? windowSize + blockSize : 0; - size_t const matchStateSize = ZSTD_sizeof_matchState(¶ms.cParams, /* forCCtx */ 1); - size_t const maxNbLdmSeq = ZSTD_ldm_getMaxNbSeq(params.ldmParams, blockSize); - - ZSTD_indexResetPolicy_e needsIndexReset = zc->initialized ? ZSTDirp_continue : ZSTDirp_reset; - - if (ZSTD_indexTooCloseToMax(zc->blockState.matchState.window)) { - needsIndexReset = ZSTDirp_reset; - } - - if (!zc->staticSize) ZSTD_cwksp_bump_oversized_duration(ws, 0); - - /* Check if workspace is large enough, alloc a new one if needed */ - { size_t const cctxSpace = zc->staticSize ? ZSTD_cwksp_alloc_size(sizeof(ZSTD_CCtx)) : 0; - size_t const entropySpace = ZSTD_cwksp_alloc_size(HUF_WORKSPACE_SIZE); - size_t const blockStateSpace = 2 * ZSTD_cwksp_alloc_size(sizeof(ZSTD_compressedBlockState_t)); - size_t const bufferSpace = ZSTD_cwksp_alloc_size(buffInSize) + ZSTD_cwksp_alloc_size(buffOutSize); - size_t const ldmSpace = ZSTD_ldm_getTableSize(params.ldmParams); - size_t const ldmSeqSpace = ZSTD_cwksp_alloc_size(maxNbLdmSeq * sizeof(rawSeq)); - - size_t const neededSpace = - cctxSpace + - entropySpace + - blockStateSpace + - ldmSpace + - ldmSeqSpace + - matchStateSize + - tokenSpace + - bufferSpace; - - int const workspaceTooSmall = ZSTD_cwksp_sizeof(ws) < neededSpace; - int const workspaceWasteful = ZSTD_cwksp_check_wasteful(ws, neededSpace); - - DEBUGLOG(4, "Need %zuKB workspace, including %zuKB for match state, and %zuKB for buffers", - neededSpace>>10, matchStateSize>>10, bufferSpace>>10); - DEBUGLOG(4, "windowSize: %zu - blockSize: %zu", windowSize, blockSize); - - if (workspaceTooSmall || workspaceWasteful) { - DEBUGLOG(4, "Resize workspaceSize from %zuKB to %zuKB", - ZSTD_cwksp_sizeof(ws) >> 10, - neededSpace >> 10); - - RETURN_ERROR_IF(zc->staticSize, memory_allocation, "static cctx : no resize"); - - needsIndexReset = ZSTDirp_reset; - - ZSTD_cwksp_free(ws, zc->customMem); - FORWARD_IF_ERROR(ZSTD_cwksp_create(ws, neededSpace, zc->customMem), ""); - - DEBUGLOG(5, "reserving object space"); - /* Statically sized space. - * entropyWorkspace never moves, - * though prev/next block swap places */ - assert(ZSTD_cwksp_check_available(ws, 2 * sizeof(ZSTD_compressedBlockState_t))); - zc->blockState.prevCBlock = (ZSTD_compressedBlockState_t*) ZSTD_cwksp_reserve_object(ws, sizeof(ZSTD_compressedBlockState_t)); - RETURN_ERROR_IF(zc->blockState.prevCBlock == NULL, memory_allocation, "couldn't allocate prevCBlock"); - zc->blockState.nextCBlock = (ZSTD_compressedBlockState_t*) ZSTD_cwksp_reserve_object(ws, sizeof(ZSTD_compressedBlockState_t)); - RETURN_ERROR_IF(zc->blockState.nextCBlock == NULL, memory_allocation, "couldn't allocate nextCBlock"); - zc->entropyWorkspace = (U32*) ZSTD_cwksp_reserve_object(ws, HUF_WORKSPACE_SIZE); - RETURN_ERROR_IF(zc->blockState.nextCBlock == NULL, memory_allocation, "couldn't allocate entropyWorkspace"); - } } - - ZSTD_cwksp_clear(ws); - - /* init params */ - zc->appliedParams = params; - zc->blockState.matchState.cParams = params.cParams; - zc->pledgedSrcSizePlusOne = pledgedSrcSize+1; - zc->consumedSrcSize = 0; - zc->producedCSize = 0; - if (pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN) - zc->appliedParams.fParams.contentSizeFlag = 0; - DEBUGLOG(4, "pledged content size : %u ; flag : %u", - (unsigned)pledgedSrcSize, zc->appliedParams.fParams.contentSizeFlag); - zc->blockSize = blockSize; - - XXH64_reset(&zc->xxhState, 0); - zc->stage = ZSTDcs_init; - zc->dictID = 0; - - ZSTD_reset_compressedBlockState(zc->blockState.prevCBlock); - - /* ZSTD_wildcopy() is used to copy into the literals buffer, - * so we have to oversize the buffer by WILDCOPY_OVERLENGTH bytes. - */ - zc->seqStore.litStart = ZSTD_cwksp_reserve_buffer(ws, blockSize + WILDCOPY_OVERLENGTH); - zc->seqStore.maxNbLit = blockSize; - - /* buffers */ - zc->inBuffSize = buffInSize; - zc->inBuff = (char*)ZSTD_cwksp_reserve_buffer(ws, buffInSize); - zc->outBuffSize = buffOutSize; - zc->outBuff = (char*)ZSTD_cwksp_reserve_buffer(ws, buffOutSize); - - /* ldm bucketOffsets table */ - if (params.ldmParams.enableLdm) { - /* TODO: avoid memset? */ - size_t const ldmBucketSize = - ((size_t)1) << (params.ldmParams.hashLog - - params.ldmParams.bucketSizeLog); - zc->ldmState.bucketOffsets = ZSTD_cwksp_reserve_buffer(ws, ldmBucketSize); - memset(zc->ldmState.bucketOffsets, 0, ldmBucketSize); - } - - /* sequences storage */ - ZSTD_referenceExternalSequences(zc, NULL, 0); - zc->seqStore.maxNbSeq = maxNbSeq; - zc->seqStore.llCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); - zc->seqStore.mlCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); - zc->seqStore.ofCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); - zc->seqStore.sequencesStart = (seqDef*)ZSTD_cwksp_reserve_aligned(ws, maxNbSeq * sizeof(seqDef)); - - FORWARD_IF_ERROR(ZSTD_reset_matchState( - &zc->blockState.matchState, - ws, - ¶ms.cParams, - crp, - needsIndexReset, - ZSTD_resetTarget_CCtx), ""); - - /* ldm hash table */ - if (params.ldmParams.enableLdm) { - /* TODO: avoid memset? */ - size_t const ldmHSize = ((size_t)1) << params.ldmParams.hashLog; - zc->ldmState.hashTable = (ldmEntry_t*)ZSTD_cwksp_reserve_aligned(ws, ldmHSize * sizeof(ldmEntry_t)); - memset(zc->ldmState.hashTable, 0, ldmHSize * sizeof(ldmEntry_t)); - zc->ldmSequences = (rawSeq*)ZSTD_cwksp_reserve_aligned(ws, maxNbLdmSeq * sizeof(rawSeq)); - zc->maxNbLdmSequences = maxNbLdmSeq; - - ZSTD_window_init(&zc->ldmState.window); - ZSTD_window_clear(&zc->ldmState.window); - zc->ldmState.loadedDictEnd = 0; - } - - DEBUGLOG(3, "wksp: finished allocating, %zd bytes remain available", ZSTD_cwksp_available_space(ws)); - zc->initialized = 1; - - return 0; - } -} - -/* ZSTD_invalidateRepCodes() : - * ensures next compression will not use repcodes from previous block. - * Note : only works with regular variant; - * do not use with extDict variant ! */ -void ZSTD_invalidateRepCodes(ZSTD_CCtx* cctx) { - int i; - for (i=0; iblockState.prevCBlock->rep[i] = 0; - assert(!ZSTD_window_hasExtDict(cctx->blockState.matchState.window)); -} - -/* These are the approximate sizes for each strategy past which copying the - * dictionary tables into the working context is faster than using them - * in-place. - */ -static const size_t attachDictSizeCutoffs[ZSTD_STRATEGY_MAX+1] = { - 8 KB, /* unused */ - 8 KB, /* ZSTD_fast */ - 16 KB, /* ZSTD_dfast */ - 32 KB, /* ZSTD_greedy */ - 32 KB, /* ZSTD_lazy */ - 32 KB, /* ZSTD_lazy2 */ - 32 KB, /* ZSTD_btlazy2 */ - 32 KB, /* ZSTD_btopt */ - 8 KB, /* ZSTD_btultra */ - 8 KB /* ZSTD_btultra2 */ -}; - -static int ZSTD_shouldAttachDict(const ZSTD_CDict* cdict, - const ZSTD_CCtx_params* params, - U64 pledgedSrcSize) -{ - size_t cutoff = attachDictSizeCutoffs[cdict->matchState.cParams.strategy]; - return ( pledgedSrcSize <= cutoff - || pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN - || params->attachDictPref == ZSTD_dictForceAttach ) - && params->attachDictPref != ZSTD_dictForceCopy - && !params->forceWindow; /* dictMatchState isn't correctly - * handled in _enforceMaxDist */ -} - -static size_t -ZSTD_resetCCtx_byAttachingCDict(ZSTD_CCtx* cctx, - const ZSTD_CDict* cdict, - ZSTD_CCtx_params params, - U64 pledgedSrcSize, - ZSTD_buffered_policy_e zbuff) -{ - { const ZSTD_compressionParameters* const cdict_cParams = &cdict->matchState.cParams; - unsigned const windowLog = params.cParams.windowLog; - assert(windowLog != 0); - /* Resize working context table params for input only, since the dict - * has its own tables. */ - /* pledgeSrcSize == 0 means 0! */ - params.cParams = ZSTD_adjustCParams_internal(*cdict_cParams, pledgedSrcSize, 0); - params.cParams.windowLog = windowLog; - FORWARD_IF_ERROR(ZSTD_resetCCtx_internal(cctx, params, pledgedSrcSize, - ZSTDcrp_makeClean, zbuff), ""); - assert(cctx->appliedParams.cParams.strategy == cdict_cParams->strategy); - } - - { const U32 cdictEnd = (U32)( cdict->matchState.window.nextSrc - - cdict->matchState.window.base); - const U32 cdictLen = cdictEnd - cdict->matchState.window.dictLimit; - if (cdictLen == 0) { - /* don't even attach dictionaries with no contents */ - DEBUGLOG(4, "skipping attaching empty dictionary"); - } else { - DEBUGLOG(4, "attaching dictionary into context"); - cctx->blockState.matchState.dictMatchState = &cdict->matchState; - - /* prep working match state so dict matches never have negative indices - * when they are translated to the working context's index space. */ - if (cctx->blockState.matchState.window.dictLimit < cdictEnd) { - cctx->blockState.matchState.window.nextSrc = - cctx->blockState.matchState.window.base + cdictEnd; - ZSTD_window_clear(&cctx->blockState.matchState.window); - } - /* loadedDictEnd is expressed within the referential of the active context */ - cctx->blockState.matchState.loadedDictEnd = cctx->blockState.matchState.window.dictLimit; - } } - - cctx->dictID = cdict->dictID; - - /* copy block state */ - memcpy(cctx->blockState.prevCBlock, &cdict->cBlockState, sizeof(cdict->cBlockState)); - - return 0; -} - -static size_t ZSTD_resetCCtx_byCopyingCDict(ZSTD_CCtx* cctx, - const ZSTD_CDict* cdict, - ZSTD_CCtx_params params, - U64 pledgedSrcSize, - ZSTD_buffered_policy_e zbuff) -{ - const ZSTD_compressionParameters *cdict_cParams = &cdict->matchState.cParams; - - DEBUGLOG(4, "copying dictionary into context"); - - { unsigned const windowLog = params.cParams.windowLog; - assert(windowLog != 0); - /* Copy only compression parameters related to tables. */ - params.cParams = *cdict_cParams; - params.cParams.windowLog = windowLog; - FORWARD_IF_ERROR(ZSTD_resetCCtx_internal(cctx, params, pledgedSrcSize, - ZSTDcrp_leaveDirty, zbuff), ""); - assert(cctx->appliedParams.cParams.strategy == cdict_cParams->strategy); - assert(cctx->appliedParams.cParams.hashLog == cdict_cParams->hashLog); - assert(cctx->appliedParams.cParams.chainLog == cdict_cParams->chainLog); - } - - ZSTD_cwksp_mark_tables_dirty(&cctx->workspace); - - /* copy tables */ - { size_t const chainSize = (cdict_cParams->strategy == ZSTD_fast) ? 0 : ((size_t)1 << cdict_cParams->chainLog); - size_t const hSize = (size_t)1 << cdict_cParams->hashLog; - - memcpy(cctx->blockState.matchState.hashTable, - cdict->matchState.hashTable, - hSize * sizeof(U32)); - memcpy(cctx->blockState.matchState.chainTable, - cdict->matchState.chainTable, - chainSize * sizeof(U32)); - } - - /* Zero the hashTable3, since the cdict never fills it */ - { int const h3log = cctx->blockState.matchState.hashLog3; - size_t const h3Size = h3log ? ((size_t)1 << h3log) : 0; - assert(cdict->matchState.hashLog3 == 0); - memset(cctx->blockState.matchState.hashTable3, 0, h3Size * sizeof(U32)); - } - - ZSTD_cwksp_mark_tables_clean(&cctx->workspace); - - /* copy dictionary offsets */ - { ZSTD_matchState_t const* srcMatchState = &cdict->matchState; - ZSTD_matchState_t* dstMatchState = &cctx->blockState.matchState; - dstMatchState->window = srcMatchState->window; - dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; - dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; - } - - cctx->dictID = cdict->dictID; - - /* copy block state */ - memcpy(cctx->blockState.prevCBlock, &cdict->cBlockState, sizeof(cdict->cBlockState)); - - return 0; -} - -/* We have a choice between copying the dictionary context into the working - * context, or referencing the dictionary context from the working context - * in-place. We decide here which strategy to use. */ -static size_t ZSTD_resetCCtx_usingCDict(ZSTD_CCtx* cctx, - const ZSTD_CDict* cdict, - const ZSTD_CCtx_params* params, - U64 pledgedSrcSize, - ZSTD_buffered_policy_e zbuff) -{ - - DEBUGLOG(4, "ZSTD_resetCCtx_usingCDict (pledgedSrcSize=%u)", - (unsigned)pledgedSrcSize); - - if (ZSTD_shouldAttachDict(cdict, params, pledgedSrcSize)) { - return ZSTD_resetCCtx_byAttachingCDict( - cctx, cdict, *params, pledgedSrcSize, zbuff); - } else { - return ZSTD_resetCCtx_byCopyingCDict( - cctx, cdict, *params, pledgedSrcSize, zbuff); - } -} - -/*! ZSTD_copyCCtx_internal() : - * Duplicate an existing context `srcCCtx` into another one `dstCCtx`. - * Only works during stage ZSTDcs_init (i.e. after creation, but before first call to ZSTD_compressContinue()). - * The "context", in this case, refers to the hash and chain tables, - * entropy tables, and dictionary references. - * `windowLog` value is enforced if != 0, otherwise value is copied from srcCCtx. - * @return : 0, or an error code */ -static size_t ZSTD_copyCCtx_internal(ZSTD_CCtx* dstCCtx, - const ZSTD_CCtx* srcCCtx, - ZSTD_frameParameters fParams, - U64 pledgedSrcSize, - ZSTD_buffered_policy_e zbuff) -{ - DEBUGLOG(5, "ZSTD_copyCCtx_internal"); - RETURN_ERROR_IF(srcCCtx->stage!=ZSTDcs_init, stage_wrong, - "Can't copy a ctx that's not in init stage."); - - memcpy(&dstCCtx->customMem, &srcCCtx->customMem, sizeof(ZSTD_customMem)); - { ZSTD_CCtx_params params = dstCCtx->requestedParams; - /* Copy only compression parameters related to tables. */ - params.cParams = srcCCtx->appliedParams.cParams; - params.fParams = fParams; - ZSTD_resetCCtx_internal(dstCCtx, params, pledgedSrcSize, - ZSTDcrp_leaveDirty, zbuff); - assert(dstCCtx->appliedParams.cParams.windowLog == srcCCtx->appliedParams.cParams.windowLog); - assert(dstCCtx->appliedParams.cParams.strategy == srcCCtx->appliedParams.cParams.strategy); - assert(dstCCtx->appliedParams.cParams.hashLog == srcCCtx->appliedParams.cParams.hashLog); - assert(dstCCtx->appliedParams.cParams.chainLog == srcCCtx->appliedParams.cParams.chainLog); - assert(dstCCtx->blockState.matchState.hashLog3 == srcCCtx->blockState.matchState.hashLog3); - } - - ZSTD_cwksp_mark_tables_dirty(&dstCCtx->workspace); - - /* copy tables */ - { size_t const chainSize = (srcCCtx->appliedParams.cParams.strategy == ZSTD_fast) ? 0 : ((size_t)1 << srcCCtx->appliedParams.cParams.chainLog); - size_t const hSize = (size_t)1 << srcCCtx->appliedParams.cParams.hashLog; - int const h3log = srcCCtx->blockState.matchState.hashLog3; - size_t const h3Size = h3log ? ((size_t)1 << h3log) : 0; - - memcpy(dstCCtx->blockState.matchState.hashTable, - srcCCtx->blockState.matchState.hashTable, - hSize * sizeof(U32)); - memcpy(dstCCtx->blockState.matchState.chainTable, - srcCCtx->blockState.matchState.chainTable, - chainSize * sizeof(U32)); - memcpy(dstCCtx->blockState.matchState.hashTable3, - srcCCtx->blockState.matchState.hashTable3, - h3Size * sizeof(U32)); - } - - ZSTD_cwksp_mark_tables_clean(&dstCCtx->workspace); - - /* copy dictionary offsets */ - { - const ZSTD_matchState_t* srcMatchState = &srcCCtx->blockState.matchState; - ZSTD_matchState_t* dstMatchState = &dstCCtx->blockState.matchState; - dstMatchState->window = srcMatchState->window; - dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; - dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; - } - dstCCtx->dictID = srcCCtx->dictID; - - /* copy block state */ - memcpy(dstCCtx->blockState.prevCBlock, srcCCtx->blockState.prevCBlock, sizeof(*srcCCtx->blockState.prevCBlock)); - - return 0; -} - -/*! ZSTD_copyCCtx() : - * Duplicate an existing context `srcCCtx` into another one `dstCCtx`. - * Only works during stage ZSTDcs_init (i.e. after creation, but before first call to ZSTD_compressContinue()). - * pledgedSrcSize==0 means "unknown". -* @return : 0, or an error code */ -size_t ZSTD_copyCCtx(ZSTD_CCtx* dstCCtx, const ZSTD_CCtx* srcCCtx, unsigned long long pledgedSrcSize) -{ - ZSTD_frameParameters fParams = { 1 /*content*/, 0 /*checksum*/, 0 /*noDictID*/ }; - ZSTD_buffered_policy_e const zbuff = (ZSTD_buffered_policy_e)(srcCCtx->inBuffSize>0); - ZSTD_STATIC_ASSERT((U32)ZSTDb_buffered==1); - if (pledgedSrcSize==0) pledgedSrcSize = ZSTD_CONTENTSIZE_UNKNOWN; - fParams.contentSizeFlag = (pledgedSrcSize != ZSTD_CONTENTSIZE_UNKNOWN); - - return ZSTD_copyCCtx_internal(dstCCtx, srcCCtx, - fParams, pledgedSrcSize, - zbuff); -} - - -#define ZSTD_ROWSIZE 16 -/*! ZSTD_reduceTable() : - * reduce table indexes by `reducerValue`, or squash to zero. - * PreserveMark preserves "unsorted mark" for btlazy2 strategy. - * It must be set to a clear 0/1 value, to remove branch during inlining. - * Presume table size is a multiple of ZSTD_ROWSIZE - * to help auto-vectorization */ -FORCE_INLINE_TEMPLATE void -ZSTD_reduceTable_internal (U32* const table, U32 const size, U32 const reducerValue, int const preserveMark) -{ - int const nbRows = (int)size / ZSTD_ROWSIZE; - int cellNb = 0; - int rowNb; - assert((size & (ZSTD_ROWSIZE-1)) == 0); /* multiple of ZSTD_ROWSIZE */ - assert(size < (1U<<31)); /* can be casted to int */ - -#if defined (MEMORY_SANITIZER) && !defined (ZSTD_MSAN_DONT_POISON_WORKSPACE) - /* To validate that the table re-use logic is sound, and that we don't - * access table space that we haven't cleaned, we re-"poison" the table - * space every time we mark it dirty. - * - * This function however is intended to operate on those dirty tables and - * re-clean them. So when this function is used correctly, we can unpoison - * the memory it operated on. This introduces a blind spot though, since - * if we now try to operate on __actually__ poisoned memory, we will not - * detect that. */ - __msan_unpoison(table, size * sizeof(U32)); -#endif - - for (rowNb=0 ; rowNb < nbRows ; rowNb++) { - int column; - for (column=0; columncParams.hashLog; - ZSTD_reduceTable(ms->hashTable, hSize, reducerValue); - } - - if (params->cParams.strategy != ZSTD_fast) { - U32 const chainSize = (U32)1 << params->cParams.chainLog; - if (params->cParams.strategy == ZSTD_btlazy2) - ZSTD_reduceTable_btlazy2(ms->chainTable, chainSize, reducerValue); - else - ZSTD_reduceTable(ms->chainTable, chainSize, reducerValue); - } - - if (ms->hashLog3) { - U32 const h3Size = (U32)1 << ms->hashLog3; - ZSTD_reduceTable(ms->hashTable3, h3Size, reducerValue); - } -} - - -/*-******************************************************* -* Block entropic compression -*********************************************************/ - -/* See doc/zstd_compression_format.md for detailed format description */ - -void ZSTD_seqToCodes(const seqStore_t* seqStorePtr) -{ - const seqDef* const sequences = seqStorePtr->sequencesStart; - BYTE* const llCodeTable = seqStorePtr->llCode; - BYTE* const ofCodeTable = seqStorePtr->ofCode; - BYTE* const mlCodeTable = seqStorePtr->mlCode; - U32 const nbSeq = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); - U32 u; - assert(nbSeq <= seqStorePtr->maxNbSeq); - for (u=0; ulongLengthID==1) - llCodeTable[seqStorePtr->longLengthPos] = MaxLL; - if (seqStorePtr->longLengthID==2) - mlCodeTable[seqStorePtr->longLengthPos] = MaxML; -} - -/* ZSTD_useTargetCBlockSize(): - * Returns if target compressed block size param is being used. - * If used, compression will do best effort to make a compressed block size to be around targetCBlockSize. - * Returns 1 if true, 0 otherwise. */ -static int ZSTD_useTargetCBlockSize(const ZSTD_CCtx_params* cctxParams) -{ - DEBUGLOG(5, "ZSTD_useTargetCBlockSize (targetCBlockSize=%zu)", cctxParams->targetCBlockSize); - return (cctxParams->targetCBlockSize != 0); -} - -/* ZSTD_compressSequences_internal(): - * actually compresses both literals and sequences */ -MEM_STATIC size_t -ZSTD_compressSequences_internal(seqStore_t* seqStorePtr, - const ZSTD_entropyCTables_t* prevEntropy, - ZSTD_entropyCTables_t* nextEntropy, - const ZSTD_CCtx_params* cctxParams, - void* dst, size_t dstCapacity, - void* entropyWorkspace, size_t entropyWkspSize, - const int bmi2) -{ - const int longOffsets = cctxParams->cParams.windowLog > STREAM_ACCUMULATOR_MIN; - ZSTD_strategy const strategy = cctxParams->cParams.strategy; - unsigned count[MaxSeq+1]; - FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; - FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; - FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; - U32 LLtype, Offtype, MLtype; /* compressed, raw or rle */ - const seqDef* const sequences = seqStorePtr->sequencesStart; - const BYTE* const ofCodeTable = seqStorePtr->ofCode; - const BYTE* const llCodeTable = seqStorePtr->llCode; - const BYTE* const mlCodeTable = seqStorePtr->mlCode; - BYTE* const ostart = (BYTE*)dst; - BYTE* const oend = ostart + dstCapacity; - BYTE* op = ostart; - size_t const nbSeq = (size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart); - BYTE* seqHead; - BYTE* lastNCount = NULL; - - DEBUGLOG(5, "ZSTD_compressSequences_internal (nbSeq=%zu)", nbSeq); - ZSTD_STATIC_ASSERT(HUF_WORKSPACE_SIZE >= (1<litStart; - size_t const litSize = (size_t)(seqStorePtr->lit - literals); - size_t const cSize = ZSTD_compressLiterals( - &prevEntropy->huf, &nextEntropy->huf, - cctxParams->cParams.strategy, - ZSTD_disableLiteralsCompression(cctxParams), - op, dstCapacity, - literals, litSize, - entropyWorkspace, entropyWkspSize, - bmi2); - FORWARD_IF_ERROR(cSize, "ZSTD_compressLiterals failed"); - assert(cSize <= dstCapacity); - op += cSize; - } - - /* Sequences Header */ - RETURN_ERROR_IF((oend-op) < 3 /*max nbSeq Size*/ + 1 /*seqHead*/, - dstSize_tooSmall, "Can't fit seq hdr in output buf!"); - if (nbSeq < 128) { - *op++ = (BYTE)nbSeq; - } else if (nbSeq < LONGNBSEQ) { - op[0] = (BYTE)((nbSeq>>8) + 0x80); - op[1] = (BYTE)nbSeq; - op+=2; - } else { - op[0]=0xFF; - MEM_writeLE16(op+1, (U16)(nbSeq - LONGNBSEQ)); - op+=3; - } - assert(op <= oend); - if (nbSeq==0) { - /* Copy the old tables over as if we repeated them */ - memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse)); - return (size_t)(op - ostart); - } - - /* seqHead : flags for FSE encoding type */ - seqHead = op++; - assert(op <= oend); - - /* convert length/distances into codes */ - ZSTD_seqToCodes(seqStorePtr); - /* build CTable for Literal Lengths */ - { unsigned max = MaxLL; - size_t const mostFrequent = HIST_countFast_wksp(count, &max, llCodeTable, nbSeq, entropyWorkspace, entropyWkspSize); /* can't fail */ - DEBUGLOG(5, "Building LL table"); - nextEntropy->fse.litlength_repeatMode = prevEntropy->fse.litlength_repeatMode; - LLtype = ZSTD_selectEncodingType(&nextEntropy->fse.litlength_repeatMode, - count, max, mostFrequent, nbSeq, - LLFSELog, prevEntropy->fse.litlengthCTable, - LL_defaultNorm, LL_defaultNormLog, - ZSTD_defaultAllowed, strategy); - assert(set_basic < set_compressed && set_rle < set_compressed); - assert(!(LLtype < set_compressed && nextEntropy->fse.litlength_repeatMode != FSE_repeat_none)); /* We don't copy tables */ - { size_t const countSize = ZSTD_buildCTable( - op, (size_t)(oend - op), - CTable_LitLength, LLFSELog, (symbolEncodingType_e)LLtype, - count, max, llCodeTable, nbSeq, - LL_defaultNorm, LL_defaultNormLog, MaxLL, - prevEntropy->fse.litlengthCTable, - sizeof(prevEntropy->fse.litlengthCTable), - entropyWorkspace, entropyWkspSize); - FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for LitLens failed"); - if (LLtype == set_compressed) - lastNCount = op; - op += countSize; - assert(op <= oend); - } } - /* build CTable for Offsets */ - { unsigned max = MaxOff; - size_t const mostFrequent = HIST_countFast_wksp( - count, &max, ofCodeTable, nbSeq, entropyWorkspace, entropyWkspSize); /* can't fail */ - /* We can only use the basic table if max <= DefaultMaxOff, otherwise the offsets are too large */ - ZSTD_defaultPolicy_e const defaultPolicy = (max <= DefaultMaxOff) ? ZSTD_defaultAllowed : ZSTD_defaultDisallowed; - DEBUGLOG(5, "Building OF table"); - nextEntropy->fse.offcode_repeatMode = prevEntropy->fse.offcode_repeatMode; - Offtype = ZSTD_selectEncodingType(&nextEntropy->fse.offcode_repeatMode, - count, max, mostFrequent, nbSeq, - OffFSELog, prevEntropy->fse.offcodeCTable, - OF_defaultNorm, OF_defaultNormLog, - defaultPolicy, strategy); - assert(!(Offtype < set_compressed && nextEntropy->fse.offcode_repeatMode != FSE_repeat_none)); /* We don't copy tables */ - { size_t const countSize = ZSTD_buildCTable( - op, (size_t)(oend - op), - CTable_OffsetBits, OffFSELog, (symbolEncodingType_e)Offtype, - count, max, ofCodeTable, nbSeq, - OF_defaultNorm, OF_defaultNormLog, DefaultMaxOff, - prevEntropy->fse.offcodeCTable, - sizeof(prevEntropy->fse.offcodeCTable), - entropyWorkspace, entropyWkspSize); - FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for Offsets failed"); - if (Offtype == set_compressed) - lastNCount = op; - op += countSize; - assert(op <= oend); - } } - /* build CTable for MatchLengths */ - { unsigned max = MaxML; - size_t const mostFrequent = HIST_countFast_wksp( - count, &max, mlCodeTable, nbSeq, entropyWorkspace, entropyWkspSize); /* can't fail */ - DEBUGLOG(5, "Building ML table (remaining space : %i)", (int)(oend-op)); - nextEntropy->fse.matchlength_repeatMode = prevEntropy->fse.matchlength_repeatMode; - MLtype = ZSTD_selectEncodingType(&nextEntropy->fse.matchlength_repeatMode, - count, max, mostFrequent, nbSeq, - MLFSELog, prevEntropy->fse.matchlengthCTable, - ML_defaultNorm, ML_defaultNormLog, - ZSTD_defaultAllowed, strategy); - assert(!(MLtype < set_compressed && nextEntropy->fse.matchlength_repeatMode != FSE_repeat_none)); /* We don't copy tables */ - { size_t const countSize = ZSTD_buildCTable( - op, (size_t)(oend - op), - CTable_MatchLength, MLFSELog, (symbolEncodingType_e)MLtype, - count, max, mlCodeTable, nbSeq, - ML_defaultNorm, ML_defaultNormLog, MaxML, - prevEntropy->fse.matchlengthCTable, - sizeof(prevEntropy->fse.matchlengthCTable), - entropyWorkspace, entropyWkspSize); - FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for MatchLengths failed"); - if (MLtype == set_compressed) - lastNCount = op; - op += countSize; - assert(op <= oend); - } } - - *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2)); - - { size_t const bitstreamSize = ZSTD_encodeSequences( - op, (size_t)(oend - op), - CTable_MatchLength, mlCodeTable, - CTable_OffsetBits, ofCodeTable, - CTable_LitLength, llCodeTable, - sequences, nbSeq, - longOffsets, bmi2); - FORWARD_IF_ERROR(bitstreamSize, "ZSTD_encodeSequences failed"); - op += bitstreamSize; - assert(op <= oend); - /* zstd versions <= 1.3.4 mistakenly report corruption when - * FSE_readNCount() receives a buffer < 4 bytes. - * Fixed by https://github.com/facebook/zstd/pull/1146. - * This can happen when the last set_compressed table present is 2 - * bytes and the bitstream is only one byte. - * In this exceedingly rare case, we will simply emit an uncompressed - * block, since it isn't worth optimizing. - */ - if (lastNCount && (op - lastNCount) < 4) { - /* NCountSize >= 2 && bitstreamSize > 0 ==> lastCountSize == 3 */ - assert(op - lastNCount == 3); - DEBUGLOG(5, "Avoiding bug in zstd decoder in versions <= 1.3.4 by " - "emitting an uncompressed block."); - return 0; - } - } - - DEBUGLOG(5, "compressed block size : %u", (unsigned)(op - ostart)); - return (size_t)(op - ostart); -} - -MEM_STATIC size_t -ZSTD_compressSequences(seqStore_t* seqStorePtr, - const ZSTD_entropyCTables_t* prevEntropy, - ZSTD_entropyCTables_t* nextEntropy, - const ZSTD_CCtx_params* cctxParams, - void* dst, size_t dstCapacity, - size_t srcSize, - void* entropyWorkspace, size_t entropyWkspSize, - int bmi2) -{ - size_t const cSize = ZSTD_compressSequences_internal( - seqStorePtr, prevEntropy, nextEntropy, cctxParams, - dst, dstCapacity, - entropyWorkspace, entropyWkspSize, bmi2); - if (cSize == 0) return 0; - /* When srcSize <= dstCapacity, there is enough space to write a raw uncompressed block. - * Since we ran out of space, block must be not compressible, so fall back to raw uncompressed block. - */ - if ((cSize == ERROR(dstSize_tooSmall)) & (srcSize <= dstCapacity)) - return 0; /* block not compressed */ - FORWARD_IF_ERROR(cSize, "ZSTD_compressSequences_internal failed"); - - /* Check compressibility */ - { size_t const maxCSize = srcSize - ZSTD_minGain(srcSize, cctxParams->cParams.strategy); - if (cSize >= maxCSize) return 0; /* block not compressed */ - } - - return cSize; -} - -/* ZSTD_selectBlockCompressor() : - * Not static, but internal use only (used by long distance matcher) - * assumption : strat is a valid strategy */ -ZSTD_blockCompressor ZSTD_selectBlockCompressor(ZSTD_strategy strat, ZSTD_dictMode_e dictMode) -{ - static const ZSTD_blockCompressor blockCompressor[3][ZSTD_STRATEGY_MAX+1] = { - { ZSTD_compressBlock_fast /* default for 0 */, - ZSTD_compressBlock_fast, - ZSTD_compressBlock_doubleFast, - ZSTD_compressBlock_greedy, - ZSTD_compressBlock_lazy, - ZSTD_compressBlock_lazy2, - ZSTD_compressBlock_btlazy2, - ZSTD_compressBlock_btopt, - ZSTD_compressBlock_btultra, - ZSTD_compressBlock_btultra2 }, - { ZSTD_compressBlock_fast_extDict /* default for 0 */, - ZSTD_compressBlock_fast_extDict, - ZSTD_compressBlock_doubleFast_extDict, - ZSTD_compressBlock_greedy_extDict, - ZSTD_compressBlock_lazy_extDict, - ZSTD_compressBlock_lazy2_extDict, - ZSTD_compressBlock_btlazy2_extDict, - ZSTD_compressBlock_btopt_extDict, - ZSTD_compressBlock_btultra_extDict, - ZSTD_compressBlock_btultra_extDict }, - { ZSTD_compressBlock_fast_dictMatchState /* default for 0 */, - ZSTD_compressBlock_fast_dictMatchState, - ZSTD_compressBlock_doubleFast_dictMatchState, - ZSTD_compressBlock_greedy_dictMatchState, - ZSTD_compressBlock_lazy_dictMatchState, - ZSTD_compressBlock_lazy2_dictMatchState, - ZSTD_compressBlock_btlazy2_dictMatchState, - ZSTD_compressBlock_btopt_dictMatchState, - ZSTD_compressBlock_btultra_dictMatchState, - ZSTD_compressBlock_btultra_dictMatchState } - }; - ZSTD_blockCompressor selectedCompressor; - ZSTD_STATIC_ASSERT((unsigned)ZSTD_fast == 1); - - assert(ZSTD_cParam_withinBounds(ZSTD_c_strategy, strat)); - selectedCompressor = blockCompressor[(int)dictMode][(int)strat]; - assert(selectedCompressor != NULL); - return selectedCompressor; -} - -static void ZSTD_storeLastLiterals(seqStore_t* seqStorePtr, - const BYTE* anchor, size_t lastLLSize) -{ - memcpy(seqStorePtr->lit, anchor, lastLLSize); - seqStorePtr->lit += lastLLSize; -} - -void ZSTD_resetSeqStore(seqStore_t* ssPtr) -{ - ssPtr->lit = ssPtr->litStart; - ssPtr->sequences = ssPtr->sequencesStart; - ssPtr->longLengthID = 0; -} - -typedef enum { ZSTDbss_compress, ZSTDbss_noCompress } ZSTD_buildSeqStore_e; - -static size_t ZSTD_buildSeqStore(ZSTD_CCtx* zc, const void* src, size_t srcSize) -{ - ZSTD_matchState_t* const ms = &zc->blockState.matchState; - DEBUGLOG(5, "ZSTD_buildSeqStore (srcSize=%zu)", srcSize); - assert(srcSize <= ZSTD_BLOCKSIZE_MAX); - /* Assert that we have correctly flushed the ctx params into the ms's copy */ - ZSTD_assertEqualCParams(zc->appliedParams.cParams, ms->cParams); - if (srcSize < MIN_CBLOCK_SIZE+ZSTD_blockHeaderSize+1) { - ZSTD_ldm_skipSequences(&zc->externSeqStore, srcSize, zc->appliedParams.cParams.minMatch); - return ZSTDbss_noCompress; /* don't even attempt compression below a certain srcSize */ - } - ZSTD_resetSeqStore(&(zc->seqStore)); - /* required for optimal parser to read stats from dictionary */ - ms->opt.symbolCosts = &zc->blockState.prevCBlock->entropy; - /* tell the optimal parser how we expect to compress literals */ - ms->opt.literalCompressionMode = zc->appliedParams.literalCompressionMode; - /* a gap between an attached dict and the current window is not safe, - * they must remain adjacent, - * and when that stops being the case, the dict must be unset */ - assert(ms->dictMatchState == NULL || ms->loadedDictEnd == ms->window.dictLimit); - - /* limited update after a very long match */ - { const BYTE* const base = ms->window.base; - const BYTE* const istart = (const BYTE*)src; - const U32 current = (U32)(istart-base); - if (sizeof(ptrdiff_t)==8) assert(istart - base < (ptrdiff_t)(U32)(-1)); /* ensure no overflow */ - if (current > ms->nextToUpdate + 384) - ms->nextToUpdate = current - MIN(192, (U32)(current - ms->nextToUpdate - 384)); - } - - /* select and store sequences */ - { ZSTD_dictMode_e const dictMode = ZSTD_matchState_dictMode(ms); - size_t lastLLSize; - { int i; - for (i = 0; i < ZSTD_REP_NUM; ++i) - zc->blockState.nextCBlock->rep[i] = zc->blockState.prevCBlock->rep[i]; - } - if (zc->externSeqStore.pos < zc->externSeqStore.size) { - assert(!zc->appliedParams.ldmParams.enableLdm); - /* Updates ldmSeqStore.pos */ - lastLLSize = - ZSTD_ldm_blockCompress(&zc->externSeqStore, - ms, &zc->seqStore, - zc->blockState.nextCBlock->rep, - src, srcSize); - assert(zc->externSeqStore.pos <= zc->externSeqStore.size); - } else if (zc->appliedParams.ldmParams.enableLdm) { - rawSeqStore_t ldmSeqStore = {NULL, 0, 0, 0}; - - ldmSeqStore.seq = zc->ldmSequences; - ldmSeqStore.capacity = zc->maxNbLdmSequences; - /* Updates ldmSeqStore.size */ - FORWARD_IF_ERROR(ZSTD_ldm_generateSequences(&zc->ldmState, &ldmSeqStore, - &zc->appliedParams.ldmParams, - src, srcSize), ""); - /* Updates ldmSeqStore.pos */ - lastLLSize = - ZSTD_ldm_blockCompress(&ldmSeqStore, - ms, &zc->seqStore, - zc->blockState.nextCBlock->rep, - src, srcSize); - assert(ldmSeqStore.pos == ldmSeqStore.size); - } else { /* not long range mode */ - ZSTD_blockCompressor const blockCompressor = ZSTD_selectBlockCompressor(zc->appliedParams.cParams.strategy, dictMode); - lastLLSize = blockCompressor(ms, &zc->seqStore, zc->blockState.nextCBlock->rep, src, srcSize); - } - { const BYTE* const lastLiterals = (const BYTE*)src + srcSize - lastLLSize; - ZSTD_storeLastLiterals(&zc->seqStore, lastLiterals, lastLLSize); - } } - return ZSTDbss_compress; -} - -static void ZSTD_copyBlockSequences(ZSTD_CCtx* zc) -{ - const seqStore_t* seqStore = ZSTD_getSeqStore(zc); - const seqDef* seqs = seqStore->sequencesStart; - size_t seqsSize = seqStore->sequences - seqs; - - ZSTD_Sequence* outSeqs = &zc->seqCollector.seqStart[zc->seqCollector.seqIndex]; - size_t i; size_t position; int repIdx; - - assert(zc->seqCollector.seqIndex + 1 < zc->seqCollector.maxSequences); - for (i = 0, position = 0; i < seqsSize; ++i) { - outSeqs[i].offset = seqs[i].offset; - outSeqs[i].litLength = seqs[i].litLength; - outSeqs[i].matchLength = seqs[i].matchLength + MINMATCH; - - if (i == seqStore->longLengthPos) { - if (seqStore->longLengthID == 1) { - outSeqs[i].litLength += 0x10000; - } else if (seqStore->longLengthID == 2) { - outSeqs[i].matchLength += 0x10000; - } - } - - if (outSeqs[i].offset <= ZSTD_REP_NUM) { - outSeqs[i].rep = outSeqs[i].offset; - repIdx = (unsigned int)i - outSeqs[i].offset; - - if (outSeqs[i].litLength == 0) { - if (outSeqs[i].offset < 3) { - --repIdx; - } else { - repIdx = (unsigned int)i - 1; - } - ++outSeqs[i].rep; - } - assert(repIdx >= -3); - outSeqs[i].offset = repIdx >= 0 ? outSeqs[repIdx].offset : repStartValue[-repIdx - 1]; - if (outSeqs[i].rep == 4) { - --outSeqs[i].offset; - } - } else { - outSeqs[i].offset -= ZSTD_REP_NUM; - } - - position += outSeqs[i].litLength; - outSeqs[i].matchPos = (unsigned int)position; - position += outSeqs[i].matchLength; - } - zc->seqCollector.seqIndex += seqsSize; -} - -size_t ZSTD_getSequences(ZSTD_CCtx* zc, ZSTD_Sequence* outSeqs, - size_t outSeqsSize, const void* src, size_t srcSize) -{ - const size_t dstCapacity = ZSTD_compressBound(srcSize); - void* dst = ZSTD_malloc(dstCapacity, ZSTD_defaultCMem); - SeqCollector seqCollector; - - RETURN_ERROR_IF(dst == NULL, memory_allocation, "NULL pointer!"); - - seqCollector.collectSequences = 1; - seqCollector.seqStart = outSeqs; - seqCollector.seqIndex = 0; - seqCollector.maxSequences = outSeqsSize; - zc->seqCollector = seqCollector; - - ZSTD_compress2(zc, dst, dstCapacity, src, srcSize); - ZSTD_free(dst, ZSTD_defaultCMem); - return zc->seqCollector.seqIndex; -} - -/* Returns true if the given block is a RLE block */ -static int ZSTD_isRLE(const BYTE *ip, size_t length) { - size_t i; - if (length < 2) return 1; - for (i = 1; i < length; ++i) { - if (ip[0] != ip[i]) return 0; - } - return 1; -} - -/* Returns true if the given block may be RLE. - * This is just a heuristic based on the compressibility. - * It may return both false positives and false negatives. - */ -static int ZSTD_maybeRLE(seqStore_t const* seqStore) -{ - size_t const nbSeqs = (size_t)(seqStore->sequences - seqStore->sequencesStart); - size_t const nbLits = (size_t)(seqStore->lit - seqStore->litStart); - - return nbSeqs < 4 && nbLits < 10; -} - -static void ZSTD_confirmRepcodesAndEntropyTables(ZSTD_CCtx* zc) -{ - ZSTD_compressedBlockState_t* const tmp = zc->blockState.prevCBlock; - zc->blockState.prevCBlock = zc->blockState.nextCBlock; - zc->blockState.nextCBlock = tmp; -} - -static size_t ZSTD_compressBlock_internal(ZSTD_CCtx* zc, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, U32 frame) -{ - /* This the upper bound for the length of an rle block. - * This isn't the actual upper bound. Finding the real threshold - * needs further investigation. - */ - const U32 rleMaxLength = 25; - size_t cSize; - const BYTE* ip = (const BYTE*)src; - BYTE* op = (BYTE*)dst; - DEBUGLOG(5, "ZSTD_compressBlock_internal (dstCapacity=%u, dictLimit=%u, nextToUpdate=%u)", - (unsigned)dstCapacity, (unsigned)zc->blockState.matchState.window.dictLimit, - (unsigned)zc->blockState.matchState.nextToUpdate); - - { const size_t bss = ZSTD_buildSeqStore(zc, src, srcSize); - FORWARD_IF_ERROR(bss, "ZSTD_buildSeqStore failed"); - if (bss == ZSTDbss_noCompress) { cSize = 0; goto out; } - } - - if (zc->seqCollector.collectSequences) { - ZSTD_copyBlockSequences(zc); - return 0; - } - - /* encode sequences and literals */ - cSize = ZSTD_compressSequences(&zc->seqStore, - &zc->blockState.prevCBlock->entropy, &zc->blockState.nextCBlock->entropy, - &zc->appliedParams, - dst, dstCapacity, - srcSize, - zc->entropyWorkspace, HUF_WORKSPACE_SIZE /* statically allocated in resetCCtx */, - zc->bmi2); - - if (frame && - /* We don't want to emit our first block as a RLE even if it qualifies because - * doing so will cause the decoder (cli only) to throw a "should consume all input error." - * This is only an issue for zstd <= v1.4.3 - */ - !zc->isFirstBlock && - cSize < rleMaxLength && - ZSTD_isRLE(ip, srcSize)) - { - cSize = 1; - op[0] = ip[0]; - } - -out: - if (!ZSTD_isError(cSize) && cSize > 1) { - ZSTD_confirmRepcodesAndEntropyTables(zc); - } - /* We check that dictionaries have offset codes available for the first - * block. After the first block, the offcode table might not have large - * enough codes to represent the offsets in the data. - */ - if (zc->blockState.prevCBlock->entropy.fse.offcode_repeatMode == FSE_repeat_valid) - zc->blockState.prevCBlock->entropy.fse.offcode_repeatMode = FSE_repeat_check; - - return cSize; -} - -static size_t ZSTD_compressBlock_targetCBlockSize_body(ZSTD_CCtx* zc, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const size_t bss, U32 lastBlock) -{ - DEBUGLOG(6, "Attempting ZSTD_compressSuperBlock()"); - if (bss == ZSTDbss_compress) { - if (/* We don't want to emit our first block as a RLE even if it qualifies because - * doing so will cause the decoder (cli only) to throw a "should consume all input error." - * This is only an issue for zstd <= v1.4.3 - */ - !zc->isFirstBlock && - ZSTD_maybeRLE(&zc->seqStore) && - ZSTD_isRLE((BYTE const*)src, srcSize)) - { - return ZSTD_rleCompressBlock(dst, dstCapacity, *(BYTE const*)src, srcSize, lastBlock); - } - /* Attempt superblock compression. - * - * Note that compressed size of ZSTD_compressSuperBlock() is not bound by the - * standard ZSTD_compressBound(). This is a problem, because even if we have - * space now, taking an extra byte now could cause us to run out of space later - * and violate ZSTD_compressBound(). - * - * Define blockBound(blockSize) = blockSize + ZSTD_blockHeaderSize. - * - * In order to respect ZSTD_compressBound() we must attempt to emit a raw - * uncompressed block in these cases: - * * cSize == 0: Return code for an uncompressed block. - * * cSize == dstSize_tooSmall: We may have expanded beyond blockBound(srcSize). - * ZSTD_noCompressBlock() will return dstSize_tooSmall if we are really out of - * output space. - * * cSize >= blockBound(srcSize): We have expanded the block too much so - * emit an uncompressed block. - */ - { - size_t const cSize = ZSTD_compressSuperBlock(zc, dst, dstCapacity, src, srcSize, lastBlock); - if (cSize != ERROR(dstSize_tooSmall)) { - size_t const maxCSize = srcSize - ZSTD_minGain(srcSize, zc->appliedParams.cParams.strategy); - FORWARD_IF_ERROR(cSize, "ZSTD_compressSuperBlock failed"); - if (cSize != 0 && cSize < maxCSize + ZSTD_blockHeaderSize) { - ZSTD_confirmRepcodesAndEntropyTables(zc); - return cSize; - } - } - } - } - - DEBUGLOG(6, "Resorting to ZSTD_noCompressBlock()"); - /* Superblock compression failed, attempt to emit a single no compress block. - * The decoder will be able to stream this block since it is uncompressed. - */ - return ZSTD_noCompressBlock(dst, dstCapacity, src, srcSize, lastBlock); -} - -static size_t ZSTD_compressBlock_targetCBlockSize(ZSTD_CCtx* zc, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - U32 lastBlock) -{ - size_t cSize = 0; - const size_t bss = ZSTD_buildSeqStore(zc, src, srcSize); - DEBUGLOG(5, "ZSTD_compressBlock_targetCBlockSize (dstCapacity=%u, dictLimit=%u, nextToUpdate=%u, srcSize=%zu)", - (unsigned)dstCapacity, (unsigned)zc->blockState.matchState.window.dictLimit, (unsigned)zc->blockState.matchState.nextToUpdate, srcSize); - FORWARD_IF_ERROR(bss, "ZSTD_buildSeqStore failed"); - - cSize = ZSTD_compressBlock_targetCBlockSize_body(zc, dst, dstCapacity, src, srcSize, bss, lastBlock); - FORWARD_IF_ERROR(cSize, "ZSTD_compressBlock_targetCBlockSize_body failed"); - - if (zc->blockState.prevCBlock->entropy.fse.offcode_repeatMode == FSE_repeat_valid) - zc->blockState.prevCBlock->entropy.fse.offcode_repeatMode = FSE_repeat_check; - - return cSize; -} - -static void ZSTD_overflowCorrectIfNeeded(ZSTD_matchState_t* ms, - ZSTD_cwksp* ws, - ZSTD_CCtx_params const* params, - void const* ip, - void const* iend) -{ - if (ZSTD_window_needOverflowCorrection(ms->window, iend)) { - U32 const maxDist = (U32)1 << params->cParams.windowLog; - U32 const cycleLog = ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy); - U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); - ZSTD_STATIC_ASSERT(ZSTD_CHAINLOG_MAX <= 30); - ZSTD_STATIC_ASSERT(ZSTD_WINDOWLOG_MAX_32 <= 30); - ZSTD_STATIC_ASSERT(ZSTD_WINDOWLOG_MAX <= 31); - ZSTD_cwksp_mark_tables_dirty(ws); - ZSTD_reduceIndex(ms, params, correction); - ZSTD_cwksp_mark_tables_clean(ws); - if (ms->nextToUpdate < correction) ms->nextToUpdate = 0; - else ms->nextToUpdate -= correction; - /* invalidate dictionaries on overflow correction */ - ms->loadedDictEnd = 0; - ms->dictMatchState = NULL; - } -} - -/*! ZSTD_compress_frameChunk() : -* Compress a chunk of data into one or multiple blocks. -* All blocks will be terminated, all input will be consumed. -* Function will issue an error if there is not enough `dstCapacity` to hold the compressed content. -* Frame is supposed already started (header already produced) -* @return : compressed size, or an error code -*/ -static size_t ZSTD_compress_frameChunk (ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - U32 lastFrameChunk) -{ - size_t blockSize = cctx->blockSize; - size_t remaining = srcSize; - const BYTE* ip = (const BYTE*)src; - BYTE* const ostart = (BYTE*)dst; - BYTE* op = ostart; - U32 const maxDist = (U32)1 << cctx->appliedParams.cParams.windowLog; - - assert(cctx->appliedParams.cParams.windowLog <= ZSTD_WINDOWLOG_MAX); - - DEBUGLOG(5, "ZSTD_compress_frameChunk (blockSize=%u)", (unsigned)blockSize); - if (cctx->appliedParams.fParams.checksumFlag && srcSize) - XXH64_update(&cctx->xxhState, src, srcSize); - - while (remaining) { - ZSTD_matchState_t* const ms = &cctx->blockState.matchState; - U32 const lastBlock = lastFrameChunk & (blockSize >= remaining); - - RETURN_ERROR_IF(dstCapacity < ZSTD_blockHeaderSize + MIN_CBLOCK_SIZE, - dstSize_tooSmall, - "not enough space to store compressed block"); - if (remaining < blockSize) blockSize = remaining; - - ZSTD_overflowCorrectIfNeeded( - ms, &cctx->workspace, &cctx->appliedParams, ip, ip + blockSize); - ZSTD_checkDictValidity(&ms->window, ip + blockSize, maxDist, &ms->loadedDictEnd, &ms->dictMatchState); - - /* Ensure hash/chain table insertion resumes no sooner than lowlimit */ - if (ms->nextToUpdate < ms->window.lowLimit) ms->nextToUpdate = ms->window.lowLimit; - - { size_t cSize; - if (ZSTD_useTargetCBlockSize(&cctx->appliedParams)) { - cSize = ZSTD_compressBlock_targetCBlockSize(cctx, op, dstCapacity, ip, blockSize, lastBlock); - FORWARD_IF_ERROR(cSize, "ZSTD_compressBlock_targetCBlockSize failed"); - assert(cSize > 0); - assert(cSize <= blockSize + ZSTD_blockHeaderSize); - } else { - cSize = ZSTD_compressBlock_internal(cctx, - op+ZSTD_blockHeaderSize, dstCapacity-ZSTD_blockHeaderSize, - ip, blockSize, 1 /* frame */); - FORWARD_IF_ERROR(cSize, "ZSTD_compressBlock_internal failed"); - - if (cSize == 0) { /* block is not compressible */ - cSize = ZSTD_noCompressBlock(op, dstCapacity, ip, blockSize, lastBlock); - FORWARD_IF_ERROR(cSize, "ZSTD_noCompressBlock failed"); - } else { - U32 const cBlockHeader = cSize == 1 ? - lastBlock + (((U32)bt_rle)<<1) + (U32)(blockSize << 3) : - lastBlock + (((U32)bt_compressed)<<1) + (U32)(cSize << 3); - MEM_writeLE24(op, cBlockHeader); - cSize += ZSTD_blockHeaderSize; - } - } - - - ip += blockSize; - assert(remaining >= blockSize); - remaining -= blockSize; - op += cSize; - assert(dstCapacity >= cSize); - dstCapacity -= cSize; - cctx->isFirstBlock = 0; - DEBUGLOG(5, "ZSTD_compress_frameChunk: adding a block of size %u", - (unsigned)cSize); - } } - - if (lastFrameChunk && (op>ostart)) cctx->stage = ZSTDcs_ending; - return (size_t)(op-ostart); -} - - -static size_t ZSTD_writeFrameHeader(void* dst, size_t dstCapacity, - const ZSTD_CCtx_params* params, U64 pledgedSrcSize, U32 dictID) -{ BYTE* const op = (BYTE*)dst; - U32 const dictIDSizeCodeLength = (dictID>0) + (dictID>=256) + (dictID>=65536); /* 0-3 */ - U32 const dictIDSizeCode = params->fParams.noDictIDFlag ? 0 : dictIDSizeCodeLength; /* 0-3 */ - U32 const checksumFlag = params->fParams.checksumFlag>0; - U32 const windowSize = (U32)1 << params->cParams.windowLog; - U32 const singleSegment = params->fParams.contentSizeFlag && (windowSize >= pledgedSrcSize); - BYTE const windowLogByte = (BYTE)((params->cParams.windowLog - ZSTD_WINDOWLOG_ABSOLUTEMIN) << 3); - U32 const fcsCode = params->fParams.contentSizeFlag ? - (pledgedSrcSize>=256) + (pledgedSrcSize>=65536+256) + (pledgedSrcSize>=0xFFFFFFFFU) : 0; /* 0-3 */ - BYTE const frameHeaderDescriptionByte = (BYTE)(dictIDSizeCode + (checksumFlag<<2) + (singleSegment<<5) + (fcsCode<<6) ); - size_t pos=0; - - assert(!(params->fParams.contentSizeFlag && pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN)); - RETURN_ERROR_IF(dstCapacity < ZSTD_FRAMEHEADERSIZE_MAX, dstSize_tooSmall, - "dst buf is too small to fit worst-case frame header size."); - DEBUGLOG(4, "ZSTD_writeFrameHeader : dictIDFlag : %u ; dictID : %u ; dictIDSizeCode : %u", - !params->fParams.noDictIDFlag, (unsigned)dictID, (unsigned)dictIDSizeCode); - - if (params->format == ZSTD_f_zstd1) { - MEM_writeLE32(dst, ZSTD_MAGICNUMBER); - pos = 4; - } - op[pos++] = frameHeaderDescriptionByte; - if (!singleSegment) op[pos++] = windowLogByte; - switch(dictIDSizeCode) - { - default: assert(0); /* impossible */ - case 0 : break; - case 1 : op[pos] = (BYTE)(dictID); pos++; break; - case 2 : MEM_writeLE16(op+pos, (U16)dictID); pos+=2; break; - case 3 : MEM_writeLE32(op+pos, dictID); pos+=4; break; - } - switch(fcsCode) - { - default: assert(0); /* impossible */ - case 0 : if (singleSegment) op[pos++] = (BYTE)(pledgedSrcSize); break; - case 1 : MEM_writeLE16(op+pos, (U16)(pledgedSrcSize-256)); pos+=2; break; - case 2 : MEM_writeLE32(op+pos, (U32)(pledgedSrcSize)); pos+=4; break; - case 3 : MEM_writeLE64(op+pos, (U64)(pledgedSrcSize)); pos+=8; break; - } - return pos; -} - -/* ZSTD_writeLastEmptyBlock() : - * output an empty Block with end-of-frame mark to complete a frame - * @return : size of data written into `dst` (== ZSTD_blockHeaderSize (defined in zstd_internal.h)) - * or an error code if `dstCapacity` is too small (stage != ZSTDcs_init, stage_wrong, - "wrong cctx stage"); - RETURN_ERROR_IF(cctx->appliedParams.ldmParams.enableLdm, - parameter_unsupported, - "incompatible with ldm"); - cctx->externSeqStore.seq = seq; - cctx->externSeqStore.size = nbSeq; - cctx->externSeqStore.capacity = nbSeq; - cctx->externSeqStore.pos = 0; - return 0; -} - - -static size_t ZSTD_compressContinue_internal (ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - U32 frame, U32 lastFrameChunk) -{ - ZSTD_matchState_t* const ms = &cctx->blockState.matchState; - size_t fhSize = 0; - - DEBUGLOG(5, "ZSTD_compressContinue_internal, stage: %u, srcSize: %u", - cctx->stage, (unsigned)srcSize); - RETURN_ERROR_IF(cctx->stage==ZSTDcs_created, stage_wrong, - "missing init (ZSTD_compressBegin)"); - - if (frame && (cctx->stage==ZSTDcs_init)) { - fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, &cctx->appliedParams, - cctx->pledgedSrcSizePlusOne-1, cctx->dictID); - FORWARD_IF_ERROR(fhSize, "ZSTD_writeFrameHeader failed"); - assert(fhSize <= dstCapacity); - dstCapacity -= fhSize; - dst = (char*)dst + fhSize; - cctx->stage = ZSTDcs_ongoing; - } - - if (!srcSize) return fhSize; /* do not generate an empty block if no input */ - - if (!ZSTD_window_update(&ms->window, src, srcSize)) { - ms->nextToUpdate = ms->window.dictLimit; - } - if (cctx->appliedParams.ldmParams.enableLdm) { - ZSTD_window_update(&cctx->ldmState.window, src, srcSize); - } - - if (!frame) { - /* overflow check and correction for block mode */ - ZSTD_overflowCorrectIfNeeded( - ms, &cctx->workspace, &cctx->appliedParams, - src, (BYTE const*)src + srcSize); - } - - DEBUGLOG(5, "ZSTD_compressContinue_internal (blockSize=%u)", (unsigned)cctx->blockSize); - { size_t const cSize = frame ? - ZSTD_compress_frameChunk (cctx, dst, dstCapacity, src, srcSize, lastFrameChunk) : - ZSTD_compressBlock_internal (cctx, dst, dstCapacity, src, srcSize, 0 /* frame */); - FORWARD_IF_ERROR(cSize, "%s", frame ? "ZSTD_compress_frameChunk failed" : "ZSTD_compressBlock_internal failed"); - cctx->consumedSrcSize += srcSize; - cctx->producedCSize += (cSize + fhSize); - assert(!(cctx->appliedParams.fParams.contentSizeFlag && cctx->pledgedSrcSizePlusOne == 0)); - if (cctx->pledgedSrcSizePlusOne != 0) { /* control src size */ - ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_UNKNOWN == (unsigned long long)-1); - RETURN_ERROR_IF( - cctx->consumedSrcSize+1 > cctx->pledgedSrcSizePlusOne, - srcSize_wrong, - "error : pledgedSrcSize = %u, while realSrcSize >= %u", - (unsigned)cctx->pledgedSrcSizePlusOne-1, - (unsigned)cctx->consumedSrcSize); - } - return cSize + fhSize; - } -} - -size_t ZSTD_compressContinue (ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize) -{ - DEBUGLOG(5, "ZSTD_compressContinue (srcSize=%u)", (unsigned)srcSize); - return ZSTD_compressContinue_internal(cctx, dst, dstCapacity, src, srcSize, 1 /* frame mode */, 0 /* last chunk */); -} - - -size_t ZSTD_getBlockSize(const ZSTD_CCtx* cctx) -{ - ZSTD_compressionParameters const cParams = cctx->appliedParams.cParams; - assert(!ZSTD_checkCParams(cParams)); - return MIN (ZSTD_BLOCKSIZE_MAX, (U32)1 << cParams.windowLog); -} - -size_t ZSTD_compressBlock(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) -{ - DEBUGLOG(5, "ZSTD_compressBlock: srcSize = %u", (unsigned)srcSize); - { size_t const blockSizeMax = ZSTD_getBlockSize(cctx); - RETURN_ERROR_IF(srcSize > blockSizeMax, srcSize_wrong, "input is larger than a block"); } - - return ZSTD_compressContinue_internal(cctx, dst, dstCapacity, src, srcSize, 0 /* frame mode */, 0 /* last chunk */); -} - -/*! ZSTD_loadDictionaryContent() : - * @return : 0, or an error code - */ -static size_t ZSTD_loadDictionaryContent(ZSTD_matchState_t* ms, - ldmState_t* ls, - ZSTD_cwksp* ws, - ZSTD_CCtx_params const* params, - const void* src, size_t srcSize, - ZSTD_dictTableLoadMethod_e dtlm) -{ - const BYTE* ip = (const BYTE*) src; - const BYTE* const iend = ip + srcSize; - - ZSTD_window_update(&ms->window, src, srcSize); - ms->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ms->window.base); - - if (params->ldmParams.enableLdm && ls != NULL) { - ZSTD_window_update(&ls->window, src, srcSize); - ls->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ls->window.base); - } - - /* Assert that we the ms params match the params we're being given */ - ZSTD_assertEqualCParams(params->cParams, ms->cParams); - - if (srcSize <= HASH_READ_SIZE) return 0; - - while (iend - ip > HASH_READ_SIZE) { - size_t const remaining = (size_t)(iend - ip); - size_t const chunk = MIN(remaining, ZSTD_CHUNKSIZE_MAX); - const BYTE* const ichunk = ip + chunk; - - ZSTD_overflowCorrectIfNeeded(ms, ws, params, ip, ichunk); - - if (params->ldmParams.enableLdm && ls != NULL) - ZSTD_ldm_fillHashTable(ls, (const BYTE*)src, (const BYTE*)src + srcSize, ¶ms->ldmParams); - - switch(params->cParams.strategy) - { - case ZSTD_fast: - ZSTD_fillHashTable(ms, ichunk, dtlm); - break; - case ZSTD_dfast: - ZSTD_fillDoubleHashTable(ms, ichunk, dtlm); - break; - - case ZSTD_greedy: - case ZSTD_lazy: - case ZSTD_lazy2: - if (chunk >= HASH_READ_SIZE) - ZSTD_insertAndFindFirstIndex(ms, ichunk-HASH_READ_SIZE); - break; - - case ZSTD_btlazy2: /* we want the dictionary table fully sorted */ - case ZSTD_btopt: - case ZSTD_btultra: - case ZSTD_btultra2: - if (chunk >= HASH_READ_SIZE) - ZSTD_updateTree(ms, ichunk-HASH_READ_SIZE, ichunk); - break; - - default: - assert(0); /* not possible : not a valid strategy id */ - } - - ip = ichunk; - } - - ms->nextToUpdate = (U32)(iend - ms->window.base); - return 0; -} - - -/* Dictionaries that assign zero probability to symbols that show up causes problems - when FSE encoding. Refuse dictionaries that assign zero probability to symbols - that we may encounter during compression. - NOTE: This behavior is not standard and could be improved in the future. */ -static size_t ZSTD_checkDictNCount(short* normalizedCounter, unsigned dictMaxSymbolValue, unsigned maxSymbolValue) { - U32 s; - RETURN_ERROR_IF(dictMaxSymbolValue < maxSymbolValue, dictionary_corrupted, "dict fse tables don't have all symbols"); - for (s = 0; s <= maxSymbolValue; ++s) { - RETURN_ERROR_IF(normalizedCounter[s] == 0, dictionary_corrupted, "dict fse tables don't have all symbols"); - } - return 0; -} - -size_t ZSTD_loadCEntropy(ZSTD_compressedBlockState_t* bs, void* workspace, - short* offcodeNCount, unsigned* offcodeMaxValue, - const void* const dict, size_t dictSize) -{ - const BYTE* dictPtr = (const BYTE*)dict; /* skip magic num and dict ID */ - const BYTE* const dictEnd = dictPtr + dictSize; - dictPtr += 8; - bs->entropy.huf.repeatMode = HUF_repeat_check; - - { unsigned maxSymbolValue = 255; - unsigned hasZeroWeights = 1; - size_t const hufHeaderSize = HUF_readCTable((HUF_CElt*)bs->entropy.huf.CTable, &maxSymbolValue, dictPtr, - dictEnd-dictPtr, &hasZeroWeights); - - /* We only set the loaded table as valid if it contains all non-zero - * weights. Otherwise, we set it to check */ - if (!hasZeroWeights) - bs->entropy.huf.repeatMode = HUF_repeat_valid; - - RETURN_ERROR_IF(HUF_isError(hufHeaderSize), dictionary_corrupted, ""); - RETURN_ERROR_IF(maxSymbolValue < 255, dictionary_corrupted, ""); - dictPtr += hufHeaderSize; - } - - { unsigned offcodeLog; - size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr); - RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); - RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, ""); - /* Defer checking offcodeMaxValue because we need to know the size of the dictionary content */ - /* fill all offset symbols to avoid garbage at end of table */ - RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( - bs->entropy.fse.offcodeCTable, - offcodeNCount, MaxOff, offcodeLog, - workspace, HUF_WORKSPACE_SIZE)), - dictionary_corrupted, ""); - dictPtr += offcodeHeaderSize; - } - - { short matchlengthNCount[MaxML+1]; - unsigned matchlengthMaxValue = MaxML, matchlengthLog; - size_t const matchlengthHeaderSize = FSE_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, dictEnd-dictPtr); - RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); - RETURN_ERROR_IF(matchlengthLog > MLFSELog, dictionary_corrupted, ""); - /* Every match length code must have non-zero probability */ - FORWARD_IF_ERROR( ZSTD_checkDictNCount(matchlengthNCount, matchlengthMaxValue, MaxML), ""); - RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( - bs->entropy.fse.matchlengthCTable, - matchlengthNCount, matchlengthMaxValue, matchlengthLog, - workspace, HUF_WORKSPACE_SIZE)), - dictionary_corrupted, ""); - dictPtr += matchlengthHeaderSize; - } - - { short litlengthNCount[MaxLL+1]; - unsigned litlengthMaxValue = MaxLL, litlengthLog; - size_t const litlengthHeaderSize = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, dictEnd-dictPtr); - RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); - RETURN_ERROR_IF(litlengthLog > LLFSELog, dictionary_corrupted, ""); - /* Every literal length code must have non-zero probability */ - FORWARD_IF_ERROR( ZSTD_checkDictNCount(litlengthNCount, litlengthMaxValue, MaxLL), ""); - RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( - bs->entropy.fse.litlengthCTable, - litlengthNCount, litlengthMaxValue, litlengthLog, - workspace, HUF_WORKSPACE_SIZE)), - dictionary_corrupted, ""); - dictPtr += litlengthHeaderSize; - } - - RETURN_ERROR_IF(dictPtr+12 > dictEnd, dictionary_corrupted, ""); - bs->rep[0] = MEM_readLE32(dictPtr+0); - bs->rep[1] = MEM_readLE32(dictPtr+4); - bs->rep[2] = MEM_readLE32(dictPtr+8); - dictPtr += 12; - - return dictPtr - (const BYTE*)dict; -} - -/* Dictionary format : - * See : - * https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md#dictionary-format - */ -/*! ZSTD_loadZstdDictionary() : - * @return : dictID, or an error code - * assumptions : magic number supposed already checked - * dictSize supposed >= 8 - */ -static size_t ZSTD_loadZstdDictionary(ZSTD_compressedBlockState_t* bs, - ZSTD_matchState_t* ms, - ZSTD_cwksp* ws, - ZSTD_CCtx_params const* params, - const void* dict, size_t dictSize, - ZSTD_dictTableLoadMethod_e dtlm, - void* workspace) -{ - const BYTE* dictPtr = (const BYTE*)dict; - const BYTE* const dictEnd = dictPtr + dictSize; - short offcodeNCount[MaxOff+1]; - unsigned offcodeMaxValue = MaxOff; - size_t dictID; - size_t eSize; - - ZSTD_STATIC_ASSERT(HUF_WORKSPACE_SIZE >= (1<= 8); - assert(MEM_readLE32(dictPtr) == ZSTD_MAGIC_DICTIONARY); - - dictID = params->fParams.noDictIDFlag ? 0 : MEM_readLE32(dictPtr + 4 /* skip magic number */ ); - eSize = ZSTD_loadCEntropy(bs, workspace, offcodeNCount, &offcodeMaxValue, dict, dictSize); - FORWARD_IF_ERROR(eSize, "ZSTD_loadCEntropy failed"); - dictPtr += eSize; - - { size_t const dictContentSize = (size_t)(dictEnd - dictPtr); - U32 offcodeMax = MaxOff; - if (dictContentSize <= ((U32)-1) - 128 KB) { - U32 const maxOffset = (U32)dictContentSize + 128 KB; /* The maximum offset that must be supported */ - offcodeMax = ZSTD_highbit32(maxOffset); /* Calculate minimum offset code required to represent maxOffset */ - } - /* All offset values <= dictContentSize + 128 KB must be representable */ - FORWARD_IF_ERROR(ZSTD_checkDictNCount(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff)), ""); - /* All repCodes must be <= dictContentSize and != 0*/ - { U32 u; - for (u=0; u<3; u++) { - RETURN_ERROR_IF(bs->rep[u] == 0, dictionary_corrupted, ""); - RETURN_ERROR_IF(bs->rep[u] > dictContentSize, dictionary_corrupted, ""); - } } - - bs->entropy.fse.offcode_repeatMode = FSE_repeat_valid; - bs->entropy.fse.matchlength_repeatMode = FSE_repeat_valid; - bs->entropy.fse.litlength_repeatMode = FSE_repeat_valid; - FORWARD_IF_ERROR(ZSTD_loadDictionaryContent( - ms, NULL, ws, params, dictPtr, dictContentSize, dtlm), ""); - return dictID; - } -} - -/** ZSTD_compress_insertDictionary() : -* @return : dictID, or an error code */ -static size_t -ZSTD_compress_insertDictionary(ZSTD_compressedBlockState_t* bs, - ZSTD_matchState_t* ms, - ldmState_t* ls, - ZSTD_cwksp* ws, - const ZSTD_CCtx_params* params, - const void* dict, size_t dictSize, - ZSTD_dictContentType_e dictContentType, - ZSTD_dictTableLoadMethod_e dtlm, - void* workspace) -{ - DEBUGLOG(4, "ZSTD_compress_insertDictionary (dictSize=%u)", (U32)dictSize); - if ((dict==NULL) || (dictSize<8)) { - RETURN_ERROR_IF(dictContentType == ZSTD_dct_fullDict, dictionary_wrong, ""); - return 0; - } - - ZSTD_reset_compressedBlockState(bs); - - /* dict restricted modes */ - if (dictContentType == ZSTD_dct_rawContent) - return ZSTD_loadDictionaryContent(ms, ls, ws, params, dict, dictSize, dtlm); - - if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) { - if (dictContentType == ZSTD_dct_auto) { - DEBUGLOG(4, "raw content dictionary detected"); - return ZSTD_loadDictionaryContent( - ms, ls, ws, params, dict, dictSize, dtlm); - } - RETURN_ERROR_IF(dictContentType == ZSTD_dct_fullDict, dictionary_wrong, ""); - assert(0); /* impossible */ - } - - /* dict as full zstd dictionary */ - return ZSTD_loadZstdDictionary( - bs, ms, ws, params, dict, dictSize, dtlm, workspace); -} - -#define ZSTD_USE_CDICT_PARAMS_SRCSIZE_CUTOFF (128 KB) -#define ZSTD_USE_CDICT_PARAMS_DICTSIZE_MULTIPLIER (6) - -/*! ZSTD_compressBegin_internal() : - * @return : 0, or an error code */ -static size_t ZSTD_compressBegin_internal(ZSTD_CCtx* cctx, - const void* dict, size_t dictSize, - ZSTD_dictContentType_e dictContentType, - ZSTD_dictTableLoadMethod_e dtlm, - const ZSTD_CDict* cdict, - const ZSTD_CCtx_params* params, U64 pledgedSrcSize, - ZSTD_buffered_policy_e zbuff) -{ - DEBUGLOG(4, "ZSTD_compressBegin_internal: wlog=%u", params->cParams.windowLog); - /* params are supposed to be fully validated at this point */ - assert(!ZSTD_isError(ZSTD_checkCParams(params->cParams))); - assert(!((dict) && (cdict))); /* either dict or cdict, not both */ - if ( (cdict) - && (cdict->dictContentSize > 0) - && ( pledgedSrcSize < ZSTD_USE_CDICT_PARAMS_SRCSIZE_CUTOFF - || pledgedSrcSize < cdict->dictContentSize * ZSTD_USE_CDICT_PARAMS_DICTSIZE_MULTIPLIER - || pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN - || cdict->compressionLevel == 0) - && (params->attachDictPref != ZSTD_dictForceLoad) ) { - return ZSTD_resetCCtx_usingCDict(cctx, cdict, params, pledgedSrcSize, zbuff); - } - - FORWARD_IF_ERROR( ZSTD_resetCCtx_internal(cctx, *params, pledgedSrcSize, - ZSTDcrp_makeClean, zbuff) , ""); - { size_t const dictID = cdict ? - ZSTD_compress_insertDictionary( - cctx->blockState.prevCBlock, &cctx->blockState.matchState, - &cctx->ldmState, &cctx->workspace, &cctx->appliedParams, cdict->dictContent, - cdict->dictContentSize, dictContentType, dtlm, - cctx->entropyWorkspace) - : ZSTD_compress_insertDictionary( - cctx->blockState.prevCBlock, &cctx->blockState.matchState, - &cctx->ldmState, &cctx->workspace, &cctx->appliedParams, dict, dictSize, - dictContentType, dtlm, cctx->entropyWorkspace); - FORWARD_IF_ERROR(dictID, "ZSTD_compress_insertDictionary failed"); - assert(dictID <= UINT_MAX); - cctx->dictID = (U32)dictID; - } - return 0; -} - -size_t ZSTD_compressBegin_advanced_internal(ZSTD_CCtx* cctx, - const void* dict, size_t dictSize, - ZSTD_dictContentType_e dictContentType, - ZSTD_dictTableLoadMethod_e dtlm, - const ZSTD_CDict* cdict, - const ZSTD_CCtx_params* params, - unsigned long long pledgedSrcSize) -{ - DEBUGLOG(4, "ZSTD_compressBegin_advanced_internal: wlog=%u", params->cParams.windowLog); - /* compression parameters verification and optimization */ - FORWARD_IF_ERROR( ZSTD_checkCParams(params->cParams) , ""); - return ZSTD_compressBegin_internal(cctx, - dict, dictSize, dictContentType, dtlm, - cdict, - params, pledgedSrcSize, - ZSTDb_not_buffered); -} - -/*! ZSTD_compressBegin_advanced() : -* @return : 0, or an error code */ -size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, - const void* dict, size_t dictSize, - ZSTD_parameters params, unsigned long long pledgedSrcSize) -{ - ZSTD_CCtx_params const cctxParams = - ZSTD_assignParamsToCCtxParams(&cctx->requestedParams, ¶ms); - return ZSTD_compressBegin_advanced_internal(cctx, - dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, - NULL /*cdict*/, - &cctxParams, pledgedSrcSize); -} - -size_t ZSTD_compressBegin_usingDict(ZSTD_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel) -{ - ZSTD_parameters const params = ZSTD_getParams_internal(compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN, dictSize); - ZSTD_CCtx_params const cctxParams = - ZSTD_assignParamsToCCtxParams(&cctx->requestedParams, ¶ms); - DEBUGLOG(4, "ZSTD_compressBegin_usingDict (dictSize=%u)", (unsigned)dictSize); - return ZSTD_compressBegin_internal(cctx, dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, NULL, - &cctxParams, ZSTD_CONTENTSIZE_UNKNOWN, ZSTDb_not_buffered); -} - -size_t ZSTD_compressBegin(ZSTD_CCtx* cctx, int compressionLevel) -{ - return ZSTD_compressBegin_usingDict(cctx, NULL, 0, compressionLevel); -} - - -/*! ZSTD_writeEpilogue() : -* Ends a frame. -* @return : nb of bytes written into dst (or an error code) */ -static size_t ZSTD_writeEpilogue(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity) -{ - BYTE* const ostart = (BYTE*)dst; - BYTE* op = ostart; - size_t fhSize = 0; - - DEBUGLOG(4, "ZSTD_writeEpilogue"); - RETURN_ERROR_IF(cctx->stage == ZSTDcs_created, stage_wrong, "init missing"); - - /* special case : empty frame */ - if (cctx->stage == ZSTDcs_init) { - fhSize = ZSTD_writeFrameHeader(dst, dstCapacity, &cctx->appliedParams, 0, 0); - FORWARD_IF_ERROR(fhSize, "ZSTD_writeFrameHeader failed"); - dstCapacity -= fhSize; - op += fhSize; - cctx->stage = ZSTDcs_ongoing; - } - - if (cctx->stage != ZSTDcs_ending) { - /* write one last empty block, make it the "last" block */ - U32 const cBlockHeader24 = 1 /* last block */ + (((U32)bt_raw)<<1) + 0; - RETURN_ERROR_IF(dstCapacity<4, dstSize_tooSmall, "no room for epilogue"); - MEM_writeLE32(op, cBlockHeader24); - op += ZSTD_blockHeaderSize; - dstCapacity -= ZSTD_blockHeaderSize; - } - - if (cctx->appliedParams.fParams.checksumFlag) { - U32 const checksum = (U32) XXH64_digest(&cctx->xxhState); - RETURN_ERROR_IF(dstCapacity<4, dstSize_tooSmall, "no room for checksum"); - DEBUGLOG(4, "ZSTD_writeEpilogue: write checksum : %08X", (unsigned)checksum); - MEM_writeLE32(op, checksum); - op += 4; - } - - cctx->stage = ZSTDcs_created; /* return to "created but no init" status */ - return op-ostart; -} - -size_t ZSTD_compressEnd (ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize) -{ - size_t endResult; - size_t const cSize = ZSTD_compressContinue_internal(cctx, - dst, dstCapacity, src, srcSize, - 1 /* frame mode */, 1 /* last chunk */); - FORWARD_IF_ERROR(cSize, "ZSTD_compressContinue_internal failed"); - endResult = ZSTD_writeEpilogue(cctx, (char*)dst + cSize, dstCapacity-cSize); - FORWARD_IF_ERROR(endResult, "ZSTD_writeEpilogue failed"); - assert(!(cctx->appliedParams.fParams.contentSizeFlag && cctx->pledgedSrcSizePlusOne == 0)); - if (cctx->pledgedSrcSizePlusOne != 0) { /* control src size */ - ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_UNKNOWN == (unsigned long long)-1); - DEBUGLOG(4, "end of frame : controlling src size"); - RETURN_ERROR_IF( - cctx->pledgedSrcSizePlusOne != cctx->consumedSrcSize+1, - srcSize_wrong, - "error : pledgedSrcSize = %u, while realSrcSize = %u", - (unsigned)cctx->pledgedSrcSizePlusOne-1, - (unsigned)cctx->consumedSrcSize); - } - return cSize + endResult; -} - - -static size_t ZSTD_compress_internal (ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const void* dict,size_t dictSize, - const ZSTD_parameters* params) -{ - ZSTD_CCtx_params const cctxParams = - ZSTD_assignParamsToCCtxParams(&cctx->requestedParams, params); - DEBUGLOG(4, "ZSTD_compress_internal"); - return ZSTD_compress_advanced_internal(cctx, - dst, dstCapacity, - src, srcSize, - dict, dictSize, - &cctxParams); -} - -size_t ZSTD_compress_advanced (ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const void* dict,size_t dictSize, - ZSTD_parameters params) -{ - DEBUGLOG(4, "ZSTD_compress_advanced"); - FORWARD_IF_ERROR(ZSTD_checkCParams(params.cParams), ""); - return ZSTD_compress_internal(cctx, - dst, dstCapacity, - src, srcSize, - dict, dictSize, - ¶ms); -} - -/* Internal */ -size_t ZSTD_compress_advanced_internal( - ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const void* dict,size_t dictSize, - const ZSTD_CCtx_params* params) -{ - DEBUGLOG(4, "ZSTD_compress_advanced_internal (srcSize:%u)", (unsigned)srcSize); - FORWARD_IF_ERROR( ZSTD_compressBegin_internal(cctx, - dict, dictSize, ZSTD_dct_auto, ZSTD_dtlm_fast, NULL, - params, srcSize, ZSTDb_not_buffered) , ""); - return ZSTD_compressEnd(cctx, dst, dstCapacity, src, srcSize); -} - -size_t ZSTD_compress_usingDict(ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const void* dict, size_t dictSize, - int compressionLevel) -{ - ZSTD_parameters const params = ZSTD_getParams_internal(compressionLevel, srcSize, dict ? dictSize : 0); - ZSTD_CCtx_params cctxParams = ZSTD_assignParamsToCCtxParams(&cctx->requestedParams, ¶ms); - DEBUGLOG(4, "ZSTD_compress_usingDict (srcSize=%u)", (unsigned)srcSize); - assert(params.fParams.contentSizeFlag == 1); - return ZSTD_compress_advanced_internal(cctx, dst, dstCapacity, src, srcSize, dict, dictSize, &cctxParams); -} - -size_t ZSTD_compressCCtx(ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - int compressionLevel) -{ - DEBUGLOG(4, "ZSTD_compressCCtx (srcSize=%u)", (unsigned)srcSize); - assert(cctx != NULL); - return ZSTD_compress_usingDict(cctx, dst, dstCapacity, src, srcSize, NULL, 0, compressionLevel); -} - -size_t ZSTD_compress(void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - int compressionLevel) -{ - size_t result; - ZSTD_CCtx ctxBody; - ZSTD_initCCtx(&ctxBody, ZSTD_defaultCMem); - result = ZSTD_compressCCtx(&ctxBody, dst, dstCapacity, src, srcSize, compressionLevel); - ZSTD_freeCCtxContent(&ctxBody); /* can't free ctxBody itself, as it's on stack; free only heap content */ - return result; -} - - -/* ===== Dictionary API ===== */ - -/*! ZSTD_estimateCDictSize_advanced() : - * Estimate amount of memory that will be needed to create a dictionary with following arguments */ -size_t ZSTD_estimateCDictSize_advanced( - size_t dictSize, ZSTD_compressionParameters cParams, - ZSTD_dictLoadMethod_e dictLoadMethod) -{ - DEBUGLOG(5, "sizeof(ZSTD_CDict) : %u", (unsigned)sizeof(ZSTD_CDict)); - return ZSTD_cwksp_alloc_size(sizeof(ZSTD_CDict)) - + ZSTD_cwksp_alloc_size(HUF_WORKSPACE_SIZE) - + ZSTD_sizeof_matchState(&cParams, /* forCCtx */ 0) - + (dictLoadMethod == ZSTD_dlm_byRef ? 0 - : ZSTD_cwksp_alloc_size(ZSTD_cwksp_align(dictSize, sizeof(void *)))); -} - -size_t ZSTD_estimateCDictSize(size_t dictSize, int compressionLevel) -{ - ZSTD_compressionParameters const cParams = ZSTD_getCParams_internal(compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN, dictSize); - return ZSTD_estimateCDictSize_advanced(dictSize, cParams, ZSTD_dlm_byCopy); -} - -size_t ZSTD_sizeof_CDict(const ZSTD_CDict* cdict) -{ - if (cdict==NULL) return 0; /* support sizeof on NULL */ - DEBUGLOG(5, "sizeof(*cdict) : %u", (unsigned)sizeof(*cdict)); - /* cdict may be in the workspace */ - return (cdict->workspace.workspace == cdict ? 0 : sizeof(*cdict)) - + ZSTD_cwksp_sizeof(&cdict->workspace); -} - -static size_t ZSTD_initCDict_internal( - ZSTD_CDict* cdict, - const void* dictBuffer, size_t dictSize, - ZSTD_dictLoadMethod_e dictLoadMethod, - ZSTD_dictContentType_e dictContentType, - ZSTD_compressionParameters cParams) -{ - DEBUGLOG(3, "ZSTD_initCDict_internal (dictContentType:%u)", (unsigned)dictContentType); - assert(!ZSTD_checkCParams(cParams)); - cdict->matchState.cParams = cParams; - if ((dictLoadMethod == ZSTD_dlm_byRef) || (!dictBuffer) || (!dictSize)) { - cdict->dictContent = dictBuffer; - } else { - void *internalBuffer = ZSTD_cwksp_reserve_object(&cdict->workspace, ZSTD_cwksp_align(dictSize, sizeof(void*))); - RETURN_ERROR_IF(!internalBuffer, memory_allocation, "NULL pointer!"); - cdict->dictContent = internalBuffer; - memcpy(internalBuffer, dictBuffer, dictSize); - } - cdict->dictContentSize = dictSize; - - cdict->entropyWorkspace = (U32*)ZSTD_cwksp_reserve_object(&cdict->workspace, HUF_WORKSPACE_SIZE); - - - /* Reset the state to no dictionary */ - ZSTD_reset_compressedBlockState(&cdict->cBlockState); - FORWARD_IF_ERROR(ZSTD_reset_matchState( - &cdict->matchState, - &cdict->workspace, - &cParams, - ZSTDcrp_makeClean, - ZSTDirp_reset, - ZSTD_resetTarget_CDict), ""); - /* (Maybe) load the dictionary - * Skips loading the dictionary if it is < 8 bytes. - */ - { ZSTD_CCtx_params params; - memset(¶ms, 0, sizeof(params)); - params.compressionLevel = ZSTD_CLEVEL_DEFAULT; - params.fParams.contentSizeFlag = 1; - params.cParams = cParams; - { size_t const dictID = ZSTD_compress_insertDictionary( - &cdict->cBlockState, &cdict->matchState, NULL, &cdict->workspace, - ¶ms, cdict->dictContent, cdict->dictContentSize, - dictContentType, ZSTD_dtlm_full, cdict->entropyWorkspace); - FORWARD_IF_ERROR(dictID, "ZSTD_compress_insertDictionary failed"); - assert(dictID <= (size_t)(U32)-1); - cdict->dictID = (U32)dictID; - } - } - - return 0; -} - -ZSTD_CDict* ZSTD_createCDict_advanced(const void* dictBuffer, size_t dictSize, - ZSTD_dictLoadMethod_e dictLoadMethod, - ZSTD_dictContentType_e dictContentType, - ZSTD_compressionParameters cParams, ZSTD_customMem customMem) -{ - DEBUGLOG(3, "ZSTD_createCDict_advanced, mode %u", (unsigned)dictContentType); - if (!customMem.customAlloc ^ !customMem.customFree) return NULL; - - { size_t const workspaceSize = - ZSTD_cwksp_alloc_size(sizeof(ZSTD_CDict)) + - ZSTD_cwksp_alloc_size(HUF_WORKSPACE_SIZE) + - ZSTD_sizeof_matchState(&cParams, /* forCCtx */ 0) + - (dictLoadMethod == ZSTD_dlm_byRef ? 0 - : ZSTD_cwksp_alloc_size(ZSTD_cwksp_align(dictSize, sizeof(void*)))); - void* const workspace = ZSTD_malloc(workspaceSize, customMem); - ZSTD_cwksp ws; - ZSTD_CDict* cdict; - - if (!workspace) { - ZSTD_free(workspace, customMem); - return NULL; - } - - ZSTD_cwksp_init(&ws, workspace, workspaceSize); - - cdict = (ZSTD_CDict*)ZSTD_cwksp_reserve_object(&ws, sizeof(ZSTD_CDict)); - assert(cdict != NULL); - ZSTD_cwksp_move(&cdict->workspace, &ws); - cdict->customMem = customMem; - cdict->compressionLevel = 0; /* signals advanced API usage */ - - if (ZSTD_isError( ZSTD_initCDict_internal(cdict, - dictBuffer, dictSize, - dictLoadMethod, dictContentType, - cParams) )) { - ZSTD_freeCDict(cdict); - return NULL; - } - - return cdict; - } -} - -ZSTD_CDict* ZSTD_createCDict(const void* dict, size_t dictSize, int compressionLevel) -{ - ZSTD_compressionParameters cParams = ZSTD_getCParams_internal(compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN, dictSize); - ZSTD_CDict* cdict = ZSTD_createCDict_advanced(dict, dictSize, - ZSTD_dlm_byCopy, ZSTD_dct_auto, - cParams, ZSTD_defaultCMem); - if (cdict) - cdict->compressionLevel = compressionLevel == 0 ? ZSTD_CLEVEL_DEFAULT : compressionLevel; - return cdict; -} - -ZSTD_CDict* ZSTD_createCDict_byReference(const void* dict, size_t dictSize, int compressionLevel) -{ - ZSTD_compressionParameters cParams = ZSTD_getCParams_internal(compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN, dictSize); - return ZSTD_createCDict_advanced(dict, dictSize, - ZSTD_dlm_byRef, ZSTD_dct_auto, - cParams, ZSTD_defaultCMem); -} - -size_t ZSTD_freeCDict(ZSTD_CDict* cdict) -{ - if (cdict==NULL) return 0; /* support free on NULL */ - { ZSTD_customMem const cMem = cdict->customMem; - int cdictInWorkspace = ZSTD_cwksp_owns_buffer(&cdict->workspace, cdict); - ZSTD_cwksp_free(&cdict->workspace, cMem); - if (!cdictInWorkspace) { - ZSTD_free(cdict, cMem); - } - return 0; - } -} - -/*! ZSTD_initStaticCDict_advanced() : - * Generate a digested dictionary in provided memory area. - * workspace: The memory area to emplace the dictionary into. - * Provided pointer must 8-bytes aligned. - * It must outlive dictionary usage. - * workspaceSize: Use ZSTD_estimateCDictSize() - * to determine how large workspace must be. - * cParams : use ZSTD_getCParams() to transform a compression level - * into its relevants cParams. - * @return : pointer to ZSTD_CDict*, or NULL if error (size too small) - * Note : there is no corresponding "free" function. - * Since workspace was allocated externally, it must be freed externally. - */ -const ZSTD_CDict* ZSTD_initStaticCDict( - void* workspace, size_t workspaceSize, - const void* dict, size_t dictSize, - ZSTD_dictLoadMethod_e dictLoadMethod, - ZSTD_dictContentType_e dictContentType, - ZSTD_compressionParameters cParams) -{ - size_t const matchStateSize = ZSTD_sizeof_matchState(&cParams, /* forCCtx */ 0); - size_t const neededSize = ZSTD_cwksp_alloc_size(sizeof(ZSTD_CDict)) - + (dictLoadMethod == ZSTD_dlm_byRef ? 0 - : ZSTD_cwksp_alloc_size(ZSTD_cwksp_align(dictSize, sizeof(void*)))) - + ZSTD_cwksp_alloc_size(HUF_WORKSPACE_SIZE) - + matchStateSize; - ZSTD_CDict* cdict; - - if ((size_t)workspace & 7) return NULL; /* 8-aligned */ - - { - ZSTD_cwksp ws; - ZSTD_cwksp_init(&ws, workspace, workspaceSize); - cdict = (ZSTD_CDict*)ZSTD_cwksp_reserve_object(&ws, sizeof(ZSTD_CDict)); - if (cdict == NULL) return NULL; - ZSTD_cwksp_move(&cdict->workspace, &ws); - } - - DEBUGLOG(4, "(workspaceSize < neededSize) : (%u < %u) => %u", - (unsigned)workspaceSize, (unsigned)neededSize, (unsigned)(workspaceSize < neededSize)); - if (workspaceSize < neededSize) return NULL; - - if (ZSTD_isError( ZSTD_initCDict_internal(cdict, - dict, dictSize, - dictLoadMethod, dictContentType, - cParams) )) - return NULL; - - return cdict; -} - -ZSTD_compressionParameters ZSTD_getCParamsFromCDict(const ZSTD_CDict* cdict) -{ - assert(cdict != NULL); - return cdict->matchState.cParams; -} - -/* ZSTD_compressBegin_usingCDict_advanced() : - * cdict must be != NULL */ -size_t ZSTD_compressBegin_usingCDict_advanced( - ZSTD_CCtx* const cctx, const ZSTD_CDict* const cdict, - ZSTD_frameParameters const fParams, unsigned long long const pledgedSrcSize) -{ - DEBUGLOG(4, "ZSTD_compressBegin_usingCDict_advanced"); - RETURN_ERROR_IF(cdict==NULL, dictionary_wrong, "NULL pointer!"); - { ZSTD_CCtx_params params = cctx->requestedParams; - params.cParams = ( pledgedSrcSize < ZSTD_USE_CDICT_PARAMS_SRCSIZE_CUTOFF - || pledgedSrcSize < cdict->dictContentSize * ZSTD_USE_CDICT_PARAMS_DICTSIZE_MULTIPLIER - || pledgedSrcSize == ZSTD_CONTENTSIZE_UNKNOWN - || cdict->compressionLevel == 0 ) - && (params.attachDictPref != ZSTD_dictForceLoad) ? - ZSTD_getCParamsFromCDict(cdict) - : ZSTD_getCParams(cdict->compressionLevel, - pledgedSrcSize, - cdict->dictContentSize); - /* Increase window log to fit the entire dictionary and source if the - * source size is known. Limit the increase to 19, which is the - * window log for compression level 1 with the largest source size. - */ - if (pledgedSrcSize != ZSTD_CONTENTSIZE_UNKNOWN) { - U32 const limitedSrcSize = (U32)MIN(pledgedSrcSize, 1U << 19); - U32 const limitedSrcLog = limitedSrcSize > 1 ? ZSTD_highbit32(limitedSrcSize - 1) + 1 : 1; - params.cParams.windowLog = MAX(params.cParams.windowLog, limitedSrcLog); - } - params.fParams = fParams; - return ZSTD_compressBegin_internal(cctx, - NULL, 0, ZSTD_dct_auto, ZSTD_dtlm_fast, - cdict, - ¶ms, pledgedSrcSize, - ZSTDb_not_buffered); - } -} - -/* ZSTD_compressBegin_usingCDict() : - * pledgedSrcSize=0 means "unknown" - * if pledgedSrcSize>0, it will enable contentSizeFlag */ -size_t ZSTD_compressBegin_usingCDict(ZSTD_CCtx* cctx, const ZSTD_CDict* cdict) -{ - ZSTD_frameParameters const fParams = { 0 /*content*/, 0 /*checksum*/, 0 /*noDictID*/ }; - DEBUGLOG(4, "ZSTD_compressBegin_usingCDict : dictIDFlag == %u", !fParams.noDictIDFlag); - return ZSTD_compressBegin_usingCDict_advanced(cctx, cdict, fParams, ZSTD_CONTENTSIZE_UNKNOWN); -} - -size_t ZSTD_compress_usingCDict_advanced(ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const ZSTD_CDict* cdict, ZSTD_frameParameters fParams) -{ - FORWARD_IF_ERROR(ZSTD_compressBegin_usingCDict_advanced(cctx, cdict, fParams, srcSize), ""); /* will check if cdict != NULL */ - return ZSTD_compressEnd(cctx, dst, dstCapacity, src, srcSize); -} - -/*! ZSTD_compress_usingCDict() : - * Compression using a digested Dictionary. - * Faster startup than ZSTD_compress_usingDict(), recommended when same dictionary is used multiple times. - * Note that compression parameters are decided at CDict creation time - * while frame parameters are hardcoded */ -size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const ZSTD_CDict* cdict) -{ - ZSTD_frameParameters const fParams = { 1 /*content*/, 0 /*checksum*/, 0 /*noDictID*/ }; - return ZSTD_compress_usingCDict_advanced(cctx, dst, dstCapacity, src, srcSize, cdict, fParams); -} - - - -/* ****************************************************************** -* Streaming -********************************************************************/ - -ZSTD_CStream* ZSTD_createCStream(void) -{ - DEBUGLOG(3, "ZSTD_createCStream"); - return ZSTD_createCStream_advanced(ZSTD_defaultCMem); -} - -ZSTD_CStream* ZSTD_initStaticCStream(void *workspace, size_t workspaceSize) -{ - return ZSTD_initStaticCCtx(workspace, workspaceSize); -} - -ZSTD_CStream* ZSTD_createCStream_advanced(ZSTD_customMem customMem) -{ /* CStream and CCtx are now same object */ - return ZSTD_createCCtx_advanced(customMem); -} - -size_t ZSTD_freeCStream(ZSTD_CStream* zcs) -{ - return ZSTD_freeCCtx(zcs); /* same object */ -} - - - -/*====== Initialization ======*/ - -size_t ZSTD_CStreamInSize(void) { return ZSTD_BLOCKSIZE_MAX; } - -size_t ZSTD_CStreamOutSize(void) -{ - return ZSTD_compressBound(ZSTD_BLOCKSIZE_MAX) + ZSTD_blockHeaderSize + 4 /* 32-bits hash */ ; -} - -static size_t ZSTD_resetCStream_internal(ZSTD_CStream* cctx, - const void* const dict, size_t const dictSize, ZSTD_dictContentType_e const dictContentType, - const ZSTD_CDict* const cdict, - ZSTD_CCtx_params params, unsigned long long const pledgedSrcSize) -{ - DEBUGLOG(4, "ZSTD_resetCStream_internal"); - /* Finalize the compression parameters */ - params.cParams = ZSTD_getCParamsFromCCtxParams(¶ms, pledgedSrcSize, dictSize); - /* params are supposed to be fully validated at this point */ - assert(!ZSTD_isError(ZSTD_checkCParams(params.cParams))); - assert(!((dict) && (cdict))); /* either dict or cdict, not both */ - - FORWARD_IF_ERROR( ZSTD_compressBegin_internal(cctx, - dict, dictSize, dictContentType, ZSTD_dtlm_fast, - cdict, - ¶ms, pledgedSrcSize, - ZSTDb_buffered) , ""); - - cctx->inToCompress = 0; - cctx->inBuffPos = 0; - cctx->inBuffTarget = cctx->blockSize - + (cctx->blockSize == pledgedSrcSize); /* for small input: avoid automatic flush on reaching end of block, since it would require to add a 3-bytes null block to end frame */ - cctx->outBuffContentSize = cctx->outBuffFlushedSize = 0; - cctx->streamStage = zcss_load; - cctx->frameEnded = 0; - return 0; /* ready to go */ -} - -/* ZSTD_resetCStream(): - * pledgedSrcSize == 0 means "unknown" */ -size_t ZSTD_resetCStream(ZSTD_CStream* zcs, unsigned long long pss) -{ - /* temporary : 0 interpreted as "unknown" during transition period. - * Users willing to specify "unknown" **must** use ZSTD_CONTENTSIZE_UNKNOWN. - * 0 will be interpreted as "empty" in the future. - */ - U64 const pledgedSrcSize = (pss==0) ? ZSTD_CONTENTSIZE_UNKNOWN : pss; - DEBUGLOG(4, "ZSTD_resetCStream: pledgedSrcSize = %u", (unsigned)pledgedSrcSize); - FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize) , ""); - return 0; -} - -/*! ZSTD_initCStream_internal() : - * Note : for lib/compress only. Used by zstdmt_compress.c. - * Assumption 1 : params are valid - * Assumption 2 : either dict, or cdict, is defined, not both */ -size_t ZSTD_initCStream_internal(ZSTD_CStream* zcs, - const void* dict, size_t dictSize, const ZSTD_CDict* cdict, - const ZSTD_CCtx_params* params, - unsigned long long pledgedSrcSize) -{ - DEBUGLOG(4, "ZSTD_initCStream_internal"); - FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize) , ""); - assert(!ZSTD_isError(ZSTD_checkCParams(params->cParams))); - zcs->requestedParams = *params; - assert(!((dict) && (cdict))); /* either dict or cdict, not both */ - if (dict) { - FORWARD_IF_ERROR( ZSTD_CCtx_loadDictionary(zcs, dict, dictSize) , ""); - } else { - /* Dictionary is cleared if !cdict */ - FORWARD_IF_ERROR( ZSTD_CCtx_refCDict(zcs, cdict) , ""); - } - return 0; -} - -/* ZSTD_initCStream_usingCDict_advanced() : - * same as ZSTD_initCStream_usingCDict(), with control over frame parameters */ -size_t ZSTD_initCStream_usingCDict_advanced(ZSTD_CStream* zcs, - const ZSTD_CDict* cdict, - ZSTD_frameParameters fParams, - unsigned long long pledgedSrcSize) -{ - DEBUGLOG(4, "ZSTD_initCStream_usingCDict_advanced"); - FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize) , ""); - zcs->requestedParams.fParams = fParams; - FORWARD_IF_ERROR( ZSTD_CCtx_refCDict(zcs, cdict) , ""); - return 0; -} - -/* note : cdict must outlive compression session */ -size_t ZSTD_initCStream_usingCDict(ZSTD_CStream* zcs, const ZSTD_CDict* cdict) -{ - DEBUGLOG(4, "ZSTD_initCStream_usingCDict"); - FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_refCDict(zcs, cdict) , ""); - return 0; -} - - -/* ZSTD_initCStream_advanced() : - * pledgedSrcSize must be exact. - * if srcSize is not known at init time, use value ZSTD_CONTENTSIZE_UNKNOWN. - * dict is loaded with default parameters ZSTD_dct_auto and ZSTD_dlm_byCopy. */ -size_t ZSTD_initCStream_advanced(ZSTD_CStream* zcs, - const void* dict, size_t dictSize, - ZSTD_parameters params, unsigned long long pss) -{ - /* for compatibility with older programs relying on this behavior. - * Users should now specify ZSTD_CONTENTSIZE_UNKNOWN. - * This line will be removed in the future. - */ - U64 const pledgedSrcSize = (pss==0 && params.fParams.contentSizeFlag==0) ? ZSTD_CONTENTSIZE_UNKNOWN : pss; - DEBUGLOG(4, "ZSTD_initCStream_advanced"); - FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize) , ""); - FORWARD_IF_ERROR( ZSTD_checkCParams(params.cParams) , ""); - zcs->requestedParams = ZSTD_assignParamsToCCtxParams(&zcs->requestedParams, ¶ms); - FORWARD_IF_ERROR( ZSTD_CCtx_loadDictionary(zcs, dict, dictSize) , ""); - return 0; -} - -size_t ZSTD_initCStream_usingDict(ZSTD_CStream* zcs, const void* dict, size_t dictSize, int compressionLevel) -{ - DEBUGLOG(4, "ZSTD_initCStream_usingDict"); - FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_setParameter(zcs, ZSTD_c_compressionLevel, compressionLevel) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_loadDictionary(zcs, dict, dictSize) , ""); - return 0; -} - -size_t ZSTD_initCStream_srcSize(ZSTD_CStream* zcs, int compressionLevel, unsigned long long pss) -{ - /* temporary : 0 interpreted as "unknown" during transition period. - * Users willing to specify "unknown" **must** use ZSTD_CONTENTSIZE_UNKNOWN. - * 0 will be interpreted as "empty" in the future. - */ - U64 const pledgedSrcSize = (pss==0) ? ZSTD_CONTENTSIZE_UNKNOWN : pss; - DEBUGLOG(4, "ZSTD_initCStream_srcSize"); - FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_refCDict(zcs, NULL) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_setParameter(zcs, ZSTD_c_compressionLevel, compressionLevel) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_setPledgedSrcSize(zcs, pledgedSrcSize) , ""); - return 0; -} - -size_t ZSTD_initCStream(ZSTD_CStream* zcs, int compressionLevel) -{ - DEBUGLOG(4, "ZSTD_initCStream"); - FORWARD_IF_ERROR( ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_refCDict(zcs, NULL) , ""); - FORWARD_IF_ERROR( ZSTD_CCtx_setParameter(zcs, ZSTD_c_compressionLevel, compressionLevel) , ""); - return 0; -} - -/*====== Compression ======*/ - -static size_t ZSTD_nextInputSizeHint(const ZSTD_CCtx* cctx) -{ - size_t hintInSize = cctx->inBuffTarget - cctx->inBuffPos; - if (hintInSize==0) hintInSize = cctx->blockSize; - return hintInSize; -} - -/** ZSTD_compressStream_generic(): - * internal function for all *compressStream*() variants - * non-static, because can be called from zstdmt_compress.c - * @return : hint size for next input */ -static size_t ZSTD_compressStream_generic(ZSTD_CStream* zcs, - ZSTD_outBuffer* output, - ZSTD_inBuffer* input, - ZSTD_EndDirective const flushMode) -{ - const char* const istart = (const char*)input->src; - const char* const iend = input->size != 0 ? istart + input->size : istart; - const char* ip = input->pos != 0 ? istart + input->pos : istart; - char* const ostart = (char*)output->dst; - char* const oend = output->size != 0 ? ostart + output->size : ostart; - char* op = output->pos != 0 ? ostart + output->pos : ostart; - U32 someMoreWork = 1; - - /* check expectations */ - DEBUGLOG(5, "ZSTD_compressStream_generic, flush=%u", (unsigned)flushMode); - assert(zcs->inBuff != NULL); - assert(zcs->inBuffSize > 0); - assert(zcs->outBuff != NULL); - assert(zcs->outBuffSize > 0); - assert(output->pos <= output->size); - assert(input->pos <= input->size); - - while (someMoreWork) { - switch(zcs->streamStage) - { - case zcss_init: - RETURN_ERROR(init_missing, "call ZSTD_initCStream() first!"); - - case zcss_load: - if ( (flushMode == ZSTD_e_end) - && ((size_t)(oend-op) >= ZSTD_compressBound(iend-ip)) /* enough dstCapacity */ - && (zcs->inBuffPos == 0) ) { - /* shortcut to compression pass directly into output buffer */ - size_t const cSize = ZSTD_compressEnd(zcs, - op, oend-op, ip, iend-ip); - DEBUGLOG(4, "ZSTD_compressEnd : cSize=%u", (unsigned)cSize); - FORWARD_IF_ERROR(cSize, "ZSTD_compressEnd failed"); - ip = iend; - op += cSize; - zcs->frameEnded = 1; - ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); - someMoreWork = 0; break; - } - /* complete loading into inBuffer */ - { size_t const toLoad = zcs->inBuffTarget - zcs->inBuffPos; - size_t const loaded = ZSTD_limitCopy( - zcs->inBuff + zcs->inBuffPos, toLoad, - ip, iend-ip); - zcs->inBuffPos += loaded; - if (loaded != 0) - ip += loaded; - if ( (flushMode == ZSTD_e_continue) - && (zcs->inBuffPos < zcs->inBuffTarget) ) { - /* not enough input to fill full block : stop here */ - someMoreWork = 0; break; - } - if ( (flushMode == ZSTD_e_flush) - && (zcs->inBuffPos == zcs->inToCompress) ) { - /* empty */ - someMoreWork = 0; break; - } - } - /* compress current block (note : this stage cannot be stopped in the middle) */ - DEBUGLOG(5, "stream compression stage (flushMode==%u)", flushMode); - { void* cDst; - size_t cSize; - size_t const iSize = zcs->inBuffPos - zcs->inToCompress; - size_t oSize = oend-op; - unsigned const lastBlock = (flushMode == ZSTD_e_end) && (ip==iend); - if (oSize >= ZSTD_compressBound(iSize)) - cDst = op; /* compress into output buffer, to skip flush stage */ - else - cDst = zcs->outBuff, oSize = zcs->outBuffSize; - cSize = lastBlock ? - ZSTD_compressEnd(zcs, cDst, oSize, - zcs->inBuff + zcs->inToCompress, iSize) : - ZSTD_compressContinue(zcs, cDst, oSize, - zcs->inBuff + zcs->inToCompress, iSize); - FORWARD_IF_ERROR(cSize, "%s", lastBlock ? "ZSTD_compressEnd failed" : "ZSTD_compressContinue failed"); - zcs->frameEnded = lastBlock; - /* prepare next block */ - zcs->inBuffTarget = zcs->inBuffPos + zcs->blockSize; - if (zcs->inBuffTarget > zcs->inBuffSize) - zcs->inBuffPos = 0, zcs->inBuffTarget = zcs->blockSize; - DEBUGLOG(5, "inBuffTarget:%u / inBuffSize:%u", - (unsigned)zcs->inBuffTarget, (unsigned)zcs->inBuffSize); - if (!lastBlock) - assert(zcs->inBuffTarget <= zcs->inBuffSize); - zcs->inToCompress = zcs->inBuffPos; - if (cDst == op) { /* no need to flush */ - op += cSize; - if (zcs->frameEnded) { - DEBUGLOG(5, "Frame completed directly in outBuffer"); - someMoreWork = 0; - ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); - } - break; - } - zcs->outBuffContentSize = cSize; - zcs->outBuffFlushedSize = 0; - zcs->streamStage = zcss_flush; /* pass-through to flush stage */ - } - /* fall-through */ - case zcss_flush: - DEBUGLOG(5, "flush stage"); - { size_t const toFlush = zcs->outBuffContentSize - zcs->outBuffFlushedSize; - size_t const flushed = ZSTD_limitCopy(op, (size_t)(oend-op), - zcs->outBuff + zcs->outBuffFlushedSize, toFlush); - DEBUGLOG(5, "toFlush: %u into %u ==> flushed: %u", - (unsigned)toFlush, (unsigned)(oend-op), (unsigned)flushed); - if (flushed) - op += flushed; - zcs->outBuffFlushedSize += flushed; - if (toFlush!=flushed) { - /* flush not fully completed, presumably because dst is too small */ - assert(op==oend); - someMoreWork = 0; - break; - } - zcs->outBuffContentSize = zcs->outBuffFlushedSize = 0; - if (zcs->frameEnded) { - DEBUGLOG(5, "Frame completed on flush"); - someMoreWork = 0; - ZSTD_CCtx_reset(zcs, ZSTD_reset_session_only); - break; - } - zcs->streamStage = zcss_load; - break; - } - - default: /* impossible */ - assert(0); - } - } - - input->pos = ip - istart; - output->pos = op - ostart; - if (zcs->frameEnded) return 0; - return ZSTD_nextInputSizeHint(zcs); -} - -static size_t ZSTD_nextInputSizeHint_MTorST(const ZSTD_CCtx* cctx) -{ -#ifdef ZSTD_MULTITHREAD - if (cctx->appliedParams.nbWorkers >= 1) { - assert(cctx->mtctx != NULL); - return ZSTDMT_nextInputSizeHint(cctx->mtctx); - } -#endif - return ZSTD_nextInputSizeHint(cctx); - -} - -size_t ZSTD_compressStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output, ZSTD_inBuffer* input) -{ - FORWARD_IF_ERROR( ZSTD_compressStream2(zcs, output, input, ZSTD_e_continue) , ""); - return ZSTD_nextInputSizeHint_MTorST(zcs); -} - - -size_t ZSTD_compressStream2( ZSTD_CCtx* cctx, - ZSTD_outBuffer* output, - ZSTD_inBuffer* input, - ZSTD_EndDirective endOp) -{ - DEBUGLOG(5, "ZSTD_compressStream2, endOp=%u ", (unsigned)endOp); - /* check conditions */ - RETURN_ERROR_IF(output->pos > output->size, GENERIC, "invalid buffer"); - RETURN_ERROR_IF(input->pos > input->size, GENERIC, "invalid buffer"); - assert(cctx!=NULL); - - /* transparent initialization stage */ - if (cctx->streamStage == zcss_init) { - ZSTD_CCtx_params params = cctx->requestedParams; - ZSTD_prefixDict const prefixDict = cctx->prefixDict; - FORWARD_IF_ERROR( ZSTD_initLocalDict(cctx) , ""); /* Init the local dict if present. */ - memset(&cctx->prefixDict, 0, sizeof(cctx->prefixDict)); /* single usage */ - assert(prefixDict.dict==NULL || cctx->cdict==NULL); /* only one can be set */ - DEBUGLOG(4, "ZSTD_compressStream2 : transparent init stage"); - if (endOp == ZSTD_e_end) cctx->pledgedSrcSizePlusOne = input->size + 1; /* auto-fix pledgedSrcSize */ - params.cParams = ZSTD_getCParamsFromCCtxParams( - &cctx->requestedParams, cctx->pledgedSrcSizePlusOne-1, 0 /*dictSize*/); - - -#ifdef ZSTD_MULTITHREAD - if ((cctx->pledgedSrcSizePlusOne-1) <= ZSTDMT_JOBSIZE_MIN) { - params.nbWorkers = 0; /* do not invoke multi-threading when src size is too small */ - } - if (params.nbWorkers > 0) { - /* mt context creation */ - if (cctx->mtctx == NULL) { - DEBUGLOG(4, "ZSTD_compressStream2: creating new mtctx for nbWorkers=%u", - params.nbWorkers); - cctx->mtctx = ZSTDMT_createCCtx_advanced((U32)params.nbWorkers, cctx->customMem); - RETURN_ERROR_IF(cctx->mtctx == NULL, memory_allocation, "NULL pointer!"); - } - /* mt compression */ - DEBUGLOG(4, "call ZSTDMT_initCStream_internal as nbWorkers=%u", params.nbWorkers); - FORWARD_IF_ERROR( ZSTDMT_initCStream_internal( - cctx->mtctx, - prefixDict.dict, prefixDict.dictSize, prefixDict.dictContentType, - cctx->cdict, params, cctx->pledgedSrcSizePlusOne-1) , ""); - cctx->streamStage = zcss_load; - cctx->appliedParams.nbWorkers = params.nbWorkers; - } else -#endif - { FORWARD_IF_ERROR( ZSTD_resetCStream_internal(cctx, - prefixDict.dict, prefixDict.dictSize, prefixDict.dictContentType, - cctx->cdict, - params, cctx->pledgedSrcSizePlusOne-1) , ""); - assert(cctx->streamStage == zcss_load); - assert(cctx->appliedParams.nbWorkers == 0); - } } - /* end of transparent initialization stage */ - - /* compression stage */ -#ifdef ZSTD_MULTITHREAD - if (cctx->appliedParams.nbWorkers > 0) { - int const forceMaxProgress = (endOp == ZSTD_e_flush || endOp == ZSTD_e_end); - size_t flushMin; - assert(forceMaxProgress || endOp == ZSTD_e_continue /* Protection for a new flush type */); - if (cctx->cParamsChanged) { - ZSTDMT_updateCParams_whileCompressing(cctx->mtctx, &cctx->requestedParams); - cctx->cParamsChanged = 0; - } - do { - flushMin = ZSTDMT_compressStream_generic(cctx->mtctx, output, input, endOp); - if ( ZSTD_isError(flushMin) - || (endOp == ZSTD_e_end && flushMin == 0) ) { /* compression completed */ - ZSTD_CCtx_reset(cctx, ZSTD_reset_session_only); - } - FORWARD_IF_ERROR(flushMin, "ZSTDMT_compressStream_generic failed"); - } while (forceMaxProgress && flushMin != 0 && output->pos < output->size); - DEBUGLOG(5, "completed ZSTD_compressStream2 delegating to ZSTDMT_compressStream_generic"); - /* Either we don't require maximum forward progress, we've finished the - * flush, or we are out of output space. - */ - assert(!forceMaxProgress || flushMin == 0 || output->pos == output->size); - return flushMin; - } -#endif - FORWARD_IF_ERROR( ZSTD_compressStream_generic(cctx, output, input, endOp) , ""); - DEBUGLOG(5, "completed ZSTD_compressStream2"); - return cctx->outBuffContentSize - cctx->outBuffFlushedSize; /* remaining to flush */ -} - -size_t ZSTD_compressStream2_simpleArgs ( - ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, size_t* dstPos, - const void* src, size_t srcSize, size_t* srcPos, - ZSTD_EndDirective endOp) -{ - ZSTD_outBuffer output = { dst, dstCapacity, *dstPos }; - ZSTD_inBuffer input = { src, srcSize, *srcPos }; - /* ZSTD_compressStream2() will check validity of dstPos and srcPos */ - size_t const cErr = ZSTD_compressStream2(cctx, &output, &input, endOp); - *dstPos = output.pos; - *srcPos = input.pos; - return cErr; -} - -size_t ZSTD_compress2(ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize) -{ - DEBUGLOG(4, "ZSTD_compress2 (srcSize=%u)", (unsigned)srcSize); - ZSTD_CCtx_reset(cctx, ZSTD_reset_session_only); - { size_t oPos = 0; - size_t iPos = 0; - size_t const result = ZSTD_compressStream2_simpleArgs(cctx, - dst, dstCapacity, &oPos, - src, srcSize, &iPos, - ZSTD_e_end); - FORWARD_IF_ERROR(result, "ZSTD_compressStream2_simpleArgs failed"); - if (result != 0) { /* compression not completed, due to lack of output space */ - assert(oPos == dstCapacity); - RETURN_ERROR(dstSize_tooSmall, ""); - } - assert(iPos == srcSize); /* all input is expected consumed */ - return oPos; - } -} - -/*====== Finalize ======*/ - -/*! ZSTD_flushStream() : - * @return : amount of data remaining to flush */ -size_t ZSTD_flushStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output) -{ - ZSTD_inBuffer input = { NULL, 0, 0 }; - return ZSTD_compressStream2(zcs, output, &input, ZSTD_e_flush); -} - - -size_t ZSTD_endStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output) -{ - ZSTD_inBuffer input = { NULL, 0, 0 }; - size_t const remainingToFlush = ZSTD_compressStream2(zcs, output, &input, ZSTD_e_end); - FORWARD_IF_ERROR( remainingToFlush , "ZSTD_compressStream2 failed"); - if (zcs->appliedParams.nbWorkers > 0) return remainingToFlush; /* minimal estimation */ - /* single thread mode : attempt to calculate remaining to flush more precisely */ - { size_t const lastBlockSize = zcs->frameEnded ? 0 : ZSTD_BLOCKHEADERSIZE; - size_t const checksumSize = (size_t)(zcs->frameEnded ? 0 : zcs->appliedParams.fParams.checksumFlag * 4); - size_t const toFlush = remainingToFlush + lastBlockSize + checksumSize; - DEBUGLOG(4, "ZSTD_endStream : remaining to flush : %u", (unsigned)toFlush); - return toFlush; - } -} - - -/*-===== Pre-defined compression levels =====-*/ - -#define ZSTD_MAX_CLEVEL 22 -int ZSTD_maxCLevel(void) { return ZSTD_MAX_CLEVEL; } -int ZSTD_minCLevel(void) { return (int)-ZSTD_TARGETLENGTH_MAX; } - -static const ZSTD_compressionParameters ZSTD_defaultCParameters[4][ZSTD_MAX_CLEVEL+1] = { -{ /* "default" - for any srcSize > 256 KB */ - /* W, C, H, S, L, TL, strat */ - { 19, 12, 13, 1, 6, 1, ZSTD_fast }, /* base for negative levels */ - { 19, 13, 14, 1, 7, 0, ZSTD_fast }, /* level 1 */ - { 20, 15, 16, 1, 6, 0, ZSTD_fast }, /* level 2 */ - { 21, 16, 17, 1, 5, 0, ZSTD_dfast }, /* level 3 */ - { 21, 18, 18, 1, 5, 0, ZSTD_dfast }, /* level 4 */ - { 21, 18, 19, 2, 5, 2, ZSTD_greedy }, /* level 5 */ - { 21, 19, 19, 3, 5, 4, ZSTD_greedy }, /* level 6 */ - { 21, 19, 19, 3, 5, 8, ZSTD_lazy }, /* level 7 */ - { 21, 19, 19, 3, 5, 16, ZSTD_lazy2 }, /* level 8 */ - { 21, 19, 20, 4, 5, 16, ZSTD_lazy2 }, /* level 9 */ - { 22, 20, 21, 4, 5, 16, ZSTD_lazy2 }, /* level 10 */ - { 22, 21, 22, 4, 5, 16, ZSTD_lazy2 }, /* level 11 */ - { 22, 21, 22, 5, 5, 16, ZSTD_lazy2 }, /* level 12 */ - { 22, 21, 22, 5, 5, 32, ZSTD_btlazy2 }, /* level 13 */ - { 22, 22, 23, 5, 5, 32, ZSTD_btlazy2 }, /* level 14 */ - { 22, 23, 23, 6, 5, 32, ZSTD_btlazy2 }, /* level 15 */ - { 22, 22, 22, 5, 5, 48, ZSTD_btopt }, /* level 16 */ - { 23, 23, 22, 5, 4, 64, ZSTD_btopt }, /* level 17 */ - { 23, 23, 22, 6, 3, 64, ZSTD_btultra }, /* level 18 */ - { 23, 24, 22, 7, 3,256, ZSTD_btultra2}, /* level 19 */ - { 25, 25, 23, 7, 3,256, ZSTD_btultra2}, /* level 20 */ - { 26, 26, 24, 7, 3,512, ZSTD_btultra2}, /* level 21 */ - { 27, 27, 25, 9, 3,999, ZSTD_btultra2}, /* level 22 */ -}, -{ /* for srcSize <= 256 KB */ - /* W, C, H, S, L, T, strat */ - { 18, 12, 13, 1, 5, 1, ZSTD_fast }, /* base for negative levels */ - { 18, 13, 14, 1, 6, 0, ZSTD_fast }, /* level 1 */ - { 18, 14, 14, 1, 5, 0, ZSTD_dfast }, /* level 2 */ - { 18, 16, 16, 1, 4, 0, ZSTD_dfast }, /* level 3 */ - { 18, 16, 17, 2, 5, 2, ZSTD_greedy }, /* level 4.*/ - { 18, 18, 18, 3, 5, 2, ZSTD_greedy }, /* level 5.*/ - { 18, 18, 19, 3, 5, 4, ZSTD_lazy }, /* level 6.*/ - { 18, 18, 19, 4, 4, 4, ZSTD_lazy }, /* level 7 */ - { 18, 18, 19, 4, 4, 8, ZSTD_lazy2 }, /* level 8 */ - { 18, 18, 19, 5, 4, 8, ZSTD_lazy2 }, /* level 9 */ - { 18, 18, 19, 6, 4, 8, ZSTD_lazy2 }, /* level 10 */ - { 18, 18, 19, 5, 4, 12, ZSTD_btlazy2 }, /* level 11.*/ - { 18, 19, 19, 7, 4, 12, ZSTD_btlazy2 }, /* level 12.*/ - { 18, 18, 19, 4, 4, 16, ZSTD_btopt }, /* level 13 */ - { 18, 18, 19, 4, 3, 32, ZSTD_btopt }, /* level 14.*/ - { 18, 18, 19, 6, 3,128, ZSTD_btopt }, /* level 15.*/ - { 18, 19, 19, 6, 3,128, ZSTD_btultra }, /* level 16.*/ - { 18, 19, 19, 8, 3,256, ZSTD_btultra }, /* level 17.*/ - { 18, 19, 19, 6, 3,128, ZSTD_btultra2}, /* level 18.*/ - { 18, 19, 19, 8, 3,256, ZSTD_btultra2}, /* level 19.*/ - { 18, 19, 19, 10, 3,512, ZSTD_btultra2}, /* level 20.*/ - { 18, 19, 19, 12, 3,512, ZSTD_btultra2}, /* level 21.*/ - { 18, 19, 19, 13, 3,999, ZSTD_btultra2}, /* level 22.*/ -}, -{ /* for srcSize <= 128 KB */ - /* W, C, H, S, L, T, strat */ - { 17, 12, 12, 1, 5, 1, ZSTD_fast }, /* base for negative levels */ - { 17, 12, 13, 1, 6, 0, ZSTD_fast }, /* level 1 */ - { 17, 13, 15, 1, 5, 0, ZSTD_fast }, /* level 2 */ - { 17, 15, 16, 2, 5, 0, ZSTD_dfast }, /* level 3 */ - { 17, 17, 17, 2, 4, 0, ZSTD_dfast }, /* level 4 */ - { 17, 16, 17, 3, 4, 2, ZSTD_greedy }, /* level 5 */ - { 17, 17, 17, 3, 4, 4, ZSTD_lazy }, /* level 6 */ - { 17, 17, 17, 3, 4, 8, ZSTD_lazy2 }, /* level 7 */ - { 17, 17, 17, 4, 4, 8, ZSTD_lazy2 }, /* level 8 */ - { 17, 17, 17, 5, 4, 8, ZSTD_lazy2 }, /* level 9 */ - { 17, 17, 17, 6, 4, 8, ZSTD_lazy2 }, /* level 10 */ - { 17, 17, 17, 5, 4, 8, ZSTD_btlazy2 }, /* level 11 */ - { 17, 18, 17, 7, 4, 12, ZSTD_btlazy2 }, /* level 12 */ - { 17, 18, 17, 3, 4, 12, ZSTD_btopt }, /* level 13.*/ - { 17, 18, 17, 4, 3, 32, ZSTD_btopt }, /* level 14.*/ - { 17, 18, 17, 6, 3,256, ZSTD_btopt }, /* level 15.*/ - { 17, 18, 17, 6, 3,128, ZSTD_btultra }, /* level 16.*/ - { 17, 18, 17, 8, 3,256, ZSTD_btultra }, /* level 17.*/ - { 17, 18, 17, 10, 3,512, ZSTD_btultra }, /* level 18.*/ - { 17, 18, 17, 5, 3,256, ZSTD_btultra2}, /* level 19.*/ - { 17, 18, 17, 7, 3,512, ZSTD_btultra2}, /* level 20.*/ - { 17, 18, 17, 9, 3,512, ZSTD_btultra2}, /* level 21.*/ - { 17, 18, 17, 11, 3,999, ZSTD_btultra2}, /* level 22.*/ -}, -{ /* for srcSize <= 16 KB */ - /* W, C, H, S, L, T, strat */ - { 14, 12, 13, 1, 5, 1, ZSTD_fast }, /* base for negative levels */ - { 14, 14, 15, 1, 5, 0, ZSTD_fast }, /* level 1 */ - { 14, 14, 15, 1, 4, 0, ZSTD_fast }, /* level 2 */ - { 14, 14, 15, 2, 4, 0, ZSTD_dfast }, /* level 3 */ - { 14, 14, 14, 4, 4, 2, ZSTD_greedy }, /* level 4 */ - { 14, 14, 14, 3, 4, 4, ZSTD_lazy }, /* level 5.*/ - { 14, 14, 14, 4, 4, 8, ZSTD_lazy2 }, /* level 6 */ - { 14, 14, 14, 6, 4, 8, ZSTD_lazy2 }, /* level 7 */ - { 14, 14, 14, 8, 4, 8, ZSTD_lazy2 }, /* level 8.*/ - { 14, 15, 14, 5, 4, 8, ZSTD_btlazy2 }, /* level 9.*/ - { 14, 15, 14, 9, 4, 8, ZSTD_btlazy2 }, /* level 10.*/ - { 14, 15, 14, 3, 4, 12, ZSTD_btopt }, /* level 11.*/ - { 14, 15, 14, 4, 3, 24, ZSTD_btopt }, /* level 12.*/ - { 14, 15, 14, 5, 3, 32, ZSTD_btultra }, /* level 13.*/ - { 14, 15, 15, 6, 3, 64, ZSTD_btultra }, /* level 14.*/ - { 14, 15, 15, 7, 3,256, ZSTD_btultra }, /* level 15.*/ - { 14, 15, 15, 5, 3, 48, ZSTD_btultra2}, /* level 16.*/ - { 14, 15, 15, 6, 3,128, ZSTD_btultra2}, /* level 17.*/ - { 14, 15, 15, 7, 3,256, ZSTD_btultra2}, /* level 18.*/ - { 14, 15, 15, 8, 3,256, ZSTD_btultra2}, /* level 19.*/ - { 14, 15, 15, 8, 3,512, ZSTD_btultra2}, /* level 20.*/ - { 14, 15, 15, 9, 3,512, ZSTD_btultra2}, /* level 21.*/ - { 14, 15, 15, 10, 3,999, ZSTD_btultra2}, /* level 22.*/ -}, -}; - -/*! ZSTD_getCParams_internal() : - * @return ZSTD_compressionParameters structure for a selected compression level, srcSize and dictSize. - * Note: srcSizeHint 0 means 0, use ZSTD_CONTENTSIZE_UNKNOWN for unknown. - * Use dictSize == 0 for unknown or unused. */ -static ZSTD_compressionParameters ZSTD_getCParams_internal(int compressionLevel, unsigned long long srcSizeHint, size_t dictSize) -{ - int const unknown = srcSizeHint == ZSTD_CONTENTSIZE_UNKNOWN; - size_t const addedSize = unknown && dictSize > 0 ? 500 : 0; - U64 const rSize = unknown && dictSize == 0 ? ZSTD_CONTENTSIZE_UNKNOWN : srcSizeHint+dictSize+addedSize; - U32 const tableID = (rSize <= 256 KB) + (rSize <= 128 KB) + (rSize <= 16 KB); - int row = compressionLevel; - DEBUGLOG(5, "ZSTD_getCParams_internal (cLevel=%i)", compressionLevel); - if (compressionLevel == 0) row = ZSTD_CLEVEL_DEFAULT; /* 0 == default */ - if (compressionLevel < 0) row = 0; /* entry 0 is baseline for fast mode */ - if (compressionLevel > ZSTD_MAX_CLEVEL) row = ZSTD_MAX_CLEVEL; - { ZSTD_compressionParameters cp = ZSTD_defaultCParameters[tableID][row]; - if (compressionLevel < 0) cp.targetLength = (unsigned)(-compressionLevel); /* acceleration factor */ - /* refine parameters based on srcSize & dictSize */ - return ZSTD_adjustCParams_internal(cp, srcSizeHint, dictSize); - } -} - -/*! ZSTD_getCParams() : - * @return ZSTD_compressionParameters structure for a selected compression level, srcSize and dictSize. - * Size values are optional, provide 0 if not known or unused */ -ZSTD_compressionParameters ZSTD_getCParams(int compressionLevel, unsigned long long srcSizeHint, size_t dictSize) -{ - if (srcSizeHint == 0) srcSizeHint = ZSTD_CONTENTSIZE_UNKNOWN; - return ZSTD_getCParams_internal(compressionLevel, srcSizeHint, dictSize); -} - -/*! ZSTD_getParams() : - * same idea as ZSTD_getCParams() - * @return a `ZSTD_parameters` structure (instead of `ZSTD_compressionParameters`). - * Fields of `ZSTD_frameParameters` are set to default values */ -static ZSTD_parameters ZSTD_getParams_internal(int compressionLevel, unsigned long long srcSizeHint, size_t dictSize) { - ZSTD_parameters params; - ZSTD_compressionParameters const cParams = ZSTD_getCParams_internal(compressionLevel, srcSizeHint, dictSize); - DEBUGLOG(5, "ZSTD_getParams (cLevel=%i)", compressionLevel); - memset(¶ms, 0, sizeof(params)); - params.cParams = cParams; - params.fParams.contentSizeFlag = 1; - return params; -} - -/*! ZSTD_getParams() : - * same idea as ZSTD_getCParams() - * @return a `ZSTD_parameters` structure (instead of `ZSTD_compressionParameters`). - * Fields of `ZSTD_frameParameters` are set to default values */ -ZSTD_parameters ZSTD_getParams(int compressionLevel, unsigned long long srcSizeHint, size_t dictSize) { - if (srcSizeHint == 0) srcSizeHint = ZSTD_CONTENTSIZE_UNKNOWN; - return ZSTD_getParams_internal(compressionLevel, srcSizeHint, dictSize); -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_compress_internal.h b/lib/SZ3/tools/zstd/compress/zstd_compress_internal.h deleted file mode 100644 index db73f6ce..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_compress_internal.h +++ /dev/null @@ -1,1125 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/* This header contains definitions - * that shall **only** be used by modules within lib/compress. - */ - -#ifndef ZSTD_COMPRESS_H -#define ZSTD_COMPRESS_H - -/*-************************************* -* Dependencies -***************************************/ -#include "../common/zstd_internal.h" -#include "zstd_cwksp.h" -#ifdef ZSTD_MULTITHREAD -# include "zstdmt_compress.h" -#endif - -#if defined (__cplusplus) -extern "C" { -#endif - - -/*-************************************* -* Constants -***************************************/ -#define kSearchStrength 8 -#define HASH_READ_SIZE 8 -#define ZSTD_DUBT_UNSORTED_MARK 1 /* For btlazy2 strategy, index ZSTD_DUBT_UNSORTED_MARK==1 means "unsorted". - It could be confused for a real successor at index "1", if sorted as larger than its predecessor. - It's not a big deal though : candidate will just be sorted again. - Additionally, candidate position 1 will be lost. - But candidate 1 cannot hide a large tree of candidates, so it's a minimal loss. - The benefit is that ZSTD_DUBT_UNSORTED_MARK cannot be mishandled after table re-use with a different strategy. - This constant is required by ZSTD_compressBlock_btlazy2() and ZSTD_reduceTable_internal() */ - - -/*-************************************* -* Context memory management -***************************************/ -typedef enum { ZSTDcs_created=0, ZSTDcs_init, ZSTDcs_ongoing, ZSTDcs_ending } ZSTD_compressionStage_e; -typedef enum { zcss_init=0, zcss_load, zcss_flush } ZSTD_cStreamStage; - -typedef struct ZSTD_prefixDict_s { - const void* dict; - size_t dictSize; - ZSTD_dictContentType_e dictContentType; -} ZSTD_prefixDict; - -typedef struct { - void* dictBuffer; - void const* dict; - size_t dictSize; - ZSTD_dictContentType_e dictContentType; - ZSTD_CDict* cdict; -} ZSTD_localDict; - -typedef struct { - U32 CTable[HUF_CTABLE_SIZE_U32(255)]; - HUF_repeat repeatMode; -} ZSTD_hufCTables_t; - -typedef struct { - FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)]; - FSE_CTable matchlengthCTable[FSE_CTABLE_SIZE_U32(MLFSELog, MaxML)]; - FSE_CTable litlengthCTable[FSE_CTABLE_SIZE_U32(LLFSELog, MaxLL)]; - FSE_repeat offcode_repeatMode; - FSE_repeat matchlength_repeatMode; - FSE_repeat litlength_repeatMode; -} ZSTD_fseCTables_t; - -typedef struct { - ZSTD_hufCTables_t huf; - ZSTD_fseCTables_t fse; -} ZSTD_entropyCTables_t; - -typedef struct { - U32 off; - U32 len; -} ZSTD_match_t; - -typedef struct { - int price; - U32 off; - U32 mlen; - U32 litlen; - U32 rep[ZSTD_REP_NUM]; -} ZSTD_optimal_t; - -typedef enum { zop_dynamic=0, zop_predef } ZSTD_OptPrice_e; - -typedef struct { - /* All tables are allocated inside cctx->workspace by ZSTD_resetCCtx_internal() */ - unsigned* litFreq; /* table of literals statistics, of size 256 */ - unsigned* litLengthFreq; /* table of litLength statistics, of size (MaxLL+1) */ - unsigned* matchLengthFreq; /* table of matchLength statistics, of size (MaxML+1) */ - unsigned* offCodeFreq; /* table of offCode statistics, of size (MaxOff+1) */ - ZSTD_match_t* matchTable; /* list of found matches, of size ZSTD_OPT_NUM+1 */ - ZSTD_optimal_t* priceTable; /* All positions tracked by optimal parser, of size ZSTD_OPT_NUM+1 */ - - U32 litSum; /* nb of literals */ - U32 litLengthSum; /* nb of litLength codes */ - U32 matchLengthSum; /* nb of matchLength codes */ - U32 offCodeSum; /* nb of offset codes */ - U32 litSumBasePrice; /* to compare to log2(litfreq) */ - U32 litLengthSumBasePrice; /* to compare to log2(llfreq) */ - U32 matchLengthSumBasePrice;/* to compare to log2(mlfreq) */ - U32 offCodeSumBasePrice; /* to compare to log2(offreq) */ - ZSTD_OptPrice_e priceType; /* prices can be determined dynamically, or follow a pre-defined cost structure */ - const ZSTD_entropyCTables_t* symbolCosts; /* pre-calculated dictionary statistics */ - ZSTD_literalCompressionMode_e literalCompressionMode; -} optState_t; - -typedef struct { - ZSTD_entropyCTables_t entropy; - U32 rep[ZSTD_REP_NUM]; -} ZSTD_compressedBlockState_t; - -typedef struct { - BYTE const* nextSrc; /* next block here to continue on current prefix */ - BYTE const* base; /* All regular indexes relative to this position */ - BYTE const* dictBase; /* extDict indexes relative to this position */ - U32 dictLimit; /* below that point, need extDict */ - U32 lowLimit; /* below that point, no more valid data */ -} ZSTD_window_t; - -typedef struct ZSTD_matchState_t ZSTD_matchState_t; -struct ZSTD_matchState_t { - ZSTD_window_t window; /* State for window round buffer management */ - U32 loadedDictEnd; /* index of end of dictionary, within context's referential. - * When loadedDictEnd != 0, a dictionary is in use, and still valid. - * This relies on a mechanism to set loadedDictEnd=0 when dictionary is no longer within distance. - * Such mechanism is provided within ZSTD_window_enforceMaxDist() and ZSTD_checkDictValidity(). - * When dict referential is copied into active context (i.e. not attached), - * loadedDictEnd == dictSize, since referential starts from zero. - */ - U32 nextToUpdate; /* index from which to continue table update */ - U32 hashLog3; /* dispatch table for matches of len==3 : larger == faster, more memory */ - U32* hashTable; - U32* hashTable3; - U32* chainTable; - optState_t opt; /* optimal parser state */ - const ZSTD_matchState_t* dictMatchState; - ZSTD_compressionParameters cParams; -}; - -typedef struct { - ZSTD_compressedBlockState_t* prevCBlock; - ZSTD_compressedBlockState_t* nextCBlock; - ZSTD_matchState_t matchState; -} ZSTD_blockState_t; - -typedef struct { - U32 offset; - U32 checksum; -} ldmEntry_t; - -typedef struct { - ZSTD_window_t window; /* State for the window round buffer management */ - ldmEntry_t* hashTable; - U32 loadedDictEnd; - BYTE* bucketOffsets; /* Next position in bucket to insert entry */ - U64 hashPower; /* Used to compute the rolling hash. - * Depends on ldmParams.minMatchLength */ -} ldmState_t; - -typedef struct { - U32 enableLdm; /* 1 if enable long distance matching */ - U32 hashLog; /* Log size of hashTable */ - U32 bucketSizeLog; /* Log bucket size for collision resolution, at most 8 */ - U32 minMatchLength; /* Minimum match length */ - U32 hashRateLog; /* Log number of entries to skip */ - U32 windowLog; /* Window log for the LDM */ -} ldmParams_t; - -typedef struct { - U32 offset; - U32 litLength; - U32 matchLength; -} rawSeq; - -typedef struct { - rawSeq* seq; /* The start of the sequences */ - size_t pos; /* The position where reading stopped. <= size. */ - size_t size; /* The number of sequences. <= capacity. */ - size_t capacity; /* The capacity starting from `seq` pointer */ -} rawSeqStore_t; - -typedef struct { - int collectSequences; - ZSTD_Sequence* seqStart; - size_t seqIndex; - size_t maxSequences; -} SeqCollector; - -struct ZSTD_CCtx_params_s { - ZSTD_format_e format; - ZSTD_compressionParameters cParams; - ZSTD_frameParameters fParams; - - int compressionLevel; - int forceWindow; /* force back-references to respect limit of - * 1< 63) ? ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[litLength]; -} - -/* ZSTD_MLcode() : - * note : mlBase = matchLength - MINMATCH; - * because it's the format it's stored in seqStore->sequences */ -MEM_STATIC U32 ZSTD_MLcode(U32 mlBase) -{ - static const BYTE ML_Code[128] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 32, 33, 33, 34, 34, 35, 35, 36, 36, 36, 36, 37, 37, 37, 37, - 38, 38, 38, 38, 38, 38, 38, 38, 39, 39, 39, 39, 39, 39, 39, 39, - 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, - 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, - 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, - 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42 }; - static const U32 ML_deltaCode = 36; - return (mlBase > 127) ? ZSTD_highbit32(mlBase) + ML_deltaCode : ML_Code[mlBase]; -} - -typedef struct repcodes_s { - U32 rep[3]; -} repcodes_t; - -MEM_STATIC repcodes_t ZSTD_updateRep(U32 const rep[3], U32 const offset, U32 const ll0) -{ - repcodes_t newReps; - if (offset >= ZSTD_REP_NUM) { /* full offset */ - newReps.rep[2] = rep[1]; - newReps.rep[1] = rep[0]; - newReps.rep[0] = offset - ZSTD_REP_MOVE; - } else { /* repcode */ - U32 const repCode = offset + ll0; - if (repCode > 0) { /* note : if repCode==0, no change */ - U32 const currentOffset = (repCode==ZSTD_REP_NUM) ? (rep[0] - 1) : rep[repCode]; - newReps.rep[2] = (repCode >= 2) ? rep[1] : rep[2]; - newReps.rep[1] = rep[0]; - newReps.rep[0] = currentOffset; - } else { /* repCode == 0 */ - memcpy(&newReps, rep, sizeof(newReps)); - } - } - return newReps; -} - -/* ZSTD_cParam_withinBounds: - * @return 1 if value is within cParam bounds, - * 0 otherwise */ -MEM_STATIC int ZSTD_cParam_withinBounds(ZSTD_cParameter cParam, int value) -{ - ZSTD_bounds const bounds = ZSTD_cParam_getBounds(cParam); - if (ZSTD_isError(bounds.error)) return 0; - if (value < bounds.lowerBound) return 0; - if (value > bounds.upperBound) return 0; - return 1; -} - -/* ZSTD_noCompressBlock() : - * Writes uncompressed block to dst buffer from given src. - * Returns the size of the block */ -MEM_STATIC size_t ZSTD_noCompressBlock (void* dst, size_t dstCapacity, const void* src, size_t srcSize, U32 lastBlock) -{ - U32 const cBlockHeader24 = lastBlock + (((U32)bt_raw)<<1) + (U32)(srcSize << 3); - RETURN_ERROR_IF(srcSize + ZSTD_blockHeaderSize > dstCapacity, - dstSize_tooSmall, "dst buf too small for uncompressed block"); - MEM_writeLE24(dst, cBlockHeader24); - memcpy((BYTE*)dst + ZSTD_blockHeaderSize, src, srcSize); - return ZSTD_blockHeaderSize + srcSize; -} - -MEM_STATIC size_t ZSTD_rleCompressBlock (void* dst, size_t dstCapacity, BYTE src, size_t srcSize, U32 lastBlock) -{ - BYTE* const op = (BYTE*)dst; - U32 const cBlockHeader = lastBlock + (((U32)bt_rle)<<1) + (U32)(srcSize << 3); - RETURN_ERROR_IF(dstCapacity < 4, dstSize_tooSmall, ""); - MEM_writeLE24(op, cBlockHeader); - op[3] = src; - return 4; -} - - -/* ZSTD_minGain() : - * minimum compression required - * to generate a compress block or a compressed literals section. - * note : use same formula for both situations */ -MEM_STATIC size_t ZSTD_minGain(size_t srcSize, ZSTD_strategy strat) -{ - U32 const minlog = (strat>=ZSTD_btultra) ? (U32)(strat) - 1 : 6; - ZSTD_STATIC_ASSERT(ZSTD_btultra == 8); - assert(ZSTD_cParam_withinBounds(ZSTD_c_strategy, strat)); - return (srcSize >> minlog) + 2; -} - -MEM_STATIC int ZSTD_disableLiteralsCompression(const ZSTD_CCtx_params* cctxParams) -{ - switch (cctxParams->literalCompressionMode) { - case ZSTD_lcm_huffman: - return 0; - case ZSTD_lcm_uncompressed: - return 1; - default: - assert(0 /* impossible: pre-validated */); - /* fall-through */ - case ZSTD_lcm_auto: - return (cctxParams->cParams.strategy == ZSTD_fast) && (cctxParams->cParams.targetLength > 0); - } -} - -/*! ZSTD_safecopyLiterals() : - * memcpy() function that won't read beyond more than WILDCOPY_OVERLENGTH bytes past ilimit_w. - * Only called when the sequence ends past ilimit_w, so it only needs to be optimized for single - * large copies. - */ -static void ZSTD_safecopyLiterals(BYTE* op, BYTE const* ip, BYTE const* const iend, BYTE const* ilimit_w) { - assert(iend > ilimit_w); - if (ip <= ilimit_w) { - ZSTD_wildcopy(op, ip, ilimit_w - ip, ZSTD_no_overlap); - op += ilimit_w - ip; - ip = ilimit_w; - } - while (ip < iend) *op++ = *ip++; -} - -/*! ZSTD_storeSeq() : - * Store a sequence (litlen, litPtr, offCode and mlBase) into seqStore_t. - * `offCode` : distance to match + ZSTD_REP_MOVE (values <= ZSTD_REP_MOVE are repCodes). - * `mlBase` : matchLength - MINMATCH - * Allowed to overread literals up to litLimit. -*/ -HINT_INLINE UNUSED_ATTR -void ZSTD_storeSeq(seqStore_t* seqStorePtr, size_t litLength, const BYTE* literals, const BYTE* litLimit, U32 offCode, size_t mlBase) -{ - BYTE const* const litLimit_w = litLimit - WILDCOPY_OVERLENGTH; - BYTE const* const litEnd = literals + litLength; -#if defined(DEBUGLEVEL) && (DEBUGLEVEL >= 6) - static const BYTE* g_start = NULL; - if (g_start==NULL) g_start = (const BYTE*)literals; /* note : index only works for compression within a single segment */ - { U32 const pos = (U32)((const BYTE*)literals - g_start); - DEBUGLOG(6, "Cpos%7u :%3u literals, match%4u bytes at offCode%7u", - pos, (U32)litLength, (U32)mlBase+MINMATCH, (U32)offCode); - } -#endif - assert((size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart) < seqStorePtr->maxNbSeq); - /* copy Literals */ - assert(seqStorePtr->maxNbLit <= 128 KB); - assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit); - assert(literals + litLength <= litLimit); - if (litEnd <= litLimit_w) { - /* Common case we can use wildcopy. - * First copy 16 bytes, because literals are likely short. - */ - assert(WILDCOPY_OVERLENGTH >= 16); - ZSTD_copy16(seqStorePtr->lit, literals); - if (litLength > 16) { - ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, (ptrdiff_t)litLength-16, ZSTD_no_overlap); - } - } else { - ZSTD_safecopyLiterals(seqStorePtr->lit, literals, litEnd, litLimit_w); - } - seqStorePtr->lit += litLength; - - /* literal Length */ - if (litLength>0xFFFF) { - assert(seqStorePtr->longLengthID == 0); /* there can only be a single long length */ - seqStorePtr->longLengthID = 1; - seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); - } - seqStorePtr->sequences[0].litLength = (U16)litLength; - - /* match offset */ - seqStorePtr->sequences[0].offset = offCode + 1; - - /* match Length */ - if (mlBase>0xFFFF) { - assert(seqStorePtr->longLengthID == 0); /* there can only be a single long length */ - seqStorePtr->longLengthID = 2; - seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); - } - seqStorePtr->sequences[0].matchLength = (U16)mlBase; - - seqStorePtr->sequences++; -} - - -/*-************************************* -* Match length counter -***************************************/ -static unsigned ZSTD_NbCommonBytes (size_t val) -{ - if (MEM_isLittleEndian()) { - if (MEM_64bits()) { -# if defined(_MSC_VER) && defined(_WIN64) - unsigned long r = 0; - return _BitScanForward64( &r, (U64)val ) ? (unsigned)(r >> 3) : 0; -# elif defined(__GNUC__) && (__GNUC__ >= 4) - return (__builtin_ctzll((U64)val) >> 3); -# else - static const int DeBruijnBytePos[64] = { 0, 0, 0, 0, 0, 1, 1, 2, - 0, 3, 1, 3, 1, 4, 2, 7, - 0, 2, 3, 6, 1, 5, 3, 5, - 1, 3, 4, 4, 2, 5, 6, 7, - 7, 0, 1, 2, 3, 3, 4, 6, - 2, 6, 5, 5, 3, 4, 5, 6, - 7, 1, 2, 4, 6, 4, 4, 5, - 7, 2, 6, 5, 7, 6, 7, 7 }; - return DeBruijnBytePos[((U64)((val & -(long long)val) * 0x0218A392CDABBD3FULL)) >> 58]; -# endif - } else { /* 32 bits */ -# if defined(_MSC_VER) - unsigned long r=0; - return _BitScanForward( &r, (U32)val ) ? (unsigned)(r >> 3) : 0; -# elif defined(__GNUC__) && (__GNUC__ >= 3) - return (__builtin_ctz((U32)val) >> 3); -# else - static const int DeBruijnBytePos[32] = { 0, 0, 3, 0, 3, 1, 3, 0, - 3, 2, 2, 1, 3, 2, 0, 1, - 3, 3, 1, 2, 2, 2, 2, 0, - 3, 1, 2, 0, 1, 0, 1, 1 }; - return DeBruijnBytePos[((U32)((val & -(S32)val) * 0x077CB531U)) >> 27]; -# endif - } - } else { /* Big Endian CPU */ - if (MEM_64bits()) { -# if defined(_MSC_VER) && defined(_WIN64) - unsigned long r = 0; - return _BitScanReverse64( &r, val ) ? (unsigned)(r >> 3) : 0; -# elif defined(__GNUC__) && (__GNUC__ >= 4) - return (__builtin_clzll(val) >> 3); -# else - unsigned r; - const unsigned n32 = sizeof(size_t)*4; /* calculate this way due to compiler complaining in 32-bits mode */ - if (!(val>>n32)) { r=4; } else { r=0; val>>=n32; } - if (!(val>>16)) { r+=2; val>>=8; } else { val>>=24; } - r += (!val); - return r; -# endif - } else { /* 32 bits */ -# if defined(_MSC_VER) - unsigned long r = 0; - return _BitScanReverse( &r, (unsigned long)val ) ? (unsigned)(r >> 3) : 0; -# elif defined(__GNUC__) && (__GNUC__ >= 3) - return (__builtin_clz((U32)val) >> 3); -# else - unsigned r; - if (!(val>>16)) { r=2; val>>=8; } else { r=0; val>>=24; } - r += (!val); - return r; -# endif - } } -} - - -MEM_STATIC size_t ZSTD_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* const pInLimit) -{ - const BYTE* const pStart = pIn; - const BYTE* const pInLoopLimit = pInLimit - (sizeof(size_t)-1); - - if (pIn < pInLoopLimit) { - { size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn); - if (diff) return ZSTD_NbCommonBytes(diff); } - pIn+=sizeof(size_t); pMatch+=sizeof(size_t); - while (pIn < pInLoopLimit) { - size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn); - if (!diff) { pIn+=sizeof(size_t); pMatch+=sizeof(size_t); continue; } - pIn += ZSTD_NbCommonBytes(diff); - return (size_t)(pIn - pStart); - } } - if (MEM_64bits() && (pIn<(pInLimit-3)) && (MEM_read32(pMatch) == MEM_read32(pIn))) { pIn+=4; pMatch+=4; } - if ((pIn<(pInLimit-1)) && (MEM_read16(pMatch) == MEM_read16(pIn))) { pIn+=2; pMatch+=2; } - if ((pIn> (32-h) ; } -MEM_STATIC size_t ZSTD_hash3Ptr(const void* ptr, U32 h) { return ZSTD_hash3(MEM_readLE32(ptr), h); } /* only in zstd_opt.h */ - -static const U32 prime4bytes = 2654435761U; -static U32 ZSTD_hash4(U32 u, U32 h) { return (u * prime4bytes) >> (32-h) ; } -static size_t ZSTD_hash4Ptr(const void* ptr, U32 h) { return ZSTD_hash4(MEM_read32(ptr), h); } - -static const U64 prime5bytes = 889523592379ULL; -static size_t ZSTD_hash5(U64 u, U32 h) { return (size_t)(((u << (64-40)) * prime5bytes) >> (64-h)) ; } -static size_t ZSTD_hash5Ptr(const void* p, U32 h) { return ZSTD_hash5(MEM_readLE64(p), h); } - -static const U64 prime6bytes = 227718039650203ULL; -static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)(((u << (64-48)) * prime6bytes) >> (64-h)) ; } -static size_t ZSTD_hash6Ptr(const void* p, U32 h) { return ZSTD_hash6(MEM_readLE64(p), h); } - -static const U64 prime7bytes = 58295818150454627ULL; -static size_t ZSTD_hash7(U64 u, U32 h) { return (size_t)(((u << (64-56)) * prime7bytes) >> (64-h)) ; } -static size_t ZSTD_hash7Ptr(const void* p, U32 h) { return ZSTD_hash7(MEM_readLE64(p), h); } - -static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL; -static size_t ZSTD_hash8(U64 u, U32 h) { return (size_t)(((u) * prime8bytes) >> (64-h)) ; } -static size_t ZSTD_hash8Ptr(const void* p, U32 h) { return ZSTD_hash8(MEM_readLE64(p), h); } - -MEM_STATIC size_t ZSTD_hashPtr(const void* p, U32 hBits, U32 mls) -{ - switch(mls) - { - default: - case 4: return ZSTD_hash4Ptr(p, hBits); - case 5: return ZSTD_hash5Ptr(p, hBits); - case 6: return ZSTD_hash6Ptr(p, hBits); - case 7: return ZSTD_hash7Ptr(p, hBits); - case 8: return ZSTD_hash8Ptr(p, hBits); - } -} - -/** ZSTD_ipow() : - * Return base^exponent. - */ -static U64 ZSTD_ipow(U64 base, U64 exponent) -{ - U64 power = 1; - while (exponent) { - if (exponent & 1) power *= base; - exponent >>= 1; - base *= base; - } - return power; -} - -#define ZSTD_ROLL_HASH_CHAR_OFFSET 10 - -/** ZSTD_rollingHash_append() : - * Add the buffer to the hash value. - */ -static U64 ZSTD_rollingHash_append(U64 hash, void const* buf, size_t size) -{ - BYTE const* istart = (BYTE const*)buf; - size_t pos; - for (pos = 0; pos < size; ++pos) { - hash *= prime8bytes; - hash += istart[pos] + ZSTD_ROLL_HASH_CHAR_OFFSET; - } - return hash; -} - -/** ZSTD_rollingHash_compute() : - * Compute the rolling hash value of the buffer. - */ -MEM_STATIC U64 ZSTD_rollingHash_compute(void const* buf, size_t size) -{ - return ZSTD_rollingHash_append(0, buf, size); -} - -/** ZSTD_rollingHash_primePower() : - * Compute the primePower to be passed to ZSTD_rollingHash_rotate() for a hash - * over a window of length bytes. - */ -MEM_STATIC U64 ZSTD_rollingHash_primePower(U32 length) -{ - return ZSTD_ipow(prime8bytes, length - 1); -} - -/** ZSTD_rollingHash_rotate() : - * Rotate the rolling hash by one byte. - */ -MEM_STATIC U64 ZSTD_rollingHash_rotate(U64 hash, BYTE toRemove, BYTE toAdd, U64 primePower) -{ - hash -= (toRemove + ZSTD_ROLL_HASH_CHAR_OFFSET) * primePower; - hash *= prime8bytes; - hash += toAdd + ZSTD_ROLL_HASH_CHAR_OFFSET; - return hash; -} - -/*-************************************* -* Round buffer management -***************************************/ -#if (ZSTD_WINDOWLOG_MAX_64 > 31) -# error "ZSTD_WINDOWLOG_MAX is too large : would overflow ZSTD_CURRENT_MAX" -#endif -/* Max current allowed */ -#define ZSTD_CURRENT_MAX ((3U << 29) + (1U << ZSTD_WINDOWLOG_MAX)) -/* Maximum chunk size before overflow correction needs to be called again */ -#define ZSTD_CHUNKSIZE_MAX \ - ( ((U32)-1) /* Maximum ending current index */ \ - - ZSTD_CURRENT_MAX) /* Maximum beginning lowLimit */ - -/** - * ZSTD_window_clear(): - * Clears the window containing the history by simply setting it to empty. - */ -MEM_STATIC void ZSTD_window_clear(ZSTD_window_t* window) -{ - size_t const endT = (size_t)(window->nextSrc - window->base); - U32 const end = (U32)endT; - - window->lowLimit = end; - window->dictLimit = end; -} - -/** - * ZSTD_window_hasExtDict(): - * Returns non-zero if the window has a non-empty extDict. - */ -MEM_STATIC U32 ZSTD_window_hasExtDict(ZSTD_window_t const window) -{ - return window.lowLimit < window.dictLimit; -} - -/** - * ZSTD_matchState_dictMode(): - * Inspects the provided matchState and figures out what dictMode should be - * passed to the compressor. - */ -MEM_STATIC ZSTD_dictMode_e ZSTD_matchState_dictMode(const ZSTD_matchState_t *ms) -{ - return ZSTD_window_hasExtDict(ms->window) ? - ZSTD_extDict : - ms->dictMatchState != NULL ? - ZSTD_dictMatchState : - ZSTD_noDict; -} - -/** - * ZSTD_window_needOverflowCorrection(): - * Returns non-zero if the indices are getting too large and need overflow - * protection. - */ -MEM_STATIC U32 ZSTD_window_needOverflowCorrection(ZSTD_window_t const window, - void const* srcEnd) -{ - U32 const current = (U32)((BYTE const*)srcEnd - window.base); - return current > ZSTD_CURRENT_MAX; -} - -/** - * ZSTD_window_correctOverflow(): - * Reduces the indices to protect from index overflow. - * Returns the correction made to the indices, which must be applied to every - * stored index. - * - * The least significant cycleLog bits of the indices must remain the same, - * which may be 0. Every index up to maxDist in the past must be valid. - * NOTE: (maxDist & cycleMask) must be zero. - */ -MEM_STATIC U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog, - U32 maxDist, void const* src) -{ - /* preemptive overflow correction: - * 1. correction is large enough: - * lowLimit > (3<<29) ==> current > 3<<29 + 1< (3<<29 + 1< (3<<29) - (1< (3<<29) - (1<<30) (NOTE: chainLog <= 30) - * > 1<<29 - * - * 2. (ip+ZSTD_CHUNKSIZE_MAX - cctx->base) doesn't overflow: - * After correction, current is less than (1<base < 1<<32. - * 3. (cctx->lowLimit + 1< 3<<29 + 1<base); - U32 const currentCycle0 = current & cycleMask; - /* Exclude zero so that newCurrent - maxDist >= 1. */ - U32 const currentCycle1 = currentCycle0 == 0 ? (1U << cycleLog) : currentCycle0; - U32 const newCurrent = currentCycle1 + maxDist; - U32 const correction = current - newCurrent; - assert((maxDist & cycleMask) == 0); - assert(current > newCurrent); - /* Loose bound, should be around 1<<29 (see above) */ - assert(correction > 1<<28); - - window->base += correction; - window->dictBase += correction; - if (window->lowLimit <= correction) window->lowLimit = 1; - else window->lowLimit -= correction; - if (window->dictLimit <= correction) window->dictLimit = 1; - else window->dictLimit -= correction; - - /* Ensure we can still reference the full window. */ - assert(newCurrent >= maxDist); - assert(newCurrent - maxDist >= 1); - /* Ensure that lowLimit and dictLimit didn't underflow. */ - assert(window->lowLimit <= newCurrent); - assert(window->dictLimit <= newCurrent); - - DEBUGLOG(4, "Correction of 0x%x bytes to lowLimit=0x%x", correction, - window->lowLimit); - return correction; -} - -/** - * ZSTD_window_enforceMaxDist(): - * Updates lowLimit so that: - * (srcEnd - base) - lowLimit == maxDist + loadedDictEnd - * - * It ensures index is valid as long as index >= lowLimit. - * This must be called before a block compression call. - * - * loadedDictEnd is only defined if a dictionary is in use for current compression. - * As the name implies, loadedDictEnd represents the index at end of dictionary. - * The value lies within context's referential, it can be directly compared to blockEndIdx. - * - * If loadedDictEndPtr is NULL, no dictionary is in use, and we use loadedDictEnd == 0. - * If loadedDictEndPtr is not NULL, we set it to zero after updating lowLimit. - * This is because dictionaries are allowed to be referenced fully - * as long as the last byte of the dictionary is in the window. - * Once input has progressed beyond window size, dictionary cannot be referenced anymore. - * - * In normal dict mode, the dictionary lies between lowLimit and dictLimit. - * In dictMatchState mode, lowLimit and dictLimit are the same, - * and the dictionary is below them. - * forceWindow and dictMatchState are therefore incompatible. - */ -MEM_STATIC void -ZSTD_window_enforceMaxDist(ZSTD_window_t* window, - const void* blockEnd, - U32 maxDist, - U32* loadedDictEndPtr, - const ZSTD_matchState_t** dictMatchStatePtr) -{ - U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base); - U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0; - DEBUGLOG(5, "ZSTD_window_enforceMaxDist: blockEndIdx=%u, maxDist=%u, loadedDictEnd=%u", - (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); - - /* - When there is no dictionary : loadedDictEnd == 0. - In which case, the test (blockEndIdx > maxDist) is merely to avoid - overflowing next operation `newLowLimit = blockEndIdx - maxDist`. - - When there is a standard dictionary : - Index referential is copied from the dictionary, - which means it starts from 0. - In which case, loadedDictEnd == dictSize, - and it makes sense to compare `blockEndIdx > maxDist + dictSize` - since `blockEndIdx` also starts from zero. - - When there is an attached dictionary : - loadedDictEnd is expressed within the referential of the context, - so it can be directly compared against blockEndIdx. - */ - if (blockEndIdx > maxDist + loadedDictEnd) { - U32 const newLowLimit = blockEndIdx - maxDist; - if (window->lowLimit < newLowLimit) window->lowLimit = newLowLimit; - if (window->dictLimit < window->lowLimit) { - DEBUGLOG(5, "Update dictLimit to match lowLimit, from %u to %u", - (unsigned)window->dictLimit, (unsigned)window->lowLimit); - window->dictLimit = window->lowLimit; - } - /* On reaching window size, dictionaries are invalidated */ - if (loadedDictEndPtr) *loadedDictEndPtr = 0; - if (dictMatchStatePtr) *dictMatchStatePtr = NULL; - } -} - -/* Similar to ZSTD_window_enforceMaxDist(), - * but only invalidates dictionary - * when input progresses beyond window size. - * assumption : loadedDictEndPtr and dictMatchStatePtr are valid (non NULL) - * loadedDictEnd uses same referential as window->base - * maxDist is the window size */ -MEM_STATIC void -ZSTD_checkDictValidity(const ZSTD_window_t* window, - const void* blockEnd, - U32 maxDist, - U32* loadedDictEndPtr, - const ZSTD_matchState_t** dictMatchStatePtr) -{ - assert(loadedDictEndPtr != NULL); - assert(dictMatchStatePtr != NULL); - { U32 const blockEndIdx = (U32)((BYTE const*)blockEnd - window->base); - U32 const loadedDictEnd = *loadedDictEndPtr; - DEBUGLOG(5, "ZSTD_checkDictValidity: blockEndIdx=%u, maxDist=%u, loadedDictEnd=%u", - (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); - assert(blockEndIdx >= loadedDictEnd); - - if (blockEndIdx > loadedDictEnd + maxDist) { - /* On reaching window size, dictionaries are invalidated. - * For simplification, if window size is reached anywhere within next block, - * the dictionary is invalidated for the full block. - */ - DEBUGLOG(6, "invalidating dictionary for current block (distance > windowSize)"); - *loadedDictEndPtr = 0; - *dictMatchStatePtr = NULL; - } else { - if (*loadedDictEndPtr != 0) { - DEBUGLOG(6, "dictionary considered valid for current block"); - } } } -} - -MEM_STATIC void ZSTD_window_init(ZSTD_window_t* window) { - memset(window, 0, sizeof(*window)); - window->base = (BYTE const*)""; - window->dictBase = (BYTE const*)""; - window->dictLimit = 1; /* start from 1, so that 1st position is valid */ - window->lowLimit = 1; /* it ensures first and later CCtx usages compress the same */ - window->nextSrc = window->base + 1; /* see issue #1241 */ -} - -/** - * ZSTD_window_update(): - * Updates the window by appending [src, src + srcSize) to the window. - * If it is not contiguous, the current prefix becomes the extDict, and we - * forget about the extDict. Handles overlap of the prefix and extDict. - * Returns non-zero if the segment is contiguous. - */ -MEM_STATIC U32 ZSTD_window_update(ZSTD_window_t* window, - void const* src, size_t srcSize) -{ - BYTE const* const ip = (BYTE const*)src; - U32 contiguous = 1; - DEBUGLOG(5, "ZSTD_window_update"); - if (srcSize == 0) - return contiguous; - assert(window->base != NULL); - assert(window->dictBase != NULL); - /* Check if blocks follow each other */ - if (src != window->nextSrc) { - /* not contiguous */ - size_t const distanceFromBase = (size_t)(window->nextSrc - window->base); - DEBUGLOG(5, "Non contiguous blocks, new segment starts at %u", window->dictLimit); - window->lowLimit = window->dictLimit; - assert(distanceFromBase == (size_t)(U32)distanceFromBase); /* should never overflow */ - window->dictLimit = (U32)distanceFromBase; - window->dictBase = window->base; - window->base = ip - distanceFromBase; - /* ms->nextToUpdate = window->dictLimit; */ - if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; /* too small extDict */ - contiguous = 0; - } - window->nextSrc = ip + srcSize; - /* if input and dictionary overlap : reduce dictionary (area presumed modified by input) */ - if ( (ip+srcSize > window->dictBase + window->lowLimit) - & (ip < window->dictBase + window->dictLimit)) { - ptrdiff_t const highInputIdx = (ip + srcSize) - window->dictBase; - U32 const lowLimitMax = (highInputIdx > (ptrdiff_t)window->dictLimit) ? window->dictLimit : (U32)highInputIdx; - window->lowLimit = lowLimitMax; - DEBUGLOG(5, "Overlapping extDict and input : new lowLimit = %u", window->lowLimit); - } - return contiguous; -} - -/** - * Returns the lowest allowed match index. It may either be in the ext-dict or the prefix. - */ -MEM_STATIC U32 ZSTD_getLowestMatchIndex(const ZSTD_matchState_t* ms, U32 current, unsigned windowLog) -{ - U32 const maxDistance = 1U << windowLog; - U32 const lowestValid = ms->window.lowLimit; - U32 const withinWindow = (current - lowestValid > maxDistance) ? current - maxDistance : lowestValid; - U32 const isDictionary = (ms->loadedDictEnd != 0); - U32 const matchLowest = isDictionary ? lowestValid : withinWindow; - return matchLowest; -} - -/** - * Returns the lowest allowed match index in the prefix. - */ -MEM_STATIC U32 ZSTD_getLowestPrefixIndex(const ZSTD_matchState_t* ms, U32 current, unsigned windowLog) -{ - U32 const maxDistance = 1U << windowLog; - U32 const lowestValid = ms->window.dictLimit; - U32 const withinWindow = (current - lowestValid > maxDistance) ? current - maxDistance : lowestValid; - U32 const isDictionary = (ms->loadedDictEnd != 0); - U32 const matchLowest = isDictionary ? lowestValid : withinWindow; - return matchLowest; -} - - - -/* debug functions */ -#if (DEBUGLEVEL>=2) - -MEM_STATIC double ZSTD_fWeight(U32 rawStat) -{ - U32 const fp_accuracy = 8; - U32 const fp_multiplier = (1 << fp_accuracy); - U32 const newStat = rawStat + 1; - U32 const hb = ZSTD_highbit32(newStat); - U32 const BWeight = hb * fp_multiplier; - U32 const FWeight = (newStat << fp_accuracy) >> hb; - U32 const weight = BWeight + FWeight; - assert(hb + fp_accuracy < 31); - return (double)weight / fp_multiplier; -} - -/* display a table content, - * listing each element, its frequency, and its predicted bit cost */ -MEM_STATIC void ZSTD_debugTable(const U32* table, U32 max) -{ - unsigned u, sum; - for (u=0, sum=0; u<=max; u++) sum += table[u]; - DEBUGLOG(2, "total nb elts: %u", sum); - for (u=0; u<=max; u++) { - DEBUGLOG(2, "%2u: %5u (%.2f)", - u, table[u], ZSTD_fWeight(sum) - ZSTD_fWeight(table[u]) ); - } -} - -#endif - - -#if defined (__cplusplus) -} -#endif - -/* =============================================================== - * Shared internal declarations - * These prototypes may be called from sources not in lib/compress - * =============================================================== */ - -/* ZSTD_loadCEntropy() : - * dict : must point at beginning of a valid zstd dictionary. - * return : size of dictionary header (size of magic number + dict ID + entropy tables) - * assumptions : magic number supposed already checked - * and dictSize >= 8 */ -size_t ZSTD_loadCEntropy(ZSTD_compressedBlockState_t* bs, void* workspace, - short* offcodeNCount, unsigned* offcodeMaxValue, - const void* const dict, size_t dictSize); - -void ZSTD_reset_compressedBlockState(ZSTD_compressedBlockState_t* bs); - -/* ============================================================== - * Private declarations - * These prototypes shall only be called from within lib/compress - * ============================================================== */ - -/* ZSTD_getCParamsFromCCtxParams() : - * cParams are built depending on compressionLevel, src size hints, - * LDM and manually set compression parameters. - * Note: srcSizeHint == 0 means 0! - */ -ZSTD_compressionParameters ZSTD_getCParamsFromCCtxParams( - const ZSTD_CCtx_params* CCtxParams, U64 srcSizeHint, size_t dictSize); - -/*! ZSTD_initCStream_internal() : - * Private use only. Init streaming operation. - * expects params to be valid. - * must receive dict, or cdict, or none, but not both. - * @return : 0, or an error code */ -size_t ZSTD_initCStream_internal(ZSTD_CStream* zcs, - const void* dict, size_t dictSize, - const ZSTD_CDict* cdict, - const ZSTD_CCtx_params* params, unsigned long long pledgedSrcSize); - -void ZSTD_resetSeqStore(seqStore_t* ssPtr); - -/*! ZSTD_getCParamsFromCDict() : - * as the name implies */ -ZSTD_compressionParameters ZSTD_getCParamsFromCDict(const ZSTD_CDict* cdict); - -/* ZSTD_compressBegin_advanced_internal() : - * Private use only. To be called from zstdmt_compress.c. */ -size_t ZSTD_compressBegin_advanced_internal(ZSTD_CCtx* cctx, - const void* dict, size_t dictSize, - ZSTD_dictContentType_e dictContentType, - ZSTD_dictTableLoadMethod_e dtlm, - const ZSTD_CDict* cdict, - const ZSTD_CCtx_params* params, - unsigned long long pledgedSrcSize); - -/* ZSTD_compress_advanced_internal() : - * Private use only. To be called from zstdmt_compress.c. */ -size_t ZSTD_compress_advanced_internal(ZSTD_CCtx* cctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const void* dict,size_t dictSize, - const ZSTD_CCtx_params* params); - - -/* ZSTD_writeLastEmptyBlock() : - * output an empty Block with end-of-frame mark to complete a frame - * @return : size of data written into `dst` (== ZSTD_blockHeaderSize (defined in zstd_internal.h)) - * or an error code if `dstCapacity` is too small ( 1 */ -U32 ZSTD_cycleLog(U32 hashLog, ZSTD_strategy strat); - -#endif /* ZSTD_COMPRESS_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_compress_literals.c b/lib/SZ3/tools/zstd/compress/zstd_compress_literals.c deleted file mode 100644 index 17e7168d..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_compress_literals.c +++ /dev/null @@ -1,158 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - /*-************************************* - * Dependencies - ***************************************/ -#include "zstd_compress_literals.h" - -size_t ZSTD_noCompressLiterals (void* dst, size_t dstCapacity, const void* src, size_t srcSize) -{ - BYTE* const ostart = (BYTE* const)dst; - U32 const flSize = 1 + (srcSize>31) + (srcSize>4095); - - RETURN_ERROR_IF(srcSize + flSize > dstCapacity, dstSize_tooSmall, ""); - - switch(flSize) - { - case 1: /* 2 - 1 - 5 */ - ostart[0] = (BYTE)((U32)set_basic + (srcSize<<3)); - break; - case 2: /* 2 - 2 - 12 */ - MEM_writeLE16(ostart, (U16)((U32)set_basic + (1<<2) + (srcSize<<4))); - break; - case 3: /* 2 - 2 - 20 */ - MEM_writeLE32(ostart, (U32)((U32)set_basic + (3<<2) + (srcSize<<4))); - break; - default: /* not necessary : flSize is {1,2,3} */ - assert(0); - } - - memcpy(ostart + flSize, src, srcSize); - DEBUGLOG(5, "Raw literals: %u -> %u", (U32)srcSize, (U32)(srcSize + flSize)); - return srcSize + flSize; -} - -size_t ZSTD_compressRleLiteralsBlock (void* dst, size_t dstCapacity, const void* src, size_t srcSize) -{ - BYTE* const ostart = (BYTE* const)dst; - U32 const flSize = 1 + (srcSize>31) + (srcSize>4095); - - (void)dstCapacity; /* dstCapacity already guaranteed to be >=4, hence large enough */ - - switch(flSize) - { - case 1: /* 2 - 1 - 5 */ - ostart[0] = (BYTE)((U32)set_rle + (srcSize<<3)); - break; - case 2: /* 2 - 2 - 12 */ - MEM_writeLE16(ostart, (U16)((U32)set_rle + (1<<2) + (srcSize<<4))); - break; - case 3: /* 2 - 2 - 20 */ - MEM_writeLE32(ostart, (U32)((U32)set_rle + (3<<2) + (srcSize<<4))); - break; - default: /* not necessary : flSize is {1,2,3} */ - assert(0); - } - - ostart[flSize] = *(const BYTE*)src; - DEBUGLOG(5, "RLE literals: %u -> %u", (U32)srcSize, (U32)flSize + 1); - return flSize+1; -} - -size_t ZSTD_compressLiterals (ZSTD_hufCTables_t const* prevHuf, - ZSTD_hufCTables_t* nextHuf, - ZSTD_strategy strategy, int disableLiteralCompression, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - void* entropyWorkspace, size_t entropyWorkspaceSize, - const int bmi2) -{ - size_t const minGain = ZSTD_minGain(srcSize, strategy); - size_t const lhSize = 3 + (srcSize >= 1 KB) + (srcSize >= 16 KB); - BYTE* const ostart = (BYTE*)dst; - U32 singleStream = srcSize < 256; - symbolEncodingType_e hType = set_compressed; - size_t cLitSize; - - DEBUGLOG(5,"ZSTD_compressLiterals (disableLiteralCompression=%i srcSize=%u)", - disableLiteralCompression, (U32)srcSize); - - /* Prepare nextEntropy assuming reusing the existing table */ - memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); - - if (disableLiteralCompression) - return ZSTD_noCompressLiterals(dst, dstCapacity, src, srcSize); - - /* small ? don't even attempt compression (speed opt) */ -# define COMPRESS_LITERALS_SIZE_MIN 63 - { size_t const minLitSize = (prevHuf->repeatMode == HUF_repeat_valid) ? 6 : COMPRESS_LITERALS_SIZE_MIN; - if (srcSize <= minLitSize) return ZSTD_noCompressLiterals(dst, dstCapacity, src, srcSize); - } - - RETURN_ERROR_IF(dstCapacity < lhSize+1, dstSize_tooSmall, "not enough space for compression"); - { HUF_repeat repeat = prevHuf->repeatMode; - int const preferRepeat = strategy < ZSTD_lazy ? srcSize <= 1024 : 0; - if (repeat == HUF_repeat_valid && lhSize == 3) singleStream = 1; - cLitSize = singleStream ? - HUF_compress1X_repeat( - ostart+lhSize, dstCapacity-lhSize, src, srcSize, - HUF_SYMBOLVALUE_MAX, HUF_TABLELOG_DEFAULT, entropyWorkspace, entropyWorkspaceSize, - (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2) : - HUF_compress4X_repeat( - ostart+lhSize, dstCapacity-lhSize, src, srcSize, - HUF_SYMBOLVALUE_MAX, HUF_TABLELOG_DEFAULT, entropyWorkspace, entropyWorkspaceSize, - (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2); - if (repeat != HUF_repeat_none) { - /* reused the existing table */ - DEBUGLOG(5, "Reusing previous huffman table"); - hType = set_repeat; - } - } - - if ((cLitSize==0) | (cLitSize >= srcSize - minGain) | ERR_isError(cLitSize)) { - memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); - return ZSTD_noCompressLiterals(dst, dstCapacity, src, srcSize); - } - if (cLitSize==1) { - memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); - return ZSTD_compressRleLiteralsBlock(dst, dstCapacity, src, srcSize); - } - - if (hType == set_compressed) { - /* using a newly constructed table */ - nextHuf->repeatMode = HUF_repeat_check; - } - - /* Build header */ - switch(lhSize) - { - case 3: /* 2 - 2 - 10 - 10 */ - { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<14); - MEM_writeLE24(ostart, lhc); - break; - } - case 4: /* 2 - 2 - 14 - 14 */ - { U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<18); - MEM_writeLE32(ostart, lhc); - break; - } - case 5: /* 2 - 2 - 18 - 18 */ - { U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)cLitSize<<22); - MEM_writeLE32(ostart, lhc); - ostart[4] = (BYTE)(cLitSize >> 10); - break; - } - default: /* not possible : lhSize is {3,4,5} */ - assert(0); - } - DEBUGLOG(5, "Compressed literals: %u -> %u", (U32)srcSize, (U32)(lhSize+cLitSize)); - return lhSize+cLitSize; -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_compress_literals.h b/lib/SZ3/tools/zstd/compress/zstd_compress_literals.h deleted file mode 100644 index 8b087057..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_compress_literals.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_COMPRESS_LITERALS_H -#define ZSTD_COMPRESS_LITERALS_H - -#include "zstd_compress_internal.h" /* ZSTD_hufCTables_t, ZSTD_minGain() */ - - -size_t ZSTD_noCompressLiterals (void* dst, size_t dstCapacity, const void* src, size_t srcSize); - -size_t ZSTD_compressRleLiteralsBlock (void* dst, size_t dstCapacity, const void* src, size_t srcSize); - -size_t ZSTD_compressLiterals (ZSTD_hufCTables_t const* prevHuf, - ZSTD_hufCTables_t* nextHuf, - ZSTD_strategy strategy, int disableLiteralCompression, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - void* entropyWorkspace, size_t entropyWorkspaceSize, - const int bmi2); - -#endif /* ZSTD_COMPRESS_LITERALS_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_compress_sequences.c b/lib/SZ3/tools/zstd/compress/zstd_compress_sequences.c deleted file mode 100644 index f9f8097c..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_compress_sequences.c +++ /dev/null @@ -1,419 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - /*-************************************* - * Dependencies - ***************************************/ -#include "zstd_compress_sequences.h" - -/** - * -log2(x / 256) lookup table for x in [0, 256). - * If x == 0: Return 0 - * Else: Return floor(-log2(x / 256) * 256) - */ -static unsigned const kInverseProbabilityLog256[256] = { - 0, 2048, 1792, 1642, 1536, 1453, 1386, 1329, 1280, 1236, 1197, 1162, - 1130, 1100, 1073, 1047, 1024, 1001, 980, 960, 941, 923, 906, 889, - 874, 859, 844, 830, 817, 804, 791, 779, 768, 756, 745, 734, - 724, 714, 704, 694, 685, 676, 667, 658, 650, 642, 633, 626, - 618, 610, 603, 595, 588, 581, 574, 567, 561, 554, 548, 542, - 535, 529, 523, 517, 512, 506, 500, 495, 489, 484, 478, 473, - 468, 463, 458, 453, 448, 443, 438, 434, 429, 424, 420, 415, - 411, 407, 402, 398, 394, 390, 386, 382, 377, 373, 370, 366, - 362, 358, 354, 350, 347, 343, 339, 336, 332, 329, 325, 322, - 318, 315, 311, 308, 305, 302, 298, 295, 292, 289, 286, 282, - 279, 276, 273, 270, 267, 264, 261, 258, 256, 253, 250, 247, - 244, 241, 239, 236, 233, 230, 228, 225, 222, 220, 217, 215, - 212, 209, 207, 204, 202, 199, 197, 194, 192, 190, 187, 185, - 182, 180, 178, 175, 173, 171, 168, 166, 164, 162, 159, 157, - 155, 153, 151, 149, 146, 144, 142, 140, 138, 136, 134, 132, - 130, 128, 126, 123, 121, 119, 117, 115, 114, 112, 110, 108, - 106, 104, 102, 100, 98, 96, 94, 93, 91, 89, 87, 85, - 83, 82, 80, 78, 76, 74, 73, 71, 69, 67, 66, 64, - 62, 61, 59, 57, 55, 54, 52, 50, 49, 47, 46, 44, - 42, 41, 39, 37, 36, 34, 33, 31, 30, 28, 26, 25, - 23, 22, 20, 19, 17, 16, 14, 13, 11, 10, 8, 7, - 5, 4, 2, 1, -}; - -static unsigned ZSTD_getFSEMaxSymbolValue(FSE_CTable const* ctable) { - void const* ptr = ctable; - U16 const* u16ptr = (U16 const*)ptr; - U32 const maxSymbolValue = MEM_read16(u16ptr + 1); - return maxSymbolValue; -} - -/** - * Returns the cost in bytes of encoding the normalized count header. - * Returns an error if any of the helper functions return an error. - */ -static size_t ZSTD_NCountCost(unsigned const* count, unsigned const max, - size_t const nbSeq, unsigned const FSELog) -{ - BYTE wksp[FSE_NCOUNTBOUND]; - S16 norm[MaxSeq + 1]; - const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); - FORWARD_IF_ERROR(FSE_normalizeCount(norm, tableLog, count, nbSeq, max), ""); - return FSE_writeNCount(wksp, sizeof(wksp), norm, max, tableLog); -} - -/** - * Returns the cost in bits of encoding the distribution described by count - * using the entropy bound. - */ -static size_t ZSTD_entropyCost(unsigned const* count, unsigned const max, size_t const total) -{ - unsigned cost = 0; - unsigned s; - for (s = 0; s <= max; ++s) { - unsigned norm = (unsigned)((256 * count[s]) / total); - if (count[s] != 0 && norm == 0) - norm = 1; - assert(count[s] < total); - cost += count[s] * kInverseProbabilityLog256[norm]; - } - return cost >> 8; -} - -/** - * Returns the cost in bits of encoding the distribution in count using ctable. - * Returns an error if ctable cannot represent all the symbols in count. - */ -size_t ZSTD_fseBitCost( - FSE_CTable const* ctable, - unsigned const* count, - unsigned const max) -{ - unsigned const kAccuracyLog = 8; - size_t cost = 0; - unsigned s; - FSE_CState_t cstate; - FSE_initCState(&cstate, ctable); - if (ZSTD_getFSEMaxSymbolValue(ctable) < max) { - DEBUGLOG(5, "Repeat FSE_CTable has maxSymbolValue %u < %u", - ZSTD_getFSEMaxSymbolValue(ctable), max); - return ERROR(GENERIC); - } - for (s = 0; s <= max; ++s) { - unsigned const tableLog = cstate.stateLog; - unsigned const badCost = (tableLog + 1) << kAccuracyLog; - unsigned const bitCost = FSE_bitCost(cstate.symbolTT, tableLog, s, kAccuracyLog); - if (count[s] == 0) - continue; - if (bitCost >= badCost) { - DEBUGLOG(5, "Repeat FSE_CTable has Prob[%u] == 0", s); - return ERROR(GENERIC); - } - cost += (size_t)count[s] * bitCost; - } - return cost >> kAccuracyLog; -} - -/** - * Returns the cost in bits of encoding the distribution in count using the - * table described by norm. The max symbol support by norm is assumed >= max. - * norm must be valid for every symbol with non-zero probability in count. - */ -size_t ZSTD_crossEntropyCost(short const* norm, unsigned accuracyLog, - unsigned const* count, unsigned const max) -{ - unsigned const shift = 8 - accuracyLog; - size_t cost = 0; - unsigned s; - assert(accuracyLog <= 8); - for (s = 0; s <= max; ++s) { - unsigned const normAcc = (norm[s] != -1) ? (unsigned)norm[s] : 1; - unsigned const norm256 = normAcc << shift; - assert(norm256 > 0); - assert(norm256 < 256); - cost += count[s] * kInverseProbabilityLog256[norm256]; - } - return cost >> 8; -} - -symbolEncodingType_e -ZSTD_selectEncodingType( - FSE_repeat* repeatMode, unsigned const* count, unsigned const max, - size_t const mostFrequent, size_t nbSeq, unsigned const FSELog, - FSE_CTable const* prevCTable, - short const* defaultNorm, U32 defaultNormLog, - ZSTD_defaultPolicy_e const isDefaultAllowed, - ZSTD_strategy const strategy) -{ - ZSTD_STATIC_ASSERT(ZSTD_defaultDisallowed == 0 && ZSTD_defaultAllowed != 0); - if (mostFrequent == nbSeq) { - *repeatMode = FSE_repeat_none; - if (isDefaultAllowed && nbSeq <= 2) { - /* Prefer set_basic over set_rle when there are 2 or less symbols, - * since RLE uses 1 byte, but set_basic uses 5-6 bits per symbol. - * If basic encoding isn't possible, always choose RLE. - */ - DEBUGLOG(5, "Selected set_basic"); - return set_basic; - } - DEBUGLOG(5, "Selected set_rle"); - return set_rle; - } - if (strategy < ZSTD_lazy) { - if (isDefaultAllowed) { - size_t const staticFse_nbSeq_max = 1000; - size_t const mult = 10 - strategy; - size_t const baseLog = 3; - size_t const dynamicFse_nbSeq_min = (((size_t)1 << defaultNormLog) * mult) >> baseLog; /* 28-36 for offset, 56-72 for lengths */ - assert(defaultNormLog >= 5 && defaultNormLog <= 6); /* xx_DEFAULTNORMLOG */ - assert(mult <= 9 && mult >= 7); - if ( (*repeatMode == FSE_repeat_valid) - && (nbSeq < staticFse_nbSeq_max) ) { - DEBUGLOG(5, "Selected set_repeat"); - return set_repeat; - } - if ( (nbSeq < dynamicFse_nbSeq_min) - || (mostFrequent < (nbSeq >> (defaultNormLog-1))) ) { - DEBUGLOG(5, "Selected set_basic"); - /* The format allows default tables to be repeated, but it isn't useful. - * When using simple heuristics to select encoding type, we don't want - * to confuse these tables with dictionaries. When running more careful - * analysis, we don't need to waste time checking both repeating tables - * and default tables. - */ - *repeatMode = FSE_repeat_none; - return set_basic; - } - } - } else { - size_t const basicCost = isDefaultAllowed ? ZSTD_crossEntropyCost(defaultNorm, defaultNormLog, count, max) : ERROR(GENERIC); - size_t const repeatCost = *repeatMode != FSE_repeat_none ? ZSTD_fseBitCost(prevCTable, count, max) : ERROR(GENERIC); - size_t const NCountCost = ZSTD_NCountCost(count, max, nbSeq, FSELog); - size_t const compressedCost = (NCountCost << 3) + ZSTD_entropyCost(count, max, nbSeq); - - if (isDefaultAllowed) { - assert(!ZSTD_isError(basicCost)); - assert(!(*repeatMode == FSE_repeat_valid && ZSTD_isError(repeatCost))); - } - assert(!ZSTD_isError(NCountCost)); - assert(compressedCost < ERROR(maxCode)); - DEBUGLOG(5, "Estimated bit costs: basic=%u\trepeat=%u\tcompressed=%u", - (unsigned)basicCost, (unsigned)repeatCost, (unsigned)compressedCost); - if (basicCost <= repeatCost && basicCost <= compressedCost) { - DEBUGLOG(5, "Selected set_basic"); - assert(isDefaultAllowed); - *repeatMode = FSE_repeat_none; - return set_basic; - } - if (repeatCost <= compressedCost) { - DEBUGLOG(5, "Selected set_repeat"); - assert(!ZSTD_isError(repeatCost)); - return set_repeat; - } - assert(compressedCost < basicCost && compressedCost < repeatCost); - } - DEBUGLOG(5, "Selected set_compressed"); - *repeatMode = FSE_repeat_check; - return set_compressed; -} - -size_t -ZSTD_buildCTable(void* dst, size_t dstCapacity, - FSE_CTable* nextCTable, U32 FSELog, symbolEncodingType_e type, - unsigned* count, U32 max, - const BYTE* codeTable, size_t nbSeq, - const S16* defaultNorm, U32 defaultNormLog, U32 defaultMax, - const FSE_CTable* prevCTable, size_t prevCTableSize, - void* entropyWorkspace, size_t entropyWorkspaceSize) -{ - BYTE* op = (BYTE*)dst; - const BYTE* const oend = op + dstCapacity; - DEBUGLOG(6, "ZSTD_buildCTable (dstCapacity=%u)", (unsigned)dstCapacity); - - switch (type) { - case set_rle: - FORWARD_IF_ERROR(FSE_buildCTable_rle(nextCTable, (BYTE)max), ""); - RETURN_ERROR_IF(dstCapacity==0, dstSize_tooSmall, "not enough space"); - *op = codeTable[0]; - return 1; - case set_repeat: - memcpy(nextCTable, prevCTable, prevCTableSize); - return 0; - case set_basic: - FORWARD_IF_ERROR(FSE_buildCTable_wksp(nextCTable, defaultNorm, defaultMax, defaultNormLog, entropyWorkspace, entropyWorkspaceSize), ""); /* note : could be pre-calculated */ - return 0; - case set_compressed: { - S16 norm[MaxSeq + 1]; - size_t nbSeq_1 = nbSeq; - const U32 tableLog = FSE_optimalTableLog(FSELog, nbSeq, max); - if (count[codeTable[nbSeq-1]] > 1) { - count[codeTable[nbSeq-1]]--; - nbSeq_1--; - } - assert(nbSeq_1 > 1); - FORWARD_IF_ERROR(FSE_normalizeCount(norm, tableLog, count, nbSeq_1, max), ""); - { size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protected */ - FORWARD_IF_ERROR(NCountSize, "FSE_writeNCount failed"); - FORWARD_IF_ERROR(FSE_buildCTable_wksp(nextCTable, norm, max, tableLog, entropyWorkspace, entropyWorkspaceSize), ""); - return NCountSize; - } - } - default: assert(0); RETURN_ERROR(GENERIC, "impossible to reach"); - } -} - -FORCE_INLINE_TEMPLATE size_t -ZSTD_encodeSequences_body( - void* dst, size_t dstCapacity, - FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, - FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, - FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, - seqDef const* sequences, size_t nbSeq, int longOffsets) -{ - BIT_CStream_t blockStream; - FSE_CState_t stateMatchLength; - FSE_CState_t stateOffsetBits; - FSE_CState_t stateLitLength; - - RETURN_ERROR_IF( - ERR_isError(BIT_initCStream(&blockStream, dst, dstCapacity)), - dstSize_tooSmall, "not enough space remaining"); - DEBUGLOG(6, "available space for bitstream : %i (dstCapacity=%u)", - (int)(blockStream.endPtr - blockStream.startPtr), - (unsigned)dstCapacity); - - /* first symbols */ - FSE_initCState2(&stateMatchLength, CTable_MatchLength, mlCodeTable[nbSeq-1]); - FSE_initCState2(&stateOffsetBits, CTable_OffsetBits, ofCodeTable[nbSeq-1]); - FSE_initCState2(&stateLitLength, CTable_LitLength, llCodeTable[nbSeq-1]); - BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); - if (MEM_32bits()) BIT_flushBits(&blockStream); - BIT_addBits(&blockStream, sequences[nbSeq-1].matchLength, ML_bits[mlCodeTable[nbSeq-1]]); - if (MEM_32bits()) BIT_flushBits(&blockStream); - if (longOffsets) { - U32 const ofBits = ofCodeTable[nbSeq-1]; - unsigned const extraBits = ofBits - MIN(ofBits, STREAM_ACCUMULATOR_MIN-1); - if (extraBits) { - BIT_addBits(&blockStream, sequences[nbSeq-1].offset, extraBits); - BIT_flushBits(&blockStream); - } - BIT_addBits(&blockStream, sequences[nbSeq-1].offset >> extraBits, - ofBits - extraBits); - } else { - BIT_addBits(&blockStream, sequences[nbSeq-1].offset, ofCodeTable[nbSeq-1]); - } - BIT_flushBits(&blockStream); - - { size_t n; - for (n=nbSeq-2 ; n= 64-7-(LLFSELog+MLFSELog+OffFSELog))) - BIT_flushBits(&blockStream); /* (7)*/ - BIT_addBits(&blockStream, sequences[n].litLength, llBits); - if (MEM_32bits() && ((llBits+mlBits)>24)) BIT_flushBits(&blockStream); - BIT_addBits(&blockStream, sequences[n].matchLength, mlBits); - if (MEM_32bits() || (ofBits+mlBits+llBits > 56)) BIT_flushBits(&blockStream); - if (longOffsets) { - unsigned const extraBits = ofBits - MIN(ofBits, STREAM_ACCUMULATOR_MIN-1); - if (extraBits) { - BIT_addBits(&blockStream, sequences[n].offset, extraBits); - BIT_flushBits(&blockStream); /* (7)*/ - } - BIT_addBits(&blockStream, sequences[n].offset >> extraBits, - ofBits - extraBits); /* 31 */ - } else { - BIT_addBits(&blockStream, sequences[n].offset, ofBits); /* 31 */ - } - BIT_flushBits(&blockStream); /* (7)*/ - DEBUGLOG(7, "remaining space : %i", (int)(blockStream.endPtr - blockStream.ptr)); - } } - - DEBUGLOG(6, "ZSTD_encodeSequences: flushing ML state with %u bits", stateMatchLength.stateLog); - FSE_flushCState(&blockStream, &stateMatchLength); - DEBUGLOG(6, "ZSTD_encodeSequences: flushing Off state with %u bits", stateOffsetBits.stateLog); - FSE_flushCState(&blockStream, &stateOffsetBits); - DEBUGLOG(6, "ZSTD_encodeSequences: flushing LL state with %u bits", stateLitLength.stateLog); - FSE_flushCState(&blockStream, &stateLitLength); - - { size_t const streamSize = BIT_closeCStream(&blockStream); - RETURN_ERROR_IF(streamSize==0, dstSize_tooSmall, "not enough space"); - return streamSize; - } -} - -static size_t -ZSTD_encodeSequences_default( - void* dst, size_t dstCapacity, - FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, - FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, - FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, - seqDef const* sequences, size_t nbSeq, int longOffsets) -{ - return ZSTD_encodeSequences_body(dst, dstCapacity, - CTable_MatchLength, mlCodeTable, - CTable_OffsetBits, ofCodeTable, - CTable_LitLength, llCodeTable, - sequences, nbSeq, longOffsets); -} - - -#if DYNAMIC_BMI2 - -static TARGET_ATTRIBUTE("bmi2") size_t -ZSTD_encodeSequences_bmi2( - void* dst, size_t dstCapacity, - FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, - FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, - FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, - seqDef const* sequences, size_t nbSeq, int longOffsets) -{ - return ZSTD_encodeSequences_body(dst, dstCapacity, - CTable_MatchLength, mlCodeTable, - CTable_OffsetBits, ofCodeTable, - CTable_LitLength, llCodeTable, - sequences, nbSeq, longOffsets); -} - -#endif - -size_t ZSTD_encodeSequences( - void* dst, size_t dstCapacity, - FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, - FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, - FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, - seqDef const* sequences, size_t nbSeq, int longOffsets, int bmi2) -{ - DEBUGLOG(5, "ZSTD_encodeSequences: dstCapacity = %u", (unsigned)dstCapacity); -#if DYNAMIC_BMI2 - if (bmi2) { - return ZSTD_encodeSequences_bmi2(dst, dstCapacity, - CTable_MatchLength, mlCodeTable, - CTable_OffsetBits, ofCodeTable, - CTable_LitLength, llCodeTable, - sequences, nbSeq, longOffsets); - } -#endif - (void)bmi2; - return ZSTD_encodeSequences_default(dst, dstCapacity, - CTable_MatchLength, mlCodeTable, - CTable_OffsetBits, ofCodeTable, - CTable_LitLength, llCodeTable, - sequences, nbSeq, longOffsets); -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_compress_sequences.h b/lib/SZ3/tools/zstd/compress/zstd_compress_sequences.h deleted file mode 100644 index 68c6f9a5..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_compress_sequences.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_COMPRESS_SEQUENCES_H -#define ZSTD_COMPRESS_SEQUENCES_H - -#include "../common/fse.h" /* FSE_repeat, FSE_CTable */ -#include "../common/zstd_internal.h" /* symbolEncodingType_e, ZSTD_strategy */ - -typedef enum { - ZSTD_defaultDisallowed = 0, - ZSTD_defaultAllowed = 1 -} ZSTD_defaultPolicy_e; - -symbolEncodingType_e -ZSTD_selectEncodingType( - FSE_repeat* repeatMode, unsigned const* count, unsigned const max, - size_t const mostFrequent, size_t nbSeq, unsigned const FSELog, - FSE_CTable const* prevCTable, - short const* defaultNorm, U32 defaultNormLog, - ZSTD_defaultPolicy_e const isDefaultAllowed, - ZSTD_strategy const strategy); - -size_t -ZSTD_buildCTable(void* dst, size_t dstCapacity, - FSE_CTable* nextCTable, U32 FSELog, symbolEncodingType_e type, - unsigned* count, U32 max, - const BYTE* codeTable, size_t nbSeq, - const S16* defaultNorm, U32 defaultNormLog, U32 defaultMax, - const FSE_CTable* prevCTable, size_t prevCTableSize, - void* entropyWorkspace, size_t entropyWorkspaceSize); - -size_t ZSTD_encodeSequences( - void* dst, size_t dstCapacity, - FSE_CTable const* CTable_MatchLength, BYTE const* mlCodeTable, - FSE_CTable const* CTable_OffsetBits, BYTE const* ofCodeTable, - FSE_CTable const* CTable_LitLength, BYTE const* llCodeTable, - seqDef const* sequences, size_t nbSeq, int longOffsets, int bmi2); - -size_t ZSTD_fseBitCost( - FSE_CTable const* ctable, - unsigned const* count, - unsigned const max); - -size_t ZSTD_crossEntropyCost(short const* norm, unsigned accuracyLog, - unsigned const* count, unsigned const max); -#endif /* ZSTD_COMPRESS_SEQUENCES_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_compress_superblock.c b/lib/SZ3/tools/zstd/compress/zstd_compress_superblock.c deleted file mode 100644 index b693866c..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_compress_superblock.c +++ /dev/null @@ -1,845 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - /*-************************************* - * Dependencies - ***************************************/ -#include "zstd_compress_superblock.h" - -#include "../common/zstd_internal.h" /* ZSTD_getSequenceLength */ -#include "hist.h" /* HIST_countFast_wksp */ -#include "zstd_compress_internal.h" -#include "zstd_compress_sequences.h" -#include "zstd_compress_literals.h" - -/*-************************************* -* Superblock entropy buffer structs -***************************************/ -/** ZSTD_hufCTablesMetadata_t : - * Stores Literals Block Type for a super-block in hType, and - * huffman tree description in hufDesBuffer. - * hufDesSize refers to the size of huffman tree description in bytes. - * This metadata is populated in ZSTD_buildSuperBlockEntropy_literal() */ -typedef struct { - symbolEncodingType_e hType; - BYTE hufDesBuffer[500]; /* TODO give name to this value */ - size_t hufDesSize; -} ZSTD_hufCTablesMetadata_t; - -/** ZSTD_fseCTablesMetadata_t : - * Stores symbol compression modes for a super-block in {ll, ol, ml}Type, and - * fse tables in fseTablesBuffer. - * fseTablesSize refers to the size of fse tables in bytes. - * This metadata is populated in ZSTD_buildSuperBlockEntropy_sequences() */ -typedef struct { - symbolEncodingType_e llType; - symbolEncodingType_e ofType; - symbolEncodingType_e mlType; - BYTE fseTablesBuffer[500]; /* TODO give name to this value */ - size_t fseTablesSize; - size_t lastCountSize; /* This is to account for bug in 1.3.4. More detail in ZSTD_compressSubBlock_sequences() */ -} ZSTD_fseCTablesMetadata_t; - -typedef struct { - ZSTD_hufCTablesMetadata_t hufMetadata; - ZSTD_fseCTablesMetadata_t fseMetadata; -} ZSTD_entropyCTablesMetadata_t; - - -/** ZSTD_buildSuperBlockEntropy_literal() : - * Builds entropy for the super-block literals. - * Stores literals block type (raw, rle, compressed, repeat) and - * huffman description table to hufMetadata. - * @return : size of huffman description table or error code */ -static size_t ZSTD_buildSuperBlockEntropy_literal(void* const src, size_t srcSize, - const ZSTD_hufCTables_t* prevHuf, - ZSTD_hufCTables_t* nextHuf, - ZSTD_hufCTablesMetadata_t* hufMetadata, - const int disableLiteralsCompression, - void* workspace, size_t wkspSize) -{ - BYTE* const wkspStart = (BYTE*)workspace; - BYTE* const wkspEnd = wkspStart + wkspSize; - BYTE* const countWkspStart = wkspStart; - unsigned* const countWksp = (unsigned*)workspace; - const size_t countWkspSize = (HUF_SYMBOLVALUE_MAX + 1) * sizeof(unsigned); - BYTE* const nodeWksp = countWkspStart + countWkspSize; - const size_t nodeWkspSize = wkspEnd-nodeWksp; - unsigned maxSymbolValue = 255; - unsigned huffLog = HUF_TABLELOG_DEFAULT; - HUF_repeat repeat = prevHuf->repeatMode; - - DEBUGLOG(5, "ZSTD_buildSuperBlockEntropy_literal (srcSize=%zu)", srcSize); - - /* Prepare nextEntropy assuming reusing the existing table */ - memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); - - if (disableLiteralsCompression) { - DEBUGLOG(5, "set_basic - disabled"); - hufMetadata->hType = set_basic; - return 0; - } - - /* small ? don't even attempt compression (speed opt) */ -# define COMPRESS_LITERALS_SIZE_MIN 63 - { size_t const minLitSize = (prevHuf->repeatMode == HUF_repeat_valid) ? 6 : COMPRESS_LITERALS_SIZE_MIN; - if (srcSize <= minLitSize) { - DEBUGLOG(5, "set_basic - too small"); - hufMetadata->hType = set_basic; - return 0; - } - } - - /* Scan input and build symbol stats */ - { size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)src, srcSize, workspace, wkspSize); - FORWARD_IF_ERROR(largest, "HIST_count_wksp failed"); - if (largest == srcSize) { - DEBUGLOG(5, "set_rle"); - hufMetadata->hType = set_rle; - return 0; - } - if (largest <= (srcSize >> 7)+4) { - DEBUGLOG(5, "set_basic - no gain"); - hufMetadata->hType = set_basic; - return 0; - } - } - - /* Validate the previous Huffman table */ - if (repeat == HUF_repeat_check && !HUF_validateCTable((HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue)) { - repeat = HUF_repeat_none; - } - - /* Build Huffman Tree */ - memset(nextHuf->CTable, 0, sizeof(nextHuf->CTable)); - huffLog = HUF_optimalTableLog(huffLog, srcSize, maxSymbolValue); - { size_t const maxBits = HUF_buildCTable_wksp((HUF_CElt*)nextHuf->CTable, countWksp, - maxSymbolValue, huffLog, - nodeWksp, nodeWkspSize); - FORWARD_IF_ERROR(maxBits, "HUF_buildCTable_wksp"); - huffLog = (U32)maxBits; - { /* Build and write the CTable */ - size_t const newCSize = HUF_estimateCompressedSize( - (HUF_CElt*)nextHuf->CTable, countWksp, maxSymbolValue); - size_t const hSize = HUF_writeCTable( - hufMetadata->hufDesBuffer, sizeof(hufMetadata->hufDesBuffer), - (HUF_CElt*)nextHuf->CTable, maxSymbolValue, huffLog); - /* Check against repeating the previous CTable */ - if (repeat != HUF_repeat_none) { - size_t const oldCSize = HUF_estimateCompressedSize( - (HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue); - if (oldCSize < srcSize && (oldCSize <= hSize + newCSize || hSize + 12 >= srcSize)) { - DEBUGLOG(5, "set_repeat - smaller"); - memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); - hufMetadata->hType = set_repeat; - return 0; - } - } - if (newCSize + hSize >= srcSize) { - DEBUGLOG(5, "set_basic - no gains"); - memcpy(nextHuf, prevHuf, sizeof(*prevHuf)); - hufMetadata->hType = set_basic; - return 0; - } - DEBUGLOG(5, "set_compressed (hSize=%u)", (U32)hSize); - hufMetadata->hType = set_compressed; - nextHuf->repeatMode = HUF_repeat_check; - return hSize; - } - } -} - -/** ZSTD_buildSuperBlockEntropy_sequences() : - * Builds entropy for the super-block sequences. - * Stores symbol compression modes and fse table to fseMetadata. - * @return : size of fse tables or error code */ -static size_t ZSTD_buildSuperBlockEntropy_sequences(seqStore_t* seqStorePtr, - const ZSTD_fseCTables_t* prevEntropy, - ZSTD_fseCTables_t* nextEntropy, - const ZSTD_CCtx_params* cctxParams, - ZSTD_fseCTablesMetadata_t* fseMetadata, - void* workspace, size_t wkspSize) -{ - BYTE* const wkspStart = (BYTE*)workspace; - BYTE* const wkspEnd = wkspStart + wkspSize; - BYTE* const countWkspStart = wkspStart; - unsigned* const countWksp = (unsigned*)workspace; - const size_t countWkspSize = (MaxSeq + 1) * sizeof(unsigned); - BYTE* const cTableWksp = countWkspStart + countWkspSize; - const size_t cTableWkspSize = wkspEnd-cTableWksp; - ZSTD_strategy const strategy = cctxParams->cParams.strategy; - FSE_CTable* CTable_LitLength = nextEntropy->litlengthCTable; - FSE_CTable* CTable_OffsetBits = nextEntropy->offcodeCTable; - FSE_CTable* CTable_MatchLength = nextEntropy->matchlengthCTable; - const BYTE* const ofCodeTable = seqStorePtr->ofCode; - const BYTE* const llCodeTable = seqStorePtr->llCode; - const BYTE* const mlCodeTable = seqStorePtr->mlCode; - size_t const nbSeq = seqStorePtr->sequences - seqStorePtr->sequencesStart; - BYTE* const ostart = fseMetadata->fseTablesBuffer; - BYTE* const oend = ostart + sizeof(fseMetadata->fseTablesBuffer); - BYTE* op = ostart; - - assert(cTableWkspSize >= (1 << MaxFSELog) * sizeof(FSE_FUNCTION_TYPE)); - DEBUGLOG(5, "ZSTD_buildSuperBlockEntropy_sequences (nbSeq=%zu)", nbSeq); - memset(workspace, 0, wkspSize); - - fseMetadata->lastCountSize = 0; - /* convert length/distances into codes */ - ZSTD_seqToCodes(seqStorePtr); - /* build CTable for Literal Lengths */ - { U32 LLtype; - unsigned max = MaxLL; - size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, llCodeTable, nbSeq, workspace, wkspSize); /* can't fail */ - DEBUGLOG(5, "Building LL table"); - nextEntropy->litlength_repeatMode = prevEntropy->litlength_repeatMode; - LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode, - countWksp, max, mostFrequent, nbSeq, - LLFSELog, prevEntropy->litlengthCTable, - LL_defaultNorm, LL_defaultNormLog, - ZSTD_defaultAllowed, strategy); - assert(set_basic < set_compressed && set_rle < set_compressed); - assert(!(LLtype < set_compressed && nextEntropy->litlength_repeatMode != FSE_repeat_none)); /* We don't copy tables */ - { size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_LitLength, LLFSELog, (symbolEncodingType_e)LLtype, - countWksp, max, llCodeTable, nbSeq, LL_defaultNorm, LL_defaultNormLog, MaxLL, - prevEntropy->litlengthCTable, sizeof(prevEntropy->litlengthCTable), - cTableWksp, cTableWkspSize); - FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for LitLens failed"); - if (LLtype == set_compressed) - fseMetadata->lastCountSize = countSize; - op += countSize; - fseMetadata->llType = (symbolEncodingType_e) LLtype; - } } - /* build CTable for Offsets */ - { U32 Offtype; - unsigned max = MaxOff; - size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, ofCodeTable, nbSeq, workspace, wkspSize); /* can't fail */ - /* We can only use the basic table if max <= DefaultMaxOff, otherwise the offsets are too large */ - ZSTD_defaultPolicy_e const defaultPolicy = (max <= DefaultMaxOff) ? ZSTD_defaultAllowed : ZSTD_defaultDisallowed; - DEBUGLOG(5, "Building OF table"); - nextEntropy->offcode_repeatMode = prevEntropy->offcode_repeatMode; - Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode, - countWksp, max, mostFrequent, nbSeq, - OffFSELog, prevEntropy->offcodeCTable, - OF_defaultNorm, OF_defaultNormLog, - defaultPolicy, strategy); - assert(!(Offtype < set_compressed && nextEntropy->offcode_repeatMode != FSE_repeat_none)); /* We don't copy tables */ - { size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_OffsetBits, OffFSELog, (symbolEncodingType_e)Offtype, - countWksp, max, ofCodeTable, nbSeq, OF_defaultNorm, OF_defaultNormLog, DefaultMaxOff, - prevEntropy->offcodeCTable, sizeof(prevEntropy->offcodeCTable), - cTableWksp, cTableWkspSize); - FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for Offsets failed"); - if (Offtype == set_compressed) - fseMetadata->lastCountSize = countSize; - op += countSize; - fseMetadata->ofType = (symbolEncodingType_e) Offtype; - } } - /* build CTable for MatchLengths */ - { U32 MLtype; - unsigned max = MaxML; - size_t const mostFrequent = HIST_countFast_wksp(countWksp, &max, mlCodeTable, nbSeq, workspace, wkspSize); /* can't fail */ - DEBUGLOG(5, "Building ML table (remaining space : %i)", (int)(oend-op)); - nextEntropy->matchlength_repeatMode = prevEntropy->matchlength_repeatMode; - MLtype = ZSTD_selectEncodingType(&nextEntropy->matchlength_repeatMode, - countWksp, max, mostFrequent, nbSeq, - MLFSELog, prevEntropy->matchlengthCTable, - ML_defaultNorm, ML_defaultNormLog, - ZSTD_defaultAllowed, strategy); - assert(!(MLtype < set_compressed && nextEntropy->matchlength_repeatMode != FSE_repeat_none)); /* We don't copy tables */ - { size_t const countSize = ZSTD_buildCTable(op, oend - op, CTable_MatchLength, MLFSELog, (symbolEncodingType_e)MLtype, - countWksp, max, mlCodeTable, nbSeq, ML_defaultNorm, ML_defaultNormLog, MaxML, - prevEntropy->matchlengthCTable, sizeof(prevEntropy->matchlengthCTable), - cTableWksp, cTableWkspSize); - FORWARD_IF_ERROR(countSize, "ZSTD_buildCTable for MatchLengths failed"); - if (MLtype == set_compressed) - fseMetadata->lastCountSize = countSize; - op += countSize; - fseMetadata->mlType = (symbolEncodingType_e) MLtype; - } } - assert((size_t) (op-ostart) <= sizeof(fseMetadata->fseTablesBuffer)); - return op-ostart; -} - - -/** ZSTD_buildSuperBlockEntropy() : - * Builds entropy for the super-block. - * @return : 0 on success or error code */ -static size_t -ZSTD_buildSuperBlockEntropy(seqStore_t* seqStorePtr, - const ZSTD_entropyCTables_t* prevEntropy, - ZSTD_entropyCTables_t* nextEntropy, - const ZSTD_CCtx_params* cctxParams, - ZSTD_entropyCTablesMetadata_t* entropyMetadata, - void* workspace, size_t wkspSize) -{ - size_t const litSize = seqStorePtr->lit - seqStorePtr->litStart; - DEBUGLOG(5, "ZSTD_buildSuperBlockEntropy"); - entropyMetadata->hufMetadata.hufDesSize = - ZSTD_buildSuperBlockEntropy_literal(seqStorePtr->litStart, litSize, - &prevEntropy->huf, &nextEntropy->huf, - &entropyMetadata->hufMetadata, - ZSTD_disableLiteralsCompression(cctxParams), - workspace, wkspSize); - FORWARD_IF_ERROR(entropyMetadata->hufMetadata.hufDesSize, "ZSTD_buildSuperBlockEntropy_literal failed"); - entropyMetadata->fseMetadata.fseTablesSize = - ZSTD_buildSuperBlockEntropy_sequences(seqStorePtr, - &prevEntropy->fse, &nextEntropy->fse, - cctxParams, - &entropyMetadata->fseMetadata, - workspace, wkspSize); - FORWARD_IF_ERROR(entropyMetadata->fseMetadata.fseTablesSize, "ZSTD_buildSuperBlockEntropy_sequences failed"); - return 0; -} - -/** ZSTD_compressSubBlock_literal() : - * Compresses literals section for a sub-block. - * When we have to write the Huffman table we will sometimes choose a header - * size larger than necessary. This is because we have to pick the header size - * before we know the table size + compressed size, so we have a bound on the - * table size. If we guessed incorrectly, we fall back to uncompressed literals. - * - * We write the header when writeEntropy=1 and set entropyWrriten=1 when we succeeded - * in writing the header, otherwise it is set to 0. - * - * hufMetadata->hType has literals block type info. - * If it is set_basic, all sub-blocks literals section will be Raw_Literals_Block. - * If it is set_rle, all sub-blocks literals section will be RLE_Literals_Block. - * If it is set_compressed, first sub-block's literals section will be Compressed_Literals_Block - * If it is set_compressed, first sub-block's literals section will be Treeless_Literals_Block - * and the following sub-blocks' literals sections will be Treeless_Literals_Block. - * @return : compressed size of literals section of a sub-block - * Or 0 if it unable to compress. - * Or error code */ -static size_t ZSTD_compressSubBlock_literal(const HUF_CElt* hufTable, - const ZSTD_hufCTablesMetadata_t* hufMetadata, - const BYTE* literals, size_t litSize, - void* dst, size_t dstSize, - const int bmi2, int writeEntropy, int* entropyWritten) -{ - size_t const header = writeEntropy ? 200 : 0; - size_t const lhSize = 3 + (litSize >= (1 KB - header)) + (litSize >= (16 KB - header)); - BYTE* const ostart = (BYTE*)dst; - BYTE* const oend = ostart + dstSize; - BYTE* op = ostart + lhSize; - U32 const singleStream = lhSize == 3; - symbolEncodingType_e hType = writeEntropy ? hufMetadata->hType : set_repeat; - size_t cLitSize = 0; - - (void)bmi2; /* TODO bmi2... */ - - DEBUGLOG(5, "ZSTD_compressSubBlock_literal (litSize=%zu, lhSize=%zu, writeEntropy=%d)", litSize, lhSize, writeEntropy); - - *entropyWritten = 0; - if (litSize == 0 || hufMetadata->hType == set_basic) { - DEBUGLOG(5, "ZSTD_compressSubBlock_literal using raw literal"); - return ZSTD_noCompressLiterals(dst, dstSize, literals, litSize); - } else if (hufMetadata->hType == set_rle) { - DEBUGLOG(5, "ZSTD_compressSubBlock_literal using rle literal"); - return ZSTD_compressRleLiteralsBlock(dst, dstSize, literals, litSize); - } - - assert(litSize > 0); - assert(hufMetadata->hType == set_compressed || hufMetadata->hType == set_repeat); - - if (writeEntropy && hufMetadata->hType == set_compressed) { - memcpy(op, hufMetadata->hufDesBuffer, hufMetadata->hufDesSize); - op += hufMetadata->hufDesSize; - cLitSize += hufMetadata->hufDesSize; - DEBUGLOG(5, "ZSTD_compressSubBlock_literal (hSize=%zu)", hufMetadata->hufDesSize); - } - - /* TODO bmi2 */ - { const size_t cSize = singleStream ? HUF_compress1X_usingCTable(op, oend-op, literals, litSize, hufTable) - : HUF_compress4X_usingCTable(op, oend-op, literals, litSize, hufTable); - op += cSize; - cLitSize += cSize; - if (cSize == 0 || ERR_isError(cSize)) { - DEBUGLOG(5, "Failed to write entropy tables %s", ZSTD_getErrorName(cSize)); - return 0; - } - /* If we expand and we aren't writing a header then emit uncompressed */ - if (!writeEntropy && cLitSize >= litSize) { - DEBUGLOG(5, "ZSTD_compressSubBlock_literal using raw literal because uncompressible"); - return ZSTD_noCompressLiterals(dst, dstSize, literals, litSize); - } - /* If we are writing headers then allow expansion that doesn't change our header size. */ - if (lhSize < (size_t)(3 + (cLitSize >= 1 KB) + (cLitSize >= 16 KB))) { - assert(cLitSize > litSize); - DEBUGLOG(5, "Literals expanded beyond allowed header size"); - return ZSTD_noCompressLiterals(dst, dstSize, literals, litSize); - } - DEBUGLOG(5, "ZSTD_compressSubBlock_literal (cSize=%zu)", cSize); - } - - /* Build header */ - switch(lhSize) - { - case 3: /* 2 - 2 - 10 - 10 */ - { U32 const lhc = hType + ((!singleStream) << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<14); - MEM_writeLE24(ostart, lhc); - break; - } - case 4: /* 2 - 2 - 14 - 14 */ - { U32 const lhc = hType + (2 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<18); - MEM_writeLE32(ostart, lhc); - break; - } - case 5: /* 2 - 2 - 18 - 18 */ - { U32 const lhc = hType + (3 << 2) + ((U32)litSize<<4) + ((U32)cLitSize<<22); - MEM_writeLE32(ostart, lhc); - ostart[4] = (BYTE)(cLitSize >> 10); - break; - } - default: /* not possible : lhSize is {3,4,5} */ - assert(0); - } - *entropyWritten = 1; - DEBUGLOG(5, "Compressed literals: %u -> %u", (U32)litSize, (U32)(op-ostart)); - return op-ostart; -} - -static size_t ZSTD_seqDecompressedSize(seqStore_t const* seqStore, const seqDef* sequences, size_t nbSeq, size_t litSize, int lastSequence) { - const seqDef* const sstart = sequences; - const seqDef* const send = sequences + nbSeq; - const seqDef* sp = sstart; - size_t matchLengthSum = 0; - size_t litLengthSum = 0; - while (send-sp > 0) { - ZSTD_sequenceLength const seqLen = ZSTD_getSequenceLength(seqStore, sp); - litLengthSum += seqLen.litLength; - matchLengthSum += seqLen.matchLength; - sp++; - } - assert(litLengthSum <= litSize); - if (!lastSequence) { - assert(litLengthSum == litSize); - } - return matchLengthSum + litSize; -} - -/** ZSTD_compressSubBlock_sequences() : - * Compresses sequences section for a sub-block. - * fseMetadata->llType, fseMetadata->ofType, and fseMetadata->mlType have - * symbol compression modes for the super-block. - * The first successfully compressed block will have these in its header. - * We set entropyWritten=1 when we succeed in compressing the sequences. - * The following sub-blocks will always have repeat mode. - * @return : compressed size of sequences section of a sub-block - * Or 0 if it is unable to compress - * Or error code. */ -static size_t ZSTD_compressSubBlock_sequences(const ZSTD_fseCTables_t* fseTables, - const ZSTD_fseCTablesMetadata_t* fseMetadata, - const seqDef* sequences, size_t nbSeq, - const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, - const ZSTD_CCtx_params* cctxParams, - void* dst, size_t dstCapacity, - const int bmi2, int writeEntropy, int* entropyWritten) -{ - const int longOffsets = cctxParams->cParams.windowLog > STREAM_ACCUMULATOR_MIN; - BYTE* const ostart = (BYTE*)dst; - BYTE* const oend = ostart + dstCapacity; - BYTE* op = ostart; - BYTE* seqHead; - - DEBUGLOG(5, "ZSTD_compressSubBlock_sequences (nbSeq=%zu, writeEntropy=%d, longOffsets=%d)", nbSeq, writeEntropy, longOffsets); - - *entropyWritten = 0; - /* Sequences Header */ - RETURN_ERROR_IF((oend-op) < 3 /*max nbSeq Size*/ + 1 /*seqHead*/, - dstSize_tooSmall, ""); - if (nbSeq < 0x7F) - *op++ = (BYTE)nbSeq; - else if (nbSeq < LONGNBSEQ) - op[0] = (BYTE)((nbSeq>>8) + 0x80), op[1] = (BYTE)nbSeq, op+=2; - else - op[0]=0xFF, MEM_writeLE16(op+1, (U16)(nbSeq - LONGNBSEQ)), op+=3; - if (nbSeq==0) { - return op - ostart; - } - - /* seqHead : flags for FSE encoding type */ - seqHead = op++; - - DEBUGLOG(5, "ZSTD_compressSubBlock_sequences (seqHeadSize=%u)", (unsigned)(op-ostart)); - - if (writeEntropy) { - const U32 LLtype = fseMetadata->llType; - const U32 Offtype = fseMetadata->ofType; - const U32 MLtype = fseMetadata->mlType; - DEBUGLOG(5, "ZSTD_compressSubBlock_sequences (fseTablesSize=%zu)", fseMetadata->fseTablesSize); - *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2)); - memcpy(op, fseMetadata->fseTablesBuffer, fseMetadata->fseTablesSize); - op += fseMetadata->fseTablesSize; - } else { - const U32 repeat = set_repeat; - *seqHead = (BYTE)((repeat<<6) + (repeat<<4) + (repeat<<2)); - } - - { size_t const bitstreamSize = ZSTD_encodeSequences( - op, oend - op, - fseTables->matchlengthCTable, mlCode, - fseTables->offcodeCTable, ofCode, - fseTables->litlengthCTable, llCode, - sequences, nbSeq, - longOffsets, bmi2); - FORWARD_IF_ERROR(bitstreamSize, "ZSTD_encodeSequences failed"); - op += bitstreamSize; - /* zstd versions <= 1.3.4 mistakenly report corruption when - * FSE_readNCount() receives a buffer < 4 bytes. - * Fixed by https://github.com/facebook/zstd/pull/1146. - * This can happen when the last set_compressed table present is 2 - * bytes and the bitstream is only one byte. - * In this exceedingly rare case, we will simply emit an uncompressed - * block, since it isn't worth optimizing. - */ -#ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION - if (writeEntropy && fseMetadata->lastCountSize && fseMetadata->lastCountSize + bitstreamSize < 4) { - /* NCountSize >= 2 && bitstreamSize > 0 ==> lastCountSize == 3 */ - assert(fseMetadata->lastCountSize + bitstreamSize == 3); - DEBUGLOG(5, "Avoiding bug in zstd decoder in versions <= 1.3.4 by " - "emitting an uncompressed block."); - return 0; - } -#endif - DEBUGLOG(5, "ZSTD_compressSubBlock_sequences (bitstreamSize=%zu)", bitstreamSize); - } - - /* zstd versions <= 1.4.0 mistakenly report error when - * sequences section body size is less than 3 bytes. - * Fixed by https://github.com/facebook/zstd/pull/1664. - * This can happen when the previous sequences section block is compressed - * with rle mode and the current block's sequences section is compressed - * with repeat mode where sequences section body size can be 1 byte. - */ -#ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION - if (op-seqHead < 4) { - DEBUGLOG(5, "Avoiding bug in zstd decoder in versions <= 1.4.0 by emitting " - "an uncompressed block when sequences are < 4 bytes"); - return 0; - } -#endif - - *entropyWritten = 1; - return op - ostart; -} - -/** ZSTD_compressSubBlock() : - * Compresses a single sub-block. - * @return : compressed size of the sub-block - * Or 0 if it failed to compress. */ -static size_t ZSTD_compressSubBlock(const ZSTD_entropyCTables_t* entropy, - const ZSTD_entropyCTablesMetadata_t* entropyMetadata, - const seqDef* sequences, size_t nbSeq, - const BYTE* literals, size_t litSize, - const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, - const ZSTD_CCtx_params* cctxParams, - void* dst, size_t dstCapacity, - const int bmi2, - int writeLitEntropy, int writeSeqEntropy, - int* litEntropyWritten, int* seqEntropyWritten, - U32 lastBlock) -{ - BYTE* const ostart = (BYTE*)dst; - BYTE* const oend = ostart + dstCapacity; - BYTE* op = ostart + ZSTD_blockHeaderSize; - DEBUGLOG(5, "ZSTD_compressSubBlock (litSize=%zu, nbSeq=%zu, writeLitEntropy=%d, writeSeqEntropy=%d, lastBlock=%d)", - litSize, nbSeq, writeLitEntropy, writeSeqEntropy, lastBlock); - { size_t cLitSize = ZSTD_compressSubBlock_literal((const HUF_CElt*)entropy->huf.CTable, - &entropyMetadata->hufMetadata, literals, litSize, - op, oend-op, bmi2, writeLitEntropy, litEntropyWritten); - FORWARD_IF_ERROR(cLitSize, "ZSTD_compressSubBlock_literal failed"); - if (cLitSize == 0) return 0; - op += cLitSize; - } - { size_t cSeqSize = ZSTD_compressSubBlock_sequences(&entropy->fse, - &entropyMetadata->fseMetadata, - sequences, nbSeq, - llCode, mlCode, ofCode, - cctxParams, - op, oend-op, - bmi2, writeSeqEntropy, seqEntropyWritten); - FORWARD_IF_ERROR(cSeqSize, "ZSTD_compressSubBlock_sequences failed"); - if (cSeqSize == 0) return 0; - op += cSeqSize; - } - /* Write block header */ - { size_t cSize = (op-ostart)-ZSTD_blockHeaderSize; - U32 const cBlockHeader24 = lastBlock + (((U32)bt_compressed)<<1) + (U32)(cSize << 3); - MEM_writeLE24(ostart, cBlockHeader24); - } - return op-ostart; -} - -static size_t ZSTD_estimateSubBlockSize_literal(const BYTE* literals, size_t litSize, - const ZSTD_hufCTables_t* huf, - const ZSTD_hufCTablesMetadata_t* hufMetadata, - void* workspace, size_t wkspSize, - int writeEntropy) -{ - unsigned* const countWksp = (unsigned*)workspace; - unsigned maxSymbolValue = 255; - size_t literalSectionHeaderSize = 3; /* Use hard coded size of 3 bytes */ - - if (hufMetadata->hType == set_basic) return litSize; - else if (hufMetadata->hType == set_rle) return 1; - else if (hufMetadata->hType == set_compressed || hufMetadata->hType == set_repeat) { - size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)literals, litSize, workspace, wkspSize); - if (ZSTD_isError(largest)) return litSize; - { size_t cLitSizeEstimate = HUF_estimateCompressedSize((const HUF_CElt*)huf->CTable, countWksp, maxSymbolValue); - if (writeEntropy) cLitSizeEstimate += hufMetadata->hufDesSize; - return cLitSizeEstimate + literalSectionHeaderSize; - } } - assert(0); /* impossible */ - return 0; -} - -static size_t ZSTD_estimateSubBlockSize_symbolType(symbolEncodingType_e type, - const BYTE* codeTable, unsigned maxCode, - size_t nbSeq, const FSE_CTable* fseCTable, - const U32* additionalBits, - short const* defaultNorm, U32 defaultNormLog, - void* workspace, size_t wkspSize) -{ - unsigned* const countWksp = (unsigned*)workspace; - const BYTE* ctp = codeTable; - const BYTE* const ctStart = ctp; - const BYTE* const ctEnd = ctStart + nbSeq; - size_t cSymbolTypeSizeEstimateInBits = 0; - unsigned max = maxCode; - - HIST_countFast_wksp(countWksp, &max, codeTable, nbSeq, workspace, wkspSize); /* can't fail */ - if (type == set_basic) { - cSymbolTypeSizeEstimateInBits = ZSTD_crossEntropyCost(defaultNorm, defaultNormLog, countWksp, max); - } else if (type == set_rle) { - cSymbolTypeSizeEstimateInBits = 0; - } else if (type == set_compressed || type == set_repeat) { - cSymbolTypeSizeEstimateInBits = ZSTD_fseBitCost(fseCTable, countWksp, max); - } - if (ZSTD_isError(cSymbolTypeSizeEstimateInBits)) return nbSeq * 10; - while (ctp < ctEnd) { - if (additionalBits) cSymbolTypeSizeEstimateInBits += additionalBits[*ctp]; - else cSymbolTypeSizeEstimateInBits += *ctp; /* for offset, offset code is also the number of additional bits */ - ctp++; - } - return cSymbolTypeSizeEstimateInBits / 8; -} - -static size_t ZSTD_estimateSubBlockSize_sequences(const BYTE* ofCodeTable, - const BYTE* llCodeTable, - const BYTE* mlCodeTable, - size_t nbSeq, - const ZSTD_fseCTables_t* fseTables, - const ZSTD_fseCTablesMetadata_t* fseMetadata, - void* workspace, size_t wkspSize, - int writeEntropy) -{ - size_t sequencesSectionHeaderSize = 3; /* Use hard coded size of 3 bytes */ - size_t cSeqSizeEstimate = 0; - cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->ofType, ofCodeTable, MaxOff, - nbSeq, fseTables->offcodeCTable, NULL, - OF_defaultNorm, OF_defaultNormLog, - workspace, wkspSize); - cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->llType, llCodeTable, MaxLL, - nbSeq, fseTables->litlengthCTable, LL_bits, - LL_defaultNorm, LL_defaultNormLog, - workspace, wkspSize); - cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->mlType, mlCodeTable, MaxML, - nbSeq, fseTables->matchlengthCTable, ML_bits, - ML_defaultNorm, ML_defaultNormLog, - workspace, wkspSize); - if (writeEntropy) cSeqSizeEstimate += fseMetadata->fseTablesSize; - return cSeqSizeEstimate + sequencesSectionHeaderSize; -} - -static size_t ZSTD_estimateSubBlockSize(const BYTE* literals, size_t litSize, - const BYTE* ofCodeTable, - const BYTE* llCodeTable, - const BYTE* mlCodeTable, - size_t nbSeq, - const ZSTD_entropyCTables_t* entropy, - const ZSTD_entropyCTablesMetadata_t* entropyMetadata, - void* workspace, size_t wkspSize, - int writeLitEntropy, int writeSeqEntropy) { - size_t cSizeEstimate = 0; - cSizeEstimate += ZSTD_estimateSubBlockSize_literal(literals, litSize, - &entropy->huf, &entropyMetadata->hufMetadata, - workspace, wkspSize, writeLitEntropy); - cSizeEstimate += ZSTD_estimateSubBlockSize_sequences(ofCodeTable, llCodeTable, mlCodeTable, - nbSeq, &entropy->fse, &entropyMetadata->fseMetadata, - workspace, wkspSize, writeSeqEntropy); - return cSizeEstimate + ZSTD_blockHeaderSize; -} - -static int ZSTD_needSequenceEntropyTables(ZSTD_fseCTablesMetadata_t const* fseMetadata) -{ - if (fseMetadata->llType == set_compressed || fseMetadata->llType == set_rle) - return 1; - if (fseMetadata->mlType == set_compressed || fseMetadata->mlType == set_rle) - return 1; - if (fseMetadata->ofType == set_compressed || fseMetadata->ofType == set_rle) - return 1; - return 0; -} - -/** ZSTD_compressSubBlock_multi() : - * Breaks super-block into multiple sub-blocks and compresses them. - * Entropy will be written to the first block. - * The following blocks will use repeat mode to compress. - * All sub-blocks are compressed blocks (no raw or rle blocks). - * @return : compressed size of the super block (which is multiple ZSTD blocks) - * Or 0 if it failed to compress. */ -static size_t ZSTD_compressSubBlock_multi(const seqStore_t* seqStorePtr, - const ZSTD_compressedBlockState_t* prevCBlock, - ZSTD_compressedBlockState_t* nextCBlock, - const ZSTD_entropyCTablesMetadata_t* entropyMetadata, - const ZSTD_CCtx_params* cctxParams, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const int bmi2, U32 lastBlock, - void* workspace, size_t wkspSize) -{ - const seqDef* const sstart = seqStorePtr->sequencesStart; - const seqDef* const send = seqStorePtr->sequences; - const seqDef* sp = sstart; - const BYTE* const lstart = seqStorePtr->litStart; - const BYTE* const lend = seqStorePtr->lit; - const BYTE* lp = lstart; - BYTE const* ip = (BYTE const*)src; - BYTE const* const iend = ip + srcSize; - BYTE* const ostart = (BYTE*)dst; - BYTE* const oend = ostart + dstCapacity; - BYTE* op = ostart; - const BYTE* llCodePtr = seqStorePtr->llCode; - const BYTE* mlCodePtr = seqStorePtr->mlCode; - const BYTE* ofCodePtr = seqStorePtr->ofCode; - size_t targetCBlockSize = cctxParams->targetCBlockSize; - size_t litSize, seqCount; - int writeLitEntropy = entropyMetadata->hufMetadata.hType == set_compressed; - int writeSeqEntropy = 1; - int lastSequence = 0; - - DEBUGLOG(5, "ZSTD_compressSubBlock_multi (litSize=%u, nbSeq=%u)", - (unsigned)(lend-lp), (unsigned)(send-sstart)); - - litSize = 0; - seqCount = 0; - do { - size_t cBlockSizeEstimate = 0; - if (sstart == send) { - lastSequence = 1; - } else { - const seqDef* const sequence = sp + seqCount; - lastSequence = sequence == send - 1; - litSize += ZSTD_getSequenceLength(seqStorePtr, sequence).litLength; - seqCount++; - } - if (lastSequence) { - assert(lp <= lend); - assert(litSize <= (size_t)(lend - lp)); - litSize = (size_t)(lend - lp); - } - /* I think there is an optimization opportunity here. - * Calling ZSTD_estimateSubBlockSize for every sequence can be wasteful - * since it recalculates estimate from scratch. - * For example, it would recount literal distribution and symbol codes everytime. - */ - cBlockSizeEstimate = ZSTD_estimateSubBlockSize(lp, litSize, ofCodePtr, llCodePtr, mlCodePtr, seqCount, - &nextCBlock->entropy, entropyMetadata, - workspace, wkspSize, writeLitEntropy, writeSeqEntropy); - if (cBlockSizeEstimate > targetCBlockSize || lastSequence) { - int litEntropyWritten = 0; - int seqEntropyWritten = 0; - const size_t decompressedSize = ZSTD_seqDecompressedSize(seqStorePtr, sp, seqCount, litSize, lastSequence); - const size_t cSize = ZSTD_compressSubBlock(&nextCBlock->entropy, entropyMetadata, - sp, seqCount, - lp, litSize, - llCodePtr, mlCodePtr, ofCodePtr, - cctxParams, - op, oend-op, - bmi2, writeLitEntropy, writeSeqEntropy, - &litEntropyWritten, &seqEntropyWritten, - lastBlock && lastSequence); - FORWARD_IF_ERROR(cSize, "ZSTD_compressSubBlock failed"); - if (cSize > 0 && cSize < decompressedSize) { - DEBUGLOG(5, "Committed the sub-block"); - assert(ip + decompressedSize <= iend); - ip += decompressedSize; - sp += seqCount; - lp += litSize; - op += cSize; - llCodePtr += seqCount; - mlCodePtr += seqCount; - ofCodePtr += seqCount; - litSize = 0; - seqCount = 0; - /* Entropy only needs to be written once */ - if (litEntropyWritten) { - writeLitEntropy = 0; - } - if (seqEntropyWritten) { - writeSeqEntropy = 0; - } - } - } - } while (!lastSequence); - if (writeLitEntropy) { - DEBUGLOG(5, "ZSTD_compressSubBlock_multi has literal entropy tables unwritten"); - memcpy(&nextCBlock->entropy.huf, &prevCBlock->entropy.huf, sizeof(prevCBlock->entropy.huf)); - } - if (writeSeqEntropy && ZSTD_needSequenceEntropyTables(&entropyMetadata->fseMetadata)) { - /* If we haven't written our entropy tables, then we've violated our contract and - * must emit an uncompressed block. - */ - DEBUGLOG(5, "ZSTD_compressSubBlock_multi has sequence entropy tables unwritten"); - return 0; - } - if (ip < iend) { - size_t const cSize = ZSTD_noCompressBlock(op, oend - op, ip, iend - ip, lastBlock); - DEBUGLOG(5, "ZSTD_compressSubBlock_multi last sub-block uncompressed, %zu bytes", (size_t)(iend - ip)); - FORWARD_IF_ERROR(cSize, "ZSTD_noCompressBlock failed"); - assert(cSize != 0); - op += cSize; - /* We have to regenerate the repcodes because we've skipped some sequences */ - if (sp < send) { - seqDef const* seq; - repcodes_t rep; - memcpy(&rep, prevCBlock->rep, sizeof(rep)); - for (seq = sstart; seq < sp; ++seq) { - rep = ZSTD_updateRep(rep.rep, seq->offset - 1, ZSTD_getSequenceLength(seqStorePtr, seq).litLength == 0); - } - memcpy(nextCBlock->rep, &rep, sizeof(rep)); - } - } - DEBUGLOG(5, "ZSTD_compressSubBlock_multi compressed"); - return op-ostart; -} - -size_t ZSTD_compressSuperBlock(ZSTD_CCtx* zc, - void* dst, size_t dstCapacity, - void const* src, size_t srcSize, - unsigned lastBlock) { - ZSTD_entropyCTablesMetadata_t entropyMetadata; - - FORWARD_IF_ERROR(ZSTD_buildSuperBlockEntropy(&zc->seqStore, - &zc->blockState.prevCBlock->entropy, - &zc->blockState.nextCBlock->entropy, - &zc->appliedParams, - &entropyMetadata, - zc->entropyWorkspace, HUF_WORKSPACE_SIZE /* statically allocated in resetCCtx */), ""); - - return ZSTD_compressSubBlock_multi(&zc->seqStore, - zc->blockState.prevCBlock, - zc->blockState.nextCBlock, - &entropyMetadata, - &zc->appliedParams, - dst, dstCapacity, - src, srcSize, - zc->bmi2, lastBlock, - zc->entropyWorkspace, HUF_WORKSPACE_SIZE /* statically allocated in resetCCtx */); -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_compress_superblock.h b/lib/SZ3/tools/zstd/compress/zstd_compress_superblock.h deleted file mode 100644 index 07f4cb1d..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_compress_superblock.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_COMPRESS_ADVANCED_H -#define ZSTD_COMPRESS_ADVANCED_H - -/*-************************************* -* Dependencies -***************************************/ - -#include "../zstd.h" /* ZSTD_CCtx */ - -/*-************************************* -* Target Compressed Block Size -***************************************/ - -/* ZSTD_compressSuperBlock() : - * Used to compress a super block when targetCBlockSize is being used. - * The given block will be compressed into multiple sub blocks that are around targetCBlockSize. */ -size_t ZSTD_compressSuperBlock(ZSTD_CCtx* zc, - void* dst, size_t dstCapacity, - void const* src, size_t srcSize, - unsigned lastBlock); - -#endif /* ZSTD_COMPRESS_ADVANCED_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_cwksp.h b/lib/SZ3/tools/zstd/compress/zstd_cwksp.h deleted file mode 100644 index a25c9263..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_cwksp.h +++ /dev/null @@ -1,525 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_CWKSP_H -#define ZSTD_CWKSP_H - -/*-************************************* -* Dependencies -***************************************/ -#include "../common/zstd_internal.h" - -#if defined (__cplusplus) -extern "C" { -#endif - -/*-************************************* -* Constants -***************************************/ - -/* Since the workspace is effectively its own little malloc implementation / - * arena, when we run under ASAN, we should similarly insert redzones between - * each internal element of the workspace, so ASAN will catch overruns that - * reach outside an object but that stay inside the workspace. - * - * This defines the size of that redzone. - */ -#ifndef ZSTD_CWKSP_ASAN_REDZONE_SIZE -#define ZSTD_CWKSP_ASAN_REDZONE_SIZE 128 -#endif - -/*-************************************* -* Structures -***************************************/ -typedef enum { - ZSTD_cwksp_alloc_objects, - ZSTD_cwksp_alloc_buffers, - ZSTD_cwksp_alloc_aligned -} ZSTD_cwksp_alloc_phase_e; - -/** - * Zstd fits all its internal datastructures into a single continuous buffer, - * so that it only needs to perform a single OS allocation (or so that a buffer - * can be provided to it and it can perform no allocations at all). This buffer - * is called the workspace. - * - * Several optimizations complicate that process of allocating memory ranges - * from this workspace for each internal datastructure: - * - * - These different internal datastructures have different setup requirements: - * - * - The static objects need to be cleared once and can then be trivially - * reused for each compression. - * - * - Various buffers don't need to be initialized at all--they are always - * written into before they're read. - * - * - The matchstate tables have a unique requirement that they don't need - * their memory to be totally cleared, but they do need the memory to have - * some bound, i.e., a guarantee that all values in the memory they've been - * allocated is less than some maximum value (which is the starting value - * for the indices that they will then use for compression). When this - * guarantee is provided to them, they can use the memory without any setup - * work. When it can't, they have to clear the area. - * - * - These buffers also have different alignment requirements. - * - * - We would like to reuse the objects in the workspace for multiple - * compressions without having to perform any expensive reallocation or - * reinitialization work. - * - * - We would like to be able to efficiently reuse the workspace across - * multiple compressions **even when the compression parameters change** and - * we need to resize some of the objects (where possible). - * - * To attempt to manage this buffer, given these constraints, the ZSTD_cwksp - * abstraction was created. It works as follows: - * - * Workspace Layout: - * - * [ ... workspace ... ] - * [objects][tables ... ->] free space [<- ... aligned][<- ... buffers] - * - * The various objects that live in the workspace are divided into the - * following categories, and are allocated separately: - * - * - Static objects: this is optionally the enclosing ZSTD_CCtx or ZSTD_CDict, - * so that literally everything fits in a single buffer. Note: if present, - * this must be the first object in the workspace, since ZSTD_free{CCtx, - * CDict}() rely on a pointer comparison to see whether one or two frees are - * required. - * - * - Fixed size objects: these are fixed-size, fixed-count objects that are - * nonetheless "dynamically" allocated in the workspace so that we can - * control how they're initialized separately from the broader ZSTD_CCtx. - * Examples: - * - Entropy Workspace - * - 2 x ZSTD_compressedBlockState_t - * - CDict dictionary contents - * - * - Tables: these are any of several different datastructures (hash tables, - * chain tables, binary trees) that all respect a common format: they are - * uint32_t arrays, all of whose values are between 0 and (nextSrc - base). - * Their sizes depend on the cparams. - * - * - Aligned: these buffers are used for various purposes that require 4 byte - * alignment, but don't require any initialization before they're used. - * - * - Buffers: these buffers are used for various purposes that don't require - * any alignment or initialization before they're used. This means they can - * be moved around at no cost for a new compression. - * - * Allocating Memory: - * - * The various types of objects must be allocated in order, so they can be - * correctly packed into the workspace buffer. That order is: - * - * 1. Objects - * 2. Buffers - * 3. Aligned - * 4. Tables - * - * Attempts to reserve objects of different types out of order will fail. - */ -typedef struct { - void* workspace; - void* workspaceEnd; - - void* objectEnd; - void* tableEnd; - void* tableValidEnd; - void* allocStart; - - int allocFailed; - int workspaceOversizedDuration; - ZSTD_cwksp_alloc_phase_e phase; -} ZSTD_cwksp; - -/*-************************************* -* Functions -***************************************/ - -MEM_STATIC size_t ZSTD_cwksp_available_space(ZSTD_cwksp* ws); - -MEM_STATIC void ZSTD_cwksp_assert_internal_consistency(ZSTD_cwksp* ws) { - (void)ws; - assert(ws->workspace <= ws->objectEnd); - assert(ws->objectEnd <= ws->tableEnd); - assert(ws->objectEnd <= ws->tableValidEnd); - assert(ws->tableEnd <= ws->allocStart); - assert(ws->tableValidEnd <= ws->allocStart); - assert(ws->allocStart <= ws->workspaceEnd); -} - -/** - * Align must be a power of 2. - */ -MEM_STATIC size_t ZSTD_cwksp_align(size_t size, size_t const align) { - size_t const mask = align - 1; - assert((align & mask) == 0); - return (size + mask) & ~mask; -} - -/** - * Use this to determine how much space in the workspace we will consume to - * allocate this object. (Normally it should be exactly the size of the object, - * but under special conditions, like ASAN, where we pad each object, it might - * be larger.) - * - * Since tables aren't currently redzoned, you don't need to call through this - * to figure out how much space you need for the matchState tables. Everything - * else is though. - */ -MEM_STATIC size_t ZSTD_cwksp_alloc_size(size_t size) { -#if defined (ADDRESS_SANITIZER) && !defined (ZSTD_ASAN_DONT_POISON_WORKSPACE) - return size + 2 * ZSTD_CWKSP_ASAN_REDZONE_SIZE; -#else - return size; -#endif -} - -MEM_STATIC void ZSTD_cwksp_internal_advance_phase( - ZSTD_cwksp* ws, ZSTD_cwksp_alloc_phase_e phase) { - assert(phase >= ws->phase); - if (phase > ws->phase) { - if (ws->phase < ZSTD_cwksp_alloc_buffers && - phase >= ZSTD_cwksp_alloc_buffers) { - ws->tableValidEnd = ws->objectEnd; - } - if (ws->phase < ZSTD_cwksp_alloc_aligned && - phase >= ZSTD_cwksp_alloc_aligned) { - /* If unaligned allocations down from a too-large top have left us - * unaligned, we need to realign our alloc ptr. Technically, this - * can consume space that is unaccounted for in the neededSpace - * calculation. However, I believe this can only happen when the - * workspace is too large, and specifically when it is too large - * by a larger margin than the space that will be consumed. */ - /* TODO: cleaner, compiler warning friendly way to do this??? */ - ws->allocStart = (BYTE*)ws->allocStart - ((size_t)ws->allocStart & (sizeof(U32)-1)); - if (ws->allocStart < ws->tableValidEnd) { - ws->tableValidEnd = ws->allocStart; - } - } - ws->phase = phase; - } -} - -/** - * Returns whether this object/buffer/etc was allocated in this workspace. - */ -MEM_STATIC int ZSTD_cwksp_owns_buffer(const ZSTD_cwksp* ws, const void* ptr) { - return (ptr != NULL) && (ws->workspace <= ptr) && (ptr <= ws->workspaceEnd); -} - -/** - * Internal function. Do not use directly. - */ -MEM_STATIC void* ZSTD_cwksp_reserve_internal( - ZSTD_cwksp* ws, size_t bytes, ZSTD_cwksp_alloc_phase_e phase) { - void* alloc; - void* bottom = ws->tableEnd; - ZSTD_cwksp_internal_advance_phase(ws, phase); - alloc = (BYTE *)ws->allocStart - bytes; - -#if defined (ADDRESS_SANITIZER) && !defined (ZSTD_ASAN_DONT_POISON_WORKSPACE) - /* over-reserve space */ - alloc = (BYTE *)alloc - 2 * ZSTD_CWKSP_ASAN_REDZONE_SIZE; -#endif - - DEBUGLOG(5, "cwksp: reserving %p %zd bytes, %zd bytes remaining", - alloc, bytes, ZSTD_cwksp_available_space(ws) - bytes); - ZSTD_cwksp_assert_internal_consistency(ws); - assert(alloc >= bottom); - if (alloc < bottom) { - DEBUGLOG(4, "cwksp: alloc failed!"); - ws->allocFailed = 1; - return NULL; - } - if (alloc < ws->tableValidEnd) { - ws->tableValidEnd = alloc; - } - ws->allocStart = alloc; - -#if defined (ADDRESS_SANITIZER) && !defined (ZSTD_ASAN_DONT_POISON_WORKSPACE) - /* Move alloc so there's ZSTD_CWKSP_ASAN_REDZONE_SIZE unused space on - * either size. */ - alloc = (BYTE *)alloc + ZSTD_CWKSP_ASAN_REDZONE_SIZE; - __asan_unpoison_memory_region(alloc, bytes); -#endif - - return alloc; -} - -/** - * Reserves and returns unaligned memory. - */ -MEM_STATIC BYTE* ZSTD_cwksp_reserve_buffer(ZSTD_cwksp* ws, size_t bytes) { - return (BYTE*)ZSTD_cwksp_reserve_internal(ws, bytes, ZSTD_cwksp_alloc_buffers); -} - -/** - * Reserves and returns memory sized on and aligned on sizeof(unsigned). - */ -MEM_STATIC void* ZSTD_cwksp_reserve_aligned(ZSTD_cwksp* ws, size_t bytes) { - assert((bytes & (sizeof(U32)-1)) == 0); - return ZSTD_cwksp_reserve_internal(ws, ZSTD_cwksp_align(bytes, sizeof(U32)), ZSTD_cwksp_alloc_aligned); -} - -/** - * Aligned on sizeof(unsigned). These buffers have the special property that - * their values remain constrained, allowing us to re-use them without - * memset()-ing them. - */ -MEM_STATIC void* ZSTD_cwksp_reserve_table(ZSTD_cwksp* ws, size_t bytes) { - const ZSTD_cwksp_alloc_phase_e phase = ZSTD_cwksp_alloc_aligned; - void* alloc = ws->tableEnd; - void* end = (BYTE *)alloc + bytes; - void* top = ws->allocStart; - - DEBUGLOG(5, "cwksp: reserving %p table %zd bytes, %zd bytes remaining", - alloc, bytes, ZSTD_cwksp_available_space(ws) - bytes); - assert((bytes & (sizeof(U32)-1)) == 0); - ZSTD_cwksp_internal_advance_phase(ws, phase); - ZSTD_cwksp_assert_internal_consistency(ws); - assert(end <= top); - if (end > top) { - DEBUGLOG(4, "cwksp: table alloc failed!"); - ws->allocFailed = 1; - return NULL; - } - ws->tableEnd = end; - -#if defined (ADDRESS_SANITIZER) && !defined (ZSTD_ASAN_DONT_POISON_WORKSPACE) - __asan_unpoison_memory_region(alloc, bytes); -#endif - - return alloc; -} - -/** - * Aligned on sizeof(void*). - */ -MEM_STATIC void* ZSTD_cwksp_reserve_object(ZSTD_cwksp* ws, size_t bytes) { - size_t roundedBytes = ZSTD_cwksp_align(bytes, sizeof(void*)); - void* alloc = ws->objectEnd; - void* end = (BYTE*)alloc + roundedBytes; - -#if defined (ADDRESS_SANITIZER) && !defined (ZSTD_ASAN_DONT_POISON_WORKSPACE) - /* over-reserve space */ - end = (BYTE *)end + 2 * ZSTD_CWKSP_ASAN_REDZONE_SIZE; -#endif - - DEBUGLOG(5, - "cwksp: reserving %p object %zd bytes (rounded to %zd), %zd bytes remaining", - alloc, bytes, roundedBytes, ZSTD_cwksp_available_space(ws) - roundedBytes); - assert(((size_t)alloc & (sizeof(void*)-1)) == 0); - assert((bytes & (sizeof(void*)-1)) == 0); - ZSTD_cwksp_assert_internal_consistency(ws); - /* we must be in the first phase, no advance is possible */ - if (ws->phase != ZSTD_cwksp_alloc_objects || end > ws->workspaceEnd) { - DEBUGLOG(4, "cwksp: object alloc failed!"); - ws->allocFailed = 1; - return NULL; - } - ws->objectEnd = end; - ws->tableEnd = end; - ws->tableValidEnd = end; - -#if defined (ADDRESS_SANITIZER) && !defined (ZSTD_ASAN_DONT_POISON_WORKSPACE) - /* Move alloc so there's ZSTD_CWKSP_ASAN_REDZONE_SIZE unused space on - * either size. */ - alloc = (BYTE *)alloc + ZSTD_CWKSP_ASAN_REDZONE_SIZE; - __asan_unpoison_memory_region(alloc, bytes); -#endif - - return alloc; -} - -MEM_STATIC void ZSTD_cwksp_mark_tables_dirty(ZSTD_cwksp* ws) { - DEBUGLOG(4, "cwksp: ZSTD_cwksp_mark_tables_dirty"); - -#if defined (MEMORY_SANITIZER) && !defined (ZSTD_MSAN_DONT_POISON_WORKSPACE) - /* To validate that the table re-use logic is sound, and that we don't - * access table space that we haven't cleaned, we re-"poison" the table - * space every time we mark it dirty. */ - { - size_t size = (BYTE*)ws->tableValidEnd - (BYTE*)ws->objectEnd; - assert(__msan_test_shadow(ws->objectEnd, size) == -1); - __msan_poison(ws->objectEnd, size); - } -#endif - - assert(ws->tableValidEnd >= ws->objectEnd); - assert(ws->tableValidEnd <= ws->allocStart); - ws->tableValidEnd = ws->objectEnd; - ZSTD_cwksp_assert_internal_consistency(ws); -} - -MEM_STATIC void ZSTD_cwksp_mark_tables_clean(ZSTD_cwksp* ws) { - DEBUGLOG(4, "cwksp: ZSTD_cwksp_mark_tables_clean"); - assert(ws->tableValidEnd >= ws->objectEnd); - assert(ws->tableValidEnd <= ws->allocStart); - if (ws->tableValidEnd < ws->tableEnd) { - ws->tableValidEnd = ws->tableEnd; - } - ZSTD_cwksp_assert_internal_consistency(ws); -} - -/** - * Zero the part of the allocated tables not already marked clean. - */ -MEM_STATIC void ZSTD_cwksp_clean_tables(ZSTD_cwksp* ws) { - DEBUGLOG(4, "cwksp: ZSTD_cwksp_clean_tables"); - assert(ws->tableValidEnd >= ws->objectEnd); - assert(ws->tableValidEnd <= ws->allocStart); - if (ws->tableValidEnd < ws->tableEnd) { - memset(ws->tableValidEnd, 0, (BYTE*)ws->tableEnd - (BYTE*)ws->tableValidEnd); - } - ZSTD_cwksp_mark_tables_clean(ws); -} - -/** - * Invalidates table allocations. - * All other allocations remain valid. - */ -MEM_STATIC void ZSTD_cwksp_clear_tables(ZSTD_cwksp* ws) { - DEBUGLOG(4, "cwksp: clearing tables!"); - -#if defined (ADDRESS_SANITIZER) && !defined (ZSTD_ASAN_DONT_POISON_WORKSPACE) - { - size_t size = (BYTE*)ws->tableValidEnd - (BYTE*)ws->objectEnd; - __asan_poison_memory_region(ws->objectEnd, size); - } -#endif - - ws->tableEnd = ws->objectEnd; - ZSTD_cwksp_assert_internal_consistency(ws); -} - -/** - * Invalidates all buffer, aligned, and table allocations. - * Object allocations remain valid. - */ -MEM_STATIC void ZSTD_cwksp_clear(ZSTD_cwksp* ws) { - DEBUGLOG(4, "cwksp: clearing!"); - -#if defined (MEMORY_SANITIZER) && !defined (ZSTD_MSAN_DONT_POISON_WORKSPACE) - /* To validate that the context re-use logic is sound, and that we don't - * access stuff that this compression hasn't initialized, we re-"poison" - * the workspace (or at least the non-static, non-table parts of it) - * every time we start a new compression. */ - { - size_t size = (BYTE*)ws->workspaceEnd - (BYTE*)ws->tableValidEnd; - __msan_poison(ws->tableValidEnd, size); - } -#endif - -#if defined (ADDRESS_SANITIZER) && !defined (ZSTD_ASAN_DONT_POISON_WORKSPACE) - { - size_t size = (BYTE*)ws->workspaceEnd - (BYTE*)ws->objectEnd; - __asan_poison_memory_region(ws->objectEnd, size); - } -#endif - - ws->tableEnd = ws->objectEnd; - ws->allocStart = ws->workspaceEnd; - ws->allocFailed = 0; - if (ws->phase > ZSTD_cwksp_alloc_buffers) { - ws->phase = ZSTD_cwksp_alloc_buffers; - } - ZSTD_cwksp_assert_internal_consistency(ws); -} - -/** - * The provided workspace takes ownership of the buffer [start, start+size). - * Any existing values in the workspace are ignored (the previously managed - * buffer, if present, must be separately freed). - */ -MEM_STATIC void ZSTD_cwksp_init(ZSTD_cwksp* ws, void* start, size_t size) { - DEBUGLOG(4, "cwksp: init'ing workspace with %zd bytes", size); - assert(((size_t)start & (sizeof(void*)-1)) == 0); /* ensure correct alignment */ - ws->workspace = start; - ws->workspaceEnd = (BYTE*)start + size; - ws->objectEnd = ws->workspace; - ws->tableValidEnd = ws->objectEnd; - ws->phase = ZSTD_cwksp_alloc_objects; - ZSTD_cwksp_clear(ws); - ws->workspaceOversizedDuration = 0; - ZSTD_cwksp_assert_internal_consistency(ws); -} - -MEM_STATIC size_t ZSTD_cwksp_create(ZSTD_cwksp* ws, size_t size, ZSTD_customMem customMem) { - void* workspace = ZSTD_malloc(size, customMem); - DEBUGLOG(4, "cwksp: creating new workspace with %zd bytes", size); - RETURN_ERROR_IF(workspace == NULL, memory_allocation, "NULL pointer!"); - ZSTD_cwksp_init(ws, workspace, size); - return 0; -} - -MEM_STATIC void ZSTD_cwksp_free(ZSTD_cwksp* ws, ZSTD_customMem customMem) { - void *ptr = ws->workspace; - DEBUGLOG(4, "cwksp: freeing workspace"); - memset(ws, 0, sizeof(ZSTD_cwksp)); - ZSTD_free(ptr, customMem); -} - -/** - * Moves the management of a workspace from one cwksp to another. The src cwksp - * is left in an invalid state (src must be re-init()'ed before its used again). - */ -MEM_STATIC void ZSTD_cwksp_move(ZSTD_cwksp* dst, ZSTD_cwksp* src) { - *dst = *src; - memset(src, 0, sizeof(ZSTD_cwksp)); -} - -MEM_STATIC size_t ZSTD_cwksp_sizeof(const ZSTD_cwksp* ws) { - return (size_t)((BYTE*)ws->workspaceEnd - (BYTE*)ws->workspace); -} - -MEM_STATIC int ZSTD_cwksp_reserve_failed(const ZSTD_cwksp* ws) { - return ws->allocFailed; -} - -/*-************************************* -* Functions Checking Free Space -***************************************/ - -MEM_STATIC size_t ZSTD_cwksp_available_space(ZSTD_cwksp* ws) { - return (size_t)((BYTE*)ws->allocStart - (BYTE*)ws->tableEnd); -} - -MEM_STATIC int ZSTD_cwksp_check_available(ZSTD_cwksp* ws, size_t additionalNeededSpace) { - return ZSTD_cwksp_available_space(ws) >= additionalNeededSpace; -} - -MEM_STATIC int ZSTD_cwksp_check_too_large(ZSTD_cwksp* ws, size_t additionalNeededSpace) { - return ZSTD_cwksp_check_available( - ws, additionalNeededSpace * ZSTD_WORKSPACETOOLARGE_FACTOR); -} - -MEM_STATIC int ZSTD_cwksp_check_wasteful(ZSTD_cwksp* ws, size_t additionalNeededSpace) { - return ZSTD_cwksp_check_too_large(ws, additionalNeededSpace) - && ws->workspaceOversizedDuration > ZSTD_WORKSPACETOOLARGE_MAXDURATION; -} - -MEM_STATIC void ZSTD_cwksp_bump_oversized_duration( - ZSTD_cwksp* ws, size_t additionalNeededSpace) { - if (ZSTD_cwksp_check_too_large(ws, additionalNeededSpace)) { - ws->workspaceOversizedDuration++; - } else { - ws->workspaceOversizedDuration = 0; - } -} - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_CWKSP_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_double_fast.c b/lib/SZ3/tools/zstd/compress/zstd_double_fast.c deleted file mode 100644 index 27eed66c..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_double_fast.c +++ /dev/null @@ -1,521 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#include "zstd_compress_internal.h" -#include "zstd_double_fast.h" - - -void ZSTD_fillDoubleHashTable(ZSTD_matchState_t* ms, - void const* end, ZSTD_dictTableLoadMethod_e dtlm) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const hashLarge = ms->hashTable; - U32 const hBitsL = cParams->hashLog; - U32 const mls = cParams->minMatch; - U32* const hashSmall = ms->chainTable; - U32 const hBitsS = cParams->chainLog; - const BYTE* const base = ms->window.base; - const BYTE* ip = base + ms->nextToUpdate; - const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; - const U32 fastHashFillStep = 3; - - /* Always insert every fastHashFillStep position into the hash tables. - * Insert the other positions into the large hash table if their entry - * is empty. - */ - for (; ip + fastHashFillStep - 1 <= iend; ip += fastHashFillStep) { - U32 const current = (U32)(ip - base); - U32 i; - for (i = 0; i < fastHashFillStep; ++i) { - size_t const smHash = ZSTD_hashPtr(ip + i, hBitsS, mls); - size_t const lgHash = ZSTD_hashPtr(ip + i, hBitsL, 8); - if (i == 0) - hashSmall[smHash] = current + i; - if (i == 0 || hashLarge[lgHash] == 0) - hashLarge[lgHash] = current + i; - /* Only load extra positions for ZSTD_dtlm_full */ - if (dtlm == ZSTD_dtlm_fast) - break; - } } -} - - -FORCE_INLINE_TEMPLATE -size_t ZSTD_compressBlock_doubleFast_generic( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize, - U32 const mls /* template */, ZSTD_dictMode_e const dictMode) -{ - ZSTD_compressionParameters const* cParams = &ms->cParams; - U32* const hashLong = ms->hashTable; - const U32 hBitsL = cParams->hashLog; - U32* const hashSmall = ms->chainTable; - const U32 hBitsS = cParams->chainLog; - const BYTE* const base = ms->window.base; - const BYTE* const istart = (const BYTE*)src; - const BYTE* ip = istart; - const BYTE* anchor = istart; - const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); - /* presumes that, if there is a dictionary, it must be using Attach mode */ - const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog); - const BYTE* const prefixLowest = base + prefixLowestIndex; - const BYTE* const iend = istart + srcSize; - const BYTE* const ilimit = iend - HASH_READ_SIZE; - U32 offset_1=rep[0], offset_2=rep[1]; - U32 offsetSaved = 0; - - const ZSTD_matchState_t* const dms = ms->dictMatchState; - const ZSTD_compressionParameters* const dictCParams = - dictMode == ZSTD_dictMatchState ? - &dms->cParams : NULL; - const U32* const dictHashLong = dictMode == ZSTD_dictMatchState ? - dms->hashTable : NULL; - const U32* const dictHashSmall = dictMode == ZSTD_dictMatchState ? - dms->chainTable : NULL; - const U32 dictStartIndex = dictMode == ZSTD_dictMatchState ? - dms->window.dictLimit : 0; - const BYTE* const dictBase = dictMode == ZSTD_dictMatchState ? - dms->window.base : NULL; - const BYTE* const dictStart = dictMode == ZSTD_dictMatchState ? - dictBase + dictStartIndex : NULL; - const BYTE* const dictEnd = dictMode == ZSTD_dictMatchState ? - dms->window.nextSrc : NULL; - const U32 dictIndexDelta = dictMode == ZSTD_dictMatchState ? - prefixLowestIndex - (U32)(dictEnd - dictBase) : - 0; - const U32 dictHBitsL = dictMode == ZSTD_dictMatchState ? - dictCParams->hashLog : hBitsL; - const U32 dictHBitsS = dictMode == ZSTD_dictMatchState ? - dictCParams->chainLog : hBitsS; - const U32 dictAndPrefixLength = (U32)((ip - prefixLowest) + (dictEnd - dictStart)); - - DEBUGLOG(5, "ZSTD_compressBlock_doubleFast_generic"); - - assert(dictMode == ZSTD_noDict || dictMode == ZSTD_dictMatchState); - - /* if a dictionary is attached, it must be within window range */ - if (dictMode == ZSTD_dictMatchState) { - assert(ms->window.dictLimit + (1U << cParams->windowLog) >= endIndex); - } - - /* init */ - ip += (dictAndPrefixLength == 0); - if (dictMode == ZSTD_noDict) { - U32 const current = (U32)(ip - base); - U32 const windowLow = ZSTD_getLowestPrefixIndex(ms, current, cParams->windowLog); - U32 const maxRep = current - windowLow; - if (offset_2 > maxRep) offsetSaved = offset_2, offset_2 = 0; - if (offset_1 > maxRep) offsetSaved = offset_1, offset_1 = 0; - } - if (dictMode == ZSTD_dictMatchState) { - /* dictMatchState repCode checks don't currently handle repCode == 0 - * disabling. */ - assert(offset_1 <= dictAndPrefixLength); - assert(offset_2 <= dictAndPrefixLength); - } - - /* Main Search Loop */ - while (ip < ilimit) { /* < instead of <=, because repcode check at (ip+1) */ - size_t mLength; - U32 offset; - size_t const h2 = ZSTD_hashPtr(ip, hBitsL, 8); - size_t const h = ZSTD_hashPtr(ip, hBitsS, mls); - size_t const dictHL = ZSTD_hashPtr(ip, dictHBitsL, 8); - size_t const dictHS = ZSTD_hashPtr(ip, dictHBitsS, mls); - U32 const current = (U32)(ip-base); - U32 const matchIndexL = hashLong[h2]; - U32 matchIndexS = hashSmall[h]; - const BYTE* matchLong = base + matchIndexL; - const BYTE* match = base + matchIndexS; - const U32 repIndex = current + 1 - offset_1; - const BYTE* repMatch = (dictMode == ZSTD_dictMatchState - && repIndex < prefixLowestIndex) ? - dictBase + (repIndex - dictIndexDelta) : - base + repIndex; - hashLong[h2] = hashSmall[h] = current; /* update hash tables */ - - /* check dictMatchState repcode */ - if (dictMode == ZSTD_dictMatchState - && ((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) - && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { - const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; - mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4; - ip++; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); - goto _match_stored; - } - - /* check noDict repcode */ - if ( dictMode == ZSTD_noDict - && ((offset_1 > 0) & (MEM_read32(ip+1-offset_1) == MEM_read32(ip+1)))) { - mLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4; - ip++; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); - goto _match_stored; - } - - if (matchIndexL > prefixLowestIndex) { - /* check prefix long match */ - if (MEM_read64(matchLong) == MEM_read64(ip)) { - mLength = ZSTD_count(ip+8, matchLong+8, iend) + 8; - offset = (U32)(ip-matchLong); - while (((ip>anchor) & (matchLong>prefixLowest)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--; mLength++; } /* catch up */ - goto _match_found; - } - } else if (dictMode == ZSTD_dictMatchState) { - /* check dictMatchState long match */ - U32 const dictMatchIndexL = dictHashLong[dictHL]; - const BYTE* dictMatchL = dictBase + dictMatchIndexL; - assert(dictMatchL < dictEnd); - - if (dictMatchL > dictStart && MEM_read64(dictMatchL) == MEM_read64(ip)) { - mLength = ZSTD_count_2segments(ip+8, dictMatchL+8, iend, dictEnd, prefixLowest) + 8; - offset = (U32)(current - dictMatchIndexL - dictIndexDelta); - while (((ip>anchor) & (dictMatchL>dictStart)) && (ip[-1] == dictMatchL[-1])) { ip--; dictMatchL--; mLength++; } /* catch up */ - goto _match_found; - } } - - if (matchIndexS > prefixLowestIndex) { - /* check prefix short match */ - if (MEM_read32(match) == MEM_read32(ip)) { - goto _search_next_long; - } - } else if (dictMode == ZSTD_dictMatchState) { - /* check dictMatchState short match */ - U32 const dictMatchIndexS = dictHashSmall[dictHS]; - match = dictBase + dictMatchIndexS; - matchIndexS = dictMatchIndexS + dictIndexDelta; - - if (match > dictStart && MEM_read32(match) == MEM_read32(ip)) { - goto _search_next_long; - } } - - ip += ((ip-anchor) >> kSearchStrength) + 1; -#if defined(__aarch64__) - PREFETCH_L1(ip+256); -#endif - continue; - -_search_next_long: - - { size_t const hl3 = ZSTD_hashPtr(ip+1, hBitsL, 8); - size_t const dictHLNext = ZSTD_hashPtr(ip+1, dictHBitsL, 8); - U32 const matchIndexL3 = hashLong[hl3]; - const BYTE* matchL3 = base + matchIndexL3; - hashLong[hl3] = current + 1; - - /* check prefix long +1 match */ - if (matchIndexL3 > prefixLowestIndex) { - if (MEM_read64(matchL3) == MEM_read64(ip+1)) { - mLength = ZSTD_count(ip+9, matchL3+8, iend) + 8; - ip++; - offset = (U32)(ip-matchL3); - while (((ip>anchor) & (matchL3>prefixLowest)) && (ip[-1] == matchL3[-1])) { ip--; matchL3--; mLength++; } /* catch up */ - goto _match_found; - } - } else if (dictMode == ZSTD_dictMatchState) { - /* check dict long +1 match */ - U32 const dictMatchIndexL3 = dictHashLong[dictHLNext]; - const BYTE* dictMatchL3 = dictBase + dictMatchIndexL3; - assert(dictMatchL3 < dictEnd); - if (dictMatchL3 > dictStart && MEM_read64(dictMatchL3) == MEM_read64(ip+1)) { - mLength = ZSTD_count_2segments(ip+1+8, dictMatchL3+8, iend, dictEnd, prefixLowest) + 8; - ip++; - offset = (U32)(current + 1 - dictMatchIndexL3 - dictIndexDelta); - while (((ip>anchor) & (dictMatchL3>dictStart)) && (ip[-1] == dictMatchL3[-1])) { ip--; dictMatchL3--; mLength++; } /* catch up */ - goto _match_found; - } } } - - /* if no long +1 match, explore the short match we found */ - if (dictMode == ZSTD_dictMatchState && matchIndexS < prefixLowestIndex) { - mLength = ZSTD_count_2segments(ip+4, match+4, iend, dictEnd, prefixLowest) + 4; - offset = (U32)(current - matchIndexS); - while (((ip>anchor) & (match>dictStart)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */ - } else { - mLength = ZSTD_count(ip+4, match+4, iend) + 4; - offset = (U32)(ip - match); - while (((ip>anchor) & (match>prefixLowest)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */ - } - - /* fall-through */ - -_match_found: - offset_2 = offset_1; - offset_1 = offset; - - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH); - -_match_stored: - /* match found */ - ip += mLength; - anchor = ip; - - if (ip <= ilimit) { - /* Complementary insertion */ - /* done after iLimit test, as candidates could be > iend-8 */ - { U32 const indexToInsert = current+2; - hashLong[ZSTD_hashPtr(base+indexToInsert, hBitsL, 8)] = indexToInsert; - hashLong[ZSTD_hashPtr(ip-2, hBitsL, 8)] = (U32)(ip-2-base); - hashSmall[ZSTD_hashPtr(base+indexToInsert, hBitsS, mls)] = indexToInsert; - hashSmall[ZSTD_hashPtr(ip-1, hBitsS, mls)] = (U32)(ip-1-base); - } - - /* check immediate repcode */ - if (dictMode == ZSTD_dictMatchState) { - while (ip <= ilimit) { - U32 const current2 = (U32)(ip-base); - U32 const repIndex2 = current2 - offset_2; - const BYTE* repMatch2 = dictMode == ZSTD_dictMatchState - && repIndex2 < prefixLowestIndex ? - dictBase + repIndex2 - dictIndexDelta : - base + repIndex2; - if ( ((U32)((prefixLowestIndex-1) - (U32)repIndex2) >= 3 /* intentional overflow */) - && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { - const BYTE* const repEnd2 = repIndex2 < prefixLowestIndex ? dictEnd : iend; - size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixLowest) + 4; - U32 tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; /* swap offset_2 <=> offset_1 */ - ZSTD_storeSeq(seqStore, 0, anchor, iend, 0, repLength2-MINMATCH); - hashSmall[ZSTD_hashPtr(ip, hBitsS, mls)] = current2; - hashLong[ZSTD_hashPtr(ip, hBitsL, 8)] = current2; - ip += repLength2; - anchor = ip; - continue; - } - break; - } } - - if (dictMode == ZSTD_noDict) { - while ( (ip <= ilimit) - && ( (offset_2>0) - & (MEM_read32(ip) == MEM_read32(ip - offset_2)) )) { - /* store sequence */ - size_t const rLength = ZSTD_count(ip+4, ip+4-offset_2, iend) + 4; - U32 const tmpOff = offset_2; offset_2 = offset_1; offset_1 = tmpOff; /* swap offset_2 <=> offset_1 */ - hashSmall[ZSTD_hashPtr(ip, hBitsS, mls)] = (U32)(ip-base); - hashLong[ZSTD_hashPtr(ip, hBitsL, 8)] = (U32)(ip-base); - ZSTD_storeSeq(seqStore, 0, anchor, iend, 0, rLength-MINMATCH); - ip += rLength; - anchor = ip; - continue; /* faster when present ... (?) */ - } } } - } /* while (ip < ilimit) */ - - /* save reps for next block */ - rep[0] = offset_1 ? offset_1 : offsetSaved; - rep[1] = offset_2 ? offset_2 : offsetSaved; - - /* Return the last literals size */ - return (size_t)(iend - anchor); -} - - -size_t ZSTD_compressBlock_doubleFast( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - const U32 mls = ms->cParams.minMatch; - switch(mls) - { - default: /* includes case 3 */ - case 4 : - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, 4, ZSTD_noDict); - case 5 : - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, 5, ZSTD_noDict); - case 6 : - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, 6, ZSTD_noDict); - case 7 : - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, 7, ZSTD_noDict); - } -} - - -size_t ZSTD_compressBlock_doubleFast_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - const U32 mls = ms->cParams.minMatch; - switch(mls) - { - default: /* includes case 3 */ - case 4 : - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, 4, ZSTD_dictMatchState); - case 5 : - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, 5, ZSTD_dictMatchState); - case 6 : - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, 6, ZSTD_dictMatchState); - case 7 : - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, 7, ZSTD_dictMatchState); - } -} - - -static size_t ZSTD_compressBlock_doubleFast_extDict_generic( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize, - U32 const mls /* template */) -{ - ZSTD_compressionParameters const* cParams = &ms->cParams; - U32* const hashLong = ms->hashTable; - U32 const hBitsL = cParams->hashLog; - U32* const hashSmall = ms->chainTable; - U32 const hBitsS = cParams->chainLog; - const BYTE* const istart = (const BYTE*)src; - const BYTE* ip = istart; - const BYTE* anchor = istart; - const BYTE* const iend = istart + srcSize; - const BYTE* const ilimit = iend - 8; - const BYTE* const base = ms->window.base; - const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); - const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog); - const U32 dictStartIndex = lowLimit; - const U32 dictLimit = ms->window.dictLimit; - const U32 prefixStartIndex = (dictLimit > lowLimit) ? dictLimit : lowLimit; - const BYTE* const prefixStart = base + prefixStartIndex; - const BYTE* const dictBase = ms->window.dictBase; - const BYTE* const dictStart = dictBase + dictStartIndex; - const BYTE* const dictEnd = dictBase + prefixStartIndex; - U32 offset_1=rep[0], offset_2=rep[1]; - - DEBUGLOG(5, "ZSTD_compressBlock_doubleFast_extDict_generic (srcSize=%zu)", srcSize); - - /* if extDict is invalidated due to maxDistance, switch to "regular" variant */ - if (prefixStartIndex == dictStartIndex) - return ZSTD_compressBlock_doubleFast_generic(ms, seqStore, rep, src, srcSize, mls, ZSTD_noDict); - - /* Search Loop */ - while (ip < ilimit) { /* < instead of <=, because (ip+1) */ - const size_t hSmall = ZSTD_hashPtr(ip, hBitsS, mls); - const U32 matchIndex = hashSmall[hSmall]; - const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base; - const BYTE* match = matchBase + matchIndex; - - const size_t hLong = ZSTD_hashPtr(ip, hBitsL, 8); - const U32 matchLongIndex = hashLong[hLong]; - const BYTE* const matchLongBase = matchLongIndex < prefixStartIndex ? dictBase : base; - const BYTE* matchLong = matchLongBase + matchLongIndex; - - const U32 current = (U32)(ip-base); - const U32 repIndex = current + 1 - offset_1; /* offset_1 expected <= current +1 */ - const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base; - const BYTE* const repMatch = repBase + repIndex; - size_t mLength; - hashSmall[hSmall] = hashLong[hLong] = current; /* update hash table */ - - if ((((U32)((prefixStartIndex-1) - repIndex) >= 3) /* intentional underflow : ensure repIndex doesn't overlap dict + prefix */ - & (repIndex > dictStartIndex)) - && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { - const BYTE* repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend; - mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixStart) + 4; - ip++; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); - } else { - if ((matchLongIndex > dictStartIndex) && (MEM_read64(matchLong) == MEM_read64(ip))) { - const BYTE* const matchEnd = matchLongIndex < prefixStartIndex ? dictEnd : iend; - const BYTE* const lowMatchPtr = matchLongIndex < prefixStartIndex ? dictStart : prefixStart; - U32 offset; - mLength = ZSTD_count_2segments(ip+8, matchLong+8, iend, matchEnd, prefixStart) + 8; - offset = current - matchLongIndex; - while (((ip>anchor) & (matchLong>lowMatchPtr)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--; mLength++; } /* catch up */ - offset_2 = offset_1; - offset_1 = offset; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH); - - } else if ((matchIndex > dictStartIndex) && (MEM_read32(match) == MEM_read32(ip))) { - size_t const h3 = ZSTD_hashPtr(ip+1, hBitsL, 8); - U32 const matchIndex3 = hashLong[h3]; - const BYTE* const match3Base = matchIndex3 < prefixStartIndex ? dictBase : base; - const BYTE* match3 = match3Base + matchIndex3; - U32 offset; - hashLong[h3] = current + 1; - if ( (matchIndex3 > dictStartIndex) && (MEM_read64(match3) == MEM_read64(ip+1)) ) { - const BYTE* const matchEnd = matchIndex3 < prefixStartIndex ? dictEnd : iend; - const BYTE* const lowMatchPtr = matchIndex3 < prefixStartIndex ? dictStart : prefixStart; - mLength = ZSTD_count_2segments(ip+9, match3+8, iend, matchEnd, prefixStart) + 8; - ip++; - offset = current+1 - matchIndex3; - while (((ip>anchor) & (match3>lowMatchPtr)) && (ip[-1] == match3[-1])) { ip--; match3--; mLength++; } /* catch up */ - } else { - const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend; - const BYTE* const lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart; - mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, prefixStart) + 4; - offset = current - matchIndex; - while (((ip>anchor) & (match>lowMatchPtr)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */ - } - offset_2 = offset_1; - offset_1 = offset; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH); - - } else { - ip += ((ip-anchor) >> kSearchStrength) + 1; - continue; - } } - - /* move to next sequence start */ - ip += mLength; - anchor = ip; - - if (ip <= ilimit) { - /* Complementary insertion */ - /* done after iLimit test, as candidates could be > iend-8 */ - { U32 const indexToInsert = current+2; - hashLong[ZSTD_hashPtr(base+indexToInsert, hBitsL, 8)] = indexToInsert; - hashLong[ZSTD_hashPtr(ip-2, hBitsL, 8)] = (U32)(ip-2-base); - hashSmall[ZSTD_hashPtr(base+indexToInsert, hBitsS, mls)] = indexToInsert; - hashSmall[ZSTD_hashPtr(ip-1, hBitsS, mls)] = (U32)(ip-1-base); - } - - /* check immediate repcode */ - while (ip <= ilimit) { - U32 const current2 = (U32)(ip-base); - U32 const repIndex2 = current2 - offset_2; - const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2; - if ( (((U32)((prefixStartIndex-1) - repIndex2) >= 3) /* intentional overflow : ensure repIndex2 doesn't overlap dict + prefix */ - & (repIndex2 > dictStartIndex)) - && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { - const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend; - size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; - U32 const tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; /* swap offset_2 <=> offset_1 */ - ZSTD_storeSeq(seqStore, 0, anchor, iend, 0, repLength2-MINMATCH); - hashSmall[ZSTD_hashPtr(ip, hBitsS, mls)] = current2; - hashLong[ZSTD_hashPtr(ip, hBitsL, 8)] = current2; - ip += repLength2; - anchor = ip; - continue; - } - break; - } } } - - /* save reps for next block */ - rep[0] = offset_1; - rep[1] = offset_2; - - /* Return the last literals size */ - return (size_t)(iend - anchor); -} - - -size_t ZSTD_compressBlock_doubleFast_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - U32 const mls = ms->cParams.minMatch; - switch(mls) - { - default: /* includes case 3 */ - case 4 : - return ZSTD_compressBlock_doubleFast_extDict_generic(ms, seqStore, rep, src, srcSize, 4); - case 5 : - return ZSTD_compressBlock_doubleFast_extDict_generic(ms, seqStore, rep, src, srcSize, 5); - case 6 : - return ZSTD_compressBlock_doubleFast_extDict_generic(ms, seqStore, rep, src, srcSize, 6); - case 7 : - return ZSTD_compressBlock_doubleFast_extDict_generic(ms, seqStore, rep, src, srcSize, 7); - } -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_double_fast.h b/lib/SZ3/tools/zstd/compress/zstd_double_fast.h deleted file mode 100644 index 14d944d6..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_double_fast.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_DOUBLE_FAST_H -#define ZSTD_DOUBLE_FAST_H - -#if defined (__cplusplus) -extern "C" { -#endif - -#include "../common/mem.h" /* U32 */ -#include "zstd_compress_internal.h" /* ZSTD_CCtx, size_t */ - -void ZSTD_fillDoubleHashTable(ZSTD_matchState_t* ms, - void const* end, ZSTD_dictTableLoadMethod_e dtlm); -size_t ZSTD_compressBlock_doubleFast( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_doubleFast_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_doubleFast_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_DOUBLE_FAST_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_fast.c b/lib/SZ3/tools/zstd/compress/zstd_fast.c deleted file mode 100644 index 85a3a7a9..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_fast.c +++ /dev/null @@ -1,496 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#include "zstd_compress_internal.h" /* ZSTD_hashPtr, ZSTD_count, ZSTD_storeSeq */ -#include "zstd_fast.h" - - -void ZSTD_fillHashTable(ZSTD_matchState_t* ms, - const void* const end, - ZSTD_dictTableLoadMethod_e dtlm) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const hashTable = ms->hashTable; - U32 const hBits = cParams->hashLog; - U32 const mls = cParams->minMatch; - const BYTE* const base = ms->window.base; - const BYTE* ip = base + ms->nextToUpdate; - const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; - const U32 fastHashFillStep = 3; - - /* Always insert every fastHashFillStep position into the hash table. - * Insert the other positions if their hash entry is empty. - */ - for ( ; ip + fastHashFillStep < iend + 2; ip += fastHashFillStep) { - U32 const current = (U32)(ip - base); - size_t const hash0 = ZSTD_hashPtr(ip, hBits, mls); - hashTable[hash0] = current; - if (dtlm == ZSTD_dtlm_fast) continue; - /* Only load extra positions for ZSTD_dtlm_full */ - { U32 p; - for (p = 1; p < fastHashFillStep; ++p) { - size_t const hash = ZSTD_hashPtr(ip + p, hBits, mls); - if (hashTable[hash] == 0) { /* not yet filled */ - hashTable[hash] = current + p; - } } } } -} - - -FORCE_INLINE_TEMPLATE size_t -ZSTD_compressBlock_fast_generic( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize, - U32 const mls) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const hashTable = ms->hashTable; - U32 const hlog = cParams->hashLog; - /* support stepSize of 0 */ - size_t const stepSize = cParams->targetLength + !(cParams->targetLength) + 1; - const BYTE* const base = ms->window.base; - const BYTE* const istart = (const BYTE*)src; - /* We check ip0 (ip + 0) and ip1 (ip + 1) each loop */ - const BYTE* ip0 = istart; - const BYTE* ip1; - const BYTE* anchor = istart; - const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); - const U32 prefixStartIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog); - const BYTE* const prefixStart = base + prefixStartIndex; - const BYTE* const iend = istart + srcSize; - const BYTE* const ilimit = iend - HASH_READ_SIZE; - U32 offset_1=rep[0], offset_2=rep[1]; - U32 offsetSaved = 0; - - /* init */ - DEBUGLOG(5, "ZSTD_compressBlock_fast_generic"); - ip0 += (ip0 == prefixStart); - ip1 = ip0 + 1; - { U32 const current = (U32)(ip0 - base); - U32 const windowLow = ZSTD_getLowestPrefixIndex(ms, current, cParams->windowLog); - U32 const maxRep = current - windowLow; - if (offset_2 > maxRep) offsetSaved = offset_2, offset_2 = 0; - if (offset_1 > maxRep) offsetSaved = offset_1, offset_1 = 0; - } - - /* Main Search Loop */ -#ifdef __INTEL_COMPILER - /* From intel 'The vector pragma indicates that the loop should be - * vectorized if it is legal to do so'. Can be used together with - * #pragma ivdep (but have opted to exclude that because intel - * warns against using it).*/ - #pragma vector always -#endif - while (ip1 < ilimit) { /* < instead of <=, because check at ip0+2 */ - size_t mLength; - BYTE const* ip2 = ip0 + 2; - size_t const h0 = ZSTD_hashPtr(ip0, hlog, mls); - U32 const val0 = MEM_read32(ip0); - size_t const h1 = ZSTD_hashPtr(ip1, hlog, mls); - U32 const val1 = MEM_read32(ip1); - U32 const current0 = (U32)(ip0-base); - U32 const current1 = (U32)(ip1-base); - U32 const matchIndex0 = hashTable[h0]; - U32 const matchIndex1 = hashTable[h1]; - BYTE const* repMatch = ip2 - offset_1; - const BYTE* match0 = base + matchIndex0; - const BYTE* match1 = base + matchIndex1; - U32 offcode; - -#if defined(__aarch64__) - PREFETCH_L1(ip0+256); -#endif - - hashTable[h0] = current0; /* update hash table */ - hashTable[h1] = current1; /* update hash table */ - - assert(ip0 + 1 == ip1); - - if ((offset_1 > 0) & (MEM_read32(repMatch) == MEM_read32(ip2))) { - mLength = (ip2[-1] == repMatch[-1]) ? 1 : 0; - ip0 = ip2 - mLength; - match0 = repMatch - mLength; - mLength += 4; - offcode = 0; - goto _match; - } - if ((matchIndex0 > prefixStartIndex) && MEM_read32(match0) == val0) { - /* found a regular match */ - goto _offset; - } - if ((matchIndex1 > prefixStartIndex) && MEM_read32(match1) == val1) { - /* found a regular match after one literal */ - ip0 = ip1; - match0 = match1; - goto _offset; - } - { size_t const step = ((size_t)(ip0-anchor) >> (kSearchStrength - 1)) + stepSize; - assert(step >= 2); - ip0 += step; - ip1 += step; - continue; - } -_offset: /* Requires: ip0, match0 */ - /* Compute the offset code */ - offset_2 = offset_1; - offset_1 = (U32)(ip0-match0); - offcode = offset_1 + ZSTD_REP_MOVE; - mLength = 4; - /* Count the backwards match length */ - while (((ip0>anchor) & (match0>prefixStart)) - && (ip0[-1] == match0[-1])) { ip0--; match0--; mLength++; } /* catch up */ - -_match: /* Requires: ip0, match0, offcode */ - /* Count the forward length */ - mLength += ZSTD_count(ip0+mLength, match0+mLength, iend); - ZSTD_storeSeq(seqStore, (size_t)(ip0-anchor), anchor, iend, offcode, mLength-MINMATCH); - /* match found */ - ip0 += mLength; - anchor = ip0; - - if (ip0 <= ilimit) { - /* Fill Table */ - assert(base+current0+2 > istart); /* check base overflow */ - hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2; /* here because current+2 could be > iend-8 */ - hashTable[ZSTD_hashPtr(ip0-2, hlog, mls)] = (U32)(ip0-2-base); - - if (offset_2 > 0) { /* offset_2==0 means offset_2 is invalidated */ - while ( (ip0 <= ilimit) && (MEM_read32(ip0) == MEM_read32(ip0 - offset_2)) ) { - /* store sequence */ - size_t const rLength = ZSTD_count(ip0+4, ip0+4-offset_2, iend) + 4; - { U32 const tmpOff = offset_2; offset_2 = offset_1; offset_1 = tmpOff; } /* swap offset_2 <=> offset_1 */ - hashTable[ZSTD_hashPtr(ip0, hlog, mls)] = (U32)(ip0-base); - ip0 += rLength; - ZSTD_storeSeq(seqStore, 0 /*litLen*/, anchor, iend, 0 /*offCode*/, rLength-MINMATCH); - anchor = ip0; - continue; /* faster when present (confirmed on gcc-8) ... (?) */ - } } } - ip1 = ip0 + 1; - } - - /* save reps for next block */ - rep[0] = offset_1 ? offset_1 : offsetSaved; - rep[1] = offset_2 ? offset_2 : offsetSaved; - - /* Return the last literals size */ - return (size_t)(iend - anchor); -} - - -size_t ZSTD_compressBlock_fast( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - U32 const mls = ms->cParams.minMatch; - assert(ms->dictMatchState == NULL); - switch(mls) - { - default: /* includes case 3 */ - case 4 : - return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 4); - case 5 : - return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 5); - case 6 : - return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 6); - case 7 : - return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, 7); - } -} - -FORCE_INLINE_TEMPLATE -size_t ZSTD_compressBlock_fast_dictMatchState_generic( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize, U32 const mls) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const hashTable = ms->hashTable; - U32 const hlog = cParams->hashLog; - /* support stepSize of 0 */ - U32 const stepSize = cParams->targetLength + !(cParams->targetLength); - const BYTE* const base = ms->window.base; - const BYTE* const istart = (const BYTE*)src; - const BYTE* ip = istart; - const BYTE* anchor = istart; - const U32 prefixStartIndex = ms->window.dictLimit; - const BYTE* const prefixStart = base + prefixStartIndex; - const BYTE* const iend = istart + srcSize; - const BYTE* const ilimit = iend - HASH_READ_SIZE; - U32 offset_1=rep[0], offset_2=rep[1]; - U32 offsetSaved = 0; - - const ZSTD_matchState_t* const dms = ms->dictMatchState; - const ZSTD_compressionParameters* const dictCParams = &dms->cParams ; - const U32* const dictHashTable = dms->hashTable; - const U32 dictStartIndex = dms->window.dictLimit; - const BYTE* const dictBase = dms->window.base; - const BYTE* const dictStart = dictBase + dictStartIndex; - const BYTE* const dictEnd = dms->window.nextSrc; - const U32 dictIndexDelta = prefixStartIndex - (U32)(dictEnd - dictBase); - const U32 dictAndPrefixLength = (U32)(ip - prefixStart + dictEnd - dictStart); - const U32 dictHLog = dictCParams->hashLog; - - /* if a dictionary is still attached, it necessarily means that - * it is within window size. So we just check it. */ - const U32 maxDistance = 1U << cParams->windowLog; - const U32 endIndex = (U32)((size_t)(ip - base) + srcSize); - assert(endIndex - prefixStartIndex <= maxDistance); - (void)maxDistance; (void)endIndex; /* these variables are not used when assert() is disabled */ - - /* ensure there will be no no underflow - * when translating a dict index into a local index */ - assert(prefixStartIndex >= (U32)(dictEnd - dictBase)); - - /* init */ - DEBUGLOG(5, "ZSTD_compressBlock_fast_dictMatchState_generic"); - ip += (dictAndPrefixLength == 0); - /* dictMatchState repCode checks don't currently handle repCode == 0 - * disabling. */ - assert(offset_1 <= dictAndPrefixLength); - assert(offset_2 <= dictAndPrefixLength); - - /* Main Search Loop */ - while (ip < ilimit) { /* < instead of <=, because repcode check at (ip+1) */ - size_t mLength; - size_t const h = ZSTD_hashPtr(ip, hlog, mls); - U32 const current = (U32)(ip-base); - U32 const matchIndex = hashTable[h]; - const BYTE* match = base + matchIndex; - const U32 repIndex = current + 1 - offset_1; - const BYTE* repMatch = (repIndex < prefixStartIndex) ? - dictBase + (repIndex - dictIndexDelta) : - base + repIndex; - hashTable[h] = current; /* update hash table */ - - if ( ((U32)((prefixStartIndex-1) - repIndex) >= 3) /* intentional underflow : ensure repIndex isn't overlapping dict + prefix */ - && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { - const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend; - mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixStart) + 4; - ip++; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); - } else if ( (matchIndex <= prefixStartIndex) ) { - size_t const dictHash = ZSTD_hashPtr(ip, dictHLog, mls); - U32 const dictMatchIndex = dictHashTable[dictHash]; - const BYTE* dictMatch = dictBase + dictMatchIndex; - if (dictMatchIndex <= dictStartIndex || - MEM_read32(dictMatch) != MEM_read32(ip)) { - assert(stepSize >= 1); - ip += ((ip-anchor) >> kSearchStrength) + stepSize; - continue; - } else { - /* found a dict match */ - U32 const offset = (U32)(current-dictMatchIndex-dictIndexDelta); - mLength = ZSTD_count_2segments(ip+4, dictMatch+4, iend, dictEnd, prefixStart) + 4; - while (((ip>anchor) & (dictMatch>dictStart)) - && (ip[-1] == dictMatch[-1])) { - ip--; dictMatch--; mLength++; - } /* catch up */ - offset_2 = offset_1; - offset_1 = offset; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH); - } - } else if (MEM_read32(match) != MEM_read32(ip)) { - /* it's not a match, and we're not going to check the dictionary */ - assert(stepSize >= 1); - ip += ((ip-anchor) >> kSearchStrength) + stepSize; - continue; - } else { - /* found a regular match */ - U32 const offset = (U32)(ip-match); - mLength = ZSTD_count(ip+4, match+4, iend) + 4; - while (((ip>anchor) & (match>prefixStart)) - && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */ - offset_2 = offset_1; - offset_1 = offset; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH); - } - - /* match found */ - ip += mLength; - anchor = ip; - - if (ip <= ilimit) { - /* Fill Table */ - assert(base+current+2 > istart); /* check base overflow */ - hashTable[ZSTD_hashPtr(base+current+2, hlog, mls)] = current+2; /* here because current+2 could be > iend-8 */ - hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base); - - /* check immediate repcode */ - while (ip <= ilimit) { - U32 const current2 = (U32)(ip-base); - U32 const repIndex2 = current2 - offset_2; - const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? - dictBase - dictIndexDelta + repIndex2 : - base + repIndex2; - if ( ((U32)((prefixStartIndex-1) - (U32)repIndex2) >= 3 /* intentional overflow */) - && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { - const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend; - size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; - U32 tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; /* swap offset_2 <=> offset_1 */ - ZSTD_storeSeq(seqStore, 0, anchor, iend, 0, repLength2-MINMATCH); - hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2; - ip += repLength2; - anchor = ip; - continue; - } - break; - } - } - } - - /* save reps for next block */ - rep[0] = offset_1 ? offset_1 : offsetSaved; - rep[1] = offset_2 ? offset_2 : offsetSaved; - - /* Return the last literals size */ - return (size_t)(iend - anchor); -} - -size_t ZSTD_compressBlock_fast_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - U32 const mls = ms->cParams.minMatch; - assert(ms->dictMatchState != NULL); - switch(mls) - { - default: /* includes case 3 */ - case 4 : - return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 4); - case 5 : - return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 5); - case 6 : - return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 6); - case 7 : - return ZSTD_compressBlock_fast_dictMatchState_generic(ms, seqStore, rep, src, srcSize, 7); - } -} - - -static size_t ZSTD_compressBlock_fast_extDict_generic( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize, U32 const mls) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const hashTable = ms->hashTable; - U32 const hlog = cParams->hashLog; - /* support stepSize of 0 */ - U32 const stepSize = cParams->targetLength + !(cParams->targetLength); - const BYTE* const base = ms->window.base; - const BYTE* const dictBase = ms->window.dictBase; - const BYTE* const istart = (const BYTE*)src; - const BYTE* ip = istart; - const BYTE* anchor = istart; - const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); - const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog); - const U32 dictStartIndex = lowLimit; - const BYTE* const dictStart = dictBase + dictStartIndex; - const U32 dictLimit = ms->window.dictLimit; - const U32 prefixStartIndex = dictLimit < lowLimit ? lowLimit : dictLimit; - const BYTE* const prefixStart = base + prefixStartIndex; - const BYTE* const dictEnd = dictBase + prefixStartIndex; - const BYTE* const iend = istart + srcSize; - const BYTE* const ilimit = iend - 8; - U32 offset_1=rep[0], offset_2=rep[1]; - - DEBUGLOG(5, "ZSTD_compressBlock_fast_extDict_generic (offset_1=%u)", offset_1); - - /* switch to "regular" variant if extDict is invalidated due to maxDistance */ - if (prefixStartIndex == dictStartIndex) - return ZSTD_compressBlock_fast_generic(ms, seqStore, rep, src, srcSize, mls); - - /* Search Loop */ - while (ip < ilimit) { /* < instead of <=, because (ip+1) */ - const size_t h = ZSTD_hashPtr(ip, hlog, mls); - const U32 matchIndex = hashTable[h]; - const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base; - const BYTE* match = matchBase + matchIndex; - const U32 current = (U32)(ip-base); - const U32 repIndex = current + 1 - offset_1; - const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base; - const BYTE* const repMatch = repBase + repIndex; - hashTable[h] = current; /* update hash table */ - DEBUGLOG(7, "offset_1 = %u , current = %u", offset_1, current); - assert(offset_1 <= current +1); /* check repIndex */ - - if ( (((U32)((prefixStartIndex-1) - repIndex) >= 3) /* intentional underflow */ & (repIndex > dictStartIndex)) - && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { - const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend; - size_t const rLength = ZSTD_count_2segments(ip+1 +4, repMatch +4, iend, repMatchEnd, prefixStart) + 4; - ip++; - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, rLength-MINMATCH); - ip += rLength; - anchor = ip; - } else { - if ( (matchIndex < dictStartIndex) || - (MEM_read32(match) != MEM_read32(ip)) ) { - assert(stepSize >= 1); - ip += ((ip-anchor) >> kSearchStrength) + stepSize; - continue; - } - { const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend; - const BYTE* const lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart; - U32 const offset = current - matchIndex; - size_t mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, prefixStart) + 4; - while (((ip>anchor) & (match>lowMatchPtr)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /* catch up */ - offset_2 = offset_1; offset_1 = offset; /* update offset history */ - ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, offset + ZSTD_REP_MOVE, mLength-MINMATCH); - ip += mLength; - anchor = ip; - } } - - if (ip <= ilimit) { - /* Fill Table */ - hashTable[ZSTD_hashPtr(base+current+2, hlog, mls)] = current+2; - hashTable[ZSTD_hashPtr(ip-2, hlog, mls)] = (U32)(ip-2-base); - /* check immediate repcode */ - while (ip <= ilimit) { - U32 const current2 = (U32)(ip-base); - U32 const repIndex2 = current2 - offset_2; - const BYTE* const repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2; - if ( (((U32)((prefixStartIndex-1) - repIndex2) >= 3) & (repIndex2 > dictStartIndex)) /* intentional overflow */ - && (MEM_read32(repMatch2) == MEM_read32(ip)) ) { - const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend; - size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4; - { U32 const tmpOffset = offset_2; offset_2 = offset_1; offset_1 = tmpOffset; } /* swap offset_2 <=> offset_1 */ - ZSTD_storeSeq(seqStore, 0 /*litlen*/, anchor, iend, 0 /*offcode*/, repLength2-MINMATCH); - hashTable[ZSTD_hashPtr(ip, hlog, mls)] = current2; - ip += repLength2; - anchor = ip; - continue; - } - break; - } } } - - /* save reps for next block */ - rep[0] = offset_1; - rep[1] = offset_2; - - /* Return the last literals size */ - return (size_t)(iend - anchor); -} - - -size_t ZSTD_compressBlock_fast_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - U32 const mls = ms->cParams.minMatch; - switch(mls) - { - default: /* includes case 3 */ - case 4 : - return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 4); - case 5 : - return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 5); - case 6 : - return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 6); - case 7 : - return ZSTD_compressBlock_fast_extDict_generic(ms, seqStore, rep, src, srcSize, 7); - } -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_fast.h b/lib/SZ3/tools/zstd/compress/zstd_fast.h deleted file mode 100644 index cf6aaa8e..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_fast.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_FAST_H -#define ZSTD_FAST_H - -#if defined (__cplusplus) -extern "C" { -#endif - -#include "../common/mem.h" /* U32 */ -#include "zstd_compress_internal.h" - -void ZSTD_fillHashTable(ZSTD_matchState_t* ms, - void const* end, ZSTD_dictTableLoadMethod_e dtlm); -size_t ZSTD_compressBlock_fast( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_fast_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_fast_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_FAST_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_lazy.c b/lib/SZ3/tools/zstd/compress/zstd_lazy.c deleted file mode 100644 index 4cf5c88b..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_lazy.c +++ /dev/null @@ -1,1138 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#include "zstd_compress_internal.h" -#include "zstd_lazy.h" - - -/*-************************************* -* Binary Tree search -***************************************/ - -static void -ZSTD_updateDUBT(ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* iend, - U32 mls) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const hashTable = ms->hashTable; - U32 const hashLog = cParams->hashLog; - - U32* const bt = ms->chainTable; - U32 const btLog = cParams->chainLog - 1; - U32 const btMask = (1 << btLog) - 1; - - const BYTE* const base = ms->window.base; - U32 const target = (U32)(ip - base); - U32 idx = ms->nextToUpdate; - - if (idx != target) - DEBUGLOG(7, "ZSTD_updateDUBT, from %u to %u (dictLimit:%u)", - idx, target, ms->window.dictLimit); - assert(ip + 8 <= iend); /* condition for ZSTD_hashPtr */ - (void)iend; - - assert(idx >= ms->window.dictLimit); /* condition for valid base+idx */ - for ( ; idx < target ; idx++) { - size_t const h = ZSTD_hashPtr(base + idx, hashLog, mls); /* assumption : ip + 8 <= iend */ - U32 const matchIndex = hashTable[h]; - - U32* const nextCandidatePtr = bt + 2*(idx&btMask); - U32* const sortMarkPtr = nextCandidatePtr + 1; - - DEBUGLOG(8, "ZSTD_updateDUBT: insert %u", idx); - hashTable[h] = idx; /* Update Hash Table */ - *nextCandidatePtr = matchIndex; /* update BT like a chain */ - *sortMarkPtr = ZSTD_DUBT_UNSORTED_MARK; - } - ms->nextToUpdate = target; -} - - -/** ZSTD_insertDUBT1() : - * sort one already inserted but unsorted position - * assumption : current >= btlow == (current - btmask) - * doesn't fail */ -static void -ZSTD_insertDUBT1(ZSTD_matchState_t* ms, - U32 current, const BYTE* inputEnd, - U32 nbCompares, U32 btLow, - const ZSTD_dictMode_e dictMode) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const bt = ms->chainTable; - U32 const btLog = cParams->chainLog - 1; - U32 const btMask = (1 << btLog) - 1; - size_t commonLengthSmaller=0, commonLengthLarger=0; - const BYTE* const base = ms->window.base; - const BYTE* const dictBase = ms->window.dictBase; - const U32 dictLimit = ms->window.dictLimit; - const BYTE* const ip = (current>=dictLimit) ? base + current : dictBase + current; - const BYTE* const iend = (current>=dictLimit) ? inputEnd : dictBase + dictLimit; - const BYTE* const dictEnd = dictBase + dictLimit; - const BYTE* const prefixStart = base + dictLimit; - const BYTE* match; - U32* smallerPtr = bt + 2*(current&btMask); - U32* largerPtr = smallerPtr + 1; - U32 matchIndex = *smallerPtr; /* this candidate is unsorted : next sorted candidate is reached through *smallerPtr, while *largerPtr contains previous unsorted candidate (which is already saved and can be overwritten) */ - U32 dummy32; /* to be nullified at the end */ - U32 const windowValid = ms->window.lowLimit; - U32 const maxDistance = 1U << cParams->windowLog; - U32 const windowLow = (current - windowValid > maxDistance) ? current - maxDistance : windowValid; - - - DEBUGLOG(8, "ZSTD_insertDUBT1(%u) (dictLimit=%u, lowLimit=%u)", - current, dictLimit, windowLow); - assert(current >= btLow); - assert(ip < iend); /* condition for ZSTD_count */ - - while (nbCompares-- && (matchIndex > windowLow)) { - U32* const nextPtr = bt + 2*(matchIndex & btMask); - size_t matchLength = MIN(commonLengthSmaller, commonLengthLarger); /* guaranteed minimum nb of common bytes */ - assert(matchIndex < current); - /* note : all candidates are now supposed sorted, - * but it's still possible to have nextPtr[1] == ZSTD_DUBT_UNSORTED_MARK - * when a real index has the same value as ZSTD_DUBT_UNSORTED_MARK */ - - if ( (dictMode != ZSTD_extDict) - || (matchIndex+matchLength >= dictLimit) /* both in current segment*/ - || (current < dictLimit) /* both in extDict */) { - const BYTE* const mBase = ( (dictMode != ZSTD_extDict) - || (matchIndex+matchLength >= dictLimit)) ? - base : dictBase; - assert( (matchIndex+matchLength >= dictLimit) /* might be wrong if extDict is incorrectly set to 0 */ - || (current < dictLimit) ); - match = mBase + matchIndex; - matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); - } else { - match = dictBase + matchIndex; - matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); - if (matchIndex+matchLength >= dictLimit) - match = base + matchIndex; /* preparation for next read of match[matchLength] */ - } - - DEBUGLOG(8, "ZSTD_insertDUBT1: comparing %u with %u : found %u common bytes ", - current, matchIndex, (U32)matchLength); - - if (ip+matchLength == iend) { /* equal : no way to know if inf or sup */ - break; /* drop , to guarantee consistency ; miss a bit of compression, but other solutions can corrupt tree */ - } - - if (match[matchLength] < ip[matchLength]) { /* necessarily within buffer */ - /* match is smaller than current */ - *smallerPtr = matchIndex; /* update smaller idx */ - commonLengthSmaller = matchLength; /* all smaller will now have at least this guaranteed common length */ - if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ - DEBUGLOG(8, "ZSTD_insertDUBT1: %u (>btLow=%u) is smaller : next => %u", - matchIndex, btLow, nextPtr[1]); - smallerPtr = nextPtr+1; /* new "candidate" => larger than match, which was smaller than target */ - matchIndex = nextPtr[1]; /* new matchIndex, larger than previous and closer to current */ - } else { - /* match is larger than current */ - *largerPtr = matchIndex; - commonLengthLarger = matchLength; - if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop searching */ - DEBUGLOG(8, "ZSTD_insertDUBT1: %u (>btLow=%u) is larger => %u", - matchIndex, btLow, nextPtr[0]); - largerPtr = nextPtr; - matchIndex = nextPtr[0]; - } } - - *smallerPtr = *largerPtr = 0; -} - - -static size_t -ZSTD_DUBT_findBetterDictMatch ( - ZSTD_matchState_t* ms, - const BYTE* const ip, const BYTE* const iend, - size_t* offsetPtr, - size_t bestLength, - U32 nbCompares, - U32 const mls, - const ZSTD_dictMode_e dictMode) -{ - const ZSTD_matchState_t * const dms = ms->dictMatchState; - const ZSTD_compressionParameters* const dmsCParams = &dms->cParams; - const U32 * const dictHashTable = dms->hashTable; - U32 const hashLog = dmsCParams->hashLog; - size_t const h = ZSTD_hashPtr(ip, hashLog, mls); - U32 dictMatchIndex = dictHashTable[h]; - - const BYTE* const base = ms->window.base; - const BYTE* const prefixStart = base + ms->window.dictLimit; - U32 const current = (U32)(ip-base); - const BYTE* const dictBase = dms->window.base; - const BYTE* const dictEnd = dms->window.nextSrc; - U32 const dictHighLimit = (U32)(dms->window.nextSrc - dms->window.base); - U32 const dictLowLimit = dms->window.lowLimit; - U32 const dictIndexDelta = ms->window.lowLimit - dictHighLimit; - - U32* const dictBt = dms->chainTable; - U32 const btLog = dmsCParams->chainLog - 1; - U32 const btMask = (1 << btLog) - 1; - U32 const btLow = (btMask >= dictHighLimit - dictLowLimit) ? dictLowLimit : dictHighLimit - btMask; - - size_t commonLengthSmaller=0, commonLengthLarger=0; - - (void)dictMode; - assert(dictMode == ZSTD_dictMatchState); - - while (nbCompares-- && (dictMatchIndex > dictLowLimit)) { - U32* const nextPtr = dictBt + 2*(dictMatchIndex & btMask); - size_t matchLength = MIN(commonLengthSmaller, commonLengthLarger); /* guaranteed minimum nb of common bytes */ - const BYTE* match = dictBase + dictMatchIndex; - matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); - if (dictMatchIndex+matchLength >= dictHighLimit) - match = base + dictMatchIndex + dictIndexDelta; /* to prepare for next usage of match[matchLength] */ - - if (matchLength > bestLength) { - U32 matchIndex = dictMatchIndex + dictIndexDelta; - if ( (4*(int)(matchLength-bestLength)) > (int)(ZSTD_highbit32(current-matchIndex+1) - ZSTD_highbit32((U32)offsetPtr[0]+1)) ) { - DEBUGLOG(9, "ZSTD_DUBT_findBetterDictMatch(%u) : found better match length %u -> %u and offsetCode %u -> %u (dictMatchIndex %u, matchIndex %u)", - current, (U32)bestLength, (U32)matchLength, (U32)*offsetPtr, ZSTD_REP_MOVE + current - matchIndex, dictMatchIndex, matchIndex); - bestLength = matchLength, *offsetPtr = ZSTD_REP_MOVE + current - matchIndex; - } - if (ip+matchLength == iend) { /* reached end of input : ip[matchLength] is not valid, no way to know if it's larger or smaller than match */ - break; /* drop, to guarantee consistency (miss a little bit of compression) */ - } - } - - if (match[matchLength] < ip[matchLength]) { - if (dictMatchIndex <= btLow) { break; } /* beyond tree size, stop the search */ - commonLengthSmaller = matchLength; /* all smaller will now have at least this guaranteed common length */ - dictMatchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to current) */ - } else { - /* match is larger than current */ - if (dictMatchIndex <= btLow) { break; } /* beyond tree size, stop the search */ - commonLengthLarger = matchLength; - dictMatchIndex = nextPtr[0]; - } - } - - if (bestLength >= MINMATCH) { - U32 const mIndex = current - ((U32)*offsetPtr - ZSTD_REP_MOVE); (void)mIndex; - DEBUGLOG(8, "ZSTD_DUBT_findBetterDictMatch(%u) : found match of length %u and offsetCode %u (pos %u)", - current, (U32)bestLength, (U32)*offsetPtr, mIndex); - } - return bestLength; - -} - - -static size_t -ZSTD_DUBT_findBestMatch(ZSTD_matchState_t* ms, - const BYTE* const ip, const BYTE* const iend, - size_t* offsetPtr, - U32 const mls, - const ZSTD_dictMode_e dictMode) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const hashTable = ms->hashTable; - U32 const hashLog = cParams->hashLog; - size_t const h = ZSTD_hashPtr(ip, hashLog, mls); - U32 matchIndex = hashTable[h]; - - const BYTE* const base = ms->window.base; - U32 const current = (U32)(ip-base); - U32 const windowLow = ZSTD_getLowestMatchIndex(ms, current, cParams->windowLog); - - U32* const bt = ms->chainTable; - U32 const btLog = cParams->chainLog - 1; - U32 const btMask = (1 << btLog) - 1; - U32 const btLow = (btMask >= current) ? 0 : current - btMask; - U32 const unsortLimit = MAX(btLow, windowLow); - - U32* nextCandidate = bt + 2*(matchIndex&btMask); - U32* unsortedMark = bt + 2*(matchIndex&btMask) + 1; - U32 nbCompares = 1U << cParams->searchLog; - U32 nbCandidates = nbCompares; - U32 previousCandidate = 0; - - DEBUGLOG(7, "ZSTD_DUBT_findBestMatch (%u) ", current); - assert(ip <= iend-8); /* required for h calculation */ - - /* reach end of unsorted candidates list */ - while ( (matchIndex > unsortLimit) - && (*unsortedMark == ZSTD_DUBT_UNSORTED_MARK) - && (nbCandidates > 1) ) { - DEBUGLOG(8, "ZSTD_DUBT_findBestMatch: candidate %u is unsorted", - matchIndex); - *unsortedMark = previousCandidate; /* the unsortedMark becomes a reversed chain, to move up back to original position */ - previousCandidate = matchIndex; - matchIndex = *nextCandidate; - nextCandidate = bt + 2*(matchIndex&btMask); - unsortedMark = bt + 2*(matchIndex&btMask) + 1; - nbCandidates --; - } - - /* nullify last candidate if it's still unsorted - * simplification, detrimental to compression ratio, beneficial for speed */ - if ( (matchIndex > unsortLimit) - && (*unsortedMark==ZSTD_DUBT_UNSORTED_MARK) ) { - DEBUGLOG(7, "ZSTD_DUBT_findBestMatch: nullify last unsorted candidate %u", - matchIndex); - *nextCandidate = *unsortedMark = 0; - } - - /* batch sort stacked candidates */ - matchIndex = previousCandidate; - while (matchIndex) { /* will end on matchIndex == 0 */ - U32* const nextCandidateIdxPtr = bt + 2*(matchIndex&btMask) + 1; - U32 const nextCandidateIdx = *nextCandidateIdxPtr; - ZSTD_insertDUBT1(ms, matchIndex, iend, - nbCandidates, unsortLimit, dictMode); - matchIndex = nextCandidateIdx; - nbCandidates++; - } - - /* find longest match */ - { size_t commonLengthSmaller = 0, commonLengthLarger = 0; - const BYTE* const dictBase = ms->window.dictBase; - const U32 dictLimit = ms->window.dictLimit; - const BYTE* const dictEnd = dictBase + dictLimit; - const BYTE* const prefixStart = base + dictLimit; - U32* smallerPtr = bt + 2*(current&btMask); - U32* largerPtr = bt + 2*(current&btMask) + 1; - U32 matchEndIdx = current + 8 + 1; - U32 dummy32; /* to be nullified at the end */ - size_t bestLength = 0; - - matchIndex = hashTable[h]; - hashTable[h] = current; /* Update Hash Table */ - - while (nbCompares-- && (matchIndex > windowLow)) { - U32* const nextPtr = bt + 2*(matchIndex & btMask); - size_t matchLength = MIN(commonLengthSmaller, commonLengthLarger); /* guaranteed minimum nb of common bytes */ - const BYTE* match; - - if ((dictMode != ZSTD_extDict) || (matchIndex+matchLength >= dictLimit)) { - match = base + matchIndex; - matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); - } else { - match = dictBase + matchIndex; - matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); - if (matchIndex+matchLength >= dictLimit) - match = base + matchIndex; /* to prepare for next usage of match[matchLength] */ - } - - if (matchLength > bestLength) { - if (matchLength > matchEndIdx - matchIndex) - matchEndIdx = matchIndex + (U32)matchLength; - if ( (4*(int)(matchLength-bestLength)) > (int)(ZSTD_highbit32(current-matchIndex+1) - ZSTD_highbit32((U32)offsetPtr[0]+1)) ) - bestLength = matchLength, *offsetPtr = ZSTD_REP_MOVE + current - matchIndex; - if (ip+matchLength == iend) { /* equal : no way to know if inf or sup */ - if (dictMode == ZSTD_dictMatchState) { - nbCompares = 0; /* in addition to avoiding checking any - * further in this loop, make sure we - * skip checking in the dictionary. */ - } - break; /* drop, to guarantee consistency (miss a little bit of compression) */ - } - } - - if (match[matchLength] < ip[matchLength]) { - /* match is smaller than current */ - *smallerPtr = matchIndex; /* update smaller idx */ - commonLengthSmaller = matchLength; /* all smaller will now have at least this guaranteed common length */ - if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ - smallerPtr = nextPtr+1; /* new "smaller" => larger of match */ - matchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to current) */ - } else { - /* match is larger than current */ - *largerPtr = matchIndex; - commonLengthLarger = matchLength; - if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop the search */ - largerPtr = nextPtr; - matchIndex = nextPtr[0]; - } } - - *smallerPtr = *largerPtr = 0; - - if (dictMode == ZSTD_dictMatchState && nbCompares) { - bestLength = ZSTD_DUBT_findBetterDictMatch( - ms, ip, iend, - offsetPtr, bestLength, nbCompares, - mls, dictMode); - } - - assert(matchEndIdx > current+8); /* ensure nextToUpdate is increased */ - ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ - if (bestLength >= MINMATCH) { - U32 const mIndex = current - ((U32)*offsetPtr - ZSTD_REP_MOVE); (void)mIndex; - DEBUGLOG(8, "ZSTD_DUBT_findBestMatch(%u) : found match of length %u and offsetCode %u (pos %u)", - current, (U32)bestLength, (U32)*offsetPtr, mIndex); - } - return bestLength; - } -} - - -/** ZSTD_BtFindBestMatch() : Tree updater, providing best match */ -FORCE_INLINE_TEMPLATE size_t -ZSTD_BtFindBestMatch( ZSTD_matchState_t* ms, - const BYTE* const ip, const BYTE* const iLimit, - size_t* offsetPtr, - const U32 mls /* template */, - const ZSTD_dictMode_e dictMode) -{ - DEBUGLOG(7, "ZSTD_BtFindBestMatch"); - if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ - ZSTD_updateDUBT(ms, ip, iLimit, mls); - return ZSTD_DUBT_findBestMatch(ms, ip, iLimit, offsetPtr, mls, dictMode); -} - - -static size_t -ZSTD_BtFindBestMatch_selectMLS ( ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* const iLimit, - size_t* offsetPtr) -{ - switch(ms->cParams.minMatch) - { - default : /* includes case 3 */ - case 4 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 4, ZSTD_noDict); - case 5 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 5, ZSTD_noDict); - case 7 : - case 6 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 6, ZSTD_noDict); - } -} - - -static size_t ZSTD_BtFindBestMatch_dictMatchState_selectMLS ( - ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* const iLimit, - size_t* offsetPtr) -{ - switch(ms->cParams.minMatch) - { - default : /* includes case 3 */ - case 4 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 4, ZSTD_dictMatchState); - case 5 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 5, ZSTD_dictMatchState); - case 7 : - case 6 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 6, ZSTD_dictMatchState); - } -} - - -static size_t ZSTD_BtFindBestMatch_extDict_selectMLS ( - ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* const iLimit, - size_t* offsetPtr) -{ - switch(ms->cParams.minMatch) - { - default : /* includes case 3 */ - case 4 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 4, ZSTD_extDict); - case 5 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 5, ZSTD_extDict); - case 7 : - case 6 : return ZSTD_BtFindBestMatch(ms, ip, iLimit, offsetPtr, 6, ZSTD_extDict); - } -} - - - -/* ********************************* -* Hash Chain -***********************************/ -#define NEXT_IN_CHAIN(d, mask) chainTable[(d) & (mask)] - -/* Update chains up to ip (excluded) - Assumption : always within prefix (i.e. not within extDict) */ -static U32 ZSTD_insertAndFindFirstIndex_internal( - ZSTD_matchState_t* ms, - const ZSTD_compressionParameters* const cParams, - const BYTE* ip, U32 const mls) -{ - U32* const hashTable = ms->hashTable; - const U32 hashLog = cParams->hashLog; - U32* const chainTable = ms->chainTable; - const U32 chainMask = (1 << cParams->chainLog) - 1; - const BYTE* const base = ms->window.base; - const U32 target = (U32)(ip - base); - U32 idx = ms->nextToUpdate; - - while(idx < target) { /* catch up */ - size_t const h = ZSTD_hashPtr(base+idx, hashLog, mls); - NEXT_IN_CHAIN(idx, chainMask) = hashTable[h]; - hashTable[h] = idx; - idx++; - } - - ms->nextToUpdate = target; - return hashTable[ZSTD_hashPtr(ip, hashLog, mls)]; -} - -U32 ZSTD_insertAndFindFirstIndex(ZSTD_matchState_t* ms, const BYTE* ip) { - const ZSTD_compressionParameters* const cParams = &ms->cParams; - return ZSTD_insertAndFindFirstIndex_internal(ms, cParams, ip, ms->cParams.minMatch); -} - - -/* inlining is important to hardwire a hot branch (template emulation) */ -FORCE_INLINE_TEMPLATE -size_t ZSTD_HcFindBestMatch_generic ( - ZSTD_matchState_t* ms, - const BYTE* const ip, const BYTE* const iLimit, - size_t* offsetPtr, - const U32 mls, const ZSTD_dictMode_e dictMode) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const chainTable = ms->chainTable; - const U32 chainSize = (1 << cParams->chainLog); - const U32 chainMask = chainSize-1; - const BYTE* const base = ms->window.base; - const BYTE* const dictBase = ms->window.dictBase; - const U32 dictLimit = ms->window.dictLimit; - const BYTE* const prefixStart = base + dictLimit; - const BYTE* const dictEnd = dictBase + dictLimit; - const U32 current = (U32)(ip-base); - const U32 maxDistance = 1U << cParams->windowLog; - const U32 lowestValid = ms->window.lowLimit; - const U32 withinMaxDistance = (current - lowestValid > maxDistance) ? current - maxDistance : lowestValid; - const U32 isDictionary = (ms->loadedDictEnd != 0); - const U32 lowLimit = isDictionary ? lowestValid : withinMaxDistance; - const U32 minChain = current > chainSize ? current - chainSize : 0; - U32 nbAttempts = 1U << cParams->searchLog; - size_t ml=4-1; - - /* HC4 match finder */ - U32 matchIndex = ZSTD_insertAndFindFirstIndex_internal(ms, cParams, ip, mls); - - for ( ; (matchIndex>lowLimit) & (nbAttempts>0) ; nbAttempts--) { - size_t currentMl=0; - if ((dictMode != ZSTD_extDict) || matchIndex >= dictLimit) { - const BYTE* const match = base + matchIndex; - assert(matchIndex >= dictLimit); /* ensures this is true if dictMode != ZSTD_extDict */ - if (match[ml] == ip[ml]) /* potentially better */ - currentMl = ZSTD_count(ip, match, iLimit); - } else { - const BYTE* const match = dictBase + matchIndex; - assert(match+4 <= dictEnd); - if (MEM_read32(match) == MEM_read32(ip)) /* assumption : matchIndex <= dictLimit-4 (by table construction) */ - currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dictEnd, prefixStart) + 4; - } - - /* save best solution */ - if (currentMl > ml) { - ml = currentMl; - *offsetPtr = current - matchIndex + ZSTD_REP_MOVE; - if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ - } - - if (matchIndex <= minChain) break; - matchIndex = NEXT_IN_CHAIN(matchIndex, chainMask); - } - - if (dictMode == ZSTD_dictMatchState) { - const ZSTD_matchState_t* const dms = ms->dictMatchState; - const U32* const dmsChainTable = dms->chainTable; - const U32 dmsChainSize = (1 << dms->cParams.chainLog); - const U32 dmsChainMask = dmsChainSize - 1; - const U32 dmsLowestIndex = dms->window.dictLimit; - const BYTE* const dmsBase = dms->window.base; - const BYTE* const dmsEnd = dms->window.nextSrc; - const U32 dmsSize = (U32)(dmsEnd - dmsBase); - const U32 dmsIndexDelta = dictLimit - dmsSize; - const U32 dmsMinChain = dmsSize > dmsChainSize ? dmsSize - dmsChainSize : 0; - - matchIndex = dms->hashTable[ZSTD_hashPtr(ip, dms->cParams.hashLog, mls)]; - - for ( ; (matchIndex>dmsLowestIndex) & (nbAttempts>0) ; nbAttempts--) { - size_t currentMl=0; - const BYTE* const match = dmsBase + matchIndex; - assert(match+4 <= dmsEnd); - if (MEM_read32(match) == MEM_read32(ip)) /* assumption : matchIndex <= dictLimit-4 (by table construction) */ - currentMl = ZSTD_count_2segments(ip+4, match+4, iLimit, dmsEnd, prefixStart) + 4; - - /* save best solution */ - if (currentMl > ml) { - ml = currentMl; - *offsetPtr = current - (matchIndex + dmsIndexDelta) + ZSTD_REP_MOVE; - if (ip+currentMl == iLimit) break; /* best possible, avoids read overflow on next attempt */ - } - - if (matchIndex <= dmsMinChain) break; - matchIndex = dmsChainTable[matchIndex & dmsChainMask]; - } - } - - return ml; -} - - -FORCE_INLINE_TEMPLATE size_t ZSTD_HcFindBestMatch_selectMLS ( - ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* const iLimit, - size_t* offsetPtr) -{ - switch(ms->cParams.minMatch) - { - default : /* includes case 3 */ - case 4 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 4, ZSTD_noDict); - case 5 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 5, ZSTD_noDict); - case 7 : - case 6 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 6, ZSTD_noDict); - } -} - - -static size_t ZSTD_HcFindBestMatch_dictMatchState_selectMLS ( - ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* const iLimit, - size_t* offsetPtr) -{ - switch(ms->cParams.minMatch) - { - default : /* includes case 3 */ - case 4 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 4, ZSTD_dictMatchState); - case 5 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 5, ZSTD_dictMatchState); - case 7 : - case 6 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 6, ZSTD_dictMatchState); - } -} - - -FORCE_INLINE_TEMPLATE size_t ZSTD_HcFindBestMatch_extDict_selectMLS ( - ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* const iLimit, - size_t* offsetPtr) -{ - switch(ms->cParams.minMatch) - { - default : /* includes case 3 */ - case 4 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 4, ZSTD_extDict); - case 5 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 5, ZSTD_extDict); - case 7 : - case 6 : return ZSTD_HcFindBestMatch_generic(ms, ip, iLimit, offsetPtr, 6, ZSTD_extDict); - } -} - - -/* ******************************* -* Common parser - lazy strategy -*********************************/ -typedef enum { search_hashChain, search_binaryTree } searchMethod_e; - -FORCE_INLINE_TEMPLATE size_t -ZSTD_compressBlock_lazy_generic( - ZSTD_matchState_t* ms, seqStore_t* seqStore, - U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize, - const searchMethod_e searchMethod, const U32 depth, - ZSTD_dictMode_e const dictMode) -{ - const BYTE* const istart = (const BYTE*)src; - const BYTE* ip = istart; - const BYTE* anchor = istart; - const BYTE* const iend = istart + srcSize; - const BYTE* const ilimit = iend - 8; - const BYTE* const base = ms->window.base; - const U32 prefixLowestIndex = ms->window.dictLimit; - const BYTE* const prefixLowest = base + prefixLowestIndex; - - typedef size_t (*searchMax_f)( - ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* iLimit, size_t* offsetPtr); - searchMax_f const searchMax = dictMode == ZSTD_dictMatchState ? - (searchMethod==search_binaryTree ? ZSTD_BtFindBestMatch_dictMatchState_selectMLS - : ZSTD_HcFindBestMatch_dictMatchState_selectMLS) : - (searchMethod==search_binaryTree ? ZSTD_BtFindBestMatch_selectMLS - : ZSTD_HcFindBestMatch_selectMLS); - U32 offset_1 = rep[0], offset_2 = rep[1], savedOffset=0; - - const ZSTD_matchState_t* const dms = ms->dictMatchState; - const U32 dictLowestIndex = dictMode == ZSTD_dictMatchState ? - dms->window.dictLimit : 0; - const BYTE* const dictBase = dictMode == ZSTD_dictMatchState ? - dms->window.base : NULL; - const BYTE* const dictLowest = dictMode == ZSTD_dictMatchState ? - dictBase + dictLowestIndex : NULL; - const BYTE* const dictEnd = dictMode == ZSTD_dictMatchState ? - dms->window.nextSrc : NULL; - const U32 dictIndexDelta = dictMode == ZSTD_dictMatchState ? - prefixLowestIndex - (U32)(dictEnd - dictBase) : - 0; - const U32 dictAndPrefixLength = (U32)((ip - prefixLowest) + (dictEnd - dictLowest)); - - DEBUGLOG(5, "ZSTD_compressBlock_lazy_generic (dictMode=%u)", (U32)dictMode); - - /* init */ - ip += (dictAndPrefixLength == 0); - if (dictMode == ZSTD_noDict) { - U32 const current = (U32)(ip - base); - U32 const windowLow = ZSTD_getLowestPrefixIndex(ms, current, ms->cParams.windowLog); - U32 const maxRep = current - windowLow; - if (offset_2 > maxRep) savedOffset = offset_2, offset_2 = 0; - if (offset_1 > maxRep) savedOffset = offset_1, offset_1 = 0; - } - if (dictMode == ZSTD_dictMatchState) { - /* dictMatchState repCode checks don't currently handle repCode == 0 - * disabling. */ - assert(offset_1 <= dictAndPrefixLength); - assert(offset_2 <= dictAndPrefixLength); - } - - /* Match Loop */ -#if defined(__GNUC__) && defined(__x86_64__) - /* I've measured random a 5% speed loss on levels 5 & 6 (greedy) when the - * code alignment is perturbed. To fix the instability align the loop on 32-bytes. - */ - __asm__(".p2align 5"); -#endif - while (ip < ilimit) { - size_t matchLength=0; - size_t offset=0; - const BYTE* start=ip+1; - - /* check repCode */ - if (dictMode == ZSTD_dictMatchState) { - const U32 repIndex = (U32)(ip - base) + 1 - offset_1; - const BYTE* repMatch = (dictMode == ZSTD_dictMatchState - && repIndex < prefixLowestIndex) ? - dictBase + (repIndex - dictIndexDelta) : - base + repIndex; - if (((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) - && (MEM_read32(repMatch) == MEM_read32(ip+1)) ) { - const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; - matchLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4; - if (depth==0) goto _storeSequence; - } - } - if ( dictMode == ZSTD_noDict - && ((offset_1 > 0) & (MEM_read32(ip+1-offset_1) == MEM_read32(ip+1)))) { - matchLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4; - if (depth==0) goto _storeSequence; - } - - /* first search (depth 0) */ - { size_t offsetFound = 999999999; - size_t const ml2 = searchMax(ms, ip, iend, &offsetFound); - if (ml2 > matchLength) - matchLength = ml2, start = ip, offset=offsetFound; - } - - if (matchLength < 4) { - ip += ((ip-anchor) >> kSearchStrength) + 1; /* jump faster over incompressible sections */ - continue; - } - - /* let's try to find a better solution */ - if (depth>=1) - while (ip0) & (MEM_read32(ip) == MEM_read32(ip - offset_1)))) { - size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4; - int const gain2 = (int)(mlRep * 3); - int const gain1 = (int)(matchLength*3 - ZSTD_highbit32((U32)offset+1) + 1); - if ((mlRep >= 4) && (gain2 > gain1)) - matchLength = mlRep, offset = 0, start = ip; - } - if (dictMode == ZSTD_dictMatchState) { - const U32 repIndex = (U32)(ip - base) - offset_1; - const BYTE* repMatch = repIndex < prefixLowestIndex ? - dictBase + (repIndex - dictIndexDelta) : - base + repIndex; - if (((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) - && (MEM_read32(repMatch) == MEM_read32(ip)) ) { - const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; - size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4; - int const gain2 = (int)(mlRep * 3); - int const gain1 = (int)(matchLength*3 - ZSTD_highbit32((U32)offset+1) + 1); - if ((mlRep >= 4) && (gain2 > gain1)) - matchLength = mlRep, offset = 0, start = ip; - } - } - { size_t offset2=999999999; - size_t const ml2 = searchMax(ms, ip, iend, &offset2); - int const gain2 = (int)(ml2*4 - ZSTD_highbit32((U32)offset2+1)); /* raw approx */ - int const gain1 = (int)(matchLength*4 - ZSTD_highbit32((U32)offset+1) + 4); - if ((ml2 >= 4) && (gain2 > gain1)) { - matchLength = ml2, offset = offset2, start = ip; - continue; /* search a better one */ - } } - - /* let's find an even better one */ - if ((depth==2) && (ip0) & (MEM_read32(ip) == MEM_read32(ip - offset_1)))) { - size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4; - int const gain2 = (int)(mlRep * 4); - int const gain1 = (int)(matchLength*4 - ZSTD_highbit32((U32)offset+1) + 1); - if ((mlRep >= 4) && (gain2 > gain1)) - matchLength = mlRep, offset = 0, start = ip; - } - if (dictMode == ZSTD_dictMatchState) { - const U32 repIndex = (U32)(ip - base) - offset_1; - const BYTE* repMatch = repIndex < prefixLowestIndex ? - dictBase + (repIndex - dictIndexDelta) : - base + repIndex; - if (((U32)((prefixLowestIndex-1) - repIndex) >= 3 /* intentional underflow */) - && (MEM_read32(repMatch) == MEM_read32(ip)) ) { - const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; - size_t const mlRep = ZSTD_count_2segments(ip+4, repMatch+4, iend, repMatchEnd, prefixLowest) + 4; - int const gain2 = (int)(mlRep * 4); - int const gain1 = (int)(matchLength*4 - ZSTD_highbit32((U32)offset+1) + 1); - if ((mlRep >= 4) && (gain2 > gain1)) - matchLength = mlRep, offset = 0, start = ip; - } - } - { size_t offset2=999999999; - size_t const ml2 = searchMax(ms, ip, iend, &offset2); - int const gain2 = (int)(ml2*4 - ZSTD_highbit32((U32)offset2+1)); /* raw approx */ - int const gain1 = (int)(matchLength*4 - ZSTD_highbit32((U32)offset+1) + 7); - if ((ml2 >= 4) && (gain2 > gain1)) { - matchLength = ml2, offset = offset2, start = ip; - continue; - } } } - break; /* nothing found : store previous solution */ - } - - /* NOTE: - * start[-offset+ZSTD_REP_MOVE-1] is undefined behavior. - * (-offset+ZSTD_REP_MOVE-1) is unsigned, and is added to start, which - * overflows the pointer, which is undefined behavior. - */ - /* catch up */ - if (offset) { - if (dictMode == ZSTD_noDict) { - while ( ((start > anchor) & (start - (offset-ZSTD_REP_MOVE) > prefixLowest)) - && (start[-1] == (start-(offset-ZSTD_REP_MOVE))[-1]) ) /* only search for offset within prefix */ - { start--; matchLength++; } - } - if (dictMode == ZSTD_dictMatchState) { - U32 const matchIndex = (U32)((start-base) - (offset - ZSTD_REP_MOVE)); - const BYTE* match = (matchIndex < prefixLowestIndex) ? dictBase + matchIndex - dictIndexDelta : base + matchIndex; - const BYTE* const mStart = (matchIndex < prefixLowestIndex) ? dictLowest : prefixLowest; - while ((start>anchor) && (match>mStart) && (start[-1] == match[-1])) { start--; match--; matchLength++; } /* catch up */ - } - offset_2 = offset_1; offset_1 = (U32)(offset - ZSTD_REP_MOVE); - } - /* store sequence */ -_storeSequence: - { size_t const litLength = start - anchor; - ZSTD_storeSeq(seqStore, litLength, anchor, iend, (U32)offset, matchLength-MINMATCH); - anchor = ip = start + matchLength; - } - - /* check immediate repcode */ - if (dictMode == ZSTD_dictMatchState) { - while (ip <= ilimit) { - U32 const current2 = (U32)(ip-base); - U32 const repIndex = current2 - offset_2; - const BYTE* repMatch = dictMode == ZSTD_dictMatchState - && repIndex < prefixLowestIndex ? - dictBase - dictIndexDelta + repIndex : - base + repIndex; - if ( ((U32)((prefixLowestIndex-1) - (U32)repIndex) >= 3 /* intentional overflow */) - && (MEM_read32(repMatch) == MEM_read32(ip)) ) { - const BYTE* const repEnd2 = repIndex < prefixLowestIndex ? dictEnd : iend; - matchLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd2, prefixLowest) + 4; - offset = offset_2; offset_2 = offset_1; offset_1 = (U32)offset; /* swap offset_2 <=> offset_1 */ - ZSTD_storeSeq(seqStore, 0, anchor, iend, 0, matchLength-MINMATCH); - ip += matchLength; - anchor = ip; - continue; - } - break; - } - } - - if (dictMode == ZSTD_noDict) { - while ( ((ip <= ilimit) & (offset_2>0)) - && (MEM_read32(ip) == MEM_read32(ip - offset_2)) ) { - /* store sequence */ - matchLength = ZSTD_count(ip+4, ip+4-offset_2, iend) + 4; - offset = offset_2; offset_2 = offset_1; offset_1 = (U32)offset; /* swap repcodes */ - ZSTD_storeSeq(seqStore, 0, anchor, iend, 0, matchLength-MINMATCH); - ip += matchLength; - anchor = ip; - continue; /* faster when present ... (?) */ - } } } - - /* Save reps for next block */ - rep[0] = offset_1 ? offset_1 : savedOffset; - rep[1] = offset_2 ? offset_2 : savedOffset; - - /* Return the last literals size */ - return (size_t)(iend - anchor); -} - - -size_t ZSTD_compressBlock_btlazy2( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_binaryTree, 2, ZSTD_noDict); -} - -size_t ZSTD_compressBlock_lazy2( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 2, ZSTD_noDict); -} - -size_t ZSTD_compressBlock_lazy( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 1, ZSTD_noDict); -} - -size_t ZSTD_compressBlock_greedy( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 0, ZSTD_noDict); -} - -size_t ZSTD_compressBlock_btlazy2_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_binaryTree, 2, ZSTD_dictMatchState); -} - -size_t ZSTD_compressBlock_lazy2_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 2, ZSTD_dictMatchState); -} - -size_t ZSTD_compressBlock_lazy_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 1, ZSTD_dictMatchState); -} - -size_t ZSTD_compressBlock_greedy_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 0, ZSTD_dictMatchState); -} - - -FORCE_INLINE_TEMPLATE -size_t ZSTD_compressBlock_lazy_extDict_generic( - ZSTD_matchState_t* ms, seqStore_t* seqStore, - U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize, - const searchMethod_e searchMethod, const U32 depth) -{ - const BYTE* const istart = (const BYTE*)src; - const BYTE* ip = istart; - const BYTE* anchor = istart; - const BYTE* const iend = istart + srcSize; - const BYTE* const ilimit = iend - 8; - const BYTE* const base = ms->window.base; - const U32 dictLimit = ms->window.dictLimit; - const BYTE* const prefixStart = base + dictLimit; - const BYTE* const dictBase = ms->window.dictBase; - const BYTE* const dictEnd = dictBase + dictLimit; - const BYTE* const dictStart = dictBase + ms->window.lowLimit; - const U32 windowLog = ms->cParams.windowLog; - - typedef size_t (*searchMax_f)( - ZSTD_matchState_t* ms, - const BYTE* ip, const BYTE* iLimit, size_t* offsetPtr); - searchMax_f searchMax = searchMethod==search_binaryTree ? ZSTD_BtFindBestMatch_extDict_selectMLS : ZSTD_HcFindBestMatch_extDict_selectMLS; - - U32 offset_1 = rep[0], offset_2 = rep[1]; - - DEBUGLOG(5, "ZSTD_compressBlock_lazy_extDict_generic"); - - /* init */ - ip += (ip == prefixStart); - - /* Match Loop */ -#if defined(__GNUC__) && defined(__x86_64__) - /* I've measured random a 5% speed loss on levels 5 & 6 (greedy) when the - * code alignment is perturbed. To fix the instability align the loop on 32-bytes. - */ - __asm__(".p2align 5"); -#endif - while (ip < ilimit) { - size_t matchLength=0; - size_t offset=0; - const BYTE* start=ip+1; - U32 current = (U32)(ip-base); - - /* check repCode */ - { const U32 windowLow = ZSTD_getLowestMatchIndex(ms, current+1, windowLog); - const U32 repIndex = (U32)(current+1 - offset_1); - const BYTE* const repBase = repIndex < dictLimit ? dictBase : base; - const BYTE* const repMatch = repBase + repIndex; - if (((U32)((dictLimit-1) - repIndex) >= 3) & (repIndex > windowLow)) /* intentional overflow */ - if (MEM_read32(ip+1) == MEM_read32(repMatch)) { - /* repcode detected we should take it */ - const BYTE* const repEnd = repIndex < dictLimit ? dictEnd : iend; - matchLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repEnd, prefixStart) + 4; - if (depth==0) goto _storeSequence; - } } - - /* first search (depth 0) */ - { size_t offsetFound = 999999999; - size_t const ml2 = searchMax(ms, ip, iend, &offsetFound); - if (ml2 > matchLength) - matchLength = ml2, start = ip, offset=offsetFound; - } - - if (matchLength < 4) { - ip += ((ip-anchor) >> kSearchStrength) + 1; /* jump faster over incompressible sections */ - continue; - } - - /* let's try to find a better solution */ - if (depth>=1) - while (ip= 3) & (repIndex > windowLow)) /* intentional overflow */ - if (MEM_read32(ip) == MEM_read32(repMatch)) { - /* repcode detected */ - const BYTE* const repEnd = repIndex < dictLimit ? dictEnd : iend; - size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; - int const gain2 = (int)(repLength * 3); - int const gain1 = (int)(matchLength*3 - ZSTD_highbit32((U32)offset+1) + 1); - if ((repLength >= 4) && (gain2 > gain1)) - matchLength = repLength, offset = 0, start = ip; - } } - - /* search match, depth 1 */ - { size_t offset2=999999999; - size_t const ml2 = searchMax(ms, ip, iend, &offset2); - int const gain2 = (int)(ml2*4 - ZSTD_highbit32((U32)offset2+1)); /* raw approx */ - int const gain1 = (int)(matchLength*4 - ZSTD_highbit32((U32)offset+1) + 4); - if ((ml2 >= 4) && (gain2 > gain1)) { - matchLength = ml2, offset = offset2, start = ip; - continue; /* search a better one */ - } } - - /* let's find an even better one */ - if ((depth==2) && (ip= 3) & (repIndex > windowLow)) /* intentional overflow */ - if (MEM_read32(ip) == MEM_read32(repMatch)) { - /* repcode detected */ - const BYTE* const repEnd = repIndex < dictLimit ? dictEnd : iend; - size_t const repLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; - int const gain2 = (int)(repLength * 4); - int const gain1 = (int)(matchLength*4 - ZSTD_highbit32((U32)offset+1) + 1); - if ((repLength >= 4) && (gain2 > gain1)) - matchLength = repLength, offset = 0, start = ip; - } } - - /* search match, depth 2 */ - { size_t offset2=999999999; - size_t const ml2 = searchMax(ms, ip, iend, &offset2); - int const gain2 = (int)(ml2*4 - ZSTD_highbit32((U32)offset2+1)); /* raw approx */ - int const gain1 = (int)(matchLength*4 - ZSTD_highbit32((U32)offset+1) + 7); - if ((ml2 >= 4) && (gain2 > gain1)) { - matchLength = ml2, offset = offset2, start = ip; - continue; - } } } - break; /* nothing found : store previous solution */ - } - - /* catch up */ - if (offset) { - U32 const matchIndex = (U32)((start-base) - (offset - ZSTD_REP_MOVE)); - const BYTE* match = (matchIndex < dictLimit) ? dictBase + matchIndex : base + matchIndex; - const BYTE* const mStart = (matchIndex < dictLimit) ? dictStart : prefixStart; - while ((start>anchor) && (match>mStart) && (start[-1] == match[-1])) { start--; match--; matchLength++; } /* catch up */ - offset_2 = offset_1; offset_1 = (U32)(offset - ZSTD_REP_MOVE); - } - - /* store sequence */ -_storeSequence: - { size_t const litLength = start - anchor; - ZSTD_storeSeq(seqStore, litLength, anchor, iend, (U32)offset, matchLength-MINMATCH); - anchor = ip = start + matchLength; - } - - /* check immediate repcode */ - while (ip <= ilimit) { - const U32 repCurrent = (U32)(ip-base); - const U32 windowLow = ZSTD_getLowestMatchIndex(ms, repCurrent, windowLog); - const U32 repIndex = repCurrent - offset_2; - const BYTE* const repBase = repIndex < dictLimit ? dictBase : base; - const BYTE* const repMatch = repBase + repIndex; - if (((U32)((dictLimit-1) - repIndex) >= 3) & (repIndex > windowLow)) /* intentional overflow */ - if (MEM_read32(ip) == MEM_read32(repMatch)) { - /* repcode detected we should take it */ - const BYTE* const repEnd = repIndex < dictLimit ? dictEnd : iend; - matchLength = ZSTD_count_2segments(ip+4, repMatch+4, iend, repEnd, prefixStart) + 4; - offset = offset_2; offset_2 = offset_1; offset_1 = (U32)offset; /* swap offset history */ - ZSTD_storeSeq(seqStore, 0, anchor, iend, 0, matchLength-MINMATCH); - ip += matchLength; - anchor = ip; - continue; /* faster when present ... (?) */ - } - break; - } } - - /* Save reps for next block */ - rep[0] = offset_1; - rep[1] = offset_2; - - /* Return the last literals size */ - return (size_t)(iend - anchor); -} - - -size_t ZSTD_compressBlock_greedy_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 0); -} - -size_t ZSTD_compressBlock_lazy_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) - -{ - return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 1); -} - -size_t ZSTD_compressBlock_lazy2_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) - -{ - return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_hashChain, 2); -} - -size_t ZSTD_compressBlock_btlazy2_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) - -{ - return ZSTD_compressBlock_lazy_extDict_generic(ms, seqStore, rep, src, srcSize, search_binaryTree, 2); -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_lazy.h b/lib/SZ3/tools/zstd/compress/zstd_lazy.h deleted file mode 100644 index 581936f0..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_lazy.h +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_LAZY_H -#define ZSTD_LAZY_H - -#if defined (__cplusplus) -extern "C" { -#endif - -#include "zstd_compress_internal.h" - -U32 ZSTD_insertAndFindFirstIndex(ZSTD_matchState_t* ms, const BYTE* ip); - -void ZSTD_preserveUnsortedMark (U32* const table, U32 const size, U32 const reducerValue); /*! used in ZSTD_reduceIndex(). preemptively increase value of ZSTD_DUBT_UNSORTED_MARK */ - -size_t ZSTD_compressBlock_btlazy2( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_lazy2( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_lazy( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_greedy( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - -size_t ZSTD_compressBlock_btlazy2_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_lazy2_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_lazy_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_greedy_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - -size_t ZSTD_compressBlock_greedy_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_lazy_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_lazy2_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_btlazy2_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_LAZY_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_ldm.c b/lib/SZ3/tools/zstd/compress/zstd_ldm.c deleted file mode 100644 index 8c479483..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_ldm.c +++ /dev/null @@ -1,619 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#include "zstd_ldm.h" - -#include "../common/debug.h" -#include "zstd_fast.h" /* ZSTD_fillHashTable() */ -#include "zstd_double_fast.h" /* ZSTD_fillDoubleHashTable() */ - -#define LDM_BUCKET_SIZE_LOG 3 -#define LDM_MIN_MATCH_LENGTH 64 -#define LDM_HASH_RLOG 7 -#define LDM_HASH_CHAR_OFFSET 10 - -void ZSTD_ldm_adjustParameters(ldmParams_t* params, - ZSTD_compressionParameters const* cParams) -{ - params->windowLog = cParams->windowLog; - ZSTD_STATIC_ASSERT(LDM_BUCKET_SIZE_LOG <= ZSTD_LDM_BUCKETSIZELOG_MAX); - DEBUGLOG(4, "ZSTD_ldm_adjustParameters"); - if (!params->bucketSizeLog) params->bucketSizeLog = LDM_BUCKET_SIZE_LOG; - if (!params->minMatchLength) params->minMatchLength = LDM_MIN_MATCH_LENGTH; - if (cParams->strategy >= ZSTD_btopt) { - /* Get out of the way of the optimal parser */ - U32 const minMatch = MAX(cParams->targetLength, params->minMatchLength); - assert(minMatch >= ZSTD_LDM_MINMATCH_MIN); - assert(minMatch <= ZSTD_LDM_MINMATCH_MAX); - params->minMatchLength = minMatch; - } - if (params->hashLog == 0) { - params->hashLog = MAX(ZSTD_HASHLOG_MIN, params->windowLog - LDM_HASH_RLOG); - assert(params->hashLog <= ZSTD_HASHLOG_MAX); - } - if (params->hashRateLog == 0) { - params->hashRateLog = params->windowLog < params->hashLog - ? 0 - : params->windowLog - params->hashLog; - } - params->bucketSizeLog = MIN(params->bucketSizeLog, params->hashLog); -} - -size_t ZSTD_ldm_getTableSize(ldmParams_t params) -{ - size_t const ldmHSize = ((size_t)1) << params.hashLog; - size_t const ldmBucketSizeLog = MIN(params.bucketSizeLog, params.hashLog); - size_t const ldmBucketSize = ((size_t)1) << (params.hashLog - ldmBucketSizeLog); - size_t const totalSize = ZSTD_cwksp_alloc_size(ldmBucketSize) - + ZSTD_cwksp_alloc_size(ldmHSize * sizeof(ldmEntry_t)); - return params.enableLdm ? totalSize : 0; -} - -size_t ZSTD_ldm_getMaxNbSeq(ldmParams_t params, size_t maxChunkSize) -{ - return params.enableLdm ? (maxChunkSize / params.minMatchLength) : 0; -} - -/** ZSTD_ldm_getSmallHash() : - * numBits should be <= 32 - * If numBits==0, returns 0. - * @return : the most significant numBits of value. */ -static U32 ZSTD_ldm_getSmallHash(U64 value, U32 numBits) -{ - assert(numBits <= 32); - return numBits == 0 ? 0 : (U32)(value >> (64 - numBits)); -} - -/** ZSTD_ldm_getChecksum() : - * numBitsToDiscard should be <= 32 - * @return : the next most significant 32 bits after numBitsToDiscard */ -static U32 ZSTD_ldm_getChecksum(U64 hash, U32 numBitsToDiscard) -{ - assert(numBitsToDiscard <= 32); - return (hash >> (64 - 32 - numBitsToDiscard)) & 0xFFFFFFFF; -} - -/** ZSTD_ldm_getTag() ; - * Given the hash, returns the most significant numTagBits bits - * after (32 + hbits) bits. - * - * If there are not enough bits remaining, return the last - * numTagBits bits. */ -static U32 ZSTD_ldm_getTag(U64 hash, U32 hbits, U32 numTagBits) -{ - assert(numTagBits < 32 && hbits <= 32); - if (32 - hbits < numTagBits) { - return hash & (((U32)1 << numTagBits) - 1); - } else { - return (hash >> (32 - hbits - numTagBits)) & (((U32)1 << numTagBits) - 1); - } -} - -/** ZSTD_ldm_getBucket() : - * Returns a pointer to the start of the bucket associated with hash. */ -static ldmEntry_t* ZSTD_ldm_getBucket( - ldmState_t* ldmState, size_t hash, ldmParams_t const ldmParams) -{ - return ldmState->hashTable + (hash << ldmParams.bucketSizeLog); -} - -/** ZSTD_ldm_insertEntry() : - * Insert the entry with corresponding hash into the hash table */ -static void ZSTD_ldm_insertEntry(ldmState_t* ldmState, - size_t const hash, const ldmEntry_t entry, - ldmParams_t const ldmParams) -{ - BYTE* const bucketOffsets = ldmState->bucketOffsets; - *(ZSTD_ldm_getBucket(ldmState, hash, ldmParams) + bucketOffsets[hash]) = entry; - bucketOffsets[hash]++; - bucketOffsets[hash] &= ((U32)1 << ldmParams.bucketSizeLog) - 1; -} - -/** ZSTD_ldm_makeEntryAndInsertByTag() : - * - * Gets the small hash, checksum, and tag from the rollingHash. - * - * If the tag matches (1 << ldmParams.hashRateLog)-1, then - * creates an ldmEntry from the offset, and inserts it into the hash table. - * - * hBits is the length of the small hash, which is the most significant hBits - * of rollingHash. The checksum is the next 32 most significant bits, followed - * by ldmParams.hashRateLog bits that make up the tag. */ -static void ZSTD_ldm_makeEntryAndInsertByTag(ldmState_t* ldmState, - U64 const rollingHash, - U32 const hBits, - U32 const offset, - ldmParams_t const ldmParams) -{ - U32 const tag = ZSTD_ldm_getTag(rollingHash, hBits, ldmParams.hashRateLog); - U32 const tagMask = ((U32)1 << ldmParams.hashRateLog) - 1; - if (tag == tagMask) { - U32 const hash = ZSTD_ldm_getSmallHash(rollingHash, hBits); - U32 const checksum = ZSTD_ldm_getChecksum(rollingHash, hBits); - ldmEntry_t entry; - entry.offset = offset; - entry.checksum = checksum; - ZSTD_ldm_insertEntry(ldmState, hash, entry, ldmParams); - } -} - -/** ZSTD_ldm_countBackwardsMatch() : - * Returns the number of bytes that match backwards before pIn and pMatch. - * - * We count only bytes where pMatch >= pBase and pIn >= pAnchor. */ -static size_t ZSTD_ldm_countBackwardsMatch( - const BYTE* pIn, const BYTE* pAnchor, - const BYTE* pMatch, const BYTE* pBase) -{ - size_t matchLength = 0; - while (pIn > pAnchor && pMatch > pBase && pIn[-1] == pMatch[-1]) { - pIn--; - pMatch--; - matchLength++; - } - return matchLength; -} - -/** ZSTD_ldm_fillFastTables() : - * - * Fills the relevant tables for the ZSTD_fast and ZSTD_dfast strategies. - * This is similar to ZSTD_loadDictionaryContent. - * - * The tables for the other strategies are filled within their - * block compressors. */ -static size_t ZSTD_ldm_fillFastTables(ZSTD_matchState_t* ms, - void const* end) -{ - const BYTE* const iend = (const BYTE*)end; - - switch(ms->cParams.strategy) - { - case ZSTD_fast: - ZSTD_fillHashTable(ms, iend, ZSTD_dtlm_fast); - break; - - case ZSTD_dfast: - ZSTD_fillDoubleHashTable(ms, iend, ZSTD_dtlm_fast); - break; - - case ZSTD_greedy: - case ZSTD_lazy: - case ZSTD_lazy2: - case ZSTD_btlazy2: - case ZSTD_btopt: - case ZSTD_btultra: - case ZSTD_btultra2: - break; - default: - assert(0); /* not possible : not a valid strategy id */ - } - - return 0; -} - -/** ZSTD_ldm_fillLdmHashTable() : - * - * Fills hashTable from (lastHashed + 1) to iend (non-inclusive). - * lastHash is the rolling hash that corresponds to lastHashed. - * - * Returns the rolling hash corresponding to position iend-1. */ -static U64 ZSTD_ldm_fillLdmHashTable(ldmState_t* state, - U64 lastHash, const BYTE* lastHashed, - const BYTE* iend, const BYTE* base, - U32 hBits, ldmParams_t const ldmParams) -{ - U64 rollingHash = lastHash; - const BYTE* cur = lastHashed + 1; - - while (cur < iend) { - rollingHash = ZSTD_rollingHash_rotate(rollingHash, cur[-1], - cur[ldmParams.minMatchLength-1], - state->hashPower); - ZSTD_ldm_makeEntryAndInsertByTag(state, - rollingHash, hBits, - (U32)(cur - base), ldmParams); - ++cur; - } - return rollingHash; -} - -void ZSTD_ldm_fillHashTable( - ldmState_t* state, const BYTE* ip, - const BYTE* iend, ldmParams_t const* params) -{ - DEBUGLOG(5, "ZSTD_ldm_fillHashTable"); - if ((size_t)(iend - ip) >= params->minMatchLength) { - U64 startingHash = ZSTD_rollingHash_compute(ip, params->minMatchLength); - ZSTD_ldm_fillLdmHashTable( - state, startingHash, ip, iend - params->minMatchLength, state->window.base, - params->hashLog - params->bucketSizeLog, - *params); - } -} - - -/** ZSTD_ldm_limitTableUpdate() : - * - * Sets cctx->nextToUpdate to a position corresponding closer to anchor - * if it is far way - * (after a long match, only update tables a limited amount). */ -static void ZSTD_ldm_limitTableUpdate(ZSTD_matchState_t* ms, const BYTE* anchor) -{ - U32 const current = (U32)(anchor - ms->window.base); - if (current > ms->nextToUpdate + 1024) { - ms->nextToUpdate = - current - MIN(512, current - ms->nextToUpdate - 1024); - } -} - -static size_t ZSTD_ldm_generateSequences_internal( - ldmState_t* ldmState, rawSeqStore_t* rawSeqStore, - ldmParams_t const* params, void const* src, size_t srcSize) -{ - /* LDM parameters */ - int const extDict = ZSTD_window_hasExtDict(ldmState->window); - U32 const minMatchLength = params->minMatchLength; - U64 const hashPower = ldmState->hashPower; - U32 const hBits = params->hashLog - params->bucketSizeLog; - U32 const ldmBucketSize = 1U << params->bucketSizeLog; - U32 const hashRateLog = params->hashRateLog; - U32 const ldmTagMask = (1U << params->hashRateLog) - 1; - /* Prefix and extDict parameters */ - U32 const dictLimit = ldmState->window.dictLimit; - U32 const lowestIndex = extDict ? ldmState->window.lowLimit : dictLimit; - BYTE const* const base = ldmState->window.base; - BYTE const* const dictBase = extDict ? ldmState->window.dictBase : NULL; - BYTE const* const dictStart = extDict ? dictBase + lowestIndex : NULL; - BYTE const* const dictEnd = extDict ? dictBase + dictLimit : NULL; - BYTE const* const lowPrefixPtr = base + dictLimit; - /* Input bounds */ - BYTE const* const istart = (BYTE const*)src; - BYTE const* const iend = istart + srcSize; - BYTE const* const ilimit = iend - MAX(minMatchLength, HASH_READ_SIZE); - /* Input positions */ - BYTE const* anchor = istart; - BYTE const* ip = istart; - /* Rolling hash */ - BYTE const* lastHashed = NULL; - U64 rollingHash = 0; - - while (ip <= ilimit) { - size_t mLength; - U32 const current = (U32)(ip - base); - size_t forwardMatchLength = 0, backwardMatchLength = 0; - ldmEntry_t* bestEntry = NULL; - if (ip != istart) { - rollingHash = ZSTD_rollingHash_rotate(rollingHash, lastHashed[0], - lastHashed[minMatchLength], - hashPower); - } else { - rollingHash = ZSTD_rollingHash_compute(ip, minMatchLength); - } - lastHashed = ip; - - /* Do not insert and do not look for a match */ - if (ZSTD_ldm_getTag(rollingHash, hBits, hashRateLog) != ldmTagMask) { - ip++; - continue; - } - - /* Get the best entry and compute the match lengths */ - { - ldmEntry_t* const bucket = - ZSTD_ldm_getBucket(ldmState, - ZSTD_ldm_getSmallHash(rollingHash, hBits), - *params); - ldmEntry_t* cur; - size_t bestMatchLength = 0; - U32 const checksum = ZSTD_ldm_getChecksum(rollingHash, hBits); - - for (cur = bucket; cur < bucket + ldmBucketSize; ++cur) { - size_t curForwardMatchLength, curBackwardMatchLength, - curTotalMatchLength; - if (cur->checksum != checksum || cur->offset <= lowestIndex) { - continue; - } - if (extDict) { - BYTE const* const curMatchBase = - cur->offset < dictLimit ? dictBase : base; - BYTE const* const pMatch = curMatchBase + cur->offset; - BYTE const* const matchEnd = - cur->offset < dictLimit ? dictEnd : iend; - BYTE const* const lowMatchPtr = - cur->offset < dictLimit ? dictStart : lowPrefixPtr; - - curForwardMatchLength = ZSTD_count_2segments( - ip, pMatch, iend, - matchEnd, lowPrefixPtr); - if (curForwardMatchLength < minMatchLength) { - continue; - } - curBackwardMatchLength = - ZSTD_ldm_countBackwardsMatch(ip, anchor, pMatch, - lowMatchPtr); - curTotalMatchLength = curForwardMatchLength + - curBackwardMatchLength; - } else { /* !extDict */ - BYTE const* const pMatch = base + cur->offset; - curForwardMatchLength = ZSTD_count(ip, pMatch, iend); - if (curForwardMatchLength < minMatchLength) { - continue; - } - curBackwardMatchLength = - ZSTD_ldm_countBackwardsMatch(ip, anchor, pMatch, - lowPrefixPtr); - curTotalMatchLength = curForwardMatchLength + - curBackwardMatchLength; - } - - if (curTotalMatchLength > bestMatchLength) { - bestMatchLength = curTotalMatchLength; - forwardMatchLength = curForwardMatchLength; - backwardMatchLength = curBackwardMatchLength; - bestEntry = cur; - } - } - } - - /* No match found -- continue searching */ - if (bestEntry == NULL) { - ZSTD_ldm_makeEntryAndInsertByTag(ldmState, rollingHash, - hBits, current, - *params); - ip++; - continue; - } - - /* Match found */ - mLength = forwardMatchLength + backwardMatchLength; - ip -= backwardMatchLength; - - { - /* Store the sequence: - * ip = current - backwardMatchLength - * The match is at (bestEntry->offset - backwardMatchLength) - */ - U32 const matchIndex = bestEntry->offset; - U32 const offset = current - matchIndex; - rawSeq* const seq = rawSeqStore->seq + rawSeqStore->size; - - /* Out of sequence storage */ - if (rawSeqStore->size == rawSeqStore->capacity) - return ERROR(dstSize_tooSmall); - seq->litLength = (U32)(ip - anchor); - seq->matchLength = (U32)mLength; - seq->offset = offset; - rawSeqStore->size++; - } - - /* Insert the current entry into the hash table */ - ZSTD_ldm_makeEntryAndInsertByTag(ldmState, rollingHash, hBits, - (U32)(lastHashed - base), - *params); - - assert(ip + backwardMatchLength == lastHashed); - - /* Fill the hash table from lastHashed+1 to ip+mLength*/ - /* Heuristic: don't need to fill the entire table at end of block */ - if (ip + mLength <= ilimit) { - rollingHash = ZSTD_ldm_fillLdmHashTable( - ldmState, rollingHash, lastHashed, - ip + mLength, base, hBits, *params); - lastHashed = ip + mLength - 1; - } - ip += mLength; - anchor = ip; - } - return iend - anchor; -} - -/*! ZSTD_ldm_reduceTable() : - * reduce table indexes by `reducerValue` */ -static void ZSTD_ldm_reduceTable(ldmEntry_t* const table, U32 const size, - U32 const reducerValue) -{ - U32 u; - for (u = 0; u < size; u++) { - if (table[u].offset < reducerValue) table[u].offset = 0; - else table[u].offset -= reducerValue; - } -} - -size_t ZSTD_ldm_generateSequences( - ldmState_t* ldmState, rawSeqStore_t* sequences, - ldmParams_t const* params, void const* src, size_t srcSize) -{ - U32 const maxDist = 1U << params->windowLog; - BYTE const* const istart = (BYTE const*)src; - BYTE const* const iend = istart + srcSize; - size_t const kMaxChunkSize = 1 << 20; - size_t const nbChunks = (srcSize / kMaxChunkSize) + ((srcSize % kMaxChunkSize) != 0); - size_t chunk; - size_t leftoverSize = 0; - - assert(ZSTD_CHUNKSIZE_MAX >= kMaxChunkSize); - /* Check that ZSTD_window_update() has been called for this chunk prior - * to passing it to this function. - */ - assert(ldmState->window.nextSrc >= (BYTE const*)src + srcSize); - /* The input could be very large (in zstdmt), so it must be broken up into - * chunks to enforce the maximum distance and handle overflow correction. - */ - assert(sequences->pos <= sequences->size); - assert(sequences->size <= sequences->capacity); - for (chunk = 0; chunk < nbChunks && sequences->size < sequences->capacity; ++chunk) { - BYTE const* const chunkStart = istart + chunk * kMaxChunkSize; - size_t const remaining = (size_t)(iend - chunkStart); - BYTE const *const chunkEnd = - (remaining < kMaxChunkSize) ? iend : chunkStart + kMaxChunkSize; - size_t const chunkSize = chunkEnd - chunkStart; - size_t newLeftoverSize; - size_t const prevSize = sequences->size; - - assert(chunkStart < iend); - /* 1. Perform overflow correction if necessary. */ - if (ZSTD_window_needOverflowCorrection(ldmState->window, chunkEnd)) { - U32 const ldmHSize = 1U << params->hashLog; - U32 const correction = ZSTD_window_correctOverflow( - &ldmState->window, /* cycleLog */ 0, maxDist, chunkStart); - ZSTD_ldm_reduceTable(ldmState->hashTable, ldmHSize, correction); - /* invalidate dictionaries on overflow correction */ - ldmState->loadedDictEnd = 0; - } - /* 2. We enforce the maximum offset allowed. - * - * kMaxChunkSize should be small enough that we don't lose too much of - * the window through early invalidation. - * TODO: * Test the chunk size. - * * Try invalidation after the sequence generation and test the - * the offset against maxDist directly. - * - * NOTE: Because of dictionaries + sequence splitting we MUST make sure - * that any offset used is valid at the END of the sequence, since it may - * be split into two sequences. This condition holds when using - * ZSTD_window_enforceMaxDist(), but if we move to checking offsets - * against maxDist directly, we'll have to carefully handle that case. - */ - ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->loadedDictEnd, NULL); - /* 3. Generate the sequences for the chunk, and get newLeftoverSize. */ - newLeftoverSize = ZSTD_ldm_generateSequences_internal( - ldmState, sequences, params, chunkStart, chunkSize); - if (ZSTD_isError(newLeftoverSize)) - return newLeftoverSize; - /* 4. We add the leftover literals from previous iterations to the first - * newly generated sequence, or add the `newLeftoverSize` if none are - * generated. - */ - /* Prepend the leftover literals from the last call */ - if (prevSize < sequences->size) { - sequences->seq[prevSize].litLength += (U32)leftoverSize; - leftoverSize = newLeftoverSize; - } else { - assert(newLeftoverSize == chunkSize); - leftoverSize += chunkSize; - } - } - return 0; -} - -void ZSTD_ldm_skipSequences(rawSeqStore_t* rawSeqStore, size_t srcSize, U32 const minMatch) { - while (srcSize > 0 && rawSeqStore->pos < rawSeqStore->size) { - rawSeq* seq = rawSeqStore->seq + rawSeqStore->pos; - if (srcSize <= seq->litLength) { - /* Skip past srcSize literals */ - seq->litLength -= (U32)srcSize; - return; - } - srcSize -= seq->litLength; - seq->litLength = 0; - if (srcSize < seq->matchLength) { - /* Skip past the first srcSize of the match */ - seq->matchLength -= (U32)srcSize; - if (seq->matchLength < minMatch) { - /* The match is too short, omit it */ - if (rawSeqStore->pos + 1 < rawSeqStore->size) { - seq[1].litLength += seq[0].matchLength; - } - rawSeqStore->pos++; - } - return; - } - srcSize -= seq->matchLength; - seq->matchLength = 0; - rawSeqStore->pos++; - } -} - -/** - * If the sequence length is longer than remaining then the sequence is split - * between this block and the next. - * - * Returns the current sequence to handle, or if the rest of the block should - * be literals, it returns a sequence with offset == 0. - */ -static rawSeq maybeSplitSequence(rawSeqStore_t* rawSeqStore, - U32 const remaining, U32 const minMatch) -{ - rawSeq sequence = rawSeqStore->seq[rawSeqStore->pos]; - assert(sequence.offset > 0); - /* Likely: No partial sequence */ - if (remaining >= sequence.litLength + sequence.matchLength) { - rawSeqStore->pos++; - return sequence; - } - /* Cut the sequence short (offset == 0 ==> rest is literals). */ - if (remaining <= sequence.litLength) { - sequence.offset = 0; - } else if (remaining < sequence.litLength + sequence.matchLength) { - sequence.matchLength = remaining - sequence.litLength; - if (sequence.matchLength < minMatch) { - sequence.offset = 0; - } - } - /* Skip past `remaining` bytes for the future sequences. */ - ZSTD_ldm_skipSequences(rawSeqStore, remaining, minMatch); - return sequence; -} - -size_t ZSTD_ldm_blockCompress(rawSeqStore_t* rawSeqStore, - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - unsigned const minMatch = cParams->minMatch; - ZSTD_blockCompressor const blockCompressor = - ZSTD_selectBlockCompressor(cParams->strategy, ZSTD_matchState_dictMode(ms)); - /* Input bounds */ - BYTE const* const istart = (BYTE const*)src; - BYTE const* const iend = istart + srcSize; - /* Input positions */ - BYTE const* ip = istart; - - DEBUGLOG(5, "ZSTD_ldm_blockCompress: srcSize=%zu", srcSize); - assert(rawSeqStore->pos <= rawSeqStore->size); - assert(rawSeqStore->size <= rawSeqStore->capacity); - /* Loop through each sequence and apply the block compressor to the lits */ - while (rawSeqStore->pos < rawSeqStore->size && ip < iend) { - /* maybeSplitSequence updates rawSeqStore->pos */ - rawSeq const sequence = maybeSplitSequence(rawSeqStore, - (U32)(iend - ip), minMatch); - int i; - /* End signal */ - if (sequence.offset == 0) - break; - - assert(ip + sequence.litLength + sequence.matchLength <= iend); - - /* Fill tables for block compressor */ - ZSTD_ldm_limitTableUpdate(ms, ip); - ZSTD_ldm_fillFastTables(ms, ip); - /* Run the block compressor */ - DEBUGLOG(5, "pos %u : calling block compressor on segment of size %u", (unsigned)(ip-istart), sequence.litLength); - { - size_t const newLitLength = - blockCompressor(ms, seqStore, rep, ip, sequence.litLength); - ip += sequence.litLength; - /* Update the repcodes */ - for (i = ZSTD_REP_NUM - 1; i > 0; i--) - rep[i] = rep[i-1]; - rep[0] = sequence.offset; - /* Store the sequence */ - ZSTD_storeSeq(seqStore, newLitLength, ip - newLitLength, iend, - sequence.offset + ZSTD_REP_MOVE, - sequence.matchLength - MINMATCH); - ip += sequence.matchLength; - } - } - /* Fill the tables for the block compressor */ - ZSTD_ldm_limitTableUpdate(ms, ip); - ZSTD_ldm_fillFastTables(ms, ip); - /* Compress the last literals */ - return blockCompressor(ms, seqStore, rep, ip, iend - ip); -} diff --git a/lib/SZ3/tools/zstd/compress/zstd_ldm.h b/lib/SZ3/tools/zstd/compress/zstd_ldm.h deleted file mode 100644 index 229ea05a..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_ldm.h +++ /dev/null @@ -1,110 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_LDM_H -#define ZSTD_LDM_H - -#if defined (__cplusplus) -extern "C" { -#endif - -#include "zstd_compress_internal.h" /* ldmParams_t, U32 */ -#include "../zstd.h" /* ZSTD_CCtx, size_t */ - -/*-************************************* -* Long distance matching -***************************************/ - -#define ZSTD_LDM_DEFAULT_WINDOW_LOG ZSTD_WINDOWLOG_LIMIT_DEFAULT - -void ZSTD_ldm_fillHashTable( - ldmState_t* state, const BYTE* ip, - const BYTE* iend, ldmParams_t const* params); - -/** - * ZSTD_ldm_generateSequences(): - * - * Generates the sequences using the long distance match finder. - * Generates long range matching sequences in `sequences`, which parse a prefix - * of the source. `sequences` must be large enough to store every sequence, - * which can be checked with `ZSTD_ldm_getMaxNbSeq()`. - * @returns 0 or an error code. - * - * NOTE: The user must have called ZSTD_window_update() for all of the input - * they have, even if they pass it to ZSTD_ldm_generateSequences() in chunks. - * NOTE: This function returns an error if it runs out of space to store - * sequences. - */ -size_t ZSTD_ldm_generateSequences( - ldmState_t* ldms, rawSeqStore_t* sequences, - ldmParams_t const* params, void const* src, size_t srcSize); - -/** - * ZSTD_ldm_blockCompress(): - * - * Compresses a block using the predefined sequences, along with a secondary - * block compressor. The literals section of every sequence is passed to the - * secondary block compressor, and those sequences are interspersed with the - * predefined sequences. Returns the length of the last literals. - * Updates `rawSeqStore.pos` to indicate how many sequences have been consumed. - * `rawSeqStore.seq` may also be updated to split the last sequence between two - * blocks. - * @return The length of the last literals. - * - * NOTE: The source must be at most the maximum block size, but the predefined - * sequences can be any size, and may be longer than the block. In the case that - * they are longer than the block, the last sequences may need to be split into - * two. We handle that case correctly, and update `rawSeqStore` appropriately. - * NOTE: This function does not return any errors. - */ -size_t ZSTD_ldm_blockCompress(rawSeqStore_t* rawSeqStore, - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - -/** - * ZSTD_ldm_skipSequences(): - * - * Skip past `srcSize` bytes worth of sequences in `rawSeqStore`. - * Avoids emitting matches less than `minMatch` bytes. - * Must be called for data with is not passed to ZSTD_ldm_blockCompress(). - */ -void ZSTD_ldm_skipSequences(rawSeqStore_t* rawSeqStore, size_t srcSize, - U32 const minMatch); - - -/** ZSTD_ldm_getTableSize() : - * Estimate the space needed for long distance matching tables or 0 if LDM is - * disabled. - */ -size_t ZSTD_ldm_getTableSize(ldmParams_t params); - -/** ZSTD_ldm_getSeqSpace() : - * Return an upper bound on the number of sequences that can be produced by - * the long distance matcher, or 0 if LDM is disabled. - */ -size_t ZSTD_ldm_getMaxNbSeq(ldmParams_t params, size_t maxChunkSize); - -/** ZSTD_ldm_adjustParameters() : - * If the params->hashRateLog is not set, set it to its default value based on - * windowLog and params->hashLog. - * - * Ensures that params->bucketSizeLog is <= params->hashLog (setting it to - * params->hashLog if it is not). - * - * Ensures that the minMatchLength >= targetLength during optimal parsing. - */ -void ZSTD_ldm_adjustParameters(ldmParams_t* params, - ZSTD_compressionParameters const* cParams); - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_FAST_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_opt.c b/lib/SZ3/tools/zstd/compress/zstd_opt.c deleted file mode 100644 index 36fff050..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_opt.c +++ /dev/null @@ -1,1200 +0,0 @@ -/* - * Copyright (c) 2016-2020, Przemyslaw Skibinski, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#include "zstd_compress_internal.h" -#include "hist.h" -#include "zstd_opt.h" - - -#define ZSTD_LITFREQ_ADD 2 /* scaling factor for litFreq, so that frequencies adapt faster to new stats */ -#define ZSTD_FREQ_DIV 4 /* log factor when using previous stats to init next stats */ -#define ZSTD_MAX_PRICE (1<<30) - -#define ZSTD_PREDEF_THRESHOLD 1024 /* if srcSize < ZSTD_PREDEF_THRESHOLD, symbols' cost is assumed static, directly determined by pre-defined distributions */ - - -/*-************************************* -* Price functions for optimal parser -***************************************/ - -#if 0 /* approximation at bit level */ -# define BITCOST_ACCURACY 0 -# define BITCOST_MULTIPLIER (1 << BITCOST_ACCURACY) -# define WEIGHT(stat) ((void)opt, ZSTD_bitWeight(stat)) -#elif 0 /* fractional bit accuracy */ -# define BITCOST_ACCURACY 8 -# define BITCOST_MULTIPLIER (1 << BITCOST_ACCURACY) -# define WEIGHT(stat,opt) ((void)opt, ZSTD_fracWeight(stat)) -#else /* opt==approx, ultra==accurate */ -# define BITCOST_ACCURACY 8 -# define BITCOST_MULTIPLIER (1 << BITCOST_ACCURACY) -# define WEIGHT(stat,opt) (opt ? ZSTD_fracWeight(stat) : ZSTD_bitWeight(stat)) -#endif - -MEM_STATIC U32 ZSTD_bitWeight(U32 stat) -{ - return (ZSTD_highbit32(stat+1) * BITCOST_MULTIPLIER); -} - -MEM_STATIC U32 ZSTD_fracWeight(U32 rawStat) -{ - U32 const stat = rawStat + 1; - U32 const hb = ZSTD_highbit32(stat); - U32 const BWeight = hb * BITCOST_MULTIPLIER; - U32 const FWeight = (stat << BITCOST_ACCURACY) >> hb; - U32 const weight = BWeight + FWeight; - assert(hb + BITCOST_ACCURACY < 31); - return weight; -} - -#if (DEBUGLEVEL>=2) -/* debugging function, - * @return price in bytes as fractional value - * for debug messages only */ -MEM_STATIC double ZSTD_fCost(U32 price) -{ - return (double)price / (BITCOST_MULTIPLIER*8); -} -#endif - -static int ZSTD_compressedLiterals(optState_t const* const optPtr) -{ - return optPtr->literalCompressionMode != ZSTD_lcm_uncompressed; -} - -static void ZSTD_setBasePrices(optState_t* optPtr, int optLevel) -{ - if (ZSTD_compressedLiterals(optPtr)) - optPtr->litSumBasePrice = WEIGHT(optPtr->litSum, optLevel); - optPtr->litLengthSumBasePrice = WEIGHT(optPtr->litLengthSum, optLevel); - optPtr->matchLengthSumBasePrice = WEIGHT(optPtr->matchLengthSum, optLevel); - optPtr->offCodeSumBasePrice = WEIGHT(optPtr->offCodeSum, optLevel); -} - - -/* ZSTD_downscaleStat() : - * reduce all elements in table by a factor 2^(ZSTD_FREQ_DIV+malus) - * return the resulting sum of elements */ -static U32 ZSTD_downscaleStat(unsigned* table, U32 lastEltIndex, int malus) -{ - U32 s, sum=0; - DEBUGLOG(5, "ZSTD_downscaleStat (nbElts=%u)", (unsigned)lastEltIndex+1); - assert(ZSTD_FREQ_DIV+malus > 0 && ZSTD_FREQ_DIV+malus < 31); - for (s=0; s> (ZSTD_FREQ_DIV+malus)); - sum += table[s]; - } - return sum; -} - -/* ZSTD_rescaleFreqs() : - * if first block (detected by optPtr->litLengthSum == 0) : init statistics - * take hints from dictionary if there is one - * or init from zero, using src for literals stats, or flat 1 for match symbols - * otherwise downscale existing stats, to be used as seed for next block. - */ -static void -ZSTD_rescaleFreqs(optState_t* const optPtr, - const BYTE* const src, size_t const srcSize, - int const optLevel) -{ - int const compressedLiterals = ZSTD_compressedLiterals(optPtr); - DEBUGLOG(5, "ZSTD_rescaleFreqs (srcSize=%u)", (unsigned)srcSize); - optPtr->priceType = zop_dynamic; - - if (optPtr->litLengthSum == 0) { /* first block : init */ - if (srcSize <= ZSTD_PREDEF_THRESHOLD) { /* heuristic */ - DEBUGLOG(5, "(srcSize <= ZSTD_PREDEF_THRESHOLD) => zop_predef"); - optPtr->priceType = zop_predef; - } - - assert(optPtr->symbolCosts != NULL); - if (optPtr->symbolCosts->huf.repeatMode == HUF_repeat_valid) { - /* huffman table presumed generated by dictionary */ - optPtr->priceType = zop_dynamic; - - if (compressedLiterals) { - unsigned lit; - assert(optPtr->litFreq != NULL); - optPtr->litSum = 0; - for (lit=0; lit<=MaxLit; lit++) { - U32 const scaleLog = 11; /* scale to 2K */ - U32 const bitCost = HUF_getNbBits(optPtr->symbolCosts->huf.CTable, lit); - assert(bitCost <= scaleLog); - optPtr->litFreq[lit] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/; - optPtr->litSum += optPtr->litFreq[lit]; - } } - - { unsigned ll; - FSE_CState_t llstate; - FSE_initCState(&llstate, optPtr->symbolCosts->fse.litlengthCTable); - optPtr->litLengthSum = 0; - for (ll=0; ll<=MaxLL; ll++) { - U32 const scaleLog = 10; /* scale to 1K */ - U32 const bitCost = FSE_getMaxNbBits(llstate.symbolTT, ll); - assert(bitCost < scaleLog); - optPtr->litLengthFreq[ll] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/; - optPtr->litLengthSum += optPtr->litLengthFreq[ll]; - } } - - { unsigned ml; - FSE_CState_t mlstate; - FSE_initCState(&mlstate, optPtr->symbolCosts->fse.matchlengthCTable); - optPtr->matchLengthSum = 0; - for (ml=0; ml<=MaxML; ml++) { - U32 const scaleLog = 10; - U32 const bitCost = FSE_getMaxNbBits(mlstate.symbolTT, ml); - assert(bitCost < scaleLog); - optPtr->matchLengthFreq[ml] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/; - optPtr->matchLengthSum += optPtr->matchLengthFreq[ml]; - } } - - { unsigned of; - FSE_CState_t ofstate; - FSE_initCState(&ofstate, optPtr->symbolCosts->fse.offcodeCTable); - optPtr->offCodeSum = 0; - for (of=0; of<=MaxOff; of++) { - U32 const scaleLog = 10; - U32 const bitCost = FSE_getMaxNbBits(ofstate.symbolTT, of); - assert(bitCost < scaleLog); - optPtr->offCodeFreq[of] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/; - optPtr->offCodeSum += optPtr->offCodeFreq[of]; - } } - - } else { /* not a dictionary */ - - assert(optPtr->litFreq != NULL); - if (compressedLiterals) { - unsigned lit = MaxLit; - HIST_count_simple(optPtr->litFreq, &lit, src, srcSize); /* use raw first block to init statistics */ - optPtr->litSum = ZSTD_downscaleStat(optPtr->litFreq, MaxLit, 1); - } - - { unsigned ll; - for (ll=0; ll<=MaxLL; ll++) - optPtr->litLengthFreq[ll] = 1; - } - optPtr->litLengthSum = MaxLL+1; - - { unsigned ml; - for (ml=0; ml<=MaxML; ml++) - optPtr->matchLengthFreq[ml] = 1; - } - optPtr->matchLengthSum = MaxML+1; - - { unsigned of; - for (of=0; of<=MaxOff; of++) - optPtr->offCodeFreq[of] = 1; - } - optPtr->offCodeSum = MaxOff+1; - - } - - } else { /* new block : re-use previous statistics, scaled down */ - - if (compressedLiterals) - optPtr->litSum = ZSTD_downscaleStat(optPtr->litFreq, MaxLit, 1); - optPtr->litLengthSum = ZSTD_downscaleStat(optPtr->litLengthFreq, MaxLL, 0); - optPtr->matchLengthSum = ZSTD_downscaleStat(optPtr->matchLengthFreq, MaxML, 0); - optPtr->offCodeSum = ZSTD_downscaleStat(optPtr->offCodeFreq, MaxOff, 0); - } - - ZSTD_setBasePrices(optPtr, optLevel); -} - -/* ZSTD_rawLiteralsCost() : - * price of literals (only) in specified segment (which length can be 0). - * does not include price of literalLength symbol */ -static U32 ZSTD_rawLiteralsCost(const BYTE* const literals, U32 const litLength, - const optState_t* const optPtr, - int optLevel) -{ - if (litLength == 0) return 0; - - if (!ZSTD_compressedLiterals(optPtr)) - return (litLength << 3) * BITCOST_MULTIPLIER; /* Uncompressed - 8 bytes per literal. */ - - if (optPtr->priceType == zop_predef) - return (litLength*6) * BITCOST_MULTIPLIER; /* 6 bit per literal - no statistic used */ - - /* dynamic statistics */ - { U32 price = litLength * optPtr->litSumBasePrice; - U32 u; - for (u=0; u < litLength; u++) { - assert(WEIGHT(optPtr->litFreq[literals[u]], optLevel) <= optPtr->litSumBasePrice); /* literal cost should never be negative */ - price -= WEIGHT(optPtr->litFreq[literals[u]], optLevel); - } - return price; - } -} - -/* ZSTD_litLengthPrice() : - * cost of literalLength symbol */ -static U32 ZSTD_litLengthPrice(U32 const litLength, const optState_t* const optPtr, int optLevel) -{ - if (optPtr->priceType == zop_predef) return WEIGHT(litLength, optLevel); - - /* dynamic statistics */ - { U32 const llCode = ZSTD_LLcode(litLength); - return (LL_bits[llCode] * BITCOST_MULTIPLIER) - + optPtr->litLengthSumBasePrice - - WEIGHT(optPtr->litLengthFreq[llCode], optLevel); - } -} - -/* ZSTD_getMatchPrice() : - * Provides the cost of the match part (offset + matchLength) of a sequence - * Must be combined with ZSTD_fullLiteralsCost() to get the full cost of a sequence. - * optLevel: when <2, favors small offset for decompression speed (improved cache efficiency) */ -FORCE_INLINE_TEMPLATE U32 -ZSTD_getMatchPrice(U32 const offset, - U32 const matchLength, - const optState_t* const optPtr, - int const optLevel) -{ - U32 price; - U32 const offCode = ZSTD_highbit32(offset+1); - U32 const mlBase = matchLength - MINMATCH; - assert(matchLength >= MINMATCH); - - if (optPtr->priceType == zop_predef) /* fixed scheme, do not use statistics */ - return WEIGHT(mlBase, optLevel) + ((16 + offCode) * BITCOST_MULTIPLIER); - - /* dynamic statistics */ - price = (offCode * BITCOST_MULTIPLIER) + (optPtr->offCodeSumBasePrice - WEIGHT(optPtr->offCodeFreq[offCode], optLevel)); - if ((optLevel<2) /*static*/ && offCode >= 20) - price += (offCode-19)*2 * BITCOST_MULTIPLIER; /* handicap for long distance offsets, favor decompression speed */ - - /* match Length */ - { U32 const mlCode = ZSTD_MLcode(mlBase); - price += (ML_bits[mlCode] * BITCOST_MULTIPLIER) + (optPtr->matchLengthSumBasePrice - WEIGHT(optPtr->matchLengthFreq[mlCode], optLevel)); - } - - price += BITCOST_MULTIPLIER / 5; /* heuristic : make matches a bit more costly to favor less sequences -> faster decompression speed */ - - DEBUGLOG(8, "ZSTD_getMatchPrice(ml:%u) = %u", matchLength, price); - return price; -} - -/* ZSTD_updateStats() : - * assumption : literals + litLengtn <= iend */ -static void ZSTD_updateStats(optState_t* const optPtr, - U32 litLength, const BYTE* literals, - U32 offsetCode, U32 matchLength) -{ - /* literals */ - if (ZSTD_compressedLiterals(optPtr)) { - U32 u; - for (u=0; u < litLength; u++) - optPtr->litFreq[literals[u]] += ZSTD_LITFREQ_ADD; - optPtr->litSum += litLength*ZSTD_LITFREQ_ADD; - } - - /* literal Length */ - { U32 const llCode = ZSTD_LLcode(litLength); - optPtr->litLengthFreq[llCode]++; - optPtr->litLengthSum++; - } - - /* match offset code (0-2=>repCode; 3+=>offset+2) */ - { U32 const offCode = ZSTD_highbit32(offsetCode+1); - assert(offCode <= MaxOff); - optPtr->offCodeFreq[offCode]++; - optPtr->offCodeSum++; - } - - /* match Length */ - { U32 const mlBase = matchLength - MINMATCH; - U32 const mlCode = ZSTD_MLcode(mlBase); - optPtr->matchLengthFreq[mlCode]++; - optPtr->matchLengthSum++; - } -} - - -/* ZSTD_readMINMATCH() : - * function safe only for comparisons - * assumption : memPtr must be at least 4 bytes before end of buffer */ -MEM_STATIC U32 ZSTD_readMINMATCH(const void* memPtr, U32 length) -{ - switch (length) - { - default : - case 4 : return MEM_read32(memPtr); - case 3 : if (MEM_isLittleEndian()) - return MEM_read32(memPtr)<<8; - else - return MEM_read32(memPtr)>>8; - } -} - - -/* Update hashTable3 up to ip (excluded) - Assumption : always within prefix (i.e. not within extDict) */ -static U32 ZSTD_insertAndFindFirstIndexHash3 (ZSTD_matchState_t* ms, - U32* nextToUpdate3, - const BYTE* const ip) -{ - U32* const hashTable3 = ms->hashTable3; - U32 const hashLog3 = ms->hashLog3; - const BYTE* const base = ms->window.base; - U32 idx = *nextToUpdate3; - U32 const target = (U32)(ip - base); - size_t const hash3 = ZSTD_hash3Ptr(ip, hashLog3); - assert(hashLog3 > 0); - - while(idx < target) { - hashTable3[ZSTD_hash3Ptr(base+idx, hashLog3)] = idx; - idx++; - } - - *nextToUpdate3 = target; - return hashTable3[hash3]; -} - - -/*-************************************* -* Binary Tree search -***************************************/ -/** ZSTD_insertBt1() : add one or multiple positions to tree. - * ip : assumed <= iend-8 . - * @return : nb of positions added */ -static U32 ZSTD_insertBt1( - ZSTD_matchState_t* ms, - const BYTE* const ip, const BYTE* const iend, - U32 const mls, const int extDict) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32* const hashTable = ms->hashTable; - U32 const hashLog = cParams->hashLog; - size_t const h = ZSTD_hashPtr(ip, hashLog, mls); - U32* const bt = ms->chainTable; - U32 const btLog = cParams->chainLog - 1; - U32 const btMask = (1 << btLog) - 1; - U32 matchIndex = hashTable[h]; - size_t commonLengthSmaller=0, commonLengthLarger=0; - const BYTE* const base = ms->window.base; - const BYTE* const dictBase = ms->window.dictBase; - const U32 dictLimit = ms->window.dictLimit; - const BYTE* const dictEnd = dictBase + dictLimit; - const BYTE* const prefixStart = base + dictLimit; - const BYTE* match; - const U32 current = (U32)(ip-base); - const U32 btLow = btMask >= current ? 0 : current - btMask; - U32* smallerPtr = bt + 2*(current&btMask); - U32* largerPtr = smallerPtr + 1; - U32 dummy32; /* to be nullified at the end */ - U32 const windowLow = ms->window.lowLimit; - U32 matchEndIdx = current+8+1; - size_t bestLength = 8; - U32 nbCompares = 1U << cParams->searchLog; -#ifdef ZSTD_C_PREDICT - U32 predictedSmall = *(bt + 2*((current-1)&btMask) + 0); - U32 predictedLarge = *(bt + 2*((current-1)&btMask) + 1); - predictedSmall += (predictedSmall>0); - predictedLarge += (predictedLarge>0); -#endif /* ZSTD_C_PREDICT */ - - DEBUGLOG(8, "ZSTD_insertBt1 (%u)", current); - - assert(ip <= iend-8); /* required for h calculation */ - hashTable[h] = current; /* Update Hash Table */ - - assert(windowLow > 0); - while (nbCompares-- && (matchIndex >= windowLow)) { - U32* const nextPtr = bt + 2*(matchIndex & btMask); - size_t matchLength = MIN(commonLengthSmaller, commonLengthLarger); /* guaranteed minimum nb of common bytes */ - assert(matchIndex < current); - -#ifdef ZSTD_C_PREDICT /* note : can create issues when hlog small <= 11 */ - const U32* predictPtr = bt + 2*((matchIndex-1) & btMask); /* written this way, as bt is a roll buffer */ - if (matchIndex == predictedSmall) { - /* no need to check length, result known */ - *smallerPtr = matchIndex; - if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ - smallerPtr = nextPtr+1; /* new "smaller" => larger of match */ - matchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to current) */ - predictedSmall = predictPtr[1] + (predictPtr[1]>0); - continue; - } - if (matchIndex == predictedLarge) { - *largerPtr = matchIndex; - if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop the search */ - largerPtr = nextPtr; - matchIndex = nextPtr[0]; - predictedLarge = predictPtr[0] + (predictPtr[0]>0); - continue; - } -#endif - - if (!extDict || (matchIndex+matchLength >= dictLimit)) { - assert(matchIndex+matchLength >= dictLimit); /* might be wrong if actually extDict */ - match = base + matchIndex; - matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); - } else { - match = dictBase + matchIndex; - matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); - if (matchIndex+matchLength >= dictLimit) - match = base + matchIndex; /* to prepare for next usage of match[matchLength] */ - } - - if (matchLength > bestLength) { - bestLength = matchLength; - if (matchLength > matchEndIdx - matchIndex) - matchEndIdx = matchIndex + (U32)matchLength; - } - - if (ip+matchLength == iend) { /* equal : no way to know if inf or sup */ - break; /* drop , to guarantee consistency ; miss a bit of compression, but other solutions can corrupt tree */ - } - - if (match[matchLength] < ip[matchLength]) { /* necessarily within buffer */ - /* match is smaller than current */ - *smallerPtr = matchIndex; /* update smaller idx */ - commonLengthSmaller = matchLength; /* all smaller will now have at least this guaranteed common length */ - if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop searching */ - smallerPtr = nextPtr+1; /* new "candidate" => larger than match, which was smaller than target */ - matchIndex = nextPtr[1]; /* new matchIndex, larger than previous and closer to current */ - } else { - /* match is larger than current */ - *largerPtr = matchIndex; - commonLengthLarger = matchLength; - if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop searching */ - largerPtr = nextPtr; - matchIndex = nextPtr[0]; - } } - - *smallerPtr = *largerPtr = 0; - { U32 positions = 0; - if (bestLength > 384) positions = MIN(192, (U32)(bestLength - 384)); /* speed optimization */ - assert(matchEndIdx > current + 8); - return MAX(positions, matchEndIdx - (current + 8)); - } -} - -FORCE_INLINE_TEMPLATE -void ZSTD_updateTree_internal( - ZSTD_matchState_t* ms, - const BYTE* const ip, const BYTE* const iend, - const U32 mls, const ZSTD_dictMode_e dictMode) -{ - const BYTE* const base = ms->window.base; - U32 const target = (U32)(ip - base); - U32 idx = ms->nextToUpdate; - DEBUGLOG(6, "ZSTD_updateTree_internal, from %u to %u (dictMode:%u)", - idx, target, dictMode); - - while(idx < target) { - U32 const forward = ZSTD_insertBt1(ms, base+idx, iend, mls, dictMode == ZSTD_extDict); - assert(idx < (U32)(idx + forward)); - idx += forward; - } - assert((size_t)(ip - base) <= (size_t)(U32)(-1)); - assert((size_t)(iend - base) <= (size_t)(U32)(-1)); - ms->nextToUpdate = target; -} - -void ZSTD_updateTree(ZSTD_matchState_t* ms, const BYTE* ip, const BYTE* iend) { - ZSTD_updateTree_internal(ms, ip, iend, ms->cParams.minMatch, ZSTD_noDict); -} - -FORCE_INLINE_TEMPLATE -U32 ZSTD_insertBtAndGetAllMatches ( - ZSTD_match_t* matches, /* store result (found matches) in this table (presumed large enough) */ - ZSTD_matchState_t* ms, - U32* nextToUpdate3, - const BYTE* const ip, const BYTE* const iLimit, const ZSTD_dictMode_e dictMode, - const U32 rep[ZSTD_REP_NUM], - U32 const ll0, /* tells if associated literal length is 0 or not. This value must be 0 or 1 */ - const U32 lengthToBeat, - U32 const mls /* template */) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32 const sufficient_len = MIN(cParams->targetLength, ZSTD_OPT_NUM -1); - const BYTE* const base = ms->window.base; - U32 const current = (U32)(ip-base); - U32 const hashLog = cParams->hashLog; - U32 const minMatch = (mls==3) ? 3 : 4; - U32* const hashTable = ms->hashTable; - size_t const h = ZSTD_hashPtr(ip, hashLog, mls); - U32 matchIndex = hashTable[h]; - U32* const bt = ms->chainTable; - U32 const btLog = cParams->chainLog - 1; - U32 const btMask= (1U << btLog) - 1; - size_t commonLengthSmaller=0, commonLengthLarger=0; - const BYTE* const dictBase = ms->window.dictBase; - U32 const dictLimit = ms->window.dictLimit; - const BYTE* const dictEnd = dictBase + dictLimit; - const BYTE* const prefixStart = base + dictLimit; - U32 const btLow = (btMask >= current) ? 0 : current - btMask; - U32 const windowLow = ZSTD_getLowestMatchIndex(ms, current, cParams->windowLog); - U32 const matchLow = windowLow ? windowLow : 1; - U32* smallerPtr = bt + 2*(current&btMask); - U32* largerPtr = bt + 2*(current&btMask) + 1; - U32 matchEndIdx = current+8+1; /* farthest referenced position of any match => detects repetitive patterns */ - U32 dummy32; /* to be nullified at the end */ - U32 mnum = 0; - U32 nbCompares = 1U << cParams->searchLog; - - const ZSTD_matchState_t* dms = dictMode == ZSTD_dictMatchState ? ms->dictMatchState : NULL; - const ZSTD_compressionParameters* const dmsCParams = - dictMode == ZSTD_dictMatchState ? &dms->cParams : NULL; - const BYTE* const dmsBase = dictMode == ZSTD_dictMatchState ? dms->window.base : NULL; - const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.nextSrc : NULL; - U32 const dmsHighLimit = dictMode == ZSTD_dictMatchState ? (U32)(dmsEnd - dmsBase) : 0; - U32 const dmsLowLimit = dictMode == ZSTD_dictMatchState ? dms->window.lowLimit : 0; - U32 const dmsIndexDelta = dictMode == ZSTD_dictMatchState ? windowLow - dmsHighLimit : 0; - U32 const dmsHashLog = dictMode == ZSTD_dictMatchState ? dmsCParams->hashLog : hashLog; - U32 const dmsBtLog = dictMode == ZSTD_dictMatchState ? dmsCParams->chainLog - 1 : btLog; - U32 const dmsBtMask = dictMode == ZSTD_dictMatchState ? (1U << dmsBtLog) - 1 : 0; - U32 const dmsBtLow = dictMode == ZSTD_dictMatchState && dmsBtMask < dmsHighLimit - dmsLowLimit ? dmsHighLimit - dmsBtMask : dmsLowLimit; - - size_t bestLength = lengthToBeat-1; - DEBUGLOG(8, "ZSTD_insertBtAndGetAllMatches: current=%u", current); - - /* check repCode */ - assert(ll0 <= 1); /* necessarily 1 or 0 */ - { U32 const lastR = ZSTD_REP_NUM + ll0; - U32 repCode; - for (repCode = ll0; repCode < lastR; repCode++) { - U32 const repOffset = (repCode==ZSTD_REP_NUM) ? (rep[0] - 1) : rep[repCode]; - U32 const repIndex = current - repOffset; - U32 repLen = 0; - assert(current >= dictLimit); - if (repOffset-1 /* intentional overflow, discards 0 and -1 */ < current-dictLimit) { /* equivalent to `current > repIndex >= dictLimit` */ - /* We must validate the repcode offset because when we're using a dictionary the - * valid offset range shrinks when the dictionary goes out of bounds. - */ - if ((repIndex >= windowLow) & (ZSTD_readMINMATCH(ip, minMatch) == ZSTD_readMINMATCH(ip - repOffset, minMatch))) { - repLen = (U32)ZSTD_count(ip+minMatch, ip+minMatch-repOffset, iLimit) + minMatch; - } - } else { /* repIndex < dictLimit || repIndex >= current */ - const BYTE* const repMatch = dictMode == ZSTD_dictMatchState ? - dmsBase + repIndex - dmsIndexDelta : - dictBase + repIndex; - assert(current >= windowLow); - if ( dictMode == ZSTD_extDict - && ( ((repOffset-1) /*intentional overflow*/ < current - windowLow) /* equivalent to `current > repIndex >= windowLow` */ - & (((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */) - && (ZSTD_readMINMATCH(ip, minMatch) == ZSTD_readMINMATCH(repMatch, minMatch)) ) { - repLen = (U32)ZSTD_count_2segments(ip+minMatch, repMatch+minMatch, iLimit, dictEnd, prefixStart) + minMatch; - } - if (dictMode == ZSTD_dictMatchState - && ( ((repOffset-1) /*intentional overflow*/ < current - (dmsLowLimit + dmsIndexDelta)) /* equivalent to `current > repIndex >= dmsLowLimit` */ - & ((U32)((dictLimit-1) - repIndex) >= 3) ) /* intentional overflow : do not test positions overlapping 2 memory segments */ - && (ZSTD_readMINMATCH(ip, minMatch) == ZSTD_readMINMATCH(repMatch, minMatch)) ) { - repLen = (U32)ZSTD_count_2segments(ip+minMatch, repMatch+minMatch, iLimit, dmsEnd, prefixStart) + minMatch; - } } - /* save longer solution */ - if (repLen > bestLength) { - DEBUGLOG(8, "found repCode %u (ll0:%u, offset:%u) of length %u", - repCode, ll0, repOffset, repLen); - bestLength = repLen; - matches[mnum].off = repCode - ll0; - matches[mnum].len = (U32)repLen; - mnum++; - if ( (repLen > sufficient_len) - | (ip+repLen == iLimit) ) { /* best possible */ - return mnum; - } } } } - - /* HC3 match finder */ - if ((mls == 3) /*static*/ && (bestLength < mls)) { - U32 const matchIndex3 = ZSTD_insertAndFindFirstIndexHash3(ms, nextToUpdate3, ip); - if ((matchIndex3 >= matchLow) - & (current - matchIndex3 < (1<<18)) /*heuristic : longer distance likely too expensive*/ ) { - size_t mlen; - if ((dictMode == ZSTD_noDict) /*static*/ || (dictMode == ZSTD_dictMatchState) /*static*/ || (matchIndex3 >= dictLimit)) { - const BYTE* const match = base + matchIndex3; - mlen = ZSTD_count(ip, match, iLimit); - } else { - const BYTE* const match = dictBase + matchIndex3; - mlen = ZSTD_count_2segments(ip, match, iLimit, dictEnd, prefixStart); - } - - /* save best solution */ - if (mlen >= mls /* == 3 > bestLength */) { - DEBUGLOG(8, "found small match with hlog3, of length %u", - (U32)mlen); - bestLength = mlen; - assert(current > matchIndex3); - assert(mnum==0); /* no prior solution */ - matches[0].off = (current - matchIndex3) + ZSTD_REP_MOVE; - matches[0].len = (U32)mlen; - mnum = 1; - if ( (mlen > sufficient_len) | - (ip+mlen == iLimit) ) { /* best possible length */ - ms->nextToUpdate = current+1; /* skip insertion */ - return 1; - } } } - /* no dictMatchState lookup: dicts don't have a populated HC3 table */ - } - - hashTable[h] = current; /* Update Hash Table */ - - while (nbCompares-- && (matchIndex >= matchLow)) { - U32* const nextPtr = bt + 2*(matchIndex & btMask); - const BYTE* match; - size_t matchLength = MIN(commonLengthSmaller, commonLengthLarger); /* guaranteed minimum nb of common bytes */ - assert(current > matchIndex); - - if ((dictMode == ZSTD_noDict) || (dictMode == ZSTD_dictMatchState) || (matchIndex+matchLength >= dictLimit)) { - assert(matchIndex+matchLength >= dictLimit); /* ensure the condition is correct when !extDict */ - match = base + matchIndex; - if (matchIndex >= dictLimit) assert(memcmp(match, ip, matchLength) == 0); /* ensure early section of match is equal as expected */ - matchLength += ZSTD_count(ip+matchLength, match+matchLength, iLimit); - } else { - match = dictBase + matchIndex; - assert(memcmp(match, ip, matchLength) == 0); /* ensure early section of match is equal as expected */ - matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dictEnd, prefixStart); - if (matchIndex+matchLength >= dictLimit) - match = base + matchIndex; /* prepare for match[matchLength] read */ - } - - if (matchLength > bestLength) { - DEBUGLOG(8, "found match of length %u at distance %u (offCode=%u)", - (U32)matchLength, current - matchIndex, current - matchIndex + ZSTD_REP_MOVE); - assert(matchEndIdx > matchIndex); - if (matchLength > matchEndIdx - matchIndex) - matchEndIdx = matchIndex + (U32)matchLength; - bestLength = matchLength; - matches[mnum].off = (current - matchIndex) + ZSTD_REP_MOVE; - matches[mnum].len = (U32)matchLength; - mnum++; - if ( (matchLength > ZSTD_OPT_NUM) - | (ip+matchLength == iLimit) /* equal : no way to know if inf or sup */) { - if (dictMode == ZSTD_dictMatchState) nbCompares = 0; /* break should also skip searching dms */ - break; /* drop, to preserve bt consistency (miss a little bit of compression) */ - } - } - - if (match[matchLength] < ip[matchLength]) { - /* match smaller than current */ - *smallerPtr = matchIndex; /* update smaller idx */ - commonLengthSmaller = matchLength; /* all smaller will now have at least this guaranteed common length */ - if (matchIndex <= btLow) { smallerPtr=&dummy32; break; } /* beyond tree size, stop the search */ - smallerPtr = nextPtr+1; /* new candidate => larger than match, which was smaller than current */ - matchIndex = nextPtr[1]; /* new matchIndex, larger than previous, closer to current */ - } else { - *largerPtr = matchIndex; - commonLengthLarger = matchLength; - if (matchIndex <= btLow) { largerPtr=&dummy32; break; } /* beyond tree size, stop the search */ - largerPtr = nextPtr; - matchIndex = nextPtr[0]; - } } - - *smallerPtr = *largerPtr = 0; - - if (dictMode == ZSTD_dictMatchState && nbCompares) { - size_t const dmsH = ZSTD_hashPtr(ip, dmsHashLog, mls); - U32 dictMatchIndex = dms->hashTable[dmsH]; - const U32* const dmsBt = dms->chainTable; - commonLengthSmaller = commonLengthLarger = 0; - while (nbCompares-- && (dictMatchIndex > dmsLowLimit)) { - const U32* const nextPtr = dmsBt + 2*(dictMatchIndex & dmsBtMask); - size_t matchLength = MIN(commonLengthSmaller, commonLengthLarger); /* guaranteed minimum nb of common bytes */ - const BYTE* match = dmsBase + dictMatchIndex; - matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iLimit, dmsEnd, prefixStart); - if (dictMatchIndex+matchLength >= dmsHighLimit) - match = base + dictMatchIndex + dmsIndexDelta; /* to prepare for next usage of match[matchLength] */ - - if (matchLength > bestLength) { - matchIndex = dictMatchIndex + dmsIndexDelta; - DEBUGLOG(8, "found dms match of length %u at distance %u (offCode=%u)", - (U32)matchLength, current - matchIndex, current - matchIndex + ZSTD_REP_MOVE); - if (matchLength > matchEndIdx - matchIndex) - matchEndIdx = matchIndex + (U32)matchLength; - bestLength = matchLength; - matches[mnum].off = (current - matchIndex) + ZSTD_REP_MOVE; - matches[mnum].len = (U32)matchLength; - mnum++; - if ( (matchLength > ZSTD_OPT_NUM) - | (ip+matchLength == iLimit) /* equal : no way to know if inf or sup */) { - break; /* drop, to guarantee consistency (miss a little bit of compression) */ - } - } - - if (dictMatchIndex <= dmsBtLow) { break; } /* beyond tree size, stop the search */ - if (match[matchLength] < ip[matchLength]) { - commonLengthSmaller = matchLength; /* all smaller will now have at least this guaranteed common length */ - dictMatchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to current) */ - } else { - /* match is larger than current */ - commonLengthLarger = matchLength; - dictMatchIndex = nextPtr[0]; - } - } - } - - assert(matchEndIdx > current+8); - ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ - return mnum; -} - - -FORCE_INLINE_TEMPLATE U32 ZSTD_BtGetAllMatches ( - ZSTD_match_t* matches, /* store result (match found, increasing size) in this table */ - ZSTD_matchState_t* ms, - U32* nextToUpdate3, - const BYTE* ip, const BYTE* const iHighLimit, const ZSTD_dictMode_e dictMode, - const U32 rep[ZSTD_REP_NUM], - U32 const ll0, - U32 const lengthToBeat) -{ - const ZSTD_compressionParameters* const cParams = &ms->cParams; - U32 const matchLengthSearch = cParams->minMatch; - DEBUGLOG(8, "ZSTD_BtGetAllMatches"); - if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ - ZSTD_updateTree_internal(ms, ip, iHighLimit, matchLengthSearch, dictMode); - switch(matchLengthSearch) - { - case 3 : return ZSTD_insertBtAndGetAllMatches(matches, ms, nextToUpdate3, ip, iHighLimit, dictMode, rep, ll0, lengthToBeat, 3); - default : - case 4 : return ZSTD_insertBtAndGetAllMatches(matches, ms, nextToUpdate3, ip, iHighLimit, dictMode, rep, ll0, lengthToBeat, 4); - case 5 : return ZSTD_insertBtAndGetAllMatches(matches, ms, nextToUpdate3, ip, iHighLimit, dictMode, rep, ll0, lengthToBeat, 5); - case 7 : - case 6 : return ZSTD_insertBtAndGetAllMatches(matches, ms, nextToUpdate3, ip, iHighLimit, dictMode, rep, ll0, lengthToBeat, 6); - } -} - - -/*-******************************* -* Optimal parser -*********************************/ - - -static U32 ZSTD_totalLen(ZSTD_optimal_t sol) -{ - return sol.litlen + sol.mlen; -} - -#if 0 /* debug */ - -static void -listStats(const U32* table, int lastEltID) -{ - int const nbElts = lastEltID + 1; - int enb; - for (enb=0; enb < nbElts; enb++) { - (void)table; - /* RAWLOG(2, "%3i:%3i, ", enb, table[enb]); */ - RAWLOG(2, "%4i,", table[enb]); - } - RAWLOG(2, " \n"); -} - -#endif - -FORCE_INLINE_TEMPLATE size_t -ZSTD_compressBlock_opt_generic(ZSTD_matchState_t* ms, - seqStore_t* seqStore, - U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize, - const int optLevel, - const ZSTD_dictMode_e dictMode) -{ - optState_t* const optStatePtr = &ms->opt; - const BYTE* const istart = (const BYTE*)src; - const BYTE* ip = istart; - const BYTE* anchor = istart; - const BYTE* const iend = istart + srcSize; - const BYTE* const ilimit = iend - 8; - const BYTE* const base = ms->window.base; - const BYTE* const prefixStart = base + ms->window.dictLimit; - const ZSTD_compressionParameters* const cParams = &ms->cParams; - - U32 const sufficient_len = MIN(cParams->targetLength, ZSTD_OPT_NUM -1); - U32 const minMatch = (cParams->minMatch == 3) ? 3 : 4; - U32 nextToUpdate3 = ms->nextToUpdate; - - ZSTD_optimal_t* const opt = optStatePtr->priceTable; - ZSTD_match_t* const matches = optStatePtr->matchTable; - ZSTD_optimal_t lastSequence; - - /* init */ - DEBUGLOG(5, "ZSTD_compressBlock_opt_generic: current=%u, prefix=%u, nextToUpdate=%u", - (U32)(ip - base), ms->window.dictLimit, ms->nextToUpdate); - assert(optLevel <= 2); - ZSTD_rescaleFreqs(optStatePtr, (const BYTE*)src, srcSize, optLevel); - ip += (ip==prefixStart); - - /* Match Loop */ - while (ip < ilimit) { - U32 cur, last_pos = 0; - - /* find first match */ - { U32 const litlen = (U32)(ip - anchor); - U32 const ll0 = !litlen; - U32 const nbMatches = ZSTD_BtGetAllMatches(matches, ms, &nextToUpdate3, ip, iend, dictMode, rep, ll0, minMatch); - if (!nbMatches) { ip++; continue; } - - /* initialize opt[0] */ - { U32 i ; for (i=0; i immediate encoding */ - { U32 const maxML = matches[nbMatches-1].len; - U32 const maxOffset = matches[nbMatches-1].off; - DEBUGLOG(6, "found %u matches of maxLength=%u and maxOffCode=%u at cPos=%u => start new series", - nbMatches, maxML, maxOffset, (U32)(ip-prefixStart)); - - if (maxML > sufficient_len) { - lastSequence.litlen = litlen; - lastSequence.mlen = maxML; - lastSequence.off = maxOffset; - DEBUGLOG(6, "large match (%u>%u), immediate encoding", - maxML, sufficient_len); - cur = 0; - last_pos = ZSTD_totalLen(lastSequence); - goto _shortestPath; - } } - - /* set prices for first matches starting position == 0 */ - { U32 const literalsPrice = opt[0].price + ZSTD_litLengthPrice(0, optStatePtr, optLevel); - U32 pos; - U32 matchNb; - for (pos = 1; pos < minMatch; pos++) { - opt[pos].price = ZSTD_MAX_PRICE; /* mlen, litlen and price will be fixed during forward scanning */ - } - for (matchNb = 0; matchNb < nbMatches; matchNb++) { - U32 const offset = matches[matchNb].off; - U32 const end = matches[matchNb].len; - for ( ; pos <= end ; pos++ ) { - U32 const matchPrice = ZSTD_getMatchPrice(offset, pos, optStatePtr, optLevel); - U32 const sequencePrice = literalsPrice + matchPrice; - DEBUGLOG(7, "rPos:%u => set initial price : %.2f", - pos, ZSTD_fCost(sequencePrice)); - opt[pos].mlen = pos; - opt[pos].off = offset; - opt[pos].litlen = litlen; - opt[pos].price = sequencePrice; - } } - last_pos = pos-1; - } - } - - /* check further positions */ - for (cur = 1; cur <= last_pos; cur++) { - const BYTE* const inr = ip + cur; - assert(cur < ZSTD_OPT_NUM); - DEBUGLOG(7, "cPos:%zi==rPos:%u", inr-istart, cur) - - /* Fix current position with one literal if cheaper */ - { U32 const litlen = (opt[cur-1].mlen == 0) ? opt[cur-1].litlen + 1 : 1; - int const price = opt[cur-1].price - + ZSTD_rawLiteralsCost(ip+cur-1, 1, optStatePtr, optLevel) - + ZSTD_litLengthPrice(litlen, optStatePtr, optLevel) - - ZSTD_litLengthPrice(litlen-1, optStatePtr, optLevel); - assert(price < 1000000000); /* overflow check */ - if (price <= opt[cur].price) { - DEBUGLOG(7, "cPos:%zi==rPos:%u : better price (%.2f<=%.2f) using literal (ll==%u) (hist:%u,%u,%u)", - inr-istart, cur, ZSTD_fCost(price), ZSTD_fCost(opt[cur].price), litlen, - opt[cur-1].rep[0], opt[cur-1].rep[1], opt[cur-1].rep[2]); - opt[cur].mlen = 0; - opt[cur].off = 0; - opt[cur].litlen = litlen; - opt[cur].price = price; - } else { - DEBUGLOG(7, "cPos:%zi==rPos:%u : literal would cost more (%.2f>%.2f) (hist:%u,%u,%u)", - inr-istart, cur, ZSTD_fCost(price), ZSTD_fCost(opt[cur].price), - opt[cur].rep[0], opt[cur].rep[1], opt[cur].rep[2]); - } - } - - /* Set the repcodes of the current position. We must do it here - * because we rely on the repcodes of the 2nd to last sequence being - * correct to set the next chunks repcodes during the backward - * traversal. - */ - ZSTD_STATIC_ASSERT(sizeof(opt[cur].rep) == sizeof(repcodes_t)); - assert(cur >= opt[cur].mlen); - if (opt[cur].mlen != 0) { - U32 const prev = cur - opt[cur].mlen; - repcodes_t newReps = ZSTD_updateRep(opt[prev].rep, opt[cur].off, opt[cur].litlen==0); - memcpy(opt[cur].rep, &newReps, sizeof(repcodes_t)); - } else { - memcpy(opt[cur].rep, opt[cur - 1].rep, sizeof(repcodes_t)); - } - - /* last match must start at a minimum distance of 8 from oend */ - if (inr > ilimit) continue; - - if (cur == last_pos) break; - - if ( (optLevel==0) /*static_test*/ - && (opt[cur+1].price <= opt[cur].price + (BITCOST_MULTIPLIER/2)) ) { - DEBUGLOG(7, "move to next rPos:%u : price is <=", cur+1); - continue; /* skip unpromising positions; about ~+6% speed, -0.01 ratio */ - } - - { U32 const ll0 = (opt[cur].mlen != 0); - U32 const litlen = (opt[cur].mlen == 0) ? opt[cur].litlen : 0; - U32 const previousPrice = opt[cur].price; - U32 const basePrice = previousPrice + ZSTD_litLengthPrice(0, optStatePtr, optLevel); - U32 const nbMatches = ZSTD_BtGetAllMatches(matches, ms, &nextToUpdate3, inr, iend, dictMode, opt[cur].rep, ll0, minMatch); - U32 matchNb; - if (!nbMatches) { - DEBUGLOG(7, "rPos:%u : no match found", cur); - continue; - } - - { U32 const maxML = matches[nbMatches-1].len; - DEBUGLOG(7, "cPos:%zi==rPos:%u, found %u matches, of maxLength=%u", - inr-istart, cur, nbMatches, maxML); - - if ( (maxML > sufficient_len) - || (cur + maxML >= ZSTD_OPT_NUM) ) { - lastSequence.mlen = maxML; - lastSequence.off = matches[nbMatches-1].off; - lastSequence.litlen = litlen; - cur -= (opt[cur].mlen==0) ? opt[cur].litlen : 0; /* last sequence is actually only literals, fix cur to last match - note : may underflow, in which case, it's first sequence, and it's okay */ - last_pos = cur + ZSTD_totalLen(lastSequence); - if (cur > ZSTD_OPT_NUM) cur = 0; /* underflow => first match */ - goto _shortestPath; - } } - - /* set prices using matches found at position == cur */ - for (matchNb = 0; matchNb < nbMatches; matchNb++) { - U32 const offset = matches[matchNb].off; - U32 const lastML = matches[matchNb].len; - U32 const startML = (matchNb>0) ? matches[matchNb-1].len+1 : minMatch; - U32 mlen; - - DEBUGLOG(7, "testing match %u => offCode=%4u, mlen=%2u, llen=%2u", - matchNb, matches[matchNb].off, lastML, litlen); - - for (mlen = lastML; mlen >= startML; mlen--) { /* scan downward */ - U32 const pos = cur + mlen; - int const price = basePrice + ZSTD_getMatchPrice(offset, mlen, optStatePtr, optLevel); - - if ((pos > last_pos) || (price < opt[pos].price)) { - DEBUGLOG(7, "rPos:%u (ml=%2u) => new better price (%.2f<%.2f)", - pos, mlen, ZSTD_fCost(price), ZSTD_fCost(opt[pos].price)); - while (last_pos < pos) { opt[last_pos+1].price = ZSTD_MAX_PRICE; last_pos++; } /* fill empty positions */ - opt[pos].mlen = mlen; - opt[pos].off = offset; - opt[pos].litlen = litlen; - opt[pos].price = price; - } else { - DEBUGLOG(7, "rPos:%u (ml=%2u) => new price is worse (%.2f>=%.2f)", - pos, mlen, ZSTD_fCost(price), ZSTD_fCost(opt[pos].price)); - if (optLevel==0) break; /* early update abort; gets ~+10% speed for about -0.01 ratio loss */ - } - } } } - } /* for (cur = 1; cur <= last_pos; cur++) */ - - lastSequence = opt[last_pos]; - cur = last_pos > ZSTD_totalLen(lastSequence) ? last_pos - ZSTD_totalLen(lastSequence) : 0; /* single sequence, and it starts before `ip` */ - assert(cur < ZSTD_OPT_NUM); /* control overflow*/ - -_shortestPath: /* cur, last_pos, best_mlen, best_off have to be set */ - assert(opt[0].mlen == 0); - - /* Set the next chunk's repcodes based on the repcodes of the beginning - * of the last match, and the last sequence. This avoids us having to - * update them while traversing the sequences. - */ - if (lastSequence.mlen != 0) { - repcodes_t reps = ZSTD_updateRep(opt[cur].rep, lastSequence.off, lastSequence.litlen==0); - memcpy(rep, &reps, sizeof(reps)); - } else { - memcpy(rep, opt[cur].rep, sizeof(repcodes_t)); - } - - { U32 const storeEnd = cur + 1; - U32 storeStart = storeEnd; - U32 seqPos = cur; - - DEBUGLOG(6, "start reverse traversal (last_pos:%u, cur:%u)", - last_pos, cur); (void)last_pos; - assert(storeEnd < ZSTD_OPT_NUM); - DEBUGLOG(6, "last sequence copied into pos=%u (llen=%u,mlen=%u,ofc=%u)", - storeEnd, lastSequence.litlen, lastSequence.mlen, lastSequence.off); - opt[storeEnd] = lastSequence; - while (seqPos > 0) { - U32 const backDist = ZSTD_totalLen(opt[seqPos]); - storeStart--; - DEBUGLOG(6, "sequence from rPos=%u copied into pos=%u (llen=%u,mlen=%u,ofc=%u)", - seqPos, storeStart, opt[seqPos].litlen, opt[seqPos].mlen, opt[seqPos].off); - opt[storeStart] = opt[seqPos]; - seqPos = (seqPos > backDist) ? seqPos - backDist : 0; - } - - /* save sequences */ - DEBUGLOG(6, "sending selected sequences into seqStore") - { U32 storePos; - for (storePos=storeStart; storePos <= storeEnd; storePos++) { - U32 const llen = opt[storePos].litlen; - U32 const mlen = opt[storePos].mlen; - U32 const offCode = opt[storePos].off; - U32 const advance = llen + mlen; - DEBUGLOG(6, "considering seq starting at %zi, llen=%u, mlen=%u", - anchor - istart, (unsigned)llen, (unsigned)mlen); - - if (mlen==0) { /* only literals => must be last "sequence", actually starting a new stream of sequences */ - assert(storePos == storeEnd); /* must be last sequence */ - ip = anchor + llen; /* last "sequence" is a bunch of literals => don't progress anchor */ - continue; /* will finish */ - } - - assert(anchor + llen <= iend); - ZSTD_updateStats(optStatePtr, llen, anchor, offCode, mlen); - ZSTD_storeSeq(seqStore, llen, anchor, iend, offCode, mlen-MINMATCH); - anchor += advance; - ip = anchor; - } } - ZSTD_setBasePrices(optStatePtr, optLevel); - } - } /* while (ip < ilimit) */ - - /* Return the last literals size */ - return (size_t)(iend - anchor); -} - - -size_t ZSTD_compressBlock_btopt( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize) -{ - DEBUGLOG(5, "ZSTD_compressBlock_btopt"); - return ZSTD_compressBlock_opt_generic(ms, seqStore, rep, src, srcSize, 0 /*optLevel*/, ZSTD_noDict); -} - - -/* used in 2-pass strategy */ -static U32 ZSTD_upscaleStat(unsigned* table, U32 lastEltIndex, int bonus) -{ - U32 s, sum=0; - assert(ZSTD_FREQ_DIV+bonus >= 0); - for (s=0; slitSum = ZSTD_upscaleStat(optPtr->litFreq, MaxLit, 0); - optPtr->litLengthSum = ZSTD_upscaleStat(optPtr->litLengthFreq, MaxLL, 0); - optPtr->matchLengthSum = ZSTD_upscaleStat(optPtr->matchLengthFreq, MaxML, 0); - optPtr->offCodeSum = ZSTD_upscaleStat(optPtr->offCodeFreq, MaxOff, 0); -} - -/* ZSTD_initStats_ultra(): - * make a first compression pass, just to seed stats with more accurate starting values. - * only works on first block, with no dictionary and no ldm. - * this function cannot error, hence its contract must be respected. - */ -static void -ZSTD_initStats_ultra(ZSTD_matchState_t* ms, - seqStore_t* seqStore, - U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize) -{ - U32 tmpRep[ZSTD_REP_NUM]; /* updated rep codes will sink here */ - memcpy(tmpRep, rep, sizeof(tmpRep)); - - DEBUGLOG(4, "ZSTD_initStats_ultra (srcSize=%zu)", srcSize); - assert(ms->opt.litLengthSum == 0); /* first block */ - assert(seqStore->sequences == seqStore->sequencesStart); /* no ldm */ - assert(ms->window.dictLimit == ms->window.lowLimit); /* no dictionary */ - assert(ms->window.dictLimit - ms->nextToUpdate <= 1); /* no prefix (note: intentional overflow, defined as 2-complement) */ - - ZSTD_compressBlock_opt_generic(ms, seqStore, tmpRep, src, srcSize, 2 /*optLevel*/, ZSTD_noDict); /* generate stats into ms->opt*/ - - /* invalidate first scan from history */ - ZSTD_resetSeqStore(seqStore); - ms->window.base -= srcSize; - ms->window.dictLimit += (U32)srcSize; - ms->window.lowLimit = ms->window.dictLimit; - ms->nextToUpdate = ms->window.dictLimit; - - /* re-inforce weight of collected statistics */ - ZSTD_upscaleStats(&ms->opt); -} - -size_t ZSTD_compressBlock_btultra( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize) -{ - DEBUGLOG(5, "ZSTD_compressBlock_btultra (srcSize=%zu)", srcSize); - return ZSTD_compressBlock_opt_generic(ms, seqStore, rep, src, srcSize, 2 /*optLevel*/, ZSTD_noDict); -} - -size_t ZSTD_compressBlock_btultra2( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize) -{ - U32 const current = (U32)((const BYTE*)src - ms->window.base); - DEBUGLOG(5, "ZSTD_compressBlock_btultra2 (srcSize=%zu)", srcSize); - - /* 2-pass strategy: - * this strategy makes a first pass over first block to collect statistics - * and seed next round's statistics with it. - * After 1st pass, function forgets everything, and starts a new block. - * Consequently, this can only work if no data has been previously loaded in tables, - * aka, no dictionary, no prefix, no ldm preprocessing. - * The compression ratio gain is generally small (~0.5% on first block), - * the cost is 2x cpu time on first block. */ - assert(srcSize <= ZSTD_BLOCKSIZE_MAX); - if ( (ms->opt.litLengthSum==0) /* first block */ - && (seqStore->sequences == seqStore->sequencesStart) /* no ldm */ - && (ms->window.dictLimit == ms->window.lowLimit) /* no dictionary */ - && (current == ms->window.dictLimit) /* start of frame, nothing already loaded nor skipped */ - && (srcSize > ZSTD_PREDEF_THRESHOLD) - ) { - ZSTD_initStats_ultra(ms, seqStore, rep, src, srcSize); - } - - return ZSTD_compressBlock_opt_generic(ms, seqStore, rep, src, srcSize, 2 /*optLevel*/, ZSTD_noDict); -} - -size_t ZSTD_compressBlock_btopt_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize) -{ - return ZSTD_compressBlock_opt_generic(ms, seqStore, rep, src, srcSize, 0 /*optLevel*/, ZSTD_dictMatchState); -} - -size_t ZSTD_compressBlock_btultra_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize) -{ - return ZSTD_compressBlock_opt_generic(ms, seqStore, rep, src, srcSize, 2 /*optLevel*/, ZSTD_dictMatchState); -} - -size_t ZSTD_compressBlock_btopt_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize) -{ - return ZSTD_compressBlock_opt_generic(ms, seqStore, rep, src, srcSize, 0 /*optLevel*/, ZSTD_extDict); -} - -size_t ZSTD_compressBlock_btultra_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - const void* src, size_t srcSize) -{ - return ZSTD_compressBlock_opt_generic(ms, seqStore, rep, src, srcSize, 2 /*optLevel*/, ZSTD_extDict); -} - -/* note : no btultra2 variant for extDict nor dictMatchState, - * because btultra2 is not meant to work with dictionaries - * and is only specific for the first block (no prefix) */ diff --git a/lib/SZ3/tools/zstd/compress/zstd_opt.h b/lib/SZ3/tools/zstd/compress/zstd_opt.h deleted file mode 100644 index 9aba8a90..00000000 --- a/lib/SZ3/tools/zstd/compress/zstd_opt.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_OPT_H -#define ZSTD_OPT_H - -#if defined (__cplusplus) -extern "C" { -#endif - -#include "zstd_compress_internal.h" - -/* used in ZSTD_loadDictionaryContent() */ -void ZSTD_updateTree(ZSTD_matchState_t* ms, const BYTE* ip, const BYTE* iend); - -size_t ZSTD_compressBlock_btopt( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_btultra( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_btultra2( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - - -size_t ZSTD_compressBlock_btopt_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_btultra_dictMatchState( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - -size_t ZSTD_compressBlock_btopt_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); -size_t ZSTD_compressBlock_btultra_extDict( - ZSTD_matchState_t* ms, seqStore_t* seqStore, U32 rep[ZSTD_REP_NUM], - void const* src, size_t srcSize); - - /* note : no btultra2 variant for extDict nor dictMatchState, - * because btultra2 is not meant to work with dictionaries - * and is only specific for the first block (no prefix) */ - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_OPT_H */ diff --git a/lib/SZ3/tools/zstd/compress/zstdmt_compress.c b/lib/SZ3/tools/zstd/compress/zstdmt_compress.c deleted file mode 100644 index 1e3c8fdb..00000000 --- a/lib/SZ3/tools/zstd/compress/zstdmt_compress.c +++ /dev/null @@ -1,2143 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -/* ====== Compiler specifics ====== */ -#if defined(_MSC_VER) -# pragma warning(disable : 4204) /* disable: C4204: non-constant aggregate initializer */ -#endif - - -/* ====== Constants ====== */ -#define ZSTDMT_OVERLAPLOG_DEFAULT 0 - - -/* ====== Dependencies ====== */ -#include /* memcpy, memset */ -#include /* INT_MAX, UINT_MAX */ -#include "../common/mem.h" /* MEM_STATIC */ -#include "../common/pool.h" /* threadpool */ -#include "../common/threading.h" /* mutex */ -#include "zstd_compress_internal.h" /* MIN, ERROR, ZSTD_*, ZSTD_highbit32 */ -#include "zstd_ldm.h" -#include "zstdmt_compress.h" - -/* Guards code to support resizing the SeqPool. - * We will want to resize the SeqPool to save memory in the future. - * Until then, comment the code out since it is unused. - */ -#define ZSTD_RESIZE_SEQPOOL 0 - -/* ====== Debug ====== */ -#if defined(DEBUGLEVEL) && (DEBUGLEVEL>=2) \ - && !defined(_MSC_VER) \ - && !defined(__MINGW32__) - -# include -# include -# include - -# define DEBUG_PRINTHEX(l,p,n) { \ - unsigned debug_u; \ - for (debug_u=0; debug_u<(n); debug_u++) \ - RAWLOG(l, "%02X ", ((const unsigned char*)(p))[debug_u]); \ - RAWLOG(l, " \n"); \ -} - -static unsigned long long GetCurrentClockTimeMicroseconds(void) -{ - static clock_t _ticksPerSecond = 0; - if (_ticksPerSecond <= 0) _ticksPerSecond = sysconf(_SC_CLK_TCK); - - { struct tms junk; clock_t newTicks = (clock_t) times(&junk); - return ((((unsigned long long)newTicks)*(1000000))/_ticksPerSecond); -} } - -#define MUTEX_WAIT_TIME_DLEVEL 6 -#define ZSTD_PTHREAD_MUTEX_LOCK(mutex) { \ - if (DEBUGLEVEL >= MUTEX_WAIT_TIME_DLEVEL) { \ - unsigned long long const beforeTime = GetCurrentClockTimeMicroseconds(); \ - ZSTD_pthread_mutex_lock(mutex); \ - { unsigned long long const afterTime = GetCurrentClockTimeMicroseconds(); \ - unsigned long long const elapsedTime = (afterTime-beforeTime); \ - if (elapsedTime > 1000) { /* or whatever threshold you like; I'm using 1 millisecond here */ \ - DEBUGLOG(MUTEX_WAIT_TIME_DLEVEL, "Thread took %llu microseconds to acquire mutex %s \n", \ - elapsedTime, #mutex); \ - } } \ - } else { \ - ZSTD_pthread_mutex_lock(mutex); \ - } \ -} - -#else - -# define ZSTD_PTHREAD_MUTEX_LOCK(m) ZSTD_pthread_mutex_lock(m) -# define DEBUG_PRINTHEX(l,p,n) {} - -#endif - - -/* ===== Buffer Pool ===== */ -/* a single Buffer Pool can be invoked from multiple threads in parallel */ - -typedef struct buffer_s { - void* start; - size_t capacity; -} buffer_t; - -static const buffer_t g_nullBuffer = { NULL, 0 }; - -typedef struct ZSTDMT_bufferPool_s { - ZSTD_pthread_mutex_t poolMutex; - size_t bufferSize; - unsigned totalBuffers; - unsigned nbBuffers; - ZSTD_customMem cMem; - buffer_t bTable[1]; /* variable size */ -} ZSTDMT_bufferPool; - -static ZSTDMT_bufferPool* ZSTDMT_createBufferPool(unsigned nbWorkers, ZSTD_customMem cMem) -{ - unsigned const maxNbBuffers = 2*nbWorkers + 3; - ZSTDMT_bufferPool* const bufPool = (ZSTDMT_bufferPool*)ZSTD_calloc( - sizeof(ZSTDMT_bufferPool) + (maxNbBuffers-1) * sizeof(buffer_t), cMem); - if (bufPool==NULL) return NULL; - if (ZSTD_pthread_mutex_init(&bufPool->poolMutex, NULL)) { - ZSTD_free(bufPool, cMem); - return NULL; - } - bufPool->bufferSize = 64 KB; - bufPool->totalBuffers = maxNbBuffers; - bufPool->nbBuffers = 0; - bufPool->cMem = cMem; - return bufPool; -} - -static void ZSTDMT_freeBufferPool(ZSTDMT_bufferPool* bufPool) -{ - unsigned u; - DEBUGLOG(3, "ZSTDMT_freeBufferPool (address:%08X)", (U32)(size_t)bufPool); - if (!bufPool) return; /* compatibility with free on NULL */ - for (u=0; utotalBuffers; u++) { - DEBUGLOG(4, "free buffer %2u (address:%08X)", u, (U32)(size_t)bufPool->bTable[u].start); - ZSTD_free(bufPool->bTable[u].start, bufPool->cMem); - } - ZSTD_pthread_mutex_destroy(&bufPool->poolMutex); - ZSTD_free(bufPool, bufPool->cMem); -} - -/* only works at initialization, not during compression */ -static size_t ZSTDMT_sizeof_bufferPool(ZSTDMT_bufferPool* bufPool) -{ - size_t const poolSize = sizeof(*bufPool) - + (bufPool->totalBuffers - 1) * sizeof(buffer_t); - unsigned u; - size_t totalBufferSize = 0; - ZSTD_pthread_mutex_lock(&bufPool->poolMutex); - for (u=0; utotalBuffers; u++) - totalBufferSize += bufPool->bTable[u].capacity; - ZSTD_pthread_mutex_unlock(&bufPool->poolMutex); - - return poolSize + totalBufferSize; -} - -/* ZSTDMT_setBufferSize() : - * all future buffers provided by this buffer pool will have _at least_ this size - * note : it's better for all buffers to have same size, - * as they become freely interchangeable, reducing malloc/free usages and memory fragmentation */ -static void ZSTDMT_setBufferSize(ZSTDMT_bufferPool* const bufPool, size_t const bSize) -{ - ZSTD_pthread_mutex_lock(&bufPool->poolMutex); - DEBUGLOG(4, "ZSTDMT_setBufferSize: bSize = %u", (U32)bSize); - bufPool->bufferSize = bSize; - ZSTD_pthread_mutex_unlock(&bufPool->poolMutex); -} - - -static ZSTDMT_bufferPool* ZSTDMT_expandBufferPool(ZSTDMT_bufferPool* srcBufPool, U32 nbWorkers) -{ - unsigned const maxNbBuffers = 2*nbWorkers + 3; - if (srcBufPool==NULL) return NULL; - if (srcBufPool->totalBuffers >= maxNbBuffers) /* good enough */ - return srcBufPool; - /* need a larger buffer pool */ - { ZSTD_customMem const cMem = srcBufPool->cMem; - size_t const bSize = srcBufPool->bufferSize; /* forward parameters */ - ZSTDMT_bufferPool* newBufPool; - ZSTDMT_freeBufferPool(srcBufPool); - newBufPool = ZSTDMT_createBufferPool(nbWorkers, cMem); - if (newBufPool==NULL) return newBufPool; - ZSTDMT_setBufferSize(newBufPool, bSize); - return newBufPool; - } -} - -/** ZSTDMT_getBuffer() : - * assumption : bufPool must be valid - * @return : a buffer, with start pointer and size - * note: allocation may fail, in this case, start==NULL and size==0 */ -static buffer_t ZSTDMT_getBuffer(ZSTDMT_bufferPool* bufPool) -{ - size_t const bSize = bufPool->bufferSize; - DEBUGLOG(5, "ZSTDMT_getBuffer: bSize = %u", (U32)bufPool->bufferSize); - ZSTD_pthread_mutex_lock(&bufPool->poolMutex); - if (bufPool->nbBuffers) { /* try to use an existing buffer */ - buffer_t const buf = bufPool->bTable[--(bufPool->nbBuffers)]; - size_t const availBufferSize = buf.capacity; - bufPool->bTable[bufPool->nbBuffers] = g_nullBuffer; - if ((availBufferSize >= bSize) & ((availBufferSize>>3) <= bSize)) { - /* large enough, but not too much */ - DEBUGLOG(5, "ZSTDMT_getBuffer: provide buffer %u of size %u", - bufPool->nbBuffers, (U32)buf.capacity); - ZSTD_pthread_mutex_unlock(&bufPool->poolMutex); - return buf; - } - /* size conditions not respected : scratch this buffer, create new one */ - DEBUGLOG(5, "ZSTDMT_getBuffer: existing buffer does not meet size conditions => freeing"); - ZSTD_free(buf.start, bufPool->cMem); - } - ZSTD_pthread_mutex_unlock(&bufPool->poolMutex); - /* create new buffer */ - DEBUGLOG(5, "ZSTDMT_getBuffer: create a new buffer"); - { buffer_t buffer; - void* const start = ZSTD_malloc(bSize, bufPool->cMem); - buffer.start = start; /* note : start can be NULL if malloc fails ! */ - buffer.capacity = (start==NULL) ? 0 : bSize; - if (start==NULL) { - DEBUGLOG(5, "ZSTDMT_getBuffer: buffer allocation failure !!"); - } else { - DEBUGLOG(5, "ZSTDMT_getBuffer: created buffer of size %u", (U32)bSize); - } - return buffer; - } -} - -#if ZSTD_RESIZE_SEQPOOL -/** ZSTDMT_resizeBuffer() : - * assumption : bufPool must be valid - * @return : a buffer that is at least the buffer pool buffer size. - * If a reallocation happens, the data in the input buffer is copied. - */ -static buffer_t ZSTDMT_resizeBuffer(ZSTDMT_bufferPool* bufPool, buffer_t buffer) -{ - size_t const bSize = bufPool->bufferSize; - if (buffer.capacity < bSize) { - void* const start = ZSTD_malloc(bSize, bufPool->cMem); - buffer_t newBuffer; - newBuffer.start = start; - newBuffer.capacity = start == NULL ? 0 : bSize; - if (start != NULL) { - assert(newBuffer.capacity >= buffer.capacity); - memcpy(newBuffer.start, buffer.start, buffer.capacity); - DEBUGLOG(5, "ZSTDMT_resizeBuffer: created buffer of size %u", (U32)bSize); - return newBuffer; - } - DEBUGLOG(5, "ZSTDMT_resizeBuffer: buffer allocation failure !!"); - } - return buffer; -} -#endif - -/* store buffer for later re-use, up to pool capacity */ -static void ZSTDMT_releaseBuffer(ZSTDMT_bufferPool* bufPool, buffer_t buf) -{ - DEBUGLOG(5, "ZSTDMT_releaseBuffer"); - if (buf.start == NULL) return; /* compatible with release on NULL */ - ZSTD_pthread_mutex_lock(&bufPool->poolMutex); - if (bufPool->nbBuffers < bufPool->totalBuffers) { - bufPool->bTable[bufPool->nbBuffers++] = buf; /* stored for later use */ - DEBUGLOG(5, "ZSTDMT_releaseBuffer: stored buffer of size %u in slot %u", - (U32)buf.capacity, (U32)(bufPool->nbBuffers-1)); - ZSTD_pthread_mutex_unlock(&bufPool->poolMutex); - return; - } - ZSTD_pthread_mutex_unlock(&bufPool->poolMutex); - /* Reached bufferPool capacity (should not happen) */ - DEBUGLOG(5, "ZSTDMT_releaseBuffer: pool capacity reached => freeing "); - ZSTD_free(buf.start, bufPool->cMem); -} - - -/* ===== Seq Pool Wrapper ====== */ - -static rawSeqStore_t kNullRawSeqStore = {NULL, 0, 0, 0}; - -typedef ZSTDMT_bufferPool ZSTDMT_seqPool; - -static size_t ZSTDMT_sizeof_seqPool(ZSTDMT_seqPool* seqPool) -{ - return ZSTDMT_sizeof_bufferPool(seqPool); -} - -static rawSeqStore_t bufferToSeq(buffer_t buffer) -{ - rawSeqStore_t seq = {NULL, 0, 0, 0}; - seq.seq = (rawSeq*)buffer.start; - seq.capacity = buffer.capacity / sizeof(rawSeq); - return seq; -} - -static buffer_t seqToBuffer(rawSeqStore_t seq) -{ - buffer_t buffer; - buffer.start = seq.seq; - buffer.capacity = seq.capacity * sizeof(rawSeq); - return buffer; -} - -static rawSeqStore_t ZSTDMT_getSeq(ZSTDMT_seqPool* seqPool) -{ - if (seqPool->bufferSize == 0) { - return kNullRawSeqStore; - } - return bufferToSeq(ZSTDMT_getBuffer(seqPool)); -} - -#if ZSTD_RESIZE_SEQPOOL -static rawSeqStore_t ZSTDMT_resizeSeq(ZSTDMT_seqPool* seqPool, rawSeqStore_t seq) -{ - return bufferToSeq(ZSTDMT_resizeBuffer(seqPool, seqToBuffer(seq))); -} -#endif - -static void ZSTDMT_releaseSeq(ZSTDMT_seqPool* seqPool, rawSeqStore_t seq) -{ - ZSTDMT_releaseBuffer(seqPool, seqToBuffer(seq)); -} - -static void ZSTDMT_setNbSeq(ZSTDMT_seqPool* const seqPool, size_t const nbSeq) -{ - ZSTDMT_setBufferSize(seqPool, nbSeq * sizeof(rawSeq)); -} - -static ZSTDMT_seqPool* ZSTDMT_createSeqPool(unsigned nbWorkers, ZSTD_customMem cMem) -{ - ZSTDMT_seqPool* const seqPool = ZSTDMT_createBufferPool(nbWorkers, cMem); - if (seqPool == NULL) return NULL; - ZSTDMT_setNbSeq(seqPool, 0); - return seqPool; -} - -static void ZSTDMT_freeSeqPool(ZSTDMT_seqPool* seqPool) -{ - ZSTDMT_freeBufferPool(seqPool); -} - -static ZSTDMT_seqPool* ZSTDMT_expandSeqPool(ZSTDMT_seqPool* pool, U32 nbWorkers) -{ - return ZSTDMT_expandBufferPool(pool, nbWorkers); -} - - -/* ===== CCtx Pool ===== */ -/* a single CCtx Pool can be invoked from multiple threads in parallel */ - -typedef struct { - ZSTD_pthread_mutex_t poolMutex; - int totalCCtx; - int availCCtx; - ZSTD_customMem cMem; - ZSTD_CCtx* cctx[1]; /* variable size */ -} ZSTDMT_CCtxPool; - -/* note : all CCtx borrowed from the pool should be released back to the pool _before_ freeing the pool */ -static void ZSTDMT_freeCCtxPool(ZSTDMT_CCtxPool* pool) -{ - int cid; - for (cid=0; cidtotalCCtx; cid++) - ZSTD_freeCCtx(pool->cctx[cid]); /* note : compatible with free on NULL */ - ZSTD_pthread_mutex_destroy(&pool->poolMutex); - ZSTD_free(pool, pool->cMem); -} - -/* ZSTDMT_createCCtxPool() : - * implies nbWorkers >= 1 , checked by caller ZSTDMT_createCCtx() */ -static ZSTDMT_CCtxPool* ZSTDMT_createCCtxPool(int nbWorkers, - ZSTD_customMem cMem) -{ - ZSTDMT_CCtxPool* const cctxPool = (ZSTDMT_CCtxPool*) ZSTD_calloc( - sizeof(ZSTDMT_CCtxPool) + (nbWorkers-1)*sizeof(ZSTD_CCtx*), cMem); - assert(nbWorkers > 0); - if (!cctxPool) return NULL; - if (ZSTD_pthread_mutex_init(&cctxPool->poolMutex, NULL)) { - ZSTD_free(cctxPool, cMem); - return NULL; - } - cctxPool->cMem = cMem; - cctxPool->totalCCtx = nbWorkers; - cctxPool->availCCtx = 1; /* at least one cctx for single-thread mode */ - cctxPool->cctx[0] = ZSTD_createCCtx_advanced(cMem); - if (!cctxPool->cctx[0]) { ZSTDMT_freeCCtxPool(cctxPool); return NULL; } - DEBUGLOG(3, "cctxPool created, with %u workers", nbWorkers); - return cctxPool; -} - -static ZSTDMT_CCtxPool* ZSTDMT_expandCCtxPool(ZSTDMT_CCtxPool* srcPool, - int nbWorkers) -{ - if (srcPool==NULL) return NULL; - if (nbWorkers <= srcPool->totalCCtx) return srcPool; /* good enough */ - /* need a larger cctx pool */ - { ZSTD_customMem const cMem = srcPool->cMem; - ZSTDMT_freeCCtxPool(srcPool); - return ZSTDMT_createCCtxPool(nbWorkers, cMem); - } -} - -/* only works during initialization phase, not during compression */ -static size_t ZSTDMT_sizeof_CCtxPool(ZSTDMT_CCtxPool* cctxPool) -{ - ZSTD_pthread_mutex_lock(&cctxPool->poolMutex); - { unsigned const nbWorkers = cctxPool->totalCCtx; - size_t const poolSize = sizeof(*cctxPool) - + (nbWorkers-1) * sizeof(ZSTD_CCtx*); - unsigned u; - size_t totalCCtxSize = 0; - for (u=0; ucctx[u]); - } - ZSTD_pthread_mutex_unlock(&cctxPool->poolMutex); - assert(nbWorkers > 0); - return poolSize + totalCCtxSize; - } -} - -static ZSTD_CCtx* ZSTDMT_getCCtx(ZSTDMT_CCtxPool* cctxPool) -{ - DEBUGLOG(5, "ZSTDMT_getCCtx"); - ZSTD_pthread_mutex_lock(&cctxPool->poolMutex); - if (cctxPool->availCCtx) { - cctxPool->availCCtx--; - { ZSTD_CCtx* const cctx = cctxPool->cctx[cctxPool->availCCtx]; - ZSTD_pthread_mutex_unlock(&cctxPool->poolMutex); - return cctx; - } } - ZSTD_pthread_mutex_unlock(&cctxPool->poolMutex); - DEBUGLOG(5, "create one more CCtx"); - return ZSTD_createCCtx_advanced(cctxPool->cMem); /* note : can be NULL, when creation fails ! */ -} - -static void ZSTDMT_releaseCCtx(ZSTDMT_CCtxPool* pool, ZSTD_CCtx* cctx) -{ - if (cctx==NULL) return; /* compatibility with release on NULL */ - ZSTD_pthread_mutex_lock(&pool->poolMutex); - if (pool->availCCtx < pool->totalCCtx) - pool->cctx[pool->availCCtx++] = cctx; - else { - /* pool overflow : should not happen, since totalCCtx==nbWorkers */ - DEBUGLOG(4, "CCtx pool overflow : free cctx"); - ZSTD_freeCCtx(cctx); - } - ZSTD_pthread_mutex_unlock(&pool->poolMutex); -} - -/* ==== Serial State ==== */ - -typedef struct { - void const* start; - size_t size; -} range_t; - -typedef struct { - /* All variables in the struct are protected by mutex. */ - ZSTD_pthread_mutex_t mutex; - ZSTD_pthread_cond_t cond; - ZSTD_CCtx_params params; - ldmState_t ldmState; - XXH64_state_t xxhState; - unsigned nextJobID; - /* Protects ldmWindow. - * Must be acquired after the main mutex when acquiring both. - */ - ZSTD_pthread_mutex_t ldmWindowMutex; - ZSTD_pthread_cond_t ldmWindowCond; /* Signaled when ldmWindow is updated */ - ZSTD_window_t ldmWindow; /* A thread-safe copy of ldmState.window */ -} serialState_t; - -static int -ZSTDMT_serialState_reset(serialState_t* serialState, - ZSTDMT_seqPool* seqPool, - ZSTD_CCtx_params params, - size_t jobSize, - const void* dict, size_t const dictSize, - ZSTD_dictContentType_e dictContentType) -{ - /* Adjust parameters */ - if (params.ldmParams.enableLdm) { - DEBUGLOG(4, "LDM window size = %u KB", (1U << params.cParams.windowLog) >> 10); - ZSTD_ldm_adjustParameters(¶ms.ldmParams, ¶ms.cParams); - assert(params.ldmParams.hashLog >= params.ldmParams.bucketSizeLog); - assert(params.ldmParams.hashRateLog < 32); - serialState->ldmState.hashPower = - ZSTD_rollingHash_primePower(params.ldmParams.minMatchLength); - } else { - memset(¶ms.ldmParams, 0, sizeof(params.ldmParams)); - } - serialState->nextJobID = 0; - if (params.fParams.checksumFlag) - XXH64_reset(&serialState->xxhState, 0); - if (params.ldmParams.enableLdm) { - ZSTD_customMem cMem = params.customMem; - unsigned const hashLog = params.ldmParams.hashLog; - size_t const hashSize = ((size_t)1 << hashLog) * sizeof(ldmEntry_t); - unsigned const bucketLog = - params.ldmParams.hashLog - params.ldmParams.bucketSizeLog; - size_t const bucketSize = (size_t)1 << bucketLog; - unsigned const prevBucketLog = - serialState->params.ldmParams.hashLog - - serialState->params.ldmParams.bucketSizeLog; - /* Size the seq pool tables */ - ZSTDMT_setNbSeq(seqPool, ZSTD_ldm_getMaxNbSeq(params.ldmParams, jobSize)); - /* Reset the window */ - ZSTD_window_init(&serialState->ldmState.window); - /* Resize tables and output space if necessary. */ - if (serialState->ldmState.hashTable == NULL || serialState->params.ldmParams.hashLog < hashLog) { - ZSTD_free(serialState->ldmState.hashTable, cMem); - serialState->ldmState.hashTable = (ldmEntry_t*)ZSTD_malloc(hashSize, cMem); - } - if (serialState->ldmState.bucketOffsets == NULL || prevBucketLog < bucketLog) { - ZSTD_free(serialState->ldmState.bucketOffsets, cMem); - serialState->ldmState.bucketOffsets = (BYTE*)ZSTD_malloc(bucketSize, cMem); - } - if (!serialState->ldmState.hashTable || !serialState->ldmState.bucketOffsets) - return 1; - /* Zero the tables */ - memset(serialState->ldmState.hashTable, 0, hashSize); - memset(serialState->ldmState.bucketOffsets, 0, bucketSize); - - /* Update window state and fill hash table with dict */ - serialState->ldmState.loadedDictEnd = 0; - if (dictSize > 0) { - if (dictContentType == ZSTD_dct_rawContent) { - BYTE const* const dictEnd = (const BYTE*)dict + dictSize; - ZSTD_window_update(&serialState->ldmState.window, dict, dictSize); - ZSTD_ldm_fillHashTable(&serialState->ldmState, (const BYTE*)dict, dictEnd, ¶ms.ldmParams); - serialState->ldmState.loadedDictEnd = params.forceWindow ? 0 : (U32)(dictEnd - serialState->ldmState.window.base); - } else { - /* don't even load anything */ - } - } - - /* Initialize serialState's copy of ldmWindow. */ - serialState->ldmWindow = serialState->ldmState.window; - } - - serialState->params = params; - serialState->params.jobSize = (U32)jobSize; - return 0; -} - -static int ZSTDMT_serialState_init(serialState_t* serialState) -{ - int initError = 0; - memset(serialState, 0, sizeof(*serialState)); - initError |= ZSTD_pthread_mutex_init(&serialState->mutex, NULL); - initError |= ZSTD_pthread_cond_init(&serialState->cond, NULL); - initError |= ZSTD_pthread_mutex_init(&serialState->ldmWindowMutex, NULL); - initError |= ZSTD_pthread_cond_init(&serialState->ldmWindowCond, NULL); - return initError; -} - -static void ZSTDMT_serialState_free(serialState_t* serialState) -{ - ZSTD_customMem cMem = serialState->params.customMem; - ZSTD_pthread_mutex_destroy(&serialState->mutex); - ZSTD_pthread_cond_destroy(&serialState->cond); - ZSTD_pthread_mutex_destroy(&serialState->ldmWindowMutex); - ZSTD_pthread_cond_destroy(&serialState->ldmWindowCond); - ZSTD_free(serialState->ldmState.hashTable, cMem); - ZSTD_free(serialState->ldmState.bucketOffsets, cMem); -} - -static void ZSTDMT_serialState_update(serialState_t* serialState, - ZSTD_CCtx* jobCCtx, rawSeqStore_t seqStore, - range_t src, unsigned jobID) -{ - /* Wait for our turn */ - ZSTD_PTHREAD_MUTEX_LOCK(&serialState->mutex); - while (serialState->nextJobID < jobID) { - DEBUGLOG(5, "wait for serialState->cond"); - ZSTD_pthread_cond_wait(&serialState->cond, &serialState->mutex); - } - /* A future job may error and skip our job */ - if (serialState->nextJobID == jobID) { - /* It is now our turn, do any processing necessary */ - if (serialState->params.ldmParams.enableLdm) { - size_t error; - assert(seqStore.seq != NULL && seqStore.pos == 0 && - seqStore.size == 0 && seqStore.capacity > 0); - assert(src.size <= serialState->params.jobSize); - ZSTD_window_update(&serialState->ldmState.window, src.start, src.size); - error = ZSTD_ldm_generateSequences( - &serialState->ldmState, &seqStore, - &serialState->params.ldmParams, src.start, src.size); - /* We provide a large enough buffer to never fail. */ - assert(!ZSTD_isError(error)); (void)error; - /* Update ldmWindow to match the ldmState.window and signal the main - * thread if it is waiting for a buffer. - */ - ZSTD_PTHREAD_MUTEX_LOCK(&serialState->ldmWindowMutex); - serialState->ldmWindow = serialState->ldmState.window; - ZSTD_pthread_cond_signal(&serialState->ldmWindowCond); - ZSTD_pthread_mutex_unlock(&serialState->ldmWindowMutex); - } - if (serialState->params.fParams.checksumFlag && src.size > 0) - XXH64_update(&serialState->xxhState, src.start, src.size); - } - /* Now it is the next jobs turn */ - serialState->nextJobID++; - ZSTD_pthread_cond_broadcast(&serialState->cond); - ZSTD_pthread_mutex_unlock(&serialState->mutex); - - if (seqStore.size > 0) { - size_t const err = ZSTD_referenceExternalSequences( - jobCCtx, seqStore.seq, seqStore.size); - assert(serialState->params.ldmParams.enableLdm); - assert(!ZSTD_isError(err)); - (void)err; - } -} - -static void ZSTDMT_serialState_ensureFinished(serialState_t* serialState, - unsigned jobID, size_t cSize) -{ - ZSTD_PTHREAD_MUTEX_LOCK(&serialState->mutex); - if (serialState->nextJobID <= jobID) { - assert(ZSTD_isError(cSize)); (void)cSize; - DEBUGLOG(5, "Skipping past job %u because of error", jobID); - serialState->nextJobID = jobID + 1; - ZSTD_pthread_cond_broadcast(&serialState->cond); - - ZSTD_PTHREAD_MUTEX_LOCK(&serialState->ldmWindowMutex); - ZSTD_window_clear(&serialState->ldmWindow); - ZSTD_pthread_cond_signal(&serialState->ldmWindowCond); - ZSTD_pthread_mutex_unlock(&serialState->ldmWindowMutex); - } - ZSTD_pthread_mutex_unlock(&serialState->mutex); - -} - - -/* ------------------------------------------ */ -/* ===== Worker thread ===== */ -/* ------------------------------------------ */ - -static const range_t kNullRange = { NULL, 0 }; - -typedef struct { - size_t consumed; /* SHARED - set0 by mtctx, then modified by worker AND read by mtctx */ - size_t cSize; /* SHARED - set0 by mtctx, then modified by worker AND read by mtctx, then set0 by mtctx */ - ZSTD_pthread_mutex_t job_mutex; /* Thread-safe - used by mtctx and worker */ - ZSTD_pthread_cond_t job_cond; /* Thread-safe - used by mtctx and worker */ - ZSTDMT_CCtxPool* cctxPool; /* Thread-safe - used by mtctx and (all) workers */ - ZSTDMT_bufferPool* bufPool; /* Thread-safe - used by mtctx and (all) workers */ - ZSTDMT_seqPool* seqPool; /* Thread-safe - used by mtctx and (all) workers */ - serialState_t* serial; /* Thread-safe - used by mtctx and (all) workers */ - buffer_t dstBuff; /* set by worker (or mtctx), then read by worker & mtctx, then modified by mtctx => no barrier */ - range_t prefix; /* set by mtctx, then read by worker & mtctx => no barrier */ - range_t src; /* set by mtctx, then read by worker & mtctx => no barrier */ - unsigned jobID; /* set by mtctx, then read by worker => no barrier */ - unsigned firstJob; /* set by mtctx, then read by worker => no barrier */ - unsigned lastJob; /* set by mtctx, then read by worker => no barrier */ - ZSTD_CCtx_params params; /* set by mtctx, then read by worker => no barrier */ - const ZSTD_CDict* cdict; /* set by mtctx, then read by worker => no barrier */ - unsigned long long fullFrameSize; /* set by mtctx, then read by worker => no barrier */ - size_t dstFlushed; /* used only by mtctx */ - unsigned frameChecksumNeeded; /* used only by mtctx */ -} ZSTDMT_jobDescription; - -#define JOB_ERROR(e) { \ - ZSTD_PTHREAD_MUTEX_LOCK(&job->job_mutex); \ - job->cSize = e; \ - ZSTD_pthread_mutex_unlock(&job->job_mutex); \ - goto _endJob; \ -} - -/* ZSTDMT_compressionJob() is a POOL_function type */ -static void ZSTDMT_compressionJob(void* jobDescription) -{ - ZSTDMT_jobDescription* const job = (ZSTDMT_jobDescription*)jobDescription; - ZSTD_CCtx_params jobParams = job->params; /* do not modify job->params ! copy it, modify the copy */ - ZSTD_CCtx* const cctx = ZSTDMT_getCCtx(job->cctxPool); - rawSeqStore_t rawSeqStore = ZSTDMT_getSeq(job->seqPool); - buffer_t dstBuff = job->dstBuff; - size_t lastCBlockSize = 0; - - /* resources */ - if (cctx==NULL) JOB_ERROR(ERROR(memory_allocation)); - if (dstBuff.start == NULL) { /* streaming job : doesn't provide a dstBuffer */ - dstBuff = ZSTDMT_getBuffer(job->bufPool); - if (dstBuff.start==NULL) JOB_ERROR(ERROR(memory_allocation)); - job->dstBuff = dstBuff; /* this value can be read in ZSTDMT_flush, when it copies the whole job */ - } - if (jobParams.ldmParams.enableLdm && rawSeqStore.seq == NULL) - JOB_ERROR(ERROR(memory_allocation)); - - /* Don't compute the checksum for chunks, since we compute it externally, - * but write it in the header. - */ - if (job->jobID != 0) jobParams.fParams.checksumFlag = 0; - /* Don't run LDM for the chunks, since we handle it externally */ - jobParams.ldmParams.enableLdm = 0; - - - /* init */ - if (job->cdict) { - size_t const initError = ZSTD_compressBegin_advanced_internal(cctx, NULL, 0, ZSTD_dct_auto, ZSTD_dtlm_fast, job->cdict, &jobParams, job->fullFrameSize); - assert(job->firstJob); /* only allowed for first job */ - if (ZSTD_isError(initError)) JOB_ERROR(initError); - } else { /* srcStart points at reloaded section */ - U64 const pledgedSrcSize = job->firstJob ? job->fullFrameSize : job->src.size; - { size_t const forceWindowError = ZSTD_CCtxParams_setParameter(&jobParams, ZSTD_c_forceMaxWindow, !job->firstJob); - if (ZSTD_isError(forceWindowError)) JOB_ERROR(forceWindowError); - } - { size_t const initError = ZSTD_compressBegin_advanced_internal(cctx, - job->prefix.start, job->prefix.size, ZSTD_dct_rawContent, /* load dictionary in "content-only" mode (no header analysis) */ - ZSTD_dtlm_fast, - NULL, /*cdict*/ - &jobParams, pledgedSrcSize); - if (ZSTD_isError(initError)) JOB_ERROR(initError); - } } - - /* Perform serial step as early as possible, but after CCtx initialization */ - ZSTDMT_serialState_update(job->serial, cctx, rawSeqStore, job->src, job->jobID); - - if (!job->firstJob) { /* flush and overwrite frame header when it's not first job */ - size_t const hSize = ZSTD_compressContinue(cctx, dstBuff.start, dstBuff.capacity, job->src.start, 0); - if (ZSTD_isError(hSize)) JOB_ERROR(hSize); - DEBUGLOG(5, "ZSTDMT_compressionJob: flush and overwrite %u bytes of frame header (not first job)", (U32)hSize); - ZSTD_invalidateRepCodes(cctx); - } - - /* compress */ - { size_t const chunkSize = 4*ZSTD_BLOCKSIZE_MAX; - int const nbChunks = (int)((job->src.size + (chunkSize-1)) / chunkSize); - const BYTE* ip = (const BYTE*) job->src.start; - BYTE* const ostart = (BYTE*)dstBuff.start; - BYTE* op = ostart; - BYTE* oend = op + dstBuff.capacity; - int chunkNb; - if (sizeof(size_t) > sizeof(int)) assert(job->src.size < ((size_t)INT_MAX) * chunkSize); /* check overflow */ - DEBUGLOG(5, "ZSTDMT_compressionJob: compress %u bytes in %i blocks", (U32)job->src.size, nbChunks); - assert(job->cSize == 0); - for (chunkNb = 1; chunkNb < nbChunks; chunkNb++) { - size_t const cSize = ZSTD_compressContinue(cctx, op, oend-op, ip, chunkSize); - if (ZSTD_isError(cSize)) JOB_ERROR(cSize); - ip += chunkSize; - op += cSize; assert(op < oend); - /* stats */ - ZSTD_PTHREAD_MUTEX_LOCK(&job->job_mutex); - job->cSize += cSize; - job->consumed = chunkSize * chunkNb; - DEBUGLOG(5, "ZSTDMT_compressionJob: compress new block : cSize==%u bytes (total: %u)", - (U32)cSize, (U32)job->cSize); - ZSTD_pthread_cond_signal(&job->job_cond); /* warns some more data is ready to be flushed */ - ZSTD_pthread_mutex_unlock(&job->job_mutex); - } - /* last block */ - assert(chunkSize > 0); - assert((chunkSize & (chunkSize - 1)) == 0); /* chunkSize must be power of 2 for mask==(chunkSize-1) to work */ - if ((nbChunks > 0) | job->lastJob /*must output a "last block" flag*/ ) { - size_t const lastBlockSize1 = job->src.size & (chunkSize-1); - size_t const lastBlockSize = ((lastBlockSize1==0) & (job->src.size>=chunkSize)) ? chunkSize : lastBlockSize1; - size_t const cSize = (job->lastJob) ? - ZSTD_compressEnd (cctx, op, oend-op, ip, lastBlockSize) : - ZSTD_compressContinue(cctx, op, oend-op, ip, lastBlockSize); - if (ZSTD_isError(cSize)) JOB_ERROR(cSize); - lastCBlockSize = cSize; - } } - -_endJob: - ZSTDMT_serialState_ensureFinished(job->serial, job->jobID, job->cSize); - if (job->prefix.size > 0) - DEBUGLOG(5, "Finished with prefix: %zx", (size_t)job->prefix.start); - DEBUGLOG(5, "Finished with source: %zx", (size_t)job->src.start); - /* release resources */ - ZSTDMT_releaseSeq(job->seqPool, rawSeqStore); - ZSTDMT_releaseCCtx(job->cctxPool, cctx); - /* report */ - ZSTD_PTHREAD_MUTEX_LOCK(&job->job_mutex); - if (ZSTD_isError(job->cSize)) assert(lastCBlockSize == 0); - job->cSize += lastCBlockSize; - job->consumed = job->src.size; /* when job->consumed == job->src.size , compression job is presumed completed */ - ZSTD_pthread_cond_signal(&job->job_cond); - ZSTD_pthread_mutex_unlock(&job->job_mutex); -} - - -/* ------------------------------------------ */ -/* ===== Multi-threaded compression ===== */ -/* ------------------------------------------ */ - -typedef struct { - range_t prefix; /* read-only non-owned prefix buffer */ - buffer_t buffer; - size_t filled; -} inBuff_t; - -typedef struct { - BYTE* buffer; /* The round input buffer. All jobs get references - * to pieces of the buffer. ZSTDMT_tryGetInputRange() - * handles handing out job input buffers, and makes - * sure it doesn't overlap with any pieces still in use. - */ - size_t capacity; /* The capacity of buffer. */ - size_t pos; /* The position of the current inBuff in the round - * buffer. Updated past the end if the inBuff once - * the inBuff is sent to the worker thread. - * pos <= capacity. - */ -} roundBuff_t; - -static const roundBuff_t kNullRoundBuff = {NULL, 0, 0}; - -#define RSYNC_LENGTH 32 - -typedef struct { - U64 hash; - U64 hitMask; - U64 primePower; -} rsyncState_t; - -struct ZSTDMT_CCtx_s { - POOL_ctx* factory; - ZSTDMT_jobDescription* jobs; - ZSTDMT_bufferPool* bufPool; - ZSTDMT_CCtxPool* cctxPool; - ZSTDMT_seqPool* seqPool; - ZSTD_CCtx_params params; - size_t targetSectionSize; - size_t targetPrefixSize; - int jobReady; /* 1 => one job is already prepared, but pool has shortage of workers. Don't create a new job. */ - inBuff_t inBuff; - roundBuff_t roundBuff; - serialState_t serial; - rsyncState_t rsync; - unsigned singleBlockingThread; - unsigned jobIDMask; - unsigned doneJobID; - unsigned nextJobID; - unsigned frameEnded; - unsigned allJobsCompleted; - unsigned long long frameContentSize; - unsigned long long consumed; - unsigned long long produced; - ZSTD_customMem cMem; - ZSTD_CDict* cdictLocal; - const ZSTD_CDict* cdict; -}; - -static void ZSTDMT_freeJobsTable(ZSTDMT_jobDescription* jobTable, U32 nbJobs, ZSTD_customMem cMem) -{ - U32 jobNb; - if (jobTable == NULL) return; - for (jobNb=0; jobNb mtctx->jobIDMask+1) { /* need more job capacity */ - ZSTDMT_freeJobsTable(mtctx->jobs, mtctx->jobIDMask+1, mtctx->cMem); - mtctx->jobIDMask = 0; - mtctx->jobs = ZSTDMT_createJobsTable(&nbJobs, mtctx->cMem); - if (mtctx->jobs==NULL) return ERROR(memory_allocation); - assert((nbJobs != 0) && ((nbJobs & (nbJobs - 1)) == 0)); /* ensure nbJobs is a power of 2 */ - mtctx->jobIDMask = nbJobs - 1; - } - return 0; -} - - -/* ZSTDMT_CCtxParam_setNbWorkers(): - * Internal use only */ -size_t ZSTDMT_CCtxParam_setNbWorkers(ZSTD_CCtx_params* params, unsigned nbWorkers) -{ - return ZSTD_CCtxParams_setParameter(params, ZSTD_c_nbWorkers, (int)nbWorkers); -} - -MEM_STATIC ZSTDMT_CCtx* ZSTDMT_createCCtx_advanced_internal(unsigned nbWorkers, ZSTD_customMem cMem) -{ - ZSTDMT_CCtx* mtctx; - U32 nbJobs = nbWorkers + 2; - int initError; - DEBUGLOG(3, "ZSTDMT_createCCtx_advanced (nbWorkers = %u)", nbWorkers); - - if (nbWorkers < 1) return NULL; - nbWorkers = MIN(nbWorkers , ZSTDMT_NBWORKERS_MAX); - if ((cMem.customAlloc!=NULL) ^ (cMem.customFree!=NULL)) - /* invalid custom allocator */ - return NULL; - - mtctx = (ZSTDMT_CCtx*) ZSTD_calloc(sizeof(ZSTDMT_CCtx), cMem); - if (!mtctx) return NULL; - ZSTDMT_CCtxParam_setNbWorkers(&mtctx->params, nbWorkers); - mtctx->cMem = cMem; - mtctx->allJobsCompleted = 1; - mtctx->factory = POOL_create_advanced(nbWorkers, 0, cMem); - mtctx->jobs = ZSTDMT_createJobsTable(&nbJobs, cMem); - assert(nbJobs > 0); assert((nbJobs & (nbJobs - 1)) == 0); /* ensure nbJobs is a power of 2 */ - mtctx->jobIDMask = nbJobs - 1; - mtctx->bufPool = ZSTDMT_createBufferPool(nbWorkers, cMem); - mtctx->cctxPool = ZSTDMT_createCCtxPool(nbWorkers, cMem); - mtctx->seqPool = ZSTDMT_createSeqPool(nbWorkers, cMem); - initError = ZSTDMT_serialState_init(&mtctx->serial); - mtctx->roundBuff = kNullRoundBuff; - if (!mtctx->factory | !mtctx->jobs | !mtctx->bufPool | !mtctx->cctxPool | !mtctx->seqPool | initError) { - ZSTDMT_freeCCtx(mtctx); - return NULL; - } - DEBUGLOG(3, "mt_cctx created, for %u threads", nbWorkers); - return mtctx; -} - -ZSTDMT_CCtx* ZSTDMT_createCCtx_advanced(unsigned nbWorkers, ZSTD_customMem cMem) -{ -#ifdef ZSTD_MULTITHREAD - return ZSTDMT_createCCtx_advanced_internal(nbWorkers, cMem); -#else - (void)nbWorkers; - (void)cMem; - return NULL; -#endif -} - -ZSTDMT_CCtx* ZSTDMT_createCCtx(unsigned nbWorkers) -{ - return ZSTDMT_createCCtx_advanced(nbWorkers, ZSTD_defaultCMem); -} - - -/* ZSTDMT_releaseAllJobResources() : - * note : ensure all workers are killed first ! */ -static void ZSTDMT_releaseAllJobResources(ZSTDMT_CCtx* mtctx) -{ - unsigned jobID; - DEBUGLOG(3, "ZSTDMT_releaseAllJobResources"); - for (jobID=0; jobID <= mtctx->jobIDMask; jobID++) { - /* Copy the mutex/cond out */ - ZSTD_pthread_mutex_t const mutex = mtctx->jobs[jobID].job_mutex; - ZSTD_pthread_cond_t const cond = mtctx->jobs[jobID].job_cond; - - DEBUGLOG(4, "job%02u: release dst address %08X", jobID, (U32)(size_t)mtctx->jobs[jobID].dstBuff.start); - ZSTDMT_releaseBuffer(mtctx->bufPool, mtctx->jobs[jobID].dstBuff); - - /* Clear the job description, but keep the mutex/cond */ - memset(&mtctx->jobs[jobID], 0, sizeof(mtctx->jobs[jobID])); - mtctx->jobs[jobID].job_mutex = mutex; - mtctx->jobs[jobID].job_cond = cond; - } - mtctx->inBuff.buffer = g_nullBuffer; - mtctx->inBuff.filled = 0; - mtctx->allJobsCompleted = 1; -} - -static void ZSTDMT_waitForAllJobsCompleted(ZSTDMT_CCtx* mtctx) -{ - DEBUGLOG(4, "ZSTDMT_waitForAllJobsCompleted"); - while (mtctx->doneJobID < mtctx->nextJobID) { - unsigned const jobID = mtctx->doneJobID & mtctx->jobIDMask; - ZSTD_PTHREAD_MUTEX_LOCK(&mtctx->jobs[jobID].job_mutex); - while (mtctx->jobs[jobID].consumed < mtctx->jobs[jobID].src.size) { - DEBUGLOG(4, "waiting for jobCompleted signal from job %u", mtctx->doneJobID); /* we want to block when waiting for data to flush */ - ZSTD_pthread_cond_wait(&mtctx->jobs[jobID].job_cond, &mtctx->jobs[jobID].job_mutex); - } - ZSTD_pthread_mutex_unlock(&mtctx->jobs[jobID].job_mutex); - mtctx->doneJobID++; - } -} - -size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* mtctx) -{ - if (mtctx==NULL) return 0; /* compatible with free on NULL */ - POOL_free(mtctx->factory); /* stop and free worker threads */ - ZSTDMT_releaseAllJobResources(mtctx); /* release job resources into pools first */ - ZSTDMT_freeJobsTable(mtctx->jobs, mtctx->jobIDMask+1, mtctx->cMem); - ZSTDMT_freeBufferPool(mtctx->bufPool); - ZSTDMT_freeCCtxPool(mtctx->cctxPool); - ZSTDMT_freeSeqPool(mtctx->seqPool); - ZSTDMT_serialState_free(&mtctx->serial); - ZSTD_freeCDict(mtctx->cdictLocal); - if (mtctx->roundBuff.buffer) - ZSTD_free(mtctx->roundBuff.buffer, mtctx->cMem); - ZSTD_free(mtctx, mtctx->cMem); - return 0; -} - -size_t ZSTDMT_sizeof_CCtx(ZSTDMT_CCtx* mtctx) -{ - if (mtctx == NULL) return 0; /* supports sizeof NULL */ - return sizeof(*mtctx) - + POOL_sizeof(mtctx->factory) - + ZSTDMT_sizeof_bufferPool(mtctx->bufPool) - + (mtctx->jobIDMask+1) * sizeof(ZSTDMT_jobDescription) - + ZSTDMT_sizeof_CCtxPool(mtctx->cctxPool) - + ZSTDMT_sizeof_seqPool(mtctx->seqPool) - + ZSTD_sizeof_CDict(mtctx->cdictLocal) - + mtctx->roundBuff.capacity; -} - -/* Internal only */ -size_t -ZSTDMT_CCtxParam_setMTCtxParameter(ZSTD_CCtx_params* params, - ZSTDMT_parameter parameter, - int value) -{ - DEBUGLOG(4, "ZSTDMT_CCtxParam_setMTCtxParameter"); - switch(parameter) - { - case ZSTDMT_p_jobSize : - DEBUGLOG(4, "ZSTDMT_CCtxParam_setMTCtxParameter : set jobSize to %i", value); - return ZSTD_CCtxParams_setParameter(params, ZSTD_c_jobSize, value); - case ZSTDMT_p_overlapLog : - DEBUGLOG(4, "ZSTDMT_p_overlapLog : %i", value); - return ZSTD_CCtxParams_setParameter(params, ZSTD_c_overlapLog, value); - case ZSTDMT_p_rsyncable : - DEBUGLOG(4, "ZSTD_p_rsyncable : %i", value); - return ZSTD_CCtxParams_setParameter(params, ZSTD_c_rsyncable, value); - default : - return ERROR(parameter_unsupported); - } -} - -size_t ZSTDMT_setMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSTDMT_parameter parameter, int value) -{ - DEBUGLOG(4, "ZSTDMT_setMTCtxParameter"); - return ZSTDMT_CCtxParam_setMTCtxParameter(&mtctx->params, parameter, value); -} - -size_t ZSTDMT_getMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSTDMT_parameter parameter, int* value) -{ - switch (parameter) { - case ZSTDMT_p_jobSize: - return ZSTD_CCtxParams_getParameter(&mtctx->params, ZSTD_c_jobSize, value); - case ZSTDMT_p_overlapLog: - return ZSTD_CCtxParams_getParameter(&mtctx->params, ZSTD_c_overlapLog, value); - case ZSTDMT_p_rsyncable: - return ZSTD_CCtxParams_getParameter(&mtctx->params, ZSTD_c_rsyncable, value); - default: - return ERROR(parameter_unsupported); - } -} - -/* Sets parameters relevant to the compression job, - * initializing others to default values. */ -static ZSTD_CCtx_params ZSTDMT_initJobCCtxParams(const ZSTD_CCtx_params* params) -{ - ZSTD_CCtx_params jobParams = *params; - /* Clear parameters related to multithreading */ - jobParams.forceWindow = 0; - jobParams.nbWorkers = 0; - jobParams.jobSize = 0; - jobParams.overlapLog = 0; - jobParams.rsyncable = 0; - memset(&jobParams.ldmParams, 0, sizeof(ldmParams_t)); - memset(&jobParams.customMem, 0, sizeof(ZSTD_customMem)); - return jobParams; -} - - -/* ZSTDMT_resize() : - * @return : error code if fails, 0 on success */ -static size_t ZSTDMT_resize(ZSTDMT_CCtx* mtctx, unsigned nbWorkers) -{ - if (POOL_resize(mtctx->factory, nbWorkers)) return ERROR(memory_allocation); - FORWARD_IF_ERROR( ZSTDMT_expandJobsTable(mtctx, nbWorkers) , ""); - mtctx->bufPool = ZSTDMT_expandBufferPool(mtctx->bufPool, nbWorkers); - if (mtctx->bufPool == NULL) return ERROR(memory_allocation); - mtctx->cctxPool = ZSTDMT_expandCCtxPool(mtctx->cctxPool, nbWorkers); - if (mtctx->cctxPool == NULL) return ERROR(memory_allocation); - mtctx->seqPool = ZSTDMT_expandSeqPool(mtctx->seqPool, nbWorkers); - if (mtctx->seqPool == NULL) return ERROR(memory_allocation); - ZSTDMT_CCtxParam_setNbWorkers(&mtctx->params, nbWorkers); - return 0; -} - - -/*! ZSTDMT_updateCParams_whileCompressing() : - * Updates a selected set of compression parameters, remaining compatible with currently active frame. - * New parameters will be applied to next compression job. */ -void ZSTDMT_updateCParams_whileCompressing(ZSTDMT_CCtx* mtctx, const ZSTD_CCtx_params* cctxParams) -{ - U32 const saved_wlog = mtctx->params.cParams.windowLog; /* Do not modify windowLog while compressing */ - int const compressionLevel = cctxParams->compressionLevel; - DEBUGLOG(5, "ZSTDMT_updateCParams_whileCompressing (level:%i)", - compressionLevel); - mtctx->params.compressionLevel = compressionLevel; - { ZSTD_compressionParameters cParams = ZSTD_getCParamsFromCCtxParams(cctxParams, ZSTD_CONTENTSIZE_UNKNOWN, 0); - cParams.windowLog = saved_wlog; - mtctx->params.cParams = cParams; - } -} - -/* ZSTDMT_getFrameProgression(): - * tells how much data has been consumed (input) and produced (output) for current frame. - * able to count progression inside worker threads. - * Note : mutex will be acquired during statistics collection inside workers. */ -ZSTD_frameProgression ZSTDMT_getFrameProgression(ZSTDMT_CCtx* mtctx) -{ - ZSTD_frameProgression fps; - DEBUGLOG(5, "ZSTDMT_getFrameProgression"); - fps.ingested = mtctx->consumed + mtctx->inBuff.filled; - fps.consumed = mtctx->consumed; - fps.produced = fps.flushed = mtctx->produced; - fps.currentJobID = mtctx->nextJobID; - fps.nbActiveWorkers = 0; - { unsigned jobNb; - unsigned lastJobNb = mtctx->nextJobID + mtctx->jobReady; assert(mtctx->jobReady <= 1); - DEBUGLOG(6, "ZSTDMT_getFrameProgression: jobs: from %u to <%u (jobReady:%u)", - mtctx->doneJobID, lastJobNb, mtctx->jobReady) - for (jobNb = mtctx->doneJobID ; jobNb < lastJobNb ; jobNb++) { - unsigned const wJobID = jobNb & mtctx->jobIDMask; - ZSTDMT_jobDescription* jobPtr = &mtctx->jobs[wJobID]; - ZSTD_pthread_mutex_lock(&jobPtr->job_mutex); - { size_t const cResult = jobPtr->cSize; - size_t const produced = ZSTD_isError(cResult) ? 0 : cResult; - size_t const flushed = ZSTD_isError(cResult) ? 0 : jobPtr->dstFlushed; - assert(flushed <= produced); - fps.ingested += jobPtr->src.size; - fps.consumed += jobPtr->consumed; - fps.produced += produced; - fps.flushed += flushed; - fps.nbActiveWorkers += (jobPtr->consumed < jobPtr->src.size); - } - ZSTD_pthread_mutex_unlock(&mtctx->jobs[wJobID].job_mutex); - } - } - return fps; -} - - -size_t ZSTDMT_toFlushNow(ZSTDMT_CCtx* mtctx) -{ - size_t toFlush; - unsigned const jobID = mtctx->doneJobID; - assert(jobID <= mtctx->nextJobID); - if (jobID == mtctx->nextJobID) return 0; /* no active job => nothing to flush */ - - /* look into oldest non-fully-flushed job */ - { unsigned const wJobID = jobID & mtctx->jobIDMask; - ZSTDMT_jobDescription* const jobPtr = &mtctx->jobs[wJobID]; - ZSTD_pthread_mutex_lock(&jobPtr->job_mutex); - { size_t const cResult = jobPtr->cSize; - size_t const produced = ZSTD_isError(cResult) ? 0 : cResult; - size_t const flushed = ZSTD_isError(cResult) ? 0 : jobPtr->dstFlushed; - assert(flushed <= produced); - assert(jobPtr->consumed <= jobPtr->src.size); - toFlush = produced - flushed; - /* if toFlush==0, nothing is available to flush. - * However, jobID is expected to still be active: - * if jobID was already completed and fully flushed, - * ZSTDMT_flushProduced() should have already moved onto next job. - * Therefore, some input has not yet been consumed. */ - if (toFlush==0) { - assert(jobPtr->consumed < jobPtr->src.size); - } - } - ZSTD_pthread_mutex_unlock(&mtctx->jobs[wJobID].job_mutex); - } - - return toFlush; -} - - -/* ------------------------------------------ */ -/* ===== Multi-threaded compression ===== */ -/* ------------------------------------------ */ - -static unsigned ZSTDMT_computeTargetJobLog(const ZSTD_CCtx_params* params) -{ - unsigned jobLog; - if (params->ldmParams.enableLdm) { - /* In Long Range Mode, the windowLog is typically oversized. - * In which case, it's preferable to determine the jobSize - * based on chainLog instead. */ - jobLog = MAX(21, params->cParams.chainLog + 4); - } else { - jobLog = MAX(20, params->cParams.windowLog + 2); - } - return MIN(jobLog, (unsigned)ZSTDMT_JOBLOG_MAX); -} - -static int ZSTDMT_overlapLog_default(ZSTD_strategy strat) -{ - switch(strat) - { - case ZSTD_btultra2: - return 9; - case ZSTD_btultra: - case ZSTD_btopt: - return 8; - case ZSTD_btlazy2: - case ZSTD_lazy2: - return 7; - case ZSTD_lazy: - case ZSTD_greedy: - case ZSTD_dfast: - case ZSTD_fast: - default:; - } - return 6; -} - -static int ZSTDMT_overlapLog(int ovlog, ZSTD_strategy strat) -{ - assert(0 <= ovlog && ovlog <= 9); - if (ovlog == 0) return ZSTDMT_overlapLog_default(strat); - return ovlog; -} - -static size_t ZSTDMT_computeOverlapSize(const ZSTD_CCtx_params* params) -{ - int const overlapRLog = 9 - ZSTDMT_overlapLog(params->overlapLog, params->cParams.strategy); - int ovLog = (overlapRLog >= 8) ? 0 : (params->cParams.windowLog - overlapRLog); - assert(0 <= overlapRLog && overlapRLog <= 8); - if (params->ldmParams.enableLdm) { - /* In Long Range Mode, the windowLog is typically oversized. - * In which case, it's preferable to determine the jobSize - * based on chainLog instead. - * Then, ovLog becomes a fraction of the jobSize, rather than windowSize */ - ovLog = MIN(params->cParams.windowLog, ZSTDMT_computeTargetJobLog(params) - 2) - - overlapRLog; - } - assert(0 <= ovLog && ovLog <= ZSTD_WINDOWLOG_MAX); - DEBUGLOG(4, "overlapLog : %i", params->overlapLog); - DEBUGLOG(4, "overlap size : %i", 1 << ovLog); - return (ovLog==0) ? 0 : (size_t)1 << ovLog; -} - -static unsigned -ZSTDMT_computeNbJobs(const ZSTD_CCtx_params* params, size_t srcSize, unsigned nbWorkers) -{ - assert(nbWorkers>0); - { size_t const jobSizeTarget = (size_t)1 << ZSTDMT_computeTargetJobLog(params); - size_t const jobMaxSize = jobSizeTarget << 2; - size_t const passSizeMax = jobMaxSize * nbWorkers; - unsigned const multiplier = (unsigned)(srcSize / passSizeMax) + 1; - unsigned const nbJobsLarge = multiplier * nbWorkers; - unsigned const nbJobsMax = (unsigned)(srcSize / jobSizeTarget) + 1; - unsigned const nbJobsSmall = MIN(nbJobsMax, nbWorkers); - return (multiplier>1) ? nbJobsLarge : nbJobsSmall; -} } - -/* ZSTDMT_compress_advanced_internal() : - * This is a blocking function : it will only give back control to caller after finishing its compression job. - */ -static size_t -ZSTDMT_compress_advanced_internal( - ZSTDMT_CCtx* mtctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const ZSTD_CDict* cdict, - ZSTD_CCtx_params params) -{ - ZSTD_CCtx_params const jobParams = ZSTDMT_initJobCCtxParams(¶ms); - size_t const overlapSize = ZSTDMT_computeOverlapSize(¶ms); - unsigned const nbJobs = ZSTDMT_computeNbJobs(¶ms, srcSize, params.nbWorkers); - size_t const proposedJobSize = (srcSize + (nbJobs-1)) / nbJobs; - size_t const avgJobSize = (((proposedJobSize-1) & 0x1FFFF) < 0x7FFF) ? proposedJobSize + 0xFFFF : proposedJobSize; /* avoid too small last block */ - const char* const srcStart = (const char*)src; - size_t remainingSrcSize = srcSize; - unsigned const compressWithinDst = (dstCapacity >= ZSTD_compressBound(srcSize)) ? nbJobs : (unsigned)(dstCapacity / ZSTD_compressBound(avgJobSize)); /* presumes avgJobSize >= 256 KB, which should be the case */ - size_t frameStartPos = 0, dstBufferPos = 0; - assert(jobParams.nbWorkers == 0); - assert(mtctx->cctxPool->totalCCtx == params.nbWorkers); - - params.jobSize = (U32)avgJobSize; - DEBUGLOG(4, "ZSTDMT_compress_advanced_internal: nbJobs=%2u (rawSize=%u bytes; fixedSize=%u) ", - nbJobs, (U32)proposedJobSize, (U32)avgJobSize); - - if ((nbJobs==1) | (params.nbWorkers<=1)) { /* fallback to single-thread mode : this is a blocking invocation anyway */ - ZSTD_CCtx* const cctx = mtctx->cctxPool->cctx[0]; - DEBUGLOG(4, "ZSTDMT_compress_advanced_internal: fallback to single-thread mode"); - if (cdict) return ZSTD_compress_usingCDict_advanced(cctx, dst, dstCapacity, src, srcSize, cdict, jobParams.fParams); - return ZSTD_compress_advanced_internal(cctx, dst, dstCapacity, src, srcSize, NULL, 0, &jobParams); - } - - assert(avgJobSize >= 256 KB); /* condition for ZSTD_compressBound(A) + ZSTD_compressBound(B) <= ZSTD_compressBound(A+B), required to compress directly into Dst (no additional buffer) */ - ZSTDMT_setBufferSize(mtctx->bufPool, ZSTD_compressBound(avgJobSize) ); - /* LDM doesn't even try to load the dictionary in single-ingestion mode */ - if (ZSTDMT_serialState_reset(&mtctx->serial, mtctx->seqPool, params, avgJobSize, NULL, 0, ZSTD_dct_auto)) - return ERROR(memory_allocation); - - FORWARD_IF_ERROR( ZSTDMT_expandJobsTable(mtctx, nbJobs) , ""); /* only expands if necessary */ - - { unsigned u; - for (u=0; ujobs[u].prefix.start = srcStart + frameStartPos - dictSize; - mtctx->jobs[u].prefix.size = dictSize; - mtctx->jobs[u].src.start = srcStart + frameStartPos; - mtctx->jobs[u].src.size = jobSize; assert(jobSize > 0); /* avoid job.src.size == 0 */ - mtctx->jobs[u].consumed = 0; - mtctx->jobs[u].cSize = 0; - mtctx->jobs[u].cdict = (u==0) ? cdict : NULL; - mtctx->jobs[u].fullFrameSize = srcSize; - mtctx->jobs[u].params = jobParams; - /* do not calculate checksum within sections, but write it in header for first section */ - mtctx->jobs[u].dstBuff = dstBuffer; - mtctx->jobs[u].cctxPool = mtctx->cctxPool; - mtctx->jobs[u].bufPool = mtctx->bufPool; - mtctx->jobs[u].seqPool = mtctx->seqPool; - mtctx->jobs[u].serial = &mtctx->serial; - mtctx->jobs[u].jobID = u; - mtctx->jobs[u].firstJob = (u==0); - mtctx->jobs[u].lastJob = (u==nbJobs-1); - - DEBUGLOG(5, "ZSTDMT_compress_advanced_internal: posting job %u (%u bytes)", u, (U32)jobSize); - DEBUG_PRINTHEX(6, mtctx->jobs[u].prefix.start, 12); - POOL_add(mtctx->factory, ZSTDMT_compressionJob, &mtctx->jobs[u]); - - frameStartPos += jobSize; - dstBufferPos += dstBufferCapacity; - remainingSrcSize -= jobSize; - } } - - /* collect result */ - { size_t error = 0, dstPos = 0; - unsigned jobID; - for (jobID=0; jobIDjobs[jobID].job_mutex); - while (mtctx->jobs[jobID].consumed < mtctx->jobs[jobID].src.size) { - DEBUGLOG(5, "waiting for jobCompleted signal from job %u", jobID); - ZSTD_pthread_cond_wait(&mtctx->jobs[jobID].job_cond, &mtctx->jobs[jobID].job_mutex); - } - ZSTD_pthread_mutex_unlock(&mtctx->jobs[jobID].job_mutex); - DEBUGLOG(5, "ready to write job %u ", jobID); - - { size_t const cSize = mtctx->jobs[jobID].cSize; - if (ZSTD_isError(cSize)) error = cSize; - if ((!error) && (dstPos + cSize > dstCapacity)) error = ERROR(dstSize_tooSmall); - if (jobID) { /* note : job 0 is written directly at dst, which is correct position */ - if (!error) - memmove((char*)dst + dstPos, mtctx->jobs[jobID].dstBuff.start, cSize); /* may overlap when job compressed within dst */ - if (jobID >= compressWithinDst) { /* job compressed into its own buffer, which must be released */ - DEBUGLOG(5, "releasing buffer %u>=%u", jobID, compressWithinDst); - ZSTDMT_releaseBuffer(mtctx->bufPool, mtctx->jobs[jobID].dstBuff); - } } - mtctx->jobs[jobID].dstBuff = g_nullBuffer; - mtctx->jobs[jobID].cSize = 0; - dstPos += cSize ; - } - } /* for (jobID=0; jobIDserial.xxhState); - if (dstPos + 4 > dstCapacity) { - error = ERROR(dstSize_tooSmall); - } else { - DEBUGLOG(4, "writing checksum : %08X \n", checksum); - MEM_writeLE32((char*)dst + dstPos, checksum); - dstPos += 4; - } } - - if (!error) DEBUGLOG(4, "compressed size : %u ", (U32)dstPos); - return error ? error : dstPos; - } -} - -size_t ZSTDMT_compress_advanced(ZSTDMT_CCtx* mtctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const ZSTD_CDict* cdict, - ZSTD_parameters params, - int overlapLog) -{ - ZSTD_CCtx_params cctxParams = mtctx->params; - cctxParams.cParams = params.cParams; - cctxParams.fParams = params.fParams; - assert(ZSTD_OVERLAPLOG_MIN <= overlapLog && overlapLog <= ZSTD_OVERLAPLOG_MAX); - cctxParams.overlapLog = overlapLog; - return ZSTDMT_compress_advanced_internal(mtctx, - dst, dstCapacity, - src, srcSize, - cdict, cctxParams); -} - - -size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* mtctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - int compressionLevel) -{ - ZSTD_parameters params = ZSTD_getParams(compressionLevel, srcSize, 0); - int const overlapLog = ZSTDMT_overlapLog_default(params.cParams.strategy); - params.fParams.contentSizeFlag = 1; - return ZSTDMT_compress_advanced(mtctx, dst, dstCapacity, src, srcSize, NULL, params, overlapLog); -} - - -/* ====================================== */ -/* ======= Streaming API ======= */ -/* ====================================== */ - -size_t ZSTDMT_initCStream_internal( - ZSTDMT_CCtx* mtctx, - const void* dict, size_t dictSize, ZSTD_dictContentType_e dictContentType, - const ZSTD_CDict* cdict, ZSTD_CCtx_params params, - unsigned long long pledgedSrcSize) -{ - DEBUGLOG(4, "ZSTDMT_initCStream_internal (pledgedSrcSize=%u, nbWorkers=%u, cctxPool=%u)", - (U32)pledgedSrcSize, params.nbWorkers, mtctx->cctxPool->totalCCtx); - - /* params supposed partially fully validated at this point */ - assert(!ZSTD_isError(ZSTD_checkCParams(params.cParams))); - assert(!((dict) && (cdict))); /* either dict or cdict, not both */ - - /* init */ - if (params.nbWorkers != mtctx->params.nbWorkers) - FORWARD_IF_ERROR( ZSTDMT_resize(mtctx, params.nbWorkers) , ""); - - if (params.jobSize != 0 && params.jobSize < ZSTDMT_JOBSIZE_MIN) params.jobSize = ZSTDMT_JOBSIZE_MIN; - if (params.jobSize > (size_t)ZSTDMT_JOBSIZE_MAX) params.jobSize = (size_t)ZSTDMT_JOBSIZE_MAX; - - mtctx->singleBlockingThread = (pledgedSrcSize <= ZSTDMT_JOBSIZE_MIN); /* do not trigger multi-threading when srcSize is too small */ - if (mtctx->singleBlockingThread) { - ZSTD_CCtx_params const singleThreadParams = ZSTDMT_initJobCCtxParams(¶ms); - DEBUGLOG(5, "ZSTDMT_initCStream_internal: switch to single blocking thread mode"); - assert(singleThreadParams.nbWorkers == 0); - return ZSTD_initCStream_internal(mtctx->cctxPool->cctx[0], - dict, dictSize, cdict, - &singleThreadParams, pledgedSrcSize); - } - - DEBUGLOG(4, "ZSTDMT_initCStream_internal: %u workers", params.nbWorkers); - - if (mtctx->allJobsCompleted == 0) { /* previous compression not correctly finished */ - ZSTDMT_waitForAllJobsCompleted(mtctx); - ZSTDMT_releaseAllJobResources(mtctx); - mtctx->allJobsCompleted = 1; - } - - mtctx->params = params; - mtctx->frameContentSize = pledgedSrcSize; - if (dict) { - ZSTD_freeCDict(mtctx->cdictLocal); - mtctx->cdictLocal = ZSTD_createCDict_advanced(dict, dictSize, - ZSTD_dlm_byCopy, dictContentType, /* note : a loadPrefix becomes an internal CDict */ - params.cParams, mtctx->cMem); - mtctx->cdict = mtctx->cdictLocal; - if (mtctx->cdictLocal == NULL) return ERROR(memory_allocation); - } else { - ZSTD_freeCDict(mtctx->cdictLocal); - mtctx->cdictLocal = NULL; - mtctx->cdict = cdict; - } - - mtctx->targetPrefixSize = ZSTDMT_computeOverlapSize(¶ms); - DEBUGLOG(4, "overlapLog=%i => %u KB", params.overlapLog, (U32)(mtctx->targetPrefixSize>>10)); - mtctx->targetSectionSize = params.jobSize; - if (mtctx->targetSectionSize == 0) { - mtctx->targetSectionSize = 1ULL << ZSTDMT_computeTargetJobLog(¶ms); - } - assert(mtctx->targetSectionSize <= (size_t)ZSTDMT_JOBSIZE_MAX); - - if (params.rsyncable) { - /* Aim for the targetsectionSize as the average job size. */ - U32 const jobSizeMB = (U32)(mtctx->targetSectionSize >> 20); - U32 const rsyncBits = ZSTD_highbit32(jobSizeMB) + 20; - assert(jobSizeMB >= 1); - DEBUGLOG(4, "rsyncLog = %u", rsyncBits); - mtctx->rsync.hash = 0; - mtctx->rsync.hitMask = (1ULL << rsyncBits) - 1; - mtctx->rsync.primePower = ZSTD_rollingHash_primePower(RSYNC_LENGTH); - } - if (mtctx->targetSectionSize < mtctx->targetPrefixSize) mtctx->targetSectionSize = mtctx->targetPrefixSize; /* job size must be >= overlap size */ - DEBUGLOG(4, "Job Size : %u KB (note : set to %u)", (U32)(mtctx->targetSectionSize>>10), (U32)params.jobSize); - DEBUGLOG(4, "inBuff Size : %u KB", (U32)(mtctx->targetSectionSize>>10)); - ZSTDMT_setBufferSize(mtctx->bufPool, ZSTD_compressBound(mtctx->targetSectionSize)); - { - /* If ldm is enabled we need windowSize space. */ - size_t const windowSize = mtctx->params.ldmParams.enableLdm ? (1U << mtctx->params.cParams.windowLog) : 0; - /* Two buffers of slack, plus extra space for the overlap - * This is the minimum slack that LDM works with. One extra because - * flush might waste up to targetSectionSize-1 bytes. Another extra - * for the overlap (if > 0), then one to fill which doesn't overlap - * with the LDM window. - */ - size_t const nbSlackBuffers = 2 + (mtctx->targetPrefixSize > 0); - size_t const slackSize = mtctx->targetSectionSize * nbSlackBuffers; - /* Compute the total size, and always have enough slack */ - size_t const nbWorkers = MAX(mtctx->params.nbWorkers, 1); - size_t const sectionsSize = mtctx->targetSectionSize * nbWorkers; - size_t const capacity = MAX(windowSize, sectionsSize) + slackSize; - if (mtctx->roundBuff.capacity < capacity) { - if (mtctx->roundBuff.buffer) - ZSTD_free(mtctx->roundBuff.buffer, mtctx->cMem); - mtctx->roundBuff.buffer = (BYTE*)ZSTD_malloc(capacity, mtctx->cMem); - if (mtctx->roundBuff.buffer == NULL) { - mtctx->roundBuff.capacity = 0; - return ERROR(memory_allocation); - } - mtctx->roundBuff.capacity = capacity; - } - } - DEBUGLOG(4, "roundBuff capacity : %u KB", (U32)(mtctx->roundBuff.capacity>>10)); - mtctx->roundBuff.pos = 0; - mtctx->inBuff.buffer = g_nullBuffer; - mtctx->inBuff.filled = 0; - mtctx->inBuff.prefix = kNullRange; - mtctx->doneJobID = 0; - mtctx->nextJobID = 0; - mtctx->frameEnded = 0; - mtctx->allJobsCompleted = 0; - mtctx->consumed = 0; - mtctx->produced = 0; - if (ZSTDMT_serialState_reset(&mtctx->serial, mtctx->seqPool, params, mtctx->targetSectionSize, - dict, dictSize, dictContentType)) - return ERROR(memory_allocation); - return 0; -} - -size_t ZSTDMT_initCStream_advanced(ZSTDMT_CCtx* mtctx, - const void* dict, size_t dictSize, - ZSTD_parameters params, - unsigned long long pledgedSrcSize) -{ - ZSTD_CCtx_params cctxParams = mtctx->params; /* retrieve sticky params */ - DEBUGLOG(4, "ZSTDMT_initCStream_advanced (pledgedSrcSize=%u)", (U32)pledgedSrcSize); - cctxParams.cParams = params.cParams; - cctxParams.fParams = params.fParams; - return ZSTDMT_initCStream_internal(mtctx, dict, dictSize, ZSTD_dct_auto, NULL, - cctxParams, pledgedSrcSize); -} - -size_t ZSTDMT_initCStream_usingCDict(ZSTDMT_CCtx* mtctx, - const ZSTD_CDict* cdict, - ZSTD_frameParameters fParams, - unsigned long long pledgedSrcSize) -{ - ZSTD_CCtx_params cctxParams = mtctx->params; - if (cdict==NULL) return ERROR(dictionary_wrong); /* method incompatible with NULL cdict */ - cctxParams.cParams = ZSTD_getCParamsFromCDict(cdict); - cctxParams.fParams = fParams; - return ZSTDMT_initCStream_internal(mtctx, NULL, 0 /*dictSize*/, ZSTD_dct_auto, cdict, - cctxParams, pledgedSrcSize); -} - - -/* ZSTDMT_resetCStream() : - * pledgedSrcSize can be zero == unknown (for the time being) - * prefer using ZSTD_CONTENTSIZE_UNKNOWN, - * as `0` might mean "empty" in the future */ -size_t ZSTDMT_resetCStream(ZSTDMT_CCtx* mtctx, unsigned long long pledgedSrcSize) -{ - if (!pledgedSrcSize) pledgedSrcSize = ZSTD_CONTENTSIZE_UNKNOWN; - return ZSTDMT_initCStream_internal(mtctx, NULL, 0, ZSTD_dct_auto, 0, mtctx->params, - pledgedSrcSize); -} - -size_t ZSTDMT_initCStream(ZSTDMT_CCtx* mtctx, int compressionLevel) { - ZSTD_parameters const params = ZSTD_getParams(compressionLevel, ZSTD_CONTENTSIZE_UNKNOWN, 0); - ZSTD_CCtx_params cctxParams = mtctx->params; /* retrieve sticky params */ - DEBUGLOG(4, "ZSTDMT_initCStream (cLevel=%i)", compressionLevel); - cctxParams.cParams = params.cParams; - cctxParams.fParams = params.fParams; - return ZSTDMT_initCStream_internal(mtctx, NULL, 0, ZSTD_dct_auto, NULL, cctxParams, ZSTD_CONTENTSIZE_UNKNOWN); -} - - -/* ZSTDMT_writeLastEmptyBlock() - * Write a single empty block with an end-of-frame to finish a frame. - * Job must be created from streaming variant. - * This function is always successful if expected conditions are fulfilled. - */ -static void ZSTDMT_writeLastEmptyBlock(ZSTDMT_jobDescription* job) -{ - assert(job->lastJob == 1); - assert(job->src.size == 0); /* last job is empty -> will be simplified into a last empty block */ - assert(job->firstJob == 0); /* cannot be first job, as it also needs to create frame header */ - assert(job->dstBuff.start == NULL); /* invoked from streaming variant only (otherwise, dstBuff might be user's output) */ - job->dstBuff = ZSTDMT_getBuffer(job->bufPool); - if (job->dstBuff.start == NULL) { - job->cSize = ERROR(memory_allocation); - return; - } - assert(job->dstBuff.capacity >= ZSTD_blockHeaderSize); /* no buffer should ever be that small */ - job->src = kNullRange; - job->cSize = ZSTD_writeLastEmptyBlock(job->dstBuff.start, job->dstBuff.capacity); - assert(!ZSTD_isError(job->cSize)); - assert(job->consumed == 0); -} - -static size_t ZSTDMT_createCompressionJob(ZSTDMT_CCtx* mtctx, size_t srcSize, ZSTD_EndDirective endOp) -{ - unsigned const jobID = mtctx->nextJobID & mtctx->jobIDMask; - int const endFrame = (endOp == ZSTD_e_end); - - if (mtctx->nextJobID > mtctx->doneJobID + mtctx->jobIDMask) { - DEBUGLOG(5, "ZSTDMT_createCompressionJob: will not create new job : table is full"); - assert((mtctx->nextJobID & mtctx->jobIDMask) == (mtctx->doneJobID & mtctx->jobIDMask)); - return 0; - } - - if (!mtctx->jobReady) { - BYTE const* src = (BYTE const*)mtctx->inBuff.buffer.start; - DEBUGLOG(5, "ZSTDMT_createCompressionJob: preparing job %u to compress %u bytes with %u preload ", - mtctx->nextJobID, (U32)srcSize, (U32)mtctx->inBuff.prefix.size); - mtctx->jobs[jobID].src.start = src; - mtctx->jobs[jobID].src.size = srcSize; - assert(mtctx->inBuff.filled >= srcSize); - mtctx->jobs[jobID].prefix = mtctx->inBuff.prefix; - mtctx->jobs[jobID].consumed = 0; - mtctx->jobs[jobID].cSize = 0; - mtctx->jobs[jobID].params = mtctx->params; - mtctx->jobs[jobID].cdict = mtctx->nextJobID==0 ? mtctx->cdict : NULL; - mtctx->jobs[jobID].fullFrameSize = mtctx->frameContentSize; - mtctx->jobs[jobID].dstBuff = g_nullBuffer; - mtctx->jobs[jobID].cctxPool = mtctx->cctxPool; - mtctx->jobs[jobID].bufPool = mtctx->bufPool; - mtctx->jobs[jobID].seqPool = mtctx->seqPool; - mtctx->jobs[jobID].serial = &mtctx->serial; - mtctx->jobs[jobID].jobID = mtctx->nextJobID; - mtctx->jobs[jobID].firstJob = (mtctx->nextJobID==0); - mtctx->jobs[jobID].lastJob = endFrame; - mtctx->jobs[jobID].frameChecksumNeeded = mtctx->params.fParams.checksumFlag && endFrame && (mtctx->nextJobID>0); - mtctx->jobs[jobID].dstFlushed = 0; - - /* Update the round buffer pos and clear the input buffer to be reset */ - mtctx->roundBuff.pos += srcSize; - mtctx->inBuff.buffer = g_nullBuffer; - mtctx->inBuff.filled = 0; - /* Set the prefix */ - if (!endFrame) { - size_t const newPrefixSize = MIN(srcSize, mtctx->targetPrefixSize); - mtctx->inBuff.prefix.start = src + srcSize - newPrefixSize; - mtctx->inBuff.prefix.size = newPrefixSize; - } else { /* endFrame==1 => no need for another input buffer */ - mtctx->inBuff.prefix = kNullRange; - mtctx->frameEnded = endFrame; - if (mtctx->nextJobID == 0) { - /* single job exception : checksum is already calculated directly within worker thread */ - mtctx->params.fParams.checksumFlag = 0; - } } - - if ( (srcSize == 0) - && (mtctx->nextJobID>0)/*single job must also write frame header*/ ) { - DEBUGLOG(5, "ZSTDMT_createCompressionJob: creating a last empty block to end frame"); - assert(endOp == ZSTD_e_end); /* only possible case : need to end the frame with an empty last block */ - ZSTDMT_writeLastEmptyBlock(mtctx->jobs + jobID); - mtctx->nextJobID++; - return 0; - } - } - - DEBUGLOG(5, "ZSTDMT_createCompressionJob: posting job %u : %u bytes (end:%u, jobNb == %u (mod:%u))", - mtctx->nextJobID, - (U32)mtctx->jobs[jobID].src.size, - mtctx->jobs[jobID].lastJob, - mtctx->nextJobID, - jobID); - if (POOL_tryAdd(mtctx->factory, ZSTDMT_compressionJob, &mtctx->jobs[jobID])) { - mtctx->nextJobID++; - mtctx->jobReady = 0; - } else { - DEBUGLOG(5, "ZSTDMT_createCompressionJob: no worker available for job %u", mtctx->nextJobID); - mtctx->jobReady = 1; - } - return 0; -} - - -/*! ZSTDMT_flushProduced() : - * flush whatever data has been produced but not yet flushed in current job. - * move to next job if current one is fully flushed. - * `output` : `pos` will be updated with amount of data flushed . - * `blockToFlush` : if >0, the function will block and wait if there is no data available to flush . - * @return : amount of data remaining within internal buffer, 0 if no more, 1 if unknown but > 0, or an error code */ -static size_t ZSTDMT_flushProduced(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output, unsigned blockToFlush, ZSTD_EndDirective end) -{ - unsigned const wJobID = mtctx->doneJobID & mtctx->jobIDMask; - DEBUGLOG(5, "ZSTDMT_flushProduced (blocking:%u , job %u <= %u)", - blockToFlush, mtctx->doneJobID, mtctx->nextJobID); - assert(output->size >= output->pos); - - ZSTD_PTHREAD_MUTEX_LOCK(&mtctx->jobs[wJobID].job_mutex); - if ( blockToFlush - && (mtctx->doneJobID < mtctx->nextJobID) ) { - assert(mtctx->jobs[wJobID].dstFlushed <= mtctx->jobs[wJobID].cSize); - while (mtctx->jobs[wJobID].dstFlushed == mtctx->jobs[wJobID].cSize) { /* nothing to flush */ - if (mtctx->jobs[wJobID].consumed == mtctx->jobs[wJobID].src.size) { - DEBUGLOG(5, "job %u is completely consumed (%u == %u) => don't wait for cond, there will be none", - mtctx->doneJobID, (U32)mtctx->jobs[wJobID].consumed, (U32)mtctx->jobs[wJobID].src.size); - break; - } - DEBUGLOG(5, "waiting for something to flush from job %u (currently flushed: %u bytes)", - mtctx->doneJobID, (U32)mtctx->jobs[wJobID].dstFlushed); - ZSTD_pthread_cond_wait(&mtctx->jobs[wJobID].job_cond, &mtctx->jobs[wJobID].job_mutex); /* block when nothing to flush but some to come */ - } } - - /* try to flush something */ - { size_t cSize = mtctx->jobs[wJobID].cSize; /* shared */ - size_t const srcConsumed = mtctx->jobs[wJobID].consumed; /* shared */ - size_t const srcSize = mtctx->jobs[wJobID].src.size; /* read-only, could be done after mutex lock, but no-declaration-after-statement */ - ZSTD_pthread_mutex_unlock(&mtctx->jobs[wJobID].job_mutex); - if (ZSTD_isError(cSize)) { - DEBUGLOG(5, "ZSTDMT_flushProduced: job %u : compression error detected : %s", - mtctx->doneJobID, ZSTD_getErrorName(cSize)); - ZSTDMT_waitForAllJobsCompleted(mtctx); - ZSTDMT_releaseAllJobResources(mtctx); - return cSize; - } - /* add frame checksum if necessary (can only happen once) */ - assert(srcConsumed <= srcSize); - if ( (srcConsumed == srcSize) /* job completed -> worker no longer active */ - && mtctx->jobs[wJobID].frameChecksumNeeded ) { - U32 const checksum = (U32)XXH64_digest(&mtctx->serial.xxhState); - DEBUGLOG(4, "ZSTDMT_flushProduced: writing checksum : %08X \n", checksum); - MEM_writeLE32((char*)mtctx->jobs[wJobID].dstBuff.start + mtctx->jobs[wJobID].cSize, checksum); - cSize += 4; - mtctx->jobs[wJobID].cSize += 4; /* can write this shared value, as worker is no longer active */ - mtctx->jobs[wJobID].frameChecksumNeeded = 0; - } - - if (cSize > 0) { /* compression is ongoing or completed */ - size_t const toFlush = MIN(cSize - mtctx->jobs[wJobID].dstFlushed, output->size - output->pos); - DEBUGLOG(5, "ZSTDMT_flushProduced: Flushing %u bytes from job %u (completion:%u/%u, generated:%u)", - (U32)toFlush, mtctx->doneJobID, (U32)srcConsumed, (U32)srcSize, (U32)cSize); - assert(mtctx->doneJobID < mtctx->nextJobID); - assert(cSize >= mtctx->jobs[wJobID].dstFlushed); - assert(mtctx->jobs[wJobID].dstBuff.start != NULL); - if (toFlush > 0) { - memcpy((char*)output->dst + output->pos, - (const char*)mtctx->jobs[wJobID].dstBuff.start + mtctx->jobs[wJobID].dstFlushed, - toFlush); - } - output->pos += toFlush; - mtctx->jobs[wJobID].dstFlushed += toFlush; /* can write : this value is only used by mtctx */ - - if ( (srcConsumed == srcSize) /* job is completed */ - && (mtctx->jobs[wJobID].dstFlushed == cSize) ) { /* output buffer fully flushed => free this job position */ - DEBUGLOG(5, "Job %u completed (%u bytes), moving to next one", - mtctx->doneJobID, (U32)mtctx->jobs[wJobID].dstFlushed); - ZSTDMT_releaseBuffer(mtctx->bufPool, mtctx->jobs[wJobID].dstBuff); - DEBUGLOG(5, "dstBuffer released"); - mtctx->jobs[wJobID].dstBuff = g_nullBuffer; - mtctx->jobs[wJobID].cSize = 0; /* ensure this job slot is considered "not started" in future check */ - mtctx->consumed += srcSize; - mtctx->produced += cSize; - mtctx->doneJobID++; - } } - - /* return value : how many bytes left in buffer ; fake it to 1 when unknown but >0 */ - if (cSize > mtctx->jobs[wJobID].dstFlushed) return (cSize - mtctx->jobs[wJobID].dstFlushed); - if (srcSize > srcConsumed) return 1; /* current job not completely compressed */ - } - if (mtctx->doneJobID < mtctx->nextJobID) return 1; /* some more jobs ongoing */ - if (mtctx->jobReady) return 1; /* one job is ready to push, just not yet in the list */ - if (mtctx->inBuff.filled > 0) return 1; /* input is not empty, and still needs to be converted into a job */ - mtctx->allJobsCompleted = mtctx->frameEnded; /* all jobs are entirely flushed => if this one is last one, frame is completed */ - if (end == ZSTD_e_end) return !mtctx->frameEnded; /* for ZSTD_e_end, question becomes : is frame completed ? instead of : are internal buffers fully flushed ? */ - return 0; /* internal buffers fully flushed */ -} - -/** - * Returns the range of data used by the earliest job that is not yet complete. - * If the data of the first job is broken up into two segments, we cover both - * sections. - */ -static range_t ZSTDMT_getInputDataInUse(ZSTDMT_CCtx* mtctx) -{ - unsigned const firstJobID = mtctx->doneJobID; - unsigned const lastJobID = mtctx->nextJobID; - unsigned jobID; - - for (jobID = firstJobID; jobID < lastJobID; ++jobID) { - unsigned const wJobID = jobID & mtctx->jobIDMask; - size_t consumed; - - ZSTD_PTHREAD_MUTEX_LOCK(&mtctx->jobs[wJobID].job_mutex); - consumed = mtctx->jobs[wJobID].consumed; - ZSTD_pthread_mutex_unlock(&mtctx->jobs[wJobID].job_mutex); - - if (consumed < mtctx->jobs[wJobID].src.size) { - range_t range = mtctx->jobs[wJobID].prefix; - if (range.size == 0) { - /* Empty prefix */ - range = mtctx->jobs[wJobID].src; - } - /* Job source in multiple segments not supported yet */ - assert(range.start <= mtctx->jobs[wJobID].src.start); - return range; - } - } - return kNullRange; -} - -/** - * Returns non-zero iff buffer and range overlap. - */ -static int ZSTDMT_isOverlapped(buffer_t buffer, range_t range) -{ - BYTE const* const bufferStart = (BYTE const*)buffer.start; - BYTE const* const bufferEnd = bufferStart + buffer.capacity; - BYTE const* const rangeStart = (BYTE const*)range.start; - BYTE const* const rangeEnd = range.size != 0 ? rangeStart + range.size : rangeStart; - - if (rangeStart == NULL || bufferStart == NULL) - return 0; - /* Empty ranges cannot overlap */ - if (bufferStart == bufferEnd || rangeStart == rangeEnd) - return 0; - - return bufferStart < rangeEnd && rangeStart < bufferEnd; -} - -static int ZSTDMT_doesOverlapWindow(buffer_t buffer, ZSTD_window_t window) -{ - range_t extDict; - range_t prefix; - - DEBUGLOG(5, "ZSTDMT_doesOverlapWindow"); - extDict.start = window.dictBase + window.lowLimit; - extDict.size = window.dictLimit - window.lowLimit; - - prefix.start = window.base + window.dictLimit; - prefix.size = window.nextSrc - (window.base + window.dictLimit); - DEBUGLOG(5, "extDict [0x%zx, 0x%zx)", - (size_t)extDict.start, - (size_t)extDict.start + extDict.size); - DEBUGLOG(5, "prefix [0x%zx, 0x%zx)", - (size_t)prefix.start, - (size_t)prefix.start + prefix.size); - - return ZSTDMT_isOverlapped(buffer, extDict) - || ZSTDMT_isOverlapped(buffer, prefix); -} - -static void ZSTDMT_waitForLdmComplete(ZSTDMT_CCtx* mtctx, buffer_t buffer) -{ - if (mtctx->params.ldmParams.enableLdm) { - ZSTD_pthread_mutex_t* mutex = &mtctx->serial.ldmWindowMutex; - DEBUGLOG(5, "ZSTDMT_waitForLdmComplete"); - DEBUGLOG(5, "source [0x%zx, 0x%zx)", - (size_t)buffer.start, - (size_t)buffer.start + buffer.capacity); - ZSTD_PTHREAD_MUTEX_LOCK(mutex); - while (ZSTDMT_doesOverlapWindow(buffer, mtctx->serial.ldmWindow)) { - DEBUGLOG(5, "Waiting for LDM to finish..."); - ZSTD_pthread_cond_wait(&mtctx->serial.ldmWindowCond, mutex); - } - DEBUGLOG(6, "Done waiting for LDM to finish"); - ZSTD_pthread_mutex_unlock(mutex); - } -} - -/** - * Attempts to set the inBuff to the next section to fill. - * If any part of the new section is still in use we give up. - * Returns non-zero if the buffer is filled. - */ -static int ZSTDMT_tryGetInputRange(ZSTDMT_CCtx* mtctx) -{ - range_t const inUse = ZSTDMT_getInputDataInUse(mtctx); - size_t const spaceLeft = mtctx->roundBuff.capacity - mtctx->roundBuff.pos; - size_t const target = mtctx->targetSectionSize; - buffer_t buffer; - - DEBUGLOG(5, "ZSTDMT_tryGetInputRange"); - assert(mtctx->inBuff.buffer.start == NULL); - assert(mtctx->roundBuff.capacity >= target); - - if (spaceLeft < target) { - /* ZSTD_invalidateRepCodes() doesn't work for extDict variants. - * Simply copy the prefix to the beginning in that case. - */ - BYTE* const start = (BYTE*)mtctx->roundBuff.buffer; - size_t const prefixSize = mtctx->inBuff.prefix.size; - - buffer.start = start; - buffer.capacity = prefixSize; - if (ZSTDMT_isOverlapped(buffer, inUse)) { - DEBUGLOG(5, "Waiting for buffer..."); - return 0; - } - ZSTDMT_waitForLdmComplete(mtctx, buffer); - memmove(start, mtctx->inBuff.prefix.start, prefixSize); - mtctx->inBuff.prefix.start = start; - mtctx->roundBuff.pos = prefixSize; - } - buffer.start = mtctx->roundBuff.buffer + mtctx->roundBuff.pos; - buffer.capacity = target; - - if (ZSTDMT_isOverlapped(buffer, inUse)) { - DEBUGLOG(5, "Waiting for buffer..."); - return 0; - } - assert(!ZSTDMT_isOverlapped(buffer, mtctx->inBuff.prefix)); - - ZSTDMT_waitForLdmComplete(mtctx, buffer); - - DEBUGLOG(5, "Using prefix range [%zx, %zx)", - (size_t)mtctx->inBuff.prefix.start, - (size_t)mtctx->inBuff.prefix.start + mtctx->inBuff.prefix.size); - DEBUGLOG(5, "Using source range [%zx, %zx)", - (size_t)buffer.start, - (size_t)buffer.start + buffer.capacity); - - - mtctx->inBuff.buffer = buffer; - mtctx->inBuff.filled = 0; - assert(mtctx->roundBuff.pos + buffer.capacity <= mtctx->roundBuff.capacity); - return 1; -} - -typedef struct { - size_t toLoad; /* The number of bytes to load from the input. */ - int flush; /* Boolean declaring if we must flush because we found a synchronization point. */ -} syncPoint_t; - -/** - * Searches through the input for a synchronization point. If one is found, we - * will instruct the caller to flush, and return the number of bytes to load. - * Otherwise, we will load as many bytes as possible and instruct the caller - * to continue as normal. - */ -static syncPoint_t -findSynchronizationPoint(ZSTDMT_CCtx const* mtctx, ZSTD_inBuffer const input) -{ - BYTE const* const istart = (BYTE const*)input.src + input.pos; - U64 const primePower = mtctx->rsync.primePower; - U64 const hitMask = mtctx->rsync.hitMask; - - syncPoint_t syncPoint; - U64 hash; - BYTE const* prev; - size_t pos; - - syncPoint.toLoad = MIN(input.size - input.pos, mtctx->targetSectionSize - mtctx->inBuff.filled); - syncPoint.flush = 0; - if (!mtctx->params.rsyncable) - /* Rsync is disabled. */ - return syncPoint; - if (mtctx->inBuff.filled + syncPoint.toLoad < RSYNC_LENGTH) - /* Not enough to compute the hash. - * We will miss any synchronization points in this RSYNC_LENGTH byte - * window. However, since it depends only in the internal buffers, if the - * state is already synchronized, we will remain synchronized. - * Additionally, the probability that we miss a synchronization point is - * low: RSYNC_LENGTH / targetSectionSize. - */ - return syncPoint; - /* Initialize the loop variables. */ - if (mtctx->inBuff.filled >= RSYNC_LENGTH) { - /* We have enough bytes buffered to initialize the hash. - * Start scanning at the beginning of the input. - */ - pos = 0; - prev = (BYTE const*)mtctx->inBuff.buffer.start + mtctx->inBuff.filled - RSYNC_LENGTH; - hash = ZSTD_rollingHash_compute(prev, RSYNC_LENGTH); - } else { - /* We don't have enough bytes buffered to initialize the hash, but - * we know we have at least RSYNC_LENGTH bytes total. - * Start scanning after the first RSYNC_LENGTH bytes less the bytes - * already buffered. - */ - pos = RSYNC_LENGTH - mtctx->inBuff.filled; - prev = (BYTE const*)mtctx->inBuff.buffer.start - pos; - hash = ZSTD_rollingHash_compute(mtctx->inBuff.buffer.start, mtctx->inBuff.filled); - hash = ZSTD_rollingHash_append(hash, istart, pos); - } - /* Starting with the hash of the previous RSYNC_LENGTH bytes, roll - * through the input. If we hit a synchronization point, then cut the - * job off, and tell the compressor to flush the job. Otherwise, load - * all the bytes and continue as normal. - * If we go too long without a synchronization point (targetSectionSize) - * then a block will be emitted anyways, but this is okay, since if we - * are already synchronized we will remain synchronized. - */ - for (; pos < syncPoint.toLoad; ++pos) { - BYTE const toRemove = pos < RSYNC_LENGTH ? prev[pos] : istart[pos - RSYNC_LENGTH]; - /* if (pos >= RSYNC_LENGTH) assert(ZSTD_rollingHash_compute(istart + pos - RSYNC_LENGTH, RSYNC_LENGTH) == hash); */ - hash = ZSTD_rollingHash_rotate(hash, toRemove, istart[pos], primePower); - if ((hash & hitMask) == hitMask) { - syncPoint.toLoad = pos + 1; - syncPoint.flush = 1; - break; - } - } - return syncPoint; -} - -size_t ZSTDMT_nextInputSizeHint(const ZSTDMT_CCtx* mtctx) -{ - size_t hintInSize = mtctx->targetSectionSize - mtctx->inBuff.filled; - if (hintInSize==0) hintInSize = mtctx->targetSectionSize; - return hintInSize; -} - -/** ZSTDMT_compressStream_generic() : - * internal use only - exposed to be invoked from zstd_compress.c - * assumption : output and input are valid (pos <= size) - * @return : minimum amount of data remaining to flush, 0 if none */ -size_t ZSTDMT_compressStream_generic(ZSTDMT_CCtx* mtctx, - ZSTD_outBuffer* output, - ZSTD_inBuffer* input, - ZSTD_EndDirective endOp) -{ - unsigned forwardInputProgress = 0; - DEBUGLOG(5, "ZSTDMT_compressStream_generic (endOp=%u, srcSize=%u)", - (U32)endOp, (U32)(input->size - input->pos)); - assert(output->pos <= output->size); - assert(input->pos <= input->size); - - if (mtctx->singleBlockingThread) { /* delegate to single-thread (synchronous) */ - return ZSTD_compressStream2(mtctx->cctxPool->cctx[0], output, input, endOp); - } - - if ((mtctx->frameEnded) && (endOp==ZSTD_e_continue)) { - /* current frame being ended. Only flush/end are allowed */ - return ERROR(stage_wrong); - } - - /* single-pass shortcut (note : synchronous-mode) */ - if ( (!mtctx->params.rsyncable) /* rsyncable mode is disabled */ - && (mtctx->nextJobID == 0) /* just started */ - && (mtctx->inBuff.filled == 0) /* nothing buffered */ - && (!mtctx->jobReady) /* no job already created */ - && (endOp == ZSTD_e_end) /* end order */ - && (output->size - output->pos >= ZSTD_compressBound(input->size - input->pos)) ) { /* enough space in dst */ - size_t const cSize = ZSTDMT_compress_advanced_internal(mtctx, - (char*)output->dst + output->pos, output->size - output->pos, - (const char*)input->src + input->pos, input->size - input->pos, - mtctx->cdict, mtctx->params); - if (ZSTD_isError(cSize)) return cSize; - input->pos = input->size; - output->pos += cSize; - mtctx->allJobsCompleted = 1; - mtctx->frameEnded = 1; - return 0; - } - - /* fill input buffer */ - if ( (!mtctx->jobReady) - && (input->size > input->pos) ) { /* support NULL input */ - if (mtctx->inBuff.buffer.start == NULL) { - assert(mtctx->inBuff.filled == 0); /* Can't fill an empty buffer */ - if (!ZSTDMT_tryGetInputRange(mtctx)) { - /* It is only possible for this operation to fail if there are - * still compression jobs ongoing. - */ - DEBUGLOG(5, "ZSTDMT_tryGetInputRange failed"); - assert(mtctx->doneJobID != mtctx->nextJobID); - } else - DEBUGLOG(5, "ZSTDMT_tryGetInputRange completed successfully : mtctx->inBuff.buffer.start = %p", mtctx->inBuff.buffer.start); - } - if (mtctx->inBuff.buffer.start != NULL) { - syncPoint_t const syncPoint = findSynchronizationPoint(mtctx, *input); - if (syncPoint.flush && endOp == ZSTD_e_continue) { - endOp = ZSTD_e_flush; - } - assert(mtctx->inBuff.buffer.capacity >= mtctx->targetSectionSize); - DEBUGLOG(5, "ZSTDMT_compressStream_generic: adding %u bytes on top of %u to buffer of size %u", - (U32)syncPoint.toLoad, (U32)mtctx->inBuff.filled, (U32)mtctx->targetSectionSize); - memcpy((char*)mtctx->inBuff.buffer.start + mtctx->inBuff.filled, (const char*)input->src + input->pos, syncPoint.toLoad); - input->pos += syncPoint.toLoad; - mtctx->inBuff.filled += syncPoint.toLoad; - forwardInputProgress = syncPoint.toLoad>0; - } - if ((input->pos < input->size) && (endOp == ZSTD_e_end)) - endOp = ZSTD_e_flush; /* can't end now : not all input consumed */ - } - - if ( (mtctx->jobReady) - || (mtctx->inBuff.filled >= mtctx->targetSectionSize) /* filled enough : let's compress */ - || ((endOp != ZSTD_e_continue) && (mtctx->inBuff.filled > 0)) /* something to flush : let's go */ - || ((endOp == ZSTD_e_end) && (!mtctx->frameEnded)) ) { /* must finish the frame with a zero-size block */ - size_t const jobSize = mtctx->inBuff.filled; - assert(mtctx->inBuff.filled <= mtctx->targetSectionSize); - FORWARD_IF_ERROR( ZSTDMT_createCompressionJob(mtctx, jobSize, endOp) , ""); - } - - /* check for potential compressed data ready to be flushed */ - { size_t const remainingToFlush = ZSTDMT_flushProduced(mtctx, output, !forwardInputProgress, endOp); /* block if there was no forward input progress */ - if (input->pos < input->size) return MAX(remainingToFlush, 1); /* input not consumed : do not end flush yet */ - DEBUGLOG(5, "end of ZSTDMT_compressStream_generic: remainingToFlush = %u", (U32)remainingToFlush); - return remainingToFlush; - } -} - - -size_t ZSTDMT_compressStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output, ZSTD_inBuffer* input) -{ - FORWARD_IF_ERROR( ZSTDMT_compressStream_generic(mtctx, output, input, ZSTD_e_continue) , ""); - - /* recommended next input size : fill current input buffer */ - return mtctx->targetSectionSize - mtctx->inBuff.filled; /* note : could be zero when input buffer is fully filled and no more availability to create new job */ -} - - -static size_t ZSTDMT_flushStream_internal(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output, ZSTD_EndDirective endFrame) -{ - size_t const srcSize = mtctx->inBuff.filled; - DEBUGLOG(5, "ZSTDMT_flushStream_internal"); - - if ( mtctx->jobReady /* one job ready for a worker to pick up */ - || (srcSize > 0) /* still some data within input buffer */ - || ((endFrame==ZSTD_e_end) && !mtctx->frameEnded)) { /* need a last 0-size block to end frame */ - DEBUGLOG(5, "ZSTDMT_flushStream_internal : create a new job (%u bytes, end:%u)", - (U32)srcSize, (U32)endFrame); - FORWARD_IF_ERROR( ZSTDMT_createCompressionJob(mtctx, srcSize, endFrame) , ""); - } - - /* check if there is any data available to flush */ - return ZSTDMT_flushProduced(mtctx, output, 1 /* blockToFlush */, endFrame); -} - - -size_t ZSTDMT_flushStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output) -{ - DEBUGLOG(5, "ZSTDMT_flushStream"); - if (mtctx->singleBlockingThread) - return ZSTD_flushStream(mtctx->cctxPool->cctx[0], output); - return ZSTDMT_flushStream_internal(mtctx, output, ZSTD_e_flush); -} - -size_t ZSTDMT_endStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output) -{ - DEBUGLOG(4, "ZSTDMT_endStream"); - if (mtctx->singleBlockingThread) - return ZSTD_endStream(mtctx->cctxPool->cctx[0], output); - return ZSTDMT_flushStream_internal(mtctx, output, ZSTD_e_end); -} diff --git a/lib/SZ3/tools/zstd/compress/zstdmt_compress.h b/lib/SZ3/tools/zstd/compress/zstdmt_compress.h deleted file mode 100644 index 89914eb7..00000000 --- a/lib/SZ3/tools/zstd/compress/zstdmt_compress.h +++ /dev/null @@ -1,192 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - #ifndef ZSTDMT_COMPRESS_H - #define ZSTDMT_COMPRESS_H - - #if defined (__cplusplus) - extern "C" { - #endif - - -/* Note : This is an internal API. - * These APIs used to be exposed with ZSTDLIB_API, - * because it used to be the only way to invoke MT compression. - * Now, it's recommended to use ZSTD_compress2 and ZSTD_compressStream2() - * instead. - * - * If you depend on these APIs and can't switch, then define - * ZSTD_LEGACY_MULTITHREADED_API when making the dynamic library. - * However, we may completely remove these functions in a future - * release, so please switch soon. - * - * This API requires ZSTD_MULTITHREAD to be defined during compilation, - * otherwise ZSTDMT_createCCtx*() will fail. - */ - -#ifdef ZSTD_LEGACY_MULTITHREADED_API -# define ZSTDMT_API ZSTDLIB_API -#else -# define ZSTDMT_API -#endif - -/* === Dependencies === */ -#include /* size_t */ -#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters */ -#include "../zstd.h" /* ZSTD_inBuffer, ZSTD_outBuffer, ZSTDLIB_API */ - - -/* === Constants === */ -#ifndef ZSTDMT_NBWORKERS_MAX -# define ZSTDMT_NBWORKERS_MAX 200 -#endif -#ifndef ZSTDMT_JOBSIZE_MIN -# define ZSTDMT_JOBSIZE_MIN (1 MB) -#endif -#define ZSTDMT_JOBLOG_MAX (MEM_32bits() ? 29 : 30) -#define ZSTDMT_JOBSIZE_MAX (MEM_32bits() ? (512 MB) : (1024 MB)) - - -/* === Memory management === */ -typedef struct ZSTDMT_CCtx_s ZSTDMT_CCtx; -/* Requires ZSTD_MULTITHREAD to be defined during compilation, otherwise it will return NULL. */ -ZSTDMT_API ZSTDMT_CCtx* ZSTDMT_createCCtx(unsigned nbWorkers); -/* Requires ZSTD_MULTITHREAD to be defined during compilation, otherwise it will return NULL. */ -ZSTDMT_API ZSTDMT_CCtx* ZSTDMT_createCCtx_advanced(unsigned nbWorkers, - ZSTD_customMem cMem); -ZSTDMT_API size_t ZSTDMT_freeCCtx(ZSTDMT_CCtx* mtctx); - -ZSTDMT_API size_t ZSTDMT_sizeof_CCtx(ZSTDMT_CCtx* mtctx); - - -/* === Simple one-pass compression function === */ - -ZSTDMT_API size_t ZSTDMT_compressCCtx(ZSTDMT_CCtx* mtctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - int compressionLevel); - - - -/* === Streaming functions === */ - -ZSTDMT_API size_t ZSTDMT_initCStream(ZSTDMT_CCtx* mtctx, int compressionLevel); -ZSTDMT_API size_t ZSTDMT_resetCStream(ZSTDMT_CCtx* mtctx, unsigned long long pledgedSrcSize); /**< if srcSize is not known at reset time, use ZSTD_CONTENTSIZE_UNKNOWN. Note: for compatibility with older programs, 0 means the same as ZSTD_CONTENTSIZE_UNKNOWN, but it will change in the future to mean "empty" */ - -ZSTDMT_API size_t ZSTDMT_nextInputSizeHint(const ZSTDMT_CCtx* mtctx); -ZSTDMT_API size_t ZSTDMT_compressStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output, ZSTD_inBuffer* input); - -ZSTDMT_API size_t ZSTDMT_flushStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output); /**< @return : 0 == all flushed; >0 : still some data to be flushed; or an error code (ZSTD_isError()) */ -ZSTDMT_API size_t ZSTDMT_endStream(ZSTDMT_CCtx* mtctx, ZSTD_outBuffer* output); /**< @return : 0 == all flushed; >0 : still some data to be flushed; or an error code (ZSTD_isError()) */ - - -/* === Advanced functions and parameters === */ - -ZSTDMT_API size_t ZSTDMT_compress_advanced(ZSTDMT_CCtx* mtctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const ZSTD_CDict* cdict, - ZSTD_parameters params, - int overlapLog); - -ZSTDMT_API size_t ZSTDMT_initCStream_advanced(ZSTDMT_CCtx* mtctx, - const void* dict, size_t dictSize, /* dict can be released after init, a local copy is preserved within zcs */ - ZSTD_parameters params, - unsigned long long pledgedSrcSize); /* pledgedSrcSize is optional and can be zero == unknown */ - -ZSTDMT_API size_t ZSTDMT_initCStream_usingCDict(ZSTDMT_CCtx* mtctx, - const ZSTD_CDict* cdict, - ZSTD_frameParameters fparams, - unsigned long long pledgedSrcSize); /* note : zero means empty */ - -/* ZSTDMT_parameter : - * List of parameters that can be set using ZSTDMT_setMTCtxParameter() */ -typedef enum { - ZSTDMT_p_jobSize, /* Each job is compressed in parallel. By default, this value is dynamically determined depending on compression parameters. Can be set explicitly here. */ - ZSTDMT_p_overlapLog, /* Each job may reload a part of previous job to enhance compression ratio; 0 == no overlap, 6(default) == use 1/8th of window, >=9 == use full window. This is a "sticky" parameter : its value will be re-used on next compression job */ - ZSTDMT_p_rsyncable /* Enables rsyncable mode. */ -} ZSTDMT_parameter; - -/* ZSTDMT_setMTCtxParameter() : - * allow setting individual parameters, one at a time, among a list of enums defined in ZSTDMT_parameter. - * The function must be called typically after ZSTD_createCCtx() but __before ZSTDMT_init*() !__ - * Parameters not explicitly reset by ZSTDMT_init*() remain the same in consecutive compression sessions. - * @return : 0, or an error code (which can be tested using ZSTD_isError()) */ -ZSTDMT_API size_t ZSTDMT_setMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSTDMT_parameter parameter, int value); - -/* ZSTDMT_getMTCtxParameter() : - * Query the ZSTDMT_CCtx for a parameter value. - * @return : 0, or an error code (which can be tested using ZSTD_isError()) */ -ZSTDMT_API size_t ZSTDMT_getMTCtxParameter(ZSTDMT_CCtx* mtctx, ZSTDMT_parameter parameter, int* value); - - -/*! ZSTDMT_compressStream_generic() : - * Combines ZSTDMT_compressStream() with optional ZSTDMT_flushStream() or ZSTDMT_endStream() - * depending on flush directive. - * @return : minimum amount of data still to be flushed - * 0 if fully flushed - * or an error code - * note : needs to be init using any ZSTD_initCStream*() variant */ -ZSTDMT_API size_t ZSTDMT_compressStream_generic(ZSTDMT_CCtx* mtctx, - ZSTD_outBuffer* output, - ZSTD_inBuffer* input, - ZSTD_EndDirective endOp); - - -/* ======================================================== - * === Private interface, for use by ZSTD_compress.c === - * === Not exposed in libzstd. Never invoke directly === - * ======================================================== */ - - /*! ZSTDMT_toFlushNow() - * Tell how many bytes are ready to be flushed immediately. - * Probe the oldest active job (not yet entirely flushed) and check its output buffer. - * If return 0, it means there is no active job, - * or, it means oldest job is still active, but everything produced has been flushed so far, - * therefore flushing is limited by speed of oldest job. */ -size_t ZSTDMT_toFlushNow(ZSTDMT_CCtx* mtctx); - -/*! ZSTDMT_CCtxParam_setMTCtxParameter() - * like ZSTDMT_setMTCtxParameter(), but into a ZSTD_CCtx_Params */ -size_t ZSTDMT_CCtxParam_setMTCtxParameter(ZSTD_CCtx_params* params, ZSTDMT_parameter parameter, int value); - -/*! ZSTDMT_CCtxParam_setNbWorkers() - * Set nbWorkers, and clamp it. - * Also reset jobSize and overlapLog */ -size_t ZSTDMT_CCtxParam_setNbWorkers(ZSTD_CCtx_params* params, unsigned nbWorkers); - -/*! ZSTDMT_updateCParams_whileCompressing() : - * Updates only a selected set of compression parameters, to remain compatible with current frame. - * New parameters will be applied to next compression job. */ -void ZSTDMT_updateCParams_whileCompressing(ZSTDMT_CCtx* mtctx, const ZSTD_CCtx_params* cctxParams); - -/*! ZSTDMT_getFrameProgression(): - * tells how much data has been consumed (input) and produced (output) for current frame. - * able to count progression inside worker threads. - */ -ZSTD_frameProgression ZSTDMT_getFrameProgression(ZSTDMT_CCtx* mtctx); - - -/*! ZSTDMT_initCStream_internal() : - * Private use only. Init streaming operation. - * expects params to be valid. - * must receive dict, or cdict, or none, but not both. - * @return : 0, or an error code */ -size_t ZSTDMT_initCStream_internal(ZSTDMT_CCtx* zcs, - const void* dict, size_t dictSize, ZSTD_dictContentType_e dictContentType, - const ZSTD_CDict* cdict, - ZSTD_CCtx_params params, unsigned long long pledgedSrcSize); - - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTDMT_COMPRESS_H */ diff --git a/lib/SZ3/tools/zstd/decompress/huf_decompress.c b/lib/SZ3/tools/zstd/decompress/huf_decompress.c deleted file mode 100644 index 68293a13..00000000 --- a/lib/SZ3/tools/zstd/decompress/huf_decompress.c +++ /dev/null @@ -1,1248 +0,0 @@ -/* ****************************************************************** - * huff0 huffman decoder, - * part of Finite State Entropy library - * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. - * - * You can contact the author at : - * - FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. -****************************************************************** */ - -/* ************************************************************** -* Dependencies -****************************************************************/ -#include /* memcpy, memset */ -#include "../common/compiler.h" -#include "../common/bitstream.h" /* BIT_* */ -#include "../common/fse.h" /* to compress headers */ -#define HUF_STATIC_LINKING_ONLY -#include "../common/huf.h" -#include "../common/error_private.h" - -/* ************************************************************** -* Macros -****************************************************************/ - -/* These two optional macros force the use one way or another of the two - * Huffman decompression implementations. You can't force in both directions - * at the same time. - */ -#if defined(HUF_FORCE_DECOMPRESS_X1) && \ - defined(HUF_FORCE_DECOMPRESS_X2) -#error "Cannot force the use of the X1 and X2 decoders at the same time!" -#endif - - -/* ************************************************************** -* Error Management -****************************************************************/ -#define HUF_isError ERR_isError - - -/* ************************************************************** -* Byte alignment for workSpace management -****************************************************************/ -#define HUF_ALIGN(x, a) HUF_ALIGN_MASK((x), (a) - 1) -#define HUF_ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) - - -/* ************************************************************** -* BMI2 Variant Wrappers -****************************************************************/ -#if DYNAMIC_BMI2 - -#define HUF_DGEN(fn) \ - \ - static size_t fn##_default( \ - void* dst, size_t dstSize, \ - const void* cSrc, size_t cSrcSize, \ - const HUF_DTable* DTable) \ - { \ - return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \ - } \ - \ - static TARGET_ATTRIBUTE("bmi2") size_t fn##_bmi2( \ - void* dst, size_t dstSize, \ - const void* cSrc, size_t cSrcSize, \ - const HUF_DTable* DTable) \ - { \ - return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \ - } \ - \ - static size_t fn(void* dst, size_t dstSize, void const* cSrc, \ - size_t cSrcSize, HUF_DTable const* DTable, int bmi2) \ - { \ - if (bmi2) { \ - return fn##_bmi2(dst, dstSize, cSrc, cSrcSize, DTable); \ - } \ - return fn##_default(dst, dstSize, cSrc, cSrcSize, DTable); \ - } - -#else - -#define HUF_DGEN(fn) \ - static size_t fn(void* dst, size_t dstSize, void const* cSrc, \ - size_t cSrcSize, HUF_DTable const* DTable, int bmi2) \ - { \ - (void)bmi2; \ - return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \ - } - -#endif - - -/*-***************************/ -/* generic DTableDesc */ -/*-***************************/ -typedef struct { BYTE maxTableLog; BYTE tableType; BYTE tableLog; BYTE reserved; } DTableDesc; - -static DTableDesc HUF_getDTableDesc(const HUF_DTable* table) -{ - DTableDesc dtd; - memcpy(&dtd, table, sizeof(dtd)); - return dtd; -} - - -#ifndef HUF_FORCE_DECOMPRESS_X2 - -/*-***************************/ -/* single-symbol decoding */ -/*-***************************/ -typedef struct { BYTE byte; BYTE nbBits; } HUF_DEltX1; /* single-symbol decoding */ - -size_t HUF_readDTableX1_wksp(HUF_DTable* DTable, const void* src, size_t srcSize, void* workSpace, size_t wkspSize) -{ - U32 tableLog = 0; - U32 nbSymbols = 0; - size_t iSize; - void* const dtPtr = DTable + 1; - HUF_DEltX1* const dt = (HUF_DEltX1*)dtPtr; - - U32* rankVal; - BYTE* huffWeight; - size_t spaceUsed32 = 0; - - rankVal = (U32 *)workSpace + spaceUsed32; - spaceUsed32 += HUF_TABLELOG_ABSOLUTEMAX + 1; - huffWeight = (BYTE *)((U32 *)workSpace + spaceUsed32); - spaceUsed32 += HUF_ALIGN(HUF_SYMBOLVALUE_MAX + 1, sizeof(U32)) >> 2; - - if ((spaceUsed32 << 2) > wkspSize) return ERROR(tableLog_tooLarge); - - DEBUG_STATIC_ASSERT(sizeof(DTableDesc) == sizeof(HUF_DTable)); - /* memset(huffWeight, 0, sizeof(huffWeight)); */ /* is not necessary, even though some analyzer complain ... */ - - iSize = HUF_readStats(huffWeight, HUF_SYMBOLVALUE_MAX + 1, rankVal, &nbSymbols, &tableLog, src, srcSize); - if (HUF_isError(iSize)) return iSize; - - /* Table header */ - { DTableDesc dtd = HUF_getDTableDesc(DTable); - if (tableLog > (U32)(dtd.maxTableLog+1)) return ERROR(tableLog_tooLarge); /* DTable too small, Huffman tree cannot fit in */ - dtd.tableType = 0; - dtd.tableLog = (BYTE)tableLog; - memcpy(DTable, &dtd, sizeof(dtd)); - } - - /* Calculate starting value for each rank */ - { U32 n, nextRankStart = 0; - for (n=1; n> 1; - size_t const uStart = rankVal[w]; - size_t const uEnd = uStart + length; - size_t u; - HUF_DEltX1 D; - D.byte = (BYTE)n; - D.nbBits = (BYTE)(tableLog + 1 - w); - rankVal[w] = (U32)uEnd; - if (length < 4) { - /* Use length in the loop bound so the compiler knows it is short. */ - for (u = 0; u < length; ++u) - dt[uStart + u] = D; - } else { - /* Unroll the loop 4 times, we know it is a power of 2. */ - for (u = uStart; u < uEnd; u += 4) { - dt[u + 0] = D; - dt[u + 1] = D; - dt[u + 2] = D; - dt[u + 3] = D; - } } } } - return iSize; -} - -size_t HUF_readDTableX1(HUF_DTable* DTable, const void* src, size_t srcSize) -{ - U32 workSpace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; - return HUF_readDTableX1_wksp(DTable, src, srcSize, - workSpace, sizeof(workSpace)); -} - -FORCE_INLINE_TEMPLATE BYTE -HUF_decodeSymbolX1(BIT_DStream_t* Dstream, const HUF_DEltX1* dt, const U32 dtLog) -{ - size_t const val = BIT_lookBitsFast(Dstream, dtLog); /* note : dtLog >= 1 */ - BYTE const c = dt[val].byte; - BIT_skipBits(Dstream, dt[val].nbBits); - return c; -} - -#define HUF_DECODE_SYMBOLX1_0(ptr, DStreamPtr) \ - *ptr++ = HUF_decodeSymbolX1(DStreamPtr, dt, dtLog) - -#define HUF_DECODE_SYMBOLX1_1(ptr, DStreamPtr) \ - if (MEM_64bits() || (HUF_TABLELOG_MAX<=12)) \ - HUF_DECODE_SYMBOLX1_0(ptr, DStreamPtr) - -#define HUF_DECODE_SYMBOLX1_2(ptr, DStreamPtr) \ - if (MEM_64bits()) \ - HUF_DECODE_SYMBOLX1_0(ptr, DStreamPtr) - -HINT_INLINE size_t -HUF_decodeStreamX1(BYTE* p, BIT_DStream_t* const bitDPtr, BYTE* const pEnd, const HUF_DEltX1* const dt, const U32 dtLog) -{ - BYTE* const pStart = p; - - /* up to 4 symbols at a time */ - while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) & (p < pEnd-3)) { - HUF_DECODE_SYMBOLX1_2(p, bitDPtr); - HUF_DECODE_SYMBOLX1_1(p, bitDPtr); - HUF_DECODE_SYMBOLX1_2(p, bitDPtr); - HUF_DECODE_SYMBOLX1_0(p, bitDPtr); - } - - /* [0-3] symbols remaining */ - if (MEM_32bits()) - while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) & (p < pEnd)) - HUF_DECODE_SYMBOLX1_0(p, bitDPtr); - - /* no more data to retrieve from bitstream, no need to reload */ - while (p < pEnd) - HUF_DECODE_SYMBOLX1_0(p, bitDPtr); - - return pEnd-pStart; -} - -FORCE_INLINE_TEMPLATE size_t -HUF_decompress1X1_usingDTable_internal_body( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - BYTE* op = (BYTE*)dst; - BYTE* const oend = op + dstSize; - const void* dtPtr = DTable + 1; - const HUF_DEltX1* const dt = (const HUF_DEltX1*)dtPtr; - BIT_DStream_t bitD; - DTableDesc const dtd = HUF_getDTableDesc(DTable); - U32 const dtLog = dtd.tableLog; - - CHECK_F( BIT_initDStream(&bitD, cSrc, cSrcSize) ); - - HUF_decodeStreamX1(op, &bitD, oend, dt, dtLog); - - if (!BIT_endOfDStream(&bitD)) return ERROR(corruption_detected); - - return dstSize; -} - -FORCE_INLINE_TEMPLATE size_t -HUF_decompress4X1_usingDTable_internal_body( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - /* Check */ - if (cSrcSize < 10) return ERROR(corruption_detected); /* strict minimum : jump table + 1 byte per stream */ - - { const BYTE* const istart = (const BYTE*) cSrc; - BYTE* const ostart = (BYTE*) dst; - BYTE* const oend = ostart + dstSize; - BYTE* const olimit = oend - 3; - const void* const dtPtr = DTable + 1; - const HUF_DEltX1* const dt = (const HUF_DEltX1*)dtPtr; - - /* Init */ - BIT_DStream_t bitD1; - BIT_DStream_t bitD2; - BIT_DStream_t bitD3; - BIT_DStream_t bitD4; - size_t const length1 = MEM_readLE16(istart); - size_t const length2 = MEM_readLE16(istart+2); - size_t const length3 = MEM_readLE16(istart+4); - size_t const length4 = cSrcSize - (length1 + length2 + length3 + 6); - const BYTE* const istart1 = istart + 6; /* jumpTable */ - const BYTE* const istart2 = istart1 + length1; - const BYTE* const istart3 = istart2 + length2; - const BYTE* const istart4 = istart3 + length3; - const size_t segmentSize = (dstSize+3) / 4; - BYTE* const opStart2 = ostart + segmentSize; - BYTE* const opStart3 = opStart2 + segmentSize; - BYTE* const opStart4 = opStart3 + segmentSize; - BYTE* op1 = ostart; - BYTE* op2 = opStart2; - BYTE* op3 = opStart3; - BYTE* op4 = opStart4; - DTableDesc const dtd = HUF_getDTableDesc(DTable); - U32 const dtLog = dtd.tableLog; - U32 endSignal = 1; - - if (length4 > cSrcSize) return ERROR(corruption_detected); /* overflow */ - CHECK_F( BIT_initDStream(&bitD1, istart1, length1) ); - CHECK_F( BIT_initDStream(&bitD2, istart2, length2) ); - CHECK_F( BIT_initDStream(&bitD3, istart3, length3) ); - CHECK_F( BIT_initDStream(&bitD4, istart4, length4) ); - - /* up to 16 symbols per loop (4 symbols per stream) in 64-bit mode */ - for ( ; (endSignal) & (op4 < olimit) ; ) { - HUF_DECODE_SYMBOLX1_2(op1, &bitD1); - HUF_DECODE_SYMBOLX1_2(op2, &bitD2); - HUF_DECODE_SYMBOLX1_2(op3, &bitD3); - HUF_DECODE_SYMBOLX1_2(op4, &bitD4); - HUF_DECODE_SYMBOLX1_1(op1, &bitD1); - HUF_DECODE_SYMBOLX1_1(op2, &bitD2); - HUF_DECODE_SYMBOLX1_1(op3, &bitD3); - HUF_DECODE_SYMBOLX1_1(op4, &bitD4); - HUF_DECODE_SYMBOLX1_2(op1, &bitD1); - HUF_DECODE_SYMBOLX1_2(op2, &bitD2); - HUF_DECODE_SYMBOLX1_2(op3, &bitD3); - HUF_DECODE_SYMBOLX1_2(op4, &bitD4); - HUF_DECODE_SYMBOLX1_0(op1, &bitD1); - HUF_DECODE_SYMBOLX1_0(op2, &bitD2); - HUF_DECODE_SYMBOLX1_0(op3, &bitD3); - HUF_DECODE_SYMBOLX1_0(op4, &bitD4); - endSignal &= BIT_reloadDStreamFast(&bitD1) == BIT_DStream_unfinished; - endSignal &= BIT_reloadDStreamFast(&bitD2) == BIT_DStream_unfinished; - endSignal &= BIT_reloadDStreamFast(&bitD3) == BIT_DStream_unfinished; - endSignal &= BIT_reloadDStreamFast(&bitD4) == BIT_DStream_unfinished; - } - - /* check corruption */ - /* note : should not be necessary : op# advance in lock step, and we control op4. - * but curiously, binary generated by gcc 7.2 & 7.3 with -mbmi2 runs faster when >=1 test is present */ - if (op1 > opStart2) return ERROR(corruption_detected); - if (op2 > opStart3) return ERROR(corruption_detected); - if (op3 > opStart4) return ERROR(corruption_detected); - /* note : op4 supposed already verified within main loop */ - - /* finish bitStreams one by one */ - HUF_decodeStreamX1(op1, &bitD1, opStart2, dt, dtLog); - HUF_decodeStreamX1(op2, &bitD2, opStart3, dt, dtLog); - HUF_decodeStreamX1(op3, &bitD3, opStart4, dt, dtLog); - HUF_decodeStreamX1(op4, &bitD4, oend, dt, dtLog); - - /* check */ - { U32 const endCheck = BIT_endOfDStream(&bitD1) & BIT_endOfDStream(&bitD2) & BIT_endOfDStream(&bitD3) & BIT_endOfDStream(&bitD4); - if (!endCheck) return ERROR(corruption_detected); } - - /* decoded size */ - return dstSize; - } -} - - -typedef size_t (*HUF_decompress_usingDTable_t)(void *dst, size_t dstSize, - const void *cSrc, - size_t cSrcSize, - const HUF_DTable *DTable); - -HUF_DGEN(HUF_decompress1X1_usingDTable_internal) -HUF_DGEN(HUF_decompress4X1_usingDTable_internal) - - - -size_t HUF_decompress1X1_usingDTable( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - DTableDesc dtd = HUF_getDTableDesc(DTable); - if (dtd.tableType != 0) return ERROR(GENERIC); - return HUF_decompress1X1_usingDTable_internal(dst, dstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -} - -size_t HUF_decompress1X1_DCtx_wksp(HUF_DTable* DCtx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - void* workSpace, size_t wkspSize) -{ - const BYTE* ip = (const BYTE*) cSrc; - - size_t const hSize = HUF_readDTableX1_wksp(DCtx, cSrc, cSrcSize, workSpace, wkspSize); - if (HUF_isError(hSize)) return hSize; - if (hSize >= cSrcSize) return ERROR(srcSize_wrong); - ip += hSize; cSrcSize -= hSize; - - return HUF_decompress1X1_usingDTable_internal(dst, dstSize, ip, cSrcSize, DCtx, /* bmi2 */ 0); -} - - -size_t HUF_decompress1X1_DCtx(HUF_DTable* DCtx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize) -{ - U32 workSpace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; - return HUF_decompress1X1_DCtx_wksp(DCtx, dst, dstSize, cSrc, cSrcSize, - workSpace, sizeof(workSpace)); -} - -size_t HUF_decompress1X1 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - HUF_CREATE_STATIC_DTABLEX1(DTable, HUF_TABLELOG_MAX); - return HUF_decompress1X1_DCtx (DTable, dst, dstSize, cSrc, cSrcSize); -} - -size_t HUF_decompress4X1_usingDTable( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - DTableDesc dtd = HUF_getDTableDesc(DTable); - if (dtd.tableType != 0) return ERROR(GENERIC); - return HUF_decompress4X1_usingDTable_internal(dst, dstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -} - -static size_t HUF_decompress4X1_DCtx_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - void* workSpace, size_t wkspSize, int bmi2) -{ - const BYTE* ip = (const BYTE*) cSrc; - - size_t const hSize = HUF_readDTableX1_wksp (dctx, cSrc, cSrcSize, - workSpace, wkspSize); - if (HUF_isError(hSize)) return hSize; - if (hSize >= cSrcSize) return ERROR(srcSize_wrong); - ip += hSize; cSrcSize -= hSize; - - return HUF_decompress4X1_usingDTable_internal(dst, dstSize, ip, cSrcSize, dctx, bmi2); -} - -size_t HUF_decompress4X1_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - void* workSpace, size_t wkspSize) -{ - return HUF_decompress4X1_DCtx_wksp_bmi2(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize, 0); -} - - -size_t HUF_decompress4X1_DCtx (HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - U32 workSpace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; - return HUF_decompress4X1_DCtx_wksp(dctx, dst, dstSize, cSrc, cSrcSize, - workSpace, sizeof(workSpace)); -} -size_t HUF_decompress4X1 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - HUF_CREATE_STATIC_DTABLEX1(DTable, HUF_TABLELOG_MAX); - return HUF_decompress4X1_DCtx(DTable, dst, dstSize, cSrc, cSrcSize); -} - -#endif /* HUF_FORCE_DECOMPRESS_X2 */ - - -#ifndef HUF_FORCE_DECOMPRESS_X1 - -/* *************************/ -/* double-symbols decoding */ -/* *************************/ - -typedef struct { U16 sequence; BYTE nbBits; BYTE length; } HUF_DEltX2; /* double-symbols decoding */ -typedef struct { BYTE symbol; BYTE weight; } sortedSymbol_t; -typedef U32 rankValCol_t[HUF_TABLELOG_MAX + 1]; -typedef rankValCol_t rankVal_t[HUF_TABLELOG_MAX]; - - -/* HUF_fillDTableX2Level2() : - * `rankValOrigin` must be a table of at least (HUF_TABLELOG_MAX + 1) U32 */ -static void HUF_fillDTableX2Level2(HUF_DEltX2* DTable, U32 sizeLog, const U32 consumed, - const U32* rankValOrigin, const int minWeight, - const sortedSymbol_t* sortedSymbols, const U32 sortedListSize, - U32 nbBitsBaseline, U16 baseSeq) -{ - HUF_DEltX2 DElt; - U32 rankVal[HUF_TABLELOG_MAX + 1]; - - /* get pre-calculated rankVal */ - memcpy(rankVal, rankValOrigin, sizeof(rankVal)); - - /* fill skipped values */ - if (minWeight>1) { - U32 i, skipSize = rankVal[minWeight]; - MEM_writeLE16(&(DElt.sequence), baseSeq); - DElt.nbBits = (BYTE)(consumed); - DElt.length = 1; - for (i = 0; i < skipSize; i++) - DTable[i] = DElt; - } - - /* fill DTable */ - { U32 s; for (s=0; s= 1 */ - - rankVal[weight] += length; - } } -} - - -static void HUF_fillDTableX2(HUF_DEltX2* DTable, const U32 targetLog, - const sortedSymbol_t* sortedList, const U32 sortedListSize, - const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight, - const U32 nbBitsBaseline) -{ - U32 rankVal[HUF_TABLELOG_MAX + 1]; - const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */ - const U32 minBits = nbBitsBaseline - maxWeight; - U32 s; - - memcpy(rankVal, rankValOrigin, sizeof(rankVal)); - - /* fill DTable */ - for (s=0; s= minBits) { /* enough room for a second symbol */ - U32 sortedRank; - int minWeight = nbBits + scaleLog; - if (minWeight < 1) minWeight = 1; - sortedRank = rankStart[minWeight]; - HUF_fillDTableX2Level2(DTable+start, targetLog-nbBits, nbBits, - rankValOrigin[nbBits], minWeight, - sortedList+sortedRank, sortedListSize-sortedRank, - nbBitsBaseline, symbol); - } else { - HUF_DEltX2 DElt; - MEM_writeLE16(&(DElt.sequence), symbol); - DElt.nbBits = (BYTE)(nbBits); - DElt.length = 1; - { U32 const end = start + length; - U32 u; - for (u = start; u < end; u++) DTable[u] = DElt; - } } - rankVal[weight] += length; - } -} - -size_t HUF_readDTableX2_wksp(HUF_DTable* DTable, - const void* src, size_t srcSize, - void* workSpace, size_t wkspSize) -{ - U32 tableLog, maxW, sizeOfSort, nbSymbols; - DTableDesc dtd = HUF_getDTableDesc(DTable); - U32 const maxTableLog = dtd.maxTableLog; - size_t iSize; - void* dtPtr = DTable+1; /* force compiler to avoid strict-aliasing */ - HUF_DEltX2* const dt = (HUF_DEltX2*)dtPtr; - U32 *rankStart; - - rankValCol_t* rankVal; - U32* rankStats; - U32* rankStart0; - sortedSymbol_t* sortedSymbol; - BYTE* weightList; - size_t spaceUsed32 = 0; - - rankVal = (rankValCol_t *)((U32 *)workSpace + spaceUsed32); - spaceUsed32 += (sizeof(rankValCol_t) * HUF_TABLELOG_MAX) >> 2; - rankStats = (U32 *)workSpace + spaceUsed32; - spaceUsed32 += HUF_TABLELOG_MAX + 1; - rankStart0 = (U32 *)workSpace + spaceUsed32; - spaceUsed32 += HUF_TABLELOG_MAX + 2; - sortedSymbol = (sortedSymbol_t *)workSpace + (spaceUsed32 * sizeof(U32)) / sizeof(sortedSymbol_t); - spaceUsed32 += HUF_ALIGN(sizeof(sortedSymbol_t) * (HUF_SYMBOLVALUE_MAX + 1), sizeof(U32)) >> 2; - weightList = (BYTE *)((U32 *)workSpace + spaceUsed32); - spaceUsed32 += HUF_ALIGN(HUF_SYMBOLVALUE_MAX + 1, sizeof(U32)) >> 2; - - if ((spaceUsed32 << 2) > wkspSize) return ERROR(tableLog_tooLarge); - - rankStart = rankStart0 + 1; - memset(rankStats, 0, sizeof(U32) * (2 * HUF_TABLELOG_MAX + 2 + 1)); - - DEBUG_STATIC_ASSERT(sizeof(HUF_DEltX2) == sizeof(HUF_DTable)); /* if compiler fails here, assertion is wrong */ - if (maxTableLog > HUF_TABLELOG_MAX) return ERROR(tableLog_tooLarge); - /* memset(weightList, 0, sizeof(weightList)); */ /* is not necessary, even though some analyzer complain ... */ - - iSize = HUF_readStats(weightList, HUF_SYMBOLVALUE_MAX + 1, rankStats, &nbSymbols, &tableLog, src, srcSize); - if (HUF_isError(iSize)) return iSize; - - /* check result */ - if (tableLog > maxTableLog) return ERROR(tableLog_tooLarge); /* DTable can't fit code depth */ - - /* find maxWeight */ - for (maxW = tableLog; rankStats[maxW]==0; maxW--) {} /* necessarily finds a solution before 0 */ - - /* Get start index of each weight */ - { U32 w, nextRankStart = 0; - for (w=1; w> consumed; - } } } } - - HUF_fillDTableX2(dt, maxTableLog, - sortedSymbol, sizeOfSort, - rankStart0, rankVal, maxW, - tableLog+1); - - dtd.tableLog = (BYTE)maxTableLog; - dtd.tableType = 1; - memcpy(DTable, &dtd, sizeof(dtd)); - return iSize; -} - -size_t HUF_readDTableX2(HUF_DTable* DTable, const void* src, size_t srcSize) -{ - U32 workSpace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; - return HUF_readDTableX2_wksp(DTable, src, srcSize, - workSpace, sizeof(workSpace)); -} - - -FORCE_INLINE_TEMPLATE U32 -HUF_decodeSymbolX2(void* op, BIT_DStream_t* DStream, const HUF_DEltX2* dt, const U32 dtLog) -{ - size_t const val = BIT_lookBitsFast(DStream, dtLog); /* note : dtLog >= 1 */ - memcpy(op, dt+val, 2); - BIT_skipBits(DStream, dt[val].nbBits); - return dt[val].length; -} - -FORCE_INLINE_TEMPLATE U32 -HUF_decodeLastSymbolX2(void* op, BIT_DStream_t* DStream, const HUF_DEltX2* dt, const U32 dtLog) -{ - size_t const val = BIT_lookBitsFast(DStream, dtLog); /* note : dtLog >= 1 */ - memcpy(op, dt+val, 1); - if (dt[val].length==1) BIT_skipBits(DStream, dt[val].nbBits); - else { - if (DStream->bitsConsumed < (sizeof(DStream->bitContainer)*8)) { - BIT_skipBits(DStream, dt[val].nbBits); - if (DStream->bitsConsumed > (sizeof(DStream->bitContainer)*8)) - /* ugly hack; works only because it's the last symbol. Note : can't easily extract nbBits from just this symbol */ - DStream->bitsConsumed = (sizeof(DStream->bitContainer)*8); - } } - return 1; -} - -#define HUF_DECODE_SYMBOLX2_0(ptr, DStreamPtr) \ - ptr += HUF_decodeSymbolX2(ptr, DStreamPtr, dt, dtLog) - -#define HUF_DECODE_SYMBOLX2_1(ptr, DStreamPtr) \ - if (MEM_64bits() || (HUF_TABLELOG_MAX<=12)) \ - ptr += HUF_decodeSymbolX2(ptr, DStreamPtr, dt, dtLog) - -#define HUF_DECODE_SYMBOLX2_2(ptr, DStreamPtr) \ - if (MEM_64bits()) \ - ptr += HUF_decodeSymbolX2(ptr, DStreamPtr, dt, dtLog) - -HINT_INLINE size_t -HUF_decodeStreamX2(BYTE* p, BIT_DStream_t* bitDPtr, BYTE* const pEnd, - const HUF_DEltX2* const dt, const U32 dtLog) -{ - BYTE* const pStart = p; - - /* up to 8 symbols at a time */ - while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) & (p < pEnd-(sizeof(bitDPtr->bitContainer)-1))) { - HUF_DECODE_SYMBOLX2_2(p, bitDPtr); - HUF_DECODE_SYMBOLX2_1(p, bitDPtr); - HUF_DECODE_SYMBOLX2_2(p, bitDPtr); - HUF_DECODE_SYMBOLX2_0(p, bitDPtr); - } - - /* closer to end : up to 2 symbols at a time */ - while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) & (p <= pEnd-2)) - HUF_DECODE_SYMBOLX2_0(p, bitDPtr); - - while (p <= pEnd-2) - HUF_DECODE_SYMBOLX2_0(p, bitDPtr); /* no need to reload : reached the end of DStream */ - - if (p < pEnd) - p += HUF_decodeLastSymbolX2(p, bitDPtr, dt, dtLog); - - return p-pStart; -} - -FORCE_INLINE_TEMPLATE size_t -HUF_decompress1X2_usingDTable_internal_body( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - BIT_DStream_t bitD; - - /* Init */ - CHECK_F( BIT_initDStream(&bitD, cSrc, cSrcSize) ); - - /* decode */ - { BYTE* const ostart = (BYTE*) dst; - BYTE* const oend = ostart + dstSize; - const void* const dtPtr = DTable+1; /* force compiler to not use strict-aliasing */ - const HUF_DEltX2* const dt = (const HUF_DEltX2*)dtPtr; - DTableDesc const dtd = HUF_getDTableDesc(DTable); - HUF_decodeStreamX2(ostart, &bitD, oend, dt, dtd.tableLog); - } - - /* check */ - if (!BIT_endOfDStream(&bitD)) return ERROR(corruption_detected); - - /* decoded size */ - return dstSize; -} - -FORCE_INLINE_TEMPLATE size_t -HUF_decompress4X2_usingDTable_internal_body( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - if (cSrcSize < 10) return ERROR(corruption_detected); /* strict minimum : jump table + 1 byte per stream */ - - { const BYTE* const istart = (const BYTE*) cSrc; - BYTE* const ostart = (BYTE*) dst; - BYTE* const oend = ostart + dstSize; - BYTE* const olimit = oend - (sizeof(size_t)-1); - const void* const dtPtr = DTable+1; - const HUF_DEltX2* const dt = (const HUF_DEltX2*)dtPtr; - - /* Init */ - BIT_DStream_t bitD1; - BIT_DStream_t bitD2; - BIT_DStream_t bitD3; - BIT_DStream_t bitD4; - size_t const length1 = MEM_readLE16(istart); - size_t const length2 = MEM_readLE16(istart+2); - size_t const length3 = MEM_readLE16(istart+4); - size_t const length4 = cSrcSize - (length1 + length2 + length3 + 6); - const BYTE* const istart1 = istart + 6; /* jumpTable */ - const BYTE* const istart2 = istart1 + length1; - const BYTE* const istart3 = istart2 + length2; - const BYTE* const istart4 = istart3 + length3; - size_t const segmentSize = (dstSize+3) / 4; - BYTE* const opStart2 = ostart + segmentSize; - BYTE* const opStart3 = opStart2 + segmentSize; - BYTE* const opStart4 = opStart3 + segmentSize; - BYTE* op1 = ostart; - BYTE* op2 = opStart2; - BYTE* op3 = opStart3; - BYTE* op4 = opStart4; - U32 endSignal = 1; - DTableDesc const dtd = HUF_getDTableDesc(DTable); - U32 const dtLog = dtd.tableLog; - - if (length4 > cSrcSize) return ERROR(corruption_detected); /* overflow */ - CHECK_F( BIT_initDStream(&bitD1, istart1, length1) ); - CHECK_F( BIT_initDStream(&bitD2, istart2, length2) ); - CHECK_F( BIT_initDStream(&bitD3, istart3, length3) ); - CHECK_F( BIT_initDStream(&bitD4, istart4, length4) ); - - /* 16-32 symbols per loop (4-8 symbols per stream) */ - for ( ; (endSignal) & (op4 < olimit); ) { -#if defined(__clang__) && (defined(__x86_64__) || defined(__i386__)) - HUF_DECODE_SYMBOLX2_2(op1, &bitD1); - HUF_DECODE_SYMBOLX2_1(op1, &bitD1); - HUF_DECODE_SYMBOLX2_2(op1, &bitD1); - HUF_DECODE_SYMBOLX2_0(op1, &bitD1); - HUF_DECODE_SYMBOLX2_2(op2, &bitD2); - HUF_DECODE_SYMBOLX2_1(op2, &bitD2); - HUF_DECODE_SYMBOLX2_2(op2, &bitD2); - HUF_DECODE_SYMBOLX2_0(op2, &bitD2); - endSignal &= BIT_reloadDStreamFast(&bitD1) == BIT_DStream_unfinished; - endSignal &= BIT_reloadDStreamFast(&bitD2) == BIT_DStream_unfinished; - HUF_DECODE_SYMBOLX2_2(op3, &bitD3); - HUF_DECODE_SYMBOLX2_1(op3, &bitD3); - HUF_DECODE_SYMBOLX2_2(op3, &bitD3); - HUF_DECODE_SYMBOLX2_0(op3, &bitD3); - HUF_DECODE_SYMBOLX2_2(op4, &bitD4); - HUF_DECODE_SYMBOLX2_1(op4, &bitD4); - HUF_DECODE_SYMBOLX2_2(op4, &bitD4); - HUF_DECODE_SYMBOLX2_0(op4, &bitD4); - endSignal &= BIT_reloadDStreamFast(&bitD3) == BIT_DStream_unfinished; - endSignal &= BIT_reloadDStreamFast(&bitD4) == BIT_DStream_unfinished; -#else - HUF_DECODE_SYMBOLX2_2(op1, &bitD1); - HUF_DECODE_SYMBOLX2_2(op2, &bitD2); - HUF_DECODE_SYMBOLX2_2(op3, &bitD3); - HUF_DECODE_SYMBOLX2_2(op4, &bitD4); - HUF_DECODE_SYMBOLX2_1(op1, &bitD1); - HUF_DECODE_SYMBOLX2_1(op2, &bitD2); - HUF_DECODE_SYMBOLX2_1(op3, &bitD3); - HUF_DECODE_SYMBOLX2_1(op4, &bitD4); - HUF_DECODE_SYMBOLX2_2(op1, &bitD1); - HUF_DECODE_SYMBOLX2_2(op2, &bitD2); - HUF_DECODE_SYMBOLX2_2(op3, &bitD3); - HUF_DECODE_SYMBOLX2_2(op4, &bitD4); - HUF_DECODE_SYMBOLX2_0(op1, &bitD1); - HUF_DECODE_SYMBOLX2_0(op2, &bitD2); - HUF_DECODE_SYMBOLX2_0(op3, &bitD3); - HUF_DECODE_SYMBOLX2_0(op4, &bitD4); - endSignal = (U32)LIKELY( - (BIT_reloadDStreamFast(&bitD1) == BIT_DStream_unfinished) - & (BIT_reloadDStreamFast(&bitD2) == BIT_DStream_unfinished) - & (BIT_reloadDStreamFast(&bitD3) == BIT_DStream_unfinished) - & (BIT_reloadDStreamFast(&bitD4) == BIT_DStream_unfinished)); -#endif - } - - /* check corruption */ - if (op1 > opStart2) return ERROR(corruption_detected); - if (op2 > opStart3) return ERROR(corruption_detected); - if (op3 > opStart4) return ERROR(corruption_detected); - /* note : op4 already verified within main loop */ - - /* finish bitStreams one by one */ - HUF_decodeStreamX2(op1, &bitD1, opStart2, dt, dtLog); - HUF_decodeStreamX2(op2, &bitD2, opStart3, dt, dtLog); - HUF_decodeStreamX2(op3, &bitD3, opStart4, dt, dtLog); - HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); - - /* check */ - { U32 const endCheck = BIT_endOfDStream(&bitD1) & BIT_endOfDStream(&bitD2) & BIT_endOfDStream(&bitD3) & BIT_endOfDStream(&bitD4); - if (!endCheck) return ERROR(corruption_detected); } - - /* decoded size */ - return dstSize; - } -} - -HUF_DGEN(HUF_decompress1X2_usingDTable_internal) -HUF_DGEN(HUF_decompress4X2_usingDTable_internal) - -size_t HUF_decompress1X2_usingDTable( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - DTableDesc dtd = HUF_getDTableDesc(DTable); - if (dtd.tableType != 1) return ERROR(GENERIC); - return HUF_decompress1X2_usingDTable_internal(dst, dstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -} - -size_t HUF_decompress1X2_DCtx_wksp(HUF_DTable* DCtx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - void* workSpace, size_t wkspSize) -{ - const BYTE* ip = (const BYTE*) cSrc; - - size_t const hSize = HUF_readDTableX2_wksp(DCtx, cSrc, cSrcSize, - workSpace, wkspSize); - if (HUF_isError(hSize)) return hSize; - if (hSize >= cSrcSize) return ERROR(srcSize_wrong); - ip += hSize; cSrcSize -= hSize; - - return HUF_decompress1X2_usingDTable_internal(dst, dstSize, ip, cSrcSize, DCtx, /* bmi2 */ 0); -} - - -size_t HUF_decompress1X2_DCtx(HUF_DTable* DCtx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize) -{ - U32 workSpace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; - return HUF_decompress1X2_DCtx_wksp(DCtx, dst, dstSize, cSrc, cSrcSize, - workSpace, sizeof(workSpace)); -} - -size_t HUF_decompress1X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - HUF_CREATE_STATIC_DTABLEX2(DTable, HUF_TABLELOG_MAX); - return HUF_decompress1X2_DCtx(DTable, dst, dstSize, cSrc, cSrcSize); -} - -size_t HUF_decompress4X2_usingDTable( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - DTableDesc dtd = HUF_getDTableDesc(DTable); - if (dtd.tableType != 1) return ERROR(GENERIC); - return HUF_decompress4X2_usingDTable_internal(dst, dstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -} - -static size_t HUF_decompress4X2_DCtx_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - void* workSpace, size_t wkspSize, int bmi2) -{ - const BYTE* ip = (const BYTE*) cSrc; - - size_t hSize = HUF_readDTableX2_wksp(dctx, cSrc, cSrcSize, - workSpace, wkspSize); - if (HUF_isError(hSize)) return hSize; - if (hSize >= cSrcSize) return ERROR(srcSize_wrong); - ip += hSize; cSrcSize -= hSize; - - return HUF_decompress4X2_usingDTable_internal(dst, dstSize, ip, cSrcSize, dctx, bmi2); -} - -size_t HUF_decompress4X2_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - void* workSpace, size_t wkspSize) -{ - return HUF_decompress4X2_DCtx_wksp_bmi2(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize, /* bmi2 */ 0); -} - - -size_t HUF_decompress4X2_DCtx(HUF_DTable* dctx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize) -{ - U32 workSpace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; - return HUF_decompress4X2_DCtx_wksp(dctx, dst, dstSize, cSrc, cSrcSize, - workSpace, sizeof(workSpace)); -} - -size_t HUF_decompress4X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - HUF_CREATE_STATIC_DTABLEX2(DTable, HUF_TABLELOG_MAX); - return HUF_decompress4X2_DCtx(DTable, dst, dstSize, cSrc, cSrcSize); -} - -#endif /* HUF_FORCE_DECOMPRESS_X1 */ - - -/* ***********************************/ -/* Universal decompression selectors */ -/* ***********************************/ - -size_t HUF_decompress1X_usingDTable(void* dst, size_t maxDstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - DTableDesc const dtd = HUF_getDTableDesc(DTable); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)dtd; - assert(dtd.tableType == 0); - return HUF_decompress1X1_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)dtd; - assert(dtd.tableType == 1); - return HUF_decompress1X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -#else - return dtd.tableType ? HUF_decompress1X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0) : - HUF_decompress1X1_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -#endif -} - -size_t HUF_decompress4X_usingDTable(void* dst, size_t maxDstSize, - const void* cSrc, size_t cSrcSize, - const HUF_DTable* DTable) -{ - DTableDesc const dtd = HUF_getDTableDesc(DTable); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)dtd; - assert(dtd.tableType == 0); - return HUF_decompress4X1_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)dtd; - assert(dtd.tableType == 1); - return HUF_decompress4X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -#else - return dtd.tableType ? HUF_decompress4X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0) : - HUF_decompress4X1_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, /* bmi2 */ 0); -#endif -} - - -#if !defined(HUF_FORCE_DECOMPRESS_X1) && !defined(HUF_FORCE_DECOMPRESS_X2) -typedef struct { U32 tableTime; U32 decode256Time; } algo_time_t; -static const algo_time_t algoTime[16 /* Quantization */][3 /* single, double, quad */] = -{ - /* single, double, quad */ - {{0,0}, {1,1}, {2,2}}, /* Q==0 : impossible */ - {{0,0}, {1,1}, {2,2}}, /* Q==1 : impossible */ - {{ 38,130}, {1313, 74}, {2151, 38}}, /* Q == 2 : 12-18% */ - {{ 448,128}, {1353, 74}, {2238, 41}}, /* Q == 3 : 18-25% */ - {{ 556,128}, {1353, 74}, {2238, 47}}, /* Q == 4 : 25-32% */ - {{ 714,128}, {1418, 74}, {2436, 53}}, /* Q == 5 : 32-38% */ - {{ 883,128}, {1437, 74}, {2464, 61}}, /* Q == 6 : 38-44% */ - {{ 897,128}, {1515, 75}, {2622, 68}}, /* Q == 7 : 44-50% */ - {{ 926,128}, {1613, 75}, {2730, 75}}, /* Q == 8 : 50-56% */ - {{ 947,128}, {1729, 77}, {3359, 77}}, /* Q == 9 : 56-62% */ - {{1107,128}, {2083, 81}, {4006, 84}}, /* Q ==10 : 62-69% */ - {{1177,128}, {2379, 87}, {4785, 88}}, /* Q ==11 : 69-75% */ - {{1242,128}, {2415, 93}, {5155, 84}}, /* Q ==12 : 75-81% */ - {{1349,128}, {2644,106}, {5260,106}}, /* Q ==13 : 81-87% */ - {{1455,128}, {2422,124}, {4174,124}}, /* Q ==14 : 87-93% */ - {{ 722,128}, {1891,145}, {1936,146}}, /* Q ==15 : 93-99% */ -}; -#endif - -/** HUF_selectDecoder() : - * Tells which decoder is likely to decode faster, - * based on a set of pre-computed metrics. - * @return : 0==HUF_decompress4X1, 1==HUF_decompress4X2 . - * Assumption : 0 < dstSize <= 128 KB */ -U32 HUF_selectDecoder (size_t dstSize, size_t cSrcSize) -{ - assert(dstSize > 0); - assert(dstSize <= 128*1024); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)dstSize; - (void)cSrcSize; - return 0; -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)dstSize; - (void)cSrcSize; - return 1; -#else - /* decoder timing evaluation */ - { U32 const Q = (cSrcSize >= dstSize) ? 15 : (U32)(cSrcSize * 16 / dstSize); /* Q < 16 */ - U32 const D256 = (U32)(dstSize >> 8); - U32 const DTime0 = algoTime[Q][0].tableTime + (algoTime[Q][0].decode256Time * D256); - U32 DTime1 = algoTime[Q][1].tableTime + (algoTime[Q][1].decode256Time * D256); - DTime1 += DTime1 >> 3; /* advantage to algorithm using less memory, to reduce cache eviction */ - return DTime1 < DTime0; - } -#endif -} - - -typedef size_t (*decompressionAlgo)(void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize); - -size_t HUF_decompress (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ -#if !defined(HUF_FORCE_DECOMPRESS_X1) && !defined(HUF_FORCE_DECOMPRESS_X2) - static const decompressionAlgo decompress[2] = { HUF_decompress4X1, HUF_decompress4X2 }; -#endif - - /* validation checks */ - if (dstSize == 0) return ERROR(dstSize_tooSmall); - if (cSrcSize > dstSize) return ERROR(corruption_detected); /* invalid */ - if (cSrcSize == dstSize) { memcpy(dst, cSrc, dstSize); return dstSize; } /* not compressed */ - if (cSrcSize == 1) { memset(dst, *(const BYTE*)cSrc, dstSize); return dstSize; } /* RLE */ - - { U32 const algoNb = HUF_selectDecoder(dstSize, cSrcSize); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)algoNb; - assert(algoNb == 0); - return HUF_decompress4X1(dst, dstSize, cSrc, cSrcSize); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)algoNb; - assert(algoNb == 1); - return HUF_decompress4X2(dst, dstSize, cSrc, cSrcSize); -#else - return decompress[algoNb](dst, dstSize, cSrc, cSrcSize); -#endif - } -} - -size_t HUF_decompress4X_DCtx (HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - /* validation checks */ - if (dstSize == 0) return ERROR(dstSize_tooSmall); - if (cSrcSize > dstSize) return ERROR(corruption_detected); /* invalid */ - if (cSrcSize == dstSize) { memcpy(dst, cSrc, dstSize); return dstSize; } /* not compressed */ - if (cSrcSize == 1) { memset(dst, *(const BYTE*)cSrc, dstSize); return dstSize; } /* RLE */ - - { U32 const algoNb = HUF_selectDecoder(dstSize, cSrcSize); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)algoNb; - assert(algoNb == 0); - return HUF_decompress4X1_DCtx(dctx, dst, dstSize, cSrc, cSrcSize); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)algoNb; - assert(algoNb == 1); - return HUF_decompress4X2_DCtx(dctx, dst, dstSize, cSrc, cSrcSize); -#else - return algoNb ? HUF_decompress4X2_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) : - HUF_decompress4X1_DCtx(dctx, dst, dstSize, cSrc, cSrcSize) ; -#endif - } -} - -size_t HUF_decompress4X_hufOnly(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - U32 workSpace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; - return HUF_decompress4X_hufOnly_wksp(dctx, dst, dstSize, cSrc, cSrcSize, - workSpace, sizeof(workSpace)); -} - - -size_t HUF_decompress4X_hufOnly_wksp(HUF_DTable* dctx, void* dst, - size_t dstSize, const void* cSrc, - size_t cSrcSize, void* workSpace, - size_t wkspSize) -{ - /* validation checks */ - if (dstSize == 0) return ERROR(dstSize_tooSmall); - if (cSrcSize == 0) return ERROR(corruption_detected); - - { U32 const algoNb = HUF_selectDecoder(dstSize, cSrcSize); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)algoNb; - assert(algoNb == 0); - return HUF_decompress4X1_DCtx_wksp(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)algoNb; - assert(algoNb == 1); - return HUF_decompress4X2_DCtx_wksp(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize); -#else - return algoNb ? HUF_decompress4X2_DCtx_wksp(dctx, dst, dstSize, cSrc, - cSrcSize, workSpace, wkspSize): - HUF_decompress4X1_DCtx_wksp(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize); -#endif - } -} - -size_t HUF_decompress1X_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - void* workSpace, size_t wkspSize) -{ - /* validation checks */ - if (dstSize == 0) return ERROR(dstSize_tooSmall); - if (cSrcSize > dstSize) return ERROR(corruption_detected); /* invalid */ - if (cSrcSize == dstSize) { memcpy(dst, cSrc, dstSize); return dstSize; } /* not compressed */ - if (cSrcSize == 1) { memset(dst, *(const BYTE*)cSrc, dstSize); return dstSize; } /* RLE */ - - { U32 const algoNb = HUF_selectDecoder(dstSize, cSrcSize); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)algoNb; - assert(algoNb == 0); - return HUF_decompress1X1_DCtx_wksp(dctx, dst, dstSize, cSrc, - cSrcSize, workSpace, wkspSize); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)algoNb; - assert(algoNb == 1); - return HUF_decompress1X2_DCtx_wksp(dctx, dst, dstSize, cSrc, - cSrcSize, workSpace, wkspSize); -#else - return algoNb ? HUF_decompress1X2_DCtx_wksp(dctx, dst, dstSize, cSrc, - cSrcSize, workSpace, wkspSize): - HUF_decompress1X1_DCtx_wksp(dctx, dst, dstSize, cSrc, - cSrcSize, workSpace, wkspSize); -#endif - } -} - -size_t HUF_decompress1X_DCtx(HUF_DTable* dctx, void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize) -{ - U32 workSpace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; - return HUF_decompress1X_DCtx_wksp(dctx, dst, dstSize, cSrc, cSrcSize, - workSpace, sizeof(workSpace)); -} - - -size_t HUF_decompress1X_usingDTable_bmi2(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable, int bmi2) -{ - DTableDesc const dtd = HUF_getDTableDesc(DTable); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)dtd; - assert(dtd.tableType == 0); - return HUF_decompress1X1_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, bmi2); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)dtd; - assert(dtd.tableType == 1); - return HUF_decompress1X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, bmi2); -#else - return dtd.tableType ? HUF_decompress1X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, bmi2) : - HUF_decompress1X1_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, bmi2); -#endif -} - -#ifndef HUF_FORCE_DECOMPRESS_X2 -size_t HUF_decompress1X1_DCtx_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize, int bmi2) -{ - const BYTE* ip = (const BYTE*) cSrc; - - size_t const hSize = HUF_readDTableX1_wksp(dctx, cSrc, cSrcSize, workSpace, wkspSize); - if (HUF_isError(hSize)) return hSize; - if (hSize >= cSrcSize) return ERROR(srcSize_wrong); - ip += hSize; cSrcSize -= hSize; - - return HUF_decompress1X1_usingDTable_internal(dst, dstSize, ip, cSrcSize, dctx, bmi2); -} -#endif - -size_t HUF_decompress4X_usingDTable_bmi2(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable, int bmi2) -{ - DTableDesc const dtd = HUF_getDTableDesc(DTable); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)dtd; - assert(dtd.tableType == 0); - return HUF_decompress4X1_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, bmi2); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)dtd; - assert(dtd.tableType == 1); - return HUF_decompress4X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, bmi2); -#else - return dtd.tableType ? HUF_decompress4X2_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, bmi2) : - HUF_decompress4X1_usingDTable_internal(dst, maxDstSize, cSrc, cSrcSize, DTable, bmi2); -#endif -} - -size_t HUF_decompress4X_hufOnly_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize, int bmi2) -{ - /* validation checks */ - if (dstSize == 0) return ERROR(dstSize_tooSmall); - if (cSrcSize == 0) return ERROR(corruption_detected); - - { U32 const algoNb = HUF_selectDecoder(dstSize, cSrcSize); -#if defined(HUF_FORCE_DECOMPRESS_X1) - (void)algoNb; - assert(algoNb == 0); - return HUF_decompress4X1_DCtx_wksp_bmi2(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize, bmi2); -#elif defined(HUF_FORCE_DECOMPRESS_X2) - (void)algoNb; - assert(algoNb == 1); - return HUF_decompress4X2_DCtx_wksp_bmi2(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize, bmi2); -#else - return algoNb ? HUF_decompress4X2_DCtx_wksp_bmi2(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize, bmi2) : - HUF_decompress4X1_DCtx_wksp_bmi2(dctx, dst, dstSize, cSrc, cSrcSize, workSpace, wkspSize, bmi2); -#endif - } -} diff --git a/lib/SZ3/tools/zstd/decompress/zstd_ddict.c b/lib/SZ3/tools/zstd/decompress/zstd_ddict.c deleted file mode 100644 index c8cb8ecc..00000000 --- a/lib/SZ3/tools/zstd/decompress/zstd_ddict.c +++ /dev/null @@ -1,244 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/* zstd_ddict.c : - * concentrates all logic that needs to know the internals of ZSTD_DDict object */ - -/*-******************************************************* -* Dependencies -*********************************************************/ -#include /* memcpy, memmove, memset */ -#include "../common/cpu.h" /* bmi2 */ -#include "../common/mem.h" /* low level memory routines */ -#define FSE_STATIC_LINKING_ONLY -#include "../common/fse.h" -#define HUF_STATIC_LINKING_ONLY -#include "../common/huf.h" -#include "zstd_decompress_internal.h" -#include "zstd_ddict.h" - -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1) -# include "../legacy/zstd_legacy.h" -#endif - - - -/*-******************************************************* -* Types -*********************************************************/ -struct ZSTD_DDict_s { - void* dictBuffer; - const void* dictContent; - size_t dictSize; - ZSTD_entropyDTables_t entropy; - U32 dictID; - U32 entropyPresent; - ZSTD_customMem cMem; -}; /* typedef'd to ZSTD_DDict within "zstd.h" */ - -const void* ZSTD_DDict_dictContent(const ZSTD_DDict* ddict) -{ - assert(ddict != NULL); - return ddict->dictContent; -} - -size_t ZSTD_DDict_dictSize(const ZSTD_DDict* ddict) -{ - assert(ddict != NULL); - return ddict->dictSize; -} - -void ZSTD_copyDDictParameters(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict) -{ - DEBUGLOG(4, "ZSTD_copyDDictParameters"); - assert(dctx != NULL); - assert(ddict != NULL); - dctx->dictID = ddict->dictID; - dctx->prefixStart = ddict->dictContent; - dctx->virtualStart = ddict->dictContent; - dctx->dictEnd = (const BYTE*)ddict->dictContent + ddict->dictSize; - dctx->previousDstEnd = dctx->dictEnd; -#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION - dctx->dictContentBeginForFuzzing = dctx->prefixStart; - dctx->dictContentEndForFuzzing = dctx->previousDstEnd; -#endif - if (ddict->entropyPresent) { - dctx->litEntropy = 1; - dctx->fseEntropy = 1; - dctx->LLTptr = ddict->entropy.LLTable; - dctx->MLTptr = ddict->entropy.MLTable; - dctx->OFTptr = ddict->entropy.OFTable; - dctx->HUFptr = ddict->entropy.hufTable; - dctx->entropy.rep[0] = ddict->entropy.rep[0]; - dctx->entropy.rep[1] = ddict->entropy.rep[1]; - dctx->entropy.rep[2] = ddict->entropy.rep[2]; - } else { - dctx->litEntropy = 0; - dctx->fseEntropy = 0; - } -} - - -static size_t -ZSTD_loadEntropy_intoDDict(ZSTD_DDict* ddict, - ZSTD_dictContentType_e dictContentType) -{ - ddict->dictID = 0; - ddict->entropyPresent = 0; - if (dictContentType == ZSTD_dct_rawContent) return 0; - - if (ddict->dictSize < 8) { - if (dictContentType == ZSTD_dct_fullDict) - return ERROR(dictionary_corrupted); /* only accept specified dictionaries */ - return 0; /* pure content mode */ - } - { U32 const magic = MEM_readLE32(ddict->dictContent); - if (magic != ZSTD_MAGIC_DICTIONARY) { - if (dictContentType == ZSTD_dct_fullDict) - return ERROR(dictionary_corrupted); /* only accept specified dictionaries */ - return 0; /* pure content mode */ - } - } - ddict->dictID = MEM_readLE32((const char*)ddict->dictContent + ZSTD_FRAMEIDSIZE); - - /* load entropy tables */ - RETURN_ERROR_IF(ZSTD_isError(ZSTD_loadDEntropy( - &ddict->entropy, ddict->dictContent, ddict->dictSize)), - dictionary_corrupted, ""); - ddict->entropyPresent = 1; - return 0; -} - - -static size_t ZSTD_initDDict_internal(ZSTD_DDict* ddict, - const void* dict, size_t dictSize, - ZSTD_dictLoadMethod_e dictLoadMethod, - ZSTD_dictContentType_e dictContentType) -{ - if ((dictLoadMethod == ZSTD_dlm_byRef) || (!dict) || (!dictSize)) { - ddict->dictBuffer = NULL; - ddict->dictContent = dict; - if (!dict) dictSize = 0; - } else { - void* const internalBuffer = ZSTD_malloc(dictSize, ddict->cMem); - ddict->dictBuffer = internalBuffer; - ddict->dictContent = internalBuffer; - if (!internalBuffer) return ERROR(memory_allocation); - memcpy(internalBuffer, dict, dictSize); - } - ddict->dictSize = dictSize; - ddict->entropy.hufTable[0] = (HUF_DTable)((HufLog)*0x1000001); /* cover both little and big endian */ - - /* parse dictionary content */ - FORWARD_IF_ERROR( ZSTD_loadEntropy_intoDDict(ddict, dictContentType) , ""); - - return 0; -} - -ZSTD_DDict* ZSTD_createDDict_advanced(const void* dict, size_t dictSize, - ZSTD_dictLoadMethod_e dictLoadMethod, - ZSTD_dictContentType_e dictContentType, - ZSTD_customMem customMem) -{ - if (!customMem.customAlloc ^ !customMem.customFree) return NULL; - - { ZSTD_DDict* const ddict = (ZSTD_DDict*) ZSTD_malloc(sizeof(ZSTD_DDict), customMem); - if (ddict == NULL) return NULL; - ddict->cMem = customMem; - { size_t const initResult = ZSTD_initDDict_internal(ddict, - dict, dictSize, - dictLoadMethod, dictContentType); - if (ZSTD_isError(initResult)) { - ZSTD_freeDDict(ddict); - return NULL; - } } - return ddict; - } -} - -/*! ZSTD_createDDict() : -* Create a digested dictionary, to start decompression without startup delay. -* `dict` content is copied inside DDict. -* Consequently, `dict` can be released after `ZSTD_DDict` creation */ -ZSTD_DDict* ZSTD_createDDict(const void* dict, size_t dictSize) -{ - ZSTD_customMem const allocator = { NULL, NULL, NULL }; - return ZSTD_createDDict_advanced(dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto, allocator); -} - -/*! ZSTD_createDDict_byReference() : - * Create a digested dictionary, to start decompression without startup delay. - * Dictionary content is simply referenced, it will be accessed during decompression. - * Warning : dictBuffer must outlive DDict (DDict must be freed before dictBuffer) */ -ZSTD_DDict* ZSTD_createDDict_byReference(const void* dictBuffer, size_t dictSize) -{ - ZSTD_customMem const allocator = { NULL, NULL, NULL }; - return ZSTD_createDDict_advanced(dictBuffer, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto, allocator); -} - - -const ZSTD_DDict* ZSTD_initStaticDDict( - void* sBuffer, size_t sBufferSize, - const void* dict, size_t dictSize, - ZSTD_dictLoadMethod_e dictLoadMethod, - ZSTD_dictContentType_e dictContentType) -{ - size_t const neededSpace = sizeof(ZSTD_DDict) - + (dictLoadMethod == ZSTD_dlm_byRef ? 0 : dictSize); - ZSTD_DDict* const ddict = (ZSTD_DDict*)sBuffer; - assert(sBuffer != NULL); - assert(dict != NULL); - if ((size_t)sBuffer & 7) return NULL; /* 8-aligned */ - if (sBufferSize < neededSpace) return NULL; - if (dictLoadMethod == ZSTD_dlm_byCopy) { - memcpy(ddict+1, dict, dictSize); /* local copy */ - dict = ddict+1; - } - if (ZSTD_isError( ZSTD_initDDict_internal(ddict, - dict, dictSize, - ZSTD_dlm_byRef, dictContentType) )) - return NULL; - return ddict; -} - - -size_t ZSTD_freeDDict(ZSTD_DDict* ddict) -{ - if (ddict==NULL) return 0; /* support free on NULL */ - { ZSTD_customMem const cMem = ddict->cMem; - ZSTD_free(ddict->dictBuffer, cMem); - ZSTD_free(ddict, cMem); - return 0; - } -} - -/*! ZSTD_estimateDDictSize() : - * Estimate amount of memory that will be needed to create a dictionary for decompression. - * Note : dictionary created by reference using ZSTD_dlm_byRef are smaller */ -size_t ZSTD_estimateDDictSize(size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod) -{ - return sizeof(ZSTD_DDict) + (dictLoadMethod == ZSTD_dlm_byRef ? 0 : dictSize); -} - -size_t ZSTD_sizeof_DDict(const ZSTD_DDict* ddict) -{ - if (ddict==NULL) return 0; /* support sizeof on NULL */ - return sizeof(*ddict) + (ddict->dictBuffer ? ddict->dictSize : 0) ; -} - -/*! ZSTD_getDictID_fromDDict() : - * Provides the dictID of the dictionary loaded into `ddict`. - * If @return == 0, the dictionary is not conformant to Zstandard specification, or empty. - * Non-conformant dictionaries can still be loaded, but as content-only dictionaries. */ -unsigned ZSTD_getDictID_fromDDict(const ZSTD_DDict* ddict) -{ - if (ddict==NULL) return 0; - return ZSTD_getDictID_fromDict(ddict->dictContent, ddict->dictSize); -} diff --git a/lib/SZ3/tools/zstd/decompress/zstd_ddict.h b/lib/SZ3/tools/zstd/decompress/zstd_ddict.h deleted file mode 100644 index af307efd..00000000 --- a/lib/SZ3/tools/zstd/decompress/zstd_ddict.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -#ifndef ZSTD_DDICT_H -#define ZSTD_DDICT_H - -/*-******************************************************* - * Dependencies - *********************************************************/ -#include /* size_t */ -#include "../zstd.h" /* ZSTD_DDict, and several public functions */ - - -/*-******************************************************* - * Interface - *********************************************************/ - -/* note: several prototypes are already published in `zstd.h` : - * ZSTD_createDDict() - * ZSTD_createDDict_byReference() - * ZSTD_createDDict_advanced() - * ZSTD_freeDDict() - * ZSTD_initStaticDDict() - * ZSTD_sizeof_DDict() - * ZSTD_estimateDDictSize() - * ZSTD_getDictID_fromDict() - */ - -const void* ZSTD_DDict_dictContent(const ZSTD_DDict* ddict); -size_t ZSTD_DDict_dictSize(const ZSTD_DDict* ddict); - -void ZSTD_copyDDictParameters(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict); - - - -#endif /* ZSTD_DDICT_H */ diff --git a/lib/SZ3/tools/zstd/decompress/zstd_decompress.c b/lib/SZ3/tools/zstd/decompress/zstd_decompress.c deleted file mode 100644 index be5c7cfc..00000000 --- a/lib/SZ3/tools/zstd/decompress/zstd_decompress.c +++ /dev/null @@ -1,1885 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -/* *************************************************************** -* Tuning parameters -*****************************************************************/ -/*! - * HEAPMODE : - * Select how default decompression function ZSTD_decompress() allocates its context, - * on stack (0), or into heap (1, default; requires malloc()). - * Note that functions with explicit context such as ZSTD_decompressDCtx() are unaffected. - */ -#ifndef ZSTD_HEAPMODE -# define ZSTD_HEAPMODE 1 -#endif - -/*! -* LEGACY_SUPPORT : -* if set to 1+, ZSTD_decompress() can decode older formats (v0.1+) -*/ -#ifndef ZSTD_LEGACY_SUPPORT -# define ZSTD_LEGACY_SUPPORT 0 -#endif - -/*! - * MAXWINDOWSIZE_DEFAULT : - * maximum window size accepted by DStream __by default__. - * Frames requiring more memory will be rejected. - * It's possible to set a different limit using ZSTD_DCtx_setMaxWindowSize(). - */ -#ifndef ZSTD_MAXWINDOWSIZE_DEFAULT -# define ZSTD_MAXWINDOWSIZE_DEFAULT (((U32)1 << ZSTD_WINDOWLOG_LIMIT_DEFAULT) + 1) -#endif - -/*! - * NO_FORWARD_PROGRESS_MAX : - * maximum allowed nb of calls to ZSTD_decompressStream() - * without any forward progress - * (defined as: no byte read from input, and no byte flushed to output) - * before triggering an error. - */ -#ifndef ZSTD_NO_FORWARD_PROGRESS_MAX -# define ZSTD_NO_FORWARD_PROGRESS_MAX 16 -#endif - - -/*-******************************************************* -* Dependencies -*********************************************************/ -#include /* memcpy, memmove, memset */ -#include "../common/cpu.h" /* bmi2 */ -#include "../common/mem.h" /* low level memory routines */ -#define FSE_STATIC_LINKING_ONLY -#include "../common/fse.h" -#define HUF_STATIC_LINKING_ONLY -#include "../common/huf.h" -#include "../common/zstd_internal.h" /* blockProperties_t */ -#include "zstd_decompress_internal.h" /* ZSTD_DCtx */ -#include "zstd_ddict.h" /* ZSTD_DDictDictContent */ -#include "zstd_decompress_block.h" /* ZSTD_decompressBlock_internal */ - -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1) -# include "../legacy/zstd_legacy.h" -#endif - - -/*-************************************************************* -* Context management -***************************************************************/ -size_t ZSTD_sizeof_DCtx (const ZSTD_DCtx* dctx) -{ - if (dctx==NULL) return 0; /* support sizeof NULL */ - return sizeof(*dctx) - + ZSTD_sizeof_DDict(dctx->ddictLocal) - + dctx->inBuffSize + dctx->outBuffSize; -} - -size_t ZSTD_estimateDCtxSize(void) { return sizeof(ZSTD_DCtx); } - - -static size_t ZSTD_startingInputLength(ZSTD_format_e format) -{ - size_t const startingInputLength = ZSTD_FRAMEHEADERSIZE_PREFIX(format); - /* only supports formats ZSTD_f_zstd1 and ZSTD_f_zstd1_magicless */ - assert( (format == ZSTD_f_zstd1) || (format == ZSTD_f_zstd1_magicless) ); - return startingInputLength; -} - -static void ZSTD_initDCtx_internal(ZSTD_DCtx* dctx) -{ - dctx->format = ZSTD_f_zstd1; /* ZSTD_decompressBegin() invokes ZSTD_startingInputLength() with argument dctx->format */ - dctx->staticSize = 0; - dctx->maxWindowSize = ZSTD_MAXWINDOWSIZE_DEFAULT; - dctx->ddict = NULL; - dctx->ddictLocal = NULL; - dctx->dictEnd = NULL; - dctx->ddictIsCold = 0; - dctx->dictUses = ZSTD_dont_use; - dctx->inBuff = NULL; - dctx->inBuffSize = 0; - dctx->outBuffSize = 0; - dctx->streamStage = zdss_init; - dctx->legacyContext = NULL; - dctx->previousLegacyVersion = 0; - dctx->noForwardProgress = 0; - dctx->oversizedDuration = 0; - dctx->bmi2 = ZSTD_cpuid_bmi2(ZSTD_cpuid()); - dctx->outBufferMode = ZSTD_obm_buffered; -#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION - dctx->dictContentEndForFuzzing = NULL; -#endif -} - -ZSTD_DCtx* ZSTD_initStaticDCtx(void *workspace, size_t workspaceSize) -{ - ZSTD_DCtx* const dctx = (ZSTD_DCtx*) workspace; - - if ((size_t)workspace & 7) return NULL; /* 8-aligned */ - if (workspaceSize < sizeof(ZSTD_DCtx)) return NULL; /* minimum size */ - - ZSTD_initDCtx_internal(dctx); - dctx->staticSize = workspaceSize; - dctx->inBuff = (char*)(dctx+1); - return dctx; -} - -ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem) -{ - if (!customMem.customAlloc ^ !customMem.customFree) return NULL; - - { ZSTD_DCtx* const dctx = (ZSTD_DCtx*)ZSTD_malloc(sizeof(*dctx), customMem); - if (!dctx) return NULL; - dctx->customMem = customMem; - ZSTD_initDCtx_internal(dctx); - return dctx; - } -} - -ZSTD_DCtx* ZSTD_createDCtx(void) -{ - DEBUGLOG(3, "ZSTD_createDCtx"); - return ZSTD_createDCtx_advanced(ZSTD_defaultCMem); -} - -static void ZSTD_clearDict(ZSTD_DCtx* dctx) -{ - ZSTD_freeDDict(dctx->ddictLocal); - dctx->ddictLocal = NULL; - dctx->ddict = NULL; - dctx->dictUses = ZSTD_dont_use; -} - -size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx) -{ - if (dctx==NULL) return 0; /* support free on NULL */ - RETURN_ERROR_IF(dctx->staticSize, memory_allocation, "not compatible with static DCtx"); - { ZSTD_customMem const cMem = dctx->customMem; - ZSTD_clearDict(dctx); - ZSTD_free(dctx->inBuff, cMem); - dctx->inBuff = NULL; -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1) - if (dctx->legacyContext) - ZSTD_freeLegacyStreamContext(dctx->legacyContext, dctx->previousLegacyVersion); -#endif - ZSTD_free(dctx, cMem); - return 0; - } -} - -/* no longer useful */ -void ZSTD_copyDCtx(ZSTD_DCtx* dstDCtx, const ZSTD_DCtx* srcDCtx) -{ - size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx); - memcpy(dstDCtx, srcDCtx, toCopy); /* no need to copy workspace */ -} - - -/*-************************************************************* - * Frame header decoding - ***************************************************************/ - -/*! ZSTD_isFrame() : - * Tells if the content of `buffer` starts with a valid Frame Identifier. - * Note : Frame Identifier is 4 bytes. If `size < 4`, @return will always be 0. - * Note 2 : Legacy Frame Identifiers are considered valid only if Legacy Support is enabled. - * Note 3 : Skippable Frame Identifiers are considered valid. */ -unsigned ZSTD_isFrame(const void* buffer, size_t size) -{ - if (size < ZSTD_FRAMEIDSIZE) return 0; - { U32 const magic = MEM_readLE32(buffer); - if (magic == ZSTD_MAGICNUMBER) return 1; - if ((magic & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) return 1; - } -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1) - if (ZSTD_isLegacy(buffer, size)) return 1; -#endif - return 0; -} - -/** ZSTD_frameHeaderSize_internal() : - * srcSize must be large enough to reach header size fields. - * note : only works for formats ZSTD_f_zstd1 and ZSTD_f_zstd1_magicless. - * @return : size of the Frame Header - * or an error code, which can be tested with ZSTD_isError() */ -static size_t ZSTD_frameHeaderSize_internal(const void* src, size_t srcSize, ZSTD_format_e format) -{ - size_t const minInputSize = ZSTD_startingInputLength(format); - RETURN_ERROR_IF(srcSize < minInputSize, srcSize_wrong, ""); - - { BYTE const fhd = ((const BYTE*)src)[minInputSize-1]; - U32 const dictID= fhd & 3; - U32 const singleSegment = (fhd >> 5) & 1; - U32 const fcsId = fhd >> 6; - return minInputSize + !singleSegment - + ZSTD_did_fieldSize[dictID] + ZSTD_fcs_fieldSize[fcsId] - + (singleSegment && !fcsId); - } -} - -/** ZSTD_frameHeaderSize() : - * srcSize must be >= ZSTD_frameHeaderSize_prefix. - * @return : size of the Frame Header, - * or an error code (if srcSize is too small) */ -size_t ZSTD_frameHeaderSize(const void* src, size_t srcSize) -{ - return ZSTD_frameHeaderSize_internal(src, srcSize, ZSTD_f_zstd1); -} - - -/** ZSTD_getFrameHeader_advanced() : - * decode Frame Header, or require larger `srcSize`. - * note : only works for formats ZSTD_f_zstd1 and ZSTD_f_zstd1_magicless - * @return : 0, `zfhPtr` is correctly filled, - * >0, `srcSize` is too small, value is wanted `srcSize` amount, - * or an error code, which can be tested using ZSTD_isError() */ -size_t ZSTD_getFrameHeader_advanced(ZSTD_frameHeader* zfhPtr, const void* src, size_t srcSize, ZSTD_format_e format) -{ - const BYTE* ip = (const BYTE*)src; - size_t const minInputSize = ZSTD_startingInputLength(format); - - memset(zfhPtr, 0, sizeof(*zfhPtr)); /* not strictly necessary, but static analyzer do not understand that zfhPtr is only going to be read only if return value is zero, since they are 2 different signals */ - if (srcSize < minInputSize) return minInputSize; - RETURN_ERROR_IF(src==NULL, GENERIC, "invalid parameter"); - - if ( (format != ZSTD_f_zstd1_magicless) - && (MEM_readLE32(src) != ZSTD_MAGICNUMBER) ) { - if ((MEM_readLE32(src) & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) { - /* skippable frame */ - if (srcSize < ZSTD_SKIPPABLEHEADERSIZE) - return ZSTD_SKIPPABLEHEADERSIZE; /* magic number + frame length */ - memset(zfhPtr, 0, sizeof(*zfhPtr)); - zfhPtr->frameContentSize = MEM_readLE32((const char *)src + ZSTD_FRAMEIDSIZE); - zfhPtr->frameType = ZSTD_skippableFrame; - return 0; - } - RETURN_ERROR(prefix_unknown, ""); - } - - /* ensure there is enough `srcSize` to fully read/decode frame header */ - { size_t const fhsize = ZSTD_frameHeaderSize_internal(src, srcSize, format); - if (srcSize < fhsize) return fhsize; - zfhPtr->headerSize = (U32)fhsize; - } - - { BYTE const fhdByte = ip[minInputSize-1]; - size_t pos = minInputSize; - U32 const dictIDSizeCode = fhdByte&3; - U32 const checksumFlag = (fhdByte>>2)&1; - U32 const singleSegment = (fhdByte>>5)&1; - U32 const fcsID = fhdByte>>6; - U64 windowSize = 0; - U32 dictID = 0; - U64 frameContentSize = ZSTD_CONTENTSIZE_UNKNOWN; - RETURN_ERROR_IF((fhdByte & 0x08) != 0, frameParameter_unsupported, - "reserved bits, must be zero"); - - if (!singleSegment) { - BYTE const wlByte = ip[pos++]; - U32 const windowLog = (wlByte >> 3) + ZSTD_WINDOWLOG_ABSOLUTEMIN; - RETURN_ERROR_IF(windowLog > ZSTD_WINDOWLOG_MAX, frameParameter_windowTooLarge, ""); - windowSize = (1ULL << windowLog); - windowSize += (windowSize >> 3) * (wlByte&7); - } - switch(dictIDSizeCode) - { - default: assert(0); /* impossible */ - case 0 : break; - case 1 : dictID = ip[pos]; pos++; break; - case 2 : dictID = MEM_readLE16(ip+pos); pos+=2; break; - case 3 : dictID = MEM_readLE32(ip+pos); pos+=4; break; - } - switch(fcsID) - { - default: assert(0); /* impossible */ - case 0 : if (singleSegment) frameContentSize = ip[pos]; break; - case 1 : frameContentSize = MEM_readLE16(ip+pos)+256; break; - case 2 : frameContentSize = MEM_readLE32(ip+pos); break; - case 3 : frameContentSize = MEM_readLE64(ip+pos); break; - } - if (singleSegment) windowSize = frameContentSize; - - zfhPtr->frameType = ZSTD_frame; - zfhPtr->frameContentSize = frameContentSize; - zfhPtr->windowSize = windowSize; - zfhPtr->blockSizeMax = (unsigned) MIN(windowSize, ZSTD_BLOCKSIZE_MAX); - zfhPtr->dictID = dictID; - zfhPtr->checksumFlag = checksumFlag; - } - return 0; -} - -/** ZSTD_getFrameHeader() : - * decode Frame Header, or require larger `srcSize`. - * note : this function does not consume input, it only reads it. - * @return : 0, `zfhPtr` is correctly filled, - * >0, `srcSize` is too small, value is wanted `srcSize` amount, - * or an error code, which can be tested using ZSTD_isError() */ -size_t ZSTD_getFrameHeader(ZSTD_frameHeader* zfhPtr, const void* src, size_t srcSize) -{ - return ZSTD_getFrameHeader_advanced(zfhPtr, src, srcSize, ZSTD_f_zstd1); -} - - -/** ZSTD_getFrameContentSize() : - * compatible with legacy mode - * @return : decompressed size of the single frame pointed to be `src` if known, otherwise - * - ZSTD_CONTENTSIZE_UNKNOWN if the size cannot be determined - * - ZSTD_CONTENTSIZE_ERROR if an error occurred (e.g. invalid magic number, srcSize too small) */ -unsigned long long ZSTD_getFrameContentSize(const void *src, size_t srcSize) -{ -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1) - if (ZSTD_isLegacy(src, srcSize)) { - unsigned long long const ret = ZSTD_getDecompressedSize_legacy(src, srcSize); - return ret == 0 ? ZSTD_CONTENTSIZE_UNKNOWN : ret; - } -#endif - { ZSTD_frameHeader zfh; - if (ZSTD_getFrameHeader(&zfh, src, srcSize) != 0) - return ZSTD_CONTENTSIZE_ERROR; - if (zfh.frameType == ZSTD_skippableFrame) { - return 0; - } else { - return zfh.frameContentSize; - } } -} - -static size_t readSkippableFrameSize(void const* src, size_t srcSize) -{ - size_t const skippableHeaderSize = ZSTD_SKIPPABLEHEADERSIZE; - U32 sizeU32; - - RETURN_ERROR_IF(srcSize < ZSTD_SKIPPABLEHEADERSIZE, srcSize_wrong, ""); - - sizeU32 = MEM_readLE32((BYTE const*)src + ZSTD_FRAMEIDSIZE); - RETURN_ERROR_IF((U32)(sizeU32 + ZSTD_SKIPPABLEHEADERSIZE) < sizeU32, - frameParameter_unsupported, ""); - { - size_t const skippableSize = skippableHeaderSize + sizeU32; - RETURN_ERROR_IF(skippableSize > srcSize, srcSize_wrong, ""); - return skippableSize; - } -} - -/** ZSTD_findDecompressedSize() : - * compatible with legacy mode - * `srcSize` must be the exact length of some number of ZSTD compressed and/or - * skippable frames - * @return : decompressed size of the frames contained */ -unsigned long long ZSTD_findDecompressedSize(const void* src, size_t srcSize) -{ - unsigned long long totalDstSize = 0; - - while (srcSize >= ZSTD_startingInputLength(ZSTD_f_zstd1)) { - U32 const magicNumber = MEM_readLE32(src); - - if ((magicNumber & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) { - size_t const skippableSize = readSkippableFrameSize(src, srcSize); - if (ZSTD_isError(skippableSize)) { - return ZSTD_CONTENTSIZE_ERROR; - } - assert(skippableSize <= srcSize); - - src = (const BYTE *)src + skippableSize; - srcSize -= skippableSize; - continue; - } - - { unsigned long long const ret = ZSTD_getFrameContentSize(src, srcSize); - if (ret >= ZSTD_CONTENTSIZE_ERROR) return ret; - - /* check for overflow */ - if (totalDstSize + ret < totalDstSize) return ZSTD_CONTENTSIZE_ERROR; - totalDstSize += ret; - } - { size_t const frameSrcSize = ZSTD_findFrameCompressedSize(src, srcSize); - if (ZSTD_isError(frameSrcSize)) { - return ZSTD_CONTENTSIZE_ERROR; - } - - src = (const BYTE *)src + frameSrcSize; - srcSize -= frameSrcSize; - } - } /* while (srcSize >= ZSTD_frameHeaderSize_prefix) */ - - if (srcSize) return ZSTD_CONTENTSIZE_ERROR; - - return totalDstSize; -} - -/** ZSTD_getDecompressedSize() : - * compatible with legacy mode - * @return : decompressed size if known, 0 otherwise - note : 0 can mean any of the following : - - frame content is empty - - decompressed size field is not present in frame header - - frame header unknown / not supported - - frame header not complete (`srcSize` too small) */ -unsigned long long ZSTD_getDecompressedSize(const void* src, size_t srcSize) -{ - unsigned long long const ret = ZSTD_getFrameContentSize(src, srcSize); - ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN); - return (ret >= ZSTD_CONTENTSIZE_ERROR) ? 0 : ret; -} - - -/** ZSTD_decodeFrameHeader() : - * `headerSize` must be the size provided by ZSTD_frameHeaderSize(). - * @return : 0 if success, or an error code, which can be tested using ZSTD_isError() */ -static size_t ZSTD_decodeFrameHeader(ZSTD_DCtx* dctx, const void* src, size_t headerSize) -{ - size_t const result = ZSTD_getFrameHeader_advanced(&(dctx->fParams), src, headerSize, dctx->format); - if (ZSTD_isError(result)) return result; /* invalid header */ - RETURN_ERROR_IF(result>0, srcSize_wrong, "headerSize too small"); -#ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION - /* Skip the dictID check in fuzzing mode, because it makes the search - * harder. - */ - RETURN_ERROR_IF(dctx->fParams.dictID && (dctx->dictID != dctx->fParams.dictID), - dictionary_wrong, ""); -#endif - if (dctx->fParams.checksumFlag) XXH64_reset(&dctx->xxhState, 0); - return 0; -} - -static ZSTD_frameSizeInfo ZSTD_errorFrameSizeInfo(size_t ret) -{ - ZSTD_frameSizeInfo frameSizeInfo; - frameSizeInfo.compressedSize = ret; - frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; - return frameSizeInfo; -} - -static ZSTD_frameSizeInfo ZSTD_findFrameSizeInfo(const void* src, size_t srcSize) -{ - ZSTD_frameSizeInfo frameSizeInfo; - memset(&frameSizeInfo, 0, sizeof(ZSTD_frameSizeInfo)); - -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1) - if (ZSTD_isLegacy(src, srcSize)) - return ZSTD_findFrameSizeInfoLegacy(src, srcSize); -#endif - - if ((srcSize >= ZSTD_SKIPPABLEHEADERSIZE) - && (MEM_readLE32(src) & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) { - frameSizeInfo.compressedSize = readSkippableFrameSize(src, srcSize); - assert(ZSTD_isError(frameSizeInfo.compressedSize) || - frameSizeInfo.compressedSize <= srcSize); - return frameSizeInfo; - } else { - const BYTE* ip = (const BYTE*)src; - const BYTE* const ipstart = ip; - size_t remainingSize = srcSize; - size_t nbBlocks = 0; - ZSTD_frameHeader zfh; - - /* Extract Frame Header */ - { size_t const ret = ZSTD_getFrameHeader(&zfh, src, srcSize); - if (ZSTD_isError(ret)) - return ZSTD_errorFrameSizeInfo(ret); - if (ret > 0) - return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong)); - } - - ip += zfh.headerSize; - remainingSize -= zfh.headerSize; - - /* Iterate over each block */ - while (1) { - blockProperties_t blockProperties; - size_t const cBlockSize = ZSTD_getcBlockSize(ip, remainingSize, &blockProperties); - if (ZSTD_isError(cBlockSize)) - return ZSTD_errorFrameSizeInfo(cBlockSize); - - if (ZSTD_blockHeaderSize + cBlockSize > remainingSize) - return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong)); - - ip += ZSTD_blockHeaderSize + cBlockSize; - remainingSize -= ZSTD_blockHeaderSize + cBlockSize; - nbBlocks++; - - if (blockProperties.lastBlock) break; - } - - /* Final frame content checksum */ - if (zfh.checksumFlag) { - if (remainingSize < 4) - return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong)); - ip += 4; - } - - frameSizeInfo.compressedSize = ip - ipstart; - frameSizeInfo.decompressedBound = (zfh.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN) - ? zfh.frameContentSize - : nbBlocks * zfh.blockSizeMax; - return frameSizeInfo; - } -} - -/** ZSTD_findFrameCompressedSize() : - * compatible with legacy mode - * `src` must point to the start of a ZSTD frame, ZSTD legacy frame, or skippable frame - * `srcSize` must be at least as large as the frame contained - * @return : the compressed size of the frame starting at `src` */ -size_t ZSTD_findFrameCompressedSize(const void *src, size_t srcSize) -{ - ZSTD_frameSizeInfo const frameSizeInfo = ZSTD_findFrameSizeInfo(src, srcSize); - return frameSizeInfo.compressedSize; -} - -/** ZSTD_decompressBound() : - * compatible with legacy mode - * `src` must point to the start of a ZSTD frame or a skippeable frame - * `srcSize` must be at least as large as the frame contained - * @return : the maximum decompressed size of the compressed source - */ -unsigned long long ZSTD_decompressBound(const void* src, size_t srcSize) -{ - unsigned long long bound = 0; - /* Iterate over each frame */ - while (srcSize > 0) { - ZSTD_frameSizeInfo const frameSizeInfo = ZSTD_findFrameSizeInfo(src, srcSize); - size_t const compressedSize = frameSizeInfo.compressedSize; - unsigned long long const decompressedBound = frameSizeInfo.decompressedBound; - if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR) - return ZSTD_CONTENTSIZE_ERROR; - assert(srcSize >= compressedSize); - src = (const BYTE*)src + compressedSize; - srcSize -= compressedSize; - bound += decompressedBound; - } - return bound; -} - - -/*-************************************************************* - * Frame decoding - ***************************************************************/ - -/** ZSTD_insertBlock() : - * insert `src` block into `dctx` history. Useful to track uncompressed blocks. */ -size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize) -{ - DEBUGLOG(5, "ZSTD_insertBlock: %u bytes", (unsigned)blockSize); - ZSTD_checkContinuity(dctx, blockStart); - dctx->previousDstEnd = (const char*)blockStart + blockSize; - return blockSize; -} - - -static size_t ZSTD_copyRawBlock(void* dst, size_t dstCapacity, - const void* src, size_t srcSize) -{ - DEBUGLOG(5, "ZSTD_copyRawBlock"); - if (dst == NULL) { - if (srcSize == 0) return 0; - RETURN_ERROR(dstBuffer_null, ""); - } - RETURN_ERROR_IF(srcSize > dstCapacity, dstSize_tooSmall, ""); - memcpy(dst, src, srcSize); - return srcSize; -} - -static size_t ZSTD_setRleBlock(void* dst, size_t dstCapacity, - BYTE b, - size_t regenSize) -{ - if (dst == NULL) { - if (regenSize == 0) return 0; - RETURN_ERROR(dstBuffer_null, ""); - } - RETURN_ERROR_IF(regenSize > dstCapacity, dstSize_tooSmall, ""); - memset(dst, b, regenSize); - return regenSize; -} - - -/*! ZSTD_decompressFrame() : - * @dctx must be properly initialized - * will update *srcPtr and *srcSizePtr, - * to make *srcPtr progress by one frame. */ -static size_t ZSTD_decompressFrame(ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, - const void** srcPtr, size_t *srcSizePtr) -{ - const BYTE* ip = (const BYTE*)(*srcPtr); - BYTE* const ostart = (BYTE* const)dst; - BYTE* const oend = dstCapacity != 0 ? ostart + dstCapacity : ostart; - BYTE* op = ostart; - size_t remainingSrcSize = *srcSizePtr; - - DEBUGLOG(4, "ZSTD_decompressFrame (srcSize:%i)", (int)*srcSizePtr); - - /* check */ - RETURN_ERROR_IF( - remainingSrcSize < ZSTD_FRAMEHEADERSIZE_MIN(dctx->format)+ZSTD_blockHeaderSize, - srcSize_wrong, ""); - - /* Frame Header */ - { size_t const frameHeaderSize = ZSTD_frameHeaderSize_internal( - ip, ZSTD_FRAMEHEADERSIZE_PREFIX(dctx->format), dctx->format); - if (ZSTD_isError(frameHeaderSize)) return frameHeaderSize; - RETURN_ERROR_IF(remainingSrcSize < frameHeaderSize+ZSTD_blockHeaderSize, - srcSize_wrong, ""); - FORWARD_IF_ERROR( ZSTD_decodeFrameHeader(dctx, ip, frameHeaderSize) , ""); - ip += frameHeaderSize; remainingSrcSize -= frameHeaderSize; - } - - /* Loop on each block */ - while (1) { - size_t decodedSize; - blockProperties_t blockProperties; - size_t const cBlockSize = ZSTD_getcBlockSize(ip, remainingSrcSize, &blockProperties); - if (ZSTD_isError(cBlockSize)) return cBlockSize; - - ip += ZSTD_blockHeaderSize; - remainingSrcSize -= ZSTD_blockHeaderSize; - RETURN_ERROR_IF(cBlockSize > remainingSrcSize, srcSize_wrong, ""); - - switch(blockProperties.blockType) - { - case bt_compressed: - decodedSize = ZSTD_decompressBlock_internal(dctx, op, oend-op, ip, cBlockSize, /* frame */ 1); - break; - case bt_raw : - decodedSize = ZSTD_copyRawBlock(op, oend-op, ip, cBlockSize); - break; - case bt_rle : - decodedSize = ZSTD_setRleBlock(op, oend-op, *ip, blockProperties.origSize); - break; - case bt_reserved : - default: - RETURN_ERROR(corruption_detected, "invalid block type"); - } - - if (ZSTD_isError(decodedSize)) return decodedSize; - if (dctx->fParams.checksumFlag) - XXH64_update(&dctx->xxhState, op, decodedSize); - if (decodedSize != 0) - op += decodedSize; - assert(ip != NULL); - ip += cBlockSize; - remainingSrcSize -= cBlockSize; - if (blockProperties.lastBlock) break; - } - - if (dctx->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN) { - RETURN_ERROR_IF((U64)(op-ostart) != dctx->fParams.frameContentSize, - corruption_detected, ""); - } - if (dctx->fParams.checksumFlag) { /* Frame content checksum verification */ - U32 const checkCalc = (U32)XXH64_digest(&dctx->xxhState); - U32 checkRead; - RETURN_ERROR_IF(remainingSrcSize<4, checksum_wrong, ""); - checkRead = MEM_readLE32(ip); - RETURN_ERROR_IF(checkRead != checkCalc, checksum_wrong, ""); - ip += 4; - remainingSrcSize -= 4; - } - - /* Allow caller to get size read */ - *srcPtr = ip; - *srcSizePtr = remainingSrcSize; - return op-ostart; -} - -static size_t ZSTD_decompressMultiFrame(ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const void* dict, size_t dictSize, - const ZSTD_DDict* ddict) -{ - void* const dststart = dst; - int moreThan1Frame = 0; - - DEBUGLOG(5, "ZSTD_decompressMultiFrame"); - assert(dict==NULL || ddict==NULL); /* either dict or ddict set, not both */ - - if (ddict) { - dict = ZSTD_DDict_dictContent(ddict); - dictSize = ZSTD_DDict_dictSize(ddict); - } - - while (srcSize >= ZSTD_startingInputLength(dctx->format)) { - -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1) - if (ZSTD_isLegacy(src, srcSize)) { - size_t decodedSize; - size_t const frameSize = ZSTD_findFrameCompressedSizeLegacy(src, srcSize); - if (ZSTD_isError(frameSize)) return frameSize; - RETURN_ERROR_IF(dctx->staticSize, memory_allocation, - "legacy support is not compatible with static dctx"); - - decodedSize = ZSTD_decompressLegacy(dst, dstCapacity, src, frameSize, dict, dictSize); - if (ZSTD_isError(decodedSize)) return decodedSize; - - assert(decodedSize <=- dstCapacity); - dst = (BYTE*)dst + decodedSize; - dstCapacity -= decodedSize; - - src = (const BYTE*)src + frameSize; - srcSize -= frameSize; - - continue; - } -#endif - - { U32 const magicNumber = MEM_readLE32(src); - DEBUGLOG(4, "reading magic number %08X (expecting %08X)", - (unsigned)magicNumber, ZSTD_MAGICNUMBER); - if ((magicNumber & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) { - size_t const skippableSize = readSkippableFrameSize(src, srcSize); - FORWARD_IF_ERROR(skippableSize, "readSkippableFrameSize failed"); - assert(skippableSize <= srcSize); - - src = (const BYTE *)src + skippableSize; - srcSize -= skippableSize; - continue; - } } - - if (ddict) { - /* we were called from ZSTD_decompress_usingDDict */ - FORWARD_IF_ERROR(ZSTD_decompressBegin_usingDDict(dctx, ddict), ""); - } else { - /* this will initialize correctly with no dict if dict == NULL, so - * use this in all cases but ddict */ - FORWARD_IF_ERROR(ZSTD_decompressBegin_usingDict(dctx, dict, dictSize), ""); - } - ZSTD_checkContinuity(dctx, dst); - - { const size_t res = ZSTD_decompressFrame(dctx, dst, dstCapacity, - &src, &srcSize); - RETURN_ERROR_IF( - (ZSTD_getErrorCode(res) == ZSTD_error_prefix_unknown) - && (moreThan1Frame==1), - srcSize_wrong, - "at least one frame successfully completed, but following " - "bytes are garbage: it's more likely to be a srcSize error, " - "specifying more bytes than compressed size of frame(s). This " - "error message replaces ERROR(prefix_unknown), which would be " - "confusing, as the first header is actually correct. Note that " - "one could be unlucky, it might be a corruption error instead, " - "happening right at the place where we expect zstd magic " - "bytes. But this is _much_ less likely than a srcSize field " - "error."); - if (ZSTD_isError(res)) return res; - assert(res <= dstCapacity); - if (res != 0) - dst = (BYTE*)dst + res; - dstCapacity -= res; - } - moreThan1Frame = 1; - } /* while (srcSize >= ZSTD_frameHeaderSize_prefix) */ - - RETURN_ERROR_IF(srcSize, srcSize_wrong, "input not entirely consumed"); - - return (BYTE*)dst - (BYTE*)dststart; -} - -size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const void* dict, size_t dictSize) -{ - return ZSTD_decompressMultiFrame(dctx, dst, dstCapacity, src, srcSize, dict, dictSize, NULL); -} - - -static ZSTD_DDict const* ZSTD_getDDict(ZSTD_DCtx* dctx) -{ - switch (dctx->dictUses) { - default: - assert(0 /* Impossible */); - /* fall-through */ - case ZSTD_dont_use: - ZSTD_clearDict(dctx); - return NULL; - case ZSTD_use_indefinitely: - return dctx->ddict; - case ZSTD_use_once: - dctx->dictUses = ZSTD_dont_use; - return dctx->ddict; - } -} - -size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) -{ - return ZSTD_decompress_usingDDict(dctx, dst, dstCapacity, src, srcSize, ZSTD_getDDict(dctx)); -} - - -size_t ZSTD_decompress(void* dst, size_t dstCapacity, const void* src, size_t srcSize) -{ -#if defined(ZSTD_HEAPMODE) && (ZSTD_HEAPMODE>=1) - size_t regenSize; - ZSTD_DCtx* const dctx = ZSTD_createDCtx(); - RETURN_ERROR_IF(dctx==NULL, memory_allocation, "NULL pointer!"); - regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); - ZSTD_freeDCtx(dctx); - return regenSize; -#else /* stack mode */ - ZSTD_DCtx dctx; - ZSTD_initDCtx_internal(&dctx); - return ZSTD_decompressDCtx(&dctx, dst, dstCapacity, src, srcSize); -#endif -} - - -/*-************************************** -* Advanced Streaming Decompression API -* Bufferless and synchronous -****************************************/ -size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) { return dctx->expected; } - -/** - * Similar to ZSTD_nextSrcSizeToDecompress(), but when when a block input can be streamed, - * we allow taking a partial block as the input. Currently only raw uncompressed blocks can - * be streamed. - * - * For blocks that can be streamed, this allows us to reduce the latency until we produce - * output, and avoid copying the input. - * - * @param inputSize - The total amount of input that the caller currently has. - */ -static size_t ZSTD_nextSrcSizeToDecompressWithInputSize(ZSTD_DCtx* dctx, size_t inputSize) { - if (!(dctx->stage == ZSTDds_decompressBlock || dctx->stage == ZSTDds_decompressLastBlock)) - return dctx->expected; - if (dctx->bType != bt_raw) - return dctx->expected; - return MIN(MAX(inputSize, 1), dctx->expected); -} - -ZSTD_nextInputType_e ZSTD_nextInputType(ZSTD_DCtx* dctx) { - switch(dctx->stage) - { - default: /* should not happen */ - assert(0); - case ZSTDds_getFrameHeaderSize: - case ZSTDds_decodeFrameHeader: - return ZSTDnit_frameHeader; - case ZSTDds_decodeBlockHeader: - return ZSTDnit_blockHeader; - case ZSTDds_decompressBlock: - return ZSTDnit_block; - case ZSTDds_decompressLastBlock: - return ZSTDnit_lastBlock; - case ZSTDds_checkChecksum: - return ZSTDnit_checksum; - case ZSTDds_decodeSkippableHeader: - case ZSTDds_skipFrame: - return ZSTDnit_skippableFrame; - } -} - -static int ZSTD_isSkipFrame(ZSTD_DCtx* dctx) { return dctx->stage == ZSTDds_skipFrame; } - -/** ZSTD_decompressContinue() : - * srcSize : must be the exact nb of bytes expected (see ZSTD_nextSrcSizeToDecompress()) - * @return : nb of bytes generated into `dst` (necessarily <= `dstCapacity) - * or an error code, which can be tested using ZSTD_isError() */ -size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize) -{ - DEBUGLOG(5, "ZSTD_decompressContinue (srcSize:%u)", (unsigned)srcSize); - /* Sanity check */ - RETURN_ERROR_IF(srcSize != ZSTD_nextSrcSizeToDecompressWithInputSize(dctx, srcSize), srcSize_wrong, "not allowed"); - if (dstCapacity) ZSTD_checkContinuity(dctx, dst); - - switch (dctx->stage) - { - case ZSTDds_getFrameHeaderSize : - assert(src != NULL); - if (dctx->format == ZSTD_f_zstd1) { /* allows header */ - assert(srcSize >= ZSTD_FRAMEIDSIZE); /* to read skippable magic number */ - if ((MEM_readLE32(src) & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) { /* skippable frame */ - memcpy(dctx->headerBuffer, src, srcSize); - dctx->expected = ZSTD_SKIPPABLEHEADERSIZE - srcSize; /* remaining to load to get full skippable frame header */ - dctx->stage = ZSTDds_decodeSkippableHeader; - return 0; - } } - dctx->headerSize = ZSTD_frameHeaderSize_internal(src, srcSize, dctx->format); - if (ZSTD_isError(dctx->headerSize)) return dctx->headerSize; - memcpy(dctx->headerBuffer, src, srcSize); - dctx->expected = dctx->headerSize - srcSize; - dctx->stage = ZSTDds_decodeFrameHeader; - return 0; - - case ZSTDds_decodeFrameHeader: - assert(src != NULL); - memcpy(dctx->headerBuffer + (dctx->headerSize - srcSize), src, srcSize); - FORWARD_IF_ERROR(ZSTD_decodeFrameHeader(dctx, dctx->headerBuffer, dctx->headerSize), ""); - dctx->expected = ZSTD_blockHeaderSize; - dctx->stage = ZSTDds_decodeBlockHeader; - return 0; - - case ZSTDds_decodeBlockHeader: - { blockProperties_t bp; - size_t const cBlockSize = ZSTD_getcBlockSize(src, ZSTD_blockHeaderSize, &bp); - if (ZSTD_isError(cBlockSize)) return cBlockSize; - RETURN_ERROR_IF(cBlockSize > dctx->fParams.blockSizeMax, corruption_detected, "Block Size Exceeds Maximum"); - dctx->expected = cBlockSize; - dctx->bType = bp.blockType; - dctx->rleSize = bp.origSize; - if (cBlockSize) { - dctx->stage = bp.lastBlock ? ZSTDds_decompressLastBlock : ZSTDds_decompressBlock; - return 0; - } - /* empty block */ - if (bp.lastBlock) { - if (dctx->fParams.checksumFlag) { - dctx->expected = 4; - dctx->stage = ZSTDds_checkChecksum; - } else { - dctx->expected = 0; /* end of frame */ - dctx->stage = ZSTDds_getFrameHeaderSize; - } - } else { - dctx->expected = ZSTD_blockHeaderSize; /* jump to next header */ - dctx->stage = ZSTDds_decodeBlockHeader; - } - return 0; - } - - case ZSTDds_decompressLastBlock: - case ZSTDds_decompressBlock: - DEBUGLOG(5, "ZSTD_decompressContinue: case ZSTDds_decompressBlock"); - { size_t rSize; - switch(dctx->bType) - { - case bt_compressed: - DEBUGLOG(5, "ZSTD_decompressContinue: case bt_compressed"); - rSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize, /* frame */ 1); - dctx->expected = 0; /* Streaming not supported */ - break; - case bt_raw : - assert(srcSize <= dctx->expected); - rSize = ZSTD_copyRawBlock(dst, dstCapacity, src, srcSize); - FORWARD_IF_ERROR(rSize, "ZSTD_copyRawBlock failed"); - assert(rSize == srcSize); - dctx->expected -= rSize; - break; - case bt_rle : - rSize = ZSTD_setRleBlock(dst, dstCapacity, *(const BYTE*)src, dctx->rleSize); - dctx->expected = 0; /* Streaming not supported */ - break; - case bt_reserved : /* should never happen */ - default: - RETURN_ERROR(corruption_detected, "invalid block type"); - } - FORWARD_IF_ERROR(rSize, ""); - RETURN_ERROR_IF(rSize > dctx->fParams.blockSizeMax, corruption_detected, "Decompressed Block Size Exceeds Maximum"); - DEBUGLOG(5, "ZSTD_decompressContinue: decoded size from block : %u", (unsigned)rSize); - dctx->decodedSize += rSize; - if (dctx->fParams.checksumFlag) XXH64_update(&dctx->xxhState, dst, rSize); - dctx->previousDstEnd = (char*)dst + rSize; - - /* Stay on the same stage until we are finished streaming the block. */ - if (dctx->expected > 0) { - return rSize; - } - - if (dctx->stage == ZSTDds_decompressLastBlock) { /* end of frame */ - DEBUGLOG(4, "ZSTD_decompressContinue: decoded size from frame : %u", (unsigned)dctx->decodedSize); - RETURN_ERROR_IF( - dctx->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN - && dctx->decodedSize != dctx->fParams.frameContentSize, - corruption_detected, ""); - if (dctx->fParams.checksumFlag) { /* another round for frame checksum */ - dctx->expected = 4; - dctx->stage = ZSTDds_checkChecksum; - } else { - dctx->expected = 0; /* ends here */ - dctx->stage = ZSTDds_getFrameHeaderSize; - } - } else { - dctx->stage = ZSTDds_decodeBlockHeader; - dctx->expected = ZSTD_blockHeaderSize; - } - return rSize; - } - - case ZSTDds_checkChecksum: - assert(srcSize == 4); /* guaranteed by dctx->expected */ - { U32 const h32 = (U32)XXH64_digest(&dctx->xxhState); - U32 const check32 = MEM_readLE32(src); - DEBUGLOG(4, "ZSTD_decompressContinue: checksum : calculated %08X :: %08X read", (unsigned)h32, (unsigned)check32); - RETURN_ERROR_IF(check32 != h32, checksum_wrong, ""); - dctx->expected = 0; - dctx->stage = ZSTDds_getFrameHeaderSize; - return 0; - } - - case ZSTDds_decodeSkippableHeader: - assert(src != NULL); - assert(srcSize <= ZSTD_SKIPPABLEHEADERSIZE); - memcpy(dctx->headerBuffer + (ZSTD_SKIPPABLEHEADERSIZE - srcSize), src, srcSize); /* complete skippable header */ - dctx->expected = MEM_readLE32(dctx->headerBuffer + ZSTD_FRAMEIDSIZE); /* note : dctx->expected can grow seriously large, beyond local buffer size */ - dctx->stage = ZSTDds_skipFrame; - return 0; - - case ZSTDds_skipFrame: - dctx->expected = 0; - dctx->stage = ZSTDds_getFrameHeaderSize; - return 0; - - default: - assert(0); /* impossible */ - RETURN_ERROR(GENERIC, "impossible to reach"); /* some compiler require default to do something */ - } -} - - -static size_t ZSTD_refDictContent(ZSTD_DCtx* dctx, const void* dict, size_t dictSize) -{ - dctx->dictEnd = dctx->previousDstEnd; - dctx->virtualStart = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart)); - dctx->prefixStart = dict; - dctx->previousDstEnd = (const char*)dict + dictSize; -#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION - dctx->dictContentBeginForFuzzing = dctx->prefixStart; - dctx->dictContentEndForFuzzing = dctx->previousDstEnd; -#endif - return 0; -} - -/*! ZSTD_loadDEntropy() : - * dict : must point at beginning of a valid zstd dictionary. - * @return : size of entropy tables read */ -size_t -ZSTD_loadDEntropy(ZSTD_entropyDTables_t* entropy, - const void* const dict, size_t const dictSize) -{ - const BYTE* dictPtr = (const BYTE*)dict; - const BYTE* const dictEnd = dictPtr + dictSize; - - RETURN_ERROR_IF(dictSize <= 8, dictionary_corrupted, "dict is too small"); - assert(MEM_readLE32(dict) == ZSTD_MAGIC_DICTIONARY); /* dict must be valid */ - dictPtr += 8; /* skip header = magic + dictID */ - - ZSTD_STATIC_ASSERT(offsetof(ZSTD_entropyDTables_t, OFTable) == offsetof(ZSTD_entropyDTables_t, LLTable) + sizeof(entropy->LLTable)); - ZSTD_STATIC_ASSERT(offsetof(ZSTD_entropyDTables_t, MLTable) == offsetof(ZSTD_entropyDTables_t, OFTable) + sizeof(entropy->OFTable)); - ZSTD_STATIC_ASSERT(sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable) >= HUF_DECOMPRESS_WORKSPACE_SIZE); - { void* const workspace = &entropy->LLTable; /* use fse tables as temporary workspace; implies fse tables are grouped together */ - size_t const workspaceSize = sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable); -#ifdef HUF_FORCE_DECOMPRESS_X1 - /* in minimal huffman, we always use X1 variants */ - size_t const hSize = HUF_readDTableX1_wksp(entropy->hufTable, - dictPtr, dictEnd - dictPtr, - workspace, workspaceSize); -#else - size_t const hSize = HUF_readDTableX2_wksp(entropy->hufTable, - dictPtr, dictEnd - dictPtr, - workspace, workspaceSize); -#endif - RETURN_ERROR_IF(HUF_isError(hSize), dictionary_corrupted, ""); - dictPtr += hSize; - } - - { short offcodeNCount[MaxOff+1]; - unsigned offcodeMaxValue = MaxOff, offcodeLog; - size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, dictEnd-dictPtr); - RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); - RETURN_ERROR_IF(offcodeMaxValue > MaxOff, dictionary_corrupted, ""); - RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, ""); - ZSTD_buildFSETable( entropy->OFTable, - offcodeNCount, offcodeMaxValue, - OF_base, OF_bits, - offcodeLog); - dictPtr += offcodeHeaderSize; - } - - { short matchlengthNCount[MaxML+1]; - unsigned matchlengthMaxValue = MaxML, matchlengthLog; - size_t const matchlengthHeaderSize = FSE_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, dictEnd-dictPtr); - RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); - RETURN_ERROR_IF(matchlengthMaxValue > MaxML, dictionary_corrupted, ""); - RETURN_ERROR_IF(matchlengthLog > MLFSELog, dictionary_corrupted, ""); - ZSTD_buildFSETable( entropy->MLTable, - matchlengthNCount, matchlengthMaxValue, - ML_base, ML_bits, - matchlengthLog); - dictPtr += matchlengthHeaderSize; - } - - { short litlengthNCount[MaxLL+1]; - unsigned litlengthMaxValue = MaxLL, litlengthLog; - size_t const litlengthHeaderSize = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, dictEnd-dictPtr); - RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); - RETURN_ERROR_IF(litlengthMaxValue > MaxLL, dictionary_corrupted, ""); - RETURN_ERROR_IF(litlengthLog > LLFSELog, dictionary_corrupted, ""); - ZSTD_buildFSETable( entropy->LLTable, - litlengthNCount, litlengthMaxValue, - LL_base, LL_bits, - litlengthLog); - dictPtr += litlengthHeaderSize; - } - - RETURN_ERROR_IF(dictPtr+12 > dictEnd, dictionary_corrupted, ""); - { int i; - size_t const dictContentSize = (size_t)(dictEnd - (dictPtr+12)); - for (i=0; i<3; i++) { - U32 const rep = MEM_readLE32(dictPtr); dictPtr += 4; - RETURN_ERROR_IF(rep==0 || rep > dictContentSize, - dictionary_corrupted, ""); - entropy->rep[i] = rep; - } } - - return dictPtr - (const BYTE*)dict; -} - -static size_t ZSTD_decompress_insertDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize) -{ - if (dictSize < 8) return ZSTD_refDictContent(dctx, dict, dictSize); - { U32 const magic = MEM_readLE32(dict); - if (magic != ZSTD_MAGIC_DICTIONARY) { - return ZSTD_refDictContent(dctx, dict, dictSize); /* pure content mode */ - } } - dctx->dictID = MEM_readLE32((const char*)dict + ZSTD_FRAMEIDSIZE); - - /* load entropy tables */ - { size_t const eSize = ZSTD_loadDEntropy(&dctx->entropy, dict, dictSize); - RETURN_ERROR_IF(ZSTD_isError(eSize), dictionary_corrupted, ""); - dict = (const char*)dict + eSize; - dictSize -= eSize; - } - dctx->litEntropy = dctx->fseEntropy = 1; - - /* reference dictionary content */ - return ZSTD_refDictContent(dctx, dict, dictSize); -} - -size_t ZSTD_decompressBegin(ZSTD_DCtx* dctx) -{ - assert(dctx != NULL); - dctx->expected = ZSTD_startingInputLength(dctx->format); /* dctx->format must be properly set */ - dctx->stage = ZSTDds_getFrameHeaderSize; - dctx->decodedSize = 0; - dctx->previousDstEnd = NULL; - dctx->prefixStart = NULL; - dctx->virtualStart = NULL; - dctx->dictEnd = NULL; - dctx->entropy.hufTable[0] = (HUF_DTable)((HufLog)*0x1000001); /* cover both little and big endian */ - dctx->litEntropy = dctx->fseEntropy = 0; - dctx->dictID = 0; - dctx->bType = bt_reserved; - ZSTD_STATIC_ASSERT(sizeof(dctx->entropy.rep) == sizeof(repStartValue)); - memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue)); /* initial repcodes */ - dctx->LLTptr = dctx->entropy.LLTable; - dctx->MLTptr = dctx->entropy.MLTable; - dctx->OFTptr = dctx->entropy.OFTable; - dctx->HUFptr = dctx->entropy.hufTable; - return 0; -} - -size_t ZSTD_decompressBegin_usingDict(ZSTD_DCtx* dctx, const void* dict, size_t dictSize) -{ - FORWARD_IF_ERROR( ZSTD_decompressBegin(dctx) , ""); - if (dict && dictSize) - RETURN_ERROR_IF( - ZSTD_isError(ZSTD_decompress_insertDictionary(dctx, dict, dictSize)), - dictionary_corrupted, ""); - return 0; -} - - -/* ====== ZSTD_DDict ====== */ - -size_t ZSTD_decompressBegin_usingDDict(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict) -{ - DEBUGLOG(4, "ZSTD_decompressBegin_usingDDict"); - assert(dctx != NULL); - if (ddict) { - const char* const dictStart = (const char*)ZSTD_DDict_dictContent(ddict); - size_t const dictSize = ZSTD_DDict_dictSize(ddict); - const void* const dictEnd = dictStart + dictSize; - dctx->ddictIsCold = (dctx->dictEnd != dictEnd); - DEBUGLOG(4, "DDict is %s", - dctx->ddictIsCold ? "~cold~" : "hot!"); - } - FORWARD_IF_ERROR( ZSTD_decompressBegin(dctx) , ""); - if (ddict) { /* NULL ddict is equivalent to no dictionary */ - ZSTD_copyDDictParameters(dctx, ddict); - } - return 0; -} - -/*! ZSTD_getDictID_fromDict() : - * Provides the dictID stored within dictionary. - * if @return == 0, the dictionary is not conformant with Zstandard specification. - * It can still be loaded, but as a content-only dictionary. */ -unsigned ZSTD_getDictID_fromDict(const void* dict, size_t dictSize) -{ - if (dictSize < 8) return 0; - if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) return 0; - return MEM_readLE32((const char*)dict + ZSTD_FRAMEIDSIZE); -} - -/*! ZSTD_getDictID_fromFrame() : - * Provides the dictID required to decompress frame stored within `src`. - * If @return == 0, the dictID could not be decoded. - * This could for one of the following reasons : - * - The frame does not require a dictionary (most common case). - * - The frame was built with dictID intentionally removed. - * Needed dictionary is a hidden information. - * Note : this use case also happens when using a non-conformant dictionary. - * - `srcSize` is too small, and as a result, frame header could not be decoded. - * Note : possible if `srcSize < ZSTD_FRAMEHEADERSIZE_MAX`. - * - This is not a Zstandard frame. - * When identifying the exact failure cause, it's possible to use - * ZSTD_getFrameHeader(), which will provide a more precise error code. */ -unsigned ZSTD_getDictID_fromFrame(const void* src, size_t srcSize) -{ - ZSTD_frameHeader zfp = { 0, 0, 0, ZSTD_frame, 0, 0, 0 }; - size_t const hError = ZSTD_getFrameHeader(&zfp, src, srcSize); - if (ZSTD_isError(hError)) return 0; - return zfp.dictID; -} - - -/*! ZSTD_decompress_usingDDict() : -* Decompression using a pre-digested Dictionary -* Use dictionary without significant overhead. */ -size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, - const ZSTD_DDict* ddict) -{ - /* pass content and size in case legacy frames are encountered */ - return ZSTD_decompressMultiFrame(dctx, dst, dstCapacity, src, srcSize, - NULL, 0, - ddict); -} - - -/*===================================== -* Streaming decompression -*====================================*/ - -ZSTD_DStream* ZSTD_createDStream(void) -{ - DEBUGLOG(3, "ZSTD_createDStream"); - return ZSTD_createDStream_advanced(ZSTD_defaultCMem); -} - -ZSTD_DStream* ZSTD_initStaticDStream(void *workspace, size_t workspaceSize) -{ - return ZSTD_initStaticDCtx(workspace, workspaceSize); -} - -ZSTD_DStream* ZSTD_createDStream_advanced(ZSTD_customMem customMem) -{ - return ZSTD_createDCtx_advanced(customMem); -} - -size_t ZSTD_freeDStream(ZSTD_DStream* zds) -{ - return ZSTD_freeDCtx(zds); -} - - -/* *** Initialization *** */ - -size_t ZSTD_DStreamInSize(void) { return ZSTD_BLOCKSIZE_MAX + ZSTD_blockHeaderSize; } -size_t ZSTD_DStreamOutSize(void) { return ZSTD_BLOCKSIZE_MAX; } - -size_t ZSTD_DCtx_loadDictionary_advanced(ZSTD_DCtx* dctx, - const void* dict, size_t dictSize, - ZSTD_dictLoadMethod_e dictLoadMethod, - ZSTD_dictContentType_e dictContentType) -{ - RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, ""); - ZSTD_clearDict(dctx); - if (dict && dictSize != 0) { - dctx->ddictLocal = ZSTD_createDDict_advanced(dict, dictSize, dictLoadMethod, dictContentType, dctx->customMem); - RETURN_ERROR_IF(dctx->ddictLocal == NULL, memory_allocation, "NULL pointer!"); - dctx->ddict = dctx->ddictLocal; - dctx->dictUses = ZSTD_use_indefinitely; - } - return 0; -} - -size_t ZSTD_DCtx_loadDictionary_byReference(ZSTD_DCtx* dctx, const void* dict, size_t dictSize) -{ - return ZSTD_DCtx_loadDictionary_advanced(dctx, dict, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto); -} - -size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize) -{ - return ZSTD_DCtx_loadDictionary_advanced(dctx, dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto); -} - -size_t ZSTD_DCtx_refPrefix_advanced(ZSTD_DCtx* dctx, const void* prefix, size_t prefixSize, ZSTD_dictContentType_e dictContentType) -{ - FORWARD_IF_ERROR(ZSTD_DCtx_loadDictionary_advanced(dctx, prefix, prefixSize, ZSTD_dlm_byRef, dictContentType), ""); - dctx->dictUses = ZSTD_use_once; - return 0; -} - -size_t ZSTD_DCtx_refPrefix(ZSTD_DCtx* dctx, const void* prefix, size_t prefixSize) -{ - return ZSTD_DCtx_refPrefix_advanced(dctx, prefix, prefixSize, ZSTD_dct_rawContent); -} - - -/* ZSTD_initDStream_usingDict() : - * return : expected size, aka ZSTD_startingInputLength(). - * this function cannot fail */ -size_t ZSTD_initDStream_usingDict(ZSTD_DStream* zds, const void* dict, size_t dictSize) -{ - DEBUGLOG(4, "ZSTD_initDStream_usingDict"); - FORWARD_IF_ERROR( ZSTD_DCtx_reset(zds, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_DCtx_loadDictionary(zds, dict, dictSize) , ""); - return ZSTD_startingInputLength(zds->format); -} - -/* note : this variant can't fail */ -size_t ZSTD_initDStream(ZSTD_DStream* zds) -{ - DEBUGLOG(4, "ZSTD_initDStream"); - return ZSTD_initDStream_usingDDict(zds, NULL); -} - -/* ZSTD_initDStream_usingDDict() : - * ddict will just be referenced, and must outlive decompression session - * this function cannot fail */ -size_t ZSTD_initDStream_usingDDict(ZSTD_DStream* dctx, const ZSTD_DDict* ddict) -{ - FORWARD_IF_ERROR( ZSTD_DCtx_reset(dctx, ZSTD_reset_session_only) , ""); - FORWARD_IF_ERROR( ZSTD_DCtx_refDDict(dctx, ddict) , ""); - return ZSTD_startingInputLength(dctx->format); -} - -/* ZSTD_resetDStream() : - * return : expected size, aka ZSTD_startingInputLength(). - * this function cannot fail */ -size_t ZSTD_resetDStream(ZSTD_DStream* dctx) -{ - FORWARD_IF_ERROR(ZSTD_DCtx_reset(dctx, ZSTD_reset_session_only), ""); - return ZSTD_startingInputLength(dctx->format); -} - - -size_t ZSTD_DCtx_refDDict(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict) -{ - RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, ""); - ZSTD_clearDict(dctx); - if (ddict) { - dctx->ddict = ddict; - dctx->dictUses = ZSTD_use_indefinitely; - } - return 0; -} - -/* ZSTD_DCtx_setMaxWindowSize() : - * note : no direct equivalence in ZSTD_DCtx_setParameter, - * since this version sets windowSize, and the other sets windowLog */ -size_t ZSTD_DCtx_setMaxWindowSize(ZSTD_DCtx* dctx, size_t maxWindowSize) -{ - ZSTD_bounds const bounds = ZSTD_dParam_getBounds(ZSTD_d_windowLogMax); - size_t const min = (size_t)1 << bounds.lowerBound; - size_t const max = (size_t)1 << bounds.upperBound; - RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, ""); - RETURN_ERROR_IF(maxWindowSize < min, parameter_outOfBound, ""); - RETURN_ERROR_IF(maxWindowSize > max, parameter_outOfBound, ""); - dctx->maxWindowSize = maxWindowSize; - return 0; -} - -size_t ZSTD_DCtx_setFormat(ZSTD_DCtx* dctx, ZSTD_format_e format) -{ - return ZSTD_DCtx_setParameter(dctx, ZSTD_d_format, format); -} - -ZSTD_bounds ZSTD_dParam_getBounds(ZSTD_dParameter dParam) -{ - ZSTD_bounds bounds = { 0, 0, 0 }; - switch(dParam) { - case ZSTD_d_windowLogMax: - bounds.lowerBound = ZSTD_WINDOWLOG_ABSOLUTEMIN; - bounds.upperBound = ZSTD_WINDOWLOG_MAX; - return bounds; - case ZSTD_d_format: - bounds.lowerBound = (int)ZSTD_f_zstd1; - bounds.upperBound = (int)ZSTD_f_zstd1_magicless; - ZSTD_STATIC_ASSERT(ZSTD_f_zstd1 < ZSTD_f_zstd1_magicless); - return bounds; - case ZSTD_d_stableOutBuffer: - bounds.lowerBound = (int)ZSTD_obm_buffered; - bounds.upperBound = (int)ZSTD_obm_stable; - return bounds; - default:; - } - bounds.error = ERROR(parameter_unsupported); - return bounds; -} - -/* ZSTD_dParam_withinBounds: - * @return 1 if value is within dParam bounds, - * 0 otherwise */ -static int ZSTD_dParam_withinBounds(ZSTD_dParameter dParam, int value) -{ - ZSTD_bounds const bounds = ZSTD_dParam_getBounds(dParam); - if (ZSTD_isError(bounds.error)) return 0; - if (value < bounds.lowerBound) return 0; - if (value > bounds.upperBound) return 0; - return 1; -} - -#define CHECK_DBOUNDS(p,v) { \ - RETURN_ERROR_IF(!ZSTD_dParam_withinBounds(p, v), parameter_outOfBound, ""); \ -} - -size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter dParam, int value) -{ - RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, ""); - switch(dParam) { - case ZSTD_d_windowLogMax: - if (value == 0) value = ZSTD_WINDOWLOG_LIMIT_DEFAULT; - CHECK_DBOUNDS(ZSTD_d_windowLogMax, value); - dctx->maxWindowSize = ((size_t)1) << value; - return 0; - case ZSTD_d_format: - CHECK_DBOUNDS(ZSTD_d_format, value); - dctx->format = (ZSTD_format_e)value; - return 0; - case ZSTD_d_stableOutBuffer: - CHECK_DBOUNDS(ZSTD_d_stableOutBuffer, value); - dctx->outBufferMode = (ZSTD_outBufferMode_e)value; - return 0; - default:; - } - RETURN_ERROR(parameter_unsupported, ""); -} - -size_t ZSTD_DCtx_reset(ZSTD_DCtx* dctx, ZSTD_ResetDirective reset) -{ - if ( (reset == ZSTD_reset_session_only) - || (reset == ZSTD_reset_session_and_parameters) ) { - dctx->streamStage = zdss_init; - dctx->noForwardProgress = 0; - } - if ( (reset == ZSTD_reset_parameters) - || (reset == ZSTD_reset_session_and_parameters) ) { - RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, ""); - ZSTD_clearDict(dctx); - dctx->format = ZSTD_f_zstd1; - dctx->maxWindowSize = ZSTD_MAXWINDOWSIZE_DEFAULT; - } - return 0; -} - - -size_t ZSTD_sizeof_DStream(const ZSTD_DStream* dctx) -{ - return ZSTD_sizeof_DCtx(dctx); -} - -size_t ZSTD_decodingBufferSize_min(unsigned long long windowSize, unsigned long long frameContentSize) -{ - size_t const blockSize = (size_t) MIN(windowSize, ZSTD_BLOCKSIZE_MAX); - unsigned long long const neededRBSize = windowSize + blockSize + (WILDCOPY_OVERLENGTH * 2); - unsigned long long const neededSize = MIN(frameContentSize, neededRBSize); - size_t const minRBSize = (size_t) neededSize; - RETURN_ERROR_IF((unsigned long long)minRBSize != neededSize, - frameParameter_windowTooLarge, ""); - return minRBSize; -} - -size_t ZSTD_estimateDStreamSize(size_t windowSize) -{ - size_t const blockSize = MIN(windowSize, ZSTD_BLOCKSIZE_MAX); - size_t const inBuffSize = blockSize; /* no block can be larger */ - size_t const outBuffSize = ZSTD_decodingBufferSize_min(windowSize, ZSTD_CONTENTSIZE_UNKNOWN); - return ZSTD_estimateDCtxSize() + inBuffSize + outBuffSize; -} - -size_t ZSTD_estimateDStreamSize_fromFrame(const void* src, size_t srcSize) -{ - U32 const windowSizeMax = 1U << ZSTD_WINDOWLOG_MAX; /* note : should be user-selectable, but requires an additional parameter (or a dctx) */ - ZSTD_frameHeader zfh; - size_t const err = ZSTD_getFrameHeader(&zfh, src, srcSize); - if (ZSTD_isError(err)) return err; - RETURN_ERROR_IF(err>0, srcSize_wrong, ""); - RETURN_ERROR_IF(zfh.windowSize > windowSizeMax, - frameParameter_windowTooLarge, ""); - return ZSTD_estimateDStreamSize((size_t)zfh.windowSize); -} - - -/* ***** Decompression ***** */ - -static int ZSTD_DCtx_isOverflow(ZSTD_DStream* zds, size_t const neededInBuffSize, size_t const neededOutBuffSize) -{ - return (zds->inBuffSize + zds->outBuffSize) >= (neededInBuffSize + neededOutBuffSize) * ZSTD_WORKSPACETOOLARGE_FACTOR; -} - -static void ZSTD_DCtx_updateOversizedDuration(ZSTD_DStream* zds, size_t const neededInBuffSize, size_t const neededOutBuffSize) -{ - if (ZSTD_DCtx_isOverflow(zds, neededInBuffSize, neededOutBuffSize)) - zds->oversizedDuration++; - else - zds->oversizedDuration = 0; -} - -static int ZSTD_DCtx_isOversizedTooLong(ZSTD_DStream* zds) -{ - return zds->oversizedDuration >= ZSTD_WORKSPACETOOLARGE_MAXDURATION; -} - -/* Checks that the output buffer hasn't changed if ZSTD_obm_stable is used. */ -static size_t ZSTD_checkOutBuffer(ZSTD_DStream const* zds, ZSTD_outBuffer const* output) -{ - ZSTD_outBuffer const expect = zds->expectedOutBuffer; - /* No requirement when ZSTD_obm_stable is not enabled. */ - if (zds->outBufferMode != ZSTD_obm_stable) - return 0; - /* Any buffer is allowed in zdss_init, this must be the same for every other call until - * the context is reset. - */ - if (zds->streamStage == zdss_init) - return 0; - /* The buffer must match our expectation exactly. */ - if (expect.dst == output->dst && expect.pos == output->pos && expect.size == output->size) - return 0; - RETURN_ERROR(dstBuffer_wrong, "ZSTD_obm_stable enabled but output differs!"); -} - -/* Calls ZSTD_decompressContinue() with the right parameters for ZSTD_decompressStream() - * and updates the stage and the output buffer state. This call is extracted so it can be - * used both when reading directly from the ZSTD_inBuffer, and in buffered input mode. - * NOTE: You must break after calling this function since the streamStage is modified. - */ -static size_t ZSTD_decompressContinueStream( - ZSTD_DStream* zds, char** op, char* oend, - void const* src, size_t srcSize) { - int const isSkipFrame = ZSTD_isSkipFrame(zds); - if (zds->outBufferMode == ZSTD_obm_buffered) { - size_t const dstSize = isSkipFrame ? 0 : zds->outBuffSize - zds->outStart; - size_t const decodedSize = ZSTD_decompressContinue(zds, - zds->outBuff + zds->outStart, dstSize, src, srcSize); - FORWARD_IF_ERROR(decodedSize, ""); - if (!decodedSize && !isSkipFrame) { - zds->streamStage = zdss_read; - } else { - zds->outEnd = zds->outStart + decodedSize; - zds->streamStage = zdss_flush; - } - } else { - /* Write directly into the output buffer */ - size_t const dstSize = isSkipFrame ? 0 : oend - *op; - size_t const decodedSize = ZSTD_decompressContinue(zds, *op, dstSize, src, srcSize); - FORWARD_IF_ERROR(decodedSize, ""); - *op += decodedSize; - /* Flushing is not needed. */ - zds->streamStage = zdss_read; - assert(*op <= oend); - assert(zds->outBufferMode == ZSTD_obm_stable); - } - return 0; -} - -size_t ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inBuffer* input) -{ - const char* const src = (const char*)input->src; - const char* const istart = input->pos != 0 ? src + input->pos : src; - const char* const iend = input->size != 0 ? src + input->size : src; - const char* ip = istart; - char* const dst = (char*)output->dst; - char* const ostart = output->pos != 0 ? dst + output->pos : dst; - char* const oend = output->size != 0 ? dst + output->size : dst; - char* op = ostart; - U32 someMoreWork = 1; - - DEBUGLOG(5, "ZSTD_decompressStream"); - RETURN_ERROR_IF( - input->pos > input->size, - srcSize_wrong, - "forbidden. in: pos: %u vs size: %u", - (U32)input->pos, (U32)input->size); - RETURN_ERROR_IF( - output->pos > output->size, - dstSize_tooSmall, - "forbidden. out: pos: %u vs size: %u", - (U32)output->pos, (U32)output->size); - DEBUGLOG(5, "input size : %u", (U32)(input->size - input->pos)); - FORWARD_IF_ERROR(ZSTD_checkOutBuffer(zds, output), ""); - - while (someMoreWork) { - switch(zds->streamStage) - { - case zdss_init : - DEBUGLOG(5, "stage zdss_init => transparent reset "); - zds->streamStage = zdss_loadHeader; - zds->lhSize = zds->inPos = zds->outStart = zds->outEnd = 0; - zds->legacyVersion = 0; - zds->hostageByte = 0; - zds->expectedOutBuffer = *output; - /* fall-through */ - - case zdss_loadHeader : - DEBUGLOG(5, "stage zdss_loadHeader (srcSize : %u)", (U32)(iend - ip)); -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1) - if (zds->legacyVersion) { - RETURN_ERROR_IF(zds->staticSize, memory_allocation, - "legacy support is incompatible with static dctx"); - { size_t const hint = ZSTD_decompressLegacyStream(zds->legacyContext, zds->legacyVersion, output, input); - if (hint==0) zds->streamStage = zdss_init; - return hint; - } } -#endif - { size_t const hSize = ZSTD_getFrameHeader_advanced(&zds->fParams, zds->headerBuffer, zds->lhSize, zds->format); - DEBUGLOG(5, "header size : %u", (U32)hSize); - if (ZSTD_isError(hSize)) { -#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1) - U32 const legacyVersion = ZSTD_isLegacy(istart, iend-istart); - if (legacyVersion) { - ZSTD_DDict const* const ddict = ZSTD_getDDict(zds); - const void* const dict = ddict ? ZSTD_DDict_dictContent(ddict) : NULL; - size_t const dictSize = ddict ? ZSTD_DDict_dictSize(ddict) : 0; - DEBUGLOG(5, "ZSTD_decompressStream: detected legacy version v0.%u", legacyVersion); - RETURN_ERROR_IF(zds->staticSize, memory_allocation, - "legacy support is incompatible with static dctx"); - FORWARD_IF_ERROR(ZSTD_initLegacyStream(&zds->legacyContext, - zds->previousLegacyVersion, legacyVersion, - dict, dictSize), ""); - zds->legacyVersion = zds->previousLegacyVersion = legacyVersion; - { size_t const hint = ZSTD_decompressLegacyStream(zds->legacyContext, legacyVersion, output, input); - if (hint==0) zds->streamStage = zdss_init; /* or stay in stage zdss_loadHeader */ - return hint; - } } -#endif - return hSize; /* error */ - } - if (hSize != 0) { /* need more input */ - size_t const toLoad = hSize - zds->lhSize; /* if hSize!=0, hSize > zds->lhSize */ - size_t const remainingInput = (size_t)(iend-ip); - assert(iend >= ip); - if (toLoad > remainingInput) { /* not enough input to load full header */ - if (remainingInput > 0) { - memcpy(zds->headerBuffer + zds->lhSize, ip, remainingInput); - zds->lhSize += remainingInput; - } - input->pos = input->size; - return (MAX((size_t)ZSTD_FRAMEHEADERSIZE_MIN(zds->format), hSize) - zds->lhSize) + ZSTD_blockHeaderSize; /* remaining header bytes + next block header */ - } - assert(ip != NULL); - memcpy(zds->headerBuffer + zds->lhSize, ip, toLoad); zds->lhSize = hSize; ip += toLoad; - break; - } } - - /* check for single-pass mode opportunity */ - if (zds->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN - && zds->fParams.frameType != ZSTD_skippableFrame - && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) { - size_t const cSize = ZSTD_findFrameCompressedSize(istart, iend-istart); - if (cSize <= (size_t)(iend-istart)) { - /* shortcut : using single-pass mode */ - size_t const decompressedSize = ZSTD_decompress_usingDDict(zds, op, oend-op, istart, cSize, ZSTD_getDDict(zds)); - if (ZSTD_isError(decompressedSize)) return decompressedSize; - DEBUGLOG(4, "shortcut to single-pass ZSTD_decompress_usingDDict()") - ip = istart + cSize; - op += decompressedSize; - zds->expected = 0; - zds->streamStage = zdss_init; - someMoreWork = 0; - break; - } } - - /* Check output buffer is large enough for ZSTD_odm_stable. */ - if (zds->outBufferMode == ZSTD_obm_stable - && zds->fParams.frameType != ZSTD_skippableFrame - && zds->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN - && (U64)(size_t)(oend-op) < zds->fParams.frameContentSize) { - RETURN_ERROR(dstSize_tooSmall, "ZSTD_obm_stable passed but ZSTD_outBuffer is too small"); - } - - /* Consume header (see ZSTDds_decodeFrameHeader) */ - DEBUGLOG(4, "Consume header"); - FORWARD_IF_ERROR(ZSTD_decompressBegin_usingDDict(zds, ZSTD_getDDict(zds)), ""); - - if ((MEM_readLE32(zds->headerBuffer) & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) { /* skippable frame */ - zds->expected = MEM_readLE32(zds->headerBuffer + ZSTD_FRAMEIDSIZE); - zds->stage = ZSTDds_skipFrame; - } else { - FORWARD_IF_ERROR(ZSTD_decodeFrameHeader(zds, zds->headerBuffer, zds->lhSize), ""); - zds->expected = ZSTD_blockHeaderSize; - zds->stage = ZSTDds_decodeBlockHeader; - } - - /* control buffer memory usage */ - DEBUGLOG(4, "Control max memory usage (%u KB <= max %u KB)", - (U32)(zds->fParams.windowSize >>10), - (U32)(zds->maxWindowSize >> 10) ); - zds->fParams.windowSize = MAX(zds->fParams.windowSize, 1U << ZSTD_WINDOWLOG_ABSOLUTEMIN); - RETURN_ERROR_IF(zds->fParams.windowSize > zds->maxWindowSize, - frameParameter_windowTooLarge, ""); - - /* Adapt buffer sizes to frame header instructions */ - { size_t const neededInBuffSize = MAX(zds->fParams.blockSizeMax, 4 /* frame checksum */); - size_t const neededOutBuffSize = zds->outBufferMode == ZSTD_obm_buffered - ? ZSTD_decodingBufferSize_min(zds->fParams.windowSize, zds->fParams.frameContentSize) - : 0; - - ZSTD_DCtx_updateOversizedDuration(zds, neededInBuffSize, neededOutBuffSize); - - { int const tooSmall = (zds->inBuffSize < neededInBuffSize) || (zds->outBuffSize < neededOutBuffSize); - int const tooLarge = ZSTD_DCtx_isOversizedTooLong(zds); - - if (tooSmall || tooLarge) { - size_t const bufferSize = neededInBuffSize + neededOutBuffSize; - DEBUGLOG(4, "inBuff : from %u to %u", - (U32)zds->inBuffSize, (U32)neededInBuffSize); - DEBUGLOG(4, "outBuff : from %u to %u", - (U32)zds->outBuffSize, (U32)neededOutBuffSize); - if (zds->staticSize) { /* static DCtx */ - DEBUGLOG(4, "staticSize : %u", (U32)zds->staticSize); - assert(zds->staticSize >= sizeof(ZSTD_DCtx)); /* controlled at init */ - RETURN_ERROR_IF( - bufferSize > zds->staticSize - sizeof(ZSTD_DCtx), - memory_allocation, ""); - } else { - ZSTD_free(zds->inBuff, zds->customMem); - zds->inBuffSize = 0; - zds->outBuffSize = 0; - zds->inBuff = (char*)ZSTD_malloc(bufferSize, zds->customMem); - RETURN_ERROR_IF(zds->inBuff == NULL, memory_allocation, ""); - } - zds->inBuffSize = neededInBuffSize; - zds->outBuff = zds->inBuff + zds->inBuffSize; - zds->outBuffSize = neededOutBuffSize; - } } } - zds->streamStage = zdss_read; - /* fall-through */ - - case zdss_read: - DEBUGLOG(5, "stage zdss_read"); - { size_t const neededInSize = ZSTD_nextSrcSizeToDecompressWithInputSize(zds, iend - ip); - DEBUGLOG(5, "neededInSize = %u", (U32)neededInSize); - if (neededInSize==0) { /* end of frame */ - zds->streamStage = zdss_init; - someMoreWork = 0; - break; - } - if ((size_t)(iend-ip) >= neededInSize) { /* decode directly from src */ - FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, ip, neededInSize), ""); - ip += neededInSize; - /* Function modifies the stage so we must break */ - break; - } } - if (ip==iend) { someMoreWork = 0; break; } /* no more input */ - zds->streamStage = zdss_load; - /* fall-through */ - - case zdss_load: - { size_t const neededInSize = ZSTD_nextSrcSizeToDecompress(zds); - size_t const toLoad = neededInSize - zds->inPos; - int const isSkipFrame = ZSTD_isSkipFrame(zds); - size_t loadedSize; - /* At this point we shouldn't be decompressing a block that we can stream. */ - assert(neededInSize == ZSTD_nextSrcSizeToDecompressWithInputSize(zds, iend - ip)); - if (isSkipFrame) { - loadedSize = MIN(toLoad, (size_t)(iend-ip)); - } else { - RETURN_ERROR_IF(toLoad > zds->inBuffSize - zds->inPos, - corruption_detected, - "should never happen"); - loadedSize = ZSTD_limitCopy(zds->inBuff + zds->inPos, toLoad, ip, iend-ip); - } - ip += loadedSize; - zds->inPos += loadedSize; - if (loadedSize < toLoad) { someMoreWork = 0; break; } /* not enough input, wait for more */ - - /* decode loaded input */ - zds->inPos = 0; /* input is consumed */ - FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, zds->inBuff, neededInSize), ""); - /* Function modifies the stage so we must break */ - break; - } - case zdss_flush: - { size_t const toFlushSize = zds->outEnd - zds->outStart; - size_t const flushedSize = ZSTD_limitCopy(op, oend-op, zds->outBuff + zds->outStart, toFlushSize); - op += flushedSize; - zds->outStart += flushedSize; - if (flushedSize == toFlushSize) { /* flush completed */ - zds->streamStage = zdss_read; - if ( (zds->outBuffSize < zds->fParams.frameContentSize) - && (zds->outStart + zds->fParams.blockSizeMax > zds->outBuffSize) ) { - DEBUGLOG(5, "restart filling outBuff from beginning (left:%i, needed:%u)", - (int)(zds->outBuffSize - zds->outStart), - (U32)zds->fParams.blockSizeMax); - zds->outStart = zds->outEnd = 0; - } - break; - } } - /* cannot complete flush */ - someMoreWork = 0; - break; - - default: - assert(0); /* impossible */ - RETURN_ERROR(GENERIC, "impossible to reach"); /* some compiler require default to do something */ - } } - - /* result */ - input->pos = (size_t)(ip - (const char*)(input->src)); - output->pos = (size_t)(op - (char*)(output->dst)); - - /* Update the expected output buffer for ZSTD_obm_stable. */ - zds->expectedOutBuffer = *output; - - if ((ip==istart) && (op==ostart)) { /* no forward progress */ - zds->noForwardProgress ++; - if (zds->noForwardProgress >= ZSTD_NO_FORWARD_PROGRESS_MAX) { - RETURN_ERROR_IF(op==oend, dstSize_tooSmall, ""); - RETURN_ERROR_IF(ip==iend, srcSize_wrong, ""); - assert(0); - } - } else { - zds->noForwardProgress = 0; - } - { size_t nextSrcSizeHint = ZSTD_nextSrcSizeToDecompress(zds); - if (!nextSrcSizeHint) { /* frame fully decoded */ - if (zds->outEnd == zds->outStart) { /* output fully flushed */ - if (zds->hostageByte) { - if (input->pos >= input->size) { - /* can't release hostage (not present) */ - zds->streamStage = zdss_read; - return 1; - } - input->pos++; /* release hostage */ - } /* zds->hostageByte */ - return 0; - } /* zds->outEnd == zds->outStart */ - if (!zds->hostageByte) { /* output not fully flushed; keep last byte as hostage; will be released when all output is flushed */ - input->pos--; /* note : pos > 0, otherwise, impossible to finish reading last block */ - zds->hostageByte=1; - } - return 1; - } /* nextSrcSizeHint==0 */ - nextSrcSizeHint += ZSTD_blockHeaderSize * (ZSTD_nextInputType(zds) == ZSTDnit_block); /* preload header of next block */ - assert(zds->inPos <= nextSrcSizeHint); - nextSrcSizeHint -= zds->inPos; /* part already loaded*/ - return nextSrcSizeHint; - } -} - -size_t ZSTD_decompressStream_simpleArgs ( - ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, size_t* dstPos, - const void* src, size_t srcSize, size_t* srcPos) -{ - ZSTD_outBuffer output = { dst, dstCapacity, *dstPos }; - ZSTD_inBuffer input = { src, srcSize, *srcPos }; - /* ZSTD_compress_generic() will check validity of dstPos and srcPos */ - size_t const cErr = ZSTD_decompressStream(dctx, &output, &input); - *dstPos = output.pos; - *srcPos = input.pos; - return cErr; -} diff --git a/lib/SZ3/tools/zstd/decompress/zstd_decompress_block.c b/lib/SZ3/tools/zstd/decompress/zstd_decompress_block.c deleted file mode 100644 index ad3b3d8d..00000000 --- a/lib/SZ3/tools/zstd/decompress/zstd_decompress_block.c +++ /dev/null @@ -1,1432 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/* zstd_decompress_block : - * this module takes care of decompressing _compressed_ block */ - -/*-******************************************************* -* Dependencies -*********************************************************/ -#include /* memcpy, memmove, memset */ -#include "../common/compiler.h" /* prefetch */ -#include "../common/cpu.h" /* bmi2 */ -#include "../common/mem.h" /* low level memory routines */ -#define FSE_STATIC_LINKING_ONLY -#include "../common/fse.h" -#define HUF_STATIC_LINKING_ONLY -#include "../common/huf.h" -#include "../common/zstd_internal.h" -#include "zstd_decompress_internal.h" /* ZSTD_DCtx */ -#include "zstd_ddict.h" /* ZSTD_DDictDictContent */ -#include "zstd_decompress_block.h" - -/*_******************************************************* -* Macros -**********************************************************/ - -/* These two optional macros force the use one way or another of the two - * ZSTD_decompressSequences implementations. You can't force in both directions - * at the same time. - */ -#if defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT) && \ - defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG) -#error "Cannot force the use of the short and the long ZSTD_decompressSequences variants!" -#endif - - -/*_******************************************************* -* Memory operations -**********************************************************/ -static void ZSTD_copy4(void* dst, const void* src) { memcpy(dst, src, 4); } - - -/*-************************************************************* - * Block decoding - ***************************************************************/ - -/*! ZSTD_getcBlockSize() : - * Provides the size of compressed block from block header `src` */ -size_t ZSTD_getcBlockSize(const void* src, size_t srcSize, - blockProperties_t* bpPtr) -{ - RETURN_ERROR_IF(srcSize < ZSTD_blockHeaderSize, srcSize_wrong, ""); - - { U32 const cBlockHeader = MEM_readLE24(src); - U32 const cSize = cBlockHeader >> 3; - bpPtr->lastBlock = cBlockHeader & 1; - bpPtr->blockType = (blockType_e)((cBlockHeader >> 1) & 3); - bpPtr->origSize = cSize; /* only useful for RLE */ - if (bpPtr->blockType == bt_rle) return 1; - RETURN_ERROR_IF(bpPtr->blockType == bt_reserved, corruption_detected, ""); - return cSize; - } -} - - -/* Hidden declaration for fullbench */ -size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx, - const void* src, size_t srcSize); -/*! ZSTD_decodeLiteralsBlock() : - * @return : nb of bytes read from src (< srcSize ) - * note : symbol not declared but exposed for fullbench */ -size_t ZSTD_decodeLiteralsBlock(ZSTD_DCtx* dctx, - const void* src, size_t srcSize) /* note : srcSize < BLOCKSIZE */ -{ - DEBUGLOG(5, "ZSTD_decodeLiteralsBlock"); - RETURN_ERROR_IF(srcSize < MIN_CBLOCK_SIZE, corruption_detected, ""); - - { const BYTE* const istart = (const BYTE*) src; - symbolEncodingType_e const litEncType = (symbolEncodingType_e)(istart[0] & 3); - - switch(litEncType) - { - case set_repeat: - DEBUGLOG(5, "set_repeat flag : re-using stats from previous compressed literals block"); - RETURN_ERROR_IF(dctx->litEntropy==0, dictionary_corrupted, ""); - /* fall-through */ - - case set_compressed: - RETURN_ERROR_IF(srcSize < 5, corruption_detected, "srcSize >= MIN_CBLOCK_SIZE == 3; here we need up to 5 for case 3"); - { size_t lhSize, litSize, litCSize; - U32 singleStream=0; - U32 const lhlCode = (istart[0] >> 2) & 3; - U32 const lhc = MEM_readLE32(istart); - size_t hufSuccess; - switch(lhlCode) - { - case 0: case 1: default: /* note : default is impossible, since lhlCode into [0..3] */ - /* 2 - 2 - 10 - 10 */ - singleStream = !lhlCode; - lhSize = 3; - litSize = (lhc >> 4) & 0x3FF; - litCSize = (lhc >> 14) & 0x3FF; - break; - case 2: - /* 2 - 2 - 14 - 14 */ - lhSize = 4; - litSize = (lhc >> 4) & 0x3FFF; - litCSize = lhc >> 18; - break; - case 3: - /* 2 - 2 - 18 - 18 */ - lhSize = 5; - litSize = (lhc >> 4) & 0x3FFFF; - litCSize = (lhc >> 22) + ((size_t)istart[4] << 10); - break; - } - RETURN_ERROR_IF(litSize > ZSTD_BLOCKSIZE_MAX, corruption_detected, ""); - RETURN_ERROR_IF(litCSize + lhSize > srcSize, corruption_detected, ""); - - /* prefetch huffman table if cold */ - if (dctx->ddictIsCold && (litSize > 768 /* heuristic */)) { - PREFETCH_AREA(dctx->HUFptr, sizeof(dctx->entropy.hufTable)); - } - - if (litEncType==set_repeat) { - if (singleStream) { - hufSuccess = HUF_decompress1X_usingDTable_bmi2( - dctx->litBuffer, litSize, istart+lhSize, litCSize, - dctx->HUFptr, dctx->bmi2); - } else { - hufSuccess = HUF_decompress4X_usingDTable_bmi2( - dctx->litBuffer, litSize, istart+lhSize, litCSize, - dctx->HUFptr, dctx->bmi2); - } - } else { - if (singleStream) { -#if defined(HUF_FORCE_DECOMPRESS_X2) - hufSuccess = HUF_decompress1X_DCtx_wksp( - dctx->entropy.hufTable, dctx->litBuffer, litSize, - istart+lhSize, litCSize, dctx->workspace, - sizeof(dctx->workspace)); -#else - hufSuccess = HUF_decompress1X1_DCtx_wksp_bmi2( - dctx->entropy.hufTable, dctx->litBuffer, litSize, - istart+lhSize, litCSize, dctx->workspace, - sizeof(dctx->workspace), dctx->bmi2); -#endif - } else { - hufSuccess = HUF_decompress4X_hufOnly_wksp_bmi2( - dctx->entropy.hufTable, dctx->litBuffer, litSize, - istart+lhSize, litCSize, dctx->workspace, - sizeof(dctx->workspace), dctx->bmi2); - } - } - - RETURN_ERROR_IF(HUF_isError(hufSuccess), corruption_detected, ""); - - dctx->litPtr = dctx->litBuffer; - dctx->litSize = litSize; - dctx->litEntropy = 1; - if (litEncType==set_compressed) dctx->HUFptr = dctx->entropy.hufTable; - memset(dctx->litBuffer + dctx->litSize, 0, WILDCOPY_OVERLENGTH); - return litCSize + lhSize; - } - - case set_basic: - { size_t litSize, lhSize; - U32 const lhlCode = ((istart[0]) >> 2) & 3; - switch(lhlCode) - { - case 0: case 2: default: /* note : default is impossible, since lhlCode into [0..3] */ - lhSize = 1; - litSize = istart[0] >> 3; - break; - case 1: - lhSize = 2; - litSize = MEM_readLE16(istart) >> 4; - break; - case 3: - lhSize = 3; - litSize = MEM_readLE24(istart) >> 4; - break; - } - - if (lhSize+litSize+WILDCOPY_OVERLENGTH > srcSize) { /* risk reading beyond src buffer with wildcopy */ - RETURN_ERROR_IF(litSize+lhSize > srcSize, corruption_detected, ""); - memcpy(dctx->litBuffer, istart+lhSize, litSize); - dctx->litPtr = dctx->litBuffer; - dctx->litSize = litSize; - memset(dctx->litBuffer + dctx->litSize, 0, WILDCOPY_OVERLENGTH); - return lhSize+litSize; - } - /* direct reference into compressed stream */ - dctx->litPtr = istart+lhSize; - dctx->litSize = litSize; - return lhSize+litSize; - } - - case set_rle: - { U32 const lhlCode = ((istart[0]) >> 2) & 3; - size_t litSize, lhSize; - switch(lhlCode) - { - case 0: case 2: default: /* note : default is impossible, since lhlCode into [0..3] */ - lhSize = 1; - litSize = istart[0] >> 3; - break; - case 1: - lhSize = 2; - litSize = MEM_readLE16(istart) >> 4; - break; - case 3: - lhSize = 3; - litSize = MEM_readLE24(istart) >> 4; - RETURN_ERROR_IF(srcSize<4, corruption_detected, "srcSize >= MIN_CBLOCK_SIZE == 3; here we need lhSize+1 = 4"); - break; - } - RETURN_ERROR_IF(litSize > ZSTD_BLOCKSIZE_MAX, corruption_detected, ""); - memset(dctx->litBuffer, istart[lhSize], litSize + WILDCOPY_OVERLENGTH); - dctx->litPtr = dctx->litBuffer; - dctx->litSize = litSize; - return lhSize+1; - } - default: - RETURN_ERROR(corruption_detected, "impossible"); - } - } -} - -/* Default FSE distribution tables. - * These are pre-calculated FSE decoding tables using default distributions as defined in specification : - * https://github.com/facebook/zstd/blob/master/doc/zstd_compression_format.md#default-distributions - * They were generated programmatically with following method : - * - start from default distributions, present in /lib/common/zstd_internal.h - * - generate tables normally, using ZSTD_buildFSETable() - * - printout the content of tables - * - pretify output, report below, test with fuzzer to ensure it's correct */ - -/* Default FSE distribution table for Literal Lengths */ -static const ZSTD_seqSymbol LL_defaultDTable[(1<tableLog = 0; - DTableH->fastMode = 0; - - cell->nbBits = 0; - cell->nextState = 0; - assert(nbAddBits < 255); - cell->nbAdditionalBits = (BYTE)nbAddBits; - cell->baseValue = baseValue; -} - - -/* ZSTD_buildFSETable() : - * generate FSE decoding table for one symbol (ll, ml or off) - * cannot fail if input is valid => - * all inputs are presumed validated at this stage */ -void -ZSTD_buildFSETable(ZSTD_seqSymbol* dt, - const short* normalizedCounter, unsigned maxSymbolValue, - const U32* baseValue, const U32* nbAdditionalBits, - unsigned tableLog) -{ - ZSTD_seqSymbol* const tableDecode = dt+1; - U16 symbolNext[MaxSeq+1]; - - U32 const maxSV1 = maxSymbolValue + 1; - U32 const tableSize = 1 << tableLog; - U32 highThreshold = tableSize-1; - - /* Sanity Checks */ - assert(maxSymbolValue <= MaxSeq); - assert(tableLog <= MaxFSELog); - - /* Init, lay down lowprob symbols */ - { ZSTD_seqSymbol_header DTableH; - DTableH.tableLog = tableLog; - DTableH.fastMode = 1; - { S16 const largeLimit= (S16)(1 << (tableLog-1)); - U32 s; - for (s=0; s= largeLimit) DTableH.fastMode=0; - assert(normalizedCounter[s]>=0); - symbolNext[s] = (U16)normalizedCounter[s]; - } } } - memcpy(dt, &DTableH, sizeof(DTableH)); - } - - /* Spread symbols */ - { U32 const tableMask = tableSize-1; - U32 const step = FSE_TABLESTEP(tableSize); - U32 s, position = 0; - for (s=0; s highThreshold) position = (position + step) & tableMask; /* lowprob area */ - } } - assert(position == 0); /* position must reach all cells once, otherwise normalizedCounter is incorrect */ - } - - /* Build Decoding table */ - { U32 u; - for (u=0; u max, corruption_detected, ""); - { U32 const symbol = *(const BYTE*)src; - U32 const baseline = baseValue[symbol]; - U32 const nbBits = nbAdditionalBits[symbol]; - ZSTD_buildSeqTable_rle(DTableSpace, baseline, nbBits); - } - *DTablePtr = DTableSpace; - return 1; - case set_basic : - *DTablePtr = defaultTable; - return 0; - case set_repeat: - RETURN_ERROR_IF(!flagRepeatTable, corruption_detected, ""); - /* prefetch FSE table if used */ - if (ddictIsCold && (nbSeq > 24 /* heuristic */)) { - const void* const pStart = *DTablePtr; - size_t const pSize = sizeof(ZSTD_seqSymbol) * (SEQSYMBOL_TABLE_SIZE(maxLog)); - PREFETCH_AREA(pStart, pSize); - } - return 0; - case set_compressed : - { unsigned tableLog; - S16 norm[MaxSeq+1]; - size_t const headerSize = FSE_readNCount(norm, &max, &tableLog, src, srcSize); - RETURN_ERROR_IF(FSE_isError(headerSize), corruption_detected, ""); - RETURN_ERROR_IF(tableLog > maxLog, corruption_detected, ""); - ZSTD_buildFSETable(DTableSpace, norm, max, baseValue, nbAdditionalBits, tableLog); - *DTablePtr = DTableSpace; - return headerSize; - } - default : - assert(0); - RETURN_ERROR(GENERIC, "impossible"); - } -} - -size_t ZSTD_decodeSeqHeaders(ZSTD_DCtx* dctx, int* nbSeqPtr, - const void* src, size_t srcSize) -{ - const BYTE* const istart = (const BYTE* const)src; - const BYTE* const iend = istart + srcSize; - const BYTE* ip = istart; - int nbSeq; - DEBUGLOG(5, "ZSTD_decodeSeqHeaders"); - - /* check */ - RETURN_ERROR_IF(srcSize < MIN_SEQUENCES_SIZE, srcSize_wrong, ""); - - /* SeqHead */ - nbSeq = *ip++; - if (!nbSeq) { - *nbSeqPtr=0; - RETURN_ERROR_IF(srcSize != 1, srcSize_wrong, ""); - return 1; - } - if (nbSeq > 0x7F) { - if (nbSeq == 0xFF) { - RETURN_ERROR_IF(ip+2 > iend, srcSize_wrong, ""); - nbSeq = MEM_readLE16(ip) + LONGNBSEQ, ip+=2; - } else { - RETURN_ERROR_IF(ip >= iend, srcSize_wrong, ""); - nbSeq = ((nbSeq-0x80)<<8) + *ip++; - } - } - *nbSeqPtr = nbSeq; - - /* FSE table descriptors */ - RETURN_ERROR_IF(ip+1 > iend, srcSize_wrong, ""); /* minimum possible size: 1 byte for symbol encoding types */ - { symbolEncodingType_e const LLtype = (symbolEncodingType_e)(*ip >> 6); - symbolEncodingType_e const OFtype = (symbolEncodingType_e)((*ip >> 4) & 3); - symbolEncodingType_e const MLtype = (symbolEncodingType_e)((*ip >> 2) & 3); - ip++; - - /* Build DTables */ - { size_t const llhSize = ZSTD_buildSeqTable(dctx->entropy.LLTable, &dctx->LLTptr, - LLtype, MaxLL, LLFSELog, - ip, iend-ip, - LL_base, LL_bits, - LL_defaultDTable, dctx->fseEntropy, - dctx->ddictIsCold, nbSeq); - RETURN_ERROR_IF(ZSTD_isError(llhSize), corruption_detected, "ZSTD_buildSeqTable failed"); - ip += llhSize; - } - - { size_t const ofhSize = ZSTD_buildSeqTable(dctx->entropy.OFTable, &dctx->OFTptr, - OFtype, MaxOff, OffFSELog, - ip, iend-ip, - OF_base, OF_bits, - OF_defaultDTable, dctx->fseEntropy, - dctx->ddictIsCold, nbSeq); - RETURN_ERROR_IF(ZSTD_isError(ofhSize), corruption_detected, "ZSTD_buildSeqTable failed"); - ip += ofhSize; - } - - { size_t const mlhSize = ZSTD_buildSeqTable(dctx->entropy.MLTable, &dctx->MLTptr, - MLtype, MaxML, MLFSELog, - ip, iend-ip, - ML_base, ML_bits, - ML_defaultDTable, dctx->fseEntropy, - dctx->ddictIsCold, nbSeq); - RETURN_ERROR_IF(ZSTD_isError(mlhSize), corruption_detected, "ZSTD_buildSeqTable failed"); - ip += mlhSize; - } - } - - return ip-istart; -} - - -typedef struct { - size_t litLength; - size_t matchLength; - size_t offset; - const BYTE* match; -} seq_t; - -typedef struct { - size_t state; - const ZSTD_seqSymbol* table; -} ZSTD_fseState; - -typedef struct { - BIT_DStream_t DStream; - ZSTD_fseState stateLL; - ZSTD_fseState stateOffb; - ZSTD_fseState stateML; - size_t prevOffset[ZSTD_REP_NUM]; - const BYTE* prefixStart; - const BYTE* dictEnd; - size_t pos; -} seqState_t; - -/*! ZSTD_overlapCopy8() : - * Copies 8 bytes from ip to op and updates op and ip where ip <= op. - * If the offset is < 8 then the offset is spread to at least 8 bytes. - * - * Precondition: *ip <= *op - * Postcondition: *op - *op >= 8 - */ -HINT_INLINE void ZSTD_overlapCopy8(BYTE** op, BYTE const** ip, size_t offset) { - assert(*ip <= *op); - if (offset < 8) { - /* close range match, overlap */ - static const U32 dec32table[] = { 0, 1, 2, 1, 4, 4, 4, 4 }; /* added */ - static const int dec64table[] = { 8, 8, 8, 7, 8, 9,10,11 }; /* subtracted */ - int const sub2 = dec64table[offset]; - (*op)[0] = (*ip)[0]; - (*op)[1] = (*ip)[1]; - (*op)[2] = (*ip)[2]; - (*op)[3] = (*ip)[3]; - *ip += dec32table[offset]; - ZSTD_copy4(*op+4, *ip); - *ip -= sub2; - } else { - ZSTD_copy8(*op, *ip); - } - *ip += 8; - *op += 8; - assert(*op - *ip >= 8); -} - -/*! ZSTD_safecopy() : - * Specialized version of memcpy() that is allowed to READ up to WILDCOPY_OVERLENGTH past the input buffer - * and write up to 16 bytes past oend_w (op >= oend_w is allowed). - * This function is only called in the uncommon case where the sequence is near the end of the block. It - * should be fast for a single long sequence, but can be slow for several short sequences. - * - * @param ovtype controls the overlap detection - * - ZSTD_no_overlap: The source and destination are guaranteed to be at least WILDCOPY_VECLEN bytes apart. - * - ZSTD_overlap_src_before_dst: The src and dst may overlap and may be any distance apart. - * The src buffer must be before the dst buffer. - */ -static void ZSTD_safecopy(BYTE* op, BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) { - ptrdiff_t const diff = op - ip; - BYTE* const oend = op + length; - - assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) || - (ovtype == ZSTD_overlap_src_before_dst && diff >= 0)); - - if (length < 8) { - /* Handle short lengths. */ - while (op < oend) *op++ = *ip++; - return; - } - if (ovtype == ZSTD_overlap_src_before_dst) { - /* Copy 8 bytes and ensure the offset >= 8 when there can be overlap. */ - assert(length >= 8); - ZSTD_overlapCopy8(&op, &ip, diff); - assert(op - ip >= 8); - assert(op <= oend); - } - - if (oend <= oend_w) { - /* No risk of overwrite. */ - ZSTD_wildcopy(op, ip, length, ovtype); - return; - } - if (op <= oend_w) { - /* Wildcopy until we get close to the end. */ - assert(oend > oend_w); - ZSTD_wildcopy(op, ip, oend_w - op, ovtype); - ip += oend_w - op; - op = oend_w; - } - /* Handle the leftovers. */ - while (op < oend) *op++ = *ip++; -} - -/* ZSTD_execSequenceEnd(): - * This version handles cases that are near the end of the output buffer. It requires - * more careful checks to make sure there is no overflow. By separating out these hard - * and unlikely cases, we can speed up the common cases. - * - * NOTE: This function needs to be fast for a single long sequence, but doesn't need - * to be optimized for many small sequences, since those fall into ZSTD_execSequence(). - */ -FORCE_NOINLINE -size_t ZSTD_execSequenceEnd(BYTE* op, - BYTE* const oend, seq_t sequence, - const BYTE** litPtr, const BYTE* const litLimit, - const BYTE* const prefixStart, const BYTE* const virtualStart, const BYTE* const dictEnd) -{ - BYTE* const oLitEnd = op + sequence.litLength; - size_t const sequenceLength = sequence.litLength + sequence.matchLength; - const BYTE* const iLitEnd = *litPtr + sequence.litLength; - const BYTE* match = oLitEnd - sequence.offset; - BYTE* const oend_w = oend - WILDCOPY_OVERLENGTH; - - /* bounds checks : careful of address space overflow in 32-bit mode */ - RETURN_ERROR_IF(sequenceLength > (size_t)(oend - op), dstSize_tooSmall, "last match must fit within dstBuffer"); - RETURN_ERROR_IF(sequence.litLength > (size_t)(litLimit - *litPtr), corruption_detected, "try to read beyond literal buffer"); - assert(op < op + sequenceLength); - assert(oLitEnd < op + sequenceLength); - - /* copy literals */ - ZSTD_safecopy(op, oend_w, *litPtr, sequence.litLength, ZSTD_no_overlap); - op = oLitEnd; - *litPtr = iLitEnd; - - /* copy Match */ - if (sequence.offset > (size_t)(oLitEnd - prefixStart)) { - /* offset beyond prefix */ - RETURN_ERROR_IF(sequence.offset > (size_t)(oLitEnd - virtualStart), corruption_detected, ""); - match = dictEnd - (prefixStart-match); - if (match + sequence.matchLength <= dictEnd) { - memmove(oLitEnd, match, sequence.matchLength); - return sequenceLength; - } - /* span extDict & currentPrefixSegment */ - { size_t const length1 = dictEnd - match; - memmove(oLitEnd, match, length1); - op = oLitEnd + length1; - sequence.matchLength -= length1; - match = prefixStart; - } } - ZSTD_safecopy(op, oend_w, match, sequence.matchLength, ZSTD_overlap_src_before_dst); - return sequenceLength; -} - -HINT_INLINE -size_t ZSTD_execSequence(BYTE* op, - BYTE* const oend, seq_t sequence, - const BYTE** litPtr, const BYTE* const litLimit, - const BYTE* const prefixStart, const BYTE* const virtualStart, const BYTE* const dictEnd) -{ - BYTE* const oLitEnd = op + sequence.litLength; - size_t const sequenceLength = sequence.litLength + sequence.matchLength; - BYTE* const oMatchEnd = op + sequenceLength; /* risk : address space overflow (32-bits) */ - BYTE* const oend_w = oend - WILDCOPY_OVERLENGTH; /* risk : address space underflow on oend=NULL */ - const BYTE* const iLitEnd = *litPtr + sequence.litLength; - const BYTE* match = oLitEnd - sequence.offset; - - assert(op != NULL /* Precondition */); - assert(oend_w < oend /* No underflow */); - /* Handle edge cases in a slow path: - * - Read beyond end of literals - * - Match end is within WILDCOPY_OVERLIMIT of oend - * - 32-bit mode and the match length overflows - */ - if (UNLIKELY( - iLitEnd > litLimit || - oMatchEnd > oend_w || - (MEM_32bits() && (size_t)(oend - op) < sequenceLength + WILDCOPY_OVERLENGTH))) - return ZSTD_execSequenceEnd(op, oend, sequence, litPtr, litLimit, prefixStart, virtualStart, dictEnd); - - /* Assumptions (everything else goes into ZSTD_execSequenceEnd()) */ - assert(op <= oLitEnd /* No overflow */); - assert(oLitEnd < oMatchEnd /* Non-zero match & no overflow */); - assert(oMatchEnd <= oend /* No underflow */); - assert(iLitEnd <= litLimit /* Literal length is in bounds */); - assert(oLitEnd <= oend_w /* Can wildcopy literals */); - assert(oMatchEnd <= oend_w /* Can wildcopy matches */); - - /* Copy Literals: - * Split out litLength <= 16 since it is nearly always true. +1.6% on gcc-9. - * We likely don't need the full 32-byte wildcopy. - */ - assert(WILDCOPY_OVERLENGTH >= 16); - ZSTD_copy16(op, (*litPtr)); - if (UNLIKELY(sequence.litLength > 16)) { - ZSTD_wildcopy(op+16, (*litPtr)+16, sequence.litLength-16, ZSTD_no_overlap); - } - op = oLitEnd; - *litPtr = iLitEnd; /* update for next sequence */ - - /* Copy Match */ - if (sequence.offset > (size_t)(oLitEnd - prefixStart)) { - /* offset beyond prefix -> go into extDict */ - RETURN_ERROR_IF(UNLIKELY(sequence.offset > (size_t)(oLitEnd - virtualStart)), corruption_detected, ""); - match = dictEnd + (match - prefixStart); - if (match + sequence.matchLength <= dictEnd) { - memmove(oLitEnd, match, sequence.matchLength); - return sequenceLength; - } - /* span extDict & currentPrefixSegment */ - { size_t const length1 = dictEnd - match; - memmove(oLitEnd, match, length1); - op = oLitEnd + length1; - sequence.matchLength -= length1; - match = prefixStart; - } } - /* Match within prefix of 1 or more bytes */ - assert(op <= oMatchEnd); - assert(oMatchEnd <= oend_w); - assert(match >= prefixStart); - assert(sequence.matchLength >= 1); - - /* Nearly all offsets are >= WILDCOPY_VECLEN bytes, which means we can use wildcopy - * without overlap checking. - */ - if (LIKELY(sequence.offset >= WILDCOPY_VECLEN)) { - /* We bet on a full wildcopy for matches, since we expect matches to be - * longer than literals (in general). In silesia, ~10% of matches are longer - * than 16 bytes. - */ - ZSTD_wildcopy(op, match, (ptrdiff_t)sequence.matchLength, ZSTD_no_overlap); - return sequenceLength; - } - assert(sequence.offset < WILDCOPY_VECLEN); - - /* Copy 8 bytes and spread the offset to be >= 8. */ - ZSTD_overlapCopy8(&op, &match, sequence.offset); - - /* If the match length is > 8 bytes, then continue with the wildcopy. */ - if (sequence.matchLength > 8) { - assert(op < oMatchEnd); - ZSTD_wildcopy(op, match, (ptrdiff_t)sequence.matchLength-8, ZSTD_overlap_src_before_dst); - } - return sequenceLength; -} - -static void -ZSTD_initFseState(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, const ZSTD_seqSymbol* dt) -{ - const void* ptr = dt; - const ZSTD_seqSymbol_header* const DTableH = (const ZSTD_seqSymbol_header*)ptr; - DStatePtr->state = BIT_readBits(bitD, DTableH->tableLog); - DEBUGLOG(6, "ZSTD_initFseState : val=%u using %u bits", - (U32)DStatePtr->state, DTableH->tableLog); - BIT_reloadDStream(bitD); - DStatePtr->table = dt + 1; -} - -FORCE_INLINE_TEMPLATE void -ZSTD_updateFseState(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD) -{ - ZSTD_seqSymbol const DInfo = DStatePtr->table[DStatePtr->state]; - U32 const nbBits = DInfo.nbBits; - size_t const lowBits = BIT_readBits(bitD, nbBits); - DStatePtr->state = DInfo.nextState + lowBits; -} - -FORCE_INLINE_TEMPLATE void -ZSTD_updateFseStateWithDInfo(ZSTD_fseState* DStatePtr, BIT_DStream_t* bitD, ZSTD_seqSymbol const DInfo) -{ - U32 const nbBits = DInfo.nbBits; - size_t const lowBits = BIT_readBits(bitD, nbBits); - DStatePtr->state = DInfo.nextState + lowBits; -} - -/* We need to add at most (ZSTD_WINDOWLOG_MAX_32 - 1) bits to read the maximum - * offset bits. But we can only read at most (STREAM_ACCUMULATOR_MIN_32 - 1) - * bits before reloading. This value is the maximum number of bytes we read - * after reloading when we are decoding long offsets. - */ -#define LONG_OFFSETS_MAX_EXTRA_BITS_32 \ - (ZSTD_WINDOWLOG_MAX_32 > STREAM_ACCUMULATOR_MIN_32 \ - ? ZSTD_WINDOWLOG_MAX_32 - STREAM_ACCUMULATOR_MIN_32 \ - : 0) - -typedef enum { ZSTD_lo_isRegularOffset, ZSTD_lo_isLongOffset=1 } ZSTD_longOffset_e; -typedef enum { ZSTD_p_noPrefetch=0, ZSTD_p_prefetch=1 } ZSTD_prefetch_e; - -FORCE_INLINE_TEMPLATE seq_t -ZSTD_decodeSequence(seqState_t* seqState, const ZSTD_longOffset_e longOffsets, const ZSTD_prefetch_e prefetch) -{ - seq_t seq; - ZSTD_seqSymbol const llDInfo = seqState->stateLL.table[seqState->stateLL.state]; - ZSTD_seqSymbol const mlDInfo = seqState->stateML.table[seqState->stateML.state]; - ZSTD_seqSymbol const ofDInfo = seqState->stateOffb.table[seqState->stateOffb.state]; - U32 const llBase = llDInfo.baseValue; - U32 const mlBase = mlDInfo.baseValue; - U32 const ofBase = ofDInfo.baseValue; - BYTE const llBits = llDInfo.nbAdditionalBits; - BYTE const mlBits = mlDInfo.nbAdditionalBits; - BYTE const ofBits = ofDInfo.nbAdditionalBits; - BYTE const totalBits = llBits+mlBits+ofBits; - - /* sequence */ - { size_t offset; - if (ofBits > 1) { - ZSTD_STATIC_ASSERT(ZSTD_lo_isLongOffset == 1); - ZSTD_STATIC_ASSERT(LONG_OFFSETS_MAX_EXTRA_BITS_32 == 5); - assert(ofBits <= MaxOff); - if (MEM_32bits() && longOffsets && (ofBits >= STREAM_ACCUMULATOR_MIN_32)) { - U32 const extraBits = ofBits - MIN(ofBits, 32 - seqState->DStream.bitsConsumed); - offset = ofBase + (BIT_readBitsFast(&seqState->DStream, ofBits - extraBits) << extraBits); - BIT_reloadDStream(&seqState->DStream); - if (extraBits) offset += BIT_readBitsFast(&seqState->DStream, extraBits); - assert(extraBits <= LONG_OFFSETS_MAX_EXTRA_BITS_32); /* to avoid another reload */ - } else { - offset = ofBase + BIT_readBitsFast(&seqState->DStream, ofBits/*>0*/); /* <= (ZSTD_WINDOWLOG_MAX-1) bits */ - if (MEM_32bits()) BIT_reloadDStream(&seqState->DStream); - } - seqState->prevOffset[2] = seqState->prevOffset[1]; - seqState->prevOffset[1] = seqState->prevOffset[0]; - seqState->prevOffset[0] = offset; - } else { - U32 const ll0 = (llBase == 0); - if (LIKELY((ofBits == 0))) { - if (LIKELY(!ll0)) - offset = seqState->prevOffset[0]; - else { - offset = seqState->prevOffset[1]; - seqState->prevOffset[1] = seqState->prevOffset[0]; - seqState->prevOffset[0] = offset; - } - } else { - offset = ofBase + ll0 + BIT_readBitsFast(&seqState->DStream, 1); - { size_t temp = (offset==3) ? seqState->prevOffset[0] - 1 : seqState->prevOffset[offset]; - temp += !temp; /* 0 is not valid; input is corrupted; force offset to 1 */ - if (offset != 1) seqState->prevOffset[2] = seqState->prevOffset[1]; - seqState->prevOffset[1] = seqState->prevOffset[0]; - seqState->prevOffset[0] = offset = temp; - } } } - seq.offset = offset; - } - - seq.matchLength = mlBase; - if (mlBits > 0) - seq.matchLength += BIT_readBitsFast(&seqState->DStream, mlBits/*>0*/); - - if (MEM_32bits() && (mlBits+llBits >= STREAM_ACCUMULATOR_MIN_32-LONG_OFFSETS_MAX_EXTRA_BITS_32)) - BIT_reloadDStream(&seqState->DStream); - if (MEM_64bits() && UNLIKELY(totalBits >= STREAM_ACCUMULATOR_MIN_64-(LLFSELog+MLFSELog+OffFSELog))) - BIT_reloadDStream(&seqState->DStream); - /* Ensure there are enough bits to read the rest of data in 64-bit mode. */ - ZSTD_STATIC_ASSERT(16+LLFSELog+MLFSELog+OffFSELog < STREAM_ACCUMULATOR_MIN_64); - - seq.litLength = llBase; - if (llBits > 0) - seq.litLength += BIT_readBitsFast(&seqState->DStream, llBits/*>0*/); - - if (MEM_32bits()) - BIT_reloadDStream(&seqState->DStream); - - DEBUGLOG(6, "seq: litL=%u, matchL=%u, offset=%u", - (U32)seq.litLength, (U32)seq.matchLength, (U32)seq.offset); - - if (prefetch == ZSTD_p_prefetch) { - size_t const pos = seqState->pos + seq.litLength; - const BYTE* const matchBase = (seq.offset > pos) ? seqState->dictEnd : seqState->prefixStart; - seq.match = matchBase + pos - seq.offset; /* note : this operation can overflow when seq.offset is really too large, which can only happen when input is corrupted. - * No consequence though : no memory access will occur, offset is only used for prefetching */ - seqState->pos = pos + seq.matchLength; - } - - /* ANS state update - * gcc-9.0.0 does 2.5% worse with ZSTD_updateFseStateWithDInfo(). - * clang-9.2.0 does 7% worse with ZSTD_updateFseState(). - * Naturally it seems like ZSTD_updateFseStateWithDInfo() should be the - * better option, so it is the default for other compilers. But, if you - * measure that it is worse, please put up a pull request. - */ - { -#if defined(__GNUC__) && !defined(__clang__) - const int kUseUpdateFseState = 1; -#else - const int kUseUpdateFseState = 0; -#endif - if (kUseUpdateFseState) { - ZSTD_updateFseState(&seqState->stateLL, &seqState->DStream); /* <= 9 bits */ - ZSTD_updateFseState(&seqState->stateML, &seqState->DStream); /* <= 9 bits */ - if (MEM_32bits()) BIT_reloadDStream(&seqState->DStream); /* <= 18 bits */ - ZSTD_updateFseState(&seqState->stateOffb, &seqState->DStream); /* <= 8 bits */ - } else { - ZSTD_updateFseStateWithDInfo(&seqState->stateLL, &seqState->DStream, llDInfo); /* <= 9 bits */ - ZSTD_updateFseStateWithDInfo(&seqState->stateML, &seqState->DStream, mlDInfo); /* <= 9 bits */ - if (MEM_32bits()) BIT_reloadDStream(&seqState->DStream); /* <= 18 bits */ - ZSTD_updateFseStateWithDInfo(&seqState->stateOffb, &seqState->DStream, ofDInfo); /* <= 8 bits */ - } - } - - return seq; -} - -#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -static int ZSTD_dictionaryIsActive(ZSTD_DCtx const* dctx, BYTE const* prefixStart, BYTE const* oLitEnd) -{ - size_t const windowSize = dctx->fParams.windowSize; - /* No dictionary used. */ - if (dctx->dictContentEndForFuzzing == NULL) return 0; - /* Dictionary is our prefix. */ - if (prefixStart == dctx->dictContentBeginForFuzzing) return 1; - /* Dictionary is not our ext-dict. */ - if (dctx->dictEnd != dctx->dictContentEndForFuzzing) return 0; - /* Dictionary is not within our window size. */ - if ((size_t)(oLitEnd - prefixStart) >= windowSize) return 0; - /* Dictionary is active. */ - return 1; -} - -MEM_STATIC void ZSTD_assertValidSequence( - ZSTD_DCtx const* dctx, - BYTE const* op, BYTE const* oend, - seq_t const seq, - BYTE const* prefixStart, BYTE const* virtualStart) -{ - size_t const windowSize = dctx->fParams.windowSize; - size_t const sequenceSize = seq.litLength + seq.matchLength; - BYTE const* const oLitEnd = op + seq.litLength; - DEBUGLOG(6, "Checking sequence: litL=%u matchL=%u offset=%u", - (U32)seq.litLength, (U32)seq.matchLength, (U32)seq.offset); - assert(op <= oend); - assert((size_t)(oend - op) >= sequenceSize); - assert(sequenceSize <= ZSTD_BLOCKSIZE_MAX); - if (ZSTD_dictionaryIsActive(dctx, prefixStart, oLitEnd)) { - size_t const dictSize = (size_t)((char const*)dctx->dictContentEndForFuzzing - (char const*)dctx->dictContentBeginForFuzzing); - /* Offset must be within the dictionary. */ - assert(seq.offset <= (size_t)(oLitEnd - virtualStart)); - assert(seq.offset <= windowSize + dictSize); - } else { - /* Offset must be within our window. */ - assert(seq.offset <= windowSize); - } -} -#endif - -#ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG -FORCE_INLINE_TEMPLATE size_t -DONT_VECTORIZE -ZSTD_decompressSequences_body( ZSTD_DCtx* dctx, - void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame) -{ - const BYTE* ip = (const BYTE*)seqStart; - const BYTE* const iend = ip + seqSize; - BYTE* const ostart = (BYTE* const)dst; - BYTE* const oend = ostart + maxDstSize; - BYTE* op = ostart; - const BYTE* litPtr = dctx->litPtr; - const BYTE* const litEnd = litPtr + dctx->litSize; - const BYTE* const prefixStart = (const BYTE*) (dctx->prefixStart); - const BYTE* const vBase = (const BYTE*) (dctx->virtualStart); - const BYTE* const dictEnd = (const BYTE*) (dctx->dictEnd); - DEBUGLOG(5, "ZSTD_decompressSequences_body"); - (void)frame; - - /* Regen sequences */ - if (nbSeq) { - seqState_t seqState; - size_t error = 0; - dctx->fseEntropy = 1; - { U32 i; for (i=0; ientropy.rep[i]; } - RETURN_ERROR_IF( - ERR_isError(BIT_initDStream(&seqState.DStream, ip, iend-ip)), - corruption_detected, ""); - ZSTD_initFseState(&seqState.stateLL, &seqState.DStream, dctx->LLTptr); - ZSTD_initFseState(&seqState.stateOffb, &seqState.DStream, dctx->OFTptr); - ZSTD_initFseState(&seqState.stateML, &seqState.DStream, dctx->MLTptr); - assert(dst != NULL); - - ZSTD_STATIC_ASSERT( - BIT_DStream_unfinished < BIT_DStream_completed && - BIT_DStream_endOfBuffer < BIT_DStream_completed && - BIT_DStream_completed < BIT_DStream_overflow); - -#if defined(__GNUC__) && defined(__x86_64__) - /* Align the decompression loop to 32 + 16 bytes. - * - * zstd compiled with gcc-9 on an Intel i9-9900k shows 10% decompression - * speed swings based on the alignment of the decompression loop. This - * performance swing is caused by parts of the decompression loop falling - * out of the DSB. The entire decompression loop should fit in the DSB, - * when it can't we get much worse performance. You can measure if you've - * hit the good case or the bad case with this perf command for some - * compressed file test.zst: - * - * perf stat -e cycles -e instructions -e idq.all_dsb_cycles_any_uops \ - * -e idq.all_mite_cycles_any_uops -- ./zstd -tq test.zst - * - * If you see most cycles served out of the MITE you've hit the bad case. - * If you see most cycles served out of the DSB you've hit the good case. - * If it is pretty even then you may be in an okay case. - * - * I've been able to reproduce this issue on the following CPUs: - * - Kabylake: Macbook Pro (15-inch, 2019) 2.4 GHz Intel Core i9 - * Use Instruments->Counters to get DSB/MITE cycles. - * I never got performance swings, but I was able to - * go from the good case of mostly DSB to half of the - * cycles served from MITE. - * - Coffeelake: Intel i9-9900k - * - * I haven't been able to reproduce the instability or DSB misses on any - * of the following CPUS: - * - Haswell - * - Broadwell: Intel(R) Xeon(R) CPU E5-2680 v4 @ 2.40GH - * - Skylake - * - * If you are seeing performance stability this script can help test. - * It tests on 4 commits in zstd where I saw performance change. - * - * https://gist.github.com/terrelln/9889fc06a423fd5ca6e99351564473f4 - */ - __asm__(".p2align 5"); - __asm__("nop"); - __asm__(".p2align 4"); -#endif - for ( ; ; ) { - seq_t const sequence = ZSTD_decodeSequence(&seqState, isLongOffset, ZSTD_p_noPrefetch); - size_t const oneSeqSize = ZSTD_execSequence(op, oend, sequence, &litPtr, litEnd, prefixStart, vBase, dictEnd); -#if defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION) && defined(FUZZING_ASSERT_VALID_SEQUENCE) - assert(!ZSTD_isError(oneSeqSize)); - if (frame) ZSTD_assertValidSequence(dctx, op, oend, sequence, prefixStart, vBase); -#endif - DEBUGLOG(6, "regenerated sequence size : %u", (U32)oneSeqSize); - BIT_reloadDStream(&(seqState.DStream)); - /* gcc and clang both don't like early returns in this loop. - * gcc doesn't like early breaks either. - * Instead save an error and report it at the end. - * When there is an error, don't increment op, so we don't - * overwrite. - */ - if (UNLIKELY(ZSTD_isError(oneSeqSize))) error = oneSeqSize; - else op += oneSeqSize; - if (UNLIKELY(!--nbSeq)) break; - } - - /* check if reached exact end */ - DEBUGLOG(5, "ZSTD_decompressSequences_body: after decode loop, remaining nbSeq : %i", nbSeq); - if (ZSTD_isError(error)) return error; - RETURN_ERROR_IF(nbSeq, corruption_detected, ""); - RETURN_ERROR_IF(BIT_reloadDStream(&seqState.DStream) < BIT_DStream_completed, corruption_detected, ""); - /* save reps for next block */ - { U32 i; for (i=0; ientropy.rep[i] = (U32)(seqState.prevOffset[i]); } - } - - /* last literal segment */ - { size_t const lastLLSize = litEnd - litPtr; - RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); - if (op != NULL) { - memcpy(op, litPtr, lastLLSize); - op += lastLLSize; - } - } - - return op-ostart; -} - -static size_t -ZSTD_decompressSequences_default(ZSTD_DCtx* dctx, - void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame) -{ - return ZSTD_decompressSequences_body(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); -} -#endif /* ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG */ - -#ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT -FORCE_INLINE_TEMPLATE size_t -ZSTD_decompressSequencesLong_body( - ZSTD_DCtx* dctx, - void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame) -{ - const BYTE* ip = (const BYTE*)seqStart; - const BYTE* const iend = ip + seqSize; - BYTE* const ostart = (BYTE* const)dst; - BYTE* const oend = ostart + maxDstSize; - BYTE* op = ostart; - const BYTE* litPtr = dctx->litPtr; - const BYTE* const litEnd = litPtr + dctx->litSize; - const BYTE* const prefixStart = (const BYTE*) (dctx->prefixStart); - const BYTE* const dictStart = (const BYTE*) (dctx->virtualStart); - const BYTE* const dictEnd = (const BYTE*) (dctx->dictEnd); - (void)frame; - - /* Regen sequences */ - if (nbSeq) { -#define STORED_SEQS 4 -#define STORED_SEQS_MASK (STORED_SEQS-1) -#define ADVANCED_SEQS 4 - seq_t sequences[STORED_SEQS]; - int const seqAdvance = MIN(nbSeq, ADVANCED_SEQS); - seqState_t seqState; - int seqNb; - dctx->fseEntropy = 1; - { int i; for (i=0; ientropy.rep[i]; } - seqState.prefixStart = prefixStart; - seqState.pos = (size_t)(op-prefixStart); - seqState.dictEnd = dictEnd; - assert(dst != NULL); - assert(iend >= ip); - RETURN_ERROR_IF( - ERR_isError(BIT_initDStream(&seqState.DStream, ip, iend-ip)), - corruption_detected, ""); - ZSTD_initFseState(&seqState.stateLL, &seqState.DStream, dctx->LLTptr); - ZSTD_initFseState(&seqState.stateOffb, &seqState.DStream, dctx->OFTptr); - ZSTD_initFseState(&seqState.stateML, &seqState.DStream, dctx->MLTptr); - - /* prepare in advance */ - for (seqNb=0; (BIT_reloadDStream(&seqState.DStream) <= BIT_DStream_completed) && (seqNbentropy.rep[i] = (U32)(seqState.prevOffset[i]); } - } - - /* last literal segment */ - { size_t const lastLLSize = litEnd - litPtr; - RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); - if (op != NULL) { - memcpy(op, litPtr, lastLLSize); - op += lastLLSize; - } - } - - return op-ostart; -} - -static size_t -ZSTD_decompressSequencesLong_default(ZSTD_DCtx* dctx, - void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame) -{ - return ZSTD_decompressSequencesLong_body(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); -} -#endif /* ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT */ - - - -#if DYNAMIC_BMI2 - -#ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG -static TARGET_ATTRIBUTE("bmi2") size_t -DONT_VECTORIZE -ZSTD_decompressSequences_bmi2(ZSTD_DCtx* dctx, - void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame) -{ - return ZSTD_decompressSequences_body(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); -} -#endif /* ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG */ - -#ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT -static TARGET_ATTRIBUTE("bmi2") size_t -ZSTD_decompressSequencesLong_bmi2(ZSTD_DCtx* dctx, - void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame) -{ - return ZSTD_decompressSequencesLong_body(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); -} -#endif /* ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT */ - -#endif /* DYNAMIC_BMI2 */ - -typedef size_t (*ZSTD_decompressSequences_t)( - ZSTD_DCtx* dctx, - void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame); - -#ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG -static size_t -ZSTD_decompressSequences(ZSTD_DCtx* dctx, void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame) -{ - DEBUGLOG(5, "ZSTD_decompressSequences"); -#if DYNAMIC_BMI2 - if (dctx->bmi2) { - return ZSTD_decompressSequences_bmi2(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); - } -#endif - return ZSTD_decompressSequences_default(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); -} -#endif /* ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG */ - - -#ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT -/* ZSTD_decompressSequencesLong() : - * decompression function triggered when a minimum share of offsets is considered "long", - * aka out of cache. - * note : "long" definition seems overloaded here, sometimes meaning "wider than bitstream register", and sometimes meaning "farther than memory cache distance". - * This function will try to mitigate main memory latency through the use of prefetching */ -static size_t -ZSTD_decompressSequencesLong(ZSTD_DCtx* dctx, - void* dst, size_t maxDstSize, - const void* seqStart, size_t seqSize, int nbSeq, - const ZSTD_longOffset_e isLongOffset, - const int frame) -{ - DEBUGLOG(5, "ZSTD_decompressSequencesLong"); -#if DYNAMIC_BMI2 - if (dctx->bmi2) { - return ZSTD_decompressSequencesLong_bmi2(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); - } -#endif - return ZSTD_decompressSequencesLong_default(dctx, dst, maxDstSize, seqStart, seqSize, nbSeq, isLongOffset, frame); -} -#endif /* ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT */ - - - -#if !defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT) && \ - !defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG) -/* ZSTD_getLongOffsetsShare() : - * condition : offTable must be valid - * @return : "share" of long offsets (arbitrarily defined as > (1<<23)) - * compared to maximum possible of (1< 22) total += 1; - } - - assert(tableLog <= OffFSELog); - total <<= (OffFSELog - tableLog); /* scale to OffFSELog */ - - return total; -} -#endif - -size_t -ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, const int frame) -{ /* blockType == blockCompressed */ - const BYTE* ip = (const BYTE*)src; - /* isLongOffset must be true if there are long offsets. - * Offsets are long if they are larger than 2^STREAM_ACCUMULATOR_MIN. - * We don't expect that to be the case in 64-bit mode. - * In block mode, window size is not known, so we have to be conservative. - * (note: but it could be evaluated from current-lowLimit) - */ - ZSTD_longOffset_e const isLongOffset = (ZSTD_longOffset_e)(MEM_32bits() && (!frame || (dctx->fParams.windowSize > (1ULL << STREAM_ACCUMULATOR_MIN)))); - DEBUGLOG(5, "ZSTD_decompressBlock_internal (size : %u)", (U32)srcSize); - - RETURN_ERROR_IF(srcSize >= ZSTD_BLOCKSIZE_MAX, srcSize_wrong, ""); - - /* Decode literals section */ - { size_t const litCSize = ZSTD_decodeLiteralsBlock(dctx, src, srcSize); - DEBUGLOG(5, "ZSTD_decodeLiteralsBlock : %u", (U32)litCSize); - if (ZSTD_isError(litCSize)) return litCSize; - ip += litCSize; - srcSize -= litCSize; - } - - /* Build Decoding Tables */ - { - /* These macros control at build-time which decompressor implementation - * we use. If neither is defined, we do some inspection and dispatch at - * runtime. - */ -#if !defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT) && \ - !defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG) - int usePrefetchDecoder = dctx->ddictIsCold; -#endif - int nbSeq; - size_t const seqHSize = ZSTD_decodeSeqHeaders(dctx, &nbSeq, ip, srcSize); - if (ZSTD_isError(seqHSize)) return seqHSize; - ip += seqHSize; - srcSize -= seqHSize; - - RETURN_ERROR_IF(dst == NULL && nbSeq > 0, dstSize_tooSmall, "NULL not handled"); - -#if !defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT) && \ - !defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG) - if ( !usePrefetchDecoder - && (!frame || (dctx->fParams.windowSize > (1<<24))) - && (nbSeq>ADVANCED_SEQS) ) { /* could probably use a larger nbSeq limit */ - U32 const shareLongOffsets = ZSTD_getLongOffsetsShare(dctx->OFTptr); - U32 const minShare = MEM_64bits() ? 7 : 20; /* heuristic values, correspond to 2.73% and 7.81% */ - usePrefetchDecoder = (shareLongOffsets >= minShare); - } -#endif - - dctx->ddictIsCold = 0; - -#if !defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT) && \ - !defined(ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG) - if (usePrefetchDecoder) -#endif -#ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT - return ZSTD_decompressSequencesLong(dctx, dst, dstCapacity, ip, srcSize, nbSeq, isLongOffset, frame); -#endif - -#ifndef ZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG - /* else */ - return ZSTD_decompressSequences(dctx, dst, dstCapacity, ip, srcSize, nbSeq, isLongOffset, frame); -#endif - } -} - - -void ZSTD_checkContinuity(ZSTD_DCtx* dctx, const void* dst) -{ - if (dst != dctx->previousDstEnd) { /* not contiguous */ - dctx->dictEnd = dctx->previousDstEnd; - dctx->virtualStart = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart)); - dctx->prefixStart = dst; - dctx->previousDstEnd = dst; - } -} - - -size_t ZSTD_decompressBlock(ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize) -{ - size_t dSize; - ZSTD_checkContinuity(dctx, dst); - dSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize, /* frame */ 0); - dctx->previousDstEnd = (char*)dst + dSize; - return dSize; -} diff --git a/lib/SZ3/tools/zstd/decompress/zstd_decompress_block.h b/lib/SZ3/tools/zstd/decompress/zstd_decompress_block.h deleted file mode 100644 index bf39b735..00000000 --- a/lib/SZ3/tools/zstd/decompress/zstd_decompress_block.h +++ /dev/null @@ -1,59 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -#ifndef ZSTD_DEC_BLOCK_H -#define ZSTD_DEC_BLOCK_H - -/*-******************************************************* - * Dependencies - *********************************************************/ -#include /* size_t */ -#include "../zstd.h" /* DCtx, and some public functions */ -#include "../common/zstd_internal.h" /* blockProperties_t, and some public functions */ -#include "zstd_decompress_internal.h" /* ZSTD_seqSymbol */ - - -/* === Prototypes === */ - -/* note: prototypes already published within `zstd.h` : - * ZSTD_decompressBlock() - */ - -/* note: prototypes already published within `zstd_internal.h` : - * ZSTD_getcBlockSize() - * ZSTD_decodeSeqHeaders() - */ - - -/* ZSTD_decompressBlock_internal() : - * decompress block, starting at `src`, - * into destination buffer `dst`. - * @return : decompressed block size, - * or an error code (which can be tested using ZSTD_isError()) - */ -size_t ZSTD_decompressBlock_internal(ZSTD_DCtx* dctx, - void* dst, size_t dstCapacity, - const void* src, size_t srcSize, const int frame); - -/* ZSTD_buildFSETable() : - * generate FSE decoding table for one symbol (ll, ml or off) - * this function must be called with valid parameters only - * (dt is large enough, normalizedCounter distribution total is a power of 2, max is within range, etc.) - * in which case it cannot fail. - * Internal use only. - */ -void ZSTD_buildFSETable(ZSTD_seqSymbol* dt, - const short* normalizedCounter, unsigned maxSymbolValue, - const U32* baseValue, const U32* nbAdditionalBits, - unsigned tableLog); - - -#endif /* ZSTD_DEC_BLOCK_H */ diff --git a/lib/SZ3/tools/zstd/decompress/zstd_decompress_internal.h b/lib/SZ3/tools/zstd/decompress/zstd_decompress_internal.h deleted file mode 100644 index 9ad96c55..00000000 --- a/lib/SZ3/tools/zstd/decompress/zstd_decompress_internal.h +++ /dev/null @@ -1,189 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -/* zstd_decompress_internal: - * objects and definitions shared within lib/decompress modules */ - - #ifndef ZSTD_DECOMPRESS_INTERNAL_H - #define ZSTD_DECOMPRESS_INTERNAL_H - - -/*-******************************************************* - * Dependencies - *********************************************************/ -#include "../common/mem.h" /* BYTE, U16, U32 */ -#include "../common/zstd_internal.h" /* ZSTD_seqSymbol */ - - - -/*-******************************************************* - * Constants - *********************************************************/ -static const U32 LL_base[MaxLL+1] = { - 0, 1, 2, 3, 4, 5, 6, 7, - 8, 9, 10, 11, 12, 13, 14, 15, - 16, 18, 20, 22, 24, 28, 32, 40, - 48, 64, 0x80, 0x100, 0x200, 0x400, 0x800, 0x1000, - 0x2000, 0x4000, 0x8000, 0x10000 }; - -static const U32 OF_base[MaxOff+1] = { - 0, 1, 1, 5, 0xD, 0x1D, 0x3D, 0x7D, - 0xFD, 0x1FD, 0x3FD, 0x7FD, 0xFFD, 0x1FFD, 0x3FFD, 0x7FFD, - 0xFFFD, 0x1FFFD, 0x3FFFD, 0x7FFFD, 0xFFFFD, 0x1FFFFD, 0x3FFFFD, 0x7FFFFD, - 0xFFFFFD, 0x1FFFFFD, 0x3FFFFFD, 0x7FFFFFD, 0xFFFFFFD, 0x1FFFFFFD, 0x3FFFFFFD, 0x7FFFFFFD }; - -static const U32 OF_bits[MaxOff+1] = { - 0, 1, 2, 3, 4, 5, 6, 7, - 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31 }; - -static const U32 ML_base[MaxML+1] = { - 3, 4, 5, 6, 7, 8, 9, 10, - 11, 12, 13, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, - 35, 37, 39, 41, 43, 47, 51, 59, - 67, 83, 99, 0x83, 0x103, 0x203, 0x403, 0x803, - 0x1003, 0x2003, 0x4003, 0x8003, 0x10003 }; - - -/*-******************************************************* - * Decompression types - *********************************************************/ - typedef struct { - U32 fastMode; - U32 tableLog; - } ZSTD_seqSymbol_header; - - typedef struct { - U16 nextState; - BYTE nbAdditionalBits; - BYTE nbBits; - U32 baseValue; - } ZSTD_seqSymbol; - - #define SEQSYMBOL_TABLE_SIZE(log) (1 + (1 << (log))) - -typedef struct { - ZSTD_seqSymbol LLTable[SEQSYMBOL_TABLE_SIZE(LLFSELog)]; /* Note : Space reserved for FSE Tables */ - ZSTD_seqSymbol OFTable[SEQSYMBOL_TABLE_SIZE(OffFSELog)]; /* is also used as temporary workspace while building hufTable during DDict creation */ - ZSTD_seqSymbol MLTable[SEQSYMBOL_TABLE_SIZE(MLFSELog)]; /* and therefore must be at least HUF_DECOMPRESS_WORKSPACE_SIZE large */ - HUF_DTable hufTable[HUF_DTABLE_SIZE(HufLog)]; /* can accommodate HUF_decompress4X */ - U32 rep[ZSTD_REP_NUM]; -} ZSTD_entropyDTables_t; - -typedef enum { ZSTDds_getFrameHeaderSize, ZSTDds_decodeFrameHeader, - ZSTDds_decodeBlockHeader, ZSTDds_decompressBlock, - ZSTDds_decompressLastBlock, ZSTDds_checkChecksum, - ZSTDds_decodeSkippableHeader, ZSTDds_skipFrame } ZSTD_dStage; - -typedef enum { zdss_init=0, zdss_loadHeader, - zdss_read, zdss_load, zdss_flush } ZSTD_dStreamStage; - -typedef enum { - ZSTD_use_indefinitely = -1, /* Use the dictionary indefinitely */ - ZSTD_dont_use = 0, /* Do not use the dictionary (if one exists free it) */ - ZSTD_use_once = 1 /* Use the dictionary once and set to ZSTD_dont_use */ -} ZSTD_dictUses_e; - -typedef enum { - ZSTD_obm_buffered = 0, /* Buffer the output */ - ZSTD_obm_stable = 1 /* ZSTD_outBuffer is stable */ -} ZSTD_outBufferMode_e; - -struct ZSTD_DCtx_s -{ - const ZSTD_seqSymbol* LLTptr; - const ZSTD_seqSymbol* MLTptr; - const ZSTD_seqSymbol* OFTptr; - const HUF_DTable* HUFptr; - ZSTD_entropyDTables_t entropy; - U32 workspace[HUF_DECOMPRESS_WORKSPACE_SIZE_U32]; /* space needed when building huffman tables */ - const void* previousDstEnd; /* detect continuity */ - const void* prefixStart; /* start of current segment */ - const void* virtualStart; /* virtual start of previous segment if it was just before current one */ - const void* dictEnd; /* end of previous segment */ - size_t expected; - ZSTD_frameHeader fParams; - U64 decodedSize; - blockType_e bType; /* used in ZSTD_decompressContinue(), store blockType between block header decoding and block decompression stages */ - ZSTD_dStage stage; - U32 litEntropy; - U32 fseEntropy; - XXH64_state_t xxhState; - size_t headerSize; - ZSTD_format_e format; - const BYTE* litPtr; - ZSTD_customMem customMem; - size_t litSize; - size_t rleSize; - size_t staticSize; - int bmi2; /* == 1 if the CPU supports BMI2 and 0 otherwise. CPU support is determined dynamically once per context lifetime. */ - - /* dictionary */ - ZSTD_DDict* ddictLocal; - const ZSTD_DDict* ddict; /* set by ZSTD_initDStream_usingDDict(), or ZSTD_DCtx_refDDict() */ - U32 dictID; - int ddictIsCold; /* if == 1 : dictionary is "new" for working context, and presumed "cold" (not in cpu cache) */ - ZSTD_dictUses_e dictUses; - - /* streaming */ - ZSTD_dStreamStage streamStage; - char* inBuff; - size_t inBuffSize; - size_t inPos; - size_t maxWindowSize; - char* outBuff; - size_t outBuffSize; - size_t outStart; - size_t outEnd; - size_t lhSize; - void* legacyContext; - U32 previousLegacyVersion; - U32 legacyVersion; - U32 hostageByte; - int noForwardProgress; - ZSTD_outBufferMode_e outBufferMode; - ZSTD_outBuffer expectedOutBuffer; - - /* workspace */ - BYTE litBuffer[ZSTD_BLOCKSIZE_MAX + WILDCOPY_OVERLENGTH]; - BYTE headerBuffer[ZSTD_FRAMEHEADERSIZE_MAX]; - - size_t oversizedDuration; - -#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION - void const* dictContentBeginForFuzzing; - void const* dictContentEndForFuzzing; -#endif -}; /* typedef'd to ZSTD_DCtx within "zstd.h" */ - - -/*-******************************************************* - * Shared internal functions - *********************************************************/ - -/*! ZSTD_loadDEntropy() : - * dict : must point at beginning of a valid zstd dictionary. - * @return : size of dictionary header (size of magic number + dict ID + entropy tables) */ -size_t ZSTD_loadDEntropy(ZSTD_entropyDTables_t* entropy, - const void* const dict, size_t const dictSize); - -/*! ZSTD_checkContinuity() : - * check if next `dst` follows previous position, where decompression ended. - * If yes, do nothing (continue on current segment). - * If not, classify previous segment as "external dictionary", and start a new segment. - * This function cannot fail. */ -void ZSTD_checkContinuity(ZSTD_DCtx* dctx, const void* dst); - - -#endif /* ZSTD_DECOMPRESS_INTERNAL_H */ diff --git a/lib/SZ3/tools/zstd/deprecated/zbuff.h b/lib/SZ3/tools/zstd/deprecated/zbuff.h deleted file mode 100644 index 03cb14a0..00000000 --- a/lib/SZ3/tools/zstd/deprecated/zbuff.h +++ /dev/null @@ -1,214 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/* *************************************************************** -* NOTES/WARNINGS -******************************************************************/ -/* The streaming API defined here is deprecated. - * Consider migrating towards ZSTD_compressStream() API in `zstd.h` - * See 'lib/README.md'. - *****************************************************************/ - - -#if defined (__cplusplus) -extern "C" { -#endif - -#ifndef ZSTD_BUFFERED_H_23987 -#define ZSTD_BUFFERED_H_23987 - -/* ************************************* -* Dependencies -***************************************/ -#include /* size_t */ -#include "../zstd.h" /* ZSTD_CStream, ZSTD_DStream, ZSTDLIB_API */ - - -/* *************************************************************** -* Compiler specifics -*****************************************************************/ -/* Deprecation warnings */ -/* Should these warnings be a problem, - * it is generally possible to disable them, - * typically with -Wno-deprecated-declarations for gcc - * or _CRT_SECURE_NO_WARNINGS in Visual. - * Otherwise, it's also possible to define ZBUFF_DISABLE_DEPRECATE_WARNINGS - */ -#ifdef ZBUFF_DISABLE_DEPRECATE_WARNINGS -# define ZBUFF_DEPRECATED(message) ZSTDLIB_API /* disable deprecation warnings */ -#else -# if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */ -# define ZBUFF_DEPRECATED(message) [[deprecated(message)]] ZSTDLIB_API -# elif (defined(GNUC) && (GNUC > 4 || (GNUC == 4 && GNUC_MINOR >= 5))) || defined(__clang__) -# define ZBUFF_DEPRECATED(message) ZSTDLIB_API __attribute__((deprecated(message))) -# elif defined(__GNUC__) && (__GNUC__ >= 3) -# define ZBUFF_DEPRECATED(message) ZSTDLIB_API __attribute__((deprecated)) -# elif defined(_MSC_VER) -# define ZBUFF_DEPRECATED(message) ZSTDLIB_API __declspec(deprecated(message)) -# else -# pragma message("WARNING: You need to implement ZBUFF_DEPRECATED for this compiler") -# define ZBUFF_DEPRECATED(message) ZSTDLIB_API -# endif -#endif /* ZBUFF_DISABLE_DEPRECATE_WARNINGS */ - - -/* ************************************* -* Streaming functions -***************************************/ -/* This is the easier "buffered" streaming API, -* using an internal buffer to lift all restrictions on user-provided buffers -* which can be any size, any place, for both input and output. -* ZBUFF and ZSTD are 100% interoperable, -* frames created by one can be decoded by the other one */ - -typedef ZSTD_CStream ZBUFF_CCtx; -ZBUFF_DEPRECATED("use ZSTD_createCStream") ZBUFF_CCtx* ZBUFF_createCCtx(void); -ZBUFF_DEPRECATED("use ZSTD_freeCStream") size_t ZBUFF_freeCCtx(ZBUFF_CCtx* cctx); - -ZBUFF_DEPRECATED("use ZSTD_initCStream") size_t ZBUFF_compressInit(ZBUFF_CCtx* cctx, int compressionLevel); -ZBUFF_DEPRECATED("use ZSTD_initCStream_usingDict") size_t ZBUFF_compressInitDictionary(ZBUFF_CCtx* cctx, const void* dict, size_t dictSize, int compressionLevel); - -ZBUFF_DEPRECATED("use ZSTD_compressStream") size_t ZBUFF_compressContinue(ZBUFF_CCtx* cctx, void* dst, size_t* dstCapacityPtr, const void* src, size_t* srcSizePtr); -ZBUFF_DEPRECATED("use ZSTD_flushStream") size_t ZBUFF_compressFlush(ZBUFF_CCtx* cctx, void* dst, size_t* dstCapacityPtr); -ZBUFF_DEPRECATED("use ZSTD_endStream") size_t ZBUFF_compressEnd(ZBUFF_CCtx* cctx, void* dst, size_t* dstCapacityPtr); - -/*-************************************************* -* Streaming compression - howto -* -* A ZBUFF_CCtx object is required to track streaming operation. -* Use ZBUFF_createCCtx() and ZBUFF_freeCCtx() to create/release resources. -* ZBUFF_CCtx objects can be reused multiple times. -* -* Start by initializing ZBUF_CCtx. -* Use ZBUFF_compressInit() to start a new compression operation. -* Use ZBUFF_compressInitDictionary() for a compression which requires a dictionary. -* -* Use ZBUFF_compressContinue() repetitively to consume input stream. -* *srcSizePtr and *dstCapacityPtr can be any size. -* The function will report how many bytes were read or written within *srcSizePtr and *dstCapacityPtr. -* Note that it may not consume the entire input, in which case it's up to the caller to present again remaining data. -* The content of `dst` will be overwritten (up to *dstCapacityPtr) at each call, so save its content if it matters or change @dst . -* @return : a hint to preferred nb of bytes to use as input for next function call (it's just a hint, to improve latency) -* or an error code, which can be tested using ZBUFF_isError(). -* -* At any moment, it's possible to flush whatever data remains within buffer, using ZBUFF_compressFlush(). -* The nb of bytes written into `dst` will be reported into *dstCapacityPtr. -* Note that the function cannot output more than *dstCapacityPtr, -* therefore, some content might still be left into internal buffer if *dstCapacityPtr is too small. -* @return : nb of bytes still present into internal buffer (0 if it's empty) -* or an error code, which can be tested using ZBUFF_isError(). -* -* ZBUFF_compressEnd() instructs to finish a frame. -* It will perform a flush and write frame epilogue. -* The epilogue is required for decoders to consider a frame completed. -* Similar to ZBUFF_compressFlush(), it may not be able to output the entire internal buffer content if *dstCapacityPtr is too small. -* In which case, call again ZBUFF_compressFlush() to complete the flush. -* @return : nb of bytes still present into internal buffer (0 if it's empty) -* or an error code, which can be tested using ZBUFF_isError(). -* -* Hint : _recommended buffer_ sizes (not compulsory) : ZBUFF_recommendedCInSize() / ZBUFF_recommendedCOutSize() -* input : ZBUFF_recommendedCInSize==128 KB block size is the internal unit, use this value to reduce intermediate stages (better latency) -* output : ZBUFF_recommendedCOutSize==ZSTD_compressBound(128 KB) + 3 + 3 : ensures it's always possible to write/flush/end a full block. Skip some buffering. -* By using both, it ensures that input will be entirely consumed, and output will always contain the result, reducing intermediate buffering. -* **************************************************/ - - -typedef ZSTD_DStream ZBUFF_DCtx; -ZBUFF_DEPRECATED("use ZSTD_createDStream") ZBUFF_DCtx* ZBUFF_createDCtx(void); -ZBUFF_DEPRECATED("use ZSTD_freeDStream") size_t ZBUFF_freeDCtx(ZBUFF_DCtx* dctx); - -ZBUFF_DEPRECATED("use ZSTD_initDStream") size_t ZBUFF_decompressInit(ZBUFF_DCtx* dctx); -ZBUFF_DEPRECATED("use ZSTD_initDStream_usingDict") size_t ZBUFF_decompressInitDictionary(ZBUFF_DCtx* dctx, const void* dict, size_t dictSize); - -ZBUFF_DEPRECATED("use ZSTD_decompressStream") size_t ZBUFF_decompressContinue(ZBUFF_DCtx* dctx, - void* dst, size_t* dstCapacityPtr, - const void* src, size_t* srcSizePtr); - -/*-*************************************************************************** -* Streaming decompression howto -* -* A ZBUFF_DCtx object is required to track streaming operations. -* Use ZBUFF_createDCtx() and ZBUFF_freeDCtx() to create/release resources. -* Use ZBUFF_decompressInit() to start a new decompression operation, -* or ZBUFF_decompressInitDictionary() if decompression requires a dictionary. -* Note that ZBUFF_DCtx objects can be re-init multiple times. -* -* Use ZBUFF_decompressContinue() repetitively to consume your input. -* *srcSizePtr and *dstCapacityPtr can be any size. -* The function will report how many bytes were read or written by modifying *srcSizePtr and *dstCapacityPtr. -* Note that it may not consume the entire input, in which case it's up to the caller to present remaining input again. -* The content of `dst` will be overwritten (up to *dstCapacityPtr) at each function call, so save its content if it matters, or change `dst`. -* @return : 0 when a frame is completely decoded and fully flushed, -* 1 when there is still some data left within internal buffer to flush, -* >1 when more data is expected, with value being a suggested next input size (it's just a hint, which helps latency), -* or an error code, which can be tested using ZBUFF_isError(). -* -* Hint : recommended buffer sizes (not compulsory) : ZBUFF_recommendedDInSize() and ZBUFF_recommendedDOutSize() -* output : ZBUFF_recommendedDOutSize== 128 KB block size is the internal unit, it ensures it's always possible to write a full block when decoded. -* input : ZBUFF_recommendedDInSize == 128KB + 3; -* just follow indications from ZBUFF_decompressContinue() to minimize latency. It should always be <= 128 KB + 3 . -* *******************************************************************************/ - - -/* ************************************* -* Tool functions -***************************************/ -ZBUFF_DEPRECATED("use ZSTD_isError") unsigned ZBUFF_isError(size_t errorCode); -ZBUFF_DEPRECATED("use ZSTD_getErrorName") const char* ZBUFF_getErrorName(size_t errorCode); - -/** Functions below provide recommended buffer sizes for Compression or Decompression operations. -* These sizes are just hints, they tend to offer better latency */ -ZBUFF_DEPRECATED("use ZSTD_CStreamInSize") size_t ZBUFF_recommendedCInSize(void); -ZBUFF_DEPRECATED("use ZSTD_CStreamOutSize") size_t ZBUFF_recommendedCOutSize(void); -ZBUFF_DEPRECATED("use ZSTD_DStreamInSize") size_t ZBUFF_recommendedDInSize(void); -ZBUFF_DEPRECATED("use ZSTD_DStreamOutSize") size_t ZBUFF_recommendedDOutSize(void); - -#endif /* ZSTD_BUFFERED_H_23987 */ - - -#ifdef ZBUFF_STATIC_LINKING_ONLY -#ifndef ZBUFF_STATIC_H_30298098432 -#define ZBUFF_STATIC_H_30298098432 - -/* ==================================================================================== - * The definitions in this section are considered experimental. - * They should never be used in association with a dynamic library, as they may change in the future. - * They are provided for advanced usages. - * Use them only in association with static linking. - * ==================================================================================== */ - -/*--- Dependency ---*/ -#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_parameters, ZSTD_customMem */ -#include "../zstd.h" - - -/*--- Custom memory allocator ---*/ -/*! ZBUFF_createCCtx_advanced() : - * Create a ZBUFF compression context using external alloc and free functions */ -ZBUFF_DEPRECATED("use ZSTD_createCStream_advanced") ZBUFF_CCtx* ZBUFF_createCCtx_advanced(ZSTD_customMem customMem); - -/*! ZBUFF_createDCtx_advanced() : - * Create a ZBUFF decompression context using external alloc and free functions */ -ZBUFF_DEPRECATED("use ZSTD_createDStream_advanced") ZBUFF_DCtx* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem); - - -/*--- Advanced Streaming Initialization ---*/ -ZBUFF_DEPRECATED("use ZSTD_initDStream_usingDict") size_t ZBUFF_compressInit_advanced(ZBUFF_CCtx* zbc, - const void* dict, size_t dictSize, - ZSTD_parameters params, unsigned long long pledgedSrcSize); - - -#endif /* ZBUFF_STATIC_H_30298098432 */ -#endif /* ZBUFF_STATIC_LINKING_ONLY */ - - -#if defined (__cplusplus) -} -#endif diff --git a/lib/SZ3/tools/zstd/deprecated/zbuff_common.c b/lib/SZ3/tools/zstd/deprecated/zbuff_common.c deleted file mode 100644 index 579bc4df..00000000 --- a/lib/SZ3/tools/zstd/deprecated/zbuff_common.c +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/*-************************************* -* Dependencies -***************************************/ -#include "../common/error_private.h" -#include "zbuff.h" - -/*-**************************************** -* ZBUFF Error Management (deprecated) -******************************************/ - -/*! ZBUFF_isError() : -* tells if a return value is an error code */ -unsigned ZBUFF_isError(size_t errorCode) { return ERR_isError(errorCode); } -/*! ZBUFF_getErrorName() : -* provides error code string from function result (useful for debugging) */ -const char* ZBUFF_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } diff --git a/lib/SZ3/tools/zstd/deprecated/zbuff_compress.c b/lib/SZ3/tools/zstd/deprecated/zbuff_compress.c deleted file mode 100644 index 2d20b137..00000000 --- a/lib/SZ3/tools/zstd/deprecated/zbuff_compress.c +++ /dev/null @@ -1,147 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - - -/* ************************************* -* Dependencies -***************************************/ -#define ZBUFF_STATIC_LINKING_ONLY -#include "zbuff.h" - - -/*-*********************************************************** -* Streaming compression -* -* A ZBUFF_CCtx object is required to track streaming operation. -* Use ZBUFF_createCCtx() and ZBUFF_freeCCtx() to create/release resources. -* Use ZBUFF_compressInit() to start a new compression operation. -* ZBUFF_CCtx objects can be reused multiple times. -* -* Use ZBUFF_compressContinue() repetitively to consume your input. -* *srcSizePtr and *dstCapacityPtr can be any size. -* The function will report how many bytes were read or written by modifying *srcSizePtr and *dstCapacityPtr. -* Note that it may not consume the entire input, in which case it's up to the caller to call again the function with remaining input. -* The content of dst will be overwritten (up to *dstCapacityPtr) at each function call, so save its content if it matters or change dst . -* @return : a hint to preferred nb of bytes to use as input for next function call (it's only a hint, to improve latency) -* or an error code, which can be tested using ZBUFF_isError(). -* -* ZBUFF_compressFlush() can be used to instruct ZBUFF to compress and output whatever remains within its buffer. -* Note that it will not output more than *dstCapacityPtr. -* Therefore, some content might still be left into its internal buffer if dst buffer is too small. -* @return : nb of bytes still present into internal buffer (0 if it's empty) -* or an error code, which can be tested using ZBUFF_isError(). -* -* ZBUFF_compressEnd() instructs to finish a frame. -* It will perform a flush and write frame epilogue. -* Similar to ZBUFF_compressFlush(), it may not be able to output the entire internal buffer content if *dstCapacityPtr is too small. -* @return : nb of bytes still present into internal buffer (0 if it's empty) -* or an error code, which can be tested using ZBUFF_isError(). -* -* Hint : recommended buffer sizes (not compulsory) -* input : ZSTD_BLOCKSIZE_MAX (128 KB), internal unit size, it improves latency to use this value. -* output : ZSTD_compressBound(ZSTD_BLOCKSIZE_MAX) + ZSTD_blockHeaderSize + ZBUFF_endFrameSize : ensures it's always possible to write/flush/end a full block at best speed. -* ***********************************************************/ - -ZBUFF_CCtx* ZBUFF_createCCtx(void) -{ - return ZSTD_createCStream(); -} - -ZBUFF_CCtx* ZBUFF_createCCtx_advanced(ZSTD_customMem customMem) -{ - return ZSTD_createCStream_advanced(customMem); -} - -size_t ZBUFF_freeCCtx(ZBUFF_CCtx* zbc) -{ - return ZSTD_freeCStream(zbc); -} - - -/* ====== Initialization ====== */ - -size_t ZBUFF_compressInit_advanced(ZBUFF_CCtx* zbc, - const void* dict, size_t dictSize, - ZSTD_parameters params, unsigned long long pledgedSrcSize) -{ - if (pledgedSrcSize==0) pledgedSrcSize = ZSTD_CONTENTSIZE_UNKNOWN; /* preserve "0 == unknown" behavior */ - return ZSTD_initCStream_advanced(zbc, dict, dictSize, params, pledgedSrcSize); -} - - -size_t ZBUFF_compressInitDictionary(ZBUFF_CCtx* zbc, const void* dict, size_t dictSize, int compressionLevel) -{ - return ZSTD_initCStream_usingDict(zbc, dict, dictSize, compressionLevel); -} - -size_t ZBUFF_compressInit(ZBUFF_CCtx* zbc, int compressionLevel) -{ - return ZSTD_initCStream(zbc, compressionLevel); -} - -/* ====== Compression ====== */ - - -size_t ZBUFF_compressContinue(ZBUFF_CCtx* zbc, - void* dst, size_t* dstCapacityPtr, - const void* src, size_t* srcSizePtr) -{ - size_t result; - ZSTD_outBuffer outBuff; - ZSTD_inBuffer inBuff; - outBuff.dst = dst; - outBuff.pos = 0; - outBuff.size = *dstCapacityPtr; - inBuff.src = src; - inBuff.pos = 0; - inBuff.size = *srcSizePtr; - result = ZSTD_compressStream(zbc, &outBuff, &inBuff); - *dstCapacityPtr = outBuff.pos; - *srcSizePtr = inBuff.pos; - return result; -} - - - -/* ====== Finalize ====== */ - -size_t ZBUFF_compressFlush(ZBUFF_CCtx* zbc, void* dst, size_t* dstCapacityPtr) -{ - size_t result; - ZSTD_outBuffer outBuff; - outBuff.dst = dst; - outBuff.pos = 0; - outBuff.size = *dstCapacityPtr; - result = ZSTD_flushStream(zbc, &outBuff); - *dstCapacityPtr = outBuff.pos; - return result; -} - - -size_t ZBUFF_compressEnd(ZBUFF_CCtx* zbc, void* dst, size_t* dstCapacityPtr) -{ - size_t result; - ZSTD_outBuffer outBuff; - outBuff.dst = dst; - outBuff.pos = 0; - outBuff.size = *dstCapacityPtr; - result = ZSTD_endStream(zbc, &outBuff); - *dstCapacityPtr = outBuff.pos; - return result; -} - - - -/* ************************************* -* Tool functions -***************************************/ -size_t ZBUFF_recommendedCInSize(void) { return ZSTD_CStreamInSize(); } -size_t ZBUFF_recommendedCOutSize(void) { return ZSTD_CStreamOutSize(); } diff --git a/lib/SZ3/tools/zstd/deprecated/zbuff_decompress.c b/lib/SZ3/tools/zstd/deprecated/zbuff_decompress.c deleted file mode 100644 index d3c49e84..00000000 --- a/lib/SZ3/tools/zstd/deprecated/zbuff_decompress.c +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - - -/* ************************************* -* Dependencies -***************************************/ -#define ZBUFF_STATIC_LINKING_ONLY -#include "zbuff.h" - - -ZBUFF_DCtx* ZBUFF_createDCtx(void) -{ - return ZSTD_createDStream(); -} - -ZBUFF_DCtx* ZBUFF_createDCtx_advanced(ZSTD_customMem customMem) -{ - return ZSTD_createDStream_advanced(customMem); -} - -size_t ZBUFF_freeDCtx(ZBUFF_DCtx* zbd) -{ - return ZSTD_freeDStream(zbd); -} - - -/* *** Initialization *** */ - -size_t ZBUFF_decompressInitDictionary(ZBUFF_DCtx* zbd, const void* dict, size_t dictSize) -{ - return ZSTD_initDStream_usingDict(zbd, dict, dictSize); -} - -size_t ZBUFF_decompressInit(ZBUFF_DCtx* zbd) -{ - return ZSTD_initDStream(zbd); -} - - -/* *** Decompression *** */ - -size_t ZBUFF_decompressContinue(ZBUFF_DCtx* zbd, - void* dst, size_t* dstCapacityPtr, - const void* src, size_t* srcSizePtr) -{ - ZSTD_outBuffer outBuff; - ZSTD_inBuffer inBuff; - size_t result; - outBuff.dst = dst; - outBuff.pos = 0; - outBuff.size = *dstCapacityPtr; - inBuff.src = src; - inBuff.pos = 0; - inBuff.size = *srcSizePtr; - result = ZSTD_decompressStream(zbd, &outBuff, &inBuff); - *dstCapacityPtr = outBuff.pos; - *srcSizePtr = inBuff.pos; - return result; -} - - -/* ************************************* -* Tool functions -***************************************/ -size_t ZBUFF_recommendedDInSize(void) { return ZSTD_DStreamInSize(); } -size_t ZBUFF_recommendedDOutSize(void) { return ZSTD_DStreamOutSize(); } diff --git a/lib/SZ3/tools/zstd/dictBuilder/cover.c b/lib/SZ3/tools/zstd/dictBuilder/cover.c deleted file mode 100644 index da54ef15..00000000 --- a/lib/SZ3/tools/zstd/dictBuilder/cover.c +++ /dev/null @@ -1,1236 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/* ***************************************************************************** - * Constructs a dictionary using a heuristic based on the following paper: - * - * Liao, Petri, Moffat, Wirth - * Effective Construction of Relative Lempel-Ziv Dictionaries - * Published in WWW 2016. - * - * Adapted from code originally written by @ot (Giuseppe Ottaviano). - ******************************************************************************/ - -/*-************************************* -* Dependencies -***************************************/ -#include /* fprintf */ -#include /* malloc, free, qsort */ -#include /* memset */ -#include /* clock */ - -#include "../common/mem.h" /* read */ -#include "../common/pool.h" -#include "../common/threading.h" -#include "cover.h" -#include "../common/zstd_internal.h" /* includes zstd.h */ -#ifndef ZDICT_STATIC_LINKING_ONLY -#define ZDICT_STATIC_LINKING_ONLY -#endif -#include "zdict.h" - -/*-************************************* -* Constants -***************************************/ -#define COVER_MAX_SAMPLES_SIZE (sizeof(size_t) == 8 ? ((unsigned)-1) : ((unsigned)1 GB)) -#define DEFAULT_SPLITPOINT 1.0 - -/*-************************************* -* Console display -***************************************/ -static int g_displayLevel = 2; -#define DISPLAY(...) \ - { \ - fprintf(stderr, __VA_ARGS__); \ - fflush(stderr); \ - } -#define LOCALDISPLAYLEVEL(displayLevel, l, ...) \ - if (displayLevel >= l) { \ - DISPLAY(__VA_ARGS__); \ - } /* 0 : no display; 1: errors; 2: default; 3: details; 4: debug */ -#define DISPLAYLEVEL(l, ...) LOCALDISPLAYLEVEL(g_displayLevel, l, __VA_ARGS__) - -#define LOCALDISPLAYUPDATE(displayLevel, l, ...) \ - if (displayLevel >= l) { \ - if ((clock() - g_time > refreshRate) || (displayLevel >= 4)) { \ - g_time = clock(); \ - DISPLAY(__VA_ARGS__); \ - } \ - } -#define DISPLAYUPDATE(l, ...) LOCALDISPLAYUPDATE(g_displayLevel, l, __VA_ARGS__) -static const clock_t refreshRate = CLOCKS_PER_SEC * 15 / 100; -static clock_t g_time = 0; - -/*-************************************* -* Hash table -*************************************** -* A small specialized hash map for storing activeDmers. -* The map does not resize, so if it becomes full it will loop forever. -* Thus, the map must be large enough to store every value. -* The map implements linear probing and keeps its load less than 0.5. -*/ - -#define MAP_EMPTY_VALUE ((U32)-1) -typedef struct COVER_map_pair_t_s { - U32 key; - U32 value; -} COVER_map_pair_t; - -typedef struct COVER_map_s { - COVER_map_pair_t *data; - U32 sizeLog; - U32 size; - U32 sizeMask; -} COVER_map_t; - -/** - * Clear the map. - */ -static void COVER_map_clear(COVER_map_t *map) { - memset(map->data, MAP_EMPTY_VALUE, map->size * sizeof(COVER_map_pair_t)); -} - -/** - * Initializes a map of the given size. - * Returns 1 on success and 0 on failure. - * The map must be destroyed with COVER_map_destroy(). - * The map is only guaranteed to be large enough to hold size elements. - */ -static int COVER_map_init(COVER_map_t *map, U32 size) { - map->sizeLog = ZSTD_highbit32(size) + 2; - map->size = (U32)1 << map->sizeLog; - map->sizeMask = map->size - 1; - map->data = (COVER_map_pair_t *)malloc(map->size * sizeof(COVER_map_pair_t)); - if (!map->data) { - map->sizeLog = 0; - map->size = 0; - return 0; - } - COVER_map_clear(map); - return 1; -} - -/** - * Internal hash function - */ -static const U32 prime4bytes = 2654435761U; -static U32 COVER_map_hash(COVER_map_t *map, U32 key) { - return (key * prime4bytes) >> (32 - map->sizeLog); -} - -/** - * Helper function that returns the index that a key should be placed into. - */ -static U32 COVER_map_index(COVER_map_t *map, U32 key) { - const U32 hash = COVER_map_hash(map, key); - U32 i; - for (i = hash;; i = (i + 1) & map->sizeMask) { - COVER_map_pair_t *pos = &map->data[i]; - if (pos->value == MAP_EMPTY_VALUE) { - return i; - } - if (pos->key == key) { - return i; - } - } -} - -/** - * Returns the pointer to the value for key. - * If key is not in the map, it is inserted and the value is set to 0. - * The map must not be full. - */ -static U32 *COVER_map_at(COVER_map_t *map, U32 key) { - COVER_map_pair_t *pos = &map->data[COVER_map_index(map, key)]; - if (pos->value == MAP_EMPTY_VALUE) { - pos->key = key; - pos->value = 0; - } - return &pos->value; -} - -/** - * Deletes key from the map if present. - */ -static void COVER_map_remove(COVER_map_t *map, U32 key) { - U32 i = COVER_map_index(map, key); - COVER_map_pair_t *del = &map->data[i]; - U32 shift = 1; - if (del->value == MAP_EMPTY_VALUE) { - return; - } - for (i = (i + 1) & map->sizeMask;; i = (i + 1) & map->sizeMask) { - COVER_map_pair_t *const pos = &map->data[i]; - /* If the position is empty we are done */ - if (pos->value == MAP_EMPTY_VALUE) { - del->value = MAP_EMPTY_VALUE; - return; - } - /* If pos can be moved to del do so */ - if (((i - COVER_map_hash(map, pos->key)) & map->sizeMask) >= shift) { - del->key = pos->key; - del->value = pos->value; - del = pos; - shift = 1; - } else { - ++shift; - } - } -} - -/** - * Destroys a map that is inited with COVER_map_init(). - */ -static void COVER_map_destroy(COVER_map_t *map) { - if (map->data) { - free(map->data); - } - map->data = NULL; - map->size = 0; -} - -/*-************************************* -* Context -***************************************/ - -typedef struct { - const BYTE *samples; - size_t *offsets; - const size_t *samplesSizes; - size_t nbSamples; - size_t nbTrainSamples; - size_t nbTestSamples; - U32 *suffix; - size_t suffixSize; - U32 *freqs; - U32 *dmerAt; - unsigned d; -} COVER_ctx_t; - -/* We need a global context for qsort... */ -static COVER_ctx_t *g_ctx = NULL; - -/*-************************************* -* Helper functions -***************************************/ - -/** - * Returns the sum of the sample sizes. - */ -size_t COVER_sum(const size_t *samplesSizes, unsigned nbSamples) { - size_t sum = 0; - unsigned i; - for (i = 0; i < nbSamples; ++i) { - sum += samplesSizes[i]; - } - return sum; -} - -/** - * Returns -1 if the dmer at lp is less than the dmer at rp. - * Return 0 if the dmers at lp and rp are equal. - * Returns 1 if the dmer at lp is greater than the dmer at rp. - */ -static int COVER_cmp(COVER_ctx_t *ctx, const void *lp, const void *rp) { - U32 const lhs = *(U32 const *)lp; - U32 const rhs = *(U32 const *)rp; - return memcmp(ctx->samples + lhs, ctx->samples + rhs, ctx->d); -} -/** - * Faster version for d <= 8. - */ -static int COVER_cmp8(COVER_ctx_t *ctx, const void *lp, const void *rp) { - U64 const mask = (ctx->d == 8) ? (U64)-1 : (((U64)1 << (8 * ctx->d)) - 1); - U64 const lhs = MEM_readLE64(ctx->samples + *(U32 const *)lp) & mask; - U64 const rhs = MEM_readLE64(ctx->samples + *(U32 const *)rp) & mask; - if (lhs < rhs) { - return -1; - } - return (lhs > rhs); -} - -/** - * Same as COVER_cmp() except ties are broken by pointer value - * NOTE: g_ctx must be set to call this function. A global is required because - * qsort doesn't take an opaque pointer. - */ -static int COVER_strict_cmp(const void *lp, const void *rp) { - int result = COVER_cmp(g_ctx, lp, rp); - if (result == 0) { - result = lp < rp ? -1 : 1; - } - return result; -} -/** - * Faster version for d <= 8. - */ -static int COVER_strict_cmp8(const void *lp, const void *rp) { - int result = COVER_cmp8(g_ctx, lp, rp); - if (result == 0) { - result = lp < rp ? -1 : 1; - } - return result; -} - -/** - * Returns the first pointer in [first, last) whose element does not compare - * less than value. If no such element exists it returns last. - */ -static const size_t *COVER_lower_bound(const size_t *first, const size_t *last, - size_t value) { - size_t count = last - first; - while (count != 0) { - size_t step = count / 2; - const size_t *ptr = first; - ptr += step; - if (*ptr < value) { - first = ++ptr; - count -= step + 1; - } else { - count = step; - } - } - return first; -} - -/** - * Generic groupBy function. - * Groups an array sorted by cmp into groups with equivalent values. - * Calls grp for each group. - */ -static void -COVER_groupBy(const void *data, size_t count, size_t size, COVER_ctx_t *ctx, - int (*cmp)(COVER_ctx_t *, const void *, const void *), - void (*grp)(COVER_ctx_t *, const void *, const void *)) { - const BYTE *ptr = (const BYTE *)data; - size_t num = 0; - while (num < count) { - const BYTE *grpEnd = ptr + size; - ++num; - while (num < count && cmp(ctx, ptr, grpEnd) == 0) { - grpEnd += size; - ++num; - } - grp(ctx, ptr, grpEnd); - ptr = grpEnd; - } -} - -/*-************************************* -* Cover functions -***************************************/ - -/** - * Called on each group of positions with the same dmer. - * Counts the frequency of each dmer and saves it in the suffix array. - * Fills `ctx->dmerAt`. - */ -static void COVER_group(COVER_ctx_t *ctx, const void *group, - const void *groupEnd) { - /* The group consists of all the positions with the same first d bytes. */ - const U32 *grpPtr = (const U32 *)group; - const U32 *grpEnd = (const U32 *)groupEnd; - /* The dmerId is how we will reference this dmer. - * This allows us to map the whole dmer space to a much smaller space, the - * size of the suffix array. - */ - const U32 dmerId = (U32)(grpPtr - ctx->suffix); - /* Count the number of samples this dmer shows up in */ - U32 freq = 0; - /* Details */ - const size_t *curOffsetPtr = ctx->offsets; - const size_t *offsetsEnd = ctx->offsets + ctx->nbSamples; - /* Once *grpPtr >= curSampleEnd this occurrence of the dmer is in a - * different sample than the last. - */ - size_t curSampleEnd = ctx->offsets[0]; - for (; grpPtr != grpEnd; ++grpPtr) { - /* Save the dmerId for this position so we can get back to it. */ - ctx->dmerAt[*grpPtr] = dmerId; - /* Dictionaries only help for the first reference to the dmer. - * After that zstd can reference the match from the previous reference. - * So only count each dmer once for each sample it is in. - */ - if (*grpPtr < curSampleEnd) { - continue; - } - freq += 1; - /* Binary search to find the end of the sample *grpPtr is in. - * In the common case that grpPtr + 1 == grpEnd we can skip the binary - * search because the loop is over. - */ - if (grpPtr + 1 != grpEnd) { - const size_t *sampleEndPtr = - COVER_lower_bound(curOffsetPtr, offsetsEnd, *grpPtr); - curSampleEnd = *sampleEndPtr; - curOffsetPtr = sampleEndPtr + 1; - } - } - /* At this point we are never going to look at this segment of the suffix - * array again. We take advantage of this fact to save memory. - * We store the frequency of the dmer in the first position of the group, - * which is dmerId. - */ - ctx->suffix[dmerId] = freq; -} - - -/** - * Selects the best segment in an epoch. - * Segments of are scored according to the function: - * - * Let F(d) be the frequency of dmer d. - * Let S_i be the dmer at position i of segment S which has length k. - * - * Score(S) = F(S_1) + F(S_2) + ... + F(S_{k-d+1}) - * - * Once the dmer d is in the dictionary we set F(d) = 0. - */ -static COVER_segment_t COVER_selectSegment(const COVER_ctx_t *ctx, U32 *freqs, - COVER_map_t *activeDmers, U32 begin, - U32 end, - ZDICT_cover_params_t parameters) { - /* Constants */ - const U32 k = parameters.k; - const U32 d = parameters.d; - const U32 dmersInK = k - d + 1; - /* Try each segment (activeSegment) and save the best (bestSegment) */ - COVER_segment_t bestSegment = {0, 0, 0}; - COVER_segment_t activeSegment; - /* Reset the activeDmers in the segment */ - COVER_map_clear(activeDmers); - /* The activeSegment starts at the beginning of the epoch. */ - activeSegment.begin = begin; - activeSegment.end = begin; - activeSegment.score = 0; - /* Slide the activeSegment through the whole epoch. - * Save the best segment in bestSegment. - */ - while (activeSegment.end < end) { - /* The dmerId for the dmer at the next position */ - U32 newDmer = ctx->dmerAt[activeSegment.end]; - /* The entry in activeDmers for this dmerId */ - U32 *newDmerOcc = COVER_map_at(activeDmers, newDmer); - /* If the dmer isn't already present in the segment add its score. */ - if (*newDmerOcc == 0) { - /* The paper suggest using the L-0.5 norm, but experiments show that it - * doesn't help. - */ - activeSegment.score += freqs[newDmer]; - } - /* Add the dmer to the segment */ - activeSegment.end += 1; - *newDmerOcc += 1; - - /* If the window is now too large, drop the first position */ - if (activeSegment.end - activeSegment.begin == dmersInK + 1) { - U32 delDmer = ctx->dmerAt[activeSegment.begin]; - U32 *delDmerOcc = COVER_map_at(activeDmers, delDmer); - activeSegment.begin += 1; - *delDmerOcc -= 1; - /* If this is the last occurrence of the dmer, subtract its score */ - if (*delDmerOcc == 0) { - COVER_map_remove(activeDmers, delDmer); - activeSegment.score -= freqs[delDmer]; - } - } - - /* If this segment is the best so far save it */ - if (activeSegment.score > bestSegment.score) { - bestSegment = activeSegment; - } - } - { - /* Trim off the zero frequency head and tail from the segment. */ - U32 newBegin = bestSegment.end; - U32 newEnd = bestSegment.begin; - U32 pos; - for (pos = bestSegment.begin; pos != bestSegment.end; ++pos) { - U32 freq = freqs[ctx->dmerAt[pos]]; - if (freq != 0) { - newBegin = MIN(newBegin, pos); - newEnd = pos + 1; - } - } - bestSegment.begin = newBegin; - bestSegment.end = newEnd; - } - { - /* Zero out the frequency of each dmer covered by the chosen segment. */ - U32 pos; - for (pos = bestSegment.begin; pos != bestSegment.end; ++pos) { - freqs[ctx->dmerAt[pos]] = 0; - } - } - return bestSegment; -} - -/** - * Check the validity of the parameters. - * Returns non-zero if the parameters are valid and 0 otherwise. - */ -static int COVER_checkParameters(ZDICT_cover_params_t parameters, - size_t maxDictSize) { - /* k and d are required parameters */ - if (parameters.d == 0 || parameters.k == 0) { - return 0; - } - /* k <= maxDictSize */ - if (parameters.k > maxDictSize) { - return 0; - } - /* d <= k */ - if (parameters.d > parameters.k) { - return 0; - } - /* 0 < splitPoint <= 1 */ - if (parameters.splitPoint <= 0 || parameters.splitPoint > 1){ - return 0; - } - return 1; -} - -/** - * Clean up a context initialized with `COVER_ctx_init()`. - */ -static void COVER_ctx_destroy(COVER_ctx_t *ctx) { - if (!ctx) { - return; - } - if (ctx->suffix) { - free(ctx->suffix); - ctx->suffix = NULL; - } - if (ctx->freqs) { - free(ctx->freqs); - ctx->freqs = NULL; - } - if (ctx->dmerAt) { - free(ctx->dmerAt); - ctx->dmerAt = NULL; - } - if (ctx->offsets) { - free(ctx->offsets); - ctx->offsets = NULL; - } -} - -/** - * Prepare a context for dictionary building. - * The context is only dependent on the parameter `d` and can used multiple - * times. - * Returns 0 on success or error code on error. - * The context must be destroyed with `COVER_ctx_destroy()`. - */ -static size_t COVER_ctx_init(COVER_ctx_t *ctx, const void *samplesBuffer, - const size_t *samplesSizes, unsigned nbSamples, - unsigned d, double splitPoint) { - const BYTE *const samples = (const BYTE *)samplesBuffer; - const size_t totalSamplesSize = COVER_sum(samplesSizes, nbSamples); - /* Split samples into testing and training sets */ - const unsigned nbTrainSamples = splitPoint < 1.0 ? (unsigned)((double)nbSamples * splitPoint) : nbSamples; - const unsigned nbTestSamples = splitPoint < 1.0 ? nbSamples - nbTrainSamples : nbSamples; - const size_t trainingSamplesSize = splitPoint < 1.0 ? COVER_sum(samplesSizes, nbTrainSamples) : totalSamplesSize; - const size_t testSamplesSize = splitPoint < 1.0 ? COVER_sum(samplesSizes + nbTrainSamples, nbTestSamples) : totalSamplesSize; - /* Checks */ - if (totalSamplesSize < MAX(d, sizeof(U64)) || - totalSamplesSize >= (size_t)COVER_MAX_SAMPLES_SIZE) { - DISPLAYLEVEL(1, "Total samples size is too large (%u MB), maximum size is %u MB\n", - (unsigned)(totalSamplesSize>>20), (COVER_MAX_SAMPLES_SIZE >> 20)); - return ERROR(srcSize_wrong); - } - /* Check if there are at least 5 training samples */ - if (nbTrainSamples < 5) { - DISPLAYLEVEL(1, "Total number of training samples is %u and is invalid.", nbTrainSamples); - return ERROR(srcSize_wrong); - } - /* Check if there's testing sample */ - if (nbTestSamples < 1) { - DISPLAYLEVEL(1, "Total number of testing samples is %u and is invalid.", nbTestSamples); - return ERROR(srcSize_wrong); - } - /* Zero the context */ - memset(ctx, 0, sizeof(*ctx)); - DISPLAYLEVEL(2, "Training on %u samples of total size %u\n", nbTrainSamples, - (unsigned)trainingSamplesSize); - DISPLAYLEVEL(2, "Testing on %u samples of total size %u\n", nbTestSamples, - (unsigned)testSamplesSize); - ctx->samples = samples; - ctx->samplesSizes = samplesSizes; - ctx->nbSamples = nbSamples; - ctx->nbTrainSamples = nbTrainSamples; - ctx->nbTestSamples = nbTestSamples; - /* Partial suffix array */ - ctx->suffixSize = trainingSamplesSize - MAX(d, sizeof(U64)) + 1; - ctx->suffix = (U32 *)malloc(ctx->suffixSize * sizeof(U32)); - /* Maps index to the dmerID */ - ctx->dmerAt = (U32 *)malloc(ctx->suffixSize * sizeof(U32)); - /* The offsets of each file */ - ctx->offsets = (size_t *)malloc((nbSamples + 1) * sizeof(size_t)); - if (!ctx->suffix || !ctx->dmerAt || !ctx->offsets) { - DISPLAYLEVEL(1, "Failed to allocate scratch buffers\n"); - COVER_ctx_destroy(ctx); - return ERROR(memory_allocation); - } - ctx->freqs = NULL; - ctx->d = d; - - /* Fill offsets from the samplesSizes */ - { - U32 i; - ctx->offsets[0] = 0; - for (i = 1; i <= nbSamples; ++i) { - ctx->offsets[i] = ctx->offsets[i - 1] + samplesSizes[i - 1]; - } - } - DISPLAYLEVEL(2, "Constructing partial suffix array\n"); - { - /* suffix is a partial suffix array. - * It only sorts suffixes by their first parameters.d bytes. - * The sort is stable, so each dmer group is sorted by position in input. - */ - U32 i; - for (i = 0; i < ctx->suffixSize; ++i) { - ctx->suffix[i] = i; - } - /* qsort doesn't take an opaque pointer, so pass as a global. - * On OpenBSD qsort() is not guaranteed to be stable, their mergesort() is. - */ - g_ctx = ctx; -#if defined(__OpenBSD__) - mergesort(ctx->suffix, ctx->suffixSize, sizeof(U32), - (ctx->d <= 8 ? &COVER_strict_cmp8 : &COVER_strict_cmp)); -#else - qsort(ctx->suffix, ctx->suffixSize, sizeof(U32), - (ctx->d <= 8 ? &COVER_strict_cmp8 : &COVER_strict_cmp)); -#endif - } - DISPLAYLEVEL(2, "Computing frequencies\n"); - /* For each dmer group (group of positions with the same first d bytes): - * 1. For each position we set dmerAt[position] = dmerID. The dmerID is - * (groupBeginPtr - suffix). This allows us to go from position to - * dmerID so we can look up values in freq. - * 2. We calculate how many samples the dmer occurs in and save it in - * freqs[dmerId]. - */ - COVER_groupBy(ctx->suffix, ctx->suffixSize, sizeof(U32), ctx, - (ctx->d <= 8 ? &COVER_cmp8 : &COVER_cmp), &COVER_group); - ctx->freqs = ctx->suffix; - ctx->suffix = NULL; - return 0; -} - -void COVER_warnOnSmallCorpus(size_t maxDictSize, size_t nbDmers, int displayLevel) -{ - const double ratio = (double)nbDmers / maxDictSize; - if (ratio >= 10) { - return; - } - LOCALDISPLAYLEVEL(displayLevel, 1, - "WARNING: The maximum dictionary size %u is too large " - "compared to the source size %u! " - "size(source)/size(dictionary) = %f, but it should be >= " - "10! This may lead to a subpar dictionary! We recommend " - "training on sources at least 10x, and preferably 100x " - "the size of the dictionary! \n", (U32)maxDictSize, - (U32)nbDmers, ratio); -} - -COVER_epoch_info_t COVER_computeEpochs(U32 maxDictSize, - U32 nbDmers, U32 k, U32 passes) -{ - const U32 minEpochSize = k * 10; - COVER_epoch_info_t epochs; - epochs.num = MAX(1, maxDictSize / k / passes); - epochs.size = nbDmers / epochs.num; - if (epochs.size >= minEpochSize) { - assert(epochs.size * epochs.num <= nbDmers); - return epochs; - } - epochs.size = MIN(minEpochSize, nbDmers); - epochs.num = nbDmers / epochs.size; - assert(epochs.size * epochs.num <= nbDmers); - return epochs; -} - -/** - * Given the prepared context build the dictionary. - */ -static size_t COVER_buildDictionary(const COVER_ctx_t *ctx, U32 *freqs, - COVER_map_t *activeDmers, void *dictBuffer, - size_t dictBufferCapacity, - ZDICT_cover_params_t parameters) { - BYTE *const dict = (BYTE *)dictBuffer; - size_t tail = dictBufferCapacity; - /* Divide the data into epochs. We will select one segment from each epoch. */ - const COVER_epoch_info_t epochs = COVER_computeEpochs( - (U32)dictBufferCapacity, (U32)ctx->suffixSize, parameters.k, 4); - const size_t maxZeroScoreRun = MAX(10, MIN(100, epochs.num >> 3)); - size_t zeroScoreRun = 0; - size_t epoch; - DISPLAYLEVEL(2, "Breaking content into %u epochs of size %u\n", - (U32)epochs.num, (U32)epochs.size); - /* Loop through the epochs until there are no more segments or the dictionary - * is full. - */ - for (epoch = 0; tail > 0; epoch = (epoch + 1) % epochs.num) { - const U32 epochBegin = (U32)(epoch * epochs.size); - const U32 epochEnd = epochBegin + epochs.size; - size_t segmentSize; - /* Select a segment */ - COVER_segment_t segment = COVER_selectSegment( - ctx, freqs, activeDmers, epochBegin, epochEnd, parameters); - /* If the segment covers no dmers, then we are out of content. - * There may be new content in other epochs, for continue for some time. - */ - if (segment.score == 0) { - if (++zeroScoreRun >= maxZeroScoreRun) { - break; - } - continue; - } - zeroScoreRun = 0; - /* Trim the segment if necessary and if it is too small then we are done */ - segmentSize = MIN(segment.end - segment.begin + parameters.d - 1, tail); - if (segmentSize < parameters.d) { - break; - } - /* We fill the dictionary from the back to allow the best segments to be - * referenced with the smallest offsets. - */ - tail -= segmentSize; - memcpy(dict + tail, ctx->samples + segment.begin, segmentSize); - DISPLAYUPDATE( - 2, "\r%u%% ", - (unsigned)(((dictBufferCapacity - tail) * 100) / dictBufferCapacity)); - } - DISPLAYLEVEL(2, "\r%79s\r", ""); - return tail; -} - -ZDICTLIB_API size_t ZDICT_trainFromBuffer_cover( - void *dictBuffer, size_t dictBufferCapacity, - const void *samplesBuffer, const size_t *samplesSizes, unsigned nbSamples, - ZDICT_cover_params_t parameters) -{ - BYTE* const dict = (BYTE*)dictBuffer; - COVER_ctx_t ctx; - COVER_map_t activeDmers; - parameters.splitPoint = 1.0; - /* Initialize global data */ - g_displayLevel = parameters.zParams.notificationLevel; - /* Checks */ - if (!COVER_checkParameters(parameters, dictBufferCapacity)) { - DISPLAYLEVEL(1, "Cover parameters incorrect\n"); - return ERROR(parameter_outOfBound); - } - if (nbSamples == 0) { - DISPLAYLEVEL(1, "Cover must have at least one input file\n"); - return ERROR(srcSize_wrong); - } - if (dictBufferCapacity < ZDICT_DICTSIZE_MIN) { - DISPLAYLEVEL(1, "dictBufferCapacity must be at least %u\n", - ZDICT_DICTSIZE_MIN); - return ERROR(dstSize_tooSmall); - } - /* Initialize context and activeDmers */ - { - size_t const initVal = COVER_ctx_init(&ctx, samplesBuffer, samplesSizes, nbSamples, - parameters.d, parameters.splitPoint); - if (ZSTD_isError(initVal)) { - return initVal; - } - } - COVER_warnOnSmallCorpus(dictBufferCapacity, ctx.suffixSize, g_displayLevel); - if (!COVER_map_init(&activeDmers, parameters.k - parameters.d + 1)) { - DISPLAYLEVEL(1, "Failed to allocate dmer map: out of memory\n"); - COVER_ctx_destroy(&ctx); - return ERROR(memory_allocation); - } - - DISPLAYLEVEL(2, "Building dictionary\n"); - { - const size_t tail = - COVER_buildDictionary(&ctx, ctx.freqs, &activeDmers, dictBuffer, - dictBufferCapacity, parameters); - const size_t dictionarySize = ZDICT_finalizeDictionary( - dict, dictBufferCapacity, dict + tail, dictBufferCapacity - tail, - samplesBuffer, samplesSizes, nbSamples, parameters.zParams); - if (!ZSTD_isError(dictionarySize)) { - DISPLAYLEVEL(2, "Constructed dictionary of size %u\n", - (unsigned)dictionarySize); - } - COVER_ctx_destroy(&ctx); - COVER_map_destroy(&activeDmers); - return dictionarySize; - } -} - - - -size_t COVER_checkTotalCompressedSize(const ZDICT_cover_params_t parameters, - const size_t *samplesSizes, const BYTE *samples, - size_t *offsets, - size_t nbTrainSamples, size_t nbSamples, - BYTE *const dict, size_t dictBufferCapacity) { - size_t totalCompressedSize = ERROR(GENERIC); - /* Pointers */ - ZSTD_CCtx *cctx; - ZSTD_CDict *cdict; - void *dst; - /* Local variables */ - size_t dstCapacity; - size_t i; - /* Allocate dst with enough space to compress the maximum sized sample */ - { - size_t maxSampleSize = 0; - i = parameters.splitPoint < 1.0 ? nbTrainSamples : 0; - for (; i < nbSamples; ++i) { - maxSampleSize = MAX(samplesSizes[i], maxSampleSize); - } - dstCapacity = ZSTD_compressBound(maxSampleSize); - dst = malloc(dstCapacity); - } - /* Create the cctx and cdict */ - cctx = ZSTD_createCCtx(); - cdict = ZSTD_createCDict(dict, dictBufferCapacity, - parameters.zParams.compressionLevel); - if (!dst || !cctx || !cdict) { - goto _compressCleanup; - } - /* Compress each sample and sum their sizes (or error) */ - totalCompressedSize = dictBufferCapacity; - i = parameters.splitPoint < 1.0 ? nbTrainSamples : 0; - for (; i < nbSamples; ++i) { - const size_t size = ZSTD_compress_usingCDict( - cctx, dst, dstCapacity, samples + offsets[i], - samplesSizes[i], cdict); - if (ZSTD_isError(size)) { - totalCompressedSize = size; - goto _compressCleanup; - } - totalCompressedSize += size; - } -_compressCleanup: - ZSTD_freeCCtx(cctx); - ZSTD_freeCDict(cdict); - if (dst) { - free(dst); - } - return totalCompressedSize; -} - - -/** - * Initialize the `COVER_best_t`. - */ -void COVER_best_init(COVER_best_t *best) { - if (best==NULL) return; /* compatible with init on NULL */ - (void)ZSTD_pthread_mutex_init(&best->mutex, NULL); - (void)ZSTD_pthread_cond_init(&best->cond, NULL); - best->liveJobs = 0; - best->dict = NULL; - best->dictSize = 0; - best->compressedSize = (size_t)-1; - memset(&best->parameters, 0, sizeof(best->parameters)); -} - -/** - * Wait until liveJobs == 0. - */ -void COVER_best_wait(COVER_best_t *best) { - if (!best) { - return; - } - ZSTD_pthread_mutex_lock(&best->mutex); - while (best->liveJobs != 0) { - ZSTD_pthread_cond_wait(&best->cond, &best->mutex); - } - ZSTD_pthread_mutex_unlock(&best->mutex); -} - -/** - * Call COVER_best_wait() and then destroy the COVER_best_t. - */ -void COVER_best_destroy(COVER_best_t *best) { - if (!best) { - return; - } - COVER_best_wait(best); - if (best->dict) { - free(best->dict); - } - ZSTD_pthread_mutex_destroy(&best->mutex); - ZSTD_pthread_cond_destroy(&best->cond); -} - -/** - * Called when a thread is about to be launched. - * Increments liveJobs. - */ -void COVER_best_start(COVER_best_t *best) { - if (!best) { - return; - } - ZSTD_pthread_mutex_lock(&best->mutex); - ++best->liveJobs; - ZSTD_pthread_mutex_unlock(&best->mutex); -} - -/** - * Called when a thread finishes executing, both on error or success. - * Decrements liveJobs and signals any waiting threads if liveJobs == 0. - * If this dictionary is the best so far save it and its parameters. - */ -void COVER_best_finish(COVER_best_t *best, ZDICT_cover_params_t parameters, - COVER_dictSelection_t selection) { - void* dict = selection.dictContent; - size_t compressedSize = selection.totalCompressedSize; - size_t dictSize = selection.dictSize; - if (!best) { - return; - } - { - size_t liveJobs; - ZSTD_pthread_mutex_lock(&best->mutex); - --best->liveJobs; - liveJobs = best->liveJobs; - /* If the new dictionary is better */ - if (compressedSize < best->compressedSize) { - /* Allocate space if necessary */ - if (!best->dict || best->dictSize < dictSize) { - if (best->dict) { - free(best->dict); - } - best->dict = malloc(dictSize); - if (!best->dict) { - best->compressedSize = ERROR(GENERIC); - best->dictSize = 0; - ZSTD_pthread_cond_signal(&best->cond); - ZSTD_pthread_mutex_unlock(&best->mutex); - return; - } - } - /* Save the dictionary, parameters, and size */ - if (dict) { - memcpy(best->dict, dict, dictSize); - best->dictSize = dictSize; - best->parameters = parameters; - best->compressedSize = compressedSize; - } - } - if (liveJobs == 0) { - ZSTD_pthread_cond_broadcast(&best->cond); - } - ZSTD_pthread_mutex_unlock(&best->mutex); - } -} - -COVER_dictSelection_t COVER_dictSelectionError(size_t error) { - COVER_dictSelection_t selection = { NULL, 0, error }; - return selection; -} - -unsigned COVER_dictSelectionIsError(COVER_dictSelection_t selection) { - return (ZSTD_isError(selection.totalCompressedSize) || !selection.dictContent); -} - -void COVER_dictSelectionFree(COVER_dictSelection_t selection){ - free(selection.dictContent); -} - -COVER_dictSelection_t COVER_selectDict(BYTE* customDictContent, - size_t dictContentSize, const BYTE* samplesBuffer, const size_t* samplesSizes, unsigned nbFinalizeSamples, - size_t nbCheckSamples, size_t nbSamples, ZDICT_cover_params_t params, size_t* offsets, size_t totalCompressedSize) { - - size_t largestDict = 0; - size_t largestCompressed = 0; - BYTE* customDictContentEnd = customDictContent + dictContentSize; - - BYTE * largestDictbuffer = (BYTE *)malloc(dictContentSize); - BYTE * candidateDictBuffer = (BYTE *)malloc(dictContentSize); - double regressionTolerance = ((double)params.shrinkDictMaxRegression / 100.0) + 1.00; - - if (!largestDictbuffer || !candidateDictBuffer) { - free(largestDictbuffer); - free(candidateDictBuffer); - return COVER_dictSelectionError(dictContentSize); - } - - /* Initial dictionary size and compressed size */ - memcpy(largestDictbuffer, customDictContent, dictContentSize); - dictContentSize = ZDICT_finalizeDictionary( - largestDictbuffer, dictContentSize, customDictContent, dictContentSize, - samplesBuffer, samplesSizes, nbFinalizeSamples, params.zParams); - - if (ZDICT_isError(dictContentSize)) { - free(largestDictbuffer); - free(candidateDictBuffer); - return COVER_dictSelectionError(dictContentSize); - } - - totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes, - samplesBuffer, offsets, - nbCheckSamples, nbSamples, - largestDictbuffer, dictContentSize); - - if (ZSTD_isError(totalCompressedSize)) { - free(largestDictbuffer); - free(candidateDictBuffer); - return COVER_dictSelectionError(totalCompressedSize); - } - - if (params.shrinkDict == 0) { - COVER_dictSelection_t selection = { largestDictbuffer, dictContentSize, totalCompressedSize }; - free(candidateDictBuffer); - return selection; - } - - largestDict = dictContentSize; - largestCompressed = totalCompressedSize; - dictContentSize = ZDICT_DICTSIZE_MIN; - - /* Largest dict is initially at least ZDICT_DICTSIZE_MIN */ - while (dictContentSize < largestDict) { - memcpy(candidateDictBuffer, largestDictbuffer, largestDict); - dictContentSize = ZDICT_finalizeDictionary( - candidateDictBuffer, dictContentSize, customDictContentEnd - dictContentSize, dictContentSize, - samplesBuffer, samplesSizes, nbFinalizeSamples, params.zParams); - - if (ZDICT_isError(dictContentSize)) { - free(largestDictbuffer); - free(candidateDictBuffer); - return COVER_dictSelectionError(dictContentSize); - - } - - totalCompressedSize = COVER_checkTotalCompressedSize(params, samplesSizes, - samplesBuffer, offsets, - nbCheckSamples, nbSamples, - candidateDictBuffer, dictContentSize); - - if (ZSTD_isError(totalCompressedSize)) { - free(largestDictbuffer); - free(candidateDictBuffer); - return COVER_dictSelectionError(totalCompressedSize); - } - - if (totalCompressedSize <= largestCompressed * regressionTolerance) { - COVER_dictSelection_t selection = { candidateDictBuffer, dictContentSize, totalCompressedSize }; - free(largestDictbuffer); - return selection; - } - dictContentSize *= 2; - } - dictContentSize = largestDict; - totalCompressedSize = largestCompressed; - { - COVER_dictSelection_t selection = { largestDictbuffer, dictContentSize, totalCompressedSize }; - free(candidateDictBuffer); - return selection; - } -} - -/** - * Parameters for COVER_tryParameters(). - */ -typedef struct COVER_tryParameters_data_s { - const COVER_ctx_t *ctx; - COVER_best_t *best; - size_t dictBufferCapacity; - ZDICT_cover_params_t parameters; -} COVER_tryParameters_data_t; - -/** - * Tries a set of parameters and updates the COVER_best_t with the results. - * This function is thread safe if zstd is compiled with multithreaded support. - * It takes its parameters as an *OWNING* opaque pointer to support threading. - */ -static void COVER_tryParameters(void *opaque) { - /* Save parameters as local variables */ - COVER_tryParameters_data_t *const data = (COVER_tryParameters_data_t *)opaque; - const COVER_ctx_t *const ctx = data->ctx; - const ZDICT_cover_params_t parameters = data->parameters; - size_t dictBufferCapacity = data->dictBufferCapacity; - size_t totalCompressedSize = ERROR(GENERIC); - /* Allocate space for hash table, dict, and freqs */ - COVER_map_t activeDmers; - BYTE *const dict = (BYTE * const)malloc(dictBufferCapacity); - COVER_dictSelection_t selection = COVER_dictSelectionError(ERROR(GENERIC)); - U32 *freqs = (U32 *)malloc(ctx->suffixSize * sizeof(U32)); - if (!COVER_map_init(&activeDmers, parameters.k - parameters.d + 1)) { - DISPLAYLEVEL(1, "Failed to allocate dmer map: out of memory\n"); - goto _cleanup; - } - if (!dict || !freqs) { - DISPLAYLEVEL(1, "Failed to allocate buffers: out of memory\n"); - goto _cleanup; - } - /* Copy the frequencies because we need to modify them */ - memcpy(freqs, ctx->freqs, ctx->suffixSize * sizeof(U32)); - /* Build the dictionary */ - { - const size_t tail = COVER_buildDictionary(ctx, freqs, &activeDmers, dict, - dictBufferCapacity, parameters); - selection = COVER_selectDict(dict + tail, dictBufferCapacity - tail, - ctx->samples, ctx->samplesSizes, (unsigned)ctx->nbTrainSamples, ctx->nbTrainSamples, ctx->nbSamples, parameters, ctx->offsets, - totalCompressedSize); - - if (COVER_dictSelectionIsError(selection)) { - DISPLAYLEVEL(1, "Failed to select dictionary\n"); - goto _cleanup; - } - } -_cleanup: - free(dict); - COVER_best_finish(data->best, parameters, selection); - free(data); - COVER_map_destroy(&activeDmers); - COVER_dictSelectionFree(selection); - if (freqs) { - free(freqs); - } -} - -ZDICTLIB_API size_t ZDICT_optimizeTrainFromBuffer_cover( - void *dictBuffer, size_t dictBufferCapacity, const void *samplesBuffer, - const size_t *samplesSizes, unsigned nbSamples, - ZDICT_cover_params_t *parameters) { - /* constants */ - const unsigned nbThreads = parameters->nbThreads; - const double splitPoint = - parameters->splitPoint <= 0.0 ? DEFAULT_SPLITPOINT : parameters->splitPoint; - const unsigned kMinD = parameters->d == 0 ? 6 : parameters->d; - const unsigned kMaxD = parameters->d == 0 ? 8 : parameters->d; - const unsigned kMinK = parameters->k == 0 ? 50 : parameters->k; - const unsigned kMaxK = parameters->k == 0 ? 2000 : parameters->k; - const unsigned kSteps = parameters->steps == 0 ? 40 : parameters->steps; - const unsigned kStepSize = MAX((kMaxK - kMinK) / kSteps, 1); - const unsigned kIterations = - (1 + (kMaxD - kMinD) / 2) * (1 + (kMaxK - kMinK) / kStepSize); - const unsigned shrinkDict = 0; - /* Local variables */ - const int displayLevel = parameters->zParams.notificationLevel; - unsigned iteration = 1; - unsigned d; - unsigned k; - COVER_best_t best; - POOL_ctx *pool = NULL; - int warned = 0; - - /* Checks */ - if (splitPoint <= 0 || splitPoint > 1) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect parameters\n"); - return ERROR(parameter_outOfBound); - } - if (kMinK < kMaxD || kMaxK < kMinK) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect parameters\n"); - return ERROR(parameter_outOfBound); - } - if (nbSamples == 0) { - DISPLAYLEVEL(1, "Cover must have at least one input file\n"); - return ERROR(srcSize_wrong); - } - if (dictBufferCapacity < ZDICT_DICTSIZE_MIN) { - DISPLAYLEVEL(1, "dictBufferCapacity must be at least %u\n", - ZDICT_DICTSIZE_MIN); - return ERROR(dstSize_tooSmall); - } - if (nbThreads > 1) { - pool = POOL_create(nbThreads, 1); - if (!pool) { - return ERROR(memory_allocation); - } - } - /* Initialization */ - COVER_best_init(&best); - /* Turn down global display level to clean up display at level 2 and below */ - g_displayLevel = displayLevel == 0 ? 0 : displayLevel - 1; - /* Loop through d first because each new value needs a new context */ - LOCALDISPLAYLEVEL(displayLevel, 2, "Trying %u different sets of parameters\n", - kIterations); - for (d = kMinD; d <= kMaxD; d += 2) { - /* Initialize the context for this value of d */ - COVER_ctx_t ctx; - LOCALDISPLAYLEVEL(displayLevel, 3, "d=%u\n", d); - { - const size_t initVal = COVER_ctx_init(&ctx, samplesBuffer, samplesSizes, nbSamples, d, splitPoint); - if (ZSTD_isError(initVal)) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Failed to initialize context\n"); - COVER_best_destroy(&best); - POOL_free(pool); - return initVal; - } - } - if (!warned) { - COVER_warnOnSmallCorpus(dictBufferCapacity, ctx.suffixSize, displayLevel); - warned = 1; - } - /* Loop through k reusing the same context */ - for (k = kMinK; k <= kMaxK; k += kStepSize) { - /* Prepare the arguments */ - COVER_tryParameters_data_t *data = (COVER_tryParameters_data_t *)malloc( - sizeof(COVER_tryParameters_data_t)); - LOCALDISPLAYLEVEL(displayLevel, 3, "k=%u\n", k); - if (!data) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Failed to allocate parameters\n"); - COVER_best_destroy(&best); - COVER_ctx_destroy(&ctx); - POOL_free(pool); - return ERROR(memory_allocation); - } - data->ctx = &ctx; - data->best = &best; - data->dictBufferCapacity = dictBufferCapacity; - data->parameters = *parameters; - data->parameters.k = k; - data->parameters.d = d; - data->parameters.splitPoint = splitPoint; - data->parameters.steps = kSteps; - data->parameters.shrinkDict = shrinkDict; - data->parameters.zParams.notificationLevel = g_displayLevel; - /* Check the parameters */ - if (!COVER_checkParameters(data->parameters, dictBufferCapacity)) { - DISPLAYLEVEL(1, "Cover parameters incorrect\n"); - free(data); - continue; - } - /* Call the function and pass ownership of data to it */ - COVER_best_start(&best); - if (pool) { - POOL_add(pool, &COVER_tryParameters, data); - } else { - COVER_tryParameters(data); - } - /* Print status */ - LOCALDISPLAYUPDATE(displayLevel, 2, "\r%u%% ", - (unsigned)((iteration * 100) / kIterations)); - ++iteration; - } - COVER_best_wait(&best); - COVER_ctx_destroy(&ctx); - } - LOCALDISPLAYLEVEL(displayLevel, 2, "\r%79s\r", ""); - /* Fill the output buffer and parameters with output of the best parameters */ - { - const size_t dictSize = best.dictSize; - if (ZSTD_isError(best.compressedSize)) { - const size_t compressedSize = best.compressedSize; - COVER_best_destroy(&best); - POOL_free(pool); - return compressedSize; - } - *parameters = best.parameters; - memcpy(dictBuffer, best.dict, dictSize); - COVER_best_destroy(&best); - POOL_free(pool); - return dictSize; - } -} diff --git a/lib/SZ3/tools/zstd/dictBuilder/cover.h b/lib/SZ3/tools/zstd/dictBuilder/cover.h deleted file mode 100644 index f2aa0e35..00000000 --- a/lib/SZ3/tools/zstd/dictBuilder/cover.h +++ /dev/null @@ -1,157 +0,0 @@ -/* - * Copyright (c) 2017-2020, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#include /* fprintf */ -#include /* malloc, free, qsort */ -#include /* memset */ -#include /* clock */ -#include "../common/mem.h" /* read */ -#include "../common/pool.h" -#include "../common/threading.h" -#include "../common/zstd_internal.h" /* includes zstd.h */ -#ifndef ZDICT_STATIC_LINKING_ONLY -#define ZDICT_STATIC_LINKING_ONLY -#endif -#include "zdict.h" - -/** - * COVER_best_t is used for two purposes: - * 1. Synchronizing threads. - * 2. Saving the best parameters and dictionary. - * - * All of the methods except COVER_best_init() are thread safe if zstd is - * compiled with multithreaded support. - */ -typedef struct COVER_best_s { - ZSTD_pthread_mutex_t mutex; - ZSTD_pthread_cond_t cond; - size_t liveJobs; - void *dict; - size_t dictSize; - ZDICT_cover_params_t parameters; - size_t compressedSize; -} COVER_best_t; - -/** - * A segment is a range in the source as well as the score of the segment. - */ -typedef struct { - U32 begin; - U32 end; - U32 score; -} COVER_segment_t; - -/** - *Number of epochs and size of each epoch. - */ -typedef struct { - U32 num; - U32 size; -} COVER_epoch_info_t; - -/** - * Struct used for the dictionary selection function. - */ -typedef struct COVER_dictSelection { - BYTE* dictContent; - size_t dictSize; - size_t totalCompressedSize; -} COVER_dictSelection_t; - -/** - * Computes the number of epochs and the size of each epoch. - * We will make sure that each epoch gets at least 10 * k bytes. - * - * The COVER algorithms divide the data up into epochs of equal size and - * select one segment from each epoch. - * - * @param maxDictSize The maximum allowed dictionary size. - * @param nbDmers The number of dmers we are training on. - * @param k The parameter k (segment size). - * @param passes The target number of passes over the dmer corpus. - * More passes means a better dictionary. - */ -COVER_epoch_info_t COVER_computeEpochs(U32 maxDictSize, U32 nbDmers, - U32 k, U32 passes); - -/** - * Warns the user when their corpus is too small. - */ -void COVER_warnOnSmallCorpus(size_t maxDictSize, size_t nbDmers, int displayLevel); - -/** - * Checks total compressed size of a dictionary - */ -size_t COVER_checkTotalCompressedSize(const ZDICT_cover_params_t parameters, - const size_t *samplesSizes, const BYTE *samples, - size_t *offsets, - size_t nbTrainSamples, size_t nbSamples, - BYTE *const dict, size_t dictBufferCapacity); - -/** - * Returns the sum of the sample sizes. - */ -size_t COVER_sum(const size_t *samplesSizes, unsigned nbSamples) ; - -/** - * Initialize the `COVER_best_t`. - */ -void COVER_best_init(COVER_best_t *best); - -/** - * Wait until liveJobs == 0. - */ -void COVER_best_wait(COVER_best_t *best); - -/** - * Call COVER_best_wait() and then destroy the COVER_best_t. - */ -void COVER_best_destroy(COVER_best_t *best); - -/** - * Called when a thread is about to be launched. - * Increments liveJobs. - */ -void COVER_best_start(COVER_best_t *best); - -/** - * Called when a thread finishes executing, both on error or success. - * Decrements liveJobs and signals any waiting threads if liveJobs == 0. - * If this dictionary is the best so far save it and its parameters. - */ -void COVER_best_finish(COVER_best_t *best, ZDICT_cover_params_t parameters, - COVER_dictSelection_t selection); -/** - * Error function for COVER_selectDict function. Checks if the return - * value is an error. - */ -unsigned COVER_dictSelectionIsError(COVER_dictSelection_t selection); - - /** - * Error function for COVER_selectDict function. Returns a struct where - * return.totalCompressedSize is a ZSTD error. - */ -COVER_dictSelection_t COVER_dictSelectionError(size_t error); - -/** - * Always call after selectDict is called to free up used memory from - * newly created dictionary. - */ -void COVER_dictSelectionFree(COVER_dictSelection_t selection); - -/** - * Called to finalize the dictionary and select one based on whether or not - * the shrink-dict flag was enabled. If enabled the dictionary used is the - * smallest dictionary within a specified regression of the compressed size - * from the largest dictionary. - */ - COVER_dictSelection_t COVER_selectDict(BYTE* customDictContent, - size_t dictContentSize, const BYTE* samplesBuffer, const size_t* samplesSizes, unsigned nbFinalizeSamples, - size_t nbCheckSamples, size_t nbSamples, ZDICT_cover_params_t params, size_t* offsets, size_t totalCompressedSize); diff --git a/lib/SZ3/tools/zstd/dictBuilder/divsufsort.c b/lib/SZ3/tools/zstd/dictBuilder/divsufsort.c deleted file mode 100644 index ead92204..00000000 --- a/lib/SZ3/tools/zstd/dictBuilder/divsufsort.c +++ /dev/null @@ -1,1913 +0,0 @@ -/* - * divsufsort.c for libdivsufsort-lite - * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person - * obtaining a copy of this software and associated documentation - * files (the "Software"), to deal in the Software without - * restriction, including without limitation the rights to use, - * copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following - * conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES - * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - * OTHER DEALINGS IN THE SOFTWARE. - */ - -/*- Compiler specifics -*/ -#ifdef __clang__ -#pragma clang diagnostic ignored "-Wshorten-64-to-32" -#endif - -#if defined(_MSC_VER) -# pragma warning(disable : 4244) -# pragma warning(disable : 4127) /* C4127 : Condition expression is constant */ -#endif - - -/*- Dependencies -*/ -#include -#include -#include - -#include "divsufsort.h" - -/*- Constants -*/ -#if defined(INLINE) -# undef INLINE -#endif -#if !defined(INLINE) -# define INLINE __inline -#endif -#if defined(ALPHABET_SIZE) && (ALPHABET_SIZE < 1) -# undef ALPHABET_SIZE -#endif -#if !defined(ALPHABET_SIZE) -# define ALPHABET_SIZE (256) -#endif -#define BUCKET_A_SIZE (ALPHABET_SIZE) -#define BUCKET_B_SIZE (ALPHABET_SIZE * ALPHABET_SIZE) -#if defined(SS_INSERTIONSORT_THRESHOLD) -# if SS_INSERTIONSORT_THRESHOLD < 1 -# undef SS_INSERTIONSORT_THRESHOLD -# define SS_INSERTIONSORT_THRESHOLD (1) -# endif -#else -# define SS_INSERTIONSORT_THRESHOLD (8) -#endif -#if defined(SS_BLOCKSIZE) -# if SS_BLOCKSIZE < 0 -# undef SS_BLOCKSIZE -# define SS_BLOCKSIZE (0) -# elif 32768 <= SS_BLOCKSIZE -# undef SS_BLOCKSIZE -# define SS_BLOCKSIZE (32767) -# endif -#else -# define SS_BLOCKSIZE (1024) -#endif -/* minstacksize = log(SS_BLOCKSIZE) / log(3) * 2 */ -#if SS_BLOCKSIZE == 0 -# define SS_MISORT_STACKSIZE (96) -#elif SS_BLOCKSIZE <= 4096 -# define SS_MISORT_STACKSIZE (16) -#else -# define SS_MISORT_STACKSIZE (24) -#endif -#define SS_SMERGE_STACKSIZE (32) -#define TR_INSERTIONSORT_THRESHOLD (8) -#define TR_STACKSIZE (64) - - -/*- Macros -*/ -#ifndef SWAP -# define SWAP(_a, _b) do { t = (_a); (_a) = (_b); (_b) = t; } while(0) -#endif /* SWAP */ -#ifndef MIN -# define MIN(_a, _b) (((_a) < (_b)) ? (_a) : (_b)) -#endif /* MIN */ -#ifndef MAX -# define MAX(_a, _b) (((_a) > (_b)) ? (_a) : (_b)) -#endif /* MAX */ -#define STACK_PUSH(_a, _b, _c, _d)\ - do {\ - assert(ssize < STACK_SIZE);\ - stack[ssize].a = (_a), stack[ssize].b = (_b),\ - stack[ssize].c = (_c), stack[ssize++].d = (_d);\ - } while(0) -#define STACK_PUSH5(_a, _b, _c, _d, _e)\ - do {\ - assert(ssize < STACK_SIZE);\ - stack[ssize].a = (_a), stack[ssize].b = (_b),\ - stack[ssize].c = (_c), stack[ssize].d = (_d), stack[ssize++].e = (_e);\ - } while(0) -#define STACK_POP(_a, _b, _c, _d)\ - do {\ - assert(0 <= ssize);\ - if(ssize == 0) { return; }\ - (_a) = stack[--ssize].a, (_b) = stack[ssize].b,\ - (_c) = stack[ssize].c, (_d) = stack[ssize].d;\ - } while(0) -#define STACK_POP5(_a, _b, _c, _d, _e)\ - do {\ - assert(0 <= ssize);\ - if(ssize == 0) { return; }\ - (_a) = stack[--ssize].a, (_b) = stack[ssize].b,\ - (_c) = stack[ssize].c, (_d) = stack[ssize].d, (_e) = stack[ssize].e;\ - } while(0) -#define BUCKET_A(_c0) bucket_A[(_c0)] -#if ALPHABET_SIZE == 256 -#define BUCKET_B(_c0, _c1) (bucket_B[((_c1) << 8) | (_c0)]) -#define BUCKET_BSTAR(_c0, _c1) (bucket_B[((_c0) << 8) | (_c1)]) -#else -#define BUCKET_B(_c0, _c1) (bucket_B[(_c1) * ALPHABET_SIZE + (_c0)]) -#define BUCKET_BSTAR(_c0, _c1) (bucket_B[(_c0) * ALPHABET_SIZE + (_c1)]) -#endif - - -/*- Private Functions -*/ - -static const int lg_table[256]= { - -1,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, - 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5, - 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, - 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, - 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, - 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, - 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, - 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7 -}; - -#if (SS_BLOCKSIZE == 0) || (SS_INSERTIONSORT_THRESHOLD < SS_BLOCKSIZE) - -static INLINE -int -ss_ilg(int n) { -#if SS_BLOCKSIZE == 0 - return (n & 0xffff0000) ? - ((n & 0xff000000) ? - 24 + lg_table[(n >> 24) & 0xff] : - 16 + lg_table[(n >> 16) & 0xff]) : - ((n & 0x0000ff00) ? - 8 + lg_table[(n >> 8) & 0xff] : - 0 + lg_table[(n >> 0) & 0xff]); -#elif SS_BLOCKSIZE < 256 - return lg_table[n]; -#else - return (n & 0xff00) ? - 8 + lg_table[(n >> 8) & 0xff] : - 0 + lg_table[(n >> 0) & 0xff]; -#endif -} - -#endif /* (SS_BLOCKSIZE == 0) || (SS_INSERTIONSORT_THRESHOLD < SS_BLOCKSIZE) */ - -#if SS_BLOCKSIZE != 0 - -static const int sqq_table[256] = { - 0, 16, 22, 27, 32, 35, 39, 42, 45, 48, 50, 53, 55, 57, 59, 61, - 64, 65, 67, 69, 71, 73, 75, 76, 78, 80, 81, 83, 84, 86, 87, 89, - 90, 91, 93, 94, 96, 97, 98, 99, 101, 102, 103, 104, 106, 107, 108, 109, -110, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, -128, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, -143, 144, 144, 145, 146, 147, 148, 149, 150, 150, 151, 152, 153, 154, 155, 155, -156, 157, 158, 159, 160, 160, 161, 162, 163, 163, 164, 165, 166, 167, 167, 168, -169, 170, 170, 171, 172, 173, 173, 174, 175, 176, 176, 177, 178, 178, 179, 180, -181, 181, 182, 183, 183, 184, 185, 185, 186, 187, 187, 188, 189, 189, 190, 191, -192, 192, 193, 193, 194, 195, 195, 196, 197, 197, 198, 199, 199, 200, 201, 201, -202, 203, 203, 204, 204, 205, 206, 206, 207, 208, 208, 209, 209, 210, 211, 211, -212, 212, 213, 214, 214, 215, 215, 216, 217, 217, 218, 218, 219, 219, 220, 221, -221, 222, 222, 223, 224, 224, 225, 225, 226, 226, 227, 227, 228, 229, 229, 230, -230, 231, 231, 232, 232, 233, 234, 234, 235, 235, 236, 236, 237, 237, 238, 238, -239, 240, 240, 241, 241, 242, 242, 243, 243, 244, 244, 245, 245, 246, 246, 247, -247, 248, 248, 249, 249, 250, 250, 251, 251, 252, 252, 253, 253, 254, 254, 255 -}; - -static INLINE -int -ss_isqrt(int x) { - int y, e; - - if(x >= (SS_BLOCKSIZE * SS_BLOCKSIZE)) { return SS_BLOCKSIZE; } - e = (x & 0xffff0000) ? - ((x & 0xff000000) ? - 24 + lg_table[(x >> 24) & 0xff] : - 16 + lg_table[(x >> 16) & 0xff]) : - ((x & 0x0000ff00) ? - 8 + lg_table[(x >> 8) & 0xff] : - 0 + lg_table[(x >> 0) & 0xff]); - - if(e >= 16) { - y = sqq_table[x >> ((e - 6) - (e & 1))] << ((e >> 1) - 7); - if(e >= 24) { y = (y + 1 + x / y) >> 1; } - y = (y + 1 + x / y) >> 1; - } else if(e >= 8) { - y = (sqq_table[x >> ((e - 6) - (e & 1))] >> (7 - (e >> 1))) + 1; - } else { - return sqq_table[x] >> 4; - } - - return (x < (y * y)) ? y - 1 : y; -} - -#endif /* SS_BLOCKSIZE != 0 */ - - -/*---------------------------------------------------------------------------*/ - -/* Compares two suffixes. */ -static INLINE -int -ss_compare(const unsigned char *T, - const int *p1, const int *p2, - int depth) { - const unsigned char *U1, *U2, *U1n, *U2n; - - for(U1 = T + depth + *p1, - U2 = T + depth + *p2, - U1n = T + *(p1 + 1) + 2, - U2n = T + *(p2 + 1) + 2; - (U1 < U1n) && (U2 < U2n) && (*U1 == *U2); - ++U1, ++U2) { - } - - return U1 < U1n ? - (U2 < U2n ? *U1 - *U2 : 1) : - (U2 < U2n ? -1 : 0); -} - - -/*---------------------------------------------------------------------------*/ - -#if (SS_BLOCKSIZE != 1) && (SS_INSERTIONSORT_THRESHOLD != 1) - -/* Insertionsort for small size groups */ -static -void -ss_insertionsort(const unsigned char *T, const int *PA, - int *first, int *last, int depth) { - int *i, *j; - int t; - int r; - - for(i = last - 2; first <= i; --i) { - for(t = *i, j = i + 1; 0 < (r = ss_compare(T, PA + t, PA + *j, depth));) { - do { *(j - 1) = *j; } while((++j < last) && (*j < 0)); - if(last <= j) { break; } - } - if(r == 0) { *j = ~*j; } - *(j - 1) = t; - } -} - -#endif /* (SS_BLOCKSIZE != 1) && (SS_INSERTIONSORT_THRESHOLD != 1) */ - - -/*---------------------------------------------------------------------------*/ - -#if (SS_BLOCKSIZE == 0) || (SS_INSERTIONSORT_THRESHOLD < SS_BLOCKSIZE) - -static INLINE -void -ss_fixdown(const unsigned char *Td, const int *PA, - int *SA, int i, int size) { - int j, k; - int v; - int c, d, e; - - for(v = SA[i], c = Td[PA[v]]; (j = 2 * i + 1) < size; SA[i] = SA[k], i = k) { - d = Td[PA[SA[k = j++]]]; - if(d < (e = Td[PA[SA[j]]])) { k = j; d = e; } - if(d <= c) { break; } - } - SA[i] = v; -} - -/* Simple top-down heapsort. */ -static -void -ss_heapsort(const unsigned char *Td, const int *PA, int *SA, int size) { - int i, m; - int t; - - m = size; - if((size % 2) == 0) { - m--; - if(Td[PA[SA[m / 2]]] < Td[PA[SA[m]]]) { SWAP(SA[m], SA[m / 2]); } - } - - for(i = m / 2 - 1; 0 <= i; --i) { ss_fixdown(Td, PA, SA, i, m); } - if((size % 2) == 0) { SWAP(SA[0], SA[m]); ss_fixdown(Td, PA, SA, 0, m); } - for(i = m - 1; 0 < i; --i) { - t = SA[0], SA[0] = SA[i]; - ss_fixdown(Td, PA, SA, 0, i); - SA[i] = t; - } -} - - -/*---------------------------------------------------------------------------*/ - -/* Returns the median of three elements. */ -static INLINE -int * -ss_median3(const unsigned char *Td, const int *PA, - int *v1, int *v2, int *v3) { - int *t; - if(Td[PA[*v1]] > Td[PA[*v2]]) { SWAP(v1, v2); } - if(Td[PA[*v2]] > Td[PA[*v3]]) { - if(Td[PA[*v1]] > Td[PA[*v3]]) { return v1; } - else { return v3; } - } - return v2; -} - -/* Returns the median of five elements. */ -static INLINE -int * -ss_median5(const unsigned char *Td, const int *PA, - int *v1, int *v2, int *v3, int *v4, int *v5) { - int *t; - if(Td[PA[*v2]] > Td[PA[*v3]]) { SWAP(v2, v3); } - if(Td[PA[*v4]] > Td[PA[*v5]]) { SWAP(v4, v5); } - if(Td[PA[*v2]] > Td[PA[*v4]]) { SWAP(v2, v4); SWAP(v3, v5); } - if(Td[PA[*v1]] > Td[PA[*v3]]) { SWAP(v1, v3); } - if(Td[PA[*v1]] > Td[PA[*v4]]) { SWAP(v1, v4); SWAP(v3, v5); } - if(Td[PA[*v3]] > Td[PA[*v4]]) { return v4; } - return v3; -} - -/* Returns the pivot element. */ -static INLINE -int * -ss_pivot(const unsigned char *Td, const int *PA, int *first, int *last) { - int *middle; - int t; - - t = last - first; - middle = first + t / 2; - - if(t <= 512) { - if(t <= 32) { - return ss_median3(Td, PA, first, middle, last - 1); - } else { - t >>= 2; - return ss_median5(Td, PA, first, first + t, middle, last - 1 - t, last - 1); - } - } - t >>= 3; - first = ss_median3(Td, PA, first, first + t, first + (t << 1)); - middle = ss_median3(Td, PA, middle - t, middle, middle + t); - last = ss_median3(Td, PA, last - 1 - (t << 1), last - 1 - t, last - 1); - return ss_median3(Td, PA, first, middle, last); -} - - -/*---------------------------------------------------------------------------*/ - -/* Binary partition for substrings. */ -static INLINE -int * -ss_partition(const int *PA, - int *first, int *last, int depth) { - int *a, *b; - int t; - for(a = first - 1, b = last;;) { - for(; (++a < b) && ((PA[*a] + depth) >= (PA[*a + 1] + 1));) { *a = ~*a; } - for(; (a < --b) && ((PA[*b] + depth) < (PA[*b + 1] + 1));) { } - if(b <= a) { break; } - t = ~*b; - *b = *a; - *a = t; - } - if(first < a) { *first = ~*first; } - return a; -} - -/* Multikey introsort for medium size groups. */ -static -void -ss_mintrosort(const unsigned char *T, const int *PA, - int *first, int *last, - int depth) { -#define STACK_SIZE SS_MISORT_STACKSIZE - struct { int *a, *b, c; int d; } stack[STACK_SIZE]; - const unsigned char *Td; - int *a, *b, *c, *d, *e, *f; - int s, t; - int ssize; - int limit; - int v, x = 0; - - for(ssize = 0, limit = ss_ilg(last - first);;) { - - if((last - first) <= SS_INSERTIONSORT_THRESHOLD) { -#if 1 < SS_INSERTIONSORT_THRESHOLD - if(1 < (last - first)) { ss_insertionsort(T, PA, first, last, depth); } -#endif - STACK_POP(first, last, depth, limit); - continue; - } - - Td = T + depth; - if(limit-- == 0) { ss_heapsort(Td, PA, first, last - first); } - if(limit < 0) { - for(a = first + 1, v = Td[PA[*first]]; a < last; ++a) { - if((x = Td[PA[*a]]) != v) { - if(1 < (a - first)) { break; } - v = x; - first = a; - } - } - if(Td[PA[*first] - 1] < v) { - first = ss_partition(PA, first, a, depth); - } - if((a - first) <= (last - a)) { - if(1 < (a - first)) { - STACK_PUSH(a, last, depth, -1); - last = a, depth += 1, limit = ss_ilg(a - first); - } else { - first = a, limit = -1; - } - } else { - if(1 < (last - a)) { - STACK_PUSH(first, a, depth + 1, ss_ilg(a - first)); - first = a, limit = -1; - } else { - last = a, depth += 1, limit = ss_ilg(a - first); - } - } - continue; - } - - /* choose pivot */ - a = ss_pivot(Td, PA, first, last); - v = Td[PA[*a]]; - SWAP(*first, *a); - - /* partition */ - for(b = first; (++b < last) && ((x = Td[PA[*b]]) == v);) { } - if(((a = b) < last) && (x < v)) { - for(; (++b < last) && ((x = Td[PA[*b]]) <= v);) { - if(x == v) { SWAP(*b, *a); ++a; } - } - } - for(c = last; (b < --c) && ((x = Td[PA[*c]]) == v);) { } - if((b < (d = c)) && (x > v)) { - for(; (b < --c) && ((x = Td[PA[*c]]) >= v);) { - if(x == v) { SWAP(*c, *d); --d; } - } - } - for(; b < c;) { - SWAP(*b, *c); - for(; (++b < c) && ((x = Td[PA[*b]]) <= v);) { - if(x == v) { SWAP(*b, *a); ++a; } - } - for(; (b < --c) && ((x = Td[PA[*c]]) >= v);) { - if(x == v) { SWAP(*c, *d); --d; } - } - } - - if(a <= d) { - c = b - 1; - - if((s = a - first) > (t = b - a)) { s = t; } - for(e = first, f = b - s; 0 < s; --s, ++e, ++f) { SWAP(*e, *f); } - if((s = d - c) > (t = last - d - 1)) { s = t; } - for(e = b, f = last - s; 0 < s; --s, ++e, ++f) { SWAP(*e, *f); } - - a = first + (b - a), c = last - (d - c); - b = (v <= Td[PA[*a] - 1]) ? a : ss_partition(PA, a, c, depth); - - if((a - first) <= (last - c)) { - if((last - c) <= (c - b)) { - STACK_PUSH(b, c, depth + 1, ss_ilg(c - b)); - STACK_PUSH(c, last, depth, limit); - last = a; - } else if((a - first) <= (c - b)) { - STACK_PUSH(c, last, depth, limit); - STACK_PUSH(b, c, depth + 1, ss_ilg(c - b)); - last = a; - } else { - STACK_PUSH(c, last, depth, limit); - STACK_PUSH(first, a, depth, limit); - first = b, last = c, depth += 1, limit = ss_ilg(c - b); - } - } else { - if((a - first) <= (c - b)) { - STACK_PUSH(b, c, depth + 1, ss_ilg(c - b)); - STACK_PUSH(first, a, depth, limit); - first = c; - } else if((last - c) <= (c - b)) { - STACK_PUSH(first, a, depth, limit); - STACK_PUSH(b, c, depth + 1, ss_ilg(c - b)); - first = c; - } else { - STACK_PUSH(first, a, depth, limit); - STACK_PUSH(c, last, depth, limit); - first = b, last = c, depth += 1, limit = ss_ilg(c - b); - } - } - } else { - limit += 1; - if(Td[PA[*first] - 1] < v) { - first = ss_partition(PA, first, last, depth); - limit = ss_ilg(last - first); - } - depth += 1; - } - } -#undef STACK_SIZE -} - -#endif /* (SS_BLOCKSIZE == 0) || (SS_INSERTIONSORT_THRESHOLD < SS_BLOCKSIZE) */ - - -/*---------------------------------------------------------------------------*/ - -#if SS_BLOCKSIZE != 0 - -static INLINE -void -ss_blockswap(int *a, int *b, int n) { - int t; - for(; 0 < n; --n, ++a, ++b) { - t = *a, *a = *b, *b = t; - } -} - -static INLINE -void -ss_rotate(int *first, int *middle, int *last) { - int *a, *b, t; - int l, r; - l = middle - first, r = last - middle; - for(; (0 < l) && (0 < r);) { - if(l == r) { ss_blockswap(first, middle, l); break; } - if(l < r) { - a = last - 1, b = middle - 1; - t = *a; - do { - *a-- = *b, *b-- = *a; - if(b < first) { - *a = t; - last = a; - if((r -= l + 1) <= l) { break; } - a -= 1, b = middle - 1; - t = *a; - } - } while(1); - } else { - a = first, b = middle; - t = *a; - do { - *a++ = *b, *b++ = *a; - if(last <= b) { - *a = t; - first = a + 1; - if((l -= r + 1) <= r) { break; } - a += 1, b = middle; - t = *a; - } - } while(1); - } - } -} - - -/*---------------------------------------------------------------------------*/ - -static -void -ss_inplacemerge(const unsigned char *T, const int *PA, - int *first, int *middle, int *last, - int depth) { - const int *p; - int *a, *b; - int len, half; - int q, r; - int x; - - for(;;) { - if(*(last - 1) < 0) { x = 1; p = PA + ~*(last - 1); } - else { x = 0; p = PA + *(last - 1); } - for(a = first, len = middle - first, half = len >> 1, r = -1; - 0 < len; - len = half, half >>= 1) { - b = a + half; - q = ss_compare(T, PA + ((0 <= *b) ? *b : ~*b), p, depth); - if(q < 0) { - a = b + 1; - half -= (len & 1) ^ 1; - } else { - r = q; - } - } - if(a < middle) { - if(r == 0) { *a = ~*a; } - ss_rotate(a, middle, last); - last -= middle - a; - middle = a; - if(first == middle) { break; } - } - --last; - if(x != 0) { while(*--last < 0) { } } - if(middle == last) { break; } - } -} - - -/*---------------------------------------------------------------------------*/ - -/* Merge-forward with internal buffer. */ -static -void -ss_mergeforward(const unsigned char *T, const int *PA, - int *first, int *middle, int *last, - int *buf, int depth) { - int *a, *b, *c, *bufend; - int t; - int r; - - bufend = buf + (middle - first) - 1; - ss_blockswap(buf, first, middle - first); - - for(t = *(a = first), b = buf, c = middle;;) { - r = ss_compare(T, PA + *b, PA + *c, depth); - if(r < 0) { - do { - *a++ = *b; - if(bufend <= b) { *bufend = t; return; } - *b++ = *a; - } while(*b < 0); - } else if(r > 0) { - do { - *a++ = *c, *c++ = *a; - if(last <= c) { - while(b < bufend) { *a++ = *b, *b++ = *a; } - *a = *b, *b = t; - return; - } - } while(*c < 0); - } else { - *c = ~*c; - do { - *a++ = *b; - if(bufend <= b) { *bufend = t; return; } - *b++ = *a; - } while(*b < 0); - - do { - *a++ = *c, *c++ = *a; - if(last <= c) { - while(b < bufend) { *a++ = *b, *b++ = *a; } - *a = *b, *b = t; - return; - } - } while(*c < 0); - } - } -} - -/* Merge-backward with internal buffer. */ -static -void -ss_mergebackward(const unsigned char *T, const int *PA, - int *first, int *middle, int *last, - int *buf, int depth) { - const int *p1, *p2; - int *a, *b, *c, *bufend; - int t; - int r; - int x; - - bufend = buf + (last - middle) - 1; - ss_blockswap(buf, middle, last - middle); - - x = 0; - if(*bufend < 0) { p1 = PA + ~*bufend; x |= 1; } - else { p1 = PA + *bufend; } - if(*(middle - 1) < 0) { p2 = PA + ~*(middle - 1); x |= 2; } - else { p2 = PA + *(middle - 1); } - for(t = *(a = last - 1), b = bufend, c = middle - 1;;) { - r = ss_compare(T, p1, p2, depth); - if(0 < r) { - if(x & 1) { do { *a-- = *b, *b-- = *a; } while(*b < 0); x ^= 1; } - *a-- = *b; - if(b <= buf) { *buf = t; break; } - *b-- = *a; - if(*b < 0) { p1 = PA + ~*b; x |= 1; } - else { p1 = PA + *b; } - } else if(r < 0) { - if(x & 2) { do { *a-- = *c, *c-- = *a; } while(*c < 0); x ^= 2; } - *a-- = *c, *c-- = *a; - if(c < first) { - while(buf < b) { *a-- = *b, *b-- = *a; } - *a = *b, *b = t; - break; - } - if(*c < 0) { p2 = PA + ~*c; x |= 2; } - else { p2 = PA + *c; } - } else { - if(x & 1) { do { *a-- = *b, *b-- = *a; } while(*b < 0); x ^= 1; } - *a-- = ~*b; - if(b <= buf) { *buf = t; break; } - *b-- = *a; - if(x & 2) { do { *a-- = *c, *c-- = *a; } while(*c < 0); x ^= 2; } - *a-- = *c, *c-- = *a; - if(c < first) { - while(buf < b) { *a-- = *b, *b-- = *a; } - *a = *b, *b = t; - break; - } - if(*b < 0) { p1 = PA + ~*b; x |= 1; } - else { p1 = PA + *b; } - if(*c < 0) { p2 = PA + ~*c; x |= 2; } - else { p2 = PA + *c; } - } - } -} - -/* D&C based merge. */ -static -void -ss_swapmerge(const unsigned char *T, const int *PA, - int *first, int *middle, int *last, - int *buf, int bufsize, int depth) { -#define STACK_SIZE SS_SMERGE_STACKSIZE -#define GETIDX(a) ((0 <= (a)) ? (a) : (~(a))) -#define MERGE_CHECK(a, b, c)\ - do {\ - if(((c) & 1) ||\ - (((c) & 2) && (ss_compare(T, PA + GETIDX(*((a) - 1)), PA + *(a), depth) == 0))) {\ - *(a) = ~*(a);\ - }\ - if(((c) & 4) && ((ss_compare(T, PA + GETIDX(*((b) - 1)), PA + *(b), depth) == 0))) {\ - *(b) = ~*(b);\ - }\ - } while(0) - struct { int *a, *b, *c; int d; } stack[STACK_SIZE]; - int *l, *r, *lm, *rm; - int m, len, half; - int ssize; - int check, next; - - for(check = 0, ssize = 0;;) { - if((last - middle) <= bufsize) { - if((first < middle) && (middle < last)) { - ss_mergebackward(T, PA, first, middle, last, buf, depth); - } - MERGE_CHECK(first, last, check); - STACK_POP(first, middle, last, check); - continue; - } - - if((middle - first) <= bufsize) { - if(first < middle) { - ss_mergeforward(T, PA, first, middle, last, buf, depth); - } - MERGE_CHECK(first, last, check); - STACK_POP(first, middle, last, check); - continue; - } - - for(m = 0, len = MIN(middle - first, last - middle), half = len >> 1; - 0 < len; - len = half, half >>= 1) { - if(ss_compare(T, PA + GETIDX(*(middle + m + half)), - PA + GETIDX(*(middle - m - half - 1)), depth) < 0) { - m += half + 1; - half -= (len & 1) ^ 1; - } - } - - if(0 < m) { - lm = middle - m, rm = middle + m; - ss_blockswap(lm, middle, m); - l = r = middle, next = 0; - if(rm < last) { - if(*rm < 0) { - *rm = ~*rm; - if(first < lm) { for(; *--l < 0;) { } next |= 4; } - next |= 1; - } else if(first < lm) { - for(; *r < 0; ++r) { } - next |= 2; - } - } - - if((l - first) <= (last - r)) { - STACK_PUSH(r, rm, last, (next & 3) | (check & 4)); - middle = lm, last = l, check = (check & 3) | (next & 4); - } else { - if((next & 2) && (r == middle)) { next ^= 6; } - STACK_PUSH(first, lm, l, (check & 3) | (next & 4)); - first = r, middle = rm, check = (next & 3) | (check & 4); - } - } else { - if(ss_compare(T, PA + GETIDX(*(middle - 1)), PA + *middle, depth) == 0) { - *middle = ~*middle; - } - MERGE_CHECK(first, last, check); - STACK_POP(first, middle, last, check); - } - } -#undef STACK_SIZE -} - -#endif /* SS_BLOCKSIZE != 0 */ - - -/*---------------------------------------------------------------------------*/ - -/* Substring sort */ -static -void -sssort(const unsigned char *T, const int *PA, - int *first, int *last, - int *buf, int bufsize, - int depth, int n, int lastsuffix) { - int *a; -#if SS_BLOCKSIZE != 0 - int *b, *middle, *curbuf; - int j, k, curbufsize, limit; -#endif - int i; - - if(lastsuffix != 0) { ++first; } - -#if SS_BLOCKSIZE == 0 - ss_mintrosort(T, PA, first, last, depth); -#else - if((bufsize < SS_BLOCKSIZE) && - (bufsize < (last - first)) && - (bufsize < (limit = ss_isqrt(last - first)))) { - if(SS_BLOCKSIZE < limit) { limit = SS_BLOCKSIZE; } - buf = middle = last - limit, bufsize = limit; - } else { - middle = last, limit = 0; - } - for(a = first, i = 0; SS_BLOCKSIZE < (middle - a); a += SS_BLOCKSIZE, ++i) { -#if SS_INSERTIONSORT_THRESHOLD < SS_BLOCKSIZE - ss_mintrosort(T, PA, a, a + SS_BLOCKSIZE, depth); -#elif 1 < SS_BLOCKSIZE - ss_insertionsort(T, PA, a, a + SS_BLOCKSIZE, depth); -#endif - curbufsize = last - (a + SS_BLOCKSIZE); - curbuf = a + SS_BLOCKSIZE; - if(curbufsize <= bufsize) { curbufsize = bufsize, curbuf = buf; } - for(b = a, k = SS_BLOCKSIZE, j = i; j & 1; b -= k, k <<= 1, j >>= 1) { - ss_swapmerge(T, PA, b - k, b, b + k, curbuf, curbufsize, depth); - } - } -#if SS_INSERTIONSORT_THRESHOLD < SS_BLOCKSIZE - ss_mintrosort(T, PA, a, middle, depth); -#elif 1 < SS_BLOCKSIZE - ss_insertionsort(T, PA, a, middle, depth); -#endif - for(k = SS_BLOCKSIZE; i != 0; k <<= 1, i >>= 1) { - if(i & 1) { - ss_swapmerge(T, PA, a - k, a, middle, buf, bufsize, depth); - a -= k; - } - } - if(limit != 0) { -#if SS_INSERTIONSORT_THRESHOLD < SS_BLOCKSIZE - ss_mintrosort(T, PA, middle, last, depth); -#elif 1 < SS_BLOCKSIZE - ss_insertionsort(T, PA, middle, last, depth); -#endif - ss_inplacemerge(T, PA, first, middle, last, depth); - } -#endif - - if(lastsuffix != 0) { - /* Insert last type B* suffix. */ - int PAi[2]; PAi[0] = PA[*(first - 1)], PAi[1] = n - 2; - for(a = first, i = *(first - 1); - (a < last) && ((*a < 0) || (0 < ss_compare(T, &(PAi[0]), PA + *a, depth))); - ++a) { - *(a - 1) = *a; - } - *(a - 1) = i; - } -} - - -/*---------------------------------------------------------------------------*/ - -static INLINE -int -tr_ilg(int n) { - return (n & 0xffff0000) ? - ((n & 0xff000000) ? - 24 + lg_table[(n >> 24) & 0xff] : - 16 + lg_table[(n >> 16) & 0xff]) : - ((n & 0x0000ff00) ? - 8 + lg_table[(n >> 8) & 0xff] : - 0 + lg_table[(n >> 0) & 0xff]); -} - - -/*---------------------------------------------------------------------------*/ - -/* Simple insertionsort for small size groups. */ -static -void -tr_insertionsort(const int *ISAd, int *first, int *last) { - int *a, *b; - int t, r; - - for(a = first + 1; a < last; ++a) { - for(t = *a, b = a - 1; 0 > (r = ISAd[t] - ISAd[*b]);) { - do { *(b + 1) = *b; } while((first <= --b) && (*b < 0)); - if(b < first) { break; } - } - if(r == 0) { *b = ~*b; } - *(b + 1) = t; - } -} - - -/*---------------------------------------------------------------------------*/ - -static INLINE -void -tr_fixdown(const int *ISAd, int *SA, int i, int size) { - int j, k; - int v; - int c, d, e; - - for(v = SA[i], c = ISAd[v]; (j = 2 * i + 1) < size; SA[i] = SA[k], i = k) { - d = ISAd[SA[k = j++]]; - if(d < (e = ISAd[SA[j]])) { k = j; d = e; } - if(d <= c) { break; } - } - SA[i] = v; -} - -/* Simple top-down heapsort. */ -static -void -tr_heapsort(const int *ISAd, int *SA, int size) { - int i, m; - int t; - - m = size; - if((size % 2) == 0) { - m--; - if(ISAd[SA[m / 2]] < ISAd[SA[m]]) { SWAP(SA[m], SA[m / 2]); } - } - - for(i = m / 2 - 1; 0 <= i; --i) { tr_fixdown(ISAd, SA, i, m); } - if((size % 2) == 0) { SWAP(SA[0], SA[m]); tr_fixdown(ISAd, SA, 0, m); } - for(i = m - 1; 0 < i; --i) { - t = SA[0], SA[0] = SA[i]; - tr_fixdown(ISAd, SA, 0, i); - SA[i] = t; - } -} - - -/*---------------------------------------------------------------------------*/ - -/* Returns the median of three elements. */ -static INLINE -int * -tr_median3(const int *ISAd, int *v1, int *v2, int *v3) { - int *t; - if(ISAd[*v1] > ISAd[*v2]) { SWAP(v1, v2); } - if(ISAd[*v2] > ISAd[*v3]) { - if(ISAd[*v1] > ISAd[*v3]) { return v1; } - else { return v3; } - } - return v2; -} - -/* Returns the median of five elements. */ -static INLINE -int * -tr_median5(const int *ISAd, - int *v1, int *v2, int *v3, int *v4, int *v5) { - int *t; - if(ISAd[*v2] > ISAd[*v3]) { SWAP(v2, v3); } - if(ISAd[*v4] > ISAd[*v5]) { SWAP(v4, v5); } - if(ISAd[*v2] > ISAd[*v4]) { SWAP(v2, v4); SWAP(v3, v5); } - if(ISAd[*v1] > ISAd[*v3]) { SWAP(v1, v3); } - if(ISAd[*v1] > ISAd[*v4]) { SWAP(v1, v4); SWAP(v3, v5); } - if(ISAd[*v3] > ISAd[*v4]) { return v4; } - return v3; -} - -/* Returns the pivot element. */ -static INLINE -int * -tr_pivot(const int *ISAd, int *first, int *last) { - int *middle; - int t; - - t = last - first; - middle = first + t / 2; - - if(t <= 512) { - if(t <= 32) { - return tr_median3(ISAd, first, middle, last - 1); - } else { - t >>= 2; - return tr_median5(ISAd, first, first + t, middle, last - 1 - t, last - 1); - } - } - t >>= 3; - first = tr_median3(ISAd, first, first + t, first + (t << 1)); - middle = tr_median3(ISAd, middle - t, middle, middle + t); - last = tr_median3(ISAd, last - 1 - (t << 1), last - 1 - t, last - 1); - return tr_median3(ISAd, first, middle, last); -} - - -/*---------------------------------------------------------------------------*/ - -typedef struct _trbudget_t trbudget_t; -struct _trbudget_t { - int chance; - int remain; - int incval; - int count; -}; - -static INLINE -void -trbudget_init(trbudget_t *budget, int chance, int incval) { - budget->chance = chance; - budget->remain = budget->incval = incval; -} - -static INLINE -int -trbudget_check(trbudget_t *budget, int size) { - if(size <= budget->remain) { budget->remain -= size; return 1; } - if(budget->chance == 0) { budget->count += size; return 0; } - budget->remain += budget->incval - size; - budget->chance -= 1; - return 1; -} - - -/*---------------------------------------------------------------------------*/ - -static INLINE -void -tr_partition(const int *ISAd, - int *first, int *middle, int *last, - int **pa, int **pb, int v) { - int *a, *b, *c, *d, *e, *f; - int t, s; - int x = 0; - - for(b = middle - 1; (++b < last) && ((x = ISAd[*b]) == v);) { } - if(((a = b) < last) && (x < v)) { - for(; (++b < last) && ((x = ISAd[*b]) <= v);) { - if(x == v) { SWAP(*b, *a); ++a; } - } - } - for(c = last; (b < --c) && ((x = ISAd[*c]) == v);) { } - if((b < (d = c)) && (x > v)) { - for(; (b < --c) && ((x = ISAd[*c]) >= v);) { - if(x == v) { SWAP(*c, *d); --d; } - } - } - for(; b < c;) { - SWAP(*b, *c); - for(; (++b < c) && ((x = ISAd[*b]) <= v);) { - if(x == v) { SWAP(*b, *a); ++a; } - } - for(; (b < --c) && ((x = ISAd[*c]) >= v);) { - if(x == v) { SWAP(*c, *d); --d; } - } - } - - if(a <= d) { - c = b - 1; - if((s = a - first) > (t = b - a)) { s = t; } - for(e = first, f = b - s; 0 < s; --s, ++e, ++f) { SWAP(*e, *f); } - if((s = d - c) > (t = last - d - 1)) { s = t; } - for(e = b, f = last - s; 0 < s; --s, ++e, ++f) { SWAP(*e, *f); } - first += (b - a), last -= (d - c); - } - *pa = first, *pb = last; -} - -static -void -tr_copy(int *ISA, const int *SA, - int *first, int *a, int *b, int *last, - int depth) { - /* sort suffixes of middle partition - by using sorted order of suffixes of left and right partition. */ - int *c, *d, *e; - int s, v; - - v = b - SA - 1; - for(c = first, d = a - 1; c <= d; ++c) { - if((0 <= (s = *c - depth)) && (ISA[s] == v)) { - *++d = s; - ISA[s] = d - SA; - } - } - for(c = last - 1, e = d + 1, d = b; e < d; --c) { - if((0 <= (s = *c - depth)) && (ISA[s] == v)) { - *--d = s; - ISA[s] = d - SA; - } - } -} - -static -void -tr_partialcopy(int *ISA, const int *SA, - int *first, int *a, int *b, int *last, - int depth) { - int *c, *d, *e; - int s, v; - int rank, lastrank, newrank = -1; - - v = b - SA - 1; - lastrank = -1; - for(c = first, d = a - 1; c <= d; ++c) { - if((0 <= (s = *c - depth)) && (ISA[s] == v)) { - *++d = s; - rank = ISA[s + depth]; - if(lastrank != rank) { lastrank = rank; newrank = d - SA; } - ISA[s] = newrank; - } - } - - lastrank = -1; - for(e = d; first <= e; --e) { - rank = ISA[*e]; - if(lastrank != rank) { lastrank = rank; newrank = e - SA; } - if(newrank != rank) { ISA[*e] = newrank; } - } - - lastrank = -1; - for(c = last - 1, e = d + 1, d = b; e < d; --c) { - if((0 <= (s = *c - depth)) && (ISA[s] == v)) { - *--d = s; - rank = ISA[s + depth]; - if(lastrank != rank) { lastrank = rank; newrank = d - SA; } - ISA[s] = newrank; - } - } -} - -static -void -tr_introsort(int *ISA, const int *ISAd, - int *SA, int *first, int *last, - trbudget_t *budget) { -#define STACK_SIZE TR_STACKSIZE - struct { const int *a; int *b, *c; int d, e; }stack[STACK_SIZE]; - int *a, *b, *c; - int t; - int v, x = 0; - int incr = ISAd - ISA; - int limit, next; - int ssize, trlink = -1; - - for(ssize = 0, limit = tr_ilg(last - first);;) { - - if(limit < 0) { - if(limit == -1) { - /* tandem repeat partition */ - tr_partition(ISAd - incr, first, first, last, &a, &b, last - SA - 1); - - /* update ranks */ - if(a < last) { - for(c = first, v = a - SA - 1; c < a; ++c) { ISA[*c] = v; } - } - if(b < last) { - for(c = a, v = b - SA - 1; c < b; ++c) { ISA[*c] = v; } - } - - /* push */ - if(1 < (b - a)) { - STACK_PUSH5(NULL, a, b, 0, 0); - STACK_PUSH5(ISAd - incr, first, last, -2, trlink); - trlink = ssize - 2; - } - if((a - first) <= (last - b)) { - if(1 < (a - first)) { - STACK_PUSH5(ISAd, b, last, tr_ilg(last - b), trlink); - last = a, limit = tr_ilg(a - first); - } else if(1 < (last - b)) { - first = b, limit = tr_ilg(last - b); - } else { - STACK_POP5(ISAd, first, last, limit, trlink); - } - } else { - if(1 < (last - b)) { - STACK_PUSH5(ISAd, first, a, tr_ilg(a - first), trlink); - first = b, limit = tr_ilg(last - b); - } else if(1 < (a - first)) { - last = a, limit = tr_ilg(a - first); - } else { - STACK_POP5(ISAd, first, last, limit, trlink); - } - } - } else if(limit == -2) { - /* tandem repeat copy */ - a = stack[--ssize].b, b = stack[ssize].c; - if(stack[ssize].d == 0) { - tr_copy(ISA, SA, first, a, b, last, ISAd - ISA); - } else { - if(0 <= trlink) { stack[trlink].d = -1; } - tr_partialcopy(ISA, SA, first, a, b, last, ISAd - ISA); - } - STACK_POP5(ISAd, first, last, limit, trlink); - } else { - /* sorted partition */ - if(0 <= *first) { - a = first; - do { ISA[*a] = a - SA; } while((++a < last) && (0 <= *a)); - first = a; - } - if(first < last) { - a = first; do { *a = ~*a; } while(*++a < 0); - next = (ISA[*a] != ISAd[*a]) ? tr_ilg(a - first + 1) : -1; - if(++a < last) { for(b = first, v = a - SA - 1; b < a; ++b) { ISA[*b] = v; } } - - /* push */ - if(trbudget_check(budget, a - first)) { - if((a - first) <= (last - a)) { - STACK_PUSH5(ISAd, a, last, -3, trlink); - ISAd += incr, last = a, limit = next; - } else { - if(1 < (last - a)) { - STACK_PUSH5(ISAd + incr, first, a, next, trlink); - first = a, limit = -3; - } else { - ISAd += incr, last = a, limit = next; - } - } - } else { - if(0 <= trlink) { stack[trlink].d = -1; } - if(1 < (last - a)) { - first = a, limit = -3; - } else { - STACK_POP5(ISAd, first, last, limit, trlink); - } - } - } else { - STACK_POP5(ISAd, first, last, limit, trlink); - } - } - continue; - } - - if((last - first) <= TR_INSERTIONSORT_THRESHOLD) { - tr_insertionsort(ISAd, first, last); - limit = -3; - continue; - } - - if(limit-- == 0) { - tr_heapsort(ISAd, first, last - first); - for(a = last - 1; first < a; a = b) { - for(x = ISAd[*a], b = a - 1; (first <= b) && (ISAd[*b] == x); --b) { *b = ~*b; } - } - limit = -3; - continue; - } - - /* choose pivot */ - a = tr_pivot(ISAd, first, last); - SWAP(*first, *a); - v = ISAd[*first]; - - /* partition */ - tr_partition(ISAd, first, first + 1, last, &a, &b, v); - if((last - first) != (b - a)) { - next = (ISA[*a] != v) ? tr_ilg(b - a) : -1; - - /* update ranks */ - for(c = first, v = a - SA - 1; c < a; ++c) { ISA[*c] = v; } - if(b < last) { for(c = a, v = b - SA - 1; c < b; ++c) { ISA[*c] = v; } } - - /* push */ - if((1 < (b - a)) && (trbudget_check(budget, b - a))) { - if((a - first) <= (last - b)) { - if((last - b) <= (b - a)) { - if(1 < (a - first)) { - STACK_PUSH5(ISAd + incr, a, b, next, trlink); - STACK_PUSH5(ISAd, b, last, limit, trlink); - last = a; - } else if(1 < (last - b)) { - STACK_PUSH5(ISAd + incr, a, b, next, trlink); - first = b; - } else { - ISAd += incr, first = a, last = b, limit = next; - } - } else if((a - first) <= (b - a)) { - if(1 < (a - first)) { - STACK_PUSH5(ISAd, b, last, limit, trlink); - STACK_PUSH5(ISAd + incr, a, b, next, trlink); - last = a; - } else { - STACK_PUSH5(ISAd, b, last, limit, trlink); - ISAd += incr, first = a, last = b, limit = next; - } - } else { - STACK_PUSH5(ISAd, b, last, limit, trlink); - STACK_PUSH5(ISAd, first, a, limit, trlink); - ISAd += incr, first = a, last = b, limit = next; - } - } else { - if((a - first) <= (b - a)) { - if(1 < (last - b)) { - STACK_PUSH5(ISAd + incr, a, b, next, trlink); - STACK_PUSH5(ISAd, first, a, limit, trlink); - first = b; - } else if(1 < (a - first)) { - STACK_PUSH5(ISAd + incr, a, b, next, trlink); - last = a; - } else { - ISAd += incr, first = a, last = b, limit = next; - } - } else if((last - b) <= (b - a)) { - if(1 < (last - b)) { - STACK_PUSH5(ISAd, first, a, limit, trlink); - STACK_PUSH5(ISAd + incr, a, b, next, trlink); - first = b; - } else { - STACK_PUSH5(ISAd, first, a, limit, trlink); - ISAd += incr, first = a, last = b, limit = next; - } - } else { - STACK_PUSH5(ISAd, first, a, limit, trlink); - STACK_PUSH5(ISAd, b, last, limit, trlink); - ISAd += incr, first = a, last = b, limit = next; - } - } - } else { - if((1 < (b - a)) && (0 <= trlink)) { stack[trlink].d = -1; } - if((a - first) <= (last - b)) { - if(1 < (a - first)) { - STACK_PUSH5(ISAd, b, last, limit, trlink); - last = a; - } else if(1 < (last - b)) { - first = b; - } else { - STACK_POP5(ISAd, first, last, limit, trlink); - } - } else { - if(1 < (last - b)) { - STACK_PUSH5(ISAd, first, a, limit, trlink); - first = b; - } else if(1 < (a - first)) { - last = a; - } else { - STACK_POP5(ISAd, first, last, limit, trlink); - } - } - } - } else { - if(trbudget_check(budget, last - first)) { - limit = tr_ilg(last - first), ISAd += incr; - } else { - if(0 <= trlink) { stack[trlink].d = -1; } - STACK_POP5(ISAd, first, last, limit, trlink); - } - } - } -#undef STACK_SIZE -} - - - -/*---------------------------------------------------------------------------*/ - -/* Tandem repeat sort */ -static -void -trsort(int *ISA, int *SA, int n, int depth) { - int *ISAd; - int *first, *last; - trbudget_t budget; - int t, skip, unsorted; - - trbudget_init(&budget, tr_ilg(n) * 2 / 3, n); -/* trbudget_init(&budget, tr_ilg(n) * 3 / 4, n); */ - for(ISAd = ISA + depth; -n < *SA; ISAd += ISAd - ISA) { - first = SA; - skip = 0; - unsorted = 0; - do { - if((t = *first) < 0) { first -= t; skip += t; } - else { - if(skip != 0) { *(first + skip) = skip; skip = 0; } - last = SA + ISA[t] + 1; - if(1 < (last - first)) { - budget.count = 0; - tr_introsort(ISA, ISAd, SA, first, last, &budget); - if(budget.count != 0) { unsorted += budget.count; } - else { skip = first - last; } - } else if((last - first) == 1) { - skip = -1; - } - first = last; - } - } while(first < (SA + n)); - if(skip != 0) { *(first + skip) = skip; } - if(unsorted == 0) { break; } - } -} - - -/*---------------------------------------------------------------------------*/ - -/* Sorts suffixes of type B*. */ -static -int -sort_typeBstar(const unsigned char *T, int *SA, - int *bucket_A, int *bucket_B, - int n, int openMP) { - int *PAb, *ISAb, *buf; -#ifdef LIBBSC_OPENMP - int *curbuf; - int l; -#endif - int i, j, k, t, m, bufsize; - int c0, c1; -#ifdef LIBBSC_OPENMP - int d0, d1; -#endif - (void)openMP; - - /* Initialize bucket arrays. */ - for(i = 0; i < BUCKET_A_SIZE; ++i) { bucket_A[i] = 0; } - for(i = 0; i < BUCKET_B_SIZE; ++i) { bucket_B[i] = 0; } - - /* Count the number of occurrences of the first one or two characters of each - type A, B and B* suffix. Moreover, store the beginning position of all - type B* suffixes into the array SA. */ - for(i = n - 1, m = n, c0 = T[n - 1]; 0 <= i;) { - /* type A suffix. */ - do { ++BUCKET_A(c1 = c0); } while((0 <= --i) && ((c0 = T[i]) >= c1)); - if(0 <= i) { - /* type B* suffix. */ - ++BUCKET_BSTAR(c0, c1); - SA[--m] = i; - /* type B suffix. */ - for(--i, c1 = c0; (0 <= i) && ((c0 = T[i]) <= c1); --i, c1 = c0) { - ++BUCKET_B(c0, c1); - } - } - } - m = n - m; -/* -note: - A type B* suffix is lexicographically smaller than a type B suffix that - begins with the same first two characters. -*/ - - /* Calculate the index of start/end point of each bucket. */ - for(c0 = 0, i = 0, j = 0; c0 < ALPHABET_SIZE; ++c0) { - t = i + BUCKET_A(c0); - BUCKET_A(c0) = i + j; /* start point */ - i = t + BUCKET_B(c0, c0); - for(c1 = c0 + 1; c1 < ALPHABET_SIZE; ++c1) { - j += BUCKET_BSTAR(c0, c1); - BUCKET_BSTAR(c0, c1) = j; /* end point */ - i += BUCKET_B(c0, c1); - } - } - - if(0 < m) { - /* Sort the type B* suffixes by their first two characters. */ - PAb = SA + n - m; ISAb = SA + m; - for(i = m - 2; 0 <= i; --i) { - t = PAb[i], c0 = T[t], c1 = T[t + 1]; - SA[--BUCKET_BSTAR(c0, c1)] = i; - } - t = PAb[m - 1], c0 = T[t], c1 = T[t + 1]; - SA[--BUCKET_BSTAR(c0, c1)] = m - 1; - - /* Sort the type B* substrings using sssort. */ -#ifdef LIBBSC_OPENMP - if (openMP) - { - buf = SA + m; - c0 = ALPHABET_SIZE - 2, c1 = ALPHABET_SIZE - 1, j = m; -#pragma omp parallel default(shared) private(bufsize, curbuf, k, l, d0, d1) - { - bufsize = (n - (2 * m)) / omp_get_num_threads(); - curbuf = buf + omp_get_thread_num() * bufsize; - k = 0; - for(;;) { - #pragma omp critical(sssort_lock) - { - if(0 < (l = j)) { - d0 = c0, d1 = c1; - do { - k = BUCKET_BSTAR(d0, d1); - if(--d1 <= d0) { - d1 = ALPHABET_SIZE - 1; - if(--d0 < 0) { break; } - } - } while(((l - k) <= 1) && (0 < (l = k))); - c0 = d0, c1 = d1, j = k; - } - } - if(l == 0) { break; } - sssort(T, PAb, SA + k, SA + l, - curbuf, bufsize, 2, n, *(SA + k) == (m - 1)); - } - } - } - else - { - buf = SA + m, bufsize = n - (2 * m); - for(c0 = ALPHABET_SIZE - 2, j = m; 0 < j; --c0) { - for(c1 = ALPHABET_SIZE - 1; c0 < c1; j = i, --c1) { - i = BUCKET_BSTAR(c0, c1); - if(1 < (j - i)) { - sssort(T, PAb, SA + i, SA + j, - buf, bufsize, 2, n, *(SA + i) == (m - 1)); - } - } - } - } -#else - buf = SA + m, bufsize = n - (2 * m); - for(c0 = ALPHABET_SIZE - 2, j = m; 0 < j; --c0) { - for(c1 = ALPHABET_SIZE - 1; c0 < c1; j = i, --c1) { - i = BUCKET_BSTAR(c0, c1); - if(1 < (j - i)) { - sssort(T, PAb, SA + i, SA + j, - buf, bufsize, 2, n, *(SA + i) == (m - 1)); - } - } - } -#endif - - /* Compute ranks of type B* substrings. */ - for(i = m - 1; 0 <= i; --i) { - if(0 <= SA[i]) { - j = i; - do { ISAb[SA[i]] = i; } while((0 <= --i) && (0 <= SA[i])); - SA[i + 1] = i - j; - if(i <= 0) { break; } - } - j = i; - do { ISAb[SA[i] = ~SA[i]] = j; } while(SA[--i] < 0); - ISAb[SA[i]] = j; - } - - /* Construct the inverse suffix array of type B* suffixes using trsort. */ - trsort(ISAb, SA, m, 1); - - /* Set the sorted order of tyoe B* suffixes. */ - for(i = n - 1, j = m, c0 = T[n - 1]; 0 <= i;) { - for(--i, c1 = c0; (0 <= i) && ((c0 = T[i]) >= c1); --i, c1 = c0) { } - if(0 <= i) { - t = i; - for(--i, c1 = c0; (0 <= i) && ((c0 = T[i]) <= c1); --i, c1 = c0) { } - SA[ISAb[--j]] = ((t == 0) || (1 < (t - i))) ? t : ~t; - } - } - - /* Calculate the index of start/end point of each bucket. */ - BUCKET_B(ALPHABET_SIZE - 1, ALPHABET_SIZE - 1) = n; /* end point */ - for(c0 = ALPHABET_SIZE - 2, k = m - 1; 0 <= c0; --c0) { - i = BUCKET_A(c0 + 1) - 1; - for(c1 = ALPHABET_SIZE - 1; c0 < c1; --c1) { - t = i - BUCKET_B(c0, c1); - BUCKET_B(c0, c1) = i; /* end point */ - - /* Move all type B* suffixes to the correct position. */ - for(i = t, j = BUCKET_BSTAR(c0, c1); - j <= k; - --i, --k) { SA[i] = SA[k]; } - } - BUCKET_BSTAR(c0, c0 + 1) = i - BUCKET_B(c0, c0) + 1; /* start point */ - BUCKET_B(c0, c0) = i; /* end point */ - } - } - - return m; -} - -/* Constructs the suffix array by using the sorted order of type B* suffixes. */ -static -void -construct_SA(const unsigned char *T, int *SA, - int *bucket_A, int *bucket_B, - int n, int m) { - int *i, *j, *k; - int s; - int c0, c1, c2; - - if(0 < m) { - /* Construct the sorted order of type B suffixes by using - the sorted order of type B* suffixes. */ - for(c1 = ALPHABET_SIZE - 2; 0 <= c1; --c1) { - /* Scan the suffix array from right to left. */ - for(i = SA + BUCKET_BSTAR(c1, c1 + 1), - j = SA + BUCKET_A(c1 + 1) - 1, k = NULL, c2 = -1; - i <= j; - --j) { - if(0 < (s = *j)) { - assert(T[s] == c1); - assert(((s + 1) < n) && (T[s] <= T[s + 1])); - assert(T[s - 1] <= T[s]); - *j = ~s; - c0 = T[--s]; - if((0 < s) && (T[s - 1] > c0)) { s = ~s; } - if(c0 != c2) { - if(0 <= c2) { BUCKET_B(c2, c1) = k - SA; } - k = SA + BUCKET_B(c2 = c0, c1); - } - assert(k < j); assert(k != NULL); - *k-- = s; - } else { - assert(((s == 0) && (T[s] == c1)) || (s < 0)); - *j = ~s; - } - } - } - } - - /* Construct the suffix array by using - the sorted order of type B suffixes. */ - k = SA + BUCKET_A(c2 = T[n - 1]); - *k++ = (T[n - 2] < c2) ? ~(n - 1) : (n - 1); - /* Scan the suffix array from left to right. */ - for(i = SA, j = SA + n; i < j; ++i) { - if(0 < (s = *i)) { - assert(T[s - 1] >= T[s]); - c0 = T[--s]; - if((s == 0) || (T[s - 1] < c0)) { s = ~s; } - if(c0 != c2) { - BUCKET_A(c2) = k - SA; - k = SA + BUCKET_A(c2 = c0); - } - assert(i < k); - *k++ = s; - } else { - assert(s < 0); - *i = ~s; - } - } -} - -/* Constructs the burrows-wheeler transformed string directly - by using the sorted order of type B* suffixes. */ -static -int -construct_BWT(const unsigned char *T, int *SA, - int *bucket_A, int *bucket_B, - int n, int m) { - int *i, *j, *k, *orig; - int s; - int c0, c1, c2; - - if(0 < m) { - /* Construct the sorted order of type B suffixes by using - the sorted order of type B* suffixes. */ - for(c1 = ALPHABET_SIZE - 2; 0 <= c1; --c1) { - /* Scan the suffix array from right to left. */ - for(i = SA + BUCKET_BSTAR(c1, c1 + 1), - j = SA + BUCKET_A(c1 + 1) - 1, k = NULL, c2 = -1; - i <= j; - --j) { - if(0 < (s = *j)) { - assert(T[s] == c1); - assert(((s + 1) < n) && (T[s] <= T[s + 1])); - assert(T[s - 1] <= T[s]); - c0 = T[--s]; - *j = ~((int)c0); - if((0 < s) && (T[s - 1] > c0)) { s = ~s; } - if(c0 != c2) { - if(0 <= c2) { BUCKET_B(c2, c1) = k - SA; } - k = SA + BUCKET_B(c2 = c0, c1); - } - assert(k < j); assert(k != NULL); - *k-- = s; - } else if(s != 0) { - *j = ~s; -#ifndef NDEBUG - } else { - assert(T[s] == c1); -#endif - } - } - } - } - - /* Construct the BWTed string by using - the sorted order of type B suffixes. */ - k = SA + BUCKET_A(c2 = T[n - 1]); - *k++ = (T[n - 2] < c2) ? ~((int)T[n - 2]) : (n - 1); - /* Scan the suffix array from left to right. */ - for(i = SA, j = SA + n, orig = SA; i < j; ++i) { - if(0 < (s = *i)) { - assert(T[s - 1] >= T[s]); - c0 = T[--s]; - *i = c0; - if((0 < s) && (T[s - 1] < c0)) { s = ~((int)T[s - 1]); } - if(c0 != c2) { - BUCKET_A(c2) = k - SA; - k = SA + BUCKET_A(c2 = c0); - } - assert(i < k); - *k++ = s; - } else if(s != 0) { - *i = ~s; - } else { - orig = i; - } - } - - return orig - SA; -} - -/* Constructs the burrows-wheeler transformed string directly - by using the sorted order of type B* suffixes. */ -static -int -construct_BWT_indexes(const unsigned char *T, int *SA, - int *bucket_A, int *bucket_B, - int n, int m, - unsigned char * num_indexes, int * indexes) { - int *i, *j, *k, *orig; - int s; - int c0, c1, c2; - - int mod = n / 8; - { - mod |= mod >> 1; mod |= mod >> 2; - mod |= mod >> 4; mod |= mod >> 8; - mod |= mod >> 16; mod >>= 1; - - *num_indexes = (unsigned char)((n - 1) / (mod + 1)); - } - - if(0 < m) { - /* Construct the sorted order of type B suffixes by using - the sorted order of type B* suffixes. */ - for(c1 = ALPHABET_SIZE - 2; 0 <= c1; --c1) { - /* Scan the suffix array from right to left. */ - for(i = SA + BUCKET_BSTAR(c1, c1 + 1), - j = SA + BUCKET_A(c1 + 1) - 1, k = NULL, c2 = -1; - i <= j; - --j) { - if(0 < (s = *j)) { - assert(T[s] == c1); - assert(((s + 1) < n) && (T[s] <= T[s + 1])); - assert(T[s - 1] <= T[s]); - - if ((s & mod) == 0) indexes[s / (mod + 1) - 1] = j - SA; - - c0 = T[--s]; - *j = ~((int)c0); - if((0 < s) && (T[s - 1] > c0)) { s = ~s; } - if(c0 != c2) { - if(0 <= c2) { BUCKET_B(c2, c1) = k - SA; } - k = SA + BUCKET_B(c2 = c0, c1); - } - assert(k < j); assert(k != NULL); - *k-- = s; - } else if(s != 0) { - *j = ~s; -#ifndef NDEBUG - } else { - assert(T[s] == c1); -#endif - } - } - } - } - - /* Construct the BWTed string by using - the sorted order of type B suffixes. */ - k = SA + BUCKET_A(c2 = T[n - 1]); - if (T[n - 2] < c2) { - if (((n - 1) & mod) == 0) indexes[(n - 1) / (mod + 1) - 1] = k - SA; - *k++ = ~((int)T[n - 2]); - } - else { - *k++ = n - 1; - } - - /* Scan the suffix array from left to right. */ - for(i = SA, j = SA + n, orig = SA; i < j; ++i) { - if(0 < (s = *i)) { - assert(T[s - 1] >= T[s]); - - if ((s & mod) == 0) indexes[s / (mod + 1) - 1] = i - SA; - - c0 = T[--s]; - *i = c0; - if(c0 != c2) { - BUCKET_A(c2) = k - SA; - k = SA + BUCKET_A(c2 = c0); - } - assert(i < k); - if((0 < s) && (T[s - 1] < c0)) { - if ((s & mod) == 0) indexes[s / (mod + 1) - 1] = k - SA; - *k++ = ~((int)T[s - 1]); - } else - *k++ = s; - } else if(s != 0) { - *i = ~s; - } else { - orig = i; - } - } - - return orig - SA; -} - - -/*---------------------------------------------------------------------------*/ - -/*- Function -*/ - -int -divsufsort(const unsigned char *T, int *SA, int n, int openMP) { - int *bucket_A, *bucket_B; - int m; - int err = 0; - - /* Check arguments. */ - if((T == NULL) || (SA == NULL) || (n < 0)) { return -1; } - else if(n == 0) { return 0; } - else if(n == 1) { SA[0] = 0; return 0; } - else if(n == 2) { m = (T[0] < T[1]); SA[m ^ 1] = 0, SA[m] = 1; return 0; } - - bucket_A = (int *)malloc(BUCKET_A_SIZE * sizeof(int)); - bucket_B = (int *)malloc(BUCKET_B_SIZE * sizeof(int)); - - /* Suffixsort. */ - if((bucket_A != NULL) && (bucket_B != NULL)) { - m = sort_typeBstar(T, SA, bucket_A, bucket_B, n, openMP); - construct_SA(T, SA, bucket_A, bucket_B, n, m); - } else { - err = -2; - } - - free(bucket_B); - free(bucket_A); - - return err; -} - -int -divbwt(const unsigned char *T, unsigned char *U, int *A, int n, unsigned char * num_indexes, int * indexes, int openMP) { - int *B; - int *bucket_A, *bucket_B; - int m, pidx, i; - - /* Check arguments. */ - if((T == NULL) || (U == NULL) || (n < 0)) { return -1; } - else if(n <= 1) { if(n == 1) { U[0] = T[0]; } return n; } - - if((B = A) == NULL) { B = (int *)malloc((size_t)(n + 1) * sizeof(int)); } - bucket_A = (int *)malloc(BUCKET_A_SIZE * sizeof(int)); - bucket_B = (int *)malloc(BUCKET_B_SIZE * sizeof(int)); - - /* Burrows-Wheeler Transform. */ - if((B != NULL) && (bucket_A != NULL) && (bucket_B != NULL)) { - m = sort_typeBstar(T, B, bucket_A, bucket_B, n, openMP); - - if (num_indexes == NULL || indexes == NULL) { - pidx = construct_BWT(T, B, bucket_A, bucket_B, n, m); - } else { - pidx = construct_BWT_indexes(T, B, bucket_A, bucket_B, n, m, num_indexes, indexes); - } - - /* Copy to output string. */ - U[0] = T[n - 1]; - for(i = 0; i < pidx; ++i) { U[i + 1] = (unsigned char)B[i]; } - for(i += 1; i < n; ++i) { U[i] = (unsigned char)B[i]; } - pidx += 1; - } else { - pidx = -2; - } - - free(bucket_B); - free(bucket_A); - if(A == NULL) { free(B); } - - return pidx; -} diff --git a/lib/SZ3/tools/zstd/dictBuilder/divsufsort.h b/lib/SZ3/tools/zstd/dictBuilder/divsufsort.h deleted file mode 100644 index 5440994a..00000000 --- a/lib/SZ3/tools/zstd/dictBuilder/divsufsort.h +++ /dev/null @@ -1,67 +0,0 @@ -/* - * divsufsort.h for libdivsufsort-lite - * Copyright (c) 2003-2008 Yuta Mori All Rights Reserved. - * - * Permission is hereby granted, free of charge, to any person - * obtaining a copy of this software and associated documentation - * files (the "Software"), to deal in the Software without - * restriction, including without limitation the rights to use, - * copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following - * conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES - * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - * OTHER DEALINGS IN THE SOFTWARE. - */ - -#ifndef _DIVSUFSORT_H -#define _DIVSUFSORT_H 1 - -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ - - -/*- Prototypes -*/ - -/** - * Constructs the suffix array of a given string. - * @param T [0..n-1] The input string. - * @param SA [0..n-1] The output array of suffixes. - * @param n The length of the given string. - * @param openMP enables OpenMP optimization. - * @return 0 if no error occurred, -1 or -2 otherwise. - */ -int -divsufsort(const unsigned char *T, int *SA, int n, int openMP); - -/** - * Constructs the burrows-wheeler transformed string of a given string. - * @param T [0..n-1] The input string. - * @param U [0..n-1] The output string. (can be T) - * @param A [0..n-1] The temporary array. (can be NULL) - * @param n The length of the given string. - * @param num_indexes The length of secondary indexes array. (can be NULL) - * @param indexes The secondary indexes array. (can be NULL) - * @param openMP enables OpenMP optimization. - * @return The primary index if no error occurred, -1 or -2 otherwise. - */ -int -divbwt(const unsigned char *T, unsigned char *U, int *A, int n, unsigned char * num_indexes, int * indexes, int openMP); - - -#ifdef __cplusplus -} /* extern "C" */ -#endif /* __cplusplus */ - -#endif /* _DIVSUFSORT_H */ diff --git a/lib/SZ3/tools/zstd/dictBuilder/fastcover.c b/lib/SZ3/tools/zstd/dictBuilder/fastcover.c deleted file mode 100644 index 485c333b..00000000 --- a/lib/SZ3/tools/zstd/dictBuilder/fastcover.c +++ /dev/null @@ -1,757 +0,0 @@ -/* - * Copyright (c) 2018-2020, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -/*-************************************* -* Dependencies -***************************************/ -#include /* fprintf */ -#include /* malloc, free, qsort */ -#include /* memset */ -#include /* clock */ - -#include "../common/mem.h" /* read */ -#include "../common/pool.h" -#include "../common/threading.h" -#include "cover.h" -#include "../common/zstd_internal.h" /* includes zstd.h */ -#ifndef ZDICT_STATIC_LINKING_ONLY -#define ZDICT_STATIC_LINKING_ONLY -#endif -#include "zdict.h" - - -/*-************************************* -* Constants -***************************************/ -#define FASTCOVER_MAX_SAMPLES_SIZE (sizeof(size_t) == 8 ? ((unsigned)-1) : ((unsigned)1 GB)) -#define FASTCOVER_MAX_F 31 -#define FASTCOVER_MAX_ACCEL 10 -#define DEFAULT_SPLITPOINT 0.75 -#define DEFAULT_F 20 -#define DEFAULT_ACCEL 1 - - -/*-************************************* -* Console display -***************************************/ -static int g_displayLevel = 2; -#define DISPLAY(...) \ - { \ - fprintf(stderr, __VA_ARGS__); \ - fflush(stderr); \ - } -#define LOCALDISPLAYLEVEL(displayLevel, l, ...) \ - if (displayLevel >= l) { \ - DISPLAY(__VA_ARGS__); \ - } /* 0 : no display; 1: errors; 2: default; 3: details; 4: debug */ -#define DISPLAYLEVEL(l, ...) LOCALDISPLAYLEVEL(g_displayLevel, l, __VA_ARGS__) - -#define LOCALDISPLAYUPDATE(displayLevel, l, ...) \ - if (displayLevel >= l) { \ - if ((clock() - g_time > refreshRate) || (displayLevel >= 4)) { \ - g_time = clock(); \ - DISPLAY(__VA_ARGS__); \ - } \ - } -#define DISPLAYUPDATE(l, ...) LOCALDISPLAYUPDATE(g_displayLevel, l, __VA_ARGS__) -static const clock_t refreshRate = CLOCKS_PER_SEC * 15 / 100; -static clock_t g_time = 0; - - -/*-************************************* -* Hash Functions -***************************************/ -static const U64 prime6bytes = 227718039650203ULL; -static size_t ZSTD_hash6(U64 u, U32 h) { return (size_t)(((u << (64-48)) * prime6bytes) >> (64-h)) ; } -static size_t ZSTD_hash6Ptr(const void* p, U32 h) { return ZSTD_hash6(MEM_readLE64(p), h); } - -static const U64 prime8bytes = 0xCF1BBCDCB7A56463ULL; -static size_t ZSTD_hash8(U64 u, U32 h) { return (size_t)(((u) * prime8bytes) >> (64-h)) ; } -static size_t ZSTD_hash8Ptr(const void* p, U32 h) { return ZSTD_hash8(MEM_readLE64(p), h); } - - -/** - * Hash the d-byte value pointed to by p and mod 2^f - */ -static size_t FASTCOVER_hashPtrToIndex(const void* p, U32 h, unsigned d) { - if (d == 6) { - return ZSTD_hash6Ptr(p, h) & ((1 << h) - 1); - } - return ZSTD_hash8Ptr(p, h) & ((1 << h) - 1); -} - - -/*-************************************* -* Acceleration -***************************************/ -typedef struct { - unsigned finalize; /* Percentage of training samples used for ZDICT_finalizeDictionary */ - unsigned skip; /* Number of dmer skipped between each dmer counted in computeFrequency */ -} FASTCOVER_accel_t; - - -static const FASTCOVER_accel_t FASTCOVER_defaultAccelParameters[FASTCOVER_MAX_ACCEL+1] = { - { 100, 0 }, /* accel = 0, should not happen because accel = 0 defaults to accel = 1 */ - { 100, 0 }, /* accel = 1 */ - { 50, 1 }, /* accel = 2 */ - { 34, 2 }, /* accel = 3 */ - { 25, 3 }, /* accel = 4 */ - { 20, 4 }, /* accel = 5 */ - { 17, 5 }, /* accel = 6 */ - { 14, 6 }, /* accel = 7 */ - { 13, 7 }, /* accel = 8 */ - { 11, 8 }, /* accel = 9 */ - { 10, 9 }, /* accel = 10 */ -}; - - -/*-************************************* -* Context -***************************************/ -typedef struct { - const BYTE *samples; - size_t *offsets; - const size_t *samplesSizes; - size_t nbSamples; - size_t nbTrainSamples; - size_t nbTestSamples; - size_t nbDmers; - U32 *freqs; - unsigned d; - unsigned f; - FASTCOVER_accel_t accelParams; -} FASTCOVER_ctx_t; - - -/*-************************************* -* Helper functions -***************************************/ -/** - * Selects the best segment in an epoch. - * Segments of are scored according to the function: - * - * Let F(d) be the frequency of all dmers with hash value d. - * Let S_i be hash value of the dmer at position i of segment S which has length k. - * - * Score(S) = F(S_1) + F(S_2) + ... + F(S_{k-d+1}) - * - * Once the dmer with hash value d is in the dictionary we set F(d) = 0. - */ -static COVER_segment_t FASTCOVER_selectSegment(const FASTCOVER_ctx_t *ctx, - U32 *freqs, U32 begin, U32 end, - ZDICT_cover_params_t parameters, - U16* segmentFreqs) { - /* Constants */ - const U32 k = parameters.k; - const U32 d = parameters.d; - const U32 f = ctx->f; - const U32 dmersInK = k - d + 1; - - /* Try each segment (activeSegment) and save the best (bestSegment) */ - COVER_segment_t bestSegment = {0, 0, 0}; - COVER_segment_t activeSegment; - - /* Reset the activeDmers in the segment */ - /* The activeSegment starts at the beginning of the epoch. */ - activeSegment.begin = begin; - activeSegment.end = begin; - activeSegment.score = 0; - - /* Slide the activeSegment through the whole epoch. - * Save the best segment in bestSegment. - */ - while (activeSegment.end < end) { - /* Get hash value of current dmer */ - const size_t idx = FASTCOVER_hashPtrToIndex(ctx->samples + activeSegment.end, f, d); - - /* Add frequency of this index to score if this is the first occurrence of index in active segment */ - if (segmentFreqs[idx] == 0) { - activeSegment.score += freqs[idx]; - } - /* Increment end of segment and segmentFreqs*/ - activeSegment.end += 1; - segmentFreqs[idx] += 1; - /* If the window is now too large, drop the first position */ - if (activeSegment.end - activeSegment.begin == dmersInK + 1) { - /* Get hash value of the dmer to be eliminated from active segment */ - const size_t delIndex = FASTCOVER_hashPtrToIndex(ctx->samples + activeSegment.begin, f, d); - segmentFreqs[delIndex] -= 1; - /* Subtract frequency of this index from score if this is the last occurrence of this index in active segment */ - if (segmentFreqs[delIndex] == 0) { - activeSegment.score -= freqs[delIndex]; - } - /* Increment start of segment */ - activeSegment.begin += 1; - } - - /* If this segment is the best so far save it */ - if (activeSegment.score > bestSegment.score) { - bestSegment = activeSegment; - } - } - - /* Zero out rest of segmentFreqs array */ - while (activeSegment.begin < end) { - const size_t delIndex = FASTCOVER_hashPtrToIndex(ctx->samples + activeSegment.begin, f, d); - segmentFreqs[delIndex] -= 1; - activeSegment.begin += 1; - } - - { - /* Zero the frequency of hash value of each dmer covered by the chosen segment. */ - U32 pos; - for (pos = bestSegment.begin; pos != bestSegment.end; ++pos) { - const size_t i = FASTCOVER_hashPtrToIndex(ctx->samples + pos, f, d); - freqs[i] = 0; - } - } - - return bestSegment; -} - - -static int FASTCOVER_checkParameters(ZDICT_cover_params_t parameters, - size_t maxDictSize, unsigned f, - unsigned accel) { - /* k, d, and f are required parameters */ - if (parameters.d == 0 || parameters.k == 0) { - return 0; - } - /* d has to be 6 or 8 */ - if (parameters.d != 6 && parameters.d != 8) { - return 0; - } - /* k <= maxDictSize */ - if (parameters.k > maxDictSize) { - return 0; - } - /* d <= k */ - if (parameters.d > parameters.k) { - return 0; - } - /* 0 < f <= FASTCOVER_MAX_F*/ - if (f > FASTCOVER_MAX_F || f == 0) { - return 0; - } - /* 0 < splitPoint <= 1 */ - if (parameters.splitPoint <= 0 || parameters.splitPoint > 1) { - return 0; - } - /* 0 < accel <= 10 */ - if (accel > 10 || accel == 0) { - return 0; - } - return 1; -} - - -/** - * Clean up a context initialized with `FASTCOVER_ctx_init()`. - */ -static void -FASTCOVER_ctx_destroy(FASTCOVER_ctx_t* ctx) -{ - if (!ctx) return; - - free(ctx->freqs); - ctx->freqs = NULL; - - free(ctx->offsets); - ctx->offsets = NULL; -} - - -/** - * Calculate for frequency of hash value of each dmer in ctx->samples - */ -static void -FASTCOVER_computeFrequency(U32* freqs, const FASTCOVER_ctx_t* ctx) -{ - const unsigned f = ctx->f; - const unsigned d = ctx->d; - const unsigned skip = ctx->accelParams.skip; - const unsigned readLength = MAX(d, 8); - size_t i; - assert(ctx->nbTrainSamples >= 5); - assert(ctx->nbTrainSamples <= ctx->nbSamples); - for (i = 0; i < ctx->nbTrainSamples; i++) { - size_t start = ctx->offsets[i]; /* start of current dmer */ - size_t const currSampleEnd = ctx->offsets[i+1]; - while (start + readLength <= currSampleEnd) { - const size_t dmerIndex = FASTCOVER_hashPtrToIndex(ctx->samples + start, f, d); - freqs[dmerIndex]++; - start = start + skip + 1; - } - } -} - - -/** - * Prepare a context for dictionary building. - * The context is only dependent on the parameter `d` and can used multiple - * times. - * Returns 0 on success or error code on error. - * The context must be destroyed with `FASTCOVER_ctx_destroy()`. - */ -static size_t -FASTCOVER_ctx_init(FASTCOVER_ctx_t* ctx, - const void* samplesBuffer, - const size_t* samplesSizes, unsigned nbSamples, - unsigned d, double splitPoint, unsigned f, - FASTCOVER_accel_t accelParams) -{ - const BYTE* const samples = (const BYTE*)samplesBuffer; - const size_t totalSamplesSize = COVER_sum(samplesSizes, nbSamples); - /* Split samples into testing and training sets */ - const unsigned nbTrainSamples = splitPoint < 1.0 ? (unsigned)((double)nbSamples * splitPoint) : nbSamples; - const unsigned nbTestSamples = splitPoint < 1.0 ? nbSamples - nbTrainSamples : nbSamples; - const size_t trainingSamplesSize = splitPoint < 1.0 ? COVER_sum(samplesSizes, nbTrainSamples) : totalSamplesSize; - const size_t testSamplesSize = splitPoint < 1.0 ? COVER_sum(samplesSizes + nbTrainSamples, nbTestSamples) : totalSamplesSize; - - /* Checks */ - if (totalSamplesSize < MAX(d, sizeof(U64)) || - totalSamplesSize >= (size_t)FASTCOVER_MAX_SAMPLES_SIZE) { - DISPLAYLEVEL(1, "Total samples size is too large (%u MB), maximum size is %u MB\n", - (unsigned)(totalSamplesSize >> 20), (FASTCOVER_MAX_SAMPLES_SIZE >> 20)); - return ERROR(srcSize_wrong); - } - - /* Check if there are at least 5 training samples */ - if (nbTrainSamples < 5) { - DISPLAYLEVEL(1, "Total number of training samples is %u and is invalid\n", nbTrainSamples); - return ERROR(srcSize_wrong); - } - - /* Check if there's testing sample */ - if (nbTestSamples < 1) { - DISPLAYLEVEL(1, "Total number of testing samples is %u and is invalid.\n", nbTestSamples); - return ERROR(srcSize_wrong); - } - - /* Zero the context */ - memset(ctx, 0, sizeof(*ctx)); - DISPLAYLEVEL(2, "Training on %u samples of total size %u\n", nbTrainSamples, - (unsigned)trainingSamplesSize); - DISPLAYLEVEL(2, "Testing on %u samples of total size %u\n", nbTestSamples, - (unsigned)testSamplesSize); - - ctx->samples = samples; - ctx->samplesSizes = samplesSizes; - ctx->nbSamples = nbSamples; - ctx->nbTrainSamples = nbTrainSamples; - ctx->nbTestSamples = nbTestSamples; - ctx->nbDmers = trainingSamplesSize - MAX(d, sizeof(U64)) + 1; - ctx->d = d; - ctx->f = f; - ctx->accelParams = accelParams; - - /* The offsets of each file */ - ctx->offsets = (size_t*)calloc((nbSamples + 1), sizeof(size_t)); - if (ctx->offsets == NULL) { - DISPLAYLEVEL(1, "Failed to allocate scratch buffers \n"); - FASTCOVER_ctx_destroy(ctx); - return ERROR(memory_allocation); - } - - /* Fill offsets from the samplesSizes */ - { U32 i; - ctx->offsets[0] = 0; - assert(nbSamples >= 5); - for (i = 1; i <= nbSamples; ++i) { - ctx->offsets[i] = ctx->offsets[i - 1] + samplesSizes[i - 1]; - } - } - - /* Initialize frequency array of size 2^f */ - ctx->freqs = (U32*)calloc(((U64)1 << f), sizeof(U32)); - if (ctx->freqs == NULL) { - DISPLAYLEVEL(1, "Failed to allocate frequency table \n"); - FASTCOVER_ctx_destroy(ctx); - return ERROR(memory_allocation); - } - - DISPLAYLEVEL(2, "Computing frequencies\n"); - FASTCOVER_computeFrequency(ctx->freqs, ctx); - - return 0; -} - - -/** - * Given the prepared context build the dictionary. - */ -static size_t -FASTCOVER_buildDictionary(const FASTCOVER_ctx_t* ctx, - U32* freqs, - void* dictBuffer, size_t dictBufferCapacity, - ZDICT_cover_params_t parameters, - U16* segmentFreqs) -{ - BYTE *const dict = (BYTE *)dictBuffer; - size_t tail = dictBufferCapacity; - /* Divide the data into epochs. We will select one segment from each epoch. */ - const COVER_epoch_info_t epochs = COVER_computeEpochs( - (U32)dictBufferCapacity, (U32)ctx->nbDmers, parameters.k, 1); - const size_t maxZeroScoreRun = 10; - size_t zeroScoreRun = 0; - size_t epoch; - DISPLAYLEVEL(2, "Breaking content into %u epochs of size %u\n", - (U32)epochs.num, (U32)epochs.size); - /* Loop through the epochs until there are no more segments or the dictionary - * is full. - */ - for (epoch = 0; tail > 0; epoch = (epoch + 1) % epochs.num) { - const U32 epochBegin = (U32)(epoch * epochs.size); - const U32 epochEnd = epochBegin + epochs.size; - size_t segmentSize; - /* Select a segment */ - COVER_segment_t segment = FASTCOVER_selectSegment( - ctx, freqs, epochBegin, epochEnd, parameters, segmentFreqs); - - /* If the segment covers no dmers, then we are out of content. - * There may be new content in other epochs, for continue for some time. - */ - if (segment.score == 0) { - if (++zeroScoreRun >= maxZeroScoreRun) { - break; - } - continue; - } - zeroScoreRun = 0; - - /* Trim the segment if necessary and if it is too small then we are done */ - segmentSize = MIN(segment.end - segment.begin + parameters.d - 1, tail); - if (segmentSize < parameters.d) { - break; - } - - /* We fill the dictionary from the back to allow the best segments to be - * referenced with the smallest offsets. - */ - tail -= segmentSize; - memcpy(dict + tail, ctx->samples + segment.begin, segmentSize); - DISPLAYUPDATE( - 2, "\r%u%% ", - (unsigned)(((dictBufferCapacity - tail) * 100) / dictBufferCapacity)); - } - DISPLAYLEVEL(2, "\r%79s\r", ""); - return tail; -} - -/** - * Parameters for FASTCOVER_tryParameters(). - */ -typedef struct FASTCOVER_tryParameters_data_s { - const FASTCOVER_ctx_t* ctx; - COVER_best_t* best; - size_t dictBufferCapacity; - ZDICT_cover_params_t parameters; -} FASTCOVER_tryParameters_data_t; - - -/** - * Tries a set of parameters and updates the COVER_best_t with the results. - * This function is thread safe if zstd is compiled with multithreaded support. - * It takes its parameters as an *OWNING* opaque pointer to support threading. - */ -static void FASTCOVER_tryParameters(void *opaque) -{ - /* Save parameters as local variables */ - FASTCOVER_tryParameters_data_t *const data = (FASTCOVER_tryParameters_data_t *)opaque; - const FASTCOVER_ctx_t *const ctx = data->ctx; - const ZDICT_cover_params_t parameters = data->parameters; - size_t dictBufferCapacity = data->dictBufferCapacity; - size_t totalCompressedSize = ERROR(GENERIC); - /* Initialize array to keep track of frequency of dmer within activeSegment */ - U16* segmentFreqs = (U16 *)calloc(((U64)1 << ctx->f), sizeof(U16)); - /* Allocate space for hash table, dict, and freqs */ - BYTE *const dict = (BYTE * const)malloc(dictBufferCapacity); - COVER_dictSelection_t selection = COVER_dictSelectionError(ERROR(GENERIC)); - U32 *freqs = (U32*) malloc(((U64)1 << ctx->f) * sizeof(U32)); - if (!segmentFreqs || !dict || !freqs) { - DISPLAYLEVEL(1, "Failed to allocate buffers: out of memory\n"); - goto _cleanup; - } - /* Copy the frequencies because we need to modify them */ - memcpy(freqs, ctx->freqs, ((U64)1 << ctx->f) * sizeof(U32)); - /* Build the dictionary */ - { const size_t tail = FASTCOVER_buildDictionary(ctx, freqs, dict, dictBufferCapacity, - parameters, segmentFreqs); - - const unsigned nbFinalizeSamples = (unsigned)(ctx->nbTrainSamples * ctx->accelParams.finalize / 100); - selection = COVER_selectDict(dict + tail, dictBufferCapacity - tail, - ctx->samples, ctx->samplesSizes, nbFinalizeSamples, ctx->nbTrainSamples, ctx->nbSamples, parameters, ctx->offsets, - totalCompressedSize); - - if (COVER_dictSelectionIsError(selection)) { - DISPLAYLEVEL(1, "Failed to select dictionary\n"); - goto _cleanup; - } - } -_cleanup: - free(dict); - COVER_best_finish(data->best, parameters, selection); - free(data); - free(segmentFreqs); - COVER_dictSelectionFree(selection); - free(freqs); -} - - -static void -FASTCOVER_convertToCoverParams(ZDICT_fastCover_params_t fastCoverParams, - ZDICT_cover_params_t* coverParams) -{ - coverParams->k = fastCoverParams.k; - coverParams->d = fastCoverParams.d; - coverParams->steps = fastCoverParams.steps; - coverParams->nbThreads = fastCoverParams.nbThreads; - coverParams->splitPoint = fastCoverParams.splitPoint; - coverParams->zParams = fastCoverParams.zParams; - coverParams->shrinkDict = fastCoverParams.shrinkDict; -} - - -static void -FASTCOVER_convertToFastCoverParams(ZDICT_cover_params_t coverParams, - ZDICT_fastCover_params_t* fastCoverParams, - unsigned f, unsigned accel) -{ - fastCoverParams->k = coverParams.k; - fastCoverParams->d = coverParams.d; - fastCoverParams->steps = coverParams.steps; - fastCoverParams->nbThreads = coverParams.nbThreads; - fastCoverParams->splitPoint = coverParams.splitPoint; - fastCoverParams->f = f; - fastCoverParams->accel = accel; - fastCoverParams->zParams = coverParams.zParams; - fastCoverParams->shrinkDict = coverParams.shrinkDict; -} - - -ZDICTLIB_API size_t -ZDICT_trainFromBuffer_fastCover(void* dictBuffer, size_t dictBufferCapacity, - const void* samplesBuffer, - const size_t* samplesSizes, unsigned nbSamples, - ZDICT_fastCover_params_t parameters) -{ - BYTE* const dict = (BYTE*)dictBuffer; - FASTCOVER_ctx_t ctx; - ZDICT_cover_params_t coverParams; - FASTCOVER_accel_t accelParams; - /* Initialize global data */ - g_displayLevel = parameters.zParams.notificationLevel; - /* Assign splitPoint and f if not provided */ - parameters.splitPoint = 1.0; - parameters.f = parameters.f == 0 ? DEFAULT_F : parameters.f; - parameters.accel = parameters.accel == 0 ? DEFAULT_ACCEL : parameters.accel; - /* Convert to cover parameter */ - memset(&coverParams, 0 , sizeof(coverParams)); - FASTCOVER_convertToCoverParams(parameters, &coverParams); - /* Checks */ - if (!FASTCOVER_checkParameters(coverParams, dictBufferCapacity, parameters.f, - parameters.accel)) { - DISPLAYLEVEL(1, "FASTCOVER parameters incorrect\n"); - return ERROR(parameter_outOfBound); - } - if (nbSamples == 0) { - DISPLAYLEVEL(1, "FASTCOVER must have at least one input file\n"); - return ERROR(srcSize_wrong); - } - if (dictBufferCapacity < ZDICT_DICTSIZE_MIN) { - DISPLAYLEVEL(1, "dictBufferCapacity must be at least %u\n", - ZDICT_DICTSIZE_MIN); - return ERROR(dstSize_tooSmall); - } - /* Assign corresponding FASTCOVER_accel_t to accelParams*/ - accelParams = FASTCOVER_defaultAccelParameters[parameters.accel]; - /* Initialize context */ - { - size_t const initVal = FASTCOVER_ctx_init(&ctx, samplesBuffer, samplesSizes, nbSamples, - coverParams.d, parameters.splitPoint, parameters.f, - accelParams); - if (ZSTD_isError(initVal)) { - DISPLAYLEVEL(1, "Failed to initialize context\n"); - return initVal; - } - } - COVER_warnOnSmallCorpus(dictBufferCapacity, ctx.nbDmers, g_displayLevel); - /* Build the dictionary */ - DISPLAYLEVEL(2, "Building dictionary\n"); - { - /* Initialize array to keep track of frequency of dmer within activeSegment */ - U16* segmentFreqs = (U16 *)calloc(((U64)1 << parameters.f), sizeof(U16)); - const size_t tail = FASTCOVER_buildDictionary(&ctx, ctx.freqs, dictBuffer, - dictBufferCapacity, coverParams, segmentFreqs); - const unsigned nbFinalizeSamples = (unsigned)(ctx.nbTrainSamples * ctx.accelParams.finalize / 100); - const size_t dictionarySize = ZDICT_finalizeDictionary( - dict, dictBufferCapacity, dict + tail, dictBufferCapacity - tail, - samplesBuffer, samplesSizes, nbFinalizeSamples, coverParams.zParams); - if (!ZSTD_isError(dictionarySize)) { - DISPLAYLEVEL(2, "Constructed dictionary of size %u\n", - (unsigned)dictionarySize); - } - FASTCOVER_ctx_destroy(&ctx); - free(segmentFreqs); - return dictionarySize; - } -} - - -ZDICTLIB_API size_t -ZDICT_optimizeTrainFromBuffer_fastCover( - void* dictBuffer, size_t dictBufferCapacity, - const void* samplesBuffer, - const size_t* samplesSizes, unsigned nbSamples, - ZDICT_fastCover_params_t* parameters) -{ - ZDICT_cover_params_t coverParams; - FASTCOVER_accel_t accelParams; - /* constants */ - const unsigned nbThreads = parameters->nbThreads; - const double splitPoint = - parameters->splitPoint <= 0.0 ? DEFAULT_SPLITPOINT : parameters->splitPoint; - const unsigned kMinD = parameters->d == 0 ? 6 : parameters->d; - const unsigned kMaxD = parameters->d == 0 ? 8 : parameters->d; - const unsigned kMinK = parameters->k == 0 ? 50 : parameters->k; - const unsigned kMaxK = parameters->k == 0 ? 2000 : parameters->k; - const unsigned kSteps = parameters->steps == 0 ? 40 : parameters->steps; - const unsigned kStepSize = MAX((kMaxK - kMinK) / kSteps, 1); - const unsigned kIterations = - (1 + (kMaxD - kMinD) / 2) * (1 + (kMaxK - kMinK) / kStepSize); - const unsigned f = parameters->f == 0 ? DEFAULT_F : parameters->f; - const unsigned accel = parameters->accel == 0 ? DEFAULT_ACCEL : parameters->accel; - const unsigned shrinkDict = 0; - /* Local variables */ - const int displayLevel = parameters->zParams.notificationLevel; - unsigned iteration = 1; - unsigned d; - unsigned k; - COVER_best_t best; - POOL_ctx *pool = NULL; - int warned = 0; - /* Checks */ - if (splitPoint <= 0 || splitPoint > 1) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect splitPoint\n"); - return ERROR(parameter_outOfBound); - } - if (accel == 0 || accel > FASTCOVER_MAX_ACCEL) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect accel\n"); - return ERROR(parameter_outOfBound); - } - if (kMinK < kMaxD || kMaxK < kMinK) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Incorrect k\n"); - return ERROR(parameter_outOfBound); - } - if (nbSamples == 0) { - LOCALDISPLAYLEVEL(displayLevel, 1, "FASTCOVER must have at least one input file\n"); - return ERROR(srcSize_wrong); - } - if (dictBufferCapacity < ZDICT_DICTSIZE_MIN) { - LOCALDISPLAYLEVEL(displayLevel, 1, "dictBufferCapacity must be at least %u\n", - ZDICT_DICTSIZE_MIN); - return ERROR(dstSize_tooSmall); - } - if (nbThreads > 1) { - pool = POOL_create(nbThreads, 1); - if (!pool) { - return ERROR(memory_allocation); - } - } - /* Initialization */ - COVER_best_init(&best); - memset(&coverParams, 0 , sizeof(coverParams)); - FASTCOVER_convertToCoverParams(*parameters, &coverParams); - accelParams = FASTCOVER_defaultAccelParameters[accel]; - /* Turn down global display level to clean up display at level 2 and below */ - g_displayLevel = displayLevel == 0 ? 0 : displayLevel - 1; - /* Loop through d first because each new value needs a new context */ - LOCALDISPLAYLEVEL(displayLevel, 2, "Trying %u different sets of parameters\n", - kIterations); - for (d = kMinD; d <= kMaxD; d += 2) { - /* Initialize the context for this value of d */ - FASTCOVER_ctx_t ctx; - LOCALDISPLAYLEVEL(displayLevel, 3, "d=%u\n", d); - { - size_t const initVal = FASTCOVER_ctx_init(&ctx, samplesBuffer, samplesSizes, nbSamples, d, splitPoint, f, accelParams); - if (ZSTD_isError(initVal)) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Failed to initialize context\n"); - COVER_best_destroy(&best); - POOL_free(pool); - return initVal; - } - } - if (!warned) { - COVER_warnOnSmallCorpus(dictBufferCapacity, ctx.nbDmers, displayLevel); - warned = 1; - } - /* Loop through k reusing the same context */ - for (k = kMinK; k <= kMaxK; k += kStepSize) { - /* Prepare the arguments */ - FASTCOVER_tryParameters_data_t *data = (FASTCOVER_tryParameters_data_t *)malloc( - sizeof(FASTCOVER_tryParameters_data_t)); - LOCALDISPLAYLEVEL(displayLevel, 3, "k=%u\n", k); - if (!data) { - LOCALDISPLAYLEVEL(displayLevel, 1, "Failed to allocate parameters\n"); - COVER_best_destroy(&best); - FASTCOVER_ctx_destroy(&ctx); - POOL_free(pool); - return ERROR(memory_allocation); - } - data->ctx = &ctx; - data->best = &best; - data->dictBufferCapacity = dictBufferCapacity; - data->parameters = coverParams; - data->parameters.k = k; - data->parameters.d = d; - data->parameters.splitPoint = splitPoint; - data->parameters.steps = kSteps; - data->parameters.shrinkDict = shrinkDict; - data->parameters.zParams.notificationLevel = g_displayLevel; - /* Check the parameters */ - if (!FASTCOVER_checkParameters(data->parameters, dictBufferCapacity, - data->ctx->f, accel)) { - DISPLAYLEVEL(1, "FASTCOVER parameters incorrect\n"); - free(data); - continue; - } - /* Call the function and pass ownership of data to it */ - COVER_best_start(&best); - if (pool) { - POOL_add(pool, &FASTCOVER_tryParameters, data); - } else { - FASTCOVER_tryParameters(data); - } - /* Print status */ - LOCALDISPLAYUPDATE(displayLevel, 2, "\r%u%% ", - (unsigned)((iteration * 100) / kIterations)); - ++iteration; - } - COVER_best_wait(&best); - FASTCOVER_ctx_destroy(&ctx); - } - LOCALDISPLAYLEVEL(displayLevel, 2, "\r%79s\r", ""); - /* Fill the output buffer and parameters with output of the best parameters */ - { - const size_t dictSize = best.dictSize; - if (ZSTD_isError(best.compressedSize)) { - const size_t compressedSize = best.compressedSize; - COVER_best_destroy(&best); - POOL_free(pool); - return compressedSize; - } - FASTCOVER_convertToFastCoverParams(best.parameters, parameters, f, accel); - memcpy(dictBuffer, best.dict, dictSize); - COVER_best_destroy(&best); - POOL_free(pool); - return dictSize; - } - -} diff --git a/lib/SZ3/tools/zstd/dictBuilder/zdict.c b/lib/SZ3/tools/zstd/dictBuilder/zdict.c deleted file mode 100644 index 6d0b0423..00000000 --- a/lib/SZ3/tools/zstd/dictBuilder/zdict.c +++ /dev/null @@ -1,1135 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -/*-************************************** -* Tuning parameters -****************************************/ -#define MINRATIO 4 /* minimum nb of apparition to be selected in dictionary */ -#define ZDICT_MAX_SAMPLES_SIZE (2000U << 20) -#define ZDICT_MIN_SAMPLES_SIZE (ZDICT_CONTENTSIZE_MIN * MINRATIO) - - -/*-************************************** -* Compiler Options -****************************************/ -/* Unix Large Files support (>4GB) */ -#define _FILE_OFFSET_BITS 64 -#if (defined(__sun__) && (!defined(__LP64__))) /* Sun Solaris 32-bits requires specific definitions */ -# define _LARGEFILE_SOURCE -#elif ! defined(__LP64__) /* No point defining Large file for 64 bit */ -# define _LARGEFILE64_SOURCE -#endif - - -/*-************************************* -* Dependencies -***************************************/ -#include /* malloc, free */ -#include /* memset */ -#include /* fprintf, fopen, ftello64 */ -#include /* clock */ - -#include "../common/mem.h" /* read */ -#include "../common/fse.h" /* FSE_normalizeCount, FSE_writeNCount */ -#define HUF_STATIC_LINKING_ONLY -#include "../common/huf.h" /* HUF_buildCTable, HUF_writeCTable */ -#include "../common/zstd_internal.h" /* includes zstd.h */ -#include "../common/xxhash.h" /* XXH64 */ -#include "divsufsort.h" -#ifndef ZDICT_STATIC_LINKING_ONLY -# define ZDICT_STATIC_LINKING_ONLY -#endif -#include "zdict.h" -#include "../compress/zstd_compress_internal.h" /* ZSTD_loadCEntropy() */ - - -/*-************************************* -* Constants -***************************************/ -#define KB *(1 <<10) -#define MB *(1 <<20) -#define GB *(1U<<30) - -#define DICTLISTSIZE_DEFAULT 10000 - -#define NOISELENGTH 32 - -static const int g_compressionLevel_default = 3; -static const U32 g_selectivity_default = 9; - - -/*-************************************* -* Console display -***************************************/ -#define DISPLAY(...) { fprintf(stderr, __VA_ARGS__); fflush( stderr ); } -#define DISPLAYLEVEL(l, ...) if (notificationLevel>=l) { DISPLAY(__VA_ARGS__); } /* 0 : no display; 1: errors; 2: default; 3: details; 4: debug */ - -static clock_t ZDICT_clockSpan(clock_t nPrevious) { return clock() - nPrevious; } - -static void ZDICT_printHex(const void* ptr, size_t length) -{ - const BYTE* const b = (const BYTE*)ptr; - size_t u; - for (u=0; u126) c = '.'; /* non-printable char */ - DISPLAY("%c", c); - } -} - - -/*-******************************************************** -* Helper functions -**********************************************************/ -unsigned ZDICT_isError(size_t errorCode) { return ERR_isError(errorCode); } - -const char* ZDICT_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); } - -unsigned ZDICT_getDictID(const void* dictBuffer, size_t dictSize) -{ - if (dictSize < 8) return 0; - if (MEM_readLE32(dictBuffer) != ZSTD_MAGIC_DICTIONARY) return 0; - return MEM_readLE32((const char*)dictBuffer + 4); -} - -size_t ZDICT_getDictHeaderSize(const void* dictBuffer, size_t dictSize) -{ - size_t headerSize; - if (dictSize <= 8 || MEM_readLE32(dictBuffer) != ZSTD_MAGIC_DICTIONARY) return ERROR(dictionary_corrupted); - - { unsigned offcodeMaxValue = MaxOff; - ZSTD_compressedBlockState_t* bs = (ZSTD_compressedBlockState_t*)malloc(sizeof(ZSTD_compressedBlockState_t)); - U32* wksp = (U32*)malloc(HUF_WORKSPACE_SIZE); - short* offcodeNCount = (short*)malloc((MaxOff+1)*sizeof(short)); - if (!bs || !wksp || !offcodeNCount) { - headerSize = ERROR(memory_allocation); - } else { - ZSTD_reset_compressedBlockState(bs); - headerSize = ZSTD_loadCEntropy(bs, wksp, offcodeNCount, &offcodeMaxValue, dictBuffer, dictSize); - } - - free(bs); - free(wksp); - free(offcodeNCount); - } - - return headerSize; -} - -/*-******************************************************** -* Dictionary training functions -**********************************************************/ -static unsigned ZDICT_NbCommonBytes (size_t val) -{ - if (MEM_isLittleEndian()) { - if (MEM_64bits()) { -# if defined(_MSC_VER) && defined(_WIN64) - unsigned long r = 0; - _BitScanForward64( &r, (U64)val ); - return (unsigned)(r>>3); -# elif defined(__GNUC__) && (__GNUC__ >= 3) - return (__builtin_ctzll((U64)val) >> 3); -# else - static const int DeBruijnBytePos[64] = { 0, 0, 0, 0, 0, 1, 1, 2, 0, 3, 1, 3, 1, 4, 2, 7, 0, 2, 3, 6, 1, 5, 3, 5, 1, 3, 4, 4, 2, 5, 6, 7, 7, 0, 1, 2, 3, 3, 4, 6, 2, 6, 5, 5, 3, 4, 5, 6, 7, 1, 2, 4, 6, 4, 4, 5, 7, 2, 6, 5, 7, 6, 7, 7 }; - return DeBruijnBytePos[((U64)((val & -(long long)val) * 0x0218A392CDABBD3FULL)) >> 58]; -# endif - } else { /* 32 bits */ -# if defined(_MSC_VER) - unsigned long r=0; - _BitScanForward( &r, (U32)val ); - return (unsigned)(r>>3); -# elif defined(__GNUC__) && (__GNUC__ >= 3) - return (__builtin_ctz((U32)val) >> 3); -# else - static const int DeBruijnBytePos[32] = { 0, 0, 3, 0, 3, 1, 3, 0, 3, 2, 2, 1, 3, 2, 0, 1, 3, 3, 1, 2, 2, 2, 2, 0, 3, 1, 2, 0, 1, 0, 1, 1 }; - return DeBruijnBytePos[((U32)((val & -(S32)val) * 0x077CB531U)) >> 27]; -# endif - } - } else { /* Big Endian CPU */ - if (MEM_64bits()) { -# if defined(_MSC_VER) && defined(_WIN64) - unsigned long r = 0; - _BitScanReverse64( &r, val ); - return (unsigned)(r>>3); -# elif defined(__GNUC__) && (__GNUC__ >= 3) - return (__builtin_clzll(val) >> 3); -# else - unsigned r; - const unsigned n32 = sizeof(size_t)*4; /* calculate this way due to compiler complaining in 32-bits mode */ - if (!(val>>n32)) { r=4; } else { r=0; val>>=n32; } - if (!(val>>16)) { r+=2; val>>=8; } else { val>>=24; } - r += (!val); - return r; -# endif - } else { /* 32 bits */ -# if defined(_MSC_VER) - unsigned long r = 0; - _BitScanReverse( &r, (unsigned long)val ); - return (unsigned)(r>>3); -# elif defined(__GNUC__) && (__GNUC__ >= 3) - return (__builtin_clz((U32)val) >> 3); -# else - unsigned r; - if (!(val>>16)) { r=2; val>>=8; } else { r=0; val>>=24; } - r += (!val); - return r; -# endif - } } -} - - -/*! ZDICT_count() : - Count the nb of common bytes between 2 pointers. - Note : this function presumes end of buffer followed by noisy guard band. -*/ -static size_t ZDICT_count(const void* pIn, const void* pMatch) -{ - const char* const pStart = (const char*)pIn; - for (;;) { - size_t const diff = MEM_readST(pMatch) ^ MEM_readST(pIn); - if (!diff) { - pIn = (const char*)pIn+sizeof(size_t); - pMatch = (const char*)pMatch+sizeof(size_t); - continue; - } - pIn = (const char*)pIn+ZDICT_NbCommonBytes(diff); - return (size_t)((const char*)pIn - pStart); - } -} - - -typedef struct { - U32 pos; - U32 length; - U32 savings; -} dictItem; - -static void ZDICT_initDictItem(dictItem* d) -{ - d->pos = 1; - d->length = 0; - d->savings = (U32)(-1); -} - - -#define LLIMIT 64 /* heuristic determined experimentally */ -#define MINMATCHLENGTH 7 /* heuristic determined experimentally */ -static dictItem ZDICT_analyzePos( - BYTE* doneMarks, - const int* suffix, U32 start, - const void* buffer, U32 minRatio, U32 notificationLevel) -{ - U32 lengthList[LLIMIT] = {0}; - U32 cumulLength[LLIMIT] = {0}; - U32 savings[LLIMIT] = {0}; - const BYTE* b = (const BYTE*)buffer; - size_t maxLength = LLIMIT; - size_t pos = suffix[start]; - U32 end = start; - dictItem solution; - - /* init */ - memset(&solution, 0, sizeof(solution)); - doneMarks[pos] = 1; - - /* trivial repetition cases */ - if ( (MEM_read16(b+pos+0) == MEM_read16(b+pos+2)) - ||(MEM_read16(b+pos+1) == MEM_read16(b+pos+3)) - ||(MEM_read16(b+pos+2) == MEM_read16(b+pos+4)) ) { - /* skip and mark segment */ - U16 const pattern16 = MEM_read16(b+pos+4); - U32 u, patternEnd = 6; - while (MEM_read16(b+pos+patternEnd) == pattern16) patternEnd+=2 ; - if (b[pos+patternEnd] == b[pos+patternEnd-1]) patternEnd++; - for (u=1; u= MINMATCHLENGTH); - } - - /* look backward */ - { size_t length; - do { - length = ZDICT_count(b + pos, b + *(suffix+start-1)); - if (length >=MINMATCHLENGTH) start--; - } while(length >= MINMATCHLENGTH); - } - - /* exit if not found a minimum nb of repetitions */ - if (end-start < minRatio) { - U32 idx; - for(idx=start; idx= %i at pos %7u ", (unsigned)(end-start), MINMATCHLENGTH, (unsigned)pos); - DISPLAYLEVEL(4, "\n"); - - for (mml = MINMATCHLENGTH ; ; mml++) { - BYTE currentChar = 0; - U32 currentCount = 0; - U32 currentID = refinedStart; - U32 id; - U32 selectedCount = 0; - U32 selectedID = currentID; - for (id =refinedStart; id < refinedEnd; id++) { - if (b[suffix[id] + mml] != currentChar) { - if (currentCount > selectedCount) { - selectedCount = currentCount; - selectedID = currentID; - } - currentID = id; - currentChar = b[ suffix[id] + mml]; - currentCount = 0; - } - currentCount ++; - } - if (currentCount > selectedCount) { /* for last */ - selectedCount = currentCount; - selectedID = currentID; - } - - if (selectedCount < minRatio) - break; - refinedStart = selectedID; - refinedEnd = refinedStart + selectedCount; - } - - /* evaluate gain based on new dict */ - start = refinedStart; - pos = suffix[refinedStart]; - end = start; - memset(lengthList, 0, sizeof(lengthList)); - - /* look forward */ - { size_t length; - do { - end++; - length = ZDICT_count(b + pos, b + suffix[end]); - if (length >= LLIMIT) length = LLIMIT-1; - lengthList[length]++; - } while (length >=MINMATCHLENGTH); - } - - /* look backward */ - { size_t length = MINMATCHLENGTH; - while ((length >= MINMATCHLENGTH) & (start > 0)) { - length = ZDICT_count(b + pos, b + suffix[start - 1]); - if (length >= LLIMIT) length = LLIMIT - 1; - lengthList[length]++; - if (length >= MINMATCHLENGTH) start--; - } - } - - /* largest useful length */ - memset(cumulLength, 0, sizeof(cumulLength)); - cumulLength[maxLength-1] = lengthList[maxLength-1]; - for (i=(int)(maxLength-2); i>=0; i--) - cumulLength[i] = cumulLength[i+1] + lengthList[i]; - - for (i=LLIMIT-1; i>=MINMATCHLENGTH; i--) if (cumulLength[i]>=minRatio) break; - maxLength = i; - - /* reduce maxLength in case of final into repetitive data */ - { U32 l = (U32)maxLength; - BYTE const c = b[pos + maxLength-1]; - while (b[pos+l-2]==c) l--; - maxLength = l; - } - if (maxLength < MINMATCHLENGTH) return solution; /* skip : no long-enough solution */ - - /* calculate savings */ - savings[5] = 0; - for (i=MINMATCHLENGTH; i<=(int)maxLength; i++) - savings[i] = savings[i-1] + (lengthList[i] * (i-3)); - - DISPLAYLEVEL(4, "Selected dict at position %u, of length %u : saves %u (ratio: %.2f) \n", - (unsigned)pos, (unsigned)maxLength, (unsigned)savings[maxLength], (double)savings[maxLength] / maxLength); - - solution.pos = (U32)pos; - solution.length = (U32)maxLength; - solution.savings = savings[maxLength]; - - /* mark positions done */ - { U32 id; - for (id=start; id solution.length) length = solution.length; - } - pEnd = (U32)(testedPos + length); - for (p=testedPos; ppos; - const U32 eltEnd = elt.pos + elt.length; - const char* const buf = (const char*) buffer; - - /* tail overlap */ - U32 u; for (u=1; u elt.pos) && (table[u].pos <= eltEnd)) { /* overlap, existing > new */ - /* append */ - U32 const addedLength = table[u].pos - elt.pos; - table[u].length += addedLength; - table[u].pos = elt.pos; - table[u].savings += elt.savings * addedLength / elt.length; /* rough approx */ - table[u].savings += elt.length / 8; /* rough approx bonus */ - elt = table[u]; - /* sort : improve rank */ - while ((u>1) && (table[u-1].savings < elt.savings)) - table[u] = table[u-1], u--; - table[u] = elt; - return u; - } } - - /* front overlap */ - for (u=1; u= elt.pos) && (table[u].pos < elt.pos)) { /* overlap, existing < new */ - /* append */ - int const addedLength = (int)eltEnd - (table[u].pos + table[u].length); - table[u].savings += elt.length / 8; /* rough approx bonus */ - if (addedLength > 0) { /* otherwise, elt fully included into existing */ - table[u].length += addedLength; - table[u].savings += elt.savings * addedLength / elt.length; /* rough approx */ - } - /* sort : improve rank */ - elt = table[u]; - while ((u>1) && (table[u-1].savings < elt.savings)) - table[u] = table[u-1], u--; - table[u] = elt; - return u; - } - - if (MEM_read64(buf + table[u].pos) == MEM_read64(buf + elt.pos + 1)) { - if (isIncluded(buf + table[u].pos, buf + elt.pos + 1, table[u].length)) { - size_t const addedLength = MAX( (int)elt.length - (int)table[u].length , 1 ); - table[u].pos = elt.pos; - table[u].savings += (U32)(elt.savings * addedLength / elt.length); - table[u].length = MIN(elt.length, table[u].length + 1); - return u; - } - } - } - - return 0; -} - - -static void ZDICT_removeDictItem(dictItem* table, U32 id) -{ - /* convention : table[0].pos stores nb of elts */ - U32 const max = table[0].pos; - U32 u; - if (!id) return; /* protection, should never happen */ - for (u=id; upos--; -} - - -static void ZDICT_insertDictItem(dictItem* table, U32 maxSize, dictItem elt, const void* buffer) -{ - /* merge if possible */ - U32 mergeId = ZDICT_tryMerge(table, elt, 0, buffer); - if (mergeId) { - U32 newMerge = 1; - while (newMerge) { - newMerge = ZDICT_tryMerge(table, table[mergeId], mergeId, buffer); - if (newMerge) ZDICT_removeDictItem(table, mergeId); - mergeId = newMerge; - } - return; - } - - /* insert */ - { U32 current; - U32 nextElt = table->pos; - if (nextElt >= maxSize) nextElt = maxSize-1; - current = nextElt-1; - while (table[current].savings < elt.savings) { - table[current+1] = table[current]; - current--; - } - table[current+1] = elt; - table->pos = nextElt+1; - } -} - - -static U32 ZDICT_dictSize(const dictItem* dictList) -{ - U32 u, dictSize = 0; - for (u=1; u=l) { \ - if (ZDICT_clockSpan(displayClock) > refreshRate) \ - { displayClock = clock(); DISPLAY(__VA_ARGS__); \ - if (notificationLevel>=4) fflush(stderr); } } - - /* init */ - DISPLAYLEVEL(2, "\r%70s\r", ""); /* clean display line */ - if (!suffix0 || !reverseSuffix || !doneMarks || !filePos) { - result = ERROR(memory_allocation); - goto _cleanup; - } - if (minRatio < MINRATIO) minRatio = MINRATIO; - memset(doneMarks, 0, bufferSize+16); - - /* limit sample set size (divsufsort limitation)*/ - if (bufferSize > ZDICT_MAX_SAMPLES_SIZE) DISPLAYLEVEL(3, "sample set too large : reduced to %u MB ...\n", (unsigned)(ZDICT_MAX_SAMPLES_SIZE>>20)); - while (bufferSize > ZDICT_MAX_SAMPLES_SIZE) bufferSize -= fileSizes[--nbFiles]; - - /* sort */ - DISPLAYLEVEL(2, "sorting %u files of total size %u MB ...\n", nbFiles, (unsigned)(bufferSize>>20)); - { int const divSuftSortResult = divsufsort((const unsigned char*)buffer, suffix, (int)bufferSize, 0); - if (divSuftSortResult != 0) { result = ERROR(GENERIC); goto _cleanup; } - } - suffix[bufferSize] = (int)bufferSize; /* leads into noise */ - suffix0[0] = (int)bufferSize; /* leads into noise */ - /* build reverse suffix sort */ - { size_t pos; - for (pos=0; pos < bufferSize; pos++) - reverseSuffix[suffix[pos]] = (U32)pos; - /* note filePos tracks borders between samples. - It's not used at this stage, but planned to become useful in a later update */ - filePos[0] = 0; - for (pos=1; pos> 21); - } -} - - -typedef struct -{ - ZSTD_CDict* dict; /* dictionary */ - ZSTD_CCtx* zc; /* working context */ - void* workPlace; /* must be ZSTD_BLOCKSIZE_MAX allocated */ -} EStats_ress_t; - -#define MAXREPOFFSET 1024 - -static void ZDICT_countEStats(EStats_ress_t esr, const ZSTD_parameters* params, - unsigned* countLit, unsigned* offsetcodeCount, unsigned* matchlengthCount, unsigned* litlengthCount, U32* repOffsets, - const void* src, size_t srcSize, - U32 notificationLevel) -{ - size_t const blockSizeMax = MIN (ZSTD_BLOCKSIZE_MAX, 1 << params->cParams.windowLog); - size_t cSize; - - if (srcSize > blockSizeMax) srcSize = blockSizeMax; /* protection vs large samples */ - { size_t const errorCode = ZSTD_compressBegin_usingCDict(esr.zc, esr.dict); - if (ZSTD_isError(errorCode)) { DISPLAYLEVEL(1, "warning : ZSTD_compressBegin_usingCDict failed \n"); return; } - - } - cSize = ZSTD_compressBlock(esr.zc, esr.workPlace, ZSTD_BLOCKSIZE_MAX, src, srcSize); - if (ZSTD_isError(cSize)) { DISPLAYLEVEL(3, "warning : could not compress sample size %u \n", (unsigned)srcSize); return; } - - if (cSize) { /* if == 0; block is not compressible */ - const seqStore_t* const seqStorePtr = ZSTD_getSeqStore(esr.zc); - - /* literals stats */ - { const BYTE* bytePtr; - for(bytePtr = seqStorePtr->litStart; bytePtr < seqStorePtr->lit; bytePtr++) - countLit[*bytePtr]++; - } - - /* seqStats */ - { U32 const nbSeq = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); - ZSTD_seqToCodes(seqStorePtr); - - { const BYTE* codePtr = seqStorePtr->ofCode; - U32 u; - for (u=0; umlCode; - U32 u; - for (u=0; ullCode; - U32 u; - for (u=0; u= 2) { /* rep offsets */ - const seqDef* const seq = seqStorePtr->sequencesStart; - U32 offset1 = seq[0].offset - 3; - U32 offset2 = seq[1].offset - 3; - if (offset1 >= MAXREPOFFSET) offset1 = 0; - if (offset2 >= MAXREPOFFSET) offset2 = 0; - repOffsets[offset1] += 3; - repOffsets[offset2] += 1; - } } } -} - -static size_t ZDICT_totalSampleSize(const size_t* fileSizes, unsigned nbFiles) -{ - size_t total=0; - unsigned u; - for (u=0; u0; u--) { - offsetCount_t tmp; - if (table[u-1].count >= table[u].count) break; - tmp = table[u-1]; - table[u-1] = table[u]; - table[u] = tmp; - } -} - -/* ZDICT_flatLit() : - * rewrite `countLit` to contain a mostly flat but still compressible distribution of literals. - * necessary to avoid generating a non-compressible distribution that HUF_writeCTable() cannot encode. - */ -static void ZDICT_flatLit(unsigned* countLit) -{ - int u; - for (u=1; u<256; u++) countLit[u] = 2; - countLit[0] = 4; - countLit[253] = 1; - countLit[254] = 1; -} - -#define OFFCODE_MAX 30 /* only applicable to first block */ -static size_t ZDICT_analyzeEntropy(void* dstBuffer, size_t maxDstSize, - unsigned compressionLevel, - const void* srcBuffer, const size_t* fileSizes, unsigned nbFiles, - const void* dictBuffer, size_t dictBufferSize, - unsigned notificationLevel) -{ - unsigned countLit[256]; - HUF_CREATE_STATIC_CTABLE(hufTable, 255); - unsigned offcodeCount[OFFCODE_MAX+1]; - short offcodeNCount[OFFCODE_MAX+1]; - U32 offcodeMax = ZSTD_highbit32((U32)(dictBufferSize + 128 KB)); - unsigned matchLengthCount[MaxML+1]; - short matchLengthNCount[MaxML+1]; - unsigned litLengthCount[MaxLL+1]; - short litLengthNCount[MaxLL+1]; - U32 repOffset[MAXREPOFFSET]; - offsetCount_t bestRepOffset[ZSTD_REP_NUM+1]; - EStats_ress_t esr = { NULL, NULL, NULL }; - ZSTD_parameters params; - U32 u, huffLog = 11, Offlog = OffFSELog, mlLog = MLFSELog, llLog = LLFSELog, total; - size_t pos = 0, errorCode; - size_t eSize = 0; - size_t const totalSrcSize = ZDICT_totalSampleSize(fileSizes, nbFiles); - size_t const averageSampleSize = totalSrcSize / (nbFiles + !nbFiles); - BYTE* dstPtr = (BYTE*)dstBuffer; - - /* init */ - DEBUGLOG(4, "ZDICT_analyzeEntropy"); - if (offcodeMax>OFFCODE_MAX) { eSize = ERROR(dictionaryCreation_failed); goto _cleanup; } /* too large dictionary */ - for (u=0; u<256; u++) countLit[u] = 1; /* any character must be described */ - for (u=0; u<=offcodeMax; u++) offcodeCount[u] = 1; - for (u=0; u<=MaxML; u++) matchLengthCount[u] = 1; - for (u=0; u<=MaxLL; u++) litLengthCount[u] = 1; - memset(repOffset, 0, sizeof(repOffset)); - repOffset[1] = repOffset[4] = repOffset[8] = 1; - memset(bestRepOffset, 0, sizeof(bestRepOffset)); - if (compressionLevel==0) compressionLevel = g_compressionLevel_default; - params = ZSTD_getParams(compressionLevel, averageSampleSize, dictBufferSize); - - esr.dict = ZSTD_createCDict_advanced(dictBuffer, dictBufferSize, ZSTD_dlm_byRef, ZSTD_dct_rawContent, params.cParams, ZSTD_defaultCMem); - esr.zc = ZSTD_createCCtx(); - esr.workPlace = malloc(ZSTD_BLOCKSIZE_MAX); - if (!esr.dict || !esr.zc || !esr.workPlace) { - eSize = ERROR(memory_allocation); - DISPLAYLEVEL(1, "Not enough memory \n"); - goto _cleanup; - } - - /* collect stats on all samples */ - for (u=0; u dictBufferCapacity) dictContentSize = dictBufferCapacity - hSize; - { size_t const dictSize = hSize + dictContentSize; - char* dictEnd = (char*)dictBuffer + dictSize; - memmove(dictEnd - dictContentSize, customDictContent, dictContentSize); - memcpy(dictBuffer, header, hSize); - return dictSize; - } -} - - -static size_t ZDICT_addEntropyTablesFromBuffer_advanced( - void* dictBuffer, size_t dictContentSize, size_t dictBufferCapacity, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, - ZDICT_params_t params) -{ - int const compressionLevel = (params.compressionLevel == 0) ? g_compressionLevel_default : params.compressionLevel; - U32 const notificationLevel = params.notificationLevel; - size_t hSize = 8; - - /* calculate entropy tables */ - DISPLAYLEVEL(2, "\r%70s\r", ""); /* clean display line */ - DISPLAYLEVEL(2, "statistics ... \n"); - { size_t const eSize = ZDICT_analyzeEntropy((char*)dictBuffer+hSize, dictBufferCapacity-hSize, - compressionLevel, - samplesBuffer, samplesSizes, nbSamples, - (char*)dictBuffer + dictBufferCapacity - dictContentSize, dictContentSize, - notificationLevel); - if (ZDICT_isError(eSize)) return eSize; - hSize += eSize; - } - - /* add dictionary header (after entropy tables) */ - MEM_writeLE32(dictBuffer, ZSTD_MAGIC_DICTIONARY); - { U64 const randomID = XXH64((char*)dictBuffer + dictBufferCapacity - dictContentSize, dictContentSize, 0); - U32 const compliantID = (randomID % ((1U<<31)-32768)) + 32768; - U32 const dictID = params.dictID ? params.dictID : compliantID; - MEM_writeLE32((char*)dictBuffer+4, dictID); - } - - if (hSize + dictContentSize < dictBufferCapacity) - memmove((char*)dictBuffer + hSize, (char*)dictBuffer + dictBufferCapacity - dictContentSize, dictContentSize); - return MIN(dictBufferCapacity, hSize+dictContentSize); -} - -/* Hidden declaration for dbio.c */ -size_t ZDICT_trainFromBuffer_unsafe_legacy( - void* dictBuffer, size_t maxDictSize, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, - ZDICT_legacy_params_t params); -/*! ZDICT_trainFromBuffer_unsafe_legacy() : -* Warning : `samplesBuffer` must be followed by noisy guard band. -* @return : size of dictionary, or an error code which can be tested with ZDICT_isError() -*/ -size_t ZDICT_trainFromBuffer_unsafe_legacy( - void* dictBuffer, size_t maxDictSize, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, - ZDICT_legacy_params_t params) -{ - U32 const dictListSize = MAX(MAX(DICTLISTSIZE_DEFAULT, nbSamples), (U32)(maxDictSize/16)); - dictItem* const dictList = (dictItem*)malloc(dictListSize * sizeof(*dictList)); - unsigned const selectivity = params.selectivityLevel == 0 ? g_selectivity_default : params.selectivityLevel; - unsigned const minRep = (selectivity > 30) ? MINRATIO : nbSamples >> selectivity; - size_t const targetDictSize = maxDictSize; - size_t const samplesBuffSize = ZDICT_totalSampleSize(samplesSizes, nbSamples); - size_t dictSize = 0; - U32 const notificationLevel = params.zParams.notificationLevel; - - /* checks */ - if (!dictList) return ERROR(memory_allocation); - if (maxDictSize < ZDICT_DICTSIZE_MIN) { free(dictList); return ERROR(dstSize_tooSmall); } /* requested dictionary size is too small */ - if (samplesBuffSize < ZDICT_MIN_SAMPLES_SIZE) { free(dictList); return ERROR(dictionaryCreation_failed); } /* not enough source to create dictionary */ - - /* init */ - ZDICT_initDictItem(dictList); - - /* build dictionary */ - ZDICT_trainBuffer_legacy(dictList, dictListSize, - samplesBuffer, samplesBuffSize, - samplesSizes, nbSamples, - minRep, notificationLevel); - - /* display best matches */ - if (params.zParams.notificationLevel>= 3) { - unsigned const nb = MIN(25, dictList[0].pos); - unsigned const dictContentSize = ZDICT_dictSize(dictList); - unsigned u; - DISPLAYLEVEL(3, "\n %u segments found, of total size %u \n", (unsigned)dictList[0].pos-1, dictContentSize); - DISPLAYLEVEL(3, "list %u best segments \n", nb-1); - for (u=1; u samplesBuffSize) || ((pos + length) > samplesBuffSize)) { - free(dictList); - return ERROR(GENERIC); /* should never happen */ - } - DISPLAYLEVEL(3, "%3u:%3u bytes at pos %8u, savings %7u bytes |", - u, length, pos, (unsigned)dictList[u].savings); - ZDICT_printHex((const char*)samplesBuffer+pos, printedLength); - DISPLAYLEVEL(3, "| \n"); - } } - - - /* create dictionary */ - { unsigned dictContentSize = ZDICT_dictSize(dictList); - if (dictContentSize < ZDICT_CONTENTSIZE_MIN) { free(dictList); return ERROR(dictionaryCreation_failed); } /* dictionary content too small */ - if (dictContentSize < targetDictSize/4) { - DISPLAYLEVEL(2, "! warning : selected content significantly smaller than requested (%u < %u) \n", dictContentSize, (unsigned)maxDictSize); - if (samplesBuffSize < 10 * targetDictSize) - DISPLAYLEVEL(2, "! consider increasing the number of samples (total size : %u MB)\n", (unsigned)(samplesBuffSize>>20)); - if (minRep > MINRATIO) { - DISPLAYLEVEL(2, "! consider increasing selectivity to produce larger dictionary (-s%u) \n", selectivity+1); - DISPLAYLEVEL(2, "! note : larger dictionaries are not necessarily better, test its efficiency on samples \n"); - } - } - - if ((dictContentSize > targetDictSize*3) && (nbSamples > 2*MINRATIO) && (selectivity>1)) { - unsigned proposedSelectivity = selectivity-1; - while ((nbSamples >> proposedSelectivity) <= MINRATIO) { proposedSelectivity--; } - DISPLAYLEVEL(2, "! note : calculated dictionary significantly larger than requested (%u > %u) \n", dictContentSize, (unsigned)maxDictSize); - DISPLAYLEVEL(2, "! consider increasing dictionary size, or produce denser dictionary (-s%u) \n", proposedSelectivity); - DISPLAYLEVEL(2, "! always test dictionary efficiency on real samples \n"); - } - - /* limit dictionary size */ - { U32 const max = dictList->pos; /* convention : nb of useful elts within dictList */ - U32 currentSize = 0; - U32 n; for (n=1; n targetDictSize) { currentSize -= dictList[n].length; break; } - } - dictList->pos = n; - dictContentSize = currentSize; - } - - /* build dict content */ - { U32 u; - BYTE* ptr = (BYTE*)dictBuffer + maxDictSize; - for (u=1; upos; u++) { - U32 l = dictList[u].length; - ptr -= l; - if (ptr<(BYTE*)dictBuffer) { free(dictList); return ERROR(GENERIC); } /* should not happen */ - memcpy(ptr, (const char*)samplesBuffer+dictList[u].pos, l); - } } - - dictSize = ZDICT_addEntropyTablesFromBuffer_advanced(dictBuffer, dictContentSize, maxDictSize, - samplesBuffer, samplesSizes, nbSamples, - params.zParams); - } - - /* clean up */ - free(dictList); - return dictSize; -} - - -/* ZDICT_trainFromBuffer_legacy() : - * issue : samplesBuffer need to be followed by a noisy guard band. - * work around : duplicate the buffer, and add the noise */ -size_t ZDICT_trainFromBuffer_legacy(void* dictBuffer, size_t dictBufferCapacity, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, - ZDICT_legacy_params_t params) -{ - size_t result; - void* newBuff; - size_t const sBuffSize = ZDICT_totalSampleSize(samplesSizes, nbSamples); - if (sBuffSize < ZDICT_MIN_SAMPLES_SIZE) return 0; /* not enough content => no dictionary */ - - newBuff = malloc(sBuffSize + NOISELENGTH); - if (!newBuff) return ERROR(memory_allocation); - - memcpy(newBuff, samplesBuffer, sBuffSize); - ZDICT_fillNoise((char*)newBuff + sBuffSize, NOISELENGTH); /* guard band, for end of buffer condition */ - - result = - ZDICT_trainFromBuffer_unsafe_legacy(dictBuffer, dictBufferCapacity, newBuff, - samplesSizes, nbSamples, params); - free(newBuff); - return result; -} - - -size_t ZDICT_trainFromBuffer(void* dictBuffer, size_t dictBufferCapacity, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples) -{ - ZDICT_fastCover_params_t params; - DEBUGLOG(3, "ZDICT_trainFromBuffer"); - memset(¶ms, 0, sizeof(params)); - params.d = 8; - params.steps = 4; - /* Default to level 6 since no compression level information is available */ - params.zParams.compressionLevel = 3; -#if defined(DEBUGLEVEL) && (DEBUGLEVEL>=1) - params.zParams.notificationLevel = DEBUGLEVEL; -#endif - return ZDICT_optimizeTrainFromBuffer_fastCover(dictBuffer, dictBufferCapacity, - samplesBuffer, samplesSizes, nbSamples, - ¶ms); -} - -size_t ZDICT_addEntropyTablesFromBuffer(void* dictBuffer, size_t dictContentSize, size_t dictBufferCapacity, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples) -{ - ZDICT_params_t params; - memset(¶ms, 0, sizeof(params)); - return ZDICT_addEntropyTablesFromBuffer_advanced(dictBuffer, dictContentSize, dictBufferCapacity, - samplesBuffer, samplesSizes, nbSamples, - params); -} diff --git a/lib/SZ3/tools/zstd/dictBuilder/zdict.h b/lib/SZ3/tools/zstd/dictBuilder/zdict.h deleted file mode 100644 index ff2e77fa..00000000 --- a/lib/SZ3/tools/zstd/dictBuilder/zdict.h +++ /dev/null @@ -1,305 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef DICTBUILDER_H_001 -#define DICTBUILDER_H_001 - -#if defined (__cplusplus) -extern "C" { -#endif - - -/*====== Dependencies ======*/ -#include /* size_t */ - - -/* ===== ZDICTLIB_API : control library symbols visibility ===== */ -#ifndef ZDICTLIB_VISIBILITY -# if defined(__GNUC__) && (__GNUC__ >= 4) -# define ZDICTLIB_VISIBILITY __attribute__ ((visibility ("default"))) -# else -# define ZDICTLIB_VISIBILITY -# endif -#endif -#if defined(ZSTD_DLL_EXPORT) && (ZSTD_DLL_EXPORT==1) -# define ZDICTLIB_API __declspec(dllexport) ZDICTLIB_VISIBILITY -#elif defined(ZSTD_DLL_IMPORT) && (ZSTD_DLL_IMPORT==1) -# define ZDICTLIB_API __declspec(dllimport) ZDICTLIB_VISIBILITY /* It isn't required but allows to generate better code, saving a function pointer load from the IAT and an indirect jump.*/ -#else -# define ZDICTLIB_API ZDICTLIB_VISIBILITY -#endif - - -/*! ZDICT_trainFromBuffer(): - * Train a dictionary from an array of samples. - * Redirect towards ZDICT_optimizeTrainFromBuffer_fastCover() single-threaded, with d=8, steps=4, - * f=20, and accel=1. - * Samples must be stored concatenated in a single flat buffer `samplesBuffer`, - * supplied with an array of sizes `samplesSizes`, providing the size of each sample, in order. - * The resulting dictionary will be saved into `dictBuffer`. - * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) - * or an error code, which can be tested with ZDICT_isError(). - * Note: Dictionary training will fail if there are not enough samples to construct a - * dictionary, or if most of the samples are too small (< 8 bytes being the lower limit). - * If dictionary training fails, you should use zstd without a dictionary, as the dictionary - * would've been ineffective anyways. If you believe your samples would benefit from a dictionary - * please open an issue with details, and we can look into it. - * Note: ZDICT_trainFromBuffer()'s memory usage is about 6 MB. - * Tips: In general, a reasonable dictionary has a size of ~ 100 KB. - * It's possible to select smaller or larger size, just by specifying `dictBufferCapacity`. - * In general, it's recommended to provide a few thousands samples, though this can vary a lot. - * It's recommended that total size of all samples be about ~x100 times the target size of dictionary. - */ -ZDICTLIB_API size_t ZDICT_trainFromBuffer(void* dictBuffer, size_t dictBufferCapacity, - const void* samplesBuffer, - const size_t* samplesSizes, unsigned nbSamples); - -typedef struct { - int compressionLevel; /*< optimize for a specific zstd compression level; 0 means default */ - unsigned notificationLevel; /*< Write log to stderr; 0 = none (default); 1 = errors; 2 = progression; 3 = details; 4 = debug; */ - unsigned dictID; /*< force dictID value; 0 means auto mode (32-bits random value) */ -} ZDICT_params_t; - -/*! ZDICT_finalizeDictionary(): - * Given a custom content as a basis for dictionary, and a set of samples, - * finalize dictionary by adding headers and statistics according to the zstd - * dictionary format. - * - * Samples must be stored concatenated in a flat buffer `samplesBuffer`, - * supplied with an array of sizes `samplesSizes`, providing the size of each - * sample in order. The samples are used to construct the statistics, so they - * should be representative of what you will compress with this dictionary. - * - * The compression level can be set in `parameters`. You should pass the - * compression level you expect to use in production. The statistics for each - * compression level differ, so tuning the dictionary for the compression level - * can help quite a bit. - * - * You can set an explicit dictionary ID in `parameters`, or allow us to pick - * a random dictionary ID for you, but we can't guarantee no collisions. - * - * The dstDictBuffer and the dictContent may overlap, and the content will be - * appended to the end of the header. If the header + the content doesn't fit in - * maxDictSize the beginning of the content is truncated to make room, since it - * is presumed that the most profitable content is at the end of the dictionary, - * since that is the cheapest to reference. - * - * `dictContentSize` must be >= ZDICT_CONTENTSIZE_MIN bytes. - * `maxDictSize` must be >= max(dictContentSize, ZSTD_DICTSIZE_MIN). - * - * @return: size of dictionary stored into `dstDictBuffer` (<= `maxDictSize`), - * or an error code, which can be tested by ZDICT_isError(). - * Note: ZDICT_finalizeDictionary() will push notifications into stderr if - * instructed to, using notificationLevel>0. - * NOTE: This function currently may fail in several edge cases including: - * * Not enough samples - * * Samples are uncompressible - * * Samples are all exactly the same - */ -ZDICTLIB_API size_t ZDICT_finalizeDictionary(void* dstDictBuffer, size_t maxDictSize, - const void* dictContent, size_t dictContentSize, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, - ZDICT_params_t parameters); - - -/*====== Helper functions ======*/ -ZDICTLIB_API unsigned ZDICT_getDictID(const void* dictBuffer, size_t dictSize); /**< extracts dictID; @return zero if error (not a valid dictionary) */ -ZDICTLIB_API size_t ZDICT_getDictHeaderSize(const void* dictBuffer, size_t dictSize); /* returns dict header size; returns a ZSTD error code on failure */ -ZDICTLIB_API unsigned ZDICT_isError(size_t errorCode); -ZDICTLIB_API const char* ZDICT_getErrorName(size_t errorCode); - - - -#ifdef ZDICT_STATIC_LINKING_ONLY - -/* ==================================================================================== - * The definitions in this section are considered experimental. - * They should never be used with a dynamic library, as they may change in the future. - * They are provided for advanced usages. - * Use them only in association with static linking. - * ==================================================================================== */ - -#define ZDICT_CONTENTSIZE_MIN 128 -#define ZDICT_DICTSIZE_MIN 256 - -/*! ZDICT_cover_params_t: - * k and d are the only required parameters. - * For others, value 0 means default. - */ -typedef struct { - unsigned k; /* Segment size : constraint: 0 < k : Reasonable range [16, 2048+] */ - unsigned d; /* dmer size : constraint: 0 < d <= k : Reasonable range [6, 16] */ - unsigned steps; /* Number of steps : Only used for optimization : 0 means default (40) : Higher means more parameters checked */ - unsigned nbThreads; /* Number of threads : constraint: 0 < nbThreads : 1 means single-threaded : Only used for optimization : Ignored if ZSTD_MULTITHREAD is not defined */ - double splitPoint; /* Percentage of samples used for training: Only used for optimization : the first nbSamples * splitPoint samples will be used to training, the last nbSamples * (1 - splitPoint) samples will be used for testing, 0 means default (1.0), 1.0 when all samples are used for both training and testing */ - unsigned shrinkDict; /* Train dictionaries to shrink in size starting from the minimum size and selects the smallest dictionary that is shrinkDictMaxRegression% worse than the largest dictionary. 0 means no shrinking and 1 means shrinking */ - unsigned shrinkDictMaxRegression; /* Sets shrinkDictMaxRegression so that a smaller dictionary can be at worse shrinkDictMaxRegression% worse than the max dict size dictionary. */ - ZDICT_params_t zParams; -} ZDICT_cover_params_t; - -typedef struct { - unsigned k; /* Segment size : constraint: 0 < k : Reasonable range [16, 2048+] */ - unsigned d; /* dmer size : constraint: 0 < d <= k : Reasonable range [6, 16] */ - unsigned f; /* log of size of frequency array : constraint: 0 < f <= 31 : 1 means default(20)*/ - unsigned steps; /* Number of steps : Only used for optimization : 0 means default (40) : Higher means more parameters checked */ - unsigned nbThreads; /* Number of threads : constraint: 0 < nbThreads : 1 means single-threaded : Only used for optimization : Ignored if ZSTD_MULTITHREAD is not defined */ - double splitPoint; /* Percentage of samples used for training: Only used for optimization : the first nbSamples * splitPoint samples will be used to training, the last nbSamples * (1 - splitPoint) samples will be used for testing, 0 means default (0.75), 1.0 when all samples are used for both training and testing */ - unsigned accel; /* Acceleration level: constraint: 0 < accel <= 10, higher means faster and less accurate, 0 means default(1) */ - unsigned shrinkDict; /* Train dictionaries to shrink in size starting from the minimum size and selects the smallest dictionary that is shrinkDictMaxRegression% worse than the largest dictionary. 0 means no shrinking and 1 means shrinking */ - unsigned shrinkDictMaxRegression; /* Sets shrinkDictMaxRegression so that a smaller dictionary can be at worse shrinkDictMaxRegression% worse than the max dict size dictionary. */ - - ZDICT_params_t zParams; -} ZDICT_fastCover_params_t; - -/*! ZDICT_trainFromBuffer_cover(): - * Train a dictionary from an array of samples using the COVER algorithm. - * Samples must be stored concatenated in a single flat buffer `samplesBuffer`, - * supplied with an array of sizes `samplesSizes`, providing the size of each sample, in order. - * The resulting dictionary will be saved into `dictBuffer`. - * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) - * or an error code, which can be tested with ZDICT_isError(). - * See ZDICT_trainFromBuffer() for details on failure modes. - * Note: ZDICT_trainFromBuffer_cover() requires about 9 bytes of memory for each input byte. - * Tips: In general, a reasonable dictionary has a size of ~ 100 KB. - * It's possible to select smaller or larger size, just by specifying `dictBufferCapacity`. - * In general, it's recommended to provide a few thousands samples, though this can vary a lot. - * It's recommended that total size of all samples be about ~x100 times the target size of dictionary. - */ -ZDICTLIB_API size_t ZDICT_trainFromBuffer_cover( - void *dictBuffer, size_t dictBufferCapacity, - const void *samplesBuffer, const size_t *samplesSizes, unsigned nbSamples, - ZDICT_cover_params_t parameters); - -/*! ZDICT_optimizeTrainFromBuffer_cover(): - * The same requirements as above hold for all the parameters except `parameters`. - * This function tries many parameter combinations and picks the best parameters. - * `*parameters` is filled with the best parameters found, - * dictionary constructed with those parameters is stored in `dictBuffer`. - * - * All of the parameters d, k, steps are optional. - * If d is non-zero then we don't check multiple values of d, otherwise we check d = {6, 8}. - * if steps is zero it defaults to its default value. - * If k is non-zero then we don't check multiple values of k, otherwise we check steps values in [50, 2000]. - * - * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) - * or an error code, which can be tested with ZDICT_isError(). - * On success `*parameters` contains the parameters selected. - * See ZDICT_trainFromBuffer() for details on failure modes. - * Note: ZDICT_optimizeTrainFromBuffer_cover() requires about 8 bytes of memory for each input byte and additionally another 5 bytes of memory for each byte of memory for each thread. - */ -ZDICTLIB_API size_t ZDICT_optimizeTrainFromBuffer_cover( - void* dictBuffer, size_t dictBufferCapacity, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples, - ZDICT_cover_params_t* parameters); - -/*! ZDICT_trainFromBuffer_fastCover(): - * Train a dictionary from an array of samples using a modified version of COVER algorithm. - * Samples must be stored concatenated in a single flat buffer `samplesBuffer`, - * supplied with an array of sizes `samplesSizes`, providing the size of each sample, in order. - * d and k are required. - * All other parameters are optional, will use default values if not provided - * The resulting dictionary will be saved into `dictBuffer`. - * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) - * or an error code, which can be tested with ZDICT_isError(). - * See ZDICT_trainFromBuffer() for details on failure modes. - * Note: ZDICT_trainFromBuffer_fastCover() requires 6 * 2^f bytes of memory. - * Tips: In general, a reasonable dictionary has a size of ~ 100 KB. - * It's possible to select smaller or larger size, just by specifying `dictBufferCapacity`. - * In general, it's recommended to provide a few thousands samples, though this can vary a lot. - * It's recommended that total size of all samples be about ~x100 times the target size of dictionary. - */ -ZDICTLIB_API size_t ZDICT_trainFromBuffer_fastCover(void *dictBuffer, - size_t dictBufferCapacity, const void *samplesBuffer, - const size_t *samplesSizes, unsigned nbSamples, - ZDICT_fastCover_params_t parameters); - -/*! ZDICT_optimizeTrainFromBuffer_fastCover(): - * The same requirements as above hold for all the parameters except `parameters`. - * This function tries many parameter combinations (specifically, k and d combinations) - * and picks the best parameters. `*parameters` is filled with the best parameters found, - * dictionary constructed with those parameters is stored in `dictBuffer`. - * All of the parameters d, k, steps, f, and accel are optional. - * If d is non-zero then we don't check multiple values of d, otherwise we check d = {6, 8}. - * if steps is zero it defaults to its default value. - * If k is non-zero then we don't check multiple values of k, otherwise we check steps values in [50, 2000]. - * If f is zero, default value of 20 is used. - * If accel is zero, default value of 1 is used. - * - * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) - * or an error code, which can be tested with ZDICT_isError(). - * On success `*parameters` contains the parameters selected. - * See ZDICT_trainFromBuffer() for details on failure modes. - * Note: ZDICT_optimizeTrainFromBuffer_fastCover() requires about 6 * 2^f bytes of memory for each thread. - */ -ZDICTLIB_API size_t ZDICT_optimizeTrainFromBuffer_fastCover(void* dictBuffer, - size_t dictBufferCapacity, const void* samplesBuffer, - const size_t* samplesSizes, unsigned nbSamples, - ZDICT_fastCover_params_t* parameters); - -typedef struct { - unsigned selectivityLevel; /* 0 means default; larger => select more => larger dictionary */ - ZDICT_params_t zParams; -} ZDICT_legacy_params_t; - -/*! ZDICT_trainFromBuffer_legacy(): - * Train a dictionary from an array of samples. - * Samples must be stored concatenated in a single flat buffer `samplesBuffer`, - * supplied with an array of sizes `samplesSizes`, providing the size of each sample, in order. - * The resulting dictionary will be saved into `dictBuffer`. - * `parameters` is optional and can be provided with values set to 0 to mean "default". - * @return: size of dictionary stored into `dictBuffer` (<= `dictBufferCapacity`) - * or an error code, which can be tested with ZDICT_isError(). - * See ZDICT_trainFromBuffer() for details on failure modes. - * Tips: In general, a reasonable dictionary has a size of ~ 100 KB. - * It's possible to select smaller or larger size, just by specifying `dictBufferCapacity`. - * In general, it's recommended to provide a few thousands samples, though this can vary a lot. - * It's recommended that total size of all samples be about ~x100 times the target size of dictionary. - * Note: ZDICT_trainFromBuffer_legacy() will send notifications into stderr if instructed to, using notificationLevel>0. - */ -ZDICTLIB_API size_t ZDICT_trainFromBuffer_legacy( - void *dictBuffer, size_t dictBufferCapacity, - const void *samplesBuffer, const size_t *samplesSizes, unsigned nbSamples, - ZDICT_legacy_params_t parameters); - -/* Deprecation warnings */ -/* It is generally possible to disable deprecation warnings from compiler, - for example with -Wno-deprecated-declarations for gcc - or _CRT_SECURE_NO_WARNINGS in Visual. - Otherwise, it's also possible to manually define ZDICT_DISABLE_DEPRECATE_WARNINGS */ -#ifdef ZDICT_DISABLE_DEPRECATE_WARNINGS -# define ZDICT_DEPRECATED(message) ZDICTLIB_API /* disable deprecation warnings */ -#else -# define ZDICT_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) -# if defined (__cplusplus) && (__cplusplus >= 201402) /* C++14 or greater */ -# define ZDICT_DEPRECATED(message) [[deprecated(message)]] ZDICTLIB_API -# elif (ZDICT_GCC_VERSION >= 405) || defined(__clang__) -# define ZDICT_DEPRECATED(message) ZDICTLIB_API __attribute__((deprecated(message))) -# elif (ZDICT_GCC_VERSION >= 301) -# define ZDICT_DEPRECATED(message) ZDICTLIB_API __attribute__((deprecated)) -# elif defined(_MSC_VER) -# define ZDICT_DEPRECATED(message) ZDICTLIB_API __declspec(deprecated(message)) -# else -# pragma message("WARNING: You need to implement ZDICT_DEPRECATED for this compiler") -# define ZDICT_DEPRECATED(message) ZDICTLIB_API -# endif -#endif /* ZDICT_DISABLE_DEPRECATE_WARNINGS */ - -ZDICT_DEPRECATED("use ZDICT_finalizeDictionary() instead") -size_t ZDICT_addEntropyTablesFromBuffer(void* dictBuffer, size_t dictContentSize, size_t dictBufferCapacity, - const void* samplesBuffer, const size_t* samplesSizes, unsigned nbSamples); - - -#endif /* ZDICT_STATIC_LINKING_ONLY */ - -#if defined (__cplusplus) -} -#endif - -#endif /* DICTBUILDER_H_001 */ diff --git a/lib/SZ3/tools/zstd/dll/example/Makefile b/lib/SZ3/tools/zstd/dll/example/Makefile deleted file mode 100644 index 8f191955..00000000 --- a/lib/SZ3/tools/zstd/dll/example/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -# ################################################################ -# Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. -# All rights reserved. -# -# This source code is licensed under both the BSD-style license (found in the -# LICENSE file in the root directory of this source tree) and the GPLv2 (found -# in the COPYING file in the root directory of this source tree). -# You may select, at your option, one of the above-listed licenses. -# ################################################################ - -VOID := /dev/null -ZSTDDIR := ../include -LIBDIR := ../static -DLLDIR := ../dll - -CFLAGS ?= -O3 # can select custom flags. For example : CFLAGS="-O2 -g" make -CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum \ - -Wdeclaration-after-statement -Wstrict-prototypes \ - -Wpointer-arith -Wstrict-aliasing=1 -CFLAGS += $(MOREFLAGS) -CPPFLAGS:= -I$(ZSTDDIR) -DXXH_NAMESPACE=ZSTD_ -FLAGS := $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) - - -# Define *.exe as extension for Windows systems -ifneq (,$(filter Windows%,$(OS))) -EXT =.exe -else -EXT = -endif - -.PHONY: default fullbench-dll fullbench-lib - - -default: all - -all: fullbench-dll fullbench-lib - - -fullbench-lib: fullbench.c datagen.c - $(CC) $(FLAGS) $^ -o $@$(EXT) $(LIBDIR)/libzstd_static.lib - -fullbench-dll: fullbench.c datagen.c - $(CC) $(FLAGS) $^ -o $@$(EXT) -DZSTD_DLL_IMPORT=1 $(DLLDIR)/libzstd.dll - -clean: - @$(RM) fullbench-dll$(EXT) fullbench-lib$(EXT) \ - @echo Cleaning completed diff --git a/lib/SZ3/tools/zstd/dll/example/README.md b/lib/SZ3/tools/zstd/dll/example/README.md deleted file mode 100644 index e231f59c..00000000 --- a/lib/SZ3/tools/zstd/dll/example/README.md +++ /dev/null @@ -1,69 +0,0 @@ -ZSTD Windows binary package -==================================== - -#### The package contents - -- `zstd.exe` : Command Line Utility, supporting gzip-like arguments -- `dll\libzstd.dll` : The ZSTD dynamic library (DLL) -- `dll\libzstd.lib` : The import library of the ZSTD dynamic library (DLL) for Visual C++ -- `example\` : The example of usage of the ZSTD library -- `include\` : Header files required by the ZSTD library -- `static\libzstd_static.lib` : The static ZSTD library (LIB) - - -#### Usage of Command Line Interface - -Command Line Interface (CLI) supports gzip-like arguments. -By default CLI takes an input file and compresses it to an output file: -``` - Usage: zstd [arg] [input] [output] -``` -The full list of commands for CLI can be obtained with `-h` or `-H`. The ratio can -be improved with commands from `-3` to `-16` but higher levels also have slower -compression. CLI includes in-memory compression benchmark module with compression -levels starting from `-b` and ending with `-e` with iteration time of `-i` seconds. -CLI supports aggregation of parameters i.e. `-b1`, `-e18`, and `-i1` can be joined -into `-b1e18i1`. - - -#### The example of usage of static and dynamic ZSTD libraries with gcc/MinGW - -Use `cd example` and `make` to build `fullbench-dll` and `fullbench-lib`. -`fullbench-dll` uses a dynamic ZSTD library from the `dll` directory. -`fullbench-lib` uses a static ZSTD library from the `lib` directory. - - -#### Using ZSTD DLL with gcc/MinGW - -The header files from `include\` and the dynamic library `dll\libzstd.dll` -are required to compile a project using gcc/MinGW. -The dynamic library has to be added to linking options. -It means that if a project that uses ZSTD consists of a single `test-dll.c` -file it should be linked with `dll\libzstd.dll`. For example: -``` - gcc $(CFLAGS) -Iinclude\ test-dll.c -o test-dll dll\libzstd.dll -``` -The compiled executable will require ZSTD DLL which is available at `dll\libzstd.dll`. - - -#### The example of usage of static and dynamic ZSTD libraries with Visual C++ - -Open `example\fullbench-dll.sln` to compile `fullbench-dll` that uses a -dynamic ZSTD library from the `dll` directory. The solution works with Visual C++ -2010 or newer. When one will open the solution with Visual C++ newer than 2010 -then the solution will upgraded to the current version. - - -#### Using ZSTD DLL with Visual C++ - -The header files from `include\` and the import library `dll\libzstd.lib` -are required to compile a project using Visual C++. - -1. The path to header files should be added to `Additional Include Directories` that can - be found in project properties `C/C++` then `General`. -2. The import library has to be added to `Additional Dependencies` that can - be found in project properties `Linker` then `Input`. - If one will provide only the name `libzstd.lib` without a full path to the library - the directory has to be added to `Linker\General\Additional Library Directories`. - -The compiled executable will require ZSTD DLL which is available at `dll\libzstd.dll`. diff --git a/lib/SZ3/tools/zstd/dll/example/build_package.bat b/lib/SZ3/tools/zstd/dll/example/build_package.bat deleted file mode 100644 index 8baabc7b..00000000 --- a/lib/SZ3/tools/zstd/dll/example/build_package.bat +++ /dev/null @@ -1,20 +0,0 @@ -@ECHO OFF -MKDIR bin\dll bin\static bin\example bin\include -COPY tests\fullbench.c bin\example\ -COPY programs\datagen.c bin\example\ -COPY programs\datagen.h bin\example\ -COPY programs\util.h bin\example\ -COPY programs\platform.h bin\example\ -COPY lib\common\mem.h bin\example\ -COPY lib\common\zstd_internal.h bin\example\ -COPY lib\common\error_private.h bin\example\ -COPY lib\common\xxhash.h bin\example\ -COPY lib\libzstd.a bin\static\libzstd_static.lib -COPY lib\dll\libzstd.* bin\dll\ -COPY lib\dll\example\Makefile bin\example\ -COPY lib\dll\example\fullbench-dll.* bin\example\ -COPY lib\dll\example\README.md bin\ -COPY lib\zstd.h bin\include\ -COPY lib\common\zstd_errors.h bin\include\ -COPY lib\dictBuilder\zdict.h bin\include\ -COPY programs\zstd.exe bin\zstd.exe diff --git a/lib/SZ3/tools/zstd/dll/example/fullbench-dll.sln b/lib/SZ3/tools/zstd/dll/example/fullbench-dll.sln deleted file mode 100644 index 72e302e7..00000000 --- a/lib/SZ3/tools/zstd/dll/example/fullbench-dll.sln +++ /dev/null @@ -1,25 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Express 2012 for Windows Desktop -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll.vcxproj", "{13992FD2-077E-4954-B065-A428198201A9}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {13992FD2-077E-4954-B065-A428198201A9}.Debug|Win32.ActiveCfg = Debug|Win32 - {13992FD2-077E-4954-B065-A428198201A9}.Debug|Win32.Build.0 = Debug|Win32 - {13992FD2-077E-4954-B065-A428198201A9}.Debug|x64.ActiveCfg = Debug|x64 - {13992FD2-077E-4954-B065-A428198201A9}.Debug|x64.Build.0 = Debug|x64 - {13992FD2-077E-4954-B065-A428198201A9}.Release|Win32.ActiveCfg = Release|Win32 - {13992FD2-077E-4954-B065-A428198201A9}.Release|Win32.Build.0 = Release|Win32 - {13992FD2-077E-4954-B065-A428198201A9}.Release|x64.ActiveCfg = Release|x64 - {13992FD2-077E-4954-B065-A428198201A9}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/lib/SZ3/tools/zstd/dll/example/fullbench-dll.vcxproj b/lib/SZ3/tools/zstd/dll/example/fullbench-dll.vcxproj deleted file mode 100644 index 44bbaf78..00000000 --- a/lib/SZ3/tools/zstd/dll/example/fullbench-dll.vcxproj +++ /dev/null @@ -1,181 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {00000000-1CC8-4FD7-9281-6B8DBB9D3DF8} - Win32Proj - fullbench-dll - $(SolutionDir)bin\$(Platform)_$(Configuration)\ - $(SolutionDir)bin\obj\$(RootNamespace)_$(Platform)_$(Configuration)\ - - - - Application - true - MultiByte - - - Application - true - MultiByte - - - Application - false - true - MultiByte - - - Application - false - true - MultiByte - - - - - - - - - - - - - - - - - - - true - $(IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\lib\common;$(UniversalCRT_IncludePath); - false - - - true - $(IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\lib\common;$(UniversalCRT_IncludePath); - false - - - false - $(IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\lib\common;$(UniversalCRT_IncludePath); - false - - - false - $(IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(SolutionDir)..\..\lib\legacy;$(SolutionDir)..\..\lib\common;$(UniversalCRT_IncludePath); - false - - - - - - Level4 - Disabled - WIN32;_DEBUG;_CONSOLE;ZSTD_DLL_IMPORT=1;%(PreprocessorDefinitions) - true - false - ..\include - - - Console - true - $(SolutionDir)..\dll;%(AdditionalLibraryDirectories) - libzstd.lib;%(AdditionalDependencies) - false - - - - - - - Level4 - Disabled - WIN32;_DEBUG;_CONSOLE;ZSTD_DLL_IMPORT=1;%(PreprocessorDefinitions) - true - false - ..\include - - - Console - true - $(SolutionDir)..\dll;%(AdditionalLibraryDirectories) - libzstd.lib;%(AdditionalDependencies) - - - - - Level4 - - - MaxSpeed - true - true - WIN32;_DEBUG;_CONSOLE;ZSTD_DLL_IMPORT=1;%(PreprocessorDefinitions) - false - ..\include - false - MultiThreaded - - - Console - true - true - true - $(SolutionDir)..\dll;%(AdditionalLibraryDirectories) - libzstd.lib;%(AdditionalDependencies) - false - - - - - Level4 - - - MaxSpeed - true - true - WIN32;_DEBUG;_CONSOLE;ZSTD_DLL_IMPORT=1;%(PreprocessorDefinitions) - false - false - ..\include - MultiThreaded - - - Console - true - true - true - $(SolutionDir)..\dll;%(AdditionalLibraryDirectories) - libzstd.lib;%(AdditionalDependencies) - - - - - - - - - - - - - \ No newline at end of file diff --git a/lib/SZ3/tools/zstd/legacy/zstd_legacy.h b/lib/SZ3/tools/zstd/legacy/zstd_legacy.h deleted file mode 100644 index 6bea6a51..00000000 --- a/lib/SZ3/tools/zstd/legacy/zstd_legacy.h +++ /dev/null @@ -1,415 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_LEGACY_H -#define ZSTD_LEGACY_H - -#if defined (__cplusplus) -extern "C" { -#endif - -/* ************************************* -* Includes -***************************************/ -#include "../common/mem.h" /* MEM_STATIC */ -#include "../common/error_private.h" /* ERROR */ -#include "../common/zstd_internal.h" /* ZSTD_inBuffer, ZSTD_outBuffer, ZSTD_frameSizeInfo */ - -#if !defined (ZSTD_LEGACY_SUPPORT) || (ZSTD_LEGACY_SUPPORT == 0) -# undef ZSTD_LEGACY_SUPPORT -# define ZSTD_LEGACY_SUPPORT 8 -#endif - -#if (ZSTD_LEGACY_SUPPORT <= 1) -# include "zstd_v01.h" -#endif -#if (ZSTD_LEGACY_SUPPORT <= 2) -# include "zstd_v02.h" -#endif -#if (ZSTD_LEGACY_SUPPORT <= 3) -# include "zstd_v03.h" -#endif -#if (ZSTD_LEGACY_SUPPORT <= 4) -# include "zstd_v04.h" -#endif -#if (ZSTD_LEGACY_SUPPORT <= 5) -# include "zstd_v05.h" -#endif -#if (ZSTD_LEGACY_SUPPORT <= 6) -# include "zstd_v06.h" -#endif -#if (ZSTD_LEGACY_SUPPORT <= 7) -# include "zstd_v07.h" -#endif - -/** ZSTD_isLegacy() : - @return : > 0 if supported by legacy decoder. 0 otherwise. - return value is the version. -*/ -MEM_STATIC unsigned ZSTD_isLegacy(const void* src, size_t srcSize) -{ - U32 magicNumberLE; - if (srcSize<4) return 0; - magicNumberLE = MEM_readLE32(src); - switch(magicNumberLE) - { -#if (ZSTD_LEGACY_SUPPORT <= 1) - case ZSTDv01_magicNumberLE:return 1; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 2) - case ZSTDv02_magicNumber : return 2; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 3) - case ZSTDv03_magicNumber : return 3; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 4) - case ZSTDv04_magicNumber : return 4; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 5) - case ZSTDv05_MAGICNUMBER : return 5; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 6) - case ZSTDv06_MAGICNUMBER : return 6; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 7) - case ZSTDv07_MAGICNUMBER : return 7; -#endif - default : return 0; - } -} - - -MEM_STATIC unsigned long long ZSTD_getDecompressedSize_legacy(const void* src, size_t srcSize) -{ - U32 const version = ZSTD_isLegacy(src, srcSize); - if (version < 5) return 0; /* no decompressed size in frame header, or not a legacy format */ -#if (ZSTD_LEGACY_SUPPORT <= 5) - if (version==5) { - ZSTDv05_parameters fParams; - size_t const frResult = ZSTDv05_getFrameParams(&fParams, src, srcSize); - if (frResult != 0) return 0; - return fParams.srcSize; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 6) - if (version==6) { - ZSTDv06_frameParams fParams; - size_t const frResult = ZSTDv06_getFrameParams(&fParams, src, srcSize); - if (frResult != 0) return 0; - return fParams.frameContentSize; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 7) - if (version==7) { - ZSTDv07_frameParams fParams; - size_t const frResult = ZSTDv07_getFrameParams(&fParams, src, srcSize); - if (frResult != 0) return 0; - return fParams.frameContentSize; - } -#endif - return 0; /* should not be possible */ -} - - -MEM_STATIC size_t ZSTD_decompressLegacy( - void* dst, size_t dstCapacity, - const void* src, size_t compressedSize, - const void* dict,size_t dictSize) -{ - U32 const version = ZSTD_isLegacy(src, compressedSize); - (void)dst; (void)dstCapacity; (void)dict; (void)dictSize; /* unused when ZSTD_LEGACY_SUPPORT >= 8 */ - switch(version) - { -#if (ZSTD_LEGACY_SUPPORT <= 1) - case 1 : - return ZSTDv01_decompress(dst, dstCapacity, src, compressedSize); -#endif -#if (ZSTD_LEGACY_SUPPORT <= 2) - case 2 : - return ZSTDv02_decompress(dst, dstCapacity, src, compressedSize); -#endif -#if (ZSTD_LEGACY_SUPPORT <= 3) - case 3 : - return ZSTDv03_decompress(dst, dstCapacity, src, compressedSize); -#endif -#if (ZSTD_LEGACY_SUPPORT <= 4) - case 4 : - return ZSTDv04_decompress(dst, dstCapacity, src, compressedSize); -#endif -#if (ZSTD_LEGACY_SUPPORT <= 5) - case 5 : - { size_t result; - ZSTDv05_DCtx* const zd = ZSTDv05_createDCtx(); - if (zd==NULL) return ERROR(memory_allocation); - result = ZSTDv05_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); - ZSTDv05_freeDCtx(zd); - return result; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 6) - case 6 : - { size_t result; - ZSTDv06_DCtx* const zd = ZSTDv06_createDCtx(); - if (zd==NULL) return ERROR(memory_allocation); - result = ZSTDv06_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); - ZSTDv06_freeDCtx(zd); - return result; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 7) - case 7 : - { size_t result; - ZSTDv07_DCtx* const zd = ZSTDv07_createDCtx(); - if (zd==NULL) return ERROR(memory_allocation); - result = ZSTDv07_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize); - ZSTDv07_freeDCtx(zd); - return result; - } -#endif - default : - return ERROR(prefix_unknown); - } -} - -MEM_STATIC ZSTD_frameSizeInfo ZSTD_findFrameSizeInfoLegacy(const void *src, size_t srcSize) -{ - ZSTD_frameSizeInfo frameSizeInfo; - U32 const version = ZSTD_isLegacy(src, srcSize); - switch(version) - { -#if (ZSTD_LEGACY_SUPPORT <= 1) - case 1 : - ZSTDv01_findFrameSizeInfoLegacy(src, srcSize, - &frameSizeInfo.compressedSize, - &frameSizeInfo.decompressedBound); - break; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 2) - case 2 : - ZSTDv02_findFrameSizeInfoLegacy(src, srcSize, - &frameSizeInfo.compressedSize, - &frameSizeInfo.decompressedBound); - break; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 3) - case 3 : - ZSTDv03_findFrameSizeInfoLegacy(src, srcSize, - &frameSizeInfo.compressedSize, - &frameSizeInfo.decompressedBound); - break; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 4) - case 4 : - ZSTDv04_findFrameSizeInfoLegacy(src, srcSize, - &frameSizeInfo.compressedSize, - &frameSizeInfo.decompressedBound); - break; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 5) - case 5 : - ZSTDv05_findFrameSizeInfoLegacy(src, srcSize, - &frameSizeInfo.compressedSize, - &frameSizeInfo.decompressedBound); - break; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 6) - case 6 : - ZSTDv06_findFrameSizeInfoLegacy(src, srcSize, - &frameSizeInfo.compressedSize, - &frameSizeInfo.decompressedBound); - break; -#endif -#if (ZSTD_LEGACY_SUPPORT <= 7) - case 7 : - ZSTDv07_findFrameSizeInfoLegacy(src, srcSize, - &frameSizeInfo.compressedSize, - &frameSizeInfo.decompressedBound); - break; -#endif - default : - frameSizeInfo.compressedSize = ERROR(prefix_unknown); - frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; - break; - } - if (!ZSTD_isError(frameSizeInfo.compressedSize) && frameSizeInfo.compressedSize > srcSize) { - frameSizeInfo.compressedSize = ERROR(srcSize_wrong); - frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR; - } - return frameSizeInfo; -} - -MEM_STATIC size_t ZSTD_findFrameCompressedSizeLegacy(const void *src, size_t srcSize) -{ - ZSTD_frameSizeInfo frameSizeInfo = ZSTD_findFrameSizeInfoLegacy(src, srcSize); - return frameSizeInfo.compressedSize; -} - -MEM_STATIC size_t ZSTD_freeLegacyStreamContext(void* legacyContext, U32 version) -{ - switch(version) - { - default : - case 1 : - case 2 : - case 3 : - (void)legacyContext; - return ERROR(version_unsupported); -#if (ZSTD_LEGACY_SUPPORT <= 4) - case 4 : return ZBUFFv04_freeDCtx((ZBUFFv04_DCtx*)legacyContext); -#endif -#if (ZSTD_LEGACY_SUPPORT <= 5) - case 5 : return ZBUFFv05_freeDCtx((ZBUFFv05_DCtx*)legacyContext); -#endif -#if (ZSTD_LEGACY_SUPPORT <= 6) - case 6 : return ZBUFFv06_freeDCtx((ZBUFFv06_DCtx*)legacyContext); -#endif -#if (ZSTD_LEGACY_SUPPORT <= 7) - case 7 : return ZBUFFv07_freeDCtx((ZBUFFv07_DCtx*)legacyContext); -#endif - } -} - - -MEM_STATIC size_t ZSTD_initLegacyStream(void** legacyContext, U32 prevVersion, U32 newVersion, - const void* dict, size_t dictSize) -{ - DEBUGLOG(5, "ZSTD_initLegacyStream for v0.%u", newVersion); - if (prevVersion != newVersion) ZSTD_freeLegacyStreamContext(*legacyContext, prevVersion); - switch(newVersion) - { - default : - case 1 : - case 2 : - case 3 : - (void)dict; (void)dictSize; - return 0; -#if (ZSTD_LEGACY_SUPPORT <= 4) - case 4 : - { - ZBUFFv04_DCtx* dctx = (prevVersion != newVersion) ? ZBUFFv04_createDCtx() : (ZBUFFv04_DCtx*)*legacyContext; - if (dctx==NULL) return ERROR(memory_allocation); - ZBUFFv04_decompressInit(dctx); - ZBUFFv04_decompressWithDictionary(dctx, dict, dictSize); - *legacyContext = dctx; - return 0; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 5) - case 5 : - { - ZBUFFv05_DCtx* dctx = (prevVersion != newVersion) ? ZBUFFv05_createDCtx() : (ZBUFFv05_DCtx*)*legacyContext; - if (dctx==NULL) return ERROR(memory_allocation); - ZBUFFv05_decompressInitDictionary(dctx, dict, dictSize); - *legacyContext = dctx; - return 0; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 6) - case 6 : - { - ZBUFFv06_DCtx* dctx = (prevVersion != newVersion) ? ZBUFFv06_createDCtx() : (ZBUFFv06_DCtx*)*legacyContext; - if (dctx==NULL) return ERROR(memory_allocation); - ZBUFFv06_decompressInitDictionary(dctx, dict, dictSize); - *legacyContext = dctx; - return 0; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 7) - case 7 : - { - ZBUFFv07_DCtx* dctx = (prevVersion != newVersion) ? ZBUFFv07_createDCtx() : (ZBUFFv07_DCtx*)*legacyContext; - if (dctx==NULL) return ERROR(memory_allocation); - ZBUFFv07_decompressInitDictionary(dctx, dict, dictSize); - *legacyContext = dctx; - return 0; - } -#endif - } -} - - - -MEM_STATIC size_t ZSTD_decompressLegacyStream(void* legacyContext, U32 version, - ZSTD_outBuffer* output, ZSTD_inBuffer* input) -{ - DEBUGLOG(5, "ZSTD_decompressLegacyStream for v0.%u", version); - switch(version) - { - default : - case 1 : - case 2 : - case 3 : - (void)legacyContext; (void)output; (void)input; - return ERROR(version_unsupported); -#if (ZSTD_LEGACY_SUPPORT <= 4) - case 4 : - { - ZBUFFv04_DCtx* dctx = (ZBUFFv04_DCtx*) legacyContext; - const void* src = (const char*)input->src + input->pos; - size_t readSize = input->size - input->pos; - void* dst = (char*)output->dst + output->pos; - size_t decodedSize = output->size - output->pos; - size_t const hintSize = ZBUFFv04_decompressContinue(dctx, dst, &decodedSize, src, &readSize); - output->pos += decodedSize; - input->pos += readSize; - return hintSize; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 5) - case 5 : - { - ZBUFFv05_DCtx* dctx = (ZBUFFv05_DCtx*) legacyContext; - const void* src = (const char*)input->src + input->pos; - size_t readSize = input->size - input->pos; - void* dst = (char*)output->dst + output->pos; - size_t decodedSize = output->size - output->pos; - size_t const hintSize = ZBUFFv05_decompressContinue(dctx, dst, &decodedSize, src, &readSize); - output->pos += decodedSize; - input->pos += readSize; - return hintSize; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 6) - case 6 : - { - ZBUFFv06_DCtx* dctx = (ZBUFFv06_DCtx*) legacyContext; - const void* src = (const char*)input->src + input->pos; - size_t readSize = input->size - input->pos; - void* dst = (char*)output->dst + output->pos; - size_t decodedSize = output->size - output->pos; - size_t const hintSize = ZBUFFv06_decompressContinue(dctx, dst, &decodedSize, src, &readSize); - output->pos += decodedSize; - input->pos += readSize; - return hintSize; - } -#endif -#if (ZSTD_LEGACY_SUPPORT <= 7) - case 7 : - { - ZBUFFv07_DCtx* dctx = (ZBUFFv07_DCtx*) legacyContext; - const void* src = (const char*)input->src + input->pos; - size_t readSize = input->size - input->pos; - void* dst = (char*)output->dst + output->pos; - size_t decodedSize = output->size - output->pos; - size_t const hintSize = ZBUFFv07_decompressContinue(dctx, dst, &decodedSize, src, &readSize); - output->pos += decodedSize; - input->pos += readSize; - return hintSize; - } -#endif - } -} - - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_LEGACY_H */ diff --git a/lib/SZ3/tools/zstd/legacy/zstd_v01.c b/lib/SZ3/tools/zstd/legacy/zstd_v01.c deleted file mode 100644 index eb236283..00000000 --- a/lib/SZ3/tools/zstd/legacy/zstd_v01.c +++ /dev/null @@ -1,2158 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -/****************************************** -* Includes -******************************************/ -#include /* size_t, ptrdiff_t */ -#include "zstd_v01.h" -#include "../common/error_private.h" - - -/****************************************** -* Static allocation -******************************************/ -/* You can statically allocate FSE CTable/DTable as a table of unsigned using below macro */ -#define FSE_DTABLE_SIZE_U32(maxTableLog) (1 + (1<2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.) -* Increasing memory usage improves compression ratio -* Reduced memory usage can improve speed, due to cache effect -* Recommended max value is 14, for 16KB, which nicely fits into Intel x86 L1 cache */ -#define FSE_MAX_MEMORY_USAGE 14 -#define FSE_DEFAULT_MEMORY_USAGE 13 - -/* FSE_MAX_SYMBOL_VALUE : -* Maximum symbol value authorized. -* Required for proper stack allocation */ -#define FSE_MAX_SYMBOL_VALUE 255 - - -/**************************************************************** -* template functions type & suffix -****************************************************************/ -#define FSE_FUNCTION_TYPE BYTE -#define FSE_FUNCTION_EXTENSION - - -/**************************************************************** -* Byte symbol type -****************************************************************/ -typedef struct -{ - unsigned short newState; - unsigned char symbol; - unsigned char nbBits; -} FSE_decode_t; /* size == U32 */ - - - -/**************************************************************** -* Compiler specifics -****************************************************************/ -#ifdef _MSC_VER /* Visual Studio */ -# define FORCE_INLINE static __forceinline -# include /* For Visual 2005 */ -# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ -# pragma warning(disable : 4214) /* disable: C4214: non-int bitfields */ -#else -# define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) -# if defined (__cplusplus) || defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ -# ifdef __GNUC__ -# define FORCE_INLINE static inline __attribute__((always_inline)) -# else -# define FORCE_INLINE static inline -# endif -# else -# define FORCE_INLINE static -# endif /* __STDC_VERSION__ */ -#endif - - -/**************************************************************** -* Includes -****************************************************************/ -#include /* malloc, free, qsort */ -#include /* memcpy, memset */ -#include /* printf (debug) */ - - -#ifndef MEM_ACCESS_MODULE -#define MEM_ACCESS_MODULE -/**************************************************************** -* Basic Types -*****************************************************************/ -#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ -# include -typedef uint8_t BYTE; -typedef uint16_t U16; -typedef int16_t S16; -typedef uint32_t U32; -typedef int32_t S32; -typedef uint64_t U64; -typedef int64_t S64; -#else -typedef unsigned char BYTE; -typedef unsigned short U16; -typedef signed short S16; -typedef unsigned int U32; -typedef signed int S32; -typedef unsigned long long U64; -typedef signed long long S64; -#endif - -#endif /* MEM_ACCESS_MODULE */ - -/**************************************************************** -* Memory I/O -*****************************************************************/ -/* FSE_FORCE_MEMORY_ACCESS - * By default, access to unaligned memory is controlled by `memcpy()`, which is safe and portable. - * Unfortunately, on some target/compiler combinations, the generated assembly is sub-optimal. - * The below switch allow to select different access method for improved performance. - * Method 0 (default) : use `memcpy()`. Safe and portable. - * Method 1 : `__packed` statement. It depends on compiler extension (ie, not portable). - * This method is safe if your compiler supports it, and *generally* as fast or faster than `memcpy`. - * Method 2 : direct access. This method is portable but violate C standard. - * It can generate buggy code on targets generating assembly depending on alignment. - * But in some circumstances, it's the only known way to get the most performance (ie GCC + ARMv6) - * See http://fastcompression.blogspot.fr/2015/08/accessing-unaligned-memory.html for details. - * Prefer these methods in priority order (0 > 1 > 2) - */ -#ifndef FSE_FORCE_MEMORY_ACCESS /* can be defined externally, on command line for example */ -# if defined(__GNUC__) && ( defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6T2__) ) -# define FSE_FORCE_MEMORY_ACCESS 2 -# elif (defined(__INTEL_COMPILER) && !defined(WIN32)) || \ - (defined(__GNUC__) && ( defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) )) -# define FSE_FORCE_MEMORY_ACCESS 1 -# endif -#endif - - -static unsigned FSE_32bits(void) -{ - return sizeof(void*)==4; -} - -static unsigned FSE_isLittleEndian(void) -{ - const union { U32 i; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */ - return one.c[0]; -} - -#if defined(FSE_FORCE_MEMORY_ACCESS) && (FSE_FORCE_MEMORY_ACCESS==2) - -static U16 FSE_read16(const void* memPtr) { return *(const U16*) memPtr; } -static U32 FSE_read32(const void* memPtr) { return *(const U32*) memPtr; } -static U64 FSE_read64(const void* memPtr) { return *(const U64*) memPtr; } - -#elif defined(FSE_FORCE_MEMORY_ACCESS) && (FSE_FORCE_MEMORY_ACCESS==1) - -/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */ -/* currently only defined for gcc and icc */ -typedef union { U16 u16; U32 u32; U64 u64; } __attribute__((packed)) unalign; - -static U16 FSE_read16(const void* ptr) { return ((const unalign*)ptr)->u16; } -static U32 FSE_read32(const void* ptr) { return ((const unalign*)ptr)->u32; } -static U64 FSE_read64(const void* ptr) { return ((const unalign*)ptr)->u64; } - -#else - -static U16 FSE_read16(const void* memPtr) -{ - U16 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -static U32 FSE_read32(const void* memPtr) -{ - U32 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -static U64 FSE_read64(const void* memPtr) -{ - U64 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -#endif /* FSE_FORCE_MEMORY_ACCESS */ - -static U16 FSE_readLE16(const void* memPtr) -{ - if (FSE_isLittleEndian()) - return FSE_read16(memPtr); - else - { - const BYTE* p = (const BYTE*)memPtr; - return (U16)(p[0] + (p[1]<<8)); - } -} - -static U32 FSE_readLE32(const void* memPtr) -{ - if (FSE_isLittleEndian()) - return FSE_read32(memPtr); - else - { - const BYTE* p = (const BYTE*)memPtr; - return (U32)((U32)p[0] + ((U32)p[1]<<8) + ((U32)p[2]<<16) + ((U32)p[3]<<24)); - } -} - - -static U64 FSE_readLE64(const void* memPtr) -{ - if (FSE_isLittleEndian()) - return FSE_read64(memPtr); - else - { - const BYTE* p = (const BYTE*)memPtr; - return (U64)((U64)p[0] + ((U64)p[1]<<8) + ((U64)p[2]<<16) + ((U64)p[3]<<24) - + ((U64)p[4]<<32) + ((U64)p[5]<<40) + ((U64)p[6]<<48) + ((U64)p[7]<<56)); - } -} - -static size_t FSE_readLEST(const void* memPtr) -{ - if (FSE_32bits()) - return (size_t)FSE_readLE32(memPtr); - else - return (size_t)FSE_readLE64(memPtr); -} - - - -/**************************************************************** -* Constants -*****************************************************************/ -#define FSE_MAX_TABLELOG (FSE_MAX_MEMORY_USAGE-2) -#define FSE_MAX_TABLESIZE (1U< FSE_TABLELOG_ABSOLUTE_MAX -#error "FSE_MAX_TABLELOG > FSE_TABLELOG_ABSOLUTE_MAX is not supported" -#endif - - -/**************************************************************** -* Error Management -****************************************************************/ -#define FSE_STATIC_ASSERT(c) { enum { FSE_static_assert = 1/(int)(!!(c)) }; } /* use only *after* variable declarations */ - - -/**************************************************************** -* Complex types -****************************************************************/ -typedef struct -{ - int deltaFindState; - U32 deltaNbBits; -} FSE_symbolCompressionTransform; /* total 8 bytes */ - -typedef U32 DTable_max_t[FSE_DTABLE_SIZE_U32(FSE_MAX_TABLELOG)]; - -/**************************************************************** -* Internal functions -****************************************************************/ -FORCE_INLINE unsigned FSE_highbit32 (U32 val) -{ -# if defined(_MSC_VER) /* Visual */ - unsigned long r; - _BitScanReverse ( &r, val ); - return (unsigned) r; -# elif defined(__GNUC__) && (GCC_VERSION >= 304) /* GCC Intrinsic */ - return __builtin_clz (val) ^ 31; -# else /* Software version */ - static const unsigned DeBruijnClz[32] = { 0, 9, 1, 10, 13, 21, 2, 29, 11, 14, 16, 18, 22, 25, 3, 30, 8, 12, 20, 28, 15, 17, 24, 7, 19, 27, 23, 6, 26, 5, 4, 31 }; - U32 v = val; - unsigned r; - v |= v >> 1; - v |= v >> 2; - v |= v >> 4; - v |= v >> 8; - v |= v >> 16; - r = DeBruijnClz[ (U32) (v * 0x07C4ACDDU) >> 27]; - return r; -# endif -} - - -/**************************************************************** -* Templates -****************************************************************/ -/* - designed to be included - for type-specific functions (template emulation in C) - Objective is to write these functions only once, for improved maintenance -*/ - -/* safety checks */ -#ifndef FSE_FUNCTION_EXTENSION -# error "FSE_FUNCTION_EXTENSION must be defined" -#endif -#ifndef FSE_FUNCTION_TYPE -# error "FSE_FUNCTION_TYPE must be defined" -#endif - -/* Function names */ -#define FSE_CAT(X,Y) X##Y -#define FSE_FUNCTION_NAME(X,Y) FSE_CAT(X,Y) -#define FSE_TYPE_NAME(X,Y) FSE_CAT(X,Y) - - - -static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } - -#define FSE_DECODE_TYPE FSE_decode_t - - -typedef struct { - U16 tableLog; - U16 fastMode; -} FSE_DTableHeader; /* sizeof U32 */ - -static size_t FSE_buildDTable -(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) -{ - void* ptr = dt; - FSE_DTableHeader* const DTableH = (FSE_DTableHeader*)ptr; - FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*)(ptr) + 1; /* because dt is unsigned, 32-bits aligned on 32-bits */ - const U32 tableSize = 1 << tableLog; - const U32 tableMask = tableSize-1; - const U32 step = FSE_tableStep(tableSize); - U16 symbolNext[FSE_MAX_SYMBOL_VALUE+1]; - U32 position = 0; - U32 highThreshold = tableSize-1; - const S16 largeLimit= (S16)(1 << (tableLog-1)); - U32 noLarge = 1; - U32 s; - - /* Sanity Checks */ - if (maxSymbolValue > FSE_MAX_SYMBOL_VALUE) return (size_t)-FSE_ERROR_maxSymbolValue_tooLarge; - if (tableLog > FSE_MAX_TABLELOG) return (size_t)-FSE_ERROR_tableLog_tooLarge; - - /* Init, lay down lowprob symbols */ - DTableH[0].tableLog = (U16)tableLog; - for (s=0; s<=maxSymbolValue; s++) - { - if (normalizedCounter[s]==-1) - { - tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; - symbolNext[s] = 1; - } - else - { - if (normalizedCounter[s] >= largeLimit) noLarge=0; - symbolNext[s] = normalizedCounter[s]; - } - } - - /* Spread symbols */ - for (s=0; s<=maxSymbolValue; s++) - { - int i; - for (i=0; i highThreshold) position = (position + step) & tableMask; /* lowprob area */ - } - } - - if (position!=0) return (size_t)-FSE_ERROR_GENERIC; /* position must reach all cells once, otherwise normalizedCounter is incorrect */ - - /* Build Decoding table */ - { - U32 i; - for (i=0; ifastMode = (U16)noLarge; - return 0; -} - - -/****************************************** -* FSE byte symbol -******************************************/ -#ifndef FSE_COMMONDEFS_ONLY - -static unsigned FSE_isError(size_t code) { return (code > (size_t)(-FSE_ERROR_maxCode)); } - -static short FSE_abs(short a) -{ - return a<0? -a : a; -} - - -/**************************************************************** -* Header bitstream management -****************************************************************/ -static size_t FSE_readNCount (short* normalizedCounter, unsigned* maxSVPtr, unsigned* tableLogPtr, - const void* headerBuffer, size_t hbSize) -{ - const BYTE* const istart = (const BYTE*) headerBuffer; - const BYTE* const iend = istart + hbSize; - const BYTE* ip = istart; - int nbBits; - int remaining; - int threshold; - U32 bitStream; - int bitCount; - unsigned charnum = 0; - int previous0 = 0; - - if (hbSize < 4) return (size_t)-FSE_ERROR_srcSize_wrong; - bitStream = FSE_readLE32(ip); - nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ - if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return (size_t)-FSE_ERROR_tableLog_tooLarge; - bitStream >>= 4; - bitCount = 4; - *tableLogPtr = nbBits; - remaining = (1<1) && (charnum<=*maxSVPtr)) - { - if (previous0) - { - unsigned n0 = charnum; - while ((bitStream & 0xFFFF) == 0xFFFF) - { - n0+=24; - if (ip < iend-5) - { - ip+=2; - bitStream = FSE_readLE32(ip) >> bitCount; - } - else - { - bitStream >>= 16; - bitCount+=16; - } - } - while ((bitStream & 3) == 3) - { - n0+=3; - bitStream>>=2; - bitCount+=2; - } - n0 += bitStream & 3; - bitCount += 2; - if (n0 > *maxSVPtr) return (size_t)-FSE_ERROR_maxSymbolValue_tooSmall; - while (charnum < n0) normalizedCounter[charnum++] = 0; - if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) - { - ip += bitCount>>3; - bitCount &= 7; - bitStream = FSE_readLE32(ip) >> bitCount; - } - else - bitStream >>= 2; - } - { - const short max = (short)((2*threshold-1)-remaining); - short count; - - if ((bitStream & (threshold-1)) < (U32)max) - { - count = (short)(bitStream & (threshold-1)); - bitCount += nbBits-1; - } - else - { - count = (short)(bitStream & (2*threshold-1)); - if (count >= threshold) count -= max; - bitCount += nbBits; - } - - count--; /* extra accuracy */ - remaining -= FSE_abs(count); - normalizedCounter[charnum++] = count; - previous0 = !count; - while (remaining < threshold) - { - nbBits--; - threshold >>= 1; - } - - { - if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) - { - ip += bitCount>>3; - bitCount &= 7; - } - else - { - bitCount -= (int)(8 * (iend - 4 - ip)); - ip = iend - 4; - } - bitStream = FSE_readLE32(ip) >> (bitCount & 31); - } - } - } - if (remaining != 1) return (size_t)-FSE_ERROR_GENERIC; - *maxSVPtr = charnum-1; - - ip += (bitCount+7)>>3; - if ((size_t)(ip-istart) > hbSize) return (size_t)-FSE_ERROR_srcSize_wrong; - return ip-istart; -} - - -/********************************************************* -* Decompression (Byte symbols) -*********************************************************/ -static size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) -{ - void* ptr = dt; - FSE_DTableHeader* const DTableH = (FSE_DTableHeader*)ptr; - FSE_decode_t* const cell = (FSE_decode_t*)(ptr) + 1; /* because dt is unsigned */ - - DTableH->tableLog = 0; - DTableH->fastMode = 0; - - cell->newState = 0; - cell->symbol = symbolValue; - cell->nbBits = 0; - - return 0; -} - - -static size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits) -{ - void* ptr = dt; - FSE_DTableHeader* const DTableH = (FSE_DTableHeader*)ptr; - FSE_decode_t* const dinfo = (FSE_decode_t*)(ptr) + 1; /* because dt is unsigned */ - const unsigned tableSize = 1 << nbBits; - const unsigned tableMask = tableSize - 1; - const unsigned maxSymbolValue = tableMask; - unsigned s; - - /* Sanity checks */ - if (nbBits < 1) return (size_t)-FSE_ERROR_GENERIC; /* min size */ - - /* Build Decoding Table */ - DTableH->tableLog = (U16)nbBits; - DTableH->fastMode = 1; - for (s=0; s<=maxSymbolValue; s++) - { - dinfo[s].newState = 0; - dinfo[s].symbol = (BYTE)s; - dinfo[s].nbBits = (BYTE)nbBits; - } - - return 0; -} - - -/* FSE_initDStream - * Initialize a FSE_DStream_t. - * srcBuffer must point at the beginning of an FSE block. - * The function result is the size of the FSE_block (== srcSize). - * If srcSize is too small, the function will return an errorCode; - */ -static size_t FSE_initDStream(FSE_DStream_t* bitD, const void* srcBuffer, size_t srcSize) -{ - if (srcSize < 1) return (size_t)-FSE_ERROR_srcSize_wrong; - - if (srcSize >= sizeof(size_t)) - { - U32 contain32; - bitD->start = (const char*)srcBuffer; - bitD->ptr = (const char*)srcBuffer + srcSize - sizeof(size_t); - bitD->bitContainer = FSE_readLEST(bitD->ptr); - contain32 = ((const BYTE*)srcBuffer)[srcSize-1]; - if (contain32 == 0) return (size_t)-FSE_ERROR_GENERIC; /* stop bit not present */ - bitD->bitsConsumed = 8 - FSE_highbit32(contain32); - } - else - { - U32 contain32; - bitD->start = (const char*)srcBuffer; - bitD->ptr = bitD->start; - bitD->bitContainer = *(const BYTE*)(bitD->start); - switch(srcSize) - { - case 7: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[6]) << (sizeof(size_t)*8 - 16); - /* fallthrough */ - case 6: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[5]) << (sizeof(size_t)*8 - 24); - /* fallthrough */ - case 5: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[4]) << (sizeof(size_t)*8 - 32); - /* fallthrough */ - case 4: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[3]) << 24; - /* fallthrough */ - case 3: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[2]) << 16; - /* fallthrough */ - case 2: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[1]) << 8; - /* fallthrough */ - default:; - } - contain32 = ((const BYTE*)srcBuffer)[srcSize-1]; - if (contain32 == 0) return (size_t)-FSE_ERROR_GENERIC; /* stop bit not present */ - bitD->bitsConsumed = 8 - FSE_highbit32(contain32); - bitD->bitsConsumed += (U32)(sizeof(size_t) - srcSize)*8; - } - - return srcSize; -} - - -/*!FSE_lookBits - * Provides next n bits from the bitContainer. - * bitContainer is not modified (bits are still present for next read/look) - * On 32-bits, maxNbBits==25 - * On 64-bits, maxNbBits==57 - * return : value extracted. - */ -static size_t FSE_lookBits(FSE_DStream_t* bitD, U32 nbBits) -{ - const U32 bitMask = sizeof(bitD->bitContainer)*8 - 1; - return ((bitD->bitContainer << (bitD->bitsConsumed & bitMask)) >> 1) >> ((bitMask-nbBits) & bitMask); -} - -static size_t FSE_lookBitsFast(FSE_DStream_t* bitD, U32 nbBits) /* only if nbBits >= 1 !! */ -{ - const U32 bitMask = sizeof(bitD->bitContainer)*8 - 1; - return (bitD->bitContainer << (bitD->bitsConsumed & bitMask)) >> (((bitMask+1)-nbBits) & bitMask); -} - -static void FSE_skipBits(FSE_DStream_t* bitD, U32 nbBits) -{ - bitD->bitsConsumed += nbBits; -} - - -/*!FSE_readBits - * Read next n bits from the bitContainer. - * On 32-bits, don't read more than maxNbBits==25 - * On 64-bits, don't read more than maxNbBits==57 - * Use the fast variant *only* if n >= 1. - * return : value extracted. - */ -static size_t FSE_readBits(FSE_DStream_t* bitD, U32 nbBits) -{ - size_t value = FSE_lookBits(bitD, nbBits); - FSE_skipBits(bitD, nbBits); - return value; -} - -static size_t FSE_readBitsFast(FSE_DStream_t* bitD, U32 nbBits) /* only if nbBits >= 1 !! */ -{ - size_t value = FSE_lookBitsFast(bitD, nbBits); - FSE_skipBits(bitD, nbBits); - return value; -} - -static unsigned FSE_reloadDStream(FSE_DStream_t* bitD) -{ - if (bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8)) /* should never happen */ - return FSE_DStream_tooFar; - - if (bitD->ptr >= bitD->start + sizeof(bitD->bitContainer)) - { - bitD->ptr -= bitD->bitsConsumed >> 3; - bitD->bitsConsumed &= 7; - bitD->bitContainer = FSE_readLEST(bitD->ptr); - return FSE_DStream_unfinished; - } - if (bitD->ptr == bitD->start) - { - if (bitD->bitsConsumed < sizeof(bitD->bitContainer)*8) return FSE_DStream_endOfBuffer; - return FSE_DStream_completed; - } - { - U32 nbBytes = bitD->bitsConsumed >> 3; - U32 result = FSE_DStream_unfinished; - if (bitD->ptr - nbBytes < bitD->start) - { - nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */ - result = FSE_DStream_endOfBuffer; - } - bitD->ptr -= nbBytes; - bitD->bitsConsumed -= nbBytes*8; - bitD->bitContainer = FSE_readLEST(bitD->ptr); /* reminder : srcSize > sizeof(bitD) */ - return result; - } -} - - -static void FSE_initDState(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD, const FSE_DTable* dt) -{ - const void* ptr = dt; - const FSE_DTableHeader* const DTableH = (const FSE_DTableHeader*)ptr; - DStatePtr->state = FSE_readBits(bitD, DTableH->tableLog); - FSE_reloadDStream(bitD); - DStatePtr->table = dt + 1; -} - -static BYTE FSE_decodeSymbol(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD) -{ - const FSE_decode_t DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; - const U32 nbBits = DInfo.nbBits; - BYTE symbol = DInfo.symbol; - size_t lowBits = FSE_readBits(bitD, nbBits); - - DStatePtr->state = DInfo.newState + lowBits; - return symbol; -} - -static BYTE FSE_decodeSymbolFast(FSE_DState_t* DStatePtr, FSE_DStream_t* bitD) -{ - const FSE_decode_t DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; - const U32 nbBits = DInfo.nbBits; - BYTE symbol = DInfo.symbol; - size_t lowBits = FSE_readBitsFast(bitD, nbBits); - - DStatePtr->state = DInfo.newState + lowBits; - return symbol; -} - -/* FSE_endOfDStream - Tells if bitD has reached end of bitStream or not */ - -static unsigned FSE_endOfDStream(const FSE_DStream_t* bitD) -{ - return ((bitD->ptr == bitD->start) && (bitD->bitsConsumed == sizeof(bitD->bitContainer)*8)); -} - -static unsigned FSE_endOfDState(const FSE_DState_t* DStatePtr) -{ - return DStatePtr->state == 0; -} - - -FORCE_INLINE size_t FSE_decompress_usingDTable_generic( - void* dst, size_t maxDstSize, - const void* cSrc, size_t cSrcSize, - const FSE_DTable* dt, const unsigned fast) -{ - BYTE* const ostart = (BYTE*) dst; - BYTE* op = ostart; - BYTE* const omax = op + maxDstSize; - BYTE* const olimit = omax-3; - - FSE_DStream_t bitD; - FSE_DState_t state1; - FSE_DState_t state2; - size_t errorCode; - - /* Init */ - errorCode = FSE_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ - if (FSE_isError(errorCode)) return errorCode; - - FSE_initDState(&state1, &bitD, dt); - FSE_initDState(&state2, &bitD, dt); - -#define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(statePtr, &bitD) - - /* 4 symbols per loop */ - for ( ; (FSE_reloadDStream(&bitD)==FSE_DStream_unfinished) && (op sizeof(bitD.bitContainer)*8) /* This test must be static */ - FSE_reloadDStream(&bitD); - - op[1] = FSE_GETSYMBOL(&state2); - - if (FSE_MAX_TABLELOG*4+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */ - { if (FSE_reloadDStream(&bitD) > FSE_DStream_unfinished) { op+=2; break; } } - - op[2] = FSE_GETSYMBOL(&state1); - - if (FSE_MAX_TABLELOG*2+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */ - FSE_reloadDStream(&bitD); - - op[3] = FSE_GETSYMBOL(&state2); - } - - /* tail */ - /* note : FSE_reloadDStream(&bitD) >= FSE_DStream_partiallyFilled; Ends at exactly FSE_DStream_completed */ - while (1) - { - if ( (FSE_reloadDStream(&bitD)>FSE_DStream_completed) || (op==omax) || (FSE_endOfDStream(&bitD) && (fast || FSE_endOfDState(&state1))) ) - break; - - *op++ = FSE_GETSYMBOL(&state1); - - if ( (FSE_reloadDStream(&bitD)>FSE_DStream_completed) || (op==omax) || (FSE_endOfDStream(&bitD) && (fast || FSE_endOfDState(&state2))) ) - break; - - *op++ = FSE_GETSYMBOL(&state2); - } - - /* end ? */ - if (FSE_endOfDStream(&bitD) && FSE_endOfDState(&state1) && FSE_endOfDState(&state2)) - return op-ostart; - - if (op==omax) return (size_t)-FSE_ERROR_dstSize_tooSmall; /* dst buffer is full, but cSrc unfinished */ - - return (size_t)-FSE_ERROR_corruptionDetected; -} - - -static size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, - const void* cSrc, size_t cSrcSize, - const FSE_DTable* dt) -{ - FSE_DTableHeader DTableH; - memcpy(&DTableH, dt, sizeof(DTableH)); /* memcpy() into local variable, to avoid strict aliasing warning */ - - /* select fast mode (static) */ - if (DTableH.fastMode) return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 1); - return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 0); -} - - -static size_t FSE_decompress(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize) -{ - const BYTE* const istart = (const BYTE*)cSrc; - const BYTE* ip = istart; - short counting[FSE_MAX_SYMBOL_VALUE+1]; - DTable_max_t dt; /* Static analyzer seems unable to understand this table will be properly initialized later */ - unsigned tableLog; - unsigned maxSymbolValue = FSE_MAX_SYMBOL_VALUE; - size_t errorCode; - - if (cSrcSize<2) return (size_t)-FSE_ERROR_srcSize_wrong; /* too small input size */ - - /* normal FSE decoding mode */ - errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); - if (FSE_isError(errorCode)) return errorCode; - if (errorCode >= cSrcSize) return (size_t)-FSE_ERROR_srcSize_wrong; /* too small input size */ - ip += errorCode; - cSrcSize -= errorCode; - - errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); - if (FSE_isError(errorCode)) return errorCode; - - /* always return, even if it is an error code */ - return FSE_decompress_usingDTable (dst, maxDstSize, ip, cSrcSize, dt); -} - - - -/* ******************************************************* -* Huff0 : Huffman block compression -*********************************************************/ -#define HUF_MAX_SYMBOL_VALUE 255 -#define HUF_DEFAULT_TABLELOG 12 /* used by default, when not specified */ -#define HUF_MAX_TABLELOG 12 /* max possible tableLog; for allocation purpose; can be modified */ -#define HUF_ABSOLUTEMAX_TABLELOG 16 /* absolute limit of HUF_MAX_TABLELOG. Beyond that value, code does not work */ -#if (HUF_MAX_TABLELOG > HUF_ABSOLUTEMAX_TABLELOG) -# error "HUF_MAX_TABLELOG is too large !" -#endif - -typedef struct HUF_CElt_s { - U16 val; - BYTE nbBits; -} HUF_CElt ; - -typedef struct nodeElt_s { - U32 count; - U16 parent; - BYTE byte; - BYTE nbBits; -} nodeElt; - - -/* ******************************************************* -* Huff0 : Huffman block decompression -*********************************************************/ -typedef struct { - BYTE byte; - BYTE nbBits; -} HUF_DElt; - -static size_t HUF_readDTable (U16* DTable, const void* src, size_t srcSize) -{ - BYTE huffWeight[HUF_MAX_SYMBOL_VALUE + 1]; - U32 rankVal[HUF_ABSOLUTEMAX_TABLELOG + 1]; /* large enough for values from 0 to 16 */ - U32 weightTotal; - U32 maxBits; - const BYTE* ip = (const BYTE*) src; - size_t iSize; - size_t oSize; - U32 n; - U32 nextRankStart; - void* ptr = DTable+1; - HUF_DElt* const dt = (HUF_DElt*)ptr; - - if (!srcSize) return (size_t)-FSE_ERROR_srcSize_wrong; - iSize = ip[0]; - - FSE_STATIC_ASSERT(sizeof(HUF_DElt) == sizeof(U16)); /* if compilation fails here, assertion is false */ - //memset(huffWeight, 0, sizeof(huffWeight)); /* should not be necessary, but some analyzer complain ... */ - if (iSize >= 128) /* special header */ - { - if (iSize >= (242)) /* RLE */ - { - static int l[14] = { 1, 2, 3, 4, 7, 8, 15, 16, 31, 32, 63, 64, 127, 128 }; - oSize = l[iSize-242]; - memset(huffWeight, 1, sizeof(huffWeight)); - iSize = 0; - } - else /* Incompressible */ - { - oSize = iSize - 127; - iSize = ((oSize+1)/2); - if (iSize+1 > srcSize) return (size_t)-FSE_ERROR_srcSize_wrong; - ip += 1; - for (n=0; n> 4; - huffWeight[n+1] = ip[n/2] & 15; - } - } - } - else /* header compressed with FSE (normal case) */ - { - if (iSize+1 > srcSize) return (size_t)-FSE_ERROR_srcSize_wrong; - oSize = FSE_decompress(huffWeight, HUF_MAX_SYMBOL_VALUE, ip+1, iSize); /* max 255 values decoded, last one is implied */ - if (FSE_isError(oSize)) return oSize; - } - - /* collect weight stats */ - memset(rankVal, 0, sizeof(rankVal)); - weightTotal = 0; - for (n=0; n= HUF_ABSOLUTEMAX_TABLELOG) return (size_t)-FSE_ERROR_corruptionDetected; - rankVal[huffWeight[n]]++; - weightTotal += (1 << huffWeight[n]) >> 1; - } - if (weightTotal == 0) return (size_t)-FSE_ERROR_corruptionDetected; - - /* get last non-null symbol weight (implied, total must be 2^n) */ - maxBits = FSE_highbit32(weightTotal) + 1; - if (maxBits > DTable[0]) return (size_t)-FSE_ERROR_tableLog_tooLarge; /* DTable is too small */ - DTable[0] = (U16)maxBits; - { - U32 total = 1 << maxBits; - U32 rest = total - weightTotal; - U32 verif = 1 << FSE_highbit32(rest); - U32 lastWeight = FSE_highbit32(rest) + 1; - if (verif != rest) return (size_t)-FSE_ERROR_corruptionDetected; /* last value must be a clean power of 2 */ - huffWeight[oSize] = (BYTE)lastWeight; - rankVal[lastWeight]++; - } - - /* check tree construction validity */ - if ((rankVal[1] < 2) || (rankVal[1] & 1)) return (size_t)-FSE_ERROR_corruptionDetected; /* by construction : at least 2 elts of rank 1, must be even */ - - /* Prepare ranks */ - nextRankStart = 0; - for (n=1; n<=maxBits; n++) - { - U32 current = nextRankStart; - nextRankStart += (rankVal[n] << (n-1)); - rankVal[n] = current; - } - - /* fill DTable */ - for (n=0; n<=oSize; n++) - { - const U32 w = huffWeight[n]; - const U32 length = (1 << w) >> 1; - U32 i; - HUF_DElt D; - D.byte = (BYTE)n; D.nbBits = (BYTE)(maxBits + 1 - w); - for (i = rankVal[w]; i < rankVal[w] + length; i++) - dt[i] = D; - rankVal[w] += length; - } - - return iSize+1; -} - - -static BYTE HUF_decodeSymbol(FSE_DStream_t* Dstream, const HUF_DElt* dt, const U32 dtLog) -{ - const size_t val = FSE_lookBitsFast(Dstream, dtLog); /* note : dtLog >= 1 */ - const BYTE c = dt[val].byte; - FSE_skipBits(Dstream, dt[val].nbBits); - return c; -} - -static size_t HUF_decompress_usingDTable( /* -3% slower when non static */ - void* dst, size_t maxDstSize, - const void* cSrc, size_t cSrcSize, - const U16* DTable) -{ - if (cSrcSize < 6) return (size_t)-FSE_ERROR_srcSize_wrong; - { - BYTE* const ostart = (BYTE*) dst; - BYTE* op = ostart; - BYTE* const omax = op + maxDstSize; - BYTE* const olimit = maxDstSize < 15 ? op : omax-15; - - const void* ptr = DTable; - const HUF_DElt* const dt = (const HUF_DElt*)(ptr)+1; - const U32 dtLog = DTable[0]; - size_t errorCode; - U32 reloadStatus; - - /* Init */ - - const U16* jumpTable = (const U16*)cSrc; - const size_t length1 = FSE_readLE16(jumpTable); - const size_t length2 = FSE_readLE16(jumpTable+1); - const size_t length3 = FSE_readLE16(jumpTable+2); - const size_t length4 = cSrcSize - 6 - length1 - length2 - length3; /* check coherency !! */ - const char* const start1 = (const char*)(cSrc) + 6; - const char* const start2 = start1 + length1; - const char* const start3 = start2 + length2; - const char* const start4 = start3 + length3; - FSE_DStream_t bitD1, bitD2, bitD3, bitD4; - - if (length1+length2+length3+6 >= cSrcSize) return (size_t)-FSE_ERROR_srcSize_wrong; - - errorCode = FSE_initDStream(&bitD1, start1, length1); - if (FSE_isError(errorCode)) return errorCode; - errorCode = FSE_initDStream(&bitD2, start2, length2); - if (FSE_isError(errorCode)) return errorCode; - errorCode = FSE_initDStream(&bitD3, start3, length3); - if (FSE_isError(errorCode)) return errorCode; - errorCode = FSE_initDStream(&bitD4, start4, length4); - if (FSE_isError(errorCode)) return errorCode; - - reloadStatus=FSE_reloadDStream(&bitD2); - - /* 16 symbols per loop */ - for ( ; (reloadStatus12)) FSE_reloadDStream(&Dstream) - - #define HUF_DECODE_SYMBOL_2(n, Dstream) \ - op[n] = HUF_decodeSymbol(&Dstream, dt, dtLog); \ - if (FSE_32bits()) FSE_reloadDStream(&Dstream) - - HUF_DECODE_SYMBOL_1( 0, bitD1); - HUF_DECODE_SYMBOL_1( 1, bitD2); - HUF_DECODE_SYMBOL_1( 2, bitD3); - HUF_DECODE_SYMBOL_1( 3, bitD4); - HUF_DECODE_SYMBOL_2( 4, bitD1); - HUF_DECODE_SYMBOL_2( 5, bitD2); - HUF_DECODE_SYMBOL_2( 6, bitD3); - HUF_DECODE_SYMBOL_2( 7, bitD4); - HUF_DECODE_SYMBOL_1( 8, bitD1); - HUF_DECODE_SYMBOL_1( 9, bitD2); - HUF_DECODE_SYMBOL_1(10, bitD3); - HUF_DECODE_SYMBOL_1(11, bitD4); - HUF_DECODE_SYMBOL_0(12, bitD1); - HUF_DECODE_SYMBOL_0(13, bitD2); - HUF_DECODE_SYMBOL_0(14, bitD3); - HUF_DECODE_SYMBOL_0(15, bitD4); - } - - if (reloadStatus!=FSE_DStream_completed) /* not complete : some bitStream might be FSE_DStream_unfinished */ - return (size_t)-FSE_ERROR_corruptionDetected; - - /* tail */ - { - /* bitTail = bitD1; */ /* *much* slower : -20% !??! */ - FSE_DStream_t bitTail; - bitTail.ptr = bitD1.ptr; - bitTail.bitsConsumed = bitD1.bitsConsumed; - bitTail.bitContainer = bitD1.bitContainer; /* required in case of FSE_DStream_endOfBuffer */ - bitTail.start = start1; - for ( ; (FSE_reloadDStream(&bitTail) < FSE_DStream_completed) && (op= cSrcSize) return (size_t)-FSE_ERROR_srcSize_wrong; - ip += errorCode; - cSrcSize -= errorCode; - - return HUF_decompress_usingDTable (dst, maxDstSize, ip, cSrcSize, DTable); -} - - -#endif /* FSE_COMMONDEFS_ONLY */ - -/* - zstd - standard compression library - Copyright (C) 2014-2015, Yann Collet. - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - zstd source repository : https://github.com/Cyan4973/zstd - - ztsd public forum : https://groups.google.com/forum/#!forum/lz4c -*/ - -/**************************************************************** -* Tuning parameters -*****************************************************************/ -/* MEMORY_USAGE : -* Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.) -* Increasing memory usage improves compression ratio -* Reduced memory usage can improve speed, due to cache effect */ -#define ZSTD_MEMORY_USAGE 17 - - -/************************************** - CPU Feature Detection -**************************************/ -/* - * Automated efficient unaligned memory access detection - * Based on known hardware architectures - * This list will be updated thanks to feedbacks - */ -#if defined(CPU_HAS_EFFICIENT_UNALIGNED_MEMORY_ACCESS) \ - || defined(__ARM_FEATURE_UNALIGNED) \ - || defined(__i386__) || defined(__x86_64__) \ - || defined(_M_IX86) || defined(_M_X64) \ - || defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_8__) \ - || (defined(_M_ARM) && (_M_ARM >= 7)) -# define ZSTD_UNALIGNED_ACCESS 1 -#else -# define ZSTD_UNALIGNED_ACCESS 0 -#endif - - -/******************************************************** -* Includes -*********************************************************/ -#include /* calloc */ -#include /* memcpy, memmove */ -#include /* debug : printf */ - - -/******************************************************** -* Compiler specifics -*********************************************************/ -#ifdef __AVX2__ -# include /* AVX2 intrinsics */ -#endif - -#ifdef _MSC_VER /* Visual Studio */ -# include /* For Visual 2005 */ -# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ -# pragma warning(disable : 4324) /* disable: C4324: padded structure */ -#endif - - -#ifndef MEM_ACCESS_MODULE -#define MEM_ACCESS_MODULE -/******************************************************** -* Basic Types -*********************************************************/ -#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ -# include -typedef uint8_t BYTE; -typedef uint16_t U16; -typedef int16_t S16; -typedef uint32_t U32; -typedef int32_t S32; -typedef uint64_t U64; -#else -typedef unsigned char BYTE; -typedef unsigned short U16; -typedef signed short S16; -typedef unsigned int U32; -typedef signed int S32; -typedef unsigned long long U64; -#endif - -#endif /* MEM_ACCESS_MODULE */ - - -/******************************************************** -* Constants -*********************************************************/ -static const U32 ZSTD_magicNumber = 0xFD2FB51E; /* 3rd version : seqNb header */ - -#define HASH_LOG (ZSTD_MEMORY_USAGE - 2) -#define HASH_TABLESIZE (1 << HASH_LOG) -#define HASH_MASK (HASH_TABLESIZE - 1) - -#define KNUTH 2654435761 - -#define BIT7 128 -#define BIT6 64 -#define BIT5 32 -#define BIT4 16 - -#define KB *(1 <<10) -#define MB *(1 <<20) -#define GB *(1U<<30) - -#define BLOCKSIZE (128 KB) /* define, for static allocation */ - -#define WORKPLACESIZE (BLOCKSIZE*3) -#define MINMATCH 4 -#define MLbits 7 -#define LLbits 6 -#define Offbits 5 -#define MaxML ((1<>3]; -#else - U32 hashTable[HASH_TABLESIZE]; -#endif - BYTE buffer[WORKPLACESIZE]; -} cctxi_t; - - - - -/************************************** -* Error Management -**************************************/ -/* published entry point */ -unsigned ZSTDv01_isError(size_t code) { return ERR_isError(code); } - - -/************************************** -* Tool functions -**************************************/ -#define ZSTD_VERSION_MAJOR 0 /* for breaking interface changes */ -#define ZSTD_VERSION_MINOR 1 /* for new (non-breaking) interface capabilities */ -#define ZSTD_VERSION_RELEASE 3 /* for tweaks, bug-fixes, or development */ -#define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE) - -/************************************************************** -* Decompression code -**************************************************************/ - -static size_t ZSTDv01_getcBlockSize(const void* src, size_t srcSize, blockProperties_t* bpPtr) -{ - const BYTE* const in = (const BYTE* const)src; - BYTE headerFlags; - U32 cSize; - - if (srcSize < 3) return ERROR(srcSize_wrong); - - headerFlags = *in; - cSize = in[2] + (in[1]<<8) + ((in[0] & 7)<<16); - - bpPtr->blockType = (blockType_t)(headerFlags >> 6); - bpPtr->origSize = (bpPtr->blockType == bt_rle) ? cSize : 0; - - if (bpPtr->blockType == bt_end) return 0; - if (bpPtr->blockType == bt_rle) return 1; - return cSize; -} - - -static size_t ZSTD_copyUncompressedBlock(void* dst, size_t maxDstSize, const void* src, size_t srcSize) -{ - if (srcSize > maxDstSize) return ERROR(dstSize_tooSmall); - if (srcSize > 0) { - memcpy(dst, src, srcSize); - } - return srcSize; -} - - -static size_t ZSTD_decompressLiterals(void* ctx, - void* dst, size_t maxDstSize, - const void* src, size_t srcSize) -{ - BYTE* op = (BYTE*)dst; - BYTE* const oend = op + maxDstSize; - const BYTE* ip = (const BYTE*)src; - size_t errorCode; - size_t litSize; - - /* check : minimum 2, for litSize, +1, for content */ - if (srcSize <= 3) return ERROR(corruption_detected); - - litSize = ip[1] + (ip[0]<<8); - litSize += ((ip[-3] >> 3) & 7) << 16; /* mmmmh.... */ - op = oend - litSize; - - (void)ctx; - if (litSize > maxDstSize) return ERROR(dstSize_tooSmall); - errorCode = HUF_decompress(op, litSize, ip+2, srcSize-2); - if (FSE_isError(errorCode)) return ERROR(GENERIC); - return litSize; -} - - -static size_t ZSTDv01_decodeLiteralsBlock(void* ctx, - void* dst, size_t maxDstSize, - const BYTE** litStart, size_t* litSize, - const void* src, size_t srcSize) -{ - const BYTE* const istart = (const BYTE* const)src; - const BYTE* ip = istart; - BYTE* const ostart = (BYTE* const)dst; - BYTE* const oend = ostart + maxDstSize; - blockProperties_t litbp; - - size_t litcSize = ZSTDv01_getcBlockSize(src, srcSize, &litbp); - if (ZSTDv01_isError(litcSize)) return litcSize; - if (litcSize > srcSize - ZSTD_blockHeaderSize) return ERROR(srcSize_wrong); - ip += ZSTD_blockHeaderSize; - - switch(litbp.blockType) - { - case bt_raw: - *litStart = ip; - ip += litcSize; - *litSize = litcSize; - break; - case bt_rle: - { - size_t rleSize = litbp.origSize; - if (rleSize>maxDstSize) return ERROR(dstSize_tooSmall); - if (!srcSize) return ERROR(srcSize_wrong); - if (rleSize > 0) { - memset(oend - rleSize, *ip, rleSize); - } - *litStart = oend - rleSize; - *litSize = rleSize; - ip++; - break; - } - case bt_compressed: - { - size_t decodedLitSize = ZSTD_decompressLiterals(ctx, dst, maxDstSize, ip, litcSize); - if (ZSTDv01_isError(decodedLitSize)) return decodedLitSize; - *litStart = oend - decodedLitSize; - *litSize = decodedLitSize; - ip += litcSize; - break; - } - case bt_end: - default: - return ERROR(GENERIC); - } - - return ip-istart; -} - - -static size_t ZSTDv01_decodeSeqHeaders(int* nbSeq, const BYTE** dumpsPtr, size_t* dumpsLengthPtr, - FSE_DTable* DTableLL, FSE_DTable* DTableML, FSE_DTable* DTableOffb, - const void* src, size_t srcSize) -{ - const BYTE* const istart = (const BYTE* const)src; - const BYTE* ip = istart; - const BYTE* const iend = istart + srcSize; - U32 LLtype, Offtype, MLtype; - U32 LLlog, Offlog, MLlog; - size_t dumpsLength; - - /* check */ - if (srcSize < 5) return ERROR(srcSize_wrong); - - /* SeqHead */ - *nbSeq = ZSTD_readLE16(ip); ip+=2; - LLtype = *ip >> 6; - Offtype = (*ip >> 4) & 3; - MLtype = (*ip >> 2) & 3; - if (*ip & 2) - { - dumpsLength = ip[2]; - dumpsLength += ip[1] << 8; - ip += 3; - } - else - { - dumpsLength = ip[1]; - dumpsLength += (ip[0] & 1) << 8; - ip += 2; - } - *dumpsPtr = ip; - ip += dumpsLength; - *dumpsLengthPtr = dumpsLength; - - /* check */ - if (ip > iend-3) return ERROR(srcSize_wrong); /* min : all 3 are "raw", hence no header, but at least xxLog bits per type */ - - /* sequences */ - { - S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */ - size_t headerSize; - - /* Build DTables */ - switch(LLtype) - { - case bt_rle : - LLlog = 0; - FSE_buildDTable_rle(DTableLL, *ip++); break; - case bt_raw : - LLlog = LLbits; - FSE_buildDTable_raw(DTableLL, LLbits); break; - default : - { U32 max = MaxLL; - headerSize = FSE_readNCount(norm, &max, &LLlog, ip, iend-ip); - if (FSE_isError(headerSize)) return ERROR(GENERIC); - if (LLlog > LLFSELog) return ERROR(corruption_detected); - ip += headerSize; - FSE_buildDTable(DTableLL, norm, max, LLlog); - } } - - switch(Offtype) - { - case bt_rle : - Offlog = 0; - if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLog bits */ - FSE_buildDTable_rle(DTableOffb, *ip++); break; - case bt_raw : - Offlog = Offbits; - FSE_buildDTable_raw(DTableOffb, Offbits); break; - default : - { U32 max = MaxOff; - headerSize = FSE_readNCount(norm, &max, &Offlog, ip, iend-ip); - if (FSE_isError(headerSize)) return ERROR(GENERIC); - if (Offlog > OffFSELog) return ERROR(corruption_detected); - ip += headerSize; - FSE_buildDTable(DTableOffb, norm, max, Offlog); - } } - - switch(MLtype) - { - case bt_rle : - MLlog = 0; - if (ip > iend-2) return ERROR(srcSize_wrong); /* min : "raw", hence no header, but at least xxLog bits */ - FSE_buildDTable_rle(DTableML, *ip++); break; - case bt_raw : - MLlog = MLbits; - FSE_buildDTable_raw(DTableML, MLbits); break; - default : - { U32 max = MaxML; - headerSize = FSE_readNCount(norm, &max, &MLlog, ip, iend-ip); - if (FSE_isError(headerSize)) return ERROR(GENERIC); - if (MLlog > MLFSELog) return ERROR(corruption_detected); - ip += headerSize; - FSE_buildDTable(DTableML, norm, max, MLlog); - } } } - - return ip-istart; -} - - -typedef struct { - size_t litLength; - size_t offset; - size_t matchLength; -} seq_t; - -typedef struct { - FSE_DStream_t DStream; - FSE_DState_t stateLL; - FSE_DState_t stateOffb; - FSE_DState_t stateML; - size_t prevOffset; - const BYTE* dumps; - const BYTE* dumpsEnd; -} seqState_t; - - -static void ZSTD_decodeSequence(seq_t* seq, seqState_t* seqState) -{ - size_t litLength; - size_t prevOffset; - size_t offset; - size_t matchLength; - const BYTE* dumps = seqState->dumps; - const BYTE* const de = seqState->dumpsEnd; - - /* Literal length */ - litLength = FSE_decodeSymbol(&(seqState->stateLL), &(seqState->DStream)); - prevOffset = litLength ? seq->offset : seqState->prevOffset; - seqState->prevOffset = seq->offset; - if (litLength == MaxLL) - { - const U32 add = dumpsstateOffb), &(seqState->DStream)); - if (ZSTD_32bits()) FSE_reloadDStream(&(seqState->DStream)); - nbBits = offsetCode - 1; - if (offsetCode==0) nbBits = 0; /* cmove */ - offset = ((size_t)1 << (nbBits & ((sizeof(offset)*8)-1))) + FSE_readBits(&(seqState->DStream), nbBits); - if (ZSTD_32bits()) FSE_reloadDStream(&(seqState->DStream)); - if (offsetCode==0) offset = prevOffset; - } - - /* MatchLength */ - matchLength = FSE_decodeSymbol(&(seqState->stateML), &(seqState->DStream)); - if (matchLength == MaxML) - { - const U32 add = dumpslitLength = litLength; - seq->offset = offset; - seq->matchLength = matchLength; - seqState->dumps = dumps; -} - - -static size_t ZSTD_execSequence(BYTE* op, - seq_t sequence, - const BYTE** litPtr, const BYTE* const litLimit, - BYTE* const base, BYTE* const oend) -{ - static const int dec32table[] = {0, 1, 2, 1, 4, 4, 4, 4}; /* added */ - static const int dec64table[] = {8, 8, 8, 7, 8, 9,10,11}; /* subtracted */ - const BYTE* const ostart = op; - const size_t litLength = sequence.litLength; - BYTE* const endMatch = op + litLength + sequence.matchLength; /* risk : address space overflow (32-bits) */ - const BYTE* const litEnd = *litPtr + litLength; - - /* check */ - if (endMatch > oend) return ERROR(dstSize_tooSmall); /* overwrite beyond dst buffer */ - if (litEnd > litLimit) return ERROR(corruption_detected); - if (sequence.matchLength > (size_t)(*litPtr-op)) return ERROR(dstSize_tooSmall); /* overwrite literal segment */ - - /* copy Literals */ - if (((size_t)(*litPtr - op) < 8) || ((size_t)(oend-litEnd) < 8) || (op+litLength > oend-8)) - memmove(op, *litPtr, litLength); /* overwrite risk */ - else - ZSTD_wildcopy(op, *litPtr, litLength); - op += litLength; - *litPtr = litEnd; /* update for next sequence */ - - /* check : last match must be at a minimum distance of 8 from end of dest buffer */ - if (oend-op < 8) return ERROR(dstSize_tooSmall); - - /* copy Match */ - { - const U32 overlapRisk = (((size_t)(litEnd - endMatch)) < 12); - const BYTE* match = op - sequence.offset; /* possible underflow at op - offset ? */ - size_t qutt = 12; - U64 saved[2]; - - /* check */ - if (match < base) return ERROR(corruption_detected); - if (sequence.offset > (size_t)base) return ERROR(corruption_detected); - - /* save beginning of literal sequence, in case of write overlap */ - if (overlapRisk) - { - if ((endMatch + qutt) > oend) qutt = oend-endMatch; - memcpy(saved, endMatch, qutt); - } - - if (sequence.offset < 8) - { - const int dec64 = dec64table[sequence.offset]; - op[0] = match[0]; - op[1] = match[1]; - op[2] = match[2]; - op[3] = match[3]; - match += dec32table[sequence.offset]; - ZSTD_copy4(op+4, match); - match -= dec64; - } else { ZSTD_copy8(op, match); } - op += 8; match += 8; - - if (endMatch > oend-(16-MINMATCH)) - { - if (op < oend-8) - { - ZSTD_wildcopy(op, match, (oend-8) - op); - match += (oend-8) - op; - op = oend-8; - } - while (opLLTable; - U32* DTableML = dctx->MLTable; - U32* DTableOffb = dctx->OffTable; - BYTE* const base = (BYTE*) (dctx->base); - - /* Build Decoding Tables */ - errorCode = ZSTDv01_decodeSeqHeaders(&nbSeq, &dumps, &dumpsLength, - DTableLL, DTableML, DTableOffb, - ip, iend-ip); - if (ZSTDv01_isError(errorCode)) return errorCode; - ip += errorCode; - - /* Regen sequences */ - { - seq_t sequence; - seqState_t seqState; - - memset(&sequence, 0, sizeof(sequence)); - seqState.dumps = dumps; - seqState.dumpsEnd = dumps + dumpsLength; - seqState.prevOffset = 1; - errorCode = FSE_initDStream(&(seqState.DStream), ip, iend-ip); - if (FSE_isError(errorCode)) return ERROR(corruption_detected); - FSE_initDState(&(seqState.stateLL), &(seqState.DStream), DTableLL); - FSE_initDState(&(seqState.stateOffb), &(seqState.DStream), DTableOffb); - FSE_initDState(&(seqState.stateML), &(seqState.DStream), DTableML); - - for ( ; (FSE_reloadDStream(&(seqState.DStream)) <= FSE_DStream_completed) && (nbSeq>0) ; ) - { - size_t oneSeqSize; - nbSeq--; - ZSTD_decodeSequence(&sequence, &seqState); - oneSeqSize = ZSTD_execSequence(op, sequence, &litPtr, litEnd, base, oend); - if (ZSTDv01_isError(oneSeqSize)) return oneSeqSize; - op += oneSeqSize; - } - - /* check if reached exact end */ - if ( !FSE_endOfDStream(&(seqState.DStream)) ) return ERROR(corruption_detected); /* requested too much : data is corrupted */ - if (nbSeq<0) return ERROR(corruption_detected); /* requested too many sequences : data is corrupted */ - - /* last literal segment */ - { - size_t lastLLSize = litEnd - litPtr; - if (op+lastLLSize > oend) return ERROR(dstSize_tooSmall); - if (lastLLSize > 0) { - if (op != litPtr) memmove(op, litPtr, lastLLSize); - op += lastLLSize; - } - } - } - - return op-ostart; -} - - -static size_t ZSTD_decompressBlock( - void* ctx, - void* dst, size_t maxDstSize, - const void* src, size_t srcSize) -{ - /* blockType == blockCompressed, srcSize is trusted */ - const BYTE* ip = (const BYTE*)src; - const BYTE* litPtr = NULL; - size_t litSize = 0; - size_t errorCode; - - /* Decode literals sub-block */ - errorCode = ZSTDv01_decodeLiteralsBlock(ctx, dst, maxDstSize, &litPtr, &litSize, src, srcSize); - if (ZSTDv01_isError(errorCode)) return errorCode; - ip += errorCode; - srcSize -= errorCode; - - return ZSTD_decompressSequences(ctx, dst, maxDstSize, ip, srcSize, litPtr, litSize); -} - - -size_t ZSTDv01_decompressDCtx(void* ctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize) -{ - const BYTE* ip = (const BYTE*)src; - const BYTE* iend = ip + srcSize; - BYTE* const ostart = (BYTE* const)dst; - BYTE* op = ostart; - BYTE* const oend = ostart + maxDstSize; - size_t remainingSize = srcSize; - U32 magicNumber; - size_t errorCode=0; - blockProperties_t blockProperties; - - /* Frame Header */ - if (srcSize < ZSTD_frameHeaderSize+ZSTD_blockHeaderSize) return ERROR(srcSize_wrong); - magicNumber = ZSTD_readBE32(src); - if (magicNumber != ZSTD_magicNumber) return ERROR(prefix_unknown); - ip += ZSTD_frameHeaderSize; remainingSize -= ZSTD_frameHeaderSize; - - /* Loop on each block */ - while (1) - { - size_t blockSize = ZSTDv01_getcBlockSize(ip, iend-ip, &blockProperties); - if (ZSTDv01_isError(blockSize)) return blockSize; - - ip += ZSTD_blockHeaderSize; - remainingSize -= ZSTD_blockHeaderSize; - if (blockSize > remainingSize) return ERROR(srcSize_wrong); - - switch(blockProperties.blockType) - { - case bt_compressed: - errorCode = ZSTD_decompressBlock(ctx, op, oend-op, ip, blockSize); - break; - case bt_raw : - errorCode = ZSTD_copyUncompressedBlock(op, oend-op, ip, blockSize); - break; - case bt_rle : - return ERROR(GENERIC); /* not yet supported */ - break; - case bt_end : - /* end of frame */ - if (remainingSize) return ERROR(srcSize_wrong); - break; - default: - return ERROR(GENERIC); - } - if (blockSize == 0) break; /* bt_end */ - - if (ZSTDv01_isError(errorCode)) return errorCode; - op += errorCode; - ip += blockSize; - remainingSize -= blockSize; - } - - return op-ostart; -} - -size_t ZSTDv01_decompress(void* dst, size_t maxDstSize, const void* src, size_t srcSize) -{ - dctx_t ctx; - ctx.base = dst; - return ZSTDv01_decompressDCtx(&ctx, dst, maxDstSize, src, srcSize); -} - -/* ZSTD_errorFrameSizeInfoLegacy() : - assumes `cSize` and `dBound` are _not_ NULL */ -static void ZSTD_errorFrameSizeInfoLegacy(size_t* cSize, unsigned long long* dBound, size_t ret) -{ - *cSize = ret; - *dBound = ZSTD_CONTENTSIZE_ERROR; -} - -void ZSTDv01_findFrameSizeInfoLegacy(const void *src, size_t srcSize, size_t* cSize, unsigned long long* dBound) -{ - const BYTE* ip = (const BYTE*)src; - size_t remainingSize = srcSize; - size_t nbBlocks = 0; - U32 magicNumber; - blockProperties_t blockProperties; - - /* Frame Header */ - if (srcSize < ZSTD_frameHeaderSize+ZSTD_blockHeaderSize) { - ZSTD_errorFrameSizeInfoLegacy(cSize, dBound, ERROR(srcSize_wrong)); - return; - } - magicNumber = ZSTD_readBE32(src); - if (magicNumber != ZSTD_magicNumber) { - ZSTD_errorFrameSizeInfoLegacy(cSize, dBound, ERROR(prefix_unknown)); - return; - } - ip += ZSTD_frameHeaderSize; remainingSize -= ZSTD_frameHeaderSize; - - /* Loop on each block */ - while (1) - { - size_t blockSize = ZSTDv01_getcBlockSize(ip, remainingSize, &blockProperties); - if (ZSTDv01_isError(blockSize)) { - ZSTD_errorFrameSizeInfoLegacy(cSize, dBound, blockSize); - return; - } - - ip += ZSTD_blockHeaderSize; - remainingSize -= ZSTD_blockHeaderSize; - if (blockSize > remainingSize) { - ZSTD_errorFrameSizeInfoLegacy(cSize, dBound, ERROR(srcSize_wrong)); - return; - } - - if (blockSize == 0) break; /* bt_end */ - - ip += blockSize; - remainingSize -= blockSize; - nbBlocks++; - } - - *cSize = ip - (const BYTE*)src; - *dBound = nbBlocks * BLOCKSIZE; -} - -/******************************* -* Streaming Decompression API -*******************************/ - -size_t ZSTDv01_resetDCtx(ZSTDv01_Dctx* dctx) -{ - dctx->expected = ZSTD_frameHeaderSize; - dctx->phase = 0; - dctx->previousDstEnd = NULL; - dctx->base = NULL; - return 0; -} - -ZSTDv01_Dctx* ZSTDv01_createDCtx(void) -{ - ZSTDv01_Dctx* dctx = (ZSTDv01_Dctx*)malloc(sizeof(ZSTDv01_Dctx)); - if (dctx==NULL) return NULL; - ZSTDv01_resetDCtx(dctx); - return dctx; -} - -size_t ZSTDv01_freeDCtx(ZSTDv01_Dctx* dctx) -{ - free(dctx); - return 0; -} - -size_t ZSTDv01_nextSrcSizeToDecompress(ZSTDv01_Dctx* dctx) -{ - return ((dctx_t*)dctx)->expected; -} - -size_t ZSTDv01_decompressContinue(ZSTDv01_Dctx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize) -{ - dctx_t* ctx = (dctx_t*)dctx; - - /* Sanity check */ - if (srcSize != ctx->expected) return ERROR(srcSize_wrong); - if (dst != ctx->previousDstEnd) /* not contiguous */ - ctx->base = dst; - - /* Decompress : frame header */ - if (ctx->phase == 0) - { - /* Check frame magic header */ - U32 magicNumber = ZSTD_readBE32(src); - if (magicNumber != ZSTD_magicNumber) return ERROR(prefix_unknown); - ctx->phase = 1; - ctx->expected = ZSTD_blockHeaderSize; - return 0; - } - - /* Decompress : block header */ - if (ctx->phase == 1) - { - blockProperties_t bp; - size_t blockSize = ZSTDv01_getcBlockSize(src, ZSTD_blockHeaderSize, &bp); - if (ZSTDv01_isError(blockSize)) return blockSize; - if (bp.blockType == bt_end) - { - ctx->expected = 0; - ctx->phase = 0; - } - else - { - ctx->expected = blockSize; - ctx->bType = bp.blockType; - ctx->phase = 2; - } - - return 0; - } - - /* Decompress : block content */ - { - size_t rSize; - switch(ctx->bType) - { - case bt_compressed: - rSize = ZSTD_decompressBlock(ctx, dst, maxDstSize, src, srcSize); - break; - case bt_raw : - rSize = ZSTD_copyUncompressedBlock(dst, maxDstSize, src, srcSize); - break; - case bt_rle : - return ERROR(GENERIC); /* not yet handled */ - break; - case bt_end : /* should never happen (filtered at phase 1) */ - rSize = 0; - break; - default: - return ERROR(GENERIC); - } - ctx->phase = 1; - ctx->expected = ZSTD_blockHeaderSize; - ctx->previousDstEnd = (void*)( ((char*)dst) + rSize); - return rSize; - } - -} diff --git a/lib/SZ3/tools/zstd/legacy/zstd_v01.h b/lib/SZ3/tools/zstd/legacy/zstd_v01.h deleted file mode 100644 index 79103517..00000000 --- a/lib/SZ3/tools/zstd/legacy/zstd_v01.h +++ /dev/null @@ -1,94 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - -#ifndef ZSTD_V01_H_28739879432 -#define ZSTD_V01_H_28739879432 - -#if defined (__cplusplus) -extern "C" { -#endif - -/* ************************************* -* Includes -***************************************/ -#include /* size_t */ - - -/* ************************************* -* Simple one-step function -***************************************/ -/** -ZSTDv01_decompress() : decompress ZSTD frames compliant with v0.1.x format - compressedSize : is the exact source size - maxOriginalSize : is the size of the 'dst' buffer, which must be already allocated. - It must be equal or larger than originalSize, otherwise decompression will fail. - return : the number of bytes decompressed into destination buffer (originalSize) - or an errorCode if it fails (which can be tested using ZSTDv01_isError()) -*/ -size_t ZSTDv01_decompress( void* dst, size_t maxOriginalSize, - const void* src, size_t compressedSize); - - /** - ZSTDv01_findFrameSizeInfoLegacy() : get the source length and decompressed bound of a ZSTD frame compliant with v0.1.x format - srcSize : The size of the 'src' buffer, at least as large as the frame pointed to by 'src' - cSize (output parameter) : the number of bytes that would be read to decompress this frame - or an error code if it fails (which can be tested using ZSTDv01_isError()) - dBound (output parameter) : an upper-bound for the decompressed size of the data in the frame - or ZSTD_CONTENTSIZE_ERROR if an error occurs - - note : assumes `cSize` and `dBound` are _not_ NULL. - */ -void ZSTDv01_findFrameSizeInfoLegacy(const void *src, size_t srcSize, - size_t* cSize, unsigned long long* dBound); - -/** -ZSTDv01_isError() : tells if the result of ZSTDv01_decompress() is an error -*/ -unsigned ZSTDv01_isError(size_t code); - - -/* ************************************* -* Advanced functions -***************************************/ -typedef struct ZSTDv01_Dctx_s ZSTDv01_Dctx; -ZSTDv01_Dctx* ZSTDv01_createDCtx(void); -size_t ZSTDv01_freeDCtx(ZSTDv01_Dctx* dctx); - -size_t ZSTDv01_decompressDCtx(void* ctx, - void* dst, size_t maxOriginalSize, - const void* src, size_t compressedSize); - -/* ************************************* -* Streaming functions -***************************************/ -size_t ZSTDv01_resetDCtx(ZSTDv01_Dctx* dctx); - -size_t ZSTDv01_nextSrcSizeToDecompress(ZSTDv01_Dctx* dctx); -size_t ZSTDv01_decompressContinue(ZSTDv01_Dctx* dctx, void* dst, size_t maxDstSize, const void* src, size_t srcSize); -/** - Use above functions alternatively. - ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as 'srcSize' to ZSTD_decompressContinue(). - ZSTD_decompressContinue() will use previous data blocks to improve compression if they are located prior to current block. - Result is the number of bytes regenerated within 'dst'. - It can be zero, which is not an error; it just means ZSTD_decompressContinue() has decoded some header. -*/ - -/* ************************************* -* Prefix - version detection -***************************************/ -#define ZSTDv01_magicNumber 0xFD2FB51E /* Big Endian version */ -#define ZSTDv01_magicNumberLE 0x1EB52FFD /* Little Endian version */ - - -#if defined (__cplusplus) -} -#endif - -#endif /* ZSTD_V01_H_28739879432 */ diff --git a/lib/SZ3/tools/zstd/legacy/zstd_v02.c b/lib/SZ3/tools/zstd/legacy/zstd_v02.c deleted file mode 100644 index 32d45a6d..00000000 --- a/lib/SZ3/tools/zstd/legacy/zstd_v02.c +++ /dev/null @@ -1,3518 +0,0 @@ -/* - * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. - * All rights reserved. - * - * This source code is licensed under both the BSD-style license (found in the - * LICENSE file in the root directory of this source tree) and the GPLv2 (found - * in the COPYING file in the root directory of this source tree). - * You may select, at your option, one of the above-listed licenses. - */ - - -#include /* size_t, ptrdiff_t */ -#include "zstd_v02.h" -#include "../common/error_private.h" - - -/****************************************** -* Compiler-specific -******************************************/ -#if defined(_MSC_VER) /* Visual Studio */ -# include /* _byteswap_ulong */ -# include /* _byteswap_* */ -#endif - - -/* ****************************************************************** - mem.h - low-level memory access routines - Copyright (C) 2013-2015, Yann Collet. - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy - - Public forum : https://groups.google.com/forum/#!forum/lz4c -****************************************************************** */ -#ifndef MEM_H_MODULE -#define MEM_H_MODULE - -#if defined (__cplusplus) -extern "C" { -#endif - -/****************************************** -* Includes -******************************************/ -#include /* size_t, ptrdiff_t */ -#include /* memcpy */ - - -/****************************************** -* Compiler-specific -******************************************/ -#if defined(__GNUC__) -# define MEM_STATIC static __attribute__((unused)) -#elif defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -# define MEM_STATIC static inline -#elif defined(_MSC_VER) -# define MEM_STATIC static __inline -#else -# define MEM_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */ -#endif - - -/**************************************************************** -* Basic Types -*****************************************************************/ -#if defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -# include - typedef uint8_t BYTE; - typedef uint16_t U16; - typedef int16_t S16; - typedef uint32_t U32; - typedef int32_t S32; - typedef uint64_t U64; - typedef int64_t S64; -#else - typedef unsigned char BYTE; - typedef unsigned short U16; - typedef signed short S16; - typedef unsigned int U32; - typedef signed int S32; - typedef unsigned long long U64; - typedef signed long long S64; -#endif - - -/**************************************************************** -* Memory I/O -*****************************************************************/ -/* MEM_FORCE_MEMORY_ACCESS - * By default, access to unaligned memory is controlled by `memcpy()`, which is safe and portable. - * Unfortunately, on some target/compiler combinations, the generated assembly is sub-optimal. - * The below switch allow to select different access method for improved performance. - * Method 0 (default) : use `memcpy()`. Safe and portable. - * Method 1 : `__packed` statement. It depends on compiler extension (ie, not portable). - * This method is safe if your compiler supports it, and *generally* as fast or faster than `memcpy`. - * Method 2 : direct access. This method is portable but violate C standard. - * It can generate buggy code on targets generating assembly depending on alignment. - * But in some circumstances, it's the only known way to get the most performance (ie GCC + ARMv6) - * See http://fastcompression.blogspot.fr/2015/08/accessing-unaligned-memory.html for details. - * Prefer these methods in priority order (0 > 1 > 2) - */ -#ifndef MEM_FORCE_MEMORY_ACCESS /* can be defined externally, on command line for example */ -# if defined(__GNUC__) && ( defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6T2__) ) -# define MEM_FORCE_MEMORY_ACCESS 2 -# elif (defined(__INTEL_COMPILER) && !defined(WIN32)) || \ - (defined(__GNUC__) && ( defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) )) -# define MEM_FORCE_MEMORY_ACCESS 1 -# endif -#endif - -MEM_STATIC unsigned MEM_32bits(void) { return sizeof(void*)==4; } -MEM_STATIC unsigned MEM_64bits(void) { return sizeof(void*)==8; } - -MEM_STATIC unsigned MEM_isLittleEndian(void) -{ - const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */ - return one.c[0]; -} - -#if defined(MEM_FORCE_MEMORY_ACCESS) && (MEM_FORCE_MEMORY_ACCESS==2) - -/* violates C standard on structure alignment. -Only use if no other choice to achieve best performance on target platform */ -MEM_STATIC U16 MEM_read16(const void* memPtr) { return *(const U16*) memPtr; } -MEM_STATIC U32 MEM_read32(const void* memPtr) { return *(const U32*) memPtr; } -MEM_STATIC U64 MEM_read64(const void* memPtr) { return *(const U64*) memPtr; } - -MEM_STATIC void MEM_write16(void* memPtr, U16 value) { *(U16*)memPtr = value; } - -#elif defined(MEM_FORCE_MEMORY_ACCESS) && (MEM_FORCE_MEMORY_ACCESS==1) - -/* __pack instructions are safer, but compiler specific, hence potentially problematic for some compilers */ -/* currently only defined for gcc and icc */ -typedef union { U16 u16; U32 u32; U64 u64; } __attribute__((packed)) unalign; - -MEM_STATIC U16 MEM_read16(const void* ptr) { return ((const unalign*)ptr)->u16; } -MEM_STATIC U32 MEM_read32(const void* ptr) { return ((const unalign*)ptr)->u32; } -MEM_STATIC U64 MEM_read64(const void* ptr) { return ((const unalign*)ptr)->u64; } - -MEM_STATIC void MEM_write16(void* memPtr, U16 value) { ((unalign*)memPtr)->u16 = value; } - -#else - -/* default method, safe and standard. - can sometimes prove slower */ - -MEM_STATIC U16 MEM_read16(const void* memPtr) -{ - U16 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -MEM_STATIC U32 MEM_read32(const void* memPtr) -{ - U32 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -MEM_STATIC U64 MEM_read64(const void* memPtr) -{ - U64 val; memcpy(&val, memPtr, sizeof(val)); return val; -} - -MEM_STATIC void MEM_write16(void* memPtr, U16 value) -{ - memcpy(memPtr, &value, sizeof(value)); -} - -#endif /* MEM_FORCE_MEMORY_ACCESS */ - - -MEM_STATIC U16 MEM_readLE16(const void* memPtr) -{ - if (MEM_isLittleEndian()) - return MEM_read16(memPtr); - else - { - const BYTE* p = (const BYTE*)memPtr; - return (U16)(p[0] + (p[1]<<8)); - } -} - -MEM_STATIC void MEM_writeLE16(void* memPtr, U16 val) -{ - if (MEM_isLittleEndian()) - { - MEM_write16(memPtr, val); - } - else - { - BYTE* p = (BYTE*)memPtr; - p[0] = (BYTE)val; - p[1] = (BYTE)(val>>8); - } -} - -MEM_STATIC U32 MEM_readLE24(const void* memPtr) -{ - return MEM_readLE16(memPtr) + (((const BYTE*)memPtr)[2] << 16); -} - -MEM_STATIC U32 MEM_readLE32(const void* memPtr) -{ - if (MEM_isLittleEndian()) - return MEM_read32(memPtr); - else - { - const BYTE* p = (const BYTE*)memPtr; - return (U32)((U32)p[0] + ((U32)p[1]<<8) + ((U32)p[2]<<16) + ((U32)p[3]<<24)); - } -} - - -MEM_STATIC U64 MEM_readLE64(const void* memPtr) -{ - if (MEM_isLittleEndian()) - return MEM_read64(memPtr); - else - { - const BYTE* p = (const BYTE*)memPtr; - return (U64)((U64)p[0] + ((U64)p[1]<<8) + ((U64)p[2]<<16) + ((U64)p[3]<<24) - + ((U64)p[4]<<32) + ((U64)p[5]<<40) + ((U64)p[6]<<48) + ((U64)p[7]<<56)); - } -} - - -MEM_STATIC size_t MEM_readLEST(const void* memPtr) -{ - if (MEM_32bits()) - return (size_t)MEM_readLE32(memPtr); - else - return (size_t)MEM_readLE64(memPtr); -} - -#if defined (__cplusplus) -} -#endif - -#endif /* MEM_H_MODULE */ - - -/* ****************************************************************** - bitstream - Part of NewGen Entropy library - header file (to include) - Copyright (C) 2013-2015, Yann Collet. - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - - Public forum : https://groups.google.com/forum/#!forum/lz4c -****************************************************************** */ -#ifndef BITSTREAM_H_MODULE -#define BITSTREAM_H_MODULE - -#if defined (__cplusplus) -extern "C" { -#endif - - -/* -* This API consists of small unitary functions, which highly benefit from being inlined. -* Since link-time-optimization is not available for all compilers, -* these functions are defined into a .h to be included. -*/ - - -/********************************************** -* bitStream decompression API (read backward) -**********************************************/ -typedef struct -{ - size_t bitContainer; - unsigned bitsConsumed; - const char* ptr; - const char* start; -} BIT_DStream_t; - -typedef enum { BIT_DStream_unfinished = 0, - BIT_DStream_endOfBuffer = 1, - BIT_DStream_completed = 2, - BIT_DStream_overflow = 3 } BIT_DStream_status; /* result of BIT_reloadDStream() */ - /* 1,2,4,8 would be better for bitmap combinations, but slows down performance a bit ... :( */ - -MEM_STATIC size_t BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, size_t srcSize); -MEM_STATIC size_t BIT_readBits(BIT_DStream_t* bitD, unsigned nbBits); -MEM_STATIC BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD); -MEM_STATIC unsigned BIT_endOfDStream(const BIT_DStream_t* bitD); - - -/****************************************** -* unsafe API -******************************************/ -MEM_STATIC size_t BIT_readBitsFast(BIT_DStream_t* bitD, unsigned nbBits); -/* faster, but works only if nbBits >= 1 */ - - - -/**************************************************************** -* Helper functions -****************************************************************/ -MEM_STATIC unsigned BIT_highbit32 (U32 val) -{ -# if defined(_MSC_VER) /* Visual */ - unsigned long r=0; - _BitScanReverse ( &r, val ); - return (unsigned) r; -# elif defined(__GNUC__) && (__GNUC__ >= 3) /* Use GCC Intrinsic */ - return __builtin_clz (val) ^ 31; -# else /* Software version */ - static const unsigned DeBruijnClz[32] = { 0, 9, 1, 10, 13, 21, 2, 29, 11, 14, 16, 18, 22, 25, 3, 30, 8, 12, 20, 28, 15, 17, 24, 7, 19, 27, 23, 6, 26, 5, 4, 31 }; - U32 v = val; - unsigned r; - v |= v >> 1; - v |= v >> 2; - v |= v >> 4; - v |= v >> 8; - v |= v >> 16; - r = DeBruijnClz[ (U32) (v * 0x07C4ACDDU) >> 27]; - return r; -# endif -} - - - -/********************************************************** -* bitStream decoding -**********************************************************/ - -/*!BIT_initDStream -* Initialize a BIT_DStream_t. -* @bitD : a pointer to an already allocated BIT_DStream_t structure -* @srcBuffer must point at the beginning of a bitStream -* @srcSize must be the exact size of the bitStream -* @result : size of stream (== srcSize) or an errorCode if a problem is detected -*/ -MEM_STATIC size_t BIT_initDStream(BIT_DStream_t* bitD, const void* srcBuffer, size_t srcSize) -{ - if (srcSize < 1) { memset(bitD, 0, sizeof(*bitD)); return ERROR(srcSize_wrong); } - - if (srcSize >= sizeof(size_t)) /* normal case */ - { - U32 contain32; - bitD->start = (const char*)srcBuffer; - bitD->ptr = (const char*)srcBuffer + srcSize - sizeof(size_t); - bitD->bitContainer = MEM_readLEST(bitD->ptr); - contain32 = ((const BYTE*)srcBuffer)[srcSize-1]; - if (contain32 == 0) return ERROR(GENERIC); /* endMark not present */ - bitD->bitsConsumed = 8 - BIT_highbit32(contain32); - } - else - { - U32 contain32; - bitD->start = (const char*)srcBuffer; - bitD->ptr = bitD->start; - bitD->bitContainer = *(const BYTE*)(bitD->start); - switch(srcSize) - { - case 7: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[6]) << (sizeof(size_t)*8 - 16); - /* fallthrough */ - case 6: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[5]) << (sizeof(size_t)*8 - 24); - /* fallthrough */ - case 5: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[4]) << (sizeof(size_t)*8 - 32); - /* fallthrough */ - case 4: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[3]) << 24; - /* fallthrough */ - case 3: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[2]) << 16; - /* fallthrough */ - case 2: bitD->bitContainer += (size_t)(((const BYTE*)(bitD->start))[1]) << 8; - /* fallthrough */ - default:; - } - contain32 = ((const BYTE*)srcBuffer)[srcSize-1]; - if (contain32 == 0) return ERROR(GENERIC); /* endMark not present */ - bitD->bitsConsumed = 8 - BIT_highbit32(contain32); - bitD->bitsConsumed += (U32)(sizeof(size_t) - srcSize)*8; - } - - return srcSize; -} - -MEM_STATIC size_t BIT_lookBits(BIT_DStream_t* bitD, U32 nbBits) -{ - const U32 bitMask = sizeof(bitD->bitContainer)*8 - 1; - return ((bitD->bitContainer << (bitD->bitsConsumed & bitMask)) >> 1) >> ((bitMask-nbBits) & bitMask); -} - -/*! BIT_lookBitsFast : -* unsafe version; only works only if nbBits >= 1 */ -MEM_STATIC size_t BIT_lookBitsFast(BIT_DStream_t* bitD, U32 nbBits) -{ - const U32 bitMask = sizeof(bitD->bitContainer)*8 - 1; - return (bitD->bitContainer << (bitD->bitsConsumed & bitMask)) >> (((bitMask+1)-nbBits) & bitMask); -} - -MEM_STATIC void BIT_skipBits(BIT_DStream_t* bitD, U32 nbBits) -{ - bitD->bitsConsumed += nbBits; -} - -MEM_STATIC size_t BIT_readBits(BIT_DStream_t* bitD, U32 nbBits) -{ - size_t value = BIT_lookBits(bitD, nbBits); - BIT_skipBits(bitD, nbBits); - return value; -} - -/*!BIT_readBitsFast : -* unsafe version; only works only if nbBits >= 1 */ -MEM_STATIC size_t BIT_readBitsFast(BIT_DStream_t* bitD, U32 nbBits) -{ - size_t value = BIT_lookBitsFast(bitD, nbBits); - BIT_skipBits(bitD, nbBits); - return value; -} - -MEM_STATIC BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD) -{ - if (bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8)) /* should never happen */ - return BIT_DStream_overflow; - - if (bitD->ptr >= bitD->start + sizeof(bitD->bitContainer)) - { - bitD->ptr -= bitD->bitsConsumed >> 3; - bitD->bitsConsumed &= 7; - bitD->bitContainer = MEM_readLEST(bitD->ptr); - return BIT_DStream_unfinished; - } - if (bitD->ptr == bitD->start) - { - if (bitD->bitsConsumed < sizeof(bitD->bitContainer)*8) return BIT_DStream_endOfBuffer; - return BIT_DStream_completed; - } - { - U32 nbBytes = bitD->bitsConsumed >> 3; - BIT_DStream_status result = BIT_DStream_unfinished; - if (bitD->ptr - nbBytes < bitD->start) - { - nbBytes = (U32)(bitD->ptr - bitD->start); /* ptr > start */ - result = BIT_DStream_endOfBuffer; - } - bitD->ptr -= nbBytes; - bitD->bitsConsumed -= nbBytes*8; - bitD->bitContainer = MEM_readLEST(bitD->ptr); /* reminder : srcSize > sizeof(bitD) */ - return result; - } -} - -/*! BIT_endOfDStream -* @return Tells if DStream has reached its exact end -*/ -MEM_STATIC unsigned BIT_endOfDStream(const BIT_DStream_t* DStream) -{ - return ((DStream->ptr == DStream->start) && (DStream->bitsConsumed == sizeof(DStream->bitContainer)*8)); -} - -#if defined (__cplusplus) -} -#endif - -#endif /* BITSTREAM_H_MODULE */ -/* ****************************************************************** - Error codes and messages - Copyright (C) 2013-2015, Yann Collet - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - - Public forum : https://groups.google.com/forum/#!forum/lz4c -****************************************************************** */ -#ifndef ERROR_H_MODULE -#define ERROR_H_MODULE - -#if defined (__cplusplus) -extern "C" { -#endif - - -/****************************************** -* Compiler-specific -******************************************/ -#if defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -# define ERR_STATIC static inline -#elif defined(_MSC_VER) -# define ERR_STATIC static __inline -#elif defined(__GNUC__) -# define ERR_STATIC static __attribute__((unused)) -#else -# define ERR_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */ -#endif - - -/****************************************** -* Error Management -******************************************/ -#define PREFIX(name) ZSTD_error_##name - -#define ERROR(name) (size_t)-PREFIX(name) - -#define ERROR_LIST(ITEM) \ - ITEM(PREFIX(No_Error)) ITEM(PREFIX(GENERIC)) \ - ITEM(PREFIX(dstSize_tooSmall)) ITEM(PREFIX(srcSize_wrong)) \ - ITEM(PREFIX(prefix_unknown)) ITEM(PREFIX(corruption_detected)) \ - ITEM(PREFIX(tableLog_tooLarge)) ITEM(PREFIX(maxSymbolValue_tooLarge)) ITEM(PREFIX(maxSymbolValue_tooSmall)) \ - ITEM(PREFIX(maxCode)) - -#define ERROR_GENERATE_ENUM(ENUM) ENUM, -typedef enum { ERROR_LIST(ERROR_GENERATE_ENUM) } ERR_codes; /* enum is exposed, to detect & handle specific errors; compare function result to -enum value */ - -#define ERROR_CONVERTTOSTRING(STRING) #STRING, -#define ERROR_GENERATE_STRING(EXPR) ERROR_CONVERTTOSTRING(EXPR) -static const char* ERR_strings[] = { ERROR_LIST(ERROR_GENERATE_STRING) }; - -ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); } - -ERR_STATIC const char* ERR_getErrorName(size_t code) -{ - static const char* codeError = "Unspecified error code"; - if (ERR_isError(code)) return ERR_strings[-(int)(code)]; - return codeError; -} - - -#if defined (__cplusplus) -} -#endif - -#endif /* ERROR_H_MODULE */ -/* -Constructor and Destructor of type FSE_CTable - Note that its size depends on 'tableLog' and 'maxSymbolValue' */ -typedef unsigned FSE_CTable; /* don't allocate that. It's just a way to be more restrictive than void* */ -typedef unsigned FSE_DTable; /* don't allocate that. It's just a way to be more restrictive than void* */ - - -/* ****************************************************************** - FSE : Finite State Entropy coder - header file for static linking (only) - Copyright (C) 2013-2015, Yann Collet - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - - Public forum : https://groups.google.com/forum/#!forum/lz4c -****************************************************************** */ -#if defined (__cplusplus) -extern "C" { -#endif - - -/****************************************** -* Static allocation -******************************************/ -/* FSE buffer bounds */ -#define FSE_NCOUNTBOUND 512 -#define FSE_BLOCKBOUND(size) (size + (size>>7)) -#define FSE_COMPRESSBOUND(size) (FSE_NCOUNTBOUND + FSE_BLOCKBOUND(size)) /* Macro version, useful for static allocation */ - -/* You can statically allocate FSE CTable/DTable as a table of unsigned using below macro */ -#define FSE_CTABLE_SIZE_U32(maxTableLog, maxSymbolValue) (1 + (1<<(maxTableLog-1)) + ((maxSymbolValue+1)*2)) -#define FSE_DTABLE_SIZE_U32(maxTableLog) (1 + (1<= 1 (otherwise, result will be corrupted) */ - - -/****************************************** -* Implementation of inline functions -******************************************/ - -/* decompression */ - -typedef struct { - U16 tableLog; - U16 fastMode; -} FSE_DTableHeader; /* sizeof U32 */ - -typedef struct -{ - unsigned short newState; - unsigned char symbol; - unsigned char nbBits; -} FSE_decode_t; /* size == U32 */ - -MEM_STATIC void FSE_initDState(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD, const FSE_DTable* dt) -{ - FSE_DTableHeader DTableH; - memcpy(&DTableH, dt, sizeof(DTableH)); - DStatePtr->state = BIT_readBits(bitD, DTableH.tableLog); - BIT_reloadDStream(bitD); - DStatePtr->table = dt + 1; -} - -MEM_STATIC BYTE FSE_decodeSymbol(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD) -{ - const FSE_decode_t DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; - const U32 nbBits = DInfo.nbBits; - BYTE symbol = DInfo.symbol; - size_t lowBits = BIT_readBits(bitD, nbBits); - - DStatePtr->state = DInfo.newState + lowBits; - return symbol; -} - -MEM_STATIC BYTE FSE_decodeSymbolFast(FSE_DState_t* DStatePtr, BIT_DStream_t* bitD) -{ - const FSE_decode_t DInfo = ((const FSE_decode_t*)(DStatePtr->table))[DStatePtr->state]; - const U32 nbBits = DInfo.nbBits; - BYTE symbol = DInfo.symbol; - size_t lowBits = BIT_readBitsFast(bitD, nbBits); - - DStatePtr->state = DInfo.newState + lowBits; - return symbol; -} - -MEM_STATIC unsigned FSE_endOfDState(const FSE_DState_t* DStatePtr) -{ - return DStatePtr->state == 0; -} - - -#if defined (__cplusplus) -} -#endif -/* ****************************************************************** - Huff0 : Huffman coder, part of New Generation Entropy library - header file for static linking (only) - Copyright (C) 2013-2015, Yann Collet - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - Source repository : https://github.com/Cyan4973/FiniteStateEntropy - - Public forum : https://groups.google.com/forum/#!forum/lz4c -****************************************************************** */ - -#if defined (__cplusplus) -extern "C" { -#endif - -/****************************************** -* Static allocation macros -******************************************/ -/* Huff0 buffer bounds */ -#define HUF_CTABLEBOUND 129 -#define HUF_BLOCKBOUND(size) (size + (size>>8) + 8) /* only true if incompressible pre-filtered with fast heuristic */ -#define HUF_COMPRESSBOUND(size) (HUF_CTABLEBOUND + HUF_BLOCKBOUND(size)) /* Macro version, useful for static allocation */ - -/* static allocation of Huff0's DTable */ -#define HUF_DTABLE_SIZE(maxTableLog) (1 + (1< /* size_t */ - - -/* ************************************* -* Version -***************************************/ -#define ZSTD_VERSION_MAJOR 0 /* for breaking interface changes */ -#define ZSTD_VERSION_MINOR 2 /* for new (non-breaking) interface capabilities */ -#define ZSTD_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */ -#define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE) - - -/* ************************************* -* Advanced functions -***************************************/ -typedef struct ZSTD_CCtx_s ZSTD_CCtx; /* incomplete type */ - -#if defined (__cplusplus) -} -#endif -/* - zstd - standard compression library - Header File for static linking only - Copyright (C) 2014-2015, Yann Collet. - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - zstd source repository : https://github.com/Cyan4973/zstd - - ztsd public forum : https://groups.google.com/forum/#!forum/lz4c -*/ - -/* The objects defined into this file should be considered experimental. - * They are not labelled stable, as their prototype may change in the future. - * You can use them for tests, provide feedback, or if you can endure risk of future changes. - */ - -#if defined (__cplusplus) -extern "C" { -#endif - -/* ************************************* -* Streaming functions -***************************************/ - -typedef struct ZSTD_DCtx_s ZSTD_DCtx; - -/* - Use above functions alternatively. - ZSTD_nextSrcSizeToDecompress() tells how much bytes to provide as 'srcSize' to ZSTD_decompressContinue(). - ZSTD_decompressContinue() will use previous data blocks to improve compression if they are located prior to current block. - Result is the number of bytes regenerated within 'dst'. - It can be zero, which is not an error; it just means ZSTD_decompressContinue() has decoded some header. -*/ - -/* ************************************* -* Prefix - version detection -***************************************/ -#define ZSTD_magicNumber 0xFD2FB522 /* v0.2 (current)*/ - - -#if defined (__cplusplus) -} -#endif -/* ****************************************************************** - FSE : Finite State Entropy coder - Copyright (C) 2013-2015, Yann Collet. - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy - - Public forum : https://groups.google.com/forum/#!forum/lz4c -****************************************************************** */ - -#ifndef FSE_COMMONDEFS_ONLY - -/**************************************************************** -* Tuning parameters -****************************************************************/ -/* MEMORY_USAGE : -* Memory usage formula : N->2^N Bytes (examples : 10 -> 1KB; 12 -> 4KB ; 16 -> 64KB; 20 -> 1MB; etc.) -* Increasing memory usage improves compression ratio -* Reduced memory usage can improve speed, due to cache effect -* Recommended max value is 14, for 16KB, which nicely fits into Intel x86 L1 cache */ -#define FSE_MAX_MEMORY_USAGE 14 -#define FSE_DEFAULT_MEMORY_USAGE 13 - -/* FSE_MAX_SYMBOL_VALUE : -* Maximum symbol value authorized. -* Required for proper stack allocation */ -#define FSE_MAX_SYMBOL_VALUE 255 - - -/**************************************************************** -* template functions type & suffix -****************************************************************/ -#define FSE_FUNCTION_TYPE BYTE -#define FSE_FUNCTION_EXTENSION - - -/**************************************************************** -* Byte symbol type -****************************************************************/ -#endif /* !FSE_COMMONDEFS_ONLY */ - - -/**************************************************************** -* Compiler specifics -****************************************************************/ -#ifdef _MSC_VER /* Visual Studio */ -# define FORCE_INLINE static __forceinline -# include /* For Visual 2005 */ -# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ -# pragma warning(disable : 4214) /* disable: C4214: non-int bitfields */ -#else -# if defined (__cplusplus) || defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */ -# ifdef __GNUC__ -# define FORCE_INLINE static inline __attribute__((always_inline)) -# else -# define FORCE_INLINE static inline -# endif -# else -# define FORCE_INLINE static -# endif /* __STDC_VERSION__ */ -#endif - - -/**************************************************************** -* Includes -****************************************************************/ -#include /* malloc, free, qsort */ -#include /* memcpy, memset */ -#include /* printf (debug) */ - -/**************************************************************** -* Constants -*****************************************************************/ -#define FSE_MAX_TABLELOG (FSE_MAX_MEMORY_USAGE-2) -#define FSE_MAX_TABLESIZE (1U< FSE_TABLELOG_ABSOLUTE_MAX -#error "FSE_MAX_TABLELOG > FSE_TABLELOG_ABSOLUTE_MAX is not supported" -#endif - - -/**************************************************************** -* Error Management -****************************************************************/ -#define FSE_STATIC_ASSERT(c) { enum { FSE_static_assert = 1/(int)(!!(c)) }; } /* use only *after* variable declarations */ - - -/**************************************************************** -* Complex types -****************************************************************/ -typedef U32 DTable_max_t[FSE_DTABLE_SIZE_U32(FSE_MAX_TABLELOG)]; - - -/**************************************************************** -* Templates -****************************************************************/ -/* - designed to be included - for type-specific functions (template emulation in C) - Objective is to write these functions only once, for improved maintenance -*/ - -/* safety checks */ -#ifndef FSE_FUNCTION_EXTENSION -# error "FSE_FUNCTION_EXTENSION must be defined" -#endif -#ifndef FSE_FUNCTION_TYPE -# error "FSE_FUNCTION_TYPE must be defined" -#endif - -/* Function names */ -#define FSE_CAT(X,Y) X##Y -#define FSE_FUNCTION_NAME(X,Y) FSE_CAT(X,Y) -#define FSE_TYPE_NAME(X,Y) FSE_CAT(X,Y) - - -/* Function templates */ - -#define FSE_DECODE_TYPE FSE_decode_t - -static U32 FSE_tableStep(U32 tableSize) { return (tableSize>>1) + (tableSize>>3) + 3; } - -static size_t FSE_buildDTable -(FSE_DTable* dt, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog) -{ - void* ptr = dt+1; - FSE_DECODE_TYPE* const tableDecode = (FSE_DECODE_TYPE*)ptr; - FSE_DTableHeader DTableH; - const U32 tableSize = 1 << tableLog; - const U32 tableMask = tableSize-1; - const U32 step = FSE_tableStep(tableSize); - U16 symbolNext[FSE_MAX_SYMBOL_VALUE+1]; - U32 position = 0; - U32 highThreshold = tableSize-1; - const S16 largeLimit= (S16)(1 << (tableLog-1)); - U32 noLarge = 1; - U32 s; - - /* Sanity Checks */ - if (maxSymbolValue > FSE_MAX_SYMBOL_VALUE) return ERROR(maxSymbolValue_tooLarge); - if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); - - /* Init, lay down lowprob symbols */ - DTableH.tableLog = (U16)tableLog; - for (s=0; s<=maxSymbolValue; s++) - { - if (normalizedCounter[s]==-1) - { - tableDecode[highThreshold--].symbol = (FSE_FUNCTION_TYPE)s; - symbolNext[s] = 1; - } - else - { - if (normalizedCounter[s] >= largeLimit) noLarge=0; - symbolNext[s] = normalizedCounter[s]; - } - } - - /* Spread symbols */ - for (s=0; s<=maxSymbolValue; s++) - { - int i; - for (i=0; i highThreshold) position = (position + step) & tableMask; /* lowprob area */ - } - } - - if (position!=0) return ERROR(GENERIC); /* position must reach all cells once, otherwise normalizedCounter is incorrect */ - - /* Build Decoding table */ - { - U32 i; - for (i=0; i FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge); - bitStream >>= 4; - bitCount = 4; - *tableLogPtr = nbBits; - remaining = (1<1) && (charnum<=*maxSVPtr)) - { - if (previous0) - { - unsigned n0 = charnum; - while ((bitStream & 0xFFFF) == 0xFFFF) - { - n0+=24; - if (ip < iend-5) - { - ip+=2; - bitStream = MEM_readLE32(ip) >> bitCount; - } - else - { - bitStream >>= 16; - bitCount+=16; - } - } - while ((bitStream & 3) == 3) - { - n0+=3; - bitStream>>=2; - bitCount+=2; - } - n0 += bitStream & 3; - bitCount += 2; - if (n0 > *maxSVPtr) return ERROR(maxSymbolValue_tooSmall); - while (charnum < n0) normalizedCounter[charnum++] = 0; - if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) - { - ip += bitCount>>3; - bitCount &= 7; - bitStream = MEM_readLE32(ip) >> bitCount; - } - else - bitStream >>= 2; - } - { - const short max = (short)((2*threshold-1)-remaining); - short count; - - if ((bitStream & (threshold-1)) < (U32)max) - { - count = (short)(bitStream & (threshold-1)); - bitCount += nbBits-1; - } - else - { - count = (short)(bitStream & (2*threshold-1)); - if (count >= threshold) count -= max; - bitCount += nbBits; - } - - count--; /* extra accuracy */ - remaining -= FSE_abs(count); - normalizedCounter[charnum++] = count; - previous0 = !count; - while (remaining < threshold) - { - nbBits--; - threshold >>= 1; - } - - { - if ((ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) - { - ip += bitCount>>3; - bitCount &= 7; - } - else - { - bitCount -= (int)(8 * (iend - 4 - ip)); - ip = iend - 4; - } - bitStream = MEM_readLE32(ip) >> (bitCount & 31); - } - } - } - if (remaining != 1) return ERROR(GENERIC); - *maxSVPtr = charnum-1; - - ip += (bitCount+7)>>3; - if ((size_t)(ip-istart) > hbSize) return ERROR(srcSize_wrong); - return ip-istart; -} - - -/********************************************************* -* Decompression (Byte symbols) -*********************************************************/ -static size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) -{ - void* ptr = dt; - FSE_DTableHeader* const DTableH = (FSE_DTableHeader*)ptr; - FSE_decode_t* const cell = (FSE_decode_t*)(ptr) + 1; /* because dt is unsigned */ - - DTableH->tableLog = 0; - DTableH->fastMode = 0; - - cell->newState = 0; - cell->symbol = symbolValue; - cell->nbBits = 0; - - return 0; -} - - -static size_t FSE_buildDTable_raw (FSE_DTable* dt, unsigned nbBits) -{ - void* ptr = dt; - FSE_DTableHeader* const DTableH = (FSE_DTableHeader*)ptr; - FSE_decode_t* const dinfo = (FSE_decode_t*)(ptr) + 1; /* because dt is unsigned */ - const unsigned tableSize = 1 << nbBits; - const unsigned tableMask = tableSize - 1; - const unsigned maxSymbolValue = tableMask; - unsigned s; - - /* Sanity checks */ - if (nbBits < 1) return ERROR(GENERIC); /* min size */ - - /* Build Decoding Table */ - DTableH->tableLog = (U16)nbBits; - DTableH->fastMode = 1; - for (s=0; s<=maxSymbolValue; s++) - { - dinfo[s].newState = 0; - dinfo[s].symbol = (BYTE)s; - dinfo[s].nbBits = (BYTE)nbBits; - } - - return 0; -} - -FORCE_INLINE size_t FSE_decompress_usingDTable_generic( - void* dst, size_t maxDstSize, - const void* cSrc, size_t cSrcSize, - const FSE_DTable* dt, const unsigned fast) -{ - BYTE* const ostart = (BYTE*) dst; - BYTE* op = ostart; - BYTE* const omax = op + maxDstSize; - BYTE* const olimit = omax-3; - - BIT_DStream_t bitD; - FSE_DState_t state1; - FSE_DState_t state2; - size_t errorCode; - - /* Init */ - errorCode = BIT_initDStream(&bitD, cSrc, cSrcSize); /* replaced last arg by maxCompressed Size */ - if (FSE_isError(errorCode)) return errorCode; - - FSE_initDState(&state1, &bitD, dt); - FSE_initDState(&state2, &bitD, dt); - -#define FSE_GETSYMBOL(statePtr) fast ? FSE_decodeSymbolFast(statePtr, &bitD) : FSE_decodeSymbol(statePtr, &bitD) - - /* 4 symbols per loop */ - for ( ; (BIT_reloadDStream(&bitD)==BIT_DStream_unfinished) && (op sizeof(bitD.bitContainer)*8) /* This test must be static */ - BIT_reloadDStream(&bitD); - - op[1] = FSE_GETSYMBOL(&state2); - - if (FSE_MAX_TABLELOG*4+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */ - { if (BIT_reloadDStream(&bitD) > BIT_DStream_unfinished) { op+=2; break; } } - - op[2] = FSE_GETSYMBOL(&state1); - - if (FSE_MAX_TABLELOG*2+7 > sizeof(bitD.bitContainer)*8) /* This test must be static */ - BIT_reloadDStream(&bitD); - - op[3] = FSE_GETSYMBOL(&state2); - } - - /* tail */ - /* note : BIT_reloadDStream(&bitD) >= FSE_DStream_partiallyFilled; Ends at exactly BIT_DStream_completed */ - while (1) - { - if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) && (fast || FSE_endOfDState(&state1))) ) - break; - - *op++ = FSE_GETSYMBOL(&state1); - - if ( (BIT_reloadDStream(&bitD)>BIT_DStream_completed) || (op==omax) || (BIT_endOfDStream(&bitD) && (fast || FSE_endOfDState(&state2))) ) - break; - - *op++ = FSE_GETSYMBOL(&state2); - } - - /* end ? */ - if (BIT_endOfDStream(&bitD) && FSE_endOfDState(&state1) && FSE_endOfDState(&state2)) - return op-ostart; - - if (op==omax) return ERROR(dstSize_tooSmall); /* dst buffer is full, but cSrc unfinished */ - - return ERROR(corruption_detected); -} - - -static size_t FSE_decompress_usingDTable(void* dst, size_t originalSize, - const void* cSrc, size_t cSrcSize, - const FSE_DTable* dt) -{ - FSE_DTableHeader DTableH; - memcpy(&DTableH, dt, sizeof(DTableH)); - - /* select fast mode (static) */ - if (DTableH.fastMode) return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 1); - return FSE_decompress_usingDTable_generic(dst, originalSize, cSrc, cSrcSize, dt, 0); -} - - -static size_t FSE_decompress(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize) -{ - const BYTE* const istart = (const BYTE*)cSrc; - const BYTE* ip = istart; - short counting[FSE_MAX_SYMBOL_VALUE+1]; - DTable_max_t dt; /* Static analyzer seems unable to understand this table will be properly initialized later */ - unsigned tableLog; - unsigned maxSymbolValue = FSE_MAX_SYMBOL_VALUE; - size_t errorCode; - - if (cSrcSize<2) return ERROR(srcSize_wrong); /* too small input size */ - - /* normal FSE decoding mode */ - errorCode = FSE_readNCount (counting, &maxSymbolValue, &tableLog, istart, cSrcSize); - if (FSE_isError(errorCode)) return errorCode; - if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); /* too small input size */ - ip += errorCode; - cSrcSize -= errorCode; - - errorCode = FSE_buildDTable (dt, counting, maxSymbolValue, tableLog); - if (FSE_isError(errorCode)) return errorCode; - - /* always return, even if it is an error code */ - return FSE_decompress_usingDTable (dst, maxDstSize, ip, cSrcSize, dt); -} - - - -#endif /* FSE_COMMONDEFS_ONLY */ -/* ****************************************************************** - Huff0 : Huffman coder, part of New Generation Entropy library - Copyright (C) 2013-2015, Yann Collet. - - BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - You can contact the author at : - - FSE+Huff0 source repository : https://github.com/Cyan4973/FiniteStateEntropy - - Public forum : https://groups.google.com/forum/#!forum/lz4c -****************************************************************** */ - -/**************************************************************** -* Compiler specifics -****************************************************************/ -#if defined (__cplusplus) || (defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */) -/* inline is defined */ -#elif defined(_MSC_VER) -# define inline __inline -#else -# define inline /* disable inline */ -#endif - - -#ifdef _MSC_VER /* Visual Studio */ -# pragma warning(disable : 4127) /* disable: C4127: conditional expression is constant */ -#endif - - -/**************************************************************** -* Includes -****************************************************************/ -#include /* malloc, free, qsort */ -#include /* memcpy, memset */ -#include /* printf (debug) */ - -/**************************************************************** -* Error Management -****************************************************************/ -#define HUF_STATIC_ASSERT(c) { enum { HUF_static_assert = 1/(int)(!!(c)) }; } /* use only *after* variable declarations */ - - -/****************************************** -* Helper functions -******************************************/ -static unsigned HUF_isError(size_t code) { return ERR_isError(code); } - -#define HUF_ABSOLUTEMAX_TABLELOG 16 /* absolute limit of HUF_MAX_TABLELOG. Beyond that value, code does not work */ -#define HUF_MAX_TABLELOG 12 /* max configured tableLog (for static allocation); can be modified up to HUF_ABSOLUTEMAX_TABLELOG */ -#define HUF_DEFAULT_TABLELOG HUF_MAX_TABLELOG /* tableLog by default, when not specified */ -#define HUF_MAX_SYMBOL_VALUE 255 -#if (HUF_MAX_TABLELOG > HUF_ABSOLUTEMAX_TABLELOG) -# error "HUF_MAX_TABLELOG is too large !" -#endif - - - -/********************************************************* -* Huff0 : Huffman block decompression -*********************************************************/ -typedef struct { BYTE byte; BYTE nbBits; } HUF_DEltX2; /* single-symbol decoding */ - -typedef struct { U16 sequence; BYTE nbBits; BYTE length; } HUF_DEltX4; /* double-symbols decoding */ - -typedef struct { BYTE symbol; BYTE weight; } sortedSymbol_t; - -/*! HUF_readStats - Read compact Huffman tree, saved by HUF_writeCTable - @huffWeight : destination buffer - @return : size read from `src` -*/ -static size_t HUF_readStats(BYTE* huffWeight, size_t hwSize, U32* rankStats, - U32* nbSymbolsPtr, U32* tableLogPtr, - const void* src, size_t srcSize) -{ - U32 weightTotal; - U32 tableLog; - const BYTE* ip = (const BYTE*) src; - size_t iSize; - size_t oSize; - U32 n; - - if (!srcSize) return ERROR(srcSize_wrong); - iSize = ip[0]; - //memset(huffWeight, 0, hwSize); /* is not necessary, even though some analyzer complain ... */ - - if (iSize >= 128) /* special header */ - { - if (iSize >= (242)) /* RLE */ - { - static int l[14] = { 1, 2, 3, 4, 7, 8, 15, 16, 31, 32, 63, 64, 127, 128 }; - oSize = l[iSize-242]; - memset(huffWeight, 1, hwSize); - iSize = 0; - } - else /* Incompressible */ - { - oSize = iSize - 127; - iSize = ((oSize+1)/2); - if (iSize+1 > srcSize) return ERROR(srcSize_wrong); - if (oSize >= hwSize) return ERROR(corruption_detected); - ip += 1; - for (n=0; n> 4; - huffWeight[n+1] = ip[n/2] & 15; - } - } - } - else /* header compressed with FSE (normal case) */ - { - if (iSize+1 > srcSize) return ERROR(srcSize_wrong); - oSize = FSE_decompress(huffWeight, hwSize-1, ip+1, iSize); /* max (hwSize-1) values decoded, as last one is implied */ - if (FSE_isError(oSize)) return oSize; - } - - /* collect weight stats */ - memset(rankStats, 0, (HUF_ABSOLUTEMAX_TABLELOG + 1) * sizeof(U32)); - weightTotal = 0; - for (n=0; n= HUF_ABSOLUTEMAX_TABLELOG) return ERROR(corruption_detected); - rankStats[huffWeight[n]]++; - weightTotal += (1 << huffWeight[n]) >> 1; - } - if (weightTotal == 0) return ERROR(corruption_detected); - - /* get last non-null symbol weight (implied, total must be 2^n) */ - tableLog = BIT_highbit32(weightTotal) + 1; - if (tableLog > HUF_ABSOLUTEMAX_TABLELOG) return ERROR(corruption_detected); - { - U32 total = 1 << tableLog; - U32 rest = total - weightTotal; - U32 verif = 1 << BIT_highbit32(rest); - U32 lastWeight = BIT_highbit32(rest) + 1; - if (verif != rest) return ERROR(corruption_detected); /* last value must be a clean power of 2 */ - huffWeight[oSize] = (BYTE)lastWeight; - rankStats[lastWeight]++; - } - - /* check tree construction validity */ - if ((rankStats[1] < 2) || (rankStats[1] & 1)) return ERROR(corruption_detected); /* by construction : at least 2 elts of rank 1, must be even */ - - /* results */ - *nbSymbolsPtr = (U32)(oSize+1); - *tableLogPtr = tableLog; - return iSize+1; -} - - -/**************************/ -/* single-symbol decoding */ -/**************************/ - -static size_t HUF_readDTableX2 (U16* DTable, const void* src, size_t srcSize) -{ - BYTE huffWeight[HUF_MAX_SYMBOL_VALUE + 1]; - U32 rankVal[HUF_ABSOLUTEMAX_TABLELOG + 1]; /* large enough for values from 0 to 16 */ - U32 tableLog = 0; - const BYTE* ip = (const BYTE*) src; - size_t iSize = ip[0]; - U32 nbSymbols = 0; - U32 n; - U32 nextRankStart; - void* ptr = DTable+1; - HUF_DEltX2* const dt = (HUF_DEltX2*)ptr; - - HUF_STATIC_ASSERT(sizeof(HUF_DEltX2) == sizeof(U16)); /* if compilation fails here, assertion is false */ - //memset(huffWeight, 0, sizeof(huffWeight)); /* is not necessary, even though some analyzer complain ... */ - - iSize = HUF_readStats(huffWeight, HUF_MAX_SYMBOL_VALUE + 1, rankVal, &nbSymbols, &tableLog, src, srcSize); - if (HUF_isError(iSize)) return iSize; - - /* check result */ - if (tableLog > DTable[0]) return ERROR(tableLog_tooLarge); /* DTable is too small */ - DTable[0] = (U16)tableLog; /* maybe should separate sizeof DTable, as allocated, from used size of DTable, in case of DTable re-use */ - - /* Prepare ranks */ - nextRankStart = 0; - for (n=1; n<=tableLog; n++) - { - U32 current = nextRankStart; - nextRankStart += (rankVal[n] << (n-1)); - rankVal[n] = current; - } - - /* fill DTable */ - for (n=0; n> 1; - U32 i; - HUF_DEltX2 D; - D.byte = (BYTE)n; D.nbBits = (BYTE)(tableLog + 1 - w); - for (i = rankVal[w]; i < rankVal[w] + length; i++) - dt[i] = D; - rankVal[w] += length; - } - - return iSize; -} - -static BYTE HUF_decodeSymbolX2(BIT_DStream_t* Dstream, const HUF_DEltX2* dt, const U32 dtLog) -{ - const size_t val = BIT_lookBitsFast(Dstream, dtLog); /* note : dtLog >= 1 */ - const BYTE c = dt[val].byte; - BIT_skipBits(Dstream, dt[val].nbBits); - return c; -} - -#define HUF_DECODE_SYMBOLX2_0(ptr, DStreamPtr) \ - *ptr++ = HUF_decodeSymbolX2(DStreamPtr, dt, dtLog) - -#define HUF_DECODE_SYMBOLX2_1(ptr, DStreamPtr) \ - if (MEM_64bits() || (HUF_MAX_TABLELOG<=12)) \ - HUF_DECODE_SYMBOLX2_0(ptr, DStreamPtr) - -#define HUF_DECODE_SYMBOLX2_2(ptr, DStreamPtr) \ - if (MEM_64bits()) \ - HUF_DECODE_SYMBOLX2_0(ptr, DStreamPtr) - -static inline size_t HUF_decodeStreamX2(BYTE* p, BIT_DStream_t* const bitDPtr, BYTE* const pEnd, const HUF_DEltX2* const dt, const U32 dtLog) -{ - BYTE* const pStart = p; - - /* up to 4 symbols at a time */ - while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) && (p <= pEnd-4)) - { - HUF_DECODE_SYMBOLX2_2(p, bitDPtr); - HUF_DECODE_SYMBOLX2_1(p, bitDPtr); - HUF_DECODE_SYMBOLX2_2(p, bitDPtr); - HUF_DECODE_SYMBOLX2_0(p, bitDPtr); - } - - /* closer to the end */ - while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) && (p < pEnd)) - HUF_DECODE_SYMBOLX2_0(p, bitDPtr); - - /* no more data to retrieve from bitstream, hence no need to reload */ - while (p < pEnd) - HUF_DECODE_SYMBOLX2_0(p, bitDPtr); - - return pEnd-pStart; -} - - -static size_t HUF_decompress4X2_usingDTable( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const U16* DTable) -{ - if (cSrcSize < 10) return ERROR(corruption_detected); /* strict minimum : jump table + 1 byte per stream */ - - { - const BYTE* const istart = (const BYTE*) cSrc; - BYTE* const ostart = (BYTE*) dst; - BYTE* const oend = ostart + dstSize; - - const void* ptr = DTable; - const HUF_DEltX2* const dt = ((const HUF_DEltX2*)ptr) +1; - const U32 dtLog = DTable[0]; - size_t errorCode; - - /* Init */ - BIT_DStream_t bitD1; - BIT_DStream_t bitD2; - BIT_DStream_t bitD3; - BIT_DStream_t bitD4; - const size_t length1 = MEM_readLE16(istart); - const size_t length2 = MEM_readLE16(istart+2); - const size_t length3 = MEM_readLE16(istart+4); - size_t length4; - const BYTE* const istart1 = istart + 6; /* jumpTable */ - const BYTE* const istart2 = istart1 + length1; - const BYTE* const istart3 = istart2 + length2; - const BYTE* const istart4 = istart3 + length3; - const size_t segmentSize = (dstSize+3) / 4; - BYTE* const opStart2 = ostart + segmentSize; - BYTE* const opStart3 = opStart2 + segmentSize; - BYTE* const opStart4 = opStart3 + segmentSize; - BYTE* op1 = ostart; - BYTE* op2 = opStart2; - BYTE* op3 = opStart3; - BYTE* op4 = opStart4; - U32 endSignal; - - length4 = cSrcSize - (length1 + length2 + length3 + 6); - if (length4 > cSrcSize) return ERROR(corruption_detected); /* overflow */ - errorCode = BIT_initDStream(&bitD1, istart1, length1); - if (HUF_isError(errorCode)) return errorCode; - errorCode = BIT_initDStream(&bitD2, istart2, length2); - if (HUF_isError(errorCode)) return errorCode; - errorCode = BIT_initDStream(&bitD3, istart3, length3); - if (HUF_isError(errorCode)) return errorCode; - errorCode = BIT_initDStream(&bitD4, istart4, length4); - if (HUF_isError(errorCode)) return errorCode; - - /* 16-32 symbols per loop (4-8 symbols per stream) */ - endSignal = BIT_reloadDStream(&bitD1) | BIT_reloadDStream(&bitD2) | BIT_reloadDStream(&bitD3) | BIT_reloadDStream(&bitD4); - for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) - { - HUF_DECODE_SYMBOLX2_2(op1, &bitD1); - HUF_DECODE_SYMBOLX2_2(op2, &bitD2); - HUF_DECODE_SYMBOLX2_2(op3, &bitD3); - HUF_DECODE_SYMBOLX2_2(op4, &bitD4); - HUF_DECODE_SYMBOLX2_1(op1, &bitD1); - HUF_DECODE_SYMBOLX2_1(op2, &bitD2); - HUF_DECODE_SYMBOLX2_1(op3, &bitD3); - HUF_DECODE_SYMBOLX2_1(op4, &bitD4); - HUF_DECODE_SYMBOLX2_2(op1, &bitD1); - HUF_DECODE_SYMBOLX2_2(op2, &bitD2); - HUF_DECODE_SYMBOLX2_2(op3, &bitD3); - HUF_DECODE_SYMBOLX2_2(op4, &bitD4); - HUF_DECODE_SYMBOLX2_0(op1, &bitD1); - HUF_DECODE_SYMBOLX2_0(op2, &bitD2); - HUF_DECODE_SYMBOLX2_0(op3, &bitD3); - HUF_DECODE_SYMBOLX2_0(op4, &bitD4); - - endSignal = BIT_reloadDStream(&bitD1) | BIT_reloadDStream(&bitD2) | BIT_reloadDStream(&bitD3) | BIT_reloadDStream(&bitD4); - } - - /* check corruption */ - if (op1 > opStart2) return ERROR(corruption_detected); - if (op2 > opStart3) return ERROR(corruption_detected); - if (op3 > opStart4) return ERROR(corruption_detected); - /* note : op4 supposed already verified within main loop */ - - /* finish bitStreams one by one */ - HUF_decodeStreamX2(op1, &bitD1, opStart2, dt, dtLog); - HUF_decodeStreamX2(op2, &bitD2, opStart3, dt, dtLog); - HUF_decodeStreamX2(op3, &bitD3, opStart4, dt, dtLog); - HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); - - /* check */ - endSignal = BIT_endOfDStream(&bitD1) & BIT_endOfDStream(&bitD2) & BIT_endOfDStream(&bitD3) & BIT_endOfDStream(&bitD4); - if (!endSignal) return ERROR(corruption_detected); - - /* decoded size */ - return dstSize; - } -} - - -static size_t HUF_decompress4X2 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - HUF_CREATE_STATIC_DTABLEX2(DTable, HUF_MAX_TABLELOG); - const BYTE* ip = (const BYTE*) cSrc; - size_t errorCode; - - errorCode = HUF_readDTableX2 (DTable, cSrc, cSrcSize); - if (HUF_isError(errorCode)) return errorCode; - if (errorCode >= cSrcSize) return ERROR(srcSize_wrong); - ip += errorCode; - cSrcSize -= errorCode; - - return HUF_decompress4X2_usingDTable (dst, dstSize, ip, cSrcSize, DTable); -} - - -/***************************/ -/* double-symbols decoding */ -/***************************/ - -static void HUF_fillDTableX4Level2(HUF_DEltX4* DTable, U32 sizeLog, const U32 consumed, - const U32* rankValOrigin, const int minWeight, - const sortedSymbol_t* sortedSymbols, const U32 sortedListSize, - U32 nbBitsBaseline, U16 baseSeq) -{ - HUF_DEltX4 DElt; - U32 rankVal[HUF_ABSOLUTEMAX_TABLELOG + 1]; - U32 s; - - /* get pre-calculated rankVal */ - memcpy(rankVal, rankValOrigin, sizeof(rankVal)); - - /* fill skipped values */ - if (minWeight>1) - { - U32 i, skipSize = rankVal[minWeight]; - MEM_writeLE16(&(DElt.sequence), baseSeq); - DElt.nbBits = (BYTE)(consumed); - DElt.length = 1; - for (i = 0; i < skipSize; i++) - DTable[i] = DElt; - } - - /* fill DTable */ - for (s=0; s= 1 */ - - rankVal[weight] += length; - } -} - -typedef U32 rankVal_t[HUF_ABSOLUTEMAX_TABLELOG][HUF_ABSOLUTEMAX_TABLELOG + 1]; - -static void HUF_fillDTableX4(HUF_DEltX4* DTable, const U32 targetLog, - const sortedSymbol_t* sortedList, const U32 sortedListSize, - const U32* rankStart, rankVal_t rankValOrigin, const U32 maxWeight, - const U32 nbBitsBaseline) -{ - U32 rankVal[HUF_ABSOLUTEMAX_TABLELOG + 1]; - const int scaleLog = nbBitsBaseline - targetLog; /* note : targetLog >= srcLog, hence scaleLog <= 1 */ - const U32 minBits = nbBitsBaseline - maxWeight; - U32 s; - - memcpy(rankVal, rankValOrigin, sizeof(rankVal)); - - /* fill DTable */ - for (s=0; s= minBits) /* enough room for a second symbol */ - { - U32 sortedRank; - int minWeight = nbBits + scaleLog; - if (minWeight < 1) minWeight = 1; - sortedRank = rankStart[minWeight]; - HUF_fillDTableX4Level2(DTable+start, targetLog-nbBits, nbBits, - rankValOrigin[nbBits], minWeight, - sortedList+sortedRank, sortedListSize-sortedRank, - nbBitsBaseline, symbol); - } - else - { - U32 i; - const U32 end = start + length; - HUF_DEltX4 DElt; - - MEM_writeLE16(&(DElt.sequence), symbol); - DElt.nbBits = (BYTE)(nbBits); - DElt.length = 1; - for (i = start; i < end; i++) - DTable[i] = DElt; - } - rankVal[weight] += length; - } -} - -static size_t HUF_readDTableX4 (U32* DTable, const void* src, size_t srcSize) -{ - BYTE weightList[HUF_MAX_SYMBOL_VALUE + 1]; - sortedSymbol_t sortedSymbol[HUF_MAX_SYMBOL_VALUE + 1]; - U32 rankStats[HUF_ABSOLUTEMAX_TABLELOG + 1] = { 0 }; - U32 rankStart0[HUF_ABSOLUTEMAX_TABLELOG + 2] = { 0 }; - U32* const rankStart = rankStart0+1; - rankVal_t rankVal; - U32 tableLog, maxW, sizeOfSort, nbSymbols; - const U32 memLog = DTable[0]; - const BYTE* ip = (const BYTE*) src; - size_t iSize = ip[0]; - void* ptr = DTable; - HUF_DEltX4* const dt = ((HUF_DEltX4*)ptr) + 1; - - HUF_STATIC_ASSERT(sizeof(HUF_DEltX4) == sizeof(U32)); /* if compilation fails here, assertion is false */ - if (memLog > HUF_ABSOLUTEMAX_TABLELOG) return ERROR(tableLog_tooLarge); - //memset(weightList, 0, sizeof(weightList)); /* is not necessary, even though some analyzer complain ... */ - - iSize = HUF_readStats(weightList, HUF_MAX_SYMBOL_VALUE + 1, rankStats, &nbSymbols, &tableLog, src, srcSize); - if (HUF_isError(iSize)) return iSize; - - /* check result */ - if (tableLog > memLog) return ERROR(tableLog_tooLarge); /* DTable can't fit code depth */ - - /* find maxWeight */ - for (maxW = tableLog; rankStats[maxW]==0; maxW--) - {if (!maxW) return ERROR(GENERIC); } /* necessarily finds a solution before maxW==0 */ - - /* Get start index of each weight */ - { - U32 w, nextRankStart = 0; - for (w=1; w<=maxW; w++) - { - U32 current = nextRankStart; - nextRankStart += rankStats[w]; - rankStart[w] = current; - } - rankStart[0] = nextRankStart; /* put all 0w symbols at the end of sorted list*/ - sizeOfSort = nextRankStart; - } - - /* sort symbols by weight */ - { - U32 s; - for (s=0; s> consumed; - } - } - } - - HUF_fillDTableX4(dt, memLog, - sortedSymbol, sizeOfSort, - rankStart0, rankVal, maxW, - tableLog+1); - - return iSize; -} - - -static U32 HUF_decodeSymbolX4(void* op, BIT_DStream_t* DStream, const HUF_DEltX4* dt, const U32 dtLog) -{ - const size_t val = BIT_lookBitsFast(DStream, dtLog); /* note : dtLog >= 1 */ - memcpy(op, dt+val, 2); - BIT_skipBits(DStream, dt[val].nbBits); - return dt[val].length; -} - -static U32 HUF_decodeLastSymbolX4(void* op, BIT_DStream_t* DStream, const HUF_DEltX4* dt, const U32 dtLog) -{ - const size_t val = BIT_lookBitsFast(DStream, dtLog); /* note : dtLog >= 1 */ - memcpy(op, dt+val, 1); - if (dt[val].length==1) BIT_skipBits(DStream, dt[val].nbBits); - else - { - if (DStream->bitsConsumed < (sizeof(DStream->bitContainer)*8)) - { - BIT_skipBits(DStream, dt[val].nbBits); - if (DStream->bitsConsumed > (sizeof(DStream->bitContainer)*8)) - DStream->bitsConsumed = (sizeof(DStream->bitContainer)*8); /* ugly hack; works only because it's the last symbol. Note : can't easily extract nbBits from just this symbol */ - } - } - return 1; -} - - -#define HUF_DECODE_SYMBOLX4_0(ptr, DStreamPtr) \ - ptr += HUF_decodeSymbolX4(ptr, DStreamPtr, dt, dtLog) - -#define HUF_DECODE_SYMBOLX4_1(ptr, DStreamPtr) \ - if (MEM_64bits() || (HUF_MAX_TABLELOG<=12)) \ - ptr += HUF_decodeSymbolX4(ptr, DStreamPtr, dt, dtLog) - -#define HUF_DECODE_SYMBOLX4_2(ptr, DStreamPtr) \ - if (MEM_64bits()) \ - ptr += HUF_decodeSymbolX4(ptr, DStreamPtr, dt, dtLog) - -static inline size_t HUF_decodeStreamX4(BYTE* p, BIT_DStream_t* bitDPtr, BYTE* const pEnd, const HUF_DEltX4* const dt, const U32 dtLog) -{ - BYTE* const pStart = p; - - /* up to 8 symbols at a time */ - while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) && (p < pEnd-7)) - { - HUF_DECODE_SYMBOLX4_2(p, bitDPtr); - HUF_DECODE_SYMBOLX4_1(p, bitDPtr); - HUF_DECODE_SYMBOLX4_2(p, bitDPtr); - HUF_DECODE_SYMBOLX4_0(p, bitDPtr); - } - - /* closer to the end */ - while ((BIT_reloadDStream(bitDPtr) == BIT_DStream_unfinished) && (p <= pEnd-2)) - HUF_DECODE_SYMBOLX4_0(p, bitDPtr); - - while (p <= pEnd-2) - HUF_DECODE_SYMBOLX4_0(p, bitDPtr); /* no need to reload : reached the end of DStream */ - - if (p < pEnd) - p += HUF_decodeLastSymbolX4(p, bitDPtr, dt, dtLog); - - return p-pStart; -} - - - -static size_t HUF_decompress4X4_usingDTable( - void* dst, size_t dstSize, - const void* cSrc, size_t cSrcSize, - const U32* DTable) -{ - if (cSrcSize < 10) return ERROR(corruption_detected); /* strict minimum : jump table + 1 byte per stream */ - - { - const BYTE* const istart = (const BYTE*) cSrc; - BYTE* const ostart = (BYTE*) dst; - BYTE* const oend = ostart + dstSize; - - const void* ptr = DTable; - const HUF_DEltX4* const dt = ((const HUF_DEltX4*)ptr) +1; - const U32 dtLog = DTable[0]; - size_t errorCode; - - /* Init */ - BIT_DStream_t bitD1; - BIT_DStream_t bitD2; - BIT_DStream_t bitD3; - BIT_DStream_t bitD4; - const size_t length1 = MEM_readLE16(istart); - const size_t length2 = MEM_readLE16(istart+2); - const size_t length3 = MEM_readLE16(istart+4); - size_t length4; - const BYTE* const istart1 = istart + 6; /* jumpTable */ - const BYTE* const istart2 = istart1 + length1; - const BYTE* const istart3 = istart2 + length2; - const BYTE* const istart4 = istart3 + length3; - const size_t segmentSize = (dstSize+3) / 4; - BYTE* const opStart2 = ostart + segmentSize; - BYTE* const opStart3 = opStart2 + segmentSize; - BYTE* const opStart4 = opStart3 + segmentSize; - BYTE* op1 = ostart; - BYTE* op2 = opStart2; - BYTE* op3 = opStart3; - BYTE* op4 = opStart4; - U32 endSignal; - - length4 = cSrcSize - (length1 + length2 + length3 + 6); - if (length4 > cSrcSize) return ERROR(corruption_detected); /* overflow */ - errorCode = BIT_initDStream(&bitD1, istart1, length1); - if (HUF_isError(errorCode)) return errorCode; - errorCode = BIT_initDStream(&bitD2, istart2, length2); - if (HUF_isError(errorCode)) return errorCode; - errorCode = BIT_initDStream(&bitD3, istart3, length3); - if (HUF_isError(errorCode)) return errorCode; - errorCode = BIT_initDStream(&bitD4, istart4, length4); - if (HUF_isError(errorCode)) return errorCode; - - /* 16-32 symbols per loop (4-8 symbols per stream) */ - endSignal = BIT_reloadDStream(&bitD1) | BIT_reloadDStream(&bitD2) | BIT_reloadDStream(&bitD3) | BIT_reloadDStream(&bitD4); - for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) - { - HUF_DECODE_SYMBOLX4_2(op1, &bitD1); - HUF_DECODE_SYMBOLX4_2(op2, &bitD2); - HUF_DECODE_SYMBOLX4_2(op3, &bitD3); - HUF_DECODE_SYMBOLX4_2(op4, &bitD4); - HUF_DECODE_SYMBOLX4_1(op1, &bitD1); - HUF_DECODE_SYMBOLX4_1(op2, &bitD2); - HUF_DECODE_SYMBOLX4_1(op3, &bitD3); - HUF_DECODE_SYMBOLX4_1(op4, &bitD4); - HUF_DECODE_SYMBOLX4_2(op1, &bitD1); - HUF_DECODE_SYMBOLX4_2(op2, &bitD2); - HUF_DECODE_SYMBOLX4_2(op3, &bitD3); - HUF_DECODE_SYMBOLX4_2(op4, &bitD4); - HUF_DECODE_SYMBOLX4_0(op1, &bitD1); - HUF_DECODE_SYMBOLX4_0(op2, &bitD2); - HUF_DECODE_SYMBOLX4_0(op3, &bitD3); - HUF_DECODE_SYMBOLX4_0(op4, &bitD4); - - endSignal = BIT_reloadDStream(&bitD1) | BIT_reloadDStream(&bitD2) | BIT_reloadDStream(&bitD3) | BIT_reloadDStream(&bitD4); - } - - /* check corruption */ - if (op1 > opStart2) return ERROR(corruption_detected); - if (op2 > opStart3) return ERROR(corruption_detected); - if (op3 > opStart4) return ERROR(corruption_detected); - /* note : op4 supposed already verified within main loop */ - - /* finish bitStreams one by one */ - HUF_decodeStreamX4(op1, &bitD1, opStart2, dt, dtLog); - HUF_decodeStreamX4(op2, &bitD2, opStart3, dt, dtLog); - HUF_decodeStreamX4(op3, &bitD3, opStart4, dt, dtLog); - HUF_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); - - /* check */ - endSignal = BIT_endOfDStream(&bitD1) & BIT_endOfDStream(&bitD2) & BIT_endOfDStream(&bitD3) & BIT_endOfDStream(&bitD4); - if (!endSignal) return ERROR(corruption_detected); - - /* decoded size */ - return dstSize; - } -} - - -static size_t HUF_decompress4X4 (void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize) -{ - HUF_CREATE_STATIC_DTABLEX4(DTable, HUF_MAX_TABLELOG); - const BYTE* ip = (const BYTE*) cSrc; - - size_t hSize = HUF_readDTableX4 (DTable, cSrc, cSrcSize); - if (HUF_isError(hSize)) return hSize; - if (hSize >= cSrcSize) return ERROR(srcSize_wrong); - ip += hSize; - cSrcSize -= hSize; - - return HUF_decompress4X4_usingDTable (dst, dstSize, ip, cSrcSize, DTable); -} - - -/**********************************/ -/* quad-symbol decoding */ -/**********************************/ -typedef struct { BYTE nbBits; BYTE nbBytes; } HUF_DDescX6; -typedef union { BYTE byte[4]; U32 sequence; } HUF_DSeqX6; - -/* recursive, up to level 3; may benefit from